diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8f237dc --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +* text eol=lf +*.png binary +*.ico binary +*.ppk binary +*.eot binary +*.woff binary diff --git a/.gitignore b/.gitignore index f91b1cb..bf3f664 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,41 @@ *~ *.kate-swp .*.swp -/nbproject/private/ \ No newline at end of file +/nbproject/private/ +# Add some files from the official MathJax distribution so that they will be +# ignored when we copy the upstream version during an upgrade. +modules/MathJax/.gitignore # .gitignore from the MathJax repository +modules/MathJax/bower.json # bower.json from the MathJax repository +modules/MathJax/MathJax.js # packed file +modules/MathJax/config/ # packed files +modules/MathJax/docs +modules/MathJax/extensions/ # packed files +modules/MathJax/fonts/HTML-CSS/TeX/png # We don't use the image fallback +modules/MathJax/fonts/HTML-CSS/Asana-Math +modules/MathJax/fonts/HTML-CSS/Gyre-Pagella +modules/MathJax/fonts/HTML-CSS/Gyre-Termes +modules/MathJax/fonts/HTML-CSS/Latin-Modern +modules/MathJax/fonts/HTML-CSS/Neo-Euler +modules/MathJax/fonts/HTML-CSS/STIX-Web +modules/MathJax/jax/ # packed files +modules/MathJax/localization/ # packed files +modules/MathJax/test +modules/MathJax/unpacked/config/ # We don't use predefined config files +modules/MathJax/unpacked/jax/input/AsciiMath/ # We don't use the AsciiMath input Jax +modules/MathJax/unpacked/jax/input/MathML/entities # We don't use MathML entity names +modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX +modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/ # We don't use the Asana-Math fonts +modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/ # We don't use the Gyre-Pagella +ts +modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/ # We don't use the Gyre +modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/ # We don't use the Latin-Modern +ts +modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/ # We don't use the Neo-Euler fonts +modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/ # We don't use the STIX-Web fonts +modules/MathJax/unpacked/jax/output/SVG/fonts/STIX +modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math +modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella +modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes +modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern +modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler +modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web diff --git a/Math.php b/Math.php index 8a0cc3c..0a9e013 100644 --- a/Math.php +++ b/Math.php @@ -166,20 +166,233 @@ $wgExtensionMessagesFiles['Math'] = $dir . 'Math.i18n.php'; $wgParserTestFiles[] = $dir . 'mathParserTests.txt'; -$moduleTemplate = array( - 'localBasePath' => dirname( __FILE__ ) . '/modules', - 'remoteExtPath' => 'Math/modules', + +// MathJax module +// If you modify these arrays, update ext.math.mathjax.enabler.js to ensure +// that getModuleNameFromFile knows how to map files to MediaWiki modules. +$wgResourceModules += array( + // This enables MathJax. + 'ext.math.mathjax.enabler' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules', + 'remoteExtPath' => 'Math/modules', + 'scripts' => 'ext.math.mathjax.enabler.js' + ), + // Main MathJax file + 'ext.math.mathjax.mathjax' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked', + 'scripts' => 'MathJax.js' + ), + + // Localization data for the current language + 'ext.math.mathjax.localization' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/localization', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/localization', + 'languageScripts' => array( + // The localization data for 'en' are actually never used since an English fallback is always specified in MathJax's code when a string is used. + 'br' => array ( 'br/br.js', 'br/HelpDialog.js', 'br/MathMenu.js', 'br/TeX.js', 'br/FontWarnings.js', 'br/HTML-CSS.js', 'br/MathML.js' ), + 'cdo' => array ( 'cdo/cdo.js', 'cdo/HelpDialog.js', 'cdo/MathMenu.js', 'cdo/TeX.js', 'cdo/FontWarnings.js', 'cdo/HTML-CSS.js', 'cdo/MathML.js' ), + 'cs' => array ( 'cs/cs.js', 'cs/HelpDialog.js', 'cs/MathMenu.js', 'cs/TeX.js', 'cs/FontWarnings.js', 'cs/HTML-CSS.js', 'cs/MathML.js' ), + 'da' => array ( 'da/da.js', 'da/HelpDialog.js', 'da/MathMenu.js', 'da/TeX.js', 'da/FontWarnings.js', 'da/HTML-CSS.js', 'da/MathML.js' ), + 'de' => array ( 'de/de.js', 'de/HelpDialog.js', 'de/MathMenu.js', 'de/TeX.js', 'de/FontWarnings.js', 'de/HTML-CSS.js', 'de/MathML.js' ), + 'eo' => array ( 'eo/eo.js', 'eo/HelpDialog.js', 'eo/MathMenu.js', 'eo/TeX.js', 'eo/FontWarnings.js', 'eo/HTML-CSS.js', 'eo/MathML.js' ), + 'es' => array ( 'es/es.js', 'es/HelpDialog.js', 'es/MathMenu.js', 'es/TeX.js', 'es/FontWarnings.js', 'es/HTML-CSS.js', 'es/MathML.js' ), + 'fa' => array ( 'fa/fa.js', 'fa/HelpDialog.js', 'fa/MathMenu.js', 'fa/TeX.js', 'fa/FontWarnings.js', 'fa/HTML-CSS.js', 'fa/MathML.js' ), + 'fi' => array ( 'fi/fi.js', 'fi/HelpDialog.js', 'fi/MathMenu.js', 'fi/TeX.js', 'fi/FontWarnings.js', 'fi/HTML-CSS.js', 'fi/MathML.js' ), + 'fr' => array ( 'fr/fr.js', 'fr/HelpDialog.js', 'fr/MathMenu.js', 'fr/TeX.js', 'fr/FontWarnings.js', 'fr/HTML-CSS.js', 'fr/MathML.js' ), + 'gl' => array ( 'gl/gl.js', 'gl/HelpDialog.js', 'gl/MathMenu.js', 'gl/TeX.js', 'gl/FontWarnings.js', 'gl/HTML-CSS.js', 'gl/MathML.js' ), + 'he' => array ( 'he/he.js', 'he/HelpDialog.js', 'he/MathMenu.js', 'he/TeX.js', 'he/FontWarnings.js', 'he/HTML-CSS.js', 'he/MathML.js' ), + 'ia' => array ( 'ia/ia.js', 'ia/HelpDialog.js', 'ia/MathMenu.js', 'ia/TeX.js', 'ia/FontWarnings.js', 'ia/HTML-CSS.js', 'ia/MathML.js' ), + 'it' => array ( 'it/it.js', 'it/HelpDialog.js', 'it/MathMenu.js', 'it/TeX.js', 'it/FontWarnings.js', 'it/HTML-CSS.js', 'it/MathML.js' ), + 'ja' => array ( 'ja/ja.js', 'ja/HelpDialog.js', 'ja/MathMenu.js', 'ja/TeX.js', 'ja/FontWarnings.js', 'ja/HTML-CSS.js', 'ja/MathML.js' ), + 'ko' => array ( 'ko/ko.js', 'ko/HelpDialog.js', 'ko/MathMenu.js', 'ko/TeX.js', 'ko/FontWarnings.js', 'ko/HTML-CSS.js', 'ko/MathML.js' ), + 'lb' => array ( 'lb/lb.js', 'lb/HelpDialog.js', 'lb/MathMenu.js', 'lb/TeX.js', 'lb/FontWarnings.js', 'lb/HTML-CSS.js', 'lb/MathML.js' ), + 'mk' => array ( 'mk/mk.js', 'mk/HelpDialog.js', 'mk/MathMenu.js', 'mk/TeX.js', 'mk/FontWarnings.js', 'mk/HTML-CSS.js', 'mk/MathML.js' ), + 'nl' => array ( 'nl/nl.js', 'nl/HelpDialog.js', 'nl/MathMenu.js', 'nl/TeX.js', 'nl/FontWarnings.js', 'nl/HTML-CSS.js', 'nl/MathML.js' ), + 'oc' => array ( 'oc/oc.js', 'oc/HelpDialog.js', 'oc/MathMenu.js', 'oc/TeX.js', 'oc/FontWarnings.js', 'oc/HTML-CSS.js', 'oc/MathML.js' ), + 'pl' => array ( 'pl/pl.js', 'pl/HelpDialog.js', 'pl/MathMenu.js', 'pl/TeX.js', 'pl/FontWarnings.js', 'pl/HTML-CSS.js', 'pl/MathML.js' ), + 'pt' => array ( 'pt/pt.js', 'pt/HelpDialog.js', 'pt/MathMenu.js', 'pt/TeX.js', 'pt/FontWarnings.js', 'pt/HTML-CSS.js', 'pt/MathML.js' ), + 'pt-br' => array ( 'pt-br/pt-br.js', 'pt-br/HelpDialog.js', 'pt-br/MathMenu.js', 'pt-br/TeX.js', 'pt-br/FontWarnings.js', 'pt-br/HTML-CSS.js', 'pt-br/MathML.js' ), + 'ru' => array ( 'ru/ru.js', 'ru/HelpDialog.js', 'ru/MathMenu.js', 'ru/TeX.js', 'ru/FontWarnings.js', 'ru/HTML-CSS.js', 'ru/MathML.js' ), + 'sl' => array ( 'sl/sl.js', 'sl/HelpDialog.js', 'sl/MathMenu.js', 'sl/TeX.js', 'sl/FontWarnings.js', 'sl/HTML-CSS.js', 'sl/MathML.js' ), + 'sv' => array ( 'sv/sv.js', 'sv/HelpDialog.js', 'sv/MathMenu.js', 'sv/TeX.js', 'sv/FontWarnings.js', 'sv/HTML-CSS.js', 'sv/MathML.js' ), + 'tr' => array ( 'tr/tr.js', 'tr/HelpDialog.js', 'tr/MathMenu.js', 'tr/TeX.js', 'tr/FontWarnings.js', 'tr/HTML-CSS.js', 'tr/MathML.js' ), + 'uk' => array ( 'uk/uk.js', 'uk/HelpDialog.js', 'uk/MathMenu.js', 'uk/TeX.js', 'uk/FontWarnings.js', 'uk/HTML-CSS.js', 'uk/MathML.js' ), + 'zh-hans' => array ( 'zh-hans/zh-hans.js', 'zh-hans/HelpDialog.js', 'zh-hans/MathMenu.js', 'zh-hans/TeX.js', 'zh-hans/FontWarnings.js', 'zh-hans/HTML-CSS.js', 'zh-hans/MathML.js' ) + ), + 'dependencies' => 'ext.math.mathjax.mathjax' + ), + + // Configuration files for the MathJax input/output processors + 'ext.math.mathjax.jax.config' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax', + 'scripts' => array( 'input/TeX/config.js', 'input/MathML/config.js', 'output/HTML-CSS/config.js', 'output/NativeMML/config.js', 'output/SVG/config.js' ), + 'dependencies' => 'ext.math.mathjax.mathjax' + ), + + // MathJax Extensions used in MediaWiki + // + // Note that these extensions wait to receive 'ready' signals from their + // dependencies. Hence we only specify 'ext.math.mathjax.mathjax' here so that + // we can load them in MathJax.Hub.Startup.Extensions. + 'ext.math.mathjax.extensions.ui' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/extensions', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/extensions', + 'scripts' => array( 'MathEvents.js', 'MathZoom.js', 'MathMenu.js', 'toMathML.js' ), + 'dependencies' => 'ext.math.mathjax.mathjax' + ), + 'ext.math.mathjax.extensions.TeX' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/extensions', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/extensions', + 'scripts' => array( 'wiki2jax.js', 'TeX/noUndefined.js', 'TeX/AMSmath.js', 'TeX/AMSsymbols.js', 'TeX/boldsymbol.js', 'TeX/texvc.js' ), + 'dependencies' => array( 'ext.math.mathjax.mathjax' ) + ), + 'ext.math.mathjax.extensions.mml2jax' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/extensions', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/extensions', + 'scripts' => array( 'mml2jax.js' ), + 'dependencies' => 'ext.math.mathjax.mathjax' + ), + 'ext.math.mathjax.extensions' => array( + 'dependencies' => array( 'ext.math.mathjax.extensions.ui', 'ext.math.mathjax.extensions.TeX', 'ext.math.mathjax.extensions.mml2jax' ) + ), + + // MathJax module for representing MathML elements + 'ext.math.mathjax.jax.element.mml.optable' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/element/mml/optable', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/element/mml/optable', + 'scripts' => array( 'Arrows.js', 'BasicLatin.js', 'CombDiacritMarks.js', 'CombDiactForSymbols.js', 'Dingbats.js', 'GeneralPunctuation.js', 'GeometricShapes.js', 'GreekAndCoptic.js', 'Latin1Supplement.js', 'LetterlikeSymbols.js', 'MathOperators.js', 'MiscMathSymbolsA.js', 'MiscMathSymbolsB.js', 'MiscSymbolsAndArrows.js', 'MiscTechnical.js', 'SpacingModLetters.js', 'SupplementalArrowsA.js', 'SupplementalArrowsB.js', 'SuppMathOperators.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.element.mml' ) + ), + 'ext.math.mathjax.jax.element.mml' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/element/mml', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/element/mml', + 'scripts' => array( 'jax.js' ), + 'dependencies' => 'ext.math.mathjax.mathjax' + ), + + // MathJax MathML input processor + // + // Note that upstream has an entities/ directory with Javascript files + // defining entity names of http://www.w3.org/TR/xml-entity-names/ + // We don't use these files because these entities are now well + // supported by modern HTML5 rendering engines anyway. + 'ext.math.mathjax.jax.input.MathML' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/input/MathML', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/input/MathML', + 'scripts' => array( 'jax.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.config', 'ext.math.mathjax.jax.element.mml' ) + ), + + // MathJax TeX input processor + 'ext.math.mathjax.jax.input.TeX' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/input/TeX', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/input/TeX', + 'scripts' => array( 'jax.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.config', 'ext.math.mathjax.jax.element.mml' ) + ), + + // MathJax NativeMML output processor + 'ext.math.mathjax.jax.output.NativeMML' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/output/NativeMML', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/output/NativeMML', + 'scripts' => array( 'jax.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.config', 'ext.math.mathjax.jax.element.mml' ) + ), + + // MathJax HTML-CSS output processor + // Note: at the moment, we use neither image fonts nor STIX/STIX-Web/Asana/GyrePagella/GyreTermes/NeoEuler/LatinModern fonts. + 'ext.math.mathjax.jax.output.HTML-CSS.autoload' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload', + 'scripts' => array( 'annotation-xml.js', 'maction.js', 'menclose.js', 'mglyph.js', 'mmultiscripts.js', 'ms.js', 'mtable.js', 'multiline.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.output.HTML-CSS' ) + ), + 'ext.math.mathjax.jax.output.HTML-CSS' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/output/HTML-CSS', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/output/HTML-CSS', + 'scripts' => array( 'jax.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.config', 'ext.math.mathjax.jax.element.mml' ) + ), + 'ext.math.mathjax.jax.output.HTML-CSS.fonts.TeX.fontdata' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX', + 'scripts' => array( 'fontdata.js', 'fontdata-extra.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.output.HTML-CSS' ) + ), + + // MathJax SVG output processor + 'ext.math.mathjax.jax.output.SVG.autoload' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/output/SVG/autoload', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/output/SVG/autoload', + 'scripts' => array( 'annotation-xml.js', 'maction.js', 'menclose.js', 'mglyph.js', 'mmultiscripts.js', 'ms.js', 'mtable.js', 'multiline.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.output.SVG' ) + ), + 'ext.math.mathjax.jax.output.SVG' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/output/SVG', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/output/SVG', + 'scripts' => array( 'jax.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.config', 'ext.math.mathjax.jax.element.mml' ) + ), + 'ext.math.mathjax.jax.output.SVG.fonts.TeX.fontdata' => array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX', + 'scripts' => array( 'fontdata.js', 'fontdata-extra.js' ), + 'dependencies' => array( 'ext.math.mathjax.jax.output.SVG' ) + ) ); -$wgResourceModules['ext.math.mathjax'] = array( - 'scripts' => array( - 'MathJax/MathJax.js', - // We'll let the other parts be loaded by MathJax's - // own module/config loader. - ), - 'group' => 'ext.math.mathjax', -) + $moduleTemplate; - -$wgResourceModules['ext.math.mathjax.enabler'] = array( - 'scripts' => 'ext.math.mathjax.enabler.js', -) + $moduleTemplate; +// MathJax TeX Fonts +// - The two sets for HTML-CSS and SVG are slightly different, so we can't really use a foreach loop. +// - the Main.js files must be executed before the other files (the former define the MathJax.OutputJax[*].FONTDATA.FONTS[*] object while the latter extend that object). Hence we create separate *MainJS modules for them. +$moduleTemplateHTMLCSS = array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX', + 'dependencies' => array( 'ext.math.mathjax.jax.output.HTML-CSS.fonts.TeX.fontdata' ) +); +$wgResourceModules += array( + 'ext.math.mathjax.jax.output.HTML-CSS.fonts.TeX.MainJS' => array( + 'scripts' => array( 'Size1/Regular/Main.js', 'Size2/Regular/Main.js', 'Size3/Regular/Main.js', 'Size4/Regular/Main.js', 'Main/Bold/Main.js', 'Main/Italic/Main.js', 'Main/Regular/Main.js', 'AMS/Regular/Main.js', 'Caligraphic/Bold/Main.js', 'Caligraphic/Regular/Main.js', 'Fraktur/Bold/Main.js', 'Fraktur/Regular/Main.js', 'Greek/BoldItalic/Main.js', 'Greek/Bold/Main.js', 'Greek/Italic/Main.js', 'Greek/Regular/Main.js', 'Math/BoldItalic/Main.js', 'Math/Italic/Main.js', 'SansSerif/Bold/Main.js', 'SansSerif/Italic/Main.js', 'SansSerif/Regular/Main.js', 'Script/Regular/Main.js', 'Typewriter/Regular/Main.js', 'WinChrome/Regular/Main.js', 'WinIE6/Regular/Main.js' ) + ) + $moduleTemplateHTMLCSS +); +$wgResourceModules += array( + 'ext.math.mathjax.jax.output.HTML-CSS.fonts.TeX.Main' => array( + 'scripts' => array( 'Main/Bold/Arrows.js', 'Main/Bold/CombDiacritMarks.js', 'Main/Bold/CombDiactForSymbols.js', 'Main/Bold/GeneralPunctuation.js', 'Main/Bold/GeometricShapes.js', 'Main/Bold/Latin1Supplement.js', 'Main/Bold/LatinExtendedA.js', 'Main/Bold/LatinExtendedB.js', 'Main/Bold/LetterlikeSymbols.js', 'Main/Bold/MathOperators.js', 'Main/Bold/MiscMathSymbolsA.js', 'Main/Bold/MiscSymbols.js', 'Main/Bold/MiscTechnical.js', 'Main/Bold/SpacingModLetters.js', 'Main/Bold/SupplementalArrowsA.js', 'Main/Bold/SuppMathOperators.js', 'Main/Italic/CombDiacritMarks.js', 'Main/Italic/GeneralPunctuation.js', 'Main/Italic/Latin1Supplement.js', 'Main/Italic/LetterlikeSymbols.js', 'Main/Regular/CombDiacritMarks.js', 'Main/Regular/GeometricShapes.js', 'Main/Regular/MiscSymbols.js', 'Main/Regular/SpacingModLetters.js' ) + ) + $moduleTemplateHTMLCSS +); +$wgResourceModules += array( + 'ext.math.mathjax.jax.output.HTML-CSS.fonts.TeX.AMS' => array( + 'scripts' => array( 'AMS/Regular/Arrows.js', 'AMS/Regular/BBBold.js', 'AMS/Regular/BoxDrawing.js', 'AMS/Regular/CombDiacritMarks.js', 'AMS/Regular/Dingbats.js', 'AMS/Regular/EnclosedAlphanum.js', 'AMS/Regular/GeneralPunctuation.js', 'AMS/Regular/GeometricShapes.js', 'AMS/Regular/GreekAndCoptic.js', 'AMS/Regular/Latin1Supplement.js', 'AMS/Regular/LatinExtendedA.js', 'AMS/Regular/LetterlikeSymbols.js', 'AMS/Regular/MathOperators.js', 'AMS/Regular/MiscMathSymbolsB.js', 'AMS/Regular/MiscSymbols.js', 'AMS/Regular/MiscTechnical.js', 'AMS/Regular/PUA.js', 'AMS/Regular/SpacingModLetters.js', 'AMS/Regular/SuppMathOperators.js' ) + ) + $moduleTemplateHTMLCSS +); +$wgResourceModules += array( + 'ext.math.mathjax.jax.output.HTML-CSS.fonts.TeX.Extra' => array( + 'scripts' => array( 'Fraktur/Bold/BasicLatin.js', 'Fraktur/Bold/Other.js', 'Fraktur/Bold/PUA.js', 'Fraktur/Regular/BasicLatin.js', 'Fraktur/Regular/Other.js', 'Fraktur/Regular/PUA.js', 'SansSerif/Bold/BasicLatin.js', 'SansSerif/Bold/CombDiacritMarks.js', 'SansSerif/Bold/Other.js', 'SansSerif/Italic/BasicLatin.js', 'SansSerif/Italic/CombDiacritMarks.js', 'SansSerif/Italic/Other.js', 'SansSerif/Regular/BasicLatin.js', 'SansSerif/Regular/CombDiacritMarks.js', 'SansSerif/Regular/Other.js', 'Script/Regular/BasicLatin.js', 'Script/Regular/Other.js', 'Typewriter/Regular/BasicLatin.js', 'Typewriter/Regular/CombDiacritMarks.js', 'Typewriter/Regular/Other.js', 'WinIE6/Regular/AMS.js', 'WinIE6/Regular/Bold.js' ) + ) + $moduleTemplateHTMLCSS +); +$moduleTemplateSVG = array( + 'localBasePath' => dirname( __FILE__ ) . '/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX', + 'remoteExtPath' => 'Math/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX', + 'dependencies' => array( 'ext.math.mathjax.jax.output.SVG.fonts.TeX.fontdata' ) +); +$wgResourceModules += array( + 'ext.math.mathjax.jax.output.SVG.fonts.TeX.MainJS' => array( + 'scripts' => array( 'Size1/Regular/Main.js', 'Size2/Regular/Main.js', 'Size3/Regular/Main.js', 'Size4/Regular/Main.js', 'Main/Bold/Main.js', 'Main/Italic/Main.js', 'Main/Regular/Main.js', 'AMS/Regular/Main.js', 'Caligraphic/Bold/Main.js', 'Caligraphic/Regular/Main.js', 'Fraktur/Bold/Main.js', 'Fraktur/Regular/Main.js', 'Math/BoldItalic/Main.js', 'Math/Italic/Main.js', 'SansSerif/Bold/Main.js', 'SansSerif/Italic/Main.js', 'SansSerif/Regular/Main.js', 'Script/Regular/Main.js', 'Typewriter/Regular/Main.js' ) + ) + $moduleTemplateSVG +); +$wgResourceModules += array( + 'ext.math.mathjax.jax.output.SVG.fonts.TeX.Main' => array( + 'scripts' => array( 'Main/Bold/Arrows.js', 'Main/Bold/BasicLatin.js', 'Main/Bold/CombDiacritMarks.js', 'Main/Bold/CombDiactForSymbols.js', 'Main/Bold/GeneralPunctuation.js', 'Main/Bold/GeometricShapes.js', 'Main/Bold/GreekAndCoptic.js', 'Main/Bold/Latin1Supplement.js', 'Main/Bold/LatinExtendedA.js', 'Main/Bold/LatinExtendedB.js', 'Main/Bold/LetterlikeSymbols.js', 'Main/Bold/MathOperators.js', 'Main/Bold/MiscMathSymbolsA.js', 'Main/Bold/MiscSymbols.js', 'Main/Bold/MiscTechnical.js', 'Main/Bold/SpacingModLetters.js', 'Main/Bold/SupplementalArrowsA.js', 'Main/Bold/SuppMathOperators.js', 'Main/Italic/BasicLatin.js', 'Main/Italic/CombDiacritMarks.js', 'Main/Italic/GeneralPunctuation.js', 'Main/Italic/GreekAndCoptic.js', 'Main/Italic/LatinExtendedA.js', 'Main/Italic/LatinExtendedB.js', 'Main/Italic/LetterlikeSymbols.js', 'Main/Italic/MathOperators.js', 'Main/Regular/BasicLatin.js', 'Main/Regular/CombDiacritMarks.js', 'Main/Regular/GeometricShapes.js', 'Main/Regular/GreekAndCoptic.js', 'Main/Regular/LatinExtendedA.js', 'Main/Regular/LatinExtendedB.js', 'Main/Regular/LetterlikeSymbols.js', 'Main/Regular/MathOperators.js', 'Main/Regular/MiscSymbols.js', 'Main/Regular/SpacingModLetters.js', 'Main/Regular/SuppMathOperators.js' ) + ) + $moduleTemplateSVG +); +$wgResourceModules += array( + 'ext.math.mathjax.jax.output.SVG.fonts.TeX.AMS' => array( + 'scripts' => array( 'AMS/Regular/Arrows.js', 'AMS/Regular/BoxDrawing.js', 'AMS/Regular/CombDiacritMarks.js', 'AMS/Regular/Dingbats.js', 'AMS/Regular/EnclosedAlphanum.js', 'AMS/Regular/GeneralPunctuation.js', 'AMS/Regular/GeometricShapes.js', 'AMS/Regular/GreekAndCoptic.js', 'AMS/Regular/Latin1Supplement.js', 'AMS/Regular/LatinExtendedA.js', 'AMS/Regular/LetterlikeSymbols.js', 'AMS/Regular/MathOperators.js', 'AMS/Regular/MiscMathSymbolsB.js', 'AMS/Regular/MiscSymbols.js', 'AMS/Regular/MiscTechnical.js', 'AMS/Regular/PUA.js', 'AMS/Regular/SpacingModLetters.js', 'AMS/Regular/SuppMathOperators.js' ) + ) + $moduleTemplateSVG +); +$wgResourceModules += array( + 'ext.math.mathjax.jax.output.SVG.fonts.TeX.Extra' => array( + 'scripts' => array( 'Fraktur/Bold/BasicLatin.js', 'Fraktur/Bold/Other.js', 'Fraktur/Bold/PUA.js', 'Fraktur/Regular/BasicLatin.js', 'Fraktur/Regular/Other.js', 'Fraktur/Regular/PUA.js', 'SansSerif/Bold/BasicLatin.js', 'SansSerif/Bold/CombDiacritMarks.js', 'SansSerif/Bold/Other.js', 'SansSerif/Italic/BasicLatin.js', 'SansSerif/Italic/CombDiacritMarks.js', 'SansSerif/Italic/Other.js', 'SansSerif/Regular/BasicLatin.js', 'SansSerif/Regular/CombDiacritMarks.js', 'SansSerif/Regular/Other.js', 'Script/Regular/BasicLatin.js', 'Typewriter/Regular/BasicLatin.js', 'Typewriter/Regular/CombDiacritMarks.js', 'Typewriter/Regular/Other.js' ) + ) + $moduleTemplateSVG +); diff --git a/mathoid/index.html b/mathoid/index.html index 901e747..a6c6c70 100644 --- a/mathoid/index.html +++ b/mathoid/index.html @@ -3,19 +3,18 @@ This file is loaded from main.js (phantomjs). --> - - diff --git a/modules/MathJax/MathJax.js b/modules/MathJax/MathJax.js deleted file mode 100644 index 92878ee..0000000 --- a/modules/MathJax/MathJax.js +++ /dev/null @@ -1,30 +0,0 @@ -/************************************************************* - * - * MathJax.js - * - * The main code for the MathJax math-typesetting library. See - * http://www.mathjax.org/ for details. - * - * --------------------------------------------------------------------- - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -if (!window.MathJax) {window.MathJax = {}} - -MathJax.isPacked = true; - -if(document.getElementById&&document.childNodes&&document.createElement){if(!window.MathJax){window.MathJax={}}if(!MathJax.Hub){MathJax.version="2.2";MathJax.fileversion="2.2";(function(d){var b=window[d];if(!b){b=window[d]={}}var f=[];var c=function(g){var h=g.constructor;if(!h){h=new Function("")}for(var i in g){if(i!=="constructor"&&g.hasOwnProperty(i)){h[i]=g[i]}}return h};var a=function(){return new Function("return arguments.callee.Init.call(this,arguments)")};var e=a();e.prototype={bug_test:1};if(!e.prototype.bug_test){a=function(){return function(){return arguments.callee.Init.call(this,arguments)}}}b.Object=c({constructor:a(),Subclass:function(g,i){var h=a();h.SUPER=this;h.Init=this.Init;h.Subclass=this.Subclass;h.Augment=this.Augment;h.protoFunction=this.protoFunction;h.can=this.can;h.has=this.has;h.isa=this.isa;h.prototype=new this(f);h.prototype.constructor=h;h.Augment(g,i);return h},Init:function(g){var h=this;if(g.length===1&&g[0]===f){return h}if(!(h instanceof g.callee)){h=new g.callee(f)}return h.Init.apply(h,g)||h},Augment:function(g,h){var i;if(g!=null){for(i in g){if(g.hasOwnProperty(i)){this.protoFunction(i,g[i])}}if(g.toString!==this.prototype.toString&&g.toString!=={}.toString){this.protoFunction("toString",g.toString)}}if(h!=null){for(i in h){if(h.hasOwnProperty(i)){this[i]=h[i]}}}return this},protoFunction:function(h,g){this.prototype[h]=g;if(typeof g==="function"){g.SUPER=this.SUPER.prototype}},prototype:{Init:function(){},SUPER:function(g){return g.callee.SUPER},can:function(g){return typeof(this[g])==="function"},has:function(g){return typeof(this[g])!=="undefined"},isa:function(g){return(g instanceof Object)&&(this instanceof g)}},can:function(g){return this.prototype.can.call(this,g)},has:function(g){return this.prototype.has.call(this,g)},isa:function(h){var g=this;while(g){if(g===h){return true}else{g=g.SUPER}}return false},SimpleSUPER:c({constructor:function(g){return this.SimpleSUPER.define(g)},define:function(g){var i={};if(g!=null){for(var h in g){if(g.hasOwnProperty(h)){i[h]=this.wrap(h,g[h])}}if(g.toString!==this.prototype.toString&&g.toString!=={}.toString){i.toString=this.wrap("toString",g.toString)}}return i},wrap:function(i,h){if(typeof(h)==="function"&&h.toString().match(/\.\s*SUPER\s*\(/)){var g=new Function(this.wrapper);g.label=i;g.original=h;h=g;g.toString=this.stringify}return h},wrapper:function(){var h=arguments.callee;this.SUPER=h.SUPER[h.label];try{var g=h.original.apply(this,arguments)}catch(i){delete this.SUPER;throw i}delete this.SUPER;return g}.toString().replace(/^\s*function\s*\(\)\s*\{\s*/i,"").replace(/\s*\}\s*$/i,""),toString:function(){return this.original.toString.apply(this.original,arguments)}})})})("MathJax");(function(BASENAME){var BASE=window[BASENAME];if(!BASE){BASE=window[BASENAME]={}}var CALLBACK=function(data){var cb=new Function("return arguments.callee.execute.apply(arguments.callee,arguments)");for(var id in CALLBACK.prototype){if(CALLBACK.prototype.hasOwnProperty(id)){if(typeof(data[id])!=="undefined"){cb[id]=data[id]}else{cb[id]=CALLBACK.prototype[id]}}}cb.toString=CALLBACK.prototype.toString;return cb};CALLBACK.prototype={isCallback:true,hook:function(){},data:[],object:window,execute:function(){if(!this.called||this.autoReset){this.called=!this.autoReset;return this.hook.apply(this.object,this.data.concat([].slice.call(arguments,0)))}},reset:function(){delete this.called},toString:function(){return this.hook.toString.apply(this.hook,arguments)}};var ISCALLBACK=function(f){return(typeof(f)==="function"&&f.isCallback)};var EVAL=function(code){return eval.call(window,code)};EVAL("var __TeSt_VaR__ = 1");if(window.__TeSt_VaR__){try{delete window.__TeSt_VaR__}catch(error){window.__TeSt_VaR__=null}}else{if(window.execScript){EVAL=function(code){BASE.__code=code;code="try {"+BASENAME+".__result = eval("+BASENAME+".__code)} catch(err) {"+BASENAME+".__result = err}";window.execScript(code);var result=BASE.__result;delete BASE.__result;delete BASE.__code;if(result instanceof Error){throw result}return result}}else{EVAL=function(code){BASE.__code=code;code="try {"+BASENAME+".__result = eval("+BASENAME+".__code)} catch(err) {"+BASENAME+".__result = err}";var head=(document.getElementsByTagName("head"))[0];if(!head){head=document.body}var script=document.createElement("script");script.appendChild(document.createTextNode(code));head.appendChild(script);head.removeChild(script);var result=BASE.__result;delete BASE.__result;delete BASE.__code;if(result instanceof Error){throw result}return result}}}var USING=function(args,i){if(arguments.length>1){if(arguments.length===2&&!(typeof arguments[0]==="function")&&arguments[0] instanceof Object&&typeof arguments[1]==="number"){args=[].slice.call(args,i)}else{args=[].slice.call(arguments,0)}}if(args instanceof Array&&args.length===1){args=args[0]}if(typeof args==="function"){if(args.execute===CALLBACK.prototype.execute){return args}return CALLBACK({hook:args})}else{if(args instanceof Array){if(typeof(args[0])==="string"&&args[1] instanceof Object&&typeof args[1][args[0]]==="function"){return CALLBACK({hook:args[1][args[0]],object:args[1],data:args.slice(2)})}else{if(typeof args[0]==="function"){return CALLBACK({hook:args[0],data:args.slice(1)})}else{if(typeof args[1]==="function"){return CALLBACK({hook:args[1],object:args[0],data:args.slice(2)})}}}}else{if(typeof(args)==="string"){return CALLBACK({hook:EVAL,data:[args]})}else{if(args instanceof Object){return CALLBACK(args)}else{if(typeof(args)==="undefined"){return CALLBACK({})}}}}}throw Error("Can't make callback from given data")};var DELAY=function(time,callback){callback=USING(callback);callback.timeout=setTimeout(callback,time);return callback};var WAITFOR=function(callback,signal){callback=USING(callback);if(!callback.called){WAITSIGNAL(callback,signal);signal.pending++}};var WAITEXECUTE=function(){var signals=this.signal;delete this.signal;this.execute=this.oldExecute;delete this.oldExecute;var result=this.execute.apply(this,arguments);if(ISCALLBACK(result)&&!result.called){WAITSIGNAL(result,signals)}else{for(var i=0,m=signals.length;i0&&priorityf){f=document.styleSheets.length}if(!h){h=(document.getElementsByTagName("head"))[0];if(!h){h=document.body}}return h};var e=[];var b=function(){for(var j=0,h=e.length;j=this.timeout){h(this.STATUS.ERROR);return 1}return 0},file:function(i,h){if(h<0){a.Ajax.loadTimeout(i)}else{a.Ajax.loadComplete(i)}},execute:function(){this.hook.call(this.object,this,this.data[0],this.data[1])},checkSafari2:function(h,i,j){if(h.time(j)){return}if(document.styleSheets.length>i&&document.styleSheets[i].cssRules&&document.styleSheets[i].cssRules.length){j(h.STATUS.OK)}else{setTimeout(h,h.delay)}},checkLength:function(h,k,m){if(h.time(m)){return}var l=0;var i=(k.sheet||k.styleSheet);try{if((i.cssRules||i.rules||[]).length>0){l=1}}catch(j){if(j.message.match(/protected variable|restricted URI/)){l=1}else{if(j.message.match(/Security error/)){l=1}}}if(l){setTimeout(a.Callback([m,h.STATUS.OK]),0)}else{setTimeout(h,h.delay)}}},loadComplete:function(h){h=this.fileURL(h);var i=this.loading[h];if(i&&!i.preloaded){a.Message.Clear(i.message);clearTimeout(i.timeout);if(i.script){if(e.length===0){setTimeout(b,0)}e.push(i.script)}this.loaded[h]=i.status;delete this.loading[h];this.addHook(h,i.callback)}else{if(i){delete this.loading[h]}this.loaded[h]=this.STATUS.OK;i={status:this.STATUS.OK}}if(!this.loadHooks[h]){return null}return this.loadHooks[h].Execute(i.status)},loadTimeout:function(h){if(this.loading[h].timeout){clearTimeout(this.loading[h].timeout)}this.loading[h].status=this.STATUS.ERROR;this.loadError(h);this.loadComplete(h)},loadError:function(h){a.Message.Set(["LoadFailed","File failed to load: %1",h],null,2000);a.Hub.signal.Post(["file load error",h])},Styles:function(j,k){var h=this.StyleString(j);if(h===""){k=a.Callback(k);k()}else{var i=document.createElement("style");i.type="text/css";this.head=g(this.head);this.head.appendChild(i);if(i.styleSheet&&typeof(i.styleSheet.cssText)!=="undefined"){i.styleSheet.cssText=h}else{i.appendChild(document.createTextNode(h))}k=this.timer.create.call(this,k,i)}return k},StyleString:function(m){if(typeof(m)==="string"){return m}var j="",n,l;for(n in m){if(m.hasOwnProperty(n)){if(typeof m[n]==="string"){j+=n+" {"+m[n]+"}\n"}else{if(m[n] instanceof Array){for(var k=0;k="0"&&p<="9"){f[j]=o[f[j]-1];if(typeof f[j]==="number"){f[j]=this.number(f[j])}}else{if(p==="{"){p=f[j].substr(1);if(p>="0"&&p<="9"){f[j]=o[f[j].substr(1,f[j].length-2)-1];if(typeof f[j]==="number"){f[j]=this.number(f[j])}}else{var k=f[j].match(/^\{([a-z]+):%(\d+)\|(.*)\}$/);if(k){if(k[1]==="plural"){var d=o[k[2]-1];if(typeof d==="undefined"){f[j]="???"}else{d=this.plural(d)-1;var h=k[3].replace(/(^|[^%])(%%)*%\|/g,"$1$2%\uEFEF").split(/\|/);if(d>=0&&d=3){c.push([f[0],f[1],this.processSnippet(g,f[2])])}else{c.push(e[d])}}}}else{c.push(e[d])}}return c},markdownPattern:/(%.)|(\*{1,3})((?:%.|.)+?)\2|(`+)((?:%.|.)+?)\4|\[((?:%.|.)+?)\]\(([^\s\)]+)\)/,processMarkdown:function(b,h,d){var j=[],e;var c=b.split(this.markdownPattern);var g=c[0];for(var f=1,a=c.length;f1?d[1]:""));f=null}if(e&&(!b.preJax||d)){c.nodeValue=c.nodeValue.replace(b.postJax,(e.length>1?e[1]:""))}if(f&&!f.nodeValue.match(/\S/)){f=f.previousSibling}}if(b.preRemoveClass&&f&&f.className===b.preRemoveClass){a.MathJax.preview=f}a.MathJax.checked=1},processInput:function(a){var b,i=MathJax.ElementJax.STATE;var h,e,d=a.scripts.length;try{while(a.ithis.processUpdateTime&&a.i1){d.jax[a.outputJax].push(b)}b.MathJax.state=c.OUTPUT},prepareOutput:function(c,f){while(c.jthis.processUpdateTime&&h.i=0;o--){if((b[o].src||"").match(d)){q.script=b[o].innerHTML;if(RegExp.$2){var r=RegExp.$2.substr(1).split(/\&/);for(var n=0,h=r.length;n=parseInt(x[y])}}return true},Select:function(j){var i=j[c.Browser];if(i){return i(c.Browser)}return null}};var g=navigator.userAgent.replace(/^Mozilla\/(\d+\.)+\d+ /,"").replace(/[a-z][-a-z0-9._: ]+\/\d+[^ ]*-[^ ]*\.([a-z][a-z])?\d+ /i,"").replace(/Gentoo |Ubuntu\/(\d+\.)*\d+ (\([^)]*\) )?/,"");c.Browser=c.Insert(c.Insert(new String("Unknown"),{version:"0.0"}),a);for(var t in a){if(a.hasOwnProperty(t)){if(a[t]&&t.substr(0,2)==="is"){t=t.slice(2);if(t==="Mac"||t==="PC"){continue}c.Browser=c.Insert(new String(t),a);var p=new RegExp(".*(Version)/((?:\\d+\\.)+\\d+)|.*("+t+")"+(t=="MSIE"?" ":"/")+"((?:\\d+\\.)*\\d+)|(?:^|\\(| )([a-z][-a-z0-9._: ]+|(?:Apple)?WebKit)/((?:\\d+\\.)+\\d+)");var s=p.exec(g)||["","","","unknown","0.0"];c.Browser.name=(s[1]=="Version"?t:(s[3]||s[5]));c.Browser.version=s[2]||s[4]||s[6];break}}}c.Browser.Select({Safari:function(j){var i=parseInt((String(j.version).split("."))[0]);if(i>85){j.webkit=j.version}if(i>=534){j.version="5.1"}else{if(i>=533){j.version="5.0"}else{if(i>=526){j.version="4.0"}else{if(i>=525){j.version="3.1"}else{if(i>500){j.version="3.0"}else{if(i>400){j.version="2.0"}else{if(i>85){j.version="1.0"}}}}}}}j.isMobile=(navigator.appVersion.match(/Mobile/i)!=null);j.noContextMenu=j.isMobile},Firefox:function(j){if((j.version==="0.0"||navigator.userAgent.match(/Firefox/)==null)&&navigator.product==="Gecko"){var m=navigator.userAgent.match(/[\/ ]rv:(\d+\.\d.*?)[\) ]/);if(m){j.version=m[1]}else{var i=(navigator.buildID||navigator.productSub||"0").substr(0,8);if(i>="20111220"){j.version="9.0"}else{if(i>="20111120"){j.version="8.0"}else{if(i>="20110927"){j.version="7.0"}else{if(i>="20110816"){j.version="6.0"}else{if(i>="20110621"){j.version="5.0"}else{if(i>="20110320"){j.version="4.0"}else{if(i>="20100121"){j.version="3.6"}else{if(i>="20090630"){j.version="3.5"}else{if(i>="20080617"){j.version="3.0"}else{if(i>="20061024"){j.version="2.0"}}}}}}}}}}}}j.isMobile=(navigator.appVersion.match(/Android/i)!=null||navigator.userAgent.match(/ Fennec\//)!=null||navigator.userAgent.match(/Mobile/)!=null)},Opera:function(i){i.version=opera.version()},MSIE:function(j){j.isIE9=!!(document.documentMode&&(window.performance||window.msPerformance));MathJax.HTML.setScriptBug=!j.isIE9||document.documentMode<9;var v=false;try{new ActiveXObject("MathPlayer.Factory.1");j.hasMathPlayer=v=true}catch(m){}try{if(v&&!q.params.NoMathPlayer){var i=document.createElement("object");i.id="mathplayer";i.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(i);document.namespaces.add("m","http://www.w3.org/1998/Math/MathML");j.mpNamespace=true;if(document.readyState&&(document.readyState==="loading"||document.readyState==="interactive")){document.write('');j.mpImported=true}}else{document.namespaces.add("mjx_IE_fix","http://www.w3.org/1999/xlink")}}catch(m){}}});c.Browser.Select(MathJax.Message.browsers);c.queue=f.Callback.Queue();c.queue.Push(["Post",q.signal,"Begin"],["Config",q],["Cookie",q],["Styles",q],["Message",q],function(){var i=f.Callback.Queue(q.Jax(),q.Extensions());return i.Push({})},["Menu",q],q.onLoad(),function(){MathJax.isReady=true},["Typeset",q],["Hash",q],["MenuZoom",q],["Post",q.signal,"End"])})("MathJax")}}; - diff --git a/modules/MathJax/README-branch.txt b/modules/MathJax/README-branch.txt index 3a016b5..3cd8925 100644 --- a/modules/MathJax/README-branch.txt +++ b/modules/MathJax/README-branch.txt @@ -1 +1 @@ -This is release branch v2.2 of MathJax. +This is release branch v2.3 of MathJax. diff --git a/modules/MathJax/config/AM_HTMLorMML-full.js b/modules/MathJax/config/AM_HTMLorMML-full.js deleted file mode 100644 index 42d9213..0000000 --- a/modules/MathJax/config/AM_HTMLorMML-full.js +++ /dev/null @@ -1,64 +0,0 @@ -/* - * /MathJax/config/AM_HTMLorMML-full.js - * - * Copyright (c) 2010-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Config({delayJaxRegistration: true}); - -MathJax.Ajax.Preloading( - "[MathJax]/jax/input/AsciiMath/config.js", - "[MathJax]/jax/output/HTML-CSS/config.js", - "[MathJax]/jax/output/NativeMML/config.js", - "[MathJax]/config/MMLorHTML.js", - "[MathJax]/extensions/asciimath2jax.js", - "[MathJax]/extensions/MathEvents.js", - "[MathJax]/extensions/MathZoom.js", - "[MathJax]/extensions/MathMenu.js", - "[MathJax]/jax/element/mml/jax.js", - "[MathJax]/extensions/toMathML.js", - "[MathJax]/jax/input/AsciiMath/jax.js", - "[MathJax]/jax/output/NativeMML/jax.js", - "[MathJax]/jax/output/HTML-CSS/jax.js", - "[MathJax]/jax/output/HTML-CSS/autoload/mtable.js" -); - -MathJax.Hub.Config({"v1.0-compatible":false}); - -MathJax.InputJax.AsciiMath=MathJax.InputJax({id:"AsciiMath",version:"2.2",directory:MathJax.InputJax.directory+"/AsciiMath",extensionDir:MathJax.InputJax.extensionDir+"/AsciiMath",config:{displaystyle:true,decimalsign:"."}});MathJax.InputJax.AsciiMath.Register("math/asciimath");MathJax.InputJax.AsciiMath.loadComplete("config.js"); - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(ag){var k;var aa=MathJax.Object.Subclass({firstChild:null,lastChild:null,Init:function(){this.childNodes=[]},appendChild:function(i){if(i.parent){i.parent.removeChild(i)}if(this.lastChild){this.lastChild.nextSibling=i}if(!this.firstChild){this.firstChild=i}this.childNodes.push(i);i.parent=this;this.lastChild=i;return i},removeChild:function(ak){for(var aj=0,ai=this.childNodes.length;aj=ai-1){this.lastChild=al}this.childNodes[ak]=al;al.nextSibling=aj.nextSibling;aj.nextSibling=aj.parent=null;return aj},toString:function(){return"{"+this.childNodes.join("")+"}"}});var E=function(){k=MathJax.ElementJax.mml;var i=k.mbase.prototype.Init;k.mbase.Augment({firstChild:null,lastChild:null,nodeValue:"",nextSibling:null,Init:function(){var ai=i.apply(this,arguments)||this;ai.childNodes=ai.data;ai.nodeName=ai.type;return ai},appendChild:function(al){if(al.parent){al.parent.removeChild(al)}var aj=arguments;if(al.isa(aa)){aj=al.childNodes;al.data=al.childNodes=[];al.firstChild=al.lastChild=null}for(var ak=0,ai=aj.length;ak=ai-1){this.lastChild=al}this.SetData(ak,al);al.nextSibling=aj.nextSibling;this.nodeValue="";for(ak=0,ai=this.childNodes.length;ak=",tag:"mo",output:"\u2265",tex:"ge",ttype:d},{input:"geq",tag:"mo",output:"\u2265",tex:null,ttype:d},{input:"-<",tag:"mo",output:"\u227A",tex:"prec",ttype:d},{input:"-lt",tag:"mo",output:"\u227A",tex:null,ttype:d},{input:">-",tag:"mo",output:"\u227B",tex:"succ",ttype:d},{input:"in",tag:"mo",output:"\u2208",tex:null,ttype:d},{input:"!in",tag:"mo",output:"\u2209",tex:"notin",ttype:d},{input:"sub",tag:"mo",output:"\u2282",tex:"subset",ttype:d},{input:"sup",tag:"mo",output:"\u2283",tex:"supset",ttype:d},{input:"sube",tag:"mo",output:"\u2286",tex:"subseteq",ttype:d},{input:"supe",tag:"mo",output:"\u2287",tex:"supseteq",ttype:d},{input:"-=",tag:"mo",output:"\u2261",tex:"equiv",ttype:d},{input:"~=",tag:"mo",output:"\u2245",tex:"cong",ttype:d},{input:"~~",tag:"mo",output:"\u2248",tex:"approx",ttype:d},{input:"prop",tag:"mo",output:"\u221D",tex:"propto",ttype:d},{input:"and",tag:"mtext",output:"and",tex:null,ttype:a},{input:"or",tag:"mtext",output:"or",tex:null,ttype:a},{input:"not",tag:"mo",output:"\u00AC",tex:"neg",ttype:d},{input:"=>",tag:"mo",output:"\u21D2",tex:"implies",ttype:d},{input:"if",tag:"mo",output:"if",tex:null,ttype:a},{input:"<=>",tag:"mo",output:"\u21D4",tex:"iff",ttype:d},{input:"AA",tag:"mo",output:"\u2200",tex:"forall",ttype:d},{input:"EE",tag:"mo",output:"\u2203",tex:"exists",ttype:d},{input:"_|_",tag:"mo",output:"\u22A5",tex:"bot",ttype:d},{input:"TT",tag:"mo",output:"\u22A4",tex:"top",ttype:d},{input:"|--",tag:"mo",output:"\u22A2",tex:"vdash",ttype:d},{input:"|==",tag:"mo",output:"\u22A8",tex:"models",ttype:d},{input:"(",tag:"mo",output:"(",tex:null,ttype:b},{input:")",tag:"mo",output:")",tex:null,ttype:l},{input:"[",tag:"mo",output:"[",tex:null,ttype:b},{input:"]",tag:"mo",output:"]",tex:null,ttype:l},{input:"{",tag:"mo",output:"{",tex:null,ttype:b},{input:"}",tag:"mo",output:"}",tex:null,ttype:l},{input:"|",tag:"mo",output:"|",tex:null,ttype:r},{input:"(:",tag:"mo",output:"\u2329",tex:"langle",ttype:b},{input:":)",tag:"mo",output:"\u232A",tex:"rangle",ttype:l},{input:"<<",tag:"mo",output:"\u2329",tex:null,ttype:b},{input:">>",tag:"mo",output:"\u232A",tex:null,ttype:l},{input:"{:",tag:"mo",output:"{:",tex:null,ttype:b,invisible:true},{input:":}",tag:"mo",output:":}",tex:null,ttype:l,invisible:true},{input:"int",tag:"mo",output:"\u222B",tex:null,ttype:d},{input:"dx",tag:"mi",output:"{:d x:}",tex:null,ttype:Z},{input:"dy",tag:"mi",output:"{:d y:}",tex:null,ttype:Z},{input:"dz",tag:"mi",output:"{:d z:}",tex:null,ttype:Z},{input:"dt",tag:"mi",output:"{:d t:}",tex:null,ttype:Z},{input:"oint",tag:"mo",output:"\u222E",tex:null,ttype:d},{input:"del",tag:"mo",output:"\u2202",tex:"partial",ttype:d},{input:"grad",tag:"mo",output:"\u2207",tex:"nabla",ttype:d},{input:"+-",tag:"mo",output:"\u00B1",tex:"pm",ttype:d},{input:"O/",tag:"mo",output:"\u2205",tex:"emptyset",ttype:d},{input:"oo",tag:"mo",output:"\u221E",tex:"infty",ttype:d},{input:"aleph",tag:"mo",output:"\u2135",tex:null,ttype:d},{input:"...",tag:"mo",output:"...",tex:"ldots",ttype:d},{input:":.",tag:"mo",output:"\u2234",tex:"therefore",ttype:d},{input:"/_",tag:"mo",output:"\u2220",tex:"angle",ttype:d},{input:"\\ ",tag:"mo",output:"\u00A0",tex:null,ttype:d},{input:"quad",tag:"mo",output:"\u00A0\u00A0",tex:null,ttype:d},{input:"qquad",tag:"mo",output:"\u00A0\u00A0\u00A0\u00A0",tex:null,ttype:d},{input:"cdots",tag:"mo",output:"\u22EF",tex:null,ttype:d},{input:"vdots",tag:"mo",output:"\u22EE",tex:null,ttype:d},{input:"ddots",tag:"mo",output:"\u22F1",tex:null,ttype:d},{input:"diamond",tag:"mo",output:"\u22C4",tex:null,ttype:d},{input:"square",tag:"mo",output:"\u25A1",tex:null,ttype:d},{input:"|__",tag:"mo",output:"\u230A",tex:"lfloor",ttype:d},{input:"__|",tag:"mo",output:"\u230B",tex:"rfloor",ttype:d},{input:"|~",tag:"mo",output:"\u2308",tex:"lceiling",ttype:d},{input:"~|",tag:"mo",output:"\u2309",tex:"rceiling",ttype:d},{input:"CC",tag:"mo",output:"\u2102",tex:null,ttype:d},{input:"NN",tag:"mo",output:"\u2115",tex:null,ttype:d},{input:"QQ",tag:"mo",output:"\u211A",tex:null,ttype:d},{input:"RR",tag:"mo",output:"\u211D",tex:null,ttype:d},{input:"ZZ",tag:"mo",output:"\u2124",tex:null,ttype:d},{input:"f",tag:"mi",output:"f",tex:null,ttype:H,func:true},{input:"g",tag:"mi",output:"g",tex:null,ttype:H,func:true},{input:"lim",tag:"mo",output:"lim",tex:null,ttype:P},{input:"Lim",tag:"mo",output:"Lim",tex:null,ttype:P},{input:"sin",tag:"mo",output:"sin",tex:null,ttype:H,func:true},{input:"cos",tag:"mo",output:"cos",tex:null,ttype:H,func:true},{input:"tan",tag:"mo",output:"tan",tex:null,ttype:H,func:true},{input:"sinh",tag:"mo",output:"sinh",tex:null,ttype:H,func:true},{input:"cosh",tag:"mo",output:"cosh",tex:null,ttype:H,func:true},{input:"tanh",tag:"mo",output:"tanh",tex:null,ttype:H,func:true},{input:"cot",tag:"mo",output:"cot",tex:null,ttype:H,func:true},{input:"sec",tag:"mo",output:"sec",tex:null,ttype:H,func:true},{input:"csc",tag:"mo",output:"csc",tex:null,ttype:H,func:true},{input:"log",tag:"mo",output:"log",tex:null,ttype:H,func:true},{input:"ln",tag:"mo",output:"ln",tex:null,ttype:H,func:true},{input:"det",tag:"mo",output:"det",tex:null,ttype:H,func:true},{input:"dim",tag:"mo",output:"dim",tex:null,ttype:d},{input:"mod",tag:"mo",output:"mod",tex:null,ttype:d},{input:"gcd",tag:"mo",output:"gcd",tex:null,ttype:H,func:true},{input:"lcm",tag:"mo",output:"lcm",tex:null,ttype:H,func:true},{input:"lub",tag:"mo",output:"lub",tex:null,ttype:d},{input:"glb",tag:"mo",output:"glb",tex:null,ttype:d},{input:"min",tag:"mo",output:"min",tex:null,ttype:P},{input:"max",tag:"mo",output:"max",tex:null,ttype:P},{input:"uarr",tag:"mo",output:"\u2191",tex:"uparrow",ttype:d},{input:"darr",tag:"mo",output:"\u2193",tex:"downarrow",ttype:d},{input:"rarr",tag:"mo",output:"\u2192",tex:"rightarrow",ttype:d},{input:"->",tag:"mo",output:"\u2192",tex:"to",ttype:d},{input:"|->",tag:"mo",output:"\u21A6",tex:"mapsto",ttype:d},{input:"larr",tag:"mo",output:"\u2190",tex:"leftarrow",ttype:d},{input:"harr",tag:"mo",output:"\u2194",tex:"leftrightarrow",ttype:d},{input:"rArr",tag:"mo",output:"\u21D2",tex:"Rightarrow",ttype:d},{input:"lArr",tag:"mo",output:"\u21D0",tex:"Leftarrow",ttype:d},{input:"hArr",tag:"mo",output:"\u21D4",tex:"Leftrightarrow",ttype:d},j,af,A,Q,o,s,h,{input:"hat",tag:"mover",output:"\u005E",tex:null,ttype:H,acc:true},{input:"bar",tag:"mover",output:"\u00AF",tex:"overline",ttype:H,acc:true},{input:"vec",tag:"mover",output:"\u2192",tex:null,ttype:H,acc:true},{input:"dot",tag:"mover",output:".",tex:null,ttype:H,acc:true},{input:"ddot",tag:"mover",output:"..",tex:null,ttype:H,acc:true},{input:"ul",tag:"munder",output:"\u0332",tex:"underline",ttype:H,acc:true},ah,x,p,{input:"bb",tag:"mstyle",atname:"fontweight",atval:"bold",output:"bb",tex:null,ttype:H},{input:"mathbf",tag:"mstyle",atname:"fontweight",atval:"bold",output:"mathbf",tex:null,ttype:H},{input:"sf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"sf",tex:null,ttype:H},{input:"mathsf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"mathsf",tex:null,ttype:H},{input:"bbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"bbb",tex:null,ttype:H,codes:D},{input:"mathbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"mathbb",tex:null,ttype:H,codes:D},{input:"cc",tag:"mstyle",atname:"mathvariant",atval:"script",output:"cc",tex:null,ttype:H,codes:J},{input:"mathcal",tag:"mstyle",atname:"mathvariant",atval:"script",output:"mathcal",tex:null,ttype:H,codes:J},{input:"tt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"tt",tex:null,ttype:H},{input:"mathtt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"mathtt",tex:null,ttype:H},{input:"fr",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"fr",tex:null,ttype:H,codes:N},{input:"mathfrak",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"mathfrak",tex:null,ttype:H,codes:N}];function W(ai,i){if(ai.input>i.input){return 1}else{return -1}}var U=[];function v(){var aj=[],ai;for(ai=0;ai>1;if(aj[ai]=U[ai]}y=F;if(am!=""){F=G[al].ttype;return G[al]}F=d;ai=1;ar=ao.slice(0,1);var ap=true;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}if(ar==f){ar=ao.slice(ai,ai+1);if("0"<=ar&&ar<="9"){ap=false;ai++;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}}}if((ap&&ai>1)||ai>2){ar=ao.slice(0,ai-1);aq="mn"}else{ai=2;ar=ao.slice(0,1);aq=(("A">ar||ar>"Z")&&("a">ar||ar>"z")?"mo":"mi")}if(ar=="-"&&y==m){F=m;return{input:ar,tag:aq,output:ar,ttype:H,func:true}}return{input:ar,tag:aq,output:ar,ttype:d}}function T(ai){var i;if(ai.nodeName=="mrow"){i=ai.firstChild.firstChild.nodeValue;if(i=="("||i=="["||i=="{"){ai.removeChild(ai.firstChild)}}if(ai.nodeName=="mrow"){i=ai.lastChild.firstChild.nodeValue;if(i==")"||i=="]"||i=="}"){ai.removeChild(ai.lastChild)}}}var K,y,F;function L(ao){var ak,aj,ar,am,aq,an=g.createDocumentFragment();ao=u(ao,0);ak=n(ao);if(ak==null||ak.ttype==l&&K>0){return[null,ao]}if(ak.ttype==Z){ao=ak.output+u(ao,ak.input.length);ak=n(ao)}switch(ak.ttype){case P:case d:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao];case b:K++;ao=u(ao,ak.input.length);ar=w(ao,true);K--;if(typeof ak.invisible=="boolean"&&ak.invisible){aj=M("mrow",ar[0])}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0])}return[aj,ar[1]];case ab:if(ak!=p){ao=u(ao,ak.input.length)}if(ao.charAt(0)=="{"){am=ao.indexOf("}")}else{if(ao.charAt(0)=="("){am=ao.indexOf(")")}else{if(ao.charAt(0)=="["){am=ao.indexOf("]")}else{if(ak==p){am=ao.slice(1).indexOf('"')+1}else{am=0}}}}if(am==-1){am=ao.length}aq=ao.slice(1,am);if(aq.charAt(0)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}an.appendChild(M(ak.tag,g.createTextNode(aq)));if(aq.charAt(aq.length-1)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}ao=u(ao,am+1);return[M("mrow",an),ao];case H:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M(ak.tag,g.createTextNode(ak.output)),ao]}if(typeof ak.func=="boolean"&&ak.func){aq=ao.charAt(0);if(aq=="^"||aq=="_"||aq=="/"||aq=="|"||aq==","){return[M(ak.tag,g.createTextNode(ak.output)),ao]}else{aj=M("mrow",M(ak.tag,g.createTextNode(ak.output)));aj.appendChild(ar[0]);return[aj,ar[1]]}}T(ar[0]);if(ak.input=="sqrt"){return[M(ak.tag,ar[0]),ar[1]]}else{if(typeof ak.acc=="boolean"&&ak.acc){aj=M(ak.tag,ar[0]);aj.appendChild(M("mo",g.createTextNode(ak.output)));return[aj,ar[1]]}else{if(!q&&typeof ak.codes!="undefined"){for(am=0;am64&&aq.charCodeAt(al)<91){ap=ap+String.fromCharCode(ak.codes[aq.charCodeAt(al)-65])}else{ap=ap+aq.charAt(al)}}if(ar[0].nodeName=="mi"){ar[0]=R("mo").appendChild(g.createTextNode(ap))}else{ar[0].replaceChild(R("mo").appendChild(g.createTextNode(ap)),ar[0].childNodes[am])}}}}aj=M(ak.tag,ar[0]);aj.setAttribute(ak.atname,ak.atval);return[aj,ar[1]]}}case X:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ar[0]);var ai=L(ar[1]);if(ai[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ai[0]);if(ak.input=="root"||ak.input=="stackrel"){an.appendChild(ai[0])}an.appendChild(ar[0]);if(ak.input=="frac"){an.appendChild(ai[0])}return[M(ak.tag,an),ai[1]];case m:ao=u(ao,ak.input.length);return[M("mo",g.createTextNode(ak.output)),ao];case a:ao=u(ao,ak.input.length);aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);an.appendChild(M(ak.tag,g.createTextNode(ak.output)));aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);return[M("mrow",an),ao];case r:K++;ao=u(ao,ak.input.length);ar=w(ao,false);K--;aq="";if(ar[0].lastChild!=null){aq=ar[0].lastChild.firstChild.nodeValue}if(aq=="|"){aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0]);return[aj,ar[1]]}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);return[aj,ao]}default:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao]}}function z(an){var al,ao,am,ak,i,aj;an=u(an,0);ao=n(an);i=L(an);ak=i[0];an=i[1];al=n(an);if(al.ttype==m&&al.input!="/"){an=u(an,al.input.length);i=L(an);if(i[0]==null){i[0]=M("mo",g.createTextNode("\u25A1"))}else{T(i[0])}an=i[1];if(al.input=="_"){am=n(an);aj=(ao.ttype==P);if(am.input=="^"){an=u(an,am.input.length);var ai=L(an);T(ai[0]);an=ai[1];ak=M((aj?"munderover":"msubsup"),ak);ak.appendChild(i[0]);ak.appendChild(ai[0]);ak=M("mrow",ak)}else{ak=M((aj?"munder":"msub"),ak);ak.appendChild(i[0])}}else{ak=M(al.tag,ak);ak.appendChild(i[0])}}return[ak,an]}function w(aq,ap){var av,ar,am,ay,an=g.createDocumentFragment();do{aq=u(aq,0);am=z(aq);ar=am[0];aq=am[1];av=n(aq);if(av.ttype==m&&av.input=="/"){aq=u(aq,av.input.length);am=z(aq);if(am[0]==null){am[0]=M("mo",g.createTextNode("\u25A1"))}else{T(am[0])}aq=am[1];T(ar);ar=M(av.tag,ar);ar.appendChild(am[0]);an.appendChild(ar);av=n(aq)}else{if(ar!=undefined){an.appendChild(ar)}}}while((av.ttype!=l&&(av.ttype!=r||ap)||K==0)&&av!=null&&av.output!="");if(av.ttype==l||av.ttype==r){var az=an.childNodes.length;if(az>0&&an.childNodes[az-1].nodeName=="mrow"&&az>1&&an.childNodes[az-2].nodeName=="mo"&&an.childNodes[az-2].firstChild.nodeValue==","){var aB=an.childNodes[az-1].lastChild.firstChild.nodeValue;if(aB==")"||aB=="]"){var aj=an.childNodes[az-1].firstChild.firstChild.nodeValue;if(aj=="("&&aB==")"&&av.output!="}"||aj=="["&&aB=="]"){var ak=[];var aw=true;var at=an.childNodes.length;for(ay=0;aw&&ay1){aw=ak[ay].length==ak[ay-2].length}}if(aw){var al,ai,ao,au,aA=g.createDocumentFragment();for(ay=0;ay2){an.removeChild(an.firstChild);an.removeChild(an.firstChild)}aA.appendChild(M("mtr",al))}ar=M("mtable",aA);if(typeof av.invisible=="boolean"&&av.invisible){ar.setAttribute("columnalign","left")}an.replaceChild(ar,an.firstChild)}}}}aq=u(aq,av.input.length);if(typeof av.invisible!="boolean"||!av.invisible){ar=M("mo",g.createTextNode(av.output));an.appendChild(ar)}}return[an,aq]}function e(aj){var ai=R("mstyle");if(I!=""){ai.setAttribute("mathcolor",I)}if(t){ai.setAttribute("displaystyle","true")}if(ad!=""){ai.setAttribute("fontfamily",ad)}K=0;ai.appendChild(w(aj.replace(/^\s+/g,""),false)[0]);ai=M("math",ai);if(C){ai.setAttribute("title",aj.replace(/\s+/g," "))}if(ad!=""&&(q||ad!="serif")){var i=V("font");i.setAttribute("face",ad);i.appendChild(ai);return i}return ai}C=false;ad="";I="";(function(){for(var aj=0,ai=G.length;aj",tex:null,ttype:d},{input:"gt=",tag:"mo",output:"\u2265",tex:"geq",ttype:d},{input:"-<=",tag:"mo",output:"\u2AAF",tex:"preceq",ttype:d},{input:">-=",tag:"mo",output:"\u2AB0",tex:"succeq",ttype:d},{input:"'",tag:"mo",output:"\u2032",tex:"prime",ttype:d},{input:"arcsin",tag:"mi",output:"arcsin",tex:null,ttype:H,func:true},{input:"arccos",tag:"mi",output:"arccos",tex:null,ttype:H,func:true},{input:"arctan",tag:"mi",output:"arctan",tex:null,ttype:H,func:true},{input:"coth",tag:"mi",output:"coth",tex:null,ttype:H,func:true},{input:"sech",tag:"mi",output:"sech",tex:null,ttype:H,func:true},{input:"csch",tag:"mi",output:"csch",tex:null,ttype:H,func:true},{input:"abs",tag:"mi",output:"abs",tex:null,ttype:H,func:true},{input:"exp",tag:"mi",output:"exp",tex:null,ttype:H,func:true},{input:"tilde",tag:"mover",output:"~",tex:null,ttype:H,acc:true});ag.Augment({AM:{Init:function(){t=ag.config.displaystyle;f=(ag.config.decimal||ag.config.decimalsign);E();v()},Augment:function(i){for(var ai in i){if(i.hasOwnProperty(ai)){switch(ai){case"displaystyle":t=i[ai];break;case"decimal":decimal=i[ai];break;case"parseMath":e=i[ai];break;case"parseExpr":w=i[ai];break;case"parseIexpr":z=i[ai];break;case"parseSexpr":L=i[ai];break;case"removeBrackets":T=i[ai];break;case"getSymbol":n=i[ai];break;case"position":c=i[ai];break;case"removeCharsAndBlanks":u=i[ai];break;case"createMmlNode":M=i[ai];break;case"createElementMathML":R=i[ai];break;case"createElementXHTML":V=i[ai];break;case"initSymbols":v=i[ai];break;case"compareNames":comareNames=i[ai];break}this[ai]=i[ai]}}},parseMath:e,parseExpr:w,parseIexpr:z,parseSexr:L,removeBrackets:T,getSymbol:n,position:c,removeCharsAndBlanks:u,createMmlNode:M,createElementMathML:R,createElementXHTML:V,initSymbols:v,compareNames:W,createDocumentFragment:aa,document:g,define:B,symbols:G,names:U,TOKEN:{CONST:d,UNARY:H,BINARY:X,INFIX:m,LEFTBRACKET:b,RIGHTBRACKET:l,SPACE:a,UNDEROVER:P,DEFINITION:Z,LEFTRIGHT:r,TEXT:ab}}});var ae=[S,O];ae=null})(MathJax.InputJax.AsciiMath);(function(b){var a;b.Augment({sourceMenuTitle:["AsciiMathInput","AsciiMath Input"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(c){var d,f=MathJax.HTML.getScript(c);var g={math:f,script:c};this.prefilterHooks.Execute(g);f=g.math;try{d=this.AM.parseMath(f)}catch(e){if(!e.asciimathError){throw e}d=this.formatError(e,f)}g.math=a(d);this.postfilterHooks.Execute(g);return g.math},formatError:function(f,e,c){var d=f.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["AsciiMath Jax - parse error",d,e,c]);return a.merror(d)},Error:function(c){throw MathJax.Hub.Insert(Error(c),{asciimathError:true})},Startup:function(){a=MathJax.ElementJax.mml;this.AM.Init()}});b.loadComplete("jax.js")})(MathJax.InputJax.AsciiMath); - -(function(l,c,g,e){var f,i=c.Browser.isMSIE;var h,b,d,k;c.Register.StartupHook("MathZoom Ready",function(){k=MathJax.Extension.MathZoom});var j=function(m,o){var n=e.Element("span");m="padding"+m;if(o){n.style.cssText=(o.getAttribute("style")||"");if(n.style.padding===""&&(n.style[m]||"")===""){n.style[m]="0px";o.setAttribute("style",n.style.cssText)}}};var a=function(r,m,p){if(r){var o=e.Element("span");o.style.cssText=(r.getAttribute("style")||"");if(o.style.padding===""){var q={paddingLeft:p,paddingTop:m,paddingRight:"0px",paddingBottom:"0px"};for(var n in q){if(q.hasOwnProperty(n)){if((o.style[n]||"")===""){o.style[n]=q[n]}}}}r.setAttribute("style",o.style.cssText)}};l.Augment({config:{styles:{".MathJax_MathML":{"font-style":"normal","font-weight":"normal","line-height":"normal","font-size":"100%","font-size-adjust":"none","text-indent":0,"text-align":"left","text-transform":"none","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none",direction:"ltr",border:0,padding:0,margin:0},"span.MathJax_MathML":{display:"inline"},"div.MathJax_MathML":{display:"block"},".MathJax_mmlExBox":{display:"block",overflow:"hidden",height:"1px",width:"60ex",padding:0,border:0,margin:0}}},settings:c.config.menuSettings,ex:1,Config:function(){this.SUPER(arguments).Config.call(this);if(this.settings.scale){this.config.scale=this.settings.scale}if(c.config.displayAlign!=="center"){var o=c.config.displayAlign,m=c.config.displayIndent;var n={"text-align":o+"!important"};n["margin-"+o]=m+"!important";c.Insert(this.config.styles,{"div.MathJax_MathML":n,"div.MathJax_MathML math":{"text-align":o},"div.MathJax_MathContainer > span":{"text-align":o+"!important"}})}if(!this.require){this.require=[]}this.require.push(MathJax.OutputJax.extensionDir+"/MathEvents.js")},Startup:function(){h=MathJax.Extension.MathEvents.Event;b=MathJax.Extension.MathEvents.Touch;d=MathJax.Extension.MathEvents.Hover;this.ContextMenu=h.ContextMenu;this.Mousedown=h.AltContextMenu;this.Mouseover=d.Mouseover;this.Mouseout=d.Mouseout;this.Mousemove=d.Mousemove;if(!i){this.EmExSpan=e.Element("span",{style:{position:"absolute","font-size-adjust":"none"}},[["div",{className:"MathJax_mmlExBox"}],["span",{className:"MathJax_MathML"}]]);f.math(f.mspace().With({width:"60ex"})).toNativeMML(this.EmExSpan.lastChild)}return g.Styles(this.config.styles)},InitializeMML:function(){this.initialized=true;if(i){try{if(!c.Browser.mpNamespace){var m=document.createElement("object");m.id="mathplayer";m.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(m);document.namespaces.add("m","http://www.w3.org/1998/Math/MathML");c.Browser.mpNamespace=true}if(!c.Browser.mpImported){document.namespaces.m.doImport("#mathplayer");c.Browser.mpImported=true}}catch(n){alert(MathJax.Localization._(["MathML","MathPlayer"],"MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics."))}}else{document.body.appendChild(this.EmExSpan);this.defaultEx=this.EmExSpan.firstChild.offsetWidth/60;this.defaultMEx=this.EmExSpan.lastChild.offsetWidth/60;document.body.removeChild(this.EmExSpan)}},preTranslate:function(o){var t=o.jax[this.id],u,p=t.length,y,r,A,w,z,n,v,s,q;for(u=0;u1?v/s:1)*this.config.scale;q=Math.floor(Math.max(this.config.minScaleAdjust/100,q));n.NativeMML.ex=v}else{q=100}n.NativeMML.fontSize=q+"%"}if(!i){for(u=0;ut){t=o;u.style.width=t+"px"}}if(this.msieIE8HeightBug){u.style.position=""}return{Y:-h.getBBox(u.parentNode).h,mW:p,mH:v,zW:t,zH:q}},NAMEDSPACE:{negativeveryverythinmathspace:"-.0556em",negativeverythinmathspace:"-.1111em",negativethinmathspace:"-.1667em",negativemediummathspace:"-.2222em",negativethickmathspace:"-.2778em",negativeverythickmathspace:"-.3333em",negativeveryverythickmathspace:"-.3889em"}});c.Register.StartupHook("mml Jax Ready",function(){f=MathJax.ElementJax.mml;f.mbase.Augment({toNativeMML:function(r){var p=this.NativeMMLelement(this.type);this.NativeMMLattributes(p);for(var q=0,o=this.data.length;q1){o=this.NativeMMLelement("mrow");s.appendChild(q);s=q}for(;r0;u--){q.separators.push(v)}}}var o=this.NativeMMLelement(t?this.type:"mrow");this.NativeMMLattributes(o);o.removeAttribute("separators");if(t){o.setAttribute("open",q.open);o.setAttribute("close",q.close);if(this.data.length>1){w.appendChild(o);w=o;o=this.NativeMMLelement("mrow")}}else{o.removeAttribute("open");o.removeAttribute("close")}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.open;o.appendChild(r)}for(u=0,p=this.data.length;u0){r=this.NativeMMLelement("mo");r.setAttribute("separator","true");r.textContent=q.separators[u-1];o.appendChild(r)}if(this.data[u]){this.data[u].toNativeMML(o)}else{o.appendChild(this.NativeMMLelement("mrow"))}}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.close;o.appendChild(r)}w.appendChild(o)}});f.TeXAtom.Augment({toNativeMML:function(p){var o=this.NativeMMLelement("mrow");this.NativeMMLattributes(o);this.data[0].toNativeMML(o);p.appendChild(o)}});f.chars.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.entity.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.xml.Augment({toNativeMML:function(q){for(var p=0,o=this.data.length;p=p.HTMLCSSlast+p.HTMLCSSchunk){this.postTranslate(p);p.HTMLCSSchunk=Math.floor(p.HTMLCSSchunk*this.config.EqnChunkFactor);p.HTMLCSSdelay=true}}},postTranslate:function(r){var l=r.jax[this.id];if(!this.hideProcessedMath){return}for(var p=r.HTMLCSSlast,k=r.HTMLCSSeqn;p=0&&!this.initialSkipBug)||this.negativeBBoxes||!o.firstChild){l=o.offsetWidth;n=o.parentNode.offsetHeight}else{if(o.bbox&&m<0&&this.msieNegativeBBoxBug){l=-o.offsetWidth,n=o.parentNode.offsetHeight}else{if(this.initialSkipBug){var k=o.style.position;o.style.position="absolute";p=this.startMarker;o.insertBefore(p,o.firstChild)}o.appendChild(this.endMarker);l=this.endMarker.offsetLeft-p.offsetLeft;o.removeChild(this.endMarker);if(this.initialSkipBug){o.removeChild(p);o.style.position=k}}}if(n!=null){o.parentNode.HH=n/this.em}return l/this.em},Measured:function(m,l){var n=m.bbox;if(n.width==null&&n.w&&!n.isMultiline){var k=this.getW(m);n.rw+=k-n.w;n.w=k;n.exactW=true}if(!l){l=m.parentNode}if(!l.bbox){l.bbox=n}return m},Remeasured:function(l,k){k.bbox=this.Measured(l,k).bbox},MeasureSpans:function(o){var r=[],t,q,n,u,k,p,l,s;for(q=0,n=o.length;q=0&&!this.initialSkipBug)||(u.w<0&&this.msieNegativeBBoxBug)){r.push([t])}else{if(this.initialSkipBug){k=this.startMarker.cloneNode(true);p=this.endMarker.cloneNode(true);t.insertBefore(k,t.firstChild);t.appendChild(p);r.push([t,k,p,t.style.position]);t.style.position="absolute"}else{p=this.endMarker.cloneNode(true);t.appendChild(p);r.push([t,null,p])}}}for(q=0,n=r.length;q=0&&!this.initialSkipBug)||this.negativeBBoxes||!t.firstChild){l=t.offsetWidth;s.HH=s.offsetHeight/this.em}else{if(u.w<0&&this.msieNegativeBBoxBug){l=-t.offsetWidth,s.HH=s.offsetHeight/this.em}else{l=r[q][2].offsetLeft-((r[q][1]||{}).offsetLeft||0)}}l/=this.em;u.rw+=l-u.w;u.w=l;u.exactW=true;if(!s.bbox){s.bbox=u}}for(q=0,n=r.length;q=0){p.style.width=this.Em(q);p.style.display="inline-block";p.style.overflow="hidden"}else{if(this.msieNegativeSpaceBug){p.style.height=""}p.style.marginLeft=this.Em(q);if(d.safariNegativeSpaceBug&&p.parentNode.firstChild==p){this.createBlank(p,0,true)}}if(m&&m!==g.COLOR.TRANSPARENT){p.style.backgroundColor=m;p.style.position="relative"}return p},createRule:function(r,n,p,s,l){if(n<-p){p=-n}var m=d.TeX.min_rule_thickness,o=1;if(s>0&&s*this.em0&&(n+p)*this.em0&&q.offsetWidth==0){q.style.width=this.Em(s)}if(r.isBox||r.className=="mspace"){r.bbox=q.bbox,r.HH=n+p}return q},createFrame:function(s,q,r,u,x,l){if(q<-r){r=-q}var p=2*x;if(this.msieFrameSizeBug){if(uC.w){d.createBlank(u,C.rw-C.w+0.1)}}if(!this.msieClipRectBug&&!C.noclip&&!o){var B=3/this.em;var A=(C.H==null?C.h:C.H),m=(C.D==null?C.d:C.D);var E=w-A-B,p=w+m+B,n=C.lw-3*B,k=1000;if(this.initialSkipBug&&C.lw<0){n=-3*B}if(C.isFixed){k=C.width-n}u.style.clip="rect("+this.Em(E)+" "+this.Em(k)+" "+this.Em(p)+" "+this.Em(n)+")"}}u.style.top=this.Em(-q-w);u.style.left=this.Em(s+F);if(C&&z){if(C.H!=null&&(z.H==null||C.H+q>z.H)){z.H=C.H+q}if(C.D!=null&&(z.D==null||C.D-q>z.D)){z.D=C.D-q}if(C.h+q>z.h){z.h=C.h+q}if(C.d-q>z.d){z.d=C.d-q}if(z.H!=null&&z.H<=z.h){delete z.H}if(z.D!=null&&z.D<=z.d){delete z.D}if(C.w+s>z.w){z.w=C.w+s;if(z.width==null){v.style.width=this.Em(z.w)}}if(C.rw+s>z.rw){z.rw=C.rw+s}if(C.lw+s=n-0.01||(s==p-1&&!l.stretch)){if(l.HW[s][2]){q*=l.HW[s][2]}if(l.HW[s][3]){k=l.HW[s][3]}var r=this.addElement(u,"span");this.createChar(r,[k,l.HW[s][1]],q,o);u.bbox=r.bbox;u.offset=0.65*u.bbox.w;u.scale=q;return}}if(l.stretch){this["extendDelimiter"+l.dir](u,t,l.stretch,q,o)}},extendDelimiterV:function(A,t,E,F,w){var o=this.createStack(A,true);var v=this.createBox(o),u=this.createBox(o);this.createChar(v,(E.top||E.ext),F,w);this.createChar(u,(E.bot||E.ext),F,w);var m={bbox:{w:0,lw:0,rw:0}},D=m,p;var B=v.bbox.h+v.bbox.d+u.bbox.h+u.bbox.d;var r=-v.bbox.h;this.placeBox(v,0,r,true);r-=v.bbox.d;if(E.mid){D=this.createBox(o);this.createChar(D,E.mid,F,w);B+=D.bbox.h+D.bbox.d}if(E.min&&tB){m=this.Element("span");this.createChar(m,E.ext,F,w);var C=m.bbox.h+m.bbox.d,l=C-0.05,x,q,z=(E.mid?2:1);q=x=Math.min(Math.ceil((t-B)/(z*l)),this.maxStretchyParts);if(!E.fullExtenders){l=(t-B)/(z*x)}var s=(x/(x+1))*(C-l);l=C-s;r+=s+l-m.bbox.h;while(z-->0){while(x-->0){if(!this.msieCloneNodeBug){p=m.cloneNode(true)}else{p=this.Element("span");this.createChar(p,E.ext,F,w)}p.bbox=m.bbox;r-=l;this.placeBox(this.addBox(o,p),0,r,true)}r+=s-m.bbox.d;if(E.mid&&z){this.placeBox(D,0,r-D.bbox.h,true);x=q;r+=-(D.bbox.h+D.bbox.d)+s+l-m.bbox.h}}}else{r+=(B-t)/2;if(E.mid){this.placeBox(D,0,r-D.bbox.h,true);r+=-(D.bbox.h+D.bbox.d)}r+=(B-t)/2}this.placeBox(u,0,r-u.bbox.h,true);r-=u.bbox.h+u.bbox.d;A.bbox={w:Math.max(v.bbox.w,m.bbox.w,u.bbox.w,D.bbox.w),lw:Math.min(v.bbox.lw,m.bbox.lw,u.bbox.lw,D.bbox.lw),rw:Math.max(v.bbox.rw,m.bbox.rw,u.bbox.rw,D.bbox.rw),h:0,d:-r,exactW:true};A.scale=F;A.offset=0.55*A.bbox.w;A.isMultiChar=true;this.setStackWidth(o,A.bbox.w)},extendDelimiterH:function(B,o,E,G,y){var r=this.createStack(B,true);var p=this.createBox(r),C=this.createBox(r);this.createChar(p,(E.left||E.rep),G,y);this.createChar(C,(E.right||E.rep),G,y);var l=this.Element("span");this.createChar(l,E.rep,G,y);var D={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},m;this.placeBox(p,-p.bbox.lw,0,true);var u=(p.bbox.rw-p.bbox.lw)+(C.bbox.rw-C.bbox.lw)-0.05,t=p.bbox.rw-p.bbox.lw-0.025,v;if(E.mid){D=this.createBox(r);this.createChar(D,E.mid,G,y);u+=D.bbox.w}if(E.min&&ou){var F=l.bbox.rw-l.bbox.lw,q=F-0.05,z,s,A=(E.mid?2:1);s=z=Math.min(Math.ceil((o-u)/(A*q)),this.maxStretchyParts);if(!E.fillExtenders){q=(o-u)/(A*z)}v=(z/(z+1))*(F-q);q=F-v;t-=l.bbox.lw+v;while(A-->0){while(z-->0){if(!this.cloneNodeBug){m=l.cloneNode(true)}else{m=this.Element("span");this.createChar(m,E.rep,G,y)}m.bbox=l.bbox;this.placeBox(this.addBox(r,m),t,0,true);t+=q}if(E.mid&&A){this.placeBox(D,t,0,true);t+=D.bbox.w-v;z=s}}}else{t-=(u-o)/2;if(E.mid){this.placeBox(D,t,0,true);t+=D.bbox.w}t-=(u-o)/2}this.placeBox(C,t,0,true);B.bbox={w:t+C.bbox.rw,lw:0,rw:t+C.bbox.rw,H:Math.max(p.bbox.h,l.bbox.h,C.bbox.h,D.bbox.h),D:Math.max(p.bbox.d,l.bbox.d,C.bbox.d,D.bbox.d),h:l.bbox.h,d:l.bbox.d,exactW:true};B.scale=G;B.isMultiChar=true;this.setStackWidth(r,B.bbox.w)},createChar:function(s,p,n,k){s.isMathJax=true;var r=s,t="",o={fonts:[p[1]],noRemap:true};if(k&&k===g.VARIANT.BOLD){o.fonts=[p[1]+"-bold",p[1]]}if(typeof(p[1])!=="string"){o=p[1]}if(p[0] instanceof Array){for(var q=0,l=p[0].length;q=55296&&x<56319){B++;x=(((x-55296)<<10)+(s.charCodeAt(B)-56320))+65536;if(this.FONTDATA.RemapPlane1){var E=this.FONTDATA.RemapPlane1(x,p);x=E.n;p=E.variant}}else{var u,r,v=this.FONTDATA.RANGES;for(u=0,r=v.length;u=v[u].low&&x<=v[u].high){if(v[u].remap&&v[u].remap[x]){x=q+v[u].remap[x]}else{x=x-v[u].low+q;if(v[u].add){x+=v[u].add}}if(p["variant"+v[u].offset]){p=this.FONTDATA.VARIANT[p["variant"+v[u].offset]]}break}}}if(p.remap&&p.remap[x]){if(p.remap[x] instanceof Array){var o=p.remap[x];x=o[0];p=this.FONTDATA.VARIANT[o[1]]}else{if(typeof(p.remap[x])==="string"){s=p.remap[x]+s.substr(B+1);B=0;y=s.length;x=s.charCodeAt(0)}else{x=p.remap[x];if(p.remap.variant){p=this.FONTDATA.VARIANT[p.remap.variant]}}}}if(this.FONTDATA.REMAP[x]&&!p.noRemap){x=this.FONTDATA.REMAP[x];if(x instanceof Array){p=this.FONTDATA.VARIANT[x[1]];x=x[0]}if(typeof(x)==="string"){s=x+s.substr(B+1);B=0;y=s.length;x=x.charCodeAt(0)}}t=this.lookupChar(p,x);C=t[x];if(l||(!this.checkFont(t,k.style)&&!C[5].img)){if(z.length){this.addText(k,z);z=""}var w=!!k.style.fontFamily||!!A.style.fontStyle||!!A.style.fontWeight||!t.directory||l;l=false;if(k!==A){w=!this.checkFont(t,A.style);k=A}if(w){k=this.addElement(A,"span",{isMathJax:true,subSpan:true})}this.handleFont(k,t,k!==A)}z=this.handleChar(k,t,C,x,z);if(!(C[5]||{}).space){if(C[0]/1000>A.bbox.h){A.bbox.h=C[0]/1000}if(C[1]/1000>A.bbox.d){A.bbox.d=C[1]/1000}}if(A.bbox.w+C[3]/1000A.bbox.rw){A.bbox.rw=A.bbox.w+C[4]/1000}A.bbox.w+=C[2]/1000}if(z.length){this.addText(k,z)}if(A.scale&&A.scale!==1){A.bbox.h*=A.scale;A.bbox.d*=A.scale;A.bbox.w*=A.scale;A.bbox.lw*=A.scale;A.bbox.rw*=A.scale}if(s.length==1&&t.skew&&t.skew[x]){A.bbox.skew=t.skew[x]}},checkFont:function(k,l){var m=(l.fontWeight||"normal");if(m.match(/^\d+$/)){m=(parseInt(m)>=600?"bold":"normal")}return(k.family.replace(/'/g,"")===l.fontFamily.replace(/'/g,"")&&(k.style||"normal")===(l.fontStyle||"normal")&&(k.weight||"normal")===m)},handleFont:function(m,k,o){m.style.fontFamily=k.family;if(!k.directory){m.style.fontSize=Math.floor(100/d.scale+0.5)+"%"}if(!(d.FontFaceBug&&k.isWebFont)){var l=k.style||"normal",n=k.weight||"normal";if(l!=="normal"||o){m.style.fontStyle=l}if(n!=="normal"||o){m.style.fontWeight=n}}},handleChar:function(l,k,s,r,q){var p=s[5];if(p.space){if(q.length){this.addText(l,q)}d.createShift(l,s[2]/1000);return""}if(p.img){return this.handleImg(l,k,s,r,q)}if(p.isUnknown&&this.FONTDATA.DELIMITERS[r]){if(q.length){this.addText(l,q)}var o=l.scale;d.createDelimiter(l,r,0,1,k);if(this.FONTDATA.DELIMITERS[r].dir==="V"){l.style.verticalAlign=this.Em(l.bbox.d);l.bbox.h+=l.bbox.d;l.bbox.d=0}l.scale=o;s[0]=l.bbox.h*1000;s[1]=l.bbox.d*1000;s[2]=l.bbox.w*1000;s[3]=l.bbox.lw*1000;s[4]=l.bbox.rw*1000;return""}if(p.c==null){if(r<=65535){p.c=String.fromCharCode(r)}else{var m=r-65536;p.c=String.fromCharCode((m>>10)+55296)+String.fromCharCode((m&1023)+56320)}}if(p.rfix){this.addText(l,q+p.c);d.createShift(l,p.rfix/1000);return""}if(s[2]||!this.msieAccentBug||q.length){return q+p.c}d.createShift(l,s[3]/1000);d.createShift(l,(s[4]-s[3])/1000);this.addText(l,p.c);d.createShift(l,-s[4]/1000);return""},handleImg:function(l,k,p,o,m){return m},lookupChar:function(p,s){var o,k;if(!p.FONTS){var r=this.FONTDATA.FONTS;var q=(p.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(q instanceof Array)){q=[q]}if(p.fonts!=q){p.fonts=q}p.FONTS=[];for(o=0,k=q.length;o=0;n--){if(l.Ranges[n][2]==o){l.Ranges.splice(n,1)}}this.loadFont(l.directory+"/"+o+".js")}}}},loadFont:function(l){var k=MathJax.Callback.Queue();k.Push(["Require",h,this.fontDir+"/"+l]);if(this.imgFonts){if(!MathJax.isPacked){l=l.replace(/\/([^\/]*)$/,d.imgPacked+"/$1")}k.Push(["Require",h,this.webfontDir+"/png/"+l])}b.RestartAfter(k.Push({}))},loadWebFont:function(k){k.available=k.isWebFont=true;if(d.FontFaceBug){k.family=k.name;if(d.msieFontCSSBug){k.family+="-Web"}}b.RestartAfter(this.Font.loadWebFont(k))},loadWebFontError:function(l,k){b.Startup.signal.Post("HTML-CSS Jax - disable web fonts");l.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;b.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");b.Startup.signal.Post("HTML-CSS Jax - using image fonts");e(["WebFontNotAvailable","Web-Fonts not available -- using image fonts instead"],null,3000);h.Require(this.directory+"/imageFonts.js",k)}else{this.allowWebFonts=false;k()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},NBSP:"\u00A0",rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){g=MathJax.ElementJax.mml;g.mbase.Augment({toHTML:function(o){o=this.HTMLcreateSpan(o);if(this.type!="mrow"){o=this.HTMLhandleSize(o)}for(var l=0,k=this.data.length;ll.d){l.d=m.d}if(m.h>l.h){l.h=m.h}if(m.D!=null&&m.D>l.D){l.D=m.D}if(m.H!=null&&m.H>l.H){l.H=m.H}if(n.style.paddingLeft){l.w+=d.unEm(n.style.paddingLeft)*(n.scale||1)}if(l.w+m.lwl.rw){l.rw=l.w+m.rw}l.w+=m.w;if(n.style.paddingRight){l.w+=d.unEm(n.style.paddingRight)*(n.scale||1)}if(m.width){l.width=m.width;l.minWidth=m.minWidth}if(m.ic){l.ic=m.ic}else{delete l.ic}if(l.exactW&&!m.exactW){delete l.exactW}},HTMLemptyBBox:function(k){k.h=k.d=k.H=k.D=k.rw=-d.BIGDIMEN;k.w=0;k.lw=d.BIGDIMEN;return k},HTMLcleanBBox:function(k){if(k.h===this.BIGDIMEN){k.h=k.d=k.H=k.D=k.w=k.rw=k.lw=0}if(k.D<=k.d){delete k.D}if(k.H<=k.h){delete k.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(l){if(this.isEmbellished()){var k=this.Core();if(k&&k!==this){return k.HTMLcanStretch(l)}}return false},HTMLstretchH:function(l,k){return this.HTMLspanElement()},HTMLstretchV:function(l,k,m){return this.HTMLspanElement()},HTMLnotEmpty:function(k){while(k){if((k.type!=="mrow"&&k.type!=="texatom")||k.data.length>1){return true}k=k.data[0]}return false},HTMLmeasureChild:function(l,k){if(this.data[l]){d.Measured(this.data[l].toHTML(k),k)}else{k.bbox=this.HTMLzeroBBox()}},HTMLboxChild:function(l,k){if(!this.data[l]){this.SetData(l,g.mrow())}return this.data[l].toHTML(k)},HTMLcreateSpan:function(k){if(this.spanID){var l=this.HTMLspanElement();if(l&&(l.parentNode===k||(l.parentNode||{}).parentNode===k)){while(l.firstChild){l.removeChild(l.firstChild)}l.bbox=this.HTMLzeroBBox();l.scale=1;l.isMultChar=l.HH=null;l.style.cssText="";return l}}if(this.href){k=d.addElement(k,"a",{href:this.href,isMathJax:true})}k=d.addElement(k,"span",{className:this.type,isMathJax:true});if(d.imgHeightBug){k.style.display="inline-block"}if(this["class"]){k.className+=" "+this["class"]}if(!this.spanID){this.spanID=d.GetID()}k.id=(this.id||"MathJax-Span-"+this.spanID)+d.idPostfix;k.bbox=this.HTMLzeroBBox();this.styles={};if(this.style){k.style.cssText=this.style;if(k.style.fontSize){this.mathsize=k.style.fontSize;k.style.fontSize=""}this.styles={border:d.getBorders(k),padding:d.getPadding(k)};if(this.styles.border){k.style.border=""}if(this.styles.padding){k.style.padding=""}}if(this.href){k.parentNode.bbox=k.bbox}return k},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+d.idPostfix)},HTMLhandleVariant:function(l,k,m){d.handleVariant(l,k,m)},HTMLhandleSize:function(k){if(!k.scale){k.scale=this.HTMLgetScale();if(k.scale!==1){k.style.fontSize=d.Percent(k.scale)}}return k},HTMLhandleColor:function(w){var y=this.getValues("mathcolor","color");if(this.mathbackground){y.mathbackground=this.mathbackground}if(this.background){y.background=this.background}if(this.style&&w.style.backgroundColor){y.mathbackground=w.style.backgroundColor;w.style.backgroundColor="transparent"}var t=(this.styles||{}).border,v=(this.styles||{}).padding;if(y.color&&!this.mathcolor){y.mathcolor=y.color}if(y.background&&!this.mathbackground){y.mathbackground=y.background}if(y.mathcolor){w.style.color=y.mathcolor}if((y.mathbackground&&y.mathbackground!==g.COLOR.TRANSPARENT)||t||v){var A=w.bbox,z=(A.exact?0:1/d.em),u=0,s=0,m=w.style.paddingLeft,q=w.style.paddingRight;if(this.isToken){u=A.lw;s=A.rw-A.w}if(m!==""){u+=d.unEm(m)*(w.scale||1)}if(q!==""){s-=d.unEm(q)*(w.scale||1)}var l=(d.PaddingWidthBug||A.keepPadding||A.exactW?0:s-u);var o=Math.max(0,d.getW(w)+l);var x=A.h+A.d,k=-A.d,r=0,p=0;if(o>0){o+=2*z;u-=z}if(x>0){x+=2*z;k-=z}s=-o-u;if(t){s-=t.right;k-=t.bottom;r+=t.left;p+=t.right;A.h+=t.top;A.d+=t.bottom;A.w+=t.left+t.right;A.lw-=t.left;A.rw+=t.right}if(v){x+=v.top+v.bottom;o+=v.left+v.right;s-=v.right;k-=v.bottom;r+=v.left;p+=v.right;A.h+=v.top;A.d+=v.bottom;A.w+=v.left+v.right;A.lw-=v.left;A.rw+=v.right}if(p){w.style.paddingRight=d.Em(p)}var n=d.Element("span",{id:"MathJax-Color-"+this.spanID+d.idPostfix,isMathJax:true,style:{display:"inline-block",backgroundColor:y.mathbackground,width:d.Em(o),height:d.Em(x),verticalAlign:d.Em(k),marginLeft:d.Em(u),marginRight:d.Em(s)}});d.setBorders(n,t);if(A.width){n.style.width=A.width;n.style.marginRight="-"+A.width}if(d.msieInlineBlockAlignBug){n.style.position="relative";n.style.width=n.style.height=0;n.style.verticalAlign=n.style.marginLeft=n.style.marginRight="";n.style.border=n.style.padding="";if(t&&d.msieBorderWidthBug){x+=t.top+t.bottom;o+=t.left+t.right}n.style.width=d.Em(r+z);d.placeBox(d.addElement(n,"span",{noAdjust:true,isMathJax:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",background:(y.mathbackground||"transparent"),width:d.Em(o),height:d.Em(x)}}),u,A.h+z);d.setBorders(n.firstChild,t)}w.parentNode.insertBefore(n,w);if(d.msieColorPositionBug){w.style.position="relative"}return n}return null},HTMLremoveColor:function(){var k=document.getElementById("MathJax-Color-"+this.spanID+d.idPostfix);if(k){k.parentNode.removeChild(k)}},HTMLhandleSpace:function(o){if(this.useMMLspacing){if(this.type!=="mo"){return}var m=this.getValues("scriptlevel","lspace","rspace");if(m.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){var l=this.HTMLgetMu(o);m.lspace=Math.max(0,d.length2em(m.lspace,l));m.rspace=Math.max(0,d.length2em(m.rspace,l));var k=this,n=this.Parent();while(n&&n.isEmbellished()&&n.Core()===k){k=n;n=n.Parent();o=k.HTMLspanElement()}if(m.lspace){o.style.paddingLeft=d.Em(m.lspace)}if(m.rspace){o.style.paddingRight=d.Em(m.rspace)}}}else{var p=this.texSpacing();if(p!==""){p=d.length2em(p,this.HTMLgetScale())/(o.scale||1);if(o.style.paddingLeft){p+=d.unEm(o.style.paddingLeft)}o.style.paddingLeft=d.Em(p)}}},HTMLgetScale:function(){var m=1,k=this.getValues("mathsize","scriptlevel","fontsize");if(this.style){var l=this.HTMLspanElement();if(l.style.fontSize!=""){k.fontsize=l.style.fontSize}}if(k.fontsize&&!this.mathsize){k.mathsize=k.fontsize}if(k.scriptlevel!==0){if(k.scriptlevel>2){k.scriptlevel=2}m=Math.pow(this.Get("scriptsizemultiplier"),k.scriptlevel);k.scriptminsize=d.length2em(this.Get("scriptminsize"));if(m2){l.scriptlevel=2}k=Math.sqrt(Math.pow(l.scriptsizemultiplier,l.scriptlevel))}return k},HTMLgetVariant:function(){var k=this.getValues("mathvariant","fontfamily","fontweight","fontstyle");k.hasVariant=this.Get("mathvariant",true);if(!k.hasVariant){k.family=k.fontfamily;k.weight=k.fontweight;k.style=k.fontstyle}if(this.style){var m=this.HTMLspanElement();if(!k.family&&m.style.fontFamily){k.family=m.style.fontFamily}if(!k.weight&&m.style.fontWeight){k.weight=m.style.fontWeight}if(!k.style&&m.style.fontStyle){k.style=m.style.fontStyle}}if(k.weight&&k.weight.match(/^\d+$/)){k.weight=(parseInt(k.weight)>600?"bold":"normal")}var l=k.mathvariant;if(this.variantForm){l="-"+d.fontInUse+"-variant"}if(k.family&&!k.hasVariant){if(!k.weight&&k.mathvariant.match(/bold/)){k.weight="bold"}if(!k.style&&k.mathvariant.match(/italic/)){k.style="italic"}return{FONTS:[],fonts:[],noRemap:true,defaultFont:{family:k.family,style:k.style,weight:k.weight}}}if(k.weight==="bold"){l={normal:g.VARIANT.BOLD,italic:g.VARIANT.BOLDITALIC,fraktur:g.VARIANT.BOLDFRAKTUR,script:g.VARIANT.BOLDSCRIPT,"sans-serif":g.VARIANT.BOLDSANSSERIF,"sans-serif-italic":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.weight==="normal"){l={bold:g.VARIANT.normal,"bold-italic":g.VARIANT.ITALIC,"bold-fraktur":g.VARIANT.FRAKTUR,"bold-script":g.VARIANT.SCRIPT,"bold-sans-serif":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.SANSSERIFITALIC}[l]||l}}if(k.style==="italic"){l={normal:g.VARIANT.ITALIC,bold:g.VARIANT.BOLDITALIC,"sans-serif":g.VARIANT.SANSSERIFITALIC,"bold-sans-serif":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.style==="normal"){l={italic:g.VARIANT.NORMAL,"bold-italic":g.VARIANT.BOLD,"sans-serif-italic":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.BOLDSANSSERIF}[l]||l}}if(!(l in d.FONTDATA.VARIANT)){l="normal"}return d.FONTDATA.VARIANT[l]}},{HTMLautoload:function(){var k=d.autoloadDir+"/"+this.type+".js";b.RestartAfter(h.Require(k))},HTMLautoloadFile:function(k){var l=d.autoloadDir+"/"+k+".js";b.RestartAfter(h.Require(l))},HTMLstretchH:function(l,k){this.HTMLremoveColor();return this.toHTML(l,k)},HTMLstretchV:function(l,k,m){this.HTMLremoveColor();return this.toHTML(l,k,m)}});g.chars.Augment({toHTML:function(n,m,l,o){var r=this.data.join("").replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.entity.Augment({toHTML:function(n,m,l,o){var r=this.toString().replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.mi.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lp.w&&q.length===1&&!n.noIC){p.ic=p.rw-p.w;d.createBlank(o,p.ic);p.w=p.rw}this.HTMLhandleSpace(o);this.HTMLhandleColor(o);return o}});g.mn.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lu.bbox.w){u.bbox.ic=u.bbox.rw-u.bbox.w;d.createBlank(u,u.bbox.ic);u.bbox.w=u.bbox.rw}}this.HTMLhandleSpace(u);this.HTMLhandleColor(u);return u},CoreParent:function(){var k=this;while(k&&k.isEmbellished()&&k.CoreMO()===this&&!k.isa(g.math)){k=k.Parent()}return k},CoreText:function(k){if(!k){return""}if(k.isEmbellished()){return k.CoreMO().data.join("")}while((k.isa(g.mrow)||k.isa(g.TeXAtom)||k.isa(g.mstyle)||k.isa(g.mphantom))&&k.data.length===1&&k.data[0]){k=k.data[0]}if(!k.isToken){return""}else{return k.data.join("")}},HTMLremapChars:{"*":"\u2217",'"':"\u2033","\u00B0":"\u2218","\u00B2":"2","\u00B3":"3","\u00B4":"\u2032","\u00B9":"1"},HTMLremap:function(l,k){l=l.replace(/-/g,"\u2212");if(k){l=l.replace(/'/g,"\u2032").replace(/`/g,"\u2035");if(l.length===1){l=k[l]||l}}return l},HTMLcanStretch:function(n){if(!this.Get("stretchy")){return false}var o=this.data.join("");if(o.length>1){return false}var l=this.CoreParent();if(l&&l.isa(g.munderover)&&this.CoreText(l.data[l.base]).length===1){var m=l.data[l.over],k=l.data[l.under];if(m&&this===m.CoreMO()&&l.Get("accent")){o=d.FONTDATA.REMAPACCENT[o]||o}else{if(k&&this===k.CoreMO()&&l.Get("accentunder")){o=d.FONTDATA.REMAPACCENTUNDER[o]||o}}}o=d.FONTDATA.DELIMITERS[o.charCodeAt(0)];return(o&&o.dir==n.substr(0,1))},HTMLstretchV:function(m,n,o){this.HTMLremoveColor();var r=this.getValues("symmetric","maxsize","minsize");var p=this.HTMLspanElement(),s=this.HTMLgetMu(p),q;var k=d.TeX.axis_height,l=p.scale;if(r.symmetric){q=2*Math.max(n-k,o+k)}else{q=n+o}r.maxsize=d.length2em(r.maxsize,s,p.bbox.h+p.bbox.d);r.minsize=d.length2em(r.minsize,s,p.bbox.h+p.bbox.d);q=Math.max(r.minsize,Math.min(r.maxsize,q));p=this.HTMLcreateSpan(m);d.createDelimiter(p,this.data.join("").charCodeAt(0),q,l);if(r.symmetric){q=(p.bbox.h+p.bbox.d)/2+k}else{q=(p.bbox.h+p.bbox.d)*n/(n+o)}d.positionDelimiter(p,q);this.HTMLhandleSpace(p);this.HTMLhandleColor(p);return p},HTMLstretchH:function(o,k){this.HTMLremoveColor();var m=this.getValues("maxsize","minsize","mathvariant","fontweight");if((m.fontweight==="bold"||parseInt(m.fontweight)>=600)&&!this.Get("mathvariant",true)){m.mathvariant=g.VARIANT.BOLD}var n=this.HTMLspanElement(),l=this.HTMLgetMu(n),p=n.scale;m.maxsize=d.length2em(m.maxsize,l,n.bbox.w);m.minsize=d.length2em(m.minsize,l,n.bbox.w);k=Math.max(m.minsize,Math.min(m.maxsize,k));n=this.HTMLcreateSpan(o);d.createDelimiter(n,this.data.join("").charCodeAt(0),k,p,m.mathvariant);this.HTMLhandleSpace(n);this.HTMLhandleColor(n);return n}});g.mtext.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));var n=this.HTMLgetVariant();if(d.config.mtextFontInherit||this.Parent().type==="merror"){n={bold:n.bold,italic:n.italic,fontInherit:true}}for(var l=0,k=this.data.length;ld.linebreakWidth)||this.hasNewline()},HTMLstretchH:function(m,k){this.HTMLremoveColor();var l=this.HTMLspanElement();this.data[this.core].HTMLstretchH(l,k);this.HTMLcomputeBBox(l,true);this.HTMLhandleColor(l);return l},HTMLstretchV:function(m,l,n){this.HTMLremoveColor();var k=this.HTMLspanElement();this.data[this.core].HTMLstretchV(k,l,n);this.HTMLcomputeBBox(k,true);this.HTMLhandleColor(k);return k}});g.mstyle.Augment({toHTML:function(l,k,m){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){var n=this.data[0].toHTML(l);if(m!=null){this.data[0].HTMLstretchV(l,k,m)}else{if(k!=null){this.data[0].HTMLstretchH(l,k)}}l.bbox=n.bbox}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mfrac.Augment({toHTML:function(D){D=this.HTMLcreateSpan(D);var m=d.createStack(D);var r=d.createBox(m),o=d.createBox(m);d.MeasureSpans([this.HTMLboxChild(0,r),this.HTMLboxChild(1,o)]);var k=this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled");var I=this.HTMLgetScale(),C=k.displaystyle;var G=d.TeX.axis_height*I;if(k.bevelled){var F=(C?0.4:0.15);var s=Math.max(r.bbox.h+r.bbox.d,o.bbox.h+o.bbox.d)+2*F;var E=d.createBox(m);d.createDelimiter(E,47,s);d.placeBox(r,0,(r.bbox.d-r.bbox.h)/2+G+F);d.placeBox(E,r.bbox.w-F/2,(E.bbox.d-E.bbox.h)/2+G);d.placeBox(o,r.bbox.w+E.bbox.w-F,(o.bbox.d-o.bbox.h)/2+G-F)}else{var l=Math.max(r.bbox.w,o.bbox.w);var y=d.thickness2em(k.linethickness,I),A,z,x,w;var B=d.TeX.min_rule_thickness/this.em;if(C){x=d.TeX.num1;w=d.TeX.denom1}else{x=(y===0?d.TeX.num3:d.TeX.num2);w=d.TeX.denom2}x*=I;w*=I;if(y===0){A=Math.max((C?7:3)*d.TeX.rule_thickness,2*B);z=(x-r.bbox.d)-(o.bbox.h-w);if(zy){l=((s.bbox.h+s.bbox.d)-(y-A))/2}var B=d.FONTDATA.DELIMITERS[d.FONTDATA.RULECHAR];if(!B||oK){K=r[M].bbox.w}if(!N[M]&&K>n){n=K}}}if(F==null&&H!=null){n=H}else{if(n==-d.BIGDIMEN){n=K}}for(M=K=0,I=this.data.length;MK){K=w.bbox.w}}}var E=d.TeX.rule_thickness,G=d.FONTDATA.TeX_factor;var p=r[this.base]||{bbox:this.HTMLzeroBBox()};var v,s,A,z,u,C,J,O=0;if(p.bbox.ic){O=1.3*p.bbox.ic+0.05}for(M=0,I=this.data.length;M0){z+=F;y-=F}}d.placeBox(k,o.bbox.w+M,Math.max(z,J.superscriptshift));d.placeBox(x,o.bbox.w,-Math.max(y,J.subscriptshift))}}this.HTMLhandleSpace(K);this.HTMLhandleColor(K);return K},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mmultiscripts.Augment({toHTML:g.mbase.HTMLautoload});g.mtable.Augment({toHTML:g.mbase.HTMLautoload});g["annotation-xml"].Augment({toHTML:g.mbase.HTMLautoload});g.math.Augment({toHTML:function(u,l){var r=this.Get("alttext");if(r&&r!==""){l.setAttribute("aria-label",r)}var m=d.addElement(u,"nobr",{isMathJax:true});u=this.HTMLcreateSpan(m);var s=d.createStack(u),n=d.createBox(s),t;s.style.fontSize=m.parentNode.style.fontSize;m.parentNode.style.fontSize="";if(this.data[0]!=null){if(d.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}g.mbase.prototype.displayAlign=b.config.displayAlign;g.mbase.prototype.displayIndent=b.config.displayIndent;var o=this.data[0].toHTML(n);o.bbox.exactW=false;t=d.Measured(o,n)}d.placeBox(n,0,0);u.style.width=d.Em((Math.round(t.bbox.w*this.em)+0.25)/d.outerEm);u.style.display="inline-block";var k=1/d.em,q=d.em/d.outerEm;d.em/=q;u.bbox.h*=q;u.bbox.d*=q;u.bbox.w*=q;u.bbox.lw*=q;u.bbox.rw*=q;if(t&&t.bbox.width!=null){u.style.minWidth=(t.bbox.minWidth||u.style.width);u.style.width=s.style.width=t.bbox.width;n.style.width="100%"}this.HTMLhandleColor(u);if(t){d.createRule(u,(t.bbox.h+k)*q,(t.bbox.d+k)*q,0)}if(!this.isMultiline&&this.Get("display")==="block"&&u.bbox.width==null){var v=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(v.indentalignfirst!==g.INDENTALIGN.INDENTALIGN){v.indentalign=v.indentalignfirst}if(v.indentalign===g.INDENTALIGN.AUTO){v.indentalign=this.displayAlign}l.style.textAlign=v.indentalign;if(v.indentshiftfirst!==g.INDENTSHIFT.INDENTSHIFT){v.indentshift=v.indentshiftfirst}if(v.indentshift==="auto"){v.indentshift=this.displayIndent}if(v.indentshift&&v.indentalign!==g.INDENTALIGN.CENTER){u.style[{left:"marginLeft",right:"marginRight"}[v.indentalign]]=d.Em(d.length2em(v.indentshift))}}return u},HTMLspanElement:g.mbase.prototype.HTMLspanElement});g.TeXAtom.Augment({toHTML:function(l){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){if(this.texClass===g.TEXCLASS.VCENTER){var k=d.createStack(l);var m=d.createBox(k);d.Measured(this.data[0].toHTML(m),m);d.placeBox(m,0,d.TeX.axis_height-(m.bbox.h+m.bbox.d)/2+m.bbox.d)}else{l.bbox=this.data[0].toHTML(l).bbox}}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",d,"jax.js"]),0)})});b.Register.StartupHook("End Config",function(){b.Browser.Select({MSIE:function(k){var o=(document.documentMode||0);var n=k.versionAtLeast("7.0");var m=k.versionAtLeast("8.0")&&o>7;var l=(document.compatMode==="BackCompat");if(o<9){d.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";d.config.styles[".MathJax .MathJax_HitBox"].opacity=0;d.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)"}d.Augment({PaddingWidthBug:true,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:l,msieDisappearingBug:(o>=8),msieMarginScaleBug:(o<8),msiePaddingWidthBug:true,msieBorderWidthBug:l,msieFrameSizeBug:(o<=8),msieInlineBlockAlignBug:(!m||l),msiePlaceBoxBug:(m&&!l),msieClipRectBug:!m,msieNegativeSpaceBug:l,cloneNodeBug:(m&&k.version==="8.0"),initialSkipBug:(o<8),msieNegativeBBoxBug:(o>=8),msieIE6:!n,msieItalicWidthBug:true,FontFaceBug:true,msieFontCSSBug:k.isIE9,allowWebFonts:(o>=9?"woff":"eot")})},Firefox:function(l){var m=false;if(l.versionAtLeast("3.5")){var k=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||b.config.root.match(/^https?:\/\//)||(b.config.root+"/").substr(0,k.length)===k){m="otf"}}d.Augment({ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:m})},Safari:function(p){var n=p.versionAtLeast("3.0");var m=p.versionAtLeast("3.1");var k=navigator.appVersion.match(/ Safari\/\d/)&&navigator.appVersion.match(/ Version\/\d/)&&navigator.vendor.match(/Apple/);var l=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var q=(m&&p.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!p.versionAtLeast("5.0"))||(l!=null&&(l[1]<2||(l[1]==2&&l[2]<2)))));d.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!m,safariTextNodeBug:!n,forceReflow:true,allowWebFonts:(m&&!q?"otf":false)});if(k){d.Augment({webFontDefault:(p.isMobile?"sans-serif":"serif")})}if(p.isPC){d.Augment({adjustAvailableFonts:d.removeSTIXfonts,checkWebFontsTwice:true})}if(q){var o=b.config["HTML-CSS"];if(o){o.availableFonts=[];o.preferredFont=null}else{b.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(k){d.Augment({Em:d.EmRounded,cloneNodeBug:true,rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariWebFontSerif:[""],forceReflow:true,allowWebFonts:(k.versionAtLeast("4.0")?"otf":"svg")})},Opera:function(k){k.isMini=(navigator.appVersion.match("Opera Mini")!=null);d.config.styles[".MathJax .merror"]["vertical-align"]=null;d.config.styles[".MathJax span"]["z-index"]=0;d.Augment({operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:k.versionAtLeast("10.61"),initialSkipBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(k.versionAtLeast("10.0")&&!k.isMini?"otf":false),adjustAvailableFonts:d.removeSTIXfonts})},Konqueror:function(k){d.Augment({konquerorVerticalAlignBug:true})}})});MathJax.Hub.Register.StartupHook("End Cookie",function(){if(b.config.menuSettings.zoom!=="None"){h.Require("[MathJax]/extensions/MathZoom.js")}})})(MathJax.Ajax,MathJax.Hub,MathJax.OutputJax["HTML-CSS"]); - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];a.mtable.Augment({toHTML:function(t){t=this.HTMLcreateSpan(t);if(this.data.length===0){return t}var K=this.getValues("columnalign","rowalign","columnspacing","rowspacing","columnwidth","equalcolumns","equalrows","columnlines","rowlines","frame","framespacing","align","useHeight","width","side","minlabelspacing");var aJ=K.width.match(/%$/);var ay=b.createStack(t);var aG=this.HTMLgetScale(),aA=this.HTMLgetMu(t),aB=-1;var aq=[],au=[],ak=[],aw=[],av=[],af,ae,ap=-1,ad,ao,Z,aF,R,aC,aO=[];var al=b.FONTDATA.baselineskip*aG*K.useHeight,aT,I=b.FONTDATA.lineH*aG,O=b.FONTDATA.lineD*aG;for(af=0,ad=this.data.length;afap){ap=ae}av[ae]=b.createStack(b.createBox(ay));ak[ae]=-b.BIGDIMEN}aw[af][ae]=b.createBox(av[ae]);aO.push(aF.data[ae-Z].toHTML(aw[af][ae]))}}b.MeasureSpans(aO);for(af=0,ad=this.data.length;afaq[ae]){aq[ae]=aS*aL.h/aT}if(aS*aL.d/aT>au[ae]){au[ae]=aS*aL.d/aT}}}else{if(aC.HTMLcanStretch("Horizontal")){aS=b.length2em(aS,aA,aL.w);if(aS>ak[ae]){ak[ae]=aS}}}}}if(aw[af][ae].bbox.h>aq[af]){aq[af]=aw[af][ae].bbox.h}if(aw[af][ae].bbox.d>au[af]){au[af]=aw[af][ae].bbox.d}if(aw[af][ae].bbox.w>ak[ae]){ak[ae]=aw[af][ae].bbox.w}}}if(aq[0]+au[0]){aq[0]=Math.max(aq[0],I)}if(aq[aw.length-1]+au[aw.length-1]){au[aw.length-1]=Math.max(au[aw.length-1],O)}var aE=MathJax.Hub.SplitList;var az=aE(K.columnspacing),aQ=aE(K.rowspacing),e=aE(K.columnalign),E=aE(K.rowalign),d=aE(K.columnlines),z=aE(K.rowlines),aM=aE(K.columnwidth),V=[];for(af=0,ad=az.length;afaw.length){ab=aw.length}}aj=0;aU=-(aT+aH)+aq[0];for(af=0,ad=ab-1;af0.98){S=0.98/ag;ag=0.98}}else{if(K.width==="auto"){if(ag>0.98){S=L/(B+L);ac=B+L}else{ac=B/(1-ag)}}else{ac=b.length2em(K.width,aA);for(af=0,ad=Math.min(ap+1,az.length);af0.01){if(ah&&ac>B){ac=(ac-B)/ah;for(af=0,ad=at.length;af=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(ag){var k;var aa=MathJax.Object.Subclass({firstChild:null,lastChild:null,Init:function(){this.childNodes=[]},appendChild:function(i){if(i.parent){i.parent.removeChild(i)}if(this.lastChild){this.lastChild.nextSibling=i}if(!this.firstChild){this.firstChild=i}this.childNodes.push(i);i.parent=this;this.lastChild=i;return i},removeChild:function(ak){for(var aj=0,ai=this.childNodes.length;aj=ai-1){this.lastChild=al}this.childNodes[ak]=al;al.nextSibling=aj.nextSibling;aj.nextSibling=aj.parent=null;return aj},toString:function(){return"{"+this.childNodes.join("")+"}"}});var E=function(){k=MathJax.ElementJax.mml;var i=k.mbase.prototype.Init;k.mbase.Augment({firstChild:null,lastChild:null,nodeValue:"",nextSibling:null,Init:function(){var ai=i.apply(this,arguments)||this;ai.childNodes=ai.data;ai.nodeName=ai.type;return ai},appendChild:function(al){if(al.parent){al.parent.removeChild(al)}var aj=arguments;if(al.isa(aa)){aj=al.childNodes;al.data=al.childNodes=[];al.firstChild=al.lastChild=null}for(var ak=0,ai=aj.length;ak=ai-1){this.lastChild=al}this.SetData(ak,al);al.nextSibling=aj.nextSibling;this.nodeValue="";for(ak=0,ai=this.childNodes.length;ak=",tag:"mo",output:"\u2265",tex:"ge",ttype:d},{input:"geq",tag:"mo",output:"\u2265",tex:null,ttype:d},{input:"-<",tag:"mo",output:"\u227A",tex:"prec",ttype:d},{input:"-lt",tag:"mo",output:"\u227A",tex:null,ttype:d},{input:">-",tag:"mo",output:"\u227B",tex:"succ",ttype:d},{input:"in",tag:"mo",output:"\u2208",tex:null,ttype:d},{input:"!in",tag:"mo",output:"\u2209",tex:"notin",ttype:d},{input:"sub",tag:"mo",output:"\u2282",tex:"subset",ttype:d},{input:"sup",tag:"mo",output:"\u2283",tex:"supset",ttype:d},{input:"sube",tag:"mo",output:"\u2286",tex:"subseteq",ttype:d},{input:"supe",tag:"mo",output:"\u2287",tex:"supseteq",ttype:d},{input:"-=",tag:"mo",output:"\u2261",tex:"equiv",ttype:d},{input:"~=",tag:"mo",output:"\u2245",tex:"cong",ttype:d},{input:"~~",tag:"mo",output:"\u2248",tex:"approx",ttype:d},{input:"prop",tag:"mo",output:"\u221D",tex:"propto",ttype:d},{input:"and",tag:"mtext",output:"and",tex:null,ttype:a},{input:"or",tag:"mtext",output:"or",tex:null,ttype:a},{input:"not",tag:"mo",output:"\u00AC",tex:"neg",ttype:d},{input:"=>",tag:"mo",output:"\u21D2",tex:"implies",ttype:d},{input:"if",tag:"mo",output:"if",tex:null,ttype:a},{input:"<=>",tag:"mo",output:"\u21D4",tex:"iff",ttype:d},{input:"AA",tag:"mo",output:"\u2200",tex:"forall",ttype:d},{input:"EE",tag:"mo",output:"\u2203",tex:"exists",ttype:d},{input:"_|_",tag:"mo",output:"\u22A5",tex:"bot",ttype:d},{input:"TT",tag:"mo",output:"\u22A4",tex:"top",ttype:d},{input:"|--",tag:"mo",output:"\u22A2",tex:"vdash",ttype:d},{input:"|==",tag:"mo",output:"\u22A8",tex:"models",ttype:d},{input:"(",tag:"mo",output:"(",tex:null,ttype:b},{input:")",tag:"mo",output:")",tex:null,ttype:l},{input:"[",tag:"mo",output:"[",tex:null,ttype:b},{input:"]",tag:"mo",output:"]",tex:null,ttype:l},{input:"{",tag:"mo",output:"{",tex:null,ttype:b},{input:"}",tag:"mo",output:"}",tex:null,ttype:l},{input:"|",tag:"mo",output:"|",tex:null,ttype:r},{input:"(:",tag:"mo",output:"\u2329",tex:"langle",ttype:b},{input:":)",tag:"mo",output:"\u232A",tex:"rangle",ttype:l},{input:"<<",tag:"mo",output:"\u2329",tex:null,ttype:b},{input:">>",tag:"mo",output:"\u232A",tex:null,ttype:l},{input:"{:",tag:"mo",output:"{:",tex:null,ttype:b,invisible:true},{input:":}",tag:"mo",output:":}",tex:null,ttype:l,invisible:true},{input:"int",tag:"mo",output:"\u222B",tex:null,ttype:d},{input:"dx",tag:"mi",output:"{:d x:}",tex:null,ttype:Z},{input:"dy",tag:"mi",output:"{:d y:}",tex:null,ttype:Z},{input:"dz",tag:"mi",output:"{:d z:}",tex:null,ttype:Z},{input:"dt",tag:"mi",output:"{:d t:}",tex:null,ttype:Z},{input:"oint",tag:"mo",output:"\u222E",tex:null,ttype:d},{input:"del",tag:"mo",output:"\u2202",tex:"partial",ttype:d},{input:"grad",tag:"mo",output:"\u2207",tex:"nabla",ttype:d},{input:"+-",tag:"mo",output:"\u00B1",tex:"pm",ttype:d},{input:"O/",tag:"mo",output:"\u2205",tex:"emptyset",ttype:d},{input:"oo",tag:"mo",output:"\u221E",tex:"infty",ttype:d},{input:"aleph",tag:"mo",output:"\u2135",tex:null,ttype:d},{input:"...",tag:"mo",output:"...",tex:"ldots",ttype:d},{input:":.",tag:"mo",output:"\u2234",tex:"therefore",ttype:d},{input:"/_",tag:"mo",output:"\u2220",tex:"angle",ttype:d},{input:"\\ ",tag:"mo",output:"\u00A0",tex:null,ttype:d},{input:"quad",tag:"mo",output:"\u00A0\u00A0",tex:null,ttype:d},{input:"qquad",tag:"mo",output:"\u00A0\u00A0\u00A0\u00A0",tex:null,ttype:d},{input:"cdots",tag:"mo",output:"\u22EF",tex:null,ttype:d},{input:"vdots",tag:"mo",output:"\u22EE",tex:null,ttype:d},{input:"ddots",tag:"mo",output:"\u22F1",tex:null,ttype:d},{input:"diamond",tag:"mo",output:"\u22C4",tex:null,ttype:d},{input:"square",tag:"mo",output:"\u25A1",tex:null,ttype:d},{input:"|__",tag:"mo",output:"\u230A",tex:"lfloor",ttype:d},{input:"__|",tag:"mo",output:"\u230B",tex:"rfloor",ttype:d},{input:"|~",tag:"mo",output:"\u2308",tex:"lceiling",ttype:d},{input:"~|",tag:"mo",output:"\u2309",tex:"rceiling",ttype:d},{input:"CC",tag:"mo",output:"\u2102",tex:null,ttype:d},{input:"NN",tag:"mo",output:"\u2115",tex:null,ttype:d},{input:"QQ",tag:"mo",output:"\u211A",tex:null,ttype:d},{input:"RR",tag:"mo",output:"\u211D",tex:null,ttype:d},{input:"ZZ",tag:"mo",output:"\u2124",tex:null,ttype:d},{input:"f",tag:"mi",output:"f",tex:null,ttype:H,func:true},{input:"g",tag:"mi",output:"g",tex:null,ttype:H,func:true},{input:"lim",tag:"mo",output:"lim",tex:null,ttype:P},{input:"Lim",tag:"mo",output:"Lim",tex:null,ttype:P},{input:"sin",tag:"mo",output:"sin",tex:null,ttype:H,func:true},{input:"cos",tag:"mo",output:"cos",tex:null,ttype:H,func:true},{input:"tan",tag:"mo",output:"tan",tex:null,ttype:H,func:true},{input:"sinh",tag:"mo",output:"sinh",tex:null,ttype:H,func:true},{input:"cosh",tag:"mo",output:"cosh",tex:null,ttype:H,func:true},{input:"tanh",tag:"mo",output:"tanh",tex:null,ttype:H,func:true},{input:"cot",tag:"mo",output:"cot",tex:null,ttype:H,func:true},{input:"sec",tag:"mo",output:"sec",tex:null,ttype:H,func:true},{input:"csc",tag:"mo",output:"csc",tex:null,ttype:H,func:true},{input:"log",tag:"mo",output:"log",tex:null,ttype:H,func:true},{input:"ln",tag:"mo",output:"ln",tex:null,ttype:H,func:true},{input:"det",tag:"mo",output:"det",tex:null,ttype:H,func:true},{input:"dim",tag:"mo",output:"dim",tex:null,ttype:d},{input:"mod",tag:"mo",output:"mod",tex:null,ttype:d},{input:"gcd",tag:"mo",output:"gcd",tex:null,ttype:H,func:true},{input:"lcm",tag:"mo",output:"lcm",tex:null,ttype:H,func:true},{input:"lub",tag:"mo",output:"lub",tex:null,ttype:d},{input:"glb",tag:"mo",output:"glb",tex:null,ttype:d},{input:"min",tag:"mo",output:"min",tex:null,ttype:P},{input:"max",tag:"mo",output:"max",tex:null,ttype:P},{input:"uarr",tag:"mo",output:"\u2191",tex:"uparrow",ttype:d},{input:"darr",tag:"mo",output:"\u2193",tex:"downarrow",ttype:d},{input:"rarr",tag:"mo",output:"\u2192",tex:"rightarrow",ttype:d},{input:"->",tag:"mo",output:"\u2192",tex:"to",ttype:d},{input:"|->",tag:"mo",output:"\u21A6",tex:"mapsto",ttype:d},{input:"larr",tag:"mo",output:"\u2190",tex:"leftarrow",ttype:d},{input:"harr",tag:"mo",output:"\u2194",tex:"leftrightarrow",ttype:d},{input:"rArr",tag:"mo",output:"\u21D2",tex:"Rightarrow",ttype:d},{input:"lArr",tag:"mo",output:"\u21D0",tex:"Leftarrow",ttype:d},{input:"hArr",tag:"mo",output:"\u21D4",tex:"Leftrightarrow",ttype:d},j,af,A,Q,o,s,h,{input:"hat",tag:"mover",output:"\u005E",tex:null,ttype:H,acc:true},{input:"bar",tag:"mover",output:"\u00AF",tex:"overline",ttype:H,acc:true},{input:"vec",tag:"mover",output:"\u2192",tex:null,ttype:H,acc:true},{input:"dot",tag:"mover",output:".",tex:null,ttype:H,acc:true},{input:"ddot",tag:"mover",output:"..",tex:null,ttype:H,acc:true},{input:"ul",tag:"munder",output:"\u0332",tex:"underline",ttype:H,acc:true},ah,x,p,{input:"bb",tag:"mstyle",atname:"fontweight",atval:"bold",output:"bb",tex:null,ttype:H},{input:"mathbf",tag:"mstyle",atname:"fontweight",atval:"bold",output:"mathbf",tex:null,ttype:H},{input:"sf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"sf",tex:null,ttype:H},{input:"mathsf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"mathsf",tex:null,ttype:H},{input:"bbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"bbb",tex:null,ttype:H,codes:D},{input:"mathbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"mathbb",tex:null,ttype:H,codes:D},{input:"cc",tag:"mstyle",atname:"mathvariant",atval:"script",output:"cc",tex:null,ttype:H,codes:J},{input:"mathcal",tag:"mstyle",atname:"mathvariant",atval:"script",output:"mathcal",tex:null,ttype:H,codes:J},{input:"tt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"tt",tex:null,ttype:H},{input:"mathtt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"mathtt",tex:null,ttype:H},{input:"fr",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"fr",tex:null,ttype:H,codes:N},{input:"mathfrak",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"mathfrak",tex:null,ttype:H,codes:N}];function W(ai,i){if(ai.input>i.input){return 1}else{return -1}}var U=[];function v(){var aj=[],ai;for(ai=0;ai>1;if(aj[ai]=U[ai]}y=F;if(am!=""){F=G[al].ttype;return G[al]}F=d;ai=1;ar=ao.slice(0,1);var ap=true;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}if(ar==f){ar=ao.slice(ai,ai+1);if("0"<=ar&&ar<="9"){ap=false;ai++;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}}}if((ap&&ai>1)||ai>2){ar=ao.slice(0,ai-1);aq="mn"}else{ai=2;ar=ao.slice(0,1);aq=(("A">ar||ar>"Z")&&("a">ar||ar>"z")?"mo":"mi")}if(ar=="-"&&y==m){F=m;return{input:ar,tag:aq,output:ar,ttype:H,func:true}}return{input:ar,tag:aq,output:ar,ttype:d}}function T(ai){var i;if(ai.nodeName=="mrow"){i=ai.firstChild.firstChild.nodeValue;if(i=="("||i=="["||i=="{"){ai.removeChild(ai.firstChild)}}if(ai.nodeName=="mrow"){i=ai.lastChild.firstChild.nodeValue;if(i==")"||i=="]"||i=="}"){ai.removeChild(ai.lastChild)}}}var K,y,F;function L(ao){var ak,aj,ar,am,aq,an=g.createDocumentFragment();ao=u(ao,0);ak=n(ao);if(ak==null||ak.ttype==l&&K>0){return[null,ao]}if(ak.ttype==Z){ao=ak.output+u(ao,ak.input.length);ak=n(ao)}switch(ak.ttype){case P:case d:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao];case b:K++;ao=u(ao,ak.input.length);ar=w(ao,true);K--;if(typeof ak.invisible=="boolean"&&ak.invisible){aj=M("mrow",ar[0])}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0])}return[aj,ar[1]];case ab:if(ak!=p){ao=u(ao,ak.input.length)}if(ao.charAt(0)=="{"){am=ao.indexOf("}")}else{if(ao.charAt(0)=="("){am=ao.indexOf(")")}else{if(ao.charAt(0)=="["){am=ao.indexOf("]")}else{if(ak==p){am=ao.slice(1).indexOf('"')+1}else{am=0}}}}if(am==-1){am=ao.length}aq=ao.slice(1,am);if(aq.charAt(0)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}an.appendChild(M(ak.tag,g.createTextNode(aq)));if(aq.charAt(aq.length-1)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}ao=u(ao,am+1);return[M("mrow",an),ao];case H:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M(ak.tag,g.createTextNode(ak.output)),ao]}if(typeof ak.func=="boolean"&&ak.func){aq=ao.charAt(0);if(aq=="^"||aq=="_"||aq=="/"||aq=="|"||aq==","){return[M(ak.tag,g.createTextNode(ak.output)),ao]}else{aj=M("mrow",M(ak.tag,g.createTextNode(ak.output)));aj.appendChild(ar[0]);return[aj,ar[1]]}}T(ar[0]);if(ak.input=="sqrt"){return[M(ak.tag,ar[0]),ar[1]]}else{if(typeof ak.acc=="boolean"&&ak.acc){aj=M(ak.tag,ar[0]);aj.appendChild(M("mo",g.createTextNode(ak.output)));return[aj,ar[1]]}else{if(!q&&typeof ak.codes!="undefined"){for(am=0;am64&&aq.charCodeAt(al)<91){ap=ap+String.fromCharCode(ak.codes[aq.charCodeAt(al)-65])}else{ap=ap+aq.charAt(al)}}if(ar[0].nodeName=="mi"){ar[0]=R("mo").appendChild(g.createTextNode(ap))}else{ar[0].replaceChild(R("mo").appendChild(g.createTextNode(ap)),ar[0].childNodes[am])}}}}aj=M(ak.tag,ar[0]);aj.setAttribute(ak.atname,ak.atval);return[aj,ar[1]]}}case X:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ar[0]);var ai=L(ar[1]);if(ai[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ai[0]);if(ak.input=="root"||ak.input=="stackrel"){an.appendChild(ai[0])}an.appendChild(ar[0]);if(ak.input=="frac"){an.appendChild(ai[0])}return[M(ak.tag,an),ai[1]];case m:ao=u(ao,ak.input.length);return[M("mo",g.createTextNode(ak.output)),ao];case a:ao=u(ao,ak.input.length);aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);an.appendChild(M(ak.tag,g.createTextNode(ak.output)));aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);return[M("mrow",an),ao];case r:K++;ao=u(ao,ak.input.length);ar=w(ao,false);K--;aq="";if(ar[0].lastChild!=null){aq=ar[0].lastChild.firstChild.nodeValue}if(aq=="|"){aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0]);return[aj,ar[1]]}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);return[aj,ao]}default:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao]}}function z(an){var al,ao,am,ak,i,aj;an=u(an,0);ao=n(an);i=L(an);ak=i[0];an=i[1];al=n(an);if(al.ttype==m&&al.input!="/"){an=u(an,al.input.length);i=L(an);if(i[0]==null){i[0]=M("mo",g.createTextNode("\u25A1"))}else{T(i[0])}an=i[1];if(al.input=="_"){am=n(an);aj=(ao.ttype==P);if(am.input=="^"){an=u(an,am.input.length);var ai=L(an);T(ai[0]);an=ai[1];ak=M((aj?"munderover":"msubsup"),ak);ak.appendChild(i[0]);ak.appendChild(ai[0]);ak=M("mrow",ak)}else{ak=M((aj?"munder":"msub"),ak);ak.appendChild(i[0])}}else{ak=M(al.tag,ak);ak.appendChild(i[0])}}return[ak,an]}function w(aq,ap){var av,ar,am,ay,an=g.createDocumentFragment();do{aq=u(aq,0);am=z(aq);ar=am[0];aq=am[1];av=n(aq);if(av.ttype==m&&av.input=="/"){aq=u(aq,av.input.length);am=z(aq);if(am[0]==null){am[0]=M("mo",g.createTextNode("\u25A1"))}else{T(am[0])}aq=am[1];T(ar);ar=M(av.tag,ar);ar.appendChild(am[0]);an.appendChild(ar);av=n(aq)}else{if(ar!=undefined){an.appendChild(ar)}}}while((av.ttype!=l&&(av.ttype!=r||ap)||K==0)&&av!=null&&av.output!="");if(av.ttype==l||av.ttype==r){var az=an.childNodes.length;if(az>0&&an.childNodes[az-1].nodeName=="mrow"&&az>1&&an.childNodes[az-2].nodeName=="mo"&&an.childNodes[az-2].firstChild.nodeValue==","){var aB=an.childNodes[az-1].lastChild.firstChild.nodeValue;if(aB==")"||aB=="]"){var aj=an.childNodes[az-1].firstChild.firstChild.nodeValue;if(aj=="("&&aB==")"&&av.output!="}"||aj=="["&&aB=="]"){var ak=[];var aw=true;var at=an.childNodes.length;for(ay=0;aw&&ay1){aw=ak[ay].length==ak[ay-2].length}}if(aw){var al,ai,ao,au,aA=g.createDocumentFragment();for(ay=0;ay2){an.removeChild(an.firstChild);an.removeChild(an.firstChild)}aA.appendChild(M("mtr",al))}ar=M("mtable",aA);if(typeof av.invisible=="boolean"&&av.invisible){ar.setAttribute("columnalign","left")}an.replaceChild(ar,an.firstChild)}}}}aq=u(aq,av.input.length);if(typeof av.invisible!="boolean"||!av.invisible){ar=M("mo",g.createTextNode(av.output));an.appendChild(ar)}}return[an,aq]}function e(aj){var ai=R("mstyle");if(I!=""){ai.setAttribute("mathcolor",I)}if(t){ai.setAttribute("displaystyle","true")}if(ad!=""){ai.setAttribute("fontfamily",ad)}K=0;ai.appendChild(w(aj.replace(/^\s+/g,""),false)[0]);ai=M("math",ai);if(C){ai.setAttribute("title",aj.replace(/\s+/g," "))}if(ad!=""&&(q||ad!="serif")){var i=V("font");i.setAttribute("face",ad);i.appendChild(ai);return i}return ai}C=false;ad="";I="";(function(){for(var aj=0,ai=G.length;aj",tex:null,ttype:d},{input:"gt=",tag:"mo",output:"\u2265",tex:"geq",ttype:d},{input:"-<=",tag:"mo",output:"\u2AAF",tex:"preceq",ttype:d},{input:">-=",tag:"mo",output:"\u2AB0",tex:"succeq",ttype:d},{input:"'",tag:"mo",output:"\u2032",tex:"prime",ttype:d},{input:"arcsin",tag:"mi",output:"arcsin",tex:null,ttype:H,func:true},{input:"arccos",tag:"mi",output:"arccos",tex:null,ttype:H,func:true},{input:"arctan",tag:"mi",output:"arctan",tex:null,ttype:H,func:true},{input:"coth",tag:"mi",output:"coth",tex:null,ttype:H,func:true},{input:"sech",tag:"mi",output:"sech",tex:null,ttype:H,func:true},{input:"csch",tag:"mi",output:"csch",tex:null,ttype:H,func:true},{input:"abs",tag:"mi",output:"abs",tex:null,ttype:H,func:true},{input:"exp",tag:"mi",output:"exp",tex:null,ttype:H,func:true},{input:"tilde",tag:"mover",output:"~",tex:null,ttype:H,acc:true});ag.Augment({AM:{Init:function(){t=ag.config.displaystyle;f=(ag.config.decimal||ag.config.decimalsign);E();v()},Augment:function(i){for(var ai in i){if(i.hasOwnProperty(ai)){switch(ai){case"displaystyle":t=i[ai];break;case"decimal":decimal=i[ai];break;case"parseMath":e=i[ai];break;case"parseExpr":w=i[ai];break;case"parseIexpr":z=i[ai];break;case"parseSexpr":L=i[ai];break;case"removeBrackets":T=i[ai];break;case"getSymbol":n=i[ai];break;case"position":c=i[ai];break;case"removeCharsAndBlanks":u=i[ai];break;case"createMmlNode":M=i[ai];break;case"createElementMathML":R=i[ai];break;case"createElementXHTML":V=i[ai];break;case"initSymbols":v=i[ai];break;case"compareNames":comareNames=i[ai];break}this[ai]=i[ai]}}},parseMath:e,parseExpr:w,parseIexpr:z,parseSexr:L,removeBrackets:T,getSymbol:n,position:c,removeCharsAndBlanks:u,createMmlNode:M,createElementMathML:R,createElementXHTML:V,initSymbols:v,compareNames:W,createDocumentFragment:aa,document:g,define:B,symbols:G,names:U,TOKEN:{CONST:d,UNARY:H,BINARY:X,INFIX:m,LEFTBRACKET:b,RIGHTBRACKET:l,SPACE:a,UNDEROVER:P,DEFINITION:Z,LEFTRIGHT:r,TEXT:ab}}});var ae=[S,O];ae=null})(MathJax.InputJax.AsciiMath);(function(b){var a;b.Augment({sourceMenuTitle:["AsciiMathInput","AsciiMath Input"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(c){var d,f=MathJax.HTML.getScript(c);var g={math:f,script:c};this.prefilterHooks.Execute(g);f=g.math;try{d=this.AM.parseMath(f)}catch(e){if(!e.asciimathError){throw e}d=this.formatError(e,f)}g.math=a(d);this.postfilterHooks.Execute(g);return g.math},formatError:function(f,e,c){var d=f.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["AsciiMath Jax - parse error",d,e,c]);return a.merror(d)},Error:function(c){throw MathJax.Hub.Insert(Error(c),{asciimathError:true})},Startup:function(){a=MathJax.ElementJax.mml;this.AM.Init()}});b.loadComplete("jax.js")})(MathJax.InputJax.AsciiMath); - -MathJax.Ajax.loadComplete("[MathJax]/config/AM_HTMLorMML.js"); diff --git a/modules/MathJax/config/Accessible-full.js b/modules/MathJax/config/Accessible-full.js deleted file mode 100644 index 55f09ce..0000000 --- a/modules/MathJax/config/Accessible-full.js +++ /dev/null @@ -1,97 +0,0 @@ -/* - * /MathJax/config/Accessible-full.js - * - * Copyright (c) 2010-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Config({delayJaxRegistration: true}); - -MathJax.Ajax.Preloading( - "[MathJax]/jax/input/TeX/config.js", - "[MathJax]/jax/input/MathML/config.js", - "[MathJax]/jax/output/HTML-CSS/config.js", - "[MathJax]/jax/output/NativeMML/config.js", - "[MathJax]/config/MMLorHTML.js", - "[MathJax]/extensions/tex2jax.js", - "[MathJax]/extensions/mml2jax.js", - "[MathJax]/extensions/MathEvents.js", - "[MathJax]/extensions/MathZoom.js", - "[MathJax]/extensions/MathMenu.js", - "[MathJax]/jax/element/mml/jax.js", - "[MathJax]/extensions/toMathML.js", - "[MathJax]/extensions/TeX/noErrors.js", - "[MathJax]/extensions/TeX/noUndefined.js", - "[MathJax]/jax/input/TeX/jax.js", - "[MathJax]/extensions/TeX/AMSmath.js", - "[MathJax]/extensions/TeX/AMSsymbols.js", - "[MathJax]/jax/input/MathML/jax.js", - "[MathJax]/jax/output/NativeMML/jax.js", - "[MathJax]/jax/output/HTML-CSS/jax.js", - "[MathJax]/jax/output/HTML-CSS/autoload/mtable.js" -); - -MathJax.Hub.Config({"v1.0-compatible":false}); - -MathJax.Hub.Config({ - menuSettings: { - zoom: "Double-Click", - mpContext: true, - mpMouse: true - }, - errorSettings: { - message: ["[Math Error]"] - } - -}); - -MathJax.InputJax.TeX=MathJax.InputJax({id:"TeX",version:"2.2",directory:MathJax.InputJax.directory+"/TeX",extensionDir:MathJax.InputJax.extensionDir+"/TeX",config:{TagSide:"right",TagIndent:"0.8em",MultLineWidth:"85%",equationNumbers:{autoNumber:"none",formatNumber:function(a){return a},formatTag:function(a){return"("+a+")"},formatID:function(a){return"mjx-eqn-"+String(a).replace(/[:"'<>&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.2",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -(function(d,h,l,g,m,b,j){var q="2.2";var i=MathJax.Extension;var c=i.MathEvents={version:q};var k=d.config.menuSettings;var p={hover:500,frame:{x:3.5,y:5,bwidth:1,bcolor:"#A6D",hwidth:"15px",hcolor:"#83A"},button:{x:-4,y:-3,wx:-2,src:l.fileURL(b.imageDir+"/MenuArrow-15.png")},fadeinInc:0.2,fadeoutInc:0.05,fadeDelay:50,fadeoutStart:400,fadeoutDelay:15*1000,styles:{".MathJax_Hover_Frame":{"border-radius":".25em","-webkit-border-radius":".25em","-moz-border-radius":".25em","-khtml-border-radius":".25em","box-shadow":"0px 0px 15px #83A","-webkit-box-shadow":"0px 0px 15px #83A","-moz-box-shadow":"0px 0px 15px #83A","-khtml-box-shadow":"0px 0px 15px #83A",border:"1px solid #A6D ! important",display:"inline-block",position:"absolute"},".MathJax_Hover_Arrow":{position:"absolute",width:"15px",height:"11px",cursor:"pointer"}}};var n=c.Event={LEFTBUTTON:0,RIGHTBUTTON:2,MENUKEY:"altKey",Mousedown:function(r){return n.Handler(r,"Mousedown",this)},Mouseup:function(r){return n.Handler(r,"Mouseup",this)},Mousemove:function(r){return n.Handler(r,"Mousemove",this)},Mouseover:function(r){return n.Handler(r,"Mouseover",this)},Mouseout:function(r){return n.Handler(r,"Mouseout",this)},Click:function(r){return n.Handler(r,"Click",this)},DblClick:function(r){return n.Handler(r,"DblClick",this)},Menu:function(r){return n.Handler(r,"ContextMenu",this)},Handler:function(u,s,t){if(l.loadingMathMenu){return n.False(u)}var r=b[t.jaxID];if(!u){u=window.event}u.isContextMenu=(s==="ContextMenu");if(r[s]){return r[s](u,t)}if(i.MathZoom){return i.MathZoom.HandleEvent(u,s,t)}},False:function(r){if(!r){r=window.event}if(r){if(r.preventDefault){r.preventDefault()}if(r.stopPropagation){r.stopPropagation()}r.cancelBubble=true;r.returnValue=false}return false},ContextMenu:function(s,A,v){var x=b[A.jaxID],u=x.getJaxFromMath(A);var B=(x.config.showMathMenu!=null?x:d).config.showMathMenu;if(!B||(k.context!=="MathJax"&&!v)){return}if(c.msieEventBug){s=window.event||s}n.ClearSelection();f.ClearHoverTimer();if(u.hover){if(u.hover.remove){clearTimeout(u.hover.remove);delete u.hover.remove}u.hover.nofade=true}var t=MathJax.Menu;var C,z;if(t){if(t.loadingDomain){return n.False(s)}C=m.loadDomain("MathMenu");if(!C){t.jax=u;var r=t.menu.Find("Show Math As").menu;r.items[0].name=u.sourceMenuTitle;r.items[0].format=(u.sourceMenuFormat||"MathML");r.items[1].name=j[u.inputJax].sourceMenuTitle;var w=t.menu.Find("Math Settings","MathPlayer");w.hidden=!(u.outputJax==="NativeMML"&&d.Browser.hasMathPlayer);return t.menu.Post(s)}t.loadingDomain=true;z=function(){delete t.loadingDomain}}else{if(l.loadingMathMenu){return n.False(s)}l.loadingMathMenu=true;C=l.Require("[MathJax]/extensions/MathMenu.js");z=function(){delete l.loadingMathMenu;if(!MathJax.Menu){MathJax.Menu={}}}}var y={pageX:s.pageX,pageY:s.pageY,clientX:s.clientX,clientY:s.clientY};g.Queue(C,z,["ContextMenu",n,y,A,v]);return n.False(s)},AltContextMenu:function(t,s){var u=b[s.jaxID];var r=(u.config.showMathMenu!=null?u:d).config.showMathMenu;if(r){r=(u.config.showMathMenuMSIE!=null?u:d).config.showMathMenuMSIE;if(k.context==="MathJax"&&!k.mpContext&&r){if(!c.noContextMenuBug||t.button!==n.RIGHTBUTTON){return}}else{if(!t[n.MENUKEY]||t.button!==n.LEFTBUTTON){return}}return u.ContextMenu(t,s,true)}},ClearSelection:function(){if(c.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(document.selection){setTimeout("document.selection.empty()",0)}},getBBox:function(t){t.appendChild(c.topImg);var s=c.topImg.offsetTop,u=t.offsetHeight-s,r=t.offsetWidth;t.removeChild(c.topImg);return{w:r,h:s,d:u}}};var f=c.Hover={Mouseover:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.ReHover(r)}else{f.HoverTimer(r,s)}return n.False(t)}}},Mouseout:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.UnHover(r)}else{f.ClearHoverTimer()}return n.False(t)}}},Mousemove:function(t,s){if(k.discoverable||k.zoom==="Hover"){var r=this.getJaxFromMath(s);if(r.hover){return}if(f.lastX==t.clientX&&f.lastY==t.clientY){return}f.lastX=t.clientX;f.lastY=t.clientY;f.HoverTimer(r,s);return n.False(t)}},HoverTimer:function(r,s){this.ClearHoverTimer();this.hoverTimer=setTimeout(g(["Hover",this,r,s]),p.hover)},ClearHoverTimer:function(){if(this.hoverTimer){clearTimeout(this.hoverTimer);delete this.hoverTimer}},Hover:function(r,v){if(i.MathZoom&&i.MathZoom.Hover({},v)){return}var u=b[r.outputJax],w=u.getHoverSpan(r,v),z=u.getHoverBBox(r,w,v),x=(u.config.showMathMenu!=null?u:d).config.showMathMenu;var B=p.frame.x,A=p.frame.y,y=p.frame.bwidth;if(c.msieBorderWidthBug){y=0}r.hover={opacity:0,id:r.inputID+"-Hover"};var s=h.Element("span",{id:r.hover.id,isMathJax:true,style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{className:"MathJax_Hover_Frame",isMathJax:true,style:{display:"inline-block",position:"absolute",top:this.Px(-z.h-A-y-(z.y||0)),left:this.Px(-B-y+(z.x||0)),width:this.Px(z.w+2*B),height:this.Px(z.h+z.d+2*A),opacity:0,filter:"alpha(opacity=0)"}}]]);var t=h.Element("span",{isMathJax:true,id:r.hover.id+"Menu",style:{display:"inline-block","z-index":1,width:0,height:0,position:"relative"}},[["img",{className:"MathJax_Hover_Arrow",isMathJax:true,math:v,src:p.button.src,onclick:this.HoverMenu,jax:u.id,style:{left:this.Px(z.w+B+y+(z.x||0)+p.button.x),top:this.Px(-z.h-A-y-(z.y||0)-p.button.y),opacity:0,filter:"alpha(opacity=0)"}}]]);if(z.width){s.style.width=t.style.width=z.width;s.style.marginRight=t.style.marginRight="-"+z.width;s.firstChild.style.width=z.width;t.firstChild.style.left="";t.firstChild.style.right=this.Px(p.button.wx)}w.parentNode.insertBefore(s,w);if(x){w.parentNode.insertBefore(t,w)}if(w.style){w.style.position="relative"}this.ReHover(r)},ReHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}r.hover.remove=setTimeout(g(["UnHover",this,r]),p.fadeoutDelay);this.HoverFadeTimer(r,p.fadeinInc)},UnHover:function(r){if(!r.hover.nofade){this.HoverFadeTimer(r,-p.fadeoutInc,p.fadeoutStart)}},HoverFade:function(r){delete r.hover.timer;r.hover.opacity=Math.max(0,Math.min(1,r.hover.opacity+r.hover.inc));r.hover.opacity=Math.floor(1000*r.hover.opacity)/1000;var t=document.getElementById(r.hover.id),s=document.getElementById(r.hover.id+"Menu");t.firstChild.style.opacity=r.hover.opacity;t.firstChild.style.filter="alpha(opacity="+Math.floor(100*r.hover.opacity)+")";if(s){s.firstChild.style.opacity=r.hover.opacity;s.firstChild.style.filter=t.style.filter}if(r.hover.opacity===1){return}if(r.hover.opacity>0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g span":{"text-align":o+"!important"}})}if(!this.require){this.require=[]}this.require.push(MathJax.OutputJax.extensionDir+"/MathEvents.js")},Startup:function(){h=MathJax.Extension.MathEvents.Event;b=MathJax.Extension.MathEvents.Touch;d=MathJax.Extension.MathEvents.Hover;this.ContextMenu=h.ContextMenu;this.Mousedown=h.AltContextMenu;this.Mouseover=d.Mouseover;this.Mouseout=d.Mouseout;this.Mousemove=d.Mousemove;if(!i){this.EmExSpan=e.Element("span",{style:{position:"absolute","font-size-adjust":"none"}},[["div",{className:"MathJax_mmlExBox"}],["span",{className:"MathJax_MathML"}]]);f.math(f.mspace().With({width:"60ex"})).toNativeMML(this.EmExSpan.lastChild)}return g.Styles(this.config.styles)},InitializeMML:function(){this.initialized=true;if(i){try{if(!c.Browser.mpNamespace){var m=document.createElement("object");m.id="mathplayer";m.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(m);document.namespaces.add("m","http://www.w3.org/1998/Math/MathML");c.Browser.mpNamespace=true}if(!c.Browser.mpImported){document.namespaces.m.doImport("#mathplayer");c.Browser.mpImported=true}}catch(n){alert(MathJax.Localization._(["MathML","MathPlayer"],"MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics."))}}else{document.body.appendChild(this.EmExSpan);this.defaultEx=this.EmExSpan.firstChild.offsetWidth/60;this.defaultMEx=this.EmExSpan.lastChild.offsetWidth/60;document.body.removeChild(this.EmExSpan)}},preTranslate:function(o){var t=o.jax[this.id],u,p=t.length,y,r,A,w,z,n,v,s,q;for(u=0;u1?v/s:1)*this.config.scale;q=Math.floor(Math.max(this.config.minScaleAdjust/100,q));n.NativeMML.ex=v}else{q=100}n.NativeMML.fontSize=q+"%"}if(!i){for(u=0;ut){t=o;u.style.width=t+"px"}}if(this.msieIE8HeightBug){u.style.position=""}return{Y:-h.getBBox(u.parentNode).h,mW:p,mH:v,zW:t,zH:q}},NAMEDSPACE:{negativeveryverythinmathspace:"-.0556em",negativeverythinmathspace:"-.1111em",negativethinmathspace:"-.1667em",negativemediummathspace:"-.2222em",negativethickmathspace:"-.2778em",negativeverythickmathspace:"-.3333em",negativeveryverythickmathspace:"-.3889em"}});c.Register.StartupHook("mml Jax Ready",function(){f=MathJax.ElementJax.mml;f.mbase.Augment({toNativeMML:function(r){var p=this.NativeMMLelement(this.type);this.NativeMMLattributes(p);for(var q=0,o=this.data.length;q1){o=this.NativeMMLelement("mrow");s.appendChild(q);s=q}for(;r0;u--){q.separators.push(v)}}}var o=this.NativeMMLelement(t?this.type:"mrow");this.NativeMMLattributes(o);o.removeAttribute("separators");if(t){o.setAttribute("open",q.open);o.setAttribute("close",q.close);if(this.data.length>1){w.appendChild(o);w=o;o=this.NativeMMLelement("mrow")}}else{o.removeAttribute("open");o.removeAttribute("close")}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.open;o.appendChild(r)}for(u=0,p=this.data.length;u0){r=this.NativeMMLelement("mo");r.setAttribute("separator","true");r.textContent=q.separators[u-1];o.appendChild(r)}if(this.data[u]){this.data[u].toNativeMML(o)}else{o.appendChild(this.NativeMMLelement("mrow"))}}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.close;o.appendChild(r)}w.appendChild(o)}});f.TeXAtom.Augment({toNativeMML:function(p){var o=this.NativeMMLelement("mrow");this.NativeMMLattributes(o);this.data[0].toNativeMML(o);p.appendChild(o)}});f.chars.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.entity.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.xml.Augment({toNativeMML:function(q){for(var p=0,o=this.data.length;p=p.HTMLCSSlast+p.HTMLCSSchunk){this.postTranslate(p);p.HTMLCSSchunk=Math.floor(p.HTMLCSSchunk*this.config.EqnChunkFactor);p.HTMLCSSdelay=true}}},postTranslate:function(r){var l=r.jax[this.id];if(!this.hideProcessedMath){return}for(var p=r.HTMLCSSlast,k=r.HTMLCSSeqn;p=0&&!this.initialSkipBug)||this.negativeBBoxes||!o.firstChild){l=o.offsetWidth;n=o.parentNode.offsetHeight}else{if(o.bbox&&m<0&&this.msieNegativeBBoxBug){l=-o.offsetWidth,n=o.parentNode.offsetHeight}else{if(this.initialSkipBug){var k=o.style.position;o.style.position="absolute";p=this.startMarker;o.insertBefore(p,o.firstChild)}o.appendChild(this.endMarker);l=this.endMarker.offsetLeft-p.offsetLeft;o.removeChild(this.endMarker);if(this.initialSkipBug){o.removeChild(p);o.style.position=k}}}if(n!=null){o.parentNode.HH=n/this.em}return l/this.em},Measured:function(m,l){var n=m.bbox;if(n.width==null&&n.w&&!n.isMultiline){var k=this.getW(m);n.rw+=k-n.w;n.w=k;n.exactW=true}if(!l){l=m.parentNode}if(!l.bbox){l.bbox=n}return m},Remeasured:function(l,k){k.bbox=this.Measured(l,k).bbox},MeasureSpans:function(o){var r=[],t,q,n,u,k,p,l,s;for(q=0,n=o.length;q=0&&!this.initialSkipBug)||(u.w<0&&this.msieNegativeBBoxBug)){r.push([t])}else{if(this.initialSkipBug){k=this.startMarker.cloneNode(true);p=this.endMarker.cloneNode(true);t.insertBefore(k,t.firstChild);t.appendChild(p);r.push([t,k,p,t.style.position]);t.style.position="absolute"}else{p=this.endMarker.cloneNode(true);t.appendChild(p);r.push([t,null,p])}}}for(q=0,n=r.length;q=0&&!this.initialSkipBug)||this.negativeBBoxes||!t.firstChild){l=t.offsetWidth;s.HH=s.offsetHeight/this.em}else{if(u.w<0&&this.msieNegativeBBoxBug){l=-t.offsetWidth,s.HH=s.offsetHeight/this.em}else{l=r[q][2].offsetLeft-((r[q][1]||{}).offsetLeft||0)}}l/=this.em;u.rw+=l-u.w;u.w=l;u.exactW=true;if(!s.bbox){s.bbox=u}}for(q=0,n=r.length;q=0){p.style.width=this.Em(q);p.style.display="inline-block";p.style.overflow="hidden"}else{if(this.msieNegativeSpaceBug){p.style.height=""}p.style.marginLeft=this.Em(q);if(d.safariNegativeSpaceBug&&p.parentNode.firstChild==p){this.createBlank(p,0,true)}}if(m&&m!==g.COLOR.TRANSPARENT){p.style.backgroundColor=m;p.style.position="relative"}return p},createRule:function(r,n,p,s,l){if(n<-p){p=-n}var m=d.TeX.min_rule_thickness,o=1;if(s>0&&s*this.em0&&(n+p)*this.em0&&q.offsetWidth==0){q.style.width=this.Em(s)}if(r.isBox||r.className=="mspace"){r.bbox=q.bbox,r.HH=n+p}return q},createFrame:function(s,q,r,u,x,l){if(q<-r){r=-q}var p=2*x;if(this.msieFrameSizeBug){if(uC.w){d.createBlank(u,C.rw-C.w+0.1)}}if(!this.msieClipRectBug&&!C.noclip&&!o){var B=3/this.em;var A=(C.H==null?C.h:C.H),m=(C.D==null?C.d:C.D);var E=w-A-B,p=w+m+B,n=C.lw-3*B,k=1000;if(this.initialSkipBug&&C.lw<0){n=-3*B}if(C.isFixed){k=C.width-n}u.style.clip="rect("+this.Em(E)+" "+this.Em(k)+" "+this.Em(p)+" "+this.Em(n)+")"}}u.style.top=this.Em(-q-w);u.style.left=this.Em(s+F);if(C&&z){if(C.H!=null&&(z.H==null||C.H+q>z.H)){z.H=C.H+q}if(C.D!=null&&(z.D==null||C.D-q>z.D)){z.D=C.D-q}if(C.h+q>z.h){z.h=C.h+q}if(C.d-q>z.d){z.d=C.d-q}if(z.H!=null&&z.H<=z.h){delete z.H}if(z.D!=null&&z.D<=z.d){delete z.D}if(C.w+s>z.w){z.w=C.w+s;if(z.width==null){v.style.width=this.Em(z.w)}}if(C.rw+s>z.rw){z.rw=C.rw+s}if(C.lw+s=n-0.01||(s==p-1&&!l.stretch)){if(l.HW[s][2]){q*=l.HW[s][2]}if(l.HW[s][3]){k=l.HW[s][3]}var r=this.addElement(u,"span");this.createChar(r,[k,l.HW[s][1]],q,o);u.bbox=r.bbox;u.offset=0.65*u.bbox.w;u.scale=q;return}}if(l.stretch){this["extendDelimiter"+l.dir](u,t,l.stretch,q,o)}},extendDelimiterV:function(A,t,E,F,w){var o=this.createStack(A,true);var v=this.createBox(o),u=this.createBox(o);this.createChar(v,(E.top||E.ext),F,w);this.createChar(u,(E.bot||E.ext),F,w);var m={bbox:{w:0,lw:0,rw:0}},D=m,p;var B=v.bbox.h+v.bbox.d+u.bbox.h+u.bbox.d;var r=-v.bbox.h;this.placeBox(v,0,r,true);r-=v.bbox.d;if(E.mid){D=this.createBox(o);this.createChar(D,E.mid,F,w);B+=D.bbox.h+D.bbox.d}if(E.min&&tB){m=this.Element("span");this.createChar(m,E.ext,F,w);var C=m.bbox.h+m.bbox.d,l=C-0.05,x,q,z=(E.mid?2:1);q=x=Math.min(Math.ceil((t-B)/(z*l)),this.maxStretchyParts);if(!E.fullExtenders){l=(t-B)/(z*x)}var s=(x/(x+1))*(C-l);l=C-s;r+=s+l-m.bbox.h;while(z-->0){while(x-->0){if(!this.msieCloneNodeBug){p=m.cloneNode(true)}else{p=this.Element("span");this.createChar(p,E.ext,F,w)}p.bbox=m.bbox;r-=l;this.placeBox(this.addBox(o,p),0,r,true)}r+=s-m.bbox.d;if(E.mid&&z){this.placeBox(D,0,r-D.bbox.h,true);x=q;r+=-(D.bbox.h+D.bbox.d)+s+l-m.bbox.h}}}else{r+=(B-t)/2;if(E.mid){this.placeBox(D,0,r-D.bbox.h,true);r+=-(D.bbox.h+D.bbox.d)}r+=(B-t)/2}this.placeBox(u,0,r-u.bbox.h,true);r-=u.bbox.h+u.bbox.d;A.bbox={w:Math.max(v.bbox.w,m.bbox.w,u.bbox.w,D.bbox.w),lw:Math.min(v.bbox.lw,m.bbox.lw,u.bbox.lw,D.bbox.lw),rw:Math.max(v.bbox.rw,m.bbox.rw,u.bbox.rw,D.bbox.rw),h:0,d:-r,exactW:true};A.scale=F;A.offset=0.55*A.bbox.w;A.isMultiChar=true;this.setStackWidth(o,A.bbox.w)},extendDelimiterH:function(B,o,E,G,y){var r=this.createStack(B,true);var p=this.createBox(r),C=this.createBox(r);this.createChar(p,(E.left||E.rep),G,y);this.createChar(C,(E.right||E.rep),G,y);var l=this.Element("span");this.createChar(l,E.rep,G,y);var D={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},m;this.placeBox(p,-p.bbox.lw,0,true);var u=(p.bbox.rw-p.bbox.lw)+(C.bbox.rw-C.bbox.lw)-0.05,t=p.bbox.rw-p.bbox.lw-0.025,v;if(E.mid){D=this.createBox(r);this.createChar(D,E.mid,G,y);u+=D.bbox.w}if(E.min&&ou){var F=l.bbox.rw-l.bbox.lw,q=F-0.05,z,s,A=(E.mid?2:1);s=z=Math.min(Math.ceil((o-u)/(A*q)),this.maxStretchyParts);if(!E.fillExtenders){q=(o-u)/(A*z)}v=(z/(z+1))*(F-q);q=F-v;t-=l.bbox.lw+v;while(A-->0){while(z-->0){if(!this.cloneNodeBug){m=l.cloneNode(true)}else{m=this.Element("span");this.createChar(m,E.rep,G,y)}m.bbox=l.bbox;this.placeBox(this.addBox(r,m),t,0,true);t+=q}if(E.mid&&A){this.placeBox(D,t,0,true);t+=D.bbox.w-v;z=s}}}else{t-=(u-o)/2;if(E.mid){this.placeBox(D,t,0,true);t+=D.bbox.w}t-=(u-o)/2}this.placeBox(C,t,0,true);B.bbox={w:t+C.bbox.rw,lw:0,rw:t+C.bbox.rw,H:Math.max(p.bbox.h,l.bbox.h,C.bbox.h,D.bbox.h),D:Math.max(p.bbox.d,l.bbox.d,C.bbox.d,D.bbox.d),h:l.bbox.h,d:l.bbox.d,exactW:true};B.scale=G;B.isMultiChar=true;this.setStackWidth(r,B.bbox.w)},createChar:function(s,p,n,k){s.isMathJax=true;var r=s,t="",o={fonts:[p[1]],noRemap:true};if(k&&k===g.VARIANT.BOLD){o.fonts=[p[1]+"-bold",p[1]]}if(typeof(p[1])!=="string"){o=p[1]}if(p[0] instanceof Array){for(var q=0,l=p[0].length;q=55296&&x<56319){B++;x=(((x-55296)<<10)+(s.charCodeAt(B)-56320))+65536;if(this.FONTDATA.RemapPlane1){var E=this.FONTDATA.RemapPlane1(x,p);x=E.n;p=E.variant}}else{var u,r,v=this.FONTDATA.RANGES;for(u=0,r=v.length;u=v[u].low&&x<=v[u].high){if(v[u].remap&&v[u].remap[x]){x=q+v[u].remap[x]}else{x=x-v[u].low+q;if(v[u].add){x+=v[u].add}}if(p["variant"+v[u].offset]){p=this.FONTDATA.VARIANT[p["variant"+v[u].offset]]}break}}}if(p.remap&&p.remap[x]){if(p.remap[x] instanceof Array){var o=p.remap[x];x=o[0];p=this.FONTDATA.VARIANT[o[1]]}else{if(typeof(p.remap[x])==="string"){s=p.remap[x]+s.substr(B+1);B=0;y=s.length;x=s.charCodeAt(0)}else{x=p.remap[x];if(p.remap.variant){p=this.FONTDATA.VARIANT[p.remap.variant]}}}}if(this.FONTDATA.REMAP[x]&&!p.noRemap){x=this.FONTDATA.REMAP[x];if(x instanceof Array){p=this.FONTDATA.VARIANT[x[1]];x=x[0]}if(typeof(x)==="string"){s=x+s.substr(B+1);B=0;y=s.length;x=x.charCodeAt(0)}}t=this.lookupChar(p,x);C=t[x];if(l||(!this.checkFont(t,k.style)&&!C[5].img)){if(z.length){this.addText(k,z);z=""}var w=!!k.style.fontFamily||!!A.style.fontStyle||!!A.style.fontWeight||!t.directory||l;l=false;if(k!==A){w=!this.checkFont(t,A.style);k=A}if(w){k=this.addElement(A,"span",{isMathJax:true,subSpan:true})}this.handleFont(k,t,k!==A)}z=this.handleChar(k,t,C,x,z);if(!(C[5]||{}).space){if(C[0]/1000>A.bbox.h){A.bbox.h=C[0]/1000}if(C[1]/1000>A.bbox.d){A.bbox.d=C[1]/1000}}if(A.bbox.w+C[3]/1000A.bbox.rw){A.bbox.rw=A.bbox.w+C[4]/1000}A.bbox.w+=C[2]/1000}if(z.length){this.addText(k,z)}if(A.scale&&A.scale!==1){A.bbox.h*=A.scale;A.bbox.d*=A.scale;A.bbox.w*=A.scale;A.bbox.lw*=A.scale;A.bbox.rw*=A.scale}if(s.length==1&&t.skew&&t.skew[x]){A.bbox.skew=t.skew[x]}},checkFont:function(k,l){var m=(l.fontWeight||"normal");if(m.match(/^\d+$/)){m=(parseInt(m)>=600?"bold":"normal")}return(k.family.replace(/'/g,"")===l.fontFamily.replace(/'/g,"")&&(k.style||"normal")===(l.fontStyle||"normal")&&(k.weight||"normal")===m)},handleFont:function(m,k,o){m.style.fontFamily=k.family;if(!k.directory){m.style.fontSize=Math.floor(100/d.scale+0.5)+"%"}if(!(d.FontFaceBug&&k.isWebFont)){var l=k.style||"normal",n=k.weight||"normal";if(l!=="normal"||o){m.style.fontStyle=l}if(n!=="normal"||o){m.style.fontWeight=n}}},handleChar:function(l,k,s,r,q){var p=s[5];if(p.space){if(q.length){this.addText(l,q)}d.createShift(l,s[2]/1000);return""}if(p.img){return this.handleImg(l,k,s,r,q)}if(p.isUnknown&&this.FONTDATA.DELIMITERS[r]){if(q.length){this.addText(l,q)}var o=l.scale;d.createDelimiter(l,r,0,1,k);if(this.FONTDATA.DELIMITERS[r].dir==="V"){l.style.verticalAlign=this.Em(l.bbox.d);l.bbox.h+=l.bbox.d;l.bbox.d=0}l.scale=o;s[0]=l.bbox.h*1000;s[1]=l.bbox.d*1000;s[2]=l.bbox.w*1000;s[3]=l.bbox.lw*1000;s[4]=l.bbox.rw*1000;return""}if(p.c==null){if(r<=65535){p.c=String.fromCharCode(r)}else{var m=r-65536;p.c=String.fromCharCode((m>>10)+55296)+String.fromCharCode((m&1023)+56320)}}if(p.rfix){this.addText(l,q+p.c);d.createShift(l,p.rfix/1000);return""}if(s[2]||!this.msieAccentBug||q.length){return q+p.c}d.createShift(l,s[3]/1000);d.createShift(l,(s[4]-s[3])/1000);this.addText(l,p.c);d.createShift(l,-s[4]/1000);return""},handleImg:function(l,k,p,o,m){return m},lookupChar:function(p,s){var o,k;if(!p.FONTS){var r=this.FONTDATA.FONTS;var q=(p.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(q instanceof Array)){q=[q]}if(p.fonts!=q){p.fonts=q}p.FONTS=[];for(o=0,k=q.length;o=0;n--){if(l.Ranges[n][2]==o){l.Ranges.splice(n,1)}}this.loadFont(l.directory+"/"+o+".js")}}}},loadFont:function(l){var k=MathJax.Callback.Queue();k.Push(["Require",h,this.fontDir+"/"+l]);if(this.imgFonts){if(!MathJax.isPacked){l=l.replace(/\/([^\/]*)$/,d.imgPacked+"/$1")}k.Push(["Require",h,this.webfontDir+"/png/"+l])}b.RestartAfter(k.Push({}))},loadWebFont:function(k){k.available=k.isWebFont=true;if(d.FontFaceBug){k.family=k.name;if(d.msieFontCSSBug){k.family+="-Web"}}b.RestartAfter(this.Font.loadWebFont(k))},loadWebFontError:function(l,k){b.Startup.signal.Post("HTML-CSS Jax - disable web fonts");l.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;b.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");b.Startup.signal.Post("HTML-CSS Jax - using image fonts");e(["WebFontNotAvailable","Web-Fonts not available -- using image fonts instead"],null,3000);h.Require(this.directory+"/imageFonts.js",k)}else{this.allowWebFonts=false;k()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},NBSP:"\u00A0",rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){g=MathJax.ElementJax.mml;g.mbase.Augment({toHTML:function(o){o=this.HTMLcreateSpan(o);if(this.type!="mrow"){o=this.HTMLhandleSize(o)}for(var l=0,k=this.data.length;ll.d){l.d=m.d}if(m.h>l.h){l.h=m.h}if(m.D!=null&&m.D>l.D){l.D=m.D}if(m.H!=null&&m.H>l.H){l.H=m.H}if(n.style.paddingLeft){l.w+=d.unEm(n.style.paddingLeft)*(n.scale||1)}if(l.w+m.lwl.rw){l.rw=l.w+m.rw}l.w+=m.w;if(n.style.paddingRight){l.w+=d.unEm(n.style.paddingRight)*(n.scale||1)}if(m.width){l.width=m.width;l.minWidth=m.minWidth}if(m.ic){l.ic=m.ic}else{delete l.ic}if(l.exactW&&!m.exactW){delete l.exactW}},HTMLemptyBBox:function(k){k.h=k.d=k.H=k.D=k.rw=-d.BIGDIMEN;k.w=0;k.lw=d.BIGDIMEN;return k},HTMLcleanBBox:function(k){if(k.h===this.BIGDIMEN){k.h=k.d=k.H=k.D=k.w=k.rw=k.lw=0}if(k.D<=k.d){delete k.D}if(k.H<=k.h){delete k.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(l){if(this.isEmbellished()){var k=this.Core();if(k&&k!==this){return k.HTMLcanStretch(l)}}return false},HTMLstretchH:function(l,k){return this.HTMLspanElement()},HTMLstretchV:function(l,k,m){return this.HTMLspanElement()},HTMLnotEmpty:function(k){while(k){if((k.type!=="mrow"&&k.type!=="texatom")||k.data.length>1){return true}k=k.data[0]}return false},HTMLmeasureChild:function(l,k){if(this.data[l]){d.Measured(this.data[l].toHTML(k),k)}else{k.bbox=this.HTMLzeroBBox()}},HTMLboxChild:function(l,k){if(!this.data[l]){this.SetData(l,g.mrow())}return this.data[l].toHTML(k)},HTMLcreateSpan:function(k){if(this.spanID){var l=this.HTMLspanElement();if(l&&(l.parentNode===k||(l.parentNode||{}).parentNode===k)){while(l.firstChild){l.removeChild(l.firstChild)}l.bbox=this.HTMLzeroBBox();l.scale=1;l.isMultChar=l.HH=null;l.style.cssText="";return l}}if(this.href){k=d.addElement(k,"a",{href:this.href,isMathJax:true})}k=d.addElement(k,"span",{className:this.type,isMathJax:true});if(d.imgHeightBug){k.style.display="inline-block"}if(this["class"]){k.className+=" "+this["class"]}if(!this.spanID){this.spanID=d.GetID()}k.id=(this.id||"MathJax-Span-"+this.spanID)+d.idPostfix;k.bbox=this.HTMLzeroBBox();this.styles={};if(this.style){k.style.cssText=this.style;if(k.style.fontSize){this.mathsize=k.style.fontSize;k.style.fontSize=""}this.styles={border:d.getBorders(k),padding:d.getPadding(k)};if(this.styles.border){k.style.border=""}if(this.styles.padding){k.style.padding=""}}if(this.href){k.parentNode.bbox=k.bbox}return k},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+d.idPostfix)},HTMLhandleVariant:function(l,k,m){d.handleVariant(l,k,m)},HTMLhandleSize:function(k){if(!k.scale){k.scale=this.HTMLgetScale();if(k.scale!==1){k.style.fontSize=d.Percent(k.scale)}}return k},HTMLhandleColor:function(w){var y=this.getValues("mathcolor","color");if(this.mathbackground){y.mathbackground=this.mathbackground}if(this.background){y.background=this.background}if(this.style&&w.style.backgroundColor){y.mathbackground=w.style.backgroundColor;w.style.backgroundColor="transparent"}var t=(this.styles||{}).border,v=(this.styles||{}).padding;if(y.color&&!this.mathcolor){y.mathcolor=y.color}if(y.background&&!this.mathbackground){y.mathbackground=y.background}if(y.mathcolor){w.style.color=y.mathcolor}if((y.mathbackground&&y.mathbackground!==g.COLOR.TRANSPARENT)||t||v){var A=w.bbox,z=(A.exact?0:1/d.em),u=0,s=0,m=w.style.paddingLeft,q=w.style.paddingRight;if(this.isToken){u=A.lw;s=A.rw-A.w}if(m!==""){u+=d.unEm(m)*(w.scale||1)}if(q!==""){s-=d.unEm(q)*(w.scale||1)}var l=(d.PaddingWidthBug||A.keepPadding||A.exactW?0:s-u);var o=Math.max(0,d.getW(w)+l);var x=A.h+A.d,k=-A.d,r=0,p=0;if(o>0){o+=2*z;u-=z}if(x>0){x+=2*z;k-=z}s=-o-u;if(t){s-=t.right;k-=t.bottom;r+=t.left;p+=t.right;A.h+=t.top;A.d+=t.bottom;A.w+=t.left+t.right;A.lw-=t.left;A.rw+=t.right}if(v){x+=v.top+v.bottom;o+=v.left+v.right;s-=v.right;k-=v.bottom;r+=v.left;p+=v.right;A.h+=v.top;A.d+=v.bottom;A.w+=v.left+v.right;A.lw-=v.left;A.rw+=v.right}if(p){w.style.paddingRight=d.Em(p)}var n=d.Element("span",{id:"MathJax-Color-"+this.spanID+d.idPostfix,isMathJax:true,style:{display:"inline-block",backgroundColor:y.mathbackground,width:d.Em(o),height:d.Em(x),verticalAlign:d.Em(k),marginLeft:d.Em(u),marginRight:d.Em(s)}});d.setBorders(n,t);if(A.width){n.style.width=A.width;n.style.marginRight="-"+A.width}if(d.msieInlineBlockAlignBug){n.style.position="relative";n.style.width=n.style.height=0;n.style.verticalAlign=n.style.marginLeft=n.style.marginRight="";n.style.border=n.style.padding="";if(t&&d.msieBorderWidthBug){x+=t.top+t.bottom;o+=t.left+t.right}n.style.width=d.Em(r+z);d.placeBox(d.addElement(n,"span",{noAdjust:true,isMathJax:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",background:(y.mathbackground||"transparent"),width:d.Em(o),height:d.Em(x)}}),u,A.h+z);d.setBorders(n.firstChild,t)}w.parentNode.insertBefore(n,w);if(d.msieColorPositionBug){w.style.position="relative"}return n}return null},HTMLremoveColor:function(){var k=document.getElementById("MathJax-Color-"+this.spanID+d.idPostfix);if(k){k.parentNode.removeChild(k)}},HTMLhandleSpace:function(o){if(this.useMMLspacing){if(this.type!=="mo"){return}var m=this.getValues("scriptlevel","lspace","rspace");if(m.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){var l=this.HTMLgetMu(o);m.lspace=Math.max(0,d.length2em(m.lspace,l));m.rspace=Math.max(0,d.length2em(m.rspace,l));var k=this,n=this.Parent();while(n&&n.isEmbellished()&&n.Core()===k){k=n;n=n.Parent();o=k.HTMLspanElement()}if(m.lspace){o.style.paddingLeft=d.Em(m.lspace)}if(m.rspace){o.style.paddingRight=d.Em(m.rspace)}}}else{var p=this.texSpacing();if(p!==""){p=d.length2em(p,this.HTMLgetScale())/(o.scale||1);if(o.style.paddingLeft){p+=d.unEm(o.style.paddingLeft)}o.style.paddingLeft=d.Em(p)}}},HTMLgetScale:function(){var m=1,k=this.getValues("mathsize","scriptlevel","fontsize");if(this.style){var l=this.HTMLspanElement();if(l.style.fontSize!=""){k.fontsize=l.style.fontSize}}if(k.fontsize&&!this.mathsize){k.mathsize=k.fontsize}if(k.scriptlevel!==0){if(k.scriptlevel>2){k.scriptlevel=2}m=Math.pow(this.Get("scriptsizemultiplier"),k.scriptlevel);k.scriptminsize=d.length2em(this.Get("scriptminsize"));if(m2){l.scriptlevel=2}k=Math.sqrt(Math.pow(l.scriptsizemultiplier,l.scriptlevel))}return k},HTMLgetVariant:function(){var k=this.getValues("mathvariant","fontfamily","fontweight","fontstyle");k.hasVariant=this.Get("mathvariant",true);if(!k.hasVariant){k.family=k.fontfamily;k.weight=k.fontweight;k.style=k.fontstyle}if(this.style){var m=this.HTMLspanElement();if(!k.family&&m.style.fontFamily){k.family=m.style.fontFamily}if(!k.weight&&m.style.fontWeight){k.weight=m.style.fontWeight}if(!k.style&&m.style.fontStyle){k.style=m.style.fontStyle}}if(k.weight&&k.weight.match(/^\d+$/)){k.weight=(parseInt(k.weight)>600?"bold":"normal")}var l=k.mathvariant;if(this.variantForm){l="-"+d.fontInUse+"-variant"}if(k.family&&!k.hasVariant){if(!k.weight&&k.mathvariant.match(/bold/)){k.weight="bold"}if(!k.style&&k.mathvariant.match(/italic/)){k.style="italic"}return{FONTS:[],fonts:[],noRemap:true,defaultFont:{family:k.family,style:k.style,weight:k.weight}}}if(k.weight==="bold"){l={normal:g.VARIANT.BOLD,italic:g.VARIANT.BOLDITALIC,fraktur:g.VARIANT.BOLDFRAKTUR,script:g.VARIANT.BOLDSCRIPT,"sans-serif":g.VARIANT.BOLDSANSSERIF,"sans-serif-italic":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.weight==="normal"){l={bold:g.VARIANT.normal,"bold-italic":g.VARIANT.ITALIC,"bold-fraktur":g.VARIANT.FRAKTUR,"bold-script":g.VARIANT.SCRIPT,"bold-sans-serif":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.SANSSERIFITALIC}[l]||l}}if(k.style==="italic"){l={normal:g.VARIANT.ITALIC,bold:g.VARIANT.BOLDITALIC,"sans-serif":g.VARIANT.SANSSERIFITALIC,"bold-sans-serif":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.style==="normal"){l={italic:g.VARIANT.NORMAL,"bold-italic":g.VARIANT.BOLD,"sans-serif-italic":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.BOLDSANSSERIF}[l]||l}}if(!(l in d.FONTDATA.VARIANT)){l="normal"}return d.FONTDATA.VARIANT[l]}},{HTMLautoload:function(){var k=d.autoloadDir+"/"+this.type+".js";b.RestartAfter(h.Require(k))},HTMLautoloadFile:function(k){var l=d.autoloadDir+"/"+k+".js";b.RestartAfter(h.Require(l))},HTMLstretchH:function(l,k){this.HTMLremoveColor();return this.toHTML(l,k)},HTMLstretchV:function(l,k,m){this.HTMLremoveColor();return this.toHTML(l,k,m)}});g.chars.Augment({toHTML:function(n,m,l,o){var r=this.data.join("").replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.entity.Augment({toHTML:function(n,m,l,o){var r=this.toString().replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.mi.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lp.w&&q.length===1&&!n.noIC){p.ic=p.rw-p.w;d.createBlank(o,p.ic);p.w=p.rw}this.HTMLhandleSpace(o);this.HTMLhandleColor(o);return o}});g.mn.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lu.bbox.w){u.bbox.ic=u.bbox.rw-u.bbox.w;d.createBlank(u,u.bbox.ic);u.bbox.w=u.bbox.rw}}this.HTMLhandleSpace(u);this.HTMLhandleColor(u);return u},CoreParent:function(){var k=this;while(k&&k.isEmbellished()&&k.CoreMO()===this&&!k.isa(g.math)){k=k.Parent()}return k},CoreText:function(k){if(!k){return""}if(k.isEmbellished()){return k.CoreMO().data.join("")}while((k.isa(g.mrow)||k.isa(g.TeXAtom)||k.isa(g.mstyle)||k.isa(g.mphantom))&&k.data.length===1&&k.data[0]){k=k.data[0]}if(!k.isToken){return""}else{return k.data.join("")}},HTMLremapChars:{"*":"\u2217",'"':"\u2033","\u00B0":"\u2218","\u00B2":"2","\u00B3":"3","\u00B4":"\u2032","\u00B9":"1"},HTMLremap:function(l,k){l=l.replace(/-/g,"\u2212");if(k){l=l.replace(/'/g,"\u2032").replace(/`/g,"\u2035");if(l.length===1){l=k[l]||l}}return l},HTMLcanStretch:function(n){if(!this.Get("stretchy")){return false}var o=this.data.join("");if(o.length>1){return false}var l=this.CoreParent();if(l&&l.isa(g.munderover)&&this.CoreText(l.data[l.base]).length===1){var m=l.data[l.over],k=l.data[l.under];if(m&&this===m.CoreMO()&&l.Get("accent")){o=d.FONTDATA.REMAPACCENT[o]||o}else{if(k&&this===k.CoreMO()&&l.Get("accentunder")){o=d.FONTDATA.REMAPACCENTUNDER[o]||o}}}o=d.FONTDATA.DELIMITERS[o.charCodeAt(0)];return(o&&o.dir==n.substr(0,1))},HTMLstretchV:function(m,n,o){this.HTMLremoveColor();var r=this.getValues("symmetric","maxsize","minsize");var p=this.HTMLspanElement(),s=this.HTMLgetMu(p),q;var k=d.TeX.axis_height,l=p.scale;if(r.symmetric){q=2*Math.max(n-k,o+k)}else{q=n+o}r.maxsize=d.length2em(r.maxsize,s,p.bbox.h+p.bbox.d);r.minsize=d.length2em(r.minsize,s,p.bbox.h+p.bbox.d);q=Math.max(r.minsize,Math.min(r.maxsize,q));p=this.HTMLcreateSpan(m);d.createDelimiter(p,this.data.join("").charCodeAt(0),q,l);if(r.symmetric){q=(p.bbox.h+p.bbox.d)/2+k}else{q=(p.bbox.h+p.bbox.d)*n/(n+o)}d.positionDelimiter(p,q);this.HTMLhandleSpace(p);this.HTMLhandleColor(p);return p},HTMLstretchH:function(o,k){this.HTMLremoveColor();var m=this.getValues("maxsize","minsize","mathvariant","fontweight");if((m.fontweight==="bold"||parseInt(m.fontweight)>=600)&&!this.Get("mathvariant",true)){m.mathvariant=g.VARIANT.BOLD}var n=this.HTMLspanElement(),l=this.HTMLgetMu(n),p=n.scale;m.maxsize=d.length2em(m.maxsize,l,n.bbox.w);m.minsize=d.length2em(m.minsize,l,n.bbox.w);k=Math.max(m.minsize,Math.min(m.maxsize,k));n=this.HTMLcreateSpan(o);d.createDelimiter(n,this.data.join("").charCodeAt(0),k,p,m.mathvariant);this.HTMLhandleSpace(n);this.HTMLhandleColor(n);return n}});g.mtext.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));var n=this.HTMLgetVariant();if(d.config.mtextFontInherit||this.Parent().type==="merror"){n={bold:n.bold,italic:n.italic,fontInherit:true}}for(var l=0,k=this.data.length;ld.linebreakWidth)||this.hasNewline()},HTMLstretchH:function(m,k){this.HTMLremoveColor();var l=this.HTMLspanElement();this.data[this.core].HTMLstretchH(l,k);this.HTMLcomputeBBox(l,true);this.HTMLhandleColor(l);return l},HTMLstretchV:function(m,l,n){this.HTMLremoveColor();var k=this.HTMLspanElement();this.data[this.core].HTMLstretchV(k,l,n);this.HTMLcomputeBBox(k,true);this.HTMLhandleColor(k);return k}});g.mstyle.Augment({toHTML:function(l,k,m){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){var n=this.data[0].toHTML(l);if(m!=null){this.data[0].HTMLstretchV(l,k,m)}else{if(k!=null){this.data[0].HTMLstretchH(l,k)}}l.bbox=n.bbox}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mfrac.Augment({toHTML:function(D){D=this.HTMLcreateSpan(D);var m=d.createStack(D);var r=d.createBox(m),o=d.createBox(m);d.MeasureSpans([this.HTMLboxChild(0,r),this.HTMLboxChild(1,o)]);var k=this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled");var I=this.HTMLgetScale(),C=k.displaystyle;var G=d.TeX.axis_height*I;if(k.bevelled){var F=(C?0.4:0.15);var s=Math.max(r.bbox.h+r.bbox.d,o.bbox.h+o.bbox.d)+2*F;var E=d.createBox(m);d.createDelimiter(E,47,s);d.placeBox(r,0,(r.bbox.d-r.bbox.h)/2+G+F);d.placeBox(E,r.bbox.w-F/2,(E.bbox.d-E.bbox.h)/2+G);d.placeBox(o,r.bbox.w+E.bbox.w-F,(o.bbox.d-o.bbox.h)/2+G-F)}else{var l=Math.max(r.bbox.w,o.bbox.w);var y=d.thickness2em(k.linethickness,I),A,z,x,w;var B=d.TeX.min_rule_thickness/this.em;if(C){x=d.TeX.num1;w=d.TeX.denom1}else{x=(y===0?d.TeX.num3:d.TeX.num2);w=d.TeX.denom2}x*=I;w*=I;if(y===0){A=Math.max((C?7:3)*d.TeX.rule_thickness,2*B);z=(x-r.bbox.d)-(o.bbox.h-w);if(zy){l=((s.bbox.h+s.bbox.d)-(y-A))/2}var B=d.FONTDATA.DELIMITERS[d.FONTDATA.RULECHAR];if(!B||oK){K=r[M].bbox.w}if(!N[M]&&K>n){n=K}}}if(F==null&&H!=null){n=H}else{if(n==-d.BIGDIMEN){n=K}}for(M=K=0,I=this.data.length;MK){K=w.bbox.w}}}var E=d.TeX.rule_thickness,G=d.FONTDATA.TeX_factor;var p=r[this.base]||{bbox:this.HTMLzeroBBox()};var v,s,A,z,u,C,J,O=0;if(p.bbox.ic){O=1.3*p.bbox.ic+0.05}for(M=0,I=this.data.length;M0){z+=F;y-=F}}d.placeBox(k,o.bbox.w+M,Math.max(z,J.superscriptshift));d.placeBox(x,o.bbox.w,-Math.max(y,J.subscriptshift))}}this.HTMLhandleSpace(K);this.HTMLhandleColor(K);return K},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mmultiscripts.Augment({toHTML:g.mbase.HTMLautoload});g.mtable.Augment({toHTML:g.mbase.HTMLautoload});g["annotation-xml"].Augment({toHTML:g.mbase.HTMLautoload});g.math.Augment({toHTML:function(u,l){var r=this.Get("alttext");if(r&&r!==""){l.setAttribute("aria-label",r)}var m=d.addElement(u,"nobr",{isMathJax:true});u=this.HTMLcreateSpan(m);var s=d.createStack(u),n=d.createBox(s),t;s.style.fontSize=m.parentNode.style.fontSize;m.parentNode.style.fontSize="";if(this.data[0]!=null){if(d.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}g.mbase.prototype.displayAlign=b.config.displayAlign;g.mbase.prototype.displayIndent=b.config.displayIndent;var o=this.data[0].toHTML(n);o.bbox.exactW=false;t=d.Measured(o,n)}d.placeBox(n,0,0);u.style.width=d.Em((Math.round(t.bbox.w*this.em)+0.25)/d.outerEm);u.style.display="inline-block";var k=1/d.em,q=d.em/d.outerEm;d.em/=q;u.bbox.h*=q;u.bbox.d*=q;u.bbox.w*=q;u.bbox.lw*=q;u.bbox.rw*=q;if(t&&t.bbox.width!=null){u.style.minWidth=(t.bbox.minWidth||u.style.width);u.style.width=s.style.width=t.bbox.width;n.style.width="100%"}this.HTMLhandleColor(u);if(t){d.createRule(u,(t.bbox.h+k)*q,(t.bbox.d+k)*q,0)}if(!this.isMultiline&&this.Get("display")==="block"&&u.bbox.width==null){var v=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(v.indentalignfirst!==g.INDENTALIGN.INDENTALIGN){v.indentalign=v.indentalignfirst}if(v.indentalign===g.INDENTALIGN.AUTO){v.indentalign=this.displayAlign}l.style.textAlign=v.indentalign;if(v.indentshiftfirst!==g.INDENTSHIFT.INDENTSHIFT){v.indentshift=v.indentshiftfirst}if(v.indentshift==="auto"){v.indentshift=this.displayIndent}if(v.indentshift&&v.indentalign!==g.INDENTALIGN.CENTER){u.style[{left:"marginLeft",right:"marginRight"}[v.indentalign]]=d.Em(d.length2em(v.indentshift))}}return u},HTMLspanElement:g.mbase.prototype.HTMLspanElement});g.TeXAtom.Augment({toHTML:function(l){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){if(this.texClass===g.TEXCLASS.VCENTER){var k=d.createStack(l);var m=d.createBox(k);d.Measured(this.data[0].toHTML(m),m);d.placeBox(m,0,d.TeX.axis_height-(m.bbox.h+m.bbox.d)/2+m.bbox.d)}else{l.bbox=this.data[0].toHTML(l).bbox}}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",d,"jax.js"]),0)})});b.Register.StartupHook("End Config",function(){b.Browser.Select({MSIE:function(k){var o=(document.documentMode||0);var n=k.versionAtLeast("7.0");var m=k.versionAtLeast("8.0")&&o>7;var l=(document.compatMode==="BackCompat");if(o<9){d.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";d.config.styles[".MathJax .MathJax_HitBox"].opacity=0;d.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)"}d.Augment({PaddingWidthBug:true,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:l,msieDisappearingBug:(o>=8),msieMarginScaleBug:(o<8),msiePaddingWidthBug:true,msieBorderWidthBug:l,msieFrameSizeBug:(o<=8),msieInlineBlockAlignBug:(!m||l),msiePlaceBoxBug:(m&&!l),msieClipRectBug:!m,msieNegativeSpaceBug:l,cloneNodeBug:(m&&k.version==="8.0"),initialSkipBug:(o<8),msieNegativeBBoxBug:(o>=8),msieIE6:!n,msieItalicWidthBug:true,FontFaceBug:true,msieFontCSSBug:k.isIE9,allowWebFonts:(o>=9?"woff":"eot")})},Firefox:function(l){var m=false;if(l.versionAtLeast("3.5")){var k=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||b.config.root.match(/^https?:\/\//)||(b.config.root+"/").substr(0,k.length)===k){m="otf"}}d.Augment({ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:m})},Safari:function(p){var n=p.versionAtLeast("3.0");var m=p.versionAtLeast("3.1");var k=navigator.appVersion.match(/ Safari\/\d/)&&navigator.appVersion.match(/ Version\/\d/)&&navigator.vendor.match(/Apple/);var l=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var q=(m&&p.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!p.versionAtLeast("5.0"))||(l!=null&&(l[1]<2||(l[1]==2&&l[2]<2)))));d.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!m,safariTextNodeBug:!n,forceReflow:true,allowWebFonts:(m&&!q?"otf":false)});if(k){d.Augment({webFontDefault:(p.isMobile?"sans-serif":"serif")})}if(p.isPC){d.Augment({adjustAvailableFonts:d.removeSTIXfonts,checkWebFontsTwice:true})}if(q){var o=b.config["HTML-CSS"];if(o){o.availableFonts=[];o.preferredFont=null}else{b.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(k){d.Augment({Em:d.EmRounded,cloneNodeBug:true,rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariWebFontSerif:[""],forceReflow:true,allowWebFonts:(k.versionAtLeast("4.0")?"otf":"svg")})},Opera:function(k){k.isMini=(navigator.appVersion.match("Opera Mini")!=null);d.config.styles[".MathJax .merror"]["vertical-align"]=null;d.config.styles[".MathJax span"]["z-index"]=0;d.Augment({operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:k.versionAtLeast("10.61"),initialSkipBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(k.versionAtLeast("10.0")&&!k.isMini?"otf":false),adjustAvailableFonts:d.removeSTIXfonts})},Konqueror:function(k){d.Augment({konquerorVerticalAlignBug:true})}})});MathJax.Hub.Register.StartupHook("End Cookie",function(){if(b.config.menuSettings.zoom!=="None"){h.Require("[MathJax]/extensions/MathZoom.js")}})})(MathJax.Ajax,MathJax.Hub,MathJax.OutputJax["HTML-CSS"]); - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];a.mtable.Augment({toHTML:function(t){t=this.HTMLcreateSpan(t);if(this.data.length===0){return t}var K=this.getValues("columnalign","rowalign","columnspacing","rowspacing","columnwidth","equalcolumns","equalrows","columnlines","rowlines","frame","framespacing","align","useHeight","width","side","minlabelspacing");var aJ=K.width.match(/%$/);var ay=b.createStack(t);var aG=this.HTMLgetScale(),aA=this.HTMLgetMu(t),aB=-1;var aq=[],au=[],ak=[],aw=[],av=[],af,ae,ap=-1,ad,ao,Z,aF,R,aC,aO=[];var al=b.FONTDATA.baselineskip*aG*K.useHeight,aT,I=b.FONTDATA.lineH*aG,O=b.FONTDATA.lineD*aG;for(af=0,ad=this.data.length;afap){ap=ae}av[ae]=b.createStack(b.createBox(ay));ak[ae]=-b.BIGDIMEN}aw[af][ae]=b.createBox(av[ae]);aO.push(aF.data[ae-Z].toHTML(aw[af][ae]))}}b.MeasureSpans(aO);for(af=0,ad=this.data.length;afaq[ae]){aq[ae]=aS*aL.h/aT}if(aS*aL.d/aT>au[ae]){au[ae]=aS*aL.d/aT}}}else{if(aC.HTMLcanStretch("Horizontal")){aS=b.length2em(aS,aA,aL.w);if(aS>ak[ae]){ak[ae]=aS}}}}}if(aw[af][ae].bbox.h>aq[af]){aq[af]=aw[af][ae].bbox.h}if(aw[af][ae].bbox.d>au[af]){au[af]=aw[af][ae].bbox.d}if(aw[af][ae].bbox.w>ak[ae]){ak[ae]=aw[af][ae].bbox.w}}}if(aq[0]+au[0]){aq[0]=Math.max(aq[0],I)}if(aq[aw.length-1]+au[aw.length-1]){au[aw.length-1]=Math.max(au[aw.length-1],O)}var aE=MathJax.Hub.SplitList;var az=aE(K.columnspacing),aQ=aE(K.rowspacing),e=aE(K.columnalign),E=aE(K.rowalign),d=aE(K.columnlines),z=aE(K.rowlines),aM=aE(K.columnwidth),V=[];for(af=0,ad=az.length;afaw.length){ab=aw.length}}aj=0;aU=-(aT+aH)+aq[0];for(af=0,ad=ab-1;af0.98){S=0.98/ag;ag=0.98}}else{if(K.width==="auto"){if(ag>0.98){S=L/(B+L);ac=B+L}else{ac=B/(1-ag)}}else{ac=b.length2em(K.width,aA);for(af=0,ad=Math.min(ap+1,az.length);af0.01){if(ah&&ac>B){ac=(ac-B)/ah;for(af=0,ad=at.length;af&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.2",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -(function(d,h,l,g,m,b,j){var q="2.2";var i=MathJax.Extension;var c=i.MathEvents={version:q};var k=d.config.menuSettings;var p={hover:500,frame:{x:3.5,y:5,bwidth:1,bcolor:"#A6D",hwidth:"15px",hcolor:"#83A"},button:{x:-4,y:-3,wx:-2,src:l.fileURL(b.imageDir+"/MenuArrow-15.png")},fadeinInc:0.2,fadeoutInc:0.05,fadeDelay:50,fadeoutStart:400,fadeoutDelay:15*1000,styles:{".MathJax_Hover_Frame":{"border-radius":".25em","-webkit-border-radius":".25em","-moz-border-radius":".25em","-khtml-border-radius":".25em","box-shadow":"0px 0px 15px #83A","-webkit-box-shadow":"0px 0px 15px #83A","-moz-box-shadow":"0px 0px 15px #83A","-khtml-box-shadow":"0px 0px 15px #83A",border:"1px solid #A6D ! important",display:"inline-block",position:"absolute"},".MathJax_Hover_Arrow":{position:"absolute",width:"15px",height:"11px",cursor:"pointer"}}};var n=c.Event={LEFTBUTTON:0,RIGHTBUTTON:2,MENUKEY:"altKey",Mousedown:function(r){return n.Handler(r,"Mousedown",this)},Mouseup:function(r){return n.Handler(r,"Mouseup",this)},Mousemove:function(r){return n.Handler(r,"Mousemove",this)},Mouseover:function(r){return n.Handler(r,"Mouseover",this)},Mouseout:function(r){return n.Handler(r,"Mouseout",this)},Click:function(r){return n.Handler(r,"Click",this)},DblClick:function(r){return n.Handler(r,"DblClick",this)},Menu:function(r){return n.Handler(r,"ContextMenu",this)},Handler:function(u,s,t){if(l.loadingMathMenu){return n.False(u)}var r=b[t.jaxID];if(!u){u=window.event}u.isContextMenu=(s==="ContextMenu");if(r[s]){return r[s](u,t)}if(i.MathZoom){return i.MathZoom.HandleEvent(u,s,t)}},False:function(r){if(!r){r=window.event}if(r){if(r.preventDefault){r.preventDefault()}if(r.stopPropagation){r.stopPropagation()}r.cancelBubble=true;r.returnValue=false}return false},ContextMenu:function(s,A,v){var x=b[A.jaxID],u=x.getJaxFromMath(A);var B=(x.config.showMathMenu!=null?x:d).config.showMathMenu;if(!B||(k.context!=="MathJax"&&!v)){return}if(c.msieEventBug){s=window.event||s}n.ClearSelection();f.ClearHoverTimer();if(u.hover){if(u.hover.remove){clearTimeout(u.hover.remove);delete u.hover.remove}u.hover.nofade=true}var t=MathJax.Menu;var C,z;if(t){if(t.loadingDomain){return n.False(s)}C=m.loadDomain("MathMenu");if(!C){t.jax=u;var r=t.menu.Find("Show Math As").menu;r.items[0].name=u.sourceMenuTitle;r.items[0].format=(u.sourceMenuFormat||"MathML");r.items[1].name=j[u.inputJax].sourceMenuTitle;var w=t.menu.Find("Math Settings","MathPlayer");w.hidden=!(u.outputJax==="NativeMML"&&d.Browser.hasMathPlayer);return t.menu.Post(s)}t.loadingDomain=true;z=function(){delete t.loadingDomain}}else{if(l.loadingMathMenu){return n.False(s)}l.loadingMathMenu=true;C=l.Require("[MathJax]/extensions/MathMenu.js");z=function(){delete l.loadingMathMenu;if(!MathJax.Menu){MathJax.Menu={}}}}var y={pageX:s.pageX,pageY:s.pageY,clientX:s.clientX,clientY:s.clientY};g.Queue(C,z,["ContextMenu",n,y,A,v]);return n.False(s)},AltContextMenu:function(t,s){var u=b[s.jaxID];var r=(u.config.showMathMenu!=null?u:d).config.showMathMenu;if(r){r=(u.config.showMathMenuMSIE!=null?u:d).config.showMathMenuMSIE;if(k.context==="MathJax"&&!k.mpContext&&r){if(!c.noContextMenuBug||t.button!==n.RIGHTBUTTON){return}}else{if(!t[n.MENUKEY]||t.button!==n.LEFTBUTTON){return}}return u.ContextMenu(t,s,true)}},ClearSelection:function(){if(c.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(document.selection){setTimeout("document.selection.empty()",0)}},getBBox:function(t){t.appendChild(c.topImg);var s=c.topImg.offsetTop,u=t.offsetHeight-s,r=t.offsetWidth;t.removeChild(c.topImg);return{w:r,h:s,d:u}}};var f=c.Hover={Mouseover:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.ReHover(r)}else{f.HoverTimer(r,s)}return n.False(t)}}},Mouseout:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.UnHover(r)}else{f.ClearHoverTimer()}return n.False(t)}}},Mousemove:function(t,s){if(k.discoverable||k.zoom==="Hover"){var r=this.getJaxFromMath(s);if(r.hover){return}if(f.lastX==t.clientX&&f.lastY==t.clientY){return}f.lastX=t.clientX;f.lastY=t.clientY;f.HoverTimer(r,s);return n.False(t)}},HoverTimer:function(r,s){this.ClearHoverTimer();this.hoverTimer=setTimeout(g(["Hover",this,r,s]),p.hover)},ClearHoverTimer:function(){if(this.hoverTimer){clearTimeout(this.hoverTimer);delete this.hoverTimer}},Hover:function(r,v){if(i.MathZoom&&i.MathZoom.Hover({},v)){return}var u=b[r.outputJax],w=u.getHoverSpan(r,v),z=u.getHoverBBox(r,w,v),x=(u.config.showMathMenu!=null?u:d).config.showMathMenu;var B=p.frame.x,A=p.frame.y,y=p.frame.bwidth;if(c.msieBorderWidthBug){y=0}r.hover={opacity:0,id:r.inputID+"-Hover"};var s=h.Element("span",{id:r.hover.id,isMathJax:true,style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{className:"MathJax_Hover_Frame",isMathJax:true,style:{display:"inline-block",position:"absolute",top:this.Px(-z.h-A-y-(z.y||0)),left:this.Px(-B-y+(z.x||0)),width:this.Px(z.w+2*B),height:this.Px(z.h+z.d+2*A),opacity:0,filter:"alpha(opacity=0)"}}]]);var t=h.Element("span",{isMathJax:true,id:r.hover.id+"Menu",style:{display:"inline-block","z-index":1,width:0,height:0,position:"relative"}},[["img",{className:"MathJax_Hover_Arrow",isMathJax:true,math:v,src:p.button.src,onclick:this.HoverMenu,jax:u.id,style:{left:this.Px(z.w+B+y+(z.x||0)+p.button.x),top:this.Px(-z.h-A-y-(z.y||0)-p.button.y),opacity:0,filter:"alpha(opacity=0)"}}]]);if(z.width){s.style.width=t.style.width=z.width;s.style.marginRight=t.style.marginRight="-"+z.width;s.firstChild.style.width=z.width;t.firstChild.style.left="";t.firstChild.style.right=this.Px(p.button.wx)}w.parentNode.insertBefore(s,w);if(x){w.parentNode.insertBefore(t,w)}if(w.style){w.style.position="relative"}this.ReHover(r)},ReHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}r.hover.remove=setTimeout(g(["UnHover",this,r]),p.fadeoutDelay);this.HoverFadeTimer(r,p.fadeinInc)},UnHover:function(r){if(!r.hover.nofade){this.HoverFadeTimer(r,-p.fadeoutInc,p.fadeoutStart)}},HoverFade:function(r){delete r.hover.timer;r.hover.opacity=Math.max(0,Math.min(1,r.hover.opacity+r.hover.inc));r.hover.opacity=Math.floor(1000*r.hover.opacity)/1000;var t=document.getElementById(r.hover.id),s=document.getElementById(r.hover.id+"Menu");t.firstChild.style.opacity=r.hover.opacity;t.firstChild.style.filter="alpha(opacity="+Math.floor(100*r.hover.opacity)+")";if(s){s.firstChild.style.opacity=r.hover.opacity;s.firstChild.style.filter=t.style.filter}if(r.hover.opacity===1){return}if(r.hover.opacity>0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -(function(d,h,l,g,m,b,j){var q="2.2";var i=MathJax.Extension;var c=i.MathEvents={version:q};var k=d.config.menuSettings;var p={hover:500,frame:{x:3.5,y:5,bwidth:1,bcolor:"#A6D",hwidth:"15px",hcolor:"#83A"},button:{x:-4,y:-3,wx:-2,src:l.fileURL(b.imageDir+"/MenuArrow-15.png")},fadeinInc:0.2,fadeoutInc:0.05,fadeDelay:50,fadeoutStart:400,fadeoutDelay:15*1000,styles:{".MathJax_Hover_Frame":{"border-radius":".25em","-webkit-border-radius":".25em","-moz-border-radius":".25em","-khtml-border-radius":".25em","box-shadow":"0px 0px 15px #83A","-webkit-box-shadow":"0px 0px 15px #83A","-moz-box-shadow":"0px 0px 15px #83A","-khtml-box-shadow":"0px 0px 15px #83A",border:"1px solid #A6D ! important",display:"inline-block",position:"absolute"},".MathJax_Hover_Arrow":{position:"absolute",width:"15px",height:"11px",cursor:"pointer"}}};var n=c.Event={LEFTBUTTON:0,RIGHTBUTTON:2,MENUKEY:"altKey",Mousedown:function(r){return n.Handler(r,"Mousedown",this)},Mouseup:function(r){return n.Handler(r,"Mouseup",this)},Mousemove:function(r){return n.Handler(r,"Mousemove",this)},Mouseover:function(r){return n.Handler(r,"Mouseover",this)},Mouseout:function(r){return n.Handler(r,"Mouseout",this)},Click:function(r){return n.Handler(r,"Click",this)},DblClick:function(r){return n.Handler(r,"DblClick",this)},Menu:function(r){return n.Handler(r,"ContextMenu",this)},Handler:function(u,s,t){if(l.loadingMathMenu){return n.False(u)}var r=b[t.jaxID];if(!u){u=window.event}u.isContextMenu=(s==="ContextMenu");if(r[s]){return r[s](u,t)}if(i.MathZoom){return i.MathZoom.HandleEvent(u,s,t)}},False:function(r){if(!r){r=window.event}if(r){if(r.preventDefault){r.preventDefault()}if(r.stopPropagation){r.stopPropagation()}r.cancelBubble=true;r.returnValue=false}return false},ContextMenu:function(s,A,v){var x=b[A.jaxID],u=x.getJaxFromMath(A);var B=(x.config.showMathMenu!=null?x:d).config.showMathMenu;if(!B||(k.context!=="MathJax"&&!v)){return}if(c.msieEventBug){s=window.event||s}n.ClearSelection();f.ClearHoverTimer();if(u.hover){if(u.hover.remove){clearTimeout(u.hover.remove);delete u.hover.remove}u.hover.nofade=true}var t=MathJax.Menu;var C,z;if(t){if(t.loadingDomain){return n.False(s)}C=m.loadDomain("MathMenu");if(!C){t.jax=u;var r=t.menu.Find("Show Math As").menu;r.items[0].name=u.sourceMenuTitle;r.items[0].format=(u.sourceMenuFormat||"MathML");r.items[1].name=j[u.inputJax].sourceMenuTitle;var w=t.menu.Find("Math Settings","MathPlayer");w.hidden=!(u.outputJax==="NativeMML"&&d.Browser.hasMathPlayer);return t.menu.Post(s)}t.loadingDomain=true;z=function(){delete t.loadingDomain}}else{if(l.loadingMathMenu){return n.False(s)}l.loadingMathMenu=true;C=l.Require("[MathJax]/extensions/MathMenu.js");z=function(){delete l.loadingMathMenu;if(!MathJax.Menu){MathJax.Menu={}}}}var y={pageX:s.pageX,pageY:s.pageY,clientX:s.clientX,clientY:s.clientY};g.Queue(C,z,["ContextMenu",n,y,A,v]);return n.False(s)},AltContextMenu:function(t,s){var u=b[s.jaxID];var r=(u.config.showMathMenu!=null?u:d).config.showMathMenu;if(r){r=(u.config.showMathMenuMSIE!=null?u:d).config.showMathMenuMSIE;if(k.context==="MathJax"&&!k.mpContext&&r){if(!c.noContextMenuBug||t.button!==n.RIGHTBUTTON){return}}else{if(!t[n.MENUKEY]||t.button!==n.LEFTBUTTON){return}}return u.ContextMenu(t,s,true)}},ClearSelection:function(){if(c.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(document.selection){setTimeout("document.selection.empty()",0)}},getBBox:function(t){t.appendChild(c.topImg);var s=c.topImg.offsetTop,u=t.offsetHeight-s,r=t.offsetWidth;t.removeChild(c.topImg);return{w:r,h:s,d:u}}};var f=c.Hover={Mouseover:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.ReHover(r)}else{f.HoverTimer(r,s)}return n.False(t)}}},Mouseout:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.UnHover(r)}else{f.ClearHoverTimer()}return n.False(t)}}},Mousemove:function(t,s){if(k.discoverable||k.zoom==="Hover"){var r=this.getJaxFromMath(s);if(r.hover){return}if(f.lastX==t.clientX&&f.lastY==t.clientY){return}f.lastX=t.clientX;f.lastY=t.clientY;f.HoverTimer(r,s);return n.False(t)}},HoverTimer:function(r,s){this.ClearHoverTimer();this.hoverTimer=setTimeout(g(["Hover",this,r,s]),p.hover)},ClearHoverTimer:function(){if(this.hoverTimer){clearTimeout(this.hoverTimer);delete this.hoverTimer}},Hover:function(r,v){if(i.MathZoom&&i.MathZoom.Hover({},v)){return}var u=b[r.outputJax],w=u.getHoverSpan(r,v),z=u.getHoverBBox(r,w,v),x=(u.config.showMathMenu!=null?u:d).config.showMathMenu;var B=p.frame.x,A=p.frame.y,y=p.frame.bwidth;if(c.msieBorderWidthBug){y=0}r.hover={opacity:0,id:r.inputID+"-Hover"};var s=h.Element("span",{id:r.hover.id,isMathJax:true,style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{className:"MathJax_Hover_Frame",isMathJax:true,style:{display:"inline-block",position:"absolute",top:this.Px(-z.h-A-y-(z.y||0)),left:this.Px(-B-y+(z.x||0)),width:this.Px(z.w+2*B),height:this.Px(z.h+z.d+2*A),opacity:0,filter:"alpha(opacity=0)"}}]]);var t=h.Element("span",{isMathJax:true,id:r.hover.id+"Menu",style:{display:"inline-block","z-index":1,width:0,height:0,position:"relative"}},[["img",{className:"MathJax_Hover_Arrow",isMathJax:true,math:v,src:p.button.src,onclick:this.HoverMenu,jax:u.id,style:{left:this.Px(z.w+B+y+(z.x||0)+p.button.x),top:this.Px(-z.h-A-y-(z.y||0)-p.button.y),opacity:0,filter:"alpha(opacity=0)"}}]]);if(z.width){s.style.width=t.style.width=z.width;s.style.marginRight=t.style.marginRight="-"+z.width;s.firstChild.style.width=z.width;t.firstChild.style.left="";t.firstChild.style.right=this.Px(p.button.wx)}w.parentNode.insertBefore(s,w);if(x){w.parentNode.insertBefore(t,w)}if(w.style){w.style.position="relative"}this.ReHover(r)},ReHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}r.hover.remove=setTimeout(g(["UnHover",this,r]),p.fadeoutDelay);this.HoverFadeTimer(r,p.fadeinInc)},UnHover:function(r){if(!r.hover.nofade){this.HoverFadeTimer(r,-p.fadeoutInc,p.fadeoutStart)}},HoverFade:function(r){delete r.hover.timer;r.hover.opacity=Math.max(0,Math.min(1,r.hover.opacity+r.hover.inc));r.hover.opacity=Math.floor(1000*r.hover.opacity)/1000;var t=document.getElementById(r.hover.id),s=document.getElementById(r.hover.id+"Menu");t.firstChild.style.opacity=r.hover.opacity;t.firstChild.style.filter="alpha(opacity="+Math.floor(100*r.hover.opacity)+")";if(s){s.firstChild.style.opacity=r.hover.opacity;s.firstChild.style.filter=t.style.filter}if(r.hover.opacity===1){return}if(r.hover.opacity>0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(c,d){var a;var b=function(e){return MathJax.Localization._.apply(MathJax.Localization,[["MathML",e]].concat([].slice.call(arguments,1)))};c.Parse=MathJax.Object.Subclass({Init:function(e){this.Parse(e)},Parse:function(g){var h;if(typeof g!=="string"){h=g.parentNode}else{h=c.ParseXML(this.preProcessMath.call(this,g));if(h==null){c.Error(["ErrorParsingMathML","Error parsing MathML"])}}var f=h.getElementsByTagName("parsererror")[0];if(f){c.Error(["ParsingError","Error parsing MathML: %1",f.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,"")])}if(h.childNodes.length!==1){c.Error(["MathMLSingleElement","MathML must be formed by a single element"])}if(h.firstChild.nodeName.toLowerCase()==="html"){var e=h.getElementsByTagName("h1")[0];if(e&&e.textContent==="XML parsing error"&&e.nextSibling){c.Error(["ParsingError","Error parsing MathML: %1",String(e.nextSibling.nodeValue).replace(/fatal parsing error: /,"")])}}if(h.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")!=="math"){c.Error(["MathMLRootElement","MathML must be formed by a element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g span":{"text-align":o+"!important"}})}if(!this.require){this.require=[]}this.require.push(MathJax.OutputJax.extensionDir+"/MathEvents.js")},Startup:function(){h=MathJax.Extension.MathEvents.Event;b=MathJax.Extension.MathEvents.Touch;d=MathJax.Extension.MathEvents.Hover;this.ContextMenu=h.ContextMenu;this.Mousedown=h.AltContextMenu;this.Mouseover=d.Mouseover;this.Mouseout=d.Mouseout;this.Mousemove=d.Mousemove;if(!i){this.EmExSpan=e.Element("span",{style:{position:"absolute","font-size-adjust":"none"}},[["div",{className:"MathJax_mmlExBox"}],["span",{className:"MathJax_MathML"}]]);f.math(f.mspace().With({width:"60ex"})).toNativeMML(this.EmExSpan.lastChild)}return g.Styles(this.config.styles)},InitializeMML:function(){this.initialized=true;if(i){try{if(!c.Browser.mpNamespace){var m=document.createElement("object");m.id="mathplayer";m.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(m);document.namespaces.add("m","http://www.w3.org/1998/Math/MathML");c.Browser.mpNamespace=true}if(!c.Browser.mpImported){document.namespaces.m.doImport("#mathplayer");c.Browser.mpImported=true}}catch(n){alert(MathJax.Localization._(["MathML","MathPlayer"],"MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics."))}}else{document.body.appendChild(this.EmExSpan);this.defaultEx=this.EmExSpan.firstChild.offsetWidth/60;this.defaultMEx=this.EmExSpan.lastChild.offsetWidth/60;document.body.removeChild(this.EmExSpan)}},preTranslate:function(o){var t=o.jax[this.id],u,p=t.length,y,r,A,w,z,n,v,s,q;for(u=0;u1?v/s:1)*this.config.scale;q=Math.floor(Math.max(this.config.minScaleAdjust/100,q));n.NativeMML.ex=v}else{q=100}n.NativeMML.fontSize=q+"%"}if(!i){for(u=0;ut){t=o;u.style.width=t+"px"}}if(this.msieIE8HeightBug){u.style.position=""}return{Y:-h.getBBox(u.parentNode).h,mW:p,mH:v,zW:t,zH:q}},NAMEDSPACE:{negativeveryverythinmathspace:"-.0556em",negativeverythinmathspace:"-.1111em",negativethinmathspace:"-.1667em",negativemediummathspace:"-.2222em",negativethickmathspace:"-.2778em",negativeverythickmathspace:"-.3333em",negativeveryverythickmathspace:"-.3889em"}});c.Register.StartupHook("mml Jax Ready",function(){f=MathJax.ElementJax.mml;f.mbase.Augment({toNativeMML:function(r){var p=this.NativeMMLelement(this.type);this.NativeMMLattributes(p);for(var q=0,o=this.data.length;q1){o=this.NativeMMLelement("mrow");s.appendChild(q);s=q}for(;r0;u--){q.separators.push(v)}}}var o=this.NativeMMLelement(t?this.type:"mrow");this.NativeMMLattributes(o);o.removeAttribute("separators");if(t){o.setAttribute("open",q.open);o.setAttribute("close",q.close);if(this.data.length>1){w.appendChild(o);w=o;o=this.NativeMMLelement("mrow")}}else{o.removeAttribute("open");o.removeAttribute("close")}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.open;o.appendChild(r)}for(u=0,p=this.data.length;u0){r=this.NativeMMLelement("mo");r.setAttribute("separator","true");r.textContent=q.separators[u-1];o.appendChild(r)}if(this.data[u]){this.data[u].toNativeMML(o)}else{o.appendChild(this.NativeMMLelement("mrow"))}}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.close;o.appendChild(r)}w.appendChild(o)}});f.TeXAtom.Augment({toNativeMML:function(p){var o=this.NativeMMLelement("mrow");this.NativeMMLattributes(o);this.data[0].toNativeMML(o);p.appendChild(o)}});f.chars.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.entity.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.xml.Augment({toNativeMML:function(q){for(var p=0,o=this.data.length;p=p.HTMLCSSlast+p.HTMLCSSchunk){this.postTranslate(p);p.HTMLCSSchunk=Math.floor(p.HTMLCSSchunk*this.config.EqnChunkFactor);p.HTMLCSSdelay=true}}},postTranslate:function(r){var l=r.jax[this.id];if(!this.hideProcessedMath){return}for(var p=r.HTMLCSSlast,k=r.HTMLCSSeqn;p=0&&!this.initialSkipBug)||this.negativeBBoxes||!o.firstChild){l=o.offsetWidth;n=o.parentNode.offsetHeight}else{if(o.bbox&&m<0&&this.msieNegativeBBoxBug){l=-o.offsetWidth,n=o.parentNode.offsetHeight}else{if(this.initialSkipBug){var k=o.style.position;o.style.position="absolute";p=this.startMarker;o.insertBefore(p,o.firstChild)}o.appendChild(this.endMarker);l=this.endMarker.offsetLeft-p.offsetLeft;o.removeChild(this.endMarker);if(this.initialSkipBug){o.removeChild(p);o.style.position=k}}}if(n!=null){o.parentNode.HH=n/this.em}return l/this.em},Measured:function(m,l){var n=m.bbox;if(n.width==null&&n.w&&!n.isMultiline){var k=this.getW(m);n.rw+=k-n.w;n.w=k;n.exactW=true}if(!l){l=m.parentNode}if(!l.bbox){l.bbox=n}return m},Remeasured:function(l,k){k.bbox=this.Measured(l,k).bbox},MeasureSpans:function(o){var r=[],t,q,n,u,k,p,l,s;for(q=0,n=o.length;q=0&&!this.initialSkipBug)||(u.w<0&&this.msieNegativeBBoxBug)){r.push([t])}else{if(this.initialSkipBug){k=this.startMarker.cloneNode(true);p=this.endMarker.cloneNode(true);t.insertBefore(k,t.firstChild);t.appendChild(p);r.push([t,k,p,t.style.position]);t.style.position="absolute"}else{p=this.endMarker.cloneNode(true);t.appendChild(p);r.push([t,null,p])}}}for(q=0,n=r.length;q=0&&!this.initialSkipBug)||this.negativeBBoxes||!t.firstChild){l=t.offsetWidth;s.HH=s.offsetHeight/this.em}else{if(u.w<0&&this.msieNegativeBBoxBug){l=-t.offsetWidth,s.HH=s.offsetHeight/this.em}else{l=r[q][2].offsetLeft-((r[q][1]||{}).offsetLeft||0)}}l/=this.em;u.rw+=l-u.w;u.w=l;u.exactW=true;if(!s.bbox){s.bbox=u}}for(q=0,n=r.length;q=0){p.style.width=this.Em(q);p.style.display="inline-block";p.style.overflow="hidden"}else{if(this.msieNegativeSpaceBug){p.style.height=""}p.style.marginLeft=this.Em(q);if(d.safariNegativeSpaceBug&&p.parentNode.firstChild==p){this.createBlank(p,0,true)}}if(m&&m!==g.COLOR.TRANSPARENT){p.style.backgroundColor=m;p.style.position="relative"}return p},createRule:function(r,n,p,s,l){if(n<-p){p=-n}var m=d.TeX.min_rule_thickness,o=1;if(s>0&&s*this.em0&&(n+p)*this.em0&&q.offsetWidth==0){q.style.width=this.Em(s)}if(r.isBox||r.className=="mspace"){r.bbox=q.bbox,r.HH=n+p}return q},createFrame:function(s,q,r,u,x,l){if(q<-r){r=-q}var p=2*x;if(this.msieFrameSizeBug){if(uC.w){d.createBlank(u,C.rw-C.w+0.1)}}if(!this.msieClipRectBug&&!C.noclip&&!o){var B=3/this.em;var A=(C.H==null?C.h:C.H),m=(C.D==null?C.d:C.D);var E=w-A-B,p=w+m+B,n=C.lw-3*B,k=1000;if(this.initialSkipBug&&C.lw<0){n=-3*B}if(C.isFixed){k=C.width-n}u.style.clip="rect("+this.Em(E)+" "+this.Em(k)+" "+this.Em(p)+" "+this.Em(n)+")"}}u.style.top=this.Em(-q-w);u.style.left=this.Em(s+F);if(C&&z){if(C.H!=null&&(z.H==null||C.H+q>z.H)){z.H=C.H+q}if(C.D!=null&&(z.D==null||C.D-q>z.D)){z.D=C.D-q}if(C.h+q>z.h){z.h=C.h+q}if(C.d-q>z.d){z.d=C.d-q}if(z.H!=null&&z.H<=z.h){delete z.H}if(z.D!=null&&z.D<=z.d){delete z.D}if(C.w+s>z.w){z.w=C.w+s;if(z.width==null){v.style.width=this.Em(z.w)}}if(C.rw+s>z.rw){z.rw=C.rw+s}if(C.lw+s=n-0.01||(s==p-1&&!l.stretch)){if(l.HW[s][2]){q*=l.HW[s][2]}if(l.HW[s][3]){k=l.HW[s][3]}var r=this.addElement(u,"span");this.createChar(r,[k,l.HW[s][1]],q,o);u.bbox=r.bbox;u.offset=0.65*u.bbox.w;u.scale=q;return}}if(l.stretch){this["extendDelimiter"+l.dir](u,t,l.stretch,q,o)}},extendDelimiterV:function(A,t,E,F,w){var o=this.createStack(A,true);var v=this.createBox(o),u=this.createBox(o);this.createChar(v,(E.top||E.ext),F,w);this.createChar(u,(E.bot||E.ext),F,w);var m={bbox:{w:0,lw:0,rw:0}},D=m,p;var B=v.bbox.h+v.bbox.d+u.bbox.h+u.bbox.d;var r=-v.bbox.h;this.placeBox(v,0,r,true);r-=v.bbox.d;if(E.mid){D=this.createBox(o);this.createChar(D,E.mid,F,w);B+=D.bbox.h+D.bbox.d}if(E.min&&tB){m=this.Element("span");this.createChar(m,E.ext,F,w);var C=m.bbox.h+m.bbox.d,l=C-0.05,x,q,z=(E.mid?2:1);q=x=Math.min(Math.ceil((t-B)/(z*l)),this.maxStretchyParts);if(!E.fullExtenders){l=(t-B)/(z*x)}var s=(x/(x+1))*(C-l);l=C-s;r+=s+l-m.bbox.h;while(z-->0){while(x-->0){if(!this.msieCloneNodeBug){p=m.cloneNode(true)}else{p=this.Element("span");this.createChar(p,E.ext,F,w)}p.bbox=m.bbox;r-=l;this.placeBox(this.addBox(o,p),0,r,true)}r+=s-m.bbox.d;if(E.mid&&z){this.placeBox(D,0,r-D.bbox.h,true);x=q;r+=-(D.bbox.h+D.bbox.d)+s+l-m.bbox.h}}}else{r+=(B-t)/2;if(E.mid){this.placeBox(D,0,r-D.bbox.h,true);r+=-(D.bbox.h+D.bbox.d)}r+=(B-t)/2}this.placeBox(u,0,r-u.bbox.h,true);r-=u.bbox.h+u.bbox.d;A.bbox={w:Math.max(v.bbox.w,m.bbox.w,u.bbox.w,D.bbox.w),lw:Math.min(v.bbox.lw,m.bbox.lw,u.bbox.lw,D.bbox.lw),rw:Math.max(v.bbox.rw,m.bbox.rw,u.bbox.rw,D.bbox.rw),h:0,d:-r,exactW:true};A.scale=F;A.offset=0.55*A.bbox.w;A.isMultiChar=true;this.setStackWidth(o,A.bbox.w)},extendDelimiterH:function(B,o,E,G,y){var r=this.createStack(B,true);var p=this.createBox(r),C=this.createBox(r);this.createChar(p,(E.left||E.rep),G,y);this.createChar(C,(E.right||E.rep),G,y);var l=this.Element("span");this.createChar(l,E.rep,G,y);var D={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},m;this.placeBox(p,-p.bbox.lw,0,true);var u=(p.bbox.rw-p.bbox.lw)+(C.bbox.rw-C.bbox.lw)-0.05,t=p.bbox.rw-p.bbox.lw-0.025,v;if(E.mid){D=this.createBox(r);this.createChar(D,E.mid,G,y);u+=D.bbox.w}if(E.min&&ou){var F=l.bbox.rw-l.bbox.lw,q=F-0.05,z,s,A=(E.mid?2:1);s=z=Math.min(Math.ceil((o-u)/(A*q)),this.maxStretchyParts);if(!E.fillExtenders){q=(o-u)/(A*z)}v=(z/(z+1))*(F-q);q=F-v;t-=l.bbox.lw+v;while(A-->0){while(z-->0){if(!this.cloneNodeBug){m=l.cloneNode(true)}else{m=this.Element("span");this.createChar(m,E.rep,G,y)}m.bbox=l.bbox;this.placeBox(this.addBox(r,m),t,0,true);t+=q}if(E.mid&&A){this.placeBox(D,t,0,true);t+=D.bbox.w-v;z=s}}}else{t-=(u-o)/2;if(E.mid){this.placeBox(D,t,0,true);t+=D.bbox.w}t-=(u-o)/2}this.placeBox(C,t,0,true);B.bbox={w:t+C.bbox.rw,lw:0,rw:t+C.bbox.rw,H:Math.max(p.bbox.h,l.bbox.h,C.bbox.h,D.bbox.h),D:Math.max(p.bbox.d,l.bbox.d,C.bbox.d,D.bbox.d),h:l.bbox.h,d:l.bbox.d,exactW:true};B.scale=G;B.isMultiChar=true;this.setStackWidth(r,B.bbox.w)},createChar:function(s,p,n,k){s.isMathJax=true;var r=s,t="",o={fonts:[p[1]],noRemap:true};if(k&&k===g.VARIANT.BOLD){o.fonts=[p[1]+"-bold",p[1]]}if(typeof(p[1])!=="string"){o=p[1]}if(p[0] instanceof Array){for(var q=0,l=p[0].length;q=55296&&x<56319){B++;x=(((x-55296)<<10)+(s.charCodeAt(B)-56320))+65536;if(this.FONTDATA.RemapPlane1){var E=this.FONTDATA.RemapPlane1(x,p);x=E.n;p=E.variant}}else{var u,r,v=this.FONTDATA.RANGES;for(u=0,r=v.length;u=v[u].low&&x<=v[u].high){if(v[u].remap&&v[u].remap[x]){x=q+v[u].remap[x]}else{x=x-v[u].low+q;if(v[u].add){x+=v[u].add}}if(p["variant"+v[u].offset]){p=this.FONTDATA.VARIANT[p["variant"+v[u].offset]]}break}}}if(p.remap&&p.remap[x]){if(p.remap[x] instanceof Array){var o=p.remap[x];x=o[0];p=this.FONTDATA.VARIANT[o[1]]}else{if(typeof(p.remap[x])==="string"){s=p.remap[x]+s.substr(B+1);B=0;y=s.length;x=s.charCodeAt(0)}else{x=p.remap[x];if(p.remap.variant){p=this.FONTDATA.VARIANT[p.remap.variant]}}}}if(this.FONTDATA.REMAP[x]&&!p.noRemap){x=this.FONTDATA.REMAP[x];if(x instanceof Array){p=this.FONTDATA.VARIANT[x[1]];x=x[0]}if(typeof(x)==="string"){s=x+s.substr(B+1);B=0;y=s.length;x=x.charCodeAt(0)}}t=this.lookupChar(p,x);C=t[x];if(l||(!this.checkFont(t,k.style)&&!C[5].img)){if(z.length){this.addText(k,z);z=""}var w=!!k.style.fontFamily||!!A.style.fontStyle||!!A.style.fontWeight||!t.directory||l;l=false;if(k!==A){w=!this.checkFont(t,A.style);k=A}if(w){k=this.addElement(A,"span",{isMathJax:true,subSpan:true})}this.handleFont(k,t,k!==A)}z=this.handleChar(k,t,C,x,z);if(!(C[5]||{}).space){if(C[0]/1000>A.bbox.h){A.bbox.h=C[0]/1000}if(C[1]/1000>A.bbox.d){A.bbox.d=C[1]/1000}}if(A.bbox.w+C[3]/1000A.bbox.rw){A.bbox.rw=A.bbox.w+C[4]/1000}A.bbox.w+=C[2]/1000}if(z.length){this.addText(k,z)}if(A.scale&&A.scale!==1){A.bbox.h*=A.scale;A.bbox.d*=A.scale;A.bbox.w*=A.scale;A.bbox.lw*=A.scale;A.bbox.rw*=A.scale}if(s.length==1&&t.skew&&t.skew[x]){A.bbox.skew=t.skew[x]}},checkFont:function(k,l){var m=(l.fontWeight||"normal");if(m.match(/^\d+$/)){m=(parseInt(m)>=600?"bold":"normal")}return(k.family.replace(/'/g,"")===l.fontFamily.replace(/'/g,"")&&(k.style||"normal")===(l.fontStyle||"normal")&&(k.weight||"normal")===m)},handleFont:function(m,k,o){m.style.fontFamily=k.family;if(!k.directory){m.style.fontSize=Math.floor(100/d.scale+0.5)+"%"}if(!(d.FontFaceBug&&k.isWebFont)){var l=k.style||"normal",n=k.weight||"normal";if(l!=="normal"||o){m.style.fontStyle=l}if(n!=="normal"||o){m.style.fontWeight=n}}},handleChar:function(l,k,s,r,q){var p=s[5];if(p.space){if(q.length){this.addText(l,q)}d.createShift(l,s[2]/1000);return""}if(p.img){return this.handleImg(l,k,s,r,q)}if(p.isUnknown&&this.FONTDATA.DELIMITERS[r]){if(q.length){this.addText(l,q)}var o=l.scale;d.createDelimiter(l,r,0,1,k);if(this.FONTDATA.DELIMITERS[r].dir==="V"){l.style.verticalAlign=this.Em(l.bbox.d);l.bbox.h+=l.bbox.d;l.bbox.d=0}l.scale=o;s[0]=l.bbox.h*1000;s[1]=l.bbox.d*1000;s[2]=l.bbox.w*1000;s[3]=l.bbox.lw*1000;s[4]=l.bbox.rw*1000;return""}if(p.c==null){if(r<=65535){p.c=String.fromCharCode(r)}else{var m=r-65536;p.c=String.fromCharCode((m>>10)+55296)+String.fromCharCode((m&1023)+56320)}}if(p.rfix){this.addText(l,q+p.c);d.createShift(l,p.rfix/1000);return""}if(s[2]||!this.msieAccentBug||q.length){return q+p.c}d.createShift(l,s[3]/1000);d.createShift(l,(s[4]-s[3])/1000);this.addText(l,p.c);d.createShift(l,-s[4]/1000);return""},handleImg:function(l,k,p,o,m){return m},lookupChar:function(p,s){var o,k;if(!p.FONTS){var r=this.FONTDATA.FONTS;var q=(p.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(q instanceof Array)){q=[q]}if(p.fonts!=q){p.fonts=q}p.FONTS=[];for(o=0,k=q.length;o=0;n--){if(l.Ranges[n][2]==o){l.Ranges.splice(n,1)}}this.loadFont(l.directory+"/"+o+".js")}}}},loadFont:function(l){var k=MathJax.Callback.Queue();k.Push(["Require",h,this.fontDir+"/"+l]);if(this.imgFonts){if(!MathJax.isPacked){l=l.replace(/\/([^\/]*)$/,d.imgPacked+"/$1")}k.Push(["Require",h,this.webfontDir+"/png/"+l])}b.RestartAfter(k.Push({}))},loadWebFont:function(k){k.available=k.isWebFont=true;if(d.FontFaceBug){k.family=k.name;if(d.msieFontCSSBug){k.family+="-Web"}}b.RestartAfter(this.Font.loadWebFont(k))},loadWebFontError:function(l,k){b.Startup.signal.Post("HTML-CSS Jax - disable web fonts");l.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;b.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");b.Startup.signal.Post("HTML-CSS Jax - using image fonts");e(["WebFontNotAvailable","Web-Fonts not available -- using image fonts instead"],null,3000);h.Require(this.directory+"/imageFonts.js",k)}else{this.allowWebFonts=false;k()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},NBSP:"\u00A0",rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){g=MathJax.ElementJax.mml;g.mbase.Augment({toHTML:function(o){o=this.HTMLcreateSpan(o);if(this.type!="mrow"){o=this.HTMLhandleSize(o)}for(var l=0,k=this.data.length;ll.d){l.d=m.d}if(m.h>l.h){l.h=m.h}if(m.D!=null&&m.D>l.D){l.D=m.D}if(m.H!=null&&m.H>l.H){l.H=m.H}if(n.style.paddingLeft){l.w+=d.unEm(n.style.paddingLeft)*(n.scale||1)}if(l.w+m.lwl.rw){l.rw=l.w+m.rw}l.w+=m.w;if(n.style.paddingRight){l.w+=d.unEm(n.style.paddingRight)*(n.scale||1)}if(m.width){l.width=m.width;l.minWidth=m.minWidth}if(m.ic){l.ic=m.ic}else{delete l.ic}if(l.exactW&&!m.exactW){delete l.exactW}},HTMLemptyBBox:function(k){k.h=k.d=k.H=k.D=k.rw=-d.BIGDIMEN;k.w=0;k.lw=d.BIGDIMEN;return k},HTMLcleanBBox:function(k){if(k.h===this.BIGDIMEN){k.h=k.d=k.H=k.D=k.w=k.rw=k.lw=0}if(k.D<=k.d){delete k.D}if(k.H<=k.h){delete k.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(l){if(this.isEmbellished()){var k=this.Core();if(k&&k!==this){return k.HTMLcanStretch(l)}}return false},HTMLstretchH:function(l,k){return this.HTMLspanElement()},HTMLstretchV:function(l,k,m){return this.HTMLspanElement()},HTMLnotEmpty:function(k){while(k){if((k.type!=="mrow"&&k.type!=="texatom")||k.data.length>1){return true}k=k.data[0]}return false},HTMLmeasureChild:function(l,k){if(this.data[l]){d.Measured(this.data[l].toHTML(k),k)}else{k.bbox=this.HTMLzeroBBox()}},HTMLboxChild:function(l,k){if(!this.data[l]){this.SetData(l,g.mrow())}return this.data[l].toHTML(k)},HTMLcreateSpan:function(k){if(this.spanID){var l=this.HTMLspanElement();if(l&&(l.parentNode===k||(l.parentNode||{}).parentNode===k)){while(l.firstChild){l.removeChild(l.firstChild)}l.bbox=this.HTMLzeroBBox();l.scale=1;l.isMultChar=l.HH=null;l.style.cssText="";return l}}if(this.href){k=d.addElement(k,"a",{href:this.href,isMathJax:true})}k=d.addElement(k,"span",{className:this.type,isMathJax:true});if(d.imgHeightBug){k.style.display="inline-block"}if(this["class"]){k.className+=" "+this["class"]}if(!this.spanID){this.spanID=d.GetID()}k.id=(this.id||"MathJax-Span-"+this.spanID)+d.idPostfix;k.bbox=this.HTMLzeroBBox();this.styles={};if(this.style){k.style.cssText=this.style;if(k.style.fontSize){this.mathsize=k.style.fontSize;k.style.fontSize=""}this.styles={border:d.getBorders(k),padding:d.getPadding(k)};if(this.styles.border){k.style.border=""}if(this.styles.padding){k.style.padding=""}}if(this.href){k.parentNode.bbox=k.bbox}return k},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+d.idPostfix)},HTMLhandleVariant:function(l,k,m){d.handleVariant(l,k,m)},HTMLhandleSize:function(k){if(!k.scale){k.scale=this.HTMLgetScale();if(k.scale!==1){k.style.fontSize=d.Percent(k.scale)}}return k},HTMLhandleColor:function(w){var y=this.getValues("mathcolor","color");if(this.mathbackground){y.mathbackground=this.mathbackground}if(this.background){y.background=this.background}if(this.style&&w.style.backgroundColor){y.mathbackground=w.style.backgroundColor;w.style.backgroundColor="transparent"}var t=(this.styles||{}).border,v=(this.styles||{}).padding;if(y.color&&!this.mathcolor){y.mathcolor=y.color}if(y.background&&!this.mathbackground){y.mathbackground=y.background}if(y.mathcolor){w.style.color=y.mathcolor}if((y.mathbackground&&y.mathbackground!==g.COLOR.TRANSPARENT)||t||v){var A=w.bbox,z=(A.exact?0:1/d.em),u=0,s=0,m=w.style.paddingLeft,q=w.style.paddingRight;if(this.isToken){u=A.lw;s=A.rw-A.w}if(m!==""){u+=d.unEm(m)*(w.scale||1)}if(q!==""){s-=d.unEm(q)*(w.scale||1)}var l=(d.PaddingWidthBug||A.keepPadding||A.exactW?0:s-u);var o=Math.max(0,d.getW(w)+l);var x=A.h+A.d,k=-A.d,r=0,p=0;if(o>0){o+=2*z;u-=z}if(x>0){x+=2*z;k-=z}s=-o-u;if(t){s-=t.right;k-=t.bottom;r+=t.left;p+=t.right;A.h+=t.top;A.d+=t.bottom;A.w+=t.left+t.right;A.lw-=t.left;A.rw+=t.right}if(v){x+=v.top+v.bottom;o+=v.left+v.right;s-=v.right;k-=v.bottom;r+=v.left;p+=v.right;A.h+=v.top;A.d+=v.bottom;A.w+=v.left+v.right;A.lw-=v.left;A.rw+=v.right}if(p){w.style.paddingRight=d.Em(p)}var n=d.Element("span",{id:"MathJax-Color-"+this.spanID+d.idPostfix,isMathJax:true,style:{display:"inline-block",backgroundColor:y.mathbackground,width:d.Em(o),height:d.Em(x),verticalAlign:d.Em(k),marginLeft:d.Em(u),marginRight:d.Em(s)}});d.setBorders(n,t);if(A.width){n.style.width=A.width;n.style.marginRight="-"+A.width}if(d.msieInlineBlockAlignBug){n.style.position="relative";n.style.width=n.style.height=0;n.style.verticalAlign=n.style.marginLeft=n.style.marginRight="";n.style.border=n.style.padding="";if(t&&d.msieBorderWidthBug){x+=t.top+t.bottom;o+=t.left+t.right}n.style.width=d.Em(r+z);d.placeBox(d.addElement(n,"span",{noAdjust:true,isMathJax:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",background:(y.mathbackground||"transparent"),width:d.Em(o),height:d.Em(x)}}),u,A.h+z);d.setBorders(n.firstChild,t)}w.parentNode.insertBefore(n,w);if(d.msieColorPositionBug){w.style.position="relative"}return n}return null},HTMLremoveColor:function(){var k=document.getElementById("MathJax-Color-"+this.spanID+d.idPostfix);if(k){k.parentNode.removeChild(k)}},HTMLhandleSpace:function(o){if(this.useMMLspacing){if(this.type!=="mo"){return}var m=this.getValues("scriptlevel","lspace","rspace");if(m.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){var l=this.HTMLgetMu(o);m.lspace=Math.max(0,d.length2em(m.lspace,l));m.rspace=Math.max(0,d.length2em(m.rspace,l));var k=this,n=this.Parent();while(n&&n.isEmbellished()&&n.Core()===k){k=n;n=n.Parent();o=k.HTMLspanElement()}if(m.lspace){o.style.paddingLeft=d.Em(m.lspace)}if(m.rspace){o.style.paddingRight=d.Em(m.rspace)}}}else{var p=this.texSpacing();if(p!==""){p=d.length2em(p,this.HTMLgetScale())/(o.scale||1);if(o.style.paddingLeft){p+=d.unEm(o.style.paddingLeft)}o.style.paddingLeft=d.Em(p)}}},HTMLgetScale:function(){var m=1,k=this.getValues("mathsize","scriptlevel","fontsize");if(this.style){var l=this.HTMLspanElement();if(l.style.fontSize!=""){k.fontsize=l.style.fontSize}}if(k.fontsize&&!this.mathsize){k.mathsize=k.fontsize}if(k.scriptlevel!==0){if(k.scriptlevel>2){k.scriptlevel=2}m=Math.pow(this.Get("scriptsizemultiplier"),k.scriptlevel);k.scriptminsize=d.length2em(this.Get("scriptminsize"));if(m2){l.scriptlevel=2}k=Math.sqrt(Math.pow(l.scriptsizemultiplier,l.scriptlevel))}return k},HTMLgetVariant:function(){var k=this.getValues("mathvariant","fontfamily","fontweight","fontstyle");k.hasVariant=this.Get("mathvariant",true);if(!k.hasVariant){k.family=k.fontfamily;k.weight=k.fontweight;k.style=k.fontstyle}if(this.style){var m=this.HTMLspanElement();if(!k.family&&m.style.fontFamily){k.family=m.style.fontFamily}if(!k.weight&&m.style.fontWeight){k.weight=m.style.fontWeight}if(!k.style&&m.style.fontStyle){k.style=m.style.fontStyle}}if(k.weight&&k.weight.match(/^\d+$/)){k.weight=(parseInt(k.weight)>600?"bold":"normal")}var l=k.mathvariant;if(this.variantForm){l="-"+d.fontInUse+"-variant"}if(k.family&&!k.hasVariant){if(!k.weight&&k.mathvariant.match(/bold/)){k.weight="bold"}if(!k.style&&k.mathvariant.match(/italic/)){k.style="italic"}return{FONTS:[],fonts:[],noRemap:true,defaultFont:{family:k.family,style:k.style,weight:k.weight}}}if(k.weight==="bold"){l={normal:g.VARIANT.BOLD,italic:g.VARIANT.BOLDITALIC,fraktur:g.VARIANT.BOLDFRAKTUR,script:g.VARIANT.BOLDSCRIPT,"sans-serif":g.VARIANT.BOLDSANSSERIF,"sans-serif-italic":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.weight==="normal"){l={bold:g.VARIANT.normal,"bold-italic":g.VARIANT.ITALIC,"bold-fraktur":g.VARIANT.FRAKTUR,"bold-script":g.VARIANT.SCRIPT,"bold-sans-serif":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.SANSSERIFITALIC}[l]||l}}if(k.style==="italic"){l={normal:g.VARIANT.ITALIC,bold:g.VARIANT.BOLDITALIC,"sans-serif":g.VARIANT.SANSSERIFITALIC,"bold-sans-serif":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.style==="normal"){l={italic:g.VARIANT.NORMAL,"bold-italic":g.VARIANT.BOLD,"sans-serif-italic":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.BOLDSANSSERIF}[l]||l}}if(!(l in d.FONTDATA.VARIANT)){l="normal"}return d.FONTDATA.VARIANT[l]}},{HTMLautoload:function(){var k=d.autoloadDir+"/"+this.type+".js";b.RestartAfter(h.Require(k))},HTMLautoloadFile:function(k){var l=d.autoloadDir+"/"+k+".js";b.RestartAfter(h.Require(l))},HTMLstretchH:function(l,k){this.HTMLremoveColor();return this.toHTML(l,k)},HTMLstretchV:function(l,k,m){this.HTMLremoveColor();return this.toHTML(l,k,m)}});g.chars.Augment({toHTML:function(n,m,l,o){var r=this.data.join("").replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.entity.Augment({toHTML:function(n,m,l,o){var r=this.toString().replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.mi.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lp.w&&q.length===1&&!n.noIC){p.ic=p.rw-p.w;d.createBlank(o,p.ic);p.w=p.rw}this.HTMLhandleSpace(o);this.HTMLhandleColor(o);return o}});g.mn.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lu.bbox.w){u.bbox.ic=u.bbox.rw-u.bbox.w;d.createBlank(u,u.bbox.ic);u.bbox.w=u.bbox.rw}}this.HTMLhandleSpace(u);this.HTMLhandleColor(u);return u},CoreParent:function(){var k=this;while(k&&k.isEmbellished()&&k.CoreMO()===this&&!k.isa(g.math)){k=k.Parent()}return k},CoreText:function(k){if(!k){return""}if(k.isEmbellished()){return k.CoreMO().data.join("")}while((k.isa(g.mrow)||k.isa(g.TeXAtom)||k.isa(g.mstyle)||k.isa(g.mphantom))&&k.data.length===1&&k.data[0]){k=k.data[0]}if(!k.isToken){return""}else{return k.data.join("")}},HTMLremapChars:{"*":"\u2217",'"':"\u2033","\u00B0":"\u2218","\u00B2":"2","\u00B3":"3","\u00B4":"\u2032","\u00B9":"1"},HTMLremap:function(l,k){l=l.replace(/-/g,"\u2212");if(k){l=l.replace(/'/g,"\u2032").replace(/`/g,"\u2035");if(l.length===1){l=k[l]||l}}return l},HTMLcanStretch:function(n){if(!this.Get("stretchy")){return false}var o=this.data.join("");if(o.length>1){return false}var l=this.CoreParent();if(l&&l.isa(g.munderover)&&this.CoreText(l.data[l.base]).length===1){var m=l.data[l.over],k=l.data[l.under];if(m&&this===m.CoreMO()&&l.Get("accent")){o=d.FONTDATA.REMAPACCENT[o]||o}else{if(k&&this===k.CoreMO()&&l.Get("accentunder")){o=d.FONTDATA.REMAPACCENTUNDER[o]||o}}}o=d.FONTDATA.DELIMITERS[o.charCodeAt(0)];return(o&&o.dir==n.substr(0,1))},HTMLstretchV:function(m,n,o){this.HTMLremoveColor();var r=this.getValues("symmetric","maxsize","minsize");var p=this.HTMLspanElement(),s=this.HTMLgetMu(p),q;var k=d.TeX.axis_height,l=p.scale;if(r.symmetric){q=2*Math.max(n-k,o+k)}else{q=n+o}r.maxsize=d.length2em(r.maxsize,s,p.bbox.h+p.bbox.d);r.minsize=d.length2em(r.minsize,s,p.bbox.h+p.bbox.d);q=Math.max(r.minsize,Math.min(r.maxsize,q));p=this.HTMLcreateSpan(m);d.createDelimiter(p,this.data.join("").charCodeAt(0),q,l);if(r.symmetric){q=(p.bbox.h+p.bbox.d)/2+k}else{q=(p.bbox.h+p.bbox.d)*n/(n+o)}d.positionDelimiter(p,q);this.HTMLhandleSpace(p);this.HTMLhandleColor(p);return p},HTMLstretchH:function(o,k){this.HTMLremoveColor();var m=this.getValues("maxsize","minsize","mathvariant","fontweight");if((m.fontweight==="bold"||parseInt(m.fontweight)>=600)&&!this.Get("mathvariant",true)){m.mathvariant=g.VARIANT.BOLD}var n=this.HTMLspanElement(),l=this.HTMLgetMu(n),p=n.scale;m.maxsize=d.length2em(m.maxsize,l,n.bbox.w);m.minsize=d.length2em(m.minsize,l,n.bbox.w);k=Math.max(m.minsize,Math.min(m.maxsize,k));n=this.HTMLcreateSpan(o);d.createDelimiter(n,this.data.join("").charCodeAt(0),k,p,m.mathvariant);this.HTMLhandleSpace(n);this.HTMLhandleColor(n);return n}});g.mtext.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));var n=this.HTMLgetVariant();if(d.config.mtextFontInherit||this.Parent().type==="merror"){n={bold:n.bold,italic:n.italic,fontInherit:true}}for(var l=0,k=this.data.length;ld.linebreakWidth)||this.hasNewline()},HTMLstretchH:function(m,k){this.HTMLremoveColor();var l=this.HTMLspanElement();this.data[this.core].HTMLstretchH(l,k);this.HTMLcomputeBBox(l,true);this.HTMLhandleColor(l);return l},HTMLstretchV:function(m,l,n){this.HTMLremoveColor();var k=this.HTMLspanElement();this.data[this.core].HTMLstretchV(k,l,n);this.HTMLcomputeBBox(k,true);this.HTMLhandleColor(k);return k}});g.mstyle.Augment({toHTML:function(l,k,m){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){var n=this.data[0].toHTML(l);if(m!=null){this.data[0].HTMLstretchV(l,k,m)}else{if(k!=null){this.data[0].HTMLstretchH(l,k)}}l.bbox=n.bbox}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mfrac.Augment({toHTML:function(D){D=this.HTMLcreateSpan(D);var m=d.createStack(D);var r=d.createBox(m),o=d.createBox(m);d.MeasureSpans([this.HTMLboxChild(0,r),this.HTMLboxChild(1,o)]);var k=this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled");var I=this.HTMLgetScale(),C=k.displaystyle;var G=d.TeX.axis_height*I;if(k.bevelled){var F=(C?0.4:0.15);var s=Math.max(r.bbox.h+r.bbox.d,o.bbox.h+o.bbox.d)+2*F;var E=d.createBox(m);d.createDelimiter(E,47,s);d.placeBox(r,0,(r.bbox.d-r.bbox.h)/2+G+F);d.placeBox(E,r.bbox.w-F/2,(E.bbox.d-E.bbox.h)/2+G);d.placeBox(o,r.bbox.w+E.bbox.w-F,(o.bbox.d-o.bbox.h)/2+G-F)}else{var l=Math.max(r.bbox.w,o.bbox.w);var y=d.thickness2em(k.linethickness,I),A,z,x,w;var B=d.TeX.min_rule_thickness/this.em;if(C){x=d.TeX.num1;w=d.TeX.denom1}else{x=(y===0?d.TeX.num3:d.TeX.num2);w=d.TeX.denom2}x*=I;w*=I;if(y===0){A=Math.max((C?7:3)*d.TeX.rule_thickness,2*B);z=(x-r.bbox.d)-(o.bbox.h-w);if(zy){l=((s.bbox.h+s.bbox.d)-(y-A))/2}var B=d.FONTDATA.DELIMITERS[d.FONTDATA.RULECHAR];if(!B||oK){K=r[M].bbox.w}if(!N[M]&&K>n){n=K}}}if(F==null&&H!=null){n=H}else{if(n==-d.BIGDIMEN){n=K}}for(M=K=0,I=this.data.length;MK){K=w.bbox.w}}}var E=d.TeX.rule_thickness,G=d.FONTDATA.TeX_factor;var p=r[this.base]||{bbox:this.HTMLzeroBBox()};var v,s,A,z,u,C,J,O=0;if(p.bbox.ic){O=1.3*p.bbox.ic+0.05}for(M=0,I=this.data.length;M0){z+=F;y-=F}}d.placeBox(k,o.bbox.w+M,Math.max(z,J.superscriptshift));d.placeBox(x,o.bbox.w,-Math.max(y,J.subscriptshift))}}this.HTMLhandleSpace(K);this.HTMLhandleColor(K);return K},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mmultiscripts.Augment({toHTML:g.mbase.HTMLautoload});g.mtable.Augment({toHTML:g.mbase.HTMLautoload});g["annotation-xml"].Augment({toHTML:g.mbase.HTMLautoload});g.math.Augment({toHTML:function(u,l){var r=this.Get("alttext");if(r&&r!==""){l.setAttribute("aria-label",r)}var m=d.addElement(u,"nobr",{isMathJax:true});u=this.HTMLcreateSpan(m);var s=d.createStack(u),n=d.createBox(s),t;s.style.fontSize=m.parentNode.style.fontSize;m.parentNode.style.fontSize="";if(this.data[0]!=null){if(d.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}g.mbase.prototype.displayAlign=b.config.displayAlign;g.mbase.prototype.displayIndent=b.config.displayIndent;var o=this.data[0].toHTML(n);o.bbox.exactW=false;t=d.Measured(o,n)}d.placeBox(n,0,0);u.style.width=d.Em((Math.round(t.bbox.w*this.em)+0.25)/d.outerEm);u.style.display="inline-block";var k=1/d.em,q=d.em/d.outerEm;d.em/=q;u.bbox.h*=q;u.bbox.d*=q;u.bbox.w*=q;u.bbox.lw*=q;u.bbox.rw*=q;if(t&&t.bbox.width!=null){u.style.minWidth=(t.bbox.minWidth||u.style.width);u.style.width=s.style.width=t.bbox.width;n.style.width="100%"}this.HTMLhandleColor(u);if(t){d.createRule(u,(t.bbox.h+k)*q,(t.bbox.d+k)*q,0)}if(!this.isMultiline&&this.Get("display")==="block"&&u.bbox.width==null){var v=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(v.indentalignfirst!==g.INDENTALIGN.INDENTALIGN){v.indentalign=v.indentalignfirst}if(v.indentalign===g.INDENTALIGN.AUTO){v.indentalign=this.displayAlign}l.style.textAlign=v.indentalign;if(v.indentshiftfirst!==g.INDENTSHIFT.INDENTSHIFT){v.indentshift=v.indentshiftfirst}if(v.indentshift==="auto"){v.indentshift=this.displayIndent}if(v.indentshift&&v.indentalign!==g.INDENTALIGN.CENTER){u.style[{left:"marginLeft",right:"marginRight"}[v.indentalign]]=d.Em(d.length2em(v.indentshift))}}return u},HTMLspanElement:g.mbase.prototype.HTMLspanElement});g.TeXAtom.Augment({toHTML:function(l){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){if(this.texClass===g.TEXCLASS.VCENTER){var k=d.createStack(l);var m=d.createBox(k);d.Measured(this.data[0].toHTML(m),m);d.placeBox(m,0,d.TeX.axis_height-(m.bbox.h+m.bbox.d)/2+m.bbox.d)}else{l.bbox=this.data[0].toHTML(l).bbox}}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",d,"jax.js"]),0)})});b.Register.StartupHook("End Config",function(){b.Browser.Select({MSIE:function(k){var o=(document.documentMode||0);var n=k.versionAtLeast("7.0");var m=k.versionAtLeast("8.0")&&o>7;var l=(document.compatMode==="BackCompat");if(o<9){d.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";d.config.styles[".MathJax .MathJax_HitBox"].opacity=0;d.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)"}d.Augment({PaddingWidthBug:true,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:l,msieDisappearingBug:(o>=8),msieMarginScaleBug:(o<8),msiePaddingWidthBug:true,msieBorderWidthBug:l,msieFrameSizeBug:(o<=8),msieInlineBlockAlignBug:(!m||l),msiePlaceBoxBug:(m&&!l),msieClipRectBug:!m,msieNegativeSpaceBug:l,cloneNodeBug:(m&&k.version==="8.0"),initialSkipBug:(o<8),msieNegativeBBoxBug:(o>=8),msieIE6:!n,msieItalicWidthBug:true,FontFaceBug:true,msieFontCSSBug:k.isIE9,allowWebFonts:(o>=9?"woff":"eot")})},Firefox:function(l){var m=false;if(l.versionAtLeast("3.5")){var k=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||b.config.root.match(/^https?:\/\//)||(b.config.root+"/").substr(0,k.length)===k){m="otf"}}d.Augment({ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:m})},Safari:function(p){var n=p.versionAtLeast("3.0");var m=p.versionAtLeast("3.1");var k=navigator.appVersion.match(/ Safari\/\d/)&&navigator.appVersion.match(/ Version\/\d/)&&navigator.vendor.match(/Apple/);var l=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var q=(m&&p.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!p.versionAtLeast("5.0"))||(l!=null&&(l[1]<2||(l[1]==2&&l[2]<2)))));d.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!m,safariTextNodeBug:!n,forceReflow:true,allowWebFonts:(m&&!q?"otf":false)});if(k){d.Augment({webFontDefault:(p.isMobile?"sans-serif":"serif")})}if(p.isPC){d.Augment({adjustAvailableFonts:d.removeSTIXfonts,checkWebFontsTwice:true})}if(q){var o=b.config["HTML-CSS"];if(o){o.availableFonts=[];o.preferredFont=null}else{b.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(k){d.Augment({Em:d.EmRounded,cloneNodeBug:true,rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariWebFontSerif:[""],forceReflow:true,allowWebFonts:(k.versionAtLeast("4.0")?"otf":"svg")})},Opera:function(k){k.isMini=(navigator.appVersion.match("Opera Mini")!=null);d.config.styles[".MathJax .merror"]["vertical-align"]=null;d.config.styles[".MathJax span"]["z-index"]=0;d.Augment({operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:k.versionAtLeast("10.61"),initialSkipBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(k.versionAtLeast("10.0")&&!k.isMini?"otf":false),adjustAvailableFonts:d.removeSTIXfonts})},Konqueror:function(k){d.Augment({konquerorVerticalAlignBug:true})}})});MathJax.Hub.Register.StartupHook("End Cookie",function(){if(b.config.menuSettings.zoom!=="None"){h.Require("[MathJax]/extensions/MathZoom.js")}})})(MathJax.Ajax,MathJax.Hub,MathJax.OutputJax["HTML-CSS"]); - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];a.mtable.Augment({toHTML:function(t){t=this.HTMLcreateSpan(t);if(this.data.length===0){return t}var K=this.getValues("columnalign","rowalign","columnspacing","rowspacing","columnwidth","equalcolumns","equalrows","columnlines","rowlines","frame","framespacing","align","useHeight","width","side","minlabelspacing");var aJ=K.width.match(/%$/);var ay=b.createStack(t);var aG=this.HTMLgetScale(),aA=this.HTMLgetMu(t),aB=-1;var aq=[],au=[],ak=[],aw=[],av=[],af,ae,ap=-1,ad,ao,Z,aF,R,aC,aO=[];var al=b.FONTDATA.baselineskip*aG*K.useHeight,aT,I=b.FONTDATA.lineH*aG,O=b.FONTDATA.lineD*aG;for(af=0,ad=this.data.length;afap){ap=ae}av[ae]=b.createStack(b.createBox(ay));ak[ae]=-b.BIGDIMEN}aw[af][ae]=b.createBox(av[ae]);aO.push(aF.data[ae-Z].toHTML(aw[af][ae]))}}b.MeasureSpans(aO);for(af=0,ad=this.data.length;afaq[ae]){aq[ae]=aS*aL.h/aT}if(aS*aL.d/aT>au[ae]){au[ae]=aS*aL.d/aT}}}else{if(aC.HTMLcanStretch("Horizontal")){aS=b.length2em(aS,aA,aL.w);if(aS>ak[ae]){ak[ae]=aS}}}}}if(aw[af][ae].bbox.h>aq[af]){aq[af]=aw[af][ae].bbox.h}if(aw[af][ae].bbox.d>au[af]){au[af]=aw[af][ae].bbox.d}if(aw[af][ae].bbox.w>ak[ae]){ak[ae]=aw[af][ae].bbox.w}}}if(aq[0]+au[0]){aq[0]=Math.max(aq[0],I)}if(aq[aw.length-1]+au[aw.length-1]){au[aw.length-1]=Math.max(au[aw.length-1],O)}var aE=MathJax.Hub.SplitList;var az=aE(K.columnspacing),aQ=aE(K.rowspacing),e=aE(K.columnalign),E=aE(K.rowalign),d=aE(K.columnlines),z=aE(K.rowlines),aM=aE(K.columnwidth),V=[];for(af=0,ad=az.length;afaw.length){ab=aw.length}}aj=0;aU=-(aT+aH)+aq[0];for(af=0,ad=ab-1;af0.98){S=0.98/ag;ag=0.98}}else{if(K.width==="auto"){if(ag>0.98){S=L/(B+L);ac=B+L}else{ac=B/(1-ag)}}else{ac=b.length2em(K.width,aA);for(af=0,ad=Math.min(ap+1,az.length);af0.01){if(ah&&ac>B){ac=(ac-B)/ah;for(af=0,ad=at.length;af=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -(function(d,h,l,g,m,b,j){var q="2.2";var i=MathJax.Extension;var c=i.MathEvents={version:q};var k=d.config.menuSettings;var p={hover:500,frame:{x:3.5,y:5,bwidth:1,bcolor:"#A6D",hwidth:"15px",hcolor:"#83A"},button:{x:-4,y:-3,wx:-2,src:l.fileURL(b.imageDir+"/MenuArrow-15.png")},fadeinInc:0.2,fadeoutInc:0.05,fadeDelay:50,fadeoutStart:400,fadeoutDelay:15*1000,styles:{".MathJax_Hover_Frame":{"border-radius":".25em","-webkit-border-radius":".25em","-moz-border-radius":".25em","-khtml-border-radius":".25em","box-shadow":"0px 0px 15px #83A","-webkit-box-shadow":"0px 0px 15px #83A","-moz-box-shadow":"0px 0px 15px #83A","-khtml-box-shadow":"0px 0px 15px #83A",border:"1px solid #A6D ! important",display:"inline-block",position:"absolute"},".MathJax_Hover_Arrow":{position:"absolute",width:"15px",height:"11px",cursor:"pointer"}}};var n=c.Event={LEFTBUTTON:0,RIGHTBUTTON:2,MENUKEY:"altKey",Mousedown:function(r){return n.Handler(r,"Mousedown",this)},Mouseup:function(r){return n.Handler(r,"Mouseup",this)},Mousemove:function(r){return n.Handler(r,"Mousemove",this)},Mouseover:function(r){return n.Handler(r,"Mouseover",this)},Mouseout:function(r){return n.Handler(r,"Mouseout",this)},Click:function(r){return n.Handler(r,"Click",this)},DblClick:function(r){return n.Handler(r,"DblClick",this)},Menu:function(r){return n.Handler(r,"ContextMenu",this)},Handler:function(u,s,t){if(l.loadingMathMenu){return n.False(u)}var r=b[t.jaxID];if(!u){u=window.event}u.isContextMenu=(s==="ContextMenu");if(r[s]){return r[s](u,t)}if(i.MathZoom){return i.MathZoom.HandleEvent(u,s,t)}},False:function(r){if(!r){r=window.event}if(r){if(r.preventDefault){r.preventDefault()}if(r.stopPropagation){r.stopPropagation()}r.cancelBubble=true;r.returnValue=false}return false},ContextMenu:function(s,A,v){var x=b[A.jaxID],u=x.getJaxFromMath(A);var B=(x.config.showMathMenu!=null?x:d).config.showMathMenu;if(!B||(k.context!=="MathJax"&&!v)){return}if(c.msieEventBug){s=window.event||s}n.ClearSelection();f.ClearHoverTimer();if(u.hover){if(u.hover.remove){clearTimeout(u.hover.remove);delete u.hover.remove}u.hover.nofade=true}var t=MathJax.Menu;var C,z;if(t){if(t.loadingDomain){return n.False(s)}C=m.loadDomain("MathMenu");if(!C){t.jax=u;var r=t.menu.Find("Show Math As").menu;r.items[0].name=u.sourceMenuTitle;r.items[0].format=(u.sourceMenuFormat||"MathML");r.items[1].name=j[u.inputJax].sourceMenuTitle;var w=t.menu.Find("Math Settings","MathPlayer");w.hidden=!(u.outputJax==="NativeMML"&&d.Browser.hasMathPlayer);return t.menu.Post(s)}t.loadingDomain=true;z=function(){delete t.loadingDomain}}else{if(l.loadingMathMenu){return n.False(s)}l.loadingMathMenu=true;C=l.Require("[MathJax]/extensions/MathMenu.js");z=function(){delete l.loadingMathMenu;if(!MathJax.Menu){MathJax.Menu={}}}}var y={pageX:s.pageX,pageY:s.pageY,clientX:s.clientX,clientY:s.clientY};g.Queue(C,z,["ContextMenu",n,y,A,v]);return n.False(s)},AltContextMenu:function(t,s){var u=b[s.jaxID];var r=(u.config.showMathMenu!=null?u:d).config.showMathMenu;if(r){r=(u.config.showMathMenuMSIE!=null?u:d).config.showMathMenuMSIE;if(k.context==="MathJax"&&!k.mpContext&&r){if(!c.noContextMenuBug||t.button!==n.RIGHTBUTTON){return}}else{if(!t[n.MENUKEY]||t.button!==n.LEFTBUTTON){return}}return u.ContextMenu(t,s,true)}},ClearSelection:function(){if(c.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(document.selection){setTimeout("document.selection.empty()",0)}},getBBox:function(t){t.appendChild(c.topImg);var s=c.topImg.offsetTop,u=t.offsetHeight-s,r=t.offsetWidth;t.removeChild(c.topImg);return{w:r,h:s,d:u}}};var f=c.Hover={Mouseover:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.ReHover(r)}else{f.HoverTimer(r,s)}return n.False(t)}}},Mouseout:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.UnHover(r)}else{f.ClearHoverTimer()}return n.False(t)}}},Mousemove:function(t,s){if(k.discoverable||k.zoom==="Hover"){var r=this.getJaxFromMath(s);if(r.hover){return}if(f.lastX==t.clientX&&f.lastY==t.clientY){return}f.lastX=t.clientX;f.lastY=t.clientY;f.HoverTimer(r,s);return n.False(t)}},HoverTimer:function(r,s){this.ClearHoverTimer();this.hoverTimer=setTimeout(g(["Hover",this,r,s]),p.hover)},ClearHoverTimer:function(){if(this.hoverTimer){clearTimeout(this.hoverTimer);delete this.hoverTimer}},Hover:function(r,v){if(i.MathZoom&&i.MathZoom.Hover({},v)){return}var u=b[r.outputJax],w=u.getHoverSpan(r,v),z=u.getHoverBBox(r,w,v),x=(u.config.showMathMenu!=null?u:d).config.showMathMenu;var B=p.frame.x,A=p.frame.y,y=p.frame.bwidth;if(c.msieBorderWidthBug){y=0}r.hover={opacity:0,id:r.inputID+"-Hover"};var s=h.Element("span",{id:r.hover.id,isMathJax:true,style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{className:"MathJax_Hover_Frame",isMathJax:true,style:{display:"inline-block",position:"absolute",top:this.Px(-z.h-A-y-(z.y||0)),left:this.Px(-B-y+(z.x||0)),width:this.Px(z.w+2*B),height:this.Px(z.h+z.d+2*A),opacity:0,filter:"alpha(opacity=0)"}}]]);var t=h.Element("span",{isMathJax:true,id:r.hover.id+"Menu",style:{display:"inline-block","z-index":1,width:0,height:0,position:"relative"}},[["img",{className:"MathJax_Hover_Arrow",isMathJax:true,math:v,src:p.button.src,onclick:this.HoverMenu,jax:u.id,style:{left:this.Px(z.w+B+y+(z.x||0)+p.button.x),top:this.Px(-z.h-A-y-(z.y||0)-p.button.y),opacity:0,filter:"alpha(opacity=0)"}}]]);if(z.width){s.style.width=t.style.width=z.width;s.style.marginRight=t.style.marginRight="-"+z.width;s.firstChild.style.width=z.width;t.firstChild.style.left="";t.firstChild.style.right=this.Px(p.button.wx)}w.parentNode.insertBefore(s,w);if(x){w.parentNode.insertBefore(t,w)}if(w.style){w.style.position="relative"}this.ReHover(r)},ReHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}r.hover.remove=setTimeout(g(["UnHover",this,r]),p.fadeoutDelay);this.HoverFadeTimer(r,p.fadeinInc)},UnHover:function(r){if(!r.hover.nofade){this.HoverFadeTimer(r,-p.fadeoutInc,p.fadeoutStart)}},HoverFade:function(r){delete r.hover.timer;r.hover.opacity=Math.max(0,Math.min(1,r.hover.opacity+r.hover.inc));r.hover.opacity=Math.floor(1000*r.hover.opacity)/1000;var t=document.getElementById(r.hover.id),s=document.getElementById(r.hover.id+"Menu");t.firstChild.style.opacity=r.hover.opacity;t.firstChild.style.filter="alpha(opacity="+Math.floor(100*r.hover.opacity)+")";if(s){s.firstChild.style.opacity=r.hover.opacity;s.firstChild.style.filter=t.style.filter}if(r.hover.opacity===1){return}if(r.hover.opacity>0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(c,d){var a;var b=function(e){return MathJax.Localization._.apply(MathJax.Localization,[["MathML",e]].concat([].slice.call(arguments,1)))};c.Parse=MathJax.Object.Subclass({Init:function(e){this.Parse(e)},Parse:function(g){var h;if(typeof g!=="string"){h=g.parentNode}else{h=c.ParseXML(this.preProcessMath.call(this,g));if(h==null){c.Error(["ErrorParsingMathML","Error parsing MathML"])}}var f=h.getElementsByTagName("parsererror")[0];if(f){c.Error(["ParsingError","Error parsing MathML: %1",f.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,"")])}if(h.childNodes.length!==1){c.Error(["MathMLSingleElement","MathML must be formed by a single element"])}if(h.firstChild.nodeName.toLowerCase()==="html"){var e=h.getElementsByTagName("h1")[0];if(e&&e.textContent==="XML parsing error"&&e.nextSibling){c.Error(["ParsingError","Error parsing MathML: %1",String(e.nextSibling.nodeValue).replace(/fatal parsing error: /,"")])}}if(h.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")!=="math"){c.Error(["MathMLRootElement","MathML must be formed by a element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.2",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -(function(d,h,l,g,m,b,j){var q="2.2";var i=MathJax.Extension;var c=i.MathEvents={version:q};var k=d.config.menuSettings;var p={hover:500,frame:{x:3.5,y:5,bwidth:1,bcolor:"#A6D",hwidth:"15px",hcolor:"#83A"},button:{x:-4,y:-3,wx:-2,src:l.fileURL(b.imageDir+"/MenuArrow-15.png")},fadeinInc:0.2,fadeoutInc:0.05,fadeDelay:50,fadeoutStart:400,fadeoutDelay:15*1000,styles:{".MathJax_Hover_Frame":{"border-radius":".25em","-webkit-border-radius":".25em","-moz-border-radius":".25em","-khtml-border-radius":".25em","box-shadow":"0px 0px 15px #83A","-webkit-box-shadow":"0px 0px 15px #83A","-moz-box-shadow":"0px 0px 15px #83A","-khtml-box-shadow":"0px 0px 15px #83A",border:"1px solid #A6D ! important",display:"inline-block",position:"absolute"},".MathJax_Hover_Arrow":{position:"absolute",width:"15px",height:"11px",cursor:"pointer"}}};var n=c.Event={LEFTBUTTON:0,RIGHTBUTTON:2,MENUKEY:"altKey",Mousedown:function(r){return n.Handler(r,"Mousedown",this)},Mouseup:function(r){return n.Handler(r,"Mouseup",this)},Mousemove:function(r){return n.Handler(r,"Mousemove",this)},Mouseover:function(r){return n.Handler(r,"Mouseover",this)},Mouseout:function(r){return n.Handler(r,"Mouseout",this)},Click:function(r){return n.Handler(r,"Click",this)},DblClick:function(r){return n.Handler(r,"DblClick",this)},Menu:function(r){return n.Handler(r,"ContextMenu",this)},Handler:function(u,s,t){if(l.loadingMathMenu){return n.False(u)}var r=b[t.jaxID];if(!u){u=window.event}u.isContextMenu=(s==="ContextMenu");if(r[s]){return r[s](u,t)}if(i.MathZoom){return i.MathZoom.HandleEvent(u,s,t)}},False:function(r){if(!r){r=window.event}if(r){if(r.preventDefault){r.preventDefault()}if(r.stopPropagation){r.stopPropagation()}r.cancelBubble=true;r.returnValue=false}return false},ContextMenu:function(s,A,v){var x=b[A.jaxID],u=x.getJaxFromMath(A);var B=(x.config.showMathMenu!=null?x:d).config.showMathMenu;if(!B||(k.context!=="MathJax"&&!v)){return}if(c.msieEventBug){s=window.event||s}n.ClearSelection();f.ClearHoverTimer();if(u.hover){if(u.hover.remove){clearTimeout(u.hover.remove);delete u.hover.remove}u.hover.nofade=true}var t=MathJax.Menu;var C,z;if(t){if(t.loadingDomain){return n.False(s)}C=m.loadDomain("MathMenu");if(!C){t.jax=u;var r=t.menu.Find("Show Math As").menu;r.items[0].name=u.sourceMenuTitle;r.items[0].format=(u.sourceMenuFormat||"MathML");r.items[1].name=j[u.inputJax].sourceMenuTitle;var w=t.menu.Find("Math Settings","MathPlayer");w.hidden=!(u.outputJax==="NativeMML"&&d.Browser.hasMathPlayer);return t.menu.Post(s)}t.loadingDomain=true;z=function(){delete t.loadingDomain}}else{if(l.loadingMathMenu){return n.False(s)}l.loadingMathMenu=true;C=l.Require("[MathJax]/extensions/MathMenu.js");z=function(){delete l.loadingMathMenu;if(!MathJax.Menu){MathJax.Menu={}}}}var y={pageX:s.pageX,pageY:s.pageY,clientX:s.clientX,clientY:s.clientY};g.Queue(C,z,["ContextMenu",n,y,A,v]);return n.False(s)},AltContextMenu:function(t,s){var u=b[s.jaxID];var r=(u.config.showMathMenu!=null?u:d).config.showMathMenu;if(r){r=(u.config.showMathMenuMSIE!=null?u:d).config.showMathMenuMSIE;if(k.context==="MathJax"&&!k.mpContext&&r){if(!c.noContextMenuBug||t.button!==n.RIGHTBUTTON){return}}else{if(!t[n.MENUKEY]||t.button!==n.LEFTBUTTON){return}}return u.ContextMenu(t,s,true)}},ClearSelection:function(){if(c.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(document.selection){setTimeout("document.selection.empty()",0)}},getBBox:function(t){t.appendChild(c.topImg);var s=c.topImg.offsetTop,u=t.offsetHeight-s,r=t.offsetWidth;t.removeChild(c.topImg);return{w:r,h:s,d:u}}};var f=c.Hover={Mouseover:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.ReHover(r)}else{f.HoverTimer(r,s)}return n.False(t)}}},Mouseout:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.UnHover(r)}else{f.ClearHoverTimer()}return n.False(t)}}},Mousemove:function(t,s){if(k.discoverable||k.zoom==="Hover"){var r=this.getJaxFromMath(s);if(r.hover){return}if(f.lastX==t.clientX&&f.lastY==t.clientY){return}f.lastX=t.clientX;f.lastY=t.clientY;f.HoverTimer(r,s);return n.False(t)}},HoverTimer:function(r,s){this.ClearHoverTimer();this.hoverTimer=setTimeout(g(["Hover",this,r,s]),p.hover)},ClearHoverTimer:function(){if(this.hoverTimer){clearTimeout(this.hoverTimer);delete this.hoverTimer}},Hover:function(r,v){if(i.MathZoom&&i.MathZoom.Hover({},v)){return}var u=b[r.outputJax],w=u.getHoverSpan(r,v),z=u.getHoverBBox(r,w,v),x=(u.config.showMathMenu!=null?u:d).config.showMathMenu;var B=p.frame.x,A=p.frame.y,y=p.frame.bwidth;if(c.msieBorderWidthBug){y=0}r.hover={opacity:0,id:r.inputID+"-Hover"};var s=h.Element("span",{id:r.hover.id,isMathJax:true,style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{className:"MathJax_Hover_Frame",isMathJax:true,style:{display:"inline-block",position:"absolute",top:this.Px(-z.h-A-y-(z.y||0)),left:this.Px(-B-y+(z.x||0)),width:this.Px(z.w+2*B),height:this.Px(z.h+z.d+2*A),opacity:0,filter:"alpha(opacity=0)"}}]]);var t=h.Element("span",{isMathJax:true,id:r.hover.id+"Menu",style:{display:"inline-block","z-index":1,width:0,height:0,position:"relative"}},[["img",{className:"MathJax_Hover_Arrow",isMathJax:true,math:v,src:p.button.src,onclick:this.HoverMenu,jax:u.id,style:{left:this.Px(z.w+B+y+(z.x||0)+p.button.x),top:this.Px(-z.h-A-y-(z.y||0)-p.button.y),opacity:0,filter:"alpha(opacity=0)"}}]]);if(z.width){s.style.width=t.style.width=z.width;s.style.marginRight=t.style.marginRight="-"+z.width;s.firstChild.style.width=z.width;t.firstChild.style.left="";t.firstChild.style.right=this.Px(p.button.wx)}w.parentNode.insertBefore(s,w);if(x){w.parentNode.insertBefore(t,w)}if(w.style){w.style.position="relative"}this.ReHover(r)},ReHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}r.hover.remove=setTimeout(g(["UnHover",this,r]),p.fadeoutDelay);this.HoverFadeTimer(r,p.fadeinInc)},UnHover:function(r){if(!r.hover.nofade){this.HoverFadeTimer(r,-p.fadeoutInc,p.fadeoutStart)}},HoverFade:function(r){delete r.hover.timer;r.hover.opacity=Math.max(0,Math.min(1,r.hover.opacity+r.hover.inc));r.hover.opacity=Math.floor(1000*r.hover.opacity)/1000;var t=document.getElementById(r.hover.id),s=document.getElementById(r.hover.id+"Menu");t.firstChild.style.opacity=r.hover.opacity;t.firstChild.style.filter="alpha(opacity="+Math.floor(100*r.hover.opacity)+")";if(s){s.firstChild.style.opacity=r.hover.opacity;s.firstChild.style.filter=t.style.filter}if(r.hover.opacity===1){return}if(r.hover.opacity>0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g span":{"text-align":o+"!important"}})}if(!this.require){this.require=[]}this.require.push(MathJax.OutputJax.extensionDir+"/MathEvents.js")},Startup:function(){h=MathJax.Extension.MathEvents.Event;b=MathJax.Extension.MathEvents.Touch;d=MathJax.Extension.MathEvents.Hover;this.ContextMenu=h.ContextMenu;this.Mousedown=h.AltContextMenu;this.Mouseover=d.Mouseover;this.Mouseout=d.Mouseout;this.Mousemove=d.Mousemove;if(!i){this.EmExSpan=e.Element("span",{style:{position:"absolute","font-size-adjust":"none"}},[["div",{className:"MathJax_mmlExBox"}],["span",{className:"MathJax_MathML"}]]);f.math(f.mspace().With({width:"60ex"})).toNativeMML(this.EmExSpan.lastChild)}return g.Styles(this.config.styles)},InitializeMML:function(){this.initialized=true;if(i){try{if(!c.Browser.mpNamespace){var m=document.createElement("object");m.id="mathplayer";m.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(m);document.namespaces.add("m","http://www.w3.org/1998/Math/MathML");c.Browser.mpNamespace=true}if(!c.Browser.mpImported){document.namespaces.m.doImport("#mathplayer");c.Browser.mpImported=true}}catch(n){alert(MathJax.Localization._(["MathML","MathPlayer"],"MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics."))}}else{document.body.appendChild(this.EmExSpan);this.defaultEx=this.EmExSpan.firstChild.offsetWidth/60;this.defaultMEx=this.EmExSpan.lastChild.offsetWidth/60;document.body.removeChild(this.EmExSpan)}},preTranslate:function(o){var t=o.jax[this.id],u,p=t.length,y,r,A,w,z,n,v,s,q;for(u=0;u1?v/s:1)*this.config.scale;q=Math.floor(Math.max(this.config.minScaleAdjust/100,q));n.NativeMML.ex=v}else{q=100}n.NativeMML.fontSize=q+"%"}if(!i){for(u=0;ut){t=o;u.style.width=t+"px"}}if(this.msieIE8HeightBug){u.style.position=""}return{Y:-h.getBBox(u.parentNode).h,mW:p,mH:v,zW:t,zH:q}},NAMEDSPACE:{negativeveryverythinmathspace:"-.0556em",negativeverythinmathspace:"-.1111em",negativethinmathspace:"-.1667em",negativemediummathspace:"-.2222em",negativethickmathspace:"-.2778em",negativeverythickmathspace:"-.3333em",negativeveryverythickmathspace:"-.3889em"}});c.Register.StartupHook("mml Jax Ready",function(){f=MathJax.ElementJax.mml;f.mbase.Augment({toNativeMML:function(r){var p=this.NativeMMLelement(this.type);this.NativeMMLattributes(p);for(var q=0,o=this.data.length;q1){o=this.NativeMMLelement("mrow");s.appendChild(q);s=q}for(;r0;u--){q.separators.push(v)}}}var o=this.NativeMMLelement(t?this.type:"mrow");this.NativeMMLattributes(o);o.removeAttribute("separators");if(t){o.setAttribute("open",q.open);o.setAttribute("close",q.close);if(this.data.length>1){w.appendChild(o);w=o;o=this.NativeMMLelement("mrow")}}else{o.removeAttribute("open");o.removeAttribute("close")}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.open;o.appendChild(r)}for(u=0,p=this.data.length;u0){r=this.NativeMMLelement("mo");r.setAttribute("separator","true");r.textContent=q.separators[u-1];o.appendChild(r)}if(this.data[u]){this.data[u].toNativeMML(o)}else{o.appendChild(this.NativeMMLelement("mrow"))}}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.close;o.appendChild(r)}w.appendChild(o)}});f.TeXAtom.Augment({toNativeMML:function(p){var o=this.NativeMMLelement("mrow");this.NativeMMLattributes(o);this.data[0].toNativeMML(o);p.appendChild(o)}});f.chars.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.entity.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.xml.Augment({toNativeMML:function(q){for(var p=0,o=this.data.length;p=p.HTMLCSSlast+p.HTMLCSSchunk){this.postTranslate(p);p.HTMLCSSchunk=Math.floor(p.HTMLCSSchunk*this.config.EqnChunkFactor);p.HTMLCSSdelay=true}}},postTranslate:function(r){var l=r.jax[this.id];if(!this.hideProcessedMath){return}for(var p=r.HTMLCSSlast,k=r.HTMLCSSeqn;p=0&&!this.initialSkipBug)||this.negativeBBoxes||!o.firstChild){l=o.offsetWidth;n=o.parentNode.offsetHeight}else{if(o.bbox&&m<0&&this.msieNegativeBBoxBug){l=-o.offsetWidth,n=o.parentNode.offsetHeight}else{if(this.initialSkipBug){var k=o.style.position;o.style.position="absolute";p=this.startMarker;o.insertBefore(p,o.firstChild)}o.appendChild(this.endMarker);l=this.endMarker.offsetLeft-p.offsetLeft;o.removeChild(this.endMarker);if(this.initialSkipBug){o.removeChild(p);o.style.position=k}}}if(n!=null){o.parentNode.HH=n/this.em}return l/this.em},Measured:function(m,l){var n=m.bbox;if(n.width==null&&n.w&&!n.isMultiline){var k=this.getW(m);n.rw+=k-n.w;n.w=k;n.exactW=true}if(!l){l=m.parentNode}if(!l.bbox){l.bbox=n}return m},Remeasured:function(l,k){k.bbox=this.Measured(l,k).bbox},MeasureSpans:function(o){var r=[],t,q,n,u,k,p,l,s;for(q=0,n=o.length;q=0&&!this.initialSkipBug)||(u.w<0&&this.msieNegativeBBoxBug)){r.push([t])}else{if(this.initialSkipBug){k=this.startMarker.cloneNode(true);p=this.endMarker.cloneNode(true);t.insertBefore(k,t.firstChild);t.appendChild(p);r.push([t,k,p,t.style.position]);t.style.position="absolute"}else{p=this.endMarker.cloneNode(true);t.appendChild(p);r.push([t,null,p])}}}for(q=0,n=r.length;q=0&&!this.initialSkipBug)||this.negativeBBoxes||!t.firstChild){l=t.offsetWidth;s.HH=s.offsetHeight/this.em}else{if(u.w<0&&this.msieNegativeBBoxBug){l=-t.offsetWidth,s.HH=s.offsetHeight/this.em}else{l=r[q][2].offsetLeft-((r[q][1]||{}).offsetLeft||0)}}l/=this.em;u.rw+=l-u.w;u.w=l;u.exactW=true;if(!s.bbox){s.bbox=u}}for(q=0,n=r.length;q=0){p.style.width=this.Em(q);p.style.display="inline-block";p.style.overflow="hidden"}else{if(this.msieNegativeSpaceBug){p.style.height=""}p.style.marginLeft=this.Em(q);if(d.safariNegativeSpaceBug&&p.parentNode.firstChild==p){this.createBlank(p,0,true)}}if(m&&m!==g.COLOR.TRANSPARENT){p.style.backgroundColor=m;p.style.position="relative"}return p},createRule:function(r,n,p,s,l){if(n<-p){p=-n}var m=d.TeX.min_rule_thickness,o=1;if(s>0&&s*this.em0&&(n+p)*this.em0&&q.offsetWidth==0){q.style.width=this.Em(s)}if(r.isBox||r.className=="mspace"){r.bbox=q.bbox,r.HH=n+p}return q},createFrame:function(s,q,r,u,x,l){if(q<-r){r=-q}var p=2*x;if(this.msieFrameSizeBug){if(uC.w){d.createBlank(u,C.rw-C.w+0.1)}}if(!this.msieClipRectBug&&!C.noclip&&!o){var B=3/this.em;var A=(C.H==null?C.h:C.H),m=(C.D==null?C.d:C.D);var E=w-A-B,p=w+m+B,n=C.lw-3*B,k=1000;if(this.initialSkipBug&&C.lw<0){n=-3*B}if(C.isFixed){k=C.width-n}u.style.clip="rect("+this.Em(E)+" "+this.Em(k)+" "+this.Em(p)+" "+this.Em(n)+")"}}u.style.top=this.Em(-q-w);u.style.left=this.Em(s+F);if(C&&z){if(C.H!=null&&(z.H==null||C.H+q>z.H)){z.H=C.H+q}if(C.D!=null&&(z.D==null||C.D-q>z.D)){z.D=C.D-q}if(C.h+q>z.h){z.h=C.h+q}if(C.d-q>z.d){z.d=C.d-q}if(z.H!=null&&z.H<=z.h){delete z.H}if(z.D!=null&&z.D<=z.d){delete z.D}if(C.w+s>z.w){z.w=C.w+s;if(z.width==null){v.style.width=this.Em(z.w)}}if(C.rw+s>z.rw){z.rw=C.rw+s}if(C.lw+s=n-0.01||(s==p-1&&!l.stretch)){if(l.HW[s][2]){q*=l.HW[s][2]}if(l.HW[s][3]){k=l.HW[s][3]}var r=this.addElement(u,"span");this.createChar(r,[k,l.HW[s][1]],q,o);u.bbox=r.bbox;u.offset=0.65*u.bbox.w;u.scale=q;return}}if(l.stretch){this["extendDelimiter"+l.dir](u,t,l.stretch,q,o)}},extendDelimiterV:function(A,t,E,F,w){var o=this.createStack(A,true);var v=this.createBox(o),u=this.createBox(o);this.createChar(v,(E.top||E.ext),F,w);this.createChar(u,(E.bot||E.ext),F,w);var m={bbox:{w:0,lw:0,rw:0}},D=m,p;var B=v.bbox.h+v.bbox.d+u.bbox.h+u.bbox.d;var r=-v.bbox.h;this.placeBox(v,0,r,true);r-=v.bbox.d;if(E.mid){D=this.createBox(o);this.createChar(D,E.mid,F,w);B+=D.bbox.h+D.bbox.d}if(E.min&&tB){m=this.Element("span");this.createChar(m,E.ext,F,w);var C=m.bbox.h+m.bbox.d,l=C-0.05,x,q,z=(E.mid?2:1);q=x=Math.min(Math.ceil((t-B)/(z*l)),this.maxStretchyParts);if(!E.fullExtenders){l=(t-B)/(z*x)}var s=(x/(x+1))*(C-l);l=C-s;r+=s+l-m.bbox.h;while(z-->0){while(x-->0){if(!this.msieCloneNodeBug){p=m.cloneNode(true)}else{p=this.Element("span");this.createChar(p,E.ext,F,w)}p.bbox=m.bbox;r-=l;this.placeBox(this.addBox(o,p),0,r,true)}r+=s-m.bbox.d;if(E.mid&&z){this.placeBox(D,0,r-D.bbox.h,true);x=q;r+=-(D.bbox.h+D.bbox.d)+s+l-m.bbox.h}}}else{r+=(B-t)/2;if(E.mid){this.placeBox(D,0,r-D.bbox.h,true);r+=-(D.bbox.h+D.bbox.d)}r+=(B-t)/2}this.placeBox(u,0,r-u.bbox.h,true);r-=u.bbox.h+u.bbox.d;A.bbox={w:Math.max(v.bbox.w,m.bbox.w,u.bbox.w,D.bbox.w),lw:Math.min(v.bbox.lw,m.bbox.lw,u.bbox.lw,D.bbox.lw),rw:Math.max(v.bbox.rw,m.bbox.rw,u.bbox.rw,D.bbox.rw),h:0,d:-r,exactW:true};A.scale=F;A.offset=0.55*A.bbox.w;A.isMultiChar=true;this.setStackWidth(o,A.bbox.w)},extendDelimiterH:function(B,o,E,G,y){var r=this.createStack(B,true);var p=this.createBox(r),C=this.createBox(r);this.createChar(p,(E.left||E.rep),G,y);this.createChar(C,(E.right||E.rep),G,y);var l=this.Element("span");this.createChar(l,E.rep,G,y);var D={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},m;this.placeBox(p,-p.bbox.lw,0,true);var u=(p.bbox.rw-p.bbox.lw)+(C.bbox.rw-C.bbox.lw)-0.05,t=p.bbox.rw-p.bbox.lw-0.025,v;if(E.mid){D=this.createBox(r);this.createChar(D,E.mid,G,y);u+=D.bbox.w}if(E.min&&ou){var F=l.bbox.rw-l.bbox.lw,q=F-0.05,z,s,A=(E.mid?2:1);s=z=Math.min(Math.ceil((o-u)/(A*q)),this.maxStretchyParts);if(!E.fillExtenders){q=(o-u)/(A*z)}v=(z/(z+1))*(F-q);q=F-v;t-=l.bbox.lw+v;while(A-->0){while(z-->0){if(!this.cloneNodeBug){m=l.cloneNode(true)}else{m=this.Element("span");this.createChar(m,E.rep,G,y)}m.bbox=l.bbox;this.placeBox(this.addBox(r,m),t,0,true);t+=q}if(E.mid&&A){this.placeBox(D,t,0,true);t+=D.bbox.w-v;z=s}}}else{t-=(u-o)/2;if(E.mid){this.placeBox(D,t,0,true);t+=D.bbox.w}t-=(u-o)/2}this.placeBox(C,t,0,true);B.bbox={w:t+C.bbox.rw,lw:0,rw:t+C.bbox.rw,H:Math.max(p.bbox.h,l.bbox.h,C.bbox.h,D.bbox.h),D:Math.max(p.bbox.d,l.bbox.d,C.bbox.d,D.bbox.d),h:l.bbox.h,d:l.bbox.d,exactW:true};B.scale=G;B.isMultiChar=true;this.setStackWidth(r,B.bbox.w)},createChar:function(s,p,n,k){s.isMathJax=true;var r=s,t="",o={fonts:[p[1]],noRemap:true};if(k&&k===g.VARIANT.BOLD){o.fonts=[p[1]+"-bold",p[1]]}if(typeof(p[1])!=="string"){o=p[1]}if(p[0] instanceof Array){for(var q=0,l=p[0].length;q=55296&&x<56319){B++;x=(((x-55296)<<10)+(s.charCodeAt(B)-56320))+65536;if(this.FONTDATA.RemapPlane1){var E=this.FONTDATA.RemapPlane1(x,p);x=E.n;p=E.variant}}else{var u,r,v=this.FONTDATA.RANGES;for(u=0,r=v.length;u=v[u].low&&x<=v[u].high){if(v[u].remap&&v[u].remap[x]){x=q+v[u].remap[x]}else{x=x-v[u].low+q;if(v[u].add){x+=v[u].add}}if(p["variant"+v[u].offset]){p=this.FONTDATA.VARIANT[p["variant"+v[u].offset]]}break}}}if(p.remap&&p.remap[x]){if(p.remap[x] instanceof Array){var o=p.remap[x];x=o[0];p=this.FONTDATA.VARIANT[o[1]]}else{if(typeof(p.remap[x])==="string"){s=p.remap[x]+s.substr(B+1);B=0;y=s.length;x=s.charCodeAt(0)}else{x=p.remap[x];if(p.remap.variant){p=this.FONTDATA.VARIANT[p.remap.variant]}}}}if(this.FONTDATA.REMAP[x]&&!p.noRemap){x=this.FONTDATA.REMAP[x];if(x instanceof Array){p=this.FONTDATA.VARIANT[x[1]];x=x[0]}if(typeof(x)==="string"){s=x+s.substr(B+1);B=0;y=s.length;x=x.charCodeAt(0)}}t=this.lookupChar(p,x);C=t[x];if(l||(!this.checkFont(t,k.style)&&!C[5].img)){if(z.length){this.addText(k,z);z=""}var w=!!k.style.fontFamily||!!A.style.fontStyle||!!A.style.fontWeight||!t.directory||l;l=false;if(k!==A){w=!this.checkFont(t,A.style);k=A}if(w){k=this.addElement(A,"span",{isMathJax:true,subSpan:true})}this.handleFont(k,t,k!==A)}z=this.handleChar(k,t,C,x,z);if(!(C[5]||{}).space){if(C[0]/1000>A.bbox.h){A.bbox.h=C[0]/1000}if(C[1]/1000>A.bbox.d){A.bbox.d=C[1]/1000}}if(A.bbox.w+C[3]/1000A.bbox.rw){A.bbox.rw=A.bbox.w+C[4]/1000}A.bbox.w+=C[2]/1000}if(z.length){this.addText(k,z)}if(A.scale&&A.scale!==1){A.bbox.h*=A.scale;A.bbox.d*=A.scale;A.bbox.w*=A.scale;A.bbox.lw*=A.scale;A.bbox.rw*=A.scale}if(s.length==1&&t.skew&&t.skew[x]){A.bbox.skew=t.skew[x]}},checkFont:function(k,l){var m=(l.fontWeight||"normal");if(m.match(/^\d+$/)){m=(parseInt(m)>=600?"bold":"normal")}return(k.family.replace(/'/g,"")===l.fontFamily.replace(/'/g,"")&&(k.style||"normal")===(l.fontStyle||"normal")&&(k.weight||"normal")===m)},handleFont:function(m,k,o){m.style.fontFamily=k.family;if(!k.directory){m.style.fontSize=Math.floor(100/d.scale+0.5)+"%"}if(!(d.FontFaceBug&&k.isWebFont)){var l=k.style||"normal",n=k.weight||"normal";if(l!=="normal"||o){m.style.fontStyle=l}if(n!=="normal"||o){m.style.fontWeight=n}}},handleChar:function(l,k,s,r,q){var p=s[5];if(p.space){if(q.length){this.addText(l,q)}d.createShift(l,s[2]/1000);return""}if(p.img){return this.handleImg(l,k,s,r,q)}if(p.isUnknown&&this.FONTDATA.DELIMITERS[r]){if(q.length){this.addText(l,q)}var o=l.scale;d.createDelimiter(l,r,0,1,k);if(this.FONTDATA.DELIMITERS[r].dir==="V"){l.style.verticalAlign=this.Em(l.bbox.d);l.bbox.h+=l.bbox.d;l.bbox.d=0}l.scale=o;s[0]=l.bbox.h*1000;s[1]=l.bbox.d*1000;s[2]=l.bbox.w*1000;s[3]=l.bbox.lw*1000;s[4]=l.bbox.rw*1000;return""}if(p.c==null){if(r<=65535){p.c=String.fromCharCode(r)}else{var m=r-65536;p.c=String.fromCharCode((m>>10)+55296)+String.fromCharCode((m&1023)+56320)}}if(p.rfix){this.addText(l,q+p.c);d.createShift(l,p.rfix/1000);return""}if(s[2]||!this.msieAccentBug||q.length){return q+p.c}d.createShift(l,s[3]/1000);d.createShift(l,(s[4]-s[3])/1000);this.addText(l,p.c);d.createShift(l,-s[4]/1000);return""},handleImg:function(l,k,p,o,m){return m},lookupChar:function(p,s){var o,k;if(!p.FONTS){var r=this.FONTDATA.FONTS;var q=(p.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(q instanceof Array)){q=[q]}if(p.fonts!=q){p.fonts=q}p.FONTS=[];for(o=0,k=q.length;o=0;n--){if(l.Ranges[n][2]==o){l.Ranges.splice(n,1)}}this.loadFont(l.directory+"/"+o+".js")}}}},loadFont:function(l){var k=MathJax.Callback.Queue();k.Push(["Require",h,this.fontDir+"/"+l]);if(this.imgFonts){if(!MathJax.isPacked){l=l.replace(/\/([^\/]*)$/,d.imgPacked+"/$1")}k.Push(["Require",h,this.webfontDir+"/png/"+l])}b.RestartAfter(k.Push({}))},loadWebFont:function(k){k.available=k.isWebFont=true;if(d.FontFaceBug){k.family=k.name;if(d.msieFontCSSBug){k.family+="-Web"}}b.RestartAfter(this.Font.loadWebFont(k))},loadWebFontError:function(l,k){b.Startup.signal.Post("HTML-CSS Jax - disable web fonts");l.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;b.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");b.Startup.signal.Post("HTML-CSS Jax - using image fonts");e(["WebFontNotAvailable","Web-Fonts not available -- using image fonts instead"],null,3000);h.Require(this.directory+"/imageFonts.js",k)}else{this.allowWebFonts=false;k()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},NBSP:"\u00A0",rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){g=MathJax.ElementJax.mml;g.mbase.Augment({toHTML:function(o){o=this.HTMLcreateSpan(o);if(this.type!="mrow"){o=this.HTMLhandleSize(o)}for(var l=0,k=this.data.length;ll.d){l.d=m.d}if(m.h>l.h){l.h=m.h}if(m.D!=null&&m.D>l.D){l.D=m.D}if(m.H!=null&&m.H>l.H){l.H=m.H}if(n.style.paddingLeft){l.w+=d.unEm(n.style.paddingLeft)*(n.scale||1)}if(l.w+m.lwl.rw){l.rw=l.w+m.rw}l.w+=m.w;if(n.style.paddingRight){l.w+=d.unEm(n.style.paddingRight)*(n.scale||1)}if(m.width){l.width=m.width;l.minWidth=m.minWidth}if(m.ic){l.ic=m.ic}else{delete l.ic}if(l.exactW&&!m.exactW){delete l.exactW}},HTMLemptyBBox:function(k){k.h=k.d=k.H=k.D=k.rw=-d.BIGDIMEN;k.w=0;k.lw=d.BIGDIMEN;return k},HTMLcleanBBox:function(k){if(k.h===this.BIGDIMEN){k.h=k.d=k.H=k.D=k.w=k.rw=k.lw=0}if(k.D<=k.d){delete k.D}if(k.H<=k.h){delete k.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(l){if(this.isEmbellished()){var k=this.Core();if(k&&k!==this){return k.HTMLcanStretch(l)}}return false},HTMLstretchH:function(l,k){return this.HTMLspanElement()},HTMLstretchV:function(l,k,m){return this.HTMLspanElement()},HTMLnotEmpty:function(k){while(k){if((k.type!=="mrow"&&k.type!=="texatom")||k.data.length>1){return true}k=k.data[0]}return false},HTMLmeasureChild:function(l,k){if(this.data[l]){d.Measured(this.data[l].toHTML(k),k)}else{k.bbox=this.HTMLzeroBBox()}},HTMLboxChild:function(l,k){if(!this.data[l]){this.SetData(l,g.mrow())}return this.data[l].toHTML(k)},HTMLcreateSpan:function(k){if(this.spanID){var l=this.HTMLspanElement();if(l&&(l.parentNode===k||(l.parentNode||{}).parentNode===k)){while(l.firstChild){l.removeChild(l.firstChild)}l.bbox=this.HTMLzeroBBox();l.scale=1;l.isMultChar=l.HH=null;l.style.cssText="";return l}}if(this.href){k=d.addElement(k,"a",{href:this.href,isMathJax:true})}k=d.addElement(k,"span",{className:this.type,isMathJax:true});if(d.imgHeightBug){k.style.display="inline-block"}if(this["class"]){k.className+=" "+this["class"]}if(!this.spanID){this.spanID=d.GetID()}k.id=(this.id||"MathJax-Span-"+this.spanID)+d.idPostfix;k.bbox=this.HTMLzeroBBox();this.styles={};if(this.style){k.style.cssText=this.style;if(k.style.fontSize){this.mathsize=k.style.fontSize;k.style.fontSize=""}this.styles={border:d.getBorders(k),padding:d.getPadding(k)};if(this.styles.border){k.style.border=""}if(this.styles.padding){k.style.padding=""}}if(this.href){k.parentNode.bbox=k.bbox}return k},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+d.idPostfix)},HTMLhandleVariant:function(l,k,m){d.handleVariant(l,k,m)},HTMLhandleSize:function(k){if(!k.scale){k.scale=this.HTMLgetScale();if(k.scale!==1){k.style.fontSize=d.Percent(k.scale)}}return k},HTMLhandleColor:function(w){var y=this.getValues("mathcolor","color");if(this.mathbackground){y.mathbackground=this.mathbackground}if(this.background){y.background=this.background}if(this.style&&w.style.backgroundColor){y.mathbackground=w.style.backgroundColor;w.style.backgroundColor="transparent"}var t=(this.styles||{}).border,v=(this.styles||{}).padding;if(y.color&&!this.mathcolor){y.mathcolor=y.color}if(y.background&&!this.mathbackground){y.mathbackground=y.background}if(y.mathcolor){w.style.color=y.mathcolor}if((y.mathbackground&&y.mathbackground!==g.COLOR.TRANSPARENT)||t||v){var A=w.bbox,z=(A.exact?0:1/d.em),u=0,s=0,m=w.style.paddingLeft,q=w.style.paddingRight;if(this.isToken){u=A.lw;s=A.rw-A.w}if(m!==""){u+=d.unEm(m)*(w.scale||1)}if(q!==""){s-=d.unEm(q)*(w.scale||1)}var l=(d.PaddingWidthBug||A.keepPadding||A.exactW?0:s-u);var o=Math.max(0,d.getW(w)+l);var x=A.h+A.d,k=-A.d,r=0,p=0;if(o>0){o+=2*z;u-=z}if(x>0){x+=2*z;k-=z}s=-o-u;if(t){s-=t.right;k-=t.bottom;r+=t.left;p+=t.right;A.h+=t.top;A.d+=t.bottom;A.w+=t.left+t.right;A.lw-=t.left;A.rw+=t.right}if(v){x+=v.top+v.bottom;o+=v.left+v.right;s-=v.right;k-=v.bottom;r+=v.left;p+=v.right;A.h+=v.top;A.d+=v.bottom;A.w+=v.left+v.right;A.lw-=v.left;A.rw+=v.right}if(p){w.style.paddingRight=d.Em(p)}var n=d.Element("span",{id:"MathJax-Color-"+this.spanID+d.idPostfix,isMathJax:true,style:{display:"inline-block",backgroundColor:y.mathbackground,width:d.Em(o),height:d.Em(x),verticalAlign:d.Em(k),marginLeft:d.Em(u),marginRight:d.Em(s)}});d.setBorders(n,t);if(A.width){n.style.width=A.width;n.style.marginRight="-"+A.width}if(d.msieInlineBlockAlignBug){n.style.position="relative";n.style.width=n.style.height=0;n.style.verticalAlign=n.style.marginLeft=n.style.marginRight="";n.style.border=n.style.padding="";if(t&&d.msieBorderWidthBug){x+=t.top+t.bottom;o+=t.left+t.right}n.style.width=d.Em(r+z);d.placeBox(d.addElement(n,"span",{noAdjust:true,isMathJax:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",background:(y.mathbackground||"transparent"),width:d.Em(o),height:d.Em(x)}}),u,A.h+z);d.setBorders(n.firstChild,t)}w.parentNode.insertBefore(n,w);if(d.msieColorPositionBug){w.style.position="relative"}return n}return null},HTMLremoveColor:function(){var k=document.getElementById("MathJax-Color-"+this.spanID+d.idPostfix);if(k){k.parentNode.removeChild(k)}},HTMLhandleSpace:function(o){if(this.useMMLspacing){if(this.type!=="mo"){return}var m=this.getValues("scriptlevel","lspace","rspace");if(m.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){var l=this.HTMLgetMu(o);m.lspace=Math.max(0,d.length2em(m.lspace,l));m.rspace=Math.max(0,d.length2em(m.rspace,l));var k=this,n=this.Parent();while(n&&n.isEmbellished()&&n.Core()===k){k=n;n=n.Parent();o=k.HTMLspanElement()}if(m.lspace){o.style.paddingLeft=d.Em(m.lspace)}if(m.rspace){o.style.paddingRight=d.Em(m.rspace)}}}else{var p=this.texSpacing();if(p!==""){p=d.length2em(p,this.HTMLgetScale())/(o.scale||1);if(o.style.paddingLeft){p+=d.unEm(o.style.paddingLeft)}o.style.paddingLeft=d.Em(p)}}},HTMLgetScale:function(){var m=1,k=this.getValues("mathsize","scriptlevel","fontsize");if(this.style){var l=this.HTMLspanElement();if(l.style.fontSize!=""){k.fontsize=l.style.fontSize}}if(k.fontsize&&!this.mathsize){k.mathsize=k.fontsize}if(k.scriptlevel!==0){if(k.scriptlevel>2){k.scriptlevel=2}m=Math.pow(this.Get("scriptsizemultiplier"),k.scriptlevel);k.scriptminsize=d.length2em(this.Get("scriptminsize"));if(m2){l.scriptlevel=2}k=Math.sqrt(Math.pow(l.scriptsizemultiplier,l.scriptlevel))}return k},HTMLgetVariant:function(){var k=this.getValues("mathvariant","fontfamily","fontweight","fontstyle");k.hasVariant=this.Get("mathvariant",true);if(!k.hasVariant){k.family=k.fontfamily;k.weight=k.fontweight;k.style=k.fontstyle}if(this.style){var m=this.HTMLspanElement();if(!k.family&&m.style.fontFamily){k.family=m.style.fontFamily}if(!k.weight&&m.style.fontWeight){k.weight=m.style.fontWeight}if(!k.style&&m.style.fontStyle){k.style=m.style.fontStyle}}if(k.weight&&k.weight.match(/^\d+$/)){k.weight=(parseInt(k.weight)>600?"bold":"normal")}var l=k.mathvariant;if(this.variantForm){l="-"+d.fontInUse+"-variant"}if(k.family&&!k.hasVariant){if(!k.weight&&k.mathvariant.match(/bold/)){k.weight="bold"}if(!k.style&&k.mathvariant.match(/italic/)){k.style="italic"}return{FONTS:[],fonts:[],noRemap:true,defaultFont:{family:k.family,style:k.style,weight:k.weight}}}if(k.weight==="bold"){l={normal:g.VARIANT.BOLD,italic:g.VARIANT.BOLDITALIC,fraktur:g.VARIANT.BOLDFRAKTUR,script:g.VARIANT.BOLDSCRIPT,"sans-serif":g.VARIANT.BOLDSANSSERIF,"sans-serif-italic":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.weight==="normal"){l={bold:g.VARIANT.normal,"bold-italic":g.VARIANT.ITALIC,"bold-fraktur":g.VARIANT.FRAKTUR,"bold-script":g.VARIANT.SCRIPT,"bold-sans-serif":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.SANSSERIFITALIC}[l]||l}}if(k.style==="italic"){l={normal:g.VARIANT.ITALIC,bold:g.VARIANT.BOLDITALIC,"sans-serif":g.VARIANT.SANSSERIFITALIC,"bold-sans-serif":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.style==="normal"){l={italic:g.VARIANT.NORMAL,"bold-italic":g.VARIANT.BOLD,"sans-serif-italic":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.BOLDSANSSERIF}[l]||l}}if(!(l in d.FONTDATA.VARIANT)){l="normal"}return d.FONTDATA.VARIANT[l]}},{HTMLautoload:function(){var k=d.autoloadDir+"/"+this.type+".js";b.RestartAfter(h.Require(k))},HTMLautoloadFile:function(k){var l=d.autoloadDir+"/"+k+".js";b.RestartAfter(h.Require(l))},HTMLstretchH:function(l,k){this.HTMLremoveColor();return this.toHTML(l,k)},HTMLstretchV:function(l,k,m){this.HTMLremoveColor();return this.toHTML(l,k,m)}});g.chars.Augment({toHTML:function(n,m,l,o){var r=this.data.join("").replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.entity.Augment({toHTML:function(n,m,l,o){var r=this.toString().replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.mi.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lp.w&&q.length===1&&!n.noIC){p.ic=p.rw-p.w;d.createBlank(o,p.ic);p.w=p.rw}this.HTMLhandleSpace(o);this.HTMLhandleColor(o);return o}});g.mn.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lu.bbox.w){u.bbox.ic=u.bbox.rw-u.bbox.w;d.createBlank(u,u.bbox.ic);u.bbox.w=u.bbox.rw}}this.HTMLhandleSpace(u);this.HTMLhandleColor(u);return u},CoreParent:function(){var k=this;while(k&&k.isEmbellished()&&k.CoreMO()===this&&!k.isa(g.math)){k=k.Parent()}return k},CoreText:function(k){if(!k){return""}if(k.isEmbellished()){return k.CoreMO().data.join("")}while((k.isa(g.mrow)||k.isa(g.TeXAtom)||k.isa(g.mstyle)||k.isa(g.mphantom))&&k.data.length===1&&k.data[0]){k=k.data[0]}if(!k.isToken){return""}else{return k.data.join("")}},HTMLremapChars:{"*":"\u2217",'"':"\u2033","\u00B0":"\u2218","\u00B2":"2","\u00B3":"3","\u00B4":"\u2032","\u00B9":"1"},HTMLremap:function(l,k){l=l.replace(/-/g,"\u2212");if(k){l=l.replace(/'/g,"\u2032").replace(/`/g,"\u2035");if(l.length===1){l=k[l]||l}}return l},HTMLcanStretch:function(n){if(!this.Get("stretchy")){return false}var o=this.data.join("");if(o.length>1){return false}var l=this.CoreParent();if(l&&l.isa(g.munderover)&&this.CoreText(l.data[l.base]).length===1){var m=l.data[l.over],k=l.data[l.under];if(m&&this===m.CoreMO()&&l.Get("accent")){o=d.FONTDATA.REMAPACCENT[o]||o}else{if(k&&this===k.CoreMO()&&l.Get("accentunder")){o=d.FONTDATA.REMAPACCENTUNDER[o]||o}}}o=d.FONTDATA.DELIMITERS[o.charCodeAt(0)];return(o&&o.dir==n.substr(0,1))},HTMLstretchV:function(m,n,o){this.HTMLremoveColor();var r=this.getValues("symmetric","maxsize","minsize");var p=this.HTMLspanElement(),s=this.HTMLgetMu(p),q;var k=d.TeX.axis_height,l=p.scale;if(r.symmetric){q=2*Math.max(n-k,o+k)}else{q=n+o}r.maxsize=d.length2em(r.maxsize,s,p.bbox.h+p.bbox.d);r.minsize=d.length2em(r.minsize,s,p.bbox.h+p.bbox.d);q=Math.max(r.minsize,Math.min(r.maxsize,q));p=this.HTMLcreateSpan(m);d.createDelimiter(p,this.data.join("").charCodeAt(0),q,l);if(r.symmetric){q=(p.bbox.h+p.bbox.d)/2+k}else{q=(p.bbox.h+p.bbox.d)*n/(n+o)}d.positionDelimiter(p,q);this.HTMLhandleSpace(p);this.HTMLhandleColor(p);return p},HTMLstretchH:function(o,k){this.HTMLremoveColor();var m=this.getValues("maxsize","minsize","mathvariant","fontweight");if((m.fontweight==="bold"||parseInt(m.fontweight)>=600)&&!this.Get("mathvariant",true)){m.mathvariant=g.VARIANT.BOLD}var n=this.HTMLspanElement(),l=this.HTMLgetMu(n),p=n.scale;m.maxsize=d.length2em(m.maxsize,l,n.bbox.w);m.minsize=d.length2em(m.minsize,l,n.bbox.w);k=Math.max(m.minsize,Math.min(m.maxsize,k));n=this.HTMLcreateSpan(o);d.createDelimiter(n,this.data.join("").charCodeAt(0),k,p,m.mathvariant);this.HTMLhandleSpace(n);this.HTMLhandleColor(n);return n}});g.mtext.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));var n=this.HTMLgetVariant();if(d.config.mtextFontInherit||this.Parent().type==="merror"){n={bold:n.bold,italic:n.italic,fontInherit:true}}for(var l=0,k=this.data.length;ld.linebreakWidth)||this.hasNewline()},HTMLstretchH:function(m,k){this.HTMLremoveColor();var l=this.HTMLspanElement();this.data[this.core].HTMLstretchH(l,k);this.HTMLcomputeBBox(l,true);this.HTMLhandleColor(l);return l},HTMLstretchV:function(m,l,n){this.HTMLremoveColor();var k=this.HTMLspanElement();this.data[this.core].HTMLstretchV(k,l,n);this.HTMLcomputeBBox(k,true);this.HTMLhandleColor(k);return k}});g.mstyle.Augment({toHTML:function(l,k,m){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){var n=this.data[0].toHTML(l);if(m!=null){this.data[0].HTMLstretchV(l,k,m)}else{if(k!=null){this.data[0].HTMLstretchH(l,k)}}l.bbox=n.bbox}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mfrac.Augment({toHTML:function(D){D=this.HTMLcreateSpan(D);var m=d.createStack(D);var r=d.createBox(m),o=d.createBox(m);d.MeasureSpans([this.HTMLboxChild(0,r),this.HTMLboxChild(1,o)]);var k=this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled");var I=this.HTMLgetScale(),C=k.displaystyle;var G=d.TeX.axis_height*I;if(k.bevelled){var F=(C?0.4:0.15);var s=Math.max(r.bbox.h+r.bbox.d,o.bbox.h+o.bbox.d)+2*F;var E=d.createBox(m);d.createDelimiter(E,47,s);d.placeBox(r,0,(r.bbox.d-r.bbox.h)/2+G+F);d.placeBox(E,r.bbox.w-F/2,(E.bbox.d-E.bbox.h)/2+G);d.placeBox(o,r.bbox.w+E.bbox.w-F,(o.bbox.d-o.bbox.h)/2+G-F)}else{var l=Math.max(r.bbox.w,o.bbox.w);var y=d.thickness2em(k.linethickness,I),A,z,x,w;var B=d.TeX.min_rule_thickness/this.em;if(C){x=d.TeX.num1;w=d.TeX.denom1}else{x=(y===0?d.TeX.num3:d.TeX.num2);w=d.TeX.denom2}x*=I;w*=I;if(y===0){A=Math.max((C?7:3)*d.TeX.rule_thickness,2*B);z=(x-r.bbox.d)-(o.bbox.h-w);if(zy){l=((s.bbox.h+s.bbox.d)-(y-A))/2}var B=d.FONTDATA.DELIMITERS[d.FONTDATA.RULECHAR];if(!B||oK){K=r[M].bbox.w}if(!N[M]&&K>n){n=K}}}if(F==null&&H!=null){n=H}else{if(n==-d.BIGDIMEN){n=K}}for(M=K=0,I=this.data.length;MK){K=w.bbox.w}}}var E=d.TeX.rule_thickness,G=d.FONTDATA.TeX_factor;var p=r[this.base]||{bbox:this.HTMLzeroBBox()};var v,s,A,z,u,C,J,O=0;if(p.bbox.ic){O=1.3*p.bbox.ic+0.05}for(M=0,I=this.data.length;M0){z+=F;y-=F}}d.placeBox(k,o.bbox.w+M,Math.max(z,J.superscriptshift));d.placeBox(x,o.bbox.w,-Math.max(y,J.subscriptshift))}}this.HTMLhandleSpace(K);this.HTMLhandleColor(K);return K},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mmultiscripts.Augment({toHTML:g.mbase.HTMLautoload});g.mtable.Augment({toHTML:g.mbase.HTMLautoload});g["annotation-xml"].Augment({toHTML:g.mbase.HTMLautoload});g.math.Augment({toHTML:function(u,l){var r=this.Get("alttext");if(r&&r!==""){l.setAttribute("aria-label",r)}var m=d.addElement(u,"nobr",{isMathJax:true});u=this.HTMLcreateSpan(m);var s=d.createStack(u),n=d.createBox(s),t;s.style.fontSize=m.parentNode.style.fontSize;m.parentNode.style.fontSize="";if(this.data[0]!=null){if(d.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}g.mbase.prototype.displayAlign=b.config.displayAlign;g.mbase.prototype.displayIndent=b.config.displayIndent;var o=this.data[0].toHTML(n);o.bbox.exactW=false;t=d.Measured(o,n)}d.placeBox(n,0,0);u.style.width=d.Em((Math.round(t.bbox.w*this.em)+0.25)/d.outerEm);u.style.display="inline-block";var k=1/d.em,q=d.em/d.outerEm;d.em/=q;u.bbox.h*=q;u.bbox.d*=q;u.bbox.w*=q;u.bbox.lw*=q;u.bbox.rw*=q;if(t&&t.bbox.width!=null){u.style.minWidth=(t.bbox.minWidth||u.style.width);u.style.width=s.style.width=t.bbox.width;n.style.width="100%"}this.HTMLhandleColor(u);if(t){d.createRule(u,(t.bbox.h+k)*q,(t.bbox.d+k)*q,0)}if(!this.isMultiline&&this.Get("display")==="block"&&u.bbox.width==null){var v=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(v.indentalignfirst!==g.INDENTALIGN.INDENTALIGN){v.indentalign=v.indentalignfirst}if(v.indentalign===g.INDENTALIGN.AUTO){v.indentalign=this.displayAlign}l.style.textAlign=v.indentalign;if(v.indentshiftfirst!==g.INDENTSHIFT.INDENTSHIFT){v.indentshift=v.indentshiftfirst}if(v.indentshift==="auto"){v.indentshift=this.displayIndent}if(v.indentshift&&v.indentalign!==g.INDENTALIGN.CENTER){u.style[{left:"marginLeft",right:"marginRight"}[v.indentalign]]=d.Em(d.length2em(v.indentshift))}}return u},HTMLspanElement:g.mbase.prototype.HTMLspanElement});g.TeXAtom.Augment({toHTML:function(l){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){if(this.texClass===g.TEXCLASS.VCENTER){var k=d.createStack(l);var m=d.createBox(k);d.Measured(this.data[0].toHTML(m),m);d.placeBox(m,0,d.TeX.axis_height-(m.bbox.h+m.bbox.d)/2+m.bbox.d)}else{l.bbox=this.data[0].toHTML(l).bbox}}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",d,"jax.js"]),0)})});b.Register.StartupHook("End Config",function(){b.Browser.Select({MSIE:function(k){var o=(document.documentMode||0);var n=k.versionAtLeast("7.0");var m=k.versionAtLeast("8.0")&&o>7;var l=(document.compatMode==="BackCompat");if(o<9){d.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";d.config.styles[".MathJax .MathJax_HitBox"].opacity=0;d.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)"}d.Augment({PaddingWidthBug:true,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:l,msieDisappearingBug:(o>=8),msieMarginScaleBug:(o<8),msiePaddingWidthBug:true,msieBorderWidthBug:l,msieFrameSizeBug:(o<=8),msieInlineBlockAlignBug:(!m||l),msiePlaceBoxBug:(m&&!l),msieClipRectBug:!m,msieNegativeSpaceBug:l,cloneNodeBug:(m&&k.version==="8.0"),initialSkipBug:(o<8),msieNegativeBBoxBug:(o>=8),msieIE6:!n,msieItalicWidthBug:true,FontFaceBug:true,msieFontCSSBug:k.isIE9,allowWebFonts:(o>=9?"woff":"eot")})},Firefox:function(l){var m=false;if(l.versionAtLeast("3.5")){var k=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||b.config.root.match(/^https?:\/\//)||(b.config.root+"/").substr(0,k.length)===k){m="otf"}}d.Augment({ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:m})},Safari:function(p){var n=p.versionAtLeast("3.0");var m=p.versionAtLeast("3.1");var k=navigator.appVersion.match(/ Safari\/\d/)&&navigator.appVersion.match(/ Version\/\d/)&&navigator.vendor.match(/Apple/);var l=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var q=(m&&p.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!p.versionAtLeast("5.0"))||(l!=null&&(l[1]<2||(l[1]==2&&l[2]<2)))));d.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!m,safariTextNodeBug:!n,forceReflow:true,allowWebFonts:(m&&!q?"otf":false)});if(k){d.Augment({webFontDefault:(p.isMobile?"sans-serif":"serif")})}if(p.isPC){d.Augment({adjustAvailableFonts:d.removeSTIXfonts,checkWebFontsTwice:true})}if(q){var o=b.config["HTML-CSS"];if(o){o.availableFonts=[];o.preferredFont=null}else{b.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(k){d.Augment({Em:d.EmRounded,cloneNodeBug:true,rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariWebFontSerif:[""],forceReflow:true,allowWebFonts:(k.versionAtLeast("4.0")?"otf":"svg")})},Opera:function(k){k.isMini=(navigator.appVersion.match("Opera Mini")!=null);d.config.styles[".MathJax .merror"]["vertical-align"]=null;d.config.styles[".MathJax span"]["z-index"]=0;d.Augment({operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:k.versionAtLeast("10.61"),initialSkipBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(k.versionAtLeast("10.0")&&!k.isMini?"otf":false),adjustAvailableFonts:d.removeSTIXfonts})},Konqueror:function(k){d.Augment({konquerorVerticalAlignBug:true})}})});MathJax.Hub.Register.StartupHook("End Cookie",function(){if(b.config.menuSettings.zoom!=="None"){h.Require("[MathJax]/extensions/MathZoom.js")}})})(MathJax.Ajax,MathJax.Hub,MathJax.OutputJax["HTML-CSS"]); - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];a.mtable.Augment({toHTML:function(t){t=this.HTMLcreateSpan(t);if(this.data.length===0){return t}var K=this.getValues("columnalign","rowalign","columnspacing","rowspacing","columnwidth","equalcolumns","equalrows","columnlines","rowlines","frame","framespacing","align","useHeight","width","side","minlabelspacing");var aJ=K.width.match(/%$/);var ay=b.createStack(t);var aG=this.HTMLgetScale(),aA=this.HTMLgetMu(t),aB=-1;var aq=[],au=[],ak=[],aw=[],av=[],af,ae,ap=-1,ad,ao,Z,aF,R,aC,aO=[];var al=b.FONTDATA.baselineskip*aG*K.useHeight,aT,I=b.FONTDATA.lineH*aG,O=b.FONTDATA.lineD*aG;for(af=0,ad=this.data.length;afap){ap=ae}av[ae]=b.createStack(b.createBox(ay));ak[ae]=-b.BIGDIMEN}aw[af][ae]=b.createBox(av[ae]);aO.push(aF.data[ae-Z].toHTML(aw[af][ae]))}}b.MeasureSpans(aO);for(af=0,ad=this.data.length;afaq[ae]){aq[ae]=aS*aL.h/aT}if(aS*aL.d/aT>au[ae]){au[ae]=aS*aL.d/aT}}}else{if(aC.HTMLcanStretch("Horizontal")){aS=b.length2em(aS,aA,aL.w);if(aS>ak[ae]){ak[ae]=aS}}}}}if(aw[af][ae].bbox.h>aq[af]){aq[af]=aw[af][ae].bbox.h}if(aw[af][ae].bbox.d>au[af]){au[af]=aw[af][ae].bbox.d}if(aw[af][ae].bbox.w>ak[ae]){ak[ae]=aw[af][ae].bbox.w}}}if(aq[0]+au[0]){aq[0]=Math.max(aq[0],I)}if(aq[aw.length-1]+au[aw.length-1]){au[aw.length-1]=Math.max(au[aw.length-1],O)}var aE=MathJax.Hub.SplitList;var az=aE(K.columnspacing),aQ=aE(K.rowspacing),e=aE(K.columnalign),E=aE(K.rowalign),d=aE(K.columnlines),z=aE(K.rowlines),aM=aE(K.columnwidth),V=[];for(af=0,ad=az.length;afaw.length){ab=aw.length}}aj=0;aU=-(aT+aH)+aq[0];for(af=0,ad=ab-1;af0.98){S=0.98/ag;ag=0.98}}else{if(K.width==="auto"){if(ag>0.98){S=L/(B+L);ac=B+L}else{ac=B/(1-ag)}}else{ac=b.length2em(K.width,aA);for(af=0,ad=Math.min(ap+1,az.length);af0.01){if(ah&&ac>B){ac=(ac-B)/ah;for(af=0,ad=at.length;af&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.2",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -(function(d,h,l,g,m,b,j){var q="2.2";var i=MathJax.Extension;var c=i.MathEvents={version:q};var k=d.config.menuSettings;var p={hover:500,frame:{x:3.5,y:5,bwidth:1,bcolor:"#A6D",hwidth:"15px",hcolor:"#83A"},button:{x:-4,y:-3,wx:-2,src:l.fileURL(b.imageDir+"/MenuArrow-15.png")},fadeinInc:0.2,fadeoutInc:0.05,fadeDelay:50,fadeoutStart:400,fadeoutDelay:15*1000,styles:{".MathJax_Hover_Frame":{"border-radius":".25em","-webkit-border-radius":".25em","-moz-border-radius":".25em","-khtml-border-radius":".25em","box-shadow":"0px 0px 15px #83A","-webkit-box-shadow":"0px 0px 15px #83A","-moz-box-shadow":"0px 0px 15px #83A","-khtml-box-shadow":"0px 0px 15px #83A",border:"1px solid #A6D ! important",display:"inline-block",position:"absolute"},".MathJax_Hover_Arrow":{position:"absolute",width:"15px",height:"11px",cursor:"pointer"}}};var n=c.Event={LEFTBUTTON:0,RIGHTBUTTON:2,MENUKEY:"altKey",Mousedown:function(r){return n.Handler(r,"Mousedown",this)},Mouseup:function(r){return n.Handler(r,"Mouseup",this)},Mousemove:function(r){return n.Handler(r,"Mousemove",this)},Mouseover:function(r){return n.Handler(r,"Mouseover",this)},Mouseout:function(r){return n.Handler(r,"Mouseout",this)},Click:function(r){return n.Handler(r,"Click",this)},DblClick:function(r){return n.Handler(r,"DblClick",this)},Menu:function(r){return n.Handler(r,"ContextMenu",this)},Handler:function(u,s,t){if(l.loadingMathMenu){return n.False(u)}var r=b[t.jaxID];if(!u){u=window.event}u.isContextMenu=(s==="ContextMenu");if(r[s]){return r[s](u,t)}if(i.MathZoom){return i.MathZoom.HandleEvent(u,s,t)}},False:function(r){if(!r){r=window.event}if(r){if(r.preventDefault){r.preventDefault()}if(r.stopPropagation){r.stopPropagation()}r.cancelBubble=true;r.returnValue=false}return false},ContextMenu:function(s,A,v){var x=b[A.jaxID],u=x.getJaxFromMath(A);var B=(x.config.showMathMenu!=null?x:d).config.showMathMenu;if(!B||(k.context!=="MathJax"&&!v)){return}if(c.msieEventBug){s=window.event||s}n.ClearSelection();f.ClearHoverTimer();if(u.hover){if(u.hover.remove){clearTimeout(u.hover.remove);delete u.hover.remove}u.hover.nofade=true}var t=MathJax.Menu;var C,z;if(t){if(t.loadingDomain){return n.False(s)}C=m.loadDomain("MathMenu");if(!C){t.jax=u;var r=t.menu.Find("Show Math As").menu;r.items[0].name=u.sourceMenuTitle;r.items[0].format=(u.sourceMenuFormat||"MathML");r.items[1].name=j[u.inputJax].sourceMenuTitle;var w=t.menu.Find("Math Settings","MathPlayer");w.hidden=!(u.outputJax==="NativeMML"&&d.Browser.hasMathPlayer);return t.menu.Post(s)}t.loadingDomain=true;z=function(){delete t.loadingDomain}}else{if(l.loadingMathMenu){return n.False(s)}l.loadingMathMenu=true;C=l.Require("[MathJax]/extensions/MathMenu.js");z=function(){delete l.loadingMathMenu;if(!MathJax.Menu){MathJax.Menu={}}}}var y={pageX:s.pageX,pageY:s.pageY,clientX:s.clientX,clientY:s.clientY};g.Queue(C,z,["ContextMenu",n,y,A,v]);return n.False(s)},AltContextMenu:function(t,s){var u=b[s.jaxID];var r=(u.config.showMathMenu!=null?u:d).config.showMathMenu;if(r){r=(u.config.showMathMenuMSIE!=null?u:d).config.showMathMenuMSIE;if(k.context==="MathJax"&&!k.mpContext&&r){if(!c.noContextMenuBug||t.button!==n.RIGHTBUTTON){return}}else{if(!t[n.MENUKEY]||t.button!==n.LEFTBUTTON){return}}return u.ContextMenu(t,s,true)}},ClearSelection:function(){if(c.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(document.selection){setTimeout("document.selection.empty()",0)}},getBBox:function(t){t.appendChild(c.topImg);var s=c.topImg.offsetTop,u=t.offsetHeight-s,r=t.offsetWidth;t.removeChild(c.topImg);return{w:r,h:s,d:u}}};var f=c.Hover={Mouseover:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.ReHover(r)}else{f.HoverTimer(r,s)}return n.False(t)}}},Mouseout:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.UnHover(r)}else{f.ClearHoverTimer()}return n.False(t)}}},Mousemove:function(t,s){if(k.discoverable||k.zoom==="Hover"){var r=this.getJaxFromMath(s);if(r.hover){return}if(f.lastX==t.clientX&&f.lastY==t.clientY){return}f.lastX=t.clientX;f.lastY=t.clientY;f.HoverTimer(r,s);return n.False(t)}},HoverTimer:function(r,s){this.ClearHoverTimer();this.hoverTimer=setTimeout(g(["Hover",this,r,s]),p.hover)},ClearHoverTimer:function(){if(this.hoverTimer){clearTimeout(this.hoverTimer);delete this.hoverTimer}},Hover:function(r,v){if(i.MathZoom&&i.MathZoom.Hover({},v)){return}var u=b[r.outputJax],w=u.getHoverSpan(r,v),z=u.getHoverBBox(r,w,v),x=(u.config.showMathMenu!=null?u:d).config.showMathMenu;var B=p.frame.x,A=p.frame.y,y=p.frame.bwidth;if(c.msieBorderWidthBug){y=0}r.hover={opacity:0,id:r.inputID+"-Hover"};var s=h.Element("span",{id:r.hover.id,isMathJax:true,style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{className:"MathJax_Hover_Frame",isMathJax:true,style:{display:"inline-block",position:"absolute",top:this.Px(-z.h-A-y-(z.y||0)),left:this.Px(-B-y+(z.x||0)),width:this.Px(z.w+2*B),height:this.Px(z.h+z.d+2*A),opacity:0,filter:"alpha(opacity=0)"}}]]);var t=h.Element("span",{isMathJax:true,id:r.hover.id+"Menu",style:{display:"inline-block","z-index":1,width:0,height:0,position:"relative"}},[["img",{className:"MathJax_Hover_Arrow",isMathJax:true,math:v,src:p.button.src,onclick:this.HoverMenu,jax:u.id,style:{left:this.Px(z.w+B+y+(z.x||0)+p.button.x),top:this.Px(-z.h-A-y-(z.y||0)-p.button.y),opacity:0,filter:"alpha(opacity=0)"}}]]);if(z.width){s.style.width=t.style.width=z.width;s.style.marginRight=t.style.marginRight="-"+z.width;s.firstChild.style.width=z.width;t.firstChild.style.left="";t.firstChild.style.right=this.Px(p.button.wx)}w.parentNode.insertBefore(s,w);if(x){w.parentNode.insertBefore(t,w)}if(w.style){w.style.position="relative"}this.ReHover(r)},ReHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}r.hover.remove=setTimeout(g(["UnHover",this,r]),p.fadeoutDelay);this.HoverFadeTimer(r,p.fadeinInc)},UnHover:function(r){if(!r.hover.nofade){this.HoverFadeTimer(r,-p.fadeoutInc,p.fadeoutStart)}},HoverFade:function(r){delete r.hover.timer;r.hover.opacity=Math.max(0,Math.min(1,r.hover.opacity+r.hover.inc));r.hover.opacity=Math.floor(1000*r.hover.opacity)/1000;var t=document.getElementById(r.hover.id),s=document.getElementById(r.hover.id+"Menu");t.firstChild.style.opacity=r.hover.opacity;t.firstChild.style.filter="alpha(opacity="+Math.floor(100*r.hover.opacity)+")";if(s){s.firstChild.style.opacity=r.hover.opacity;s.firstChild.style.filter=t.style.filter}if(r.hover.opacity===1){return}if(r.hover.opacity>0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.2",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); - -MathJax.OutputJax.SVG=MathJax.OutputJax({id:"SVG",version:"2.2",directory:MathJax.OutputJax.directory+"/SVG",extensionDir:MathJax.OutputJax.extensionDir+"/SVG",autoloadDir:MathJax.OutputJax.directory+"/SVG/autoload",fontDir:MathJax.OutputJax.directory+"/SVG/fonts",config:{scale:100,minScaleAdjust:50,font:"TeX",blacker:10,mtextFontInherit:false,undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",addMMLclasses:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_SVG_Display":{"text-align":"center",margin:"1em 0em"},"#MathJax_SVG_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",padding:"3px 4px","z-index":401}}}});if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax.SVG.Register("jax/mml")}MathJax.OutputJax.SVG.loadComplete("config.js"); - -MathJax.Extension.tex2jax={version:"2.2",config:{inlineMath:[["\\(","\\)"]],displayMath:[["$$","$$"],["\\[","\\]"]],balanceBraces:true,skipTags:["script","noscript","style","textarea","pre","code"],ignoreClass:"tex2jax_ignore",processClass:"tex2jax_process",processEscapes:false,processEnvironments:true,processRefs:true,preview:"TeX"},PreProcess:function(a){if(!this.configured){this.config=MathJax.Hub.CombineConfig("tex2jax",this.config);if(this.config.Augment){MathJax.Hub.Insert(this,this.config.Augment)}if(typeof(this.config.previewTeX)!=="undefined"&&!this.config.previewTeX){this.config.preview="none"}this.configured=true}if(typeof(a)==="string"){a=document.getElementById(a)}if(!a){a=document.body}if(this.createPatterns()){this.scanElement(a,a.nextSibling)}},createPatterns:function(){var d=[],e=[],c,a,b=this.config;this.match={};for(c=0,a=b.inlineMath.length;c0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -(function(d,h,l,g,m,b,j){var q="2.2";var i=MathJax.Extension;var c=i.MathEvents={version:q};var k=d.config.menuSettings;var p={hover:500,frame:{x:3.5,y:5,bwidth:1,bcolor:"#A6D",hwidth:"15px",hcolor:"#83A"},button:{x:-4,y:-3,wx:-2,src:l.fileURL(b.imageDir+"/MenuArrow-15.png")},fadeinInc:0.2,fadeoutInc:0.05,fadeDelay:50,fadeoutStart:400,fadeoutDelay:15*1000,styles:{".MathJax_Hover_Frame":{"border-radius":".25em","-webkit-border-radius":".25em","-moz-border-radius":".25em","-khtml-border-radius":".25em","box-shadow":"0px 0px 15px #83A","-webkit-box-shadow":"0px 0px 15px #83A","-moz-box-shadow":"0px 0px 15px #83A","-khtml-box-shadow":"0px 0px 15px #83A",border:"1px solid #A6D ! important",display:"inline-block",position:"absolute"},".MathJax_Hover_Arrow":{position:"absolute",width:"15px",height:"11px",cursor:"pointer"}}};var n=c.Event={LEFTBUTTON:0,RIGHTBUTTON:2,MENUKEY:"altKey",Mousedown:function(r){return n.Handler(r,"Mousedown",this)},Mouseup:function(r){return n.Handler(r,"Mouseup",this)},Mousemove:function(r){return n.Handler(r,"Mousemove",this)},Mouseover:function(r){return n.Handler(r,"Mouseover",this)},Mouseout:function(r){return n.Handler(r,"Mouseout",this)},Click:function(r){return n.Handler(r,"Click",this)},DblClick:function(r){return n.Handler(r,"DblClick",this)},Menu:function(r){return n.Handler(r,"ContextMenu",this)},Handler:function(u,s,t){if(l.loadingMathMenu){return n.False(u)}var r=b[t.jaxID];if(!u){u=window.event}u.isContextMenu=(s==="ContextMenu");if(r[s]){return r[s](u,t)}if(i.MathZoom){return i.MathZoom.HandleEvent(u,s,t)}},False:function(r){if(!r){r=window.event}if(r){if(r.preventDefault){r.preventDefault()}if(r.stopPropagation){r.stopPropagation()}r.cancelBubble=true;r.returnValue=false}return false},ContextMenu:function(s,A,v){var x=b[A.jaxID],u=x.getJaxFromMath(A);var B=(x.config.showMathMenu!=null?x:d).config.showMathMenu;if(!B||(k.context!=="MathJax"&&!v)){return}if(c.msieEventBug){s=window.event||s}n.ClearSelection();f.ClearHoverTimer();if(u.hover){if(u.hover.remove){clearTimeout(u.hover.remove);delete u.hover.remove}u.hover.nofade=true}var t=MathJax.Menu;var C,z;if(t){if(t.loadingDomain){return n.False(s)}C=m.loadDomain("MathMenu");if(!C){t.jax=u;var r=t.menu.Find("Show Math As").menu;r.items[0].name=u.sourceMenuTitle;r.items[0].format=(u.sourceMenuFormat||"MathML");r.items[1].name=j[u.inputJax].sourceMenuTitle;var w=t.menu.Find("Math Settings","MathPlayer");w.hidden=!(u.outputJax==="NativeMML"&&d.Browser.hasMathPlayer);return t.menu.Post(s)}t.loadingDomain=true;z=function(){delete t.loadingDomain}}else{if(l.loadingMathMenu){return n.False(s)}l.loadingMathMenu=true;C=l.Require("[MathJax]/extensions/MathMenu.js");z=function(){delete l.loadingMathMenu;if(!MathJax.Menu){MathJax.Menu={}}}}var y={pageX:s.pageX,pageY:s.pageY,clientX:s.clientX,clientY:s.clientY};g.Queue(C,z,["ContextMenu",n,y,A,v]);return n.False(s)},AltContextMenu:function(t,s){var u=b[s.jaxID];var r=(u.config.showMathMenu!=null?u:d).config.showMathMenu;if(r){r=(u.config.showMathMenuMSIE!=null?u:d).config.showMathMenuMSIE;if(k.context==="MathJax"&&!k.mpContext&&r){if(!c.noContextMenuBug||t.button!==n.RIGHTBUTTON){return}}else{if(!t[n.MENUKEY]||t.button!==n.LEFTBUTTON){return}}return u.ContextMenu(t,s,true)}},ClearSelection:function(){if(c.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(document.selection){setTimeout("document.selection.empty()",0)}},getBBox:function(t){t.appendChild(c.topImg);var s=c.topImg.offsetTop,u=t.offsetHeight-s,r=t.offsetWidth;t.removeChild(c.topImg);return{w:r,h:s,d:u}}};var f=c.Hover={Mouseover:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.ReHover(r)}else{f.HoverTimer(r,s)}return n.False(t)}}},Mouseout:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.UnHover(r)}else{f.ClearHoverTimer()}return n.False(t)}}},Mousemove:function(t,s){if(k.discoverable||k.zoom==="Hover"){var r=this.getJaxFromMath(s);if(r.hover){return}if(f.lastX==t.clientX&&f.lastY==t.clientY){return}f.lastX=t.clientX;f.lastY=t.clientY;f.HoverTimer(r,s);return n.False(t)}},HoverTimer:function(r,s){this.ClearHoverTimer();this.hoverTimer=setTimeout(g(["Hover",this,r,s]),p.hover)},ClearHoverTimer:function(){if(this.hoverTimer){clearTimeout(this.hoverTimer);delete this.hoverTimer}},Hover:function(r,v){if(i.MathZoom&&i.MathZoom.Hover({},v)){return}var u=b[r.outputJax],w=u.getHoverSpan(r,v),z=u.getHoverBBox(r,w,v),x=(u.config.showMathMenu!=null?u:d).config.showMathMenu;var B=p.frame.x,A=p.frame.y,y=p.frame.bwidth;if(c.msieBorderWidthBug){y=0}r.hover={opacity:0,id:r.inputID+"-Hover"};var s=h.Element("span",{id:r.hover.id,isMathJax:true,style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{className:"MathJax_Hover_Frame",isMathJax:true,style:{display:"inline-block",position:"absolute",top:this.Px(-z.h-A-y-(z.y||0)),left:this.Px(-B-y+(z.x||0)),width:this.Px(z.w+2*B),height:this.Px(z.h+z.d+2*A),opacity:0,filter:"alpha(opacity=0)"}}]]);var t=h.Element("span",{isMathJax:true,id:r.hover.id+"Menu",style:{display:"inline-block","z-index":1,width:0,height:0,position:"relative"}},[["img",{className:"MathJax_Hover_Arrow",isMathJax:true,math:v,src:p.button.src,onclick:this.HoverMenu,jax:u.id,style:{left:this.Px(z.w+B+y+(z.x||0)+p.button.x),top:this.Px(-z.h-A-y-(z.y||0)-p.button.y),opacity:0,filter:"alpha(opacity=0)"}}]]);if(z.width){s.style.width=t.style.width=z.width;s.style.marginRight=t.style.marginRight="-"+z.width;s.firstChild.style.width=z.width;t.firstChild.style.left="";t.firstChild.style.right=this.Px(p.button.wx)}w.parentNode.insertBefore(s,w);if(x){w.parentNode.insertBefore(t,w)}if(w.style){w.style.position="relative"}this.ReHover(r)},ReHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}r.hover.remove=setTimeout(g(["UnHover",this,r]),p.fadeoutDelay);this.HoverFadeTimer(r,p.fadeinInc)},UnHover:function(r){if(!r.hover.nofade){this.HoverFadeTimer(r,-p.fadeoutInc,p.fadeoutStart)}},HoverFade:function(r){delete r.hover.timer;r.hover.opacity=Math.max(0,Math.min(1,r.hover.opacity+r.hover.inc));r.hover.opacity=Math.floor(1000*r.hover.opacity)/1000;var t=document.getElementById(r.hover.id),s=document.getElementById(r.hover.id+"Menu");t.firstChild.style.opacity=r.hover.opacity;t.firstChild.style.filter="alpha(opacity="+Math.floor(100*r.hover.opacity)+")";if(s){s.firstChild.style.opacity=r.hover.opacity;s.firstChild.style.filter=t.style.filter}if(r.hover.opacity===1){return}if(r.hover.opacity>0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g=p.SVGlast+p.SVGchunk){this.postTranslate(p);p.SVGchunk=Math.floor(p.SVGchunk*this.config.EqnChunkFactor);p.SVGdelay=true}}},postTranslate:function(q){var l=q.jax[this.id];if(!this.hideProcessedMath){return}for(var o=q.SVGlast,k=q.SVGeqn;o=55296&&o<56319){t++;o=(((o-55296)<<10)+(C.charCodeAt(t)-56320))+65536;if(this.FONTDATA.RemapPlane1){var w=this.FONTDATA.RemapPlane1(o,s);o=w.n;s=w.variant}}else{k=this.FONTDATA.RANGES;for(l=0,y=k.length;l=k[l].low&&o<=k[l].high){if(k[l].remap&&k[l].remap[o]){o=x+k[l].remap[o]}else{o=o-k[l].low+x;if(k[l].add){o+=k[l].add}}if(s["variant"+k[l].offset]){s=this.FONTDATA.VARIANT[s["variant"+k[l].offset]]}break}}}if(s.remap&&s.remap[o]){if(s.remap[o] instanceof Array){var B=s.remap[o];o=B[0];s=this.FONTDATA.VARIANT[B[1]]}else{if(typeof(s.remap[o])==="string"){C=s.remap[o]+C.substr(t+1);t=0;q=C.length;o=C.charCodeAt(0)}else{o=s.remap[o];if(s.remap.variant){s=this.FONTDATA.VARIANT[s.remap.variant]}}}}if(this.FONTDATA.REMAP[o]&&!s.noRemap){o=this.FONTDATA.REMAP[o];if(o instanceof Array){s=this.FONTDATA.VARIANT[o[1]];o=o[0]}if(typeof(o)==="string"){C=o+C.substr(t+1);t=0;q=C.length;o=o.charCodeAt(0)}}p=this.lookupChar(s,o);z=p[o];if(z){if(z[5]&&z[5].space){v.w+=z[2]}else{z=[r,p.id+"-"+o.toString(16).toUpperCase()].concat(z);v.Add(i.GLYPH.apply(i,z),v.w,0)}}else{if(this.FONTDATA.DELIMITERS[o]){z=this.createDelimiter(o,0,1,p);v.Add(z,v.w,(this.FONTDATA.DELIMITERS[o].dir==="V"?z.d:0))}else{if(o<=65535){z=String.fromCharCode(o)}else{x=o-65536;z=String.fromCharCode((x>>10)+55296)+String.fromCharCode((x&1023)+56320)}var u=i.TEXT(r,z,{"font-family":s.defaultFamily||a.config.undefinedFamily,"font-style":(s.italic?"italic":""),"font-weight":(s.bold?"bold":"")});if(s.h!=null){u.h=s.h}if(s.d!=null){u.d=s.d}z=i.G();z.Add(u);v.Add(z,v.w,0);c.signal.Post(["SVG Jax - unknown char",o,s])}}}if(C.length==1&&p.skew&&p.skew[o]){v.skew=p.skew[o]*1000}if(v.element.childNodes.length===1){v.element=v.element.firstChild;v.removeable=false;v.scale=r}return v},lookupChar:function(p,s){var o,k;if(!p.FONTS){var r=this.FONTDATA.FONTS;var q=(p.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(q instanceof Array)){q=[q]}if(p.fonts!=q){p.fonts=q}p.FONTS=[];for(o=0,k=q.length;o=0;n--){if(l.Ranges[n][2]==o){l.Ranges.splice(n,1)}}this.loadFont(l.directory+"/"+o+".js")}}}},loadFont:function(k){c.RestartAfter(h.Require(this.fontDir+"/"+k))},createDelimiter:function(k,n,q,o){if(!q){q=1}var s=i.G();if(!k){s.Clean();delete s.element;s.w=s.r=this.TeX.nulldelimiterspace*q;return s}if(!(n instanceof Array)){n=[n,n]}var t=n[1];n=n[0];var l={alias:k};while(l.alias){k=l.alias;l=this.FONTDATA.DELIMITERS[k];if(!l){l={HW:[0,this.FONTDATA.VARIANT[g.VARIANT.NORMAL]]}}}if(l.load){c.RestartAfter(h.Require(this.fontDir+"/fontdata-"+l.load+".js"))}for(var r=0,p=l.HW.length;r=n-10-a.config.blacker||(r==p-1&&!l.stretch)){if(l.HW[r][2]){q*=l.HW[r][2]}if(l.HW[r][3]){k=l.HW[r][3]}return this.createChar(q,[k,l.HW[r][1]],o).With({stretched:true})}}if(l.stretch){this["extendDelimiter"+l.dir](s,t,l.stretch,q,o)}return s},createChar:function(s,q,n){var r="",p={fonts:[q[1]],noRemap:true};if(n&&n===g.VARIANT.BOLD){p.fonts=[q[1]+"-bold",q[1]]}if(typeof(q[1])!=="string"){p=q[1]}if(q[0] instanceof Array){for(var o=0,k=q[0].length;oq){var l=this.createChar(o,m.ext,n);var p=(m.mid?2:1),v=(A-q)/p,B=(v+100)/(l.h+l.d);while(p-->0){var t=a.Element("g",{transform:"translate("+l.y+","+(w-B*l.h+50+l.y)+") scale(1,"+B+")"});t.appendChild(l.element.cloneNode(false));r.element.appendChild(t);w-=v;if(m.mid&&p){r.Add(z,0,w-z.h);w-=(z.h+z.d)}}}else{if(m.mid){w+=(q-A)/2;r.Add(z,0,w-z.h);w+=-(z.h+z.d)+(q-A)/2}else{w+=(q-A)}}r.Add(u,0,w-u.h);r.Clean();r.scale=o;r.isMultiChar=true},extendDelimiterH:function(t,o,m,q,n){var p=this.createChar(q,(m.left||m.rep),n);var C=this.createChar(q,(m.right||m.rep),n);t.Add(p,-p.l,0);var B=(p.r-p.l)+(C.r-C.l),z=p.r-p.l;if(m.mid){var A=this.createChar(q,m.mid,n);B+=A.w}if(m.min&&oB){var y=this.createChar(q,m.rep,n),l=m.fuzz||0;var r=(m.mid?2:1),v=(o-B)/r,D=(v+l)/(y.r-y.l);while(r-->0){var u=a.Element("g",{transform:"translate("+(z-l/2-D*y.l+y.x)+","+y.y+") scale("+D+",1)"});u.appendChild(y.element.cloneNode(false));t.element.appendChild(u);z+=v;if(m.mid&&r){t.Add(A,z,0);z+=A.w}}}else{if(m.mid){z-=(B-o)/2;t.Add(A,z,0);z+=A.w-(B-o)/2}else{z-=(B-o)}}t.Add(C,z-C.l,0);t.Clean();t.scale=q;t.isMultiChar=true},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:430.554,quad:1000,num1:676.508,num2:393.732,num3:443.73,denom1:685.951,denom2:344.841,sup1:412.892,sup2:362.892,sup3:288.888,sub1:150,sub2:247.217,sup_drop:386.108,sub_drop:50,delim1:2390,delim2:1000,axis_height:250,rule_thickness:60,big_op_spacing1:111.111,big_op_spacing2:166.666,big_op_spacing3:200,big_op_spacing4:600,big_op_spacing5:100,scriptspace:100,nulldelimiterspace:120,delimiterfactor:901,delimitershortfall:100,min_rule_thickness:1.25,min_root_space:1.5},BIGDIMEN:10000000,NBSP:"\u00A0"});var i=a.BBOX=MathJax.Object.Subclass({type:"g",removeable:true,Init:function(k){this.h=this.d=-a.BIGDIMEN;this.H=this.D=0;this.w=this.r=0;this.l=a.BIGDIMEN;this.x=this.y=0;this.scale=1;this.n=0;if(this.type){this.element=a.Element(this.type,k)}},With:function(k){return c.Insert(this,k)},Add:function(n,m,l,p,o){if(m){n.x+=m}if(l){n.y+=l}if(n.element){if(n.removeable&&n.element.childNodes.length===1&&n.n===1){var r=n.element.firstChild;if(r.nodeName==="use"||r.nodeName==="rect"){n.element=r;n.scale=n.childScale;var k=n.childX,q=n.childY;n.x+=k;n.y+=q;n.h-=q;n.d+=q;n.H-=q;n.D+=q;n.w-=k;n.r-=k;n.l+=k;n.removeable=false}}if(Math.abs(n.x)<1&&Math.abs(n.y)<1){n.remove=n.removeable}else{if(n.element.nodeName==="g"){if(!n.element.firstChild){n.remove=n.removeable}else{n.element.setAttribute("transform","translate("+Math.floor(n.x)+","+Math.floor(n.y)+")")}}else{if(n.element.nodeName==="line"||n.element.nodeName==="polygon"||n.element.nodeName==="path"||n.element.nodeName==="a"){n.element.setAttribute("transform","translate("+Math.floor(n.x)+","+Math.floor(n.y)+")")}else{n.element.setAttribute("x",Math.floor(n.x/n.scale));n.element.setAttribute("y",Math.floor(n.y/n.scale))}}}if(n.remove){this.n+=n.n;while(n.element.firstChild){if(o&&this.element.firstChild){this.element.insertBefore(n.element.firstChild,this.element.firstChild)}else{this.element.appendChild(n.element.firstChild)}}}else{if(o){this.element.insertBefore(n.element,this.element.firstChild)}else{this.element.appendChild(n.element)}}delete n.element}if(n.hasIndent){this.hasIndent=n.hasIndent}if(n.d-n.y>this.d){this.d=n.d-n.y;if(this.d>this.D){this.D=this.d}}if(n.y+n.h>this.h){this.h=n.y+n.h;if(this.h>this.H){this.H=this.h}}if(n.D-n.y>this.D){this.D=n.D-n.y}if(n.y+n.H>this.H){this.H=n.y+n.H}if(n.x+n.lthis.r){this.r=n.x+n.r}if(p||n.x+n.w+(n.X||0)>this.w){this.w=n.x+n.w+(n.X||0)}this.childScale=n.scale;this.childX=n.x;this.childY=n.y;this.n++;return n},Align:function(m,n,l,k){l=({left:l,center:(this.w-m.w)/2,right:this.w-m.w-l})[n]||0;this.Add(m,l,k)},Clean:function(){if(this.h===-a.BIGDIMEN){this.h=this.d=this.l=0}return this}});i.ROW=i.Subclass({Init:function(){this.SUPER(arguments).Init.call(this);this.svg=[];this.sh=this.sd=0},Check:function(l){var k=l.toSVG();this.svg.push(k);if(l.SVGcanStretch("Vertical")){k.mml=l}if(k.h>this.sh){this.sh=k.h}if(k.d>this.sd){this.sd=k.d}},Stretch:function(){for(var o=0,k=this.svg.length;ol.w&&p.length===1&&!o.noIC){l.ic=l.r-l.w;l.w=l.r}this.SVGhandleColor(l);this.SVGsaveData(l);return l},SVGchildSVG:function(k){return(this.data[k]?this.data[k].toSVG():i())},SVGdataStretched:function(l,k,m){this.SVGdata={HW:k,D:m};if(!this.data[l]){return i()}if(m!=null){return this.data[l].SVGstretchV(k,m)}if(k!=null){return this.data[l].SVGstretchH(k)}return this.data[l].toSVG()},SVGsaveData:function(l){if(!this.SVGdata){this.SVGdata={}}this.SVGdata.w=l.w,this.SVGdata.x=l.x;this.SVGdata.h=l.h,this.SVGdata.d=l.d;if(l.X!=null){this.SVGdata.X=l.X}if(this["class"]){l.removeable=false;a.Element(l.element,{"class":this["class"]})}if(this.id){l.removeable=false;a.Element(l.element,{id:this.id})}if(this.href){var k=a.Element("a",{"class":"mjx-svg-href"});k.setAttributeNS(j,"href",this.href);k.onclick=this.SVGlink;a.addElement(k,"rect",{width:l.w,height:l.h+l.d,y:-l.d,fill:"none",stroke:"none","pointer-events":"all"});if(l.type==="svg"){var n=l.element.firstChild;while(n.firstChild){k.appendChild(n.firstChild)}n.appendChild(k)}else{k.appendChild(l.element);l.element=k}l.removeable=false}if(a.config.addMMLclasses){this.SVGaddClass(l.element,"mjx-svg-"+this.type);l.removeable=false}var m=this.style;if(m&&l.element){l.element.style.cssText=m;if(l.element.style.fontSize){l.element.style.fontSize=""}l.element.style.border=l.element.style.padding="";if(l.removeable){l.removeable=l.element.style.cssText===""}}},SVGaddClass:function(m,k){var l=m.getAttribute("class");m.setAttribute("class",(l?l+" ":"")+k)},SVGlink:function(){var k=this.href.animVal;if(k.charAt(0)==="#"){var l=a.hashCheck(document.getElementById(k.substr(1)));if(l&&l.scrollIntoView){setTimeout(function(){l.parentNode.scrollIntoView(true)},1)}}document.location=k},SVGgetStyles:function(){if(this.style){var k=e.Element("span");k.style.cssText=this.style;this.styles={border:a.getBorders(k),padding:a.getPadding(k)};if(k.style.fontSize){this.styles.fontSize=k.style.fontSize}if(k.style.color){this.styles.color=k.style.color}if(k.style.backgroundColor){this.styles.background=k.style.backgroundColor}if(k.style.fontStyle){this.styles.fontStyle=k.style.fontStyle}if(k.style.fontWeight){this.styles.fontWeight=k.style.fontWeight}if(k.style.fontFamily){this.styles.fontFamily=k.style.fontFamily}if(this.styles.fontWeight&&this.styles.fontWeight.match(/^\d+$/)){this.styles.fontWeight=(parseInt(this.styles.fontWeight)>600?"bold":"normal")}}},SVGhandleSpace:function(n){if(this.useMMLspacing){if(this.type!=="mo"){return}var m=this.getValues("scriptlevel","lspace","rspace");if(m.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){var l=this.SVGgetMu(n);m.lspace=Math.max(0,a.length2em(m.lspace,l));m.rspace=Math.max(0,a.length2em(m.rspace,l));var k=this,o=this.Parent();while(o&&o.isEmbellished()&&o.Core()===k){k=o;o=o.Parent()}if(m.lspace){n.x+=m.lspace}if(m.rspace){n.X=m.rspace}}}else{var p=this.texSpacing();if(p!==""){n.x+=a.length2em(p,this.SVGgetScale())/n.scale}}},SVGhandleColor:function(o){var w=this.getValues("mathcolor","color");if(this.styles&&this.styles.color&&!w.color){w.color=this.styles.color}if(w.color&&!this.mathcolor){w.mathcolor=w.color}if(w.mathcolor){a.Element(o.element,{fill:w.mathcolor,stroke:w.mathcolor});o.removeable=false}var s=(this.styles||{}).border,u=(this.styles||{}).padding,t=((s||{}).left||0),q=((u||{}).left||0),k;w.background=(this.mathbackground||this.background||(this.styles||{}).background||g.COLOR.TRANSPARENT);if(t+q){var l=i();for(k in o){if(o.hasOwnProperty(k)){l[k]=o[k]}}l.x=0;l.y=0;o.element=a.Element("g");o.removeable=true;o.Add(l,t+q,0)}if(u){o.w+=u.right;o.h+=u.top;o.d+=u.bottom}if(s){o.w+=s.right;o.h+=s.top;o.d+=s.bottom}if(w.background!==g.COLOR.TRANSPARENT){if(o.element.nodeName!=="g"&&o.element.nodeName!=="svg"){var p=a.Element("g");p.appendChild(o.element);o.element=p;o.removeable=true}o.Add(i.RECT(o.h,o.d,o.w,{fill:w.background,stroke:"none"}),0,0,false,true)}if(s){var v=5;var m={left:["V",o.h+o.d,-v,-o.d],right:["V",o.h+o.d,o.w-s.right+v,-o.d],top:["H",o.w,0,o.h-s.top+v],bottom:["H",o.w,0,-o.d-v]};for(k in m){if(m.hasOwnProperty(k)){if(s[k]){var r=m[k],n=i[r[0]+"LINE"];o.Add(n(r[1],s[k],s[k+"Style"],s[k+"Color"]),r[2],r[3])}}}}},SVGhandleVariant:function(k,m,l){return a.HandleVariant(k,m,l)},SVGgetVariant:function(){var k=this.getValues("mathvariant","fontfamily","fontweight","fontstyle");var l=k.mathvariant;if(this.variantForm){l="-TeX-variant"}k.hasVariant=this.Get("mathvariant",true);if(!k.hasVariant){k.family=k.fontfamily;k.weight=k.fontweight;k.style=k.fontstyle}if(this.styles){if(!k.style&&this.styles.fontStyle){k.style=this.styles.fontStyle}if(!k.weight&&this.styles.fontWeight){k.weight=this.styles.fontWeight}if(!k.family&&this.styles.fontFamily){k.family=this.styles.fontFamily}}if(k.family&&!k.hasVariant){if(!k.weight&&k.mathvariant.match(/bold/)){k.weight="bold"}if(!k.style&&k.mathvariant.match(/italic/)){k.style="italic"}l={forceFamily:true,font:{"font-family":k.family}};if(k.style){l.font["font-style"]=k.style}if(k.weight){l.font["font-weight"]=k.weight}return l}if(k.weight==="bold"){l={normal:g.VARIANT.BOLD,italic:g.VARIANT.BOLDITALIC,fraktur:g.VARIANT.BOLDFRAKTUR,script:g.VARIANT.BOLDSCRIPT,"sans-serif":g.VARIANT.BOLDSANSSERIF,"sans-serif-italic":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.weight==="normal"){l={bold:g.VARIANT.normal,"bold-italic":g.VARIANT.ITALIC,"bold-fraktur":g.VARIANT.FRAKTUR,"bold-script":g.VARIANT.SCRIPT,"bold-sans-serif":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.SANSSERIFITALIC}[l]||l}}if(k.style==="italic"){l={normal:g.VARIANT.ITALIC,bold:g.VARIANT.BOLDITALIC,"sans-serif":g.VARIANT.SANSSERIFITALIC,"bold-sans-serif":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.style==="normal"){l={italic:g.VARIANT.NORMAL,"bold-italic":g.VARIANT.BOLD,"sans-serif-italic":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.BOLDSANSSERIF}[l]||l}}if(!(l in a.FONTDATA.VARIANT)){l="normal"}return a.FONTDATA.VARIANT[l]},SVGgetScale:function(){var l=1,k=this.getValues("mathsize","scriptlevel","fontsize");if((this.styles||{}).fontSize&&!k.fontsize){k.fontsize=this.styles.fontSize}if(k.fontsize&&!this.mathsize){k.mathsize=k.fontsize}if(k.scriptlevel!==0){if(k.scriptlevel>2){k.scriptlevel=2}l=Math.pow(this.Get("scriptsizemultiplier"),k.scriptlevel);k.scriptminsize=a.length2em(this.Get("scriptminsize"))/1000;if(l2){l.scriptlevel=2}k=Math.sqrt(Math.pow(l.scriptsizemultiplier,l.scriptlevel))}return k},SVGnotEmpty:function(k){while(k){if((k.type!=="mrow"&&k.type!=="texatom")||k.data.length>1){return true}k=k.data[0]}return false},SVGcanStretch:function(k){if(this.isEmbellished()){return this.Core().SVGcanStretch(k)}return false},SVGstretchV:function(k,l){return this.toSVG(k,l)},SVGstretchH:function(k){return this.toSVG(k)},SVGlineBreaks:function(){return false}},{SVGautoload:function(){var k=a.autoloadDir+"/"+this.type+".js";c.RestartAfter(h.Require(k))},SVGautoloadFile:function(k){var l=a.autoloadDir+"/"+k+".js";c.RestartAfter(h.Require(l))}});g.chars.Augment({toSVG:function(l,o,k,m){var n=this.data.join("").replace(/[\u2061-\u2064]/g,"");if(k){n=k(n,m)}return this.SVGhandleVariant(l,o,n)}});g.entity.Augment({toSVG:function(l,o,k,m){var n=this.toString().replace(/[\u2061-\u2064]/g,"");if(k){n=k(n,m)}return this.SVGhandleVariant(l,o,n)}});g.mo.Augment({toSVG:function(l,k){this.SVGgetStyles();var t=this.svg=this.SVG();this.SVGhandleSpace(t);if(this.data.length==0){t.Clean();this.SVGsaveData(t);return t}if(k!=null){return this.SVGstretchV(l,k)}else{if(l!=null){return this.SVG.strechH(l)}}var p=this.SVGgetScale(),r=this.SVGgetVariant();var z=this.getValues("largeop","displaystyle");if(z.largeop){r=a.FONTDATA.VARIANT[z.displaystyle?"-largeOp":"-smallOp"]}var y=this.CoreParent(),q=(y&&y.isa(g.msubsup)&&this!==y.data[0]),n=(q?this.SVGremapChars:null);if(this.data.join("").length===1&&y&&y.isa(g.munderover)&&this.CoreText(y.data[y.base]).length===1){var u=y.data[y.over],w=y.data[y.under];if(u&&this===u.CoreMO()&&y.Get("accent")){n=a.FONTDATA.REMAPACCENT}else{if(w&&this===w.CoreMO()&&y.Get("accentunder")){n=a.FONTDATA.REMAPACCENTUNDER}}}if(q&&this.data.join("").match(/['`"\u00B4\u2032-\u2037\u2057]/)){r=a.FONTDATA.VARIANT["-TeX-variant"]}for(var s=0,o=this.data.length;s10*A.w){v+=-A.l}t.Add(A,v,0,true);if(A.skew){t.skew=A.skew}}}t.Clean();if(this.data.join("").length!==1){delete t.skew}if(z.largeop){t.y=(t.h-t.d)/2/p-a.TeX.axis_height;if(t.r>t.w){t.ic=t.r-t.w;t.w=t.r}}this.SVGhandleColor(t);this.SVGsaveData(t);return t},CoreParent:function(){var k=this;while(k&&k.isEmbellished()&&k.CoreMO()===this&&!k.isa(g.math)){k=k.Parent()}return k},CoreText:function(k){if(!k){return""}if(k.isEmbellished()){return k.CoreMO().data.join("")}while((k.isa(g.mrow)||k.isa(g.TeXAtom)||k.isa(g.mstyle)||k.isa(g.mphantom))&&k.data.length===1&&k.data[0]){k=k.data[0]}if(!k.isToken){return""}else{return k.data.join("")}},SVGremapChars:{"*":"\u2217",'"':"\u2033","\u00B0":"\u2218","\u00B2":"2","\u00B3":"3","\u00B4":"\u2032","\u00B9":"1"},SVGremap:function(l,k){l=l.replace(/-/g,"\u2212");if(k){l=l.replace(/'/g,"\u2032").replace(/`/g,"\u2035");if(l.length===1){l=k[l]||l}}return l},SVGcanStretch:function(o){if(!this.Get("stretchy")){return false}var p=this.data.join("");if(p.length>1){return false}var l=this.CoreParent();if(l&&l.isa(g.munderover)&&this.CoreText(l.data[l.base]).length===1){var n=l.data[l.over],k=l.data[l.under];if(n&&this===n.CoreMO()&&l.Get("accent")){p=a.FONTDATA.REMAPACCENT[p]||p}else{if(k&&this===k.CoreMO()&&l.Get("accentunder")){p=a.FONTDATA.REMAPACCENTUNDER[p]||p}}}p=a.FONTDATA.DELIMITERS[p.charCodeAt(0)];var m=(p&&p.dir==o.substr(0,1));if(!m){delete this.svg}return m},SVGstretchV:function(p,q){var m=this.svg||this.toSVG();var l=this.getValues("symmetric","maxsize","minsize");var o=a.TeX.axis_height,k=this.SVGgetMu(m),n;if(l.symmetric){n=2*Math.max(p-o,q+o)}else{n=p+q}l.maxsize=a.length2em(l.maxsize,k,m.h+m.d);l.minsize=a.length2em(l.minsize,k,m.h+m.d);n=Math.max(l.minsize,Math.min(l.maxsize,n));m=a.createDelimiter(this.data.join("").charCodeAt(0),n,m.scale);if(l.symmetric){n=(m.h+m.d)/2+o}else{n=(m.h+m.d)*p/(p+q)}m.y=n-m.h;this.SVGhandleSpace(m);this.SVGhandleColor(m);delete this.svg.element;this.SVGsaveData(m);return m},SVGstretchH:function(l){var n=this.svg||this.toSVG(),k=this.SVGgetMu(n);var m=this.getValues("maxsize","minsize","mathvariant","fontweight");if((m.fontweight==="bold"||parseInt(m.fontweight)>=600)&&!this.Get("mathvariant",true)){m.mathvariant=g.VARIANT.BOLD}m.maxsize=a.length2em(m.maxsize,k,n.w);m.minsize=a.length2em(m.minsize,k,n.w);l=Math.max(m.minsize,Math.min(m.maxsize,l));n=a.createDelimiter(this.data.join("").charCodeAt(0),l,n.scale,m.mathvariant);this.SVGhandleSpace(n);this.SVGhandleColor(n);delete this.svg.element;this.SVGsaveData(n);return n}});g.mtext.Augment({toSVG:function(){this.SVGgetStyles();var k,o,n=this.SVGgetScale();if(this.Parent().type==="merror"){k=this.SVG();this.SVGhandleSpace(k);o=i.G();o.Add(i.TEXT(0.9*n,this.data.join(""),{fill:"#C00"}));k.Add(i.RECT(o.h+100,o.d+100,o.w+200,{fill:"#FF8",stroke:"#C00","stroke-width":50}),0,0);k.Add(o,150,0);k.H+=150;k.D+=50;k.Clean();this.SVGsaveData(k);return k}else{if(a.config.mtextFontInherit){k=this.SVG();this.SVGhandleSpace(k);var l=this.SVGgetVariant(),m={};if(l.bold){m["font-weight"]="bold"}if(l.italic){m["font-style"]="italic"}k.Add(i.TEXT(n,this.data.join(""),m));k.Clean();this.SVGhandleColor(k);this.SVGsaveData(k);return k}else{return this.SUPER(arguments).toSVG.call(this)}}}});g.ms.Augment({toSVG:g.mbase.SVGautoload});g.mglyph.Augment({toSVG:g.mbase.SVGautoload});g.mspace.Augment({toSVG:function(){this.SVGgetStyles();var m=this.getValues("height","depth","width");m.mathbackground=this.mathbackground;if(this.background&&!this.mathbackground){m.mathbackground=this.background}var l=this.SVG(),k=this.SVGgetMu(l);l.h=a.length2em(m.height,k)/l.scale;l.d=a.length2em(m.depth,k)/l.scale;l.w=l.r=a.length2em(m.width,k)/l.scale;if(l.w<0){l.x=l.w;l.w=l.r=0}if(l.h<-l.d){l.d=-l.h}l.l=0;l.Clean();this.SVGhandleColor(l);this.SVGsaveData(l);return l}});g.mphantom.Augment({toSVG:function(k,m){this.SVGgetStyles();var l=this.SVG();if(this.data[0]!=null){this.SVGhandleSpace(l);l.Add(this.SVGdataStretched(0,k,m));l.Clean();while(l.element.firstChild){l.element.removeChild(l.element.firstChild)}}this.SVGhandleColor(l);this.SVGsaveData(l);if(l.removeable&&!l.element.firstChild){delete l.element}return l}});g.mpadded.Augment({toSVG:function(l,k){this.SVGgetStyles();var o=this.SVG();if(this.data[0]!=null){this.SVGhandleSpace(o);var m=this.SVGdataStretched(0,l,k),u=this.SVGgetMu(o);var t=this.getValues("height","depth","width","lspace","voffset"),r=0,q=0;if(t.lspace){r=this.SVGlength2em(m,t.lspace,u)}if(t.voffset){q=this.SVGlength2em(m,t.voffset,u)}var n=m.h,p=m.d,s=m.w;o.Add(m,r,q);o.Clean();o.h=n;o.d=p;o.w=s;o.removeable=false;if(t.height!==""){o.h=this.SVGlength2em(o,t.height,u,"h",0)}if(t.depth!==""){o.d=this.SVGlength2em(o,t.depth,u,"d",0)}if(t.width!==""){o.w=this.SVGlength2em(o,t.width,u,"w",0)}if(o.h>o.H){o.H=o.h}if(o.d>o.D){o.D=o.d}}this.SVGhandleColor(o);this.SVGsaveData(o);return o},SVGlength2em:function(o,r,l,s,k){if(k==null){k=-a.BIGDIMEN}var p=String(r).match(/width|height|depth/);var q=(p?o[p[0].charAt(0)]:(s?o[s]:0));var n=a.length2em(r,l,q);if(s&&String(r).match(/^\s*[-+]/)){return Math.max(k,o[s]+n)}else{return n}}});g.mrow.Augment({SVG:i.ROW,toSVG:function(){this.SVGgetStyles();var l=this.SVG();this.SVGhandleSpace(l);for(var n=0,k=this.data.length;na.linebreakWidth)||this.hasNewline()},SVGmultiline:function(k){g.mbase.SVGautoloadFile("multiline")},SVGstretchH:function(k){var l=this.data[this.core].SVGstretchH(k);this.SVGhandleColor(l);this.SVGsaveData(l);return l},SVGstretchV:function(l,m){var k=this.data[this.core].SVGstretchV(l,m);this.SVGhandleColor(k);this.SVGsaveData(k);return k}});g.mstyle.Augment({toSVG:function(){this.SVGgetStyles();var k=this.SVG();if(this.data[0]!=null){this.SVGhandleSpace(k);var l=k.Add(this.data[0].toSVG());k.Clean();if(l.ic){k.ic=l.ic}this.SVGhandleColor(k)}this.SVGsaveData(k);return k},SVGstretchH:function(k){return(this.data[0]!=null?this.data[0].SVGstretchH(k):i.NULL())},SVGstretchV:function(k,l){return(this.data[0]!=null?this.data[0].SVGstretchV(k,l):i.NULL())}});g.mfrac.Augment({toSVG:function(){this.SVGgetStyles();var w=this.SVG();this.SVGhandleSpace(w);var s=this.SVGchildSVG(0),y=this.SVGchildSVG(1);var C=this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled");var r=w.scale=this.SVGgetScale(),n=C.displaystyle;var x=a.TeX.axis_height*r;if(C.bevelled){var B=(n?400:150);var A=Math.max(s.h+s.d,y.h+y.d)+2*B;var F=a.createDelimiter(47,A);w.Add(s,0,(s.d-s.h)/2+x+B);w.Add(F,s.w-B/2,(F.d-F.h)/2+x);w.Add(y,s.w+F.w-B,(y.d-y.h)/2+x-B)}else{var o=Math.max(s.w,y.w);var E=a.thickness2em(C.linethickness,r),m,l,D,z;var k=a.TeX.min_rule_thickness/a.em*1000;if(n){D=a.TeX.num1;z=a.TeX.denom1}else{D=(E===0?a.TeX.num3:a.TeX.num2);z=a.TeX.denom2}D*=r;z*=r;if(E===0){m=Math.max((n?7:3)*a.TeX.rule_thickness,2*k);l=(D-s.d)-(y.h-z);if(lv){k=((o.h+o.d)-(v-w))/2}s=i.RECT(w,0,m.w);v=m.h+k+w;u=this.SVGaddRoot(r,o,u,o.h+o.d-v,n);r.Add(o,u,v-o.h);r.Add(s,u+o.w,v-s.h);r.Add(m,u+o.w,0);r.Clean();r.h+=w;r.H+=w;this.SVGhandleColor(r);this.SVGsaveData(r);return r},SVGaddRoot:function(l,m,k,o,n){return k}});g.mroot.Augment({toSVG:g.msqrt.prototype.toSVG,SVGaddRoot:function(n,l,q,o,k){var s=(l.isMultiChar?0.55:0.65)*l.w;if(this.data[1]){var p=this.data[1].toSVG();p.x=0;var m=this.SVGrootHeight(l.h+l.d,k,p)-o;var r=Math.min(p.w,p.r);q=Math.max(r,s);n.Add(p,q-r,m)}else{s=q}return q-s},SVGrootHeight:function(m,l,k){return 0.45*(m-900*l)+600*l+Math.max(0,k.d-75)}});g.mfenced.Augment({SVG:i.ROW,toSVG:function(){this.SVGgetStyles();var l=this.SVG();this.SVGhandleSpace(l);if(this.data.open){l.Check(this.data.open)}if(this.data[0]!=null){l.Check(this.data[0])}for(var n=1,k=this.data.length;nI){I=p[J].w}if(!K[J]&&I>n){n=I}}}if(C==null&&F!=null){n=F}else{if(n==-a.BIGDIMEN){n=I}}for(J=I=0,G=this.data.length;JI){I=p[J].w}}}var B=a.TeX.rule_thickness;var o=p[this.base]||{w:0,h:0,d:0,H:0,D:0,l:0,r:0,scale:M};var s,q,w,v,r,A,H,L=0;if(o.ic){L=1.3*o.ic+0.05}for(J=0,G=this.data.length;Ju.H){u.H=u.h}}else{if(J==this.under){if(z){H=3*B*M;r=0}else{w=a.TeX.big_op_spacing2*M;v=a.TeX.big_op_spacing4*M;H=Math.max(w,v-u.h)}H=Math.max(H,1500/a.em);s-=L/2;q=-(o.d+u.h+H);u.d+=r;if(u.d>u.D){u.D=u.d}}}E.Add(u,s,q)}}E.Clean();this.SVGhandleColor(E);this.SVGsaveData(E);return E}});g.msubsup.Augment({toSVG:function(G,z){this.SVGgetStyles();var B=this.SVG();this.SVGhandleSpace(B);var K=B.scale=this.SVGgetScale(),E=this.SVGgetMu(B);var m=B.Add(this.SVGdataStretched(this.base,G,z));var l=(this.data[this.sup]||this.data[this.sub]||this).SVGgetScale();var I=a.TeX.x_height*K,y=a.TeX.scriptspace*K;var k,n;if(this.SVGnotEmpty(this.data[this.sup])){k=this.data[this.sup].toSVG();k.w+=y;k.r=Math.max(k.w,k.r)}if(this.SVGnotEmpty(this.data[this.sub])){n=this.data[this.sub].toSVG();n.w+=y;n.r=Math.max(n.w,n.r)}var C=a.TeX.sup_drop*l,A=a.TeX.sub_drop*l;var w=m.h+(m.y||0)-C,o=m.d-(m.y||0)+A,J=0,F;if(m.ic){m.w-=m.ic;J=1.3*m.ic+0.05}if(this.data[this.base]&&(this.data[this.base].type==="mi"||this.data[this.base].type==="mo")){if(this.data[this.base].data.join("").length===1&&m.scale===1&&!m.stretched&&!this.data[this.base].Get("largeop")){w=o=0}}var H=this.getValues("subscriptshift","superscriptshift");H.subscriptshift=(H.subscriptshift===""?0:a.length2em(H.subscriptshift,E));H.superscriptshift=(H.superscriptshift===""?0:a.length2em(H.superscriptshift,E));if(!k){if(n){o=Math.max(o,a.TeX.sub1*K,n.h-(4/5)*I,H.subscriptshift);B.Add(n,m.w,-o);this.data[this.sub].SVGdata.dy=-o}}else{if(!n){values=this.getValues("displaystyle","texprimestyle");F=a.TeX[(values.displaystyle?"sup1":(values.texprimestyle?"sup3":"sup2"))];w=Math.max(w,F*K,k.d+(1/4)*I,H.superscriptshift);B.Add(k,m.w+J,w);this.data[this.sup].SVGdata.dx=J;this.data[this.sup].SVGdata.dy=w}else{o=Math.max(o,a.TeX.sub2*K);var x=a.TeX.rule_thickness*K;if((w-k.d)-(n.h-o)<3*x){o=3*x-w+k.d+n.h;C=(4/5)*I-(w-k.d);if(C>0){w+=C;o-=C}}B.Add(k,m.w+J,Math.max(w,H.superscriptshift));B.Add(n,m.w,-Math.max(o,H.subscriptshift));this.data[this.sup].SVGdata.dx=J;this.data[this.sup].SVGdata.dy=Math.max(w,H.superscriptshift);this.data[this.sub].SVGdata.dy=-Math.max(o,H.subscriptshift)}}B.Clean();this.SVGhandleColor(B);this.SVGsaveData(B);return B}});g.mmultiscripts.Augment({toSVG:g.mbase.SVGautoload});g.mtable.Augment({toSVG:g.mbase.SVGautoload});g["annotation-xml"].Augment({toSVG:g.mbase.SVGautoload});g.math.Augment({SVG:i.Subclass({type:"svg",removeable:false}),toSVG:function(t,m){if(this.data[0]){this.SVGgetStyles();g.mbase.prototype.displayAlign=c.config.displayAlign;g.mbase.prototype.displayIndent=c.config.displayIndent;var q=i.G({stroke:"black",fill:"black","stroke-width":0,transform:"matrix(1 0 0 -1 0 0)"}).With({removeable:false});q.Add(this.data[0].toSVG(),0,0,true);q.Clean();this.SVGhandleColor(q);var s=this.SVG();s.element.setAttribute("xmlns:xlink",j);s.Add(q);s.Clean();this.SVGsaveData(s);var p=Math.max(-s.l,0),k=Math.max(s.r-s.w,0);var n=s.element.style;n.width=a.Ex(p+s.w+k);n.height=a.Ex(s.H+s.D+2*a.em);n.verticalAlign=a.Ex(-s.D-3*a.em);n.marginLeft=a.Ex(-p);n.marginRight=a.Ex(-k);s.element.setAttribute("viewBox",(-p)+" "+(-s.H-a.em)+" "+(p+s.w+k)+" "+(s.H+s.D+2*a.em));s.element.style.margin="1px 0px";if(s.H>s.h||s.D>s.d){var o=e.Element("span",{style:{display:"inline-block","white-space":"nowrap",padding:"1px 0px"},isMathJax:true},[["span",{style:{display:"inline-block",position:"relative",isMathJax:true,width:a.Ex(s.w),height:a.Ex(s.h+s.d),"vertical-align":a.Ex(-s.d)}}]]);o.firstChild.appendChild(s.element);s.element=o;n.verticalAlign=n.margin="";n.position="absolute";n.bottom=a.Ex(s.d-s.D);n.left=0}t.appendChild(s.element);s.element=null;if(!this.isMultiline&&this.Get("display")==="block"){var u=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(u.indentalignfirst!==g.INDENTALIGN.INDENTALIGN){u.indentalign=u.indentalignfirst}if(u.indentalign===g.INDENTALIGN.AUTO){u.indentalign=this.displayAlign}m.style.textAlign=u.indentalign;if(u.indentshiftfirst!==g.INDENTSHIFT.INDENTSHIFT){u.indentshift=u.indentshiftfirst}if(u.indentshift==="auto"){u.indentshift=this.displayIndent}if(u.indentshift&&u.indentalign!==g.INDENTALIGN.CENTER&&!s.hasIndent){t.style[{left:"marginLeft",right:"marginRight"}[u.indentalign]]=a.Ex(a.length2em(u.indentshift))}}}return t}});g.TeXAtom.Augment({toSVG:function(){this.SVGgetStyles();var k=this.SVG();this.SVGhandleSpace(k);if(this.data[0]!=null){var l=this.data[0].toSVG(),m=0;if(this.texClass===g.TEXCLASS.VCENTER){m=a.TeX.axis_height-(l.h+l.d)/2+l.d}k.Add(l,0,m);k.ic=l.ic}this.SVGhandleColor(k);this.SVGsaveData(k);return k}});c.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",a,"jax.js"]),0)})});c.Browser.Select({Opera:function(k){a.Augment({operaZoomRefresh:true})}});c.Register.StartupHook("End Cookie",function(){if(c.config.menuSettings.zoom!=="None"){h.Require("[MathJax]/extensions/MathZoom.js")}});if(!document.createElementNS){if(!document.namespaces.svg){document.namespaces.add("svg",b)}a.Augment({Element:function(k,l){var m=(typeof(k)==="string"?document.createElement("svg:"+k):k);m.isMathJax=true;if(l){for(var n in l){if(l.hasOwnProperty(n)){m.setAttribute(n,l[n].toString())}}}return m}})}})(MathJax.Ajax,MathJax.Hub,MathJax.HTML,MathJax.OutputJax.SVG); - -MathJax.Hub.Register.StartupHook("SVG Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,d=MathJax.OutputJax.SVG,b=d.BBOX;a.mtable.Augment({toSVG:function(V){this.SVGgetStyles();var l=this.SVG();if(this.data.length===0){this.SVGsaveData(l);return l}var aI=this.getValues("columnalign","rowalign","columnspacing","rowspacing","columnwidth","equalcolumns","equalrows","columnlines","rowlines","frame","framespacing","align","useHeight","width","side","minlabelspacing");if(aI.width.match(/%$/)){l.width=aI.width=Math.floor(d.cwidth*parseFloat(aI.width)/100)+"px"}var al=this.SVGgetScale(),t=this.SVGgetMu(l);var aF=-1;var v=[],E=[],h=[],L=[],G=[],aD,aC,u=-1,aA,r,av,O,aj,z;var aK=d.FONTDATA.baselineskip*al*aI.useHeight,aw,Z=d.FONTDATA.lineH*al,ad=d.FONTDATA.lineD*al;for(aD=0,aA=this.data.length;aDu){u=aC}G[aC]=b.G();h[aC]=-d.BIGDIMEN}aj=O.data[aC-av];L[aD][aC]=aj.toSVG();if(aj.isEmbellished()){z=aj.CoreMO();var aH=z.Get("minsize",true);if(aH){if(z.SVGcanStretch("Vertical")){aw=z.SVGdata.h+z.SVGdata.d;if(aw){aH=d.length2em(aH,t,aw);if(aH*z.SVGdata.h/aw>v[aC]){v[aC]=aH*z.SVGdata.h/aw}if(aH*z.SVGdata.d/aw>E[aC]){E[aC]=aH*z.SVGdata.d/aw}}}else{if(z.SVGcanStretch("Horizontal")){aH=d.length2em(aH,t,z.SVGdata.w);if(aH>h[aC]){h[aC]=aH}}}}}if(L[aD][aC].h>v[aD]){v[aD]=L[aD][aC].h}if(L[aD][aC].d>E[aD]){E[aD]=L[aD][aC].d}if(L[aD][aC].w>h[aC]){h[aC]=L[aD][aC].w}}}if(v[0]+E[0]){v[0]=Math.max(v[0],Z)}if(v[L.length-1]+E[L.length-1]){E[L.length-1]=Math.max(E[L.length-1],ad)}var ak=MathJax.Hub.SplitList;var ai=ak(aI.columnspacing),Q=ak(aI.rowspacing),af=ak(aI.columnalign),I=ak(aI.rowalign),K=ak(aI.columnlines),g=ak(aI.rowlines),an=ak(aI.columnwidth),ar=[];for(aD=0,aA=ai.length;aDL.length){az=L.length}}e=0;au=-(aw+X)+v[0];for(aD=0,aA=az-1;aD0.98){ag=T/(S+T);ao=S+T}else{ao=S/(1-at)}}else{ao=d.length2em(aI.width,t);for(aD=0,aA=Math.min(u+1,ai.length);aD0.01){if(aE&&ao>S){ao=(ao-S)/aE;for(aD=0,aA=w.length;aD&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.2",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); - -MathJax.OutputJax.SVG=MathJax.OutputJax({id:"SVG",version:"2.2",directory:MathJax.OutputJax.directory+"/SVG",extensionDir:MathJax.OutputJax.extensionDir+"/SVG",autoloadDir:MathJax.OutputJax.directory+"/SVG/autoload",fontDir:MathJax.OutputJax.directory+"/SVG/fonts",config:{scale:100,minScaleAdjust:50,font:"TeX",blacker:10,mtextFontInherit:false,undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",addMMLclasses:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_SVG_Display":{"text-align":"center",margin:"1em 0em"},"#MathJax_SVG_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",padding:"3px 4px","z-index":401}}}});if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax.SVG.Register("jax/mml")}MathJax.OutputJax.SVG.loadComplete("config.js"); - -MathJax.Extension.tex2jax={version:"2.2",config:{inlineMath:[["\\(","\\)"]],displayMath:[["$$","$$"],["\\[","\\]"]],balanceBraces:true,skipTags:["script","noscript","style","textarea","pre","code"],ignoreClass:"tex2jax_ignore",processClass:"tex2jax_process",processEscapes:false,processEnvironments:true,processRefs:true,preview:"TeX"},PreProcess:function(a){if(!this.configured){this.config=MathJax.Hub.CombineConfig("tex2jax",this.config);if(this.config.Augment){MathJax.Hub.Insert(this,this.config.Augment)}if(typeof(this.config.previewTeX)!=="undefined"&&!this.config.previewTeX){this.config.preview="none"}this.configured=true}if(typeof(a)==="string"){a=document.getElementById(a)}if(!a){a=document.body}if(this.createPatterns()){this.scanElement(a,a.nextSibling)}},createPatterns:function(){var d=[],e=[],c,a,b=this.config;this.match={};for(c=0,a=b.inlineMath.length;c0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -(function(d,h,l,g,m,b,j){var q="2.2";var i=MathJax.Extension;var c=i.MathEvents={version:q};var k=d.config.menuSettings;var p={hover:500,frame:{x:3.5,y:5,bwidth:1,bcolor:"#A6D",hwidth:"15px",hcolor:"#83A"},button:{x:-4,y:-3,wx:-2,src:l.fileURL(b.imageDir+"/MenuArrow-15.png")},fadeinInc:0.2,fadeoutInc:0.05,fadeDelay:50,fadeoutStart:400,fadeoutDelay:15*1000,styles:{".MathJax_Hover_Frame":{"border-radius":".25em","-webkit-border-radius":".25em","-moz-border-radius":".25em","-khtml-border-radius":".25em","box-shadow":"0px 0px 15px #83A","-webkit-box-shadow":"0px 0px 15px #83A","-moz-box-shadow":"0px 0px 15px #83A","-khtml-box-shadow":"0px 0px 15px #83A",border:"1px solid #A6D ! important",display:"inline-block",position:"absolute"},".MathJax_Hover_Arrow":{position:"absolute",width:"15px",height:"11px",cursor:"pointer"}}};var n=c.Event={LEFTBUTTON:0,RIGHTBUTTON:2,MENUKEY:"altKey",Mousedown:function(r){return n.Handler(r,"Mousedown",this)},Mouseup:function(r){return n.Handler(r,"Mouseup",this)},Mousemove:function(r){return n.Handler(r,"Mousemove",this)},Mouseover:function(r){return n.Handler(r,"Mouseover",this)},Mouseout:function(r){return n.Handler(r,"Mouseout",this)},Click:function(r){return n.Handler(r,"Click",this)},DblClick:function(r){return n.Handler(r,"DblClick",this)},Menu:function(r){return n.Handler(r,"ContextMenu",this)},Handler:function(u,s,t){if(l.loadingMathMenu){return n.False(u)}var r=b[t.jaxID];if(!u){u=window.event}u.isContextMenu=(s==="ContextMenu");if(r[s]){return r[s](u,t)}if(i.MathZoom){return i.MathZoom.HandleEvent(u,s,t)}},False:function(r){if(!r){r=window.event}if(r){if(r.preventDefault){r.preventDefault()}if(r.stopPropagation){r.stopPropagation()}r.cancelBubble=true;r.returnValue=false}return false},ContextMenu:function(s,A,v){var x=b[A.jaxID],u=x.getJaxFromMath(A);var B=(x.config.showMathMenu!=null?x:d).config.showMathMenu;if(!B||(k.context!=="MathJax"&&!v)){return}if(c.msieEventBug){s=window.event||s}n.ClearSelection();f.ClearHoverTimer();if(u.hover){if(u.hover.remove){clearTimeout(u.hover.remove);delete u.hover.remove}u.hover.nofade=true}var t=MathJax.Menu;var C,z;if(t){if(t.loadingDomain){return n.False(s)}C=m.loadDomain("MathMenu");if(!C){t.jax=u;var r=t.menu.Find("Show Math As").menu;r.items[0].name=u.sourceMenuTitle;r.items[0].format=(u.sourceMenuFormat||"MathML");r.items[1].name=j[u.inputJax].sourceMenuTitle;var w=t.menu.Find("Math Settings","MathPlayer");w.hidden=!(u.outputJax==="NativeMML"&&d.Browser.hasMathPlayer);return t.menu.Post(s)}t.loadingDomain=true;z=function(){delete t.loadingDomain}}else{if(l.loadingMathMenu){return n.False(s)}l.loadingMathMenu=true;C=l.Require("[MathJax]/extensions/MathMenu.js");z=function(){delete l.loadingMathMenu;if(!MathJax.Menu){MathJax.Menu={}}}}var y={pageX:s.pageX,pageY:s.pageY,clientX:s.clientX,clientY:s.clientY};g.Queue(C,z,["ContextMenu",n,y,A,v]);return n.False(s)},AltContextMenu:function(t,s){var u=b[s.jaxID];var r=(u.config.showMathMenu!=null?u:d).config.showMathMenu;if(r){r=(u.config.showMathMenuMSIE!=null?u:d).config.showMathMenuMSIE;if(k.context==="MathJax"&&!k.mpContext&&r){if(!c.noContextMenuBug||t.button!==n.RIGHTBUTTON){return}}else{if(!t[n.MENUKEY]||t.button!==n.LEFTBUTTON){return}}return u.ContextMenu(t,s,true)}},ClearSelection:function(){if(c.safariContextMenuBug){setTimeout("window.getSelection().empty()",0)}if(document.selection){setTimeout("document.selection.empty()",0)}},getBBox:function(t){t.appendChild(c.topImg);var s=c.topImg.offsetTop,u=t.offsetHeight-s,r=t.offsetWidth;t.removeChild(c.topImg);return{w:r,h:s,d:u}}};var f=c.Hover={Mouseover:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.ReHover(r)}else{f.HoverTimer(r,s)}return n.False(t)}}},Mouseout:function(t,s){if(k.discoverable||k.zoom==="Hover"){var v=t.fromElement||t.relatedTarget,u=t.toElement||t.target;if(v&&u&&(v.isMathJax!=u.isMathJax||d.getJaxFor(v)!==d.getJaxFor(u))){var r=this.getJaxFromMath(s);if(r.hover){f.UnHover(r)}else{f.ClearHoverTimer()}return n.False(t)}}},Mousemove:function(t,s){if(k.discoverable||k.zoom==="Hover"){var r=this.getJaxFromMath(s);if(r.hover){return}if(f.lastX==t.clientX&&f.lastY==t.clientY){return}f.lastX=t.clientX;f.lastY=t.clientY;f.HoverTimer(r,s);return n.False(t)}},HoverTimer:function(r,s){this.ClearHoverTimer();this.hoverTimer=setTimeout(g(["Hover",this,r,s]),p.hover)},ClearHoverTimer:function(){if(this.hoverTimer){clearTimeout(this.hoverTimer);delete this.hoverTimer}},Hover:function(r,v){if(i.MathZoom&&i.MathZoom.Hover({},v)){return}var u=b[r.outputJax],w=u.getHoverSpan(r,v),z=u.getHoverBBox(r,w,v),x=(u.config.showMathMenu!=null?u:d).config.showMathMenu;var B=p.frame.x,A=p.frame.y,y=p.frame.bwidth;if(c.msieBorderWidthBug){y=0}r.hover={opacity:0,id:r.inputID+"-Hover"};var s=h.Element("span",{id:r.hover.id,isMathJax:true,style:{display:"inline-block",width:0,height:0,position:"relative"}},[["span",{className:"MathJax_Hover_Frame",isMathJax:true,style:{display:"inline-block",position:"absolute",top:this.Px(-z.h-A-y-(z.y||0)),left:this.Px(-B-y+(z.x||0)),width:this.Px(z.w+2*B),height:this.Px(z.h+z.d+2*A),opacity:0,filter:"alpha(opacity=0)"}}]]);var t=h.Element("span",{isMathJax:true,id:r.hover.id+"Menu",style:{display:"inline-block","z-index":1,width:0,height:0,position:"relative"}},[["img",{className:"MathJax_Hover_Arrow",isMathJax:true,math:v,src:p.button.src,onclick:this.HoverMenu,jax:u.id,style:{left:this.Px(z.w+B+y+(z.x||0)+p.button.x),top:this.Px(-z.h-A-y-(z.y||0)-p.button.y),opacity:0,filter:"alpha(opacity=0)"}}]]);if(z.width){s.style.width=t.style.width=z.width;s.style.marginRight=t.style.marginRight="-"+z.width;s.firstChild.style.width=z.width;t.firstChild.style.left="";t.firstChild.style.right=this.Px(p.button.wx)}w.parentNode.insertBefore(s,w);if(x){w.parentNode.insertBefore(t,w)}if(w.style){w.style.position="relative"}this.ReHover(r)},ReHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}r.hover.remove=setTimeout(g(["UnHover",this,r]),p.fadeoutDelay);this.HoverFadeTimer(r,p.fadeinInc)},UnHover:function(r){if(!r.hover.nofade){this.HoverFadeTimer(r,-p.fadeoutInc,p.fadeoutStart)}},HoverFade:function(r){delete r.hover.timer;r.hover.opacity=Math.max(0,Math.min(1,r.hover.opacity+r.hover.inc));r.hover.opacity=Math.floor(1000*r.hover.opacity)/1000;var t=document.getElementById(r.hover.id),s=document.getElementById(r.hover.id+"Menu");t.firstChild.style.opacity=r.hover.opacity;t.firstChild.style.filter="alpha(opacity="+Math.floor(100*r.hover.opacity)+")";if(s){s.firstChild.style.opacity=r.hover.opacity;s.firstChild.style.filter=t.style.filter}if(r.hover.opacity===1){return}if(r.hover.opacity>0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l=p.HTMLCSSlast+p.HTMLCSSchunk){this.postTranslate(p);p.HTMLCSSchunk=Math.floor(p.HTMLCSSchunk*this.config.EqnChunkFactor);p.HTMLCSSdelay=true}}},postTranslate:function(r){var l=r.jax[this.id];if(!this.hideProcessedMath){return}for(var p=r.HTMLCSSlast,k=r.HTMLCSSeqn;p=0&&!this.initialSkipBug)||this.negativeBBoxes||!o.firstChild){l=o.offsetWidth;n=o.parentNode.offsetHeight}else{if(o.bbox&&m<0&&this.msieNegativeBBoxBug){l=-o.offsetWidth,n=o.parentNode.offsetHeight}else{if(this.initialSkipBug){var k=o.style.position;o.style.position="absolute";p=this.startMarker;o.insertBefore(p,o.firstChild)}o.appendChild(this.endMarker);l=this.endMarker.offsetLeft-p.offsetLeft;o.removeChild(this.endMarker);if(this.initialSkipBug){o.removeChild(p);o.style.position=k}}}if(n!=null){o.parentNode.HH=n/this.em}return l/this.em},Measured:function(m,l){var n=m.bbox;if(n.width==null&&n.w&&!n.isMultiline){var k=this.getW(m);n.rw+=k-n.w;n.w=k;n.exactW=true}if(!l){l=m.parentNode}if(!l.bbox){l.bbox=n}return m},Remeasured:function(l,k){k.bbox=this.Measured(l,k).bbox},MeasureSpans:function(o){var r=[],t,q,n,u,k,p,l,s;for(q=0,n=o.length;q=0&&!this.initialSkipBug)||(u.w<0&&this.msieNegativeBBoxBug)){r.push([t])}else{if(this.initialSkipBug){k=this.startMarker.cloneNode(true);p=this.endMarker.cloneNode(true);t.insertBefore(k,t.firstChild);t.appendChild(p);r.push([t,k,p,t.style.position]);t.style.position="absolute"}else{p=this.endMarker.cloneNode(true);t.appendChild(p);r.push([t,null,p])}}}for(q=0,n=r.length;q=0&&!this.initialSkipBug)||this.negativeBBoxes||!t.firstChild){l=t.offsetWidth;s.HH=s.offsetHeight/this.em}else{if(u.w<0&&this.msieNegativeBBoxBug){l=-t.offsetWidth,s.HH=s.offsetHeight/this.em}else{l=r[q][2].offsetLeft-((r[q][1]||{}).offsetLeft||0)}}l/=this.em;u.rw+=l-u.w;u.w=l;u.exactW=true;if(!s.bbox){s.bbox=u}}for(q=0,n=r.length;q=0){p.style.width=this.Em(q);p.style.display="inline-block";p.style.overflow="hidden"}else{if(this.msieNegativeSpaceBug){p.style.height=""}p.style.marginLeft=this.Em(q);if(d.safariNegativeSpaceBug&&p.parentNode.firstChild==p){this.createBlank(p,0,true)}}if(m&&m!==g.COLOR.TRANSPARENT){p.style.backgroundColor=m;p.style.position="relative"}return p},createRule:function(r,n,p,s,l){if(n<-p){p=-n}var m=d.TeX.min_rule_thickness,o=1;if(s>0&&s*this.em0&&(n+p)*this.em0&&q.offsetWidth==0){q.style.width=this.Em(s)}if(r.isBox||r.className=="mspace"){r.bbox=q.bbox,r.HH=n+p}return q},createFrame:function(s,q,r,u,x,l){if(q<-r){r=-q}var p=2*x;if(this.msieFrameSizeBug){if(uC.w){d.createBlank(u,C.rw-C.w+0.1)}}if(!this.msieClipRectBug&&!C.noclip&&!o){var B=3/this.em;var A=(C.H==null?C.h:C.H),m=(C.D==null?C.d:C.D);var E=w-A-B,p=w+m+B,n=C.lw-3*B,k=1000;if(this.initialSkipBug&&C.lw<0){n=-3*B}if(C.isFixed){k=C.width-n}u.style.clip="rect("+this.Em(E)+" "+this.Em(k)+" "+this.Em(p)+" "+this.Em(n)+")"}}u.style.top=this.Em(-q-w);u.style.left=this.Em(s+F);if(C&&z){if(C.H!=null&&(z.H==null||C.H+q>z.H)){z.H=C.H+q}if(C.D!=null&&(z.D==null||C.D-q>z.D)){z.D=C.D-q}if(C.h+q>z.h){z.h=C.h+q}if(C.d-q>z.d){z.d=C.d-q}if(z.H!=null&&z.H<=z.h){delete z.H}if(z.D!=null&&z.D<=z.d){delete z.D}if(C.w+s>z.w){z.w=C.w+s;if(z.width==null){v.style.width=this.Em(z.w)}}if(C.rw+s>z.rw){z.rw=C.rw+s}if(C.lw+s=n-0.01||(s==p-1&&!l.stretch)){if(l.HW[s][2]){q*=l.HW[s][2]}if(l.HW[s][3]){k=l.HW[s][3]}var r=this.addElement(u,"span");this.createChar(r,[k,l.HW[s][1]],q,o);u.bbox=r.bbox;u.offset=0.65*u.bbox.w;u.scale=q;return}}if(l.stretch){this["extendDelimiter"+l.dir](u,t,l.stretch,q,o)}},extendDelimiterV:function(A,t,E,F,w){var o=this.createStack(A,true);var v=this.createBox(o),u=this.createBox(o);this.createChar(v,(E.top||E.ext),F,w);this.createChar(u,(E.bot||E.ext),F,w);var m={bbox:{w:0,lw:0,rw:0}},D=m,p;var B=v.bbox.h+v.bbox.d+u.bbox.h+u.bbox.d;var r=-v.bbox.h;this.placeBox(v,0,r,true);r-=v.bbox.d;if(E.mid){D=this.createBox(o);this.createChar(D,E.mid,F,w);B+=D.bbox.h+D.bbox.d}if(E.min&&tB){m=this.Element("span");this.createChar(m,E.ext,F,w);var C=m.bbox.h+m.bbox.d,l=C-0.05,x,q,z=(E.mid?2:1);q=x=Math.min(Math.ceil((t-B)/(z*l)),this.maxStretchyParts);if(!E.fullExtenders){l=(t-B)/(z*x)}var s=(x/(x+1))*(C-l);l=C-s;r+=s+l-m.bbox.h;while(z-->0){while(x-->0){if(!this.msieCloneNodeBug){p=m.cloneNode(true)}else{p=this.Element("span");this.createChar(p,E.ext,F,w)}p.bbox=m.bbox;r-=l;this.placeBox(this.addBox(o,p),0,r,true)}r+=s-m.bbox.d;if(E.mid&&z){this.placeBox(D,0,r-D.bbox.h,true);x=q;r+=-(D.bbox.h+D.bbox.d)+s+l-m.bbox.h}}}else{r+=(B-t)/2;if(E.mid){this.placeBox(D,0,r-D.bbox.h,true);r+=-(D.bbox.h+D.bbox.d)}r+=(B-t)/2}this.placeBox(u,0,r-u.bbox.h,true);r-=u.bbox.h+u.bbox.d;A.bbox={w:Math.max(v.bbox.w,m.bbox.w,u.bbox.w,D.bbox.w),lw:Math.min(v.bbox.lw,m.bbox.lw,u.bbox.lw,D.bbox.lw),rw:Math.max(v.bbox.rw,m.bbox.rw,u.bbox.rw,D.bbox.rw),h:0,d:-r,exactW:true};A.scale=F;A.offset=0.55*A.bbox.w;A.isMultiChar=true;this.setStackWidth(o,A.bbox.w)},extendDelimiterH:function(B,o,E,G,y){var r=this.createStack(B,true);var p=this.createBox(r),C=this.createBox(r);this.createChar(p,(E.left||E.rep),G,y);this.createChar(C,(E.right||E.rep),G,y);var l=this.Element("span");this.createChar(l,E.rep,G,y);var D={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},m;this.placeBox(p,-p.bbox.lw,0,true);var u=(p.bbox.rw-p.bbox.lw)+(C.bbox.rw-C.bbox.lw)-0.05,t=p.bbox.rw-p.bbox.lw-0.025,v;if(E.mid){D=this.createBox(r);this.createChar(D,E.mid,G,y);u+=D.bbox.w}if(E.min&&ou){var F=l.bbox.rw-l.bbox.lw,q=F-0.05,z,s,A=(E.mid?2:1);s=z=Math.min(Math.ceil((o-u)/(A*q)),this.maxStretchyParts);if(!E.fillExtenders){q=(o-u)/(A*z)}v=(z/(z+1))*(F-q);q=F-v;t-=l.bbox.lw+v;while(A-->0){while(z-->0){if(!this.cloneNodeBug){m=l.cloneNode(true)}else{m=this.Element("span");this.createChar(m,E.rep,G,y)}m.bbox=l.bbox;this.placeBox(this.addBox(r,m),t,0,true);t+=q}if(E.mid&&A){this.placeBox(D,t,0,true);t+=D.bbox.w-v;z=s}}}else{t-=(u-o)/2;if(E.mid){this.placeBox(D,t,0,true);t+=D.bbox.w}t-=(u-o)/2}this.placeBox(C,t,0,true);B.bbox={w:t+C.bbox.rw,lw:0,rw:t+C.bbox.rw,H:Math.max(p.bbox.h,l.bbox.h,C.bbox.h,D.bbox.h),D:Math.max(p.bbox.d,l.bbox.d,C.bbox.d,D.bbox.d),h:l.bbox.h,d:l.bbox.d,exactW:true};B.scale=G;B.isMultiChar=true;this.setStackWidth(r,B.bbox.w)},createChar:function(s,p,n,k){s.isMathJax=true;var r=s,t="",o={fonts:[p[1]],noRemap:true};if(k&&k===g.VARIANT.BOLD){o.fonts=[p[1]+"-bold",p[1]]}if(typeof(p[1])!=="string"){o=p[1]}if(p[0] instanceof Array){for(var q=0,l=p[0].length;q=55296&&x<56319){B++;x=(((x-55296)<<10)+(s.charCodeAt(B)-56320))+65536;if(this.FONTDATA.RemapPlane1){var E=this.FONTDATA.RemapPlane1(x,p);x=E.n;p=E.variant}}else{var u,r,v=this.FONTDATA.RANGES;for(u=0,r=v.length;u=v[u].low&&x<=v[u].high){if(v[u].remap&&v[u].remap[x]){x=q+v[u].remap[x]}else{x=x-v[u].low+q;if(v[u].add){x+=v[u].add}}if(p["variant"+v[u].offset]){p=this.FONTDATA.VARIANT[p["variant"+v[u].offset]]}break}}}if(p.remap&&p.remap[x]){if(p.remap[x] instanceof Array){var o=p.remap[x];x=o[0];p=this.FONTDATA.VARIANT[o[1]]}else{if(typeof(p.remap[x])==="string"){s=p.remap[x]+s.substr(B+1);B=0;y=s.length;x=s.charCodeAt(0)}else{x=p.remap[x];if(p.remap.variant){p=this.FONTDATA.VARIANT[p.remap.variant]}}}}if(this.FONTDATA.REMAP[x]&&!p.noRemap){x=this.FONTDATA.REMAP[x];if(x instanceof Array){p=this.FONTDATA.VARIANT[x[1]];x=x[0]}if(typeof(x)==="string"){s=x+s.substr(B+1);B=0;y=s.length;x=x.charCodeAt(0)}}t=this.lookupChar(p,x);C=t[x];if(l||(!this.checkFont(t,k.style)&&!C[5].img)){if(z.length){this.addText(k,z);z=""}var w=!!k.style.fontFamily||!!A.style.fontStyle||!!A.style.fontWeight||!t.directory||l;l=false;if(k!==A){w=!this.checkFont(t,A.style);k=A}if(w){k=this.addElement(A,"span",{isMathJax:true,subSpan:true})}this.handleFont(k,t,k!==A)}z=this.handleChar(k,t,C,x,z);if(!(C[5]||{}).space){if(C[0]/1000>A.bbox.h){A.bbox.h=C[0]/1000}if(C[1]/1000>A.bbox.d){A.bbox.d=C[1]/1000}}if(A.bbox.w+C[3]/1000A.bbox.rw){A.bbox.rw=A.bbox.w+C[4]/1000}A.bbox.w+=C[2]/1000}if(z.length){this.addText(k,z)}if(A.scale&&A.scale!==1){A.bbox.h*=A.scale;A.bbox.d*=A.scale;A.bbox.w*=A.scale;A.bbox.lw*=A.scale;A.bbox.rw*=A.scale}if(s.length==1&&t.skew&&t.skew[x]){A.bbox.skew=t.skew[x]}},checkFont:function(k,l){var m=(l.fontWeight||"normal");if(m.match(/^\d+$/)){m=(parseInt(m)>=600?"bold":"normal")}return(k.family.replace(/'/g,"")===l.fontFamily.replace(/'/g,"")&&(k.style||"normal")===(l.fontStyle||"normal")&&(k.weight||"normal")===m)},handleFont:function(m,k,o){m.style.fontFamily=k.family;if(!k.directory){m.style.fontSize=Math.floor(100/d.scale+0.5)+"%"}if(!(d.FontFaceBug&&k.isWebFont)){var l=k.style||"normal",n=k.weight||"normal";if(l!=="normal"||o){m.style.fontStyle=l}if(n!=="normal"||o){m.style.fontWeight=n}}},handleChar:function(l,k,s,r,q){var p=s[5];if(p.space){if(q.length){this.addText(l,q)}d.createShift(l,s[2]/1000);return""}if(p.img){return this.handleImg(l,k,s,r,q)}if(p.isUnknown&&this.FONTDATA.DELIMITERS[r]){if(q.length){this.addText(l,q)}var o=l.scale;d.createDelimiter(l,r,0,1,k);if(this.FONTDATA.DELIMITERS[r].dir==="V"){l.style.verticalAlign=this.Em(l.bbox.d);l.bbox.h+=l.bbox.d;l.bbox.d=0}l.scale=o;s[0]=l.bbox.h*1000;s[1]=l.bbox.d*1000;s[2]=l.bbox.w*1000;s[3]=l.bbox.lw*1000;s[4]=l.bbox.rw*1000;return""}if(p.c==null){if(r<=65535){p.c=String.fromCharCode(r)}else{var m=r-65536;p.c=String.fromCharCode((m>>10)+55296)+String.fromCharCode((m&1023)+56320)}}if(p.rfix){this.addText(l,q+p.c);d.createShift(l,p.rfix/1000);return""}if(s[2]||!this.msieAccentBug||q.length){return q+p.c}d.createShift(l,s[3]/1000);d.createShift(l,(s[4]-s[3])/1000);this.addText(l,p.c);d.createShift(l,-s[4]/1000);return""},handleImg:function(l,k,p,o,m){return m},lookupChar:function(p,s){var o,k;if(!p.FONTS){var r=this.FONTDATA.FONTS;var q=(p.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(q instanceof Array)){q=[q]}if(p.fonts!=q){p.fonts=q}p.FONTS=[];for(o=0,k=q.length;o=0;n--){if(l.Ranges[n][2]==o){l.Ranges.splice(n,1)}}this.loadFont(l.directory+"/"+o+".js")}}}},loadFont:function(l){var k=MathJax.Callback.Queue();k.Push(["Require",h,this.fontDir+"/"+l]);if(this.imgFonts){if(!MathJax.isPacked){l=l.replace(/\/([^\/]*)$/,d.imgPacked+"/$1")}k.Push(["Require",h,this.webfontDir+"/png/"+l])}b.RestartAfter(k.Push({}))},loadWebFont:function(k){k.available=k.isWebFont=true;if(d.FontFaceBug){k.family=k.name;if(d.msieFontCSSBug){k.family+="-Web"}}b.RestartAfter(this.Font.loadWebFont(k))},loadWebFontError:function(l,k){b.Startup.signal.Post("HTML-CSS Jax - disable web fonts");l.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;b.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");b.Startup.signal.Post("HTML-CSS Jax - using image fonts");e(["WebFontNotAvailable","Web-Fonts not available -- using image fonts instead"],null,3000);h.Require(this.directory+"/imageFonts.js",k)}else{this.allowWebFonts=false;k()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},NBSP:"\u00A0",rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){g=MathJax.ElementJax.mml;g.mbase.Augment({toHTML:function(o){o=this.HTMLcreateSpan(o);if(this.type!="mrow"){o=this.HTMLhandleSize(o)}for(var l=0,k=this.data.length;ll.d){l.d=m.d}if(m.h>l.h){l.h=m.h}if(m.D!=null&&m.D>l.D){l.D=m.D}if(m.H!=null&&m.H>l.H){l.H=m.H}if(n.style.paddingLeft){l.w+=d.unEm(n.style.paddingLeft)*(n.scale||1)}if(l.w+m.lwl.rw){l.rw=l.w+m.rw}l.w+=m.w;if(n.style.paddingRight){l.w+=d.unEm(n.style.paddingRight)*(n.scale||1)}if(m.width){l.width=m.width;l.minWidth=m.minWidth}if(m.ic){l.ic=m.ic}else{delete l.ic}if(l.exactW&&!m.exactW){delete l.exactW}},HTMLemptyBBox:function(k){k.h=k.d=k.H=k.D=k.rw=-d.BIGDIMEN;k.w=0;k.lw=d.BIGDIMEN;return k},HTMLcleanBBox:function(k){if(k.h===this.BIGDIMEN){k.h=k.d=k.H=k.D=k.w=k.rw=k.lw=0}if(k.D<=k.d){delete k.D}if(k.H<=k.h){delete k.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(l){if(this.isEmbellished()){var k=this.Core();if(k&&k!==this){return k.HTMLcanStretch(l)}}return false},HTMLstretchH:function(l,k){return this.HTMLspanElement()},HTMLstretchV:function(l,k,m){return this.HTMLspanElement()},HTMLnotEmpty:function(k){while(k){if((k.type!=="mrow"&&k.type!=="texatom")||k.data.length>1){return true}k=k.data[0]}return false},HTMLmeasureChild:function(l,k){if(this.data[l]){d.Measured(this.data[l].toHTML(k),k)}else{k.bbox=this.HTMLzeroBBox()}},HTMLboxChild:function(l,k){if(!this.data[l]){this.SetData(l,g.mrow())}return this.data[l].toHTML(k)},HTMLcreateSpan:function(k){if(this.spanID){var l=this.HTMLspanElement();if(l&&(l.parentNode===k||(l.parentNode||{}).parentNode===k)){while(l.firstChild){l.removeChild(l.firstChild)}l.bbox=this.HTMLzeroBBox();l.scale=1;l.isMultChar=l.HH=null;l.style.cssText="";return l}}if(this.href){k=d.addElement(k,"a",{href:this.href,isMathJax:true})}k=d.addElement(k,"span",{className:this.type,isMathJax:true});if(d.imgHeightBug){k.style.display="inline-block"}if(this["class"]){k.className+=" "+this["class"]}if(!this.spanID){this.spanID=d.GetID()}k.id=(this.id||"MathJax-Span-"+this.spanID)+d.idPostfix;k.bbox=this.HTMLzeroBBox();this.styles={};if(this.style){k.style.cssText=this.style;if(k.style.fontSize){this.mathsize=k.style.fontSize;k.style.fontSize=""}this.styles={border:d.getBorders(k),padding:d.getPadding(k)};if(this.styles.border){k.style.border=""}if(this.styles.padding){k.style.padding=""}}if(this.href){k.parentNode.bbox=k.bbox}return k},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+d.idPostfix)},HTMLhandleVariant:function(l,k,m){d.handleVariant(l,k,m)},HTMLhandleSize:function(k){if(!k.scale){k.scale=this.HTMLgetScale();if(k.scale!==1){k.style.fontSize=d.Percent(k.scale)}}return k},HTMLhandleColor:function(w){var y=this.getValues("mathcolor","color");if(this.mathbackground){y.mathbackground=this.mathbackground}if(this.background){y.background=this.background}if(this.style&&w.style.backgroundColor){y.mathbackground=w.style.backgroundColor;w.style.backgroundColor="transparent"}var t=(this.styles||{}).border,v=(this.styles||{}).padding;if(y.color&&!this.mathcolor){y.mathcolor=y.color}if(y.background&&!this.mathbackground){y.mathbackground=y.background}if(y.mathcolor){w.style.color=y.mathcolor}if((y.mathbackground&&y.mathbackground!==g.COLOR.TRANSPARENT)||t||v){var A=w.bbox,z=(A.exact?0:1/d.em),u=0,s=0,m=w.style.paddingLeft,q=w.style.paddingRight;if(this.isToken){u=A.lw;s=A.rw-A.w}if(m!==""){u+=d.unEm(m)*(w.scale||1)}if(q!==""){s-=d.unEm(q)*(w.scale||1)}var l=(d.PaddingWidthBug||A.keepPadding||A.exactW?0:s-u);var o=Math.max(0,d.getW(w)+l);var x=A.h+A.d,k=-A.d,r=0,p=0;if(o>0){o+=2*z;u-=z}if(x>0){x+=2*z;k-=z}s=-o-u;if(t){s-=t.right;k-=t.bottom;r+=t.left;p+=t.right;A.h+=t.top;A.d+=t.bottom;A.w+=t.left+t.right;A.lw-=t.left;A.rw+=t.right}if(v){x+=v.top+v.bottom;o+=v.left+v.right;s-=v.right;k-=v.bottom;r+=v.left;p+=v.right;A.h+=v.top;A.d+=v.bottom;A.w+=v.left+v.right;A.lw-=v.left;A.rw+=v.right}if(p){w.style.paddingRight=d.Em(p)}var n=d.Element("span",{id:"MathJax-Color-"+this.spanID+d.idPostfix,isMathJax:true,style:{display:"inline-block",backgroundColor:y.mathbackground,width:d.Em(o),height:d.Em(x),verticalAlign:d.Em(k),marginLeft:d.Em(u),marginRight:d.Em(s)}});d.setBorders(n,t);if(A.width){n.style.width=A.width;n.style.marginRight="-"+A.width}if(d.msieInlineBlockAlignBug){n.style.position="relative";n.style.width=n.style.height=0;n.style.verticalAlign=n.style.marginLeft=n.style.marginRight="";n.style.border=n.style.padding="";if(t&&d.msieBorderWidthBug){x+=t.top+t.bottom;o+=t.left+t.right}n.style.width=d.Em(r+z);d.placeBox(d.addElement(n,"span",{noAdjust:true,isMathJax:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",background:(y.mathbackground||"transparent"),width:d.Em(o),height:d.Em(x)}}),u,A.h+z);d.setBorders(n.firstChild,t)}w.parentNode.insertBefore(n,w);if(d.msieColorPositionBug){w.style.position="relative"}return n}return null},HTMLremoveColor:function(){var k=document.getElementById("MathJax-Color-"+this.spanID+d.idPostfix);if(k){k.parentNode.removeChild(k)}},HTMLhandleSpace:function(o){if(this.useMMLspacing){if(this.type!=="mo"){return}var m=this.getValues("scriptlevel","lspace","rspace");if(m.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){var l=this.HTMLgetMu(o);m.lspace=Math.max(0,d.length2em(m.lspace,l));m.rspace=Math.max(0,d.length2em(m.rspace,l));var k=this,n=this.Parent();while(n&&n.isEmbellished()&&n.Core()===k){k=n;n=n.Parent();o=k.HTMLspanElement()}if(m.lspace){o.style.paddingLeft=d.Em(m.lspace)}if(m.rspace){o.style.paddingRight=d.Em(m.rspace)}}}else{var p=this.texSpacing();if(p!==""){p=d.length2em(p,this.HTMLgetScale())/(o.scale||1);if(o.style.paddingLeft){p+=d.unEm(o.style.paddingLeft)}o.style.paddingLeft=d.Em(p)}}},HTMLgetScale:function(){var m=1,k=this.getValues("mathsize","scriptlevel","fontsize");if(this.style){var l=this.HTMLspanElement();if(l.style.fontSize!=""){k.fontsize=l.style.fontSize}}if(k.fontsize&&!this.mathsize){k.mathsize=k.fontsize}if(k.scriptlevel!==0){if(k.scriptlevel>2){k.scriptlevel=2}m=Math.pow(this.Get("scriptsizemultiplier"),k.scriptlevel);k.scriptminsize=d.length2em(this.Get("scriptminsize"));if(m2){l.scriptlevel=2}k=Math.sqrt(Math.pow(l.scriptsizemultiplier,l.scriptlevel))}return k},HTMLgetVariant:function(){var k=this.getValues("mathvariant","fontfamily","fontweight","fontstyle");k.hasVariant=this.Get("mathvariant",true);if(!k.hasVariant){k.family=k.fontfamily;k.weight=k.fontweight;k.style=k.fontstyle}if(this.style){var m=this.HTMLspanElement();if(!k.family&&m.style.fontFamily){k.family=m.style.fontFamily}if(!k.weight&&m.style.fontWeight){k.weight=m.style.fontWeight}if(!k.style&&m.style.fontStyle){k.style=m.style.fontStyle}}if(k.weight&&k.weight.match(/^\d+$/)){k.weight=(parseInt(k.weight)>600?"bold":"normal")}var l=k.mathvariant;if(this.variantForm){l="-"+d.fontInUse+"-variant"}if(k.family&&!k.hasVariant){if(!k.weight&&k.mathvariant.match(/bold/)){k.weight="bold"}if(!k.style&&k.mathvariant.match(/italic/)){k.style="italic"}return{FONTS:[],fonts:[],noRemap:true,defaultFont:{family:k.family,style:k.style,weight:k.weight}}}if(k.weight==="bold"){l={normal:g.VARIANT.BOLD,italic:g.VARIANT.BOLDITALIC,fraktur:g.VARIANT.BOLDFRAKTUR,script:g.VARIANT.BOLDSCRIPT,"sans-serif":g.VARIANT.BOLDSANSSERIF,"sans-serif-italic":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.weight==="normal"){l={bold:g.VARIANT.normal,"bold-italic":g.VARIANT.ITALIC,"bold-fraktur":g.VARIANT.FRAKTUR,"bold-script":g.VARIANT.SCRIPT,"bold-sans-serif":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.SANSSERIFITALIC}[l]||l}}if(k.style==="italic"){l={normal:g.VARIANT.ITALIC,bold:g.VARIANT.BOLDITALIC,"sans-serif":g.VARIANT.SANSSERIFITALIC,"bold-sans-serif":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.style==="normal"){l={italic:g.VARIANT.NORMAL,"bold-italic":g.VARIANT.BOLD,"sans-serif-italic":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.BOLDSANSSERIF}[l]||l}}if(!(l in d.FONTDATA.VARIANT)){l="normal"}return d.FONTDATA.VARIANT[l]}},{HTMLautoload:function(){var k=d.autoloadDir+"/"+this.type+".js";b.RestartAfter(h.Require(k))},HTMLautoloadFile:function(k){var l=d.autoloadDir+"/"+k+".js";b.RestartAfter(h.Require(l))},HTMLstretchH:function(l,k){this.HTMLremoveColor();return this.toHTML(l,k)},HTMLstretchV:function(l,k,m){this.HTMLremoveColor();return this.toHTML(l,k,m)}});g.chars.Augment({toHTML:function(n,m,l,o){var r=this.data.join("").replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.entity.Augment({toHTML:function(n,m,l,o){var r=this.toString().replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.mi.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lp.w&&q.length===1&&!n.noIC){p.ic=p.rw-p.w;d.createBlank(o,p.ic);p.w=p.rw}this.HTMLhandleSpace(o);this.HTMLhandleColor(o);return o}});g.mn.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lu.bbox.w){u.bbox.ic=u.bbox.rw-u.bbox.w;d.createBlank(u,u.bbox.ic);u.bbox.w=u.bbox.rw}}this.HTMLhandleSpace(u);this.HTMLhandleColor(u);return u},CoreParent:function(){var k=this;while(k&&k.isEmbellished()&&k.CoreMO()===this&&!k.isa(g.math)){k=k.Parent()}return k},CoreText:function(k){if(!k){return""}if(k.isEmbellished()){return k.CoreMO().data.join("")}while((k.isa(g.mrow)||k.isa(g.TeXAtom)||k.isa(g.mstyle)||k.isa(g.mphantom))&&k.data.length===1&&k.data[0]){k=k.data[0]}if(!k.isToken){return""}else{return k.data.join("")}},HTMLremapChars:{"*":"\u2217",'"':"\u2033","\u00B0":"\u2218","\u00B2":"2","\u00B3":"3","\u00B4":"\u2032","\u00B9":"1"},HTMLremap:function(l,k){l=l.replace(/-/g,"\u2212");if(k){l=l.replace(/'/g,"\u2032").replace(/`/g,"\u2035");if(l.length===1){l=k[l]||l}}return l},HTMLcanStretch:function(n){if(!this.Get("stretchy")){return false}var o=this.data.join("");if(o.length>1){return false}var l=this.CoreParent();if(l&&l.isa(g.munderover)&&this.CoreText(l.data[l.base]).length===1){var m=l.data[l.over],k=l.data[l.under];if(m&&this===m.CoreMO()&&l.Get("accent")){o=d.FONTDATA.REMAPACCENT[o]||o}else{if(k&&this===k.CoreMO()&&l.Get("accentunder")){o=d.FONTDATA.REMAPACCENTUNDER[o]||o}}}o=d.FONTDATA.DELIMITERS[o.charCodeAt(0)];return(o&&o.dir==n.substr(0,1))},HTMLstretchV:function(m,n,o){this.HTMLremoveColor();var r=this.getValues("symmetric","maxsize","minsize");var p=this.HTMLspanElement(),s=this.HTMLgetMu(p),q;var k=d.TeX.axis_height,l=p.scale;if(r.symmetric){q=2*Math.max(n-k,o+k)}else{q=n+o}r.maxsize=d.length2em(r.maxsize,s,p.bbox.h+p.bbox.d);r.minsize=d.length2em(r.minsize,s,p.bbox.h+p.bbox.d);q=Math.max(r.minsize,Math.min(r.maxsize,q));p=this.HTMLcreateSpan(m);d.createDelimiter(p,this.data.join("").charCodeAt(0),q,l);if(r.symmetric){q=(p.bbox.h+p.bbox.d)/2+k}else{q=(p.bbox.h+p.bbox.d)*n/(n+o)}d.positionDelimiter(p,q);this.HTMLhandleSpace(p);this.HTMLhandleColor(p);return p},HTMLstretchH:function(o,k){this.HTMLremoveColor();var m=this.getValues("maxsize","minsize","mathvariant","fontweight");if((m.fontweight==="bold"||parseInt(m.fontweight)>=600)&&!this.Get("mathvariant",true)){m.mathvariant=g.VARIANT.BOLD}var n=this.HTMLspanElement(),l=this.HTMLgetMu(n),p=n.scale;m.maxsize=d.length2em(m.maxsize,l,n.bbox.w);m.minsize=d.length2em(m.minsize,l,n.bbox.w);k=Math.max(m.minsize,Math.min(m.maxsize,k));n=this.HTMLcreateSpan(o);d.createDelimiter(n,this.data.join("").charCodeAt(0),k,p,m.mathvariant);this.HTMLhandleSpace(n);this.HTMLhandleColor(n);return n}});g.mtext.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));var n=this.HTMLgetVariant();if(d.config.mtextFontInherit||this.Parent().type==="merror"){n={bold:n.bold,italic:n.italic,fontInherit:true}}for(var l=0,k=this.data.length;ld.linebreakWidth)||this.hasNewline()},HTMLstretchH:function(m,k){this.HTMLremoveColor();var l=this.HTMLspanElement();this.data[this.core].HTMLstretchH(l,k);this.HTMLcomputeBBox(l,true);this.HTMLhandleColor(l);return l},HTMLstretchV:function(m,l,n){this.HTMLremoveColor();var k=this.HTMLspanElement();this.data[this.core].HTMLstretchV(k,l,n);this.HTMLcomputeBBox(k,true);this.HTMLhandleColor(k);return k}});g.mstyle.Augment({toHTML:function(l,k,m){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){var n=this.data[0].toHTML(l);if(m!=null){this.data[0].HTMLstretchV(l,k,m)}else{if(k!=null){this.data[0].HTMLstretchH(l,k)}}l.bbox=n.bbox}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mfrac.Augment({toHTML:function(D){D=this.HTMLcreateSpan(D);var m=d.createStack(D);var r=d.createBox(m),o=d.createBox(m);d.MeasureSpans([this.HTMLboxChild(0,r),this.HTMLboxChild(1,o)]);var k=this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled");var I=this.HTMLgetScale(),C=k.displaystyle;var G=d.TeX.axis_height*I;if(k.bevelled){var F=(C?0.4:0.15);var s=Math.max(r.bbox.h+r.bbox.d,o.bbox.h+o.bbox.d)+2*F;var E=d.createBox(m);d.createDelimiter(E,47,s);d.placeBox(r,0,(r.bbox.d-r.bbox.h)/2+G+F);d.placeBox(E,r.bbox.w-F/2,(E.bbox.d-E.bbox.h)/2+G);d.placeBox(o,r.bbox.w+E.bbox.w-F,(o.bbox.d-o.bbox.h)/2+G-F)}else{var l=Math.max(r.bbox.w,o.bbox.w);var y=d.thickness2em(k.linethickness,I),A,z,x,w;var B=d.TeX.min_rule_thickness/this.em;if(C){x=d.TeX.num1;w=d.TeX.denom1}else{x=(y===0?d.TeX.num3:d.TeX.num2);w=d.TeX.denom2}x*=I;w*=I;if(y===0){A=Math.max((C?7:3)*d.TeX.rule_thickness,2*B);z=(x-r.bbox.d)-(o.bbox.h-w);if(zy){l=((s.bbox.h+s.bbox.d)-(y-A))/2}var B=d.FONTDATA.DELIMITERS[d.FONTDATA.RULECHAR];if(!B||oK){K=r[M].bbox.w}if(!N[M]&&K>n){n=K}}}if(F==null&&H!=null){n=H}else{if(n==-d.BIGDIMEN){n=K}}for(M=K=0,I=this.data.length;MK){K=w.bbox.w}}}var E=d.TeX.rule_thickness,G=d.FONTDATA.TeX_factor;var p=r[this.base]||{bbox:this.HTMLzeroBBox()};var v,s,A,z,u,C,J,O=0;if(p.bbox.ic){O=1.3*p.bbox.ic+0.05}for(M=0,I=this.data.length;M0){z+=F;y-=F}}d.placeBox(k,o.bbox.w+M,Math.max(z,J.superscriptshift));d.placeBox(x,o.bbox.w,-Math.max(y,J.subscriptshift))}}this.HTMLhandleSpace(K);this.HTMLhandleColor(K);return K},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mmultiscripts.Augment({toHTML:g.mbase.HTMLautoload});g.mtable.Augment({toHTML:g.mbase.HTMLautoload});g["annotation-xml"].Augment({toHTML:g.mbase.HTMLautoload});g.math.Augment({toHTML:function(u,l){var r=this.Get("alttext");if(r&&r!==""){l.setAttribute("aria-label",r)}var m=d.addElement(u,"nobr",{isMathJax:true});u=this.HTMLcreateSpan(m);var s=d.createStack(u),n=d.createBox(s),t;s.style.fontSize=m.parentNode.style.fontSize;m.parentNode.style.fontSize="";if(this.data[0]!=null){if(d.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}g.mbase.prototype.displayAlign=b.config.displayAlign;g.mbase.prototype.displayIndent=b.config.displayIndent;var o=this.data[0].toHTML(n);o.bbox.exactW=false;t=d.Measured(o,n)}d.placeBox(n,0,0);u.style.width=d.Em((Math.round(t.bbox.w*this.em)+0.25)/d.outerEm);u.style.display="inline-block";var k=1/d.em,q=d.em/d.outerEm;d.em/=q;u.bbox.h*=q;u.bbox.d*=q;u.bbox.w*=q;u.bbox.lw*=q;u.bbox.rw*=q;if(t&&t.bbox.width!=null){u.style.minWidth=(t.bbox.minWidth||u.style.width);u.style.width=s.style.width=t.bbox.width;n.style.width="100%"}this.HTMLhandleColor(u);if(t){d.createRule(u,(t.bbox.h+k)*q,(t.bbox.d+k)*q,0)}if(!this.isMultiline&&this.Get("display")==="block"&&u.bbox.width==null){var v=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(v.indentalignfirst!==g.INDENTALIGN.INDENTALIGN){v.indentalign=v.indentalignfirst}if(v.indentalign===g.INDENTALIGN.AUTO){v.indentalign=this.displayAlign}l.style.textAlign=v.indentalign;if(v.indentshiftfirst!==g.INDENTSHIFT.INDENTSHIFT){v.indentshift=v.indentshiftfirst}if(v.indentshift==="auto"){v.indentshift=this.displayIndent}if(v.indentshift&&v.indentalign!==g.INDENTALIGN.CENTER){u.style[{left:"marginLeft",right:"marginRight"}[v.indentalign]]=d.Em(d.length2em(v.indentshift))}}return u},HTMLspanElement:g.mbase.prototype.HTMLspanElement});g.TeXAtom.Augment({toHTML:function(l){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){if(this.texClass===g.TEXCLASS.VCENTER){var k=d.createStack(l);var m=d.createBox(k);d.Measured(this.data[0].toHTML(m),m);d.placeBox(m,0,d.TeX.axis_height-(m.bbox.h+m.bbox.d)/2+m.bbox.d)}else{l.bbox=this.data[0].toHTML(l).bbox}}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",d,"jax.js"]),0)})});b.Register.StartupHook("End Config",function(){b.Browser.Select({MSIE:function(k){var o=(document.documentMode||0);var n=k.versionAtLeast("7.0");var m=k.versionAtLeast("8.0")&&o>7;var l=(document.compatMode==="BackCompat");if(o<9){d.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";d.config.styles[".MathJax .MathJax_HitBox"].opacity=0;d.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)"}d.Augment({PaddingWidthBug:true,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:l,msieDisappearingBug:(o>=8),msieMarginScaleBug:(o<8),msiePaddingWidthBug:true,msieBorderWidthBug:l,msieFrameSizeBug:(o<=8),msieInlineBlockAlignBug:(!m||l),msiePlaceBoxBug:(m&&!l),msieClipRectBug:!m,msieNegativeSpaceBug:l,cloneNodeBug:(m&&k.version==="8.0"),initialSkipBug:(o<8),msieNegativeBBoxBug:(o>=8),msieIE6:!n,msieItalicWidthBug:true,FontFaceBug:true,msieFontCSSBug:k.isIE9,allowWebFonts:(o>=9?"woff":"eot")})},Firefox:function(l){var m=false;if(l.versionAtLeast("3.5")){var k=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||b.config.root.match(/^https?:\/\//)||(b.config.root+"/").substr(0,k.length)===k){m="otf"}}d.Augment({ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:m})},Safari:function(p){var n=p.versionAtLeast("3.0");var m=p.versionAtLeast("3.1");var k=navigator.appVersion.match(/ Safari\/\d/)&&navigator.appVersion.match(/ Version\/\d/)&&navigator.vendor.match(/Apple/);var l=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var q=(m&&p.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!p.versionAtLeast("5.0"))||(l!=null&&(l[1]<2||(l[1]==2&&l[2]<2)))));d.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!m,safariTextNodeBug:!n,forceReflow:true,allowWebFonts:(m&&!q?"otf":false)});if(k){d.Augment({webFontDefault:(p.isMobile?"sans-serif":"serif")})}if(p.isPC){d.Augment({adjustAvailableFonts:d.removeSTIXfonts,checkWebFontsTwice:true})}if(q){var o=b.config["HTML-CSS"];if(o){o.availableFonts=[];o.preferredFont=null}else{b.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(k){d.Augment({Em:d.EmRounded,cloneNodeBug:true,rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariWebFontSerif:[""],forceReflow:true,allowWebFonts:(k.versionAtLeast("4.0")?"otf":"svg")})},Opera:function(k){k.isMini=(navigator.appVersion.match("Opera Mini")!=null);d.config.styles[".MathJax .merror"]["vertical-align"]=null;d.config.styles[".MathJax span"]["z-index"]=0;d.Augment({operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:k.versionAtLeast("10.61"),initialSkipBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(k.versionAtLeast("10.0")&&!k.isMini?"otf":false),adjustAvailableFonts:d.removeSTIXfonts})},Konqueror:function(k){d.Augment({konquerorVerticalAlignBug:true})}})});MathJax.Hub.Register.StartupHook("End Cookie",function(){if(b.config.menuSettings.zoom!=="None"){h.Require("[MathJax]/extensions/MathZoom.js")}})})(MathJax.Ajax,MathJax.Hub,MathJax.OutputJax["HTML-CSS"]); - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];a.mtable.Augment({toHTML:function(t){t=this.HTMLcreateSpan(t);if(this.data.length===0){return t}var K=this.getValues("columnalign","rowalign","columnspacing","rowspacing","columnwidth","equalcolumns","equalrows","columnlines","rowlines","frame","framespacing","align","useHeight","width","side","minlabelspacing");var aJ=K.width.match(/%$/);var ay=b.createStack(t);var aG=this.HTMLgetScale(),aA=this.HTMLgetMu(t),aB=-1;var aq=[],au=[],ak=[],aw=[],av=[],af,ae,ap=-1,ad,ao,Z,aF,R,aC,aO=[];var al=b.FONTDATA.baselineskip*aG*K.useHeight,aT,I=b.FONTDATA.lineH*aG,O=b.FONTDATA.lineD*aG;for(af=0,ad=this.data.length;afap){ap=ae}av[ae]=b.createStack(b.createBox(ay));ak[ae]=-b.BIGDIMEN}aw[af][ae]=b.createBox(av[ae]);aO.push(aF.data[ae-Z].toHTML(aw[af][ae]))}}b.MeasureSpans(aO);for(af=0,ad=this.data.length;afaq[ae]){aq[ae]=aS*aL.h/aT}if(aS*aL.d/aT>au[ae]){au[ae]=aS*aL.d/aT}}}else{if(aC.HTMLcanStretch("Horizontal")){aS=b.length2em(aS,aA,aL.w);if(aS>ak[ae]){ak[ae]=aS}}}}}if(aw[af][ae].bbox.h>aq[af]){aq[af]=aw[af][ae].bbox.h}if(aw[af][ae].bbox.d>au[af]){au[af]=aw[af][ae].bbox.d}if(aw[af][ae].bbox.w>ak[ae]){ak[ae]=aw[af][ae].bbox.w}}}if(aq[0]+au[0]){aq[0]=Math.max(aq[0],I)}if(aq[aw.length-1]+au[aw.length-1]){au[aw.length-1]=Math.max(au[aw.length-1],O)}var aE=MathJax.Hub.SplitList;var az=aE(K.columnspacing),aQ=aE(K.rowspacing),e=aE(K.columnalign),E=aE(K.rowalign),d=aE(K.columnlines),z=aE(K.rowlines),aM=aE(K.columnwidth),V=[];for(af=0,ad=az.length;afaw.length){ab=aw.length}}aj=0;aU=-(aT+aH)+aq[0];for(af=0,ad=ab-1;af0.98){S=0.98/ag;ag=0.98}}else{if(K.width==="auto"){if(ag>0.98){S=L/(B+L);ac=B+L}else{ac=B/(1-ag)}}else{ac=b.length2em(K.width,aA);for(af=0,ad=Math.min(ap+1,az.length);af0.01){if(ah&&ac>B){ac=(ac-B)/ah;for(af=0,ad=at.length;af&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.2",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); - -MathJax.InputJax.AsciiMath=MathJax.InputJax({id:"AsciiMath",version:"2.2",directory:MathJax.InputJax.directory+"/AsciiMath",extensionDir:MathJax.InputJax.extensionDir+"/AsciiMath",config:{displaystyle:true,decimalsign:"."}});MathJax.InputJax.AsciiMath.Register("math/asciimath");MathJax.InputJax.AsciiMath.loadComplete("config.js"); - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -MathJax.Extension.asciimath2jax={version:"2.2",config:{delimiters:[["`","`"]],skipTags:["script","noscript","style","textarea","pre","code"],ignoreClass:"asciimath2jax_ignore",processClass:"asciimath2jax_process",preview:"AsciiMath"},PreProcess:function(a){if(!this.configured){this.config=MathJax.Hub.CombineConfig("asciimath2jax",this.config);if(this.config.Augment){MathJax.Hub.Insert(this,this.config.Augment)}this.configured=true}if(typeof(a)==="string"){a=document.getElementById(a)}if(!a){a=document.body}if(this.createPatterns()){this.scanElement(a,a.nextSibling)}},createPatterns:function(){var d=[],c,a,b=this.config;this.match={};if(b.delimiters.length===0){return false}for(c=0,a=b.delimiters.length;c0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g=ai-1){this.lastChild=al}this.childNodes[ak]=al;al.nextSibling=aj.nextSibling;aj.nextSibling=aj.parent=null;return aj},toString:function(){return"{"+this.childNodes.join("")+"}"}});var E=function(){k=MathJax.ElementJax.mml;var i=k.mbase.prototype.Init;k.mbase.Augment({firstChild:null,lastChild:null,nodeValue:"",nextSibling:null,Init:function(){var ai=i.apply(this,arguments)||this;ai.childNodes=ai.data;ai.nodeName=ai.type;return ai},appendChild:function(al){if(al.parent){al.parent.removeChild(al)}var aj=arguments;if(al.isa(aa)){aj=al.childNodes;al.data=al.childNodes=[];al.firstChild=al.lastChild=null}for(var ak=0,ai=aj.length;ak=ai-1){this.lastChild=al}this.SetData(ak,al);al.nextSibling=aj.nextSibling;this.nodeValue="";for(ak=0,ai=this.childNodes.length;ak=",tag:"mo",output:"\u2265",tex:"ge",ttype:d},{input:"geq",tag:"mo",output:"\u2265",tex:null,ttype:d},{input:"-<",tag:"mo",output:"\u227A",tex:"prec",ttype:d},{input:"-lt",tag:"mo",output:"\u227A",tex:null,ttype:d},{input:">-",tag:"mo",output:"\u227B",tex:"succ",ttype:d},{input:"in",tag:"mo",output:"\u2208",tex:null,ttype:d},{input:"!in",tag:"mo",output:"\u2209",tex:"notin",ttype:d},{input:"sub",tag:"mo",output:"\u2282",tex:"subset",ttype:d},{input:"sup",tag:"mo",output:"\u2283",tex:"supset",ttype:d},{input:"sube",tag:"mo",output:"\u2286",tex:"subseteq",ttype:d},{input:"supe",tag:"mo",output:"\u2287",tex:"supseteq",ttype:d},{input:"-=",tag:"mo",output:"\u2261",tex:"equiv",ttype:d},{input:"~=",tag:"mo",output:"\u2245",tex:"cong",ttype:d},{input:"~~",tag:"mo",output:"\u2248",tex:"approx",ttype:d},{input:"prop",tag:"mo",output:"\u221D",tex:"propto",ttype:d},{input:"and",tag:"mtext",output:"and",tex:null,ttype:a},{input:"or",tag:"mtext",output:"or",tex:null,ttype:a},{input:"not",tag:"mo",output:"\u00AC",tex:"neg",ttype:d},{input:"=>",tag:"mo",output:"\u21D2",tex:"implies",ttype:d},{input:"if",tag:"mo",output:"if",tex:null,ttype:a},{input:"<=>",tag:"mo",output:"\u21D4",tex:"iff",ttype:d},{input:"AA",tag:"mo",output:"\u2200",tex:"forall",ttype:d},{input:"EE",tag:"mo",output:"\u2203",tex:"exists",ttype:d},{input:"_|_",tag:"mo",output:"\u22A5",tex:"bot",ttype:d},{input:"TT",tag:"mo",output:"\u22A4",tex:"top",ttype:d},{input:"|--",tag:"mo",output:"\u22A2",tex:"vdash",ttype:d},{input:"|==",tag:"mo",output:"\u22A8",tex:"models",ttype:d},{input:"(",tag:"mo",output:"(",tex:null,ttype:b},{input:")",tag:"mo",output:")",tex:null,ttype:l},{input:"[",tag:"mo",output:"[",tex:null,ttype:b},{input:"]",tag:"mo",output:"]",tex:null,ttype:l},{input:"{",tag:"mo",output:"{",tex:null,ttype:b},{input:"}",tag:"mo",output:"}",tex:null,ttype:l},{input:"|",tag:"mo",output:"|",tex:null,ttype:r},{input:"(:",tag:"mo",output:"\u2329",tex:"langle",ttype:b},{input:":)",tag:"mo",output:"\u232A",tex:"rangle",ttype:l},{input:"<<",tag:"mo",output:"\u2329",tex:null,ttype:b},{input:">>",tag:"mo",output:"\u232A",tex:null,ttype:l},{input:"{:",tag:"mo",output:"{:",tex:null,ttype:b,invisible:true},{input:":}",tag:"mo",output:":}",tex:null,ttype:l,invisible:true},{input:"int",tag:"mo",output:"\u222B",tex:null,ttype:d},{input:"dx",tag:"mi",output:"{:d x:}",tex:null,ttype:Z},{input:"dy",tag:"mi",output:"{:d y:}",tex:null,ttype:Z},{input:"dz",tag:"mi",output:"{:d z:}",tex:null,ttype:Z},{input:"dt",tag:"mi",output:"{:d t:}",tex:null,ttype:Z},{input:"oint",tag:"mo",output:"\u222E",tex:null,ttype:d},{input:"del",tag:"mo",output:"\u2202",tex:"partial",ttype:d},{input:"grad",tag:"mo",output:"\u2207",tex:"nabla",ttype:d},{input:"+-",tag:"mo",output:"\u00B1",tex:"pm",ttype:d},{input:"O/",tag:"mo",output:"\u2205",tex:"emptyset",ttype:d},{input:"oo",tag:"mo",output:"\u221E",tex:"infty",ttype:d},{input:"aleph",tag:"mo",output:"\u2135",tex:null,ttype:d},{input:"...",tag:"mo",output:"...",tex:"ldots",ttype:d},{input:":.",tag:"mo",output:"\u2234",tex:"therefore",ttype:d},{input:"/_",tag:"mo",output:"\u2220",tex:"angle",ttype:d},{input:"\\ ",tag:"mo",output:"\u00A0",tex:null,ttype:d},{input:"quad",tag:"mo",output:"\u00A0\u00A0",tex:null,ttype:d},{input:"qquad",tag:"mo",output:"\u00A0\u00A0\u00A0\u00A0",tex:null,ttype:d},{input:"cdots",tag:"mo",output:"\u22EF",tex:null,ttype:d},{input:"vdots",tag:"mo",output:"\u22EE",tex:null,ttype:d},{input:"ddots",tag:"mo",output:"\u22F1",tex:null,ttype:d},{input:"diamond",tag:"mo",output:"\u22C4",tex:null,ttype:d},{input:"square",tag:"mo",output:"\u25A1",tex:null,ttype:d},{input:"|__",tag:"mo",output:"\u230A",tex:"lfloor",ttype:d},{input:"__|",tag:"mo",output:"\u230B",tex:"rfloor",ttype:d},{input:"|~",tag:"mo",output:"\u2308",tex:"lceiling",ttype:d},{input:"~|",tag:"mo",output:"\u2309",tex:"rceiling",ttype:d},{input:"CC",tag:"mo",output:"\u2102",tex:null,ttype:d},{input:"NN",tag:"mo",output:"\u2115",tex:null,ttype:d},{input:"QQ",tag:"mo",output:"\u211A",tex:null,ttype:d},{input:"RR",tag:"mo",output:"\u211D",tex:null,ttype:d},{input:"ZZ",tag:"mo",output:"\u2124",tex:null,ttype:d},{input:"f",tag:"mi",output:"f",tex:null,ttype:H,func:true},{input:"g",tag:"mi",output:"g",tex:null,ttype:H,func:true},{input:"lim",tag:"mo",output:"lim",tex:null,ttype:P},{input:"Lim",tag:"mo",output:"Lim",tex:null,ttype:P},{input:"sin",tag:"mo",output:"sin",tex:null,ttype:H,func:true},{input:"cos",tag:"mo",output:"cos",tex:null,ttype:H,func:true},{input:"tan",tag:"mo",output:"tan",tex:null,ttype:H,func:true},{input:"sinh",tag:"mo",output:"sinh",tex:null,ttype:H,func:true},{input:"cosh",tag:"mo",output:"cosh",tex:null,ttype:H,func:true},{input:"tanh",tag:"mo",output:"tanh",tex:null,ttype:H,func:true},{input:"cot",tag:"mo",output:"cot",tex:null,ttype:H,func:true},{input:"sec",tag:"mo",output:"sec",tex:null,ttype:H,func:true},{input:"csc",tag:"mo",output:"csc",tex:null,ttype:H,func:true},{input:"log",tag:"mo",output:"log",tex:null,ttype:H,func:true},{input:"ln",tag:"mo",output:"ln",tex:null,ttype:H,func:true},{input:"det",tag:"mo",output:"det",tex:null,ttype:H,func:true},{input:"dim",tag:"mo",output:"dim",tex:null,ttype:d},{input:"mod",tag:"mo",output:"mod",tex:null,ttype:d},{input:"gcd",tag:"mo",output:"gcd",tex:null,ttype:H,func:true},{input:"lcm",tag:"mo",output:"lcm",tex:null,ttype:H,func:true},{input:"lub",tag:"mo",output:"lub",tex:null,ttype:d},{input:"glb",tag:"mo",output:"glb",tex:null,ttype:d},{input:"min",tag:"mo",output:"min",tex:null,ttype:P},{input:"max",tag:"mo",output:"max",tex:null,ttype:P},{input:"uarr",tag:"mo",output:"\u2191",tex:"uparrow",ttype:d},{input:"darr",tag:"mo",output:"\u2193",tex:"downarrow",ttype:d},{input:"rarr",tag:"mo",output:"\u2192",tex:"rightarrow",ttype:d},{input:"->",tag:"mo",output:"\u2192",tex:"to",ttype:d},{input:"|->",tag:"mo",output:"\u21A6",tex:"mapsto",ttype:d},{input:"larr",tag:"mo",output:"\u2190",tex:"leftarrow",ttype:d},{input:"harr",tag:"mo",output:"\u2194",tex:"leftrightarrow",ttype:d},{input:"rArr",tag:"mo",output:"\u21D2",tex:"Rightarrow",ttype:d},{input:"lArr",tag:"mo",output:"\u21D0",tex:"Leftarrow",ttype:d},{input:"hArr",tag:"mo",output:"\u21D4",tex:"Leftrightarrow",ttype:d},j,af,A,Q,o,s,h,{input:"hat",tag:"mover",output:"\u005E",tex:null,ttype:H,acc:true},{input:"bar",tag:"mover",output:"\u00AF",tex:"overline",ttype:H,acc:true},{input:"vec",tag:"mover",output:"\u2192",tex:null,ttype:H,acc:true},{input:"dot",tag:"mover",output:".",tex:null,ttype:H,acc:true},{input:"ddot",tag:"mover",output:"..",tex:null,ttype:H,acc:true},{input:"ul",tag:"munder",output:"\u0332",tex:"underline",ttype:H,acc:true},ah,x,p,{input:"bb",tag:"mstyle",atname:"fontweight",atval:"bold",output:"bb",tex:null,ttype:H},{input:"mathbf",tag:"mstyle",atname:"fontweight",atval:"bold",output:"mathbf",tex:null,ttype:H},{input:"sf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"sf",tex:null,ttype:H},{input:"mathsf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"mathsf",tex:null,ttype:H},{input:"bbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"bbb",tex:null,ttype:H,codes:D},{input:"mathbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"mathbb",tex:null,ttype:H,codes:D},{input:"cc",tag:"mstyle",atname:"mathvariant",atval:"script",output:"cc",tex:null,ttype:H,codes:J},{input:"mathcal",tag:"mstyle",atname:"mathvariant",atval:"script",output:"mathcal",tex:null,ttype:H,codes:J},{input:"tt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"tt",tex:null,ttype:H},{input:"mathtt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"mathtt",tex:null,ttype:H},{input:"fr",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"fr",tex:null,ttype:H,codes:N},{input:"mathfrak",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"mathfrak",tex:null,ttype:H,codes:N}];function W(ai,i){if(ai.input>i.input){return 1}else{return -1}}var U=[];function v(){var aj=[],ai;for(ai=0;ai>1;if(aj[ai]=U[ai]}y=F;if(am!=""){F=G[al].ttype;return G[al]}F=d;ai=1;ar=ao.slice(0,1);var ap=true;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}if(ar==f){ar=ao.slice(ai,ai+1);if("0"<=ar&&ar<="9"){ap=false;ai++;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}}}if((ap&&ai>1)||ai>2){ar=ao.slice(0,ai-1);aq="mn"}else{ai=2;ar=ao.slice(0,1);aq=(("A">ar||ar>"Z")&&("a">ar||ar>"z")?"mo":"mi")}if(ar=="-"&&y==m){F=m;return{input:ar,tag:aq,output:ar,ttype:H,func:true}}return{input:ar,tag:aq,output:ar,ttype:d}}function T(ai){var i;if(ai.nodeName=="mrow"){i=ai.firstChild.firstChild.nodeValue;if(i=="("||i=="["||i=="{"){ai.removeChild(ai.firstChild)}}if(ai.nodeName=="mrow"){i=ai.lastChild.firstChild.nodeValue;if(i==")"||i=="]"||i=="}"){ai.removeChild(ai.lastChild)}}}var K,y,F;function L(ao){var ak,aj,ar,am,aq,an=g.createDocumentFragment();ao=u(ao,0);ak=n(ao);if(ak==null||ak.ttype==l&&K>0){return[null,ao]}if(ak.ttype==Z){ao=ak.output+u(ao,ak.input.length);ak=n(ao)}switch(ak.ttype){case P:case d:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao];case b:K++;ao=u(ao,ak.input.length);ar=w(ao,true);K--;if(typeof ak.invisible=="boolean"&&ak.invisible){aj=M("mrow",ar[0])}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0])}return[aj,ar[1]];case ab:if(ak!=p){ao=u(ao,ak.input.length)}if(ao.charAt(0)=="{"){am=ao.indexOf("}")}else{if(ao.charAt(0)=="("){am=ao.indexOf(")")}else{if(ao.charAt(0)=="["){am=ao.indexOf("]")}else{if(ak==p){am=ao.slice(1).indexOf('"')+1}else{am=0}}}}if(am==-1){am=ao.length}aq=ao.slice(1,am);if(aq.charAt(0)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}an.appendChild(M(ak.tag,g.createTextNode(aq)));if(aq.charAt(aq.length-1)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}ao=u(ao,am+1);return[M("mrow",an),ao];case H:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M(ak.tag,g.createTextNode(ak.output)),ao]}if(typeof ak.func=="boolean"&&ak.func){aq=ao.charAt(0);if(aq=="^"||aq=="_"||aq=="/"||aq=="|"||aq==","){return[M(ak.tag,g.createTextNode(ak.output)),ao]}else{aj=M("mrow",M(ak.tag,g.createTextNode(ak.output)));aj.appendChild(ar[0]);return[aj,ar[1]]}}T(ar[0]);if(ak.input=="sqrt"){return[M(ak.tag,ar[0]),ar[1]]}else{if(typeof ak.acc=="boolean"&&ak.acc){aj=M(ak.tag,ar[0]);aj.appendChild(M("mo",g.createTextNode(ak.output)));return[aj,ar[1]]}else{if(!q&&typeof ak.codes!="undefined"){for(am=0;am64&&aq.charCodeAt(al)<91){ap=ap+String.fromCharCode(ak.codes[aq.charCodeAt(al)-65])}else{ap=ap+aq.charAt(al)}}if(ar[0].nodeName=="mi"){ar[0]=R("mo").appendChild(g.createTextNode(ap))}else{ar[0].replaceChild(R("mo").appendChild(g.createTextNode(ap)),ar[0].childNodes[am])}}}}aj=M(ak.tag,ar[0]);aj.setAttribute(ak.atname,ak.atval);return[aj,ar[1]]}}case X:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ar[0]);var ai=L(ar[1]);if(ai[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ai[0]);if(ak.input=="root"||ak.input=="stackrel"){an.appendChild(ai[0])}an.appendChild(ar[0]);if(ak.input=="frac"){an.appendChild(ai[0])}return[M(ak.tag,an),ai[1]];case m:ao=u(ao,ak.input.length);return[M("mo",g.createTextNode(ak.output)),ao];case a:ao=u(ao,ak.input.length);aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);an.appendChild(M(ak.tag,g.createTextNode(ak.output)));aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);return[M("mrow",an),ao];case r:K++;ao=u(ao,ak.input.length);ar=w(ao,false);K--;aq="";if(ar[0].lastChild!=null){aq=ar[0].lastChild.firstChild.nodeValue}if(aq=="|"){aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0]);return[aj,ar[1]]}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);return[aj,ao]}default:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao]}}function z(an){var al,ao,am,ak,i,aj;an=u(an,0);ao=n(an);i=L(an);ak=i[0];an=i[1];al=n(an);if(al.ttype==m&&al.input!="/"){an=u(an,al.input.length);i=L(an);if(i[0]==null){i[0]=M("mo",g.createTextNode("\u25A1"))}else{T(i[0])}an=i[1];if(al.input=="_"){am=n(an);aj=(ao.ttype==P);if(am.input=="^"){an=u(an,am.input.length);var ai=L(an);T(ai[0]);an=ai[1];ak=M((aj?"munderover":"msubsup"),ak);ak.appendChild(i[0]);ak.appendChild(ai[0]);ak=M("mrow",ak)}else{ak=M((aj?"munder":"msub"),ak);ak.appendChild(i[0])}}else{ak=M(al.tag,ak);ak.appendChild(i[0])}}return[ak,an]}function w(aq,ap){var av,ar,am,ay,an=g.createDocumentFragment();do{aq=u(aq,0);am=z(aq);ar=am[0];aq=am[1];av=n(aq);if(av.ttype==m&&av.input=="/"){aq=u(aq,av.input.length);am=z(aq);if(am[0]==null){am[0]=M("mo",g.createTextNode("\u25A1"))}else{T(am[0])}aq=am[1];T(ar);ar=M(av.tag,ar);ar.appendChild(am[0]);an.appendChild(ar);av=n(aq)}else{if(ar!=undefined){an.appendChild(ar)}}}while((av.ttype!=l&&(av.ttype!=r||ap)||K==0)&&av!=null&&av.output!="");if(av.ttype==l||av.ttype==r){var az=an.childNodes.length;if(az>0&&an.childNodes[az-1].nodeName=="mrow"&&az>1&&an.childNodes[az-2].nodeName=="mo"&&an.childNodes[az-2].firstChild.nodeValue==","){var aB=an.childNodes[az-1].lastChild.firstChild.nodeValue;if(aB==")"||aB=="]"){var aj=an.childNodes[az-1].firstChild.firstChild.nodeValue;if(aj=="("&&aB==")"&&av.output!="}"||aj=="["&&aB=="]"){var ak=[];var aw=true;var at=an.childNodes.length;for(ay=0;aw&&ay1){aw=ak[ay].length==ak[ay-2].length}}if(aw){var al,ai,ao,au,aA=g.createDocumentFragment();for(ay=0;ay2){an.removeChild(an.firstChild);an.removeChild(an.firstChild)}aA.appendChild(M("mtr",al))}ar=M("mtable",aA);if(typeof av.invisible=="boolean"&&av.invisible){ar.setAttribute("columnalign","left")}an.replaceChild(ar,an.firstChild)}}}}aq=u(aq,av.input.length);if(typeof av.invisible!="boolean"||!av.invisible){ar=M("mo",g.createTextNode(av.output));an.appendChild(ar)}}return[an,aq]}function e(aj){var ai=R("mstyle");if(I!=""){ai.setAttribute("mathcolor",I)}if(t){ai.setAttribute("displaystyle","true")}if(ad!=""){ai.setAttribute("fontfamily",ad)}K=0;ai.appendChild(w(aj.replace(/^\s+/g,""),false)[0]);ai=M("math",ai);if(C){ai.setAttribute("title",aj.replace(/\s+/g," "))}if(ad!=""&&(q||ad!="serif")){var i=V("font");i.setAttribute("face",ad);i.appendChild(ai);return i}return ai}C=false;ad="";I="";(function(){for(var aj=0,ai=G.length;aj",tex:null,ttype:d},{input:"gt=",tag:"mo",output:"\u2265",tex:"geq",ttype:d},{input:"-<=",tag:"mo",output:"\u2AAF",tex:"preceq",ttype:d},{input:">-=",tag:"mo",output:"\u2AB0",tex:"succeq",ttype:d},{input:"'",tag:"mo",output:"\u2032",tex:"prime",ttype:d},{input:"arcsin",tag:"mi",output:"arcsin",tex:null,ttype:H,func:true},{input:"arccos",tag:"mi",output:"arccos",tex:null,ttype:H,func:true},{input:"arctan",tag:"mi",output:"arctan",tex:null,ttype:H,func:true},{input:"coth",tag:"mi",output:"coth",tex:null,ttype:H,func:true},{input:"sech",tag:"mi",output:"sech",tex:null,ttype:H,func:true},{input:"csch",tag:"mi",output:"csch",tex:null,ttype:H,func:true},{input:"abs",tag:"mi",output:"abs",tex:null,ttype:H,func:true},{input:"exp",tag:"mi",output:"exp",tex:null,ttype:H,func:true},{input:"tilde",tag:"mover",output:"~",tex:null,ttype:H,acc:true});ag.Augment({AM:{Init:function(){t=ag.config.displaystyle;f=(ag.config.decimal||ag.config.decimalsign);E();v()},Augment:function(i){for(var ai in i){if(i.hasOwnProperty(ai)){switch(ai){case"displaystyle":t=i[ai];break;case"decimal":decimal=i[ai];break;case"parseMath":e=i[ai];break;case"parseExpr":w=i[ai];break;case"parseIexpr":z=i[ai];break;case"parseSexpr":L=i[ai];break;case"removeBrackets":T=i[ai];break;case"getSymbol":n=i[ai];break;case"position":c=i[ai];break;case"removeCharsAndBlanks":u=i[ai];break;case"createMmlNode":M=i[ai];break;case"createElementMathML":R=i[ai];break;case"createElementXHTML":V=i[ai];break;case"initSymbols":v=i[ai];break;case"compareNames":comareNames=i[ai];break}this[ai]=i[ai]}}},parseMath:e,parseExpr:w,parseIexpr:z,parseSexr:L,removeBrackets:T,getSymbol:n,position:c,removeCharsAndBlanks:u,createMmlNode:M,createElementMathML:R,createElementXHTML:V,initSymbols:v,compareNames:W,createDocumentFragment:aa,document:g,define:B,symbols:G,names:U,TOKEN:{CONST:d,UNARY:H,BINARY:X,INFIX:m,LEFTBRACKET:b,RIGHTBRACKET:l,SPACE:a,UNDEROVER:P,DEFINITION:Z,LEFTRIGHT:r,TEXT:ab}}});var ae=[S,O];ae=null})(MathJax.InputJax.AsciiMath);(function(b){var a;b.Augment({sourceMenuTitle:["AsciiMathInput","AsciiMath Input"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(c){var d,f=MathJax.HTML.getScript(c);var g={math:f,script:c};this.prefilterHooks.Execute(g);f=g.math;try{d=this.AM.parseMath(f)}catch(e){if(!e.asciimathError){throw e}d=this.formatError(e,f)}g.math=a(d);this.postfilterHooks.Execute(g);return g.math},formatError:function(f,e,c){var d=f.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["AsciiMath Jax - parse error",d,e,c]);return a.merror(d)},Error:function(c){throw MathJax.Hub.Insert(Error(c),{asciimathError:true})},Startup:function(){a=MathJax.ElementJax.mml;this.AM.Init()}});b.loadComplete("jax.js")})(MathJax.InputJax.AsciiMath); - -(function(l,c,g,e){var f,i=c.Browser.isMSIE;var h,b,d,k;c.Register.StartupHook("MathZoom Ready",function(){k=MathJax.Extension.MathZoom});var j=function(m,o){var n=e.Element("span");m="padding"+m;if(o){n.style.cssText=(o.getAttribute("style")||"");if(n.style.padding===""&&(n.style[m]||"")===""){n.style[m]="0px";o.setAttribute("style",n.style.cssText)}}};var a=function(r,m,p){if(r){var o=e.Element("span");o.style.cssText=(r.getAttribute("style")||"");if(o.style.padding===""){var q={paddingLeft:p,paddingTop:m,paddingRight:"0px",paddingBottom:"0px"};for(var n in q){if(q.hasOwnProperty(n)){if((o.style[n]||"")===""){o.style[n]=q[n]}}}}r.setAttribute("style",o.style.cssText)}};l.Augment({config:{styles:{".MathJax_MathML":{"font-style":"normal","font-weight":"normal","line-height":"normal","font-size":"100%","font-size-adjust":"none","text-indent":0,"text-align":"left","text-transform":"none","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none",direction:"ltr",border:0,padding:0,margin:0},"span.MathJax_MathML":{display:"inline"},"div.MathJax_MathML":{display:"block"},".MathJax_mmlExBox":{display:"block",overflow:"hidden",height:"1px",width:"60ex",padding:0,border:0,margin:0}}},settings:c.config.menuSettings,ex:1,Config:function(){this.SUPER(arguments).Config.call(this);if(this.settings.scale){this.config.scale=this.settings.scale}if(c.config.displayAlign!=="center"){var o=c.config.displayAlign,m=c.config.displayIndent;var n={"text-align":o+"!important"};n["margin-"+o]=m+"!important";c.Insert(this.config.styles,{"div.MathJax_MathML":n,"div.MathJax_MathML math":{"text-align":o},"div.MathJax_MathContainer > span":{"text-align":o+"!important"}})}if(!this.require){this.require=[]}this.require.push(MathJax.OutputJax.extensionDir+"/MathEvents.js")},Startup:function(){h=MathJax.Extension.MathEvents.Event;b=MathJax.Extension.MathEvents.Touch;d=MathJax.Extension.MathEvents.Hover;this.ContextMenu=h.ContextMenu;this.Mousedown=h.AltContextMenu;this.Mouseover=d.Mouseover;this.Mouseout=d.Mouseout;this.Mousemove=d.Mousemove;if(!i){this.EmExSpan=e.Element("span",{style:{position:"absolute","font-size-adjust":"none"}},[["div",{className:"MathJax_mmlExBox"}],["span",{className:"MathJax_MathML"}]]);f.math(f.mspace().With({width:"60ex"})).toNativeMML(this.EmExSpan.lastChild)}return g.Styles(this.config.styles)},InitializeMML:function(){this.initialized=true;if(i){try{if(!c.Browser.mpNamespace){var m=document.createElement("object");m.id="mathplayer";m.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(m);document.namespaces.add("m","http://www.w3.org/1998/Math/MathML");c.Browser.mpNamespace=true}if(!c.Browser.mpImported){document.namespaces.m.doImport("#mathplayer");c.Browser.mpImported=true}}catch(n){alert(MathJax.Localization._(["MathML","MathPlayer"],"MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics."))}}else{document.body.appendChild(this.EmExSpan);this.defaultEx=this.EmExSpan.firstChild.offsetWidth/60;this.defaultMEx=this.EmExSpan.lastChild.offsetWidth/60;document.body.removeChild(this.EmExSpan)}},preTranslate:function(o){var t=o.jax[this.id],u,p=t.length,y,r,A,w,z,n,v,s,q;for(u=0;u1?v/s:1)*this.config.scale;q=Math.floor(Math.max(this.config.minScaleAdjust/100,q));n.NativeMML.ex=v}else{q=100}n.NativeMML.fontSize=q+"%"}if(!i){for(u=0;ut){t=o;u.style.width=t+"px"}}if(this.msieIE8HeightBug){u.style.position=""}return{Y:-h.getBBox(u.parentNode).h,mW:p,mH:v,zW:t,zH:q}},NAMEDSPACE:{negativeveryverythinmathspace:"-.0556em",negativeverythinmathspace:"-.1111em",negativethinmathspace:"-.1667em",negativemediummathspace:"-.2222em",negativethickmathspace:"-.2778em",negativeverythickmathspace:"-.3333em",negativeveryverythickmathspace:"-.3889em"}});c.Register.StartupHook("mml Jax Ready",function(){f=MathJax.ElementJax.mml;f.mbase.Augment({toNativeMML:function(r){var p=this.NativeMMLelement(this.type);this.NativeMMLattributes(p);for(var q=0,o=this.data.length;q1){o=this.NativeMMLelement("mrow");s.appendChild(q);s=q}for(;r0;u--){q.separators.push(v)}}}var o=this.NativeMMLelement(t?this.type:"mrow");this.NativeMMLattributes(o);o.removeAttribute("separators");if(t){o.setAttribute("open",q.open);o.setAttribute("close",q.close);if(this.data.length>1){w.appendChild(o);w=o;o=this.NativeMMLelement("mrow")}}else{o.removeAttribute("open");o.removeAttribute("close")}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.open;o.appendChild(r)}for(u=0,p=this.data.length;u0){r=this.NativeMMLelement("mo");r.setAttribute("separator","true");r.textContent=q.separators[u-1];o.appendChild(r)}if(this.data[u]){this.data[u].toNativeMML(o)}else{o.appendChild(this.NativeMMLelement("mrow"))}}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.close;o.appendChild(r)}w.appendChild(o)}});f.TeXAtom.Augment({toNativeMML:function(p){var o=this.NativeMMLelement("mrow");this.NativeMMLattributes(o);this.data[0].toNativeMML(o);p.appendChild(o)}});f.chars.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.entity.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.xml.Augment({toNativeMML:function(q){for(var p=0,o=this.data.length;p=p.HTMLCSSlast+p.HTMLCSSchunk){this.postTranslate(p);p.HTMLCSSchunk=Math.floor(p.HTMLCSSchunk*this.config.EqnChunkFactor);p.HTMLCSSdelay=true}}},postTranslate:function(r){var l=r.jax[this.id];if(!this.hideProcessedMath){return}for(var p=r.HTMLCSSlast,k=r.HTMLCSSeqn;p=0&&!this.initialSkipBug)||this.negativeBBoxes||!o.firstChild){l=o.offsetWidth;n=o.parentNode.offsetHeight}else{if(o.bbox&&m<0&&this.msieNegativeBBoxBug){l=-o.offsetWidth,n=o.parentNode.offsetHeight}else{if(this.initialSkipBug){var k=o.style.position;o.style.position="absolute";p=this.startMarker;o.insertBefore(p,o.firstChild)}o.appendChild(this.endMarker);l=this.endMarker.offsetLeft-p.offsetLeft;o.removeChild(this.endMarker);if(this.initialSkipBug){o.removeChild(p);o.style.position=k}}}if(n!=null){o.parentNode.HH=n/this.em}return l/this.em},Measured:function(m,l){var n=m.bbox;if(n.width==null&&n.w&&!n.isMultiline){var k=this.getW(m);n.rw+=k-n.w;n.w=k;n.exactW=true}if(!l){l=m.parentNode}if(!l.bbox){l.bbox=n}return m},Remeasured:function(l,k){k.bbox=this.Measured(l,k).bbox},MeasureSpans:function(o){var r=[],t,q,n,u,k,p,l,s;for(q=0,n=o.length;q=0&&!this.initialSkipBug)||(u.w<0&&this.msieNegativeBBoxBug)){r.push([t])}else{if(this.initialSkipBug){k=this.startMarker.cloneNode(true);p=this.endMarker.cloneNode(true);t.insertBefore(k,t.firstChild);t.appendChild(p);r.push([t,k,p,t.style.position]);t.style.position="absolute"}else{p=this.endMarker.cloneNode(true);t.appendChild(p);r.push([t,null,p])}}}for(q=0,n=r.length;q=0&&!this.initialSkipBug)||this.negativeBBoxes||!t.firstChild){l=t.offsetWidth;s.HH=s.offsetHeight/this.em}else{if(u.w<0&&this.msieNegativeBBoxBug){l=-t.offsetWidth,s.HH=s.offsetHeight/this.em}else{l=r[q][2].offsetLeft-((r[q][1]||{}).offsetLeft||0)}}l/=this.em;u.rw+=l-u.w;u.w=l;u.exactW=true;if(!s.bbox){s.bbox=u}}for(q=0,n=r.length;q=0){p.style.width=this.Em(q);p.style.display="inline-block";p.style.overflow="hidden"}else{if(this.msieNegativeSpaceBug){p.style.height=""}p.style.marginLeft=this.Em(q);if(d.safariNegativeSpaceBug&&p.parentNode.firstChild==p){this.createBlank(p,0,true)}}if(m&&m!==g.COLOR.TRANSPARENT){p.style.backgroundColor=m;p.style.position="relative"}return p},createRule:function(r,n,p,s,l){if(n<-p){p=-n}var m=d.TeX.min_rule_thickness,o=1;if(s>0&&s*this.em0&&(n+p)*this.em0&&q.offsetWidth==0){q.style.width=this.Em(s)}if(r.isBox||r.className=="mspace"){r.bbox=q.bbox,r.HH=n+p}return q},createFrame:function(s,q,r,u,x,l){if(q<-r){r=-q}var p=2*x;if(this.msieFrameSizeBug){if(uC.w){d.createBlank(u,C.rw-C.w+0.1)}}if(!this.msieClipRectBug&&!C.noclip&&!o){var B=3/this.em;var A=(C.H==null?C.h:C.H),m=(C.D==null?C.d:C.D);var E=w-A-B,p=w+m+B,n=C.lw-3*B,k=1000;if(this.initialSkipBug&&C.lw<0){n=-3*B}if(C.isFixed){k=C.width-n}u.style.clip="rect("+this.Em(E)+" "+this.Em(k)+" "+this.Em(p)+" "+this.Em(n)+")"}}u.style.top=this.Em(-q-w);u.style.left=this.Em(s+F);if(C&&z){if(C.H!=null&&(z.H==null||C.H+q>z.H)){z.H=C.H+q}if(C.D!=null&&(z.D==null||C.D-q>z.D)){z.D=C.D-q}if(C.h+q>z.h){z.h=C.h+q}if(C.d-q>z.d){z.d=C.d-q}if(z.H!=null&&z.H<=z.h){delete z.H}if(z.D!=null&&z.D<=z.d){delete z.D}if(C.w+s>z.w){z.w=C.w+s;if(z.width==null){v.style.width=this.Em(z.w)}}if(C.rw+s>z.rw){z.rw=C.rw+s}if(C.lw+s=n-0.01||(s==p-1&&!l.stretch)){if(l.HW[s][2]){q*=l.HW[s][2]}if(l.HW[s][3]){k=l.HW[s][3]}var r=this.addElement(u,"span");this.createChar(r,[k,l.HW[s][1]],q,o);u.bbox=r.bbox;u.offset=0.65*u.bbox.w;u.scale=q;return}}if(l.stretch){this["extendDelimiter"+l.dir](u,t,l.stretch,q,o)}},extendDelimiterV:function(A,t,E,F,w){var o=this.createStack(A,true);var v=this.createBox(o),u=this.createBox(o);this.createChar(v,(E.top||E.ext),F,w);this.createChar(u,(E.bot||E.ext),F,w);var m={bbox:{w:0,lw:0,rw:0}},D=m,p;var B=v.bbox.h+v.bbox.d+u.bbox.h+u.bbox.d;var r=-v.bbox.h;this.placeBox(v,0,r,true);r-=v.bbox.d;if(E.mid){D=this.createBox(o);this.createChar(D,E.mid,F,w);B+=D.bbox.h+D.bbox.d}if(E.min&&tB){m=this.Element("span");this.createChar(m,E.ext,F,w);var C=m.bbox.h+m.bbox.d,l=C-0.05,x,q,z=(E.mid?2:1);q=x=Math.min(Math.ceil((t-B)/(z*l)),this.maxStretchyParts);if(!E.fullExtenders){l=(t-B)/(z*x)}var s=(x/(x+1))*(C-l);l=C-s;r+=s+l-m.bbox.h;while(z-->0){while(x-->0){if(!this.msieCloneNodeBug){p=m.cloneNode(true)}else{p=this.Element("span");this.createChar(p,E.ext,F,w)}p.bbox=m.bbox;r-=l;this.placeBox(this.addBox(o,p),0,r,true)}r+=s-m.bbox.d;if(E.mid&&z){this.placeBox(D,0,r-D.bbox.h,true);x=q;r+=-(D.bbox.h+D.bbox.d)+s+l-m.bbox.h}}}else{r+=(B-t)/2;if(E.mid){this.placeBox(D,0,r-D.bbox.h,true);r+=-(D.bbox.h+D.bbox.d)}r+=(B-t)/2}this.placeBox(u,0,r-u.bbox.h,true);r-=u.bbox.h+u.bbox.d;A.bbox={w:Math.max(v.bbox.w,m.bbox.w,u.bbox.w,D.bbox.w),lw:Math.min(v.bbox.lw,m.bbox.lw,u.bbox.lw,D.bbox.lw),rw:Math.max(v.bbox.rw,m.bbox.rw,u.bbox.rw,D.bbox.rw),h:0,d:-r,exactW:true};A.scale=F;A.offset=0.55*A.bbox.w;A.isMultiChar=true;this.setStackWidth(o,A.bbox.w)},extendDelimiterH:function(B,o,E,G,y){var r=this.createStack(B,true);var p=this.createBox(r),C=this.createBox(r);this.createChar(p,(E.left||E.rep),G,y);this.createChar(C,(E.right||E.rep),G,y);var l=this.Element("span");this.createChar(l,E.rep,G,y);var D={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},m;this.placeBox(p,-p.bbox.lw,0,true);var u=(p.bbox.rw-p.bbox.lw)+(C.bbox.rw-C.bbox.lw)-0.05,t=p.bbox.rw-p.bbox.lw-0.025,v;if(E.mid){D=this.createBox(r);this.createChar(D,E.mid,G,y);u+=D.bbox.w}if(E.min&&ou){var F=l.bbox.rw-l.bbox.lw,q=F-0.05,z,s,A=(E.mid?2:1);s=z=Math.min(Math.ceil((o-u)/(A*q)),this.maxStretchyParts);if(!E.fillExtenders){q=(o-u)/(A*z)}v=(z/(z+1))*(F-q);q=F-v;t-=l.bbox.lw+v;while(A-->0){while(z-->0){if(!this.cloneNodeBug){m=l.cloneNode(true)}else{m=this.Element("span");this.createChar(m,E.rep,G,y)}m.bbox=l.bbox;this.placeBox(this.addBox(r,m),t,0,true);t+=q}if(E.mid&&A){this.placeBox(D,t,0,true);t+=D.bbox.w-v;z=s}}}else{t-=(u-o)/2;if(E.mid){this.placeBox(D,t,0,true);t+=D.bbox.w}t-=(u-o)/2}this.placeBox(C,t,0,true);B.bbox={w:t+C.bbox.rw,lw:0,rw:t+C.bbox.rw,H:Math.max(p.bbox.h,l.bbox.h,C.bbox.h,D.bbox.h),D:Math.max(p.bbox.d,l.bbox.d,C.bbox.d,D.bbox.d),h:l.bbox.h,d:l.bbox.d,exactW:true};B.scale=G;B.isMultiChar=true;this.setStackWidth(r,B.bbox.w)},createChar:function(s,p,n,k){s.isMathJax=true;var r=s,t="",o={fonts:[p[1]],noRemap:true};if(k&&k===g.VARIANT.BOLD){o.fonts=[p[1]+"-bold",p[1]]}if(typeof(p[1])!=="string"){o=p[1]}if(p[0] instanceof Array){for(var q=0,l=p[0].length;q=55296&&x<56319){B++;x=(((x-55296)<<10)+(s.charCodeAt(B)-56320))+65536;if(this.FONTDATA.RemapPlane1){var E=this.FONTDATA.RemapPlane1(x,p);x=E.n;p=E.variant}}else{var u,r,v=this.FONTDATA.RANGES;for(u=0,r=v.length;u=v[u].low&&x<=v[u].high){if(v[u].remap&&v[u].remap[x]){x=q+v[u].remap[x]}else{x=x-v[u].low+q;if(v[u].add){x+=v[u].add}}if(p["variant"+v[u].offset]){p=this.FONTDATA.VARIANT[p["variant"+v[u].offset]]}break}}}if(p.remap&&p.remap[x]){if(p.remap[x] instanceof Array){var o=p.remap[x];x=o[0];p=this.FONTDATA.VARIANT[o[1]]}else{if(typeof(p.remap[x])==="string"){s=p.remap[x]+s.substr(B+1);B=0;y=s.length;x=s.charCodeAt(0)}else{x=p.remap[x];if(p.remap.variant){p=this.FONTDATA.VARIANT[p.remap.variant]}}}}if(this.FONTDATA.REMAP[x]&&!p.noRemap){x=this.FONTDATA.REMAP[x];if(x instanceof Array){p=this.FONTDATA.VARIANT[x[1]];x=x[0]}if(typeof(x)==="string"){s=x+s.substr(B+1);B=0;y=s.length;x=x.charCodeAt(0)}}t=this.lookupChar(p,x);C=t[x];if(l||(!this.checkFont(t,k.style)&&!C[5].img)){if(z.length){this.addText(k,z);z=""}var w=!!k.style.fontFamily||!!A.style.fontStyle||!!A.style.fontWeight||!t.directory||l;l=false;if(k!==A){w=!this.checkFont(t,A.style);k=A}if(w){k=this.addElement(A,"span",{isMathJax:true,subSpan:true})}this.handleFont(k,t,k!==A)}z=this.handleChar(k,t,C,x,z);if(!(C[5]||{}).space){if(C[0]/1000>A.bbox.h){A.bbox.h=C[0]/1000}if(C[1]/1000>A.bbox.d){A.bbox.d=C[1]/1000}}if(A.bbox.w+C[3]/1000A.bbox.rw){A.bbox.rw=A.bbox.w+C[4]/1000}A.bbox.w+=C[2]/1000}if(z.length){this.addText(k,z)}if(A.scale&&A.scale!==1){A.bbox.h*=A.scale;A.bbox.d*=A.scale;A.bbox.w*=A.scale;A.bbox.lw*=A.scale;A.bbox.rw*=A.scale}if(s.length==1&&t.skew&&t.skew[x]){A.bbox.skew=t.skew[x]}},checkFont:function(k,l){var m=(l.fontWeight||"normal");if(m.match(/^\d+$/)){m=(parseInt(m)>=600?"bold":"normal")}return(k.family.replace(/'/g,"")===l.fontFamily.replace(/'/g,"")&&(k.style||"normal")===(l.fontStyle||"normal")&&(k.weight||"normal")===m)},handleFont:function(m,k,o){m.style.fontFamily=k.family;if(!k.directory){m.style.fontSize=Math.floor(100/d.scale+0.5)+"%"}if(!(d.FontFaceBug&&k.isWebFont)){var l=k.style||"normal",n=k.weight||"normal";if(l!=="normal"||o){m.style.fontStyle=l}if(n!=="normal"||o){m.style.fontWeight=n}}},handleChar:function(l,k,s,r,q){var p=s[5];if(p.space){if(q.length){this.addText(l,q)}d.createShift(l,s[2]/1000);return""}if(p.img){return this.handleImg(l,k,s,r,q)}if(p.isUnknown&&this.FONTDATA.DELIMITERS[r]){if(q.length){this.addText(l,q)}var o=l.scale;d.createDelimiter(l,r,0,1,k);if(this.FONTDATA.DELIMITERS[r].dir==="V"){l.style.verticalAlign=this.Em(l.bbox.d);l.bbox.h+=l.bbox.d;l.bbox.d=0}l.scale=o;s[0]=l.bbox.h*1000;s[1]=l.bbox.d*1000;s[2]=l.bbox.w*1000;s[3]=l.bbox.lw*1000;s[4]=l.bbox.rw*1000;return""}if(p.c==null){if(r<=65535){p.c=String.fromCharCode(r)}else{var m=r-65536;p.c=String.fromCharCode((m>>10)+55296)+String.fromCharCode((m&1023)+56320)}}if(p.rfix){this.addText(l,q+p.c);d.createShift(l,p.rfix/1000);return""}if(s[2]||!this.msieAccentBug||q.length){return q+p.c}d.createShift(l,s[3]/1000);d.createShift(l,(s[4]-s[3])/1000);this.addText(l,p.c);d.createShift(l,-s[4]/1000);return""},handleImg:function(l,k,p,o,m){return m},lookupChar:function(p,s){var o,k;if(!p.FONTS){var r=this.FONTDATA.FONTS;var q=(p.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(q instanceof Array)){q=[q]}if(p.fonts!=q){p.fonts=q}p.FONTS=[];for(o=0,k=q.length;o=0;n--){if(l.Ranges[n][2]==o){l.Ranges.splice(n,1)}}this.loadFont(l.directory+"/"+o+".js")}}}},loadFont:function(l){var k=MathJax.Callback.Queue();k.Push(["Require",h,this.fontDir+"/"+l]);if(this.imgFonts){if(!MathJax.isPacked){l=l.replace(/\/([^\/]*)$/,d.imgPacked+"/$1")}k.Push(["Require",h,this.webfontDir+"/png/"+l])}b.RestartAfter(k.Push({}))},loadWebFont:function(k){k.available=k.isWebFont=true;if(d.FontFaceBug){k.family=k.name;if(d.msieFontCSSBug){k.family+="-Web"}}b.RestartAfter(this.Font.loadWebFont(k))},loadWebFontError:function(l,k){b.Startup.signal.Post("HTML-CSS Jax - disable web fonts");l.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;b.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");b.Startup.signal.Post("HTML-CSS Jax - using image fonts");e(["WebFontNotAvailable","Web-Fonts not available -- using image fonts instead"],null,3000);h.Require(this.directory+"/imageFonts.js",k)}else{this.allowWebFonts=false;k()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},NBSP:"\u00A0",rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){g=MathJax.ElementJax.mml;g.mbase.Augment({toHTML:function(o){o=this.HTMLcreateSpan(o);if(this.type!="mrow"){o=this.HTMLhandleSize(o)}for(var l=0,k=this.data.length;ll.d){l.d=m.d}if(m.h>l.h){l.h=m.h}if(m.D!=null&&m.D>l.D){l.D=m.D}if(m.H!=null&&m.H>l.H){l.H=m.H}if(n.style.paddingLeft){l.w+=d.unEm(n.style.paddingLeft)*(n.scale||1)}if(l.w+m.lwl.rw){l.rw=l.w+m.rw}l.w+=m.w;if(n.style.paddingRight){l.w+=d.unEm(n.style.paddingRight)*(n.scale||1)}if(m.width){l.width=m.width;l.minWidth=m.minWidth}if(m.ic){l.ic=m.ic}else{delete l.ic}if(l.exactW&&!m.exactW){delete l.exactW}},HTMLemptyBBox:function(k){k.h=k.d=k.H=k.D=k.rw=-d.BIGDIMEN;k.w=0;k.lw=d.BIGDIMEN;return k},HTMLcleanBBox:function(k){if(k.h===this.BIGDIMEN){k.h=k.d=k.H=k.D=k.w=k.rw=k.lw=0}if(k.D<=k.d){delete k.D}if(k.H<=k.h){delete k.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(l){if(this.isEmbellished()){var k=this.Core();if(k&&k!==this){return k.HTMLcanStretch(l)}}return false},HTMLstretchH:function(l,k){return this.HTMLspanElement()},HTMLstretchV:function(l,k,m){return this.HTMLspanElement()},HTMLnotEmpty:function(k){while(k){if((k.type!=="mrow"&&k.type!=="texatom")||k.data.length>1){return true}k=k.data[0]}return false},HTMLmeasureChild:function(l,k){if(this.data[l]){d.Measured(this.data[l].toHTML(k),k)}else{k.bbox=this.HTMLzeroBBox()}},HTMLboxChild:function(l,k){if(!this.data[l]){this.SetData(l,g.mrow())}return this.data[l].toHTML(k)},HTMLcreateSpan:function(k){if(this.spanID){var l=this.HTMLspanElement();if(l&&(l.parentNode===k||(l.parentNode||{}).parentNode===k)){while(l.firstChild){l.removeChild(l.firstChild)}l.bbox=this.HTMLzeroBBox();l.scale=1;l.isMultChar=l.HH=null;l.style.cssText="";return l}}if(this.href){k=d.addElement(k,"a",{href:this.href,isMathJax:true})}k=d.addElement(k,"span",{className:this.type,isMathJax:true});if(d.imgHeightBug){k.style.display="inline-block"}if(this["class"]){k.className+=" "+this["class"]}if(!this.spanID){this.spanID=d.GetID()}k.id=(this.id||"MathJax-Span-"+this.spanID)+d.idPostfix;k.bbox=this.HTMLzeroBBox();this.styles={};if(this.style){k.style.cssText=this.style;if(k.style.fontSize){this.mathsize=k.style.fontSize;k.style.fontSize=""}this.styles={border:d.getBorders(k),padding:d.getPadding(k)};if(this.styles.border){k.style.border=""}if(this.styles.padding){k.style.padding=""}}if(this.href){k.parentNode.bbox=k.bbox}return k},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+d.idPostfix)},HTMLhandleVariant:function(l,k,m){d.handleVariant(l,k,m)},HTMLhandleSize:function(k){if(!k.scale){k.scale=this.HTMLgetScale();if(k.scale!==1){k.style.fontSize=d.Percent(k.scale)}}return k},HTMLhandleColor:function(w){var y=this.getValues("mathcolor","color");if(this.mathbackground){y.mathbackground=this.mathbackground}if(this.background){y.background=this.background}if(this.style&&w.style.backgroundColor){y.mathbackground=w.style.backgroundColor;w.style.backgroundColor="transparent"}var t=(this.styles||{}).border,v=(this.styles||{}).padding;if(y.color&&!this.mathcolor){y.mathcolor=y.color}if(y.background&&!this.mathbackground){y.mathbackground=y.background}if(y.mathcolor){w.style.color=y.mathcolor}if((y.mathbackground&&y.mathbackground!==g.COLOR.TRANSPARENT)||t||v){var A=w.bbox,z=(A.exact?0:1/d.em),u=0,s=0,m=w.style.paddingLeft,q=w.style.paddingRight;if(this.isToken){u=A.lw;s=A.rw-A.w}if(m!==""){u+=d.unEm(m)*(w.scale||1)}if(q!==""){s-=d.unEm(q)*(w.scale||1)}var l=(d.PaddingWidthBug||A.keepPadding||A.exactW?0:s-u);var o=Math.max(0,d.getW(w)+l);var x=A.h+A.d,k=-A.d,r=0,p=0;if(o>0){o+=2*z;u-=z}if(x>0){x+=2*z;k-=z}s=-o-u;if(t){s-=t.right;k-=t.bottom;r+=t.left;p+=t.right;A.h+=t.top;A.d+=t.bottom;A.w+=t.left+t.right;A.lw-=t.left;A.rw+=t.right}if(v){x+=v.top+v.bottom;o+=v.left+v.right;s-=v.right;k-=v.bottom;r+=v.left;p+=v.right;A.h+=v.top;A.d+=v.bottom;A.w+=v.left+v.right;A.lw-=v.left;A.rw+=v.right}if(p){w.style.paddingRight=d.Em(p)}var n=d.Element("span",{id:"MathJax-Color-"+this.spanID+d.idPostfix,isMathJax:true,style:{display:"inline-block",backgroundColor:y.mathbackground,width:d.Em(o),height:d.Em(x),verticalAlign:d.Em(k),marginLeft:d.Em(u),marginRight:d.Em(s)}});d.setBorders(n,t);if(A.width){n.style.width=A.width;n.style.marginRight="-"+A.width}if(d.msieInlineBlockAlignBug){n.style.position="relative";n.style.width=n.style.height=0;n.style.verticalAlign=n.style.marginLeft=n.style.marginRight="";n.style.border=n.style.padding="";if(t&&d.msieBorderWidthBug){x+=t.top+t.bottom;o+=t.left+t.right}n.style.width=d.Em(r+z);d.placeBox(d.addElement(n,"span",{noAdjust:true,isMathJax:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",background:(y.mathbackground||"transparent"),width:d.Em(o),height:d.Em(x)}}),u,A.h+z);d.setBorders(n.firstChild,t)}w.parentNode.insertBefore(n,w);if(d.msieColorPositionBug){w.style.position="relative"}return n}return null},HTMLremoveColor:function(){var k=document.getElementById("MathJax-Color-"+this.spanID+d.idPostfix);if(k){k.parentNode.removeChild(k)}},HTMLhandleSpace:function(o){if(this.useMMLspacing){if(this.type!=="mo"){return}var m=this.getValues("scriptlevel","lspace","rspace");if(m.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){var l=this.HTMLgetMu(o);m.lspace=Math.max(0,d.length2em(m.lspace,l));m.rspace=Math.max(0,d.length2em(m.rspace,l));var k=this,n=this.Parent();while(n&&n.isEmbellished()&&n.Core()===k){k=n;n=n.Parent();o=k.HTMLspanElement()}if(m.lspace){o.style.paddingLeft=d.Em(m.lspace)}if(m.rspace){o.style.paddingRight=d.Em(m.rspace)}}}else{var p=this.texSpacing();if(p!==""){p=d.length2em(p,this.HTMLgetScale())/(o.scale||1);if(o.style.paddingLeft){p+=d.unEm(o.style.paddingLeft)}o.style.paddingLeft=d.Em(p)}}},HTMLgetScale:function(){var m=1,k=this.getValues("mathsize","scriptlevel","fontsize");if(this.style){var l=this.HTMLspanElement();if(l.style.fontSize!=""){k.fontsize=l.style.fontSize}}if(k.fontsize&&!this.mathsize){k.mathsize=k.fontsize}if(k.scriptlevel!==0){if(k.scriptlevel>2){k.scriptlevel=2}m=Math.pow(this.Get("scriptsizemultiplier"),k.scriptlevel);k.scriptminsize=d.length2em(this.Get("scriptminsize"));if(m2){l.scriptlevel=2}k=Math.sqrt(Math.pow(l.scriptsizemultiplier,l.scriptlevel))}return k},HTMLgetVariant:function(){var k=this.getValues("mathvariant","fontfamily","fontweight","fontstyle");k.hasVariant=this.Get("mathvariant",true);if(!k.hasVariant){k.family=k.fontfamily;k.weight=k.fontweight;k.style=k.fontstyle}if(this.style){var m=this.HTMLspanElement();if(!k.family&&m.style.fontFamily){k.family=m.style.fontFamily}if(!k.weight&&m.style.fontWeight){k.weight=m.style.fontWeight}if(!k.style&&m.style.fontStyle){k.style=m.style.fontStyle}}if(k.weight&&k.weight.match(/^\d+$/)){k.weight=(parseInt(k.weight)>600?"bold":"normal")}var l=k.mathvariant;if(this.variantForm){l="-"+d.fontInUse+"-variant"}if(k.family&&!k.hasVariant){if(!k.weight&&k.mathvariant.match(/bold/)){k.weight="bold"}if(!k.style&&k.mathvariant.match(/italic/)){k.style="italic"}return{FONTS:[],fonts:[],noRemap:true,defaultFont:{family:k.family,style:k.style,weight:k.weight}}}if(k.weight==="bold"){l={normal:g.VARIANT.BOLD,italic:g.VARIANT.BOLDITALIC,fraktur:g.VARIANT.BOLDFRAKTUR,script:g.VARIANT.BOLDSCRIPT,"sans-serif":g.VARIANT.BOLDSANSSERIF,"sans-serif-italic":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.weight==="normal"){l={bold:g.VARIANT.normal,"bold-italic":g.VARIANT.ITALIC,"bold-fraktur":g.VARIANT.FRAKTUR,"bold-script":g.VARIANT.SCRIPT,"bold-sans-serif":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.SANSSERIFITALIC}[l]||l}}if(k.style==="italic"){l={normal:g.VARIANT.ITALIC,bold:g.VARIANT.BOLDITALIC,"sans-serif":g.VARIANT.SANSSERIFITALIC,"bold-sans-serif":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.style==="normal"){l={italic:g.VARIANT.NORMAL,"bold-italic":g.VARIANT.BOLD,"sans-serif-italic":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.BOLDSANSSERIF}[l]||l}}if(!(l in d.FONTDATA.VARIANT)){l="normal"}return d.FONTDATA.VARIANT[l]}},{HTMLautoload:function(){var k=d.autoloadDir+"/"+this.type+".js";b.RestartAfter(h.Require(k))},HTMLautoloadFile:function(k){var l=d.autoloadDir+"/"+k+".js";b.RestartAfter(h.Require(l))},HTMLstretchH:function(l,k){this.HTMLremoveColor();return this.toHTML(l,k)},HTMLstretchV:function(l,k,m){this.HTMLremoveColor();return this.toHTML(l,k,m)}});g.chars.Augment({toHTML:function(n,m,l,o){var r=this.data.join("").replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.entity.Augment({toHTML:function(n,m,l,o){var r=this.toString().replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.mi.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lp.w&&q.length===1&&!n.noIC){p.ic=p.rw-p.w;d.createBlank(o,p.ic);p.w=p.rw}this.HTMLhandleSpace(o);this.HTMLhandleColor(o);return o}});g.mn.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lu.bbox.w){u.bbox.ic=u.bbox.rw-u.bbox.w;d.createBlank(u,u.bbox.ic);u.bbox.w=u.bbox.rw}}this.HTMLhandleSpace(u);this.HTMLhandleColor(u);return u},CoreParent:function(){var k=this;while(k&&k.isEmbellished()&&k.CoreMO()===this&&!k.isa(g.math)){k=k.Parent()}return k},CoreText:function(k){if(!k){return""}if(k.isEmbellished()){return k.CoreMO().data.join("")}while((k.isa(g.mrow)||k.isa(g.TeXAtom)||k.isa(g.mstyle)||k.isa(g.mphantom))&&k.data.length===1&&k.data[0]){k=k.data[0]}if(!k.isToken){return""}else{return k.data.join("")}},HTMLremapChars:{"*":"\u2217",'"':"\u2033","\u00B0":"\u2218","\u00B2":"2","\u00B3":"3","\u00B4":"\u2032","\u00B9":"1"},HTMLremap:function(l,k){l=l.replace(/-/g,"\u2212");if(k){l=l.replace(/'/g,"\u2032").replace(/`/g,"\u2035");if(l.length===1){l=k[l]||l}}return l},HTMLcanStretch:function(n){if(!this.Get("stretchy")){return false}var o=this.data.join("");if(o.length>1){return false}var l=this.CoreParent();if(l&&l.isa(g.munderover)&&this.CoreText(l.data[l.base]).length===1){var m=l.data[l.over],k=l.data[l.under];if(m&&this===m.CoreMO()&&l.Get("accent")){o=d.FONTDATA.REMAPACCENT[o]||o}else{if(k&&this===k.CoreMO()&&l.Get("accentunder")){o=d.FONTDATA.REMAPACCENTUNDER[o]||o}}}o=d.FONTDATA.DELIMITERS[o.charCodeAt(0)];return(o&&o.dir==n.substr(0,1))},HTMLstretchV:function(m,n,o){this.HTMLremoveColor();var r=this.getValues("symmetric","maxsize","minsize");var p=this.HTMLspanElement(),s=this.HTMLgetMu(p),q;var k=d.TeX.axis_height,l=p.scale;if(r.symmetric){q=2*Math.max(n-k,o+k)}else{q=n+o}r.maxsize=d.length2em(r.maxsize,s,p.bbox.h+p.bbox.d);r.minsize=d.length2em(r.minsize,s,p.bbox.h+p.bbox.d);q=Math.max(r.minsize,Math.min(r.maxsize,q));p=this.HTMLcreateSpan(m);d.createDelimiter(p,this.data.join("").charCodeAt(0),q,l);if(r.symmetric){q=(p.bbox.h+p.bbox.d)/2+k}else{q=(p.bbox.h+p.bbox.d)*n/(n+o)}d.positionDelimiter(p,q);this.HTMLhandleSpace(p);this.HTMLhandleColor(p);return p},HTMLstretchH:function(o,k){this.HTMLremoveColor();var m=this.getValues("maxsize","minsize","mathvariant","fontweight");if((m.fontweight==="bold"||parseInt(m.fontweight)>=600)&&!this.Get("mathvariant",true)){m.mathvariant=g.VARIANT.BOLD}var n=this.HTMLspanElement(),l=this.HTMLgetMu(n),p=n.scale;m.maxsize=d.length2em(m.maxsize,l,n.bbox.w);m.minsize=d.length2em(m.minsize,l,n.bbox.w);k=Math.max(m.minsize,Math.min(m.maxsize,k));n=this.HTMLcreateSpan(o);d.createDelimiter(n,this.data.join("").charCodeAt(0),k,p,m.mathvariant);this.HTMLhandleSpace(n);this.HTMLhandleColor(n);return n}});g.mtext.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));var n=this.HTMLgetVariant();if(d.config.mtextFontInherit||this.Parent().type==="merror"){n={bold:n.bold,italic:n.italic,fontInherit:true}}for(var l=0,k=this.data.length;ld.linebreakWidth)||this.hasNewline()},HTMLstretchH:function(m,k){this.HTMLremoveColor();var l=this.HTMLspanElement();this.data[this.core].HTMLstretchH(l,k);this.HTMLcomputeBBox(l,true);this.HTMLhandleColor(l);return l},HTMLstretchV:function(m,l,n){this.HTMLremoveColor();var k=this.HTMLspanElement();this.data[this.core].HTMLstretchV(k,l,n);this.HTMLcomputeBBox(k,true);this.HTMLhandleColor(k);return k}});g.mstyle.Augment({toHTML:function(l,k,m){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){var n=this.data[0].toHTML(l);if(m!=null){this.data[0].HTMLstretchV(l,k,m)}else{if(k!=null){this.data[0].HTMLstretchH(l,k)}}l.bbox=n.bbox}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mfrac.Augment({toHTML:function(D){D=this.HTMLcreateSpan(D);var m=d.createStack(D);var r=d.createBox(m),o=d.createBox(m);d.MeasureSpans([this.HTMLboxChild(0,r),this.HTMLboxChild(1,o)]);var k=this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled");var I=this.HTMLgetScale(),C=k.displaystyle;var G=d.TeX.axis_height*I;if(k.bevelled){var F=(C?0.4:0.15);var s=Math.max(r.bbox.h+r.bbox.d,o.bbox.h+o.bbox.d)+2*F;var E=d.createBox(m);d.createDelimiter(E,47,s);d.placeBox(r,0,(r.bbox.d-r.bbox.h)/2+G+F);d.placeBox(E,r.bbox.w-F/2,(E.bbox.d-E.bbox.h)/2+G);d.placeBox(o,r.bbox.w+E.bbox.w-F,(o.bbox.d-o.bbox.h)/2+G-F)}else{var l=Math.max(r.bbox.w,o.bbox.w);var y=d.thickness2em(k.linethickness,I),A,z,x,w;var B=d.TeX.min_rule_thickness/this.em;if(C){x=d.TeX.num1;w=d.TeX.denom1}else{x=(y===0?d.TeX.num3:d.TeX.num2);w=d.TeX.denom2}x*=I;w*=I;if(y===0){A=Math.max((C?7:3)*d.TeX.rule_thickness,2*B);z=(x-r.bbox.d)-(o.bbox.h-w);if(zy){l=((s.bbox.h+s.bbox.d)-(y-A))/2}var B=d.FONTDATA.DELIMITERS[d.FONTDATA.RULECHAR];if(!B||oK){K=r[M].bbox.w}if(!N[M]&&K>n){n=K}}}if(F==null&&H!=null){n=H}else{if(n==-d.BIGDIMEN){n=K}}for(M=K=0,I=this.data.length;MK){K=w.bbox.w}}}var E=d.TeX.rule_thickness,G=d.FONTDATA.TeX_factor;var p=r[this.base]||{bbox:this.HTMLzeroBBox()};var v,s,A,z,u,C,J,O=0;if(p.bbox.ic){O=1.3*p.bbox.ic+0.05}for(M=0,I=this.data.length;M0){z+=F;y-=F}}d.placeBox(k,o.bbox.w+M,Math.max(z,J.superscriptshift));d.placeBox(x,o.bbox.w,-Math.max(y,J.subscriptshift))}}this.HTMLhandleSpace(K);this.HTMLhandleColor(K);return K},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mmultiscripts.Augment({toHTML:g.mbase.HTMLautoload});g.mtable.Augment({toHTML:g.mbase.HTMLautoload});g["annotation-xml"].Augment({toHTML:g.mbase.HTMLautoload});g.math.Augment({toHTML:function(u,l){var r=this.Get("alttext");if(r&&r!==""){l.setAttribute("aria-label",r)}var m=d.addElement(u,"nobr",{isMathJax:true});u=this.HTMLcreateSpan(m);var s=d.createStack(u),n=d.createBox(s),t;s.style.fontSize=m.parentNode.style.fontSize;m.parentNode.style.fontSize="";if(this.data[0]!=null){if(d.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}g.mbase.prototype.displayAlign=b.config.displayAlign;g.mbase.prototype.displayIndent=b.config.displayIndent;var o=this.data[0].toHTML(n);o.bbox.exactW=false;t=d.Measured(o,n)}d.placeBox(n,0,0);u.style.width=d.Em((Math.round(t.bbox.w*this.em)+0.25)/d.outerEm);u.style.display="inline-block";var k=1/d.em,q=d.em/d.outerEm;d.em/=q;u.bbox.h*=q;u.bbox.d*=q;u.bbox.w*=q;u.bbox.lw*=q;u.bbox.rw*=q;if(t&&t.bbox.width!=null){u.style.minWidth=(t.bbox.minWidth||u.style.width);u.style.width=s.style.width=t.bbox.width;n.style.width="100%"}this.HTMLhandleColor(u);if(t){d.createRule(u,(t.bbox.h+k)*q,(t.bbox.d+k)*q,0)}if(!this.isMultiline&&this.Get("display")==="block"&&u.bbox.width==null){var v=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(v.indentalignfirst!==g.INDENTALIGN.INDENTALIGN){v.indentalign=v.indentalignfirst}if(v.indentalign===g.INDENTALIGN.AUTO){v.indentalign=this.displayAlign}l.style.textAlign=v.indentalign;if(v.indentshiftfirst!==g.INDENTSHIFT.INDENTSHIFT){v.indentshift=v.indentshiftfirst}if(v.indentshift==="auto"){v.indentshift=this.displayIndent}if(v.indentshift&&v.indentalign!==g.INDENTALIGN.CENTER){u.style[{left:"marginLeft",right:"marginRight"}[v.indentalign]]=d.Em(d.length2em(v.indentshift))}}return u},HTMLspanElement:g.mbase.prototype.HTMLspanElement});g.TeXAtom.Augment({toHTML:function(l){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){if(this.texClass===g.TEXCLASS.VCENTER){var k=d.createStack(l);var m=d.createBox(k);d.Measured(this.data[0].toHTML(m),m);d.placeBox(m,0,d.TeX.axis_height-(m.bbox.h+m.bbox.d)/2+m.bbox.d)}else{l.bbox=this.data[0].toHTML(l).bbox}}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",d,"jax.js"]),0)})});b.Register.StartupHook("End Config",function(){b.Browser.Select({MSIE:function(k){var o=(document.documentMode||0);var n=k.versionAtLeast("7.0");var m=k.versionAtLeast("8.0")&&o>7;var l=(document.compatMode==="BackCompat");if(o<9){d.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";d.config.styles[".MathJax .MathJax_HitBox"].opacity=0;d.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)"}d.Augment({PaddingWidthBug:true,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:l,msieDisappearingBug:(o>=8),msieMarginScaleBug:(o<8),msiePaddingWidthBug:true,msieBorderWidthBug:l,msieFrameSizeBug:(o<=8),msieInlineBlockAlignBug:(!m||l),msiePlaceBoxBug:(m&&!l),msieClipRectBug:!m,msieNegativeSpaceBug:l,cloneNodeBug:(m&&k.version==="8.0"),initialSkipBug:(o<8),msieNegativeBBoxBug:(o>=8),msieIE6:!n,msieItalicWidthBug:true,FontFaceBug:true,msieFontCSSBug:k.isIE9,allowWebFonts:(o>=9?"woff":"eot")})},Firefox:function(l){var m=false;if(l.versionAtLeast("3.5")){var k=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||b.config.root.match(/^https?:\/\//)||(b.config.root+"/").substr(0,k.length)===k){m="otf"}}d.Augment({ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:m})},Safari:function(p){var n=p.versionAtLeast("3.0");var m=p.versionAtLeast("3.1");var k=navigator.appVersion.match(/ Safari\/\d/)&&navigator.appVersion.match(/ Version\/\d/)&&navigator.vendor.match(/Apple/);var l=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var q=(m&&p.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!p.versionAtLeast("5.0"))||(l!=null&&(l[1]<2||(l[1]==2&&l[2]<2)))));d.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!m,safariTextNodeBug:!n,forceReflow:true,allowWebFonts:(m&&!q?"otf":false)});if(k){d.Augment({webFontDefault:(p.isMobile?"sans-serif":"serif")})}if(p.isPC){d.Augment({adjustAvailableFonts:d.removeSTIXfonts,checkWebFontsTwice:true})}if(q){var o=b.config["HTML-CSS"];if(o){o.availableFonts=[];o.preferredFont=null}else{b.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(k){d.Augment({Em:d.EmRounded,cloneNodeBug:true,rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariWebFontSerif:[""],forceReflow:true,allowWebFonts:(k.versionAtLeast("4.0")?"otf":"svg")})},Opera:function(k){k.isMini=(navigator.appVersion.match("Opera Mini")!=null);d.config.styles[".MathJax .merror"]["vertical-align"]=null;d.config.styles[".MathJax span"]["z-index"]=0;d.Augment({operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:k.versionAtLeast("10.61"),initialSkipBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(k.versionAtLeast("10.0")&&!k.isMini?"otf":false),adjustAvailableFonts:d.removeSTIXfonts})},Konqueror:function(k){d.Augment({konquerorVerticalAlignBug:true})}})});MathJax.Hub.Register.StartupHook("End Cookie",function(){if(b.config.menuSettings.zoom!=="None"){h.Require("[MathJax]/extensions/MathZoom.js")}})})(MathJax.Ajax,MathJax.Hub,MathJax.OutputJax["HTML-CSS"]); - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];a.mtable.Augment({toHTML:function(t){t=this.HTMLcreateSpan(t);if(this.data.length===0){return t}var K=this.getValues("columnalign","rowalign","columnspacing","rowspacing","columnwidth","equalcolumns","equalrows","columnlines","rowlines","frame","framespacing","align","useHeight","width","side","minlabelspacing");var aJ=K.width.match(/%$/);var ay=b.createStack(t);var aG=this.HTMLgetScale(),aA=this.HTMLgetMu(t),aB=-1;var aq=[],au=[],ak=[],aw=[],av=[],af,ae,ap=-1,ad,ao,Z,aF,R,aC,aO=[];var al=b.FONTDATA.baselineskip*aG*K.useHeight,aT,I=b.FONTDATA.lineH*aG,O=b.FONTDATA.lineD*aG;for(af=0,ad=this.data.length;afap){ap=ae}av[ae]=b.createStack(b.createBox(ay));ak[ae]=-b.BIGDIMEN}aw[af][ae]=b.createBox(av[ae]);aO.push(aF.data[ae-Z].toHTML(aw[af][ae]))}}b.MeasureSpans(aO);for(af=0,ad=this.data.length;afaq[ae]){aq[ae]=aS*aL.h/aT}if(aS*aL.d/aT>au[ae]){au[ae]=aS*aL.d/aT}}}else{if(aC.HTMLcanStretch("Horizontal")){aS=b.length2em(aS,aA,aL.w);if(aS>ak[ae]){ak[ae]=aS}}}}}if(aw[af][ae].bbox.h>aq[af]){aq[af]=aw[af][ae].bbox.h}if(aw[af][ae].bbox.d>au[af]){au[af]=aw[af][ae].bbox.d}if(aw[af][ae].bbox.w>ak[ae]){ak[ae]=aw[af][ae].bbox.w}}}if(aq[0]+au[0]){aq[0]=Math.max(aq[0],I)}if(aq[aw.length-1]+au[aw.length-1]){au[aw.length-1]=Math.max(au[aw.length-1],O)}var aE=MathJax.Hub.SplitList;var az=aE(K.columnspacing),aQ=aE(K.rowspacing),e=aE(K.columnalign),E=aE(K.rowalign),d=aE(K.columnlines),z=aE(K.rowlines),aM=aE(K.columnwidth),V=[];for(af=0,ad=az.length;afaw.length){ab=aw.length}}aj=0;aU=-(aT+aH)+aq[0];for(af=0,ad=ab-1;af0.98){S=0.98/ag;ag=0.98}}else{if(K.width==="auto"){if(ag>0.98){S=L/(B+L);ac=B+L}else{ac=B/(1-ag)}}else{ac=b.length2em(K.width,aA);for(af=0,ad=Math.min(ap+1,az.length);af0.01){if(ah&&ac>B){ac=(ac-B)/ah;for(af=0,ad=at.length;af&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - -MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.2",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); - -MathJax.InputJax.AsciiMath=MathJax.InputJax({id:"AsciiMath",version:"2.2",directory:MathJax.InputJax.directory+"/AsciiMath",extensionDir:MathJax.InputJax.extensionDir+"/AsciiMath",config:{displaystyle:true,decimalsign:"."}});MathJax.InputJax.AsciiMath.Register("math/asciimath");MathJax.InputJax.AsciiMath.loadComplete("config.js"); - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - -MathJax.Extension.asciimath2jax={version:"2.2",config:{delimiters:[["`","`"]],skipTags:["script","noscript","style","textarea","pre","code"],ignoreClass:"asciimath2jax_ignore",processClass:"asciimath2jax_process",preview:"AsciiMath"},PreProcess:function(a){if(!this.configured){this.config=MathJax.Hub.CombineConfig("asciimath2jax",this.config);if(this.config.Augment){MathJax.Hub.Insert(this,this.config.Augment)}this.configured=true}if(typeof(a)==="string"){a=document.getElementById(a)}if(!a){a=document.body}if(this.createPatterns()){this.scanElement(a,a.nextSibling)}},createPatterns:function(){var d=[],c,a,b=this.config;this.match={};if(b.delimiters.length===0){return false}for(c=0,a=b.delimiters.length;c0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.lastr){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;u0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - -MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function(){var b="2.2";var a=MathJax.ElementJax.mml;SETTINGS=MathJax.Hub.config.menuSettings;a.mbase.Augment({toMathML:function(k){var g=(this.inferred&&this.parent.inferRow);if(k==null){k=""}var e=this.type,d=this.toMathMLattributes();if(e==="mspace"){return k+"<"+e+d+" />"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - -(function(b,e){var d="2.2";var a=b.CombineConfig("TeX.noErrors",{disabled:false,multiLine:true,inlineDelimiters:["",""],style:{"font-size":"90%","text-align":"left",color:"black",padding:"1px 3px",border:"1px solid"}});var c="\u00A0";MathJax.Extension["TeX/noErrors"]={version:d,config:a};b.Register.StartupHook("TeX Jax Ready",function(){var f=MathJax.InputJax.TeX.formatError;MathJax.InputJax.TeX.Augment({formatError:function(j,i,k,g){if(a.disabled){return f.apply(this,arguments)}var h=j.message.replace(/\n.*/,"");b.signal.Post(["TeX Jax - parse error",h,i,k,g]);var m=a.inlineDelimiters;var l=(k||a.multiLine);if(!k){i=m[0]+i+m[1]}if(l){i=i.replace(/ /g,c)}else{i=i.replace(/\n/g," ")}return MathJax.ElementJax.mml.merror(i).With({isError:true,multiLine:l})}})});b.Register.StartupHook("HTML-CSS Jax Config",function(){b.Config({"HTML-CSS":{styles:{".MathJax .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("HTML-CSS Jax Ready",function(){var g=MathJax.ElementJax.mml;var h=MathJax.OutputJax["HTML-CSS"];var f=g.math.prototype.toHTML,i=g.merror.prototype.toHTML;g.math.Augment({toHTML:function(j,k){var l=this.data[0];if(l&&l.data[0]&&l.data[0].isError){j.style.fontSize="";j=this.HTMLcreateSpan(j);j.bbox=l.data[0].toHTML(j).bbox}else{j=f.call(this,j,k)}return j}});g.merror.Augment({toHTML:function(p){if(!this.isError){return i.call(this,p)}p=this.HTMLcreateSpan(p);p.className="noError";if(this.multiLine){p.style.display="inline-block"}var r=this.data[0].data[0].data.join("").split(/\n/);for(var o=0,l=r.length;o1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;q0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g=ai-1){this.lastChild=al}this.childNodes[ak]=al;al.nextSibling=aj.nextSibling;aj.nextSibling=aj.parent=null;return aj},toString:function(){return"{"+this.childNodes.join("")+"}"}});var E=function(){k=MathJax.ElementJax.mml;var i=k.mbase.prototype.Init;k.mbase.Augment({firstChild:null,lastChild:null,nodeValue:"",nextSibling:null,Init:function(){var ai=i.apply(this,arguments)||this;ai.childNodes=ai.data;ai.nodeName=ai.type;return ai},appendChild:function(al){if(al.parent){al.parent.removeChild(al)}var aj=arguments;if(al.isa(aa)){aj=al.childNodes;al.data=al.childNodes=[];al.firstChild=al.lastChild=null}for(var ak=0,ai=aj.length;ak=ai-1){this.lastChild=al}this.SetData(ak,al);al.nextSibling=aj.nextSibling;this.nodeValue="";for(ak=0,ai=this.childNodes.length;ak=",tag:"mo",output:"\u2265",tex:"ge",ttype:d},{input:"geq",tag:"mo",output:"\u2265",tex:null,ttype:d},{input:"-<",tag:"mo",output:"\u227A",tex:"prec",ttype:d},{input:"-lt",tag:"mo",output:"\u227A",tex:null,ttype:d},{input:">-",tag:"mo",output:"\u227B",tex:"succ",ttype:d},{input:"in",tag:"mo",output:"\u2208",tex:null,ttype:d},{input:"!in",tag:"mo",output:"\u2209",tex:"notin",ttype:d},{input:"sub",tag:"mo",output:"\u2282",tex:"subset",ttype:d},{input:"sup",tag:"mo",output:"\u2283",tex:"supset",ttype:d},{input:"sube",tag:"mo",output:"\u2286",tex:"subseteq",ttype:d},{input:"supe",tag:"mo",output:"\u2287",tex:"supseteq",ttype:d},{input:"-=",tag:"mo",output:"\u2261",tex:"equiv",ttype:d},{input:"~=",tag:"mo",output:"\u2245",tex:"cong",ttype:d},{input:"~~",tag:"mo",output:"\u2248",tex:"approx",ttype:d},{input:"prop",tag:"mo",output:"\u221D",tex:"propto",ttype:d},{input:"and",tag:"mtext",output:"and",tex:null,ttype:a},{input:"or",tag:"mtext",output:"or",tex:null,ttype:a},{input:"not",tag:"mo",output:"\u00AC",tex:"neg",ttype:d},{input:"=>",tag:"mo",output:"\u21D2",tex:"implies",ttype:d},{input:"if",tag:"mo",output:"if",tex:null,ttype:a},{input:"<=>",tag:"mo",output:"\u21D4",tex:"iff",ttype:d},{input:"AA",tag:"mo",output:"\u2200",tex:"forall",ttype:d},{input:"EE",tag:"mo",output:"\u2203",tex:"exists",ttype:d},{input:"_|_",tag:"mo",output:"\u22A5",tex:"bot",ttype:d},{input:"TT",tag:"mo",output:"\u22A4",tex:"top",ttype:d},{input:"|--",tag:"mo",output:"\u22A2",tex:"vdash",ttype:d},{input:"|==",tag:"mo",output:"\u22A8",tex:"models",ttype:d},{input:"(",tag:"mo",output:"(",tex:null,ttype:b},{input:")",tag:"mo",output:")",tex:null,ttype:l},{input:"[",tag:"mo",output:"[",tex:null,ttype:b},{input:"]",tag:"mo",output:"]",tex:null,ttype:l},{input:"{",tag:"mo",output:"{",tex:null,ttype:b},{input:"}",tag:"mo",output:"}",tex:null,ttype:l},{input:"|",tag:"mo",output:"|",tex:null,ttype:r},{input:"(:",tag:"mo",output:"\u2329",tex:"langle",ttype:b},{input:":)",tag:"mo",output:"\u232A",tex:"rangle",ttype:l},{input:"<<",tag:"mo",output:"\u2329",tex:null,ttype:b},{input:">>",tag:"mo",output:"\u232A",tex:null,ttype:l},{input:"{:",tag:"mo",output:"{:",tex:null,ttype:b,invisible:true},{input:":}",tag:"mo",output:":}",tex:null,ttype:l,invisible:true},{input:"int",tag:"mo",output:"\u222B",tex:null,ttype:d},{input:"dx",tag:"mi",output:"{:d x:}",tex:null,ttype:Z},{input:"dy",tag:"mi",output:"{:d y:}",tex:null,ttype:Z},{input:"dz",tag:"mi",output:"{:d z:}",tex:null,ttype:Z},{input:"dt",tag:"mi",output:"{:d t:}",tex:null,ttype:Z},{input:"oint",tag:"mo",output:"\u222E",tex:null,ttype:d},{input:"del",tag:"mo",output:"\u2202",tex:"partial",ttype:d},{input:"grad",tag:"mo",output:"\u2207",tex:"nabla",ttype:d},{input:"+-",tag:"mo",output:"\u00B1",tex:"pm",ttype:d},{input:"O/",tag:"mo",output:"\u2205",tex:"emptyset",ttype:d},{input:"oo",tag:"mo",output:"\u221E",tex:"infty",ttype:d},{input:"aleph",tag:"mo",output:"\u2135",tex:null,ttype:d},{input:"...",tag:"mo",output:"...",tex:"ldots",ttype:d},{input:":.",tag:"mo",output:"\u2234",tex:"therefore",ttype:d},{input:"/_",tag:"mo",output:"\u2220",tex:"angle",ttype:d},{input:"\\ ",tag:"mo",output:"\u00A0",tex:null,ttype:d},{input:"quad",tag:"mo",output:"\u00A0\u00A0",tex:null,ttype:d},{input:"qquad",tag:"mo",output:"\u00A0\u00A0\u00A0\u00A0",tex:null,ttype:d},{input:"cdots",tag:"mo",output:"\u22EF",tex:null,ttype:d},{input:"vdots",tag:"mo",output:"\u22EE",tex:null,ttype:d},{input:"ddots",tag:"mo",output:"\u22F1",tex:null,ttype:d},{input:"diamond",tag:"mo",output:"\u22C4",tex:null,ttype:d},{input:"square",tag:"mo",output:"\u25A1",tex:null,ttype:d},{input:"|__",tag:"mo",output:"\u230A",tex:"lfloor",ttype:d},{input:"__|",tag:"mo",output:"\u230B",tex:"rfloor",ttype:d},{input:"|~",tag:"mo",output:"\u2308",tex:"lceiling",ttype:d},{input:"~|",tag:"mo",output:"\u2309",tex:"rceiling",ttype:d},{input:"CC",tag:"mo",output:"\u2102",tex:null,ttype:d},{input:"NN",tag:"mo",output:"\u2115",tex:null,ttype:d},{input:"QQ",tag:"mo",output:"\u211A",tex:null,ttype:d},{input:"RR",tag:"mo",output:"\u211D",tex:null,ttype:d},{input:"ZZ",tag:"mo",output:"\u2124",tex:null,ttype:d},{input:"f",tag:"mi",output:"f",tex:null,ttype:H,func:true},{input:"g",tag:"mi",output:"g",tex:null,ttype:H,func:true},{input:"lim",tag:"mo",output:"lim",tex:null,ttype:P},{input:"Lim",tag:"mo",output:"Lim",tex:null,ttype:P},{input:"sin",tag:"mo",output:"sin",tex:null,ttype:H,func:true},{input:"cos",tag:"mo",output:"cos",tex:null,ttype:H,func:true},{input:"tan",tag:"mo",output:"tan",tex:null,ttype:H,func:true},{input:"sinh",tag:"mo",output:"sinh",tex:null,ttype:H,func:true},{input:"cosh",tag:"mo",output:"cosh",tex:null,ttype:H,func:true},{input:"tanh",tag:"mo",output:"tanh",tex:null,ttype:H,func:true},{input:"cot",tag:"mo",output:"cot",tex:null,ttype:H,func:true},{input:"sec",tag:"mo",output:"sec",tex:null,ttype:H,func:true},{input:"csc",tag:"mo",output:"csc",tex:null,ttype:H,func:true},{input:"log",tag:"mo",output:"log",tex:null,ttype:H,func:true},{input:"ln",tag:"mo",output:"ln",tex:null,ttype:H,func:true},{input:"det",tag:"mo",output:"det",tex:null,ttype:H,func:true},{input:"dim",tag:"mo",output:"dim",tex:null,ttype:d},{input:"mod",tag:"mo",output:"mod",tex:null,ttype:d},{input:"gcd",tag:"mo",output:"gcd",tex:null,ttype:H,func:true},{input:"lcm",tag:"mo",output:"lcm",tex:null,ttype:H,func:true},{input:"lub",tag:"mo",output:"lub",tex:null,ttype:d},{input:"glb",tag:"mo",output:"glb",tex:null,ttype:d},{input:"min",tag:"mo",output:"min",tex:null,ttype:P},{input:"max",tag:"mo",output:"max",tex:null,ttype:P},{input:"uarr",tag:"mo",output:"\u2191",tex:"uparrow",ttype:d},{input:"darr",tag:"mo",output:"\u2193",tex:"downarrow",ttype:d},{input:"rarr",tag:"mo",output:"\u2192",tex:"rightarrow",ttype:d},{input:"->",tag:"mo",output:"\u2192",tex:"to",ttype:d},{input:"|->",tag:"mo",output:"\u21A6",tex:"mapsto",ttype:d},{input:"larr",tag:"mo",output:"\u2190",tex:"leftarrow",ttype:d},{input:"harr",tag:"mo",output:"\u2194",tex:"leftrightarrow",ttype:d},{input:"rArr",tag:"mo",output:"\u21D2",tex:"Rightarrow",ttype:d},{input:"lArr",tag:"mo",output:"\u21D0",tex:"Leftarrow",ttype:d},{input:"hArr",tag:"mo",output:"\u21D4",tex:"Leftrightarrow",ttype:d},j,af,A,Q,o,s,h,{input:"hat",tag:"mover",output:"\u005E",tex:null,ttype:H,acc:true},{input:"bar",tag:"mover",output:"\u00AF",tex:"overline",ttype:H,acc:true},{input:"vec",tag:"mover",output:"\u2192",tex:null,ttype:H,acc:true},{input:"dot",tag:"mover",output:".",tex:null,ttype:H,acc:true},{input:"ddot",tag:"mover",output:"..",tex:null,ttype:H,acc:true},{input:"ul",tag:"munder",output:"\u0332",tex:"underline",ttype:H,acc:true},ah,x,p,{input:"bb",tag:"mstyle",atname:"fontweight",atval:"bold",output:"bb",tex:null,ttype:H},{input:"mathbf",tag:"mstyle",atname:"fontweight",atval:"bold",output:"mathbf",tex:null,ttype:H},{input:"sf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"sf",tex:null,ttype:H},{input:"mathsf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"mathsf",tex:null,ttype:H},{input:"bbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"bbb",tex:null,ttype:H,codes:D},{input:"mathbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"mathbb",tex:null,ttype:H,codes:D},{input:"cc",tag:"mstyle",atname:"mathvariant",atval:"script",output:"cc",tex:null,ttype:H,codes:J},{input:"mathcal",tag:"mstyle",atname:"mathvariant",atval:"script",output:"mathcal",tex:null,ttype:H,codes:J},{input:"tt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"tt",tex:null,ttype:H},{input:"mathtt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"mathtt",tex:null,ttype:H},{input:"fr",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"fr",tex:null,ttype:H,codes:N},{input:"mathfrak",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"mathfrak",tex:null,ttype:H,codes:N}];function W(ai,i){if(ai.input>i.input){return 1}else{return -1}}var U=[];function v(){var aj=[],ai;for(ai=0;ai>1;if(aj[ai]=U[ai]}y=F;if(am!=""){F=G[al].ttype;return G[al]}F=d;ai=1;ar=ao.slice(0,1);var ap=true;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}if(ar==f){ar=ao.slice(ai,ai+1);if("0"<=ar&&ar<="9"){ap=false;ai++;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}}}if((ap&&ai>1)||ai>2){ar=ao.slice(0,ai-1);aq="mn"}else{ai=2;ar=ao.slice(0,1);aq=(("A">ar||ar>"Z")&&("a">ar||ar>"z")?"mo":"mi")}if(ar=="-"&&y==m){F=m;return{input:ar,tag:aq,output:ar,ttype:H,func:true}}return{input:ar,tag:aq,output:ar,ttype:d}}function T(ai){var i;if(ai.nodeName=="mrow"){i=ai.firstChild.firstChild.nodeValue;if(i=="("||i=="["||i=="{"){ai.removeChild(ai.firstChild)}}if(ai.nodeName=="mrow"){i=ai.lastChild.firstChild.nodeValue;if(i==")"||i=="]"||i=="}"){ai.removeChild(ai.lastChild)}}}var K,y,F;function L(ao){var ak,aj,ar,am,aq,an=g.createDocumentFragment();ao=u(ao,0);ak=n(ao);if(ak==null||ak.ttype==l&&K>0){return[null,ao]}if(ak.ttype==Z){ao=ak.output+u(ao,ak.input.length);ak=n(ao)}switch(ak.ttype){case P:case d:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao];case b:K++;ao=u(ao,ak.input.length);ar=w(ao,true);K--;if(typeof ak.invisible=="boolean"&&ak.invisible){aj=M("mrow",ar[0])}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0])}return[aj,ar[1]];case ab:if(ak!=p){ao=u(ao,ak.input.length)}if(ao.charAt(0)=="{"){am=ao.indexOf("}")}else{if(ao.charAt(0)=="("){am=ao.indexOf(")")}else{if(ao.charAt(0)=="["){am=ao.indexOf("]")}else{if(ak==p){am=ao.slice(1).indexOf('"')+1}else{am=0}}}}if(am==-1){am=ao.length}aq=ao.slice(1,am);if(aq.charAt(0)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}an.appendChild(M(ak.tag,g.createTextNode(aq)));if(aq.charAt(aq.length-1)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}ao=u(ao,am+1);return[M("mrow",an),ao];case H:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M(ak.tag,g.createTextNode(ak.output)),ao]}if(typeof ak.func=="boolean"&&ak.func){aq=ao.charAt(0);if(aq=="^"||aq=="_"||aq=="/"||aq=="|"||aq==","){return[M(ak.tag,g.createTextNode(ak.output)),ao]}else{aj=M("mrow",M(ak.tag,g.createTextNode(ak.output)));aj.appendChild(ar[0]);return[aj,ar[1]]}}T(ar[0]);if(ak.input=="sqrt"){return[M(ak.tag,ar[0]),ar[1]]}else{if(typeof ak.acc=="boolean"&&ak.acc){aj=M(ak.tag,ar[0]);aj.appendChild(M("mo",g.createTextNode(ak.output)));return[aj,ar[1]]}else{if(!q&&typeof ak.codes!="undefined"){for(am=0;am64&&aq.charCodeAt(al)<91){ap=ap+String.fromCharCode(ak.codes[aq.charCodeAt(al)-65])}else{ap=ap+aq.charAt(al)}}if(ar[0].nodeName=="mi"){ar[0]=R("mo").appendChild(g.createTextNode(ap))}else{ar[0].replaceChild(R("mo").appendChild(g.createTextNode(ap)),ar[0].childNodes[am])}}}}aj=M(ak.tag,ar[0]);aj.setAttribute(ak.atname,ak.atval);return[aj,ar[1]]}}case X:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ar[0]);var ai=L(ar[1]);if(ai[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ai[0]);if(ak.input=="root"||ak.input=="stackrel"){an.appendChild(ai[0])}an.appendChild(ar[0]);if(ak.input=="frac"){an.appendChild(ai[0])}return[M(ak.tag,an),ai[1]];case m:ao=u(ao,ak.input.length);return[M("mo",g.createTextNode(ak.output)),ao];case a:ao=u(ao,ak.input.length);aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);an.appendChild(M(ak.tag,g.createTextNode(ak.output)));aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);return[M("mrow",an),ao];case r:K++;ao=u(ao,ak.input.length);ar=w(ao,false);K--;aq="";if(ar[0].lastChild!=null){aq=ar[0].lastChild.firstChild.nodeValue}if(aq=="|"){aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0]);return[aj,ar[1]]}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);return[aj,ao]}default:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao]}}function z(an){var al,ao,am,ak,i,aj;an=u(an,0);ao=n(an);i=L(an);ak=i[0];an=i[1];al=n(an);if(al.ttype==m&&al.input!="/"){an=u(an,al.input.length);i=L(an);if(i[0]==null){i[0]=M("mo",g.createTextNode("\u25A1"))}else{T(i[0])}an=i[1];if(al.input=="_"){am=n(an);aj=(ao.ttype==P);if(am.input=="^"){an=u(an,am.input.length);var ai=L(an);T(ai[0]);an=ai[1];ak=M((aj?"munderover":"msubsup"),ak);ak.appendChild(i[0]);ak.appendChild(ai[0]);ak=M("mrow",ak)}else{ak=M((aj?"munder":"msub"),ak);ak.appendChild(i[0])}}else{ak=M(al.tag,ak);ak.appendChild(i[0])}}return[ak,an]}function w(aq,ap){var av,ar,am,ay,an=g.createDocumentFragment();do{aq=u(aq,0);am=z(aq);ar=am[0];aq=am[1];av=n(aq);if(av.ttype==m&&av.input=="/"){aq=u(aq,av.input.length);am=z(aq);if(am[0]==null){am[0]=M("mo",g.createTextNode("\u25A1"))}else{T(am[0])}aq=am[1];T(ar);ar=M(av.tag,ar);ar.appendChild(am[0]);an.appendChild(ar);av=n(aq)}else{if(ar!=undefined){an.appendChild(ar)}}}while((av.ttype!=l&&(av.ttype!=r||ap)||K==0)&&av!=null&&av.output!="");if(av.ttype==l||av.ttype==r){var az=an.childNodes.length;if(az>0&&an.childNodes[az-1].nodeName=="mrow"&&az>1&&an.childNodes[az-2].nodeName=="mo"&&an.childNodes[az-2].firstChild.nodeValue==","){var aB=an.childNodes[az-1].lastChild.firstChild.nodeValue;if(aB==")"||aB=="]"){var aj=an.childNodes[az-1].firstChild.firstChild.nodeValue;if(aj=="("&&aB==")"&&av.output!="}"||aj=="["&&aB=="]"){var ak=[];var aw=true;var at=an.childNodes.length;for(ay=0;aw&&ay1){aw=ak[ay].length==ak[ay-2].length}}if(aw){var al,ai,ao,au,aA=g.createDocumentFragment();for(ay=0;ay2){an.removeChild(an.firstChild);an.removeChild(an.firstChild)}aA.appendChild(M("mtr",al))}ar=M("mtable",aA);if(typeof av.invisible=="boolean"&&av.invisible){ar.setAttribute("columnalign","left")}an.replaceChild(ar,an.firstChild)}}}}aq=u(aq,av.input.length);if(typeof av.invisible!="boolean"||!av.invisible){ar=M("mo",g.createTextNode(av.output));an.appendChild(ar)}}return[an,aq]}function e(aj){var ai=R("mstyle");if(I!=""){ai.setAttribute("mathcolor",I)}if(t){ai.setAttribute("displaystyle","true")}if(ad!=""){ai.setAttribute("fontfamily",ad)}K=0;ai.appendChild(w(aj.replace(/^\s+/g,""),false)[0]);ai=M("math",ai);if(C){ai.setAttribute("title",aj.replace(/\s+/g," "))}if(ad!=""&&(q||ad!="serif")){var i=V("font");i.setAttribute("face",ad);i.appendChild(ai);return i}return ai}C=false;ad="";I="";(function(){for(var aj=0,ai=G.length;aj",tex:null,ttype:d},{input:"gt=",tag:"mo",output:"\u2265",tex:"geq",ttype:d},{input:"-<=",tag:"mo",output:"\u2AAF",tex:"preceq",ttype:d},{input:">-=",tag:"mo",output:"\u2AB0",tex:"succeq",ttype:d},{input:"'",tag:"mo",output:"\u2032",tex:"prime",ttype:d},{input:"arcsin",tag:"mi",output:"arcsin",tex:null,ttype:H,func:true},{input:"arccos",tag:"mi",output:"arccos",tex:null,ttype:H,func:true},{input:"arctan",tag:"mi",output:"arctan",tex:null,ttype:H,func:true},{input:"coth",tag:"mi",output:"coth",tex:null,ttype:H,func:true},{input:"sech",tag:"mi",output:"sech",tex:null,ttype:H,func:true},{input:"csch",tag:"mi",output:"csch",tex:null,ttype:H,func:true},{input:"abs",tag:"mi",output:"abs",tex:null,ttype:H,func:true},{input:"exp",tag:"mi",output:"exp",tex:null,ttype:H,func:true},{input:"tilde",tag:"mover",output:"~",tex:null,ttype:H,acc:true});ag.Augment({AM:{Init:function(){t=ag.config.displaystyle;f=(ag.config.decimal||ag.config.decimalsign);E();v()},Augment:function(i){for(var ai in i){if(i.hasOwnProperty(ai)){switch(ai){case"displaystyle":t=i[ai];break;case"decimal":decimal=i[ai];break;case"parseMath":e=i[ai];break;case"parseExpr":w=i[ai];break;case"parseIexpr":z=i[ai];break;case"parseSexpr":L=i[ai];break;case"removeBrackets":T=i[ai];break;case"getSymbol":n=i[ai];break;case"position":c=i[ai];break;case"removeCharsAndBlanks":u=i[ai];break;case"createMmlNode":M=i[ai];break;case"createElementMathML":R=i[ai];break;case"createElementXHTML":V=i[ai];break;case"initSymbols":v=i[ai];break;case"compareNames":comareNames=i[ai];break}this[ai]=i[ai]}}},parseMath:e,parseExpr:w,parseIexpr:z,parseSexr:L,removeBrackets:T,getSymbol:n,position:c,removeCharsAndBlanks:u,createMmlNode:M,createElementMathML:R,createElementXHTML:V,initSymbols:v,compareNames:W,createDocumentFragment:aa,document:g,define:B,symbols:G,names:U,TOKEN:{CONST:d,UNARY:H,BINARY:X,INFIX:m,LEFTBRACKET:b,RIGHTBRACKET:l,SPACE:a,UNDEROVER:P,DEFINITION:Z,LEFTRIGHT:r,TEXT:ab}}});var ae=[S,O];ae=null})(MathJax.InputJax.AsciiMath);(function(b){var a;b.Augment({sourceMenuTitle:["AsciiMathInput","AsciiMath Input"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(c){var d,f=MathJax.HTML.getScript(c);var g={math:f,script:c};this.prefilterHooks.Execute(g);f=g.math;try{d=this.AM.parseMath(f)}catch(e){if(!e.asciimathError){throw e}d=this.formatError(e,f)}g.math=a(d);this.postfilterHooks.Execute(g);return g.math},formatError:function(f,e,c){var d=f.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["AsciiMath Jax - parse error",d,e,c]);return a.merror(d)},Error:function(c){throw MathJax.Hub.Insert(Error(c),{asciimathError:true})},Startup:function(){a=MathJax.ElementJax.mml;this.AM.Init()}});b.loadComplete("jax.js")})(MathJax.InputJax.AsciiMath); - -MathJax.Ajax.loadComplete("[MathJax]/config/TeX-MML-AM_HTMLorMML.js"); diff --git a/modules/MathJax/config/default.js b/modules/MathJax/config/default.js deleted file mode 100644 index a2cd92f..0000000 --- a/modules/MathJax/config/default.js +++ /dev/null @@ -1,1022 +0,0 @@ -/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ -/* vim: set ts=2 et sw=2 tw=80: */ - -/************************************************************* - * - * MathJax/config/default.js - * - * This configuration file is loaded when you load MathJax - * via - * - * Use it to customize the MathJax settings. See comments below. - * - * --------------------------------------------------------------------- - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - -/* - * This file lists most, but not all, of the options that can be set for - * MathJax and its various components. Some additional options are - * available, however, and are listed in the various links at: - * - * http://www.mathjax.org/resources/docs/?configuration.html#configuration-options-by-component - * - * You can add these to the configuration object below if you - * want to change them from their default values. - */ - -MathJax.Hub.Config({ - - // - // A comma-separated list of configuration files to load - // when MathJax starts up. E.g., to define local macros, etc. - // The default directory is the MathJax/config directory. - // - // Example: config: ["local/local.js"], - // Example: config: ["local/local.js","MMLtoHTML.js"], - // - config: [], - - // - // A comma-separated list of CSS stylesheet files to be loaded - // when MathJax starts up. The default directory is the - // MathJax/config directory. - // - // Example: styleSheets: ["MathJax.css"], - // - styleSheets: [], - - // - // Styles to be defined dynamically at startup time. - // - // Example: - // styles: { - // ".MathJax_Preview": { - // color: "#888" - // } - // }, - // - styles: {}, - - // - // A comma-separated list of input and output jax to initialize at startup. - // Their main code is loaded only when they are actually used, so it is not - // inefficient to include jax that may not actually be used on the page. These - // are found in the MathJax/jax directory. - // - jax: ["input/TeX","output/HTML-CSS"], - - // - // A comma-separated list of extensions to load at startup. The default - // directory is MathJax/extensions. - // - // Example: extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"], - // - extensions: ["tex2jax.js"], - - // - // Patterns to remove from before and after math script tags. If you are not - // using one of the preprocessors (e.g., tex2jax), you need to insert something - // extra into your HTML file in order to avoid a bug in Internet Explorer. IE - // removes spaces from the DOM that it thinks are redundent, and since a SCRIPT - // tag usually doesn't add content to the page, if there is a space before and after - // a MathJax SCRIPT tag, IE will remove the first space. When MathJax inserts - // the typeset mathematics, this means there will be no space before it and the - // preceeding text. In order to avoid this, you should include some "guard characters" - // before or after the math SCRIPT tag; define the patterns you want to use below. - // Note that these are used as regular expressions, so you will need to quote - // special characters. Furthermore, since they are javascript strings, you must - // quote javascript special characters as well. So to obtain a backslash, you must - // use \\ (doubled for javascript). For example, "\\[" is the pattern \[ in the - // regular expression. That means that if you want an actual backslash in your - // guard characters, you need to use "\\\\" in order to get \\ in the regular - // expression, and \ in the actual text. If both preJax and postJax are defined, - // both must be present in order to be removed. - // - // See also the preRemoveClass comments below. - // - // Example: - // preJax: "\\\\\\\\", // makes a double backslash the preJax text - // or - // preJax: "\\[\\[", // jax scripts must be enclosed in double brackets - // postJax: "\\]\\]", - // - preJax: null, - postJax: null, - - // - // The CSS class for a math preview to be removed preceeding a MathJax - // SCRIPT tag. If the tag just before the MathJax SCRIPT tag is of this - // class, its contents are removed when MathJax processes the SCRIPT - // tag. This allows you to include a math preview in a form that will - // be displayed prior to MathJax performing its typesetting. It also - // avoids the Internet Explorer space-removal bug, and can be used in - // place of preJax and postJax if that is more convenient. - // - // For example - // - // [math] - // - // would display "[math]" in place of the math until MathJax is able to typeset it. - // - preRemoveClass: "MathJax_Preview", - - // - // This value controls whether the "Processing Math: nn%" message are displayed - // in the lower left-hand corner. Set to "false" to prevent those messages (though - // file loading and other messages will still be shown). - // - showProcessingMessages: true, - - // - // This value controls the verbosity of the messages in the lower left-hand corner. - // Set it to "none" to eliminate all messages, or set it to "simple" to show - // "Loading..." and "Processing..." rather than showing the full file name and the - // percentage of the mathematics processed. - // - messageStyle: "normal", - - // - // These two parameters control the alignment and shifting of displayed equations. - // The first can be "left", "center", or "right", and determines the alignment of - // displayed equations. When the alignment is not "center", the second determines - // an indentation from the left or right side for the displayed equations. - // - displayAlign: "center", - displayIndent: "0em", - - // - // Normally MathJax will perform its starup commands (loading of - // configuration, styles, jax, and so on) as soon as it can. If you - // expect to be doing additional configuration on the page, however, you - // may want to have it wait until the page's onload hander is called. If so, - // set this to "onload". - // - delayStartupUntil: "none", - - // - // Normally MathJax will typeset the mathematics on the page as soon as - // the page is loaded. If you want to delay that process, in which case - // you will need to call MathJax.Hub.Typeset() yourself by hand, set - // this value to true. - // - skipStartupTypeset: false, - - // - // A list of element ID's that are the ones to process for mathematics - // when any of the Hub typesetting calls (Typeset, Process, Update, etc) - // are called with no element specified. This lets you restrict the - // processing to particular containers rather than scanning the entire - // document for mathematics. If none are supplied, the entire document - // is processed. - // - elements: [], - - // - // Since typesetting usually changes the vertical dimensions of the - // page, if the URL contains an anchor position you may no longer be - // positioned at the correct position on the page, so MathJax can - // reposition to that location after it completes its initial - // typesetting of the page. This value controls whether MathJax will - // reposition the browser to the #hash location from the page URL after - // typesetting for the page. - // - positionToHash: false, - - // - // These control whether to attach the MathJax contextual menu to the - // expressions typeset by MathJax. Since the code for handling - // MathPlayer in Internet Explorer is somewhat delicate, it is - // controlled separately via (showMathMenuMSIE). The latter is now - // deprecated in favor of the MathJax contextual menu settings for - // MathPlayer. - // - // These values used to be listed in the separate output jax, but - // have been moved to this more central location since they are shared - // by all output jax. - // - showMathMenu: true, - showMathMenuMSIE: true, - - - // - // The default settings for the MathJax contextual menu (overridden by - // the MathJax cookie when users change the menu settings). - // - menuSettings: { - zoom: "None", // when to do MathZoom - CTRL: false, // require CTRL for MathZoom? - ALT: false, // require Alt or Option? - CMD: false, // require CMD? - Shift: false, // require Shift? - zscale: "200%", // the scaling factor for MathZoom - font: "Auto", // what font HTML-CSS should use - context: "MathJax", // or "Browser" for pass-through to browser menu - mpContext: false, // true means pass menu events to MathPlayer in IE - mpMouse: false, // true means pass mouse events to MathPlayer in IE - texHints: true // include class names for TeXAtom elements - }, - - // - // The message and style for when there is a processing error handling - // the mathematics (something has gone wrong with the input or output - // jax that prevents it from operating properly). - // - errorSettings: { - message: ["[Math Processing Error]"], // HTML snippet structure for message to use - messageId: "MathProcessingError", // ID of snippet for localization - style: {color: "#CC0000", "font-style":"italic"} // style for message - }, - - - //============================================================================ - // - // These parameters control the tex2jax preprocessor (when you have included - // "tex2jax.js" in the extensions list above). - // - tex2jax: { - - // - // The delimiters that surround in-line math expressions. The first in each - // pair is the initial delimiter and the second is the terminal delimiter. - // Comment out any that you don't want, but be sure there is no extra - // comma at the end of the last item in the list -- some browsers won't - // be able to handle that. - // - inlineMath: [ -// ['$','$'], // uncomment this for standard TeX math delimiters - ['\\(','\\)'] - ], - - // - // The delimiters that surround displayed math expressions. The first in each - // pair is the initial delimiter and the second is the terminal delimiter. - // Comment out any that you don't want, but be sure there is no extra - // comma at the end of the last item in the list -- some browsers won't - // be able to handle that. - // - displayMath: [ - ['$$','$$'], - ['\\[','\\]'] - ], - - // - // This value determines whether tex2jax requires braces to be - // balanced within math delimiters (which allows for nested dollar - // signs). Set to false to get pre-v2.0 compatibility. When true, - // - // $y = x^2 \hbox{ when $x > 2$}$. - // - // will be properly handled as a single expression. When false, it - // would be interpreted as two searpate expressions, each with - // improperly balanced braces. - // - balanceBraces: true, - - // - // This array lists the names of the tags whose contents should not be - // processed by tex2jax (other than to look for ignore/process classes - // as listed below). You can add to (or remove from) this list to prevent - // MathJax from processing mathematics in specific contexts. - // - skipTags: ["script","noscript","style","textarea","pre","code"], - - // - // This is the class name used to mark elements whose contents should - // not be processed by tex2jax (other than to look for the - // processClass pattern below). Note that this is a regular - // expression, and so you need to be sure to quote any regexp special - // characters. The pattern is automatically preceeded by '(^| )(' and - // followed by ')( |$)', so your pattern will have to match full words - // in the class name. Assigning an element this class name will - // prevent `tex2jax` from processing its contents. - // - ignoreClass: "tex2jax_ignore", - - // - // This is the class name used to mark elements whose contents SHOULD - // be processed by tex2jax. This is used to turn on processing within - // tags that have been marked as ignored or skipped above. Note that - // this is a regular expression, and so you need to be sure to quote - // any regexp special characters. The pattern is automatically - // preceeded by '(^| )(' and followed by ')( |$)', so your pattern - // will have to match full words in the class name. Use this to - // restart processing within an element that has been marked as - // ignored above. - // - processClass: "tex2jax_process", - - // - // Set to "true" to allow \$ to produce a dollar without starting in-line - // math mode. If you uncomment the ['$','$'] line above, you should change - // this to true so that you can insert plain dollar signs into your documents - // - processEscapes: false, - - // - // Controls whether tex2jax processes LaTeX environments outside of math - // mode. Set to "false" to prevent processing of environments except within - // math mode. - // - processEnvironments: true, - - // - // Controls whether tex2jax processes \ref{...} commands outside - // of math mode. Set to "false" to prevent processing of \ref - // except within math mode. - // - processRefs: true, - - // - // Controls whether tex2jax inserts MathJax_Preview spans to make a - // preview available, and what preview to use, when it locates in-line - // and display mathetics on the page. The default is "TeX", which - // means use the TeX code as the preview (until it is processed by - // MathJax). Set to "none" to prevent the previews from being - // inserted (the math will simply disappear until it is typeset). Set - // to an array containing the description of an HTML snippet in order - // to use the same preview for all equations on the page (e.g., you - // could have it say "[math]" or load an image). - // - // E.g., preview: ["[math]"], - // or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]] - // - preview: "TeX" - - }, - - //============================================================================ - // - // These parameters control the asciimath2jax preprocessor (when you have included - // "asciimath2jax.js" in the extensions list above). - // - asciimath2jax: { - - // - // The delimiters that surround asciimath expressions. The first in each - // pair is the initial delimiter and the second is the terminal delimiter. - // - delimiters: [ - ['`','`'] - ], - - // - // This array lists the names of the tags whose contents should not be - // processed by asciimath2jax (other than to look for ignore/process classes - // as listed below). You can add to (or remove from) this list to prevent - // MathJax from processing mathematics in specific contexts. - // - skipTags: ["script","noscript","style","textarea","pre","code"], - - // - // This is the class name used to mark elements whose contents should - // not be processed by asciimath2jax (other than to look for the - // processClass pattern below). Note that this is a regular - // expression, and so you need to be sure to quote any regexp special - // characters. The pattern is automatically preceeded by '(^| )(' and - // followed by ')( |$)', so your pattern will have to match full words - // in the class name. Assigning an element this class name will - // prevent `asciimath2jax` from processing its contents. - // - ignoreClass: "asciimath2jax_ignore", - - // - // This is the class name used to mark elements whose contents SHOULD - // be processed by asciimath2jax. This is used to turn on processing - // within tags that have been marked as ignored or skipped above. - // Note that this is a regular expression, and so you need to be sure - // to quote any regexp special characters. The pattern is - // automatically preceeded by '(^| )(' and followed by ')( |$)', so - // your pattern will have to match full words in the class name. Use - // this to restart processing within an element that has been marked - // as ignored above. - // - processClass: "asciimath2jax_process", - - // Controls whether asciimath2jax inserts MathJax_Preview spans to make a - // preview available, and what preview to use, when it locates in-line - // and display mathetics on the page. The default is "AsciiMath", which - // means use the AsciiMath code as the preview (until it is processed by - // MathJax). Set to "none" to prevent the previews from being - // inserted (the math will simply disappear until it is typeset). Set - // to an array containing the description of an HTML snippet in order - // to use the same preview for all equations on the page (e.g., you - // could have it say "[math]" or load an image). - // - // E.g., preview: ["[math]"], - // or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]] - // - preview: "AsciiMath" - - }, - - //============================================================================ - // - // These parameters control the mml2jax preprocessor (when you have included - // "mml2jax.js" in the extensions list above). - // - mml2jax: { - - // - // Controls whether mml2jax inserts MathJax_Preview spans to make a - // preview available, and what preview to use, whrn it locates - // mathematics on the page. The default is "alttext", which means use - // the tag's alttext attribute as the preview (until it is - // processed by MathJax), if the tag has one. Set to "none" to - // prevent the previews from being inserted (the math will simply - // disappear until it is typeset). Set to an array containing the - // description of an HTML snippet in order to use the same preview for - // all equations on the page (e.g., you could have it say "[math]" or - // load an image). - // - // E.g., preview: ["[math]"], - // or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]] - // - preview: "alttext" - - }, - - //============================================================================ - // - // These parameters control the jsMath2jax preprocessor (when you have included - // "jsMath2jax.js" in the extensions list above). - // - jsMath2jax: { - - // - // Controls whether jsMath2jax inserts MathJax_Preview spans to make a - // preview available, and what preview to use, when it locates - // mathematics on the page. The default is "TeX", which means use the - // TeX code as the preview (until it is processed by MathJax). Set to - // "none" to prevent the previews from being inserted (the math will - // simply disappear until it is typeset). Set to an array containing - // the description of an HTML snippet in order to use the same preview - // for all equations on the page (e.g., you could have it say "[math]" - // or load an image). - // - // E.g., preview: ["[math]"], - // or preview: [["img",{src: "http://myserver.com/images/mypic.jpg"}]] - // - preview: "TeX" - - }, - - //============================================================================ - // - // These parameters control the TeX input jax. - // - TeX: { - - // - // This specifies the side on which \tag{} macros will place the tags. - // Set to "left" to place on the left-hand side. - // - TagSide: "right", - - // - // This is the amound of indentation (from right or left) for the tags. - // - TagIndent: ".8em", - - // - // This is the width to use for the multline environment - // - MultLineWidth: "85%", - - // - // List of macros to define. These are of the form - // name: value - // where 'value' is the replacement text for the macro \name. - // The 'value' can also be [value,n] where 'value' is the replacement - // text and 'n' is the number of parameters for the macro. - // Note that backslashes must be doubled in the replacement string. - // - // E.g., - // - // Macros: { - // RR: '{\\bf R}', - // bold: ['{\\bf #1}', 1] - // } - // - Macros: {}, - - // - // Equation numbering parameters. - // - equationNumbers: { - autoNumber: "none", // "AMS" for standard AMS environment numbering, - // or "all" to number all displayed equations -// formatNumber: function (n) {return n}, // format for equation number n -// formatTag: function (n) {return '('+n+')'}, // format for \tag and \eqref -// formatID: function (n) {return 'mjx-eqn-'+String(n).replace(/[:'"<>&]/g,"")}, -// // element ID to use for reference -// formatURL: function (id) {return '#'+escape(id)}, // URL to use for references - useLabelIds: true // make element ID's use \label name rather than equation number - }, - - // - // Controls the TeX/noErrors extension - // - noErrors: { - disabled: false, // set to true to return to original error messages - multiLine: true, // false to not include original line breaks - inlineDelimiters: ["",""], // or use ["$","$"] or ["\\(","\\)"] to put back delimiters - style: { - "font-size": "90%", - "text-align": "left", - "color": "black", - "padding": "1px 3px", - "border": "1px solid" - } - }, - - // - // Controls the TeX/noUndefined extension - // - noUndefined: { - disabled: false, // set to true to return to original error messages - attributes: { // attributes to set for the undefined control sequence - mathcolor: "red" - } - }, - - // - // Controls the TeX/unicode extension - unicode: { - fonts: "STIXGeneral,'Arial Unicode MS'" // the default font list for unknown characters - } - - }, - - //============================================================================ - // - // These parameters control the AsciiMath input jax. - // - AsciiMath: { - // - // Determines whether limits are placed above and below operators, - // or next to them. (AsciiMath doesn't have separate in-line and - // display modes like TeX and MathML do, so this is the only control - // you have over its output) - // - displaystyle: true, - - // - // The character to use for decimal places when scanning for a number. - // If you change it to ",", beware of things like "(1,2)" which would need - // to be changed to "(1, 2)" to be parsed correctly. - // - decimal: "." - }, - - //============================================================================ - // - // These parameters control the MathML input jax. - // - MathML: { - // - // This specifies whether to use TeX spacing or MathML spacing when the - // HTML-CSS output jax is used. - // - useMathMLspacing: false - }, - - //============================================================================ - // - // These parameters control the HTML-CSS output jax. - // - "HTML-CSS": { - - // - // This controls the global scaling of mathematics as compared to the - // surrounding text. Values between 100 and 133 are usually good choices. - // - scale: 100, - - // - // Don't allow the matching of math text to surrounding text to use a scaling - // factor smaller than this. - // - minScaleAdjust: 50, - - // - // This is a list of the fonts to look for on a user's computer in - // preference to using MathJax's web-based fonts. These must - // correspond to directories available in the jax/output/HTML-CSS/fonts - // directory, where MathJax stores data about the characters available - // in the fonts. Set this to ["TeX"], for example, to prevent the - // use of the STIX fonts, or set it to an empty list, [], if - // you want to force MathJax to use web-based or image fonts. - // - availableFonts: ["STIX","TeX"], - - // - // This is the preferred font to use when more than one of those - // listed above is available. - // - preferredFont: "TeX", - - // - // This is the web-based font to use when none of the fonts listed - // above are available on the user's computer. Note that currently - // only the TeX font is available in a web-based form. Set this to - // - // webFont: null, - // - // if you want to prevent the use of web-based fonts. - // - webFont: "TeX", - - // - // This is the font to use for image fallback mode (when none of the - // fonts listed above are available and the browser doesn't support - // web-fonts via the @font-face CSS directive). Note that currently - // only the TeX font is available as an image font. Set this to - // - // imageFont: null, - // - // if you want to prevent the use of image fonts (e.g., you have not - // installed the image fonts on your server). In this case, only - // browsers that support web-based fonts will be able to view your pages - // without having the fonts installed on the client computer. The browsers - // that support web-based fonts include: IE6 and later, Chrome, Safari3.1 - // and above, Firefox3.5 and later, and Opera10 and later. Note that - // Firefox3.0 is NOT on this list, so without image fonts, FF3.0 users - // will be required to to download and install either the STIX fonts or the - // MathJax TeX fonts. - // - imageFont: "TeX", - - // - // This is the font-family CSS value used for characters that are not - // in the selected font (e.g., for web-based fonts, this is where to - // look for characters not included in the MathJax_* fonts). IE will - // stop looking after the first font that exists on the system (even - // if it doesn't contain the needed character), so order these carefully. - // - undefinedFamily: "STIXGeneral,'Arial Unicode MS',serif", - - // - // This setting controls whether elements will be typeset - // using the math fonts or the font of the surrounding text. When - // false, the mathvariant="normal" font will be used; when true, - // the font will be inherited from the surrounding paragraph. - // - mtextFontInherit: false, - - // - // These values control how "chunky" the display of mathematical - // expressions will be. - // - // EqnChunk is the number of equations that will be typeset before - // they appear on screen. Larger values make for less visual flicker - // as the equations are drawn, but also mean longer delays before the - // reader sees anything. - // - // EqChunkFactor is the factor by which the EqnChunk will grow after each - // chunk is displayed. - // - // EqChunkDelay is the time (in milliseconds) to delay between chunks - // (to allow the browser to respond to other user interaction). - // - // Set EqnChunk to 1, EqnChunkFactor to 1, and EqnChunkDelay to 10 to get - // the behavior from MathJax v1.1 and below. - // - EqnChunk: 50, - EqnChunkFactor: 1.5, - EqnChunkDelay: 100, - - // - // These settings control automatic line breaking. It is off by - // default, so only explicit line breaks are performed (via - // linebreak="newline" attributes on and elements). To - // perform automatic line breaking on line expressions, set - // 'automatic' to 'true' below. The line breaks will be applied via a - // penalty-based heuristic, which does well, but isn't perfect. You - // might need to use linebreak="goodbreak" or linebreak="badbreak" by - // hand in order to get better effects. It is also possible to modify - // the penalty values; contact the MathJax user's forum for details. - // - linebreaks: { - - // - // This controls the automatic breaking of expressions: - // when false, only process linebreak="newline", - // when true, line breaks are inserted automatically in long expressions. - // - automatic: false, - - // - // This controls how wide the lines of mathematics can be - // - // Use an explicit width like "30em" for a fixed width. - // Use "container" to compute the size from the containing element. - // Use "nn% container" for a portion of the container. - // Use "nn%" for a portion of the window size. - // - // The container-based widths may be slower, and may not produce the - // expected results if the layout width changes due to the removal - // of previews or inclusion of mathematics during typesetting. - // - width: "container" - }, - - // - // This allows you to define or modify the styles used to display - // various math elements created by MathJax. - // - // Example: - // styles: { - // ".MathJax .merror": { - // color: "#CC0000", - // border: "1px solid #CC0000" - // } - // } - // - styles: {}, - - // - // Configuration for tooltips - // (see also the #MathJax_Tooltip CSS in MathJax/jax/output/HTML-CSS/config.js, - // which can be overriden using the styles values above). - // - tooltip: { - delayPost: 600, // milliseconds delay before tooltip is posted after mouseover - delayClear: 600, // milliseconds delay before tooltip is cleared after mouseout - offsetX: 10, offsetY: 5 // pixels to offset tooltip from mouse position - } - }, - - //============================================================================ - // - // These parameters control the NativeMML output jax. - // - NativeMML: { - - // - // This controls the global scaling of mathematics as compared to the - // surrounding text. Values between 100 and 133 are usually good choices. - // - scale: 100, - - // - // Don't allow the matching of math text to surrounding text to use a scaling - // factor smaller than this. - // - minScaleAdjust: 50, - - // - // This allows you to define or modify the styles used to display - // various math elements created by MathJax. - // - // Example: - // styles: { - // ".MathJax_MathML": { - // color: "red" // MathML is in red - // } - // } - // - styles: {} - }, - - //============================================================================ - // - // These parameters control the SVG output jax. - // - "SVG": { - - // - // This controls the global scaling of mathematics as compared to the - // surrounding text. Values between 100 and 133 are usually good choices. - // - scale: 100, - - // - // Don't allow the matching of math text to surrounding text to use a scaling - // factor smaller than this. - // - minScaleAdjust: 50, - - // - // This specifies the font to use for SVG output (currently the only - // one available) - // - font: "TeX", - - // - // This is the stroke width to use for all character paths (1em = 1000 - // units). This is a cheap way of getting slightly lighter or darker - // characters - // - blacker: 10, - - // - // This is the font-family CSS value used for characters that are not - // in the selected font. IE will stop looking after the first font - // that exists on the system (even if it doesn't contain the needed - // character), so order these carefully. - // - undefinedFamily: "STIXGeneral,'Arial Unicode MS',serif", - - // - // This setting controls whether elements will be typeset - // using the math fonts or the font of the surrounding text. When - // false, the mathvariant="normal" font will be used; when true, - // the font will be inherited from the surrounding paragraph. - // - mtextFontInherit: false, - - // - // This controls whether the MathML structure is retained and CSS - // classes are added to mark the original MathML elements (as in the - // HTML-CSS output). By default, the SVG output jax removes unneeded - // nesting in order to produce a more efficient markup, but if you - // want to use CSS to style the elements as if they were MathML, you - // might need to set this to true. - // - addMMLclasses: false, - - // - // These values control how "chunky" the display of mathematical - // expressions will be. - // - // EqnChunk is the number of equations that will be typeset before - // they appear on screen. Larger values make for less visual flicker - // as the equations are drawn, but also mean longer delays before the - // reader sees anything. - // - // EqChunkFactor is the factor by which the EqnChunk will grow after each - // chunk is displayed. - // - // EqChunkDelay is the time (in milliseconds) to delay between chunks - // (to allow the browser to respond to other user interaction). - // - // Set EqnChunk to 1, EqnChunkFactor to 1, and EwnChunkDelay to 10 to get - // the behavior from MathJax v1.1 and below. - // - EqnChunk: 50, - EqnChunkFactor: 1.5, - EqnChunkDelay: 100, - - // - // These settings control automatic line breaking. It is off by - // default, so only explicit line breaks are performed (via - // linebreak="newline" attributes on and elements). To - // perform automatic line breaking on line expressions, set - // 'automatic' to 'true' below. The line breaks will be applied via a - // penalty-based heuristic, which does well, but isn't perfect. You - // might need to use linebreak="goodbreak" or linebreak="badbreak" by - // hand in order to get better effects. It is also possible to modify - // the penalty values; contact the MathJax user's forum for details. - // - linebreaks: { - - // - // This controls the automatic breaking of expressions: - // when false, only process linebreak="newline", - // when true, line breaks are inserted automatically in long expressions. - // - automatic: false, - - // - // This controls how wide the lines of mathematics can be - // - // Use an explicit width like "30em" for a fixed width. - // Use "container" to compute the size from the containing element. - // Use "nn% container" for a portion of the container. - // Use "nn%" for a portion of the window size. - // - // The container-based widths may be slower, and may not produce the - // expected results if the layout width changes due to the removal - // of previews or inclusion of mathematics during typesetting. - // - width: "container" - }, - - // - // This allows you to define or modify the styles used to display - // various math elements created by MathJax. - // - // Example: - // styles: { - // ".MathJax .merror": { - // color: "#CC0000", - // border: "1px solid #CC0000" - // } - // } - // - styles: {}, - - // - // Configuration for tooltips - // (see also the #MathJax_Tooltip CSS in MathJax/jax/output/SVG/config.js, - // which can be overriden using the styles values above). - // - tooltip: { - delayPost: 600, // milliseconds delay before tooltip is posted after mouseover - delayClear: 600, // milliseconds delay before tooltip is cleared after mouseout - offsetX: 10, offsetY: 5 // pixels to offset tooltip from mouse position - } - }, - - //============================================================================ - // - // These parameters control the contextual menus that are available on the - // mathematics within the page (provided the showMathMenu value is true above). - // - MathMenu: { - // - // This is the hover delay for the display of submenus in the - // contextual menu. When the mouse is still over a submenu label for - // this long, the menu will appear. (The menu also will appear if you - // click on the label.) It is in milliseconds. - // - delay: 150, - - // - // This is the URL for the MathJax Help menu item. - // - helpURL: "http://www.mathjax.org/help-v2/user/", - - // - // These control whether the "Math Renderer", "MathPlayer", "Font - // Preferences", "Contextual Menu", and "Discoverable" menu items will - // be displayed or not. - // - showRenderer: true, - showMathPlayer: true, - showFontMenu: false, - showContext: false, - showDiscoverable: false, - - // - // These are the settings for the Show Source window. The initial - // width and height will be reset after the source is shown in an - // attempt to make the window fit the output better. - // - windowSettings: { - status: "no", toolbar: "no", locationbar: "no", menubar: "no", - directories: "no", personalbar: "no", resizable: "yes", scrollbars: "yes", - width: 100, height: 50 - }, - - // - // This allows you to change the CSS that controls the menu - // appearance. See the extensions/MathMenu.js file for details - // of the default settings. - // - styles: {} - - }, - - //============================================================================ - // - // These parameters control the contextual menus that are available on the - // mathematics within the page (provided the showMathMenu value is true above). - // - MathEvents: { - // - // This is the time required for the mouse to be held still over a - // typeset equation in order for it to count as a hover (used when the - // zoom trigger is "Hover"). It is in milliseconds. - // - hover: 500 - }, - - //============================================================================ - // - // These parameters control the MMLorHTML configuration file. - // NOTE: if you add MMLorHTML.js to the config array above, - // you must REMOVE the output jax from the jax array. - // - MMLorHTML: { - // - // The output jax that is to be preferred when both are possible - // (set to "MML" for native MathML, "HTML" for MathJax's HTML-CSS output jax). - // - prefer: { - MSIE: "MML", - Firefox: "HTML", - Opera: "HTML", - Safari: "HTML", - Chrome: "HTML", - other: "HTML" - } - } -}); - -MathJax.Ajax.loadComplete("[MathJax]/config/default.js"); diff --git a/modules/MathJax/extensions/FontWarnings.js b/modules/MathJax/extensions/FontWarnings.js deleted file mode 100644 index 4ae1933..0000000 --- a/modules/MathJax/extensions/FontWarnings.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/FontWarnings.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(b,d){var i="2.2";var a="http://www.stixfonts.org/";var f="https://github.com/mathjax/MathJax/tree/master/fonts/HTML-CSS/TeX/otf";var h=b.CombineConfig("FontWarnings",{messageStyle:{position:"fixed",bottom:"4em",left:"3em",width:"40em",border:"3px solid #880000","background-color":"#E0E0E0",color:"black",padding:"1em","font-size":"small","white-space":"normal","border-radius":".75em","-webkit-border-radius":".75em","-moz-border-radius":".75em","-khtml-border-radius":".75em","box-shadow":"4px 4px 10px #AAAAAA","-webkit-box-shadow":"4px 4px 10px #AAAAAA","-moz-box-shadow":"4px 4px 10px #AAAAAA","-khtml-box-shadow":"4px 4px 10px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=3, OffY=3, Color='gray', Positive='true')"},Message:{webFont:[["closeBox"],["webFont","MathJax is using web-based fonts to display the mathematics on this page. These take time to download, so the page would render faster if you installed math fonts directly in your system's font folder."],["fonts"]],imageFonts:[["closeBox"],["imageFonts","MathJax is using its image fonts rather than local or web-based fonts. This will render slower than usual, and the mathematics may not print at the full resolution of your printer."],["fonts"],["webfonts"]],noFonts:[["closeBox"],["noFonts","MathJax is unable to locate a font to use to display its mathematics, and image fonts are not available, so it is falling back on generic unicode characters in hopes that your browser will be able to display them. Some characters may not show up properly, or possibly not at all."],["fonts"],["webfonts"]]},HTML:{closeBox:[["div",{style:{position:"absolute",overflow:"hidden",top:".1em",right:".1em",border:"1px outset",width:"1em",height:"1em","text-align":"center",cursor:"pointer","background-color":"#EEEEEE",color:"#606060","border-radius":".5em","-webkit-border-radius":".5em","-moz-border-radius":".5em","-khtml-border-radius":".5em"},onclick:function(){if(c.div&&c.fade===0){if(c.timer){clearTimeout(c.timer)}c.div.style.display="none"}}},[["span",{style:{position:"relative",bottom:".2em"}},["x"]]]]],webfonts:[["p"],["webfonts","Most modern browsers allow for fonts to be downloaded over the web. Updating to a more recent version of your browser (or changing browsers) could improve the quality of the mathematics on this page."]],fonts:[["p"],["fonts","MathJax can use either the [STIX fonts](%1) or the [MathJax TeX fonts](%2). Download and install one of those fonts to improve your MathJax experience.",a,f]],STIXfonts:[["p"],["STIXPage","This page is designed to use the [STIX fonts](%1). Download and install those fonts to improve your MathJax experience.",a]],TeXfonts:[["p"],["TeXPage","This page is designed to use the [MathJax TeX fonts](%1). Download and install those fonts to improve your MathJax experience.",f]]},removeAfter:12*1000,fadeoutSteps:10,fadeoutTime:1.5*1000});if(MathJax.Hub.Browser.isIE9&&document.documentMode>=9){delete h.messageStyle.filter}var c={div:null,fade:0};var e=function(m){if(c.div){return}var j=MathJax.OutputJax["HTML-CSS"],n=document.body;if(b.Browser.isMSIE){if(h.messageStyle.position==="fixed"){MathJax.Message.Init();n=document.getElementById("MathJax_MSIE_Frame");h.messageStyle.position="absolute"}}else{delete h.messageStyle.filter}h.messageStyle.maxWidth=(document.body.clientWidth-75)+"px";var k=0;while(k0){this.HoverFadeTimer(r,r.hover.inc);return}t.parentNode.removeChild(t);if(s){s.parentNode.removeChild(s)}if(r.hover.remove){clearTimeout(r.hover.remove)}delete r.hover},HoverFadeTimer:function(r,t,s){r.hover.inc=t;if(!r.hover.timer){r.hover.timer=setTimeout(g(["HoverFade",this,r]),(s||p.fadeDelay))}},HoverMenu:function(r){if(!r){r=window.event}return b[this.jax].ContextMenu(r,this.math,true)},ClearHover:function(r){if(r.hover.remove){clearTimeout(r.hover.remove)}if(r.hover.timer){clearTimeout(r.hover.timer)}f.ClearHoverTimer();delete r.hover},Px:function(r){if(Math.abs(r)<0.006){return"0px"}return r.toFixed(2).replace(/\.?0+$/,"")+"px"},getImages:function(){var r=new Image();r.src=p.button.src}};var a=c.Touch={last:0,delay:500,start:function(s){var r=new Date().getTime();var t=(r-a.last+i +i / / ei ei E 0x . (-1) λ. id domain codomain image unexpected domainofapplication restriction {   if     otherwise / ! / max min (+) mod (×) gcd xor ¬ . . , || ¯ arg lcm = > < | d dddd D, + + , div div() grad grad() curl 2 () || × = lim lim tendsto e loglog , σ σ2 median mode () [|] [|] () () [m , | m , =;] () det || T , . Z R Q N C P e i NaN true false π γ () () ||, share ) ( ] [ } { ) ( ] [ } { \ )(}{>< top right ;color:;background-color:; 0 decimalpoint decimalpoint. decimalpoint*0.1em0.15em0.2em0.15em 0 /)(:=) ';var d;if(window.XSLTProcessor){if(!c.ParseXML){c.ParseXML=c.createParser()}c.ctopXSLT=new XSLTProcessor();c.ctopXSLT.importStylesheet(c.ParseXML(a))}else{if(MathJax.Hub.Browser.isMSIE){if(MathJax.Hub.Browser.versionAtLeast("9.0")){d=new ActiveXObject("Msxml2.FreeThreadedDOMDocument");d.loadXML(a);var b=new ActiveXObject("Msxml2.XSLTemplate");b.stylesheet=d;c.ctopXSLT={ctop:b.createProcessor(),transformToDocument:function(f){this.ctop.input=f;this.ctop.transform();return this.ctop.output}}}else{d=c.createMSParser();d.async=false;d.loadXML(a);c.ctopXSLT={ctop:d,transformToDocument:function(f){return f.documentElement.transformNode(this.ctop)}}}}else{c.ctopXSLT=null}}MathJax.Hub.Startup.signal.Post("MathML content-mathml Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/MathML/content-mathml.js"); - diff --git a/modules/MathJax/extensions/MathMenu.js b/modules/MathJax/extensions/MathMenu.js deleted file mode 100644 index 03d9b2e..0000000 --- a/modules/MathJax/extensions/MathMenu.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/MathMenu.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(c,g,k,f,b){var q="2.2";var j=MathJax.Callback.Signal("menu");MathJax.Extension.MathMenu={version:q,signal:j};var o=function(r){return MathJax.Localization._.apply(MathJax.Localization,[["MathMenu",r]].concat([].slice.call(arguments,1)))};var n=c.Browser.isPC,l=c.Browser.isMSIE,e=((document.documentMode||0)>8);var i=(n?null:"5px");var p=c.CombineConfig("MathMenu",{delay:150,closeImg:k.fileURL(b.imageDir+"/CloseX-31.png"),showRenderer:true,showMathPlayer:true,showFontMenu:false,showContext:false,showDiscoverable:false,showLocale:true,showLocaleURL:false,windowSettings:{status:"no",toolbar:"no",locationbar:"no",menubar:"no",directories:"no",personalbar:"no",resizable:"yes",scrollbars:"yes",width:400,height:300,left:Math.round((screen.width-400)/2),top:Math.round((screen.height-300)/3)},styles:{"#MathJax_About":{position:"fixed",left:"50%",width:"auto","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_Menu":{position:"absolute","background-color":"white",color:"black",width:"auto",padding:(n?"2px":"5px 0px"),border:"1px solid #CCCCCC",margin:0,cursor:"default",font:"menu","text-align":"left","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none","z-index":201,"border-radius":i,"-webkit-border-radius":i,"-moz-border-radius":i,"-khtml-border-radius":i,"box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},".MathJax_MenuItem":{padding:(n?"2px 2em":"1px 2em"),background:"transparent"},".MathJax_MenuArrow":{position:"absolute",right:".5em",color:"#666666","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuActive .MathJax_MenuArrow":{color:"white"},".MathJax_MenuCheck":{position:"absolute",left:".7em","font-family":(l?"'Arial unicode MS'":null)},".MathJax_MenuRadioCheck":{position:"absolute",left:(n?"1em":".7em")},".MathJax_MenuLabel":{padding:(n?"2px 2em 4px 1.33em":"1px 2em 3px 1.33em"),"font-style":"italic"},".MathJax_MenuRule":{"border-top":(n?"1px solid #CCCCCC":"1px solid #DDDDDD"),margin:(n?"4px 1px 0px":"4px 3px")},".MathJax_MenuDisabled":{color:"GrayText"},".MathJax_MenuActive":{"background-color":(n?"Highlight":"#606872"),color:(n?"HighlightText":"white")},".MathJax_Menu_Close":{position:"absolute",width:"31px",height:"31px",top:"-15px",left:"-15px"}}});var h,d;c.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;d=MathJax.Extension.MathEvents.Hover});var a=MathJax.Menu=MathJax.Object.Subclass({version:q,items:[],posted:false,title:null,margin:5,Init:function(r){this.items=[].slice.call(arguments,0)},With:function(r){if(r){c.Insert(this,r)}return this},Post:function(s,B){if(!s){s=window.event}var r=document.getElementById("MathJax_MenuFrame");if(!r){r=a.Background(this);delete m.lastItem;delete m.lastMenu;delete a.skipUp;j.Post(["post",a.jax])}var t=g.addElement(r,"div",{onmouseup:a.Mouseup,ondblclick:h,ondragstart:h,onselectstart:h,oncontextmenu:h,menuItem:this,className:"MathJax_Menu"});MathJax.Localization.setCSS(t);for(var v=0,u=this.items.length;vdocument.body.offsetWidth-this.margin){A=document.body.offsetWidth-t.offsetWidth-this.margin}if(a.isMobile){A=Math.max(5,A-Math.floor(t.offsetWidth/2));z-=20}a.skipUp=s.isContextMenu}else{var w="left",C=B.offsetWidth;A=(a.isMobile?30:C-2);z=0;while(B&&B!==r){A+=B.offsetLeft;z+=B.offsetTop;B=B.parentNode}if(A+t.offsetWidth>document.body.offsetWidth-this.margin&&!a.isMobile){w="right";A=Math.max(this.margin,A-C-t.offsetWidth+6)}if(!n){t.style["borderRadiusTop"+w]=0;t.style["WebkitBorderRadiusTop"+w]=0;t.style["MozBorderRadiusTop"+w]=0;t.style["KhtmlBorderRadiusTop"+w]=0}}t.style.left=A+"px";t.style.top=z+"px";if(document.selection&&document.selection.empty){document.selection.empty()}return h(s)},Remove:function(r,s){j.Post(["unpost",a.jax]);var t=document.getElementById("MathJax_MenuFrame");if(t){t.parentNode.removeChild(t);if(this.msieFixedPositionBug){detachEvent("onresize",a.Resize)}}if(a.jax.hover){delete a.jax.hover.nofade;d.UnHover(a.jax)}return h(r)},Find:function(r){return this.FindN(1,r,[].slice.call(arguments,1))},FindId:function(r){return this.FindN(0,r,[].slice.call(arguments,1))},FindN:function(v,s,u){for(var t=0,r=this.items.length;t=0&&x.parentNode.menuItem!==w[r].menuItem){w[r].menuItem.posted=false;w[r].parentNode.removeChild(w[r]);r--}if(this.Timer&&!a.isMobile){this.Timer(v,x)}}},Mouseout:function(r,s){if(!this.menu||!this.menu.posted){this.Deactivate(s)}if(this.timer){clearTimeout(this.timer);delete this.timer}},Mouseup:function(r,s){return this.Remove(r,s)},Touchstart:function(r,s){return this.TouchEvent(r,s,"Mousedown")},Touchend:function(r,s){return this.TouchEvent(r,s,"Mouseup")},TouchEvent:function(s,t,r){if(this!==m.lastItem){if(m.lastMenu){a.Event(s,m.lastMenu,"Mouseout")}a.Event(s,t,"Mouseover",true);m.lastItem=this;m.lastMenu=t}if(this.nativeTouch){return null}a.Event(s,t,r);return false},Remove:function(r,s){s=s.parentNode.menuItem;return s.Remove(r,s)},Activate:function(r){this.Deactivate(r);r.className+=" MathJax_MenuActive"},Deactivate:function(r){r.className=r.className.replace(/ MathJax_MenuActive/,"")},With:function(r){if(r){c.Insert(this,r)}return this}});a.ITEM.COMMAND=a.ITEM.Subclass({action:function(){},Init:function(r,t,s){if(!(r instanceof Array)){r=[r,r]}this.name=r;this.action=t;this.With(s)},Label:function(r,s){return[this.Name()]},Mouseup:function(r,s){if(!this.disabled){this.Remove(r,s);j.Post(["command",this]);this.action.call(this,r)}return h(r)}});a.ITEM.SUBMENU=a.ITEM.Subclass({menu:null,marker:(n&&!c.Browser.isSafari?"\u25B6":"\u25B8"),Init:function(r,t){if(!(r instanceof Array)){r=[r,r]}this.name=r;var s=1;if(!(t instanceof a.ITEM)){this.With(t),s++}this.menu=a.apply(a,[].slice.call(arguments,s))},Label:function(r,s){this.menu.posted=false;return[this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]},Timer:function(r,s){if(this.timer){clearTimeout(this.timer)}r={clientX:r.clientX,clientY:r.clientY};this.timer=setTimeout(f(["Mouseup",this,r,s]),p.delay)},Touchend:function(s,u){var t=this.menu.posted;var r=this.SUPER(arguments).Touchend.apply(this,arguments);if(t){this.Deactivate(u);delete m.lastItem;delete m.lastMenu}return r},Mouseup:function(s,u){if(!this.disabled){if(!this.menu.posted){if(this.timer){clearTimeout(this.timer);delete this.timer}this.menu.Post(s,u)}else{var t=document.getElementById("MathJax_MenuFrame").childNodes,r=t.length-1;while(r>=0){var v=t[r];v.menuItem.posted=false;v.parentNode.removeChild(v);if(v.menuItem===this.menu){break}r--}}}return h(s)}});a.ITEM.RADIO=a.ITEM.Subclass({variable:null,marker:(n?"\u25CF":"\u2713"),Init:function(s,r,t){if(!(s instanceof Array)){s=[s,s]}this.name=s;this.variable=r;this.With(t);if(this.value==null){this.value=this.name[0]}},Label:function(s,t){var r={className:"MathJax_MenuRadioCheck"};if(p.settings[this.variable]!==this.value){r={style:{display:"none"}}}return[["span",r,[this.marker]]," "+this.Name()]},Mouseup:function(u,v){if(!this.disabled){var w=v.parentNode.childNodes;for(var s=0,r=w.length;s/g,">");var u=o("EqSource","MathJax Equation Source");if(a.isMobile){r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("
");r.document.write("");r.document.close()}else{r.document.open();r.document.write(""+u+"");r.document.write("
"+v+"
");r.document.write("");r.document.close();var s=r.document.body.firstChild;setTimeout(function(){var A=(r.outerHeight-r.innerHeight)||30,z=(r.outerWidth-r.innerWidth)||30,w,B;z=Math.max(100,Math.min(Math.floor(0.5*screen.width),s.offsetWidth+z+25));A=Math.max(40,Math.min(Math.floor(0.5*screen.height),s.offsetHeight+A+25));r.resizeTo(z,A);if(t&&t.screenX!=null){w=Math.max(0,Math.min(t.screenX-Math.floor(z/2),screen.width-z-20));B=Math.max(0,Math.min(t.screenY-Math.floor(A/2),screen.height-A-20));r.moveTo(w,B)}},50)}};a.Scale=function(){var s=b["HTML-CSS"],r=b.NativeMML,v=b.SVG;var u=(s||r||v||{config:{scale:100}}).config.scale;var t=prompt(o("ScaleMath","Scale all mathematics (compared to surrounding text) by"),u+"%");if(t){if(t.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)){t=parseFloat(t);if(t){if(t!==u){if(s){s.config.scale=t}if(r){r.config.scale=t}if(v){v.config.scale=t}a.cookie.scale=t;a.saveCookie();c.Reprocess()}}else{alert(o("NonZeroScale","The scale should not be zero"))}}else{alert(o("PercentScale","The scale should be a percentage (e.g., 120%%)"))}}};a.Zoom=function(){if(!MathJax.Extension.MathZoom){k.Require("[MathJax]/extensions/MathZoom.js")}};a.Renderer=function(){var s=c.outputJax["jax/mml"];if(s[0]!==p.settings.renderer){var v=c.Browser,u,r=a.Renderer.Messages,t;switch(p.settings.renderer){case"NativeMML":if(!p.settings.warnedMML){if(v.isChrome&&v.version.substr(0,3)!=="24."){u=r.MML.WebKit}else{if(v.isSafari&&!v.versionAtLeast("5.0")){u=r.MML.WebKit}else{if(v.isMSIE){if(!v.hasMathPlayer){u=r.MML.MSIE}}else{u=r.MML[v]}}}t="warnedMML"}break;case"SVG":if(!p.settings.warnedSVG){if(v.isMSIE&&!e){u=r.SVG.MSIE}}break}if(u){u=o(u[0],u[1]);u+="\n\n";u+=o("SwitchAnyway","Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)");a.cookie.renderer=s[0].id;a.saveCookie();if(!confirm(u)){a.cookie.renderer=p.settings.renderer=g.Cookie.Get("menu").renderer;a.saveCookie();return}if(t){a.cookie.warned=p.settings.warned=true}a.cookie.renderer=p.settings.renderer;a.saveCookie()}c.Queue(["setRenderer",c,p.settings.renderer,"jax/mml"],["Rerender",c])}};a.Renderer.Messages={MML:{WebKit:["WebkitNativeMMLWarning","Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable."],MSIE:["MSIENativeMMLWarning","Internet Explorer requires the MathPlayer plugin in order to process MathML output."],Opera:["OperaNativeMMLWarning","Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly."],Safari:["SafariNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."],Firefox:["FirefoxNativeMMLWarning","Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly."]},SVG:{MSIE:["MSIESVGWarning","SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly."]}};a.Font=function(){var r=b["HTML-CSS"];if(!r){return}document.location.reload()};a.Locale=function(){MathJax.Localization.setLocale(p.settings.locale);MathJax.Hub.Queue(["Reprocess",MathJax.Hub])};a.LoadLocale=function(){var r=prompt(o("LoadURL","Load translation data from this URL:"));if(r){if(!r.match(/\.js$/)){alert(o("BadURL","The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'"))}k.Require(r,function(s){if(s!=k.STATUS.OK){alert(o("BadData","Failed to load translation data from %1",r))}})}};a.MPEvents=function(t){var s=p.settings.discoverable,r=a.MPEvents.Messages;if(!e){if(p.settings.mpMouse&&!confirm(o.apply(o,r.IE8warning))){delete a.cookie.mpContext;delete p.settings.mpContext;delete a.cookie.mpMouse;delete p.settings.mpMouse;a.saveCookie();return}p.settings.mpContext=p.settings.mpMouse;a.cookie.mpContext=a.cookie.mpMouse=p.settings.mpMouse;a.saveCookie();MathJax.Hub.Queue(["Rerender",MathJax.Hub])}else{if(!s&&t.name[1]==="Menu Events"&&p.settings.mpContext){alert(o.apply(o,r.IE9warning))}}};a.MPEvents.Messages={IE8warning:["IE8warning","This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?"],IE9warning:["IE9warning","The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead."]};c.Browser.Select({MSIE:function(r){var s=(document.compatMode==="BackCompat");var t=r.versionAtLeast("8.0")&&document.documentMode>7;a.Augment({margin:20,msieBackgroundBug:(document.documentMode<9),msieFixedPositionBug:(s||!t),msieAboutBug:s});if(e){delete p.styles["#MathJax_About"].filter;delete p.styles[".MathJax_Menu"].filter}},Firefox:function(r){a.skipMouseover=r.isMobile&&r.versionAtLeast("6.0");a.skipMousedown=r.isMobile}});a.isMobile=c.Browser.isMobile;a.noContextMenu=c.Browser.noContextMenu;a.CreateLocaleMenu=function(){if(!a.menu){return}var w=a.menu.Find("Language").menu,t=w.items;var s=[],y=MathJax.Localization.strings;for(var x in y){if(y.hasOwnProperty(x)){s.push(x)}}s=s.sort();w.items=[];for(var u=0,r=s.length;ur){x.style.height=r+"px";x.style.width=(v.zW+this.scrollSize)+"px"}if(x.offsetWidth>l){x.style.width=l+"px";x.style.height=(v.zH+this.scrollSize)+"px"}}if(this.operaPositionBug){x.style.width=Math.min(l,v.zW)+"px"}if(x.offsetWidth&&x.offsetWidth=9);h.msiePositionBug=!m;h.msieSizeBug=l.versionAtLeast("7.0")&&(!document.documentMode||n===7||n===8);h.msieZIndexBug=(n<=7);h.msieInlineBlockAlignBug=(n<=7);h.msieTrapEventBug=!window.addEventListener;if(document.compatMode==="BackCompat"){h.scrollSize=52}if(m){delete i.styles["#MathJax_Zoom"].filter}},Opera:function(l){h.operaPositionBug=true;h.operaRefreshBug=true}});h.topImg=(h.msieInlineBlockAlignBug?d.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}):d.Element("span",{style:{width:0,height:0,display:"inline-block"}}));if(h.operaPositionBug||h.msieTopBug){h.topImg.style.border="1px solid"}MathJax.Callback.Queue(["StartupHook",MathJax.Hub.Register,"Begin Styles",{}],["Styles",f,i.styles],["Post",a.Startup.signal,"MathZoom Ready"],["loadComplete",f,"[MathJax]/extensions/MathZoom.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); - diff --git a/modules/MathJax/extensions/Safe.js b/modules/MathJax/extensions/Safe.js deleted file mode 100644 index 4e4a764..0000000 --- a/modules/MathJax/extensions/Safe.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/Safe.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(d,c){var f="2.2";var a=MathJax.Hub.CombineConfig("Safe",{allow:{URLs:"safe",classes:"safe",cssIDs:"safe",styles:"safe",fontsize:"all",require:"safe"},sizeMin:0.7,sizeMax:1.44,safeProtocols:{http:true,https:true,file:true,javascript:false},safeStyles:{color:true,backgroundColor:true,border:true,cursor:true,margin:true,padding:true,textShadow:true,fontFamily:true,fontSize:true,fontStyle:true,fontWeight:true,opacity:true,outline:true},safeRequire:{action:true,amscd:true,amsmath:true,amssymbols:true,autobold:false,"autoload-all":false,bbox:true,begingroup:true,boldsymbol:true,cancel:true,color:true,enclose:true,extpfeil:true,HTML:true,mathchoice:true,mhchem:true,newcommand:true,noErrors:false,noUndefined:false,unicode:true,verb:true}});var e=a.allow;if(e.fontsize!=="all"){a.safeStyles.fontSize=false}var b=MathJax.Extension.Safe={version:f,config:a,div1:document.createElement("div"),div2:document.createElement("div"),filter:{href:"filterURL",src:"filterURL",altimg:"filterURL","class":"filterClass",style:"filterStyles",id:"filterID",fontsize:"filterFontSize",mathsize:"filterFontSize",scriptminsize:"filterFontSize",scriptsizemultiplier:"filterSizeMultiplier",scriptlevel:"filterScriptLevel"},filterURL:function(g){var h=(g.match(/^\s*([a-z]+):/i)||[null,""])[1].toLowerCase();if(e.URLs==="none"||(e.URLs!=="all"&&!a.safeProtocols[h])){g=null}return g},filterClass:function(g){if(e.classes==="none"||(e.classes!=="all"&&!g.match(/^MJX-[-a-zA-Z0-9_.]+$/))){g=null}return g},filterID:function(g){if(e.cssIDs==="none"||(e.cssIDs!=="all"&&!g.match(/^MJX-[-a-zA-Z0-9_.]+$/))){g=null}return g},filterStyles:function(j){if(e.styles==="all"){return j}if(e.styles==="none"){return null}try{var i=this.div1.style,h=this.div2.style;i.cssText=j;h.cssText="";for(var g in a.safeStyles){if(a.safeStyles.hasOwnProperty(g)){var k=this.filterStyle(g,i[g]);if(k!=null){h[g]=k}}}j=h.cssText}catch(l){j=null}return j},filterStyle:function(g,h){if(typeof h!=="string"){return null}if(h.match(/^\s*expression/)){return null}if(h.match(/javascript:/)){return null}return(a.safeStyles[g]?h:null)},filterSize:function(g){if(e.fontsize==="none"){return null}if(e.fontsize!=="all"){g=Math.min(Math.max(g,a.sizeMin),a.sizeMax)}return g},filterFontSize:function(g){return(e.fontsize==="all"?g:null)},filterSizeMultiplier:function(g){if(e.fontsize==="none"){g=null}else{if(e.fontsize!=="all"){g=Math.min(1,Math.max(0.6,g)).toString()}}return g},filterScriptLevel:function(g){if(e.fontsize==="none"){g=null}else{if(e.fontsize!=="all"){g=Math.max(0,g).toString()}}return g},filterRequire:function(g){if(e.require==="none"||(e.require!=="all"&&!a.safeRequire[g.toLowerCase()])){g=null}return g}};d.Register.StartupHook("TeX HTML Ready",function(){var g=MathJax.InputJax.TeX;g.Parse.Augment({HREF_attribute:function(j){var i=b.filterURL(this.GetArgument(j)),h=this.GetArgumentMML(j);if(i){h.With({href:i})}this.Push(h)},CLASS_attribute:function(i){var j=b.filterClass(this.GetArgument(i)),h=this.GetArgumentMML(i);if(j){if(h["class"]!=null){j=h["class"]+" "+j}h.With({"class":j})}this.Push(h)},STYLE_attribute:function(i){var j=b.filterStyles(this.GetArgument(i)),h=this.GetArgumentMML(i);if(j){if(h.style!=null){if(j.charAt(j.length-1)!==";"){j+=";"}j=h.style+" "+j}h.With({style:j})}this.Push(h)},ID_attribute:function(j){var i=b.filterID(this.GetArgument(j)),h=this.GetArgumentMML(j);if(i){h.With({id:i})}this.Push(h)}})});d.Register.StartupHook("TeX Jax Ready",function(){var i=MathJax.InputJax.TeX,h=i.Parse,g=b.filter;h.Augment({Require:function(j){var k=this.GetArgument(j).replace(/.*\//,"").replace(/[^a-z0-9_.-]/ig,"");k=b.filterRequire(k);if(k){this.Extension(null,k)}},MmlFilterAttribute:function(j,k){if(g[j]){k=b[g[j]](k)}return k},SetSize:function(j,k){k=b.filterSize(k);if(k){this.stack.env.size=k;this.Push(i.Stack.Item.style().With({styles:{mathsize:k+"em"}}))}}})});d.Register.StartupHook("TeX bbox Ready",function(){var g=MathJax.InputJax.TeX;g.Parse.Augment({BBoxStyle:function(h){return b.filterStyles(h)}})});d.Register.StartupHook("MathML Jax Ready",function(){var h=MathJax.InputJax.MathML.Parse,g=b.filter;h.Augment({filterAttribute:function(i,j){if(g[i]){j=b[g[i]](j)}return j}})});d.Startup.signal.Post("Safe Extension Ready");c.loadComplete("[MathJax]/extensions/Safe.js")})(MathJax.Hub,MathJax.Ajax); - diff --git a/modules/MathJax/extensions/TeX/AMScd.js b/modules/MathJax/extensions/TeX/AMScd.js deleted file mode 100644 index 497cd44..0000000 --- a/modules/MathJax/extensions/TeX/AMScd.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/TeX/AMScd.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension["TeX/AMScd"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.CD",{colspace:"5pt",rowspace:"5pt",harrowsize:"2.25em",varrowsize:"1.75em",hideHorizontalLabels:false})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.ElementJax.mml,e=MathJax.InputJax.TeX,d=e.Stack.Item,c=e.Definitions,a=MathJax.Extension["TeX/AMScd"].config;c.environment.CD="CD_env";c.special["@"]="CD_arrow";c.macros.minCDarrowwidth="CD_minwidth";c.macros.minCDarrowheight="CD_minheight";e.Parse.Augment({CD_env:function(f){this.Push(f);return d.array().With({arraydef:{columnalign:"center",columnspacing:a.colspace,rowspacing:a.rowspace,displaystyle:true},minw:this.stack.env.CD_minw||a.harrowsize,minh:this.stack.env.CD_minh||a.varrowsize})},CD_arrow:function(g){var l=this.string[this.i];if(!l.match(/[>":"\u2192","<":"\u2190",V:"\u2193",A:"\u2191"}[l];var p=this.GetUpTo(g+l,l),m=this.GetUpTo(g+l,l);if(l===">"||l==="<"){h=b.mo(r).With(f);if(!p){p="\\kern "+o.minw}if(p||m){var j={width:"+11mu",lspace:"6mu"};h=b.munderover(this.mmlToken(h));if(p){p=e.Parse(p,this.stack.env).mml();h.SetData(h.over,b.mpadded(p).With(j).With({voffset:".1em"}))}if(m){m=e.Parse(m,this.stack.env).mml();h.SetData(h.under,b.mpadded(m).With(j))}if(a.hideHorizontalLabels){h=b.mpadded(h).With({depth:0,height:".67em"})}}}else{h=r=this.mmlToken(b.mo(r).With(k));if(p||m){h=b.mrow();if(p){h.Append(e.Parse("\\scriptstyle\\llap{"+p+"}",this.stack.env).mml())}h.Append(r.With({texClass:b.TEXCLASS.ORD}));if(m){h.Append(e.Parse("\\scriptstyle\\rlap{"+m+"}",this.stack.env).mml())}}}}}}if(h){this.Push(h)}this.CD_cell(g)},CD_cell:function(f){this.Push(d.cell().With({isEntry:true,name:f}))},CD_minwidth:function(f){this.stack.env.CD_minw=this.GetDimen(f)},CD_minheight:function(f){this.stack.env.CD_minh=this.GetDimen(f)}})});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/AMScd.js"); - diff --git a/modules/MathJax/extensions/TeX/AMSmath.js b/modules/MathJax/extensions/TeX/AMSmath.js deleted file mode 100644 index 382a1ea..0000000 --- a/modules/MathJax/extensions/TeX/AMSmath.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/TeX/AMSmath.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension["TeX/AMSmath"]={version:"2.2",number:0,startNumber:0,labels:{},eqlabels:{},refs:[]};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.ElementJax.mml,g=MathJax.InputJax.TeX,f=MathJax.Extension["TeX/AMSmath"];var d=g.Definitions,e=g.Stack.Item,a=g.config.equationNumbers;var c=function(j){var l=[];for(var k=0,h=j.length;k0){o+="rl";m.push("0em 0em");p--}m=m.join(" ");if(h){return this.AMSarray(k,i,h,o,m)}var l=this.Array.call(this,k,null,null,o,m,".5em","D");return this.setArrayAlign(l,j)},EquationBegin:function(h,i){this.checkEqnEnv();this.stack.global.forcetag=(i&&a.autoNumber!=="none");return h},EquationStar:function(h,i){this.stack.global.tagged=true;return i},checkEqnEnv:function(){if(this.stack.global.eqnenv){g.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])}this.stack.global.eqnenv=true},MultiIntegral:function(h,l){var k=this.GetNext();if(k==="\\"){var j=this.i;k=this.GetArgument(h);this.i=j;if(k==="\\limits"){if(h==="\\idotsint"){l="\\!\\!\\mathop{\\,\\,"+l+"}"}else{l="\\!\\!\\!\\mathop{\\,\\,\\,"+l+"}"}}}this.string=l+" "+this.string.slice(this.i);this.i=0},xArrow:function(j,n,m,h){var k={width:"+"+(m+h)+"mu",lspace:m+"mu"};var o=this.GetBrackets(j),p=this.ParseArg(j);var q=b.mo(b.chars(String.fromCharCode(n))).With({stretchy:true,texClass:b.TEXCLASS.REL});var i=b.munderover(q);i.SetData(i.over,b.mpadded(p).With(k).With({voffset:".15em"}));if(o){o=g.Parse(o,this.stack.env).mml();i.SetData(i.under,b.mpadded(o).With(k).With({voffset:"-.24em"}))}this.Push(i)},GetDelimiterArg:function(h){var i=this.trimSpaces(this.GetArgument(h));if(i==""){return null}if(d.delimiter[i]==null){g.Error(["MissingOrUnrecognizedDelim","Missing or unrecognized delimiter for %1",h])}return this.convertDelimiter(i)},GetStar:function(){var h=(this.GetNext()==="*");if(h){this.i++}return h}});e.Augment({autoTag:function(){var i=this.global;if(!i.notag){f.number++;i.tagID=a.formatNumber(f.number.toString());var h=g.Parse("\\text{"+a.formatTag(i.tagID)+"}",{}).mml();i.tag=b.mtd(h.With({id:a.formatID(i.tagID)}))}},getTag:function(){var i=this.global,h=i.tag;i.tagged=true;if(i.label){f.eqlabels[i.label]=i.tagID;if(a.useLabelIds){h.id=a.formatID(i.label)}}delete i.tag;delete i.tagID;delete i.label;return h}});e.multline=e.array.Subclass({type:"multline",Init:function(i,h){this.SUPER(arguments).Init.apply(this);this.numbered=(i&&a.autoNumber!=="none");this.save={notag:h.global.notag};h.global.tagged=!i&&!h.global.forcetag},EndEntry:function(){var h=b.mtd.apply(b,this.data);if(this.data.shove){h.columnalign=this.data.shove}this.row.push(h);this.data=[]},EndRow:function(){if(this.row.length!=1){g.Error(["MultlineRowsOneCol","The rows within the %1 environment must have exactly one column","multline"])}this.table.push(this.row);this.row=[]},EndTable:function(){this.SUPER(arguments).EndTable.call(this);if(this.table.length){var j=this.table.length-1,l,k=-1;if(!this.table[0][0].columnalign){this.table[0][0].columnalign=b.ALIGN.LEFT}if(!this.table[j][0].columnalign){this.table[j][0].columnalign=b.ALIGN.RIGHT}if(!this.global.tag&&this.numbered){this.autoTag()}if(this.global.tag&&!this.global.notags){k=(this.arraydef.side==="left"?0:this.table.length-1);this.table[k]=[this.getTag()].concat(this.table[k])}for(l=0,j=this.table.length;l0){this.stack[i].Undef(e,f);i--}if(!(h instanceof Array)){h=[h]}if(this.isEqn){h.global=true}}this.stack[i].Def(e,h,f)},Push:function(e){this.stack.push(e);this.top=this.stack.length},Pop:function(){var e;if(this.top>1){e=this.stack[--this.top];if(this.isEqn){this.stack.pop()}}else{if(this.isEqn){this.Clear()}}return e},Find:function(e,g){for(var f=this.top-1;f>=0;f--){var h=this.stack[f].Find(e,g);if(h){return h}}return null},Merge:function(e){e.stack[0].MergeGlobals(this);this.stack[this.top-1].Merge(e.stack[0]);var f=[this.top,this.stack.length-this.top].concat(e.stack.slice(1));this.stack.splice.apply(this.stack,f);this.top=this.stack.length},Reset:function(){this.top=this.stack.length},Clear:function(e){this.stack=[this.stack[0].Clear()];this.top=this.stack.length}},{nsFrame:a});b.Add({macros:{begingroup:"BeginGroup",endgroup:"EndGroup",global:["Extension","newcommand"],gdef:["Extension","newcommand"]}},null,true);d.Parse.Augment({BeginGroup:function(e){d.eqnStack.Push(a())},EndGroup:function(e){if(d.eqnStack.top>1){d.eqnStack.Pop()}else{if(d.rootStack.top===1){d.Error(["ExtraEndMissingBegin","Extra %1 or missing \\begingroup",e])}else{d.eqnStack.Clear();d.rootStack.Pop()}}},csFindMacro:function(e){return(d.eqnStack.Find(e,"macros")||d.rootStack.Find(e,"macros"))},envFindName:function(e){return(d.eqnStack.Find(e,"environments")||d.rootStack.Find(e,"environments"))}});d.rootStack=c();d.eqnStack=c(true);d.prefilterHooks.Add(function(){d.rootStack.Reset();d.eqnStack.Clear(true)});d.postfilterHooks.Add(function(){d.rootStack.Merge(d.eqnStack)});MathJax.Hub.Register.StartupHook("TeX newcommand Ready",function(){b.Add({macros:{global:"Global",gdef:["Macro","\\global\\def"]}},null,true);d.Parse.Augment({setDef:function(e,f){f.isUser=true;d.eqnStack.Def(e,f,"macros",this.stack.env.isGlobal);delete this.stack.env.isGlobal},setEnv:function(e,f){f.isUser=true;d.eqnStack.Def(e,f,"environments")},Global:function(e){var f=this.i;var g=this.GetCSname(e);this.i=f;if(g!=="let"&&g!=="def"&&g!=="newcommand"){d.Error(["GlobalNotFollowedBy","%1 not followed by \\let, \\def, or \\newcommand",e])}this.stack.env.isGlobal=true}})});MathJax.Hub.Startup.signal.Post("TeX begingroup Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/begingroup.js"); - diff --git a/modules/MathJax/extensions/TeX/boldsymbol.js b/modules/MathJax/extensions/TeX/boldsymbol.js deleted file mode 100644 index 04efb42..0000000 --- a/modules/MathJax/extensions/TeX/boldsymbol.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/TeX/boldsymbol.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension["TeX/boldsymbol"]={version:"2.2"};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var a=MathJax.ElementJax.mml;var d=MathJax.InputJax.TeX;var b=d.Definitions;var c={};c[a.VARIANT.NORMAL]=a.VARIANT.BOLD;c[a.VARIANT.ITALIC]=a.VARIANT.BOLDITALIC;c[a.VARIANT.FRAKTUR]=a.VARIANT.BOLDFRAKTUR;c[a.VARIANT.SCRIPT]=a.VARIANT.BOLDSCRIPT;c[a.VARIANT.SANSSERIF]=a.VARIANT.BOLDSANSSERIF;c["-tex-caligraphic"]="-tex-caligraphic-bold";c["-tex-oldstyle"]="-tex-oldstyle-bold";b.Add({macros:{boldsymbol:"Boldsymbol"}},null,true);d.Parse.Augment({mmlToken:function(f){if(this.stack.env.boldsymbol){var e=f.Get("mathvariant");if(e==null){f.mathvariant=a.VARIANT.BOLD}else{f.mathvariant=(c[e]||e)}}return f},Boldsymbol:function(h){var e=this.stack.env.boldsymbol,f=this.stack.env.font;this.stack.env.boldsymbol=true;this.stack.env.font=null;var g=this.ParseArg(h);this.stack.env.font=f;this.stack.env.boldsymbol=e;this.Push(g)}});MathJax.Hub.Startup.signal.Post("TeX boldsymbol Ready")});MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var a=MathJax.OutputJax["HTML-CSS"];var c=a.FONTDATA.FONTS;var b=a.FONTDATA.VARIANT;if(a.fontInUse==="TeX"){c["MathJax_Caligraphic-bold"]="Caligraphic/Bold/Main.js";b["-tex-caligraphic-bold"]={fonts:["MathJax_Caligraphic-bold","MathJax_Main-bold","MathJax_Main","MathJax_Math","MathJax_Size1"],offsetA:65,variantA:"bold-italic"};b["-tex-oldstyle-bold"]={fonts:["MathJax_Caligraphic-bold","MathJax_Main-bold","MathJax_Main","MathJax_Math","MathJax_Size1"]};if(a.msieCheckGreek&&a.Font.testFont({family:"MathJax_Greek",weight:"bold",style:"italic",testString:a.msieCheckGreek})){b["bold-italic"].offsetG=913;b["bold-italic"].variantG="-Greek-Bold-Italic";b["-Greek-Bold-Italic"]={fonts:["MathJax_Greek-bold-italic"]};c["MathJax_Greek-bold-italic"]="Greek/BoldItalic/Main.js"}if(MathJax.Hub.Browser.isChrome&&!MathJax.Hub.Browser.versionAtLeast("5.0")){b["-tex-caligraphic-bold"].remap={84:[58096,"-WinChrome"]}}}else{if(a.fontInUse==="STIX"){b["-tex-caligraphic-bold"]={fonts:["STIXGeneral-bold-italic","STIXNonUnicode-bold-italic","STIXNonUnicode","STIXGeneral","STIXSizeOneSym"],offsetA:57927,noLowerCase:1};b["-tex-oldstyle-bold"]={fonts:["STIXGeneral-bold","STIXNonUnicode-bold","STIXGeneral","STIXSizeOneSym"],offsetN:57955,remap:{57956:57959,57957:57963,57958:57967,57959:57971,57960:57975,57961:57979,57962:57983,57963:57987,57964:57991}}}}});MathJax.Hub.Register.StartupHook("SVG Jax Ready",function(){var c=MathJax.OutputJax.SVG;var b=c.FONTDATA.FONTS;var a=c.FONTDATA.VARIANT;b["MathJax_Caligraphic-bold"]="Caligraphic/Bold/Main.js";a["-tex-caligraphic-bold"]={fonts:["MathJax_Caligraphic-bold","MathJax_Main-bold","MathJax_Main","MathJax_Math","MathJax_Size1"],offsetA:65,variantA:"bold-italic"};a["-tex-oldstyle-bold"]={fonts:["MathJax_Caligraphic-bold","MathJax_Main-bold","MathJax_Main","MathJax_Math","MathJax_Size1"]}});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/boldsymbol.js"); - diff --git a/modules/MathJax/extensions/TeX/cancel.js b/modules/MathJax/extensions/TeX/cancel.js deleted file mode 100644 index bbd24d6..0000000 --- a/modules/MathJax/extensions/TeX/cancel.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/TeX/cancel.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension["TeX/cancel"]={version:"2.2",ALLOWED:{arrow:1,color:1,mathcolor:1,background:1,mathbackground:1,padding:1,thickness:1}};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var c=MathJax.InputJax.TeX,a=MathJax.ElementJax.mml,b=MathJax.Extension["TeX/cancel"];b.setAttributes=function(h,e){if(e!==""){e=e.replace(/ /g,"").split(/,/);for(var g=0,d=e.length;g1){this.TEX.Error(["ModelArg2","Color values for the %1 model must be between %2 and %3","rgb",0,1])}d=Math.floor(d*255).toString(16);if(d.length<2){d="0"+d}a+=d}return a},get_RGB:function(b){b=b.replace(/^\s+/,"").replace(/\s+$/,"").split(/\s*,\s*/);var a="#";if(b.length!==3){this.TEX.Error(["ModelArg1","Color values for the %1 model require 3 numbers","RGB"])}for(var c=0;c<3;c++){if(!b[c].match(/^\d+$/)){this.TEX.Error(["InvalidNumber","Invalid number"])}var d=parseInt(b[c]);if(d>255){this.TEX.Error(["ModelArg2","Color values for the %1 model must be between %2 and %3","RGB",0,255])}d=d.toString(16);if(d.length<2){d="0"+d}a+=d}return a},get_gray:function(a){if(!a.match(/^\s*(\d+(\.\d*)?|\.\d+)\s*$/)){this.TEX.Error(["InvalidDecimalNumber","Invalid decimal number"])}var b=parseFloat(a);if(b<0||b>1){this.TEX.Error(["ModelArg2","Color values for the %1 model must be between %2 and %3","gray",0,1])}b=Math.floor(b*255).toString(16);if(b.length<2){b="0"+b}return"#"+b+b+b},get_named:function(a){if(this.colors[a]){return this.colors[a]}return a},padding:function(){var c="+"+this.config.padding;var a=this.config.padding.replace(/^.*?([a-z]*)$/,"$1");var b="+"+(2*parseFloat(c))+a;return{width:b,height:c,depth:c,lspace:this.config.padding}}};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var d=MathJax.InputJax.TeX,a=MathJax.ElementJax.mml;var c=d.Stack.Item;var b=MathJax.Extension["TeX/color"];b.TEX=d;d.Definitions.Add({macros:{color:"Color",textcolor:"TextColor",definecolor:"DefineColor",colorbox:"ColorBox",fcolorbox:"fColorBox"}},null,true);d.Parse.Augment({Color:function(h){var g=this.GetBrackets(h),e=this.GetArgument(h);e=b.getColor(g,e);var f=c.style().With({styles:{mathcolor:e}});this.stack.env.color=e;this.Push(f)},TextColor:function(h){var g=this.GetBrackets(h),f=this.GetArgument(h);f=b.getColor(g,f);var e=this.stack.env.color;this.stack.env.color=f;var i=this.ParseArg(h);if(e){this.stack.env.color}else{delete this.stack.env.color}this.Push(a.mstyle(i).With({mathcolor:f}))},DefineColor:function(g){var f=this.GetArgument(g),e=this.GetArgument(g),h=this.GetArgument(g);b.colors[f]=b.getColor(e,h)},ColorBox:function(g){var f=this.GetArgument(g),e=this.InternalMath(this.GetArgument(g));this.Push(a.mpadded.apply(a,e).With({mathbackground:b.getColor("named",f)}).With(b.padding()))},fColorBox:function(g){var h=this.GetArgument(g),f=this.GetArgument(g),e=this.InternalMath(this.GetArgument(g));this.Push(a.mpadded.apply(a,e).With({mathbackground:b.getColor("named",f),style:"border: "+b.config.border+" solid "+b.getColor("named",h)}).With(b.padding()))}});MathJax.Hub.Startup.signal.Post("TeX color Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/color.js"); - diff --git a/modules/MathJax/extensions/TeX/enclose.js b/modules/MathJax/extensions/TeX/enclose.js deleted file mode 100644 index 5e8efb2..0000000 --- a/modules/MathJax/extensions/TeX/enclose.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/TeX/enclose.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension["TeX/enclose"]={version:"2.2",ALLOWED:{arrow:1,color:1,mathcolor:1,background:1,mathbackground:1,padding:1,thickness:1}};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var c=MathJax.InputJax.TeX,a=MathJax.ElementJax.mml,b=MathJax.Extension["TeX/enclose"].ALLOWED;c.Definitions.Add({macros:{enclose:"Enclose"}},null,true);c.Parse.Augment({Enclose:function(g){var k=this.GetArgument(g),e=this.GetBrackets(g),j=this.ParseArg(g);var l={notation:k.replace(/,/g," ")};if(e){e=e.replace(/ /g,"").split(/,/);for(var h=0,d=e.length;h0){this.selection=Math.min(3,e.scriptlevel+1)}else{this.selection=(e.displaystyle?0:1)}}return this.selection},selected:function(){return this.data[this.choice()]},setTeXclass:function(e){return this.selected().setTeXclass(e)},isSpacelike:function(){return this.selected().isSpacelike()},isEmbellished:function(){return this.selected().isEmbellished()},Core:function(){return this.selected()},CoreMO:function(){return this.selected().CoreMO()},toHTML:function(e){e=this.HTMLcreateSpan(e);e.bbox=this.Core().toHTML(e).bbox;if(e.firstChild&&e.firstChild.style.marginLeft){e.style.marginLeft=e.firstChild.style.marginLeft;e.firstChild.style.marginLeft=""}return e},toSVG:function(){return this.Core().toSVG()}});MathJax.Hub.Startup.signal.Post("TeX mathchoice Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/mathchoice.js"); - diff --git a/modules/MathJax/extensions/TeX/mhchem.js b/modules/MathJax/extensions/TeX/mhchem.js deleted file mode 100644 index 7a4d2e8..0000000 --- a/modules/MathJax/extensions/TeX/mhchem.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/TeX/mhchem.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension["TeX/mhchem"]={version:"2.2"};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.InputJax.TeX;var a=MathJax.Object.Subclass({string:"",i:0,tex:"",atom:false,sup:"",sub:"",Init:function(c){this.string=c},ParseTable:{"-":"Minus","+":"Plus","(":"Open",")":"Close","[":"Open","]":"Close","<":"Less","^":"Superscript",_:"Subscript","*":"Dot",".":"Dot","=":"Equal","#":"Pound","$":"Math","\\":"Macro"," ":"Space"},Arrows:{"->":"rightarrow","<-":"leftarrow","<->":"leftrightarrow","<=>":"rightleftharpoons","<=>>":"Rightleftharpoons","<<=>":"Leftrightharpoons","^":"uparrow",v:"downarrow"},Bonds:{"-":"-","=":"=","#":"\\equiv","~":"\\tripledash","~-":"\\begin{CEstack}{}\\tripledash\\\\-\\end{CEstack}","~=":"\\raise2mu{\\begin{CEstack}{}\\tripledash\\\\-\\\\-\\end{CEstack}}","~--":"\\raise2mu{\\begin{CEstack}{}\\tripledash\\\\-\\\\-\\end{CEstack}}","-~-":"\\raise2mu{\\begin{CEstack}{}-\\\\\\tripledash\\\\-\\end{CEstack}}","...":"{\\cdot}{\\cdot}{\\cdot}","....":"{\\cdot}{\\cdot}{\\cdot}{\\cdot}","->":"\\rightarrow","<-":"\\leftarrow","??":"\\text{??}"},Parse:function(){this.tex="";this.atom=false;while(this.i"){this.i+=2;this.AddArrow("->");return}else{this.tex+="{-}"}}this.i++},ParsePlus:function(d){if(this.atom){this.sup+=d}else{this.FinishAtom();this.tex+=d}this.i++},ParseDot:function(d){this.FinishAtom();this.tex+="\\cdot ";this.i++},ParseEqual:function(d){this.FinishAtom();this.tex+="{=}";this.i++},ParsePound:function(d){this.FinishAtom();this.tex+="{\\equiv}";this.i++},ParseOpen:function(e){this.FinishAtom();var d=this.Match(/^\([v^]\)/);if(d){this.tex+="{\\"+this.Arrows[d.charAt(1)]+"}"}else{this.tex+="{"+e;this.i++}},ParseClose:function(d){this.FinishAtom();this.atom=true;this.tex+=d+"}";this.i++},ParseLess:function(e){this.FinishAtom();var d=this.Match(/^(<->?|<=>>?|<<=>)/);if(!d){this.tex+=e;this.i++}else{this.AddArrow(d)}},ParseSuperscript:function(f){f=this.string.charAt(++this.i);if(f==="{"){this.i++;var d=this.Find("}");if(d==="-."){this.sup+="{-}{\\cdot}"}else{if(d){this.sup+=a(d).Parse().replace(/^\{-\}/,"-")}}}else{if(f===" "||f===""){this.tex+="{\\"+this.Arrows["^"]+"}";this.i++}else{var e=this.Match(/^(\d+|-\.)/);if(e){this.sup+=e}}}},ParseSubscript:function(e){if(this.string.charAt(++this.i)=="{"){this.i++;this.sub+=a(this.Find("}")).Parse().replace(/^\{-\}/,"-")}else{var d=this.Match(/^\d+/);if(d){this.sub+=d}}},ParseMath:function(d){this.FinishAtom();this.i++;this.tex+=this.Find(d)},ParseMacro:function(f){this.FinishAtom();this.i++;var d=this.Match(/^([a-z]+|.)/i)||" ";if(d==="sbond"){this.tex+="{-}"}else{if(d==="dbond"){this.tex+="{=}"}else{if(d==="tbond"){this.tex+="{\\equiv}"}else{if(d==="bond"){var e=(this.Match(/^\{.*?\}/)||"");e=e.substr(1,e.length-2);this.tex+="{"+(this.Bonds[e]||"\\text{??}")+"}"}else{if(d==="{"){this.tex+="{\\{"}else{if(d==="}"){this.tex+="\\}}";this.atom=true}else{this.tex+=f+d}}}}}}},ParseSpace:function(d){this.FinishAtom();this.i++},ParseOther:function(d){this.FinishAtom();this.tex+=d;this.i++},AddArrow:function(e){var g=this.Match(/^[CT]\[/);if(g){this.i--;g=g.charAt(0)}var d=this.GetBracket(g),f=this.GetBracket(g);e=this.Arrows[e];if(d||f){if(f){e+="["+f+"]"}e+="{"+d+"}";e="\\mathrel{\\x"+e+"}"}else{e="\\long"+e+" "}this.tex+=e},FinishAtom:function(){if(this.sup||this.sub){if(this.sup&&this.sub&&!this.atom){var c=this.sup,d=this.sub;if(!c.match(/\d/)){c+="\\vphantom{0}"}if(!d.match(/\d/)){d+="\\vphantom{0}"}this.tex+="\\raise 1pt{\\scriptstyle\\begin{CEscriptstack}"+c+"\\\\"+d+"\\end{CEscriptstack}}\\kern-.125em "}else{if(!this.sup){this.sup="\\Space{0pt}{0pt}{.2em}"}this.tex+="^{"+this.sup+"}_{"+this.sub+"}"}this.sup=this.sub=""}this.atom=false},GetBracket:function(e){if(this.string.charAt(this.i)!=="["){return""}this.i++;var d=this.Find("]");if(e==="C"){d="\\ce{"+d+"}"}else{if(e==="T"){if(!d.match(/^\{.*\}$/)){d="{"+d+"}"}d="\\text"+d}}return d},Match:function(d){var c=d.exec(this.string.substr(this.i));if(c){c=c[0];this.i+=c.length}return c},Find:function(h){var d=this.string.length,e=this.i,g=0;while(this.i0){return[h,g]}else{return h}}}this.i++}b.Error(["MissingReplacementString","Missing replacement string for definition of %1",f])},MacroWithTemplate:function(d,g,h,f){if(h){var c=[];this.GetNext();if(f[0]&&!this.MatchParam(f[0])){b.Error(["MismatchUseDef","Use of %1 doesn't match its definition",d])}for(var e=0;eb.config.MAXMACROS){b.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},BeginEnv:function(f,h,c,g){if(g){var d=[];for(var e=0;e1){var n=(q.h+q.d)/2,j=h.TeX.x_height/2;p.parentNode.style.verticalAlign=h.Em(q.d+(j-n));q.h=j+n;q.d=n-j}p.bbox={h:q.h,d:q.d,w:k,lw:0,rw:k};return p}})});b.Register.StartupHook("SVG Jax Config",function(){b.Config({SVG:{styles:{".MathJax_SVG .noError":b.Insert({"vertical-align":(b.Browser.isMSIE&&a.multiLine?"-2px":"")},a.style)}}})});b.Register.StartupHook("SVG Jax Ready",function(){var g=MathJax.ElementJax.mml;var f=g.math.prototype.toSVG,h=g.merror.prototype.toSVG;g.math.Augment({toSVG:function(i,j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){i=k.data[0].toSVG(i)}else{i=f.call(this,i,j)}return i}});g.merror.Augment({toSVG:function(n){if(!this.isError||this.Parent().type!=="math"){return h.call(this,n)}n=e.addElement(n,"span",{className:"noError",isMathJax:true});if(this.multiLine){n.style.display="inline-block"}var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,j=o.length;l1){var k=n.offsetHeight/2;n.style.verticalAlign=(-k+(k/j))+"px"}return n}})});b.Register.StartupHook("NativeMML Jax Ready",function(){var h=MathJax.ElementJax.mml;var g=MathJax.Extension["TeX/noErrors"].config;var f=h.math.prototype.toNativeMML,i=h.merror.prototype.toNativeMML;h.math.Augment({toNativeMML:function(j){var k=this.data[0];if(k&&k.data[0]&&k.data[0].isError){j=k.data[0].toNativeMML(j)}else{j=f.call(this,j)}return j}});h.merror.Augment({toNativeMML:function(n){if(!this.isError){return i.call(this,n)}n=n.appendChild(document.createElement("span"));var o=this.data[0].data[0].data.join("").split(/\n/);for(var l=0,k=o.length;l1){n.style.verticalAlign="middle"}}for(var p in g.style){if(g.style.hasOwnProperty(p)){var j=p.replace(/-./g,function(m){return m.charAt(1).toUpperCase()});n.style[j]=g.style[p]}}return n}})});b.Startup.signal.Post("TeX noErrors Ready")})(MathJax.Hub,MathJax.HTML);MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); - diff --git a/modules/MathJax/extensions/TeX/noUndefined.js b/modules/MathJax/extensions/TeX/noUndefined.js deleted file mode 100644 index c3b320a..0000000 --- a/modules/MathJax/extensions/TeX/noUndefined.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/TeX/noUndefined.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension["TeX/noUndefined"]={version:"2.2",config:MathJax.Hub.CombineConfig("TeX.noUndefined",{disabled:false,attributes:{mathcolor:"red"}})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var b=MathJax.Extension["TeX/noUndefined"].config;var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX.Parse.prototype.csUndefined;MathJax.InputJax.TeX.Parse.Augment({csUndefined:function(d){if(b.disabled){return c.apply(this,arguments)}MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",d]);this.Push(a.mtext(d).With(b.attributes))}});MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); - diff --git a/modules/MathJax/extensions/TeX/unicode.js b/modules/MathJax/extensions/TeX/unicode.js deleted file mode 100644 index 825e751..0000000 --- a/modules/MathJax/extensions/TeX/unicode.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/TeX/unicode.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension["TeX/unicode"]={version:"2.2",unicode:{},config:MathJax.Hub.CombineConfig("TeX.unicode",{fonts:"STIXGeneral,'Arial Unicode MS'"})};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var c=MathJax.InputJax.TeX;var a=MathJax.ElementJax.mml;var b=MathJax.Extension["TeX/unicode"].unicode;c.Definitions.Add({macros:{unicode:"Unicode"}},null,true);c.Parse.Augment({Unicode:function(e){var i=this.GetBrackets(e),d;if(i){if(i.replace(/ /g,"").match(/^(\d+(\.\d*)?|\.\d+),(\d+(\.\d*)?|\.\d+)$/)){i=i.replace(/ /g,"").split(/,/);d=this.GetBrackets(e)}else{d=i;i=null}}var j=this.trimSpaces(this.GetArgument(e)),h=parseInt(j.match(/^x/)?"0"+j:j);if(!b[h]){b[h]=[800,200,d,h]}else{if(!d){d=b[h][2]}}if(i){b[h][0]=Math.floor(i[0]*1000);b[h][1]=Math.floor(i[1]*1000)}var f=this.stack.env.font,g={};if(d){b[h][2]=g.fontfamily=d.replace(/"/g,"'");if(f){if(f.match(/bold/)){g.fontweight="bold"}if(f.match(/italic|-mathit/)){g.fontstyle="italic"}}}else{if(f){g.mathvariant=f}}g.unicode=[].concat(b[h]);this.Push(a.mtext(a.entity("#"+j)).With(g))}});MathJax.Hub.Startup.signal.Post("TeX unicode Ready")});MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var a=MathJax.ElementJax.mml;var c=MathJax.Extension["TeX/unicode"].config.fonts;var b=a.mbase.prototype.HTMLgetVariant;a.mbase.Augment({HTMLgetVariant:function(){var d=b.call(this);if(d.unicode){delete d.unicode;delete d.FONTS}if(!this.unicode){return d}d.unicode=true;if(!d.defaultFont){d=MathJax.Hub.Insert({},d);d.defaultFont={family:c}}var e=this.unicode[2];if(e){e+=","+c}else{e=c}d.defaultFont[this.unicode[3]]=[this.unicode[0],this.unicode[1],500,0,500,{isUnknown:true,isUnicode:true,font:e}];return d}})});MathJax.Hub.Register.StartupHook("SVG Jax Ready",function(){var a=MathJax.ElementJax.mml;var c=MathJax.Extension["TeX/unicode"].config.fonts;var b=a.mbase.prototype.SVGgetVariant;a.mbase.Augment({SVGgetVariant:function(){var d=b.call(this);if(d.unicode){delete d.unicode;delete d.FONTS}if(!this.unicode){return d}d.unicode=true;if(!d.forceFamily){d=MathJax.Hub.Insert({},d)}d.defaultFamily=c;d.noRemap=true;d.h=this.unicode[0];d.d=this.unicode[1];return d}})});MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/unicode.js"); - diff --git a/modules/MathJax/extensions/TeX/verb.js b/modules/MathJax/extensions/TeX/verb.js deleted file mode 100644 index e239ae0..0000000 --- a/modules/MathJax/extensions/TeX/verb.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/TeX/verb.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension["TeX/verb"]={version:"2.2"};MathJax.Hub.Register.StartupHook("TeX Jax Ready",function(){var a=MathJax.ElementJax.mml;var c=MathJax.InputJax.TeX;var b=c.Definitions;b.Add({macros:{verb:"Verb"}},null,true);c.Parse.Augment({Verb:function(d){var g=this.GetNext();var f=++this.i;if(g==""){c.Error(["MissingArgFor","Missing argument for %1",d])}while(this.i=0;a--){if(String(c[a].className).match(/(^| )math( |$)/)){this.ConvertMath(c[a],"")}}var d=b.getElementsByTagName("div");for(a=d.length-1;a>=0;a--){if(String(d[a].className).match(/(^| )math( |$)/)){this.ConvertMath(d[a],"; mode=display")}}},ConvertMath:function(c,d){if(c.getElementsByTagName("script").length===0){var b=c.parentNode,a=this.createMathTag(d,c.innerHTML);if(c.nextSibling){b.insertBefore(a,c.nextSibling)}else{b.appendChild(a)}if(this.config.preview!=="none"){this.createPreview(c)}b.removeChild(c)}},createPreview:function(a){var b=this.config.preview;if(b==="TeX"){b=[this.filterPreview(a.innerHTML)]}if(b){b=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},b);a.parentNode.insertBefore(b,a)}},createMathTag:function(c,b){b=b.replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&");var a=document.createElement("script");a.type="math/tex"+c;MathJax.HTML.setScript(a,b);return a},filterPreview:function(a){return a}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.jsMath2jax],8);MathJax.Ajax.loadComplete("[MathJax]/extensions/jsMath2jax.js"); - diff --git a/modules/MathJax/extensions/mml2jax.js b/modules/MathJax/extensions/mml2jax.js deleted file mode 100644 index 5edac3b..0000000 --- a/modules/MathJax/extensions/mml2jax.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/mml2jax.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension.mml2jax={version:"2.2",config:{preview:"alttext"},MMLnamespace:"http://www.w3.org/1998/Math/MathML",PreProcess:function(e){if(!this.configured){this.config=MathJax.Hub.CombineConfig("mml2jax",this.config);if(this.config.Augment){MathJax.Hub.Insert(this,this.config.Augment)}this.InitBrowser();this.configured=true}if(typeof(e)==="string"){e=document.getElementById(e)}if(!e){e=document.body}this.ProcessMathArray(e.getElementsByTagName("math"));if(e.getElementsByTagNameNS){this.ProcessMathArray(e.getElementsByTagNameNS(this.MMLnamespace,"math"))}var d,b;if(typeof(document.namespaces)!=="undefined"){try{for(d=0,b=document.namespaces.length;d=0;a--){if(b[a].nodeName==="MATH"){this.ProcessMathFlattened(b[a])}else{this.ProcessMath(b[a])}}}else{for(a=b.length-1;a>=0;a--){this.ProcessMath(b[a])}}}},ProcessMath:function(e){var d=e.parentNode;var a=document.createElement("script");a.type="math/mml";d.insertBefore(a,e);if(this.AttributeBug){var b=this.OuterHTML(e);if(this.CleanupHTML){b=b.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,"");b=b.replace(/ /g," ")}MathJax.HTML.setScript(a,b);d.removeChild(e)}else{var c=MathJax.HTML.Element("span");c.appendChild(e);MathJax.HTML.setScript(a,c.innerHTML)}if(this.config.preview!=="none"){this.createPreview(e,a)}},ProcessMathFlattened:function(f){var d=f.parentNode;var b=document.createElement("script");b.type="math/mml";d.insertBefore(b,f);var c="",e,a=f;while(f&&f.nodeName!=="/MATH"){e=f;f=f.nextSibling;c+=this.NodeHTML(e);e.parentNode.removeChild(e)}if(f&&f.nodeName==="/MATH"){f.parentNode.removeChild(f)}b.text=c+"";if(this.config.preview!=="none"){this.createPreview(a,b)}},NodeHTML:function(e){var c,b,a;if(e.nodeName==="#text"){c=this.quoteHTML(e.nodeValue)}else{if(e.nodeName==="#comment"){c=""}else{c="<"+e.nodeName.toLowerCase();for(b=0,a=e.attributes.length;b";if(e.outerHTML!=null&&e.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)){for(b=0,a=e.childNodes.length;b"}}}return c},OuterHTML:function(d){if(d.nodeName.charAt(0)==="#"){return this.NodeHTML(d)}if(!this.AttributeBug){return d.outerHTML}var c=this.NodeHTML(d);for(var b=0,a=d.childNodes.length;b";return c},quoteHTML:function(a){if(a==null){a=""}return a.replace(/&/g,"&").replace(//g,">").replace(/\"/g,""")},createPreview:function(b,a){var c=this.config.preview;if(c==="none"){return}if(c==="alttext"){var d=b.getAttribute("alttext");if(d!=null){c=[this.filterPreview(d)]}else{c=null}}if(c){c=MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},c);a.parentNode.insertBefore(c,a)}},filterPreview:function(a){return a},InitBrowser:function(){var b=MathJax.HTML.Element("span",{id:"<",className:"mathjax",innerHTML:"x"});var a=b.outerHTML||"";this.AttributeBug=a!==""&&!(a.match(/id="<"/)&&a.match(/class="mathjax"/)&&a.match(/<\/math>/));this.MathTagBug=b.childNodes.length>1;this.CleanupHTML=MathJax.Hub.Browser.isMSIE}};MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax]);MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); - diff --git a/modules/MathJax/extensions/tex2jax.js b/modules/MathJax/extensions/tex2jax.js deleted file mode 100644 index bb6ccb6..0000000 --- a/modules/MathJax/extensions/tex2jax.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/extensions/tex2jax.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Extension.tex2jax={version:"2.2",config:{inlineMath:[["\\(","\\)"]],displayMath:[["$$","$$"],["\\[","\\]"]],balanceBraces:true,skipTags:["script","noscript","style","textarea","pre","code"],ignoreClass:"tex2jax_ignore",processClass:"tex2jax_process",processEscapes:false,processEnvironments:true,processRefs:true,preview:"TeX"},PreProcess:function(a){if(!this.configured){this.config=MathJax.Hub.CombineConfig("tex2jax",this.config);if(this.config.Augment){MathJax.Hub.Insert(this,this.config.Augment)}if(typeof(this.config.previewTeX)!=="undefined"&&!this.config.previewTeX){this.config.preview="none"}this.configured=true}if(typeof(a)==="string"){a=document.getElementById(a)}if(!a){a=document.body}if(this.createPatterns()){this.scanElement(a,a.nextSibling)}},createPatterns:function(){var d=[],e=[],c,a,b=this.config;this.match={};for(c=0,a=b.inlineMath.length;c0)},patternQuote:function(a){return a.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,"\\$1")},endPattern:function(a){return new RegExp(this.patternQuote(a)+"|\\\\.|[{}]","g")},sortLength:function(d,c){if(d.length!==c.length){return c.length-d.length}return(d==c?0:(d"}var j=[];var h=(this.isToken?"":k+(g?"":" "));for(var f=0,c=this.data.length;f")}}}if(this.isToken){return k+"<"+e+d+">"+j.join("")+""}if(g){return j.join("\n")}if(j.length===0||(j.length===1&&j[0]==="")){return k+"<"+e+d+" />"}return k+"<"+e+d+">\n"+j.join("\n")+"\n"+k+""},toMathMLattributes:function(){var j=[],g=this.defaults;var c=(this.attrNames||a.copyAttributeNames),l=a.skipAttributes;if(this.type==="math"&&(!this.attr||!this.attr.xmlns)){j.push('xmlns="http://www.w3.org/1998/Math/MathML"')}if(!this.attrNames){if(this.type==="mstyle"){g=a.math.prototype.defaults}for(var d in g){if(!l[d]&&g.hasOwnProperty(d)){var e=(d==="open"||d==="close");if(this[d]!=null&&(e||this[d]!==g[d])){var k=this[d];delete this[d];if(e||this.Get(d)!==k){j.push(d+'="'+this.toMathMLattribute(k)+'"')}this[d]=k}}}}for(var h=0,f=c.length;h126){f[g]="&#x"+k.toString(16).toUpperCase()+";"}else{var j={"&":"&","<":"<",">":">",'"':"""}[f[g]];if(j){f[g]=j}}}else{if(g+1\n"+g.join("\n")+"\n"+h+""}});a.munderover.Augment({toMathML:function(h){var e=this.type;if(this.data[this.under]==null){e="mover"}if(this.data[this.over]==null){e="munder"}var d=this.toMathMLattributes();delete this.data[0].inferred;var g=[];for(var f=0,c=this.data.length;f\n"+g.join("\n")+"\n"+h+""}});a.TeXAtom.Augment({toMathML:function(d){var c=this.toMathMLattributes();if(!c&&this.data[0].data.length===1){return d.substr(2)+this.data[0].toMathML(d)}return d+"\n"+this.data[0].toMathML(d+" ")+"\n"+d+""}});a.chars.Augment({toMathML:function(c){return(c||"")+this.toMathMLquote(this.toString())}});a.entity.Augment({toMathML:function(c){return(c||"")+"&"+this.data[0]+";"}});a.xml.Augment({toMathML:function(c){return(c||"")+this.toString()}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({toMathML:function(c){return this.Core().toMathML(c)}})});MathJax.Hub.Startup.signal.Post("toMathML Ready")});MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); - diff --git a/modules/MathJax/jax/element/mml/jax.js b/modules/MathJax/jax/element/mml/jax.js deleted file mode 100644 index 8e38092..0000000 --- a/modules/MathJax/jax/element/mml/jax.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/jax.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.ElementJax.mml=MathJax.ElementJax({mimeType:"jax/mml"},{id:"mml",version:"2.2",directory:MathJax.ElementJax.directory+"/mml",extensionDir:MathJax.ElementJax.extensionDir+"/mml",optableDir:MathJax.ElementJax.directory+"/mml/optable"});MathJax.ElementJax.mml.Augment({Init:function(){if(arguments.length===1&&arguments[0].type==="math"){this.root=arguments[0]}else{this.root=MathJax.ElementJax.mml.math.apply(this,arguments)}if(this.root.attr&&this.root.attr.mode){if(!this.root.display&&this.root.attr.mode==="display"){this.root.display="block";this.root.attrNames.push("display")}delete this.root.attr.mode;for(var b=0,a=this.root.attrNames.length;b0&&this.Get("scriptlevel")>0&&f>=0){return""}return this.TEXSPACELENGTH[Math.abs(f)]},TEXSPACELENGTH:["",a.LENGTH.THINMATHSPACE,a.LENGTH.MEDIUMMATHSPACE,a.LENGTH.THICKMATHSPACE],TEXSPACE:[[0,-1,2,3,0,0,0,1],[-1,-1,0,3,0,0,0,1],[2,2,0,0,2,0,0,2],[3,3,0,0,3,0,0,3],[0,0,0,0,0,0,0,0],[0,-1,2,3,0,0,0,1],[1,1,0,1,1,1,1,1],[1,-1,2,3,1,0,1,1]],autoDefault:function(d){return""},isSpacelike:function(){return false},isEmbellished:function(){return false},Core:function(){return this},CoreMO:function(){return this},hasNewline:function(){if(this.isEmbellished()){return this.CoreMO().hasNewline()}if(this.isToken||this.linebreakContainer){return false}for(var e=0,d=this.data.length;e=55296&&d.charCodeAt(0)<56320)?a.VARIANT.ITALIC:a.VARIANT.NORMAL)}return""},setTeXclass:function(e){this.getPrevClass(e);var d=this.data.join("");if(d.length>1&&d.match(/^[a-z][a-z0-9]*$/i)&&this.texClass===a.TEXCLASS.ORD){this.texClass=a.TEXCLASS.OP;this.autoOP=true}return this}});a.mn=a.mbase.Subclass({type:"mn",isToken:true,texClass:a.TEXCLASS.ORD,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT}});a.mo=a.mbase.Subclass({type:"mo",isToken:true,defaults:{mathvariant:a.INHERIT,mathsize:a.INHERIT,mathbackground:a.INHERIT,mathcolor:a.INHERIT,form:a.AUTO,fence:a.AUTO,separator:a.AUTO,lspace:a.AUTO,rspace:a.AUTO,stretchy:a.AUTO,symmetric:a.AUTO,maxsize:a.AUTO,minsize:a.AUTO,largeop:a.AUTO,movablelimits:a.AUTO,accent:a.AUTO,linebreak:a.LINEBREAK.AUTO,lineleading:a.INHERIT,linebreakstyle:a.AUTO,linebreakmultchar:a.INHERIT,indentalign:a.INHERIT,indentshift:a.INHERIT,indenttarget:a.INHERIT,indentalignfirst:a.INHERIT,indentshiftfirst:a.INHERIT,indentalignlast:a.INHERIT,indentshiftlast:a.INHERIT,texClass:a.AUTO},defaultDef:{form:a.FORM.INFIX,fence:false,separator:false,lspace:a.LENGTH.THICKMATHSPACE,rspace:a.LENGTH.THICKMATHSPACE,stretchy:false,symmetric:true,maxsize:a.SIZE.INFINITY,minsize:"0em",largeop:false,movablelimits:false,accent:false,linebreak:a.LINEBREAK.AUTO,lineleading:"1ex",linebreakstyle:"before",indentalign:a.INDENTALIGN.AUTO,indentshift:"0",indenttarget:"",indentalignfirst:a.INDENTALIGN.INDENTALIGN,indentshiftfirst:a.INDENTSHIFT.INDENTSHIFT,indentalignlast:a.INDENTALIGN.INDENTALIGN,indentshiftlast:a.INDENTSHIFT.INDENTSHIFT,texClass:a.TEXCLASS.REL},SPACE_ATTR:{lspace:1,rspace:2,form:4},useMMLspacing:7,autoDefault:function(f,l){var k=this.def;if(!k){if(f==="form"){this.useMMLspacing&=~this.SPACE_ATTR.form;return this.getForm()}var j=this.data.join("");var e=[this.Get("form"),a.FORM.INFIX,a.FORM.POSTFIX,a.FORM.PREFIX];for(var g=0,d=e.length;g=55296&&j<56320){j=(((j-55296)<<10)+(h.charCodeAt(1)-56320))+65536}for(var f=0,d=this.RANGES.length;f=0;d--){if(this.data[0]&&!this.data[d].isSpacelike()){return this.data[d]}}return null},Core:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core]},CoreMO:function(){if(!(this.isEmbellished())||typeof(this.core)==="undefined"){return this}return this.data[this.core].CoreMO()},toString:function(){if(this.inferred){return"["+this.data.join(",")+"]"}return this.SUPER(arguments).toString.call(this)},setTeXclass:function(f){for(var e=0,d=this.data.length;e0){d++}return d},adjustChild_texprimestyle:function(d){if(d==this.den){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.msqrt=a.mbase.Subclass({type:"msqrt",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD,setTeXclass:a.mbase.setSeparateTeXclasses,adjustChild_texprimestyle:function(d){return true}});a.mroot=a.mbase.Subclass({type:"mroot",linebreakContainer:true,texClass:a.TEXCLASS.ORD,adjustChild_displaystyle:function(d){if(d===1){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e===1){d+=2}return d},adjustChild_texprimestyle:function(d){if(d===0){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setSeparateTeXclasses});a.mstyle=a.mbase.Subclass({type:"mstyle",isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,inferRow:true,defaults:{scriptlevel:a.INHERIT,displaystyle:a.INHERIT,scriptsizemultiplier:Math.sqrt(1/2),scriptminsize:"8pt",mathbackground:a.INHERIT,mathcolor:a.INHERIT,infixlinebreakstyle:a.LINEBREAKSTYLE.BEFORE,decimalseparator:"."},adjustChild_scriptlevel:function(f){var e=this.scriptlevel;if(e==null){e=this.Get("scriptlevel")}else{if(String(e).match(/^ *[-+]/)){delete this.scriptlevel;var d=this.Get("scriptlevel");this.scriptlevel=e;e=d+parseInt(e)}}return e},inheritFromMe:true,noInherit:{mpadded:{width:true,height:true,depth:true,lspace:true,voffset:true},mtable:{width:true,height:true,depth:true,align:true}},setTeXclass:a.mbase.setChildTeXclass});a.merror=a.mbase.Subclass({type:"merror",inferRow:true,linebreakContainer:true,texClass:a.TEXCLASS.ORD});a.mpadded=a.mbase.Subclass({type:"mpadded",inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,width:"",height:"",depth:"",lspace:0,voffset:0},setTeXclass:a.mbase.setChildTeXclass});a.mphantom=a.mbase.Subclass({type:"mphantom",texClass:a.TEXCLASS.ORD,inferRow:true,isSpacelike:a.mbase.childrenSpacelike,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,setTeXclass:a.mbase.setChildTeXclass});a.mfenced=a.mbase.Subclass({type:"mfenced",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,open:"(",close:")",separators:","},texClass:a.TEXCLASS.OPEN,setTeXclass:function(g){this.getPrevClass(g);var e=this.getValues("open","close","separators");e.open=e.open.replace(/[ \t\n\r]/g,"");e.close=e.close.replace(/[ \t\n\r]/g,"");e.separators=e.separators.replace(/[ \t\n\r]/g,"");if(e.open!==""){this.SetData("open",a.mo(e.open).With({stretchy:true,texClass:a.TEXCLASS.OPEN}));g=this.data.open.setTeXclass(g)}if(e.separators!==""){while(e.separators.length0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(e){var d=this.Get("scriptlevel");if(e>0){d++}return d},adjustChild_texprimestyle:function(d){if(d===this.sub){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.msub=a.msubsup.Subclass({type:"msub"});a.msup=a.msubsup.Subclass({type:"msup",sub:2,sup:1});a.mmultiscripts=a.msubsup.Subclass({type:"mmultiscripts",adjustChild_texprimestyle:function(d){if(d%2===1){return true}return this.Get("texprimestyle")}});a.mprescripts=a.mbase.Subclass({type:"mprescripts"});a.none=a.mbase.Subclass({type:"none"});a.munderover=a.mbase.Subclass({type:"munderover",base:0,under:1,over:2,sub:1,sup:2,ACCENTS:["","accentunder","accent"],linebreakContainer:true,isEmbellished:a.mbase.childEmbellished,Core:a.mbase.childCore,CoreMO:a.mbase.childCoreMO,defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,accent:a.AUTO,accentunder:a.AUTO,align:a.ALIGN.CENTER,texClass:a.AUTO,subscriptshift:"",superscriptshift:""},autoDefault:function(d){if(d==="texClass"){return(this.isEmbellished()?this.CoreMO().Get(d):a.TEXCLASS.ORD)}if(d==="accent"&&this.data[this.over]){return this.data[this.over].CoreMO().Get("accent")}if(d==="accentunder"&&this.data[this.under]){return this.data[this.under].CoreMO().Get("accent")}return false},adjustChild_displaystyle:function(d){if(d>0){return false}return this.Get("displaystyle")},adjustChild_scriptlevel:function(f){var e=this.Get("scriptlevel");var d=(this.data[this.base]&&!this.Get("displaystyle")&&this.data[this.base].CoreMO().Get("movablelimits"));if(f==this.under&&(d||!this.Get("accentunder"))){e++}if(f==this.over&&(d||!this.Get("accent"))){e++}return e},adjustChild_texprimestyle:function(d){if(d===this.base&&this.data[this.over]){return true}return this.Get("texprimestyle")},setTeXclass:a.mbase.setBaseTeXclasses});a.munder=a.munderover.Subclass({type:"munder"});a.mover=a.munderover.Subclass({type:"mover",over:1,under:2,sup:1,sub:2,ACCENTS:["","accent","accentunder"]});a.mtable=a.mbase.Subclass({type:"mtable",defaults:{mathbackground:a.INHERIT,mathcolor:a.INHERIT,align:a.ALIGN.AXIS,rowalign:a.ALIGN.BASELINE,columnalign:a.ALIGN.CENTER,groupalign:"{left}",alignmentscope:true,columnwidth:a.WIDTH.AUTO,width:a.WIDTH.AUTO,rowspacing:"1ex",columnspacing:".8em",rowlines:a.LINES.NONE,columnlines:a.LINES.NONE,frame:a.LINES.NONE,framespacing:"0.4em 0.5ex",equalrows:false,equalcolumns:false,displaystyle:false,side:a.SIDE.RIGHT,minlabelspacing:"0.8em",texClass:a.TEXCLASS.ORD,useHeight:1},inheritFromMe:true,noInherit:{mover:{align:true},munder:{align:true},munderover:{align:true},mtable:{align:true,rowalign:true,columnalign:true,groupalign:true,alignmentscope:true,columnwidth:true,width:true,rowspacing:true,columnspacing:true,rowlines:true,columnlines:true,frame:true,framespacing:true,equalrows:true,equalcolumns:true,side:true,minlabelspacing:true,texClass:true,useHeight:1}},linebreakContainer:true,Append:function(){for(var e=0,d=arguments.length;e>10)+55296)+String.fromCharCode((d&1023)+56320)}});a.xml=a.mbase.Subclass({type:"xml",Init:function(){this.div=document.createElement("div");return this.SUPER(arguments).Init.apply(this,arguments)},Append:function(){for(var e=0,d=arguments.length;e":c.REL,"?":[1,1,b.CLOSE],"\\":c.ORD,"^":c.ORD11,_:c.ORD11,"|":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}],"#":c.ORD,"$":c.ORD,"\u002E":[0,3,b.PUNCT,{separator:true}],"\u02B9":c.ORD,"\u0300":c.ACCENT,"\u0301":c.ACCENT,"\u0303":c.WIDEACCENT,"\u0304":c.ACCENT,"\u0306":c.ACCENT,"\u0307":c.ACCENT,"\u0308":c.ACCENT,"\u030C":c.ACCENT,"\u0332":c.WIDEACCENT,"\u0338":c.REL4,"\u2015":[0,0,b.ORD,{stretchy:true}],"\u2017":[0,0,b.ORD,{stretchy:true}],"\u2020":c.BIN3,"\u2021":c.BIN3,"\u20D7":c.ACCENT,"\u2111":c.ORD,"\u2113":c.ORD,"\u2118":c.ORD,"\u211C":c.ORD,"\u2205":c.ORD,"\u221E":c.ORD,"\u2305":c.BIN3,"\u2306":c.BIN3,"\u2322":c.REL4,"\u2323":c.REL4,"\u2329":c.OPEN,"\u232A":c.CLOSE,"\u23AA":c.ORD,"\u23AF":[0,0,b.ORD,{stretchy:true}],"\u23B0":c.OPEN,"\u23B1":c.CLOSE,"\u2500":c.ORD,"\u25EF":c.BIN3,"\u2660":c.ORD,"\u2661":c.ORD,"\u2662":c.ORD,"\u2663":c.ORD,"\u3008":c.OPEN,"\u3009":c.CLOSE,"\uFE37":c.WIDEACCENT,"\uFE38":c.WIDEACCENT}}},{OPTYPES:c});a.mo.prototype.OPTABLE.infix["^"]=c.WIDEREL;a.mo.prototype.OPTABLE.infix._=c.WIDEREL})(MathJax.ElementJax.mml);MathJax.ElementJax.mml.loadComplete("jax.js"); - diff --git a/modules/MathJax/jax/element/mml/optable/Arrows.js b/modules/MathJax/jax/element/mml/optable/Arrows.js deleted file mode 100644 index fc8ef88..0000000 --- a/modules/MathJax/jax/element/mml/optable/Arrows.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/Arrows.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u219A":c.RELACCENT,"\u219B":c.RELACCENT,"\u219C":c.WIDEREL,"\u219D":c.WIDEREL,"\u219E":c.WIDEREL,"\u219F":c.WIDEREL,"\u21A0":c.WIDEREL,"\u21A1":c.RELSTRETCH,"\u21A2":c.WIDEREL,"\u21A3":c.WIDEREL,"\u21A4":c.WIDEREL,"\u21A5":c.RELSTRETCH,"\u21A7":c.RELSTRETCH,"\u21A8":c.RELSTRETCH,"\u21AB":c.WIDEREL,"\u21AC":c.WIDEREL,"\u21AD":c.WIDEREL,"\u21AE":c.RELACCENT,"\u21AF":c.RELSTRETCH,"\u21B0":c.RELSTRETCH,"\u21B1":c.RELSTRETCH,"\u21B2":c.RELSTRETCH,"\u21B3":c.RELSTRETCH,"\u21B4":c.RELSTRETCH,"\u21B5":c.RELSTRETCH,"\u21B6":c.RELACCENT,"\u21B7":c.RELACCENT,"\u21B8":c.REL,"\u21B9":c.WIDEREL,"\u21BA":c.REL,"\u21BB":c.REL,"\u21BE":c.RELSTRETCH,"\u21BF":c.RELSTRETCH,"\u21C2":c.RELSTRETCH,"\u21C3":c.RELSTRETCH,"\u21C4":c.WIDEREL,"\u21C5":c.RELSTRETCH,"\u21C6":c.WIDEREL,"\u21C7":c.WIDEREL,"\u21C8":c.RELSTRETCH,"\u21C9":c.WIDEREL,"\u21CA":c.RELSTRETCH,"\u21CB":c.WIDEREL,"\u21CD":c.RELACCENT,"\u21CE":c.RELACCENT,"\u21CF":c.RELACCENT,"\u21D6":c.RELSTRETCH,"\u21D7":c.RELSTRETCH,"\u21D8":c.RELSTRETCH,"\u21D9":c.RELSTRETCH,"\u21DA":c.WIDEREL,"\u21DB":c.WIDEREL,"\u21DC":c.WIDEREL,"\u21DD":c.WIDEREL,"\u21DE":c.REL,"\u21DF":c.REL,"\u21E0":c.WIDEREL,"\u21E1":c.RELSTRETCH,"\u21E2":c.WIDEREL,"\u21E3":c.RELSTRETCH,"\u21E4":c.WIDEREL,"\u21E5":c.WIDEREL,"\u21E6":c.WIDEREL,"\u21E7":c.RELSTRETCH,"\u21E8":c.WIDEREL,"\u21E9":c.RELSTRETCH,"\u21EA":c.RELSTRETCH,"\u21EB":c.RELSTRETCH,"\u21EC":c.RELSTRETCH,"\u21ED":c.RELSTRETCH,"\u21EE":c.RELSTRETCH,"\u21EF":c.RELSTRETCH,"\u21F0":c.WIDEREL,"\u21F1":c.REL,"\u21F2":c.REL,"\u21F3":c.RELSTRETCH,"\u21F4":c.RELACCENT,"\u21F5":c.RELSTRETCH,"\u21F6":c.WIDEREL,"\u21F7":c.RELACCENT,"\u21F8":c.RELACCENT,"\u21F9":c.RELACCENT,"\u21FA":c.RELACCENT,"\u21FB":c.RELACCENT,"\u21FC":c.RELACCENT,"\u21FD":c.WIDEREL,"\u21FE":c.WIDEREL,"\u21FF":c.WIDEREL}}});MathJax.Ajax.loadComplete(a.optableDir+"/Arrows.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/BasicLatin.js b/modules/MathJax/jax/element/mml/optable/BasicLatin.js deleted file mode 100644 index 077b5c1..0000000 --- a/modules/MathJax/jax/element/mml/optable/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"||":[0,0,b.BIN,{fence:true,stretchy:true,symmetric:true}],"|||":[0,0,b.ORD,{fence:true,stretchy:true,symmetric:true}]},postfix:{"!!":[1,0,b.BIN],"'":c.ACCENT,"++":[0,0,b.BIN],"--":[0,0,b.BIN],"..":[0,0,b.BIN],"...":c.ORD,"||":[0,0,b.BIN,{fence:true,stretchy:true,symmetric:true}],"|||":[0,0,b.ORD,{fence:true,stretchy:true,symmetric:true}]},infix:{"!=":c.BIN4,"&&":c.BIN4,"**":[1,1,b.BIN],"*=":c.BIN4,"+=":c.BIN4,"-=":c.BIN4,"->":c.BIN5,"//":[1,1,b.BIN],"/=":c.BIN4,":=":c.BIN4,"<=":c.BIN5,"<>":[1,1,b.BIN],"==":c.BIN4,">=":c.BIN5,"@":c.ORD11,"||":[2,2,b.BIN,{fence:true,stretchy:true,symmetric:true}],"|||":[2,2,b.ORD,{fence:true,stretchy:true,symmetric:true}]}}});MathJax.Ajax.loadComplete(a.optableDir+"/BasicLatin.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/CombDiacritMarks.js b/modules/MathJax/jax/element/mml/optable/CombDiacritMarks.js deleted file mode 100644 index de10224..0000000 --- a/modules/MathJax/jax/element/mml/optable/CombDiacritMarks.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/CombDiacritMarks.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u0311":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiacritMarks.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/CombDiactForSymbols.js b/modules/MathJax/jax/element/mml/optable/CombDiactForSymbols.js deleted file mode 100644 index e0845a1..0000000 --- a/modules/MathJax/jax/element/mml/optable/CombDiactForSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/CombDiactForSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u20DB":c.ACCENT,"\u20DC":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/CombDiactForSymbols.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/Dingbats.js b/modules/MathJax/jax/element/mml/optable/Dingbats.js deleted file mode 100644 index 6efaf21..0000000 --- a/modules/MathJax/jax/element/mml/optable/Dingbats.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/Dingbats.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2772":c.OPEN},postfix:{"\u2773":c.CLOSE}}});MathJax.Ajax.loadComplete(a.optableDir+"/Dingbats.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/GeneralPunctuation.js b/modules/MathJax/jax/element/mml/optable/GeneralPunctuation.js deleted file mode 100644 index acef1c1..0000000 --- a/modules/MathJax/jax/element/mml/optable/GeneralPunctuation.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/GeneralPunctuation.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2016":[0,0,b.ORD,{fence:true,stretchy:true}],"\u2018":[0,0,b.OPEN,{fence:true}],"\u201C":[0,0,b.OPEN,{fence:true}]},postfix:{"\u2016":[0,0,b.ORD,{fence:true,stretchy:true}],"\u2019":[0,0,b.CLOSE,{fence:true}],"\u201D":[0,0,b.CLOSE,{fence:true}]}}});MathJax.Ajax.loadComplete(a.optableDir+"/GeneralPunctuation.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/GeometricShapes.js b/modules/MathJax/jax/element/mml/optable/GeometricShapes.js deleted file mode 100644 index ebb210f..0000000 --- a/modules/MathJax/jax/element/mml/optable/GeometricShapes.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/GeometricShapes.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u25A0":c.BIN3,"\u25A1":c.BIN3,"\u25AA":c.BIN3,"\u25AB":c.BIN3,"\u25AD":c.BIN3,"\u25AE":c.BIN3,"\u25AF":c.BIN3,"\u25B0":c.BIN3,"\u25B1":c.BIN3,"\u25B2":c.BIN4,"\u25B4":c.BIN4,"\u25B6":c.BIN4,"\u25B7":c.BIN4,"\u25B8":c.BIN4,"\u25BC":c.BIN4,"\u25BE":c.BIN4,"\u25C0":c.BIN4,"\u25C1":c.BIN4,"\u25C2":c.BIN4,"\u25C4":c.BIN4,"\u25C5":c.BIN4,"\u25C6":c.BIN4,"\u25C7":c.BIN4,"\u25C8":c.BIN4,"\u25C9":c.BIN4,"\u25CC":c.BIN4,"\u25CD":c.BIN4,"\u25CE":c.BIN4,"\u25CF":c.BIN4,"\u25D6":c.BIN4,"\u25D7":c.BIN4,"\u25E6":c.BIN4}}});MathJax.Ajax.loadComplete(a.optableDir+"/GeometricShapes.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/GreekAndCoptic.js b/modules/MathJax/jax/element/mml/optable/GreekAndCoptic.js deleted file mode 100644 index 5b36ae8..0000000 --- a/modules/MathJax/jax/element/mml/optable/GreekAndCoptic.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/GreekAndCoptic.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u03F6":c.REL}}});MathJax.Ajax.loadComplete(a.optableDir+"/GreekAndCoptic.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/Latin1Supplement.js b/modules/MathJax/jax/element/mml/optable/Latin1Supplement.js deleted file mode 100644 index 4c01467..0000000 --- a/modules/MathJax/jax/element/mml/optable/Latin1Supplement.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/Latin1Supplement.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u00B0":c.ORD,"\u00B4":c.ACCENT,"\u00B8":c.ACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/Latin1Supplement.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/LetterlikeSymbols.js b/modules/MathJax/jax/element/mml/optable/LetterlikeSymbols.js deleted file mode 100644 index 8b2347c..0000000 --- a/modules/MathJax/jax/element/mml/optable/LetterlikeSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/LetterlikeSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2145":c.ORD21,"\u2146":[2,0,b.ORD]}}});MathJax.Ajax.loadComplete(a.optableDir+"/LetterlikeSymbols.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/MathOperators.js b/modules/MathJax/jax/element/mml/optable/MathOperators.js deleted file mode 100644 index ae238c2..0000000 --- a/modules/MathJax/jax/element/mml/optable/MathOperators.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/MathOperators.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2204":c.ORD21,"\u221B":c.ORD11,"\u221C":c.ORD11,"\u2221":c.ORD,"\u2222":c.ORD,"\u222C":c.INTEGRAL,"\u222D":c.INTEGRAL,"\u222F":c.INTEGRAL,"\u2230":c.INTEGRAL,"\u2231":c.INTEGRAL,"\u2232":c.INTEGRAL,"\u2233":c.INTEGRAL},infix:{"\u2201":[1,2,b.ORD],"\u2206":c.BIN3,"\u220A":c.REL,"\u220C":c.REL,"\u220D":c.REL,"\u220E":c.BIN3,"\u2214":c.BIN4,"\u221F":c.REL,"\u2224":c.REL,"\u2226":c.REL,"\u2234":c.REL,"\u2235":c.REL,"\u2236":c.REL,"\u2237":c.REL,"\u2238":c.BIN4,"\u2239":c.REL,"\u223A":c.BIN4,"\u223B":c.REL,"\u223D":c.REL,"\u223D\u0331":c.BIN3,"\u223E":c.REL,"\u223F":c.BIN3,"\u2241":c.REL,"\u2242":c.REL,"\u2242\u0338":c.REL,"\u2244":c.REL,"\u2246":c.REL,"\u2247":c.REL,"\u2249":c.REL,"\u224A":c.REL,"\u224B":c.REL,"\u224C":c.REL,"\u224E":c.REL,"\u224E\u0338":c.REL,"\u224F":c.REL,"\u224F\u0338":c.REL,"\u2251":c.REL,"\u2252":c.REL,"\u2253":c.REL,"\u2254":c.REL,"\u2255":c.REL,"\u2256":c.REL,"\u2257":c.REL,"\u2258":c.REL,"\u2259":c.REL,"\u225A":c.REL,"\u225C":c.REL,"\u225D":c.REL,"\u225E":c.REL,"\u225F":c.REL,"\u2262":c.REL,"\u2263":c.REL,"\u2266":c.REL,"\u2266\u0338":c.REL,"\u2267":c.REL,"\u2268":c.REL,"\u2269":c.REL,"\u226A\u0338":c.REL,"\u226B\u0338":c.REL,"\u226C":c.REL,"\u226D":c.REL,"\u226E":c.REL,"\u226F":c.REL,"\u2270":c.REL,"\u2271":c.REL,"\u2272":c.REL,"\u2273":c.REL,"\u2274":c.REL,"\u2275":c.REL,"\u2276":c.REL,"\u2277":c.REL,"\u2278":c.REL,"\u2279":c.REL,"\u227C":c.REL,"\u227D":c.REL,"\u227E":c.REL,"\u227F":c.REL,"\u227F\u0338":c.REL,"\u2280":c.REL,"\u2281":c.REL,"\u2282\u20D2":c.REL,"\u2283\u20D2":c.REL,"\u2284":c.REL,"\u2285":c.REL,"\u2288":c.REL,"\u2289":c.REL,"\u228A":c.REL,"\u228B":c.REL,"\u228C":c.BIN4,"\u228D":c.BIN4,"\u228F":c.REL,"\u228F\u0338":c.REL,"\u2290":c.REL,"\u2290\u0338":c.REL,"\u229A":c.BIN4,"\u229B":c.BIN4,"\u229C":c.BIN4,"\u229D":c.BIN4,"\u229E":c.BIN4,"\u229F":c.BIN4,"\u22A0":c.BIN4,"\u22A1":c.BIN4,"\u22A6":c.REL,"\u22A7":c.REL,"\u22A9":c.REL,"\u22AA":c.REL,"\u22AB":c.REL,"\u22AC":c.REL,"\u22AD":c.REL,"\u22AE":c.REL,"\u22AF":c.REL,"\u22B0":c.REL,"\u22B1":c.REL,"\u22B2":c.REL,"\u22B3":c.REL,"\u22B4":c.REL,"\u22B5":c.REL,"\u22B6":c.REL,"\u22B7":c.REL,"\u22B8":c.REL,"\u22B9":c.REL,"\u22BA":c.BIN4,"\u22BB":c.BIN4,"\u22BC":c.BIN4,"\u22BD":c.BIN4,"\u22BE":c.BIN3,"\u22BF":c.BIN3,"\u22C7":c.BIN4,"\u22C9":c.BIN4,"\u22CA":c.BIN4,"\u22CB":c.BIN4,"\u22CC":c.BIN4,"\u22CD":c.REL,"\u22CE":c.BIN4,"\u22CF":c.BIN4,"\u22D0":c.REL,"\u22D1":c.REL,"\u22D2":c.BIN4,"\u22D3":c.BIN4,"\u22D4":c.REL,"\u22D5":c.REL,"\u22D6":c.REL,"\u22D7":c.REL,"\u22D8":c.REL,"\u22D9":c.REL,"\u22DA":c.REL,"\u22DB":c.REL,"\u22DC":c.REL,"\u22DD":c.REL,"\u22DE":c.REL,"\u22DF":c.REL,"\u22E0":c.REL,"\u22E1":c.REL,"\u22E2":c.REL,"\u22E3":c.REL,"\u22E4":c.REL,"\u22E5":c.REL,"\u22E6":c.REL,"\u22E7":c.REL,"\u22E8":c.REL,"\u22E9":c.REL,"\u22EA":c.REL,"\u22EB":c.REL,"\u22EC":c.REL,"\u22ED":c.REL,"\u22F0":c.REL,"\u22F2":c.REL,"\u22F3":c.REL,"\u22F4":c.REL,"\u22F5":c.REL,"\u22F6":c.REL,"\u22F7":c.REL,"\u22F8":c.REL,"\u22F9":c.REL,"\u22FA":c.REL,"\u22FB":c.REL,"\u22FC":c.REL,"\u22FD":c.REL,"\u22FE":c.REL,"\u22FF":c.REL}}});MathJax.Ajax.loadComplete(a.optableDir+"/MathOperators.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js b/modules/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js deleted file mode 100644 index e985f42..0000000 --- a/modules/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/MiscMathSymbolsA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u27E6":c.OPEN,"\u27EA":c.OPEN,"\u27EC":c.OPEN},postfix:{"\u27E7":c.CLOSE,"\u27EB":c.CLOSE,"\u27ED":c.CLOSE}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscMathSymbolsA.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/MiscMathSymbolsB.js b/modules/MathJax/jax/element/mml/optable/MiscMathSymbolsB.js deleted file mode 100644 index 8955392..0000000 --- a/modules/MathJax/jax/element/mml/optable/MiscMathSymbolsB.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/MiscMathSymbolsB.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2980":[0,0,b.ORD,{fence:true,stretchy:true}],"\u2983":c.OPEN,"\u2985":c.OPEN,"\u2987":c.OPEN,"\u2989":c.OPEN,"\u298B":c.OPEN,"\u298D":c.OPEN,"\u298F":c.OPEN,"\u2991":c.OPEN,"\u2993":c.OPEN,"\u2995":c.OPEN,"\u2997":c.OPEN,"\u29FC":c.OPEN},postfix:{"\u2980":[0,0,b.ORD,{fence:true,stretchy:true}],"\u2984":c.CLOSE,"\u2986":c.CLOSE,"\u2988":c.CLOSE,"\u298A":c.CLOSE,"\u298C":c.CLOSE,"\u298E":c.CLOSE,"\u2990":c.CLOSE,"\u2992":c.CLOSE,"\u2994":c.CLOSE,"\u2996":c.CLOSE,"\u2998":c.CLOSE,"\u29FD":c.CLOSE},infix:{"\u2981":c.BIN3,"\u2982":c.BIN3,"\u2999":c.BIN3,"\u299A":c.BIN3,"\u299B":c.BIN3,"\u299C":c.BIN3,"\u299D":c.BIN3,"\u299E":c.BIN3,"\u299F":c.BIN3,"\u29A0":c.BIN3,"\u29A1":c.BIN3,"\u29A2":c.BIN3,"\u29A3":c.BIN3,"\u29A4":c.BIN3,"\u29A5":c.BIN3,"\u29A6":c.BIN3,"\u29A7":c.BIN3,"\u29A8":c.BIN3,"\u29A9":c.BIN3,"\u29AA":c.BIN3,"\u29AB":c.BIN3,"\u29AC":c.BIN3,"\u29AD":c.BIN3,"\u29AE":c.BIN3,"\u29AF":c.BIN3,"\u29B0":c.BIN3,"\u29B1":c.BIN3,"\u29B2":c.BIN3,"\u29B3":c.BIN3,"\u29B4":c.BIN3,"\u29B5":c.BIN3,"\u29B6":c.BIN4,"\u29B7":c.BIN4,"\u29B8":c.BIN4,"\u29B9":c.BIN4,"\u29BA":c.BIN4,"\u29BB":c.BIN4,"\u29BC":c.BIN4,"\u29BD":c.BIN4,"\u29BE":c.BIN4,"\u29BF":c.BIN4,"\u29C0":c.REL,"\u29C1":c.REL,"\u29C2":c.BIN3,"\u29C3":c.BIN3,"\u29C4":c.BIN4,"\u29C5":c.BIN4,"\u29C6":c.BIN4,"\u29C7":c.BIN4,"\u29C8":c.BIN4,"\u29C9":c.BIN3,"\u29CA":c.BIN3,"\u29CB":c.BIN3,"\u29CC":c.BIN3,"\u29CD":c.BIN3,"\u29CE":c.REL,"\u29CF":c.REL,"\u29CF\u0338":c.REL,"\u29D0":c.REL,"\u29D0\u0338":c.REL,"\u29D1":c.REL,"\u29D2":c.REL,"\u29D3":c.REL,"\u29D4":c.REL,"\u29D5":c.REL,"\u29D6":c.BIN4,"\u29D7":c.BIN4,"\u29D8":c.BIN3,"\u29D9":c.BIN3,"\u29DB":c.BIN3,"\u29DC":c.BIN3,"\u29DD":c.BIN3,"\u29DE":c.REL,"\u29DF":c.BIN3,"\u29E0":c.BIN3,"\u29E1":c.REL,"\u29E2":c.BIN4,"\u29E3":c.REL,"\u29E4":c.REL,"\u29E5":c.REL,"\u29E6":c.REL,"\u29E7":c.BIN3,"\u29E8":c.BIN3,"\u29E9":c.BIN3,"\u29EA":c.BIN3,"\u29EB":c.BIN3,"\u29EC":c.BIN3,"\u29ED":c.BIN3,"\u29EE":c.BIN3,"\u29EF":c.BIN3,"\u29F0":c.BIN3,"\u29F1":c.BIN3,"\u29F2":c.BIN3,"\u29F3":c.BIN3,"\u29F4":c.REL,"\u29F5":c.BIN4,"\u29F6":c.BIN4,"\u29F7":c.BIN4,"\u29F8":c.BIN3,"\u29F9":c.BIN3,"\u29FA":c.BIN3,"\u29FB":c.BIN3,"\u29FE":c.BIN4,"\u29FF":c.BIN4}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscMathSymbolsB.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js b/modules/MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js deleted file mode 100644 index 449aabb..0000000 --- a/modules/MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/MiscSymbolsAndArrows.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u2B45":c.RELSTRETCH,"\u2B46":c.RELSTRETCH}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscSymbolsAndArrows.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/MiscTechnical.js b/modules/MathJax/jax/element/mml/optable/MiscTechnical.js deleted file mode 100644 index 376670b..0000000 --- a/modules/MathJax/jax/element/mml/optable/MiscTechnical.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/MiscTechnical.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u23B4":c.WIDEACCENT,"\u23B5":c.WIDEACCENT,"\u23DC":c.WIDEACCENT,"\u23DD":c.WIDEACCENT,"\u23E0":c.WIDEACCENT,"\u23E1":c.WIDEACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/MiscTechnical.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/SpacingModLetters.js b/modules/MathJax/jax/element/mml/optable/SpacingModLetters.js deleted file mode 100644 index 9c9c4d3..0000000 --- a/modules/MathJax/jax/element/mml/optable/SpacingModLetters.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/SpacingModLetters.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{postfix:{"\u02CD":c.WIDEACCENT,"\u02DA":c.ACCENT,"\u02DD":c.ACCENT,"\u02F7":c.WIDEACCENT}}});MathJax.Ajax.loadComplete(a.optableDir+"/SpacingModLetters.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/SuppMathOperators.js b/modules/MathJax/jax/element/mml/optable/SuppMathOperators.js deleted file mode 100644 index dfcf7e0..0000000 --- a/modules/MathJax/jax/element/mml/optable/SuppMathOperators.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/SuppMathOperators.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{prefix:{"\u2A03":c.OP,"\u2A05":c.OP,"\u2A07":c.OP,"\u2A08":c.OP,"\u2A09":c.OP,"\u2A0A":c.OP,"\u2A0B":c.INTEGRAL2,"\u2A0C":c.INTEGRAL,"\u2A0D":c.INTEGRAL2,"\u2A0E":c.INTEGRAL2,"\u2A0F":c.INTEGRAL2,"\u2A10":c.OP,"\u2A11":c.OP,"\u2A12":c.OP,"\u2A13":c.OP,"\u2A14":c.OP,"\u2A15":c.INTEGRAL2,"\u2A16":c.INTEGRAL2,"\u2A17":c.INTEGRAL2,"\u2A18":c.INTEGRAL2,"\u2A19":c.INTEGRAL2,"\u2A1A":c.INTEGRAL2,"\u2A1B":c.INTEGRAL2,"\u2A1C":c.INTEGRAL2,"\u2AFC":c.OP,"\u2AFF":c.OP},infix:{"\u2A1D":c.BIN3,"\u2A1E":c.BIN3,"\u2A1F":c.BIN3,"\u2A20":c.BIN3,"\u2A21":c.BIN3,"\u2A22":c.BIN4,"\u2A23":c.BIN4,"\u2A24":c.BIN4,"\u2A25":c.BIN4,"\u2A26":c.BIN4,"\u2A27":c.BIN4,"\u2A28":c.BIN4,"\u2A29":c.BIN4,"\u2A2A":c.BIN4,"\u2A2B":c.BIN4,"\u2A2C":c.BIN4,"\u2A2D":c.BIN4,"\u2A2E":c.BIN4,"\u2A30":c.BIN4,"\u2A31":c.BIN4,"\u2A32":c.BIN4,"\u2A33":c.BIN4,"\u2A34":c.BIN4,"\u2A35":c.BIN4,"\u2A36":c.BIN4,"\u2A37":c.BIN4,"\u2A38":c.BIN4,"\u2A39":c.BIN4,"\u2A3A":c.BIN4,"\u2A3B":c.BIN4,"\u2A3C":c.BIN4,"\u2A3D":c.BIN4,"\u2A3E":c.BIN4,"\u2A40":c.BIN4,"\u2A41":c.BIN4,"\u2A42":c.BIN4,"\u2A43":c.BIN4,"\u2A44":c.BIN4,"\u2A45":c.BIN4,"\u2A46":c.BIN4,"\u2A47":c.BIN4,"\u2A48":c.BIN4,"\u2A49":c.BIN4,"\u2A4A":c.BIN4,"\u2A4B":c.BIN4,"\u2A4C":c.BIN4,"\u2A4D":c.BIN4,"\u2A4E":c.BIN4,"\u2A4F":c.BIN4,"\u2A50":c.BIN4,"\u2A51":c.BIN4,"\u2A52":c.BIN4,"\u2A53":c.BIN4,"\u2A54":c.BIN4,"\u2A55":c.BIN4,"\u2A56":c.BIN4,"\u2A57":c.BIN4,"\u2A58":c.BIN4,"\u2A59":c.REL,"\u2A5A":c.BIN4,"\u2A5B":c.BIN4,"\u2A5C":c.BIN4,"\u2A5D":c.BIN4,"\u2A5E":c.BIN4,"\u2A5F":c.BIN4,"\u2A60":c.BIN4,"\u2A61":c.BIN4,"\u2A62":c.BIN4,"\u2A63":c.BIN4,"\u2A64":c.BIN4,"\u2A65":c.BIN4,"\u2A66":c.REL,"\u2A67":c.REL,"\u2A68":c.REL,"\u2A69":c.REL,"\u2A6A":c.REL,"\u2A6B":c.REL,"\u2A6C":c.REL,"\u2A6D":c.REL,"\u2A6E":c.REL,"\u2A6F":c.REL,"\u2A70":c.REL,"\u2A71":c.BIN4,"\u2A72":c.BIN4,"\u2A73":c.REL,"\u2A74":c.REL,"\u2A75":c.REL,"\u2A76":c.REL,"\u2A77":c.REL,"\u2A78":c.REL,"\u2A79":c.REL,"\u2A7A":c.REL,"\u2A7B":c.REL,"\u2A7C":c.REL,"\u2A7D":c.REL,"\u2A7D\u0338":c.REL,"\u2A7E":c.REL,"\u2A7E\u0338":c.REL,"\u2A7F":c.REL,"\u2A80":c.REL,"\u2A81":c.REL,"\u2A82":c.REL,"\u2A83":c.REL,"\u2A84":c.REL,"\u2A85":c.REL,"\u2A86":c.REL,"\u2A87":c.REL,"\u2A88":c.REL,"\u2A89":c.REL,"\u2A8A":c.REL,"\u2A8B":c.REL,"\u2A8C":c.REL,"\u2A8D":c.REL,"\u2A8E":c.REL,"\u2A8F":c.REL,"\u2A90":c.REL,"\u2A91":c.REL,"\u2A92":c.REL,"\u2A93":c.REL,"\u2A94":c.REL,"\u2A95":c.REL,"\u2A96":c.REL,"\u2A97":c.REL,"\u2A98":c.REL,"\u2A99":c.REL,"\u2A9A":c.REL,"\u2A9B":c.REL,"\u2A9C":c.REL,"\u2A9D":c.REL,"\u2A9E":c.REL,"\u2A9F":c.REL,"\u2AA0":c.REL,"\u2AA1":c.REL,"\u2AA1\u0338":c.REL,"\u2AA2":c.REL,"\u2AA2\u0338":c.REL,"\u2AA3":c.REL,"\u2AA4":c.REL,"\u2AA5":c.REL,"\u2AA6":c.REL,"\u2AA7":c.REL,"\u2AA8":c.REL,"\u2AA9":c.REL,"\u2AAA":c.REL,"\u2AAB":c.REL,"\u2AAC":c.REL,"\u2AAD":c.REL,"\u2AAE":c.REL,"\u2AAF\u0338":c.REL,"\u2AB0\u0338":c.REL,"\u2AB1":c.REL,"\u2AB2":c.REL,"\u2AB3":c.REL,"\u2AB4":c.REL,"\u2AB5":c.REL,"\u2AB6":c.REL,"\u2AB7":c.REL,"\u2AB8":c.REL,"\u2AB9":c.REL,"\u2ABA":c.REL,"\u2ABB":c.REL,"\u2ABC":c.REL,"\u2ABD":c.REL,"\u2ABE":c.REL,"\u2ABF":c.REL,"\u2AC0":c.REL,"\u2AC1":c.REL,"\u2AC2":c.REL,"\u2AC3":c.REL,"\u2AC4":c.REL,"\u2AC5":c.REL,"\u2AC6":c.REL,"\u2AC7":c.REL,"\u2AC8":c.REL,"\u2AC9":c.REL,"\u2ACA":c.REL,"\u2ACB":c.REL,"\u2ACC":c.REL,"\u2ACD":c.REL,"\u2ACE":c.REL,"\u2ACF":c.REL,"\u2AD0":c.REL,"\u2AD1":c.REL,"\u2AD2":c.REL,"\u2AD3":c.REL,"\u2AD4":c.REL,"\u2AD5":c.REL,"\u2AD6":c.REL,"\u2AD7":c.REL,"\u2AD8":c.REL,"\u2AD9":c.REL,"\u2ADA":c.REL,"\u2ADB":c.REL,"\u2ADC":c.REL,"\u2ADD":c.REL,"\u2ADE":c.REL,"\u2ADF":c.REL,"\u2AE0":c.REL,"\u2AE1":c.REL,"\u2AE2":c.REL,"\u2AE3":c.REL,"\u2AE4":c.REL,"\u2AE5":c.REL,"\u2AE6":c.REL,"\u2AE7":c.REL,"\u2AE8":c.REL,"\u2AE9":c.REL,"\u2AEA":c.REL,"\u2AEB":c.REL,"\u2AEC":c.REL,"\u2AED":c.REL,"\u2AEE":c.REL,"\u2AEF":c.REL,"\u2AF0":c.REL,"\u2AF1":c.REL,"\u2AF2":c.REL,"\u2AF3":c.REL,"\u2AF4":c.BIN4,"\u2AF5":c.BIN4,"\u2AF6":c.BIN4,"\u2AF7":c.REL,"\u2AF8":c.REL,"\u2AF9":c.REL,"\u2AFA":c.REL,"\u2AFB":c.BIN4,"\u2AFD":c.BIN4,"\u2AFE":c.BIN3}}});MathJax.Ajax.loadComplete(a.optableDir+"/SuppMathOperators.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/SupplementalArrowsA.js b/modules/MathJax/jax/element/mml/optable/SupplementalArrowsA.js deleted file mode 100644 index aa15750..0000000 --- a/modules/MathJax/jax/element/mml/optable/SupplementalArrowsA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/SupplementalArrowsA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u27F0":c.RELSTRETCH,"\u27F1":c.RELSTRETCH,"\u27FB":c.WIDEREL,"\u27FD":c.WIDEREL,"\u27FE":c.WIDEREL,"\u27FF":c.WIDEREL}}});MathJax.Ajax.loadComplete(a.optableDir+"/SupplementalArrowsA.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/element/mml/optable/SupplementalArrowsB.js b/modules/MathJax/jax/element/mml/optable/SupplementalArrowsB.js deleted file mode 100644 index 3ab6429..0000000 --- a/modules/MathJax/jax/element/mml/optable/SupplementalArrowsB.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/element/mml/optable/SupplementalArrowsB.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var c=a.mo.OPTYPES;var b=a.TEXCLASS;MathJax.Hub.Insert(a.mo.prototype,{OPTABLE:{infix:{"\u2900":c.RELACCENT,"\u2901":c.RELACCENT,"\u2902":c.RELACCENT,"\u2903":c.RELACCENT,"\u2904":c.RELACCENT,"\u2905":c.RELACCENT,"\u2906":c.RELACCENT,"\u2907":c.RELACCENT,"\u2908":c.REL,"\u2909":c.REL,"\u290A":c.RELSTRETCH,"\u290B":c.RELSTRETCH,"\u290C":c.WIDEREL,"\u290D":c.WIDEREL,"\u290E":c.WIDEREL,"\u290F":c.WIDEREL,"\u2910":c.WIDEREL,"\u2911":c.RELACCENT,"\u2912":c.RELSTRETCH,"\u2913":c.RELSTRETCH,"\u2914":c.RELACCENT,"\u2915":c.RELACCENT,"\u2916":c.RELACCENT,"\u2917":c.RELACCENT,"\u2918":c.RELACCENT,"\u2919":c.RELACCENT,"\u291A":c.RELACCENT,"\u291B":c.RELACCENT,"\u291C":c.RELACCENT,"\u291D":c.RELACCENT,"\u291E":c.RELACCENT,"\u291F":c.RELACCENT,"\u2920":c.RELACCENT,"\u2921":c.RELSTRETCH,"\u2922":c.RELSTRETCH,"\u2923":c.REL,"\u2924":c.REL,"\u2925":c.REL,"\u2926":c.REL,"\u2927":c.REL,"\u2928":c.REL,"\u2929":c.REL,"\u292A":c.REL,"\u292B":c.REL,"\u292C":c.REL,"\u292D":c.REL,"\u292E":c.REL,"\u292F":c.REL,"\u2930":c.REL,"\u2931":c.REL,"\u2932":c.REL,"\u2933":c.RELACCENT,"\u2934":c.REL,"\u2935":c.REL,"\u2936":c.REL,"\u2937":c.REL,"\u2938":c.REL,"\u2939":c.REL,"\u293A":c.RELACCENT,"\u293B":c.RELACCENT,"\u293C":c.RELACCENT,"\u293D":c.RELACCENT,"\u293E":c.REL,"\u293F":c.REL,"\u2940":c.REL,"\u2941":c.REL,"\u2942":c.RELACCENT,"\u2943":c.RELACCENT,"\u2944":c.RELACCENT,"\u2945":c.RELACCENT,"\u2946":c.RELACCENT,"\u2947":c.RELACCENT,"\u2948":c.RELACCENT,"\u2949":c.REL,"\u294A":c.RELACCENT,"\u294B":c.RELACCENT,"\u294C":c.REL,"\u294D":c.REL,"\u294E":c.WIDEREL,"\u294F":c.RELSTRETCH,"\u2950":c.WIDEREL,"\u2951":c.RELSTRETCH,"\u2952":c.WIDEREL,"\u2953":c.WIDEREL,"\u2954":c.RELSTRETCH,"\u2955":c.RELSTRETCH,"\u2956":c.RELSTRETCH,"\u2957":c.RELSTRETCH,"\u2958":c.RELSTRETCH,"\u2959":c.RELSTRETCH,"\u295A":c.WIDEREL,"\u295B":c.WIDEREL,"\u295C":c.RELSTRETCH,"\u295D":c.RELSTRETCH,"\u295E":c.WIDEREL,"\u295F":c.WIDEREL,"\u2960":c.RELSTRETCH,"\u2961":c.RELSTRETCH,"\u2962":c.RELACCENT,"\u2963":c.REL,"\u2964":c.RELACCENT,"\u2965":c.REL,"\u2966":c.RELACCENT,"\u2967":c.RELACCENT,"\u2968":c.RELACCENT,"\u2969":c.RELACCENT,"\u296A":c.RELACCENT,"\u296B":c.RELACCENT,"\u296C":c.RELACCENT,"\u296D":c.RELACCENT,"\u296E":c.RELSTRETCH,"\u296F":c.RELSTRETCH,"\u2970":c.RELACCENT,"\u2971":c.RELACCENT,"\u2972":c.RELACCENT,"\u2973":c.RELACCENT,"\u2974":c.RELACCENT,"\u2975":c.RELACCENT,"\u2976":c.RELACCENT,"\u2977":c.RELACCENT,"\u2978":c.RELACCENT,"\u2979":c.RELACCENT,"\u297A":c.RELACCENT,"\u297B":c.RELACCENT,"\u297C":c.RELACCENT,"\u297D":c.RELACCENT,"\u297E":c.REL,"\u297F":c.REL}}});MathJax.Ajax.loadComplete(a.optableDir+"/SupplementalArrowsB.js")})(MathJax.ElementJax.mml); - diff --git a/modules/MathJax/jax/input/AsciiMath/config.js b/modules/MathJax/jax/input/AsciiMath/config.js deleted file mode 100644 index 820e30b..0000000 --- a/modules/MathJax/jax/input/AsciiMath/config.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/AsciiMath/config.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.InputJax.AsciiMath=MathJax.InputJax({id:"AsciiMath",version:"2.2",directory:MathJax.InputJax.directory+"/AsciiMath",extensionDir:MathJax.InputJax.extensionDir+"/AsciiMath",config:{displaystyle:true,decimalsign:"."}});MathJax.InputJax.AsciiMath.Register("math/asciimath");MathJax.InputJax.AsciiMath.loadComplete("config.js"); - diff --git a/modules/MathJax/jax/input/AsciiMath/jax.js b/modules/MathJax/jax/input/AsciiMath/jax.js deleted file mode 100644 index c4bba08..0000000 --- a/modules/MathJax/jax/input/AsciiMath/jax.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/AsciiMath/jax.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(ag){var k;var aa=MathJax.Object.Subclass({firstChild:null,lastChild:null,Init:function(){this.childNodes=[]},appendChild:function(i){if(i.parent){i.parent.removeChild(i)}if(this.lastChild){this.lastChild.nextSibling=i}if(!this.firstChild){this.firstChild=i}this.childNodes.push(i);i.parent=this;this.lastChild=i;return i},removeChild:function(ak){for(var aj=0,ai=this.childNodes.length;aj=ai-1){this.lastChild=al}this.childNodes[ak]=al;al.nextSibling=aj.nextSibling;aj.nextSibling=aj.parent=null;return aj},toString:function(){return"{"+this.childNodes.join("")+"}"}});var E=function(){k=MathJax.ElementJax.mml;var i=k.mbase.prototype.Init;k.mbase.Augment({firstChild:null,lastChild:null,nodeValue:"",nextSibling:null,Init:function(){var ai=i.apply(this,arguments)||this;ai.childNodes=ai.data;ai.nodeName=ai.type;return ai},appendChild:function(al){if(al.parent){al.parent.removeChild(al)}var aj=arguments;if(al.isa(aa)){aj=al.childNodes;al.data=al.childNodes=[];al.firstChild=al.lastChild=null}for(var ak=0,ai=aj.length;ak=ai-1){this.lastChild=al}this.SetData(ak,al);al.nextSibling=aj.nextSibling;this.nodeValue="";for(ak=0,ai=this.childNodes.length;ak=",tag:"mo",output:"\u2265",tex:"ge",ttype:d},{input:"geq",tag:"mo",output:"\u2265",tex:null,ttype:d},{input:"-<",tag:"mo",output:"\u227A",tex:"prec",ttype:d},{input:"-lt",tag:"mo",output:"\u227A",tex:null,ttype:d},{input:">-",tag:"mo",output:"\u227B",tex:"succ",ttype:d},{input:"in",tag:"mo",output:"\u2208",tex:null,ttype:d},{input:"!in",tag:"mo",output:"\u2209",tex:"notin",ttype:d},{input:"sub",tag:"mo",output:"\u2282",tex:"subset",ttype:d},{input:"sup",tag:"mo",output:"\u2283",tex:"supset",ttype:d},{input:"sube",tag:"mo",output:"\u2286",tex:"subseteq",ttype:d},{input:"supe",tag:"mo",output:"\u2287",tex:"supseteq",ttype:d},{input:"-=",tag:"mo",output:"\u2261",tex:"equiv",ttype:d},{input:"~=",tag:"mo",output:"\u2245",tex:"cong",ttype:d},{input:"~~",tag:"mo",output:"\u2248",tex:"approx",ttype:d},{input:"prop",tag:"mo",output:"\u221D",tex:"propto",ttype:d},{input:"and",tag:"mtext",output:"and",tex:null,ttype:a},{input:"or",tag:"mtext",output:"or",tex:null,ttype:a},{input:"not",tag:"mo",output:"\u00AC",tex:"neg",ttype:d},{input:"=>",tag:"mo",output:"\u21D2",tex:"implies",ttype:d},{input:"if",tag:"mo",output:"if",tex:null,ttype:a},{input:"<=>",tag:"mo",output:"\u21D4",tex:"iff",ttype:d},{input:"AA",tag:"mo",output:"\u2200",tex:"forall",ttype:d},{input:"EE",tag:"mo",output:"\u2203",tex:"exists",ttype:d},{input:"_|_",tag:"mo",output:"\u22A5",tex:"bot",ttype:d},{input:"TT",tag:"mo",output:"\u22A4",tex:"top",ttype:d},{input:"|--",tag:"mo",output:"\u22A2",tex:"vdash",ttype:d},{input:"|==",tag:"mo",output:"\u22A8",tex:"models",ttype:d},{input:"(",tag:"mo",output:"(",tex:null,ttype:b},{input:")",tag:"mo",output:")",tex:null,ttype:l},{input:"[",tag:"mo",output:"[",tex:null,ttype:b},{input:"]",tag:"mo",output:"]",tex:null,ttype:l},{input:"{",tag:"mo",output:"{",tex:null,ttype:b},{input:"}",tag:"mo",output:"}",tex:null,ttype:l},{input:"|",tag:"mo",output:"|",tex:null,ttype:r},{input:"(:",tag:"mo",output:"\u2329",tex:"langle",ttype:b},{input:":)",tag:"mo",output:"\u232A",tex:"rangle",ttype:l},{input:"<<",tag:"mo",output:"\u2329",tex:null,ttype:b},{input:">>",tag:"mo",output:"\u232A",tex:null,ttype:l},{input:"{:",tag:"mo",output:"{:",tex:null,ttype:b,invisible:true},{input:":}",tag:"mo",output:":}",tex:null,ttype:l,invisible:true},{input:"int",tag:"mo",output:"\u222B",tex:null,ttype:d},{input:"dx",tag:"mi",output:"{:d x:}",tex:null,ttype:Z},{input:"dy",tag:"mi",output:"{:d y:}",tex:null,ttype:Z},{input:"dz",tag:"mi",output:"{:d z:}",tex:null,ttype:Z},{input:"dt",tag:"mi",output:"{:d t:}",tex:null,ttype:Z},{input:"oint",tag:"mo",output:"\u222E",tex:null,ttype:d},{input:"del",tag:"mo",output:"\u2202",tex:"partial",ttype:d},{input:"grad",tag:"mo",output:"\u2207",tex:"nabla",ttype:d},{input:"+-",tag:"mo",output:"\u00B1",tex:"pm",ttype:d},{input:"O/",tag:"mo",output:"\u2205",tex:"emptyset",ttype:d},{input:"oo",tag:"mo",output:"\u221E",tex:"infty",ttype:d},{input:"aleph",tag:"mo",output:"\u2135",tex:null,ttype:d},{input:"...",tag:"mo",output:"...",tex:"ldots",ttype:d},{input:":.",tag:"mo",output:"\u2234",tex:"therefore",ttype:d},{input:"/_",tag:"mo",output:"\u2220",tex:"angle",ttype:d},{input:"\\ ",tag:"mo",output:"\u00A0",tex:null,ttype:d},{input:"quad",tag:"mo",output:"\u00A0\u00A0",tex:null,ttype:d},{input:"qquad",tag:"mo",output:"\u00A0\u00A0\u00A0\u00A0",tex:null,ttype:d},{input:"cdots",tag:"mo",output:"\u22EF",tex:null,ttype:d},{input:"vdots",tag:"mo",output:"\u22EE",tex:null,ttype:d},{input:"ddots",tag:"mo",output:"\u22F1",tex:null,ttype:d},{input:"diamond",tag:"mo",output:"\u22C4",tex:null,ttype:d},{input:"square",tag:"mo",output:"\u25A1",tex:null,ttype:d},{input:"|__",tag:"mo",output:"\u230A",tex:"lfloor",ttype:d},{input:"__|",tag:"mo",output:"\u230B",tex:"rfloor",ttype:d},{input:"|~",tag:"mo",output:"\u2308",tex:"lceiling",ttype:d},{input:"~|",tag:"mo",output:"\u2309",tex:"rceiling",ttype:d},{input:"CC",tag:"mo",output:"\u2102",tex:null,ttype:d},{input:"NN",tag:"mo",output:"\u2115",tex:null,ttype:d},{input:"QQ",tag:"mo",output:"\u211A",tex:null,ttype:d},{input:"RR",tag:"mo",output:"\u211D",tex:null,ttype:d},{input:"ZZ",tag:"mo",output:"\u2124",tex:null,ttype:d},{input:"f",tag:"mi",output:"f",tex:null,ttype:H,func:true},{input:"g",tag:"mi",output:"g",tex:null,ttype:H,func:true},{input:"lim",tag:"mo",output:"lim",tex:null,ttype:P},{input:"Lim",tag:"mo",output:"Lim",tex:null,ttype:P},{input:"sin",tag:"mo",output:"sin",tex:null,ttype:H,func:true},{input:"cos",tag:"mo",output:"cos",tex:null,ttype:H,func:true},{input:"tan",tag:"mo",output:"tan",tex:null,ttype:H,func:true},{input:"sinh",tag:"mo",output:"sinh",tex:null,ttype:H,func:true},{input:"cosh",tag:"mo",output:"cosh",tex:null,ttype:H,func:true},{input:"tanh",tag:"mo",output:"tanh",tex:null,ttype:H,func:true},{input:"cot",tag:"mo",output:"cot",tex:null,ttype:H,func:true},{input:"sec",tag:"mo",output:"sec",tex:null,ttype:H,func:true},{input:"csc",tag:"mo",output:"csc",tex:null,ttype:H,func:true},{input:"log",tag:"mo",output:"log",tex:null,ttype:H,func:true},{input:"ln",tag:"mo",output:"ln",tex:null,ttype:H,func:true},{input:"det",tag:"mo",output:"det",tex:null,ttype:H,func:true},{input:"dim",tag:"mo",output:"dim",tex:null,ttype:d},{input:"mod",tag:"mo",output:"mod",tex:null,ttype:d},{input:"gcd",tag:"mo",output:"gcd",tex:null,ttype:H,func:true},{input:"lcm",tag:"mo",output:"lcm",tex:null,ttype:H,func:true},{input:"lub",tag:"mo",output:"lub",tex:null,ttype:d},{input:"glb",tag:"mo",output:"glb",tex:null,ttype:d},{input:"min",tag:"mo",output:"min",tex:null,ttype:P},{input:"max",tag:"mo",output:"max",tex:null,ttype:P},{input:"uarr",tag:"mo",output:"\u2191",tex:"uparrow",ttype:d},{input:"darr",tag:"mo",output:"\u2193",tex:"downarrow",ttype:d},{input:"rarr",tag:"mo",output:"\u2192",tex:"rightarrow",ttype:d},{input:"->",tag:"mo",output:"\u2192",tex:"to",ttype:d},{input:"|->",tag:"mo",output:"\u21A6",tex:"mapsto",ttype:d},{input:"larr",tag:"mo",output:"\u2190",tex:"leftarrow",ttype:d},{input:"harr",tag:"mo",output:"\u2194",tex:"leftrightarrow",ttype:d},{input:"rArr",tag:"mo",output:"\u21D2",tex:"Rightarrow",ttype:d},{input:"lArr",tag:"mo",output:"\u21D0",tex:"Leftarrow",ttype:d},{input:"hArr",tag:"mo",output:"\u21D4",tex:"Leftrightarrow",ttype:d},j,af,A,Q,o,s,h,{input:"hat",tag:"mover",output:"\u005E",tex:null,ttype:H,acc:true},{input:"bar",tag:"mover",output:"\u00AF",tex:"overline",ttype:H,acc:true},{input:"vec",tag:"mover",output:"\u2192",tex:null,ttype:H,acc:true},{input:"dot",tag:"mover",output:".",tex:null,ttype:H,acc:true},{input:"ddot",tag:"mover",output:"..",tex:null,ttype:H,acc:true},{input:"ul",tag:"munder",output:"\u0332",tex:"underline",ttype:H,acc:true},ah,x,p,{input:"bb",tag:"mstyle",atname:"fontweight",atval:"bold",output:"bb",tex:null,ttype:H},{input:"mathbf",tag:"mstyle",atname:"fontweight",atval:"bold",output:"mathbf",tex:null,ttype:H},{input:"sf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"sf",tex:null,ttype:H},{input:"mathsf",tag:"mstyle",atname:"fontfamily",atval:"sans-serif",output:"mathsf",tex:null,ttype:H},{input:"bbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"bbb",tex:null,ttype:H,codes:D},{input:"mathbb",tag:"mstyle",atname:"mathvariant",atval:"double-struck",output:"mathbb",tex:null,ttype:H,codes:D},{input:"cc",tag:"mstyle",atname:"mathvariant",atval:"script",output:"cc",tex:null,ttype:H,codes:J},{input:"mathcal",tag:"mstyle",atname:"mathvariant",atval:"script",output:"mathcal",tex:null,ttype:H,codes:J},{input:"tt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"tt",tex:null,ttype:H},{input:"mathtt",tag:"mstyle",atname:"fontfamily",atval:"monospace",output:"mathtt",tex:null,ttype:H},{input:"fr",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"fr",tex:null,ttype:H,codes:N},{input:"mathfrak",tag:"mstyle",atname:"mathvariant",atval:"fraktur",output:"mathfrak",tex:null,ttype:H,codes:N}];function W(ai,i){if(ai.input>i.input){return 1}else{return -1}}var U=[];function v(){var aj=[],ai;for(ai=0;ai>1;if(aj[ai]=U[ai]}y=F;if(am!=""){F=G[al].ttype;return G[al]}F=d;ai=1;ar=ao.slice(0,1);var ap=true;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}if(ar==f){ar=ao.slice(ai,ai+1);if("0"<=ar&&ar<="9"){ap=false;ai++;while("0"<=ar&&ar<="9"&&ai<=ao.length){ar=ao.slice(ai,ai+1);ai++}}}if((ap&&ai>1)||ai>2){ar=ao.slice(0,ai-1);aq="mn"}else{ai=2;ar=ao.slice(0,1);aq=(("A">ar||ar>"Z")&&("a">ar||ar>"z")?"mo":"mi")}if(ar=="-"&&y==m){F=m;return{input:ar,tag:aq,output:ar,ttype:H,func:true}}return{input:ar,tag:aq,output:ar,ttype:d}}function T(ai){var i;if(ai.nodeName=="mrow"){i=ai.firstChild.firstChild.nodeValue;if(i=="("||i=="["||i=="{"){ai.removeChild(ai.firstChild)}}if(ai.nodeName=="mrow"){i=ai.lastChild.firstChild.nodeValue;if(i==")"||i=="]"||i=="}"){ai.removeChild(ai.lastChild)}}}var K,y,F;function L(ao){var ak,aj,ar,am,aq,an=g.createDocumentFragment();ao=u(ao,0);ak=n(ao);if(ak==null||ak.ttype==l&&K>0){return[null,ao]}if(ak.ttype==Z){ao=ak.output+u(ao,ak.input.length);ak=n(ao)}switch(ak.ttype){case P:case d:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao];case b:K++;ao=u(ao,ak.input.length);ar=w(ao,true);K--;if(typeof ak.invisible=="boolean"&&ak.invisible){aj=M("mrow",ar[0])}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0])}return[aj,ar[1]];case ab:if(ak!=p){ao=u(ao,ak.input.length)}if(ao.charAt(0)=="{"){am=ao.indexOf("}")}else{if(ao.charAt(0)=="("){am=ao.indexOf(")")}else{if(ao.charAt(0)=="["){am=ao.indexOf("]")}else{if(ak==p){am=ao.slice(1).indexOf('"')+1}else{am=0}}}}if(am==-1){am=ao.length}aq=ao.slice(1,am);if(aq.charAt(0)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}an.appendChild(M(ak.tag,g.createTextNode(aq)));if(aq.charAt(aq.length-1)==" "){aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj)}ao=u(ao,am+1);return[M("mrow",an),ao];case H:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M(ak.tag,g.createTextNode(ak.output)),ao]}if(typeof ak.func=="boolean"&&ak.func){aq=ao.charAt(0);if(aq=="^"||aq=="_"||aq=="/"||aq=="|"||aq==","){return[M(ak.tag,g.createTextNode(ak.output)),ao]}else{aj=M("mrow",M(ak.tag,g.createTextNode(ak.output)));aj.appendChild(ar[0]);return[aj,ar[1]]}}T(ar[0]);if(ak.input=="sqrt"){return[M(ak.tag,ar[0]),ar[1]]}else{if(typeof ak.acc=="boolean"&&ak.acc){aj=M(ak.tag,ar[0]);aj.appendChild(M("mo",g.createTextNode(ak.output)));return[aj,ar[1]]}else{if(!q&&typeof ak.codes!="undefined"){for(am=0;am64&&aq.charCodeAt(al)<91){ap=ap+String.fromCharCode(ak.codes[aq.charCodeAt(al)-65])}else{ap=ap+aq.charAt(al)}}if(ar[0].nodeName=="mi"){ar[0]=R("mo").appendChild(g.createTextNode(ap))}else{ar[0].replaceChild(R("mo").appendChild(g.createTextNode(ap)),ar[0].childNodes[am])}}}}aj=M(ak.tag,ar[0]);aj.setAttribute(ak.atname,ak.atval);return[aj,ar[1]]}}case X:ao=u(ao,ak.input.length);ar=L(ao);if(ar[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ar[0]);var ai=L(ar[1]);if(ai[0]==null){return[M("mo",g.createTextNode(ak.input)),ao]}T(ai[0]);if(ak.input=="root"||ak.input=="stackrel"){an.appendChild(ai[0])}an.appendChild(ar[0]);if(ak.input=="frac"){an.appendChild(ai[0])}return[M(ak.tag,an),ai[1]];case m:ao=u(ao,ak.input.length);return[M("mo",g.createTextNode(ak.output)),ao];case a:ao=u(ao,ak.input.length);aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);an.appendChild(M(ak.tag,g.createTextNode(ak.output)));aj=R("mspace");aj.setAttribute("width","1ex");an.appendChild(aj);return[M("mrow",an),ao];case r:K++;ao=u(ao,ak.input.length);ar=w(ao,false);K--;aq="";if(ar[0].lastChild!=null){aq=ar[0].lastChild.firstChild.nodeValue}if(aq=="|"){aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);aj.appendChild(ar[0]);return[aj,ar[1]]}else{aj=M("mo",g.createTextNode(ak.output));aj=M("mrow",aj);return[aj,ao]}default:ao=u(ao,ak.input.length);return[M(ak.tag,g.createTextNode(ak.output)),ao]}}function z(an){var al,ao,am,ak,i,aj;an=u(an,0);ao=n(an);i=L(an);ak=i[0];an=i[1];al=n(an);if(al.ttype==m&&al.input!="/"){an=u(an,al.input.length);i=L(an);if(i[0]==null){i[0]=M("mo",g.createTextNode("\u25A1"))}else{T(i[0])}an=i[1];if(al.input=="_"){am=n(an);aj=(ao.ttype==P);if(am.input=="^"){an=u(an,am.input.length);var ai=L(an);T(ai[0]);an=ai[1];ak=M((aj?"munderover":"msubsup"),ak);ak.appendChild(i[0]);ak.appendChild(ai[0]);ak=M("mrow",ak)}else{ak=M((aj?"munder":"msub"),ak);ak.appendChild(i[0])}}else{ak=M(al.tag,ak);ak.appendChild(i[0])}}return[ak,an]}function w(aq,ap){var av,ar,am,ay,an=g.createDocumentFragment();do{aq=u(aq,0);am=z(aq);ar=am[0];aq=am[1];av=n(aq);if(av.ttype==m&&av.input=="/"){aq=u(aq,av.input.length);am=z(aq);if(am[0]==null){am[0]=M("mo",g.createTextNode("\u25A1"))}else{T(am[0])}aq=am[1];T(ar);ar=M(av.tag,ar);ar.appendChild(am[0]);an.appendChild(ar);av=n(aq)}else{if(ar!=undefined){an.appendChild(ar)}}}while((av.ttype!=l&&(av.ttype!=r||ap)||K==0)&&av!=null&&av.output!="");if(av.ttype==l||av.ttype==r){var az=an.childNodes.length;if(az>0&&an.childNodes[az-1].nodeName=="mrow"&&az>1&&an.childNodes[az-2].nodeName=="mo"&&an.childNodes[az-2].firstChild.nodeValue==","){var aB=an.childNodes[az-1].lastChild.firstChild.nodeValue;if(aB==")"||aB=="]"){var aj=an.childNodes[az-1].firstChild.firstChild.nodeValue;if(aj=="("&&aB==")"&&av.output!="}"||aj=="["&&aB=="]"){var ak=[];var aw=true;var at=an.childNodes.length;for(ay=0;aw&&ay1){aw=ak[ay].length==ak[ay-2].length}}if(aw){var al,ai,ao,au,aA=g.createDocumentFragment();for(ay=0;ay2){an.removeChild(an.firstChild);an.removeChild(an.firstChild)}aA.appendChild(M("mtr",al))}ar=M("mtable",aA);if(typeof av.invisible=="boolean"&&av.invisible){ar.setAttribute("columnalign","left")}an.replaceChild(ar,an.firstChild)}}}}aq=u(aq,av.input.length);if(typeof av.invisible!="boolean"||!av.invisible){ar=M("mo",g.createTextNode(av.output));an.appendChild(ar)}}return[an,aq]}function e(aj){var ai=R("mstyle");if(I!=""){ai.setAttribute("mathcolor",I)}if(t){ai.setAttribute("displaystyle","true")}if(ad!=""){ai.setAttribute("fontfamily",ad)}K=0;ai.appendChild(w(aj.replace(/^\s+/g,""),false)[0]);ai=M("math",ai);if(C){ai.setAttribute("title",aj.replace(/\s+/g," "))}if(ad!=""&&(q||ad!="serif")){var i=V("font");i.setAttribute("face",ad);i.appendChild(ai);return i}return ai}C=false;ad="";I="";(function(){for(var aj=0,ai=G.length;aj",tex:null,ttype:d},{input:"gt=",tag:"mo",output:"\u2265",tex:"geq",ttype:d},{input:"-<=",tag:"mo",output:"\u2AAF",tex:"preceq",ttype:d},{input:">-=",tag:"mo",output:"\u2AB0",tex:"succeq",ttype:d},{input:"'",tag:"mo",output:"\u2032",tex:"prime",ttype:d},{input:"arcsin",tag:"mi",output:"arcsin",tex:null,ttype:H,func:true},{input:"arccos",tag:"mi",output:"arccos",tex:null,ttype:H,func:true},{input:"arctan",tag:"mi",output:"arctan",tex:null,ttype:H,func:true},{input:"coth",tag:"mi",output:"coth",tex:null,ttype:H,func:true},{input:"sech",tag:"mi",output:"sech",tex:null,ttype:H,func:true},{input:"csch",tag:"mi",output:"csch",tex:null,ttype:H,func:true},{input:"abs",tag:"mi",output:"abs",tex:null,ttype:H,func:true},{input:"exp",tag:"mi",output:"exp",tex:null,ttype:H,func:true},{input:"tilde",tag:"mover",output:"~",tex:null,ttype:H,acc:true});ag.Augment({AM:{Init:function(){t=ag.config.displaystyle;f=(ag.config.decimal||ag.config.decimalsign);E();v()},Augment:function(i){for(var ai in i){if(i.hasOwnProperty(ai)){switch(ai){case"displaystyle":t=i[ai];break;case"decimal":decimal=i[ai];break;case"parseMath":e=i[ai];break;case"parseExpr":w=i[ai];break;case"parseIexpr":z=i[ai];break;case"parseSexpr":L=i[ai];break;case"removeBrackets":T=i[ai];break;case"getSymbol":n=i[ai];break;case"position":c=i[ai];break;case"removeCharsAndBlanks":u=i[ai];break;case"createMmlNode":M=i[ai];break;case"createElementMathML":R=i[ai];break;case"createElementXHTML":V=i[ai];break;case"initSymbols":v=i[ai];break;case"compareNames":comareNames=i[ai];break}this[ai]=i[ai]}}},parseMath:e,parseExpr:w,parseIexpr:z,parseSexr:L,removeBrackets:T,getSymbol:n,position:c,removeCharsAndBlanks:u,createMmlNode:M,createElementMathML:R,createElementXHTML:V,initSymbols:v,compareNames:W,createDocumentFragment:aa,document:g,define:B,symbols:G,names:U,TOKEN:{CONST:d,UNARY:H,BINARY:X,INFIX:m,LEFTBRACKET:b,RIGHTBRACKET:l,SPACE:a,UNDEROVER:P,DEFINITION:Z,LEFTRIGHT:r,TEXT:ab}}});var ae=[S,O];ae=null})(MathJax.InputJax.AsciiMath);(function(b){var a;b.Augment({sourceMenuTitle:["AsciiMathInput","AsciiMath Input"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(c){var d,f=MathJax.HTML.getScript(c);var g={math:f,script:c};this.prefilterHooks.Execute(g);f=g.math;try{d=this.AM.parseMath(f)}catch(e){if(!e.asciimathError){throw e}d=this.formatError(e,f)}g.math=a(d);this.postfilterHooks.Execute(g);return g.math},formatError:function(f,e,c){var d=f.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["AsciiMath Jax - parse error",d,e,c]);return a.merror(d)},Error:function(c){throw MathJax.Hub.Insert(Error(c),{asciimathError:true})},Startup:function(){a=MathJax.ElementJax.mml;this.AM.Init()}});b.loadComplete("jax.js")})(MathJax.InputJax.AsciiMath); - diff --git a/modules/MathJax/jax/input/MathML/config.js b/modules/MathJax/jax/input/MathML/config.js deleted file mode 100644 index 8bef12d..0000000 --- a/modules/MathJax/jax/input/MathML/config.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/config.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.InputJax.MathML=MathJax.InputJax({id:"MathML",version:"2.2",directory:MathJax.InputJax.directory+"/MathML",extensionDir:MathJax.InputJax.extensionDir+"/MathML",entityDir:MathJax.InputJax.directory+"/MathML/entities",config:{useMathMLspacing:false}});MathJax.InputJax.MathML.Register("math/mml");MathJax.InputJax.MathML.loadComplete("config.js"); - diff --git a/modules/MathJax/jax/input/MathML/entities/a.js b/modules/MathJax/jax/input/MathML/entities/a.js deleted file mode 100644 index c8215b2..0000000 --- a/modules/MathJax/jax/input/MathML/entities/a.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/a.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{AElig:"\u00C6",AMP:"\u0026",Aacute:"\u00C1",Abreve:"\u0102",Acirc:"\u00C2",Acy:"\u0410",Agrave:"\u00C0",Alpha:"\u0391",Amacr:"\u0100",And:"\u2A53",Aogon:"\u0104",Aring:"\u00C5",Assign:"\u2254",Atilde:"\u00C3",Auml:"\u00C4",aacute:"\u00E1",abreve:"\u0103",ac:"\u223E",acE:"\u223E\u0333",acd:"\u223F",acirc:"\u00E2",acy:"\u0430",aelig:"\u00E6",af:"\u2061",agrave:"\u00E0",alefsym:"\u2135",amacr:"\u0101",amp:"\u0026",andand:"\u2A55",andd:"\u2A5C",andslope:"\u2A58",andv:"\u2A5A",ange:"\u29A4",angle:"\u2220",angmsdaa:"\u29A8",angmsdab:"\u29A9",angmsdac:"\u29AA",angmsdad:"\u29AB",angmsdae:"\u29AC",angmsdaf:"\u29AD",angmsdag:"\u29AE",angmsdah:"\u29AF",angrt:"\u221F",angrtvb:"\u22BE",angrtvbd:"\u299D",angst:"\u00C5",angzarr:"\u237C",aogon:"\u0105",ap:"\u2248",apE:"\u2A70",apacir:"\u2A6F",apid:"\u224B",apos:"\u0027",approx:"\u2248",approxeq:"\u224A",aring:"\u00E5",ast:"\u002A",asymp:"\u2248",asympeq:"\u224D",atilde:"\u00E3",auml:"\u00E4",awconint:"\u2233",awint:"\u2A11"});MathJax.Ajax.loadComplete(a.entityDir+"/a.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/b.js b/modules/MathJax/jax/input/MathML/entities/b.js deleted file mode 100644 index 7175c1a..0000000 --- a/modules/MathJax/jax/input/MathML/entities/b.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/b.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Barv:"\u2AE7",Barwed:"\u2306",Bcy:"\u0411",Bernoullis:"\u212C",Beta:"\u0392",Bumpeq:"\u224E",bNot:"\u2AED",backcong:"\u224C",backepsilon:"\u03F6",barvee:"\u22BD",barwed:"\u2305",barwedge:"\u2305",bbrk:"\u23B5",bbrktbrk:"\u23B6",bcong:"\u224C",bcy:"\u0431",bdquo:"\u201E",becaus:"\u2235",because:"\u2235",bemptyv:"\u29B0",bepsi:"\u03F6",bernou:"\u212C",bigcap:"\u22C2",bigcup:"\u22C3",bigvee:"\u22C1",bigwedge:"\u22C0",bkarow:"\u290D",blacksquare:"\u25AA",blacktriangleright:"\u25B8",blank:"\u2423",blk12:"\u2592",blk14:"\u2591",blk34:"\u2593",block:"\u2588",bne:"\u003D\u20E5",bnequiv:"\u2261\u20E5",bnot:"\u2310",bot:"\u22A5",bottom:"\u22A5",boxDL:"\u2557",boxDR:"\u2554",boxDl:"\u2556",boxDr:"\u2553",boxH:"\u2550",boxHD:"\u2566",boxHU:"\u2569",boxHd:"\u2564",boxHu:"\u2567",boxUL:"\u255D",boxUR:"\u255A",boxUl:"\u255C",boxUr:"\u2559",boxV:"\u2551",boxVH:"\u256C",boxVL:"\u2563",boxVR:"\u2560",boxVh:"\u256B",boxVl:"\u2562",boxVr:"\u255F",boxbox:"\u29C9",boxdL:"\u2555",boxdR:"\u2552",boxh:"\u2500",boxhD:"\u2565",boxhU:"\u2568",boxhd:"\u252C",boxhu:"\u2534",boxuL:"\u255B",boxuR:"\u2558",boxv:"\u2502",boxvH:"\u256A",boxvL:"\u2561",boxvR:"\u255E",boxvh:"\u253C",boxvl:"\u2524",boxvr:"\u251C",bprime:"\u2035",breve:"\u02D8",brvbar:"\u00A6",bsemi:"\u204F",bsim:"\u223D",bsime:"\u22CD",bsolb:"\u29C5",bsolhsub:"\u27C8",bullet:"\u2022",bump:"\u224E",bumpE:"\u2AAE",bumpe:"\u224F",bumpeq:"\u224F"});MathJax.Ajax.loadComplete(a.entityDir+"/b.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/c.js b/modules/MathJax/jax/input/MathML/entities/c.js deleted file mode 100644 index 49ff645..0000000 --- a/modules/MathJax/jax/input/MathML/entities/c.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/c.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{CHcy:"\u0427",COPY:"\u00A9",Cacute:"\u0106",CapitalDifferentialD:"\u2145",Cayleys:"\u212D",Ccaron:"\u010C",Ccedil:"\u00C7",Ccirc:"\u0108",Cconint:"\u2230",Cdot:"\u010A",Cedilla:"\u00B8",Chi:"\u03A7",ClockwiseContourIntegral:"\u2232",CloseCurlyDoubleQuote:"\u201D",CloseCurlyQuote:"\u2019",Colon:"\u2237",Colone:"\u2A74",Conint:"\u222F",CounterClockwiseContourIntegral:"\u2233",cacute:"\u0107",capand:"\u2A44",capbrcup:"\u2A49",capcap:"\u2A4B",capcup:"\u2A47",capdot:"\u2A40",caps:"\u2229\uFE00",caret:"\u2041",caron:"\u02C7",ccaps:"\u2A4D",ccaron:"\u010D",ccedil:"\u00E7",ccirc:"\u0109",ccups:"\u2A4C",ccupssm:"\u2A50",cdot:"\u010B",cedil:"\u00B8",cemptyv:"\u29B2",cent:"\u00A2",centerdot:"\u00B7",chcy:"\u0447",checkmark:"\u2713",cir:"\u25CB",cirE:"\u29C3",cire:"\u2257",cirfnint:"\u2A10",cirmid:"\u2AEF",cirscir:"\u29C2",clubsuit:"\u2663",colone:"\u2254",coloneq:"\u2254",comma:"\u002C",commat:"\u0040",compfn:"\u2218",complement:"\u2201",complexes:"\u2102",cong:"\u2245",congdot:"\u2A6D",conint:"\u222E",coprod:"\u2210",copy:"\u00A9",copysr:"\u2117",crarr:"\u21B5",cross:"\u2717",csub:"\u2ACF",csube:"\u2AD1",csup:"\u2AD0",csupe:"\u2AD2",cudarrl:"\u2938",cudarrr:"\u2935",cularrp:"\u293D",cupbrcap:"\u2A48",cupcap:"\u2A46",cupcup:"\u2A4A",cupdot:"\u228D",cupor:"\u2A45",cups:"\u222A\uFE00",curarrm:"\u293C",curlyeqprec:"\u22DE",curlyeqsucc:"\u22DF",curren:"\u00A4",curvearrowleft:"\u21B6",curvearrowright:"\u21B7",cuvee:"\u22CE",cuwed:"\u22CF",cwconint:"\u2232",cwint:"\u2231",cylcty:"\u232D"});MathJax.Ajax.loadComplete(a.entityDir+"/c.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/d.js b/modules/MathJax/jax/input/MathML/entities/d.js deleted file mode 100644 index 3864f47..0000000 --- a/modules/MathJax/jax/input/MathML/entities/d.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/d.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{DD:"\u2145",DDotrahd:"\u2911",DJcy:"\u0402",DScy:"\u0405",DZcy:"\u040F",Darr:"\u21A1",Dashv:"\u2AE4",Dcaron:"\u010E",Dcy:"\u0414",DiacriticalAcute:"\u00B4",DiacriticalDot:"\u02D9",DiacriticalDoubleAcute:"\u02DD",DiacriticalGrave:"\u0060",DiacriticalTilde:"\u02DC",Dot:"\u00A8",DotDot:"\u20DC",DoubleContourIntegral:"\u222F",DoubleDownArrow:"\u21D3",DoubleLeftArrow:"\u21D0",DoubleLeftRightArrow:"\u21D4",DoubleLeftTee:"\u2AE4",DoubleLongLeftArrow:"\u27F8",DoubleLongLeftRightArrow:"\u27FA",DoubleLongRightArrow:"\u27F9",DoubleRightArrow:"\u21D2",DoubleUpArrow:"\u21D1",DoubleUpDownArrow:"\u21D5",DownArrowBar:"\u2913",DownArrowUpArrow:"\u21F5",DownBreve:"\u0311",DownLeftRightVector:"\u2950",DownLeftTeeVector:"\u295E",DownLeftVectorBar:"\u2956",DownRightTeeVector:"\u295F",DownRightVectorBar:"\u2957",DownTeeArrow:"\u21A7",Dstrok:"\u0110",dArr:"\u21D3",dHar:"\u2965",darr:"\u2193",dash:"\u2010",dashv:"\u22A3",dbkarow:"\u290F",dblac:"\u02DD",dcaron:"\u010F",dcy:"\u0434",dd:"\u2146",ddagger:"\u2021",ddotseq:"\u2A77",demptyv:"\u29B1",dfisht:"\u297F",dharl:"\u21C3",dharr:"\u21C2",diam:"\u22C4",diamond:"\u22C4",diamondsuit:"\u2666",diams:"\u2666",die:"\u00A8",disin:"\u22F2",divide:"\u00F7",divonx:"\u22C7",djcy:"\u0452",dlcorn:"\u231E",dlcrop:"\u230D",dollar:"\u0024",doteq:"\u2250",dotminus:"\u2238",doublebarwedge:"\u2306",downarrow:"\u2193",downdownarrows:"\u21CA",downharpoonleft:"\u21C3",downharpoonright:"\u21C2",drbkarow:"\u2910",drcorn:"\u231F",drcrop:"\u230C",dscy:"\u0455",dsol:"\u29F6",dstrok:"\u0111",dtri:"\u25BF",dtrif:"\u25BE",duarr:"\u21F5",duhar:"\u296F",dwangle:"\u29A6",dzcy:"\u045F",dzigrarr:"\u27FF"});MathJax.Ajax.loadComplete(a.entityDir+"/d.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/e.js b/modules/MathJax/jax/input/MathML/entities/e.js deleted file mode 100644 index 1569fe5..0000000 --- a/modules/MathJax/jax/input/MathML/entities/e.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/e.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{ENG:"\u014A",ETH:"\u00D0",Eacute:"\u00C9",Ecaron:"\u011A",Ecirc:"\u00CA",Ecy:"\u042D",Edot:"\u0116",Egrave:"\u00C8",Emacr:"\u0112",EmptySmallSquare:"\u25FB",EmptyVerySmallSquare:"\u25AB",Eogon:"\u0118",Epsilon:"\u0395",Equal:"\u2A75",Esim:"\u2A73",Eta:"\u0397",Euml:"\u00CB",eDDot:"\u2A77",eDot:"\u2251",eacute:"\u00E9",easter:"\u2A6E",ecaron:"\u011B",ecirc:"\u00EA",ecolon:"\u2255",ecy:"\u044D",edot:"\u0117",ee:"\u2147",eg:"\u2A9A",egrave:"\u00E8",egsdot:"\u2A98",el:"\u2A99",elinters:"\u23E7",elsdot:"\u2A97",emacr:"\u0113",emptyset:"\u2205",emptyv:"\u2205",emsp:"\u2003",emsp13:"\u2004",emsp14:"\u2005",eng:"\u014B",ensp:"\u2002",eogon:"\u0119",epar:"\u22D5",eparsl:"\u29E3",eplus:"\u2A71",epsilon:"\u03B5",eqcirc:"\u2256",eqcolon:"\u2255",eqsim:"\u2242",eqslantgtr:"\u2A96",eqslantless:"\u2A95",equals:"\u003D",equest:"\u225F",equiv:"\u2261",equivDD:"\u2A78",eqvparsl:"\u29E5",erarr:"\u2971",esdot:"\u2250",esim:"\u2242",euml:"\u00EB",euro:"\u20AC",excl:"\u0021",exist:"\u2203",expectation:"\u2130",exponentiale:"\u2147"});MathJax.Ajax.loadComplete(a.entityDir+"/e.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/f.js b/modules/MathJax/jax/input/MathML/entities/f.js deleted file mode 100644 index cf59330..0000000 --- a/modules/MathJax/jax/input/MathML/entities/f.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/f.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Fcy:"\u0424",FilledSmallSquare:"\u25FC",Fouriertrf:"\u2131",fallingdotseq:"\u2252",fcy:"\u0444",female:"\u2640",ffilig:"\uFB03",fflig:"\uFB00",ffllig:"\uFB04",filig:"\uFB01",fjlig:"\u0066\u006A",fllig:"\uFB02",fltns:"\u25B1",fnof:"\u0192",forall:"\u2200",forkv:"\u2AD9",fpartint:"\u2A0D",frac12:"\u00BD",frac13:"\u2153",frac14:"\u00BC",frac15:"\u2155",frac16:"\u2159",frac18:"\u215B",frac23:"\u2154",frac25:"\u2156",frac34:"\u00BE",frac35:"\u2157",frac38:"\u215C",frac45:"\u2158",frac56:"\u215A",frac58:"\u215D",frac78:"\u215E",frasl:"\u2044"});MathJax.Ajax.loadComplete(a.entityDir+"/f.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/fr.js b/modules/MathJax/jax/input/MathML/entities/fr.js deleted file mode 100644 index 4303d3d..0000000 --- a/modules/MathJax/jax/input/MathML/entities/fr.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/fr.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Afr:"\uD835\uDD04",Bfr:"\uD835\uDD05",Cfr:"\u212D",Dfr:"\uD835\uDD07",Efr:"\uD835\uDD08",Ffr:"\uD835\uDD09",Gfr:"\uD835\uDD0A",Hfr:"\u210C",Ifr:"\u2111",Jfr:"\uD835\uDD0D",Kfr:"\uD835\uDD0E",Lfr:"\uD835\uDD0F",Mfr:"\uD835\uDD10",Nfr:"\uD835\uDD11",Ofr:"\uD835\uDD12",Pfr:"\uD835\uDD13",Qfr:"\uD835\uDD14",Rfr:"\u211C",Sfr:"\uD835\uDD16",Tfr:"\uD835\uDD17",Ufr:"\uD835\uDD18",Vfr:"\uD835\uDD19",Wfr:"\uD835\uDD1A",Xfr:"\uD835\uDD1B",Yfr:"\uD835\uDD1C",Zfr:"\u2128",afr:"\uD835\uDD1E",bfr:"\uD835\uDD1F",cfr:"\uD835\uDD20",dfr:"\uD835\uDD21",efr:"\uD835\uDD22",ffr:"\uD835\uDD23",gfr:"\uD835\uDD24",hfr:"\uD835\uDD25",ifr:"\uD835\uDD26",jfr:"\uD835\uDD27",kfr:"\uD835\uDD28",lfr:"\uD835\uDD29",mfr:"\uD835\uDD2A",nfr:"\uD835\uDD2B",ofr:"\uD835\uDD2C",pfr:"\uD835\uDD2D",qfr:"\uD835\uDD2E",rfr:"\uD835\uDD2F",sfr:"\uD835\uDD30",tfr:"\uD835\uDD31",ufr:"\uD835\uDD32",vfr:"\uD835\uDD33",wfr:"\uD835\uDD34",xfr:"\uD835\uDD35",yfr:"\uD835\uDD36",zfr:"\uD835\uDD37"});MathJax.Ajax.loadComplete(a.entityDir+"/fr.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/g.js b/modules/MathJax/jax/input/MathML/entities/g.js deleted file mode 100644 index b306c2c..0000000 --- a/modules/MathJax/jax/input/MathML/entities/g.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/g.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{GJcy:"\u0403",GT:"\u003E",Gammad:"\u03DC",Gbreve:"\u011E",Gcedil:"\u0122",Gcirc:"\u011C",Gcy:"\u0413",Gdot:"\u0120",GreaterGreater:"\u2AA2",Gt:"\u226B",gE:"\u2267",gacute:"\u01F5",gammad:"\u03DD",gbreve:"\u011F",gcirc:"\u011D",gcy:"\u0433",gdot:"\u0121",ge:"\u2265",gel:"\u22DB",geq:"\u2265",geqq:"\u2267",geqslant:"\u2A7E",ges:"\u2A7E",gescc:"\u2AA9",gesdot:"\u2A80",gesdoto:"\u2A82",gesdotol:"\u2A84",gesl:"\u22DB\uFE00",gesles:"\u2A94",gg:"\u226B",ggg:"\u22D9",gjcy:"\u0453",gl:"\u2277",glE:"\u2A92",gla:"\u2AA5",glj:"\u2AA4",gnapprox:"\u2A8A",gneq:"\u2A88",gneqq:"\u2269",grave:"\u0060",gsim:"\u2273",gsime:"\u2A8E",gsiml:"\u2A90",gtcc:"\u2AA7",gtcir:"\u2A7A",gtlPar:"\u2995",gtquest:"\u2A7C",gtrapprox:"\u2A86",gtrarr:"\u2978",gtrdot:"\u22D7",gtreqless:"\u22DB",gtreqqless:"\u2A8C",gtrless:"\u2277",gtrsim:"\u2273",gvertneqq:"\u2269\uFE00",gvnE:"\u2269\uFE00"});MathJax.Ajax.loadComplete(a.entityDir+"/g.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/h.js b/modules/MathJax/jax/input/MathML/entities/h.js deleted file mode 100644 index 92f6d19..0000000 --- a/modules/MathJax/jax/input/MathML/entities/h.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/h.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{HARDcy:"\u042A",Hcirc:"\u0124",HilbertSpace:"\u210B",HorizontalLine:"\u2500",Hstrok:"\u0126",hArr:"\u21D4",hairsp:"\u200A",half:"\u00BD",hamilt:"\u210B",hardcy:"\u044A",harr:"\u2194",harrcir:"\u2948",hcirc:"\u0125",hearts:"\u2665",heartsuit:"\u2665",hercon:"\u22B9",hksearow:"\u2925",hkswarow:"\u2926",hoarr:"\u21FF",homtht:"\u223B",horbar:"\u2015",hslash:"\u210F",hstrok:"\u0127",hybull:"\u2043",hyphen:"\u2010"});MathJax.Ajax.loadComplete(a.entityDir+"/h.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/i.js b/modules/MathJax/jax/input/MathML/entities/i.js deleted file mode 100644 index 87aceb6..0000000 --- a/modules/MathJax/jax/input/MathML/entities/i.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/i.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{IEcy:"\u0415",IJlig:"\u0132",IOcy:"\u0401",Iacute:"\u00CD",Icirc:"\u00CE",Icy:"\u0418",Idot:"\u0130",Igrave:"\u00CC",Imacr:"\u012A",Implies:"\u21D2",Int:"\u222C",Iogon:"\u012E",Iota:"\u0399",Itilde:"\u0128",Iukcy:"\u0406",Iuml:"\u00CF",iacute:"\u00ED",ic:"\u2063",icirc:"\u00EE",icy:"\u0438",iecy:"\u0435",iexcl:"\u00A1",iff:"\u21D4",igrave:"\u00EC",ii:"\u2148",iiiint:"\u2A0C",iiint:"\u222D",iinfin:"\u29DC",iiota:"\u2129",ijlig:"\u0133",imacr:"\u012B",image:"\u2111",imagline:"\u2110",imagpart:"\u2111",imof:"\u22B7",imped:"\u01B5","in":"\u2208",incare:"\u2105",infintie:"\u29DD",inodot:"\u0131","int":"\u222B",integers:"\u2124",intercal:"\u22BA",intlarhk:"\u2A17",intprod:"\u2A3C",iocy:"\u0451",iogon:"\u012F",iprod:"\u2A3C",iquest:"\u00BF",isin:"\u2208",isinE:"\u22F9",isindot:"\u22F5",isins:"\u22F4",isinsv:"\u22F3",isinv:"\u2208",it:"\u2062",itilde:"\u0129",iukcy:"\u0456",iuml:"\u00EF"});MathJax.Ajax.loadComplete(a.entityDir+"/i.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/j.js b/modules/MathJax/jax/input/MathML/entities/j.js deleted file mode 100644 index 1ab3dfa..0000000 --- a/modules/MathJax/jax/input/MathML/entities/j.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/j.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Jcirc:"\u0134",Jcy:"\u0419",Jsercy:"\u0408",Jukcy:"\u0404",jcirc:"\u0135",jcy:"\u0439",jsercy:"\u0458",jukcy:"\u0454"});MathJax.Ajax.loadComplete(a.entityDir+"/j.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/k.js b/modules/MathJax/jax/input/MathML/entities/k.js deleted file mode 100644 index 6cc7e99..0000000 --- a/modules/MathJax/jax/input/MathML/entities/k.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/k.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{KHcy:"\u0425",KJcy:"\u040C",Kappa:"\u039A",Kcedil:"\u0136",Kcy:"\u041A",kcedil:"\u0137",kcy:"\u043A",kgreen:"\u0138",khcy:"\u0445",kjcy:"\u045C"});MathJax.Ajax.loadComplete(a.entityDir+"/k.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/l.js b/modules/MathJax/jax/input/MathML/entities/l.js deleted file mode 100644 index cf53d97..0000000 --- a/modules/MathJax/jax/input/MathML/entities/l.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/l.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{LJcy:"\u0409",LT:"\u003C",Lacute:"\u0139",Lang:"\u27EA",Laplacetrf:"\u2112",Lcaron:"\u013D",Lcedil:"\u013B",Lcy:"\u041B",LeftArrowBar:"\u21E4",LeftDoubleBracket:"\u27E6",LeftDownTeeVector:"\u2961",LeftDownVectorBar:"\u2959",LeftRightVector:"\u294E",LeftTeeArrow:"\u21A4",LeftTeeVector:"\u295A",LeftTriangleBar:"\u29CF",LeftUpDownVector:"\u2951",LeftUpTeeVector:"\u2960",LeftUpVectorBar:"\u2958",LeftVectorBar:"\u2952",LessLess:"\u2AA1",Lmidot:"\u013F",LowerLeftArrow:"\u2199",LowerRightArrow:"\u2198",Lstrok:"\u0141",Lt:"\u226A",lAarr:"\u21DA",lArr:"\u21D0",lAtail:"\u291B",lBarr:"\u290E",lE:"\u2266",lHar:"\u2962",lacute:"\u013A",laemptyv:"\u29B4",lagran:"\u2112",lang:"\u27E8",langd:"\u2991",langle:"\u27E8",laquo:"\u00AB",larr:"\u2190",larrb:"\u21E4",larrbfs:"\u291F",larrfs:"\u291D",larrhk:"\u21A9",larrpl:"\u2939",larrsim:"\u2973",lat:"\u2AAB",latail:"\u2919",late:"\u2AAD",lates:"\u2AAD\uFE00",lbarr:"\u290C",lbbrk:"\u2772",lbrke:"\u298B",lbrksld:"\u298F",lbrkslu:"\u298D",lcaron:"\u013E",lcedil:"\u013C",lceil:"\u2308",lcub:"\u007B",lcy:"\u043B",ldca:"\u2936",ldquo:"\u201C",ldquor:"\u201E",ldrdhar:"\u2967",ldrushar:"\u294B",ldsh:"\u21B2",leftarrow:"\u2190",leftarrowtail:"\u21A2",leftharpoondown:"\u21BD",leftharpoonup:"\u21BC",leftrightarrow:"\u2194",leftrightarrows:"\u21C6",leftrightharpoons:"\u21CB",leftrightsquigarrow:"\u21AD",leg:"\u22DA",leq:"\u2264",leqq:"\u2266",leqslant:"\u2A7D",les:"\u2A7D",lescc:"\u2AA8",lesdot:"\u2A7F",lesdoto:"\u2A81",lesdotor:"\u2A83",lesg:"\u22DA\uFE00",lesges:"\u2A93",lessapprox:"\u2A85",lesseqgtr:"\u22DA",lesseqqgtr:"\u2A8B",lessgtr:"\u2276",lesssim:"\u2272",lfisht:"\u297C",lfloor:"\u230A",lg:"\u2276",lgE:"\u2A91",lhard:"\u21BD",lharu:"\u21BC",lharul:"\u296A",lhblk:"\u2584",ljcy:"\u0459",ll:"\u226A",llarr:"\u21C7",llcorner:"\u231E",llhard:"\u296B",lltri:"\u25FA",lmidot:"\u0140",lmoustache:"\u23B0",lnapprox:"\u2A89",lneq:"\u2A87",lneqq:"\u2268",loang:"\u27EC",loarr:"\u21FD",lobrk:"\u27E6",longleftarrow:"\u27F5",longleftrightarrow:"\u27F7",longrightarrow:"\u27F6",looparrowleft:"\u21AB",lopar:"\u2985",loplus:"\u2A2D",lotimes:"\u2A34",lowbar:"\u005F",lozenge:"\u25CA",lozf:"\u29EB",lpar:"\u0028",lparlt:"\u2993",lrarr:"\u21C6",lrcorner:"\u231F",lrhar:"\u21CB",lrhard:"\u296D",lrm:"\u200E",lrtri:"\u22BF",lsaquo:"\u2039",lsh:"\u21B0",lsim:"\u2272",lsime:"\u2A8D",lsimg:"\u2A8F",lsqb:"\u005B",lsquo:"\u2018",lsquor:"\u201A",lstrok:"\u0142",ltcc:"\u2AA6",ltcir:"\u2A79",ltdot:"\u22D6",lthree:"\u22CB",ltlarr:"\u2976",ltquest:"\u2A7B",ltrPar:"\u2996",ltrie:"\u22B4",ltrif:"\u25C2",lurdshar:"\u294A",luruhar:"\u2966",lvertneqq:"\u2268\uFE00",lvnE:"\u2268\uFE00"});MathJax.Ajax.loadComplete(a.entityDir+"/l.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/m.js b/modules/MathJax/jax/input/MathML/entities/m.js deleted file mode 100644 index 23ff720..0000000 --- a/modules/MathJax/jax/input/MathML/entities/m.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/m.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Map:"\u2905",Mcy:"\u041C",MediumSpace:"\u205F",Mellintrf:"\u2133",Mu:"\u039C",mDDot:"\u223A",male:"\u2642",maltese:"\u2720",map:"\u21A6",mapsto:"\u21A6",mapstodown:"\u21A7",mapstoleft:"\u21A4",mapstoup:"\u21A5",marker:"\u25AE",mcomma:"\u2A29",mcy:"\u043C",mdash:"\u2014",measuredangle:"\u2221",micro:"\u00B5",mid:"\u2223",midast:"\u002A",midcir:"\u2AF0",middot:"\u00B7",minus:"\u2212",minusb:"\u229F",minusd:"\u2238",minusdu:"\u2A2A",mlcp:"\u2ADB",mldr:"\u2026",mnplus:"\u2213",models:"\u22A7",mp:"\u2213",mstpos:"\u223E",mumap:"\u22B8"});MathJax.Ajax.loadComplete(a.entityDir+"/m.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/n.js b/modules/MathJax/jax/input/MathML/entities/n.js deleted file mode 100644 index 04e8d36..0000000 --- a/modules/MathJax/jax/input/MathML/entities/n.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/n.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{NJcy:"\u040A",Nacute:"\u0143",Ncaron:"\u0147",Ncedil:"\u0145",Ncy:"\u041D",NegativeMediumSpace:"\u200B",NegativeThickSpace:"\u200B",NegativeThinSpace:"\u200B",NegativeVeryThinSpace:"\u200B",NewLine:"\u000A",NoBreak:"\u2060",NonBreakingSpace:"\u00A0",Not:"\u2AEC",NotCongruent:"\u2262",NotCupCap:"\u226D",NotEqualTilde:"\u2242\u0338",NotGreaterFullEqual:"\u2267\u0338",NotGreaterGreater:"\u226B\u0338",NotGreaterLess:"\u2279",NotGreaterSlantEqual:"\u2A7E\u0338",NotGreaterTilde:"\u2275",NotHumpDownHump:"\u224E\u0338",NotHumpEqual:"\u224F\u0338",NotLeftTriangleBar:"\u29CF\u0338",NotLessGreater:"\u2278",NotLessLess:"\u226A\u0338",NotLessSlantEqual:"\u2A7D\u0338",NotLessTilde:"\u2274",NotNestedGreaterGreater:"\u2AA2\u0338",NotNestedLessLess:"\u2AA1\u0338",NotPrecedesEqual:"\u2AAF\u0338",NotReverseElement:"\u220C",NotRightTriangleBar:"\u29D0\u0338",NotSquareSubset:"\u228F\u0338",NotSquareSubsetEqual:"\u22E2",NotSquareSuperset:"\u2290\u0338",NotSquareSupersetEqual:"\u22E3",NotSubset:"\u2282\u20D2",NotSucceedsEqual:"\u2AB0\u0338",NotSucceedsTilde:"\u227F\u0338",NotSuperset:"\u2283\u20D2",NotTildeEqual:"\u2244",NotTildeFullEqual:"\u2247",NotTildeTilde:"\u2249",Ntilde:"\u00D1",Nu:"\u039D",nGg:"\u22D9\u0338",nGt:"\u226B\u20D2",nGtv:"\u226B\u0338",nLl:"\u22D8\u0338",nLt:"\u226A\u20D2",nLtv:"\u226A\u0338",nabla:"\u2207",nacute:"\u0144",nang:"\u2220\u20D2",nap:"\u2249",napE:"\u2A70\u0338",napid:"\u224B\u0338",napos:"\u0149",napprox:"\u2249",natural:"\u266E",naturals:"\u2115",nbsp:"\u00A0",nbump:"\u224E\u0338",nbumpe:"\u224F\u0338",ncap:"\u2A43",ncaron:"\u0148",ncedil:"\u0146",ncong:"\u2247",ncongdot:"\u2A6D\u0338",ncup:"\u2A42",ncy:"\u043D",ndash:"\u2013",ne:"\u2260",neArr:"\u21D7",nearhk:"\u2924",nearrow:"\u2197",nedot:"\u2250\u0338",nequiv:"\u2262",nesear:"\u2928",nesim:"\u2242\u0338",nexist:"\u2204",nexists:"\u2204",ngE:"\u2267\u0338",nge:"\u2271",ngeq:"\u2271",ngeqq:"\u2267\u0338",ngeqslant:"\u2A7E\u0338",nges:"\u2A7E\u0338",ngsim:"\u2275",ngt:"\u226F",ngtr:"\u226F",nhArr:"\u21CE",nhpar:"\u2AF2",ni:"\u220B",nis:"\u22FC",nisd:"\u22FA",niv:"\u220B",njcy:"\u045A",nlArr:"\u21CD",nlE:"\u2266\u0338",nldr:"\u2025",nle:"\u2270",nleftarrow:"\u219A",nleftrightarrow:"\u21AE",nleq:"\u2270",nleqq:"\u2266\u0338",nleqslant:"\u2A7D\u0338",nles:"\u2A7D\u0338",nless:"\u226E",nlsim:"\u2274",nlt:"\u226E",nltri:"\u22EA",nltrie:"\u22EC",nmid:"\u2224",notin:"\u2209",notinE:"\u22F9\u0338",notindot:"\u22F5\u0338",notinva:"\u2209",notinvb:"\u22F7",notinvc:"\u22F6",notni:"\u220C",notniva:"\u220C",notnivb:"\u22FE",notnivc:"\u22FD",npar:"\u2226",nparallel:"\u2226",nparsl:"\u2AFD\u20E5",npart:"\u2202\u0338",npolint:"\u2A14",npr:"\u2280",nprcue:"\u22E0",npre:"\u2AAF\u0338",nprec:"\u2280",npreceq:"\u2AAF\u0338",nrArr:"\u21CF",nrarrc:"\u2933\u0338",nrarrw:"\u219D\u0338",nrightarrow:"\u219B",nrtri:"\u22EB",nrtrie:"\u22ED",nsc:"\u2281",nsccue:"\u22E1",nsce:"\u2AB0\u0338",nshortmid:"\u2224",nshortparallel:"\u2226",nsim:"\u2241",nsime:"\u2244",nsimeq:"\u2244",nsmid:"\u2224",nspar:"\u2226",nsqsube:"\u22E2",nsqsupe:"\u22E3",nsub:"\u2284",nsubE:"\u2AC5\u0338",nsube:"\u2288",nsubset:"\u2282\u20D2",nsubseteq:"\u2288",nsubseteqq:"\u2AC5\u0338",nsucc:"\u2281",nsucceq:"\u2AB0\u0338",nsup:"\u2285",nsupE:"\u2AC6\u0338",nsupe:"\u2289",nsupset:"\u2283\u20D2",nsupseteq:"\u2289",nsupseteqq:"\u2AC6\u0338",ntgl:"\u2279",ntilde:"\u00F1",ntlg:"\u2278",ntriangleleft:"\u22EA",ntrianglelefteq:"\u22EC",ntriangleright:"\u22EB",ntrianglerighteq:"\u22ED",num:"\u0023",numero:"\u2116",numsp:"\u2007",nvHarr:"\u2904",nvap:"\u224D\u20D2",nvge:"\u2265\u20D2",nvgt:"\u003E\u20D2",nvinfin:"\u29DE",nvlArr:"\u2902",nvle:"\u2264\u20D2",nvlt:"\u003C\u20D2",nvltrie:"\u22B4\u20D2",nvrArr:"\u2903",nvrtrie:"\u22B5\u20D2",nvsim:"\u223C\u20D2",nwArr:"\u21D6",nwarhk:"\u2923",nwarrow:"\u2196",nwnear:"\u2927"});MathJax.Ajax.loadComplete(a.entityDir+"/n.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/o.js b/modules/MathJax/jax/input/MathML/entities/o.js deleted file mode 100644 index ab1cb13..0000000 --- a/modules/MathJax/jax/input/MathML/entities/o.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/o.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{OElig:"\u0152",Oacute:"\u00D3",Ocirc:"\u00D4",Ocy:"\u041E",Odblac:"\u0150",Ograve:"\u00D2",Omacr:"\u014C",Omicron:"\u039F",OpenCurlyDoubleQuote:"\u201C",OpenCurlyQuote:"\u2018",Or:"\u2A54",Oslash:"\u00D8",Otilde:"\u00D5",Otimes:"\u2A37",Ouml:"\u00D6",OverBracket:"\u23B4",OverParenthesis:"\u23DC",oS:"\u24C8",oacute:"\u00F3",oast:"\u229B",ocir:"\u229A",ocirc:"\u00F4",ocy:"\u043E",odash:"\u229D",odblac:"\u0151",odiv:"\u2A38",odot:"\u2299",odsold:"\u29BC",oelig:"\u0153",ofcir:"\u29BF",ogon:"\u02DB",ograve:"\u00F2",ogt:"\u29C1",ohbar:"\u29B5",ohm:"\u03A9",oint:"\u222E",olarr:"\u21BA",olcir:"\u29BE",olcross:"\u29BB",oline:"\u203E",olt:"\u29C0",omacr:"\u014D",omid:"\u29B6",ominus:"\u2296",opar:"\u29B7",operp:"\u29B9",oplus:"\u2295",orarr:"\u21BB",ord:"\u2A5D",order:"\u2134",orderof:"\u2134",ordf:"\u00AA",ordm:"\u00BA",origof:"\u22B6",oror:"\u2A56",orslope:"\u2A57",orv:"\u2A5B",oslash:"\u00F8",otilde:"\u00F5",otimes:"\u2297",otimesas:"\u2A36",ouml:"\u00F6",ovbar:"\u233D"});MathJax.Ajax.loadComplete(a.entityDir+"/o.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/opf.js b/modules/MathJax/jax/input/MathML/entities/opf.js deleted file mode 100644 index 7105c3f..0000000 --- a/modules/MathJax/jax/input/MathML/entities/opf.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/opf.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Aopf:"\uD835\uDD38",Bopf:"\uD835\uDD39",Copf:"\u2102",Dopf:"\uD835\uDD3B",Eopf:"\uD835\uDD3C",Fopf:"\uD835\uDD3D",Gopf:"\uD835\uDD3E",Hopf:"\u210D",Iopf:"\uD835\uDD40",Jopf:"\uD835\uDD41",Kopf:"\uD835\uDD42",Lopf:"\uD835\uDD43",Mopf:"\uD835\uDD44",Nopf:"\u2115",Oopf:"\uD835\uDD46",Popf:"\u2119",Qopf:"\u211A",Ropf:"\u211D",Sopf:"\uD835\uDD4A",Topf:"\uD835\uDD4B",Uopf:"\uD835\uDD4C",Vopf:"\uD835\uDD4D",Wopf:"\uD835\uDD4E",Xopf:"\uD835\uDD4F",Yopf:"\uD835\uDD50",Zopf:"\u2124",aopf:"\uD835\uDD52",bopf:"\uD835\uDD53",copf:"\uD835\uDD54",dopf:"\uD835\uDD55",eopf:"\uD835\uDD56",fopf:"\uD835\uDD57",gopf:"\uD835\uDD58",hopf:"\uD835\uDD59",iopf:"\uD835\uDD5A",jopf:"\uD835\uDD5B",kopf:"\uD835\uDD5C",lopf:"\uD835\uDD5D",mopf:"\uD835\uDD5E",nopf:"\uD835\uDD5F",oopf:"\uD835\uDD60",popf:"\uD835\uDD61",qopf:"\uD835\uDD62",ropf:"\uD835\uDD63",sopf:"\uD835\uDD64",topf:"\uD835\uDD65",uopf:"\uD835\uDD66",vopf:"\uD835\uDD67",wopf:"\uD835\uDD68",xopf:"\uD835\uDD69",yopf:"\uD835\uDD6A",zopf:"\uD835\uDD6B"});MathJax.Ajax.loadComplete(a.entityDir+"/opf.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/p.js b/modules/MathJax/jax/input/MathML/entities/p.js deleted file mode 100644 index 4e44a07..0000000 --- a/modules/MathJax/jax/input/MathML/entities/p.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/p.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Pcy:"\u041F",Poincareplane:"\u210C",Pr:"\u2ABB",Prime:"\u2033",Proportion:"\u2237",par:"\u2225",para:"\u00B6",parallel:"\u2225",parsim:"\u2AF3",parsl:"\u2AFD",part:"\u2202",pcy:"\u043F",percnt:"\u0025",permil:"\u2030",perp:"\u22A5",pertenk:"\u2031",phmmat:"\u2133",phone:"\u260E",pitchfork:"\u22D4",planck:"\u210F",planckh:"\u210E",plankv:"\u210F",plus:"\u002B",plusacir:"\u2A23",plusb:"\u229E",pluscir:"\u2A22",plusdo:"\u2214",plusdu:"\u2A25",pluse:"\u2A72",plusmn:"\u00B1",plussim:"\u2A26",plustwo:"\u2A27",pm:"\u00B1",pointint:"\u2A15",pound:"\u00A3",pr:"\u227A",prE:"\u2AB3",prcue:"\u227C",pre:"\u2AAF",prec:"\u227A",precapprox:"\u2AB7",preccurlyeq:"\u227C",preceq:"\u2AAF",precsim:"\u227E",primes:"\u2119",prnE:"\u2AB5",prnap:"\u2AB9",prnsim:"\u22E8",prod:"\u220F",profalar:"\u232E",profline:"\u2312",profsurf:"\u2313",prop:"\u221D",propto:"\u221D",prsim:"\u227E",prurel:"\u22B0",puncsp:"\u2008"});MathJax.Ajax.loadComplete(a.entityDir+"/p.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/q.js b/modules/MathJax/jax/input/MathML/entities/q.js deleted file mode 100644 index 2617d4a..0000000 --- a/modules/MathJax/jax/input/MathML/entities/q.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/q.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{QUOT:"\u0022",qint:"\u2A0C",qprime:"\u2057",quaternions:"\u210D",quatint:"\u2A16",quest:"\u003F",questeq:"\u225F",quot:"\u0022"});MathJax.Ajax.loadComplete(a.entityDir+"/q.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/r.js b/modules/MathJax/jax/input/MathML/entities/r.js deleted file mode 100644 index 4894fb8..0000000 --- a/modules/MathJax/jax/input/MathML/entities/r.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/r.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{RBarr:"\u2910",REG:"\u00AE",Racute:"\u0154",Rang:"\u27EB",Rarrtl:"\u2916",Rcaron:"\u0158",Rcedil:"\u0156",Rcy:"\u0420",ReverseElement:"\u220B",ReverseUpEquilibrium:"\u296F",Rho:"\u03A1",RightArrowBar:"\u21E5",RightDoubleBracket:"\u27E7",RightDownTeeVector:"\u295D",RightDownVectorBar:"\u2955",RightTeeVector:"\u295B",RightTriangleBar:"\u29D0",RightUpDownVector:"\u294F",RightUpTeeVector:"\u295C",RightUpVectorBar:"\u2954",RightVectorBar:"\u2953",RoundImplies:"\u2970",RuleDelayed:"\u29F4",rAarr:"\u21DB",rArr:"\u21D2",rAtail:"\u291C",rBarr:"\u290F",rHar:"\u2964",race:"\u223D\u0331",racute:"\u0155",radic:"\u221A",raemptyv:"\u29B3",rang:"\u27E9",rangd:"\u2992",range:"\u29A5",rangle:"\u27E9",raquo:"\u00BB",rarr:"\u2192",rarrap:"\u2975",rarrb:"\u21E5",rarrbfs:"\u2920",rarrc:"\u2933",rarrfs:"\u291E",rarrhk:"\u21AA",rarrlp:"\u21AC",rarrpl:"\u2945",rarrsim:"\u2974",rarrw:"\u219D",ratail:"\u291A",ratio:"\u2236",rationals:"\u211A",rbarr:"\u290D",rbbrk:"\u2773",rbrke:"\u298C",rbrksld:"\u298E",rbrkslu:"\u2990",rcaron:"\u0159",rcedil:"\u0157",rceil:"\u2309",rcub:"\u007D",rcy:"\u0440",rdca:"\u2937",rdldhar:"\u2969",rdquo:"\u201D",rdquor:"\u201D",rdsh:"\u21B3",real:"\u211C",realine:"\u211B",realpart:"\u211C",reals:"\u211D",rect:"\u25AD",reg:"\u00AE",rfisht:"\u297D",rfloor:"\u230B",rhard:"\u21C1",rharu:"\u21C0",rharul:"\u296C",rightarrow:"\u2192",rightarrowtail:"\u21A3",rightharpoondown:"\u21C1",rightharpoonup:"\u21C0",rightleftarrows:"\u21C4",rightleftharpoons:"\u21CC",rightsquigarrow:"\u219D",risingdotseq:"\u2253",rlarr:"\u21C4",rlhar:"\u21CC",rlm:"\u200F",rmoustache:"\u23B1",rnmid:"\u2AEE",roang:"\u27ED",roarr:"\u21FE",robrk:"\u27E7",ropar:"\u2986",roplus:"\u2A2E",rotimes:"\u2A35",rpar:"\u0029",rpargt:"\u2994",rppolint:"\u2A12",rrarr:"\u21C9",rsaquo:"\u203A",rsh:"\u21B1",rsqb:"\u005D",rsquo:"\u2019",rsquor:"\u2019",rthree:"\u22CC",rtrie:"\u22B5",rtrif:"\u25B8",rtriltri:"\u29CE",ruluhar:"\u2968",rx:"\u211E"});MathJax.Ajax.loadComplete(a.entityDir+"/r.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/s.js b/modules/MathJax/jax/input/MathML/entities/s.js deleted file mode 100644 index 91cc27d..0000000 --- a/modules/MathJax/jax/input/MathML/entities/s.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/s.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{SHCHcy:"\u0429",SHcy:"\u0428",SOFTcy:"\u042C",Sacute:"\u015A",Sc:"\u2ABC",Scaron:"\u0160",Scedil:"\u015E",Scirc:"\u015C",Scy:"\u0421",ShortDownArrow:"\u2193",ShortLeftArrow:"\u2190",ShortRightArrow:"\u2192",ShortUpArrow:"\u2191",Sub:"\u22D0",Sup:"\u22D1",sacute:"\u015B",sbquo:"\u201A",sc:"\u227B",scE:"\u2AB4",scaron:"\u0161",sccue:"\u227D",sce:"\u2AB0",scedil:"\u015F",scirc:"\u015D",scpolint:"\u2A13",scsim:"\u227F",scy:"\u0441",sdotb:"\u22A1",sdote:"\u2A66",seArr:"\u21D8",searhk:"\u2925",searrow:"\u2198",semi:"\u003B",seswar:"\u2929",setminus:"\u2216",setmn:"\u2216",sext:"\u2736",sfrown:"\u2322",shchcy:"\u0449",shcy:"\u0448",shortmid:"\u2223",shortparallel:"\u2225",shy:"\u00AD",sigmaf:"\u03C2",sim:"\u223C",simdot:"\u2A6A",sime:"\u2243",simeq:"\u2243",simg:"\u2A9E",simgE:"\u2AA0",siml:"\u2A9D",simlE:"\u2A9F",simplus:"\u2A24",simrarr:"\u2972",slarr:"\u2190",smallsetminus:"\u2216",smashp:"\u2A33",smeparsl:"\u29E4",smid:"\u2223",smt:"\u2AAA",smte:"\u2AAC",smtes:"\u2AAC\uFE00",softcy:"\u044C",sol:"\u002F",solb:"\u29C4",solbar:"\u233F",spadesuit:"\u2660",spar:"\u2225",sqcap:"\u2293",sqcaps:"\u2293\uFE00",sqcup:"\u2294",sqcups:"\u2294\uFE00",sqsub:"\u228F",sqsube:"\u2291",sqsubset:"\u228F",sqsubseteq:"\u2291",sqsup:"\u2290",sqsupe:"\u2292",sqsupset:"\u2290",sqsupseteq:"\u2292",squ:"\u25A1",square:"\u25A1",squarf:"\u25AA",squf:"\u25AA",srarr:"\u2192",ssetmn:"\u2216",ssmile:"\u2323",sstarf:"\u22C6",star:"\u2606",starf:"\u2605",straightepsilon:"\u03F5",straightphi:"\u03D5",strns:"\u00AF",subdot:"\u2ABD",sube:"\u2286",subedot:"\u2AC3",submult:"\u2AC1",subplus:"\u2ABF",subrarr:"\u2979",subset:"\u2282",subseteq:"\u2286",subseteqq:"\u2AC5",subsetneq:"\u228A",subsetneqq:"\u2ACB",subsim:"\u2AC7",subsub:"\u2AD5",subsup:"\u2AD3",succ:"\u227B",succapprox:"\u2AB8",succcurlyeq:"\u227D",succeq:"\u2AB0",succnapprox:"\u2ABA",succneqq:"\u2AB6",succnsim:"\u22E9",succsim:"\u227F",sum:"\u2211",sung:"\u266A",sup:"\u2283",sup1:"\u00B9",sup2:"\u00B2",sup3:"\u00B3",supdot:"\u2ABE",supdsub:"\u2AD8",supe:"\u2287",supedot:"\u2AC4",suphsol:"\u27C9",suphsub:"\u2AD7",suplarr:"\u297B",supmult:"\u2AC2",supplus:"\u2AC0",supset:"\u2283",supseteq:"\u2287",supseteqq:"\u2AC6",supsetneq:"\u228B",supsetneqq:"\u2ACC",supsim:"\u2AC8",supsub:"\u2AD4",supsup:"\u2AD6",swArr:"\u21D9",swarhk:"\u2926",swarrow:"\u2199",swnwar:"\u292A",szlig:"\u00DF"});MathJax.Ajax.loadComplete(a.entityDir+"/s.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/scr.js b/modules/MathJax/jax/input/MathML/entities/scr.js deleted file mode 100644 index 327d97f..0000000 --- a/modules/MathJax/jax/input/MathML/entities/scr.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/scr.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Ascr:"\uD835\uDC9C",Bscr:"\u212C",Cscr:"\uD835\uDC9E",Dscr:"\uD835\uDC9F",Escr:"\u2130",Fscr:"\u2131",Gscr:"\uD835\uDCA2",Hscr:"\u210B",Iscr:"\u2110",Jscr:"\uD835\uDCA5",Kscr:"\uD835\uDCA6",Lscr:"\u2112",Mscr:"\u2133",Nscr:"\uD835\uDCA9",Oscr:"\uD835\uDCAA",Pscr:"\uD835\uDCAB",Qscr:"\uD835\uDCAC",Rscr:"\u211B",Sscr:"\uD835\uDCAE",Tscr:"\uD835\uDCAF",Uscr:"\uD835\uDCB0",Vscr:"\uD835\uDCB1",Wscr:"\uD835\uDCB2",Xscr:"\uD835\uDCB3",Yscr:"\uD835\uDCB4",Zscr:"\uD835\uDCB5",ascr:"\uD835\uDCB6",bscr:"\uD835\uDCB7",cscr:"\uD835\uDCB8",dscr:"\uD835\uDCB9",escr:"\u212F",fscr:"\uD835\uDCBB",gscr:"\u210A",hscr:"\uD835\uDCBD",iscr:"\uD835\uDCBE",jscr:"\uD835\uDCBF",kscr:"\uD835\uDCC0",lscr:"\uD835\uDCC1",mscr:"\uD835\uDCC2",nscr:"\uD835\uDCC3",oscr:"\u2134",pscr:"\uD835\uDCC5",qscr:"\uD835\uDCC6",rscr:"\uD835\uDCC7",sscr:"\uD835\uDCC8",tscr:"\uD835\uDCC9",uscr:"\uD835\uDCCA",vscr:"\uD835\uDCCB",wscr:"\uD835\uDCCC",xscr:"\uD835\uDCCD",yscr:"\uD835\uDCCE",zscr:"\uD835\uDCCF"});MathJax.Ajax.loadComplete(a.entityDir+"/scr.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/t.js b/modules/MathJax/jax/input/MathML/entities/t.js deleted file mode 100644 index 45b766a..0000000 --- a/modules/MathJax/jax/input/MathML/entities/t.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/t.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{THORN:"\u00DE",TRADE:"\u2122",TSHcy:"\u040B",TScy:"\u0426",Tab:"\u0009",Tau:"\u03A4",Tcaron:"\u0164",Tcedil:"\u0162",Tcy:"\u0422",ThickSpace:"\u205F\u200A",ThinSpace:"\u2009",TripleDot:"\u20DB",Tstrok:"\u0166",target:"\u2316",tbrk:"\u23B4",tcaron:"\u0165",tcedil:"\u0163",tcy:"\u0442",tdot:"\u20DB",telrec:"\u2315",there4:"\u2234",therefore:"\u2234",thetasym:"\u03D1",thickapprox:"\u2248",thicksim:"\u223C",thinsp:"\u2009",thkap:"\u2248",thksim:"\u223C",thorn:"\u00FE",timesb:"\u22A0",timesbar:"\u2A31",timesd:"\u2A30",tint:"\u222D",toea:"\u2928",top:"\u22A4",topbot:"\u2336",topcir:"\u2AF1",topfork:"\u2ADA",tosa:"\u2929",tprime:"\u2034",trade:"\u2122",triangledown:"\u25BF",triangleleft:"\u25C3",trianglelefteq:"\u22B4",triangleright:"\u25B9",trianglerighteq:"\u22B5",tridot:"\u25EC",trie:"\u225C",triminus:"\u2A3A",triplus:"\u2A39",trisb:"\u29CD",tritime:"\u2A3B",trpezium:"\u23E2",tscy:"\u0446",tshcy:"\u045B",tstrok:"\u0167",twixt:"\u226C",twoheadleftarrow:"\u219E",twoheadrightarrow:"\u21A0"});MathJax.Ajax.loadComplete(a.entityDir+"/t.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/u.js b/modules/MathJax/jax/input/MathML/entities/u.js deleted file mode 100644 index bbbe556..0000000 --- a/modules/MathJax/jax/input/MathML/entities/u.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/u.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Uacute:"\u00DA",Uarr:"\u219F",Uarrocir:"\u2949",Ubrcy:"\u040E",Ubreve:"\u016C",Ucirc:"\u00DB",Ucy:"\u0423",Udblac:"\u0170",Ugrave:"\u00D9",Umacr:"\u016A",UnderBracket:"\u23B5",UnderParenthesis:"\u23DD",Uogon:"\u0172",UpArrowBar:"\u2912",UpArrowDownArrow:"\u21C5",UpEquilibrium:"\u296E",UpTeeArrow:"\u21A5",UpperLeftArrow:"\u2196",UpperRightArrow:"\u2197",Upsi:"\u03D2",Uring:"\u016E",Utilde:"\u0168",Uuml:"\u00DC",uArr:"\u21D1",uHar:"\u2963",uacute:"\u00FA",uarr:"\u2191",ubrcy:"\u045E",ubreve:"\u016D",ucirc:"\u00FB",ucy:"\u0443",udarr:"\u21C5",udblac:"\u0171",udhar:"\u296E",ufisht:"\u297E",ugrave:"\u00F9",uharl:"\u21BF",uharr:"\u21BE",uhblk:"\u2580",ulcorn:"\u231C",ulcorner:"\u231C",ulcrop:"\u230F",ultri:"\u25F8",umacr:"\u016B",uml:"\u00A8",uogon:"\u0173",uparrow:"\u2191",updownarrow:"\u2195",upharpoonleft:"\u21BF",upharpoonright:"\u21BE",uplus:"\u228E",upsih:"\u03D2",upsilon:"\u03C5",urcorn:"\u231D",urcorner:"\u231D",urcrop:"\u230E",uring:"\u016F",urtri:"\u25F9",utdot:"\u22F0",utilde:"\u0169",utri:"\u25B5",utrif:"\u25B4",uuarr:"\u21C8",uuml:"\u00FC",uwangle:"\u29A7"});MathJax.Ajax.loadComplete(a.entityDir+"/u.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/v.js b/modules/MathJax/jax/input/MathML/entities/v.js deleted file mode 100644 index 9166105..0000000 --- a/modules/MathJax/jax/input/MathML/entities/v.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/v.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{VDash:"\u22AB",Vbar:"\u2AEB",Vcy:"\u0412",Vdashl:"\u2AE6",Verbar:"\u2016",Vert:"\u2016",VerticalLine:"\u007C",VerticalSeparator:"\u2758",VeryThinSpace:"\u200A",vArr:"\u21D5",vBar:"\u2AE8",vBarv:"\u2AE9",vDash:"\u22A8",vangrt:"\u299C",varepsilon:"\u03F5",varkappa:"\u03F0",varnothing:"\u2205",varphi:"\u03D5",varpi:"\u03D6",varpropto:"\u221D",varr:"\u2195",varrho:"\u03F1",varsigma:"\u03C2",varsubsetneq:"\u228A\uFE00",varsubsetneqq:"\u2ACB\uFE00",varsupsetneq:"\u228B\uFE00",varsupsetneqq:"\u2ACC\uFE00",vartheta:"\u03D1",vartriangleleft:"\u22B2",vartriangleright:"\u22B3",vcy:"\u0432",vdash:"\u22A2",vee:"\u2228",veeeq:"\u225A",verbar:"\u007C",vert:"\u007C",vltri:"\u22B2",vnsub:"\u2282\u20D2",vnsup:"\u2283\u20D2",vprop:"\u221D",vrtri:"\u22B3",vsubnE:"\u2ACB\uFE00",vsubne:"\u228A\uFE00",vsupnE:"\u2ACC\uFE00",vsupne:"\u228B\uFE00",vzigzag:"\u299A"});MathJax.Ajax.loadComplete(a.entityDir+"/v.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/w.js b/modules/MathJax/jax/input/MathML/entities/w.js deleted file mode 100644 index ab23116..0000000 --- a/modules/MathJax/jax/input/MathML/entities/w.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/w.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{Wcirc:"\u0174",wcirc:"\u0175",wedbar:"\u2A5F",wedge:"\u2227",wedgeq:"\u2259",wp:"\u2118",wr:"\u2240",wreath:"\u2240"});MathJax.Ajax.loadComplete(a.entityDir+"/w.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/x.js b/modules/MathJax/jax/input/MathML/entities/x.js deleted file mode 100644 index 8ec2433..0000000 --- a/modules/MathJax/jax/input/MathML/entities/x.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/x.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{xcap:"\u22C2",xcirc:"\u25EF",xcup:"\u22C3",xdtri:"\u25BD",xhArr:"\u27FA",xharr:"\u27F7",xlArr:"\u27F8",xlarr:"\u27F5",xmap:"\u27FC",xnis:"\u22FB",xodot:"\u2A00",xoplus:"\u2A01",xotime:"\u2A02",xrArr:"\u27F9",xrarr:"\u27F6",xsqcup:"\u2A06",xuplus:"\u2A04",xutri:"\u25B3",xvee:"\u22C1",xwedge:"\u22C0"});MathJax.Ajax.loadComplete(a.entityDir+"/x.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/y.js b/modules/MathJax/jax/input/MathML/entities/y.js deleted file mode 100644 index c15adb8..0000000 --- a/modules/MathJax/jax/input/MathML/entities/y.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/y.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{YAcy:"\u042F",YIcy:"\u0407",YUcy:"\u042E",Yacute:"\u00DD",Ycirc:"\u0176",Ycy:"\u042B",Yuml:"\u0178",yacute:"\u00FD",yacy:"\u044F",ycirc:"\u0177",ycy:"\u044B",yicy:"\u0457",yucy:"\u044E",yuml:"\u00FF"});MathJax.Ajax.loadComplete(a.entityDir+"/y.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/entities/z.js b/modules/MathJax/jax/input/MathML/entities/z.js deleted file mode 100644 index 8620960..0000000 --- a/modules/MathJax/jax/input/MathML/entities/z.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/entities/z.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){MathJax.Hub.Insert(a.Parse.Entity,{ZHcy:"\u0416",Zacute:"\u0179",Zcaron:"\u017D",Zcy:"\u0417",Zdot:"\u017B",ZeroWidthSpace:"\u200B",Zeta:"\u0396",zacute:"\u017A",zcaron:"\u017E",zcy:"\u0437",zdot:"\u017C",zeetrf:"\u2128",zhcy:"\u0436",zwj:"\u200D",zwnj:"\u200C"});MathJax.Ajax.loadComplete(a.entityDir+"/z.js")})(MathJax.InputJax.MathML); - diff --git a/modules/MathJax/jax/input/MathML/jax.js b/modules/MathJax/jax/input/MathML/jax.js deleted file mode 100644 index cc60a12..0000000 --- a/modules/MathJax/jax/input/MathML/jax.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/MathML/jax.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(c,d){var a;var b=function(e){return MathJax.Localization._.apply(MathJax.Localization,[["MathML",e]].concat([].slice.call(arguments,1)))};c.Parse=MathJax.Object.Subclass({Init:function(e){this.Parse(e)},Parse:function(g){var h;if(typeof g!=="string"){h=g.parentNode}else{h=c.ParseXML(this.preProcessMath.call(this,g));if(h==null){c.Error(["ErrorParsingMathML","Error parsing MathML"])}}var f=h.getElementsByTagName("parsererror")[0];if(f){c.Error(["ParsingError","Error parsing MathML: %1",f.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,"")])}if(h.childNodes.length!==1){c.Error(["MathMLSingleElement","MathML must be formed by a single element"])}if(h.firstChild.nodeName.toLowerCase()==="html"){var e=h.getElementsByTagName("h1")[0];if(e&&e.textContent==="XML parsing error"&&e.nextSibling){c.Error(["ParsingError","Error parsing MathML: %1",String(e.nextSibling.nodeValue).replace(/fatal parsing error: /,"")])}}if(h.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")!=="math"){c.Error(["MathMLRootElement","MathML must be formed by a element, not %1","<"+h.firstChild.nodeName+">"])}this.mml=this.MakeMML(h.firstChild)},MakeMML:function(h){var i=String(h.getAttribute("class")||"");var f,g=h.nodeName.toLowerCase().replace(/^[a-z]+:/,"");var e=(i.match(/(^| )MJX-TeXAtom-([^ ]*)/));if(e){f=this.TeXAtom(e[2])}else{if(!(a[g]&&a[g].isa&&a[g].isa(a.mbase))){MathJax.Hub.signal.Post(["MathML Jax - unknown node type",g]);return a.merror(b("UnknownNodeType","Unknown node type: %1",g))}else{f=a[g]()}}this.AddAttributes(f,h);this.CheckClass(f,f["class"]);this.AddChildren(f,h);if(c.config.useMathMLspacing){f.useMMLspacing=8}return f},TeXAtom:function(f){var e=a.TeXAtom().With({texClass:a.TEXCLASS[f]});if(e.texClass===a.TEXCLASS.OP){e.movesupsub=e.movablelimits=true}return e},CheckClass:function(f,h){h=(h||"").split(/ /);var j=[];for(var g=0,e=h.length;g=2){var l=e.data[0],n=e.data[e.data.length-1];if(l.type==="mo"&&l.Get("fence")&&n.type==="mo"&&n.Get("fence")){if(l.data[0]){e.open=l.data.join("")}if(n.data[0]){e.close=n.data.join("")}}}},preProcessMath:function(f){if(f.match(/^<[a-z]+:/i)&&!f.match(/^<[^<>]* xmlns:/)){f=f.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"')}var e=f.match(/^(])+)>)/i);if(e&&e[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)){f=e[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1")+f.substr(e[0].length)}if(f.match(/^]* xmlns=/)){f=f.replace(/^<(math)/i,'\s*$/,"$2");return f.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity)},trimSpace:function(e){return e.replace(/[\t\n\r]/g," ").replace(/^ +/,"").replace(/ +$/,"").replace(/ +/g," ")},replaceEntity:function(g,f){if(f.match(/^(lt|amp|quot)$/)){return g}if(c.Parse.Entity[f]){return c.Parse.Entity[f]}var h=f.charAt(0).toLowerCase();var e=f.match(/^[a-zA-Z](fr|scr|opf)$/);if(e){h=e[1]}if(!c.Parse.loaded[h]){c.Parse.loaded[h]=true;MathJax.Hub.RestartAfter(MathJax.Ajax.Require(c.entityDir+"/"+h+".js"))}return g}},{loaded:[]});c.Augment({sourceMenuTitle:["OriginalMathML","Original MathML"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Translate:function(e){if(!this.ParseXML){this.ParseXML=this.createParser()}var f,h,i={script:e};if(e.firstChild&&e.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"")==="math"){i.math=e.firstChild;this.prefilterHooks.Execute(i);h=i.math}else{h=MathJax.HTML.getScript(e);if(d.isMSIE){h=h.replace(/( )+$/,"")}i.math=h;this.prefilterHooks.Execute(i);h=i.math}try{f=c.Parse(h).mml}catch(g){if(!g.mathmlError){throw g}f=this.formatError(g,h,e)}i.math=a(f);this.postfilterHooks.Execute(i);return i.math},prefilterMath:function(f,e){return f},prefilterMathML:function(f,e){return f},formatError:function(h,g,e){var f=h.message.replace(/\n.*/,"");MathJax.Hub.signal.Post(["MathML Jax - parse error",f,g,e]);return a.merror(f)},Error:function(e){if(e instanceof Array){e=b.apply(b,e)}throw MathJax.Hub.Insert(Error(e),{mathmlError:true})},parseDOM:function(e){return this.parser.parseFromString(e,"text/xml")},parseMS:function(e){return(this.parser.loadXML(e)?this.parser:null)},parseDIV:function(e){this.div.innerHTML=e.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>");return this.div},parseError:function(e){return null},createMSParser:function(){var j=null;var f=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0","MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"];for(var g=0,e=f.length;g&]/g,"")},formatURL:function(a){return"#"+escape(a)},useLabelIds:true}}});MathJax.InputJax.TeX.Register("math/tex");MathJax.InputJax.TeX.loadComplete("config.js"); - diff --git a/modules/MathJax/jax/input/TeX/jax.js b/modules/MathJax/jax/input/TeX/jax.js deleted file mode 100644 index 365c4a1..0000000 --- a/modules/MathJax/jax/input/TeX/jax.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/input/TeX/jax.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(d,c,i){var h,g="\u00A0";var j=function(l){return MathJax.Localization._.apply(MathJax.Localization,[["TeX",l]].concat([].slice.call(arguments,1)))};var e=MathJax.Object.Subclass({Init:function(m,l){this.global={isInner:l};this.data=[b.start(this.global)];if(m){this.data[0].env=m}this.env=this.data[0].env},Push:function(){var n,l,o,p;for(n=0,l=arguments.length;n":"27E9","\\lt":"27E8","\\gt":"27E9","/":"/","|":["|",{texClass:h.TEXCLASS.ORD}],".":"","\\\\":"\\","\\lmoustache":"23B0","\\rmoustache":"23B1","\\lgroup":"27EE","\\rgroup":"27EF","\\arrowvert":"23D0","\\Arrowvert":"2016","\\bracevert":"23AA","\\Vert":["2225",{texClass:h.TEXCLASS.ORD}],"\\|":["2225",{texClass:h.TEXCLASS.ORD}],"\\vert":["|",{texClass:h.TEXCLASS.ORD}],"\\uparrow":"2191","\\downarrow":"2193","\\updownarrow":"2195","\\Uparrow":"21D1","\\Downarrow":"21D3","\\Updownarrow":"21D5","\\backslash":"\\","\\rangle":"27E9","\\langle":"27E8","\\rbrace":"}","\\lbrace":"{","\\}":"}","\\{":"{","\\rceil":"2309","\\lceil":"2308","\\rfloor":"230B","\\lfloor":"230A","\\lbrack":"[","\\rbrack":"]"},macros:{displaystyle:["SetStyle","D",true,0],textstyle:["SetStyle","T",false,0],scriptstyle:["SetStyle","S",false,1],scriptscriptstyle:["SetStyle","SS",false,2],rm:["SetFont",h.VARIANT.NORMAL],mit:["SetFont",h.VARIANT.ITALIC],oldstyle:["SetFont",h.VARIANT.OLDSTYLE],cal:["SetFont",h.VARIANT.CALIGRAPHIC],it:["SetFont","-tex-mathit"],bf:["SetFont",h.VARIANT.BOLD],bbFont:["SetFont",h.VARIANT.DOUBLESTRUCK],scr:["SetFont",h.VARIANT.SCRIPT],frak:["SetFont",h.VARIANT.FRAKTUR],sf:["SetFont",h.VARIANT.SANSSERIF],tt:["SetFont",h.VARIANT.MONOSPACE],tiny:["SetSize",0.5],Tiny:["SetSize",0.6],scriptsize:["SetSize",0.7],small:["SetSize",0.85],normalsize:["SetSize",1],large:["SetSize",1.2],Large:["SetSize",1.44],LARGE:["SetSize",1.73],huge:["SetSize",2.07],Huge:["SetSize",2.49],arcsin:["NamedFn"],arccos:["NamedFn"],arctan:["NamedFn"],arg:["NamedFn"],cos:["NamedFn"],cosh:["NamedFn"],cot:["NamedFn"],coth:["NamedFn"],csc:["NamedFn"],deg:["NamedFn"],det:"NamedOp",dim:["NamedFn"],exp:["NamedFn"],gcd:"NamedOp",hom:["NamedFn"],inf:"NamedOp",ker:["NamedFn"],lg:["NamedFn"],lim:"NamedOp",liminf:["NamedOp","lim inf"],limsup:["NamedOp","lim sup"],ln:["NamedFn"],log:["NamedFn"],max:"NamedOp",min:"NamedOp",Pr:"NamedOp",sec:["NamedFn"],sin:["NamedFn"],sinh:["NamedFn"],sup:"NamedOp",tan:["NamedFn"],tanh:["NamedFn"],limits:["Limits",1],nolimits:["Limits",0],overline:["UnderOver","00AF"],underline:["UnderOver","005F"],overbrace:["UnderOver","23DE",1],underbrace:["UnderOver","23DF",1],overrightarrow:["UnderOver","2192"],underrightarrow:["UnderOver","2192"],overleftarrow:["UnderOver","2190"],underleftarrow:["UnderOver","2190"],overleftrightarrow:["UnderOver","2194"],underleftrightarrow:["UnderOver","2194"],overset:"Overset",underset:"Underset",stackrel:["Macro","\\mathrel{\\mathop{#2}\\limits^{#1}}",2],over:"Over",overwithdelims:"Over",atop:"Over",atopwithdelims:"Over",above:"Over",abovewithdelims:"Over",brace:["Over","{","}"],brack:["Over","[","]"],choose:["Over","(",")"],frac:"Frac",sqrt:"Sqrt",root:"Root",uproot:["MoveRoot","upRoot"],leftroot:["MoveRoot","leftRoot"],left:"LeftRight",right:"LeftRight",middle:"Middle",llap:"Lap",rlap:"Lap",raise:"RaiseLower",lower:"RaiseLower",moveleft:"MoveLeftRight",moveright:"MoveLeftRight",",":["Spacer",h.LENGTH.THINMATHSPACE],":":["Spacer",h.LENGTH.MEDIUMMATHSPACE],">":["Spacer",h.LENGTH.MEDIUMMATHSPACE],";":["Spacer",h.LENGTH.THICKMATHSPACE],"!":["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],enspace:["Spacer",".5em"],quad:["Spacer","1em"],qquad:["Spacer","2em"],thinspace:["Spacer",h.LENGTH.THINMATHSPACE],negthinspace:["Spacer",h.LENGTH.NEGATIVETHINMATHSPACE],hskip:"Hskip",hspace:"Hskip",kern:"Hskip",mskip:"Hskip",mspace:"Hskip",mkern:"Hskip",Rule:["Rule"],Space:["Rule","blank"],big:["MakeBig",h.TEXCLASS.ORD,0.85],Big:["MakeBig",h.TEXCLASS.ORD,1.15],bigg:["MakeBig",h.TEXCLASS.ORD,1.45],Bigg:["MakeBig",h.TEXCLASS.ORD,1.75],bigl:["MakeBig",h.TEXCLASS.OPEN,0.85],Bigl:["MakeBig",h.TEXCLASS.OPEN,1.15],biggl:["MakeBig",h.TEXCLASS.OPEN,1.45],Biggl:["MakeBig",h.TEXCLASS.OPEN,1.75],bigr:["MakeBig",h.TEXCLASS.CLOSE,0.85],Bigr:["MakeBig",h.TEXCLASS.CLOSE,1.15],biggr:["MakeBig",h.TEXCLASS.CLOSE,1.45],Biggr:["MakeBig",h.TEXCLASS.CLOSE,1.75],bigm:["MakeBig",h.TEXCLASS.REL,0.85],Bigm:["MakeBig",h.TEXCLASS.REL,1.15],biggm:["MakeBig",h.TEXCLASS.REL,1.45],Biggm:["MakeBig",h.TEXCLASS.REL,1.75],mathord:["TeXAtom",h.TEXCLASS.ORD],mathop:["TeXAtom",h.TEXCLASS.OP],mathopen:["TeXAtom",h.TEXCLASS.OPEN],mathclose:["TeXAtom",h.TEXCLASS.CLOSE],mathbin:["TeXAtom",h.TEXCLASS.BIN],mathrel:["TeXAtom",h.TEXCLASS.REL],mathpunct:["TeXAtom",h.TEXCLASS.PUNCT],mathinner:["TeXAtom",h.TEXCLASS.INNER],vcenter:["TeXAtom",h.TEXCLASS.VCENTER],mathchoice:["Extension","mathchoice"],buildrel:"BuildRel",hbox:["HBox",0],text:"HBox",mbox:["HBox",0],fbox:"FBox",strut:"Strut",mathstrut:["Macro","\\vphantom{(}"],phantom:"Phantom",vphantom:["Phantom",1,0],hphantom:["Phantom",0,1],smash:"Smash",acute:["Accent","00B4"],grave:["Accent","0060"],ddot:["Accent","00A8"],tilde:["Accent","007E"],bar:["Accent","00AF"],breve:["Accent","02D8"],check:["Accent","02C7"],hat:["Accent","005E"],vec:["Accent","2192"],dot:["Accent","02D9"],widetilde:["Accent","007E",1],widehat:["Accent","005E",1],matrix:"Matrix",array:"Matrix",pmatrix:["Matrix","(",")"],cases:["Matrix","{","","left left",null,".1em",null,true],eqalign:["Matrix",null,null,"right left",h.LENGTH.THICKMATHSPACE,".5em","D"],displaylines:["Matrix",null,null,"center",null,".5em","D"],cr:"Cr","\\":"CrLaTeX",newline:"Cr",hline:["HLine","solid"],hdashline:["HLine","dashed"],eqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],leqalignno:["Matrix",null,null,"right left right",h.LENGTH.THICKMATHSPACE+" 3em",".5em","D"],bmod:["Macro","\\mathbin{\\mmlToken{mo}{mod}}"],pmod:["Macro","\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}",1],mod:["Macro","\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1",1],pod:["Macro","\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)",1],iff:["Macro","\\;\\Longleftrightarrow\\;"],skew:["Macro","{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}",3],mathcal:["Macro","{\\cal #1}",1],mathscr:["Macro","{\\scr #1}",1],mathrm:["Macro","{\\rm #1}",1],mathbf:["Macro","{\\bf #1}",1],mathbb:["Macro","{\\bbFont #1}",1],Bbb:["Macro","{\\bbFont #1}",1],mathit:["Macro","{\\it #1}",1],mathfrak:["Macro","{\\frak #1}",1],mathsf:["Macro","{\\sf #1}",1],mathtt:["Macro","{\\tt #1}",1],textrm:["Macro","\\mathord{\\rm\\text{#1}}",1],textit:["Macro","\\mathord{\\it{\\text{#1}}}",1],textbf:["Macro","\\mathord{\\bf{\\text{#1}}}",1],pmb:["Macro","\\rlap{#1}\\kern1px{#1}",1],TeX:["Macro","T\\kern-.14em\\lower.5ex{E}\\kern-.115em X"],LaTeX:["Macro","L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX"]," ":["Macro","\\text{ }"],not:"Not",dots:"Dots",space:"Tilde",begin:"Begin",end:"End",newcommand:["Extension","newcommand"],renewcommand:["Extension","newcommand"],newenvironment:["Extension","newcommand"],renewenvironment:["Extension","newcommand"],def:["Extension","newcommand"],let:["Extension","newcommand"],verb:["Extension","verb"],boldsymbol:["Extension","boldsymbol"],tag:["Extension","AMSmath"],notag:["Extension","AMSmath"],label:["Extension","AMSmath"],ref:["Extension","AMSmath"],eqref:["Extension","AMSmath"],nonumber:["Macro","\\notag"],unicode:["Extension","unicode"],color:"Color",href:["Extension","HTML"],"class":["Extension","HTML"],style:["Extension","HTML"],cssId:["Extension","HTML"],bbox:["Extension","bbox"],mmlToken:"MmlToken",require:"Require"},environment:{array:["AlignedArray"],matrix:["Array",null,null,null,"c"],pmatrix:["Array",null,"(",")","c"],bmatrix:["Array",null,"[","]","c"],Bmatrix:["Array",null,"\\{","\\}","c"],vmatrix:["Array",null,"\\vert","\\vert","c"],Vmatrix:["Array",null,"\\Vert","\\Vert","c"],cases:["Array",null,"\\{",".","ll",null,".1em"],equation:[null,"Equation"],"equation*":[null,"Equation"],eqnarray:["ExtensionEnv",null,"AMSmath"],"eqnarray*":["ExtensionEnv",null,"AMSmath"],align:["ExtensionEnv",null,"AMSmath"],"align*":["ExtensionEnv",null,"AMSmath"],aligned:["ExtensionEnv",null,"AMSmath"],multline:["ExtensionEnv",null,"AMSmath"],"multline*":["ExtensionEnv",null,"AMSmath"],split:["ExtensionEnv",null,"AMSmath"],gather:["ExtensionEnv",null,"AMSmath"],"gather*":["ExtensionEnv",null,"AMSmath"],gathered:["ExtensionEnv",null,"AMSmath"],alignat:["ExtensionEnv",null,"AMSmath"],"alignat*":["ExtensionEnv",null,"AMSmath"],alignedat:["ExtensionEnv",null,"AMSmath"]},p_height:1.2/0.85});if(this.config.Macros){var l=this.config.Macros;for(var m in l){if(l.hasOwnProperty(m)){if(typeof(l[m])==="string"){f.macros[m]=["Macro",l[m]]}else{f.macros[m]=["Macro"].concat(l[m])}f.macros[m].isUser=true}}}};var a=MathJax.Object.Subclass({Init:function(m,n){this.string=m;this.i=0;this.macroCount=0;var l;if(n){l={};for(var o in n){if(n.hasOwnProperty(o)){l[o]=n[o]}}}this.stack=d.Stack(l,!!n);this.Parse();this.Push(b.stop())},Parse:function(){var m,l;while(this.i=55296&&l<56320){m+=this.string.charAt(this.i++)}if(f.special[m]){this[f.special[m]](m)}else{if(f.letter.test(m)){this.Variable(m)}else{if(f.digit.test(m)){this.Number(m)}else{this.Other(m)}}}}},Push:function(){this.stack.Push.apply(this.stack,arguments)},mml:function(){if(this.stack.Top().type!=="mml"){return null}return this.stack.Top().data[0]},mmlToken:function(l){return l},ControlSequence:function(o){var l=this.GetCS(),n=this.csFindMacro(l);if(n){if(!(n instanceof Array)){n=[n]}var m=n[0];if(!(m instanceof Function)){m=this[m]}m.apply(this,[o+l].concat(n.slice(1)))}else{if(f.mathchar0mi[l]){this.csMathchar0mi(l,f.mathchar0mi[l])}else{if(f.mathchar0mo[l]){this.csMathchar0mo(l,f.mathchar0mo[l])}else{if(f.mathchar7[l]){this.csMathchar7(l,f.mathchar7[l])}else{if(f.delimiter["\\"+l]!=null){this.csDelimiter(l,f.delimiter["\\"+l])}else{this.csUndefined(o+l)}}}}}},csFindMacro:function(l){return f.macros[l]},csMathchar0mi:function(l,n){var m={mathvariant:h.VARIANT.ITALIC};if(n instanceof Array){m=n[1];n=n[0]}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csMathchar0mo:function(l,n){var m={stretchy:false};if(n instanceof Array){m=n[1];m.stretchy=false;n=n[0]}this.Push(this.mmlToken(h.mo(h.entity("#x"+n)).With(m)))},csMathchar7:function(l,n){var m={mathvariant:h.VARIANT.NORMAL};if(n instanceof Array){m=n[1];n=n[0]}if(this.stack.env.font){m.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.entity("#x"+n)).With(m)))},csDelimiter:function(l,n){var m={};if(n instanceof Array){m=n[1];n=n[0]}if(n.length===4){n=h.entity("#x"+n)}else{n=h.chars(n)}this.Push(this.mmlToken(h.mo(n).With({fence:false,stretchy:false}).With(m)))},csUndefined:function(l){d.Error(["UndefinedControlSequence","Undefined control sequence %1",l])},Variable:function(m){var l={};if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(h.mi(h.chars(m)).With(l)))},Number:function(o){var l,m=this.string.slice(this.i-1).match(f.number);if(m){l=h.mn(m[0].replace(/[{}]/g,""));this.i+=m[0].length-1}else{l=h.mo(h.chars(o))}if(this.stack.env.font){l.mathvariant=this.stack.env.font}this.Push(this.mmlToken(l))},Open:function(l){this.Push(b.open())},Close:function(l){this.Push(b.close())},Tilde:function(l){this.Push(h.mtext(h.chars(g)))},Space:function(l){},Superscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sup]){d.Error(["DoubleExponent","Double exponent: use braces to clarify"])}l=m.sup}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.over]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.over}else{m=h.msubsup(m,null,null);l=m.sup}}this.Push(b.subsup(m).With({position:l,primes:o}))},Subscript:function(p){if(this.GetNext().match(/\d/)){this.string=this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)}var l,o,m,n=this.stack.Top();if(n.type==="prime"){m=n.data[0];o=n.data[1];this.stack.Pop()}else{m=this.stack.Prev();if(!m){m=h.mi("")}}if(m.isEmbellishedWrapper){m=m.data[0].data[0]}if(m.type==="msubsup"){if(m.data[m.sub]){d.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])}l=m.sub}else{if(m.movesupsub){if(m.type!=="munderover"||m.data[m.under]){if(m.movablelimits&&m.isa(h.mi)){m=this.mi2mo(m)}m=h.munderover(m,null,null).With({movesupsub:true})}l=m.under}else{m=h.msubsup(m,null,null);l=m.sub}}this.Push(b.subsup(m).With({position:l,primes:o}))},PRIME:"\u2032",SMARTQUOTE:"\u2019",Prime:function(n){var m=this.stack.Prev();if(!m){m=h.mi()}if(m.type==="msubsup"&&m.data[m.sup]){d.Error(["DoubleExponentPrime","Prime causes double exponent: use braces to clarify"])}var l="";this.i--;do{l+=this.PRIME;this.i++,n=this.GetNext()}while(n==="'"||n===this.SMARTQUOTE);l=["","\u2032","\u2033","\u2034","\u2057"][l.length]||l;this.Push(b.prime(m,this.mmlToken(h.mo(l))))},mi2mo:function(l){var m=h.mo();m.Append.apply(m,l.data);var n;for(n in m.defaults){if(m.defaults.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}for(n in h.copyAttributes){if(h.copyAttributes.hasOwnProperty(n)&&l[n]!=null){m[n]=l[n]}}return m},Comment:function(l){while(this.id.config.MAXMACROS){d.Error(["MaxMacroSub1","MathJax maximum macro substitution count exceeded; is there a recursive macro call?"])}},Matrix:function(m,o,t,q,s,n,l,u){var r=this.GetNext();if(r===""){d.Error(["MissingArgFor","Missing argument for %1",m])}if(r==="{"){this.i++}else{this.string=r+"}"+this.string.slice(this.i+1);this.i=0}var p=b.array().With({requireClose:true,arraydef:{rowspacing:(n||"4pt"),columnspacing:(s||"1em")}});if(u){p.isCases=true}if(o||t){p.open=o;p.close=t}if(l==="D"){p.arraydef.displaystyle=true}if(q!=null){p.arraydef.columnalign=q}this.Push(p)},Entry:function(o){this.Push(b.cell().With({isEntry:true,name:o}));if(this.stack.Top().isCases){var n=this.string;var r=0,p=this.i,l=n.length;while(pd.config.MAXMACROS){d.Error(["MaxMacroSub2","MathJax maximum substitution count exceeded; is there a recursive latex environment?"])}if(!(o instanceof Array)){o=[o]}var l=b.begin().With({name:n,end:o[1],parse:this});if(o[0]&&this[o[0]]){l=this[o[0]].apply(this,[l].concat(o.slice(2)))}this.Push(l)},End:function(l){this.Push(b.end().With({name:this.GetArgument(l)}))},envFindName:function(l){return f.environment[l]},Equation:function(l,m){return m},ExtensionEnv:function(m,l){this.Extension(m.name,l,"environment")},Array:function(m,o,t,r,s,n,l,p){if(!r){r=this.GetArgument("\\begin{"+m.name+"}")}var u=("c"+r).replace(/[^clr|:]/g,"").replace(/[^|:]([|:])+/g,"$1");r=r.replace(/[^clr]/g,"").split("").join(" ");r=r.replace(/l/g,"left").replace(/r/g,"right").replace(/c/g,"center");var q=b.array().With({arraydef:{columnalign:r,columnspacing:(s||"1em"),rowspacing:(n||"4pt")}});if(u.match(/[|:]/)){if(u.charAt(0).match(/[|:]/)){q.frame.push("left");q.frame.dashed=u.charAt(0)===":"}if(u.charAt(u.length-1).match(/[|:]/)){q.frame.push("right")}u=u.substr(1,u.length-2);q.arraydef.columnlines=u.split("").join(" ").replace(/[^|: ]/g,"none").replace(/\|/g,"solid").replace(/:/g,"dashed")}if(o){q.open=this.convertDelimiter(o)}if(t){q.close=this.convertDelimiter(t)}if(l==="D"){q.arraydef.displaystyle=true}if(l==="S"){q.arraydef.scriptlevel=1}if(p){q.arraydef.useHeight=false}this.Push(m);return q},AlignedArray:function(l){var m=this.GetBrackets("\\begin{"+l.name+"}");return this.setArrayAlign(this.Array.apply(this,arguments),m)},setArrayAlign:function(m,l){l=this.trimSpaces(l||"");if(l==="t"){m.arraydef.align="baseline 1"}else{if(l==="b"){m.arraydef.align="baseline -1"}else{if(l==="c"){m.arraydef.align="center"}else{if(l){m.arraydef.align=l}}}}return m},convertDelimiter:function(l){if(l){l=f.delimiter[l]}if(l==null){return null}if(l instanceof Array){l=l[0]}if(l.length===4){l=String.fromCharCode(parseInt(l,16))}return l},trimSpaces:function(l){if(typeof(l)!="string"){return l}return l.replace(/^\s+|\s+$/g,"")},nextIsSpace:function(){return this.string.charAt(this.i).match(/[ \n\r\t]/)},GetNext:function(){while(this.nextIsSpace()){this.i++}return this.string.charAt(this.i)},GetCS:function(){var l=this.string.slice(this.i).match(/^([a-z]+|.) ?/i);if(l){this.i+=l[1].length;return l[1]}else{this.i++;return" "}},GetArgument:function(m,n){switch(this.GetNext()){case"":if(!n){d.Error(["MissingArgFor","Missing argument for %1",m])}return null;case"}":if(!n){d.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"])}return null;case"\\":this.i++;return"\\"+this.GetCS();case"{":var l=++this.i,o=1;while(this.im.length){d.Error(["IllegalMacroParam","Illegal macro parameter reference"])}o=this.AddArgs(this.AddArgs(o,p),m[q-1]);p=""}}else{p+=q}}}return this.AddArgs(o,p)},AddArgs:function(m,l){if(l.match(/^[a-z]/i)&&m.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)){m+=" "}if(m.length+l.length>d.config.MAXBUFFER){d.Error(["MaxBufferSize","MathJax internal buffer size exceeded; is there a recursive macro call?"])}return m+l}});d.Augment({Stack:e,Parse:a,Definitions:f,Startup:k,config:{MAXMACROS:10000,MAXBUFFER:5*1024},sourceMenuTitle:["TeXCommands","TeX Commands"],prefilterHooks:MathJax.Callback.Hooks(true),postfilterHooks:MathJax.Callback.Hooks(true),Config:function(){this.SUPER(arguments).Config.apply(this,arguments);if(this.config.equationNumbers.autoNumber!=="none"){if(!this.config.extensions){this.config.extensions=[]}this.config.extensions.push("AMSmath.js")}},Translate:function(l){var m,n=false,p=MathJax.HTML.getScript(l);var r=(l.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/)!=null);var q={math:p,display:r,script:l};this.prefilterHooks.Execute(q);p=q.math;try{m=d.Parse(p).mml()}catch(o){if(!o.texError){throw o}m=this.formatError(o,p,r,l);n=true}if(m.inferred){m=h.apply(MathJax.ElementJax,m.data)}else{m=h(m)}if(r){m.root.display="block"}if(n){m.texError=true}q.math=m;this.postfilterHooks.Execute(q);return q.math},prefilterMath:function(m,n,l){return m},postfilterMath:function(m,n,l){this.combineRelations(m.root);return m},formatError:function(o,n,p,l){var m=o.message.replace(/\n.*/,"");c.signal.Post(["TeX Jax - parse error",m,n,p,l]);return h.merror(m)},Error:function(l){if(l instanceof Array){l=j.apply(j,l)}throw c.Insert(Error(l),{texError:true})},Macro:function(l,m,n){f.macros[l]=["Macro"].concat([].slice.call(arguments,1));f.macros[l].isUser=true},mfenced:function(n,m,o){var l=h.mrow();l.open=n;l.close=o;if(n){l.Append(h.mo(n).With({fence:true,texClass:h.TEXCLASS.OPEN}))}if(m.type==="mrow"){l.Append.apply(l,m.data)}else{l.Append(m)}if(o){l.Append(h.mo(o).With({fence:true,texClass:h.TEXCLASS.CLOSE}))}return l},combineRelations:function(p){var q,l,o,n;for(q=0,l=p.data.length;qthis.data.length){this.selection=1}var k=this;while(k.type!=="math"){k=k.inherit}var h=MathJax.Hub.getJaxFor(k.inputID),j=!!h.hover;h.Update();if(j){var i=document.getElementById(h.inputID+"-Span");MathJax.Extension.MathEvents.Hover.Hover(h,i)}return MathJax.Extension.MathEvents.Event.False(l)},HTMLsetStatus:function(h){this.messageID=MathJax.Message.Set((this.data[1]&&this.data[1].isToken)?this.data[1].data.join(""):this.data[1].toString())},HTMLclearStatus:function(h){if(this.messageID){MathJax.Message.Clear(this.messageID,0)}delete this.messageID},HTMLtooltipOver:function(i){if(!i){i=window.event}if(b){clearTimeout(b);b=null}if(f){clearTimeout(f)}var h=i.pageX;var k=i.pageY;if(h==null){h=i.clientX+document.body.scrollLeft+document.documentElement.scrollLeft;k=i.clientY+document.body.scrollTop+document.documentElement.scrollTop}var j=MathJax.Callback(["HTMLtooltipPost",this,h+a.offsetX,k+a.offsetY]);f=setTimeout(j,a.delayPost)},HTMLtooltipOut:function(h){if(f){clearTimeout(f);f=null}if(b){clearTimeout(b)}var i=MathJax.Callback(["HTMLtooltipClear",this,80]);b=setTimeout(i,a.delayClear)},HTMLtooltipPost:function(o,m){f=null;if(b){clearTimeout(b);b=null}var p=this.HTMLtooltip;p.style.display="block";p.style.opacity="";p.style.filter=e.config.styles["#MathJax_Tooltip"].filter;if(this===d){return}p.style.left=o+"px";p.style.top=m+"px";p.innerHTML='';var q=p.insertBefore(e.EmExSpan.cloneNode(true),p.firstChild);var l=q.firstChild.offsetHeight/60,h=q.lastChild.firstChild.offsetHeight/60;e.em=e.outerEm=c.mbase.prototype.em=h;var i=Math.floor(Math.max(e.config.minScaleAdjust/100,(l/e.TeX.x_height)/h)*e.config.scale);p.firstChild.style.fontSize=i+"%";q.parentNode.removeChild(q);var n=e.createStack(p.firstChild.firstChild);var k=e.createBox(n);try{e.Measured(this.data[1].toHTML(k),k)}catch(j){if(!j.restart){throw j}p.style.display="none";MathJax.Callback.After(["HTMLtooltipPost",this,o,m],j.restart);return}e.placeBox(k,0,0);e.createRule(p.firstChild.firstChild,k.bbox.h,k.bbox.d,0);d=this},HTMLtooltipClear:function(i){var h=this.HTMLtooltip;if(i<=0){h.style.display="none";h.style.opacity=h.style.filter="";b=null}else{h.style.opacity=i/100;h.style.filter="alpha(opacity="+i+")";b=setTimeout(MathJax.Callback(["HTMLtooltipClear",this,i-20]),50)}}});MathJax.Hub.Browser.Select({MSIE:function(h){e.msieHitBoxBug=true}});MathJax.Hub.Startup.signal.Post("HTML-CSS maction Ready");MathJax.Ajax.loadComplete(e.autoloadDir+"/maction.js")}); - diff --git a/modules/MathJax/jax/output/HTML-CSS/autoload/menclose.js b/modules/MathJax/jax/output/HTML-CSS/autoload/menclose.js deleted file mode 100644 index 63e38dd..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/autoload/menclose.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/autoload/menclose.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var d="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];var c="http://www.w3.org/2000/svg";var f="urn:schemas-microsoft-com:vml";var e="mjxvml";a.menclose.Augment({toHTML:function(ab){var j=this.getValues("notation","thickness","padding","mathcolor","color");if(j.color&&!this.mathcolor){j.mathcolor=j.color}if(j.thickness==null){j.thickness=".075em"}if(j.padding==null){j.padding=".2em"}ab=this.HTMLcreateSpan(ab);var U=this.HTMLgetMu(ab),ae=this.HTMLgetScale();var V=b.length2em(j.padding,U,1/b.em)*ae;var M=b.length2em(j.thickness,U,1/b.em);var C=b.Em(M)+" solid";var v=b.createStack(ab);var s=b.createBox(v);this.HTMLmeasureChild(0,s);var J=s.bbox.h+V+M,O=s.bbox.d+V+M,k=s.bbox.w+2*(V+M);var N=b.createFrame(v,J+O,0,k,M,"none");N.id="MathJax-frame-"+this.spanID;b.addBox(v,N);v.insertBefore(N,s);var n=MathJax.Hub.SplitList(j.notation);var o=0,S=0,q=0,z=0,K=0,I=0;var Q,g;var G,ac,P;if(!j.mathcolor){j.mathcolor="black"}else{ab.style.color=j.mathcolor}for(var aa=0,Y=n.length;aaj.bbox.rw){j.bbox.rw=j.bbox.w}if(k.bbox.h>j.bbox.h){j.bbox.h=k.bbox.h}if(k.bbox.d>j.bbox.d){j.bbox.d=k.bbox.d}}}this.HTMLhandleSpace(k);this.HTMLhandleColor(k);return k},HTMLimgLoaded:function(f,e){if(typeof(f)==="string"){e=f}this.img.status=(e||"OK")},HTMLimgError:function(){this.img.img.onload("error")}},{GLYPH:{}});MathJax.Hub.Startup.signal.Post("HTML-CSS mglyph Ready");MathJax.Ajax.loadComplete(b.autoloadDir+"/mglyph.js")}); - diff --git a/modules/MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js b/modules/MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js deleted file mode 100644 index b8d6237..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];a.mmultiscripts.Augment({toHTML:function(K,I,C){K=this.HTMLcreateSpan(K);var Q=this.HTMLgetScale();var m=b.createStack(K),f;var k=b.createBox(m);if(this.data[this.base]){var l=this.data[this.base].toHTML(k);if(C!=null){this.data[this.base].HTMLstretchV(k,I,C)}else{if(I!=null){this.data[this.base].HTMLstretchH(k,I)}}b.Measured(l,k)}else{k.bbox=this.HTMLzeroBBox()}var O=b.TeX.x_height*Q,B=b.TeX.scriptspace*Q*0.75;var A=this.HTMLgetScripts(m,B);var n=A[0],e=A[1],x=A[2],j=A[3];var g=this.HTMLgetScale();for(var L=1;L0){y+=F;w-=F}}y=Math.max(y,J.superscriptshift);w=Math.max(w,J.subscriptshift);if(e){b.placeBox(e,o+k.bbox.w+B,y)}if(j){b.placeBox(j,o+P-j.bbox.w,y)}if(n){b.placeBox(n,o+k.bbox.w+B-P,-w)}if(x){b.placeBox(x,o-x.bbox.w,-w)}}}this.HTMLhandleSpace(K);this.HTMLhandleColor(K);return K},HTMLgetScripts:function(p,q){var o,d,e=[];var n=1,g=this.data.length,f=0;for(var h=0;h<4;h+=2){while(no.bbox.w){b.createBlank(o,d.bbox.w-o.bbox.w);o.bbox.w=d.bbox.w;o.bbox.rw=Math.max(o.bbox.w,o.bbox.rw)}}}if(d){f=d.bbox.w}else{if(o){f=o.bbox.w}}}n++;f=0}for(l=0;l<4;l++){if(e[l]){e[l].bbox.w+=q;e[l].bbox.rw=Math.max(e[l].bbox.w,e[l].bbox.rw);this.HTMLcleanBBox(e[l].bbox)}}return e},HTMLstretchH:a.mbase.HTMLstretchH,HTMLstretchV:a.mbase.HTMLstretchV});MathJax.Hub.Startup.signal.Post("HTML-CSS mmultiscripts Ready");MathJax.Ajax.loadComplete(b.autoloadDir+"/mmultiscripts.js")}); - diff --git a/modules/MathJax/jax/output/HTML-CSS/autoload/ms.js b/modules/MathJax/jax/output/HTML-CSS/autoload/ms.js deleted file mode 100644 index 7d93239..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/autoload/ms.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/autoload/ms.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];a.ms.Augment({toHTML:function(e){e=this.HTMLhandleSize(this.HTMLcreateSpan(e));var d=this.getValues("lquote","rquote");var g=this.data.join("");var f=[];if(d.lquote.length===1){f.push(this.HTMLquoteRegExp(d.lquote))}if(d.rquote.length===1){f.push(this.HTMLquoteRegExp(d.rquote))}if(f.length){g=g.replace(RegExp("("+f.join("|")+")","g"),"\\$1")}this.HTMLhandleVariant(e,this.HTMLgetVariant(),d.lquote+g+d.rquote);this.HTMLhandleSpace(e);this.HTMLhandleColor(e);return e},HTMLquoteRegExp:function(d){return d.replace(/([.*+?|{}()\[\]\\])/g,"\\$1")}});a.ms.prototype.defaults.mathvariant="monospace";MathJax.Hub.Startup.signal.Post("HTML-CSS ms Ready");MathJax.Ajax.loadComplete(b.autoloadDir+"/ms.js")}); - diff --git a/modules/MathJax/jax/output/HTML-CSS/autoload/mtable.js b/modules/MathJax/jax/output/HTML-CSS/autoload/mtable.js deleted file mode 100644 index 829297d..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/autoload/mtable.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/autoload/mtable.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,b=MathJax.OutputJax["HTML-CSS"];a.mtable.Augment({toHTML:function(t){t=this.HTMLcreateSpan(t);if(this.data.length===0){return t}var K=this.getValues("columnalign","rowalign","columnspacing","rowspacing","columnwidth","equalcolumns","equalrows","columnlines","rowlines","frame","framespacing","align","useHeight","width","side","minlabelspacing");var aJ=K.width.match(/%$/);var ay=b.createStack(t);var aG=this.HTMLgetScale(),aA=this.HTMLgetMu(t),aB=-1;var aq=[],au=[],ak=[],aw=[],av=[],af,ae,ap=-1,ad,ao,Z,aF,R,aC,aO=[];var al=b.FONTDATA.baselineskip*aG*K.useHeight,aT,I=b.FONTDATA.lineH*aG,O=b.FONTDATA.lineD*aG;for(af=0,ad=this.data.length;afap){ap=ae}av[ae]=b.createStack(b.createBox(ay));ak[ae]=-b.BIGDIMEN}aw[af][ae]=b.createBox(av[ae]);aO.push(aF.data[ae-Z].toHTML(aw[af][ae]))}}b.MeasureSpans(aO);for(af=0,ad=this.data.length;afaq[ae]){aq[ae]=aS*aL.h/aT}if(aS*aL.d/aT>au[ae]){au[ae]=aS*aL.d/aT}}}else{if(aC.HTMLcanStretch("Horizontal")){aS=b.length2em(aS,aA,aL.w);if(aS>ak[ae]){ak[ae]=aS}}}}}if(aw[af][ae].bbox.h>aq[af]){aq[af]=aw[af][ae].bbox.h}if(aw[af][ae].bbox.d>au[af]){au[af]=aw[af][ae].bbox.d}if(aw[af][ae].bbox.w>ak[ae]){ak[ae]=aw[af][ae].bbox.w}}}if(aq[0]+au[0]){aq[0]=Math.max(aq[0],I)}if(aq[aw.length-1]+au[aw.length-1]){au[aw.length-1]=Math.max(au[aw.length-1],O)}var aE=MathJax.Hub.SplitList;var az=aE(K.columnspacing),aQ=aE(K.rowspacing),e=aE(K.columnalign),E=aE(K.rowalign),d=aE(K.columnlines),z=aE(K.rowlines),aM=aE(K.columnwidth),V=[];for(af=0,ad=az.length;afaw.length){ab=aw.length}}aj=0;aU=-(aT+aH)+aq[0];for(af=0,ad=ab-1;af0.98){S=0.98/ag;ag=0.98}}else{if(K.width==="auto"){if(ag>0.98){S=L/(B+L);ac=B+L}else{ac=B/(1-ag)}}else{ac=b.length2em(K.width,aA);for(af=0,ad=Math.min(ap+1,az.length);af0.01){if(ah&&ac>B){ac=(ac-B)/ah;for(af=0,ad=at.length;af=b.linebreakWidth||i.penalty==e.newline)){this.HTMLaddLine(m,g,i.index,f,i.values,j);g=i.index.slice(0);j=true;k=this.HTMLgetAlign(f,i.values);h=this.HTMLgetShift(f,i.values,k);if(k===a.INDENTALIGN.CENTER){h=0}i.W=i.shift=i.scanW=h;i.penalty=e.nobreak}f.isLast=true;this.HTMLaddLine(m,g,[],f,c,j);if(l){m.style.width="100%";if(o.type==="math"){n.bbox.width="100%"}}this.HTMLhandleSpace(n);this.HTMLhandleColor(n);n.bbox.isMultiline=true;return n},HTMLbetterBreak:function(h,f){if(this.isToken){return false}if(this.isEmbellished()){h.embellished=this;return this.CoreMO().HTMLbetterBreak(h,f)}if(this.linebreakContainer){return false}var p=h.index.slice(0),n=h.index.shift(),l=this.data.length,k,q,j,o=(h.index.length>0),g=false;if(n==null){n=-1}if(!o){n++;h.W+=h.w;h.w=0}j=h.scanW=h.W;h.nest++;while(n0){var k=b.FONTDATA.baselineskip*f.scale;var i=(f.values.lineleading==null?f.VALUES:f.values).lineleading;f.Y-=Math.max(k,f.d+line.bbox.h+i)}b.alignBox(line,m,f.Y);f.d=line.bbox.d;f.values=o;f.n++},HTMLgetAlign:function(i,f){var j=f,g=i.values,h=i.VALUES,k;if(i.n===0){k=j.indentalignfirst||g.indentalignfirst||h.indentalignfirst}else{if(i.isLast){k=g.indentalignlast||h.indentalignlast}else{k=g.indentalign||h.indentalign}}if(k===a.INDENTALIGN.INDENTALIGN){k=g.indentalign||h.indentalign}if(k===a.INDENTALIGN.AUTO){k=(i.isTop?this.displayAlign:a.INDENTALIGN.LEFT)}return k},HTMLgetShift:function(j,g,l){if(l===a.INDENTALIGN.CENTER){return 0}var k=g,h=j.values,i=j.VALUES,f;if(j.n===0){f=k.indentshiftfirst||h.indentshiftfirst||i.indentshiftfirst}else{if(j.isLast){f=h.indentshiftlast||i.indentshiftlast}else{f=h.indentshift||i.indentshift}}if(f===a.INDENTSHIFT.INDENTSHIFT){f=h.indentshift||i.indentshift}if(f==="auto"||f===""){f=(j.isTSop?this.displayIndent:"0")}return b.length2em(f,0)},HTMLmoveLine:function(o,f,l,n,g){var k=o[0],h=f[0];if(k==null){k=-1}if(h==null){h=this.data.length-1}if(k===h&&o.length>1){this.data[k].HTMLmoveSlice(o.slice(1),f.slice(1),l,n,g,"paddingLeft")}else{var m=n.last;n.last=false;while(k0),g=false;if(r==null){r=-1}if(!s){r++;h.W+=h.w;h.w=0}l=h.scanW=h.W;h.nest++;if(!this.dataI){this.dataI=[];if(this.data.open){this.dataI.push("open")}if(o){this.dataI.push(0)}for(var q=1;q1){this.data[this.dataI[n]].HTMLmoveSlice(g.slice(1),l.slice(1),o,f,q,"paddingLeft")}else{var p=f.last;f.last=false;var h=this.dataI[n];while(n0),g=false;if(!m){h.W+=h.w;h.w=0}j=h.scanW=h.W;if(l==null){this.HTMLbaseW=this.data[this.base].HTMLspanElement().bbox.w;this.HTMLdw=this.HTMLspanElement().bbox.w-this.HTMLbaseW}if(this.data[this.base].HTMLbetterBreak(h,f)){g=true;n=[this.base].concat(h.index);k=h.W;o=h.w;if(h.penalty===e.newline){g=m=true}}if(!m){this.HTMLaddWidth(this.base,h,j)}h.scanW+=this.HTMLdw;h.W=h.scanW;h.index=[];if(g){h.W=k;h.w=o;h.index=n}return g},HTMLmoveLine:function(m,g,j,l,h){if(this.data[this.base]){if(m.length>1){this.data[this.base].HTMLmoveSlice(m.slice(1),g.slice(1),j,l,h,"paddingLeft")}else{if(g.length<=1){this.data[this.base].HTMLmoveSpan(j,l,h)}else{this.data[this.base].HTMLmoveSlice([],g.slice(1),j,l,h,"paddingRight")}}}if(g.length===0){var i=this.data[this.sup]||this.data[this.sub];if(i){var k=i.HTMLspanElement().parentNode,f=k.parentNode;if(this.data[this.base]){f.removeChild(f.firstChild)}for(k=f.firstChild;k;k=k.nextSibling){k.style.left=b.Em(b.unEm(k.style.left)-this.HTMLbaseW)}f.bbox.w-=this.HTMLbaseW;f.style.width=b.Em(f.bbox.w);this.HTMLcombineBBoxes(f,j.bbox);j.appendChild(f)}}}});a.mo.Augment({HTMLbetterBreak:function(h,f){if(h.values&&h.values.id===this.spanID){return false}var p=this.getValues("linebreak","linebreakstyle","lineleading","linebreakmultchar","indentalign","indentshift","indentalignfirst","indentshiftfirst","indentalignlast","indentshiftlast","texClass","fence");if(p.linebreakstyle===a.LINEBREAKSTYLE.INFIXLINEBREAKSTYLE){p.linebreakstyle=this.Get("infixlinebreakstyle")}if(p.texClass===a.TEXCLASS.OPEN){h.nest++}if(p.texClass===a.TEXCLASS.CLOSE){h.nest--}var i=h.scanW,j=(h.embellished||this);delete h.embellished;var n=j.HTMLspanElement(),o=n.bbox.w;if(n.style.paddingLeft){o+=b.unEm(n.style.paddingLeft)}if(p.linebreakstyle===a.LINEBREAKSTYLE.AFTER){i+=o;o=0}if(i-h.shift===0){return false}var k=b.linebreakWidth-i;if(f.n===0&&(p.indentshiftfirst!==f.VALUES.indentshiftfirst||p.indentalignfirst!==f.VALUES.indentalignfirst)){var l=this.HTMLgetAlign(f,p),g=this.HTMLgetShift(f,p,l);k+=(h.shift-g)}var m=Math.floor(k/b.linebreakWidth*1000);if(m<0){m=e.toobig-3*m}if(p.fence){m+=e.fence}if((p.linebreakstyle===a.LINEBREAKSTYLE.AFTER&&p.texClass===a.TEXCLASS.OPEN)||p.texClass===a.TEXCLASS.CLOSE){m+=e.close}m+=h.nest*e.nestfactor;var q=e[p.linebreak||a.LINEBREAK.AUTO];if(!(q instanceof Array)){if(k>=0){m=q*h.nest}}else{m=Math.max(1,m+q[0]*h.nest)}if(m>=h.penalty){return false}h.penalty=m;h.values=p;h.W=i;h.w=o;p.lineleading=b.length2em(p.lineleading,f.VALUES.lineleading);p.id=this.spanID;return true}});a.mspace.Augment({HTMLbetterBreak:function(g,f){if(g.values&&g.values.id===this.spanID){return false}var n=this.getValues("linebreak");var k=n.linebreak;if(!k||this.hasDimAttr()){k=a.LINEBREAK.AUTO}var h=g.scanW,l=this.HTMLspanElement(),m=l.bbox.w;if(l.style.paddingLeft){m+=b.unEm(l.style.paddingLeft)}if(h-g.shift===0){return false}var i=b.linebreakWidth-h;var j=Math.floor(i/b.linebreakWidth*1000);if(j<0){j=e.toobig-3*j}j+=g.nest*e.nestfactor;var o=e[k];if(k===a.LINEBREAK.AUTO&&m>=e.spacelimit){o=[(m+e.spaceoffset)*e.spacefactor]}if(!(o instanceof Array)){if(i>=0){j=o*g.nest}}else{j=Math.max(1,j+o[0]*g.nest)}if(j>=g.penalty){return false}g.penalty=j;g.values=n;g.W=h;g.w=m;n.lineleading=f.VALUES.lineleading;n.linebreakstyle="before";n.id=this.spanID;return true}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({HTMLbetterBreak:function(g,f){return this.Core().HTMLbetterBreak(g,f)},HTMLmoveLine:function(j,f,h,i,g){return this.Core().HTMLmoveSlice(j,f,h,i,g)}})});a.maction.Augment({HTMLbetterBreak:function(g,f){return this.Core().HTMLbetterBreak(g,f)},HTMLmoveLine:function(j,f,h,i,g){return this.Core().HTMLmoveSlice(j,f,h,i,g)},HTMLmoveSlice:function(g,i,l,f,m,j){var o=document.getElementById("MathJax-HitBox-"+this.spanID+b.idPostfix);if(o){o.parentNode.removeChild(o)}var k=this.SUPER(arguments).HTMLmoveSlice.apply(this,arguments);if(i.length===0){l=this.HTMLspanElement();var h=0;while(l){o=this.HTMLhandleHitBox(l,"-Continue-"+h);l=l.nextMathJaxSpan;h++}}return k}});a.semantics.Augment({HTMLbetterBreak:function(g,f){return(this.data[0]?this.data[0].HTMLbetterBreak(g,f):false)},HTMLmoveLine:function(j,f,h,i,g){return(this.data[0]?this.data[0].HTMLmoveSlice(j,f,h,i,g):null)}});MathJax.Hub.Startup.signal.Post("HTML-CSS multiline Ready");MathJax.Ajax.loadComplete(b.autoloadDir+"/multiline.js")}); - diff --git a/modules/MathJax/jax/output/HTML-CSS/config.js b/modules/MathJax/jax/output/HTML-CSS/config.js deleted file mode 100644 index 6cdfc76..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/config.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/config.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax["HTML-CSS"]=MathJax.OutputJax({id:"HTML-CSS",version:"2.2",directory:MathJax.OutputJax.directory+"/HTML-CSS",extensionDir:MathJax.OutputJax.extensionDir+"/HTML-CSS",autoloadDir:MathJax.OutputJax.directory+"/HTML-CSS/autoload",fontDir:MathJax.OutputJax.directory+"/HTML-CSS/fonts",webfontDir:MathJax.OutputJax.fontDir+"/HTML-CSS",config:{scale:100,minScaleAdjust:50,availableFonts:["STIX","TeX"],preferredFont:"TeX",webFont:"TeX",imageFont:"TeX",undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",mtextFontInherit:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_Display":{"text-align":"center",margin:"1em 0em"},".MathJax .merror":{"background-color":"#FFFF88",color:"#CC0000",border:"1px solid #CC0000",padding:"1px 3px","font-style":"normal","font-size":"90%"},"#MathJax_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')",padding:"3px 4px","z-index":401}}}});if(MathJax.Hub.Browser.isMSIE&&document.documentMode>=9){delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter}if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax["HTML-CSS"].Register("jax/mml")}MathJax.Hub.Register.StartupHook("End Config",[function(b,c){var a=b.Insert({minBrowserVersion:{Firefox:3,Opera:9.52,MSIE:6,Chrome:0.3,Safari:2,Konqueror:4},inlineMathDelimiters:["$","$"],displayMathDelimiters:["$$","$$"],multilineDisplay:true,minBrowserTranslate:function(f){var e=b.getJaxFor(f),k=["[Math]"],j;var h=document.createElement("span",{className:"MathJax_Preview"});if(e.inputJax==="TeX"){if(e.root.Get("displaystyle")){j=a.displayMathDelimiters;k=[j[0]+e.originalText+j[1]];if(a.multilineDisplay){k=k[0].split(/\n/)}}else{j=a.inlineMathDelimiters;k=[j[0]+e.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+j[1]]}}for(var g=0,d=k.length;g534){w.STIXfontBug=true}}}});if(MathJax.Hub.Browser.STIXfontBug){j.FONTDATA.FONTS.STIXGeneral.family="STIXGeneral-Regular";j.FONTDATA.FONTS["STIXGeneral-italic"].family="STIXGeneral-Italic";delete j.FONTDATA.FONTS["STIXGeneral-italic"].style;j.FONTDATA.FONTS.STIXNonUnicode.family="STIXNonUnicode-Regular";j.FONTDATA.FONTS["STIXNonUnicode-italic"].family="STIXNonUnicode-Italic";delete j.FONTDATA.FONTS["STIXNonUnicode-italic"].style}var e=[];var n=j.Font.div;r.addElement(n,"span",{style:{display:"inline-block","font-family":"STIXNonUnicode","font-weight":"bold"}},["\uE38C\uE38C\uE38C\uE38C\uE38C"]);r.addElement(n,"span",{style:{display:"inline-block","font-family":"STIXNonUnicode","font-weight":"bold"}},["\uE39A\uE39A\uE39A\uE39A\uE39A"]);if(n.lastChild.previousSibling.offsetWidth T d \u23A6 \u2A00",skew:{84:0.0278,58096:0.0319},32:[0,0,250,0,0],62:[540,40,778,83,694],84:[717,68,545,34,833],100:[694,11,511,101,567],160:[0,0,250,0,0],8899:[750,249,833,55,777],9126:[1155,644,667,0,347],10752:[949,449,1511,56,1454],58096:[720,69,644,38,947],58097:[587,85,894,96,797]};MathJax.Callback.Queue(["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_WinChrome"],["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/WinChrome/Regular/Main.js"]); - diff --git a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js b/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js deleted file mode 100644 index 99749f2..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_WinIE6,{58048:[437,-64,500,58,417],58049:[437,-64,500,64,422],58050:[430,23,222,91,131],58051:[431,23,389,55,331],58052:[365,-132,778,55,719],58053:[753,175,778,83,694],58054:[753,175,778,83,694],58055:[708,209,778,82,693],58056:[708,209,778,82,693],58058:[694,-306,500,55,444],58059:[694,-306,500,55,444],58060:[366,22,500,55,444],58061:[366,22,500,55,444],58062:[694,195,889,0,860],58063:[694,195,889,0,860],58064:[689,0,778,55,722],58065:[689,0,778,55,722],58066:[575,20,722,84,637],58067:[575,20,722,84,637],58068:[539,41,778,83,694],58069:[576,19,722,84,637],58070:[576,19,722,84,637],58071:[539,41,778,83,694],58072:[716,132,667,56,611],58073:[471,82,667,24,643],58074:[471,82,667,23,643],58075:[601,101,778,15,762],58076:[694,111,944,49,895],58077:[367,-133,778,56,722]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/WinIE6/Regular/AMS.js"); - diff --git a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js b/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js deleted file mode 100644 index eaa4dd2..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_WinIE6,{57920:[518,17,1150,64,1084],57921:[694,193,575,14,561],57922:[518,17,1150,65,1085],57923:[694,194,575,14,561],57924:[518,17,1150,64,1085],57925:[767,267,575,14,561],57926:[724,194,1150,64,1084],57927:[724,193,1150,64,1085],57928:[694,224,1150,65,1085],57929:[694,224,1150,64,1085],57930:[547,46,1150,64,1084],57931:[547,46,1150,47,1102],57932:[694,16,639,1,640],57933:[710,17,628,60,657],57934:[694,-1,639,64,574],57935:[686,24,958,56,901],57936:[587,86,767,97,670],57937:[587,86,767,96,670],57938:[750,250,575,63,511],57939:[820,180,958,78,988],57940:[451,8,894,65,830],57941:[452,8,1150,65,1084],57942:[714,0,722,55,676],57943:[750,249,319,129,190],57944:[750,248,575,145,430],57945:[604,17,767,64,702],57946:[604,16,767,64,702],57947:[603,16,767,64,702],57948:[604,16,767,64,702],57949:[711,211,569,64,632],57950:[391,-109,894,64,828],57951:[524,-32,894,64,829],57952:[711,210,894,64,829],57953:[505,3,894,64,829],57954:[697,199,894,96,797],57955:[697,199,894,96,797],57956:[617,116,1150,64,1085],57957:[618,116,1150,64,1085],57958:[587,85,894,96,797],57959:[587,86,894,96,796],57960:[697,199,894,96,797],57961:[697,199,894,96,796],57962:[632,132,894,64,828],57963:[632,132,894,64,828],57964:[693,-1,894,65,829],57965:[711,-1,1022,69,953],57966:[500,210,1022,68,953],57967:[711,211,1150,65,1084],57968:[719,129,894,64,829],57969:[711,24,894,65,828],57970:[719,154,894,64,828],57971:[719,129,894,32,861],57972:[750,17,447,64,381],57973:[741,223,447,57,389],57974:[724,224,447,63,382]});MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir+"/WinIE6/Regular/Bold.js"); - diff --git a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js b/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js deleted file mode 100644 index f91faed..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax["HTML-CSS"].FONTDATA.FONTS.MathJax_WinIE6={directory:"WinIE6/Regular",family:"MathJax_WinIE6",testString:"\uE247 \uE257 \uE2CF",skew:{57869:0.0833,57933:0.0958},Ranges:[[57920,57983,"Bold"],[58048,58079,"AMS"]],32:[0,0,250,0,0],160:[0,0,250,0,0],57856:[511,11,1000,55,944],57857:[694,193,500,17,483],57858:[511,11,1000,56,944],57859:[694,194,500,17,483],57860:[511,11,1000,55,944],57861:[772,272,500,17,483],57862:[720,195,1000,29,944],57863:[720,195,1000,55,970],57864:[695,220,1000,55,970],57865:[695,220,1000,29,944],57866:[525,24,1000,56,944],57867:[526,25,1000,34,966],57868:[694,22,556,0,556],57869:[715,22,531,42,566],57870:[694,0,556,56,500],57871:[683,33,833,46,786],57872:[540,40,667,84,583],57873:[540,40,667,83,582],57874:[750,250,500,56,445],57875:[800,200,833,72,853],57876:[442,11,778,56,722],57877:[442,11,1000,55,944],57878:[694,0,722,55,666],57879:[750,249,278,119,159],57880:[750,250,500,132,367],57881:[598,22,667,55,611],57882:[598,22,667,55,611],57883:[598,22,667,55,611],57884:[598,22,667,55,611],57885:[716,216,417,55,472],57886:[367,-133,778,55,722],57887:[483,-55,778,55,722],57888:[716,215,778,56,722],57889:[464,-36,778,56,722],57890:[636,138,778,83,694],57891:[636,138,778,83,694],57892:[568,67,1000,56,944],57893:[567,67,1000,55,944],57894:[540,40,778,84,694],57895:[540,40,778,83,693],57896:[636,138,778,84,694],57897:[636,138,778,83,693],57898:[583,83,778,56,722],57899:[583,83,778,56,722],57900:[668,0,778,55,723],57901:[716,0,889,59,828],57902:[500,215,889,59,828],57903:[715,215,1000,56,944],57904:[727,130,778,55,723],57905:[716,33,778,55,723],57906:[727,162,778,55,723],57907:[726,130,778,28,750],57908:[750,22,389,55,332],57909:[734,223,389,65,324],57910:[723,223,389,55,333],57984:[0,1000,944,55,888],57985:[0,1000,1056,56,999],57986:[40,1160,1000,111,1020],57987:[21,621,333,145,188],57988:[21,621,556,145,410],57989:[0,1111,472,55,610],57990:[0,1111,472,55,610],57991:[0,600,667,112,555],57992:[0,600,667,112,555],57993:[1,601,667,312,355],58000:[0,1400,1278,56,1221],58001:[0,1400,1444,55,1388],58002:[40,1760,1000,111,1020],58005:[0,2222,556,55,944],58006:[0,2222,556,55,944],58018:[40,2360,1000,111,1020],58034:[40,2960,1000,111,1020]};MathJax.Callback.Queue(["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_WinIE6"],["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/WinIE6/Regular/Main.js"]); - diff --git a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js b/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js deleted file mode 100644 index 6177ee8..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(g){var l="2.2";var k=g.FONTDATA.DELIMITERS;var f="MathJax_Main",h="MathJax_Main-bold",i="MathJax_AMS",d="MathJax_Size1",a="MathJax_Size4";var j="H",e="V";var c={61:{dir:j,HW:[[0.767,f]],stretch:{rep:[61,f]}},8606:{dir:j,HW:[[1,i]],stretch:{left:[8606,i],rep:[8722,f]}},8608:{dir:j,HW:[[1,i]],stretch:{right:[8608,i],rep:[8722,f]}},8612:{dir:j,HW:[],stretch:{min:1,left:[8592,f],rep:[8722,f],right:[8739,d,0,-0.05,0.9]}},8613:{dir:e,HW:[],stretch:{min:0.6,bot:[8869,h,0,0,0.75],ext:[9168,d],top:[8593,d]}},8614:{dir:j,HW:[[1,f]],stretch:{left:[8739,d,-0.09,-0.05,0.9],rep:[8722,f],right:[8594,f]}},8615:{dir:e,HW:[],stretch:{min:0.6,top:[8868,h,0,0,0.75],ext:[9168,d],bot:[8595,d]}},8624:{dir:e,HW:[[0.722,i]],stretch:{top:[8624,i],ext:[9168,d,0.097]}},8625:{dir:e,HW:[[0.722,i]],stretch:{top:[8625,i,0.27],ext:[9168,d]}},8636:{dir:j,HW:[[1,f]],stretch:{left:[8636,f],rep:[8722,f]}},8637:{dir:j,HW:[[1,f]],stretch:{left:[8637,f],rep:[8722,f]}},8638:{dir:e,HW:[[0.888,i]],stretch:{top:[8638,i,0.12,0,1.1],ext:[9168,d]}},8639:{dir:e,HW:[[0.888,i]],stretch:{top:[8639,i,0.12,0,1.1],ext:[9168,d]}},8640:{dir:j,HW:[[1,f]],stretch:{right:[8640,f],rep:[8722,f]}},8641:{dir:j,HW:[[1,f]],stretch:{right:[8641,f],rep:[8722,f]}},8642:{dir:e,HW:[[0.888,i]],stretch:{bot:[8642,i,0.12,0,1.1],ext:[9168,d]}},8643:{dir:e,HW:[[0.888,i]],stretch:{bot:[8643,i,0.12,0,1.1],ext:[9168,d]}},8666:{dir:j,HW:[[1,i]],stretch:{left:[8666,i],rep:[8801,f]}},8667:{dir:j,HW:[[1,i]],stretch:{right:[8667,i],rep:[8801,f]}},9140:{dir:j,HW:[],stretch:{min:0.5,left:[9484,i,0,-0.1],rep:[8722,f,0,0.35],right:[9488,i,0,-0.1]}},9141:{dir:j,HW:[],stretch:{min:0.5,left:[9492,i,0,0.26],rep:[8722,f,0,0,0,0.25],right:[9496,i,0,0.26]}},9180:{dir:j,HW:[[0.778,i,0,8994],[1,f,0,8994]],stretch:{left:[57680,a],rep:[57684,a],right:[57681,a]}},9181:{dir:j,HW:[[0.778,i,0,8995],[1,f,0,8995]],stretch:{left:[57682,a],rep:[57684,a],right:[57683,a]}},9184:{dir:j,HW:[],stretch:{min:1.25,left:[714,f,-0.1],rep:[713,f,0,0.13],right:[715,f],fullExtenders:true}},9185:{dir:j,HW:[],stretch:{min:1.5,left:[715,f,-0.1,0.1],rep:[713,f],right:[714,f,-0.1,0.1],fullExtenders:true}},10502:{dir:j,HW:[],stretch:{min:1,left:[8656,f],rep:[61,f],right:[8739,d,0,-0.1]}},10503:{dir:j,HW:[],stretch:{min:0.7,left:[8872,i,0,-0.12],rep:[61,f],right:[8658,f]}},10574:{dir:j,HW:[],stretch:{min:0.5,left:[8636,f],rep:[8722,f],right:[8640,f]}},10575:{dir:e,HW:[],stretch:{min:0.5,top:[8638,i,0.12,0,1.1],ext:[9168,d],bot:[8642,i,0.12,0,1.1]}},10576:{dir:j,HW:[],stretch:{min:0.5,left:[8637,f],rep:[8722,f],right:[8641,f]}},10577:{dir:e,HW:[],stretch:{min:0.5,top:[8639,i,0.12,0,1.1],ext:[9168,d],bot:[8643,i,0.12,0,1.1]}},10586:{dir:j,HW:[],stretch:{min:1,left:[8636,f],rep:[8722,f],right:[8739,d,0,-0.05,0.9]}},10587:{dir:j,HW:[],stretch:{min:1,left:[8739,d,-0.05,-0.05,0.9],rep:[8722,f],right:[8640,f]}},10588:{dir:e,HW:[],stretch:{min:0.7,bot:[8869,h,0,0,0.75],ext:[9168,d],top:[8638,i,0.12,0,1.1]}},10589:{dir:e,HW:[],stretch:{min:0.7,top:[8868,h,0,0,0.75],ext:[9168,d],bot:[8642,i,0.12,0,1.1]}},10590:{dir:j,HW:[],stretch:{min:1,left:[8637,f],rep:[8722,f],right:[8739,d,0,-0.05,0.9]}},10591:{dir:j,HW:[],stretch:{min:1,left:[8739,d,-0.05,-0.05,0.9],rep:[8722,f],right:[8641,f]}},10592:{dir:e,HW:[],stretch:{min:0.7,bot:[8869,h,0,0,0.75],ext:[9168,d],top:[8639,i,0.12,0,1.1]}},10593:{dir:e,HW:[],stretch:{min:0.7,top:[8868,h,0,0,0.75],ext:[9168,d],bot:[8643,i,0.12,0,1.1]}}};for(var b in c){if(c.hasOwnProperty(b)){k[b]=c[b]}}MathJax.Ajax.loadComplete(g.fontDir+"/fontdata-extra.js")})(MathJax.OutputJax["HTML-CSS"]); - diff --git a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata.js b/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata.js deleted file mode 100644 index 501c240..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(g,k,l){var p="2.2";var f="MathJax_Main",j="MathJax_Main-bold",h="MathJax_Math-italic",m="MathJax_AMS",d="MathJax_Size1",c="MathJax_Size2",b="MathJax_Size3",a="MathJax_Size4";var n="H",e="V",i={load:"extra",dir:n},o={load:"extra",dir:e};g.Augment({FONTDATA:{version:p,TeX_factor:1,baselineskip:1.2,lineH:0.8,lineD:0.2,hasStyleChar:true,FONTS:{MathJax_Main:"Main/Regular/Main.js","MathJax_Main-bold":"Main/Bold/Main.js","MathJax_Main-italic":"Main/Italic/Main.js","MathJax_Math-italic":"Math/Italic/Main.js","MathJax_Math-bold-italic":"Math/BoldItalic/Main.js",MathJax_Caligraphic:"Caligraphic/Regular/Main.js",MathJax_Size1:"Size1/Regular/Main.js",MathJax_Size2:"Size2/Regular/Main.js",MathJax_Size3:"Size3/Regular/Main.js",MathJax_Size4:"Size4/Regular/Main.js",MathJax_AMS:"AMS/Regular/Main.js",MathJax_Fraktur:"Fraktur/Regular/Main.js","MathJax_Fraktur-bold":"Fraktur/Bold/Main.js",MathJax_SansSerif:"SansSerif/Regular/Main.js","MathJax_SansSerif-bold":"SansSerif/Bold/Main.js","MathJax_SansSerif-italic":"SansSerif/Italic/Main.js",MathJax_Script:"Script/Regular/Main.js",MathJax_Typewriter:"Typewriter/Regular/Main.js"},VARIANT:{normal:{fonts:[f,d,m],offsetG:945,variantG:"italic",remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88,8726:[8726,"-TeX-variant"],8463:[8463,"-TeX-variant"],8242:[39,"sans-serif-italic"],10744:[47,k.VARIANT.ITALIC]}},bold:{fonts:[j,d,m],bold:true,offsetG:945,variantG:"bold-italic",remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88,10744:[47,"bold-italic"],8602:"\u2190\u0338",8603:"\u2192\u0338",8622:"\u2194\u0338",8653:"\u21D0\u0338",8654:"\u21D4\u0338",8655:"\u21D2\u0338",8708:"\u2203\u0338",8740:"\u2223\u0338",8742:"\u2225\u0338",8769:"\u223C\u0338",8775:"\u2245\u0338",8814:"<\u0338",8815:">\u0338",8816:"\u2264\u0338",8817:"\u2265\u0338",8832:"\u227A\u0338",8833:"\u227B\u0338",8840:"\u2286\u0338",8841:"\u2287\u0338",8876:"\u22A2\u0338",8877:"\u22A8\u0338",8928:"\u227C\u0338",8929:"\u227D\u0338"}},italic:{fonts:[h,"MathJax_Main-italic",f,d,m],italic:true,remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88}},"bold-italic":{fonts:["MathJax_Math-bold-italic",j,d,m],bold:true,italic:true,remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88}},"double-struck":{fonts:[m,f]},fraktur:{fonts:["MathJax_Fraktur",f,d,m]},"bold-fraktur":{fonts:["MathJax_Fraktur-bold",j,d,m],bold:true},script:{fonts:["MathJax_Script",f,d,m]},"bold-script":{fonts:["MathJax_Script",j,d,m],bold:true},"sans-serif":{fonts:["MathJax_SansSerif",f,d,m]},"bold-sans-serif":{fonts:["MathJax_SansSerif-bold",j,d,m],bold:true},"sans-serif-italic":{fonts:["MathJax_SansSerif-italic","MathJax_Main-italic",d,m],italic:true},"sans-serif-bold-italic":{fonts:["MathJax_SansSerif-italic","MathJax_Main-italic",d,m],bold:true,italic:true},monospace:{fonts:["MathJax_Typewriter",f,d,m]},"-tex-caligraphic":{fonts:["MathJax_Caligraphic",f],offsetA:65,variantA:"italic"},"-tex-oldstyle":{fonts:["MathJax_Caligraphic",f]},"-tex-mathit":{fonts:["MathJax_Main-italic",h,f,d,m],italic:true,noIC:true,remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88}},"-TeX-variant":{fonts:[m,f,d],remap:{8808:57356,8809:57357,8816:57361,8817:57358,10887:57360,10888:57359,8740:57350,8742:57351,8840:57366,8841:57368,8842:57370,8843:57371,10955:57367,10956:57369,988:57352,1008:57353,8726:[8726,k.VARIANT.NORMAL],8463:[8463,k.VARIANT.NORMAL]}},"-largeOp":{fonts:[c,d,f]},"-smallOp":{fonts:[d,f]}},RANGES:[{name:"alpha",low:97,high:122,offset:"A",add:32},{name:"number",low:48,high:57,offset:"N"},{name:"greek",low:945,high:1014,offset:"G"}],RULECHAR:8722,REMAP:{8254:713,8400:8636,8401:8640,8406:8592,8417:8596,8428:8641,8429:8637,8430:8592,8431:8594,8432:42,65079:9182,65080:9183,183:8901,697:8242,978:933,8213:8212,8215:95,8226:8729,8260:47,8965:8892,8966:10846,9642:9632,9652:9650,9653:9651,9656:9654,9662:9660,9663:9661,9666:9664,9001:10216,9002:10217,12296:10216,12297:10217,10072:8739,10799:215,9723:9633,9724:9632,8450:[67,k.VARIANT.DOUBLESTRUCK],8459:[72,k.VARIANT.SCRIPT],8460:[72,k.VARIANT.FRAKTUR],8461:[72,k.VARIANT.DOUBLESTRUCK],8462:[104,k.VARIANT.ITALIC],8464:[74,k.VARIANT.SCRIPT],8465:[74,k.VARIANT.FRAKTUR],8466:[76,k.VARIANT.SCRIPT],8469:[78,k.VARIANT.DOUBLESTRUCK],8473:[80,k.VARIANT.DOUBLESTRUCK],8474:[81,k.VARIANT.DOUBLESTRUCK],8475:[82,k.VARIANT.SCRIPT],8476:[82,k.VARIANT.FRAKTUR],8477:[82,k.VARIANT.DOUBLESTRUCK],8484:[90,k.VARIANT.DOUBLESTRUCK],8486:[937,k.VARIANT.NORMAL],8488:[90,k.VARIANT.FRAKTUR],8492:[66,k.VARIANT.SCRIPT],8493:[67,k.VARIANT.FRAKTUR],8496:[69,k.VARIANT.SCRIPT],8497:[70,k.VARIANT.SCRIPT],8499:[77,k.VARIANT.SCRIPT],8775:8774,8988:9484,8989:9488,8990:9492,8991:9496,8708:"\u2203\u0338",8716:"\u220B\u0338",8772:"\u2243\u0338",8777:"\u2248\u0338",8802:"\u2261\u0338",8813:"\u224D\u0338",8820:"\u2272\u0338",8821:"\u2273\u0338",8824:"\u2276\u0338",8825:"\u2277\u0338",8836:"\u2282\u0338",8837:"\u2283\u0338",8930:"\u2291\u0338",8931:"\u2292\u0338",10764:"\u222C\u222C",8243:"\u2032\u2032",8244:"\u2032\u2032\u2032",8246:"\u2035\u2035",8247:"\u2035\u2035\u2035",8279:"\u2032\u2032\u2032\u2032",8411:"...",8412:"...."},REMAPACCENT:{"\u2192":"\u20D7","\u2032":"'","\u2035":"`"},REMAPACCENTUNDER:{},PLANE1MAP:[[119808,119833,65,k.VARIANT.BOLD],[119834,119859,97,k.VARIANT.BOLD],[119860,119885,65,k.VARIANT.ITALIC],[119886,119911,97,k.VARIANT.ITALIC],[119912,119937,65,k.VARIANT.BOLDITALIC],[119938,119963,97,k.VARIANT.BOLDITALIC],[119964,119989,65,k.VARIANT.SCRIPT],[120068,120093,65,k.VARIANT.FRAKTUR],[120094,120119,97,k.VARIANT.FRAKTUR],[120120,120145,65,k.VARIANT.DOUBLESTRUCK],[120172,120197,65,k.VARIANT.BOLDFRAKTUR],[120198,120223,97,k.VARIANT.BOLDFRAKTUR],[120224,120249,65,k.VARIANT.SANSSERIF],[120250,120275,97,k.VARIANT.SANSSERIF],[120276,120301,65,k.VARIANT.BOLDSANSSERIF],[120302,120327,97,k.VARIANT.BOLDSANSSERIF],[120328,120353,65,k.VARIANT.SANSSERIFITALIC],[120354,120379,97,k.VARIANT.SANSSERIFITALIC],[120432,120457,65,k.VARIANT.MONOSPACE],[120458,120483,97,k.VARIANT.MONOSPACE],[120488,120513,913,k.VARIANT.BOLD],[120546,120570,913,k.VARIANT.ITALIC],[120572,120603,945,k.VARIANT.ITALIC],[120604,120628,913,k.VARIANT.BOLDITALIC],[120630,120661,945,k.VARIANT.BOLDITALIC],[120662,120686,913,k.VARIANT.BOLDSANSSERIF],[120720,120744,913,k.VARIANT.SANSSERIFBOLDITALIC],[120782,120791,48,k.VARIANT.BOLD],[120802,120811,48,k.VARIANT.SANSSERIF],[120812,120821,48,k.VARIANT.BOLDSANSSERIF],[120822,120831,48,k.VARIANT.MONOSPACE]],REMAPGREEK:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,930:920,932:84,935:88,938:8711,970:8706,971:1013,972:977,973:1008,974:981,975:1009,976:982},RemapPlane1:function(t,s){for(var r=0,q=this.PLANE1MAP.length;r T d \u23A6 \u2A00",skew:{84:0.0278,58096:0.0319},32:[0,0,250,0,0],62:[540,40,778,83,694],84:[717,68,545,34,833],100:[694,11,511,101,567],160:[0,0,250,0,0],8899:[750,249,833,55,777],9126:[1155,644,667,0,347],10752:[949,449,1511,56,1454],58096:[720,69,644,38,947],58097:[587,85,894,96,797]}}}})}(function(){var t=g.FONTDATA.FONTS,s=g.config.availableFonts;var r,q=[];if(g.allowWebFonts){for(r in t){if(t[r].family){if(s&&s.length&&g.Font.testFont(t[r])){t[r].available=true;g.Font.loadComplete(t[r])}else{t[r].isWebFont=true;if(g.FontFaceBug){t[r].family=r}q.push(g.Font.fontFace(r))}}}if(!g.config.preloadWebFonts){g.config.preloadWebFonts=[]}g.config.preloadWebFonts.push(f,h,d);if(q.length){g.config.styles["@font-face"]=q}}else{if(s&&s.length){for(r in t){if(t[r].family&&g.Font.testFont(t[r])){t[r].available=true;g.Font.loadComplete(t[r])}}}}})();l.loadComplete(g.fontDir+"/fontdata.js")})(MathJax.OutputJax["HTML-CSS"],MathJax.ElementJax.mml,MathJax.Ajax); - diff --git a/modules/MathJax/jax/output/HTML-CSS/imageFonts.js b/modules/MathJax/jax/output/HTML-CSS/imageFonts.js deleted file mode 100644 index 1d4fa53..0000000 --- a/modules/MathJax/jax/output/HTML-CSS/imageFonts.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/HTML-CSS/imageFonts.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(b,c,a){var d="2.2";b.Register.LoadHook(c.fontDir+"/fontdata.js",function(){c.Augment({allowWebFonts:false,imgDir:c.webfontDir+"/png",imgPacked:(MathJax.isPacked?"":"/unpacked"),imgSize:["050","060","071","085",100,120,141,168,200,238,283,336,400,476],imgBaseIndex:4,imgSizeForEm:{},imgSizeForScale:{},imgZoom:1,handleImg:function(t,i,r,h,u){if(u.length){this.addText(t,u)}var s=r[5].orig;if(!s){s=r[5].orig=[r[0],r[1],r[2],r[3],r[4]]}var m=this.imgZoom;if(!t.scale){t.scale=1}var p=this.imgIndex(t.scale*m);if(p==this.imgEmWidth.length-1&&this.em*t.scale*m/this.imgEmWidth[p]>1.1){m=this.imgEmWidth[p]/(this.em*t.scale)}var q=this.imgEmWidth[p]/(this.em*(t.scale||1)*m);r[0]=s[0]*q;r[1]=s[1]*q;r[2]=s[2]*q;r[3]=s[3]*q;r[4]=s[4]*q;var k=this.imgDir+"/"+i.directory+"/"+this.imgSize[p];var l=h.toString(16).toUpperCase();while(l.length<4){l="0"+l}var j=k+"/"+l+".png";var o=r[5].img[p];var g={width:Math.floor(o[0]/m+0.5)+"px",height:Math.floor(o[1]/m+0.5)+"px"};if(o[2]){g.verticalAlign=Math.floor(-o[2]/m+0.5)+"px"}if(r[3]<0){g.marginLeft=this.Em(r[3]/1000)}if(r[4]!=r[2]){g.marginRight=this.Em((r[2]-r[4])/1000)}if(this.msieIE6){g.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+a.fileURL(j)+"', sizingMethod='scale')";j=this.directory+"/blank.gif"}this.addElement(t,"img",{src:a.fileURL(j),style:g,isMathJax:true});return""},defineImageData:function(i){for(var g in i){if(i.hasOwnProperty(g)){var h=c.FONTDATA.FONTS[g];if(h){g=i[g];for(var j in g){if(g.hasOwnProperty(j)&&h[j]){h[j][5]={img:g[j]}}}}}}},initImg:function(j){if(this.imgSizeForEm[this.em]){this.imgBaseIndex=this.imgSizeForEm[this.em]}for(var h=0,g=this.imgEmWidth.length-1;hthis.em-this.imgEmWidth[h-1]){h--}this.imgSizeForEm[this.em]=this.imgBaseIndex=h;this.imgZoom=this.imgBrowserZoom()},imgIndex:function(k){if(!k){return this.imgBaseIndex}if(!this.imgSizeForScale[this.em]){this.imgSizeForScale[this.em]={}}if(this.imgSizeForScale[this.em][k]){return this.imgSizeForScale[this.em][k]}var j=this.em*k;for(var h=0,g=this.imgEmWidth.length-1;hj-this.imgEmWidth[h-1]){h--}this.imgSizeForScale[this.em][k]=h;return h},imgBrowserZoom:function(){return 1}});b.Browser.Select({Firefox:function(h){var g=c.addElement(document.body,"div",{style:{display:"none",visibility:"hidden",overflow:"scroll",position:"absolute",top:0,left:0,width:"200px",height:"200px",padding:0,border:0,margin:0}});var i=c.addElement(g,"div",{style:{position:"absolute",left:0,top:0,right:0,bottom:0,padding:0,border:0,margin:0}});c.Augment({imgSpaceBug:true,imgSpace:"\u00A0",imgZoomLevel:(h.isMac?{50:0.3,30:0.5,22:0.67,19:0.8,16:0.9,15:1,13:1.1,12:1.2,11:1.33,10:1.5,9:1.7,7:2,6:2.4,5:3,0:15}:{56:0.3,34:0.5,25:0.67,21:0.8,19:0.9,17:1,15:1.1,14:1.2,13:1.33,11:1.5,10:1.7,8:2,7:2.4,6:3,0:17}),imgZoomDiv:g,imgBrowserZoom:function(){var j=this.imgZoomLevel;g.style.display="";var k=(g.offsetWidth-i.offsetWidth);k=(j[k]?j[k]:j[0]/k);g.style.display="none";return k}})},Safari:function(g){c.Augment({imgBrowserZoom:function(){return 3}})},Chrome:function(g){c.Augment({imgHeightBug:true,imgBrowserZoom:function(){return 3}})},Opera:function(g){c.Augment({imgSpaceBug:true,imgSpace:"\u00A0\u00A0",imgDoc:(document.compatMode=="BackCompat"?document.body:document.documentElement),imgBrowserZoom:function(){if(g.isMac){return 3}var h=this.imgDoc.clientHeight,i=Math.floor(15*h/window.innerHeight);if(this.imgDoc.clientWidth=p.HTMLCSSlast+p.HTMLCSSchunk){this.postTranslate(p);p.HTMLCSSchunk=Math.floor(p.HTMLCSSchunk*this.config.EqnChunkFactor);p.HTMLCSSdelay=true}}},postTranslate:function(r){var l=r.jax[this.id];if(!this.hideProcessedMath){return}for(var p=r.HTMLCSSlast,k=r.HTMLCSSeqn;p=0&&!this.initialSkipBug)||this.negativeBBoxes||!o.firstChild){l=o.offsetWidth;n=o.parentNode.offsetHeight}else{if(o.bbox&&m<0&&this.msieNegativeBBoxBug){l=-o.offsetWidth,n=o.parentNode.offsetHeight}else{if(this.initialSkipBug){var k=o.style.position;o.style.position="absolute";p=this.startMarker;o.insertBefore(p,o.firstChild)}o.appendChild(this.endMarker);l=this.endMarker.offsetLeft-p.offsetLeft;o.removeChild(this.endMarker);if(this.initialSkipBug){o.removeChild(p);o.style.position=k}}}if(n!=null){o.parentNode.HH=n/this.em}return l/this.em},Measured:function(m,l){var n=m.bbox;if(n.width==null&&n.w&&!n.isMultiline){var k=this.getW(m);n.rw+=k-n.w;n.w=k;n.exactW=true}if(!l){l=m.parentNode}if(!l.bbox){l.bbox=n}return m},Remeasured:function(l,k){k.bbox=this.Measured(l,k).bbox},MeasureSpans:function(o){var r=[],t,q,n,u,k,p,l,s;for(q=0,n=o.length;q=0&&!this.initialSkipBug)||(u.w<0&&this.msieNegativeBBoxBug)){r.push([t])}else{if(this.initialSkipBug){k=this.startMarker.cloneNode(true);p=this.endMarker.cloneNode(true);t.insertBefore(k,t.firstChild);t.appendChild(p);r.push([t,k,p,t.style.position]);t.style.position="absolute"}else{p=this.endMarker.cloneNode(true);t.appendChild(p);r.push([t,null,p])}}}for(q=0,n=r.length;q=0&&!this.initialSkipBug)||this.negativeBBoxes||!t.firstChild){l=t.offsetWidth;s.HH=s.offsetHeight/this.em}else{if(u.w<0&&this.msieNegativeBBoxBug){l=-t.offsetWidth,s.HH=s.offsetHeight/this.em}else{l=r[q][2].offsetLeft-((r[q][1]||{}).offsetLeft||0)}}l/=this.em;u.rw+=l-u.w;u.w=l;u.exactW=true;if(!s.bbox){s.bbox=u}}for(q=0,n=r.length;q=0){p.style.width=this.Em(q);p.style.display="inline-block";p.style.overflow="hidden"}else{if(this.msieNegativeSpaceBug){p.style.height=""}p.style.marginLeft=this.Em(q);if(d.safariNegativeSpaceBug&&p.parentNode.firstChild==p){this.createBlank(p,0,true)}}if(m&&m!==g.COLOR.TRANSPARENT){p.style.backgroundColor=m;p.style.position="relative"}return p},createRule:function(r,n,p,s,l){if(n<-p){p=-n}var m=d.TeX.min_rule_thickness,o=1;if(s>0&&s*this.em0&&(n+p)*this.em0&&q.offsetWidth==0){q.style.width=this.Em(s)}if(r.isBox||r.className=="mspace"){r.bbox=q.bbox,r.HH=n+p}return q},createFrame:function(s,q,r,u,x,l){if(q<-r){r=-q}var p=2*x;if(this.msieFrameSizeBug){if(uC.w){d.createBlank(u,C.rw-C.w+0.1)}}if(!this.msieClipRectBug&&!C.noclip&&!o){var B=3/this.em;var A=(C.H==null?C.h:C.H),m=(C.D==null?C.d:C.D);var E=w-A-B,p=w+m+B,n=C.lw-3*B,k=1000;if(this.initialSkipBug&&C.lw<0){n=-3*B}if(C.isFixed){k=C.width-n}u.style.clip="rect("+this.Em(E)+" "+this.Em(k)+" "+this.Em(p)+" "+this.Em(n)+")"}}u.style.top=this.Em(-q-w);u.style.left=this.Em(s+F);if(C&&z){if(C.H!=null&&(z.H==null||C.H+q>z.H)){z.H=C.H+q}if(C.D!=null&&(z.D==null||C.D-q>z.D)){z.D=C.D-q}if(C.h+q>z.h){z.h=C.h+q}if(C.d-q>z.d){z.d=C.d-q}if(z.H!=null&&z.H<=z.h){delete z.H}if(z.D!=null&&z.D<=z.d){delete z.D}if(C.w+s>z.w){z.w=C.w+s;if(z.width==null){v.style.width=this.Em(z.w)}}if(C.rw+s>z.rw){z.rw=C.rw+s}if(C.lw+s=n-0.01||(s==p-1&&!l.stretch)){if(l.HW[s][2]){q*=l.HW[s][2]}if(l.HW[s][3]){k=l.HW[s][3]}var r=this.addElement(u,"span");this.createChar(r,[k,l.HW[s][1]],q,o);u.bbox=r.bbox;u.offset=0.65*u.bbox.w;u.scale=q;return}}if(l.stretch){this["extendDelimiter"+l.dir](u,t,l.stretch,q,o)}},extendDelimiterV:function(A,t,E,F,w){var o=this.createStack(A,true);var v=this.createBox(o),u=this.createBox(o);this.createChar(v,(E.top||E.ext),F,w);this.createChar(u,(E.bot||E.ext),F,w);var m={bbox:{w:0,lw:0,rw:0}},D=m,p;var B=v.bbox.h+v.bbox.d+u.bbox.h+u.bbox.d;var r=-v.bbox.h;this.placeBox(v,0,r,true);r-=v.bbox.d;if(E.mid){D=this.createBox(o);this.createChar(D,E.mid,F,w);B+=D.bbox.h+D.bbox.d}if(E.min&&tB){m=this.Element("span");this.createChar(m,E.ext,F,w);var C=m.bbox.h+m.bbox.d,l=C-0.05,x,q,z=(E.mid?2:1);q=x=Math.min(Math.ceil((t-B)/(z*l)),this.maxStretchyParts);if(!E.fullExtenders){l=(t-B)/(z*x)}var s=(x/(x+1))*(C-l);l=C-s;r+=s+l-m.bbox.h;while(z-->0){while(x-->0){if(!this.msieCloneNodeBug){p=m.cloneNode(true)}else{p=this.Element("span");this.createChar(p,E.ext,F,w)}p.bbox=m.bbox;r-=l;this.placeBox(this.addBox(o,p),0,r,true)}r+=s-m.bbox.d;if(E.mid&&z){this.placeBox(D,0,r-D.bbox.h,true);x=q;r+=-(D.bbox.h+D.bbox.d)+s+l-m.bbox.h}}}else{r+=(B-t)/2;if(E.mid){this.placeBox(D,0,r-D.bbox.h,true);r+=-(D.bbox.h+D.bbox.d)}r+=(B-t)/2}this.placeBox(u,0,r-u.bbox.h,true);r-=u.bbox.h+u.bbox.d;A.bbox={w:Math.max(v.bbox.w,m.bbox.w,u.bbox.w,D.bbox.w),lw:Math.min(v.bbox.lw,m.bbox.lw,u.bbox.lw,D.bbox.lw),rw:Math.max(v.bbox.rw,m.bbox.rw,u.bbox.rw,D.bbox.rw),h:0,d:-r,exactW:true};A.scale=F;A.offset=0.55*A.bbox.w;A.isMultiChar=true;this.setStackWidth(o,A.bbox.w)},extendDelimiterH:function(B,o,E,G,y){var r=this.createStack(B,true);var p=this.createBox(r),C=this.createBox(r);this.createChar(p,(E.left||E.rep),G,y);this.createChar(C,(E.right||E.rep),G,y);var l=this.Element("span");this.createChar(l,E.rep,G,y);var D={bbox:{h:-this.BIGDIMEN,d:-this.BIGDIMEN}},m;this.placeBox(p,-p.bbox.lw,0,true);var u=(p.bbox.rw-p.bbox.lw)+(C.bbox.rw-C.bbox.lw)-0.05,t=p.bbox.rw-p.bbox.lw-0.025,v;if(E.mid){D=this.createBox(r);this.createChar(D,E.mid,G,y);u+=D.bbox.w}if(E.min&&ou){var F=l.bbox.rw-l.bbox.lw,q=F-0.05,z,s,A=(E.mid?2:1);s=z=Math.min(Math.ceil((o-u)/(A*q)),this.maxStretchyParts);if(!E.fillExtenders){q=(o-u)/(A*z)}v=(z/(z+1))*(F-q);q=F-v;t-=l.bbox.lw+v;while(A-->0){while(z-->0){if(!this.cloneNodeBug){m=l.cloneNode(true)}else{m=this.Element("span");this.createChar(m,E.rep,G,y)}m.bbox=l.bbox;this.placeBox(this.addBox(r,m),t,0,true);t+=q}if(E.mid&&A){this.placeBox(D,t,0,true);t+=D.bbox.w-v;z=s}}}else{t-=(u-o)/2;if(E.mid){this.placeBox(D,t,0,true);t+=D.bbox.w}t-=(u-o)/2}this.placeBox(C,t,0,true);B.bbox={w:t+C.bbox.rw,lw:0,rw:t+C.bbox.rw,H:Math.max(p.bbox.h,l.bbox.h,C.bbox.h,D.bbox.h),D:Math.max(p.bbox.d,l.bbox.d,C.bbox.d,D.bbox.d),h:l.bbox.h,d:l.bbox.d,exactW:true};B.scale=G;B.isMultiChar=true;this.setStackWidth(r,B.bbox.w)},createChar:function(s,p,n,k){s.isMathJax=true;var r=s,t="",o={fonts:[p[1]],noRemap:true};if(k&&k===g.VARIANT.BOLD){o.fonts=[p[1]+"-bold",p[1]]}if(typeof(p[1])!=="string"){o=p[1]}if(p[0] instanceof Array){for(var q=0,l=p[0].length;q=55296&&x<56319){B++;x=(((x-55296)<<10)+(s.charCodeAt(B)-56320))+65536;if(this.FONTDATA.RemapPlane1){var E=this.FONTDATA.RemapPlane1(x,p);x=E.n;p=E.variant}}else{var u,r,v=this.FONTDATA.RANGES;for(u=0,r=v.length;u=v[u].low&&x<=v[u].high){if(v[u].remap&&v[u].remap[x]){x=q+v[u].remap[x]}else{x=x-v[u].low+q;if(v[u].add){x+=v[u].add}}if(p["variant"+v[u].offset]){p=this.FONTDATA.VARIANT[p["variant"+v[u].offset]]}break}}}if(p.remap&&p.remap[x]){if(p.remap[x] instanceof Array){var o=p.remap[x];x=o[0];p=this.FONTDATA.VARIANT[o[1]]}else{if(typeof(p.remap[x])==="string"){s=p.remap[x]+s.substr(B+1);B=0;y=s.length;x=s.charCodeAt(0)}else{x=p.remap[x];if(p.remap.variant){p=this.FONTDATA.VARIANT[p.remap.variant]}}}}if(this.FONTDATA.REMAP[x]&&!p.noRemap){x=this.FONTDATA.REMAP[x];if(x instanceof Array){p=this.FONTDATA.VARIANT[x[1]];x=x[0]}if(typeof(x)==="string"){s=x+s.substr(B+1);B=0;y=s.length;x=x.charCodeAt(0)}}t=this.lookupChar(p,x);C=t[x];if(l||(!this.checkFont(t,k.style)&&!C[5].img)){if(z.length){this.addText(k,z);z=""}var w=!!k.style.fontFamily||!!A.style.fontStyle||!!A.style.fontWeight||!t.directory||l;l=false;if(k!==A){w=!this.checkFont(t,A.style);k=A}if(w){k=this.addElement(A,"span",{isMathJax:true,subSpan:true})}this.handleFont(k,t,k!==A)}z=this.handleChar(k,t,C,x,z);if(!(C[5]||{}).space){if(C[0]/1000>A.bbox.h){A.bbox.h=C[0]/1000}if(C[1]/1000>A.bbox.d){A.bbox.d=C[1]/1000}}if(A.bbox.w+C[3]/1000A.bbox.rw){A.bbox.rw=A.bbox.w+C[4]/1000}A.bbox.w+=C[2]/1000}if(z.length){this.addText(k,z)}if(A.scale&&A.scale!==1){A.bbox.h*=A.scale;A.bbox.d*=A.scale;A.bbox.w*=A.scale;A.bbox.lw*=A.scale;A.bbox.rw*=A.scale}if(s.length==1&&t.skew&&t.skew[x]){A.bbox.skew=t.skew[x]}},checkFont:function(k,l){var m=(l.fontWeight||"normal");if(m.match(/^\d+$/)){m=(parseInt(m)>=600?"bold":"normal")}return(k.family.replace(/'/g,"")===l.fontFamily.replace(/'/g,"")&&(k.style||"normal")===(l.fontStyle||"normal")&&(k.weight||"normal")===m)},handleFont:function(m,k,o){m.style.fontFamily=k.family;if(!k.directory){m.style.fontSize=Math.floor(100/d.scale+0.5)+"%"}if(!(d.FontFaceBug&&k.isWebFont)){var l=k.style||"normal",n=k.weight||"normal";if(l!=="normal"||o){m.style.fontStyle=l}if(n!=="normal"||o){m.style.fontWeight=n}}},handleChar:function(l,k,s,r,q){var p=s[5];if(p.space){if(q.length){this.addText(l,q)}d.createShift(l,s[2]/1000);return""}if(p.img){return this.handleImg(l,k,s,r,q)}if(p.isUnknown&&this.FONTDATA.DELIMITERS[r]){if(q.length){this.addText(l,q)}var o=l.scale;d.createDelimiter(l,r,0,1,k);if(this.FONTDATA.DELIMITERS[r].dir==="V"){l.style.verticalAlign=this.Em(l.bbox.d);l.bbox.h+=l.bbox.d;l.bbox.d=0}l.scale=o;s[0]=l.bbox.h*1000;s[1]=l.bbox.d*1000;s[2]=l.bbox.w*1000;s[3]=l.bbox.lw*1000;s[4]=l.bbox.rw*1000;return""}if(p.c==null){if(r<=65535){p.c=String.fromCharCode(r)}else{var m=r-65536;p.c=String.fromCharCode((m>>10)+55296)+String.fromCharCode((m&1023)+56320)}}if(p.rfix){this.addText(l,q+p.c);d.createShift(l,p.rfix/1000);return""}if(s[2]||!this.msieAccentBug||q.length){return q+p.c}d.createShift(l,s[3]/1000);d.createShift(l,(s[4]-s[3])/1000);this.addText(l,p.c);d.createShift(l,-s[4]/1000);return""},handleImg:function(l,k,p,o,m){return m},lookupChar:function(p,s){var o,k;if(!p.FONTS){var r=this.FONTDATA.FONTS;var q=(p.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(q instanceof Array)){q=[q]}if(p.fonts!=q){p.fonts=q}p.FONTS=[];for(o=0,k=q.length;o=0;n--){if(l.Ranges[n][2]==o){l.Ranges.splice(n,1)}}this.loadFont(l.directory+"/"+o+".js")}}}},loadFont:function(l){var k=MathJax.Callback.Queue();k.Push(["Require",h,this.fontDir+"/"+l]);if(this.imgFonts){if(!MathJax.isPacked){l=l.replace(/\/([^\/]*)$/,d.imgPacked+"/$1")}k.Push(["Require",h,this.webfontDir+"/png/"+l])}b.RestartAfter(k.Push({}))},loadWebFont:function(k){k.available=k.isWebFont=true;if(d.FontFaceBug){k.family=k.name;if(d.msieFontCSSBug){k.family+="-Web"}}b.RestartAfter(this.Font.loadWebFont(k))},loadWebFontError:function(l,k){b.Startup.signal.Post("HTML-CSS Jax - disable web fonts");l.isWebFont=false;if(this.config.imageFont&&this.config.imageFont===this.fontInUse){this.imgFonts=true;b.Startup.signal.Post("HTML-CSS Jax - switch to image fonts");b.Startup.signal.Post("HTML-CSS Jax - using image fonts");e(["WebFontNotAvailable","Web-Fonts not available -- using image fonts instead"],null,3000);h.Require(this.directory+"/imageFonts.js",k)}else{this.allowWebFonts=false;k()}},Element:MathJax.HTML.Element,addElement:MathJax.HTML.addElement,TextNode:MathJax.HTML.TextNode,addText:MathJax.HTML.addText,ucMatch:MathJax.HTML.ucMatch,BIGDIMEN:10000000,ID:0,idPostfix:"",GetID:function(){this.ID++;return this.ID},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,scriptspace:0.1,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.1,min_rule_thickness:1.25},NBSP:"\u00A0",rfuzz:0});MathJax.Hub.Register.StartupHook("mml Jax Ready",function(){g=MathJax.ElementJax.mml;g.mbase.Augment({toHTML:function(o){o=this.HTMLcreateSpan(o);if(this.type!="mrow"){o=this.HTMLhandleSize(o)}for(var l=0,k=this.data.length;ll.d){l.d=m.d}if(m.h>l.h){l.h=m.h}if(m.D!=null&&m.D>l.D){l.D=m.D}if(m.H!=null&&m.H>l.H){l.H=m.H}if(n.style.paddingLeft){l.w+=d.unEm(n.style.paddingLeft)*(n.scale||1)}if(l.w+m.lwl.rw){l.rw=l.w+m.rw}l.w+=m.w;if(n.style.paddingRight){l.w+=d.unEm(n.style.paddingRight)*(n.scale||1)}if(m.width){l.width=m.width;l.minWidth=m.minWidth}if(m.ic){l.ic=m.ic}else{delete l.ic}if(l.exactW&&!m.exactW){delete l.exactW}},HTMLemptyBBox:function(k){k.h=k.d=k.H=k.D=k.rw=-d.BIGDIMEN;k.w=0;k.lw=d.BIGDIMEN;return k},HTMLcleanBBox:function(k){if(k.h===this.BIGDIMEN){k.h=k.d=k.H=k.D=k.w=k.rw=k.lw=0}if(k.D<=k.d){delete k.D}if(k.H<=k.h){delete k.H}},HTMLzeroBBox:function(){return{h:0,d:0,w:0,lw:0,rw:0}},HTMLcanStretch:function(l){if(this.isEmbellished()){var k=this.Core();if(k&&k!==this){return k.HTMLcanStretch(l)}}return false},HTMLstretchH:function(l,k){return this.HTMLspanElement()},HTMLstretchV:function(l,k,m){return this.HTMLspanElement()},HTMLnotEmpty:function(k){while(k){if((k.type!=="mrow"&&k.type!=="texatom")||k.data.length>1){return true}k=k.data[0]}return false},HTMLmeasureChild:function(l,k){if(this.data[l]){d.Measured(this.data[l].toHTML(k),k)}else{k.bbox=this.HTMLzeroBBox()}},HTMLboxChild:function(l,k){if(!this.data[l]){this.SetData(l,g.mrow())}return this.data[l].toHTML(k)},HTMLcreateSpan:function(k){if(this.spanID){var l=this.HTMLspanElement();if(l&&(l.parentNode===k||(l.parentNode||{}).parentNode===k)){while(l.firstChild){l.removeChild(l.firstChild)}l.bbox=this.HTMLzeroBBox();l.scale=1;l.isMultChar=l.HH=null;l.style.cssText="";return l}}if(this.href){k=d.addElement(k,"a",{href:this.href,isMathJax:true})}k=d.addElement(k,"span",{className:this.type,isMathJax:true});if(d.imgHeightBug){k.style.display="inline-block"}if(this["class"]){k.className+=" "+this["class"]}if(!this.spanID){this.spanID=d.GetID()}k.id=(this.id||"MathJax-Span-"+this.spanID)+d.idPostfix;k.bbox=this.HTMLzeroBBox();this.styles={};if(this.style){k.style.cssText=this.style;if(k.style.fontSize){this.mathsize=k.style.fontSize;k.style.fontSize=""}this.styles={border:d.getBorders(k),padding:d.getPadding(k)};if(this.styles.border){k.style.border=""}if(this.styles.padding){k.style.padding=""}}if(this.href){k.parentNode.bbox=k.bbox}return k},HTMLspanElement:function(){if(!this.spanID){return null}return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+d.idPostfix)},HTMLhandleVariant:function(l,k,m){d.handleVariant(l,k,m)},HTMLhandleSize:function(k){if(!k.scale){k.scale=this.HTMLgetScale();if(k.scale!==1){k.style.fontSize=d.Percent(k.scale)}}return k},HTMLhandleColor:function(w){var y=this.getValues("mathcolor","color");if(this.mathbackground){y.mathbackground=this.mathbackground}if(this.background){y.background=this.background}if(this.style&&w.style.backgroundColor){y.mathbackground=w.style.backgroundColor;w.style.backgroundColor="transparent"}var t=(this.styles||{}).border,v=(this.styles||{}).padding;if(y.color&&!this.mathcolor){y.mathcolor=y.color}if(y.background&&!this.mathbackground){y.mathbackground=y.background}if(y.mathcolor){w.style.color=y.mathcolor}if((y.mathbackground&&y.mathbackground!==g.COLOR.TRANSPARENT)||t||v){var A=w.bbox,z=(A.exact?0:1/d.em),u=0,s=0,m=w.style.paddingLeft,q=w.style.paddingRight;if(this.isToken){u=A.lw;s=A.rw-A.w}if(m!==""){u+=d.unEm(m)*(w.scale||1)}if(q!==""){s-=d.unEm(q)*(w.scale||1)}var l=(d.PaddingWidthBug||A.keepPadding||A.exactW?0:s-u);var o=Math.max(0,d.getW(w)+l);var x=A.h+A.d,k=-A.d,r=0,p=0;if(o>0){o+=2*z;u-=z}if(x>0){x+=2*z;k-=z}s=-o-u;if(t){s-=t.right;k-=t.bottom;r+=t.left;p+=t.right;A.h+=t.top;A.d+=t.bottom;A.w+=t.left+t.right;A.lw-=t.left;A.rw+=t.right}if(v){x+=v.top+v.bottom;o+=v.left+v.right;s-=v.right;k-=v.bottom;r+=v.left;p+=v.right;A.h+=v.top;A.d+=v.bottom;A.w+=v.left+v.right;A.lw-=v.left;A.rw+=v.right}if(p){w.style.paddingRight=d.Em(p)}var n=d.Element("span",{id:"MathJax-Color-"+this.spanID+d.idPostfix,isMathJax:true,style:{display:"inline-block",backgroundColor:y.mathbackground,width:d.Em(o),height:d.Em(x),verticalAlign:d.Em(k),marginLeft:d.Em(u),marginRight:d.Em(s)}});d.setBorders(n,t);if(A.width){n.style.width=A.width;n.style.marginRight="-"+A.width}if(d.msieInlineBlockAlignBug){n.style.position="relative";n.style.width=n.style.height=0;n.style.verticalAlign=n.style.marginLeft=n.style.marginRight="";n.style.border=n.style.padding="";if(t&&d.msieBorderWidthBug){x+=t.top+t.bottom;o+=t.left+t.right}n.style.width=d.Em(r+z);d.placeBox(d.addElement(n,"span",{noAdjust:true,isMathJax:true,style:{display:"inline-block",position:"absolute",overflow:"hidden",background:(y.mathbackground||"transparent"),width:d.Em(o),height:d.Em(x)}}),u,A.h+z);d.setBorders(n.firstChild,t)}w.parentNode.insertBefore(n,w);if(d.msieColorPositionBug){w.style.position="relative"}return n}return null},HTMLremoveColor:function(){var k=document.getElementById("MathJax-Color-"+this.spanID+d.idPostfix);if(k){k.parentNode.removeChild(k)}},HTMLhandleSpace:function(o){if(this.useMMLspacing){if(this.type!=="mo"){return}var m=this.getValues("scriptlevel","lspace","rspace");if(m.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){var l=this.HTMLgetMu(o);m.lspace=Math.max(0,d.length2em(m.lspace,l));m.rspace=Math.max(0,d.length2em(m.rspace,l));var k=this,n=this.Parent();while(n&&n.isEmbellished()&&n.Core()===k){k=n;n=n.Parent();o=k.HTMLspanElement()}if(m.lspace){o.style.paddingLeft=d.Em(m.lspace)}if(m.rspace){o.style.paddingRight=d.Em(m.rspace)}}}else{var p=this.texSpacing();if(p!==""){p=d.length2em(p,this.HTMLgetScale())/(o.scale||1);if(o.style.paddingLeft){p+=d.unEm(o.style.paddingLeft)}o.style.paddingLeft=d.Em(p)}}},HTMLgetScale:function(){var m=1,k=this.getValues("mathsize","scriptlevel","fontsize");if(this.style){var l=this.HTMLspanElement();if(l.style.fontSize!=""){k.fontsize=l.style.fontSize}}if(k.fontsize&&!this.mathsize){k.mathsize=k.fontsize}if(k.scriptlevel!==0){if(k.scriptlevel>2){k.scriptlevel=2}m=Math.pow(this.Get("scriptsizemultiplier"),k.scriptlevel);k.scriptminsize=d.length2em(this.Get("scriptminsize"));if(m2){l.scriptlevel=2}k=Math.sqrt(Math.pow(l.scriptsizemultiplier,l.scriptlevel))}return k},HTMLgetVariant:function(){var k=this.getValues("mathvariant","fontfamily","fontweight","fontstyle");k.hasVariant=this.Get("mathvariant",true);if(!k.hasVariant){k.family=k.fontfamily;k.weight=k.fontweight;k.style=k.fontstyle}if(this.style){var m=this.HTMLspanElement();if(!k.family&&m.style.fontFamily){k.family=m.style.fontFamily}if(!k.weight&&m.style.fontWeight){k.weight=m.style.fontWeight}if(!k.style&&m.style.fontStyle){k.style=m.style.fontStyle}}if(k.weight&&k.weight.match(/^\d+$/)){k.weight=(parseInt(k.weight)>600?"bold":"normal")}var l=k.mathvariant;if(this.variantForm){l="-"+d.fontInUse+"-variant"}if(k.family&&!k.hasVariant){if(!k.weight&&k.mathvariant.match(/bold/)){k.weight="bold"}if(!k.style&&k.mathvariant.match(/italic/)){k.style="italic"}return{FONTS:[],fonts:[],noRemap:true,defaultFont:{family:k.family,style:k.style,weight:k.weight}}}if(k.weight==="bold"){l={normal:g.VARIANT.BOLD,italic:g.VARIANT.BOLDITALIC,fraktur:g.VARIANT.BOLDFRAKTUR,script:g.VARIANT.BOLDSCRIPT,"sans-serif":g.VARIANT.BOLDSANSSERIF,"sans-serif-italic":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.weight==="normal"){l={bold:g.VARIANT.normal,"bold-italic":g.VARIANT.ITALIC,"bold-fraktur":g.VARIANT.FRAKTUR,"bold-script":g.VARIANT.SCRIPT,"bold-sans-serif":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.SANSSERIFITALIC}[l]||l}}if(k.style==="italic"){l={normal:g.VARIANT.ITALIC,bold:g.VARIANT.BOLDITALIC,"sans-serif":g.VARIANT.SANSSERIFITALIC,"bold-sans-serif":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.style==="normal"){l={italic:g.VARIANT.NORMAL,"bold-italic":g.VARIANT.BOLD,"sans-serif-italic":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.BOLDSANSSERIF}[l]||l}}if(!(l in d.FONTDATA.VARIANT)){l="normal"}return d.FONTDATA.VARIANT[l]}},{HTMLautoload:function(){var k=d.autoloadDir+"/"+this.type+".js";b.RestartAfter(h.Require(k))},HTMLautoloadFile:function(k){var l=d.autoloadDir+"/"+k+".js";b.RestartAfter(h.Require(l))},HTMLstretchH:function(l,k){this.HTMLremoveColor();return this.toHTML(l,k)},HTMLstretchV:function(l,k,m){this.HTMLremoveColor();return this.toHTML(l,k,m)}});g.chars.Augment({toHTML:function(n,m,l,o){var r=this.data.join("").replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.entity.Augment({toHTML:function(n,m,l,o){var r=this.toString().replace(/[\u2061-\u2064]/g,"");if(l){r=l(r,o)}if(m.fontInherit){var q=Math.floor(100/d.scale+0.5)+"%";d.addElement(n,"span",{style:{"font-size":q}},[r]);if(m.bold){n.lastChild.style.fontWeight="bold"}if(m.italic){n.lastChild.style.fontStyle="italic"}var p=d.getHD(n),k=d.getW(n);n.bbox={h:p.h,d:p.d,w:k,lw:0,rw:k,exactW:true}}else{this.HTMLhandleVariant(n,m,r)}}});g.mi.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lp.w&&q.length===1&&!n.noIC){p.ic=p.rw-p.w;d.createBlank(o,p.ic);p.w=p.rw}this.HTMLhandleSpace(o);this.HTMLhandleColor(o);return o}});g.mn.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));o.bbox=null;var n=this.HTMLgetVariant();for(var l=0,k=this.data.length;lu.bbox.w){u.bbox.ic=u.bbox.rw-u.bbox.w;d.createBlank(u,u.bbox.ic);u.bbox.w=u.bbox.rw}}this.HTMLhandleSpace(u);this.HTMLhandleColor(u);return u},CoreParent:function(){var k=this;while(k&&k.isEmbellished()&&k.CoreMO()===this&&!k.isa(g.math)){k=k.Parent()}return k},CoreText:function(k){if(!k){return""}if(k.isEmbellished()){return k.CoreMO().data.join("")}while((k.isa(g.mrow)||k.isa(g.TeXAtom)||k.isa(g.mstyle)||k.isa(g.mphantom))&&k.data.length===1&&k.data[0]){k=k.data[0]}if(!k.isToken){return""}else{return k.data.join("")}},HTMLremapChars:{"*":"\u2217",'"':"\u2033","\u00B0":"\u2218","\u00B2":"2","\u00B3":"3","\u00B4":"\u2032","\u00B9":"1"},HTMLremap:function(l,k){l=l.replace(/-/g,"\u2212");if(k){l=l.replace(/'/g,"\u2032").replace(/`/g,"\u2035");if(l.length===1){l=k[l]||l}}return l},HTMLcanStretch:function(n){if(!this.Get("stretchy")){return false}var o=this.data.join("");if(o.length>1){return false}var l=this.CoreParent();if(l&&l.isa(g.munderover)&&this.CoreText(l.data[l.base]).length===1){var m=l.data[l.over],k=l.data[l.under];if(m&&this===m.CoreMO()&&l.Get("accent")){o=d.FONTDATA.REMAPACCENT[o]||o}else{if(k&&this===k.CoreMO()&&l.Get("accentunder")){o=d.FONTDATA.REMAPACCENTUNDER[o]||o}}}o=d.FONTDATA.DELIMITERS[o.charCodeAt(0)];return(o&&o.dir==n.substr(0,1))},HTMLstretchV:function(m,n,o){this.HTMLremoveColor();var r=this.getValues("symmetric","maxsize","minsize");var p=this.HTMLspanElement(),s=this.HTMLgetMu(p),q;var k=d.TeX.axis_height,l=p.scale;if(r.symmetric){q=2*Math.max(n-k,o+k)}else{q=n+o}r.maxsize=d.length2em(r.maxsize,s,p.bbox.h+p.bbox.d);r.minsize=d.length2em(r.minsize,s,p.bbox.h+p.bbox.d);q=Math.max(r.minsize,Math.min(r.maxsize,q));p=this.HTMLcreateSpan(m);d.createDelimiter(p,this.data.join("").charCodeAt(0),q,l);if(r.symmetric){q=(p.bbox.h+p.bbox.d)/2+k}else{q=(p.bbox.h+p.bbox.d)*n/(n+o)}d.positionDelimiter(p,q);this.HTMLhandleSpace(p);this.HTMLhandleColor(p);return p},HTMLstretchH:function(o,k){this.HTMLremoveColor();var m=this.getValues("maxsize","minsize","mathvariant","fontweight");if((m.fontweight==="bold"||parseInt(m.fontweight)>=600)&&!this.Get("mathvariant",true)){m.mathvariant=g.VARIANT.BOLD}var n=this.HTMLspanElement(),l=this.HTMLgetMu(n),p=n.scale;m.maxsize=d.length2em(m.maxsize,l,n.bbox.w);m.minsize=d.length2em(m.minsize,l,n.bbox.w);k=Math.max(m.minsize,Math.min(m.maxsize,k));n=this.HTMLcreateSpan(o);d.createDelimiter(n,this.data.join("").charCodeAt(0),k,p,m.mathvariant);this.HTMLhandleSpace(n);this.HTMLhandleColor(n);return n}});g.mtext.Augment({toHTML:function(o){o=this.HTMLhandleSize(this.HTMLcreateSpan(o));var n=this.HTMLgetVariant();if(d.config.mtextFontInherit||this.Parent().type==="merror"){n={bold:n.bold,italic:n.italic,fontInherit:true}}for(var l=0,k=this.data.length;ld.linebreakWidth)||this.hasNewline()},HTMLstretchH:function(m,k){this.HTMLremoveColor();var l=this.HTMLspanElement();this.data[this.core].HTMLstretchH(l,k);this.HTMLcomputeBBox(l,true);this.HTMLhandleColor(l);return l},HTMLstretchV:function(m,l,n){this.HTMLremoveColor();var k=this.HTMLspanElement();this.data[this.core].HTMLstretchV(k,l,n);this.HTMLcomputeBBox(k,true);this.HTMLhandleColor(k);return k}});g.mstyle.Augment({toHTML:function(l,k,m){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){var n=this.data[0].toHTML(l);if(m!=null){this.data[0].HTMLstretchV(l,k,m)}else{if(k!=null){this.data[0].HTMLstretchH(l,k)}}l.bbox=n.bbox}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mfrac.Augment({toHTML:function(D){D=this.HTMLcreateSpan(D);var m=d.createStack(D);var r=d.createBox(m),o=d.createBox(m);d.MeasureSpans([this.HTMLboxChild(0,r),this.HTMLboxChild(1,o)]);var k=this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled");var I=this.HTMLgetScale(),C=k.displaystyle;var G=d.TeX.axis_height*I;if(k.bevelled){var F=(C?0.4:0.15);var s=Math.max(r.bbox.h+r.bbox.d,o.bbox.h+o.bbox.d)+2*F;var E=d.createBox(m);d.createDelimiter(E,47,s);d.placeBox(r,0,(r.bbox.d-r.bbox.h)/2+G+F);d.placeBox(E,r.bbox.w-F/2,(E.bbox.d-E.bbox.h)/2+G);d.placeBox(o,r.bbox.w+E.bbox.w-F,(o.bbox.d-o.bbox.h)/2+G-F)}else{var l=Math.max(r.bbox.w,o.bbox.w);var y=d.thickness2em(k.linethickness,I),A,z,x,w;var B=d.TeX.min_rule_thickness/this.em;if(C){x=d.TeX.num1;w=d.TeX.denom1}else{x=(y===0?d.TeX.num3:d.TeX.num2);w=d.TeX.denom2}x*=I;w*=I;if(y===0){A=Math.max((C?7:3)*d.TeX.rule_thickness,2*B);z=(x-r.bbox.d)-(o.bbox.h-w);if(zy){l=((s.bbox.h+s.bbox.d)-(y-A))/2}var B=d.FONTDATA.DELIMITERS[d.FONTDATA.RULECHAR];if(!B||oK){K=r[M].bbox.w}if(!N[M]&&K>n){n=K}}}if(F==null&&H!=null){n=H}else{if(n==-d.BIGDIMEN){n=K}}for(M=K=0,I=this.data.length;MK){K=w.bbox.w}}}var E=d.TeX.rule_thickness,G=d.FONTDATA.TeX_factor;var p=r[this.base]||{bbox:this.HTMLzeroBBox()};var v,s,A,z,u,C,J,O=0;if(p.bbox.ic){O=1.3*p.bbox.ic+0.05}for(M=0,I=this.data.length;M0){z+=F;y-=F}}d.placeBox(k,o.bbox.w+M,Math.max(z,J.superscriptshift));d.placeBox(x,o.bbox.w,-Math.max(y,J.subscriptshift))}}this.HTMLhandleSpace(K);this.HTMLhandleColor(K);return K},HTMLstretchH:g.mbase.HTMLstretchH,HTMLstretchV:g.mbase.HTMLstretchV});g.mmultiscripts.Augment({toHTML:g.mbase.HTMLautoload});g.mtable.Augment({toHTML:g.mbase.HTMLautoload});g["annotation-xml"].Augment({toHTML:g.mbase.HTMLautoload});g.math.Augment({toHTML:function(u,l){var r=this.Get("alttext");if(r&&r!==""){l.setAttribute("aria-label",r)}var m=d.addElement(u,"nobr",{isMathJax:true});u=this.HTMLcreateSpan(m);var s=d.createStack(u),n=d.createBox(s),t;s.style.fontSize=m.parentNode.style.fontSize;m.parentNode.style.fontSize="";if(this.data[0]!=null){if(d.msieColorBug){if(this.background){this.data[0].background=this.background;delete this.background}if(this.mathbackground){this.data[0].mathbackground=this.mathbackground;delete this.mathbackground}}g.mbase.prototype.displayAlign=b.config.displayAlign;g.mbase.prototype.displayIndent=b.config.displayIndent;var o=this.data[0].toHTML(n);o.bbox.exactW=false;t=d.Measured(o,n)}d.placeBox(n,0,0);u.style.width=d.Em((Math.round(t.bbox.w*this.em)+0.25)/d.outerEm);u.style.display="inline-block";var k=1/d.em,q=d.em/d.outerEm;d.em/=q;u.bbox.h*=q;u.bbox.d*=q;u.bbox.w*=q;u.bbox.lw*=q;u.bbox.rw*=q;if(t&&t.bbox.width!=null){u.style.minWidth=(t.bbox.minWidth||u.style.width);u.style.width=s.style.width=t.bbox.width;n.style.width="100%"}this.HTMLhandleColor(u);if(t){d.createRule(u,(t.bbox.h+k)*q,(t.bbox.d+k)*q,0)}if(!this.isMultiline&&this.Get("display")==="block"&&u.bbox.width==null){var v=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(v.indentalignfirst!==g.INDENTALIGN.INDENTALIGN){v.indentalign=v.indentalignfirst}if(v.indentalign===g.INDENTALIGN.AUTO){v.indentalign=this.displayAlign}l.style.textAlign=v.indentalign;if(v.indentshiftfirst!==g.INDENTSHIFT.INDENTSHIFT){v.indentshift=v.indentshiftfirst}if(v.indentshift==="auto"){v.indentshift=this.displayIndent}if(v.indentshift&&v.indentalign!==g.INDENTALIGN.CENTER){u.style[{left:"marginLeft",right:"marginRight"}[v.indentalign]]=d.Em(d.length2em(v.indentshift))}}return u},HTMLspanElement:g.mbase.prototype.HTMLspanElement});g.TeXAtom.Augment({toHTML:function(l){l=this.HTMLcreateSpan(l);if(this.data[0]!=null){if(this.texClass===g.TEXCLASS.VCENTER){var k=d.createStack(l);var m=d.createBox(k);d.Measured(this.data[0].toHTML(m),m);d.placeBox(m,0,d.TeX.axis_height-(m.bbox.h+m.bbox.d)/2+m.bbox.d)}else{l.bbox=this.data[0].toHTML(l).bbox}}this.HTMLhandleSpace(l);this.HTMLhandleColor(l);return l}});MathJax.Hub.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",d,"jax.js"]),0)})});b.Register.StartupHook("End Config",function(){b.Browser.Select({MSIE:function(k){var o=(document.documentMode||0);var n=k.versionAtLeast("7.0");var m=k.versionAtLeast("8.0")&&o>7;var l=(document.compatMode==="BackCompat");if(o<9){d.config.styles[".MathJax .MathJax_HitBox"]["background-color"]="white";d.config.styles[".MathJax .MathJax_HitBox"].opacity=0;d.config.styles[".MathJax .MathJax_HitBox"].filter="alpha(opacity=0)"}d.Augment({PaddingWidthBug:true,msieAccentBug:true,msieColorBug:true,msieColorPositionBug:true,msieRelativeWidthBug:l,msieDisappearingBug:(o>=8),msieMarginScaleBug:(o<8),msiePaddingWidthBug:true,msieBorderWidthBug:l,msieFrameSizeBug:(o<=8),msieInlineBlockAlignBug:(!m||l),msiePlaceBoxBug:(m&&!l),msieClipRectBug:!m,msieNegativeSpaceBug:l,cloneNodeBug:(m&&k.version==="8.0"),initialSkipBug:(o<8),msieNegativeBBoxBug:(o>=8),msieIE6:!n,msieItalicWidthBug:true,FontFaceBug:true,msieFontCSSBug:k.isIE9,allowWebFonts:(o>=9?"woff":"eot")})},Firefox:function(l){var m=false;if(l.versionAtLeast("3.5")){var k=String(document.location).replace(/[^\/]*$/,"");if(document.location.protocol!=="file:"||b.config.root.match(/^https?:\/\//)||(b.config.root+"/").substr(0,k.length)===k){m="otf"}}d.Augment({ffVerticalAlignBug:true,AccentBug:true,allowWebFonts:m})},Safari:function(p){var n=p.versionAtLeast("3.0");var m=p.versionAtLeast("3.1");var k=navigator.appVersion.match(/ Safari\/\d/)&&navigator.appVersion.match(/ Version\/\d/)&&navigator.vendor.match(/Apple/);var l=(navigator.appVersion.match(/ Android (\d+)\.(\d+)/));var q=(m&&p.isMobile&&((navigator.platform.match(/iPad|iPod|iPhone/)&&!p.versionAtLeast("5.0"))||(l!=null&&(l[1]<2||(l[1]==2&&l[2]<2)))));d.Augment({config:{styles:{".MathJax img, .MathJax nobr, .MathJax a":{"max-width":"5000em","max-height":"5000em"}}},rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariVerticalAlignBug:!m,safariTextNodeBug:!n,forceReflow:true,allowWebFonts:(m&&!q?"otf":false)});if(k){d.Augment({webFontDefault:(p.isMobile?"sans-serif":"serif")})}if(p.isPC){d.Augment({adjustAvailableFonts:d.removeSTIXfonts,checkWebFontsTwice:true})}if(q){var o=b.config["HTML-CSS"];if(o){o.availableFonts=[];o.preferredFont=null}else{b.config["HTML-CSS"]={availableFonts:[],preferredFont:null}}}},Chrome:function(k){d.Augment({Em:d.EmRounded,cloneNodeBug:true,rfuzz:0.011,AccentBug:true,AdjustSurd:true,negativeBBoxes:true,safariNegativeSpaceBug:true,safariWebFontSerif:[""],forceReflow:true,allowWebFonts:(k.versionAtLeast("4.0")?"otf":"svg")})},Opera:function(k){k.isMini=(navigator.appVersion.match("Opera Mini")!=null);d.config.styles[".MathJax .merror"]["vertical-align"]=null;d.config.styles[".MathJax span"]["z-index"]=0;d.Augment({operaHeightBug:true,operaVerticalAlignBug:true,operaFontSizeBug:k.versionAtLeast("10.61"),initialSkipBug:true,FontFaceBug:true,PaddingWidthBug:true,allowWebFonts:(k.versionAtLeast("10.0")&&!k.isMini?"otf":false),adjustAvailableFonts:d.removeSTIXfonts})},Konqueror:function(k){d.Augment({konquerorVerticalAlignBug:true})}})});MathJax.Hub.Register.StartupHook("End Cookie",function(){if(b.config.menuSettings.zoom!=="None"){h.Require("[MathJax]/extensions/MathZoom.js")}})})(MathJax.Ajax,MathJax.Hub,MathJax.OutputJax["HTML-CSS"]); - diff --git a/modules/MathJax/jax/output/NativeMML/config.js b/modules/MathJax/jax/output/NativeMML/config.js deleted file mode 100644 index e4c417b..0000000 --- a/modules/MathJax/jax/output/NativeMML/config.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/NativeMML/config.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.NativeMML=MathJax.OutputJax({id:"NativeMML",version:"2.2",directory:MathJax.OutputJax.directory+"/NativeMML",extensionDir:MathJax.OutputJax.extensionDir+"/NativeMML",config:{scale:100,minScaleAdjust:50,styles:{"DIV.MathJax_MathML":{"text-align":"center",margin:".75em 0px"}}}});if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax.NativeMML.Register("jax/mml")}MathJax.OutputJax.NativeMML.loadComplete("config.js"); - diff --git a/modules/MathJax/jax/output/NativeMML/jax.js b/modules/MathJax/jax/output/NativeMML/jax.js deleted file mode 100644 index 0cbfd7d..0000000 --- a/modules/MathJax/jax/output/NativeMML/jax.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/NativeMML/jax.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(l,c,g,e){var f,i=c.Browser.isMSIE;var h,b,d,k;c.Register.StartupHook("MathZoom Ready",function(){k=MathJax.Extension.MathZoom});var j=function(m,o){var n=e.Element("span");m="padding"+m;if(o){n.style.cssText=(o.getAttribute("style")||"");if(n.style.padding===""&&(n.style[m]||"")===""){n.style[m]="0px";o.setAttribute("style",n.style.cssText)}}};var a=function(r,m,p){if(r){var o=e.Element("span");o.style.cssText=(r.getAttribute("style")||"");if(o.style.padding===""){var q={paddingLeft:p,paddingTop:m,paddingRight:"0px",paddingBottom:"0px"};for(var n in q){if(q.hasOwnProperty(n)){if((o.style[n]||"")===""){o.style[n]=q[n]}}}}r.setAttribute("style",o.style.cssText)}};l.Augment({config:{styles:{".MathJax_MathML":{"font-style":"normal","font-weight":"normal","line-height":"normal","font-size":"100%","font-size-adjust":"none","text-indent":0,"text-align":"left","text-transform":"none","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"nowrap","float":"none",direction:"ltr",border:0,padding:0,margin:0},"span.MathJax_MathML":{display:"inline"},"div.MathJax_MathML":{display:"block"},".MathJax_mmlExBox":{display:"block",overflow:"hidden",height:"1px",width:"60ex",padding:0,border:0,margin:0}}},settings:c.config.menuSettings,ex:1,Config:function(){this.SUPER(arguments).Config.call(this);if(this.settings.scale){this.config.scale=this.settings.scale}if(c.config.displayAlign!=="center"){var o=c.config.displayAlign,m=c.config.displayIndent;var n={"text-align":o+"!important"};n["margin-"+o]=m+"!important";c.Insert(this.config.styles,{"div.MathJax_MathML":n,"div.MathJax_MathML math":{"text-align":o},"div.MathJax_MathContainer > span":{"text-align":o+"!important"}})}if(!this.require){this.require=[]}this.require.push(MathJax.OutputJax.extensionDir+"/MathEvents.js")},Startup:function(){h=MathJax.Extension.MathEvents.Event;b=MathJax.Extension.MathEvents.Touch;d=MathJax.Extension.MathEvents.Hover;this.ContextMenu=h.ContextMenu;this.Mousedown=h.AltContextMenu;this.Mouseover=d.Mouseover;this.Mouseout=d.Mouseout;this.Mousemove=d.Mousemove;if(!i){this.EmExSpan=e.Element("span",{style:{position:"absolute","font-size-adjust":"none"}},[["div",{className:"MathJax_mmlExBox"}],["span",{className:"MathJax_MathML"}]]);f.math(f.mspace().With({width:"60ex"})).toNativeMML(this.EmExSpan.lastChild)}return g.Styles(this.config.styles)},InitializeMML:function(){this.initialized=true;if(i){try{if(!c.Browser.mpNamespace){var m=document.createElement("object");m.id="mathplayer";m.classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987";document.getElementsByTagName("head")[0].appendChild(m);document.namespaces.add("m","http://www.w3.org/1998/Math/MathML");c.Browser.mpNamespace=true}if(!c.Browser.mpImported){document.namespaces.m.doImport("#mathplayer");c.Browser.mpImported=true}}catch(n){alert(MathJax.Localization._(["MathML","MathPlayer"],"MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics."))}}else{document.body.appendChild(this.EmExSpan);this.defaultEx=this.EmExSpan.firstChild.offsetWidth/60;this.defaultMEx=this.EmExSpan.lastChild.offsetWidth/60;document.body.removeChild(this.EmExSpan)}},preTranslate:function(o){var t=o.jax[this.id],u,p=t.length,y,r,A,w,z,n,v,s,q;for(u=0;u1?v/s:1)*this.config.scale;q=Math.floor(Math.max(this.config.minScaleAdjust/100,q));n.NativeMML.ex=v}else{q=100}n.NativeMML.fontSize=q+"%"}if(!i){for(u=0;ut){t=o;u.style.width=t+"px"}}if(this.msieIE8HeightBug){u.style.position=""}return{Y:-h.getBBox(u.parentNode).h,mW:p,mH:v,zW:t,zH:q}},NAMEDSPACE:{negativeveryverythinmathspace:"-.0556em",negativeverythinmathspace:"-.1111em",negativethinmathspace:"-.1667em",negativemediummathspace:"-.2222em",negativethickmathspace:"-.2778em",negativeverythickmathspace:"-.3333em",negativeveryverythickmathspace:"-.3889em"}});c.Register.StartupHook("mml Jax Ready",function(){f=MathJax.ElementJax.mml;f.mbase.Augment({toNativeMML:function(r){var p=this.NativeMMLelement(this.type);this.NativeMMLattributes(p);for(var q=0,o=this.data.length;q1){o=this.NativeMMLelement("mrow");s.appendChild(q);s=q}for(;r0;u--){q.separators.push(v)}}}var o=this.NativeMMLelement(t?this.type:"mrow");this.NativeMMLattributes(o);o.removeAttribute("separators");if(t){o.setAttribute("open",q.open);o.setAttribute("close",q.close);if(this.data.length>1){w.appendChild(o);w=o;o=this.NativeMMLelement("mrow")}}else{o.removeAttribute("open");o.removeAttribute("close")}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.open;o.appendChild(r)}for(u=0,p=this.data.length;u0){r=this.NativeMMLelement("mo");r.setAttribute("separator","true");r.textContent=q.separators[u-1];o.appendChild(r)}if(this.data[u]){this.data[u].toNativeMML(o)}else{o.appendChild(this.NativeMMLelement("mrow"))}}if(!t){r=this.NativeMMLelement("mo");r.setAttribute("fence","true");r.textContent=q.close;o.appendChild(r)}w.appendChild(o)}});f.TeXAtom.Augment({toNativeMML:function(p){var o=this.NativeMMLelement("mrow");this.NativeMMLattributes(o);this.data[0].toNativeMML(o);p.appendChild(o)}});f.chars.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.entity.Augment({toNativeMML:function(o){o.appendChild(document.createTextNode(this.toString()))}});f.xml.Augment({toNativeMML:function(q){for(var p=0,o=this.data.length;pthis.data.length){this.selection=1}var i=this;while(i.type!=="math"){i=i.inherit}var h=MathJax.Hub.getJaxFor(i.inputID);h.Update();return MathJax.Extension.MathEvents.Event.False(j)},SVGsetStatus:function(h){this.messageID=MathJax.Message.Set((this.data[1]&&this.data[1].isToken)?this.data[1].data.join(""):this.data[1].toString())},SVGclearStatus:function(h){if(this.messageID){MathJax.Message.Clear(this.messageID,0)}delete this.messageID},SVGtooltipOver:function(i){if(!i){i=window.event}if(b){clearTimeout(b);b=null}if(e){clearTimeout(e)}var h=i.pageX;var k=i.pageY;if(h==null){h=i.clientX+document.body.scrollLeft+document.documentElement.scrollLeft;k=i.clientY+document.body.scrollTop+document.documentElement.scrollTop}var j=MathJax.Callback(["SVGtooltipPost",this,h+a.offsetX,k+a.offsetY]);e=setTimeout(j,a.delayPost)},SVGtooltipOut:function(h){if(e){clearTimeout(e);e=null}if(b){clearTimeout(b)}var i=MathJax.Callback(["SVGtooltipClear",this,80]);b=setTimeout(i,a.delayClear)},SVGtooltipPost:function(h,o){e=null;if(b){clearTimeout(b);b=null}var n=this.SVGtooltip;n.style.display="block";n.style.opacity="";if(this===d){return}n.style.left=h+"px";n.style.top=o+"px";n.innerHTML="";var k=MathJax.HTML.addElement(n,"span");var m=this;while(m.type!=="math"){m=m.inherit}var i=MathJax.Hub.getJaxFor(m.inputID);this.em=c.mbase.prototype.em=i.SVG.em;this.ex=i.SVG.ex;this.linebreakWidth=i.SVG.lineWidth*1000;this.cwidth=i.SVG.cwidth;var j=this.data[1];m=c.math(j);try{m.toSVG(k,n)}catch(l){this.SetData(1,j);n.style.display="none";if(!l.restart){throw l}MathJax.Callback.After(["SVGtooltipPost",this,h,o],l.restart);return}this.SetData(1,j);d=this},SVGtooltipClear:function(i){var h=this.SVGtooltip;if(i<=0){h.style.display="none";h.style.opacity="";b=null}else{h.style.opacity=i/100;b=setTimeout(MathJax.Callback(["SVGtooltipClear",this,i-20]),50)}}});MathJax.Hub.Startup.signal.Post("SVG maction Ready");MathJax.Ajax.loadComplete(g.autoloadDir+"/maction.js")}); - diff --git a/modules/MathJax/jax/output/SVG/autoload/menclose.js b/modules/MathJax/jax/output/SVG/autoload/menclose.js deleted file mode 100644 index 79c8e19..0000000 --- a/modules/MathJax/jax/output/SVG/autoload/menclose.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/autoload/menclose.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Register.StartupHook("SVG Jax Ready",function(){var c="2.2";var a=MathJax.ElementJax.mml,d=MathJax.OutputJax.SVG,b=d.BBOX;b.ELLIPSE=b.Subclass({type:"ellipse",removeable:false,Init:function(i,k,e,g,f,j){if(j==null){j={}}j.fill="none";if(f){j.stroke=f}j["stroke-width"]=g.toFixed(2).replace(/\.?0+$/,"");j.cx=Math.floor(e/2);j.cy=Math.floor((i+k)/2-k);j.rx=Math.floor((e-g)/2);j.ry=Math.floor((i+k-g)/2);this.SUPER(arguments).Init.call(this,j);this.w=this.r=e;this.h=this.H=i;this.d=this.D=k;this.l=0}});b.DLINE=b.Subclass({type:"line",removeable:false,Init:function(i,l,e,g,f,j,k){if(k==null){k={}}k.fill="none";if(f){k.stroke=f}k["stroke-width"]=g.toFixed(2).replace(/\.?0+$/,"");if(j=="up"){k.x1=Math.floor(g/2);k.y1=Math.floor(g/2-l);k.x2=Math.floor(e-g/2);k.y2=Math.floor(i-g/2)}else{k.x1=Math.floor(g/2);k.y1=Math.floor(i-g/2);k.x2=Math.floor(e-g/2);k.y2=Math.floor(g/2-l)}this.SUPER(arguments).Init.call(this,k);this.w=this.r=e;this.h=this.H=i;this.d=this.D=l;this.l=0}});b.FPOLY=b.Subclass({type:"polygon",removeable:false,Init:function(p,g,e){if(e==null){e={}}if(g){e.fill=g}var j=[],o=100000000,n=o,r=-o,q=r;for(var h=0,f=p.length;hr){r=l}if(lq){q=k}if(k0){o+=C;m-=C}}o=Math.max(o,H.superscriptshift);m=Math.max(m,H.subscriptshift);if(e){B.Add(e,l+j.w+y,o)}if(i){B.Add(i,l+L-i.w,o)}if(k){B.Add(k,l+j.w+y-L,-m)}if(n){B.Add(n,l-n.w,-m)}}}B.Clean();this.SVGhandleColor(B);this.SVGsaveData(B);return B},SVGgetScripts:function(p){var o,d,e=[];var n=1,g=this.data.length,f=0;for(var h=0;h<4;h+=2){while(nu){u=aC}G[aC]=b.G();h[aC]=-d.BIGDIMEN}aj=O.data[aC-av];L[aD][aC]=aj.toSVG();if(aj.isEmbellished()){z=aj.CoreMO();var aH=z.Get("minsize",true);if(aH){if(z.SVGcanStretch("Vertical")){aw=z.SVGdata.h+z.SVGdata.d;if(aw){aH=d.length2em(aH,t,aw);if(aH*z.SVGdata.h/aw>v[aC]){v[aC]=aH*z.SVGdata.h/aw}if(aH*z.SVGdata.d/aw>E[aC]){E[aC]=aH*z.SVGdata.d/aw}}}else{if(z.SVGcanStretch("Horizontal")){aH=d.length2em(aH,t,z.SVGdata.w);if(aH>h[aC]){h[aC]=aH}}}}}if(L[aD][aC].h>v[aD]){v[aD]=L[aD][aC].h}if(L[aD][aC].d>E[aD]){E[aD]=L[aD][aC].d}if(L[aD][aC].w>h[aC]){h[aC]=L[aD][aC].w}}}if(v[0]+E[0]){v[0]=Math.max(v[0],Z)}if(v[L.length-1]+E[L.length-1]){E[L.length-1]=Math.max(E[L.length-1],ad)}var ak=MathJax.Hub.SplitList;var ai=ak(aI.columnspacing),Q=ak(aI.rowspacing),af=ak(aI.columnalign),I=ak(aI.rowalign),K=ak(aI.columnlines),g=ak(aI.rowlines),an=ak(aI.columnwidth),ar=[];for(aD=0,aA=ai.length;aDL.length){az=L.length}}e=0;au=-(aw+X)+v[0];for(aD=0,aA=az-1;aD0.98){ag=T/(S+T);ao=S+T}else{ao=S/(1-at)}}else{ao=d.length2em(aI.width,t);for(aD=0,aA=Math.min(u+1,ai.length);aD0.01){if(aE&&ao>S){ao=(ao-S)/aE;for(aD=0,aA=w.length;aD=f.linebreakWidth||j.penalty==e.newline)){this.SVGaddLine(k,h,j.index,g,j.values,l);h=j.index.slice(0);l=true;m=this.SVGgetAlign(g,j.values);i=this.SVGgetShift(g,j.values,m);if(m===a.INDENTALIGN.CENTER){i=0}j.W=j.shift=j.scanW=i;j.penalty=e.nobreak}g.isLast=true;this.SVGaddLine(k,h,[],g,c,l);this.SVGhandleSpace(k);this.SVGhandleColor(k);k.isMultiline=true;this.SVGsaveData(k);return k}});a.mbase.Augment({SVGlinebreakPenalty:e,SVGbetterBreak:function(j,g){if(this.isToken){return false}if(this.isEmbellished()){j.embellished=this;return this.CoreMO().SVGbetterBreak(j,g)}if(this.linebreakContainer){return false}var q=j.index.slice(0),o=j.index.shift(),n=this.data.length,l,r,k,p=(j.index.length>0),h=false;if(o==null){o=-1}if(!p){o++;j.W+=j.w;j.w=0}k=j.scanW=j.W;j.nest++;while(o0){var m=f.FONTDATA.baselineskip*g.scale;var j=(g.values.lineleading==null?g.VALUES:g.values).lineleading;g.Y-=Math.max(m,g.d+q.h+j)}l.Align(q,o,0,g.Y);g.d=q.d;g.values=p;g.n++},SVGgetAlign:function(j,g){var k=g,h=j.values,i=j.VALUES,l;if(j.n===0){l=k.indentalignfirst||h.indentalignfirst||i.indentalignfirst}else{if(j.isLast){l=h.indentalignlast||i.indentalignlast}else{l=h.indentalign||i.indentalign}}if(l===a.INDENTALIGN.INDENTALIGN){l=h.indentalign||i.indentalign}if(l===a.INDENTALIGN.AUTO){l=(j.isTop?this.displayAlign:a.INDENTALIGN.LEFT)}return l},SVGgetShift:function(k,h,m){if(m===a.INDENTALIGN.CENTER){return 0}var l=h,i=k.values,j=k.VALUES,g;if(k.n===0){g=l.indentshiftfirst||i.indentshiftfirst||j.indentshiftfirst}else{if(k.isLast){g=i.indentshiftlast||j.indentshiftlast}else{g=i.indentshift||j.indentshift}}if(g===a.INDENTSHIFT.INDENTSHIFT){g=i.indentshift||j.indentshift}if(g==="auto"||g===""){g=(k.isTSop?this.displayIndent:"0")}return f.length2em(g,0)},SVGmoveLine:function(p,g,k,o,h){var m=p[0],l=g[0];if(m==null){m=-1}if(l==null){l=this.data.length-1}if(m===l&&p.length>1){this.data[m].SVGmoveSlice(p.slice(1),g.slice(1),k,o,h,"paddingLeft")}else{var n=o.last;o.last=false;while(m0),h=false;if(s==null){s=-1}if(!t){s++;l.W+=l.w;l.w=0}n=l.scanW=l.W;l.nest++;if(!this.dataI){this.dataI=[];if(this.data.open){this.dataI.push("open")}if(p){this.dataI.push(0)}for(var r=1;r1){this.data[this.dataI[o]].SVGmoveSlice(h.slice(1),m.slice(1),p,g,r,"paddingLeft")}else{var q=g.last;g.last=false;var l=this.dataI[o];while(o0),h=false;if(!n){j.W+=j.w;j.w=0}k=j.scanW=j.W;if(m==null){this.SVGdata.dw=this.SVGdata.w-this.data[this.base].SVGdata.w}if(this.data[this.base].SVGbetterBreak(j,g)){h=true;o=[this.base].concat(j.index);l=j.W;p=j.w;if(j.penalty===e.newline){h=n=true}}if(!n){this.SVGaddWidth(this.base,j,k)}j.scanW+=this.SVGdata.dw;j.W=j.scanW;j.index=[];if(h){j.W=l;j.w=p;j.index=o}return h},SVGmoveLine:function(i,j,m,h,o){if(this.data[this.base]){if(i.length>1){this.data[this.base].SVGmoveSlice(i.slice(1),j.slice(1),m,h,o,"paddingLeft")}else{if(j.length<=1){this.data[this.base].SVGmove(m,h,o)}else{this.data[this.base].SVGmoveSlice([],j.slice(1),m,h,o,"paddingRight")}}}if(j.length===0){var l=this.data[this.sup],g=this.data[this.sub],n=m.w,k;if(l){k=l.SVGdata;m.Add(l.toSVG(),n+(k.dx||0),k.dy)}if(g){k=g.SVGdata;m.Add(g.toSVG(),n+(k.dx||0),k.dy)}}}});a.mo.Augment({SVGbetterBreak:function(i,g){if(i.values&&i.values.last===this){return false}var q=this.getValues("linebreak","linebreakstyle","lineleading","linebreakmultchar","indentalign","indentshift","indentalignfirst","indentshiftfirst","indentalignlast","indentshiftlast","texClass","fence");if(q.linebreakstyle===a.LINEBREAKSTYLE.INFIXLINEBREAKSTYLE){q.linebreakstyle=this.Get("infixlinebreakstyle")}if(q.texClass===a.TEXCLASS.OPEN){i.nest++}if(q.texClass===a.TEXCLASS.CLOSE){i.nest--}var j=i.scanW,k=(i.embellished||this);delete i.embellished;var m=k.SVGdata,p=m.w+m.x;if(q.linebreakstyle===a.LINEBREAKSTYLE.AFTER){j+=p;p=0}if(j-i.shift===0){return false}var l=f.linebreakWidth-j;if(g.n===0&&(q.indentshiftfirst!==g.VALUES.indentshiftfirst||q.indentalignfirst!==g.VALUES.indentalignfirst)){var n=this.SVGgetAlign(g,q),h=this.SVGgetShift(g,q,n);l+=(i.shift-h)}var o=Math.floor(l/f.linebreakWidth*1000);if(o<0){o=e.toobig-3*o}if(q.fence){o+=e.fence}if((q.linebreakstyle===a.LINEBREAKSTYLE.AFTER&&q.texClass===a.TEXCLASS.OPEN)||q.texClass===a.TEXCLASS.CLOSE){o+=e.close}o+=i.nest*e.nestfactor;var r=e[q.linebreak||a.LINEBREAK.AUTO];if(!(r instanceof Array)){if(l>=0){o=r*i.nest}}else{o=Math.max(1,o+r[0]*i.nest)}if(o>=i.penalty){return false}i.penalty=o;i.values=q;i.W=j;i.w=p;q.lineleading=f.length2em(q.lineleading,g.VALUES.lineleading);q.last=this;return true}});a.mspace.Augment({SVGbetterBreak:function(h,g){if(h.values&&h.values.last===this){return false}var o=this.getValues("linebreak");var m=o.linebreak;if(!m||this.hasDimAttr()){m=a.LINEBREAK.AUTO}var i=h.scanW,k=this.SVGdata,n=k.w+k.x;if(i-h.shift===0){return false}var j=f.linebreakWidth-i;var l=Math.floor(j/f.linebreakWidth*1000);if(l<0){l=e.toobig-3*l}l+=h.nest*e.nestfactor;var p=e[m];if(m===a.LINEBREAK.AUTO&&n>=e.spacelimit*1000){p=[(n+e.spaceoffset)*e.spacefactor]}if(!(p instanceof Array)){if(j>=0){l=p*h.nest}}else{l=Math.max(1,l+p[0]*h.nest)}if(l>=h.penalty){return false}h.penalty=l;h.values=o;h.W=i;h.w=n;o.lineleading=g.VALUES.lineleading;o.linebreakstyle="before";o.last=this;return true}});MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function(){a.TeXmathchoice.Augment({SVGbetterBreak:function(h,g){return this.Core().SVGbetterBreak(h,g)},SVGmoveLine:function(k,g,i,j,h){return this.Core().SVGmoveSlice(k,g,i,j,h)}})});a.maction.Augment({SVGbetterBreak:function(h,g){return this.Core().SVGbetterBreak(h,g)},SVGmoveLine:function(k,g,i,j,h){return this.Core().SVGmoveSlice(k,g,i,j,h)},});a.semantics.Augment({SVGbetterBreak:function(h,g){return(this.data[0]?this.data[0].SVGbetterBreak(h,g):false)},SVGmoveLine:function(k,g,i,j,h){return(this.data[0]?this.data[0].SVGmoveSlice(k,g,i,j,h):null)}});MathJax.Hub.Startup.signal.Post("SVG multiline Ready");MathJax.Ajax.loadComplete(f.autoloadDir+"/multiline.js")}); - diff --git a/modules/MathJax/jax/output/SVG/config.js b/modules/MathJax/jax/output/SVG/config.js deleted file mode 100644 index 11159fc..0000000 --- a/modules/MathJax/jax/output/SVG/config.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/config.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG=MathJax.OutputJax({id:"SVG",version:"2.2",directory:MathJax.OutputJax.directory+"/SVG",extensionDir:MathJax.OutputJax.extensionDir+"/SVG",autoloadDir:MathJax.OutputJax.directory+"/SVG/autoload",fontDir:MathJax.OutputJax.directory+"/SVG/fonts",config:{scale:100,minScaleAdjust:50,font:"TeX",blacker:10,mtextFontInherit:false,undefinedFamily:"STIXGeneral,'Arial Unicode MS',serif",addMMLclasses:false,EqnChunk:(MathJax.Hub.Browser.isMobile?10:50),EqnChunkFactor:1.5,EqnChunkDelay:100,linebreaks:{automatic:false,width:"container"},styles:{".MathJax_SVG_Display":{"text-align":"center",margin:"1em 0em"},"#MathJax_SVG_Tooltip":{"background-color":"InfoBackground",color:"InfoText",border:"1px solid black","box-shadow":"2px 2px 5px #AAAAAA","-webkit-box-shadow":"2px 2px 5px #AAAAAA","-moz-box-shadow":"2px 2px 5px #AAAAAA","-khtml-box-shadow":"2px 2px 5px #AAAAAA",padding:"3px 4px","z-index":401}}}});if(!MathJax.Hub.config.delayJaxRegistration){MathJax.OutputJax.SVG.Register("jax/mml")}MathJax.OutputJax.SVG.loadComplete("config.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js deleted file mode 100644 index 96784fa..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{8592:[437,-64,500,64,423,"292 419Q292 400 261 347T211 275H306Q319 275 338 275T364 276Q399 276 410 271T422 250T411 230T366 225H306H211Q214 222 232 197T271 136T292 82Q292 71 285 68T262 64H250H241Q221 64 216 67T205 83Q186 127 153 167T78 230Q64 238 64 250Q64 258 69 263T82 272T106 288T139 318Q162 342 177 365T198 402T209 425T223 436Q224 437 252 437H258Q292 437 292 419"],8594:[437,-64,500,58,417,"188 417Q188 437 221 437H233Q256 437 263 434T275 417Q294 373 327 333T402 270Q417 261 417 250Q417 241 410 236T382 217T341 182Q315 155 299 128T275 85T263 66Q259 64 231 64H219Q197 64 191 72T193 100Q202 124 215 147T239 185T257 210T267 223L269 225H174H116Q80 225 69 229T58 250T70 271T114 276Q121 276 140 276T174 275H269L267 277Q266 280 257 291T233 325T205 374Q188 408 188 417"],8602:[437,-60,1000,56,942,"942 250Q942 244 928 230H511L457 148Q440 124 420 93Q404 68 400 64T389 60Q381 60 375 66T368 81Q368 88 415 159L462 230H175L188 214Q210 188 235 145T264 85Q264 75 260 74T231 72L206 74L191 103Q169 142 164 150Q130 195 64 239Q56 244 56 250T64 261Q115 294 142 323T191 397L206 428H231Q255 428 259 426T264 414Q260 397 235 355T188 288L175 272L331 270Q488 270 491 272Q491 275 542 352T597 432Q602 437 609 437Q617 437 622 432T628 417T582 341L537 272L735 270H931Q942 257 942 250"],8603:[437,-60,1000,54,942,"54 250Q54 258 66 270H277L488 272L542 350Q596 431 602 435Q604 437 609 437Q617 437 622 432T628 417T582 341L537 272L608 270H751L822 272L808 288Q786 313 761 355T733 414Q733 424 737 426T766 428H793L806 397Q829 354 864 314Q896 284 928 263Q942 257 942 250T928 237Q887 208 864 185Q829 147 806 103L793 74L766 72Q742 72 738 73T733 85Q735 102 756 137T797 198L817 225L822 230H511L457 148Q440 124 420 93Q404 68 400 64T389 60Q381 60 375 66T368 81Q368 88 415 159L462 230H264L66 232Q54 239 54 250"],8606:[417,-83,1000,56,944,"56 250Q103 277 142 322T199 417H221Q244 417 244 416Q244 414 237 397T208 344T158 278L151 270H276L285 277Q322 306 349 345T388 417H434Q434 413 424 392T393 338T349 279L340 270H634Q933 270 937 266L938 265Q944 259 944 250T938 235L937 234Q933 230 634 230H340L349 221Q372 196 393 163T424 108T434 83H388Q377 116 350 155T285 223L276 230H151L158 222Q186 191 207 156T236 104T244 84Q244 83 221 83H199Q181 133 142 178T56 250"],8608:[417,-83,1000,55,943,"943 250Q895 221 856 177T801 83H778Q755 83 755 84Q755 86 762 103T791 156T841 222L848 230H723L714 223Q677 194 650 155T611 83H565Q565 87 575 108T606 162T650 221L659 230H365Q66 230 62 234L61 235Q55 241 55 250T61 265L62 266Q66 270 365 270H659L650 279Q627 304 606 337T575 392T565 417H611Q622 384 649 345T714 277L723 270H848L841 278Q813 309 792 344T763 396T755 416Q755 417 778 417H801Q817 367 856 323T943 250"],8610:[417,-83,1111,56,1031,"56 250Q103 277 142 322T199 417H221Q244 417 244 416Q244 414 237 397T208 344T158 278L151 270H873L882 277Q919 306 946 345T985 417H1031Q1031 413 1021 392T990 338T946 279L937 270V230L946 221Q969 196 990 163T1021 108T1031 83H985Q974 116 947 155T882 223L873 230H151L158 222Q186 191 207 156T236 104T244 84Q244 83 221 83H199Q181 133 142 178T56 250"],8611:[417,-83,1111,79,1054,"1054 250Q1006 221 967 177T912 83H889Q866 83 866 84Q866 86 873 103T902 156T952 222L959 230H237L228 223Q191 194 164 155T125 83H79Q79 87 89 108T120 162T164 221L173 230V270L164 279Q141 304 120 337T89 392T79 417H125Q136 384 163 345T228 277L237 270H959L952 278Q924 309 903 344T874 396T866 416Q866 417 889 417H912Q928 367 967 323T1054 250"],8619:[576,41,1000,56,965,"56 250Q103 277 142 322T199 417H221Q244 417 244 416Q244 414 237 397T208 344T158 278L151 270H622V305Q622 356 624 388T635 460T661 521T709 559T785 575Q813 575 833 573T880 561T923 534T952 483T964 405Q964 374 959 350T942 307T918 276T884 255T847 242T804 235T760 231T713 230H662V-27Q654 -41 644 -41H642H640Q628 -41 622 -27V230H151L158 222Q186 191 207 156T236 104T244 84Q244 83 221 83H199Q181 133 142 178T56 250ZM924 403Q924 474 894 505T794 536Q758 536 734 526T696 500T675 453T665 395T662 319V270H699Q826 270 875 295T924 403"],8620:[575,41,1000,35,943,"35 405Q35 454 48 489T86 542T137 567T195 575Q229 575 251 571T301 554T345 510T370 429Q377 384 377 305V270H848L841 278Q813 309 792 344T763 396T755 416Q755 417 778 417H801Q817 367 856 323T943 250Q896 221 857 177T801 83H778Q755 83 755 84Q755 86 762 103T791 156T841 222L848 230H377V-27Q369 -41 359 -41H357Q342 -41 337 -25V230H286Q247 231 225 232T169 238T115 255T75 284T45 333T35 405ZM75 406Q75 322 123 296T300 270H337V319Q335 432 317 477T240 534Q232 535 197 535Q140 535 108 507T75 406"],8621:[417,-83,1389,57,1331,"57 250Q159 311 200 417H246L242 407Q215 340 159 278L152 270H276L315 310Q354 349 358 351Q366 356 376 351Q378 350 455 273L530 196L606 273Q683 350 686 351Q694 354 703 351Q705 350 782 273L858 196L933 273Q1010 350 1012 351Q1022 356 1030 351Q1034 349 1073 310L1112 270H1236L1229 278Q1173 340 1146 407L1142 417H1188Q1233 306 1331 250Q1231 192 1188 83H1142L1146 93Q1173 160 1229 222L1236 230H1168Q1155 230 1139 230T1119 229Q1112 229 1108 229T1099 231T1092 233T1085 238T1078 245T1068 256T1056 269L1021 304L984 267Q948 230 910 191T867 149Q857 144 848 150Q844 151 770 227T694 304T618 228T540 150Q531 144 521 149Q517 152 479 191T404 267L367 304L332 269Q328 264 320 256T310 246T303 239T296 234T289 231T280 229T269 229Q265 229 249 229T220 230H152L159 222Q215 160 242 93L246 83H223L200 84L195 96Q152 190 57 250"],8622:[437,-60,1000,56,942,"491 272Q491 275 542 352T597 432Q602 437 609 437Q617 437 622 432T628 417T582 341L537 272L608 270H751L822 272L808 288Q786 313 761 355T733 414Q733 424 737 426T766 428H793L806 397Q829 354 864 314Q896 284 928 263Q942 257 942 250T928 237Q887 208 864 185Q829 147 806 103L793 74L766 72Q742 72 738 73T733 85Q735 102 756 137T797 198L817 225L822 230H511L457 148Q440 124 420 93Q404 68 400 64T389 60Q381 60 375 66T368 81Q368 88 415 159L462 230H175L188 214Q210 188 235 145T264 85Q264 75 260 74T231 72L206 74L191 103Q169 142 164 150Q130 195 64 239Q56 244 56 250T64 261Q115 294 142 323T191 397L206 428H231Q255 428 259 426T264 414Q260 397 235 355T188 288L175 272L331 270Q488 270 491 272"],8624:[722,0,500,56,444,"56 555Q74 567 79 570T107 592T141 625T170 667T198 722H221Q244 722 244 721Q244 718 236 699T207 647T161 587L151 576L291 575H292H293H294H296H297H298H299H300H301H302H304H305H306H307H308H309H310H311H312H314H315H316H317H318H319H320H321H322H323H324H325H327H328H329H330H331H332H333H334H335H336H337H338H339H340H341H342H343H345Q435 574 438 570L439 569L440 568Q444 564 444 287Q444 15 442 12Q436 0 424 0T406 12Q404 15 404 275V535H151L162 523Q187 495 207 462T236 410T244 389H198L193 402Q171 457 131 497T56 555"],8625:[722,0,500,55,443,"301 722Q339 618 443 555L437 551Q431 547 422 541T401 526T377 504T352 477T327 443T306 402L301 389H255Q255 392 263 410T291 461T337 523L348 535H95V275Q95 15 93 12Q87 0 75 0T57 12Q55 15 55 287Q55 564 59 568L60 569Q64 573 76 573T208 575L348 576L338 587Q314 613 294 646T264 698T255 721Q255 722 278 722H301"],8630:[461,1,1000,17,950,"361 210Q373 210 373 182V177Q373 155 370 151T348 139Q303 118 267 84T216 28T201 1Q197 -1 196 -1Q189 -1 184 8Q166 39 143 64T99 104T61 129T32 144T19 150Q17 152 17 179Q17 203 21 208Q28 210 39 206Q106 178 157 135L175 119V126Q179 130 179 155Q182 173 193 201Q228 305 312 374T510 459Q532 461 551 461H567Q678 461 784 386Q835 344 861 301Q902 245 926 173T950 32Q950 15 944 8Q930 -6 917 8Q910 12 910 43Q901 208 801 314T561 421Q453 421 359 359Q300 319 263 258T217 126L216 125Q216 124 216 123T217 122Q219 122 229 131T260 156T301 181Q314 189 336 199T361 210"],8631:[460,1,1000,46,982,"972 209Q980 209 981 204T982 179Q982 155 979 151T957 139Q915 121 878 86T815 8Q808 -1 803 -1Q801 -1 797 1Q797 6 783 28T732 84T650 139L628 150Q626 152 626 177Q626 201 630 206Q636 210 637 210Q650 210 697 181Q727 166 764 137L784 119L782 132Q767 239 689 318T499 417Q474 421 442 421Q343 421 261 369T130 219Q86 121 86 28Q86 15 79 8Q73 1 66 1T53 8Q46 15 46 30Q46 102 77 192T186 361Q274 443 386 459Q396 460 426 460Q515 460 588 431T703 361T773 271T812 187T822 132Q822 123 825 123Q936 209 972 209"],8634:[650,83,778,56,722,"369 543T369 563T397 583Q408 583 440 579L454 577L464 581Q492 592 516 609T552 638T565 650Q604 638 607 637Q606 636 598 628T585 614T570 601T548 584T523 568L510 560L516 558Q522 555 527 553T541 546T559 536T580 523T603 506T626 485Q722 384 722 250Q722 106 622 12T387 -83Q253 -83 155 12T56 250Q56 357 110 433T235 545Q244 550 252 550Q270 550 270 531Q270 522 261 515T238 501T202 477T159 433Q95 352 95 250Q95 131 178 45T388 -42Q511 -42 596 43T682 250Q682 340 636 408T522 511Q495 526 488 526Q488 525 488 525T487 522T485 515L490 506Q505 481 516 451T531 404T535 384L532 385Q529 386 524 387T513 390L491 397L488 408Q472 483 413 542L399 543Q369 543 369 563"],8635:[650,83,778,56,721,"170 637L213 650Q270 597 313 581L323 577L337 579Q369 583 380 583Q408 583 408 563T380 543H378L364 542Q305 483 289 408L286 397L264 390Q259 389 254 388T245 385L242 384Q242 387 246 403T261 450T287 506L292 515Q291 519 291 521T290 524T289 526Q284 526 265 517T216 486T160 434T114 354T95 249Q95 132 178 45T388 -42Q513 -42 597 44T682 250Q682 337 638 404T532 506Q529 508 525 510T519 514T515 516T511 519T509 522T508 526T507 531Q507 550 525 550Q533 550 542 545Q569 532 596 511T653 454T702 366T721 250Q721 151 672 74T547 -43T388 -83Q254 -83 155 12T56 250Q56 385 151 485Q164 498 179 509T205 528T228 542T247 551T260 558L267 560L254 568Q215 590 170 637"],8638:[694,194,417,188,375,"188 258V694H208L215 682Q246 628 293 594T375 551V528Q375 505 374 505Q369 505 351 510T299 534T237 578L228 587V205Q228 -178 226 -182Q221 -194 208 -194T190 -182Q188 -178 188 258"],8639:[694,194,417,41,228,"41 551Q76 559 123 592T201 682L208 694H228V258Q228 -178 226 -182Q221 -194 208 -194T190 -182Q188 -178 188 205V587L179 578Q151 552 117 534T65 511T42 505Q41 505 41 528V551"],8642:[694,194,417,188,375,"190 682Q195 694 208 694T226 683Q228 679 228 296V-87L237 -78Q265 -52 299 -34T351 -11T374 -5Q375 -5 375 -28V-51Q340 -60 293 -92T215 -182L208 -194H188V242Q188 678 190 682"],8643:[694,194,417,41,228,"188 295V573Q188 657 189 672T200 692Q206 694 208 694Q221 694 226 683Q228 679 228 242V-194H208L201 -182Q170 -128 123 -94T41 -51V-28Q41 -5 42 -5Q47 -5 65 -10T117 -34T179 -78L188 -87V295"],8644:[667,0,1000,55,944,"943 500Q895 471 856 427T801 333H778Q755 333 755 334Q755 336 762 353T791 406T841 472L848 480H459Q70 480 67 482Q55 488 55 500T67 518Q70 520 459 520H848L841 528Q813 559 792 594T763 646T755 666Q755 667 778 667H801Q817 617 856 573T943 500ZM56 167Q102 194 141 238T198 333H221Q244 333 244 332Q221 265 161 198L151 187H539Q928 187 930 186Q944 182 944 167Q944 155 934 149Q930 147 541 147H151L160 137Q185 110 205 77T235 24T244 1Q244 0 221 0H199Q158 106 56 167"],8646:[667,0,1000,55,944,"56 500Q103 527 142 572T199 667H221Q244 667 244 666Q244 664 237 647T208 594T158 528L151 520H539Q928 520 932 518Q944 513 944 500T932 482Q928 480 539 480H151L158 472Q186 441 207 406T236 354T244 334Q244 333 221 333H199Q181 383 142 428T56 500ZM943 167Q835 101 801 0H778Q755 0 755 1T758 9T765 25T771 39Q800 94 839 137L848 147H458Q68 147 66 149Q55 154 55 167Q55 182 69 186Q71 187 460 187H848L838 198Q811 228 791 261T762 314L755 332Q755 333 778 333H801Q841 227 943 167"],8647:[583,83,1000,55,944,"930 437Q944 426 944 416T934 399Q930 397 540 397H150L159 387Q185 360 205 328T234 277T243 252Q243 237 217 191T159 113L150 103H540Q930 103 934 101Q944 94 944 84Q944 71 930 64L540 63H151Q180 34 203 -2T236 -61L244 -83H198Q178 -31 142 11T66 77L55 83L65 89Q157 145 197 246Q199 250 190 269Q150 359 65 411L55 417L66 423Q106 447 142 489T198 583H244Q202 488 151 437H930"],8648:[694,193,833,83,749,"83 551Q190 590 250 694Q251 689 263 671T307 621T380 567Q409 551 416 551Q422 551 447 563T511 608T577 684L582 694Q642 591 749 551V528Q749 505 748 505Q745 505 724 515T669 546T612 590L602 599V-181Q595 -193 585 -193H582H581Q568 -193 565 -183L563 -179L562 209V598L552 589Q517 556 473 531T414 506H412Q411 506 393 514T361 530T324 553T280 589L270 598V-179Q255 -192 250 -193H247Q237 -193 230 -181V599L220 590Q197 567 164 546T110 515T84 505Q83 505 83 528V551"],8649:[583,83,1000,55,944,"55 416Q55 427 70 437H848Q819 466 796 502T764 561L755 583H801Q821 531 857 489T933 423L944 417L934 411Q843 355 802 254Q800 250 809 231Q849 141 934 89L944 83L933 77Q893 53 857 11T801 -83H755Q797 12 848 63H459L70 64Q55 70 55 84Q55 94 65 101Q69 103 459 103H849L840 113Q806 148 779 196T756 254Q756 255 760 264T770 286T786 315T809 351T840 387L849 397H459Q69 397 65 399Q55 406 55 416"],8650:[694,194,833,83,749,"230 681Q240 694 251 694Q260 693 270 680V-98L280 -89Q297 -73 314 -60T348 -38T374 -24T397 -13T412 -6H414Q428 -6 473 -32T552 -89L562 -98V291L563 680Q570 693 582 693Q593 694 602 681V-99L612 -90Q635 -68 668 -47T723 -15T748 -5Q749 -5 749 -28V-51Q642 -91 582 -194L577 -184Q551 -141 512 -108T447 -63T416 -51T385 -63T321 -108T255 -184L250 -194Q189 -89 83 -51V-28Q83 -5 84 -5Q88 -5 109 -15T164 -46T220 -90L230 -99V681"],8651:[514,14,1000,55,944,"195 504L198 514H221Q244 514 244 512Q244 508 239 490T215 437T171 376L162 367H545Q928 367 932 365Q944 360 944 347T932 329Q928 327 492 327H55V347L67 354Q113 379 146 420T195 504ZM67 171Q70 173 507 173H944V153L932 146Q839 95 804 -4L801 -14H778Q755 -14 755 -12Q768 59 828 124L837 133H454Q71 133 67 135Q55 140 55 153Q55 165 67 171"],8652:[514,14,1000,55,944,"755 512Q755 514 778 514H801L804 503Q805 501 812 486T824 462T839 437T862 408T892 381T932 354L944 347V327H507Q70 327 67 329Q55 335 55 347T67 365Q70 367 454 367H837L828 376Q803 403 785 437T761 489T755 512ZM55 153V173H492Q928 173 932 171Q944 166 944 153T932 135Q928 133 545 133H162L171 124Q198 95 216 61T239 8L244 -12Q244 -14 221 -14H198L195 -4Q160 95 67 146L55 153"],8653:[535,35,1000,54,942,"397 525Q410 525 414 524T418 516Q418 506 394 467T331 381L319 367H473L624 369L657 445Q674 487 684 507T699 531T709 534Q717 534 722 528T728 516Q728 510 695 434Q689 418 683 402T672 377T668 367H928Q942 355 942 347Q942 341 928 327H791Q651 327 651 325Q649 324 620 251T586 174Q586 172 757 172H928Q942 158 942 152Q942 143 928 132H568L537 54Q510 -9 503 -22T486 -35Q479 -35 473 -29T466 -17T495 61L526 132H319L331 118Q364 81 391 37T418 -17Q418 -23 415 -24T401 -26Q398 -26 397 -26L384 -24L377 -13Q344 49 301 97T218 170T143 210T84 233T55 245Q54 253 59 256T86 267Q281 327 377 512L384 525H397ZM606 325Q606 327 439 327H275Q258 312 179 265L148 249Q228 206 262 181L275 172H544L575 247L606 325"],8654:[534,37,1000,32,965,"395 -24T395 -19T417 57T440 132H255L266 116Q308 64 340 -6Q342 -17 337 -21Q335 -26 320 -26T302 -19Q302 -15 294 4T265 54T217 117T145 182T49 236Q30 243 33 254Q40 261 49 263Q98 283 142 315T214 379T263 442T293 493T302 519Q305 525 320 525T337 521Q342 516 340 505Q308 435 266 383L255 370L384 367H515Q561 522 569 530Q574 534 580 534Q587 534 594 528T602 516Q602 512 580 441T557 367H651L742 370L731 383Q689 435 657 505Q655 516 660 521Q662 525 677 525T695 519Q695 515 703 496T732 446T780 383T853 317T949 263Q967 258 964 245Q959 240 949 236Q897 215 852 182T779 116T731 52T703 3T695 -19Q692 -26 677 -26T660 -21Q655 -17 657 -6Q670 21 682 42T702 77T717 99T728 114T735 122T739 126T740 130T613 132H482L460 54Q440 -9 433 -23T415 -37Q408 -37 402 -31ZM502 325Q502 327 360 327H217L195 310Q173 291 120 256L111 250Q114 248 143 229T195 190L217 172H335L453 174L502 325ZM886 250Q885 251 865 263T831 286T802 310L780 327H544L535 299Q531 283 511 223L495 174L637 172H780L802 190Q843 225 877 243L886 250"],8655:[534,36,1000,55,943,"346 174Q348 176 378 249T411 325Q411 327 239 327H68Q55 342 55 347Q55 354 68 367H428L459 445Q487 509 494 521T510 534Q517 534 524 527T531 516Q531 515 502 438L471 367H677L666 381Q631 421 605 463T578 516Q578 522 582 523T599 525H615L619 512Q659 437 714 383T812 309T896 272T942 254Q943 246 938 243T911 232Q718 172 619 -13L615 -24L599 -26Q578 -26 578 -17Q578 -11 587 6T617 53T666 118L677 132H373L339 54Q323 12 313 -8T298 -32T288 -35Q280 -35 275 -29T269 -17Q269 -14 298 57T328 132H68Q55 145 55 152Q55 156 56 158T62 165T68 172H206Q346 172 346 174ZM848 249Q763 297 735 318L722 327H455L422 252L391 174Q391 172 557 172H722L735 181Q773 210 819 234L848 249"],8666:[611,111,1000,76,945,"944 54Q942 44 929 36H372Q372 34 377 26T395 -4T422 -58Q442 -109 442 -110T408 -111H374L370 -100Q282 124 87 243L76 250L87 257Q284 377 370 600L374 611H408Q442 611 442 610Q423 550 381 480Q380 478 379 475T376 471T374 468T372 465V464H929Q942 456 944 446Q944 442 943 439T941 434T938 430T935 428T931 426T928 424H344L336 414Q277 336 200 277L191 270H560Q929 270 933 268Q944 262 944 250Q944 237 933 232Q929 230 560 230H191L200 223Q279 162 336 86L344 76H928Q929 76 931 75T934 73T938 70T941 66T943 61T944 54"],8667:[611,111,1000,55,923,"56 250Q56 260 68 270H808L799 277Q720 338 663 414L655 424H363Q71 424 68 426Q55 432 55 444T68 462Q71 464 349 464H627Q627 466 622 474T604 504T577 558Q557 609 557 610T591 611H626L629 600Q717 376 912 257L923 250L912 243Q715 123 629 -100L626 -111H591Q557 -111 557 -110Q576 -50 618 20Q619 22 620 25T623 29T625 32T626 35L627 36H349Q71 36 68 38Q55 44 55 56T68 74Q71 76 363 76H655L663 86Q722 164 799 223L808 230H438L68 231Q56 236 56 250"],8669:[417,-83,1000,56,943,"76 230Q68 230 62 237T56 250Q56 257 63 264T91 291Q102 300 108 306L159 351Q168 356 177 351L218 316L303 239L353 195Q376 214 403 239L488 316L529 351Q538 356 546 351Q548 350 594 310L638 270H848L841 278Q813 309 792 344T763 396T755 416Q755 417 778 417H801Q817 367 856 323T943 250Q895 221 856 177T801 83H778Q755 83 755 84Q755 86 762 103T791 156T841 222L848 230H737Q625 230 622 232Q620 233 599 251T558 288L537 306Q537 305 451 228T362 149Q353 146 345 149Q341 150 255 227T169 306Q167 306 129 270Q123 265 115 257T102 245T93 237T84 232T76 230"],8672:[437,-64,1334,64,1251,"292 419Q292 400 261 347T211 275H306H364Q400 275 411 271T422 250T411 230T366 225H306H211Q214 222 232 197T271 136T292 82Q292 71 285 68T262 64H250H241Q221 64 216 67T205 83Q186 127 153 167T78 230Q64 238 64 250Q64 258 69 263T82 272T106 288T139 318Q162 342 177 365T198 402T209 425T223 436Q224 437 252 437H258Q292 437 292 419ZM501 237T501 250T515 270H819Q834 262 834 250T819 230H515Q501 237 501 250ZM918 237T918 250T932 270H1236Q1251 262 1251 250T1236 230H932Q918 237 918 250"],8674:[437,-64,1334,84,1251,"84 237T84 250T98 270H402Q417 262 417 250T402 230H98Q84 237 84 250ZM501 237T501 250T515 270H819Q834 262 834 250T819 230H515Q501 237 501 250ZM1022 417Q1022 437 1055 437H1067Q1090 437 1097 434T1109 417Q1128 373 1161 333T1236 270Q1251 261 1251 250Q1251 241 1244 236T1216 217T1175 182Q1149 155 1133 128T1109 85T1097 66Q1093 64 1065 64H1053Q1031 64 1025 72T1027 100Q1036 124 1049 147T1073 185T1091 210T1101 223L1103 225H1008H950Q914 225 903 229T892 250T903 270T948 275H1008H1103L1101 277Q1100 280 1091 291T1067 325T1039 374Q1022 408 1022 417"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/Arrows.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js deleted file mode 100644 index 5b03be0..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{9484:[694,-306,500,55,444,"76 306Q62 306 59 319T55 386V500V596Q55 664 57 676T68 692Q71 694 250 694Q428 694 432 692Q444 685 444 674Q444 665 432 656Q428 654 261 654H95V487Q95 355 95 336T90 312Q84 306 76 306"],9488:[694,-306,500,55,445,"424 306Q418 306 413 310T406 318L404 321V654H238Q71 654 68 656Q55 662 55 674T68 692Q71 694 250 694H379Q432 694 438 688Q443 683 443 662T444 500T444 338T438 312Q432 306 424 306"],9492:[366,22,500,55,444,"55 172V287Q55 341 58 353T76 366Q88 366 95 351V18H261Q428 18 432 16Q444 9 444 -2Q444 -11 432 -20Q428 -22 250 -22H120Q67 -22 61 -16Q56 -11 56 10T55 172"],9496:[366,22,500,55,444,"404 351Q410 366 424 366Q437 366 440 353T444 288V172V72Q444 8 443 -4T432 -20Q428 -22 250 -22Q71 -22 68 -20Q55 -14 55 -2T68 16Q71 18 238 18H404V351"],9585:[694,195,889,0,860,"19 -195Q13 -195 7 -188T0 -176Q0 -169 18 -151L822 683Q835 694 840 694T852 688T860 674Q860 667 810 614T460 252Q57 -167 44 -179Q27 -195 19 -195"],9586:[694,195,889,0,860,"0 675Q0 681 6 687T19 694Q27 694 44 678L460 247Q759 -62 809 -115T860 -175Q860 -183 852 -189T840 -195Q835 -195 822 -184L18 649Q0 667 0 675"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/BoxDrawing.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js deleted file mode 100644 index c3e703f..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{770:[845,-561,0,-2347,13,"-2332 561Q-2336 563 -2340 577T-2346 604L-2347 618Q-2347 625 -2340 628T-2310 635Q-2302 636 -2297 637Q-2270 641 -1712 745Q-1185 845 -1168 845Q-1166 845 -581 739L5 630Q13 630 13 618Q7 565 -1 561Q-4 561 -584 654Q-716 675 -867 699T-1092 736T-1166 748Q-1168 748 -1240 737T-1466 700T-1750 654Q-2330 561 -2332 561"],771:[899,-628,0,-2332,-3,"-1529 788Q-1616 788 -1727 772T-1936 732T-2120 685T-2258 645T-2315 628Q-2322 628 -2322 632Q-2325 637 -2329 668T-2331 704Q-2331 713 -2297 732Q-2278 739 -2091 795Q-1711 898 -1507 898Q-1440 898 -1386 895Q-1324 887 -1277 872T-1146 819Q-1047 776 -977 758T-806 739Q-719 739 -608 755T-399 795T-215 842T-77 882T-20 899Q-13 899 -13 895Q-10 890 -6 860T-4 824Q-4 818 -37 795Q-60 787 -244 732Q-523 657 -735 632Q-771 629 -841 629Q-944 629 -1013 644T-1189 708Q-1285 751 -1356 769T-1529 788"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/CombDiacritMarks.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js deleted file mode 100644 index d01f9a3..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{10003:[706,34,833,84,749,"84 231Q84 244 114 264T170 285Q176 285 183 274T224 205Q267 129 268 129Q271 141 279 163T318 250T389 378T502 523T662 673Q702 706 732 706H734Q749 706 749 695Q749 682 730 666T660 607T559 505Q387 299 328 29Q324 0 295 -17T245 -34H241Q234 -34 225 -21T185 46Q166 79 154 101Q84 223 84 231"],10016:[716,22,833,48,786,"195 702T195 706T201 716H632Q638 710 638 706T636 700T621 690Q436 581 427 374V357H430Q554 357 645 421Q682 447 711 483T755 542T770 567Q775 572 786 563V131Q777 125 774 125T762 139Q709 228 642 274T482 333Q452 337 430 337H427V320Q430 279 437 247T462 170T521 82T621 4Q630 -2 633 -4T637 -7T638 -12Q638 -16 632 -22H201Q195 -16 195 -12T197 -6T212 4Q397 113 406 320V337H403Q279 337 188 273Q151 247 122 211T78 152T63 127Q58 122 48 131V563Q54 569 59 569Q62 569 71 555Q124 466 191 420T351 361Q381 357 403 357H406V374Q403 415 396 447T371 525T312 613T212 690Q199 697 197 699"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/Dingbats.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js deleted file mode 100644 index 8a77139..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{9416:[709,175,902,8,894,"451 -175Q328 -175 226 -115T66 47T8 267Q8 303 15 342T39 431T94 531T186 622Q239 663 307 686T424 709H440Q604 709 716 622Q757 592 788 555T838 482T869 414T886 350T892 301T894 267Q894 147 835 45T674 -116T451 -175ZM854 268Q854 375 802 467T657 614T450 670Q283 670 166 552T49 267Q49 99 167 -18T453 -136Q617 -136 735 -18T854 268ZM273 378Q273 430 309 474T409 527Q411 527 417 527T428 528Q498 528 549 484L567 505Q583 528 590 528H594Q600 528 606 522V350L600 344H586Q577 344 574 344T569 347T566 357Q542 491 432 491Q389 491 365 465T340 407Q340 391 344 378T358 356T377 340T400 328T421 321T443 316T459 313Q499 305 517 300T559 279T601 238Q629 195 629 148Q629 80 583 33T471 -14Q392 -14 330 30Q312 6 293 -13Q292 -14 285 -14Q279 -14 273 -8V77V138Q273 160 275 165T286 170H294H307Q313 164 313 158Q313 108 350 67T471 26Q512 26 537 54T562 119Q562 137 558 151T544 176T527 193T504 205T483 212T459 218T441 222Q391 232 368 241T318 273Q273 316 273 378"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/EnclosedAlphanum.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js deleted file mode 100644 index 1d503a7..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{8245:[560,-43,275,12,244,"12 501Q12 527 31 542T63 558Q73 560 77 560Q114 560 128 528Q133 518 188 293T244 61Q244 56 223 50T195 43Q192 43 190 45T102 263T14 486Q12 496 12 501"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/GeneralPunctuation.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js deleted file mode 100644 index 5b61f4e..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{9632:[689,0,778,55,722,"71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71"],9633:[689,0,778,55,722,"71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71ZM682 40V649H95V40H682"],9650:[575,20,722,84,637,"99 -20Q84 -11 84 0Q84 5 148 145T278 424L342 563Q347 575 360 575Q368 575 375 570Q376 569 441 430T571 148T637 0Q637 -11 622 -20H99"],9651:[575,20,722,84,637,"99 -20Q84 -11 84 0Q84 5 148 145T278 424L342 563Q347 575 360 575Q368 575 375 570Q376 569 441 430T571 148T637 0Q637 -11 622 -20H99ZM476 260L360 509L248 266Q137 24 135 22Q135 20 360 20Q586 20 586 21L476 260"],9654:[540,41,778,83,694,"83 523Q83 524 85 527T92 535T103 539Q107 539 389 406T680 268Q694 260 694 249Q694 239 687 234Q685 232 395 95L107 -41H101Q90 -40 83 -26V523"],9660:[576,19,722,84,637,"84 556Q84 567 99 576H622Q637 567 637 556Q637 551 572 409T441 127T375 -14Q368 -19 360 -19H358Q349 -19 342 -7T296 92Q249 193 211 275Q84 550 84 556"],9661:[576,19,722,84,637,"84 556Q84 567 99 576H622Q637 567 637 556Q637 551 572 409T441 127T375 -14Q368 -19 360 -19H358Q349 -19 342 -7T296 92Q249 193 211 275Q84 550 84 556ZM586 534Q586 536 361 536Q135 536 135 535L358 52L361 47L473 290Q584 532 586 534"],9664:[539,41,778,83,694,"694 -26Q686 -40 676 -41H670L382 95Q92 232 90 234Q83 239 83 249Q83 262 96 267Q101 270 379 401T665 537Q671 539 674 539Q686 539 694 524V-26"],9674:[716,132,667,56,611,"318 709Q325 716 332 716Q340 716 344 713T474 511Q611 298 611 292Q611 285 526 152Q494 103 474 72Q347 -128 344 -130Q340 -132 333 -132T322 -130Q319 -128 257 -31T131 169T60 278Q56 285 56 292Q56 298 60 305Q73 326 194 516T318 709ZM567 290T567 291T451 475T333 658L100 293Q100 288 215 108L333 -74Q334 -74 450 108"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/GeometricShapes.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js deleted file mode 100644 index e9a0a11..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{989:[605,85,778,55,719,"477 261Q477 257 473 256T455 253T417 251T348 250H235L155 -77L146 -82Q137 -85 109 -85Q55 -85 55 -77L139 261Q224 596 226 598Q229 603 239 603Q240 603 254 603T290 603T341 604T405 605T477 605Q656 603 687 602T719 596Q719 589 692 588T513 585H319L282 427L242 272Q242 270 351 270Q388 270 410 270T444 269T460 267T469 265T477 261"],1008:[434,6,667,37,734,"228 325Q170 322 156 316T127 309Q108 309 104 314Q99 319 99 322T108 341Q125 376 171 400T268 425H271Q302 425 319 396Q328 377 328 358Q328 332 324 314Q311 270 286 221Q274 194 274 192H275Q339 234 484 325T639 421Q669 434 691 434T723 425T734 406Q734 394 719 381Q715 376 644 330L575 287L566 267Q543 233 526 176Q520 160 515 143T508 115T506 105Q506 103 533 103Q585 103 607 110T641 118Q670 118 670 107Q670 100 661 85Q643 50 598 27T504 3Q465 3 450 36Q441 51 441 73Q441 84 444 96Q452 146 484 205L497 236L324 125Q143 12 135 10Q103 -6 77 -6Q61 -6 49 2T37 21Q37 36 49 46T124 96L195 141L204 156Q219 179 243 248T264 323Q264 325 228 325"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/GreekAndCoptic.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js deleted file mode 100644 index 19c1fcd..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{165:[683,0,750,11,738,"515 0Q494 3 374 3Q256 3 235 0H224V46H257Q316 47 324 58Q327 62 327 137V213H133Q121 213 113 213T97 213T86 213T78 213T73 214T70 215T69 216T68 218T67 220Q64 225 66 231T73 240Q76 242 202 242H327V273L247 407H115Q81 407 75 408T67 414Q64 419 66 425T73 434Q76 436 153 436Q228 436 228 437Q227 440 173 530T115 623Q101 637 31 637H11V683H20Q66 681 153 681Q169 681 202 681T262 682L288 683H298V637H280Q230 636 230 621Q230 619 250 584Q255 576 264 561T286 526T305 494L340 437L403 436H467L513 514Q564 596 564 605Q564 608 560 616Q550 634 517 637H508V683H516Q531 680 633 680Q722 680 731 683H738V637H723Q644 632 617 595Q614 591 568 515T521 437T597 436T676 434Q681 432 683 426T682 414T671 409T589 407H503L422 273V242H547Q673 242 676 240Q681 238 683 232T682 220Q682 219 682 218T681 217T679 216T677 215T672 214T664 213T652 213T637 213T616 213H422V139V87Q422 64 425 58T441 49Q456 46 503 46H525V0H515ZM449 406Q449 407 403 407Q358 407 358 406L370 387Q381 368 392 350L404 331Q447 404 449 406"],174:[709,176,947,32,915,"915 266Q915 140 852 38T689 -120T474 -175Q312 -175 188 -71T38 190Q32 220 32 266V287Q32 345 57 416T129 545Q192 624 282 666T464 709Q513 709 522 708Q599 698 665 666T776 590T853 493T900 387T915 287V266ZM875 285Q875 339 853 399T789 517T676 616T519 668Q510 669 465 669Q380 669 299 630T155 514T77 336Q72 312 72 285V266V256Q72 123 163 11Q290 -135 474 -135Q614 -135 727 -46Q875 81 875 266V285ZM276 457Q275 458 274 460T272 463T270 465T267 467T264 469T258 471T252 472T243 473T232 474T218 474H204V514H335Q477 514 499 510Q560 502 610 467T661 375Q661 362 658 350T648 327T635 308T618 292T601 280T583 269T568 262T554 256L547 253Q548 252 556 247T570 237T586 223T602 202T614 174Q616 169 626 123T638 72Q652 23 683 23Q715 23 720 68Q721 78 724 81T740 84T756 82T760 70Q760 47 747 25T715 -7Q700 -14 673 -14Q672 -14 662 -14T643 -12T619 -7T593 2T568 16T547 37T534 67Q531 80 531 97Q531 103 531 116T532 136Q532 218 472 236Q466 238 413 239H360V148L361 58Q366 47 375 44T418 40H432V0H424Q409 3 318 3T212 0H204V40H218Q242 40 253 42T268 47T276 58V457ZM376 473Q365 471 363 464T360 430V366V276H416Q421 276 434 276T453 276T469 277T486 279T501 282T517 287T529 294T542 305Q561 324 561 375Q561 424 545 444T482 472Q478 473 427 474Q415 474 403 474T384 474L376 473"],240:[749,21,556,42,509,"75 566V604Q75 624 79 629T102 635Q124 635 127 629T131 588L133 550L191 588L249 628L231 635Q176 654 124 657Q116 657 106 658L95 659Q94 661 94 687T95 715Q99 717 113 717Q195 717 282 679L309 668L331 681Q351 697 391 721Q428 748 435 748Q437 749 446 749Q470 749 473 746Q478 744 478 681V621Q466 615 456 615Q435 615 424 624L422 661V699L382 675L344 648Q353 639 366 630Q480 538 504 413Q509 393 509 333V313Q509 284 507 257T495 184T466 102T413 33T329 -16Q311 -21 275 -21Q226 -21 195 -10Q150 7 110 50T53 141Q42 179 42 227Q42 332 101 403T245 474Q282 474 314 461T359 436T380 415Q386 405 389 408Q389 426 378 475Q368 505 355 529T329 567T306 590T288 603L282 606L120 501Q116 500 102 500Q84 500 75 506V566ZM388 225Q388 376 309 410Q299 416 273 419Q216 419 191 390Q174 371 168 342T162 218Q162 112 184 79Q212 39 273 39Q312 39 342 62T380 121Q388 159 388 225"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/Latin1Supplement.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js deleted file mode 100644 index b156811..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{295:[695,13,540,42,562,"182 599Q182 611 174 615T133 619Q118 619 114 621T109 630Q109 636 114 656T122 681Q125 685 202 688Q272 695 286 695Q304 695 304 684Q304 682 295 644T282 597Q282 592 360 592H399Q430 592 445 587T460 563Q460 552 451 541L442 535H266L251 468Q247 453 243 436T236 409T233 399Q233 395 244 404Q295 441 357 441Q405 441 445 417T485 333Q485 284 449 178T412 58T426 44Q447 44 466 68Q485 87 500 130L509 152H531H543Q562 152 562 144Q562 128 546 93T494 23T415 -13Q385 -13 359 3T322 44Q318 52 318 77Q318 99 352 196T386 337Q386 386 346 386Q318 386 286 370Q267 361 245 338T211 292Q207 287 193 235T162 113T138 21Q128 7 122 4Q105 -12 83 -12Q66 -12 54 -2T42 26L166 530Q166 534 161 534T129 535Q127 535 122 535T112 534Q74 534 74 562Q74 570 77 576T84 585T96 589T109 591T124 592T138 592L182 595V599"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/LatinExtendedA.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js deleted file mode 100644 index b17e14f..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{8463:[695,13,540,42,562,"150 475Q147 475 118 466T82 457Q73 457 64 467T54 487Q54 490 55 492Q63 506 64 506Q67 512 118 526Q162 541 169 546Q173 559 175 575Q181 596 181 604Q181 613 166 617Q164 617 153 618T135 619Q119 619 114 621T109 630Q109 636 114 656T122 681Q125 685 202 688Q272 695 286 695Q304 695 304 684Q304 682 291 628L278 577L386 612Q466 635 476 635T492 627T499 607Q499 593 489 586Q485 583 373 546L262 512Q262 511 248 455T233 397T236 397T244 404Q295 441 357 441Q405 441 445 417T485 333Q485 284 449 178T412 58T426 44Q447 44 466 68Q485 87 500 130L509 152H531H543Q562 152 562 144Q562 128 546 93T494 23T415 -13Q385 -13 359 3T322 44Q318 52 318 77Q318 99 352 196T386 337Q386 386 346 386Q318 386 286 370Q267 361 245 338T211 292Q207 287 193 235T162 113T138 21Q128 7 122 4Q105 -12 83 -12Q66 -12 54 -2T42 26Q42 45 98 257L151 475H150"],8487:[685,22,722,44,675,"126 584Q119 584 110 539T97 493Q95 490 73 490Q44 490 44 501Q44 515 62 590Q75 672 82 679Q84 684 177 684Q193 684 214 684T241 685Q265 685 271 682T277 664V648Q271 572 229 434T186 231Q186 173 203 132T247 70T302 42T360 33Q391 33 419 42T474 72T517 133T533 231Q533 297 491 437T442 648Q442 675 446 679Q448 684 542 684Q635 684 637 681Q640 678 657 594T675 501Q675 490 646 490Q624 490 622 493Q620 493 609 538T593 584Q591 585 585 585T569 586T551 588H513Q514 586 518 573T538 531T582 453Q647 340 660 277Q663 259 663 232Q663 194 657 177Q652 151 629 112T560 39Q495 -5 424 -19Q403 -22 360 -22Q318 -22 297 -19Q239 -8 193 18T120 74T80 131T62 177Q56 194 56 229Q56 281 74 328T137 453Q160 491 174 518T193 555T201 575T206 588H168Q160 587 150 587T134 586T126 584"],8498:[695,1,556,55,497,"457 681Q471 695 477 695Q485 695 497 681V12L484 -1H68Q55 14 55 19T68 39H457V328H215L211 335Q198 346 211 359L217 368H457V681"],8502:[763,21,667,-22,687,"56 706V726Q56 763 76 763Q83 763 87 759T98 741Q108 726 116 721L127 717L340 715Q547 712 564 709Q575 705 587 692Q599 680 605 663L609 650V137H676Q687 124 687 115Q687 110 678 100T622 43L558 -21H-9Q-22 -6 -22 -1T-13 14T42 72L107 137H569V339Q569 541 567 546Q558 555 554 557L545 563H329Q118 566 101 569Q90 573 78 586Q54 610 54 661Q54 670 56 706"],8503:[764,43,444,-22,421,"56 750Q68 764 76 764Q88 764 97 743T125 717Q131 715 240 715T358 713Q421 691 421 640Q421 608 399 588T358 566Q353 566 352 565T351 557L356 526Q356 488 379 346T402 97Q400 21 385 -12Q366 -43 351 -43Q335 -43 329 -10Q316 40 316 64Q316 67 315 67Q313 67 269 26L222 -21H-9Q-22 -7 -22 -1Q-22 4 -14 14T42 73L107 137H311V564H211H164Q115 564 93 573T60 615Q56 630 56 690V750"],8504:[764,43,667,54,640,"62 757Q69 764 75 764Q87 764 97 741Q102 731 105 728T117 721L129 715H349Q569 715 580 710Q618 701 635 670Q640 661 640 639Q640 609 622 590Q617 583 604 575T580 566H573V553Q575 547 576 531T582 469T600 353Q624 205 624 104Q624 46 617 17T591 -32Q581 -43 573 -43Q550 -43 540 44Q535 73 533 319V564H322Q117 566 100 570Q90 573 77 586Q54 609 54 663Q54 689 55 706Q55 738 56 745T62 757"],8513:[705,23,639,37,577,"239 665Q194 665 154 653T90 629T66 617Q59 617 53 623T46 637Q46 652 66 659Q129 695 197 701Q218 705 248 705Q293 705 335 693Q371 684 435 644Q543 562 573 417Q577 393 577 341Q577 290 573 266Q531 83 384 10Q346 -9 315 -16T234 -23H206Q202 -23 183 -23T152 -21T120 -18T88 -10T63 3T44 24L37 35V297L50 310H235Q248 297 248 290Q248 285 235 270H77V103Q77 88 77 80T77 63T78 50T80 43T82 38T85 35T89 32T95 30Q126 20 206 17Q289 17 330 30Q407 55 460 120T533 275Q538 305 538 342Q538 486 452 575T239 665"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/LetterlikeSymbols.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js deleted file mode 100644 index 34ed4d1..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS={directory:"AMS/Regular",family:"MathJax_AMS",id:"MJAMS",Ranges:[[128,255,"Latin1Supplement"],[256,383,"LatinExtendedA"],[688,767,"SpacingModLetters"],[768,879,"CombDiacritMarks"],[880,1023,"GreekAndCoptic"],[8192,8303,"GeneralPunctuation"],[8448,8527,"LetterlikeSymbols"],[8592,8703,"Arrows"],[8704,8959,"MathOperators"],[8960,9215,"MiscTechnical"],[9312,9471,"EnclosedAlphanum"],[9472,9599,"BoxDrawing"],[9632,9727,"GeometricShapes"],[9728,9983,"MiscSymbols"],[9984,10175,"Dingbats"],[10624,10751,"MiscMathSymbolsB"],[10752,11007,"SuppMathOperators"],[57344,63743,"PUA"]],32:[0,0,250,0,0,""],65:[701,1,722,17,703,"130 -1H63Q34 -1 26 2T17 17Q17 24 22 29T35 35Q49 35 64 44T88 66Q101 93 210 383Q331 693 335 697T346 701T357 697Q358 696 493 399Q621 104 633 83Q656 35 686 35Q693 35 698 30T703 17Q703 5 693 2T643 -1H541Q388 -1 386 1Q378 6 378 16Q378 24 383 29T397 35Q412 35 434 45T456 65Q456 93 428 170L419 197H197L195 179Q184 134 184 97Q184 82 186 71T190 55T198 45T205 39T214 36L219 35Q241 31 241 17Q241 5 233 2T196 -1H130ZM493 68Q493 51 481 35H619Q604 56 515 256Q486 321 468 361L348 637Q347 637 330 592T313 543Q313 538 358 436T448 219T493 68ZM404 235Q404 239 355 355T295 488L275 430Q241 348 208 232H306Q404 232 404 235ZM155 48Q151 55 148 88V117L135 86Q118 47 117 46L110 37L135 35H159Q157 41 155 48"],66:[683,1,667,11,620,"11 665Q11 672 22 683H213Q407 681 431 677Q582 649 582 515Q582 488 573 468Q554 413 484 372L474 366H475Q620 317 620 178Q620 115 568 69T420 6Q393 1 207 -1H22Q11 10 11 18Q11 35 51 35Q79 37 88 39T102 52Q107 70 107 341T102 630Q97 640 88 643T51 648H46Q11 648 11 665ZM142 341Q142 129 141 88T134 37Q133 36 133 35H240L233 48L229 61V623L233 635L240 648H133L138 639Q142 621 142 341ZM284 370Q365 378 391 411T417 508Q417 551 406 581T378 624T347 643T320 648Q298 648 278 635Q267 628 266 611T264 492V370H284ZM546 515Q546 551 531 577T494 617T454 635T422 641L411 643L420 630Q439 604 445 579T452 510V504Q452 481 451 467T441 430T415 383Q420 383 439 391T483 413T527 455T546 515ZM585 185Q585 221 570 249T534 294T490 320T453 334T436 337L435 336L440 330Q445 325 452 315T467 288T479 246T484 188Q484 145 474 110T454 62T442 48Q442 47 444 47Q450 47 470 54T517 75T564 119T585 185ZM449 184Q449 316 358 332Q355 332 335 333T302 335H264V199Q266 68 270 57Q275 50 289 43Q300 37 324 37Q449 37 449 184"],67:[702,19,722,39,684,"684 131Q684 125 672 109T633 71T573 29T489 -5T386 -19Q330 -19 276 -3T174 46T91 134T44 261Q39 283 39 341T44 421Q66 538 143 611T341 699Q344 699 364 700T395 701Q449 698 503 677T585 655Q603 655 611 662T620 678T625 694T639 702Q650 702 657 690V481L653 474Q640 467 628 472Q624 476 618 496T595 541Q562 587 507 625T390 663H381Q337 663 299 625Q212 547 212 336Q212 249 233 179Q274 30 405 30Q533 30 641 130Q658 147 666 147Q671 147 677 143T684 131ZM250 625Q264 643 261 643Q238 635 214 620T161 579T110 510T79 414Q74 384 74 341T79 268Q89 213 113 169T164 101T217 61T260 39L277 34Q270 41 264 48Q199 111 181 254Q178 281 178 344T181 434Q200 559 250 625ZM621 565V625Q617 623 613 623Q603 619 590 619H575L588 605Q608 583 610 579L621 565"],68:[683,1,722,16,688,"16 666Q16 675 28 683H193Q329 683 364 682T430 672Q534 650 600 585T686 423Q688 406 688 352Q688 274 673 226Q641 130 565 72T381 1Q368 -1 195 -1H28Q16 5 16 16Q16 35 53 35Q68 36 75 37T87 42T95 52Q98 61 98 341T95 630Q91 640 83 643T53 648Q16 648 16 666ZM237 646Q237 648 184 648H128Q128 647 133 632Q136 620 136 341Q136 64 133 50L128 35H237L230 48L226 61V343Q228 620 231 633Q232 636 237 646ZM264 61Q278 40 310 35Q363 35 401 55T461 112T496 193T513 295Q515 333 515 349Q515 411 504 459Q481 598 373 641Q351 648 321 648Q304 648 292 643T277 635T264 621V61ZM461 628Q462 627 471 616T489 594T509 559T529 509T544 441T550 352Q550 165 479 75L468 59Q474 61 484 65T522 87T573 128T618 195T650 290Q654 322 654 354Q654 418 638 464T581 552Q559 576 529 595T480 621L461 628"],69:[683,1,667,12,640,"12 666Q12 675 24 683H582Q590 680 593 672V588Q593 514 591 502T575 490Q567 490 563 495T555 517Q552 556 517 590Q486 623 445 634T340 648H282Q266 636 264 620T260 492V370H277Q329 375 358 391T404 439Q420 480 420 506Q420 529 436 529Q445 529 451 521Q455 517 455 361Q455 333 455 298T456 253Q456 217 453 207T437 197Q420 196 420 217Q420 240 406 270Q377 328 284 335H260V201Q261 174 261 134Q262 73 264 61T278 38Q281 36 282 35H331Q400 35 449 50Q571 93 602 179Q605 203 622 203Q629 203 634 197T640 183Q638 181 624 95T604 3L600 -1H24Q12 5 12 16Q12 35 51 35Q92 38 97 52Q102 60 102 341T97 632Q91 645 51 648Q12 648 12 666ZM137 341Q137 131 136 89T130 37Q129 36 129 35H235Q233 41 231 48L226 61V623L231 635L235 648H129Q132 641 133 638T135 603T137 517T137 341ZM557 603V648H504Q504 646 515 639Q527 634 542 619L557 603ZM420 317V397L406 383Q394 370 380 363L366 355Q373 350 382 346Q400 333 409 328L420 317ZM582 61L586 88Q585 88 582 83Q557 61 526 46L511 37L542 35H577Q577 36 578 39T580 49T582 61"],70:[683,1,611,12,584,"584 499Q569 490 566 490Q558 490 552 497T546 515Q546 535 533 559Q526 574 506 593T469 621Q415 648 326 648Q293 648 287 647T275 641Q264 630 263 617Q262 609 260 492V370L275 372Q323 376 350 392T393 441Q409 473 409 506Q409 529 427 529Q437 529 442 519Q444 511 444 362Q444 212 442 206Q436 197 426 197Q409 197 409 217Q409 265 375 299Q346 328 280 335H260V206Q260 70 262 63Q265 46 276 41T326 35Q362 35 366 28Q377 17 366 3L360 -1H24Q12 5 12 16Q12 35 51 35Q92 38 97 52Q102 60 102 341T97 632Q91 645 51 648Q12 648 12 666Q12 675 24 683H573Q576 678 584 670V499ZM137 341Q137 131 136 89T130 37Q129 36 129 35H182Q233 35 233 39Q226 54 225 92T224 346L226 623L231 635L235 648H129Q132 641 133 638T135 603T137 517T137 341ZM549 603V648H495L506 641Q531 621 533 619L549 603ZM409 317V395L400 386Q390 376 375 366L357 355L373 346Q394 331 397 328L409 317"],71:[702,19,778,39,749,"737 285Q749 277 749 268Q749 260 744 255T730 250Q695 250 677 217Q666 195 666 119Q666 52 664 50Q656 36 555 3Q483 -16 415 -19Q364 -19 348 -17Q226 -3 146 70T44 261Q39 283 39 341T44 421Q66 538 143 611T341 699Q344 699 364 700T395 701Q449 698 503 677T585 655Q603 655 611 662T620 678T625 694T639 702Q650 702 657 690V481L653 474Q640 467 628 472Q624 476 618 496T595 541Q562 587 507 625T390 663H381Q337 663 299 625Q213 547 213 337Q213 75 341 23Q357 19 397 19Q440 19 462 22T492 30T513 45V119Q513 184 506 203Q491 237 435 250Q421 250 415 257Q404 267 415 281L421 285H737ZM250 43Q250 45 243 55T225 87T203 139T185 224T177 343V361Q184 533 250 625Q264 643 261 643Q238 635 214 620T161 579T110 510T79 414Q74 384 74 341T79 268Q106 117 230 52L250 43ZM621 565V625Q617 623 613 623Q603 619 590 619H575L588 605Q608 583 610 579L621 565ZM655 250H517L524 241Q548 213 548 149V114V39Q549 39 562 44T592 55T615 63L630 70V134Q632 190 634 204T648 237Q655 245 655 250"],72:[683,1,778,14,762,"14 666Q14 675 26 683H344L351 679Q361 665 351 655Q344 648 317 648Q287 645 282 641Q270 637 269 623T266 497V370H511V497Q511 519 510 553Q509 615 507 626T496 641H495Q489 645 459 648Q420 648 420 665Q420 672 426 679L433 683H751Q762 676 762 666Q762 648 724 648Q684 645 677 632Q675 626 675 341Q675 57 677 52Q684 38 724 35Q762 35 762 16Q762 6 751 -1H433L426 3Q420 10 420 17Q420 35 459 35Q501 38 506 52Q511 64 511 190V323H266V190Q266 60 271 52Q276 38 317 35Q342 35 351 28Q360 17 351 3L344 -1H26Q14 5 14 16Q14 35 53 35Q94 38 99 52Q104 60 104 341T99 632Q93 645 53 648Q14 648 14 666ZM233 341V553Q233 635 239 648H131Q134 641 135 638T137 603T139 517T139 341Q139 131 138 89T132 37Q131 36 131 35H239Q233 47 233 129V341ZM639 341V489Q639 548 639 576T640 620T642 639T646 648H537L542 639Q546 625 546 341Q546 130 545 88T538 37Q537 36 537 35H646Q643 41 643 42T641 55T639 84T639 140V341"],73:[683,1,389,20,369,"20 666Q20 676 31 683H358Q369 676 369 666Q369 648 331 648Q288 645 282 632Q278 626 278 341Q278 57 282 50Q286 42 295 40T331 35Q369 35 369 16Q369 6 358 -1H31Q20 4 20 16Q20 35 58 35Q84 37 93 39T107 50Q113 60 113 341Q113 623 107 632Q101 645 58 648Q20 648 20 666ZM249 35Q246 40 246 41T244 54T242 83T242 139V341Q242 632 244 639L249 648H140Q146 634 147 596T149 341Q149 124 148 86T140 35H249"],74:[683,77,500,6,478,"79 103Q108 103 129 83T151 38Q151 9 130 -15Q116 -34 130 -37Q133 -39 157 -39Q208 -39 219 -8L226 3V305Q226 612 224 621Q220 636 211 641T166 647Q137 647 128 654Q119 665 128 679L135 683H466Q478 677 478 666Q478 647 439 647Q399 644 393 632Q388 620 388 347Q386 69 384 59Q364 -6 316 -39T184 -77H172Q102 -77 56 -48T6 30Q6 62 26 82T79 103ZM353 354Q353 556 354 596T361 645Q362 646 362 647H253Q257 639 258 628T261 547T262 312V-4L255 -17Q248 -29 250 -29Q253 -29 258 -28T277 -20T302 -5T327 22T348 65Q350 74 353 354ZM115 36Q115 47 105 57T79 67Q73 67 67 66T52 56T44 34Q44 9 62 -8Q66 -11 71 -15T81 -22T86 -24L90 -13Q100 3 102 5Q115 22 115 36"],75:[683,1,778,22,768,"22 666Q22 676 33 683H351L358 679Q368 665 358 655Q351 648 324 648Q288 645 280 637Q275 631 274 605T273 477L275 343L382 446Q473 530 492 553T512 599Q512 617 502 631T475 648Q455 651 455 666Q455 677 465 680T510 683H593H720Q732 676 732 666Q732 659 727 654T713 648Q670 648 589 581Q567 562 490 489T413 415Q413 413 554 245T711 61Q737 35 751 35Q758 35 763 29T768 15Q768 6 758 -1H624Q491 -1 486 3Q480 10 480 17Q480 25 487 30T506 35Q518 36 520 38T520 48L400 195L302 310L286 297L273 283V170Q275 65 277 57Q280 41 300 38Q302 37 324 35Q349 35 358 28Q367 17 358 3L351 -1H33Q22 4 22 16Q22 35 60 35Q101 38 106 52Q111 60 111 341T106 632Q100 645 60 648Q22 648 22 666ZM240 341V553Q240 635 246 648H138Q141 641 142 638T144 603T146 517T146 341Q146 131 145 89T139 37Q138 36 138 35H246Q240 47 240 129V341ZM595 632L615 648H535L542 637Q542 636 544 625T549 610V595L562 606Q565 608 577 618T595 632ZM524 226L386 388Q386 389 378 382T358 361Q330 338 330 333Q330 332 330 332L331 330L533 90Q558 55 558 41V35H684L671 50Q667 54 524 226"],76:[683,1,667,12,640,"12 666Q12 675 24 683H333L340 679Q350 665 340 655Q333 648 309 648Q287 646 279 643T266 630Q264 623 264 346Q264 68 266 57Q274 40 284 35H340Q413 37 460 55Q514 78 553 117T602 197Q605 221 622 221Q629 221 634 215T640 201Q638 194 625 105T611 12Q611 6 600 -1H24Q12 5 12 16Q12 35 51 35Q92 38 97 52Q102 60 102 341T97 632Q91 645 51 648Q12 648 12 666ZM137 341Q137 131 136 89T130 37Q129 36 129 35H237Q235 41 233 48L229 61L226 339Q226 621 229 628Q230 630 231 636T233 643V648H129Q132 641 133 638T135 603T137 517T137 341ZM580 48Q580 59 583 74T586 97Q586 98 585 97T579 92T571 86Q549 64 513 43L500 35H577L580 48"],77:[683,1,944,17,926,"18 666Q18 677 27 680T73 683H146Q261 683 266 679L465 215Q469 215 566 443Q663 676 668 681Q673 683 790 683H908L915 679Q924 664 915 655Q912 648 897 648Q851 639 835 606L833 346Q833 86 835 79Q838 69 849 58T873 41Q877 40 887 38T901 35Q926 35 926 16Q926 6 915 -1H604L597 3Q588 19 597 28Q600 35 615 35Q660 42 673 68L679 79V339Q679 409 679 443T679 520T679 580T677 597Q646 521 584 375T473 117T424 3Q416 -1 410 -1T401 1Q399 3 273 301L148 599L146 343Q146 86 148 79Q152 69 163 58T186 41Q190 40 200 38T215 35Q226 35 235 28Q244 17 235 3L228 -1H28Q17 4 17 17Q17 35 39 35Q84 42 97 68L104 79V639L88 641Q72 644 53 648Q34 648 26 651T18 666ZM457 166Q451 169 449 171T435 198T404 268T344 412L244 648H157L166 637Q169 633 293 346L413 66Q424 88 435 117L457 166ZM817 646Q817 648 766 648H715V72L708 57Q701 45 697 41L695 37Q695 35 757 35H819L813 46Q802 61 800 76Q797 105 797 346L799 612L804 626Q812 638 815 641L817 646ZM124 42Q119 42 119 38Q119 35 128 35Q132 35 132 36Q125 42 124 42"],78:[683,20,722,20,702,"20 664Q20 666 31 683H142Q256 683 258 681Q259 680 279 653T342 572T422 468L582 259V425Q582 451 582 490T583 541Q583 611 573 628T522 648Q500 648 493 654Q484 665 493 679L500 683H691Q702 676 702 666Q702 657 698 652Q688 648 680 648Q633 648 627 612Q624 601 624 294V-8Q616 -20 607 -20Q601 -20 596 -15Q593 -13 371 270L156 548L153 319Q153 284 153 234T152 167Q152 103 156 78T172 44T213 34Q236 34 242 28Q253 17 242 3L236 -1H36Q24 6 24 16Q24 34 56 34Q58 35 69 36T86 40T100 50T109 72Q111 83 111 345V603L96 619Q72 643 44 648Q20 648 20 664ZM413 419L240 648H120L136 628Q137 626 361 341T587 54L589 68Q589 78 589 121V192L413 419"],79:[701,19,778,34,742,"131 601Q180 652 249 676T387 701Q485 701 562 661Q628 629 671 575T731 448Q742 410 742 341T731 234Q707 140 646 81Q549 -19 389 -19Q228 -19 131 81Q57 155 37 274Q34 292 34 341Q34 392 37 410Q58 528 131 601ZM568 341Q568 613 437 659Q406 664 395 665Q329 665 286 625Q232 571 213 439Q210 408 210 341Q210 275 213 245Q232 111 286 57Q309 37 342 23Q357 19 389 19Q420 19 437 23Q469 38 491 57Q568 132 568 341ZM174 341Q174 403 177 441T197 535T249 639Q246 639 224 627T193 608Q189 606 183 601T169 589T155 577Q69 488 69 344Q69 133 231 52Q244 45 246 45Q248 45 246 48Q231 69 222 85T200 141T177 239Q174 269 174 341ZM708 341Q708 415 684 475T635 563T582 610Q578 612 565 619T546 630Q533 637 531 637Q530 637 530 636V635L531 634Q562 591 577 543Q602 471 602 341V316Q602 264 599 230T580 144T531 48L530 47V46Q530 45 531 45Q533 45 547 52T583 75T622 105Q708 195 708 341"],80:[683,1,611,16,597,"16 666Q16 675 28 683H195Q334 683 370 682T437 672Q511 657 554 611T597 495Q597 343 404 309Q402 308 401 308Q381 303 319 303H261V181Q261 157 262 120Q262 60 267 50T304 36Q310 35 313 35Q352 35 352 17Q352 10 346 3L339 -1H28Q16 5 16 16Q16 35 53 35Q68 36 75 37T87 42T95 52Q98 61 98 341T95 630Q91 640 83 643T53 648Q16 648 16 666ZM235 35Q228 46 227 84Q226 129 226 337V621L230 635L237 648H128Q128 647 133 632Q136 620 136 341Q136 64 133 50L128 35H235ZM301 341H313Q339 341 354 344T389 362T417 410T426 498Q426 586 401 616T322 647Q301 647 293 643Q271 637 264 621Q261 617 261 479V341H301ZM429 350Q431 350 443 353T476 367T515 391T548 432T562 490Q562 550 524 592Q507 607 484 619Q481 621 448 635L433 639L439 621Q462 578 462 506Q462 448 454 413T437 366T428 350H429"],81:[701,181,778,34,742,"480 -10Q480 -13 486 -24T507 -50T541 -80T588 -104T648 -114Q666 -114 688 -110T714 -106Q724 -106 728 -114T729 -130Q723 -145 663 -163T548 -181Q503 -181 463 -169T395 -139T343 -97T307 -56T284 -19L280 -3L262 1Q188 24 131 81Q57 155 37 275Q34 292 34 342T37 410Q58 528 131 601Q179 652 248 676T388 701Q485 701 562 661Q698 595 731 448Q742 410 742 341T731 235Q707 141 646 81Q616 50 575 27T493 -5L480 -10ZM568 342Q568 613 437 659L395 666Q329 666 286 626Q232 570 213 439Q210 408 210 342T213 246Q231 113 286 57Q309 37 342 23Q357 19 389 19Q420 19 437 23Q469 38 491 57Q568 134 568 342ZM174 341V354Q174 393 175 419T183 484T205 561T246 635L249 639Q246 639 224 627T193 608Q189 606 183 601T169 589T155 577Q69 491 69 344Q69 133 231 52Q247 42 247 46Q247 46 246 48Q231 69 222 85T200 141T177 239Q174 269 174 341ZM708 341Q708 410 689 467T640 556T588 606T546 630Q532 638 531 638Q530 638 531 635Q563 590 577 543Q602 472 602 341V316Q602 264 599 230T580 144T531 48Q529 44 532 45T546 52Q575 68 596 84T642 128T683 200T706 299Q708 327 708 341ZM391 -17H333Q329 -15 326 -15Q324 -15 324 -17Q324 -21 362 -68Q424 -130 506 -143Q518 -144 544 -144Q569 -144 577 -143L589 -141L575 -139Q544 -127 509 -101T453 -37L442 -19L391 -17"],82:[683,1,722,16,705,"17 665Q17 672 28 683H221Q415 681 439 677Q461 673 481 667T516 654T544 639T566 623T584 607T597 592T607 578T614 565T618 554L621 548Q626 530 626 497Q626 447 613 419Q578 348 473 326L455 321Q462 310 473 292T517 226T578 141T637 72T686 35Q705 30 705 16Q705 7 693 -1H510Q503 6 404 159L306 310H268V183Q270 67 271 59Q274 42 291 38Q295 37 319 35Q344 35 353 28Q362 17 353 3L346 -1H28Q16 5 16 16Q16 35 55 35Q96 38 101 52Q106 60 106 341T101 632Q95 645 55 648Q17 648 17 665ZM241 35Q238 42 237 45T235 78T233 163T233 337V621L237 635L244 648H133Q136 641 137 638T139 603T141 517T141 341Q141 131 140 89T134 37Q133 36 133 35H241ZM457 496Q457 540 449 570T425 615T400 634T377 643Q374 643 339 648Q300 648 281 635Q271 628 270 610T268 481V346H284Q327 346 375 352Q421 364 439 392T457 496ZM492 537T492 496T488 427T478 389T469 371T464 361Q464 360 465 360Q469 360 497 370Q593 400 593 495Q593 592 477 630L457 637L461 626Q474 611 488 561Q492 537 492 496ZM464 243Q411 317 410 317Q404 317 401 315Q384 315 370 312H346L526 35H619L606 50Q553 109 464 243"],83:[702,12,556,28,528,"54 238Q72 238 72 212Q72 174 106 121Q113 110 132 90T166 59Q221 23 264 23Q315 23 348 41Q368 50 384 79Q393 102 393 129Q393 181 356 219T221 299Q120 343 74 390T28 501Q28 561 55 610Q98 682 212 699Q214 699 231 700T261 701Q309 698 340 687T408 675Q431 678 445 690T465 702Q474 702 481 690V497L477 490Q464 481 450 490Q446 500 446 501Q446 546 386 606T260 666Q215 666 182 639T148 565Q148 528 186 496T319 428Q352 414 370 405T418 379T468 338T506 284Q528 239 528 191Q528 102 456 46T266 -10Q211 -10 176 2T110 15Q86 9 73 -1T53 -12Q44 -12 37 -1V112V182Q37 214 40 226T54 238ZM446 619Q446 648 444 648Q439 646 435 644Q425 644 415 639H404L417 624Q435 606 439 601L446 592V619ZM124 619L128 635Q126 635 108 617Q64 576 64 502Q64 489 65 479T76 449T102 414T150 376T228 335Q335 291 381 245T427 128Q427 94 419 75L415 61Q421 61 448 88Q490 127 490 190Q490 233 475 264Q456 299 430 321Q402 349 369 367T287 404T204 441Q138 481 119 526Q113 544 113 565Q113 596 124 619ZM75 43Q76 43 90 46T110 50H119L106 64L74 101Q72 101 72 72T75 43"],84:[683,1,667,33,635,"33 672Q36 680 44 683H624Q632 680 635 672V490L631 483Q621 479 617 479Q611 479 606 485T600 499Q600 525 584 552Q577 567 558 588T524 617Q479 642 426 646L415 648V355Q415 62 422 52Q425 42 434 40T473 35Q500 35 509 28Q518 17 509 3L502 -1H166L160 3Q149 17 160 28Q167 35 195 35Q224 37 234 39T249 52Q253 66 253 355V648L242 646Q192 642 144 617Q129 609 110 588T84 552Q69 527 69 499Q69 490 64 484T50 478Q39 478 33 490V672ZM113 639L126 648H69V597L84 612Q93 623 113 639ZM389 35Q382 46 381 86Q380 134 380 350V648H289V350Q289 199 288 131T286 53T280 35H389ZM600 597V648H542L555 639Q575 623 584 612L600 597"],85:[683,19,722,16,709,"16 666Q16 677 28 683H341L348 679Q359 665 348 654Q342 648 315 648Q270 644 266 632Q262 627 262 598T261 399Q261 372 261 325T260 260Q260 149 274 99T339 30Q355 25 393 25Q430 25 457 33T494 49T519 72Q562 115 575 205Q576 219 576 379Q576 538 575 550Q568 597 550 622T506 648Q498 648 493 654T487 667T499 683H697Q709 675 709 667T704 654T690 648Q653 648 633 597Q624 573 622 546T619 377Q617 193 613 174Q596 95 544 41Q477 -19 355 -19H344Q275 -16 226 5T153 57T120 110T106 154Q101 172 99 399Q99 618 95 632Q88 644 53 648Q16 648 16 666ZM228 639L233 648H128Q128 647 133 632Q135 621 135 412Q135 197 137 185Q148 115 181 79Q209 51 235 41Q242 36 258 31T277 25Q276 27 268 38T254 59T241 92T228 145Q226 161 226 399Q226 632 228 639ZM604 621Q606 626 619 648H577L586 634Q587 632 591 625T595 614L597 608L604 621"],86:[683,20,722,0,719,"316 683Q327 676 327 666Q327 648 302 648Q272 642 258 628Q249 621 249 608Q252 589 263 556T289 485T322 406T357 325T388 256T411 205L420 185Q423 185 473 317Q547 497 547 590Q547 621 541 632T516 648Q501 648 498 654Q488 664 498 679L504 683H607H660Q695 683 707 680T719 667Q719 660 714 654T700 648Q678 648 658 628L642 614L513 301Q484 231 449 148T397 25T380 -15Q373 -20 368 -20Q361 -20 358 -15Q354 -13 287 135T149 438T67 610Q45 648 18 648Q11 648 6 653T0 666Q0 677 9 680T59 683H164H316ZM216 614Q216 620 216 622T216 628T216 633T217 635T218 638T219 640T221 644T224 648H84L96 632Q118 592 236 330L367 43L387 88L404 132L380 185Q250 468 222 568Q216 590 216 614ZM576 645Q584 628 584 597L587 568L598 597Q609 624 618 637L624 648H600Q576 648 576 645"],87:[683,19,1000,5,994,"785 664Q785 670 795 683H982Q994 675 994 665Q994 650 975 648Q953 643 939 619Q931 593 823 292T710 -15Q706 -19 699 -19T688 -15Q682 -6 639 107T555 328T513 437Q513 438 500 409T462 325T413 212Q315 -14 310 -17Q308 -19 302 -19T288 -15L57 619Q45 643 24 648Q5 650 5 665Q5 677 17 683H146H200Q256 683 270 681T285 666Q285 659 280 654T268 648Q253 648 239 634Q230 630 230 619Q230 598 264 481L362 192Q363 193 428 341T493 492Q493 496 473 546T446 608Q426 648 399 648Q392 648 387 653T382 667Q382 678 393 683H679Q690 670 690 665Q690 662 685 655T673 648Q653 648 633 632L622 625V610Q626 576 657 479T719 300T751 218Q754 218 779 294Q847 492 847 581Q847 648 802 648Q796 648 791 652T785 664ZM194 623Q194 630 199 648H82L90 632Q99 616 199 332L302 50Q303 50 322 94T342 141Q342 142 305 245T231 467T194 623ZM585 620Q585 634 593 648H530Q466 648 466 645Q479 632 595 323L699 54Q701 56 718 103T735 154L702 245Q585 562 585 620ZM884 572L890 587Q896 602 903 620T915 645Q915 648 893 648H868L875 634Q883 598 883 576Q883 572 884 572"],88:[683,1,722,16,705,"22 666Q22 677 31 680T80 683H184H335Q346 675 346 667Q346 660 341 655Q335 648 315 648Q280 644 273 637Q273 630 300 583T356 492T386 448Q430 504 450 535T474 577T478 601Q478 620 469 634T444 648Q428 648 428 666Q428 678 436 680T488 683H559H630Q673 683 681 681T690 666Q690 648 673 648Q652 648 619 637Q571 615 517 550Q490 517 450 464T410 408Q415 399 501 273T617 106Q648 61 661 48T688 35Q705 35 705 16Q705 5 695 -1H539Q384 -1 379 3Q373 10 373 17Q373 27 380 31T408 35Q459 40 459 49Q459 59 418 129T335 259Q334 260 332 260Q328 260 273 197Q210 127 208 117Q199 104 199 82Q199 57 213 46T239 35Q247 35 252 29T257 15Q257 10 256 7T253 3T248 0L246 -1H28Q16 7 16 15T21 29T35 35Q61 35 117 88Q289 279 304 297Q307 303 255 377Q117 586 79 626Q60 648 39 648Q32 648 27 653T22 666ZM237 639V648H173Q113 647 113 646Q113 642 137 612Q186 546 302 373T453 139Q497 63 497 43Q497 39 495 35H559Q622 35 622 37Q622 38 583 94T486 233T373 399T277 552T237 639ZM553 637L566 648H504L508 637Q510 630 515 615V603L528 615Q529 616 539 625T553 637ZM170 46Q169 49 167 58T164 70V83L137 59L113 35H175Q175 38 170 46"],89:[683,1,722,16,704,"16 659T16 667T28 683H295Q306 676 306 666Q306 648 284 648Q258 648 255 641Q255 634 265 615T339 479Q418 339 421 339L455 394Q489 448 523 502L557 557Q560 566 560 582Q560 637 504 648Q489 648 486 655Q475 664 486 679L493 683H693Q704 675 704 667Q704 650 684 648Q672 645 653 623Q633 604 614 576T517 426L439 301V183Q442 62 444 59Q449 35 504 35Q521 35 528 30Q538 16 528 3L521 -1H195L188 3Q178 16 188 30Q195 35 213 35Q266 35 273 59Q274 61 277 163V261L75 621Q64 638 58 643T37 648Q28 648 22 653ZM219 637V648H101Q110 634 215 446L313 270V166Q310 59 306 48L301 35H415L410 48Q404 65 404 175V290L317 443Q230 601 226 612Q219 625 219 637ZM608 630L624 648H575Q584 632 588 623L595 610L608 630"],90:[683,1,667,29,635,"39 -1Q29 9 29 12Q29 23 60 77T219 337L410 648H364Q261 648 210 628Q168 612 142 588T109 545T97 509T88 490Q85 489 80 489Q72 489 61 503L70 588Q72 607 75 628T79 662T81 675Q84 677 88 681Q90 683 341 683H592Q604 673 604 666Q604 662 412 348L221 37Q221 35 301 35Q406 35 446 48Q504 68 543 111T597 212Q602 239 617 239Q624 239 629 234T635 223Q635 215 621 113T604 8L597 1Q595 -1 317 -1H39ZM148 637L166 648H112V632Q111 629 110 622T108 612Q108 608 110 608T116 612T129 623T148 637ZM552 646Q552 648 504 648Q452 648 450 643Q448 639 266 343T77 37Q77 35 128 35H179L366 339L552 646ZM572 35Q581 89 581 97L561 77Q542 59 526 48L508 37L539 35H572"],107:[683,1,556,17,534,"519 443Q519 426 497 426Q458 422 361 335Q328 308 315 295Q307 289 310 286T383 193T466 88Q507 35 517 35Q534 35 534 16Q534 5 524 -1H304L297 3Q288 19 297 28Q300 35 317 35Q320 36 324 36T330 37T333 39Q334 39 334 40Q334 47 304 86T244 162L215 199Q212 202 206 199Q201 195 201 137V121Q201 35 230 35Q238 35 243 29T248 15Q248 4 237 -1H28L21 3Q17 13 17 17Q17 24 22 29T35 35Q55 35 61 70Q63 78 63 341T61 612Q55 648 35 648Q27 648 22 654T17 668Q17 678 26 682Q27 683 28 683H108H147Q156 683 162 683T174 683T182 683T187 682T191 681T194 680T197 678T201 675V461L204 246L244 281Q254 291 272 307Q317 349 326 360T339 386Q340 390 340 398Q340 426 321 426Q314 426 309 431T304 445Q304 456 315 461H508Q519 448 519 443ZM166 359V648H126Q89 648 89 645Q89 644 89 644T90 643T91 640T93 634T95 626Q99 612 99 341T95 57Q94 53 93 49T91 43T90 39L89 37Q89 35 133 35Q176 35 176 37Q175 38 175 39Q175 42 170 57Q166 70 166 359ZM410 423Q412 425 407 426Q404 426 393 426Q373 426 373 423Q374 422 375 417T377 410Q377 399 379 399Q406 419 410 423ZM460 37Q460 41 368 152L281 263Q280 263 259 246L239 228Q298 157 355 79Q370 61 370 41V35H417Q460 35 460 37"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js deleted file mode 100644 index ff83aab..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{8705:[846,22,500,56,444,"404 269Q412 269 418 267T428 261T435 253T441 245L444 240V172Q444 103 443 96Q440 81 431 65T403 27T344 -7T250 -21T156 -8T97 27T69 65T58 96Q56 103 56 413Q56 722 58 729Q74 822 215 845Q221 846 229 846H243Q282 846 290 845Q422 826 443 729Q444 722 444 653V586L442 583Q441 580 440 578T436 573T430 567T423 562T415 558T404 556Q377 556 367 583Q364 590 364 654V719Q363 721 360 726T355 733Q326 766 250 766H249Q235 766 219 765T174 752T137 719V107Q145 83 178 71T251 58H254Q340 58 364 107V172Q364 176 364 187T363 204Q363 269 404 269"],8708:[860,166,556,55,497,"55 676Q55 688 66 694H199L333 696L351 772Q364 827 370 843T386 860Q393 860 399 854T406 841Q406 836 391 765L375 696Q375 694 431 694H484Q491 688 497 681V12L493 5L486 1L353 -1H219L202 -79Q184 -153 180 -159Q175 -166 165 -166Q146 -166 146 -148Q146 -141 161 -76T177 -4Q177 -1 122 -1H68Q55 12 55 20T66 39H126L186 41L219 181Q226 215 234 251T246 305T251 325Q251 328 166 328H79Q68 345 68 347Q68 352 75 359L82 368H262L291 505Q298 539 306 575T319 630T324 650V654H68Q55 669 55 676ZM457 368V654H411Q366 654 366 652Q365 651 361 634T349 580T333 514Q303 373 302 372V368H457ZM457 39V328H375Q293 328 293 325Q292 322 260 183T228 41T344 39H457"],8709:[587,3,778,55,720,"624 470Q624 468 639 446T668 382T683 291Q683 181 612 99T437 -1Q425 -2 387 -2T337 -1Q245 18 193 70L179 81L131 39Q96 8 89 3T75 -3Q55 -3 55 17Q55 24 61 30T111 73Q154 113 151 113Q151 114 140 130T115 177T95 241Q94 253 94 291T95 341Q112 431 173 495Q265 587 385 587Q410 587 437 581Q522 571 582 513L595 501L642 541Q689 586 695 586Q696 586 697 586T699 587Q706 587 713 583T720 568Q720 560 711 551T664 510Q651 499 642 490T628 475T624 470ZM564 477Q517 522 448 539Q428 546 375 546Q290 546 229 492T144 370Q133 332 133 279Q136 228 151 195Q157 179 168 160T184 141Q186 141 375 307T564 477ZM642 290Q642 318 637 343T625 386T611 416T598 436T593 444Q590 444 402 277T213 108Q213 104 231 89T293 55T392 37Q495 37 568 111T642 290"],8717:[440,1,429,102,456,"154 -1Q122 -1 112 3T102 26Q102 63 158 63H178Q192 64 206 65T228 66T240 68Q301 85 324 146L329 157H244Q158 157 153 161Q149 162 145 169T140 183Q140 201 158 215L167 221H256L344 223L349 237Q352 262 352 287Q352 308 351 315Q341 352 315 368T256 385Q231 385 206 376T166 356T149 346Q143 346 138 364T132 388Q132 396 147 406Q198 440 252 440Q291 440 318 435Q421 404 451 301Q456 288 456 248V234Q456 151 391 86Q330 25 240 3Q212 -1 154 -1"],8722:[270,-230,500,84,417,"84 237T84 250T98 270H402Q417 262 417 250T402 230H98Q84 237 84 250"],8724:[766,93,778,57,722,"339 717Q339 739 354 752T388 766Q410 766 424 751T439 716T424 681T390 666Q369 666 354 681T339 717ZM57 237T57 250T71 270H369V425L370 581Q380 594 389 594Q402 594 409 579V270H707Q722 262 722 250T707 230H409V-79Q401 -93 391 -93H389H387Q375 -93 369 -79V230H71Q57 237 57 250"],8726:[430,23,778,91,685,"91 404T91 410T97 423T111 430Q117 430 395 224Q676 13 678 10Q685 3 685 -3T678 -16T664 -23Q658 -23 380 184T98 397Q91 404 91 410"],8733:[472,-28,778,56,722,"56 250Q56 346 122 409T276 472Q349 472 407 430T486 326L489 316Q490 317 493 326T501 345T514 367T531 393Q557 425 602 448T698 472Q722 472 722 452Q722 437 702 435T642 421T571 377Q520 323 520 250Q520 179 568 126T693 68Q722 66 722 48Q722 28 698 28Q636 28 576 67T493 174L490 184Q489 181 483 167T475 150T468 136T458 120T447 107T432 90T412 73Q350 28 277 28Q188 28 122 91T56 250ZM199 68T278 68T408 122T459 250Q459 322 414 370T308 430Q302 431 273 431Q204 431 150 380T96 250Q96 176 147 122"],8736:[694,0,722,55,666,"71 0L68 2Q65 3 63 5T58 11T55 20Q55 22 57 28Q67 43 346 361Q397 420 474 508Q595 648 616 671T647 694T661 688T666 674Q666 668 663 663Q662 662 627 622T524 503T390 350L120 41L386 40H653Q666 30 666 20Q666 8 651 0H71"],8737:[714,20,722,55,666,"71 0L68 2Q65 3 63 5T58 11T55 20Q55 22 57 28Q64 38 348 373T638 712Q644 714 646 714Q653 714 659 709T666 694V693Q666 687 633 647Q619 631 576 580Q528 524 495 485Q336 296 329 289Q328 288 348 264T395 182T433 54L434 40H651Q666 32 666 20T651 0H436Q431 -20 416 -20Q400 -20 396 -4V0H71ZM394 40Q394 51 389 76T366 149T319 234L302 256L119 41L256 40H394"],8738:[551,51,722,55,666,"666 -32Q666 -51 646 -51Q639 -51 365 85L75 228Q55 238 55 250Q55 257 59 262T68 268L72 270L611 536Q642 551 647 551T659 547T666 532Q666 521 657 515L525 449Q525 448 535 424T556 352T566 250T556 148T536 77T525 51L657 -15Q666 -21 666 -32ZM526 250Q526 297 517 342T499 409T488 431Q487 431 304 341T121 250T304 159T488 69Q526 143 526 250"],8739:[430,23,222,91,131,"91 417Q104 430 111 430T131 417V-10Q116 -23 111 -23T91 -10V417"],8740:[750,252,278,-20,296,"118 737Q131 750 138 750L151 746L158 739V579L160 421L213 470Q269 519 276 519Q284 519 290 513T296 499V498Q296 493 291 488T244 445Q225 428 213 417L158 368V-239Q143 -252 136 -252L124 -248L120 -241L118 44V328L62 279Q4 231 0 230Q-8 230 -14 236T-20 250Q-20 257 -11 265T62 332L118 384V737"],8741:[431,23,389,55,331,"55 417Q69 431 76 431T95 419V-12Q84 -23 76 -23Q72 -23 69 -22T62 -16T55 -10V417ZM293 419Q300 431 310 431L324 424L331 417V-10Q316 -23 309 -23L297 -19L293 -12V419"],8742:[751,250,500,-20,518,"131 737Q134 739 138 743T144 748T151 750T171 737V199L327 357V737Q340 750 347 750Q351 750 353 749T360 743T367 737V397L429 457Q493 518 498 519Q506 519 512 512T518 500Q518 489 442 417L367 339V-237Q352 -250 346 -250L333 -243L327 -237V301L171 143V-237Q156 -250 151 -250T131 -237V101L69 41Q24 -3 15 -12T0 -21Q-8 -21 -14 -14T-20 -2Q-20 5 -7 19T56 81L131 159V737"],8756:[471,82,667,24,643,"273 411Q273 437 291 454T334 471Q358 471 375 454T393 411T376 368T333 351Q307 351 290 368T273 411ZM84 38Q110 38 126 21T143 -22Q143 -46 127 -64T83 -82Q57 -82 41 -65T24 -22Q24 4 41 21T84 38ZM524 -22Q524 4 541 21T584 38Q608 38 625 21T643 -22Q643 -45 627 -63T583 -82Q557 -82 541 -65T524 -22"],8757:[471,82,667,23,644,"23 411Q23 437 41 454T84 471Q108 471 125 454T143 411T126 368T83 351Q57 351 40 368T23 411ZM523 411Q523 437 541 454T584 471Q608 471 625 454T643 411T626 368T583 351Q557 351 540 368T523 411ZM274 -22Q274 4 291 21T334 38Q356 38 374 22T392 -22T375 -65T333 -82Q307 -82 291 -65T274 -22"],8764:[365,-132,778,55,719,"73 132Q55 132 55 172Q55 220 79 272Q95 301 111 319Q148 353 195 363Q199 364 212 364Q262 364 294 350T408 272Q472 222 522 212Q537 208 555 208Q606 208 646 243Q671 268 680 296T691 342T702 365Q713 365 716 354T719 314Q714 236 664 179L660 176Q657 173 654 170T644 163T631 154T615 146T596 139T574 134T549 132Q510 132 465 156T386 211T307 265T223 290Q162 290 124 249T86 165Q86 155 82 144T73 132"],8765:[367,-133,778,56,722,"222 133Q147 133 102 197T56 335Q56 362 66 365Q71 369 77 364Q83 356 84 335T90 298Q102 254 137 222T223 189Q258 189 292 206T355 250T413 301T477 346T550 367Q628 367 673 309T722 171Q722 133 708 133Q703 133 699 141T694 162Q694 220 655 265T555 311Q519 311 485 293T421 248T363 196T298 152T222 133"],8769:[467,-32,778,55,719,"220 366Q258 366 297 347T361 308T391 288Q394 288 464 370Q494 407 510 425T535 454T546 465T552 467H553Q560 467 566 461T573 448Q573 439 499 350Q424 266 424 261Q424 259 442 247T492 222T554 209Q607 209 646 243Q671 268 680 295T690 341T702 366Q719 366 719 314Q716 265 695 226Q682 199 664 179Q614 132 555 132Q517 132 477 151T412 190T383 210T347 172T278 89T233 37Q228 32 220 32Q210 32 206 38T201 48Q201 57 266 137Q272 144 275 148Q351 231 351 237Q351 239 333 251T283 276T221 289Q159 289 123 248T86 166Q86 156 82 145T73 132Q55 132 55 172Q55 220 79 272Q95 301 111 319Q161 366 220 366"],8770:[463,-34,778,55,720,"55 439T55 443T56 449T62 456T68 463H706Q720 449 720 443T706 423H68Q55 439 55 443ZM56 72Q56 112 73 152T130 225T224 257Q259 257 294 240T360 199T419 149T484 107T553 90Q603 90 643 125T691 223Q693 257 704 257Q717 257 717 221Q717 147 671 91T554 34Q517 34 481 51T414 93T355 142T291 184T222 201Q172 201 131 167T84 67Q81 34 71 34Q56 37 56 72"],8774:[652,155,778,54,720,"55 417Q55 479 101 528T222 578Q259 578 294 564T393 507Q413 493 434 480T469 460T484 454L537 549Q587 639 595 647Q600 652 607 652Q615 652 621 647T628 634Q628 625 575 536Q524 446 524 443Q527 440 555 440Q603 440 644 469T691 547Q694 578 706 578T718 556Q718 555 718 551T717 545Q717 488 684 445T595 387Q582 384 558 384Q530 384 508 389L493 394L404 238L557 236H708Q720 224 720 217T706 196H379L291 43L499 41H708Q720 29 720 21T706 1H268L226 -71Q186 -143 179 -148Q173 -155 165 -155T152 -150T146 -137Q146 -133 184 -64L222 1H144L66 3L59 7Q54 14 54 20Q54 29 66 41H246L333 194Q333 196 202 196H68Q55 211 55 218T66 236H213L357 238L457 409L437 421Q432 423 393 450T307 500T222 523Q171 523 129 491T84 414Q82 383 70 383Q55 383 55 417"],8776:[481,-49,778,55,719,"55 326Q55 394 101 437T226 481Q268 479 313 460T392 419T469 379T555 361Q622 361 662 401Q686 423 688 450Q693 479 702 479H705Q719 479 719 442Q719 367 670 327T554 286Q512 286 466 304T386 345T307 385T220 404Q184 404 157 394T120 374L111 363Q86 339 86 317Q86 288 71 288Q55 288 55 326ZM55 90Q55 164 105 205T226 246Q269 243 314 224T392 183T470 144T558 126Q622 126 662 166Q686 187 688 214Q693 244 704 244Q716 244 719 210Q719 165 702 132T658 82T605 58T552 50T498 58T447 77T384 110Q322 146 302 152Q263 168 220 168Q179 168 144 152Q128 147 107 125T86 81Q86 52 71 52Q55 52 55 90"],8778:[579,39,778,51,725,"220 523Q163 523 124 486T84 412Q81 383 69 383Q56 383 56 413Q56 441 67 470Q78 508 111 537T187 575Q203 579 219 579Q248 579 271 572Q304 565 393 508Q498 439 551 439Q620 439 662 486Q688 512 693 557Q693 565 697 572T707 579Q719 579 719 548Q719 483 673 434T550 384Q512 384 467 405T386 453T305 501T220 523ZM222 288Q164 288 124 251T84 177Q81 148 69 148Q56 148 56 178Q56 206 67 235Q78 274 111 302T187 339Q198 343 220 343Q244 343 259 341T308 322T393 272Q496 203 553 203Q612 203 651 241T691 312Q693 343 705 343Q719 343 719 313Q719 245 673 199Q626 148 552 148Q513 148 467 170T385 218T304 266T222 288ZM51 -19Q51 -6 62 -1H387Q713 -1 715 -3Q725 -10 725 -20Q725 -27 718 -34Q714 -38 672 -38T387 -39H62Q51 -25 51 -19"],8782:[492,-8,778,56,723,"245 367Q251 415 288 453T392 492Q445 492 485 456T532 367H707Q722 359 722 347Q722 334 711 331T665 327H608H509Q500 332 498 336Q496 338 493 363T472 411Q443 451 389 451H387Q335 451 305 411Q290 392 287 374T282 344T268 327H72Q56 332 56 347Q56 360 70 367H245ZM56 153Q56 168 72 173H268Q277 168 279 164Q281 162 284 137T305 89Q334 49 389 49H391Q442 49 472 89Q487 108 490 126T495 156T509 173H608H666Q701 173 711 170T722 153T707 133H532Q526 81 486 45T389 8Q331 8 291 45T245 133H70Q56 140 56 153"],8783:[492,-133,778,56,722,"245 367Q251 415 288 453T392 492Q445 492 485 456T532 367H707Q722 359 722 347Q722 334 711 331T665 327H608H509Q500 332 498 336Q496 338 493 363T472 411Q443 451 389 451H387Q335 451 305 411Q290 392 287 374T282 344T268 327H72Q56 332 56 347Q56 360 70 367H245ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153"],8785:[609,108,778,56,722,"421 474T389 474T339 493T321 541Q321 566 337 587T391 609Q456 602 456 541Q456 512 439 493ZM56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153ZM421 -108T389 -108T339 -89T321 -41Q321 -16 337 5T391 27Q456 20 456 -41Q456 -70 439 -89"],8786:[601,101,778,15,762,"15 541Q15 569 33 585T75 601T117 585T135 541Q135 514 118 498T75 481T32 498T15 541ZM56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153ZM642 -41Q642 -17 658 0T702 18Q726 18 744 3T762 -41Q762 -67 745 -84T702 -101Q676 -101 659 -85T642 -41"],8787:[601,102,778,14,762,"642 541Q642 569 660 585T702 601T744 585T762 541Q762 515 745 498T702 481Q676 481 659 497T642 541ZM56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153ZM14 -41Q14 -15 31 1T74 18Q101 18 118 0T135 -41Q135 -64 118 -83T75 -102Q51 -102 33 -85T14 -41"],8790:[367,-133,778,56,722,"56 347Q56 360 70 367H707Q722 359 722 347Q722 334 711 331T658 327H586H465L472 318Q496 288 496 250T472 182L465 173H586H663Q700 173 711 170T722 153T707 133H70Q56 140 56 153Q56 168 72 173H312L305 182Q281 212 281 250T305 318L312 327H72Q56 332 56 347ZM473 250Q473 265 472 273T460 297T428 327H349Q328 313 318 298T306 273T304 250Q304 235 305 227T317 203T349 173H428Q449 187 459 202T471 227T473 250"],8791:[721,-133,778,56,722,"279 612Q279 656 310 688T388 721Q433 721 465 689T498 612Q498 573 470 538T389 503Q336 503 308 538T279 612ZM458 614Q458 637 452 651T433 672T411 679T383 680T352 675T333 664T324 647T321 629T320 611Q320 593 321 584T332 562T359 545Q366 543 389 543H391Q406 543 414 544T435 552T452 573T458 614ZM56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153"],8796:[859,-133,778,56,723,"192 482H190Q187 483 185 484T181 488T177 493T175 501Q175 506 178 512Q184 523 278 687T375 853Q379 857 383 857Q385 857 387 858T390 859Q397 859 403 853Q405 851 499 687T600 512Q603 506 603 501Q603 488 587 482H192ZM548 523L389 798Q388 798 309 661T230 523T389 522T548 523ZM56 347Q56 360 70 367H708Q723 359 723 347Q723 336 709 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H709Q723 163 723 153Q723 140 708 133H70Q56 140 56 153"],8806:[753,175,778,83,694,"674 753Q682 753 688 747T694 732T687 718Q686 717 417 589L151 463L399 345Q687 209 691 204Q694 198 694 193Q694 175 676 173H670L382 309Q92 446 90 448Q83 453 83 465Q84 476 96 482Q104 486 382 617T665 751Q669 753 674 753ZM84 39Q84 49 99 59H678Q694 53 694 39Q694 26 679 19H98Q84 26 84 39ZM83 -157Q83 -153 84 -150T86 -145T89 -141T92 -139T96 -137T99 -135H678Q694 -146 694 -155Q694 -168 679 -175H98Q84 -168 83 -157"],8807:[753,175,778,82,694,"83 733Q83 741 89 747T99 753Q107 753 253 685T543 548T687 478Q694 473 694 463T687 448Q685 446 395 309L107 173H101Q83 175 83 193Q83 194 83 196Q82 203 98 212Q117 222 248 284Q326 321 378 345L626 463L360 589Q291 622 200 665Q112 706 98 714T83 733ZM84 39Q84 49 99 59H678Q694 53 694 39Q694 26 679 19H98Q84 26 84 39ZM83 -157Q83 -153 84 -150T86 -145T89 -141T92 -139T96 -137T99 -135H678Q694 -146 694 -155Q694 -168 679 -175H98Q84 -168 83 -157"],8808:[752,286,778,82,694,"86 472Q93 477 381 614T673 752Q680 752 686 746T693 732T689 721Q686 715 418 590L151 461L418 332Q684 207 689 201Q693 195 693 190Q693 183 687 177T675 170Q668 170 380 307T86 450Q82 454 82 461Q82 467 86 472ZM82 33Q82 37 83 40T89 47T95 54H473L520 105Q569 156 571 156Q573 157 578 157Q586 157 592 151T598 136Q598 130 562 92L526 56L604 54H682Q693 43 693 35Q693 31 692 28T686 21T680 14H489L342 -139L513 -142H682Q693 -148 693 -160Q693 -167 680 -182H304L258 -230Q248 -240 237 -251T221 -268T211 -278T203 -284T197 -286Q189 -286 184 -280T178 -264Q178 -257 213 -219L249 -182H171L93 -179L86 -175Q82 -170 82 -163Q82 -155 95 -142H289L360 -64L433 14H262L93 16Q82 23 82 33"],8809:[752,286,778,82,693,"89 745Q95 752 100 752Q106 752 394 615T689 472Q693 468 693 461T689 450Q684 445 396 308T100 170Q95 170 89 176T82 190Q82 195 86 201Q91 208 358 332L624 461L358 590Q90 715 86 721Q82 725 82 731Q82 739 89 745ZM82 33Q82 37 83 40T89 47T95 54H473L520 105Q569 156 571 156Q573 157 578 157Q586 157 592 151T598 136Q598 130 562 92L526 56L604 54H682Q693 43 693 35Q693 31 692 28T686 21T680 14H489L342 -139L513 -142H682Q693 -148 693 -160Q693 -167 680 -182H304L258 -230Q248 -240 237 -251T221 -268T211 -278T203 -284T197 -286Q189 -286 184 -280T178 -264Q178 -257 213 -219L249 -182H171L93 -179L86 -175Q82 -170 82 -163Q82 -155 95 -142H289L360 -64L433 14H262L93 16Q82 23 82 33"],8812:[751,251,500,74,425,"104 730Q104 749 123 749Q130 749 138 745Q186 717 237 671L250 659L261 670Q297 703 332 726T375 750T389 744T395 730Q395 721 390 717T364 699T322 668Q290 641 283 632Q280 628 281 627T293 612Q425 454 425 250Q425 144 388 51T293 -112Q282 -125 281 -126T283 -132Q306 -162 379 -209Q395 -219 395 -230Q395 -238 389 -244T375 -250T335 -228T262 -171L250 -159L238 -170Q202 -203 167 -226T124 -250T110 -244T104 -230Q104 -219 121 -209Q199 -156 216 -132Q219 -128 218 -127T206 -112Q74 46 74 250T206 612Q217 625 218 626T216 632Q199 656 121 709Q104 719 104 730ZM249 -94Q364 61 364 250Q364 430 265 574Q253 590 249 594L242 583Q134 439 134 250Q134 114 192 -1Q212 -44 242 -83L249 -94"],8814:[709,209,778,82,693,"693 -14T693 -20T687 -33T675 -41Q667 -41 506 37L344 112Q342 112 262 -46Q184 -196 176 -205Q172 -209 168 -209T162 -208Q155 -208 151 -203T146 -190Q146 -178 171 -137Q193 -91 251 21L306 132L198 183Q142 208 118 220T88 238T82 249Q82 253 86 261Q92 267 278 357L464 443L529 572Q561 637 577 667T597 703T607 708Q615 708 622 702T629 688Q629 680 575 579L524 474Q524 473 545 482T598 508Q666 541 673 541T686 535T693 521Q693 512 679 504T589 459L493 414L360 150Q366 148 378 142T431 116T529 70Q686 -8 689 -10Q693 -14 693 -20ZM380 277L433 383Q432 385 292 319T151 250T237 209T324 170L380 277"],8815:[708,209,778,82,693,"82 514T82 520T89 533T100 541Q106 541 271 463Q434 386 435 386L515 543Q593 699 600 706Q604 708 607 708Q615 708 622 702T629 688T549 526Q509 445 491 407T473 368Q522 343 580 317Q636 291 660 278T688 261T693 250V249Q693 241 681 234T580 184Q533 161 502 146Q317 59 315 59Q312 56 246 -74Q197 -170 186 -189T168 -209Q164 -209 162 -208Q155 -208 151 -203T146 -190Q146 -187 200 -79L253 28L218 11Q182 -6 144 -23T100 -41Q95 -41 89 -35T82 -21Q82 -12 96 -4T186 41L284 88L349 217Q377 273 395 311T413 350Q413 351 253 428Q101 498 86 510Q82 514 82 520ZM624 250Q461 330 455 330Q454 331 453 329T448 321T441 308T430 287T416 259T398 223L342 114L624 250"],8816:[801,303,778,81,694,"82 -124Q82 -120 83 -117T89 -110T95 -103H220L284 50Q346 204 344 206L218 268Q153 297 123 313T87 333T82 344T86 355Q104 369 291 455Q491 552 491 553L542 673Q581 767 590 784T609 801Q616 801 622 795T629 781Q629 773 586 677Q546 581 546 577L609 606Q669 635 673 635Q680 635 686 629T693 615Q693 610 692 608T670 593T604 561L524 521L400 226L542 157Q617 123 649 107T687 85T694 72Q694 66 690 60T679 54Q664 54 526 121Q513 127 495 136T464 150T438 162T416 173T399 180T388 185L384 186Q383 186 322 41L262 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 174 -213T202 -143H146L93 -141Q82 -134 82 -124ZM418 370L466 495Q464 495 308 420T151 344T204 317T311 267T364 244Q364 247 418 370"],8817:[801,303,778,82,694,"97 54Q82 54 82 72Q82 79 86 84Q95 91 222 153L351 215L398 324L442 433L258 519Q95 597 87 604Q82 608 82 615T88 628T102 635Q107 635 424 484L458 468L524 630Q593 789 597 795Q601 801 609 801Q616 801 622 795T629 781L562 615L493 450L589 406Q665 371 679 362T694 344Q694 339 693 337T677 326T631 302T538 257Q504 241 465 223T406 195T386 186Q384 185 322 39L262 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 174 -213T202 -143H146L93 -141Q82 -134 82 -124Q82 -120 83 -117T89 -110T95 -103H220L273 26Q326 156 326 157L218 106Q109 54 97 54ZM553 379Q480 412 480 415Q479 415 460 372T423 285T406 241Q408 240 516 291T624 344L553 379"],8818:[732,228,778,56,722,"674 732Q682 732 688 726T694 711T687 697Q686 696 417 568L151 442L399 324Q687 188 691 183Q694 177 694 172Q694 154 676 152H670L382 288Q92 425 90 427Q83 432 83 444Q84 455 96 461Q104 465 382 596T665 730Q669 732 674 732ZM56 -194Q56 -107 106 -51T222 6Q260 6 296 -12T362 -56T420 -108T483 -153T554 -171Q616 -171 654 -128T694 -29Q696 6 708 6Q722 6 722 -26Q722 -102 676 -164T557 -227Q518 -227 481 -209T415 -165T358 -113T294 -69T223 -51Q163 -51 125 -93T83 -196Q81 -228 69 -228Q56 -228 56 -202V-194"],8819:[732,228,778,56,722,"90 697Q83 704 83 712T88 726T99 732Q107 732 253 664T543 527T687 457Q694 452 694 442T687 427Q685 425 395 288L107 152H101Q83 154 83 172Q83 173 83 175Q82 182 98 191Q117 201 248 263Q326 300 378 324L626 442L360 568Q91 696 90 697ZM56 -194Q56 -107 106 -51T222 6Q260 6 296 -12T362 -56T420 -108T483 -153T554 -171Q616 -171 654 -128T694 -29Q696 6 708 6Q722 6 722 -26Q722 -102 676 -164T557 -227Q518 -227 481 -209T415 -165T358 -113T294 -69T223 -51Q163 -51 125 -93T83 -196Q81 -228 69 -228Q56 -228 56 -202V-194"],8822:[681,253,778,44,734,"734 181Q734 173 728 167T714 161Q711 161 386 280T54 404Q44 408 44 421Q44 432 52 437Q66 443 388 562T714 681Q721 681 727 675T734 661Q734 651 722 645Q711 639 462 546Q441 539 420 531L122 421L420 311L723 198Q734 192 734 181ZM44 247Q44 255 50 261T63 267Q66 267 391 148T723 24Q734 18 734 7T723 -10Q716 -14 391 -133T63 -253Q56 -253 50 -247T44 -233Q44 -223 55 -217Q67 -210 317 -118Q337 -110 357 -103L655 7L357 117L54 230Q44 236 44 247"],8823:[681,253,778,83,694,"83 661Q83 668 88 674T104 681Q111 679 396 560Q686 437 687 436Q694 431 694 421T687 406Q686 405 543 344T253 222T101 161Q83 163 83 180Q83 194 95 199Q96 199 130 213T232 257T361 311L621 421L357 532Q307 553 233 584Q121 631 102 640T83 661ZM673 267Q694 267 694 248Q694 237 687 232Q684 229 420 118L156 7L416 -103L683 -215Q694 -222 694 -233Q694 -251 676 -253Q670 -253 524 -192T235 -70T90 -8Q83 -1 83 7Q83 19 94 24Q97 25 378 144T667 266Q669 267 673 267"],8828:[580,153,778,83,694,"112 270Q83 270 83 290Q83 301 94 307Q98 310 118 310Q516 310 620 464Q635 486 642 510T651 548T657 571T675 580Q693 577 693 559V552Q684 472 628 410T465 314Q436 303 372 290Q373 290 388 287T425 278T465 266Q674 199 693 28L694 17Q688 5 683 3Q677 0 673 0Q656 0 653 24Q623 270 118 270H112ZM110 116Q83 116 83 136T110 156H113Q134 156 160 155T231 146T318 128T407 95T489 44T550 -30T583 -131Q583 -153 563 -153Q556 -153 553 -152T547 -145T542 -127Q531 -54 478 0Q425 53 333 83T123 116H110"],8829:[580,154,778,83,694,"668 310Q694 310 694 290Q694 285 691 279Q684 271 664 270Q550 268 464 257T301 220T179 146T124 27Q119 0 103 0T83 16Q83 21 83 31T92 68T113 121T157 177T229 231Q295 268 405 290Q404 290 389 293T352 302T312 314Q138 371 96 500Q83 541 83 562Q83 568 89 574T103 580Q115 580 120 570T126 542T138 497T173 442Q289 310 659 310H668ZM194 -131Q201 -60 241 -6T343 82T477 133T628 155Q632 155 644 155T661 156Q685 155 690 147Q694 143 694 136Q694 132 693 129T689 124T685 120T681 117L656 116Q596 114 543 106T436 79T342 35T272 -33T235 -127Q231 -154 212 -154Q203 -153 199 -147T194 -136V-131"],8830:[732,228,778,56,722,"84 442Q84 455 91 459T117 463Q120 463 126 463T137 462Q388 466 512 526T653 705Q657 732 676 732Q685 731 689 725T694 714V708Q689 662 672 624T626 559T569 513T500 479T435 458T373 442Q379 441 404 435T440 426T477 414T533 392Q592 362 630 319T681 241T694 174Q694 153 674 153Q662 153 657 163T652 188T640 231T606 287Q500 416 137 422H114Q104 422 98 423T88 428T84 442ZM56 -194Q56 -107 106 -51T222 6Q260 6 296 -12T362 -56T420 -108T483 -153T554 -171Q616 -171 654 -128T694 -29Q696 6 708 6Q722 6 722 -26Q722 -102 676 -164T557 -227Q518 -227 481 -209T415 -165T358 -113T294 -69T223 -51Q163 -51 125 -93T83 -196Q81 -228 69 -228Q56 -228 56 -202V-194"],8831:[732,228,778,56,722,"84 710Q84 732 102 732Q115 732 119 722T125 696T137 652T171 597Q277 468 640 462H661Q694 462 694 442T661 422H640Q578 421 526 417T415 403T309 376T222 333T156 268T124 179Q122 162 118 158T103 153Q100 153 98 153T95 154T93 155T90 158T85 163Q83 167 83 176Q88 222 105 260T151 325T208 371T277 405T342 426T404 442Q401 443 380 447T345 456T302 469T245 492Q125 551 92 661Q84 695 84 710ZM56 -194Q56 -107 106 -51T222 6Q260 6 296 -12T362 -56T420 -108T483 -153T554 -171Q616 -171 654 -128T694 -29Q696 6 708 6Q722 6 722 -26Q722 -102 676 -164T557 -227Q518 -227 481 -209T415 -165T358 -113T294 -69T223 -51Q163 -51 125 -93T83 -196Q81 -228 69 -228Q56 -228 56 -202V-194"],8832:[705,208,778,82,693,"386 292Q388 292 439 393T543 598T598 703Q599 703 603 704T609 705Q616 705 622 699T629 685T533 494Q440 308 440 305Q451 310 462 312Q547 342 592 388T651 505Q654 525 658 532T673 539Q680 539 686 533T693 519Q693 495 678 450Q638 341 500 283Q433 259 418 259Q416 259 411 251T406 241T415 239Q482 224 544 190Q674 121 691 -10Q693 -28 691 -32Q684 -43 672 -43Q664 -43 658 -37Q656 -33 650 -6T634 47T589 109T500 168Q473 179 436 190T388 201H386L284 -1Q261 -45 232 -101T191 -181T178 -206Q176 -206 172 -207T166 -208Q160 -208 153 -202T146 -188Q146 -185 246 12Q344 206 344 210Q344 213 305 217T213 225T124 228H95Q82 241 82 248Q82 253 95 268H124Q172 268 236 273T343 283T386 292"],8833:[705,208,778,82,693,"103 -43Q96 -43 89 -39T82 -26L84 -10Q105 141 275 212Q342 236 355 236Q360 236 364 245L369 256H360Q284 280 275 283Q115 351 86 490Q82 507 82 517Q82 526 88 532T103 538Q110 538 115 534Q119 531 122 517T128 486T143 444T174 397T231 351T320 310Q371 292 389 292L491 496Q595 701 598 703Q599 703 603 704T609 705Q616 705 622 699T629 685Q629 684 531 485Q431 296 431 288Q431 278 520 273T651 268H680Q693 253 693 248Q693 241 680 228H651Q591 228 491 218T386 201L284 -1Q261 -45 232 -101T191 -181T178 -206Q176 -206 172 -207T166 -208Q160 -208 153 -202T146 -188Q146 -182 302 125L335 190L324 185Q313 185 289 172Q241 153 208 128T159 78T135 31T124 -11T118 -37Q112 -43 103 -43"],8840:[801,303,778,83,693,"146 -283Q146 -282 174 -213T202 -143H115Q102 -127 102 -123T115 -103H220L291 68L278 73Q203 101 153 157T86 288Q83 309 83 344Q83 380 86 399Q107 480 160 539Q222 601 298 621Q328 630 345 631T435 635L526 637L560 715Q587 778 593 789T609 801Q616 801 622 795T629 781Q629 780 625 771T614 742T600 706L571 637Q571 635 626 635H680Q693 620 693 613T689 601L682 597L618 595H553L449 346Q425 288 399 223T359 127T346 95H356Q365 95 381 95T417 94T463 93T515 93H682Q693 82 693 74T680 53H511Q420 55 335 55L329 57L262 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283ZM509 590Q509 595 438 595Q354 595 318 586Q246 567 195 516T126 395Q123 378 123 344T126 293Q141 229 184 181T291 110L306 104L406 346L509 590"],8841:[801,303,778,82,691,"82 606T82 613T95 635H251H348Q408 635 435 632T502 615L515 608L520 617Q520 619 558 708Q584 774 591 787T609 801Q616 801 622 795T629 781Q629 775 562 615L551 590L569 577Q646 527 678 437Q691 398 691 344T678 250Q653 182 597 132T469 64Q427 53 366 53H326L295 -25L262 -103H660Q673 -118 673 -124Q673 -129 669 -136L662 -141L453 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 174 -213T202 -143H95Q82 -128 82 -123T95 -103H220L251 -25L284 53H189L93 55L86 59Q82 64 82 71T95 93H302L400 333Q498 569 498 573L444 590Q431 593 260 595L93 597L86 601Q82 606 82 613ZM652 344V354Q652 451 575 521Q571 526 557 538T537 551Q534 551 533 548Q533 543 438 319L344 95L371 93H386Q487 93 557 150T649 293Q652 309 652 344"],8842:[635,241,778,84,693,"693 72Q693 68 692 66T686 59T680 52H524Q398 52 367 53T309 63Q236 82 180 132T98 250Q84 288 84 343Q84 397 98 437Q126 515 193 568T346 632Q347 632 373 633T440 634T520 635H680Q693 620 693 615Q693 608 680 595H526Q364 595 353 592Q279 582 221 539T138 430Q124 392 124 343Q124 296 138 257Q163 192 221 149T353 95Q364 92 526 92H680Q693 79 693 72ZM102 -132T102 -125T115 -103H382L420 -68Q429 -60 438 -52T452 -39T463 -28T472 -20T478 -14T483 -10T487 -7T490 -6T493 -5T496 -5Q502 -5 508 -12T515 -28Q515 -34 513 -37Q512 -38 507 -42T492 -55T475 -70L440 -101L562 -103H682Q693 -114 693 -122T680 -143H395L355 -179Q289 -241 280 -241Q273 -241 267 -235T260 -221T265 -208T300 -174L335 -143H224L113 -141L106 -137Q102 -132 102 -125"],8843:[635,241,778,82,691,"82 615Q82 620 95 635H251Q378 635 409 634T469 623Q540 605 596 555T678 437Q691 397 691 343T678 250Q649 172 581 119T426 55Q415 52 251 52H95Q93 55 89 59T84 65T82 72Q82 79 95 92H249Q411 92 422 95Q496 105 554 148T638 257Q651 296 651 343Q651 391 638 430Q613 495 555 538T422 592Q411 595 249 595H95Q82 608 82 615ZM82 -132T82 -125T95 -103H380L420 -57Q452 -21 460 -14T474 -6Q482 -6 488 -12T495 -25T451 -81L433 -101L549 -103H662Q673 -114 673 -122T660 -143H395L355 -190Q311 -239 309 -239Q305 -241 302 -241Q294 -241 287 -235T280 -221T324 -163L342 -143H218L93 -141L86 -137Q82 -132 82 -125"],8847:[539,41,778,83,694,"83 523Q87 535 99 539H679Q694 531 694 519Q694 506 679 499H123V-1H678Q694 -7 694 -21Q694 -34 679 -41H98Q93 -38 84 -28L83 247V523"],8848:[539,41,778,64,714,"64 506T64 519T78 539H699Q706 536 714 526V-28Q706 -38 699 -41H78Q64 -34 64 -21Q64 -6 80 -1H674V499H78Q64 506 64 519"],8858:[583,82,778,57,721,"57 250Q57 327 87 392T166 497T270 560T382 582H394Q512 582 610 500Q721 401 721 250Q721 112 626 15T389 -82Q251 -82 154 13T57 250ZM682 129T682 250T596 457T390 543Q269 543 183 457T96 250Q96 132 180 45T389 -43Q511 -43 596 43ZM250 250Q250 316 295 352T384 388Q451 388 489 347T528 250Q528 192 487 152T389 112Q331 112 291 152T250 250ZM488 250Q488 290 460 319T389 349Q348 349 319 320T290 250Q290 208 320 180T389 151Q431 151 459 181T488 250"],8859:[583,82,778,57,721,"57 250Q57 327 87 392T166 497T270 560T382 582H394Q512 582 610 500Q721 401 721 250Q721 112 626 15T389 -82Q251 -82 154 13T57 250ZM682 129T682 250T596 457T390 543Q269 543 183 457T96 250Q96 132 180 45T389 -43Q511 -43 596 43ZM204 339Q204 357 215 366T238 375Q247 375 283 348Q300 336 311 328L368 286Q369 286 366 323T359 398T355 437Q357 456 379 465Q380 465 384 465T391 466Q403 465 412 457T423 437Q423 436 420 398T413 323T410 286L467 328Q476 334 486 341T501 353T513 361T523 368T529 372T535 374T541 375Q554 375 564 365T575 339Q575 325 566 318T519 292Q504 285 496 281L430 250L496 219Q552 192 559 188T572 175Q575 168 575 161Q575 148 566 137T541 126H538Q530 126 499 149Q480 163 467 172L410 214Q409 214 412 177T419 102T423 63Q423 59 421 54T411 43T389 36T368 42T357 54T355 63Q355 64 358 102T365 177T368 214L311 172Q302 165 293 159T279 148T268 140T260 134T254 131T250 128T246 127T242 126T238 126Q223 126 214 135T204 161T213 183T282 219L348 250L282 281Q226 308 219 312T206 325Q204 330 204 339"],8861:[583,82,778,57,721,"57 250Q57 327 87 392T166 497T270 560T382 582H394Q512 582 610 500Q721 401 721 250Q721 112 626 15T389 -82Q251 -82 154 13T57 250ZM682 129T682 250T596 457T390 543Q269 543 183 457T96 250Q96 132 180 45T389 -43Q511 -43 596 43ZM223 250Q223 263 233 267T280 271Q289 271 325 271T389 270H490Q535 270 545 267T555 250Q555 241 549 235Q544 231 527 231T389 230Q239 230 235 232Q223 236 223 250"],8862:[689,0,778,55,722,"71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71ZM369 365V649H95V365H369ZM682 365V649H409V365H682ZM369 40V325H95V40H369ZM682 40V325H409V40H682"],8863:[689,0,778,55,722,"71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71ZM682 365V649H95V365H682ZM682 40V325H95V40H682"],8864:[689,0,778,55,722,"71 0Q59 4 55 16V346L56 676Q64 686 70 689H707Q714 686 722 676V13Q714 3 707 0H71ZM123 649Q147 625 214 555T335 430T389 374L654 649H123ZM95 70Q99 74 229 209T360 345L95 619V70ZM682 70V619L418 346Q417 344 549 207L682 70ZM654 41L400 304L388 315L123 41L256 40H522L654 41"],8865:[689,0,778,55,722,"71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71ZM682 40V649H95V40H682ZM330 345Q330 371 347 388T390 405Q412 405 430 389T448 345Q448 317 430 301T389 285T348 301T330 345"],8872:[695,0,611,55,556,"55 678Q55 679 56 681T58 684T61 688T65 691T70 693T77 694Q88 692 95 679V464H540Q554 456 555 446Q555 442 554 439T552 434T549 430T546 428T542 426T539 424H95V270H539Q540 270 542 269T545 267T549 264T552 260T554 255T555 248Q554 238 540 230H95V15Q88 2 77 0Q73 0 70 1T65 3T61 6T59 9T57 13T55 16V678"],8873:[695,0,722,55,666,"55 678Q55 679 56 681T58 684T61 688T65 691T70 693T77 694Q88 692 95 679V15Q88 2 77 0Q73 0 70 1T65 3T61 6T59 9T57 13T55 16V678ZM249 678Q249 679 250 681T252 684T255 688T259 691T264 693T271 694Q282 692 289 679V367H651Q666 359 666 347Q666 334 651 327H289V15Q282 2 271 0Q267 0 264 1T259 3T255 6T253 9T251 13T249 16V678"],8874:[695,0,889,55,833,"55 678Q55 679 56 681T58 684T61 688T65 691T70 693T77 694Q88 692 95 679V15Q88 2 77 0Q73 0 70 1T65 3T61 6T59 9T57 13T55 16V678ZM237 678Q237 679 238 681T240 684T243 688T247 691T252 693T259 694Q270 692 277 679V15Q270 2 259 0Q255 0 252 1T247 3T243 6T241 9T239 13T237 16V678ZM419 678Q419 679 420 681T422 684T425 688T429 691T434 693T441 694Q452 692 459 679V367H818Q833 359 833 347Q833 334 818 327H459V15Q452 2 441 0Q437 0 434 1T429 3T425 6T423 9T421 13T419 16V678"],8876:[696,1,611,-55,554,"56 681Q70 695 76 695T96 681V368H243L381 530Q521 692 525 692Q537 700 547 688Q554 682 554 674Q554 671 553 669T548 661T539 649T522 631T499 604T465 565T421 512Q296 373 296 368H416H476Q525 368 539 365T554 348Q554 334 543 328H261L96 141V12Q81 -1 75 -1Q65 -1 58 10L56 50V92L18 48Q7 37 -1 28T-13 14T-19 6T-23 1T-27 0T-33 -1Q-42 -1 -48 4T-55 19Q-55 24 -47 34T12 103L56 155V681ZM205 326Q205 328 152 328H96V263Q96 203 98 203Q99 203 123 231T174 290T205 326"],8877:[695,1,611,-55,554,"56 681Q70 695 76 695T96 681V466H327L425 579Q522 692 527 692Q529 693 534 693Q542 693 547 688T553 674Q553 668 549 663Q549 662 538 650T504 611T463 563L381 468L461 466H543Q554 453 554 446T541 426H345L209 272L376 270H543Q554 257 554 251T541 230H174L96 141V12Q81 -1 75 -1Q65 -1 58 10L56 50V92L18 48Q7 37 -1 28T-13 14T-19 6T-23 1T-27 0T-33 -1Q-42 -1 -48 4T-55 19Q-55 24 -47 34T12 103L56 155V681ZM267 399L292 426H96V270H158L201 321Q256 382 267 399ZM118 228L119 229Q119 230 109 230H96V201L107 212Q118 227 118 228"],8878:[695,1,722,-55,665,"56 681Q70 695 77 695T96 683V428L98 175L252 323V681Q264 695 272 695Q278 695 292 681V526Q292 368 296 368Q298 368 447 510Q638 695 642 695H645Q651 695 658 688T665 673Q665 666 661 661Q659 660 639 641T578 582T505 512L356 370L505 368H654Q665 357 665 349Q665 343 652 328H314L303 317L292 308V12Q289 10 285 6T279 1T272 -1Q265 -1 252 12V139Q252 266 249 266L96 119V12Q80 -1 76 -1T70 0T63 6T56 12V79L29 55Q-26 -1 -35 -1Q-42 -1 -48 5T-55 19Q-55 25 -51 30T-15 66Q5 86 18 99L56 135V681"],8879:[695,1,722,-55,665,"56 681Q70 695 77 695T96 683V428L98 175L252 323V681Q264 695 272 695Q278 695 292 681V466H401L503 563L621 679Q637 695 645 695Q652 695 658 688T665 673Q665 670 663 666Q663 665 651 652T611 612T561 563L458 468L556 466H654Q665 455 665 447T652 426H416L294 308L292 288V270H652Q665 255 665 250T652 230H292V12Q289 10 285 6T279 1T272 -1Q265 -1 252 12V139Q252 266 249 266L96 119V12Q80 -1 76 -1T70 0T63 6T56 12V79L29 55Q-26 -1 -35 -1Q-42 -1 -48 5T-55 19Q-55 25 -51 30T-15 66Q5 86 18 99L56 135V681ZM358 426H292V361L325 392L358 426"],8882:[539,41,778,83,694,"694 -26Q686 -40 676 -41H670L382 95Q92 232 90 234Q83 239 83 249Q83 262 96 267Q101 270 379 401T665 537Q671 539 674 539Q686 539 694 524V-26ZM654 11T654 249T653 487T402 369T151 249L275 190Q399 131 524 72T652 11Q654 11 654 249"],8883:[540,41,778,83,694,"83 523Q83 524 85 527T92 535T103 539Q107 539 389 406T680 268Q694 260 694 249Q694 239 687 234Q685 232 395 95L107 -41H101Q90 -40 83 -26V523ZM376 368Q323 393 254 425T155 472L125 487Q123 487 123 249T125 11Q127 12 252 71T502 190L626 249L376 368"],8884:[636,138,778,83,695,"694 71Q686 58 676 56H670L382 192Q92 329 90 331Q83 336 83 346Q83 359 96 364Q101 367 379 498T665 634Q671 636 674 636Q686 636 694 621V71ZM654 108T654 346T653 584T402 466T151 346L275 287Q399 228 524 169T652 108Q654 108 654 346ZM83 -120Q83 -116 84 -113T86 -108T89 -104T92 -102T96 -100T99 -98H678Q679 -98 681 -99T684 -101T688 -104T691 -108T693 -113T694 -120Q692 -130 679 -138H98Q84 -130 83 -120"],8885:[637,138,778,83,695,"83 620Q83 621 85 624T92 632T103 636Q107 636 389 503T680 365Q694 357 694 346Q694 336 687 331Q685 329 395 192L107 56H101Q90 58 83 71V620ZM376 465Q323 490 254 522T155 570L125 584Q123 584 123 346T125 108Q127 109 252 168T502 287L626 346L376 465ZM83 -120Q83 -116 84 -113T86 -108T89 -104T92 -102T96 -100T99 -98H678Q679 -98 681 -99T684 -101T688 -104T691 -108T693 -113T694 -120Q692 -130 679 -138H98Q84 -130 83 -120"],8888:[408,-92,1111,55,1055,"1055 250Q1055 190 1012 141T896 92Q858 92 828 106T781 140T755 180T741 214L738 228V230H405Q71 230 68 232Q55 238 55 250T68 268Q71 270 405 270H738V272L740 280Q742 287 745 297T754 321T771 348T796 374T832 396T881 408H891Q969 408 1012 360T1055 250ZM896 132Q948 132 981 166T1014 250Q1014 301 985 330T920 367Q914 368 891 368Q853 368 816 338T778 250Q778 198 812 165T896 132"],8890:[431,212,556,57,501,"318 -182Q302 -212 280 -212H278H275Q249 -212 239 -182L238 84V351H162L87 352Q57 362 57 391T84 429Q89 431 280 431H470L474 429Q477 427 479 426T484 423T490 417T495 410T499 402T500 391Q500 365 470 352L394 351H318V-182"],8891:[716,0,611,55,555,"56 697Q56 706 62 711T75 716Q86 716 90 709Q91 708 104 680T147 592T199 483L305 261L411 483Q443 548 481 629Q512 694 518 705T535 716Q543 716 549 710T555 700Q555 693 501 577T388 340T325 210Q316 194 305 194Q292 194 285 210Q282 219 224 339T111 574T56 697ZM55 14T55 20T59 31T66 38T71 40H540Q555 32 555 20T540 0H71Q70 0 67 2T59 9"],8892:[716,0,611,54,555,"55 698Q56 708 70 716H540Q554 708 555 698Q555 694 554 691T552 686T549 682T546 680T542 678T539 676H71Q70 676 68 677T65 679T61 682T58 686T56 691T55 698ZM555 18Q554 12 549 6T536 0H535Q525 0 515 17T459 132Q430 194 410 235L305 455L199 233Q176 185 147 125T105 36T90 7Q85 0 75 0Q63 0 58 11Q55 15 55 21Q58 31 170 266T285 507Q295 522 305 522T320 515Q322 513 439 268L555 24V18"],8901:[189,0,278,55,222,"71 0Q59 4 55 16V96L56 176Q59 180 66 187L70 189H209Q219 181 222 174V15Q219 10 209 1L140 0H71"],8903:[545,44,778,55,720,"366 543Q374 545 382 545Q405 545 419 538Q429 534 443 521T462 496Q466 478 466 467Q466 438 444 412Q422 390 388 390Q352 390 331 412Q311 434 311 467Q311 499 331 518Q345 533 366 543ZM146 472Q146 479 153 485T166 492Q171 492 187 476T279 385L386 278L495 385Q600 492 608 492Q615 492 621 486T628 472Q628 467 614 452T531 367L435 270H706Q720 256 720 250Q720 241 706 230H435L531 132Q600 63 614 48T628 27Q628 20 622 14T608 7Q600 7 495 114L386 221L279 114Q204 39 188 23T166 7Q159 7 153 13T146 27Q146 32 160 47T244 132L339 230H68Q55 243 55 250Q55 255 68 270H339L244 367Q175 436 161 451T146 472ZM466 34Q466 4 447 -20T388 -44Q353 -44 331 -22Q311 1 311 34Q311 66 331 85Q347 101 366 110Q374 112 382 112Q405 112 419 105Q429 100 443 87T462 63Q466 45 466 34"],8905:[492,-8,778,146,628,"146 479Q159 492 166 492Q171 492 189 475T279 386L386 279L495 386Q598 492 608 492Q615 492 621 486T628 472Q628 464 522 357L415 250L522 144Q628 37 628 28Q628 21 622 15T608 8Q599 8 495 115L386 221L279 115Q204 40 188 24T166 8Q162 8 160 9T153 15T146 21V479ZM186 77L359 250L186 424V77"],8906:[492,-8,778,146,628,"146 472Q146 479 152 485T166 492Q171 492 189 475T279 386L386 279L495 386Q598 492 608 492Q615 492 628 479V21Q615 8 608 8Q599 8 495 115L386 221L279 115Q204 40 188 24T166 8Q159 8 153 14T146 28Q146 37 253 144L359 250L253 357Q146 464 146 472ZM588 77V424L499 337L415 250L588 77"],8907:[694,23,778,55,722,"55 674Q55 682 62 688T76 694H77Q83 694 100 677T208 561Q320 440 410 342Q462 286 541 201Q677 55 699 30T722 -2Q722 -9 716 -15T701 -22T688 -17Q687 -15 542 141T394 301L388 306L240 146Q119 15 101 -3T75 -22T61 -16T55 -2Q55 4 67 19T158 117Q190 151 209 172L361 336L209 500Q62 657 57 667Q55 671 55 674"],8908:[694,22,778,55,722,"84 -22T76 -22T62 -16T55 -2Q55 4 78 30T249 215Q321 293 367 342Q672 672 683 682Q695 694 702 694Q710 694 716 688T722 674Q722 668 710 653T619 555Q587 521 568 500L416 336L568 172Q715 15 720 5Q722 1 722 -2Q722 -9 716 -15T702 -22H700Q693 -22 671 1T537 146L389 306Q387 304 340 253T237 143T135 33L89 -17Q84 -22 76 -22"],8909:[464,-36,778,56,722,"56 433Q56 464 71 464Q74 464 77 461Q82 454 82 438T91 397T123 347Q166 307 222 307Q264 307 308 331T386 385T465 438T556 463Q631 463 676 408T722 283Q722 250 708 250Q704 250 699 257Q695 265 693 286T682 330Q670 350 655 367Q612 407 556 407Q514 407 470 383T393 329T314 276T222 251Q148 251 102 306T56 433ZM57 56Q57 71 73 76H706Q722 70 722 56Q722 44 707 36H71Q57 43 57 56"],8910:[578,21,760,83,676,"83 558Q83 566 89 572T104 578Q108 578 116 577T146 570T190 555T239 526T286 480Q308 453 325 420T351 358T367 304T376 265T380 251T381 253Q381 262 395 312Q428 434 492 499T642 576Q654 578 655 578Q664 578 670 572T676 558Q676 543 657 540T599 524T525 476Q406 362 400 29V8Q400 -21 380 -21Q369 -21 362 -11Q360 -7 360 12Q360 115 348 200T308 360T231 480T111 537Q83 540 83 558"],8911:[578,22,760,83,676,"104 -22Q95 -22 89 -16T83 -2Q83 11 98 16T135 23T192 46T256 103Q360 233 360 549Q360 554 360 557T361 563T362 567T364 569T367 572T371 576Q377 578 380 578Q401 578 401 547Q401 543 401 537T400 527Q409 53 648 19Q676 16 676 -2Q676 -10 670 -16T655 -22Q654 -22 642 -20Q556 -9 492 56T395 244Q381 294 381 303Q381 305 380 305T374 275T352 201T310 110T234 27T117 -20Q105 -22 104 -22"],8912:[541,41,778,84,694,"84 250Q84 372 166 450T360 539Q361 539 370 539T395 539T430 540T475 540T524 540H679Q694 532 694 520Q694 511 681 501L522 500H470H441Q366 500 338 496T266 472Q244 461 224 446T179 404T139 337T124 250V245Q124 157 185 89Q244 25 328 7Q348 2 366 2T522 0H681Q694 -10 694 -20Q694 -32 679 -40H526Q510 -40 480 -40T434 -41Q350 -41 289 -25T172 45Q84 127 84 250ZM694 134Q694 123 679 114H425H384Q350 114 326 121T277 154Q238 193 238 251Q238 322 295 361Q318 378 339 382T412 387Q423 387 459 387T520 386H679Q694 377 694 366Q694 354 679 346H519Q493 346 458 346T411 347Q360 347 341 342T303 315Q278 287 278 250Q278 210 301 187T351 156Q358 154 519 154H679Q694 146 694 134"],8913:[541,40,778,83,693,"83 520Q83 532 98 540H251Q267 540 297 540T343 541Q427 541 488 525T605 455Q693 374 693 250Q693 165 650 99T545 0T415 -39Q407 -40 251 -40H98Q83 -32 83 -20Q83 -10 96 0H255H308H337Q412 0 439 4T512 28Q533 39 553 54T599 96T639 163T654 250Q654 341 592 411Q557 449 512 472Q468 491 439 495T335 500H306H255L96 501Q83 511 83 520ZM83 366Q83 376 96 386H244Q280 386 317 386T378 386L402 387Q456 387 498 348T540 250Q540 203 512 168T446 120Q427 114 353 114H99Q84 120 84 134Q84 147 98 154H258Q284 154 319 154T366 153Q416 153 436 158T474 185Q500 214 500 250Q500 290 477 313T426 344Q419 346 258 346H98Q83 354 83 366"],8914:[598,22,667,55,611,"88 -21T75 -21T55 -7V200Q55 231 55 280Q56 414 60 428Q61 430 61 431Q77 500 152 549T332 598Q443 598 522 544T610 405Q611 399 611 194V-7Q604 -22 591 -22Q582 -22 572 -9L570 405Q563 433 556 449T529 485Q498 519 445 538T334 558Q251 558 179 518T96 401Q95 396 95 193V-7Q88 -21 75 -21ZM229 -21H227Q215 -21 209 -7V166Q209 304 209 327T215 363Q226 398 259 421T333 444Q380 444 414 416T455 347Q457 339 457 166V-7Q449 -21 439 -21H437H435Q423 -21 417 -7V164Q417 303 417 325T411 358Q387 403 333 403T255 358Q250 347 250 325T249 164V-7Q241 -21 231 -21H229"],8915:[598,22,667,55,611,"591 598H592Q604 598 611 583V376Q611 345 611 296Q610 162 606 148Q605 146 605 145Q586 68 507 23T333 -22Q268 -22 209 -1T106 66T56 173Q55 180 55 384L56 585Q66 598 75 598Q85 598 95 585V378L96 172L98 162Q112 95 181 57T332 18Q415 18 487 58T570 175Q571 180 571 383V583Q579 598 591 598ZM437 598Q450 598 457 583V410Q457 237 455 229Q448 189 414 161T333 132Q291 132 255 157T211 230Q209 237 209 412L210 585Q220 598 229 598Q242 598 249 583V412Q249 273 249 251T255 218Q279 173 333 173T411 218Q416 229 416 251T417 412V583Q425 598 437 598"],8916:[736,22,667,56,611,"76 -22Q64 -22 56 -7V176L57 360L59 370Q66 401 83 426T123 468T171 495T221 513T265 522T298 527L311 528H314V625L315 723Q325 736 334 736Q346 736 354 721V528H356L368 527Q380 526 399 523T441 515T490 498T537 472T578 433T606 379Q611 359 611 171V-7Q604 -21 591 -21T571 -7V170Q571 313 571 337T565 375Q555 408 526 432T461 467T402 482T365 487H354V-7Q347 -21 334 -21T314 -7V487H303Q251 484 207 467Q121 438 99 367L97 357L96 174V-9Q86 -22 76 -22"],8918:[541,41,778,82,694,"86 261Q92 267 381 404T673 541Q680 541 686 535T693 521T689 510Q684 504 418 379L151 250L418 121Q686 -4 689 -10Q693 -14 693 -21T687 -34T675 -41Q668 -41 380 96T86 239Q82 244 82 250Q82 257 86 261ZM610 250Q610 224 592 198T531 172Q498 172 475 195Q453 214 453 250Q453 308 513 328Q515 330 535 330Q569 328 589 304T610 250"],8919:[541,41,778,82,693,"82 521Q82 529 89 535T100 541Q107 541 395 404T689 261Q693 257 693 250T689 239Q684 234 396 97T100 -41Q95 -41 89 -35T82 -21Q82 -12 96 -4Q118 9 358 121L624 250L358 379Q91 503 86 510Q82 514 82 521ZM165 250Q165 282 188 306T239 330Q262 330 275 323Q303 312 318 283Q322 272 322 250Q322 213 300 195Q277 172 246 172Q224 172 213 177Q165 200 165 250"],8920:[568,67,1333,56,1277,"639 -48Q639 -54 634 -60T619 -67H618Q612 -67 536 -26Q430 33 329 88Q61 235 59 239Q56 243 56 250T59 261Q62 266 336 415T615 567L619 568Q622 567 625 567Q639 562 639 548Q639 540 633 534Q632 532 374 391L117 250L374 109Q632 -32 633 -34Q639 -40 639 -48ZM958 -48Q958 -54 953 -60T938 -67H937Q931 -67 855 -26Q749 33 648 88Q380 235 378 239Q375 243 375 250T378 261Q381 266 655 415T934 567L938 568Q941 567 944 567Q958 562 958 548Q958 540 952 534Q951 532 693 391L436 250L693 109Q951 -32 952 -34Q958 -40 958 -48ZM1277 -48Q1277 -54 1272 -60T1257 -67H1256Q1250 -67 1174 -26Q1068 33 967 88Q699 235 697 239Q694 243 694 250T697 261Q700 266 974 415T1253 567L1257 568Q1260 567 1263 567Q1277 562 1277 548Q1277 540 1271 534Q1270 532 1012 391L755 250L1012 109Q1270 -32 1271 -34Q1277 -40 1277 -48"],8921:[568,68,1333,55,1277,"75 -67Q65 -67 60 -61T55 -48Q55 -40 61 -34Q62 -32 329 109L595 250L329 391Q62 532 61 534Q55 540 55 548Q55 562 69 567H77Q81 567 222 493T506 342T653 264Q667 250 653 236Q649 234 504 157T220 7T77 -67H75ZM364 547Q364 563 381 567L384 568Q387 568 518 499T795 353T955 269Q967 261 967 250T955 231Q925 216 780 139T513 -3T383 -67Q373 -67 369 -60T364 -47Q364 -40 370 -34Q373 -31 639 109L904 250L639 391Q373 531 370 534Q364 540 364 547ZM674 538T674 548T681 562T693 567Q699 567 816 505Q915 453 993 412Q1050 382 1132 339Q1241 282 1259 271T1277 250Q1277 241 1263 232Q1246 221 985 84Q698 -67 692 -67Q674 -67 674 -47Q674 -38 680 -33Q683 -30 947 109L1213 250L947 391Q683 530 680 533Q674 538 674 548"],8922:[886,386,778,83,674,"674 445Q674 438 669 432T655 425T369 531T90 640Q83 645 83 655Q83 668 95 673Q644 886 654 886Q662 886 668 880T674 866Q674 856 663 850Q649 843 411 751L160 655L407 560Q474 534 561 501Q646 469 660 462T674 445ZM84 250Q84 260 99 270H658Q674 264 674 250Q674 238 659 230H98Q84 237 84 250ZM83 55Q83 68 94 73Q98 76 104 76Q108 75 383 -30T664 -138Q674 -144 674 -155Q674 -165 667 -170Q664 -173 385 -279T104 -386Q85 -386 83 -368Q83 -354 92 -349Q93 -349 347 -251L597 -155L346 -59Q296 -40 223 -12Q118 28 101 36T83 55"],8923:[886,386,778,83,674,"111 425T102 425T88 431T83 445V446Q83 455 96 461Q111 469 203 504Q287 536 350 560L597 655L346 751Q94 848 92 850Q83 856 83 866Q83 873 88 879T104 886Q109 885 386 779T667 670Q674 665 674 655T667 640Q665 638 388 532ZM84 250Q84 260 99 270H658Q674 264 674 250Q674 238 659 230H98Q84 237 84 250ZM653 76Q656 76 660 75T669 68T674 56Q674 46 665 40Q663 38 411 -59L160 -155L410 -251Q664 -349 665 -349Q674 -354 674 -368Q672 -386 654 -386Q650 -386 371 -279T90 -170Q83 -165 83 -155Q83 -144 93 -138Q645 76 653 76"],8926:[734,0,778,83,694,"113 424Q83 424 83 444Q83 453 96 464H121Q181 466 234 474T341 501T435 545T505 613T542 707Q545 734 564 734Q583 731 583 714Q583 658 560 613T500 538T414 486T321 453T229 434T156 426T113 424ZM112 270Q83 270 83 290Q83 301 94 307Q98 310 118 310Q624 310 653 556Q657 580 675 580Q693 577 693 559V552Q684 472 628 410T465 314Q436 303 372 290Q373 290 388 287T425 278T465 266Q674 199 693 28L694 17L692 14Q691 11 689 8T683 3T673 0Q657 0 653 24Q623 270 118 270H112"],8927:[734,0,778,83,694,"195 713Q195 725 201 729T214 734Q227 734 231 722T238 691T255 641T299 580Q405 474 656 464H681Q694 451 694 443Q694 424 670 424H664Q535 424 415 465T235 595Q195 657 195 713ZM668 310Q694 310 694 290Q694 285 691 279Q684 271 664 270Q550 268 464 257T301 220T179 146T124 27Q119 0 103 0T83 16Q83 21 83 31T92 68T113 121T157 177T229 231Q295 268 405 290Q404 290 389 293T352 302T312 314Q138 371 96 500Q83 541 83 562Q83 568 89 574T103 580Q115 580 120 570T126 542T138 497T173 442Q289 310 659 310H668"],8928:[801,303,778,82,693,"82 344Q82 349 95 364H124Q266 364 398 390L429 397L509 595Q519 619 536 659Q581 766 590 783T609 801Q616 801 622 795T629 781Q629 776 553 595Q533 548 516 506T489 439T480 415Q482 415 505 426T538 444Q632 498 651 601Q654 621 658 628T673 635Q680 635 686 629T693 615Q693 591 678 546Q636 433 484 375L458 364L451 348Q443 332 443 329T455 324Q480 316 503 307T560 277T619 233T664 170T691 86Q693 68 691 64Q684 53 672 53Q664 53 658 59Q657 60 650 97T617 174T538 244Q515 257 476 273T428 289Q425 289 412 256Q381 179 344 90L262 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 174 -213T202 -143H95Q82 -128 82 -123T95 -103H220L302 97Q384 288 384 299Q384 302 341 308T235 319T124 324H95Q82 337 82 344ZM399 338Q403 338 406 346L409 353L375 344Q375 343 384 341T399 338"],8929:[801,303,778,82,694,"146 -283Q146 -282 174 -213T202 -143H95Q82 -127 82 -123T95 -103H220L300 93Q343 196 374 270Q385 294 386 299L373 295Q331 287 289 268Q241 249 208 224T159 174T135 127T124 85T118 59Q112 53 103 53Q91 53 84 64Q82 68 84 86Q96 185 174 248T375 337L400 344Q399 344 381 348T351 355T316 364T276 379T235 398T193 424T155 456T122 497T98 546Q82 587 82 615Q82 622 88 628T102 635Q112 635 116 628T124 601Q128 579 134 562T159 515T207 463T290 418T415 384L422 381L506 586Q571 744 584 772T609 801Q616 801 622 795T629 781T544 577Q525 529 504 478T473 402T462 375Q480 373 500 373Q579 364 651 364H680Q682 361 686 357T691 351T693 344Q693 337 680 324H651Q553 324 451 310L433 308L349 104L262 -101L473 -103H682Q694 -115 694 -123Q694 -133 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283"],8934:[730,359,778,55,719,"86 450Q93 455 380 592T673 730Q680 730 686 724T693 710Q693 702 688 699Q686 693 417 568L151 439L417 310Q685 185 688 179Q693 176 693 168Q693 161 687 155T675 148Q668 148 380 285T86 428Q74 438 86 450ZM55 -205Q55 -175 64 -142T92 -76T145 -22T222 -1Q288 -1 362 -66Q369 -72 372 -75T378 -79T382 -81T384 -79Q389 -74 439 21Q483 100 490 111T504 122Q510 122 518 118T526 103Q526 101 510 69T467 -12T419 -99L413 -112L433 -128Q498 -180 553 -180Q605 -180 646 -139Q672 -112 681 -77T693 -21T706 -1Q719 -1 719 -33Q719 -39 717 -57Q708 -141 655 -190Q625 -224 586 -232Q568 -237 551 -237Q487 -237 413 -172L391 -155Q391 -157 335 -255Q297 -325 286 -342T268 -359Q260 -359 254 -353T248 -339T304 -230L359 -126Q359 -124 337 -107T302 -81Q262 -57 221 -57Q170 -57 130 -93T84 -201Q82 -236 70 -236Q55 -236 55 -205"],8935:[730,359,778,55,719,"88 723Q95 730 99 730Q106 730 394 593T688 450Q693 447 693 439T688 428Q683 423 395 286T99 148Q94 148 88 155T82 168Q82 175 86 179Q89 184 357 310L624 439L357 568Q88 694 86 699Q81 703 81 711T88 723ZM55 -205Q55 -175 64 -142T92 -76T145 -22T222 -1Q288 -1 362 -66Q369 -72 372 -75T378 -79T382 -81T384 -79Q389 -74 439 21Q483 100 490 111T504 122Q510 122 518 118T526 103Q526 101 510 69T467 -12T419 -99L413 -112L433 -128Q498 -180 553 -180Q605 -180 646 -139Q672 -112 681 -77T693 -21T706 -1Q719 -1 719 -33Q719 -39 717 -57Q708 -141 655 -190Q625 -224 586 -232Q568 -237 551 -237Q487 -237 413 -172L391 -155Q391 -157 335 -255Q297 -325 286 -342T268 -359Q260 -359 254 -353T248 -339T304 -230L359 -126Q359 -124 337 -107T302 -81Q262 -57 221 -57Q170 -57 130 -93T84 -201Q82 -236 70 -236Q55 -236 55 -205"],8936:[730,359,778,55,719,"95 419Q81 433 81 439T95 459H124Q318 459 455 501Q515 521 556 550T615 607T641 659T652 702T659 725Q667 730 673 730Q680 730 686 724T693 710Q693 682 677 641Q668 616 654 594T622 554T586 522T545 497T504 477T464 462T428 452T397 444T375 439Q379 437 410 430T476 411T551 379T625 321T677 237Q693 196 693 168Q693 161 687 155T673 148Q662 148 658 154T651 181Q638 253 591 300T455 377Q318 419 124 419H95ZM55 -205Q55 -175 64 -142T92 -76T145 -22T222 -1Q288 -1 362 -66Q369 -72 372 -75T378 -79T382 -81T384 -79Q389 -74 439 21Q483 100 490 111T504 122Q510 122 518 118T526 103Q526 101 510 69T467 -12T419 -99L413 -112L433 -128Q498 -180 553 -180Q605 -180 646 -139Q672 -112 681 -77T693 -21T706 -1Q719 -1 719 -33Q719 -39 717 -57Q708 -141 655 -190Q625 -224 586 -232Q568 -237 551 -237Q487 -237 413 -172L391 -155Q391 -157 335 -255Q297 -325 286 -342T268 -359Q260 -359 254 -353T248 -339T304 -230L359 -126Q359 -124 337 -107T302 -81Q262 -57 221 -57Q170 -57 130 -93T84 -201Q82 -236 70 -236Q55 -236 55 -205"],8937:[730,359,778,55,719,"679 459Q693 445 693 439Q693 430 679 419H651Q455 419 319 377Q231 347 184 300T124 181Q120 161 116 155T102 148Q95 148 89 154T82 168Q82 192 97 237Q111 275 137 306T188 355T249 391T307 414T361 429T399 439Q397 440 364 447T298 467T224 499T149 557T97 641Q82 686 82 710Q82 717 88 723T102 730L115 725Q118 722 124 697Q137 625 184 578T319 501Q456 459 651 459H679ZM55 -205Q55 -175 64 -142T92 -76T145 -22T222 -1Q288 -1 362 -66Q369 -72 372 -75T378 -79T382 -81T384 -79Q389 -74 439 21Q483 100 490 111T504 122Q510 122 518 118T526 103Q526 101 510 69T467 -12T419 -99L413 -112L433 -128Q498 -180 553 -180Q605 -180 646 -139Q672 -112 681 -77T693 -21T706 -1Q719 -1 719 -33Q719 -39 717 -57Q708 -141 655 -190Q625 -224 586 -232Q568 -237 551 -237Q487 -237 413 -172L391 -155Q391 -157 335 -255Q297 -325 286 -342T268 -359Q260 -359 254 -353T248 -339T304 -230L359 -126Q359 -124 337 -107T302 -81Q262 -57 221 -57Q170 -57 130 -93T84 -201Q82 -236 70 -236Q55 -236 55 -205"],8938:[707,208,778,82,693,"693 -30Q686 -41 673 -41Q661 -41 506 34L346 110L280 -44Q228 -162 216 -185T193 -208Q177 -208 173 -192Q173 -186 242 -30T311 128Q271 145 184 186T86 236Q82 240 82 246Q82 251 86 259Q96 267 271 350L449 434L506 565Q537 635 551 664T571 700T582 706Q587 706 593 701T600 690Q600 679 553 572Q504 463 504 461L586 501Q672 539 673 539Q679 539 693 525V-30ZM653 10V488L566 445L480 405L422 276Q415 260 405 236T388 199T376 171T368 151T366 145Q368 143 510 77T653 10ZM422 374Q422 376 420 376T285 313T151 248Q315 168 326 163Q415 356 422 374"],8939:[706,208,778,82,693,"82 525Q96 539 102 539Q103 539 122 530T186 501T266 463L426 388Q428 388 495 541Q564 694 569 699Q573 706 581 706Q587 706 593 702T600 691Q600 676 533 528Q515 486 506 465T485 418T470 381T466 370Q466 369 575 316Q676 269 689 259Q693 253 693 248Q693 242 689 236Q688 235 506 145Q328 63 324 59Q324 50 266 -70Q224 -169 214 -188T193 -208Q177 -208 173 -192Q173 -183 222 -77Q244 -29 257 2T269 34L186 -6Q108 -43 99 -43Q93 -43 82 -30V525ZM271 416Q129 485 126 485H125Q122 485 122 250Q122 10 124 10L211 50L295 92L411 350Q411 351 271 416ZM624 248L449 332L440 319Q434 297 393 214Q353 121 353 119Q355 119 489 182T624 248"],8940:[802,303,778,82,693,"82 -123Q82 -114 93 -103H166L238 -101L293 50Q349 200 349 204L220 266Q166 291 140 304T100 325T84 336T82 344Q82 353 94 360Q112 372 282 453L473 541L482 568Q487 578 529 693Q559 785 569 795Q573 802 581 802Q587 802 593 797T599 786Q599 775 564 675L526 570Q526 568 561 584T633 617T673 635Q679 635 693 621V66Q686 54 679 54Q665 54 526 119Q491 137 458 153T405 177T386 184Q385 182 334 42T282 -101T482 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L473 -143H266L238 -219Q217 -278 210 -290T193 -303Q178 -303 173 -287Q173 -279 198 -214L222 -145Q222 -143 158 -143L93 -141L86 -136Q82 -131 82 -123ZM653 106V584L506 513L453 370Q442 339 428 300T407 243T400 224Q403 222 527 164T653 106ZM453 486Q453 488 451 488T300 417T151 344L224 308Q247 298 285 279T331 257L364 241L453 486"],8941:[801,303,778,82,693,"82 621Q96 635 102 635T249 568L420 486L449 473L469 533Q563 789 569 797Q573 801 581 801Q598 801 600 786Q602 781 544 617L484 455Q531 435 584 408Q677 364 689 355Q693 351 693 344Q693 339 692 337T676 325T631 302T538 257Q504 241 465 223T406 195T386 186Q384 184 333 44T282 -101Q282 -103 482 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L473 -143H266L238 -219Q217 -278 210 -290T193 -303Q178 -303 173 -287Q173 -279 198 -214L222 -145Q222 -143 158 -143L93 -141L86 -136Q82 -131 82 -123Q82 -114 93 -103H166L238 -101L333 159Q326 159 220 106Q110 54 97 54Q89 54 82 66V621ZM298 501Q155 567 142 575L122 584V344Q122 106 124 106Q125 106 180 132T291 185T351 213Q355 217 393 326L433 435Q433 436 298 501ZM549 381Q472 417 471 417L406 241Q408 240 516 291T624 344L549 381"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/MathOperators.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js deleted file mode 100644 index f49fa4b..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{10731:[716,132,667,56,611,"318 709Q325 716 332 716Q340 716 344 713T474 511Q611 298 611 292Q611 285 526 152Q494 103 474 72Q347 -128 344 -130Q340 -132 333 -132T322 -130Q319 -128 257 -31T131 169T60 278Q56 285 56 292Q56 298 60 305Q73 326 194 516T318 709"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/MiscMathSymbolsB.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js deleted file mode 100644 index c2fa68c..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{9733:[694,111,944,49,895,"367 395Q374 416 398 492T442 627T463 688Q463 692 467 692Q471 694 472 694Q478 694 484 680T523 562Q553 469 576 400L577 395H731H819Q872 395 883 394T895 384Q895 380 891 376T832 333Q794 305 767 285Q643 195 643 194L690 47Q737 -96 737 -103Q737 -111 727 -111Q721 -111 594 -18L472 71L350 -18Q223 -111 217 -111Q207 -111 207 -103Q207 -96 254 47L301 194Q301 195 241 239T118 328T51 378Q49 382 49 384Q49 392 58 393T110 395H213H367"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/MiscSymbols.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js deleted file mode 100644 index 9ae48bd..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{8994:[378,-122,778,55,722,"77 122Q68 122 63 126T57 135T55 142Q55 151 68 176T111 235T177 302T271 356T388 378Q451 378 508 355T602 300T668 233T709 174T722 142Q722 124 704 122Q692 122 685 134T658 179T606 243Q511 338 390 338Q354 338 320 329Q251 312 193 263T97 141Q87 123 77 122"],8995:[378,-142,778,54,722,"389 143Q324 143 266 164T171 215T107 277T67 330T55 358T60 371T77 378Q85 377 92 367T116 331T158 280Q256 182 389 182Q475 182 552 227T675 351Q688 378 704 378Q722 376 722 358Q722 352 710 330T670 276T605 215T511 164T389 143"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/MiscTechnical.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js deleted file mode 100644 index 36ad080..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{57350:[430,23,222,-20,240,"91 417Q104 430 111 430T131 417V301L171 341Q201 373 207 378T220 384Q227 384 233 377T240 366Q240 357 187 299L131 244V-10Q116 -23 111 -23T91 -10V201L49 157Q20 127 14 121T0 115Q-8 115 -14 121T-20 132Q-20 139 17 178Q29 191 36 199L91 257V417"],57351:[431,24,389,-20,407,"56 417Q68 431 76 431L89 426L96 419V317L98 215L193 273L291 330V375L293 419Q301 431 311 431Q331 431 331 388L333 355L356 370Q381 384 388 384Q394 384 400 377T407 363Q407 354 367 328L331 308V-10Q316 -23 310 -23Q300 -23 293 -12L291 135V284L98 168L96 77V-12Q84 -24 76 -24L62 -19L58 -12L56 66V144L31 128Q5 114 -2 114Q-8 114 -14 121T-20 136Q-20 142 -14 147T20 170L56 190V417"],57352:[605,85,778,55,719,"477 261Q477 257 473 256T455 253T417 251T348 250H235L155 -77L146 -82Q137 -85 109 -85Q55 -85 55 -77L139 261Q224 596 226 598Q229 603 239 603Q240 603 254 603T290 603T341 604T405 605T477 605Q656 603 687 602T719 596Q719 589 692 588T513 585H319L282 427L242 272Q242 270 351 270Q388 270 410 270T444 269T460 267T469 265T477 261"],57353:[434,6,667,37,734,"228 325Q170 322 156 316T127 309Q108 309 104 314Q99 319 99 322T108 341Q125 376 171 400T268 425H271Q302 425 319 396Q328 377 328 358Q328 332 324 314Q311 270 286 221Q274 194 274 192H275Q339 234 484 325T639 421Q669 434 691 434T723 425T734 406Q734 394 719 381Q715 376 644 330L575 287L566 267Q543 233 526 176Q520 160 515 143T508 115T506 105Q506 103 533 103Q585 103 607 110T641 118Q670 118 670 107Q670 100 661 85Q643 50 598 27T504 3Q465 3 450 36Q441 51 441 73Q441 84 444 96Q452 146 484 205L497 236L324 125Q143 12 135 10Q103 -6 77 -6Q61 -6 49 2T37 21Q37 36 49 46T124 96L195 141L204 156Q219 179 243 248T264 323Q264 325 228 325"],57356:[752,284,778,81,694,"86 472Q93 477 381 614T673 752Q680 752 686 746T693 732T689 721Q686 715 418 590L151 461L418 332Q684 207 689 201Q693 195 693 190Q693 183 687 177T675 170Q668 170 380 307T86 450Q82 454 82 461Q82 467 86 472ZM369 101V126Q369 156 382 156H384Q385 157 386 157Q409 157 409 115V98V54H680Q693 39 693 34T680 14H409V-142H680Q693 -155 693 -162Q693 -167 680 -182H409V-273Q396 -284 388 -284Q382 -284 369 -275V-182H95Q82 -167 82 -162Q82 -155 95 -142H369V14H95Q93 17 89 21T84 27T82 34T83 40T89 47T95 54H369V101"],57357:[752,284,778,81,693,"89 745Q95 752 100 752Q106 752 394 615T689 472Q693 468 693 461T689 450Q684 445 396 308T100 170Q95 170 89 176T82 190Q82 195 86 201Q91 208 358 332L624 461L358 590Q90 715 86 721Q82 725 82 731Q82 739 89 745ZM369 101V126Q369 156 382 156H384Q385 157 386 157Q409 157 409 115V98V54H680Q693 39 693 34T680 14H409V-142H680Q693 -155 693 -162Q693 -167 680 -182H409V-273Q396 -284 388 -284Q382 -284 369 -275V-182H95Q82 -167 82 -162Q82 -155 95 -142H369V14H95Q93 17 89 21T84 27T82 34T83 40T89 47T95 54H369V101"],57358:[919,421,778,82,694,"97 172Q82 172 82 190Q82 197 86 201Q94 209 173 246T327 319T402 357Q405 360 434 448T462 539L278 628Q96 713 86 721Q82 725 82 732T88 745T102 752Q103 752 125 742T198 709T293 666Q342 642 385 622T453 590T478 579Q479 579 506 659T562 824T598 915Q602 919 609 919T622 913T629 901Q629 898 571 728Q546 656 531 608T518 559Q555 539 602 519Q664 488 679 479T694 461Q694 457 689 450Q680 443 616 413T494 356T435 326L389 190L342 57L513 55H682Q694 43 694 34Q694 28 689 21L682 17L506 15H329L322 -8Q320 -13 310 -41T295 -85L275 -141H680Q682 -143 684 -146T688 -151T691 -156T693 -162Q693 -172 682 -179L473 -181H262L220 -303Q192 -388 185 -404T166 -421Q160 -421 153 -415T146 -403Q146 -400 179 -302T220 -185Q220 -181 158 -181L93 -179L86 -174Q82 -169 82 -161Q82 -152 93 -141H164L233 -139L260 -63L286 15H189L93 17L86 21Q82 26 82 34Q82 44 93 55H198L300 57L342 179Q350 204 361 238T378 286T382 301L246 237Q111 172 97 172ZM624 461Q621 464 560 492Q512 518 503 518Q500 518 500 517Q499 513 488 479T465 413T453 379L624 461"],57359:[801,303,778,82,694,"97 54Q82 54 82 72Q82 79 86 84Q95 91 222 153L351 215L398 324L442 433L258 519Q95 597 87 604Q82 608 82 615T88 628T102 635Q107 635 424 484L458 468L524 630Q593 789 597 795Q601 801 609 801Q616 801 622 795T629 781L562 615L493 450L589 406Q665 371 679 362T694 344Q694 339 693 337T677 326T631 302T538 257Q504 241 465 223T406 195T386 186Q383 185 344 92T306 -3L486 81Q662 168 673 168Q680 168 686 162T693 148T689 137Q688 136 482 35L280 -59L233 -176Q184 -291 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -279 185 -186T224 -90Q225 -88 223 -88Q219 -88 193 -101Q109 -143 98 -143Q82 -138 82 -122Q82 -116 85 -113T108 -98T171 -67L249 -30L289 61Q297 81 307 107T321 144T326 157L218 106Q109 54 97 54ZM553 379Q480 412 480 415Q479 415 460 372T423 285T406 241Q408 240 516 291T624 344L553 379"],57360:[801,303,778,81,694,"102 168Q103 168 151 146T247 102T295 81Q299 85 322 144T344 206L218 268Q153 297 123 313T87 333T82 344T86 355Q104 369 291 455Q491 552 491 553L542 673Q581 767 590 784T609 801Q616 801 622 795T629 781Q629 773 586 677Q546 581 546 577L609 606Q669 635 673 635Q680 635 686 629T693 615Q693 610 692 608T670 593T604 561L524 521L400 226L542 157Q617 123 649 107T687 85T694 72Q694 66 690 60T679 54Q665 54 526 119Q394 186 386 186Q385 186 342 88L331 61L509 -23Q680 -105 688 -111Q693 -115 693 -122T688 -135T675 -141H673Q664 -141 491 -59Q320 21 316 21H315L249 -136Q183 -293 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 154 -261T181 -197T213 -119L280 41Q280 46 186 86Q157 101 121 119Q92 133 87 136T82 148Q82 155 88 161T102 168ZM418 370L466 495Q464 495 308 420T151 344T204 317T311 267T364 244Q364 247 418 370"],57361:[919,421,778,82,694,"82 34Q82 44 93 55H198L300 57L342 179Q351 207 362 238T378 286T384 303T238 377Q109 435 86 450Q82 454 82 460T86 472Q90 476 302 579L511 679Q512 679 553 795Q569 842 577 866T592 903T600 917T608 919Q615 919 622 912T629 901Q629 899 595 799Q589 777 581 753T569 717T564 703L618 728Q666 752 673 752T686 746T693 732Q693 723 683 717T615 683L546 650L491 488Q464 410 450 368T438 326Q493 297 562 266Q660 219 677 209T694 190Q694 183 690 177T678 171Q664 171 546 228L424 286Q422 286 382 172L342 57L513 55H682Q694 43 694 34Q694 28 689 21L682 17L506 15H329L322 -8Q320 -13 310 -41T295 -85L275 -141H680Q682 -143 684 -146T688 -151T691 -156T693 -162Q693 -172 682 -179L473 -181H262L220 -303Q192 -388 185 -404T166 -421Q160 -421 153 -415T146 -403Q146 -400 179 -302T220 -185Q220 -181 158 -181L93 -179L86 -174Q82 -169 82 -161Q82 -152 93 -141H164L233 -139L260 -63L286 15H189L93 17L86 21Q82 26 82 34ZM495 623Q495 626 493 626T321 544T151 461L398 343Q399 343 405 360T423 415T446 483Q457 513 469 551T488 606T495 623"],57366:[828,330,778,82,694,"82 -6Q82 1 95 14H262L295 94Q331 171 331 174Q324 175 312 178T267 194T206 227T146 283T98 368Q84 406 84 461T98 554Q126 632 194 685T349 750Q360 752 480 752H591L604 783Q620 819 624 821Q631 828 640 828Q653 825 658 810Q658 808 646 781L635 754Q635 752 658 752Q680 752 686 746Q693 739 693 732Q693 728 692 726T686 719T680 712H615L506 466Q479 407 451 344T408 248T393 214Q393 210 535 210H680Q693 194 693 190T680 170H373L340 92L304 14H680Q693 1 693 -6Q693 -11 680 -26H286L253 -103L218 -179L451 -181H682Q694 -193 694 -201Q694 -212 682 -219L440 -221H200L178 -270Q160 -309 154 -319T139 -330Q122 -330 118 -312L155 -223Q155 -221 126 -221H95Q82 -206 82 -201T95 -181H175L206 -108Q237 -35 242 -30Q242 -26 169 -26H95Q82 -11 82 -6ZM571 710Q571 712 469 712Q443 712 416 712T371 711T351 710Q279 700 221 656T138 548Q124 508 124 461T138 374Q186 245 351 212L460 459Q571 709 571 710"],57367:[752,332,778,81,694,"82 -14T82 -7T95 15H431L529 170H435Q341 170 333 175Q149 218 98 368Q84 406 84 461Q84 515 98 555Q126 633 193 686T346 750Q347 750 373 750T440 751T520 752H680Q693 739 693 732Q693 727 680 712H526Q364 712 353 710Q268 700 207 646T126 512Q123 496 123 461T126 410Q141 350 180 304T280 232Q312 217 344 214T464 210H555L589 261Q613 301 620 311T635 321Q644 321 650 315T657 301Q657 296 651 286T630 252T604 212Q604 210 642 210H680Q693 197 693 190Q693 186 692 184T686 177T680 170H578L526 92L478 17L580 15H682Q693 4 693 -4T680 -25H451L353 -179L518 -181H682Q694 -193 694 -201Q694 -211 682 -219L504 -221H326L293 -272Q257 -332 246 -332Q238 -332 232 -326T225 -313Q225 -310 226 -308Q226 -305 251 -265T278 -223Q278 -221 186 -221H95Q93 -218 89 -214T84 -208T82 -201T95 -181H306L404 -25H249L93 -23L86 -19Q82 -14 82 -7"],57368:[828,330,778,82,694,"82 732Q82 739 95 752H251H348Q420 752 460 744T551 708Q566 697 566 701Q618 815 624 821Q631 828 640 828Q653 825 658 810L600 677Q600 671 615 656T653 605T689 517Q692 496 692 461T689 406Q668 325 615 266Q572 221 513 196T391 170H373L340 92L304 14H680Q693 1 693 -6Q693 -11 680 -26H286L253 -103L218 -179L451 -181H682Q694 -193 694 -201Q694 -212 682 -219L440 -221H200L178 -270Q160 -309 154 -319T139 -330Q122 -330 118 -312L155 -223Q155 -221 126 -221H95Q82 -206 82 -201T95 -181H175L206 -108Q237 -35 242 -30Q242 -26 169 -26H95Q82 -11 82 -6Q82 1 95 14H262L295 92L331 170H95Q93 172 91 175T87 180T84 185T82 191Q82 199 93 210H220L349 212L549 659Q507 692 462 702T338 712H249H95Q82 727 82 732ZM652 473Q652 513 636 552T603 611T582 632Q581 632 487 422T393 210Q424 210 460 220T535 253T605 316T649 410Q652 427 652 461V473"],57369:[752,333,778,82,693,"82 732Q82 739 95 752H251Q415 752 426 750Q539 736 615 657Q667 599 689 517Q692 496 692 461T689 406Q668 325 615 266Q522 170 382 170H355L326 95Q319 80 311 59T298 28T293 17Q293 15 486 15H680Q693 0 693 -6T680 -25H275L213 -179L449 -181H682Q693 -192 693 -199T680 -221H198L178 -270Q153 -333 139 -333Q132 -333 126 -327T119 -314T135 -266T153 -223Q153 -221 124 -221H95Q82 -207 82 -201T95 -181H171L233 -25H162L93 -23L86 -19Q82 -14 82 -7T95 15H251L313 170H202L93 172L86 177Q82 182 82 190Q82 199 93 210H211L329 212L349 261Q366 301 372 311T386 321Q392 321 399 315T407 302Q407 295 390 254T373 210Q374 209 377 209Q412 209 444 217Q512 231 564 273T638 377Q651 414 651 461Q651 509 638 548Q613 613 555 656T422 710Q411 712 249 712H95Q82 727 82 732"],57370:[634,255,778,84,694,"693 -115T693 -122T680 -144H315L269 -199Q221 -255 213 -255H212Q203 -255 197 -248T193 -231Q195 -225 229 -184L262 -144H186L113 -142L106 -137Q102 -130 102 -125Q102 -119 115 -104H298L426 52H386Q342 54 309 63Q236 79 180 129T98 249Q84 289 84 343Q84 398 98 436Q126 514 193 567T346 632Q347 632 373 632T440 633T520 634H680Q682 631 686 627T691 621T693 614T680 594H526Q364 594 353 592Q268 581 207 528T126 394Q123 378 123 343T126 292Q141 231 181 185T280 114Q329 92 415 92H462L506 147Q554 203 562 203H563Q572 203 578 196T582 178Q579 173 546 132L513 94L598 92H682Q693 81 693 73T680 52H480L349 -102L515 -104H682Q693 -115 693 -122"],57371:[634,254,778,82,691,"82 610T82 614T83 620T89 627T95 634H251Q378 634 409 633T469 623Q540 604 596 554T678 436Q691 397 691 343T678 249Q653 181 597 131T469 63Q427 52 362 52H315L213 -102L438 -104H662Q673 -115 673 -123Q673 -129 660 -144H186L151 -197Q114 -250 109 -253Q106 -254 104 -254Q100 -254 98 -253Q91 -253 87 -248T82 -235Q82 -230 109 -186L138 -144H115Q82 -144 82 -125Q82 -119 95 -104H166L266 49Q266 52 182 52H95Q82 65 82 72Q82 76 83 78T89 85T95 92H295L329 143Q365 195 369 198Q372 203 380 203Q385 203 391 197T398 185Q398 184 398 184L399 182Q399 175 369 129L344 94Q344 92 376 92Q402 92 422 94Q496 104 554 147T638 256Q651 295 651 343Q651 390 638 429Q613 494 555 537T422 592Q411 594 249 594H95Q82 610 82 614"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/PUA.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js deleted file mode 100644 index fd8970c..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{710:[845,-561,2333,-14,2346,"1 561Q-3 563 -6 577T-12 604L-14 618Q-14 625 -7 628T23 635Q31 636 36 637Q63 641 621 745Q1148 845 1165 845Q1167 845 1752 739L2338 630Q2346 630 2346 618Q2340 565 2332 561Q2329 561 1749 654Q1617 675 1466 699T1241 736T1167 748Q1165 748 1093 737T867 700T583 654Q3 561 1 561"],732:[899,-628,2333,1,2330,"804 788Q717 788 606 772T397 732T213 685T75 645T18 628Q11 628 11 632Q8 637 4 668T2 704Q2 713 36 732Q55 739 242 795Q622 898 826 898Q893 898 947 895Q1009 887 1056 872T1187 819Q1286 776 1356 758T1527 739Q1614 739 1725 755T1934 795T2118 842T2256 882T2313 899Q2320 899 2320 895Q2323 890 2327 860T2329 824Q2329 818 2296 795Q2273 787 2089 732Q1810 657 1598 632Q1562 629 1492 629Q1389 629 1320 644T1144 708Q1048 751 977 769T804 788"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/SpacingModLetters.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js b/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js deleted file mode 100644 index bae5cab..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_AMS,{10846:[813,97,611,54,555,"55 795Q56 806 70 813H540Q554 806 555 795Q555 791 554 788T552 783T549 779T546 777T542 775T539 773H71Q70 773 68 774T65 776T61 779T58 783T56 788T55 795ZM55 601Q56 612 70 619H540Q554 612 555 601Q555 597 554 594T552 589T549 585T546 583T542 581T539 579H71Q70 579 68 580T65 582T61 585T58 589T56 594T55 601ZM75 -97Q67 -97 61 -91T55 -81Q55 -71 169 166T285 410Q295 425 305 425Q311 425 316 422T323 414L325 410Q327 404 441 167T555 -81Q555 -85 549 -91T535 -97T520 -90Q519 -89 506 -61T463 27T411 136L305 358L199 136Q167 71 129 -10Q98 -75 92 -86T75 -97"],10877:[636,138,778,83,694,"674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM94 170Q102 172 104 172Q110 171 254 103T535 -30T678 -98Q694 -106 694 -118Q694 -136 676 -138H670L382 -2Q92 135 90 137Q83 142 83 154Q84 164 94 170"],10878:[636,138,778,82,694,"83 616Q83 624 89 630T99 636Q107 636 253 568T543 431T687 361Q694 356 694 346T687 331Q685 329 395 192L107 56H101Q83 58 83 76Q83 77 83 79Q82 86 98 95Q117 105 248 167Q326 204 378 228L626 346L360 472Q291 505 200 548Q112 589 98 597T83 616ZM674 172Q692 172 694 154Q694 142 687 137Q685 135 395 -2L107 -138H101Q83 -136 83 -118Q83 -106 96 -100Q100 -98 380 35T665 170T674 172"],10885:[762,290,778,55,722,"667 761Q669 762 673 762Q682 762 688 756T694 741Q694 731 687 727Q684 724 420 613L156 502L416 392Q476 367 544 338T647 295T682 280Q694 274 694 262Q694 244 676 242Q670 242 524 303T235 425T90 487Q83 493 83 501Q83 514 94 519Q97 520 378 639T667 761ZM55 -23Q55 43 103 90T223 138Q265 138 316 114Q342 100 393 68L443 36Q502 0 554 0Q609 0 650 32T694 109Q694 138 708 138Q710 138 713 136T719 127T722 108Q722 37 673 -9T557 -56Q514 -56 468 -35T387 13T308 60T223 82Q167 82 127 50T83 -27Q81 -56 69 -56Q55 -56 55 -23ZM55 -257Q55 -191 103 -144T223 -96Q265 -96 316 -120Q342 -134 393 -166L443 -198Q502 -234 554 -234Q609 -234 650 -202T694 -125Q694 -96 708 -96Q710 -96 713 -98T719 -107T722 -126Q722 -197 673 -243T557 -290Q514 -290 468 -269T387 -221T308 -174T223 -152Q167 -152 127 -184T83 -261Q80 -290 69 -290Q55 -290 55 -257"],10886:[762,290,778,55,722,"90 727Q83 734 83 743Q83 751 89 756T104 762Q111 760 396 641Q686 518 687 517Q694 512 694 502T687 487Q686 486 543 425T253 303T101 242Q83 244 83 262Q83 274 95 280Q96 280 130 294T232 338T361 392L621 502L357 613Q93 724 90 727ZM55 -23Q55 43 103 90T223 138Q265 138 316 114Q342 100 393 68L443 36Q502 0 554 0Q609 0 650 32T694 109Q694 138 708 138Q710 138 713 136T719 127T722 108Q722 37 673 -9T557 -56Q514 -56 468 -35T387 13T308 60T223 82Q167 82 127 50T83 -27Q81 -56 69 -56Q55 -56 55 -23ZM55 -257Q55 -191 103 -144T223 -96Q265 -96 316 -120Q342 -134 393 -166L443 -198Q502 -234 554 -234Q609 -234 650 -202T694 -125Q694 -96 708 -96Q710 -96 713 -98T719 -107T722 -126Q722 -197 673 -243T557 -290Q514 -290 468 -269T387 -221T308 -174T223 -152Q167 -152 127 -184T83 -261Q80 -290 69 -290Q55 -290 55 -257"],10887:[636,241,778,82,694,"380 497Q445 528 522 564T636 618T673 635Q680 635 686 628T693 615T689 603Q686 599 418 472L151 343L418 215Q686 88 689 83Q693 79 693 72T687 59T675 52Q669 52 381 189T86 332Q82 337 82 344Q82 350 86 355Q91 359 380 497ZM82 -130T82 -124T95 -103H380L431 -54Q476 -6 486 -6Q491 -6 498 -12T505 -27Q505 -28 505 -29T504 -32Q503 -33 498 -38T485 -53T469 -70L438 -103H680Q682 -106 686 -110T691 -116T693 -123Q693 -130 680 -143H398L346 -192Q300 -241 291 -241Q271 -241 271 -221Q271 -209 306 -179L340 -143H95Q82 -130 82 -124"],10888:[635,241,778,82,693,"82 614Q82 620 86 625T94 632T100 635Q106 635 394 498T689 355Q693 349 693 343Q693 338 689 332Q683 327 395 190T100 52Q95 52 89 58T82 72Q82 80 95 88Q114 99 358 215L624 343L358 472Q89 599 86 603Q82 607 82 614ZM82 -130T82 -124T95 -103H380L431 -54Q476 -6 486 -6Q491 -6 498 -12T505 -27Q505 -28 505 -29T504 -32Q503 -33 498 -38T485 -53T469 -70L438 -103H680Q682 -106 686 -110T691 -116T693 -123Q693 -130 680 -143H398L346 -192Q300 -241 291 -241Q271 -241 271 -221Q271 -209 306 -179L340 -143H95Q82 -130 82 -124"],10889:[761,387,778,57,718,"86 512Q93 518 381 639T673 761Q680 761 686 755T693 741Q693 733 688 730Q685 723 419 612L155 501L419 390Q685 277 688 272Q693 269 693 261Q693 254 687 248T675 241Q669 241 381 362T86 490Q74 500 86 512ZM70 -59Q57 -59 57 -24Q57 40 104 87Q116 102 146 118Q186 136 231 136Q232 136 242 135T258 133T276 128T302 118T334 101T377 74Q386 69 396 63T411 53T417 50Q435 87 453 134Q491 223 495 227Q498 230 505 230Q513 230 519 225T526 212Q526 203 491 118T453 30Q453 22 489 10T553 -3Q589 -3 622 14Q653 28 669 50T688 90T694 122T706 136Q718 136 718 114Q718 113 718 109T717 103Q717 31 668 -14T554 -60Q529 -60 499 -50T451 -32T433 -24Q431 -24 404 -90T375 -157Q375 -159 402 -178T473 -218T553 -239Q599 -239 641 -211T691 -130Q694 -99 706 -99T718 -122Q718 -123 718 -127T717 -133Q717 -204 668 -249T559 -295Q512 -295 470 -275T355 -206L322 -290Q313 -310 304 -332T289 -367T282 -382Q277 -387 270 -387Q262 -387 255 -382T248 -368Q248 -361 322 -186Q311 -177 280 -166T222 -155Q189 -155 153 -173Q122 -186 106 -208T87 -248T82 -280T71 -294Q57 -294 57 -259Q57 -195 104 -148Q122 -126 155 -113T220 -99Q245 -99 276 -109T324 -127T342 -135Q397 -2 397 1Q386 10 367 23T302 58T222 80Q175 80 132 52T84 -28Q82 -59 70 -59"],10890:[761,387,778,57,718,"86 730Q81 734 81 740Q81 747 88 754T99 761Q103 761 392 640T688 512Q693 509 693 501T688 490Q682 484 394 363T99 241Q94 241 88 248T82 261Q82 268 86 272Q89 277 355 390L619 501L355 612Q89 723 86 730ZM70 -59Q57 -59 57 -24Q57 40 104 87Q116 102 146 118Q186 136 231 136Q232 136 242 135T258 133T276 128T302 118T334 101T377 74Q386 69 396 63T411 53T417 50Q435 87 453 134Q491 223 495 227Q498 230 505 230Q513 230 519 225T526 212Q526 203 491 118T453 30Q453 22 489 10T553 -3Q589 -3 622 14Q653 28 669 50T688 90T694 122T706 136Q718 136 718 114Q718 113 718 109T717 103Q717 31 668 -14T554 -60Q529 -60 499 -50T451 -32T433 -24Q431 -24 404 -90T375 -157Q375 -159 402 -178T473 -218T553 -239Q599 -239 641 -211T691 -130Q694 -99 706 -99T718 -122Q718 -123 718 -127T717 -133Q717 -204 668 -249T559 -295Q512 -295 470 -275T355 -206L322 -290Q313 -310 304 -332T289 -367T282 -382Q277 -387 270 -387Q262 -387 255 -382T248 -368Q248 -361 322 -186Q311 -177 280 -166T222 -155Q189 -155 153 -173Q122 -186 106 -208T87 -248T82 -280T71 -294Q57 -294 57 -259Q57 -195 104 -148Q122 -126 155 -113T220 -99Q245 -99 276 -109T324 -127T342 -135Q397 -2 397 1Q386 10 367 23T302 58T222 80Q175 80 132 52T84 -28Q82 -59 70 -59"],10891:[1003,463,778,83,694,"674 1003Q681 1003 687 999T694 983Q694 973 683 967Q669 959 420 868L162 772L422 676Q683 579 685 577Q694 571 694 560Q694 550 687 546T673 541Q669 542 384 647T93 755Q83 760 83 772Q83 783 91 788Q98 791 383 897T674 1003ZM84 354T84 367T98 387H679Q694 379 694 367Q694 354 679 347H98Q84 354 84 367ZM84 160T84 173T98 193H679Q694 185 694 173Q694 160 679 153H98Q84 160 84 173ZM94 -3Q102 -1 104 -1Q107 -2 392 -107T684 -215Q694 -219 694 -232Q694 -241 687 -247Q686 -248 395 -357Q106 -463 101 -463Q83 -461 83 -443Q83 -431 94 -426Q97 -423 357 -328L615 -232L355 -136Q94 -39 92 -37Q83 -31 83 -21Q83 -9 94 -3"],10892:[1003,463,778,83,694,"104 541Q98 541 91 545T83 560Q83 571 92 577Q94 579 355 676L615 772L357 868Q108 959 94 967Q83 973 83 983Q83 989 87 996T104 1003Q109 1002 396 896T687 787Q694 781 694 772Q694 759 684 755Q678 752 393 647T104 541ZM84 367Q84 380 98 387H679Q694 379 694 367Q694 356 680 348L390 347H100Q84 352 84 367ZM84 173Q84 188 100 193H680Q694 183 694 173Q694 160 679 153H98Q84 160 84 173ZM674 -1Q682 -1 688 -6T694 -20Q694 -31 685 -37Q683 -39 422 -136L162 -232L420 -328Q680 -423 683 -426Q694 -431 694 -443Q694 -461 676 -463Q671 -463 382 -357Q91 -248 90 -247Q83 -242 83 -232Q83 -220 93 -215Q667 -1 674 -1"],10901:[636,138,778,83,694,"674 636Q682 636 688 631T694 616Q694 605 687 601Q685 599 395 462L107 326H101Q83 328 83 345Q83 358 96 365Q102 367 382 500T665 634Q671 636 674 636ZM674 442Q692 442 694 424Q694 412 687 407Q686 406 417 278L151 152L399 34Q687 -102 691 -107Q694 -113 694 -118Q694 -136 676 -138H670L382 -2Q92 135 90 137Q83 142 83 154Q84 165 96 171Q104 175 382 306T665 440Q669 442 674 442"],10902:[636,138,778,83,694,"83 616Q83 624 89 630T99 636Q107 636 253 568T543 431T687 361Q694 354 694 346Q694 328 676 326H670L382 462Q317 493 226 535Q119 585 101 595T83 616ZM94 440Q102 442 104 442Q110 441 254 373T535 240T678 172Q679 172 680 171Q694 164 694 153T687 137Q685 135 395 -2L107 -138H101Q83 -136 83 -118Q83 -106 93 -101L128 -84Q163 -68 230 -36T361 26L626 152L360 278Q91 406 90 407Q83 412 83 424Q84 434 94 440"],10933:[752,286,778,82,693,"653 734Q653 738 660 745T673 752T686 745T693 723Q672 555 466 485Q390 463 378 463Q373 463 373 461Q373 458 378 458Q390 458 466 436Q562 404 620 350Q682 283 693 198Q693 183 686 176Q681 170 674 170T660 176T653 187Q653 192 652 200T646 228T631 265T602 307T555 350Q435 431 151 441H95Q82 454 82 460T95 481H151Q165 482 197 483T238 485Q427 500 528 554T649 707Q653 729 653 734ZM82 33Q82 37 83 40T89 47T95 54H473L520 105Q569 156 571 156Q573 157 578 157Q586 157 592 151T598 136Q598 130 562 92L526 56L604 54H682Q693 43 693 35Q693 31 692 28T686 21T680 14H489L342 -139L513 -142H682Q693 -148 693 -160Q693 -167 680 -182H304L258 -230Q248 -240 237 -251T221 -268T211 -278T203 -284T197 -286Q189 -286 184 -280T178 -264Q178 -257 213 -219L249 -182H171L93 -179L86 -175Q82 -170 82 -163Q82 -155 95 -142H289L360 -64L433 14H262L93 16Q82 23 82 33"],10934:[752,286,778,82,693,"693 466T693 460T680 441H624Q608 439 577 438T538 436Q349 421 248 367T126 214Q122 192 122 187Q122 183 116 177T102 170Q95 170 89 176Q82 183 82 198Q93 283 155 350Q213 404 309 436Q385 458 398 458Q402 458 402 461Q402 463 398 463Q385 463 309 485Q103 555 82 723Q82 738 89 745T102 752T115 745T122 734Q122 721 126 701T155 640T220 572Q340 490 624 481H680Q693 466 693 460ZM82 33Q82 37 83 40T89 47T95 54H473L520 105Q569 156 571 156Q573 157 578 157Q586 157 592 151T598 136Q598 130 562 92L526 56L604 54H682Q693 43 693 35Q693 31 692 28T686 21T680 14H489L342 -139L513 -142H682Q693 -148 693 -160Q693 -167 680 -182H304L258 -230Q248 -240 237 -251T221 -268T211 -278T203 -284T197 -286Q189 -286 184 -280T178 -264Q178 -257 213 -219L249 -182H171L93 -179L86 -175Q82 -170 82 -163Q82 -155 95 -142H289L360 -64L433 14H262L93 16Q82 23 82 33"],10935:[761,294,778,57,717,"82 494T82 501T95 521H171Q405 527 511 569Q630 618 651 732Q652 734 653 740T655 748T658 754T663 759T672 761L686 754Q693 747 693 734Q684 668 648 623Q627 591 573 557T442 507L417 501Q428 496 442 494Q520 478 573 444T648 378Q684 333 693 267Q693 254 686 247Q673 234 659 245Q657 247 651 269Q630 383 511 432Q406 474 171 481H95Q82 494 82 501ZM70 -59Q57 -59 57 -26Q57 30 90 73T177 132Q191 136 226 136Q228 136 239 136T253 135T267 132T287 125T311 113T346 95T391 67Q462 20 502 5Q519 1 553 1Q586 1 602 5Q641 18 664 45T691 107Q694 136 704 136Q717 136 717 115V105Q717 39 671 -9T554 -58Q518 -58 481 -43T382 14Q302 63 273 74Q255 78 222 78Q188 78 173 74Q90 46 84 -28Q82 -59 70 -59ZM71 -294Q57 -294 57 -262Q57 -205 90 -162T177 -104Q191 -99 226 -99Q266 -103 277 -106Q310 -119 391 -168Q455 -212 502 -231Q519 -235 553 -235Q586 -235 602 -231Q640 -218 661 -195T686 -151T693 -115T704 -99Q717 -99 717 -121V-131Q717 -198 671 -246T556 -294Q519 -294 482 -279T382 -222Q307 -175 273 -162Q255 -157 222 -157Q188 -157 173 -162Q133 -175 110 -201T84 -264Q82 -294 71 -294"],10936:[761,294,778,57,717,"693 501Q693 493 679 481H604Q369 474 264 432Q143 382 124 269Q116 246 115 245Q101 234 88 247Q82 254 82 267Q89 329 126 378Q147 410 201 444T333 494L357 501Q354 502 340 505T318 510T295 516T269 525T243 535T215 548T188 565Q142 599 126 623Q89 672 82 734Q82 761 102 761L115 756Q116 755 124 732Q143 619 264 569Q371 527 604 521H679Q693 507 693 501ZM70 -59Q57 -59 57 -26Q57 30 90 73T177 132Q191 136 226 136Q228 136 239 136T253 135T267 132T287 125T311 113T346 95T391 67Q462 20 502 5Q519 1 553 1Q586 1 602 5Q641 18 664 45T691 107Q694 136 704 136Q717 136 717 115V105Q717 39 671 -9T554 -58Q518 -58 481 -43T382 14Q302 63 273 74Q255 78 222 78Q188 78 173 74Q90 46 84 -28Q82 -59 70 -59ZM71 -294Q57 -294 57 -262Q57 -205 90 -162T177 -104Q191 -99 226 -99Q266 -103 277 -106Q310 -119 391 -168Q455 -212 502 -231Q519 -235 553 -235Q586 -235 602 -231Q640 -218 661 -195T686 -151T693 -115T704 -99Q717 -99 717 -121V-131Q717 -198 671 -246T556 -294Q519 -294 482 -279T382 -222Q307 -175 273 -162Q255 -157 222 -157Q188 -157 173 -162Q133 -175 110 -201T84 -264Q82 -294 71 -294"],10937:[761,337,778,57,718,"82 494T82 501T95 521H171Q256 523 317 528T441 548T543 584T613 644T651 732Q652 734 653 740T655 748T658 754T663 759T672 761L686 754Q693 747 693 734Q686 686 664 647T615 586T548 545T482 518T417 501Q419 500 451 493T517 471T590 434T657 367T693 267Q693 241 673 241Q664 241 659 245Q656 249 650 273T635 323T593 380T511 432Q406 474 171 481H95Q82 494 82 501ZM57 -26Q57 39 101 87T219 136Q254 136 277 130Q320 114 382 72Q419 50 424 45Q426 45 459 110Q496 178 497 179Q500 180 504 180Q509 180 517 175T526 161Q526 158 495 90L462 25Q462 21 502 5Q519 1 553 1Q586 1 602 5Q641 18 664 45T691 107Q694 136 706 136T718 115Q718 114 718 111T717 105Q717 39 671 -9T554 -58L459 -33Q450 -29 444 -27T437 -26L371 -155L391 -168Q485 -235 538 -235H553Q586 -235 602 -230Q683 -204 691 -128Q694 -99 706 -99T718 -120Q718 -121 718 -124T717 -130Q717 -199 670 -246T557 -294T393 -228Q353 -205 351 -201Q348 -201 315 -266Q294 -310 285 -323T268 -337Q259 -337 254 -331T248 -317Q248 -305 282 -246L313 -181Q313 -177 273 -161Q255 -157 222 -157Q188 -157 173 -161Q134 -174 113 -198T88 -242T82 -278T71 -294Q57 -294 57 -261Q57 -204 91 -161T179 -104Q195 -99 228 -99Q274 -102 315 -124Q337 -132 337 -130L404 -1L384 12Q319 58 273 74Q255 79 222 79Q188 79 173 74Q133 61 112 37T88 -7T82 -43T70 -59Q57 -59 57 -26"],10938:[761,337,778,57,718,"693 501Q693 493 679 481H604Q548 479 509 477T418 469T331 454T257 429T194 392T150 340T124 270Q117 247 115 245Q101 236 88 247Q82 254 82 267Q89 330 126 379Q147 411 202 444T333 494L357 501Q239 531 188 565Q142 599 126 623Q89 672 82 734Q82 761 102 761L115 756Q116 755 124 732Q133 678 166 640T241 579T349 544T470 527T604 521H679Q693 507 693 501ZM57 -26Q57 39 101 87T219 136Q254 136 277 130Q320 114 382 72Q419 50 424 45Q426 45 459 110Q496 178 497 179Q500 180 504 180Q509 180 517 175T526 161Q526 158 495 90L462 25Q462 21 502 5Q519 1 553 1Q586 1 602 5Q641 18 664 45T691 107Q694 136 706 136T718 115Q718 114 718 111T717 105Q717 39 671 -9T554 -58L459 -33Q450 -29 444 -27T437 -26L371 -155L391 -168Q485 -235 538 -235H553Q586 -235 602 -230Q683 -204 691 -128Q694 -99 706 -99T718 -120Q718 -121 718 -124T717 -130Q717 -199 670 -246T557 -294T393 -228Q353 -205 351 -201Q348 -201 315 -266Q294 -310 285 -323T268 -337Q259 -337 254 -331T248 -317Q248 -305 282 -246L313 -181Q313 -177 273 -161Q255 -157 222 -157Q188 -157 173 -161Q134 -174 113 -198T88 -242T82 -278T71 -294Q57 -294 57 -261Q57 -204 91 -161T179 -104Q195 -99 228 -99Q274 -102 315 -124Q337 -132 337 -130L404 -1L384 12Q319 58 273 74Q255 79 222 79Q188 79 173 74Q133 61 112 37T88 -7T82 -43T70 -59Q57 -59 57 -26"],10949:[754,215,778,84,694,"84 463Q84 585 166 663T360 752Q361 752 370 752T395 752T430 752T475 753T524 753H679Q694 746 694 733Q694 724 681 714L522 713H470H441Q366 713 338 709T266 685Q244 674 224 659T179 617T139 550T124 463V458Q124 370 185 302Q244 238 328 220Q348 215 366 215T522 213H681Q694 203 694 193Q694 180 679 173H526Q510 173 480 173T434 172Q350 172 289 188T172 258Q84 340 84 463ZM84 -14T84 -1T98 19H679Q694 11 694 -1Q694 -14 679 -21H98Q84 -14 84 -1ZM84 -208T84 -195T98 -175H679Q694 -183 694 -195Q694 -208 679 -215H98Q84 -208 84 -195"],10950:[754,215,778,83,694,"83 733Q83 746 98 753H251Q267 753 297 753T343 754Q427 754 488 738T605 668Q693 587 693 463Q693 378 650 312T545 213T415 174Q407 173 251 173H98Q83 180 83 193Q83 203 96 213H255H308H337Q412 213 439 217T512 241Q533 252 553 267T599 309T639 376T654 463Q654 554 592 624Q557 662 512 685Q468 704 439 708T335 713H306H255L96 714Q83 724 83 733ZM84 -14T84 -1T98 19H679Q694 11 694 -1Q694 -14 679 -21H98Q84 -14 84 -1ZM84 -208T84 -195T98 -175H679Q694 -183 694 -195Q694 -208 679 -215H98Q84 -208 84 -195"],10955:[783,385,778,82,694,"693 221Q693 214 680 201H524Q398 201 367 202T309 212Q236 230 180 280T98 398Q84 438 84 492T98 585Q126 663 193 716T346 781Q347 781 373 781T440 782T520 783H680Q682 780 686 776T691 770T693 763T680 743H526Q364 743 353 741Q279 730 221 687T138 578Q124 540 124 492T138 405Q163 340 221 297T353 243Q364 241 526 241H680Q682 238 686 234T691 228T693 221ZM82 -48T82 -41T95 -19H462L513 41L569 105Q574 110 582 110T596 104T602 90Q602 87 600 83Q600 77 555 30L515 -17L600 -19H682Q693 -30 693 -38T680 -59H480L415 -137L349 -213L515 -215H682Q693 -226 693 -233T680 -255H313L260 -317Q224 -360 212 -372T192 -385Q184 -385 179 -377T173 -362Q174 -361 218 -306L260 -255H178L93 -253L86 -248Q82 -243 82 -235Q82 -226 93 -215H195L295 -213L362 -137L426 -59H260L93 -57L86 -53Q82 -48 82 -41"],10956:[783,385,778,82,693,"82 759T82 763T83 769T89 776T95 783H251Q378 783 409 782T469 772Q540 753 596 703T678 585Q691 546 691 492T678 398Q649 320 581 267T426 203Q415 201 251 201H95Q82 214 82 221Q82 225 83 227T89 234T95 241H249Q411 241 422 243Q496 253 554 296T638 405Q651 444 651 492Q651 539 638 578Q613 643 555 686T422 741Q411 743 249 743H95Q82 759 82 763ZM82 -48T82 -41T95 -19H462L513 41L569 105Q574 110 582 110T596 104T602 90Q602 87 600 83Q600 77 555 30L515 -17L600 -19H682Q693 -30 693 -38T680 -59H480L415 -137L349 -213L515 -215H682Q693 -226 693 -233T680 -255H313L260 -317Q224 -360 212 -372T192 -385Q184 -385 179 -377T173 -362Q174 -361 218 -306L260 -255H178L93 -253L86 -248Q82 -243 82 -235Q82 -226 93 -215H195L295 -213L362 -137L426 -59H260L93 -57L86 -53Q82 -48 82 -41"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/SuppMathOperators.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js deleted file mode 100644 index 26eda07..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Caligraphic-bold"]={directory:"Caligraphic/Bold",family:"MathJax_Caligraphic",id:"MJCALB",weight:"bold",skew:{65:0.224,66:0.16,67:0.16,68:0.0958,69:0.128,70:0.128,71:0.128,72:0.128,73:0.0319,74:0.192,75:0.0639,76:0.16,77:0.16,78:0.0958,79:0.128,80:0.0958,81:0.128,82:0.0958,83:0.16,84:0.0319,85:0.0958,86:0.0319,87:0.0958,88:0.16,89:0.0958,90:0.16},32:[0,0,250,0,0,""],48:[460,17,575,46,528,"259 460H279Q352 460 403 444T491 378Q528 320 528 219Q528 100 475 45Q417 -17 287 -17Q152 -17 99 44T46 219Q46 246 47 265T57 318T82 376T131 422T210 454Q234 460 259 460ZM389 229V271Q389 351 371 380T280 409Q232 409 208 385Q194 371 190 345T185 229V210Q185 108 194 83Q208 35 287 35Q317 35 336 42Q372 55 380 85T389 204V229"],49:[461,0,575,80,494,"119 417Q191 417 240 428T310 450T338 461Q353 461 357 452T361 400Q361 389 361 342T360 254V62H420H456Q483 62 488 58T494 35V29Q494 13 491 7T473 0Q468 0 424 1T295 2T167 1T117 0Q114 0 111 0T107 1Q96 8 96 27V35Q96 54 102 58T140 62H170H229V213Q229 363 228 363Q220 360 196 358T150 356L130 355H93Q84 360 82 365T80 386Q80 404 81 407T95 417H119"],50:[460,0,575,51,517,"214 399Q202 399 191 398T175 395T170 392L171 390Q172 389 174 386T178 379T181 369T182 355Q182 328 165 312T123 296Q99 296 82 312T64 356Q64 397 105 428T253 460Q301 460 337 456T411 441T476 403T514 338Q516 328 516 310V304Q516 257 470 227Q456 217 427 205T376 184L354 176Q350 174 325 162T277 139L254 128Q414 129 428 130H439Q450 148 453 166T460 188T486 193H493Q515 193 517 178Q517 171 502 94T484 11Q481 3 472 2T410 0H269Q65 0 62 2Q55 5 53 10T51 32Q51 54 56 58Q60 62 173 131Q296 207 318 224Q368 264 368 308Q368 342 342 363T283 392T214 399"],51:[461,212,575,48,526,"80 309Q80 367 131 414T276 461Q388 461 441 417T494 313Q494 265 463 223T373 155L361 151L376 147Q436 132 480 92T525 -15T487 -127T393 -192T274 -211Q179 -211 114 -167T48 -53Q48 -18 69 5T128 29Q168 29 188 5T208 -50Q208 -59 207 -67T203 -81T197 -92T190 -101T183 -109T177 -114T170 -118L167 -121Q160 -125 164 -127Q167 -129 176 -133Q215 -152 268 -152H273Q337 -152 356 -92Q364 -69 364 -14Q364 45 352 74T303 120Q287 125 240 125H230Q201 125 196 127T191 146V152Q192 170 196 173T233 178Q234 178 241 178T252 179T262 181T274 183T285 188T297 195T308 205T319 218T328 235T337 257Q345 280 345 320V330Q345 345 343 355T335 379T312 399T270 407Q226 407 177 377Q226 356 226 310Q226 270 204 253T153 235Q123 235 102 253T80 309"],52:[469,194,575,32,542,"180 0Q155 0 124 0T84 -1Q48 -1 40 3T32 27V37Q32 59 34 63T204 265T377 465Q380 468 383 468H387Q391 468 398 468T411 469Q432 469 438 468T449 459Q451 455 451 258V62H489H498Q531 62 536 58T542 31Q542 9 537 5T504 0H489H451V-132H489H498Q530 -132 536 -136T542 -163Q542 -181 538 -187T522 -194Q518 -194 483 -193T378 -192Q281 -192 256 -193L217 -194Q203 -189 203 -169V-163V-158Q203 -140 209 -136T246 -132H265H314V0H180ZM325 62V320L105 63L215 62H325"],53:[461,211,575,57,517,"131 29Q159 26 175 12T194 -13T197 -35V-41Q197 -58 195 -66Q191 -76 185 -84T173 -97T161 -105T152 -109L148 -110Q148 -112 158 -121T195 -141T252 -152Q274 -152 280 -151Q335 -137 349 -104T363 9Q363 85 356 114T322 157Q305 166 286 166Q251 166 223 154T182 131T162 109Q154 98 150 96T130 93Q107 93 102 104Q100 107 100 279V371V424Q100 461 110 461Q114 461 123 458T149 450T183 441Q234 429 286 429Q313 429 340 432T387 440T422 449T447 457T458 461Q472 461 472 435Q472 420 470 418Q464 405 438 379T352 325T226 297Q189 297 171 301H168V182Q169 182 174 185T190 194T213 205T248 213T292 217Q391 217 454 159T517 5Q517 -92 444 -151T255 -211Q167 -211 112 -160T57 -44Q57 -12 76 8T131 29"],54:[660,17,575,48,526,"48 316Q48 398 70 462T124 562T198 621T274 652T339 660Q377 660 384 659Q497 632 497 532Q497 507 482 487T431 466Q397 466 381 486T365 530Q365 569 405 593Q382 603 381 603Q361 607 350 607Q316 607 279 589T221 533Q199 489 196 385L195 370Q196 371 203 379T217 395T237 410T263 424Q283 431 313 431Q409 431 468 368Q526 310 526 208Q526 131 492 81T405 5Q359 -17 289 -17Q256 -17 227 -11T163 17T105 73T65 170T48 316ZM293 380Q244 380 220 331T196 212Q196 104 216 80Q240 41 292 41Q295 41 301 41T309 42Q338 46 355 62Q372 81 375 108T379 230Q378 314 372 333Q358 375 299 380H293"],55:[476,211,575,64,558,"95 210H88Q66 210 64 225Q64 229 82 345T102 465Q106 476 125 476H131Q162 476 162 458Q162 451 213 448Q221 448 238 447T260 446Q261 446 410 444Q436 444 468 444T509 445Q544 445 551 440T558 413V404Q558 395 547 380T478 301L392 202Q354 150 339 81T321 -104V-132Q321 -187 286 -203Q273 -211 255 -211Q236 -211 217 -199T190 -160Q189 -153 189 -130Q194 17 282 156Q309 200 370 270Q404 307 400 307H293Q151 306 146 303Q140 300 132 259T120 215Q115 210 95 210"],56:[661,17,575,48,526,"48 164Q48 199 59 228T92 277T128 307T163 329Q159 332 155 336Q135 346 110 382Q80 427 80 477Q80 564 147 620Q202 660 264 660Q266 660 275 660T290 661Q384 661 439 619T494 506Q494 486 489 468T477 437T459 413T440 395T421 380T406 370L410 368Q414 365 421 361T437 351T456 335T476 316T495 291T511 262T522 228T526 189Q526 93 460 38T282 -17Q242 -17 205 -9T130 19T71 75T48 164ZM406 506Q406 545 379 576T283 607Q218 606 193 585T168 536Q168 522 172 513T195 490T224 471T275 443L346 403Q406 446 406 506ZM291 42Q365 42 395 70T425 134V141Q425 170 401 190T319 242Q308 248 302 251Q286 260 266 271T235 288L225 294Q222 292 217 289T198 274T175 249T157 212T148 163Q148 116 179 79T291 42"],57:[461,210,575,48,526,"175 -140Q198 -152 236 -152Q294 -152 332 -116Q356 -91 366 -54T379 62V78L376 74Q372 70 366 64T352 50T333 35T308 23Q289 17 262 17Q168 17 108 77T48 235Q48 273 59 317Q81 381 141 421T276 461Q279 461 285 461T295 460Q326 460 354 454T415 426T471 371T510 277T526 136Q526 42 501 -28T432 -136T341 -192T240 -210Q199 -210 169 -201T121 -178T94 -146T80 -112T77 -82Q77 -51 95 -33T143 -15Q170 -15 189 -33T209 -81Q209 -116 175 -140ZM377 244V274Q377 300 376 316T368 352T348 384T312 405Q307 406 283 406Q257 406 238 396T213 376T205 361Q196 341 196 259V233V181Q196 122 211 96T278 69H298Q330 82 345 104Q367 134 376 190Q377 200 377 244"],65:[751,49,921,39,989,"761 751Q784 751 784 728V711Q784 570 795 417T820 191Q844 76 865 76Q868 76 902 93T962 112H973Q989 104 989 94Q989 92 987 86Q978 47 846 -11Q812 -25 779 -26Q722 -26 708 9Q688 47 669 161H524L379 162L359 136Q286 43 234 -3T142 -49T71 -19T39 55Q39 92 60 131T103 174Q113 174 117 167T124 149T136 128T166 110Q183 105 190 105Q230 105 341 246Q401 322 453 397T531 514T582 601T611 651H640V663Q640 692 676 718T745 750Q747 750 752 750T761 751ZM658 266Q653 312 649 377T644 489T641 541V556L557 415Q500 325 448 253Q467 261 524 261H568H658V266"],66:[706,17,748,40,739,"441 83Q571 83 571 195Q571 246 538 279T466 322T386 333Q378 333 357 330T329 327Q307 327 307 345Q307 354 313 365T347 396T419 430Q546 472 581 498Q594 508 594 535Q594 574 567 589T508 604Q469 604 442 583Q390 546 342 457T265 256Q237 148 186 60Q167 29 144 13Q105 -15 68 -17H65Q40 -17 40 1Q40 7 53 29T87 100T124 210Q162 373 190 575Q188 575 174 567T138 550T98 542Q75 542 75 560Q75 588 123 618Q135 625 203 659T281 696Q299 703 316 703Q339 703 339 685Q339 656 328 583L333 588Q338 592 346 599T367 615T394 634T428 654T467 674T511 690T559 701T611 705Q651 704 681 689Q739 659 739 598Q739 507 595 427L584 421Q585 420 595 416T610 410T626 402T644 392T660 380T677 365T691 347T703 325T710 299T715 268Q717 193 665 130Q622 73 531 28T348 -17Q275 -17 225 10Q206 19 200 24T193 36Q193 57 231 86T311 119H322Q386 83 441 83"],67:[704,20,613,20,599,"243 -20Q135 -20 78 48T20 218Q20 280 39 344T98 470T193 580T324 661T488 702H490Q491 702 493 702T498 703T507 703T518 702H526Q599 702 599 631Q599 597 577 550T541 486Q523 463 490 447T431 430Q423 430 419 433Q409 437 409 450Q410 456 432 499T454 567Q454 586 446 594T415 603Q316 603 254 532Q216 487 190 421T164 284Q164 228 181 186T226 122T282 90T340 80Q377 80 405 96T449 131T492 167T553 187H555Q580 187 580 168Q580 153 551 123T476 60T367 4T243 -20"],68:[686,0,892,20,885,"107 0Q92 5 92 18Q92 33 113 53T160 86Q170 91 182 94T197 100L206 120Q248 226 273 337T304 501T309 585Q278 585 234 577T179 557Q172 550 166 532T156 509Q140 484 105 466T44 447Q20 447 20 465Q20 482 34 510T76 565Q122 608 173 632Q281 686 447 686H480H517Q692 686 784 631Q885 571 885 450Q885 339 805 239T586 75T286 1Q276 0 187 0H107ZM741 391Q741 424 731 452T694 510T613 558T481 584Q476 584 468 584T457 585L449 586V579Q441 501 425 424T391 292T357 193T330 125T319 100H324Q511 100 628 175Q688 215 714 275T741 391"],69:[703,16,607,37,627,"495 516Q485 516 478 520T470 532Q470 537 476 550T482 570Q482 589 465 596T401 603Q344 603 319 582Q295 558 295 519Q295 493 312 474T355 445T407 432T455 427Q477 427 477 409Q477 395 453 371T389 333Q380 330 345 327T279 312T223 272Q181 223 181 176Q181 131 225 107T324 83Q366 83 395 98T448 136T487 167Q517 185 547 187H551Q574 187 574 170Q574 151 535 113T421 36T271 -15Q260 -16 226 -16Q181 -16 152 -9Q104 4 71 33T37 111Q37 140 50 176T106 263T216 356Q215 357 207 362T190 374T172 392T156 419T150 456Q150 521 208 580T341 670T474 702Q475 703 499 703Q528 703 547 701T586 693T615 673T627 637Q627 584 581 550T495 516"],70:[686,30,814,17,930,"812 567Q804 567 795 570T786 579Q786 586 647 586H559L558 582Q558 575 539 510T506 407L498 384H775Q788 378 790 368Q790 328 746 298T665 268Q646 268 642 284H457L447 261Q396 150 360 94Q329 46 270 8T149 -30Q123 -30 100 -24T63 -10T37 9T22 26T17 36Q17 59 56 88T135 119Q145 119 149 117T165 104Q187 78 227 72Q232 72 234 76Q245 93 273 145T350 323T424 570L428 586H276Q265 575 239 563T190 551Q180 551 174 556T167 569Q167 580 179 597T213 634T278 668T371 685Q374 686 624 686Q863 685 888 682Q917 678 927 663Q930 658 930 650Q930 624 888 596T812 567"],71:[703,114,682,50,671,"50 279Q50 361 88 438T190 570T335 661T503 702H514Q524 703 532 703Q671 703 671 626Q671 580 614 514T495 447Q472 447 472 465Q472 477 499 511T527 562Q527 582 507 592T433 602Q351 602 302 569Q252 535 223 469T194 344Q194 266 237 217T352 168Q401 168 442 205T505 316Q515 345 551 368T622 393H625Q649 393 649 376Q649 371 635 318T612 237Q580 129 540 62T442 -49Q353 -114 264 -114Q259 -114 252 -114L246 -113Q190 -113 142 -107T81 -96Q71 -90 71 -81Q71 -57 110 -30T187 2Q196 2 236 -4T338 -14Q371 -14 377 -9Q410 24 446 113L451 127Q353 68 253 68Q157 68 104 129T50 279"],72:[686,48,987,20,946,"42 447Q20 447 20 465Q20 481 47 515T119 589T239 657T392 686Q443 686 463 664T484 616Q484 570 473 506T452 401L441 360Q441 359 550 359H660L663 370Q684 435 716 522T758 624Q771 646 806 666T870 686Q894 686 894 668Q894 667 867 597T804 416T752 218Q737 135 737 93Q737 77 746 65T778 53Q799 53 803 54T814 63Q831 86 864 103T924 120Q946 120 946 100Q945 85 931 63T888 16T806 -27T684 -48H681Q625 -48 603 -10Q593 4 593 29Q593 71 603 131T624 230L634 269Q632 269 624 266Q610 261 600 261T507 259H411L399 222Q344 62 322 21Q301 -7 268 -24T209 -41H207Q187 -41 185 -25Q185 -17 192 2T220 71T261 184Q284 256 284 258Q284 259 227 259H170Q169 259 166 261T162 264T158 266T156 271T155 277Q155 296 184 320T250 356Q259 358 286 359Q312 359 312 360Q314 372 318 385Q332 450 339 526Q339 530 339 535T340 543Q340 586 296 586Q255 586 227 576T188 553T165 523T146 497Q127 476 97 462T42 447"],73:[687,0,642,-27,746,"56 499Q32 499 32 516Q32 540 64 580T165 649Q241 682 365 685Q366 685 376 685T405 685T445 686T496 686T553 686H732Q746 677 746 668Q746 646 711 620T642 587L572 586H503Q479 546 458 479T424 352T383 224T318 111L309 101L412 100H514L523 109Q567 150 618 153Q644 153 644 135Q644 132 642 124Q629 86 581 52T476 6Q454 2 433 2T216 0Q-11 0 -15 2Q-27 6 -27 18Q-27 37 2 61T59 93Q77 100 142 100H198Q255 177 299 369Q337 513 382 574L391 586H348Q261 586 176 576Q163 543 124 521T56 499"],74:[687,114,779,53,937,"286 390Q263 390 263 407Q263 432 293 481T367 566Q511 687 724 687Q738 687 761 687T793 686H923Q937 677 937 668Q937 648 905 623T842 589Q829 587 817 586T802 585T795 583T788 578Q709 506 632 189Q622 153 615 134T588 81T537 17Q482 -39 404 -76T247 -114Q192 -114 158 -100Q53 -61 53 32Q53 59 58 73T79 102Q126 147 177 147Q200 147 200 128Q200 123 198 112T196 96Q196 47 238 17T345 -13Q362 -13 377 -9T404 0T426 16T444 34T459 55T470 76T478 97T483 116T488 132L490 141Q511 222 520 257T554 364T608 486T675 576L685 586H634H612Q532 586 484 564Q453 549 436 526T409 478T395 447Q378 424 345 407T286 390"],75:[703,17,871,40,834,"98 542Q75 542 75 560Q75 588 123 618Q132 624 199 657T275 694Q291 703 315 703Q327 703 332 699T338 690T339 670Q339 596 323 505T283 337T237 194T198 90L181 53Q170 31 136 8T68 -17H65Q40 -17 40 0L76 92Q112 185 150 322T194 564V578L168 565Q125 542 98 542ZM834 142Q834 125 819 100T774 48T692 3T576 -16H560Q540 -16 508 6Q469 33 422 108T342 267T309 398Q309 411 310 417T320 442T347 482Q401 542 517 615T710 702Q712 702 721 702T735 703Q772 703 791 690Q819 674 819 646T792 597T733 574H722Q704 584 704 599Q706 607 700 610T672 617L660 613Q609 595 524 538T423 450V440Q423 376 488 247T604 83Q621 70 640 70Q677 70 701 82Q713 87 718 101T737 132T783 160Q792 163 807 163Q834 163 834 142"],76:[703,17,788,41,751,"63 -17Q41 -17 41 0Q41 22 85 54Q101 68 113 92T133 141T154 219T182 315Q230 462 306 553Q345 599 391 632T478 678T543 697T582 703Q584 703 589 703T598 702Q643 702 666 676T689 613Q689 588 683 575Q674 551 632 524T552 496Q530 496 530 512Q530 517 531 525T533 538Q533 559 522 577T480 596H476Q462 596 451 588T415 544Q350 447 310 281Q284 181 261 136L255 124H285Q342 123 441 107T583 90L596 89Q603 116 647 144T729 173Q751 173 751 157Q751 118 685 60T523 -15Q514 -16 479 -16Q421 -16 320 0T171 18H155L142 10Q98 -17 63 -17"],77:[703,49,1378,38,1353,"38 20Q38 59 60 99T104 139Q106 139 126 125T176 106H181Q200 106 221 139T286 281Q322 370 342 451T368 581T376 634Q384 657 420 680T487 703Q502 703 507 696T522 649Q538 589 554 537Q579 453 609 372T660 248T686 202Q687 201 739 244T830 322L1166 642Q1225 700 1230 701Q1230 701 1237 703Q1258 703 1258 667L1253 637Q1248 607 1241 558T1227 451T1214 326T1209 202Q1209 77 1232 77Q1237 77 1269 94T1326 112H1329Q1353 112 1353 94Q1353 81 1334 60Q1311 37 1248 7T1150 -24H1141H1135Q1085 -24 1074 26Q1064 75 1064 134Q1064 239 1086 426Q1087 430 1087 434L1061 410Q871 227 783 149L694 76Q653 44 647 40T631 34Q620 34 616 37T594 63Q546 125 514 198Q467 307 423 449L418 466L412 444Q376 310 306 153Q278 88 251 45T201 -18T163 -43T131 -49Q102 -48 70 -31T38 20"],78:[840,49,937,-24,1105,"47 139Q81 105 122 105Q137 105 147 117Q159 134 182 199T234 381T274 610Q275 634 284 647Q297 666 327 684T389 703Q403 703 408 695T428 645Q480 490 567 298Q628 163 673 103Q674 102 674 102T675 106Q732 331 803 551Q842 674 875 725Q908 775 966 807T1081 840H1084Q1105 840 1105 803Q1105 768 1088 733T1051 689Q1045 686 1032 686Q986 683 948 663T901 624Q881 579 837 430T760 154L726 28Q725 28 725 28T723 25Q716 0 682 -24T611 -48Q600 -48 595 -45T576 -23Q522 44 480 124Q417 243 332 463L328 473L325 457Q291 293 227 124Q159 -49 72 -49Q38 -49 5 -28Q-24 -8 -24 21Q-24 58 -3 98T41 139H47"],79:[704,17,906,63,882,"433 703Q456 703 456 685Q456 672 441 655T407 627Q402 623 378 611T328 579T276 524Q207 434 207 324Q207 222 270 153T441 84Q566 84 651 177T737 400V405Q737 496 693 549T576 603Q542 603 510 560Q490 537 472 502T442 454Q397 412 346 409Q320 409 320 427Q320 430 322 436Q331 465 360 507T433 594T542 671T677 703Q776 703 829 636T882 468Q882 369 831 277T702 122T528 21T343 -17Q214 -17 139 61T63 257Q63 336 94 409T173 534T272 625T367 684T432 703H433"],80:[686,67,810,20,846,"170 -67Q147 -67 147 -49Q147 -42 162 -8T204 99T253 254Q274 332 288 415T305 542L308 585Q277 585 234 577T179 557Q172 550 166 532T156 509Q140 484 105 466T44 447Q20 447 20 465Q20 482 34 510T76 565Q122 608 173 632Q279 686 448 686H495H537Q622 686 678 677T784 637Q846 598 846 533Q846 452 776 375T597 252T378 206H366L358 181Q341 130 316 68T282 -7Q262 -33 230 -50T170 -67ZM701 468Q701 512 661 540T570 577T461 586H448V582Q446 576 443 545T428 447T395 301L389 280Q390 280 398 284T419 295T441 303Q443 304 484 306T572 321T651 359Q701 402 701 468"],81:[703,146,939,120,905,"874 453Q874 372 836 298T750 177T638 89T543 33T486 8L483 7Q485 5 523 -7T622 -32T726 -46Q741 -46 746 -45T755 -41T762 -27Q770 -1 806 23T878 50H890Q905 42 905 33Q905 -8 838 -68T670 -145Q662 -146 628 -146Q538 -146 389 -100T164 -50Q132 -50 132 -32T162 11T227 47Q231 48 286 51T394 62T518 100T641 180Q730 271 730 387Q730 478 673 540T520 602Q410 602 337 525T264 355Q264 284 310 244T420 203Q476 203 568 222Q594 222 594 204Q594 184 565 161T508 128Q433 103 316 103Q227 103 174 157T120 290Q120 382 182 471T343 620T548 697Q578 703 601 703Q604 703 611 703T623 702Q663 702 687 696Q760 679 817 618T874 453"],82:[686,17,990,20,981,"159 0Q159 5 172 34T205 114T245 229T284 386T309 575V585H304Q303 585 295 585T282 584Q233 579 207 570T175 553T165 531T156 509Q140 484 105 466T44 447Q20 447 20 465Q20 482 34 510T76 565Q122 608 173 632Q279 686 448 686H505H582Q683 686 745 672T834 611Q842 594 842 565Q842 523 824 484T780 419T722 370T669 336T632 318L619 312L626 302Q640 279 667 227T696 172Q717 133 735 112T762 88T784 84Q824 84 872 118T957 153Q981 153 981 136Q981 114 937 78T820 13T684 -17Q646 -17 616 8T569 66T526 151T477 234Q461 256 446 265Q437 272 421 274Q400 274 400 291Q400 311 430 336T495 371Q496 371 543 374T627 392T681 436Q699 467 699 503Q699 550 644 568T471 586H449V582Q449 581 447 559T438 499T422 413T393 298T348 165Q313 73 296 45Q282 24 249 4T185 -17Q159 -17 159 0"],83:[703,16,696,25,722,"204 476Q204 525 248 577T372 666T539 703T674 683T721 612Q721 588 714 569Q704 547 669 524T601 499Q573 499 573 516Q573 521 575 527T577 543Q577 563 568 574T548 588L539 590Q490 603 444 603Q418 603 394 597T364 583Q348 567 348 533Q348 493 382 466T459 425T555 387T633 330Q662 292 662 249Q662 153 544 69T257 -16Q218 -16 208 -15Q118 1 64 46Q25 76 25 126Q25 185 82 235T203 290H207Q229 290 231 274Q231 243 180 213Q173 209 172 206T170 189T171 170T183 150T216 121Q273 83 356 83Q412 83 459 100Q493 111 507 141Q518 165 518 185Q518 208 506 228T478 262T437 288T398 306T360 320Q316 335 285 352T239 384T215 416T205 443T204 467V476"],84:[720,69,644,38,947,"61 462H59Q38 462 38 479Q38 528 109 594T289 683L304 685L837 687L846 693Q889 720 923 720Q947 720 947 702Q945 671 892 631T776 583Q774 583 772 583T769 582T766 582L764 581H758Q753 581 744 581T722 580T693 580T662 580H563L514 385Q507 355 493 299T475 225T460 172T443 119T426 76T402 24Q386 -11 355 -33T304 -61T266 -69Q242 -69 242 -50Q243 -45 253 -25T278 32T307 115L364 340Q405 511 413 538T436 580H207Q202 572 200 568T197 561T195 552T190 537Q176 511 135 487T61 462"],85:[686,24,715,-10,771,"124 586Q107 586 74 569T15 552H13Q-10 552 -10 570Q-10 605 70 645T222 686Q283 686 283 631Q283 590 246 504T172 326T135 181Q135 130 157 107T205 83Q221 83 259 106Q347 165 453 301T604 548Q607 557 612 569T619 587T624 600T628 612T632 621T637 628T641 634T647 640T654 645T662 652Q706 686 748 686Q771 686 771 669Q771 656 754 614T700 467T630 229Q615 168 610 105Q610 88 617 78L641 90Q681 111 706 112Q733 112 733 95Q733 82 714 60Q694 40 633 10Q567 -23 532 -24Q507 -24 495 -17Q466 -4 466 32Q466 96 500 225Q277 -17 102 -17Q56 -17 23 17T-10 118Q-10 164 13 234T64 363T115 481T139 567Q139 586 124 586"],86:[686,77,737,25,774,"25 608Q25 628 60 657T148 686Q184 683 213 671T273 625T327 538T363 394T380 184L381 134L399 148Q503 226 574 302T667 415T689 467Q688 474 684 482T672 502T645 521T600 532Q576 532 576 567Q576 604 597 644T641 685H649Q701 685 737 648T774 545Q774 457 703 333T461 66Q397 13 332 -32T255 -77Q237 -77 237 -30V-23Q241 20 241 109Q241 483 115 569Q91 586 50 589Q25 589 25 608"],87:[686,77,1169,25,1206,"25 607Q25 629 62 657T142 686Q205 686 248 647T312 541T339 411T347 275Q347 249 345 203V189Q375 219 449 316T587 516Q629 584 629 587Q629 589 626 597T622 607Q622 629 658 656T732 686H744Q755 680 757 678Q757 677 769 649T799 577T835 475T874 339T904 183Q908 157 910 151L925 169Q997 252 1059 343T1121 474Q1120 498 1103 513T1059 532Q1036 532 1036 568Q1036 600 1053 636T1090 683L1097 686H1109Q1147 684 1176 652T1206 551Q1206 460 1131 320T897 7Q859 -33 840 -52T816 -74T804 -77Q788 -77 784 -32Q783 -28 783 -26Q774 108 744 239T691 436T665 501Q664 501 649 475T602 400T528 289T420 146T280 -15Q243 -56 231 -66T210 -77Q191 -77 191 -40Q191 -38 195 -4T204 91T209 217Q209 290 202 351T177 469T126 557T45 589Q25 589 25 607"],88:[687,-1,817,56,906,"762 562Q762 579 737 584T711 604Q711 630 753 658T834 686Q864 686 885 669T906 627Q906 580 834 522T614 379L584 362V357Q585 354 589 315T597 233T603 183Q610 132 627 116T671 100Q678 100 704 113T754 126T778 107Q776 79 733 45T626 2Q615 1 578 1Q542 1 535 3Q521 7 510 15T491 31T477 54T467 78T460 108T456 137T452 170T449 201Q447 220 445 240T442 270L441 281Q435 281 357 233Q240 165 206 135Q200 128 200 124Q200 113 208 108T226 101T244 96T252 82Q252 61 214 31T129 1H120Q97 1 77 16T56 60Q56 105 133 168T414 345Q428 352 431 354T433 359Q422 493 414 522Q407 551 395 566T373 583T350 586H341L332 580Q290 560 265 560Q243 560 243 577Q243 585 248 596T269 624T306 653T365 676T447 686H456Q472 686 484 683T514 671T543 637T562 576Q565 557 570 501L577 437Q577 436 613 457T694 506T756 551Q762 558 762 562"],89:[686,164,759,36,797,"73 555Q49 555 49 573Q49 602 110 644T239 686Q319 686 376 624Q416 584 444 511T483 361T499 240T503 173Q503 165 504 165Q506 165 524 184T556 218Q631 297 674 377T718 485Q718 505 699 526Q673 552 628 552Q619 552 613 562T607 590Q607 617 621 645T658 685Q661 686 671 686Q718 686 757 652T797 545Q797 476 749 369T602 146Q500 29 371 -67T176 -164Q112 -164 74 -120T36 -29Q36 5 55 36T95 67Q104 67 108 59T115 39T128 12T154 -12Q183 -30 216 -30Q239 -30 305 7L361 44L367 49V54Q367 95 364 143T351 273T312 429T243 546Q206 581 156 588L146 581Q108 555 73 555"],90:[686,0,818,46,853,"622 574Q522 579 420 579H396Q373 579 364 574T351 550Q339 516 297 490T218 462Q195 462 195 479Q195 487 197 492Q218 565 313 625T509 685Q564 685 650 683T755 680Q787 680 807 683T831 686Q853 686 853 669Q853 657 826 626Q742 532 641 437L619 415L622 414Q626 414 631 414T642 414Q697 411 697 388Q697 367 670 345T607 323Q605 323 592 325T546 329H522L490 302Q457 274 400 226T289 136L260 113L318 112Q345 111 452 109T587 106H627Q650 143 656 170Q666 197 710 225T788 253Q811 253 811 237Q811 211 781 160T710 77Q619 0 515 0Q507 0 497 0T484 1Q434 1 319 3T177 6Q123 6 95 2Q83 2 71 0H68Q46 0 46 17Q46 28 58 44Q68 56 100 80T210 165T383 307L408 329H361L314 330Q297 338 297 350Q297 368 320 388T368 413Q375 415 441 415H506L647 555L664 574H622"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Caligraphic/Bold/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js deleted file mode 100644 index c42e517..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Caligraphic={directory:"Caligraphic/Regular",family:"MathJax_Caligraphic",id:"MJCAL",skew:{65:0.194,66:0.139,67:0.139,68:0.0833,69:0.111,70:0.111,71:0.111,72:0.111,73:0.0278,74:0.167,75:0.0556,76:0.139,77:0.139,78:0.0833,79:0.111,80:0.0833,81:0.111,82:0.0833,83:0.139,84:0.0278,85:0.0833,86:0.0278,87:0.0833,88:0.139,89:0.0833,90:0.139},32:[0,0,250,0,0,""],48:[452,22,500,39,460,"39 213Q39 274 53 319T89 389T139 429T192 448T242 452Q347 452 400 400Q460 335 460 213Q460 -22 250 -22Q39 -22 39 213ZM364 242Q364 279 363 301T355 348T338 385T306 406T254 415Q250 415 245 415T238 416Q217 416 190 404T150 368Q136 339 136 221Q136 114 146 78T200 23Q219 16 250 16Q280 16 299 23Q341 41 352 77T364 221V242"],49:[453,0,500,86,426,"116 410Q176 412 215 423T269 443T288 453H291Q293 453 301 447V254Q301 62 303 60Q307 52 322 49T394 46Q418 46 422 43T426 23Q426 8 424 4T411 0Q407 0 369 1T258 2T148 1T106 0Q96 0 94 4T91 23Q91 40 95 43T123 46Q180 46 195 49T215 61Q216 63 216 220V376Q192 367 119 364H93L86 371V403L92 410H116"],50:[453,0,500,44,449,"55 334Q55 386 105 419T236 453Q333 453 390 413T448 307Q448 278 437 256T406 218T365 193T318 172T277 151L248 134Q219 118 191 102T163 84T267 83L382 85H391Q399 99 406 126Q410 143 413 145T429 148Q440 148 442 147T449 139Q449 137 435 73T420 7Q420 6 414 0H233Q94 0 71 0T46 5Q46 5 46 6Q44 8 44 24Q44 39 46 41Q47 44 98 78T212 155T294 212Q347 257 347 304Q347 354 306 380T203 407Q150 407 120 377Q118 375 123 373Q146 362 146 332Q146 315 133 302T101 288Q85 288 70 298T55 334"],51:[452,216,500,42,457,"69 312Q69 377 122 414T233 452Q333 452 381 409T430 313Q430 268 402 223T311 149L301 144Q307 143 317 140T355 123T402 92T439 44T456 -25Q456 -101 396 -158T241 -216Q154 -216 98 -173T42 -68Q42 -58 44 -50T50 -35T57 -25T66 -17T75 -13T82 -10L87 -8Q92 -7 102 -7Q132 -7 147 -25T162 -66Q162 -112 118 -125L113 -126Q113 -129 127 -140T173 -162T239 -173Q268 -173 292 -158Q345 -124 345 -24Q345 33 329 67Q298 125 229 125H210H172Q166 131 166 142Q166 159 172 161Q178 161 208 164T244 169Q251 169 263 176T291 199T316 245T327 314Q327 413 238 413Q182 413 130 369Q177 350 181 312Q181 289 166 273T125 257Q102 257 86 272T69 312"],52:[464,194,500,28,471,"163 0Q139 0 109 0T71 -1Q43 -1 36 2T28 15V27V46L190 270Q325 457 330 462Q333 464 352 464H371L377 458V46H464L471 40V6L464 0H377V-65V-108Q377 -131 379 -137T391 -144Q409 -148 446 -148H464Q468 -151 471 -155V-187L464 -194H453Q395 -192 325 -192Q222 -192 210 -194H199L193 -188V-154L199 -148H228Q241 -148 250 -148T265 -146T275 -145T281 -143T284 -141T286 -138T289 -134V0H163ZM295 46V350L75 46H295"],53:[453,216,500,50,448,"159 -44Q159 -66 145 -80T109 -96H102L107 -105Q148 -173 228 -173Q255 -173 280 -162Q351 -128 351 -6V8Q351 67 344 98T316 151Q288 176 255 176Q175 176 136 109Q129 100 114 100Q97 100 95 106Q93 110 93 277V403Q93 451 98 451Q100 452 103 452Q105 452 124 445T177 431T251 423Q294 423 328 430T380 445T401 453Q410 453 410 435V422Q332 331 203 331Q152 331 140 339Q139 339 139 254V168Q194 214 256 214Q332 214 390 154T448 0Q448 -95 381 -155T229 -216Q153 -216 104 -166T50 -49Q50 -15 66 -1T105 13Q128 13 143 -3T159 -44"],54:[665,22,500,41,456,"42 313Q42 401 68 472T133 583T215 644T296 665H304Q317 665 329 664T360 657T393 640T418 608T432 557Q432 533 422 519T401 502T380 498Q358 498 343 512T328 550Q328 591 367 601L372 602Q372 604 365 609T341 620T307 626Q260 626 226 600T174 537Q147 483 143 376V356Q192 434 266 434Q317 434 357 409Q406 375 435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM251 396Q211 396 178 354T145 217Q145 159 152 122T166 73T187 47Q216 21 252 21Q294 21 321 47Q342 68 349 99T356 203V232Q356 264 354 285T345 331T322 373T280 395Q274 396 251 396"],55:[463,216,500,55,485,"75 246Q64 246 62 247T55 255Q55 259 72 357T90 458L94 462H99Q104 463 109 463H121Q128 460 128 452Q128 445 134 441T165 435T233 432T356 431H478L485 425V392L414 298Q408 290 385 260T358 223T337 191T317 154T302 116T289 68T282 14T275 -55T274 -137Q274 -173 272 -177Q262 -216 223 -216Q170 -216 170 -157V-148Q172 -78 189 -12T237 109T288 196T338 266Q345 275 348 279Q395 340 395 342Q396 343 376 343T274 343Q122 342 117 339T103 294T90 248Q88 246 75 246"],56:[666,22,500,43,456,"69 496Q69 570 124 618T247 666Q321 666 375 624T429 515Q429 468 405 433T320 361L346 344Q385 320 403 301T439 250Q456 212 456 181V172V160Q456 141 449 119T426 71T386 26T326 -8T246 -21Q160 -21 102 30T43 155Q43 265 167 332L176 337L161 347Q105 384 87 423Q69 458 69 496ZM371 513Q371 567 334 596T249 626Q198 626 163 598T127 532Q127 521 129 511T138 492T150 476T167 460T185 447T207 433T228 420L284 384L294 391Q346 424 363 469Q371 486 371 513ZM190 21T250 21T351 56T393 140Q393 180 362 213Q354 221 317 246T246 292L212 313Q210 313 200 307T173 287T142 256T117 212T106 157Q106 100 148 61"],57:[453,216,500,42,457,"171 -101Q171 -118 163 -130T146 -146T134 -151Q132 -151 132 -152Q132 -154 140 -159T167 -168T206 -173Q274 -173 317 -108Q356 -50 356 79V86L350 77Q308 9 231 9Q150 9 92 81Q42 141 42 228Q42 289 64 333Q93 390 142 421T235 452Q237 452 244 452T255 453Q289 453 321 439T386 391T437 290T457 128Q457 -29 381 -122T206 -216Q148 -216 108 -187T67 -104Q67 -75 84 -62T119 -49Q141 -49 156 -63T171 -101ZM242 46Q293 46 324 94T355 223Q355 323 337 356Q316 401 275 410Q267 412 248 412Q206 412 179 386Q155 360 149 328T143 224Q143 120 163 88Q192 46 242 46"],65:[728,51,798,30,819,"576 668Q576 688 606 708T660 728Q676 728 675 712V571Q675 409 688 252Q696 122 720 57Q722 53 723 50T728 46T732 43T737 41T743 39L754 45Q788 61 803 61Q819 61 819 47Q818 43 814 35Q799 15 755 -7T675 -30Q659 -30 648 -25T630 -8T621 11T614 34Q603 77 599 106T594 146T591 160V163H460L329 164L316 145Q241 35 196 -7T119 -50T59 -24T30 43Q30 75 46 100T74 125Q81 125 83 120T88 104T96 84Q118 57 151 57Q189 57 277 182Q432 400 542 625L559 659H567Q574 659 575 660T576 668ZM584 249Q579 333 577 386T575 473T574 520V581L563 560Q497 426 412 290L372 228L370 224H371L383 228L393 232H586L584 249"],66:[705,23,657,32,664,"304 342Q292 342 292 353Q292 372 323 391Q331 396 417 428T533 487Q563 512 563 555V562Q563 575 557 589T530 618T475 636Q429 636 396 613T330 539Q263 446 210 238Q196 183 173 120Q135 31 121 16Q108 1 85 -10T47 -22T32 -10Q32 -5 44 18T77 93T112 206Q135 296 154 395T182 550T191 615Q191 616 190 616Q188 616 179 611T157 601T131 594Q113 594 113 605Q113 623 144 644Q154 650 205 676T267 703Q277 705 279 705Q295 705 295 693Q295 686 288 635T278 575Q278 572 287 582Q336 635 402 669T540 704Q603 704 633 673T664 599Q664 559 638 523T580 462Q553 440 504 413L491 407L504 402Q566 381 596 338T627 244Q627 172 575 110T444 13T284 -22Q208 -22 158 28Q144 42 146 50Q150 67 178 85T230 103Q236 103 246 95T267 75T302 56T357 47Q436 47 486 93Q526 136 526 198V210Q526 228 518 249T491 292T436 330T350 345Q335 345 321 344T304 342"],67:[705,25,527,12,533,"201 -25Q167 -25 136 -14T75 23T29 94T12 202Q12 290 50 394T161 574Q227 642 303 673T433 704Q435 705 457 705Q533 701 533 640Q533 606 507 548T464 474Q431 444 396 444Q381 444 381 453Q381 459 388 473T407 513T428 563Q433 580 433 594Q433 636 381 636Q314 636 260 594T175 489T128 363T112 247Q112 157 153 101T273 44Q347 44 398 121Q413 144 437 157T481 171Q496 171 496 160Q496 150 476 123Q426 56 350 16T201 -25"],68:[683,1,771,19,766,"37 475Q19 475 19 487Q19 536 103 604T327 682H356Q386 683 408 683H419Q475 683 506 681T582 668T667 633Q766 571 766 450Q766 365 723 287T611 152T455 57T279 6Q248 1 160 0Q148 0 131 0T108 -1Q72 -1 72 11Q72 24 90 40T133 64L144 68L152 88Q247 328 272 587Q275 613 272 613Q272 613 269 613Q225 610 195 602T149 579T129 556T119 532Q118 530 116 525T113 518Q102 502 80 490T37 475ZM665 407Q665 596 412 613Q403 614 383 614Q370 614 370 612Q370 598 363 542T323 357T242 103L228 69H265Q391 73 481 119Q536 148 575 188T633 268T658 338T665 392V407"],69:[705,22,528,30,564,"144 470Q144 556 240 630T451 705Q564 705 564 637Q564 611 540 573Q529 559 505 547T464 534Q448 534 448 545Q448 552 455 562Q463 577 463 591Q463 600 462 604T456 616T436 627T400 635Q396 635 390 635T380 636Q291 636 258 568Q245 544 245 516Q245 463 290 438T391 410Q415 410 415 398Q415 392 407 380T376 356T326 341Q288 340 260 327Q218 311 187 276T143 208T130 151Q130 113 156 88T211 55T268 47Q349 47 403 125Q415 144 439 157T483 171Q499 171 499 160Q499 148 475 120T413 59T315 3T197 -22Q124 -22 77 14T30 105Q30 126 39 154T66 216T122 288T209 354L223 362Q144 400 144 470"],70:[684,32,719,18,829,"199 579Q181 579 181 590Q181 598 188 611T212 639T260 666T335 682Q336 682 349 682T383 682T431 682T493 683T561 683Q776 682 784 681Q826 673 829 647Q829 620 797 600T744 580Q728 580 728 595Q729 607 713 610Q698 613 598 614H500L499 610Q499 598 467 486T428 367Q428 365 551 365H674Q683 360 684 355Q687 346 677 329Q666 312 642 299T598 285Q586 285 582 296H402L394 277Q386 258 373 229T346 167T315 102T286 51Q265 22 225 -5T133 -32Q108 -32 87 -25T54 -7T33 15T21 35T18 47Q18 60 44 80T98 103Q108 103 111 101T119 88Q130 66 150 54T179 39T195 37Q199 37 203 43Q217 67 245 125T318 300T391 532Q393 543 398 564T406 598T409 613T339 614H269Q229 579 199 579"],71:[704,119,595,43,599,"216 68Q155 68 115 100T59 177T44 273Q44 299 50 333T73 421T133 533T239 632Q346 704 466 704Q508 704 515 703Q555 696 577 681T599 635Q599 605 570 560T523 496Q490 466 455 466Q440 466 440 475T469 526T499 589Q499 605 489 617Q460 636 403 636Q343 636 295 611T220 548T174 464T150 382T144 318Q144 241 180 189T287 137Q325 137 359 160Q428 205 466 322Q472 342 501 359T551 376Q557 376 560 373T564 368L565 365Q560 341 551 302T512 173T451 31Q359 -119 204 -119Q163 -118 127 -109T74 -91T53 -77Q52 -75 52 -71Q52 -54 79 -35T132 -14H140L151 -19Q210 -49 281 -49H289Q312 -49 329 -31Q351 -7 372 36T405 109T416 142L408 136Q401 131 392 125T369 111T338 96T303 82T261 72T216 68"],72:[683,48,845,18,803,"18 487Q18 496 29 517T67 566T127 621T216 665T330 683Q359 683 376 669T397 643T400 622Q400 584 382 488T348 343Q348 342 467 342H587L594 366Q615 440 648 534T690 641Q701 656 723 669T764 683Q783 683 783 672L750 578Q716 485 677 346T625 101Q624 92 623 82T622 65T621 56Q621 20 658 20Q666 20 701 25Q709 52 736 69T785 87Q803 87 803 75T791 44T754 3T685 -33T588 -48Q568 -48 562 -46Q522 -31 522 13V23Q531 129 562 250L569 281L565 280Q561 278 556 277T549 274L438 273H328L321 249Q307 202 275 107T232 0Q219 -16 196 -28T155 -41Q149 -41 145 -39T140 -34T139 -29Q139 -24 148 -3T181 86T233 247Q240 270 240 272Q240 273 194 273H169Q139 273 139 285Q139 295 153 308T187 332Q206 341 236 342L260 343L264 359Q278 414 289 482T300 578Q300 613 260 613H254Q198 613 169 592Q148 578 127 544T104 508Q72 478 37 475Q18 475 18 487"],73:[683,0,545,-30,642,"174 0H31Q-13 0 -21 2T-30 12Q-30 23 -17 36Q9 60 42 68L155 70Q187 102 214 179T257 333T302 491T366 610L369 614H305Q221 611 188 607T145 596T128 569Q119 543 94 529T47 512Q28 512 28 524Q28 527 32 539Q56 614 159 654Q218 678 312 682Q314 682 339 682T404 682T481 683H632Q642 678 642 671Q642 657 621 641T577 617Q570 615 507 614H444Q427 592 406 542Q382 478 355 366T310 209Q280 123 238 78L230 69H330Q442 70 442 74Q443 74 443 77T447 87T460 105Q490 134 527 137Q545 137 545 125Q545 120 542 112Q531 78 491 49T399 7Q379 2 360 2T174 0"],74:[683,119,678,47,839,"148 78Q148 16 189 -17T286 -50Q319 -50 348 -33T396 10T426 59T444 101L471 204Q498 306 521 372Q575 532 649 605L659 614H591Q517 613 494 607Q433 591 400 550T360 477Q353 454 325 437T275 419Q256 419 260 435Q280 523 376 597T583 681Q603 683 713 683H830Q839 674 839 671Q839 654 810 634T754 614Q735 614 721 601Q688 571 654 495T600 351T561 209T541 132Q507 29 412 -45T213 -119Q141 -119 94 -77T47 33Q47 55 50 69T58 90T71 103Q105 131 135 131Q152 131 152 120Q152 119 151 114T149 99T148 78"],75:[705,22,762,32,732,"194 618Q193 618 182 613T156 601T131 594Q113 594 113 605Q113 623 144 644Q154 650 205 676T267 703Q277 705 279 705Q295 705 295 691Q295 569 250 397Q225 306 197 217T151 81T128 25Q120 8 94 -7T47 -22Q32 -22 32 -10L64 76Q95 163 133 295T185 530Q198 611 194 618ZM331 429Q331 383 364 290T449 117T542 36Q574 36 607 51T652 103Q660 124 677 133T709 143Q727 143 727 128Q727 119 723 111Q704 56 639 17T497 -22H493Q463 -22 425 16Q401 40 382 71Q335 138 296 243T256 399Q256 434 288 473Q342 540 471 622T670 705Q691 704 703 696Q732 678 732 644Q732 613 714 600T677 586Q671 586 667 587T660 592T657 604V619Q657 647 629 647Q623 647 620 646Q576 635 495 583T365 482Q331 448 331 429"],76:[705,22,690,32,656,"62 -22T47 -22T32 -11Q32 -1 56 24T83 55Q113 96 138 172T180 320T234 473T323 609Q364 649 419 677T531 705Q559 705 578 696T604 671T615 645T618 623V611Q618 582 615 571T598 548Q581 531 558 520T518 509Q503 509 503 520Q503 523 505 536T507 560Q507 590 494 610T452 630Q423 630 410 617Q367 578 333 492T271 301T233 170Q211 123 204 112L198 103L224 102Q281 102 369 79T509 52H523Q535 64 544 87T579 128Q616 152 641 152Q656 152 656 142Q656 101 588 40T433 -22Q381 -22 289 1T156 28L141 29L131 20Q111 0 87 -11"],77:[705,50,1201,28,1137,"28 9Q28 37 43 63T73 90Q77 90 83 84T103 70T141 57H146Q162 57 178 79T222 167Q266 279 295 371T334 513T349 598T358 651T371 677Q397 705 432 705Q442 705 445 699T452 666Q453 661 453 659Q475 538 509 405T568 207L574 192Q581 178 587 164T594 150Q596 150 635 189T693 248Q765 324 863 438T1024 626T1089 701Q1093 705 1100 705Q1111 705 1111 682Q1111 675 1108 660T1099 611T1086 540Q1041 277 1041 144Q1041 98 1044 75T1050 48T1059 42Q1064 41 1075 46Q1102 61 1121 61Q1137 61 1137 50Q1137 28 1087 0T1000 -29Q983 -29 972 -23T955 -9T945 16T942 45T941 83V96Q941 158 952 256T974 422L985 489Q984 489 939 436T821 300T698 164Q665 128 620 85T568 37Q564 34 558 34Q550 34 546 37T535 54Q512 91 496 127T450 259T389 498L384 518Q349 367 294 223T198 15Q155 -50 117 -50Q87 -50 61 -35T30 -6Q28 2 28 9"],78:[789,51,820,-27,979,"343 705Q358 705 358 698Q360 696 370 658T411 524T484 319Q536 174 590 82L595 73L615 152Q646 274 683 407Q729 571 752 637T799 727Q852 780 937 788Q939 788 947 788T958 789H962Q979 789 979 765Q979 722 951 692Q942 683 924 683Q888 681 859 672T818 654T803 639Q784 608 708 322T631 15Q631 14 630 15Q630 17 629 15Q628 14 628 12Q621 -4 601 -17T560 -31Q550 -31 546 -28T530 -7Q484 67 458 123T398 272Q352 392 314 514L306 535V534Q306 533 296 488T272 379T234 239T185 100T127 -7T61 -50Q34 -50 4 -34T-27 8Q-27 33 -12 61T18 90Q21 90 36 77T87 57H92Q109 57 123 78T162 173Q206 299 232 417T265 599T276 667Q284 681 304 693T343 705"],79:[705,22,796,58,777,"308 428Q289 428 289 438Q289 457 318 508T378 593Q417 638 475 671T599 705Q688 705 732 643T777 483Q777 380 733 285T620 123T464 18T293 -22Q188 -22 123 51T58 245Q58 327 87 403T159 533T249 626T333 685T388 705Q404 705 404 693Q404 674 363 649Q333 632 304 606T239 537T181 429T158 290Q158 179 214 114T364 48Q489 48 583 165T677 438Q677 473 670 505T648 568T601 617T528 636Q518 636 513 635Q486 629 460 600T419 544T392 490Q383 470 372 459Q341 430 308 428"],80:[683,57,696,19,733,"37 475Q19 475 19 487Q19 536 103 604T327 682Q329 682 344 682T380 682T421 683H463Q625 683 695 615Q718 591 726 564Q733 547 733 525Q733 412 607 312T321 205H312Q293 205 293 217Q293 224 302 236T333 260T385 274Q558 287 614 407Q633 445 633 477Q633 515 612 543T556 585T481 607T399 614H370L368 603Q352 463 312 312T242 82T202 -13Q190 -33 164 -45T121 -57Q108 -57 108 -45Q108 -40 120 -10T151 73T192 190T233 349T266 539Q267 546 269 565T272 598T274 613H270Q209 613 163 588Q131 572 113 518Q102 502 80 490T37 475"],81:[705,131,817,114,787,"114 286Q114 358 151 433T249 569T392 667T558 705Q653 705 713 641T774 460Q774 389 750 322T687 206T600 114T504 46T412 4L399 -2Q542 -62 636 -62Q660 -62 670 -54T686 -27T700 0Q734 34 770 34Q787 34 787 23Q787 -18 720 -74T563 -131Q485 -131 350 -83T145 -34Q127 -34 127 -22Q127 -12 144 5T190 31L200 34L237 35Q386 38 467 79Q550 120 612 210T675 416Q675 510 625 573T484 636Q410 636 346 587T248 469T214 333Q214 306 221 281T243 229T288 188T360 172Q403 172 441 188T490 205Q510 205 510 192Q505 162 432 132T287 102Q206 102 160 155T114 286"],82:[683,22,848,19,837,"37 475Q19 475 19 487Q19 503 35 530T83 589T180 647T327 682H374Q387 682 417 682T464 683Q519 683 559 679T642 663T708 625T731 557Q731 481 668 411T504 300Q506 296 512 286T528 257T553 202Q594 105 611 82Q635 47 665 47Q708 47 742 93Q758 113 786 128Q804 136 819 137Q837 137 837 125Q837 115 818 92T767 43T687 -2T589 -22Q549 -22 517 22T467 120T422 221T362 273Q346 273 346 287Q348 301 373 320T436 342Q437 342 446 343T462 345T481 348T504 353T527 362T553 375T577 393Q598 412 614 443T630 511Q630 545 613 566T541 600T393 614Q370 614 370 613L366 584Q349 446 311 307T243 96L213 25Q205 8 179 -7T132 -22Q125 -22 120 -18T117 -8Q117 -5 130 26T163 113T205 239T246 408T274 606V614Q273 614 259 613T231 609T198 602T163 588Q131 572 113 518Q102 502 80 490T37 475"],83:[705,22,606,18,642,"554 512Q536 512 536 522Q536 525 539 539T542 564Q542 588 528 604Q515 616 482 625T410 635Q374 635 349 624T312 594T295 561T290 532Q290 505 303 482T342 442T378 419T409 404Q435 391 451 383T494 357T535 323T562 282T574 231Q574 133 464 56T220 -22Q138 -22 78 21T18 123Q18 184 61 227T156 274Q178 274 178 263Q178 260 177 258Q172 247 164 239T151 227T136 218L127 213L124 202Q118 186 118 163Q120 124 165 86T292 48Q374 48 423 86T473 186V193Q473 267 347 327Q268 364 239 389Q191 431 191 486Q191 547 242 600T356 679T470 705Q472 705 478 705T489 704Q551 704 596 682T642 610Q642 566 621 545Q592 516 554 512"],84:[717,68,545,34,833,"49 475Q34 475 34 490Q34 552 106 611T261 681Q272 683 507 683H742Q790 717 816 717Q833 717 833 708Q833 682 795 653T714 615Q691 610 588 609Q490 609 490 607L483 580Q476 554 462 496T435 392Q410 289 395 231T363 116T335 34T309 -15T279 -47T242 -64Q231 -68 218 -68Q203 -68 203 -57Q203 -52 211 -38Q224 -7 234 20T251 66T268 123T283 179T304 261T328 360Q342 415 360 488Q380 567 384 582T397 605Q400 607 401 609H302H244Q200 609 188 607T167 596Q145 572 145 541Q145 520 109 498T49 475"],85:[683,28,626,-17,687,"8 592Q8 616 70 649T193 683Q246 683 246 631Q246 587 205 492T124 297T83 143Q83 101 100 75T154 48Q202 48 287 135T450 342T560 553Q589 635 593 640Q603 656 626 668T669 683H670Q687 683 687 672T670 616T617 463T547 220Q525 137 521 68Q521 54 522 50T533 42L543 47Q573 61 588 61Q604 61 604 47Q599 16 506 -22Q486 -28 468 -28T436 -18T421 18Q421 92 468 258Q468 259 467 257T459 248Q426 206 391 167T303 81T194 6T83 -22Q66 -22 58 -20Q25 -11 4 19T-17 99Q-17 146 8 220T64 358T120 488T146 586Q146 604 141 608T123 613H120Q99 613 72 597T25 580Q8 580 8 592"],86:[683,52,613,25,658,"25 633Q25 647 47 665T100 683Q291 683 291 306Q291 264 288 213T282 132L279 102Q281 102 308 126T378 191T464 279T545 381T596 479Q600 490 600 502Q600 527 581 550T523 577Q505 577 505 601Q505 622 516 647T542 681Q546 683 558 683Q605 679 631 645T658 559Q658 423 487 215Q409 126 308 37T190 -52Q177 -52 177 -28Q177 -26 183 15T196 127T203 270Q203 356 192 421T165 523T126 583T83 613T41 620Q25 620 25 633"],87:[683,54,988,25,1035,"25 633Q25 647 46 665T103 683Q168 683 207 632Q228 608 243 568Q269 485 269 374Q269 324 265 271T256 184L251 150L252 152Q254 153 257 157T264 167T274 180T286 197Q359 293 424 398T519 558T549 616Q549 618 547 624T545 638Q550 654 572 668T615 683Q626 683 632 672T657 595Q726 370 741 128L742 110Q752 122 767 142T823 217T894 321T950 424T976 511Q976 544 958 560T918 577Q906 577 906 602Q906 629 918 651T942 681Q948 683 954 683Q983 683 1008 658T1034 569T999 421T915 257T813 109T724 -3T681 -49Q666 -59 660 -45Q659 -41 657 35T639 233T591 477Q573 551 570 551Q569 551 554 523T507 439T433 315T323 155T182 -25Q160 -52 151 -53Q137 -53 137 -30Q137 -29 148 25T170 168T181 338Q181 424 168 483T131 571T87 609T40 620Q25 620 25 633"],88:[683,0,713,52,807,"324 614Q291 576 250 573Q231 573 231 584Q231 589 232 592Q235 601 244 614T271 643T324 671T400 683H403Q462 683 481 610Q485 594 490 545T498 454L501 413Q504 413 551 442T648 509T705 561Q707 565 707 578Q707 610 682 614Q667 614 667 626Q667 641 695 662T755 683Q765 683 775 680T796 662T807 623Q807 596 792 572T713 499T530 376L505 361V356Q508 346 511 278T524 148T557 75Q569 69 580 69Q585 69 593 77Q624 108 660 110Q667 110 670 110T676 106T678 94Q668 59 624 30T510 0Q487 0 471 9T445 32T430 71T422 117T417 173Q416 183 416 188Q413 214 411 244T407 286T405 299Q403 299 344 263T223 182T154 122Q152 118 152 105Q152 69 180 69Q183 69 187 66T191 60L192 58V56Q192 41 163 21T105 0Q94 0 84 3T63 21T52 60Q52 77 56 90T85 131T155 191Q197 223 259 263T362 327T402 352L391 489Q391 492 390 505T387 526T384 547T379 568T372 586T361 602T348 611Q346 612 341 613T333 614H324"],89:[683,143,668,31,714,"65 599Q65 618 107 650T204 683Q267 683 312 643T380 533T414 385T424 217Q424 186 423 160T422 123Q426 123 468 170T567 304T650 469Q661 503 661 519Q661 546 639 570Q615 591 583 591Q569 591 569 616Q569 640 582 661T613 683Q624 683 638 679T671 664T702 625T714 558Q714 472 639 329T426 45Q361 -21 282 -82T154 -143Q97 -143 64 -104T31 -20Q31 4 44 25T70 46Q78 46 81 39T87 16T97 -9Q127 -51 182 -51Q184 -51 187 -50H190Q233 -41 314 25Q330 36 330 40Q336 79 336 178Q336 508 223 594Q199 614 158 619L148 620L139 611Q111 586 83 586Q65 586 65 599"],90:[683,0,725,37,767,"694 220Q708 220 708 210Q708 195 695 167T658 105T593 42T502 3Q492 1 458 1Q400 1 293 11T150 22Q116 22 92 11T51 0Q37 0 37 10Q37 21 63 44T179 146T367 319L391 343H343L296 344Q285 350 285 358Q285 365 289 372T300 383T313 392T324 398L329 400H450L561 518Q597 558 607 571L621 587H596Q553 589 484 599T383 609Q342 609 326 596T301 555Q294 533 263 514T208 492Q189 492 189 503Q189 510 197 528T215 559Q249 607 318 645T466 683Q504 683 573 673T669 662L690 661Q734 682 748 683Q767 683 767 673Q767 666 746 640Q655 531 555 428L529 400Q529 399 543 399Q604 397 604 366Q604 350 587 337T551 322Q541 322 539 323Q529 328 529 334Q529 339 487 342L470 343L446 320Q272 153 200 96L235 95Q297 95 392 86T533 74H554Q586 116 597 159Q604 179 635 199T694 220"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Caligraphic/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js deleted file mode 100644 index 4712f41..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Fraktur-bold"],{32:[0,0,250,0,0,""],33:[689,12,349,107,241,"121 621Q121 657 132 673T177 689Q223 689 223 644V635Q223 604 222 595Q221 590 210 490T187 292T175 190V186L166 185L156 184Q156 185 139 393T121 621ZM107 47Q107 70 127 87T174 104Q201 104 221 89T241 48Q241 24 222 6T174 -12Q147 -12 127 6T107 47"],34:[695,-432,254,10,231,"53 695Q74 695 90 679V622L65 433L52 432H39L27 516Q10 626 10 655Q10 680 26 688Q33 693 39 693Q49 695 53 695ZM151 668Q151 691 191 691Q217 691 224 685T231 661V652Q230 634 219 531L207 433L195 432Q183 432 183 433L168 541Q151 664 151 668"],38:[696,17,871,44,839,"290 -14Q186 -14 115 41T44 185Q44 222 54 249T88 300T131 336T189 371Q216 387 216 388Q185 459 185 510Q185 563 206 601T263 659T334 687T405 696Q476 696 503 668T531 603Q531 565 513 536T450 476Q423 459 370 432L334 413L354 384Q474 212 560 139L563 137Q611 185 611 250Q611 295 577 329Q549 356 496 357Q439 357 433 354Q432 354 432 379V403L437 402Q443 402 479 401T557 400Q653 400 735 403T831 407H836Q833 352 833 351L821 352Q809 352 792 352T756 352T720 353T696 354Q680 354 680 353L681 346Q682 339 683 327T685 306Q685 283 681 260T669 218T653 182T635 152T619 129T606 114L602 109Q604 107 618 99T659 81T707 71Q742 71 767 99T804 155L815 183Q815 184 821 183T833 180T839 177Q837 169 834 156T816 110T782 52T727 5T648 -16Q569 -16 499 35H498Q496 35 466 23T387 -1T290 -14ZM418 592Q418 617 398 639T352 661T302 642T278 574Q278 545 288 514T306 465T319 444Q342 456 353 463T382 488T409 529T418 584V592ZM159 239Q159 158 222 98T364 38Q386 38 447 57L469 63L434 98Q349 185 286 275Q258 316 238 345Q233 353 232 353Q159 316 159 239"],39:[695,-436,250,80,158,"80 645T80 662T93 687T123 695Q158 695 158 659Q158 649 157 643L123 437Q123 436 114 436H104Q104 442 92 538Q80 645 80 662"],40:[737,186,459,134,347,"347 719Q325 708 311 698T272 656T233 580T207 455T195 267Q195 30 247 -79Q261 -110 291 -136Q320 -163 347 -172V-179Q347 -186 344 -186Q338 -186 328 -184T287 -165T230 -123Q134 -25 134 271Q134 417 158 514T226 662T335 734L346 737Q347 737 347 728V719"],41:[735,187,459,105,326,"264 262Q264 366 253 446T226 572T186 649T145 692T105 714V725Q105 735 107 735Q108 734 121 731T154 719T196 692T242 641T284 560T314 437T326 268Q326 112 299 7Q279 -78 239 -124T116 -185L105 -187V-179L106 -171L109 -169Q130 -161 138 -158T165 -146T190 -127T210 -101T229 -64T243 -12T255 58T261 148T264 262"],42:[692,-449,328,40,277,"40 516L62 529Q85 542 110 556T140 574L126 582Q112 591 104 595T80 607T40 629Q53 642 57 645L65 652L78 642Q106 620 132 603L152 589V595Q152 630 149 681V692H179V689Q178 681 174 638T171 593Q173 593 240 639L258 652Q260 652 267 643L276 633L260 625Q190 587 175 576Q173 575 180 570Q183 569 186 567Q213 549 256 527L277 515L256 495Q246 501 228 515T194 539T170 554V543Q170 486 178 449H148V456Q152 492 152 550L151 562Q150 562 102 528L53 495Q40 514 40 516"],43:[598,82,893,56,837,"422 584L471 598Q472 598 472 440V282H837Q833 273 829 263L821 244L647 243H472V-63L448 -73L423 -82Q422 -82 422 81V243H239Q56 243 56 244Q60 253 65 263L73 282H422V584"],44:[107,191,328,118,253,"118 61Q118 80 135 93T169 107Q190 107 221 65T253 -23Q253 -39 251 -49T237 -80T198 -133Q148 -191 144 -191Q142 -191 137 -182T132 -172Q143 -161 160 -131T183 -83Q185 -77 185 -62Q185 -54 184 -48T182 -38T177 -28T171 -19T162 -8T150 6Q130 28 124 38T118 61"],45:[275,-236,893,54,833,"54 236L73 275H453Q833 275 833 274Q830 265 825 255L818 236H54"],46:[102,15,328,103,237,"103 23T103 44T120 83T170 102Q200 102 218 84T237 44Q237 20 216 3T168 -15Q138 -15 121 4"],47:[721,182,593,41,550,"272 270Q503 721 506 721L509 720Q512 720 518 719T529 717L550 713L91 -181L66 -182Q41 -182 41 -181L272 270"],48:[501,12,593,42,533,"238 -12Q162 -12 102 42T42 185Q42 303 130 393Q163 425 208 452T284 490L313 501Q323 499 339 495T395 472T464 426Q533 357 533 273Q533 201 483 133T364 27T238 -12ZM428 208Q428 255 402 297T342 365T280 404T241 419Q214 419 178 374T142 259Q142 206 168 164T225 99Q259 74 310 74Q326 74 337 75T366 82T396 103T417 141Q428 171 428 208"],49:[489,0,593,54,548,"95 481Q102 481 217 485T383 489Q384 489 384 485Q367 397 367 165Q367 58 369 54Q374 46 380 44T410 42H466H546V40Q547 38 547 19L548 0H54V23Q54 29 54 34T54 44L55 47Q79 47 134 46T202 45Q226 45 234 52Q240 57 241 64T245 105Q254 236 254 320V347Q254 369 252 382T240 409T211 431L97 450L96 465Q95 480 95 481"],50:[491,-2,593,44,563,"307 335Q307 374 283 397T224 421Q187 421 112 387Q105 384 100 382T95 381Q90 387 86 394L77 407L86 413Q219 491 298 491Q370 491 399 460T428 388Q428 373 424 358T409 326T391 297T363 264T335 235T301 202T269 171L199 104Q194 99 205 97Q209 96 214 96Q527 105 544 105Q553 107 563 102Q563 100 557 79T545 34T537 2H377Q338 2 247 2T130 4H44V26L104 77Q185 145 212 172T267 235Q307 291 307 335"],51:[487,193,593,31,523,"102 402L108 408Q115 413 122 418T141 431T165 447T194 461T227 474T263 483T302 487H307Q413 487 452 420Q465 400 465 371Q465 334 445 303T396 253T347 225T317 213Q314 213 314 211Q316 209 316 205Q317 201 320 201Q337 201 359 198T411 184T465 156T506 109T523 39Q523 -62 436 -127T229 -193Q179 -193 130 -178T56 -150T31 -133Q31 -132 41 -122L52 -112L63 -117Q128 -148 201 -148Q282 -148 331 -104T381 20Q381 71 363 100T304 145Q243 166 149 166H137V204H146Q179 204 211 210T275 229T326 268T346 329Q346 372 314 401Q292 423 245 423Q188 423 125 383L102 402"],52:[495,196,593,13,565,"346 -196Q344 -196 335 -187L336 -148Q337 -127 337 -55V0H13V29L187 253Q362 477 362 479L368 480Q375 481 387 483T411 487T434 491T452 494L459 495Q460 495 470 482V453Q470 389 466 230T461 62Q461 61 513 61T565 60L555 29L546 -1H461V-15Q461 -48 463 -100T465 -154L457 -157Q449 -160 434 -165T405 -175Q347 -196 346 -196ZM339 265V341Q339 362 335 362Q327 362 219 217T110 65V61H337V117Q338 133 338 187T339 265"],53:[481,190,593,18,519,"232 192Q176 192 122 152L95 162V481H306Q516 481 516 479Q514 477 501 433L486 389L319 388H152V386V382Q152 379 152 374T151 365Q147 329 146 260V218H149Q211 242 284 242Q353 242 402 224T474 176T508 117T518 55Q518 -62 432 -126T220 -190Q184 -190 151 -185T96 -172T57 -157T31 -145T20 -139T19 -138Q19 -136 27 -125L35 -112L51 -120Q114 -152 174 -152Q257 -152 314 -100T371 46Q371 107 340 149T232 192"],54:[704,12,593,48,547,"48 251Q48 330 76 403T150 529T253 623T370 683T485 704Q494 704 520 701T547 695Q547 692 542 659T536 625Q531 624 524 624L512 623L502 628Q489 635 468 640Q452 645 423 645Q403 645 379 640T320 617T255 568T201 481T171 348Q170 341 170 330V325L183 333Q275 385 357 385H361Q464 385 514 312Q546 267 546 217Q546 127 457 58T262 -12Q225 -12 189 3T120 49T68 132T48 251ZM448 165Q448 228 406 274T289 320Q264 320 236 312T190 295T173 284Q173 266 176 241T189 178T214 112T259 61T326 39Q372 39 410 75T448 165"],55:[479,197,593,54,591,"57 376L87 479H591V455L584 446Q544 399 491 328T349 117T185 -169L171 -196H159Q152 -197 102 -197Q58 -197 58 -196T56 -185L54 -175L299 158L443 359Q446 367 444 370H254L71 365L57 376"],56:[714,5,593,45,542,"88 533Q88 573 120 610T194 668T268 701T307 714Q324 714 352 711T422 695T486 659Q518 625 518 585Q518 536 479 489T384 406L371 398L385 390Q387 389 400 382T420 370T442 356T466 339T489 319T510 295T526 269T538 238T542 204Q542 125 463 60T256 -5Q145 -5 92 52Q45 97 45 165Q45 204 64 237T109 290T163 324T209 345T228 353L214 364Q199 375 179 392T138 431T103 480T88 533ZM405 557Q405 568 402 581T387 612T350 644T286 663Q283 663 280 663T274 664H272Q256 664 228 636T199 572Q199 547 238 507Q268 475 320 437L334 427Q345 433 358 443T388 483T405 549V557ZM304 42Q366 42 398 76T431 155Q431 178 420 200T396 238T359 270T321 296T283 318L263 328Q262 328 230 312Q190 290 175 266T160 198Q160 132 202 87T304 42"],57:[487,195,593,29,549,"549 220Q549 23 429 -82T105 -195H84V-189Q84 -179 85 -174V-164H93Q184 -156 238 -132T334 -56Q361 -23 376 16T394 78L397 100L363 88Q329 75 291 61T244 45Q237 44 218 44Q154 44 94 97Q29 152 29 240Q29 350 108 404Q145 429 257 480Q270 487 279 487Q403 487 470 421Q549 347 549 220ZM408 217Q408 276 390 320T346 385T297 415T259 424Q218 424 185 393T151 286Q151 216 213 154Q252 115 321 115Q368 115 388 134T408 217"],58:[457,12,255,57,197,"57 398Q57 419 72 438T117 457Q154 457 174 439T194 398Q194 379 176 361T119 343Q85 343 71 362T57 398ZM62 19T62 43T77 85T115 104Q153 104 175 86T197 42Q197 14 171 1T119 -12Q96 -12 79 3"],59:[458,190,255,56,211,"56 399Q56 424 73 440T104 456Q114 458 120 458Q149 458 170 440T192 399Q192 380 174 362T120 344Q85 344 71 362T56 399ZM78 53Q78 67 84 76T90 86Q90 88 98 92T116 98Q117 98 121 98T128 99Q152 97 181 58T211 -24Q211 -77 128 -165Q124 -170 121 -173T116 -178T113 -181T110 -185T106 -190L97 -184L88 -177L95 -168Q143 -104 143 -65Q143 -51 137 -40T113 -7T81 35Q78 41 78 53"],61:[343,-168,582,22,559,"559 342L549 304H22L27 319Q29 328 30 333T33 343H296Q559 343 559 342ZM559 206L549 168H22L27 183Q29 192 30 197T33 207H296Q559 207 559 206"],63:[697,14,428,40,422,"121 590Q121 575 128 562T144 542T152 533T115 512L78 491Q55 499 47 516Q40 530 40 553Q40 601 77 632Q155 697 257 697H268Q316 697 355 679Q422 646 422 576Q422 518 388 476Q383 468 376 461T358 444T340 428T316 410T290 390L230 344Q180 307 180 275Q180 261 187 248T202 227L209 219Q209 215 176 193L142 170Q114 177 100 194T84 226V239Q84 259 93 276T113 302T150 331T192 362Q203 370 219 382T247 403T267 422Q312 471 312 546Q312 593 282 623T207 653Q170 653 146 636T121 590ZM95 23T95 49T117 94T173 113Q204 113 223 96T242 54Q242 27 221 7T167 -14Q136 -14 116 4"],65:[686,31,847,29,827,"821 97Q822 97 824 88T827 77L793 53Q676 -25 670 -28Q669 -29 656 -27L583 123Q583 124 467 46L352 -31L341 -20Q305 18 264 47T192 77Q161 77 60 32L49 40Q37 47 38 49Q39 49 93 83T212 160T297 219Q411 312 411 452Q411 519 360 571T233 624Q180 624 157 601T133 548Q133 524 160 496T214 441T241 393Q241 356 199 321T100 256L86 249L77 256Q68 263 67 263L84 274Q101 286 118 304T135 339T109 384T56 446T29 504Q29 566 118 624Q207 686 309 686Q349 686 360 685Q405 678 439 661T491 625T520 583T534 543T537 511Q537 436 491 344L478 318L455 299Q420 272 308 179L284 160L294 158Q348 154 426 89L437 79Q513 110 579 153V175Q579 183 579 227T580 330T581 446T582 542L583 582L664 630Q681 640 703 653T734 673L744 679Q750 678 756 676L767 674L716 623V585Q716 568 712 463T708 289V250Q708 237 709 218T710 195L711 180L739 130Q768 79 771 79Q775 79 796 88T821 97"],66:[684,31,1044,56,965,"160 345Q160 357 144 376T109 413T73 458T57 509Q57 544 95 584Q142 631 205 657T331 684Q382 684 427 658T500 585L505 577L521 588Q537 599 562 614T616 646T679 673T738 684Q790 684 807 666T840 587Q850 552 863 532T888 508Q894 505 906 505Q917 505 930 507T953 512T963 514L964 504Q965 495 965 494T914 467T808 413T745 384H751Q782 380 802 377T854 362T904 334T937 287T951 217Q951 178 937 143T908 91Q903 86 820 34L734 -21L718 -24Q679 -31 639 -31Q561 -31 451 4T271 40Q190 40 119 -2L99 -13L91 1L84 15L86 16Q88 18 132 42T233 100T315 152Q377 199 386 233Q388 240 393 297T399 363Q399 487 353 551Q337 573 306 597T238 622Q201 622 179 602T157 557T214 476T272 396Q272 371 229 334T143 272T96 246Q95 246 85 252T74 259T95 273T138 306T160 345ZM529 443Q529 409 528 385T526 353L525 346Q526 346 649 390T773 435Q749 451 742 464T727 518Q727 519 725 532T721 548T717 562T712 577T706 589T698 601T688 608T675 614T658 616Q626 616 576 582T525 528Q525 527 526 518T528 489T529 443ZM772 57Q774 57 778 58T792 64T808 77T821 103T827 144Q827 222 784 266T660 322Q652 323 611 323H596Q577 323 535 316L523 314Q520 291 505 255L500 241L356 138L366 137Q443 131 518 110T650 72T748 54Q763 54 772 57"],67:[676,32,723,71,726,"460 -32Q373 -32 305 -11T193 45T122 124T83 214T72 303Q72 395 114 476L119 486L313 592L338 568L359 580Q418 615 479 638T568 668T606 675Q607 675 608 676H610Q612 676 615 661T630 621T660 578Q673 568 694 568Q717 568 721 570H726Q724 565 722 559L717 549L706 545Q608 513 583 513Q568 517 559 522T533 546T493 603L490 609Q452 599 452 558Q452 537 469 481T486 393Q486 353 474 331T422 285T296 231L272 223L262 230L253 237Q279 246 314 274T351 338Q351 376 334 442T316 532Q316 546 319 552Q319 554 316 554Q304 554 288 547T250 523T214 466T199 371Q199 218 299 133T541 47Q571 47 585 51T652 81L712 108Q716 104 716 81L706 74Q695 68 673 54T633 29L550 -22L540 -24Q492 -32 460 -32"],68:[683,29,982,31,896,"380 596Q307 596 250 582T158 546T100 493T67 433T56 373V361Q55 361 43 366L31 372V384Q31 455 69 523T173 627Q213 650 284 666T444 683H452Q629 683 735 629Q896 548 896 369Q896 263 839 163Q835 155 818 140Q746 82 662 27T563 -29Q525 -29 386 16T183 62Q147 62 127 52T63 1L48 -14L40 -4L31 5Q83 73 172 149L186 161H199Q291 161 329 181Q357 199 357 231Q357 258 301 316T245 396Q245 423 282 458T349 512T403 543L413 548L425 545L438 541Q373 491 373 462Q373 446 399 415T453 349T480 288Q480 251 433 212Q394 180 348 156L334 148L353 145Q408 134 513 105T654 76Q711 76 745 132T780 277Q780 434 676 517Q637 549 562 572T380 596"],69:[686,29,783,74,728,"527 55Q574 55 619 69T691 97L717 111V85L562 -18Q520 -29 443 -29Q379 -29 325 -15T235 21T180 61T146 98Q74 186 74 307Q74 395 109 472Q113 482 123 489T190 533Q251 568 295 591L308 598L350 580L361 586Q403 612 464 636T564 673T609 686Q610 686 610 685Q612 683 616 670T627 636T646 601Q666 572 686 572H692Q713 572 726 576H728L725 565L723 554L692 544Q660 535 629 526T595 516Q585 514 574 519Q563 527 543 552T507 597T490 617Q467 604 456 579V564Q456 535 473 471T492 393L494 381L613 460L622 446Q630 433 650 411T696 371L703 365L614 312H596L580 322Q568 329 553 340T528 355T510 360Q496 358 491 354T484 345T471 326T435 297Q408 278 370 261T307 235T277 227Q273 227 266 234L256 240L267 245Q280 251 294 258T330 288T353 336Q353 373 335 444T316 530V537Q316 549 322 567Q270 554 233 499T196 370Q196 253 287 157Q392 55 527 55"],70:[684,146,722,17,727,"424 522Q265 596 208 596Q193 596 180 593T150 579T116 542T89 474Q86 465 86 463L59 481L63 494Q87 578 137 627Q191 684 285 684Q334 684 406 658T538 607T621 581Q644 581 706 629L721 640Q722 640 725 630L727 620Q701 592 654 548T582 486L569 487Q533 490 485 504L468 508Q449 503 429 495T387 466T365 422Q365 373 439 299L453 310Q473 325 528 370L588 418Q614 398 642 368T668 331Q667 331 628 296L590 262L582 274Q557 311 526 311Q511 311 487 297T462 278Q462 277 492 244T551 166T581 88Q581 54 570 25T536 -27T505 -56T478 -76Q376 -146 274 -146H270Q199 -146 162 -118T124 -15Q124 12 128 30T132 96V107Q132 144 117 157Q102 169 85 169Q74 169 59 165T32 156T20 151Q20 152 19 158T17 167Q17 168 17 168T17 169T19 170T22 172T27 175T35 179Q131 230 195 230Q231 230 259 202Q270 190 270 171Q269 150 253 87T236 -16Q236 -67 261 -87T322 -107Q380 -107 428 -68Q467 -35 467 30Q467 60 447 91T383 171T316 251Q290 286 278 308T263 339T261 359Q261 384 284 418Q322 469 424 522"],71:[687,29,927,74,844,"742 611Q784 611 812 631V611Q807 607 783 591T718 544T629 476L606 458Q608 458 628 457T667 453T713 443T762 423T804 388T836 335Q844 313 844 289Q844 231 814 182T746 103Q720 82 655 48T546 -18L520 -21Q456 -29 432 -29Q313 -29 223 33Q204 45 183 65T135 119T91 207T74 320Q74 428 109 480Q116 491 127 497T215 546L308 595L343 583L355 591Q387 613 433 636T488 660H489L491 659Q493 658 495 657T500 655L509 650L500 645Q479 635 460 612T441 552Q441 535 447 498T459 433T466 405L625 513L643 526Q620 530 585 546T535 586Q535 587 532 592T527 602T525 610Q525 613 577 649L630 687Q632 687 638 675T653 649T686 623T742 611ZM349 313Q349 328 327 413T305 510V516Q305 531 308 542T314 559T317 566T315 567Q297 567 270 548Q233 524 212 490T191 392Q191 337 206 288T244 207T284 156T316 128Q410 51 535 51Q632 51 675 102T718 217Q718 269 690 314T599 375Q574 381 535 381Q501 381 477 377L466 376Q469 364 469 349Q469 314 457 295T408 258Q366 236 308 219L288 213L279 220L270 227Q284 232 294 236T309 243T320 252T326 260T331 270T336 281Q349 310 349 313"],72:[683,126,851,6,752,"288 139Q288 172 255 224T189 335T156 442Q156 495 242 579Q289 625 361 668Q364 671 368 673T376 678T380 681L384 683L392 676Q401 670 414 661T443 642T477 626T509 619Q543 619 618 668Q625 672 628 674T631 675Q632 673 633 663T633 651L564 595Q556 589 545 580T528 566T516 556T505 548T497 543T488 539T481 537T472 535T463 534T451 534H442Q385 534 304 581L291 589Q290 588 285 583T277 575T269 566T262 555T257 543T255 529V522Q255 507 260 487T276 446T293 409T311 376L321 359Q321 358 322 358T324 359T327 361T333 366Q386 409 481 460L503 472L543 471Q586 471 599 470Q692 459 714 430Q725 416 738 360T752 245Q752 184 742 127T725 51T703 -8Q700 -13 619 -64T518 -123Q508 -126 493 -126Q438 -126 398 -86L427 -52Q456 -17 457 -17Q460 -17 465 -16H473Q474 -21 481 -32T504 -56T539 -69Q572 -69 599 -34Q625 4 625 158Q625 264 609 311T532 378Q508 386 484 386Q455 386 419 372T360 345T337 330L346 313Q375 263 386 227Q389 215 389 202Q389 192 388 184T384 168T376 152T365 138T350 121T331 103T307 81T278 54L194 -24Q130 30 99 30Q85 30 64 20T31 1T16 -10Q15 -11 13 -7Q12 -6 11 -3Q8 4 6 8L32 35Q88 88 117 107T169 126Q177 126 182 125Q218 118 252 84L263 73Q288 113 288 139"],73:[681,25,655,32,623,"500 615Q523 615 550 628T595 655T614 668L623 654L607 642Q512 569 440 534L427 527L413 529Q384 535 340 547T265 565T209 572Q173 572 145 556T101 522T60 465Q58 460 54 460T41 468L32 477L37 487Q96 599 139 640Q187 681 247 681Q275 681 283 680Q313 674 398 645T500 615ZM418 170Q418 186 410 260T401 382Q403 418 403 424L405 433L415 444Q482 515 571 571L582 578Q591 573 607 568L597 560Q522 504 522 450Q522 427 533 357T545 241V228Q545 190 536 159T508 106T478 73T446 48Q343 -25 238 -25Q179 -25 118 15L107 22L79 5Q51 -12 51 -12L38 2L55 18Q106 67 175 122L192 136Q202 130 206 123Q223 91 252 61Q263 50 266 48T278 39T297 32T320 30Q357 30 389 68Q415 102 418 170"],74:[681,141,652,-8,616,"65 510Q68 517 74 528T101 569T144 620T202 661T274 680Q308 680 389 628T503 576Q530 576 596 600Q615 607 616 607Q616 602 615 596V585Q605 581 576 568T531 548T485 531T418 509L400 503L358 522Q347 527 327 537T299 550T277 560T257 568T239 573T220 577T201 578H196Q181 578 169 575T135 554T88 502L83 496Q82 496 74 502T65 510ZM424 4Q424 50 395 151T365 313V320Q365 352 369 361T405 403Q431 432 465 462T521 508T547 525L549 524Q551 524 554 523T560 521L571 517L552 498Q515 461 499 430Q485 399 485 366Q485 326 512 231T539 84Q539 -14 460 -77T273 -141Q248 -141 234 -140T198 -131T160 -106T134 -59Q128 -40 124 -16T117 22T108 49T91 69T59 75T15 65L1 59Q-8 76 -7 77Q4 85 22 97T88 129T170 149Q218 149 234 125Q242 112 242 43V21Q242 -17 248 -41T274 -85T322 -105H325H330Q363 -105 396 -75Q424 -47 424 4"],75:[681,27,789,20,806,"234 109Q234 144 194 245T153 404Q153 445 180 490Q232 572 325 626T517 681H524Q612 681 661 658Q683 647 699 632T717 604Q717 600 708 545L699 490L690 489Q681 488 679 488Q675 488 669 504T640 546T577 592Q520 620 446 620Q415 620 386 614T327 594T280 553T262 487Q262 468 265 447T271 413T279 384T285 362L295 371Q320 396 352 421T439 474T538 502Q577 502 596 484T627 428Q642 386 651 373T677 360H682Q698 360 727 369L724 357Q724 354 724 351T722 346V344Q559 289 539 283Q582 272 589 271L615 265L637 189Q662 109 663 108Q668 97 682 84Q698 68 722 68H730H738Q762 68 799 91L803 80L806 70Q795 59 770 40T703 -3T631 -26Q598 -26 578 -8Q548 24 536 92Q524 154 509 183T477 218T428 224Q409 224 385 220T346 212L331 207Q330 205 330 201T331 189T332 178Q332 158 325 116L305 96Q269 60 240 38Q171 -21 123 -21Q72 -21 33 18L20 32L62 74Q96 107 102 112T116 118Q120 118 122 113T131 95T150 69Q171 48 190 48Q198 48 206 51T224 69T234 109ZM519 367Q497 432 450 432Q379 432 313 333L300 314L304 299Q306 294 309 280T315 260L321 235L542 313Q530 325 519 367"],76:[683,28,786,30,764,"277 226Q277 248 253 286T203 369T178 449Q178 490 212 533T284 607Q380 683 532 683Q610 683 639 660T668 583Q668 568 666 546T663 509Q663 478 683 460Q691 452 719 452L738 450Q732 437 729 437Q728 437 652 416T573 394Q554 394 541 409T527 444Q527 449 532 487T538 542Q536 584 501 606T418 628Q389 628 364 620T317 587T295 523Q295 478 333 401T372 276Q372 269 371 267Q371 264 318 206L264 149Q284 141 317 130T433 101T577 82Q619 82 652 95T701 127T728 164T742 196L744 209Q744 210 749 208T759 203T764 199T760 185T751 154T744 129Q714 42 680 13Q628 -28 566 -28Q490 -28 403 -5T249 42T153 66T106 53T70 15T47 -16Q46 -17 30 -5L39 13Q85 100 138 148L147 156L161 157Q218 165 246 179T277 226"],77:[683,32,1239,27,1232,"134 338Q134 357 81 417T27 504Q27 516 34 530Q55 568 110 615Q190 683 305 683H314Q445 683 495 580L501 569L512 577Q608 646 681 646Q759 646 801 585L808 576L816 583Q860 619 921 650T1041 682Q1063 682 1077 675T1096 660T1112 631T1132 596Q1160 555 1188 555Q1204 555 1228 564Q1230 565 1231 562Q1231 560 1232 554V547L1215 538Q1179 521 1114 475Q1112 474 1106 470T1099 464T1093 459T1088 452T1085 441T1082 425T1081 404T1079 376T1079 339Q1079 282 1084 236T1098 160T1117 112T1138 85T1159 77Q1166 77 1180 81T1207 90L1219 94Q1220 94 1221 86T1222 76L1045 -32Q1044 -32 1004 15L964 64V167Q965 334 970 372V378L994 402Q1032 440 1057 460Q1061 463 1066 467Q1070 469 1070 470T1068 471T1060 474T1050 481Q1040 488 1021 531T996 583Q979 609 947 609Q922 609 887 592T820 537L821 524Q825 484 825 448Q825 268 768 155L759 137L589 -28L579 -20Q533 17 507 17Q475 17 449 -7L436 -18L424 2L441 20Q446 25 456 36T471 52T484 65T497 79T509 90T522 99T534 106T548 112T561 115T576 117Q602 117 639 86Q648 81 648 81Q650 82 657 94T668 112Q711 202 711 373Q711 484 677 533T600 583Q592 583 583 581T569 577T554 568T542 560T528 549T516 539L519 523Q527 485 527 461Q527 444 522 407Q506 266 447 150L437 130L217 -25L208 -15Q165 28 126 28Q89 28 62 1Q47 -14 43 -14Q42 -14 36 -8L28 0L44 17Q96 73 120 92T166 117Q182 123 204 123Q239 123 284 78L295 67Q307 72 337 102Q400 178 400 346Q400 508 325 571Q270 618 208 618Q180 618 168 614T140 594Q124 578 124 564Q124 540 182 480T240 396Q240 359 197 321Q154 285 94 252L80 245L76 248L67 257L61 262L71 268Q82 275 94 284T120 309T134 338"],78:[679,30,983,25,973,"522 492Q521 492 517 502T512 513Q542 444 542 333Q542 226 503 137L498 125L396 53Q308 -8 292 -17T260 -27Q226 -27 191 -9T136 29L145 39Q162 56 192 89L230 129L235 128H241Q276 57 332 57Q358 57 391 80Q403 89 409 100T422 143T428 227Q428 329 406 408T347 530T272 594T196 615Q152 615 135 596T118 558Q118 535 146 502T203 438T232 385Q232 357 195 322T122 265T83 243Q82 242 72 249T61 258L66 262Q72 265 82 273T103 292Q125 314 125 333Q125 351 101 376T51 432T26 492Q26 549 108 614T290 679Q326 679 335 678Q353 675 370 670T400 658T425 642T445 625T463 606T477 588T487 571T495 556T500 543L504 535L523 553Q553 581 569 595T619 632T686 667T757 678Q778 678 793 675T819 664T833 651T844 633T852 617Q884 548 910 548H916Q938 548 962 556L967 542Q967 540 947 531Q909 509 883 492T847 467T838 458Q825 419 825 328Q825 234 833 191T858 121Q875 94 892 77Q898 71 907 71Q912 71 928 76T957 87T971 91L972 88Q972 84 972 81L973 73L957 63Q891 21 806 -23L794 -30L783 -14Q766 13 728 60L713 79V372L724 384Q743 406 765 427T800 460L813 471Q809 472 806 472Q783 479 766 503T741 551T715 594T672 614Q644 614 622 595Q597 576 572 550T534 508L522 492"],79:[726,30,976,12,881,"254 595Q269 583 269 581L262 577Q256 573 247 566T228 549T212 527T205 502Q205 480 266 386T328 277Q328 234 239 150L221 134L231 133Q264 131 376 99T516 62Q567 50 604 50Q614 50 626 52Q643 57 662 71T703 115T739 198T753 323Q753 454 692 517Q652 555 584 565T382 577Q365 577 357 577H308L300 591L292 606Q292 608 342 665L392 724L403 725Q406 725 411 726H416L417 725L412 715Q408 705 408 698Q408 684 423 679Q431 677 516 672T663 655Q757 634 806 593T873 463Q881 421 881 380Q881 340 874 306Q859 223 809 147Q801 134 789 124Q595 -30 456 -30Q395 -30 289 3T147 36Q134 36 121 33T98 26T76 15T59 4T44 -8T32 -17L22 -7L12 4L56 59L100 114L116 118Q217 142 217 199Q217 230 185 276T120 365T87 430Q87 435 109 464T172 534T254 595"],80:[688,223,977,33,943,"247 398Q247 372 206 334T126 272T83 247Q82 247 72 253T61 261Q60 261 61 262T66 265Q127 306 127 343Q127 364 63 430Q42 451 38 458T33 480V490V497Q33 526 63 567Q112 632 170 660T282 688Q341 688 384 667Q454 633 482 566Q483 565 484 566T496 574Q562 623 630 653Q699 681 751 681Q778 681 797 673Q818 662 830 609Q835 580 843 564Q863 524 895 524H901Q917 524 932 528Q936 522 938 518T942 513T942 511Q873 480 836 454Q789 423 789 395Q789 362 834 298T880 200Q880 170 867 145T820 81Q733 -20 647 -20Q581 -20 499 21V9Q499 -16 502 -53T509 -116L512 -141L370 -223L357 -216Q344 -209 344 -208L348 -196Q370 -113 370 33V52L355 58Q307 76 284 76Q258 76 228 60T183 29T141 -11Q137 -7 133 -2L126 7L134 18Q181 89 210 121T278 170Q304 179 328 179Q336 179 358 177L370 175Q368 268 367 359Q367 416 363 434Q362 438 362 441Q348 527 302 574T203 621Q169 621 148 599T127 557Q127 535 187 476T247 398ZM673 315Q673 357 786 442Q786 443 776 444T750 449T727 462Q719 471 716 484V496Q715 507 715 515Q715 571 698 588Q680 611 643 611Q592 611 547 571Q534 558 511 522L499 505V139L543 123Q702 64 744 64Q770 64 781 79T793 112Q793 143 733 217T673 315"],81:[726,83,976,12,918,"254 595Q269 583 269 581L262 577Q256 573 247 566T228 549T212 527T205 502Q205 480 266 386T328 277Q328 234 239 150L221 134L231 133Q264 131 376 99T516 62Q567 50 604 50Q614 50 626 52Q643 57 662 71T703 115T739 198T753 323Q753 454 692 517Q652 555 584 565T382 577Q365 577 357 577H308L300 591L292 606Q292 608 342 665L392 724L403 725Q406 725 411 726H416L417 725L412 715Q408 705 408 698Q408 684 423 679Q431 677 516 672T663 655Q757 634 806 593T873 463Q881 421 881 380Q881 340 874 306Q864 250 838 196T791 126Q748 93 733 82L715 69Q714 68 723 60T748 40T774 23Q806 2 832 2Q849 2 870 6T904 14L917 17Q917 12 918 6V-3L882 -22Q806 -60 778 -73L755 -83Q640 -36 596 -7L586 0L576 -4Q513 -30 457 -30Q394 -30 289 2T149 35Q119 35 93 22T52 -4T36 -17T24 -7T12 4L56 59L100 114L116 118Q217 142 217 199Q217 230 185 276T120 365T87 430Q87 435 109 464T172 534T254 595"],82:[688,28,978,31,978,"31 498Q34 541 76 586T176 659T279 688H290Q377 688 429 653T506 569L511 558L526 572Q620 663 707 682Q722 685 737 685Q781 685 804 665T830 619T838 565T854 525Q866 511 897 511Q917 511 925 513L937 515Q938 515 941 509T944 501T925 493T870 470T803 438Q735 406 735 401Q735 400 741 399T767 390T814 374L828 367L829 307Q829 233 833 202T852 144Q873 109 896 90Q906 82 928 82T976 95V92Q976 88 978 72L807 -28Q768 39 733 87L718 108V149Q718 230 714 257T693 298Q654 333 580 333Q524 333 520 329Q520 300 489 224T443 133Q441 131 333 53T223 -27Q221 -26 204 -11T169 16T136 28Q110 28 66 -8L56 -16Q52 -13 40 -1L48 7Q165 124 211 124Q232 124 287 77L298 67Q309 73 337 97Q397 150 397 347Q397 419 379 474T330 560T269 604T207 619Q177 619 152 601T126 563Q126 540 185 479T244 387Q240 336 160 289Q144 278 98 255L80 246L62 261L79 272Q96 283 113 301T130 337Q130 353 115 373T81 410T47 451T31 498ZM524 358Q537 358 657 405T777 457Q777 459 768 459Q749 462 738 474T723 499T714 539Q706 585 697 599Q681 618 657 618Q632 618 597 595T532 515L525 502L524 441Q524 375 523 369Q523 358 524 358"],83:[685,31,978,82,905,"457 -31Q356 -31 272 6T135 120T82 304Q82 372 106 430T170 527T241 588T305 626Q341 643 386 657T460 678T495 685T554 660T674 609T778 584Q800 584 818 591T848 610T866 633T878 651T883 659L893 649L901 639Q879 574 803 532T666 490Q661 490 657 490T650 491T641 492T633 495T622 500T610 505T595 513T577 522T554 533T527 547Q436 594 415 602Q393 608 374 608Q303 608 253 545T202 386Q202 229 307 135T568 41Q674 41 748 85T822 198Q822 244 779 283T639 322Q595 322 499 303T383 283Q358 283 335 290T291 318T270 374Q270 418 313 460T424 510H431L435 505L440 500Q425 496 403 475T380 427Q380 382 431 373Q437 372 475 372Q543 372 626 388T742 404Q831 404 868 362T905 260Q905 182 831 108Q692 -31 457 -31"],84:[686,30,790,30,802,"666 641Q737 641 794 686L802 662Q790 648 734 596L677 541L664 538Q630 528 583 528Q540 528 482 537L461 541Q402 512 402 456Q402 427 439 387T512 311T549 253Q549 220 455 139L440 126Q541 75 586 75Q600 75 619 80T654 94T685 110T709 124T719 130Q722 125 725 119L730 108Q700 72 568 -18Q551 -30 542 -30Q495 -30 404 6T270 42H263Q213 42 142 -11L131 -19L129 -8Q126 1 126 4Q218 84 301 126L316 134H406L413 142Q436 165 436 189Q436 202 421 221T364 281Q336 307 318 328T296 356T283 381L290 394Q338 478 410 540Q419 549 417 549Q415 550 369 558T268 575T195 584Q153 584 127 567T100 523Q100 499 116 479T151 447T170 433Q170 429 171 428Q171 427 131 394T88 359Q82 363 73 370T47 403T31 457Q31 513 79 565T197 648T332 679Q369 679 490 660T666 641"],85:[688,39,851,18,871,"273 244Q273 281 244 331T186 428T155 502Q155 524 165 536Q239 634 333 688Q338 684 345 680L356 672L344 664Q310 642 295 624T280 582Q280 550 303 505T348 407T371 300Q371 270 362 248L247 123L358 92Q452 64 484 64Q507 64 523 72Q553 87 573 109Q583 121 586 146T593 283Q594 303 594 344Q594 401 591 461T584 558L581 595Q598 600 623 611T672 634T719 659T754 678L768 686Q770 686 784 673L782 670Q781 668 777 664T768 655Q747 635 738 616T721 535T714 359Q714 205 723 176Q727 164 744 133T771 89Q780 75 804 75Q814 75 853 87L867 92L871 73L671 -39L654 -10Q636 20 619 50T600 83Q600 84 589 75T539 34Q478 -16 475 -19Q469 -22 449 -28T414 -34Q410 -34 394 -32Q356 -28 282 -2L237 15Q169 38 126 38Q106 38 85 27T51 4T37 -8T27 -1T18 8Q18 10 70 63T124 116Q154 123 176 131T223 154T260 191T273 244"],86:[685,29,982,25,966,"133 343Q133 360 79 416T25 496Q25 523 58 563T118 624Q197 685 293 685Q331 685 339 684Q453 665 489 558L493 546Q521 570 553 596T640 653T725 684Q753 684 783 672T844 641T889 618Q895 616 912 616Q924 616 936 617T956 620T965 622T966 612V604L952 595Q924 576 895 549Q864 517 856 496T847 448V434Q847 395 848 388L859 323Q874 241 874 212Q874 142 830 96Q796 62 724 14Q661 -29 603 -29Q555 -29 421 28T242 86Q182 86 110 31Q105 28 102 26T99 25Q88 36 88 42Q95 54 222 142Q252 163 262 165Q319 183 344 218Q378 266 378 377Q378 444 362 494T319 571T266 610T212 623Q181 623 156 603T131 562Q131 539 154 512T206 458T243 416Q246 409 246 399Q246 387 242 377T225 351T178 311T94 259L79 251Q72 256 68 261T62 268L61 270L70 277Q131 318 133 343ZM822 526Q778 531 719 564T628 597Q611 597 579 574Q543 543 513 506L505 495L506 473Q506 469 506 461T507 449Q507 348 467 271L462 261L404 218L348 174Q349 173 356 173Q384 169 450 144L546 105Q665 56 708 56Q737 56 746 72T756 118Q756 129 755 135L741 219Q725 314 725 334V344Q725 416 736 431Q748 450 815 510L832 526H822"],87:[683,30,1235,26,1240,"133 317T133 338T80 413T26 496Q26 532 83 591Q100 608 111 616T151 644T219 672T304 682Q381 682 434 646T506 564L510 557Q513 557 534 573L677 665L707 683L790 561L803 572Q933 682 1001 682Q1037 682 1098 650T1193 616Q1208 616 1222 619L1235 622Q1239 622 1239 616Q1239 611 1240 609Q1240 608 1206 577T1138 503T1104 430Q1104 409 1123 330T1142 208Q1142 183 1136 147Q1127 118 1117 106Q1114 103 1031 48T935 -14Q930 -18 908 -22T862 -27Q826 -27 759 -6T647 26Q597 38 578 38Q573 38 561 33T533 20T505 4T480 -10L469 -16L452 -26L439 -28Q423 -30 411 -30Q358 -30 279 7T169 45Q125 45 58 -5L47 -14L41 -4L35 8Q35 11 56 29T113 75T181 125L200 139H217Q279 143 320 180T377 270T394 393Q394 453 378 498T334 568T277 605T213 617Q177 617 155 607Q140 600 130 587T119 560Q119 545 137 522T177 479T217 434T236 393Q236 324 98 251L89 246L76 253L63 261Q91 275 112 296ZM1088 526Q1066 526 1004 556T909 586Q863 586 816 539L802 526L804 514Q814 461 814 411Q814 319 781 238Q772 214 760 198T730 165T702 136L715 133Q759 122 848 90T973 57Q1003 57 1017 80Q1022 93 1022 116Q1022 152 1003 241T983 377V391Q983 405 985 409T1002 429Q1019 450 1045 475T1090 514L1107 528Q1104 527 1102 527T1096 527T1088 526ZM699 358Q699 391 696 419T688 467T675 503T660 530T642 550T626 563T608 574T593 582Q581 575 559 554T524 512Q523 510 523 477Q523 315 444 218L435 207L368 169Q301 132 301 131Q307 128 315 125L377 99Q476 57 515 57Q534 57 608 94L627 102L636 111Q699 187 699 358"],88:[681,35,849,32,835,"273 679Q354 674 408 633T477 525L484 533Q496 548 524 574T571 615Q594 633 625 649T675 673T699 681Q724 632 747 607Q754 601 756 599T765 594T777 591T794 590Q818 590 834 594V585L835 577L704 513L693 518Q657 534 631 560T597 599Q596 601 581 584Q495 490 489 379V366H562L681 369Q682 369 679 366T668 355T651 341L620 314H485V295Q490 190 543 125T686 60Q720 60 789 88L801 93V89Q798 83 798 66Q781 59 685 -10L665 -25L634 -30Q596 -35 594 -35Q570 -35 536 -23T477 19Q461 37 445 67T418 118L409 138Q401 131 388 120T340 79T273 28T206 -12T151 -31Q129 -31 90 -12T32 22L113 101Q114 101 120 96T136 84T160 69T189 56T221 51Q256 51 305 90Q376 149 376 301V315H293Q276 315 251 315T210 314T190 313L168 312Q168 313 200 340L231 368L238 367Q275 367 311 366H378V387Q376 470 355 512T291 572Q274 579 252 579Q223 579 197 568T156 544T131 519T117 508Q112 512 108 518L99 527L117 545Q177 604 255 665L273 679"],89:[688,214,984,34,878,"34 496Q34 518 53 549T107 610T195 661T310 682Q357 682 398 663T460 611Q467 600 475 583T489 554T495 542Q495 544 531 570T617 629T700 676L724 688Q742 670 756 657T784 635T806 621T830 606T856 592Q878 416 878 340Q878 154 805 -3L798 -20L779 -40Q706 -113 613 -163T421 -214Q359 -214 317 -196T256 -160L306 -63L313 -64L320 -66L326 -79Q337 -104 349 -120T392 -151T470 -166Q576 -166 644 -101Q750 7 750 292Q750 426 721 495T617 565H611Q563 565 513 509L506 501L508 493Q508 490 509 475T510 445Q510 319 458 236L451 225L436 216Q406 198 365 169T318 134L332 127Q336 126 397 103T489 80H493Q527 80 593 129L604 137L607 127Q610 119 610 116Q610 114 592 95T543 46T484 -4Q450 -27 446 -27Q441 -27 402 -18Q365 -9 290 20T188 50Q135 50 64 -7L52 -17L43 -7L34 2L51 19Q118 87 177 132L192 143H215Q259 145 289 155T335 184T355 214T366 245Q382 306 382 388Q382 426 381 436Q368 520 318 570T214 621Q184 621 165 608T142 583T137 562Q137 541 163 508L201 469Q245 425 251 408Q253 403 253 398Q253 383 240 366T212 335T161 295Q128 271 99 253L89 247L77 256L65 266L76 273Q125 301 134 329Q136 334 136 342Q136 357 124 372T88 410T49 455Q34 479 34 496"],90:[677,148,711,-5,624,"278 601Q242 601 212 591T167 570T121 533Q114 528 111 525L93 550Q223 661 244 667Q299 677 356 677Q415 677 456 666T515 634T541 596T549 555Q549 513 529 478T480 421T424 388T377 372Q365 370 365 367Q365 365 389 365T450 358T523 337T588 282T623 183Q624 177 624 161Q624 20 524 -60Q415 -148 285 -148Q242 -148 213 -139Q181 -131 159 -109Q136 -87 127 -56T114 6T104 49Q94 69 57 69Q38 69 13 58L1 53Q1 55 0 59T-3 68T-4 76Q78 130 138 142Q150 144 162 144Q213 144 227 120T242 31Q242 -30 263 -66T345 -102Q397 -102 444 -52T491 107Q491 172 471 211T428 265Q392 288 306 288Q269 288 233 284L218 282Q208 289 208 291L229 324L251 359Q250 360 248 360Q239 360 248 371L256 381H273Q344 385 378 409T413 495Q413 537 384 569T278 601"],91:[740,130,257,36,226,"226 711T225 711T86 699V-93H89Q94 -93 157 -96T223 -100H226V-119H223Q134 -119 42 -130H36V740H42Q61 738 156 736H226V723Q226 711 225 711"],93:[738,132,257,14,208,"69 732Q116 733 146 734T184 736T197 737T206 738H208V-132Q190 -129 160 -127T99 -125T66 -124H14V-103H19Q20 -103 84 -98T152 -92H158V699H151Q148 700 85 703T18 708H14V732H69"],94:[734,-452,590,1,584,"1 463T1 464T148 599T296 734Q584 486 584 485L561 472Q538 459 537 461Q296 672 293 672L161 563Q133 539 97 509T44 466L28 452Q27 452 14 457"],97:[472,32,603,80,586,"80 129V151Q80 241 99 363Q99 367 111 372T172 401T285 465L297 472Q340 455 405 443L423 440L455 453Q486 467 489 467L497 461L494 451Q480 390 480 292V283Q480 207 483 155L484 143L535 80L558 90L582 99Q586 95 586 83Q586 81 513 25L443 -29Q410 16 386 40L371 55V61Q371 63 371 67T370 74V80L278 25Q186 -29 184 -31Q182 -32 160 -12T112 35T80 75V129ZM359 366Q334 366 300 371T243 382L221 388Q218 388 212 375T200 323T194 228Q194 191 197 152L198 139L217 120Q245 92 269 74L279 66L304 78Q338 95 349 100L369 110V152Q368 164 368 210T367 275Q367 358 366 361V366H359"],98:[690,32,590,86,504,"99 398Q99 610 86 662Q86 665 95 669T106 674L108 669Q109 664 112 654T119 635Q122 626 125 616T130 601L131 596Q214 649 273 678Q295 690 298 690Q299 690 304 688T313 682L317 679Q275 653 240 612Q210 569 210 469V459Q210 450 210 432T211 406L212 378L285 425Q301 435 321 447T350 466L360 472Q360 473 361 473T368 471T401 456T465 429L501 414V408Q504 386 504 309Q504 255 500 203T491 125T485 97Q485 95 445 74T343 23T237 -24L214 -32Q197 -22 165 3T109 49T87 73Q99 169 99 398ZM386 251Q386 320 380 347V350L305 374L282 382L214 348L213 274Q213 184 214 165V131L230 119Q288 76 349 54Q386 137 386 251"],99:[473,26,464,87,424,"227 393Q215 393 210 351T205 269Q205 161 213 153Q220 145 244 125T290 88L312 72L365 92Q414 113 418 113V93L365 60Q255 -9 221 -26L211 -18Q158 21 91 88L90 107Q87 167 87 225Q87 267 90 302T96 351T100 366L295 473L311 470Q340 464 368 454T410 437T424 429L347 334L342 333H337L325 342Q299 363 271 378T228 393H227"],100:[632,28,589,-1,511,"88 117Q88 177 91 231T97 310T102 341Q102 343 118 357T168 397T239 447L257 459L268 454L278 449Q242 416 238 412L219 394Q219 391 216 378T211 349T206 307T203 249Q203 211 206 166L208 148Q224 132 261 108T333 70Q341 66 342 67T350 79Q393 157 393 302Q393 368 388 406V411L371 424Q199 558 101 558Q69 558 28 545L18 542L8 549L-1 557L24 569Q61 587 147 621L177 632Q179 631 194 627T216 621T240 613T269 602T302 589T340 571T382 549T431 522T484 488Q504 475 504 472Q511 449 511 365Q511 248 474 129L468 108L451 96Q427 77 347 28T254 -28Q235 -20 174 21T89 86L88 117"],101:[471,27,472,81,428,"309 69Q391 98 416 108Q418 106 422 100T425 92Q419 86 326 30T229 -27Q228 -27 207 -13T154 27T97 76L85 87L84 106Q81 152 81 194Q81 295 93 359L95 369L286 471L313 449Q376 397 414 372L428 362Q428 360 375 318L188 181V170Q188 156 189 153V148L203 138Q228 119 266 94T309 69ZM209 389Q208 388 204 366T194 307T187 244Q187 225 188 225T201 233L245 261Q283 284 291 291Q324 313 324 316L296 334Q280 343 259 357T224 380L210 390Q209 390 209 389"],102:[687,222,388,35,372,"128 400Q127 401 121 422T108 478T99 540V555L111 569Q135 597 165 626T214 671T235 687L249 678Q263 668 282 659T315 650Q335 650 362 666L372 654L286 569H271Q205 576 173 586V583Q173 558 208 492T252 401Q253 399 310 399T367 398L332 355H254V311Q251 160 235 16Q230 -28 226 -36Q225 -38 221 -45Q171 -140 121 -211L113 -222H104Q94 -222 94 -220Q94 -215 105 -187L121 -145Q139 -80 139 35V93Q139 222 135 314L134 354Q134 355 84 355H35L84 399H106Q128 399 128 400"],103:[472,208,595,17,541,"92 71Q92 74 91 88T88 128T86 183Q86 230 91 275T102 342T109 366Q115 372 207 422T305 472Q407 426 431 426Q435 426 476 445L519 465L525 463L532 461Q497 392 497 268Q496 255 496 233Q496 179 516 92T539 -10L541 -22L526 -38Q441 -126 355 -194L339 -206L327 -207Q324 -207 319 -207T310 -208Q242 -208 171 -179T73 -131L56 -141Q40 -150 38 -150Q17 -140 17 -137Q17 -136 18 -136T98 -79L176 -23Q174 -21 134 24T92 71ZM226 393Q224 393 221 372T214 312T210 235Q210 182 214 144L215 132L230 118Q281 70 301 66Q304 66 331 80T373 105L384 112L383 165Q383 224 387 309Q387 314 387 319T387 329T388 336T388 341V343Q388 344 381 344T339 354T249 384Q246 385 243 386T236 389T231 391T228 392L226 393ZM414 -80Q414 -64 411 -43T403 -1T394 37T386 66T382 79Q381 79 286 15T189 -52Q312 -125 365 -125Q397 -125 405 -115T414 -80"],104:[687,207,615,89,507,"95 661Q95 662 103 667T113 672L126 634L137 596L147 602Q235 656 275 677L292 687L303 680Q305 679 307 677T312 674L313 672L310 670Q307 669 301 667T289 660T274 649T259 634Q250 622 244 611T233 585T226 560T222 528T221 497T220 456T219 413V377L232 384Q244 391 271 409T339 455L362 471L383 461Q425 440 491 415L504 410V406Q507 399 507 269Q507 76 486 -21Q485 -30 483 -33T461 -57Q382 -139 299 -207L281 -197L263 -186L266 -185Q268 -184 280 -177T312 -155Q344 -130 353 -116Q394 -59 394 117Q394 162 391 216T386 301T382 335Q382 338 365 346T323 364T281 376L250 362Q220 347 219 347Q213 336 213 232Q213 177 217 144L218 128L224 119Q244 92 263 71L272 60Q206 21 157 -24Q156 -24 151 -16T132 11T98 52L89 62L91 103Q104 289 104 436Q104 471 103 506T101 568T99 616T96 649L95 661"],105:[686,25,331,3,327,"73 613L164 686L184 666Q200 650 214 637T235 620T242 614T203 577T162 540Q158 540 122 570T73 613ZM92 58Q92 63 94 83T98 142T101 234Q101 318 97 358V366L59 387L40 379L21 371Q20 371 12 376T3 382L38 406Q78 431 125 466L138 477Q149 468 186 444L219 422V389Q215 324 215 247Q215 136 222 123Q226 113 238 98T258 83Q263 83 292 94L322 104Q322 103 324 97T327 89Q327 88 317 82T272 52T190 -7Q166 -25 164 -25L112 35Q92 55 92 58"],106:[682,203,332,-19,238,"74 611L155 682Q172 666 186 655T208 636L235 614Q227 606 191 574L154 540L135 556Q101 582 84 601L74 611ZM10 377L144 477Q145 476 184 453T229 428L233 425V416Q238 346 238 252Q238 93 215 -16L213 -30L185 -57Q29 -203 19 -203Q17 -203 -19 -189L-9 -183Q52 -146 78 -116T114 -37Q120 31 120 192V237Q120 327 113 351T72 380L53 372Q34 362 32 364L10 377"],107:[682,25,464,34,432,"106 72Q110 105 111 193T114 294V308H74L34 309L83 346H115V430Q114 591 106 652Q105 662 107 665T114 668T123 672Q125 672 139 635L152 597L154 598Q156 600 160 602T167 607Q193 625 226 644T279 672T302 682L312 676L321 670L312 665Q281 649 263 626T241 587T233 547Q232 541 231 530T230 510T230 501Q231 501 265 522T334 564T369 583L380 570Q428 509 428 481Q428 475 427 470T423 459T416 448T404 434T389 418T369 397T344 371L321 347L365 346H409L372 308H227V294Q227 272 230 208T234 138Q234 136 256 119T302 84L324 68L372 88Q421 108 422 108T432 90L421 83Q373 53 270 -5L234 -25L204 -1Q172 25 124 60L106 72ZM336 434Q336 452 327 472T308 503T297 514Q296 514 290 510T275 499T264 490Q230 458 230 358V346H247Q268 346 276 350T302 372Q328 398 335 423Q335 424 335 428T336 434"],108:[681,24,337,100,312,"111 275Q111 406 108 518T104 650V657Q105 657 109 660T117 665T122 666L133 629L144 594L161 606Q218 642 272 670L294 681Q295 681 300 677T306 672L302 669Q298 666 292 662T278 651T263 637T251 621Q232 587 227 530T222 343Q222 226 230 125L231 112L244 98L258 83Q271 87 285 92L312 102V84Q297 72 231 24T163 -23L100 55Q110 141 111 275"],109:[476,31,921,16,900,"115 203Q115 257 114 291T112 338T111 355Q111 357 93 370L75 384L54 375Q32 366 31 365Q27 365 16 378Q25 383 89 430L152 476Q175 453 228 420Q229 420 229 418T229 410T227 394L225 369Q279 400 315 425T363 461T376 471Q480 424 514 416V412Q514 411 514 404T513 392L511 376L520 382Q529 387 548 399T584 422Q599 432 618 444T648 463L657 469H658Q661 469 681 461T735 440T796 420Q803 418 803 416Q801 414 798 390T791 325T788 247Q788 220 790 172T794 123Q799 115 814 97T835 78H838Q841 78 867 89L895 101Q896 101 896 100T897 92T900 78L873 62Q810 23 761 -12L736 -30Q735 -30 729 -22T707 7T671 48L661 59Q674 93 674 207V219Q674 341 670 344Q655 353 591 372L576 376L544 364Q511 351 510 351Q507 349 507 224V132L535 95Q541 87 548 78T560 63L563 58Q563 57 504 15T444 -28L385 53L387 67Q396 114 396 206Q396 289 393 334Q393 346 390 348Q369 358 306 373Q301 373 265 361L228 349V335Q227 322 227 284Q227 206 231 157Q231 151 231 144T232 133V129Q232 125 259 90Q286 56 286 53Q287 53 284 51T273 43T258 31L173 -31L166 -20Q160 -11 145 7T119 38T108 59Q108 62 110 81T113 133T115 203"],110:[473,28,654,5,608,"608 88Q572 65 535 37T477 -8T455 -25Q432 7 389 53L375 68L378 82Q386 160 386 195V221Q386 284 385 307L384 344Q352 359 306 373L286 379L213 353V273Q214 229 214 161V129L275 62L163 -28L150 -14Q136 0 121 16T91 44Q86 48 86 50Q95 83 96 148Q96 224 89 340L88 366L79 374Q69 384 67 385L64 388L55 383Q52 382 44 378T33 373L21 367L13 374Q5 379 5 381Q5 384 69 428L133 473Q135 473 147 464T179 443T215 424L214 400V376Q271 404 342 457L363 472Q363 473 364 473Q366 473 375 469T418 449T502 414L512 411V407Q502 330 502 217V197V132L523 109Q527 104 533 97T543 87T547 83L550 80L578 92Q603 103 604 103Q606 103 608 88"],111:[482,35,609,107,515,"107 102Q107 178 112 242T123 334T129 362Q129 363 140 368T199 400T315 469L336 482L346 476Q409 439 498 414L514 410L515 389Q515 208 502 141Q494 101 491 94Q490 89 478 81Q430 51 375 23T288 -20T254 -34Q250 -34 200 -1T119 56L108 65L107 76V102ZM389 355Q367 358 346 363T309 372T282 381T264 388L257 390H256Q254 390 249 381T238 348T227 293Q226 280 226 237Q226 183 231 146L232 131L244 122Q285 91 323 74T374 57H377L380 68Q405 154 405 267Q405 315 401 349V354L389 355"],112:[557,207,604,-1,519,"66 435Q66 445 117 501T173 557Q174 557 183 555T193 551Q174 526 174 509Q174 496 190 472T233 428V386L377 482L399 471Q450 445 509 425Q519 421 519 420L518 419Q518 418 518 416T517 410Q517 405 518 381T519 335Q519 222 501 137Q492 84 489 84L473 75Q457 66 423 44T354 -6L338 -19L329 -13Q320 -8 313 -4T297 4T284 10T270 14T258 17T245 20T233 22V12L241 -161L214 -172Q187 -184 160 -195T131 -207Q127 -207 112 -202L113 -188Q113 -182 115 -77T118 31Q118 32 109 32Q63 27 23 0L10 -9Q5 -4 -1 8Q1 13 52 57T114 101H115L117 123Q117 141 117 230V359L110 367Q85 394 71 421Q66 433 66 435ZM384 83Q386 83 389 110T396 180T400 254Q400 294 395 339L394 349L379 355Q308 383 294 383Q290 383 263 372L234 360L233 245V130Q270 125 305 113T361 92T384 83"],113:[485,211,596,87,515,"362 -196Q375 -92 375 47V78L282 24Q189 -29 188 -30Q187 -30 139 21T90 75Q87 84 87 158Q88 206 94 259T107 342L113 372L308 478L322 473Q374 452 421 444L433 442L503 485Q515 479 515 477Q485 378 485 56Q485 -100 494 -164V-171L381 -211L371 -207L362 -202V-196ZM280 72Q301 77 323 86T358 101T372 110Q372 268 377 346L378 358H374Q368 360 358 360T323 365T257 380L234 386Q231 386 229 379Q215 353 211 310T207 180Q207 152 208 150Q210 142 235 114T280 72"],114:[472,26,460,13,453,"23 367Q21 370 18 374T14 380L13 382L151 472L236 411L238 381L290 426Q298 432 307 439T322 452T333 461T342 467L344 469Q382 410 404 399Q410 397 416 397Q423 397 432 399T446 403L451 405Q453 405 453 399V393Q430 374 404 356T364 328T350 318L349 317Q321 320 276 356Q257 371 256 371Q253 374 249 366T242 351Q232 321 232 236Q232 214 232 205T232 182T233 162T235 148T238 137T242 129T249 120T257 114T268 105T281 95Q313 70 314 70L358 85Q377 92 389 96T402 100V90L403 80L229 -26L221 -18Q195 6 166 29T121 63T105 76T106 82T110 97T114 121T117 158T119 208Q119 269 114 329L113 341L103 350Q90 362 67 380L45 374L23 367"],115:[479,34,523,-24,481,"189 331Q190 304 196 282T207 252T214 244Q239 244 348 292L371 302L382 297Q398 290 415 279T433 265Q442 238 442 166Q442 103 423 45Q416 42 380 29T310 3T244 -26L227 -34Q139 40 73 40Q61 40 48 37T24 30T6 22T-8 14L-13 11Q-14 11 -18 18T-23 26T38 75T102 125Q107 128 146 131H153Q192 131 296 56Q318 40 318 43Q323 48 323 114Q323 157 321 177L319 194Q308 208 291 216T261 225Q239 225 160 185L123 167Q85 205 79 227Q78 230 78 304V377L171 428Q264 479 265 478Q268 478 287 465T334 440T384 427Q423 427 475 463L478 453Q481 446 481 442Q481 439 410 391L339 342H331Q309 345 277 361T222 391T198 406T195 399T191 372T189 331"],116:[648,27,393,43,406,"328 69Q401 102 403 102Q404 102 405 94T406 84Q406 83 318 28L230 -27Q223 -21 206 -5T171 25T132 54L124 60V71Q129 154 129 297V359H43L44 363Q44 365 44 367L45 369L48 372Q51 374 57 378T68 387L90 405H129V553L285 648Q304 641 306 640L260 598V592Q259 589 255 505T249 413V405H353V402Q353 399 328 379L303 360H245V319Q245 150 253 125Q257 115 276 101T311 78T328 69"],117:[472,32,589,9,603,"444 -31Q444 -29 384 66Q382 66 364 58T309 30T231 -17Q214 -29 212 -29L197 -20Q172 -4 140 11T88 34L68 42Q68 43 73 49T85 67T100 98T113 149T118 221Q118 272 105 332L100 356L58 383L23 365L9 379L76 425Q141 472 144 472Q144 471 183 443L221 414V404Q224 365 224 275V253Q224 159 196 113Q191 104 193 104Q203 104 285 72L308 62L374 89L375 106Q375 266 373 340Q373 364 371 396V424L430 445L491 467Q493 467 499 463T505 457Q505 456 503 442Q488 335 488 187V158L529 81L534 80Q541 80 568 90L598 101Q605 94 602 87L524 27Q445 -32 444 -31"],118:[546,27,604,56,507,"95 67Q104 80 104 193Q104 261 100 321L98 355L91 363Q56 402 56 421Q56 441 82 472T132 524T159 546Q174 542 175 542Q159 520 159 501Q159 481 205 432L221 415L220 401Q219 394 219 387L288 429Q309 441 325 451T347 465T358 472T365 476L504 415V409Q504 408 505 374T507 318Q507 155 474 91L469 80L343 26Q314 14 281 0T232 -20L216 -27L202 -15Q192 -5 152 28Q141 35 126 45T103 60T95 67ZM386 349Q302 389 287 389Q271 383 253 375L220 361V136Q226 120 256 100T312 68T342 56Q355 56 360 68Q389 134 389 258Q389 310 386 341V349"],119:[549,32,918,55,815,"90 58T90 59T92 64T97 78T102 105T107 150T109 218Q109 290 103 350V356L83 377Q55 407 55 425Q55 445 138 528Q158 549 162 549L164 548Q165 548 167 548T170 547L175 546L172 540Q168 533 165 523T161 502Q161 479 216 430L229 419V382Q232 382 366 471Q407 445 500 408L511 404V387L512 370L595 420Q678 469 679 469L693 462Q756 431 795 417L815 409L814 380Q812 187 782 96Q774 71 766 62T744 48T684 25T577 -23L557 -32L546 -26Q536 -19 519 -10T481 10T436 31T393 47Q384 50 380 50Q380 52 381 58T384 77T387 104Q391 174 391 256V292L390 333L377 340Q350 357 304 373L294 376L227 355V348Q224 322 224 243Q228 117 232 112L235 108Q238 103 245 95T257 80L281 50Q281 49 227 10T172 -29L159 -13Q133 19 116 36T94 56ZM652 64Q658 64 667 84T685 162T697 303V336L686 341Q653 356 619 367L591 376Q590 376 553 361T514 344T512 324T510 275T508 221Q508 167 510 152T521 126Q537 112 590 88T652 64"],120:[471,188,459,8,441,"8 -90Q8 -68 13 -63Q13 -56 53 -8T120 63L128 71L129 85Q133 120 134 182Q134 308 131 331T106 365Q100 367 97 369L75 381L35 365L20 377Q20 378 47 397T110 440T161 471L253 413V396Q253 378 254 378L309 422Q364 466 365 466Q365 467 366 466T370 461T376 454Q403 419 426 396L441 380L438 377Q438 376 433 372T420 359T404 344L372 314Q351 320 338 327T310 344T277 364Q261 364 252 316Q251 306 251 235Q251 136 255 129Q257 127 258 124T268 113T298 92Q334 68 335 68Q340 70 349 73T377 84T408 95T421 99Q422 99 422 90L423 82L334 26Q246 -28 243 -28L200 8Q156 43 148 43Q144 43 130 36T99 9T83 -36Q83 -67 121 -89T198 -118L237 -124V-129L238 -133L193 -160Q183 -166 171 -173T152 -184L146 -188Q140 -187 131 -185T98 -173T56 -154T23 -127T8 -90"],121:[557,221,589,60,512,"280 53Q272 47 246 27T199 -10T176 -27L167 -18Q137 17 107 44L90 60L93 71Q108 130 109 290V331Q109 339 109 344T108 353T107 359T105 364T102 369T97 374T91 381Q60 412 60 432Q60 448 86 479T138 534L164 557Q168 553 180 553Q163 532 163 511Q165 491 186 468Q206 443 231 423V404L232 385L371 477L389 468Q439 441 498 418L512 412V386Q512 360 507 190T500 14Q488 -26 445 -67Q401 -111 355 -148T282 -203T249 -221Q247 -220 230 -210T213 -199T229 -191T269 -172T306 -151Q361 -120 379 14Q391 92 391 182Q391 218 386 305Q384 339 380 341Q363 353 330 366T288 379Q282 379 258 368L230 356V181V141Q230 127 232 120T236 108T251 89T275 59L280 53"],122:[471,214,461,-7,378,"153 371Q141 371 126 365T100 354T78 340L65 331L57 338L50 346L62 356Q133 419 222 471Q274 453 306 422T338 366Q338 356 329 346T283 301L243 264L262 257Q298 246 361 214Q378 154 378 73Q378 33 371 -9T356 -74T345 -104Q340 -106 267 -160L191 -214H177Q60 -214 13 -150Q-7 -122 -7 -115Q-7 -112 19 -77T106 25T241 149Q241 152 227 158T181 173T109 185V190L108 194L158 229Q212 267 223 278T234 306Q234 329 208 350T153 371ZM258 1Q258 42 257 68T254 105T252 118Q235 105 210 85T144 22T102 -45Q102 -79 146 -106T234 -133H238Q248 -128 254 -80Q258 -58 258 1"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js deleted file mode 100644 index 21fa83f..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Fraktur-bold"]={directory:"Fraktur/Bold",family:"MathJax_Fraktur",id:"MJFRAKB",weight:"bold",Ranges:[[0,127,"BasicLatin"],[128,57343,"Other"],[58112,58128,"PUA"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js deleted file mode 100644 index eaaf4e6..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Fraktur-bold"],{8216:[708,-411,254,53,187,"187 456Q187 437 169 424T138 411Q114 411 84 454T53 538Q53 565 75 597Q109 648 155 697L166 708L181 694L173 681Q124 610 124 577Q124 549 155 511T187 456"],8217:[692,-394,254,58,193,"125 524Q125 545 92 588T58 651Q58 661 61 667Q65 674 80 683T107 692Q131 692 162 645T193 564Q193 540 176 509T144 460T87 394L78 400L68 406L79 421Q125 489 125 524"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/Other.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js deleted file mode 100644 index d3ad127..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Fraktur-bold"],{58113:[630,27,587,64,512,"388 427Q320 485 242 524T128 563H116Q95 563 87 561L77 559Q72 563 69 566T65 570T65 572L75 576Q106 592 154 611T212 630Q230 630 262 622T358 581T492 498L508 486Q512 463 512 396Q512 246 469 112L465 102Q453 94 341 25Q252 -27 247 -27Q243 -27 174 24T97 84Q90 100 90 214Q90 285 98 345Q100 360 102 363T118 377Q175 422 262 465Q264 463 270 460L277 456Q277 455 267 447T244 428T228 414Q206 382 206 269Q206 187 214 164T259 110Q286 89 342 58Q391 131 391 313Q391 355 388 412V427"],58114:[693,212,394,37,408,"39 362L37 366L38 368L82 405H133V474Q135 563 143 589T198 658Q210 669 224 676T247 687L255 690H253Q241 690 253 692Q254 692 256 692T260 693Q263 693 262 691L261 690Q300 690 361 662L373 656L388 666Q404 675 405 675L406 674Q406 672 406 670T406 664L408 655L301 555Q300 555 287 564T254 584T221 597Q190 597 176 583T161 550Q161 525 184 495T232 440T261 405H387V399Q377 389 364 379L340 359H258V315Q258 52 228 -18L172 -120L121 -211H109Q102 -212 96 -212L109 -174Q131 -108 135 -80T139 53V76V157V362H39"],58115:[681,219,387,36,384,"41 352Q40 354 39 355T37 358L36 360H37Q48 370 61 380L84 400H108Q131 400 131 402Q121 424 104 501L100 519Q109 560 134 602T196 664Q230 681 271 681Q291 681 316 669T358 644L373 631Q373 630 304 553Q299 548 294 547Q292 547 290 546H287Q286 546 274 562T243 593T205 609Q180 609 165 596T150 562Q150 526 191 488L217 462Q248 431 253 405V400H381L384 394L349 352H251V332Q249 271 231 17L227 -37L120 -217L109 -218Q103 -219 97 -219Q97 -218 101 -206T110 -177T118 -151Q126 -129 128 -120T136 -46T141 127Q141 250 136 340V352H41"],58116:[474,212,593,67,531,"107 370Q127 384 172 409T255 454T294 473L306 468Q356 446 425 431L435 429L524 468Q528 465 531 461Q499 395 499 271V263Q499 146 509 71T519 -8Q519 -28 512 -45Q510 -50 435 -123T355 -197Q296 -212 257 -212Q209 -212 164 -196T98 -167T67 -143L133 -44H144Q167 -88 216 -111T320 -134Q371 -134 390 -118T410 -69Q410 -52 404 -12T392 60T385 92L193 -29L158 5Q124 39 110 51L96 63V71Q94 79 94 121Q94 130 94 148T93 174Q93 230 96 275T103 344T107 370ZM221 397Q200 334 200 254Q200 170 210 140Q216 126 234 109T268 81L283 71L383 119V127Q384 132 384 241L385 347L368 349Q325 357 290 369T240 389T221 397"],58117:[684,27,393,33,387,"103 453Q103 631 95 661Q95 663 102 667T110 672L114 664Q117 655 123 641T131 621L140 597L154 606Q208 641 275 673L297 684Q300 683 302 682T307 679T310 678L314 676Q283 658 256 625Q238 601 231 579T223 515L224 512L282 548Q339 583 341 583T365 548T386 509Q326 443 318 443L316 446Q314 448 311 452T304 460T294 470T283 480T272 488T260 494T248 497Q231 497 223 474Q220 468 218 440T215 407V401H345L309 360H218V314Q218 181 221 139V129L253 108Q306 73 310 73Q315 73 343 83L373 92L374 87Q375 82 375 79T375 74T360 65T308 36T229 -13L208 -27L192 -13Q149 24 90 61Q89 61 89 62L90 68Q91 73 93 87T97 125T100 191T103 291V360H33V366L34 371L85 405H94L103 404V453"],58120:[679,220,981,31,875,"602 575Q505 508 505 489Q505 488 505 482T506 463T507 432Q507 314 456 237L449 226L434 216Q420 208 325 143L316 137Q453 82 488 82Q527 82 585 127L596 136Q597 136 599 126L602 115Q578 85 511 27T428 -31Q400 -31 308 10T170 51Q143 51 123 43T92 24T54 -15L34 6L41 14Q65 41 170 129L188 144L204 145Q254 147 293 164T350 208Q378 249 378 344Q378 422 362 478T320 563T268 605T213 618Q177 618 156 600T134 561Q134 539 162 508T217 446T245 394Q245 368 213 337T85 250L62 262Q73 269 86 279T116 308T133 338T108 378T57 439T32 499Q32 556 117 617T291 679Q350 679 393 658Q415 647 433 631T462 600T480 572T490 550T494 541T499 544T516 556T547 578T603 613T689 662L720 679L730 670Q742 659 756 649T785 629T810 615T836 601T855 590Q855 587 860 536T870 419T875 312Q875 114 800 -25Q794 -35 781 -47Q584 -220 398 -220Q322 -220 278 -190Q253 -173 239 -155L244 -150Q248 -145 255 -138T271 -120T290 -100T310 -80T328 -63T341 -51T349 -46Q350 -46 351 -46T354 -47Q357 -47 357 -52Q359 -68 364 -83T383 -118T424 -151T491 -166Q559 -166 613 -129Q629 -118 641 -108T674 -68T710 1T735 107T746 260Q746 433 727 507Q727 512 685 535T615 570L602 575"],58121:[717,137,727,17,633,"351 571Q317 571 247 563T171 555Q153 555 133 563T107 584Q94 605 98 609Q101 615 138 658T190 717H207Q204 710 204 699Q204 673 231 666Q235 665 264 665Q296 665 345 667T426 669Q474 669 501 660T545 626Q553 612 553 594Q553 531 498 474T379 384Q371 379 371 378Q371 376 390 376H411H434Q520 376 602 318Q621 303 627 288T633 234Q633 59 540 -34Q465 -109 348 -130Q308 -137 235 -137Q159 -136 143 -129Q132 -125 132 -118V-53Q118 -24 90 -24Q69 -24 37 -39L27 -44L25 -42Q23 -39 21 -35T17 -30Q17 -28 40 -14T103 19T177 44Q183 45 205 45Q219 45 227 44T245 37T259 20T264 -12Q264 -33 262 -48T259 -80Q259 -93 260 -95Q271 -110 305 -110Q343 -110 383 -86T443 -33Q491 34 491 154Q491 223 467 249Q428 288 334 288H322Q288 288 237 276L222 273L206 286L262 367Q279 369 303 377T358 403T410 452T431 524Q431 531 431 533T427 545T416 558T392 566T351 571"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/PUA.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js deleted file mode 100644 index 363800a..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Fraktur,{32:[0,0,250,0,0,""],33:[689,12,296,91,204,"102 582T102 620T112 673T152 689Q190 689 190 638Q190 605 167 373L148 187L133 184Q102 582 102 620ZM91 24T91 48T107 88T148 104Q171 104 187 87T204 48Q204 22 188 5T149 -12Q124 -12 108 6"],34:[695,-432,215,8,196,"33 436Q8 603 8 648Q8 663 9 671T19 687T43 695Q63 695 74 681Q76 678 76 650V623L66 532Q57 443 55 436V432H33V436ZM128 666Q128 691 162 691T196 668Q196 634 186 531Q176 441 176 432H166Q155 432 155 434L142 545Q135 603 130 647Q128 664 128 666"],38:[698,11,738,49,733,"181 520Q181 604 231 650T328 697L330 698Q333 698 335 698Q336 698 340 698T346 697Q390 697 418 670T446 604Q446 554 414 511Q384 467 300 417L283 406Q281 405 296 374T347 286T425 182Q466 135 469 135Q470 135 473 140T480 152T486 165Q509 210 509 263Q509 282 507 292Q498 317 488 332T465 352T443 359T418 361Q388 361 357 358L346 356L347 374Q347 394 348 396V399H355Q366 396 535 396Q663 396 689 398L703 399Q703 398 702 375T700 351L688 353Q655 356 601 357Q553 357 553 355Q562 332 562 294Q562 280 561 267T555 241T548 218T539 195T529 175T518 156T508 141T497 126L489 115L496 107Q549 54 596 54Q623 54 644 67T677 101T697 140T708 174L710 187Q710 188 710 188L711 190Q714 190 723 187T733 183Q733 179 732 172T726 145T714 107T694 66T665 27T623 0T569 -11Q500 -11 443 41L434 49L425 42Q348 -9 275 -9Q251 -9 233 -6Q187 -1 152 18T98 60T67 111T52 159T49 195Q49 231 60 261T96 315T141 354T197 390L208 397Q181 459 181 520ZM374 577Q374 607 356 629T311 651Q289 651 271 636Q242 614 242 559Q242 533 249 502T262 453T270 435T279 440T298 453T314 464Q374 503 374 577ZM127 217Q127 145 173 89T291 32Q318 32 347 42T393 63T409 75Q384 100 325 184T227 351Q223 366 220 366Q215 366 178 338Q127 298 127 217"],39:[695,-436,212,69,134,"69 666Q69 680 79 687T104 695Q112 695 117 694T128 684T134 659L104 438Q104 436 96 436T88 438Q88 447 79 540T69 655V666"],40:[737,186,389,114,293,"293 737V719Q291 718 285 714T276 708T268 702T258 695T250 686T241 674Q164 570 164 282Q164 -37 230 -119Q273 -171 292 -171Q293 -171 293 -179V-186H289Q270 -180 259 -175Q175 -132 145 -23T114 275Q114 491 157 598T293 737"],41:[735,187,389,89,276,"223 259Q223 386 212 474T178 609T136 677T89 714V735Q121 726 139 713Q276 622 276 273Q276 98 246 -23Q225 -106 189 -139T89 -187V-170L101 -165Q148 -146 172 -110T210 13T223 259"],42:[692,-449,278,34,234,"118 573Q118 575 76 602L34 629L50 647L55 652L66 642Q76 633 91 620T117 598L128 590Q128 663 125 687V692H151V689V687Q151 685 151 683T150 678T150 672Q145 628 144 605V592L219 652L232 634Q232 632 220 624Q195 610 155 582L146 575L158 567Q178 552 197 540T225 523T233 516Q233 515 226 506T217 495L152 549L143 555V530Q144 509 145 492T148 466T149 454Q149 449 142 449H125V462Q128 522 128 549V562L115 552Q88 531 59 506L45 495Q44 495 39 505T34 516L118 573"],43:[598,82,756,47,709,"357 584L399 598V282H709L702 263L696 243H399V-64L379 -73L358 -82Q357 -82 357 81V243H47L51 253Q52 256 54 263T58 272L62 282H357V584"],44:[107,191,278,99,213,"99 62Q99 82 114 94T144 107Q159 107 178 77T205 26Q213 5 213 -23Q213 -49 207 -65T181 -113Q128 -189 122 -191Q121 -191 116 -184T111 -174Q111 -173 122 -155T145 -111T156 -62Q156 -44 152 -34T127 4L104 37Q99 49 99 62"],45:[275,-236,756,46,706,"46 236L62 274Q62 275 384 275H706L699 255L693 236H46"],46:[102,15,278,87,200,"87 43Q87 69 104 85T142 102Q164 102 182 86T200 44Q200 20 183 3T141 -15Q118 -15 103 2T87 43"],47:[721,182,502,34,466,"230 270Q426 721 428 721Q437 719 447 717L466 713L448 672Q78 -180 77 -181Q77 -182 55 -182L34 -181L230 270"],48:[492,13,502,42,456,"212 -13Q184 -13 156 -2T101 32T59 97T42 195Q42 311 132 396Q170 433 211 462T262 492Q272 492 301 477T366 434T429 360T456 258Q456 161 378 74T212 -13ZM381 209Q381 257 365 295T328 355T282 390T243 408T223 413Q220 413 204 403T167 376T137 341Q119 305 119 250Q119 168 159 114T263 59Q308 59 344 93T381 209"],49:[468,2,502,47,460,"123 459Q145 459 170 460T217 462T256 464T284 466L295 467Q296 467 296 467T297 468Q299 468 302 466T307 462L309 459Q307 454 304 424T299 341T297 235Q297 139 298 101T302 55T313 44Q316 43 367 43L460 46Q460 35 459 22V-1H450Q402 2 281 6Q222 6 171 4T91 1T56 -1L47 -2V43H121H170Q195 43 201 45T209 56Q212 69 212 214Q212 333 209 365T194 409Q183 417 161 423T121 430L104 432Q103 432 103 446V459H123"],50:[474,-1,502,60,484,"104 384Q115 394 133 409T199 449T281 474Q321 474 351 447T385 378Q385 328 333 255T228 127T176 72Q176 67 183 65Q184 65 203 65T260 67T331 69L475 73L484 67Q484 64 472 33L460 1H60V17L107 61Q210 159 249 208Q309 283 309 331Q309 363 285 389T228 415Q212 415 184 403T134 379L114 367L104 384"],51:[473,182,502,39,429,"305 328Q305 372 279 396T214 421H211Q172 421 128 384L107 398L116 405Q151 437 191 455T251 473H260Q314 473 341 455T382 394Q384 386 384 367T382 338Q362 263 271 217L256 210L257 206L259 202Q260 202 272 201T296 198T324 192T355 179T384 157T410 123T427 75Q429 64 429 41Q429 -59 353 -120T183 -182L88 -164Q81 -162 69 -157T48 -147T39 -141Q39 -139 46 -127L53 -114L69 -122Q129 -149 171 -149Q218 -149 253 -131T305 -83T330 -26T338 29Q338 41 336 55T328 89T308 127T273 153Q228 171 162 171Q158 171 152 171T142 170H127V204H134Q232 214 275 257Q305 292 305 328"],52:[476,191,502,10,481,"299 -179Q306 -156 306 -48V0H11V7Q10 10 10 18Q10 23 154 236L298 449Q298 450 339 463L379 476Q385 473 384 470V466Q384 463 384 457T384 444T383 427T383 408Q381 328 381 248Q381 46 384 40H387Q422 40 460 44Q465 44 470 44T478 44L481 45Q481 43 478 24T473 1Q473 -1 464 -1Q462 -1 451 -1T430 0H387V-76L389 -156V-161L311 -191Q299 -181 299 -179ZM299 364H287L277 352Q234 297 186 224T112 104T79 43Q79 42 192 42H306V115Q306 300 299 359V364"],53:[458,185,502,47,441,"334 25Q334 99 296 134T207 169Q154 169 107 123L98 114L89 120L80 125V458H420Q420 456 409 418L397 379Q397 378 264 378H131Q130 377 128 376T125 374T124 371T122 368T122 363T121 356T121 345V279V190L130 186L140 190Q196 214 260 214Q311 214 348 197T404 153T431 99T440 42T433 -16T406 -76T356 -130T276 -169T163 -184H156Q110 -184 57 -163L47 -159L53 -147L58 -134Q61 -134 74 -139T110 -148T156 -153Q206 -153 243 -135T299 -87T326 -30T334 25"],54:[700,13,502,45,471,"45 240Q45 328 73 406T143 536T235 626T327 681T399 699Q400 699 404 699T411 700Q424 700 441 696T459 689Q459 671 451 637Q451 633 447 632L444 629L434 633Q413 640 384 640H377Q299 640 222 565Q182 531 156 463T129 315V306H136L149 315Q229 376 316 376H318Q393 376 432 326T471 213Q471 129 402 58T237 -13T93 59T45 240ZM391 172Q391 231 354 272T258 314Q230 314 200 302T154 279T133 262L134 249Q154 32 266 32Q315 32 353 64T391 172"],55:[468,181,502,37,498,"395 377L391 382H225Q59 382 59 383L74 423Q89 464 89 465Q90 468 94 468Q146 460 350 458H498V442L473 406Q241 75 125 -156L113 -181H40L37 -168L57 -140Q115 -58 199 70T339 287T395 377"],56:[705,10,502,40,461,"220 -10Q168 -10 131 6T75 50T48 103T40 157Q40 223 77 266Q103 295 156 328T225 375Q247 393 247 394L206 361Q205 361 193 368T164 391T131 426T102 474T90 531Q90 580 114 615Q146 660 238 698L254 705L262 704Q288 704 332 693T402 656Q434 620 434 568Q434 518 401 475T321 402L305 391L336 368Q339 366 353 356T372 343T389 330T406 316T420 301T434 283T445 265T454 244T458 222T461 195Q461 106 389 48T220 -10ZM350 545Q350 578 337 601T304 634T266 649T234 653L224 654L204 639Q196 634 191 629T182 621T176 614T173 609T170 603T168 597Q165 585 165 567Q165 497 261 424L273 415Q350 467 350 545ZM261 405L263 407Q262 407 261 405ZM258 403Q257 403 255 401L254 399L256 400Q258 402 258 403ZM252 398Q251 398 249 396L248 394L250 395Q252 397 252 398ZM245 36Q276 36 300 45T338 69T360 102T371 136T374 168Q374 211 341 255Q324 275 305 289T235 332Q231 330 215 321T193 307T173 292T153 271T138 247T127 216T123 177Q123 146 132 117T170 62T245 36"],57:[469,182,502,28,466,"353 93T352 93T320 79T251 49T201 34Q127 37 87 79Q28 138 28 234Q28 273 37 304T60 355T101 396T152 429T218 462L234 469H243Q348 461 395 417Q466 348 466 201Q466 72 397 -29T211 -163Q155 -179 91 -182H72V-154H80Q144 -154 202 -131T297 -60Q318 -31 333 7T352 68L357 92Q353 93 352 93ZM369 208Q369 240 362 272T339 339T290 394T214 415Q171 415 144 372T116 266Q116 193 154 144T238 95H249Q369 95 369 208"],58:[457,12,216,50,168,"50 377T50 400T64 440T99 457Q128 457 146 440T165 399Q165 375 146 359T102 342T64 359ZM53 19T53 43T66 86T103 105Q129 105 148 87T168 41Q168 17 147 3T102 -12Q80 -12 67 3"],59:[458,189,216,47,179,"47 399Q47 424 62 441T101 458T143 442T162 400T144 359T101 343Q78 343 63 360T47 399ZM76 86Q76 88 80 91T91 96T106 99Q119 99 131 86Q179 35 179 -25Q179 -64 146 -115T89 -189Q86 -187 83 -185T79 -182T76 -180T75 -177T77 -173T80 -168Q121 -108 121 -64Q121 -44 94 -5T66 52Q66 66 71 75T76 86"],61:[368,-132,756,54,725,"725 366Q724 365 721 349T716 331V329H385Q54 329 54 331Q55 332 59 349T63 368H394Q725 368 725 366ZM725 169Q724 168 721 152T716 134V132H385Q54 132 54 134Q55 135 59 152T63 171H394Q725 171 725 169"],63:[693,11,362,46,357,"46 557Q46 613 103 653T227 693Q287 693 322 659T357 564Q357 517 326 469T259 390T191 326T160 272Q160 240 187 221Q193 217 193 216Q182 209 170 200L147 184Q127 192 113 209T98 250Q98 290 193 376Q287 454 287 542Q287 581 262 616T188 652Q143 652 126 631T108 588Q108 559 140 527L79 490Q46 515 46 557ZM108 47Q108 68 123 85T160 103Q179 103 198 90T217 46Q215 24 201 7T164 -11Q142 -11 125 6T108 47"],65:[696,26,718,22,707,"22 505Q22 563 94 624T271 685H280Q416 685 443 560Q447 535 447 504Q444 414 405 330L399 319L229 155Q233 154 241 153T253 150T265 145T281 135T301 119T328 93L357 64L402 92Q438 116 473 137L500 154V339Q500 528 495 593V601L559 649Q621 696 624 696L638 686L629 677Q599 650 593 638Q582 614 581 504Q580 490 580 443Q580 314 584 238Q584 235 584 224T584 210T585 199T586 187T588 176T591 164T595 152T601 137T609 121Q630 77 640 77Q661 77 703 101Q704 95 706 90L707 86V84L636 29Q618 15 601 2T574 -19T564 -25L500 121Q499 121 399 48L299 -26Q298 -26 291 -15T272 11T245 42T209 69T165 80Q120 80 58 43L48 37L40 42L32 48L122 117Q196 173 241 211Q319 280 343 327T368 447Q368 535 317 582Q264 633 199 633Q155 633 122 605T86 542Q86 518 133 467T181 387Q181 348 140 309Q113 281 73 260L64 255L50 265L59 273Q112 307 112 345Q112 363 90 387T45 441T22 505"],66:[691,27,884,48,820,"48 506Q48 568 120 629T268 691Q362 691 425 594L431 585L441 594Q478 628 528 657T629 686Q665 686 687 670Q703 658 718 584T753 506Q756 505 763 505Q778 505 804 512L815 516L820 496Q820 494 808 490T774 476T732 454Q720 445 708 437L675 415L640 394L625 383Q626 382 635 382Q652 382 670 379T712 364T754 336T784 289T797 220Q797 172 776 122Q769 106 766 102T745 84Q654 11 619 -8T538 -27Q483 -27 387 10T249 47Q218 47 186 34T133 8T112 -5T104 7T97 21L196 82Q259 120 284 140Q333 181 351 214Q368 251 368 353Q368 588 228 620Q222 621 205 621Q160 621 139 596Q117 569 117 548Q117 526 162 470T208 387Q208 352 179 320T104 264Q88 256 86 256Q83 256 70 266L82 274Q134 309 134 343Q134 352 130 359Q118 377 100 401T72 439T56 470T48 506ZM453 528Q457 496 457 419L458 357L488 367Q554 390 622 425Q673 449 673 453L671 454Q669 456 665 460T657 473T648 498T639 541Q629 597 616 613Q599 633 567 633Q534 633 493 599Q471 577 457 540L453 528ZM713 176Q713 252 661 295T528 339Q512 339 494 336T466 330T455 325Q454 325 452 311T444 270T425 217L420 207L304 118L319 116Q381 111 475 74T602 37Q655 37 684 79T713 176"],67:[685,24,613,59,607,"299 585Q333 609 384 634T470 672L505 685Q506 685 513 662T531 613T548 580Q553 576 563 576Q575 576 605 585Q607 585 607 575V564Q537 532 496 527Q475 542 456 567T427 610T415 627Q410 627 398 618T382 603Q373 588 373 558T386 475T400 399Q400 337 366 303Q343 281 309 266T254 247T226 242L214 257Q214 258 223 260T251 272T287 299Q304 316 304 360Q304 396 289 451T274 532Q274 553 277 561V564H269Q205 558 172 501T139 358Q139 207 226 127T443 46Q448 46 457 46T470 47L485 48L601 106Q602 106 602 93V80Q551 48 517 25T474 -4T460 -13T443 -19Q409 -24 367 -24Q360 -24 351 -24T335 -23T326 -22Q190 -2 125 87T59 319V328Q62 412 96 487L101 500L118 512Q189 563 245 591L266 601L299 585"],68:[685,27,832,27,745,"346 611Q300 611 261 604T194 584T144 555T107 519T82 481T65 443T55 410T50 383T48 367L37 372L27 378V393Q33 524 115 603Q160 648 230 666T365 685Q423 685 434 684Q745 653 745 405Q745 281 694 151L687 133L657 103Q524 -27 470 -27Q456 -27 331 18T157 64Q122 64 84 28Q67 9 57 -6L50 -16L43 -8L35 0Q35 3 46 22T83 74T141 133H154Q208 136 253 161T299 230Q299 259 277 290T232 348T209 392Q209 434 254 479T358 556L368 561L382 550Q382 549 381 548T377 545T371 541Q353 527 326 496T298 444Q298 430 343 365T389 277Q389 240 353 202T267 136L252 127Q304 118 400 83T513 47Q548 47 582 79T635 145Q671 208 671 323Q671 390 651 441T599 524T523 576T436 603T346 611"],69:[685,24,663,86,634,"301 564Q240 564 203 507T165 361Q165 280 190 218T260 119T358 64T474 46Q491 46 499 47L511 48L628 106V80L499 -5Q498 -6 497 -7T494 -10T490 -12T485 -15T478 -17T468 -19T456 -21T439 -22T418 -23T392 -24Q252 -20 169 67T86 315Q86 409 124 491Q128 500 139 508Q211 560 272 591L293 601L325 585L338 594Q374 617 422 639T502 674L532 685Q533 685 540 663T557 614T574 581Q580 575 591 575Q600 575 616 580T634 585V564L623 559Q572 535 532 529L522 527Q491 547 442 627Q442 628 440 627T435 624T428 620Q410 610 405 597T399 559V553Q399 534 409 487Q419 431 427 369L476 400Q526 431 526 432Q531 426 537 420Q565 382 602 359Q611 353 610 352Q609 351 575 332T537 312Q536 312 505 335T463 358Q451 358 439 352T425 337Q394 243 263 223L251 221L243 229L235 236L245 239Q274 247 303 266Q320 277 325 290T330 336Q330 394 315 451T300 531Q300 549 303 561Q303 564 301 564"],70:[686,153,611,11,612,"198 617Q177 617 159 609T128 587T106 557T91 524T82 494T76 472L75 463Q74 463 67 468T59 474Q59 488 63 510T80 564T114 622T170 667T253 686Q272 686 295 680Q330 672 384 645T468 598Q498 580 524 580Q549 580 595 626L612 643V616L599 599Q522 500 482 500Q466 500 435 514L420 521Q388 516 349 486T309 415Q309 396 323 366T352 315T367 294Q367 293 375 301T398 322T429 352L490 410Q537 355 542 332Q542 330 531 315T510 286L499 273Q479 313 449 313Q437 313 419 303T390 282L378 271L394 250Q444 183 470 129Q484 96 484 71Q484 -19 402 -86T223 -153H220Q175 -153 137 -120Q103 -89 103 -8Q103 12 106 40T109 96Q109 132 103 146T72 161Q46 161 16 143L14 154L11 165Q88 219 143 219Q163 219 177 197T192 127Q192 102 186 65T179 4Q179 -60 210 -88T272 -117Q319 -117 362 -75T405 33Q405 72 363 139T278 271T235 368Q235 385 243 404T264 439T292 472T324 500T353 522T374 538L382 543Q382 544 351 562T274 598T198 617"],71:[690,26,785,66,710,"373 560Q373 543 378 509T388 448T394 421Q396 421 416 433T474 474T548 537L538 543Q481 570 452 628L487 659Q521 690 522 690L526 684Q529 677 535 667T551 646T575 625T607 608Q617 606 621 606Q644 606 660 622L664 600L497 455Q495 453 527 453H546Q628 453 665 407L666 406Q710 357 710 297Q710 196 631 109L621 98L577 69Q471 -7 452 -15Q413 -26 370 -26Q239 -26 155 59Q66 148 66 319Q66 442 113 505L191 552Q269 600 270 600H271Q273 600 280 596T293 589T299 586Q300 586 357 623Q413 659 415 659L426 649Q373 604 373 560ZM219 228Q305 262 305 329V343Q305 384 294 434T282 519Q282 562 287 567Q287 569 286 569Q222 556 191 520Q144 464 144 362Q144 213 228 128T420 42Q514 42 568 103T622 255V260Q622 320 578 357Q526 400 453 400Q434 400 410 396L399 394L400 378V372Q400 330 388 301T348 254T305 232T252 217Q245 215 242 214L234 213L226 220L219 228"],72:[666,133,720,1,644,"11 -16L1 0Q7 6 25 27T57 62T91 88T128 101Q159 99 195 66L203 59L211 67Q239 95 239 133Q239 158 210 213T152 330T123 430Q123 477 173 536T269 630T320 666Q376 610 440 606H443Q457 606 466 611T519 647L542 664Q543 664 543 654V643L522 622Q434 537 403 537Q388 537 366 543T329 555T293 570T270 580L261 585L253 574Q206 517 206 475Q206 452 218 416T242 356L255 331Q256 331 270 345T324 391T421 459L437 468H453Q545 463 608 421L618 415L623 392Q644 307 644 233Q644 97 612 9Q604 -10 601 -15T581 -35Q505 -104 467 -124Q446 -133 431 -133Q414 -132 399 -126T376 -115T368 -107Q368 -106 392 -75L415 -43Q432 -67 444 -73T472 -79H474Q479 -79 484 -78T501 -69T521 -50T538 -13T551 46Q558 97 558 180Q558 232 557 245Q553 277 547 300T528 349T488 389T424 404Q344 404 276 295Q272 288 273 285Q300 216 300 168Q300 161 300 156T298 145T297 137T293 129T289 123T283 116T277 107Q212 23 178 -13L166 -26L149 -9Q108 32 81 32Q63 32 21 -7L11 -16"],73:[686,26,554,30,532,"190 601Q161 601 137 587T97 553T71 512T55 477T48 463Q44 465 39 468L30 473L35 488Q73 594 106 636T199 685Q200 686 211 686Q250 686 326 652T417 617Q435 617 455 626T497 652T522 670Q532 660 532 654Q469 591 390 550L378 543L343 556Q223 601 190 601ZM378 208Q378 249 369 318T360 424Q360 430 360 439T361 451L362 462Q416 526 482 571L495 580L503 577L511 575L499 562Q442 502 442 465Q442 436 452 368T462 246Q462 169 442 128T385 56Q292 -26 195 -26Q150 -26 104 14L96 21L43 -16Q43 -15 43 -14T41 -10T38 0L48 13Q76 50 123 97L150 125Q154 131 159 131Q166 131 171 116T182 81T193 53Q199 43 216 33T261 22Q307 22 344 68Q378 113 378 208"],74:[686,139,552,-10,522,"194 601Q175 601 155 590T121 564T95 533T76 506L69 495Q55 503 55 507Q55 509 60 521Q87 586 132 636T222 686Q251 686 289 660T363 607T422 580Q442 580 466 588T506 604L522 612V591L487 574Q371 517 359 517H357Q332 522 280 561T194 601ZM383 39Q383 96 356 203T329 361Q329 364 329 370T330 378L331 388L339 399Q362 429 394 462T446 513T469 531Q470 531 477 527T484 521L474 509Q411 434 411 379Q411 341 434 223T458 82Q458 1 390 -69T239 -139Q191 -139 162 -123T123 -83T108 -30T101 23T88 64T52 80Q27 80 -4 64L-10 80Q-5 85 13 98T63 128T118 144Q149 144 163 129T179 93T182 38T187 -19Q199 -96 278 -96Q294 -96 309 -91T343 -73T372 -31T383 39"],75:[680,27,668,17,682,"154 37Q219 41 219 142Q219 203 190 302T160 434Q160 445 172 472T209 534T269 602T354 657T460 680H472Q576 680 618 617V599Q618 578 615 555T608 517T602 501Q596 495 587 495Q586 495 586 499Q586 500 586 505T585 513Q567 628 415 628Q384 628 356 621T302 596T260 546T244 466Q244 416 258 377L261 367L276 382Q294 401 317 422T386 471T468 500Q500 500 518 477T544 422T554 386Q555 382 560 376T576 364T601 357Q612 357 623 361Q623 360 621 351T617 340L541 305L465 272Q469 271 476 270T488 266T502 260L512 255L519 242Q533 211 546 157T564 93Q584 53 617 53Q649 53 682 74V54L675 46Q646 17 612 -5T554 -27Q546 -27 538 -23T517 -9T494 28T478 91Q465 172 448 200T378 228Q337 228 289 207L288 196Q288 160 284 138Q283 125 262 98Q185 1 112 -24L102 -27L91 -25Q47 -13 17 31Q17 33 49 69L80 106Q111 37 154 37ZM421 434Q411 436 405 436Q370 436 336 407T275 337L267 325L271 313Q288 257 288 234Q289 234 395 276T502 319Q501 320 499 323T493 330T485 345T475 371Q473 378 468 388T449 416T421 434"],76:[686,26,666,33,644,"251 231Q251 254 206 341T160 468Q160 529 238 605Q313 677 425 685L432 686Q440 686 445 686Q520 686 545 657T571 576Q571 548 568 517T564 480Q564 466 572 460T608 452H623V431L619 430Q618 430 611 428T591 423T566 417L516 404Q497 415 491 419T480 433T475 461Q475 470 477 498T480 546Q480 561 480 569T474 592T459 615T429 631T379 638Q322 638 283 606T239 526Q237 480 280 394Q319 310 320 268V250Q308 235 244 169L203 128H210Q215 128 256 112T357 80T466 64Q526 64 564 88T625 186L629 196Q643 187 644 186Q618 70 604 41Q577 -15 513 -24Q496 -26 476 -26Q418 -26 344 -3T211 45T133 69Q115 69 97 50T65 7T49 -20L45 -16Q41 -11 37 -6T33 0Q33 8 66 69T111 134Q251 156 251 231"],77:[692,27,1050,27,1048,"687 578Q690 586 719 612T794 665T877 692Q909 692 926 670T953 614T973 570Q983 561 1000 560Q1023 560 1048 569V553L1034 546Q1003 528 972 504T933 466Q905 403 905 264Q905 205 909 172T920 126T940 91Q951 74 959 74T997 87L1027 100V79L956 27Q940 15 922 2T894 -19L885 -26Q883 -26 854 27L825 80V192Q826 314 830 341Q831 345 833 356Q840 398 844 404Q871 444 920 489L917 491Q914 493 911 495T903 501T898 508Q893 516 877 562T852 616Q840 628 818 628Q751 628 702 541L697 532L700 515Q708 467 708 419Q706 348 690 276T662 169T643 126L634 116Q626 105 611 87T581 51L522 -22L514 -15Q470 21 452 21Q431 21 394 -16L384 5L386 9L426 60Q449 87 460 95T486 104Q487 104 491 104T497 103Q514 99 541 81L559 69Q595 96 606 169T618 350Q618 486 598 543T517 601Q484 601 458 570T432 523Q432 516 434 492T436 443Q436 250 369 133L363 122L280 50Q207 -16 192 -27L182 -18Q136 26 106 26Q83 26 62 9T37 -16L27 0L33 10Q41 22 54 39T94 81T143 106Q178 106 225 62L235 53Q283 82 307 117Q352 190 352 359Q352 408 345 451T320 534T267 597T183 621Q159 621 147 617T120 598Q97 574 96 556Q96 528 143 469T191 377T161 311T102 262T70 245Q69 245 59 252T49 260L56 264Q63 268 73 275T94 291T111 312T118 338Q118 355 95 384T50 446T27 506Q31 567 101 626T255 686Q297 686 330 671T382 632T409 595T421 572V571L430 580Q454 610 496 634T588 659H590Q655 659 683 585L687 578"],78:[686,25,832,27,825,"112 334Q112 356 70 410T27 497Q27 553 94 619T229 685Q230 685 236 685T246 686Q303 686 349 654Q373 636 392 607T419 558L426 538L454 576Q474 604 486 618T520 651T569 678T633 686Q668 684 687 673T713 651T730 609Q730 608 732 600T736 588T741 578T747 568T754 561T765 555T779 553Q789 553 817 562Q819 557 819 555V547L790 526Q743 492 730 479T712 447Q697 369 697 281Q697 166 726 108Q741 76 755 68Q759 66 767 66Q789 66 825 93V82Q825 71 822 70Q821 69 763 27T701 -18L692 -25L668 15Q662 25 650 45T635 70L627 85V107Q627 122 626 162T624 285Q624 381 632 398Q638 409 651 425T675 454T696 477T707 489H696Q683 490 679 492T669 507T653 551Q642 588 627 608T584 628Q572 628 560 625T538 616T519 602T502 586T486 568T473 549T463 532T454 517T448 504L445 497Q437 480 437 474Q437 472 439 461T444 421T446 348Q446 205 405 124Q396 105 392 100T368 78Q312 32 278 9T235 -18T214 -22Q191 -22 170 -10T139 12T129 25T160 66T192 105Q193 102 194 98T200 83T213 64T233 49T261 42Q303 42 339 90Q373 134 373 268Q373 397 339 493T235 618Q215 628 191 628Q155 628 126 604T97 548Q97 524 120 493T168 431T192 381Q192 346 164 318T86 260L70 250L54 266L63 272Q112 300 112 334"],79:[729,27,827,12,744,"428 596Q412 596 386 595T350 593Q289 593 270 625Q267 632 267 640Q267 656 280 672T312 705T336 729H343Q351 729 351 728Q342 710 342 703Q342 683 382 676T493 662T604 643Q648 627 677 599T720 535T739 466T744 392Q744 317 732 260T696 166T659 116T621 83Q617 80 615 78Q485 -27 377 -27Q320 -25 272 -9T187 21T122 36H116Q65 36 29 -13L27 -15L12 0Q12 1 32 26T76 78T109 109Q145 123 166 150T187 207Q187 244 134 318T80 412Q80 454 112 498T176 566T213 590Q216 590 224 585L234 580L225 573Q216 566 207 557T188 536T172 511T165 484Q165 448 213 368T261 259Q261 241 252 219T228 179T200 146T176 122L167 112Q170 111 174 111Q188 110 233 91T339 55T453 37Q508 37 556 68T626 152Q655 219 655 328Q655 543 532 582Q484 596 428 596"],80:[692,218,828,28,804,"112 339Q112 354 91 380T49 438T28 497Q28 565 95 628T242 692Q261 692 277 689T307 682T331 670T351 655T367 637T379 619T388 600T395 582T401 565T405 550Q409 554 422 570T453 603T500 641Q573 692 637 692Q656 692 670 686T692 672T705 647T713 618T718 584Q720 568 721 562T728 546T742 534T768 530Q776 531 782 532T791 535T796 536Q799 536 804 521Q801 519 789 513T764 499T738 480Q697 447 680 414Q677 407 677 396Q677 370 713 312T750 210Q750 125 686 57T560 -11Q540 -11 475 13L410 37V31Q410 -9 412 -50T417 -118T420 -150Q419 -150 373 -184T326 -218L305 -208Q305 -207 307 -196T314 -165T322 -116T328 -46T331 43V63L318 66Q270 80 250 80Q233 80 213 70Q183 57 138 -3L128 -16L118 5L125 20Q193 154 282 154Q309 154 331 146V287Q331 444 327 469Q321 522 301 560Q284 590 251 611T184 633Q146 633 119 607T92 550Q92 539 94 534Q100 516 143 460T186 386Q186 366 170 336T119 281Q102 264 70 250L49 260L56 266Q64 271 72 278T90 296T106 317T112 339ZM602 345Q602 357 608 371T622 397T642 421T661 441T678 456L686 462Q663 473 652 486T639 512T634 553Q631 594 624 608T593 631Q587 632 567 632Q539 632 497 600T416 497L410 484V122L467 103Q481 99 502 92T533 82T557 75T578 69T594 66T610 64Q647 64 672 87T697 144Q697 180 650 250T602 345"],81:[729,69,827,11,782,"428 596Q412 596 386 595T350 593Q313 593 291 605T268 638Q268 644 269 648T274 658T284 669T301 689T326 718L336 729H343Q351 729 351 728Q342 710 342 703Q342 683 382 676T493 662T604 643Q744 592 744 398Q744 299 708 213T646 104L603 68L614 55Q670 -5 710 -5Q726 -5 744 1T772 14L781 20Q782 20 782 7V-6L771 -13Q673 -69 665 -69L647 -63Q552 -30 514 8H512Q509 8 500 3T471 -9T428 -23Q405 -27 377 -27Q305 -24 228 6T124 36Q69 36 27 -16Q23 -13 19 -8L11 0L27 20Q93 102 109 109Q145 123 166 150T187 207Q187 244 134 318T80 412Q80 454 112 498T176 566T213 590Q216 590 224 585L234 580L225 573Q216 566 207 557T188 536T172 511T165 484Q165 448 213 368T261 259Q261 241 252 219T228 179T200 146T176 122L167 112Q170 111 174 111Q188 110 233 91T339 55T453 37Q508 37 556 68T626 152Q655 219 655 328Q655 543 532 582Q484 596 428 596"],82:[686,26,828,27,824,"27 496Q31 569 102 627T234 685Q236 685 241 685T251 686Q287 686 318 672T367 638T399 598T418 564L423 550Q424 554 434 567T463 601T505 639T561 671T626 685Q672 685 688 659T710 572Q713 533 721 523T766 513Q781 513 787 514T794 516Q796 512 798 509T801 504T802 501T787 493Q702 461 624 401L607 389Q655 383 688 358L697 352V342Q699 330 699 297Q704 209 710 173T734 103Q751 69 765 69Q769 69 806 83L824 90V74Q823 73 759 24T693 -26Q692 -26 660 32L628 90L629 111Q631 159 631 177Q631 278 614 300Q584 340 523 340Q500 340 467 333T431 325Q429 325 429 322Q428 321 426 308T420 275T410 230T392 178T366 125L358 112L342 99Q306 70 269 38T213 -10T193 -26Q192 -26 163 0T116 26Q82 26 50 -8L42 -16L35 -8L27 0L35 10Q43 21 58 38T104 80T158 106Q179 106 218 65L235 48Q238 48 255 60T295 99T329 158Q352 231 352 359Q352 555 242 614Q210 628 187 628Q140 628 116 600T91 548Q91 522 138 464T185 382V376Q185 345 158 313T103 263L76 246Q74 244 64 253L54 260L65 267Q91 285 100 302Q111 318 111 337Q111 355 69 410T27 496ZM562 628Q504 628 443 507L435 491L436 479Q437 471 437 446Q437 396 432 351L529 389L602 426Q673 462 673 463H672Q644 470 637 483T622 553Q608 628 562 628"],83:[692,27,829,66,756,"750 276Q750 141 645 57T378 -27Q224 -27 146 67Q66 163 66 307Q66 361 80 412T127 515T217 609T356 676L388 684L420 692L442 681Q545 625 586 608T654 591Q688 591 710 609T737 646L742 665Q742 665 756 654L752 642Q736 594 706 566T621 515L607 510Q580 513 528 542T421 599T335 627Q272 627 214 569Q139 500 139 373Q139 308 159 247T217 136T316 56T455 26Q520 26 566 43T634 90T666 148T676 207Q676 264 649 297T580 338Q574 339 552 339Q516 339 442 325T327 310H324Q303 310 290 312T259 328T232 369Q230 375 230 390Q230 426 259 461Q286 488 338 507Q351 498 351 495L346 492Q342 490 339 488T330 482T320 473T312 462T305 447T303 428Q303 368 366 368Q393 368 487 388T613 409Q656 409 696 385T748 306Q750 294 750 276"],84:[701,27,669,34,676,"289 686Q338 686 439 668T565 649Q606 649 641 672Q656 683 664 690T674 700L675 701Q676 698 676 692V681L641 636Q608 591 602 588Q577 575 528 575Q490 575 438 583L426 585L416 578Q335 520 335 465Q335 437 393 366T452 259Q452 226 406 171Q387 146 351 115L341 106L358 97Q438 58 475 58Q525 58 598 124L608 133Q617 119 617 118Q617 114 606 103Q513 0 448 -27L438 -25Q401 -19 337 14T234 48Q186 48 122 -3L112 -11L106 -3L101 5L110 15Q160 63 209 105L224 117H310Q384 163 384 210Q384 238 329 303T263 398Q262 400 262 404Q262 427 290 476T368 580Q383 596 381 596Q315 622 228 622Q159 622 118 593T76 516Q76 482 96 461T139 431L107 399L75 367Q34 403 34 472Q34 525 64 572T148 652Q207 686 289 686"],85:[697,27,646,-25,665,"160 247Q160 291 110 382T59 505Q59 542 106 597T207 690L218 697L229 682Q229 680 216 669T187 644T158 604T144 552Q144 526 165 482T207 387T228 291Q228 277 228 267T224 247T219 232T210 217T199 202T184 184T166 163L118 107Q124 105 132 105T160 98T220 77Q298 47 317 47Q354 47 409 105Q444 142 451 161T458 244V277Q458 339 455 457T447 596L575 686L591 676L583 668Q550 632 541 587T532 449V372V298Q532 198 550 147Q572 79 605 79Q617 79 631 84T656 95L665 100V79L595 27Q578 15 560 2T532 -19L523 -26Q522 -26 490 42L458 111L397 50Q389 42 374 27T355 8T340 -5T325 -16T311 -22T294 -26T274 -27Q232 -25 152 6T35 37Q28 36 19 30T4 18T-8 4T-16 -5Q-25 10 -25 11T-20 18Q-5 34 15 57L54 101Q70 103 86 116Q94 121 113 140T137 166Q160 201 160 247"],86:[687,26,831,26,825,"54 266Q118 307 118 339Q118 360 74 413T27 493Q26 530 59 578T133 651Q187 686 256 686Q299 686 332 673T382 640T409 600T424 567T429 553Q431 553 463 586T542 653T624 686Q663 686 715 652T798 617Q812 617 825 622V606L815 599Q785 576 762 546Q724 495 724 432Q724 397 737 317T750 217Q750 148 711 96Q697 75 639 34T578 -10Q563 -21 555 -23T522 -26Q458 -26 363 29Q253 89 211 89Q192 89 173 83T139 67T114 49T96 34L90 27L80 43L95 59Q121 87 148 110T191 143T213 154Q261 154 300 195Q328 222 340 267T352 406Q352 562 255 611Q222 627 187 627H182Q143 627 115 598Q96 579 96 559Q96 528 144 470T192 381Q192 348 156 314T80 256L70 250L54 266ZM727 548Q701 550 650 583T567 617Q560 617 554 615Q532 610 501 580T445 501L437 485V465Q432 326 378 223L294 150Q321 143 421 87T560 31Q608 31 634 64Q660 102 660 198Q660 226 655 292T650 387Q650 418 658 452L660 462L735 548H727ZM264 150Q265 151 263 151H261Q261 150 264 150ZM280 150H276V149Q280 149 280 150"],87:[686,27,1046,32,1054,"32 501Q35 564 103 625T264 686Q326 686 365 652Q402 618 420 564L441 585Q486 630 539 670L559 686L572 672Q637 606 665 559L682 576Q787 686 845 686Q877 686 929 656T992 623Q999 621 1016 621Q1041 621 1054 628L1051 617L1047 606Q1042 602 1037 597Q983 557 969 522T954 434Q954 394 961 336T968 221Q968 201 966 184T963 155T956 131T948 113T936 96T923 82T906 66T887 50L816 -2Q815 -3 810 -6T801 -11T791 -16T777 -20T759 -23T735 -25Q691 -25 619 4T505 37H496L463 21Q420 0 389 -20L378 -27H362Q316 -27 275 -9T202 28T150 46H146Q114 46 59 -5L48 -16L41 -6Q40 -4 38 -2T34 2L33 4Q33 8 77 54Q111 87 142 112L154 122H166Q239 127 288 182Q346 244 346 406Q346 489 326 537T259 610Q227 628 195 628Q155 628 128 606T101 549Q101 517 146 465T192 382Q192 348 156 310T85 254L75 250L64 258L55 266Q56 267 74 276T105 301T118 339Q118 362 75 413T32 501ZM952 547Q927 555 877 586T796 617Q744 617 682 525L676 516L677 498Q678 486 678 425Q678 301 652 206Q649 195 613 151T577 102Q577 100 582 100Q618 100 720 51Q761 32 790 32H794Q843 32 869 83Q884 110 884 189Q884 233 879 294T873 400Q874 433 879 451T889 478T915 507T952 547ZM241 105Q249 98 263 88T317 60T393 42Q478 42 547 109Q607 171 607 358Q607 371 607 380T604 417T595 467T577 517T546 566T500 601L479 580Q449 550 433 526L426 516V503Q426 311 357 200L352 191L296 149Q241 107 241 105"],88:[688,27,719,28,709,"96 511L78 527L149 603Q207 666 227 686L237 685Q278 680 306 667T351 631T376 588T395 533L400 516L406 527Q439 600 523 653Q538 664 587 688Q589 688 596 672T613 635T629 606Q643 588 665 588Q677 588 693 596L709 603V585L607 526Q583 536 554 564T512 614Q461 571 435 507T405 381V367H581L563 347Q561 344 558 341T553 335T549 330T546 326L545 325H541Q537 325 488 329T411 334H405V325Q405 198 454 123Q497 54 568 54Q594 54 619 64T660 84L676 95V74L565 -16L553 -20Q528 -27 512 -27Q492 -27 475 -21T444 -5T418 19T398 47T382 77T371 105T363 128T358 145L357 151Q354 151 339 136T294 91T232 37Q152 -22 113 -22Q90 -22 69 -9T38 17T28 32Q28 33 58 68L86 101Q94 81 115 64T165 47Q206 47 249 84Q302 128 325 222Q334 263 336 312V334H312Q198 334 163 324H161Q162 326 182 348L198 367H336V398Q333 508 308 550Q295 570 274 585T227 601Q204 601 181 589T145 565T115 533T96 511"],89:[686,218,833,27,740,"123 345Q123 358 75 415T27 496Q27 533 63 578T121 639Q181 685 256 685Q305 685 332 676T384 635Q419 588 425 542Q468 585 526 628T618 686Q632 667 658 645T704 609T724 594Q740 512 740 385V375V361Q740 128 682 -3Q656 -64 554 -141T361 -218Q319 -218 287 -203T243 -173T230 -150Q230 -148 267 -109L304 -69Q311 -115 341 -142T411 -170Q474 -170 534 -119T624 11Q660 111 660 312Q660 447 633 528L612 549Q578 583 552 596L543 601L528 592Q501 574 483 558Q454 528 436 494L431 484V473Q431 330 376 230Q366 213 359 206T306 159L250 112Q278 105 327 82T399 58Q421 58 440 69T471 92T484 104H485L493 90L480 73Q453 39 429 13Q393 -22 372 -22Q342 -22 260 15T153 53Q97 53 48 -16L38 5Q46 22 74 54T128 108L143 122H155Q226 127 275 168Q352 236 352 399Q352 501 309 564T197 628Q156 628 129 607T102 553Q102 517 147 463T192 383Q192 323 75 250L59 266Q123 314 123 345"],90:[729,139,602,11,532,"148 590Q95 592 91 627V633L160 729H176Q169 713 169 705Q169 670 244 670Q269 670 305 672T357 675Q405 675 432 661T468 609Q469 605 469 596Q469 572 460 540Q433 463 301 372Q325 378 359 378Q431 378 472 350T519 297Q532 249 532 198Q532 115 500 40T442 -57Q335 -139 202 -139Q165 -139 125 -131L112 -129V-100Q112 -49 106 -33T75 -17Q55 -17 31 -35L22 -42L11 -26L22 -18Q94 36 151 36H160Q171 36 178 33T188 27T194 13T196 -5T197 -32Q198 -79 206 -90Q217 -107 251 -107Q336 -107 389 -33T442 155Q442 240 407 274Q362 319 285 319Q236 319 192 298Q188 298 181 309L224 372Q227 373 234 374T246 376T257 379T271 384T285 391T302 402T321 417Q384 471 384 540Q384 562 366 581T306 600Q292 600 233 595T148 590"],91:[740,130,278,117,278,"262 -119Q224 -120 191 -123T141 -128T118 -130Q117 -130 117 305V740H122Q141 737 219 736H278V723Q278 711 277 711L159 699V-93H162Q167 -93 220 -96T276 -100Q278 -100 278 -109V-119H262"],93:[739,131,278,-4,160,"64 733Q89 733 110 734T143 737T158 738H160V-131H154Q101 -125 40 -124H-4V-103H1Q3 -102 57 -98T113 -92H118V700L64 703Q7 707 3 708H-4V732H21Q34 733 64 733"],94:[734,-452,500,0,495,"0 464L250 734L262 722Q274 712 384 598L495 486Q483 478 467 467L456 459L248 672L154 580L23 452Q17 454 10 458T0 464"],97:[470,35,500,66,497,"86 363Q86 365 128 391T212 444L255 470Q256 470 263 465T283 453T308 442Q338 431 346 431Q350 431 358 436L414 465L421 459L418 434Q404 339 404 262Q404 147 408 119L425 97Q443 74 444 74L467 86L491 97Q492 97 497 83L436 28Q377 -26 374 -26L331 46L329 91L155 -35Q152 -35 114 10T68 65L67 86Q66 100 66 156Q66 177 66 198T68 236T71 268T74 296T77 320T80 338T83 351T86 360V363ZM314 365Q285 367 255 374T206 386L187 392Q181 392 172 376T154 311T145 197Q145 124 151 118Q156 110 187 78L208 56H214Q221 57 253 76L308 109L329 123V136Q328 143 328 257V365H314"],98:[685,31,513,87,442,"177 427Q177 364 181 364Q184 364 192 370T223 395T271 433Q317 469 323 469Q325 469 338 462T377 440T432 413L440 409L441 396Q441 394 441 372T442 334Q442 203 425 108L423 97L400 83Q347 49 296 21T222 -19T196 -31Q192 -29 149 12T87 71L89 89Q100 155 100 319Q100 500 94 627Q94 632 94 638T94 648T94 656T93 662V664Q93 668 97 669T106 670H110Q114 653 118 633L127 596Q127 595 132 597Q136 599 195 642L255 685L272 673Q269 670 256 659T233 637T211 609T190 565T179 508Q177 494 177 427ZM295 377L274 385Q273 385 264 381T242 370T223 361Q213 355 188 340L178 333V123L198 103Q259 42 285 42Q299 42 314 55T339 85Q363 132 363 232Q363 310 358 343V349L345 355Q330 363 295 377"],99:[466,29,389,72,358,"72 208Q72 323 84 361Q84 363 167 414Q248 466 250 466Q255 465 260 465Q283 460 307 450T344 430L357 422L306 343L301 342L296 340Q267 362 247 372T216 384T177 390Q154 349 154 238Q154 220 156 158V145L168 132Q179 121 208 93T244 59Q245 58 246 58Q255 58 302 83T350 108L352 104Q355 100 356 96L358 92Q358 91 274 32T187 -29L177 -20Q160 -6 120 36T77 84Q77 87 75 118T72 208"],100:[609,33,499,13,428,"13 542Q13 544 77 576T147 609Q154 609 185 598T283 551T414 464L427 454V440Q427 436 427 412T428 372Q428 315 426 270T418 197T409 152T400 121T394 103L304 35Q285 21 261 2T225 -25L214 -33Q149 7 97 59L76 80L75 91V171Q75 221 76 254T79 299T80 313Q80 315 78 321Q78 323 78 326L77 330Q79 336 132 384T211 447L219 445Q221 445 224 444L228 443Q229 443 228 441T221 432T206 415L191 395Q175 378 162 339Q152 306 152 250Q152 217 159 140V134L171 121Q194 99 235 74T284 48Q296 48 310 75T337 156T349 267Q349 346 336 400L315 420Q246 489 176 525Q127 545 94 545H73L27 527L13 542"],101:[467,30,401,70,364,"353 103Q353 97 358 87L337 71Q293 38 247 6Q191 -30 189 -30Q188 -30 173 -16T130 26T76 85L74 99Q70 139 70 190Q70 228 73 271T79 338T84 365L94 372Q105 378 126 392T166 417L246 467Q283 417 349 369L364 358L355 349Q249 249 169 180L151 166L152 152V139L165 126Q186 105 215 84T260 62Q267 62 309 82L353 103ZM267 323Q246 337 230 350T204 371T189 385T179 394T174 397Q149 381 149 219V211Q151 211 171 223T220 258T268 299L282 313L267 323"],102:[681,221,326,30,323,"128 387Q128 391 112 456T92 546V555L101 568Q133 617 183 670L193 681L204 673Q238 648 262 648Q276 648 292 656L302 661L308 653Q308 652 278 618L249 585H234Q194 587 159 595Q158 595 156 596H153L150 597Q151 593 152 581T154 564T157 547T164 524T176 494Q199 436 203 400V392H207L323 386Q323 384 309 368L296 351H203V176Q201 -9 198 -32Q194 -61 166 -114Q158 -129 153 -138Q114 -214 110 -221Q105 -221 98 -220L87 -219V-216Q88 -215 106 -150T124 -82Q128 -73 129 155V351H30L64 386H96Q128 386 128 387"],103:[470,209,504,17,455,"27 -144L17 -131L82 -75L146 -20L126 6Q99 37 92 48L78 65L77 79Q75 103 75 158Q75 217 78 268T86 343T91 368Q92 370 109 382T157 413T222 452Q240 465 249 469L251 470Q296 443 350 428L365 424L437 465L442 459Q442 456 441 453T437 444T432 424T427 385T423 317T421 215V133L423 119Q423 111 455 -17Q455 -21 380 -108T290 -201Q290 -202 284 -204T269 -207T252 -209Q172 -209 75 -135L62 -126Q60 -126 44 -135L27 -144ZM349 351Q267 359 178 389Q177 387 173 376T166 358T161 337T157 303T155 259Q155 195 159 135L160 124L170 112Q180 101 204 77T230 53Q231 53 286 88L340 123V141Q340 235 348 329Q348 334 348 339T348 348L349 351ZM364 -59Q364 -37 358 -1T347 64T341 93Q336 93 252 28T149 -57Q226 -134 293 -134Q325 -134 344 -118T364 -69V-59"],104:[688,205,521,77,434,"88 427Q88 486 87 545T84 634T81 667Q81 673 82 673T89 676H94L117 600L200 661Q208 667 218 674T233 684L238 688L254 678Q222 646 216 637Q164 572 164 483V442V371Q187 390 244 431T312 478Q344 446 411 423L428 417L429 396Q434 297 434 218Q430 8 406 -34Q346 -111 262 -195L251 -205L249 -203Q248 -203 244 -199T236 -193Q226 -183 227 -182Q228 -182 244 -169T278 -140T301 -121Q330 -89 340 -22Q355 60 355 171Q355 200 353 244T348 321T344 354Q333 363 307 376T260 390Q241 390 179 350L164 341V121Q180 96 201 66L213 50Q210 46 172 11T131 -24Q130 -24 123 -11T102 25T77 65V78Q80 104 84 227T88 427"],105:[673,20,279,14,267,"72 617Q72 618 102 645T133 673H134Q134 668 175 627L187 615L130 555L116 568Q72 615 72 617ZM27 369Q21 376 14 382L26 392Q83 440 119 474Q158 435 169 427L179 420L176 395Q166 302 166 227Q166 171 174 139Q178 119 186 103T202 81L208 75Q255 100 261 100Q262 100 264 92T267 83Q267 80 208 30T145 -20Q143 -20 118 17L91 55Q98 117 98 193Q98 339 88 369Q71 390 68 390Q63 390 39 376L27 369"],106:[672,208,281,-9,196,"101 644L132 672L145 657Q155 642 169 628L182 614L169 600Q148 579 140 570L125 555L112 568Q109 570 91 592T72 615Q72 617 101 644ZM19 -208Q-9 -185 -9 -183Q57 -134 80 -106Q103 -81 110 -19T118 179Q118 294 113 329T86 383Q78 389 76 389Q73 389 57 379L39 367Q26 380 26 381L33 387Q40 393 53 405T79 428L130 474Q147 457 186 428L195 422L196 376Q196 130 192 58T174 -35Q172 -39 104 -114T19 -208"],107:[689,25,389,24,362,"93 348Q93 379 90 503T87 658V670Q87 671 94 671L100 672L112 636Q124 603 124 600L144 616Q196 659 234 682L246 689Q252 686 256 685T268 680L254 667Q225 641 211 626T184 579T168 505V497L178 504Q203 523 237 544L300 584L310 573Q359 522 359 481Q359 476 359 472T358 464T355 456T351 448T346 440T340 433T332 424T323 414T312 402T299 389L255 343L300 342H346L320 309H177V128L193 113Q214 92 244 68L254 60L303 84Q351 108 352 108L362 96Q355 85 277 30T194 -25L170 -4Q146 18 120 41T89 68Q94 85 94 168Q94 184 94 218T93 268V309H58L24 310L51 342H93V348ZM172 342Q217 342 252 374T287 445Q287 472 255 504Q242 517 241 517Q202 498 187 468T168 365V342H172"],108:[685,20,280,98,277,"221 76L267 99Q268 98 269 96T271 88T270 82L262 76Q255 69 241 57T214 34L148 -20L98 56L99 89Q107 247 107 373Q107 494 101 621Q101 653 99 659V665L106 668L113 672L118 655Q122 642 131 617L138 597Q140 597 157 611L240 670L264 685Q265 685 270 680T276 674T269 667T247 647T219 617Q197 587 186 551T173 493T171 438Q171 376 175 282T179 147V117Q184 109 201 93T221 76"],109:[475,26,767,8,753,"20 367L8 379Q9 380 63 425T118 471Q130 460 143 446L168 421V398L169 376L295 475Q362 433 415 418V399Q415 380 416 380T437 394T484 428T529 462L544 474L556 467Q590 449 614 438T646 424L653 421L665 417L664 412Q664 411 664 407T664 397T663 384Q660 342 660 335Q658 303 658 245Q658 186 660 152L661 126L669 115Q680 96 697 79L707 83Q716 87 723 90T735 96T741 100T746 102L747 103V102L750 95Q753 88 753 87L631 -18Q630 -17 622 -3T589 43L576 60L579 72Q592 146 592 218Q592 265 584 321Q581 345 578 350T560 363Q535 376 496 386L481 390Q475 387 425 358L415 351V238V157Q415 142 415 135T417 120T421 110T430 98T441 81L465 47Q462 44 458 41T443 28T420 8L380 -26L333 47L336 62Q339 77 342 109T345 184Q345 223 341 285T333 348Q322 364 258 382L240 388L169 347L168 240Q168 118 171 110L174 106Q178 101 183 93T195 78L217 48Q217 47 196 30T154 -5T133 -21L130 -16Q127 -10 122 0T111 19Q89 56 89 60Q95 76 95 153Q95 239 88 337V365L62 391L20 367"],110:[475,22,527,20,514,"31 368Q20 379 20 380T72 427L121 470L129 463Q137 455 155 441T176 425V367L320 475L329 469Q351 454 385 437T434 417L432 402Q429 362 429 231V128L439 111Q442 107 445 102T449 95T453 90T456 86T459 84T463 82T467 82Q468 82 489 93T511 105T514 95V88L395 -18L340 65L341 77Q347 111 348 178Q348 343 343 353V358L332 363Q298 377 264 382Q260 382 254 382L249 383Q247 383 211 362L176 341V229V147Q176 134 176 127T177 115T179 106T183 99T189 91T197 81Q201 76 206 69T214 57L217 53Q217 52 175 15T132 -22Q132 -20 114 5T88 41Q84 45 84 50Q94 116 94 203Q94 227 93 263T92 324L90 364L67 388L50 378Q32 368 31 368"],111:[480,28,489,67,412,"67 121Q70 265 84 359V364L97 371Q137 394 177 421T238 464T260 480L278 468Q295 457 327 442T394 418L406 414Q412 388 412 300Q412 263 410 228T405 170T399 130T393 103T391 92L381 86Q274 19 165 -28L161 -24Q157 -21 151 -15T136 -2T118 14T101 30T86 46T74 60L67 68V121ZM335 278Q335 286 335 303T334 335L333 349V356H326Q288 360 208 388L183 397Q178 393 172 383T154 333T142 239Q142 192 151 134Q152 124 155 120T175 99Q197 77 219 64T251 47T267 44T281 52T302 80T320 124Q335 182 335 278"],112:[541,212,500,12,430,"23 25Q15 33 12 38L35 59Q82 102 87 105V351L68 378Q42 414 42 422Q42 437 67 472T114 530L125 541Q126 541 132 537T138 532Q121 507 121 488Q121 453 160 413L167 405L166 390L165 372Q169 372 233 421T305 478Q307 479 315 472Q395 421 423 415Q424 415 424 415T425 414L426 410Q426 407 426 401T426 388Q430 335 430 272Q430 139 408 80Q407 78 340 22L273 -33Q200 23 165 23Q164 23 164 -32Q165 -89 168 -155V-170L93 -212L78 -203Q85 -48 87 16V47H79Q53 44 23 25ZM319 41Q346 94 349 212Q349 278 343 343V351L330 357Q318 363 270 381L255 387L245 383Q212 370 178 345L166 336V287Q165 260 165 166V94H175Q219 90 299 51L319 41ZM132 57L129 60Q130 58 132 57ZM158 29Q159 29 155 34T145 45T138 50Q155 29 158 29"],113:[479,219,489,60,419,"399 19Q399 -123 407 -174V-179L332 -219L322 -210L312 -202L314 -185Q320 -83 323 54V95L311 85Q255 40 162 -19Q146 -29 145 -27Q140 -22 103 20L63 65V73Q61 83 61 115Q61 122 61 135T60 154Q60 263 79 353L83 368L94 375Q123 391 147 405T186 429T212 446T229 458T238 466T243 470T247 471L260 464Q274 457 295 448T330 434L341 432L410 479L412 478Q414 476 416 475T419 473L417 461Q399 358 399 19ZM316 367Q287 370 252 377T196 391L176 397H175Q173 397 166 382T149 314T139 187V158Q139 138 141 132T155 114Q158 111 160 109Q210 58 211 58L218 62Q226 67 240 75T266 91L319 124V196Q319 334 325 361V367H316"],114:[474,21,389,17,387,"357 398Q364 398 375 403L386 408Q386 404 387 400V393L369 377Q361 370 350 360T336 347T327 340T316 336T303 335Q270 335 234 371L224 379Q220 375 214 370T198 355L182 340V243Q182 164 183 152T189 129Q195 117 211 100T239 72T254 60T298 81Q342 101 343 101Q344 100 345 92T346 82L200 -21Q174 -5 117 55L97 75L99 92Q106 147 106 196Q106 216 104 282T97 355Q95 359 95 361Q95 364 77 378L65 387L48 380Q30 372 29 372Q28 371 23 375T17 380Q17 384 50 415T107 467L115 474L128 461Q171 421 182 414V382L235 425Q247 435 261 446T283 462L290 468L295 460Q335 398 357 398"],115:[478,29,443,-18,406,"272 33Q284 33 290 70T296 138Q296 181 290 198T262 230Q257 232 246 232Q231 232 218 227T156 194L108 167L101 176Q90 192 75 219L69 230V284Q69 346 70 357V377L146 427Q181 450 202 464T223 477L225 476Q227 475 229 474Q231 472 242 466T270 450T296 431Q309 418 326 418Q342 418 361 429T392 450T403 459Q406 445 406 442Q406 440 384 421T338 382L316 363Q315 362 310 362Q292 362 251 371T173 396Q156 403 155 403Q143 386 143 342Q143 305 150 278T168 244Q171 242 181 242L190 243L315 300Q330 295 357 274Q358 273 362 270T366 266T369 261T372 253T373 239T374 217T374 185Q374 157 372 133T368 98T363 71T358 50L336 40Q288 20 255 2T211 -22T198 -29L190 -22Q181 -14 168 -3T138 19T104 38T70 46Q50 46 32 37T3 20T-9 11L-18 23L-1 41Q46 89 62 99T112 110Q141 110 157 103T225 62Q268 33 272 33"],116:[640,20,333,27,348,"228 640L242 627L227 613Q213 599 211 593T203 553Q197 500 196 435V389H301L272 353H195V274Q195 178 196 159L197 123Q249 71 273 68H280L312 83Q344 99 345 99Q348 99 348 78Q348 76 314 52T246 4L212 -20Q211 -20 164 19T112 62Q112 122 113 196Q113 228 113 262T114 318T114 341V353H27L62 389H116L117 431V558L228 640"],117:[474,23,517,9,513,"171 315Q171 252 165 199T153 124L147 103Q147 102 196 80L244 57L335 107V116Q339 161 339 268Q339 315 338 351T337 412V424L420 468Q424 465 427 461L424 435Q412 331 412 226Q412 170 415 145T434 96Q442 84 452 83Q461 83 492 96L506 102Q507 102 510 96T513 88L493 71Q445 32 401 -9Q392 -18 388 -17L384 -16Q358 39 355 44Q336 77 333 77Q261 45 203 -9Q186 -23 181 -23Q177 -23 162 -11T121 18T69 44L57 48L61 54Q65 60 71 73T82 102Q100 156 100 262Q100 305 93 335T80 373T62 396L23 376Q18 377 9 386L119 474Q149 437 171 421V339V315"],118:[530,28,512,55,434,"55 418Q55 443 100 503Q121 530 123 530Q125 528 127 528T131 528T134 528T135 524T131 516Q123 499 123 486Q123 457 159 416L169 405L170 388L171 372Q171 371 244 424L317 477L334 466Q394 428 432 416L433 402Q433 400 433 377T434 336V305Q434 195 420 131Q413 94 406 87Q403 84 298 29L192 -28L172 -8Q139 25 106 52L92 64V70Q95 97 95 198Q95 293 94 318L92 355L84 367Q55 406 55 418ZM174 306Q174 297 173 255T171 184Q171 153 175 136T198 100Q207 94 224 80T255 57T282 49Q304 49 328 80Q359 129 359 243Q359 284 352 345Q351 358 348 360Q333 373 304 384T265 396L251 390Q215 372 186 351L175 344V337Q175 319 174 306"],119:[532,28,774,45,688,"45 425Q45 439 82 485T126 532Q127 532 128 532T131 531T137 529L132 519Q121 499 121 483Q121 473 131 454T156 419L167 408L169 376L185 388Q237 425 291 473L301 466Q337 443 394 416L419 405L418 387V369Q419 369 487 418T560 471L581 459Q597 450 621 437T664 415T684 406Q688 406 688 323Q688 254 679 193T662 103T648 71Q647 70 554 20L464 -28L443 -15Q416 1 386 17T343 40T331 49Q331 52 333 73T337 133T339 216Q339 309 334 339Q333 341 316 353T277 377T246 389Q235 389 201 369T166 346Q166 345 164 247Q164 232 164 210T163 179Q163 139 170 116T205 57L212 48L136 -27Q115 16 87 44L78 53L80 67Q88 124 88 211Q88 282 87 315T83 356T74 371Q45 410 45 425ZM591 352Q580 359 565 365T540 374T517 381T504 385L418 342L417 318V220Q417 212 417 194T417 170T418 152T420 134T424 120T431 106T440 95T454 83Q508 44 544 44Q566 44 583 77Q603 120 605 235Q605 289 600 322Q598 343 597 345T591 352"],120:[472,188,389,10,363,"14 377Q63 428 117 472Q130 462 144 449L193 408V392V376L247 420Q300 464 301 464L310 451Q331 417 363 390L333 365Q303 340 301 340Q293 343 277 364T250 386Q241 386 215 361L195 341Q194 333 193 327T191 318T190 304T188 269Q188 220 192 148Q193 122 195 118T210 101Q255 60 271 60Q276 60 278 61L318 82Q327 86 336 91T351 98L356 101Q359 82 356 79Q354 77 283 27T210 -24L192 -7Q160 23 137 40L126 49L116 40Q66 -13 66 -54Q66 -117 167 -140L179 -142V-147L180 -152L123 -188L112 -185Q58 -170 31 -145Q10 -122 10 -96Q10 -80 22 -53Q44 -10 95 49Q97 51 100 54T104 59T107 64T109 71T111 81T112 97T113 119T114 149T114 188Q114 284 108 347V354L96 365Q76 385 67 385Q62 385 45 377L27 368L14 377"],121:[528,218,499,45,431,"74 58Q89 124 89 241Q89 265 89 278T89 305T88 324T87 336T84 346T81 352T77 359T71 368Q57 388 52 398L45 409Q62 454 98 507L113 528Q128 528 128 524Q128 523 125 518T120 503T117 483V471Q123 456 130 445Q135 438 140 432T148 422T153 415T157 409T160 405T162 402T163 399T163 395V384V365Q165 365 237 419L311 473Q383 430 420 416Q426 414 426 411V404Q426 398 426 388T427 367Q431 233 431 201Q431 -3 391 -52Q387 -58 305 -138T221 -218L218 -217Q216 -216 211 -214T202 -210L184 -202L199 -194Q259 -162 288 -127T334 -19T350 184Q350 257 342 328L340 356Q282 390 262 390Q248 390 178 346L163 336V111L216 45L131 -26L124 -15Q114 3 85 44L74 58"],122:[471,214,391,-7,314,"47 335L36 347L52 362Q112 421 167 461L181 471L192 465Q236 444 260 417T284 369Q284 355 276 343T233 291Q195 246 195 245T205 242T241 228T300 198L302 187Q314 138 314 74Q314 -24 291 -95Q290 -100 222 -157L154 -214H145Q102 -214 53 -189T-7 -117Q41 -21 183 122L207 147Q205 149 186 157T140 172T100 180H97V192L140 231Q192 280 199 293Q205 303 205 315Q205 339 185 363T137 388Q119 388 63 347L47 335ZM179 -153Q212 -153 226 -113T240 14Q240 67 233 98T223 132T211 143L222 130Q216 125 206 116T170 82T124 33T88 -20T72 -70Q72 -99 105 -126T179 -153"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js deleted file mode 100644 index 38c8704..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Fraktur={directory:"Fraktur/Regular",family:"MathJax_Fraktur",id:"MJFRAK",Ranges:[[0,127,"BasicLatin"],[128,57343,"Other"],[58112,58128,"PUA"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js deleted file mode 100644 index bab7076..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Fraktur,{8216:[708,-410,215,45,158,"117 410Q97 410 71 455T45 539Q45 588 129 694L140 708Q142 708 153 694L147 682Q106 609 106 582V577V571Q106 548 132 511T158 455Q158 434 143 422T117 410"],8217:[692,-395,215,49,163,"105 529Q105 546 77 588T49 651Q49 658 51 666Q53 672 67 682T92 692Q111 692 137 644T163 563Q163 534 143 497T99 428T74 395Q72 395 65 400T58 407Q105 476 105 523V529"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Other.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js deleted file mode 100644 index 1dddfe5..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Fraktur,{58112:[683,32,497,75,431,"427 436Q427 434 427 425T429 398T430 362Q430 222 396 109L393 99L305 33Q218 -32 216 -32Q208 -29 142 22L91 68L78 81L77 94Q75 130 75 173Q75 245 87 347L135 385Q178 418 184 424L177 428Q174 429 170 431Q116 454 96 473T75 534Q79 608 154 683Q164 677 164 673Q164 670 157 662T144 637T137 598Q137 552 182 518T280 470T380 447T427 436ZM342 371L275 394L208 417Q203 417 192 399T168 334T156 229Q153 187 153 157Q153 141 156 135Q158 125 208 88T280 51Q306 51 326 120T346 297Q346 339 344 354T342 371"],58113:[616,30,498,35,432,"39 551L35 569L52 577Q72 586 98 595T140 610T158 616Q174 612 200 604T293 560T412 477Q414 475 417 472Q428 462 430 450T432 376Q432 223 401 124Q395 106 393 103T382 92Q351 68 281 20T206 -29Q201 -31 137 26L100 60L78 83L77 112Q76 132 76 170Q76 259 86 342L88 360L101 371Q116 386 163 422T215 459Q216 459 224 455T233 450L229 446Q225 442 218 434T203 419Q179 394 175 389T168 372Q156 334 156 262Q156 167 164 137Q168 125 196 102T252 62L278 45Q279 45 285 52T302 78T322 126T339 205T346 316Q346 367 344 389L343 406L326 423Q228 520 113 559L100 564L70 557L39 551"],58114:[680,215,333,29,339,"123 386L120 431Q116 476 116 511V520Q116 593 174 649Q207 680 236 680Q258 680 284 664T312 648Q318 648 327 656Q328 657 330 659Q337 664 337 661Q337 660 338 657Q338 652 339 648L268 566L260 574Q234 600 206 600Q182 600 164 585T145 541Q145 492 211 386L267 385H324L299 354H214V312Q214 86 193 -58L192 -69L116 -215H108Q92 -215 92 -212Q93 -211 100 -189T116 -135T128 -80Q134 -41 134 22Q134 54 130 185T125 349V354H29L59 385H91Q123 385 123 386"],58115:[679,224,329,28,318,"91 530Q91 564 116 600T164 656T194 678Q195 678 200 678T209 679Q268 679 316 639L293 593Q267 547 263 546H262Q260 546 256 553Q222 613 180 613Q160 613 146 599T132 564T170 474T210 388H318L296 356H206V322Q204 284 204 255Q202 221 202 161V99Q202 28 194 -22T160 -124Q148 -146 116 -199L101 -224L91 -220Q85 -218 84 -217T83 -215L101 -161Q116 -114 119 -73T122 108Q119 334 117 352V356H72L28 357L66 388H92Q118 388 118 389L109 433Q91 514 91 530"],58116:[471,214,503,52,449,"254 -150Q293 -150 328 -126T363 -54Q363 -38 352 29T339 98L250 34Q160 -30 159 -30L77 64V71Q74 95 74 174Q74 212 75 243T79 294T83 328T87 352T90 366L117 384Q206 446 238 464L250 471Q277 455 306 443T350 427L365 423Q367 423 405 443T443 465L449 455Q431 414 426 362T418 201Q418 135 420 121Q438 -4 438 -19Q438 -26 438 -31T434 -42T429 -51T420 -63T408 -77T391 -95T370 -119T346 -147T325 -170T309 -187T291 -200T274 -207T252 -213T225 -214Q175 -214 132 -196T70 -160L52 -143Q52 -138 90 -48Q90 -47 95 -47H101Q108 -81 146 -115T254 -150ZM341 136Q341 157 344 242T347 348V355L334 356Q299 359 262 367T203 383T179 391Q177 391 173 377T163 323T158 227Q158 164 161 128V121L174 106Q203 75 223 59L341 127V136"],58117:[686,20,333,26,315,"92 446Q92 603 82 664Q94 670 95 670L96 666Q98 661 101 651T108 633Q121 598 121 597L141 612Q247 686 250 686Q251 686 266 679Q261 674 243 659T213 632T190 597T173 546Q172 541 171 530T170 511T170 502Q171 502 222 542L273 582Q308 522 315 504L279 449L269 462Q231 506 215 506Q202 506 190 490Q164 458 164 395V390H279L266 373L254 355H167V306Q169 252 169 217Q170 195 170 147V117L200 92Q234 64 237 64Q243 64 277 81L311 99V75Q310 75 242 27L174 -20L156 -3Q88 60 81 60L79 62Q80 60 82 62Q87 67 87 290V355H57L26 356L73 390H92V446"],58118:[577,21,334,29,347,"117 531Q117 533 137 544T178 566L198 577Q200 577 204 575T208 572V570Q208 568 208 566T207 560Q197 496 197 397V392H321L295 353H199V260Q199 157 200 145V122L269 68Q271 67 274 67Q282 67 310 83T342 100Q343 100 345 92T346 83L211 -21L172 12Q117 59 117 63Q117 65 117 87T119 150T120 238V353H75L29 354L65 391H118V460Q117 498 117 531"],58119:[475,22,501,10,514,"337 91V78L324 71Q288 53 256 29T206 -8T180 -22Q174 -22 158 -9Q82 46 60 46H59L63 51Q67 56 73 68T85 96Q101 158 101 254Q101 300 95 330T83 370T66 394L53 388Q48 385 41 382T24 374Q22 376 20 378T16 381T13 383T10 385V386L119 475Q150 439 160 430L171 422V409Q173 377 173 300Q173 228 166 183T152 122T145 102Q207 81 242 58L337 104V111Q340 146 340 227Q340 320 339 351T338 408V423L422 469Q425 465 429 462L426 438Q413 354 413 251Q413 152 423 119Q426 110 435 96T452 82Q454 82 509 103Q514 98 514 89Q514 87 507 81T472 51T409 -7L395 -20Q393 -18 390 -17Q386 -14 382 -6Q380 -2 379 1Q369 24 361 40T348 62T341 73T338 84L337 91"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/PUA.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js deleted file mode 100644 index 87b11e6..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{8592:[518,17,1150,64,1084,"1063 281Q1084 268 1084 251Q1084 231 1063 221L649 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L649 281H1063"],8593:[694,193,575,14,561,"33 396Q14 396 14 423Q14 445 18 449T41 459Q72 466 99 478T147 505T185 537T215 571T238 604T254 635T264 661T270 678L272 685Q276 694 288 694Q298 692 300 689T307 672Q331 592 392 535T535 459Q553 454 557 450T561 423Q561 396 542 396Q531 396 501 405T418 443T329 517L319 529L318 179V-171Q307 -193 288 -193Q265 -193 258 -171L257 179V529L247 517Q209 473 158 444T76 405T33 396"],8594:[518,17,1150,65,1085,"65 251Q65 270 87 281H500L914 282Q881 304 842 357T785 482Q781 500 781 501Q781 512 792 517Q794 518 812 518H817Q832 518 835 515T844 495Q864 412 923 351T1065 270Q1085 263 1085 251Q1085 240 1077 236T1044 225T995 204Q937 173 898 122T844 6Q840 -10 836 -13T816 -17H811Q786 -16 782 -9Q781 -6 781 -2Q781 1 785 17Q813 138 914 220H500L87 221Q65 228 65 251"],8595:[694,194,575,14,561,"14 77Q14 104 33 104Q44 104 74 96T156 57T247 -17L257 -29V321Q257 669 259 675Q268 694 289 694Q295 693 300 691T307 686T313 679T318 672V321L319 -29L329 -17Q366 26 417 55T499 94T542 104Q561 104 561 77Q561 56 557 51T535 41Q481 28 438 0T370 -58T330 -119T308 -167T302 -187Q297 -194 288 -194Q278 -194 273 -186T265 -165T251 -127T220 -77Q151 15 41 41Q22 46 18 50T14 77"],8596:[518,17,1150,64,1085,"305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L404 281H744L914 282Q880 305 839 362T785 484Q781 500 781 503Q781 517 806 518Q809 518 811 518H817Q832 518 835 515T844 495Q864 412 923 351T1065 270Q1085 263 1085 251Q1085 240 1077 236T1044 225T995 204Q937 173 898 122T844 6Q840 -10 836 -13T816 -17H811Q786 -16 782 -9Q781 -6 781 -2Q781 1 785 17Q813 138 914 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495"],8597:[767,267,575,14,561,"33 469Q14 469 14 496Q14 518 18 522T41 532Q121 551 182 608T268 745Q275 767 288 767Q299 767 303 755T320 713T355 650Q424 558 535 532Q553 527 557 523T561 496Q561 469 542 469Q531 469 501 478T418 516T329 590L319 602L318 426V74L319 -102L329 -90Q366 -47 417 -18T499 21T542 31Q561 31 561 4Q561 -17 557 -22T535 -32Q454 -51 393 -108T307 -245Q300 -267 288 -267Q279 -267 274 -259T266 -238T250 -200T220 -150Q151 -58 41 -32Q22 -27 18 -23T14 4Q14 31 33 31Q44 31 74 23T156 -16T247 -90L257 -102V602L247 590Q209 546 158 517T76 478T33 469"],8598:[724,194,1150,63,1084,"429 724Q438 724 452 711T466 690Q466 681 452 671Q361 602 242 599H218L756 135Q832 69 913 -1T1036 -108L1077 -143Q1084 -151 1084 -163Q1084 -180 1074 -187T1054 -194H1052Q1043 -194 939 -105Q866 -42 812 5Q180 549 178 549V546Q179 542 179 539Q183 520 183 483Q183 435 172 390T149 323T130 296Q121 292 115 295Q85 312 85 328Q85 331 95 350T115 406T125 486Q125 540 110 583T79 648T64 675Q64 681 68 687T81 693Q87 693 94 690Q162 657 232 657Q296 657 349 681T420 722Q422 724 429 724"],8599:[724,193,1150,64,1085,"1069 693Q1076 693 1080 687T1085 675Q1085 671 1076 656T1055 621T1034 565T1024 486Q1024 442 1034 406T1054 351T1064 328Q1064 321 1057 313T1042 300L1034 295Q1030 293 1027 293Q1023 293 1020 295T1014 301T1009 308T1005 316T1001 324Q980 368 971 419Q966 442 966 484V492Q966 528 972 553Q971 553 757 368T328 -3T107 -191Q103 -193 94 -193Q78 -193 71 -184T64 -164Q64 -153 72 -143Q79 -136 382 124L934 599H909Q837 599 760 634T683 690Q683 697 696 710T722 724Q726 724 742 714T779 691T838 668T920 657Q959 657 991 666T1043 684T1069 693"],8600:[694,224,1150,65,1085,"65 663Q65 680 74 687T93 694H96Q104 694 118 683T204 610Q280 545 338 495Q969 -49 971 -49L970 -46Q970 -42 970 -39Q966 -20 966 18Q966 65 977 110T1001 177T1019 204Q1028 208 1034 205Q1064 188 1064 172Q1064 169 1054 150T1034 94T1024 14Q1024 -28 1033 -64T1054 -120T1075 -155T1085 -175Q1085 -181 1081 -187T1068 -193Q1062 -193 1055 -190Q987 -157 919 -157Q817 -157 739 -215Q727 -224 720 -224Q712 -224 697 -210Q683 -199 683 -190T697 -171Q788 -102 907 -99H931L393 365Q317 431 236 501T114 608L72 643Q65 651 65 663"],8601:[694,224,1150,64,1085,"80 -193Q73 -193 69 -187T64 -175Q64 -172 79 -150T109 -84T125 14Q125 58 115 94T95 149T85 172Q85 179 92 187T108 200L115 205Q119 207 122 207Q126 207 129 205T135 199T140 192T144 184T148 176Q169 132 178 81Q183 58 183 17Q183 -7 182 -24T178 -48L177 -53Q178 -53 389 129T816 498T1043 692Q1049 694 1054 694Q1070 694 1077 684T1085 664Q1085 653 1077 643Q1070 636 767 376L215 -98L240 -99Q312 -99 389 -134T466 -190Q466 -197 452 -210T429 -224Q422 -224 411 -215Q330 -157 229 -157Q190 -157 158 -166T106 -184T80 -193"],8614:[518,17,1150,65,1085,"65 426Q74 448 95 448Q112 448 125 426V281H500L914 282Q881 304 842 357T785 482Q781 500 781 501Q781 512 792 517Q794 518 812 518H817Q832 518 835 515T844 495Q864 412 923 351T1065 270Q1085 263 1085 251Q1085 240 1077 236T1044 225T995 204Q937 173 898 122T844 6Q840 -10 836 -13T816 -17H811Q786 -16 782 -9Q781 -6 781 -2Q781 1 785 17Q813 138 914 220H500L135 221Q134 221 133 221T130 220H125V76Q115 54 95 54Q73 54 65 76V426"],8617:[518,17,1282,64,1218,"1029 475Q1029 505 1068 505Q1129 501 1173 463T1218 363Q1218 296 1170 259T1066 221H1063L649 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L649 281H1063Q1105 284 1131 305T1158 361Q1158 385 1146 401Q1122 441 1063 444Q1029 446 1029 475"],8618:[518,17,1282,65,1217,"225 221H218Q159 221 112 260T65 363Q65 431 116 468T221 505Q254 503 254 474Q254 456 245 450T216 443T188 438Q152 427 137 401Q125 385 125 362Q125 334 147 310Q171 288 221 281H632L1046 282Q1013 304 974 357T917 482Q913 500 913 501Q913 512 924 517Q926 518 944 518H949Q964 518 967 515T976 495Q996 412 1055 351T1197 270Q1217 263 1217 251Q1217 240 1209 236T1176 225T1127 204Q1069 173 1030 122T976 6Q972 -10 968 -13T948 -17H943Q918 -16 914 -9Q913 -6 913 -2Q913 1 917 17Q945 138 1046 220H632L225 221"],8636:[518,-220,1150,64,1084,"1063 281Q1084 268 1084 251Q1084 231 1063 221L572 220Q79 220 77 221Q64 225 64 244Q64 250 64 254T67 261T71 265T78 268T85 272Q142 302 189 345T258 421T296 484T315 516Q319 518 337 518Q358 518 363 512Q370 504 367 496Q360 469 319 404T219 290L209 282L636 281H1063"],8637:[281,17,1150,64,1084,"1063 281Q1084 268 1084 251Q1084 231 1063 221L636 220H209L219 212Q278 162 319 97T367 5Q370 -3 363 -11Q358 -17 337 -17H332Q318 -17 314 -14T302 7Q278 55 246 95T185 160T130 202T88 228L70 237Q64 243 64 257Q64 274 75 279Q78 281 571 281H1063"],8640:[518,-220,1150,65,1085,"65 251Q65 270 87 281H513L940 282L930 290Q871 338 830 403T782 496Q779 510 791 517Q794 518 812 518H817Q831 518 835 515T847 494Q871 445 903 404T966 338T1022 298T1064 272T1083 259Q1085 255 1085 245Q1085 225 1072 221Q1070 220 578 220L87 221Q65 228 65 251"],8641:[281,17,1150,64,1085,"84 279Q89 281 580 281Q1070 281 1074 279Q1085 275 1085 256Q1085 245 1083 241T1066 230Q919 153 847 7Q839 -11 835 -14T817 -17H812Q791 -17 786 -11Q779 -3 782 5Q789 31 830 96T930 212L940 220H513L87 221Q64 229 64 250Q64 272 84 279"],8652:[718,17,1150,64,1085,"65 451Q65 470 87 481H513L940 482L930 490Q871 538 830 603T782 696Q779 710 791 717Q794 718 812 718H817Q831 718 835 715T847 694Q871 645 903 604T966 538T1022 498T1064 472T1083 459Q1085 455 1085 445Q1085 425 1072 421Q1070 420 578 420L87 421Q65 428 65 451ZM1063 281Q1084 268 1084 251Q1084 231 1063 221L636 220H209L219 212Q278 162 319 97T367 5Q370 -3 363 -11Q358 -17 337 -17H332Q318 -17 314 -14T302 7Q278 55 246 95T185 160T130 202T88 228L70 237Q64 243 64 257Q64 274 75 279Q78 281 571 281H1063"],8656:[547,46,1150,64,1086,"1063 169L1068 166Q1072 163 1074 162T1079 157T1083 149T1085 139Q1085 118 1063 109L733 108H404L412 99Q455 50 488 -10Q498 -27 493 -37Q487 -46 465 -46H460Q446 -46 439 -39T426 -18T399 25T344 89Q239 194 99 229Q96 230 92 231T85 232T79 234T73 235T69 237T66 240T65 244T64 250Q64 267 90 271Q197 295 286 361T430 525Q439 542 442 544T460 547H465Q487 547 492 539Q496 531 496 530Q496 521 471 482T414 405L404 394L733 393H1063Q1064 392 1069 389T1076 384T1082 375T1085 362Q1085 344 1063 333L700 332H338L324 321Q283 290 230 264L205 250Q266 224 323 180L338 170L700 169H1063"],8657:[694,193,703,30,672,"672 343Q672 326 670 320T657 313Q644 313 602 335Q577 349 557 361T527 381T509 395T499 403T495 406T494 118Q494 -166 492 -174Q484 -193 465 -193H463Q456 -193 453 -192T444 -186T433 -170V465L423 477Q407 495 394 514T367 554T351 579Q349 576 339 560T313 520T279 477L269 465V-22V-102Q269 -132 269 -145T268 -169T266 -180T260 -185T253 -191Q248 -193 239 -193H237Q218 -193 210 -174Q208 -166 208 118Q208 406 207 406L199 399Q191 392 165 374T100 335Q58 313 45 313Q35 313 33 319T30 343V349Q30 359 30 362T35 369T45 374T66 383T100 401Q267 499 333 680Q339 694 351 694Q361 694 365 687T380 652T407 597Q442 536 489 489T573 420T638 383T670 365Q672 361 672 343"],8658:[547,46,1150,64,1084,"64 362Q64 380 87 393H416L745 394L735 405Q708 436 681 477T654 531Q654 547 679 547H684H689Q703 547 710 540T723 519T750 475T806 411Q914 303 1059 271Q1060 271 1063 270T1068 269T1072 268T1076 266T1079 264T1082 260T1083 256T1084 250Q1084 242 1080 238T1063 231T1035 225T992 211T934 185Q797 112 719 -24Q710 -40 706 -43T689 -46H684Q653 -46 653 -31Q653 -24 661 -10Q694 50 737 99L745 108H416L87 109Q64 117 64 139Q64 156 87 169H449L812 170L826 180Q842 193 860 204T892 223T918 237T937 246L944 250L919 264Q866 290 825 321L811 332H449L87 333Q64 343 64 362"],8659:[694,194,703,30,672,"30 157Q30 174 32 180T46 187Q59 187 104 163Q154 136 198 101L207 94Q208 94 208 382Q208 666 210 674Q219 694 241 694Q254 692 262 683Q266 679 267 674Q269 658 269 522V35L279 23Q295 5 308 -14T335 -54T351 -79Q353 -76 363 -60T389 -20T423 23L433 35V671Q439 682 444 686T452 692T463 693H465Q484 693 492 674Q494 666 494 382Q494 94 495 94L504 101Q547 135 593 160T652 187Q665 191 671 177Q672 175 672 157Q672 137 669 134T636 116Q606 101 578 83T528 47T486 9T452 -30T424 -68T403 -103T387 -134T377 -159T370 -176L367 -184Q360 -194 351 -194Q345 -194 342 -192T334 -182T327 -166T315 -137T295 -97Q260 -36 213 11T129 80T63 117T32 136Q30 139 30 157"],8660:[547,46,1150,47,1102,"336 497Q358 541 363 544Q367 547 379 547H384Q401 547 405 545Q418 538 414 525T389 474T346 408L335 393H814L803 408Q781 436 760 474T735 525T744 545Q748 547 765 547Q771 547 774 547T780 546T786 544T790 541T794 535T799 527T805 514T813 497Q841 446 877 406T950 340T1014 301T1068 276L1096 265Q1102 259 1102 251Q1102 240 1085 232Q981 195 902 121Q835 56 798 -25Q791 -40 787 -43T765 -46T744 -44Q735 -40 735 -30Q735 -15 760 28T806 98L814 108H335L343 98Q361 75 378 46T404 -1T414 -24Q418 -37 405 -44Q401 -46 384 -46T363 -43T351 -25Q314 56 247 121Q216 150 182 173T125 206T79 226T53 237Q47 243 47 251Q47 254 47 256T49 261T52 264T57 267T61 268T66 270T71 272Q246 335 336 497ZM985 251Q932 280 882 323L871 332H278Q264 321 253 311T237 297T214 282T164 251L176 244Q221 218 278 169H871Q928 218 973 244L985 251"],8661:[767,267,703,30,672,"49 441Q30 441 30 464V471V480Q30 498 44 502Q237 573 331 750Q337 767 351 767Q360 767 368 753T400 702T460 629Q504 584 552 554T632 511T666 497Q672 493 672 471Q672 454 670 449Q664 441 653 441Q639 443 591 465T508 513L495 522L494 386V114L495 -22L508 -13Q543 12 591 34T653 59Q672 59 672 36V29V20Q672 2 658 -2Q465 -71 367 -257Q360 -267 351 -267Q343 -267 336 -257T320 -231T292 -187T242 -129Q198 -84 150 -54T70 -11T36 3Q30 7 30 29Q30 46 32 51Q38 59 49 59Q63 57 111 35T194 -13L208 -22V522L194 513Q159 488 111 466T49 441ZM422 584Q411 594 400 606T383 626T366 648T351 667Q349 665 339 652T314 620T280 584L269 573V-73L280 -84Q305 -108 351 -166Q353 -164 363 -151T389 -119T422 -84L433 -73V573L422 584"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/Arrows.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js deleted file mode 100644 index 6472a8b..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{32:[0,0,250,0,0,""],33:[705,-1,350,89,260,"89 629Q89 663 116 684T171 705Q215 705 237 681T260 634Q260 619 233 434T204 244Q201 237 175 237Q150 237 146 244Q144 248 117 433T89 629ZM90 86Q90 125 116 148T177 171Q211 169 235 146T259 86Q259 48 235 25T175 1Q138 1 114 24T90 86"],34:[694,-328,603,38,492,"38 572T38 608T61 669T121 694Q167 694 196 657T225 559Q225 520 214 482T186 418T151 370T119 339T99 329T82 340T70 360Q70 365 74 369T92 385T122 414Q142 441 154 471T170 518L172 535L166 532Q160 530 148 527T122 523Q85 523 62 547ZM305 572T305 608T328 669T388 694Q434 694 463 657T492 559Q492 520 481 482T453 418T418 370T386 339T366 329T349 340T337 360Q337 365 341 369T359 385T389 414Q409 441 421 471T436 518L439 535L433 532Q427 530 415 527T389 523Q352 523 329 547"],35:[694,193,958,64,893,"64 362Q64 380 87 393H363L366 404Q379 443 390 480T409 542T424 590T435 628T443 655T451 674T458 686T467 692T478 694Q490 694 499 686T509 662Q505 643 427 395Q427 393 523 393H620L623 404Q630 426 652 498T691 624T711 681Q718 694 735 694Q748 694 757 685T766 662Q762 643 684 395Q684 393 777 393H871Q872 392 875 390T881 386T887 381T891 374T893 363Q893 345 871 333L767 332H664L660 319Q660 318 638 245T614 171Q614 169 742 169H871L877 165Q883 161 885 159T890 151T893 138Q893 120 871 109L732 108H594L590 95Q587 84 546 -46Q508 -175 505 -178Q498 -193 478 -193Q462 -193 455 -183T448 -164Q448 -156 530 106Q530 108 434 108H337L333 95Q330 84 289 -46Q251 -175 248 -178Q240 -193 222 -193Q206 -193 199 -183T191 -164Q191 -154 273 106Q273 108 180 108L87 109Q64 117 64 139Q64 156 87 169H293L321 262Q326 277 331 294T340 321L343 330Q343 332 215 332L87 333Q64 343 64 362ZM600 330Q600 332 504 332H407L403 319Q403 318 381 245T357 171Q357 169 453 169H550L578 262Q583 277 588 294T597 321L600 330"],36:[750,56,575,64,510,"64 494Q64 541 80 579T120 638T171 674T219 693T253 698H256V750H318V699H323Q355 694 380 686T433 663T480 620T506 556Q510 539 510 520Q510 480 488 463T440 445L422 447Q407 451 398 459Q370 478 370 515Q370 542 384 559T412 580L427 584Q424 589 418 596T386 617T324 636H318V434Q411 419 460 355T510 217Q510 196 507 175T492 122T461 67T404 23T318 -4V-56H256V-5H254Q252 -3 240 -3Q194 4 160 23T108 64T80 112T67 156T64 190Q64 218 81 240T134 262Q171 262 187 240T204 193T190 150T153 125Q146 125 144 123Q142 123 149 113T174 89T218 66Q247 58 255 58Q256 58 256 173V287L239 291Q160 308 112 365T64 494ZM255 636Q246 635 236 632T206 620T173 591T160 543Q160 472 256 448V542Q256 636 255 636ZM320 59Q324 59 333 61T356 70T384 89T406 120T415 167Q415 200 395 225T356 260T318 274V59H320"],37:[751,56,958,65,893,"65 549Q65 609 84 652T132 714T187 742T236 750Q265 750 296 734T355 697T431 661T541 644Q662 644 736 730Q751 749 767 749T790 739T797 719Q797 710 768 672T504 329Q212 -47 211 -48Q203 -55 191 -55Q161 -55 161 -25Q161 -17 163 -12L642 609Q608 595 542 595Q515 595 488 599T441 608T405 619T381 628L373 632Q373 630 375 619T380 589T383 548Q383 455 343 401T235 347Q217 347 198 351T154 368T110 403T78 462T65 549ZM320 549Q320 633 295 665T235 698H234Q214 698 196 674Q182 650 182 549Q182 509 183 486T190 441T207 409T238 399Q269 399 294 431T320 549ZM745 -56Q727 -56 708 -52T664 -35T620 0T588 59T575 146T588 232T620 291T663 325T708 343T747 347Q810 347 851 294T893 146Q893 89 879 48T841 -15T794 -46T745 -56ZM830 146Q830 230 805 262T745 295H744Q724 295 706 271Q692 247 692 146Q692 106 693 83T700 38T717 6T748 -4Q779 -4 804 28T830 146"],38:[705,11,894,48,836,"255 -11Q209 -11 164 4T84 56T48 146Q48 159 50 171Q57 197 72 218T99 249T152 292Q204 333 204 334L194 356Q185 379 176 421T166 511Q166 538 168 551Q182 613 226 654T332 704Q334 704 343 704T358 705Q412 702 444 661T476 565V559Q476 489 334 371L330 368L335 357Q382 272 485 165L496 154L506 163Q543 200 597 273L671 382H601V444H610L732 441Q821 441 830 444H836V382H741L709 335Q702 324 687 302T665 270T646 244T625 216T605 191T581 162T553 132L537 116Q544 109 557 98T605 69T673 51Q711 51 739 70T767 115V118H829V114Q829 70 786 30T668 -11Q570 -11 474 37L451 49L441 43Q352 -11 255 -11ZM415 564Q415 596 400 625T356 654Q329 654 310 634T285 588Q283 580 283 554Q283 475 309 417L325 431Q415 512 415 564ZM192 182Q192 126 213 89T279 51Q348 51 400 83L389 91Q362 112 338 137T295 186T264 229T240 265T227 286Q226 285 222 280T217 272T211 263T205 251T200 238T196 222T193 204T192 182"],39:[694,-329,319,74,261,"74 572T74 608T97 669T157 694Q203 694 232 657T261 559Q261 520 250 482T222 418T187 370T155 339T135 329Q128 329 117 340T106 359Q106 365 117 375T144 399T176 440T203 505Q204 511 205 518T208 530V535L202 532Q196 530 184 527T158 523Q121 523 98 547"],42:[750,-306,575,72,502,"235 706Q235 724 251 737T287 750Q306 750 322 738T339 706Q339 685 318 580V579Q429 663 436 666Q441 668 449 668Q471 668 486 650T501 612Q501 582 478 572Q476 570 414 549L354 528L414 507Q420 505 430 502T445 497T458 492T470 488T479 483T487 478T493 471T497 463T500 454T501 443Q501 423 486 406T449 388H446Q435 388 370 437Q339 461 318 477V476Q339 371 339 350Q339 332 323 319T287 306T251 319T235 350Q235 371 256 476V477Q145 393 138 390Q133 388 125 388Q103 388 88 406T73 444Q73 474 96 484Q98 486 160 507L220 528L160 549Q154 551 144 554T129 559T116 564T104 568T95 573T87 578T81 585T77 593T74 602T73 613Q73 633 88 650T125 668H128Q139 668 204 619Q235 595 256 579V580Q235 685 235 706"],45:[278,-166,383,13,318,"13 166V278H318V166H13"],63:[700,-1,543,65,478,"65 570Q65 628 119 664T259 700Q326 700 372 688T440 654T469 613T478 569Q478 505 412 465Q287 391 287 294V283Q287 250 284 244T263 237H256H249Q232 237 229 242T225 272V287Q227 364 253 418Q274 463 311 504Q335 530 335 575Q335 622 323 635T259 648Q231 648 209 644T179 636T170 630L172 628Q174 627 177 625T183 620T190 611T197 601T202 587T204 570Q204 539 185 519T134 499Q105 499 85 517T65 570ZM171 86Q171 125 197 148T258 171Q292 169 316 146T340 86Q340 48 316 25T256 1Q218 1 195 24T171 86"],64:[699,6,894,64,829,"64 347Q64 511 171 605T434 699Q487 699 500 698Q624 684 703 621T811 464Q828 414 828 344Q828 232 788 179T691 125Q673 125 657 127T628 132T606 140T588 148T576 156T568 162L566 164Q565 164 549 154T504 135T444 125Q349 125 284 183T218 347Q218 455 284 512T448 569Q554 569 610 479H638Q670 479 674 471Q676 468 676 340V258Q676 213 679 199T694 178Q701 174 713 177Q767 187 767 340Q767 489 678 569T446 649Q299 649 213 566T126 346Q126 307 134 269T166 189T225 116T320 65T455 45H463Q606 51 721 91L746 99H782H801Q829 99 829 85Q829 78 825 75T804 65Q800 63 797 62Q625 -6 451 -6Q271 -6 168 91T64 347ZM547 468Q526 493 504 505T444 517T377 476T346 347Q346 306 354 271T386 206T448 177Q505 177 547 226V468"],65:[698,0,869,40,828,"296 0Q278 3 164 3Q58 3 49 0H40V62H92Q144 62 144 64Q388 682 397 689Q403 698 434 698Q463 698 471 689Q475 686 538 530T663 218L724 64Q724 62 776 62H828V0H817Q796 3 658 3Q509 3 485 0H472V62H517Q561 62 561 63L517 175H262L240 120Q218 65 217 64Q217 62 261 62H306V0H296ZM390 237L492 238L440 365Q390 491 388 491Q287 239 287 237H390"],66:[686,0,818,39,752,"720 510Q720 476 704 448T665 404T619 377T580 362L564 359L583 356Q602 353 632 342T690 312Q712 292 725 276Q752 235 752 189V183Q752 160 741 125Q698 18 547 2Q543 1 288 0H39V62H147V624H39V686H264H409Q502 686 542 681T624 655Q720 607 720 510ZM563 513Q563 553 548 578T518 611T486 622Q479 624 385 624H293V382H375Q458 383 467 385Q563 405 563 513ZM590 192Q590 307 505 329Q504 330 503 330L398 331H293V62H391H400H444Q496 62 528 75T580 131Q590 155 590 192"],67:[697,11,831,64,766,"64 343Q64 502 174 599T468 697Q502 697 533 691T586 674T623 655T647 639T657 632L694 663Q703 670 711 677T723 687T730 692T735 695T740 696T746 697Q759 697 762 692T766 668V627V489V449Q766 428 762 424T742 419H732H720Q699 419 697 436Q690 498 657 545Q611 618 532 632Q522 634 496 634Q356 634 286 553Q232 488 232 343T286 133Q355 52 497 52Q597 52 650 112T704 237Q704 248 709 251T729 254H735Q750 254 755 253T763 248T766 234Q766 136 680 63T469 -11Q285 -11 175 86T64 343"],68:[686,0,882,39,817,"39 624V686H270H310H408Q500 686 545 680T638 649Q768 584 805 438Q817 388 817 338Q817 171 702 75Q628 17 515 2Q504 1 270 0H39V62H147V624H39ZM655 337Q655 370 655 390T650 442T639 494T616 540T580 580T526 607T451 623Q443 624 368 624H298V62H377H387H407Q445 62 472 65T540 83T606 129Q629 156 640 195T653 262T655 337"],69:[680,0,756,39,723,"723 286Q721 284 700 145T677 3V0H39V62H147V618H39V680H660V676Q662 670 675 552T691 428V424H629V428Q629 429 627 448T618 494T601 541Q574 593 527 605T382 618H374H304V384H336Q338 384 347 384T361 384T376 386T392 390T407 397T421 407T432 423Q442 444 443 482V501H505V205H443V224Q442 258 435 278T411 307T380 318T336 322H304V62H375H394Q429 62 449 62T497 66T541 76T577 95T609 126T632 170T651 232Q661 287 661 289H723V286"],70:[680,0,724,39,675,"425 0L228 3Q63 3 51 0H39V62H147V618H39V680H644V676Q647 670 659 552T675 428V424H613Q613 433 605 477Q599 511 589 535T562 574T530 599T488 612T441 617T387 618H368H304V371H333Q389 373 411 390T437 468V488H499V192H437V212Q436 244 430 263T408 292T378 305T333 309H304V62H439V0H425"],71:[697,10,904,64,845,"465 -10Q281 -10 173 88T64 343Q64 413 85 471T143 568T217 631T298 670Q371 697 449 697Q452 697 459 697T470 696Q502 696 531 690T582 675T618 658T644 641T656 632L732 695Q734 697 745 697Q758 697 761 692T765 668V627V489V449Q765 428 761 424T741 419H731H724Q705 419 702 422T695 444Q683 520 631 577T495 635Q364 635 295 563Q261 528 247 477T232 343Q232 296 236 260T256 185T296 120T366 76T472 52Q481 51 498 51Q544 51 573 67T607 108Q608 111 608 164V214H464V276H479Q506 273 680 273Q816 273 834 276H845V214H765V113V51Q765 16 763 8T750 0Q742 2 709 16T658 40L648 46Q592 -10 465 -10"],72:[686,0,900,39,860,"400 0Q376 3 226 3Q75 3 51 0H39V62H147V624H39V686H51Q75 683 226 683Q376 683 400 686H412V624H304V388H595V624H487V686H499Q523 683 673 683Q824 683 848 686H860V624H752V62H860V0H848Q824 3 674 3Q523 3 499 0H487V62H595V326H304V62H412V0H400"],73:[686,0,436,25,410,"397 0Q370 3 218 3Q65 3 38 0H25V62H139V624H25V686H38Q65 683 218 683Q370 683 397 686H410V624H296V62H410V0H397"],74:[686,11,594,8,527,"174 114Q174 96 169 82T159 63T144 47L155 45Q183 40 203 40Q271 40 290 104Q294 118 294 150T295 380V624H154V686H169Q196 683 365 683Q499 683 517 686H527V624H446V379Q446 183 446 153T441 108Q413 32 315 2Q266 -11 208 -11Q160 -11 118 -2T42 37T8 114V122Q8 150 30 174T91 198T152 174T174 122V114"],75:[686,0,901,39,852,"400 0Q376 3 226 3Q75 3 51 0H39V62H147V624H39V686H51Q75 683 226 683Q376 683 400 686H412V624H304V338L472 483L634 624H565V686H576Q597 683 728 683Q814 683 829 686H836V624H730L614 524Q507 432 497 422Q496 422 498 418T514 395T553 342T627 241L759 63L805 62H852V0H842Q830 3 701 3Q550 3 526 0H513V62H549Q584 62 584 63Q583 65 486 196T388 328L304 256V62H412V0H400"],76:[686,0,692,39,643,"643 285Q641 280 629 148T612 4V0H39V62H147V624H39V686H51Q75 683 228 683Q415 685 425 686H439V624H304V62H352H378Q492 62 539 138Q551 156 558 178T569 214T576 255T581 289H643V285"],77:[686,0,1092,39,1052,"314 0Q296 3 181 3T48 0H39V62H147V624H39V686H305Q316 679 323 667Q330 653 434 414L546 157L658 414Q766 662 773 674Q778 681 788 686H1052V624H944V62H1052V0H1040Q1016 3 874 3T708 0H696V62H804V341L803 618L786 580Q770 543 735 462T671 315Q540 13 536 9Q528 1 507 1Q485 1 477 9Q472 14 408 162T281 457T217 603Q215 603 215 334V62H323V0H314"],78:[686,0,900,39,860,"314 0Q296 3 181 3T48 0H39V62H147V624H39V686H171H265Q288 686 297 686T309 684T315 679Q317 676 500 455T684 233V624H576V686H585Q603 683 718 683T851 686H860V624H752V319Q752 15 750 11Q747 4 742 2T718 0H712Q708 0 706 0T700 0T696 1T693 2T690 4T687 7T684 11T679 16T674 23Q671 27 437 311L215 579V62H323V0H314"],79:[696,10,864,64,798,"64 339Q64 431 96 502T182 614T295 675T420 696Q469 696 481 695Q620 680 709 589T798 339Q798 173 697 82T432 -10Q262 -10 163 85T64 339ZM625 454Q618 502 600 538T562 593T515 624T469 639T431 642Q331 642 276 563Q232 493 232 353Q232 315 234 285T244 216T267 148T308 94T372 56Q405 46 432 46Q517 46 567 106T627 267Q631 299 631 353Q631 418 625 454"],80:[686,0,786,39,722,"400 0Q376 3 226 3Q75 3 51 0H39V62H147V624H39V686H253Q435 686 470 685T536 678Q585 668 621 648T675 605T705 557T718 514T721 483T718 451T704 409T673 362T616 322T530 293Q500 288 399 287H304V62H412V0H400ZM553 475Q553 554 537 582T459 622Q451 623 373 624H298V343H372Q457 344 480 350Q527 362 540 390T553 475"],81:[696,193,864,64,805,"64 339Q64 431 96 502T182 614T295 675T420 696Q469 696 481 695Q620 680 709 589T798 339Q798 255 768 184Q720 77 611 26L600 21Q635 -26 682 -26H696Q769 -26 769 0Q769 7 774 12T787 18Q805 18 805 -7V-13Q803 -64 785 -106T737 -171Q720 -183 697 -191Q687 -193 668 -193Q636 -193 613 -182T575 -144T552 -94T532 -27Q531 -23 530 -16T528 -6T526 -3L512 -5Q499 -7 477 -8T431 -10Q393 -10 382 -9Q238 8 151 97T64 339ZM326 80Q326 113 356 138T430 163Q492 163 542 100L553 86Q554 85 561 91T578 108Q637 179 637 330Q637 430 619 498T548 604Q500 641 425 641Q408 641 390 637T347 623T299 590T259 535Q226 469 226 338Q226 244 246 180T318 79L325 74Q326 74 326 80ZM506 58Q480 112 433 112Q412 112 395 104T378 77Q378 44 431 44Q480 44 506 58"],82:[687,11,862,39,858,"394 0Q370 3 222 3Q75 3 51 0H39V62H147V624H39V686H234Q256 686 299 686T362 687Q479 687 554 669T681 593Q716 550 716 497Q716 390 568 338Q569 337 572 336T577 332Q605 317 623 300T650 258T662 218T668 172Q678 98 689 76Q707 40 748 40Q770 40 780 54T795 88T801 111Q805 117 827 117H831Q846 117 852 113T858 92Q857 78 852 63T834 30T797 1T739 -11Q630 -11 580 12T511 87Q506 104 506 168Q506 170 506 178T507 194Q507 289 438 313Q424 318 356 318H298V62H406V0H394ZM366 369Q459 370 490 381Q548 402 548 476V498V517Q548 578 513 600Q479 624 392 624H358H298V369H366"],83:[698,12,639,63,574,"64 493Q64 582 120 636T264 696H272Q280 697 285 697Q380 697 454 645L480 669Q484 672 488 676T495 683T500 688T504 691T508 693T511 695T514 696T517 697T522 697Q536 697 539 691T542 652V577Q542 557 542 532T543 500Q543 472 540 465T524 458H511H505Q489 458 485 461T479 478Q472 529 449 564T393 614T336 634T287 639Q228 639 203 610T177 544Q177 517 195 493T247 457Q253 454 343 436T475 391Q574 326 574 207V200Q574 163 559 120Q517 12 389 -9Q380 -10 346 -10Q308 -10 275 -5T221 7T184 22T160 35T151 40L126 17Q122 14 118 10T111 3T106 -2T102 -5T98 -7T95 -9T92 -10T89 -11T84 -11Q70 -11 67 -4T64 35V108Q64 128 64 153T63 185Q63 203 63 211T69 223T77 227T94 228H100Q118 228 122 225T126 205Q130 125 193 88T345 51Q408 51 434 82T460 157Q460 196 439 221T388 257Q384 259 305 276T221 295Q155 313 110 366T64 493"],84:[675,0,800,41,758,"41 425Q41 426 51 545T62 669V675H737V669Q738 665 748 546T758 425V419H696V425Q687 517 669 555T595 607Q578 612 522 613H478V62H631V0H615Q585 3 399 3Q214 3 184 0H168V62H321V613H277H263Q164 613 134 561Q113 527 103 425V419H41V425"],85:[686,11,885,39,845,"570 686Q588 683 703 683T836 686H845V624H737V420Q737 390 737 345T738 284Q738 205 729 164T689 83Q614 -11 465 -11Q321 -11 240 51T148 207Q147 214 147 421V624H39V686H51Q75 683 226 683Q376 683 400 686H412V624H304V405V370V268Q304 181 311 146T346 87Q387 52 466 52Q642 52 667 195Q668 204 669 415V624H561V686H570"],86:[686,7,869,25,843,"592 686H604Q615 685 631 685T666 684T700 684T724 683Q829 683 835 686H843V624H744L611 315Q584 254 546 165Q492 40 482 19T461 -6L460 -7H409Q398 -4 391 9Q385 20 257 315L124 624H25V686H36Q57 683 190 683Q340 683 364 686H377V624H289L384 403L480 185L492 212Q504 240 529 298T575 405L670 624H582V686H592"],87:[686,7,1189,24,1164,"915 686L1052 683Q1142 683 1157 686H1164V624H1073L957 320Q930 249 900 170T855 52T839 10Q834 0 826 -5Q821 -7 799 -7H792Q777 -7 772 -5T759 10Q759 11 748 39T716 122T676 228L594 442L512 228Q486 159 455 78Q433 19 428 9T416 -5Q411 -7 389 -7H379Q356 -7 349 10Q349 12 334 51T288 170T231 320L116 624H24V686H35Q44 683 183 683Q331 683 355 686H368V624H323Q278 624 278 623L437 207L499 369L561 531L526 624H434V686H445Q454 683 593 683Q741 683 765 686H778V624H733Q688 624 688 623L847 207Q848 207 927 415T1006 624H905V686H915"],88:[686,0,869,33,835,"327 0Q306 3 174 3Q52 3 43 0H33V62H98L162 63L360 333L157 624H48V686H59Q80 683 217 683Q368 683 395 686H408V624H335L393 540L452 458L573 623Q573 624 528 624H483V686H494Q515 683 646 683Q769 683 778 686H787V624H658L575 511Q493 398 493 397L508 376Q522 356 553 312T611 229L727 62H835V0H824Q803 3 667 3Q516 3 489 0H476V62H513L549 63L401 274L247 63Q247 62 292 62H338V0H327"],89:[686,0,869,19,849,"605 0Q581 3 434 3Q286 3 262 0H250V62H358V275L126 624H19V686H30Q54 683 189 683Q361 685 370 686H383V624H308L319 608Q330 591 353 556T396 491L484 359L660 623Q660 624 623 624H585V686H595Q613 683 728 683Q832 683 841 686H849V624H742L509 274V62H618V0H605"],90:[686,0,703,64,645,"80 430L92 686H358Q624 686 628 684Q638 679 638 656Q638 640 637 639Q637 638 445 353Q401 288 351 214T277 103L253 67L256 66Q258 66 265 66T279 66T298 66H343Q380 66 406 68T464 81T518 110T557 164T579 250Q583 278 583 298Q583 299 614 299H645V291Q643 281 636 150T627 8V0H353Q79 0 75 2Q64 7 64 31Q64 48 66 52L259 340L451 623Q451 624 384 624Q294 623 259 612Q155 581 143 446Q142 440 142 432V430H80"],95:[-10,61,575,0,574,"0 -61V-10H574V-61H0"],96:[706,-503,575,113,338,"114 634Q114 663 136 684T183 706Q191 706 196 705T208 700T219 693T232 681T245 666T262 645T282 620Q332 558 337 553Q338 552 318 527L299 503L223 543Q215 547 202 553T183 563T167 571T153 580T141 587T131 595T124 603T118 612T115 622T114 634"],126:[344,-202,575,96,478,"343 202Q320 202 278 225T215 249Q181 249 146 214L134 202L115 219Q111 222 106 226T98 234L96 236Q158 306 165 313Q199 344 230 344Q239 344 244 343Q262 339 300 318T359 297Q393 297 428 332L440 344L459 327Q463 324 468 320T476 312L478 310Q416 240 409 233Q375 202 343 202"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js deleted file mode 100644 index d24bcc8..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{768:[706,-503,0,-462,-237,"-461 634Q-461 663 -439 684T-392 706Q-384 706 -379 705T-367 700T-356 693T-343 681T-330 666T-313 645T-293 620Q-243 558 -238 553Q-237 552 -257 527L-276 503L-352 543Q-360 547 -373 553T-392 563T-408 571T-422 580T-434 587T-444 595T-451 603T-457 612T-460 622T-461 634"],769:[706,-503,0,-339,-115,"-184 706Q-156 706 -136 683T-115 634Q-115 608 -134 593T-209 550Q-219 545 -224 543L-300 503L-319 527Q-339 552 -338 553Q-333 558 -283 620Q-276 629 -266 641T-251 659T-239 673T-229 685T-221 693T-212 699T-204 703T-195 705T-184 706"],770:[694,-520,0,-449,-126,"-368 632L-288 694Q-286 693 -207 632T-127 570T-144 545T-162 520Q-165 520 -225 559L-288 597L-351 559Q-411 520 -414 520Q-415 520 -432 544T-449 570T-368 632"],771:[694,-552,0,-479,-97,"-232 552Q-255 552 -297 575T-360 599Q-394 599 -429 564L-441 552L-460 569Q-464 572 -469 576T-476 584L-479 586Q-417 656 -410 663Q-376 694 -345 694Q-336 694 -331 693Q-313 689 -275 668T-216 647Q-182 647 -147 682L-135 694L-116 677Q-112 674 -107 670T-100 662L-97 660Q-159 590 -166 583Q-200 552 -232 552"],772:[607,-540,0,-495,-81,"-495 540V607H-81V540H-495"],774:[694,-500,0,-473,-103,"-288 500Q-367 500 -420 558T-473 689V694H-422V685Q-422 681 -421 674T-411 648T-389 615T-349 590T-288 578Q-228 578 -193 611T-154 685V694H-103V689Q-103 623 -153 562T-288 500"],775:[695,-525,0,-373,-203,"-373 610Q-373 647 -348 671T-292 695Q-251 695 -227 669T-203 610T-225 551T-288 525Q-327 525 -350 551T-373 610"],776:[695,-535,0,-479,-97,"-479 615Q-479 650 -456 672T-397 695Q-361 693 -341 669T-320 615Q-320 583 -343 559T-399 535Q-428 535 -453 556T-479 615ZM-256 615Q-256 651 -232 673T-176 695Q-149 695 -123 675T-97 615Q-97 578 -121 557T-180 535Q-211 537 -233 559T-256 615"],778:[702,-535,0,-415,-161,"-415 618Q-415 653 -382 677T-296 702H-291Q-194 702 -168 647Q-161 634 -161 618Q-161 607 -165 596T-180 570T-220 546T-288 536T-355 545T-394 568T-410 594T-415 618ZM-223 618Q-223 645 -234 652T-274 659H-283Q-289 659 -297 659T-307 660Q-328 660 -339 653T-351 638T-353 619Q-353 591 -341 585T-288 578Q-260 578 -249 580T-230 590T-223 618"],779:[714,-511,0,-442,-82,"-389 511L-442 543Q-442 544 -424 606T-404 674Q-390 705 -361 713Q-360 713 -356 713T-349 714Q-340 714 -330 712Q-273 690 -273 644Q-273 621 -290 604L-342 554L-389 511ZM-198 511L-251 543Q-251 544 -233 606T-213 674Q-199 705 -170 713Q-169 713 -165 713T-158 714Q-127 714 -105 693T-82 647Q-82 638 -84 631T-89 618T-99 604T-112 590T-130 574T-151 554L-198 511"],780:[660,-515,0,-445,-132,"-444 603Q-445 604 -439 618T-425 646T-417 659L-352 635L-288 611L-224 635L-159 659Q-158 660 -151 647T-138 619T-132 603Q-135 601 -211 558T-288 515T-365 558T-444 603"],824:[711,210,0,-734,-161,"-705 -210Q-715 -210 -724 -203T-734 -179Q-734 -171 -732 -166Q-730 -163 -474 266T-215 698Q-208 711 -190 711Q-180 711 -171 704T-161 681Q-161 672 -164 667Q-171 654 -425 228T-683 -201Q-692 -210 -705 -210"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/CombDiacritMarks.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js deleted file mode 100644 index df21a2a..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{8407:[723,-513,0,-542,-33,"-169 694Q-169 707 -160 715T-142 723Q-127 723 -119 716T-107 698T-90 673T-53 648Q-33 637 -33 619Q-33 602 -45 595T-87 573T-144 532Q-165 513 -176 513Q-189 513 -197 522T-206 543Q-206 556 -188 574L-175 588H-347L-519 589Q-542 597 -542 618Q-542 623 -541 627T-537 635T-532 640T-527 644T-522 648L-519 649H-149Q-169 676 -169 694"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/CombDiactForSymbols.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js deleted file mode 100644 index ceee0b8..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{8211:[300,-249,575,0,574,"0 249V300H574V249H0"],8212:[300,-249,1150,0,1149,"0 249V300H1149V249H0"],8216:[695,-329,319,58,246,"58 461Q58 503 70 542T99 607T134 654T165 684T184 694T201 683T213 664Q213 658 202 648T175 624T143 583T116 518Q115 512 114 505T112 493L111 488Q132 500 161 500Q198 500 221 475T245 414T222 354T161 329Q112 329 85 369T58 461"],8217:[694,-329,319,74,261,"74 572T74 608T97 669T157 694Q203 694 232 657T261 559Q261 520 250 482T222 418T187 370T155 339T135 329Q128 329 117 340T106 359Q106 365 117 375T144 399T176 440T203 505Q204 511 205 518T208 530V535L202 532Q196 530 184 527T158 523Q121 523 98 547"],8220:[694,-329,603,110,564,"110 461Q110 502 121 541T150 606T185 653T217 684T235 694Q242 694 254 682T266 664Q266 659 254 648T226 623T193 578T167 511Q164 500 164 494T164 487Q188 500 212 500Q251 500 274 475T297 414Q297 378 274 354T212 329Q167 329 139 367T110 461ZM377 461Q377 502 388 541T417 606T452 653T484 684T502 694Q509 694 521 682T533 664Q533 659 521 648T493 623T460 578T434 511Q431 500 431 494T431 487Q455 500 479 500Q518 500 541 475T564 414Q564 378 541 354T479 329Q434 329 406 367T377 461"],8221:[694,-328,603,38,492,"38 572T38 608T61 669T121 694Q167 694 196 657T225 559Q225 520 214 482T186 418T151 370T119 339T99 329T82 340T70 360Q70 365 74 369T92 385T122 414Q142 441 154 471T170 518L172 535L166 532Q160 530 148 527T122 523Q85 523 62 547ZM305 572T305 608T328 669T388 694Q434 694 463 657T492 559Q492 520 481 482T453 418T418 370T386 339T366 329T349 340T337 360Q337 365 341 369T359 385T389 414Q409 441 421 471T436 518L439 535L433 532Q427 530 415 527T389 523Q352 523 329 547"],8224:[702,211,511,64,446,"231 470Q232 471 232 473Q232 477 213 540T193 636Q192 642 192 651T204 677T239 700Q249 702 255 702Q300 702 315 660Q317 653 317 636Q317 603 298 539T279 472V470Q280 470 318 488T383 506Q408 506 423 493T442 467T446 444T443 421T424 396T383 382Q355 382 318 400T279 418Q278 416 285 392T303 334T316 284Q318 268 318 234Q318 149 311 45T296 -127T284 -203Q279 -211 255 -211Q237 -211 233 -210T226 -203Q222 -195 214 -129T199 41T192 234V245Q192 286 212 349Q233 413 231 418Q229 418 192 400T128 382Q102 382 86 396T67 421T64 444T67 466T86 492T128 506Q155 506 192 488T231 470"],8225:[703,202,511,64,446,"193 637Q193 663 206 679T231 698T255 702T279 699T304 679T317 637Q317 605 299 557T280 504Q280 503 281 503T320 521T382 539Q410 539 428 521T446 476Q446 454 432 434T383 414H377Q358 414 320 431T281 449L280 448Q280 444 298 396T317 316Q318 310 318 301T306 275T271 252Q261 250 255 250Q210 250 195 292Q193 299 193 316Q193 347 211 395T230 448Q230 449 229 449Q227 449 196 434Q151 414 133 414H127Q102 414 87 427T68 452T64 477Q64 503 81 521T127 539Q143 539 164 532T204 515T226 504Q230 502 230 504Q230 508 212 556T193 637ZM193 184Q193 210 206 226T231 245T255 249T279 246T304 226T317 184Q317 153 299 106T280 53Q280 51 282 51T322 68T383 86Q411 86 428 69T445 24T428 -21T382 -39Q358 -39 322 -22T282 -4Q280 -3 280 -3T280 -6Q281 -13 299 -59T317 -136Q318 -142 318 -151T306 -177T271 -200Q261 -202 255 -202Q210 -202 195 -160Q193 -153 193 -136Q193 -106 211 -60T230 -6Q230 -4 228 -4T188 -21T128 -39Q100 -39 83 -22T65 24Q65 53 82 69T127 86Q150 86 187 69T228 51Q230 50 230 50T230 53Q229 58 211 105T193 184"],8230:[171,-1,1295,74,1221,"74 85Q74 121 99 146T156 171Q200 171 222 143T245 85Q245 56 224 29T160 1Q118 1 96 27T74 85ZM562 85Q562 121 587 146T644 171Q688 171 710 143T733 85Q733 56 712 29T648 1Q606 1 584 27T562 85ZM1050 85Q1050 121 1075 146T1132 171Q1176 171 1198 143T1221 85Q1221 56 1200 29T1136 1Q1094 1 1072 27T1050 85"],8242:[563,-33,344,35,331,"240 563Q278 563 304 539T331 480V473Q331 462 316 431T217 236Q199 200 174 151T136 78T123 50Q113 33 105 33Q101 33 72 45T38 60Q35 63 35 65Q35 77 101 293T171 517Q182 542 202 552T240 563"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/GeneralPunctuation.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js deleted file mode 100644 index 96e3945..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{9651:[711,-1,1022,69,953,"91 1Q69 10 69 31Q69 39 81 59T168 197Q327 447 485 697Q493 711 510 711Q523 711 532 702Q536 697 743 371T951 41Q953 35 953 31Q953 12 931 1H91ZM690 340Q651 401 604 476T534 586L512 621Q511 622 507 616Q498 604 332 342L154 62L333 61H689L867 62L690 340"],9657:[540,39,575,33,542,"33 518Q45 540 63 540H65Q72 540 174 481Q247 439 302 407Q529 276 533 272Q542 263 542 250Q542 238 533 229Q528 224 304 95T71 -38Q69 -39 63 -39Q42 -39 33 -16V518ZM449 251L94 456Q93 456 93 251Q93 45 94 45L106 52Q119 59 139 71T186 98T242 131T301 165T357 197T404 225T437 244L449 251"],9661:[500,210,1022,68,953,"68 470Q68 481 75 489T91 499H93Q296 500 512 500H931Q932 499 937 496T945 490T950 482T953 469Q953 465 951 459Q950 455 743 129T532 -202Q524 -210 511 -210Q497 -210 489 -202Q486 -199 281 124T71 456Q68 462 68 470ZM154 439Q155 437 332 158T510 -122Q510 -123 533 -87T600 18T688 157Q866 437 866 438Q867 439 805 439T511 439H154"],9667:[539,38,575,33,542,"542 -14Q533 -38 514 -38H512Q503 -38 498 -35Q494 -34 270 95T42 229Q33 238 33 251Q33 259 35 264Q36 265 38 268T42 272Q48 278 271 407T504 539H508Q533 539 542 515V-14ZM481 251Q481 456 480 456Q125 252 124 251Q124 250 301 148T480 45T481 251"],9711:[711,212,1150,65,1084,"65 42T65 250T204 584T574 711Q795 711 935 594Q955 577 974 555T1022 490T1067 385T1084 250Q1084 42 945 -84T574 -211T204 -85ZM1024 250Q1024 431 903 540T578 650Q482 650 404 627T274 565T189 474T140 366T125 250Q125 123 186 31T347 -106T573 -150Q772 -150 898 -45T1024 250"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/GeometricShapes.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js deleted file mode 100644 index 344c4d4..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{915:[680,0,692,39,643,"425 0L228 3Q63 3 51 0H39V62H147V618H39V680H612V676Q614 670 627 552T643 428V424H581V428Q580 430 576 461T562 524T532 576Q512 596 481 605T426 616T357 618H304V62H439V0H425"],916:[698,0,958,56,901,"901 12Q901 7 892 0H479Q65 0 62 2Q56 6 56 11Q56 14 242 347T433 685Q438 694 450 696Q454 698 480 698H506L523 687Q526 683 711 354T899 17Q901 13 901 12ZM653 137L427 538L202 137L315 136H540L653 137"],920:[696,10,894,64,830,"629 -10T446 -10T164 89T64 340Q64 380 71 420T102 510T163 596T266 662T418 696H438Q488 696 499 695Q582 686 644 655T741 584T796 495T823 409T829 338Q829 188 729 89ZM439 645Q416 645 390 638T333 615T275 564T236 480Q221 423 221 341Q221 272 230 228Q247 144 301 94T447 43T592 93T663 228Q672 272 672 341Q672 645 439 645ZM286 242V446H348V412H545V446H607V242H545V276H348V242H286"],923:[698,0,806,40,765,"285 0Q267 3 154 3Q56 3 47 0H40V62H131Q131 63 167 160T244 369T321 578T359 678Q366 698 393 698H404H413Q437 698 446 678Q448 672 560 369T674 62H765V0H754Q733 3 604 3Q453 3 429 0H416V62H461L507 63L355 470Q353 468 279 265L203 63L249 62H294V0H285"],926:[675,0,767,48,718,"54 465L63 674Q63 675 383 675T703 674L712 465Q712 464 681 464H650V467Q650 490 646 516T632 545Q612 550 383 550H283Q169 550 149 548T124 531Q123 530 123 529Q116 506 116 467V464H85Q54 464 54 465ZM160 256V447H222V414H544V447H606V256H544V289H222V256H160ZM57 0L48 222H110V219Q110 147 125 133Q127 130 130 129T160 127T235 126T383 126Q482 126 530 126T604 127T635 129T641 133Q656 146 656 219V222H718L709 0H57"],928:[680,0,900,39,860,"400 0Q376 3 226 3Q75 3 51 0H39V62H147V618H39V680H860V618H752V62H860V0H848Q824 3 674 3Q523 3 499 0H487V62H595V618H304V62H412V0H400"],931:[686,0,831,64,766,"766 271Q764 266 750 137T735 4V0H407Q74 0 71 4L70 5Q64 9 64 18Q64 24 82 41T213 158L359 288Q360 288 320 336T214 460Q67 633 66 635Q64 638 64 655Q64 679 75 684Q78 686 407 686H735V682Q738 676 751 558T766 434V430H735Q704 430 704 431Q704 434 703 444T696 477T681 520T654 563T613 598Q578 615 527 619T371 624H281L396 489Q506 358 513 351Q517 342 512 334Q503 325 371 208Q338 179 303 147T249 99L231 83L243 81Q258 81 364 81Q382 81 418 81T470 82T513 83T554 88T587 96T619 109T645 129Q689 173 702 260L704 274Q704 275 735 275H766V271"],933:[698,0,894,64,829,"64 556Q69 619 114 658T224 697Q271 697 310 677T375 622T417 554T444 484L447 477V479Q456 516 473 551T516 620T582 676T670 697Q735 697 780 656T829 556Q829 539 818 532H772Q761 539 761 548Q761 571 681 571Q664 571 653 570T623 562T587 537T555 490Q536 448 531 410T525 300V210V62H660V0H646L447 3Q257 1 247 0H233V62H368V210V301Q368 373 363 410T338 490Q324 518 307 536T270 561T240 569T212 571Q132 571 132 548Q132 539 121 532H75Q64 538 64 556"],934:[686,0,831,64,766,"609 0Q582 3 415 3T221 0H207V62H342V168L328 169Q193 180 117 241Q64 286 64 343T117 445Q193 506 328 517L342 518V624H207V686H221Q248 683 415 683T609 686H623V624H488V518L502 517Q637 506 713 445Q766 400 766 343T713 241Q637 180 502 169L488 168V62H623V0H609ZM342 219T342 343T340 467Q328 467 304 459Q277 451 261 439T237 409T228 378T226 343Q226 314 229 296T250 259T301 228Q331 219 341 219Q342 219 342 343ZM604 343Q604 365 602 379T591 413T560 446T503 464L489 467Q488 467 488 343T489 219Q499 219 529 228Q554 236 570 248T593 277T602 308T604 343"],936:[686,0,894,64,829,"64 515Q64 532 71 536T104 540H139Q200 540 207 538Q225 533 236 521T253 489T260 454T264 414Q264 340 287 296T347 237Q369 226 373 226Q374 226 374 425V624H239V686H253Q280 683 447 683T641 686H655V624H520V226L522 227Q525 228 531 229T552 240T580 261T606 298T624 354Q627 368 628 394T631 440T637 482T654 518T686 538Q693 540 754 540H794Q817 540 823 536T829 515Q829 500 824 495T811 489T796 483T782 461T775 408Q767 212 568 175Q526 168 521 168Q520 168 520 115V62H655V0H641Q614 3 447 3T253 0H239V62H374V168L364 169Q290 178 243 203Q126 261 118 409Q117 443 111 461T98 484T83 489T70 495T64 515"],937:[696,1,831,51,779,"598 645T415 645T232 458Q232 385 275 239T318 26Q318 8 311 4T272 -1Q265 -1 240 -1T196 0H88V3Q86 5 70 108Q52 211 51 212V215H113V212Q123 149 132 133Q136 124 149 122T202 118Q241 118 241 119Q241 132 132 277Q64 378 64 457Q64 564 158 630T403 696Q487 696 543 685T661 638Q722 599 744 549T766 458Q766 434 761 410T749 368T729 327T709 293T684 258T663 229Q632 187 614 160T592 126L589 119Q589 118 628 118Q667 119 680 121T698 133Q702 140 706 160T714 196L717 212V215H779V212Q778 211 760 108Q744 5 742 3V0H634H562Q528 0 520 4T512 26Q512 92 555 238T598 458Q598 645 415 645"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/GreekAndCoptic.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js deleted file mode 100644 index 1f037de..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{168:[695,-535,575,96,478,"96 615Q96 650 120 672T178 695Q214 693 234 669T255 615Q255 583 232 559T176 535Q147 535 122 556T96 615ZM319 615Q319 651 343 673T399 695Q426 695 452 675T478 615Q478 578 454 557T395 535Q364 537 342 559T319 615"],172:[371,-61,767,64,703,"680 371Q683 369 688 366T695 361T698 356T701 346T701 332T702 308V216Q702 196 702 168T703 130Q703 90 697 76T671 61Q650 61 643 81Q641 86 641 198V310H364L87 311Q64 319 64 341Q64 362 84 369Q89 371 385 371H680"],175:[607,-540,575,80,494,"80 540V607H494V540H80"],176:[702,-535,575,160,414,"160 618Q160 653 193 677T279 702H284Q381 702 407 647Q414 634 414 618Q414 607 410 596T395 570T355 546T287 536T220 545T181 568T165 594T160 618ZM352 618Q352 645 341 652T301 659H292Q286 659 278 659T268 660Q247 660 236 653T224 638T222 619Q222 591 234 585T287 578Q315 578 326 580T345 590T352 618"],177:[728,35,894,64,829,"64 328T64 346T87 377H416V542L417 707Q431 728 443 728Q467 728 475 709Q477 704 477 540V377H807Q808 376 811 374T817 370T823 365T827 358T829 347Q829 326 807 317L642 316H477V25H807Q808 24 811 22T817 18T823 13T827 6T829 -5Q829 -26 807 -35H87Q64 -24 64 -6T87 25H416V316H251L87 317Q64 328 64 346"],180:[706,-503,575,236,460,"391 706Q419 706 439 683T460 634Q460 608 441 593T366 550Q356 545 351 543L275 503L256 527Q236 552 237 553Q242 558 292 620Q299 629 309 641T324 659T336 673T346 685T354 693T363 699T371 703T380 705T391 706"],215:[530,28,894,168,726,"168 500Q168 515 178 522T195 530H198Q207 530 218 521T282 458Q312 428 331 409L447 294L563 409Q674 520 682 525Q687 529 695 529Q711 529 718 520T726 499V498Q726 489 720 481T666 427Q631 392 606 367L490 251L606 135Q717 23 721 17T726 2Q726 -9 719 -18T695 -28H692Q685 -28 674 -18T608 47Q581 74 563 92L447 207L331 91Q217 -22 208 -27Q206 -28 203 -28H197Q168 -28 168 2Q168 13 178 24T288 135L404 250L288 366Q177 479 173 485T168 500"],247:[597,96,894,64,828,"344 495Q344 535 372 566T447 597Q490 597 519 566T548 495Q548 452 518 423T446 393Q404 393 374 423T344 495ZM87 221Q64 230 64 251T84 279Q89 281 448 281H806Q807 280 810 278T816 274T822 269T826 262T828 251Q828 230 806 221H87ZM344 -36T344 6T373 78T446 108Q487 108 517 79T548 6Q548 -35 519 -65T446 -96Q406 -96 375 -66"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/Latin1Supplement.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js deleted file mode 100644 index 7662bc5..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{305:[452,8,394,24,367,"24 296Q24 305 34 328T63 380T115 430T187 452Q205 452 223 448T262 435T295 406T308 360Q308 345 287 290T240 170T207 87Q202 67 202 57Q202 42 215 42Q235 42 257 64Q288 92 302 140Q307 156 310 159T330 162H336H347Q367 162 367 148Q367 140 357 117T329 65T276 14T201 -8Q158 -8 121 15T83 84Q83 104 133 229T184 358Q189 376 189 388Q189 402 177 402Q156 402 134 380Q103 352 89 304Q84 288 81 285T61 282H55H44Q24 282 24 296"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/LatinExtendedA.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js deleted file mode 100644 index 08bd411..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{567:[451,201,439,-12,420,"297 360T297 373T294 392T288 400T278 401H276Q237 398 200 363Q181 343 170 325T156 299T149 287T129 282H123H116Q102 282 97 284T92 298Q93 303 98 315T118 349T151 390T201 427T267 451H279Q357 451 388 422T420 354V339L370 138Q321 -60 317 -69Q287 -157 163 -194Q133 -201 99 -201Q39 -201 14 -178T-12 -125Q-12 -94 11 -69T68 -43Q93 -43 108 -57T123 -95Q123 -121 100 -151H104Q131 -151 155 -125T193 -60Q195 -54 244 141T294 345Q297 360 297 373"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/LatinExtendedB.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js deleted file mode 100644 index 9238f87..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{8463:[694,8,668,45,642,"477 56Q477 48 479 46T490 43Q522 45 544 75T577 140Q582 156 585 159T605 162H611H622Q642 162 642 148Q642 138 632 114T602 62T550 13T478 -8Q429 -8 394 17T358 83Q358 95 395 199T433 350Q433 400 394 400H388H383Q335 400 291 363Q256 332 236 298Q233 293 202 170T169 40Q160 18 141 5T99 -8Q70 -8 58 9T45 39Q45 51 116 336L167 540H80V607H184L188 622H184Q183 622 179 622T169 623T157 624T146 624T136 624T131 625Q119 628 119 642Q119 647 123 661T129 679Q133 684 142 685T220 690Q293 694 307 694Q324 694 328 679Q328 673 311 607H494V540H294Q286 507 278 473T264 420L260 403Q260 400 269 408Q327 451 393 451H401H410Q425 451 439 450T476 442T515 424T544 391T556 337Q556 286 517 179T477 56"],8465:[702,8,831,64,798,"65 502Q65 564 99 611T174 680T250 701Q251 701 257 701T269 702Q319 702 374 680T466 633T542 578T592 542L602 538L621 537Q669 537 695 542T725 550T730 560Q732 570 736 572T756 575H764H777Q798 575 798 559Q798 535 780 519Q762 500 727 493T622 486Q532 486 483 504T386 572Q382 576 371 588T355 603T341 616T327 628T313 637T298 645T282 649T264 651Q215 651 174 609T132 501Q132 434 184 393T312 347Q327 346 330 343T333 322T330 301T312 296Q276 296 236 307T157 341T91 406T65 502ZM406 314Q406 351 427 378T480 418T541 437T598 443Q645 443 655 442Q722 435 760 407T798 338Q798 326 794 324T772 321H764Q739 321 734 325T729 341T717 365Q690 392 618 392H611Q586 392 572 366Q561 345 561 315Q561 291 577 275Q595 260 643 241T706 211Q747 186 747 140Q747 78 696 39Q667 15 617 1Q578 -8 480 -8H439Q379 -8 345 5T228 74Q182 105 152 119T86 137Q71 138 68 142T64 164Q64 175 64 177T68 184T78 188T99 188H151L226 187L238 185Q275 176 305 158T376 106T443 54Q478 31 489 31H490Q494 32 500 34T524 43T554 62T579 92T593 135Q593 162 575 179T533 204T479 225T432 255Q406 278 406 314"],8467:[702,19,474,-1,446,"245 -19Q228 -19 212 -16T184 -6T162 9T143 27T129 46T118 66T111 84T106 99T102 111L101 116L69 89L36 62Q31 60 24 62Q-1 88 -1 98Q-1 101 1 105Q1 106 73 170L95 189V197Q95 242 112 317T159 476T241 624T353 701Q357 702 367 702Q428 702 444 641Q446 630 446 606Q446 454 241 246L215 220L212 203Q203 150 203 114Q203 113 203 106T204 95T205 82T209 67T214 54T223 43T236 35T253 32Q277 32 305 44T352 70T389 98T407 112Q409 113 412 113Q420 113 432 95Q445 77 443 70Q440 64 416 44T342 3T245 -19ZM387 615Q387 651 366 651Q342 651 321 604T276 470L241 331Q246 331 280 373T350 486T387 615"],8472:[461,210,740,72,726,"399 159Q410 159 421 151T433 126Q433 104 410 85Q408 84 410 78Q411 72 414 66T428 51T455 43Q483 43 506 55T543 83T568 125T584 166T594 206Q595 211 596 214Q610 273 610 301Q610 365 542 365H538Q483 365 429 344T337 292T269 229T225 175T210 150L255 99Q261 92 274 78T292 58T305 41T316 22T321 3T324 -23Q324 -87 283 -148T174 -210H171Q161 -210 152 -209T128 -201T101 -180T81 -141T72 -78Q72 -72 72 -60T73 -45Q79 4 102 65L108 81Q84 117 84 167Q84 273 140 367T269 461Q285 461 285 447Q285 440 282 431Q278 418 276 415T264 410Q228 404 201 336T174 219Q174 218 176 202L184 214Q252 303 348 360T549 417Q614 417 658 391T719 317Q726 292 726 260Q726 148 646 70T451 -8Q407 -8 377 17T346 92Q346 159 396 159H399ZM178 -160Q200 -160 216 -132T232 -75Q232 -63 228 -56T203 -26Q196 -18 192 -14Q185 -5 176 5T161 20T156 27L153 28Q151 28 146 8T137 -42T132 -89Q132 -160 178 -160"],8476:[711,16,831,42,824,"133 87Q166 34 218 34Q232 34 238 47T247 99Q248 105 248 127Q248 135 248 144T247 169T245 239T243 382Q242 534 241 565T234 612Q219 651 190 651Q168 651 151 630T134 580Q134 565 148 548T178 516T209 468T223 394Q218 243 131 243Q102 243 84 266T64 319Q64 334 69 337T95 340Q117 340 121 337T126 317Q127 294 133 294Q140 294 146 318Q150 339 150 382L151 413Q141 437 103 485T64 572Q64 623 100 662T197 702Q235 702 273 684T339 634Q407 702 610 710Q615 710 630 710T651 711Q673 711 677 709Q682 706 753 578T824 444Q824 437 817 432Q799 420 758 399T686 361T654 344T657 289T665 177T670 115Q676 78 708 46L735 69Q762 93 769 93L807 73Q812 68 812 62Q812 57 805 51T759 18L710 -16H680H669Q617 -16 573 17Q527 52 515 114Q514 118 508 218T501 326V330H397V281Q397 197 384 135T327 28Q281 -16 223 -16H220Q180 -16 151 -7T107 18T86 46T78 68L74 67Q64 67 53 78T42 97Q42 106 51 109T60 114V119Q60 120 60 122L59 124Q59 129 64 135T78 149T91 160Q102 163 109 155Q115 133 119 133Q124 133 137 123T150 102Q150 98 146 94Q144 90 133 87ZM664 419L540 644H535Q517 644 487 637Q396 621 371 582L376 571Q396 512 397 435V392H494Q598 393 610 396Q611 397 615 398Q626 401 645 409T664 419"],8501:[694,0,703,64,638,"590 427Q581 427 579 433T575 450T568 470V468L532 288L541 281Q620 220 634 165L637 154V124Q637 74 628 46Q623 32 612 16T592 0Q580 0 578 19T569 69T538 121Q532 126 385 240T236 355Q234 355 231 338T225 291T222 237Q222 222 223 213T225 201T228 195T231 190Q238 179 261 160T300 119T316 73Q316 41 291 23T231 1Q226 0 149 0H98Q73 0 69 3T64 24Q64 43 67 47T85 51H89Q119 51 134 55T152 64T154 76Q154 95 125 141T96 220Q96 243 104 270T123 319T145 360T164 391T172 404T150 421T102 468T68 529L65 541V570Q65 620 74 648Q79 664 91 679T111 694Q122 694 123 675T132 625T164 573Q168 569 319 452T471 335Q471 337 486 409T502 488Q502 489 491 493T467 511T448 546V573Q448 602 452 624T462 659T474 680T486 691T493 694Q499 694 502 691T507 682T513 673Q517 667 534 651T557 630Q558 629 590 616T631 587Q638 577 638 543Q637 489 622 458T590 427"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/LetterlikeSymbols.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js deleted file mode 100644 index 82509fd..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"]={directory:"Main/Bold",family:"MathJax_Main",id:"MJMAINB",weight:"bold",skew:{305:0.0319,567:0.0958,8463:-0.0319,8467:0.128,8706:0.0958},Ranges:[[32,127,"BasicLatin"],[160,255,"Latin1Supplement"],[256,383,"LatinExtendedA"],[384,591,"LatinExtendedB"],[688,767,"SpacingModLetters"],[768,879,"CombDiacritMarks"],[880,1023,"GreekAndCoptic"],[8192,8303,"GeneralPunctuation"],[8400,8447,"CombDiactForSymbols"],[8448,8527,"LetterlikeSymbols"],[8592,8703,"Arrows"],[8704,8959,"MathOperators"],[8960,9215,"MiscTechnical"],[9632,9727,"GeometricShapes"],[9728,9983,"MiscSymbols"],[10176,10223,"MiscMathSymbolsA"],[10224,10239,"SupplementalArrowsA"],[10752,11007,"SuppMathOperators"]],40:[750,249,447,103,382,"103 166T103 251T121 412T165 541T225 639T287 708T341 750H356H361Q382 750 382 736Q382 732 365 714T323 661T274 576T232 439T214 250Q214 -62 381 -229Q382 -231 382 -234Q382 -249 360 -249H356H341Q314 -231 287 -207T226 -138T165 -41T121 89"],41:[751,249,447,64,344,"231 251Q231 354 214 439T173 575T123 661T81 714T64 735Q64 744 73 749H75Q77 749 79 749T84 750T90 750H105Q132 732 159 708T220 639T281 542T325 413T343 251T325 89T281 -40T221 -138T159 -207T105 -249H90Q80 -249 76 -249T68 -245T64 -234Q64 -230 81 -212T123 -160T172 -75T214 61T231 251"],43:[633,131,894,64,829,"64 232T64 250T87 281H416V444Q416 608 418 612Q426 633 446 633T475 613Q477 608 477 444V281H807Q808 280 811 278T817 274T823 269T827 262T829 251Q829 230 807 221L642 220H477V57Q477 -107 475 -112Q468 -131 446 -131Q425 -131 418 -112Q416 -107 416 57V220H251L87 221Q64 232 64 250"],44:[171,194,319,74,258,"74 85Q74 120 97 145T159 171Q200 171 226 138Q258 101 258 37Q258 -5 246 -44T218 -109T183 -155T152 -184T135 -194Q129 -194 118 -183T106 -164Q106 -157 115 -149Q121 -145 130 -137T161 -100T195 -35Q197 -28 200 -17T204 3T205 11T199 9T183 3T159 0Q120 0 97 26T74 85"],46:[171,-1,319,74,245,"74 85Q74 121 99 146T156 171Q200 171 222 143T245 85Q245 56 224 29T160 1Q118 1 96 27T74 85"],47:[750,250,575,64,510,"451 730Q460 750 479 750Q492 750 501 740T510 718Q508 708 318 244L122 -232Q112 -250 95 -250Q82 -250 73 -241T64 -218Q66 -205 258 261T451 730"],48:[654,10,575,45,529,"266 654H280H282Q500 654 524 418Q529 370 529 320Q529 125 456 52Q397 -10 287 -10Q110 -10 63 154Q45 212 45 316Q45 504 113 585Q140 618 185 636T266 654ZM374 548Q347 604 286 604Q247 604 218 575Q197 552 193 511T188 311Q188 159 196 116Q202 87 225 64T287 41Q339 41 367 87Q379 107 382 152T386 329Q386 518 374 548"],49:[655,0,575,80,494,"481 0L294 3Q136 3 109 0H96V62H227V304Q227 546 225 546Q169 529 97 529H80V591H97Q231 591 308 647L319 655H333Q355 655 359 644Q361 640 361 351V62H494V0H481"],50:[654,0,575,57,517,"175 580Q175 578 185 572T205 551T215 510Q215 467 191 449T137 430Q107 430 83 448T58 511Q58 558 91 592T168 640T259 654Q328 654 383 637Q451 610 484 563T517 459Q517 401 482 360T368 262Q340 243 265 184L210 140H274Q416 140 429 145Q439 148 447 186T455 237H517V233Q516 230 501 119Q489 9 486 4V0H57V25Q57 51 58 54Q60 57 109 106T215 214T288 291Q364 377 364 458Q364 515 328 553T231 592Q214 592 201 589T181 584T175 580"],51:[655,11,575,47,526,"80 503Q80 565 133 610T274 655Q366 655 421 623T491 538Q493 528 493 510Q493 446 453 407T361 348L376 344Q452 324 489 281T526 184Q526 152 514 121T474 58T392 8T265 -11Q175 -11 111 34T48 152Q50 187 72 209T132 232Q171 232 193 208T216 147Q216 136 214 126T207 108T197 94T187 84T178 77T170 72L168 71Q168 70 179 65T215 54T266 48H270Q331 48 350 105Q358 128 358 185Q358 239 348 268T309 313Q292 321 242 322Q205 322 198 324T191 341V348Q191 366 196 369T232 375Q239 375 247 376T260 377T268 378Q284 383 297 393T326 436T341 517Q341 536 339 547T331 573T308 593T266 600Q248 600 241 599Q214 593 183 576Q234 556 234 503Q234 462 210 444T157 426Q126 426 103 446T80 503"],52:[656,0,575,32,542,"531 0Q510 3 381 3Q238 3 214 0H201V62H313V155H32V217L205 434Q342 606 362 630T387 655L391 656Q395 656 401 656T414 656H427Q447 656 451 645Q453 641 453 429V217H542V155H453V62H542V0H531ZM324 217V494L103 218L213 217H324"],53:[655,11,575,57,517,"100 565V605Q100 637 102 646T113 655Q116 655 139 647T202 631T286 623Q332 623 372 631T434 647T459 655Q466 655 469 651T472 643T472 629Q472 613 463 601Q370 487 219 487Q195 487 183 488T169 490T168 433V376Q169 376 174 379T188 387T211 397T244 405T288 409Q390 409 453 352T517 201Q517 106 445 48T253 -11Q169 -11 113 37T57 154Q57 187 79 208T131 229T183 209T206 154Q206 99 155 83Q152 82 157 78Q196 47 253 47Q347 47 358 135Q358 137 358 138Q360 158 360 209Q360 277 355 301T337 338Q315 358 282 358Q202 358 160 303Q153 294 149 292T130 290Q107 290 102 301Q100 304 100 474V565"],54:[655,11,575,48,526,"48 318Q48 395 68 456T120 553T193 613T273 646T350 655Q425 655 461 616T497 524Q497 485 475 468T428 451Q399 451 378 470T357 521Q357 565 403 588Q375 601 351 601Q313 601 282 584Q242 565 222 526Q199 473 199 367Q201 369 210 380T227 396T246 410T275 422T312 426Q438 426 494 332Q526 285 526 208V199Q526 112 465 53Q428 17 388 3T285 -11Q236 -11 195 7T135 43T104 80Q48 165 48 318ZM375 231V244V268Q375 295 373 310T364 342T341 366T299 374H297Q231 374 208 287Q200 257 200 196Q201 120 209 100Q231 47 288 47Q351 47 368 90Q375 112 375 231"],55:[676,11,575,64,558,"256 -11Q231 -11 208 5T185 65Q185 105 193 146T212 220T241 289T275 349T312 402T346 445T377 479T397 502L400 504H301Q156 503 150 497Q142 491 134 456T126 407H64V411Q65 414 82 544T99 675T130 676H161V673Q161 669 162 666T167 661T173 657T181 654T190 652T200 651T210 650T220 649T229 648Q237 648 254 647T276 646Q277 646 426 644H558V620V607Q558 596 551 586T509 537Q489 515 476 500Q390 401 384 393Q349 339 337 259T324 113T322 38Q307 -11 256 -11"],56:[654,11,575,48,526,"80 474Q80 561 139 607T278 654Q357 654 411 632Q490 593 494 509Q494 424 416 376L407 371L418 364Q432 356 447 345T481 312T513 260T526 192Q526 100 461 45T285 -11Q184 -11 116 32T48 164Q48 181 50 196T58 225T69 249T84 270T100 286T117 300T134 311T149 321T162 329L152 336Q120 360 100 397T80 474ZM347 404Q404 446 404 503Q404 579 317 599Q309 600 276 600Q178 600 170 538Q170 532 171 527T173 518T178 509T184 501T194 492T205 484T219 476T235 467T254 456T275 445L347 404ZM289 47Q323 47 351 54T402 82T425 137Q425 147 421 161Q411 183 391 197T303 249Q224 293 223 293Q220 291 215 288T197 273T175 248T157 213T149 167Q149 109 188 78T289 47"],57:[654,11,575,48,526,"178 59Q206 48 238 48Q311 48 345 102Q370 138 375 259V278Q374 278 369 271T350 252T322 232Q297 220 258 220Q172 220 110 275T48 438V446Q54 561 146 618Q199 654 278 654Q321 654 329 653Q526 621 526 330Q526 252 507 190T457 92T388 31T312 -2T240 -11Q165 -11 121 25T77 120Q77 159 99 176T147 193T194 177T217 122Q217 113 216 106T211 92T205 82T198 73T191 67T184 62T178 59ZM374 446V465Q374 523 364 552T315 598Q309 600 293 601Q227 601 210 562Q199 539 199 433Q199 343 204 319T235 279Q250 272 274 271H282Q293 271 303 274T327 288T353 323T371 385Q374 403 374 446"],58:[444,-1,319,74,245,"74 359Q74 394 98 419T158 444Q200 444 222 417T245 358Q245 329 224 302T160 274Q116 274 95 301T74 359ZM74 85Q74 121 99 146T156 171Q200 171 222 143T245 85Q245 56 224 29T160 1Q118 1 96 27T74 85"],59:[444,194,319,74,248,"74 359Q74 394 98 419T158 444Q200 444 222 417T245 358Q245 329 224 302T160 274Q116 274 95 301T74 359ZM74 50T74 86T97 146T158 171Q204 171 226 132T248 38Q248 -23 223 -80T171 -165T135 -194Q129 -194 118 -183T106 -164Q106 -163 106 -160L107 -158Q108 -155 121 -142T150 -107T177 -58Q189 -32 194 3Q195 6 193 6Q172 0 158 0Q121 0 98 25"],60:[587,85,894,96,797,"797 -56Q797 -68 790 -76T767 -85H759L434 70Q108 226 105 229Q96 238 96 250Q96 263 105 272Q109 276 271 354T595 508T757 585Q763 587 766 587Q780 587 788 578T797 556Q797 544 788 535Q784 531 490 391L197 251Q213 242 359 173T644 37T788 -34Q797 -43 797 -56"],61:[393,-109,894,64,829,"87 333Q64 343 64 362Q64 383 84 391Q89 393 448 393H807Q808 392 811 390T817 386T823 381T827 374T829 363Q829 345 807 333H87ZM87 109Q64 118 64 139Q64 159 86 168Q89 169 448 169H807L812 166Q816 163 818 162T823 157T827 149T829 139Q829 118 807 109H87"],62:[587,85,894,96,797,"127 -85Q110 -85 103 -75T96 -55Q96 -41 106 -34Q119 -24 308 65Q361 90 411 114L696 250L427 379Q106 533 103 537Q96 545 96 557Q96 568 104 577T128 587Q137 586 460 431T788 272Q797 263 797 250Q797 238 788 229Q785 226 459 70L135 -85H127"],91:[750,250,319,128,293,"128 -250V750H293V689H189V-189H293V-250H128"],92:[750,250,575,63,511,"64 718Q63 731 72 740T94 750Q106 750 113 743Q118 741 122 732L318 256Q508 -208 510 -218Q511 -231 502 -240T480 -250Q460 -250 451 -230Q451 -229 259 238T64 718"],93:[750,250,319,25,190,"25 689V750H190V-250H25V-189H129V689H25"],94:[694,-520,575,126,449,"207 632L287 694Q289 693 368 632T448 570T431 545T413 520Q410 520 350 559L287 597L224 559Q164 520 161 520Q160 520 143 544T126 570T207 632"],97:[453,6,559,32,558,"64 349Q64 399 107 426T255 453Q346 453 402 423T473 341Q478 327 478 310T479 196V77Q493 63 529 62Q549 62 553 57T558 31Q558 9 552 5T514 0H497H481Q375 0 367 56L356 46Q300 -6 210 -6Q130 -6 81 30T32 121Q32 188 111 226T332 272H350V292Q350 313 348 327T337 361T306 391T248 402T194 399H189Q204 376 204 354Q204 327 187 306T134 284Q97 284 81 305T64 349ZM164 121Q164 89 186 67T238 45Q274 45 307 63T346 108L350 117V226H347Q248 218 206 189T164 121"],98:[694,6,639,29,600,"32 686L123 690Q214 694 215 694H221V409Q289 450 378 450Q479 450 539 387T600 221Q600 122 535 58T358 -6H355Q272 -6 203 53L160 1L129 0H98V301Q98 362 98 435T99 525Q99 591 97 604T83 620Q69 624 42 624H29V686H32ZM227 105L232 99Q237 93 242 87T258 73T280 59T306 49T339 45Q380 45 411 66T451 131Q457 160 457 230Q457 264 456 284T448 329T430 367T396 389T343 398Q282 398 235 355L227 348V105"],99:[453,6,511,39,478,"447 131H458Q478 131 478 117Q478 112 471 95T439 51T377 9Q330 -6 286 -6Q196 -6 135 35Q39 96 39 222Q39 324 101 384Q169 453 286 453Q359 453 411 431T464 353Q464 319 445 302T395 284Q360 284 343 305T325 353Q325 380 338 396H333Q317 398 295 398H292Q280 398 271 397T245 390T218 373T197 338T183 283Q182 275 182 231Q182 199 184 180T193 132T220 85T270 57Q289 50 317 50H326Q385 50 414 115Q419 127 423 129T447 131"],100:[694,6,639,38,609,"351 686L442 690Q533 694 534 694H540V389Q540 327 540 253T539 163Q539 97 541 83T555 66Q569 62 596 62H609V31Q609 0 608 0Q588 0 510 -3T412 -6Q411 -6 411 16V38L401 31Q337 -6 265 -6Q159 -6 99 58T38 224Q38 265 51 303T92 375T165 429T272 449Q359 449 417 412V507V555Q417 597 415 607T402 620Q388 624 361 624H348V686H351ZM411 350Q362 399 291 399Q278 399 256 392T218 371Q195 351 189 320T182 238V221Q182 179 183 159T191 115T212 74Q241 46 288 46Q358 46 404 100L411 109V350"],101:[452,6,527,32,494,"32 225Q32 332 102 392T272 452H283Q382 452 436 401Q494 343 494 243Q494 226 486 222T440 217Q431 217 394 217T327 218H175V209Q175 177 179 154T196 107T236 69T306 50Q312 49 323 49Q376 49 410 85Q421 99 427 111T434 127T442 133T463 135H468Q494 135 494 117Q494 110 489 97T468 66T431 32T373 5T292 -6Q181 -6 107 55T32 225ZM383 276Q377 346 348 374T280 402Q253 402 230 390T195 357Q179 331 176 279V266H383V276"],102:[700,0,351,40,453,"308 0Q290 3 172 3Q58 3 49 0H40V62H109V382H42V444H109V503L110 562L112 572Q127 625 178 658T316 699Q318 699 330 699T348 700Q381 698 404 687T436 658T449 629T452 606Q452 576 432 557T383 537Q355 537 335 555T314 605Q314 635 328 649H325Q311 649 293 644T253 618T227 560Q226 555 226 498V444H340V382H232V62H318V0H308"],103:[455,201,575,30,559,"50 300Q50 368 105 409T255 450Q328 450 376 426L388 420Q435 455 489 455Q517 455 533 441T554 414T558 389Q558 367 544 353T508 339Q484 339 471 354T458 387Q458 397 462 400Q464 401 461 400Q459 400 454 399Q429 392 427 390Q454 353 459 328Q461 315 461 300Q461 240 419 202Q364 149 248 149Q185 149 136 172Q129 158 129 148Q129 105 170 93Q176 91 263 91Q273 91 298 91T334 91T366 89T400 85T432 77T466 64Q544 22 544 -69Q544 -114 506 -145Q438 -201 287 -201Q149 -201 90 -161T30 -70Q30 -58 33 -47T42 -27T54 -13T69 -1T82 6T94 12T101 15Q66 57 66 106Q66 151 90 187L97 197L89 204Q50 243 50 300ZM485 403H492Q491 404 488 404L485 403V403ZM255 200Q279 200 295 206T319 219T331 242T335 268T336 300Q336 337 333 352T317 380Q298 399 255 399Q228 399 211 392T187 371T178 345T176 312V300V289Q176 235 194 219Q215 200 255 200ZM287 -150Q357 -150 400 -128T443 -71Q443 -65 442 -61T436 -50T420 -37T389 -27T339 -21L308 -20Q276 -20 253 -20Q190 -20 180 -20T156 -26Q130 -38 130 -69Q130 -105 173 -127T287 -150"],104:[694,0,639,37,623,"40 686L131 690Q222 694 223 694H229V533L230 372L238 381Q248 394 264 407T317 435T398 450Q428 450 448 447T491 434T529 402T551 346Q553 335 554 198V62H623V0H614Q596 3 489 3Q374 3 365 0H356V62H425V194V275Q425 348 416 373T371 399Q326 399 288 370T238 290Q236 281 235 171V62H304V0H295Q277 3 171 3Q64 3 46 0H37V62H106V332Q106 387 106 453T107 534Q107 593 105 605T91 620Q77 624 50 624H37V686H40"],105:[695,0,319,40,294,"72 610Q72 649 98 672T159 695Q193 693 217 670T241 610Q241 572 217 549T157 525Q120 525 96 548T72 610ZM46 442L136 446L226 450H232V62H294V0H286Q271 3 171 3Q67 3 49 0H40V62H109V209Q109 358 108 362Q103 380 55 380H43V442H46"],106:[695,200,351,-71,274,"104 610Q104 649 130 672T191 695Q225 693 249 670T273 610Q273 572 249 549T189 525Q152 525 128 548T104 610ZM78 442L173 446L268 450H274V196Q274 -5 274 -37T269 -83Q256 -132 201 -166T71 -200Q10 -200 -30 -173T-71 -102Q-71 -70 -51 -51T-1 -31Q27 -31 48 -49T69 -100Q69 -121 53 -147H56Q66 -149 77 -149H80Q90 -149 100 -146T127 -125T149 -73Q151 -55 151 149V362Q150 364 148 366T145 370T142 373T138 375T133 377T124 378T113 379T97 380H75V442H78"],107:[694,0,607,29,587,"32 686L123 690Q214 694 215 694H221V255L377 382H346V444H355Q370 441 476 441Q544 441 556 444H562V382H476L347 277L515 62H587V0H579Q564 3 476 3Q370 3 352 0H343V62H358L373 63L260 206L237 189L216 172V62H285V0H277Q259 3 157 3Q46 3 37 0H29V62H98V332Q98 387 98 453T99 534Q99 593 97 605T83 620Q69 624 42 624H29V686H32"],108:[694,0,319,40,301,"43 686L134 690Q225 694 226 694H232V62H301V0H292Q274 3 170 3Q67 3 49 0H40V62H109V332Q109 387 109 453T110 534Q110 593 108 605T94 620Q80 624 53 624H40V686H43"],109:[450,0,958,37,942,"40 442Q217 450 218 450H224V365Q226 367 235 378T254 397T278 416T314 435T362 448Q376 450 400 450H406Q503 450 534 393Q545 376 545 370Q545 368 555 379Q611 450 716 450Q774 450 809 434Q850 414 861 379T873 276V213V198V62H942V0H933Q915 3 809 3Q702 3 684 0H675V62H744V194V275Q744 348 735 373T690 399Q645 399 607 370T557 290Q555 281 554 171V62H623V0H614Q596 3 489 3Q374 3 365 0H356V62H425V194V275Q425 348 416 373T371 399Q326 399 288 370T238 290Q236 281 235 171V62H304V0H295Q277 3 171 3Q64 3 46 0H37V62H106V210V303Q106 353 104 363T91 376Q77 380 50 380H37V442H40"],110:[450,0,639,37,623,"40 442Q217 450 218 450H224V407L225 365Q233 378 245 391T289 422T362 448Q374 450 398 450Q428 450 448 447T491 434T529 402T551 346Q553 335 554 198V62H623V0H614Q596 3 489 3Q374 3 365 0H356V62H425V194V275Q425 348 416 373T371 399Q326 399 288 370T238 290Q236 281 235 171V62H304V0H295Q277 3 171 3Q64 3 46 0H37V62H106V210V303Q106 353 104 363T91 376Q77 380 50 380H37V442H40"],111:[453,5,575,32,542,"287 -5Q228 -5 182 10T109 48T63 102T39 161T32 219Q32 272 50 314T94 382T154 423T214 446T265 452H279Q319 452 326 451Q428 439 485 376T542 221Q542 156 514 108T442 33Q384 -5 287 -5ZM399 230V250Q399 280 398 298T391 338T372 372T338 392T282 401Q241 401 212 380Q190 363 183 334T175 230Q175 202 175 189T177 153T183 118T195 91T215 68T245 56T287 50Q348 50 374 84Q388 101 393 132T399 230"],112:[450,194,639,29,600,"32 442L123 446Q214 450 215 450H221V409Q222 409 229 413T251 423T284 436T328 446T382 450Q480 450 540 388T600 223Q600 128 539 61T361 -6H354Q292 -6 236 28L227 34V-132H296V-194H287Q269 -191 163 -191Q56 -191 38 -194H29V-132H98V113V284Q98 330 97 348T93 370T83 376Q69 380 42 380H29V442H32ZM457 224Q457 303 427 349T350 395Q282 395 235 352L227 345V104L233 97Q274 45 337 45Q383 45 420 86T457 224"],113:[450,194,607,38,609,"38 220Q38 273 54 314T95 380T152 421T211 443T264 449Q368 449 429 386L438 377L484 450H540V-132H609V-194H600Q582 -191 475 -191Q360 -191 351 -194H342V-132H411V42Q409 41 399 34T383 25T367 16T347 7T324 1T296 -4T264 -6Q162 -6 100 56T38 220ZM287 46Q368 46 417 127V301L412 312Q398 347 369 371T302 395Q282 395 263 388T225 362T194 308T182 221Q182 126 214 86T287 46"],114:[450,0,474,29,442,"405 293T374 293T324 312T305 361Q305 378 312 394Q315 397 315 399Q305 399 294 394T266 375T238 329T222 249Q221 241 221 149V62H308V0H298Q280 3 161 3Q47 3 38 0H29V62H98V210V303Q98 353 96 363T83 376Q69 380 42 380H29V442H32L118 446Q204 450 205 450H210V414L211 378Q247 449 315 449H321Q384 449 413 422T442 360Q442 332 424 313"],115:[453,6,454,37,414,"38 315Q38 339 45 360T70 404T127 440T223 453Q273 453 320 436L338 445L357 453H366Q380 453 383 447T386 403V387V355Q386 331 383 326T365 321H355H349Q333 321 329 324T324 341Q317 406 224 406H216Q123 406 123 353Q123 334 143 321T188 304T244 294T285 286Q305 281 325 273T373 237T412 172Q414 162 414 142Q414 -6 230 -6Q154 -6 117 22L68 -6H58Q44 -6 41 0T38 42V73Q38 85 38 101T37 122Q37 144 42 148T68 153H75Q87 153 91 151T97 147T103 132Q131 46 220 46H230Q257 46 265 47Q330 58 330 108Q330 127 316 142Q300 156 284 162Q271 168 212 178T122 202Q38 243 38 315"],116:[635,5,447,21,382,"272 49Q320 49 320 136V145V177H382V143Q382 106 380 99Q374 62 349 36T285 -2L272 -5H247Q173 -5 134 27Q109 46 102 74T94 160Q94 171 94 199T95 245V382H21V433H25Q58 433 90 456Q121 479 140 523T162 621V635H224V444H363V382H224V239V207V149Q224 98 228 81T249 55Q261 49 272 49"],117:[450,6,639,37,623,"40 442L134 446Q228 450 229 450H235V273V165Q235 90 238 74T254 52Q268 46 304 46H319Q352 46 380 67T419 121L420 123Q424 135 425 199Q425 201 425 207Q425 233 425 249V316Q425 354 423 363T410 376Q396 380 369 380H356V442L554 450V267Q554 84 556 79Q561 62 610 62H623V31Q623 0 622 0Q603 0 527 -3T432 -6Q431 -6 431 25V56L420 45Q373 6 332 -1Q313 -6 281 -6Q208 -6 165 14T109 87L107 98L106 230Q106 358 104 366Q96 380 50 380H37V442H40"],118:[444,4,607,26,580,"401 444Q413 441 495 441Q568 441 574 444H580V382H510L409 156Q348 18 339 6Q331 -4 320 -4Q318 -4 313 -4T303 -3H288Q273 -3 264 12T221 102Q206 135 197 156L96 382H26V444H34Q49 441 145 441Q252 441 270 444H279V382H231L284 264Q335 149 338 149Q338 150 389 264T442 381Q442 382 418 382H394V444H401"],119:[444,4,831,25,805,"624 444Q636 441 722 441Q797 441 800 444H805V382H741L593 11Q592 10 590 8T586 4T584 2T581 0T579 -2T575 -3T571 -3T567 -4T561 -4T553 -4H542Q525 -4 518 6T490 70Q474 110 463 137L415 257L367 137Q357 111 341 72Q320 17 313 7T289 -4H277Q259 -4 253 -2T238 11L90 382H25V444H32Q47 441 140 441Q243 441 261 444H270V382H222L310 164L382 342L366 382H303V444H310Q322 441 407 441Q508 441 523 444H531V382H506Q481 382 481 380Q482 376 529 259T577 142L674 382H617V444H624"],120:[444,0,607,21,586,"227 0Q212 3 121 3Q40 3 28 0H21V62H117L245 213L109 382H26V444H34Q49 441 143 441Q247 441 265 444H274V382H246L281 339Q315 297 316 297Q320 297 354 341L389 382H352V444H360Q375 441 466 441Q547 441 559 444H566V382H471L355 246L504 63L545 62H586V0H578Q563 3 469 3Q365 3 347 0H338V62H366Q366 63 326 112T285 163L198 63L217 62H235V0H227"],121:[444,200,607,23,580,"84 -102Q84 -110 87 -119T102 -138T133 -149Q148 -148 162 -143T186 -131T206 -114T222 -95T234 -76T243 -59T249 -45T252 -37L269 0L96 382H26V444H34Q49 441 146 441Q252 441 270 444H279V382H255Q232 382 232 380L337 151L442 382H394V444H401Q413 441 495 441Q568 441 574 444H580V382H510L406 152Q298 -84 297 -87Q269 -139 225 -169T131 -200Q85 -200 54 -172T23 -100Q23 -64 44 -50T87 -35Q111 -35 130 -50T152 -92V-100H84V-102"],122:[445,0,511,32,462,"48 262Q48 264 54 349T60 436V444H252Q289 444 336 444T394 445Q441 445 450 441T459 418Q459 406 458 404Q456 399 327 229T194 55H237Q260 56 268 56T297 58T325 65T348 77T370 98T384 128T395 170Q400 197 400 216Q400 217 431 217H462V211Q461 208 453 108T444 6V0H245Q46 0 43 2Q32 7 32 28V33Q32 41 40 52T84 112Q129 170 164 217L298 393H256Q189 392 165 380Q124 360 115 303Q110 280 110 256Q110 254 79 254H48V262"],123:[750,250,575,69,505,"504 -207T504 -225T500 -246T476 -250H469Q257 -250 227 -145L225 -135L224 0Q224 15 224 30T224 59T224 84T224 106T223 122T223 133V137Q222 138 221 144T213 162T195 185Q171 206 141 215Q123 222 107 223T84 225T74 229T70 250T73 270T83 276T106 276T141 285Q171 294 195 315Q201 321 206 328T214 341T219 352T222 360L223 363V367Q223 371 223 378T223 394T224 415T224 441T224 470T224 501L225 636Q249 739 426 749Q428 749 443 749T466 750H473Q495 750 499 747T504 725T501 704T480 699Q381 693 357 645Q352 634 351 617T350 497V412Q350 350 338 329Q325 303 298 284T251 258T227 251Q226 251 226 250L227 249Q231 248 238 246T265 236T299 217T329 184T349 137Q350 131 350 3T352 -130Q358 -160 392 -178T480 -199Q497 -200 500 -203"],124:[750,249,319,129,190,"160 -249Q138 -249 129 -225V250Q129 725 131 729Q139 750 159 750T190 725V-225Q181 -249 160 -249"],125:[750,250,575,70,505,"70 726Q71 744 74 747T99 750H106Q323 750 349 636L350 501Q350 486 350 470T350 441T350 416T350 394T351 378T351 367V363Q352 362 353 356T361 338T379 315Q403 294 433 285Q451 278 467 277T490 275T500 271T504 250T501 230T491 224T468 224T433 215Q403 206 379 185Q373 179 368 172T360 159T355 148T352 140L351 137V133Q351 129 351 122T351 106T350 85T350 59T350 31T350 0L349 -135L347 -145Q317 -250 106 -250H99Q79 -250 75 -247T70 -226Q70 -208 73 -204T95 -199Q193 -193 217 -145Q222 -134 223 -117T224 3Q224 20 224 48T223 86Q223 145 237 175T301 232Q335 249 347 249Q348 249 348 250L347 251Q343 252 336 254T309 264T275 284T245 316T225 363Q224 369 224 497T222 631Q216 660 182 678T95 699Q77 700 74 704T70 726"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js deleted file mode 100644 index cca3d1f..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{8704:[694,16,639,0,640,"1 664Q-2 685 23 693H27Q46 693 54 680T102 578L148 475H492L533 570Q541 586 548 603T560 630T569 650T576 667T582 678T588 686T594 691T600 693T609 694Q622 694 631 684T639 662Q637 653 492 325T341 -8Q333 -16 320 -16Q306 -16 298 -8Q294 -4 147 326L1 656V664ZM464 414H319Q175 414 175 413L319 88L464 414"],8706:[710,17,628,60,657,"230 475Q202 475 189 492T175 526T186 570T221 631T288 687T389 710Q430 710 438 709Q495 701 537 679T601 629T637 568T653 509T657 459Q657 409 640 341Q617 248 581 180T507 75T424 16T348 -11T282 -17Q171 -17 113 37Q60 88 60 159Q60 192 71 231Q96 336 184 402Q264 462 366 462Q407 462 439 448T497 389L502 380Q503 381 508 403T519 463T525 531Q523 580 499 610T447 648T387 657Q324 657 283 616Q271 604 276 604Q279 604 286 600T302 583T311 555Q311 523 287 499T230 475ZM196 110Q196 41 287 41Q351 41 398 88Q422 111 437 151Q473 243 473 298Q473 386 409 409Q408 409 383 411Q316 411 278 373Q265 360 259 351T241 311T217 226Q196 143 196 110"],8707:[694,-1,639,64,574,"81 347Q81 359 84 363T104 378H513V633H300L87 634Q64 642 64 664Q64 685 84 692Q89 694 321 694H552Q571 681 574 669V25Q567 7 552 1H87Q64 12 64 30T87 61H513V317H308Q103 317 99 319Q81 328 81 347"],8709:[767,73,575,46,528,"285 711Q307 711 326 708T357 701T370 698Q371 698 375 710T383 735T389 750Q395 767 415 767Q431 767 438 757T446 738T436 701T426 670Q426 668 433 664Q468 633 489 588Q511 542 519 488T528 344Q528 286 524 243T508 150T466 63T394 6Q345 -17 287 -17Q265 -17 246 -14T216 -7T203 -4Q191 -47 183 -60T159 -73Q146 -73 137 -63T128 -44Q128 -38 138 -7L148 24L141 30Q134 35 120 49Q94 77 78 113T56 194T48 268T46 344Q46 388 47 416T56 494T78 577T122 644T194 694Q239 711 285 711ZM351 639Q350 639 346 642T337 648T325 654T306 658T283 660Q254 660 221 638T181 567Q171 513 171 375Q171 164 182 129L351 639ZM402 356Q402 516 395 555Q395 557 395 559T394 563T394 566L393 568L223 57Q252 34 286 34H288Q318 34 346 53T387 109Q402 152 402 329V356"],8710:[698,0,958,56,901,""],8711:[686,24,958,56,901,"56 673Q56 679 65 686H892Q901 679 901 673Q901 668 714 331T521 -15Q518 -18 506 -24H452Q440 -19 436 -15Q431 -8 337 162T150 501L57 669Q57 670 56 672V673ZM528 136L758 553H297Q298 551 414 341L528 136"],8712:[587,86,767,97,671,"97 251Q97 393 194 484T417 586Q418 586 436 586T482 586T538 587H648Q649 586 652 584T658 580T664 575T668 568T670 557Q670 536 648 527L534 526Q515 526 491 526T457 526T435 526T417 525T404 523T390 521T374 517Q298 498 243 447T167 324Q159 295 159 283Q159 281 403 281H648Q649 280 652 278T658 274T664 269T668 262T670 251Q670 230 648 221L403 220Q159 220 159 218Q159 206 166 182T190 122T247 50T341 -6Q380 -20 405 -22T534 -25H648Q649 -26 654 -29T661 -34T667 -43T670 -56Q670 -74 648 -85L541 -86Q419 -86 396 -82Q276 -65 187 24T97 251"],8713:[711,210,767,97,671,"126 -210Q116 -210 107 -203T97 -179Q97 -171 99 -166Q99 -165 111 -145T150 -80T203 8Q97 104 97 251Q97 393 194 484T417 586Q418 586 436 586T482 586T538 587H549Q565 614 582 643T608 685L616 698Q623 711 641 711Q651 711 660 704T670 681Q670 672 667 667Q666 666 661 657T644 627T620 587H648Q649 586 652 584T658 580T664 575T668 568T670 557Q670 536 648 527L584 526L437 281H648Q649 280 652 278T658 274T664 269T668 262T670 251Q670 230 648 221L403 220H401L283 23Q311 5 341 -6Q380 -20 405 -22T534 -25H648Q649 -26 654 -29T661 -34T667 -43T670 -56Q670 -74 648 -85L541 -86Q419 -86 396 -82Q320 -71 252 -29Q152 -197 148 -201Q139 -210 126 -210ZM235 62L330 220Q159 219 159 218Q159 196 176 150T235 62ZM366 281L513 526Q503 526 487 526T465 526T448 525T433 525T422 525T412 524T403 523T394 521T385 519T374 517Q298 498 243 447T167 324Q159 295 159 283Q159 281 366 281"],8715:[588,86,767,96,670,"96 251Q96 268 119 281H363Q607 281 607 283Q607 295 600 319T576 379T519 451T425 507Q386 521 361 523T233 526L119 527Q96 535 96 557Q96 578 116 585Q121 587 229 587Q238 587 257 587T288 588Q366 588 435 568T568 488Q670 388 670 251Q670 155 621 78T499 -39T345 -85Q336 -86 225 -86L119 -85Q96 -77 96 -55Q96 -38 119 -25H233Q356 -24 371 -21Q373 -21 393 -16Q468 3 523 55T599 177Q607 206 607 218Q607 220 363 220L119 221Q96 229 96 251"],8722:[281,-221,894,96,797,"119 221Q96 230 96 251T116 279Q121 281 448 281H775Q776 280 779 278T785 274T791 269T795 262T797 251Q797 230 775 221H119"],8723:[537,227,894,64,829,"64 155Q64 172 87 185H416V476H251L87 477Q64 485 64 507Q64 528 84 535Q89 537 448 537H807Q808 536 811 534T817 530T823 525T827 518T829 507Q829 486 807 477L642 476H477V185H807Q808 184 811 182T817 178T823 173T827 166T829 155Q829 134 807 125L642 124H477V-39Q477 -203 475 -208Q466 -227 446 -227Q427 -227 417 -205L416 -41V124H251L87 125Q64 133 64 155"],8725:[750,250,575,64,510,"451 730Q460 750 479 750Q492 750 501 740T510 718Q508 708 318 244L122 -232Q112 -250 95 -250Q82 -250 73 -241T64 -218Q66 -205 258 261T451 730"],8726:[750,250,575,63,511,"64 718Q63 731 72 740T94 750Q106 750 113 743Q118 741 122 732L318 256Q508 -208 510 -218Q511 -231 502 -240T480 -250Q460 -250 451 -230Q451 -229 259 238T64 718"],8727:[473,-28,575,72,502,"236 431Q237 447 251 459T287 472T323 459T338 431Q338 423 328 363L317 300Q318 300 340 317T392 356T435 387Q442 390 450 390Q470 390 485 374T501 335Q501 326 500 320T494 309T486 300T473 293T458 287T438 280T414 272L353 250L414 228Q422 225 436 221T457 214T472 208T485 201T493 192T499 181T501 166Q501 141 484 126T450 111Q447 111 445 111T441 111T437 112T433 114T428 117T422 121T414 127T404 135T391 145T374 158L317 200L328 137Q338 77 338 69Q336 52 321 40T287 28T253 40T236 69Q236 77 246 137L257 200Q256 200 234 183T182 144T139 113Q132 110 124 110Q104 110 89 126T73 165Q73 174 74 180T80 191T88 200T101 207T116 213T136 220T160 228L221 250L160 272Q152 275 138 279T117 286T102 292T89 299T81 308T75 319T73 334Q73 359 90 374T124 389Q127 389 129 389T133 389T137 388T141 386T146 383T152 379T160 373T170 365T183 355T200 342L257 300L246 363Q236 423 236 431"],8728:[475,-27,575,64,510,"64 251Q64 303 80 344T121 409T175 448T230 469T275 474Q277 474 283 474T292 473Q385 473 447 415T510 251Q510 149 449 89T287 28T126 88T64 251ZM448 251Q448 325 405 369T286 413Q215 413 171 371T126 251Q126 177 168 133T287 89Q361 89 404 132T448 251"],8729:[475,-27,575,64,510,"64 251Q64 303 80 344T121 409T175 448T230 469T275 474Q277 474 283 474T292 473Q385 473 447 415T510 251Q510 149 449 89T287 28T126 88T64 251"],8730:[820,180,958,78,988,"107 178Q100 178 89 188T78 207Q78 216 84 220Q85 221 124 248T207 304T260 338Q269 340 275 335Q276 334 370 156L463 -20L698 393Q928 800 935 811Q944 820 954 820Q972 820 980 811T988 789Q988 781 858 553Q776 409 718 306Q452 -166 447 -171Q439 -179 422 -180Q405 -180 400 -175Q399 -174 346 -73T241 128T187 229L151 205Q111 178 107 178"],8733:[451,8,894,65,830,"65 222Q65 282 88 329T144 401T208 438T261 451H273Q312 451 320 450Q456 431 526 330L537 316Q638 451 778 451Q813 451 830 445V388Q821 391 799 391Q758 391 721 377T660 342T618 301T592 266L584 251Q648 152 697 114Q748 74 804 74H806Q823 74 829 77Q830 77 830 38V-1L820 -3Q801 -7 786 -7H771Q699 -7 632 25T527 114L516 128Q414 -8 276 -8Q192 -8 129 56T65 222ZM256 53Q296 53 332 67T392 102T434 143T461 178L469 193Q405 292 356 330Q308 369 251 369H243Q196 369 156 328T116 221Q116 191 124 161T158 99T225 55Q234 53 256 53"],8734:[452,8,1150,65,1084,"65 219Q65 318 132 385T302 452Q473 452 573 331L589 312L596 320Q710 452 857 452Q948 452 1016 386T1084 225Q1084 125 1017 59T848 -8Q679 -8 576 113L560 132L553 124Q439 -8 292 -8Q200 -8 133 58T65 219ZM1033 224Q1033 291 987 340T875 389Q748 389 648 261Q641 253 642 251Q717 163 748 137Q813 81 880 81Q941 81 987 120T1033 224ZM275 56Q315 56 353 70T418 104T466 144T497 178L507 192Q507 193 474 230T441 269Q355 362 267 362Q210 362 163 324T116 221Q116 150 162 103T275 56"],8736:[714,0,722,55,676,"71 0L68 2Q65 3 63 5T58 11T55 20Q55 21 56 23V25Q55 27 55 30Q55 31 56 33V35Q55 37 55 40Q55 42 57 48Q67 63 346 381Q421 467 518 578Q607 680 623 697T647 714Q656 714 661 708T666 694V692Q676 687 676 674Q676 668 673 663Q672 662 637 622T534 503T400 350L147 61L386 60H653Q666 50 666 40V38Q676 31 676 20Q676 8 661 0H71"],8739:[750,249,319,129,190,"160 -249Q138 -249 129 -225V250Q129 725 131 729Q139 750 159 750T190 725V-225Q181 -249 160 -249"],8741:[751,248,575,145,430,"205 -225Q201 -234 199 -237T191 -244T175 -248T161 -246Q151 -240 146 -229Q145 -224 145 251Q145 725 146 730Q156 750 176 750Q193 748 205 727V-225ZM369 727L372 732Q375 737 377 740T385 747T398 750Q406 750 413 747Q423 740 428 730Q430 720 430 251Q430 -219 428 -229Q423 -240 413 -246Q408 -248 400 -248Q393 -248 388 -247T379 -242T375 -236T371 -230L369 -225V727"],8743:[604,17,767,64,702,"95 -16Q78 -16 71 -6T64 14Q64 20 65 22L212 308Q359 593 361 595Q370 604 385 604Q398 602 405 595Q407 593 554 308L701 22Q702 20 702 15Q702 1 693 -8T671 -17Q661 -17 651 -9Q647 -5 515 251L383 506L251 251Q119 -5 116 -8Q108 -16 95 -16"],8744:[605,16,767,64,702,"64 572Q64 585 72 594T94 604T116 595Q119 592 251 336L383 81L515 336Q647 592 651 596Q661 604 671 604Q684 604 693 595T702 572Q702 567 701 565L554 279Q407 -6 405 -8Q404 -9 401 -11T397 -14Q392 -16 383 -16H380Q369 -16 361 -8Q359 -6 212 279L65 565Q65 566 65 568T64 572"],8745:[603,16,767,64,702,"94 -16Q73 -16 64 8V209Q64 239 64 287Q65 418 69 432Q70 434 70 435Q84 487 125 523T216 575T299 597T354 603H372Q444 603 501 590T591 558T648 515T681 471T696 435Q696 434 697 432Q701 417 702 309Q702 303 702 287Q702 239 702 209V8Q693 -16 672 -16Q650 -16 643 3Q641 8 641 201Q641 397 640 403Q631 472 558 507T383 542Q339 542 298 535T219 511T156 468T126 403Q125 397 125 201Q125 8 123 3Q116 -16 94 -16"],8746:[604,16,767,64,702,"672 603Q693 603 702 579V378Q702 348 702 300Q701 169 697 155Q696 153 696 152Q676 78 593 31T383 -16Q265 -16 179 28T70 152Q70 153 69 155Q65 170 64 278Q64 285 64 300Q64 348 64 378Q64 579 65 583Q74 604 94 604T123 584Q125 579 125 386Q125 190 126 184Q135 115 210 80T383 44Q426 44 467 51T546 75T609 119T640 184Q641 190 641 386Q641 579 643 584Q650 603 672 603"],8747:[711,211,569,64,632,"204 -71Q204 -108 181 -124T137 -141Q132 -141 132 -142Q142 -161 154 -161Q164 -161 186 -152Q200 -145 210 -135T228 -107T241 -77T249 -38T254 -2T258 38T262 74Q282 265 334 489Q334 490 337 503T341 523T347 544T355 569T365 594T379 620T397 643T420 666T447 685T481 700Q511 711 539 711T587 696T616 656T628 612T632 573Q632 536 610 519T562 501Q534 501 513 519T492 571Q492 608 515 624T559 641Q564 641 564 642Q554 661 542 661Q532 661 510 652Q496 645 486 635T468 607T455 577T447 538T442 502T438 462T434 426Q414 235 362 11Q352 -35 347 -54T328 -101T291 -152Q235 -208 162 -211Q147 -211 136 -208T109 -196T83 -165T67 -108Q64 -94 64 -73Q64 -37 86 -19T134 -1Q162 -1 183 -19T204 -71"],8764:[392,-109,894,64,828,"64 155Q64 210 84 262T150 353T257 391Q300 391 341 371T417 321T484 264T557 215T637 194Q702 194 745 244T788 367Q796 391 808 391Q815 391 821 381T828 353V342Q828 252 776 181T637 109Q594 109 552 129T476 179T409 236T336 285T256 306Q193 306 149 258T105 132Q98 109 86 109Q76 109 70 122T64 155"],8768:[583,82,319,64,254,"64 561Q64 570 76 576T108 583Q174 583 214 535T254 407Q254 368 238 324T202 248T166 173T149 92Q149 43 169 2T217 -39Q231 -40 242 -46T254 -60Q254 -69 241 -75T210 -82Q145 -82 105 -34T64 93Q64 133 80 177T116 253T152 328T169 408Q169 461 148 500T105 540Q92 540 78 545T64 561"],8771:[502,3,894,64,829,"64 295Q64 378 117 440T257 502Q298 502 339 485T416 443T486 394T560 352T637 335Q693 335 740 373T788 478Q796 502 808 502Q815 502 821 492T828 465V455Q828 365 771 308T640 250Q603 250 562 265T501 294T439 336L370 382Q308 417 256 417Q205 417 164 388T110 317Q110 316 109 304T107 286T103 270T97 255T86 250Q76 250 70 263T64 295ZM64 6T64 27T87 56H93Q99 56 110 56T137 56T173 56T217 56T267 57T323 57T383 57T448 57H807Q808 56 811 54T815 52T819 49T823 45T826 40T828 34T829 27Q829 7 807 -3H87Q64 6 64 27"],8773:[639,27,1000,64,829,"64 402Q64 457 84 509T150 600T257 638Q300 638 341 618T417 569T484 511T557 462T637 441Q702 441 745 491T788 614Q796 638 808 638Q815 638 821 628T828 600V589Q828 499 776 428T637 356Q594 356 552 376T476 425T409 483T336 532T256 553Q193 553 149 505T105 379Q98 356 86 356Q76 356 70 369T64 402ZM87 197Q64 207 64 226Q64 247 84 255Q89 257 448 257H807Q808 256 811 254T817 250T823 245T827 238T829 227Q829 209 807 197H87ZM87 -27Q64 -18 64 3Q64 23 86 32Q89 33 448 33H807L812 30Q816 27 818 26T823 21T827 13T829 3Q829 -18 807 -27H87"],8776:[524,-31,894,64,829,"64 345Q64 423 119 473T250 524Q301 524 356 503T451 455T542 407T636 385Q700 385 743 417T786 481Q786 493 791 508T807 524Q817 524 823 512T829 479Q829 404 776 352T638 300Q590 300 537 321T443 369T352 417T256 439Q207 439 166 417T110 359Q109 357 107 341T100 312T85 300Q77 300 71 313T64 345ZM64 77Q64 155 119 205T250 256Q302 256 357 235T451 187T541 139T636 117Q699 117 742 148T786 213Q786 231 792 243T808 256T823 242T829 208Q829 134 776 83T640 32Q591 32 537 53T443 101T352 149T256 171Q206 171 165 148T110 91Q109 89 107 73T100 44T85 32Q77 32 71 45T64 77"],8781:[533,32,894,64,830,"798 533Q812 533 820 524T829 502T819 480T769 440Q655 355 537 330Q492 322 447 322Q401 322 356 330Q289 344 219 381T118 443T73 481Q64 490 64 503Q64 517 72 525T94 533Q99 533 102 532Q107 531 138 507T209 456T314 405T446 382Q604 382 765 515Q788 533 798 533ZM95 -32Q81 -32 73 -23T64 -1Q64 10 74 21T124 61Q213 127 293 153T421 179L422 180Q424 180 426 180T432 180T441 180T452 179Q612 179 769 61Q811 29 820 19T829 -1Q829 -14 821 -23T798 -32Q788 -32 765 -14Q608 118 446 118Q287 118 128 -14Q105 -32 95 -32"],8784:[721,-109,894,64,829,"87 333Q64 343 64 362Q64 383 84 391Q89 393 448 393H807Q808 392 811 390T817 386T823 381T827 374T829 363Q829 345 807 333H87ZM87 109Q64 118 64 139Q64 159 86 168Q89 169 448 169H807L812 166Q816 163 818 162T823 157T827 149T829 139Q829 118 807 109H87ZM362 635Q362 671 387 696T444 721Q488 721 510 693T533 635Q533 606 512 579T448 551Q406 551 384 577T362 635"],8800:[711,210,894,64,829,"189 -210Q179 -210 170 -203T160 -179Q160 -171 162 -166Q165 -163 327 109H87Q64 118 64 139Q64 159 86 168Q89 169 363 169L461 333H87Q64 343 64 362Q64 383 84 391Q89 393 448 393H496Q533 455 583 539T656 660T679 698Q686 711 704 711Q714 711 723 704T733 681Q733 672 730 667Q729 664 709 631T645 523T567 393H807Q808 392 811 390T817 386T823 381T827 374T829 363Q829 345 807 333H532L433 169H807L812 166Q816 163 818 162T823 157T827 149T829 139Q829 118 807 109H398Q217 -195 211 -201Q202 -210 189 -210"],8801:[505,3,894,64,829,"87 445Q64 454 64 475Q64 497 84 503Q89 505 448 505H807Q808 504 812 502T818 497T823 492T827 484T829 474Q829 456 807 445H87ZM87 221Q64 230 64 251T84 279Q89 281 448 281H807Q808 280 811 278T817 274T823 269T827 262T829 251Q829 230 807 221H87ZM64 6T64 27T87 56H93Q99 56 110 56T137 56T173 56T217 56T267 57T323 57T383 57T448 57H807Q808 56 811 54T815 52T819 49T823 45T826 40T828 34T829 27Q829 7 807 -3H87Q64 6 64 27"],8804:[697,199,894,96,797,"797 55Q797 45 790 35T767 25H759L434 180Q108 336 105 339Q96 348 96 360Q96 378 114 388Q126 394 439 544T757 695Q763 697 766 697Q780 697 788 688T797 666Q797 654 788 645Q784 641 507 509T197 361L466 232Q785 80 790 74Q797 66 797 55ZM119 -199Q96 -191 96 -169Q96 -160 102 -152T119 -140H124Q130 -140 140 -140T164 -140T197 -140T237 -140T283 -139T334 -139T389 -139T448 -139H775Q797 -153 797 -169Q797 -187 775 -199H119"],8805:[697,199,894,96,797,"127 25Q110 25 103 34T96 54Q96 66 105 75Q109 80 439 238L696 361Q113 637 105 645Q96 654 96 667Q96 679 104 688T128 697Q137 696 460 541T788 382Q797 373 797 360Q797 348 788 339Q785 336 459 180L135 25H127ZM119 -199Q96 -191 96 -169Q96 -160 102 -152T119 -140H124Q130 -140 140 -140T164 -140T197 -140T237 -140T283 -139T334 -139T389 -139T448 -139H775Q797 -153 797 -169Q797 -187 775 -199H119"],8810:[617,116,1150,64,1085,"734 -74T734 -86T727 -107T704 -116H702Q694 -116 584 -55Q473 7 380 58Q87 219 73 229Q64 238 64 250Q64 263 73 272Q87 282 380 443Q695 616 699 617H700Q718 617 726 607T734 588Q734 568 717 560Q705 554 435 404L157 250L439 94Q721 -61 726 -66Q734 -74 734 -86ZM1085 -74T1085 -86T1078 -107T1055 -116H1053Q1045 -116 935 -55Q824 7 731 58Q438 219 424 229Q415 238 415 250Q415 263 424 272Q438 282 731 443Q1046 616 1050 617H1051Q1069 617 1077 607T1085 588Q1085 568 1068 560Q1056 554 786 404L508 250L790 94Q1072 -61 1077 -66Q1085 -74 1085 -86"],8811:[618,116,1150,64,1085,"64 588Q64 600 72 609T94 618H95Q103 618 209 559Q322 496 419 443Q712 282 725 272Q734 263 734 250Q734 238 725 229Q714 220 415 55T110 -113Q103 -116 95 -116Q78 -116 71 -106T64 -86Q64 -74 72 -66Q77 -61 359 94L641 250L363 404Q277 452 173 509Q95 552 82 560T66 576V577Q64 585 64 588ZM415 588Q415 600 423 609T445 618H446Q454 618 560 559Q673 496 770 443Q1063 282 1076 272Q1085 263 1085 250Q1085 238 1076 229Q1065 220 766 55T461 -113Q454 -116 446 -116Q429 -116 422 -106T415 -86Q415 -74 423 -66Q428 -61 710 94L992 250L714 404Q628 452 524 509Q446 552 433 560T417 576V577Q415 585 415 588"],8826:[585,86,894,96,797,"797 -57Q797 -65 790 -75T766 -86Q748 -86 741 -74T733 -43T719 8T681 72Q647 112 588 141T475 185T343 207T230 216T136 219Q96 219 96 250Q96 280 132 280H136Q193 281 239 283T347 292T457 310T556 342T643 391T703 460T735 553Q741 585 763 585Q781 585 789 575T797 556Q797 540 792 513T758 434T682 345Q605 285 481 254L462 249Q483 246 526 233T633 185T733 104Q767 63 782 15T797 -57"],8827:[586,86,894,96,797,"96 556Q96 568 104 577T126 586Q152 586 158 553Q164 503 188 462T247 394T331 345T429 313T539 294T649 284T758 280H760Q797 280 797 250Q797 219 760 219H758Q627 217 529 204T347 160T216 77T158 -54Q152 -86 126 -86Q110 -86 103 -76T96 -57Q96 -41 101 -14T135 65T211 154Q288 214 412 245L431 250Q410 252 367 265T259 314T160 395Q127 435 112 483T96 556"],8834:[588,85,894,96,798,"96 251Q96 389 191 482T417 586Q418 586 428 586T456 586T496 586T546 587T601 587H775Q776 586 779 584T785 580T791 575T795 568T797 557Q797 536 775 527L597 526Q411 525 395 522Q390 521 370 516Q285 494 222 424T158 251Q158 131 246 53Q313 -9 408 -23Q417 -24 597 -25H775Q776 -26 781 -29T788 -34T794 -43T797 -56Q797 -74 775 -85H493Q407 -85 376 -79Q257 -55 177 35T96 251"],8835:[587,86,894,96,796,"96 -55Q96 -38 119 -25H296Q482 -24 498 -21Q503 -20 523 -15Q609 7 672 77T735 251T665 431T485 524Q476 525 296 526L119 527Q96 535 96 557Q96 578 116 585Q121 587 300 587Q451 586 476 585T522 579Q632 556 714 468T796 251Q796 112 695 13Q612 -65 497 -82Q473 -86 289 -86L119 -85Q96 -77 96 -55"],8838:[698,199,894,96,798,"96 361Q96 499 191 592T417 696Q418 696 428 696T456 696T496 696T546 697T601 697H775Q776 696 779 694T785 690T791 685T795 678T797 667Q797 646 775 637L597 636Q411 635 395 632Q390 631 370 626Q285 604 222 534T158 361Q158 241 246 163Q313 101 408 87Q417 86 597 85H775Q776 84 781 81T788 76T794 67T797 54Q797 36 775 25H493Q407 25 376 31Q257 55 177 145T96 361ZM149 -199Q127 -191 127 -169T149 -140H154Q160 -140 169 -140T192 -140T224 -140T262 -140T306 -139T354 -139T407 -139T463 -139H775Q776 -140 779 -142T785 -146T791 -151T795 -158T797 -169Q797 -190 775 -199H149"],8839:[697,199,894,96,796,"96 55Q96 72 119 85H296Q482 86 498 89Q503 90 523 95Q609 117 672 187T735 361T665 541T485 634Q476 635 296 636L119 637Q96 645 96 667Q96 688 116 695Q121 697 300 697Q451 696 476 695T522 689Q632 666 714 578T796 361Q796 222 695 123Q612 45 497 28Q473 24 289 24L119 25Q96 33 96 55ZM119 -199Q96 -190 96 -169T116 -141Q121 -139 433 -139H745Q766 -152 766 -170Q766 -190 745 -199H119"],8846:[604,16,767,64,702,"672 603Q693 603 702 579V378Q702 348 702 300Q701 169 697 155Q696 153 696 152Q676 78 593 31T383 -16Q265 -16 179 28T70 152Q70 153 69 155Q65 170 64 278Q64 285 64 300Q64 348 64 378Q64 579 65 583Q74 604 94 604T123 584Q125 579 125 386Q125 190 126 184Q135 115 210 80T383 44Q426 44 467 51T546 75T609 119T640 184Q641 190 641 386Q641 579 643 584Q650 603 672 603ZM353 412Q353 420 353 435T352 456Q352 483 358 495T385 507Q403 506 409 494T415 457Q415 451 415 436T414 411V341H558Q579 329 579 311Q579 289 558 281L486 280H414V136Q400 114 384 114Q363 114 354 136L353 208V280H281L209 281Q187 289 187 310Q187 328 209 341H353V412"],8849:[698,199,894,96,828,"127 25Q111 29 104 49V362L105 675Q114 693 127 696H132Q138 696 149 696T174 696T208 696T249 696T297 697T350 697T407 697T468 697H806Q828 683 828 666Q828 646 806 637L485 636H165V85H805Q806 84 809 82T813 80T817 77T821 73T824 68T826 62T827 55Q827 34 806 25H127ZM96 -190T96 -169T119 -140H125Q131 -140 141 -140T167 -140T201 -140T242 -140T290 -139T344 -139T402 -139T463 -139H805Q806 -140 809 -142T813 -144T817 -147T821 -151T824 -156T826 -162T827 -169Q827 -190 806 -199H119Q96 -190 96 -169"],8850:[698,199,894,66,797,"66 55Q66 74 89 85H728V636H408L88 637Q66 645 66 667T88 696H94Q99 696 110 696T135 696T169 696T210 696T258 697T311 697T368 697T429 697H767Q786 684 789 672V49Q782 31 767 25H88Q66 32 66 55ZM88 -199Q66 -191 66 -169Q66 -148 87 -140Q91 -139 433 -139H775Q776 -140 779 -142T783 -144T787 -147T791 -151T794 -156T796 -162T797 -169Q797 -189 775 -199H88"],8851:[604,-1,767,70,696,"131 25Q121 1 100 1Q81 1 71 23L70 301Q70 579 72 583Q77 598 90 602Q95 604 385 604H674Q693 591 696 579V25Q686 1 665 1Q646 1 636 23L635 283V543H131V25"],8852:[604,-1,767,70,696,"696 25Q689 7 674 1H93Q77 7 71 23L70 301Q70 579 72 583Q80 604 100 604T131 579V61H635V579Q644 603 666 603Q687 603 696 579V25"],8853:[632,132,894,64,828,"64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM416 282V570H414Q341 564 285 535T202 475T156 397T134 332T128 287Q127 283 127 282H416ZM765 288Q760 344 743 389T700 462T647 512T589 543T538 560T499 568L483 570H478V282H766L765 288ZM416 -69V220H127Q130 195 131 189T138 155T150 115T168 76T196 35T234 0T286 -35Q337 -61 410 -69H416ZM483 -69Q554 -60 607 -33T687 21T733 93T756 156T764 209Q766 217 766 220H478V-69H483"],8854:[632,132,894,64,828,"64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM765 288Q753 424 666 497T446 571T227 498T128 288L127 282H766L765 288ZM446 -70Q578 -70 666 4T765 213L766 220H127Q130 195 131 189T138 155T150 115T168 76T196 35T234 0T286 -35Q353 -70 446 -70"],8855:[632,132,894,64,828,"64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM647 512Q567 571 447 571Q340 571 262 523Q237 507 237 505L342 399L447 295L657 505L647 512ZM298 356L192 461Q180 445 161 411Q126 341 126 251Q126 128 192 40L403 250L298 356ZM701 41Q704 41 719 63T750 138T767 250Q767 310 750 362T719 437T701 460L491 250L701 41ZM238 -5Q238 -8 261 -22T336 -53T447 -70Q567 -70 647 -11L657 -4L447 206L342 101Q238 -1 238 -5"],8856:[632,132,894,64,828,"64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM657 505Q656 506 650 510T638 518T623 527T604 537T581 547T553 556T522 563T486 569T446 571Q305 571 216 487T126 251Q126 128 192 40L657 505ZM447 -70Q591 -70 679 16T767 250Q767 308 751 360T719 436T701 460L469 228Q238 -1 238 -5Q238 -8 261 -22T336 -53T447 -70"],8857:[632,132,894,64,828,"64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM767 252Q767 395 681 483T446 571Q303 571 215 486T126 249Q126 107 212 19T446 -70Q596 -70 681 18T767 252ZM335 251Q335 297 368 329T441 361Q498 361 527 327T557 250Q557 202 525 171T446 140Q397 140 366 173T335 251"],8866:[693,-1,703,65,637,"65 672Q76 693 91 693Q115 693 123 674Q125 669 125 523V378H615Q618 376 622 373T628 369T632 366T635 362T636 356T637 347Q637 328 619 319Q615 317 370 317H125V171Q125 25 123 20Q114 1 94 1Q73 1 65 23V672"],8867:[693,-1,703,64,638,"64 327T64 347T89 378H577V525L578 672Q592 693 604 693Q629 693 638 669V25Q628 1 607 1Q588 1 578 23L577 170V317H88Q64 327 64 347"],8868:[695,-1,894,64,829,"64 664Q64 675 71 683T87 693H93Q99 693 110 693T137 693T173 693T217 694T267 694T323 694T383 694T448 694H807Q808 693 811 691T817 687T823 682T827 675T829 664Q829 643 807 634L642 633H477V25Q467 1 446 1Q427 1 417 23L416 328V633H251L87 634Q64 643 64 664"],8869:[693,-1,894,65,829,"65 31Q65 38 66 41T71 50T87 61H416V366L417 672Q431 693 443 693Q468 693 477 669V61H807Q808 60 811 58T817 54T823 49T827 42T829 31Q829 10 807 1H87Q65 10 65 31"],8872:[750,249,974,129,918,"160 -249Q138 -249 129 -225V250Q129 725 131 729Q139 750 159 750T190 725V392Q219 393 537 393H896Q897 392 900 390T906 386T912 381T916 374T918 363Q918 345 896 333H190V169H896L900 166Q905 163 907 162T912 157T916 149T918 139Q918 118 896 109H190V-225Q181 -249 160 -249"],8900:[523,21,575,15,560,"280 522Q281 523 285 523H289Q301 523 366 457Q404 420 431 393Q533 291 546 277T560 250Q560 239 548 226T431 108Q313 -10 304 -16Q297 -21 287 -21Q278 -21 275 -19Q270 -17 146 107T18 238Q15 242 15 251Q15 258 18 263Q20 268 145 392T274 519L280 522ZM388 350L288 449L188 350L89 250L288 52L487 250L388 350"],8901:[336,-165,319,74,245,"74 251Q74 286 99 311T156 336Q200 336 222 308T245 250Q245 221 224 194T160 166T96 193T74 251"],8902:[502,0,575,24,550,"270 491Q274 502 287 502Q298 502 304 491Q304 486 323 396T342 303L438 314Q520 324 534 324Q540 324 545 320T550 307Q550 298 539 290T456 243Q377 198 377 197L416 111Q456 26 456 22Q457 21 457 18Q457 11 451 6T438 0H437Q432 0 415 16Q387 42 358 68L287 133L216 68Q193 47 167 23Q142 0 136 0Q129 0 123 5T117 18Q117 21 118 22Q118 26 158 111L197 197Q197 198 156 221T72 269T26 298Q24 304 24 307Q24 315 29 319T40 324Q53 324 136 314L232 303Q232 306 251 396T270 491"],8904:[540,39,1000,33,967,"906 251Q906 456 905 456Q550 252 549 251Q549 250 726 148T905 45T906 251ZM967 -14Q958 -38 939 -38H937Q928 -38 923 -35Q919 -34 748 64T500 209L71 -38Q69 -39 63 -39Q42 -39 33 -16V518Q45 540 63 540H65Q72 540 174 481Q247 439 302 407L500 292Q578 339 750 438T929 539H933Q958 539 967 515V-14ZM449 251L94 456Q93 456 93 251Q93 45 94 45L106 52Q119 59 139 71T186 98T242 131T301 165T357 197T404 225T437 244L449 251"],8942:[951,29,319,74,245,"74 55Q74 91 99 116T156 141Q200 141 222 113T245 55Q245 26 224 -1T160 -29Q118 -29 96 -3T74 55ZM74 465Q74 501 99 526T156 551Q200 551 222 523T245 465Q245 436 224 409T160 381Q118 381 96 407T74 465ZM74 865Q74 901 99 926T156 951Q200 951 222 923T245 865Q245 836 224 809T160 781Q118 781 96 807T74 865"],8943:[336,-165,1295,74,1221,"74 251Q74 286 99 311T156 336Q200 336 222 308T245 250Q245 221 224 194T160 166T96 193T74 251ZM562 251Q562 286 587 311T644 336Q688 336 710 308T733 250Q733 221 712 194T648 166T584 193T562 251ZM1050 251Q1050 286 1075 311T1132 336Q1176 336 1198 308T1221 250Q1221 221 1200 194T1136 166T1072 193T1050 251"],8945:[871,-101,1323,129,1194,"129 785Q129 821 154 846T211 871Q255 871 277 843T300 785Q300 756 279 729T215 701Q173 701 151 727T129 785ZM576 485Q576 521 601 546T658 571Q702 571 724 543T747 485Q747 456 726 429T662 401Q620 401 598 427T576 485ZM1023 185Q1023 221 1048 246T1105 271Q1149 271 1171 243T1194 185Q1194 156 1173 129T1109 101Q1067 101 1045 127T1023 185"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/MathOperators.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js deleted file mode 100644 index 1e2b120..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{10216:[750,249,447,127,382,"127 243V259L223 491Q251 557 286 642Q318 719 324 732T340 748H341Q347 750 351 750Q365 750 373 740T382 723Q382 713 286 482L190 251Q190 249 286 20T382 -219Q382 -232 373 -240T352 -249Q332 -249 323 -229Q320 -220 223 10L127 243"],10217:[750,249,447,64,319,"64 720Q64 732 72 741T94 750Q106 750 113 743Q118 741 122 732L319 259V243L122 -231Q112 -249 95 -249Q83 -249 74 -240T64 -218Q64 -210 160 20L256 251L160 482Q64 715 64 720"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/MiscMathSymbolsA.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js deleted file mode 100644 index 58bce90..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{9824:[719,130,894,64,829,"675 -18Q536 -18 527 62V70H477V55Q479 14 487 -21T502 -75T509 -101Q509 -120 491 -127Q487 -129 447 -129Q446 -129 439 -129T427 -130Q384 -130 384 -101Q384 -95 391 -76T406 -21T416 55V70H366Q364 52 360 40T342 14T300 -8T230 -17H218Q110 -17 75 117Q64 163 64 209Q64 290 116 357T261 495Q363 574 414 690Q425 719 445 719Q467 719 478 693Q507 627 547 578T623 503T702 438T777 357Q829 285 829 202V197Q826 128 808 81T762 15T714 -11T675 -18"],9825:[711,24,894,65,828,"65 491Q65 602 121 656T246 710Q375 710 440 624L447 615Q519 711 638 711Q723 711 775 652T828 491Q828 390 770 313T581 129Q539 95 514 63T483 14T469 -13T446 -24Q434 -24 427 -17T416 0T400 32T371 74Q352 97 310 131T229 199T151 276T89 374T65 491ZM249 649Q188 649 157 603T125 489Q125 409 181 338T352 176Q408 131 437 87L446 73L456 87Q479 121 507 147T579 207T659 278Q768 387 768 489Q768 506 766 524T756 566T731 611T687 642Q668 649 638 649Q609 649 593 644Q547 633 516 604T478 534Q473 505 447 505H445Q420 505 416 534Q407 577 372 608T285 648Q277 649 249 649"],9826:[719,154,894,64,828,"409 686Q410 688 412 691T415 696T418 701T421 706T424 709T427 713T431 715T435 717T440 718T446 719Q455 719 460 717T472 704T488 679T516 633T563 567Q624 485 687 422T787 330T826 296T828 282Q828 270 825 265T801 245Q696 161 612 59T477 -133Q465 -154 447 -154Q439 -154 434 -152T425 -146T414 -130T399 -104T372 -62T330 -3Q270 78 207 142T107 234T70 265Q64 274 64 282Q64 296 90 317Q284 472 409 686ZM749 282Q745 286 721 307T681 343T635 388T581 446T525 516T465 601Q462 606 457 613T450 624L447 627V628Q446 628 436 611T402 561T348 489T266 396T155 292L145 282Q147 280 185 245T257 177T343 79T442 -57Q446 -64 447 -64V-63Q450 -59 475 -22T530 56T619 160T749 282"],9827:[719,130,894,32,861,"240 527Q240 611 301 665T446 719T590 665T652 527Q652 431 571 373Q578 363 584 352T593 335T597 329L604 335Q611 341 617 345T637 356T667 366Q672 366 680 367T694 368Q767 368 814 310T861 177Q861 109 819 57T713 -12Q690 -17 656 -17Q535 -13 527 62V70H477V55Q479 14 487 -21T502 -75T509 -101Q509 -120 491 -127Q487 -129 447 -129Q446 -129 439 -129T427 -130Q384 -130 384 -101Q384 -95 391 -76T406 -21T416 55V70H366V62Q356 -12 237 -17Q130 -17 71 60Q32 111 32 178Q32 251 78 309T198 368Q217 368 233 364T260 354T279 343T291 333T296 329L300 336Q304 343 310 354T322 373Q240 432 240 527"],9837:[750,17,447,64,381,"230 480Q293 480 337 440T381 330V322Q381 240 323 161Q258 71 123 -11L114 -16L97 -17Q70 -17 66 -7Q64 -3 64 366V641Q64 717 65 731T75 748Q78 750 95 750Q117 750 122 742T127 694Q127 685 127 653T126 595V454Q183 480 230 480ZM242 333Q242 405 212 405H207Q147 405 130 370L127 364L126 219Q126 77 128 77Q133 82 140 90T167 127T202 183T229 253T242 333"],9838:[741,223,447,57,389,"345 -223Q333 -223 330 -214T327 -178V-116Q327 -23 326 -23L203 -82Q90 -134 77 -140Q65 -142 59 -130Q57 -126 57 295V595Q57 643 57 667T58 704T60 719T63 724Q93 741 101 741Q113 741 116 732T119 680V597Q119 467 120 467Q121 468 180 495T301 552T369 584Q381 586 387 574Q389 570 389 187V-88Q389 -132 389 -154T388 -188T386 -202T383 -206Q353 -223 345 -223ZM327 271Q327 421 326 421L120 323L119 173V23Q120 23 223 72L327 121V271"],9839:[724,224,447,64,382,"140 628Q151 628 154 620T158 591V549V484L166 488Q175 492 192 500T223 516L288 548V622V674Q288 681 288 685T289 693T289 699T291 703T295 707T298 709T304 712T311 716Q326 724 332 724Q343 724 346 715T350 685V644V579Q358 583 364 583Q376 583 380 574Q382 570 382 514V481Q382 459 380 454T363 441L350 435V135Q358 139 364 139Q376 139 380 130Q382 126 382 70V37Q382 15 380 10T363 -3L350 -9V-76Q350 -102 348 -106T328 -119Q312 -128 306 -128Q288 -128 288 -99V-77V-40L280 -44Q271 -48 254 -56T223 -72L158 -104V-150V-180Q158 -198 155 -202T135 -216Q119 -224 114 -224Q96 -224 96 -192V-172V-135Q86 -140 81 -140Q70 -140 66 -129Q64 -126 64 -70V-54Q64 -18 66 -12T83 3L96 9V309Q86 304 81 304Q70 304 66 315Q64 318 64 374V407Q64 429 66 434T83 447L96 453V602Q99 609 100 610T118 619Q134 628 140 628ZM288 254Q288 404 287 404L158 340V40L166 44Q175 48 192 56T223 72L288 104V254"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/MiscSymbols.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js deleted file mode 100644 index 34f613a..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{8968:[751,248,511,194,494,"194 728Q199 743 216 749H220Q223 749 229 749T245 749T265 750T289 750T316 750T345 750H471Q472 749 477 746T484 741T490 732T493 719Q493 701 471 690L362 689H254V-224Q244 -248 223 -248T194 -226V728"],8969:[750,248,511,17,317,"317 -224Q307 -248 286 -248Q267 -248 257 -226L256 231V689H148L40 690Q17 698 17 720Q17 741 37 748Q42 750 169 750H295Q314 737 317 725V-224"],8970:[749,248,511,194,494,"194 728Q204 749 220 749Q245 749 254 725V-188H471Q472 -189 477 -192T484 -197T490 -206T493 -219Q493 -237 471 -248H216Q200 -242 194 -226V728"],8971:[749,248,511,17,317,"17 -219Q17 -201 40 -188H256V270L257 728Q271 749 283 749Q308 749 317 725V-224Q310 -242 295 -248H40L38 -247Q35 -246 34 -245T30 -243T25 -239T21 -234T18 -227T17 -219"],8994:[405,-107,1150,65,1084,"95 108Q85 108 75 114T65 139Q65 159 129 227Q316 405 573 405Q654 405 729 387T854 344T950 286T1015 232T1053 191Q1078 160 1083 152Q1084 148 1084 139Q1084 121 1074 115T1054 108Q1040 108 1029 122T990 167T922 223Q819 291 680 309Q641 315 575 315Q508 315 469 309Q303 288 197 201Q168 179 148 155T118 119T95 108"],8995:[393,-126,1150,64,1085,"1054 392Q1067 392 1076 384T1085 362Q1085 351 1079 342T1050 310Q983 243 901 200Q753 126 575 126Q494 126 420 141T298 176T205 225T140 272T100 310Q64 346 64 362Q64 370 67 374Q75 393 93 393Q107 393 124 375Q272 214 575 214Q877 214 1025 375Q1039 392 1054 392"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/MiscTechnical.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js deleted file mode 100644 index 0046f3b..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{710:[694,-520,575,126,449,"207 632L287 694Q289 693 368 632T448 570T431 545T413 520Q410 520 350 559L287 597L224 559Q164 520 161 520Q160 520 143 544T126 570T207 632"],711:[660,-515,575,130,443,"131 603Q130 604 136 618T150 646T158 659L223 635L287 611L351 635L416 659Q417 660 424 647T437 619T443 603Q440 601 364 558T287 515T210 558T131 603"],713:[607,-540,575,80,494,"80 540V607H494V540H80"],714:[706,-503,575,236,460,"391 706Q419 706 439 683T460 634Q460 608 441 593T366 550Q356 545 351 543L275 503L256 527Q236 552 237 553Q242 558 292 620Q299 629 309 641T324 659T336 673T346 685T354 693T363 699T371 703T380 705T391 706"],715:[706,-503,575,113,338,"114 634Q114 663 136 684T183 706Q191 706 196 705T208 700T219 693T232 681T245 666T262 645T282 620Q332 558 337 553Q338 552 318 527L299 503L223 543Q215 547 202 553T183 563T167 571T153 580T141 587T131 595T124 603T118 612T115 622T114 634"],728:[694,-500,575,102,472,"287 500Q208 500 155 558T102 689V694H153V685Q153 681 154 674T164 648T186 615T226 590T287 578Q347 578 382 611T421 685V694H472V689Q472 623 422 562T287 500"],729:[695,-525,575,202,372,"202 610Q202 647 227 671T283 695Q324 695 348 669T372 610T350 551T287 525Q248 525 225 551T202 610"],730:[702,-535,575,160,414,"160 618Q160 653 193 677T279 702H284Q381 702 407 647Q414 634 414 618Q414 607 410 596T395 570T355 546T287 536T220 545T181 568T165 594T160 618ZM352 618Q352 645 341 652T301 659H292Q286 659 278 659T268 660Q247 660 236 653T224 638T222 619Q222 591 234 585T287 578Q315 578 326 580T345 590T352 618"],732:[694,-552,575,96,478,"343 552Q320 552 278 575T215 599Q181 599 146 564L134 552L115 569Q111 572 106 576T98 584L96 586Q158 656 165 663Q199 694 230 694Q239 694 244 693Q262 689 300 668T359 647Q393 647 428 682L440 694L459 677Q463 674 468 670T476 662L478 660Q416 590 409 583Q375 552 343 552"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/SpacingModLetters.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js deleted file mode 100644 index 4a06d49..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{10815:[686,0,900,39,860,"39 655Q39 675 43 680T69 686Q110 684 225 684Q267 684 303 684T360 685T385 686Q401 686 405 680T409 651Q409 632 403 628T367 624H348H301V62H598V624H551H532Q502 624 496 628T490 651Q490 673 494 679T514 686Q518 686 558 685T675 684T792 685T836 686Q852 686 856 680T860 651Q860 632 854 628T818 624H799H752V62H799H809Q846 62 853 59T860 36V31V21Q860 6 850 2Q846 0 450 0H156Q75 0 60 1T40 11V18Q39 26 39 31Q39 54 44 58T82 63Q84 63 90 63T100 62H147V624H100H90Q53 624 46 627T39 650V655"],10927:[696,199,894,96,797,"796 54Q796 40 788 32T767 24Q741 24 735 57Q729 107 705 148T646 216T563 264T465 297T356 316T245 326T136 330H134Q96 330 96 360Q96 391 134 391H136Q193 392 239 394T347 403T457 421T556 453T643 502T703 571T735 664Q741 696 763 696Q781 696 789 686T797 667Q797 651 792 624T758 545T682 456Q605 396 481 365L462 360Q483 357 526 344T633 296T733 215Q767 173 781 128T796 54ZM119 -199Q96 -190 96 -169T116 -141Q121 -139 448 -139H775Q776 -140 779 -142T785 -146T791 -151T795 -158T797 -169Q797 -190 775 -199H119"],10928:[697,199,894,96,797,"127 24Q115 24 106 32T97 55Q97 95 124 156T211 265Q288 325 412 356L431 361Q410 363 367 376T259 425T160 506Q127 546 112 594T96 667Q96 679 104 688T126 697Q152 697 158 664Q164 614 188 573T247 505T331 456T429 424T539 405T649 395T758 391Q797 391 797 360Q797 330 761 330H758Q701 329 655 327T547 318T437 300T337 268T251 219T190 150T158 57Q151 24 127 24ZM119 -199Q96 -190 96 -169T116 -141Q121 -139 448 -139H775Q776 -140 779 -142T785 -146T791 -151T795 -158T797 -169Q797 -190 775 -199H119"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/SuppMathOperators.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js deleted file mode 100644 index aded5a4..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-bold"],{10229:[518,17,1805,64,1741,"1063 221L649 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L649 281H1063L1065 280Q1079 281 1392 281H1719Q1720 280 1723 278T1729 274T1735 269T1739 262T1741 251Q1741 230 1719 221H1063"],10230:[518,17,1833,96,1773,"119 221Q96 230 96 251T116 279Q121 281 448 281H1188L1602 282Q1569 304 1530 357T1473 482Q1469 500 1469 501Q1469 512 1480 517Q1482 518 1500 518H1505Q1520 518 1523 515T1532 495Q1552 412 1611 351T1753 270Q1773 263 1773 251Q1773 240 1765 236T1732 225T1683 204Q1625 173 1586 122T1532 6Q1528 -10 1524 -13T1504 -17H1499Q1474 -16 1470 -9Q1469 -6 1469 -2Q1469 1 1473 17Q1501 138 1602 220H1188L775 221H119"],10231:[518,17,2126,64,2061,"1063 221L649 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L649 281H1476L1890 282Q1857 304 1818 357T1761 482Q1757 500 1757 501Q1757 512 1768 517Q1770 518 1788 518H1793Q1808 518 1811 515T1820 495Q1840 412 1899 351T2041 270Q2061 263 2061 251Q2061 240 2053 236T2020 225T1971 204Q1913 173 1874 122T1820 6Q1816 -10 1812 -13T1792 -17H1787Q1762 -16 1758 -9Q1757 -6 1757 -2Q1757 1 1761 17Q1789 138 1890 220H1476L1063 221"],10232:[547,46,1868,64,1804,"1063 333L700 332H338L324 321Q283 290 230 264L205 250Q266 224 323 180L338 170L700 169H1063L1064 168Q1080 169 1423 169H1782L1786 166Q1791 163 1793 162T1798 157T1802 149T1804 139Q1804 118 1782 109H1063L733 108H404L412 99Q455 50 488 -10Q498 -27 493 -37Q487 -46 465 -46H460Q446 -46 439 -39T426 -18T399 25T344 89Q239 194 99 229Q96 230 92 231T85 232T79 234T73 235T69 237T66 240T65 244T64 250Q64 267 90 271Q197 295 286 361T430 525Q439 542 442 544T460 547H465Q487 547 492 539Q496 531 496 530Q496 521 471 482T414 405L404 394L733 393H1063Q1064 392 1065 392Q1081 393 1423 393H1782Q1783 392 1786 390T1792 386T1798 381T1802 374T1804 363Q1804 345 1782 333H1063"],10233:[547,46,1870,64,1804,"87 109Q64 118 64 139Q64 159 86 168Q89 169 448 169H1169L1532 170L1546 180Q1562 193 1580 204T1612 223T1638 237T1657 246L1664 250L1639 264Q1586 290 1545 321L1531 332H1169L807 333H87Q64 343 64 362Q64 383 84 391Q89 393 448 393H1136L1465 394L1455 405Q1428 436 1401 477T1374 531Q1374 547 1399 547H1404H1409Q1423 547 1430 540T1443 519T1470 475T1526 411Q1634 303 1779 271Q1780 271 1783 270T1788 269T1792 268T1796 266T1799 264T1802 260T1803 256T1804 250Q1804 242 1800 238T1783 231T1755 225T1712 211T1654 185Q1517 112 1439 -24Q1430 -40 1426 -43T1409 -46H1404Q1373 -46 1373 -31Q1373 -24 1381 -10Q1414 50 1457 99L1465 108H1136L807 109H87"],10234:[547,46,2126,64,2060,"1063 333L700 332H338L324 321Q283 290 230 264L205 250Q266 224 323 180L338 170L700 169H1425L1788 170L1802 180Q1818 193 1836 204T1868 223T1894 237T1913 246L1920 250L1895 264Q1842 290 1801 321L1787 332H1425L1063 333ZM733 393H1392L1721 394L1711 405Q1684 436 1657 477T1630 531Q1630 547 1655 547H1660H1665Q1679 547 1686 540T1699 519T1726 475T1782 411Q1890 303 2035 271Q2036 271 2039 270T2044 269T2048 268T2052 266T2055 264T2058 260T2059 256T2060 250Q2060 242 2056 238T2039 231T2011 225T1968 211T1910 185Q1773 112 1695 -24Q1686 -40 1682 -43T1665 -46H1660Q1629 -46 1629 -31Q1629 -24 1637 -10Q1670 50 1713 99L1721 108H1392L1063 109L733 108H404L412 99Q455 50 488 -10Q498 -27 493 -37Q487 -46 465 -46H460Q446 -46 439 -39T426 -18T399 25T344 89Q239 194 99 229Q96 230 92 231T85 232T79 234T73 235T69 237T66 240T65 244T64 250Q64 267 90 271Q197 295 286 361T430 525Q439 542 442 544T460 547H465Q487 547 492 539Q496 531 496 530Q496 521 471 482T414 405L404 394L733 393"],10236:[518,17,1833,65,1773,"65 426Q74 448 95 448Q112 448 125 426V281H130L132 280H134Q162 281 448 281H1188L1602 282Q1569 304 1530 357T1473 482Q1469 500 1469 501Q1469 512 1480 517Q1482 518 1500 518H1505Q1520 518 1523 515T1532 495Q1552 412 1611 351T1753 270Q1773 263 1773 251Q1773 240 1765 236T1732 225T1683 204Q1625 173 1586 122T1532 6Q1528 -10 1524 -13T1504 -17H1499Q1474 -16 1470 -9Q1469 -6 1469 -2Q1469 1 1473 17Q1501 138 1602 220H1188L775 221H135Q133 220 130 220H125V76Q115 54 95 54Q73 54 65 76V426"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/SupplementalArrowsA.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js deleted file mode 100644 index ae9eeea..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{32:[0,0,250,0,0,""],33:[716,0,307,107,380,"330 716Q351 716 365 703T380 670V659L304 433Q230 207 227 204Q225 198 205 198Q184 198 184 207T220 439T260 669Q270 694 297 708Q300 709 304 710T311 713T316 714Q324 716 330 716ZM107 51Q110 83 133 102T179 121Q207 121 219 105T231 72Q231 45 209 23T156 0Q138 0 123 11T107 51"],34:[694,-379,514,176,538,"214 620Q214 647 236 670T289 694Q312 694 326 677T341 633V624Q341 588 327 550T294 482T253 428T216 392T196 379Q191 379 184 388T176 401Q176 404 195 421T243 472T287 547Q299 576 299 582L295 580Q291 578 282 576T264 573Q241 573 228 585T214 620ZM411 620Q411 647 433 670T486 694Q509 694 523 677T538 633V624Q538 588 524 550T491 482T450 428T413 392T393 379Q388 379 381 388T373 401Q373 404 392 421T440 472T484 547Q496 576 496 582L492 580Q488 578 479 576T461 573Q438 573 425 585T411 620"],35:[694,194,818,115,828,"281 327H228Q186 327 175 330T164 347Q164 359 176 365Q179 367 292 367H404L563 688Q569 694 578 694T593 686T597 670Q597 667 531 535L448 367H614L773 688Q779 694 787 694Q796 694 802 688T808 674V672L807 670Q807 667 732 517L658 368L736 367H814Q828 357 828 347Q828 336 812 327H637L599 250Q561 174 561 173H662H724Q760 173 769 170T779 153T770 136T729 132Q721 132 696 132T651 133H540L380 -188Q374 -194 366 -194Q357 -194 351 -188T345 -174L346 -172V-170Q346 -167 412 -35L495 133H330L170 -188Q164 -194 156 -194Q147 -194 141 -188T135 -174L136 -172V-170Q136 -167 211 -17L285 133H207L130 134Q115 140 115 153Q115 164 131 173H306L344 250Q382 326 382 327H281ZM592 327H427L389 250Q351 174 351 173H516L554 250Q592 326 592 327"],37:[750,56,818,145,847,"301 348Q257 348 231 383T205 480Q205 553 244 629T346 736Q370 750 394 750Q416 750 429 742T458 714Q512 644 606 644Q722 644 802 732Q817 750 827 750Q835 750 841 744T847 730Q847 725 827 700T689 540Q586 421 512 335Q180 -50 176 -52Q172 -56 165 -56Q157 -56 151 -50T145 -35Q145 -29 162 -9T330 186Q392 258 430 302Q711 627 711 628L701 624Q652 607 604 607Q551 607 494 634L479 642V624Q479 544 439 467Q414 416 377 382T301 348ZM270 443Q270 385 303 385H306H308Q326 385 348 407Q384 441 409 504T434 627Q434 713 390 713Q358 713 328 663Q307 631 289 556T270 451V443ZM608 -56Q573 -56 543 -23T513 76Q513 129 536 190T604 296L627 318Q670 347 704 347Q747 347 767 310T788 222Q788 126 732 35T608 -56ZM742 222Q742 310 699 310Q677 310 655 285T620 227Q608 197 593 138T578 42V36Q578 -18 613 -18Q657 -18 699 64T742 222"],38:[716,23,767,127,802,"209 444Q209 546 278 631T424 716Q473 716 501 683T530 601Q530 554 511 535T467 515Q446 515 437 527T427 553Q427 578 446 594T481 610H483V617Q480 641 464 660T419 679Q367 679 328 603Q316 578 305 538T288 470L282 443L295 449Q308 455 330 462T371 469Q397 469 413 450T430 404Q430 363 400 329T331 295Q291 295 256 322Q255 322 246 293T227 223T217 158Q217 117 232 88T273 43T327 22T387 15Q457 15 512 37T599 93T652 169T680 248T688 317T678 380T659 423T647 437Q643 435 637 431T613 416T581 392T554 364T538 332Q540 310 541 310Q554 335 587 335Q601 335 613 327T626 300Q626 290 622 279T603 255T563 242Q532 245 512 263T491 320Q494 351 511 377T547 418T600 456T652 494Q676 512 697 539T728 582T738 601Q738 602 736 602Q732 602 726 604T714 616T707 638Q707 661 724 677T764 694Q799 694 802 660Q802 625 767 562T688 467L694 458Q700 449 702 444T711 428T720 408T727 385T733 358T735 327Q735 281 724 235T685 141T617 59T515 1T375 -22Q270 -22 199 34T127 181Q127 216 147 270T207 374L216 386Q209 421 209 444ZM386 412Q386 432 366 432Q345 432 325 418T294 390T284 375Q284 371 289 362T306 343T335 332Q355 332 367 350T383 384T386 412"],39:[694,-378,307,212,377,"250 620Q250 647 272 670T325 694Q348 694 362 677T377 633V624Q377 566 343 506T275 412T231 379Q226 379 220 388T213 401T232 421T279 472T323 547Q335 573 335 582L331 580Q327 578 318 576T300 573Q277 573 264 585T250 620"],40:[750,250,409,144,517,"241 -250Q203 -212 174 -140T144 39Q144 158 180 288T296 544T481 746L487 750H499Q517 750 517 740Q517 736 495 716Q399 630 331 491T236 228T208 3Q208 -73 224 -130T255 -214T271 -244Q271 -250 252 -250H241"],41:[750,250,409,17,390,"326 497Q326 546 320 588T304 655T285 699T269 728T262 740Q262 746 267 749L272 750Q276 750 281 750H293Q331 712 360 640T390 461Q390 332 339 171T188 -116Q161 -150 121 -188T47 -250H35Q17 -250 17 -240Q17 -236 39 -216Q135 -130 203 9T298 272T326 497"],42:[750,-320,511,195,584,"560 658Q569 658 576 649T584 631Q584 625 583 620T577 611T569 603T556 595T540 587T519 578T494 566L428 536Q427 535 433 531T479 502Q525 475 532 469T539 450Q538 435 525 424T497 412Q489 412 482 418T442 456Q400 497 400 494L387 420Q376 353 373 343T352 323Q345 320 336 320H331Q322 320 316 327T309 343Q309 347 334 420L359 496Q358 496 297 456T234 414Q228 411 221 411Q212 411 204 417T195 439Q198 458 209 465T283 502L353 534L300 566Q255 593 247 599T239 616Q239 631 252 644T282 658Q290 658 295 654T335 615L378 573L391 647Q393 657 395 671T398 691T400 706T404 720T408 730T414 739T423 744T434 749Q435 749 439 749T445 750Q467 748 469 728Q469 723 457 685T432 610L420 573L481 613Q548 658 560 658"],43:[557,57,767,139,753,"139 237T139 250T151 266T198 270H293H431L465 407Q469 424 476 452Q494 528 500 542T519 557Q526 557 532 552T538 538Q538 536 507 409T472 272Q472 270 604 270Q737 270 741 268Q753 261 753 250Q753 237 742 233T696 229Q687 229 655 229T599 230H462L461 226Q461 224 427 91T392 -47Q387 -57 374 -57Q367 -57 361 -51T355 -37Q355 -31 388 99L421 230H288Q267 230 238 230T199 229Q163 229 151 233"],44:[121,194,307,69,232,"106 46Q106 68 121 90T167 120Q168 120 173 120T180 121Q232 121 232 59V54Q232 18 219 -20T186 -88T145 -143T109 -181T88 -194Q84 -194 77 -185T69 -171Q69 -168 70 -166T76 -161T85 -154T101 -139T124 -114Q146 -88 162 -58T183 -12T188 7Q187 7 183 5T172 2T156 0Q129 0 118 14T106 46"],45:[251,-180,358,84,341,"205 180H131Q102 180 93 181T84 190Q90 238 103 251H334Q341 244 341 241Q341 236 336 214T327 186Q325 181 312 181T205 180"],46:[121,0,307,107,231,"107 50Q107 76 129 98T181 121Q203 121 217 108T231 72Q231 47 210 24T156 0Q135 0 121 13T107 50"],47:[750,250,511,19,617,"596 750Q604 750 610 744T617 730L616 728Q616 727 616 726Q615 723 337 244T55 -242Q49 -250 40 -250Q30 -250 25 -243Q18 -238 20 -226Q21 -223 299 256T581 742Q589 750 596 750"],48:[665,21,511,110,562,"414 665Q562 665 562 490Q562 426 534 318Q451 -21 251 -21Q222 -21 202 -15Q155 2 134 40T110 144Q110 201 127 286T187 470T287 614Q348 665 414 665ZM187 98Q187 59 208 37T260 15Q320 15 365 83Q394 128 440 312T487 547Q487 580 471 600T433 627Q428 628 408 628Q381 628 353 609T311 569Q279 526 239 364T190 143Q187 120 187 98"],49:[666,0,511,110,468,"248 491Q228 491 228 502Q228 516 236 532Q237 536 246 537T275 541T314 552Q350 567 382 595T430 644L446 664Q450 666 454 666Q468 666 468 658Q468 647 395 359Q321 63 321 59Q321 52 334 50T388 46H422Q428 37 428 35Q428 19 421 5Q416 0 405 0Q400 0 361 1T263 2Q215 2 185 2T142 1T127 0Q110 0 110 11Q110 13 113 25T118 40Q120 46 146 46Q196 46 212 49T235 61Q238 66 295 295L353 526L340 519Q328 512 302 503T248 491"],50:[666,22,511,76,551,"159 404Q159 433 176 476T222 562T297 635T395 666Q466 666 508 617T551 497Q551 473 545 446Q534 388 482 333Q441 292 355 240T264 184Q216 151 179 101L171 91Q171 90 177 90Q206 90 269 77T366 64Q385 64 390 65Q418 73 441 98T475 156Q479 168 481 170T495 173H518Q524 167 524 166T521 152Q502 86 459 32T353 -22Q315 -22 259 15T172 53Q156 53 143 36T126 1L121 -16Q119 -22 98 -22H82Q76 -16 76 -13T80 5T98 50T132 111T189 178T274 242Q327 273 364 305T420 370T447 427T460 483Q466 514 466 538Q466 586 443 607T389 629Q338 629 293 584T226 487T204 399Q204 390 204 386T209 378T222 373Q258 376 282 422T307 493Q307 506 302 517T297 531Q297 537 308 546T327 551Q329 550 333 543T340 523T344 497Q344 450 306 393T216 336Q186 336 173 355T159 396V404"],51:[666,22,511,96,562,"296 531Q296 536 307 544T322 553Q330 553 338 534T346 501Q346 468 319 440T258 412Q232 412 216 430T200 478Q200 552 281 618Q345 666 416 666Q489 666 525 625T562 530Q562 473 525 419T430 335L416 329Q479 288 479 206Q479 142 440 89T344 7T229 -22Q173 -22 135 12T96 106Q96 192 157 192Q192 192 197 157Q197 134 184 117T142 96Q153 47 180 29Q201 15 232 15Q249 15 275 22Q307 34 331 57Q363 90 379 153T396 246Q396 261 393 272T384 290T371 301T355 308T341 311T326 312H316H307Q287 312 282 313T276 320Q276 323 279 337T283 352Q284 356 290 357T325 358Q364 359 368 360Q386 365 400 372T433 397T464 448T485 527Q487 535 487 556Q487 629 414 629Q350 629 298 580T245 476Q245 450 263 450H264Q280 450 294 463T308 496Q308 508 302 518T296 531"],52:[666,195,511,46,478,"448 34Q453 34 463 22T473 5Q473 -2 457 -7Q417 -22 383 -23H366L350 -91Q348 -98 345 -111T340 -130T335 -146T330 -161T325 -172T318 -182T310 -188T299 -193T286 -194Q256 -194 253 -165Q253 -159 271 -83T292 -5Q231 29 169 29Q114 29 91 14Q72 -2 65 1Q46 20 46 28Q46 35 55 43T77 60T96 74Q306 257 396 623Q410 666 444 666Q459 666 468 657T478 634Q478 627 470 595T440 504T387 381T303 239T187 99L164 75H178Q217 75 260 59L304 43Q304 48 325 127Q342 195 346 207T358 228Q372 242 391 242Q403 242 413 235T423 214Q423 205 402 116T378 25Q378 23 387 23Q405 23 418 25T439 31T448 34"],53:[667,22,511,106,567,"196 304Q189 309 189 314Q189 317 231 487T275 660Q278 666 283 666Q287 666 302 658T346 643T413 635Q447 635 481 642T537 658T559 666Q561 666 564 663T567 658Q565 637 557 629Q528 600 474 573T359 545Q342 545 327 546T304 550T294 552L291 540Q288 529 283 507T273 465L251 379Q307 420 364 420Q415 420 456 382T497 261Q497 165 429 82T262 -20Q256 -20 247 -21T233 -22Q176 -22 141 15T106 112Q106 208 173 208Q192 208 203 197T214 169Q214 143 195 125T156 107H153V100Q155 73 174 47T239 21Q245 21 259 23Q355 46 392 200Q393 205 394 207Q412 276 412 312Q412 352 396 367T358 383Q288 383 233 314Q226 306 224 305T209 304H196"],54:[665,22,511,120,565,"377 434Q425 434 457 404T499 341T509 278Q509 243 496 194T456 105T383 27Q322 -22 256 -22Q142 -22 122 114Q120 130 120 159Q120 221 135 292T195 452T310 599Q390 665 465 665Q565 665 565 583V574Q565 543 546 524Q528 506 504 506Q491 506 478 514T465 543Q465 585 515 602Q505 626 466 626Q419 626 372 587Q334 557 305 503T266 409L255 370Q287 410 339 429Q361 434 377 434ZM424 333Q424 359 411 378T365 397Q318 397 282 356T230 257T205 157T197 94Q197 67 211 45T260 22Q313 22 341 57T386 151Q424 283 424 333"],55:[666,22,511,136,634,"466 519Q448 519 435 528T416 550T400 571T376 581Q324 581 271 540T186 437Q185 435 183 432T181 428T179 426T177 424T174 423T171 422T165 422H159Q141 422 141 423Q136 423 136 431Q136 433 190 548T247 665Q249 666 266 666H282Q288 660 288 657Q288 655 284 646T276 628L273 620Q337 666 390 666Q413 666 425 652T438 620T444 584T457 559Q460 557 470 557Q497 557 524 582T571 635T594 665Q595 666 612 666H628Q634 660 634 657Q634 653 618 629T572 556T510 441T437 269T367 43Q356 -22 304 -22Q291 -22 278 -14T263 14Q263 36 281 95T354 269T486 507Q497 524 495 524Q482 519 466 519"],56:[666,21,511,99,553,"209 449Q209 545 278 605T416 666Q482 666 517 631T553 546Q553 513 539 482T504 430T463 394T426 370L410 360L430 343Q471 309 483 278T495 211Q495 141 441 75Q363 -21 253 -21Q182 -21 141 18T99 117Q99 161 119 201T170 268T222 308T259 331L272 338L259 349Q212 389 209 449ZM492 542Q492 586 469 605T415 625Q360 625 320 587T279 505Q279 495 281 487T286 474T295 460T306 449T321 436T337 422Q379 386 380 386Q389 386 420 412T472 471Q492 513 492 542ZM163 118Q163 76 189 49T258 21Q316 21 368 64T420 170Q420 193 412 208T395 233T350 271L302 312Q298 312 284 303T249 276T209 235T177 181T163 118"],57:[666,22,511,107,554,"297 211Q258 211 230 228T189 273T169 323T163 367Q163 411 183 472T254 585Q327 656 401 665Q403 665 412 665T427 666Q458 664 481 652T518 622T539 580T550 535T553 491Q553 448 544 395T515 277T454 148T358 37Q282 -22 213 -22Q166 -22 137 -1T107 55V64Q107 88 114 104T134 127T154 136T169 138Q185 138 196 128T207 101Q207 82 196 68T172 48L161 43Q161 40 167 36T187 26T219 21Q286 21 344 99Q364 126 382 169T408 241T417 275L412 269Q406 263 395 253T370 234T337 218T297 211ZM476 552Q476 626 417 626Q368 626 330 584Q312 563 300 533T270 433Q248 341 248 312Q248 286 262 267T310 248Q353 248 387 287T440 380T467 480T476 552"],58:[431,0,307,107,308,"184 358Q184 385 206 408T258 431Q279 431 293 418T308 383Q308 354 284 332T233 310Q212 310 198 324T184 358ZM107 50Q107 76 129 98T181 121Q203 121 217 108T231 72Q231 47 210 24T156 0Q135 0 121 13T107 50"],59:[431,195,307,70,308,"184 358Q184 385 206 408T258 431Q279 431 293 418T308 383Q308 354 284 332T233 310Q212 310 198 324T184 358ZM107 47Q107 77 130 99T180 121Q226 121 226 61Q226 25 214 -14T182 -84T144 -140T109 -180T88 -194T77 -185T70 -172Q70 -169 84 -155T121 -112T161 -48Q180 -10 180 3Q180 4 174 2Q172 2 166 1T156 0Q135 0 121 13T107 47"],61:[367,-133,767,116,776,"776 357T776 347T761 327H470Q180 327 176 329Q164 334 164 347Q164 359 176 365Q179 367 470 367H761Q776 357 776 347ZM116 143T116 153T131 173H422Q713 173 717 171Q728 166 728 153T717 135Q713 133 422 133H131Q116 143 116 153"],63:[716,0,511,195,551,"235 431Q217 431 206 442T195 468Q195 490 215 537T280 638T380 707Q403 716 423 716Q425 716 429 716T436 715Q485 715 518 681T551 590Q551 543 530 503T482 439Q471 428 400 375T318 310Q300 287 300 259Q300 236 315 236Q333 236 352 251T384 300Q386 306 407 306H423Q429 300 429 297Q429 272 393 235T308 198Q287 198 269 215T251 270Q251 330 293 374L374 436Q377 438 401 456T432 480T457 503T481 531T494 561T501 598Q501 614 499 626Q482 678 430 678H426Q392 678 362 660T311 615T280 571T264 540L259 528Q259 527 266 526T283 516T294 492Q294 466 276 449T235 431ZM209 51Q212 83 235 102T281 121Q309 121 321 105T333 72Q333 45 311 23T258 0Q240 0 225 11T209 51"],64:[705,12,767,152,789,"198 250Q198 155 248 91T394 26Q514 26 640 80L650 84H675H683Q709 84 709 76Q709 73 708 71Q706 64 660 45T534 8T383 -11T260 24T181 115Q152 168 152 248Q152 410 268 552Q303 590 324 608Q439 705 551 705Q611 705 658 683T733 623T775 543T789 454Q789 380 766 304T720 192Q677 125 617 125Q591 125 573 137T548 160T541 176Q541 178 540 178L534 173Q527 168 515 160T488 144T454 131T417 125Q361 125 320 166T279 284Q279 393 356 481T523 569Q570 569 603 537Q623 515 632 490L637 480L657 479Q684 479 684 470Q684 465 650 333L617 199V185Q616 162 628 162Q677 162 712 278Q743 381 743 442Q743 555 687 611T553 668Q467 668 385 608T250 450T198 250ZM598 445Q598 453 594 470T569 510T518 532Q463 532 410 448T356 271Q356 220 374 191T423 162Q482 162 552 255L575 348Q598 440 598 445"],65:[716,0,743,58,696,"85 46Q112 48 132 56T161 73T176 92T185 104Q185 106 353 407T524 709Q527 716 551 716Q568 716 572 712Q573 711 574 710Q576 708 594 384Q613 54 617 52H618Q626 46 672 46H689Q696 41 696 36Q696 13 683 0H670Q639 2 557 2Q526 2 500 2T459 2T441 1Q425 1 425 10Q425 12 427 24Q428 27 429 31T430 36T432 40T434 43T437 45T443 46T450 46Q514 46 514 69Q514 74 511 136L506 209H292L260 152Q222 84 222 74Q222 48 264 46Q280 46 280 35Q280 33 278 21Q275 7 272 4T259 0Q256 0 232 1T159 2Q135 2 109 1T78 0Q58 0 58 10Q58 14 61 26T66 40Q68 46 85 46ZM504 260Q503 263 496 407T486 553L466 520Q446 486 402 406L318 256Q318 255 411 255H504V260"],66:[683,0,704,57,732,"57 11Q57 38 69 45L74 46Q78 46 85 46T99 46Q134 47 145 50T162 62Q164 66 233 344T303 626Q303 627 302 629V631Q296 637 241 637H223Q217 642 217 645T219 664Q223 677 229 683H411L593 682L605 680Q616 678 628 675T660 662T694 639T720 601T732 547Q732 519 726 503Q710 452 662 414T556 360L545 357L556 355Q604 346 641 312T678 221Q678 155 622 92T482 8Q459 2 439 2T256 0H154H105Q74 0 66 2T57 11ZM629 549Q628 550 629 557T627 576T619 600T601 622T570 636Q564 637 490 637Q472 637 454 637T424 636T411 636Q399 635 395 622T364 500Q333 377 332 376Q332 374 408 374L485 375L495 377Q547 390 588 437T629 549ZM504 336Q500 337 410 337Q323 337 322 336Q322 334 305 263T270 122T252 51Q252 47 337 46Q346 46 361 46T384 45Q425 45 455 55T515 95Q574 156 574 235Q574 276 555 304T504 336"],67:[705,21,716,150,812,"395 -21Q279 -21 215 56T150 244Q150 402 265 543Q339 630 421 667T562 704Q596 704 604 703Q627 698 647 689T679 669T699 649T711 633T716 627L753 665Q790 704 792 704Q793 705 798 705Q812 705 812 698Q812 694 780 561Q744 422 744 421Q742 416 739 415T721 413H705Q699 419 699 426Q701 432 701 444Q705 464 705 493Q705 524 700 551T681 604T643 644T583 659Q480 659 387 570Q321 502 287 397T252 213Q252 123 297 74Q347 24 421 24Q500 24 564 89T653 240Q656 253 659 255T677 257Q700 257 700 248Q700 242 694 222Q681 183 656 143T593 65T504 3T395 -21"],68:[683,0,755,56,775,"56 11Q56 38 68 45L72 46Q77 46 84 46T98 46Q133 47 144 50T161 62Q163 66 232 344T302 626Q302 627 302 629L301 631Q295 637 240 637H222Q216 642 216 645T218 664Q222 677 228 683H403Q582 683 589 682Q672 674 723 608T775 440Q775 312 709 209T562 54Q502 14 432 2Q423 1 243 0H148H102Q72 0 64 2T56 11ZM254 51Q254 46 348 46Q395 46 422 50T484 71Q585 121 633 255Q679 396 679 477Q679 522 665 554T629 603T587 626T548 636Q547 636 536 636T510 636T480 637Q420 637 411 636T398 627Q396 623 325 339T254 51"],69:[680,0,678,54,743,"248 634Q216 634 214 638Q213 641 213 646Q213 674 224 678Q226 680 481 680H736Q743 676 743 669Q743 665 729 557T713 447Q711 440 690 440H675Q667 445 667 454Q667 455 671 481T675 536Q675 583 658 604T592 632Q574 634 475 634Q439 634 424 633T405 631T399 625Q397 622 367 501T336 377Q336 376 367 376H388Q451 376 477 389Q493 399 503 419T520 462T528 489Q531 493 549 493Q557 493 561 492T566 491T569 488T572 483L539 351Q507 221 503 216Q503 216 500 213H484Q468 213 465 216Q461 219 461 225Q461 228 466 250T472 290Q472 317 452 323T368 330H324Q323 326 289 191T255 51T331 46H360Q413 46 444 49T511 67T570 113Q589 137 608 175T638 242T652 272Q656 274 670 274Q693 274 693 262L648 148Q590 4 588 2Q585 0 323 0H61Q54 4 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62L194 200Q229 337 264 477T299 623Q299 630 292 631T248 634"],70:[680,-1,653,54,731,"299 623Q299 630 292 631T247 634H219Q213 640 213 642T215 661Q218 673 225 680H724Q731 676 731 669Q731 665 717 557T701 447Q699 440 678 440H663Q656 444 656 452Q656 457 659 485T663 538Q663 586 644 607T566 633Q564 633 535 633T486 634H458Q404 634 399 625Q396 620 364 492L332 363H380Q446 365 464 373Q496 389 514 458Q518 477 523 479Q527 480 541 480H556Q563 475 563 470Q563 467 532 339T498 207Q496 200 475 200H460Q453 207 453 212Q454 213 456 225T461 254T464 278Q464 304 445 310T369 317H321L289 190Q257 66 257 59Q257 54 261 52T283 48T337 46Q348 46 352 46T360 45T366 42T368 37Q368 32 365 23Q360 4 355 2Q352 1 342 1Q336 1 297 1T199 2Q138 2 106 2T71 1H68Q54 1 54 11Q54 38 66 45L70 46Q75 46 82 46T96 46Q131 47 142 50T159 62L194 200Q229 337 264 477T299 623"],71:[705,22,774,150,812,"632 -1Q629 -1 622 5T604 25T583 53Q508 -22 394 -22Q287 -22 219 52T150 244Q150 402 265 543Q339 630 421 667T562 704Q596 704 604 703Q627 698 647 689T679 669T699 649T711 633T716 627L753 665Q790 704 792 704Q793 705 798 705Q812 705 812 698Q812 694 780 561Q744 422 744 421Q742 416 739 415T721 413H705Q699 419 699 426Q701 432 701 444Q705 464 705 493Q705 524 700 551T681 604T643 644T583 659Q480 659 387 570Q319 501 286 394T252 208Q252 156 269 118T314 61T369 33T425 24Q470 24 509 46T566 104Q571 116 583 162T595 214Q595 222 583 223Q561 227 517 227H495Q488 230 488 238Q488 254 495 268Q500 273 511 273Q515 273 532 273T581 272T649 271Q731 271 752 273H761Q767 267 767 264T765 246Q761 233 755 227H742Q698 227 693 213L639 4Q636 -1 632 -1"],72:[683,0,743,54,860,"61 0Q54 7 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62Q161 66 230 344T300 626Q300 627 300 629L299 631Q293 637 238 637H220Q214 642 214 645T216 664Q220 677 226 683H239Q307 681 372 681Q480 681 486 683H496Q502 677 502 674T500 656Q496 643 490 637H472Q418 637 406 630Q400 627 396 612T367 500Q360 474 352 442T340 395L336 380Q336 378 466 378H596Q657 622 657 626Q657 627 656 629V631Q650 637 595 637H577Q571 642 571 645T573 664Q577 677 583 683H596Q664 681 729 681Q837 681 843 683H853Q860 676 860 672Q858 647 848 637H819Q783 636 772 634T756 623Q753 618 684 340T614 57Q614 50 621 49T666 46Q697 46 699 40Q701 37 698 21Q693 3 689 1Q686 0 677 0Q673 0 657 0T611 1T546 2Q453 2 428 0H418Q411 7 411 11Q411 27 418 41Q422 46 452 46Q488 47 499 50T516 62Q517 64 550 196T584 331Q584 332 454 332H324L291 197Q257 64 257 56Q257 50 265 49T309 46Q340 46 342 40Q344 37 341 21Q336 3 332 1Q329 0 320 0Q316 0 300 0T254 1T189 2Q96 2 71 0H61"],73:[683,0,386,49,508,"235 637Q217 637 213 638T209 649Q209 673 220 682Q222 683 237 683Q278 681 369 681Q404 681 441 682T483 683Q499 683 503 681T508 672Q508 670 505 658T500 643Q498 637 464 637Q425 635 415 633T398 621Q396 618 327 340T257 58T260 52T278 48T322 46Q349 46 349 36Q349 31 346 22Q342 4 337 1Q336 1 334 1T329 0Q325 0 307 0T258 1T190 2Q95 2 67 0H56Q49 7 49 11Q51 38 62 46H91Q129 47 141 50T159 62Q161 66 230 344T300 625Q300 637 235 637"],74:[683,22,525,78,622,"361 637Q333 637 331 641Q330 644 330 649Q330 673 341 682Q343 683 360 683Q405 681 500 681Q551 681 577 681T607 682Q622 682 622 673Q622 665 616 647Q614 640 610 639T587 637Q547 636 541 624Q538 618 477 374T413 124Q391 64 333 22T207 -21T109 12T78 86Q78 130 101 150T149 170Q193 170 196 129Q196 100 178 80T137 58L132 57Q134 52 138 46T160 28T205 16Q242 16 273 48T319 122Q322 129 383 371T444 627Q444 637 361 637"],75:[683,0,769,54,859,"668 621Q668 635 645 637Q629 637 629 648Q629 650 632 662T637 677Q640 682 653 682Q657 682 688 681T764 680Q786 680 810 681T839 682Q859 682 859 672Q859 655 852 643Q849 637 839 637Q804 637 768 621T717 595T697 578Q696 578 600 497L505 417L508 408Q543 311 574 227T618 106T632 69Q645 47 688 46H707Q713 38 713 37T710 19Q706 6 700 0H688Q659 2 587 2Q557 2 532 2T492 2T474 1Q458 1 458 10Q458 13 460 23Q464 39 466 42T480 46Q526 46 526 72Q526 75 476 213L427 350Q426 350 396 325T334 272T302 242Q302 241 299 230T290 194T279 150Q257 61 257 55Q257 50 265 49T309 46H337Q343 40 343 38T341 19Q337 6 331 0H316Q280 2 190 2Q158 2 131 2T89 2T70 1Q54 1 54 11Q54 38 66 45L70 46Q75 46 82 46T96 46Q131 47 142 50T159 62Q161 66 230 344T300 626Q300 627 300 629L299 631Q293 637 238 637H220Q214 642 214 645T216 664Q220 677 226 683H239Q307 681 372 681Q386 681 414 681T464 682L487 683H496Q502 677 502 674T500 656Q495 641 491 637H462Q426 636 415 634T399 623Q396 618 358 467L320 314Q321 314 484 452Q510 474 552 509Q625 570 646 590T668 621"],76:[683,0,627,54,628,"61 0Q54 4 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62Q161 66 230 344T300 626Q300 627 300 629L299 631Q293 637 238 637H220Q214 642 214 645T216 664Q220 677 226 683H240Q275 681 371 681Q407 681 438 681T487 682T509 682Q527 682 527 674Q527 670 524 659Q523 657 523 654T522 649T520 645T519 642T517 640T515 639T512 638T507 637T502 637T494 637H478Q433 636 417 633T396 617Q395 614 325 334T255 51Q255 47 319 47Q387 47 410 52Q459 65 494 98T543 163T570 229T589 273H622Q628 264 628 262Q628 259 584 133T539 5Q537 1 511 1Q482 0 296 0H61"],77:[683,0,897,58,1010,"72 1Q58 1 58 11Q58 33 66 41Q68 46 87 46Q150 50 168 84Q172 91 238 356T304 626Q304 627 304 629L303 631Q297 637 242 637H224Q218 642 218 645T220 664Q224 677 230 683H326H394Q417 683 422 682T429 676L480 127L502 163Q523 199 560 262T642 400Q801 668 805 676L817 683H1003Q1010 678 1010 672Q1010 650 997 637H979Q915 637 906 623Q903 618 834 340T764 57Q764 50 771 49T817 46H845Q851 38 851 37T848 19Q845 7 838 0H824Q789 2 701 2Q670 2 644 2T603 2T584 1Q569 1 569 11Q569 13 571 25Q576 42 581 45L586 46Q590 46 597 46T611 46Q646 47 657 50T674 62L813 616L634 313Q453 7 452 7Q446 0 428 0Q409 0 407 6Q405 10 379 304T351 604L285 348Q220 83 220 82Q220 65 233 57T279 46H295Q301 38 301 37T298 19Q295 7 288 0H275Q244 2 171 2Q145 2 123 2T88 2T72 1"],78:[683,1,743,54,860,"633 637Q624 637 621 639T617 650Q617 670 630 683H641Q682 680 736 680Q836 680 845 683H853Q860 676 860 672Q858 647 848 637H832Q764 633 750 598Q746 590 673 300Q656 230 638 156T610 44L600 7Q598 0 576 0H559Q553 6 448 297L342 588Q341 588 279 336T216 81Q216 49 274 46Q293 46 295 40Q297 37 294 21Q293 19 292 16T291 11T290 7T289 4T287 2T284 1T280 1T275 0T263 0T229 1T167 2Q91 2 70 0H61Q54 7 54 11T57 27Q61 41 64 43T83 46Q146 50 164 84Q167 90 235 362L303 634Q300 635 253 637H220Q214 643 214 645T216 664Q220 677 226 683H314Q386 683 397 683T410 677Q412 675 501 428L591 179Q591 178 592 180T595 189T600 209T610 246T624 303T645 385Q698 595 698 606Q698 618 683 627T633 637"],79:[704,22,767,149,788,"149 237Q149 326 186 413T282 563T412 665T552 704Q619 704 667 678T741 611T777 528T788 444Q788 328 728 219T572 44T377 -22Q275 -22 212 50T149 237ZM688 487Q688 570 650 617T548 665Q467 665 398 592T291 413T253 203Q253 119 290 70T387 20Q440 20 489 52T573 135T635 249T675 373T688 487"],80:[683,0,678,55,729,"62 0Q55 7 55 11Q55 27 62 41Q66 46 96 46Q132 47 143 50T160 62Q162 66 231 344T301 626Q301 627 300 629V631Q294 637 239 637H221Q215 642 215 645T217 664Q221 677 227 683H404H431H502Q578 683 615 675T684 636Q729 595 729 531Q729 462 671 396T524 308Q499 302 404 301H318L288 182Q258 63 258 55T310 46Q341 46 343 40Q345 37 342 21Q337 3 333 1Q330 0 321 0Q317 0 301 0T255 1T190 2Q97 2 72 0H62ZM626 555V562Q626 620 552 635Q546 636 481 637Q466 637 450 637T423 636T412 636Q401 635 398 627Q396 622 361 484Q353 452 344 416T330 362L325 344Q325 342 390 342H427Q523 342 567 386Q596 415 611 473T626 555"],81:[704,195,767,149,788,"460 -107Q460 -72 464 -42T468 -7L457 -10Q446 -14 424 -18T379 -22Q276 -22 213 50T149 237Q149 326 186 413T282 563T412 665T552 704Q664 704 726 631T788 442Q788 305 703 180Q627 64 517 13L506 8Q506 7 508 -12T513 -38T522 -59T538 -79T565 -85Q604 -85 634 -59T672 0Q676 11 684 11Q693 11 695 2Q695 -1 690 -20T673 -69T644 -126T599 -174T538 -194Q464 -194 460 -110Q460 -108 460 -107ZM689 481Q689 578 646 621T551 665Q468 665 391 586Q321 512 285 399T249 202Q249 106 295 58Q310 41 314 41Q315 41 315 46Q315 83 344 118T420 154Q450 154 473 135Q493 114 500 69L502 58L512 65Q571 110 613 192T672 348T689 481ZM472 49Q472 118 415 118Q393 118 373 98T353 51Q353 18 386 18H387Q424 18 472 40V49"],82:[683,22,729,55,723,"62 0Q55 7 55 11Q55 27 62 41Q66 46 96 46Q132 47 143 50T160 62Q162 66 231 344T301 626Q301 627 300 629V631Q294 637 239 637H221Q215 642 215 645T217 664Q221 677 227 683H386Q554 682 569 679Q571 678 580 676Q643 662 680 623T717 533Q717 473 667 420T528 337L538 330Q563 314 578 286T594 228Q594 212 588 147T581 65Q581 36 589 26T616 16H618Q637 16 652 37Q668 57 677 94Q679 105 701 105T723 95Q723 89 717 72T698 33T662 -5T610 -22Q555 -22 513 3T471 88Q471 107 486 168T502 244Q502 303 452 320Q445 322 382 323H320L288 192Q255 63 255 55T307 46Q338 46 340 40Q342 37 339 21Q335 3 330 1Q326 0 320 0Q317 0 306 0T265 1T190 2Q99 2 73 0H62ZM612 558Q612 566 612 568T610 581T603 597T590 611T567 625T532 635Q526 636 470 637Q458 637 445 637T422 636T412 636Q402 635 397 627L390 598Q383 570 373 532T354 455T337 389T330 361Q356 360 384 360H415Q483 360 527 382Q557 399 574 424T604 498Q612 533 612 558"],83:[706,22,562,74,633,"198 460Q198 551 269 628T432 705Q516 705 557 644L583 673Q589 679 593 684T600 693T605 698T609 702T611 704T614 705T618 705H620Q633 705 633 698T605 577T573 459L570 456H554Q546 456 543 456T536 457T532 460T531 466Q531 469 533 489T536 532Q536 573 525 600T496 640T462 657T427 662Q369 662 325 612T281 503Q281 475 290 458T318 430T356 415T407 401T463 383Q506 360 522 323T538 258V244Q538 141 465 60T300 -22Q198 -22 152 41L143 31Q137 25 126 12T106 -10T95 -21L92 -22Q88 -22 86 -22Q81 -22 78 -20T74 -16V-14Q74 -11 132 221Q134 227 155 227H171Q177 221 177 215Q177 212 175 205T171 182T169 147Q171 99 195 70T246 33T306 25Q358 25 400 70T453 169Q455 180 455 203V210Q455 263 414 285Q409 288 347 305Q271 328 254 339Q239 350 224 371Q198 409 198 460"],84:[677,0,716,171,806,"178 437Q173 442 171 446Q171 451 238 654Q243 670 250 677H681H762Q792 677 799 676T806 667Q806 661 788 553T768 444Q768 437 746 437Q727 437 723 445Q723 450 729 492T736 562Q736 589 728 602T693 624Q675 630 622 630H595Q575 630 571 629T564 623Q562 621 492 342T422 59Q422 48 502 46H542Q548 38 548 37T545 19Q541 6 535 0H517Q475 2 357 2Q315 2 279 2T223 2T198 1Q179 1 179 9Q179 14 182 24Q187 42 190 44Q194 46 206 46H232Q289 47 301 49T326 65L395 344Q465 619 465 626Q465 629 462 629Q456 631 411 631Q364 631 336 625T288 597T255 549T224 467Q215 442 210 437H178"],85:[683,22,743,194,860,"636 637Q627 637 624 639T620 650Q620 670 633 683H644Q702 681 753 681Q760 681 772 681T796 681T820 682T838 683H845H853Q860 676 860 672Q858 647 848 637H832Q764 633 750 598Q745 588 698 400T648 204Q627 140 584 86Q484 -22 378 -22Q300 -22 247 31T194 167Q194 176 194 182T196 198T200 218T207 248T217 288T231 346T250 422Q300 618 300 626Q300 627 300 629L299 631Q293 637 238 637H220Q214 642 214 645T216 664Q220 677 226 683H239Q307 681 372 681Q480 681 486 683H496Q502 677 502 674T500 656Q496 643 490 637H472Q418 637 406 630Q400 627 394 603T344 410Q299 232 292 198T284 135Q284 102 294 78T322 44T355 29T387 24Q455 24 515 74T604 211Q605 215 653 404T701 607Q701 618 686 627T636 637"],86:[683,22,743,205,868,"667 637Q657 637 654 639T650 650Q650 670 663 683H675Q704 681 772 681Q793 681 818 682T847 683Q868 683 868 672Q868 670 865 658T860 643Q857 637 848 637Q785 637 749 587L394 -15Q387 -22 366 -22Q346 -22 342 -16Q341 -13 313 303Q285 622 285 623Q283 631 273 634T229 637Q205 637 205 648Q205 654 208 666T217 682Q219 683 230 683Q276 680 329 680Q444 680 456 683H466Q472 677 472 674T470 656Q466 643 460 637H448Q384 637 384 615Q385 612 406 371T427 126Q427 125 495 240T632 473T704 596Q707 604 707 609Q707 633 667 637"],87:[683,22,999,205,1124,"234 637H226Q205 637 205 648Q205 673 216 682Q218 683 231 683Q265 681 340 681Q371 681 404 682T443 683Q458 683 462 681T467 672Q467 670 464 658T459 643Q457 637 434 637Q407 636 394 632T378 623T376 613Q376 589 385 377T394 149L511 361Q542 419 596 519L613 551L612 585Q610 621 610 624Q608 637 559 637H555Q537 637 537 647Q537 654 540 664Q544 677 550 683H561Q600 680 656 680Q771 680 783 683H792Q798 677 798 675T796 658Q792 643 790 640T778 637H774Q721 637 708 620L717 385Q726 150 727 149Q727 148 752 193T812 303T882 433T942 546T969 596Q970 600 970 606Q970 610 969 613T966 620T961 625T955 628T949 631T941 633T934 634T927 636T920 637Q903 637 903 648Q903 650 905 664Q909 677 915 683H928Q960 681 1031 681Q1050 681 1073 681T1101 682Q1124 682 1124 672Q1124 655 1117 643Q1114 637 1104 637Q1085 637 1069 632T1043 618T1026 603T1014 588L1009 580L687 -16Q681 -22 660 -22Q643 -22 637 -16Q635 -14 627 223Q617 441 617 464L602 441Q578 397 487 228Q456 171 423 110T372 17T355 -15Q348 -22 328 -22Q312 -22 308 -20T303 -9Q303 -5 291 310T277 627Q273 636 234 637"],88:[683,0,743,50,825,"684 0Q670 0 634 1T569 2Q512 2 482 2T449 1Q433 1 433 10Q433 11 435 25Q437 34 438 37T442 43T448 45T459 46T476 49Q506 58 506 64Q506 65 467 179T426 295L382 244Q339 194 295 142T249 86Q245 79 245 72Q245 48 279 46Q293 46 293 32Q293 13 280 0H268Q206 2 151 2Q70 2 64 0Q50 0 50 11Q50 15 53 27Q57 41 60 43T78 46Q154 49 205 100Q207 103 312 225L411 341L407 353Q404 360 381 428T336 560T310 627Q301 636 255 637H229Q223 643 223 645T225 664Q229 677 235 683H246Q288 680 346 680Q462 680 477 683H487Q493 677 493 674T491 656Q488 644 485 641T471 637Q461 635 454 635Q419 626 421 619Q421 617 453 524T486 430T554 509T624 593Q631 604 631 611Q631 622 621 629T598 637Q583 637 583 648Q583 650 585 660Q589 676 591 679T602 683Q606 683 637 682T715 680Q742 680 771 681T804 682Q825 682 825 672Q825 650 817 642Q814 637 797 637Q739 634 700 608Q684 597 659 569T505 389L501 384L557 222Q612 61 616 57Q625 47 671 46Q691 46 697 45T704 36Q704 35 702 23Q701 19 700 14T699 7T696 3T692 1T684 0"],89:[683,0,743,198,875,"232 637Q198 637 198 647Q198 651 201 664T210 682Q212 683 223 683Q269 680 325 680Q443 680 455 683H465Q472 676 472 672Q472 656 465 642Q460 637 441 637Q395 634 395 623Q395 621 438 478T482 334T583 460T688 591Q688 593 694 601T700 617Q700 637 668 637H666Q655 637 655 648Q655 654 658 664Q660 672 660 673T663 678T668 682T677 683Q680 683 704 682T776 680Q801 680 828 681T858 682Q875 682 875 673Q875 669 872 657T867 643Q865 637 848 637Q788 634 749 597Q733 581 608 424L487 273L461 170Q454 145 448 118T438 76T434 60Q434 54 436 52T452 48T496 46H514Q520 41 520 38T518 19Q514 6 508 0H495Q427 2 364 2Q350 2 323 2T272 0H250H241Q234 7 234 11Q234 27 241 41Q245 46 275 46Q312 47 323 50T340 64Q340 65 344 79T355 120T368 171L393 274L341 448Q288 622 286 626Q278 636 232 637"],90:[683,1,613,80,704,"203 452Q203 455 236 565T270 677Q270 681 274 681Q276 683 488 683H699Q704 678 704 675Q704 663 697 649Q697 647 449 348L201 50L266 49H301Q442 49 495 116Q525 155 556 251Q563 274 565 278T579 282H585Q609 285 609 271Q609 270 570 142T528 8T518 1T466 0H303Q253 0 197 0T131 -1Q112 -1 102 -1T87 1T81 3T80 8Q80 30 89 39Q90 41 204 178T446 470T575 626L584 637H512H504H475Q446 637 426 635T378 624T330 597T289 546T254 467Q247 446 243 444Q239 442 226 442Q203 442 203 452"],91:[750,250,307,73,446,"205 -221Q205 -239 194 -250H137H106Q73 -250 73 -242Q73 -232 194 255T321 747L324 750H381H417Q435 750 440 748T446 739Q446 730 443 723T437 712L434 710H350L349 706Q349 704 235 249T120 -208Q120 -210 159 -210Q166 -210 175 -210T187 -209Q205 -209 205 -221"],93:[750,250,307,-14,359,"227 721Q227 739 238 750H295H326Q359 750 359 742Q359 732 238 245T111 -247L108 -250H51H15Q-3 -250 -8 -248T-14 -239Q-14 -230 -11 -223T-5 -212L-2 -210H82L83 -206Q83 -204 197 251T312 708Q312 710 273 710Q266 710 257 710T245 709Q227 709 227 721"],94:[694,-527,511,260,528,"528 555Q528 549 514 538T496 527Q491 527 470 554Q458 569 449 580L414 625L353 578Q339 567 323 555T298 536L290 529Q286 527 285 527Q279 527 273 533T264 546L260 553Q260 559 263 562Q265 564 342 628T421 693T425 694Q430 694 433 691Q528 563 528 555"],95:[-25,62,511,91,554,"98 -62Q91 -58 91 -51Q91 -31 100 -26Q102 -25 324 -25H442H500Q536 -25 545 -27T554 -36Q554 -50 548 -56Q546 -60 538 -61Q520 -62 319 -62H98"],97:[442,11,511,101,543,"418 53Q418 26 438 26Q466 26 494 131Q500 151 504 152Q507 153 516 153H521Q531 153 534 153T540 150T543 144Q543 141 540 126T529 88T509 43T477 5T434 -11Q404 -11 383 3T354 30T347 48H346Q345 47 342 45T337 40Q282 -11 228 -11Q172 -11 137 34T101 146Q101 260 177 351T333 442Q343 442 352 441T369 437T382 431T393 425T402 417T409 410T414 402T419 396Q423 406 436 414T461 422Q475 422 484 413T494 395Q494 384 459 244T420 88Q418 80 418 58V53ZM397 323Q397 344 382 374T333 405Q302 405 271 372Q249 349 235 316T203 215Q184 135 184 108V100V94Q184 54 207 35Q218 26 235 26Q279 26 330 91Q343 109 346 118T372 217Q397 317 397 323"],98:[694,11,460,108,467,"158 683Q163 683 223 688T300 694Q312 694 312 685T279 544Q243 405 243 403L256 412Q268 422 292 432T338 442Q395 442 431 398T467 284Q467 175 393 82T229 -11Q175 -11 142 32T108 142Q108 176 115 207T166 412Q177 458 190 510T209 588T216 616Q216 629 209 632T170 637H149Q143 643 143 645T145 664Q150 683 158 683ZM178 109Q178 27 234 27Q247 27 254 29Q295 44 323 94Q343 129 363 208T384 332Q384 354 382 361Q369 405 332 405Q282 405 228 326L222 317L205 250Q178 142 178 109"],99:[441,10,460,103,469,"257 -10Q183 -10 143 37T103 155Q103 257 173 341T337 440Q341 441 348 441H358Q421 441 445 415T469 356Q469 320 450 305T410 289Q392 289 381 299T370 325Q370 362 404 378L414 383Q392 402 365 405Q322 405 285 375T227 294Q217 271 202 213T187 119Q187 27 263 27Q299 27 330 40Q361 51 386 71T424 106T440 121Q444 121 455 110T466 96Q466 92 458 81T432 54T390 24T331 0T257 -10"],100:[694,11,511,101,567,"418 54Q418 26 438 26Q466 26 494 131Q500 151 504 152Q507 153 516 153H521H526Q543 153 543 144Q543 143 541 129Q531 91 521 65T487 14T434 -11T383 3T354 30T347 48H346Q345 47 342 45T337 40Q282 -11 228 -11Q172 -11 137 34T101 146Q101 255 174 348T337 441Q354 441 368 437T390 427T404 414T413 404T417 400L471 616Q471 629 464 632T425 637H404Q398 643 398 645T400 664Q405 683 413 683Q418 683 478 688T555 694Q567 694 567 686Q567 676 495 389L419 86Q418 80 418 61V54ZM397 323Q397 329 394 340T385 367T365 394T333 405Q302 405 271 372Q249 349 235 316T203 215Q184 135 184 108V100Q184 71 191 56Q204 26 235 26Q267 26 300 57T344 112Q347 117 372 217T397 323"],101:[442,10,460,107,470,"107 166Q107 230 131 283T193 369T270 420T345 441Q346 441 352 441T361 442H364Q409 442 439 418T470 355Q470 270 366 239Q308 223 218 223H205Q189 164 189 125Q189 83 206 55T261 27Q309 27 353 50T426 109Q436 121 440 121T453 111T466 97Q469 92 455 77Q424 41 372 16T258 -10Q184 -10 146 41T107 166ZM416 333T416 354T401 390T360 405Q322 405 292 384T246 336T223 288T215 261Q215 260 240 260Q262 261 276 262T314 266T353 275T384 291T408 317"],102:[705,204,307,-23,450,"351 608Q351 642 389 661Q368 668 365 668Q358 668 352 664Q349 663 347 661T342 654T337 647T333 637T330 627T327 614T324 601T321 587T318 571L291 432Q291 431 343 431H394Q400 426 400 423T398 404Q394 390 389 386L335 385H282L255 246Q212 20 189 -51Q136 -199 58 -204Q22 -204 0 -185T-23 -134Q-23 -100 -3 -85T37 -69Q54 -69 65 -80T76 -108Q76 -115 75 -119Q70 -134 61 -144T46 -158L39 -161Q39 -162 42 -163T50 -166T61 -168Q77 -168 91 -145Q98 -128 105 -95L125 -1Q145 90 146 98Q149 109 163 180T189 317T202 384T158 385H114Q108 390 108 393T110 412Q113 424 120 431H165Q211 431 211 433Q213 435 219 473T237 561T266 639Q282 667 310 686T367 705Q402 705 426 686T450 635Q450 600 430 585T390 569Q373 569 362 580T351 608"],103:[442,205,460,46,494,"103 163Q106 263 173 347T320 441Q322 441 329 441T341 442Q387 439 419 398Q420 399 420 400Q421 402 425 406T440 416T464 422Q476 421 485 413T494 396Q494 386 465 268T407 38T377 -77Q365 -123 310 -164T179 -205Q46 -205 46 -139Q46 -114 64 -97T106 -79Q127 -79 136 -91T146 -115Q146 -127 141 -138T130 -155T124 -162T125 -163Q133 -166 170 -168Q200 -168 217 -162Q242 -153 264 -130T297 -78Q298 -74 305 -46T320 10T327 38Q326 38 317 31T291 15T256 2Q249 1 231 1Q182 1 143 38T103 163ZM398 324Q398 330 395 346T375 383T332 405Q330 405 326 405T320 404Q291 396 263 365Q230 324 208 239T185 115Q185 38 238 38Q258 38 279 50T312 77T336 106L348 122Q349 125 373 223T398 324"],104:[694,11,511,69,545,"398 44Q398 26 414 26Q431 26 451 43Q477 71 496 136Q499 148 501 150T515 153H521Q531 153 534 153T541 150T544 143Q544 133 534 105T496 41T432 -8Q424 -10 408 -10Q370 -10 348 12T326 72Q326 93 342 135Q397 288 397 349Q397 367 396 372Q386 405 357 405Q283 405 228 310Q217 290 212 274T180 152Q153 42 148 26T135 3Q121 -11 102 -11Q89 -11 80 -3T69 19L216 616Q216 629 209 632T170 637H149Q143 643 143 645T145 664Q150 683 158 683Q163 683 223 688T300 694Q312 694 312 685Q312 674 277 539Q241 395 241 393Q242 394 249 399T259 407T271 415T285 424T300 431T318 437T338 440T362 442Q423 442 449 410T475 338Q475 290 437 178T398 44"],105:[656,10,307,75,341,"234 599Q234 620 251 638T292 656Q306 656 319 647T332 617Q332 594 313 577T273 560Q260 560 247 569T234 599ZM75 287Q75 292 82 313T103 362T142 413T196 441H214Q248 441 270 419T293 357Q292 338 289 330T245 208Q193 72 193 46Q193 26 209 26Q228 26 247 43Q273 71 292 136Q295 148 297 150T311 153H317Q327 153 330 153T337 150T340 143Q340 133 330 105T292 41T228 -8Q220 -10 204 -10Q160 -10 141 15T122 71Q122 98 171 227T221 384Q221 396 218 400T203 405Q175 403 156 374T128 312T116 279Q115 278 97 278H81Q75 284 75 287"],106:[656,204,307,-32,364,"266 600Q266 622 283 639T322 656Q340 656 352 645T364 616Q364 596 347 578T305 560Q291 560 279 569T266 600ZM75 287Q75 293 86 316T117 369T168 420T236 442Q282 442 304 415T327 358V332L278 134Q269 98 260 60T246 3T236 -36T227 -66T220 -85T213 -101T204 -114Q181 -150 139 -177T46 -204Q8 -204 -12 -186T-32 -140Q-32 -112 -14 -96T27 -79Q48 -79 57 -91T67 -114Q67 -146 38 -166Q42 -168 49 -168Q75 -168 98 -147T130 -108T146 -71Q150 -59 199 138T250 346Q253 359 253 373Q253 405 230 405Q206 405 184 386T149 345T126 301L117 280Q115 278 98 278H81Q75 284 75 287"],107:[694,11,460,69,498,"158 683Q163 683 223 688T300 694Q312 694 312 686Q312 679 262 478L211 273Q212 272 219 276T248 299T296 349Q317 371 328 382T360 410T399 434T439 442Q462 442 480 427T498 373Q498 329 479 313T437 296Q420 296 409 305T398 331Q398 357 413 372T445 391Q454 392 448 399Q445 405 431 405Q408 405 377 385Q351 368 314 327T250 261Q243 257 243 254Q249 254 279 243T328 220Q366 192 366 146Q366 131 361 109T355 62V54Q355 26 376 26Q379 26 387 28Q420 36 443 130Q449 151 454 152Q457 153 465 153H470Q484 153 488 152T492 144Q492 141 489 126T476 88T454 42T420 5T372 -11Q331 -11 306 17T280 88Q280 100 283 119T287 146Q287 172 265 190T221 215T198 220Q197 220 173 121Q152 37 148 24T135 3Q121 -11 102 -11Q89 -11 80 -3T69 19L216 616Q216 629 209 632T170 637H149Q143 643 143 645T145 664Q150 683 158 683"],108:[694,11,256,87,312,"162 61Q162 26 183 26Q211 26 239 131Q245 151 249 152Q252 153 261 153H266H271Q288 153 288 144Q288 143 286 129Q276 91 266 65T232 14T179 -11Q144 -11 116 12T87 81Q87 96 88 102L216 616Q216 629 209 632T170 637H149Q143 643 143 645T145 664Q150 683 158 683Q163 683 223 688T300 694Q312 694 312 686Q312 676 240 389L164 86Q162 74 162 61"],109:[442,11,818,75,852,"81 278Q75 284 75 289Q77 299 89 338Q101 373 114 396T142 428T166 439T186 442H189Q225 440 251 417Q266 401 271 384L275 374L286 386Q342 442 414 442Q428 442 440 440T461 435T479 427T493 418T503 407T511 397T516 387T520 378T523 370L524 366Q546 395 583 418T667 442Q729 442 755 411T782 338Q782 290 743 178T704 45Q704 26 720 26Q773 26 802 136Q805 148 807 150T822 153H828Q838 153 841 153T848 150T851 143Q851 137 843 115T821 63T778 12T715 -10Q671 -10 652 16T632 71Q632 88 668 191T704 349Q704 367 703 372Q693 405 664 405Q637 405 613 393T571 360T547 329T534 309Q523 290 518 274T487 151Q455 24 452 16Q438 -11 408 -11T376 18Q376 26 411 167T447 314Q449 325 449 346Q449 372 444 384Q431 405 408 405Q334 405 276 305Q266 289 262 273T231 151Q199 24 196 16Q182 -11 152 -11T120 18Q120 26 159 182T200 347Q202 361 202 372Q202 405 181 405Q168 405 159 391Q145 374 132 328T117 280T98 278H81"],110:[443,11,562,75,596,"449 44Q449 26 465 26Q482 26 502 43Q528 71 547 136Q550 148 552 150T566 153H572Q582 153 585 153T592 150T595 143Q595 133 585 105T547 41T483 -8Q475 -10 459 -10Q421 -10 399 12T377 72Q377 93 393 135Q448 288 448 349Q448 367 447 372Q437 405 408 405Q381 405 357 393T315 360T291 329T278 309Q267 290 262 274T231 151Q199 24 196 16Q182 -11 152 -11T120 18Q120 23 159 181Q199 343 199 346Q202 360 202 372Q202 406 183 406Q163 406 148 374Q142 360 135 338T124 299T117 280T98 278H81Q75 284 75 287Q76 293 78 303T90 341T110 388T141 425T184 442Q195 442 204 441T221 436T235 429T247 421T256 412T262 403T267 394T271 387T273 381L274 378V374L287 387Q342 442 414 442Q474 442 500 410T526 338Q526 290 488 178T449 44"],111:[442,11,511,103,517,"103 155Q103 266 185 354T366 442Q435 442 476 394T517 275Q517 169 436 79T255 -11Q194 -11 149 32T103 155ZM187 119Q187 67 209 47T260 26Q290 26 321 47Q354 68 380 113T426 260Q432 291 432 315Q432 361 408 385Q388 405 358 405Q319 405 283 374T227 294Q217 271 202 213T187 119"],112:[442,194,511,6,518,"81 278Q75 284 75 287Q93 379 131 417Q154 442 189 442Q222 440 243 423T272 382L280 390Q335 442 389 442Q446 442 482 398T518 284Q518 212 480 137T375 19Q321 -10 291 -10H282H278Q237 -10 204 28L202 32L181 -51Q160 -135 160 -139Q160 -147 205 -148H230Q236 -155 236 -157T233 -175Q230 -187 227 -190T214 -194Q211 -194 202 -194T169 -193T108 -192Q40 -192 21 -194H13Q6 -187 6 -183T9 -167Q13 -153 16 -151T39 -148Q73 -147 78 -136Q82 -128 139 104Q199 337 199 347Q202 362 202 372Q202 406 182 406Q169 406 159 391Q145 374 132 328T117 280T98 278H81ZM221 111Q234 26 286 26Q307 26 336 47T385 116Q398 147 416 217T435 332Q435 354 433 361Q420 405 383 405Q333 405 279 326L273 317L221 111"],113:[442,194,460,101,504,"228 -11Q172 -11 137 33T101 147Q101 205 125 266T201 377T318 441Q322 442 333 442Q388 442 420 394L429 403Q439 413 455 423T481 437T494 442Q498 442 501 439T504 434Q504 425 435 149Q364 -135 364 -139Q364 -147 409 -148H434Q440 -155 440 -157T437 -175Q433 -191 429 -193Q425 -194 418 -194Q416 -194 406 -194T372 -193T309 -192Q259 -192 233 -192T204 -193Q190 -193 190 -184Q190 -181 192 -169Q196 -153 199 -151T219 -148Q266 -148 277 -141Q283 -137 305 -51L325 29L316 22Q270 -11 228 -11ZM397 323Q397 329 394 340T385 367T365 394T333 405Q302 405 271 372Q249 349 235 316T203 215Q184 135 184 108V100Q184 71 191 56Q204 26 235 26Q267 26 300 57T344 112Q347 117 372 217T397 323"],114:[442,11,422,75,484,"81 278Q75 284 75 289Q77 301 89 339Q122 442 183 442Q219 442 241 425T271 384L283 396Q327 442 384 442Q424 442 454 421T484 362Q484 327 464 312T424 296Q407 296 396 305T385 331Q385 352 394 365T414 384T424 390Q409 405 378 405Q322 405 276 315L268 300L234 161Q200 25 196 16Q182 -11 152 -11T120 18Q120 23 159 181Q199 343 199 346Q202 360 202 372Q202 405 182 405Q164 405 150 377T128 316T117 280Q115 278 98 278H81"],115:[442,11,409,76,418,"153 285Q153 349 197 395T311 442Q355 442 386 420T418 356Q418 321 401 308T365 294Q336 294 331 326Q331 336 334 345T343 359T353 368T362 374L366 376Q365 379 362 383T344 396T308 404Q265 404 246 377T226 325T244 289T287 275T339 258T383 212Q395 188 395 163Q395 132 379 95T333 32Q279 -11 207 -11Q154 -11 115 13T76 86Q76 108 83 123T102 145T121 153T135 156Q154 156 164 145T175 117Q175 82 142 66L132 62Q131 62 131 61Q131 57 139 49T166 34T210 26Q250 26 277 44T312 83T321 123Q321 153 301 166T248 185T204 198Q176 211 162 241Q153 258 153 285"],116:[626,11,332,87,373,"94 385Q87 392 87 395Q87 399 90 411T95 425Q97 430 103 430T149 431H196L215 511Q218 521 222 539T228 565T234 585T242 603T251 615T264 623T281 626Q311 626 315 597Q315 591 296 513T275 433Q275 431 320 431H366Q373 424 373 420Q373 398 360 385H263L189 86Q188 80 188 61V54Q188 29 201 27Q213 23 229 30Q253 37 276 66T316 138Q321 149 324 151T342 153H347Q364 153 364 146T360 130Q331 63 290 26T202 -11Q158 -11 135 18T111 81Q111 93 129 168T166 314L184 383Q184 385 139 385H94"],117:[441,11,537,75,570,"75 287Q75 299 89 333T135 404T205 441Q246 441 269 420T293 357Q292 338 259 245T225 95Q225 26 274 26Q301 26 324 43T358 77T369 99Q369 102 406 249T446 404Q460 431 490 431T522 402Q522 394 485 245T446 89Q443 74 443 56Q443 28 461 26Q487 26 507 86Q524 130 524 146Q524 147 530 153H547Q570 153 570 144Q570 138 561 109T544 62Q530 29 512 12Q492 -11 454 -11Q429 -9 410 2T385 23T376 41L363 28Q350 16 325 3T269 -10Q204 -10 176 25T148 108Q148 161 184 262T221 383Q221 405 206 405Q178 405 158 375T128 313T116 279Q115 278 97 278H81Q75 284 75 287"],118:[443,10,460,75,492,"387 386Q387 407 406 425T445 443Q466 443 479 423T492 371Q492 330 473 253Q411 18 307 -8Q298 -10 279 -10Q208 -10 179 26T149 114Q149 162 185 261T221 384Q221 405 206 405Q177 405 157 375T128 313T116 279Q115 278 97 278H81Q75 284 75 287T79 304T93 342T119 388T158 425T210 441H218Q243 441 268 421T293 357Q292 337 259 245T226 102Q226 26 285 26Q328 26 360 72T422 237Q429 265 429 290Q428 324 408 349T387 386"],119:[443,11,664,75,696,"591 386Q591 407 610 425T649 443Q670 443 683 423T696 371Q696 327 672 232T621 85Q575 -11 493 -11Q469 -11 449 -6T418 8T398 24T386 38L382 43Q347 -10 293 -10H286Q221 -10 186 21T150 115Q150 164 185 262T221 384Q221 405 206 405Q177 405 157 375T128 313T116 279Q115 278 97 278H81Q75 284 75 287T79 304T93 342T119 388T158 425T210 441H218Q243 441 268 421T293 357Q292 336 260 246T227 108Q227 26 292 26H295Q332 26 361 93L366 103V119Q366 122 367 133T369 150Q372 167 401 282T433 404Q446 431 477 431Q507 431 509 402Q509 396 500 358T474 254T446 140Q444 126 444 104V92Q444 66 459 46T502 26H505Q527 28 545 43T577 88T602 149T623 226Q633 265 633 290Q632 324 612 349T591 386"],120:[442,11,464,58,513,"275 356Q275 383 262 394T233 405Q196 405 166 371T121 289Q119 280 116 279T98 278H81Q77 282 76 283T75 288T78 300Q88 332 109 363T153 411Q195 442 235 442Q306 442 333 386Q373 442 427 442Q461 442 487 421T513 364T494 312T453 296Q436 296 425 305T414 331Q414 352 424 366T446 386L456 390Q448 404 421 404H418Q382 404 358 341Q355 332 328 227T298 105Q295 90 295 75Q295 26 339 26Q365 26 388 43T424 82T444 123T451 146L457 153H474Q490 153 493 152T496 144Q496 133 486 110T456 58T404 10T333 -11Q276 -11 237 45Q197 -11 146 -11Q108 -11 83 10T58 67Q58 99 76 117T119 135Q136 135 147 124T158 96Q158 89 157 85Q149 57 125 45L115 41Q125 26 151 26Q171 26 187 45T214 93Q217 102 244 210T273 330Q275 339 275 356"],121:[441,205,486,75,522,"75 287Q75 299 89 333T135 404T205 441Q246 441 269 420T293 357Q292 338 259 245T225 95Q225 26 274 26Q325 26 367 93L405 245Q442 393 446 404Q460 431 490 431T522 402Q522 400 416 -24Q389 -102 327 -153T196 -205Q152 -205 122 -181T91 -119Q91 -84 110 -67T152 -49Q170 -49 180 -60T191 -87Q191 -108 174 -128Q167 -134 157 -138T146 -144Q155 -153 159 -156T173 -163T199 -167Q229 -167 255 -149T297 -105T325 -52T342 -6T347 15Q315 -10 269 -10Q204 -10 176 25T148 108Q148 161 184 262T221 383Q221 405 206 405Q178 405 158 375T128 313T116 279Q115 278 97 278H81Q75 284 75 287"],122:[442,11,409,54,466,"160 317Q158 317 155 317Q136 317 136 324Q136 351 171 396T260 442Q292 442 321 410T365 375H369Q384 375 404 408L425 441Q427 442 444 442H460Q466 436 466 434Q466 419 426 367Q387 314 294 222T178 105L170 95L181 94Q198 93 236 81T295 68Q328 68 356 89T395 141Q398 150 401 151T419 153Q441 153 441 144Q441 110 394 50T282 -11Q251 -11 221 23T171 57Q157 57 143 47T121 26T104 3T95 -10Q93 -11 76 -11H60Q54 -5 54 -2Q54 3 61 14Q103 88 233 215Q349 329 349 338L302 351Q269 362 247 362Q227 362 212 356T192 342T183 327T178 320Q175 317 160 317"],126:[318,-208,511,247,571,"266 208Q262 208 255 215T247 228Q247 233 250 236T274 259Q335 318 369 318Q394 318 420 292T464 265Q485 265 516 291T550 318Q554 318 562 311T571 297Q570 293 551 273T502 231T451 209H447Q421 209 396 235T355 261Q334 261 301 235T266 208"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js deleted file mode 100644 index cdece0f..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{768:[697,-500,0,-222,-74,"-222 651Q-222 668 -206 682T-174 697Q-155 697 -145 680Q-140 671 -107 599T-74 526Q-74 522 -88 511T-107 500Q-109 500 -113 502T-167 568T-219 637Q-222 643 -222 651"],769:[697,-500,0,-173,39,"-148 500Q-154 500 -163 511T-173 528Q-173 529 -172 530V532Q-170 534 -97 610T-21 688Q-8 697 4 697Q19 697 29 688T39 663T30 638Q26 631 -50 573L-135 507Q-144 500 -148 500"],770:[694,-527,0,-251,17,"17 555Q17 549 3 538T-15 527Q-20 527 -41 554Q-53 569 -62 580L-97 625L-158 578Q-172 567 -188 555T-212 536L-221 529Q-225 527 -226 527Q-232 527 -238 533T-248 546L-251 553Q-251 559 -248 562Q-246 564 -169 628T-90 693T-86 694Q-81 694 -78 691Q17 563 17 555"],771:[668,-558,0,-264,60,"-245 558Q-249 558 -256 565T-264 578Q-264 583 -261 586T-237 609Q-176 668 -142 668Q-117 668 -91 642T-47 615Q-26 615 5 641T39 668Q43 668 51 661T60 647Q59 643 40 623T-9 581T-60 559H-64Q-90 559 -115 585T-156 611Q-177 611 -210 585T-245 558"],772:[589,-544,0,-282,54,"-275 544Q-282 548 -282 554Q-282 561 -279 573T-271 588Q-269 589 -111 589H-27H12Q38 589 46 587T54 578Q54 574 51 563T47 550Q45 546 32 545Q15 544 -118 544H-275"],774:[694,-515,0,-237,62,"-237 641Q-237 694 -218 694H-213Q-195 694 -195 684Q-195 683 -195 679T-197 667T-198 650Q-198 611 -176 589T-117 566Q-74 566 -34 597T23 678Q27 689 30 691T43 694Q62 694 62 684Q62 671 49 645T14 589T-46 537T-123 515Q-175 515 -206 550T-237 641"],775:[669,-548,0,-165,-41,"-165 599Q-162 631 -139 650T-93 669Q-65 669 -53 653T-41 620Q-41 593 -63 571T-116 548Q-134 548 -149 559T-165 599"],776:[669,-554,0,-251,45,"-251 601Q-251 626 -230 647T-180 669Q-139 669 -133 625Q-133 595 -155 575T-203 554Q-223 554 -237 567T-251 601ZM-72 599Q-72 632 -48 650T-2 669Q18 669 31 657T45 623Q45 592 22 573T-25 554Q-68 554 -72 599"],778:[716,-542,0,-199,3,"-199 610Q-199 654 -161 685T-79 716Q-39 716 -16 693Q3 674 3 647Q3 607 -34 575T-118 542Q-199 542 -199 610ZM-41 631T-41 655T-83 679H-89Q-129 679 -142 656Q-146 650 -151 632T-156 604Q-156 578 -113 578H-108Q-94 578 -86 579T-69 586T-52 605Q-41 631 -41 655"],779:[697,-503,0,-248,65,"-217 503Q-221 503 -234 510T-248 523Q-248 528 -205 602Q-200 610 -192 623T-180 644T-170 661T-159 676T-151 686T-142 694T-134 696Q-132 697 -121 697Q-88 694 -88 664Q-88 652 -97 640T-152 574Q-214 504 -217 503ZM-64 503Q-68 503 -81 510T-95 523Q-95 528 -52 602Q-47 610 -39 623T-27 644T-17 661T-6 676T2 686T11 694T19 696Q21 697 32 697Q65 694 65 664Q65 652 56 640T1 574Q-61 504 -64 503"],780:[638,-502,0,-236,29,"11 637Q16 637 22 624T29 607Q29 606 27 602Q26 600 -47 552T-125 502H-127Q-133 502 -184 553Q-236 602 -236 608Q-236 612 -224 625T-206 638L-202 637L-196 632Q-190 628 -179 620T-158 603L-116 570Q-109 572 -52 604T11 637"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/CombDiacritMarks.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js deleted file mode 100644 index 2deb99f..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{8211:[285,-248,511,91,554,"98 248Q91 252 91 259Q91 279 100 284Q102 285 324 285H442H500Q536 285 545 283T554 274Q554 260 548 254Q546 250 538 249Q520 248 319 248H98"],8212:[285,-248,1022,117,1038,"124 248Q117 252 117 259Q117 279 126 284Q128 285 579 285T1033 284Q1037 280 1037 278Q1038 276 1038 274Q1038 253 1029 250Q1026 248 575 248H124"],8216:[694,-379,307,197,362,"249 379Q228 379 213 396T197 448Q197 533 271 627L278 635Q286 643 295 652T314 671T332 687T344 694Q349 694 355 685T362 671Q362 668 345 654T301 608T256 537Q238 493 240 491Q241 491 245 493T258 498T275 500Q296 500 311 488T326 454Q326 426 304 403T249 379"],8217:[694,-378,307,212,377,"250 620Q250 647 272 670T325 694Q348 694 362 677T377 633V624Q377 566 343 506T275 412T231 379Q226 379 220 388T213 401T232 421T279 472T323 547Q335 573 335 582L331 580Q327 578 318 576T300 573Q277 573 264 585T250 620"],8220:[694,-379,514,243,606,"295 379Q274 379 259 396T243 448Q243 533 317 627Q326 638 354 666T391 694Q395 694 402 686T409 673Q409 668 392 654T348 608T302 537Q284 493 286 491Q287 491 291 493T304 498T321 500Q342 500 357 488T372 454Q372 426 350 403T295 379ZM492 379Q471 379 456 396T440 448Q440 533 514 627Q523 638 551 666T588 694Q592 694 599 685T606 672T589 654T544 608T499 537Q481 493 483 491Q484 491 488 493T501 498T518 500Q539 500 554 488T569 454Q569 426 547 403T492 379"],8221:[694,-379,514,176,538,"214 620Q214 647 236 670T289 694Q312 694 326 677T341 633V624Q341 588 327 550T294 482T253 428T216 392T196 379Q191 379 184 388T176 401Q176 404 195 421T243 472T287 547Q299 576 299 582L295 580Q291 578 282 576T264 573Q241 573 228 585T214 620ZM411 620Q411 647 433 670T486 694Q509 694 523 677T538 633V624Q538 588 524 550T491 482T450 428T413 392T393 379Q388 379 381 388T373 401Q373 404 392 421T440 472T484 547Q496 576 496 582L492 580Q488 578 479 576T461 573Q438 573 425 585T411 620"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/GeneralPunctuation.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js deleted file mode 100644 index c652202..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{915:[680,0,627,54,705,"337 46Q339 46 342 46Q360 46 363 45T367 34Q367 13 359 5Q356 0 343 0Q339 0 320 0T268 1T196 2Q98 2 72 0H61Q54 7 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62L194 200Q229 337 264 477T299 623Q299 630 292 631T248 634Q216 634 214 638Q213 641 213 646Q213 674 224 678Q226 680 462 680H698Q705 676 705 669Q705 665 691 557T675 447Q673 440 652 440H637Q630 445 630 451Q630 452 632 467T636 504T638 543Q638 569 632 586T615 613T586 627T549 633T500 634Q491 634 487 634Q426 634 414 633T399 625Q397 621 327 342T257 59Q257 54 261 52T283 48T337 46"],916:[716,0,818,70,751,"409 0H145Q117 0 103 0T81 1T72 3T70 6Q70 9 310 354T557 707Q559 711 565 713Q570 716 587 716Q608 716 613 710Q616 704 683 358Q752 9 750 6Q750 2 747 2Q745 0 409 0ZM581 342L531 597Q530 597 352 342T174 85T403 84T632 86Q632 87 581 342"],920:[704,22,767,149,788,"149 237Q149 326 186 413T282 563T412 665T552 704Q619 704 667 678T741 611T777 528T788 444Q788 328 728 219T572 44T377 -22Q275 -22 212 50T149 237ZM691 480Q691 569 652 618T551 668Q458 668 367 562Q307 485 277 382T246 202Q246 147 260 108T298 51T343 24T387 16Q408 16 433 22T494 51T562 109T626 211T677 363Q691 423 691 480ZM302 275Q302 281 317 346T338 415L341 418H356Q380 418 380 408Q380 405 378 398T375 385Q375 384 480 384H585L588 398Q592 412 598 418H613Q636 418 636 409Q636 406 621 340Q617 326 612 306Q603 272 598 267L597 266H582Q558 266 558 276Q558 279 560 286T563 299Q563 300 458 300H353L350 286Q346 272 340 266H325Q302 266 302 275"],923:[716,0,692,58,646,"71 0Q58 0 58 11Q58 33 68 43Q71 46 77 46Q106 46 128 59T156 79T173 104Q174 106 255 256T416 556T497 707Q502 716 519 716H525Q543 716 547 711Q550 707 561 398T572 65Q573 57 574 54T587 49T623 46Q646 46 646 36Q646 35 643 23Q642 21 641 17T640 12T639 8T638 5T636 3T633 1T629 1T624 0Q622 0 612 0T578 1T514 2Q466 2 434 2T398 1Q381 1 381 11Q381 13 383 23Q387 40 390 43T406 46Q460 46 472 63L464 298Q457 533 455 536V537Q452 537 335 317T214 90Q211 80 211 75Q211 53 244 47Q246 47 251 47T258 46Q270 46 270 34Q270 33 268 19Q264 6 258 0H247Q185 2 143 2Q77 2 71 0"],926:[678,0,664,74,755,"243 668Q243 670 250 677H640Q661 677 687 677T719 678Q741 678 747 676T754 667T740 595T726 522Q725 521 724 520T723 517T720 516T714 515T704 514Q690 514 685 515T680 525Q680 531 683 543Q690 578 690 590V597H686Q670 600 468 600Q282 599 275 596Q267 591 251 539Q246 521 243 518T228 514H224Q200 511 200 525Q200 526 220 594T243 668ZM535 277Q535 282 538 296T543 312Q543 314 411 314H278L277 310Q277 309 272 291T266 272Q264 267 245 267Q237 267 233 268T228 269T225 272T222 277L241 354Q245 368 250 389Q261 432 266 437L267 438H299Q306 431 306 428Q306 426 306 424T304 417T302 409L297 391H430L562 392L567 412Q572 431 579 438H611Q615 434 616 432L618 430Q618 423 599 352Q581 275 577 270Q574 267 568 267H558Q535 267 535 277ZM81 0Q74 4 74 11Q74 14 89 89T106 168Q112 174 127 174Q138 174 142 174T148 171T151 164Q151 163 147 143Q140 101 139 92Q139 81 140 81Q143 78 265 78H349H484Q518 78 532 78T555 80T566 83T570 91Q575 103 589 145Q595 166 598 170T611 174H617H622Q641 174 641 163Q641 162 619 86T595 7Q593 2 584 1T530 0H334H81"],928:[680,0,743,54,859,"248 634Q216 634 214 638Q213 641 213 646Q213 674 224 678Q226 680 539 680H852Q859 676 859 669Q859 653 852 639Q848 634 818 634Q782 633 771 630T754 618L719 480Q684 343 649 203T614 57Q614 50 621 49T666 46Q697 46 699 40Q701 37 698 21Q693 3 689 1Q686 0 677 0Q673 0 657 0T611 1T546 2Q453 2 428 0H418Q411 7 411 11Q411 27 418 41Q422 46 452 46Q488 47 499 50T516 62Q518 67 553 209T624 491T660 632Q660 634 530 634H400L399 630Q399 629 390 593T363 484T328 344Q257 60 257 57Q257 50 264 49T309 46Q340 46 342 40Q344 37 341 21Q336 3 332 1Q329 0 320 0Q316 0 300 0T254 1T189 2Q96 2 71 0H61Q54 7 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62L194 200Q229 337 264 477T299 623Q299 630 292 631T248 634"],931:[683,1,716,80,782,"87 0Q80 7 80 11Q80 14 81 15Q81 16 231 161Q381 304 381 305L310 475Q239 646 239 648T242 662T247 677Q247 681 251 681Q253 683 514 683H775Q780 678 782 674Q782 668 767 559T751 448Q747 443 729 443Q715 443 711 444T707 453Q707 454 710 479T713 529Q713 555 709 573T691 604T663 622T619 632T564 636T492 637H457Q356 637 356 635Q358 634 417 489T478 343Q478 340 474 335T436 297T330 196L185 57L294 56H339Q450 56 499 65T581 109Q603 131 620 164T646 221T657 248Q660 250 675 250Q699 253 699 239L681 188Q663 138 643 81T617 9Q614 2 605 1T552 -1Q541 -1 475 -1T348 0H87"],933:[706,0,767,213,832,"213 543Q213 576 262 640T379 705Q507 705 507 531Q507 514 505 492L504 482L514 505Q524 528 543 561T587 626T653 682T738 705Q783 705 807 675T832 594Q832 535 808 535H802Q780 535 780 542Q780 543 781 550T783 563Q783 589 765 606T716 623Q588 623 521 354Q521 353 485 208T448 59Q448 46 529 46Q559 46 559 36Q559 31 556 22Q552 4 547 1Q546 1 544 1T538 0Q534 0 514 0T458 1T380 2Q271 2 241 0H228Q222 6 222 9T224 27Q228 40 234 46H257Q322 46 336 52Q346 54 349 62Q351 64 372 145T416 324T445 461Q446 471 446 506Q446 528 445 541T436 577T410 610T361 622Q319 622 295 600T261 552Q257 539 249 536Q245 535 233 535T218 536L214 540V541Q213 542 213 543"],934:[683,0,716,159,729,"467 624Q467 631 454 633T400 637Q361 637 359 643Q358 644 358 649Q358 673 369 682Q371 683 387 683Q430 681 532 681Q569 681 600 681T650 682T672 683Q689 683 689 672Q689 670 686 658T681 643Q679 637 640 637Q595 636 579 633T558 617Q556 613 547 575T538 533Q538 532 541 532Q555 532 582 524T643 500T703 450T728 374Q728 311 673 256Q621 203 550 177T445 151Q443 151 441 149Q440 146 430 104T419 59Q419 46 500 46Q530 46 530 36Q530 31 527 22Q523 4 518 1Q517 1 515 1T510 0Q505 0 486 0T431 1T355 2Q248 2 218 0H205Q199 6 199 9T201 27Q205 40 211 46H234Q300 46 313 52Q323 54 326 62Q328 64 334 86T344 129L349 150Q349 151 346 151Q333 151 307 158T245 182T185 231T159 309V314Q159 325 162 338T174 374T207 421T264 468Q334 518 435 531L446 533L457 577Q467 620 467 624ZM436 494Q429 494 417 492T373 477T319 442Q288 408 274 362T260 284Q260 257 269 239T298 210T328 196T359 188L436 494ZM626 398Q626 438 605 460T539 493L528 495Q527 495 489 342T451 188Q455 188 462 189T490 197T528 212T566 241T598 285Q626 341 626 398"],936:[683,0,767,207,824,"494 626Q493 627 493 628T491 629T489 631T484 632T477 634T465 635T449 636T426 637Q387 637 385 643Q384 644 384 649Q384 673 395 682Q397 683 413 683Q456 681 558 681Q595 681 626 681T676 682T698 683Q715 683 715 672Q715 670 712 658T707 643Q705 637 666 637Q621 636 605 633T584 617L478 193Q486 195 498 199T542 229T597 291Q626 335 646 415Q669 500 694 523T759 546H777H801Q824 546 824 536Q822 509 809 509Q762 509 735 406Q707 300 642 234T481 153L467 151L456 106Q445 62 445 59Q445 46 526 46Q556 46 556 36Q556 31 553 22Q549 4 544 1Q543 1 541 1T536 0Q531 0 512 0T457 1T381 2Q274 2 244 0H231Q225 6 225 9T227 27Q231 40 237 46H260Q326 46 339 52Q349 54 352 62Q354 64 365 106T376 151Q374 152 371 152Q360 153 347 156T310 172T270 201T239 250T225 323Q225 359 235 405T245 470T239 498T226 507T213 510T207 520Q207 528 209 534T215 544L218 546H257Q305 546 314 540Q338 530 338 485Q338 455 326 402T313 312Q313 218 379 193Q386 192 387 192Q387 196 441 408Q494 621 494 626"],937:[705,0,716,100,759,"183 393Q183 451 206 502T267 590T348 652T435 691T510 704Q513 705 525 705Q631 705 695 650T759 505Q759 454 732 397T672 299T593 203T527 117Q503 81 503 76Q503 75 521 75Q576 75 588 77Q589 77 592 78T595 79T598 80T602 82T605 86T609 92T614 101T620 112T627 127T636 147Q646 169 649 170Q651 172 667 172H682Q689 167 689 162Q689 158 654 81T617 2Q614 0 530 0H447Q441 5 441 9T444 28Q461 85 498 158T569 285T628 408T654 534Q654 592 621 630T527 668Q488 668 448 649T371 593T310 487T286 330Q286 302 290 247T294 137Q294 34 280 6Q278 1 268 1T190 0H107Q100 5 100 12Q100 24 103 94T108 165Q110 172 131 172H146Q150 169 153 165L152 141V116Q152 84 153 82Q156 75 217 75H252V84Q252 126 218 231T183 393"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/GreekAndCoptic.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js deleted file mode 100644 index 4b3b4c1..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{305:[441,10,307,75,341,"75 287Q75 292 82 313T103 362T142 413T196 441H214Q248 441 270 419T293 357Q292 338 289 330T245 208Q193 72 193 46Q193 26 209 26Q228 26 247 43Q273 71 292 136Q295 148 297 150T311 153H317Q327 153 330 153T337 150T340 143Q340 133 330 105T292 41T228 -8Q220 -10 204 -10Q160 -10 141 15T122 71Q122 98 171 227T221 384Q221 396 218 400T203 405Q175 403 156 374T128 312T116 279Q115 278 97 278H81Q75 284 75 287"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/LatinExtendedA.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js deleted file mode 100644 index ed2b99b..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{567:[442,204,332,-32,327,"75 284T75 287T81 305T101 343T133 389T180 426T240 442Q273 440 300 420T327 350V332L278 134Q267 92 253 37T233 -45T225 -73Q208 -123 162 -163T54 -204Q8 -204 -15 -181Q-32 -164 -32 -140Q-32 -112 -14 -96T27 -79Q48 -79 57 -91T67 -114Q67 -146 39 -166L44 -167H59H60Q112 -167 145 -74Q148 -65 198 134T251 347Q252 353 252 370Q252 382 251 388T245 399T230 405Q204 405 175 378Q157 360 145 337T126 298T117 280T98 278H81Q75 284 75 287"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/LatinExtendedB.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js deleted file mode 100644 index f6f17cd..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{8463:[695,13,540,42,562,"150 475Q147 475 118 466T82 457Q73 457 64 467T54 487Q54 490 55 492Q63 506 64 506Q67 512 118 526Q162 541 169 546Q173 559 175 575Q181 596 181 604Q181 613 166 617Q164 617 153 618T135 619Q119 619 114 621T109 630Q109 636 114 656T122 681Q125 685 202 688Q272 695 286 695Q304 695 304 684Q304 682 291 628L278 577L386 612Q466 635 476 635T492 627T499 607Q499 593 489 586Q485 583 373 546L262 512Q262 511 248 455T233 397T236 397T244 404Q295 441 357 441Q405 441 445 417T485 333Q485 284 449 178T412 58T426 44Q447 44 466 68Q485 87 500 130L509 152H531H543Q562 152 562 144Q562 128 546 93T494 23T415 -13Q385 -13 359 3T322 44Q318 52 318 77Q318 99 352 196T386 337Q386 386 346 386Q318 386 286 370Q267 361 245 338T211 292Q207 287 193 235T162 113T138 21Q128 7 122 4Q105 -12 83 -12Q66 -12 54 -2T42 26Q42 45 98 257L151 475H150"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/LetterlikeSymbols.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js deleted file mode 100644 index 23300f9..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"]={directory:"Main/Italic",family:"MathJax_Main",id:"MJMAINI",style:"italic",Ranges:[[32,127,"BasicLatin"],[256,383,"LatinExtendedA"],[384,591,"LatinExtendedB"],[768,879,"CombDiacritMarks"],[880,1023,"GreekAndCoptic"],[8192,8303,"GeneralPunctuation"],[8448,8527,"LetterlikeSymbols"],[8704,8959,"MathOperators"]],163:[714,11,769,88,699,"699 578Q699 473 635 473Q597 473 595 508Q595 559 654 569V576Q654 619 637 648T581 677Q545 677 513 647T463 561Q460 554 437 464T414 371Q414 370 458 370H502Q508 364 508 362Q505 334 495 324H402L382 241Q377 224 373 206T366 180T361 163T358 151T354 142T350 133T344 120Q340 112 338 107T336 101L354 90Q398 63 422 54T476 44Q515 44 539 73T574 133Q578 144 580 146T598 148Q622 148 622 139Q622 138 620 130Q602 74 555 32T447 -11Q395 -11 317 38L294 51Q271 28 233 9T155 -10Q117 -10 103 5T88 39Q88 73 126 106T224 139Q236 139 247 138T266 134L273 132Q275 132 302 239L323 324H259Q253 330 253 332Q253 350 265 370H300L334 371L355 453Q356 457 360 477T366 501T372 522T379 545T387 565T397 587T409 606T425 627Q453 664 497 689T583 714Q640 714 669 676T699 578ZM245 76Q211 85 195 85Q173 85 158 71T142 42Q142 26 160 26H163Q211 30 245 76"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js deleted file mode 100644 index f196127..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Main-italic"],{8710:[716,0,818,70,751,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/MathOperators.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js deleted file mode 100644 index fe9d5f0..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{33:[716,-1,278,78,199,"78 661Q78 682 96 699T138 716T180 700T199 661Q199 654 179 432T158 206Q156 198 139 198Q121 198 119 206Q118 209 98 431T78 661ZM79 61Q79 89 97 105T141 121Q164 119 181 104T198 61Q198 31 181 16T139 1Q114 1 97 16T79 61"],34:[694,-379,500,34,372,"34 634Q34 659 50 676T93 694Q121 694 144 668T168 579Q168 525 146 476T101 403T73 379Q69 379 60 388T50 401Q50 404 62 417T88 448T116 500T131 572Q131 584 130 584T125 581T112 576T94 573Q69 573 52 590T34 634ZM238 634Q238 659 254 676T297 694Q325 694 348 668T372 579Q372 525 350 476T305 403T277 379Q273 379 264 388T254 401Q254 404 266 417T292 448T320 500T335 572Q335 584 334 584T329 581T316 576T298 573Q273 573 256 590T238 634"],35:[694,194,833,56,778,"56 347Q56 360 70 367H313L355 524Q394 676 401 686Q406 694 416 694Q434 694 436 676Q436 672 396 522Q355 374 355 369L354 367H543L585 524Q626 679 630 685Q636 694 646 694Q653 694 659 689T665 678Q665 668 626 522Q585 374 585 369L584 367H762Q777 359 777 347Q777 334 767 331T722 327H667H572L552 251L531 174Q531 173 647 173H720Q756 173 766 170T777 153T762 133H519L477 -24Q436 -179 432 -185Q426 -194 416 -194Q409 -194 403 -189T397 -177Q397 -167 436 -21Q477 125 477 131L478 133H289L247 -24Q206 -179 202 -185Q196 -194 186 -194Q179 -194 173 -189T167 -177Q167 -167 206 -21Q247 125 247 131L248 133H70Q56 140 56 153Q56 168 72 173H260L280 249L301 326Q301 327 186 327H72Q56 332 56 347ZM531 326Q531 327 437 327H342L322 251L301 174Q301 173 395 173H490L510 249L531 326"],36:[750,56,500,55,444,"162 187Q162 164 146 149T109 133H103V130Q108 115 115 105Q122 92 131 82T150 64T170 52T190 44T206 40T220 37L227 36V313Q190 320 162 335Q116 358 86 404T55 508Q55 567 85 614T165 685Q186 696 225 704H227V750H273V704L286 703Q369 690 413 631Q441 588 444 531Q444 514 443 509Q439 490 425 479T391 468Q368 468 353 483T337 522Q337 546 353 560T390 575L394 576V578Q386 599 372 614T342 637T314 649T288 656L273 658V408L288 405Q329 394 355 376Q396 348 420 300T444 199Q444 130 408 76T313 1Q286 -9 276 -9H273V-56H227V-10H221Q202 -6 193 -4T155 11T108 41T74 94T55 176V182Q55 227 95 238Q103 240 108 240Q129 240 145 226T162 187ZM225 657Q219 657 204 651T169 632T135 594T121 538Q121 512 131 491T156 457T187 435T213 423T227 420V539Q227 657 225 657ZM378 169Q378 230 339 265T274 301Q273 301 273 169V37Q324 50 351 87T378 169"],37:[750,56,833,56,777,"465 605Q428 605 394 614T340 632T319 641Q332 608 332 548Q332 458 293 403T202 347Q145 347 101 402T56 548Q56 637 101 693T202 750Q241 750 272 719Q359 642 464 642Q580 642 650 732Q662 748 668 749Q670 750 673 750Q682 750 688 743T693 726Q178 -47 170 -52Q166 -56 160 -56Q147 -56 142 -45Q137 -36 142 -27Q143 -24 363 304Q469 462 525 546T581 630Q528 605 465 605ZM207 385Q235 385 263 427T292 548Q292 617 267 664T200 712Q193 712 186 709T167 698T147 668T134 615Q132 595 132 548V527Q132 436 165 403Q183 385 203 385H207ZM500 146Q500 234 544 290T647 347Q699 347 737 292T776 146T737 0T646 -56Q590 -56 545 0T500 146ZM651 -18Q679 -18 707 24T736 146Q736 215 711 262T644 309Q637 309 630 306T611 295T591 265T578 212Q577 200 577 146V124Q577 -18 647 -18H651"],38:[716,22,778,42,727,"156 540Q156 620 201 668T302 716Q354 716 377 671T401 578Q401 505 287 386L274 373Q309 285 416 148L429 132L437 142Q474 191 543 309L562 341V349Q562 368 541 376T498 385H493V431H502L626 428Q709 428 721 431H727V385H712Q688 384 669 379T639 369T618 354T603 337T591 316T578 295Q537 223 506 176T464 117T454 104Q454 102 471 85T497 62Q543 24 585 24Q618 24 648 48T682 113V121H722V112Q721 94 714 75T692 32T646 -7T574 -22Q491 -19 414 42L402 51L391 42Q312 -22 224 -22Q144 -22 93 25T42 135Q42 153 46 169T55 197T74 225T96 249T125 278T156 308L195 347L190 360Q185 372 182 382T174 411T165 448T159 491T156 540ZM361 576Q361 613 348 646T305 679Q272 679 252 649T232 572Q232 497 255 426L259 411L267 420Q361 519 361 576ZM140 164Q140 103 167 64T240 24Q271 24 304 36T356 61T374 77Q295 156 235 262L220 292L210 310L193 293Q177 277 169 268T151 229T140 164"],39:[694,-379,278,78,212,"78 634Q78 659 95 676T138 694Q166 694 189 668T212 579Q212 525 190 476T146 403T118 379Q114 379 105 388T95 401Q95 404 107 417T133 448T161 500T176 572Q176 584 175 584T170 581T157 576T139 573Q114 573 96 590T78 634"],42:[750,-320,500,64,436,"215 721Q216 732 225 741T248 750Q263 750 273 742T284 721L270 571L327 613Q383 654 388 657T399 660Q412 660 423 650T435 624T424 600T376 575Q363 569 355 566L289 534L355 504L424 470Q435 462 435 447Q435 431 424 420T399 409Q393 409 388 412T327 456L270 498L277 423L284 348Q280 320 250 320T215 348L229 498L172 456Q116 415 111 412T100 409Q87 409 76 420T64 447Q64 461 75 470L144 504L210 534L144 566Q136 570 122 576Q83 593 74 600T64 624Q64 639 75 649T100 660Q106 660 111 657T172 613L229 571Q229 578 222 643T215 721"],45:[252,-179,333,11,277,"11 179V252H277V179H11"],63:[705,-1,472,55,417,"226 668Q190 668 162 656T124 632L114 621Q116 621 119 620T130 616T145 607T157 591T162 567Q162 544 147 529T109 514T71 528T55 566Q55 625 100 661T199 704Q201 704 210 704T224 705H228Q281 705 320 692T378 656T407 612T416 567Q416 503 361 462Q267 395 247 303Q242 279 242 241V224Q242 205 239 202T222 198T205 201T202 218V249Q204 320 220 371T255 445T292 491T315 537Q317 546 317 574V587Q317 604 315 615T304 640T277 661T226 668ZM162 61Q162 89 180 105T224 121Q247 119 264 104T281 61Q281 31 264 16T222 1Q197 1 180 16T162 61"],64:[705,11,778,56,722,"56 347Q56 429 86 498T164 612T270 680T386 705Q522 705 622 603T722 349Q722 126 608 126Q541 126 513 176Q512 177 512 179T510 182L509 183Q508 183 503 177T487 163T464 146T429 132T385 126Q311 126 251 186T190 347Q190 448 251 508T385 568Q426 568 460 548T509 511T531 479H555Q580 479 582 478Q586 477 587 468Q588 454 588 338V260Q588 200 593 182T619 163Q641 163 655 178T674 223T680 273T682 325V330Q682 426 647 500Q611 569 544 618T388 668Q271 668 184 577T96 347Q96 216 180 121T396 26Q421 26 446 28T493 34T535 43T573 52T605 63T629 72T647 80T657 84H716Q722 78 722 74Q722 65 675 45T547 7T392 -11Q255 -11 156 90T56 347ZM274 347Q274 266 308 214T390 162Q420 162 449 182T498 235L504 245V449L498 459Q453 532 387 532Q347 532 311 483T274 347"],65:[716,0,750,32,717,"255 0Q240 3 140 3Q48 3 39 0H32V46H47Q119 49 139 88Q140 91 192 245T295 553T348 708Q351 716 366 716H376Q396 715 400 709Q402 707 508 390L617 67Q624 54 636 51T687 46H717V0H708Q699 3 581 3Q458 3 437 0H427V46H440Q510 46 510 64Q510 66 486 138L462 209H229L209 150Q189 91 189 85Q189 72 209 59T259 46H264V0H255ZM447 255L345 557L244 256Q244 255 345 255H447"],66:[683,0,708,28,651,"131 622Q124 629 120 631T104 634T61 637H28V683H229H267H346Q423 683 459 678T531 651Q574 627 599 590T624 512Q624 461 583 419T476 360L466 357Q539 348 595 302T651 187Q651 119 600 67T469 3Q456 1 242 0H28V46H61Q103 47 112 49T131 61V622ZM511 513Q511 560 485 594T416 636Q415 636 403 636T371 636T333 637Q266 637 251 636T232 628Q229 624 229 499V374H312L396 375L406 377Q410 378 417 380T442 393T474 417T499 456T511 513ZM537 188Q537 239 509 282T430 336L329 337H229V200V116Q229 57 234 52Q240 47 334 47H383Q425 47 443 53Q486 67 511 104T537 188"],67:[705,21,722,56,666,"56 342Q56 428 89 500T174 615T283 681T391 705Q394 705 400 705T408 704Q499 704 569 636L582 624L612 663Q639 700 643 704Q644 704 647 704T653 705H657Q660 705 666 699V419L660 413H626Q620 419 619 430Q610 512 571 572T476 651Q457 658 426 658Q322 658 252 588Q173 509 173 342Q173 221 211 151Q232 111 263 84T328 45T384 29T428 24Q517 24 571 93T626 244Q626 251 632 257H660L666 251V236Q661 133 590 56T403 -21Q262 -21 159 83T56 342"],68:[683,0,764,27,708,"130 622Q123 629 119 631T103 634T60 637H27V683H228Q399 682 419 682T461 676Q504 667 546 641T626 573T685 470T708 336Q708 210 634 116T442 3Q429 1 228 0H27V46H60Q102 47 111 49T130 61V622ZM593 338Q593 439 571 501T493 602Q439 637 355 637H322H294Q238 637 234 628Q231 624 231 344Q231 62 232 59Q233 49 248 48T339 46H350Q456 46 515 95Q561 133 577 191T593 338"],69:[680,0,681,25,652,"128 619Q121 626 117 628T101 631T58 634H25V680H597V676Q599 670 611 560T625 444V440H585V444Q584 447 582 465Q578 500 570 526T553 571T528 601T498 619T457 629T411 633T353 634Q266 634 251 633T233 622Q233 622 233 621Q232 619 232 497V376H286Q359 378 377 385Q413 401 416 469Q416 471 416 473V493H456V213H416V233Q415 268 408 288T383 317T349 328T297 330Q290 330 286 330H232V196V114Q232 57 237 52Q243 47 289 47H340H391Q428 47 452 50T505 62T552 92T584 146Q594 172 599 200T607 247T612 270V273H652V270Q651 267 632 137T610 3V0H25V46H58Q100 47 109 49T128 61V619"],70:[680,0,653,25,610,"128 619Q121 626 117 628T101 631T58 634H25V680H582V676Q584 670 596 560T610 444V440H570V444Q563 493 561 501Q555 538 543 563T516 601T477 622T431 631T374 633H334H286Q252 633 244 631T233 621Q232 619 232 490V363H284Q287 363 303 363T327 364T349 367T372 373T389 385Q407 403 410 459V480H450V200H410V221Q407 276 389 296Q381 303 371 307T348 313T327 316T303 317T284 317H232V189L233 61Q240 54 245 52T270 48T333 46H360V0H348Q324 3 182 3Q51 3 36 0H25V46H58Q100 47 109 49T128 61V619"],71:[705,22,785,56,735,"56 342Q56 428 89 500T174 615T283 681T391 705Q394 705 400 705T408 704Q499 704 569 636L582 624L612 663Q639 700 643 704Q644 704 647 704T653 705H657Q660 705 666 699V419L660 413H626Q620 419 619 430Q610 512 571 572T476 651Q457 658 426 658Q401 658 376 654T316 633T254 592T205 519T177 411Q173 369 173 335Q173 259 192 201T238 111T302 58T370 31T431 24Q478 24 513 45T559 100Q562 110 562 160V212Q561 213 557 216T551 220T542 223T526 225T502 226T463 227H437V273H449L609 270Q715 270 727 273H735V227H721Q674 227 668 215Q666 211 666 108V6Q660 0 657 0Q653 0 639 10Q617 25 600 42L587 54Q571 27 524 3T406 -22Q317 -22 238 22T108 151T56 342"],72:[683,0,750,25,724,"128 622Q121 629 117 631T101 634T58 637H25V683H36Q57 680 180 680Q315 680 324 683H335V637H302Q262 636 251 634T233 622L232 500V378H517V622Q510 629 506 631T490 634T447 637H414V683H425Q446 680 569 680Q704 680 713 683H724V637H691Q651 636 640 634T622 622V61Q628 51 639 49T691 46H724V0H713Q692 3 569 3Q434 3 425 0H414V46H447Q489 47 498 49T517 61V332H232V197L233 61Q239 51 250 49T302 46H335V0H324Q303 3 180 3Q45 3 36 0H25V46H58Q100 47 109 49T128 61V622"],73:[683,0,361,21,339,"328 0Q307 3 180 3T32 0H21V46H43Q92 46 106 49T126 60Q128 63 128 342Q128 620 126 623Q122 628 118 630T96 635T43 637H21V683H32Q53 680 180 680T328 683H339V637H317Q268 637 254 634T234 623Q232 620 232 342Q232 63 234 60Q238 55 242 53T264 48T317 46H339V0H328"],74:[683,22,514,25,465,"89 177Q115 177 133 160T152 112Q152 88 137 72T102 52Q99 51 101 49Q106 43 129 29Q159 15 190 15Q232 15 256 48T286 126Q286 127 286 142T286 183T286 238T287 306T287 378Q287 403 287 429T287 479T287 524T286 563T286 593T286 614V621Q281 630 263 633T182 637H154V683H166Q187 680 332 680Q439 680 457 683H465V637H449Q422 637 401 634Q393 631 389 623Q388 621 388 376T387 123Q377 61 322 20T194 -22Q188 -22 177 -21T160 -20Q96 -9 61 29T25 110Q25 144 44 160T89 177"],75:[683,0,778,25,736,"128 622Q121 629 117 631T101 634T58 637H25V683H36Q57 680 180 680Q315 680 324 683H335V637H313Q235 637 233 620Q232 618 232 462L233 307L379 449Q425 494 479 546Q518 584 524 591T531 607V608Q531 630 503 636Q501 636 498 636T493 637H489V683H499Q517 680 630 680Q704 680 716 683H722V637H708Q633 633 589 597Q584 592 495 506T406 419T515 254T631 80Q644 60 662 54T715 46H736V0H728Q719 3 615 3Q493 3 472 0H461V46H469Q515 46 515 72Q515 78 512 84L336 351Q332 348 278 296L232 251V156Q232 62 235 58Q243 47 302 46H335V0H324Q303 3 180 3Q45 3 36 0H25V46H58Q100 47 109 49T128 61V622"],76:[683,0,625,25,582,"128 622Q121 629 117 631T101 634T58 637H25V683H36Q48 680 182 680Q324 680 348 683H360V637H333Q273 637 258 635T233 622L232 342V129Q232 57 237 52Q243 47 313 47Q384 47 410 53Q470 70 498 110T536 221Q536 226 537 238T540 261T542 272T562 273H582V268Q580 265 568 137T554 5V0H25V46H58Q100 47 109 49T128 61V622"],77:[683,0,917,29,887,"132 622Q125 629 121 631T105 634T62 637H29V683H135Q221 683 232 682T249 675Q250 674 354 398L458 124L562 398Q666 674 668 675Q671 681 683 682T781 683H887V637H854Q814 636 803 634T785 622V61Q791 51 802 49T854 46H887V0H876Q855 3 736 3Q605 3 596 0H585V46H618Q660 47 669 49T688 61V347Q688 424 688 461T688 546T688 613L687 632Q454 14 450 7Q446 1 430 1T410 7Q409 9 292 316L176 624V606Q175 588 175 543T175 463T175 356L176 86Q187 50 261 46H278V0H269Q254 3 154 3Q52 3 37 0H29V46H46Q78 48 98 56T122 69T132 86V622"],78:[683,0,750,25,724,"42 46Q74 48 94 56T118 69T128 86V634H124Q114 637 52 637H25V683H232L235 680Q237 679 322 554T493 303L578 178V598Q572 608 568 613T544 627T492 637H475V683H483Q498 680 600 680Q706 680 715 683H724V637H707Q634 633 622 598L621 302V6L614 0H600Q585 0 582 3T481 150T282 443T171 605V345L172 86Q183 50 257 46H274V0H265Q250 3 150 3Q48 3 33 0H25V46H42"],79:[705,23,778,56,722,"56 340Q56 423 86 494T164 610T270 680T388 705Q521 705 621 601T722 341Q722 260 693 191T617 75T510 4T388 -22T267 3T160 74T85 189T56 340ZM467 647Q426 665 388 665Q360 665 331 654T269 620T213 549T179 439Q174 411 174 354Q174 144 277 61Q327 20 385 20H389H391Q474 20 537 99Q603 188 603 354Q603 411 598 439Q577 592 467 647"],80:[684,0,681,27,624,"130 622Q123 629 119 631T103 634T60 637H27V683H214Q237 683 276 683T331 684Q419 684 471 671T567 616Q624 563 624 489Q624 421 573 372T451 307Q429 302 328 301H234V181Q234 62 237 58Q245 47 304 46H337V0H326Q305 3 182 3Q47 3 38 0H27V46H60Q102 47 111 49T130 61V622ZM507 488Q507 514 506 528T500 564T483 597T450 620T397 635Q385 637 307 637H286Q237 637 234 628Q231 624 231 483V342H302H339Q390 342 423 349T481 382Q507 411 507 488"],81:[705,193,778,56,728,"56 341Q56 499 157 602T388 705Q521 705 621 601T722 341Q722 275 703 218T660 127T603 63T555 25T525 9Q524 8 524 8H523Q524 5 526 -1T537 -21T555 -47T581 -67T615 -76Q653 -76 678 -56T706 -3Q707 10 716 10Q721 10 728 5L727 -13Q727 -88 697 -140T606 -193Q563 -193 538 -166T498 -83Q483 -23 483 -8L471 -11Q459 -14 435 -18T388 -22Q254 -22 155 81T56 341ZM607 339Q607 429 586 496T531 598T461 649T390 665T318 649T248 598T192 496T170 339Q170 143 277 57Q301 39 305 39L304 42Q304 44 304 46Q301 53 301 68Q301 101 325 128T391 155Q454 155 495 70L501 58Q549 91 578 164Q607 234 607 339ZM385 18Q404 18 425 23T459 33T472 40Q471 47 468 57T449 88T412 115Q398 117 386 117Q367 117 353 102T338 67Q338 48 351 33T385 18"],82:[683,22,736,27,732,"130 622Q123 629 119 631T103 634T60 637H27V683H202H236H300Q376 683 417 677T500 648Q595 600 609 517Q610 512 610 501Q610 468 594 439T556 392T511 361T472 343L456 338Q459 335 467 332Q497 316 516 298T545 254T559 211T568 155T578 94Q588 46 602 31T640 16H645Q660 16 674 32T692 87Q692 98 696 101T712 105T728 103T732 90Q732 59 716 27T672 -16Q656 -22 630 -22Q481 -16 458 90Q456 101 456 163T449 246Q430 304 373 320L363 322L297 323H231V192L232 61Q238 51 249 49T301 46H334V0H323Q302 3 181 3Q59 3 38 0H27V46H60Q102 47 111 49T130 61V622ZM491 499V509Q491 527 490 539T481 570T462 601T424 623T362 636Q360 636 340 636T304 637H283Q238 637 234 628Q231 624 231 492V360H289Q390 360 434 378T489 456Q491 467 491 499"],83:[705,22,556,55,500,"55 507Q55 590 112 647T243 704H257Q342 704 405 641L426 672Q431 679 436 687T446 700L449 704Q450 704 453 704T459 705H463Q466 705 472 699V462L466 456H448Q437 456 435 459T430 479Q413 605 329 646Q292 662 254 662Q201 662 168 626T135 542Q135 508 152 480T200 435Q210 431 286 412T370 389Q427 367 463 314T500 191Q500 110 448 45T301 -21Q245 -21 201 -4T140 27L122 41Q118 36 107 21T87 -7T78 -21Q76 -22 68 -22H64Q61 -22 55 -16V101Q55 220 56 222Q58 227 76 227H89Q95 221 95 214Q95 182 105 151T139 90T205 42T305 24Q352 24 386 62T420 155Q420 198 398 233T340 281Q284 295 266 300Q261 301 239 306T206 314T174 325T141 343T112 367T85 402Q55 451 55 507"],84:[677,0,722,36,685,"36 443Q37 448 46 558T55 671V677H666V671Q667 666 676 556T685 443V437H645V443Q645 445 642 478T631 544T610 593Q593 614 555 625Q534 630 478 630H451H443Q417 630 414 618Q413 616 413 339V63Q420 53 439 50T528 46H558V0H545L361 3Q186 1 177 0H164V46H194Q264 46 283 49T309 63V339V550Q309 620 304 625T271 630H244H224Q154 630 119 601Q101 585 93 554T81 486T76 443V437H36V443"],85:[683,22,750,25,724,"128 622Q121 629 117 631T101 634T58 637H25V683H36Q57 680 180 680Q315 680 324 683H335V637H302Q262 636 251 634T233 622L232 418V291Q232 189 240 145T280 67Q325 24 389 24Q454 24 506 64T571 183Q575 206 575 410V598Q569 608 565 613T541 627T489 637H472V683H481Q496 680 598 680T715 683H724V637H707Q634 633 622 598L621 399Q620 194 617 180Q617 179 615 171Q595 83 531 31T389 -22Q304 -22 226 33T130 192Q129 201 128 412V622"],86:[683,22,750,19,730,"114 620Q113 621 110 624T107 627T103 630T98 632T91 634T80 635T67 636T48 637H19V683H28Q46 680 152 680Q273 680 294 683H305V637H284Q223 634 223 620Q223 618 313 372T404 126L490 358Q575 588 575 597Q575 616 554 626T508 637H503V683H512Q527 680 627 680Q718 680 724 683H730V637H723Q648 637 627 596Q627 595 515 291T401 -14Q396 -22 382 -22H374H367Q353 -22 348 -14Q346 -12 231 303Q114 617 114 620"],87:[683,22,1028,18,1009,"792 683Q810 680 914 680Q991 680 1003 683H1009V637H996Q931 633 915 598Q912 591 863 438T766 135T716 -17Q711 -22 694 -22Q676 -22 673 -15Q671 -13 593 231L514 477L435 234Q416 174 391 92T358 -6T341 -22H331Q314 -21 310 -15Q309 -14 208 302T104 622Q98 632 87 633Q73 637 35 637H18V683H27Q69 681 154 681Q164 681 181 681T216 681T249 682T276 683H287H298V637H285Q213 637 213 620Q213 616 289 381L364 144L427 339Q490 535 492 546Q487 560 482 578T475 602T468 618T461 628T449 633T433 636T408 637H380V683H388Q397 680 508 680Q629 680 650 683H660V637H647Q576 637 576 619L727 146Q869 580 869 600Q869 605 863 612T839 627T794 637H783V683H792"],88:[683,0,750,23,726,"270 0Q252 3 141 3Q46 3 31 0H23V46H40Q129 50 161 88Q165 94 244 216T324 339Q324 341 235 480T143 622Q133 631 119 634T57 637H37V683H46Q64 680 172 680Q297 680 318 683H329V637H324Q307 637 286 632T263 621Q263 618 322 525T384 431Q385 431 437 511T489 593Q490 595 490 599Q490 611 477 622T436 637H428V683H437Q455 680 566 680Q661 680 676 683H684V637H667Q585 634 551 599Q548 596 478 491Q412 388 412 387Q412 385 514 225T620 62Q628 53 642 50T695 46H726V0H717Q699 3 591 3Q466 3 445 0H434V46H440Q454 46 476 51T499 64Q499 67 463 124T390 238L353 295L350 292Q348 290 343 283T331 265T312 236T286 195Q219 88 218 84Q218 70 234 59T272 46H280V0H270"],89:[683,0,750,11,738,"518 0Q497 3 374 3Q253 3 232 0H221V46H254Q313 47 321 58Q324 62 324 167V273L221 446Q117 620 114 623Q106 631 91 634T31 637H11V683H20Q29 680 148 680Q273 680 294 683H305V637H287Q239 636 236 621Q236 619 321 475L407 332L483 460Q502 492 527 534Q563 594 563 604Q563 632 517 637H508V683H517H525Q533 683 545 683T571 682T600 681T626 681Q695 681 731 683H738V637H723Q640 633 613 588Q612 587 517 427L425 273V169V95Q425 66 428 59T444 49Q459 46 506 46H528V0H518"],90:[683,0,611,55,560,"69 443Q69 452 74 554T80 683H549Q555 677 555 664Q555 649 554 648Q552 645 366 348T179 50T192 49T263 49H275H302Q333 49 353 50T401 59T447 78T482 115T507 173Q513 200 520 273V282H560V274Q560 272 552 143T543 8V0H302L61 1L58 3Q55 8 55 21V35Q59 43 153 193T340 489T432 637H343Q259 637 214 625T141 573Q109 523 109 445Q109 443 89 443H69"],95:[-25,62,500,0,499,"0 -62V-25H499V-62H0"],96:[699,-505,500,106,296,"106 655Q106 671 119 685T150 699Q166 699 177 688Q190 671 222 629T275 561T295 533T282 519L267 505L196 563Q119 626 113 634Q106 643 106 655"],126:[318,-215,500,83,416,"179 251Q164 251 151 245T131 234T111 215L97 227L83 238Q83 239 95 253T121 283T142 304Q165 318 187 318T253 300T320 282Q335 282 348 288T368 299T388 318L402 306L416 295Q375 236 344 222Q330 215 313 215Q292 215 248 233T179 251"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js deleted file mode 100644 index ee36696..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{768:[699,-505,0,-394,-204,"-394 655Q-394 671 -381 685T-350 699Q-334 699 -323 688Q-310 671 -278 629T-225 561T-205 533T-218 519L-233 505L-304 563Q-381 626 -387 634Q-394 643 -394 655"],769:[699,-505,0,-297,-107,"-151 699Q-133 699 -120 686T-107 656Q-107 651 -108 647T-113 637T-120 627T-133 616T-149 602T-170 585T-197 563L-268 505L-283 519Q-297 533 -296 533Q-296 534 -271 567T-218 636T-187 678L-184 681Q-182 684 -179 686T-172 692T-163 697T-151 699"],770:[694,-531,0,-388,-113,"-388 560L-251 694L-243 686Q-113 562 -113 560L-139 531Q-141 532 -197 581L-250 627L-305 580Q-318 569 -331 557T-352 538L-360 532Q-362 530 -375 546L-388 560"],771:[668,-565,0,-417,-84,"-321 601Q-336 601 -349 595T-369 584T-389 565L-403 577L-417 588Q-417 589 -405 603T-379 633T-358 654Q-335 668 -313 668T-247 650T-180 632Q-165 632 -152 638T-132 649T-112 668L-98 656L-84 645Q-125 586 -156 572Q-170 565 -187 565Q-208 565 -252 583T-321 601"],772:[590,-544,0,-431,-70,"-431 544V590H-70V544H-431"],774:[694,-515,0,-408,-93,"-250 515Q-321 515 -362 565T-408 683V694H-371V689Q-371 688 -371 683T-370 675Q-363 631 -331 599T-252 567Q-196 567 -163 608T-130 689V694H-93V683Q-97 617 -139 566T-250 515"],775:[669,-549,0,-310,-191,"-310 609Q-310 637 -292 653T-248 669Q-225 667 -208 652T-191 609Q-191 579 -208 564T-250 549Q-275 549 -292 564T-310 609"],776:[669,-554,0,-405,-95,"-405 612Q-405 633 -388 651T-347 669T-307 652T-290 612Q-290 588 -306 571T-348 554L-373 560Q-405 577 -405 612ZM-211 611Q-211 634 -196 649T-165 668Q-164 668 -160 668T-154 669Q-131 669 -114 652T-96 612T-113 572T-154 554Q-177 554 -194 570T-211 611"],778:[715,-542,0,-353,-148,"-353 628Q-353 669 -321 692T-256 715Q-202 715 -175 689T-148 629Q-148 592 -177 567T-251 542Q-298 542 -325 567T-353 628ZM-187 628Q-187 660 -200 669T-241 678H-247Q-252 678 -258 678T-266 679Q-283 679 -293 674T-308 659T-312 644T-313 629Q-313 600 -302 590Q-290 579 -250 579H-235Q-221 579 -212 581T-195 595T-187 628"],779:[701,-510,0,-378,-80,"-292 701Q-278 701 -262 690T-246 658Q-246 649 -250 641Q-252 637 -297 574T-344 510L-378 528Q-378 530 -355 598T-327 676Q-316 701 -292 701ZM-126 701Q-112 701 -96 690T-80 658Q-80 649 -84 641Q-86 637 -131 574T-178 510L-212 528Q-212 530 -189 598T-161 676Q-150 701 -126 701"],780:[644,-513,0,-386,-115,"-386 611L-373 630L-364 644Q-362 644 -307 612Q-252 581 -250 581L-194 612Q-139 644 -137 644L-115 611L-182 562L-251 513L-386 611"],824:[716,215,0,-639,-140,"-612 -215T-619 -215T-631 -212T-637 -204T-639 -197Q-639 -190 -634 -183Q-621 -157 -400 274T-176 707Q-173 716 -160 716Q-153 716 -148 712T-142 703T-140 696Q-140 691 -372 241T-608 -212Q-612 -215 -619 -215"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/CombDiacritMarks.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js deleted file mode 100644 index 3110ed6..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{9651:[716,0,889,59,828,"75 0L72 2Q69 3 67 5T62 11T59 20Q59 24 62 30Q65 37 245 370T428 707Q428 708 430 710T436 714T444 716Q451 716 455 712Q459 710 644 368L828 27V20Q828 7 814 0H75ZM610 347L444 653Q443 653 278 347T113 40H775Q775 42 610 347"],9657:[505,5,500,26,473,"26 489Q33 505 43 505Q51 505 260 385Q464 266 471 259Q473 257 473 250Q473 242 469 239Q459 231 260 115Q51 -5 43 -5Q39 -5 35 -1T28 7L26 11V489ZM412 250L67 450Q66 450 66 250T67 50Q69 51 240 150T412 250"],9661:[500,215,889,59,828,"59 480Q59 485 61 489T66 495T72 498L75 500H814Q828 493 828 480V474L644 132Q458 -210 455 -212Q451 -215 444 -215T433 -212Q429 -210 342 -49T164 282T64 466Q59 478 59 480ZM775 460H113Q113 459 278 153T444 -153T610 153T775 460"],9667:[505,5,500,26,473,"473 10Q466 -5 454 -5Q451 -5 445 -3Q444 -3 343 56T140 173T35 234Q26 239 26 250T35 266Q40 269 240 384T445 503Q451 505 453 505Q466 505 473 490V10ZM433 50T433 250T432 450T259 351T87 250T258 150T432 50Q433 50 433 250"],9711:[715,215,1000,56,944,"56 250Q56 353 95 442T196 589T335 681T491 715Q573 715 635 693Q694 673 747 635T846 543T917 412T944 250Q944 58 815 -78T500 -215Q457 -215 429 -210Q274 -183 165 -56T56 250ZM500 -176Q664 -176 784 -54T904 250Q904 418 799 536T543 674Q534 675 493 675Q425 675 357 647T229 567T133 432T96 250Q96 160 129 80T217 -56T346 -144T500 -176"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/GeometricShapes.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js deleted file mode 100644 index e95bd49..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{915:[680,0,625,25,582,"128 619Q121 626 117 628T101 631T58 634H25V680H554V676Q556 670 568 560T582 444V440H542V444Q542 445 538 478T523 545T492 598Q454 634 349 634H334Q264 634 249 633T233 621Q232 618 232 339L233 61Q240 54 245 52T270 48T333 46H360V0H348Q324 3 182 3Q51 3 36 0H25V46H58Q100 47 109 49T128 61V619"],916:[716,0,833,46,786,"51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344"],920:[705,23,778,56,722,"56 340Q56 423 86 494T164 610T270 680T388 705Q521 705 621 601T722 341Q722 260 693 191T617 75T510 4T388 -22T267 3T160 74T85 189T56 340ZM610 339Q610 428 590 495T535 598T463 651T384 668Q332 668 289 638T221 566Q168 485 168 339Q168 274 176 235Q189 158 228 105T324 28Q356 16 388 16Q415 16 442 24T501 54T555 111T594 205T610 339ZM223 263V422H263V388H514V422H554V263H514V297H263V263H223"],923:[716,0,694,32,661,"320 708Q326 716 340 716H348H355Q367 716 372 708Q374 706 423 547T523 226T575 62Q581 52 591 50T634 46H661V0H653Q644 3 532 3Q411 3 390 0H379V46H392Q464 46 464 65Q463 70 390 305T316 539L246 316Q177 95 177 84Q177 72 198 59T248 46H253V0H245Q230 3 130 3Q47 3 38 0H32V46H45Q112 51 127 91Q128 92 224 399T320 708"],926:[677,0,667,42,624,"47 509L55 676Q55 677 333 677T611 676L619 509Q619 508 599 508T579 510Q579 529 575 557T564 589Q550 594 333 594T102 589Q95 586 91 558T87 510Q87 508 67 508T47 509ZM139 260V445H179V394H487V445H527V260H487V311H179V260H139ZM50 0L42 180H62Q82 180 82 178Q82 133 89 105Q92 93 95 90T108 86Q137 83 333 83Q530 83 558 86Q568 87 571 90T577 105Q584 133 584 178Q584 180 604 180H624L616 0H50"],928:[680,0,750,25,724,"128 619Q121 626 117 628T101 631T58 634H25V680H724V634H691Q651 633 640 631T622 619V61Q628 51 639 49T691 46H724V0H713Q692 3 569 3Q434 3 425 0H414V46H447Q489 47 498 49T517 61V634H232V348L233 61Q239 51 250 49T302 46H335V0H324Q303 3 180 3Q45 3 36 0H25V46H58Q100 47 109 49T128 61V619"],931:[683,0,722,55,666,"666 247Q664 244 652 126T638 4V0H351Q131 0 95 0T57 5V6Q54 12 57 17L73 36Q89 54 121 90T182 159L305 299L56 644L55 658Q55 677 60 681Q63 683 351 683H638V679Q640 674 652 564T666 447V443H626V447Q618 505 604 543T559 605Q529 626 478 631T333 637H294H189L293 494Q314 465 345 422Q400 346 400 340Q400 338 399 337L154 57Q407 57 428 58Q476 60 508 68T551 83T575 103Q595 125 608 162T624 225L626 251H666V247"],933:[705,0,778,55,722,"55 551Q55 604 91 654T194 705Q240 705 277 681T334 624T367 556T385 498L389 474L392 488Q394 501 400 521T414 566T438 615T473 659T521 692T584 705Q620 705 648 689T691 647T714 597T722 551Q722 540 719 538T699 536Q680 536 677 541Q677 542 677 544T676 548Q676 576 650 596T588 616H582Q538 616 505 582Q466 543 454 477T441 318Q441 301 441 269T442 222V61Q448 55 452 53T478 48T542 46H569V0H557Q533 3 389 3T221 0H209V46H236Q256 46 270 46T295 47T311 48T322 51T328 54T332 57T337 61V209Q337 383 333 415Q313 616 189 616Q154 616 128 597T101 548Q101 540 97 538T78 536Q63 536 59 538T55 551"],934:[683,0,722,55,665,"312 622Q310 623 307 625T303 629T297 631T286 634T270 635T246 636T211 637H184V683H196Q220 680 361 680T526 683H538V637H511Q468 637 447 635T422 631T411 622V533L425 531Q525 519 595 466T665 342Q665 301 642 267T583 209T506 172T425 152L411 150V61Q417 55 421 53T447 48T511 46H538V0H526Q502 3 361 3T196 0H184V46H211Q231 46 245 46T270 47T286 48T297 51T303 54T307 57T312 61V150H310Q309 151 289 153T232 166T160 195Q149 201 136 210T103 238T69 284T56 342Q56 414 128 467T294 530Q309 532 310 533H312V622ZM170 342Q170 207 307 188H312V495H309Q301 495 282 491T231 469T186 423Q170 389 170 342ZM415 188Q487 199 519 236T551 342Q551 384 539 414T507 459T470 481T434 491T415 495H410V188H415"],936:[683,0,778,55,722,"340 622Q338 623 335 625T331 629T325 631T314 634T298 635T274 636T239 637H212V683H224Q248 680 389 680T554 683H566V637H539Q479 637 464 635T439 622L438 407Q438 192 439 192Q443 193 449 195T474 207T507 232T536 276T557 344Q560 365 562 417T573 493Q587 536 620 544Q627 546 671 546H715L722 540V515Q714 509 708 509Q680 505 671 476T658 392T644 307Q599 177 451 153L438 151V106L439 61Q446 54 451 52T476 48T539 46H566V0H554Q530 3 389 3T224 0H212V46H239Q259 46 273 46T298 47T314 48T325 51T331 54T335 57T340 61V151Q126 178 117 406Q115 503 69 509Q55 509 55 526Q55 541 59 543T86 546H107H120Q150 546 161 543T184 528Q198 514 204 493Q212 472 213 420T226 316T272 230Q287 216 303 207T330 194L339 192Q340 192 340 407V622"],937:[705,0,722,44,677,"55 454Q55 503 75 546T127 617T197 665T272 695T337 704H352Q396 704 404 703Q527 687 596 615T666 454Q666 392 635 330T559 200T499 83V80H543Q589 81 600 83T617 93Q622 102 629 135T636 172L637 177H677V175L660 89Q645 3 644 2V0H552H488Q461 0 456 3T451 20Q451 89 499 235T548 455Q548 512 530 555T483 622T424 656T361 668Q332 668 303 658T243 626T193 560T174 456Q174 380 222 233T270 20Q270 7 263 0H77V2Q76 3 61 89L44 175V177H84L85 172Q85 171 88 155T96 119T104 93Q109 86 120 84T178 80H222V83Q206 132 162 199T87 329T55 454"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/GreekAndCoptic.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js deleted file mode 100644 index f105ec5..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{305:[443,0,278,26,255,"247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/LatinExtendedA.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js deleted file mode 100644 index 44508a6..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{567:[443,205,306,-55,218,"28 -163Q58 -168 64 -168Q124 -168 135 -77Q137 -65 137 141T136 353Q132 371 120 377T72 385H52V408Q52 431 54 431L58 432Q62 432 70 432T87 433T108 434T133 436Q151 437 171 438T202 441T214 442H218V184Q217 -36 217 -59T211 -98Q195 -145 153 -175T58 -205Q9 -205 -23 -179T-55 -117Q-55 -94 -40 -79T-2 -64T36 -79T52 -118Q52 -143 28 -163"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/LatinExtendedB.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js deleted file mode 100644 index 67935d9..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{8463:[695,13,540,42,562,"182 599Q182 611 174 615T133 619Q118 619 114 621T109 630Q109 636 114 656T122 681Q125 685 202 688Q272 695 286 695Q304 695 304 684Q304 682 295 644T282 597Q282 592 360 592H399Q430 592 445 587T460 563Q460 552 451 541L442 535H266L251 468Q247 453 243 436T236 409T233 399Q233 395 244 404Q295 441 357 441Q405 441 445 417T485 333Q485 284 449 178T412 58T426 44Q447 44 466 68Q485 87 500 130L509 152H531H543Q562 152 562 144Q562 128 546 93T494 23T415 -13Q385 -13 359 3T322 44Q318 52 318 77Q318 99 352 196T386 337Q386 386 346 386Q318 386 286 370Q267 361 245 338T211 292Q207 287 193 235T162 113T138 21Q128 7 122 4Q105 -12 83 -12Q66 -12 54 -2T42 26L166 530Q166 534 161 534T129 535Q127 535 122 535T112 534Q74 534 74 562Q74 570 77 576T84 585T96 589T109 591T124 592T138 592L182 595V599"],8465:[705,10,722,55,693,"55 507Q55 589 116 647T260 705Q395 705 526 541Q542 522 549 517T567 512Q595 512 621 521T647 550Q647 553 647 555T650 558T653 560T657 561T661 561T665 561T670 561Q681 561 685 561T691 558T693 548Q693 515 657 495T565 475Q518 475 481 495T418 543T371 599T320 647T259 667Q194 667 148 622T102 508Q102 468 119 436T164 385T220 357T273 347Q282 347 284 344T287 329Q287 317 285 314T272 310Q193 310 124 364T55 507ZM420 312Q420 367 464 399T564 431Q613 431 651 406T693 336Q693 325 689 323T667 320Q654 320 651 322T647 335Q645 360 622 376T566 393H563Q557 393 551 391T537 381T523 356T517 312Q517 287 535 265T574 229T613 190T631 132Q628 74 586 37T487 -9Q478 -10 417 -10H387Q344 -10 310 4T215 69Q130 142 71 146Q59 146 57 149T55 163Q55 177 58 180T75 183H108Q177 183 207 170T306 93Q346 56 368 40T420 13Q474 25 503 60T533 136Q533 160 516 182T477 219T438 257T420 304V312"],8467:[706,20,417,7,397,"345 104T349 104T361 95T369 80T352 59Q268 -20 206 -20Q170 -20 146 3T113 53T99 104L94 129Q94 130 79 116T48 86T28 70Q22 70 15 79T7 94Q7 98 12 103T58 147L91 179V185Q91 186 91 191T92 200Q92 282 128 400T223 612T336 705Q397 705 397 636V627Q397 453 194 233Q185 223 180 218T174 211T171 208T165 201L163 186Q159 142 159 123Q159 17 208 17Q228 17 253 30T293 56T335 94Q345 104 349 104ZM360 634Q360 655 354 661T336 668Q328 668 322 666T302 645T272 592Q252 547 229 467T192 330L179 273Q179 272 186 280T204 300T221 322Q327 453 355 590Q360 612 360 634"],8472:[453,216,636,67,625,"300 74Q300 133 338 133Q350 133 356 126T363 109Q363 88 340 76Q340 71 342 62T358 39T393 26Q435 26 474 67T532 182T551 290Q551 325 535 349T484 373Q430 373 378 348T291 289T228 218T187 157T174 130Q254 30 265 10Q276 -15 276 -41Q276 -101 235 -158T142 -216Q112 -216 90 -195T67 -118Q67 -40 104 64L110 81Q81 118 81 174Q81 268 134 360T247 453Q252 453 255 451T258 447L259 445Q259 432 253 420Q251 416 242 416Q209 411 176 341T142 203Q142 193 143 184T146 170T149 165L158 180Q215 280 303 345T485 410Q548 410 586 368T625 255Q625 157 553 74T389 -10H383Q349 -10 325 14Q302 37 300 74ZM105 -123Q105 -134 106 -141T110 -158T122 -173T145 -178Q155 -178 160 -176Q184 -163 199 -132T214 -73Q214 -69 214 -66T213 -59T212 -53T209 -47T205 -41T199 -33T193 -25T184 -14T174 -1L165 10Q156 22 148 32L139 43Q138 43 130 15T113 -54T105 -123"],8476:[716,22,722,40,715,"300 614L306 620Q311 626 316 631T332 646T356 663T386 679T425 695T473 707T531 715Q534 715 543 715T557 716Q570 716 572 714Q574 713 644 580T715 444Q715 441 713 439Q712 438 677 419T602 379T549 354L550 348Q550 337 555 238T561 128Q561 122 560 115T559 101Q559 63 591 25L599 18L631 51Q665 85 671 85Q674 85 687 78T702 68Q704 63 702 59Q702 58 659 20T613 -21Q612 -22 598 -22Q556 -22 526 -8T484 27T466 66T461 101Q461 110 462 116T463 129Q463 135 458 232T452 331V338H343V280Q342 195 333 157Q316 64 267 12Q233 -22 193 -22Q155 -22 122 2T72 74Q72 76 70 76T67 74T60 74T48 82Q40 91 40 95Q40 100 42 102T57 109V113Q57 118 66 127T81 137Q88 137 93 123Q105 127 108 126Q111 124 118 117T127 107Q127 101 123 98T113 93T107 90Q107 86 115 71T143 37T189 15H192Q230 15 239 96Q244 135 244 334Q244 510 242 542Q236 584 233 596Q223 630 205 649T166 668Q136 668 118 642T100 584Q100 567 110 554T137 522T166 486Q194 446 194 401V389Q189 243 114 243Q91 243 77 260T59 294T55 322Q55 331 59 333T75 336T91 334T95 322Q95 280 113 280Q134 280 140 305T147 375V391Q147 417 139 435T101 487Q56 540 56 572V580Q56 630 86 667T169 704Q214 704 247 676T300 614ZM324 562Q326 555 330 539T336 515T340 484T343 427V384H424L505 385Q537 396 584 422L609 435Q610 435 594 465T550 550Q536 575 520 605T496 650L488 664L476 662Q348 633 324 562"],8501:[694,0,611,55,555,"55 613Q55 643 61 663T74 688T85 694Q94 694 94 681Q98 632 134 588L412 285Q416 311 430 397T447 509V519L438 526Q407 554 398 571T388 617T394 664T407 688T418 694Q425 694 427 684Q429 675 454 635T488 586Q490 584 496 579T513 563T537 540Q555 516 555 487Q555 460 549 441T537 416T528 409Q519 409 517 415T513 435T503 463Q492 481 490 481Q454 264 454 246Q454 237 479 212T529 152T555 79Q555 32 538 9Q531 1 524 1Q516 1 516 13Q512 62 476 106Q468 115 337 258T195 412L193 406Q191 401 189 394T183 377T176 352T171 322T167 284T165 240Q165 224 166 220Q171 199 211 152T252 70Q252 45 235 29T203 8T175 1Q170 0 115 0H79Q60 0 58 3T55 20Q55 31 58 34Q60 37 76 37Q112 39 126 46T140 70Q140 96 112 148T83 236Q83 281 102 334T140 419T159 452Q55 556 55 613"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/LetterlikeSymbols.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js deleted file mode 100644 index 1c6a187..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main={directory:"Main/Regular",family:"MathJax_Main",id:"MJMAIN",skew:{305:0.0278,567:0.0833,8467:0.111,8472:0.111,8706:0.0833},Ranges:[[32,127,"BasicLatin"],[256,383,"LatinExtendedA"],[384,591,"LatinExtendedB"],[688,767,"SpacingModLetters"],[768,879,"CombDiacritMarks"],[880,1023,"GreekAndCoptic"],[8448,8527,"LetterlikeSymbols"],[8704,8959,"MathOperators"],[9632,9727,"GeometricShapes"],[9728,9983,"MiscSymbols"],[10752,11007,"SuppMathOperators"]],32:[0,0,250,0,0,""],40:[750,250,389,94,333,"94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250"],41:[750,250,389,55,294,"60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749"],43:[583,82,778,56,722,"56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250"],44:[121,195,278,78,210,"78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17"],46:[120,0,278,78,199,"78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60"],47:[750,250,500,56,444,"423 750Q432 750 438 744T444 730Q444 725 271 248T92 -240Q85 -250 75 -250Q68 -250 62 -245T56 -231Q56 -221 230 257T407 740Q411 750 423 750"],48:[666,22,500,39,460,"96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597"],49:[666,0,500,83,427,"213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578"],50:[666,0,500,50,449,"109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429"],51:[665,22,500,42,457,"127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463"],52:[677,0,500,28,471,"462 0Q444 3 333 3Q217 3 199 0H190V46H221Q241 46 248 46T265 48T279 53T286 61Q287 63 287 115V165H28V211L179 442Q332 674 334 675Q336 677 355 677H373L379 671V211H471V165H379V114Q379 73 379 66T385 54Q393 47 442 46H471V0H462ZM293 211V545L74 212L183 211H293"],53:[666,22,500,50,449,"164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157"],54:[666,22,500,41,456,"42 313Q42 476 123 571T303 666Q372 666 402 630T432 550Q432 525 418 510T379 495Q356 495 341 509T326 548Q326 592 373 601Q351 623 311 626Q240 626 194 566Q147 500 147 364L148 360Q153 366 156 373Q197 433 263 433H267Q313 433 348 414Q372 400 396 374T435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM257 397Q227 397 205 380T171 335T154 278T148 216Q148 133 160 97T198 39Q222 21 251 21Q302 21 329 59Q342 77 347 104T352 209Q352 289 347 316T329 361Q302 397 257 397"],55:[676,22,500,55,485,"55 458Q56 460 72 567L88 674Q88 676 108 676H128V672Q128 662 143 655T195 646T364 644H485V605L417 512Q408 500 387 472T360 435T339 403T319 367T305 330T292 284T284 230T278 162T275 80Q275 66 275 52T274 28V19Q270 2 255 -10T221 -22Q210 -22 200 -19T179 0T168 40Q168 198 265 368Q285 400 349 489L395 552H302Q128 552 119 546Q113 543 108 522T98 479L95 458V455H55V458"],56:[666,22,500,43,457,"70 417T70 494T124 618T248 666Q319 666 374 624T429 515Q429 485 418 459T392 417T361 389T335 371T324 363L338 354Q352 344 366 334T382 323Q457 264 457 174Q457 95 399 37T249 -22Q159 -22 101 29T43 155Q43 263 172 335L154 348Q133 361 127 368Q70 417 70 494ZM286 386L292 390Q298 394 301 396T311 403T323 413T334 425T345 438T355 454T364 471T369 491T371 513Q371 556 342 586T275 624Q268 625 242 625Q201 625 165 599T128 534Q128 511 141 492T167 463T217 431Q224 426 228 424L286 386ZM250 21Q308 21 350 55T392 137Q392 154 387 169T375 194T353 216T330 234T301 253T274 270Q260 279 244 289T218 306L210 311Q204 311 181 294T133 239T107 157Q107 98 150 60T250 21"],57:[666,22,500,42,456,"352 287Q304 211 232 211Q154 211 104 270T44 396Q42 412 42 436V444Q42 537 111 606Q171 666 243 666Q245 666 249 666T257 665H261Q273 665 286 663T323 651T370 619T413 560Q456 472 456 334Q456 194 396 97Q361 41 312 10T208 -22Q147 -22 108 7T68 93T121 149Q143 149 158 135T173 96Q173 78 164 65T148 49T135 44L131 43Q131 41 138 37T164 27T206 22H212Q272 22 313 86Q352 142 352 280V287ZM244 248Q292 248 321 297T351 430Q351 508 343 542Q341 552 337 562T323 588T293 615T246 625Q208 625 181 598Q160 576 154 546T147 441Q147 358 152 329T172 282Q197 248 244 248"],58:[430,0,278,78,199,"78 370Q78 394 95 412T138 430Q162 430 180 414T199 371Q199 346 182 328T139 310T96 327T78 370ZM78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60"],59:[430,194,278,78,202,"78 370Q78 394 95 412T138 430Q162 430 180 414T199 371Q199 346 182 328T139 310T96 327T78 370ZM78 60Q78 85 94 103T137 121Q202 121 202 8Q202 -44 183 -94T144 -169T118 -194Q115 -194 106 -186T95 -174Q94 -171 107 -155T137 -107T160 -38Q161 -32 162 -22T165 -4T165 4Q165 5 161 4T142 0Q110 0 94 18T78 60"],60:[540,40,778,83,695,"694 -11T694 -19T688 -33T678 -40Q671 -40 524 29T234 166L90 235Q83 240 83 250Q83 261 91 266Q664 540 678 540Q681 540 687 534T694 519T687 505Q686 504 417 376L151 250L417 124Q686 -4 687 -5Q694 -11 694 -19"],61:[367,-133,778,56,722,"56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153"],62:[540,40,778,82,694,"84 520Q84 528 88 533T96 539L99 540Q106 540 253 471T544 334L687 265Q694 260 694 250T687 235Q685 233 395 96L107 -40H101Q83 -38 83 -20Q83 -19 83 -17Q82 -10 98 -1Q117 9 248 71Q326 108 378 132L626 250L378 368Q90 504 86 509Q84 513 84 520"],91:[750,250,278,118,255,"118 -250V750H255V710H158V-210H255V-250H118"],92:[750,250,500,56,444,"56 731Q56 740 62 745T75 750Q85 750 92 740Q96 733 270 255T444 -231Q444 -239 438 -244T424 -250Q414 -250 407 -240Q404 -236 230 242T56 731"],93:[750,250,278,22,159,"22 710V750H159V-250H22V-210H119V710H22"],94:[694,-531,500,112,387,"112 560L249 694L257 686Q387 562 387 560L361 531Q359 532 303 581L250 627L195 580Q182 569 169 557T148 538L140 532Q138 530 125 546L112 560"],97:[448,11,500,34,493,"137 305T115 305T78 320T63 359Q63 394 97 421T218 448Q291 448 336 416T396 340Q401 326 401 309T402 194V124Q402 76 407 58T428 40Q443 40 448 56T453 109V145H493V106Q492 66 490 59Q481 29 455 12T400 -6T353 12T329 54V58L327 55Q325 52 322 49T314 40T302 29T287 17T269 6T247 -2T221 -8T190 -11Q130 -11 82 20T34 107Q34 128 41 147T68 188T116 225T194 253T304 268H318V290Q318 324 312 340Q290 411 215 411Q197 411 181 410T156 406T148 403Q170 388 170 359Q170 334 154 320ZM126 106Q126 75 150 51T209 26Q247 26 276 49T315 109Q317 116 318 175Q318 233 317 233Q309 233 296 232T251 223T193 203T147 166T126 106"],98:[695,11,556,20,522,"307 -11Q234 -11 168 55L158 37Q156 34 153 28T147 17T143 10L138 1L118 0H98V298Q98 599 97 603Q94 622 83 628T38 637H20V660Q20 683 22 683L32 684Q42 685 61 686T98 688Q115 689 135 690T165 693T176 694H179V543Q179 391 180 391L183 394Q186 397 192 401T207 411T228 421T254 431T286 439T323 442Q401 442 461 379T522 216Q522 115 458 52T307 -11ZM182 98Q182 97 187 90T196 79T206 67T218 55T233 44T250 35T271 29T295 26Q330 26 363 46T412 113Q424 148 424 212Q424 287 412 323Q385 405 300 405Q270 405 239 390T188 347L182 339V98"],99:[448,12,444,34,415,"370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320"],100:[695,11,556,34,535,"376 495Q376 511 376 535T377 568Q377 613 367 624T316 637H298V660Q298 683 300 683L310 684Q320 685 339 686T376 688Q393 689 413 690T443 693T454 694H457V390Q457 84 458 81Q461 61 472 55T517 46H535V0Q533 0 459 -5T380 -11H373V44L365 37Q307 -11 235 -11Q158 -11 96 50T34 215Q34 315 97 378T244 442Q319 442 376 393V495ZM373 342Q328 405 260 405Q211 405 173 369Q146 341 139 305T131 211Q131 155 138 120T173 59Q203 26 251 26Q322 26 373 103V342"],101:[448,11,444,28,415,"28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275"],102:[705,0,306,26,372,"273 0Q255 3 146 3Q43 3 34 0H26V46H42Q70 46 91 49Q99 52 103 60Q104 62 104 224V385H33V431H104V497L105 564L107 574Q126 639 171 668T266 704Q267 704 275 704T289 705Q330 702 351 679T372 627Q372 604 358 590T321 576T284 590T270 627Q270 647 288 667H284Q280 668 273 668Q245 668 223 647T189 592Q183 572 182 497V431H293V385H185V225Q185 63 186 61T189 57T194 54T199 51T206 49T213 48T222 47T231 47T241 46T251 46H282V0H273"],103:[453,206,500,29,485,"329 409Q373 453 429 453Q459 453 472 434T485 396Q485 382 476 371T449 360Q416 360 412 390Q410 404 415 411Q415 412 416 414V415Q388 412 363 393Q355 388 355 386Q355 385 359 381T368 369T379 351T388 325T392 292Q392 230 343 187T222 143Q172 143 123 171Q112 153 112 133Q112 98 138 81Q147 75 155 75T227 73Q311 72 335 67Q396 58 431 26Q470 -13 470 -72Q470 -139 392 -175Q332 -206 250 -206Q167 -206 107 -175Q29 -140 29 -75Q29 -39 50 -15T92 18L103 24Q67 55 67 108Q67 155 96 193Q52 237 52 292Q52 355 102 398T223 442Q274 442 318 416L329 409ZM299 343Q294 371 273 387T221 404Q192 404 171 388T145 343Q142 326 142 292Q142 248 149 227T179 192Q196 182 222 182Q244 182 260 189T283 207T294 227T299 242Q302 258 302 292T299 343ZM403 -75Q403 -50 389 -34T348 -11T299 -2T245 0H218Q151 0 138 -6Q118 -15 107 -34T95 -74Q95 -84 101 -97T122 -127T170 -155T250 -167Q319 -167 361 -139T403 -75"],104:[695,0,556,25,542,"41 46H55Q94 46 102 60V68Q102 77 102 91T102 124T102 167T103 217T103 272T103 329Q103 366 103 407T103 482T102 542T102 586T102 603Q99 622 88 628T43 637H25V660Q25 683 27 683L37 684Q47 685 66 686T103 688Q120 689 140 690T170 693T181 694H184V367Q244 442 328 442Q451 442 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41"],105:[669,0,278,26,255,"69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247"],106:[669,205,306,-55,218,"98 609Q98 637 116 653T160 669Q183 667 200 652T217 609Q217 579 200 564T158 549Q133 549 116 564T98 609ZM28 -163Q58 -168 64 -168Q124 -168 135 -77Q137 -65 137 141T136 353Q132 371 120 377T72 385H52V408Q52 431 54 431L58 432Q62 432 70 432T87 433T108 434T133 436Q151 437 171 438T202 441T214 442H218V184Q217 -36 217 -59T211 -98Q195 -145 153 -175T58 -205Q9 -205 -23 -179T-55 -117Q-55 -94 -40 -79T-2 -64T36 -79T52 -118Q52 -143 28 -163"],107:[695,0,528,20,511,"36 46H50Q89 46 97 60V68Q97 77 97 91T97 124T98 167T98 217T98 272T98 329Q98 366 98 407T98 482T98 542T97 586T97 603Q94 622 83 628T38 637H20V660Q20 683 22 683L32 684Q42 685 61 686T98 688Q115 689 135 690T165 693T176 694H179V463L180 233L240 287Q300 341 304 347Q310 356 310 364Q310 383 289 385H284V431H293Q308 428 412 428Q475 428 484 431H489V385H476Q407 380 360 341Q286 278 286 274Q286 273 349 181T420 79Q434 60 451 53T500 46H511V0H505Q496 3 418 3Q322 3 307 0H299V46H306Q330 48 330 65Q330 72 326 79Q323 84 276 153T228 222L176 176V120V84Q176 65 178 59T189 49Q210 46 238 46H254V0H246Q231 3 137 3T28 0H20V46H36"],108:[695,0,278,26,263,"42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42"],109:[443,0,833,25,819,"41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q351 442 364 440T387 434T406 426T421 417T432 406T441 395T448 384T452 374T455 366L457 361L460 365Q463 369 466 373T475 384T488 397T503 410T523 422T546 432T572 439T603 442Q729 442 740 329Q741 322 741 190V104Q741 66 743 59T754 49Q775 46 803 46H819V0H811L788 1Q764 2 737 2T699 3Q596 3 587 0H579V46H595Q656 46 656 62Q657 64 657 200Q656 335 655 343Q649 371 635 385T611 402T585 404Q540 404 506 370Q479 343 472 315T464 232V168V108Q464 78 465 68T468 55T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41"],110:[443,0,556,25,542,"41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41"],111:[448,10,500,28,471,"28 214Q28 309 93 378T250 448Q340 448 405 380T471 215Q471 120 407 55T250 -10Q153 -10 91 57T28 214ZM250 30Q372 30 372 193V225V250Q372 272 371 288T364 326T348 362T317 390T268 410Q263 411 252 411Q222 411 195 399Q152 377 139 338T126 246V226Q126 130 145 91Q177 30 250 30"],112:[443,194,556,20,522,"36 -148H50Q89 -148 97 -134V-126Q97 -119 97 -107T97 -77T98 -38T98 6T98 55T98 106Q98 140 98 177T98 243T98 296T97 335T97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 61 434T98 436Q115 437 135 438T165 441T176 442H179V416L180 390L188 397Q247 441 326 441Q407 441 464 377T522 216Q522 115 457 52T310 -11Q242 -11 190 33L182 40V-45V-101Q182 -128 184 -134T195 -145Q216 -148 244 -148H260V-194H252L228 -193Q205 -192 178 -192T140 -191Q37 -191 28 -194H20V-148H36ZM424 218Q424 292 390 347T305 402Q234 402 182 337V98Q222 26 294 26Q345 26 384 80T424 218"],113:[442,194,528,33,535,"33 218Q33 308 95 374T236 441H246Q330 441 381 372L387 364Q388 364 404 403L420 442H457V156Q457 -132 458 -134Q462 -142 470 -145Q491 -148 519 -148H535V-194H527L504 -193Q480 -192 453 -192T415 -191Q312 -191 303 -194H295V-148H311Q339 -148 360 -145Q369 -141 371 -135T373 -106V-41V49Q313 -11 236 -11Q154 -11 94 53T33 218ZM376 300Q346 389 278 401Q275 401 269 401T261 402Q211 400 171 350T131 214Q131 137 165 82T253 27Q296 27 328 54T376 118V300"],114:[443,0,392,20,364,"36 46H50Q89 46 97 60V68Q97 77 97 91T98 122T98 161T98 203Q98 234 98 269T98 328L97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 60 434T96 436Q112 437 131 438T160 441T171 442H174V373Q213 441 271 441H277Q322 441 343 419T364 373Q364 352 351 337T313 322Q288 322 276 338T263 372Q263 381 265 388T270 400T273 405Q271 407 250 401Q234 393 226 386Q179 341 179 207V154Q179 141 179 127T179 101T180 81T180 66V61Q181 59 183 57T188 54T193 51T200 49T207 48T216 47T225 47T235 46T245 46H276V0H267Q249 3 140 3Q37 3 28 0H20V46H36"],115:[448,11,394,33,359,"295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316"],116:[615,10,389,18,333,"27 422Q80 426 109 478T141 600V615H181V431H316V385H181V241Q182 116 182 100T189 68Q203 29 238 29Q282 29 292 100Q293 108 293 146V181H333V146V134Q333 57 291 17Q264 -10 221 -10Q187 -10 162 2T124 33T105 68T98 100Q97 107 97 248V385H18V422H27"],117:[443,11,556,25,542,"383 58Q327 -10 256 -10H249Q124 -10 105 89Q104 96 103 226Q102 335 102 348T96 369Q86 385 36 385H25V408Q25 431 27 431L38 432Q48 433 67 434T105 436Q122 437 142 438T172 441T184 442H187V261Q188 77 190 64Q193 49 204 40Q224 26 264 26Q290 26 311 35T343 58T363 90T375 120T379 144Q379 145 379 161T380 201T380 248V315Q380 361 370 372T320 385H302V431Q304 431 378 436T457 442H464V264Q464 84 465 81Q468 61 479 55T524 46H542V0Q540 0 467 -5T390 -11H383V58"],118:[431,11,528,19,508,"338 431Q344 429 422 429Q479 429 503 431H508V385H497Q439 381 423 345Q421 341 356 172T288 -2Q283 -11 263 -11Q244 -11 239 -2Q99 359 98 364Q93 378 82 381T43 385H19V431H25L33 430Q41 430 53 430T79 430T104 429T122 428Q217 428 232 431H240V385H226Q187 384 184 370Q184 366 235 234L286 102L377 341V349Q377 363 367 372T349 383T335 385H331V431H338"],119:[431,11,722,18,703,"90 368Q84 378 76 380T40 385H18V431H24L43 430Q62 430 84 429T116 428Q206 428 221 431H229V385H215Q177 383 177 368Q177 367 221 239L265 113L339 328L333 345Q323 374 316 379Q308 384 278 385H258V431H264Q270 428 348 428Q439 428 454 431H461V385H452Q404 385 404 369Q404 366 418 324T449 234T481 143L496 100L537 219Q579 341 579 347Q579 363 564 373T530 385H522V431H529Q541 428 624 428Q692 428 698 431H703V385H697Q696 385 691 385T682 384Q635 377 619 334L559 161Q546 124 528 71Q508 12 503 1T487 -11H479Q460 -11 456 -4Q455 -3 407 133L361 267Q359 263 266 -4Q261 -11 243 -11H238Q225 -11 220 -3L90 368"],120:[431,0,528,11,516,"201 0Q189 3 102 3Q26 3 17 0H11V46H25Q48 47 67 52T96 61T121 78T139 96T160 122T180 150L226 210L168 288Q159 301 149 315T133 336T122 351T113 363T107 370T100 376T94 379T88 381T80 383Q74 383 44 385H16V431H23Q59 429 126 429Q219 429 229 431H237V385Q201 381 201 369Q201 367 211 353T239 315T268 274L272 270L297 304Q329 345 329 358Q329 364 327 369T322 376T317 380T310 384L307 385H302V431H309Q324 428 408 428Q487 428 493 431H499V385H492Q443 385 411 368Q394 360 377 341T312 257L296 236L358 151Q424 61 429 57T446 50Q464 46 499 46H516V0H510H502Q494 1 482 1T457 2T432 2T414 3Q403 3 377 3T327 1L304 0H295V46H298Q309 46 320 51T331 63Q331 65 291 120L250 175Q249 174 219 133T185 88Q181 83 181 74Q181 63 188 55T206 46Q208 46 208 23V0H201"],121:[431,204,528,19,508,"69 -66Q91 -66 104 -80T118 -116Q118 -134 109 -145T91 -160Q84 -163 97 -166Q104 -168 111 -168Q131 -168 148 -159T175 -138T197 -106T213 -75T225 -43L242 0L170 183Q150 233 125 297Q101 358 96 368T80 381Q79 382 78 382Q66 385 34 385H19V431H26L46 430Q65 430 88 429T122 428Q129 428 142 428T171 429T200 430T224 430L233 431H241V385H232Q183 385 185 366L286 112Q286 113 332 227L376 341V350Q376 365 366 373T348 383T334 385H331V431H337H344Q351 431 361 431T382 430T405 429T422 429Q477 429 503 431H508V385H497Q441 380 422 345Q420 343 378 235T289 9T227 -131Q180 -204 113 -204Q69 -204 44 -177T19 -116Q19 -89 35 -78T69 -66"],122:[431,0,444,28,401,"42 263Q44 270 48 345T53 423V431H393Q399 425 399 415Q399 403 398 402L381 378Q364 355 331 309T265 220L134 41L182 40H206Q254 40 283 46T331 77Q352 105 359 185L361 201Q361 202 381 202H401V196Q401 195 393 103T384 6V0H209L34 1L31 3Q28 8 28 17Q28 30 29 31T160 210T294 394H236Q169 393 152 388Q127 382 113 367Q89 344 82 264V255H42V263"],123:[750,250,500,65,434,"434 -231Q434 -244 428 -250H410Q281 -250 230 -184Q225 -177 222 -172T217 -161T213 -148T211 -133T210 -111T209 -84T209 -47T209 0Q209 21 209 53Q208 142 204 153Q203 154 203 155Q189 191 153 211T82 231Q71 231 68 234T65 250T68 266T82 269Q116 269 152 289T203 345Q208 356 208 377T209 529V579Q209 634 215 656T244 698Q270 724 324 740Q361 748 377 749Q379 749 390 749T408 750H428Q434 744 434 732Q434 719 431 716Q429 713 415 713Q362 710 332 689T296 647Q291 634 291 499V417Q291 370 288 353T271 314Q240 271 184 255L170 250L184 245Q202 239 220 230T262 196T290 137Q291 131 291 1Q291 -134 296 -147Q306 -174 339 -192T415 -213Q429 -213 431 -216Q434 -219 434 -231"],124:[750,249,278,119,159,"139 -249H137Q125 -249 119 -235V251L120 737Q130 750 139 750Q152 750 159 735V-235Q151 -249 141 -249H139"],125:[750,250,500,65,434,"65 731Q65 745 68 747T88 750Q171 750 216 725T279 670Q288 649 289 635T291 501Q292 362 293 357Q306 312 345 291T417 269Q428 269 431 266T434 250T431 234T417 231Q380 231 345 210T298 157Q293 143 292 121T291 -28V-79Q291 -134 285 -156T256 -198Q202 -250 89 -250Q71 -250 68 -247T65 -230Q65 -224 65 -223T66 -218T69 -214T77 -213Q91 -213 108 -210T146 -200T183 -177T207 -139Q208 -134 209 3L210 139Q223 196 280 230Q315 247 330 250Q305 257 280 270Q225 304 212 352L210 362L209 498Q208 635 207 640Q195 680 154 696T77 713Q68 713 67 716T65 731"],168:[669,-554,500,95,405,"95 612Q95 633 112 651T153 669T193 652T210 612Q210 588 194 571T152 554L127 560Q95 577 95 612ZM289 611Q289 634 304 649T335 668Q336 668 340 668T346 669Q369 669 386 652T404 612T387 572T346 554Q323 554 306 570T289 611"],172:[356,-89,667,56,611,"56 323T56 336T70 356H596Q603 353 611 343V102Q598 89 591 89Q587 89 584 90T579 94T575 98T572 102L571 209V316H70Q56 323 56 336"],175:[590,-544,500,69,430,"69 544V590H430V544H69"],176:[715,-542,500,147,352,"147 628Q147 669 179 692T244 715Q298 715 325 689T352 629Q352 592 323 567T249 542Q202 542 175 567T147 628ZM313 628Q313 660 300 669T259 678H253Q248 678 242 678T234 679Q217 679 207 674T192 659T188 644T187 629Q187 600 198 590Q210 579 250 579H265Q279 579 288 581T305 595T313 628"],177:[666,0,778,56,722,"56 320T56 333T70 353H369V502Q369 651 371 655Q376 666 388 666Q402 666 405 654T409 596V500V353H707Q722 345 722 333Q722 320 707 313H409V40H707Q722 32 722 20T707 0H70Q56 7 56 20T70 40H369V313H70Q56 320 56 333"],180:[699,-505,500,203,393,"349 699Q367 699 380 686T393 656Q393 651 392 647T387 637T380 627T367 616T351 602T330 585T303 563L232 505L217 519Q203 533 204 533Q204 534 229 567T282 636T313 678L316 681Q318 684 321 686T328 692T337 697T349 699"],215:[491,-9,778,147,630,"630 29Q630 9 609 9Q604 9 587 25T493 118L389 222L284 117Q178 13 175 11Q171 9 168 9Q160 9 154 15T147 29Q147 36 161 51T255 146L359 250L255 354Q174 435 161 449T147 471Q147 480 153 485T168 490Q173 490 175 489Q178 487 284 383L389 278L493 382Q570 459 587 475T609 491Q630 491 630 471Q630 464 620 453T522 355L418 250L522 145Q606 61 618 48T630 29"],247:[537,36,778,56,721,"318 466Q318 500 339 518T386 537Q418 537 438 517T458 466Q458 438 440 417T388 396Q355 396 337 417T318 466ZM56 237T56 250T70 270H706Q721 262 721 250T706 230H70Q56 237 56 250ZM318 34Q318 68 339 86T386 105Q418 105 438 85T458 34Q458 6 440 -15T388 -36Q355 -36 337 -15T318 34"],710:[694,-531,500,112,387,"112 560L249 694L257 686Q387 562 387 560L361 531Q359 532 303 581L250 627L195 580Q182 569 169 557T148 538L140 532Q138 530 125 546L112 560"],711:[644,-513,500,114,385,"114 611L127 630L136 644Q138 644 193 612Q248 581 250 581L306 612Q361 644 363 644L385 611L318 562L249 513L114 611"],713:[590,-544,500,69,430,"69 544V590H430V544H69"],714:[699,-505,500,203,393,"349 699Q367 699 380 686T393 656Q393 651 392 647T387 637T380 627T367 616T351 602T330 585T303 563L232 505L217 519Q203 533 204 533Q204 534 229 567T282 636T313 678L316 681Q318 684 321 686T328 692T337 697T349 699"],715:[699,-505,500,106,296,"106 655Q106 671 119 685T150 699Q166 699 177 688Q190 671 222 629T275 561T295 533T282 519L267 505L196 563Q119 626 113 634Q106 643 106 655"],728:[694,-515,500,92,407,"250 515Q179 515 138 565T92 683V694H129V689Q129 688 129 683T130 675Q137 631 169 599T248 567Q304 567 337 608T370 689V694H407V683Q403 617 361 566T250 515"],729:[669,-549,500,190,309,"190 609Q190 637 208 653T252 669Q275 667 292 652T309 609Q309 579 292 564T250 549Q225 549 208 564T190 609"],732:[668,-565,500,83,416,"179 601Q164 601 151 595T131 584T111 565L97 577L83 588Q83 589 95 603T121 633T142 654Q165 668 187 668T253 650T320 632Q335 632 348 638T368 649T388 668L402 656L416 645Q375 586 344 572Q330 565 313 565Q292 565 248 583T179 601"],8211:[285,-248,500,0,499,"0 248V285H499V248H0"],8212:[285,-248,1000,0,999,"0 248V285H999V248H0"],8216:[694,-379,278,64,199,"64 494Q64 548 86 597T131 670T160 694Q163 694 172 685T182 672Q182 669 170 656T144 625T116 573T101 501Q101 489 102 489T107 491T120 497T138 500Q163 500 180 483T198 440T181 397T139 379Q110 379 87 405T64 494"],8217:[694,-379,278,78,212,"78 634Q78 659 95 676T138 694Q166 694 189 668T212 579Q212 525 190 476T146 403T118 379Q114 379 105 388T95 401Q95 404 107 417T133 448T161 500T176 572Q176 584 175 584T170 581T157 576T139 573Q114 573 96 590T78 634"],8220:[694,-379,500,128,466,"128 494Q128 528 137 560T158 616T185 658T209 685T223 694T236 685T245 670Q244 668 231 654T204 622T178 571T164 501Q164 489 165 489T170 491T183 497T201 500Q226 500 244 483T262 440T245 397T202 379Q173 379 151 405T128 494ZM332 494Q332 528 341 560T362 616T389 658T413 685T427 694T439 685T449 672Q449 669 437 656T411 625T383 573T368 501Q368 489 369 489T374 491T387 497T405 500Q430 500 448 483T466 440T449 397T406 379Q377 379 355 405T332 494"],8221:[694,-379,500,34,372,"34 634Q34 659 50 676T93 694Q121 694 144 668T168 579Q168 525 146 476T101 403T73 379Q69 379 60 388T50 401Q50 404 62 417T88 448T116 500T131 572Q131 584 130 584T125 581T112 576T94 573Q69 573 52 590T34 634ZM238 634Q238 659 254 676T297 694Q325 694 348 668T372 579Q372 525 350 476T305 403T277 379Q273 379 264 388T254 401Q254 404 266 417T292 448T320 500T335 572Q335 584 334 584T329 581T316 576T298 573Q273 573 256 590T238 634"],8224:[705,216,444,54,389,"182 675Q195 705 222 705Q234 705 243 700T253 691T263 675L262 655Q262 620 252 549T240 454V449Q250 451 288 461T346 472T377 461T389 431Q389 417 379 404T346 390Q327 390 288 401T243 412H240V405Q245 367 250 339T258 301T261 274T263 225Q263 124 255 -41T239 -213Q236 -216 222 -216H217Q206 -216 204 -212T200 -186Q199 -175 199 -168Q181 38 181 225Q181 265 182 280T191 327T204 405V412H201Q196 412 157 401T98 390Q76 390 66 403T55 431T65 458T98 472Q116 472 155 462T205 449Q204 452 204 460T201 490T193 547Q182 619 182 655V675"],8225:[705,205,444,54,389,"181 658Q181 705 222 705T263 658Q263 633 252 572T240 497Q240 496 241 496Q243 496 285 507T345 519Q365 519 376 508T388 478Q388 466 384 458T375 447T361 438H344Q318 438 282 448T241 459Q240 458 240 456Q240 449 251 384T263 297Q263 278 255 267T238 253T222 250T206 252T190 266T181 297Q181 323 192 383T204 458Q204 459 203 459Q198 459 162 449T101 438H84Q74 443 70 446T61 457T56 478Q56 497 67 508T99 519Q117 519 159 508T203 496Q204 496 204 499Q204 507 193 572T181 658ZM181 202Q181 249 222 249T263 202Q263 185 259 161T249 103T240 48V41H243Q248 41 287 52T346 63T377 52T389 22Q389 8 379 -5T346 -19Q327 -19 288 -8T243 3H240V-4Q243 -24 249 -58T259 -117T263 -158Q263 -177 255 -188T238 -202T222 -205T206 -203T190 -189T181 -158Q181 -141 185 -117T195 -59T204 -4V3H201Q196 3 157 -8T98 -19Q76 -19 66 -6T55 22T65 49T98 63Q117 63 156 52T201 41H204V48Q201 68 195 102T185 161T181 202"],8230:[120,0,1172,78,1093,"78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60ZM525 60Q525 84 542 102T585 120Q609 120 627 104T646 61Q646 36 629 18T586 0T543 17T525 60ZM972 60Q972 84 989 102T1032 120Q1056 120 1074 104T1093 61Q1093 36 1076 18T1033 0T990 17T972 60"],8242:[560,-43,275,30,262,"79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43"],8407:[714,-516,0,-471,-29,"-123 694Q-123 702 -118 708T-103 714Q-93 714 -88 706T-80 687T-67 660T-40 633Q-29 626 -29 615Q-29 606 -36 600T-53 590T-83 571T-121 531Q-135 516 -143 516T-157 522T-163 536T-152 559T-129 584T-116 595H-287L-458 596Q-459 597 -461 599T-466 602T-469 607T-471 615Q-471 622 -458 635H-99Q-123 673 -123 694"],8592:[511,11,1000,55,944,"944 261T944 250T929 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H929Q944 261 944 250"],8593:[694,193,500,17,483,"27 414Q17 414 17 433Q17 437 17 439T17 444T19 447T20 450T22 452T26 453T30 454T36 456Q80 467 120 494T180 549Q227 607 238 678Q240 694 251 694Q259 694 261 684Q261 677 265 659T284 608T320 549Q340 525 363 507T405 479T440 463T467 455T479 451Q483 447 483 433Q483 413 472 413Q467 413 458 416Q342 448 277 545L270 555V-179Q262 -193 252 -193H250H248Q236 -193 230 -179V555L223 545Q192 499 146 467T70 424T27 414"],8594:[511,11,1000,56,944,"56 237T56 250T70 270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H70Q56 237 56 250"],8595:[694,194,500,17,483,"473 86Q483 86 483 67Q483 63 483 61T483 56T481 53T480 50T478 48T474 47T470 46T464 44Q428 35 391 14T316 -55T264 -168Q264 -170 263 -173T262 -180T261 -184Q259 -194 251 -194Q242 -194 238 -176T221 -121T180 -49Q169 -34 155 -21T125 2T95 20T67 33T44 42T27 47L21 49Q17 53 17 67Q17 87 28 87Q33 87 42 84Q158 52 223 -45L230 -55V312Q230 391 230 482T229 591Q229 662 231 676T243 693Q244 694 251 694Q264 692 270 679V-55L277 -45Q307 1 353 33T430 76T473 86"],8596:[511,11,1000,55,944,"263 479Q267 501 271 506T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H835Q729 349 696 475Q691 493 691 500Q691 511 711 511Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q144 292 194 349T263 479"],8597:[772,272,500,17,483,"27 492Q17 492 17 511Q17 515 17 517T17 522T19 525T20 528T22 530T26 531T30 532T36 534Q80 545 120 572T180 627Q210 664 223 701T238 755T250 772T261 762Q261 757 264 741T282 691T319 628Q352 589 390 566T454 536L479 529Q483 525 483 511Q483 491 472 491Q467 491 458 494Q342 526 277 623L270 633V-133L277 -123Q307 -77 353 -45T430 -2T473 8Q483 8 483 -11Q483 -15 483 -17T483 -22T481 -25T480 -28T478 -30T474 -31T470 -32T464 -34Q407 -49 364 -84T300 -157T270 -223T261 -262Q259 -272 250 -272Q242 -272 239 -255T223 -201T180 -127Q169 -112 155 -99T125 -76T95 -58T67 -45T44 -36T27 -31L21 -29Q17 -25 17 -11Q17 9 28 9Q33 9 42 6Q158 -26 223 -123L230 -133V633L223 623Q192 577 146 545T70 502T27 492"],8598:[720,195,1000,29,944,"204 662Q257 662 301 676T369 705T394 720Q398 720 407 711T417 697Q417 688 389 671T310 639T212 623Q176 623 153 628Q151 628 221 557T546 232Q942 -164 943 -168Q944 -170 944 -174Q944 -182 938 -188T924 -195Q922 -195 916 -193Q912 -191 517 204Q440 281 326 394T166 553L121 598Q126 589 126 541Q126 438 70 349Q59 332 52 332Q48 332 39 341T29 355Q29 358 38 372T57 407T77 464T86 545Q86 583 78 614T63 663T55 683Q55 693 65 693Q73 693 82 688Q136 662 204 662"],8599:[720,195,1000,55,971,"582 697Q582 701 591 710T605 720Q607 720 630 706T697 677T795 662Q830 662 863 670T914 686T934 694Q942 694 944 685Q944 680 936 663T921 615T913 545Q913 490 927 446T956 379T970 355Q970 351 961 342T947 332Q940 332 929 349Q874 436 874 541Q874 590 878 598L832 553Q787 508 673 395T482 204Q87 -191 83 -193Q77 -195 75 -195Q67 -195 61 -189T55 -174Q55 -170 56 -168Q58 -164 453 232Q707 487 777 557T847 628Q824 623 787 623Q689 623 599 679Q582 690 582 697"],8600:[695,220,1000,55,970,"55 675Q55 683 60 689T75 695Q77 695 83 693Q87 691 482 296Q532 246 605 174T717 62T799 -20T859 -80T878 -97Q874 -93 874 -41Q874 64 929 151Q940 168 947 168Q951 168 960 159T970 145Q970 143 956 121T928 54T913 -45Q913 -83 920 -114T936 -163T944 -185Q942 -194 934 -194Q932 -194 914 -186T864 -170T795 -162Q743 -162 698 -176T630 -205T605 -220Q601 -220 592 -211T582 -197Q582 -187 611 -170T691 -138T787 -123Q824 -123 847 -128Q848 -128 778 -57T453 268Q58 664 56 668Q55 670 55 675"],8601:[695,220,1000,29,944,"126 -41Q126 -92 121 -97Q121 -98 139 -80T200 -20T281 61T394 173T517 296Q909 690 916 693Q922 695 924 695Q932 695 938 689T944 674Q944 670 943 668Q942 664 546 268Q292 13 222 -57T153 -128Q176 -123 212 -123Q310 -123 400 -179Q417 -190 417 -197Q417 -201 408 -210T394 -220Q392 -220 369 -206T302 -177T204 -162Q131 -162 67 -194Q63 -195 59 -192T55 -183Q55 -180 62 -163T78 -115T86 -45Q86 10 72 54T44 120T29 145Q29 149 38 158T52 168Q59 168 70 151Q126 62 126 -41"],8614:[511,11,1000,54,944,"95 155V109Q95 83 92 73T75 63Q61 63 58 74T54 130Q54 140 54 180T55 250Q55 421 57 425Q61 437 75 437Q88 437 91 428T95 393V345V270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H95V155"],8617:[511,11,1126,55,1070,"903 424T903 444T929 464Q976 464 1023 434T1070 347Q1070 316 1055 292T1016 256T971 237T929 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H926Q929 270 941 271T960 275T978 280T998 290T1015 307Q1030 325 1030 347Q1030 355 1027 364T1014 387T983 411T929 424H928Q903 424 903 444"],8618:[511,11,1126,55,1070,"55 347Q55 380 72 404T113 441T159 458T197 464Q222 464 222 444Q222 429 204 426T157 417T110 387Q95 369 95 347Q95 339 98 330T111 307T142 283T196 270H961Q845 357 818 493Q818 494 818 496T817 499Q817 511 834 511H837Q846 511 849 510T855 506T858 497T861 481T869 456Q891 389 942 336T1061 261Q1070 258 1070 250Q1070 244 1065 241T1041 231T1003 212Q962 186 932 152T887 85T866 35T858 4Q856 -6 853 -8T837 -11Q817 -11 817 0Q817 7 822 25Q854 151 961 230H196Q149 230 102 260T55 347"],8636:[511,-230,1000,55,944,"62 230Q56 236 55 244Q55 252 57 255T69 265Q114 292 151 326T208 391T243 448T265 491T273 509Q276 511 288 511Q304 511 306 505Q309 501 303 484Q293 456 279 430T251 383T223 344T196 313T173 291T156 276L148 270H929Q944 261 944 250T929 230H62"],8637:[270,11,1000,55,944,"55 256Q56 264 62 270H929Q944 261 944 250T929 230H148Q149 229 165 215T196 185T231 145T270 87T303 16Q309 -1 306 -5Q304 -11 288 -11Q279 -11 276 -10T269 -4T264 10T253 36T231 75Q172 173 69 235Q59 242 57 245T55 256"],8640:[511,-230,1000,56,945,"691 500Q691 511 711 511Q720 511 723 510T730 504T735 490T746 464T768 425Q796 378 835 339T897 285T933 263Q941 258 942 256T944 245T937 230H70Q56 237 56 250T70 270H852Q802 308 762 364T707 455T691 500"],8641:[270,11,1000,56,944,"56 237T56 250T70 270H937Q944 263 944 256Q944 251 944 250T943 246T940 242T933 238Q794 153 734 7Q729 -7 726 -9T711 -11Q695 -11 693 -5Q690 -1 696 16Q721 84 763 139T852 230H70Q56 237 56 250"],8652:[671,11,1000,55,945,"691 660Q691 671 711 671Q720 671 723 670T730 664T735 650T746 624T768 585Q797 538 836 499T897 445T933 423Q941 418 942 416T944 405T937 390H70Q56 397 56 410T70 430H852Q802 468 762 524T707 615T691 660ZM55 256Q56 264 62 270H929Q944 261 944 250T929 230H148Q149 229 165 215T196 185T231 145T270 87T303 16Q309 -1 306 -5Q304 -11 288 -11Q279 -11 276 -10T269 -4T264 10T253 36T231 75Q172 173 69 235Q59 242 57 245T55 256"],8656:[525,24,1000,56,945,"944 153Q944 140 929 133H318L328 123Q379 69 414 0Q419 -13 419 -17Q419 -24 399 -24Q388 -24 385 -23T377 -12Q332 77 253 144T72 237Q62 240 59 242T56 250T59 257T70 262T89 268T119 278T160 296Q303 366 377 512Q382 522 385 523T401 525Q419 524 419 515Q419 510 414 500Q379 431 328 377L318 367H929Q944 359 944 347Q944 336 930 328L602 327H274L264 319Q225 289 147 250Q148 249 165 241T210 217T264 181L274 173H930Q931 172 933 171T936 169T938 167T941 164T942 162T943 158T944 153"],8657:[694,194,611,31,579,"228 -179Q227 -180 226 -182T223 -186T221 -189T218 -192T214 -193T208 -194Q196 -194 189 -181L188 125V430L176 419Q122 369 59 338Q46 330 40 330Q38 330 31 337V350Q31 362 33 365T46 374Q60 381 77 390T128 426T190 484T247 567T292 677Q295 688 298 692Q302 694 305 694Q313 694 318 677Q334 619 363 568T420 485T481 427T532 391T564 374Q575 368 577 365T579 350V337Q572 330 570 330Q564 330 551 338Q487 370 435 419L423 430L422 125V-181Q409 -194 401 -194Q397 -194 394 -193T388 -189T385 -184T382 -180V-177V475L373 487Q331 541 305 602Q304 601 300 591T290 571T278 548T260 519T238 488L229 476L228 148V-179"],8658:[525,24,1000,56,944,"580 514Q580 525 596 525Q601 525 604 525T609 525T613 524T615 523T617 520T619 517T622 512Q659 438 720 381T831 300T927 263Q944 258 944 250T935 239T898 228T840 204Q696 134 622 -12Q618 -21 615 -22T600 -24Q580 -24 580 -17Q580 -13 585 0Q620 69 671 123L681 133H70Q56 140 56 153Q56 168 72 173H725L735 181Q774 211 852 250Q851 251 834 259T789 283T735 319L725 327H72Q56 332 56 347Q56 360 70 367H681L671 377Q638 412 609 458T580 514"],8659:[694,194,611,31,579,"401 694Q412 694 422 681V375L423 70L435 81Q487 130 551 162Q564 170 570 170Q572 170 579 163V150Q579 138 577 135T564 126Q541 114 518 99T453 48T374 -46T318 -177Q313 -194 305 -194T293 -178T272 -119T225 -31Q158 70 46 126Q35 132 33 135T31 150V163Q38 170 40 170Q46 170 59 162Q122 131 176 81L188 70V375L189 681Q199 694 208 694Q219 694 228 680V352L229 25L238 12Q279 -42 305 -102Q344 -23 373 13L382 25V678Q387 692 401 694"],8660:[526,25,1000,33,966,"308 524Q318 526 323 526Q340 526 340 514Q340 507 336 499Q326 476 314 454T292 417T274 391T260 374L255 368Q255 367 500 367Q744 367 744 368L739 374Q734 379 726 390T707 416T685 453T663 499Q658 511 658 515Q658 525 680 525Q687 524 690 523T695 519T701 507Q766 359 902 287Q921 276 939 269T961 259T966 250Q966 246 965 244T960 240T949 236T930 228T902 213Q763 137 701 -7Q697 -16 695 -19T690 -23T680 -25Q658 -25 658 -15Q658 -11 663 1Q673 24 685 46T707 83T725 109T739 126L744 132Q744 133 500 133Q255 133 255 132L260 126Q265 121 273 110T292 84T314 47T336 1Q341 -11 341 -15Q341 -25 319 -25Q312 -24 309 -23T304 -19T298 -7Q233 141 97 213Q83 221 70 227T51 235T41 239T35 243T34 250T35 256T40 261T51 265T70 273T97 287Q235 363 299 509Q305 522 308 524ZM792 319L783 327H216Q183 294 120 256L110 250L120 244Q173 212 207 181L216 173H783L792 181Q826 212 879 244L889 250L879 256Q826 288 792 319"],8661:[772,272,611,31,579,"290 755Q298 772 305 772T318 757T343 706T393 633Q431 588 473 558T545 515T579 497V484Q579 464 570 464Q564 464 550 470Q485 497 423 550L422 400V100L423 -50Q485 3 550 30Q565 36 570 36Q579 36 579 16V3Q575 -1 549 -12T480 -53T393 -132Q361 -172 342 -208T318 -258T305 -272T293 -258T268 -208T217 -132Q170 -80 128 -51T61 -12T31 3V16Q31 36 40 36Q46 36 61 30Q86 19 109 6T146 -18T173 -38T188 -50V550Q186 549 173 539T147 519T110 495T61 470Q46 464 40 464Q31 464 31 484V497Q34 500 63 513T135 557T217 633Q267 692 290 755ZM374 598Q363 610 351 625T332 651T316 676T305 695L294 676Q282 657 267 636T236 598L228 589V-89L236 -98Q247 -110 259 -125T278 -151T294 -176T305 -195L316 -176Q328 -157 343 -136T374 -98L382 -89V589L374 598"],8704:[694,22,556,0,556,"0 673Q0 684 7 689T20 694Q32 694 38 680T82 567L126 451H430L473 566Q483 593 494 622T512 668T519 685Q524 694 538 694Q556 692 556 674Q556 670 426 329T293 -15Q288 -22 278 -22T263 -15Q260 -11 131 328T0 673ZM414 410Q414 411 278 411T142 410L278 55L414 410"],8706:[715,22,531,42,567,"202 508Q179 508 169 520T158 547Q158 557 164 577T185 624T230 675T301 710L333 715H345Q378 715 384 714Q447 703 489 661T549 568T566 457Q566 362 519 240T402 53Q321 -22 223 -22Q123 -22 73 56Q42 102 42 148V159Q42 276 129 370T322 465Q383 465 414 434T455 367L458 378Q478 461 478 515Q478 603 437 639T344 676Q266 676 223 612Q264 606 264 572Q264 547 246 528T202 508ZM430 306Q430 372 401 400T333 428Q270 428 222 382Q197 354 183 323T150 221Q132 149 132 116Q132 21 232 21Q244 21 250 22Q327 35 374 112Q389 137 409 196T430 306"],8707:[694,0,556,56,500,"56 661T56 674T70 694H487Q497 686 500 679V15Q497 10 487 1L279 0H70Q56 7 56 20T70 40H460V327H84Q70 334 70 347T84 367H460V654H70Q56 661 56 674"],8709:[772,78,500,39,460,"331 696Q335 708 339 722T345 744T350 759T357 769T367 772Q374 772 381 767T388 754Q388 746 377 712L366 673L378 661Q460 575 460 344Q460 281 456 234T432 126T373 27Q319 -22 250 -22Q214 -22 180 -7Q168 -3 168 -4L159 -33Q148 -71 142 -75Q138 -78 132 -78Q124 -78 118 -72T111 -60Q111 -52 122 -18L133 21L125 29Q39 111 39 344Q39 596 137 675Q187 716 251 716Q265 716 278 714T296 710T315 703T331 696ZM276 676Q264 679 246 679Q196 679 159 631Q134 597 128 536T121 356Q121 234 127 174T151 80L234 366Q253 430 275 506T308 618L318 654Q318 656 294 669L276 676ZM181 42Q207 16 250 16Q291 16 324 47Q354 78 366 136T378 356Q378 470 372 528T349 616L348 613Q348 611 264 326L181 42"],8711:[683,33,833,46,786,"46 676Q46 679 51 683H781Q786 679 786 676Q786 674 617 326T444 -26Q439 -33 416 -33T388 -26Q385 -22 216 326T46 676ZM697 596Q697 597 445 597T193 596Q195 591 319 336T445 80L697 596"],8712:[541,41,667,84,583,"84 250Q84 372 166 450T360 539Q361 539 377 539T419 540T469 540H568Q583 532 583 520Q583 511 570 501L466 500Q355 499 329 494Q280 482 242 458T183 409T147 354T129 306T124 272V270H568Q583 262 583 250T568 230H124V228Q124 207 134 177T167 112T231 48T328 7Q355 1 466 0H570Q583 -10 583 -20Q583 -32 568 -40H471Q464 -40 446 -40T417 -41Q262 -41 172 45Q84 127 84 250"],8713:[716,215,667,84,584,"196 25Q84 109 84 250Q84 372 166 450T360 539Q361 539 375 539T413 540T460 540L547 707Q550 716 563 716Q570 716 575 712T581 703T583 696T505 540H568Q583 532 583 520Q583 511 570 501L484 500L366 270H568Q583 262 583 250T568 230H346L247 38Q284 16 328 7Q355 1 466 0H570Q583 -10 583 -20Q583 -32 568 -40H471Q464 -40 447 -40T419 -41Q304 -41 228 3Q117 -211 115 -212Q111 -215 104 -215T92 -212T86 -204T84 -197Q84 -190 89 -183L196 25ZM214 61L301 230H124V228Q124 196 147 147T214 61ZM321 270L440 500Q353 499 329 494Q280 482 242 458T183 409T147 354T129 306T124 272V270H321"],8715:[541,40,667,83,582,"83 520Q83 532 98 540H195Q202 540 220 540T249 541Q404 541 494 455Q582 374 582 250Q582 165 539 99T434 0T304 -39Q297 -40 195 -40H98Q83 -32 83 -20Q83 -10 96 0H200Q311 1 337 6Q369 14 401 28Q422 39 445 55Q484 85 508 127T537 191T542 228V230H98Q84 237 84 250T98 270H542V272Q542 280 539 295T527 336T497 391T445 445Q422 461 401 472Q386 479 374 483T347 491T325 495T298 498T273 499T239 500T200 500L96 501Q83 511 83 520"],8722:[270,-230,778,84,694,"84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250"],8723:[500,166,778,56,722,"56 467T56 480T70 500H707Q722 492 722 480T707 460H409V187H707Q722 179 722 167Q722 154 707 147H409V0V-93Q409 -144 406 -155T389 -166Q376 -166 372 -155T368 -105Q368 -96 368 -62T369 -2V147H70Q56 154 56 167T70 187H369V460H70Q56 467 56 480"],8725:[750,250,500,56,444,"423 750Q432 750 438 744T444 730Q444 725 271 248T92 -240Q85 -250 75 -250Q68 -250 62 -245T56 -231Q56 -221 230 257T407 740Q411 750 423 750"],8726:[750,250,500,56,444,"56 731Q56 740 62 745T75 750Q85 750 92 740Q96 733 270 255T444 -231Q444 -239 438 -244T424 -250Q414 -250 407 -240Q404 -236 230 242T56 731"],8727:[465,-35,500,64,435,"229 286Q216 420 216 436Q216 454 240 464Q241 464 245 464T251 465Q263 464 273 456T283 436Q283 419 277 356T270 286L328 328Q384 369 389 372T399 375Q412 375 423 365T435 338Q435 325 425 315Q420 312 357 282T289 250L355 219L425 184Q434 175 434 161Q434 146 425 136T401 125Q393 125 383 131T328 171L270 213Q283 79 283 63Q283 53 276 44T250 35Q231 35 224 44T216 63Q216 80 222 143T229 213L171 171Q115 130 110 127Q106 124 100 124Q87 124 76 134T64 161Q64 166 64 169T67 175T72 181T81 188T94 195T113 204T138 215T170 230T210 250L74 315Q65 324 65 338Q65 353 74 363T98 374Q106 374 116 368T171 328L229 286"],8728:[444,-55,500,55,444,"55 251Q55 328 112 386T249 444T386 388T444 249Q444 171 388 113T250 55Q170 55 113 112T55 251ZM245 403Q188 403 142 361T96 250Q96 183 141 140T250 96Q284 96 313 109T354 135T375 160Q403 197 403 250Q403 313 360 358T245 403"],8729:[444,-55,500,55,444,"55 251Q55 328 112 386T249 444T386 388T444 249Q444 171 388 113T250 55Q170 55 113 112T55 251"],8730:[800,200,833,71,853,"95 178Q89 178 81 186T72 200T103 230T169 280T207 309Q209 311 212 311H213Q219 311 227 294T281 177Q300 134 312 108L397 -77Q398 -77 501 136T707 565T814 786Q820 800 834 800Q841 800 846 794T853 782V776L620 293L385 -193Q381 -200 366 -200Q357 -200 354 -197Q352 -195 256 15L160 225L144 214Q129 202 113 190T95 178"],8733:[442,11,778,56,722,"56 124T56 216T107 375T238 442Q260 442 280 438T319 425T352 407T382 385T406 361T427 336T442 315T455 297T462 285L469 297Q555 442 679 442Q687 442 722 437V398H718Q710 400 694 400Q657 400 623 383T567 343T527 294T503 253T495 235Q495 231 520 192T554 143Q625 44 696 44Q717 44 719 46H722V-5Q695 -11 678 -11Q552 -11 457 141Q455 145 454 146L447 134Q362 -11 235 -11Q157 -11 107 56ZM93 213Q93 143 126 87T220 31Q258 31 292 48T349 88T389 137T413 178T421 196Q421 200 396 239T362 288Q322 345 288 366T213 387Q163 387 128 337T93 213"],8734:[442,11,1000,55,944,"55 217Q55 305 111 373T254 442Q342 442 419 381Q457 350 493 303L507 284L514 294Q618 442 747 442Q833 442 888 374T944 214Q944 128 889 59T743 -11Q657 -11 580 50Q542 81 506 128L492 147L485 137Q381 -11 252 -11Q166 -11 111 57T55 217ZM907 217Q907 285 869 341T761 397Q740 397 720 392T682 378T648 359T619 335T594 310T574 285T559 263T548 246L543 238L574 198Q605 158 622 138T664 94T714 61T765 51Q827 51 867 100T907 217ZM92 214Q92 145 131 89T239 33Q357 33 456 193L425 233Q364 312 334 337Q285 380 233 380Q171 380 132 331T92 214"],8736:[694,0,722,55,666,"71 0L68 2Q65 3 63 5T58 11T55 20Q55 22 57 28Q67 43 346 361Q397 420 474 508Q595 648 616 671T647 694T661 688T666 674Q666 668 663 663Q662 662 627 622T524 503T390 350L120 41L386 40H653Q666 30 666 20Q666 8 651 0H71"],8739:[750,249,278,119,159,"139 -249H137Q125 -249 119 -235V251L120 737Q130 750 139 750Q152 750 159 735V-235Q151 -249 141 -249H139"],8741:[750,250,500,132,368,"133 736Q138 750 153 750Q164 750 170 739Q172 735 172 250T170 -239Q164 -250 152 -250Q144 -250 138 -244L137 -243Q133 -241 133 -179T132 250Q132 731 133 736ZM329 739Q334 750 346 750Q353 750 361 744L362 743Q366 741 366 679T367 250T367 -178T362 -243L361 -244Q355 -250 347 -250Q335 -250 329 -239Q327 -235 327 250T329 739"],8743:[598,22,667,55,611,"318 591Q325 598 333 598Q344 598 348 591Q349 590 414 445T545 151T611 -4Q609 -22 591 -22Q588 -22 586 -21T581 -20T577 -17T575 -13T572 -9T570 -4L333 528L96 -4Q87 -20 80 -21Q78 -22 75 -22Q57 -22 55 -4Q55 2 120 150T251 444T318 591"],8744:[598,22,667,55,611,"55 580Q56 587 61 592T75 598Q86 598 96 580L333 48L570 580Q579 596 586 597Q588 598 591 598Q609 598 611 580Q611 574 546 426T415 132T348 -15Q343 -22 333 -22T318 -15Q317 -14 252 131T121 425T55 580"],8745:[598,22,667,55,611,"88 -21T75 -21T55 -7V200Q55 231 55 280Q56 414 60 428Q61 430 61 431Q77 500 152 549T332 598Q443 598 522 544T610 405Q611 399 611 194V-7Q604 -22 591 -22Q582 -22 572 -9L570 405Q563 433 556 449T529 485Q498 519 445 538T334 558Q251 558 179 518T96 401Q95 396 95 193V-7Q88 -21 75 -21"],8746:[598,22,667,55,611,"591 598H592Q604 598 611 583V376Q611 345 611 296Q610 162 606 148Q605 146 605 145Q586 68 507 23T333 -22Q268 -22 209 -1T106 66T56 173Q55 180 55 384L56 585Q66 598 75 598Q85 598 95 585V378L96 172L98 162Q112 95 181 57T332 18Q415 18 487 58T570 175Q571 180 571 383V583Q579 598 591 598"],8747:[716,216,417,55,472,"151 -112Q151 -150 106 -161Q106 -165 114 -172T134 -179Q155 -179 170 -146Q181 -120 188 -64T206 101T232 310Q256 472 277 567Q308 716 392 716Q434 716 453 681T472 613Q472 590 458 577T424 564Q404 564 390 578T376 612Q376 650 421 661Q421 663 418 667T407 675T393 679Q387 679 380 675Q360 665 350 619T326 438Q302 190 253 -57Q235 -147 201 -186Q174 -213 138 -216Q93 -216 74 -181T55 -113Q55 -91 69 -78T103 -64Q123 -64 137 -78T151 -112"],8764:[367,-133,778,55,722,"55 166Q55 241 101 304T222 367Q260 367 296 349T362 304T421 252T484 208T554 189Q616 189 655 236T694 338Q694 350 698 358T708 367Q722 367 722 334Q722 260 677 197T562 134H554Q517 134 481 152T414 196T355 248T292 293T223 311Q179 311 145 286Q109 257 96 218T80 156T69 133Q55 133 55 166"],8768:[583,83,278,55,222,"55 569Q55 583 83 583Q122 583 151 565T194 519T215 464T222 411Q222 360 194 304T139 193T111 89Q111 38 134 -7T195 -55Q222 -57 222 -69Q222 -83 189 -83Q130 -83 93 -33T55 90Q55 130 72 174T110 252T148 328T166 411Q166 462 144 507T83 555Q55 556 55 569"],8771:[464,-36,778,55,722,"55 283Q55 356 103 409T217 463Q262 463 297 447T395 382Q431 355 446 344T493 320T554 307H558Q613 307 652 344T694 433Q694 464 708 464T722 432Q722 356 673 304T564 251H554Q510 251 465 275T387 329T310 382T223 407H219Q164 407 122 367Q91 333 85 295T76 253T69 250Q55 250 55 283ZM56 56Q56 71 72 76H706Q722 70 722 56Q722 44 707 36H70Q56 43 56 56"],8773:[589,-22,1000,55,722,"55 388Q55 463 101 526T222 589Q260 589 296 571T362 526T421 474T484 430T554 411Q616 411 655 458T694 560Q694 572 698 580T708 589Q722 589 722 556Q722 482 677 419T562 356H554Q517 356 481 374T414 418T355 471T292 515T223 533Q179 533 145 508Q109 479 96 440T80 378T69 355Q55 355 55 388ZM56 236Q56 249 70 256H707Q722 248 722 236Q722 225 708 217L390 216H72Q56 221 56 236ZM56 42Q56 57 72 62H708Q722 52 722 42Q722 30 707 22H70Q56 29 56 42"],8776:[483,-55,778,55,722,"55 319Q55 360 72 393T114 444T163 472T205 482Q207 482 213 482T223 483Q262 483 296 468T393 413L443 381Q502 346 553 346Q609 346 649 375T694 454Q694 465 698 474T708 483Q722 483 722 452Q722 386 675 338T555 289Q514 289 468 310T388 357T308 404T224 426Q164 426 125 393T83 318Q81 289 69 289Q55 289 55 319ZM55 85Q55 126 72 159T114 210T163 238T205 248Q207 248 213 248T223 249Q262 249 296 234T393 179L443 147Q502 112 553 112Q609 112 649 141T694 220Q694 249 708 249T722 217Q722 153 675 104T555 55Q514 55 468 76T388 123T308 170T224 192Q164 192 125 159T83 84Q80 55 69 55Q55 55 55 85"],8781:[484,-16,778,55,722,"55 464Q55 471 60 477T74 484Q80 484 108 464T172 420T268 376T389 356Q436 356 483 368T566 399T630 436T675 467T695 482Q701 484 703 484Q711 484 716 478T722 464Q722 454 707 442Q550 316 389 316Q338 316 286 329T195 362T124 402T76 437T57 456Q55 462 55 464ZM57 45Q66 58 109 88T230 151T381 183Q438 183 494 168T587 135T658 94T703 61T720 45Q722 39 722 36Q722 28 717 22T703 16Q697 16 669 36T606 80T510 124T389 144Q341 144 294 132T211 101T147 64T102 33T82 18Q76 16 74 16Q66 16 61 22T55 36Q55 39 57 45"],8784:[670,-133,778,56,722,"56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153ZM329 610Q329 634 346 652T389 670Q413 670 431 654T450 611Q450 586 433 568T390 550T347 567T329 610"],8800:[716,215,778,56,722,"166 -215T159 -215T147 -212T141 -204T139 -197Q139 -190 144 -183L306 133H70Q56 140 56 153Q56 168 72 173H327L406 327H72Q56 332 56 347Q56 360 70 367H426Q597 702 602 707Q605 716 618 716Q625 716 630 712T636 703T638 696Q638 692 471 367H707Q722 359 722 347Q722 336 708 328L451 327L371 173H708Q722 163 722 153Q722 140 707 133H351Q175 -210 170 -212Q166 -215 159 -215"],8801:[464,-36,778,56,722,"56 444Q56 457 70 464H707Q722 456 722 444Q722 430 706 424H72Q56 429 56 444ZM56 237T56 250T70 270H707Q722 262 722 250T707 230H70Q56 237 56 250ZM56 56Q56 71 72 76H706Q722 70 722 56Q722 44 707 36H70Q56 43 56 56"],8804:[636,138,778,83,694,"674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118"],8805:[636,138,778,82,694,"83 616Q83 624 89 630T99 636Q107 636 253 568T543 431T687 361Q694 356 694 346T687 331Q685 329 395 192L107 56H101Q83 58 83 76Q83 77 83 79Q82 86 98 95Q117 105 248 167Q326 204 378 228L626 346L360 472Q291 505 200 548Q112 589 98 597T83 616ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118"],8810:[568,67,1000,56,944,"639 -48Q639 -54 634 -60T619 -67H618Q612 -67 536 -26Q430 33 329 88Q61 235 59 239Q56 243 56 250T59 261Q62 266 336 415T615 567L619 568Q622 567 625 567Q639 562 639 548Q639 540 633 534Q632 532 374 391L117 250L374 109Q632 -32 633 -34Q639 -40 639 -48ZM944 -48Q944 -54 939 -60T924 -67H923Q917 -67 841 -26Q735 33 634 88Q366 235 364 239Q361 243 361 250T364 261Q367 266 641 415T920 567L924 568Q927 567 930 567Q944 562 944 548Q944 540 938 534Q937 532 679 391L422 250L679 109Q937 -32 938 -34Q944 -40 944 -48"],8811:[567,67,1000,55,944,"55 539T55 547T60 561T74 567Q81 567 207 498Q297 449 365 412Q633 265 636 261Q639 255 639 250Q639 241 626 232Q614 224 365 88Q83 -65 79 -66Q76 -67 73 -67Q65 -67 60 -61T55 -47Q55 -39 61 -33Q62 -33 95 -15T193 39T320 109L321 110H322L323 111H324L325 112L326 113H327L329 114H330L331 115H332L333 116L334 117H335L336 118H337L338 119H339L340 120L341 121H342L343 122H344L345 123H346L347 124L348 125H349L351 126H352L353 127H354L355 128L356 129H357L358 130H359L360 131H361L362 132L363 133H364L365 134H366L367 135H368L369 136H370L371 137L372 138H373L374 139H375L376 140L378 141L576 251Q63 530 62 533Q55 539 55 547ZM360 539T360 547T365 561T379 567Q386 567 512 498Q602 449 670 412Q938 265 941 261Q944 255 944 250Q944 241 931 232Q919 224 670 88Q388 -65 384 -66Q381 -67 378 -67Q370 -67 365 -61T360 -47Q360 -39 366 -33Q367 -33 400 -15T498 39T625 109L626 110H627L628 111H629L630 112L631 113H632L634 114H635L636 115H637L638 116L639 117H640L641 118H642L643 119H644L645 120L646 121H647L648 122H649L650 123H651L652 124L653 125H654L656 126H657L658 127H659L660 128L661 129H662L663 130H664L665 131H666L667 132L668 133H669L670 134H671L672 135H673L674 136H675L676 137L677 138H678L679 139H680L681 140L683 141L881 251Q368 530 367 533Q360 539 360 547"],8826:[539,41,778,84,694,"84 249Q84 262 91 266T117 270Q120 270 126 270T137 269Q388 273 512 333T653 512Q657 539 676 539Q685 538 689 532T694 520V515Q689 469 672 431T626 366T569 320T500 286T435 265T373 249Q379 248 404 242T440 233T477 221T533 199Q681 124 694 -17Q694 -41 674 -41Q658 -41 653 -17Q646 41 613 84T533 154T418 197T284 220T137 229H114Q104 229 98 230T88 235T84 249"],8827:[539,41,778,83,694,"84 517Q84 539 102 539Q115 539 119 529T125 503T137 459T171 404Q277 275 640 269H661Q694 269 694 249T661 229H640Q526 227 439 214T283 173T173 98T124 -17Q118 -41 103 -41Q83 -41 83 -17Q88 29 105 67T151 132T208 178T277 212T342 233T404 249Q401 250 380 254T345 263T302 276T245 299Q125 358 92 468Q84 502 84 517"],8834:[541,41,778,84,694,"84 250Q84 372 166 450T360 539Q361 539 370 539T395 539T430 540T475 540T524 540H679Q694 532 694 520Q694 511 681 501L522 500H470H441Q366 500 338 496T266 472Q244 461 224 446T179 404T139 337T124 250V245Q124 157 185 89Q244 25 328 7Q348 2 366 2T522 0H681Q694 -10 694 -20Q694 -32 679 -40H526Q510 -40 480 -40T434 -41Q350 -41 289 -25T172 45Q84 127 84 250"],8835:[541,40,778,83,693,"83 520Q83 532 98 540H251Q267 540 297 540T343 541Q427 541 488 525T605 455Q693 374 693 250Q693 165 650 99T545 0T415 -39Q407 -40 251 -40H98Q83 -32 83 -20Q83 -10 96 0H255H308H337Q412 0 439 4T512 28Q533 39 553 54T599 96T639 163T654 250Q654 341 592 411Q557 449 512 472Q468 491 439 495T335 500H306H255L96 501Q83 511 83 520"],8838:[637,138,778,84,694,"84 346Q84 468 166 546T360 635Q361 635 370 635T395 635T430 636T475 636T524 636H679Q694 628 694 616Q694 607 681 597L522 596H470H441Q366 596 338 592T266 568Q244 557 224 542T179 500T139 433T124 346V341Q124 253 185 185Q244 121 328 103Q348 98 366 98T522 96H681Q694 86 694 76Q694 64 679 56H526Q510 56 480 56T434 55Q350 55 289 71T172 141Q84 223 84 346ZM104 -131T104 -118T118 -98H679Q694 -106 694 -118T679 -138H118Q104 -131 104 -118"],8839:[637,138,778,83,693,"83 616Q83 628 98 636H251Q267 636 297 636T343 637Q427 637 488 621T605 551Q693 470 693 346Q693 261 650 195T545 96T415 57Q407 56 251 56H98Q83 64 83 76Q83 86 96 96H255H308H337Q412 96 439 100T512 124Q533 135 553 150T599 192T639 259T654 346Q654 437 592 507Q557 545 512 568Q468 587 439 591T335 596H306H255L96 597Q83 607 83 616ZM84 -131T84 -118T98 -98H659Q674 -106 674 -118T659 -138H98Q84 -131 84 -118"],8846:[598,22,667,55,611,"591 598H592Q604 598 611 583V376Q611 345 611 296Q610 162 606 148Q605 146 605 145Q586 68 507 23T333 -22Q268 -22 209 -1T106 66T56 173Q55 180 55 384L56 585Q66 598 75 598Q85 598 95 585V378L96 172L98 162Q112 95 181 57T332 18Q415 18 487 58T570 175Q571 180 571 383V583Q579 598 591 598ZM313 406Q313 417 313 435T312 459Q312 483 316 493T333 503T349 494T353 461V406V325H515Q516 325 519 323T527 316T531 305T527 294T520 287T515 285H353V204V152Q353 127 350 117T333 107T316 117T312 152Q312 158 312 175T313 204V285H151Q150 285 147 287T139 294T135 305T139 316T146 323T151 325H313V406"],8849:[636,138,778,84,714,"94 620Q98 632 110 636H699Q714 628 714 616T699 596H134V96H698Q714 90 714 76Q714 64 699 56H109Q104 59 95 69L94 344V620ZM84 -118Q84 -103 100 -98H698Q714 -104 714 -118Q714 -130 699 -138H98Q84 -131 84 -118"],8850:[636,138,778,64,694,"64 603T64 616T78 636H668Q675 633 683 623V69Q675 59 668 56H78Q64 63 64 76Q64 91 80 96H643V596H78Q64 603 64 616ZM64 -118Q64 -108 79 -98H678Q694 -104 694 -118Q694 -130 679 -138H78Q64 -131 64 -118"],8851:[598,0,667,61,605,"83 0Q79 0 76 1T71 3T67 6T65 9T63 13T61 16V301L62 585Q70 595 76 598H592Q602 590 605 583V15Q598 2 587 0Q583 0 580 1T575 3T571 6T569 9T567 13T565 16V558H101V15Q94 2 83 0"],8852:[598,0,667,61,605,"77 0Q65 4 61 16V301L62 585Q72 598 81 598Q94 598 101 583V40H565V583Q573 598 585 598Q598 598 605 583V15Q602 10 592 1L335 0H77"],8853:[583,83,778,56,722,"56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM364 542Q308 539 251 509T148 418T96 278V270H369V542H364ZM681 278Q675 338 650 386T592 462T522 509T458 535T412 542H409V270H681V278ZM96 222Q104 150 139 95T219 12T302 -29T366 -42H369V230H96V222ZM681 222V230H409V-42H412Q429 -42 456 -36T521 -10T590 37T649 113T681 222"],8854:[583,83,778,56,722,"56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM681 278Q669 385 591 463T381 542Q283 542 196 471T96 278V270H681V278ZM275 -42T388 -42T585 32T681 222V230H96V222Q108 107 191 33"],8855:[583,83,778,56,722,"56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM582 471Q531 510 496 523Q446 542 381 542Q324 542 272 519T196 471L389 278L485 375L582 471ZM167 442Q95 362 95 250Q95 137 167 58L359 250L167 442ZM610 58Q682 138 682 250Q682 363 610 442L418 250L610 58ZM196 29Q209 16 230 2T295 -27T388 -42Q409 -42 429 -40T465 -33T496 -23T522 -11T544 1T561 13T574 22T582 29L388 222L196 29"],8856:[583,83,778,56,722,"56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM582 471Q581 472 571 480T556 491T539 502T517 514T491 525T460 534T424 539T381 542Q272 542 184 460T95 251Q95 198 113 150T149 80L167 58L582 471ZM388 -42Q513 -42 597 44T682 250Q682 363 610 442L196 29Q209 16 229 2T295 -27T388 -42"],8857:[583,83,778,56,722,"56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM682 250Q682 322 649 387T546 497T381 542Q272 542 184 459T95 250Q95 132 178 45T389 -42Q515 -42 598 45T682 250ZM311 250Q311 285 332 304T375 328Q376 328 382 328T392 329Q424 326 445 305T466 250Q466 217 445 195T389 172Q354 172 333 195T311 250"],8866:[695,0,611,55,555,"55 678Q55 679 56 681T58 684T61 688T65 691T70 693T77 694Q88 692 95 679V367H540Q555 359 555 347Q555 334 540 327H95V15Q88 2 77 0Q73 0 70 1T65 3T61 6T59 9T57 13T55 16V678"],8867:[695,0,611,54,555,"515 678Q515 679 516 681T518 684T521 688T525 691T530 693T537 694Q548 692 555 679V15Q548 2 537 0Q533 0 530 1T525 3T521 6T519 9T517 13T515 16V327H71Q70 327 67 329T59 336T55 347T59 358T66 365T71 367H515V678"],8868:[668,0,778,55,723,"55 642T55 648T59 659T66 666T71 668H708Q723 660 723 648T708 628H409V15Q402 2 391 0Q387 0 384 1T379 3T375 6T373 9T371 13T369 16V628H71Q70 628 67 630T59 637"],8869:[669,0,778,54,723,"369 652Q369 653 370 655T372 658T375 662T379 665T384 667T391 668Q402 666 409 653V40H708Q723 32 723 20T708 0H71Q70 0 67 2T59 9T55 20T59 31T66 38T71 40H369V652"],8872:[750,249,867,119,812,"139 -249H137Q125 -249 119 -235V251L120 737Q130 750 139 750Q152 750 159 735V367H796Q811 359 811 347Q811 336 797 328L479 327H161L159 328V172L161 173H797Q798 172 800 171T803 169T805 167T808 164T809 162T810 158T811 153Q811 140 796 133H159V-235Q151 -249 141 -249H139"],8900:[488,-12,500,12,488,"242 486Q245 488 250 488Q256 488 258 486Q262 484 373 373T486 258T488 250T486 242T373 127T258 14Q256 12 250 12Q245 12 242 14Q237 16 127 126T14 242Q12 245 12 250T14 258Q16 263 126 373T242 486ZM439 250L250 439L61 250L250 61L439 250"],8901:[310,-190,278,78,199,"78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250"],8902:[486,-16,500,3,497,"210 282Q210 284 225 381T241 480Q241 484 245 484Q249 486 251 486Q258 486 260 477T272 406Q275 390 276 380Q290 286 290 282L388 299Q484 314 487 314H488Q497 314 497 302Q497 297 434 266Q416 257 404 251L315 206L361 118Q372 98 383 75T401 40L407 28Q407 16 395 16Q394 16 392 16L390 17L250 159L110 17L108 16Q106 16 105 16Q93 16 93 28L99 40Q105 52 116 75T139 118L185 206L96 251Q6 296 4 300Q3 301 3 302Q3 314 12 314H13Q16 314 112 299L210 282"],8904:[505,5,900,26,873,"833 50T833 250T832 450T659 351T487 250T658 150T832 50Q833 50 833 250ZM873 10Q866 -5 854 -5Q851 -5 845 -3L449 226L260 115Q51 -5 43 -5Q39 -5 35 -1T28 7L26 11V489Q33 505 43 505Q51 505 260 385L449 274L845 503Q851 505 853 505Q866 505 873 490V10ZM412 250L67 450Q66 450 66 250T67 50Q69 51 240 150T412 250"],8942:[900,30,278,78,199,"78 30Q78 54 95 72T138 90Q162 90 180 74T199 31Q199 6 182 -12T139 -30T96 -13T78 30ZM78 440Q78 464 95 482T138 500Q162 500 180 484T199 441Q199 416 182 398T139 380T96 397T78 440ZM78 840Q78 864 95 882T138 900Q162 900 180 884T199 841Q199 816 182 798T139 780T96 797T78 840"],8943:[310,-190,1172,78,1093,"78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250ZM525 250Q525 274 542 292T585 310Q609 310 627 294T646 251Q646 226 629 208T586 190T543 207T525 250ZM972 250Q972 274 989 292T1032 310Q1056 310 1074 294T1093 251Q1093 226 1076 208T1033 190T990 207T972 250"],8945:[820,-100,1282,133,1148,"133 760Q133 784 150 802T193 820Q217 820 235 804T254 761Q254 736 237 718T194 700T151 717T133 760ZM580 460Q580 484 597 502T640 520Q664 520 682 504T701 461Q701 436 684 418T641 400T598 417T580 460ZM1027 160Q1027 184 1044 202T1087 220Q1111 220 1129 204T1148 161Q1148 136 1131 118T1088 100T1045 117T1027 160"],8968:[750,250,444,174,422,"174 734Q178 746 190 750H298H369Q400 750 411 747T422 730T411 713T372 709Q365 709 345 709T310 710H214V-235Q206 -248 196 -250Q192 -250 189 -249T184 -247T180 -244T178 -241T176 -237T174 -234V734"],8969:[750,250,444,21,269,"21 717T21 730T32 746T75 750H147H256Q266 742 269 735V-235Q262 -248 251 -250Q247 -250 244 -249T239 -247T235 -244T233 -241T231 -237T229 -234V710H133Q119 710 99 710T71 709Q43 709 32 713"],8970:[751,251,444,174,423,"174 734Q174 735 175 737T177 740T180 744T184 747T189 749T196 750Q206 748 214 735V-210H310H373Q401 -210 411 -213T422 -230T411 -247T369 -251Q362 -251 338 -251T298 -250H190Q178 -246 174 -234V734"],8971:[751,250,444,21,269,"229 734Q229 735 230 737T232 740T235 744T239 747T244 749T251 750Q262 748 269 735V-235Q266 -240 256 -249L147 -250H77Q43 -250 32 -247T21 -230T32 -213T72 -209Q79 -209 99 -209T133 -210H229V734"],8994:[388,-122,1000,55,944,"55 141Q55 149 72 174T125 234T209 303T329 360T478 388H526Q649 383 765 319Q814 291 858 250T923 179T944 141Q944 133 938 128T924 122Q914 124 912 125T902 139Q766 328 500 328Q415 328 342 308T225 258T150 199T102 148T84 124Q81 122 75 122Q55 127 55 141"],8995:[378,-134,1000,55,944,"923 378Q944 378 944 358Q944 345 912 311T859 259Q710 134 500 134Q288 134 140 259Q55 336 55 358Q55 366 61 372T75 378Q78 378 84 376Q86 376 101 356T147 310T221 257T339 212T500 193Q628 193 734 236Q841 282 903 363Q914 378 923 378"],9136:[744,244,412,56,357,"357 741V726Q357 720 349 715Q261 655 242 539Q240 526 240 454T239 315T239 247Q240 235 240 124V40Q240 -17 233 -53T201 -130Q155 -206 78 -244H69H64Q58 -244 57 -243T56 -234Q56 -232 56 -231V-225Q56 -218 63 -215Q153 -153 170 -39Q172 -25 173 119V219Q173 245 174 249Q173 258 173 376V460Q173 515 178 545T201 611Q244 695 327 741L334 744H354L357 741"],9137:[744,244,412,55,357,"78 744Q153 706 196 640T239 492V376Q239 341 239 314T238 271T238 253Q239 251 239 223V119V49Q239 -39 254 -85Q263 -111 275 -134T301 -172T326 -197T346 -213T356 -221T357 -232V-241L354 -244H334Q264 -209 222 -146T174 -12Q173 -6 173 95Q173 134 173 191T174 250Q173 258 173 382V451Q173 542 159 585Q145 626 120 658T75 706T56 723V731Q56 741 57 742T66 744H78"],10216:[750,250,389,109,333,"333 -232Q332 -239 327 -244T313 -250Q303 -250 296 -240Q293 -233 202 6T110 250T201 494T296 740Q299 745 306 749L309 750Q312 750 313 750Q331 750 333 732Q333 727 243 489Q152 252 152 250T243 11Q333 -227 333 -232"],10217:[750,250,389,55,279,"55 732Q56 739 61 744T75 750Q85 750 92 740Q95 733 186 494T278 250T187 6T92 -240Q85 -250 75 -250Q67 -250 62 -245T55 -232Q55 -227 145 11Q236 248 236 250T145 489Q55 727 55 732"],10222:[744,244,412,173,357,"357 741V726Q357 720 349 715Q261 655 242 539Q240 526 240 394V331Q240 259 239 250Q240 242 240 119V49Q240 -42 254 -85Q263 -111 275 -134T301 -172T326 -197T346 -213T356 -221T357 -232V-241L354 -244H334Q264 -209 222 -146T174 -12Q173 -6 173 95Q173 134 173 191T174 250Q173 260 173 376V460Q173 515 178 545T201 611Q244 695 327 741L334 744H354L357 741"],10223:[744,244,412,55,240,"78 744Q153 706 196 640T239 492V376Q239 339 239 311T238 269T238 252Q240 236 240 124V40Q240 -18 233 -53T202 -130Q156 -206 79 -244H70H65Q58 -244 57 -242T56 -231T57 -220T64 -215Q153 -154 170 -39Q173 -18 174 119V247Q173 249 173 382V451Q173 542 159 585Q145 626 120 658T75 706T56 723V731Q56 741 57 742T66 744H78"],10229:[511,11,1609,55,1525,"165 270H1510Q1525 262 1525 250T1510 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270"],10230:[511,11,1638,84,1553,"84 237T84 250T98 270H1444Q1328 357 1301 493Q1301 494 1301 496T1300 499Q1300 511 1317 511H1320Q1329 511 1332 510T1338 506T1341 497T1344 481T1352 456Q1374 389 1425 336T1544 261Q1553 258 1553 250Q1553 244 1548 241T1524 231T1486 212Q1445 186 1415 152T1370 85T1349 35T1341 4Q1339 -6 1336 -8T1320 -11Q1300 -11 1300 0Q1300 7 1305 25Q1337 151 1444 230H98Q84 237 84 250"],10231:[511,11,1859,55,1803,"165 270H1694Q1578 357 1551 493Q1551 494 1551 496T1550 499Q1550 511 1567 511H1570Q1579 511 1582 510T1588 506T1591 497T1594 481T1602 456Q1624 389 1675 336T1794 261Q1803 258 1803 250Q1803 244 1798 241T1774 231T1736 212Q1695 186 1665 152T1620 85T1599 35T1591 4Q1589 -6 1586 -8T1570 -11Q1550 -11 1550 0Q1550 7 1555 25Q1587 151 1694 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270"],10232:[525,24,1609,56,1554,"274 173H1539Q1540 172 1542 171T1545 169T1547 167T1550 164T1551 162T1552 158T1553 153Q1553 140 1538 133H318L328 123Q379 69 414 0Q419 -13 419 -17Q419 -24 399 -24Q388 -24 385 -23T377 -12Q332 77 253 144T72 237Q62 240 59 242T56 250T59 257T70 262T89 268T119 278T160 296Q303 366 377 512Q382 522 385 523T401 525Q419 524 419 515Q419 510 414 500Q379 431 328 377L318 367H1538Q1553 359 1553 347Q1553 336 1539 328L1221 327H903L900 328L602 327H274L264 319Q225 289 147 250Q148 249 165 241T210 217T264 181L274 173"],10233:[525,24,1638,56,1582,"1218 514Q1218 525 1234 525Q1239 525 1242 525T1247 525T1251 524T1253 523T1255 520T1257 517T1260 512Q1297 438 1358 381T1469 300T1565 263Q1582 258 1582 250T1573 239T1536 228T1478 204Q1334 134 1260 -12Q1256 -21 1253 -22T1238 -24Q1218 -24 1218 -17Q1218 -13 1223 0Q1258 69 1309 123L1319 133H70Q56 140 56 153Q56 168 72 173H1363L1373 181Q1412 211 1490 250Q1489 251 1472 259T1427 283T1373 319L1363 327H710L707 328L390 327H72Q56 332 56 347Q56 360 70 367H1319L1309 377Q1276 412 1247 458T1218 514"],10234:[525,24,1858,56,1802,"1438 514Q1438 525 1454 525Q1459 525 1462 525T1467 525T1471 524T1473 523T1475 520T1477 517T1480 512Q1517 438 1578 381T1689 300T1785 263Q1802 258 1802 250T1793 239T1756 228T1698 204Q1554 134 1480 -12Q1476 -21 1473 -22T1458 -24Q1438 -24 1438 -17Q1438 -13 1443 0Q1478 69 1529 123L1539 133H318L328 123Q379 69 414 0Q419 -13 419 -17Q419 -24 399 -24Q388 -24 385 -23T377 -12Q332 77 253 144T72 237Q62 240 59 242T56 250T59 257T70 262T89 268T119 278T160 296Q303 366 377 512Q382 522 385 523T401 525Q419 524 419 515Q419 510 414 500Q379 431 328 377L318 367H1539L1529 377Q1496 412 1467 458T1438 514ZM274 173H1583L1593 181Q1632 211 1710 250Q1709 251 1692 259T1647 283T1593 319L1583 327H930L927 328L602 327H274L264 319Q225 289 147 250Q148 249 165 241T210 217T264 181L274 173"],10236:[511,11,1638,54,1553,"95 155V109Q95 83 92 73T75 63Q61 63 58 74T54 130Q54 140 54 180T55 250Q55 421 57 425Q61 437 75 437Q88 437 91 428T95 393V345V270H1444Q1328 357 1301 493Q1301 494 1301 496T1300 499Q1300 511 1317 511H1320Q1329 511 1332 510T1338 506T1341 497T1344 481T1352 456Q1374 389 1425 336T1544 261Q1553 258 1553 250Q1553 244 1548 241T1524 231T1486 212Q1445 186 1415 152T1370 85T1349 35T1341 4Q1339 -6 1336 -8T1320 -11Q1300 -11 1300 0Q1300 7 1305 25Q1337 151 1444 230H95V155"],10927:[636,138,778,84,694,"84 346Q84 359 91 363T117 367Q120 367 126 367T137 366Q388 370 512 430T653 609Q657 636 676 636Q685 635 689 629T694 618V612Q689 566 672 528T626 463T569 417T500 383T435 362T373 346Q379 345 404 339T440 330T477 318T533 296Q592 266 630 223T681 145T694 78Q694 57 674 57Q662 57 657 67T652 92T640 135T606 191Q500 320 137 326H114Q104 326 98 327T88 332T84 346ZM84 -131T84 -118T98 -98H679Q694 -106 694 -118T679 -138H98Q84 -131 84 -118"],10928:[636,138,778,83,694,"84 614Q84 636 102 636Q115 636 119 626T125 600T137 556T171 501Q277 372 640 366H661Q694 366 694 346T661 326H640Q578 325 526 321T415 307T309 280T222 237T156 172T124 83Q122 66 118 62T103 57Q100 57 98 57T95 58T93 59T90 62T85 67Q83 71 83 80Q88 126 105 164T151 229T208 275T277 309T342 330T404 346Q401 347 380 351T345 360T302 373T245 396Q125 455 92 565Q84 599 84 614ZM84 -131T84 -118T98 -98H679Q694 -106 694 -118T679 -138H98Q84 -131 84 -118"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js deleted file mode 100644 index 0eb7596..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{8710:[716,0,833,46,786,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/MathOperators.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js deleted file mode 100644 index c31488b..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{9824:[727,131,778,55,723,"181 -21Q134 -21 96 27T55 193Q55 224 58 247T82 317T143 410Q172 443 234 498Q282 543 314 598T360 687T380 725Q386 727 389 727Q395 727 398 725T406 716T413 702T423 677T439 641Q481 556 544 498Q633 420 678 353T723 204Q723 142 711 94T669 12T590 -21Q520 -21 490 8T459 66V70H409V62Q409 22 416 -17T430 -82T437 -112Q437 -131 407 -131Q403 -131 397 -131T389 -130T382 -130T372 -131Q341 -131 341 -111Q341 -107 348 -82T362 -18T369 62V70H319V66Q319 57 314 44T297 16T257 -10T191 -21H181"],9825:[716,33,778,55,723,"55 490Q55 557 71 604T114 674T167 706T222 716Q279 716 322 684T389 605Q391 610 395 617T414 643T447 677T494 704T555 716Q642 716 682 652T723 490Q723 455 718 426T684 342T602 227Q573 196 537 161T485 110T449 63T412 -8Q408 -22 404 -27T389 -33Q382 -33 379 -31T372 -23T366 -8T355 18T335 54Q319 81 298 104T239 163T176 227Q102 310 79 371T55 490ZM198 674Q143 664 119 613T95 491Q95 415 137 346Q174 282 265 194T384 48L389 39Q391 42 397 54T406 71T415 86T427 104T442 122T464 146T491 172Q571 249 613 303Q683 396 683 487Q683 581 649 631Q613 676 556 676Q495 676 457 634T410 538Q407 514 390 514Q386 514 380 517Q372 520 369 536T355 581T319 635Q277 675 223 675H217H208L204 674Q200 674 198 674"],9826:[727,162,778,55,723,"370 714Q370 717 375 722T388 727Q398 727 403 721T417 697Q420 692 421 689Q536 465 709 304Q723 291 723 282T709 260Q529 93 406 -153Q402 -162 390 -162H389Q379 -162 376 -158T357 -125Q247 89 89 241L64 265Q55 272 55 282Q55 287 57 290T64 300T77 312T98 331T127 361Q197 435 258 523T344 663L370 714ZM655 299Q568 384 508 470T389 662L376 638Q362 613 341 577T289 497T215 399T123 299L105 282L123 265Q210 180 270 94T389 -98L402 -74Q416 -49 437 -13T489 67T563 165T655 265L673 282L655 299"],9827:[726,131,778,28,750,"213 532Q213 615 265 670T389 726Q461 726 513 671T565 532Q565 511 562 492T553 458T541 432T526 409T512 393T498 379L490 371L511 326Q512 326 516 330T528 341T546 353T572 363T606 368Q664 368 707 315T750 174Q750 87 699 33T579 -22Q567 -22 553 -20T517 -10T479 16T459 63V70H409V62Q409 22 416 -17T430 -82T437 -112Q437 -131 407 -131Q403 -131 397 -131T389 -130T382 -130T372 -131Q341 -131 341 -111Q341 -107 348 -82T362 -18T369 62V70H319V63Q315 25 281 2T197 -22Q132 -22 80 32T28 174Q28 255 69 311T175 368Q192 368 207 364T232 353T250 341T262 331T267 326L288 371L280 378Q272 385 267 391T253 407T238 430T226 457T217 492T213 532"],9837:[750,22,389,55,332,"200 467Q254 467 293 428T332 321Q332 147 104 -11L88 -22H75Q62 -22 56 -16L55 362V647Q55 743 60 748Q63 750 76 750H83Q87 750 95 744V434L104 440Q144 467 200 467ZM237 322Q237 360 225 388T183 417Q158 417 134 407T101 378Q96 370 96 349T95 197V34Q152 91 194 167T237 322"],9838:[734,223,389,65,324,"65 721Q78 734 94 734Q100 734 104 727V444L116 449Q129 454 157 465T208 486Q313 527 314 527Q318 527 324 521V-210Q306 -223 294 -223Q289 -223 284 -216V-13L270 -18Q257 -24 231 -34T180 -54Q77 -96 74 -96T65 -90V721ZM104 13Q282 84 283 85Q284 85 284 252Q284 418 283 418L230 396L140 360L104 346V13"],9839:[723,223,389,55,333,"101 -223Q94 -223 93 -217T91 -188V-151Q91 -88 90 -88Q87 -88 80 -92T68 -96Q62 -96 56 -90L55 -50V-22Q55 -8 58 -4T78 5L91 10V177Q91 343 90 343Q87 343 80 339T68 335Q62 335 56 341L55 381V409Q55 423 58 427T78 436L91 441V543V616Q91 643 93 648T106 656Q119 662 126 659Q130 657 130 645T131 554V456L257 503V607L258 710L260 712Q261 715 272 719T286 723Q293 723 295 715T297 671V617Q297 519 298 519Q301 519 307 522T319 526Q327 526 333 521V437L330 435Q328 432 312 427L297 421V254Q297 88 298 88Q301 88 307 91T319 95Q327 95 333 90V6L330 4Q328 1 312 -4L297 -10V-78V-122Q297 -145 295 -149T282 -156Q274 -160 268 -160Q257 -160 257 -130V-89V-25L131 -72V-210Q123 -215 116 -218T104 -222L101 -223ZM257 72V406L131 359V25L257 72"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/MiscSymbols.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js deleted file mode 100644 index 0e35ec5..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{730:[715,-542,500,147,352,"147 628Q147 669 179 692T244 715Q298 715 325 689T352 629Q352 592 323 567T249 542Q202 542 175 567T147 628ZM313 628Q313 660 300 669T259 678H253Q248 678 242 678T234 679Q217 679 207 674T192 659T188 644T187 629Q187 600 198 590Q210 579 250 579H265Q279 579 288 581T305 595T313 628"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/SpacingModLetters.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js deleted file mode 100644 index 776fac8..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Main,{10815:[683,0,750,28,721,"28 660Q28 676 31 679T46 683H50Q87 681 182 681Q217 681 247 681T294 682T315 682Q321 682 323 682T328 679T331 673T332 660Q332 643 328 640T304 637Q239 637 231 626Q229 620 229 334V46H520V334Q520 620 518 626Q510 637 445 637Q426 637 422 640T417 660Q417 675 420 678T432 682H435Q437 682 467 682T569 681T671 681T703 682Q714 682 717 679T721 660Q721 643 717 640T693 637Q628 637 620 626Q619 623 619 342Q619 60 620 57Q628 46 693 46Q714 46 717 43T721 23Q721 5 715 1Q713 0 374 0Q36 0 34 1Q28 5 28 23Q28 40 31 43T56 46Q121 46 129 57Q131 63 131 342Q131 620 129 626Q121 637 56 637Q35 637 32 640T28 660"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/SuppMathOperators.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js deleted file mode 100644 index 7fbc334..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Math-bold-italic"]={directory:"Math/BoldItalic",family:"MathJax_Math",id:"MJMATHBI",weight:"bold",style:"italic",skew:{65:0.16,66:0.0958,67:0.0958,68:0.0639,69:0.0958,70:0.0958,71:0.0958,72:0.0639,73:0.128,74:0.192,75:0.0639,76:0.0319,77:0.0958,78:0.0958,79:0.0958,80:0.0958,81:0.0958,82:0.0958,83:0.0958,84:0.0958,85:0.0319,88:0.0958,90:0.0958,99:0.0639,100:0.192,101:0.0639,102:0.192,103:0.0319,104:-0.0319,108:0.0958,111:0.0639,112:0.0958,113:0.0958,114:0.0639,115:0.0639,116:0.0958,117:0.0319,118:0.0319,119:0.0958,120:0.0319,121:0.0639,122:0.0639,915:0.0958,916:0.192,920:0.0958,923:0.192,926:0.0958,928:0.0639,931:0.0958,933:0.0639,934:0.0958,936:0.0639,937:0.0958,945:0.0319,946:0.0958,948:0.0639,949:0.0958,950:0.0958,951:0.0639,952:0.0958,953:0.0639,956:0.0319,957:0.0319,958:0.128,959:0.0639,961:0.0958,962:0.0958,964:0.0319,965:0.0319,966:0.0958,967:0.0639,968:0.128,977:0.0958,981:0.0958,1009:0.0958,1013:0.0639},32:[0,0,250,0,0,""],47:[711,210,894,160,733,"189 -210Q179 -210 170 -203T160 -179Q160 -171 162 -166Q164 -163 420 266T679 698Q686 711 704 711Q714 711 723 704T733 681Q733 672 730 667Q723 654 469 228T211 -201Q202 -210 189 -210"],65:[711,0,869,45,839,"65 0Q45 0 45 18Q48 52 61 60Q65 62 81 62Q155 62 165 74Q166 74 265 228T465 539T569 699Q576 707 583 709T611 711T637 710T649 700Q650 697 695 380L741 63L784 62H827Q839 50 839 45L835 29Q831 9 827 5T806 0Q803 0 790 0T743 1T657 2Q585 2 547 1T504 0Q481 0 481 17Q484 54 497 60Q501 62 541 62Q580 62 580 63Q580 68 573 121T564 179V181H308L271 124Q236 69 236 67T283 62H287Q316 62 316 46Q316 26 307 8Q302 3 295 0L262 1Q242 2 168 2Q119 2 93 1T65 0ZM537 372Q533 402 528 435T521 486T518 504V505Q517 505 433 375L348 244L451 243Q555 243 555 244L537 372"],66:[686,0,866,43,853,"258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 449 686H477H586Q684 686 733 677T817 634Q853 598 853 547Q853 499 826 460T761 401T695 371T654 360H653L662 358Q670 357 683 354T712 344T744 327T774 303T795 269T804 224Q804 148 732 79T533 1Q524 0 288 0H58Q47 5 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624ZM703 550Q703 571 695 586T675 609T656 619T643 623L545 624H447L417 504Q386 384 386 383T470 382Q554 383 565 385Q632 397 667 447T703 550ZM651 240Q651 265 645 282T626 309T608 322T592 329Q587 330 479 331H373L340 198Q307 65 306 64Q306 62 406 62L507 63L519 65Q565 76 596 107T639 171T651 240"],67:[704,17,817,55,855,"380 -17Q335 -17 293 -10T207 16T130 65T76 144T55 256Q55 306 70 361T122 476T211 582T345 663T525 702H545Q673 702 731 634L777 668Q783 672 789 677T800 685T808 691T814 695T818 698T822 700T825 702T828 703T830 703T833 703Q855 703 855 690Q855 686 823 558T789 426Q786 421 782 420T756 419Q734 420 729 421T724 432Q724 434 725 447T726 472Q726 552 678 604Q640 640 586 640H574Q533 640 494 632T409 604T324 541T260 437Q243 397 227 333T210 219Q210 152 237 117Q255 90 299 68T420 46H429Q506 46 580 100T678 234Q683 249 687 251T712 254H723Q743 254 743 240Q743 232 736 213T710 162T663 100T586 40T477 -5Q433 -17 380 -17"],68:[686,0,938,43,914,"258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 437 686Q659 686 668 685Q727 680 772 662T842 621T883 568T905 517T913 475Q914 466 914 434Q914 373 892 307T828 179T712 69T548 7Q517 2 494 2T279 0H58Q47 5 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624ZM768 475Q768 515 753 544T718 588T666 611T613 622T563 624H538H532H452L382 344Q311 64 311 63T363 62H405Q490 62 545 76T656 142Q696 185 724 265T760 399T768 475"],69:[680,0,810,43,825,"257 618H231Q198 618 198 636Q202 672 214 678L219 680H811Q817 677 820 673T824 666L825 664Q825 659 814 549T799 433Q793 424 771 424Q752 424 746 427T740 441Q740 445 742 466T744 505Q744 561 722 585T646 616Q639 617 545 618H456Q456 617 427 502T398 385Q398 384 435 384Q461 385 471 385T499 391T526 405T545 433T562 478Q566 494 571 497T595 501H604Q622 501 626 486Q626 482 593 349T557 213Q552 205 530 205Q499 205 499 219Q499 222 503 242T508 281Q508 308 491 314T429 322Q425 322 423 322H382L317 64Q317 62 390 62Q460 62 493 64T569 80T640 124Q665 149 686 187T719 253T733 283Q739 289 760 289Q791 289 791 274Q791 267 763 201T706 71L678 8Q676 4 667 0H58Q47 5 43 15Q47 54 60 60Q64 62 113 62H162L163 66Q163 67 231 341T301 616Q301 618 257 618"],70:[680,0,689,43,809,"257 618H231Q198 618 198 636Q202 672 214 678L219 680H795Q801 677 804 673T808 666L809 664Q809 659 798 549T783 433Q777 424 755 424Q736 424 730 427T724 444Q724 448 725 468T727 507V524Q727 541 724 554T713 577T698 594T676 605T653 612T625 616T597 617T566 618T538 618H456L455 614Q455 611 424 491L394 371H429Q454 372 463 372T491 378T517 392T536 419T552 464Q556 481 561 484T586 488Q603 488 607 486Q616 482 616 473Q616 467 584 337T549 201Q542 192 521 192Q503 192 497 195T490 209Q490 212 492 224Q499 251 499 269Q499 288 489 296T465 306T417 308L379 309L348 188Q341 161 334 129T322 80L318 65L317 62H375H409Q430 62 438 59T447 45Q444 8 431 2L426 0L377 1Q347 2 231 2Q152 2 111 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L163 66Q163 67 231 341T301 616Q301 618 257 618"],71:[704,16,887,56,854,"379 -16Q233 -16 145 52T56 255Q56 310 73 368T127 483T216 586T347 663T518 702H540Q562 702 582 700T616 696T644 689T667 681T686 670T702 659T717 647T731 635L776 668Q782 672 788 677T799 685T807 691T813 695T817 698T821 700T824 702T827 703T829 703T832 703Q854 703 854 690Q854 686 822 558T788 426Q785 421 781 420T755 419Q734 420 729 422T723 432Q723 434 724 446T725 469Q725 531 702 571T642 628Q616 640 575 640Q468 640 390 593T272 464Q247 415 229 340T210 214Q210 166 228 132T277 79T343 54T419 46Q445 46 465 50T500 59T526 76T544 96T557 123T566 150T574 182T581 214H519Q511 214 498 214T479 213Q443 213 443 230Q443 250 452 268Q457 273 464 276L514 275Q546 274 657 274Q735 274 768 275T803 276Q826 276 826 258Q823 224 810 216Q806 214 771 214H736Q736 211 710 109T683 5Q678 0 671 0Q666 0 637 14T597 36Q593 38 590 40T585 44T582 44T576 40Q511 -16 379 -16"],72:[686,0,982,43,1027,"258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 239 686Q290 684 403 684Q475 684 512 685T553 686Q576 686 576 668Q572 632 560 626Q555 624 506 624H457L399 389Q399 388 547 388H695L753 623Q753 624 709 624H686Q665 624 660 626T650 639Q653 678 668 684Q672 686 681 686Q685 686 726 685T847 684Q902 684 937 684T986 685T1004 686Q1027 686 1027 668Q1023 632 1011 626Q1006 624 957 624H908L839 344Q768 64 768 63T812 62H839Q871 62 871 44Q867 6 854 2L850 0L808 1Q782 2 675 2Q600 2 560 1T516 0Q499 0 494 15Q498 54 511 60Q515 62 564 62H613L614 66L679 324Q679 326 531 326H383L382 322L317 64Q317 62 361 62H388Q420 62 420 44Q416 6 403 2L399 0L357 1Q331 2 224 2Q149 2 109 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624"],73:[686,0,511,30,573,"247 624Q242 624 233 624T220 623Q186 623 186 640Q186 647 190 664T202 684Q206 686 226 686Q277 684 393 684Q435 684 471 684T528 685T553 686Q573 686 573 670Q573 650 564 632Q556 624 537 624H501H449L380 344Q309 64 309 63T356 62Q361 62 370 62T384 63Q417 63 417 46Q417 26 408 8Q403 3 396 0L352 1Q325 2 216 2T82 1L45 0Q30 7 30 16Q33 51 46 60Q51 62 102 62H154L294 623Q294 624 247 624"],74:[686,17,631,42,694,"205 131Q205 105 192 84T165 54L152 45Q152 44 160 42T182 37T213 35H216Q255 35 289 65Q314 90 329 129Q331 136 392 378T453 623Q453 624 393 624H332Q318 631 318 640Q318 647 322 664T334 684Q338 686 359 686Q413 684 533 684Q566 684 605 685T652 686Q677 686 685 683T694 669Q694 664 691 652Q686 631 681 628T647 624H602L542 380Q531 336 518 285T500 212T487 161T475 122T463 97T448 74T429 55Q351 -17 213 -17Q142 -17 99 7T43 70Q42 75 42 93Q42 143 73 168T139 194Q168 194 186 177T205 131"],75:[686,1,971,43,1003,"536 0Q522 6 522 18Q522 35 533 57Q539 62 557 62Q595 62 601 65L472 330L365 255L342 160Q318 65 317 64Q317 62 361 62H388Q420 62 420 44Q416 6 403 2L399 0L357 1Q331 2 224 2Q149 2 109 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 239 686Q290 684 403 684Q475 684 512 685T553 686Q576 686 576 668Q572 632 560 626Q555 624 506 624H457L422 481Q386 339 386 337L785 621Q779 624 749 624Q726 624 726 641Q726 645 730 659Q734 675 736 679T747 686L786 685Q812 684 888 684Q908 684 934 685T968 686Q1003 686 1003 669Q1003 646 991 629Q985 624 967 624Q918 624 888 617Q884 617 874 613L865 609Q864 608 732 515T599 420Q599 418 686 242T775 65Q784 62 829 62Q847 62 850 61T860 54Q862 52 862 43Q862 10 845 1Q844 1 842 1T836 0T797 1T694 2Q599 2 573 1L536 0"],76:[686,0,756,43,711,"258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 239 686Q290 684 409 684Q454 684 492 684T552 685T579 686Q603 686 603 668Q599 632 587 626Q583 624 520 624H457L388 344Q317 64 317 63T353 62H390Q418 62 440 64T493 78T548 110T598 169T643 261Q651 282 655 285T680 289Q696 289 700 288T709 279Q711 274 711 269Q710 265 663 138T613 8Q611 4 602 0H58Q47 5 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624"],77:[686,0,1142,43,1219,"258 624H231Q214 624 208 626T199 639Q203 678 216 684Q220 686 347 686H473Q474 685 478 682T484 677Q487 673 535 413L584 153L608 187Q631 221 672 281T761 410Q935 663 943 671Q949 678 962 686H1082H1166Q1201 686 1210 683T1219 668Q1215 632 1203 626Q1199 624 1149 624H1100L1031 344Q960 64 960 63T1004 62H1031Q1063 62 1063 44Q1060 7 1046 2Q1042 0 1034 0Q1030 0 990 1T875 2Q804 2 767 1T725 0H723Q707 0 703 15Q707 54 720 60Q724 62 773 62H822Q961 618 961 619L754 318Q546 15 543 12Q531 0 510 0Q500 0 495 0T484 5T477 19Q477 20 421 315L367 604L299 335Q234 72 234 68Q234 62 302 62Q334 62 334 46Q332 8 317 2Q313 0 306 0Q301 0 267 1T181 2Q125 2 96 1T63 0Q48 0 43 15Q43 19 47 35Q52 55 57 58T94 62Q147 64 164 69L233 345Q302 619 302 622Q302 624 258 624"],78:[686,0,950,43,1027,"258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 344 686H434Q464 686 477 680Q480 677 607 454Q738 227 739 227Q742 227 789 418T836 618Q836 620 835 620L821 622Q811 622 779 624Q755 624 749 625T740 632Q737 635 737 644Q737 656 742 669T754 685Q755 685 757 685T763 686Q768 686 803 685T890 684Q925 684 951 684T990 685T1006 686Q1014 686 1016 684Q1027 679 1027 668Q1023 632 1011 626Q1007 624 978 624Q912 622 907 617Q907 616 831 314T753 8Q749 0 723 0H712Q699 0 692 7Q692 8 671 44T607 155T526 296L361 580L296 323Q234 74 234 68T302 62H307Q334 62 334 44Q330 6 317 2L313 0L280 1Q260 2 181 2Q125 2 96 1T63 0Q48 0 43 15Q43 19 47 35Q52 55 57 58T94 62Q147 64 164 69L233 345Q302 619 302 622Q302 624 258 624"],79:[703,17,837,53,815,"53 245Q53 297 70 356T125 478T216 590T349 671T523 703Q656 703 735 637T815 445Q815 378 791 307Q727 104 527 17Q437 -17 344 -17Q289 -17 242 -5T150 35T79 116T53 245ZM664 489Q664 575 618 611T511 648Q463 648 416 627T334 570Q297 531 270 472T230 355T213 261T208 206Q208 177 215 151T237 98T284 56T358 40Q440 40 510 98T618 270Q664 400 664 489"],80:[686,0,723,43,847,"162 62L302 623Q302 624 258 624H234Q214 624 209 626T200 638Q200 677 217 684Q220 686 439 686Q667 685 684 682Q686 681 693 680Q713 677 733 671T782 649T829 602T847 528Q847 450 784 382T604 293Q571 288 469 287H373L346 176Q340 151 333 122T321 78L317 64Q317 62 361 62H387Q420 62 420 44Q417 10 404 2L399 0L357 1Q331 2 224 2Q149 2 109 1T65 0Q43 0 43 17Q43 21 47 33Q52 54 57 58T89 62H113H162ZM692 558Q692 611 617 622Q610 623 529 624H452L381 343H458H492Q604 343 641 389Q662 414 677 471T692 558"],81:[703,194,869,52,815,"53 245Q53 297 70 356T125 478T216 590T349 671T523 703Q656 703 735 637T815 445Q815 410 808 370T781 277T729 178T643 87T519 14L525 4Q540 -19 553 -25T592 -32Q632 -32 654 -24T680 -7T689 10T704 18Q713 18 717 12T722 0Q722 -8 711 -36T681 -101T624 -166T541 -194Q513 -194 494 -183T465 -157T450 -118T444 -79T443 -41V-7L433 -9Q391 -17 344 -17Q301 -17 263 -10T185 15T118 62T71 138T53 245ZM666 482Q666 529 652 563T614 615T565 640T512 648Q412 648 335 573Q268 506 235 389T201 202Q201 164 210 136T230 95T259 66L262 76Q269 109 302 135T382 162Q401 162 415 159T449 140T484 92L491 78L496 82Q502 86 505 88T515 97T528 107T541 120T555 137T570 156T585 179T599 205T612 235Q629 278 647 351T666 482ZM439 56Q439 58 439 62T435 75T426 92T410 106T383 112Q353 112 332 96T311 63Q311 38 355 38H366Q391 39 415 45T439 56"],82:[686,17,872,43,881,"258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 422 686H446H525Q634 686 698 674T806 620Q843 583 843 535Q843 505 833 478T805 432T768 396T728 370T690 352T662 342L651 338L654 336Q658 334 667 327T688 310Q719 278 719 237Q719 222 710 165T701 94Q701 35 748 35Q775 35 793 57T819 101Q822 112 826 114T843 117H849Q881 117 881 99Q881 78 852 39T781 -11Q765 -17 728 -17Q537 -13 537 94Q537 110 552 169T567 243Q567 292 529 309Q517 316 508 316T441 318H375L374 314Q374 312 343 189T311 64Q311 62 355 62H382Q414 62 414 44Q410 6 397 2L393 0L351 1Q325 2 221 2Q147 2 108 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624ZM687 555Q687 617 589 623Q581 624 513 624H451L420 498Q413 468 405 436T392 388L388 371Q388 369 458 369Q464 369 485 369T515 369T541 372T570 377T596 386T624 400Q649 417 664 457T683 522T687 555"],83:[703,17,693,63,714,"354 45Q429 45 467 91T506 184Q506 225 477 250Q461 262 384 279T294 300Q238 318 210 362T182 452Q182 493 202 540T257 623Q338 702 449 702Q491 702 501 701Q571 690 610 654Q614 649 617 650Q618 650 650 675T683 702Q685 703 692 703Q714 703 714 690Q714 686 687 578T658 466Q653 458 629 458Q606 458 602 463Q600 465 599 466Q599 467 599 469T598 473Q598 475 599 487T600 511Q600 584 557 614T454 645Q386 645 347 606T308 520Q308 506 311 496T323 477T338 464T360 454T384 446T413 439T441 433Q523 416 549 401Q581 384 602 352Q631 309 631 254Q631 214 615 170T567 83T478 12T347 -16Q322 -16 300 -14T261 -8T230 0T205 10T187 20T172 30L162 37L130 11Q124 7 119 3T110 -4T104 -9T100 -13T96 -15T93 -16T91 -17T88 -17H82Q76 -17 73 -16T69 -14T66 -10T63 -5L90 107Q97 133 106 170Q116 211 120 219T136 228H148Q167 228 173 227T179 218Q179 216 176 200T173 168Q173 102 227 74T354 45"],84:[675,0,637,22,772,"498 62Q511 58 511 43Q511 10 494 1L490 0Q487 0 482 0T424 1T271 2Q201 2 157 2T94 1T72 0H70Q46 0 46 17Q49 54 62 60L66 62H137Q208 62 209 63L218 98Q227 134 244 203T278 339L347 613H300Q262 612 246 611T198 599T146 564Q128 545 114 512T91 454T79 425Q73 419 52 419Q22 419 22 434Q22 440 41 498T80 611L100 666Q105 673 111 675H434Q758 675 762 673Q772 668 772 657Q772 655 756 549T738 434Q735 419 711 419H707Q690 419 686 421Q677 425 677 434Q676 436 678 449T683 485T686 529Q686 553 679 569T662 594T631 607T593 612T544 613H502L433 340Q418 279 400 207T374 100L365 65L364 62H498"],85:[686,16,800,63,877,"856 686Q877 686 877 668Q877 663 873 649T867 631Q861 624 828 624Q762 622 757 617Q757 613 705 409T651 200Q620 112 540 48T328 -16Q251 -16 196 2T113 51T75 112T63 176Q63 202 70 232T117 422Q129 469 141 520T160 598L167 623Q167 624 123 624H96Q79 624 73 626T64 639Q68 678 81 684Q85 686 104 686Q155 684 268 684Q340 684 377 685T418 686Q441 686 441 668Q437 632 425 626Q421 624 371 624H322L270 415Q224 232 217 198T209 141Q209 45 336 45Q372 45 406 52T475 77T540 128T585 211L590 229Q594 247 601 274T617 336T636 409T654 482T670 547T681 595T686 618Q686 620 685 620H683Q681 621 678 621T671 622Q660 622 630 624Q616 624 610 624T598 626T589 630T587 640Q587 647 590 659Q594 677 598 681T613 686Q618 686 653 685T740 684Q775 684 801 684T840 685T856 686"],86:[686,16,678,62,886,"401 686Q415 680 415 668Q415 651 404 629Q398 624 356 624Q318 624 318 623Q318 620 337 508T377 284L397 174L472 285Q548 396 623 507T699 620Q698 621 652 624Q634 624 627 627T619 641Q619 648 622 658Q627 677 631 681T650 686Q654 686 686 685T766 684Q794 684 823 684T858 685Q874 685 878 683T886 671Q886 667 882 651Q877 632 873 628T850 624Q800 624 779 617Q774 617 770 613Q767 610 560 304T350 -5Q346 -9 332 -16H306H291Q270 -16 267 -2Q267 -1 260 37T238 161T210 313L156 624H116H94Q62 624 62 642Q66 678 78 684Q82 686 99 686Q144 684 246 684Q330 684 368 685L401 686"],87:[686,17,1093,61,1207,"111 624Q109 624 102 624T91 623Q61 623 61 640Q61 660 70 678Q78 686 98 686Q140 684 239 684Q277 684 309 684T360 685T383 686H385Q407 686 407 668Q404 634 391 626Q387 624 348 624Q307 624 307 622Q307 618 332 409Q359 198 359 195L570 532L564 576L558 622V624H522H504Q472 624 472 641Q475 678 488 684L493 686L529 685Q551 684 645 684Q716 684 753 685T795 686Q818 686 818 669Q815 632 802 626Q798 624 759 624Q718 624 718 622Q718 615 743 410Q770 199 770 196Q770 195 806 253T903 406Q1035 618 1035 619Q1025 624 968 624Q943 624 943 641Q943 648 946 659Q950 675 952 679T963 686L998 685Q1020 684 1093 684Q1113 684 1139 685T1173 686Q1207 686 1207 669Q1207 664 1204 652Q1199 631 1194 628T1164 624Q1113 622 1101 615Q1098 612 905 305Q715 -1 709 -7Q699 -17 673 -17Q645 -17 639 -8L581 441Q581 444 442 221Q331 44 314 18T288 -14Q279 -17 263 -17H254Q229 -17 227 -5Q225 2 186 311L147 620V624H111"],88:[686,0,947,38,953,"931 686Q953 686 953 670Q953 650 944 632Q936 624 924 624H914Q823 624 803 611Q800 609 696 503T591 396Q591 394 667 229L743 62H787H814Q846 62 846 44Q843 7 829 2Q825 0 817 0Q813 0 775 1T664 2Q590 2 551 1T508 0H507Q484 0 484 18Q484 19 488 37Q492 56 497 58T534 62L566 63Q567 64 520 169T471 274Q469 274 369 172T268 67L315 62Q320 62 328 62L335 61Q347 58 347 44Q344 10 331 2L326 0L287 1Q263 2 177 2Q95 2 78 1L53 0Q38 6 38 17Q38 40 50 57Q56 62 78 62Q169 62 188 75Q194 77 435 324L444 334L439 347Q437 351 373 492L313 624H268H246Q220 624 212 632Q210 636 210 642Q210 655 215 669T227 684Q230 686 247 686Q295 684 398 684Q438 684 472 684T527 685T551 686Q567 686 572 671Q572 667 568 651Q563 631 558 628T523 624T492 623H488L526 540Q563 457 564 457Q564 456 574 466T604 496T645 537L724 619Q716 622 677 624H673Q645 624 645 640Q645 660 654 678Q659 683 666 686L704 685Q728 684 813 684Q847 684 873 684T913 685T931 686"],89:[686,0,675,40,876,"97 624H73Q40 624 40 640Q40 660 49 678Q57 686 77 686Q122 684 228 684Q269 684 304 684T360 685T385 686Q406 686 406 668Q406 662 403 653Q398 631 393 628T361 624H353Q321 624 321 623T376 491T432 360L448 377Q465 394 493 424T553 490L673 620Q662 624 630 624Q606 624 606 640Q608 678 623 684Q627 686 634 686Q638 686 671 685T755 684Q777 684 805 685T841 686Q861 686 868 683T876 669Q876 664 873 652Q868 631 863 628T829 624Q764 622 747 611Q727 590 590 441L437 275L411 170Q385 65 384 64Q384 62 429 62H453Q473 62 478 60T487 48Q488 44 484 29Q479 6 473 3Q468 0 454 0Q450 0 436 0T386 1T294 2Q220 2 181 1T138 0Q121 0 116 15Q120 54 133 60Q137 62 187 62H236L289 275L142 624H97"],90:[686,1,773,68,805,"223 430Q192 430 192 448Q192 450 225 561T261 677Q265 683 270 684Q273 686 534 686Q796 686 797 685Q805 682 805 673Q805 668 804 661T800 648T798 641Q796 637 531 352L266 67L329 66H364Q412 66 446 70T523 96T596 157Q617 186 630 220T649 273T663 297Q667 299 684 299H688Q715 299 715 281Q715 278 673 145T628 8Q626 4 617 0H348Q289 0 221 0T139 -1Q112 -1 99 -1T78 1T69 5T68 12Q68 16 71 31T77 49L84 57Q91 65 104 79T133 110T170 151T213 196L610 624H540Q533 624 514 624T488 624T467 623T443 620T422 616T398 609T373 600Q292 560 255 449Q251 436 246 433T223 430"],97:[452,9,633,38,607,"222 -8Q140 -8 89 34T38 158Q38 191 48 227Q72 329 151 390T327 452Q361 452 385 443T421 425T433 416H434L441 421Q448 426 460 430T486 435Q509 435 523 422T538 386Q538 380 522 315T488 179T467 93Q466 87 466 72Q466 42 483 42Q505 42 521 75Q531 94 541 134Q546 155 550 158T571 162H576H587Q607 162 607 148Q606 142 604 132T590 94T566 47T528 9T474 -8Q396 -8 358 40Q295 -8 222 -8ZM404 351Q383 401 324 401Q300 401 270 385T221 330Q206 296 186 220Q166 136 166 106Q166 72 184 58T228 43Q256 43 284 57T328 84T343 103Q343 106 374 228L404 351"],98:[694,8,521,45,513,"220 -8Q142 -8 94 35T45 155V167Q45 187 52 218T104 426L153 622H149Q148 622 144 622T134 623T122 624T111 624T101 624T96 625Q84 628 84 642Q84 647 88 661T94 679Q98 684 109 685T185 690Q258 694 272 694Q289 694 293 679Q293 676 263 553L232 429L244 434Q256 440 281 446T331 452Q417 452 465 407T513 285Q513 235 494 184T439 90T346 20T220 -8ZM385 337Q385 400 318 400Q269 400 226 360Q214 349 211 341T191 268Q162 149 162 113Q162 44 226 44Q269 44 299 76T339 135T362 215Q364 222 365 226Q385 303 385 337"],99:[451,8,513,40,509,"362 325Q362 344 371 361T390 386L399 394Q390 401 355 401Q276 401 231 338Q207 301 189 230T170 122Q170 43 264 43Q392 43 457 105Q472 120 480 117Q486 114 497 102T509 83Q509 79 502 70T477 47T432 21T360 1T259 -8Q194 -8 148 9T80 54T49 109T40 167Q40 280 129 365T352 451Q390 451 396 450Q448 442 473 416T499 358T477 302T421 274H417Q393 274 378 288T362 325"],100:[694,9,610,38,612,"222 -8Q140 -8 89 34T38 158Q38 220 68 285T151 391Q230 452 329 452Q382 452 416 428L422 424Q423 424 447 523L472 622H468Q467 622 463 622T453 623T441 624T430 624T420 624T415 625Q403 628 403 642Q403 647 407 661T413 679Q417 684 428 685T504 690Q577 694 591 694Q608 694 612 679L467 91Q466 87 466 72Q466 43 483 43Q518 43 541 134Q546 155 550 158T571 162H576H587Q607 162 607 148Q606 142 604 132T590 94T566 47T528 9T474 -8Q396 -8 358 40Q295 -8 222 -8ZM404 351Q383 401 324 401Q300 401 270 385T221 330Q206 296 186 220Q166 136 166 106Q166 72 184 58T228 43Q256 43 284 57T328 84T343 103Q343 106 374 228L404 351"],101:[452,8,554,42,509,"260 -8Q196 -8 151 9T83 54T52 111T42 169Q42 188 44 210Q50 240 58 266Q127 434 335 451L338 452Q342 452 345 452Q347 452 353 452T363 451Q426 451 464 424T502 352Q502 289 442 250Q381 211 222 211H184Q184 210 181 196T175 162T171 126Q171 43 264 43Q391 43 457 105Q472 120 480 117Q486 114 497 102T509 83Q509 79 502 70T477 47T432 21T360 1T260 -8ZM237 262Q427 266 427 349Q427 368 409 384T354 401Q316 401 287 388T242 354T216 314T202 278L197 263Q197 262 237 262"],102:[701,201,568,63,624,"584 444Q597 439 597 426Q597 409 586 387Q580 382 505 382H434V380Q432 378 421 314T395 162T368 30Q324 -164 203 -199Q194 -201 175 -201Q123 -201 94 -177T64 -117T88 -58T145 -33Q169 -33 184 -47T200 -84Q200 -122 166 -150L174 -151H185Q202 -148 217 -112Q222 -94 240 9Q246 40 262 132T293 303T307 382H247H210Q190 382 182 385T173 400Q177 436 189 442Q193 444 256 444H318L319 446Q337 565 355 602Q373 640 404 664T458 694T503 701Q569 701 596 676T624 617Q624 581 599 557T544 533Q520 533 504 547T488 585Q488 596 491 606T499 624T508 637T516 646L520 650Q515 650 509 651Q459 651 459 561V554L458 518L452 484Q446 448 445 447V444H584"],103:[452,202,545,0,540,"227 0Q142 0 93 43T43 166Q43 207 58 252T104 341T188 414T310 451L313 452Q316 452 319 452Q321 452 326 452T335 451Q367 451 390 443T425 425L436 416L443 421Q450 426 462 430T488 435Q511 435 525 422T540 386Q540 378 483 151T424 -82Q401 -139 335 -170T167 -202Q72 -202 36 -183T0 -125Q0 -90 24 -67T81 -43Q103 -43 119 -56T136 -99Q133 -124 114 -149L123 -150H183Q222 -150 254 -127T299 -74Q300 -71 306 -47T318 -1T324 23Q323 23 310 18T274 6T227 0ZM407 353Q406 354 404 358T400 365T395 371T388 379T381 385T371 391T360 396T346 400T329 401Q300 401 277 389T240 355T219 317T205 280Q171 148 171 109Q171 77 190 64T235 51T296 67Q322 82 337 98L345 106L407 353"],104:[694,8,668,45,642,"477 56Q477 48 479 46T490 43Q522 45 544 75T577 140Q582 156 585 159T605 162H611H622Q642 162 642 148Q642 138 632 114T602 62T550 13T478 -8Q429 -8 394 17T358 83Q358 95 395 199T433 350Q433 400 394 400H388H383Q335 400 291 363Q256 332 236 298Q233 293 202 170T169 40Q160 18 141 5T99 -8Q70 -8 58 9T45 39Q45 51 116 336L188 622H184Q183 622 179 622T169 623T157 624T146 624T136 624T131 625Q119 628 119 642Q119 647 123 661T129 679Q133 684 144 685T220 690Q293 694 307 694Q324 694 328 679Q328 672 294 540Q286 507 278 473T264 420L260 403Q260 400 269 408Q327 451 393 451H401H410Q425 451 439 450T476 442T515 424T544 391T556 337Q556 286 517 179T477 56"],105:[694,8,405,24,367,"205 615Q205 646 229 670T283 694Q310 694 324 679T339 641Q339 610 315 586T258 562Q235 562 220 577T205 615ZM24 296Q24 305 34 328T63 380T115 430T187 452Q205 452 223 448T262 435T295 406T308 360Q308 345 287 290T240 170T207 87Q202 67 202 57Q202 42 215 42Q235 42 257 64Q288 92 302 140Q307 156 310 159T330 162H336H347Q367 162 367 148Q367 140 357 117T329 65T276 14T201 -8Q158 -8 121 15T83 84Q83 104 133 229T184 358Q189 376 189 388Q189 402 177 402Q156 402 134 380Q103 352 89 304Q84 288 81 285T61 282H55H44Q24 282 24 296"],106:[694,202,471,-12,456,"321 616Q321 648 346 671T400 694Q425 694 440 680T456 640Q456 609 431 586T376 562Q353 562 337 577T321 616ZM297 360T297 373T294 392T288 400T278 401H276Q241 399 210 372T158 303Q151 287 148 285T129 282H123H116Q102 282 97 284T92 298Q96 331 153 391T279 451Q357 451 388 422T420 354V339L371 142Q363 111 353 71T339 13T329 -30T318 -64T308 -88T296 -109T283 -125T264 -142Q190 -202 88 -202Q44 -202 16 -181T-12 -125Q-12 -93 11 -68T68 -43Q92 -43 108 -58T124 -93Q124 -121 106 -144Q101 -150 103 -150Q120 -150 147 -128T191 -64Q194 -57 242 136T294 345Q297 360 297 373"],107:[694,8,604,45,578,"99 -8Q71 -8 58 9T45 39Q45 51 116 336L188 622H184Q183 622 179 622T169 623T157 624T146 624T136 624T131 625Q119 628 119 642Q119 647 123 661T129 679Q133 684 144 685T220 690Q293 694 307 694Q324 694 328 679Q328 674 280 482Q231 290 231 287Q231 285 234 286Q259 302 294 334T356 390T420 433T493 452Q528 452 546 427T564 364Q564 308 538 282T480 256Q456 256 441 269T425 308Q425 339 444 359T483 384L502 389Q502 395 496 398Q493 400 483 400Q465 400 449 395T409 374T373 347T323 305T268 257Q274 256 282 256Q312 251 329 247T371 232T411 202Q431 181 431 146Q431 132 427 110T422 73Q422 44 440 44H442Q462 44 478 64T502 102T514 141Q518 157 522 159T547 162H558Q578 162 578 148Q578 118 537 56T440 -7H432Q374 -7 337 21T299 94Q299 103 301 116T304 139Q304 164 281 181T235 202L212 206H211Q176 47 160 24Q137 -8 99 -8"],108:[694,9,348,26,296,"157 -8Q138 -8 118 -4T77 11T41 42T27 91V106L156 622H152Q151 622 147 622T137 623T125 624T114 624T104 624T99 625Q87 628 87 642Q87 647 91 661T97 679Q101 684 112 685T188 690Q261 694 275 694Q292 694 296 679L151 91Q150 85 150 71Q150 42 167 42Q186 42 205 75Q216 96 225 134Q230 155 234 158T255 162H260H271Q291 162 291 148Q290 145 289 140T283 118T271 87T254 54T229 23T197 1T157 -8"],109:[453,8,1032,24,1006,"24 296Q25 302 27 312T41 350T65 397T104 435T159 452Q203 452 234 435Q268 419 285 384L295 392Q305 401 317 410T349 429T389 445Q411 451 446 451Q560 451 592 383Q593 380 594 379L595 375L604 384Q675 452 762 452Q893 452 916 367Q918 356 918 334Q918 285 881 183T841 66Q838 43 849 43Q876 43 901 69T940 138Q945 156 949 159T969 162H975H986Q1006 162 1006 148Q1006 138 996 115T966 63T914 13T841 -8Q794 -8 758 16T721 82Q721 96 758 199T796 351Q796 401 753 401Q702 401 662 369T599 298Q597 294 567 172T533 40Q525 22 506 7T462 -8Q435 -8 422 8T409 39Q409 48 425 114T458 248T476 320Q478 330 478 348T474 377T462 393T449 399T433 400H428Q380 400 336 363Q301 332 281 298Q278 293 247 170T214 40Q206 22 187 7T143 -8T104 7T90 39Q90 47 108 124T146 274L164 347Q166 355 166 372Q166 401 149 401Q129 401 115 379T89 306Q84 288 80 285T55 282H44Q24 282 24 296"],110:[453,8,713,24,687,"24 296Q25 302 27 312T41 350T65 397T104 435T159 452Q203 452 234 435Q268 419 285 384L293 391Q363 452 454 452Q575 446 597 367Q599 356 599 334Q599 285 562 183T522 66Q519 43 530 43Q557 43 582 69T621 138Q626 156 630 159T650 162H656H667Q687 162 687 148Q687 138 677 115T647 63T595 13T522 -8Q475 -8 439 16T402 82Q402 96 439 199T477 351Q477 401 434 401Q421 401 409 398Q341 388 285 305L278 295L247 170Q216 46 214 40Q206 22 187 7T143 -8T104 7T90 39Q90 47 108 124T146 274L164 347Q166 355 166 372Q166 401 149 401Q129 401 115 379T89 306Q84 288 80 285T55 282H44Q24 282 24 296"],111:[452,8,585,39,576,"254 -8Q191 -8 146 9T80 54T49 111T39 169Q39 206 53 247T96 329T176 402T292 446Q317 451 336 451L344 452Q353 452 359 452Q457 452 516 408T576 279Q576 169 488 81T254 -8ZM349 400Q321 400 287 385T231 338Q206 301 188 228T170 126Q170 99 178 83Q198 44 260 44Q367 44 409 157Q419 185 432 238T445 317Q445 336 443 348Q435 372 416 384T384 398T349 400"],112:[453,194,601,-23,594,"24 296Q25 302 27 312T41 350T65 397T103 435T157 452Q235 452 273 404Q336 452 409 452Q434 452 458 448T507 432T550 402T581 354T593 285Q593 221 564 159T480 53Q401 -8 302 -8Q290 -8 279 -7T259 -3T242 3T228 9T218 14T212 18L209 20Q208 19 190 -55T171 -131T198 -132H213Q240 -132 240 -150Q237 -187 223 -192Q219 -194 212 -194Q208 -194 176 -193T95 -192Q48 -192 24 -193T-3 -194Q-11 -194 -16 -190T-22 -182T-23 -176Q-20 -142 -7 -134Q-3 -132 20 -132H44L164 354Q165 357 165 372Q165 401 148 401Q113 401 90 310Q85 289 82 286T60 282H55H44Q24 282 24 296ZM465 339Q465 373 447 387T403 401Q375 401 347 387T303 360T288 341Q288 338 257 216L227 93Q248 43 306 43Q332 43 361 59T410 115Q425 147 445 224Q465 309 465 339"],113:[452,194,542,38,550,"38 159Q38 209 58 260T113 355T205 425T327 452Q338 452 348 451T366 449T382 444T394 440T405 434T414 429T422 423T429 418Q440 429 481 440T533 452Q540 452 545 447T550 437Q550 432 481 152Q410 -130 410 -131T437 -132H452Q479 -132 479 -150Q476 -187 462 -192Q458 -194 451 -194Q447 -194 414 -193T330 -192Q277 -192 249 -193T217 -194Q202 -194 197 -179Q197 -175 201 -159Q206 -139 211 -136T243 -132H283L319 15L307 10Q295 4 270 -2T220 -8Q134 -8 86 37T38 159ZM402 353Q402 358 395 368T369 390T324 401Q301 401 282 394T249 369T226 338T208 297T196 258T186 218Q166 141 166 107Q166 44 229 44Q265 44 294 61T337 95Q341 100 371 222T402 353"],114:[452,8,529,24,500,"24 296Q24 298 28 313T42 352T67 398T104 436T154 452Q198 452 230 437T273 404L282 411Q334 452 393 452Q441 452 470 423T500 350Q500 301 473 279T418 256Q395 256 379 270T363 308Q363 366 424 386Q424 388 420 391T405 398T385 401Q363 401 343 390Q321 380 289 341L252 192Q214 42 212 39Q190 -8 142 -8Q117 -8 103 7T89 39Q89 52 127 202T165 369Q165 402 148 402Q139 402 128 393T110 369Q100 348 90 310Q85 289 82 286T60 282H55H44Q24 282 24 296"],115:[451,8,531,57,476,"140 290Q140 311 148 336T176 388T235 433T326 451H336Q355 451 373 449T418 439T460 412T476 363Q476 333 456 311T406 289Q384 289 371 302T357 335Q357 351 364 364T379 384L386 391Q386 392 381 394T362 398T330 400Q299 400 278 393T247 373T235 352T232 335Q232 322 242 312Q258 299 315 290T403 260Q457 224 457 167Q457 152 453 134T435 90T397 43T330 7T229 -8Q133 -8 95 22T57 91Q57 127 81 152T139 177Q161 177 177 164T194 121Q189 80 153 56Q179 43 236 43Q275 43 303 52T343 75T361 101T366 124Q366 148 338 161T272 180T232 186Q187 198 164 227T140 290"],116:[643,8,415,21,387,"82 382H55Q21 382 21 399Q21 422 33 439Q39 444 93 444H144L162 517Q163 522 167 541T174 567T181 589T192 611T206 627T226 639T253 643Q276 643 291 630T306 594Q306 586 288 514Q284 499 280 481T273 454L271 445Q271 444 317 444Q322 444 331 444T345 445Q377 445 377 428Q377 408 368 390Q360 382 341 382H306H255Q182 86 182 75Q182 43 201 43H204Q242 46 279 81Q298 101 309 119T323 145T330 157T350 162H356H363Q377 162 382 160T387 146Q385 136 372 114T337 64T275 14T192 -7Q131 -7 95 19T59 90V105L128 381Q128 382 82 382"],117:[452,9,681,24,655,"189 389Q189 397 187 399T176 401Q150 399 126 372T89 304Q84 288 81 285T61 282H55H44Q24 282 24 296Q24 307 35 331T65 383T117 431T187 452Q237 452 272 427T308 362Q308 347 273 254T238 111Q238 43 291 43Q319 43 344 58T380 86T391 103T426 247T464 396Q472 414 491 429T535 444T574 429T588 397Q588 390 570 315T534 168L516 97Q514 89 514 72Q514 42 531 42Q544 42 556 56Q574 76 589 134Q594 155 598 158T619 162H624H635Q655 162 655 148Q654 142 652 132T638 94T614 47T575 9T520 -8Q509 -8 498 -7T478 -3T461 2T446 8T434 16T424 23T416 29T410 35T406 39L405 41L397 34Q347 -7 288 -7H281Q148 -7 122 78Q116 95 116 125V136Q116 174 152 273T189 389"],118:[453,8,567,24,540,"380 367Q380 397 406 425T465 453Q493 453 516 430T540 357Q540 314 524 250T467 115T373 13Q338 -8 292 -8Q218 -8 167 23T116 129Q116 178 152 275T189 388Q189 396 187 398T176 401Q148 398 125 372T89 304Q84 288 81 285T61 282H55H44Q24 282 24 296Q24 306 34 330T64 382T116 431T189 452Q231 452 269 429T308 362Q308 346 273 255T238 114Q238 43 306 43Q336 43 363 65T407 118T437 182T456 239T462 268Q462 290 417 315Q380 335 380 367"],119:[453,8,831,24,796,"636 367Q636 400 664 426T719 453Q748 453 772 431T796 357Q796 321 782 256T727 112T633 6Q604 -8 567 -8Q466 -8 415 43Q414 42 410 38T403 31T396 25T388 18T378 11T367 5T355 0T340 -4T324 -7T306 -8Q249 -8 209 5T151 40T125 84T117 129Q117 176 153 274T190 388Q190 408 158 396Q112 376 90 306Q85 288 81 285T61 282H55H44Q24 282 24 296Q24 305 34 328T63 380T114 430T187 452Q240 452 274 427T309 362Q309 346 275 255T240 117Q240 43 317 43Q325 43 333 45T347 50T359 57T369 66T377 75T383 83T388 90L390 95Q390 99 389 110T387 129Q387 139 391 167Q393 177 419 282T448 396Q456 414 475 429T519 444Q546 444 559 428T572 397Q572 384 542 265T511 114Q511 43 579 43Q608 43 633 66T673 122T699 188T714 244L718 267Q718 291 673 315Q636 335 636 367"],120:[452,9,659,43,599,"74 282H63Q43 282 43 296Q43 298 45 307T56 332T76 365T110 401T159 433Q200 451 233 451H236Q273 451 282 450Q358 437 382 400L392 410Q434 452 483 452Q538 452 568 421T599 346Q599 303 573 280T517 256Q494 256 478 270T462 308Q462 343 488 367Q501 377 520 385Q520 386 516 389T502 396T480 400T462 398Q429 383 415 341Q354 116 354 80T405 44Q449 44 485 74T535 142Q539 156 542 159T562 162H568H579Q599 162 599 148Q599 135 586 111T550 60T485 12T397 -8Q313 -8 266 35L258 44Q215 -7 161 -7H156Q99 -7 71 25T43 95Q43 143 70 165T125 188Q148 188 164 174T180 136Q180 101 154 77Q141 67 122 59Q124 54 136 49T161 43Q183 43 200 61T226 103Q287 328 287 364T236 400Q200 400 164 377T107 302Q103 288 100 285T80 282H74"],121:[452,202,590,24,587,"206 -150Q240 -150 268 -134T314 -95T344 -48T362 -7T367 14Q339 -7 280 -7Q230 -7 195 5T144 39T122 79T115 122Q115 175 152 274T189 388Q189 396 187 398T176 401Q148 398 125 372T89 304Q84 288 81 285T61 282H55H44Q24 282 24 296Q24 306 34 329T64 381T116 431T188 452Q239 452 273 427T308 361Q308 347 273 253T237 109Q237 43 291 43T388 98Q388 99 425 246T463 396Q471 414 490 429T534 444T573 430T587 399Q587 386 537 186T483 -25Q461 -84 410 -126T296 -188Q248 -202 204 -202Q127 -202 96 -175T64 -114Q64 -82 86 -57T144 -31Q169 -31 184 -45T199 -83Q199 -89 198 -94T196 -104T193 -113T189 -120T184 -128T179 -134T173 -141T168 -147Q189 -150 206 -150"],122:[452,8,555,34,539,"66 -8H60Q34 -8 34 5Q34 9 42 22T70 59T115 110Q162 156 255 229T381 332L389 339H381Q348 332 298 329T212 325T172 321Q168 318 151 318H146Q116 318 116 332Q116 334 118 342Q128 374 154 402Q205 452 265 452Q304 452 352 422T426 392Q441 392 462 421T485 451T508 452H518Q539 452 539 438Q539 431 516 401T458 334Q412 289 312 210Q229 146 191 111L183 103H195Q203 103 213 104T240 107T268 110Q301 114 337 116T391 119T428 123T455 134T469 157Q473 166 495 166Q521 166 525 161Q532 156 528 141Q510 81 456 37T337 -7Q297 -7 251 22T177 52Q154 52 134 38T100 8L88 -7Q86 -8 66 -8"],915:[680,0,657,43,777,"257 618H231Q198 618 198 636Q202 672 214 678L219 680H763Q769 677 772 673T776 666L777 664Q777 659 766 549T751 433Q745 424 723 424Q704 424 699 427T693 441Q693 444 695 467T697 513Q697 543 689 563T670 594T636 610T592 617T534 618H516H456L455 614Q455 613 387 339T317 64Q317 62 375 62H411Q430 62 438 59T447 44Q444 7 430 2Q426 0 416 0Q409 0 359 1T231 2Q152 2 111 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L163 66Q163 67 231 341T301 616Q301 618 257 618"],916:[711,0,958,59,904,"65 0Q59 6 59 9T61 16Q64 20 334 357T608 698Q616 706 629 710Q630 710 634 710T644 710T656 711Q686 711 694 703Q698 699 700 693Q706 674 805 345T904 14Q904 7 894 1L479 0H65ZM630 342L567 551L232 134L462 133H693Q693 137 630 342"],920:[702,17,867,54,844,"358 -17Q218 -17 136 49T54 243Q54 298 70 356T123 474T211 582T338 663T504 702H527Q578 702 590 701Q709 688 776 622T844 441Q844 379 825 315T765 192T668 86T532 11T358 -17ZM700 474Q700 525 685 561T642 616T587 643T528 652Q390 652 301 534Q252 472 225 373T198 210Q198 160 214 125T256 71T311 44T372 36Q484 36 571 119Q639 189 669 299T700 474ZM366 428Q366 425 364 419T362 411H466L570 412L573 422Q576 437 581 441T604 445Q620 445 623 444Q636 440 636 429Q636 423 616 340T593 253Q586 243 572 243H566Q545 243 539 249Q536 251 535 253T534 258T534 263T535 270T537 277H329L326 266Q323 251 318 247T295 243Q279 243 276 244Q263 248 263 259Q263 265 283 346Q288 366 295 394Q304 431 308 438T326 445H334H338Q366 445 366 428"],923:[711,0,806,44,776,"439 0Q425 6 425 18Q425 35 436 57Q442 62 485 62Q525 62 525 64L478 483Q478 484 465 463T422 394T350 277Q222 69 222 68Q223 67 224 67Q229 64 271 62Q290 62 297 59T305 45Q305 38 302 28Q297 9 293 5T274 0Q270 0 238 1T159 2Q133 2 105 2T72 1Q56 1 52 3T44 15Q44 19 48 35Q53 55 58 58T89 62Q142 64 151 73Q154 76 345 387T538 699Q550 711 570 711H580H592Q613 711 618 695Q619 692 654 379T690 63Q690 62 726 62H746Q776 62 776 44Q773 7 759 2Q755 0 747 0Q743 0 707 1T600 2Q502 2 476 1L439 0"],926:[675,0,841,62,867,"206 466Q175 466 175 484Q175 487 201 574T230 666Q235 673 241 675H547Q853 675 857 673Q867 668 867 657Q867 655 850 569T832 478Q827 466 808 466H802H795Q773 466 771 481Q771 486 775 508T779 541V549H774Q755 552 505 552Q281 551 267 548Q262 548 255 533T242 496T233 472Q228 466 206 466ZM259 255H252Q231 255 228 270Q228 275 248 355T270 439Q277 448 288 448H298Q321 448 326 440Q331 434 326 414Q326 413 486 413H647L650 424Q654 441 658 444T678 448H683H693Q702 448 705 446T714 432L694 348Q674 267 669 261Q664 255 652 255H643Q622 255 617 261Q613 265 613 272T613 283T616 289Q616 290 456 290H295L294 285Q293 280 292 275T288 265T281 257Q278 255 259 255ZM150 131Q150 124 281 123Q346 123 390 123Q640 123 664 126Q668 127 675 127Q686 131 704 198Q708 213 713 216T733 220H738Q755 220 759 218Q768 213 768 203Q768 198 741 105T710 8Q708 4 699 0H388Q77 0 73 2Q62 7 62 18Q62 27 81 115Q99 206 102 212Q106 220 120 220H129Q140 220 145 220T155 215T160 202Q160 196 159 192Q150 145 150 131"],928:[680,0,982,43,1026,"257 618H231Q198 618 198 636Q202 672 214 678L219 680H1011Q1022 675 1026 665Q1022 626 1009 620Q1005 618 956 618H907L906 614Q906 613 838 339T768 64Q768 62 812 62H839Q871 62 871 44Q867 6 854 2L850 0L808 1Q782 2 675 2Q600 2 560 1T516 0Q499 0 494 15Q498 54 511 60Q515 62 564 62H613L614 66Q614 67 682 341T752 616Q752 618 604 618H456L455 614Q455 613 387 339T317 64Q317 62 361 62H388Q420 62 420 44Q416 6 403 2L399 0L357 1Q331 2 224 2Q149 2 109 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L163 66Q163 67 231 341T301 616Q301 618 257 618"],931:[686,0,885,69,902,"847 430Q828 430 823 434T817 450Q817 454 817 466T818 487Q818 526 809 551T784 591T737 613T675 622T590 624H528H430L513 487Q594 351 596 345Q596 335 590 330Q583 323 418 204L250 81L363 80Q533 80 591 89T694 142Q739 185 765 252Q772 268 776 271T799 274Q816 274 820 272Q832 266 830 254Q829 250 784 130T736 7Q732 3 725 0H405Q84 0 80 2Q69 7 69 18Q69 26 75 32Q76 32 98 48T168 100T255 164L432 293Q429 300 329 465T225 637Q223 675 245 686H888Q900 680 902 671Q902 667 890 556T876 441Q871 430 847 430"],933:[703,0,671,32,802,"32 544Q32 586 91 644T229 703Q277 703 311 683T363 628T389 560T397 491V478L404 491Q455 589 526 646T677 703Q730 703 766 671T802 584Q802 551 793 541T766 531H757L736 532L732 535L729 539V549Q731 569 715 575T658 581H650Q545 581 477 443Q453 392 443 351Q441 345 424 273T389 133T371 64Q371 62 428 62H461Q483 62 492 59T501 44Q498 10 485 2L480 0L431 1Q401 2 278 2T127 1L85 0Q71 5 71 17Q71 24 74 33Q77 46 78 49T84 57T95 61T118 62H154H216Q232 126 249 193T273 287T287 345T296 388T299 416T300 452Q294 581 198 581Q154 581 132 575T106 562T99 546T86 533Q82 531 60 531L39 532Q32 537 32 544"],934:[686,0,767,29,737,"323 624H293Q267 624 261 626T251 639Q255 678 268 684Q272 686 293 686Q348 684 475 684Q557 684 600 685T647 686H648Q671 686 671 668Q667 632 655 626Q650 624 588 624H525L500 520Q500 519 520 518T579 507T656 480Q737 440 737 372Q737 294 648 237Q562 180 426 169L412 168L399 118Q386 66 386 65L385 62H443H479Q498 62 506 59T515 44Q511 8 499 2L494 0L447 1Q417 2 298 2Q212 2 167 1T118 0Q100 0 95 15Q99 54 112 60Q116 62 179 62H241Q242 64 254 114T266 167Q266 168 262 168Q256 168 237 170T180 181T110 205T54 249T29 316Q29 391 112 446T327 516Q345 518 349 518Q351 518 353 518L355 519Q356 520 368 570T381 623Q381 624 323 624ZM342 466Q341 467 339 467Q320 467 283 455T225 420Q181 361 181 296Q181 273 193 257T222 233T254 222T277 219L280 220Q281 220 311 342T342 466ZM583 389Q583 409 576 423T557 444T533 456T509 463T492 467H486L455 343Q444 300 437 271T428 231T426 219Q430 219 445 222T483 232T521 250Q551 269 567 310T583 389"],936:[686,0,714,22,790,"205 471Q205 445 196 403T186 333Q186 303 194 281T218 248T240 233T262 224L361 623Q361 624 303 624Q296 624 284 624T266 623Q232 623 232 641Q232 648 235 657Q240 678 244 682T268 686H273Q329 684 457 684Q502 684 540 684T599 685T626 686H628Q651 686 651 668Q649 633 631 624H505L407 227Q410 228 416 229T439 239T472 259T507 294T539 345Q549 365 563 416T597 498T649 538Q657 540 717 540Q725 540 737 540T755 541Q790 541 790 524Q790 512 784 497Q780 491 767 490T742 477Q736 471 731 463T722 449T715 433T710 419T705 403T701 389Q686 340 658 302T599 240T530 201T463 179T404 169L391 168L379 116Q365 67 365 63Q365 62 422 62H455Q477 62 486 59T495 44Q492 10 479 2L474 0L427 1Q397 2 278 2T131 1L90 0Q76 5 76 17Q76 24 79 33Q82 46 83 49T89 57T100 61T123 62H159H221Q247 162 247 168H244Q241 169 239 169Q202 176 178 182T123 207T74 252Q46 291 46 351Q46 375 52 404T59 454Q59 489 40 489Q32 489 27 494T22 507Q22 535 37 538Q40 540 99 540H128Q168 540 186 528T205 471"],937:[703,0,879,93,887,"162 119Q181 115 235 115L273 116Q273 133 231 222T180 345Q173 368 173 391V406V414Q173 477 214 540Q255 600 315 635Q353 661 423 682T585 703Q656 703 711 690T799 656T851 608T879 555T886 503Q886 449 860 401Q840 359 810 322T725 230T643 146Q619 117 619 116T650 115Q707 115 722 120Q730 123 750 165T775 210Q779 212 796 212Q828 212 828 196Q828 191 807 144T764 52L743 7Q740 4 740 4T733 2T717 0T686 0H632H573Q535 0 526 3T517 17Q517 44 544 103T617 243T671 341Q729 454 729 535Q729 599 686 625T583 652Q549 652 517 645T450 616T388 561T344 470T327 340Q327 304 331 237T336 135Q336 93 330 50T313 2Q308 0 208 0H142Q107 0 100 4T93 25Q93 28 93 41T95 77T96 118L100 199Q105 208 109 210T131 212Q147 212 151 210T161 199V160Q161 131 162 125V119"],945:[452,8,761,39,712,"39 166Q39 213 59 261T117 353T219 424T362 452Q420 452 466 433T536 384T573 325T586 269V265Q593 272 609 308T636 381Q640 397 644 399T669 402H680Q700 402 700 388Q700 379 691 351T659 276T604 188L593 173L595 153Q600 79 612 43H618Q634 45 642 51T653 64T658 71Q661 73 684 73Q712 73 712 59Q712 39 685 16T603 -7Q588 -7 575 -5T551 2T532 12T516 24T503 37T494 49T487 60T481 69L469 61Q362 -8 251 -8Q159 -8 99 36T39 166ZM260 43Q310 43 361 63T438 101T465 124Q458 240 453 277Q435 401 354 401Q291 401 245 355Q230 337 217 313Q201 279 186 216T170 126Q170 72 208 54Q230 43 260 43"],946:[701,194,660,28,638,"59 -194H49Q31 -194 28 -182Q28 -178 107 139T192 473Q212 533 248 580T324 652T395 689T450 701H461Q514 701 551 688T605 652T630 607T637 561Q637 546 634 526T611 465T556 393Q572 382 590 347T608 262Q608 146 522 69T299 -8Q279 -8 261 -6T228 2T204 13T183 26T169 37T157 48L150 56L120 -64Q113 -90 104 -128Q93 -175 89 -184T73 -194H59ZM531 592Q531 651 463 651Q399 651 341 600T253 466Q250 458 217 327T182 185Q180 176 180 159Q180 108 212 76T301 44Q330 44 354 51T393 65T423 91T444 118T459 151T468 179T475 206Q490 264 491 296Q491 313 489 326T484 345L482 350Q481 350 477 348T464 344T444 340T413 335T372 333T334 334T301 340T274 355T265 380Q265 444 397 444Q425 444 445 441T476 436L485 433Q489 433 499 458Q509 482 520 527T531 592ZM424 390Q424 393 389 393Q383 393 374 393T362 392Q348 392 333 388Q345 384 379 384Q424 384 424 390"],947:[451,211,590,5,617,"5 269Q5 285 19 312T57 368T124 421T215 451H241Q274 451 303 439T353 406T389 361T416 311T432 266T442 232L444 220L446 216L450 226Q473 278 513 357T561 441Q566 444 584 444H594Q617 444 617 430Q617 426 596 389T536 273T462 110L452 84L451 70Q447 12 427 -76T388 -192Q375 -211 355 -211Q339 -211 332 -198T325 -171Q325 -114 386 64L393 84V98Q393 181 371 241Q360 280 319 303T210 327Q158 327 126 317T84 296T68 272T59 258Q55 256 36 256Q23 256 18 256T9 260T5 269"],948:[726,8,522,39,513,"216 610Q216 640 229 664T262 700T299 719T327 725Q330 725 406 709T487 690Q513 681 513 651Q513 627 494 607T450 587Q417 587 378 631Q346 663 314 663Q286 663 272 639Q271 637 271 634Q271 609 344 536L397 484Q438 448 458 410T478 313Q478 234 443 147T338 18Q298 -8 249 -8Q214 -8 180 0T113 26T60 81T39 168Q39 200 50 237T87 316T160 391T272 442L260 465Q216 553 216 610ZM348 235Q348 274 336 313T310 372L298 392Q295 391 290 390T269 380T241 359T212 323T185 267Q157 168 157 130Q157 83 186 63T255 43Q280 43 300 67Q317 89 332 138T348 235"],949:[461,18,529,36,481,"224 -17Q126 -17 81 22T36 112Q36 178 84 226L93 236L88 246Q79 264 79 289Q79 341 124 388Q201 461 333 461Q402 461 455 425Q480 409 481 390Q481 365 464 350T428 334Q415 334 387 352T313 370Q141 370 141 293Q141 275 146 270Q147 270 148 270T155 272Q202 291 263 291H270Q349 291 349 244Q349 195 281 183Q274 182 239 182Q201 182 184 185T137 200Q123 188 112 168T100 129T112 98T148 81T189 75T237 74H243H251Q288 74 310 75T359 86T398 112Q405 124 417 124Q426 124 432 117T439 100Q439 88 427 70T390 32T322 -3T224 -17ZM286 238Q286 240 253 240Q245 240 234 239T216 237T209 235Q209 232 250 232Q286 232 286 238"],950:[711,202,508,48,521,"361 711Q373 711 381 703T389 683Q389 681 388 676T383 656T376 618V612H379Q385 618 429 618Q521 618 521 572Q521 551 506 534Q483 510 415 507Q385 507 371 511T336 536L326 528Q254 472 204 381T154 209Q154 190 157 177Q159 165 162 154T170 135T182 119T195 106T212 95T229 86T249 78T269 72T290 66T311 60Q385 37 388 36Q437 14 454 -36Q456 -46 456 -64Q456 -83 455 -90Q445 -132 413 -167T333 -202Q300 -202 257 -191T206 -169Q203 -164 203 -158Q203 -148 210 -140T231 -130Q239 -130 263 -139T326 -151H329Q337 -151 342 -150T352 -143T357 -123Q356 -117 355 -113T350 -104T344 -96T335 -90T324 -85T310 -80T294 -74T275 -68T254 -62Q253 -62 231 -56T205 -48T179 -39T150 -26T125 -10T100 11T80 37T62 70T53 109T48 157Q48 281 123 396T317 586V612Q319 638 320 649T325 678T338 703T361 711ZM454 564Q445 567 424 567Q407 567 398 565T387 563Q387 558 411 558Q434 558 450 562L454 564"],951:[453,211,600,24,600,"24 296Q25 302 27 312T41 350T65 397T103 435T157 452Q202 452 233 435Q267 419 284 384L294 392Q304 401 316 410T348 429T388 445Q410 451 445 451H453Q468 451 482 450T519 443T558 425T587 391T600 337V327Q600 311 538 64Q484 -158 478 -168Q457 -211 409 -211Q386 -211 372 -197T357 -161Q357 -158 415 80Q476 330 477 348Q477 366 473 377T461 393T448 399T432 400H427Q379 400 335 363Q300 332 280 298Q277 293 246 170T213 40Q205 22 186 7T142 -8T103 7T89 39Q89 49 106 117T142 260T164 351Q166 363 166 372Q166 402 148 402Q126 402 110 369Q100 350 90 310Q85 289 82 286T60 282H55H44Q24 282 24 296"],952:[702,8,562,40,554,"213 -8Q130 -8 85 50T40 200V207Q40 303 83 428Q122 535 189 608Q279 702 381 702Q410 702 437 693T492 661T537 593T554 486Q554 428 539 362T495 230T425 111T330 25T213 -8ZM433 562Q433 600 419 625T377 651Q363 651 348 644T311 619T268 557T229 453Q225 441 217 411T208 378H401Q433 500 433 562ZM161 140Q161 43 217 43Q249 43 280 74Q310 103 332 150T378 287Q385 313 385 315Q385 316 289 316H192Q191 308 183 275T169 205T161 140"],953:[452,8,412,38,386,"161 -8Q111 -8 75 16T38 85Q38 95 48 121T80 214T123 368L124 374Q126 381 127 386T132 399T139 414T149 428T162 440T180 448T203 452Q226 452 241 439T257 404Q257 386 230 290T171 111Q157 73 157 57Q157 43 166 43Q209 43 258 69T322 144Q326 157 330 159T348 162H355H366Q386 162 386 148Q386 143 383 132T367 100T335 61Q301 27 253 10T161 -8"],954:[452,8,668,45,642,"258 405Q258 394 251 364T237 308T230 281T238 284T270 306T330 349Q365 377 389 394T450 427T519 444Q545 444 559 430T574 391Q574 360 551 336T491 312Q469 312 454 326T439 364Q439 372 438 372Q433 372 395 344T320 289T283 260H285Q287 260 290 260T297 259Q495 248 495 146Q495 132 491 110T486 74Q486 43 505 43Q520 43 531 53Q559 72 578 141Q582 157 586 159T611 162H622Q642 162 642 148T627 100T578 29T504 -7H495Q435 -7 399 22T363 96Q363 111 366 122T369 142Q369 155 364 165T347 182T326 193T298 200T269 204T238 207T212 210L211 206L190 123L169 40Q161 22 142 7T98 -8T59 7T45 39Q45 48 67 139T112 317L134 404Q142 424 161 438T204 452Q226 452 242 440T258 405"],955:[694,13,671,40,652,"95 -13Q70 -13 55 4T40 41Q40 65 61 88Q65 92 210 207T357 322L235 602Q217 640 185 643Q182 643 178 644T173 645Q161 651 161 666Q161 677 167 684T181 692Q189 694 212 694Q335 694 358 660Q362 653 500 340T647 18Q652 10 652 6Q652 -8 622 -8H589H538L526 -5Q506 1 500 8Q494 16 444 128Q442 133 440 138L387 259L265 134Q156 20 137 4T95 -13"],956:[452,211,708,34,682,"294 -8Q265 -8 244 -5T213 1T201 4Q200 4 192 -32T172 -111T155 -168Q134 -211 86 -211Q62 -211 48 -196T34 -158Q37 -144 103 123T174 404Q182 424 201 438T244 452Q271 452 284 436T298 404Q298 392 267 269T235 114Q235 43 305 43Q342 43 375 68T418 110Q420 112 455 253T492 397Q514 444 562 444Q587 444 601 429T615 397Q615 387 599 320T563 178T542 93Q540 81 540 72Q540 42 558 42Q580 42 596 75Q606 94 616 134Q621 155 624 158T646 162H651H662Q682 162 682 148Q681 142 679 132T665 94T641 47T602 9T548 -8Q523 -8 502 -3T468 11T446 27T432 40L429 46Q367 -8 294 -8"],957:[452,2,577,38,608,"88 382Q70 382 65 385T59 402T64 427T78 443Q79 444 157 448T247 452Q256 452 261 448T266 440L267 437Q267 432 223 252L177 71L192 77Q293 117 371 199T480 388Q489 424 511 438T556 452Q579 452 593 438T608 402Q608 378 593 340T540 251T446 152T299 62T96 -1Q91 -2 78 -2Q38 -2 38 15Q38 22 82 198L127 379Q124 382 88 382"],958:[711,201,508,23,490,"287 648Q291 671 293 680T305 700T329 711Q339 711 347 705T356 687Q356 680 351 653T345 619Q345 615 346 615Q358 618 398 618Q490 618 490 572Q490 553 476 536T434 512Q411 508 378 508H366Q332 508 306 534L298 525Q271 496 254 456T237 375Q237 336 244 336Q272 346 319 346H325Q354 346 372 344T406 331T422 300Q422 252 350 238Q332 236 303 236Q286 236 269 238T240 242T218 247T202 252L196 254Q191 254 174 237T141 191T124 139Q124 108 151 92T267 46Q285 40 295 37Q308 33 332 25T366 13T392 3T415 -8T432 -20T445 -36T451 -55T454 -80Q454 -118 427 -153T358 -199Q349 -201 327 -201Q313 -201 298 -200T271 -196T246 -191T226 -185T210 -180T200 -176L196 -174Q187 -170 187 -158T196 -138T216 -130Q217 -130 254 -140T329 -151Q349 -151 349 -135Q349 -127 340 -122T293 -104Q260 -93 238 -85Q130 -48 115 -41Q71 -19 47 15T23 88Q23 126 48 179T130 277L144 288L136 297Q99 336 99 390Q99 456 148 514T285 602V619Q285 624 286 635T287 648ZM355 563Q362 560 376 558Q424 558 423 564Q405 567 390 567Q369 567 355 563ZM279 292Q297 287 315 287Q355 287 355 293Q355 296 321 296Q316 296 308 296L301 295Q295 295 289 294L279 292"],959:[452,8,585,39,576,"254 -8Q191 -8 146 9T80 54T49 111T39 169Q39 206 53 247T96 329T176 402T292 446Q317 451 336 451L344 452Q353 452 359 452Q457 452 516 408T576 279Q576 169 488 81T254 -8ZM349 400Q321 400 287 385T231 338Q206 301 188 228T170 126Q170 99 178 83Q198 44 260 44Q367 44 409 157Q419 185 432 238T445 317Q445 336 443 348Q435 372 416 384T384 398T349 400"],960:[444,8,682,23,674,"55 289H43Q23 289 23 303Q23 308 33 322Q116 434 199 443Q200 444 418 444Q591 444 617 444T652 439Q674 426 674 400Q674 378 661 360T625 335Q621 334 549 333H479L477 321Q476 312 476 279Q476 219 491 174T521 104T536 65Q536 38 511 15T457 -8Q403 -8 386 94Q384 110 384 139Q384 181 391 229T406 304L413 331Q413 333 365 333H316L315 329Q315 328 312 314T301 272T288 220Q274 167 258 103Q244 49 240 38T228 18Q225 16 224 14Q200 -8 172 -8Q146 -8 132 7T118 44Q118 54 121 61Q122 65 142 102T190 195T235 293Q250 329 250 333Q177 333 166 332Q115 328 88 301L77 290L55 289"],961:[451,211,612,34,603,"307 -8Q277 -8 251 0T215 14L205 20Q203 18 193 -25T171 -114T155 -168Q134 -211 87 -211Q64 -211 49 -198T34 -162Q34 -158 137 254Q153 299 179 334T232 390T277 419T311 434Q357 451 403 451Q435 451 455 449T506 435T560 400Q603 357 603 285Q603 172 520 82T307 -8ZM474 343Q474 364 458 382T409 400H406Q339 400 299 341Q281 313 264 257Q261 248 242 170T222 89Q222 84 230 74T260 54T308 43Q334 43 365 57T417 110Q437 145 456 228Q474 298 474 332V343"],962:[451,105,424,33,457,"33 209Q33 277 80 334T195 421T330 451H344Q410 451 439 429Q457 417 457 402Q457 386 445 375T420 363Q415 363 406 368T383 383T354 398Q347 400 330 400Q256 400 196 361T135 265V257Q135 242 147 225T174 199L358 107Q400 77 400 28T362 -63T271 -105Q254 -105 229 -99T195 -86Q188 -82 188 -71Q188 -56 197 -50T216 -44Q225 -44 237 -48T270 -53H282Q293 -44 293 -31Q293 -19 283 -10Q278 -4 200 33T115 76Q77 98 55 133T33 209"],963:[445,8,686,35,677,"35 151Q35 190 51 236T99 327T184 404T306 443Q307 443 316 443T342 443T378 444T425 444T476 444Q606 444 626 444T655 439Q677 426 677 400Q677 358 639 340Q625 333 563 333Q510 333 510 331Q518 319 518 272Q518 155 437 74T226 -8Q123 -8 79 41T35 151ZM396 278Q396 314 375 323T305 332Q249 332 222 310T180 243Q171 219 162 178T153 116V110Q153 43 234 43Q347 43 382 199Q383 203 383 204Q396 255 396 278"],964:[444,13,521,23,610,"55 289H43Q23 289 23 303Q23 308 33 322Q116 434 199 443Q200 444 386 444Q571 444 577 442Q588 441 599 432T610 402Q610 359 572 340Q561 335 547 334T452 333H353V331Q352 330 342 261T320 119T306 40Q300 18 281 3Q257 -13 233 -13Q210 -13 196 0T181 35Q181 44 182 48Q183 53 229 187T279 331Q279 333 228 333H209Q163 333 136 328T88 301L77 290L55 289"],965:[453,9,631,24,604,"189 388Q189 396 187 398T176 401Q144 399 122 369T89 304Q84 288 81 285T61 282H55H44Q24 282 24 296Q24 306 34 330T64 382T116 431T188 452Q232 452 270 430T308 361Q308 345 275 258T241 123Q241 44 336 44H344Q380 44 415 73T474 140T511 214T526 267Q526 280 513 292Q505 301 486 311T456 333T444 367Q444 400 471 426T529 453Q555 453 579 431T604 358Q604 327 592 271T557 172Q550 157 541 142T510 97T464 47T404 9T328 -8Q264 -8 219 5T154 41T125 85T117 131Q117 182 153 277T189 388"],966:[452,216,747,52,703,"238 4Q230 5 218 8T174 26T118 58T73 112T53 190Q53 219 60 246Q77 313 103 362T143 426T163 443Q165 444 186 444Q217 444 217 432Q217 425 188 392Q157 351 137 291T116 206Q116 127 263 109L276 107L288 139Q347 304 414 378T566 452Q621 449 662 412T703 286Q698 167 598 82T357 -8H332V-11Q332 -12 327 -46T317 -116T310 -157Q306 -180 286 -198T234 -216Q211 -216 197 -203T183 -168Q183 -160 184 -155Q184 -152 198 -112T225 -34T238 4ZM637 260Q637 303 607 322T541 341Q502 341 466 319T405 264Q368 218 356 159Q348 111 348 104Q348 103 361 103Q502 103 569 152T637 260"],967:[452,201,718,32,685,"58 -194Q32 -194 32 -164Q32 -153 46 -139L175 -13Q296 104 296 106Q271 232 226 308Q165 401 141 401Q128 401 117 390T100 365Q94 350 91 349T69 346H45Q35 348 35 359Q35 380 62 411T133 450Q143 452 165 452Q286 452 329 402Q347 379 366 333T394 254T404 215Q404 213 405 213Q405 212 420 227T463 268T520 324Q637 437 640 438Q647 444 661 444Q667 444 676 438T685 419Q685 405 670 389T549 271L420 145Q433 85 444 53Q466 -25 509 -88T575 -151Q590 -151 600 -140T617 -114T626 -98Q629 -96 650 -96H655Q681 -96 681 -108Q681 -114 679 -119Q670 -148 646 -169T591 -199Q581 -201 550 -201Q422 -201 381 -143Q345 -88 316 20L311 39L230 -40Q144 -126 114 -153Q85 -182 77 -188T58 -194"],968:[695,202,758,24,732,"244 141Q244 117 254 98T277 70T305 55T329 48T342 47L344 48L424 366Q501 678 505 686Q508 691 512 692T533 694T555 693T562 688T565 683Q565 678 486 362T406 45Q406 43 415 43Q467 49 514 78T590 143T636 213T653 266Q653 282 641 293T613 311T585 332T572 367Q572 397 598 425T657 453Q684 453 708 430T732 358Q732 330 723 287T706 225Q671 124 578 58T401 -8H393L370 -101Q346 -196 345 -197Q340 -202 316 -202H306Q286 -202 286 -188Q286 -187 296 -144T318 -57T331 -8Q331 -6 328 -6Q290 -6 233 11T148 62Q119 97 119 146Q119 181 154 275T190 388Q190 401 181 401Q154 401 129 375T90 306Q85 288 81 285T61 282H55H44Q24 282 24 296Q24 306 34 329T64 381T116 431T189 452Q237 452 273 428T309 362Q309 343 277 260T244 141"],969:[453,8,718,24,691,"532 367Q532 399 559 426T618 453Q645 453 668 430T691 357Q691 319 677 261T649 171Q640 149 626 125T586 68T521 14T438 -7Q401 -7 372 7T333 30T311 57Q246 -8 165 -8Q119 -8 82 19T30 102Q24 126 24 163V178Q24 210 37 255Q61 346 118 424Q141 451 161 451Q174 451 184 443T194 419Q194 402 179 387Q91 273 91 206Q91 159 122 138T189 117T281 145V173Q283 223 294 253Q304 276 323 289T364 303Q386 303 400 287T415 250Q415 219 385 157L378 144Q378 142 388 136T419 124T462 117Q522 117 566 165T610 255Q610 288 561 320Q532 337 532 367"],977:[701,8,692,24,656,"114 132Q114 153 140 253T166 372Q166 402 148 402Q126 402 110 369Q100 350 90 310Q85 289 82 286T60 282H55H44Q24 282 24 296Q25 302 27 312T41 350T65 397T104 435T158 452Q184 452 211 445T263 414T288 354V339L265 245Q237 134 237 118V107V102Q237 87 239 77T257 56T300 43Q395 43 455 254Q479 346 479 347L460 354Q294 408 294 528Q294 606 350 653T464 701Q536 701 579 659Q634 601 634 491Q634 468 630 438T623 388L620 370Q624 370 631 369T647 364T656 352Q656 347 653 335Q647 317 642 316Q640 315 637 315Q635 315 619 317Q606 319 605 316Q605 315 603 308Q587 248 550 177T457 57Q379 -8 293 -8Q192 -8 153 23T114 116V132ZM519 566Q519 600 507 625T464 651Q425 651 391 617T356 529Q356 501 370 478T404 441T443 417T477 404L491 400Q493 400 499 428T512 497T519 566"],981:[694,202,712,50,693,"274 -7Q232 -4 195 7T125 38T71 94T51 176V190Q51 213 60 242T95 307T156 373T255 425T393 451L397 452L427 568Q434 597 443 636Q452 677 456 685T472 694H486H495Q517 694 517 680L514 665Q510 650 503 621T489 564L460 451H469Q527 447 574 430T657 370T693 266Q693 163 599 82T350 -7H346L322 -100Q301 -190 295 -197Q291 -202 283 -202H269H258Q238 -202 238 -188Q238 -186 260 -96L283 -7H274ZM449 400Q448 400 404 225T359 47T366 45Q464 55 516 119Q542 149 558 199T575 295Q575 387 462 398L449 400ZM384 398Q384 399 381 399Q350 399 298 378T214 308Q168 236 168 149Q168 68 259 49Q282 44 294 44H295L384 398"],982:[444,8,975,23,961,"55 289H43Q23 289 23 303Q23 308 33 322Q116 434 199 443Q200 444 562 444Q922 444 928 442Q961 434 961 400Q961 376 944 355T886 333H870Q872 322 872 295V279Q872 230 842 165T751 46T618 -8Q581 -8 554 6T513 45T494 84T484 119Q484 121 478 114Q477 113 476 111Q384 -7 268 -7H265Q251 -7 237 -4T199 11T162 54T147 132Q147 149 149 166T155 198T165 229T176 256T189 281T200 301T211 319T220 333H199Q120 333 88 301L77 290L55 289ZM639 103Q674 103 712 122T780 188T811 295Q811 318 808 330V333H289Q274 318 244 263T214 169Q214 133 236 118T288 103Q351 103 412 153T494 278Q497 290 502 292T529 295Q546 295 551 293T556 283Q556 281 553 260T550 218Q550 153 576 128T639 103"],1009:[451,194,612,75,603,"371 -168Q357 -168 323 -171T245 -175Q143 -175 109 -150T75 -66Q75 -5 100 108T137 254Q153 299 179 334T232 390T277 419T311 434Q357 451 403 451Q435 451 455 449T506 435T560 400Q603 357 603 282Q603 213 569 148T465 38T304 -8Q273 -8 247 -2T204 14T176 31T159 46T152 53Q152 52 148 27T144 -16Q144 -36 150 -44T189 -58T293 -64Q405 -65 432 -75Q466 -88 466 -127Q466 -140 459 -172Q455 -188 451 -191T426 -194H420Q405 -194 400 -191T395 -176Q396 -170 394 -169T378 -168Q373 -168 371 -168ZM236 116Q236 77 258 60T311 43Q369 43 407 94Q429 123 451 206T474 331Q474 400 409 400H406Q339 400 299 341Q276 305 256 227T236 116"],1013:[444,7,483,44,450,"415 89Q423 89 429 74T436 46Q436 43 434 39Q432 36 420 29T380 11T322 -5Q311 -7 281 -7Q216 -7 168 10T94 54T56 110T44 167V181Q44 262 94 329Q104 343 119 357T162 391T234 425T327 443Q328 443 348 443T383 444Q434 444 442 438Q450 430 450 416Q446 392 424 383L376 382Q306 381 278 369Q230 349 208 294Q199 274 199 268Q199 267 291 267Q305 267 325 267T353 268Q383 268 394 263T406 241Q406 214 380 206Q375 205 279 205T183 203Q174 176 174 140Q174 87 208 65T292 43Q295 43 300 43T307 44Q337 49 372 69T415 89"],8710:[711,0,958,59,904,""]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Math/BoldItalic/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js deleted file mode 100644 index 2019476..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_Math-italic"]={directory:"Math/Italic",family:"MathJax_Math",id:"MJMATHI",style:"italic",skew:{65:0.139,66:0.0833,67:0.0833,68:0.0556,69:0.0833,70:0.0833,71:0.0833,72:0.0556,73:0.111,74:0.167,75:0.0556,76:0.0278,77:0.0833,78:0.0833,79:0.0833,80:0.0833,81:0.0833,82:0.0833,83:0.0833,84:0.0833,85:0.0278,88:0.0833,90:0.0833,99:0.0556,100:0.167,101:0.0556,102:0.167,103:0.0278,104:-0.0278,108:0.0833,111:0.0556,112:0.0833,113:0.0833,114:0.0556,115:0.0556,116:0.0833,117:0.0278,118:0.0278,119:0.0833,120:0.0278,121:0.0556,122:0.0556,915:0.0833,916:0.167,920:0.0833,923:0.167,926:0.0833,928:0.0556,931:0.0833,933:0.0556,934:0.0833,936:0.0556,937:0.0833,945:0.0278,946:0.0833,948:0.0556,949:0.0833,950:0.0833,951:0.0556,952:0.0833,953:0.0556,956:0.0278,957:0.0278,958:0.111,959:0.0556,961:0.0833,962:0.0833,964:0.0278,965:0.0278,966:0.0833,967:0.0556,968:0.111,977:0.0833,981:0.0833,1009:0.0833,1013:0.0556},32:[0,0,250,0,0,""],47:[716,215,778,139,638,"166 -215T159 -215T147 -212T141 -204T139 -197Q139 -190 144 -183Q157 -157 378 274T602 707Q605 716 618 716Q625 716 630 712T636 703T638 696Q638 691 406 241T170 -212Q166 -215 159 -215"],65:[716,0,750,35,726,"208 74Q208 50 254 46Q272 46 272 35Q272 34 270 22Q267 8 264 4T251 0Q249 0 239 0T205 1T141 2Q70 2 50 0H42Q35 7 35 11Q37 38 48 46H62Q132 49 164 96Q170 102 345 401T523 704Q530 716 547 716H555H572Q578 707 578 706L606 383Q634 60 636 57Q641 46 701 46Q726 46 726 36Q726 34 723 22Q720 7 718 4T704 0Q701 0 690 0T651 1T578 2Q484 2 455 0H443Q437 6 437 9T439 27Q443 40 445 43L449 46H469Q523 49 533 63L521 213H283L249 155Q208 86 208 74ZM516 260Q516 271 504 416T490 562L463 519Q447 492 400 412L310 260L413 259Q516 259 516 260"],66:[683,0,759,35,756,"231 637Q204 637 199 638T194 649Q194 676 205 682Q206 683 335 683Q594 683 608 681Q671 671 713 636T756 544Q756 480 698 429T565 360L555 357Q619 348 660 311T702 219Q702 146 630 78T453 1Q446 0 242 0Q42 0 39 2Q35 5 35 10Q35 17 37 24Q42 43 47 45Q51 46 62 46H68Q95 46 128 49Q142 52 147 61Q150 65 219 339T288 628Q288 635 231 637ZM649 544Q649 574 634 600T585 634Q578 636 493 637Q473 637 451 637T416 636H403Q388 635 384 626Q382 622 352 506Q352 503 351 500L320 374H401Q482 374 494 376Q554 386 601 434T649 544ZM595 229Q595 273 572 302T512 336Q506 337 429 337Q311 337 310 336Q310 334 293 263T258 122L240 52Q240 48 252 48T333 46Q422 46 429 47Q491 54 543 105T595 229"],67:[705,22,715,50,760,"50 252Q50 367 117 473T286 641T490 704Q580 704 633 653Q642 643 648 636T656 626L657 623Q660 623 684 649Q691 655 699 663T715 679T725 690L740 705H746Q760 705 760 698Q760 694 728 561Q692 422 692 421Q690 416 687 415T669 413H653Q647 419 647 422Q647 423 648 429T650 449T651 481Q651 552 619 605T510 659Q484 659 454 652T382 628T299 572T226 479Q194 422 175 346T156 222Q156 108 232 58Q280 24 350 24Q441 24 512 92T606 240Q610 253 612 255T628 257Q648 257 648 248Q648 243 647 239Q618 132 523 55T319 -22Q206 -22 128 53T50 252"],68:[683,0,828,33,803,"287 628Q287 635 230 637Q207 637 200 638T193 647Q193 655 197 667T204 682Q206 683 403 683Q570 682 590 682T630 676Q702 659 752 597T803 431Q803 275 696 151T444 3L430 1L236 0H125H72Q48 0 41 2T33 11Q33 13 36 25Q40 41 44 43T67 46Q94 46 127 49Q141 52 146 61Q149 65 218 339T287 628ZM703 469Q703 507 692 537T666 584T629 613T590 629T555 636Q553 636 541 636T512 636T479 637H436Q392 637 386 627Q384 623 313 339T242 52Q242 48 253 48T330 47Q335 47 349 47T373 46Q499 46 581 128Q617 164 640 212T683 339T703 469"],69:[680,0,738,31,764,"492 213Q472 213 472 226Q472 230 477 250T482 285Q482 316 461 323T364 330H312Q311 328 277 192T243 52Q243 48 254 48T334 46Q428 46 458 48T518 61Q567 77 599 117T670 248Q680 270 683 272Q690 274 698 274Q718 274 718 261Q613 7 608 2Q605 0 322 0H133Q31 0 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 659Q197 676 203 680H757Q764 676 764 669Q764 664 751 557T737 447Q735 440 717 440H705Q698 445 698 453L701 476Q704 500 704 528Q704 558 697 578T678 609T643 625T596 632T532 634H485Q397 633 392 631Q388 629 386 622Q385 619 355 499T324 377Q347 376 372 376H398Q464 376 489 391T534 472Q538 488 540 490T557 493Q562 493 565 493T570 492T572 491T574 487T577 483L544 351Q511 218 508 216Q505 213 492 213"],70:[680,0,643,31,749,"48 1Q31 1 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 659Q197 676 203 680H742Q749 676 749 669Q749 664 736 557T722 447Q720 440 702 440H690Q683 445 683 453Q683 454 686 477T689 530Q689 560 682 579T663 610T626 626T575 633T503 634H480Q398 633 393 631Q388 629 386 623Q385 622 352 492L320 363H375Q378 363 398 363T426 364T448 367T472 374T489 386Q502 398 511 419T524 457T529 475Q532 480 548 480H560Q567 475 567 470Q567 467 536 339T502 207Q500 200 482 200H470Q463 206 463 212Q463 215 468 234T473 274Q473 303 453 310T364 317H309L277 190Q245 66 245 60Q245 46 334 46H359Q365 40 365 39T363 19Q359 6 353 0H336Q295 2 185 2Q120 2 86 2T48 1"],71:[705,22,786,50,760,"50 252Q50 367 117 473T286 641T490 704Q580 704 633 653Q642 643 648 636T656 626L657 623Q660 623 684 649Q691 655 699 663T715 679T725 690L740 705H746Q760 705 760 698Q760 694 728 561Q692 422 692 421Q690 416 687 415T669 413H653Q647 419 647 422Q647 423 648 429T650 449T651 481Q651 552 619 605T510 659Q492 659 471 656T418 643T357 615T294 567T236 496T189 394T158 260Q156 242 156 221Q156 173 170 136T206 79T256 45T308 28T353 24Q407 24 452 47T514 106Q517 114 529 161T541 214Q541 222 528 224T468 227H431Q425 233 425 235T427 254Q431 267 437 273H454Q494 271 594 271Q634 271 659 271T695 272T707 272Q721 272 721 263Q721 261 719 249Q714 230 709 228Q706 227 694 227Q674 227 653 224Q646 221 643 215T629 164Q620 131 614 108Q589 6 586 3Q584 1 581 1Q571 1 553 21T530 52Q530 53 528 52T522 47Q448 -22 322 -22Q201 -22 126 55T50 252"],72:[683,0,831,31,888,"228 637Q194 637 192 641Q191 643 191 649Q191 673 202 682Q204 683 219 683Q260 681 355 681Q389 681 418 681T463 682T483 682Q499 682 499 672Q499 670 497 658Q492 641 487 638H485Q483 638 480 638T473 638T464 637T455 637Q416 636 405 634T387 623Q384 619 355 500Q348 474 340 442T328 395L324 380Q324 378 469 378H614L615 381Q615 384 646 504Q674 619 674 627T617 637Q594 637 587 639T580 648Q580 650 582 660Q586 677 588 679T604 682Q609 682 646 681T740 680Q802 680 835 681T871 682Q888 682 888 672Q888 645 876 638H874Q872 638 869 638T862 638T853 637T844 637Q805 636 794 634T776 623Q773 618 704 340T634 58Q634 51 638 51Q646 48 692 46H723Q729 38 729 37T726 19Q722 6 716 0H701Q664 2 567 2Q533 2 504 2T458 2T437 1Q420 1 420 10Q420 15 423 24Q428 43 433 45Q437 46 448 46H454Q481 46 514 49Q520 50 522 50T528 55T534 64T540 82T547 110T558 153Q565 181 569 198Q602 330 602 331T457 332H312L279 197Q245 63 245 58Q245 51 253 49T303 46H334Q340 38 340 37T337 19Q333 6 327 0H312Q275 2 178 2Q144 2 115 2T69 2T48 1Q31 1 31 10Q31 12 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q147 65 216 339T285 628Q285 635 228 637"],73:[683,0,440,26,504,"43 1Q26 1 26 10Q26 12 29 24Q34 43 39 45Q42 46 54 46H60Q120 46 136 53Q137 53 138 54Q143 56 149 77T198 273Q210 318 216 344Q286 624 286 626Q284 630 284 631Q274 637 213 637H193Q184 643 189 662Q193 677 195 680T209 683H213Q285 681 359 681Q481 681 487 683H497Q504 676 504 672T501 655T494 639Q491 637 471 637Q440 637 407 634Q393 631 388 623Q381 609 337 432Q326 385 315 341Q245 65 245 59Q245 52 255 50T307 46H339Q345 38 345 37T342 19Q338 6 332 0H316Q279 2 179 2Q143 2 113 2T65 2T43 1"],74:[683,22,555,57,633,"447 625Q447 637 354 637H329Q323 642 323 645T325 664Q329 677 335 683H352Q393 681 498 681Q541 681 568 681T605 682T619 682Q633 682 633 672Q633 670 630 658Q626 642 623 640T604 637Q552 637 545 623Q541 610 483 376Q420 128 419 127Q397 64 333 21T195 -22Q137 -22 97 8T57 88Q57 130 80 152T132 174Q177 174 182 130Q182 98 164 80T123 56Q115 54 115 53T122 44Q148 15 197 15Q235 15 271 47T324 130Q328 142 387 380T447 625"],75:[683,0,849,31,889,"285 628Q285 635 228 637Q205 637 198 638T191 647Q191 649 193 661Q199 681 203 682Q205 683 214 683H219Q260 681 355 681Q389 681 418 681T463 682T483 682Q500 682 500 674Q500 669 497 660Q496 658 496 654T495 648T493 644T490 641T486 639T479 638T470 637T456 637Q416 636 405 634T387 623L306 305Q307 305 490 449T678 597Q692 611 692 620Q692 635 667 637Q651 637 651 648Q651 650 654 662T659 677Q662 682 676 682Q680 682 711 681T791 680Q814 680 839 681T869 682Q889 682 889 672Q889 650 881 642Q878 637 862 637Q787 632 726 586Q710 576 656 534T556 455L509 418L518 396Q527 374 546 329T581 244Q656 67 661 61Q663 59 666 57Q680 47 717 46H738Q744 38 744 37T741 19Q737 6 731 0H720Q680 3 625 3Q503 3 488 0H478Q472 6 472 9T474 27Q478 40 480 43T491 46H494Q544 46 544 71Q544 75 517 141T485 216L427 354L359 301L291 248L268 155Q245 63 245 58Q245 51 253 49T303 46H334Q340 37 340 35Q340 19 333 5Q328 0 317 0Q314 0 280 1T180 2Q118 2 85 2T49 1Q31 1 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q147 65 216 339T285 628"],76:[683,2,681,32,647,"228 637Q194 637 192 641Q191 643 191 649Q191 673 202 682Q204 683 217 683Q271 680 344 680Q485 680 506 683H518Q524 677 524 674T522 656Q517 641 513 637H475Q406 636 394 628Q387 624 380 600T313 336Q297 271 279 198T252 88L243 52Q243 48 252 48T311 46H328Q360 46 379 47T428 54T478 72T522 106T564 161Q580 191 594 228T611 270Q616 273 628 273H641Q647 264 647 262T627 203T583 83T557 9Q555 4 553 3T537 0T494 -1Q483 -1 418 -1T294 0H116Q32 0 32 10Q32 17 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q147 65 216 339T285 628Q285 635 228 637"],77:[684,0,970,35,1051,"289 629Q289 635 232 637Q208 637 201 638T194 648Q194 649 196 659Q197 662 198 666T199 671T201 676T203 679T207 681T212 683T220 683T232 684Q238 684 262 684T307 683Q386 683 398 683T414 678Q415 674 451 396L487 117L510 154Q534 190 574 254T662 394Q837 673 839 675Q840 676 842 678T846 681L852 683H948Q965 683 988 683T1017 684Q1051 684 1051 673Q1051 668 1048 656T1045 643Q1041 637 1008 637Q968 636 957 634T939 623Q936 618 867 340T797 59Q797 55 798 54T805 50T822 48T855 46H886Q892 37 892 35Q892 19 885 5Q880 0 869 0Q864 0 828 1T736 2Q675 2 644 2T609 1Q592 1 592 11Q592 13 594 25Q598 41 602 43T625 46Q652 46 685 49Q699 52 704 61Q706 65 742 207T813 490T848 631L654 322Q458 10 453 5Q451 4 449 3Q444 0 433 0Q418 0 415 7Q413 11 374 317L335 624L267 354Q200 88 200 79Q206 46 272 46H282Q288 41 289 37T286 19Q282 3 278 1Q274 0 267 0Q265 0 255 0T221 1T157 2Q127 2 95 1T58 0Q43 0 39 2T35 11Q35 13 38 25T43 40Q45 46 65 46Q135 46 154 86Q158 92 223 354T289 629"],78:[683,0,803,31,888,"234 637Q231 637 226 637Q201 637 196 638T191 649Q191 676 202 682Q204 683 299 683Q376 683 387 683T401 677Q612 181 616 168L670 381Q723 592 723 606Q723 633 659 637Q635 637 635 648Q635 650 637 660Q641 676 643 679T653 683Q656 683 684 682T767 680Q817 680 843 681T873 682Q888 682 888 672Q888 650 880 642Q878 637 858 637Q787 633 769 597L620 7Q618 0 599 0Q585 0 582 2Q579 5 453 305L326 604L261 344Q196 88 196 79Q201 46 268 46H278Q284 41 284 38T282 19Q278 6 272 0H259Q228 2 151 2Q123 2 100 2T63 2T46 1Q31 1 31 10Q31 14 34 26T39 40Q41 46 62 46Q130 49 150 85Q154 91 221 362L289 634Q287 635 234 637"],79:[704,22,763,50,740,"740 435Q740 320 676 213T511 42T304 -22Q207 -22 138 35T51 201Q50 209 50 244Q50 346 98 438T227 601Q351 704 476 704Q514 704 524 703Q621 689 680 617T740 435ZM637 476Q637 565 591 615T476 665Q396 665 322 605Q242 542 200 428T157 216Q157 126 200 73T314 19Q404 19 485 98T608 313Q637 408 637 476"],80:[683,0,642,33,751,"287 628Q287 635 230 637Q206 637 199 638T192 648Q192 649 194 659Q200 679 203 681T397 683Q587 682 600 680Q664 669 707 631T751 530Q751 453 685 389Q616 321 507 303Q500 302 402 301H307L277 182Q247 66 247 59Q247 55 248 54T255 50T272 48T305 46H336Q342 37 342 35Q342 19 335 5Q330 0 319 0Q316 0 282 1T182 2Q120 2 87 2T51 1Q33 1 33 11Q33 13 36 25Q40 41 44 43T67 46Q94 46 127 49Q141 52 146 61Q149 65 218 339T287 628ZM645 554Q645 567 643 575T634 597T609 619T560 635Q553 636 480 637Q463 637 445 637T416 636T404 636Q391 635 386 627Q384 621 367 550T332 412T314 344Q314 342 395 342H407H430Q542 342 590 392Q617 419 631 471T645 554"],81:[704,194,791,50,740,"399 -80Q399 -47 400 -30T402 -11V-7L387 -11Q341 -22 303 -22Q208 -22 138 35T51 201Q50 209 50 244Q50 346 98 438T227 601Q351 704 476 704Q514 704 524 703Q621 689 680 617T740 435Q740 255 592 107Q529 47 461 16L444 8V3Q444 2 449 -24T470 -66T516 -82Q551 -82 583 -60T625 -3Q631 11 638 11Q647 11 649 2Q649 -6 639 -34T611 -100T557 -165T481 -194Q399 -194 399 -87V-80ZM636 468Q636 523 621 564T580 625T530 655T477 665Q429 665 379 640Q277 591 215 464T153 216Q153 110 207 59Q231 38 236 38V46Q236 86 269 120T347 155Q372 155 390 144T417 114T429 82T435 55L448 64Q512 108 557 185T619 334T636 468ZM314 18Q362 18 404 39L403 49Q399 104 366 115Q354 117 347 117Q344 117 341 117T337 118Q317 118 296 98T274 52Q274 18 314 18"],82:[683,21,759,33,755,"230 637Q203 637 198 638T193 649Q193 676 204 682Q206 683 378 683Q550 682 564 680Q620 672 658 652T712 606T733 563T739 529Q739 484 710 445T643 385T576 351T538 338L545 333Q612 295 612 223Q612 212 607 162T602 80V71Q602 53 603 43T614 25T640 16Q668 16 686 38T712 85Q717 99 720 102T735 105Q755 105 755 93Q755 75 731 36Q693 -21 641 -21H632Q571 -21 531 4T487 82Q487 109 502 166T517 239Q517 290 474 313Q459 320 449 321T378 323H309L277 193Q244 61 244 59Q244 55 245 54T252 50T269 48T302 46H333Q339 38 339 37T336 19Q332 6 326 0H311Q275 2 180 2Q146 2 117 2T71 2T50 1Q33 1 33 10Q33 12 36 24Q41 43 46 45Q50 46 61 46H67Q94 46 127 49Q141 52 146 61Q149 65 218 339T287 628Q287 635 230 637ZM630 554Q630 586 609 608T523 636Q521 636 500 636T462 637H440Q393 637 386 627Q385 624 352 494T319 361Q319 360 388 360Q466 361 492 367Q556 377 592 426Q608 449 619 486T630 554"],83:[705,22,613,52,645,"308 24Q367 24 416 76T466 197Q466 260 414 284Q308 311 278 321T236 341Q176 383 176 462Q176 523 208 573T273 648Q302 673 343 688T407 704H418H425Q521 704 564 640Q565 640 577 653T603 682T623 704Q624 704 627 704T632 705Q645 705 645 698T617 577T585 459T569 456Q549 456 549 465Q549 471 550 475Q550 478 551 494T553 520Q553 554 544 579T526 616T501 641Q465 662 419 662Q362 662 313 616T263 510Q263 480 278 458T319 427Q323 425 389 408T456 390Q490 379 522 342T554 242Q554 216 546 186Q541 164 528 137T492 78T426 18T332 -20Q320 -22 298 -22Q199 -22 144 33L134 44L106 13Q83 -14 78 -18T65 -22Q52 -22 52 -14Q52 -11 110 221Q112 227 130 227H143Q149 221 149 216Q149 214 148 207T144 186T142 153Q144 114 160 87T203 47T255 29T308 24"],84:[677,0,584,21,704,"40 437Q21 437 21 445Q21 450 37 501T71 602L88 651Q93 669 101 677H569H659Q691 677 697 676T704 667Q704 661 687 553T668 444Q668 437 649 437Q640 437 637 437T631 442L629 445Q629 451 635 490T641 551Q641 586 628 604T573 629Q568 630 515 631Q469 631 457 630T439 622Q438 621 368 343T298 60Q298 48 386 46Q418 46 427 45T436 36Q436 31 433 22Q429 4 424 1L422 0Q419 0 415 0Q410 0 363 1T228 2Q99 2 64 0H49Q43 6 43 9T45 27Q49 40 55 46H83H94Q174 46 189 55Q190 56 191 56Q196 59 201 76T241 233Q258 301 269 344Q339 619 339 625Q339 630 310 630H279Q212 630 191 624Q146 614 121 583T67 467Q60 445 57 441T43 437H40"],85:[683,22,683,60,767,"107 637Q73 637 71 641Q70 643 70 649Q70 673 81 682Q83 683 98 683Q139 681 234 681Q268 681 297 681T342 682T362 682Q378 682 378 672Q378 670 376 658Q371 641 366 638H364Q362 638 359 638T352 638T343 637T334 637Q295 636 284 634T266 623Q265 621 238 518T184 302T154 169Q152 155 152 140Q152 86 183 55T269 24Q336 24 403 69T501 205L552 406Q599 598 599 606Q599 633 535 637Q511 637 511 648Q511 650 513 660Q517 676 519 679T529 683Q532 683 561 682T645 680Q696 680 723 681T752 682Q767 682 767 672Q767 650 759 642Q756 637 737 637Q666 633 648 597Q646 592 598 404Q557 235 548 205Q515 105 433 42T263 -22Q171 -22 116 34T60 167V183Q60 201 115 421Q164 622 164 628Q164 635 107 637"],86:[683,22,583,52,769,"52 648Q52 670 65 683H76Q118 680 181 680Q299 680 320 683H330Q336 677 336 674T334 656Q329 641 325 637H304Q282 635 274 635Q245 630 242 620Q242 618 271 369T301 118L374 235Q447 352 520 471T595 594Q599 601 599 609Q599 633 555 637Q537 637 537 648Q537 649 539 661Q542 675 545 679T558 683Q560 683 570 683T604 682T668 681Q737 681 755 683H762Q769 676 769 672Q769 655 760 640Q757 637 743 637Q730 636 719 635T698 630T682 623T670 615T660 608T652 599T645 592L452 282Q272 -9 266 -16Q263 -18 259 -21L241 -22H234Q216 -22 216 -15Q213 -9 177 305Q139 623 138 626Q133 637 76 637H59Q52 642 52 648"],87:[683,22,944,51,1048,"436 683Q450 683 486 682T553 680Q604 680 638 681T677 682Q695 682 695 674Q695 670 692 659Q687 641 683 639T661 637Q636 636 621 632T600 624T597 615Q597 603 613 377T629 138L631 141Q633 144 637 151T649 170T666 200T690 241T720 295T759 362Q863 546 877 572T892 604Q892 619 873 628T831 637Q817 637 817 647Q817 650 819 660Q823 676 825 679T839 682Q842 682 856 682T895 682T949 681Q1015 681 1034 683Q1048 683 1048 672Q1048 666 1045 655T1038 640T1028 637Q1006 637 988 631T958 617T939 600T927 584L923 578L754 282Q586 -14 585 -15Q579 -22 561 -22Q546 -22 542 -17Q539 -14 523 229T506 480L494 462Q472 425 366 239Q222 -13 220 -15T215 -19Q210 -22 197 -22Q178 -22 176 -15Q176 -12 154 304T131 622Q129 631 121 633T82 637H58Q51 644 51 648Q52 671 64 683H76Q118 680 176 680Q301 680 313 683H323Q329 677 329 674T327 656Q322 641 318 637H297Q236 634 232 620Q262 160 266 136L501 550L499 587Q496 629 489 632Q483 636 447 637Q428 637 422 639T416 648Q416 650 418 660Q419 664 420 669T421 676T424 680T428 682T436 683"],88:[683,0,828,26,852,"42 0H40Q26 0 26 11Q26 15 29 27Q33 41 36 43T55 46Q141 49 190 98Q200 108 306 224T411 342Q302 620 297 625Q288 636 234 637H206Q200 643 200 645T202 664Q206 677 212 683H226Q260 681 347 681Q380 681 408 681T453 682T473 682Q490 682 490 671Q490 670 488 658Q484 643 481 640T465 637Q434 634 411 620L488 426L541 485Q646 598 646 610Q646 628 622 635Q617 635 609 637Q594 637 594 648Q594 650 596 664Q600 677 606 683H618Q619 683 643 683T697 681T738 680Q828 680 837 683H845Q852 676 852 672Q850 647 840 637H824Q790 636 763 628T722 611T698 593L687 584Q687 585 592 480L505 384Q505 383 536 304T601 142T638 56Q648 47 699 46Q734 46 734 37Q734 35 732 23Q728 7 725 4T711 1Q708 1 678 1T589 2Q528 2 496 2T461 1Q444 1 444 10Q444 11 446 25Q448 35 450 39T455 44T464 46T480 47T506 54Q523 62 523 64Q522 64 476 181L429 299Q241 95 236 84Q232 76 232 72Q232 53 261 47Q262 47 267 47T273 46Q276 46 277 46T280 45T283 42T284 35Q284 26 282 19Q279 6 276 4T261 1Q258 1 243 1T201 2T142 2Q64 2 42 0"],89:[683,-1,581,30,763,"66 637Q54 637 49 637T39 638T32 641T30 647T33 664T42 682Q44 683 56 683Q104 680 165 680Q288 680 306 683H316Q322 677 322 674T320 656Q316 643 310 637H298Q242 637 242 624Q242 619 292 477T343 333L346 336Q350 340 358 349T379 373T411 410T454 461Q546 568 561 587T577 618Q577 634 545 637Q528 637 528 647Q528 649 530 661Q533 676 535 679T549 683Q551 683 578 682T657 680Q684 680 713 681T746 682Q763 682 763 673Q763 669 760 657T755 643Q753 637 734 637Q662 632 617 587Q608 578 477 424L348 273L322 169Q295 62 295 57Q295 46 363 46Q379 46 384 45T390 35Q390 33 388 23Q384 6 382 4T366 1Q361 1 324 1T232 2Q170 2 138 2T102 1Q84 1 84 9Q84 14 87 24Q88 27 89 30T90 35T91 39T93 42T96 44T101 45T107 45T116 46T129 46Q168 47 180 50T198 63Q201 68 227 171L252 274L129 623Q128 624 127 625T125 627T122 629T118 631T113 633T105 634T96 635T83 636T66 637"],90:[683,0,683,58,723,"58 8Q58 23 64 35Q64 36 329 334T596 635L586 637Q575 637 512 637H500H476Q442 637 420 635T365 624T311 598T266 548T228 469Q227 466 226 463T224 458T223 453T222 450L221 448Q218 443 202 443Q185 443 182 453L214 561Q228 606 241 651Q249 679 253 681Q256 683 487 683H718Q723 678 723 675Q723 673 717 649Q189 54 188 52L185 49H274Q369 50 377 51Q452 60 500 100T579 247Q587 272 590 277T603 282H607Q628 282 628 271Q547 5 541 2Q538 0 300 0H124Q58 0 58 8"],97:[441,10,529,33,506,"33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328"],98:[694,11,429,40,422,"73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325"],99:[442,12,433,34,430,"34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159"],100:[694,10,520,33,523,"366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326"],101:[443,11,466,39,430,"39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353"],102:[705,205,490,55,550,"118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162"],103:[442,205,477,10,480,"311 43Q296 30 267 15T206 0Q143 0 105 45T66 160Q66 265 143 353T314 442Q361 442 401 394L404 398Q406 401 409 404T418 412T431 419T447 422Q461 422 470 413T480 394Q480 379 423 152T363 -80Q345 -134 286 -169T151 -205Q10 -205 10 -137Q10 -111 28 -91T74 -71Q89 -71 102 -80T116 -111Q116 -121 114 -130T107 -144T99 -154T92 -162L90 -164H91Q101 -167 151 -167Q189 -167 211 -155Q234 -144 254 -122T282 -75Q288 -56 298 -13Q311 35 311 43ZM384 328L380 339Q377 350 375 354T369 368T359 382T346 393T328 402T306 405Q262 405 221 352Q191 313 171 233T151 117Q151 38 213 38Q269 38 323 108L331 118L384 328"],104:[694,11,576,48,555,"137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683"],105:[661,11,345,21,302,"184 600Q184 624 203 642T247 661Q265 661 277 649T290 619Q290 596 270 577T226 557Q211 557 198 567T184 600ZM21 287Q21 295 30 318T54 369T98 420T158 442Q197 442 223 419T250 357Q250 340 236 301T196 196T154 83Q149 61 149 51Q149 26 166 26Q175 26 185 29T208 43T235 78T260 137Q263 149 265 151T282 153Q302 153 302 143Q302 135 293 112T268 61T223 11T161 -11Q129 -11 102 10T74 74Q74 91 79 106T122 220Q160 321 166 341T173 380Q173 404 156 404H154Q124 404 99 371T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287"],106:[661,204,412,-12,403,"297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376"],107:[694,11,521,48,503,"121 647Q121 657 125 670T137 683Q138 683 209 688T282 694Q294 694 294 686Q294 679 244 477Q194 279 194 272Q213 282 223 291Q247 309 292 354T362 415Q402 442 438 442Q468 442 485 423T503 369Q503 344 496 327T477 302T456 291T438 288Q418 288 406 299T394 328Q394 353 410 369T442 390L458 393Q446 405 434 405H430Q398 402 367 380T294 316T228 255Q230 254 243 252T267 246T293 238T320 224T342 206T359 180T365 147Q365 130 360 106T354 66Q354 26 381 26Q429 26 459 145Q461 153 479 153H483Q499 153 499 144Q499 139 496 130Q455 -11 378 -11Q333 -11 305 15T277 90Q277 108 280 121T283 145Q283 167 269 183T234 206T200 217T182 220H180Q168 178 159 139T145 81T136 44T129 20T122 7T111 -2Q98 -11 83 -11Q66 -11 57 -1T48 16Q48 26 85 176T158 471L195 616Q196 629 188 632T149 637H144Q134 637 131 637T124 640T121 647"],108:[695,12,298,38,266,"117 59Q117 26 142 26Q179 26 205 131Q211 151 215 152Q217 153 225 153H229Q238 153 241 153T246 151T248 144Q247 138 245 128T234 90T214 43T183 6T137 -11Q101 -11 70 11T38 85Q38 97 39 102L104 360Q167 615 167 623Q167 626 166 628T162 632T157 634T149 635T141 636T132 637T122 637Q112 637 109 637T101 638T95 641T94 647Q94 649 96 661Q101 680 107 682T179 688Q194 689 213 690T243 693T254 694Q266 694 266 686Q266 675 193 386T118 83Q118 81 118 75T117 65V59"],109:[443,11,878,21,857,"21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287"],110:[443,11,600,21,580,"21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287"],111:[441,11,485,34,476,"201 -11Q126 -11 80 38T34 156Q34 221 64 279T146 380Q222 441 301 441Q333 441 341 440Q354 437 367 433T402 417T438 387T464 338T476 268Q476 161 390 75T201 -11ZM121 120Q121 70 147 48T206 26Q250 26 289 58T351 142Q360 163 374 216T388 308Q388 352 370 375Q346 405 306 405Q243 405 195 347Q158 303 140 230T121 120"],112:[443,194,503,-39,497,"23 287Q24 290 25 295T30 317T40 348T55 381T75 411T101 433T134 442Q209 442 230 378L240 387Q302 442 358 442Q423 442 460 395T497 281Q497 173 421 82T249 -10Q227 -10 210 -4Q199 1 187 11T168 28L161 36Q160 35 139 -51T118 -138Q118 -144 126 -145T163 -148H188Q194 -155 194 -157T191 -175Q188 -187 185 -190T172 -194Q170 -194 161 -194T127 -193T65 -192Q-5 -192 -24 -194H-32Q-39 -187 -39 -183Q-37 -156 -26 -148H-6Q28 -147 33 -136Q36 -130 94 103T155 350Q156 355 156 364Q156 405 131 405Q109 405 94 377T71 316T59 280Q57 278 43 278H29Q23 284 23 287ZM178 102Q200 26 252 26Q282 26 310 49T356 107Q374 141 392 215T411 325V331Q411 405 350 405Q339 405 328 402T306 393T286 380T269 365T254 350T243 336T235 326L232 322Q232 321 229 308T218 264T204 212Q178 106 178 102"],113:[442,194,446,33,460,"33 157Q33 258 109 349T280 441Q340 441 372 389Q373 390 377 395T388 406T404 418Q438 442 450 442Q454 442 457 439T460 434Q460 425 391 149Q320 -135 320 -139Q320 -147 365 -148H390Q396 -156 396 -157T393 -175Q389 -188 383 -194H370Q339 -192 262 -192Q234 -192 211 -192T174 -192T157 -193Q143 -193 143 -185Q143 -182 145 -170Q149 -154 152 -151T172 -148Q220 -148 230 -141Q238 -136 258 -53T279 32Q279 33 272 29Q224 -10 172 -10Q117 -10 75 30T33 157ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326"],114:[443,11,451,21,430,"21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q161 442 183 430T214 408T225 388Q227 382 228 382T236 389Q284 441 347 441H350Q398 441 422 400Q430 381 430 363Q430 333 417 315T391 292T366 288Q346 288 334 299T322 328Q322 376 378 392Q356 405 342 405Q286 405 239 331Q229 315 224 298T190 165Q156 25 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287"],115:[443,10,469,53,419,"131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289"],116:[626,11,361,19,330,"26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26"],117:[442,11,572,21,551,"21 287Q21 295 30 318T55 370T99 420T158 442Q204 442 227 417T250 358Q250 340 216 246T182 105Q182 62 196 45T238 27T291 44T328 78L339 95Q341 99 377 247Q407 367 413 387T427 416Q444 431 463 431Q480 431 488 421T496 402L420 84Q419 79 419 68Q419 43 426 35T447 26Q469 29 482 57T512 145Q514 153 532 153Q551 153 551 144Q550 139 549 130T540 98T523 55T498 17T462 -8Q454 -10 438 -10Q372 -10 347 46Q345 45 336 36T318 21T296 6T267 -6T233 -11Q189 -11 155 7Q103 38 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287"],118:[443,11,485,21,467,"173 380Q173 405 154 405Q130 405 104 376T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287Q21 294 29 316T53 368T97 419T160 441Q202 441 225 417T249 361Q249 344 246 335Q246 329 231 291T200 202T182 113Q182 86 187 69Q200 26 250 26Q287 26 319 60T369 139T398 222T409 277Q409 300 401 317T383 343T365 361T357 383Q357 405 376 424T417 443Q436 443 451 425T467 367Q467 340 455 284T418 159T347 40T241 -11Q177 -11 139 22Q102 54 102 117Q102 148 110 181T151 298Q173 362 173 380"],119:[443,11,716,21,690,"580 385Q580 406 599 424T641 443Q659 443 674 425T690 368Q690 339 671 253Q656 197 644 161T609 80T554 12T482 -11Q438 -11 404 5T355 48Q354 47 352 44Q311 -11 252 -11Q226 -11 202 -5T155 14T118 53T104 116Q104 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Q21 293 29 315T52 366T96 418T161 441Q204 441 227 416T250 358Q250 340 217 250T184 111Q184 65 205 46T258 26Q301 26 334 87L339 96V119Q339 122 339 128T340 136T341 143T342 152T345 165T348 182T354 206T362 238T373 281Q402 395 406 404Q419 431 449 431Q468 431 475 421T483 402Q483 389 454 274T422 142Q420 131 420 107V100Q420 85 423 71T442 42T487 26Q558 26 600 148Q609 171 620 213T632 273Q632 306 619 325T593 357T580 385"],120:[442,11,572,35,522,"52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289"],121:[443,205,490,21,497,"21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287"],122:[442,11,465,35,468,"347 338Q337 338 294 349T231 360Q211 360 197 356T174 346T162 335T155 324L153 320Q150 317 138 317Q117 317 117 325Q117 330 120 339Q133 378 163 406T229 440Q241 442 246 442Q271 442 291 425T329 392T367 375Q389 375 411 408T434 441Q435 442 449 442H462Q468 436 468 434Q468 430 463 420T449 399T432 377T418 358L411 349Q368 298 275 214T160 106L148 94L163 93Q185 93 227 82T290 71Q328 71 360 90T402 140Q406 149 409 151T424 153Q443 153 443 143Q443 138 442 134Q425 72 376 31T278 -11Q252 -11 232 6T193 40T155 57Q111 57 76 -3Q70 -11 59 -11H54H41Q35 -5 35 -2Q35 13 93 84Q132 129 225 214T340 322Q352 338 347 338"],915:[680,-1,615,31,721,"49 1Q31 1 31 10Q31 12 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 661Q197 674 203 680H714Q721 676 721 669Q721 664 708 557T694 447Q692 440 674 440H662Q655 445 655 454Q655 455 658 480T661 534Q661 572 652 592Q638 619 603 626T501 634H471Q398 633 393 630Q389 628 386 622Q385 619 315 341T245 60Q245 46 333 46H345Q366 46 366 35Q366 33 363 21T358 6Q356 1 339 1Q334 1 292 1T187 2Q122 2 88 2T49 1"],916:[716,0,833,48,788,"574 715L582 716Q589 716 595 716Q612 716 616 714Q621 712 621 709Q622 707 705 359T788 8Q786 5 785 3L781 0H416Q52 0 50 2T48 6Q48 9 305 358T567 711Q572 712 574 715ZM599 346L538 602L442 474Q347 345 252 217T157 87T409 86T661 88L654 120Q646 151 629 220T599 346"],920:[704,22,763,50,740,"740 435Q740 320 676 213T511 42T304 -22Q207 -22 138 35T51 201Q50 209 50 244Q50 346 98 438T227 601Q351 704 476 704Q514 704 524 703Q621 689 680 617T740 435ZM640 466Q640 523 625 565T583 628T532 658T479 668Q370 668 273 559T151 255Q150 245 150 213Q150 156 165 116T207 55T259 26T313 17Q385 17 451 63T561 184Q590 234 615 312T640 466ZM510 276Q510 278 512 288L515 298Q515 299 384 299H253L250 285Q246 271 244 268T231 265H227Q216 265 214 266T207 274Q207 278 223 345T244 416Q247 419 260 419H263Q280 419 280 408Q280 406 278 396L275 386Q275 385 406 385H537L540 399Q544 413 546 416T559 419H563Q574 419 576 418T583 410Q583 403 566 339Q549 271 544 267Q542 265 538 265H530H527Q510 265 510 276"],923:[716,0,694,35,670,"135 2Q114 2 90 2T60 1Q35 1 35 11Q35 28 42 40Q45 46 55 46Q119 46 151 94Q153 97 325 402T498 709Q505 716 526 716Q543 716 549 710Q550 709 560 548T580 224T591 57Q594 52 595 52Q603 47 638 46H663Q670 39 670 35Q669 12 657 0H644Q613 2 530 2Q497 2 469 2T424 2T405 1Q388 1 388 10Q388 15 391 24Q392 27 393 32T395 38T397 41T401 44T406 45T415 46Q473 46 487 64L472 306Q468 365 465 426T459 518L457 550Q456 550 328 322T198 88Q196 80 196 77Q196 49 243 46Q261 46 261 35Q261 34 259 22Q256 7 254 4T240 0Q237 0 211 1T135 2"],926:[678,0,742,53,777,"222 668Q222 670 229 677H654Q677 677 705 677T740 678Q764 678 770 676T777 667Q777 662 764 594Q761 579 757 559T751 528L749 519Q747 512 729 512H717Q710 519 710 525Q712 532 715 559T719 591Q718 595 711 595Q682 598 486 598Q252 598 246 592Q239 587 228 552L216 517Q214 512 197 512H185Q178 517 178 522Q178 524 198 591T222 668ZM227 262Q218 262 215 262T209 266L207 270L227 356Q247 435 250 439Q253 443 260 443H267H280Q287 438 287 433Q287 430 285 420T280 402L278 393Q278 392 431 392H585L590 415Q595 436 598 439T612 443H628Q635 438 635 433Q635 431 615 351T594 268Q592 262 575 262H572Q556 262 556 272Q556 280 560 293L565 313H258L252 292Q248 271 245 267T230 262H227ZM60 0Q53 4 53 11Q53 14 68 89T84 169Q88 176 98 176H104H116Q123 169 123 163Q122 160 117 127T112 88Q112 80 243 80H351H454Q554 80 574 81T597 88V89Q603 100 610 121T622 157T630 174Q633 176 646 176H658Q665 171 665 166Q665 164 643 89T618 7Q616 2 607 1T548 0H335H60"],928:[681,0,831,31,887,"48 1Q31 1 31 10Q31 12 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 661Q197 674 203 680H541Q621 680 709 680T812 681Q841 681 855 681T877 679T886 676T887 670Q887 663 885 656Q880 637 875 635Q871 634 860 634H854Q827 634 794 631Q780 628 775 619Q773 614 704 338T634 58Q634 51 638 51Q646 48 692 46H723Q729 38 729 37T726 19Q722 6 716 0H701Q664 2 567 2Q533 2 504 2T458 2T437 1Q420 1 420 10Q420 15 423 24Q428 43 433 45Q437 46 448 46H454Q481 46 514 49Q528 52 533 61Q536 67 572 209T642 491T678 632Q678 634 533 634H388Q387 631 316 347T245 59Q245 55 246 54T253 50T270 48T303 46H334Q340 38 340 37T337 19Q333 6 327 0H312Q275 2 178 2Q144 2 115 2T69 2T48 1"],931:[683,0,780,58,806,"65 0Q58 4 58 11Q58 16 114 67Q173 119 222 164L377 304Q378 305 340 386T261 552T218 644Q217 648 219 660Q224 678 228 681Q231 683 515 683H799Q804 678 806 674Q806 667 793 559T778 448Q774 443 759 443Q747 443 743 445T739 456Q739 458 741 477T743 516Q743 552 734 574T710 609T663 627T596 635T502 637Q480 637 469 637H339Q344 627 411 486T478 341V339Q477 337 477 336L457 318Q437 300 398 265T322 196L168 57Q167 56 188 56T258 56H359Q426 56 463 58T537 69T596 97T639 146T680 225Q686 243 689 246T702 250H705Q726 250 726 239Q726 238 683 123T639 5Q637 1 610 1Q577 0 348 0H65"],933:[706,0,583,28,700,"45 535Q34 535 31 536T28 544Q28 554 39 578T70 631T126 683T206 705Q230 705 251 698T295 671T330 612T344 514Q344 477 342 473V472Q343 472 347 480T361 509T380 547Q471 704 596 704Q615 704 625 702Q659 692 679 663T700 595Q700 565 696 552T687 537T670 535Q656 535 653 536T649 543Q649 544 649 550T650 562Q650 589 629 605T575 621Q502 621 448 547T365 361Q290 70 290 60Q290 46 379 46H404Q410 40 410 39T408 19Q404 6 398 0H381Q340 2 225 2Q184 2 149 2T94 2T69 1Q61 1 58 1T53 4T51 10Q51 11 53 23Q54 25 55 30T56 36T58 40T60 43T62 44T67 46T73 46T82 46H89Q144 46 163 49T190 62L198 93Q206 124 217 169T241 262T262 350T274 404Q281 445 281 486V494Q281 621 185 621Q147 621 116 601T74 550Q71 539 66 537T45 535"],934:[683,0,667,24,642,"356 624Q356 637 267 637H243Q237 642 237 645T239 664Q243 677 249 683H264Q342 681 429 681Q565 681 571 683H583Q589 677 589 674T587 656Q582 641 578 637H540Q516 637 504 637T479 633T463 630T454 623T448 613T443 597T438 576Q436 566 434 556T430 539L428 533Q442 533 472 526T543 502T613 451T642 373Q642 301 567 241T386 158L336 150Q332 150 331 146Q310 66 310 60Q310 46 399 46H424Q430 40 430 39T428 19Q424 6 418 0H401Q360 2 247 2Q207 2 173 2T119 2T95 1Q87 1 84 1T79 4T77 10Q77 11 79 23Q80 25 81 30T82 36T84 40T86 43T88 44T93 46T99 46T108 46H115Q170 46 189 49T216 62Q220 74 228 107L239 150L223 152Q139 164 82 205T24 311Q24 396 125 462Q207 517 335 533L346 578Q356 619 356 624ZM130 291Q130 203 241 188H249Q249 190 287 342L325 495H324Q313 495 291 491T229 466T168 414Q130 357 130 291ZM536 393Q536 440 507 463T418 496L341 187L351 189Q443 201 487 255Q536 314 536 393"],936:[683,0,612,21,692,"216 151Q48 174 48 329Q48 361 56 403T65 458Q65 482 58 494T43 507T28 510T21 520Q21 528 23 534T29 544L32 546H72H94Q110 546 119 544T139 536T154 514T159 476V465Q159 445 149 399T138 314Q142 229 197 201Q223 187 226 190L233 218Q240 246 253 300T280 407Q333 619 333 625Q333 637 244 637H220Q214 642 214 645T216 664Q220 677 226 683H241Q321 681 405 681Q543 681 549 683H560Q566 677 566 674T564 656Q559 641 555 637H517Q448 636 436 628Q429 623 423 600T373 404L320 192Q370 201 419 248Q451 281 469 317T500 400T518 457Q529 486 542 505T569 532T594 543T621 546H644H669Q692 546 692 536Q691 509 676 509Q623 509 593 399Q587 377 579 355T552 301T509 244T446 195T359 159Q324 151 314 151Q311 151 310 150T298 106T287 60Q287 46 376 46H401Q407 40 407 39T405 19Q401 6 395 0H378Q337 2 224 2Q184 2 150 2T96 2T72 1Q64 1 61 1T56 4T54 10Q54 11 56 23Q57 25 58 30T59 36T61 40T63 43T65 44T70 46T76 46T85 46H92Q147 46 166 49T193 62L204 106Q216 149 216 151"],937:[704,0,772,80,786,"125 84Q127 78 194 76H243V78Q243 122 208 215T165 350Q164 359 162 389Q162 522 272 610Q328 656 396 680T525 704Q628 704 698 661Q734 637 755 601T781 544T786 504Q786 439 747 374T635 226T537 109Q518 81 518 77Q537 76 557 76Q608 76 620 78T640 92Q646 100 656 119T673 155T683 172Q690 173 698 173Q718 173 718 162Q718 161 681 82T642 2Q639 0 550 0H461Q455 5 455 9T458 28Q472 78 510 149T584 276T648 402T677 525Q677 594 636 631T530 668Q476 668 423 641T335 568Q284 499 271 400Q270 388 270 348Q270 298 277 228T285 115Q285 82 280 49T271 6Q269 1 258 1T175 0H87Q83 3 80 7V18Q80 22 82 98Q84 156 85 163T91 172Q94 173 104 173T119 172Q124 169 124 126Q125 104 125 84"],945:[442,11,640,34,603,"34 156Q34 270 120 356T309 442Q379 442 421 402T478 304Q484 275 485 237V208Q534 282 560 374Q564 388 566 390T582 393Q603 393 603 385Q603 376 594 346T558 261T497 161L486 147L487 123Q489 67 495 47T514 26Q528 28 540 37T557 60Q559 67 562 68T577 70Q597 70 597 62Q597 56 591 43Q579 19 556 5T512 -10H505Q438 -10 414 62L411 69L400 61Q390 53 370 41T325 18T267 -2T203 -11Q124 -11 79 39T34 156ZM208 26Q257 26 306 47T379 90L403 112Q401 255 396 290Q382 405 304 405Q235 405 183 332Q156 292 139 224T121 120Q121 71 146 49T208 26"],946:[705,194,566,23,573,"29 -194Q23 -188 23 -186Q23 -183 102 134T186 465Q208 533 243 584T309 658Q365 705 429 705H431Q493 705 533 667T573 570Q573 465 469 396L482 383Q533 332 533 252Q533 139 448 65T257 -10Q227 -10 203 -2T165 17T143 40T131 59T126 65L62 -188Q60 -194 42 -194H29ZM353 431Q392 431 427 419L432 422Q436 426 439 429T449 439T461 453T472 471T484 495T493 524T501 560Q503 569 503 593Q503 611 502 616Q487 667 426 667Q384 667 347 643T286 582T247 514T224 455Q219 439 186 308T152 168Q151 163 151 147Q151 99 173 68Q204 26 260 26Q302 26 349 51T425 137Q441 171 449 214T457 279Q457 337 422 372Q380 358 347 358H337Q258 358 258 389Q258 396 261 403Q275 431 353 431"],947:[441,216,518,11,543,"31 249Q11 249 11 258Q11 275 26 304T66 365T129 418T206 441Q233 441 239 440Q287 429 318 386T371 255Q385 195 385 170Q385 166 386 166L398 193Q418 244 443 300T486 391T508 430Q510 431 524 431H537Q543 425 543 422Q543 418 522 378T463 251T391 71Q385 55 378 6T357 -100Q341 -165 330 -190T303 -216Q286 -216 286 -188Q286 -138 340 32L346 51L347 69Q348 79 348 100Q348 257 291 317Q251 355 196 355Q148 355 108 329T51 260Q49 251 47 251Q45 249 31 249"],948:[717,10,444,36,451,"195 609Q195 656 227 686T302 717Q319 716 351 709T407 697T433 690Q451 682 451 662Q451 644 438 628T403 612Q382 612 348 641T288 671T249 657T235 628Q235 584 334 463Q401 379 401 292Q401 169 340 80T205 -10H198Q127 -10 83 36T36 153Q36 286 151 382Q191 413 252 434Q252 435 245 449T230 481T214 521T201 566T195 609ZM112 130Q112 83 136 55T204 27Q233 27 256 51T291 111T309 178T316 232Q316 267 309 298T295 344T269 400L259 396Q215 381 183 342T137 256T118 179T112 130"],949:[452,23,466,27,428,"190 -22Q124 -22 76 11T27 107Q27 174 97 232L107 239L99 248Q76 273 76 304Q76 364 144 408T290 452H302Q360 452 405 421Q428 405 428 392Q428 381 417 369T391 356Q382 356 371 365T338 383T283 392Q217 392 167 368T116 308Q116 289 133 272Q142 263 145 262T157 264Q188 278 238 278H243Q308 278 308 247Q308 206 223 206Q177 206 142 219L132 212Q68 169 68 112Q68 39 201 39Q253 39 286 49T328 72T345 94T362 105Q376 103 376 88Q376 79 365 62T334 26T275 -8T190 -22"],950:[704,204,438,44,471,"296 643Q298 704 324 704Q342 704 342 687Q342 682 339 664T336 633Q336 623 337 618T338 611Q339 612 341 612Q343 614 354 616T374 618L384 619H394Q471 619 471 586Q467 548 386 546H372Q338 546 320 564L311 558Q235 506 175 398T114 190Q114 171 116 155T125 127T137 104T153 86T171 72T192 61T213 53T235 46T256 39L322 16Q389 -10 389 -80Q389 -119 364 -154T300 -202Q292 -204 274 -204Q247 -204 225 -196Q210 -192 193 -182T172 -167Q167 -159 173 -148Q180 -139 191 -139Q195 -139 221 -153T283 -168Q298 -166 310 -152T322 -117Q322 -91 302 -75T250 -51T183 -29T116 4T65 62T44 160Q44 287 121 410T293 590L302 595Q296 613 296 643"],951:[443,216,497,21,503,"21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q156 442 175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336V326Q503 302 439 53Q381 -182 377 -189Q364 -216 332 -216Q319 -216 310 -208T299 -186Q299 -177 358 57L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287"],952:[705,10,469,35,462,"35 200Q35 302 74 415T180 610T319 704Q320 704 327 704T339 705Q393 701 423 656Q462 596 462 495Q462 380 417 261T302 66T168 -10H161Q125 -10 99 10T60 63T41 130T35 200ZM383 566Q383 668 330 668Q294 668 260 623T204 521T170 421T157 371Q206 370 254 370L351 371Q352 372 359 404T375 484T383 566ZM113 132Q113 26 166 26Q181 26 198 36T239 74T287 161T335 307L340 324H145Q145 321 136 286T120 208T113 132"],953:[442,10,354,48,333,"139 -10Q111 -10 92 0T64 25T52 52T48 74Q48 89 55 109T85 199T135 375L137 384Q139 394 140 397T145 409T151 422T160 431T173 439T190 442Q202 442 213 435T225 410Q225 404 214 358T181 238T137 107Q126 74 126 54Q126 43 126 39T130 31T142 27H147Q206 27 255 78Q272 98 281 114T290 138T295 149T313 153Q321 153 324 153T329 152T332 149T332 143Q332 106 276 48T145 -10H139"],954:[442,11,576,48,554,"83 -11Q70 -11 62 -4T51 8T49 17Q49 30 96 217T147 414Q160 442 193 442Q205 441 213 435T223 422T225 412Q225 401 208 337L192 270Q193 269 208 277T235 292Q252 304 306 349T396 412T467 431Q489 431 500 420T512 391Q512 366 494 347T449 327Q430 327 418 338T405 368Q405 370 407 380L397 375Q368 360 315 315L253 266L240 257H245Q262 257 300 251T366 230Q422 203 422 150Q422 140 417 114T411 67Q411 26 437 26Q484 26 513 137Q516 149 519 151T535 153Q554 153 554 144Q554 121 527 64T457 -7Q447 -10 431 -10Q386 -10 360 17T333 90Q333 108 336 122T339 146Q339 170 320 186T271 209T222 218T185 221H180L155 122Q129 22 126 16Q113 -11 83 -11"],955:[694,12,583,47,557,"166 673Q166 685 183 694H202Q292 691 316 644Q322 629 373 486T474 207T524 67Q531 47 537 34T546 15T551 6T555 2T556 -2T550 -11H482Q457 3 450 18T399 152L354 277L340 262Q327 246 293 207T236 141Q211 112 174 69Q123 9 111 -1T83 -12Q47 -12 47 20Q47 37 61 52T199 187Q229 216 266 252T321 306L338 322Q338 323 288 462T234 612Q214 657 183 657Q166 657 166 673"],956:[442,216,603,23,580,"58 -216Q44 -216 34 -208T23 -186Q23 -176 96 116T173 414Q186 442 219 442Q231 441 239 435T249 423T251 413Q251 401 220 279T187 142Q185 131 185 107V99Q185 26 252 26Q261 26 270 27T287 31T302 38T315 45T327 55T338 65T348 77T356 88T365 100L372 110L408 253Q444 395 448 404Q461 431 491 431Q504 431 512 424T523 412T525 402L449 84Q448 79 448 68Q448 43 455 35T476 26Q485 27 496 35Q517 55 537 131Q543 151 547 152Q549 153 557 153H561Q580 153 580 144Q580 138 575 117T555 63T523 13Q510 0 491 -8Q483 -10 467 -10Q446 -10 429 -4T402 11T385 29T376 44T374 51L368 45Q362 39 350 30T324 12T288 -4T246 -11Q199 -11 153 12L129 -85Q108 -167 104 -180T92 -202Q76 -216 58 -216"],957:[442,2,494,45,530,"74 431Q75 431 146 436T219 442Q231 442 231 434Q231 428 185 241L137 51H140L150 55Q161 59 177 67T214 86T261 119T312 165Q410 264 445 394Q458 442 496 442Q509 442 519 434T530 411Q530 390 516 352T469 262T388 162T267 70T106 5Q81 -2 71 -2Q66 -2 59 -1T51 1Q45 5 45 11Q45 13 88 188L132 364Q133 377 125 380T86 385H65Q59 391 59 393T61 412Q65 431 74 431"],958:[704,205,438,21,443,"268 632Q268 704 296 704Q314 704 314 687Q314 682 311 664T308 635T309 620V616H315Q342 619 360 619Q443 619 443 586Q439 548 358 546H344Q326 546 317 549T290 566Q257 550 226 505T195 405Q195 381 201 364T211 342T218 337Q266 347 298 347Q375 347 375 314Q374 297 359 288T327 277T280 275Q234 275 208 283L195 286Q149 260 119 214T88 130Q88 116 90 108Q101 79 129 63T229 20Q238 17 243 15Q337 -21 354 -33Q383 -53 383 -94Q383 -137 351 -171T273 -205Q240 -205 202 -190T158 -167Q156 -163 156 -159Q156 -151 161 -146T176 -140Q182 -140 189 -143Q232 -168 274 -168Q286 -168 292 -165Q313 -151 313 -129Q313 -112 301 -104T232 -75Q214 -68 204 -64Q198 -62 171 -52T136 -38T107 -24T78 -8T56 12T36 37T26 66T21 103Q21 149 55 206T145 301L154 307L148 313Q141 319 136 323T124 338T111 358T103 382T99 413Q99 471 143 524T259 602L271 607Q268 618 268 632"],959:[441,11,485,34,476,"201 -11Q126 -11 80 38T34 156Q34 221 64 279T146 380Q222 441 301 441Q333 441 341 440Q354 437 367 433T402 417T438 387T464 338T476 268Q476 161 390 75T201 -11ZM121 120Q121 70 147 48T206 26Q250 26 289 58T351 142Q360 163 374 216T388 308Q388 352 370 375Q346 405 306 405Q243 405 195 347Q158 303 140 230T121 120"],960:[431,11,570,19,573,"132 -11Q98 -11 98 22V33L111 61Q186 219 220 334L228 358H196Q158 358 142 355T103 336Q92 329 81 318T62 297T53 285Q51 284 38 284Q19 284 19 294Q19 300 38 329T93 391T164 429Q171 431 389 431Q549 431 553 430Q573 423 573 402Q573 371 541 360Q535 358 472 358H408L405 341Q393 269 393 222Q393 170 402 129T421 65T431 37Q431 20 417 5T381 -10Q370 -10 363 -7T347 17T331 77Q330 86 330 121Q330 170 339 226T357 318T367 358H269L268 354Q268 351 249 275T206 114T175 17Q164 -11 132 -11"],961:[442,216,517,23,510,"58 -216Q25 -216 23 -186Q23 -176 73 26T127 234Q143 289 182 341Q252 427 341 441Q343 441 349 441T359 442Q432 442 471 394T510 276Q510 219 486 165T425 74T345 13T266 -10H255H248Q197 -10 165 35L160 41L133 -71Q108 -168 104 -181T92 -202Q76 -216 58 -216ZM424 322Q424 359 407 382T357 405Q322 405 287 376T231 300Q217 269 193 170L176 102Q193 26 260 26Q298 26 334 62Q367 92 389 158T418 266T424 322"],962:[442,107,363,30,405,"31 207Q31 306 115 374T302 442Q341 442 373 430T405 400Q405 392 399 383T379 374Q373 375 348 390T296 405Q222 405 160 357T98 249Q98 232 103 218T112 195T132 175T154 159T186 141T219 122Q234 114 255 102T286 85T299 78L302 74Q306 71 308 69T315 61T322 51T328 40T332 25T334 8Q334 -31 305 -69T224 -107Q194 -107 163 -92Q156 -88 156 -80Q156 -73 162 -67T178 -61Q186 -61 190 -63Q209 -71 224 -71Q244 -71 253 -59T263 -30Q263 -25 263 -21T260 -12T255 -4T248 3T239 9T227 17T213 25T195 34T174 46Q170 48 150 58T122 74T97 90T70 112T51 137T36 169T31 207"],963:[431,11,571,31,572,"184 -11Q116 -11 74 34T31 147Q31 247 104 333T274 430Q275 431 414 431H552Q553 430 555 429T559 427T562 425T565 422T567 420T569 416T570 412T571 407T572 401Q572 357 507 357Q500 357 490 357T476 358H416L421 348Q439 310 439 263Q439 153 359 71T184 -11ZM361 278Q361 358 276 358Q152 358 115 184Q114 180 114 178Q106 141 106 117Q106 67 131 47T188 26Q242 26 287 73Q316 103 334 153T356 233T361 278"],964:[431,13,437,18,517,"39 284Q18 284 18 294Q18 301 45 338T99 398Q134 425 164 429Q170 431 332 431Q492 431 497 429Q517 424 517 402Q517 388 508 376T485 360Q479 358 389 358T299 356Q298 355 283 274T251 109T233 20Q228 5 215 -4T186 -13Q153 -13 153 20V30L203 192Q214 228 227 272T248 336L254 357Q254 358 208 358Q206 358 197 358T183 359Q105 359 61 295Q56 287 53 286T39 284"],965:[443,10,540,21,523,"413 384Q413 406 432 424T473 443Q492 443 507 425T523 367Q523 334 508 270T468 153Q424 63 373 27T282 -10H268Q220 -10 186 2T135 36T111 78T104 121Q104 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Q21 299 34 333T82 404T161 441Q200 441 225 419T250 355Q248 336 247 334Q247 331 232 291T201 199T185 118Q185 68 211 47T275 26Q317 26 355 57T416 132T452 216T465 277Q465 301 457 318T439 343T421 361T413 384"],966:[442,218,654,50,618,"92 210Q92 176 106 149T142 108T185 85T220 72L235 70L237 71L250 112Q268 170 283 211T322 299T370 375T429 423T502 442Q547 442 582 410T618 302Q618 224 575 152T457 35T299 -10Q273 -10 273 -12L266 -48Q260 -83 252 -125T241 -179Q236 -203 215 -212Q204 -218 190 -218Q159 -215 159 -185Q159 -175 214 -2L209 0Q204 2 195 5T173 14T147 28T120 46T94 71T71 103T56 142T50 190Q50 238 76 311T149 431H162Q183 431 183 423Q183 417 175 409Q134 361 114 300T92 210ZM574 278Q574 320 550 344T486 369Q437 369 394 329T323 218Q309 184 295 109L286 64Q304 62 306 62Q423 62 498 131T574 278"],967:[443,204,626,24,600,"576 -125Q576 -147 547 -175T487 -204H476Q394 -204 363 -157Q334 -114 293 26L284 59Q283 58 248 19T170 -66T92 -151T53 -191Q49 -194 43 -194Q36 -194 31 -189T25 -177T38 -154T151 -30L272 102L265 131Q189 405 135 405Q104 405 87 358Q86 351 68 351Q48 351 48 361Q48 369 56 386T89 423T148 442Q224 442 258 400Q276 375 297 320T330 222L341 180Q344 180 455 303T573 429Q579 431 582 431Q600 431 600 414Q600 407 587 392T477 270Q356 138 353 134L362 102Q392 -10 428 -89T490 -168Q504 -168 517 -156T536 -126Q539 -116 543 -115T557 -114T571 -115Q576 -118 576 -125"],968:[694,205,651,21,634,"161 441Q202 441 226 417T250 358Q250 338 218 252T187 127Q190 85 214 61Q235 43 257 37Q275 29 288 29H289L371 360Q455 691 456 692Q459 694 472 694Q492 694 492 687Q492 678 411 356Q329 28 329 27T335 26Q421 26 498 114T576 278Q576 302 568 319T550 343T532 361T524 384Q524 405 541 424T583 443Q602 443 618 425T634 366Q634 337 623 288T605 220Q573 125 492 57T329 -11H319L296 -104Q272 -198 272 -199Q270 -205 252 -205H239Q233 -199 233 -197Q233 -192 256 -102T279 -9Q272 -8 265 -8Q106 14 106 139Q106 174 139 264T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Q21 299 34 333T82 404T161 441"],969:[443,12,622,15,604,"495 384Q495 406 514 424T555 443Q574 443 589 425T604 364Q604 334 592 278T555 155T483 38T377 -11Q297 -11 267 66Q266 68 260 61Q201 -11 125 -11Q15 -11 15 139Q15 230 56 325T123 434Q135 441 147 436Q160 429 160 418Q160 406 140 379T94 306T62 208Q61 202 61 187Q61 124 85 100T143 76Q201 76 245 129L253 137V156Q258 297 317 297Q348 297 348 261Q348 243 338 213T318 158L308 135Q309 133 310 129T318 115T334 97T358 83T393 76Q456 76 501 148T546 274Q546 305 533 325T508 357T495 384"],977:[705,11,591,21,563,"537 500Q537 474 533 439T524 383L521 362Q558 355 561 351Q563 349 563 345Q563 321 552 318Q542 318 521 323L510 326Q496 261 459 187T362 51T241 -11Q100 -11 100 105Q100 139 127 242T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287Q21 291 27 313T47 368T79 418Q103 442 134 442Q169 442 201 419T233 344Q232 330 206 228T180 98Q180 26 247 26Q292 26 332 90T404 260L427 349Q422 349 398 359T339 392T289 440Q265 476 265 520Q265 590 312 647T417 705Q463 705 491 670T528 592T537 500ZM464 564Q464 668 413 668Q373 668 339 622T304 522Q304 494 317 470T349 431T388 406T421 391T435 387H436L443 415Q450 443 457 485T464 564"],981:[694,205,596,42,579,"409 688Q413 694 421 694H429H442Q448 688 448 686Q448 679 418 563Q411 535 404 504T392 458L388 442Q388 441 397 441T429 435T477 418Q521 397 550 357T579 260T548 151T471 65T374 11T279 -10H275L251 -105Q245 -128 238 -160Q230 -192 227 -198T215 -205H209Q189 -205 189 -198Q189 -193 211 -103L234 -11Q234 -10 226 -10Q221 -10 206 -8T161 6T107 36T62 89T43 171Q43 231 76 284T157 370T254 422T342 441Q347 441 348 445L378 567Q409 686 409 688ZM122 150Q122 116 134 91T167 53T203 35T237 27H244L337 404Q333 404 326 403T297 395T255 379T211 350T170 304Q152 276 137 237Q122 191 122 150ZM500 282Q500 320 484 347T444 385T405 400T381 404H378L332 217L284 29Q284 27 285 27Q293 27 317 33T357 47Q400 66 431 100T475 170T494 234T500 282"],982:[431,10,828,19,823,"206 -10Q158 -10 136 24T114 110Q114 233 199 349L205 358H184Q144 358 121 347Q108 340 95 330T75 312T61 295T53 285Q51 284 38 284Q19 284 19 294Q19 300 38 329T93 391T164 429Q171 431 532 431Q799 431 803 430Q823 423 823 402Q823 377 801 364Q790 358 766 358Q748 358 748 357Q748 355 749 348T752 327T754 297Q754 258 738 207T693 107T618 24T520 -10Q488 -10 466 2T432 36T416 77T411 120Q411 128 410 128T404 122Q373 71 323 31T206 -10ZM714 296Q714 316 707 358H251Q250 357 244 348T230 328T212 301T193 267T176 229T164 187T159 144Q159 62 222 62Q290 62 349 127T432 285Q433 286 434 288T435 291T437 293T440 294T444 294T452 294H466Q472 288 472 286Q472 285 464 244T456 170Q456 62 534 62Q604 62 659 139T714 296"],1009:[442,194,517,67,510,"205 -174Q136 -174 102 -153T67 -76Q67 -25 91 85T127 234Q143 289 182 341Q252 427 341 441Q343 441 349 441T359 442Q432 442 471 394T510 276Q510 169 431 80T253 -10Q226 -10 204 -2T169 19T146 44T132 64L128 73Q128 72 124 53T116 5T112 -44Q112 -68 117 -78T150 -95T236 -102Q327 -102 356 -111T386 -154Q386 -166 384 -178Q381 -190 378 -192T361 -194H348Q342 -188 342 -179Q342 -169 315 -169Q294 -169 264 -171T205 -174ZM424 322Q424 359 407 382T357 405Q322 405 287 376T231 300Q221 276 204 217Q188 152 188 116Q188 68 210 47T259 26Q297 26 334 62Q367 92 389 158T418 266T424 322"],1013:[431,11,406,40,382,"227 -11Q149 -11 95 41T40 174Q40 262 87 322Q121 367 173 396T287 430Q289 431 329 431H367Q382 426 382 411Q382 385 341 385H325H312Q191 385 154 277L150 265H327Q340 256 340 246Q340 228 320 219H138V217Q128 187 128 143Q128 77 160 52T231 26Q258 26 284 36T326 57T343 68Q350 68 354 58T358 39Q358 36 357 35Q354 31 337 21T289 0T227 -11"],8710:[716,0,833,48,788,""]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Math/Italic/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js deleted file mode 100644 index e30c955..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-bold"],{32:[0,0,250,0,0,""],33:[694,0,367,110,256,"111 669Q111 680 111 682T113 689T121 693T137 694H184H249Q255 686 256 681Q244 220 239 213Q236 208 229 208T183 207T137 207T127 213T118 431T111 669ZM110 71V95Q110 137 136 144Q140 146 183 146H200Q246 146 254 121Q256 115 256 73V51Q256 9 230 2Q225 0 181 0L138 1Q121 7 113 21L111 28L110 71"],34:[694,-442,558,37,420,"38 687Q42 693 45 693Q46 694 111 694H176Q179 690 183 687V556L144 501Q139 494 134 486T126 474T120 465T114 457T110 451T106 447T102 445T98 443T94 443T89 442H73H62Q37 442 37 453Q37 458 55 501T74 546Q74 548 59 548L44 549L38 555V687ZM275 687Q279 693 282 693Q283 694 348 694H413Q416 690 420 687V556L381 501Q376 494 371 486T363 474T357 465T351 457T347 451T343 447T339 445T335 443T331 443T326 442H310H299Q274 442 274 453Q274 458 292 501T311 546Q311 548 296 548L281 549L275 555V687"],35:[694,193,917,61,855,"61 365Q61 370 62 375T65 383T69 390T74 395T80 399T85 403T90 406L94 407H344L381 536Q418 668 426 680Q431 687 445 692Q451 694 457 694Q477 694 488 682T500 651Q500 645 466 528T431 409Q431 407 504 407H577L609 521Q651 668 656 675Q669 693 691 693Q710 693 721 680T733 651Q733 645 699 528T664 409Q664 407 743 407H823L827 405Q831 403 834 402T841 397T848 389T853 379T855 365Q855 337 823 324L731 323H639L619 253Q599 181 598 180V177H823L827 175Q831 173 834 172T841 167T848 159T853 149T855 135Q855 107 823 94L698 93H573L540 -21Q498 -168 493 -175Q480 -193 458 -193Q439 -193 428 -180T416 -151Q416 -144 450 -27T485 91Q485 93 412 93H340L307 -21Q265 -168 260 -175Q247 -193 225 -193Q206 -193 195 -180T183 -151Q183 -144 217 -27T252 91Q252 93 173 93L94 94Q61 105 61 135Q61 140 62 145T65 153T69 160T74 165T80 169T85 173T90 176L94 177H185L277 178L297 248L318 320V323H206L94 324Q61 335 61 365ZM551 320V323H479Q406 323 405 322Q404 319 385 249T365 178T438 177L510 178L530 248L551 320"],36:[750,56,550,49,488,"231 712L232 716Q232 719 232 722T234 729T239 736T246 743T256 748T271 750Q318 750 318 711V703Q393 692 451 656Q469 645 470 640Q470 635 461 587L453 537Q445 529 442 529Q438 529 424 540T384 565T330 585Q328 585 325 585T320 586L318 587V434Q322 433 333 429T350 424T365 418T382 409T399 397T419 380Q488 313 488 213Q488 24 334 -5L318 -8V-17Q318 -56 279 -56H272Q253 -56 243 -46T232 -30T231 -18V-8H224Q170 2 127 20T68 50T49 67Q49 71 58 122T68 176Q71 182 79 182Q83 182 98 169T145 138T216 110Q228 108 229 108H231V288Q167 299 114 356T61 496Q61 537 70 570T94 624T126 661T162 684T195 696T219 701L228 702H231V712ZM231 521Q231 583 230 583Q226 582 220 579T204 561T193 521Q193 491 212 472Q226 458 230 458Q231 458 231 521ZM318 112Q356 131 356 187Q356 237 318 263V112"],37:[750,57,1029,61,966,"61 549Q61 733 218 749Q220 749 228 749T241 750Q286 750 321 735T369 708T389 683Q422 634 422 548V538Q422 519 420 501T408 453T381 401T328 364T243 347Q61 347 61 549ZM292 549Q292 663 242 663Q221 663 211 648T198 615T196 566V548Q196 471 206 454Q218 434 242 434Q292 434 292 549ZM243 -55Q223 -55 212 -42T201 -13Q201 -2 207 7Q209 11 480 371T758 738Q770 750 788 750Q805 750 817 738T830 709Q830 694 820 681L544 315Q273 -43 269 -47Q258 -55 243 -55ZM606 146Q606 330 763 346Q764 346 773 346T786 347Q831 347 866 332T914 305T934 280Q966 233 966 146V135Q966 115 964 97T952 49T925 -2T872 -40T788 -56Q606 -56 606 146ZM742 146V132Q742 107 743 93T748 62T762 39T787 31Q819 31 832 79Q837 97 837 146Q837 260 787 260Q767 260 757 246T744 214T742 169V146"],38:[716,23,831,47,769,"757 117Q762 117 769 110V3Q759 -7 718 -14T641 -22T571 -15T518 1T477 19T453 31L437 23Q350 -19 257 -22Q158 -22 103 30T47 155Q47 188 57 216T87 263T119 292T151 313L182 333L187 336L181 349Q150 431 150 506Q150 605 211 660T347 716Q417 716 471 668T526 543Q526 517 518 495T471 432T360 343L342 330Q342 327 358 306T402 250T458 189L467 181Q518 225 556 289T607 395L620 437Q622 443 630 443Q631 443 679 430Q718 420 725 418T733 409Q733 402 722 365T670 255T573 123Q562 111 563 111Q589 94 644 94Q678 94 703 100T740 111T757 117ZM397 544Q397 573 384 601T346 629Q320 629 299 607T277 538Q277 484 295 429Q301 413 301 412Q302 409 309 415Q397 476 397 544ZM227 258Q197 228 197 177Q197 150 207 126T234 95Q242 93 251 93Q288 93 337 107L349 110L328 131Q266 196 234 248L227 258"],39:[694,-442,306,80,226,"81 687Q85 693 88 693Q89 694 154 694H219Q222 690 226 687V556L187 501Q182 494 177 486T169 474T163 465T157 457T153 451T149 447T145 445T141 443T137 443T132 442H116H105Q80 442 80 453Q80 458 98 501T117 546Q117 548 102 548L87 549L81 555V687"],40:[750,249,428,79,366,"79 250Q79 352 100 441T152 585T213 678T266 733L287 749Q288 750 324 750H359Q366 741 366 738Q366 734 356 721T329 682T296 623T262 531T238 407Q230 346 230 250Q230 142 244 55T278 -82T318 -165T352 -215T366 -238Q366 -242 359 -249H286L277 -242Q79 -74 79 250"],41:[750,250,428,61,348,"61 737Q61 750 85 750H106H141L150 742Q348 574 348 250T150 -242L141 -249L106 -250H87Q61 -250 61 -238Q61 -233 74 -216Q157 -113 183 51Q197 130 197 250T183 449Q174 505 158 554T126 634T95 687T71 722T61 737"],42:[750,-293,550,67,482,"241 579Q241 582 228 639T215 702Q215 722 233 736T271 750Q296 750 315 736T334 702V697Q334 693 328 664T314 607L308 579L352 620Q389 654 397 660T417 668Q447 668 464 647T482 602Q482 591 479 583T472 569T459 559T443 552T421 546T397 538L342 521L397 504Q405 501 420 497T442 490T458 483T472 473T479 460T482 440Q482 416 465 395T417 374Q406 375 398 381T352 422L308 463L314 435Q321 407 327 378T334 345Q336 333 327 319T296 295Q288 293 275 293Q241 293 227 311T215 345Q215 349 221 378T234 435L241 463L197 422Q160 388 152 382T132 374Q102 374 85 395T67 440Q67 451 70 459T77 473T90 483T106 490T128 496T152 504L207 521L152 538Q144 541 129 545T107 552T91 559T77 569T70 582T67 602Q67 626 84 647T132 668Q143 667 151 661T197 620L241 579"],43:[617,116,856,61,794,"61 250Q61 276 94 292H386V436V535Q386 577 388 589T401 607Q411 617 427 617Q458 617 468 587Q470 581 470 436V292H762L766 290Q770 288 773 287T780 282T787 274T792 264T794 250Q794 222 762 209L616 208H470V64Q470 -81 468 -87Q458 -116 428 -116T388 -87Q386 -81 386 64V208H240L94 209Q61 220 61 250"],44:[146,106,306,80,226,"81 139Q85 145 88 145Q89 146 154 146H219Q222 142 226 139V8L187 -47Q182 -54 177 -62T169 -74T163 -83T157 -91T153 -97T149 -101T145 -103T141 -105T137 -105T132 -106H116H105Q80 -106 80 -95Q80 -90 98 -47T117 -2Q117 0 102 0L87 1L81 7V139"],45:[274,-185,367,12,306,"12 230Q12 257 26 265T80 274Q88 274 114 274T158 273T201 273T235 274Q276 274 290 266T305 230T291 194T235 185Q226 185 201 185T159 186Q143 186 119 186T85 185Q43 185 28 193T12 230"],46:[146,0,306,80,226,"219 146Q222 142 226 139V7L222 4L219 1L154 0Q102 0 94 0T82 6Q80 9 80 74L81 139Q85 145 88 145Q89 146 154 146H219"],47:[750,249,550,61,488,"103 -249Q81 -249 71 -235T61 -207Q61 -201 62 -198Q64 -192 235 265T409 727Q418 750 445 750Q464 750 476 737T488 707Q488 701 313 234Q143 -225 137 -232Q126 -249 103 -249"],48:[715,22,550,43,507,"274 -22Q227 -22 190 -9T128 24T87 76T62 135T49 204T44 271T43 336V343V362Q43 407 45 440T56 524T86 613T141 677Q197 715 264 715Q314 715 353 702T418 669T460 616T487 555T500 483T505 413T506 343Q506 310 506 293T503 241T498 185T486 133T467 83T437 42T397 8T343 -13T274 -22ZM355 355V401Q355 448 354 476T349 537T336 587T311 617T272 629Q270 629 266 629T261 628Q219 618 207 568T194 419V355Q194 203 200 156T231 85Q250 66 275 66Q299 66 318 85Q342 109 348 156T355 355"],49:[716,-1,550,76,473,"118 560H116Q107 560 100 561T85 572T76 600Q76 612 77 618T83 632T99 644Q102 645 135 646T207 660T275 700Q292 716 310 716Q353 716 360 691Q362 685 362 386V87H446Q464 76 468 69T473 44Q473 12 446 1H118Q105 7 100 13T94 25T93 44V62Q100 79 119 87H210V329Q210 571 208 571Q182 560 118 560"],50:[716,0,550,46,494,"339 477Q339 505 332 531T301 579T242 601Q165 601 136 503Q133 493 130 490T121 486Q116 486 94 514Q86 523 82 528Q46 572 46 577Q46 591 77 632T147 691Q192 716 257 716Q305 716 351 700Q416 674 455 615T494 481Q494 421 463 376T356 266Q326 240 287 205T224 146T199 122H331Q359 122 392 122T431 123H445Q485 123 492 98Q494 92 494 62V47Q494 9 468 2Q463 0 272 0L83 1Q63 7 56 28L55 57V89Q59 97 215 261Q255 303 275 327T317 394T339 477"],51:[716,22,550,46,503,"61 624Q62 630 83 650T153 693T262 716Q328 716 373 698T438 650T465 593T473 536Q473 438 375 376L387 371Q450 350 476 305T503 208Q503 164 492 126T456 53T380 -2T261 -22Q224 -22 189 -15T130 2T86 24T57 43T46 53Q46 56 53 99T62 145Q65 152 71 152Q76 152 90 143T123 121T175 99T248 87Q302 87 321 113T341 202Q341 264 329 292T279 329L232 331L190 332L184 338V411Q190 417 192 417Q193 418 205 419T232 421T252 424Q280 430 299 461T318 539V551Q318 599 283 609Q276 611 257 611Q225 611 199 601T159 577T136 554T120 543T102 560T76 597T62 618T61 624"],52:[695,0,550,31,518,"278 693H282Q285 693 291 693T305 694T322 694T342 694H377Q402 694 411 691T430 677Q434 670 434 646T435 456V249H461H472Q509 249 516 224Q518 219 518 194Q518 178 518 171T511 155T492 142Q488 140 461 140H435V86V53Q435 9 409 2Q405 0 366 0H351Q306 0 298 25Q296 31 296 86V140H179H123Q99 140 80 129T50 106T37 95Q31 95 31 163V208Q31 246 33 251Q251 673 262 684Q268 691 278 693ZM302 249V416L301 576Q301 536 165 276L151 250L226 249H302"],53:[694,22,550,36,494,"109 282Q87 290 83 310V666Q83 667 84 670T87 676T91 682T98 688T108 693Q112 694 269 694T431 692Q457 686 457 648V637V624Q457 588 431 581Q426 579 326 579H227V510Q227 442 229 442Q243 450 288 450Q377 450 435 399T494 222Q494 -22 241 -22Q202 -22 167 -11T109 16T69 49T45 79T37 94T69 151Q91 185 97 185Q105 185 112 170Q127 135 160 111T240 87Q266 87 284 94T311 111T325 142T331 179T332 226Q332 307 324 335T281 363Q228 363 197 306Q189 289 172 282H109"],54:[716,22,550,46,503,"414 589Q410 589 389 600T334 612Q275 612 243 575Q209 538 202 433V422L209 431Q243 487 317 487Q392 487 440 442Q478 402 490 357T503 236Q503 113 454 54Q421 13 381 -4T279 -22Q263 -22 250 -21T214 -15T173 1T133 30T96 77T68 146T50 242Q46 278 46 336Q46 406 52 447Q84 698 312 715L315 716Q318 716 321 716Q323 716 328 716T337 715Q398 715 425 688V596Q419 591 414 589ZM282 87Q324 89 336 117T348 231Q348 310 343 343T324 388T277 399Q249 399 231 373T208 317T202 253Q202 201 207 168T224 117T249 93T282 87"],55:[695,11,550,46,503,"135 38Q135 190 198 335T353 572H215Q185 572 151 572T110 571H96Q55 571 48 596Q46 602 46 633V648Q46 686 72 693Q76 695 124 695Q134 695 183 695T274 694Q472 694 477 692Q503 686 503 648V637Q503 612 502 605T491 588Q300 349 292 46V36Q292 -4 266 -9Q262 -11 214 -11H192Q160 -11 148 -3T135 38"],56:[715,22,550,46,503,"61 518Q61 574 79 614T128 676T192 706T263 715H270Q298 715 318 714T373 701T430 671T470 612T488 517Q488 459 458 423T390 376Q388 375 393 373Q395 372 398 371Q503 330 503 204Q503 -22 275 -22Q209 -22 163 -3T92 49T57 120T46 204Q46 230 50 252T61 289T77 318T96 339T116 353T134 363T148 369T158 373T160 376Q118 389 90 424T61 518ZM344 538Q344 563 340 578T326 600T307 609T279 612Q232 612 218 594T204 518Q204 459 216 439T275 418Q328 418 338 450Q344 464 344 515V538ZM248 88T274 88T315 94T338 117T346 149T349 197Q349 269 342 290Q338 309 320 320T274 331Q246 331 229 320T207 290Q200 269 200 197Q201 163 202 149T210 118T232 94"],57:[716,22,550,46,503,"347 272Q346 272 342 266T330 250T309 230T276 214T230 207Q185 207 150 223Q116 240 90 276T54 357Q46 393 46 468Q46 469 46 484T47 502T48 520T51 540T55 559T61 579T69 599T81 620T96 640T115 661Q174 716 276 716Q299 716 317 714T369 698T426 658T471 580T499 456Q503 402 503 342Q503 115 392 29Q322 -22 231 -22Q163 -22 115 7L82 31Q76 38 81 46Q116 112 127 123Q130 126 134 126T148 116T179 97T226 87Q287 87 318 132Q323 139 326 146T332 165T337 182T340 204T342 225T345 249T347 272ZM201 547T201 454T211 329T262 294Q276 294 285 296T310 312T335 355Q347 391 347 447Q347 520 340 550T317 595Q300 612 277 612Q226 612 214 580"],58:[458,0,306,80,226,"226 319L219 313H87L81 319L80 384Q80 437 80 445T86 456Q89 458 154 458H219Q222 454 226 451V319ZM219 146Q222 142 226 139V7L222 4L219 1L154 0Q102 0 94 0T82 6Q80 9 80 74L81 139Q85 145 88 145Q89 146 154 146H219"],59:[458,106,306,80,226,"226 319L219 313H87L81 319L80 384Q80 437 80 445T86 456Q89 458 154 458H219Q222 454 226 451V319ZM81 139Q85 145 88 145Q89 146 154 146H219Q222 142 226 139V8L187 -47Q182 -54 177 -62T169 -74T163 -83T157 -91T153 -97T149 -101T145 -103T141 -105T137 -105T132 -106H116H105Q80 -106 80 -95Q80 -90 98 -47T117 -2Q117 0 102 0L87 1L81 7V139"],61:[407,-94,856,61,795,"94 324Q61 335 61 366Q61 396 91 405Q96 407 429 407H762Q763 406 767 404T774 400T781 395T787 387T792 378T794 365Q794 338 762 324H94ZM94 94Q61 105 61 135Q61 149 69 160T92 175Q97 177 430 177H762L766 175Q770 173 773 172T780 167T787 159T792 149T794 135Q794 107 762 94H94"],63:[706,0,519,61,457,"61 644Q61 652 87 666T157 693T244 705Q344 705 400 671T457 551Q457 516 446 490T422 451T387 421T356 391Q330 361 318 332T305 292T303 252Q303 218 300 213T290 208T244 207H220Q194 207 188 213Q187 214 186 215V255Q187 282 188 296T198 345T229 417T288 496Q306 515 306 559Q306 596 296 607T253 618Q214 618 185 607T143 583T120 558T103 547Q99 547 95 551Q93 553 77 597T61 644ZM171 71V95Q171 137 197 144Q201 146 244 146H261Q307 146 315 121Q317 115 317 73V51Q317 9 291 2Q286 0 242 0L199 1Q182 7 174 21L172 28L171 71"],64:[704,11,733,61,671,"61 264T61 347T82 494T136 596T217 660T311 694T410 704Q460 704 471 703Q534 694 577 666Q633 623 651 552T670 370V342Q670 249 633 195Q583 116 454 116Q238 116 238 347Q238 443 276 499Q328 578 456 578Q488 578 494 577L504 575Q475 617 430 617H421Q196 617 196 347Q196 215 253 143Q310 76 427 76Q499 76 561 102L575 107H664Q671 97 671 94V89L663 81Q566 -11 422 -11Q365 -11 316 -2T219 33T137 97T82 200ZM469 490Q459 492 453 492Q429 492 405 472Q374 439 374 347Q374 233 423 210Q436 202 454 202L486 210Q536 228 536 347Q536 461 486 484Q476 490 469 490"],65:[694,1,733,42,690,"110 0H86Q42 0 42 27Q42 37 148 350T258 667Q269 687 291 692Q295 694 366 694H399Q432 694 448 689T474 667Q477 663 583 350T690 27Q690 0 642 0H617H592Q582 0 575 1T561 2T549 6T541 11T533 18T527 26T522 37T517 49T512 64T506 81L490 130H225Q225 128 208 79T189 27Q185 19 180 14T170 7T156 3T143 1T127 0T110 0ZM439 279Q359 524 359 547L357 555L355 543Q347 503 270 263L259 231H357Q455 231 455 232L439 279"],66:[694,-1,733,92,671,"119 1Q98 5 92 28V667Q98 686 118 693Q121 694 272 694H289H346Q439 694 500 681T600 625Q640 580 640 513Q640 451 601 414T504 364L518 361Q568 351 602 329T649 280T666 235T671 197Q671 172 665 147T642 91T586 37T488 5Q456 1 282 1H119ZM489 509Q489 532 479 548T450 573T421 585T394 591Q387 592 315 593H247V404H298H325Q432 404 466 444Q489 470 489 509ZM517 194Q517 235 502 261T458 299T407 313T353 317H329H322H247V101H319H357Q387 101 407 103T452 111T492 133T514 171Q516 176 517 194"],67:[704,11,703,61,647,"423 -11Q339 -11 275 9T171 62T106 143T71 240T61 347Q61 450 93 527Q157 664 313 694Q357 704 416 704Q479 704 517 699T608 676Q634 667 635 660Q635 653 624 592L612 528L609 524Q604 521 601 521Q595 521 583 531T555 555T505 578T428 589H424Q298 589 250 494Q224 438 224 347Q224 292 233 251T265 175T329 122T432 104Q488 104 524 115T604 158Q607 160 610 162T615 165T619 168L621 170Q625 172 630 170T637 163Q638 160 642 109T647 54Q646 49 625 37T568 11T499 -7Q463 -11 423 -11"],68:[695,0,794,92,732,"119 1Q98 5 92 28V667Q98 686 118 693H124Q131 693 142 693T168 694T200 694T237 694H296Q416 694 450 692T525 677Q732 617 732 342Q732 169 644 81Q593 32 528 16T372 0Q356 0 324 0T276 1H119ZM573 349Q573 387 571 413T559 473T532 527T482 567T403 591Q395 592 320 593H250V101H321Q418 102 456 114Q553 144 569 263Q573 303 573 349"],69:[691,0,642,92,595,"277 122Q280 122 380 123T544 125Q552 125 557 125T565 124T569 124Q595 115 595 75V62V47Q595 9 569 2Q564 0 341 0L119 1Q99 7 92 28V664Q98 683 118 690Q121 691 335 691T554 689Q580 682 580 644V632V618Q580 582 554 573Q553 573 551 573T542 572T527 572Q464 572 364 573T260 575H253V412H385H459Q524 412 536 404T549 357Q549 341 549 334T542 318T523 305Q518 303 385 303H253V122H277"],70:[691,0,611,92,564,"512 572Q451 572 356 573T258 575H253V400H370H431Q494 400 506 392T518 345Q518 307 507 299T437 291H370H253V161Q253 141 253 113T254 75Q254 23 245 12T195 0H170L119 1Q99 7 92 28V664Q98 683 118 690Q121 691 327 691T538 689Q564 682 564 644V632V618Q564 582 538 573Q537 573 535 573T526 572T512 572"],71:[705,11,733,60,659,"61 347Q61 405 70 454T105 550T171 631T276 685T426 705Q483 705 537 693T620 668T650 646Q650 645 649 637T645 612T639 578L627 514L624 510Q620 507 615 507T597 520T566 548T512 577T430 590Q223 590 223 347T431 104Q478 104 506 112Q508 112 508 164V215H471L434 216L428 222L427 268Q427 315 429 318Q432 323 444 323T544 324H652Q655 320 659 317V45L656 43Q654 39 624 27T536 2T424 -11Q366 -11 317 -2T219 33T137 97T82 200T61 347"],72:[694,0,794,92,702,"92 667Q101 694 143 694H172H198Q244 694 251 669Q253 663 253 539V415H540V539Q540 558 540 585T539 621Q539 673 550 683T611 694H621H646Q671 694 683 690T700 669Q702 663 702 347T700 25Q696 9 684 5T646 0H621H606Q560 0 550 11T539 76Q539 85 539 116T540 169V306H253V169Q253 147 253 116T254 75Q254 23 245 12T194 0H170L119 1Q99 7 92 28V667"],73:[694,0,331,85,246,"85 667Q94 694 136 694H165H191Q237 694 244 669Q246 663 246 347T244 25Q235 0 192 0H163L112 1Q92 7 85 28V667"],74:[694,22,519,46,427,"236 -22Q190 -22 144 -11T72 12T46 29Q63 147 69 153Q80 164 92 146Q124 91 191 91Q222 91 242 102T267 134Q268 139 268 402Q268 663 270 669Q275 687 294 692Q298 694 347 694H367Q393 694 406 690T425 669Q427 663 427 399Q427 132 426 125Q421 87 404 58T366 15T318 -9T273 -20T236 -22"],75:[694,0,764,92,701,"92 667Q101 694 139 694H163H186Q225 694 234 671Q236 663 236 529L237 392L533 682Q550 694 590 694H623H681Q695 680 695 672Q695 670 693 664Q688 657 561 533L431 405L698 33Q701 28 701 23Q701 7 683 0H626H604Q571 0 564 2T545 13Q544 14 530 33T489 90T437 162L332 307Q331 307 284 260L236 214V122V65Q236 32 231 19T210 2Q205 0 161 0L119 1Q99 7 92 28V667"],76:[694,0,581,92,534,"92 667Q98 684 109 689T142 694H172H198Q244 694 251 669Q253 663 253 389V116L278 117Q410 119 490 119H495Q511 119 517 115T534 93V63V48Q534 9 508 2Q503 0 310 0L119 1Q99 7 92 28V667"],77:[695,0,978,92,886,"92 667Q98 684 109 689T146 695Q152 695 167 695T192 694Q200 694 214 694T234 695Q291 695 305 664Q313 651 400 419T487 165Q487 162 488 162T489 165Q489 187 574 413T671 664Q679 680 695 688Q708 694 785 694H828Q855 694 867 689T884 669Q886 663 886 347T884 25Q876 0 832 0H817H802Q758 0 750 25Q748 31 748 293V555L746 544Q737 509 692 386T606 160T564 52Q548 22 502 22H487H472Q423 22 410 52Q407 59 367 160T283 385T231 546L230 548Q229 548 229 293Q229 31 227 25Q222 9 211 5T176 0H158L119 1Q99 7 92 28V667"],78:[694,0,794,92,702,"92 667Q98 684 109 689T146 694H185Q273 694 279 692Q301 689 315 669Q322 660 419 453L554 163L562 143Q564 143 564 401Q564 663 566 669Q574 694 618 694H633H648Q692 694 700 669Q702 663 702 347T700 25Q696 10 683 5T642 0H596H551Q520 0 505 4T478 25Q471 34 374 241L239 532Q231 550 231 552L229 479Q229 440 229 293Q229 31 227 25Q222 9 211 5T176 0H158L119 1Q99 7 92 28V667"],79:[716,22,794,62,731,"362 715Q364 715 376 715T394 716H400Q542 716 626 643T727 426Q731 395 731 342Q731 271 722 225Q674 -22 396 -22Q320 -22 259 -3T148 68T77 201Q62 257 62 342Q62 447 86 522T173 649Q245 707 362 715ZM568 433Q551 623 396 623Q383 623 370 622T333 612T292 591T257 550T233 485Q223 442 223 350Q223 276 232 227T267 137Q309 74 397 74Q433 74 461 85T507 113T537 156T556 205T566 260T569 310T570 357Q570 409 568 433"],80:[694,0,703,92,641,"641 470Q641 426 630 391T603 334T561 295T513 271T459 259T408 254T361 253H350H337H253V142Q253 125 253 100T254 67Q254 32 249 19T227 2Q222 0 170 0L119 1Q99 7 92 28V667Q98 686 118 693Q121 694 271 694Q428 693 462 688Q641 656 641 470ZM487 467Q487 495 485 510T474 546T442 578T382 592Q375 593 310 593H250V347H309H339Q364 347 380 348T418 354T451 368T474 395T486 438Q487 444 487 467"],81:[716,106,794,62,732,"450 -20Q444 -20 429 -21T396 -22Q320 -22 259 -3T148 68T77 201Q62 257 62 342Q62 447 86 522T173 649Q245 707 362 715Q364 715 376 715T394 716Q732 716 732 340Q732 268 719 210T686 120T647 68T615 39T601 29T638 -22T676 -73Q679 -78 679 -83Q679 -98 661 -106H593Q526 -106 521 -104Q514 -103 507 -97T496 -84T477 -55L454 -19L450 -20ZM554 509Q516 622 391 622Q294 622 250 535Q220 475 220 345Q220 299 222 266T234 198T258 140T299 99T363 74Q378 71 393 71H395L381 92Q367 114 353 136T338 161Q336 165 336 170Q336 186 352 193L361 194Q370 194 384 194T412 194H452Q457 194 460 194T466 194T471 192T476 191T480 188T483 185T487 180T492 174T497 167T504 158L526 129Q532 127 552 175Q573 231 573 348Q573 455 554 509"],82:[695,0,703,92,654,"654 24Q654 9 644 5T612 0H577L521 1Q509 5 503 13Q498 20 421 160L343 304H250V168Q250 147 250 118T251 78Q251 24 242 12T192 0H168L119 1Q99 7 92 28V667Q98 686 118 693H124Q131 693 141 693T165 694T195 694T229 694T280 694T332 695Q389 695 428 691T510 675T582 637T627 569Q641 532 641 493Q641 377 537 331L497 317L493 316L571 177Q653 28 654 24ZM487 472T487 492T485 525T476 553T450 577T404 591Q398 592 322 593H250V391H321Q327 391 353 391T385 392T412 395T438 401T457 412T474 430T483 456"],83:[716,22,611,49,549,"61 503Q61 547 72 583T110 650T186 698T305 716Q405 716 496 671Q513 664 514 657Q514 656 513 648T509 623T503 589L491 525L488 521Q484 518 479 518H475L461 532Q430 565 395 581T305 598Q201 598 201 523Q201 480 240 462T345 431T443 394Q549 324 549 204Q549 160 538 123T502 51T427 -2T308 -22Q180 -22 69 41Q50 52 49 57Q49 58 50 66T54 91T60 125L72 189L75 193Q80 196 84 196Q87 196 104 182T145 149T212 117T304 102Q408 102 408 188Q408 215 396 234T362 263T319 278T267 290T219 302Q149 324 105 380T61 503"],84:[688,0,733,40,692,"67 687Q70 688 366 688Q661 688 666 686Q692 680 692 641V629V615Q692 579 666 570H660Q655 569 648 569Q645 569 624 569T581 570Q505 570 475 572H447V302Q447 31 445 25Q436 0 393 0H364L313 1Q293 7 286 28L285 300V572H257Q227 570 151 570Q130 570 109 570T84 569Q77 569 72 570H66Q48 577 44 588T40 631L41 661Q47 680 67 687"],85:[694,22,764,92,672,"92 667Q101 694 143 694H172H200Q242 694 251 671Q253 663 253 430Q254 189 255 185Q262 134 288 107T384 79Q498 79 516 168Q520 191 521 431Q521 663 523 671Q532 694 572 694H596H618Q639 694 648 692T665 679Q671 672 671 653Q672 632 672 555V432Q671 200 670 190Q652 79 581 29T383 -22Q137 -22 98 166Q92 195 92 303V667"],86:[694,-1,733,27,705,"27 667Q27 683 39 688T75 694H101Q155 694 159 692Q182 687 194 665Q202 652 283 419T374 142Q376 165 473 445Q552 664 553 666Q568 694 618 694H639H658Q681 694 693 689T705 667Q705 660 592 347Q481 32 477 28Q466 7 441 1H292Q266 7 255 28Q251 32 140 347Q27 660 27 667"],87:[694,0,1039,24,1014,"994 694Q1012 683 1014 668Q1014 661 977 519T896 217T845 26Q831 0 783 0H747H711Q685 0 672 5T649 26Q644 36 583 272T517 548Q516 552 516 551Q503 479 437 227Q389 37 383 26Q367 0 323 0H288H254Q207 0 193 26Q191 32 108 346T24 665Q24 685 44 693Q47 694 98 694H115Q152 694 168 668Q174 657 235 417T297 144Q297 134 300 153Q307 204 362 421T427 668Q441 694 488 694H523Q586 694 597 688Q612 683 620 661T651 549Q664 496 673 462Q744 194 750 146V140Q767 223 800 354T857 576T883 668Q897 694 938 694H958H994"],88:[695,0,733,37,694,"52 1Q37 11 37 23Q37 26 39 32Q39 34 158 202L275 369Q275 370 221 441T112 586T55 663Q53 669 53 672Q53 687 68 693H72Q77 693 84 693T99 694T118 694T139 694H176Q203 694 212 692T230 682Q231 681 239 669T265 634T296 591L358 504L418 591Q481 682 486 686Q491 691 499 692Q505 694 569 694H632Q650 685 650 672Q650 667 646 660Q643 654 592 582T491 440T441 369T566 201T693 29Q694 27 694 23Q694 11 677 0H607L537 1Q523 6 519 10T437 131Q422 153 411 170T390 200T375 222T365 237T359 245L357 247L348 232Q339 218 319 188T283 131Q222 37 211 22T186 1H52"],89:[694,0,733,24,708,"635 694H668Q688 694 698 690T708 670Q708 664 704 658L446 278L445 152V27Q442 20 440 17T433 9T419 1L368 0H339Q316 0 305 5T288 26Q286 31 286 154V278L157 468Q135 500 101 550Q43 635 34 650T24 671Q24 686 39 693Q42 694 105 694H122H132Q163 694 180 689T214 666Q225 654 336 485Q373 425 373 420L374 418Q375 419 375 421Q378 432 418 493T496 609T536 667Q543 676 551 681T572 689T591 693T615 694T635 694"],90:[694,0,672,61,616,"411 584Q243 581 131 581Q122 581 116 581T106 582T102 582Q84 589 80 600T76 640L77 667Q83 686 103 693Q106 694 343 694Q579 694 584 692Q592 691 599 684T609 668Q610 665 610 646Q610 614 608 608Q605 603 434 361L261 116Q340 117 402 118T490 119T533 120T560 120H572Q605 120 614 95Q616 89 616 60V46Q616 9 590 2Q585 0 339 0Q92 0 87 2Q79 3 72 10T62 26Q61 29 61 49Q61 84 63 90Q65 94 152 217T325 461T411 584"],91:[751,251,343,79,318,"318 -206Q318 -235 305 -243T255 -251Q248 -251 229 -251T198 -250H143Q112 -250 99 -246T81 -225Q79 -219 79 250T81 725Q85 741 98 745T143 750H198Q210 750 229 750T255 751Q291 751 304 743T318 707Q318 680 301 668Q293 663 255 663H224V-163H255Q293 -163 301 -168Q318 -180 318 -206"],93:[751,251,343,24,263,"24 706Q24 734 39 742T90 751Q97 751 114 751T143 750H198Q230 750 243 746T261 725Q263 719 263 250T261 -225Q257 -241 244 -245T198 -250H143Q131 -250 112 -250T86 -251Q50 -251 37 -243T24 -207Q24 -180 41 -168Q49 -163 87 -163H118V663H87H71Q24 663 24 706"],94:[694,-537,550,108,441,"108 550Q108 554 135 589T190 658T219 692Q221 694 275 694Q328 694 330 693Q331 692 381 629T438 557Q441 553 441 549T434 538L399 537Q363 537 362 538Q361 538 318 575L275 611Q274 611 231 575Q188 538 187 538Q186 537 150 537L115 538Q108 545 108 550"],95:[-23,110,550,0,549,"0 -66Q0 -32 26 -25Q30 -23 274 -23Q469 -23 497 -23T532 -28Q549 -40 549 -67Q549 -93 532 -105Q525 -109 498 -109T275 -110Q31 -110 26 -108Q0 -101 0 -66"],97:[475,11,525,31,473,"255 394Q218 394 186 383T138 358T109 333T94 321H91Q88 321 86 322T83 325T80 331T79 339T78 349T77 362T75 377Q72 410 72 420Q72 423 72 425T73 429T74 431T77 433T80 435T85 437Q166 475 262 475Q360 475 413 440Q462 406 471 341Q472 332 472 181Q472 155 472 119T473 73Q473 20 462 10T398 0H380Q349 0 337 8T324 48V65Q298 30 257 10T172 -11Q109 -11 70 37T31 145Q31 276 307 289H321V309Q321 337 318 352T300 381T255 394ZM176 146Q176 116 190 97T231 77Q251 77 266 85Q322 110 322 185Q322 189 322 192T322 198L321 201V234L308 232Q176 220 176 146"],98:[694,10,561,54,523,"54 667Q63 694 102 694H127H151Q190 694 199 671Q201 663 201 544L202 422L211 428Q270 468 355 468Q523 468 523 231Q523 -10 321 -10Q286 -10 261 -2T204 33Q197 11 187 6T142 0H126L81 1Q61 7 54 28V667ZM372 230Q372 317 355 349T280 382Q251 382 204 356V107Q235 76 274 76Q301 76 320 84T349 105T364 139T371 180T372 230"],99:[475,12,489,37,457,"188 233Q188 199 190 177T200 131T225 95T271 83H281Q356 83 421 130Q433 138 434 139Q446 141 448 131Q449 128 453 84T457 36Q455 30 432 20T364 -1T273 -11Q37 -11 37 232Q37 456 244 474Q246 474 257 474T276 475Q349 475 400 455Q443 436 448 431L451 425Q451 419 443 377Q442 372 441 366T439 356T438 348T436 340T435 334T433 330T431 327T429 325T426 324Q420 324 406 336Q376 362 350 372T281 382Q254 382 236 373T208 352T194 317T189 278T188 233"],100:[694,11,561,37,507,"225 -11Q192 -11 164 -3T104 29T55 102T37 227Q37 321 63 376Q111 469 223 469Q292 469 349 433L359 426V546Q359 564 359 589T358 623Q358 675 369 684T433 694H451Q497 694 505 669Q507 663 507 347T505 25Q500 9 487 5T450 0H432H413Q356 0 356 36V40Q298 -11 225 -11ZM356 359Q326 382 286 382Q239 382 215 358Q189 330 189 256V229V203V195Q189 102 231 86Q251 76 274 76Q318 76 356 114V359"],101:[475,10,511,30,481,"30 231Q30 301 51 351T107 426T181 463T262 474H268Q293 474 312 472T366 459T422 427T462 363T480 260Q480 230 466 222T405 213Q395 213 364 213T311 214H173V211Q173 183 183 148T216 96Q244 76 287 76Q319 76 350 85T399 104T433 125T451 136Q463 138 465 128Q466 125 469 84T473 39Q471 29 423 13T330 -9Q321 -10 286 -10Q213 -10 161 11T81 68T42 144T30 231ZM353 292Q350 324 342 344T320 373T294 384T264 387Q191 387 175 286V282H353V292"],102:[706,0,336,29,381,"67 458H78V502V509Q78 538 79 556T90 604T117 651T169 685T253 704Q254 704 258 704T265 705T275 705T287 704Q364 704 381 687V638V607Q381 591 378 585T366 579Q362 581 351 591T323 610T282 618Q238 618 226 587Q224 581 223 519V458H253Q288 458 298 453Q315 441 315 415Q315 399 312 390T299 377T282 372T259 371H255H226V201Q226 31 224 25Q215 0 174 0H150L106 1Q86 7 79 28L78 199V371H69Q29 371 29 412Q29 425 30 431T40 447T67 458"],103:[469,206,550,17,534,"63 108Q63 142 83 176L76 184Q35 227 35 300Q35 469 243 469Q330 469 385 437L397 443Q451 469 508 469Q515 468 517 466T522 456T528 425Q534 392 534 386Q532 379 523 377Q520 377 509 381T477 390T431 398L425 399Q453 362 453 297Q453 268 445 242T417 189T351 146T242 130Q169 130 119 153Q117 141 117 136Q117 95 155 83Q161 81 252 81Q354 80 362 79Q437 71 475 48T526 -24Q532 -42 532 -65Q532 -116 489 -156T341 -204Q323 -206 274 -206H256Q39 -206 18 -84Q17 -79 17 -68Q17 15 82 42L76 53Q63 79 63 108ZM310 300Q310 359 298 377T238 396Q217 396 204 390T186 368T179 339T178 300Q178 245 189 224T244 203T299 224T310 300ZM414 -66Q414 -55 411 -47T401 -32T387 -21T368 -14T346 -10T322 -7T297 -6T271 -6T246 -6H193Q163 -6 154 -10T140 -30Q135 -45 135 -62Q135 -134 274 -134Q414 -134 414 -66"],104:[694,0,561,53,508,"53 667Q62 694 101 694H126H148Q191 694 198 669Q200 663 200 526V390Q263 469 361 469Q390 469 412 465T456 449T491 413T507 351Q508 342 508 185Q508 31 506 25Q498 0 450 0H432H413Q368 0 359 23Q357 31 357 186Q356 345 355 350Q349 369 336 376Q324 381 301 381H298Q269 381 242 362Q217 342 210 316T202 239Q202 229 202 202T203 157V82Q203 24 195 12T146 0H125L80 1Q60 7 53 28V667"],105:[695,0,256,46,208,"72 574Q55 583 51 591T46 619V636L47 670L48 673Q50 676 52 678T56 684T63 690T73 694H81Q89 694 102 694T129 695H181Q193 687 196 685T203 676T207 661T208 634Q208 603 204 593T181 574H72ZM54 431Q63 458 102 458H127H149Q192 458 199 433Q201 427 201 229T199 25Q190 0 149 0H125L81 1Q61 7 54 28V431"],106:[695,205,286,-71,232,"70 634V648Q70 686 96 693Q100 695 151 695H176Q201 695 213 691T230 670Q232 665 232 634V620Q232 582 206 575Q202 573 151 573H126Q101 573 89 577T72 598Q70 603 70 634ZM-41 -84Q-1 -105 28 -105Q67 -105 78 -85Q83 -77 83 -48T84 180Q84 427 86 433Q93 458 136 458H158H180Q201 458 209 456T225 443Q230 436 231 418Q232 397 232 313V183V124V40Q232 -55 228 -87T203 -147Q166 -205 78 -205Q31 -205 -20 -189T-71 -159Q-71 -156 -62 -124T-52 -89Q-49 -84 -41 -84"],107:[694,0,531,63,496,"496 23Q496 9 487 5T457 0H427H398Q367 0 354 11Q352 12 288 99L226 183L191 150V90V54Q191 30 186 18T165 2Q160 0 124 0L90 1Q70 7 63 28V667Q72 694 108 694H128H146Q183 694 192 671Q194 663 194 496L195 325L254 383Q266 394 281 409T301 429T316 441T329 450T341 455T357 458T376 458H409H436Q461 458 470 454T480 437Q480 430 477 427T445 395Q417 368 396 347L319 271Q319 270 358 217T442 103T494 32Q496 30 496 23"],108:[694,0,256,54,201,"54 667Q63 694 102 694H127H149Q192 694 199 669Q201 663 201 347T199 25Q190 0 149 0H125L81 1Q61 7 54 28V667"],109:[469,0,867,53,815,"197 386Q256 468 366 468Q404 468 430 461T471 438T491 413T503 385Q563 469 666 469Q731 469 769 446T814 350Q815 343 815 185Q815 31 813 25Q808 9 796 5T758 0H737L692 1Q672 7 665 28L664 186V206V290Q664 349 655 365T610 381Q581 381 560 370T529 341T515 311T510 291Q509 286 509 157V82Q509 24 501 12T452 0H431L386 1Q366 7 359 28L358 186V206V290Q358 349 349 365T304 381Q275 381 254 370T223 341T209 311T204 291Q203 286 203 157V82Q203 24 195 12T146 0H125L80 1Q60 7 53 28V437Q58 453 80 464H122H142Q167 464 178 460T195 439Q197 434 197 409V386"],110:[468,0,561,53,508,"197 386Q264 468 350 468Q375 468 390 467T429 460T466 443T492 408T507 351Q508 342 508 185Q508 31 506 25Q498 0 450 0H432H413Q368 0 359 23Q357 31 357 186Q356 345 355 350Q349 369 336 376Q324 381 301 381H298Q269 381 242 362Q217 342 210 316T202 239Q202 229 202 202T203 157V82Q203 24 195 12T146 0H125L80 1Q60 7 53 28V437Q58 453 80 464H122H142Q167 464 178 460T195 439Q197 434 197 409V386"],111:[474,11,550,32,518,"274 -11Q32 -11 32 225Q32 346 85 406T249 474H266H271Q302 474 325 471T385 458T451 419T498 346Q518 300 518 225Q518 -11 274 -11ZM367 233Q367 322 350 354T270 387Q240 387 222 377T195 344T184 298T182 233Q182 151 198 117T275 83H282Q318 83 339 104Q355 119 361 146T367 233"],112:[469,194,561,54,523,"125 458H139Q174 458 185 452T202 420L211 426Q245 448 288 458T354 469Q356 469 361 469T369 468Q443 468 481 412Q523 355 523 223Q523 164 509 120T473 51T423 12T371 -7T323 -11Q260 -11 204 33V-65Q204 -80 204 -102T205 -131Q205 -162 200 -175T178 -192Q173 -194 126 -194L81 -193Q61 -187 54 -166V431Q58 447 81 458H125ZM372 230Q372 376 282 376Q247 376 204 352V107L208 103Q213 99 218 95T232 87T251 79T274 76Q323 76 349 116Q372 153 372 230"],113:[470,194,561,37,507,"226 -11Q37 -11 37 236Q37 294 51 338T86 407T135 445T186 464T233 469H235Q300 469 349 422L359 413V425Q359 452 376 464Q384 469 433 469H455Q498 469 505 444Q507 438 507 137Q507 -163 505 -169Q500 -185 487 -189T450 -194H432H413Q367 -194 358 -171Q356 -163 356 -63V40L348 33Q296 -11 231 -11H226ZM281 375Q188 375 188 228Q188 77 275 77Q322 77 359 120V328Q338 357 324 366T281 375"],114:[469,0,372,54,356,"54 437Q58 453 81 464H122H147Q186 464 194 439Q196 434 196 405V377L203 387Q245 456 324 468Q325 468 331 468T340 469Q347 469 356 462V360Q350 355 346 354T339 353T326 353T300 347Q260 337 234 311T202 252Q201 247 201 138Q201 122 201 98T202 66Q202 33 197 20T175 2Q170 0 125 0L81 1Q61 7 54 28V437"],115:[474,10,422,30,396,"37 328Q37 392 75 433T203 474Q254 474 265 473Q319 465 370 442Q378 439 380 432Q380 426 372 384Q364 336 359 333Q358 331 355 331Q348 331 337 341Q282 388 216 388H208Q190 388 180 387T161 377T151 351Q151 333 164 323T224 306L267 297Q314 285 355 246T396 144Q396 17 282 -5Q260 -10 218 -10Q170 -10 124 2T55 26T30 44Q30 48 39 99T49 153Q52 159 60 159Q66 159 70 153Q100 120 133 101T218 82Q231 82 238 83T258 87T277 101T283 126Q283 149 260 160T200 176T153 186Q109 201 73 236T37 328"],116:[589,10,404,20,373,"225 267Q225 202 226 169T232 115T244 88T265 82Q295 84 318 100T345 116Q352 116 354 110T364 77Q373 46 373 43Q373 28 312 9T190 -10Q160 -10 139 1T107 29T89 77T82 136T80 210V258V371H66H59Q39 371 27 386Q20 394 20 417Q21 432 23 437Q35 458 60 458H65H83V510L84 562Q93 589 131 589H154H174Q216 589 223 564Q225 558 225 508V458H274Q330 458 338 453Q355 441 355 415Q355 388 338 376Q330 371 274 371H225V267"],117:[459,11,561,52,508,"53 431Q62 459 100 459Q105 459 114 459T127 458H152Q192 458 201 435Q203 427 203 262Q204 86 208 77Q209 74 216 71Q227 66 258 66H264Q334 66 354 140L356 150L357 290Q357 427 359 435Q365 449 377 453T412 458H432H450Q498 458 506 433Q508 427 508 229T506 25Q498 0 451 0H434H418Q386 0 374 7T360 43V58L352 49Q298 -11 199 -11Q135 -9 101 11T56 80Q52 100 52 273L53 431"],118:[458,0,500,26,473,"26 429T26 435T32 448T44 456Q48 458 85 458H99Q145 458 161 431Q162 429 207 285L251 145L294 284Q333 410 341 430Q351 451 374 456Q379 458 420 458H430Q450 458 457 456T471 443Q473 437 473 435Q473 426 443 325T381 126L350 28Q339 7 316 2Q312 0 250 0Q187 0 183 2Q160 7 149 28L136 68Q124 109 106 166T70 283T39 385"],119:[458,0,744,24,719,"699 458Q717 447 719 432Q719 426 666 230T610 27Q602 10 588 5T548 0H512H482Q431 0 420 17T384 135Q356 241 352 298V308L351 295Q348 251 322 145T290 28Q279 0 233 0H212H191Q146 0 133 27Q130 33 77 229T24 430Q24 449 44 457Q47 458 79 458Q122 458 126 456Q154 450 163 419L233 153Q241 187 272 304T307 431Q318 458 368 458Q394 458 398 456Q421 451 430 431Q434 423 509 147L547 286Q582 416 588 429Q600 454 624 457Q632 458 647 458H663H699"],120:[460,1,500,24,475,"92 0Q87 0 77 0T62 -1Q24 -1 24 22Q24 29 33 41T106 136Q185 237 184 238Q184 239 147 284T73 376T33 427Q31 430 31 436Q31 451 45 457Q48 458 96 458H122Q152 458 163 450T208 394L247 345L282 394Q288 403 297 416T309 434T319 444T328 452T338 455T352 458T372 458H393H440Q457 449 457 435Q457 428 450 419T379 328Q308 239 308 237L389 137Q409 112 436 79Q475 31 475 23Q475 -1 436 -1Q432 -1 422 -1T407 0Q360 0 352 3Q343 6 336 16T291 83L247 151L245 148Q243 145 239 139T229 124T218 106T204 84Q167 24 160 15T141 1L92 0"],121:[458,205,500,29,473,"454 458Q473 446 473 430Q473 426 394 184L311 -68Q291 -119 245 -162T123 -205Q51 -205 46 -190Q44 -187 40 -142T36 -92Q36 -90 36 -88L37 -87Q41 -80 46 -80Q48 -80 73 -92T126 -105Q146 -105 161 -98T185 -76T197 -53T206 -28L215 0L122 212Q29 427 29 435Q29 448 46 457Q49 458 91 458Q93 458 106 458T125 457T140 454T157 446T170 431Q183 410 224 305T266 158Q266 152 266 151Q267 151 268 163Q271 206 302 310T342 432Q354 458 398 458H418H454"],122:[458,0,476,31,442,"268 376Q250 376 180 375T92 374Q69 374 63 380Q46 390 46 419Q46 428 49 437Q57 451 73 457Q76 458 242 458T413 456Q420 455 427 448Q439 438 439 413Q439 392 433 385Q432 383 318 236T204 88Q235 88 306 89T395 90H399Q408 90 414 89T427 84T438 70T442 45Q442 9 416 2Q411 0 236 0H136Q73 0 62 1T41 12Q31 23 31 47Q31 68 36 77Q37 78 51 97T96 155T153 228L268 376"],126:[344,-198,550,92,457,"92 215Q92 259 122 301T204 344Q238 344 264 329T310 300T343 285Q356 285 361 295T369 322T377 344H450Q457 334 457 330Q457 281 427 240T344 198Q312 198 285 213T239 242T206 257Q188 257 182 230T172 199L137 198H120Q102 198 97 200T92 215"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js deleted file mode 100644 index 24a6691..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-bold"],{768:[694,-537,0,-458,-218,"-458 682Q-458 690 -452 692T-426 694H-381H-314L-312 691Q-311 691 -305 682T-287 655T-263 622L-218 555V549Q-218 544 -224 538L-259 537Q-295 537 -296 538Q-298 539 -376 606T-456 676Q-458 680 -458 682"],769:[694,-537,0,-334,-93,"-290 537H-310Q-334 537 -334 549Q-334 553 -311 588T-264 656L-241 690Q-240 690 -239 691T-236 693Q-235 694 -167 694H-100Q-93 684 -93 681T-94 677Q-95 675 -173 607T-255 538Q-256 537 -290 537"],770:[694,-537,0,-442,-109,"-442 550Q-442 554 -415 589T-360 658T-331 692Q-329 694 -275 694Q-222 694 -220 693Q-219 692 -169 629T-112 557Q-109 552 -109 549Q-109 545 -116 538L-151 537Q-187 537 -188 538Q-189 538 -232 575L-275 611Q-276 611 -319 575Q-362 538 -363 538Q-364 537 -400 537L-435 538Q-442 545 -442 550"],771:[694,-548,0,-458,-93,"-458 565Q-458 609 -428 651T-346 694Q-312 694 -286 679T-240 650T-207 635Q-194 635 -189 645T-181 672T-173 694H-100Q-93 684 -93 680Q-93 631 -123 590T-206 548Q-238 548 -265 563T-311 592T-344 607Q-362 607 -368 580T-378 549L-413 548H-430Q-448 548 -453 550T-458 565"],772:[660,-560,0,-474,-77,"-84 660Q-81 656 -77 653V567L-81 564L-84 561L-274 560H-383Q-469 560 -471 565L-472 566Q-474 569 -474 611L-473 653Q-469 659 -466 659Q-465 660 -274 660H-84"],774:[694,-552,0,-470,-80,"-123 694Q-80 694 -80 657Q-80 626 -99 601T-161 563Q-199 552 -275 552Q-352 552 -389 563Q-470 586 -470 655Q-470 667 -468 673Q-457 694 -435 694H-431Q-408 694 -396 685Q-387 676 -387 671Q-384 661 -275 661Q-167 661 -164 671Q-164 674 -163 677T-151 687T-123 694"],775:[695,-596,0,-356,-194,"-329 596Q-346 602 -351 611T-356 638V646Q-356 653 -356 654T-356 661T-355 668T-353 673T-351 679T-347 684T-341 689T-332 693T-274 695H-221Q-202 683 -198 676T-194 645Q-194 632 -195 625T-202 610T-221 596H-329"],776:[696,-595,0,-459,-91,"-331 695Q-312 683 -308 676T-304 645Q-304 632 -304 626T-311 610T-331 596L-380 595H-408Q-448 595 -457 617Q-459 621 -459 645T-457 673Q-448 696 -409 696Q-405 696 -396 696T-380 695H-331ZM-247 644Q-247 658 -246 665T-239 680T-221 694Q-217 695 -169 695H-143Q-102 695 -93 672Q-91 664 -91 645V635Q-91 613 -106 602Q-113 597 -121 596T-171 595L-219 596Q-232 600 -238 608T-246 622T-247 644"],778:[694,-538,0,-365,-119,"-365 616Q-365 658 -331 676T-256 694Q-253 694 -247 694T-236 693Q-166 693 -139 666Q-119 644 -119 616T-139 565Q-166 538 -237 538H-242Q-365 538 -365 616ZM-181 616Q-181 641 -195 647T-242 654Q-258 654 -266 654T-284 650T-298 638T-303 616Q-303 592 -289 585T-242 577Q-209 577 -195 584T-181 616"],779:[694,-537,0,-440,-94,"-426 686Q-424 694 -394 694H-350H-283Q-277 686 -277 682Q-277 673 -317 608T-361 538L-396 537H-420Q-432 537 -436 539T-440 548Q-440 560 -434 616Q-432 633 -430 650T-427 677L-426 686ZM-243 686Q-241 694 -211 694H-167H-100Q-94 686 -94 682Q-94 673 -134 608T-178 538L-213 537H-237Q-249 537 -253 539T-257 548Q-257 560 -251 616Q-249 633 -247 650T-244 677L-243 686"],780:[657,-500,0,-442,-109,"-442 645Q-442 657 -418 657H-398Q-393 657 -388 657T-379 657T-371 656T-365 656H-363L-319 620L-276 583Q-275 583 -232 619Q-189 656 -188 656Q-187 657 -151 657H-116Q-109 649 -109 645Q-109 642 -112 637Q-118 629 -168 566T-220 501Q-222 500 -275 500Q-329 500 -331 501Q-442 634 -442 645"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/CombDiacritMarks.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js deleted file mode 100644 index e153a3d..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-bold"]={directory:"SansSerif/Bold",family:"MathJax_SansSerif",id:"MJSSB",weight:"bold",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js deleted file mode 100644 index f5bf38b..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-bold"],{305:[458,0,256,54,201,"54 431Q63 458 102 458H127H149Q192 458 199 433Q201 427 201 229T199 25Q190 0 149 0H125L81 1Q61 7 54 28V431"],567:[458,205,286,-71,232,"-38 -84Q-36 -84 -14 -95T33 -106H38Q70 -103 78 -86Q83 -78 83 -49T84 180Q84 427 86 433Q93 458 136 458H158H180Q201 458 209 456T225 443Q230 436 231 418Q232 397 232 313V183V124V40Q232 -55 228 -87T203 -147Q166 -205 78 -205Q31 -205 -20 -189T-71 -159Q-71 -156 -59 -123Q-50 -96 -47 -91T-38 -84"],915:[691,0,581,92,534,"92 664Q98 683 118 690Q121 691 312 691T508 689Q534 682 534 644V632V618Q534 582 508 573L502 572Q496 572 489 572Q486 572 463 572T416 573Q333 573 291 575H253V303Q253 31 251 25Q242 0 199 0H170L119 1Q99 7 92 28V664"],916:[694,0,917,60,856,"381 692Q386 694 458 694Q516 694 527 693T549 687Q564 680 575 663Q576 658 715 349T856 27Q856 6 838 1H826Q815 1 795 1T747 1T686 1T616 0T539 0T458 0T378 0T300 0T230 0T169 1T122 1T90 1H78Q60 6 60 27Q62 38 201 349T341 663Q356 687 381 692ZM627 148Q626 149 581 250T492 453L447 554Q447 553 446 552Q444 546 326 278L268 148Q268 147 448 147Q627 147 627 148"],920:[716,22,856,62,793,"62 340Q62 716 425 716Q511 716 576 696T681 642T747 559T783 458T793 341Q793 264 777 203T721 89T608 7T428 -22Q62 -22 62 340ZM638 333Q638 365 637 387T632 441T621 495T600 542T567 583T518 611T451 628Q443 629 427 629Q402 629 378 624T327 608T276 571T240 511Q217 453 217 345Q217 254 231 204T279 120Q333 69 428 69Q522 69 576 120Q638 183 638 333ZM279 349V373Q279 413 305 420Q309 422 427 422H487Q550 422 563 414T576 369V349Q576 345 576 337T577 324Q577 284 550 277Q545 275 428 275H369Q306 275 293 283T279 329V349"],923:[694,0,672,41,630,"106 0H83Q41 0 41 28Q41 39 133 349T229 667Q242 694 296 694H335H375Q403 694 418 689T442 667Q445 660 537 350T630 28Q630 11 619 6T584 0H555H526Q478 0 465 27Q462 32 431 136T366 372T325 555V546Q320 503 287 376T222 141T186 27Q184 22 177 15T165 6Q154 0 106 0"],926:[688,0,733,46,686,"627 553Q609 553 512 554T366 555Q316 555 220 554T105 553Q96 553 90 553T82 554T78 554Q61 560 57 571T52 605V623L53 661Q59 680 79 687Q82 688 366 688Q649 688 654 686Q680 679 680 639V621V603Q680 563 654 554Q653 554 651 554T642 554T627 553ZM149 423Q152 424 366 424Q579 424 584 422Q610 415 610 376V358V340Q610 300 584 293Q579 291 366 291H232Q162 291 150 293T129 306Q122 315 122 360L123 397Q129 416 149 423ZM108 135Q143 135 226 134T363 133Q407 133 507 134T632 135H645Q675 135 684 110Q686 104 686 68V49Q686 9 660 2Q655 0 364 0L74 1Q57 7 49 21L47 28L46 65V83Q46 126 72 133Q80 135 108 135"],928:[691,0,794,92,702,"92 664Q98 683 118 690Q121 691 396 691T676 689Q695 684 700 666Q702 660 702 345Q702 31 700 25Q696 9 684 5T646 0H621H596Q571 0 559 4T542 25Q540 31 540 307V582H253V307Q253 31 251 25Q242 0 199 0H170L119 1Q99 7 92 28V664"],931:[694,0,794,61,732,"322 124Q326 124 457 125T672 127H689Q721 127 730 102Q732 96 732 64V48Q732 9 706 2Q701 0 394 0L89 1Q76 5 69 13T62 29V36Q62 37 62 38Q62 47 70 58T126 126Q161 167 185 196Q302 335 302 336L187 463Q74 584 68 594Q61 603 61 639L62 667Q68 686 88 693Q91 694 396 694T706 692Q732 686 732 647V635V621Q732 585 706 576Q705 576 702 576T691 576T670 575L302 578Q302 577 394 475T490 371Q498 362 498 347Q498 336 488 323T408 226L322 124"],933:[715,0,856,62,793,"62 560Q62 607 94 644T169 698T253 715Q273 715 286 713T322 704T363 677T398 625Q413 597 423 556L428 540Q429 541 436 566T454 620T494 677T561 713Q570 715 593 715Q682 715 737 668T793 560Q793 549 793 545T786 533T767 520H670Q646 532 644 551T632 579Q618 594 591 594Q539 594 524 530T509 321V216Q509 31 507 25Q498 0 455 0H426L375 1Q355 7 348 28L347 232Q346 344 346 441Q346 442 343 468T335 521T312 571T266 594Q252 594 247 593Q228 586 220 576T212 557T209 539T191 523L185 520H88Q75 527 69 534T63 545T62 560"],934:[694,0,794,62,732,"62 292T62 347T80 445T124 511T183 552T243 574T292 584L315 587H319V627L320 667Q329 694 370 694H397H422Q466 694 473 669Q475 663 475 625V587H478Q479 587 500 584T548 575T608 553T668 513T713 446T732 347Q732 253 674 187Q655 167 628 152T576 128T530 116T493 109L478 107H475V69V50Q475 9 449 2Q444 0 395 0L347 1Q327 7 320 28L319 67V107H315L292 110Q269 114 243 119T184 142T124 182T80 249ZM319 197T319 347T318 497Q316 497 307 494T284 485T262 471Q220 438 220 347Q220 285 239 249Q248 234 261 223T286 208T308 200L317 197Q319 197 319 347ZM572 347V357Q572 387 569 407T548 452T496 491Q495 491 494 491T487 493T475 497V197Q518 210 541 232T571 303Q572 312 572 347"],936:[694,0,856,61,794,"61 585Q62 594 62 597T64 606T73 616T89 626H138Q196 626 208 620Q243 602 253 546T261 431T271 309T325 219Q342 205 349 205Q350 205 350 436L351 667Q360 694 401 694H428H454Q495 694 504 671Q506 663 506 436L507 205Q542 222 561 251T586 318T593 392T595 472T602 546Q614 614 661 625Q665 626 708 626H730Q766 626 780 618T794 582Q794 548 768 540Q755 538 754 501T750 410T736 298T680 191T560 120Q550 116 512 109H506V70V50Q506 9 480 2Q475 0 426 0L378 1Q358 7 351 28L350 68V109L335 111Q298 117 267 129T214 156T175 191T146 229T127 272T115 314T109 357T106 395T105 429Q104 537 87 540Q66 548 63 565Q61 570 61 585"],937:[716,1,794,49,744,"241 122Q225 154 191 199T131 278T83 363T61 464Q61 497 68 527T94 591T145 650T228 693T349 715Q354 715 370 715T396 716Q539 716 622 668Q658 647 682 617T715 556T728 505T732 465Q732 415 711 365T663 280T602 200T552 122H632Q649 122 669 122T693 123H697Q736 123 742 98Q744 92 744 62V47Q744 9 718 2Q713 0 591 0L471 1Q454 7 446 21Q444 27 444 45Q444 96 463 154T506 257T549 360T569 469Q569 504 563 530T538 580T485 616T396 629Q313 629 268 594T223 468Q223 419 243 361T286 258T330 152T350 41Q350 14 335 7T276 -1Q267 -1 241 -1T197 0L77 1Q57 7 50 28L49 59V74Q49 114 75 121Q81 123 100 123Q104 123 124 123T161 122H241"],8211:[327,-240,550,0,549,"0 284Q0 318 26 325Q30 327 274 327Q469 327 497 327T532 322Q549 310 549 283Q549 257 532 245Q525 241 498 241T275 240Q31 240 26 242Q0 249 0 284"],8212:[327,-240,1100,0,1099,"0 284Q0 318 26 325Q30 327 549 327T1073 325Q1099 318 1099 284Q1099 249 1073 242Q1068 240 549 240Q31 240 26 242Q0 249 0 284"],8216:[694,-443,306,81,226,"87 443L81 449V581L119 636Q125 644 131 653T141 667T148 677T154 685T158 689T163 692T167 693T173 694H190H201Q226 694 226 683Q226 678 208 635T189 590Q189 588 204 588H219Q222 584 226 581V449L219 443H87"],8217:[694,-442,306,80,226,"81 687Q85 693 88 693Q89 694 154 694H219Q222 690 226 687V556L187 501Q182 494 177 486T169 474T163 465T157 457T153 451T149 447T145 445T141 443T137 443T132 442H116H105Q80 442 80 453Q80 458 98 501T117 546Q117 548 102 548L87 549L81 555V687"],8220:[694,-443,558,138,520,"144 443L138 449V581L176 636Q182 644 188 653T198 667T205 677T211 685T215 689T220 692T224 693T230 694H247H258Q283 694 283 683Q283 678 265 635T246 590Q246 588 261 588H276Q279 584 283 581V449L276 443H144ZM381 443L375 449V581L413 636Q419 644 425 653T435 667T442 677T448 685T452 689T457 692T461 693T467 694H484H495Q520 694 520 683Q520 678 502 635T483 590Q483 588 498 588H513Q516 584 520 581V449L513 443H381"],8221:[694,-442,558,37,420,"38 687Q42 693 45 693Q46 694 111 694H176Q179 690 183 687V556L144 501Q139 494 134 486T126 474T120 465T114 457T110 451T106 447T102 445T98 443T94 443T89 442H73H62Q37 442 37 453Q37 458 55 501T74 546Q74 548 59 548L44 549L38 555V687ZM275 687Q279 693 282 693Q283 694 348 694H413Q416 690 420 687V556L381 501Q376 494 371 486T363 474T357 465T351 457T347 451T343 447T339 445T335 443T331 443T326 442H310H299Q274 442 274 453Q274 458 292 501T311 546Q311 548 296 548L281 549L275 555V687"],8710:[694,1,917,60,856,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/Other.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js deleted file mode 100644 index 05bafc9..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-italic"],{32:[0,0,250,0,0,""],33:[694,0,319,110,355,"160 187L257 694H306Q355 694 355 693L238 186H199Q160 186 160 187ZM110 2Q111 3 120 49T131 96Q131 98 180 98T229 96L219 50Q209 3 208 2V0H110V2"],34:[694,-471,500,133,472,"171 647L180 694H229Q278 694 278 693L276 686Q275 680 273 668T268 644L258 597L182 471H157Q133 471 133 472L189 595Q189 596 174 596H160V598Q160 601 171 647ZM365 647L374 694H423Q472 694 472 693L470 686Q469 680 467 668T462 644L452 597L376 471H351Q327 471 327 472L383 595Q383 596 368 596H354V598Q354 601 365 647"],35:[694,194,833,87,851,"793 170Q809 162 809 149Q809 145 807 141T802 135T796 132L793 130H547L472 -27Q397 -184 394 -187Q389 -194 379 -194Q367 -194 362 -183Q359 -179 359 -173Q360 -168 431 -20L503 129Q503 130 410 130H317L242 -27Q167 -184 164 -187Q159 -194 149 -194Q137 -194 132 -183Q129 -179 129 -173Q130 -168 201 -19L273 130H187L100 131Q87 141 87 150Q87 162 102 170H294L331 248Q339 265 349 286T365 318L370 328Q370 330 258 330Q145 330 142 332Q129 338 129 351Q129 362 140 368Q146 370 267 370L391 371L467 527Q542 684 544 686Q544 688 549 691T560 694H562Q565 693 567 692T571 690T575 686T578 681T579 672Q577 665 507 520T436 373L435 370H528L621 371L692 518Q767 675 769 677Q775 694 789 694Q798 694 804 688T809 672Q806 664 737 519L665 371L751 370Q835 370 841 368Q851 362 851 350Q851 337 841 334T799 330H765H741H645L606 250L568 170H793ZM600 328Q600 330 508 330H415Q412 326 338 171Q338 170 431 170H524L561 248Q569 265 579 286T595 318L600 328"],36:[750,56,500,56,565,"228 70Q233 92 246 155T270 266T280 316Q271 318 265 320T237 333T200 360T172 403T159 468Q159 537 205 600T325 691Q352 701 360 701Q361 701 361 701T362 703T364 711T368 727L372 750H409Q445 750 445 749L436 705Q436 703 450 702T494 691T554 657L565 649Q562 642 548 604L534 568Q511 591 484 605T440 621L424 623L419 624L372 405Q399 400 424 384Q490 338 490 247V240Q490 156 430 85Q374 13 294 -5L284 -7L280 -30Q279 -35 278 -41T275 -52L274 -55Q274 -56 237 -56Q201 -56 201 -54Q202 -53 205 -34T211 -11Q211 -9 206 -9Q154 -2 115 19Q80 35 56 59L88 141L99 131Q109 121 119 113T141 99T160 89T180 82T197 77T214 73T228 70ZM303 426Q304 427 313 471T332 564T345 620L335 616Q287 596 263 549Q252 525 252 499Q252 470 267 451T298 426Q303 424 303 426ZM302 75Q305 75 315 80T340 98T367 125T390 164T399 214Q399 247 384 268T349 297Q338 247 326 186L302 75"],37:[750,56,833,165,815,"268 347Q224 347 195 386T165 488Q165 517 173 552Q191 637 246 693T349 749Q389 749 414 725T448 673T456 614Q456 506 396 427T268 347ZM372 604Q372 674 339 674Q311 674 290 633T261 549T253 482V474Q253 438 272 426Q277 424 286 424Q319 424 345 485T372 604ZM189 -56Q179 -56 173 -49T167 -37Q167 -30 347 198Q425 296 475 360Q780 745 785 747Q790 750 796 750Q814 748 814 730Q814 725 811 719L204 -49Q198 -56 189 -56ZM523 87Q523 184 583 265T713 347Q758 347 786 308T815 207Q815 110 757 28T629 -55Q576 -55 550 -12T523 87ZM729 200Q729 271 696 271Q675 271 658 247T631 189T616 125T611 76Q611 21 644 21H647Q672 21 700 77T729 200"],38:[716,22,758,71,747,"219 -22Q158 -22 117 13T71 111Q71 131 74 150T84 185T98 215T118 241T137 262T159 281T179 295T199 308L214 318L258 348L256 362Q254 373 254 413V435Q254 483 271 537T325 641T411 708Q427 715 441 715Q446 716 455 716Q504 716 534 681T565 590Q565 522 519 468T377 347L358 334Q359 333 363 320T374 290T387 262Q404 227 428 187T460 139Q521 183 574 251T651 362T674 409L710 398Q746 388 747 388Q747 381 720 333T635 213T517 94L510 87Q542 57 598 57Q649 57 708 72Q716 75 718 75L709 34L701 -7Q636 -22 578 -22Q531 -22 498 -8T428 34L408 25Q314 -22 219 -22ZM480 579Q480 640 436 640Q410 640 385 615T351 554Q340 513 340 457Q340 413 343 410Q343 406 360 419Q431 471 455 505T480 579ZM245 57Q279 59 311 67T359 81T375 89T358 113T318 178T281 260L274 277L245 257Q167 205 167 135Q167 110 174 93T194 69T217 60T237 57H245"],39:[694,-471,278,190,335,"228 647L237 694H286Q335 694 335 693L334 686Q332 680 330 668T325 644L315 597L239 471H214Q190 471 190 472L246 595Q246 596 231 596H217V598Q217 601 228 647"],40:[750,250,389,104,491,"195 37Q195 -7 200 -47T213 -113T231 -166T250 -204T268 -232T280 -250H204L194 -238Q104 -124 104 55Q104 238 181 432T405 740L417 750H454Q491 750 491 749L468 729Q446 709 411 667T337 565T262 405T208 188Q195 110 195 37"],41:[750,250,389,2,390,"300 463Q300 634 222 740L214 750H290L299 740Q300 738 309 726T323 707T337 682T353 651T367 613T379 566T387 510T390 444Q390 314 344 156T203 -125Q179 -155 145 -191Q111 -224 89 -241L78 -250H2Q4 -248 27 -227T65 -189T107 -140T155 -71T200 16T244 129T278 266Q300 372 300 463"],42:[750,-306,500,156,568,"193 608Q193 628 210 644T246 660Q250 660 252 660T257 658T264 654T272 648T284 638T302 623Q340 590 340 593Q341 594 345 623T354 682T360 715Q365 729 378 739T407 750Q424 750 433 740T443 720Q443 712 427 652L410 591L462 623Q505 650 514 655T534 660Q549 660 558 650T568 625Q568 617 567 611T560 599T551 590T536 580T519 571T496 561T470 548L429 528L474 500Q482 495 492 489T506 481T516 475T523 469T527 464T529 458T530 450Q530 430 514 414T479 397H475Q468 397 460 402T423 433Q414 440 404 448T388 461L383 465L365 344Q348 306 314 306Q302 306 292 313T281 338Q281 347 297 404L313 464L260 433Q201 397 195 397H189Q173 397 165 407T156 432Q156 438 157 443T161 452T166 460T175 468T185 475T198 482T212 489T230 497T250 506L295 528L250 556Q203 582 202 585Q193 591 193 608"],43:[583,83,778,108,775,"108 244T108 250T112 261T119 268T124 270H426V272Q428 274 457 419Q489 565 492 573Q497 583 508 583Q516 583 522 577T528 565Q528 553 498 417Q491 384 483 346T471 288L467 270H760Q775 262 775 250T760 230H458Q456 221 426 77T394 -71Q389 -83 375 -83Q367 -83 362 -78T356 -64Q356 -58 387 84Q394 118 401 155T413 210L417 229Q417 230 271 230H124Q123 230 120 232T112 239"],44:[98,125,278,63,209,"90 2Q91 3 100 49T111 96Q111 98 160 98T209 96L199 50Q189 3 188 2Q188 0 149 -63L112 -125H63L120 0H105Q90 0 90 2"],45:[259,-186,333,51,332,"66 257V259H332V257L324 220L317 186H184Q51 186 51 187T58 220T66 257"],46:[98,0,278,90,209,"90 2Q91 3 100 49T111 96Q111 98 160 98T209 96L199 50Q189 3 188 2V0H90V2"],47:[750,250,500,6,600,"564 744L568 747Q573 750 579 750Q588 750 594 744T599 729Q597 721 321 241T41 -243Q37 -250 27 -250Q6 -250 6 -230Q6 -228 8 -222Q9 -219 285 261T564 744"],48:[678,22,500,87,549,"245 -22Q209 -22 181 -11T135 20T107 65T92 116T88 171Q88 235 114 354T194 557Q226 606 269 635T340 671T392 678H395Q422 678 446 670T495 643T534 582T549 481Q549 430 534 350T499 213Q459 89 379 25Q315 -22 247 -22H245ZM430 582Q408 601 378 601Q313 601 269 534Q234 475 205 341Q181 232 181 174Q181 104 209 76Q231 54 260 54T318 73T368 125Q410 194 447 375Q460 445 460 487Q460 555 430 582"],49:[678,0,500,88,451,"234 613Q277 613 331 628T428 678H439Q451 678 451 676Q450 671 387 373T323 74T384 73H445L430 0H259L88 1L104 73H229L332 560Q278 541 198 539Q198 540 198 541T199 546T200 554T202 564T205 576L213 612H219Q221 612 226 612T234 613"],50:[678,0,500,50,551,"190 460Q189 460 181 475T164 507T155 527Q155 535 182 571Q259 678 380 678Q462 678 506 630T551 513V507Q551 418 487 349Q469 329 441 305T391 265T344 232T316 212Q158 87 158 86T188 85Q194 85 234 85T311 86Q467 86 467 85Q451 9 449 2V0H50Q54 18 58 40L67 79L133 133Q246 226 269 243Q369 318 410 373T452 492Q452 535 433 560T393 592T350 599Q311 599 279 578T231 532T203 484T190 460"],51:[678,23,500,56,544,"446 542Q446 576 424 590T372 605Q330 605 288 583T216 524Q209 515 208 516Q207 517 192 549L178 580L187 589Q224 627 276 652T386 678Q456 678 500 642T544 550Q544 515 530 482T495 427T453 387T418 362L403 353L413 348Q440 335 462 313Q500 271 500 217Q500 135 423 57T236 -22T63 59L56 68L85 141Q106 112 125 98Q177 54 254 54Q315 54 355 105T396 218Q396 242 393 254Q380 301 335 313Q327 315 280 316Q233 316 233 318L249 392Q298 392 322 399Q373 408 409 453T446 542"],52:[656,0,500,62,521,"78 235L411 656H465Q519 656 519 655T475 447T430 237V235H521V233L505 160Q505 159 459 159H414L380 0H286L320 159H62L63 164Q64 169 66 179T70 198L78 235ZM342 235L421 607Q420 607 419 604Q409 535 197 267Q173 236 173 235H342"],53:[656,22,500,49,555,"330 350Q263 350 214 272H133V275Q134 276 174 467L214 655Q214 656 385 656H555V653Q555 652 554 647T550 631T546 613L539 577H284L265 486Q261 464 256 441T248 406L246 395L250 398Q255 401 264 406T286 415T315 423T350 427Q412 427 455 381T498 256Q498 150 415 64T222 -22Q186 -22 155 -12T105 12T74 41T55 65T50 77L51 79Q61 89 78 112L104 145L107 138Q110 130 114 123T125 106T142 88T165 72T196 60T236 55Q282 55 316 79T366 140T389 208T396 267Q396 310 378 330T337 350H330"],54:[678,22,500,94,548,"437 605Q397 605 361 585T301 536T261 477T236 426T228 401L236 408Q244 414 260 424T296 445T345 462T402 469H404Q422 469 434 467T465 446T498 394Q515 351 515 307Q515 254 497 193T439 85Q352 -22 246 -22Q220 -22 196 -14T148 15T109 78T94 179Q94 272 123 373Q163 505 257 591T450 678Q474 678 498 674T535 664T548 656L540 621L532 586L520 590Q509 594 485 599T437 605ZM339 392Q281 392 233 334T185 163V158Q185 87 230 61Q244 54 262 54Q325 54 371 122Q395 158 407 217T419 298Q419 337 401 364T339 392"],55:[656,11,500,143,596,"173 614L181 656H389Q596 656 596 655L595 650Q594 645 592 635T588 616L580 578L554 551Q313 307 245 4L242 -11H192Q143 -11 143 -10Q144 0 148 17T169 89T212 198T285 327T393 470Q423 504 472 550Q479 555 485 561T496 571L329 570Q163 570 163 571L164 577Q166 583 168 593T173 614"],56:[678,22,500,77,554,"159 470Q159 547 229 612T394 678Q467 678 510 636T554 533Q554 512 549 493T535 458T515 429T492 405T467 386T443 372T423 362T409 356L404 354Q404 353 405 353Q411 353 432 341T476 295T500 218Q500 134 424 56T246 -22Q175 -22 126 22T77 143Q77 204 110 251T188 327L202 334Q216 340 229 346T243 353T235 358T214 372T189 393T168 426T159 470ZM467 527Q467 605 375 605Q317 605 281 566T244 472Q244 429 271 411T334 392Q392 392 429 430T467 527ZM405 228Q405 262 384 289T315 316Q257 316 216 266T174 144Q174 95 199 75T262 54Q329 54 367 109T405 228"],57:[677,22,500,77,545,"220 594Q303 677 389 677Q545 677 545 479Q545 413 526 327Q493 175 398 77T202 -22Q124 -22 77 25L130 91L137 83Q169 54 218 54Q255 54 290 76T347 129Q364 151 380 182T403 232T411 256Q410 255 390 241T353 217T303 197T236 187Q195 187 173 209Q155 226 140 263T124 352Q124 392 135 435Q154 527 220 594ZM455 497Q455 605 383 605Q340 605 305 577T246 492Q220 411 220 360Q220 278 279 264Q280 264 287 264T299 263Q347 263 387 302Q455 375 455 497"],58:[444,0,278,90,282,"174 396L184 444H233Q282 444 282 443Q277 421 272 394L262 346H213Q164 346 164 347Q169 369 174 396ZM90 2Q91 3 100 49T111 96Q111 98 160 98T209 96L199 50Q189 3 188 2V0H90V2"],59:[444,125,278,63,282,"174 396L184 444H233Q282 444 282 443Q277 421 272 394L262 346H213Q164 346 164 347Q169 369 174 396ZM90 2Q91 3 100 49T111 96Q111 98 160 98T209 96L199 50Q189 3 188 2Q188 0 149 -63L112 -125H63L120 0H105Q90 0 90 2"],61:[370,-130,778,88,796,"142 368Q145 370 463 370Q780 370 784 368Q796 364 796 350T784 332Q780 330 463 330Q145 330 142 332Q129 338 129 351Q129 362 142 368ZM88 137T88 150T102 170H738Q739 170 742 168T750 161T754 150T750 139T743 132T738 130H102Q88 137 88 150"],63:[704,0,472,173,536,"194 652Q194 654 218 666T284 691T362 704Q444 704 490 678T536 583Q536 541 516 500T459 433Q415 400 387 371T343 313T321 266T307 216L301 186H262Q223 186 223 187Q224 199 228 218T250 288T294 377Q317 413 344 440T391 481T414 499Q442 527 442 574Q442 584 441 590T433 607T409 623T362 629Q335 629 310 624T267 610T235 595T214 582T205 576L200 614Q194 651 194 652ZM173 2Q174 3 183 49T194 96Q194 98 243 98T292 96L282 50Q272 3 271 2V0H173V2"],64:[705,10,667,120,707,"120 267Q120 377 179 478T336 642T538 705Q610 705 658 662T707 513Q707 425 681 331Q658 241 590 179T447 117Q386 117 343 163T300 288Q300 397 374 486T544 576Q575 576 608 562Q590 628 517 628Q406 628 309 522T212 278Q212 179 267 122T404 65T550 91H631Q513 -10 390 -10Q265 -10 193 70T120 267ZM600 397Q600 441 581 471T530 501Q476 501 433 436T390 298Q390 254 409 224T462 193Q512 193 556 257T600 397"],65:[694,0,667,28,638,"28 0L429 694H533L585 350Q596 275 610 182T632 46L638 3V0H530L528 18Q527 25 515 103T503 183H223L135 29L118 1L73 0H28ZM492 254Q492 256 473 398T454 589V610Q433 552 290 301L264 255L378 254H492"],66:[694,0,667,90,696,"501 363Q557 355 605 316T653 222Q653 148 586 85T403 2Q394 1 240 0Q90 0 90 1L100 46Q109 90 128 177T164 348L238 694H375Q518 693 546 688Q614 674 655 635T696 544Q696 490 648 441T516 368L501 363ZM601 530Q601 568 566 590T479 621Q472 622 394 623H320L297 513Q292 489 286 459T276 415L273 401V399H339H372Q504 399 571 466Q601 498 601 530ZM257 322Q256 320 230 197T203 73Q203 71 289 71Q379 72 387 73Q459 84 507 122T556 210Q556 255 519 283T428 320Q415 322 336 323Q257 323 257 322"],67:[705,10,639,124,719,"124 266Q124 372 179 473T333 639T544 705Q592 705 635 697T698 679L718 670Q719 669 701 621T681 572L676 576Q670 580 661 586T641 598T614 611T583 620Q558 625 526 625Q406 625 318 516T230 276Q230 238 236 212Q251 148 294 108T412 68Q469 68 508 80T598 123Q608 129 608 128Q606 109 603 87L598 45L573 33Q521 7 486 -1T394 -10Q358 -10 346 -8Q260 5 202 62Q124 145 124 266"],68:[694,0,722,88,747,"162 348L236 694H385Q535 693 543 692Q600 682 641 654T705 586T737 506T747 425Q747 296 672 187Q625 114 548 62T384 1Q376 0 262 0Q88 0 88 1L98 46Q107 90 126 177T162 348ZM622 533Q575 624 443 624Q434 624 419 624T399 623H321L263 348Q249 283 234 213T212 107L204 72Q204 71 289 71Q374 72 386 74Q501 94 573 193T646 422Q646 487 622 533"],69:[691,0,597,86,688,"86 2Q88 4 160 346T233 689Q233 691 461 691Q688 691 688 689Q685 686 671 611H495L320 612L319 609Q319 607 297 501L274 397H436Q597 397 597 396L596 391Q595 386 593 376T589 358L581 322L420 321Q258 321 258 320Q209 89 208 87Q208 85 390 85Q417 85 460 85T518 86L572 85Q556 8 554 2V0H86V2"],70:[691,0,569,86,673,"86 2Q88 4 160 346T233 689Q233 691 453 691T673 689Q670 686 656 611H488L320 612Q314 579 302 523T281 427T272 385Q272 384 419 384H567L551 308H255L223 156Q216 124 207 82T194 20L190 2Q190 0 138 0H86V2"],71:[705,11,667,125,730,"125 267Q125 375 182 476T337 641T544 705Q598 705 644 693T710 669T730 655L712 609L693 560L692 557L681 567Q618 626 526 626Q447 626 378 573T269 440T229 277Q229 185 276 127T406 68Q422 68 451 71T502 78T524 84L526 93Q528 102 532 119T539 153L553 222Q553 223 495 223Q436 223 436 224Q436 230 444 262L452 299H662V296Q661 290 635 166T607 40Q606 37 576 25T492 1T391 -11Q272 -11 199 66T125 267"],72:[694,0,708,86,768,"517 2Q518 3 551 161T585 322Q586 323 557 323T422 323H259L190 0H138Q86 0 86 1L96 46Q105 90 124 177T160 348L234 694H337V691Q336 690 306 545T275 399H602L603 403Q603 407 634 551L665 694H768V691Q768 690 695 348T621 2V0H517V2"],73:[694,0,278,87,338,"161 348L235 694H338V691Q338 690 265 348T191 2V0H139Q87 0 87 1L96 46Q106 90 125 177T161 348"],74:[694,22,472,46,535,"377 424L435 694H535V691Q534 685 476 412T416 135Q401 74 350 26T210 -22Q165 -22 124 -11T65 9T46 21L54 41Q62 61 70 83T81 109Q82 111 85 106Q86 105 87 103Q93 94 103 84T135 64T185 53Q238 53 272 76T317 142Q317 145 325 182T348 289T377 424"],75:[694,0,694,88,784,"236 223Q235 222 213 113T188 2V0H138Q88 0 88 1L98 46Q107 90 126 177T162 348L236 694H285Q335 694 335 693L330 671Q326 649 316 603T298 518Q289 477 280 433T266 366L261 343L672 694H729L784 693L465 420L651 0H596L541 1L384 350Q383 351 310 288T236 223"],76:[694,0,542,87,516,"161 348L235 694H338V691Q338 690 273 385T208 79Q278 80 362 80H516Q502 11 499 2V0H293Q87 0 87 1L96 46Q106 90 125 177T161 348"],77:[694,0,875,92,929,"375 691Q456 215 459 124V106Q488 177 762 641L793 694H929V691Q929 690 856 348T782 2V0H689V2Q691 4 753 304Q817 604 818 606Q819 611 817 608Q817 607 815 603Q798 559 540 117L484 22H440L397 23L393 42Q393 47 373 169T334 422T315 594V609L250 306Q186 3 185 2Q185 0 138 0Q92 0 92 1L102 46Q111 90 130 177T166 348L240 694H375V691"],78:[694,0,708,88,766,"311 609Q310 608 246 306T181 2V0H134Q88 0 88 1L98 46Q107 90 126 177T162 348L236 694H382L383 691Q383 688 418 561T493 286T541 97L544 84L545 89Q545 90 553 128T578 246T610 394L674 694H766V691Q766 690 693 348T619 2V0H472L469 13Q468 17 393 293T312 605L311 609"],79:[716,23,736,118,763,"118 254Q118 366 174 473T324 648T517 716Q627 716 695 638T763 435Q763 321 706 215T555 43T362 -22Q256 -22 187 56T118 254ZM380 58Q452 58 518 116T622 263T661 442Q661 496 646 535T608 594T567 622T534 634Q516 636 496 636Q400 636 313 528T225 264Q225 172 267 115T380 58"],80:[694,0,639,88,690,"162 348L236 694H378Q522 693 530 692Q604 680 647 635T690 524Q690 474 665 430T612 359Q550 299 465 280Q443 275 343 274H250V271Q250 269 235 201T206 68T192 2V0H140Q88 0 88 1L98 46Q107 90 126 177T162 348ZM594 513Q594 560 562 588T477 622Q470 623 394 623H321L293 487L263 349V347H342H347H375Q530 347 578 449Q594 483 594 513"],81:[716,125,736,118,763,"118 254Q118 366 174 473T324 648T517 716Q627 716 695 638T763 435Q763 305 693 194T543 36Q547 29 586 -47T625 -125H504L450 -8Q406 -22 363 -22Q256 -22 187 56T118 254ZM661 437Q661 532 616 584T506 636Q428 636 361 578T257 433T220 258Q220 167 264 113T380 58Q390 58 397 58T408 59T413 60T417 61Q417 63 387 127T356 193Q356 194 409 194H462L485 150L508 105Q509 103 532 125T567 161Q661 278 661 437"],82:[694,0,646,88,698,"162 348L236 694H375H414H445Q507 694 538 690T606 668Q698 623 698 534V528Q698 447 608 377Q582 358 555 345T512 326L497 321L617 0H565L513 1L402 309H255L189 0H138Q88 0 88 1L98 46Q107 90 126 177T162 348ZM603 525Q603 603 499 620Q486 622 403 623H321L297 506Q292 482 285 449T274 402L271 387V385H346Q350 385 363 385T386 384Q548 384 592 479Q603 503 603 525"],83:[716,22,556,54,609,"161 478Q161 568 242 642T435 716Q527 716 599 673L609 667Q595 633 589 615L571 568Q570 568 564 575T546 592T518 611T475 628T417 635Q351 635 305 596T259 507Q259 465 290 444T372 411T432 396Q473 385 509 343T545 236Q545 140 464 59T270 -22Q155 -22 54 48L92 146Q93 146 101 138T124 117T161 92T216 72T288 63Q360 63 403 109T447 204Q447 220 444 233T435 256T421 273T404 285T385 295T366 301T347 306T331 310T315 314T292 321T265 331T235 346T207 367T183 395T168 431T161 478"],84:[688,0,681,165,790,"165 608L182 687Q182 688 486 688H790L789 685L781 645L773 609H521L457 306Q393 3 392 2Q392 0 340 0H288V2Q289 5 353 304T417 605V609L291 608H165"],85:[694,22,688,131,747,"340 -22Q251 -22 191 33T131 177V187Q131 192 131 195T132 205T133 215T136 231T141 253T147 285T156 328T168 384T184 457L235 694H338V691Q338 690 288 451T236 210Q234 194 234 177Q234 138 247 111T280 72T319 54T357 49Q408 49 449 74T510 128Q516 136 521 143T530 158T538 175T545 194T553 220T560 250T569 289T579 336T591 395T606 464L655 694H747V691Q651 243 645 213Q623 149 587 102Q482 -22 340 -22"],86:[694,0,667,161,799,"220 348L161 694H216Q270 694 270 693L283 613Q334 313 346 215Q359 102 359 96Q359 87 358 84Q388 162 684 657L706 694H753Q799 694 799 693L387 0H333Q279 0 279 1L272 45Q264 89 249 177T220 348"],87:[694,0,944,161,1076,"596 540Q596 562 597 585T599 609Q599 588 436 255Q402 185 362 104L310 0H213V3Q213 6 188 347T161 694H263L265 664Q290 327 293 184Q293 112 289 85Q290 85 290 87Q290 95 301 123T332 194T373 282T419 380T463 469T498 541T517 579L574 694H671V689L674 646Q678 603 682 538T691 401T699 263T703 160Q703 102 700 87Q719 154 930 576L989 694H1076Q1076 693 903 347L730 0H628V4L626 26Q624 48 622 85T616 168T609 267T603 369T598 464T596 540"],88:[694,0,667,14,758,"14 0Q17 3 184 184T352 367L265 529Q244 567 222 609T188 672L176 692Q176 694 236 694H297L338 612Q387 515 400 489L421 448L645 694H758L708 640Q481 393 456 368Q455 366 500 281T596 104T652 0H531L388 293L128 0H14"],89:[694,0,667,151,809,"151 692Q151 694 212 694H272L418 362L696 683L705 694H758L809 693Q809 692 630 490T444 280Q442 275 413 139L383 1L333 0Q282 0 282 2Q283 3 312 141L341 278L246 484L151 692"],90:[694,0,611,55,702,"67 54Q551 615 551 617Q543 618 517 618Q510 618 463 618T376 617Q200 617 200 618T209 657L216 694H459Q702 694 702 692Q702 689 697 667L692 643L207 80H392Q493 81 577 81Q577 70 560 2V0H55V2L67 54"],91:[750,250,289,41,425,"148 252L253 750H339Q425 750 425 749L424 744Q423 739 421 729T417 711L409 675L367 674H325L235 252Q145 -167 145 -172Q145 -174 187 -174H229V-176Q213 -240 213 -250H127Q41 -250 41 -248Q41 -245 148 252"],93:[750,250,289,-31,353,"353 749Q353 746 303 512T200 27T141 -250H-31Q-31 -240 -15 -176V-174H70L250 674H208L165 675L181 750H267Q353 750 353 749"],94:[694,-527,500,190,533,"190 527L360 694H434L484 611Q533 528 533 527H457L390 632L385 639L266 527H190"],95:[-38,114,500,50,565,"59 -75L66 -38H316Q565 -38 565 -39T558 -75T549 -112Q549 -114 299 -114Q50 -114 50 -113L52 -108Q53 -103 55 -93T59 -75"],97:[461,10,481,61,473,"313 386Q286 386 260 381T217 369T186 355T164 342T155 337Q154 338 159 377T165 418Q251 461 320 461Q322 461 328 461T337 460Q397 460 435 424T473 329Q473 325 473 318T472 308Q432 110 407 2V0H317V2L325 38Q295 21 269 10Q215 -10 156 -10H149Q76 -10 62 69Q61 75 61 90Q61 127 73 150T116 194Q146 215 207 231T348 252H368L373 277Q378 302 378 318Q378 367 339 384Q332 386 313 386ZM150 116Q150 93 171 79T223 65Q259 65 293 85T341 135Q343 140 348 160T353 184Q353 186 342 186Q298 186 231 174T153 134Q150 127 150 116"],98:[694,11,517,75,539,"302 -11Q266 -11 235 1T190 26L176 38Q170 8 168 2V0H121Q75 0 75 1L84 46Q94 90 113 177T149 348L223 694H267Q312 694 312 693T282 551T251 407Q251 406 256 408T271 415Q347 454 430 454H438Q501 454 528 374Q539 339 539 299Q539 179 466 84T302 -11ZM443 275Q443 317 421 348T346 379Q318 379 296 369Q269 359 238 332L193 118L198 109Q220 65 269 65Q350 65 396 130T443 275"],99:[460,11,444,74,499,"75 164Q75 226 100 282T165 377T252 437T342 460H347Q447 460 499 417L483 378Q468 339 468 338Q466 338 455 347T424 366T385 378Q355 382 334 382Q262 382 215 318T168 177Q168 120 196 95T259 69H269Q345 69 420 108Q432 114 432 113T427 72L422 32L402 22Q382 12 344 2T259 -11Q214 -11 180 2T126 36T95 81T79 126T75 164"],100:[694,10,517,73,588,"73 156Q73 224 102 293T184 408T294 455Q375 455 432 413Q438 407 438 410T469 553L499 694H588V691Q588 690 515 348T441 2V0H348V2Q357 29 357 43L352 41Q332 24 288 7T196 -10H190Q178 -10 166 -7T134 8T98 46T75 113Q73 129 73 156ZM419 335Q419 339 412 348T386 368T342 379Q284 379 243 343T184 261T167 168Q167 122 191 94T263 66Q321 66 367 116L374 124L397 229Q419 333 419 335"],101:[460,11,444,71,472,"248 -11Q170 -11 121 41T71 173Q71 265 133 349T285 454Q305 460 318 460H328Q368 460 399 448Q472 414 472 309Q472 274 464 234L462 219H159Q156 198 156 185Q156 137 179 107T237 68Q246 66 268 66Q345 66 427 113V109Q426 108 422 73T417 37Q417 34 409 29Q329 -11 248 -11ZM401 299Q399 337 376 361T316 385Q291 385 266 371Q220 350 184 289H401V299"],102:[705,0,306,94,494,"381 443Q381 440 374 407T366 371H315Q263 371 263 369Q262 368 224 186Q215 145 205 97T189 25L184 2V0H94V2L99 25Q104 48 114 96T134 186Q172 368 173 369Q173 371 139 371H106V373L114 410L121 444H155L188 445L191 455L212 551Q232 612 288 658T415 705Q438 705 464 701T494 694Q478 614 477 614L467 618Q457 621 440 624T406 629H400Q333 629 306 579Q301 568 289 507L275 444H328Q381 444 381 443"],103:[455,206,500,12,568,"113 252Q113 334 177 394T311 454Q332 454 350 451T379 442T398 432T410 424L413 421Q412 423 411 424L409 426Q409 429 434 436T496 449T560 455H568V451Q568 447 567 429T566 394L565 377L553 379Q522 385 479 385Q463 385 456 384L443 383L436 392Q454 357 454 324Q454 243 390 182T249 120Q233 120 219 122T195 128T178 136T167 142L163 145Q149 131 149 105Q149 78 171 72L242 71Q246 71 269 71T303 71T336 68T372 62T403 51T432 32Q461 8 461 -40Q461 -112 383 -159T211 -206Q123 -206 68 -172T12 -86Q12 -55 31 -23T82 32Q90 38 89 39Q89 40 87 44T82 59T80 82Q80 134 126 189Q113 228 113 252ZM369 319Q369 354 350 368T304 383Q274 383 252 369T218 333T202 291T197 255Q197 221 217 206T263 191Q317 191 343 233T369 319ZM373 -59Q373 -41 362 -30T330 -13T291 -7T247 -5H216Q167 -5 158 -6T139 -12Q123 -20 110 -38T97 -76Q97 -102 133 -118T221 -134Q242 -134 267 -130T316 -118T357 -94T373 -59"],104:[694,0,517,73,513,"416 321Q416 379 336 379Q276 379 237 302Q226 276 209 202T180 66T166 2V0H119Q73 0 73 1L82 46Q92 90 111 177T147 348L221 694H265Q310 694 310 693T279 544L247 395Q325 455 403 455Q513 455 513 358Q513 334 508 309Q507 304 476 156T443 2V0H350V2L357 34Q364 65 373 110T392 200T409 281T416 321"],105:[680,0,239,74,315,"189 578Q190 579 199 627T211 678V680H315V678Q313 675 304 627T293 578V576H189V578ZM168 442T168 443T213 444T258 443T212 225T164 2V0H74V2Q75 7 121 224"],106:[680,204,267,-96,336,"211 577L233 680H284Q336 680 336 679L315 576H263Q211 576 211 577ZM19 -204Q-12 -204 -40 -196T-82 -179T-96 -170Q-96 -168 -78 -132L-61 -95L-54 -103Q-32 -126 3 -126Q26 -126 50 -116Q76 -101 83 -85Q84 -79 140 180T196 443Q196 444 241 444T286 443Q286 441 232 186T175 -75Q163 -120 122 -162T19 -204"],107:[694,0,489,76,542,"150 348L224 694H310V691Q218 259 218 258L232 270Q245 281 274 306T327 351L435 444H489L542 443Q542 442 443 357L344 272L471 1L422 0H372L366 14Q359 27 347 54T323 105L273 210Q271 210 231 174L190 139L160 0H118Q76 0 76 1L86 46Q95 90 114 177T150 348"],108:[694,0,239,74,311,"148 348L222 694H311V691Q311 690 238 348T164 2V0H119Q74 0 74 1L84 46Q93 90 112 177T148 348"],109:[455,0,794,73,790,"416 321Q416 379 336 379Q276 379 237 302Q226 276 209 202T180 66T166 2V0H119Q73 0 73 2L121 226L169 449Q169 450 213 450H256L249 421Q248 417 247 412T246 404T245 398T244 394T244 392Q250 398 261 407T307 433T379 454H392H400Q451 454 472 439Q482 434 489 427T500 412T506 399T510 388L511 384Q511 384 517 388Q563 431 620 446Q648 455 680 455Q790 455 790 358Q790 334 785 309Q784 304 753 156T720 2V0H627V2L634 34Q641 65 650 110T669 200T686 281T693 321Q693 379 613 379Q553 379 514 302Q503 276 486 202T457 66T443 2V0H350V2L357 34Q364 65 373 110T392 200T409 281T416 321"],110:[454,0,517,73,514,"416 321Q416 379 336 379Q276 379 237 302Q226 276 209 202T180 66T166 2V0H119Q73 0 73 2L121 226L169 449Q169 450 213 450H256L249 421Q248 417 247 412T246 404T245 398T244 394T244 392Q250 398 261 407T307 433T379 454H392Q416 454 433 452T470 440T502 411T513 358Q513 334 508 309Q507 304 476 156T443 2V0H350V2L357 34Q364 65 373 110T392 200T409 281T416 321"],111:[461,11,500,69,523,"69 169Q69 238 107 306T211 417T348 461Q419 461 471 412T523 271Q523 161 438 75T247 -11Q170 -11 120 39T69 169ZM432 279Q432 338 401 361T333 385Q280 385 240 352T182 273T164 178Q164 119 195 94T265 68Q306 68 344 94Q380 115 406 169T432 279"],112:[455,194,517,34,538,"259 443Q251 405 251 404L260 409Q269 414 286 421T324 436T375 449T434 455Q482 455 510 417T538 303Q538 169 463 79T302 -11Q226 -11 176 39V36Q175 35 151 -80L127 -193Q127 -194 80 -194H34V-191L102 127L169 443Q169 444 214 444T259 443ZM269 65Q332 65 386 124T441 262Q441 304 422 334T370 373Q356 375 339 375Q293 375 238 331L193 118Q200 103 206 94T229 75T269 65"],113:[455,194,517,72,538,"72 149Q72 272 146 363T304 455Q340 455 371 442T409 423T436 398Q438 411 442 427L448 455H538L400 -193Q400 -194 354 -194Q307 -194 307 -193L356 37V41Q355 41 350 38T332 27T302 13Q247 -10 191 -10H179Q138 -10 105 32T72 149ZM414 298Q402 376 341 376Q277 376 223 317T169 182Q169 121 198 93T265 65Q319 65 365 111L377 123L414 298"],114:[455,0,342,74,424,"240 377L244 380Q248 384 255 390T272 404T296 419T325 434T361 446T401 454Q403 454 408 454T416 455H424L421 442Q419 435 413 405T406 373Q351 373 294 336T216 237Q213 231 201 173T178 60T164 2V0H119Q74 0 74 2L122 226L170 449Q170 450 213 450H255L247 414Q246 409 245 403T243 393T241 385T240 379T240 377"],115:[461,11,383,35,436,"99 299Q99 318 106 341T133 393T195 441T298 461Q336 461 370 453T420 437L436 429Q436 428 421 389T405 350Q356 386 273 386H265Q248 386 237 384T211 371T191 337Q189 329 189 326Q189 320 190 315T194 306T200 299T209 293T218 289T228 285T239 283T251 281T263 278L270 276Q278 275 283 274T298 270T316 264T333 255T351 243T367 228T380 209T388 186T391 157Q391 96 341 43T193 -11Q171 -11 150 -8T114 -1T84 9T61 19T45 28T35 33Q35 36 67 116L76 109Q132 67 211 67Q258 67 279 88T301 135Q301 159 280 170T224 187T180 197Q141 212 120 239T99 299"],116:[571,11,361,97,410,"245 68Q267 68 289 75T322 90L334 98Q338 94 338 28V24L324 19Q268 -4 218 -8Q198 -11 177 -11Q118 -11 118 75Q118 98 123 127Q125 137 149 251T174 369Q174 371 135 371H97V373L105 410L112 444H152L192 445L200 478Q208 512 213 541L219 571H261Q303 571 303 570T290 506L276 444H343Q410 444 410 443Q410 440 403 407T395 371H328Q261 371 261 369Q211 152 211 118Q211 68 245 68"],117:[444,10,517,90,537,"166 -10H160Q146 -10 137 -8T115 0T97 22T90 63Q90 79 130 268L167 443Q167 444 214 444Q260 444 260 443L224 273Q187 97 187 86Q187 70 202 65T250 59Q303 59 336 83T379 139Q380 143 412 292T444 443Q444 444 491 444Q537 444 537 443T491 225T443 2V0H353V2L361 38L352 34Q344 29 326 22T286 7T232 -5T166 -10"],118:[444,0,461,108,540,"177 6L108 442V444H201V442Q202 441 213 371T235 213T246 90V65Q259 117 429 406L450 444H495Q540 444 540 443Q539 442 411 221L282 1L230 0H178L177 6"],119:[444,0,683,108,762,"148 5Q147 8 128 222T109 440L108 444H199V442Q200 441 204 385T214 253T219 140Q219 108 215 76Q215 72 214 67V65L215 66Q219 95 278 221L390 444H475V437Q497 203 497 121Q497 90 494 70Q494 67 494 67L496 73Q520 143 654 405L674 444H718Q762 444 762 443L534 1L483 0H432V5Q429 28 422 126T413 283Q413 343 416 370L417 378Q416 377 416 376Q401 303 248 12L242 0H148V5"],120:[444,0,461,1,537,"317 229Q453 9 460 0H409L359 1L312 88Q266 176 265 176Q265 177 254 165T223 132T182 88L100 0H1L15 14Q29 28 61 59T118 115L236 229L226 244Q108 433 100 444H201L290 294L438 444H537L528 435Q526 432 512 418T468 376T418 327L317 229"],121:[444,205,461,1,540,"11 -117L20 -120Q28 -124 46 -128T84 -132H100Q124 -122 149 -85Q200 -6 200 1Q200 17 155 204T109 442Q109 444 156 444H203Q203 443 208 419T221 357T235 277T248 190T254 114Q254 81 250 67V65Q251 65 251 67Q256 94 297 177Q339 259 422 397L450 444H540Q540 443 386 186T219 -90Q179 -153 145 -179T73 -205Q52 -205 34 -202Q29 -202 21 -201T7 -198L1 -197Q1 -196 6 -157T11 -117"],122:[444,0,435,28,494,"129 408L136 444H315Q494 444 494 443Q494 441 489 419L484 396L164 76L291 77Q418 77 418 76T411 41T402 2V0H215Q28 0 28 2L34 27L38 50L360 371L240 370Q121 370 121 371Q124 388 129 408"],126:[327,-193,500,199,560,"330 327Q356 326 388 298T446 269Q470 269 484 327H522Q560 327 560 325L557 316Q554 306 549 292T535 263T512 232T480 208Q453 193 429 193T370 222T315 251Q285 251 275 193H199V197Q214 257 251 292T330 327"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js deleted file mode 100644 index 64af3e6..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-italic"],{768:[694,-527,0,-270,-87,"-262 681L-270 694H-177L-132 612Q-89 530 -87 528Q-87 527 -125 527H-163L-208 598Q-254 670 -262 681"],769:[694,-527,0,-190,63,"-96 625L-29 694H63Q42 673 -31 605L-114 527H-190L-176 541Q-160 559 -96 625"],770:[694,-527,0,-310,33,"-310 527L-140 694H-66L-16 611Q33 528 33 527H-43L-110 632L-115 639L-234 527H-310"],771:[677,-543,0,-301,60,"-170 677Q-144 676 -112 648T-54 619Q-30 619 -16 677H22Q60 677 60 675L57 666Q54 656 49 642T35 613T12 582T-20 558Q-47 543 -71 543T-130 572T-185 601Q-215 601 -225 543H-301V547Q-286 607 -249 642T-170 677"],772:[631,-552,0,-314,64,"-314 553L-297 631H-116Q64 631 64 630Q60 612 56 591L47 553L-133 552Q-314 552 -314 553"],774:[694,-508,0,-284,73,"-142 508Q-205 508 -244 548T-284 652Q-284 666 -281 683L-280 694H-204Q-205 689 -205 677Q-205 650 -196 631T-173 604T-147 593T-125 590Q-85 590 -50 618T-5 686L-2 694H73V690Q53 610 -10 559T-142 508"],775:[680,-576,0,-180,-54,"-180 578Q-179 579 -170 627T-158 678V680H-54V678Q-56 675 -65 627T-76 578V576H-180V578"],776:[680,-582,0,-273,40,"-273 584Q-272 585 -262 632L-252 678V680H-154V678L-164 632Q-174 585 -175 584Q-175 582 -224 582T-273 584ZM-78 586Q-78 587 -69 632T-58 678V680H40L39 677Q39 676 38 670T34 651T29 628L19 583L-30 582H-79L-78 586"],778:[693,-527,0,-227,-2,"-227 597Q-227 639 -186 666T-102 693H-97Q-29 693 -8 649Q-2 637 -2 623Q-2 582 -43 555T-132 527Q-171 527 -199 546T-227 597ZM-59 619Q-59 635 -68 643T-104 652Q-142 652 -156 636T-171 602Q-171 569 -123 569Q-119 569 -111 570T-99 571Q-59 582 -59 619"],779:[694,-527,0,-287,63,"-236 619L-195 694H-149Q-103 694 -103 693L-211 527H-287L-282 536Q-281 539 -236 619ZM-70 619L-29 694H17Q63 694 63 693L-45 527H-121L-116 536Q-115 539 -70 619"],780:[654,-487,0,-283,60,"-283 654H-207L-140 549L-135 542L-16 654H60L-109 487H-147L-184 488L-234 570Q-283 653 -283 654"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/CombDiacritMarks.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js deleted file mode 100644 index a70578a..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-italic"]={directory:"SansSerif/Italic",family:"MathJax_SansSerif",id:"MJSSI",style:"italic",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js deleted file mode 100644 index 152a93b..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS["MathJax_SansSerif-italic"],{305:[444,0,239,74,258,"168 442T168 443T213 444T258 443T212 225T164 2V0H74V2Q75 7 121 224"],567:[444,204,267,-97,286,"-54 -96L-48 -104Q-41 -111 -27 -118T7 -126Q60 -126 82 -87Q85 -81 140 181L196 443Q196 444 241 444T286 443Q286 441 232 186T175 -75Q163 -120 122 -162T19 -204Q-13 -204 -41 -196T-83 -180T-96 -170Q-55 -96 -54 -96"],915:[691,0,542,87,646,"87 2Q88 4 160 346T234 689Q234 691 440 691T646 689Q643 686 629 611H475L321 612Q193 4 191 2V0H87V2"],916:[694,0,833,42,790,"273 343L510 694H617Q790 2 790 0H416L42 1L273 343ZM539 576Q536 597 536 600Q536 602 535 605Q534 607 534 607Q527 580 222 130L201 98H651L648 110Q645 123 639 149T627 198Q554 489 539 576"],920:[715,22,778,119,804,"119 260Q119 348 157 433T254 579T387 677T533 715Q701 715 772 574Q804 511 804 431Q804 315 744 209T586 41T384 -22Q262 -22 191 59T119 260ZM706 426Q706 524 655 582T525 640Q454 640 395 600T293 502Q256 447 237 383T218 266Q218 168 269 112T401 55Q518 55 612 166T706 426ZM283 349L293 397H473Q652 397 652 396Q647 374 642 347L632 299H452Q273 299 273 300Q278 322 283 349"],923:[694,0,611,28,582,"28 0L401 694H504V690Q505 686 543 345T582 1Q582 0 528 0H473V3Q472 6 460 113T435 359T422 558Q422 593 424 603L425 610L424 608Q414 572 343 431Q287 316 143 49L117 1L73 0H28"],926:[688,0,667,42,765,"193 687Q193 688 479 688H765V686Q764 685 755 642L747 600H461L175 601Q175 602 184 645L193 687ZM196 400Q196 401 418 401T640 400L622 315Q622 314 400 314T178 315L196 400ZM42 2Q43 3 51 44T60 87H64Q68 87 75 87T93 87T119 87T151 88T190 88T237 88T291 88T352 88H643Q638 66 634 44T627 13T624 2V0H42V2"],928:[691,0,708,86,768,"86 2Q88 4 160 346T233 689Q233 691 501 691Q768 691 768 689Q766 688 694 346T621 2V0H517V2Q518 3 582 304T646 609L648 615H321L190 0H86V2"],931:[694,0,722,55,813,"194 655L202 694H508Q813 694 813 693Q809 675 805 653L797 614H559L321 615Q327 606 405 478L485 347Q449 311 348 203T247 86Q247 84 294 84Q303 84 359 84T465 85H684Q684 84 675 42L666 0H360L55 1L195 154Q346 319 347 320L359 333L273 473Q187 614 186 614L187 620Q188 625 190 635T194 655"],933:[716,0,778,173,843,"357 637Q320 637 297 612T266 555H173Q178 576 188 598Q214 651 265 683T373 716Q497 716 497 542V509L504 526Q579 715 711 715Q773 715 808 677T843 589Q843 576 840 555H747L748 557Q748 559 748 563T749 574V580Q749 604 731 622Q715 638 693 638Q591 638 543 465Q531 425 506 309T462 98T441 2V0H337V2Q425 401 436 486Q438 504 438 526Q438 637 364 637H357"],934:[694,0,722,124,743,"124 308Q124 399 208 481T433 587Q437 587 437 589Q438 590 449 643L459 694H508Q557 694 557 693Q557 691 546 641T535 587Q543 587 562 583T614 565T674 531T722 472T743 387Q743 288 656 209T449 110L433 106Q411 3 410 2Q410 0 361 0H312L313 3Q313 5 324 56L335 107H331L321 108Q311 110 297 114T266 124T228 141T190 168Q124 225 124 308ZM227 315Q227 282 239 257T270 218T306 197T338 186L350 184H351L386 346Q420 507 420 509H419Q411 509 393 505T342 485T284 444Q227 387 227 315ZM642 381Q642 413 629 437T599 475T563 496T533 507T519 510Q518 510 484 348T450 184Q544 201 593 258T642 381"],936:[694,0,778,171,854,"325 556Q325 524 310 447T294 330Q294 289 304 260Q314 234 333 216T364 192T380 187L488 694H585V691Q584 689 531 438L478 188H479Q485 188 503 195T555 231T613 305Q637 352 654 435Q662 470 669 496T681 538T690 562T698 578T704 587Q719 609 733 615T772 621H802H854V619L838 546Q838 545 832 545Q775 539 749 418Q716 274 638 196Q616 173 590 156T543 131T503 117T473 110T460 106Q460 105 450 54T438 2V0H340V2Q341 3 351 54T362 106Q363 107 358 108T344 111T322 117T295 128T267 145T239 171T216 207T200 256T194 319Q194 356 203 408T213 483Q213 517 203 530T182 544T171 546Q184 609 187 619V621H239Q286 621 294 620T309 612Q325 596 325 556"],937:[716,0,722,44,769,"148 407Q148 475 182 534T269 633T386 694T511 716Q622 716 695 658T769 507Q769 461 747 409T699 321T628 225T562 136Q533 90 533 86Q542 85 557 85Q564 85 583 85T614 86Q695 86 695 85Q679 9 677 2V0H425Q426 3 433 30T447 72T480 131T549 241L554 248Q558 254 563 261T576 281T592 306T609 335T625 366T640 400T653 434T661 466T664 498Q664 562 618 601T497 640Q416 640 351 596T262 482Q250 441 250 392T276 237T302 70V56Q302 28 296 2V0H44V2L62 85Q62 86 143 86L225 85V88Q224 89 224 89T224 91T224 95T223 101T222 110T220 123T216 140T209 163T200 191T188 227Q148 344 148 407"],8211:[312,-236,500,50,565,"59 275L66 312H316Q565 312 565 311T558 275T549 238Q549 236 299 236Q50 236 50 237L52 242Q53 247 55 257T59 275"],8212:[312,-236,1000,50,1065,"59 275L66 312H566Q1065 312 1065 311T1058 275T1049 238Q1049 236 549 236Q50 236 50 237L52 242Q53 247 55 257T59 275"],8216:[694,-471,278,190,335,"309 567L299 520Q289 474 288 473Q288 471 239 471T190 473L192 480Q193 486 196 499T201 522L211 569L287 694H312L335 693L332 685Q328 677 321 661T307 630L279 570L294 569Q309 569 309 567"],8217:[694,-471,278,190,335,"228 647L237 694H286Q335 694 335 693L334 686Q332 680 330 668T325 644L315 597L239 471H214Q190 471 190 472L246 595Q246 596 231 596H217V598Q217 601 228 647"],8220:[694,-471,500,274,613,"393 567L383 520Q373 474 372 473Q372 471 323 471T274 473L276 480Q277 486 280 499T285 522L295 569L371 694H396L419 693L416 685Q412 677 405 661T391 630L363 570L378 569Q393 569 393 567ZM587 567L577 520Q567 474 566 473Q566 471 517 471T468 473L470 480Q471 486 474 499T479 522L489 569L565 694H590L613 693L610 685Q606 677 599 661T585 630L557 570L572 569Q587 569 587 567"],8221:[694,-471,500,133,472,"171 647L180 694H229Q278 694 278 693L276 686Q275 680 273 668T268 644L258 597L182 471H157Q133 471 133 472L189 595Q189 596 174 596H160V598Q160 601 171 647ZM365 647L374 694H423Q472 694 472 693L470 686Q469 680 467 668T462 644L452 597L376 471H351Q327 471 327 472L383 595Q383 596 368 596H354V598Q354 601 365 647"],8710:[694,0,833,42,790,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/Other.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js deleted file mode 100644 index d5f9d3d..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_SansSerif,{32:[0,0,250,0,0,""],33:[694,0,319,110,208,"120 187Q120 225 115 440T110 693Q110 694 159 694T208 693Q208 655 203 440T198 187Q198 186 159 186T120 187ZM110 0V98H208V0H110"],34:[694,-471,500,32,325,"33 596V694H131V597L82 471H32L47 532Q62 593 63 594Q63 596 48 596H33ZM227 596V694H325V597L276 471H226L241 532Q256 593 257 594Q257 596 242 596H227"],35:[694,194,833,56,777,"56 350Q56 363 70 370H192Q314 370 314 371L356 526Q396 676 401 685Q406 694 416 694Q423 694 429 689T436 677Q436 673 396 523T355 371Q355 370 449 370Q544 370 544 371L586 526Q628 682 630 685Q636 694 646 694Q653 694 659 689T665 678Q665 670 645 593T605 444L585 371Q585 370 673 370H762Q777 362 777 350Q777 337 767 334T723 330H668H573L567 305Q560 282 545 226L530 171L646 170H721Q756 170 766 167T777 150Q777 138 762 130H640Q518 130 518 129L476 -26Q434 -182 432 -185Q426 -194 416 -194Q409 -194 403 -189T397 -178Q397 -170 417 -93T457 56L477 129Q477 130 383 130Q288 130 288 129L246 -26Q204 -182 202 -185Q196 -194 186 -194Q179 -194 173 -189T167 -178Q167 -170 187 -94T227 56L247 129Q247 130 159 130H70Q56 137 56 150Q56 165 72 170H259L265 195Q273 222 287 275L302 330H186L70 331Q63 334 58 339Q56 343 56 350ZM489 170L532 330H343L337 305Q330 282 315 226L300 171L394 170H489"],36:[750,56,500,43,444,"55 509Q55 585 103 638T213 701V750H286V703H289Q312 703 354 689Q372 682 399 666T427 646L413 569Q413 568 403 575Q352 615 291 624H286V405Q357 389 400 331T444 199Q444 128 402 69T286 -7V-56H213V-9Q167 -3 125 14T63 44T44 60Q44 61 52 101L59 140L69 132Q78 125 87 119T107 107T124 97T141 90T157 84T173 80T187 76T201 73T213 70V317L202 319Q141 335 98 386T55 509ZM213 424V620L203 615Q143 587 143 522Q143 455 213 424ZM356 187Q356 208 350 227T334 258T315 280T298 293T287 297Q286 297 286 186V75Q356 110 356 187"],37:[750,56,833,56,776,"56 549Q56 639 98 694T195 750Q248 750 290 694T332 548Q332 455 290 401T195 347Q141 347 99 403T56 549ZM248 549Q248 602 234 638T195 674Q145 674 145 549Q145 423 195 423Q219 423 233 459T248 549ZM197 -56Q187 -56 182 -49T176 -35Q176 -33 178 -27Q179 -25 399 356T623 741Q626 750 639 750Q648 750 654 744T659 729Q657 721 435 336T207 -52Q203 -56 197 -56ZM500 146Q500 235 542 291T639 347Q692 347 734 293T776 146Q776 53 733 -1T639 -56Q587 -56 544 -2T500 146ZM692 146Q692 199 678 235T639 271Q589 271 589 146Q589 20 639 20Q663 20 677 56T692 146"],38:[716,22,758,42,702,"156 502Q156 600 198 658T302 716Q367 716 405 665T444 549Q444 531 442 523Q426 446 304 348L287 334Q305 297 340 249T402 170T430 139T443 149T472 181T509 231T549 303T583 394Q584 398 586 404Q587 408 587 409Q588 409 626 399T665 388Q663 381 660 369T644 322T614 253T567 176T502 98L491 87Q534 57 584 57Q653 57 700 75Q702 75 702 34T700 -7Q652 -22 586 -22H580Q505 -22 434 26L421 34Q419 33 405 25T374 11T336 -4T285 -17T226 -22Q143 -22 93 31T42 152Q42 184 51 211T81 260T111 291T144 317L184 348L178 365Q156 430 156 502ZM359 552Q359 588 345 614T302 640Q292 640 282 636T260 622T241 590T233 535Q236 474 253 417L257 407L271 419Q312 454 330 479Q359 514 359 552ZM345 102Q262 190 216 277Q215 277 204 267T180 247T165 236Q135 208 135 159Q135 123 152 97T198 61Q207 58 227 58Q286 58 357 89L345 102"],39:[694,-471,278,89,188,"90 596V694H188V597L139 471H89L104 532Q119 593 120 594Q120 596 105 596H90"],40:[750,250,389,74,333,"74 250Q74 564 240 733L257 750H333L323 739Q167 573 167 250T323 -239L333 -250H257L240 -233Q74 -63 74 250"],41:[750,250,389,55,314,"221 -73T221 250T65 739L55 750H131L148 733Q314 567 314 250T148 -233L131 -250H55L65 -239Q221 -73 221 250"],42:[750,-306,500,63,436,"208 717Q211 731 222 740T250 750Q265 750 277 741T291 717Q291 706 290 675T286 617L285 591L329 622Q369 651 376 655T393 659Q411 659 423 647T436 616Q436 609 434 603T429 594T419 585T407 577T389 567T368 556L316 528L368 500Q421 472 429 464Q436 455 436 440Q436 422 423 409T393 396Q390 396 388 396T384 397T380 398T375 401T367 406T358 413T346 422T329 434L285 465Q284 465 285 438T289 381T291 347Q291 327 278 317T250 306Q234 306 222 315T208 339Q208 350 209 381T212 439L214 465L170 434Q130 405 123 401T106 397Q88 397 76 409T63 440Q63 447 65 453T70 462T80 471T92 479T110 489T131 500L183 528L131 556Q78 584 70 592Q63 601 63 616Q63 634 76 647T106 660Q109 660 111 660T115 659T119 658T124 655T132 650T141 643T153 634T170 622L214 591L212 617Q211 643 210 674T208 717"],43:[583,82,778,56,722,"56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250"],44:[98,125,278,89,188,"90 0V98H188V1L139 -125H89L104 -64Q119 -3 120 -2Q120 0 105 0H90"],45:[259,-186,333,11,277,"11 186V259H277V186H11"],46:[98,0,278,90,188,"90 0V98H188V0H90"],47:[750,250,500,56,444,"423 750Q432 750 438 744T444 730Q444 725 271 248T92 -240Q85 -250 75 -250Q68 -250 62 -245T56 -231Q56 -221 230 257T407 740Q411 750 423 750"],48:[678,22,500,39,460,"117 621Q174 678 247 678Q305 678 351 647Q396 617 424 557Q460 472 460 328Q460 271 455 224Q448 154 427 104T376 27T314 -10T249 -22Q201 -22 160 1T91 67Q39 154 39 316Q39 541 117 621ZM250 55Q274 55 293 66T324 93T344 136T357 185T364 240T366 291T367 340Q367 373 367 393T363 449T352 507T332 553T299 589T250 601Q217 601 194 584T159 542T141 479T133 411T132 340V331Q132 299 133 277T137 219T147 157T167 107T201 68T250 55"],49:[678,0,500,83,430,"94 612Q172 616 211 632T284 678H307V73H430V0H88V73H213V317Q213 560 212 560Q210 558 197 554T155 546T96 540L83 539V612H94"],50:[677,0,500,42,449,"222 599Q190 599 166 585T128 550T108 509T97 474T93 459L67 492L42 526L47 539Q72 608 120 642T225 677Q304 677 355 644Q449 579 449 454Q449 373 361 290Q351 280 315 250T199 144Q156 103 137 85L293 86H449V0H50V79L216 242Q284 302 317 349T351 456Q351 517 315 558T222 599"],51:[678,22,500,42,457,"333 521Q333 554 313 579T243 604Q154 604 99 514L78 546Q56 577 56 579Q56 580 62 589T82 611T114 637T162 662T222 677Q224 677 231 677T242 678H245Q318 678 374 634T430 520Q430 483 417 452T382 398T351 369T329 354L328 353Q369 333 373 330Q408 306 432 268T457 184Q457 103 397 41T242 -22Q131 -22 51 58L42 68L49 105L55 142L58 138Q62 134 66 130T77 120T91 108T108 96T129 83T152 72T179 63T209 57T242 54Q285 54 319 86T353 184Q353 231 331 267T260 315L213 316H166V354Q166 392 167 392Q233 395 257 405Q290 418 311 450T333 521"],52:[656,0,500,28,471,"271 654L272 656H380V235H471V159H380V0H286V159H28V235L149 443Q269 652 271 654ZM292 235V607Q292 604 290 591T286 571T280 548T269 517T252 476T226 422T189 354T140 267Q136 260 132 253T126 240L123 236Q123 235 207 235H292"],53:[656,21,500,33,449,"257 350Q236 350 218 342T189 323T171 301T160 281L157 273Q157 272 116 272H75V656H416V577H162V486Q162 396 163 396T174 403T207 418T258 426Q339 426 394 360T449 203Q449 113 386 46T226 -21H223Q188 -21 156 -11T102 13T64 42T41 66T33 77Q34 78 44 95T64 128L73 144Q93 112 117 93Q165 54 223 54Q270 54 306 86T345 197Q345 350 257 350"],54:[678,22,500,42,457,"42 318Q42 396 61 460T109 564T173 629T237 666T289 677H301H317Q359 677 408 658V621Q408 585 407 585H406Q359 605 308 605Q246 605 203 556T146 421Q143 403 144 403Q145 402 152 409Q216 469 299 469Q333 469 357 457T407 405Q457 330 457 226Q457 126 402 57Q340 -22 251 -22Q216 -22 183 -7T116 43T63 149T42 318ZM260 393Q216 393 188 365T150 306T141 243Q141 153 172 104Q192 68 230 56Q238 54 251 54Q311 54 342 116Q360 152 360 226Q360 297 344 332Q320 382 277 392Q275 392 270 392T260 393"],55:[656,11,500,42,457,"42 570V656H457V577L447 564Q345 439 295 289T244 0V-11H145V12Q160 330 356 550Q360 556 365 561T374 571L208 570H42"],56:[678,23,500,43,456,"55 500Q55 568 109 623T250 678Q327 678 385 627T444 501Q444 445 410 410T336 357L329 353H330Q378 335 417 293T456 184Q456 93 393 36T249 -22T106 35T43 184Q43 251 82 293T169 353Q171 354 166 356Q165 356 163 357Q113 378 84 416T55 500ZM358 496Q358 557 325 581T250 605Q206 605 174 580T141 496Q141 446 171 420T250 393Q298 393 328 419T358 496ZM245 316Q205 316 172 285T139 185V179Q139 79 222 57Q231 55 250 55H254Q295 55 327 84Q360 120 360 188Q360 254 326 285Q295 316 245 316"],57:[677,22,500,42,457,"44 476Q57 561 116 619T245 677H255Q308 677 349 647Q392 619 424 545T457 334Q457 178 382 78T205 -22Q168 -22 135 -10T86 14L72 25Q73 25 91 58L110 91Q127 78 136 72T163 60T203 54Q238 54 265 71T308 110T335 164T350 214T357 253V257L347 248Q284 187 200 187Q165 187 140 201T87 258Q42 332 42 430Q42 458 44 476ZM269 604Q265 605 254 605Q222 605 199 591T164 554T148 517T141 487Q140 478 140 430T141 373Q146 335 164 307T207 269Q223 263 247 263Q299 266 328 308T358 417Q358 435 356 456T346 511T318 570T269 604"],58:[444,0,278,90,188,"90 346V444H188V346H90ZM90 0V98H188V0H90"],59:[444,125,278,89,188,"90 346V444H188V346H90ZM90 0V98H188V1L139 -125H89L104 -64Q119 -3 120 -2Q120 0 105 0H90"],61:[370,-130,778,56,722,"56 350Q56 363 70 370H707Q722 362 722 350Q722 339 708 331L390 330H72Q56 335 56 350ZM56 150Q56 165 72 170H708Q722 160 722 150Q722 138 707 130H70Q56 137 56 150"],63:[704,0,472,55,416,"55 652Q63 658 77 666T132 689T214 704T265 703Q303 698 332 684T376 653T401 615T413 578T416 546Q416 475 360 426Q325 396 303 365T273 303T263 256T261 216V186H183V225Q184 281 194 322Q206 368 232 409T276 469T306 495Q323 517 323 550Q323 596 297 612T223 629Q187 629 157 618Q122 607 91 583L83 576L55 652ZM173 0V98H271V0H173"],64:[704,11,667,56,612,"422 576Q440 576 456 573T480 566L488 563Q488 565 484 571T472 588T452 607T424 622T387 629Q294 629 220 550T146 347Q146 233 210 155T365 66Q376 65 400 65Q465 68 517 86L532 91H612L598 76Q511 -11 388 -11Q250 -11 153 93T56 347Q56 454 107 538T231 663T378 704Q446 704 492 680T564 608T599 506T611 376Q611 320 607 299Q595 227 546 173T422 118Q343 118 288 185T232 347Q232 444 287 510T422 576ZM520 347Q520 429 487 465T421 501Q385 501 354 461T323 347Q323 270 355 232T422 193Q454 193 487 229T520 347"],65:[694,0,667,28,638,"183 181Q183 179 152 91T118 0H28L154 346L280 693Q281 694 333 694H385L511 349Q636 4 638 2Q638 0 584 0H530L464 183H184L183 181ZM324 606Q319 578 292 492T238 332T210 256Q210 254 324 254T438 255L429 281L419 308Q409 336 395 378T365 465T339 551T324 611V606"],66:[694,0,667,90,610,"425 363Q438 363 465 353T526 324T585 270T610 192Q610 132 561 78T426 7Q404 2 387 2T240 0H90V694H227Q373 693 396 689Q484 673 533 623T583 517Q583 494 574 473T551 437T520 409T487 388T456 374T433 366L425 363ZM490 516Q490 527 485 539T467 568T423 599T347 621Q340 622 262 623H188V399H261H286Q432 399 478 475Q490 496 490 516ZM514 190Q514 245 462 280T343 322Q336 323 259 323H188V71H274Q365 72 388 77Q445 88 479 121T514 190"],67:[706,12,639,58,587,"59 347Q59 440 100 521T218 654T392 705Q473 705 550 680Q577 670 577 667Q576 666 572 642T564 595T559 571Q515 601 479 613T392 626Q300 626 232 549T164 347Q164 231 229 150T397 68Q453 68 489 80T568 120L581 129L582 110Q584 91 585 71T587 46Q580 40 566 31T502 5T396 -11Q296 -11 218 41T99 174T59 347"],68:[694,0,722,88,666,"88 0V694H237H258H316Q383 694 425 686T511 648Q578 604 622 525T666 343Q666 190 564 86Q494 18 400 3Q387 1 237 0H88ZM565 341Q565 409 546 463T495 550T429 600T359 621Q348 623 267 623H189V71H267Q272 71 286 71T310 70Q461 70 527 184Q565 251 565 341"],69:[691,0,597,86,554,"86 0V691H541V611H366L190 612V397H513V321H190V85H372L554 86V0H86"],70:[691,0,569,86,526,"86 0V691H526V611H358L190 612V384H485V308H190V0H86"],71:[704,11,667,58,599,"59 346Q59 499 157 601T384 704Q436 704 466 700T541 679Q551 674 560 670T575 664T583 660T588 658T590 656Q590 652 582 605T573 557L564 564Q489 626 392 626Q301 626 233 549T164 347T233 145T392 68Q441 68 506 84V223H388V299H599V38L588 33Q494 -11 393 -11Q296 -11 219 40T100 172T59 346"],72:[694,0,708,86,621,"86 0V694H190V399H517V694H621V0H517V323H190V0H86"],73:[694,0,278,87,191,"87 0V694H191V0H87"],74:[694,22,472,43,388,"181 53Q200 53 215 56T241 66T259 79T272 95T280 109T285 122L287 129V694H388V415V229Q388 135 385 112T369 63Q364 51 355 39T328 12T280 -12T212 -22Q172 -22 130 -12T66 8T43 20L46 42Q50 65 54 88L58 110Q58 111 65 104Q107 53 181 53"],75:[694,0,694,88,651,"88 0V694H188V519L189 343L525 694H638L375 419L651 0H541L309 351L188 225V0H88"],76:[694,0,542,87,499,"87 0V694H191V79L297 80H451L499 81V0H87"],77:[694,0,875,92,782,"92 0V694H228L233 680Q236 675 284 547T382 275T436 106Q446 149 497 292T594 558L640 680L645 694H782V0H689V305L688 606Q688 577 500 78L479 23H392L364 96Q364 97 342 156T296 280T246 418T203 544T186 609V588Q185 568 185 517T185 427T185 305V0H92"],78:[694,0,708,88,619,"88 0V694H235L252 659Q261 639 364 428T526 84V694H619V0H472L455 35Q453 39 330 294T185 601L181 611V0H88"],79:[715,22,736,55,680,"55 345Q55 504 149 609T361 715Q386 715 406 713Q521 696 600 592T680 344Q680 193 590 86T368 -22Q239 -22 147 84T55 345ZM276 59T368 59T518 146T576 360Q576 473 525 545T401 634Q371 637 362 637Q284 637 222 562T159 360T217 147"],80:[694,0,639,88,583,"88 0V694H230Q347 693 370 692T410 686Q487 667 535 611T583 485Q583 409 527 348T379 276Q369 274 279 274H192V0H88ZM486 485Q486 523 471 551T432 593T391 612T357 621Q350 622 268 623H189V347H268Q350 348 357 349Q370 351 383 354T416 368T450 391T475 429T486 485"],81:[715,125,736,55,680,"55 345Q55 504 149 609T361 715Q386 715 406 713Q521 696 600 592T680 344Q680 284 665 231T629 143T587 85T551 48L536 35L648 -120L652 -125H531L452 -8L440 -12Q407 -22 369 -22Q239 -22 147 85T55 345ZM579 345Q579 473 517 555T369 637Q279 637 218 554T156 345Q156 223 215 141T368 58Q376 58 382 58T392 58T397 59T401 60T403 61H404Q404 63 360 128T315 194H421L453 150Q485 105 486 105Q490 108 496 113T517 138T545 182T567 247T579 334V345"],82:[694,0,646,88,617,"88 0V694H227H259H302Q365 694 399 689T474 663Q528 637 558 595T589 504Q589 482 584 462T569 426T547 396T522 372T495 353T470 338T449 328T434 322L429 320L440 300Q452 280 477 238T523 160L617 1L565 0Q513 0 512 1Q512 2 424 156L337 309H189V0H88ZM492 504Q492 600 367 620Q354 622 271 623H189V385H271Q363 386 388 392Q432 402 462 430T492 504"],83:[716,22,556,43,500,"55 514Q55 589 115 652T283 716Q315 716 345 711T396 699T432 685T457 672T467 667Q467 666 459 618T449 568Q383 634 282 634Q214 634 182 600T150 525Q150 507 155 492T172 465T194 446T222 432T247 423T272 416T289 412Q353 396 378 384Q432 358 466 307T500 194Q500 110 438 44T272 -22Q215 -22 159 -5T73 28T44 50Q45 51 49 75T57 122T62 146L65 143Q68 140 74 136T88 125T107 111T131 98T160 85T194 74T232 66T274 63H286Q327 63 366 96T406 182Q406 245 352 280Q329 296 265 310T173 339Q124 363 90 409T55 514"],84:[688,0,681,36,644,"36 608V688H644V608H518L392 609V0H288V609L162 608H36"],85:[694,22,688,87,600,"87 450V694H191V449Q192 203 193 194Q200 148 220 117T266 72T311 54T347 49Q404 49 446 84T501 178Q505 195 505 218T507 449V694H600V450Q600 414 600 356Q599 198 595 181Q594 178 594 177Q575 89 505 34T345 -22Q258 -22 184 34T89 196Q88 205 87 450"],86:[694,0,667,14,652,"14 692Q14 694 68 694H122L146 633Q325 165 339 90Q340 87 341 87Q341 124 530 619L558 694H605Q652 694 652 692Q650 690 523 354T390 10L387 0H279L276 10Q271 18 144 354T14 692"],87:[694,0,944,14,929,"115 694Q115 693 156 550T233 266T270 90L271 85Q272 86 272 92Q272 153 405 616L427 694H524L553 590Q672 174 681 95L682 84L684 95Q689 138 728 287T803 563T841 692Q841 694 885 694T929 693Q929 691 829 346L730 0H679L628 1L606 75Q478 524 470 600L469 611L467 600Q458 518 338 101L310 0H213L114 346Q14 691 14 693Q14 694 64 694H115"],88:[694,0,667,14,652,"14 0Q16 5 144 184T275 367L153 528Q121 571 88 615T42 674T28 694H150L228 584Q315 463 316 461L326 448L497 694H610L609 692Q606 689 492 528Q440 454 409 410T378 366Q378 365 515 182L652 0H531L326 292Q326 293 299 254T226 146L128 0H14"],89:[694,0,667,4,663,"4 693L64 694H125L174 621Q335 378 340 364L341 362Q361 398 395 450L558 694H663L383 277V0H282V278L143 485Q112 531 75 586T21 668L4 693"],90:[694,0,611,55,560,"69 617V694H555V643L373 362Q190 81 190 79H234Q244 79 272 79T344 80T419 81H560V0H55V53L237 334Q420 615 420 617Q413 618 387 618Q380 618 334 618T245 617H69"],91:[750,250,289,94,266,"94 -250V750H266V674H181V-174H266V-250H94"],93:[750,250,289,22,194,"22 674V750H194V-250H22V-174H107V674H22"],94:[694,-527,500,79,421,"146 612L212 694H287L353 612Q417 532 420 529Q421 528 418 527Q414 527 383 527H345L250 639Q244 633 199 580L154 527H116Q79 528 79 529Q82 532 146 612"],95:[-38,114,500,0,499,"0 -114V-38H499V-114H0"],97:[460,10,481,38,408,"236 387Q209 387 184 382T141 370T111 355T91 342T83 337L82 355Q80 373 79 393T77 417Q77 419 81 421Q86 423 91 426Q155 460 227 460H238Q319 460 368 400Q393 371 400 341T408 252Q408 240 408 207T407 152V0H317V39L306 32Q244 -10 159 -10H152Q109 -10 77 22Q38 61 38 126Q38 142 39 146Q55 199 130 223T295 252H314V277Q314 305 313 310Q308 342 287 364T236 387ZM303 186Q124 180 124 126Q124 105 144 86T208 66Q284 66 309 124Q314 137 314 166V186H303"],98:[694,11,517,75,482,"303 -11Q280 -11 259 -6T222 6T194 21T176 33T168 38V0H75V694H165V550L166 405Q247 455 336 455Q397 455 439 389T482 226Q482 115 428 52T303 -11ZM390 221Q390 283 361 331T265 379Q214 379 177 342L168 334V118Q203 66 258 66Q316 66 353 106T390 221"],99:[460,10,444,34,414,"34 223Q34 327 99 393T245 460Q290 460 301 459Q328 455 354 445T395 427T410 415L396 338L386 344Q377 349 362 357T335 370Q305 381 258 381H252Q182 381 146 315Q126 275 126 224Q126 158 159 113T255 68Q329 68 394 106L408 114L410 93Q411 72 412 52L414 32Q407 27 394 20T338 2T252 -10Q156 -10 95 58T34 223"],100:[694,10,517,33,441,"33 224Q33 321 81 388T197 455Q277 455 342 414L351 408V694H441V0H348V44L338 37Q278 -10 198 -10Q177 -10 168 -8Q99 11 62 90Q33 148 33 224ZM348 337Q307 378 263 378Q260 378 256 378T251 379Q239 379 223 374T182 355T142 305T126 220Q126 90 225 67Q231 66 250 66H255Q306 66 342 115L348 124V337"],101:[461,10,444,28,415,"28 226Q28 329 91 395T235 461Q258 461 279 456T325 436T368 397T399 332T415 238V219H113V215Q113 163 151 114T248 65Q273 65 298 70T341 82T373 96T396 108L403 113Q403 106 406 76T409 38Q409 34 408 33T393 24Q325 -10 252 -10Q155 -10 92 59T28 226ZM340 289L338 297Q335 305 333 310T327 326T317 343T304 358T286 372T263 381T233 385Q212 385 193 376T162 353T140 325T127 301T123 289H340"],102:[705,0,306,27,347,"262 705H267Q300 705 347 694V612L336 616Q303 628 274 628H266Q224 628 199 605Q187 590 184 579T181 541V507V444H287V371H184V0H94V371H27V444H94V492Q94 544 95 550Q102 617 151 661T262 705"],103:[456,206,500,28,485,"55 286Q55 357 105 406T224 455Q280 455 323 421L322 423L318 427Q318 428 339 434T396 448T465 455H471L478 416L485 377Q484 377 474 379T445 383T401 385Q397 385 391 385T381 384L362 383L357 387Q358 386 364 375T375 354T384 325T389 287Q389 217 340 168T221 119Q178 119 138 142Q133 145 131 143Q125 131 125 117Q125 82 155 72L227 71Q230 71 251 71T280 71T310 69T343 65T373 57T403 46T428 30T449 7Q471 -26 471 -62V-71Q471 -136 384 -178Q326 -206 250 -206Q159 -206 102 -172T30 -92Q28 -84 28 -68T31 -37T40 -12T52 7T64 21T75 31T82 38Q60 68 60 106Q60 145 80 180L86 189L80 199Q55 240 55 286ZM304 233T304 287T279 362T220 383Q189 383 165 361T140 287Q140 243 161 217T220 191Q253 191 278 212ZM250 -134Q298 -134 331 -122T375 -96T387 -69Q387 -21 306 -7Q288 -5 216 -5Q161 -5 153 -7Q146 -9 139 -13T122 -31T113 -66Q113 -75 113 -80T127 -97T166 -121Q203 -134 250 -134"],104:[694,0,517,73,443,"163 395Q223 455 307 455Q417 455 438 354Q442 331 443 164V0H350V157Q349 315 348 320Q334 378 259 378H253Q224 378 204 358Q180 334 173 301T165 209Q165 198 165 172T166 129V0H73V694H163V395"],105:[680,0,239,67,171,"67 576V680H171V576H67ZM74 0V444H164V0H74"],106:[680,205,267,-60,192,"88 576V680H192V576H88ZM31 -126Q40 -126 48 -125T62 -122T73 -117T82 -111T89 -105T94 -99T98 -92L102 -86V444H192V180Q191 -45 191 -70T184 -113Q171 -152 140 -178T63 -205Q34 -205 4 -197T-43 -181T-59 -171T-51 -133T-41 -96L-38 -99Q-34 -102 -28 -106T-13 -115T7 -123T31 -126"],107:[694,0,489,76,471,"76 0V694H163V257L340 444H449L286 272L292 263Q296 259 378 138T463 12L471 0H372L309 92Q294 114 277 139T250 179T237 198L228 211L160 139V0H76"],108:[694,0,239,74,164,"74 0V694H164V0H74"],109:[455,0,794,73,720,"160 392Q223 455 304 455Q359 455 386 436T430 383L437 391Q495 455 584 455Q694 455 715 354Q719 331 720 164V0H627V157Q626 315 625 320Q611 378 536 378H530Q501 378 481 358Q457 334 450 301T442 209Q442 198 442 172T443 129V0H350V157Q349 315 348 320Q334 378 259 378H253Q224 378 204 358Q180 334 173 301T165 209Q165 198 165 172T166 129V0H73V450H160V392"],110:[455,0,517,73,443,"160 392Q214 446 283 454Q285 454 292 454T303 455H306Q417 455 438 354Q442 331 443 164V0H350V157Q349 315 348 320Q334 378 259 378H253Q224 378 204 358Q180 334 173 301T165 209Q165 198 165 172T166 129V0H73V450H160V392"],111:[460,10,500,28,471,"28 222Q28 323 95 391T244 460Q275 460 281 459Q364 445 417 377T471 219Q471 124 408 57T250 -10Q158 -10 93 57T28 222ZM377 230Q377 277 364 310T328 358T287 379T248 385Q233 385 219 382T186 369T155 342T132 297T122 230Q122 146 159 108T250 69H253Q263 69 274 70T305 81T339 106T365 154T377 230"],112:[455,194,517,75,483,"166 404Q194 424 241 439T337 455H341Q410 455 451 370Q483 307 483 222Q483 128 433 59T306 -10Q282 -10 260 -5T222 7T194 21T176 33T168 38V-194H75V444H165V424L166 404ZM390 222Q390 287 354 331T266 376T177 340L168 332V118Q200 66 257 66Q313 66 351 112T390 222"],113:[455,194,517,33,441,"33 220Q33 325 87 389T206 454Q286 454 341 406L351 398V455H441V-194H348V41L338 35Q276 -8 198 -11Q171 -11 154 -5Q102 12 68 74T33 220ZM126 220Q126 160 161 113T251 65Q305 65 351 123V298L350 301Q349 304 347 308T342 319T336 331T327 343T315 355T300 365T283 373Q273 375 256 375Q208 375 167 332T126 220"],114:[455,0,342,74,327,"171 389Q237 455 320 455H327V373H317Q262 369 220 336T167 248Q165 239 164 119V0H74V450H159V377L171 389"],115:[460,10,383,28,360,"33 326Q33 376 60 408T117 450T175 460H190Q245 460 272 454T345 429Q345 428 338 388L331 349Q278 386 188 386H183Q119 386 119 336Q119 307 142 295T210 276T278 256Q360 213 360 130Q360 108 354 88T332 43T281 5T195 -10Q152 -10 111 1T49 22T28 35Q29 36 32 56T39 95T43 115T51 110T72 99T102 85T143 73T193 68Q274 68 274 123Q274 152 248 167Q234 178 187 186T115 207Q66 229 46 273Q33 298 33 326"],116:[571,10,361,18,333,"333 27Q333 24 314 16T257 -1T184 -10H172Q146 -10 128 14T105 58T99 91Q95 113 95 251V371H18V444H98V571H182V444H316V371H182V253Q183 128 189 104Q199 68 234 68Q277 72 314 98Q315 93 323 61T333 27"],117:[444,11,517,73,443,"353 39Q352 38 344 34T331 27T315 19T295 11T270 3T241 -3T207 -8T168 -10H162Q148 -10 137 -8T111 2T87 30T74 81Q73 89 73 268V444H166V268L167 92Q171 79 174 74T192 64T238 59Q317 59 344 116Q349 128 349 148T350 291V444H443V0H353V39"],118:[444,0,461,14,446,"178 0Q15 441 14 442Q14 444 60 444Q107 444 107 442Q108 441 136 364T196 194T232 67Q233 98 280 234T356 442Q356 444 401 444T446 442L282 0H178"],119:[444,0,683,14,668,"14 444H105L108 434Q192 160 200 74V65L201 75Q206 144 282 399L296 444H381L399 381Q480 112 480 69L481 70Q481 113 562 386L580 444H668L534 1L483 0H432L429 10Q343 294 338 367L337 377Q336 375 336 370Q336 340 313 250T269 88T245 11L242 0H195L148 1L14 444"],120:[444,0,461,0,460,"187 229L6 444H107L227 294L344 444H393L442 443Q439 437 299 268L267 229L460 0H359L294 88Q280 107 262 131T236 166L227 177L100 0H0Q1 1 47 58T140 171T187 229"],121:[444,204,461,14,446,"113 -204Q83 -204 63 -200L43 -197Q43 -196 40 -157T36 -117L48 -121Q79 -133 114 -133Q124 -133 130 -132T145 -121T163 -94Q169 -82 184 -42T200 1L188 29Q176 57 152 115T107 223T62 330T26 416L14 443Q14 444 61 444H109L122 411Q230 155 236 75L237 65V74Q245 161 348 424L356 444H401Q446 444 446 443L396 313Q345 183 293 49T236 -93Q191 -204 123 -204H113"],122:[444,0,435,28,402,"42 370V444H400V395L156 76L279 77H402V0H28V51L273 371L157 370H42"],126:[327,-193,500,83,416,"83 204Q86 254 113 290T186 327Q211 327 251 299T312 270Q337 270 340 315V327H416V316Q413 258 382 226T315 193Q289 193 249 221T187 250Q162 250 159 205V193H83V204"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js deleted file mode 100644 index 969bbe0..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_SansSerif,{768:[694,-527,0,-417,-200,"-415 692L-417 694H-324L-262 612Q-249 594 -233 572T-208 539L-200 528L-237 527H-275L-344 608Q-359 625 -378 647T-406 680T-415 692"],769:[694,-527,0,-301,-84,"-239 612L-177 694H-84L-86 692Q-86 691 -95 681T-123 648T-157 608L-226 527H-264L-301 528L-293 539Q-285 550 -269 572T-239 612"],770:[694,-527,0,-421,-79,"-354 612L-288 694H-213L-147 612Q-83 532 -80 529Q-79 528 -82 527Q-86 527 -117 527H-155L-250 639Q-256 633 -301 580L-346 527H-384Q-421 528 -421 529Q-418 532 -354 612"],771:[677,-543,0,-417,-84,"-417 554Q-414 604 -387 640T-314 677Q-289 677 -249 649T-188 620Q-163 620 -160 665V677H-84V666Q-87 608 -118 576T-185 543Q-211 543 -251 571T-313 600Q-338 600 -341 555V543H-417V554"],772:[631,-552,0,-431,-70,"-431 552V631H-70V552H-431"],774:[694,-508,0,-427,-74,"-250 508Q-331 508 -379 567T-427 689V694H-351V685Q-348 649 -321 620T-250 591Q-206 591 -180 619T-150 685V694H-74V689Q-74 624 -122 566T-250 508"],775:[680,-576,0,-302,-198,"-302 576V680H-198V576H-302"],776:[680,-582,0,-397,-104,"-397 582V680H-299V582H-397ZM-202 582V680H-104V582H-202"],778:[694,-526,0,-319,-99,"-319 611Q-319 649 -285 671T-211 694Q-164 694 -132 671T-99 611Q-99 572 -133 550T-209 527T-285 549T-319 611ZM-155 610Q-155 635 -171 643T-215 651Q-263 651 -263 610Q-263 570 -211 570H-209H-207Q-155 570 -155 610"],779:[694,-527,0,-399,-84,"-250 693Q-317 544 -323 527H-399L-343 694H-296Q-250 694 -250 693ZM-84 693Q-151 544 -157 527H-233L-177 694H-130Q-84 694 -84 693"],780:[654,-487,0,-422,-80,"-421 652Q-422 653 -419 654Q-415 654 -384 654H-346L-301 601Q-287 585 -275 571T-258 551T-250 542L-155 654H-117Q-80 653 -80 652Q-83 649 -147 569L-213 487H-288L-354 569Q-418 649 -421 652"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/CombDiacritMarks.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js deleted file mode 100644 index ec403a1..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_SansSerif={directory:"SansSerif/Regular",family:"MathJax_SansSerif",id:"MJSS",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js b/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js deleted file mode 100644 index 9389b5a..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_SansSerif,{305:[444,0,239,74,164,"74 0V444H164V0H74"],567:[444,205,267,-60,192,"-35 -95Q-4 -126 34 -126Q58 -126 76 -116T100 -88Q102 -82 102 181V444H192V180Q191 -45 191 -70T184 -113Q171 -152 140 -178T63 -205Q34 -205 4 -197T-43 -181T-59 -171L-47 -133L-35 -95"],915:[691,0,542,87,499,"87 0V691H499V611H345L191 612V0H87"],916:[694,0,833,42,790,"203 348L362 694H470L629 348Q789 2 790 1Q790 0 416 0T42 1Q43 2 203 348ZM630 98Q630 100 584 198T481 422T407 603L405 610L403 600Q388 544 191 122L180 99L405 98H630"],920:[716,21,778,56,722,"56 344Q56 430 86 502T164 619T271 690T388 716Q448 716 506 691T613 619T692 501T722 344Q722 188 624 84T389 -21Q252 -21 154 83T56 344ZM624 345Q624 423 597 488T513 596T380 639Q343 639 305 621T232 568T175 475T153 344Q153 216 222 136T388 56Q487 56 555 138T624 345ZM209 299V397H568V299H209"],923:[694,0,611,28,582,"294 606Q294 574 252 430T163 144T117 0H72Q28 0 28 1T141 348L254 694H357L469 348Q582 2 582 1T527 0L473 1L469 11Q469 13 427 141T343 411T296 599L294 610V606"],926:[688,0,667,42,624,"47 600V688H619V600H47ZM111 314V401H555V314H111ZM42 0V88H624V0H42"],928:[691,0,708,86,621,"86 0V691H621V0H517V615H190V0H86"],931:[694,0,722,55,666,"55 0Q56 3 171 167T288 332Q288 334 172 474L55 615V694H666V614H428L190 615L412 347L322 218Q236 97 228 84L447 85H666V0H55"],933:[716,0,778,55,722,"55 565Q59 625 105 670T219 716H222Q310 716 353 627Q376 583 386 524L389 510L393 532Q397 555 407 584T433 644T482 695T557 716Q621 716 669 673T722 565V555H629V563Q627 592 607 615T557 638Q530 638 511 629T479 598T459 553T447 488T442 411T441 319V202V0H337V202Q337 453 331 497Q313 634 226 638Q185 638 167 612T148 563V555H55V565"],934:[694,0,722,55,666,"666 347Q666 326 661 302T638 247T594 190T520 140T413 107H410V0H312V54Q312 107 311 107Q286 107 229 128T125 192Q55 260 55 347Q55 396 77 438T131 507T200 552T265 579T311 587Q312 587 312 641V694H410V587H413Q476 576 524 552T598 502T640 444T661 390T666 347ZM310 510Q305 510 291 507T252 492T208 464T172 416T157 347T171 279T204 233T247 205T286 190T310 184H312V347Q312 510 310 510ZM564 347Q564 385 549 416T514 463T470 491T433 505T414 509L410 510V184Q413 184 426 187T464 200T510 227T548 275T564 347"],936:[694,0,778,55,722,"340 187V694H438V187Q481 206 495 219Q518 239 533 267T553 332T560 386T562 435Q562 576 593 608Q608 621 637 621H670H722V545H719Q718 545 715 545T710 544Q679 536 666 487Q664 474 662 429T654 344T633 259T580 175T486 119Q450 109 438 108V0H340V108L326 110Q122 149 117 415Q116 460 111 487Q98 536 67 544Q65 544 62 544T58 545H55V621H107Q160 621 163 620Q191 613 202 573Q213 536 213 473T220 351T256 249Q262 239 270 230T285 216T301 205T316 197T329 192T340 187"],937:[716,0,722,44,677,"55 462Q55 561 141 638T359 716Q492 716 579 640T666 462Q666 407 642 347T579 222T529 126Q515 91 515 86Q517 85 528 85Q530 85 552 85T596 86H677V0H425V14Q429 79 465 168L492 228Q494 232 504 254T516 283T527 310T539 340T548 368T556 399T560 428T562 460Q562 531 510 585T361 639Q263 639 211 585T159 460Q159 422 170 378T192 309T229 228L256 168Q292 79 296 14V0H44V86H125Q146 86 168 86T193 85L206 86Q206 103 183 148T131 241T79 352T55 462"],8211:[312,-236,500,0,499,"0 236V312H499V236H0"],8212:[312,-236,1000,0,999,"0 236V312H999V236H0"],8216:[694,-471,278,90,189,"90 568L140 694H189L174 633Q159 572 158 571Q158 569 173 569H188V471H90V568"],8217:[694,-471,278,89,188,"90 596V694H188V597L139 471H89L104 532Q119 593 120 594Q120 596 105 596H90"],8220:[694,-471,500,174,467,"174 568L224 694H273L258 633Q243 572 242 571Q242 569 257 569H272V471H174V568ZM368 568L418 694H467L452 633Q437 572 436 571Q436 569 451 569H466V471H368V568"],8221:[694,-471,500,32,325,"33 596V694H131V597L82 471H32L47 532Q62 593 63 594Q63 596 48 596H33ZM227 596V694H325V597L276 471H226L241 532Q256 593 257 594Q257 596 242 596H227"],8710:[694,0,833,42,790,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Other.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js deleted file mode 100644 index 13aaf8e..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Script,{32:[0,0,250,0,0,""],65:[718,8,803,35,1016,"76 60Q83 29 135 29Q190 29 264 81Q280 93 280 95T277 99T265 106T248 118Q189 166 189 237Q189 307 245 388Q267 421 299 436Q336 455 386 455Q488 455 550 403L559 395L571 405Q727 544 944 679L957 687L966 701Q968 704 970 707T973 712T975 714T978 716T982 717T989 717H995Q1004 717 1007 717T1013 714T1016 708Q1016 705 829 403L636 92L630 83Q659 93 685 110T728 143L745 158Q758 158 752 138L748 127L740 119Q676 58 605 42L593 22Q590 17 587 12T583 6T579 2T573 0T564 0H530H484Q480 3 480 8Q480 15 489 26T498 39T497 40Q477 40 423 49T327 74L316 78L302 68Q200 -8 121 -8Q85 -8 60 7T35 53T60 113T123 144Q144 144 153 132T162 106Q162 89 143 75T99 61Q90 61 76 65V60ZM904 614L905 615Q901 615 840 573T700 469T581 369L587 359Q600 340 608 315T618 273T622 238T624 216L764 414Q904 612 904 614ZM525 363Q493 405 379 418H375Q342 418 309 378Q251 300 251 234Q251 174 306 137Q318 128 322 131Q323 132 329 139Q351 161 362 180Q430 273 509 348L525 363ZM579 205Q579 245 571 278T556 323T546 337L521 311Q461 248 422 196T362 121L353 111Q427 85 499 79Q517 77 520 77L525 76L549 111Q551 114 556 121T563 131T568 138T573 147T575 157T577 169T578 185T579 205"],66:[708,28,908,31,928,"256 262Q161 262 161 351Q161 408 203 471T289 570Q380 645 475 676T617 707L627 708Q637 708 644 708Q759 708 831 675L844 669L857 677Q892 700 896 700Q902 700 907 685Q907 683 907 681T908 678T909 676T909 673Q909 671 909 670T906 667T903 664T897 660T889 655L878 647L889 636Q928 598 928 548Q928 529 923 510T907 474T886 442T861 412T837 388T815 368T800 355Q847 323 847 270V263Q847 205 806 145Q766 82 695 37T564 -8Q527 -8 506 10T484 58Q484 85 501 117T543 172Q607 226 685 228Q695 228 698 226Q703 220 692 206Q684 194 682 193T665 191Q625 189 595 172T550 133T529 93T522 66Q522 29 576 29Q642 29 705 109Q785 211 785 270Q785 287 779 300T769 316T755 327L740 319Q682 290 634 290Q611 290 592 294H588L565 261Q559 252 544 231T522 201T504 178T481 151T455 123Q394 63 314 18T159 -28Q103 -28 67 -6T31 54Q31 88 57 123T123 158Q144 158 154 146T164 119Q164 102 142 89T100 75Q94 75 87 77T76 80L72 81Q69 78 69 65Q69 35 102 22T175 9Q184 9 198 11Q248 23 300 70T403 187T508 331T636 489T789 629L801 639Q796 642 786 647T732 661T633 670Q592 670 558 665Q481 651 409 613T286 520Q274 507 258 485T222 424T202 354Q202 299 269 299Q282 299 295 301T318 307T339 317T358 329T376 345T391 362T406 380T420 398T433 417T445 435Q496 512 496 547Q496 559 497 560T516 569Q526 574 530 574Q538 574 538 540Q538 414 427 325Q342 262 256 262ZM689 382Q708 382 753 375L765 387Q860 482 860 555Q860 594 839 610L822 592Q794 563 752 511T680 420T651 380Q655 381 660 381Q664 382 689 382ZM697 344Q692 345 681 345H675Q671 345 665 345T655 344T650 344L648 342Q646 339 645 338Q643 333 639 327H653Q670 329 676 330Q706 342 706 343Q702 344 697 344"],67:[728,26,666,26,819,"367 89Q367 84 353 77T334 70Q325 70 312 83T298 120Q298 169 364 233T496 298Q538 298 563 275T588 220V213Q588 132 501 53T306 -26Q251 -26 211 6T170 114Q171 148 181 184T205 248T232 298T255 334T265 349T246 350Q127 350 77 390T26 480Q26 533 71 581T178 656T295 683Q312 683 312 676Q312 674 311 672L302 660Q294 648 292 647L286 646Q280 646 276 646Q197 641 145 583T93 476Q93 387 265 387Q271 387 277 387T287 388T292 388T313 414T373 483T451 562Q618 712 732 727Q733 727 740 727T753 728Q790 727 804 708T819 665Q819 643 810 617T773 553T699 481T572 414T385 361Q381 361 367 341Q247 172 247 86Q247 11 325 11Q404 11 465 95Q518 165 528 208Q529 212 529 220Q529 237 518 249T480 261Q431 261 387 209T343 126Q343 111 355 101T367 89ZM777 658Q777 691 738 691Q704 691 658 662T570 590T491 504T432 432T410 400H411Q416 400 440 405T505 423T589 455T675 506T743 576Q777 627 777 658"],68:[708,31,774,68,855,"251 272Q199 272 168 298T136 374Q136 432 175 496T267 603Q321 645 395 676T552 708Q610 708 655 694T724 659T763 618T784 584L790 569Q792 569 800 572T819 576T840 578Q855 578 855 571Q855 566 846 554T829 541Q824 541 817 539T804 533T799 529Q802 517 802 483Q802 376 742 256T585 53T392 -31Q353 -31 300 -7L289 -2L277 -6Q242 -17 192 -17Q141 -17 113 -13T77 -3T68 14Q68 20 73 28T93 45T131 58Q152 62 197 62Q241 62 272 48L282 44Q308 65 334 93Q380 145 467 266T622 454Q644 476 664 493T694 517T720 534T740 547Q699 671 540 671Q461 671 385 625T276 534Q265 520 251 499T219 438T202 368Q202 309 267 309Q325 309 396 383T491 545Q492 548 493 552Q494 558 496 559T511 564Q513 565 514 565Q523 568 527 568Q534 568 534 560Q534 554 529 537Q507 442 420 357T251 272ZM332 20Q332 19 341 15T368 6T400 2Q425 2 457 13T531 49T614 125T690 248Q750 376 750 476V490L738 479Q698 436 646 366T554 239T455 121T332 20ZM226 20Q226 25 186 25Q181 25 174 24H166Q161 24 158 23H152Q170 21 197 21Q205 21 213 21T223 20H226"],69:[707,8,562,46,718,"280 398L279 400Q278 402 277 405T275 413T272 426T271 443Q271 494 302 544T379 629T472 685T553 707H565H573Q630 707 664 689Q718 661 718 604Q718 548 662 492T553 436Q525 436 508 451T490 492Q490 534 531 579T619 630Q632 630 632 623Q632 619 624 606Q614 593 602 592T578 580Q566 568 549 541T532 497Q532 474 565 474Q577 474 587 476Q600 481 611 489Q630 503 651 535T672 596Q672 660 553 660H548Q494 660 450 616Q421 587 384 531T343 439Q341 420 344 415H345Q346 415 352 415T369 417T391 418Q421 418 440 412T466 398T473 382Q473 367 452 353T398 339Q370 339 348 345T315 359L304 366Q297 365 284 360T234 321T163 234Q120 160 120 117Q120 83 149 57T252 30Q311 30 357 60Q386 79 414 114T452 179Q454 186 454 200Q454 230 415 242Q401 246 373 246Q353 246 347 244Q328 236 313 219T288 184T274 149T265 121T261 109Q260 107 247 102T230 97Q223 97 223 105Q223 148 271 216T386 284Q446 284 483 260T520 195Q520 121 427 57T239 -8Q192 -8 152 2T79 46T46 133Q46 212 107 285T269 394L280 398ZM427 376Q427 377 402 380Q386 380 386 379L425 375L427 376"],70:[735,37,895,39,990,"258 428Q258 489 322 562T482 685T661 735Q726 735 824 693T977 651Q990 651 990 644Q990 639 971 612T948 581Q947 580 938 580Q878 580 784 621T617 663Q544 663 480 635T379 568T320 492T299 431Q299 387 362 387Q404 387 438 402T493 438T527 486T546 531T551 563Q551 569 550 575T549 584T549 590Q551 593 563 602T579 611Q584 611 592 605T608 584T616 548Q616 513 595 477T554 423Q518 392 464 372T349 351Q258 351 258 428ZM324 187T305 187T286 196Q286 202 301 217Q327 242 383 262T484 290L527 297L567 356Q624 441 643 467T688 521Q715 550 752 581T795 613T804 603T808 587T778 547T702 444T626 300H637Q663 302 685 306L697 308L703 317Q745 376 792 400Q806 406 818 406Q849 406 849 375Q847 355 831 338T797 312T763 296L747 290Q744 289 735 266T724 241Q722 240 702 232T664 217T645 210Q638 210 638 218Q638 224 653 246T669 270Q669 271 668 271Q663 270 624 264L607 263Q570 199 529 152Q513 133 484 106T409 45T305 -13T193 -36Q109 -36 74 -10T39 50Q39 86 64 121T128 158Q171 158 171 121Q171 97 141 83Q125 75 107 75Q93 75 80 83Q76 71 76 62Q76 29 117 15T207 0Q324 0 494 248L501 258H495Q368 239 330 195Q324 187 305 187ZM775 335Q806 358 806 368Q805 369 804 369Q800 369 791 360Q774 336 775 335"],71:[717,37,610,12,739,"206 318L249 320Q249 327 259 352T282 399Q312 447 366 510T465 610Q588 717 661 717Q695 717 716 701T738 653T704 577Q663 522 610 474T512 397T424 346T359 315T333 306Q331 304 327 290T323 267Q323 229 368 229Q402 229 439 254T505 312T571 382T638 435Q642 437 644 437Q658 437 658 409Q655 403 647 399T624 379T595 326Q583 296 564 267T523 179Q504 126 483 91T423 27Q335 -37 231 -37Q191 -37 157 -30T95 -2T67 53Q67 89 94 123T159 158Q180 158 190 146T200 119Q200 102 178 89T136 75Q128 75 120 78T110 81Q105 81 105 62Q105 38 129 24T180 5T238 1H244Q282 1 319 32Q349 55 371 85T436 190L465 239Q413 192 354 192Q300 192 274 217T245 276Q245 284 242 284Q220 280 187 280Q106 280 59 315T12 409Q12 457 43 508T118 597T210 659T295 683Q308 683 308 675Q308 670 299 658T282 646Q266 646 240 633Q182 606 118 511Q76 448 76 400Q76 368 105 343T206 318ZM677 660Q677 680 646 680Q616 680 565 629Q537 601 514 571Q493 544 455 492T389 398T360 355Q366 357 386 367Q463 406 534 473T641 591T677 660"],72:[718,36,969,29,1241,"331 505Q331 519 382 574T472 629H480Q512 629 529 614T547 576Q547 555 534 532T520 504Q520 493 549 493Q590 493 623 506T668 533L681 546Q731 600 772 641T832 700T852 717Q857 717 860 711T865 697L866 690Q866 688 813 617T708 475T656 403Q682 403 714 404H771L780 416Q1004 707 1167 707Q1209 707 1225 689T1241 646Q1241 604 1209 547T1118 447Q1081 422 1034 405T952 382T888 374T857 370H852L826 334Q733 204 708 144Q691 104 691 76Q691 29 748 29Q768 31 791 48T831 83T862 122T881 146Q883 148 900 148H917Q921 143 921 140T914 127Q810 -8 723 -8Q611 -4 611 100Q611 142 631 191T676 275T721 337T742 367Q716 367 685 366H628L620 355Q618 352 558 268Q486 168 461 141Q405 79 339 34T215 -28Q188 -36 153 -36Q86 -36 58 -11T29 46Q29 82 55 120T123 158Q144 158 154 146T164 119Q164 102 143 89T100 75Q92 75 86 76T77 80T72 82Q67 82 67 60Q67 28 99 14T170 0Q214 0 272 47T419 224L505 340L518 357Q513 357 504 356T467 347T415 330T360 300T308 253Q296 238 295 237H278H274Q256 237 256 243Q256 248 263 256Q291 294 330 321T407 362T476 382T530 393T552 398Q556 402 573 423T600 454Q602 457 604 460T608 465L610 467Q565 455 532 455Q465 455 449 483Q447 487 447 498Q447 513 463 538T479 579Q479 593 463 593Q436 593 385 519Q374 504 371 502T360 499H353H349Q331 499 331 505ZM1195 634Q1195 643 1195 648T1185 662T1157 671Q1130 671 1092 644T1019 579T952 502T901 436L882 409L891 410Q900 411 913 412T934 415Q1081 439 1144 520Q1195 590 1195 634"],73:[717,17,809,59,946,"487 225Q398 255 398 342Q398 410 455 492Q491 545 552 582T669 636T800 673T918 712Q930 717 933 717Q939 717 942 706T946 689Q946 686 915 664T830 591T729 480Q691 429 657 351T615 260Q628 260 663 279T733 339T769 426Q769 442 767 459T764 479Q764 484 766 486Q769 488 781 493T797 498Q802 498 803 494T808 472Q813 442 813 425Q813 369 761 315Q692 246 605 224L592 220L584 209Q547 155 487 106T358 25Q270 -17 191 -17Q143 -17 101 1T59 59Q59 96 85 127T148 158Q169 158 179 146T189 119Q189 102 167 89T125 75Q116 75 109 77T101 81T97 80Q96 77 96 72Q96 50 123 36T204 21H216Q249 21 302 49T411 134Q439 161 459 187Q487 220 487 225ZM460 334Q460 308 472 290T498 268L510 263Q515 263 545 313T626 438T723 561Q751 589 775 609T808 636T817 644H816Q813 644 732 618Q681 601 645 584T585 548T549 514T518 476Q460 390 460 334"],74:[717,314,1052,92,1133,"829 148Q845 148 845 143T841 130T823 109T788 83T730 54T644 22Q637 20 634 19T627 16T622 13T618 10T612 3T604 -6Q510 -112 396 -203T201 -312Q190 -314 171 -314H166Q156 -314 147 -312T123 -304T101 -283T92 -245Q92 -203 117 -160T175 -93Q214 -65 280 -41T390 -6T509 22L532 27L547 47Q673 219 673 225L665 228Q657 231 648 235T627 249T606 270T591 300T584 341Q584 389 614 447T686 544Q735 588 799 615T959 667T1108 713Q1118 717 1119 717Q1125 717 1129 705T1133 689Q1133 686 1115 673Q1051 627 1001 579T918 481T867 403T828 328T805 277Q802 271 801 267T798 261T798 259Q849 270 900 317Q956 371 956 421Q956 438 953 457T950 480Q950 481 950 482L951 484Q953 487 966 492T985 498Q989 498 994 473Q1000 441 1000 423Q1000 362 934 302T790 223L775 220L767 207Q757 191 731 158T685 98T662 63Q662 61 690 70T755 99T811 142L816 148H829ZM646 332Q646 308 659 291T685 268L698 263L735 320Q828 465 865 511Q923 582 1003 643L1005 645Q1004 645 924 620Q775 572 716 492Q646 401 646 332ZM184 -278Q233 -278 311 -212T444 -80L498 -15H496Q468 -20 424 -30T293 -70T174 -133Q167 -140 158 -153T138 -190T127 -232Q127 -278 184 -278"],75:[717,37,914,29,1204,"521 506Q521 493 549 493Q608 493 660 527Q667 531 690 555L736 604Q750 619 777 646T825 694T848 716T852 717Q857 717 860 711T865 697L866 690Q866 687 812 615Q654 404 654 401Q655 401 656 401T659 402T665 403T680 404Q718 404 734 374Q735 370 743 376Q745 377 752 382Q806 416 852 466T933 563T982 623Q1028 666 1075 686T1155 706Q1165 706 1173 705T1186 703T1194 699T1199 695T1201 692T1202 688V687L1204 677Q1204 667 1191 670Q1189 670 1183 670T1174 671Q1137 671 1086 643T1001 564Q970 517 899 449T749 339L739 333L736 322Q730 295 703 253T652 165T628 77Q628 21 681 21Q692 21 698 23Q751 46 817 134L827 148H844Q861 148 864 146Q869 140 859 127Q818 75 761 29T665 -17Q649 -17 633 -12T598 4T569 40T558 100Q558 128 563 152T585 205T609 245T643 294Q647 300 645 300Q633 297 615 297Q607 297 600 298T589 300T584 301Q581 301 569 284T536 236T488 171T418 97T331 28Q233 -37 155 -37Q104 -37 68 -17T29 44Q29 82 55 120T123 158Q144 158 154 146T164 119Q164 102 143 89T100 75Q92 75 86 76T77 80T72 82Q68 82 68 59Q68 37 85 23T123 5T167 0Q203 0 238 21T311 85T382 174T468 288T563 410Q576 426 588 440T607 462T615 472L605 468Q568 456 533 456H527Q490 456 463 483Q451 496 451 508T468 545T486 581Q486 593 465 593Q448 593 425 568T384 518T364 493Q364 492 347 492Q326 492 326 499T351 537T414 599T477 630Q509 630 528 615T547 576Q547 556 534 533T521 506ZM675 357Q675 368 665 368Q656 368 644 363Q631 355 616 333H628Q640 334 672 341Q675 354 675 357"],76:[717,17,874,14,1035,"572 704Q607 704 607 693Q607 681 590 664H588Q586 664 584 664T578 663Q504 658 434 592T363 457Q363 426 386 401Q417 371 481 361Q490 360 527 360H562Q565 363 595 404T666 494T755 596T854 682T945 717Q986 717 1010 696T1035 637Q1035 593 996 531T873 414Q809 378 753 360T674 338T651 333Q650 333 633 308T588 245T544 185Q498 126 426 78L413 68H414Q498 47 575 47Q626 47 676 74T755 139L762 148H779H783Q802 148 802 142Q802 137 795 129Q760 81 691 33T544 -16Q470 -16 366 20L341 29L331 24Q239 -17 155 -17H141Q90 -17 61 -12T23 1T14 22Q14 44 39 65T103 95Q126 101 180 101Q224 101 258 98T309 90T330 86Q332 86 353 103T389 135Q401 146 412 158T431 179T450 203T466 225T485 252T505 280L535 322H509Q391 322 340 362T289 452Q289 495 321 547T396 630Q438 665 486 684T572 704ZM978 635Q978 644 977 650T973 661T968 668T961 673T954 676T946 678T938 680Q929 680 925 677Q893 659 795 531T682 377Q683 377 711 385T755 401T801 421T856 453T906 495Q927 516 952 557T978 635ZM274 50Q274 51 258 54T216 61T166 65Q160 65 151 65T140 64Q115 58 102 48T88 31Q88 20 159 20Q191 20 219 27T261 42L274 50"],77:[721,51,1080,30,1216,"112 -7Q86 -7 58 6T30 48T54 103T113 130Q129 130 141 121T153 94Q153 71 132 59T90 47H80Q95 30 133 30Q180 30 228 63T311 137T402 249T500 361Q566 425 703 529T910 693Q942 721 945 721T958 716T970 709Q974 704 964 691Q961 688 905 622T847 554L595 181Q553 121 527 77T496 19L492 5Q497 5 531 46Q579 98 685 224T850 409L972 524Q994 543 1004 556Q1012 567 1097 643T1186 720Q1194 720 1206 715T1215 703Q1215 701 1191 671T1133 599T1080 530Q1036 461 983 357T862 152Q802 64 799 17Q799 7 800 5T811 2Q836 2 882 37T969 126Q972 130 974 134T978 138T983 139T996 140H1012Q1018 134 1018 132Q1018 122 981 83T889 4T795 -35Q761 -35 745 -12T728 48Q728 122 781 190Q833 269 890 370L927 434L914 422Q848 360 752 245Q643 117 582 51T498 -33T461 -50Q424 -48 424 -4Q424 84 481 172L714 495Q591 406 523 333Q507 316 430 226T313 95Q263 48 221 24T162 -4T120 -7H112"],78:[726,36,902,29,1208,"764 513Q764 482 772 423T780 330Q780 304 778 285T775 256T773 245Q778 252 826 328T932 484T1042 617Q1077 652 1114 678T1173 715T1200 726Q1208 726 1208 717Q1208 711 1206 695L1203 679L1199 675Q1197 675 1187 670T1161 657T1133 639Q1050 583 959 456Q906 381 858 307T779 179T725 83T691 18T679 -6Q677 -8 660 -8H656Q639 -8 639 -1Q639 4 646 17Q685 93 685 173V196Q685 233 681 288T676 380Q676 438 687 487L664 454Q505 230 454 170Q366 64 290 14T163 -36H152Q87 -36 58 -11T29 46Q29 82 55 120T123 158Q144 158 154 146T164 119Q164 102 143 89T100 75Q92 75 86 76T77 80T72 82Q67 82 67 59Q67 37 89 19T167 1Q187 1 197 3Q221 9 246 22T292 52T336 91T375 132T411 174T440 212T463 245T478 266Q779 695 784 698Q786 700 802 700H818Q824 694 824 692T809 668T779 604T764 513"],79:[707,8,738,96,805,"259 -8Q230 -7 205 0T153 24T112 74T96 153Q96 254 174 379T374 599T607 707H621Q732 707 778 661Q805 634 805 598Q805 558 775 517T696 452L684 447V441Q684 378 626 273T484 97Q379 7 288 -7Q279 -8 259 -8ZM760 594Q760 670 608 670Q562 670 493 622T347 472Q174 240 174 131Q174 76 205 53T279 29Q294 29 306 32Q405 60 507 205Q592 325 616 401Q625 426 625 435Q625 436 621 436T603 440T569 449Q524 466 515 475Q513 477 513 481T525 496T541 508L548 504Q555 501 565 497T587 488T609 480T625 476Q627 476 626 481Q626 486 623 494T613 513T589 533T548 541Q495 541 413 454T286 281Q265 241 254 201T240 141T235 120Q234 118 217 111T197 104Q195 104 192 107T189 112Q190 125 193 147T220 231T280 348Q335 428 407 493T539 576Q548 578 563 578Q594 578 617 568T653 546T672 518T681 494T683 482Q683 481 684 481Q690 481 707 495T742 538T760 594"],80:[716,37,1013,90,1031,"571 345Q571 384 612 418T687 452Q698 452 698 445Q698 436 679 417Q677 415 670 415Q650 412 633 389T615 350Q615 340 621 331T634 319T643 315L663 342Q751 462 817 536Q873 595 896 614L907 625Q843 680 701 680Q594 680 499 632T344 516Q317 486 296 449T267 384Q262 366 262 354Q262 332 276 316T326 299H327Q374 299 426 338Q481 376 537 456T597 598Q597 616 599 617Q601 619 614 624T630 630Q639 630 639 604V587V581Q639 519 597 456Q544 377 462 320T318 262Q278 262 250 282T222 350Q222 418 285 504Q360 597 480 656T702 716Q773 716 825 707T898 688T951 660Q962 670 985 685T1012 700Q1018 700 1022 690T1026 673Q1026 670 1019 664Q988 633 988 631Q988 630 999 618T1020 580T1031 522Q1031 471 1003 419T928 330Q854 275 765 264Q757 262 733 262H714L701 245Q615 121 473 42T218 -37Q159 -37 125 -15T90 46Q90 82 116 120T185 158Q203 158 213 147T224 121Q224 110 219 102Q198 75 159 75Q154 75 149 76T143 77T140 77Q137 72 137 53Q138 37 149 26T177 9T205 2T228 0Q313 0 419 74T602 257L620 281L614 285Q607 289 601 294T587 306T576 323T571 345ZM950 529Q950 576 943 576Q940 576 840 439T741 299H751Q804 300 845 334T924 438Q949 490 950 529"],81:[717,17,883,54,885,"330 387Q330 331 402 331Q463 331 514 371T589 459T613 542Q613 559 608 570T598 588T593 596Q593 601 617 610Q632 617 636 616Q675 585 675 527Q675 464 629 409T516 324T387 294Q271 294 271 394V402Q271 438 292 478Q344 582 457 649T672 717Q765 717 825 675T885 548Q885 433 771 298T498 76Q493 73 491 72T486 69T484 67T485 66Q539 41 607 41Q655 41 703 71T780 139L787 148H804Q806 148 809 148Q826 149 826 140Q826 128 786 91T687 19T589 -16H576Q503 -16 414 20L396 27Q279 -17 192 -17Q130 -17 92 2T54 53Q54 92 107 123T222 155Q303 155 401 106L431 91L441 97Q476 118 527 157Q622 236 711 361T801 573Q801 591 795 607T775 641T732 668T660 679Q592 679 528 644T422 560T355 464T330 387ZM201 20Q232 20 267 27T322 40T342 49Q342 52 315 60T243 77T160 86Q150 88 144 88Q130 88 122 79T112 62L111 53Q111 20 201 20"],82:[717,17,850,-2,887,"224 266Q185 266 156 286T127 354Q127 419 176 487T282 594Q346 642 433 679T615 717Q732 717 802 680L815 673Q824 680 840 690T860 700Q864 700 867 693T872 680L873 673Q873 668 858 659L845 651L853 642Q887 605 887 561Q887 500 840 439Q790 379 681 336Q693 312 693 292Q692 276 689 263T672 229T653 198T620 152L575 87Q557 57 557 33Q557 24 560 17T566 8L569 5Q546 5 508 25T470 76Q470 83 473 92T545 198T616 310Q616 317 615 318T612 319Q603 319 575 315H560L545 291Q492 201 429 135T277 23Q202 -17 142 -17H130Q50 -17 16 17Q-2 35 -2 57Q-2 95 24 126T88 158Q106 158 116 147T127 121Q127 110 122 102Q116 93 99 84T63 75Q58 75 53 76T47 77T45 75T44 67Q45 52 57 42T88 27T120 21T144 19Q174 19 208 36T267 76T324 134T369 189T406 239Q462 319 504 374T616 503T755 631L770 644Q767 647 753 654T697 670T602 680Q493 680 399 631T247 516Q218 485 193 440T168 359Q168 328 188 316T234 303Q255 303 273 315T304 340T343 389T390 448Q428 490 441 510T456 548Q456 557 458 559Q459 560 476 567T496 575Q505 575 505 558Q505 511 434 412Q429 406 427 403Q397 360 378 343Q342 308 300 287T224 266ZM819 564Q819 595 800 619L784 606Q729 557 692 512T605 387L591 365L610 364Q622 364 631 363T641 361Q643 361 651 363Q725 388 772 449T819 564ZM794 141Q794 123 725 63T612 3Q609 3 612 5Q612 5 615 7Q639 19 678 57T742 131L755 148H772H780Q794 148 794 141ZM588 -3Q590 0 593 0H594L593 -1Q592 -1 590 -2L588 -3"],83:[708,36,868,29,1016,"346 463Q346 419 406 386T576 352H588L613 384L681 476Q767 594 842 651T973 708Q1016 708 1016 661Q1016 621 987 562T894 449Q802 375 696 338L682 334L665 312Q638 279 605 233T547 158T482 97Q418 46 332 5T158 -36Q87 -36 58 -11T29 48Q29 82 55 120T123 158Q144 158 154 146T164 119Q164 102 143 89T100 75Q92 75 86 76T77 80T72 82Q67 82 67 59Q67 28 98 14T166 0Q232 0 320 55T491 226Q530 279 551 305L558 314Q558 315 543 315Q417 321 353 365T289 460Q289 566 488 632Q578 662 660 665H679Q685 660 685 657T676 642Q670 633 666 629L664 628Q663 628 661 628T655 628Q606 628 546 615T426 568T350 486Q346 475 346 463ZM976 653Q976 671 959 671Q938 671 919 661T883 629T858 593T835 554Q832 548 830 545Q802 495 775 455T734 400T721 382L736 388Q876 449 946 568Q948 572 949 573Q976 622 976 653"],84:[735,37,747,92,996,"354 350Q264 350 264 426Q264 442 265 448Q279 514 347 582T503 692T662 735Q719 735 774 714T882 672T983 651Q996 651 996 644Q996 639 977 612T954 581Q953 580 938 580Q909 582 884 587L869 591L870 587Q870 583 849 557T796 491T748 422Q729 391 692 313T620 188Q555 105 454 34T253 -37Q214 -37 181 -30T120 -2T92 53Q92 89 119 123T184 158Q205 158 215 146T225 119Q225 102 203 89T161 75Q153 75 145 78T135 81Q130 81 130 62Q130 39 153 24T204 5T267 0Q311 0 358 29T454 117T539 226T629 358T710 476Q726 496 744 516T778 551T807 577T828 595L836 601L785 623Q743 642 713 651T668 661T626 663Q564 663 509 644T418 596T356 535T317 475T305 431Q305 416 312 408Q323 388 369 388Q429 388 465 411T530 480Q557 526 557 565Q557 573 556 579T555 587T555 590Q555 591 568 600T584 611Q588 612 600 603Q622 581 622 549Q622 516 600 475T536 405Q454 350 354 350"],85:[717,17,800,55,960,"55 377Q55 443 122 523T290 660T478 717Q533 717 575 689T618 594Q618 565 611 538T585 477T552 422T506 355T458 288L357 146Q307 68 307 31Q307 20 318 20Q326 20 331 21Q367 27 411 57T490 128L767 500L861 617H908H939Q953 617 956 616T960 609Q960 605 928 566T816 423T648 198Q587 113 571 86Q540 34 540 21Q540 20 545 20Q580 25 623 55T696 124Q702 132 704 133T722 134H739Q744 130 744 127T735 113Q713 80 655 38T548 -14Q527 -17 524 -17Q475 -17 473 47V63L462 55Q364 -17 302 -17Q235 -17 235 69Q235 88 239 105T248 135T268 171T292 205T328 251T369 304Q376 313 395 338T423 374T450 408T476 445T499 479T519 514T534 546T545 579T548 608Q548 647 522 663T460 680Q355 680 243 591T99 406Q97 399 97 383V377Q97 339 153 339Q169 339 175 340Q215 350 241 373T298 444Q333 496 349 535T367 588T374 603Q402 616 408 616Q416 616 416 608Q416 563 393 492T320 378Q233 302 140 302H132Q75 302 57 353Q55 361 55 377"],86:[717,17,622,56,850,"540 717Q542 717 545 717Q562 717 562 710Q562 708 557 702T541 678T517 632T485 544T448 407Q447 405 443 388T438 366T433 345T427 321T420 299T411 274T400 250T387 223T372 197Q363 181 364 181L388 203Q476 284 527 354T620 490T718 612Q754 647 790 673T835 700Q839 700 842 691T848 672L850 662Q850 657 842 653Q803 630 768 600T699 527T653 467T610 405Q554 322 518 282T368 138Q307 84 273 51T231 9T218 -5L207 -17H175Q169 -11 169 -9Q169 -4 183 10Q227 56 258 120T302 234T330 350T356 445Q357 450 360 458L362 464Q317 434 276 434Q221 437 221 479Q221 498 240 521T259 552Q259 565 235 565Q209 565 174 546T105 482Q103 480 102 478T99 474T97 472T95 470T93 468T90 467T86 467T81 467H75Q56 467 56 475Q56 482 82 511T156 570T253 601Q289 601 311 590T334 557Q334 543 312 517T289 478Q289 471 297 471Q327 471 378 514Q384 519 390 531T412 571T451 632Q482 675 524 717H540"],87:[717,17,805,46,1026,"232 504Q232 492 263 492Q304 492 356 515L367 520L379 537Q443 632 515 705L527 717H543H552Q564 717 564 709Q564 705 562 703T554 694T540 677T518 643T488 589T448 504T398 385Q368 309 353 281L349 270L523 472L669 634Q726 695 737 706T757 717H765Q786 717 786 710Q786 704 776 691T738 627T675 497Q630 394 609 354T541 244Q456 120 449 111L447 107L448 108Q630 240 700 327Q734 368 788 463Q821 520 841 550T898 619T980 683Q1010 700 1018 700Q1020 700 1023 697T1026 692Q1026 688 1024 671T1020 652Q1018 650 1007 645T988 635Q940 609 902 565T842 477T781 374T699 272Q653 226 535 133Q423 47 373 -2L358 -17H342Q320 -17 320 -11Q320 -7 328 5T354 46T390 112Q416 161 439 217T488 326T564 453L589 490Q587 490 523 414T352 217T166 14Q138 -16 137 -16Q136 -17 120 -17Q106 -17 103 -16T99 -9Q99 -5 100 -3T106 3T116 14T132 35T154 72T184 129T222 212T270 327Q310 426 337 471L326 467Q278 455 243 455Q209 455 188 462T161 478T155 496Q155 508 176 533T198 576Q198 579 198 581T192 588T178 593Q151 593 100 519Q89 504 86 502T75 499H68Q46 499 46 506Q46 510 63 534T112 587T170 627Q178 629 195 629Q235 629 252 613T270 577Q270 556 251 532T232 504"],88:[717,17,944,103,1131,"351 351Q308 351 290 373T272 426Q272 487 329 566T478 688Q538 717 584 717Q635 717 681 696T745 620Q752 598 752 564T745 498L741 485Q742 486 769 516T825 573T889 634T962 689T1027 716Q1035 717 1060 717Q1083 716 1096 714T1120 705T1131 686Q1131 668 1109 647T1055 626Q1035 626 1026 638T1016 663Q1016 667 1020 679H1015Q971 671 886 589T728 413L688 360Q688 359 725 359H750Q762 359 766 357T770 348Q769 345 761 335T750 322Q748 321 704 321H660Q651 311 632 282T589 199T565 107Q565 25 653 20Q684 20 720 44T779 95T826 152T850 183L856 184Q861 184 865 184Q888 184 888 173Q883 163 845 117Q770 37 723 10T638 -17Q584 -14 554 17T523 101Q523 147 534 167L532 166Q530 164 526 160T518 153Q378 15 256 -15Q250 -16 226 -16Q161 -16 132 7T103 59Q103 93 129 125T194 158Q232 158 232 121Q233 118 233 113T221 96T188 77Q182 75 168 75T150 78V70Q150 43 178 32T241 20Q340 20 527 286L552 321H524Q489 321 489 330Q489 333 497 344T509 358Q511 359 545 359H579Q580 362 597 389T631 445T661 514T675 586Q675 637 645 658T572 680Q506 680 444 632T348 527T314 434Q314 388 361 388H364H366Q380 388 389 390T416 408T457 454Q487 497 505 536T526 594L529 613Q531 615 545 622T560 630Q568 630 573 613T578 577Q578 518 532 455Q504 413 453 382T351 351"],89:[716,17,710,57,959,"155 280Q116 280 87 300T57 368Q57 409 87 466T192 589Q269 653 345 684T472 716Q572 716 613 675Q644 644 644 599Q644 585 643 574T637 550T629 529T616 505T600 481T578 450T554 416Q494 330 493 328L480 306Q466 278 466 256Q466 227 492 227H496Q514 227 534 234Q541 237 544 241T571 279L762 559Q777 579 792 595Q818 620 856 646T919 686T946 700Q951 700 955 692T959 677Q959 673 947 665T911 639T866 595Q816 538 749 408T640 225Q574 138 464 61T248 -17Q190 -17 144 1T98 62Q98 81 109 102T131 135Q156 156 183 158Q226 158 226 121Q226 111 224 107Q215 93 196 84T162 74Q154 74 147 77H144V70Q146 41 185 31T263 20Q363 20 493 175L507 192H504Q500 191 498 191Q484 189 476 189Q430 189 405 219T379 287Q379 294 379 299T382 311T385 322T391 335T398 347T408 363T420 379T434 399T450 422Q455 429 469 449T488 475T504 499T520 523T533 543T544 565T552 583T557 603T559 620Q559 680 467 680Q402 680 333 646T213 563T131 462T98 373Q98 343 119 330T169 317Q187 317 212 333Q242 354 291 423T352 555Q354 562 355 588Q355 612 356 612Q357 614 371 622T387 630Q391 630 397 623T409 597T415 556Q415 507 380 448T294 344Q216 280 155 280"],90:[717,16,821,82,1032,"221 428Q221 487 280 555T425 670T583 717H587Q641 717 665 695T689 646Q689 625 674 600T658 564Q658 550 671 541T695 530T710 528L718 539Q779 613 821 646Q894 707 964 707H970Q1010 707 1025 675Q1032 661 1032 645Q1032 626 1022 607Q1008 579 980 560T897 522Q867 512 836 505T788 496L771 493Q768 493 760 477T736 429T702 370Q700 367 698 363Q696 360 696 359H805Q809 355 809 350Q809 340 791 322Q789 321 728 321H668Q562 179 433 88L419 78L434 73Q505 54 554 54Q609 54 654 82T720 140H752Q758 134 758 132Q758 128 747 113Q711 67 657 32T552 -14Q540 -16 517 -16T480 -15T439 -3T375 27L354 38L338 30Q257 -8 191 -8H184Q154 -8 133 -5T103 1T88 10T83 19T83 29Q83 35 86 44T100 65T127 88T173 105T241 112Q286 112 342 99L360 95L372 105Q434 157 523 270L560 320Q560 321 533 321L507 322Q502 325 502 330Q502 339 521 358Q523 359 556 359H588L669 474L682 491Q676 492 665 494T647 498T632 503T614 510T596 521Q556 547 556 570Q556 585 579 618T603 663Q603 679 568 679Q510 679 452 650T354 581T288 500T262 431Q262 407 280 397T321 387Q331 387 341 390T360 398T376 409T390 423T400 435T409 447L414 454Q457 514 460 562Q460 575 461 576Q461 577 475 586T492 595Q496 595 503 588T514 572Q520 559 520 539Q520 473 452 412T308 351Q269 351 245 370T221 428ZM989 642Q989 667 953 671Q905 671 871 644Q853 632 832 604T799 554T787 531H788Q801 531 842 539T916 561Q989 592 989 642ZM198 29Q230 29 257 36T295 52L306 59Q306 63 259 73Q251 74 209 74Q177 74 158 66T134 48L130 40Q130 29 198 29"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js deleted file mode 100644 index 9373e74..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Script={directory:"Script/Regular",family:"MathJax_Script",id:"MJSCR",skew:{65:0.389,66:0.194,67:0.278,68:0.111,69:0.139,70:0.222,71:0.25,72:0.333,73:0.333,74:0.417,75:0.361,76:0.306,77:0.444,78:0.389,79:0.167,80:0.222,81:0.278,82:0.194,83:0.333,84:0.222,85:0.25,86:0.222,87:0.25,88:0.278,89:0.194,90:0.306},Ranges:[[0,127,"BasicLatin"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js deleted file mode 100644 index 6ccc292..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Size1={directory:"Size1/Regular",family:"MathJax_Size1",id:"MJSZ1",32:[0,0,250,0,0,""],40:[850,349,458,152,422,"152 251Q152 646 388 850H416Q422 844 422 841Q422 837 403 816T357 753T302 649T255 482T236 250Q236 124 255 19T301 -147T356 -251T403 -315T422 -340Q422 -343 416 -349H388Q359 -325 332 -296T271 -213T212 -97T170 56T152 251"],41:[850,349,458,35,305,"305 251Q305 -145 69 -349H56Q43 -349 39 -347T35 -338Q37 -333 60 -307T108 -239T160 -136T204 27T221 250T204 473T160 636T108 740T60 807T35 839Q35 850 50 850H56H69Q197 743 256 566Q305 425 305 251"],47:[850,349,578,55,522,"481 838Q489 850 500 850Q508 850 515 844T522 827Q521 824 311 248T96 -337Q90 -349 77 -349Q68 -349 62 -343T55 -326Q56 -323 266 253T481 838"],91:[850,349,417,202,394,"202 -349V850H394V810H242V-309H394V-349H202"],92:[850,349,578,54,522,"522 -326Q522 -337 515 -343T500 -349Q487 -349 481 -337Q477 -328 267 248T55 827Q54 835 60 842T76 850Q89 850 96 838Q100 829 310 253T522 -326"],93:[850,349,417,22,214,"22 810V850H214V-349H22V-309H174V810H22"],123:[851,349,583,105,477,"477 -343L471 -349H458Q432 -349 367 -325T273 -263Q258 -245 250 -212L249 -51Q249 -27 249 12Q248 118 244 128Q243 129 243 130Q220 189 121 228Q109 232 107 235T105 250Q105 256 105 257T105 261T107 265T111 268T118 272T128 276T142 283T162 291Q224 324 243 371Q243 372 244 373Q248 384 249 469Q249 475 249 489Q249 528 249 552L250 714Q253 728 256 736T271 761T299 789T347 816T422 843Q440 849 441 849H443Q445 849 447 849T452 850T457 850H471L477 844V830Q477 820 476 817T470 811T459 807T437 801T404 785Q353 760 338 724Q333 710 333 550Q333 526 333 492T334 447Q334 393 327 368T295 318Q257 280 181 255L169 251L184 245Q318 198 332 112Q333 106 333 -49Q333 -209 338 -223Q351 -255 391 -277T469 -309Q477 -311 477 -329V-343"],125:[850,349,583,105,477,"110 849L115 850Q120 850 125 850Q151 850 215 826T309 764Q324 747 332 714L333 552Q333 528 333 489Q334 383 338 373Q339 372 339 371Q353 336 391 310T469 271Q477 268 477 251Q477 241 476 237T472 232T456 225T428 214Q357 179 339 130Q339 129 338 128Q334 117 333 32Q333 26 333 12Q333 -27 333 -51L332 -212Q328 -228 323 -240T302 -271T255 -307T175 -338Q139 -349 125 -349T108 -346T105 -329Q105 -314 107 -312T130 -304Q233 -271 248 -209Q249 -203 249 -49V57Q249 106 253 125T273 167Q307 213 398 245L413 251L401 255Q265 300 250 389Q249 395 249 550Q249 710 244 724Q224 774 112 811Q105 813 105 830Q105 845 110 849"],710:[744,-551,556,-8,564,"279 669Q273 669 142 610T9 551L0 569Q-8 585 -8 587Q-8 588 -7 588L12 598Q30 608 66 628T136 666L277 744L564 587L555 569Q549 556 547 554T544 552Q539 555 410 612T279 669"],732:[722,-597,556,1,554,"374 597Q337 597 269 627T160 658Q101 658 34 606L24 597L12 611Q1 624 1 626Q1 627 27 648T55 671Q120 722 182 722Q219 722 286 692T395 661Q454 661 521 713L531 722L543 708Q554 695 554 693Q554 692 528 671T500 648Q434 597 374 597"],770:[744,-551,0,-564,8,"-277 669Q-283 669 -414 610T-547 551L-556 569Q-564 585 -564 587Q-564 588 -563 588L-544 598Q-526 608 -490 628T-420 666L-279 744L8 587L-1 569Q-7 556 -9 554T-12 552Q-17 555 -146 612T-277 669"],771:[722,-597,0,-555,-2,"-182 597Q-219 597 -287 627T-396 658Q-455 658 -522 606L-532 597L-544 611Q-555 624 -555 626Q-555 627 -529 648T-501 671Q-436 722 -374 722Q-337 722 -270 692T-161 661Q-102 661 -35 713L-25 722L-13 708Q-2 695 -2 693Q-2 692 -28 671T-56 648Q-122 597 -182 597"],8214:[602,0,778,257,521,"257 0V602H300V0H257ZM478 0V602H521V0H478"],8593:[600,0,667,112,555,"112 421L120 424Q127 427 136 430T161 441T191 458T224 481T260 510T295 546T328 591L333 600L340 589Q380 527 431 489T555 421V377L543 381Q445 418 368 492L355 504V0H312V504L299 492Q222 418 124 381L112 377V421"],8595:[600,0,667,112,555,"312 96V600H355V96L368 108Q445 182 543 219L555 223V179L546 176Q538 173 529 169T505 158T475 141T442 119T407 90T372 53T339 9L334 0L327 11Q287 73 236 111T112 179V223L124 219Q222 182 299 108L312 96"],8657:[599,0,778,57,721,"142 329Q300 419 389 599Q389 598 399 579T420 541T452 494T497 438T558 383T636 329T708 294L721 289V246Q718 246 694 256T623 293T532 356L522 364L521 182V0H478V405L466 417Q436 450 389 516Q388 515 378 500T352 463T312 417L300 405V0H257V364L247 356Q202 320 155 293T82 256L57 246V289L70 294Q101 305 142 329"],8659:[600,-1,778,57,721,"257 236V600H300V195L312 183Q342 150 389 84Q390 85 400 100T426 137T466 183L478 195V600H521V418L522 236L532 244Q576 280 623 307T696 344L721 354V311L708 306Q677 295 636 271Q478 181 389 1Q389 2 379 21T358 59T326 106T281 162T220 217T142 271T70 306L57 311V354Q60 354 83 345T154 308T247 244L257 236"],8719:[750,250,944,55,888,"158 656Q147 684 131 694Q110 707 69 710H55V750H888V710H874Q840 708 820 698T795 678T786 656V-155Q798 -206 874 -210H888V-250H570V-210H584Q618 -208 638 -197T663 -178T673 -155V710H270V277L271 -155Q283 -206 359 -210H373V-250H55V-210H69Q103 -208 123 -197T148 -178T158 -155V656"],8720:[750,250,944,55,888,"158 656Q147 684 131 694Q110 707 69 710H55V750H373V710H359Q325 708 305 698T280 678T271 656L270 223V-210H673V656Q666 672 663 679T639 697T584 710H570V750H888V710H874Q840 708 820 698T795 678T786 656V-155Q798 -206 874 -210H888V-250H55V-210H69Q103 -208 123 -197T148 -178T158 -155V656"],8721:[750,250,1056,56,999,"61 748Q64 750 489 750H913L954 640Q965 609 976 579T993 533T999 516H979L959 517Q936 579 886 621T777 682Q724 700 655 705T436 710H319Q183 710 183 709Q186 706 348 484T511 259Q517 250 513 244L490 216Q466 188 420 134T330 27L149 -187Q149 -188 362 -188Q388 -188 436 -188T506 -189Q679 -189 778 -162T936 -43Q946 -27 959 6H999L913 -249L489 -250Q65 -250 62 -248Q56 -246 56 -239Q56 -234 118 -161Q186 -81 245 -11L428 206Q428 207 242 462L57 717L56 728Q56 744 61 748"],8730:[850,350,1000,111,1020,"263 249Q264 249 315 130T417 -108T470 -228L725 302Q981 837 982 839Q989 850 1001 850Q1008 850 1013 844T1020 832V826L741 243Q645 43 540 -176Q479 -303 469 -324T453 -348Q449 -350 436 -350L424 -349L315 -96Q206 156 205 156L171 130Q138 104 137 104L111 130L263 249"],8739:[627,15,333,144,188,"146 612Q151 627 166 627Q182 627 187 612Q188 610 188 306T187 0Q184 -15 166 -15Q149 -15 146 0V10Q146 19 146 35T146 73T146 122T145 179T145 241T145 306T145 370T145 433T145 489T146 538T146 576T146 602V612"],8741:[627,15,556,144,410,"146 612Q151 627 166 627Q182 627 187 612Q188 610 188 306T187 0Q184 -15 166 -15Q149 -15 146 0V10Q146 19 146 35T146 73T146 122T145 179T145 241T145 306T145 370T145 433T145 489T146 538T146 576T146 602V612ZM368 612Q373 627 388 627Q404 627 409 612Q410 610 410 306T409 0Q406 -15 389 -15Q371 -15 368 0V10Q368 19 368 35T368 73T368 122T367 179T367 241T367 306T367 370T367 433T367 489T368 538T368 576T368 602V612"],8747:[805,306,472,55,610,"113 -244Q113 -246 119 -251T139 -263T167 -269Q186 -269 199 -260Q220 -247 232 -218T251 -133T262 -15T276 155T297 367Q300 390 305 438T314 512T325 580T340 647T361 703T390 751T428 784T479 804Q481 804 488 804T501 805Q552 802 581 769T610 695Q610 669 594 657T561 645Q542 645 527 658T512 694Q512 705 516 714T526 729T538 737T548 742L552 743Q552 745 545 751T525 762T498 768Q475 768 460 756T434 716T418 652T407 559T398 444T387 300T369 133Q349 -38 337 -102T303 -207Q256 -306 169 -306Q119 -306 87 -272T55 -196Q55 -170 71 -158T104 -146Q123 -146 138 -159T153 -195Q153 -206 149 -215T139 -230T127 -238T117 -242L113 -244"],8748:[805,306,819,55,957,"113 -244Q113 -246 119 -251T139 -263T167 -269Q186 -269 199 -260Q220 -247 232 -218T251 -133T262 -15T276 155T297 367Q300 390 305 438T314 512T325 580T340 647T361 703T390 751T428 784T479 804Q481 804 488 804T501 805Q552 802 581 769T610 695Q610 669 594 657T561 645Q542 645 527 658T512 694Q512 705 516 714T526 729T538 737T548 742L552 743Q552 745 545 751T525 762T498 768Q475 768 460 756T434 716T418 652T407 559T398 444T387 300T369 133Q349 -38 337 -102T303 -207Q256 -306 169 -306Q119 -306 87 -272T55 -196Q55 -170 71 -158T104 -146Q123 -146 138 -159T153 -195Q153 -206 149 -215T139 -230T127 -238T117 -242L113 -244ZM460 -244Q460 -246 466 -251T486 -263T514 -269Q532 -269 546 -260Q567 -247 579 -218T598 -133T609 -15T623 155T644 367Q647 390 652 438T661 512T672 580T687 647T708 703T737 751T775 784T826 804Q828 804 835 804T848 805Q899 802 928 769T957 695Q957 669 941 657T908 645Q889 645 874 658T859 694Q859 705 863 714T873 729T885 737T895 742L899 743Q899 745 892 751T872 762T845 768Q822 768 807 756T781 716T765 652T754 559T745 444T734 300T716 133Q696 -38 684 -102T650 -207Q603 -306 516 -306Q466 -306 434 -272T402 -196Q402 -170 418 -158T451 -146Q470 -146 485 -159T500 -195Q500 -206 496 -215T486 -230T474 -238T464 -242L460 -244"],8749:[805,306,1166,55,1304,"113 -244Q113 -246 119 -251T139 -263T167 -269Q186 -269 199 -260Q220 -247 232 -218T251 -133T262 -15T276 155T297 367Q300 390 305 438T314 512T325 580T340 647T361 703T390 751T428 784T479 804Q481 804 488 804T501 805Q552 802 581 769T610 695Q610 669 594 657T561 645Q542 645 527 658T512 694Q512 705 516 714T526 729T538 737T548 742L552 743Q552 745 545 751T525 762T498 768Q475 768 460 756T434 716T418 652T407 559T398 444T387 300T369 133Q349 -38 337 -102T303 -207Q256 -306 169 -306Q119 -306 87 -272T55 -196Q55 -170 71 -158T104 -146Q123 -146 138 -159T153 -195Q153 -206 149 -215T139 -230T127 -238T117 -242L113 -244ZM460 -244Q460 -246 466 -251T486 -263T514 -269Q532 -269 546 -260Q567 -247 579 -218T598 -133T609 -15T623 155T644 367Q647 390 652 438T661 512T672 580T687 647T708 703T737 751T775 784T826 804Q828 804 835 804T848 805Q899 802 928 769T957 695Q957 669 941 657T908 645Q889 645 874 658T859 694Q859 705 863 714T873 729T885 737T895 742L899 743Q899 745 892 751T872 762T845 768Q822 768 807 756T781 716T765 652T754 559T745 444T734 300T716 133Q696 -38 684 -102T650 -207Q603 -306 516 -306Q466 -306 434 -272T402 -196Q402 -170 418 -158T451 -146Q470 -146 485 -159T500 -195Q500 -206 496 -215T486 -230T474 -238T464 -242L460 -244ZM807 -244Q807 -246 813 -251T833 -263T861 -269Q880 -269 893 -260Q914 -247 926 -218T945 -133T956 -15T970 155T991 367Q994 390 999 438T1008 512T1019 580T1034 647T1055 703T1084 751T1122 784T1173 804Q1175 804 1182 804T1195 805Q1246 802 1275 769T1304 695Q1304 669 1288 657T1255 645Q1236 645 1221 658T1206 694Q1206 705 1210 714T1220 729T1232 737T1242 742L1246 743Q1246 745 1239 751T1219 762T1192 768Q1169 768 1154 756T1128 716T1112 652T1101 559T1092 444T1081 300T1063 133Q1043 -38 1031 -102T997 -207Q950 -306 863 -306Q813 -306 781 -272T749 -196Q749 -170 765 -158T798 -146Q817 -146 832 -159T847 -195Q847 -206 843 -215T833 -230T821 -238T811 -242L807 -244"],8750:[805,306,472,55,610,"269 74L256 80Q244 85 227 97T191 128T161 179T148 250Q148 332 199 379T302 433L306 434L307 444Q309 456 313 495T321 553T331 607T345 664T365 712T393 756T431 785T479 804Q481 804 488 804T501 805Q552 802 581 769T610 695Q610 669 594 657T561 645Q542 645 527 658T512 694Q512 705 516 714T526 729T538 737T548 742L552 743Q552 745 545 751T525 762T498 768Q471 768 454 752T427 693T414 626T406 536Q405 530 405 527L397 425L404 422Q410 419 421 413T445 399T470 376T494 345T511 303T518 250Q518 205 502 169T460 112T410 80T364 66L360 65L359 55Q357 38 353 4T346 -43T340 -81T333 -118T326 -148T316 -179T303 -207Q256 -306 169 -306Q119 -306 87 -272T55 -196Q55 -170 71 -158T104 -146Q123 -146 138 -159T153 -195Q153 -206 149 -215T139 -230T127 -238T117 -242L113 -244Q113 -246 119 -251T139 -263T167 -269Q186 -269 199 -260Q231 -241 242 -183T266 33L269 74ZM272 122Q272 156 300 391Q300 392 299 392Q287 392 263 379T213 331T187 249Q187 211 205 180T239 137T272 116V122ZM366 107Q378 107 402 119T453 167T479 249Q479 340 394 383V377Q394 375 394 374T393 371T393 366T392 357T391 342T389 321T386 291T382 251T377 199T369 133Q366 112 366 107"],8896:[750,249,833,55,777,"119 -249T97 -249T65 -235T55 -207Q55 -201 56 -198Q58 -190 218 268T380 729Q392 750 416 750Q438 750 451 732Q453 728 534 498T695 36L775 -194Q777 -204 777 -208Q777 -222 767 -235T735 -249Q713 -249 700 -231Q696 -225 557 177L416 579L276 177Q136 -226 132 -231Q119 -249 97 -249"],8897:[750,249,833,55,777,"55 708Q55 729 68 739T96 750Q119 750 132 731Q136 726 276 323L416 -79L557 323Q696 725 700 731Q713 749 735 749Q756 749 766 736T777 708Q777 700 696 466T533 1T451 -232Q436 -249 416 -249Q402 -249 391 -241Q384 -236 380 -226Q368 -198 219 230Q55 697 55 708"],8898:[750,249,833,54,777,"139 -217Q127 -241 114 -246Q106 -249 97 -249Q67 -249 57 -220Q55 -214 55 102Q55 152 55 221T54 312Q54 422 60 464T91 554Q120 612 165 654T257 714T337 741T392 749Q393 750 402 750Q414 750 422 749Q557 749 660 659T776 430Q777 422 777 102Q777 -214 775 -220Q765 -249 735 -249Q716 -249 708 -241T694 -217L692 428L690 441Q674 540 597 603T416 666H409Q388 666 364 662T294 638T212 581Q156 523 142 441L140 428L139 105V-217"],8899:[750,249,833,55,777,"96 750Q103 750 109 748T120 744T127 737T133 730T137 723T139 718V395L140 73L142 60Q159 -43 237 -104T416 -166Q521 -166 597 -103T690 60L692 73L694 718Q708 749 735 749Q765 749 775 720Q777 714 777 398Q777 78 776 71Q766 -51 680 -140Q571 -249 416 -249H411Q261 -249 152 -140Q66 -51 56 71Q55 78 55 398Q55 714 57 720Q60 734 70 740Q80 750 96 750"],8968:[850,349,472,202,449,"202 -349V850H449V810H242V-349H202"],8969:[850,349,472,22,269,"22 810V850H269V-349H229V810H22"],8970:[850,349,472,202,449,"202 -349V850H242V-309H449V-349H202"],8971:[850,349,472,22,269,"229 -309V850H269V-349H22V-309H229"],9168:[602,0,667,312,355,"312 0V602H355V0H312"],10216:[850,350,472,96,394,"373 850Q392 850 394 832Q394 825 267 538L139 250L267 -38Q394 -325 394 -332Q392 -350 375 -350Q361 -350 356 -338Q354 -331 289 -186T161 103T97 250T160 397T289 685T356 838Q362 850 373 850"],10217:[850,350,472,77,375,"77 832Q77 837 82 843T98 850Q110 849 115 838Q117 831 182 686T310 397T374 250T311 103T182 -185T115 -338Q110 -350 96 -350Q79 -350 77 -332Q77 -325 204 -38L332 250L204 538Q77 825 77 832"],10752:[750,250,1111,56,1054,"555 -250Q420 -250 306 -185T124 -4T56 250Q56 453 193 595T526 749Q528 750 539 750Q554 750 562 749Q688 749 800 687T983 508T1054 250Q1054 112 987 -3T806 -184T555 -250ZM555 -165Q672 -165 767 -108T916 44T970 250Q970 418 861 532T600 664Q591 665 548 665Q446 665 353 614T200 466T140 250V243Q140 88 248 -30Q262 -46 280 -62T338 -105T434 -148T555 -165ZM478 250Q478 288 503 307T551 326Q586 326 609 305T632 250Q632 217 610 196T555 174T500 196T478 250"],10753:[750,250,1111,56,1054,"555 -250Q420 -250 306 -185T124 -4T56 250Q56 453 193 595T526 749Q528 750 539 750Q554 750 562 749Q688 749 800 687T983 508T1054 250Q1054 112 987 -3T806 -184T555 -250ZM513 478Q513 664 512 664Q504 664 481 660T406 637T313 588Q281 564 255 537T211 483T181 431T161 382T150 342T144 310T141 292H513V478ZM798 588Q758 616 711 634T639 658T602 663L597 664V292H969Q969 293 967 309T960 341T949 381T930 430T900 482T856 537T798 588ZM513 -164V208H141Q142 205 144 189T149 160T158 125T173 83T196 39T229 -9Q249 -34 273 -55T318 -92T363 -119T405 -138T444 -150T475 -158T499 -162T513 -164ZM775 -103Q801 -87 823 -68T863 -30T894 10T919 49T937 88T950 123T959 154T964 180T968 198L969 208H597V-164Q599 -163 616 -161T647 -155T683 -145T728 -128T775 -103"],10754:[750,250,1111,56,1054,"555 -250Q420 -250 306 -185T124 -4T56 250Q56 453 193 595T526 749Q528 750 539 750Q554 750 562 749Q688 749 800 687T983 508T1054 250Q1054 112 987 -3T806 -184T555 -250ZM600 664Q591 665 548 665Q414 665 306 583L292 573L423 441L555 310L687 441L818 573L804 583Q714 650 600 664ZM364 118L495 250L364 382L232 513L223 500Q140 391 140 250Q140 107 223 0L232 -13L364 118ZM970 250Q970 389 887 501L878 512Q878 513 861 496T812 447T746 381L615 250L746 118L878 -13L887 0Q970 109 970 250ZM687 59L555 190L423 59L292 -73L306 -83Q416 -166 555 -166T804 -83L818 -73L687 59"],10756:[750,249,833,55,777,"96 750Q103 750 109 748T120 744T127 737T133 730T137 723T139 718V395L140 73L142 60Q159 -43 237 -104T416 -166Q521 -166 597 -103T690 60L692 73L694 718Q708 749 735 749Q765 749 775 720Q777 714 777 398Q777 78 776 71Q766 -51 680 -140Q571 -249 416 -249H411Q261 -249 152 -140Q66 -51 56 71Q55 78 55 398Q55 714 57 720Q60 734 70 740Q80 750 96 750ZM223 276Q223 282 224 287T227 296T232 302T238 308T243 313T250 316L254 319H374V376V406Q374 438 382 454T418 470Q443 467 450 453T458 410V376V319H579Q580 319 583 317T589 313T594 308T600 302T604 295T608 287T609 276Q609 253 587 241Q577 235 513 235H458V178Q458 176 458 166T459 148Q459 84 415 84Q401 84 390 93T375 117Q374 120 374 178V235H319Q317 235 307 235T290 234Q223 234 223 276"],10758:[750,249,833,55,777,"777 -217Q766 -244 745 -249H88Q64 -242 57 -220Q55 -214 55 250T57 720Q60 734 70 740Q80 750 96 750Q127 750 137 720Q139 714 139 274V-166H693V274Q693 714 695 720Q705 749 735 749Q766 749 775 719Q777 713 777 248V-217"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size1/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js deleted file mode 100644 index 00f85cd..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Size2={directory:"Size2/Regular",family:"MathJax_Size2",id:"MJSZ2",32:[0,0,250,0,0,""],40:[1150,649,597,180,561,"180 96T180 250T205 541T266 770T353 944T444 1069T527 1150H555Q561 1144 561 1141Q561 1137 545 1120T504 1072T447 995T386 878T330 721T288 513T272 251Q272 133 280 56Q293 -87 326 -209T399 -405T475 -531T536 -609T561 -640Q561 -643 555 -649H527Q483 -612 443 -568T353 -443T266 -270T205 -41"],41:[1150,649,597,35,417,"35 1138Q35 1150 51 1150H56H69Q113 1113 153 1069T243 944T330 771T391 541T416 250T391 -40T330 -270T243 -443T152 -568T69 -649H56Q43 -649 39 -647T35 -637Q65 -607 110 -548Q283 -316 316 56Q324 133 324 251Q324 368 316 445Q278 877 48 1123Q36 1137 35 1138"],47:[1150,649,811,56,754,"78 -649Q56 -646 56 -625Q56 -614 382 261T712 1140Q716 1150 732 1150Q754 1147 754 1126Q754 1116 428 240T98 -639Q94 -649 78 -649"],91:[1150,649,472,224,455,"224 -649V1150H455V1099H275V-598H455V-649H224"],92:[1150,649,811,54,754,"754 -625Q754 -649 731 -649Q715 -649 712 -639Q709 -635 383 242T55 1124Q54 1135 61 1142T80 1150Q92 1150 98 1140Q101 1137 427 262T754 -625"],93:[1150,649,472,16,247,"16 1099V1150H247V-649H16V-598H196V1099H16"],123:[1150,649,667,119,547,"547 -643L541 -649H528Q515 -649 503 -645Q324 -582 293 -466Q289 -449 289 -428T287 -200L286 42L284 53Q274 98 248 135T196 190T146 222L121 235Q119 239 119 250Q119 262 121 266T133 273Q262 336 284 449L286 460L287 701Q287 737 287 794Q288 949 292 963Q293 966 293 967Q325 1080 508 1148Q516 1150 527 1150H541L547 1144V1130Q547 1117 546 1115T536 1109Q480 1086 437 1046T381 950L379 940L378 699Q378 657 378 594Q377 452 374 438Q373 437 373 436Q350 348 243 282Q192 257 186 254L176 251L188 245Q211 236 234 223T287 189T340 135T373 65Q373 64 374 63Q377 49 378 -93Q378 -156 378 -198L379 -438L381 -449Q393 -504 436 -544T536 -608Q544 -611 545 -613T547 -629V-643"],125:[1150,649,667,119,547,"119 1130Q119 1144 121 1147T135 1150H139Q151 1150 182 1138T252 1105T326 1046T373 964Q378 942 378 702Q378 469 379 462Q386 394 439 339Q482 296 535 272Q544 268 545 266T547 251Q547 241 547 238T542 231T531 227T510 217T477 194Q390 129 379 39Q378 32 378 -201Q378 -441 373 -463Q342 -580 165 -644Q152 -649 139 -649Q125 -649 122 -646T119 -629Q119 -622 119 -619T121 -614T124 -610T132 -607T143 -602Q195 -579 235 -539T285 -447Q286 -435 287 -199T289 51Q294 74 300 91T329 138T390 197Q412 213 436 226T475 244L489 250L472 258Q455 265 430 279T377 313T327 366T293 434Q289 451 289 472T287 699Q286 941 285 948Q279 978 262 1005T227 1048T184 1080T151 1100T129 1109L127 1110Q119 1113 119 1130"],710:[772,-565,1000,-5,1004,"1004 603Q1004 600 999 583T991 565L960 574Q929 582 866 599T745 631L500 698Q497 698 254 631Q197 616 134 599T39 574L8 565Q5 565 0 582T-5 603L26 614Q58 624 124 646T248 687L499 772Q999 604 1004 603"],732:[750,-611,1000,0,999,"296 691Q258 691 216 683T140 663T79 639T34 619T16 611Q13 619 8 628L0 644L36 662Q206 749 321 749Q410 749 517 710T703 670Q741 670 783 678T859 698T920 722T965 742T983 750Q986 742 991 733L999 717L963 699Q787 611 664 611Q594 611 484 651T296 691"],770:[772,-565,0,-1005,4,"4 603Q4 600 -1 583T-9 565L-40 574Q-71 582 -134 599T-255 631L-500 698Q-503 698 -746 631Q-803 616 -866 599T-961 574L-992 565Q-995 565 -1000 582T-1005 603L-974 614Q-942 624 -876 646T-752 687L-501 772Q-1 604 4 603"],771:[750,-611,0,-1000,-1,"-704 691Q-742 691 -784 683T-860 663T-921 639T-966 619T-984 611Q-987 619 -992 628L-1000 644L-964 662Q-794 749 -679 749Q-590 749 -483 710T-297 670Q-259 670 -217 678T-141 698T-80 722T-35 742T-17 750Q-14 742 -9 733L-1 717L-37 699Q-213 611 -336 611Q-405 611 -515 651T-704 691"],8719:[950,450,1278,56,1221,"220 812Q220 813 218 819T214 829T208 840T199 853T185 866T166 878T140 887T107 893T66 896H56V950H1221V896H1211Q1080 896 1058 812V-311Q1076 -396 1211 -396H1221V-450H725V-396H735Q864 -396 888 -314Q889 -312 889 -311V896H388V292L389 -311Q405 -396 542 -396H552V-450H56V-396H66Q195 -396 219 -314Q220 -312 220 -311V812"],8720:[950,450,1278,56,1221,"220 812Q220 813 218 819T214 829T208 840T199 853T185 866T166 878T140 887T107 893T66 896H56V950H552V896H542Q411 896 389 812L388 208V-396H889V812Q889 813 887 819T883 829T877 840T868 853T854 866T835 878T809 887T776 893T735 896H725V950H1221V896H1211Q1080 896 1058 812V-311Q1076 -396 1211 -396H1221V-450H56V-396H66Q195 -396 219 -314Q220 -312 220 -311V812"],8721:[950,450,1444,55,1388,"60 948Q63 950 665 950H1267L1325 815Q1384 677 1388 669H1348L1341 683Q1320 724 1285 761Q1235 809 1174 838T1033 881T882 898T699 902H574H543H251L259 891Q722 258 724 252Q725 250 724 246Q721 243 460 -56L196 -356Q196 -357 407 -357Q459 -357 548 -357T676 -358Q812 -358 896 -353T1063 -332T1204 -283T1307 -196Q1328 -170 1348 -124H1388Q1388 -125 1381 -145T1356 -210T1325 -294L1267 -449L666 -450Q64 -450 61 -448Q55 -446 55 -439Q55 -437 57 -433L590 177Q590 178 557 222T452 366T322 544L56 909L55 924Q55 945 60 948"],8730:[1150,650,1000,111,1020,"1001 1150Q1017 1150 1020 1132Q1020 1127 741 244L460 -643Q453 -650 436 -650H424Q423 -647 423 -645T421 -640T419 -631T415 -617T408 -594T399 -560T385 -512T367 -448T343 -364T312 -259L203 119L138 41L111 67L212 188L264 248L472 -474L983 1140Q988 1150 1001 1150"],8747:[1361,862,556,55,944,"114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798"],8748:[1361,862,1084,55,1472,"114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798ZM642 -798Q660 -824 693 -824H695Q723 -824 751 -764T803 -600T848 -391T890 -164Q893 -143 895 -133Q967 292 1051 655T1173 1127Q1179 1145 1183 1157T1200 1201T1227 1257T1261 1306T1305 1346T1356 1360Q1412 1360 1440 1325T1472 1245Q1472 1220 1460 1205T1437 1186T1415 1183Q1394 1183 1377 1198T1360 1239Q1360 1287 1413 1296L1410 1300Q1407 1303 1402 1307T1394 1313Q1379 1323 1361 1323Q1347 1323 1335 1311T1303 1255T1264 1139T1217 936T1161 628Q1102 293 1038 -5T938 -437T883 -629Q806 -862 693 -862Q653 -862 620 -831T583 -746Q583 -711 602 -698T640 -685Q661 -685 678 -700T695 -741Q695 -789 642 -798"],8749:[1361,862,1592,55,1980,"114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798ZM642 -798Q660 -824 693 -824H695Q723 -824 751 -764T803 -600T848 -391T890 -164Q893 -143 895 -133Q967 292 1051 655T1173 1127Q1179 1145 1183 1157T1200 1201T1227 1257T1261 1306T1305 1346T1356 1360Q1412 1360 1440 1325T1472 1245Q1472 1220 1460 1205T1437 1186T1415 1183Q1394 1183 1377 1198T1360 1239Q1360 1287 1413 1296L1410 1300Q1407 1303 1402 1307T1394 1313Q1379 1323 1361 1323Q1347 1323 1335 1311T1303 1255T1264 1139T1217 936T1161 628Q1102 293 1038 -5T938 -437T883 -629Q806 -862 693 -862Q653 -862 620 -831T583 -746Q583 -711 602 -698T640 -685Q661 -685 678 -700T695 -741Q695 -789 642 -798ZM1150 -798Q1168 -824 1201 -824H1203Q1231 -824 1259 -764T1311 -600T1356 -391T1398 -164Q1401 -143 1403 -133Q1475 292 1559 655T1681 1127Q1687 1145 1691 1157T1708 1201T1735 1257T1769 1306T1813 1346T1864 1360Q1920 1360 1948 1325T1980 1245Q1980 1220 1968 1205T1945 1186T1923 1183Q1902 1183 1885 1198T1868 1239Q1868 1287 1921 1296L1918 1300Q1915 1303 1910 1307T1902 1313Q1887 1323 1869 1323Q1855 1323 1843 1311T1811 1255T1772 1139T1725 936T1669 628Q1610 293 1546 -5T1446 -437T1391 -629Q1314 -862 1201 -862Q1161 -862 1128 -831T1091 -746Q1091 -711 1110 -698T1148 -685Q1169 -685 1186 -700T1203 -741Q1203 -789 1150 -798"],8750:[1360,862,556,55,944,"114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q382 -52 390 2Q314 40 276 99Q230 167 230 249Q230 363 305 436T484 519H494L503 563Q587 939 632 1087T727 1298Q774 1360 828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q766 1323 688 929Q662 811 610 496Q770 416 770 249Q770 147 701 68T516 -21H506L497 -65Q407 -464 357 -623T237 -837Q203 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798ZM480 478Q460 478 435 470T380 444T327 401T287 335T271 249Q271 124 375 56L397 43L431 223L485 478H480ZM519 20Q545 20 578 33T647 72T706 144T730 249Q730 383 603 455Q603 454 597 421T582 343T569 276Q516 22 515 20H519"],8896:[950,450,1111,55,1055,"1055 -401Q1055 -419 1042 -434T1007 -450Q977 -450 963 -423Q959 -417 757 167L555 750L353 167Q151 -417 147 -423Q134 -450 104 -450Q84 -450 70 -436T55 -401Q55 -394 56 -390Q59 -381 284 270T512 925Q525 950 555 950Q583 950 597 926Q599 923 825 270T1054 -391Q1055 -394 1055 -401"],8897:[950,450,1111,55,1055,"55 900Q55 919 69 934T103 950Q134 950 147 924Q152 913 353 333L555 -250L757 333Q958 913 963 924Q978 950 1007 950Q1028 950 1041 935T1055 901Q1055 894 1054 891Q1052 884 826 231T597 -426Q583 -450 556 -450Q527 -450 512 -424Q510 -421 285 229T56 890Q55 893 55 900"],8898:[949,451,1111,55,1055,"57 516Q68 602 104 675T190 797T301 882T423 933T542 949Q594 949 606 948Q780 928 901 815T1048 545Q1053 516 1053 475T1055 49Q1055 -406 1054 -410Q1051 -427 1037 -438T1006 -450T976 -439T958 -411Q957 -407 957 37Q957 484 956 494Q945 643 831 747T554 852Q481 852 411 826Q301 786 232 696T154 494Q153 484 153 37Q153 -407 152 -411Q148 -428 135 -439T104 -450T73 -439T56 -410Q55 -406 55 49Q56 505 57 516"],8899:[950,449,1111,55,1055,"56 911Q58 926 71 938T103 950Q120 950 134 939T152 911Q153 907 153 463Q153 16 154 6Q165 -143 279 -247T556 -352Q716 -352 830 -248T956 6Q957 16 957 463Q957 907 958 911Q962 928 975 939T1006 950T1037 939T1054 911Q1055 906 1055 451Q1054 -5 1053 -16Q1029 -207 889 -328T555 -449Q363 -449 226 -331T62 -45Q57 -16 57 25T55 451Q55 906 56 911"],8968:[1150,649,528,224,511,"224 -649V1150H511V1099H275V-649H224"],8969:[1150,649,528,16,303,"16 1099V1150H303V-649H252V1099H16"],8970:[1150,649,528,224,511,"224 -649V1150H275V-598H511V-649H224"],8971:[1150,649,528,16,303,"252 -598V1150H303V-649H16V-598H252"],10216:[1150,649,611,112,524,"112 244V258L473 1130Q482 1150 498 1150Q511 1150 517 1142T523 1125V1118L344 685Q304 587 257 473T187 305L165 251L344 -184L523 -616V-623Q524 -634 517 -641T499 -649Q484 -649 473 -629L112 244"],10217:[1150,649,611,85,498,"112 -649Q103 -649 95 -642T87 -623V-616L266 -184L445 251Q445 252 356 466T178 898T86 1123Q85 1134 93 1142T110 1150Q126 1150 133 1137Q134 1136 317 695L498 258V244L317 -194Q134 -635 133 -636Q126 -649 112 -649"],10752:[949,449,1511,56,1454,"668 944Q697 949 744 949Q803 949 814 948Q916 937 1006 902T1154 826T1262 730T1336 638T1380 563Q1454 415 1454 250Q1454 113 1402 -14T1258 -238T1036 -391T755 -449Q608 -449 477 -392T255 -240T110 -16T56 250Q56 387 105 510T239 723T434 871T668 944ZM755 -352Q922 -352 1061 -269T1278 -48T1356 250Q1356 479 1202 652T809 850Q798 851 747 851Q634 851 527 806T337 682T204 491T154 251Q154 128 201 17T329 -176T521 -304T755 -352ZM665 250Q665 290 692 315T758 341Q792 339 818 315T845 250Q845 211 819 186T755 160Q716 160 691 186T665 250"],10753:[949,449,1511,56,1454,"668 944Q697 949 744 949Q803 949 814 948Q916 937 1006 902T1154 826T1262 730T1336 638T1380 563Q1454 415 1454 250Q1454 113 1402 -14T1258 -238T1036 -391T755 -449Q608 -449 477 -392T255 -240T110 -16T56 250Q56 387 105 510T239 723T434 871T668 944ZM706 299V850H704Q519 832 386 725T198 476Q181 433 169 379T156 300Q156 299 431 299H706ZM1116 732Q1054 778 982 807T871 842T810 849L804 850V299H1079Q1354 299 1354 300Q1354 311 1352 329T1336 402T1299 506T1228 620T1116 732ZM706 -350V201H431Q156 201 156 200Q156 189 158 171T174 98T211 -6T282 -120T395 -232Q428 -257 464 -277T527 -308T587 -328T636 -339T678 -346T706 -350ZM1354 200Q1354 201 1079 201H804V-350Q808 -349 838 -345T887 -338T940 -323T1010 -295Q1038 -282 1067 -265T1144 -208T1229 -121T1301 0T1349 158Q1354 188 1354 200"],10754:[949,449,1511,56,1454,"668 944Q697 949 744 949Q803 949 814 948Q916 937 1006 902T1154 826T1262 730T1336 638T1380 563Q1454 415 1454 250Q1454 113 1402 -14T1258 -238T1036 -391T755 -449Q608 -449 477 -392T255 -240T110 -16T56 250Q56 387 105 510T239 723T434 871T668 944ZM1143 709Q1138 714 1129 722T1086 752T1017 791T925 826T809 850Q798 851 747 851H728Q659 851 571 823T408 741Q367 713 367 709L755 320L1143 709ZM297 639Q296 639 282 622T247 570T205 491T169 382T154 250T168 118T204 9T247 -70T282 -122L297 -139L685 250L297 639ZM1213 -139Q1214 -139 1228 -122T1263 -70T1305 9T1341 118T1356 250T1342 382T1306 491T1263 570T1228 622L1213 639L825 250L1213 -139ZM367 -209Q373 -215 384 -224T434 -258T514 -302T622 -336T755 -352T887 -338T996 -302T1075 -259T1126 -224L1143 -209L755 180Q754 180 561 -14T367 -209"],10756:[950,449,1111,55,1055,"56 911Q58 926 71 938T103 950Q120 950 134 939T152 911Q153 907 153 463Q153 16 154 6Q165 -143 279 -247T556 -352Q716 -352 830 -248T956 6Q957 16 957 463Q957 907 958 911Q962 928 975 939T1006 950T1037 939T1054 911Q1055 906 1055 451Q1054 -5 1053 -16Q1029 -207 889 -328T555 -449Q363 -449 226 -331T62 -45Q57 -16 57 25T55 451Q55 906 56 911ZM507 554Q511 570 523 581T554 593Q571 593 585 582T603 554Q604 551 604 443V338H709Q817 338 820 337Q835 334 847 321T859 290Q859 254 819 241Q816 240 709 240H604V134Q604 48 604 34T598 11Q583 -15 555 -15Q526 -15 512 11Q507 20 507 34T506 134V240H401H344Q292 240 278 246Q251 259 251 290Q251 309 264 321T290 337Q293 338 401 338H506V443Q506 551 507 554"],10758:[950,450,1111,54,1056,"56 911Q60 927 72 938T103 950Q120 950 134 939T152 911Q153 907 153 277V-352H957V277Q957 907 958 911Q962 928 975 939T1006 950T1036 939T1054 911V891Q1054 871 1054 836T1054 754T1054 647T1055 525T1055 390T1055 250T1055 111T1055 -24T1055 -147T1054 -253T1054 -335T1054 -391V-411Q1047 -442 1016 -449Q1011 -450 552 -450L94 -449Q63 -439 56 -411V-391Q56 -371 56 -336T56 -254T56 -147T55 -25T55 110T55 250T55 389T55 524T55 647T56 753T56 835T56 891V911"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size2/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js deleted file mode 100644 index a696743..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Size3={directory:"Size3/Regular",family:"MathJax_Size3",id:"MJSZ3",32:[0,0,250,0,0,""],40:[1450,949,736,208,701,"701 -940Q701 -943 695 -949H664Q662 -947 636 -922T591 -879T537 -818T475 -737T412 -636T350 -511T295 -362T250 -186T221 17T209 251Q209 962 573 1361Q596 1386 616 1405T649 1437T664 1450H695Q701 1444 701 1441Q701 1436 681 1415T629 1356T557 1261T476 1118T400 927T340 675T308 359Q306 321 306 250Q306 -139 400 -430T690 -924Q701 -936 701 -940"],41:[1450,949,736,34,527,"34 1438Q34 1446 37 1448T50 1450H56H71Q73 1448 99 1423T144 1380T198 1319T260 1238T323 1137T385 1013T440 864T485 688T514 485T526 251Q526 134 519 53Q472 -519 162 -860Q139 -885 119 -904T86 -936T71 -949H56Q43 -949 39 -947T34 -937Q88 -883 140 -813Q428 -430 428 251Q428 453 402 628T338 922T245 1146T145 1309T46 1425Q44 1427 42 1429T39 1433T36 1436L34 1438"],47:[1450,949,1044,55,988,"81 -949Q71 -949 63 -941T55 -921Q55 -917 56 -915Q59 -906 498 264T939 1438Q945 1450 960 1450Q972 1450 980 1441T988 1421Q982 1403 839 1020L398 -155Q107 -934 103 -938Q96 -949 81 -949"],91:[1450,949,528,247,516,"247 -949V1450H516V1388H309V-887H516V-949H247"],92:[1450,949,1044,56,988,"988 -922Q988 -933 980 -941T962 -949Q947 -949 940 -938Q936 -934 645 -155L204 1020Q56 1416 56 1424Q56 1433 62 1441T84 1450Q97 1448 103 1439Q107 1435 398 656L839 -519Q988 -918 988 -922"],93:[1450,949,528,11,280,"11 1388V1450H280V-949H11V-887H218V1388H11"],123:[1450,949,750,130,618,"618 -943L612 -949H582L568 -943Q472 -903 411 -841T332 -703Q327 -682 327 -653T325 -350Q324 -28 323 -18Q317 24 301 61T264 124T221 171T179 205T147 225T132 234Q130 238 130 250Q130 255 130 258T131 264T132 267T134 269T139 272T144 275Q207 308 256 367Q310 436 323 519Q324 529 325 851Q326 1124 326 1154T332 1205Q369 1358 566 1443L582 1450H612L618 1444V1429Q618 1413 616 1411L608 1406Q599 1402 585 1393T552 1372T515 1343T479 1305T449 1257T429 1200Q425 1180 425 1152T423 851Q422 579 422 549T416 498Q407 459 388 424T346 364T297 318T250 284T214 264T197 254L188 251L205 242Q290 200 345 138T416 3Q421 -18 421 -48T423 -349Q423 -397 423 -472Q424 -677 428 -694Q429 -697 429 -699Q434 -722 443 -743T465 -782T491 -816T519 -845T548 -868T574 -886T595 -899T610 -908L616 -910Q618 -912 618 -928V-943"],125:[1450,949,750,131,618,"131 1414T131 1429T133 1447T148 1450H153H167L182 1444Q276 1404 336 1343T415 1207Q421 1184 421 1154T423 851L424 531L426 517Q434 462 460 415T518 339T571 296T608 274Q615 270 616 267T618 251Q618 241 618 238T615 232T608 227Q542 194 491 132T426 -15L424 -29L423 -350Q422 -622 422 -652T415 -706Q397 -780 337 -841T182 -943L167 -949H153Q137 -949 134 -946T131 -928Q131 -914 132 -911T144 -904Q146 -903 148 -902Q299 -820 323 -680Q324 -663 325 -349T327 -19Q355 145 541 241L561 250L541 260Q356 355 327 520Q326 537 325 850T323 1181Q315 1227 293 1267T244 1332T193 1374T151 1401T132 1413Q131 1414 131 1429"],710:[772,-564,1444,-4,1447,"1439 564Q1434 564 1080 631T722 698Q719 698 362 631Q7 564 4 564L0 583Q-4 602 -4 603L720 772L1083 688Q1446 603 1447 603Q1447 602 1443 583L1439 564"],732:[749,-609,1444,1,1442,"1 643Q1 646 76 671T271 722T476 749Q555 749 626 736T742 706T856 676T999 662Q1088 662 1192 684T1363 727T1432 749Q1432 745 1437 731T1442 716Q1442 714 1381 693T1212 645T1012 611Q1000 610 955 610Q851 610 701 653T444 697Q355 697 251 676T80 632T11 610Q11 614 6 628T1 643"],770:[772,-564,0,-1448,3,"-5 564Q-9 564 -363 631T-722 698Q-725 698 -1082 631Q-1437 564 -1440 564L-1444 583Q-1448 602 -1448 603L-724 772L-361 688Q2 603 3 603Q3 602 -1 583L-5 564"],771:[749,-609,0,-1443,-2,"-1443 643Q-1443 646 -1368 671T-1173 722T-968 749Q-889 749 -818 736T-702 706T-588 676T-445 662Q-356 662 -252 684T-81 727T-12 749Q-12 745 -7 731T-2 716Q-2 714 -63 693T-232 645T-432 611Q-444 610 -489 610Q-593 610 -743 653T-1000 697Q-1089 697 -1193 676T-1364 632T-1433 610Q-1433 614 -1438 628T-1443 643"],8730:[1450,950,1000,111,1020,"424 -948Q422 -947 313 -434T202 80L170 31Q165 24 157 10Q137 -21 137 -21Q131 -16 124 -8L111 5L264 248L473 -720Q473 -717 727 359T983 1440Q989 1450 1001 1450Q1007 1450 1013 1445T1020 1433Q1020 1425 742 244T460 -941Q458 -950 439 -950H436Q424 -950 424 -948"],8968:[1450,949,583,246,571,"246 -949V1450H571V1388H308V-949H246"],8969:[1450,949,583,11,336,"11 1388V1450H336V-949H274V1388H11"],8970:[1450,949,583,246,571,"246 -949V1450H308V-887H571V-949H246"],8971:[1450,949,583,11,336,"274 -887V1450H336V-949H11V-887H274"],10216:[1450,950,750,126,654,"126 242V259L361 845Q595 1431 597 1435Q610 1450 624 1450Q634 1450 644 1443T654 1419V1411L422 831Q190 253 190 250T422 -331L654 -910V-919Q654 -936 644 -943T624 -950Q612 -950 597 -935Q595 -931 361 -345L126 242"],10217:[1450,949,750,94,623,"94 1424Q94 1426 97 1432T107 1444T124 1450Q141 1450 152 1435Q154 1431 388 845L623 259V242L388 -345Q153 -933 152 -934Q142 -949 127 -949H125Q95 -949 95 -919V-910L327 -331Q559 247 559 250T327 831Q94 1411 94 1424"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size3/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js deleted file mode 100644 index 296c757..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Size4={directory:"Size4/Regular",family:"MathJax_Size4",id:"MJSZ4",32:[0,0,250,0,0,""],40:[1750,1249,792,237,758,"758 -1237T758 -1240T752 -1249H736Q718 -1249 717 -1248Q711 -1245 672 -1199Q237 -706 237 251T672 1700Q697 1730 716 1749Q718 1750 735 1750H752Q758 1744 758 1741Q758 1737 740 1713T689 1644T619 1537T540 1380T463 1176Q348 802 348 251Q348 -242 441 -599T744 -1218Q758 -1237 758 -1240"],41:[1750,1250,792,33,554,"33 1741Q33 1750 51 1750H60H65Q73 1750 81 1743T119 1700Q554 1207 554 251Q554 -707 119 -1199Q76 -1250 66 -1250Q65 -1250 62 -1250T56 -1249Q55 -1249 53 -1249T49 -1250Q33 -1250 33 -1239Q33 -1236 50 -1214T98 -1150T163 -1052T238 -910T311 -727Q443 -335 443 251Q443 402 436 532T405 831T339 1142T224 1438T50 1716Q33 1737 33 1741"],47:[1750,1249,1278,56,1221,"1166 1738Q1176 1750 1189 1750T1211 1742T1221 1721Q1221 1720 1221 1718T1220 1715Q1219 1708 666 238T111 -1237Q102 -1249 86 -1249Q74 -1249 65 -1240T56 -1220Q56 -1219 56 -1217T57 -1214Q58 -1207 611 263T1166 1738"],91:[1750,1249,583,269,577,"269 -1249V1750H577V1677H342V-1176H577V-1249H269"],92:[1750,1249,1278,56,1221,"56 1720Q56 1732 64 1741T85 1750Q104 1750 111 1738Q113 1734 666 264T1220 -1214Q1220 -1215 1220 -1217T1221 -1220Q1221 -1231 1212 -1240T1191 -1249Q1175 -1249 1166 -1237Q1164 -1233 611 237T57 1715Q57 1716 56 1718V1720"],93:[1750,1249,583,5,313,"5 1677V1750H313V-1249H5V-1176H240V1677H5"],123:[1750,1249,806,144,661,"661 -1243L655 -1249H622L604 -1240Q503 -1190 434 -1107T348 -909Q346 -897 346 -499L345 -98L343 -82Q335 3 287 87T157 223Q146 232 145 236Q144 240 144 250Q144 265 145 268T157 278Q242 333 288 417T343 583L345 600L346 1001Q346 1398 348 1410Q379 1622 600 1739L622 1750H655L661 1744V1727V1721Q661 1712 661 1710T657 1705T648 1700T630 1690T602 1668Q589 1659 574 1643T531 1593T484 1508T459 1398Q458 1389 458 1001Q458 614 457 605Q441 435 301 316Q254 277 202 251L250 222Q260 216 301 185Q443 66 457 -104Q458 -113 458 -501Q458 -888 459 -897Q463 -944 478 -988T509 -1060T548 -1114T580 -1149T602 -1167Q620 -1183 634 -1192T653 -1202T659 -1207T661 -1220V-1226V-1243"],125:[1750,1249,806,144,661,"144 1727Q144 1743 146 1746T162 1750H167H183L203 1740Q274 1705 325 1658T403 1562T440 1478T456 1410Q458 1398 458 1001Q459 661 459 624T465 558Q470 526 480 496T502 441T529 395T559 356T588 325T615 301T637 284T654 273L660 269V266Q660 263 660 259T661 250V239Q661 236 661 234T660 232T656 229T649 224Q577 179 528 105T465 -57Q460 -86 460 -123T458 -499V-661Q458 -857 457 -893T447 -955Q425 -1048 359 -1120T203 -1239L183 -1249H168Q150 -1249 147 -1246T144 -1226Q144 -1213 145 -1210T153 -1202Q169 -1193 186 -1181T232 -1140T282 -1081T322 -1000T345 -897Q346 -888 346 -501Q346 -113 347 -104Q359 58 503 184Q554 226 603 250Q504 299 430 393T347 605Q346 614 346 1002Q346 1389 345 1398Q338 1493 288 1573T153 1703Q146 1707 145 1710T144 1727"],710:[845,-561,1889,-14,1902,"5 561Q-4 561 -9 582T-14 618Q-14 623 -13 625Q-11 628 461 736T943 845Q945 845 1417 738T1896 628Q1902 628 1902 618Q1902 607 1897 584T1883 561Q1881 561 1412 654L945 750L476 654Q6 561 5 561"],732:[823,-582,1889,0,1885,"1212 583Q1124 583 1048 603T923 647T799 691T635 711Q524 711 375 679T120 615L16 583Q14 584 12 587T9 592Q-2 650 2 659Q2 669 38 687Q54 696 146 723T309 767Q527 823 666 823Q759 823 837 803T964 759T1088 715T1252 695Q1363 695 1512 727T1764 791T1871 823Q1872 822 1874 819T1878 814Q1885 783 1885 753Q1885 748 1884 747Q1884 738 1849 719Q1836 712 1740 682T1484 617T1212 583"],770:[845,-561,0,-1903,13,"-1884 561Q-1893 561 -1898 582T-1903 618Q-1903 623 -1902 625Q-1900 628 -1428 736T-946 845Q-944 845 -472 738T7 628Q13 628 13 618Q13 607 8 584T-6 561Q-8 561 -477 654L-944 750L-1413 654Q-1883 561 -1884 561"],771:[823,-582,0,-1889,-4,"-677 583Q-765 583 -841 603T-966 647T-1090 691T-1254 711Q-1365 711 -1514 679T-1768 615L-1873 583Q-1875 584 -1877 587T-1880 592Q-1891 650 -1887 659Q-1887 669 -1851 687Q-1835 696 -1743 723T-1580 767Q-1362 823 -1223 823Q-1130 823 -1052 803T-925 759T-801 715T-637 695Q-526 695 -377 727T-125 791T-18 823Q-17 822 -15 819T-11 814Q-4 782 -4 753Q-4 748 -5 747Q-5 738 -40 719Q-53 712 -149 682T-405 617T-677 583"],8730:[1750,1250,1000,111,1020,"983 1739Q988 1750 1001 1750Q1008 1750 1013 1745T1020 1733Q1020 1726 742 244T460 -1241Q458 -1250 439 -1250H436Q424 -1250 424 -1248L410 -1166Q395 -1083 367 -920T312 -601L201 44L137 -83L111 -57L187 96L264 247Q265 246 369 -357Q470 -958 473 -963L727 384Q979 1729 983 1739"],8968:[1750,1249,639,269,633,"269 -1249V1750H633V1677H342V-1249H269"],8969:[1750,1249,639,5,369,"5 1677V1750H369V-1249H296V1677H5"],8970:[1750,1249,639,269,633,"269 -1249V1750H342V-1176H633V-1249H269"],8971:[1750,1249,639,5,369,"296 -1176V1750H369V-1249H5V-1176H296"],9115:[1155,655,875,291,843,"837 1154Q843 1148 843 1145Q843 1141 818 1106T753 1002T667 841T574 604T494 299Q417 -84 417 -609Q417 -641 416 -647T411 -654Q409 -655 366 -655Q299 -655 297 -654Q292 -652 292 -643T291 -583Q293 -400 304 -242T347 110T432 470T574 813T785 1136Q787 1139 790 1142T794 1147T796 1150T799 1152T802 1153T807 1154T813 1154H819H837"],9116:[610,11,875,291,417,"413 -9Q412 -9 407 -9T388 -10T354 -10Q300 -10 297 -9Q294 -8 293 -5Q291 5 291 127V300Q291 602 292 605L296 609Q298 610 366 610Q382 610 392 610T407 610T412 609Q416 609 416 592T417 473V127Q417 -9 413 -9"],9117:[1165,644,875,291,843,"843 -635Q843 -638 837 -644H820Q801 -644 800 -643Q792 -635 785 -626Q684 -503 605 -363T473 -75T385 216T330 518T302 809T291 1093Q291 1144 291 1153T296 1164Q298 1165 366 1165Q409 1165 411 1164Q415 1163 416 1157T417 1119Q417 529 517 109T833 -617Q843 -631 843 -635"],9118:[1154,655,875,31,583,"31 1143Q31 1154 49 1154H59Q72 1154 75 1152T89 1136Q190 1013 269 873T401 585T489 294T544 -8T572 -299T583 -583Q583 -634 583 -643T577 -654Q575 -655 508 -655Q465 -655 463 -654Q459 -653 458 -647T457 -609Q457 -58 371 340T100 1037Q87 1059 61 1098T31 1143"],9119:[610,11,875,457,583,"579 -9Q578 -9 573 -9T554 -10T520 -10Q466 -10 463 -9Q460 -8 459 -5Q457 5 457 127V300Q457 602 458 605L462 609Q464 610 532 610Q548 610 558 610T573 610T578 609Q582 609 582 592T583 473V127Q583 -9 579 -9"],9120:[1165,644,875,31,583,"56 -644H50Q31 -644 31 -635Q31 -632 37 -622Q69 -579 100 -527Q286 -228 371 170T457 1119Q457 1161 462 1164Q464 1165 520 1165Q575 1165 577 1164Q582 1162 582 1153T583 1093Q581 910 570 752T527 400T442 40T300 -303T89 -626Q78 -640 75 -642T61 -644H56"],9121:[1154,645,667,319,666,"319 -645V1154H666V1070H403V-645H319"],9122:[602,0,667,319,403,"319 0V602H403V0H319"],9123:[1155,644,667,319,666,"319 -644V1155H403V-560H666V-644H319"],9124:[1154,645,667,0,347,"0 1070V1154H347V-645H263V1070H0"],9125:[602,0,667,263,347,"263 0V602H347V0H263"],9126:[1155,644,667,0,347,"263 -560V1155H347V-644H0V-560H263"],9127:[899,10,889,383,718,"712 899L718 893V876V865Q718 854 704 846Q627 793 577 710T510 525Q510 524 509 521Q505 493 504 349Q504 345 504 334Q504 277 504 240Q504 -2 503 -4Q502 -8 494 -9T444 -10Q392 -10 390 -9Q387 -8 386 -5Q384 5 384 230Q384 262 384 312T383 382Q383 481 392 535T434 656Q510 806 664 892L677 899H712"],9128:[1160,660,889,170,504,"389 1159Q391 1160 455 1160Q496 1160 498 1159Q501 1158 502 1155Q504 1145 504 924Q504 691 503 682Q494 549 425 439T243 259L229 250L243 241Q349 175 421 66T503 -182Q504 -191 504 -424Q504 -600 504 -629T499 -659H498Q496 -660 444 -660T390 -659Q387 -658 386 -655Q384 -645 384 -425V-282Q384 -176 377 -116T342 10Q325 54 301 92T255 155T214 196T183 222T171 232Q170 233 170 250T171 268Q171 269 191 284T240 331T300 407T354 524T383 679Q384 691 384 925Q384 1152 385 1155L389 1159"],9129:[10,899,889,384,718,"718 -893L712 -899H677L666 -893Q542 -825 468 -714T385 -476Q384 -466 384 -282Q384 3 385 5L389 9Q392 10 444 10Q486 10 494 9T503 4Q504 2 504 -239V-310V-366Q504 -470 508 -513T530 -609Q546 -657 569 -698T617 -767T661 -812T699 -843T717 -856T718 -876V-893"],9130:[310,10,889,384,504,"384 150V266Q384 304 389 309Q391 310 455 310Q496 310 498 309Q502 308 503 298Q504 283 504 150Q504 32 504 12T499 -9H498Q496 -10 444 -10T390 -9Q386 -8 385 2Q384 17 384 150"],9131:[899,10,889,170,504,"170 875Q170 892 172 895T189 899H194H211L222 893Q345 826 420 715T503 476Q504 467 504 230Q504 51 504 21T499 -9H498Q496 -10 444 -10Q402 -10 394 -9T385 -4Q384 -2 384 240V311V366Q384 469 380 513T358 609Q342 657 319 698T271 767T227 812T189 843T171 856T170 875"],9132:[1160,660,889,384,718,"389 1159Q391 1160 455 1160Q496 1160 498 1159Q501 1158 502 1155Q504 1145 504 925V782Q504 676 511 616T546 490Q563 446 587 408T633 345T674 304T705 278T717 268Q718 267 718 250T717 232Q717 231 697 216T648 169T588 93T534 -24T505 -179Q504 -191 504 -425Q504 -600 504 -629T499 -659H498Q496 -660 444 -660T390 -659Q387 -658 386 -655Q384 -645 384 -424Q384 -191 385 -182Q394 -49 463 61T645 241L659 250L645 259Q539 325 467 434T385 682Q384 692 384 873Q384 1153 385 1155L389 1159"],9133:[10,899,889,170,505,"384 -239V-57Q384 4 389 9Q391 10 455 10Q496 10 498 9Q501 8 502 5Q504 -5 504 -230Q504 -261 504 -311T505 -381Q505 -486 492 -551T435 -691Q357 -820 222 -893L211 -899H195Q176 -899 173 -896T170 -874Q170 -858 171 -855T184 -846Q262 -793 312 -709T378 -525Q378 -524 379 -522Q383 -493 384 -351Q384 -345 384 -334Q384 -276 384 -239"],9143:[935,885,1056,111,742,"742 -871Q740 -873 737 -876T733 -880T730 -882T724 -884T714 -885H702L222 569L180 484Q138 399 137 399Q131 404 124 412L111 425L265 736L702 -586V168L703 922Q713 935 722 935Q734 935 742 920V-871"],10216:[1750,1248,806,140,703,"140 242V260L386 994Q633 1729 635 1732Q643 1745 657 1749Q658 1749 662 1749T668 1750Q682 1749 692 1740T702 1714V1705L214 251L703 -1204L702 -1213Q702 -1230 692 -1239T667 -1248H664Q647 -1248 635 -1231Q633 -1228 386 -493L140 242"],10217:[1750,1248,806,103,665,"103 1714Q103 1732 114 1741T137 1750Q157 1750 170 1732Q172 1729 419 994L665 260V242L419 -493Q172 -1228 170 -1231Q158 -1248 141 -1248H138Q123 -1248 113 -1239T103 -1213V-1204L591 251L103 1705V1714"],57344:[625,14,1056,702,742,"722 -14H720Q708 -14 702 0V306L703 612Q713 625 722 625Q734 625 742 610V0Q734 -14 724 -14H722"],57345:[605,14,1056,702,1076,"702 589Q706 601 718 605H1061Q1076 597 1076 585Q1076 572 1061 565H742V0Q734 -14 724 -14H722H720Q708 -14 702 0V589"],57680:[120,213,450,-24,460,"-18 -213L-24 -207V-172L-16 -158Q75 2 260 84Q334 113 415 119Q418 119 427 119T440 120Q454 120 457 117T460 98V60V25Q460 7 457 4T441 0Q308 0 193 -55T25 -205Q21 -211 18 -212T-1 -213H-18"],57681:[120,213,450,-10,474,"-10 60Q-10 104 -10 111T-5 118Q-1 120 10 120Q96 120 190 84Q375 2 466 -158L474 -172V-207L468 -213H451H447Q437 -213 434 -213T428 -209T423 -202T414 -187T396 -163Q331 -82 224 -41T9 0Q-4 0 -7 3T-10 25V60"],57682:[333,0,450,-24,460,"-24 327L-18 333H-1Q11 333 15 333T22 329T27 322T35 308T54 284Q115 203 225 162T441 120Q454 120 457 117T460 95V60V28Q460 8 457 4T442 0Q355 0 260 36Q75 118 -16 278L-24 292V327"],57683:[333,0,450,-10,474,"-10 60V95Q-10 113 -7 116T9 120Q151 120 250 171T396 284Q404 293 412 305T424 324T431 331Q433 333 451 333H468L474 327V292L466 278Q375 118 190 36Q95 0 8 0Q-5 0 -7 3T-10 24V60"],57684:[120,0,400,-10,410,"-10 0V120H410V0H-10"]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size4/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js deleted file mode 100644 index c240b66..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Typewriter,{32:[0,0,250,0,0,""],33:[622,0,525,206,320,"206 565Q206 590 222 606T265 622Q287 621 303 606T319 565T314 392L308 216Q299 194 273 194H262Q247 194 241 195T228 200T217 216L211 392Q206 539 206 565ZM206 56Q206 83 223 99T265 115Q288 113 304 99T320 58Q320 33 303 17T262 0Q237 0 222 17T206 56"],34:[623,-333,525,122,402,"122 575Q122 593 137 608T173 623Q196 623 210 608T225 575Q225 562 218 464Q212 373 211 361T201 341Q193 333 173 333Q154 333 146 341Q138 348 137 360T129 464Q122 561 122 575ZM299 575Q299 593 314 608T350 623Q373 623 387 608T402 575Q402 562 395 464Q389 373 388 361T378 341Q370 333 350 333Q331 333 323 341Q315 348 314 360T306 464Q299 561 299 575"],35:[612,0,525,36,489,"93 163Q74 163 65 164T46 173T36 198Q36 210 40 215T61 233H131V236Q132 239 140 307T149 377Q149 379 105 379L61 380Q36 392 36 414Q36 450 86 450Q91 450 99 450T112 449H159Q163 480 167 517Q168 524 170 545T174 573T180 591T191 607T210 611Q223 611 232 604T243 588L245 580Q245 565 238 511T230 451Q230 449 282 449H333Q337 480 341 517Q342 524 343 537T345 556T348 573T352 589T359 600T370 608T384 611Q395 611 406 602T419 580Q419 565 412 511T404 451Q404 449 431 449H442Q477 449 485 429Q489 421 489 414Q489 392 463 380L428 379H394V376Q393 373 385 305T376 235Q376 233 419 233H463L468 230Q472 227 473 227T477 223T482 218T486 213T488 206T489 198Q489 162 436 162Q430 162 422 162T412 163H366V161Q364 159 357 92Q356 85 355 73T353 54T350 37T346 22T339 11T328 3T314 0Q303 0 292 9T279 31Q279 37 287 96T295 162Q295 163 244 163H192V161Q190 159 183 92Q182 85 181 73T179 54T176 37T172 22T165 11T154 3T140 0Q129 0 118 9T105 31Q105 37 113 96T121 162Q121 163 93 163ZM323 377Q323 379 272 379H220V376Q219 373 211 305T202 235Q202 233 253 233H305V236Q306 239 314 307T323 377"],36:[694,82,525,58,466,"415 397Q392 397 377 411T362 448Q362 464 376 485Q369 498 362 506T346 520T332 528T315 533T300 538V445L301 353L311 350Q382 334 424 284T466 174Q466 115 425 65T303 -2L300 -3V-30Q300 -64 291 -74Q283 -82 262 -82H255Q234 -82 225 -60L224 -32V-4L213 -2Q152 6 106 51T59 170V180Q59 197 74 213Q89 227 110 227T146 213T162 174Q162 156 147 137Q153 123 161 112T176 95T191 85T205 79T216 76T224 74V283L213 285Q147 298 103 343T58 449Q58 516 108 560T224 614V643V654Q224 666 226 673T237 687T264 694Q289 693 294 683T300 642V615H303Q355 607 390 587T440 540T460 493T466 453Q466 425 451 411T415 397ZM137 452Q137 425 158 404T198 376T223 369Q224 369 224 453T223 537Q198 532 168 509T137 452ZM301 75Q307 75 325 83T365 116T387 171Q387 238 300 267V171Q300 75 301 75"],37:[694,83,525,35,489,"35 560Q35 607 54 645T110 693Q111 693 116 693T125 694Q165 692 187 651T210 560Q210 506 186 467T123 428Q84 428 60 466T35 560ZM139 560Q139 574 136 587T130 608T124 615Q122 617 120 614Q106 595 106 561Q106 516 121 506Q123 504 125 507Q139 526 139 560ZM123 -83Q107 -83 98 -73T88 -48Q88 -43 89 -41Q90 -37 229 316T370 675Q381 694 400 694Q416 694 426 684T436 659Q436 654 435 652Q434 647 295 294T153 -65Q144 -83 123 -83ZM314 50Q314 104 338 143T400 183Q439 183 464 144T489 50T465 -43T402 -82Q358 -82 336 -41T314 50ZM417 50Q417 71 413 85T405 102L401 106Q386 95 386 50Q386 29 390 15T398 -2L402 -6Q417 5 417 50"],38:[622,11,525,28,490,"96 462Q96 546 132 584T211 622Q255 622 284 583T314 474Q314 395 224 305L208 288Q213 275 226 251L265 185L269 179Q273 184 299 246L332 333L342 363Q342 364 341 365Q334 365 334 393Q334 406 334 410T340 420T356 431H412H440Q467 431 478 424T490 393Q490 376 484 367T470 357T448 355H441H415L399 312Q349 176 322 127L315 115L323 106Q360 65 393 65Q405 65 410 80T416 109Q416 140 452 140Q487 140 487 105Q487 56 460 23T391 -11L286 41L273 53L262 42Q212 -11 151 -11Q97 -11 63 33T28 143Q28 161 30 176T38 205T47 227T60 247T72 261T84 274T94 283L122 311L119 323Q96 392 96 462ZM243 474Q243 533 218 545L215 546Q212 546 210 546Q182 546 169 501Q167 492 167 466Q167 419 179 368L188 377Q234 425 242 461Q243 465 243 474ZM217 129Q185 174 154 235Q121 214 115 176Q113 168 113 143Q113 83 139 67Q141 66 152 66Q191 66 228 112L217 129"],39:[611,-287,525,175,349,"205 554Q205 577 221 594T263 611Q302 611 325 577T349 490Q349 409 298 347Q285 330 258 309T214 287Q203 289 189 302T175 327Q175 341 185 349T213 369T245 402Q269 437 273 483V497Q264 496 263 496Q240 496 223 513T205 554"],40:[694,82,525,166,437,"437 -53Q437 -82 399 -82H394Q377 -82 342 -55Q259 7 213 102T166 306Q166 412 211 507T342 667Q377 694 393 694H399Q437 694 437 665Q437 654 426 643T397 620T356 584T311 525Q301 511 290 488T264 412T250 306Q250 191 300 105T422 -27Q437 -37 437 -53"],41:[694,82,525,87,358,"87 664Q87 694 126 694Q138 694 147 690T183 667Q266 605 312 510T358 306Q358 193 307 93T161 -70Q142 -82 126 -82Q105 -82 96 -73T87 -53Q87 -47 88 -44Q92 -36 116 -19T173 34T230 119Q273 206 273 306Q273 408 231 494T109 635Q87 649 87 664"],42:[520,-89,525,68,456,"222 487Q224 501 235 510T262 520Q279 520 289 510T302 487Q302 458 301 429Q301 421 301 413T301 398T300 386T300 377V374Q300 373 301 373Q304 373 353 403T416 434Q432 434 444 423T456 393Q456 389 456 386T454 379T451 373T448 368T442 363T436 358T427 353T417 348T405 342T391 334Q345 309 339 305L388 279Q400 273 412 266T432 255T441 250Q456 238 456 218Q456 200 445 189T417 177Q403 177 354 207T301 238Q300 238 300 237V234Q300 231 300 226T300 214T301 199T301 182Q302 153 302 124Q300 109 289 100T262 90T235 100T222 124Q222 153 223 182Q223 190 223 198T223 213T224 225T224 234V237Q224 238 223 238Q220 238 171 208T108 177Q92 177 80 188T68 218Q68 237 79 246T134 277Q180 303 185 306L136 332Q124 338 112 345T92 356T83 361Q68 373 68 393Q68 411 79 422T107 434Q121 434 170 404T223 373Q224 373 224 374V377Q224 380 224 385T224 397T223 412T223 429Q222 458 222 487"],43:[531,-81,525,38,487,"147 271Q138 271 122 271T98 270Q68 270 53 277T38 306T53 335T98 342Q105 342 121 342T147 341H227V423L228 505Q241 531 262 531Q268 531 273 530T282 525T287 519T293 511L297 505V341H377H430Q457 341 467 338T483 321Q487 313 487 306Q487 295 480 286T463 273Q457 271 377 271H297V107Q281 81 262 81Q250 81 242 87T230 100L228 107L227 189V271H147"],44:[140,139,525,173,353,"193 37T193 70T213 121T260 140Q302 140 327 108T353 36Q353 -7 336 -43T294 -98T249 -128T215 -139Q204 -139 189 -125Q177 -111 174 -101Q172 -84 183 -77T217 -61T253 -33Q261 -24 272 1L265 0Q234 0 214 18"],45:[341,-271,525,57,468,"57 306Q57 333 86 341H438Q468 332 468 306T438 271H86Q57 280 57 306"],46:[140,-1,525,193,332,"193 70Q193 105 214 122T258 140Q291 140 311 120T332 70Q332 44 314 23T262 1Q234 1 214 18T193 70"],47:[694,83,525,58,466,"94 -83Q78 -83 68 -73T58 -48Q58 -44 60 -36Q62 -31 227 314T399 673Q410 694 431 694Q445 694 455 684T466 659Q466 656 464 648Q463 643 298 298T125 -62Q114 -83 94 -83"],48:[621,10,525,42,482,"42 305Q42 450 111 535T257 621Q335 621 390 562Q482 468 482 306Q482 174 418 82T262 -10T106 82T42 305ZM257 545Q209 545 168 481T126 320Q126 220 162 147Q204 65 262 65Q318 65 358 139T398 320V328Q395 411 364 470T284 543Q270 545 257 545"],49:[622,-1,525,99,450,"99 461Q99 470 99 474T104 487T120 498T151 502Q213 517 251 596Q264 622 283 622Q308 622 319 597V76H373H401Q428 76 439 69T450 38Q450 11 428 1H127Q104 10 104 38Q104 62 115 69T153 76H181H235V269Q235 461 234 461Q184 426 137 424H133Q124 424 119 425T109 431T99 447V461"],50:[622,-1,525,52,472,"52 462Q52 528 110 575T247 622H250Q343 622 407 565T472 421Q472 371 446 324T390 248T308 178Q307 177 275 151T214 101L185 77Q185 76 286 76H388V87Q388 105 397 114T430 123T463 114Q470 107 471 100T472 61V42Q472 24 468 16T450 1H75Q53 10 53 32V38V48Q53 57 63 67T127 122Q153 144 169 157L289 256Q388 345 388 419Q388 473 346 509T231 545H224Q176 545 146 499L144 494Q155 476 155 459Q154 459 155 455T154 444T148 430T136 417T114 408Q113 408 110 408T104 407Q80 407 66 422T52 462"],51:[622,11,525,44,479,"260 546Q233 546 211 541T180 531T171 524L174 514Q177 505 177 497Q177 476 162 461T125 446Q106 446 90 459T73 504Q76 540 98 565T150 601T203 616T239 621Q241 622 265 622Q322 620 362 602T420 558T444 513T451 478Q451 386 369 329L375 326Q381 323 386 320T401 311T419 298T436 283T452 263T466 240T475 212T479 180Q479 99 416 44T259 -11T105 28T44 130Q44 154 59 168T95 183Q117 183 132 169T148 131Q148 119 139 101Q175 65 260 65Q316 65 355 97T395 179Q395 211 375 240Q336 292 253 292H234H215Q194 292 185 299T175 330Q175 350 184 359Q192 368 238 370T309 384Q336 398 351 423T367 474Q367 496 350 513Q321 546 260 546"],52:[623,-1,525,29,495,"235 1Q213 10 213 32V38V46Q213 65 230 73Q236 76 274 76H314V168H183L52 169Q37 175 33 182T29 205V218L30 244Q53 283 155 443T264 613Q276 623 298 623H323H363Q378 616 385 601V244H429H450Q474 244 484 237T495 206Q495 179 477 171Q471 168 429 168H385V76H425H442Q466 76 476 69T487 38Q487 10 465 1H235ZM314 244V554L117 245L215 244H314"],53:[612,10,525,52,472,"387 189Q387 244 354 278T273 313Q230 313 205 301T163 271T138 249H120Q102 249 97 251Q85 258 83 266T80 311Q80 320 80 359T81 430Q81 587 82 591Q88 605 103 610H108Q112 610 120 610T138 610T163 610T192 611T225 611T260 611H415Q416 610 421 607T428 602T432 596T436 587T437 573Q437 567 437 562T434 554T431 548T427 543T423 540T418 538L415 536L289 535H164V363L170 366Q175 368 184 372T207 380T238 386T276 389Q357 389 414 331T472 187Q472 116 412 53T245 -10Q218 -10 209 -9Q126 5 89 48T52 137Q52 164 68 177T104 191Q130 191 143 175T156 141Q156 132 154 125T149 113T146 107Q146 104 155 95T188 76T245 65Q298 65 342 98T387 189"],54:[622,11,525,44,479,"357 536Q357 546 318 546Q258 546 205 497T133 357V353L144 361Q210 402 285 402Q362 402 414 350Q479 285 479 193Q479 111 418 50T263 -11Q234 -11 207 -3T149 26T97 81T60 171T45 301Q45 444 129 533T319 622Q388 622 421 589T454 510Q454 491 442 475T402 458Q373 458 362 475T350 510Q350 520 354 528L357 536ZM319 326T269 326T179 298T136 223Q136 202 143 174T176 112T237 68Q246 66 265 66Q319 66 360 107Q395 146 395 197Q395 250 356 289Q319 326 269 326"],55:[627,10,525,44,480,"204 -10Q162 -10 162 40Q162 146 198 261T310 477Q311 478 321 491T342 517T358 535H128V524Q128 506 119 497Q111 489 86 489H78Q55 489 46 508Q44 513 44 557V580Q44 605 52 616T88 627H93Q114 627 125 611H458Q474 598 477 593T480 573Q480 559 478 553T469 543T446 521T408 477Q252 290 246 49Q246 43 246 37T246 27T245 22Q243 11 233 1T204 -10"],56:[621,10,525,45,480,"58 460Q58 523 117 572T254 621Q290 621 298 620Q376 607 421 560T466 460Q466 441 460 424T443 393T421 370T397 352T374 340T357 332L350 330L356 328Q363 325 371 321T392 310T415 295T439 274T459 249T473 217T479 179Q479 102 418 46T262 -10T106 46T45 179Q45 202 52 222T70 257T96 284T123 305T148 319T167 328L174 330L170 332Q166 333 159 336T145 343Q104 362 81 393T58 460ZM382 458Q382 491 349 518T263 546Q215 546 179 521T142 458Q142 421 178 395T262 368Q315 368 348 396T382 458ZM396 178Q396 223 358 257T263 292Q206 292 167 258T128 178Q128 137 163 102T262 66Q324 66 360 101T396 178"],57:[622,11,525,46,479,"392 259Q333 210 236 210H233Q163 210 109 262Q46 325 46 411T99 550Q164 622 264 622Q293 622 319 615T376 587T428 532T464 440T479 304Q479 167 400 78T217 -11Q140 -11 105 22T70 101Q70 124 84 138T122 153Q150 153 162 137T174 101Q174 91 168 76Q179 65 216 65Q267 65 300 93Q322 109 339 130T366 173T380 210T388 242T392 259ZM388 389Q388 438 357 492T268 546T185 520Q129 479 129 415Q129 384 138 363Q145 349 156 334T195 302T255 285Q305 285 345 313T388 389"],58:[431,-1,525,193,332,"193 361Q193 396 214 413T258 431Q291 431 311 411T332 361Q332 335 314 314T262 292Q234 292 214 309T193 361ZM193 70Q193 105 214 122T258 140Q291 140 311 120T332 70Q332 44 314 23T262 1Q234 1 214 18T193 70"],59:[431,139,525,175,337,"193 361Q193 396 214 413T258 431Q291 431 311 411T332 361Q332 335 314 314T262 292Q234 292 214 309T193 361ZM193 70Q193 105 214 122T259 140Q301 140 319 108T337 33Q337 -38 291 -88T214 -139Q203 -139 189 -126T175 -97Q175 -85 182 -78T200 -66T225 -50T249 -17Q256 -3 256 0Q252 1 248 1Q242 2 235 5T218 15T200 36T193 70"],60:[557,-55,525,57,469,"468 90Q468 76 458 66T433 55Q426 55 419 58Q413 61 243 168T68 280Q57 291 57 306T68 332Q72 335 241 442T416 553Q424 557 432 557Q447 557 457 547T468 522T456 496Q454 494 305 399L158 306L305 213Q341 190 390 159Q443 125 452 119T464 106V105Q468 97 468 90"],61:[417,-195,525,38,487,"38 382Q38 409 67 417H457Q487 408 487 382Q487 358 461 348H64Q51 352 45 360T38 376V382ZM67 195Q38 204 38 230Q38 255 62 264Q66 265 264 265H461L464 264Q467 262 469 261T475 256T481 249T485 240T487 230Q487 204 457 195H67"],62:[557,-55,525,57,468,"57 522Q57 539 67 548T90 557Q98 557 105 554Q111 551 281 444T456 332Q468 320 468 306T456 280Q452 276 282 169T105 58Q98 55 91 55Q79 55 68 63T57 90Q57 105 68 116Q70 118 219 213L366 306L219 399Q75 491 71 494Q57 507 57 522"],63:[617,1,525,62,462,"62 493Q62 540 107 578T253 617Q366 617 414 578T462 490Q462 459 445 434T411 400L394 390Q315 347 296 287Q294 278 293 247V217Q285 201 278 198T246 194T216 197T201 215V245V253Q201 379 351 456Q366 464 375 477Q377 482 377 490Q377 517 339 528T251 540Q182 540 159 517Q166 503 166 490Q166 468 151 453T114 438Q96 438 79 451T62 493ZM190 58Q190 85 208 100T249 115Q272 113 288 99T304 58Q304 33 287 17T246 0T206 16T190 58"],64:[617,6,525,44,481,"44 306Q44 445 125 531T302 617Q332 617 358 607T411 574T456 502T479 387Q481 361 481 321Q481 203 421 143Q381 103 332 103Q266 103 225 165T183 307Q183 390 227 449T332 508Q358 508 378 498Q350 541 304 541Q229 541 172 473T115 305Q115 208 171 140T306 71H310Q358 71 397 105Q409 115 436 115Q458 115 462 113Q481 106 481 86Q481 73 468 61Q401 -6 305 -6Q262 -6 217 14T133 71T69 170T44 306ZM410 306Q410 361 386 396T333 431Q300 431 277 394T254 305Q254 256 276 218T332 180Q364 180 387 217T410 306"],65:[623,-1,525,28,496,"191 76Q212 75 220 68T229 38Q229 10 208 1H129H80Q48 1 38 7T28 38Q28 51 29 57T40 69T70 76Q89 76 89 78Q90 79 117 205T173 461T205 599Q212 623 250 623H262H273Q312 623 319 599Q322 591 350 461T406 205T435 78Q435 76 454 76H458Q484 76 493 59Q496 53 496 38Q496 11 478 3Q474 1 395 1H317Q295 8 295 38Q295 65 311 73Q316 75 333 76L348 77V78Q348 80 341 112L334 143H190L183 112Q176 80 176 78Q175 76 178 76Q180 76 191 76ZM318 221Q313 238 288 366T263 519Q263 526 262 527Q261 527 261 520Q261 493 236 365T206 221Q206 219 262 219T318 221"],66:[611,-1,525,17,482,"39 1Q17 10 17 32V38V46Q17 65 34 73Q40 76 61 76H84V535H61H54Q27 535 19 553Q17 557 17 573Q17 583 17 587T23 599T39 610Q40 611 179 611Q320 610 332 607Q332 607 339 605Q394 591 427 547T461 454Q461 413 436 378T369 325L358 320Q405 311 443 270T482 169Q482 112 445 64T345 3L334 1H39ZM309 533Q302 535 234 535H168V356H230Q284 357 296 358T323 368Q346 380 361 402T377 452Q377 482 358 505T309 533ZM398 176Q396 218 371 246T315 279Q310 280 237 280H168V76H239Q316 77 327 81Q329 82 334 84Q398 107 398 176"],67:[622,11,525,40,485,"40 305Q40 437 110 529T281 622Q315 622 343 611T387 589T404 578Q409 585 415 596T425 611T435 618T452 622Q472 622 478 609T485 566Q485 559 485 540T484 508V460Q484 413 478 403T442 393Q417 393 409 402Q400 409 400 420Q400 428 395 445T380 487T347 528T295 546Q235 546 180 483T124 306Q124 245 141 197T186 121T241 80T296 66Q346 66 373 103T400 178Q400 209 435 209H442H450Q484 209 484 172Q480 96 421 43T281 -11Q177 -11 109 84T40 305"],68:[612,-1,525,16,485,"38 1Q16 8 16 38Q16 62 32 73Q39 76 58 76H78V535H58Q40 535 32 538Q16 548 16 573Q16 587 17 591Q23 604 34 607T83 611H166H176Q188 611 209 611T239 612Q299 612 337 597T415 530Q485 438 485 300Q485 180 431 100T301 3L291 1H38ZM400 301Q400 363 385 410T346 482T303 519T267 534Q261 535 210 535H162V76H214L267 77Q323 89 361 148T400 301"],69:[612,-1,525,18,502,"374 271Q374 241 367 232T332 223Q307 223 299 231Q290 240 290 263V279H173V76H418V118V144Q418 167 426 176T460 186Q491 186 500 166Q502 161 502 93V52Q502 25 499 17T480 1H41Q19 9 19 32V38Q19 63 36 73Q42 76 65 76H89V535H65H55Q44 535 38 537T25 548T19 573Q19 602 41 610H47Q53 610 63 610T88 610T121 610T160 611T204 611T251 611H458Q460 609 465 606T471 602T475 598T478 593T479 586T480 576T480 562V526V488Q480 452 462 444Q458 442 438 442Q413 442 405 450Q398 457 397 463T396 501V535H173V355H290V371Q290 394 299 403T332 412Q363 412 372 392Q374 387 374 317V271"],70:[612,-1,525,22,490,"384 260Q384 230 377 221T342 212Q317 212 309 220Q300 229 300 252V268H179V76H249Q264 67 267 61T271 38Q271 10 249 1H44Q22 9 22 32V38Q22 63 39 73Q45 76 69 76H95V535H69H59Q42 535 32 542T22 573Q22 602 44 610H50Q56 610 66 610T91 610T125 610T164 611T208 611T257 611H468Q470 609 475 606T481 602T485 598T488 593T489 586T490 576T490 562V526V488Q490 452 472 444Q468 442 448 442Q423 442 415 450Q408 457 407 463T406 501V535H179V344H300V360Q300 383 309 392T342 401Q373 401 382 381Q384 376 384 306V260"],71:[623,11,525,38,496,"38 306Q38 447 105 534T261 622Q280 622 298 618T329 608T350 596T366 585L371 581Q373 581 377 591T390 612T417 622Q437 622 443 609T450 566Q450 559 450 540T449 508V460Q449 413 443 403T407 393Q392 393 386 394T373 402T364 426Q360 472 335 509T271 546Q214 546 168 477T121 308Q121 210 164 138T271 65Q293 65 310 78T337 109T352 147T360 180T362 195Q362 196 333 196L304 197Q282 204 282 227V234Q282 247 282 251T288 261T304 272H474Q488 263 492 256T496 234Q496 211 479 199Q475 197 461 196H449V21Q441 6 434 3T412 -1H407H402Q385 -1 379 3T364 28Q350 14 322 2T260 -11Q173 -11 106 76T38 306"],72:[611,-1,525,16,508,"16 571Q16 597 27 604T74 611H125H208Q223 602 226 596T230 573Q230 559 227 551T217 540T204 536T186 535H165V356H359V535H338H333Q306 535 297 552Q295 556 295 573Q295 586 295 590T301 600T317 611H486Q501 602 504 596T508 573Q508 559 505 551T495 540T482 536T464 535H443V76H464H470Q482 76 489 75T502 64T508 38Q508 10 486 1H317Q306 5 301 11T296 21T295 38V44Q295 66 311 73Q318 76 338 76H359V280H165V76H186H192Q204 76 211 75T224 64T230 38Q230 10 208 1H39Q28 5 23 11T18 21T17 38V44Q17 66 33 73Q40 76 60 76H81V535H60Q45 535 38 536T24 545T16 571"],73:[611,-1,525,72,452,"400 76Q431 76 441 69T452 38Q452 29 452 26T450 18T443 9T430 1H95Q84 6 79 12T73 23T72 38Q72 65 90 73Q96 76 157 76H220V535H157H124Q93 535 83 542T72 573Q72 603 93 610Q97 611 264 611H430Q432 609 436 607T444 602T449 594Q452 588 452 573Q452 546 434 538Q428 535 367 535H304V76H367H400"],74:[612,11,525,57,479,"202 543T202 573T224 610H228Q231 610 237 610T251 610T269 610T291 611T315 611T342 611H457Q471 602 475 595T479 573Q479 549 462 538Q454 535 432 535H408V328Q408 159 408 133T402 93Q386 48 340 19T229 -11Q158 -11 108 16T57 100Q57 129 73 141T108 154Q128 154 143 140T159 102Q159 93 155 79Q188 65 228 65H230Q290 65 318 106Q323 115 323 139T324 329V535H274L224 536Q202 543 202 573"],75:[611,-1,525,18,495,"18 549T18 573T29 604T70 611H118H193Q207 603 210 596T214 573Q214 549 198 538Q191 535 172 535H152V421Q152 344 152 326T153 309L242 422L329 534Q327 535 322 536T314 538T308 542T303 548T300 558T298 573Q298 600 316 608Q322 611 392 611H463Q477 602 481 595T485 573Q485 535 446 535H441H420L281 357L436 77L454 76Q473 75 478 73Q495 62 495 38Q495 10 473 1H345Q334 5 329 11T324 21T323 38Q323 51 324 56T332 68T355 77L233 296L152 192V76H172Q191 76 198 73Q214 63 214 38Q214 9 193 1H41Q18 8 18 38Q18 61 35 73Q42 76 61 76H81V535H61Q42 535 35 538Q18 549 18 573"],76:[611,0,525,25,488,"27 594Q34 605 43 608T84 611H154H213Q258 611 269 605T281 573Q281 546 263 538Q257 535 222 535H185V76H404V118V145Q404 168 411 177T446 186H453Q478 186 486 167Q488 161 488 93V50Q488 24 485 17T466 1L258 0H147H99Q47 0 36 6T25 38Q25 59 35 69Q44 76 76 76H101V535H76H64Q36 535 27 552Q25 557 25 573T27 594"],77:[611,-1,525,11,512,"50 535Q37 536 31 537T18 547T12 573Q12 598 22 604T62 611H91H121Q147 611 158 607T178 587Q183 579 222 446T261 293Q261 289 262 288Q263 288 263 292Q263 311 298 434T346 588Q353 603 365 607T402 611H435H450Q488 611 500 605T512 573Q512 556 506 547T493 537T474 535H459V76H474Q487 75 493 74T505 64T512 38Q512 11 494 3Q490 1 424 1H386Q355 1 345 7T335 38Q335 55 341 64T354 74T373 76H388V302Q388 512 387 519Q382 482 346 359T304 228Q292 204 262 204T220 228Q215 237 179 359T137 519Q136 512 136 302V76H151Q164 75 170 74T182 64T189 38Q189 11 171 3Q167 1 101 1H63Q32 1 22 7T12 38Q12 55 18 64T31 74T50 76H65V535H50"],78:[611,0,525,20,504,"20 571Q20 598 30 604T73 611H105H136Q152 611 160 611T177 607T189 601T198 587T206 568T217 537T231 497Q354 142 365 95L368 84V535H347H342Q314 535 306 552Q304 556 304 573Q304 586 304 590T310 600T326 611H482Q497 602 500 596T504 573Q504 559 501 551T491 540T478 536T460 535H439V25Q432 7 424 4T389 0H374Q334 0 322 31L293 115Q171 468 159 517L156 528V76H177H183Q195 76 202 75T215 64T221 38Q221 10 199 1H43Q32 5 27 11T22 21T21 38V44Q21 66 37 73Q44 76 64 76H85V535H64Q49 535 42 536T28 545T20 571"],79:[621,10,525,56,468,"102 588Q140 621 240 621Q323 621 335 620Q393 613 422 588Q450 560 459 493T468 306Q468 185 460 118T422 23Q382 -10 289 -10H262H235Q142 -10 102 23Q74 50 65 118T56 306Q56 427 64 494T102 588ZM363 513Q357 523 347 530T324 540T302 544T280 546H268Q192 546 167 521Q150 501 145 452T140 300Q140 235 142 197T151 130T172 89T207 71T262 65Q317 65 341 81T374 144T384 300Q384 474 363 513"],80:[612,-1,525,19,480,"41 1Q19 9 19 32V38Q19 63 36 73Q42 76 65 76H89V535H65H55Q38 535 29 543T19 576Q19 603 41 610H49Q57 610 70 610T100 610T136 611T175 611Q190 611 216 611T255 612Q321 612 363 598T441 537Q480 486 480 427V421Q480 354 447 311T378 251Q339 230 275 230H239H173V76H197Q220 76 227 73Q244 62 244 38Q244 10 222 1H41ZM396 421Q396 461 369 491T300 533Q294 534 233 535H173V306H233Q294 307 300 308Q345 319 370 352T396 421"],81:[622,138,525,56,468,"56 306Q56 380 58 426T68 510T87 568T120 600T170 617T240 621Q323 621 335 620Q393 613 422 588Q450 560 459 493T468 306Q468 124 447 66Q433 23 394 6L424 -53Q454 -112 454 -118Q454 -128 441 -138H377Q367 -135 363 -129T333 -69L304 -11H254Q205 -10 180 -8T128 6T91 36T70 92T58 178T56 306ZM227 151Q227 171 262 171H276H281Q292 171 296 171T305 170T313 165T317 158T323 145T332 127L353 88Q356 88 361 95T372 131T382 202Q384 228 384 306Q384 452 371 492T304 544Q296 545 251 545Q230 545 215 543T188 534T169 520T155 497T147 466T143 423T141 371T140 306Q140 248 141 217T146 154T157 109T178 83T212 68T262 65H266L264 70Q261 75 256 85T247 105Q227 145 227 151"],82:[612,11,525,16,522,"16 571Q16 598 27 605T76 612Q84 612 108 612T148 611Q268 611 294 605Q346 592 389 550T432 440Q432 394 410 359Q393 329 366 310L358 303Q387 273 399 239Q405 219 405 178T408 106T421 68Q426 65 428 65Q433 65 435 74T438 96T441 112Q450 130 480 130H485Q519 130 522 100Q522 79 516 56T488 11T434 -11Q421 -11 408 -8T377 5T344 37T324 93Q322 101 322 154L321 209Q304 257 257 267Q252 268 207 268H165V76H186H192Q204 76 211 75T224 64T230 38Q230 10 208 1H39Q28 5 23 11T18 21T17 38V44Q17 66 33 73Q40 76 60 76H81V535H60Q45 535 38 536T24 545T16 571ZM348 440Q348 478 321 502T260 532Q252 534 208 535H165V344H208Q212 344 223 344T239 345T252 346T266 348T278 351T293 358Q348 387 348 440"],83:[622,11,525,51,472,"52 454Q52 524 107 572T229 621Q266 621 274 620Q326 610 360 588L371 581Q377 594 379 598T386 610T397 619T412 622Q433 622 439 610T446 570Q446 563 446 545T445 515V479Q445 441 444 432T436 417Q428 408 403 408T370 417Q361 424 361 434Q361 439 360 448T351 476T331 509T295 535T238 546Q194 546 163 522T132 458Q132 435 148 412Q155 401 166 393T192 380T218 371T247 364T270 359Q341 342 349 339Q389 325 418 296T461 229Q472 201 472 164Q469 92 417 41T287 -11Q240 -11 200 -1T143 19L126 29Q117 6 109 -2Q100 -11 84 -11Q64 -11 58 1T51 42Q51 49 51 66T52 95V135Q52 173 53 180T61 194Q70 203 95 203Q119 203 127 194Q136 186 136 168Q143 66 284 66H290Q325 66 350 85Q391 115 391 165Q391 204 369 228T322 260Q320 260 255 275T185 293Q123 309 88 355T52 454"],84:[612,-1,525,26,498,"129 38Q129 51 129 55T135 65T151 76H220V535H110V501Q110 470 109 464T101 450Q93 442 68 442H60Q37 442 28 461Q26 466 26 527L27 589Q36 607 49 610H55Q61 610 72 610T97 610T131 610T170 611T215 611T264 611H476Q478 609 483 606T489 602T493 598T496 593T497 586T498 576T498 562V526V488Q498 452 480 444Q476 442 456 442Q431 442 423 450Q416 457 415 463T414 501V535H304V76H374Q389 67 392 61T396 38Q396 10 374 1H151Q140 5 135 11T130 21T129 38"],85:[612,11,525,-4,528,"-3 573Q-3 597 8 604T50 612Q57 612 77 612T111 611H200Q214 602 218 595T222 573Q222 549 205 538Q198 535 175 535H151V359Q151 333 151 291Q152 177 156 162Q157 160 157 159Q165 123 193 95T262 66Q303 66 330 94T367 159Q371 175 371 191T373 359V535H349H339Q328 535 322 537T309 548T303 573T306 595T325 611H506Q520 602 524 595T528 573Q528 549 511 538Q504 535 481 535H457V364Q457 189 456 182Q448 101 394 45T262 -11Q189 -11 132 43T68 182Q67 189 67 364V535H43H33Q22 535 16 537T3 548T-3 573"],86:[613,7,525,19,505,"19 578Q19 585 20 590T23 598T29 604T38 608T48 610T62 611T78 612T97 611T119 611H195Q210 602 213 596T217 573Q217 561 216 555T206 542T179 535H164Q166 529 188 435T235 231T261 94L262 84V88Q263 91 263 94Q265 121 289 231T336 438L360 535H345Q308 535 308 566V573Q308 586 308 590T314 600T330 611H484Q499 602 502 595T505 573Q505 560 504 554T493 541T465 535H447L384 278Q321 19 319 14Q309 -7 278 -7H262H246Q215 -7 205 14Q203 19 140 278L78 535H59Q45 535 38 536T25 547T19 573V578"],87:[611,7,525,12,512,"459 611Q491 611 501 605T512 573Q512 538 482 535H474L439 276Q406 26 402 11Q398 2 389 -3Q387 -3 386 -4L380 -7H359H349Q324 -7 313 13Q307 29 285 139T263 275Q263 283 262 283Q261 282 261 274Q261 248 239 137T211 13Q200 -7 175 -7H165H144Q136 -3 127 3Q121 10 117 36T85 276L50 535H42Q26 536 19 545T12 564V573Q12 603 33 610Q37 611 101 611H134Q165 611 175 604T186 573Q186 563 186 559T182 547T169 538T143 535H122V531Q124 517 133 446T155 266T172 96V84L173 102Q176 157 192 243T215 346Q227 367 259 367H262H265Q297 367 309 346Q316 329 332 243T351 102L352 84V96Q356 161 368 266T390 444T402 531V535H381Q366 535 359 536T345 547T338 573Q338 600 356 608Q362 611 425 611H459"],88:[611,-1,525,28,495,"39 571Q39 597 49 604T93 611H141H218Q233 602 236 595T239 573Q239 538 210 535Q202 535 202 534T215 507T243 454L257 428L307 535H298Q266 538 266 573Q266 584 267 588T273 598T289 611H366H401Q442 611 454 605T466 573Q466 546 448 538Q442 535 421 535H398L299 327Q299 323 362 201L426 77L449 76Q467 76 475 75T489 65T495 38Q495 11 477 3Q473 1 395 1H317Q295 8 295 38Q295 73 325 76L334 77Q333 78 314 117T276 196L257 235L239 196Q221 157 204 118T186 77Q190 76 196 76Q211 74 218 67T227 55T228 38Q228 28 227 24T221 13T206 1H50Q28 9 28 32V38Q28 63 45 73Q51 76 73 76H96L214 324Q215 327 162 431L108 535H85H79Q67 535 60 536T46 546T39 571"],89:[611,-1,525,20,505,"20 573Q20 597 30 604T72 611H121H198Q212 602 216 595T220 573Q220 568 219 563T217 555T214 549T211 544T207 541T203 538T198 537T194 536T190 536L188 535Q179 535 179 534L188 516Q196 497 208 470T232 415T252 363T261 332Q261 329 262 329T263 332Q263 354 333 508L345 534Q345 535 336 535Q305 538 305 567V573Q305 589 308 595T327 611H483Q505 598 505 573Q505 549 488 538Q481 535 460 535H438L304 245V76H325H331Q343 76 350 75T363 64T369 38Q369 10 347 1H178Q167 5 162 11T157 21T156 38V44Q156 66 172 73Q180 76 199 76H220V245L86 535H64Q44 535 36 538Q20 548 20 573"],90:[612,-1,525,48,481,"71 1Q60 5 55 11T49 23T48 39V46Q48 56 58 73T131 183Q171 242 197 282L366 535H144V501Q144 470 143 464T135 450Q127 442 102 442H94Q71 442 62 461Q60 466 60 527L61 589Q70 607 83 610H88Q93 610 102 610T124 610T154 610T188 611T227 611T270 611H454Q456 609 461 606T467 601T471 597T474 591T475 584T476 572V565Q476 555 466 538T393 428Q353 369 327 329L158 76H397V120V146Q397 169 405 179T439 189Q470 189 479 169Q481 164 481 95V48Q481 24 478 16T459 1H71"],91:[694,82,525,214,484,"237 -82Q221 -78 214 -58V305Q214 669 216 673Q220 687 231 690T278 694H350H461Q462 693 467 690T474 685T478 679T482 670T483 656Q483 632 471 625T428 617Q422 617 406 617T379 618H298V-7H379H420Q459 -7 471 -13T483 -45Q483 -55 483 -59T477 -70T461 -82H237"],92:[694,83,525,58,466,"58 659Q58 673 68 683T93 694Q114 694 125 673Q132 659 297 314T464 -36Q466 -44 466 -48Q466 -66 454 -74T431 -83Q410 -83 399 -62Q391 -47 226 298T60 648Q58 656 58 659"],93:[695,82,525,41,310,"41 656Q41 681 53 688T99 695Q107 695 133 695T177 694H288Q307 681 310 669V-58Q303 -76 288 -82H64Q41 -73 41 -45Q41 -21 53 -14T96 -6Q102 -6 118 -6T145 -7H226V618H145H100Q67 618 54 625T41 656"],94:[611,-460,525,96,428,"138 460Q121 460 109 479T96 512Q96 527 106 534Q109 536 178 571T253 609Q256 611 264 611Q272 610 343 574Q357 567 369 561T389 550T402 543T411 538T416 535T420 532T422 529T425 525Q428 518 428 512Q428 498 416 479T386 460H384Q377 460 316 496L262 526L208 496Q147 460 138 460"],95:[-25,95,525,57,468,"57 -60Q57 -33 86 -25H438Q468 -34 468 -60T438 -95H86Q57 -86 57 -60"],96:[681,-357,525,176,350,"176 479Q176 563 227 622T310 681Q324 680 337 667T350 641Q350 627 340 619T312 599T280 566Q256 531 252 485V471Q261 472 262 472Q285 472 302 455T320 414Q320 389 303 373T261 357Q223 357 200 391T176 479"],97:[439,6,525,48,524,"126 306Q105 306 90 321T74 359Q74 439 211 439Q268 439 276 438Q343 426 383 390T430 306Q431 301 431 190V81Q446 79 465 78T492 76T509 72T521 60T524 38Q524 11 506 3Q502 1 466 1Q426 1 406 5T379 14T355 36L345 30Q284 -6 205 -6Q135 -6 92 39T48 141Q48 182 79 212T158 256T252 278T342 285H347V290Q347 315 325 335T267 362Q258 363 224 363Q189 363 185 362H179L178 358Q178 353 178 352T176 345T174 337T170 330T165 322T158 316T150 311T139 308T126 306ZM132 140Q132 115 157 93T224 70Q269 70 302 87T344 133Q346 139 347 175V211H339Q256 209 194 190T132 140"],98:[611,6,525,4,492,"4 573Q4 596 15 603T52 611H90H124Q146 611 155 608T171 591Q173 586 173 491V396L182 402Q217 424 256 431Q280 437 309 437Q376 437 434 379T492 217Q492 162 473 118T422 47T358 8T293 -6Q229 -6 174 38Q171 13 163 7T135 1H131H122Q99 1 90 23L89 279V535H58L27 536Q4 543 4 573ZM409 215Q409 269 377 315T283 361Q255 361 224 344T177 297L173 290V167Q189 124 213 97T278 70Q330 70 369 111T409 215"],99:[440,6,525,66,466,"291 -6Q196 -6 131 60T66 216Q66 296 119 361Q154 403 200 421T273 439Q275 440 293 440H313Q400 440 433 409Q454 388 454 359Q454 335 439 321T402 306Q380 306 365 321T350 357V362L340 363Q339 363 326 363T303 364Q280 364 266 362Q217 352 184 313T151 215Q151 153 199 112T313 70Q341 70 357 85T381 118T394 140Q402 146 424 146Q443 146 447 144Q466 137 466 117Q466 106 457 88T429 47T374 10T291 -6"],100:[611,6,525,31,520,"266 573Q266 596 277 603T314 611H352H385Q411 611 419 607T435 586V76H498Q512 67 516 60T520 38Q520 9 498 1H436Q429 1 417 1T398 0Q375 0 363 7T351 34V43L342 36Q288 -6 223 -6Q143 -6 87 58T31 216Q31 307 88 372T230 437Q292 437 342 405L351 399V535H320L289 536Q266 543 266 573ZM351 290Q347 302 337 316T302 346T244 361Q193 361 154 319T115 215Q115 152 152 111T235 70Q314 70 351 170V290"],101:[440,6,525,48,465,"48 217Q48 295 100 361T248 439L258 440Q268 440 274 440Q329 438 369 416T428 359T456 292T464 228Q464 215 461 208T454 198T442 190L288 189H135L138 179Q153 132 199 102T303 71Q336 71 353 86T380 120T398 143Q404 146 422 146Q453 146 462 126Q464 120 464 116Q464 84 416 39T285 -6Q187 -6 118 59T48 217ZM377 264Q371 291 365 306T341 338T294 362Q288 363 264 363Q225 363 190 336T139 264H377"],102:[617,-1,525,35,437,"43 395Q44 405 44 408T47 416T53 423T66 431H176V461Q176 500 182 518Q201 570 252 593T353 617Q399 614 418 593T437 548Q437 528 424 514T387 499Q365 499 353 511T338 537V541H328Q275 536 261 494Q260 490 260 460V431H327Q334 431 346 431T364 432Q392 432 404 425T416 393T405 362T365 355H327H260V76H319Q375 76 388 71T401 38Q401 27 400 23T395 12T379 1H58Q47 6 42 12T36 23T35 38Q35 65 53 73Q59 76 117 76H176V355H121H93Q64 355 54 362T43 395"],103:[442,229,525,28,510,"60 274Q60 337 107 386T233 436Q278 436 316 417L329 410L338 416Q384 442 427 442T489 423T509 381T494 345T460 332Q449 332 440 338Q432 341 427 348T419 360T415 365Q414 364 410 364L383 355Q406 320 406 274Q406 211 358 162T233 112Q189 112 155 128L146 133Q142 125 142 115Q142 99 150 85T175 71Q182 72 187 70Q188 70 195 70T218 70T254 69Q259 69 275 69T297 69T318 68T340 66T361 62T384 57T405 49T428 38Q495 -1 495 -76Q495 -143 427 -186T262 -229Q161 -229 94 -185T29 -73Q30 -60 33 -48T39 -26T47 -8T57 8T67 20T77 30T86 38L91 43Q91 44 86 53T75 80T70 117Q70 142 89 183L83 194Q60 232 60 274ZM321 274Q321 312 296 337T230 362Q197 362 171 338T145 274Q145 235 170 211T233 187Q273 187 297 212T321 274ZM422 -78Q422 -54 408 -38T366 -15T315 -6T255 -4H200Q198 -4 193 -4T183 -3Q148 -3 125 -26T102 -78Q102 -110 151 -132T261 -154Q321 -154 371 -132T422 -78"],104:[611,-1,525,4,520,"4 573Q4 596 15 603T52 611H90H124Q146 611 155 608T171 591Q173 586 173 489Q173 394 175 394L186 402Q197 410 219 420T269 434Q278 436 306 436Q343 436 371 423Q411 402 423 365T436 265Q436 257 436 239T435 211V198V76H498Q512 67 516 60T520 38Q520 9 498 1H308Q286 10 286 32V38V46Q286 65 303 73Q309 76 329 76H351V188Q351 204 351 230T352 266Q352 321 341 341T288 361Q253 361 222 341T176 274L174 264L173 170V76H236Q250 67 254 60T258 38Q258 9 236 1H27Q4 8 4 38Q4 53 8 60T27 76H89V535H58L27 536Q4 543 4 573"],105:[612,-1,525,72,462,"202 538T202 559T218 596T260 612Q283 612 300 597T317 560Q317 538 300 523T260 507Q235 507 219 522ZM411 76Q441 76 451 69T462 38Q462 29 462 26T460 18T453 9T440 1H94Q72 8 72 33V38Q72 46 72 49T74 58T81 68T94 76H233V355H167L102 356Q80 363 80 393Q80 418 91 425T138 432Q145 432 165 432T200 431H295Q297 429 303 425T310 420T314 415T317 404T317 389T318 363Q318 354 318 314T317 241V76H378H411"],106:[612,228,525,48,377,"261 559Q261 580 277 596T319 612Q342 612 359 597T376 560T360 523T320 507Q296 507 279 523T261 559ZM75 -91T100 -91T138 -107T152 -144V-150L160 -151H193H203Q241 -151 267 -121Q284 -97 288 -73T292 23V151V355H218L145 356Q123 365 123 387V393Q123 422 145 430H148Q151 430 156 430T169 430T185 430T205 431T227 431T251 431H354Q356 430 360 427T365 424T369 420T372 416T373 410T375 402T376 391T377 376T377 356Q377 345 377 286T376 176Q376 -67 371 -88Q362 -123 342 -151T299 -194Q254 -228 180 -228Q84 -226 56 -177Q49 -162 48 -148Q48 -122 61 -107"],107:[611,0,525,13,507,"13 42Q13 63 23 69T69 76H102V535H69H54Q34 535 24 542T13 573Q13 588 15 593Q22 605 29 608T56 611H95Q113 611 122 611T140 610T152 609T159 607T163 603T167 597T173 589V413L174 237L295 355H275Q260 355 253 356T239 367T232 393Q232 419 243 425T304 431H359H464Q479 422 482 415T485 393Q485 364 464 356L431 355H398L293 254L427 76H486Q501 67 504 60T507 38Q507 28 507 24T501 12T486 1H314Q292 8 292 38Q292 62 308 73Q312 75 326 76L338 77L290 140Q279 154 267 171T248 196L242 204L207 171L173 139V76H206H221Q241 76 251 69T262 38Q262 11 244 3Q240 1 138 1Q123 1 100 1T70 0Q32 0 23 7T13 42"],108:[612,-1,525,51,474,"51 573Q51 602 73 610H76Q79 610 84 610T97 610T113 610T133 611T155 611T179 611H282Q301 598 304 586V76H452Q466 67 470 60T474 38Q474 10 452 1H73Q51 9 51 32V38Q51 54 54 60T73 76H220V535H146L73 536Q51 545 51 567V573"],109:[437,-1,525,-12,536,"133 76Q156 74 164 67T172 38Q172 9 151 1H11Q-12 8 -12 38Q-12 61 5 73Q10 75 28 76H45V355H28Q10 356 5 358Q-12 370 -12 393Q-12 419 11 431H52H70Q91 431 100 427T116 405Q163 436 200 436Q255 436 281 390L285 394Q289 398 292 400T301 407T314 415T329 423T346 429T366 434T389 436H392Q425 436 448 411Q469 390 474 360T480 268V232V203V76H497Q520 74 528 67T536 38Q536 9 515 1H396Q374 9 374 32V38Q374 73 402 76H409V191V242Q409 317 404 339T375 361Q343 361 323 332T299 264Q298 258 298 165V76H315Q338 74 346 67T354 38Q354 9 333 1H214Q192 9 192 32V38Q192 73 220 76H227V191V242Q227 317 222 339T193 361Q161 361 141 332T117 264Q116 258 116 165V76H133"],110:[436,-1,525,4,520,"89 431Q94 431 105 431T122 432Q173 432 173 399Q173 394 175 394Q176 394 190 404T233 425T298 436Q343 436 371 423Q411 402 423 365T436 265Q436 257 436 239T435 211V198V76H498Q512 67 516 60T520 38Q520 9 498 1H308Q286 9 286 32V38V45Q286 65 303 73Q309 76 329 76H351V188Q351 204 351 230T352 266Q352 321 341 341T288 361Q253 361 222 341T176 274L174 264L173 170V76H236Q250 67 254 60T258 38Q258 9 236 1H27Q4 8 4 38Q4 53 8 60T27 76H89V355H58L27 356Q4 363 4 393Q4 408 8 415T27 431H89"],111:[440,6,525,52,472,"52 216Q52 318 118 379T261 440Q343 440 407 378T472 216Q472 121 410 58T262 -6Q176 -6 114 58T52 216ZM388 225Q388 281 351 322T261 364Q213 364 175 325T136 225Q136 158 174 114T262 70T350 114T388 225"],112:[437,221,525,4,492,"89 431Q93 431 104 431T121 432Q173 432 173 401V396L182 402Q237 437 305 437Q376 437 434 378T492 217Q492 146 459 93T382 17T291 -6Q261 -6 232 5T188 26L174 37Q173 37 173 -54V-146H236Q250 -155 254 -162T258 -184Q258 -213 236 -221H27Q4 -214 4 -184Q4 -169 8 -162T27 -146H89V355H58L27 356Q4 363 4 393Q4 408 8 415T27 431H89ZM409 215Q409 269 377 315T283 361Q255 361 224 344T177 297L173 290V167Q189 124 213 97T278 70Q330 70 369 111T409 215"],113:[437,222,525,34,545,"34 215Q34 309 91 368T222 436Q224 436 231 436T242 437Q309 437 372 390V401Q372 419 381 428T414 437Q426 437 432 436T444 430T456 412V-146H489H504Q524 -146 534 -153T545 -184Q545 -211 527 -219Q523 -221 414 -221Q398 -221 374 -221T342 -222Q304 -222 294 -216T283 -184Q283 -157 301 -149Q307 -146 339 -146H372V-51Q372 43 371 43L364 38Q357 33 345 26T318 12T280 -1T236 -6Q155 -6 95 55T34 215ZM117 215Q117 152 157 111T250 70Q289 70 318 92T363 146Q372 163 372 192V215L371 263Q339 360 254 360Q206 360 162 321T117 215"],114:[437,-1,525,24,487,"327 76Q359 76 369 70T380 38Q380 10 359 1H47Q24 8 24 38Q24 54 28 61T47 76H145V355H96L47 356Q24 363 24 393Q24 409 28 416T47 431H207Q223 419 226 414T229 393V387V369Q297 437 394 437Q436 437 461 417T487 368Q487 347 473 332T438 317Q428 317 420 320T407 327T398 337T393 347T390 356L388 361Q348 356 324 345Q228 299 228 170Q228 161 228 151T229 138V76H293H327"],115:[440,6,525,71,458,"72 317Q72 361 108 396T229 439Q231 439 245 439T268 440Q303 439 324 435T353 427T363 423L372 432Q380 440 397 440Q430 440 430 395Q430 390 430 380T429 366V335Q429 311 422 302T387 293Q364 293 355 300T346 316T343 336T325 353Q306 364 257 364Q209 364 178 351T147 317Q147 284 231 272Q327 256 357 247Q458 210 458 129V121Q458 74 413 34T271 -6Q246 -6 224 -3T189 5T165 14T150 22T144 26Q142 23 139 18T135 11T132 6T128 1T124 -2T119 -4T113 -5T104 -6Q84 -6 78 6T71 43Q71 48 71 60T72 79Q72 132 73 141T81 157Q90 166 115 166Q135 166 142 162T157 140Q168 108 191 90T260 70Q297 70 323 76T361 91T379 110T384 129Q384 157 346 171T247 195T165 212Q119 228 96 256T72 317"],116:[554,6,525,25,448,"25 395Q26 405 26 408T29 416T35 423T48 431H145V481L146 532Q154 547 161 550T184 554H189Q218 554 227 534Q229 529 229 480V431H405Q406 430 411 427T418 422T422 416T426 407T427 393Q427 387 427 382T424 374T421 368T417 363T413 360T408 358L405 356L317 355H229V249Q229 237 229 214T228 179Q228 126 241 98T295 70Q354 70 365 149Q366 167 375 174Q383 182 407 182H415Q438 182 446 166Q448 161 448 148Q448 84 398 39T282 -6Q226 -6 189 29T146 128Q145 134 145 247V355H96H72Q45 355 35 362T25 395"],117:[431,5,525,4,520,"4 393Q4 416 15 423T52 431H90Q141 431 151 429T168 417Q171 412 173 409V254L174 100Q182 70 244 70Q320 70 344 119Q349 130 350 144T351 248V355H320L289 356Q266 363 266 393Q266 408 270 415T289 431H351H386Q409 431 418 428T433 411Q435 406 435 241V76H498Q512 67 516 60T520 38Q520 9 498 1H436H394Q372 1 364 5T351 26L342 21Q293 -5 227 -5Q118 -5 96 67Q91 82 90 101T89 227V355H58L27 356Q4 363 4 393"],118:[432,4,525,24,500,"24 392Q24 417 36 424T79 432Q85 432 103 432T132 431H215Q229 422 233 415T237 393Q237 355 198 355H193H172L262 77L352 355H331H323Q288 355 288 393Q288 409 291 415T310 431H478Q491 423 495 416T500 393Q500 364 478 356L452 355H426L374 190Q320 24 318 20Q307 -4 273 -4H262H251Q217 -4 206 20Q204 24 150 190L98 355H72L47 356Q24 363 24 392"],119:[431,4,525,16,508,"54 355Q16 355 16 388V393Q16 423 37 430Q41 431 125 431H162Q206 431 218 425T230 393Q230 366 212 358Q206 355 174 355Q141 355 141 354L150 296Q181 110 181 89V84Q182 85 183 96Q185 118 199 173T218 237Q223 247 245 259H264H268Q294 259 309 240Q315 229 329 174T343 92Q343 84 344 84V86Q344 88 344 91T345 97Q347 125 356 187T374 301T383 354Q383 355 350 355H333Q314 355 304 362T294 393Q294 420 312 428Q318 431 401 431H440Q485 431 496 425T508 393Q508 382 508 377T498 363T470 355L455 354Q455 353 441 271T413 104T396 16Q384 -4 355 -4H351Q315 -4 305 9T280 79Q278 90 276 96Q265 149 265 169Q265 176 264 169Q263 166 263 162Q261 130 248 79T230 18Q220 -4 183 -4H175L151 -3Q134 5 127 17L112 102Q97 188 83 270T69 354Q62 355 54 355"],120:[432,-1,525,29,495,"35 393Q35 417 46 424T89 432Q95 432 112 432T141 431H223Q238 422 241 415T244 393Q244 389 244 383T237 367T216 355Q209 355 209 354L234 319Q259 286 260 286L308 354Q308 355 301 355Q285 356 278 365T270 384L271 393Q271 420 289 428Q295 431 376 431H459Q460 430 465 427T472 422T476 416T480 407T481 393Q481 368 470 362T434 355H425H392L344 290Q295 225 295 223Q294 223 309 203T350 149L405 77L439 76H453Q474 76 484 69T495 38Q495 10 473 1H303Q281 9 281 32V38Q281 49 282 54T290 67T313 76Q324 76 324 77L259 173L197 77Q202 76 209 76Q225 75 233 68T241 55T242 38Q242 28 242 24T236 12T221 1H51Q29 9 29 32V38Q29 48 29 51T31 59T38 67T51 76H117L171 149Q224 222 224 223L124 355H90H78Q54 355 45 361T35 393"],121:[431,228,525,26,501,"26 393Q26 417 37 424T80 431H134H217Q232 422 235 416T239 393Q239 379 236 371T226 360T214 356T197 355L179 354V353L188 330Q197 306 209 272T235 201T259 133T271 89V84L274 95Q279 122 298 185T335 300T352 354Q352 355 331 355Q312 355 304 358Q288 368 288 393Q288 408 291 415T310 431H478Q479 430 484 427T491 422T495 416T499 407T500 393Q500 376 493 367T479 357T458 355H452Q426 355 425 353Q420 337 351 124T280 -94Q240 -195 168 -220Q147 -228 125 -228Q89 -228 66 -201T42 -139Q42 -116 56 -102T93 -87Q117 -87 130 -102T144 -135V-138H126Q121 -148 121 -150T130 -152Q182 -147 207 -87Q211 -78 223 -40T236 1Q230 10 102 355H75L49 356Q26 363 26 393"],122:[432,-1,525,34,475,"56 1Q40 7 37 14T34 41Q34 59 36 64Q39 67 43 73Q65 95 191 213T341 355H133V334Q133 306 124 297Q116 289 91 289H83Q60 289 51 308Q49 313 49 361L50 409Q59 427 72 430H78Q83 430 92 430T115 430T144 430T179 431T219 431T262 431H450Q452 430 455 428T459 424T463 422T466 419T468 416T469 413T470 409T471 404T472 398T472 391Q472 374 469 368L462 358Q453 349 315 218Q210 122 164 76H391V103Q391 136 400 146Q409 155 433 155Q464 155 473 135Q475 130 475 78V46Q475 24 472 16T453 1H56"],123:[694,83,525,50,475,"430 -7H436Q449 -7 456 -8T469 -19T475 -45Q475 -69 466 -76T434 -83H419Q386 -82 363 -80T308 -69T253 -41T223 7L221 17L220 118V220L218 224Q215 229 214 230T210 235T204 241T195 246T184 252T170 257T151 262T127 265Q118 267 100 267T69 270T52 283Q50 288 50 306V314Q50 335 67 341Q68 342 102 343T172 355T217 386L220 392V493L221 595Q225 611 230 621T251 650T304 679T395 693L406 694Q418 694 426 694Q458 694 466 685Q475 676 475 656T466 627Q458 618 430 618Q319 618 305 587L304 486Q304 476 304 458T305 431Q305 385 295 358T251 311L243 306Q243 305 254 298T281 274T302 231Q304 223 304 125L305 25Q309 16 316 10T352 -1T430 -7"],124:[694,82,525,228,297,"228 668Q241 694 262 694Q268 694 273 693T282 688T287 682T293 674L297 668V-57Q282 -82 262 -82Q239 -82 228 -57V668"],125:[694,83,525,49,475,"49 655Q49 674 56 682T73 692T106 694Q141 693 167 690T224 677T275 647T303 595L305 392Q313 367 347 356T417 344T457 341Q475 335 475 306Q475 292 473 285T464 273T451 269T430 267Q352 262 327 246Q311 236 305 220L303 17L301 7Q294 -16 277 -33T242 -60T196 -74T150 -80T106 -83Q78 -83 72 -82T58 -74Q49 -65 49 -44Q49 -24 58 -16Q66 -7 94 -7Q143 -7 171 -1T207 10T220 25V125Q220 223 222 231Q228 257 243 274T270 299L281 306Q234 329 222 381Q220 387 220 486V587Q212 597 207 601T173 612T94 618Q66 618 58 627Q49 635 49 655"],126:[611,-466,525,87,437,"125 467Q113 467 100 480T87 509Q88 520 111 543Q172 602 209 609Q219 611 224 611Q246 611 263 596T290 566T304 551Q319 551 367 594Q383 610 396 610H400Q411 610 424 597T437 568Q436 557 413 534Q348 469 305 466Q278 466 260 481T234 511T220 526Q205 526 157 483Q141 467 129 467H125"],127:[612,-519,525,104,421,"104 565Q104 590 120 600T155 611Q175 611 180 610Q217 599 217 565Q217 545 202 532T166 519H159H155Q120 519 107 547Q104 553 104 565ZM307 565Q307 580 317 593T346 610Q348 610 350 610T354 611Q355 612 367 612Q395 611 408 597T421 565T409 534T365 519H358Q336 519 322 532T307 565"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/BasicLatin.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js deleted file mode 100644 index 5a077cc..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Typewriter,{768:[611,-485,0,-409,-195,"-409 569Q-409 586 -399 596T-377 610Q-376 610 -372 610T-365 611Q-355 610 -284 588T-210 563Q-195 556 -195 537Q-195 533 -197 522T-208 498T-229 485Q-238 485 -312 508T-388 533Q-400 538 -405 552Q-409 559 -409 569"],769:[611,-485,0,-331,-117,"-297 485Q-315 485 -323 505T-331 537Q-331 556 -316 563Q-307 569 -170 610Q-169 610 -165 610T-157 611Q-141 609 -131 600T-119 584T-117 569Q-117 555 -124 545T-138 533Q-140 531 -214 508T-297 485"],770:[611,-460,0,-429,-97,"-387 460Q-404 460 -416 479T-429 512Q-429 527 -419 534Q-416 536 -347 571T-272 609Q-269 611 -261 611Q-254 610 -182 574Q-168 567 -156 561T-136 550T-123 543T-114 538T-109 535T-105 532T-103 529T-100 525Q-97 518 -97 512Q-97 498 -109 479T-139 460H-141Q-148 460 -209 496L-263 526L-317 496Q-378 460 -387 460"],771:[611,-466,0,-438,-88,"-400 467Q-412 467 -425 480T-438 509Q-437 520 -414 543Q-353 602 -316 609Q-306 611 -301 611Q-279 611 -262 596T-235 566T-221 551Q-206 551 -158 594Q-142 610 -129 610H-125Q-114 610 -101 597T-88 568Q-89 557 -112 534Q-177 469 -220 466Q-247 466 -265 481T-291 511T-305 526Q-320 526 -368 483Q-384 467 -396 467H-400"],772:[578,-500,0,-452,-74,"-429 500Q-440 504 -445 511T-450 522T-452 536Q-452 552 -451 556Q-445 571 -434 574T-379 578Q-369 578 -330 578T-261 577H-96Q-94 575 -90 573T-85 569T-81 564T-77 558T-75 550T-74 538Q-74 522 -78 515T-96 500H-429"],774:[611,-504,0,-447,-79,"-446 579Q-446 611 -412 611H-407Q-383 609 -378 599T-358 587Q-340 583 -263 583H-235Q-159 583 -152 593Q-145 611 -120 611H-117H-115Q-79 611 -79 577Q-80 552 -95 536T-140 514T-191 506T-251 504H-263H-274Q-311 504 -334 505T-386 513T-431 536T-446 579"],776:[612,-519,0,-421,-104,"-421 565Q-421 590 -405 600T-370 611Q-350 611 -345 610Q-308 599 -308 565Q-308 545 -323 532T-359 519H-366H-370Q-405 519 -418 547Q-421 553 -421 565ZM-218 565Q-218 580 -208 593T-179 610Q-177 610 -175 610T-171 611Q-170 612 -158 612Q-130 611 -117 597T-104 565T-116 534T-160 519H-167Q-189 519 -203 532T-218 565"],778:[619,-499,0,-344,-182,"-344 558Q-344 583 -321 601T-262 619Q-225 619 -204 600T-182 560Q-182 536 -205 518T-264 499Q-301 499 -322 519T-344 558ZM-223 559Q-223 570 -234 579T-261 588T-289 580T-303 559Q-303 549 -293 540T-263 530T-234 539T-223 559"],780:[577,-449,0,-427,-99,"-427 525Q-427 542 -417 559T-392 577Q-385 577 -323 553L-263 530L-203 553Q-143 576 -136 576Q-118 576 -109 559T-99 525Q-99 508 -107 502T-161 481Q-177 475 -186 472Q-256 449 -263 449Q-272 449 -339 472T-412 498Q-420 501 -423 508T-427 520V525"]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/CombDiacritMarks.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js deleted file mode 100644 index ddf2454..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Typewriter={directory:"Typewriter/Regular",family:"MathJax_Typewriter",id:"MJTT",Ranges:[[0,127,"BasicLatin"],[128,65535,"Other"],[768,879,"CombDiacritMarks"]]};MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/Main.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js b/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js deleted file mode 100644 index 461c613..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Hub.Insert(MathJax.OutputJax.SVG.FONTDATA.FONTS.MathJax_Typewriter,{305:[432,-1,525,72,462,"411 76Q441 76 451 69T462 38Q462 29 462 26T460 18T453 9T440 1H94Q72 8 72 33V38Q72 46 72 49T74 58T81 68T94 76H233V355H167L102 356Q80 363 80 393Q80 418 91 425T138 432Q145 432 165 432T200 431H295Q297 429 303 425T310 420T314 415T317 404T317 389T318 363Q318 354 318 314T317 241V76H378H411"],567:[432,228,525,48,377,"75 -91T100 -91T138 -107T152 -144V-150L160 -151H193H203Q241 -151 267 -121Q284 -97 288 -73T292 23V151V355H218L145 356Q123 365 123 387V393Q123 422 145 430H148Q151 430 156 430T169 430T185 430T205 431T227 431T251 431H354Q356 430 360 427T365 424T369 420T372 416T373 410T375 402T376 391T377 376T377 356Q377 345 377 286T376 176Q376 -67 371 -88Q362 -123 342 -151T299 -194Q254 -228 180 -228Q84 -226 56 -177Q49 -162 48 -148Q48 -122 61 -107"],915:[611,0,525,25,488,"466 611Q468 609 473 606T479 602T483 598T486 593T487 586T488 576T488 562V526V488Q488 452 470 444Q466 442 446 442Q421 442 413 450Q406 457 405 463T404 501V535H185V76H222H239Q260 76 270 69T281 38Q281 12 270 6T209 0H155H104Q48 0 37 5T25 38Q25 59 35 69Q44 76 76 76H101V535H76H64Q36 535 27 552Q25 557 25 573T27 594Q33 606 43 608T106 611H258H466"],916:[623,0,525,35,489,"232 622H237Q242 622 249 622T264 623H293Q295 622 300 619T308 613T314 608T319 601Q322 597 405 316T489 19Q489 9 473 1Q471 0 262 0T51 1Q35 9 35 19Q35 34 118 315T205 601Q214 616 232 622ZM267 501Q266 504 265 510T263 521T261 526V523Q261 508 211 332Q142 91 138 82H386Q385 84 345 224Q281 439 267 501"],920:[621,10,525,56,468,"102 588Q140 621 240 621Q323 621 335 620Q393 613 422 588Q450 560 459 493T468 306Q468 185 460 118T422 23Q382 -10 289 -10H262H235Q142 -10 102 23Q74 50 65 118T56 306Q56 427 64 494T102 588ZM262 66Q285 66 300 67T329 74T351 86T366 108T376 138T381 181T383 235T384 306Q384 452 371 492T304 544Q296 545 251 545Q230 545 215 543T188 534T169 520T155 497T147 466T143 423T141 371T140 306Q140 247 141 215T146 151T158 107T179 82T212 69T262 66ZM179 356Q187 378 219 378H223Q240 377 249 372T260 360L261 355Q261 353 262 353T263 355Q263 362 272 369Q280 377 304 377H310Q325 377 331 374T346 356V256Q338 241 331 238T309 234H304Q280 234 272 242Q263 249 263 256Q263 258 262 258T261 256Q261 249 252 242Q244 234 220 234H216Q186 234 179 256V356"],923:[623,-1,525,30,495,"30 38Q30 57 38 66T70 76Q88 76 88 78Q89 79 117 207T173 466T205 602Q213 617 231 622H236Q241 622 249 622T264 623H294Q315 609 319 602Q321 598 350 468T407 208T435 78Q436 76 454 76Q470 76 478 73Q495 62 495 38Q495 10 473 1H313Q290 10 290 38Q290 56 297 65T310 74T331 76Q350 76 350 78Q349 80 328 176T285 383T263 520Q263 526 262 527Q261 527 261 521Q261 497 240 388T198 181T174 78Q174 76 193 76Q220 75 227 65Q234 56 234 38Q234 28 234 24T228 13T212 1H52Q30 9 30 32V38"],926:[612,-1,525,33,491,"37 555V569Q37 605 60 610H66Q71 610 81 610T105 610T137 610T175 611T217 611T264 611H465Q467 609 471 606T477 602T481 599T484 594T485 588T487 580T487 570T487 554Q487 526 486 520T478 506Q470 498 445 498T412 506Q403 515 403 531V539H121V531Q121 498 86 498H79H71Q48 498 39 517Q37 522 37 555ZM109 318V346Q109 366 113 374T132 389H170Q193 379 193 359V354H331V359Q331 379 354 389H392Q407 381 411 373T415 342V318V290Q415 270 411 262T392 247H354Q331 257 331 277V282H193V277Q193 257 170 247H132Q117 255 113 263T109 294V318ZM56 1Q41 7 37 15T33 42V58V80Q33 101 41 110T77 119Q87 118 91 118T103 114T114 103T117 83V72H407V83Q407 101 416 110T449 119T482 110Q489 103 490 97T491 59V41Q491 24 487 16T469 1H56"],928:[611,-1,525,16,508,"60 535Q45 535 38 536T24 545T16 571Q16 603 36 609Q41 611 264 611H486Q501 602 504 596T508 573Q508 559 505 551T495 540T482 536T464 535H443V76H464H470Q482 76 489 75T502 64T508 38Q508 10 486 1H317Q306 5 301 11T296 21T295 38V44Q295 66 311 73Q318 76 338 76H359V535H165V76H186H192Q204 76 211 75T224 64T230 38Q230 10 208 1H39Q28 5 23 11T18 21T17 38V44Q17 66 33 73Q40 76 60 76H81V535H60"],931:[612,-1,525,39,484,"40 575Q40 576 40 579T41 583T41 588T43 593T46 597T50 602T55 606T63 610H68Q74 610 84 610T108 610T139 610T176 611T219 611T264 611H462Q464 609 469 606T475 602T479 598T482 593T483 586T484 576T484 562V526V488Q484 452 466 444Q462 442 442 442Q417 442 409 450Q402 457 401 463T400 501V535H153Q153 533 218 430Q233 405 250 378T276 336T286 319Q290 311 290 307Q290 296 239 211Q229 194 223 184L161 78H400V112Q400 142 401 149T409 163Q418 172 442 172Q473 172 482 152Q484 147 484 86V49Q484 25 481 17T462 1H63Q41 10 41 31Q41 39 43 44Q43 45 81 109T157 238L195 303Q195 307 119 430T41 557T40 575"],933:[623,-1,525,38,486,"38 494Q38 549 74 585T152 621Q168 621 179 619T209 606T241 566T262 492Q262 494 265 507T270 526T276 547T285 569T298 589T315 606T337 617T365 622Q416 622 451 584T486 494Q486 470 469 461Q464 459 445 459H437Q416 459 406 476Q404 479 403 502T393 541T365 558Q350 558 340 548T323 519T312 475T307 419T305 354T304 282Q304 254 304 239V76H358Q372 67 376 60T380 38Q380 10 358 1H167Q145 9 145 32V38Q145 54 148 60T167 76H220V239Q220 256 220 289T220 338T219 383T217 426T214 463T209 497T201 522T189 543T174 555Q168 558 159 558Q139 558 131 541T121 502T118 476Q108 459 84 459H79H71Q38 459 38 494"],934:[612,-1,525,41,483,"139 573V578Q139 603 161 610H166Q172 610 182 610T204 610T232 611T264 611H364Q379 602 382 595T385 573Q385 544 364 536L334 535H304V441H306Q313 440 325 438T367 426T421 403T464 364T483 306Q483 251 430 216T317 172Q315 172 313 172T308 170H306H304V76H364Q379 67 382 60T385 38Q385 28 385 24T379 12T364 1H161Q139 8 139 33V38Q139 46 139 49T141 58T148 68T161 76H220V170H218Q211 171 199 173T157 185T103 208T60 248T41 306Q41 361 94 396T208 439Q210 439 212 439T216 440L218 441H220V535H190L161 536Q139 543 139 573ZM124 306Q124 286 147 271T194 252L218 247Q220 247 220 306V364H218Q212 364 192 359T148 340T124 306ZM400 305Q400 325 377 340T330 360L306 364Q304 364 304 306Q304 247 306 247Q312 247 332 252T376 271T400 305"],936:[611,-1,525,37,487,"37 439Q38 451 40 457T52 469T77 475H79Q96 475 107 473T132 456T152 411Q152 409 153 396T154 372V365Q154 291 198 261Q215 251 219 251Q220 251 220 393V535H193L167 536Q145 545 145 567V573Q145 602 167 610Q168 611 264 611H358Q372 602 376 595T380 573Q380 545 358 536L331 535H304V393Q304 251 305 251Q307 251 310 252T323 259T339 272T355 295T367 331Q368 337 370 372Q370 382 371 395T372 411Q376 434 384 448T404 467T425 474T447 475Q461 474 467 473T480 463T487 437Q487 419 481 412Q476 403 459 398Q457 390 453 344T431 263Q415 228 383 205T332 177T306 172H304V76H358Q372 67 376 60T380 38Q380 10 358 1H167Q145 9 145 32V38Q145 54 148 60T167 76H220V172H218Q211 172 192 177T141 205T93 263Q74 298 71 343T67 391L66 398Q47 403 42 411T37 433V439"],937:[622,-1,525,32,492,"40 404Q40 498 106 560T258 622Q357 622 420 558T484 406Q484 359 469 311T428 205T392 117Q382 84 382 78Q382 76 402 76H421V87Q421 110 431 116T457 123Q474 123 483 114Q490 107 491 100T492 61V42Q492 11 474 3Q470 1 397 1H324Q302 9 302 32V39Q302 104 351 225T400 405Q400 462 361 504T262 546Q200 546 162 504T124 405Q124 346 171 230T223 42V36Q223 11 205 3Q201 1 128 1H55Q39 7 33 23L32 60V80Q32 94 34 102T44 116T68 123Q103 123 103 87V76H123Q142 76 142 78Q142 100 117 156T66 282T40 404"],2018:[611,-287,525,175,349,"205 554Q205 577 221 594T263 611Q302 611 325 577T349 490Q349 409 298 347Q285 330 258 309T214 287Q203 289 189 302T175 327Q175 341 185 349T213 369T245 402Q269 437 273 483V497Q264 496 263 496Q240 496 223 513T205 554"],2019:[681,-357,525,176,350,"176 479Q176 563 227 622T310 681Q324 680 337 667T350 641Q350 627 340 619T312 599T280 566Q256 531 252 485V471Q261 472 262 472Q285 472 302 455T320 414Q320 389 303 373T261 357Q223 357 200 391T176 479"],8242:[623,-334,525,211,313,"211 572Q211 593 226 608T262 623Q281 623 297 610T313 573Q313 561 307 465Q301 370 299 357T284 336Q279 334 262 334Q240 334 231 343Q226 350 225 362T217 465Q211 549 211 572"],8710:[623,0,525,35,489,""]});MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/Other.js"); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/fontdata-extra.js b/modules/MathJax/jax/output/SVG/fonts/TeX/fontdata-extra.js deleted file mode 100644 index 1e8a178..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/fontdata-extra.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/fontdata-extra.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(a){var l="2.2";var k=a.FONTDATA.DELIMITERS;var g="MathJax_Main",h="MathJax_Main-bold",i="MathJax_AMS",e="MathJax_Size1",b="MathJax_Size4";var j="H",f="V";var d={61:{dir:j,HW:[[0.767,g]],stretch:{rep:[61,g]}},8606:{dir:j,HW:[[1,i]],stretch:{left:[8606,i],rep:[8722,g]}},8608:{dir:j,HW:[[1,i]],stretch:{right:[8608,i],rep:[8722,g]}},8612:{dir:j,HW:[],stretch:{min:1,left:[8592,g],rep:[8722,g],right:[8739,e,0,-0.05,0.9]}},8613:{dir:f,HW:[],stretch:{min:0.6,bot:[8869,h,0,0,0.75],ext:[9168,e],top:[8593,e]}},8614:{dir:j,HW:[[1,g]],stretch:{left:[8739,e,-0.09,-0.05,0.9],rep:[8722,g],right:[8594,g]}},8615:{dir:f,HW:[],stretch:{min:0.6,top:[8868,h,0,0,0.75],ext:[9168,e],bot:[8595,e]}},8624:{dir:f,HW:[[0.722,i]],stretch:{top:[8624,i],ext:[9168,e,0.097]}},8625:{dir:f,HW:[[0.722,i]],stretch:{top:[8625,i,0.27],ext:[9168,e]}},8636:{dir:j,HW:[[1,g]],stretch:{left:[8636,g],rep:[8722,g]}},8637:{dir:j,HW:[[1,g]],stretch:{left:[8637,g],rep:[8722,g]}},8638:{dir:f,HW:[[0.888,i]],stretch:{top:[8638,i,0.12,0,1.1],ext:[9168,e]}},8639:{dir:f,HW:[[0.888,i]],stretch:{top:[8639,i,0.12,0,1.1],ext:[9168,e]}},8640:{dir:j,HW:[[1,g]],stretch:{right:[8640,g],rep:[8722,g]}},8641:{dir:j,HW:[[1,g]],stretch:{right:[8641,g],rep:[8722,g]}},8642:{dir:f,HW:[[0.888,i]],stretch:{bot:[8642,i,0.12,0,1.1],ext:[9168,e]}},8643:{dir:f,HW:[[0.888,i]],stretch:{bot:[8643,i,0.12,0,1.1],ext:[9168,e]}},8666:{dir:j,HW:[[1,i]],stretch:{left:[8666,i],rep:[8801,g]}},8667:{dir:j,HW:[[1,i]],stretch:{right:[8667,i],rep:[8801,g]}},9140:{dir:j,HW:[],stretch:{min:0.5,left:[9484,i,0,-0.1],rep:[8722,g,0,0.325],right:[9488,i,0,-0.1]}},9141:{dir:j,HW:[],stretch:{min:0.5,left:[9492,i,0,0.26],rep:[8722,g,0,0,0,0.25],right:[9496,i,0,0.26]}},9180:{dir:j,HW:[[0.778,i,0,8994],[1,g,0,8994]],stretch:{left:[57680,b],rep:[57684,b],right:[57681,b]}},9181:{dir:j,HW:[[0.778,i,0,8995],[1,g,0,8995]],stretch:{left:[57682,b],rep:[57684,b],right:[57683,b]}},9184:{dir:j,HW:[],stretch:{min:1.25,left:[714,g,-0.1],rep:[713,g,-0.05,0.13],right:[715,g],fullExtenders:true}},9185:{dir:j,HW:[],stretch:{min:1.5,left:[715,g,-0.1,0.1],rep:[713,g,-0.1],right:[714,g,-0.1,0.1],fullExtenders:true}},10502:{dir:j,HW:[],stretch:{min:1,left:[8656,g],rep:[61,g],right:[8739,e,0,-0.1]}},10503:{dir:j,HW:[],stretch:{min:0.7,left:[8872,i,0,-0.12],rep:[61,g],right:[8658,g]}},10574:{dir:j,HW:[],stretch:{min:0.5,left:[8636,g],rep:[8722,g],right:[8640,g]}},10575:{dir:f,HW:[],stretch:{min:0.5,top:[8638,i,0.12,0,1.1],ext:[9168,e],bot:[8642,i,0.12,0,1.1]}},10576:{dir:j,HW:[],stretch:{min:0.5,left:[8637,g],rep:[8722,g],right:[8641,g]}},10577:{dir:f,HW:[],stretch:{min:0.5,top:[8639,i,0.12,0,1.1],ext:[9168,e],bot:[8643,i,0.12,0,1.1]}},10586:{dir:j,HW:[],stretch:{min:1,left:[8636,g],rep:[8722,g],right:[8739,e,0,-0.05,0.9]}},10587:{dir:j,HW:[],stretch:{min:1,left:[8739,e,-0.05,-0.05,0.9],rep:[8722,g],right:[8640,g]}},10588:{dir:f,HW:[],stretch:{min:0.7,bot:[8869,h,0,0,0.75],ext:[9168,e],top:[8638,i,0.12,0,1.1]}},10589:{dir:f,HW:[],stretch:{min:0.7,top:[8868,h,0,0,0.75],ext:[9168,e],bot:[8642,i,0.12,0,1.1]}},10590:{dir:j,HW:[],stretch:{min:1,left:[8637,g],rep:[8722,g],right:[8739,e,0,-0.05,0.9]}},10591:{dir:j,HW:[],stretch:{min:1,left:[8739,e,-0.05,-0.05,0.9],rep:[8722,g],right:[8641,g]}},10592:{dir:f,HW:[],stretch:{min:0.7,bot:[8869,h,0,0,0.75],ext:[9168,e],top:[8639,i,0.12,0,1.1]}},10593:{dir:f,HW:[],stretch:{min:0.7,top:[8868,h,0,0,0.75],ext:[9168,e],bot:[8643,i,0.12,0,1.1]}}};for(var c in d){if(d.hasOwnProperty(c)){k[c]=d[c]}}MathJax.Ajax.loadComplete(a.fontDir+"/fontdata-extra.js")})(MathJax.OutputJax.SVG); - diff --git a/modules/MathJax/jax/output/SVG/fonts/TeX/fontdata.js b/modules/MathJax/jax/output/SVG/fonts/TeX/fontdata.js deleted file mode 100644 index b2f02d3..0000000 --- a/modules/MathJax/jax/output/SVG/fonts/TeX/fontdata.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/jax/output/SVG/fonts/TeX/fontdata.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -(function(m,b,p,h){var o="2.2";var l="MathJax_Main",q="MathJax_Main-bold",n="MathJax_Math-italic",i="MathJax_AMS",g="MathJax_Size1",f="MathJax_Size2",e="MathJax_Size3",c="MathJax_Size4";var j="H",a="V",k={load:"extra",dir:j},d={load:"extra",dir:a};var r=[[1000,l],[1200,g],[1800,f],[2400,e],[3000,c]];m.Augment({FONTDATA:{version:o,baselineskip:1200,lineH:800,lineD:200,FONTS:{MathJax_Main:"Main/Regular/Main.js","MathJax_Main-bold":"Main/Bold/Main.js","MathJax_Main-italic":"Main/Italic/Main.js","MathJax_Math-italic":"Math/Italic/Main.js","MathJax_Math-bold-italic":"Math/BoldItalic/Main.js",MathJax_Caligraphic:"Caligraphic/Regular/Main.js",MathJax_Size1:"Size1/Regular/Main.js",MathJax_Size2:"Size2/Regular/Main.js",MathJax_Size3:"Size3/Regular/Main.js",MathJax_Size4:"Size4/Regular/Main.js",MathJax_AMS:"AMS/Regular/Main.js",MathJax_Fraktur:"Fraktur/Regular/Main.js","MathJax_Fraktur-bold":"Fraktur/Bold/Main.js",MathJax_SansSerif:"SansSerif/Regular/Main.js","MathJax_SansSerif-bold":"SansSerif/Bold/Main.js","MathJax_SansSerif-italic":"SansSerif/Italic/Main.js",MathJax_Script:"Script/Regular/Main.js",MathJax_Typewriter:"Typewriter/Regular/Main.js"},VARIANT:{normal:{fonts:[l,g,i],offsetG:945,variantG:"italic",remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88,8726:[8726,"-TeX-variant"],8463:[8463,"-TeX-variant"],8242:[39,"sans-serif-italic"],10744:[47,b.VARIANT.ITALIC]}},bold:{fonts:[q,g,i],bold:true,offsetG:945,variantG:"bold-italic",remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88,10744:[47,"bold-italic"],8602:"\u2190\u0338",8603:"\u2192\u0338",8622:"\u2194\u0338",8653:"\u21D0\u0338",8654:"\u21D4\u0338",8655:"\u21D2\u0338",8708:"\u2203\u0338",8740:"\u2223\u0338",8742:"\u2225\u0338",8769:"\u223C\u0338",8775:"\u2245\u0338",8814:"<\u0338",8815:">\u0338",8816:"\u2264\u0338",8817:"\u2265\u0338",8832:"\u227A\u0338",8833:"\u227B\u0338",8840:"\u2286\u0338",8841:"\u2287\u0338",8876:"\u22A2\u0338",8877:"\u22A8\u0338",8928:"\u227C\u0338",8929:"\u227D\u0338"}},italic:{fonts:[n,"MathJax_Main-italic",l,g,i],italic:true,remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88}},"bold-italic":{fonts:["MathJax_Math-bold-italic",q,g,i],bold:true,italic:true,remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88}},"double-struck":{fonts:[i,l]},fraktur:{fonts:["MathJax_Fraktur",l,g,i]},"bold-fraktur":{fonts:["MathJax_Fraktur-bold",q,g,i],bold:true},script:{fonts:["MathJax_Script",l,g,i]},"bold-script":{fonts:["MathJax_Script",q,g,i],bold:true},"sans-serif":{fonts:["MathJax_SansSerif",l,g,i]},"bold-sans-serif":{fonts:["MathJax_SansSerif-bold",q,g,i],bold:true},"sans-serif-italic":{fonts:["MathJax_SansSerif-italic","MathJax_Main-italic",g,i],italic:true},"sans-serif-bold-italic":{fonts:["MathJax_SansSerif-italic","MathJax_Main-italic",g,i],bold:true,italic:true},monospace:{fonts:["MathJax_Typewriter",l,g,i]},"-tex-caligraphic":{fonts:["MathJax_Caligraphic",l],offsetA:65,variantA:"italic"},"-tex-oldstyle":{fonts:["MathJax_Caligraphic",l]},"-tex-mathit":{fonts:["MathJax_Main-italic",n,l,g,i],italic:true,noIC:true,remap:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,932:84,935:88}},"-TeX-variant":{fonts:[i,l,g],remap:{8808:57356,8809:57357,8816:57361,8817:57358,10887:57360,10888:57359,8740:57350,8742:57351,8840:57366,8841:57368,8842:57370,8843:57371,10955:57367,10956:57369,988:57352,1008:57353,8726:[8726,b.VARIANT.NORMAL],8463:[8463,b.VARIANT.NORMAL]}},"-largeOp":{fonts:[f,g,l]},"-smallOp":{fonts:[g,l]}},RANGES:[{name:"alpha",low:97,high:122,offset:"A",add:32},{name:"number",low:48,high:57,offset:"N"},{name:"greek",low:945,high:1014,offset:"G"}],RULECHAR:8722,REMAP:{160:32,8254:713,8400:8636,8401:8640,8406:8592,8417:8596,8428:8641,8429:8637,8430:8592,8431:8594,8432:42,65079:9182,65080:9183,183:8901,697:8242,978:933,8213:8212,8215:95,8226:8729,8260:47,8965:8892,8966:10846,9642:9632,9652:9650,9653:9651,9656:9654,9662:9660,9663:9661,9666:9664,9001:10216,9002:10217,12296:10216,12297:10217,10072:8739,10799:215,9723:9633,9724:9632,8450:[67,b.VARIANT.DOUBLESTRUCK],8459:[72,b.VARIANT.SCRIPT],8460:[72,b.VARIANT.FRAKTUR],8461:[72,b.VARIANT.DOUBLESTRUCK],8462:[104,b.VARIANT.ITALIC],8464:[74,b.VARIANT.SCRIPT],8465:[74,b.VARIANT.FRAKTUR],8466:[76,b.VARIANT.SCRIPT],8469:[78,b.VARIANT.DOUBLESTRUCK],8473:[80,b.VARIANT.DOUBLESTRUCK],8474:[81,b.VARIANT.DOUBLESTRUCK],8475:[82,b.VARIANT.SCRIPT],8476:[82,b.VARIANT.FRAKTUR],8477:[82,b.VARIANT.DOUBLESTRUCK],8484:[90,b.VARIANT.DOUBLESTRUCK],8486:[937,b.VARIANT.NORMAL],8488:[90,b.VARIANT.FRAKTUR],8492:[66,b.VARIANT.SCRIPT],8493:[67,b.VARIANT.FRAKTUR],8496:[69,b.VARIANT.SCRIPT],8497:[70,b.VARIANT.SCRIPT],8499:[77,b.VARIANT.SCRIPT],8775:8774,8988:9484,8989:9488,8990:9492,8991:9496,8708:"\u2203\u0338",8716:"\u220B\u0338",8772:"\u2243\u0338",8777:"\u2248\u0338",8802:"\u2261\u0338",8813:"\u224D\u0338",8820:"\u2272\u0338",8821:"\u2273\u0338",8824:"\u2276\u0338",8825:"\u2277\u0338",8836:"\u2282\u0338",8837:"\u2283\u0338",8930:"\u2291\u0338",8931:"\u2292\u0338",10764:"\u222C\u222C",8243:"\u2032\u2032",8244:"\u2032\u2032\u2032",8246:"\u2035\u2035",8247:"\u2035\u2035\u2035",8279:"\u2032\u2032\u2032\u2032",8411:"...",8412:"...."},REMAPACCENT:{"\u2192":"\u20D7","\u2032":"'","\u2035":"`"},REMAPACCENTUNDER:{},PLANE1MAP:[[119808,119833,65,b.VARIANT.BOLD],[119834,119859,97,b.VARIANT.BOLD],[119860,119885,65,b.VARIANT.ITALIC],[119886,119911,97,b.VARIANT.ITALIC],[119912,119937,65,b.VARIANT.BOLDITALIC],[119938,119963,97,b.VARIANT.BOLDITALIC],[119964,119989,65,b.VARIANT.SCRIPT],[120068,120093,65,b.VARIANT.FRAKTUR],[120094,120119,97,b.VARIANT.FRAKTUR],[120120,120145,65,b.VARIANT.DOUBLESTRUCK],[120172,120197,65,b.VARIANT.BOLDFRAKTUR],[120198,120223,97,b.VARIANT.BOLDFRAKTUR],[120224,120249,65,b.VARIANT.SANSSERIF],[120250,120275,97,b.VARIANT.SANSSERIF],[120276,120301,65,b.VARIANT.BOLDSANSSERIF],[120302,120327,97,b.VARIANT.BOLDSANSSERIF],[120328,120353,65,b.VARIANT.SANSSERIFITALIC],[120354,120379,97,b.VARIANT.SANSSERIFITALIC],[120432,120457,65,b.VARIANT.MONOSPACE],[120458,120483,97,b.VARIANT.MONOSPACE],[120488,120513,913,b.VARIANT.BOLD],[120546,120570,913,b.VARIANT.ITALIC],[120572,120603,945,b.VARIANT.ITALIC],[120604,120628,913,b.VARIANT.BOLDITALIC],[120630,120661,945,b.VARIANT.BOLDITALIC],[120662,120686,913,b.VARIANT.BOLDSANSSERIF],[120720,120744,913,b.VARIANT.SANSSERIFBOLDITALIC],[120782,120791,48,b.VARIANT.BOLD],[120802,120811,48,b.VARIANT.SANSSERIF],[120812,120821,48,b.VARIANT.BOLDSANSSERIF],[120822,120831,48,b.VARIANT.MONOSPACE]],REMAPGREEK:{913:65,914:66,917:69,918:90,919:72,921:73,922:75,924:77,925:78,927:79,929:80,930:920,932:84,935:88,938:8711,970:8706,971:1013,972:977,973:1008,974:981,975:1009,976:982},RemapPlane1:function(v,u){for(var t=0,s=this.PLANE1MAP.length;t=p.SVGlast+p.SVGchunk){this.postTranslate(p);p.SVGchunk=Math.floor(p.SVGchunk*this.config.EqnChunkFactor);p.SVGdelay=true}}},postTranslate:function(q){var l=q.jax[this.id];if(!this.hideProcessedMath){return}for(var o=q.SVGlast,k=q.SVGeqn;o=55296&&o<56319){t++;o=(((o-55296)<<10)+(C.charCodeAt(t)-56320))+65536;if(this.FONTDATA.RemapPlane1){var w=this.FONTDATA.RemapPlane1(o,s);o=w.n;s=w.variant}}else{k=this.FONTDATA.RANGES;for(l=0,y=k.length;l=k[l].low&&o<=k[l].high){if(k[l].remap&&k[l].remap[o]){o=x+k[l].remap[o]}else{o=o-k[l].low+x;if(k[l].add){o+=k[l].add}}if(s["variant"+k[l].offset]){s=this.FONTDATA.VARIANT[s["variant"+k[l].offset]]}break}}}if(s.remap&&s.remap[o]){if(s.remap[o] instanceof Array){var B=s.remap[o];o=B[0];s=this.FONTDATA.VARIANT[B[1]]}else{if(typeof(s.remap[o])==="string"){C=s.remap[o]+C.substr(t+1);t=0;q=C.length;o=C.charCodeAt(0)}else{o=s.remap[o];if(s.remap.variant){s=this.FONTDATA.VARIANT[s.remap.variant]}}}}if(this.FONTDATA.REMAP[o]&&!s.noRemap){o=this.FONTDATA.REMAP[o];if(o instanceof Array){s=this.FONTDATA.VARIANT[o[1]];o=o[0]}if(typeof(o)==="string"){C=o+C.substr(t+1);t=0;q=C.length;o=o.charCodeAt(0)}}p=this.lookupChar(s,o);z=p[o];if(z){if(z[5]&&z[5].space){v.w+=z[2]}else{z=[r,p.id+"-"+o.toString(16).toUpperCase()].concat(z);v.Add(i.GLYPH.apply(i,z),v.w,0)}}else{if(this.FONTDATA.DELIMITERS[o]){z=this.createDelimiter(o,0,1,p);v.Add(z,v.w,(this.FONTDATA.DELIMITERS[o].dir==="V"?z.d:0))}else{if(o<=65535){z=String.fromCharCode(o)}else{x=o-65536;z=String.fromCharCode((x>>10)+55296)+String.fromCharCode((x&1023)+56320)}var u=i.TEXT(r,z,{"font-family":s.defaultFamily||a.config.undefinedFamily,"font-style":(s.italic?"italic":""),"font-weight":(s.bold?"bold":"")});if(s.h!=null){u.h=s.h}if(s.d!=null){u.d=s.d}z=i.G();z.Add(u);v.Add(z,v.w,0);c.signal.Post(["SVG Jax - unknown char",o,s])}}}if(C.length==1&&p.skew&&p.skew[o]){v.skew=p.skew[o]*1000}if(v.element.childNodes.length===1){v.element=v.element.firstChild;v.removeable=false;v.scale=r}return v},lookupChar:function(p,s){var o,k;if(!p.FONTS){var r=this.FONTDATA.FONTS;var q=(p.fonts||this.FONTDATA.VARIANT.normal.fonts);if(!(q instanceof Array)){q=[q]}if(p.fonts!=q){p.fonts=q}p.FONTS=[];for(o=0,k=q.length;o=0;n--){if(l.Ranges[n][2]==o){l.Ranges.splice(n,1)}}this.loadFont(l.directory+"/"+o+".js")}}}},loadFont:function(k){c.RestartAfter(h.Require(this.fontDir+"/"+k))},createDelimiter:function(k,n,q,o){if(!q){q=1}var s=i.G();if(!k){s.Clean();delete s.element;s.w=s.r=this.TeX.nulldelimiterspace*q;return s}if(!(n instanceof Array)){n=[n,n]}var t=n[1];n=n[0];var l={alias:k};while(l.alias){k=l.alias;l=this.FONTDATA.DELIMITERS[k];if(!l){l={HW:[0,this.FONTDATA.VARIANT[g.VARIANT.NORMAL]]}}}if(l.load){c.RestartAfter(h.Require(this.fontDir+"/fontdata-"+l.load+".js"))}for(var r=0,p=l.HW.length;r=n-10-a.config.blacker||(r==p-1&&!l.stretch)){if(l.HW[r][2]){q*=l.HW[r][2]}if(l.HW[r][3]){k=l.HW[r][3]}return this.createChar(q,[k,l.HW[r][1]],o).With({stretched:true})}}if(l.stretch){this["extendDelimiter"+l.dir](s,t,l.stretch,q,o)}return s},createChar:function(s,q,n){var r="",p={fonts:[q[1]],noRemap:true};if(n&&n===g.VARIANT.BOLD){p.fonts=[q[1]+"-bold",q[1]]}if(typeof(q[1])!=="string"){p=q[1]}if(q[0] instanceof Array){for(var o=0,k=q[0].length;oq){var l=this.createChar(o,m.ext,n);var p=(m.mid?2:1),v=(A-q)/p,B=(v+100)/(l.h+l.d);while(p-->0){var t=a.Element("g",{transform:"translate("+l.y+","+(w-B*l.h+50+l.y)+") scale(1,"+B+")"});t.appendChild(l.element.cloneNode(false));r.element.appendChild(t);w-=v;if(m.mid&&p){r.Add(z,0,w-z.h);w-=(z.h+z.d)}}}else{if(m.mid){w+=(q-A)/2;r.Add(z,0,w-z.h);w+=-(z.h+z.d)+(q-A)/2}else{w+=(q-A)}}r.Add(u,0,w-u.h);r.Clean();r.scale=o;r.isMultiChar=true},extendDelimiterH:function(t,o,m,q,n){var p=this.createChar(q,(m.left||m.rep),n);var C=this.createChar(q,(m.right||m.rep),n);t.Add(p,-p.l,0);var B=(p.r-p.l)+(C.r-C.l),z=p.r-p.l;if(m.mid){var A=this.createChar(q,m.mid,n);B+=A.w}if(m.min&&oB){var y=this.createChar(q,m.rep,n),l=m.fuzz||0;var r=(m.mid?2:1),v=(o-B)/r,D=(v+l)/(y.r-y.l);while(r-->0){var u=a.Element("g",{transform:"translate("+(z-l/2-D*y.l+y.x)+","+y.y+") scale("+D+",1)"});u.appendChild(y.element.cloneNode(false));t.element.appendChild(u);z+=v;if(m.mid&&r){t.Add(A,z,0);z+=A.w}}}else{if(m.mid){z-=(B-o)/2;t.Add(A,z,0);z+=A.w-(B-o)/2}else{z-=(B-o)}}t.Add(C,z-C.l,0);t.Clean();t.scale=q;t.isMultiChar=true},MATHSPACE:{veryverythinmathspace:1/18,verythinmathspace:2/18,thinmathspace:3/18,mediummathspace:4/18,thickmathspace:5/18,verythickmathspace:6/18,veryverythickmathspace:7/18,negativeveryverythinmathspace:-1/18,negativeverythinmathspace:-2/18,negativethinmathspace:-3/18,negativemediummathspace:-4/18,negativethickmathspace:-5/18,negativeverythickmathspace:-6/18,negativeveryverythickmathspace:-7/18},TeX:{x_height:430.554,quad:1000,num1:676.508,num2:393.732,num3:443.73,denom1:685.951,denom2:344.841,sup1:412.892,sup2:362.892,sup3:288.888,sub1:150,sub2:247.217,sup_drop:386.108,sub_drop:50,delim1:2390,delim2:1000,axis_height:250,rule_thickness:60,big_op_spacing1:111.111,big_op_spacing2:166.666,big_op_spacing3:200,big_op_spacing4:600,big_op_spacing5:100,scriptspace:100,nulldelimiterspace:120,delimiterfactor:901,delimitershortfall:100,min_rule_thickness:1.25,min_root_space:1.5},BIGDIMEN:10000000,NBSP:"\u00A0"});var i=a.BBOX=MathJax.Object.Subclass({type:"g",removeable:true,Init:function(k){this.h=this.d=-a.BIGDIMEN;this.H=this.D=0;this.w=this.r=0;this.l=a.BIGDIMEN;this.x=this.y=0;this.scale=1;this.n=0;if(this.type){this.element=a.Element(this.type,k)}},With:function(k){return c.Insert(this,k)},Add:function(n,m,l,p,o){if(m){n.x+=m}if(l){n.y+=l}if(n.element){if(n.removeable&&n.element.childNodes.length===1&&n.n===1){var r=n.element.firstChild;if(r.nodeName==="use"||r.nodeName==="rect"){n.element=r;n.scale=n.childScale;var k=n.childX,q=n.childY;n.x+=k;n.y+=q;n.h-=q;n.d+=q;n.H-=q;n.D+=q;n.w-=k;n.r-=k;n.l+=k;n.removeable=false}}if(Math.abs(n.x)<1&&Math.abs(n.y)<1){n.remove=n.removeable}else{if(n.element.nodeName==="g"){if(!n.element.firstChild){n.remove=n.removeable}else{n.element.setAttribute("transform","translate("+Math.floor(n.x)+","+Math.floor(n.y)+")")}}else{if(n.element.nodeName==="line"||n.element.nodeName==="polygon"||n.element.nodeName==="path"||n.element.nodeName==="a"){n.element.setAttribute("transform","translate("+Math.floor(n.x)+","+Math.floor(n.y)+")")}else{n.element.setAttribute("x",Math.floor(n.x/n.scale));n.element.setAttribute("y",Math.floor(n.y/n.scale))}}}if(n.remove){this.n+=n.n;while(n.element.firstChild){if(o&&this.element.firstChild){this.element.insertBefore(n.element.firstChild,this.element.firstChild)}else{this.element.appendChild(n.element.firstChild)}}}else{if(o){this.element.insertBefore(n.element,this.element.firstChild)}else{this.element.appendChild(n.element)}}delete n.element}if(n.hasIndent){this.hasIndent=n.hasIndent}if(n.d-n.y>this.d){this.d=n.d-n.y;if(this.d>this.D){this.D=this.d}}if(n.y+n.h>this.h){this.h=n.y+n.h;if(this.h>this.H){this.H=this.h}}if(n.D-n.y>this.D){this.D=n.D-n.y}if(n.y+n.H>this.H){this.H=n.y+n.H}if(n.x+n.lthis.r){this.r=n.x+n.r}if(p||n.x+n.w+(n.X||0)>this.w){this.w=n.x+n.w+(n.X||0)}this.childScale=n.scale;this.childX=n.x;this.childY=n.y;this.n++;return n},Align:function(m,n,l,k){l=({left:l,center:(this.w-m.w)/2,right:this.w-m.w-l})[n]||0;this.Add(m,l,k)},Clean:function(){if(this.h===-a.BIGDIMEN){this.h=this.d=this.l=0}return this}});i.ROW=i.Subclass({Init:function(){this.SUPER(arguments).Init.call(this);this.svg=[];this.sh=this.sd=0},Check:function(l){var k=l.toSVG();this.svg.push(k);if(l.SVGcanStretch("Vertical")){k.mml=l}if(k.h>this.sh){this.sh=k.h}if(k.d>this.sd){this.sd=k.d}},Stretch:function(){for(var o=0,k=this.svg.length;ol.w&&p.length===1&&!o.noIC){l.ic=l.r-l.w;l.w=l.r}this.SVGhandleColor(l);this.SVGsaveData(l);return l},SVGchildSVG:function(k){return(this.data[k]?this.data[k].toSVG():i())},SVGdataStretched:function(l,k,m){this.SVGdata={HW:k,D:m};if(!this.data[l]){return i()}if(m!=null){return this.data[l].SVGstretchV(k,m)}if(k!=null){return this.data[l].SVGstretchH(k)}return this.data[l].toSVG()},SVGsaveData:function(l){if(!this.SVGdata){this.SVGdata={}}this.SVGdata.w=l.w,this.SVGdata.x=l.x;this.SVGdata.h=l.h,this.SVGdata.d=l.d;if(l.X!=null){this.SVGdata.X=l.X}if(this["class"]){l.removeable=false;a.Element(l.element,{"class":this["class"]})}if(this.id){l.removeable=false;a.Element(l.element,{id:this.id})}if(this.href){var k=a.Element("a",{"class":"mjx-svg-href"});k.setAttributeNS(j,"href",this.href);k.onclick=this.SVGlink;a.addElement(k,"rect",{width:l.w,height:l.h+l.d,y:-l.d,fill:"none",stroke:"none","pointer-events":"all"});if(l.type==="svg"){var n=l.element.firstChild;while(n.firstChild){k.appendChild(n.firstChild)}n.appendChild(k)}else{k.appendChild(l.element);l.element=k}l.removeable=false}if(a.config.addMMLclasses){this.SVGaddClass(l.element,"mjx-svg-"+this.type);l.removeable=false}var m=this.style;if(m&&l.element){l.element.style.cssText=m;if(l.element.style.fontSize){l.element.style.fontSize=""}l.element.style.border=l.element.style.padding="";if(l.removeable){l.removeable=l.element.style.cssText===""}}},SVGaddClass:function(m,k){var l=m.getAttribute("class");m.setAttribute("class",(l?l+" ":"")+k)},SVGlink:function(){var k=this.href.animVal;if(k.charAt(0)==="#"){var l=a.hashCheck(document.getElementById(k.substr(1)));if(l&&l.scrollIntoView){setTimeout(function(){l.parentNode.scrollIntoView(true)},1)}}document.location=k},SVGgetStyles:function(){if(this.style){var k=e.Element("span");k.style.cssText=this.style;this.styles={border:a.getBorders(k),padding:a.getPadding(k)};if(k.style.fontSize){this.styles.fontSize=k.style.fontSize}if(k.style.color){this.styles.color=k.style.color}if(k.style.backgroundColor){this.styles.background=k.style.backgroundColor}if(k.style.fontStyle){this.styles.fontStyle=k.style.fontStyle}if(k.style.fontWeight){this.styles.fontWeight=k.style.fontWeight}if(k.style.fontFamily){this.styles.fontFamily=k.style.fontFamily}if(this.styles.fontWeight&&this.styles.fontWeight.match(/^\d+$/)){this.styles.fontWeight=(parseInt(this.styles.fontWeight)>600?"bold":"normal")}}},SVGhandleSpace:function(n){if(this.useMMLspacing){if(this.type!=="mo"){return}var m=this.getValues("scriptlevel","lspace","rspace");if(m.scriptlevel<=0||this.hasValue("lspace")||this.hasValue("rspace")){var l=this.SVGgetMu(n);m.lspace=Math.max(0,a.length2em(m.lspace,l));m.rspace=Math.max(0,a.length2em(m.rspace,l));var k=this,o=this.Parent();while(o&&o.isEmbellished()&&o.Core()===k){k=o;o=o.Parent()}if(m.lspace){n.x+=m.lspace}if(m.rspace){n.X=m.rspace}}}else{var p=this.texSpacing();if(p!==""){n.x+=a.length2em(p,this.SVGgetScale())/n.scale}}},SVGhandleColor:function(o){var w=this.getValues("mathcolor","color");if(this.styles&&this.styles.color&&!w.color){w.color=this.styles.color}if(w.color&&!this.mathcolor){w.mathcolor=w.color}if(w.mathcolor){a.Element(o.element,{fill:w.mathcolor,stroke:w.mathcolor});o.removeable=false}var s=(this.styles||{}).border,u=(this.styles||{}).padding,t=((s||{}).left||0),q=((u||{}).left||0),k;w.background=(this.mathbackground||this.background||(this.styles||{}).background||g.COLOR.TRANSPARENT);if(t+q){var l=i();for(k in o){if(o.hasOwnProperty(k)){l[k]=o[k]}}l.x=0;l.y=0;o.element=a.Element("g");o.removeable=true;o.Add(l,t+q,0)}if(u){o.w+=u.right;o.h+=u.top;o.d+=u.bottom}if(s){o.w+=s.right;o.h+=s.top;o.d+=s.bottom}if(w.background!==g.COLOR.TRANSPARENT){if(o.element.nodeName!=="g"&&o.element.nodeName!=="svg"){var p=a.Element("g");p.appendChild(o.element);o.element=p;o.removeable=true}o.Add(i.RECT(o.h,o.d,o.w,{fill:w.background,stroke:"none"}),0,0,false,true)}if(s){var v=5;var m={left:["V",o.h+o.d,-v,-o.d],right:["V",o.h+o.d,o.w-s.right+v,-o.d],top:["H",o.w,0,o.h-s.top+v],bottom:["H",o.w,0,-o.d-v]};for(k in m){if(m.hasOwnProperty(k)){if(s[k]){var r=m[k],n=i[r[0]+"LINE"];o.Add(n(r[1],s[k],s[k+"Style"],s[k+"Color"]),r[2],r[3])}}}}},SVGhandleVariant:function(k,m,l){return a.HandleVariant(k,m,l)},SVGgetVariant:function(){var k=this.getValues("mathvariant","fontfamily","fontweight","fontstyle");var l=k.mathvariant;if(this.variantForm){l="-TeX-variant"}k.hasVariant=this.Get("mathvariant",true);if(!k.hasVariant){k.family=k.fontfamily;k.weight=k.fontweight;k.style=k.fontstyle}if(this.styles){if(!k.style&&this.styles.fontStyle){k.style=this.styles.fontStyle}if(!k.weight&&this.styles.fontWeight){k.weight=this.styles.fontWeight}if(!k.family&&this.styles.fontFamily){k.family=this.styles.fontFamily}}if(k.family&&!k.hasVariant){if(!k.weight&&k.mathvariant.match(/bold/)){k.weight="bold"}if(!k.style&&k.mathvariant.match(/italic/)){k.style="italic"}l={forceFamily:true,font:{"font-family":k.family}};if(k.style){l.font["font-style"]=k.style}if(k.weight){l.font["font-weight"]=k.weight}return l}if(k.weight==="bold"){l={normal:g.VARIANT.BOLD,italic:g.VARIANT.BOLDITALIC,fraktur:g.VARIANT.BOLDFRAKTUR,script:g.VARIANT.BOLDSCRIPT,"sans-serif":g.VARIANT.BOLDSANSSERIF,"sans-serif-italic":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.weight==="normal"){l={bold:g.VARIANT.normal,"bold-italic":g.VARIANT.ITALIC,"bold-fraktur":g.VARIANT.FRAKTUR,"bold-script":g.VARIANT.SCRIPT,"bold-sans-serif":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.SANSSERIFITALIC}[l]||l}}if(k.style==="italic"){l={normal:g.VARIANT.ITALIC,bold:g.VARIANT.BOLDITALIC,"sans-serif":g.VARIANT.SANSSERIFITALIC,"bold-sans-serif":g.VARIANT.SANSSERIFBOLDITALIC}[l]||l}else{if(k.style==="normal"){l={italic:g.VARIANT.NORMAL,"bold-italic":g.VARIANT.BOLD,"sans-serif-italic":g.VARIANT.SANSSERIF,"sans-serif-bold-italic":g.VARIANT.BOLDSANSSERIF}[l]||l}}if(!(l in a.FONTDATA.VARIANT)){l="normal"}return a.FONTDATA.VARIANT[l]},SVGgetScale:function(){var l=1,k=this.getValues("mathsize","scriptlevel","fontsize");if((this.styles||{}).fontSize&&!k.fontsize){k.fontsize=this.styles.fontSize}if(k.fontsize&&!this.mathsize){k.mathsize=k.fontsize}if(k.scriptlevel!==0){if(k.scriptlevel>2){k.scriptlevel=2}l=Math.pow(this.Get("scriptsizemultiplier"),k.scriptlevel);k.scriptminsize=a.length2em(this.Get("scriptminsize"))/1000;if(l2){l.scriptlevel=2}k=Math.sqrt(Math.pow(l.scriptsizemultiplier,l.scriptlevel))}return k},SVGnotEmpty:function(k){while(k){if((k.type!=="mrow"&&k.type!=="texatom")||k.data.length>1){return true}k=k.data[0]}return false},SVGcanStretch:function(k){if(this.isEmbellished()){return this.Core().SVGcanStretch(k)}return false},SVGstretchV:function(k,l){return this.toSVG(k,l)},SVGstretchH:function(k){return this.toSVG(k)},SVGlineBreaks:function(){return false}},{SVGautoload:function(){var k=a.autoloadDir+"/"+this.type+".js";c.RestartAfter(h.Require(k))},SVGautoloadFile:function(k){var l=a.autoloadDir+"/"+k+".js";c.RestartAfter(h.Require(l))}});g.chars.Augment({toSVG:function(l,o,k,m){var n=this.data.join("").replace(/[\u2061-\u2064]/g,"");if(k){n=k(n,m)}return this.SVGhandleVariant(l,o,n)}});g.entity.Augment({toSVG:function(l,o,k,m){var n=this.toString().replace(/[\u2061-\u2064]/g,"");if(k){n=k(n,m)}return this.SVGhandleVariant(l,o,n)}});g.mo.Augment({toSVG:function(l,k){this.SVGgetStyles();var t=this.svg=this.SVG();this.SVGhandleSpace(t);if(this.data.length==0){t.Clean();this.SVGsaveData(t);return t}if(k!=null){return this.SVGstretchV(l,k)}else{if(l!=null){return this.SVG.strechH(l)}}var p=this.SVGgetScale(),r=this.SVGgetVariant();var z=this.getValues("largeop","displaystyle");if(z.largeop){r=a.FONTDATA.VARIANT[z.displaystyle?"-largeOp":"-smallOp"]}var y=this.CoreParent(),q=(y&&y.isa(g.msubsup)&&this!==y.data[0]),n=(q?this.SVGremapChars:null);if(this.data.join("").length===1&&y&&y.isa(g.munderover)&&this.CoreText(y.data[y.base]).length===1){var u=y.data[y.over],w=y.data[y.under];if(u&&this===u.CoreMO()&&y.Get("accent")){n=a.FONTDATA.REMAPACCENT}else{if(w&&this===w.CoreMO()&&y.Get("accentunder")){n=a.FONTDATA.REMAPACCENTUNDER}}}if(q&&this.data.join("").match(/['`"\u00B4\u2032-\u2037\u2057]/)){r=a.FONTDATA.VARIANT["-TeX-variant"]}for(var s=0,o=this.data.length;s10*A.w){v+=-A.l}t.Add(A,v,0,true);if(A.skew){t.skew=A.skew}}}t.Clean();if(this.data.join("").length!==1){delete t.skew}if(z.largeop){t.y=(t.h-t.d)/2/p-a.TeX.axis_height;if(t.r>t.w){t.ic=t.r-t.w;t.w=t.r}}this.SVGhandleColor(t);this.SVGsaveData(t);return t},CoreParent:function(){var k=this;while(k&&k.isEmbellished()&&k.CoreMO()===this&&!k.isa(g.math)){k=k.Parent()}return k},CoreText:function(k){if(!k){return""}if(k.isEmbellished()){return k.CoreMO().data.join("")}while((k.isa(g.mrow)||k.isa(g.TeXAtom)||k.isa(g.mstyle)||k.isa(g.mphantom))&&k.data.length===1&&k.data[0]){k=k.data[0]}if(!k.isToken){return""}else{return k.data.join("")}},SVGremapChars:{"*":"\u2217",'"':"\u2033","\u00B0":"\u2218","\u00B2":"2","\u00B3":"3","\u00B4":"\u2032","\u00B9":"1"},SVGremap:function(l,k){l=l.replace(/-/g,"\u2212");if(k){l=l.replace(/'/g,"\u2032").replace(/`/g,"\u2035");if(l.length===1){l=k[l]||l}}return l},SVGcanStretch:function(o){if(!this.Get("stretchy")){return false}var p=this.data.join("");if(p.length>1){return false}var l=this.CoreParent();if(l&&l.isa(g.munderover)&&this.CoreText(l.data[l.base]).length===1){var n=l.data[l.over],k=l.data[l.under];if(n&&this===n.CoreMO()&&l.Get("accent")){p=a.FONTDATA.REMAPACCENT[p]||p}else{if(k&&this===k.CoreMO()&&l.Get("accentunder")){p=a.FONTDATA.REMAPACCENTUNDER[p]||p}}}p=a.FONTDATA.DELIMITERS[p.charCodeAt(0)];var m=(p&&p.dir==o.substr(0,1));if(!m){delete this.svg}return m},SVGstretchV:function(p,q){var m=this.svg||this.toSVG();var l=this.getValues("symmetric","maxsize","minsize");var o=a.TeX.axis_height,k=this.SVGgetMu(m),n;if(l.symmetric){n=2*Math.max(p-o,q+o)}else{n=p+q}l.maxsize=a.length2em(l.maxsize,k,m.h+m.d);l.minsize=a.length2em(l.minsize,k,m.h+m.d);n=Math.max(l.minsize,Math.min(l.maxsize,n));m=a.createDelimiter(this.data.join("").charCodeAt(0),n,m.scale);if(l.symmetric){n=(m.h+m.d)/2+o}else{n=(m.h+m.d)*p/(p+q)}m.y=n-m.h;this.SVGhandleSpace(m);this.SVGhandleColor(m);delete this.svg.element;this.SVGsaveData(m);return m},SVGstretchH:function(l){var n=this.svg||this.toSVG(),k=this.SVGgetMu(n);var m=this.getValues("maxsize","minsize","mathvariant","fontweight");if((m.fontweight==="bold"||parseInt(m.fontweight)>=600)&&!this.Get("mathvariant",true)){m.mathvariant=g.VARIANT.BOLD}m.maxsize=a.length2em(m.maxsize,k,n.w);m.minsize=a.length2em(m.minsize,k,n.w);l=Math.max(m.minsize,Math.min(m.maxsize,l));n=a.createDelimiter(this.data.join("").charCodeAt(0),l,n.scale,m.mathvariant);this.SVGhandleSpace(n);this.SVGhandleColor(n);delete this.svg.element;this.SVGsaveData(n);return n}});g.mtext.Augment({toSVG:function(){this.SVGgetStyles();var k,o,n=this.SVGgetScale();if(this.Parent().type==="merror"){k=this.SVG();this.SVGhandleSpace(k);o=i.G();o.Add(i.TEXT(0.9*n,this.data.join(""),{fill:"#C00"}));k.Add(i.RECT(o.h+100,o.d+100,o.w+200,{fill:"#FF8",stroke:"#C00","stroke-width":50}),0,0);k.Add(o,150,0);k.H+=150;k.D+=50;k.Clean();this.SVGsaveData(k);return k}else{if(a.config.mtextFontInherit){k=this.SVG();this.SVGhandleSpace(k);var l=this.SVGgetVariant(),m={};if(l.bold){m["font-weight"]="bold"}if(l.italic){m["font-style"]="italic"}k.Add(i.TEXT(n,this.data.join(""),m));k.Clean();this.SVGhandleColor(k);this.SVGsaveData(k);return k}else{return this.SUPER(arguments).toSVG.call(this)}}}});g.ms.Augment({toSVG:g.mbase.SVGautoload});g.mglyph.Augment({toSVG:g.mbase.SVGautoload});g.mspace.Augment({toSVG:function(){this.SVGgetStyles();var m=this.getValues("height","depth","width");m.mathbackground=this.mathbackground;if(this.background&&!this.mathbackground){m.mathbackground=this.background}var l=this.SVG(),k=this.SVGgetMu(l);l.h=a.length2em(m.height,k)/l.scale;l.d=a.length2em(m.depth,k)/l.scale;l.w=l.r=a.length2em(m.width,k)/l.scale;if(l.w<0){l.x=l.w;l.w=l.r=0}if(l.h<-l.d){l.d=-l.h}l.l=0;l.Clean();this.SVGhandleColor(l);this.SVGsaveData(l);return l}});g.mphantom.Augment({toSVG:function(k,m){this.SVGgetStyles();var l=this.SVG();if(this.data[0]!=null){this.SVGhandleSpace(l);l.Add(this.SVGdataStretched(0,k,m));l.Clean();while(l.element.firstChild){l.element.removeChild(l.element.firstChild)}}this.SVGhandleColor(l);this.SVGsaveData(l);if(l.removeable&&!l.element.firstChild){delete l.element}return l}});g.mpadded.Augment({toSVG:function(l,k){this.SVGgetStyles();var o=this.SVG();if(this.data[0]!=null){this.SVGhandleSpace(o);var m=this.SVGdataStretched(0,l,k),u=this.SVGgetMu(o);var t=this.getValues("height","depth","width","lspace","voffset"),r=0,q=0;if(t.lspace){r=this.SVGlength2em(m,t.lspace,u)}if(t.voffset){q=this.SVGlength2em(m,t.voffset,u)}var n=m.h,p=m.d,s=m.w;o.Add(m,r,q);o.Clean();o.h=n;o.d=p;o.w=s;o.removeable=false;if(t.height!==""){o.h=this.SVGlength2em(o,t.height,u,"h",0)}if(t.depth!==""){o.d=this.SVGlength2em(o,t.depth,u,"d",0)}if(t.width!==""){o.w=this.SVGlength2em(o,t.width,u,"w",0)}if(o.h>o.H){o.H=o.h}if(o.d>o.D){o.D=o.d}}this.SVGhandleColor(o);this.SVGsaveData(o);return o},SVGlength2em:function(o,r,l,s,k){if(k==null){k=-a.BIGDIMEN}var p=String(r).match(/width|height|depth/);var q=(p?o[p[0].charAt(0)]:(s?o[s]:0));var n=a.length2em(r,l,q);if(s&&String(r).match(/^\s*[-+]/)){return Math.max(k,o[s]+n)}else{return n}}});g.mrow.Augment({SVG:i.ROW,toSVG:function(){this.SVGgetStyles();var l=this.SVG();this.SVGhandleSpace(l);for(var n=0,k=this.data.length;na.linebreakWidth)||this.hasNewline()},SVGmultiline:function(k){g.mbase.SVGautoloadFile("multiline")},SVGstretchH:function(k){var l=this.data[this.core].SVGstretchH(k);this.SVGhandleColor(l);this.SVGsaveData(l);return l},SVGstretchV:function(l,m){var k=this.data[this.core].SVGstretchV(l,m);this.SVGhandleColor(k);this.SVGsaveData(k);return k}});g.mstyle.Augment({toSVG:function(){this.SVGgetStyles();var k=this.SVG();if(this.data[0]!=null){this.SVGhandleSpace(k);var l=k.Add(this.data[0].toSVG());k.Clean();if(l.ic){k.ic=l.ic}this.SVGhandleColor(k)}this.SVGsaveData(k);return k},SVGstretchH:function(k){return(this.data[0]!=null?this.data[0].SVGstretchH(k):i.NULL())},SVGstretchV:function(k,l){return(this.data[0]!=null?this.data[0].SVGstretchV(k,l):i.NULL())}});g.mfrac.Augment({toSVG:function(){this.SVGgetStyles();var w=this.SVG();this.SVGhandleSpace(w);var s=this.SVGchildSVG(0),y=this.SVGchildSVG(1);var C=this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled");var r=w.scale=this.SVGgetScale(),n=C.displaystyle;var x=a.TeX.axis_height*r;if(C.bevelled){var B=(n?400:150);var A=Math.max(s.h+s.d,y.h+y.d)+2*B;var F=a.createDelimiter(47,A);w.Add(s,0,(s.d-s.h)/2+x+B);w.Add(F,s.w-B/2,(F.d-F.h)/2+x);w.Add(y,s.w+F.w-B,(y.d-y.h)/2+x-B)}else{var o=Math.max(s.w,y.w);var E=a.thickness2em(C.linethickness,r),m,l,D,z;var k=a.TeX.min_rule_thickness/a.em*1000;if(n){D=a.TeX.num1;z=a.TeX.denom1}else{D=(E===0?a.TeX.num3:a.TeX.num2);z=a.TeX.denom2}D*=r;z*=r;if(E===0){m=Math.max((n?7:3)*a.TeX.rule_thickness,2*k);l=(D-s.d)-(y.h-z);if(lv){k=((o.h+o.d)-(v-w))/2}s=i.RECT(w,0,m.w);v=m.h+k+w;u=this.SVGaddRoot(r,o,u,o.h+o.d-v,n);r.Add(o,u,v-o.h);r.Add(s,u+o.w,v-s.h);r.Add(m,u+o.w,0);r.Clean();r.h+=w;r.H+=w;this.SVGhandleColor(r);this.SVGsaveData(r);return r},SVGaddRoot:function(l,m,k,o,n){return k}});g.mroot.Augment({toSVG:g.msqrt.prototype.toSVG,SVGaddRoot:function(n,l,q,o,k){var s=(l.isMultiChar?0.55:0.65)*l.w;if(this.data[1]){var p=this.data[1].toSVG();p.x=0;var m=this.SVGrootHeight(l.h+l.d,k,p)-o;var r=Math.min(p.w,p.r);q=Math.max(r,s);n.Add(p,q-r,m)}else{s=q}return q-s},SVGrootHeight:function(m,l,k){return 0.45*(m-900*l)+600*l+Math.max(0,k.d-75)}});g.mfenced.Augment({SVG:i.ROW,toSVG:function(){this.SVGgetStyles();var l=this.SVG();this.SVGhandleSpace(l);if(this.data.open){l.Check(this.data.open)}if(this.data[0]!=null){l.Check(this.data[0])}for(var n=1,k=this.data.length;nI){I=p[J].w}if(!K[J]&&I>n){n=I}}}if(C==null&&F!=null){n=F}else{if(n==-a.BIGDIMEN){n=I}}for(J=I=0,G=this.data.length;JI){I=p[J].w}}}var B=a.TeX.rule_thickness;var o=p[this.base]||{w:0,h:0,d:0,H:0,D:0,l:0,r:0,scale:M};var s,q,w,v,r,A,H,L=0;if(o.ic){L=1.3*o.ic+0.05}for(J=0,G=this.data.length;Ju.H){u.H=u.h}}else{if(J==this.under){if(z){H=3*B*M;r=0}else{w=a.TeX.big_op_spacing2*M;v=a.TeX.big_op_spacing4*M;H=Math.max(w,v-u.h)}H=Math.max(H,1500/a.em);s-=L/2;q=-(o.d+u.h+H);u.d+=r;if(u.d>u.D){u.D=u.d}}}E.Add(u,s,q)}}E.Clean();this.SVGhandleColor(E);this.SVGsaveData(E);return E}});g.msubsup.Augment({toSVG:function(G,z){this.SVGgetStyles();var B=this.SVG();this.SVGhandleSpace(B);var K=B.scale=this.SVGgetScale(),E=this.SVGgetMu(B);var m=B.Add(this.SVGdataStretched(this.base,G,z));var l=(this.data[this.sup]||this.data[this.sub]||this).SVGgetScale();var I=a.TeX.x_height*K,y=a.TeX.scriptspace*K;var k,n;if(this.SVGnotEmpty(this.data[this.sup])){k=this.data[this.sup].toSVG();k.w+=y;k.r=Math.max(k.w,k.r)}if(this.SVGnotEmpty(this.data[this.sub])){n=this.data[this.sub].toSVG();n.w+=y;n.r=Math.max(n.w,n.r)}var C=a.TeX.sup_drop*l,A=a.TeX.sub_drop*l;var w=m.h+(m.y||0)-C,o=m.d-(m.y||0)+A,J=0,F;if(m.ic){m.w-=m.ic;J=1.3*m.ic+0.05}if(this.data[this.base]&&(this.data[this.base].type==="mi"||this.data[this.base].type==="mo")){if(this.data[this.base].data.join("").length===1&&m.scale===1&&!m.stretched&&!this.data[this.base].Get("largeop")){w=o=0}}var H=this.getValues("subscriptshift","superscriptshift");H.subscriptshift=(H.subscriptshift===""?0:a.length2em(H.subscriptshift,E));H.superscriptshift=(H.superscriptshift===""?0:a.length2em(H.superscriptshift,E));if(!k){if(n){o=Math.max(o,a.TeX.sub1*K,n.h-(4/5)*I,H.subscriptshift);B.Add(n,m.w,-o);this.data[this.sub].SVGdata.dy=-o}}else{if(!n){values=this.getValues("displaystyle","texprimestyle");F=a.TeX[(values.displaystyle?"sup1":(values.texprimestyle?"sup3":"sup2"))];w=Math.max(w,F*K,k.d+(1/4)*I,H.superscriptshift);B.Add(k,m.w+J,w);this.data[this.sup].SVGdata.dx=J;this.data[this.sup].SVGdata.dy=w}else{o=Math.max(o,a.TeX.sub2*K);var x=a.TeX.rule_thickness*K;if((w-k.d)-(n.h-o)<3*x){o=3*x-w+k.d+n.h;C=(4/5)*I-(w-k.d);if(C>0){w+=C;o-=C}}B.Add(k,m.w+J,Math.max(w,H.superscriptshift));B.Add(n,m.w,-Math.max(o,H.subscriptshift));this.data[this.sup].SVGdata.dx=J;this.data[this.sup].SVGdata.dy=Math.max(w,H.superscriptshift);this.data[this.sub].SVGdata.dy=-Math.max(o,H.subscriptshift)}}B.Clean();this.SVGhandleColor(B);this.SVGsaveData(B);return B}});g.mmultiscripts.Augment({toSVG:g.mbase.SVGautoload});g.mtable.Augment({toSVG:g.mbase.SVGautoload});g["annotation-xml"].Augment({toSVG:g.mbase.SVGautoload});g.math.Augment({SVG:i.Subclass({type:"svg",removeable:false}),toSVG:function(t,m){if(this.data[0]){this.SVGgetStyles();g.mbase.prototype.displayAlign=c.config.displayAlign;g.mbase.prototype.displayIndent=c.config.displayIndent;var q=i.G({stroke:"black",fill:"black","stroke-width":0,transform:"matrix(1 0 0 -1 0 0)"}).With({removeable:false});q.Add(this.data[0].toSVG(),0,0,true);q.Clean();this.SVGhandleColor(q);var s=this.SVG();s.element.setAttribute("xmlns:xlink",j);s.Add(q);s.Clean();this.SVGsaveData(s);var p=Math.max(-s.l,0),k=Math.max(s.r-s.w,0);var n=s.element.style;n.width=a.Ex(p+s.w+k);n.height=a.Ex(s.H+s.D+2*a.em);n.verticalAlign=a.Ex(-s.D-3*a.em);n.marginLeft=a.Ex(-p);n.marginRight=a.Ex(-k);s.element.setAttribute("viewBox",(-p)+" "+(-s.H-a.em)+" "+(p+s.w+k)+" "+(s.H+s.D+2*a.em));s.element.style.margin="1px 0px";if(s.H>s.h||s.D>s.d){var o=e.Element("span",{style:{display:"inline-block","white-space":"nowrap",padding:"1px 0px"},isMathJax:true},[["span",{style:{display:"inline-block",position:"relative",isMathJax:true,width:a.Ex(s.w),height:a.Ex(s.h+s.d),"vertical-align":a.Ex(-s.d)}}]]);o.firstChild.appendChild(s.element);s.element=o;n.verticalAlign=n.margin="";n.position="absolute";n.bottom=a.Ex(s.d-s.D);n.left=0}t.appendChild(s.element);s.element=null;if(!this.isMultiline&&this.Get("display")==="block"){var u=this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");if(u.indentalignfirst!==g.INDENTALIGN.INDENTALIGN){u.indentalign=u.indentalignfirst}if(u.indentalign===g.INDENTALIGN.AUTO){u.indentalign=this.displayAlign}m.style.textAlign=u.indentalign;if(u.indentshiftfirst!==g.INDENTSHIFT.INDENTSHIFT){u.indentshift=u.indentshiftfirst}if(u.indentshift==="auto"){u.indentshift=this.displayIndent}if(u.indentshift&&u.indentalign!==g.INDENTALIGN.CENTER&&!s.hasIndent){t.style[{left:"marginLeft",right:"marginRight"}[u.indentalign]]=a.Ex(a.length2em(u.indentshift))}}}return t}});g.TeXAtom.Augment({toSVG:function(){this.SVGgetStyles();var k=this.SVG();this.SVGhandleSpace(k);if(this.data[0]!=null){var l=this.data[0].toSVG(),m=0;if(this.texClass===g.TEXCLASS.VCENTER){m=a.TeX.axis_height-(l.h+l.d)/2+l.d}k.Add(l,0,m);k.ic=l.ic}this.SVGhandleColor(k);this.SVGsaveData(k);return k}});c.Register.StartupHook("onLoad",function(){setTimeout(MathJax.Callback(["loadComplete",a,"jax.js"]),0)})});c.Browser.Select({Opera:function(k){a.Augment({operaZoomRefresh:true})}});c.Register.StartupHook("End Cookie",function(){if(c.config.menuSettings.zoom!=="None"){h.Require("[MathJax]/extensions/MathZoom.js")}});if(!document.createElementNS){if(!document.namespaces.svg){document.namespaces.add("svg",b)}a.Augment({Element:function(k,l){var m=(typeof(k)==="string"?document.createElement("svg:"+k):k);m.isMathJax=true;if(l){for(var n in l){if(l.hasOwnProperty(n)){m.setAttribute(n,l[n].toString())}}}return m}})}})(MathJax.Ajax,MathJax.Hub,MathJax.HTML,MathJax.OutputJax.SVG); - diff --git a/modules/MathJax/localization/de/FontWarnings.js b/modules/MathJax/localization/de/FontWarnings.js deleted file mode 100755 index aba7512..0000000 --- a/modules/MathJax/localization/de/FontWarnings.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/de/FontWarnings.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("de","FontWarnings",{version:"2.2",isLoaded:true,strings:{webFont:"MathJax nutz web-basierte Fonts zur Darstellung der Mathematik auf dieser Seite. Da diese heruntergeladen werden m\u00FCssen, l\u00E4dt die Seite schneller, wenn Mathe-Fonts auf dem System installiert sind.",imageFonts:"MathJax nutzt Bild-Fonts stall lokaler Fonts oder Webfonts. Das Laden dauert l\u00E4nger als erwartet und Drucken wird evtl. nicht in bester Qualit\u00E4t m\u00F6glich sein.",noFonts:"MathJax kann keinen Font zur Darstellung der Mathematik finden und Bild-Fonts sind nicht verf\u00FCgbar. MathJax weicht auf generische Unicode-Zeichen aus in der Hoffnung, der Browser kann diese darstellen. Einige oder alle Zeichen k\u00F6nnten nicht korrekt dargestellt werden.",webFonts:"Die meisten modernen Browser k\u00F6nnen Fonts aus dem Web laden. Um die Qualit\u00E4t der Mathematik auf dieser Seite zu verbessern, sollten Sie ein Update auf eine aktuelle Version des Browsers vornehmen (oder einen aktuellen Browser installieren).",fonts:"MathJax kann [STIX Fonts](%1) oder [MathJax TeX Fonts](%2) verwenden. Herunterladen und installieren dieser Fonts wird Ihre MathJax-Erfahrung verbessern.",STIXPage:"Diese Seite ist optimiert fuer [STIX Fonts](%1). Herunterladen und installieren dieser Fonts wird Ihre MathJax-Erfahrung verbessern.",TeXPage:"Diese Seite ist optimiert fuer [MathJax TeX Fonts](%1). Herunterladen und installieren dieser Fonts wird Ihre MathJax-Erfahrung verbessern."}});MathJax.Ajax.loadComplete("[MathJax]/localization/de/FontWarnings.js"); - diff --git a/modules/MathJax/localization/de/HTML-CSS.js b/modules/MathJax/localization/de/HTML-CSS.js deleted file mode 100755 index 4e0bc8e..0000000 --- a/modules/MathJax/localization/de/HTML-CSS.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/de/HTML-CSS.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("de","HTML-CSS",{version:"2.2",isLoaded:true,strings:{LoadWebFont:"Lade Webfont %1",CantLoadWebFont:"Kann Webfont %1 nicht laden",FirefoxCantLoadWebFont:"Firefox kann Webfonts nicht von entferntem Computer laden",CantFindFontUsing:"Kein g\u00FCltiger Font fuer %1 verf\u00FCgbar",WebFontsNotAvailable:"Webfonts nicht verf\u00FCgbar -- benutze Bildfont"}});MathJax.Ajax.loadComplete("[MathJax]/localization/de/HTML-CSS.js"); - diff --git a/modules/MathJax/localization/de/HelpDialog.js b/modules/MathJax/localization/de/HelpDialog.js deleted file mode 100755 index 7554fba..0000000 --- a/modules/MathJax/localization/de/HelpDialog.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/de/HelpDialog.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("de","HelpDialog",{version:"2.2",isLoaded:true,strings:{Help:"MathJax Hilfe",MathJax:"*MathJax* ist eine JavaScript-Bibliothek, die Autoren erlaubt, Ihren Webseiten mathematische Inhalte hinzuzuf\u00FCgen. Als Besucher m\u00FCssen sie nichts zus\u00E4tzliches tun, damit MathJax funktioniert.",Browsers:"*Browser*: MathJax ist kompatibel zu allen modernen Webbrowsern inklusive IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ und g\u00E4ngigen mobilen Browsern.",Menu:"*Mathe Men\u00FC*: MathJax f\u00FCgt ein Kontextmen\u00FC bei allen Formeln hinzu. Es wird mit Rechtsklick oder STRG+Linksklick auf einer Formel aufgerufen.",ShowMath:"*Zeige Mathe als* erlaubt es, eine Formel im Quellformat anzuzeigen, um Kopieren und Einf\u00FCgen (als MathML oder im Originalformat) zu erm00F6glichen.",Settings:"*Einstellungen* erlabut es, das Verhalten von MathJax zu modifizieren, so z.B. die Gr\u00F6\u00DFe der Mathematik sowie den Ausgabemechanismus.",Language:"*Sprache* erlaubt es, die Sprache zu wechseln, die MathJax im Men\u00FC und den Warnmeldungen verwendent.",Zoom:"*Zoom*: Falls das Lesen der Formeln schwer f\u00E4llt, kann MathJax diese vergr\u00F6\u00DFern, um es zu erleichtern.",Accessibilty:"*Barrierfreiheit*: MathJax arbeite automatisch mit g\u00E4ngigen Screenreadern zusammen, um Mathematik barrierefrei darzustellen.",Fonts:"*Fonts*: MathJax benutzt gewisse mathematische Fonts, falls sie auf dem Systeminstalliert sind; ansonsten verwendet es Webfonts. Obwohl nicht notwendig, k\u00F6nnen installierte Fonts den Textsatz beschleunigen. Wir empfehlen, die [STIX fonts](%1) zu installieren."}});MathJax.Ajax.loadComplete("[MathJax]/localization/de/HelpDialog.js"); - diff --git a/modules/MathJax/localization/de/MathML.js b/modules/MathJax/localization/de/MathML.js deleted file mode 100755 index c782945..0000000 --- a/modules/MathJax/localization/de/MathML.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/de/MathML.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("de","MathML",{version:"2.2",isLoaded:true,strings:{BadMglyph:"Schlechter mglpyh: %1",BadMglyphFont:"Schlechter Font: %1",MathPlayer:"MathJax konnnte MathPlayer nicht einrichten.\n\nFalls MathPlayer nicht installiert ist, muss es erst installiert werden.\nEventuell blockieren die Sicherheitsoptionen ActiveX; \u00FCberpr\u00FCfen Sie\nunter 'Internetoptionen' -> 'Sicherheit' -> 'Stufe Anpassen',\nob ActiveX aktiviert ist.\n\nBei der jetzigen Konfiguration wird MathJax nur Fehlermeldungen anzeigen.",CantCreateXMLParser:"MathJax kann keinen XML-Parser f\u00FC r MathML erzeugen. \u00DC berpr\u00FC fen Sie die Einstellungen unter\n'Internetoptionen'-> 'Werkzeuge' -> 'Sicherheit' -> 'Stufe Anpassen'\nund aktivieren sie ActiveX.\n\nMathJax kann sonst kein MathML verarbeiten.",UnknownNodeType:"Unbekannter Knotentyp: %1",UnexpectedTextNode:"Unbekannter Textknoten: %1",ErrorParsingMathML:"Fehler beim Parsen von MathML",ParsingError:"Fehler beim Parsen von MathML: %1",MathMLSingleElement:"MathML muss ein einzelnes Element sein",MathMLRootElement:"MathML muss ein einzelnes Element sein, nicht %1"}});MathJax.Ajax.loadComplete("[MathJax]/localization/de/MathML.js"); - diff --git a/modules/MathJax/localization/de/MathMenu.js b/modules/MathJax/localization/de/MathMenu.js deleted file mode 100755 index 317203f..0000000 --- a/modules/MathJax/localization/de/MathMenu.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/de/MathMenu.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("de","MathMenu",{version:"2.2",isLoaded:true,strings:{Show:"Zeige Mathe als",MathMLcode:"MathML Code",OriginalMathML:"Original MathML",TeXCommands:"Original TeX",AsciiMathInput:"Original AsciiMathML",Original:"Originalform",ErrorMessage:"Fehlermeldung",texHints:"TeX Tipps in MathML",Settings:"Einstellungen",ZoomTrigger:"Zoom ausl\u00F6sen",Hover:"Hover",Click:"Klick",DoubleClick:"Doppelklick",NoZoom:"Kein Zoom",TriggerRequires:"Ausl\u00F6ser ben\u00F6tigt:",Option:"Option",Alt:"Alt",Command:"Command",Control:"Steuerung",Shift:"Shift",ZoomFactor:"Zoomfaktor",Renderer:"Mathe Renderer",MPHandles:"An MathPlayer \u00FCbergeben:",MenuEvents:"Men\u00FC Events",MouseEvents:"Maus Events",MenuAndMouse:"Maus und Men\u00FC Events",FontPrefs:"Font Einstellungen",ForHTMLCSS:"F\u00FCr HTML-CSS",Auto:"Auto",TeXLocal:"TeX (lokal)",TeXWeb:"TeX (Web)",TeXImage:"TeX (Bild)",STIXLocal:"STIX (lokal)",ContextMenu:"Kontextmen\u00FC ",Browser:"Browser",Scale:"Alle Mathe skalieren ...",Discoverable:"Highlight durch Hovern",Locale:"Sprache",LoadLocale:"Von URL laden ...",About:"\u00DCber MathJax",Help:"MathJax Hilfe",localTeXfonts:"Lokale TeX-Fonts verwendet",webTeXfonts:"Web TeX-Fonts verwendet",imagefonts:"Bild-Fonts verwendet",localSTIXfonts:"Lokale STIX-Fonts verwendet",webSVGfonts:"Web SVG-fonts verwendet",genericfonts:"Generische Unicode-Fonts verwendet",wofforotffonts:"WOFF- oder OTF-Fonts",eotffonts:"EOT-Fonts",svgfonts:"SVG-Fonts",WebkitNativeMMLWarning:"Ihr Browser scheint MathML nicht zu unterst\u00FCtzen, so dass ein Wechsel zur MathML-Ausgabe die Mathematik auf der Seite unlesbar machen k\u00F6nnte.",MSIENativeMMLWarning:"Internet Explorer ben\u00F6tigt das MathPlayer Plugin, um MathML-Ausgabe darstellen zu k\u00F6nnen.",OperaNativeMMLWarning:"Opera's MathML unterst\u00FCtzung ist beschr\u00E4nkt, so dass beim Wechsel zur MathML-Ausgabe einige Ausdr\u00FCcke schlecht gerendert werden.",SafariNativeMMLWarning:"Die MathML-Unterst\u00FCtzung Ihres Browsers beherrscht nicht alle MathJax-Features, so dass einige Ausdr\u00FCcke schlecht gerendert werden.",FirefoxNativeMMLWarning:"Die MathML-Unterst\u00FCtzung Ihres Browsers beherrscht nicht alle MathJax-Features, so dass einige Ausdr\u00FCcke schlecht gerendert werden.",MSIESVGWarning:"Internet Explorer unterst\u00FCtzt SVG erst ab IE9 und nicht im IE8-Emulationsmodus. Beim Wechsel zur SVG-Ausgabe wird die Mathematik nicht richtig dargestellt.",LoadURL:"Sprachschema von URL laden:",BadURL:"URL muss eine JavaScript-Datei f\u00FCr MathJax Sprachschema verlinken. JavaScript Dateinamen sollten auf '.js' enden.",BadData:"Fehler beim Laden des Sprachschema von %1",SwitchAnyway:"Renderer trotzdem \u00E4ndern?\n\n(Mit OK wechseln, mit ABBRECHEN den akt\u00FCllen Renderer verwenden)",ScaleMath:"Alle Mathematik skalieren (relativ zum umgebenden Text)",NonZeroScale:"Skalierung darf nicht Null sein",PercentScale:"Skalierung muss in Prozent sein (z.B. 120%%)",IE8warning:"Dies Deaktiviert das MathJax Men\u00FC und den MathJax Zoom. Alt+Klick auf eine Formel zeigt weiter das MathJax-Men\u00FC.\n\nWirklich MathPlayer Einstellungen \u00E4ndern?",IE9warning:"Das MathJax Men\u00FC wird deaktiviert und kann nur durch Alt+Klick auf eine Formel angezeigt werden.",NoOriginalForm:"Keine Originalform verf\u00FCgbar",Close:"Schliessen",EqSource:"Original MathJax Formel"}});MathJax.Ajax.loadComplete("[MathJax]/localization/de/MathMenu.js"); - diff --git a/modules/MathJax/localization/de/TeX.js b/modules/MathJax/localization/de/TeX.js deleted file mode 100755 index a5ae32e..0000000 --- a/modules/MathJax/localization/de/TeX.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/de/TeX.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("de","TeX",{version:"2.2",isLoaded:true,strings:{ExtraOpenMissingClose:"Zus\u00E4tzliche offene oder fehlende schliessende Klammer",ExtraCloseMissingOpen:"Zus\u00E4tzliche schliessende oder fehlende offene Klammer",MissingLeftExtraRight:"Fehlendes '\\left' oder zus\u00E4tzliches '\\right'",MissingScript:"Fehlendes Argument im Sub- oder Superskript",ExtraLeftMissingRight:"Zus\u00E4tzliches '\\left' oder fehlendes '\\right'",Misplaced:"%1 falsch plaziert",MissingOpenForSub:"Fehlende offende Klammer im Subskript",MissingOpenForSup:"Fehlende offene Klammer im Superskript",AmbiguousUseOf:"Mehrdeutige Verwendung von %1",EnvBadEnd:"\\begin{%1} endet mit \\end{%2}",EnvMissingEnd:"\\end{%1} fehlt",MissingBoxFor:"Fehlende Box: %1",MissingCloseBrace:"Fehlende geschlossene Klammer",UndefinedControlSequence:"Nicht definierter Befehl: %1",DoubleExponent:"Doppeltes Superskript: verwende Klammern zum Gruppieren",DoubleSubscripts:"Doppeltes Subskript: verwende Klammern zum Gruppieren",DoubleExponentPrime:"Prime f\u00FChrt zu doppeltem Superskript: verwende Klammern zum Gruppieren ",CantUseHash1:"Das Zeichen '#' ist ein Makroparameter und kann nicht im Mathematikmodus verwendet werden.",MisplacedMiddle:"%1 muss zwischen '\\left' und '\\right' stehen",MisplacedLimits:"%1 ist nur bei Operatoren erlaubt",MisplacedMoveRoot:"%1 muss innerhalb einer Wurzel stehen",MultipleCommand:"Zu viele %1",IntegerArg:"Das Argument in %1 muss ganzzahlig sein",NotMathMLToken:"%1 ist kein Token-Element",InvalidMathMLAttr:"Unzul\u00E4ssiges MathML-Attribut: %1",UnknownAttrForElement:"%1 ist kein zul\u00E4ssiges Attribut f\u00FCr %2",MaxMacroSub1:"Maximale Anzahl an Makros ist erreicht; wird ein rekursiver Makroaufruf verwendet?",MaxMacroSub2:"Maximale Anzahl an Substitutionen ist erreicht; wird eine rekursive LaTeX-Umgebung verwendet?",MissingArgFor:"Fehlendes Argument in %1",ExtraAlignTab:"Zus\u00E4tzliches & im '\\cases' Text",BracketMustBeDimension:"Das geklammerte Argument f\u00FCr %1 muss eine Dimension sein",InvalidEnv:"Ung\u00FCltiger Umgebungsname %1",UnknownEnv:"Ung\u00FCltige Umgebung %1",ExtraClose:"Zus\u00E4tzliche geschlossene Klammer",ExtraCloseLooking:"Zus\u00E4tzliche geschlossene Klammer w\u00E4hrend der Suche nach %1",MissingCloseBracket:"Argument zu %1 wurde nicht mit ']' geschlossen",MissingOrUnrecognizedDelim:"Fehlender oder nichterkannter Delimiter bei %1",MissingDimOrUnits:"Fehlende Dimension oder Einheiten bei %1",TokenNotFoundForCommand:"Konnte %1 nicht f\u00FCr %2 finden",MathNotTerminated:"Formel in Textbox nicht abgeschlossen",IllegalMacroParam:"Ung\u00FC ltiger Makroparameter",MaxBufferSize:"Interner Puffergr\u00F6\u00DFe \u00FCberschritten; wird ein rekursiver Makroaufruf verwendet?",CommandNotAllowedInEnv:"%1 ist nicht in Umgebung %2 erlaubt",MultipleLabel:"Label '%1' \u00FCberdefiniert",CommandAtTheBeginingOfLine:"%1 muss am Zeilenanfang stehen",IllegalAlign:"Ung\u00FCltige Ausrichtung in %1",BadMathStyleFor:"Schlechtes 'math style' Argument: %1",PositiveIntegerArg:"Argument bei %1 muss positiv und ganzzahlig sein",ErroneousNestingEq:"Fehlerhafte Verschachtelung von Gleichungen",MultlineRowsOneCol:"Zeilen in multiline Umgebung m\u00FC ssen genau eine Spalte haben",MultipleBBoxProperty:"%1 wurde zweimal in %2 angegeben",InvalidBBoxProperty:"'%1' scheint keine Farbe, Padding-Dimension oder Stil zu sein",ExtraEndMissingBegin:"Zus\u00E4tzliches oder Fehlendes \\begingroup",GlobalNotFollowedBy:"%1 nicht von '\\let', '\\def' oder '\\newcommand' gefolgt",UndefinedColorModel:"Farbmodell '%1' nicht definiert",ModelArg1:"Farbwerte f\u00FCr Farbmodell '%1' ben\u00F6tigen 3 Werte",InvalidDecimalNumber:"Ung\u00FCltige Dezimalzahl",ModelArg2:"Farbwerte f\u00FCr Farbmodell '%1' m\u00FCssen zwischen %2 und %3 liegen",InvalidNumber:"Ung\u00FCltige Zahl",NewextarrowArg1:"Das erste Argument von %1 muss Name einer Befehlsfolge sein",NewextarrowArg2:"Zweites Argument von %1 m\u00FCssen zwei ganze Zahlen, durch Komma getrennt, sein",NewextarrowArg3:"Drittes argument von %1 m\u00FCssen Unicode-Nummern sein",NoClosingChar:"Kann geschlossene %1 nicht finden",IllegalControlSequenceName:"Ung\u00FCltige Befehlsfolge",IllegalParamNumber:"Ung\u00FCltige Anzahl von Parametern in %1",DoubleBackSlash:"\\ muss von Befehlsfolge gefolgt werden",CantUseHash2:"Ung\u00FCltige Verwendung von # im Template von %1",SequentialParam:"Parameter von %1 m\u00FCssen durch nummeriert sein",MissingReplacementString:"Ersetzende Zeichenkette f\u00FCr Definition von %1 fehlt",MismatchUseDef:"Verwendung von %1 passt nicht zur Definition",RunawayArgument:"Nichtgeschlossenes Argument f\u00FCr %1?",NoClosingDelim:"Kein schliessender Delimiter f\u00FCr %1"}});MathJax.Ajax.loadComplete("[MathJax]/localization/de/TeX.js"); - diff --git a/modules/MathJax/localization/de/de.js b/modules/MathJax/localization/de/de.js deleted file mode 100755 index b32f8e3..0000000 --- a/modules/MathJax/localization/de/de.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/de/de.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("de",null,{menuTitle:"Deutsch",version:"2.2",isLoaded:true,domains:{_:{isLoaded:true,version:"2.2",strings:{CookieConfig:"MathJax hat eine Cookie mit ausf\u00FChrbaren Code gefunden. Soll dieser Code ausgef\u00FChrt werden?\n\n(Klicken Sie 'Abbrechen' falls Sie das Cookie nicht selber akzeptiert haben.)",MathProcessingError:"Mathe Verarbeitungsfehler",MathError:"Mathe Fehler",LoadFile:"Lade %1",Loading:"Laden",LoadFailed:"Datei konnte nicht geladen werden: %1",ProcessMath:"Mathe Verarbeitung: %1%%",Processing:"Verarbeiten",TypesetMath:"Mathe wird gesetzt: %1%%",Typesetting:"Setzen",MathJaxNotSupported:"Ihr Webbrowser unterst\u00FCtzt MathJax nicht"}},MathMenu:{},FontWarnings:{},HelpDialog:{},TeX:{},MathML:{},"HTML-CSS":{}},plural:function(a){if(a===1){return 1}return 2},number:function(a){return String(a).replace(".",",")}});MathJax.Ajax.loadComplete("[MathJax]/localization/de/de.js"); - diff --git a/modules/MathJax/localization/en/FontWarnings.js b/modules/MathJax/localization/en/FontWarnings.js deleted file mode 100755 index 7af538d..0000000 --- a/modules/MathJax/localization/en/FontWarnings.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/en/FontWarnings.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("en","FontWarnings",{version:"2.2",isLoaded:true,strings:{webFont:"MathJax is using web-based fonts to display the mathematics on this page. These take time to download, so the page would render faster if you installed math fonts directly in your system's font folder.",imageFonts:"MathJax is using its image fonts rather than local or web-based fonts. This will render slower than usual, and the mathematics may not print at the full resolution of your printer.",noFonts:"MathJax is unable to locate a font to use to display its mathematics, and image fonts are not available, so it is falling back on generic unicode characters in hopes that your browser will be able to display them. Some characters may not show up properly, or possibly not at all.",webFonts:"Most modern browsers allow for fonts to be downloaded over the web. Updating to a more recent version of your browser (or changing browsers) could improve the quality of the mathematics on this page.",fonts:"MathJax can use either the [STIX fonts](%1) or the [MathJax TeX fonts](%2). Download and install one of those fonts to improve your MathJax experience.",STIXPage:"This page is designed to use the [STIX fonts](%1). Download and install those fonts to improve your MathJax experience.",TeXPage:"This page is designed to use the [MathJax TeX fonts](%1). Download and install those fonts to improve your MathJax experience."}});MathJax.Ajax.loadComplete("[MathJax]/localization/en/FontWarnings.js"); - diff --git a/modules/MathJax/localization/en/HTML-CSS.js b/modules/MathJax/localization/en/HTML-CSS.js deleted file mode 100755 index 2e7c555..0000000 --- a/modules/MathJax/localization/en/HTML-CSS.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/en/HTML-CSS.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("en","HTML-CSS",{version:"2.2",isLoaded:true,strings:{LoadWebFont:"Loading web-font %1",CantLoadWebFont:"Can't load web font %1",FirefoxCantLoadWebFont:"Firefox can't load web fonts from a remote host",CantFindFontUsing:"Can't find a valid font using %1",WebFontsNotAvailable:"Web-Fonts not available -- using image fonts instead"}});MathJax.Ajax.loadComplete("[MathJax]/localization/en/HTML-CSS.js"); - diff --git a/modules/MathJax/localization/en/HelpDialog.js b/modules/MathJax/localization/en/HelpDialog.js deleted file mode 100755 index 57c9e3b..0000000 --- a/modules/MathJax/localization/en/HelpDialog.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/en/HelpDialog.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("en","HelpDialog",{version:"2.2",isLoaded:true,strings:{Help:"MathJax Help",MathJax:"*MathJax* is a JavaScript library that allows page authors to include mathematics within their web pages. As a reader, you don't need to do anything to make that happen.",Browsers:"*Browsers*: MathJax works with all modern browsers including IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ and most mobile browsers.",Menu:"*Math Menu*: MathJax adds a contextual menu to equations. Right-click or CTRL-click on any mathematics to access the menu.",ShowMath:"*Show Math As* allows you to view the formula's source markup for copy & paste (as MathML or in its original format).",Settings:"*Settings* gives you control over features of MathJax, such as the size of the mathematics, and the mechanism used to display equations.",Language:"*Language* lets you select the language used by MathJax for its menus and warning messages.",Zoom:"*Math Zoom*: If you are having difficulty reading an equation, MathJax can enlarge it to help you see it better.",Accessibilty:"*Accessibility*: MathJax will automatically work with screen readers to make mathematics accessible to the visually impaired.",Fonts:"*Fonts*: MathJax will use certain math fonts if they are installed on your computer; otherwise, it will use web-based fonts. Although not required, locally installed fonts will speed up typesetting. We suggest installing the [STIX fonts](%1)."}});MathJax.Ajax.loadComplete("[MathJax]/localization/en/HelpDialog.js"); - diff --git a/modules/MathJax/localization/en/MathML.js b/modules/MathJax/localization/en/MathML.js deleted file mode 100755 index 01cf7f6..0000000 --- a/modules/MathJax/localization/en/MathML.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/en/MathML.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("en","MathML",{version:"2.2",isLoaded:true,strings:{BadMglyph:"Bad mglyph: %1",BadMglyphFont:"Bad font: %1",MathPlayer:"MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics.",CantCreateXMLParser:"MathJax can't create an XML parser for MathML. Check that\nthe 'Script ActiveX controls marked safe for scripting' security\nsetting is enabled (use the Internet Options item in the Tools\nmenu, and select the Security panel, then press the Custom Level\nbutton to check this).\n\nMathML equations will not be able to be processed by MathJax.",UnknownNodeType:"Unknown node type: %1",UnexpectedTextNode:"Unexpected text node: %1",ErrorParsingMathML:"Error parsing MathML",ParsingError:"Error parsing MathML: %1",MathMLSingleElement:"MathML must be formed by a single element",MathMLRootElement:"MathML must be formed by a element, not %1"}});MathJax.Ajax.loadComplete("[MathJax]/localization/en/MathML.js"); - diff --git a/modules/MathJax/localization/en/MathMenu.js b/modules/MathJax/localization/en/MathMenu.js deleted file mode 100755 index 4a73733..0000000 --- a/modules/MathJax/localization/en/MathMenu.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/en/MathMenu.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("en","MathMenu",{version:"2.2",isLoaded:true,strings:{Show:"Show Math As",MathMLcode:"MathML Code",OriginalMathML:"Original MathML",TeXCommands:"TeX Commands",AsciiMathInput:"AsciiMathML input",Original:"Original Form",ErrorMessage:"Error Message",texHints:"Show TeX hints in MathML",Settings:"Math Settings",ZoomTrigger:"Zoom Trigger",Hover:"Hover",Click:"Click",DoubleClick:"Double-Click",NoZoom:"No Zoom",TriggerRequires:"Trigger Requires:",Option:"Option",Alt:"Alt",Command:"Command",Control:"Control",Shift:"Shift",ZoomFactor:"Zoom Factor",Renderer:"Math Renderer",MPHandles:"Let MathPlayer Handle:",MenuEvents:"Menu Events",MouseEvents:"Mouse Events",MenuAndMouse:"Mouse and Menu Events",FontPrefs:"Font Preferences",ForHTMLCSS:"For HTML-CSS:",Auto:"Auto",TeXLocal:"TeX (local)",TeXWeb:"TeX (web)",TeXImage:"TeX (image)",STIXLocal:"STIX (local)",ContextMenu:"Contextual Menu",Browser:"Browser",Scale:"Scale All Math ...",Discoverable:"Highlight on Hover",Locale:"Language",LoadLocale:"Load from URL ...",About:"About MathJax",Help:"MathJax Help",localTeXfonts:"using local TeX fonts",webTeXfonts:"using web TeX font",imagefonts:"using Image fonts",localSTIXfonts:"using local STIX fonts",webSVGfonts:"using web SVG fonts",genericfonts:"using generic unicode fonts",wofforotffonts:"woff or otf fonts",eotffonts:"eot fonts",svgfonts:"svg fonts",WebkitNativeMMLWarning:"Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable.",MSIENativeMMLWarning:"Internet Explorer requires the MathPlayer plugin in order to process MathML output.",OperaNativeMMLWarning:"Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly.",SafariNativeMMLWarning:"Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly.",FirefoxNativeMMLWarning:"Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly.",MSIESVGWarning:"SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly.",LoadURL:"Load translation data from this URL:",BadURL:"The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'",BadData:"Failed to load translation data from %1",SwitchAnyway:"Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)",ScaleMath:"Scale all mathematics (compared to surrounding text) by",NonZeroScale:"The scale should not be zero",PercentScale:"The scale should be a percentage (e.g., 120%%)",IE8warning:"This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?",IE9warning:"The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead.",NoOriginalForm:"No original form available",Close:"Close",EqSource:"MathJax Equation Source"}});MathJax.Ajax.loadComplete("[MathJax]/localization/en/MathMenu.js"); - diff --git a/modules/MathJax/localization/en/TeX.js b/modules/MathJax/localization/en/TeX.js deleted file mode 100755 index c37c9af..0000000 --- a/modules/MathJax/localization/en/TeX.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/en/TeX.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("en","TeX",{version:"2.2",isLoaded:true,strings:{ExtraOpenMissingClose:"Extra open brace or missing close brace",ExtraCloseMissingOpen:"Extra close brace or missing open brace",MissingLeftExtraRight:"Missing \\left or extra \\right",MissingScript:"Missing superscript or subscript argument",ExtraLeftMissingRight:"Extra \\left or missing \\right",Misplaced:"Misplaced %1",MissingOpenForSub:"Missing open brace for subscript",MissingOpenForSup:"Missing open brace for superscript",AmbiguousUseOf:"Ambiguous use of %1",EnvBadEnd:"\\begin{%1} ended with \\end{%2}",EnvMissingEnd:"Missing \\end{%1}",MissingBoxFor:"Missing box for %1",MissingCloseBrace:"Missing close brace",UndefinedControlSequence:"Undefined control sequence %1",DoubleExponent:"Double exponent: use braces to clarify",DoubleSubscripts:"Double subscripts: use braces to clarify",DoubleExponentPrime:"Prime causes double exponent: use braces to clarify",CantUseHash1:"You can't use 'macro parameter character #' in math mode",MisplacedMiddle:"%1 must be within \\left and \\right",MisplacedLimits:"%1 is allowed only on operators",MisplacedMoveRoot:"%1 can appear only within a root",MultipleCommand:"Multiple %1",IntegerArg:"The argument to %1 must be an integer",NotMathMLToken:"%1 is not a token element",InvalidMathMLAttr:"Invalid MathML attribute: %1",UnknownAttrForElement:"%1 is not a recognized attribute for %2",MaxMacroSub1:"MathJax maximum macro substitution count exceeded; is there a recursive macro call?",MaxMacroSub2:"MathJax maximum substitution count exceeded; is there a recursive latex environment?",MissingArgFor:"Missing argument for %1",ExtraAlignTab:"Extra alignment tab in \\cases text",BracketMustBeDimension:"Bracket argument to %1 must be a dimension",InvalidEnv:"Invalid environment name '%1'",UnknownEnv:"Unknown environment '%1'",ExtraClose:"Extra close brace",ExtraCloseLooking:"Extra close brace while looking for %1",MissingCloseBracket:"Couldn't find closing ']' for argument to %1",MissingOrUnrecognizedDelim:"Missing or unrecognized delimiter for %1",MissingDimOrUnits:"Missing dimension or its units for %1",TokenNotFoundForCommand:"Couldn't find %1 for %2",MathNotTerminated:"Math not terminated in text box",IllegalMacroParam:"Illegal macro parameter reference",MaxBufferSize:"MathJax internal buffer size exceeded; is there a recursive macro call?",CommandNotAllowedInEnv:"%1 not allowed in %2 environment",MultipleLabel:"Label '%1' multiply defined",CommandAtTheBeginingOfLine:"%1 must come at the beginning of the line",IllegalAlign:"Illegal alignment specified in %1",BadMathStyleFor:"Bad math style for %1",PositiveIntegerArg:"Argument to %1 must me a positive integer",ErroneousNestingEq:"Erroneous nesting of equation structures",MultlineRowsOneCol:"The rows within the %1 environment must have exactly one column",MultipleBBoxProperty:"%1 specified twice in %2",InvalidBBoxProperty:"'%1' doesn't look like a color, a padding dimension, or a style",ExtraEndMissingBegin:"Extra %1 or missing \\begingroup",GlobalNotFollowedBy:"%1 not followed by \\let, \\def, or \\newcommand",UndefinedColorModel:"Color model '%1' not defined",ModelArg1:"Color values for the %1 model require 3 numbers",InvalidDecimalNumber:"Invalid decimal number",ModelArg2:"Color values for the %1 model must be between %2 and %3",InvalidNumber:"Invalid number",NewextarrowArg1:"First argument to %1 must be a control sequence name",NewextarrowArg2:"Second argument to %1 must be two integers separated by a comma",NewextarrowArg3:"Third argument to %1 must be a unicode character number",NoClosingChar:"Can't find closing %1",IllegalControlSequenceName:"Illegal control sequence name for %1",IllegalParamNumber:"Illegal number of parameters specified in %1",DoubleBackSlash:"\\ must be followed by a control sequence",CantUseHash2:"Illegal use of # in template for %1",SequentialParam:"Parameters for %1 must be numbered sequentially",MissingReplacementString:"Missing replacement string for definition of %1",MismatchUseDef:"Use of %1 doesn't match its definition",RunawayArgument:"Runaway argument for %1?",NoClosingDelim:"Can't find closing delimiter for %1"}});MathJax.Ajax.loadComplete("[MathJax]/localization/en/TeX.js"); - diff --git a/modules/MathJax/localization/en/en.js b/modules/MathJax/localization/en/en.js deleted file mode 100755 index 8f8040e..0000000 --- a/modules/MathJax/localization/en/en.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/en/en.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("en",null,{menuTitle:"English",version:"2.2",isLoaded:true,domains:{_:{version:"2.2",isLoaded:true,strings:{CookieConfig:"MathJax has found a user-configuration cookie that includes code to be run. Do you want to run it?\n\n(You should press Cancel unless you set up the cookie yourself.)",MathProcessingError:"Math Processing Error",MathError:"Math Error",LoadFile:"Loading %1",Loading:"Loading",LoadFailed:"File failed to load: %1",ProcessMath:"Processing Math: %1%%",Processing:"Processing",TypesetMath:"Typesetting Math: %1%%",Typesetting:"Typesetting",MathJaxNotSupported:"Your browser does not support MathJax"}},MathMenu:{},FontWarnings:{},HelpDialog:{},TeX:{},MathML:{},"HTML-CSS":{}},plural:function(a){if(a===1){return 1}return 2},number:function(a){return a}});MathJax.Ajax.loadComplete("[MathJax]/localization/en/en.js"); - diff --git a/modules/MathJax/localization/fr/FontWarnings.js b/modules/MathJax/localization/fr/FontWarnings.js deleted file mode 100755 index cadd46f..0000000 --- a/modules/MathJax/localization/fr/FontWarnings.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/fr/FontWarnings.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("fr","FontWarnings",{version:"2.2",isLoaded:true,strings:{webFont:"MathJax utilise les polices Web pour afficher les expressions math\u00E9matiques sur cette page. Celles-ci mettent du temps \u00E0 \u00EAtre t\u00E9l\u00E9charg\u00E9es et la page serait affich\u00E9e plus rapidement si vous installiez les polices math\u00E9matiques directement dans le dossier des polices de votre syst\u00E8me.",imageFonts:"MathJax utilise des images de caract\u00E8res plut\u00F4t que les polices Web ou locales. Ceci rend le rendu plus lent que la normale et les expressions math\u00E9matiques peuvent ne pas s'imprimer \u00E0 la r\u00E9solution maximale de votre imprimante",noFonts:"MathJax n'est pas parvenu \u00E0 localiser une police pour afficher les expressions math\u00E9matiques et les images de caract\u00E8res ne sont pas disponibles. Comme solution de dernier recours, il utilise des caract\u00E8res Unicode g\u00E9n\u00E9riques en esp\u00E9rant que votre navigateur sera capable de les afficher. Certains pourront \u00EAtre rendus de fa\u00E7on incorrect voire pas du tout.",webFonts:"La plupart des navigateurs modernes permettent de t\u00E9l\u00E9charger des polices \u00E0 partir du Web. En mettant \u00E0 jour votre navigateur vers une version plus r\u00E9cente (ou en changeant de navigateur) la qualit\u00E9 des expressions math\u00E9matiques sur cette page pourrait \u00EAtre am\u00E9lior\u00E9e.",fonts:"MathJax peut utiliser les [Polices STIX](%1) ou bien les [Polices TeX de MathJax](%2). T\u00E9l\u00E9chargez et installez l'une de ces familles de polices pour am\u00E9liorer votre exp\u00E9rience avec MathJax.",TeXPage:"Cette page est con\u00E7ue pour utiliser les [Polices STIX](%1). T\u00E9l\u00E9chargez et installez ces polices pour am\u00E9liorer votre exp\u00E9rience avec MathJax",TeXPage:"Cette page est con\u00E7ue pour utiliser les [Polices TeX de MathJax](%1). T\u00E9l\u00E9chargez et installez ces polices pour am\u00E9liorer votre exp\u00E9rience avec MathJax"}});MathJax.Ajax.loadComplete("[MathJax]/localization/fr/FontWarnings.js"); - diff --git a/modules/MathJax/localization/fr/HTML-CSS.js b/modules/MathJax/localization/fr/HTML-CSS.js deleted file mode 100755 index 9bdda86..0000000 --- a/modules/MathJax/localization/fr/HTML-CSS.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/fr/HTML-CSS.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("fr","HTML-CSS",{version:"2.2",isLoaded:true,strings:{LoadWebFont:"T\u00E9l\u00E9chargement de la police Web %1",CantLoadWebFont:"Impossible de t\u00E9l\u00E9charger la police Web %1",FirefoxCantLoadWebFont:"Firefox ne peut t\u00E9l\u00E9charger les polices Web \u00E0 partir d'un h\u00F4te distant",CantFindFontUsing:"Impossible de trouver une police valide en utilisant %1",WebFontsNotAvailable:"Polices Web non disponibles -- des images de caract\u00E8res vont \u00EAtre utilis\u00E9es \u00E0 la place"}});MathJax.Ajax.loadComplete("[MathJax]/localization/fr/HTML-CSS.js"); - diff --git a/modules/MathJax/localization/fr/HelpDialog.js b/modules/MathJax/localization/fr/HelpDialog.js deleted file mode 100755 index beb853c..0000000 --- a/modules/MathJax/localization/fr/HelpDialog.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/fr/HelpDialog.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("fr","HelpDialog",{version:"2.2",isLoaded:true,strings:{Help:"Aide MathJax",MathJax:"*MathJax* est une librairie Javascript qui permet aux auteurs d'inclure des formules math\u00E9matiques au sein de leurs pages Web. Aucune action suppl\u00E9mentaire n'est n\u00E9cessaire de la part des visiteurs.",Browsers:"*Navigateurs*: MathJax fonctionne avec tous les navigateurs modernes y compris Internet Explorer 6, Firefox 3, Chrome 0.2, Safari 2, Opera 9.6 et leurs versions sup\u00E9rieures ainsi que la plupart des navigateurs pour mobiles et tablettes.",Menu:"*Menu Math\u00E9matiques*: MathJax ajoute un menu contextuel aux \u00E9quations. Acc\u00E9dez au menu en effectuant un clic droit ou un Ctrl+clic sur n'importe quelle formule math\u00E9matique.",ShowMath:"Le menu *Afficher sous forme* vous permet de voir le code source de la formule pour la copier et coller (sous forme MathML ou sous son format d'origine).",Settings:"Le menu *Param\u00E8tres* vous permet de contr\u00F4ler diverses caract\u00E9ristiques de MathJax, telles que la taille des formules math\u00E9matiques ou le m\u00E9canisme utilis\u00E9 pour afficher ces formules.",Language:"Le menu *Langue* vous permet de s\u00E9lectionnez la langue utilis\u00E9e par MathJax pour ses menus et messages d'avertissement.",Zoom:"*Math Zoom*: si vous rencontrez des difficult\u00E9s pour lire les formules math\u00E9matiques, MathJax peut les agrandir de fa\u00E7on \u00E0 ce qu'elles soient plus lisibles.",Accessibilty:"*Accessibilit\u00E9*: MathJax fonctionnera automatiquement avec les lecteurs d'\u00E9cran pour rendre les expressions math\u00E9matiques accessibles aux personnes malvoyantes.",Fonts:"*Polices*: MathJax utilisera certaines polices math\u00E9matiques si elles sont intall\u00E9es sur votre syst\u00E8me ou bien des polices Web dans le cas contraire. Bien que non recquises, ces polices install\u00E9es sur votre syst\u00E8me acc\u00E9lereront le rendu des expressions math\u00E9matiques. Nous recommandons d'installer les [Polices STIX](%1)."}});MathJax.Ajax.loadComplete("[MathJax]/localization/fr/HelpDialog.js"); - diff --git a/modules/MathJax/localization/fr/MathML.js b/modules/MathJax/localization/fr/MathML.js deleted file mode 100755 index c629d38..0000000 --- a/modules/MathJax/localization/fr/MathML.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/fr/MathML.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("fr","MathML",{version:"2.2",isLoaded:true,strings:{BadMglyph:"\u00C9lement mglyph incorrect: %1",BadMglyphFont:"Police de caract\u00E8re incorrecte: %1",MathPlayer:"MathJax n'est pas parvenu \u00E0 configurer MathPlayer.\n\nVous devez d'abord installer MathPlayer. Si c'est d\u00E9j\u00E0 le cas,\nvos param\u00E8tres de s\u00E9curit\u00E9s peuvent emp\u00EAcher l'ex\u00E9cution des\ncontr\u00F4les ActiveX. S\u00E9lectionnez Options Internet dans le menu\nOutils et s\u00E9lectionnez l'onglet S\u00E9curit\u00E9. Appuyez ensuite sur\nle menu Niveau Personalis\u00E9. Assurez vous que les param\u00E8tres\nEx\u00E9cution des contr\u00F4les ActiveX et Comportements des ex\u00E9cutables\net des scripts sont activ\u00E9s.\n\nActuellement, vous verrez des messages d'erreur \u00E0 la place des\nexpressions math\u00E9matiques.",CantCreateXMLParser:"MathJax ne peut cr\u00E9er un analyseur grammatical XML pour le MathML",UnknownNodeType:"Type de noeud inconnu: %1",UnexpectedTextNode:"Noeud de texte inattendu: %1",ErrorParsingMathML:"Erreur lors de l'analyse grammaticale du code MathML",ParsingError:"Erreur lors de l'analyse du code MathML: %1",MathMLSingleElement:"Le code MathML doit \u00EAtre form\u00E9 d'un unique \u00E9l\u00E9ment",MathMLRootElement:"Le code MathML doit \u00EAtre form\u00E9 d'un \u00E9l\u00E9ment et non d'un \u00E9l\u00E9ment %1"}});MathJax.Ajax.loadComplete("[MathJax]/localization/fr/MathML.js"); - diff --git a/modules/MathJax/localization/fr/MathMenu.js b/modules/MathJax/localization/fr/MathMenu.js deleted file mode 100755 index f119503..0000000 --- a/modules/MathJax/localization/fr/MathMenu.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/fr/MathMenu.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("fr","MathMenu",{version:"2.2",isLoaded:true,strings:{Show:"Afficher sous forme",MathMLcode:"de code MathML",OriginalMathML:"de code MathML originel",TeXCommands:"de commandes TeX",AsciiMathInput:"de code AsciiMathML",Original:"originelle",ErrorMessage:"de message d'erreur",texHints:"Inclure les donn\u00E9es TeX dans le MathML",Settings:"Param\u00E8tres",ZoomTrigger:"D\u00E9clenchement du zoom",Hover:"Survol de la souris",Click:"Clic de souris",DoubleClick:"Double-clic",NoZoom:"Pas de zoom",TriggerRequires:"Le d\u00E9clenchement n\u00E9cessite la touche",Option:"Option",Alt:"Alt",Command:"Command",Control:"Control",Shift:"Shift",ZoomFactor:"Facteur de zoom",Renderer:"Mode de rendu",MPHandles:"Laissez MathPlayer g\u00E9rer les",MenuEvents:"\u00C9v\u00E8nements du menu",MouseEvents:"\u00C9v\u00E8nements de la souris",MenuAndMouse:"\u00C9v\u00E8nements de menu et de la souris",FontPrefs:"Pr\u00E9f\u00E9rences des polices",ForHTMLCSS:"Pour le HTML-CSS:",Auto:"Auto",TeXLocal:"TeX (locales)",TeXWeb:"TeX (web)",TeXImage:"TeX (image)",STIXLocal:"STIX (locales)",ContextMenu:"Menu contextuel",Browser:"Navigateur",Scale:"Mise \u00E0 l'\u00E9chelle ...",Discoverable:"Mettez en surbrillance lors du survol",Locale:"Langue",LoadLocale:"Charger \u00E0 partir de l'URL...",About:"\u00C0 propos de MathJax",Help:"Aide MathJax",localTeXfonts:"utilisant les polices TeX locales",webTeXfonts:"utilisant les polices TeX Web",imagefonts:"utilisant les images de caract\u00E8res",localSTIXfonts:"utilisant les polices STIX locales",webSVGfonts:"utilisant les polices SVG Web",genericfonts:"utilisant les polices locales g\u00E9n\u00E9riques",wofforotffonts:"les polices woff ou otf",eotffonts:"les polices eot",svgfonts:"les polices svg",WebkitNativeMMLWarning:"Votre navigateur ne semble pas comporter de support MathML, changer le mode de rendu pourrait rendre illisibles les expressions math\u00E9matiques.",MSIENativeMMLWarning:"Internet Explorer a besoin du module compl\u00E9mentaire MathPlayer pour afficher le MathML.",OperaNativeMMLWarning:"Le support MathML d'Opera est limit\u00E9, changer le mode de rendu pourrait entrainer un affichage m\u00E9diocre de certaines expressions.",SafariNativeMMLWarning:"Le support MathML natif de votre navigateur ne comporte pas toutes les fonctionnalit\u00E9s requises par MathJax, certaines expressions pourront donc ne pas s'afficher correctement.",FirefoxNativeMMLWarning:"Le support MathML natif de votre navigateur ne comporte pas toutes les fonctionnalit\u00E9s requises par MathJax, certaines expressions pourront donc ne pas s'afficher correctement.",LoadURL:"Charger les donn\u00E9es de traduction \u00E0 partir de cette addresse URL:",BadURL:"L'adresse URL doit \u00EAtre un fichier Javascript contenant des donn\u00E9es de traduction MathJax.Les noms de fichier Javascript doivent se terminer par '.js'",BadData:"\u00C9chec du chargement des donn\u00E9es de traduction \u00E0 partir de %1",SwitchAnyway:"\u00CAtes vous certain de vouloir changer le mode de rendu ?\n\nAppuyez sur OK pour valider ou Annuler pour continuer avec le mode de rendu actuellement s\u00E9lectionn\u00E9.",ScaleMath:"Mise \u00E0 l'\u00E9chelle des expressions math\u00E9matiques (par rapport au text environnant) de",NonZeroScale:"L'\u00E9chelle ne peut \u00EAtre nulle",PercentScale:"L'\u00E9chelle doit \u00EAtre un pourcentage (e.g. 120%%)",IE8warning:"Ceci d\u00E9sactivera le menu de MathJax et les fonctionalit\u00E9s de zoom mais vous pourrez toujours obtenir le menu de MathJax en utilisant la commande Alt+Clic sur une expression.\n\n\u00CAtes vous certain de vouloir choisir les options de MathPlayer?",IE9warning:"Le menu contextuel de MathJax sera d\u00E9sactiv\u00E9, mais vous pourrez toujours obtenir le menu de MathJax en utilisant la commande Alt-Clic sur une expression.",NoOriginalForm:"Aucune forme originelle disponible.",Close:"Fermer",EqSource:"Source de l'\u00E9quation MathJax"}});MathJax.Ajax.loadComplete("[MathJax]/localization/fr/MathMenu.js"); - diff --git a/modules/MathJax/localization/fr/TeX.js b/modules/MathJax/localization/fr/TeX.js deleted file mode 100755 index 499f441..0000000 --- a/modules/MathJax/localization/fr/TeX.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/fr/TeX.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("fr","TeX",{version:"2.2",isLoaded:true,strings:{ExtraOpenMissingClose:"Accolade ouvrante manquante ou accolade fermante non attendue",ExtraCloseMissingOpen:"Accolade fermante non attendue ou accolade ouvrante manquante",MissingLeftExtraRight:"Commande \\left manquante ou commande \\right non attendue",MissingScript:"Argument en exposant ou en indice manquant",ExtraLeftMissingRight:"Commande \\left inattendue ou commande \\right manquante",Misplaced:"Mauvaise position pour la commande %1",MissingOpenForSub:"Accolade ouvrante manquante pour le script en indice",MissingOpenForSup:"Accolade ouvrante manquante pour le script en exposant",AmbiguousUseOf:"Usage ambigu de la commande %1",EnvBadEnd:"\\begin{%1} s'est termin\u00E9 par un \\end{%2}",EnvMissingEnd:"\\end{%1} manquant",MissingBoxFor:"Boite manquante pour la commande %1",MissingCloseBrace:"Accolade fermante manquante",UndefinedControlSequence:"Commande %1 non d\u00E9finie",IllegalControlSequenceName:"Nom de contr\u00F4le de s\u00E9quence non autoris\u00E9 pour la commande %1",IllegalParamNumber:"Nombre de param\u00E8tres incorrect pour la commande %1",DoubleExponent:"Double exposant: utilisez des accolades pour clarifier",DoubleSubscripts:"Double indice: utilisez des accolades pour clarifier",DoubleExponentPrime:"Un prime entraine un double exposant: utilisez des accolades pour clarifier",CantUseHash1:"Vous ne pouvez pas utilisez le caract\u00E8re #, indiquant un param\u00E8tre de macro, dans le mode math\u00E9matique",CantUseHash2:"Usage du caract\u00E8re # non autoris\u00E9 dans le mod\u00E8le pour la s\u00E9quence de contr\u00F4le %1",MisplacedMiddle:"La commande %1 doit \u00EAtre plac\u00E9e \u00E0 l'int\u00E9rieur d'une section \\left ... \right",MisplacedLimits:"La commande %1 n'est autoris\u00E9e que sur les op\u00E9rateurs",MisplacedMoveRoot:"La commande %1 n'est autoris\u00E9e qu'\u00E0 l'int\u00E9rieur d'une racine",MultipleCommand:"Usage multiple de la commande %1",IntegerArg:"L'argument de la commande %1 doit \u00EAtre un entier",PositiveIntegerArg:"L'argument de la commande %1 doit \u00EAtre un entier strictement positif",NotMathMLToken:"L'\u00E9l\u00E9ment %1 n'est pas un \u00E9l\u00E9ment MathML \u00E9l\u00E9mentaire",InvalidMathMLAttr:"Attribut MathML non valide: %1",UnknownAttrForElement:"Attribut %1 inconnu pour l'\u00E9l\u00E9ment %2",MaxMacroSub1:"Le nombre maximal de substitution de macro autoris\u00E9 par MathJax a \u00E9t\u00E9 d\u00E9pass\u00E9. Il y a t'il un appel de macro r\u00E9cursif?",MaxMacroSub2:"Le nombre maximal de substitution de macro autoris\u00E9 par MathJax a \u00E9t\u00E9 d\u00E9pass\u00E9. Il y a t'il un environnement LaTeX r\u00E9cursif?",MissingArgFor:"Argument manquant pour la commande %1",ExtraAlignTab:"Caract\u00E8re d'alignement '&' non attendue pour le texte de la commande \\cases",BracketMustBeDimension:"L'argument entre crochets de la commande %1 doit \u00EAtre une dimension",InvalidEnv:"Nom d'environnement '%1' non valide",UnknownEnv:"Environnement '%1' inconnu",ExtraClose:"Accolade fermante non attendue",ExtraCloseLooking:"Accolade fermante non attendue lors de la recherche de %1",MissingCloseBracket:"Impossible de trouver le crochet fermant pour l'argument de la commande %1",MissingOrUnrecognizedDelim:"D\u00E9limiteur manquant ou non reconnu pour la commande %1",MissingDimOrUnits:"Dimension ou unit\u00E9 manquante pour la commande %1",TokenNotFoundForCommand:"Impossible de trouver la commande %1 pour la commande %2",MathNotTerminated:"Expression math\u00E9matique non termin\u00E9e \u00E0 l'int\u00E9rieur de cette boite de texte",IllegalMacroParam:"Param\u00E8tre de r\u00E9f\u00E9rence de macro non autoris\u00E9",MaxBufferSize:"Taille maximale du tampon interne de MathJax d\u00E9pass\u00E9e. Il y a t'il un appel de macro r\u00E9cursif?",CommandNotAllowedInEnv:"La commande %1 n'est pas autoris\u00E9 \u00E0 l'int\u00E9rieur de l'environnement %2",MultipleCommand:"Usage multiple de la commande %1",MultipleLabel:"\u00C9tiquette '%1' d\u00E9j\u00E0 d\u00E9finie",CommandAtTheBeginingOfLine:"La commande %1 doit \u00EAtre plac\u00E9e en d\u00E9but de ligne",IllegalAlign:"Alignement non autoris\u00E9 pour la commande %1",BadMathStyleFor:"Style math\u00E9matique non valide pour la commande %1",ErroneousNestingEq:"Emboitement incorrect des structures d'\u00E9quation",MultlineRowsOneCol:"L'environnement multline doit avoir exactement une colonne",NoClosingDelim:"Impossible de trouver le d\u00E9limiteur fermant pour la commande %1",NoClosingChar:"Impossible de trouver le d\u00E9limiteur '%1' fermant",MultipleBBoxProperty:"La propri\u00E9t\u00E9 %1 de la commande %2 est sp\u00E9cifi\u00E9e deux fois",InvalidBBoxProperty:"La valeur '%1' ne semble pas \u00EAtre une couleur, une dimension de marge int\u00E9rieur ou un style.",ExtraEndMissingBegin:"Commande %1 non attendue ou commande \\begingroup manquante",GlobalNotFollowedBy:"Commande %1 non suivie d'une commande \\let, \\def ou \newcommand",NewextarrowArg1:"Le premier argument de la commande %1 doit \u00EAtre le nom d'une s\u00E9quence de contr\u00F4le",NewextarrowArg2:"Le second argument de la commande %1 doit \u00EAtre deux entiers s\u00E9par\u00E9s par une virgule",NewextarrowArg3:"Le troisi\u00E8me argument de la commande %1 doit \u00EAtre la valeur d'un caract\u00E8re unicode",UndefinedColorModel:"Le mod\u00E8le de couleur '%1' n'est pas d\u00E9fini",ModelArg1:"Les valeurs de couleurs pour le mod\u00E8le %1 n\u00E9cessitent 3 nombres",InvalidDecimalNumber:"Nombre d\u00E9cimal non valide",ModelArg2:"Les valeurs de couleurs pour le mod\u00E8le %1 doivent \u00EAtre comprises entre %2 et %3",InvalidNumber:"Nombre non valide",DoubleBackSlash:"\\ doit \u00EAtre suivi d'une s\u00E9quence de contr\u00F4le",SequentialParam:"Les param\u00E8tres de la s\u00E9quence de contr\u00F4le %1 doivent \u00EAtre \u00E9num\u00E9r\u00E9s de fa\u00E7on s\u00E9quentielle",MissingReplacementString:"Chaine de caract\u00E8re de remplacement manquante pour la d\u00E9finition %1",MismatchUseDef:"L'utilisation de la commande %1 ne correspond pas \u00E0 sa d\u00E9finition",RunawayArgument:"Argument non termin\u00E9 pour la commande %1?"}});MathJax.Ajax.loadComplete("[MathJax]/localization/fr/TeX.js"); - diff --git a/modules/MathJax/localization/fr/fr.js b/modules/MathJax/localization/fr/fr.js deleted file mode 100755 index 7528efa..0000000 --- a/modules/MathJax/localization/fr/fr.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * /MathJax/localization/fr/fr.js - * - * Copyright (c) 2009-2013 The MathJax Consortium - * - * Part of the MathJax library. - * See http://www.mathjax.org for details. - * - * Licensed under the Apache License, Version 2.0; - * you may not use this file except in compliance with the License. - * - * http://www.apache.org/licenses/LICENSE-2.0 - */ - -MathJax.Localization.addTranslation("fr",null,{menuTitle:"Fran\u00E7ais",version:"2.2",isLoaded:true,domains:{_:{version:"2.2",isLoaded:true,strings:{CookieConfig:"MathJax a trouv\u00E9 un cookie de configuration utilisateur qui inclut du code ex\u00E9cutable. Souhaitez vous l'ex\u00E9cuter?\n\n(Choisissez Annuler sauf si vous avez cr\u00E9\u00E9 ce cookie vous-m\u00EAme)",MathProcessingError:"Erreur de traitement de la formule math\u00E9matique",MathError:"Erreur dans la formule math\u00E9matique",LoadFile:"T\u00E9l\u00E9chargement de %1",Loading:"T\u00E9l\u00E9chargement",LoadFailed:"\u00C9chec du t\u00E9l\u00E9chargement de %1",ProcessMath:"Traitement des formules: %1%%",Processing:"Traitement",TypesetMath:"Composition des formules: %1%%",Typesetting:"Composition",MathJaxNotSupported:"Votre navigateur ne supporte pas MathJax"}},MathMenu:{},FontWarnings:{},HelpDialog:{},TeX:{},MathML:{},"HTML-CSS":{}},plural:function(a){if(0<=a&&a<2){return 1}return 2},number:function(a){return String(a).replace(".",",")}});MathJax.Ajax.loadComplete("[MathJax]/localization/fr/fr.js"); - diff --git a/modules/MathJax/unpacked/MathJax.js b/modules/MathJax/unpacked/MathJax.js new file mode 100644 index 0000000..e0095fc --- /dev/null +++ b/modules/MathJax/unpacked/MathJax.js @@ -0,0 +1,3095 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax.js + * + * The main support code for the MathJax Hub, including the + * Ajax, Callback, Messaging, and Object-Oriented Programming + * libraries, as well as the base Jax classes, and startup + * processing code. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +if (window.MathJax) {window.MathJax = {AuthorConfig: window.MathJax}} else {window.MathJax = {}} + +// MathJax.isPacked = true; // This line is uncommented by the packer. + +if (document.getElementById && document.childNodes && document.createElement) { + +if (!MathJax.Hub) { // skip if already loaded + +MathJax.version = "2.3"; +MathJax.fileversion = "2.3"; + +/**********************************************************/ + +(function (BASENAME) { + var BASE = window[BASENAME]; + if (!BASE) {BASE = window[BASENAME] = {}} + + var PROTO = []; // a static object used to indicate when a prototype is being created + var OBJECT = function (def) { + var obj = def.constructor; if (!obj) {obj = new Function("")} + for (var id in def) {if (id !== 'constructor' && def.hasOwnProperty(id)) {obj[id] = def[id]}} + return obj; + }; + var CONSTRUCTOR = function () { + return new Function ("return arguments.callee.Init.call(this,arguments)"); + }; + // + // Test for Safari 2.x bug (can't replace prototype for result of new Function()). + // (We don't use this version for everyone since it is a closure and we don't need that). + // + var BUGTEST = CONSTRUCTOR(); BUGTEST.prototype = {bug_test: 1}; + if (!BUGTEST.prototype.bug_test) { + CONSTRUCTOR = function () { + return function () {return arguments.callee.Init.call(this,arguments)}; + }; + }; + + BASE.Object = OBJECT({ + constructor: CONSTRUCTOR(), + + Subclass: function (def,classdef) { + var obj = CONSTRUCTOR(); + obj.SUPER = this; obj.Init = this.Init; + obj.Subclass = this.Subclass; obj.Augment = this.Augment; + obj.protoFunction = this.protoFunction; + obj.can = this.can; obj.has = this.has; obj.isa = this.isa; + obj.prototype = new this(PROTO); + obj.prototype.constructor = obj; // the real constructor + obj.Augment(def,classdef); + return obj; + }, + + Init: function (args) { + var obj = this; + if (args.length === 1 && args[0] === PROTO) {return obj} + if (!(obj instanceof args.callee)) {obj = new args.callee(PROTO)} + return obj.Init.apply(obj,args) || obj; + }, + + Augment: function (def,classdef) { + var id; + if (def != null) { + for (id in def) {if (def.hasOwnProperty(id)) {this.protoFunction(id,def[id])}} + // MSIE doesn't list toString even if it is not native so handle it separately + if (def.toString !== this.prototype.toString && def.toString !== {}.toString) + {this.protoFunction('toString',def.toString)} + } + if (classdef != null) { + for (id in classdef) {if (classdef.hasOwnProperty(id)) {this[id] = classdef[id]}} + } + return this; + }, + + protoFunction: function (id,def) { + this.prototype[id] = def; + if (typeof def === "function") {def.SUPER = this.SUPER.prototype} + }, + + prototype: { + Init: function () {}, + SUPER: function (fn) {return fn.callee.SUPER}, + can: function (method) {return typeof(this[method]) === "function"}, + has: function (property) {return typeof(this[property]) !== "undefined"}, + isa: function (obj) {return (obj instanceof Object) && (this instanceof obj)} + }, + + can: function (method) {return this.prototype.can.call(this,method)}, + has: function (property) {return this.prototype.has.call(this,property)}, + isa: function (obj) { + var constructor = this; + while (constructor) { + if (constructor === obj) {return true} else {constructor = constructor.SUPER} + } + return false; + }, + + + SimpleSUPER: OBJECT({ + constructor: function (def) {return this.SimpleSUPER.define(def)}, + + define: function (src) { + var dst = {}; + if (src != null) { + for (var id in src) {if (src.hasOwnProperty(id)) {dst[id] = this.wrap(id,src[id])}} + // MSIE doesn't list toString even if it is not native so handle it separately + if (src.toString !== this.prototype.toString && src.toString !== {}.toString) + {dst.toString = this.wrap('toString',src.toString)} + } + return dst; + }, + + wrap: function (id,f) { + if (typeof(f) === 'function' && f.toString().match(/\.\s*SUPER\s*\(/)) { + var fn = new Function(this.wrapper); + fn.label = id; fn.original = f; f = fn; + fn.toString = this.stringify; + } + return f; + }, + + wrapper: function () { + var fn = arguments.callee; + this.SUPER = fn.SUPER[fn.label]; + try {var result = fn.original.apply(this,arguments)} + catch (err) {delete this.SUPER; throw err} + delete this.SUPER; + return result; + }.toString().replace(/^\s*function\s*\(\)\s*\{\s*/i,"").replace(/\s*\}\s*$/i,""), + + toString: function () { + return this.original.toString.apply(this.original,arguments); + } + }) + }); + +})("MathJax"); + +/**********************************************************/ + +/* + * Create a callback function from various forms of data: + * + * MathJax.Callback(fn) -- callback to a function + * + * MathJax.Callback([fn]) -- callback to function + * MathJax.Callback([fn,data...]) + * -- callback to function with given data as arguments + * MathJax.Callback([object,fn]) + * -- call fn with object as "this" + * MathJax.Callback([object,fn,data...]) + * -- call fn with object as "this" and data as arguments + * MathJax.Callback(["method",object]) + * -- call method of object wth object as "this" + * MathJax.Callback(["method",object,data...]) + * -- as above, but with data as arguments to method + * + * MathJax.Callback({hook: fn, data: [...], object: this}) + * -- give function, data, and object to act as "this" explicitly + * + * MathJax.Callback("code") -- callback that compiles and executes a string + * + * MathJax.Callback([...],i) + * -- use slice of array starting at i and interpret + * result as above. (Used for passing "arguments" array + * and trimming initial arguments, if any.) + */ + +/* + * MathJax.Callback.After([...],cb1,cb2,...) + * -- make a callback that isn't called until all the other + * ones are called first. I.e., wait for a union of + * callbacks to occur before making the given callback. + */ + +/* + * MathJax.Callback.Queue([callback,...]) + * -- make a synchronized queue of commands that process + * sequentially, waiting for those that return uncalled + * callbacks. + */ + +/* + * MathJax.Callback.Signal(name) + * -- finds or creates a names signal, to which listeners + * can be attached and are signaled by messages posted + * to the signal. Responses can be asynchronous. + */ + +(function (BASENAME) { + var BASE = window[BASENAME]; + if (!BASE) {BASE = window[BASENAME] = {}} + // + // Create a callback from an associative array + // + var CALLBACK = function (data) { + var cb = new Function("return arguments.callee.execute.apply(arguments.callee,arguments)"); + for (var id in CALLBACK.prototype) { + if (CALLBACK.prototype.hasOwnProperty(id)) { + if (typeof(data[id]) !== 'undefined') {cb[id] = data[id]} + else {cb[id] = CALLBACK.prototype[id]} + } + } + cb.toString = CALLBACK.prototype.toString; + return cb; + }; + CALLBACK.prototype = { + isCallback: true, + hook: function () {}, + data: [], + object: window, + execute: function () { + if (!this.called || this.autoReset) { + this.called = !this.autoReset; + return this.hook.apply(this.object,this.data.concat([].slice.call(arguments,0))); + } + }, + reset: function () {delete this.called}, + toString: function () {return this.hook.toString.apply(this.hook,arguments)} + }; + var ISCALLBACK = function (f) { + return (typeof(f) === "function" && f.isCallback); + } + // + // Evaluate a string in global context + // + var EVAL = function (code) {return eval.call(window,code)} + EVAL("var __TeSt_VaR__ = 1"); // check if it works in global context + if (window.__TeSt_VaR__) { + try { delete window.__TeSt_VaR__; } // NOTE IE9 throws when in IE7 mode + catch (error) { window.__TeSt_VaR__ = null; } + } else { + if (window.execScript) { + // IE + EVAL = function (code) { + BASE.__code = code; + code = "try {"+BASENAME+".__result = eval("+BASENAME+".__code)} catch(err) {"+BASENAME+".__result = err}"; + window.execScript(code); + var result = BASE.__result; delete BASE.__result; delete BASE.__code; + if (result instanceof Error) {throw result} + return result; + } + } else { + // Safari2 + EVAL = function (code) { + BASE.__code = code; + code = "try {"+BASENAME+".__result = eval("+BASENAME+".__code)} catch(err) {"+BASENAME+".__result = err}"; + var head = (document.getElementsByTagName("head"))[0]; if (!head) {head = document.body} + var script = document.createElement("script"); + script.appendChild(document.createTextNode(code)); + head.appendChild(script); head.removeChild(script); + var result = BASE.__result; delete BASE.__result; delete BASE.__code; + if (result instanceof Error) {throw result} + return result; + } + } + } + // + // Create a callback from various types of data + // + var USING = function (args,i) { + if (arguments.length > 1) { + if (arguments.length === 2 && !(typeof arguments[0] === 'function') && + arguments[0] instanceof Object && typeof arguments[1] === 'number') + {args = [].slice.call(args,i)} + else {args = [].slice.call(arguments,0)} + } + if (args instanceof Array && args.length === 1) {args = args[0]} + if (typeof args === 'function') { + if (args.execute === CALLBACK.prototype.execute) {return args} + return CALLBACK({hook: args}); + } else if (args instanceof Array) { + if (typeof(args[0]) === 'string' && args[1] instanceof Object && + typeof args[1][args[0]] === 'function') { + return CALLBACK({hook: args[1][args[0]], object: args[1], data: args.slice(2)}); + } else if (typeof args[0] === 'function') { + return CALLBACK({hook: args[0], data: args.slice(1)}); + } else if (typeof args[1] === 'function') { + return CALLBACK({hook: args[1], object: args[0], data: args.slice(2)}); + } + } else if (typeof(args) === 'string') { + return CALLBACK({hook: EVAL, data: [args]}); + } else if (args instanceof Object) { + return CALLBACK(args); + } else if (typeof(args) === 'undefined') { + return CALLBACK({}); + } + throw Error("Can't make callback from given data"); + }; + + // + // Wait for a given time to elapse and then perform the callback + // + var DELAY = function (time,callback) { + callback = USING(callback); + callback.timeout = setTimeout(callback,time); + return callback; + }; + + // + // Callback used by AFTER, QUEUE, and SIGNAL to check if calls have completed + // + var WAITFOR = function (callback,signal) { + callback = USING(callback); + if (!callback.called) {WAITSIGNAL(callback,signal); signal.pending++} + }; + var WAITEXECUTE = function () { + var signals = this.signal; delete this.signal; + this.execute = this.oldExecute; delete this.oldExecute; + var result = this.execute.apply(this,arguments); + if (ISCALLBACK(result) && !result.called) {WAITSIGNAL(result,signals)} else { + for (var i = 0, m = signals.length; i < m; i++) { + signals[i].pending--; + if (signals[i].pending <= 0) {signals[i].call()} + } + } + }; + var WAITSIGNAL = function (callback,signals) { + if (!(signals instanceof Array)) {signals = [signals]} + if (!callback.signal) { + callback.oldExecute = callback.execute; + callback.execute = WAITEXECUTE; + callback.signal = signals; + } else if (signals.length === 1) {callback.signal.push(signals[0])} + else {callback.signal = callback.signal.concat(signals)} + }; + + // + // Create a callback that is called when a collection of other callbacks have + // all been executed. If the callback gets called immediately (i.e., the + // others are all already called), check if it returns another callback + // and return that instead. + // + var AFTER = function (callback) { + callback = USING(callback); + callback.pending = 0; + for (var i = 1, m = arguments.length; i < m; i++) + {if (arguments[i]) {WAITFOR(arguments[i],callback)}} + if (callback.pending === 0) { + var result = callback(); + if (ISCALLBACK(result)) {callback = result} + } + return callback; + }; + + // + // An array of prioritized hooks that are executed sequentially + // with a given set of data. + // + var HOOKS = MathJax.Object.Subclass({ + // + // Initialize the array and the auto-reset status + // + Init: function (reset) { + this.hooks = []; + this.reset = reset; + }, + // + // Add a callback to the list, in priority order (default priority is 10) + // + Add: function (hook,priority) { + if (priority == null) {priority = 10} + if (!ISCALLBACK(hook)) {hook = USING(hook)} + hook.priority = priority; + var i = this.hooks.length; + while (i > 0 && priority < this.hooks[i-1].priority) {i--} + this.hooks.splice(i,0,hook); + return hook; + }, + Remove: function (hook) { + for (var i = 0, m = this.hooks.length; i < m; i++) { + if (this.hooks[i] === hook) {this.hooks.splice(i,1); return} + } + }, + // + // Execute the list of callbacks, resetting them if requested. + // If any return callbacks, return a callback that will be + // executed when they all have completed. + // + Execute: function () { + var callbacks = [{}]; + for (var i = 0, m = this.hooks.length; i < m; i++) { + if (this.reset) {this.hooks[i].reset()} + var result = this.hooks[i].apply(window,arguments); + if (ISCALLBACK(result) && !result.called) {callbacks.push(result)} + } + if (callbacks.length === 1) {return null} + if (callbacks.length === 2) {return callbacks[1]} + return AFTER.apply({},callbacks); + } + }); + + // + // Run an array of callbacks passing them the given data. + // (Legacy function, since this has been replaced by the HOOKS object). + // + var EXECUTEHOOKS = function (hooks,data,reset) { + if (!hooks) {return null} + if (!(hooks instanceof Array)) {hooks = [hooks]} + if (!(data instanceof Array)) {data = (data == null ? [] : [data])} + var handler = HOOKS(reset); + for (var i = 0, m = hooks.length; i < m; i++) {handler.Add(hooks[i])} + return handler.Execute.apply(handler,data); + }; + + // + // Command queue that performs commands in order, waiting when + // necessary for commands to complete asynchronousely + // + var QUEUE = BASE.Object.Subclass({ + // + // Create the queue and push any commands that are specified + // + Init: function () { + this.pending = 0; this.running = 0; + this.queue = []; + this.Push.apply(this,arguments); + }, + // + // Add commands to the queue and run them. Adding a callback object + // (rather than a callback specification) queues a wait for that callback. + // Return the final callback for synchronization purposes. + // + Push: function () { + var callback; + for (var i = 0, m = arguments.length; i < m; i++) { + callback = USING(arguments[i]); + if (callback === arguments[i] && !callback.called) + {callback = USING(["wait",this,callback])} + this.queue.push(callback); + } + if (!this.running && !this.pending) {this.Process()} + return callback; + }, + // + // Process the command queue if we aren't waiting on another command + // + Process: function (queue) { + while (!this.running && !this.pending && this.queue.length) { + var callback = this.queue[0]; + queue = this.queue.slice(1); this.queue = []; + this.Suspend(); var result = callback(); this.Resume(); + if (queue.length) {this.queue = queue.concat(this.queue)} + if (ISCALLBACK(result) && !result.called) {WAITFOR(result,this)} + } + }, + // + // Suspend/Resume command processing on this queue + // + Suspend: function () {this.running++}, + Resume: function () {if (this.running) {this.running--}}, + // + // Used by WAITFOR to restart the queue when an action completes + // + call: function () {this.Process.apply(this,arguments)}, + wait: function (callback) {return callback} + }); + + // + // Create a named signal that listeners can attach to, to be signaled by + // postings made to the signal. Posts are queued if they occur while one + // is already in process. + // + var SIGNAL = QUEUE.Subclass({ + Init: function (name) { + QUEUE.prototype.Init.call(this); + this.name = name; + this.posted = []; // the messages posted so far + this.listeners = HOOKS(true); // those with interest in this signal + }, + // + // Post a message to the signal listeners, with callback for when complete + // + Post: function (message,callback,forget) { + callback = USING(callback); + if (this.posting || this.pending) { + this.Push(["Post",this,message,callback,forget]); + } else { + this.callback = callback; callback.reset(); + if (!forget) {this.posted.push(message)} + this.Suspend(); this.posting = true; + var result = this.listeners.Execute(message); + if (ISCALLBACK(result) && !result.called) {WAITFOR(result,this)} + this.Resume(); delete this.posting; + if (!this.pending) {this.call()} + } + return callback; + }, + // + // Clear the post history (so new listeners won't get old messages) + // + Clear: function (callback) { + callback = USING(callback); + if (this.posting || this.pending) { + callback = this.Push(["Clear",this,callback]); + } else { + this.posted = []; + callback(); + } + return callback; + }, + // + // Call the callback (all replies are in) and process the command queue + // + call: function () {this.callback(this); this.Process()}, + + // + // A listener calls this to register intrest in the signal (so it will be called + // when posts occur). If ignorePast is true, it will not be sent the post history. + // + Interest: function (callback,ignorePast,priority) { + callback = USING(callback); + this.listeners.Add(callback,priority); + if (!ignorePast) { + for (var i = 0, m = this.posted.length; i < m; i++) { + callback.reset(); + var result = callback(this.posted[i]); + if (ISCALLBACK(result) && i === this.posted.length-1) {WAITFOR(result,this)} + } + } + return callback; + }, + // + // A listener calls this to remove itself from a signal + // + NoInterest: function (callback) { + this.listeners.Remove(callback); + }, + + // + // Hook a callback to a particular message on this signal + // + MessageHook: function (msg,callback,priority) { + callback = USING(callback); + if (!this.hooks) {this.hooks = {}; this.Interest(["ExecuteHooks",this])} + if (!this.hooks[msg]) {this.hooks[msg] = HOOKS(true)} + this.hooks[msg].Add(callback,priority); + for (var i = 0, m = this.posted.length; i < m; i++) + {if (this.posted[i] == msg) {callback.reset(); callback(this.posted[i])}} + return callback; + }, + // + // Execute the message hooks for the given message + // + ExecuteHooks: function (msg,more) { + var type = ((msg instanceof Array) ? msg[0] : msg); + if (!this.hooks[type]) {return null} + return this.hooks[type].Execute(msg); + } + + },{ + signals: {}, // the named signals + find: function (name) { + if (!SIGNAL.signals[name]) {SIGNAL.signals[name] = new SIGNAL(name)} + return SIGNAL.signals[name]; + } + }); + + // + // The main entry-points + // + BASE.Callback = BASE.CallBack = USING; + BASE.Callback.Delay = DELAY; + BASE.Callback.After = AFTER; + BASE.Callback.Queue = QUEUE; + BASE.Callback.Signal = SIGNAL.find; + BASE.Callback.Hooks = HOOKS; + BASE.Callback.ExecuteHooks = EXECUTEHOOKS; +})("MathJax"); + + +/**********************************************************/ + +(function (BASENAME) { + var BASE = window[BASENAME]; + if (!BASE) {BASE = window[BASENAME] = {}} + + var isSafari2 = (navigator.vendor === "Apple Computer, Inc." && + typeof navigator.vendorSub === "undefined"); + var sheets = 0; // used by Safari2 + + // + // Update sheets count and look up the head object + // + var HEAD = function (head) { + if (document.styleSheets && document.styleSheets.length > sheets) + {sheets = document.styleSheets.length} + if (!head) { + head = (document.getElementsByTagName("head"))[0]; + if (!head) {head = document.body} + } + return head; + }; + + // + // Remove scripts that are completed so they don't clutter up the HEAD. + // This runs via setTimeout since IE7 can't remove the script while it is running. + // + var SCRIPTS = []; // stores scripts to be removed after a delay + var REMOVESCRIPTS = function () { + for (var i = 0, m = SCRIPTS.length; i < m; i++) {BASE.Ajax.head.removeChild(SCRIPTS[i])} + SCRIPTS = []; + }; + + BASE.Ajax = { + loaded: {}, // files already loaded + loading: {}, // files currently in process of loading + loadHooks: {}, // hooks to call when files are loaded + timeout: 15*1000, // timeout for loading of files (15 seconds) + styleDelay: 1, // delay to use before styles are available + config: {root: ""}, // URL of root directory to load from + + STATUS: { + OK: 1, // file is loading or did load OK + ERROR: -1 // file timed out during load + }, + + rootPattern: new RegExp("^\\["+BASENAME+"\\]"), + + // + // Return a complete URL to a file (replacing the root pattern) + // + fileURL: function (file) {return file.replace(this.rootPattern,this.config.root)}, + + // + // Load a file if it hasn't been already. + // Make sure the file URL is "safe"? + // + Require: function (file,callback) { + callback = BASE.Callback(callback); var type; + if (file instanceof Object) { + for (var i in file) + {if (file.hasOwnProperty(i)) {type = i.toUpperCase(); file = file[i]}} + } else {type = file.split(/\./).pop().toUpperCase()} + file = this.fileURL(file); + // FIXME: check that URL is OK + if (this.loaded[file]) { + callback(this.loaded[file]); + } else { + var FILE = {}; FILE[type] = file; + this.Load(FILE,callback); + } + return callback; + }, + + // + // Load a file regardless of where it is and whether it has + // already been loaded. + // + Load: function (file,callback) { + callback = BASE.Callback(callback); var type; + if (file instanceof Object) { + for (var i in file) + {if (file.hasOwnProperty(i)) {type = i.toUpperCase(); file = file[i]}} + } else {type = file.split(/\./).pop().toUpperCase()} + file = this.fileURL(file); + if (this.loading[file]) { + this.addHook(file,callback); + } else { + this.head = HEAD(this.head); + if (this.loader[type]) {this.loader[type].call(this,file,callback)} + else {throw Error("Can't load files of type "+type)} + } + return callback; + }, + + // + // Register a load hook for a particular file (it will be called when + // loadComplete() is called for that file) + // + LoadHook: function (file,callback,priority) { + callback = BASE.Callback(callback); + if (file instanceof Object) + {for (var i in file) {if (file.hasOwnProperty(i)) {file = file[i]}}} + file = this.fileURL(file); + if (this.loaded[file]) {callback(this.loaded[file])} + else {this.addHook(file,callback,priority)} + return callback; + }, + addHook: function (file,callback,priority) { + if (!this.loadHooks[file]) {this.loadHooks[file] = MathJax.Callback.Hooks()} + this.loadHooks[file].Add(callback,priority); + }, + + // + // Used when files are combined in a preloading configuration file + // + Preloading: function () { + for (var i = 0, m = arguments.length; i < m; i++) { + var file = this.fileURL(arguments[i]); + if (!this.loading[file]) {this.loading[file] = {preloaded: true}} + } + }, + + // + // Code used to load the various types of files + // (JS for JavaScript, CSS for style sheets) + // + loader: { + // + // Create a SCRIPT tag to load the file + // + JS: function (file,callback) { + var script = document.createElement("script"); + var timeout = BASE.Callback(["loadTimeout",this,file]); + this.loading[file] = { + callback: callback, + timeout: setTimeout(timeout,this.timeout), + status: this.STATUS.OK, + script: script + }; + // Add this to the structure above after it is created to prevent recursion + // when loading the initial localization file (before loading messsage is available) + this.loading[file].message = BASE.Message.File(file); + script.onerror = timeout; // doesn't work in IE and no apparent substitute + script.type = "text/javascript"; + script.src = file; + this.head.appendChild(script); + }, + // + // Create a LINK tag to load the style sheet + // + CSS: function (file,callback) { + var link = document.createElement("link"); + link.rel = "stylesheet"; link.type = "text/css"; link.href = file; + this.loading[file] = { + callback: callback, + message: BASE.Message.File(file), + status: this.STATUS.OK + }; + this.head.appendChild(link); + this.timer.create.call(this,[this.timer.file,file],link); + } + }, + + // + // Timing code for checking when style sheets are available. + // + timer: { + // + // Create the timing callback and start the timing loop. + // We use a delay because some browsers need it to allow the styles + // to be processed. + // + create: function (callback,node) { + callback = BASE.Callback(callback); + if (node.nodeName === "STYLE" && node.styleSheet && + typeof(node.styleSheet.cssText) !== 'undefined') { + callback(this.STATUS.OK); // MSIE processes style immediately, but doesn't set its styleSheet! + } else if (window.chrome && node.nodeName === "LINK") { + callback(this.STATUS.OK); // Chrome doesn't give access to cssRules for stylesheet in + // a link node, so we can't detect when it is loaded. + } else if (isSafari2) { + this.timer.start(this,[this.timer.checkSafari2,sheets++,callback],this.styleDelay); + } else { + this.timer.start(this,[this.timer.checkLength,node,callback],this.styleDelay); + } + return callback; + }, + // + // Start the timer for the given callback checker + // + start: function (AJAX,check,delay,timeout) { + check = BASE.Callback(check); + check.execute = this.execute; check.time = this.time; + check.STATUS = AJAX.STATUS; check.timeout = timeout || AJAX.timeout; + check.delay = check.total = delay || 0; + if (delay) {setTimeout(check,delay)} else {check()} + }, + // + // Increment the time total, increase the delay + // and test if we are past the timeout time. + // + time: function (callback) { + this.total += this.delay; + this.delay = Math.floor(this.delay * 1.05 + 5); + if (this.total >= this.timeout) {callback(this.STATUS.ERROR); return 1} + return 0; + }, + // + // For JS file loads, call the proper routine according to status + // + file: function (file,status) { + if (status < 0) {BASE.Ajax.loadTimeout(file)} else {BASE.Ajax.loadComplete(file)} + }, + // + // Call the hook with the required data + // + execute: function () {this.hook.call(this.object,this,this.data[0],this.data[1])}, + // + // Safari2 doesn't set the link's stylesheet, so we need to look in the + // document.styleSheets array for the new sheet when it is created + // + checkSafari2: function (check,length,callback) { + if (check.time(callback)) return; + if (document.styleSheets.length > length && + document.styleSheets[length].cssRules && + document.styleSheets[length].cssRules.length) + {callback(check.STATUS.OK)} else {setTimeout(check,check.delay)} + }, + // + // Look for the stylesheets rules and check when they are defined + // and no longer of length zero. (This assumes there actually ARE + // some rules in the stylesheet.) + // + checkLength: function (check,node,callback) { + if (check.time(callback)) return; + var isStyle = 0; var sheet = (node.sheet || node.styleSheet); + try {if ((sheet.cssRules||sheet.rules||[]).length > 0) {isStyle = 1}} catch(err) { + if (err.message.match(/protected variable|restricted URI/)) {isStyle = 1} + else if (err.message.match(/Security error/)) { + // Firefox3 gives "Security error" for missing files, so + // can't distinguish that from OK files on remote servers. + // or OK files in different directory from local files. + isStyle = 1; // just say it is OK (can't really tell) + } + } + if (isStyle) { + // Opera 9.6 requires this setTimeout + setTimeout(BASE.Callback([callback,check.STATUS.OK]),0); + } else { + setTimeout(check,check.delay); + } + } + }, + + // + // JavaScript code must call this when they are completely initialized + // (this allows them to perform asynchronous actions before indicating + // that they are complete). + // + loadComplete: function (file) { + file = this.fileURL(file); + var loading = this.loading[file]; + if (loading && !loading.preloaded) { + BASE.Message.Clear(loading.message); + clearTimeout(loading.timeout); + if (loading.script) { + if (SCRIPTS.length === 0) {setTimeout(REMOVESCRIPTS,0)} + SCRIPTS.push(loading.script); + } + this.loaded[file] = loading.status; delete this.loading[file]; + this.addHook(file,loading.callback); + } else { + if (loading) {delete this.loading[file]} + this.loaded[file] = this.STATUS.OK; + loading = {status: this.STATUS.OK} + } + if (!this.loadHooks[file]) {return null} + return this.loadHooks[file].Execute(loading.status); + }, + + // + // If a file fails to load within the timeout period (or the onerror handler + // is called), this routine runs to signal the error condition. + // + loadTimeout: function (file) { + if (this.loading[file].timeout) {clearTimeout(this.loading[file].timeout)} + this.loading[file].status = this.STATUS.ERROR; + this.loadError(file); + this.loadComplete(file); + }, + + // + // The default error hook for file load failures + // + loadError: function (file) { + BASE.Message.Set(["LoadFailed","File failed to load: %1",file],null,2000); + BASE.Hub.signal.Post(["file load error",file]); + }, + + // + // Defines a style sheet from a hash of style declarations (key:value pairs + // where the key is the style selector and the value is a hash of CSS attributes + // and values). + // + Styles: function (styles,callback) { + var styleString = this.StyleString(styles); + if (styleString === "") { + callback = BASE.Callback(callback); + callback(); + } else { + var style = document.createElement("style"); style.type = "text/css"; + this.head = HEAD(this.head); + this.head.appendChild(style); + if (style.styleSheet && typeof(style.styleSheet.cssText) !== 'undefined') { + style.styleSheet.cssText = styleString; + } else { + style.appendChild(document.createTextNode(styleString)); + } + callback = this.timer.create.call(this,callback,style); + } + return callback; + }, + + // + // Create a stylesheet string from a style declaration object + // + StyleString: function (styles) { + if (typeof(styles) === 'string') {return styles} + var string = "", id, style; + for (id in styles) {if (styles.hasOwnProperty(id)) { + if (typeof styles[id] === 'string') { + string += id + " {"+styles[id]+"}\n"; + } else if (styles[id] instanceof Array) { + for (var i = 0; i < styles[id].length; i++) { + style = {}; style[id] = styles[id][i]; + string += this.StyleString(style); + } + } else if (id.substr(0,6) === '@media') { + string += id + " {"+this.StyleString(styles[id])+"}\n"; + } else if (styles[id] != null) { + style = []; + for (var name in styles[id]) {if (styles[id].hasOwnProperty(name)) { + if (styles[id][name] != null) + {style[style.length] = name + ': ' + styles[id][name]} + }} + string += id +" {"+style.join('; ')+"}\n"; + } + }} + return string; + } + }; + +})("MathJax"); + +/**********************************************************/ + +MathJax.HTML = { + // + // Create an HTML element with given attributes and content. + // The def parameter is an (optional) object containing key:value pairs + // of the attributes and their values, and contents is an (optional) + // array of strings to be inserted as text, or arrays of the form + // [type,def,contents] that describes an HTML element to be inserted + // into the current element. Thus the contents can describe a complete + // HTML snippet of arbitrary complexity. E.g.: + // + // MathJax.HTML.Element("span",{id:"mySpan",style{"font-style":"italic"}},[ + // "(See the ",["a",{href:"http://www.mathjax.org"},["MathJax home page"]], + // " for more details.)"]); + // + Element: function (type,def,contents) { + var obj = document.createElement(type); + if (def) { + if (def.style) { + var style = def.style; def.style = {}; + for (var id in style) {if (style.hasOwnProperty(id)) + {def.style[id.replace(/-([a-z])/g,this.ucMatch)] = style[id]}} + } + MathJax.Hub.Insert(obj,def); + } + if (contents) { + if (!(contents instanceof Array)) {contents = [contents]} + for (var i = 0; i < contents.length; i++) { + if (contents[i] instanceof Array) { + obj.appendChild(this.Element(contents[i][0],contents[i][1],contents[i][2])); + } else if (type === "script") { // IE throws an error if script is added as a text node + this.setScript(obj, contents[i]); + } else { + obj.appendChild(document.createTextNode(contents[i])); + } + } + } + return obj; + }, + ucMatch: function (match,c) {return c.toUpperCase()}, + addElement: function (span,type,def,contents) {return span.appendChild(this.Element(type,def,contents))}, + TextNode: function (text) {return document.createTextNode(text)}, + addText: function (span,text) {return span.appendChild(this.TextNode(text))}, + + // + // Set and get the text of a script + // + setScript: function (script,text) { + if (this.setScriptBug) {script.text = text} else { + while (script.firstChild) {script.removeChild(script.firstChild)} + this.addText(script,text); + } + }, + getScript: function (script) { + var text = (script.text === "" ? script.innerHTML : script.text); + return text.replace(/^\s+/,"").replace(/\s+$/,""); + }, + + // + // Manage cookies + // + Cookie: { + prefix: "mjx", + expires: 365, + + // + // Save an object as a named cookie + // + Set: function (name,def) { + var keys = []; + if (def) { + for (var id in def) {if (def.hasOwnProperty(id)) { + keys.push(id+":"+def[id].toString().replace(/&/g,"&&")); + }} + } + var cookie = this.prefix+"."+name+"="+escape(keys.join('&;')); + if (this.expires) { + var time = new Date(); time.setDate(time.getDate() + this.expires); + cookie += '; expires='+time.toGMTString(); + } + try {document.cookie = cookie+"; path=/"} catch (err) {} // ignore errors saving cookies + }, + + // + // Get the contents of a named cookie and incorporate + // it into the given object (or return a fresh one) + // + Get: function (name,obj) { + if (!obj) {obj = {}} + var pattern = new RegExp("(?:^|;\\s*)"+this.prefix+"\\."+name+"=([^;]*)(?:;|$)"); + var match = pattern.exec(document.cookie); + if (match && match[1] !== "") { + var keys = unescape(match[1]).split('&;'); + for (var i = 0, m = keys.length; i < m; i++) { + match = keys[i].match(/([^:]+):(.*)/); + var value = match[2].replace(/&&/g,'&'); + if (value === "true") {value = true} else if (value === "false") {value = false} + else if (value.match(/^-?(\d+(\.\d+)?|\.\d+)$/)) {value = parseFloat(value)} + obj[match[1]] = value; + } + } + return obj; + } + } + +}; + + +/**********************************************************/ + +MathJax.Localization = { + + locale: "en", + directory: "[MathJax]/localization", + strings: { + // Currently, this list is not modified by the MathJax-i18n script. You can + // run the following command in MathJax/unpacked/localization to update it: + // + // find -name *.js | xargs grep menuTitle\: | grep -v qqq | sed "s/^\.\/\(.*\)\/.*\.js\: / \"\1\"\: \{/" | sed "s/,$/\},/" | sed "s/\"English\"/\"English\", isLoaded: true/" > tmp ; sort tmp > tmp2 ; sed "$ s/,$//" tmp2 ; rm tmp* + // + // This only takes languages with localization data so you must also add + // the languages that use a remap but are not translated at all. + // + "br": {menuTitle: "brezhoneg"}, + "cdo": {menuTitle: "M\u00ECng-d\u0115\u0324ng-ng\u1E73\u0304"}, + "cs": {menuTitle: "\u010Desky"}, + "da": {menuTitle: "dansk"}, + "de": {menuTitle: "Deutsch"}, + "en": {menuTitle: "English", isLoaded: true}, + "eo": {menuTitle: "Esperanto"}, + "es": {menuTitle: "espa\u00F1ol"}, + "fa": {menuTitle: "\u0641\u0627\u0631\u0633\u06CC"}, + "fi": {menuTitle: "suomi"}, + "fr": {menuTitle: "fran\u00E7ais"}, + "gl": {menuTitle: "galego"}, + "he": {menuTitle: "\u05E2\u05D1\u05E8\u05D9\u05EA"}, + "ia": {menuTitle: "interlingua"}, + "it": {menuTitle: "italiano"}, + "ja": {menuTitle: "\u65E5\u672C\u8A9E"}, + "ko": {menuTitle: "\uD55C\uAD6D\uC5B4"}, + "lb": {menuTitle: "L\u00EBtzebuergesch"}, + "mk": {menuTitle: "\u043C\u0430\u043A\u0435\u0434\u043E\u043D\u0441\u043A\u0438"}, + "nl": {menuTitle: "Nederlands"}, + "oc": {menuTitle: "occitan"}, + "pl": {menuTitle: "polski"}, + "pt-br": {menuTitle: "portugu\u00EAs do Brasil"}, + "pt": {menuTitle: "portugus\u00EA"}, + "ru": {menuTitle: "\u0440\u0443\u0441\u0441\u043A\u0438\u0439"}, + "sl": {menuTitle: "sloven\u0161\u010Dina"}, + "sv": {menuTitle: "svenska"}, + "tr": {menuTitle: "T\u00FCrk\u00E7e"}, + "uk": {menuTitle: "\u0443\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430"}, + "zh-hans": {menuTitle: "\u4E2D\u6587\uFF08\u7B80\u4F53\uFF09"} + }, + + // + // The pattern for substitution escapes: + // %n or %{n} or %{plural:%n|option1|option1|...} or %c + // + pattern: /%(\d+|\{\d+\}|\{[a-z]+:\%\d+(?:\|(?:%\{\d+\}|%.|[^\}])*)+\}|.)/g, + + SPLIT: ("axb".split(/(x)/).length === 3 ? + function (string,regex) {return string.split(regex)} : + // + // IE8 and below don't do split() correctly when the pattern includes + // parentheses (the split should include the matched exrepssions). + // So implement it by hand here. + // + function (string,regex) { + var result = [], match, last = 0; + regex.lastIndex = 0; + while (match = regex.exec(string)) { + result.push(string.substr(last,match.index)); + result.push.apply(result,match.slice(1)); + last = match.index + match[0].length; + } + result.push(string.substr(last)); + return result; + }), + + _: function (id,phrase) { + if (phrase instanceof Array) {return this.processSnippet(id,phrase)} + return this.processString(this.lookupPhrase(id,phrase),[].slice.call(arguments,2)); + }, + + processString: function (string,args,domain) { + // + // Process arguments for substitution + // If the argument is a snippet (and we are processing snippets) do so, + // Otherwise, if it is a number, convert it for the lacale + // + var i, m; + for (i = 0, m = args.length; i < m; i++) { + if (domain && args[i] instanceof Array) {args[i] = this.processSnippet(domain,args[i])} + } + // + // Split string at escapes and process them individually + // + var parts = this.SPLIT(string,this.pattern); + for (i = 1, m = parts.length; i < m; i += 2) { + var c = parts[i].charAt(0); // first char will be { or \d or a char to be kept literally + if (c >= "0" && c <= "9") { // %n + parts[i] = args[parts[i]-1]; + if (typeof parts[i] === "number") parts[i] = this.number(parts[i]); + } else if (c === "{") { // %{n} or %{plural:%n|...} + c = parts[i].substr(1); + if (c >= "0" && c <= "9") { // %{n} + parts[i] = args[parts[i].substr(1,parts[i].length-2)-1]; + if (typeof parts[i] === "number") parts[i] = this.number(parts[i]); + } else { // %{plural:%n|...} + var match = parts[i].match(/^\{([a-z]+):%(\d+)\|(.*)\}$/); + if (match) { + if (match[1] === "plural") { + var n = args[match[2]-1]; + if (typeof n === "undefined") { + parts[i] = "???"; // argument doesn't exist + } else { + n = this.plural(n) - 1; // index of the form to use + var plurals = match[3].replace(/(^|[^%])(%%)*%\|/g,"$1$2%\uEFEF").split(/\|/); // the parts (replacing %| with a special character) + if (n >= 0 && n < plurals.length) { + parts[i] = this.processString(plurals[n].replace(/\uEFEF/g,"|"),args,domain); + } else { + parts[i] = "???"; // no string for this index + } + } + } else {parts[i] = "%"+parts[i]} // not "plural", put back the % and leave unchanged + } + } + } + if (parts[i] == null) {parts[i] = "???"} + } + // + // If we are not forming a snippet, return the completed string + // + if (!domain) {return parts.join("")} + // + // We need to return an HTML snippet, so buld it from the + // broken up string with inserted parts (that could be snippets) + // + var snippet = [], part = ""; + for (i = 0; i < m; i++) { + part += parts[i]; i++; // add the string and move on to substitution result + if (i < m) { + if (parts[i] instanceof Array) { // substitution was a snippet + snippet.push(part); // add the accumulated string + snippet = snippet.concat(parts[i]); // concatenate the substution snippet + part = ""; // start accumulating a new string + } else { // substitution was a string + part += parts[i]; // add to accumulating string + } + } + } + if (part !== "") {snippet.push(part)} // add final string + return snippet; + }, + + processSnippet: function (domain,snippet) { + var result = []; // the new snippet + // + // Look through the original snippet for + // strings or snippets to translate + // + for (var i = 0, m = snippet.length; i < m; i++) { + if (snippet[i] instanceof Array) { + // + // This could be a sub-snippet: + // ["tag"] or ["tag",{properties}] or ["tag",{properties},snippet] + // Or it could be something to translate: + // [id,string,args] or [domain,snippet] + var data = snippet[i]; + if (typeof data[1] === "string") { // [id,string,args] + var id = data[0]; if (!(id instanceof Array)) {id = [domain,id]} + var phrase = this.lookupPhrase(id,data[1]); + result = result.concat(this.processMarkdown(phrase,data.slice(2),domain)); + } else if (data[1] instanceof Array) { // [domain,snippet] + result = result.concat(this.processSnippet.apply(this,data)); + } else if (data.length >= 3) { // ["tag",{properties},snippet] + result.push([data[0],data[1],this.processSnippet(domain,data[2])]); + } else { // ["tag"] or ["tag",{properties}] + result.push(snippet[i]); + } + } else { // a string + result.push(snippet[i]); + } + } + return result; + }, + + markdownPattern: /(%.)|(\*{1,3})((?:%.|.)+?)\2|(`+)((?:%.|.)+?)\4|\[((?:%.|.)+?)\]\(([^\s\)]+)\)/, + // %c or *bold*, **italics**, ***bold-italics***, or `code`, or [link](url) + + processMarkdown: function (phrase,args,domain) { + var result = [], data; + // + // Split the string by the Markdown pattern + // (the text blocks are separated by + // c,stars,star-text,backtics,code-text,link-text,URL). + // Start with teh first text string from the split. + // + var parts = phrase.split(this.markdownPattern); + var string = parts[0]; + // + // Loop through the matches and process them + // + for (var i = 1, m = parts.length; i < m; i += 8) { + if (parts[i+1]) { // stars (for bold/italic) + // + // Select the tag to use by number of stars (three stars requires two tags) + // + data = this.processString(parts[i+2],args,domain); + if (!(data instanceof Array)) {data = [data]} + data = [["b","i","i"][parts[i+1].length-1],{},data]; // number of stars determines type + if (parts[i+1].length === 3) {data = ["b",{},data]} // bold-italic + } else if (parts[i+3]) { // backtics (for code) + // + // Remove one leading or trailing space, and process substitutions + // Make a tag + // + data = this.processString(parts[i+4].replace(/^\s/,"").replace(/\s$/,""),args,domain); + if (!(data instanceof Array)) {data = [data]} + data = ["code",{},data]; + } else if (parts[i+5]) { // hyperlink + // + // Process the link text, and make an tag with the URL + // + data = this.processString(parts[i+5],args,domain); + if (!(data instanceof Array)) {data = [data]} + data = ["a",{href:this.processString(parts[i+6],args),target:"_blank"},data]; + } else { + // + // Escaped character (%c) gets added into the string. + // + string += parts[i]; data = null; + } + // + // If there is a tag to insert, + // Add any pending string, then push the tag + // + if (data) { + result = this.concatString(result,string,args,domain); + result.push(data); string = ""; + } + // + // Process the string that follows matches pattern + // + if (parts[i+7] !== "") {string += parts[i+7]} + }; + // + // Add any pending string and return the resulting snippet + // + result = this.concatString(result,string,args,domain); + return result; + }, + concatString: function (result,string,args,domain) { + if (string != "") { + // + // Process the substutions. + // If the result is not a snippet, turn it into one. + // Then concatenate the snippet to the current one + // + string = this.processString(string,args,domain); + if (!(string instanceof Array)) {string = [string]} + result = result.concat(string); + } + return result; + }, + + lookupPhrase: function (id,phrase,domain) { + // + // Get the domain and messageID + // + if (!domain) {domain = "_"} + if (id instanceof Array) {domain = (id[0] || "_"); id = (id[1] || "")} + // + // Check if the data is available and if not, + // load it and throw a restart error so the calling + // code can wait for the load and try again. + // + var load = this.loadDomain(domain); + if (load) {MathJax.Hub.RestartAfter(load)} + // + // Look up the message in the localization data + // (if not found, the original English is used) + // + var localeData = this.strings[this.locale]; + if (localeData) { + if (localeData.domains && domain in localeData.domains) { + var domainData = localeData.domains[domain]; + if (domainData.strings && id in domainData.strings) + {phrase = domainData.strings[id]} + } + } + // + // return the translated phrase + // + return phrase; + }, + + // + // Load a langauge data file from the proper + // directory and file. + // + loadFile: function (file,data,callback) { + callback = MathJax.Callback(callback||{}); + file = (data.file || file); // the data's file name or the default name + if (!file.match(/\.js$/)) {file += ".js"} // add .js if needed + // + // Add the directory if the file doesn't + // contain a full URL already. + // + if (!file.match(/^([a-z]+:|\[MathJax\])/)) { + var dir = (this.strings[this.locale].directory || + this.directory + "/" + this.locale || + "[MathJax]/localization/" + this.locale); + file = dir + "/" + file; + } + // + // Load the file and mark the data as loaded (even if it + // failed to load, so we don't continue to try to load it + // over and over). + // + var load = MathJax.Ajax.Require(file,function () {data.isLoaded = true; return callback()}); + // + // Return the callback if needed, otherwise null. + // + return (load.called ? null : load); + }, + + // + // Check to see if the localization data are loaded + // for the given domain; if not, load the data file, + // and return a callback for the loading operation. + // Otherwise return null (data are loaded). + // + loadDomain: function (domain,callback) { + var load, localeData = this.strings[this.locale]; + if (localeData) { + if (!localeData.isLoaded) { + load = this.loadFile(this.locale,localeData); + if (load) { + return MathJax.Callback.Queue( + load,["loadDomain",this,domain] // call again to load domain + ).Push(callback); + } + } + if (localeData.domains && domain in localeData.domains) { + var domainData = localeData.domains[domain]; + if (!domainData.isLoaded) { + load = this.loadFile(domain,domainData); + if (load) {return MathJax.Callback.Queue(load).Push(callback)} + } + } + } + // localization data are loaded, so just do the callback + return MathJax.Callback(callback)(); + }, + + // + // Perform a function, properly handling + // restarts due to localization file loads. + // + // Note that this may return before the function + // has been called successfully, so you should + // consider fn as running asynchronously. (Callbacks + // can be used to synchronize it with other actions.) + // + Try: function (fn) { + fn = MathJax.Callback(fn); fn.autoReset = true; + try {fn()} catch (err) { + if (!err.restart) {throw err} + MathJax.Callback.After(["Try",this,fn],err.restart); + } + }, + + // + // Reset the current language + // + resetLocale: function(locale) { + // Selection algorithm: + // 1) Downcase locale name (e.g. "en-US" => "en-us") + // 2) Try a parent language (e.g. "en-us" => "en") + // 3) Try the fallback specified in the data (e.g. "pt" => "pt-br") + // 4) Otherwise don't change the locale. + if (!locale) return; + locale = locale.toLowerCase(); + while (!this.strings[locale]) { + var dashPos = locale.lastIndexOf("-"); + if (dashPos === -1) return; + locale = locale.substring(0, dashPos); + } + var remap = this.strings[locale].remap; + this.locale = remap ? remap : locale; + }, + + // + // Set the current language + // + setLocale: function(locale) { + this.resetLocale(locale); + if (MathJax.Menu) {this.loadDomain("MathMenu")} + }, + + // + // Add or update a language or domain + // + addTranslation: function (locale,domain,definition) { + var data = this.strings[locale], isNew = false; + if (!data) {data = this.strings[locale] = {}; isNew = true} + if (!data.domains) {data.domains = {}} + if (domain) { + if (!data.domains[domain]) {data.domains[domain] = {}} + data = data.domains[domain]; + } + MathJax.Hub.Insert(data,definition); + if (isNew && MathJax.Menu.menu) {MathJax.Menu.CreateLocaleMenu()} + }, + + // + // Set CSS for an element based on font requirements + // + setCSS: function (div) { + var locale = this.strings[this.locale]; + if (locale) { + if (locale.fontFamily) {div.style.fontFamily = locale.fontFamily} + if (locale.fontDirection) { + div.style.direction = locale.fontDirection; + if (locale.fontDirection === "rtl") {div.style.textAlign = "right"} + } + } + return div; + }, + + // + // Get the language's font family or direction + // + fontFamily: function () { + var locale = this.strings[this.locale]; + return (locale ? locale.fontFamily : null); + }, + fontDirection: function () { + var locale = this.strings[this.locale]; + return (locale ? locale.fontDirection : null); + }, + + // + // Get the language's plural index for a number + // + plural: function (n) { + var locale = this.strings[this.locale]; + if (locale && locale.plural) {return locale.plural(n)} + // default + if (n == 1) {return 1} // one + return 2; // other + }, + + // + // Convert a number to language-specific form + // + number: function(n) { + var locale = this.strings[this.locale]; + if (locale && locale.number) {return locale.number(n)} + // default + return n; + } +}; + + +/**********************************************************/ + +MathJax.Message = { + ready: false, // used to tell when the styles are available + log: [{}], current: null, + textNodeBug: (navigator.vendor === "Apple Computer, Inc." && + typeof navigator.vendorSub === "undefined") || + (window.hasOwnProperty && window.hasOwnProperty("konqueror")), // Konqueror displays some gibberish with text.nodeValue = "..." + + styles: { + "#MathJax_Message": { + position: "fixed", left: "1px", bottom: "2px", + 'background-color': "#E6E6E6", border: "1px solid #959595", + margin: "0px", padding: "2px 8px", + 'z-index': "102", color: "black", 'font-size': "80%", + width: "auto", 'white-space': "nowrap" + }, + + "#MathJax_MSIE_Frame": { + position: "absolute", + top:0, left: 0, width: "0px", 'z-index': 101, + border: "0px", margin: "0px", padding: "0px" + } + }, + + browsers: { + MSIE: function (browser) { + MathJax.Hub.config.styles["#MathJax_Message"].position = "absolute"; + MathJax.Message.quirks = (document.compatMode === "BackCompat"); + }, + Chrome: function (browser) { + MathJax.Hub.config.styles["#MathJax_Message"].bottom = "1.5em"; + MathJax.Hub.config.styles["#MathJax_Message"].left = "1em"; + } + }, + + Init: function (styles) { + if (styles) {this.ready = true} + if (!document.body || !this.ready) {return false} + // + // ASCIIMathML replaces the entire page with a copy of itself (@#!#%@!!) + // so check that this.div is still part of the page, otherwise look up + // the copy and use that. + // + if (this.div && this.div.parentNode == null) { + this.div = document.getElementById("MathJax_Message"); + if (this.div) {this.text = this.div.firstChild} + } + if (!this.div) { + var frame = document.body; + if (MathJax.Hub.Browser.isMSIE) { + frame = this.frame = this.addDiv(document.body); frame.removeAttribute("id"); + frame.style.position = "absolute"; + frame.style.border = frame.style.margin = frame.style.padding = "0px"; + frame.style.zIndex = "101"; frame.style.height = "0px"; + frame = this.addDiv(frame); + frame.id = "MathJax_MSIE_Frame"; + window.attachEvent("onscroll",this.MoveFrame); + window.attachEvent("onresize",this.MoveFrame); + this.MoveFrame(); + } + this.div = this.addDiv(frame); this.div.style.display = "none"; + this.text = this.div.appendChild(document.createTextNode("")); + } + return true; + }, + + addDiv: function (parent) { + var div = document.createElement("div"); + div.id = "MathJax_Message"; + if (parent.firstChild) {parent.insertBefore(div,parent.firstChild)} + else {parent.appendChild(div)} + return div; + }, + + MoveFrame: function () { + var body = (MathJax.Message.quirks ? document.body : document.documentElement); + var frame = MathJax.Message.frame; + frame.style.left = body.scrollLeft + 'px'; + frame.style.top = body.scrollTop + 'px'; + frame.style.width = body.clientWidth + 'px'; + frame = frame.firstChild; + frame.style.height = body.clientHeight + 'px'; + }, + + localize: function (message) { + return MathJax.Localization._(message,message); + }, + + filterText: function (text,n,id) { + if (MathJax.Hub.config.messageStyle === "simple") { + if (id === "LoadFile") { + if (!this.loading) {this.loading = this.localize("Loading") + " "} + text = this.loading; this.loading += "."; + } else if (id === "ProcessMath") { + if (!this.processing) {this.processing = this.localize("Processing") + " "} + text = this.processing; this.processing += "."; + } else if (id === "TypesetMath") { + if (!this.typesetting) {this.typesetting = this.localize("Typesetting") + " "} + text = this.typesetting; this.typesetting += "."; + } + } + return text; + }, + + Set: function (text,n,clearDelay) { + if (n == null) {n = this.log.length; this.log[n] = {}} + // + // Translate message if it is [id,message,arguments] + // + var id = ""; + if (text instanceof Array) { + id = text[0]; if (id instanceof Array) {id = id[1]} + // + // Localization._() will throw a restart error if a localization file + // needs to be loaded, so trap that and redo the Set() call + // after it is loaded. + // + try { + text = MathJax.Localization._.apply(MathJax.Localization,text); + } catch (err) { + if (!err.restart) {throw err} + if (!err.restart.called) { + // + // Mark it so we can tell if the Clear() comes before the message is displayed + // + if (this.log[n].restarted == null) {this.log[n].restarted = 0} + this.log[n].restarted++; delete this.log[n].cleared; + MathJax.Callback.After(["Set",this,text,n,clearDelay],err.restart); + return n; + } + } + } + // + // Clear the timout timer. + // + if (this.timer) {clearTimeout(this.timer); delete this.timer} + // + // Save the message and filtered message. + // + this.log[n].text = text; this.log[n].filteredText = text = this.filterText(text,n,id); + // + // Hook the message into the message list so we can tell + // what message to put up when this one is removed. + // + if (typeof(this.log[n].next) === "undefined") { + this.log[n].next = this.current; + if (this.current != null) {this.log[this.current].prev = n} + this.current = n; + } + // + // Show the message if it is the currently active one. + // + if (this.current === n && MathJax.Hub.config.messageStyle !== "none") { + if (this.Init()) { + if (this.textNodeBug) {this.div.innerHTML = text} else {this.text.nodeValue = text} + this.div.style.display = ""; + if (this.status) {window.status = ""; delete this.status} + } else { + window.status = text; + this.status = true; + } + } + // + // Check if the message was resetarted to load a localization file + // and if it has been cleared in the meanwhile. + // + if (this.log[n].restarted) { + if (this.log[n].cleared) {clearDelay = 0} + if (--this.log[n].restarted === 0) {delete this.log[n].cleared} + } + // + // Check if we need to clear the message automatically. + // + if (clearDelay) {setTimeout(MathJax.Callback(["Clear",this,n]),clearDelay)} + else if (clearDelay == 0) {this.Clear(n,0)} + // + // Return the message number. + // + return n; + }, + + Clear: function (n,delay) { + // + // Detatch the message from the active list. + // + if (this.log[n].prev != null) {this.log[this.log[n].prev].next = this.log[n].next} + if (this.log[n].next != null) {this.log[this.log[n].next].prev = this.log[n].prev} + // + // If it is the current message, get the next one to show. + // + if (this.current === n) { + this.current = this.log[n].next; + if (this.text) { + if (this.div.parentNode == null) {this.Init()} // see ASCIIMathML comments above + if (this.current == null) { + // + // If there are no more messages, remove the message box. + // + if (this.timer) {clearTimeout(this.timer); delete this.timer} + if (delay == null) {delay = 600} + if (delay === 0) {this.Remove()} + else {this.timer = setTimeout(MathJax.Callback(["Remove",this]),delay)} + } else if (MathJax.Hub.config.messageStyle !== "none") { + // + // If there is an old message, put it in place + // + if (this.textNodeBug) {this.div.innerHTML = this.log[this.current].filteredText} + else {this.text.nodeValue = this.log[this.current].filteredText} + } + if (this.status) {window.status = ""; delete this.status} + } else if (this.status) { + window.status = (this.current == null ? "" : this.log[this.current].text); + } + } + // + // Clean up the log data no longer needed + // + delete this.log[n].next; delete this.log[n].prev; + delete this.log[n].filteredText; + // + // If this is a restarted localization message, mark that it has been cleared + // while waiting for the file to load. + // + if (this.log[n].restarted) {this.log[n].cleared = true} + }, + + Remove: function () { + // FIXME: do a fade out or something else interesting? + this.text.nodeValue = ""; + this.div.style.display = "none"; + }, + + File: function (file) { + var root = MathJax.Ajax.config.root; + if (file.substr(0,root.length) === root) {file = "[MathJax]"+file.substr(root.length)} + return this.Set(["LoadFile","Loading %1",file],null,null); + }, + + Log: function () { + var strings = []; + for (var i = 1, m = this.log.length; i < m; i++) {strings[i] = this.log[i].text} + return strings.join("\n"); + } + +}; + +/**********************************************************/ + +MathJax.Hub = { + config: { + root: "", + config: [], // list of configuration files to load + styleSheets: [], // list of CSS files to load + styles: { // styles to generate in-line + ".MathJax_Preview": {color: "#888"} + }, + jax: [], // list of input and output jax to load + extensions: [], // list of extensions to load + preJax: null, // pattern to remove from before math script tag + postJax: null, // pattern to remove from after math script tag + displayAlign: 'center', // how to align displayed equations (left, center, right) + displayIndent: '0', // indentation for displayed equations (when not centered) + preRemoveClass: 'MathJax_Preview', // class of objects to remove preceeding math script + showProcessingMessages: true, // display "Processing math: nn%" messages or not + messageStyle: "normal", // set to "none" or "simple" (for "Loading..." and "Processing...") + delayStartupUntil: "none", // set to "onload" to delay setup until the onload handler runs + // set to "configured" to delay startup until MathJax.Hub.Configured() is called + // set to a Callback to wait for before continuing with the startup + skipStartupTypeset: false, // set to true to skip PreProcess and Process during startup + elements: [], // array of elements to process when none is given explicitly + positionToHash: true, // after initial typeset pass, position to #hash location? + + showMathMenu: true, // attach math context menu to typeset math? + showMathMenuMSIE: true, // separtely determine if MSIE should have math menu + // (since the code for that is a bit delicate) + + menuSettings: { + zoom: "None", // when to do MathZoom + CTRL: false, // require CTRL for MathZoom? + ALT: false, // require Alt or Option? + CMD: false, // require CMD? + Shift: false, // require Shift? + discoverable: false, // make math menu discoverable on hover? + zscale: "200%", // the scaling factor for MathZoom + renderer: "", // set when Jax are loaded + font: "Auto", // what font HTML-CSS should use + context: "MathJax", // or "Browser" for pass-through to browser menu + locale: "en", // the language to use for messages + mpContext: false, // true means pass menu events to MathPlayer in IE + mpMouse: false, // true means pass mouse events to MathPlayer in IE + texHints: true // include class names for TeXAtom elements + }, + + errorSettings: { + // localized HTML snippet structure for message to use + message: ["[",["MathProcessingError","Math Processing Error"],"]"], + style: {color: "#CC0000", "font-style":"italic"} // style for message + } + }, + + preProcessors: MathJax.Callback.Hooks(true), // list of callbacks for preprocessing (initialized by extensions) + inputJax: {}, // mime-type mapped to input jax (by registration) + outputJax: {order:{}}, // mime-type mapped to output jax list (by registration) + + processUpdateTime: 250, // time between screen updates when processing math (milliseconds) + processUpdateDelay: 10, // pause between screen updates to allow other processing (milliseconds) + + signal: MathJax.Callback.Signal("Hub"), // Signal used for Hub events + + Config: function (def) { + this.Insert(this.config,def); + if (this.config.Augment) {this.Augment(this.config.Augment)} + }, + CombineConfig: function (name,def) { + var config = this.config, id, parent; name = name.split(/\./); + for (var i = 0, m = name.length; i < m; i++) { + id = name[i]; if (!config[id]) {config[id] = {}} + parent = config; config = config[id]; + } + parent[id] = config = this.Insert(def,config); + return config; + }, + + Register: { + PreProcessor: function () {MathJax.Hub.preProcessors.Add.apply(MathJax.Hub.preProcessors,arguments)}, + MessageHook: function () {return MathJax.Hub.signal.MessageHook.apply(MathJax.Hub.signal,arguments)}, + StartupHook: function () {return MathJax.Hub.Startup.signal.MessageHook.apply(MathJax.Hub.Startup.signal,arguments)}, + LoadHook: function () {return MathJax.Ajax.LoadHook.apply(MathJax.Ajax,arguments)} + }, + + getAllJax: function (element) { + var jax = [], scripts = this.elementScripts(element); + for (var i = 0, m = scripts.length; i < m; i++) { + if (scripts[i].MathJax && scripts[i].MathJax.elementJax) + {jax.push(scripts[i].MathJax.elementJax)} + } + return jax; + }, + + getJaxByType: function (type,element) { + var jax = [], scripts = this.elementScripts(element); + for (var i = 0, m = scripts.length; i < m; i++) { + if (scripts[i].MathJax && scripts[i].MathJax.elementJax && + scripts[i].MathJax.elementJax.mimeType === type) + {jax.push(scripts[i].MathJax.elementJax)} + } + return jax; + }, + + getJaxByInputType: function (type,element) { + var jax = [], scripts = this.elementScripts(element); + for (var i = 0, m = scripts.length; i < m; i++) { + if (scripts[i].MathJax && scripts[i].MathJax.elementJax && + scripts[i].type && scripts[i].type.replace(/ *;(.|\s)*/,"") === type) + {jax.push(scripts[i].MathJax.elementJax)} + } + return jax; + }, + + getJaxFor: function (element) { + if (typeof(element) === 'string') {element = document.getElementById(element)} + if (element && element.MathJax) {return element.MathJax.elementJax} + if (element && element.isMathJax) { + while (element && !element.jaxID) {element = element.parentNode} + if (element) {return MathJax.OutputJax[element.jaxID].getJaxFromMath(element)} + } + return null; + }, + + isJax: function (element) { + if (typeof(element) === 'string') {element = document.getElementById(element)} + if (element && element.isMathJax) {return 1} + if (element && element.tagName != null && element.tagName.toLowerCase() === 'script') { + if (element.MathJax) + {return (element.MathJax.state === MathJax.ElementJax.STATE.PROCESSED ? 1 : -1)} + if (element.type && this.inputJax[element.type.replace(/ *;(.|\s)*/,"")]) {return -1} + } + return 0; + }, + + setRenderer: function (renderer,type) { + if (!renderer) return; + if (!MathJax.OutputJax[renderer]) { + this.config.menuSettings.renderer = ""; + var file = "[MathJax]/jax/output/"+renderer+"/config.js"; + return MathJax.Ajax.Require(file,["setRenderer",this,renderer,type]); + } else { + this.config.menuSettings.renderer = renderer; + if (type == null) {type = "jax/mml"} + var jax = this.outputJax; + if (jax[type] && jax[type].length) { + if (renderer !== jax[type][0].id) { + jax[type].unshift(MathJax.OutputJax[renderer]); + return this.signal.Post(["Renderer Selected",renderer]); + } + } + return null; + } + }, + + Queue: function () { + return this.queue.Push.apply(this.queue,arguments); + }, + + Typeset: function (element,callback) { + if (!MathJax.isReady) return null; + var ec = this.elementCallback(element,callback); + var queue = MathJax.Callback.Queue(); + for (var i = 0, m = ec.elements.length; i < m; i++) { + if (ec.elements[i]) { + queue.Push( + ["PreProcess",this,ec.elements[i]], + ["Process",this,ec.elements[i]] + ); + } + } + return queue.Push(ec.callback); + }, + + PreProcess: function (element,callback) { + var ec = this.elementCallback(element,callback); + var queue = MathJax.Callback.Queue(); + for (var i = 0, m = ec.elements.length; i < m; i++) { + if (ec.elements[i]) { + queue.Push( + ["Post",this.signal,["Begin PreProcess",ec.elements[i]]], + (arguments.callee.disabled? {} : ["Execute",this.preProcessors,ec.elements[i]]), + ["Post",this.signal,["End PreProcess",ec.elements[i]]] + ); + } + } + return queue.Push(ec.callback); + }, + + Process: function (element,callback) {return this.takeAction("Process",element,callback)}, + Update: function (element,callback) {return this.takeAction("Update",element,callback)}, + Reprocess: function (element,callback) {return this.takeAction("Reprocess",element,callback)}, + Rerender: function (element,callback) {return this.takeAction("Rerender",element,callback)}, + + takeAction: function (action,element,callback) { + var ec = this.elementCallback(element,callback); + var queue = MathJax.Callback.Queue(["Clear",this.signal]); + for (var i = 0, m = ec.elements.length; i < m; i++) { + if (ec.elements[i]) { + var state = { + scripts: [], // filled in by prepareScripts + start: new Date().getTime(), // timer for processing messages + i: 0, j: 0, // current script, current jax + jax: {}, // scripts grouped by output jax + jaxIDs: [] // id's of jax used + }; + queue.Push( + ["Post",this.signal,["Begin "+action,ec.elements[i]]], + ["Post",this.signal,["Begin Math",ec.elements[i],action]], + ["prepareScripts",this,action,ec.elements[i],state], + ["Post",this.signal,["Begin Math Input",ec.elements[i],action]], + ["processInput",this,state], + ["Post",this.signal,["End Math Input",ec.elements[i],action]], + ["prepareOutput",this,state,"preProcess"], + ["Post",this.signal,["Begin Math Output",ec.elements[i],action]], + ["processOutput",this,state], + ["Post",this.signal,["End Math Output",ec.elements[i],action]], + ["prepareOutput",this,state,"postProcess"], + ["Post",this.signal,["End Math",ec.elements[i],action]], + ["Post",this.signal,["End "+action,ec.elements[i]]] + ); + } + } + return queue.Push(ec.callback); + }, + + scriptAction: { + Process: function (script) {}, + Update: function (script) { + var jax = script.MathJax.elementJax; + if (jax && jax.needsUpdate()) {jax.Remove(true); script.MathJax.state = jax.STATE.UPDATE} + else {script.MathJax.state = jax.STATE.PROCESSED} + }, + Reprocess: function (script) { + var jax = script.MathJax.elementJax; + if (jax) {jax.Remove(true); script.MathJax.state = jax.STATE.UPDATE} + }, + Rerender: function (script) { + var jax = script.MathJax.elementJax; + if (jax) {jax.Remove(true); script.MathJax.state = jax.STATE.OUTPUT} + } + }, + + prepareScripts: function (action,element,state) { + if (arguments.callee.disabled) return; + var scripts = this.elementScripts(element); + var STATE = MathJax.ElementJax.STATE; + for (var i = 0, m = scripts.length; i < m; i++) { + var script = scripts[i]; + if (script.type && this.inputJax[script.type.replace(/ *;(.|\n)*/,"")]) { + if (script.MathJax) { + if (script.MathJax.elementJax && script.MathJax.elementJax.hover) { + MathJax.Extension.MathEvents.Hover.ClearHover(script.MathJax.elementJax); + } + if (script.MathJax.state !== STATE.PENDING) {this.scriptAction[action](script)} + } + if (!script.MathJax) {script.MathJax = {state: STATE.PENDING}} + if (script.MathJax.state !== STATE.PROCESSED) {state.scripts.push(script)} + } + } + }, + + checkScriptSiblings: function (script) { + if (script.MathJax.checked) return; + var config = this.config, pre = script.previousSibling; + if (pre && pre.nodeName === "#text") { + var preJax,postJax, post = script.nextSibling; + if (post && post.nodeName !== "#text") {post = null} + if (config.preJax) { + if (typeof(config.preJax) === "string") {config.preJax = new RegExp(config.preJax+"$")} + preJax = pre.nodeValue.match(config.preJax); + } + if (config.postJax && post) { + if (typeof(config.postJax) === "string") {config.postJax = new RegExp("^"+config.postJax)} + postJax = post.nodeValue.match(config.postJax); + } + if (preJax && (!config.postJax || postJax)) { + pre.nodeValue = pre.nodeValue.replace + (config.preJax,(preJax.length > 1? preJax[1] : "")); + pre = null; + } + if (postJax && (!config.preJax || preJax)) { + post.nodeValue = post.nodeValue.replace + (config.postJax,(postJax.length > 1? postJax[1] : "")); + } + if (pre && !pre.nodeValue.match(/\S/)) {pre = pre.previousSibling} + } + if (config.preRemoveClass && pre && pre.className === config.preRemoveClass) + {script.MathJax.preview = pre} + script.MathJax.checked = 1; + }, + + processInput: function (state) { + var jax, STATE = MathJax.ElementJax.STATE; + var script, prev, m = state.scripts.length; + try { + // + // Loop through the scripts + // + while (state.i < m) { + script = state.scripts[state.i]; if (!script) {state.i++; continue} + // + // Remove previous error marker, if any + // + prev = script.previousSibling; + if (prev && prev.className === "MathJax_Error") {prev.parentNode.removeChild(prev)} + // + // Check if already processed or needs processing + // + if (!script.MathJax || script.MathJax.state === STATE.PROCESSED) {state.i++; continue}; + if (!script.MathJax.elementJax || script.MathJax.state === STATE.UPDATE) { + this.checkScriptSiblings(script); // remove preJax/postJax etc. + var type = script.type.replace(/ *;(.|\s)*/,""); // the input jax type + jax = this.inputJax[type].Process(script,state); // run the input jax + if (typeof jax === 'function') { // if a callback was returned + if (jax.called) continue; // go back and call Process() again + this.RestartAfter(jax); // wait for the callback + } + jax.Attach(script,this.inputJax[type].id); // register the jax on the script + this.saveScript(jax,state,script,STATE); // add script to state + } else if (script.MathJax.state === STATE.OUTPUT) { + this.saveScript(script.MathJax.elementJax,state,script,STATE); // add script to state + } + // + // Go on to the next script, and check if we need to update the processing message + // + state.i++; var now = new Date().getTime(); + if (now - state.start > this.processUpdateTime && state.i < state.scripts.length) + {state.start = now; this.RestartAfter(MathJax.Callback.Delay(1))} + } + } catch (err) {return this.processError(err,state,"Input")} + // + // Put up final message, reset the state and return + // + if (state.scripts.length && this.config.showProcessingMessages) + {MathJax.Message.Set(["ProcessMath","Processing math: %1%%",100],0)} + state.start = new Date().getTime(); state.i = state.j = 0; + return null; + }, + saveScript: function (jax,state,script,STATE) { + // + // Check that output jax exists + // + if (!this.outputJax[jax.mimeType]) { + script.MathJax.state = STATE.UPDATE; + throw Error("No output jax registered for "+jax.mimeType); + } + // + // Record the output jax + // and put this script in the queue for that jax + // + jax.outputJax = this.outputJax[jax.mimeType][0].id; + if (!state.jax[jax.outputJax]) { + if (state.jaxIDs.length === 0) { + // use original array until we know there are more (rather than two copies) + state.jax[jax.outputJax] = state.scripts; + } else { + if (state.jaxIDs.length === 1) // get the script so far for the existing jax + {state.jax[state.jaxIDs[0]] = state.scripts.slice(0,state.i)} + state.jax[jax.outputJax] = []; // start a new array for the new jax + } + state.jaxIDs.push(jax.outputJax); // save the ID of the jax + } + if (state.jaxIDs.length > 1) {state.jax[jax.outputJax].push(script)} + // + // Mark script as needing output + // + script.MathJax.state = STATE.OUTPUT; + }, + + // + // Pre- and post-process scripts by jax + // (to get scaling factors, hide/show output, and so on) + // Since this can cause the jax to load, we need to trap restarts + // + prepareOutput: function (state,method) { + while (state.j < state.jaxIDs.length) { + var id = state.jaxIDs[state.j], JAX = MathJax.OutputJax[id]; + if (JAX[method]) { + try { + var result = JAX[method](state); + if (typeof result === 'function') { + if (result.called) continue; // go back and try again + this.RestartAfter(result); + } + } catch (err) { + if (!err.restart) { + MathJax.Message.Set(["PrepError","Error preparing %1 output (%2)",id,method],null,600); + MathJax.Hub.lastPrepError = err; + state.j++; + } + return MathJax.Callback.After(["prepareOutput",this,state,method],err.restart); + } + } + state.j++; + } + return null; + }, + + processOutput: function (state) { + var result, STATE = MathJax.ElementJax.STATE, script, m = state.scripts.length; + try { + // + // Loop through the scripts + // + while (state.i < m) { + // + // Check that there is an element jax + // + script = state.scripts[state.i]; + if (!script || !script.MathJax || script.MathJax.error) {state.i++; continue} + var jax = script.MathJax.elementJax; if (!jax) {state.i++; continue} + // + // Call the output Jax's Process method (which will be its Translate() + // method once loaded). Mark it as complete and remove the preview. + // + result = MathJax.OutputJax[jax.outputJax].Process(script,state); + script.MathJax.state = STATE.PROCESSED; state.i++; + if (script.MathJax.preview) {script.MathJax.preview.innerHTML = ""} + // + // Signal that new math is available + // + this.signal.Post(["New Math",jax.inputID]); // FIXME: wait for this? (i.e., restart if returns uncalled callback) + // + // Update the processing message, if needed + // + var now = new Date().getTime(); + if (now - state.start > this.processUpdateTime && state.i < state.scripts.length) + {state.start = now; this.RestartAfter(MathJax.Callback.Delay(this.processUpdateDelay))} + } + } catch (err) {return this.processError(err,state,"Output")} + // + // Put up the typesetting-complete message + // + if (state.scripts.length && this.config.showProcessingMessages) { + MathJax.Message.Set(["TypesetMath","Typesetting math: %1%%",100],0); + MathJax.Message.Clear(0); + } + state.i = state.j = 0; + return null; + }, + + processMessage: function (state,type) { + var m = Math.floor(state.i/(state.scripts.length)*100); + var message = (type === "Output" ? ["TypesetMath","Typesetting math: %1%%"] : + ["ProcessMath","Processing math: %1%%"]); + if (this.config.showProcessingMessages) {MathJax.Message.Set(message.concat(m),0)} + }, + + processError: function (err,state,type) { + if (!err.restart) { + if (!this.config.errorSettings.message) {throw err} + this.formatError(state.scripts[state.i],err); state.i++; + } + this.processMessage(state,type); + return MathJax.Callback.After(["process"+type,this,state],err.restart); + }, + + formatError: function (script,err) { + // + // Get the error message, URL, and line, and save it for + // reporting in the Show Math As Error menu + // + var message = "Error: "+err.message+"\n"; + if (err.sourceURL) {message += "\nfile: "+err.sourceURL} + if (err.line) {message += "\nline: "+err.line} + script.MathJax.error = MathJax.OutputJax.Error.Jax(message,script); + + // + // Create the [Math Processing Error] span + // + var errorSettings = this.config.errorSettings; + var errorText = MathJax.Localization._(errorSettings.messageId,errorSettings.message); + var error = MathJax.HTML.Element("span", + {className:"MathJax_Error", jaxID:"Error", isMathJax:true},errorText); + // + // Attach the menu events + // + if (MathJax.Extension.MathEvents) { + error.oncontextmenu = MathJax.Extension.MathEvents.Event.Menu; + error.onmousedown = MathJax.Extension.MathEvents.Event.Mousedown; + } else { + MathJax.Ajax.Require("[MathJax]/extensions/MathEvents.js",function () { + error.oncontextmenu = MathJax.Extension.MathEvents.Event.Menu; + error.onmousedown = MathJax.Extension.MathEvents.Event.Mousedown; + }); + } + // + // Insert the error into the page and remove any preview + // + script.parentNode.insertBefore(error,script); + if (script.MathJax.preview) {script.MathJax.preview.innerHTML = ""} + // + // Save the error for debugging purposes + // Report the error as a signal + // + this.lastError = err; + this.signal.Post(["Math Processing Error",script,err]); + }, + + RestartAfter: function (callback) { + throw this.Insert(Error("restart"),{restart: MathJax.Callback(callback)}); + }, + + elementCallback: function (element,callback) { + if (callback == null && (element instanceof Array || typeof element === 'function')) + {try {MathJax.Callback(element); callback = element; element = null} catch(e) {}} + if (element == null) {element = this.config.elements || []} + if (!(element instanceof Array)) {element = [element]} + element = [].concat(element); // make a copy so the original isn't changed + for (var i = 0, m = element.length; i < m; i++) + {if (typeof(element[i]) === 'string') {element[i] = document.getElementById(element[i])}} + if (!document.body) {document.body = document.getElementsByTagName("body")[0]} + if (element.length == 0) {element.push(document.body)} + if (!callback) {callback = {}} + return {elements: element, callback: callback}; + }, + + elementScripts: function (element) { + if (element instanceof Array) { + var scripts = []; + for (var i = 0, m = element.length; i < m; i++) + {scripts.push.apply(scripts,this.elementScripts(element[i]))} + return scripts; + } + if (typeof(element) === 'string') {element = document.getElementById(element)} + if (!document.body) {document.body = document.getElementsByTagName("body")[0]} + if (element == null) {element = document.body} + if (element.tagName != null && element.tagName.toLowerCase() === "script") {return [element]} + return element.getElementsByTagName("script"); + }, + + Insert: function (dst,src) { + for (var id in src) {if (src.hasOwnProperty(id)) { + // allow for concatenation of arrays? + if (typeof src[id] === 'object' && !(src[id] instanceof Array) && + (typeof dst[id] === 'object' || typeof dst[id] === 'function')) { + this.Insert(dst[id],src[id]); + } else { + dst[id] = src[id]; + } + }} + return dst; + }, + + // Old browsers (e.g. Internet Explorer <= 8) do not support trim(). + SplitList: ("trim" in String.prototype ? + function (list) {return list.trim().split(/\s+/)} : + function (list) {return list.replace(/^\s+/,''). + replace(/\s+$/,'').split(/\s+/)}) +}; +MathJax.Hub.Insert(MathJax.Hub.config.styles,MathJax.Message.styles); +MathJax.Hub.Insert(MathJax.Hub.config.styles,{".MathJax_Error":MathJax.Hub.config.errorSettings.style}); + +// +// Storage area for extensions and preprocessors +// +MathJax.Extension = {}; + +// +// Hub Startup code +// +MathJax.Hub.Configured = MathJax.Callback({}); // called when configuration is complete +MathJax.Hub.Startup = { + script: "", // the startup script from the SCRIPT call that loads MathJax.js + queue: MathJax.Callback.Queue(), // Queue used for startup actions + signal: MathJax.Callback.Signal("Startup"), // Signal used for startup events + params: {}, + + // + // Load the configuration files + // + Config: function () { + this.queue.Push(["Post",this.signal,"Begin Config"]); + // + // If a locale is given as a parameter, + // set the locale and the default menu value for the locale + // + if (this.params.locale) { + MathJax.Localization.resetLocale(this.params.locale); + MathJax.Hub.config.menuSettings.locale = this.params.locale; + } + // + // Check for user cookie configuration + // + var user = MathJax.HTML.Cookie.Get("user"); + if (user.URL || user.Config) { + if (confirm( + MathJax.Localization._("CookieConfig", + "MathJax has found a user-configuration cookie that includes code to "+ + "be run. Do you want to run it?\n\n"+ + "(You should press Cancel unless you set up the cookie yourself.)") + )) { + if (user.URL) {this.queue.Push(["Require",MathJax.Ajax,user.URL])} + if (user.Config) {this.queue.Push(new Function(user.Config))} + } else {MathJax.HTML.Cookie.Set("user",{})} + } + // + // Run the config files, if any are given in the parameter list + // + if (this.params.config) { + var files = this.params.config.split(/,/); + for (var i = 0, m = files.length; i < m; i++) { + if (!files[i].match(/\.js$/)) {files[i] += ".js"} + this.queue.Push(["Require",MathJax.Ajax,this.URL("config",files[i])]); + } + } + // + // Perform author configuration from in-line MathJax = {...} + // + this.queue.Push(["Config",MathJax.Hub,MathJax.AuthorConfig]); + // + // Run the deprecated configuration script, if any (ignoring return value) + // Wait for the startup delay signal + // Run the mathjax-config blocks + // Load the files in the configuration's config array + // + if (this.script.match(/\S/)) {this.queue.Push(this.script+";\n1;")} + this.queue.Push( + ["ConfigDelay",this], + ["ConfigBlocks",this], + [function (THIS) {return THIS.loadArray(MathJax.Hub.config.config,"config",null,true)},this], + ["Post",this.signal,"End Config"] + ); + }, + // + // Return the delay callback + // + ConfigDelay: function () { + var delay = this.params.delayStartupUntil || MathJax.Hub.config.delayStartupUntil; + if (delay === "onload") {return this.onload} + if (delay === "configured") {return MathJax.Hub.Configured} + return delay; + }, + // + // Run the scripts of type=text/x-mathjax-config + // + ConfigBlocks: function () { + var scripts = document.getElementsByTagName("script"); + var last = null, queue = MathJax.Callback.Queue(); + for (var i = 0, m = scripts.length; i < m; i++) { + var type = String(scripts[i].type).replace(/ /g,""); + if (type.match(/^text\/x-mathjax-config(;.*)?$/) && !type.match(/;executed=true/)) { + scripts[i].type += ";executed=true"; + last = queue.Push(scripts[i].innerHTML+";\n1;"); + } + } + return last; + }, + + // + // Read cookie and set up menu defaults + // (set the locale according to the cookie) + // (adjust the jax to accommodate renderer preferences) + // + Cookie: function () { + return this.queue.Push( + ["Post",this.signal,"Begin Cookie"], + ["Get",MathJax.HTML.Cookie,"menu",MathJax.Hub.config.menuSettings], + [function (config) { + if (config.menuSettings.locale) + {MathJax.Localization.resetLocale(config.menuSettings.locale)} + var renderer = config.menuSettings.renderer, jax = config.jax; + if (renderer) { + var name = "output/"+renderer; jax.sort(); + for (var i = 0, m = jax.length; i < m; i++) { + if (jax[i].substr(0,7) === "output/") break; + } + if (i == m-1) {jax.pop()} else { + while (i < m) {if (jax[i] === name) {jax.splice(i,1); break}; i++} + } + jax.unshift(name); + } + },MathJax.Hub.config], + ["Post",this.signal,"End Cookie"] + ); + }, + // + // Setup stylesheets and extra styles + // + Styles: function () { + return this.queue.Push( + ["Post",this.signal,"Begin Styles"], + ["loadArray",this,MathJax.Hub.config.styleSheets,"config"], + ["Styles",MathJax.Ajax,MathJax.Hub.config.styles], + ["Post",this.signal,"End Styles"] + ); + }, + // + // Load the input and output jax + // + Jax: function () { + var config = MathJax.Hub.config, jax = MathJax.Hub.outputJax; + // Save the order of the output jax since they are loading asynchronously + for (var i = 0, m = config.jax.length, k = 0; i < m; i++) { + var name = config.jax[i].substr(7); + if (config.jax[i].substr(0,7) === "output/" && jax.order[name] == null) + {jax.order[name] = k; k++} + } + var queue = MathJax.Callback.Queue(); + return queue.Push( + ["Post",this.signal,"Begin Jax"], + ["loadArray",this,config.jax,"jax","config.js"], + ["Post",this.signal,"End Jax"] + ); + }, + // + // Load the extensions + // + Extensions: function () { + var queue = MathJax.Callback.Queue(); + return queue.Push( + ["Post",this.signal,"Begin Extensions"], + ["loadArray",this,MathJax.Hub.config.extensions,"extensions"], + ["Post",this.signal,"End Extensions"] + ); + }, + + // + // Initialize the Message system + // + Message: function () { + MathJax.Message.Init(true); + }, + + // + // Set the math menu renderer, if it isn't already + // (this must come after the jax are loaded) + // + Menu: function () { + var menu = MathJax.Hub.config.menuSettings, jax = MathJax.Hub.outputJax, registered; + for (var id in jax) {if (jax.hasOwnProperty(id)) { + if (jax[id].length) {registered = jax[id]; break} + }} + if (registered && registered.length) { + if (menu.renderer && menu.renderer !== registered[0].id) + {registered.unshift(MathJax.OutputJax[menu.renderer])} + menu.renderer = registered[0].id; + } + }, + + // + // Set the location to the designated hash position + // + Hash: function () { + if (MathJax.Hub.config.positionToHash && document.location.hash && + document.body && document.body.scrollIntoView) { + var name = document.location.hash.substr(1); + var target = document.getElementById(name); + if (!target) { + var a = document.getElementsByTagName("a"); + for (var i = 0, m = a.length; i < m; i++) + {if (a[i].name === name) {target = a[i]; break}} + } + if (target) { + while (!target.scrollIntoView) {target = target.parentNode} + target = this.HashCheck(target); + if (target && target.scrollIntoView) + {setTimeout(function () {target.scrollIntoView(true)},1)} + } + } + }, + HashCheck: function (target) { + if (target.isMathJax) { + var jax = MathJax.Hub.getJaxFor(target); + if (jax && MathJax.OutputJax[jax.outputJax].hashCheck) + {target = MathJax.OutputJax[jax.outputJax].hashCheck(target)} + } + return target; + }, + + // + // Load the Menu and Zoom code, if it hasn't already been loaded. + // This is called after the initial typeset, so should no longer be + // competing with other page loads, but will make these available + // if needed later on. + // + MenuZoom: function () { + if (!MathJax.Extension.MathMenu) { + setTimeout( + function () { + MathJax.Callback.Queue( + ["Require",MathJax.Ajax,"[MathJax]/extensions/MathMenu.js",{}], + ["loadDomain",MathJax.Localization,"MathMenu"] + ) + },1000 + ); + } else { + setTimeout( + MathJax.Callback(["loadDomain",MathJax.Localization,"MathMenu"]), + 1000 + ); + } + if (!MathJax.Extension.MathZoom) { + setTimeout( + MathJax.Callback(["Require",MathJax.Ajax,"[MathJax]/extensions/MathZoom.js",{}]), + 2000 + ); + } + }, + + // + // Setup the onload callback + // + onLoad: function () { + var onload = this.onload = + MathJax.Callback(function () {MathJax.Hub.Startup.signal.Post("onLoad")}); + if (document.body && document.readyState) + if (MathJax.Hub.Browser.isMSIE) { + // IE can change from loading to interactive before + // full page is ready, so go with complete (even though + // that means we may have to wait longer). + if (document.readyState === "complete") {return [onload]} + } else if (document.readyState !== "loading") {return [onload]} + if (window.addEventListener) { + window.addEventListener("load",onload,false); + if (!this.params.noDOMContentEvent) + {window.addEventListener("DOMContentLoaded",onload,false)} + } + else if (window.attachEvent) {window.attachEvent("onload",onload)} + else {window.onload = onload} + return onload; + }, + + // + // Perform the initial typesetting (or skip if configuration says to) + // + Typeset: function (element,callback) { + if (MathJax.Hub.config.skipStartupTypeset) {return function () {}} + return this.queue.Push( + ["Post",this.signal,"Begin Typeset"], + ["Typeset",MathJax.Hub,element,callback], + ["Post",this.signal,"End Typeset"] + ); + }, + + // + // Create a URL in the MathJax hierarchy + // + URL: function (dir,name) { + if (!name.match(/^([a-z]+:\/\/|\[|\/)/)) {name = "[MathJax]/"+dir+"/"+name} + return name; + }, + + // + // Load an array of files, waiting for all of them + // to be loaded before going on + // + loadArray: function (files,dir,name,synchronous) { + if (files) { + if (!(files instanceof Array)) {files = [files]} + if (files.length) { + var queue = MathJax.Callback.Queue(), callback = {}, file; + for (var i = 0, m = files.length; i < m; i++) { + file = this.URL(dir,files[i]); + if (name) {file += "/" + name} + if (synchronous) {queue.Push(["Require",MathJax.Ajax,file,callback])} + else {queue.Push(MathJax.Ajax.Require(file,callback))} + } + return queue.Push({}); // wait for everything to finish + } + } + return null; + } + +}; + + +/**********************************************************/ + +(function (BASENAME) { + var BASE = window[BASENAME], ROOT = "["+BASENAME+"]"; + var HUB = BASE.Hub, AJAX = BASE.Ajax, CALLBACK = BASE.Callback; + + var JAX = MathJax.Object.Subclass({ + JAXFILE: "jax.js", + require: null, // array of files to load before jax.js is complete + config: {}, + // + // Make a subclass and return an instance of it. + // (FIXME: should we replace config with a copy of the constructor's + // config? Otherwise all subclasses share the same config structure.) + // + Init: function (def,cdef) { + if (arguments.length === 0) {return this} + return (this.constructor.Subclass(def,cdef))(); + }, + // + // Augment by merging with class definition (not replacing) + // + Augment: function (def,cdef) { + var cObject = this.constructor, ndef = {}; + if (def != null) { + for (var id in def) {if (def.hasOwnProperty(id)) { + if (typeof def[id] === "function") + {cObject.protoFunction(id,def[id])} else {ndef[id] = def[id]} + }} + // MSIE doesn't list toString even if it is not native so handle it separately + if (def.toString !== cObject.prototype.toString && def.toString !== {}.toString) + {cObject.protoFunction('toString',def.toString)} + } + HUB.Insert(cObject.prototype,ndef); + cObject.Augment(null,cdef); + return this; + }, + Translate: function (script,state) { + throw Error(this.directory+"/"+this.JAXFILE+" failed to define the Translate() method"); + }, + Register: function (mimetype) {}, + Config: function () { + this.config = HUB.CombineConfig(this.id,this.config); + if (this.config.Augment) {this.Augment(this.config.Augment)} + }, + Startup: function () {}, + loadComplete: function (file) { + if (file === "config.js") { + return AJAX.loadComplete(this.directory+"/"+file); + } else { + var queue = CALLBACK.Queue(); + queue.Push( + HUB.Register.StartupHook("End Config",{}), // wait until config complete + ["Post",HUB.Startup.signal,this.id+" Jax Config"], + ["Config",this], + ["Post",HUB.Startup.signal,this.id+" Jax Require"], + // Config may set the required and extensions array, + // so use functions to delay making the reference until needed + [function (THIS) {return MathJax.Hub.Startup.loadArray(THIS.require,this.directory)},this], + [function (config,id) {return MathJax.Hub.Startup.loadArray(config.extensions,"extensions/"+id)},this.config||{},this.id], + ["Post",HUB.Startup.signal,this.id+" Jax Startup"], + ["Startup",this], + ["Post",HUB.Startup.signal,this.id+" Jax Ready"] + ); + if (this.copyTranslate) { + queue.Push( + [function (THIS) { + THIS.preProcess = THIS.preTranslate; + THIS.Process = THIS.Translate; + THIS.postProcess = THIS.postTranslate; + },this.constructor.prototype] + ); + } + return queue.Push(["loadComplete",AJAX,this.directory+"/"+file]); + } + } + },{ + id: "Jax", + version: "2.3", + directory: ROOT+"/jax", + extensionDir: ROOT+"/extensions" + }); + + /***********************************/ + + BASE.InputJax = JAX.Subclass({ + elementJax: "mml", // the element jax to load for this input jax + sourceMenuTitle: /*_(MathMenu)*/ ["Original","Original Form"], + copyTranslate: true, + Process: function (script,state) { + var queue = CALLBACK.Queue(), file; + // Load any needed element jax + var jax = this.elementJax; if (!(jax instanceof Array)) {jax = [jax]} + for (var i = 0, m = jax.length; i < m; i++) { + file = BASE.ElementJax.directory+"/"+jax[i]+"/"+this.JAXFILE; + if (!this.require) {this.require = []} + else if (!(this.require instanceof Array)) {this.require = [this.require]}; + this.require.push(file); // so Startup will wait for it to be loaded + queue.Push(AJAX.Require(file)); + } + // Load the input jax + file = this.directory+"/"+this.JAXFILE; + var load = queue.Push(AJAX.Require(file)); + if (!load.called) { + this.constructor.prototype.Process = function () { + if (!load.called) {return load} + throw Error(file+" failed to load properly"); + } + } + // Load the associated output jax + jax = HUB.outputJax["jax/"+jax[0]]; + if (jax) {queue.Push(AJAX.Require(jax[0].directory+"/"+this.JAXFILE))} + return queue.Push({}); + }, + needsUpdate: function (jax) { + var script = jax.SourceElement(); + return (jax.originalText !== BASE.HTML.getScript(script)); + }, + Register: function (mimetype) { + if (!HUB.inputJax) {HUB.inputJax = {}} + HUB.inputJax[mimetype] = this; + } + },{ + id: "InputJax", + version: "2.3", + directory: JAX.directory+"/input", + extensionDir: JAX.extensionDir + }); + + /***********************************/ + + BASE.OutputJax = JAX.Subclass({ + copyTranslate: true, + preProcess: function (state) { + var load, file = this.directory+"/"+this.JAXFILE; + this.constructor.prototype.preProcess = function (state) { + if (!load.called) {return load} + throw Error(file+" failed to load properly"); + } + load = AJAX.Require(file); + return load; + }, + Register: function (mimetype) { + var jax = HUB.outputJax; + if (!jax[mimetype]) {jax[mimetype] = []} + // If the output jax is earlier in the original configuration list, put it first here + if (jax[mimetype].length && (this.id === HUB.config.menuSettings.renderer || + (jax.order[this.id]||0) < (jax.order[jax[mimetype][0].id]||0))) + {jax[mimetype].unshift(this)} else {jax[mimetype].push(this)} + // Make sure the element jax is loaded before Startup is called + if (!this.require) {this.require = []} + else if (!(this.require instanceof Array)) {this.require = [this.require]}; + this.require.push(BASE.ElementJax.directory+"/"+(mimetype.split(/\//)[1])+"/"+this.JAXFILE); + }, + Remove: function (jax) {} + },{ + id: "OutputJax", + version: "2.3", + directory: JAX.directory+"/output", + extensionDir: JAX.extensionDir, + fontDir: ROOT+(BASE.isPacked?"":"/..")+"/fonts", + imageDir: ROOT+(BASE.isPacked?"":"/..")+"/images" + }); + + /***********************************/ + + BASE.ElementJax = JAX.Subclass({ + // make a subclass, not an instance + Init: function (def,cdef) {return this.constructor.Subclass(def,cdef)}, + + inputJax: null, + outputJax: null, + inputID: null, + originalText: "", + mimeType: "", + sourceMenuTitle: /*_(MathMenu)*/ ["MathMLcode","MathML Code"], + + Text: function (text,callback) { + var script = this.SourceElement(); + BASE.HTML.setScript(script,text); + script.MathJax.state = this.STATE.UPDATE; + return HUB.Update(script,callback); + }, + Reprocess: function (callback) { + var script = this.SourceElement(); + script.MathJax.state = this.STATE.UPDATE; + return HUB.Reprocess(script,callback); + }, + Update: function (callback) {return this.Rerender(callback)}, + Rerender: function (callback) { + var script = this.SourceElement(); + script.MathJax.state = this.STATE.OUTPUT; + return HUB.Process(script,callback); + }, + Remove: function (keep) { + if (this.hover) {this.hover.clear(this)} + BASE.OutputJax[this.outputJax].Remove(this); + if (!keep) { + HUB.signal.Post(["Remove Math",this.inputID]); // wait for this to finish? + this.Detach(); + } + }, + needsUpdate: function () { + return BASE.InputJax[this.inputJax].needsUpdate(this); + }, + + SourceElement: function () {return document.getElementById(this.inputID)}, + + Attach: function (script,inputJax) { + var jax = script.MathJax.elementJax; + if (script.MathJax.state === this.STATE.UPDATE) { + jax.Clone(this); + } else { + jax = script.MathJax.elementJax = this; + if (script.id) {this.inputID = script.id} + else {script.id = this.inputID = BASE.ElementJax.GetID(); this.newID = 1} + } + jax.originalText = BASE.HTML.getScript(script); + jax.inputJax = inputJax; + if (jax.root) {jax.root.inputID = jax.inputID} + return jax; + }, + Detach: function () { + var script = this.SourceElement(); if (!script) return; + try {delete script.MathJax} catch(err) {script.MathJax = null} + if (this.newID) {script.id = ""} + }, + Clone: function (jax) { + var id; + for (id in this) { + if (!this.hasOwnProperty(id)) continue; + if (typeof(jax[id]) === 'undefined' && id !== 'newID') {delete this[id]} + } + for (id in jax) { + if (!jax.hasOwnProperty(id)) continue; + if (typeof(this[id]) === 'undefined' || (this[id] !== jax[id] && id !== 'inputID')) + {this[id] = jax[id]} + } + } + },{ + id: "ElementJax", + version: "2.3", + directory: JAX.directory+"/element", + extensionDir: JAX.extensionDir, + ID: 0, // jax counter (for IDs) + STATE: { + PENDING: 1, // script is identified as math but not yet processed + PROCESSED: 2, // script has been processed + UPDATE: 3, // elementJax should be updated + OUTPUT: 4 // output should be updated (input is OK) + }, + + GetID: function () {this.ID++; return "MathJax-Element-"+this.ID}, + Subclass: function () { + var obj = JAX.Subclass.apply(this,arguments); + obj.loadComplete = this.prototype.loadComplete; + return obj; + } + }); + BASE.ElementJax.prototype.STATE = BASE.ElementJax.STATE; + + // + // Some "Fake" jax used to allow menu access for "Math Processing Error" messages + // + BASE.OutputJax.Error = { + id: "Error", version: "2.3", config: {}, + ContextMenu: function () {return BASE.Extension.MathEvents.Event.ContextMenu.apply(BASE.Extension.MathEvents.Event,arguments)}, + Mousedown: function () {return BASE.Extension.MathEvents.Event.AltContextMenu.apply(BASE.Extension.MathEvents.Event,arguments)}, + getJaxFromMath: function (math) {return (math.nextSibling.MathJax||{}).error}, + Jax: function (text,script) { + var jax = MathJax.Hub.inputJax[script.type.replace(/ *;(.|\s)*/,"")]; + return { + inputJax: (jax||{id:"Error"}).id, // Use Error InputJax as fallback + outputJax: "Error", + sourceMenuTitle: /*_(MathMenu)*/ ["ErrorMessage","Error Message"], + sourceMenuFormat: "Error", + originalText: MathJax.HTML.getScript(script), + errorText: text + } + } + }; + BASE.InputJax.Error = { + id: "Error", version: "2.3", config: {}, + sourceMenuTitle: /*_(MathMenu)*/ ["Original","Original Form"] + }; + +})("MathJax"); + +/**********************************************************/ + +(function (BASENAME) { + var BASE = window[BASENAME]; + if (!BASE) {BASE = window[BASENAME] = {}} + + var HUB = BASE.Hub; var STARTUP = HUB.Startup; var CONFIG = HUB.config; + var HEAD = document.getElementsByTagName("head")[0]; + if (!HEAD) {HEAD = document.childNodes[0]}; + var scripts = (document.documentElement || document).getElementsByTagName("script"); + var namePattern = new RegExp("(^|/)"+BASENAME+"\\.js(\\?.*)?$"); + for (var i = scripts.length-1; i >= 0; i--) { + if ((scripts[i].src||"").match(namePattern)) { + STARTUP.script = scripts[i].innerHTML; + if (RegExp.$2) { + var params = RegExp.$2.substr(1).split(/\&/); + for (var j = 0, m = params.length; j < m; j++) { + var KV = params[j].match(/(.*)=(.*)/); + if (KV) {STARTUP.params[unescape(KV[1])] = unescape(KV[2])} + } + } + CONFIG.root = scripts[i].src.replace(/(^|\/)[^\/]*(\?.*)?$/,''); + break; + } + } + BASE.Ajax.config = CONFIG; + + var BROWSERS = { + isMac: (navigator.platform.substr(0,3) === "Mac"), + isPC: (navigator.platform.substr(0,3) === "Win"), + isMSIE: (window.ActiveXObject != null && window.clipboardData != null), + isFirefox: (navigator.userAgent.match(/Gecko/) != null && + navigator.userAgent.match(/KHTML/) == null), + isSafari: (navigator.userAgent.match(/ (Apple)?WebKit\//) != null && + (!window.chrome || window.chrome.loadTimes == null)), + isChrome: (window.chrome != null && window.chrome.loadTimes != null), + isOpera: (window.opera != null && window.opera.version != null), + isKonqueror: (window.hasOwnProperty && window.hasOwnProperty("konqueror") && navigator.vendor == "KDE"), + versionAtLeast: function (v) { + var bv = (this.version).split('.'); v = (new String(v)).split('.'); + for (var i = 0, m = v.length; i < m; i++) + {if (bv[i] != v[i]) {return parseInt(bv[i]||"0") >= parseInt(v[i])}} + return true; + }, + Select: function (choices) { + var browser = choices[HUB.Browser]; + if (browser) {return browser(HUB.Browser)} + return null; + } + }; + + var AGENT = navigator.userAgent + .replace(/^Mozilla\/(\d+\.)+\d+ /,"") // remove initial Mozilla, which is never right + .replace(/[a-z][-a-z0-9._: ]+\/\d+[^ ]*-[^ ]*\.([a-z][a-z])?\d+ /i,"") // remove linux version + .replace(/Gentoo |Ubuntu\/(\d+\.)*\d+ (\([^)]*\) )?/,""); // special case for these + + HUB.Browser = HUB.Insert(HUB.Insert(new String("Unknown"),{version: "0.0"}),BROWSERS); + for (var browser in BROWSERS) {if (BROWSERS.hasOwnProperty(browser)) { + if (BROWSERS[browser] && browser.substr(0,2) === "is") { + browser = browser.slice(2); + if (browser === "Mac" || browser === "PC") continue; + HUB.Browser = HUB.Insert(new String(browser),BROWSERS); + var VERSION = new RegExp( + ".*(Version)/((?:\\d+\\.)+\\d+)|" + // for Safari and Opera10 + ".*("+browser+")"+(browser == "MSIE" ? " " : "/")+"((?:\\d+\\.)*\\d+)|"+ // for one of the main browser + "(?:^|\\(| )([a-z][-a-z0-9._: ]+|(?:Apple)?WebKit)/((?:\\d+\\.)+\\d+)"); // for unrecognized browser + var MATCH = VERSION.exec(AGENT) || ["","","","unknown","0.0"]; + HUB.Browser.name = (MATCH[1] == "Version" ? browser : (MATCH[3] || MATCH[5])); + HUB.Browser.version = MATCH[2] || MATCH[4] || MATCH[6]; + break; + } + }}; + + // + // Initial browser-specific info (e.g., touch up version or name) + // + HUB.Browser.Select({ + Safari: function (browser) { + var v = parseInt((String(browser.version).split("."))[0]); + if (v > 85) {browser.webkit = browser.version} + if (v >= 534) {browser.version = "5.1"} + else if (v >= 533) {browser.version = "5.0"} + else if (v >= 526) {browser.version = "4.0"} + else if (v >= 525) {browser.version = "3.1"} + else if (v > 500) {browser.version = "3.0"} + else if (v > 400) {browser.version = "2.0"} + else if (v > 85) {browser.version = "1.0"} + browser.isMobile = (navigator.appVersion.match(/Mobile/i) != null); + browser.noContextMenu = browser.isMobile; + }, + Firefox: function (browser) { + if ((browser.version === "0.0" || navigator.userAgent.match(/Firefox/) == null) && + navigator.product === "Gecko") { + var rv = navigator.userAgent.match(/[\/ ]rv:(\d+\.\d.*?)[\) ]/); + if (rv) {browser.version = rv[1]} + else { + var date = (navigator.buildID||navigator.productSub||"0").substr(0,8); + if (date >= "20111220") {browser.version = "9.0"} + else if (date >= "20111120") {browser.version = "8.0"} + else if (date >= "20110927") {browser.version = "7.0"} + else if (date >= "20110816") {browser.version = "6.0"} + else if (date >= "20110621") {browser.version = "5.0"} + else if (date >= "20110320") {browser.version = "4.0"} + else if (date >= "20100121") {browser.version = "3.6"} + else if (date >= "20090630") {browser.version = "3.5"} + else if (date >= "20080617") {browser.version = "3.0"} + else if (date >= "20061024") {browser.version = "2.0"} + } + } + browser.isMobile = (navigator.appVersion.match(/Android/i) != null || + navigator.userAgent.match(/ Fennec\//) != null || + navigator.userAgent.match(/Mobile/) != null); + }, + Opera: function (browser) {browser.version = opera.version()}, + MSIE: function (browser) { + browser.isIE9 = !!(document.documentMode && (window.performance || window.msPerformance)); + MathJax.HTML.setScriptBug = !browser.isIE9 || document.documentMode < 9; + var MathPlayer = false; + try {new ActiveXObject("MathPlayer.Factory.1"); browser.hasMathPlayer = MathPlayer = true} + catch (err) {} + try { + if (MathPlayer && !STARTUP.params.NoMathPlayer) { + var mathplayer = document.createElement("object"); + mathplayer.id = "mathplayer"; mathplayer.classid = "clsid:32F66A20-7614-11D4-BD11-00104BD3F987"; + document.getElementsByTagName("head")[0].appendChild(mathplayer); + document.namespaces.add("m","http://www.w3.org/1998/Math/MathML"); + browser.mpNamespace = true; + if (document.readyState && (document.readyState === "loading" || + document.readyState === "interactive")) { + document.write(''); + browser.mpImported = true; + } + } else { + // Adding any namespace avoids a crash in IE9 in IE9-standards mode + // (any reference to document.namespaces before document.readyState is + // "complete" causes an "unspecified error" to be thrown) + document.namespaces.add("mjx_IE_fix","http://www.w3.org/1999/xlink"); + } + } catch (err) {} + } + }); + HUB.Browser.Select(MathJax.Message.browsers); + + if (BASE.AuthorConfig && typeof BASE.AuthorConfig.AuthorInit === "function") {BASE.AuthorConfig.AuthorInit()} + HUB.queue = BASE.Callback.Queue(); + HUB.queue.Push( + ["Post",STARTUP.signal,"Begin"], + ["Config",STARTUP], + ["Cookie",STARTUP], + ["Styles",STARTUP], + ["Message",STARTUP], + function () { + // Do Jax and Extensions in parallel, but wait for them all to complete + var queue = BASE.Callback.Queue( + STARTUP.Jax(), + STARTUP.Extensions() + ); + return queue.Push({}); + }, + ["Menu",STARTUP], + STARTUP.onLoad(), + function () {MathJax.isReady = true}, // indicates that MathJax is ready to process math + ["Typeset",STARTUP], + ["Hash",STARTUP], + ["MenuZoom",STARTUP], + ["Post",STARTUP.signal,"End"] + ); + +})("MathJax"); + +}} diff --git a/modules/MathJax/unpacked/extensions/FontWarnings.js b/modules/MathJax/unpacked/extensions/FontWarnings.js new file mode 100644 index 0000000..cb5aa1d --- /dev/null +++ b/modules/MathJax/unpacked/extensions/FontWarnings.js @@ -0,0 +1,313 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/FontWarnings.js + * + * Implements a font warning message window that appears when + * the image fonts, no fonts, or web fonts are used, informing + * the user where to download the fonts, or to update to a more + * modern browser. The window will fade out automatically after + * a time, and the user can dismiss it by a close box. + * + * To include font warning messages, add "FontWarnings.js" to the + * extensions array in your MathJax configuration. + * + * You can customize the warning messages in a number of ways. Use the + * FontWarnings section of the configuration to specify any of the items + * shown in the CONFIG variable below. These include + * + * messageStyle the style to apply to the warning box that is + * displayed when MathJax uses one of its fallback + * methods. + * + * removeAfter the amount of time to show the warning message (in ms) + * fadeoutTime how long the message should take to fade out + * fadeoutSteps how many separate steps to use during the fade out + * (set to 0 to use no fadeout and simply remove the window) + * + * Messages stores the descriptions of the messages to use for the + * various warnings (webFonts, imageFonts, and noFonts). + * These are arrays of strings to be inserted into the window, + * or identifiers within brackets, which refer to the HTML + * snippets in the HTML section described below. To disable a + * specific message, set its value to null (see example below). + * + * HTML stores snippets of HTML descriptions for various + * common parts of the error messages. These include + * the closeBox, the message about web fonts being available + * in modern browser, and messages about downloadable fonts. + * The STIX and TeX font messages are used when only one + * of these is in the availableFonts list. The data for these + * are arrays of either strings to include or a description of + * an HTML item enclosed in square brackets. That description + * has (up to) three parts: the name of the tag to be included, + * a list (enclosed in braces) of attributes and their values + * to be set on the tag (optional), and an array of the contents + * of the tag (optional). See the definitions below for examples. + * + * For example, + * + * MathJax.Hub.Config({ + * ... + * extensions: ["FontWarnings.js"], + * FontWarnings: { + * removeAfter: 20*1000, // 20 seconds + * messageStyle: { + * border: "2px solid black", + * padding: "2em" + * }, + * Message: { + * webFont: null // no webfont messages (only image and no fonts) + * } + * } + * }); + * + * would extend the time the message is displayed from 12 seconds to 20, + * and changes the border to a solid black one, with 2em of padding + * rather than the default of 1em. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HUB,HTML) { + var VERSION = "2.3"; + + var STIXURL = "http://www.stixfonts.org/"; + var MATHJAXURL = "https://github.com/mathjax/MathJax/tree/master/fonts/HTML-CSS/TeX/otf"; + + var CONFIG = HUB.CombineConfig("FontWarnings",{ + // + // The CSS for the message window + // + messageStyle: { + position:"fixed", bottom:"4em", left:"3em", width:"40em", + border: "3px solid #880000", "background-color": "#E0E0E0", color: "black", + padding: "1em", "font-size":"small", "white-space":"normal", + + "border-radius": ".75em", // Opera 10.5 and IE9 + "-webkit-border-radius": ".75em", // Safari and Chrome + "-moz-border-radius": ".75em", // Firefox + "-khtml-border-radius": ".75em", // Konqueror + + "box-shadow": "4px 4px 10px #AAAAAA", // Opera 10.5 and IE9 + "-webkit-box-shadow": "4px 4px 10px #AAAAAA", // Safari 3 and Chrome + "-moz-box-shadow": "4px 4px 10px #AAAAAA", // Forefox 3.5 + "-khtml-box-shadow": "4px 4px 10px #AAAAAA", // Konqueror + filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=3, OffY=3, Color='gray', Positive='true')" // IE + }, + + // + // The messages for the various situations + // + Message: { + + webFont: [ + ["closeBox"], + ["webFont", + "MathJax is using web-based fonts to display the mathematics "+ + "on this page. These take time to download, so the page would "+ + "render faster if you installed math fonts directly in your "+ + "system's font folder."], + ["fonts"] + ], + + imageFonts: [ + ["closeBox"], + ["imageFonts", + "MathJax is using its image fonts rather than local or web-based fonts. "+ + "This will render slower than usual, and the mathematics may not print "+ + "at the full resolution of your printer."], + ["fonts"], + ["webFonts"] + ], + + noFonts: [ + ["closeBox"], + ["noFonts", + "MathJax is unable to locate a font to use to display "+ + "its mathematics, and image fonts are not available, so it "+ + "is falling back on generic unicode characters in hopes that "+ + "your browser will be able to display them. Some characters "+ + "may not show up properly, or possibly not at all."], + ["fonts"], + ["webFonts"] + ] + }, + + // + // HTML objects that can be referred to in the message definitions + // + HTML: { + // + // The definition of the close box + // + closeBox: [[ + "div",{ + style: { + position:"absolute", overflow:"hidden", top:".1em", right:".1em", + border: "1px outset", width:"1em", height:"1em", + "text-align": "center", cursor: "pointer", + "background-color": "#EEEEEE", color:"#606060", + + "border-radius": ".5em", // Opera 10.5 + "-webkit-border-radius": ".5em", // Safari and Chrome + "-moz-border-radius": ".5em", // Firefox + "-khtml-border-radius": ".5em" // Konqueror + }, + onclick: function () { + if (DATA.div && DATA.fade === 0) + {if (DATA.timer) {clearTimeout(DATA.timer)}; DATA.div.style.display = "none"} + } + }, + [["span",{style:{position:"relative", bottom:".2em"}},["x"]]] + ]], + + webFonts: [ + ["p"], + ["webFonts", + "Most modern browsers allow for fonts to be downloaded over the web. "+ + "Updating to a more recent version of your browser (or changing "+ + "browsers) could improve the quality of the mathematics on this page." + ] + ], + + fonts: [ + ["p"], + ["fonts", + "MathJax can use either the [STIX fonts](%1) or the [MathJax TeX fonts](%2). " + + "Download and install one of those fonts to improve your MathJax experience.", + STIXURL,MATHJAXURL + ] + ], + + STIXfonts: [ + ["p"], + ["STIXPage", + "This page is designed to use the [STIX fonts](%1). " + + "Download and install those fonts to improve your MathJax experience.", + STIXURL + ] + ], + + TeXfonts: [ + ["p"], + ["TeXPage", + "This page is designed to use the [MathJax TeX fonts](%1). " + + "Download and install those fonts to improve your MathJax experience.", + MATHJAXURL + ] + ] + + }, + + removeAfter: 12*1000, // time to show message (in ms) + fadeoutSteps: 10, // fade-out steps + fadeoutTime: 1.5*1000 // fadeout over this amount of time (in ms) + + }); + if (MathJax.Hub.Browser.isIE9 && document.documentMode >= 9) + {delete CONFIG.messageStyle.filter} + + // + // Data for the window + // + var DATA = { + div: null, // the message window, when displayed + fade: 0 // number of fade-out steps so far + }; + + // + // Create the message window and start the fade-out timer + // + var CREATEMESSAGE = function (data) { + if (DATA.div) return; + var HTMLCSS = MathJax.OutputJax["HTML-CSS"], frame = document.body; + if (HUB.Browser.isMSIE) { + if (CONFIG.messageStyle.position === "fixed") { + MathJax.Message.Init(); // make sure MathJax_MSIE_frame exists + frame = document.getElementById("MathJax_MSIE_Frame"); + CONFIG.messageStyle.position = "absolute"; + } + } else {delete CONFIG.messageStyle.filter} + CONFIG.messageStyle.maxWidth = (document.body.clientWidth-75) + "px"; + var i = 0; while (i < data.length) { + if (data[i] instanceof Array) { + if (data[i].length === 1 && CONFIG.HTML[data[i][0]]) { + data.splice.apply(data,[i,1].concat(CONFIG.HTML[data[i][0]])); + } else if (typeof data[i][1] === "string") { + var message = MathJax.Localization.lookupPhrase(["FontWarnings",data[i][0]],data[i][1]); + message = MathJax.Localization.processMarkdown(message,data[i].slice(2),"FontWarnings"); + data.splice.apply(data,[i,1].concat(message)); + i += message.length; + } else {i++} + } else {i++} + } + DATA.div = HTMLCSS.addElement(frame,"div", + {id:"MathJax_FontWarning",style:CONFIG.messageStyle},data); + MathJax.Localization.setCSS(DATA.div); + if (CONFIG.removeAfter) { + HUB.Register.StartupHook("End",function () + {DATA.timer = setTimeout(FADEOUT,CONFIG.removeAfter)}); + } + HTML.Cookie.Set("fontWarn",{warned:true}); + }; + + // + // Set the opacity based on the number of steps taken so far + // and remove the window when it gets to 0 + // + var FADEOUT = function () { + DATA.fade++; if (DATA.timer) {delete DATA.timer} + if (DATA.fade < CONFIG.fadeoutSteps) { + var opacity = 1 - DATA.fade/CONFIG.fadeoutSteps; + DATA.div.style.opacity = opacity; + DATA.div.style.filter = "alpha(opacity="+Math.floor(100*opacity)+")"; + setTimeout(FADEOUT,CONFIG.fadeoutTime/CONFIG.fadeoutSteps); + } else { + DATA.div.style.display = "none"; + } + }; + + // + // Check that we haven't already issued a warning + // + if (!HTML.Cookie.Get("fontWarn").warned) { + // + // Hook into the Startup signal and look for font warning messages. + // When one comes, issue the correct message. + // + HUB.Startup.signal.Interest(function (message) { + if (message.match(/HTML-CSS Jax - /) && !DATA.div) { + var HTMLCSS = MathJax.OutputJax["HTML-CSS"], FONTS = HTMLCSS.config.availableFonts, MSG; + var localFonts = (FONTS && FONTS.length); + if (!localFonts) {CONFIG.HTML.fonts = [""]} + else if (FONTS.length === 1) {CONFIG.HTML.fonts = CONFIG.HTML[FONTS[0]+"fonts"]} + if (HTMLCSS.allowWebFonts) {CONFIG.HTML.webfonts = [""]} + if (message.match(/- Web-Font/)) {if (localFonts) {MSG = "webFont"}} + else if (message.match(/- using image fonts/)) {MSG = "imageFonts"} + else if (message.match(/- no valid font/)) {MSG = "noFonts"} + if (MSG && CONFIG.Message[MSG]) + {MathJax.Localization.loadDomain("FontWarnings",[CREATEMESSAGE,CONFIG.Message[MSG]])} + } + }); + } + +})(MathJax.Hub,MathJax.HTML); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/extensions/HTML-CSS/handle-floats.js b/modules/MathJax/unpacked/extensions/HTML-CSS/handle-floats.js new file mode 100644 index 0000000..5a84191 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/HTML-CSS/handle-floats.js @@ -0,0 +1,82 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/HTML-CSS/handle-floats.js + * + * This extension allows HTML-CSS output to deal with floating elements + * better. In particular, when there are tags or equation numbers, these + * would overlap floating elements, but with this extension, the width of + * the line should properly correspond to the amount of space remaining. + * + * To load it, include + * + * "HTML-CSS": { + * extensions: ["handle-floats.js"] + * } + * + * in your configuration. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2012-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +MathJax.Extension["HTML-CSS/handle-floats"] = { + version: "2.3" +}; + +// +// Make the display DIV be a table-cell +// Use padding to get the separation, since table cells don't do margin +// Make the width large (it will shrink to fit the remaining room) +// +MathJax.Hub.Config({ + "HTML-CSS": { + styles: { + ".MathJax_Display": { + display: "table-cell", + padding: "1em 0 ! important", + width: (MathJax.Hub.Browser.isMSIE && (document.documentMode||0) < 8 ? "100%" : "1000em") + } + } + } +}); + +// +// Two consecutive equations would end up side-by-side, so force a separator +// (Needed by IE8, IE9, and Firefox, at least). +// +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var HTMLCSS = MathJax.OutputJax["HTML-CSS"], + TRANSLATE = HTMLCSS.Translate; + HTMLCSS.Augment({ + Translate: function (script,state) { + TRANSLATE.call(this,script,state); + if (script.MathJax.elementJax.HTMLCSS.display) { + var next = script.nextSibling; + if (!next || next.className !== "MathJax_MSIE_Separator") { + var span = HTMLCSS.Element("span",{className:"MathJax_MSIE_Separator"}); + script.parentNode.insertBefore(span,next); + } + } + } + }); + MathJax.Hub.Startup.signal.Post("HTML-CSS handle-floats Ready"); +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/HTML-CSS/handle-floats.js"); diff --git a/modules/MathJax/unpacked/extensions/HelpDialog.js b/modules/MathJax/unpacked/extensions/HelpDialog.js new file mode 100644 index 0000000..4d22fa6 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/HelpDialog.js @@ -0,0 +1,154 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/HelpDialog.js + * + * Implements the MathJax Help dialog box. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HUB,HTML,AJAX,OUTPUT,LOCALE) { + + var HELP = MathJax.Extension.Help = { + version: "2.3" + }; + + var STIXURL = "http://www.stixfonts.org/"; + var MENU = MathJax.Menu; + + var CONFIG = HUB.CombineConfig("HelpDialog",{ + closeImg: AJAX.fileURL(OUTPUT.imageDir+"/CloseX-31.png"), // image for close "X" for mobiles + + styles: { + "#MathJax_Help": { + position:"fixed", left:"50%", width:"auto", "max-width": "90%", "text-align":"center", + border:"3px outset", padding:"1em 2em", "background-color":"#DDDDDD", color:"black", + cursor: "default", "font-family":"message-box", "font-size":"120%", + "font-style":"normal", "text-indent":0, "text-transform":"none", + "line-height":"normal", "letter-spacing":"normal", "word-spacing":"normal", + "word-wrap":"normal", "white-space":"wrap", "float":"none", "z-index":201, + + "border-radius": "15px", // Opera 10.5 and IE9 + "-webkit-border-radius": "15px", // Safari and Chrome + "-moz-border-radius": "15px", // Firefox + "-khtml-border-radius": "15px", // Konqueror + + "box-shadow":"0px 10px 20px #808080", // Opera 10.5 and IE9 + "-webkit-box-shadow":"0px 10px 20px #808080", // Safari 3 and Chrome + "-moz-box-shadow":"0px 10px 20px #808080", // Forefox 3.5 + "-khtml-box-shadow":"0px 10px 20px #808080", // Konqueror + filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')" // IE + }, + + "#MathJax_HelpContent": { + overflow:"auto", "text-align":"left", "font-size":"80%", + padding:".4em .6em", border:"1px inset", margin:"1em 0px", + "max-height":"20em", "max-width":"30em", "background-color":"#EEEEEE" + } + } + }); + + /* + * Handle the Help Dialog box + */ + HELP.Dialog = function () { + LOCALE.loadDomain("HelpDialog",["Post",HELP]); + }; + + HELP.Post = function () { + this.div = MENU.Background(this); + var help = HTML.addElement(this.div,"div",{ + id: "MathJax_Help" + },LOCALE._("HelpDialog",[ + ["b",{style:{fontSize:"120%"}},[["Help","MathJax Help"]]], + ["div",{id: "MathJax_HelpContent"},[ + ["p",{},[["MathJax", + "*MathJax* is a JavaScript library that allows page authors to include " + + "mathematics within their web pages. As a reader, you don't need to do " + + "anything to make that happen."]] + ], + ["p",{},[["Browsers", + "*Browsers*: MathJax works with all modern browsers including IE6+, Firefox 3+, " + + "Chrome 0.2+, Safari 2+, Opera 9.6+ and most mobile browsers."]] + ], + ["p",{},[["Menu", + "*Math Menu*: MathJax adds a contextual menu to equations. Right-click or " + + "CTRL-click on any mathematics to access the menu."]] + ], + ["div",{style:{"margin-left":"1em"}},[ + ["p",{},[["ShowMath", + "*Show Math As* allows you to view the formula's source markup " + + "for copy & paste (as MathML or in its origianl format)."]] + ], + ["p",{},[["Settings", + "*Settings* gives you control over features of MathJax, such as the " + + "size of the mathematics, and the mechanism used to display equations."]] + ], + ["p",{},[["Language", + "*Language* lets you select the language used by MathJax for its menus " + + "and warning messages."]] + ], + ]], + ["p",{},[["Zoom", + "*Math Zoom*: If you are having difficulty reading an equation, MathJax can " + + "enlarge it to help you see it better."]] + ], + ["p",{},[["Accessibilty", + "*Accessibility*: MathJax will automatically work with screen readers to make " + + "mathematics accessible to the visually impaired."]] + ], + ["p",{},[["Fonts", + "*Fonts*: MathJax will use certain math fonts if they are installed on your " + + "computer; otherwise, it will use web-based fonts. Although not required, " + + "locally installed fonts will speed up typesetting. We suggest installing " + + "the [STIX fonts](%1).",STIXURL]] + ] + ]], + ["a",{href:"http://www.mathjax.org/"},["www.mathjax.org"]], + ["img", { + src: CONFIG.closeImg, + style: {width:"21px", height:"21px", position:"absolute", top:".2em", right:".2em"}, + onclick: HELP.Remove + }] + ])); + LOCALE.setCSS(help); + var doc = (document.documentElement||{}); + var H = window.innerHeight || doc.clientHeight || doc.scrollHeight || 0; + if (MENU.prototype.msieAboutBug) { + help.style.width = "20em"; help.style.position = "absolute"; + help.style.left = Math.floor((document.documentElement.scrollWidth - help.offsetWidth)/2)+"px"; + help.style.top = (Math.floor((H-help.offsetHeight)/3)+document.body.scrollTop)+"px"; + } else { + help.style.marginLeft = Math.floor(-help.offsetWidth/2)+"px"; + help.style.top = Math.floor((H-help.offsetHeight)/3)+"px"; + } + }; + HELP.Remove = function (event) { + if (HELP.div) {document.body.removeChild(HELP.div); delete HELP.div} + }; + + MathJax.Callback.Queue( + HUB.Register.StartupHook("End Config",{}), // wait until config is complete + ["Styles",AJAX,CONFIG.styles], + ["Post",HUB.Startup.signal,"HelpDialig Ready"], + ["loadComplete",AJAX,"[MathJax]/extensions/HelpDialog.js"] + ); + +})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax,MathJax.Localization); diff --git a/modules/MathJax/unpacked/extensions/MatchWebFonts.js b/modules/MathJax/unpacked/extensions/MatchWebFonts.js new file mode 100644 index 0000000..a6ae643 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/MatchWebFonts.js @@ -0,0 +1,309 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/MatchWebFonts.js + * + * Adds code to the output jax so that if web fonts are used on the page, + * MathJax will be able to detect their arrival and update the math to + * accommodate the change in font. For the NativeMML output, this works + * both for web fonts in main text, and for web fonts in the math as well. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HUB,AJAX) { + var VERSION = "2.3"; + + var CONFIG = MathJax.Hub.CombineConfig("MatchWebFonts",{ + matchFor: { + "HTML-CSS": true, + NativeMML: true, + SVG: true + }, + fontCheckDelay: 500, // initial delay for the first check for web fonts + fontCheckTimeout: 15 * 1000, // how long to keep looking for fonts (15 seconds) + }); + + var MATCH = MathJax.Extension.MatchWebFonts = { + version: VERSION, + config: CONFIG + }; + + HUB.Register.StartupHook("HTML-CSS Jax Ready",function () { + var HTMLCSS = MathJax.OutputJax["HTML-CSS"]; + var POSTTRANSLATE = HTMLCSS.postTranslate; + + HTMLCSS.Augment({ + postTranslate: function (state,partial) { + if (!partial && CONFIG.matchFor["HTML-CSS"] && this.config.matchFontHeight) { + // + // Check for changes in the web fonts that might affect the font + // size for math elements. This is a periodic check that goes on + // until a timeout is reached. + // + AJAX.timer.start(AJAX,["checkFonts",this,state.jax[this.id]], + CONFIG.fontCheckDelay,CONFIG.fontCheckTimeout); + } + return POSTTRANSLATE.apply(this,arguments); // do the original function + }, + + checkFonts: function (check,scripts) { + if (check.time(function () {})) return; + var size = [], i, m, retry = false; + // + // Add the elements used for testing ex and em sizes + // + for (i = 0, m = scripts.length; i < m; i++) { + script = scripts[i]; + if (script.parentNode && script.MathJax.elementJax) { + script.parentNode.insertBefore(this.EmExSpan.cloneNode(true),script); + } + } + // + // Check to see if anything has changed + // + for (i = 0, m = scripts.length; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; retry = true; + var jax = script.MathJax.elementJax; if (!jax) continue; + var span = document.getElementById(jax.inputID+"-Frame"); + // + // Check if ex or mex has changed + // + var test = script.previousSibling; + var ex = test.firstChild.offsetHeight/60; + var em = test.lastChild.lastChild.offsetHeight/60; + if (ex === 0 || ex === "NaN") {ex = this.defaultEx; em = this.defaultEm} + if (ex !== jax.HTMLCSS.ex || em !== jax.HTMLCSS.em) { + var scale = ex/this.TeX.x_height/em; + scale = Math.floor(Math.max(this.config.minScaleAdjust/100,scale)*this.config.scale); + if (scale/100 !== jax.scale) {size.push(script); scripts[i] = {}} + } + } + // + // Remove markers + // + for (i = 0, m = scripts.length; i < m; i++) { + script = scripts[i]; + if (script.parentNode && script.MathJax.elementJax) { + script.parentNode.removeChild(script.previousSibling); + } + } + // + // Rerender the changed items + // + if (size.length) {HUB.Queue(["Rerender",HUB,[size],{}])} + // + // Try again later + // + if (retry) {setTimeout(check,check.delay)} + } + }); + }); + + HUB.Register.StartupHook("SVG Jax Ready",function () { + var SVG = MathJax.OutputJax.SVG; + var POSTTRANSLATE = SVG.postTranslate; + + SVG.Augment({ + postTranslate: function (state,partial) { + if (!partial && CONFIG.matchFor.SVG) { + // + // Check for changes in the web fonts that might affect the font + // size for math elements. This is a periodic check that goes on + // until a timeout is reached. + // + AJAX.timer.start(AJAX,["checkFonts",this,state.jax[this.id]], + CONFIG.fontCheckDelay,CONFIG.fontCheckTimeout); + } + return POSTTRANSLATE.apply(this,arguments); // do the original function + }, + + checkFonts: function (check,scripts) { + if (check.time(function () {})) return; + var size = [], i, m, retry = false; + // + // Add the elements used for testing ex and em sizes + // + for (i = 0, m = scripts.length; i < m; i++) { + script = scripts[i]; + if (script.parentNode && script.MathJax.elementJax) { + script.parentNode.insertBefore(this.ExSpan.cloneNode(true),script); + } + } + // + // Check to see if anything has changed + // + for (i = 0, m = scripts.length; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; retry = true; + var jax = script.MathJax.elementJax; if (!jax) continue; + var span = document.getElementById(jax.inputID+"-Frame"); + // + // Check if ex or mex has changed + // + var test = script.previousSibling; + var ex = test.firstChild.offsetHeight/60; + if (ex === 0 || ex === "NaN") {ex = this.defaultEx; em = this.defaultEm} + if (ex !== jax.SVG.ex) {size.push(script); scripts[i] = {}} + } + // + // Remove markers + // + for (i = 0, m = scripts.length; i < m; i++) { + script = scripts[i]; + if (script.parentNode && script.MathJax.elementJax) { + script.parentNode.removeChild(script.previousSibling); + } + } + // + // Rerender the changed items + // + if (size.length) {HUB.Queue(["Rerender",HUB,[size],{}])} + // + // Try again later (if not all the scripts are null) + // + + if (retry) setTimeout(check,check.delay); + } + }); + }); + + HUB.Register.StartupHook("NativeMML Jax Ready",function () { + var nMML = MathJax.OutputJax.NativeMML; + var POSTTRANSLATE = nMML.postTranslate; + + nMML.Augment({ + postTranslate: function (state) { + if (!HUB.Browser.isMSIE && CONFIG.matchFor.NativeMML) { + // + // Check for changes in the web fonts that might affect the sizes + // of math elements. This is a periodic check that goes on until + // a timeout is reached. + // + AJAX.timer.start(AJAX,["checkFonts",this,state.jax[this.id]], + CONFIG.fontCheckDelay,CONFIG.fontCheckTimeout); + } + POSTTRANSLATE.apply(this,arguments); // do the original routine + }, + + // + // Check to see if web fonts have been loaded that change the ex size + // of the surrounding font, the ex size within the math, or the widths + // of math elements. We do this by rechecking the ex and mex sizes + // (to see if the font scaling needs adjusting) and by checking the + // size of the inner mrow of math elements and mtd elements. The + // sizes of these have been stored in the NativeMML object of the + // element jax so that we can check for them here. + // + checkFonts: function (check,scripts) { + if (check.time(function () {})) return; + var adjust = [], mtd = [], size = [], i, m, script; + // + // Add the elements used for testing ex and em sizes + // + for (i = 0, m = scripts.length; i < m; i++) { + script = scripts[i]; + if (script.parentNode && script.MathJax.elementJax) { + script.parentNode.insertBefore(this.EmExSpan.cloneNode(true),script); + } + } + // + // Check to see if anything has changed + // + for (i = 0, m = scripts.length; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; + var jax = script.MathJax.elementJax; if (!jax) continue; + var span = document.getElementById(jax.inputID+"-Frame"); + var math = span.getElementsByTagName("math")[0]; if (!math) continue; + jax = jax.NativeMML; + // + // Check if ex or mex has changed + // + var test = script.previousSibling; + var ex = test.firstChild.offsetWidth/60; + var mex = test.lastChild.offsetWidth/60; + if (ex === 0 || ex === "NaN") {ex = this.defaultEx; mex = this.defaultMEx} + var newEx = (ex !== jax.ex); + if (newEx || mex != jax.mex) { + var scale = (this.config.matchFontHeight && mex > 1 ? ex/mex : 1); + scale = Math.floor(Math.max(this.config.minScaleAdjust/100,scale) * this.config.scale); + if (scale/100 !== jax.scale) {size.push([span.style,scale])} + jax.scale = scale/100; jax.fontScale = scale+"%"; jax.ex = ex; jax.mex = mex; + } + + // + // Check width of math elements + // + if ("scrollWidth" in jax && (newEx || jax.scrollWidth !== math.firstChild.scrollWidth)) { + jax.scrollWidth = math.firstChild.scrollWidth; + adjust.push([math.parentNode.style,jax.scrollWidth/jax.ex/jax.scale]); + } + // + // Check widths of mtd elements + // + if (math.MathJaxMtds) { + for (j = 0, n = math.MathJaxMtds.length; j < n; j++) { + if (!math.MathJaxMtds[j].parentNode) continue; + if (newEx || math.MathJaxMtds[j].firstChild.scrollWidth !== jax.mtds[j]) { + jax.mtds[j] = math.MathJaxMtds[j].firstChild.scrollWidth; + mtd.push([math.MathJaxMtds[j],jax.mtds[j]/jax.ex]); + } + } + } + } + // + // Remove markers + // + for (i = 0, m = scripts.length; i < m; i++) { + script = scripts[i]; + if (script.parentNode && script.MathJax.elementJax) { + script.parentNode.removeChild(script.previousSibling); + } + } + // + // Adjust scaling factor + // + for (i = 0, m = size.length; i < m; i++) { + size[i][0].fontSize = size[i][1] + "%"; + } + // + // Adjust width of spans containing math elements that have changed + // + for (i = 0, m = adjust.length; i < m; i++) { + adjust[i][0].width = adjust[i][1].toFixed(3)+"ex"; + } + // + // Adjust widths of mtd elements that have changed + // + for (i = 0, m = mtd.length; i < m; i++) { + var style = mtd[i][0].getAttribute("style"); + style = style.replace(/(($|;)\s*min-width:).*?ex/,"$1 "+mtd[i][1].toFixed(3)+"ex"); + mtd[i][0].setAttribute("style",style); + } + // + // Try again later + // + setTimeout(check,check.delay); + } + }); + }); + + HUB.Startup.signal.Post("MathWebFont Extension Ready"); + AJAX.loadComplete("[MathJax]/extensions/MatchWebFonts.js"); + +})(MathJax.Hub,MathJax.Ajax); diff --git a/modules/MathJax/unpacked/extensions/MathEvents.js b/modules/MathJax/unpacked/extensions/MathEvents.js new file mode 100644 index 0000000..d107595 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/MathEvents.js @@ -0,0 +1,569 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/MathEvents.js + * + * Implements the event handlers needed by the output jax to perform + * menu, hover, and other events. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HUB,HTML,AJAX,CALLBACK,LOCALE,OUTPUT,INPUT) { + var VERSION = "2.3"; + + var EXTENSION = MathJax.Extension; + var ME = EXTENSION.MathEvents = {version: VERSION}; + + var SETTINGS = HUB.config.menuSettings; + + var CONFIG = { + hover: 500, // time required to be considered a hover + frame: { + x: 3.5, y: 5, // frame padding and + bwidth: 1, // frame border width (in pixels) + bcolor: "#A6D", // frame border color + hwidth: "15px", // haze width + hcolor: "#83A" // haze color + }, + button: { + x: -4, y: -3, // menu button offsets + wx: -2, // button offset for full-width equations + src: AJAX.fileURL(OUTPUT.imageDir+"/MenuArrow-15.png") // button image + }, + fadeinInc: .2, // increment for fade-in + fadeoutInc: .05, // increment for fade-out + fadeDelay: 50, // delay between fade-in or fade-out steps + fadeoutStart: 400, // delay before fade-out after mouseout + fadeoutDelay: 15*1000, // delay before automatic fade-out + + styles: { + ".MathJax_Hover_Frame": { + "border-radius": ".25em", // Opera 10.5 and IE9 + "-webkit-border-radius": ".25em", // Safari and Chrome + "-moz-border-radius": ".25em", // Firefox + "-khtml-border-radius": ".25em", // Konqueror + + "box-shadow": "0px 0px 15px #83A", // Opera 10.5 and IE9 + "-webkit-box-shadow": "0px 0px 15px #83A", // Safari and Chrome + "-moz-box-shadow": "0px 0px 15px #83A", // Forefox + "-khtml-box-shadow": "0px 0px 15px #83A", // Konqueror + + border: "1px solid #A6D ! important", + display: "inline-block", position:"absolute" + }, + + ".MathJax_Hover_Arrow": { + position:"absolute", + width:"15px", height:"11px", + cursor:"pointer" + } + } + }; + + + // + // Common event-handling code + // + var EVENT = ME.Event = { + + LEFTBUTTON: 0, // the event.button value for left button + RIGHTBUTTON: 2, // the event.button value for right button + MENUKEY: "altKey", // the event value for alternate context menu + + Mousedown: function (event) {return EVENT.Handler(event,"Mousedown",this)}, + Mouseup: function (event) {return EVENT.Handler(event,"Mouseup",this)}, + Mousemove: function (event) {return EVENT.Handler(event,"Mousemove",this)}, + Mouseover: function (event) {return EVENT.Handler(event,"Mouseover",this)}, + Mouseout: function (event) {return EVENT.Handler(event,"Mouseout",this)}, + Click: function (event) {return EVENT.Handler(event,"Click",this)}, + DblClick: function (event) {return EVENT.Handler(event,"DblClick",this)}, + Menu: function (event) {return EVENT.Handler(event,"ContextMenu",this)}, + + // + // Call the output jax's event handler or the zoom handler + // + Handler: function (event,type,math) { + if (AJAX.loadingMathMenu) {return EVENT.False(event)} + var jax = OUTPUT[math.jaxID]; + if (!event) {event = window.event} + event.isContextMenu = (type === "ContextMenu"); + if (jax[type]) {return jax[type](event,math)} + if (EXTENSION.MathZoom) {return EXTENSION.MathZoom.HandleEvent(event,type,math)} + }, + + // + // Try to cancel the event in every way we can + // + False: function (event) { + if (!event) {event = window.event} + if (event) { + if (event.preventDefault) {event.preventDefault()} + if (event.stopPropagation) {event.stopPropagation()} + event.cancelBubble = true; + event.returnValue = false; + } + return false; + }, + + // + // Load the contextual menu code, if needed, and post the menu + // + ContextMenu: function (event,math,force) { + // + // Check if we are showing menus + // + var JAX = OUTPUT[math.jaxID], jax = JAX.getJaxFromMath(math); + var show = (JAX.config.showMathMenu != null ? JAX : HUB).config.showMathMenu; + if (!show || (SETTINGS.context !== "MathJax" && !force)) return; + + // + // Remove selections, remove hover fades + // + if (ME.msieEventBug) {event = window.event || event} + EVENT.ClearSelection(); HOVER.ClearHoverTimer(); + if (jax.hover) { + if (jax.hover.remove) {clearTimeout(jax.hover.remove); delete jax.hover.remove} + jax.hover.nofade = true; + } + + // + // If the menu code is loaded, + // Check if localization needs loading; + // If not, post the menu, and return. + // Otherwise wait for the localization to load + // Otherwse load the menu code. + // Try again after the file is loaded. + // + var MENU = MathJax.Menu; var load, fn; + if (MENU) { + if (MENU.loadingDomain) {return EVENT.False(event)} + load = LOCALE.loadDomain("MathMenu"); + if (!load) { + MENU.jax = jax; + var source = MENU.menu.Find("Show Math As").menu; + source.items[0].name = jax.sourceMenuTitle; + source.items[0].format = (jax.sourceMenuFormat||"MathML"); + source.items[1].name = INPUT[jax.inputJax].sourceMenuTitle; + + // + // Try and find each known annotation format and enable the menu + // items accordingly. + // + var annotations = source.items[2]; annotations.disabled = true; + var annotationItems = annotations.menu.items; + annotationList = MathJax.Hub.Config.semanticsAnnotations; + for (var i = 0, m = annotationItems.length; i < m; i++) { + var name = annotationItems[i].name[1] + if (jax.root && jax.root.getAnnotation(name) !== null) { + annotations.disabled = false; + annotationItems[i].hidden = false; + } else { + annotationItems[i].hidden = true; + } + } + + var MathPlayer = MENU.menu.Find("Math Settings","MathPlayer"); + MathPlayer.hidden = !(jax.outputJax === "NativeMML" && HUB.Browser.hasMathPlayer); + return MENU.menu.Post(event); + } + MENU.loadingDomain = true; + fn = function () {delete MENU.loadingDomain}; + } else { + if (AJAX.loadingMathMenu) {return EVENT.False(event)} + AJAX.loadingMathMenu = true; + load = AJAX.Require("[MathJax]/extensions/MathMenu.js"); + fn = function () { + delete AJAX.loadingMathMenu; + if (!MathJax.Menu) {MathJax.Menu = {}} + } + } + var ev = { + pageX:event.pageX, pageY:event.pageY, + clientX:event.clientX, clientY:event.clientY + }; + CALLBACK.Queue( + load, fn, // load the file and delete the marker when done + ["ContextMenu",EVENT,ev,math,force] // call this function again + ); + return EVENT.False(event); + }, + + // + // Mousedown handler for alternate means of accessing menu + // + AltContextMenu: function (event,math) { + var JAX = OUTPUT[math.jaxID]; + var show = (JAX.config.showMathMenu != null ? JAX : HUB).config.showMathMenu; + if (show) { + show = (JAX.config.showMathMenuMSIE != null ? JAX : HUB).config.showMathMenuMSIE; + if (SETTINGS.context === "MathJax" && !SETTINGS.mpContext && show) { + if (!ME.noContextMenuBug || event.button !== EVENT.RIGHTBUTTON) return; + } else { + if (!event[EVENT.MENUKEY] || event.button !== EVENT.LEFTBUTTON) return; + } + return JAX.ContextMenu(event,math,true); + } + }, + + ClearSelection: function () { + if (ME.safariContextMenuBug) {setTimeout("window.getSelection().empty()",0)} + if (document.selection) {setTimeout("document.selection.empty()",0)} + }, + + getBBox: function (span) { + span.appendChild(ME.topImg); + var h = ME.topImg.offsetTop, d = span.offsetHeight-h, w = span.offsetWidth; + span.removeChild(ME.topImg); + return {w:w, h:h, d:d}; + } + + }; + + // + // Handle hover "discoverability" + // + var HOVER = ME.Hover = { + + // + // Check if we are moving from a non-MathJax element to a MathJax one + // and either start fading in again (if it is fading out) or start the + // timer for the hover + // + Mouseover: function (event,math) { + if (SETTINGS.discoverable || SETTINGS.zoom === "Hover") { + var from = event.fromElement || event.relatedTarget, + to = event.toElement || event.target; + if (from && to && (from.isMathJax != to.isMathJax || + HUB.getJaxFor(from) !== HUB.getJaxFor(to))) { + var jax = this.getJaxFromMath(math); + if (jax.hover) {HOVER.ReHover(jax)} else {HOVER.HoverTimer(jax,math)} + return EVENT.False(event); + } + } + }, + // + // Check if we are moving from a MathJax element to a non-MathJax one + // and either start fading out, or clear the timer if we haven't + // hovered yet + // + Mouseout: function (event,math) { + if (SETTINGS.discoverable || SETTINGS.zoom === "Hover") { + var from = event.fromElement || event.relatedTarget, + to = event.toElement || event.target; + if (from && to && (from.isMathJax != to.isMathJax || + HUB.getJaxFor(from) !== HUB.getJaxFor(to))) { + var jax = this.getJaxFromMath(math); + if (jax.hover) {HOVER.UnHover(jax)} else {HOVER.ClearHoverTimer()} + return EVENT.False(event); + } + } + }, + // + // Restart hover timer if the mouse moves + // + Mousemove: function (event,math) { + if (SETTINGS.discoverable || SETTINGS.zoom === "Hover") { + var jax = this.getJaxFromMath(math); if (jax.hover) return; + if (HOVER.lastX == event.clientX && HOVER.lastY == event.clientY) return; + HOVER.lastX = event.clientX; HOVER.lastY = event.clientY; + HOVER.HoverTimer(jax,math); + return EVENT.False(event); + } + }, + + // + // Clear the old timer and start a new one + // + HoverTimer: function (jax,math) { + this.ClearHoverTimer(); + this.hoverTimer = setTimeout(CALLBACK(["Hover",this,jax,math]),CONFIG.hover); + }, + ClearHoverTimer: function () { + if (this.hoverTimer) {clearTimeout(this.hoverTimer); delete this.hoverTimer} + }, + + // + // Handle putting up the hover frame + // + Hover: function (jax,math) { + // + // Check if Zoom handles the hover event + // + if (EXTENSION.MathZoom && EXTENSION.MathZoom.Hover({},math)) return; + // + // Get the hover data + // + var JAX = OUTPUT[jax.outputJax], + span = JAX.getHoverSpan(jax,math), + bbox = JAX.getHoverBBox(jax,span,math), + show = (JAX.config.showMathMenu != null ? JAX : HUB).config.showMathMenu; + var dx = CONFIG.frame.x, dy = CONFIG.frame.y, dd = CONFIG.frame.bwidth; // frame size + if (ME.msieBorderWidthBug) {dd = 0} + jax.hover = {opacity:0, id:jax.inputID+"-Hover"}; + // + // The frame and menu button + // + var frame = HTML.Element("span",{ + id:jax.hover.id, isMathJax: true, + style:{display:"inline-block", width:0, height:0, position:"relative"} + },[["span",{ + className:"MathJax_Hover_Frame", isMathJax: true, + style:{ + display:"inline-block", position:"absolute", + top:this.Px(-bbox.h-dy-dd-(bbox.y||0)), left:this.Px(-dx-dd+(bbox.x||0)), + width:this.Px(bbox.w+2*dx), height:this.Px(bbox.h+bbox.d+2*dy), + opacity:0, filter:"alpha(opacity=0)" + }} + ]] + ); + var button = HTML.Element("span",{ + isMathJax: true, id:jax.hover.id+"Menu", + style:{display:"inline-block", "z-index": 1, width:0, height:0, position:"relative"} + },[["img",{ + className: "MathJax_Hover_Arrow", isMathJax: true, math: math, + src: CONFIG.button.src, onclick: this.HoverMenu, jax:JAX.id, + style: { + left:this.Px(bbox.w+dx+dd+(bbox.x||0)+CONFIG.button.x), + top:this.Px(-bbox.h-dy-dd-(bbox.y||0)-CONFIG.button.y), + opacity:0, filter:"alpha(opacity=0)" + } + }]] + ); + if (bbox.width) { + frame.style.width = button.style.width = bbox.width; + frame.style.marginRight = button.style.marginRight = "-"+bbox.width; + frame.firstChild.style.width = bbox.width; + button.firstChild.style.left = ""; + button.firstChild.style.right = this.Px(CONFIG.button.wx); + } + // + // Add the frame and button + // + span.parentNode.insertBefore(frame,span); + if (show) {span.parentNode.insertBefore(button,span)} + if (span.style) {span.style.position = "relative"} // so math is on top of hover frame + // + // Start the hover fade-in + // + this.ReHover(jax); + }, + // + // Restart the hover fade in and fade-out timers + // + ReHover: function (jax) { + if (jax.hover.remove) {clearTimeout(jax.hover.remove)} + jax.hover.remove = setTimeout(CALLBACK(["UnHover",this,jax]),CONFIG.fadeoutDelay); + this.HoverFadeTimer(jax,CONFIG.fadeinInc); + }, + // + // Start the fade-out + // + UnHover: function (jax) { + if (!jax.hover.nofade) {this.HoverFadeTimer(jax,-CONFIG.fadeoutInc,CONFIG.fadeoutStart)} + }, + // + // Handle the fade-in and fade-out + // + HoverFade: function (jax) { + delete jax.hover.timer; + jax.hover.opacity = Math.max(0,Math.min(1,jax.hover.opacity + jax.hover.inc)); + jax.hover.opacity = Math.floor(1000*jax.hover.opacity)/1000; + var frame = document.getElementById(jax.hover.id), + button = document.getElementById(jax.hover.id+"Menu"); + frame.firstChild.style.opacity = jax.hover.opacity; + frame.firstChild.style.filter = "alpha(opacity="+Math.floor(100*jax.hover.opacity)+")"; + if (button) { + button.firstChild.style.opacity = jax.hover.opacity; + button.firstChild.style.filter = frame.style.filter; + } + if (jax.hover.opacity === 1) {return} + if (jax.hover.opacity > 0) {this.HoverFadeTimer(jax,jax.hover.inc); return} + frame.parentNode.removeChild(frame); + if (button) {button.parentNode.removeChild(button)} + if (jax.hover.remove) {clearTimeout(jax.hover.remove)} + delete jax.hover; + }, + // + // Set the fade to in or out (via inc) and start the timer, if needed + // + HoverFadeTimer: function (jax,inc,delay) { + jax.hover.inc = inc; + if (!jax.hover.timer) { + jax.hover.timer = setTimeout(CALLBACK(["HoverFade",this,jax]),(delay||CONFIG.fadeDelay)); + } + }, + + // + // Handle a click on the menu button + // + HoverMenu: function (event) { + if (!event) {event = window.event} + return OUTPUT[this.jax].ContextMenu(event,this.math,true); + }, + + // + // Clear all hover timers + // + ClearHover: function (jax) { + if (jax.hover.remove) {clearTimeout(jax.hover.remove)} + if (jax.hover.timer) {clearTimeout(jax.hover.timer)} + HOVER.ClearHoverTimer(); + delete jax.hover; + }, + + // + // Make a measurement in pixels + // + Px: function (m) { + if (Math.abs(m) < .006) {return "0px"} + return m.toFixed(2).replace(/\.?0+$/,"") + "px"; + }, + + // + // Preload images so they show up with the menu + // + getImages: function () { + var menu = new Image(); + menu.src = CONFIG.button.src; + } + + }; + + // + // Handle touch events. + // + // Use double-tap-and-hold as a replacement for context menu event. + // Use double-tap as a replacement for double click. + // + var TOUCH = ME.Touch = { + + last: 0, // time of last tap event + delay: 500, // delay time for double-click + + // + // Check if this is a double-tap, and if so, start the timer + // for the double-tap and hold (to trigger the contextual menu) + // + start: function (event) { + var now = new Date().getTime(); + var dblTap = (now - TOUCH.last < TOUCH.delay && TOUCH.up); + TOUCH.last = now; TOUCH.up = false; + if (dblTap) { + TOUCH.timeout = setTimeout(TOUCH.menu,TOUCH.delay,event,this); + event.preventDefault(); + } + }, + + // + // Check if there is a timeout pending, i.e., we have a + // double-tap and were waiting to see if it is held long + // enough for the menu. Since we got the end before the + // timeout, it is a double-click, not a double-tap-and-hold. + // Prevent the default action and issue a double click. + // + end: function (event) { + var now = new Date().getTime(); + TOUCH.up = (now - TOUCH.last < TOUCH.delay); + if (TOUCH.timeout) { + clearTimeout(TOUCH.timeout); + delete TOUCH.timeout; TOUCH.last = 0; TOUCH.up = false; + event.preventDefault(); + return EVENT.Handler((event.touches[0]||event.touch),"DblClick",this); + } + }, + + // + // If the timeout passes without an end event, we issue + // the contextual menu event. + // + menu: function (event,math) { + delete TOUCH.timeout; TOUCH.last = 0; TOUCH.up = false; + return EVENT.Handler((event.touches[0]||event.touch),"ContextMenu",math); + } + + }; + + // + // Mobile screens are small, so use larger version of arrow + // + if (HUB.Browser.isMobile) { + var arrow = CONFIG.styles[".MathJax_Hover_Arrow"]; + arrow.width = "25px"; arrow.height = "18px"; + CONFIG.button.x = -6; + } + + // + // Set up browser-specific values + // + HUB.Browser.Select({ + MSIE: function (browser) { + var mode = (document.documentMode || 0); + var isIE8 = browser.versionAtLeast("8.0"); + ME.msieBorderWidthBug = (document.compatMode === "BackCompat"); // borders are inside offsetWidth/Height + ME.msieEventBug = browser.isIE9; // must get event from window even though event is passed + ME.msieAlignBug = (!isIE8 || mode < 8); // inline-block spans don't rest on baseline + if (mode < 9) {EVENT.LEFTBUTTON = 1} // IE < 9 has wrong event.button values + }, + Safari: function (browser) { + ME.safariContextMenuBug = true; // selection can be started by contextmenu event + }, + Opera: function (browser) { + ME.operaPositionBug = true; // position is wrong unless border is used + }, + Konqueror: function (browser) { + ME.noContextMenuBug = true; // doesn't produce contextmenu event + } + }); + + // + // Used in measuring zoom and hover positions + // + ME.topImg = (ME.msieAlignBug ? + HTML.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}) : + HTML.Element("span",{style:{width:0,height:0,display:"inline-block"}}) + ); + if (ME.operaPositionBug) {ME.topImg.style.border="1px solid"} + + // + // Get configuration from user + // + ME.config = CONFIG = HUB.CombineConfig("MathEvents",CONFIG); + var SETFRAME = function () { + var haze = CONFIG.styles[".MathJax_Hover_Frame"]; + haze.border = CONFIG.frame.bwidth+"px solid "+CONFIG.frame.bcolor+" ! important"; + haze["box-shadow"] = haze["-webkit-box-shadow"] = + haze["-moz-box-shadow"] = haze["-khtml-box-shadow"] = + "0px 0px "+CONFIG.frame.hwidth+" "+CONFIG.frame.hcolor; + }; + + // + // Queue the events needed for startup + // + CALLBACK.Queue( + HUB.Register.StartupHook("End Config",{}), // wait until config is complete + [SETFRAME], + ["getImages",HOVER], + ["Styles",AJAX,CONFIG.styles], + ["Post",HUB.Startup.signal,"MathEvents Ready"], + ["loadComplete",AJAX,"[MathJax]/extensions/MathEvents.js"] + ); + +})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.Callback, + MathJax.Localization,MathJax.OutputJax,MathJax.InputJax); diff --git a/modules/MathJax/unpacked/extensions/MathML/content-mathml.js b/modules/MathJax/unpacked/extensions/MathML/content-mathml.js new file mode 100644 index 0000000..622e97d --- /dev/null +++ b/modules/MathJax/unpacked/extensions/MathML/content-mathml.js @@ -0,0 +1,130 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/MathML/content-mathml.js + * + * This file implements an XSLT transform to convert Content-MathML to + * Presentation MathML for processing by MathJax. The transform is + * performed in a pre-filter for the MathML input jax, so that the + * Show Math As menu will still show the Original MathML as Content MathML, + * but the Presentation MathML can be obtained from the main MathML menu. + * + * To load it, include + * + * MathML: { + * extensions: ["content-mathml.js"] + * } + * + * in your configuration. + * + * A portion of this file is taken from ctop.xsl which is + * Copyright (c) David Carlisle 2001, 2002, + * and is used by permission of David Carlisle, who has agreed to allow us + * to release it under the Apache2 license (see below). That portion is + * indicated via comments. + * + * The remainder falls under the copyright that follows. + * --------------------------------------------------------------------- + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +MathJax.Extension["MathML/content-mathml"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("MathML Jax Ready",function () { + + var MATHML = MathJax.InputJax.MathML, + PARSE = MATHML.Parse.prototype; + + MATHML.prefilterHooks.Add(function (data) { + if (!MATHML.ctopXSLT) return; + + // Parse the but use MATHML.Parse's preProcessMath to apply the normal preprocessing. + if (!MATHML.ParseXML) {MATHML.ParseXML = MATHML.createParser()} + var doc = MATHML.ParseXML(PARSE.preProcessMath(data.math)); + + // Now transform the using the ctop stylesheet. + var newdoc = MATHML.ctopXSLT.transformToDocument(doc); + + if ((typeof newdoc) === "string") { + // Internet Explorer returns a string, so just use it. + data.math = newdoc; + } else if (window.XMLSerializer) { + // Serialize the again. We could directly provide the DOM content + // but other prefilterHooks may assume data.math is still a string. + var serializer = new XMLSerializer(); + data.math = serializer.serializeToString(newdoc.documentElement, doc); + } + }); + + /* + * The following is taken from ctop.xsl (http://www.w3.org/Math/XSL/ctop.xsl) + * which is Copyright (c) David Carlisle 2001, 2002. It is used by permission + * of David Carlisle, who has agreed to allow it to be released under the + * Apache2 licesnse. + */ + var ctopStylesheet = ' +i +i / / ei ei E 0x . (-1) λ. id domain codomain image unexpected domainofapplication restriction {   if     otherwise / ! / max min (+) mod (×) gcd xor ¬ . . , || ¯ arg lcm = > < | d dddd D, + + , div div() grad grad() curl 2 () || × = lim lim tendsto e loglog , σ σ2 median mode () [|] [|] () () [m , | m , =;] () det || T , . Z R Q N C P e i NaN true false π γ () () ||, share ) ( ] [ } { ) ( ] [ } { \ )(}{>< top right ;color:;background-color:; 0 decimalpoint decimalpoint. decimalpoint*0.1em0.15em0.2em0.15em 0 /\)(:=) '; + /* + * End of ctop.xsl material. + */ + + var ctop; + if (window.XSLTProcessor) { + // standard method: just use an XSLTProcessor and parse the stylesheet + if (!MATHML.ParseXML) {MATHML.ParseXML = MATHML.createParser()} + MATHML.ctopXSLT = new XSLTProcessor(); + MATHML.ctopXSLT.importStylesheet(MATHML.ParseXML(ctopStylesheet)); + } else if (MathJax.Hub.Browser.isMSIE) { + // nonstandard methods for Internet Explorer + if (MathJax.Hub.Browser.versionAtLeast("9.0")) { + // For Internet Explorer >= 9, use createProcessor + ctop = new ActiveXObject("Msxml2.FreeThreadedDOMDocument"); + ctop.loadXML(ctopStylesheet); + var xslt = new ActiveXObject("Msxml2.XSLTemplate"); + xslt.stylesheet = ctop; + MATHML.ctopXSLT = { + ctop: xslt.createProcessor(), + transformToDocument: function(doc) { + this.ctop.input = doc; + this.ctop.transform(); + return this.ctop.output; + } + } + } else { + // For Internet Explorer <= 8, use transformNode + ctop = MATHML.createMSParser(); + ctop.async = false; + ctop.loadXML(ctopStylesheet); + MATHML.ctopXSLT = { + ctop: ctop, + transformToDocument: function(doc) { + return doc.documentElement.transformNode(this.ctop); + } + } + } + } else { + // No XSLT support. Do not change the content. + MATHML.ctopXSLT = null; + } + + MathJax.Hub.Startup.signal.Post("MathML content-mathml Ready"); +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/MathML/content-mathml.js"); diff --git a/modules/MathJax/unpacked/extensions/MathMenu.js b/modules/MathJax/unpacked/extensions/MathMenu.js new file mode 100644 index 0000000..05f8e9c --- /dev/null +++ b/modules/MathJax/unpacked/extensions/MathMenu.js @@ -0,0 +1,1175 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/MathMenu.js + * + * Implements a right-mouse (or CTRL-click) menu over mathematics + * elements that gives the user the ability to copy the source, + * change the math size, and zoom settings. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HUB,HTML,AJAX,CALLBACK,OUTPUT) { + var VERSION = "2.3"; + + var SIGNAL = MathJax.Callback.Signal("menu") // signal for menu events + + MathJax.Extension.MathMenu = { + version: VERSION, + signal: SIGNAL + }; + + var _ = function (id) { + return MathJax.Localization._.apply( + MathJax.Localization, + [["MathMenu",id]].concat([].slice.call(arguments,1)) + ); + }; + + var isPC = HUB.Browser.isPC, isMSIE = HUB.Browser.isMSIE, isIE9 = ((document.documentMode||0) > 8); + var ROUND = (isPC ? null : "5px"); + + var CONFIG = HUB.CombineConfig("MathMenu",{ + delay: 150, // the delay for submenus + closeImg: AJAX.fileURL(OUTPUT.imageDir+"/CloseX-31.png"), // image for close "X" for mobiles + + showRenderer: true, // show the "Math Renderer" menu? + showMathPlayer: true, // show the "MathPlayer" menu? + showFontMenu: false, // show the "Font Preference" menu? + showContext: false, // show the "Context Menu" menu? + showDiscoverable: false, // show the "Discoverable" menu? + showLocale: true, // show the "Locale" menu? + showLocaleURL: false, // show the "Load from URL" menu? + + semanticsAnnotations: { + "TeX": ["TeX", "LaTeX", "application/x-tex"], + "StarMath": ["StarMath 5.0"], + "Maple": ["Maple"], + "ContentMathML": ["MathML-Content", "application/mathml-content+xml"], + "OpenMath": ["OpenMath"] + }, + + windowSettings: { // for source window + status: "no", toolbar: "no", locationbar: "no", menubar: "no", + directories: "no", personalbar: "no", resizable: "yes", scrollbars: "yes", + width: 400, height: 300, + left: Math.round((screen.width - 400)/2), + top: Math.round((screen.height - 300)/3) + }, + + styles: { + "#MathJax_About": { + position:"fixed", left:"50%", width:"auto", "text-align":"center", + border:"3px outset", padding:"1em 2em", "background-color":"#DDDDDD", color:"black", + cursor: "default", "font-family":"message-box", "font-size":"120%", + "font-style":"normal", "text-indent":0, "text-transform":"none", + "line-height":"normal", "letter-spacing":"normal", "word-spacing":"normal", + "word-wrap":"normal", "white-space":"nowrap", "float":"none", "z-index":201, + + "border-radius": "15px", // Opera 10.5 and IE9 + "-webkit-border-radius": "15px", // Safari and Chrome + "-moz-border-radius": "15px", // Firefox + "-khtml-border-radius": "15px", // Konqueror + + "box-shadow":"0px 10px 20px #808080", // Opera 10.5 and IE9 + "-webkit-box-shadow":"0px 10px 20px #808080", // Safari 3 and Chrome + "-moz-box-shadow":"0px 10px 20px #808080", // Forefox 3.5 + "-khtml-box-shadow":"0px 10px 20px #808080", // Konqueror + filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')" // IE + }, + + ".MathJax_Menu": { + position:"absolute", "background-color":"white", color:"black", + width:"auto", padding:(isPC ? "2px" : "5px 0px"), + border:"1px solid #CCCCCC", margin:0, cursor:"default", + font: "menu", "text-align":"left", "text-indent":0, "text-transform":"none", + "line-height":"normal", "letter-spacing":"normal", "word-spacing":"normal", + "word-wrap":"normal", "white-space":"nowrap", "float":"none", "z-index":201, + + "border-radius": ROUND, // Opera 10.5 and IE9 + "-webkit-border-radius": ROUND, // Safari and Chrome + "-moz-border-radius": ROUND, // Firefox + "-khtml-border-radius": ROUND, // Konqueror + + "box-shadow":"0px 10px 20px #808080", // Opera 10.5 and IE9 + "-webkit-box-shadow":"0px 10px 20px #808080", // Safari 3 and Chrome + "-moz-box-shadow":"0px 10px 20px #808080", // Forefox 3.5 + "-khtml-box-shadow":"0px 10px 20px #808080", // Konqueror + filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')" // IE + }, + + ".MathJax_MenuItem": { + padding: (isPC ? "2px 2em" : "1px 2em"), + background:"transparent" + }, + + ".MathJax_MenuArrow": { + position:"absolute", right:".5em", color:"#666666", + "font-family": (isMSIE ? "'Arial unicode MS'" : null) + }, + ".MathJax_MenuActive .MathJax_MenuArrow": {color:"white"}, + + ".MathJax_MenuCheck": { + position:"absolute", left:".7em", + "font-family": (isMSIE ? "'Arial unicode MS'" : null) + }, + + ".MathJax_MenuRadioCheck": { + position:"absolute", left: (isPC ? "1em" : ".7em") + }, + + ".MathJax_MenuLabel": { + padding: (isPC ? "2px 2em 4px 1.33em" : "1px 2em 3px 1.33em"), + "font-style":"italic" + }, + + ".MathJax_MenuRule": { + "border-top": (isPC ? "1px solid #CCCCCC" : "1px solid #DDDDDD"), + margin: (isPC ? "4px 1px 0px" : "4px 3px") + }, + + ".MathJax_MenuDisabled": { + color:"GrayText" + }, + + ".MathJax_MenuActive": { + "background-color": (isPC ? "Highlight" : "#606872"), + color: (isPC ? "HighlightText" : "white") + }, + + ".MathJax_Menu_Close": { + position:"absolute", + width: "31px", height: "31px", + top:"-15px", left:"-15px" + } + } + }); + + var FALSE, HOVER; + HUB.Register.StartupHook("MathEvents Ready",function () { + FALSE = MathJax.Extension.MathEvents.Event.False; + HOVER = MathJax.Extension.MathEvents.Hover; + }); + + /*************************************************************/ + /* + * The main menu class + */ + var MENU = MathJax.Menu = MathJax.Object.Subclass({ + version: VERSION, + items: [], + posted: false, + title: null, + margin: 5, + + Init: function (def) {this.items = [].slice.call(arguments,0)}, + With: function (def) {if (def) {HUB.Insert(this,def)}; return this}, + + /* + * Display the menu + */ + Post: function (event,parent) { + if (!event) {event = window.event}; + var div = document.getElementById("MathJax_MenuFrame"); + if (!div) { + div = MENU.Background(this); + delete ITEM.lastItem; delete ITEM.lastMenu; + delete MENU.skipUp; + SIGNAL.Post(["post",MENU.jax]); + } + var menu = HTML.addElement(div,"div",{ + onmouseup: MENU.Mouseup, ondblclick: FALSE, + ondragstart: FALSE, onselectstart: FALSE, oncontextmenu: FALSE, + menuItem: this, className: "MathJax_Menu" + }); + MathJax.Localization.setCSS(menu); + + for (var i = 0, m = this.items.length; i < m; i++) {this.items[i].Create(menu)} + if (MENU.isMobile) { + HTML.addElement(menu,"span",{ + className: "MathJax_Menu_Close", menu: parent, + ontouchstart: MENU.Close, ontouchend: FALSE, onmousedown: MENU.Close, onmouseup: FALSE + },[["img",{src: CONFIG.closeImg, style:{width:"100%",height:"100%"}}]]); + } + this.posted = true; + + menu.style.width = (menu.offsetWidth+2) + "px"; + var x = event.pageX, y = event.pageY; + if (!x && !y) { + x = event.clientX + document.body.scrollLeft + document.documentElement.scrollLeft; + y = event.clientY + document.body.scrollTop + document.documentElement.scrollTop; + } + if (!parent) { + if (x + menu.offsetWidth > document.body.offsetWidth - this.margin) + {x = document.body.offsetWidth - menu.offsetWidth - this.margin} + if (MENU.isMobile) {x = Math.max(5,x-Math.floor(menu.offsetWidth/2)); y -= 20} + MENU.skipUp = event.isContextMenu; + } else { + var side = "left", mw = parent.offsetWidth; + x = (MENU.isMobile ? 30 : mw - 2); y = 0; + while (parent && parent !== div) { + x += parent.offsetLeft; y += parent.offsetTop; + parent = parent.parentNode; + } + if (x + menu.offsetWidth > document.body.offsetWidth - this.margin && !MENU.isMobile) + {side = "right"; x = Math.max(this.margin,x - mw - menu.offsetWidth + 6)} + if (!isPC) { + // in case these ever get implemented + menu.style["borderRadiusTop"+side] = 0; // Opera 10.5 + menu.style["WebkitBorderRadiusTop"+side] = 0; // Safari and Chrome + menu.style["MozBorderRadiusTop"+side] = 0; // Firefox + menu.style["KhtmlBorderRadiusTop"+side] = 0; // Konqueror + } + } + + menu.style.left = x+"px"; menu.style.top = y+"px"; + + if (document.selection && document.selection.empty) {document.selection.empty()} + return FALSE(event); + }, + + /* + * Remove the menu from the screen + */ + Remove: function (event,menu) { + SIGNAL.Post(["unpost",MENU.jax]); + var div = document.getElementById("MathJax_MenuFrame"); + if (div) { + div.parentNode.removeChild(div); + if (this.msieFixedPositionBug) {detachEvent("onresize",MENU.Resize)} + } + if (MENU.jax.hover) { + delete MENU.jax.hover.nofade; + HOVER.UnHover(MENU.jax); + } + return FALSE(event); + }, + + /* + * Find an item in a menu (or submenu) by name (Find) or ID (FindID). + * A list of names or IDs means descend into submenus. + */ + Find: function (name) {return this.FindN(1,name,[].slice.call(arguments,1))}, + FindId: function (name) {return this.FindN(0,name,[].slice.call(arguments,1))}, + FindN: function (n,name,names) { + for (var i = 0, m = this.items.length; i < m; i++) { + if (this.items[i].name[n] === name) { + if (names.length) { + if (!this.items[i].menu) {return null} + return this.items[i].menu.FindN(n,names[0],names.slice(1)); + } + return this.items[i]; + } + } + return null; + }, + + /* + * Find the index of a menu item (so we can insert before or after it) + */ + IndexOf: function (name) {return this.IndexOfN(1,name)}, + IndexOfId: function (name) {return this.IndexOfN(0,name)}, + IndexOfN: function (n,name) { + for (var i = 0, m = this.items.length; i < m; i++) + {if (this.items[i].name[n] === name) {return i}} + return null; + } + + },{ + + config: CONFIG, + + div: null, // the DOM elements for the menu and submenus + + Close: function (event) + {return MENU.Event(event,this.menu||this.parentNode,(this.menu?"Touchend":"Remove"))}, + Remove: function (event) {return MENU.Event(event,this,"Remove")}, + Mouseover: function (event) {return MENU.Event(event,this,"Mouseover")}, + Mouseout: function (event) {return MENU.Event(event,this,"Mouseout")}, + Mousedown: function (event) {return MENU.Event(event,this,"Mousedown")}, + Mouseup: function (event) {return MENU.Event(event,this,"Mouseup")}, + Touchstart: function (event) {return MENU.Event(event,this,"Touchstart")}, + Touchend: function (event) {return MENU.Event(event,this,"Touchend")}, + Event: function (event,menu,type,force) { + if (MENU.skipMouseover && type === "Mouseover" && !force) {return FALSE(event)} + if (MENU.skipUp) { + if (type.match(/Mouseup|Touchend/)) {delete MENU.skipUp; return FALSE(event)} + if (type === "Touchstart" || + (type === "Mousedown" && !MENU.skipMousedown)) {delete MENU.skipUp} + } + if (!event) {event = window.event} + var item = menu.menuItem; + if (item && item[type]) {return item[type](event,menu)} + return null; + }, + + /* + * Style for the background DIV + */ + BGSTYLE: { + position:"absolute", left:0, top:0, "z-index":200, + width:"100%", height:"100%", border:0, padding:0, margin:0 + }, + + Background: function (menu) { + var div = HTML.addElement(document.body,"div",{style:this.BGSTYLE, id:"MathJax_MenuFrame"}, + [["div",{style: this.BGSTYLE, menuItem: menu, onmousedown: this.Remove}]]); + var bg = div.firstChild; + if (MENU.msieBackgroundBug) { + // MSIE doesn't allow transparent background to be hit boxes, so + // fake it using opacity with solid background color + bg.style.backgroundColor = "white"; bg.style.filter = "alpha(opacity=0)"; + } + if (MENU.msieFixedPositionBug) { + // MSIE can't do fixed position, so use a full-sized background + // and an onresize handler to update it (stupid, but necessary) + div.width = div.height = 0; this.Resize(); + attachEvent("onresize",this.Resize); + } else { + // otherwise, use a fixed position DIV to cover the viewport + bg.style.position = "fixed"; + } + return div; + }, + Resize: function () {setTimeout(MENU.SetWH,0)}, + SetWH: function () { + var bg = document.getElementById("MathJax_MenuFrame"); + if (bg) { + bg = bg.firstChild; + bg.style.width = bg.style.height = "1px"; // so scrollWidth/Height will be right below + bg.style.width = document.body.scrollWidth + "px"; + bg.style.height = document.body.scrollHeight + "px"; + } + }, + + saveCookie: function () {HTML.Cookie.Set("menu",this.cookie)}, + getCookie: function () {this.cookie = HTML.Cookie.Get("menu")}, + + // + // Preload images so they show up with the menu + // + getImages: function () { + if (MENU.isMobile) {var close = new Image(); close.src = CONFIG.closeImg} + } + + }); + + /*************************************************************/ + /* + * The menu item root subclass + */ + var ITEM = MENU.ITEM = MathJax.Object.Subclass({ + name: "", // the menu item's label as [id,label] pair + + Create: function (menu) { + if (!this.hidden) { + var def = { + onmouseover: MENU.Mouseover, onmouseout: MENU.Mouseout, + onmouseup: MENU.Mouseup, onmousedown: MENU.Mousedown, + ondragstart: FALSE, onselectstart: FALSE, onselectend: FALSE, + ontouchstart: MENU.Touchstart, ontouchend: MENU.Touchend, + className: "MathJax_MenuItem", menuItem: this + }; + if (this.disabled) {def.className += " MathJax_MenuDisabled"} + HTML.addElement(menu,"div",def,this.Label(def,menu)); + } + }, + Name: function () {return _(this.name[0],this.name[1])}, + + Mouseover: function (event,menu) { + if (!this.disabled) {this.Activate(menu)} + if (!this.menu || !this.menu.posted) { + var menus = document.getElementById("MathJax_MenuFrame").childNodes, + items = menu.parentNode.childNodes; + for (var i = 0, m = items.length; i < m; i++) { + var item = items[i].menuItem; + if (item && item.menu && item.menu.posted) {item.Deactivate(items[i])} + } + m = menus.length-1; + while (m >= 0 && menu.parentNode.menuItem !== menus[m].menuItem) { + menus[m].menuItem.posted = false; + menus[m].parentNode.removeChild(menus[m]); + m--; + } + if (this.Timer && !MENU.isMobile) {this.Timer(event,menu)} + } + }, + Mouseout: function (event,menu) { + if (!this.menu || !this.menu.posted) {this.Deactivate(menu)} + if (this.timer) {clearTimeout(this.timer); delete this.timer} + }, + Mouseup: function (event,menu) {return this.Remove(event,menu)}, + + Touchstart: function (event,menu) {return this.TouchEvent(event,menu,"Mousedown")}, + Touchend: function (event,menu) {return this.TouchEvent(event,menu,"Mouseup")}, + TouchEvent: function (event,menu,type) { + if (this !== ITEM.lastItem) { + if (ITEM.lastMenu) {MENU.Event(event,ITEM.lastMenu,"Mouseout")} + MENU.Event(event,menu,"Mouseover",true); + ITEM.lastItem = this; ITEM.lastMenu = menu; + } + if (this.nativeTouch) {return null} + MENU.Event(event,menu,type); + return false; + }, + + Remove: function (event,menu) { + menu = menu.parentNode.menuItem; + return menu.Remove(event,menu); + }, + + Activate: function (menu) {this.Deactivate(menu); menu.className += " MathJax_MenuActive"}, + Deactivate: function (menu) {menu.className = menu.className.replace(/ MathJax_MenuActive/,"")}, + + With: function (def) {if (def) {HUB.Insert(this,def)}; return this} + }); + + /*************************************************************/ + /* + * A menu item that performs a command when selected + */ + MENU.ITEM.COMMAND = MENU.ITEM.Subclass({ + action: function () {}, + + Init: function (name,action,def) { + if (!(name instanceof Array)) {name = [name,name]} // make [id,label] pair + this.name = name; this.action = action; + this.With(def); + }, + + Label: function (def,menu) {return [this.Name()]}, + Mouseup: function (event,menu) { + if (!this.disabled) { + this.Remove(event,menu); + SIGNAL.Post(["command",this]); + this.action.call(this,event); + } + return FALSE(event); + } + }); + + /*************************************************************/ + /* + * A menu item that posts a submenu + */ + MENU.ITEM.SUBMENU = MENU.ITEM.Subclass({ + menu: null, // the submenu + marker: (isPC && !HUB.Browser.isSafari ? "\u25B6" : "\u25B8"), // the menu arrow + + Init: function (name,def) { + if (!(name instanceof Array)) {name = [name,name]} // make [id,label] pair + this.name = name; var i = 1; + if (!(def instanceof MENU.ITEM)) {this.With(def), i++} + this.menu = MENU.apply(MENU,[].slice.call(arguments,i)); + }, + Label: function (def,menu) { + this.menu.posted = false; + return [this.Name()+" ",["span",{className:"MathJax_MenuArrow"},[this.marker]]]; + }, + Timer: function (event,menu) { + if (this.timer) {clearTimeout(this.timer)} + event = {clientX: event.clientX, clientY: event.clientY}; // MSIE can't pass the event below + this.timer = setTimeout(CALLBACK(["Mouseup",this,event,menu]),CONFIG.delay); + }, + Touchend: function (event,menu) { + var forceout = this.menu.posted; + var result = this.SUPER(arguments).Touchend.apply(this,arguments); + if (forceout) {this.Deactivate(menu); delete ITEM.lastItem; delete ITEM.lastMenu} + return result; + }, + Mouseup: function (event,menu) { + if (!this.disabled) { + if (!this.menu.posted) { + if (this.timer) {clearTimeout(this.timer); delete this.timer} + this.menu.Post(event,menu); + } else { + var menus = document.getElementById("MathJax_MenuFrame").childNodes, + m = menus.length-1; + while (m >= 0) { + var child = menus[m]; + child.menuItem.posted = false; + child.parentNode.removeChild(child); + if (child.menuItem === this.menu) {break}; + m--; + } + } + } + return FALSE(event); + } + }); + + /*************************************************************/ + /* + * A menu item that is one of several radio buttons + */ + MENU.ITEM.RADIO = MENU.ITEM.Subclass({ + variable: null, // the variable name + marker: (isPC ? "\u25CF" : "\u2713"), // the checkmark + + Init: function (name,variable,def) { + if (!(name instanceof Array)) {name = [name,name]} // make [id,label] pair + this.name = name; this.variable = variable; this.With(def); + if (this.value == null) {this.value = this.name[0]} + }, + Label: function (def,menu) { + var span = {className:"MathJax_MenuRadioCheck"}; + if (CONFIG.settings[this.variable] !== this.value) {span = {style:{display:"none"}}} + return [["span",span,[this.marker]]," "+this.Name()]; + }, + Mouseup: function (event,menu) { + if (!this.disabled) { + var child = menu.parentNode.childNodes; + for (var i = 0, m = child.length; i < m; i++) { + var item = child[i].menuItem; + if (item && item.variable === this.variable) + {child[i].firstChild.style.display = "none"} + } + menu.firstChild.display = ""; + CONFIG.settings[this.variable] = this.value; + MENU.cookie[this.variable] = CONFIG.settings[this.variable]; MENU.saveCookie(); + SIGNAL.Post(["radio button",this]); + } + this.Remove(event,menu); + if (this.action && !this.disabled) {this.action.call(MENU,this)} + return FALSE(event); + } + }); + + /*************************************************************/ + /* + * A menu item that is checkable + */ + MENU.ITEM.CHECKBOX = MENU.ITEM.Subclass({ + variable: null, // the variable name + marker: "\u2713", // the checkmark + + Init: function (name,variable,def) { + if (!(name instanceof Array)) {name = [name,name]} // make [id,label] pair + this.name = name; this.variable = variable; this.With(def); + }, + Label: function (def,menu) { + var span = {className:"MathJax_MenuCheck"}; + if (!CONFIG.settings[this.variable]) {span = {style:{display:"none"}}} + return [["span",span,[this.marker]]," "+this.Name()]; + }, + Mouseup: function (event,menu) { + if (!this.disabled) { + menu.firstChild.display = (CONFIG.settings[this.variable] ? "none" : ""); + CONFIG.settings[this.variable] = !CONFIG.settings[this.variable]; + MENU.cookie[this.variable] = CONFIG.settings[this.variable]; MENU.saveCookie(); + SIGNAL.Post(["checkbox",this]); + } + this.Remove(event,menu); + if (this.action && !this.disabled) {this.action.call(MENU,this)} + return FALSE(event); + } + }); + + /*************************************************************/ + /* + * A menu item that is a label + */ + MENU.ITEM.LABEL = MENU.ITEM.Subclass({ + Init: function (name,def) { + if (!(name instanceof Array)) {name = [name,name]} // make [id,label] pair + this.name = name; this.With(def); + }, + Label: function (def,menu) { + delete def.onmouseover, delete def.onmouseout; delete def.onmousedown; + def.className += " MathJax_MenuLabel"; + return [this.Name()]; + } + }); + + /*************************************************************/ + /* + * A rule in a menu + */ + MENU.ITEM.RULE = MENU.ITEM.Subclass({ + Label: function (def,menu) { + delete def.onmouseover, delete def.onmouseout; delete def.onmousedown; + def.className += " MathJax_MenuRule"; + return null; + } + }); + + /*************************************************************/ + /*************************************************************/ + + /* + * Handle the ABOUT box + */ + MENU.About = function () { + var HTMLCSS = OUTPUT["HTML-CSS"] || {}; + var font = + (HTMLCSS.imgFonts ? "image" : + (HTMLCSS.fontInUse ? + (HTMLCSS.webFonts ? "web" : "local")+" "+HTMLCSS.fontInUse : + (OUTPUT.SVG ? "web SVG" : "generic")) ) + " fonts"; + var format = (!HTMLCSS.webFonts || HTMLCSS.imgFonts ? null : + HTMLCSS.allowWebFonts.replace(/otf/,"woff or otf") + " fonts"); + var jax = ["MathJax.js v"+MathJax.fileversion,["br"]]; + jax.push(["div",{style:{"border-top":"groove 2px",margin:".25em 0"}}]); + MENU.About.GetJax(jax,MathJax.InputJax,["InputJax","%1 Input Jax v%2"]); + MENU.About.GetJax(jax,MathJax.OutputJax,["OutputJax","%1 Output Jax v%2"]); + MENU.About.GetJax(jax,MathJax.ElementJax,["ElementJax","%1 Element Jax v%2"]); + jax.push(["div",{style:{"border-top":"groove 2px",margin:".25em 0"}}]); + MENU.About.GetJax(jax,MathJax.Extension,["Extension","%1 Extension v%2"],true); + jax.push(["div",{style:{"border-top":"groove 2px",margin:".25em 0"}}],["center",{},[ + HUB.Browser + " v"+HUB.Browser.version + (format ? + " \u2014 " + _(format.replace(/ /g,""),format) : "") + ]]); + MENU.About.div = MENU.Background(MENU.About); + var about = HTML.addElement(MENU.About.div,"div",{ + id: "MathJax_About" + },[ + ["b",{style:{fontSize:"120%"}},["MathJax"]]," v"+MathJax.version,["br"], + _(font.replace(/ /g,""),"using "+font),["br"],["br"], + ["span",{style:{ + display:"inline-block", "text-align":"left", "font-size":"80%", + "max-height":"20em", overflow:"auto", + "background-color":"#E4E4E4", padding:".4em .6em", border:"1px inset" + }},jax],["br"],["br"], + ["a",{href:"http://www.mathjax.org/"},["www.mathjax.org"]], + ["img", { + src: CONFIG.closeImg, + style: {width:"21px", height:"21px", position:"absolute", top:".2em", right:".2em"}, + onclick: MENU.About.Remove + }] + ]); + MathJax.Localization.setCSS(about); + var doc = (document.documentElement||{}); + var H = window.innerHeight || doc.clientHeight || doc.scrollHeight || 0; + if (MENU.prototype.msieAboutBug) { + about.style.width = "20em"; about.style.position = "absolute"; + about.style.left = Math.floor((document.documentElement.scrollWidth - about.offsetWidth)/2)+"px"; + about.style.top = (Math.floor((H-about.offsetHeight)/3)+document.body.scrollTop)+"px"; + } else { + about.style.marginLeft = Math.floor(-about.offsetWidth/2)+"px"; + about.style.top = Math.floor((H-about.offsetHeight)/3)+"px"; + } + }; + MENU.About.Remove = function (event) { + if (MENU.About.div) {document.body.removeChild(MENU.About.div); delete MENU.About.div} + }; + MENU.About.GetJax = function (jax,JAX,type,noTypeCheck) { + var info = []; + for (var id in JAX) {if (JAX.hasOwnProperty(id) && JAX[id]) { + if ((noTypeCheck && JAX[id].version) || (JAX[id].isa && JAX[id].isa(JAX))) + {info.push(_(type[0],type[1],(JAX[id].id||id),JAX[id].version))} + }} + info.sort(); + for (var i = 0, m = info.length; i < m; i++) {jax.push(info[i],["br"])} + return jax; + }; + + + /* + * Handle the MathJax HELP menu + */ + MENU.Help = function () { + AJAX.Require("[MathJax]/extensions/HelpDialog.js", + function () {MathJax.Extension.Help.Dialog()}); + }; + + /* + * Handle showing of element's source + */ + MENU.ShowSource = function (event) { + if (!event) {event = window.event} + var EVENT = {screenX:event.screenX, screenY:event.screenY}; + if (!MENU.jax) return; + if (this.format === "MathML") { + var MML = MathJax.ElementJax.mml; + if (MML && typeof(MML.mbase.prototype.toMathML) !== "undefined") { + // toMathML() can call MathJax.Hub.RestartAfter, so trap errors and check + try {MENU.ShowSource.Text(MENU.jax.root.toMathML(),event)} catch (err) { + if (!err.restart) {throw err} + CALLBACK.After([this,MENU.ShowSource,EVENT],err.restart); + } + } else if (!AJAX.loadingToMathML) { + AJAX.loadingToMathML = true; + MENU.ShowSource.Window(event); // WeBKit needs to open window on click event + CALLBACK.Queue( + AJAX.Require("[MathJax]/extensions/toMathML.js"), + function () { + delete AJAX.loadingToMathML; + if (!MML.mbase.prototype.toMathML) {MML.mbase.prototype.toMathML = function () {}} + }, + [this,MENU.ShowSource,EVENT] // call this function again + ); + return; + } + } else if (this.format === "Error") { + MENU.ShowSource.Text(MENU.jax.errorText,event); + } else if (CONFIG.semanticsAnnotations[this.format]) { + var annotation = MENU.jax.root.getAnnotation(this.format); + if (annotation.data[0]) MENU.ShowSource.Text(annotation.data[0].toString()); + } else { + if (MENU.jax.originalText == null) { + alert(_("NoOriginalForm","No original form available")); + return; + } + MENU.ShowSource.Text(MENU.jax.originalText,event); + } + }; + MENU.ShowSource.Window = function (event) { + if (!MENU.ShowSource.w) { + var def = [], DEF = CONFIG.windowSettings; + for (var id in DEF) {if (DEF.hasOwnProperty(id)) {def.push(id+"="+DEF[id])}} + MENU.ShowSource.w = window.open("","_blank",def.join(",")); + } + return MENU.ShowSource.w; + }; + MENU.ShowSource.Text = function (text,event) { + var w = MENU.ShowSource.Window(event); delete MENU.ShowSource.w; + text = text.replace(/^\s*/,"").replace(/\s*$/,""); + text = text.replace(/&/g,"&").replace(//g,">"); + var title = _("EqSource","MathJax Equation Source"); + if (MENU.isMobile) { + w.document.open(); + w.document.write(""+title+""); + w.document.write("
"+text+"
"); + w.document.write("
"); + w.document.write(""); + w.document.close(); + } else { + w.document.open(); + w.document.write(""+title+""); + w.document.write("
"+text+"
"); + w.document.write(""); + w.document.close(); + var table = w.document.body.firstChild; + setTimeout(function () { + var H = (w.outerHeight-w.innerHeight)||30, W = (w.outerWidth-w.innerWidth)||30, x, y; + W = Math.max(100,Math.min(Math.floor(.5*screen.width),table.offsetWidth+W+25)); + H = Math.max(40,Math.min(Math.floor(.5*screen.height),table.offsetHeight+H+25)); + w.resizeTo(W,H); + if (event && event.screenX != null) { + x = Math.max(0,Math.min(event.screenX-Math.floor(W/2), screen.width-W-20)); + y = Math.max(0,Math.min(event.screenY-Math.floor(H/2), screen.height-H-20)); + w.moveTo(x,y); + } + },50); + } + }; + + /* + * Handle rescaling all the math + */ + MENU.Scale = function () { + var HTMLCSS = OUTPUT["HTML-CSS"], nMML = OUTPUT.NativeMML, SVG = OUTPUT.SVG; + var SCALE = (HTMLCSS||nMML||SVG||{config:{scale:100}}).config.scale; + var scale = prompt(_("ScaleMath","Scale all mathematics (compared to surrounding text) by"),SCALE+"%"); + if (scale) { + if (scale.match(/^\s*\d+(\.\d*)?\s*%?\s*$/)) { + scale = parseFloat(scale); + if (scale) { + if (scale !== SCALE) { + if (HTMLCSS) {HTMLCSS.config.scale = scale} + if (nMML) {nMML.config.scale = scale} + if (SVG) {SVG.config.scale = scale} + MENU.cookie.scale = scale; + MENU.saveCookie(); HUB.Reprocess(); + } + } else {alert(_("NonZeroScale","The scale should not be zero"))} + } else {alert(_("PercentScale", + "The scale should be a percentage (e.g., 120%%)"))} + } + }; + + /* + * Handle loading the zoom code + */ + MENU.Zoom = function () { + if (!MathJax.Extension.MathZoom) {AJAX.Require("[MathJax]/extensions/MathZoom.js")} + }; + + /* + * Handle changing the renderer + */ + MENU.Renderer = function () { + var jax = HUB.outputJax["jax/mml"]; + if (jax[0] !== CONFIG.settings.renderer) { + var BROWSER = HUB.Browser, message, MESSAGE = MENU.Renderer.Messages, warned; + // + // Check that the new renderer is appropriate for the browser + // + switch (CONFIG.settings.renderer) { + case "NativeMML": + if (!CONFIG.settings.warnedMML) { + if (BROWSER.isChrome && BROWSER.version.substr(0,3) !== "24.") {message = MESSAGE.MML.WebKit} + else if (BROWSER.isSafari && !BROWSER.versionAtLeast("5.0")) {message = MESSAGE.MML.WebKit} + else if (BROWSER.isMSIE) {if (!BROWSER.hasMathPlayer) {message = MESSAGE.MML.MSIE}} + else {message = MESSAGE.MML[BROWSER]} + warned = "warnedMML"; + } + break; + + case "SVG": + if (!CONFIG.settings.warnedSVG) { + if (BROWSER.isMSIE && !isIE9) {message = MESSAGE.SVG.MSIE} + } + break; + } + if (message) { + message = _(message[0],message[1]); + message += "\n\n"; + message += _("SwitchAnyway", + "Switch the renderer anyway?\n\n" + + "(Press OK to switch, CANCEL to continue with the current renderer)"); + MENU.cookie.renderer = jax[0].id; MENU.saveCookie(); + if (!confirm(message)) { + MENU.cookie.renderer = CONFIG.settings.renderer = HTML.Cookie.Get("menu").renderer; + MENU.saveCookie(); + return; + } + if (warned) {MENU.cookie.warned = CONFIG.settings.warned = true} + MENU.cookie.renderer = CONFIG.settings.renderer; MENU.saveCookie(); + } + HUB.Queue( + ["setRenderer",HUB,CONFIG.settings.renderer,"jax/mml"], + ["Rerender",HUB] + ); + } + }; + MENU.Renderer.Messages = { + MML: { + WebKit: ["WebkitNativeMMLWarning", + "Your browser doesn't seem to support MathML natively, " + + "so switching to MathML output may cause the mathematics " + + "on the page to become unreadable."], + + MSIE: ["MSIENativeMMLWarning", + "Internet Explorer requires the MathPlayer plugin " + + "in order to process MathML output."], + + Opera: ["OperaNativeMMLWarning", + "Opera's support for MathML is limited, so switching to " + + "MathML output may cause some expressions to render poorly."], + + Safari: ["SafariNativeMMLWarning", + "Your browser's native MathML does not implement all the features " + + "used by MathJax, so some expressions may not render properly."], + + Firefox: ["FirefoxNativeMMLWarning", + "Your browser's native MathML does not implement all the features " + + "used by MathJax, so some expressions may not render properly."] + }, + + SVG: { + MSIE: ["MSIESVGWarning", + "SVG is not implemented in Internet Explorer prior to " + + "IE9 or when it is emulating IE8 or below. " + + "Switching to SVG output will cause the mathematics to " + + "not display properly."] + } + }; + + /* + * Handle setting the HTMLCSS fonts + */ + MENU.Font = function () { + var HTMLCSS = OUTPUT["HTML-CSS"]; if (!HTMLCSS) return; + document.location.reload(); + }; + + /* + * Handle selection of locale and rerender the page + */ + MENU.Locale = function () { + MathJax.Localization.setLocale(CONFIG.settings.locale); + MathJax.Hub.Queue(["Reprocess",MathJax.Hub]); // FIXME: Just reprocess error messages? + }; + MENU.LoadLocale = function () { + var url = prompt(_("LoadURL","Load translation data from this URL:")); + if (url) { + if (!url.match(/\.js$/)) { + alert(_("BadURL", + "The URL should be for a javascript file that defines MathJax translation data. " + + "Javascript file names should end with '.js'" + )); + } + AJAX.Require(url,function (status) { + if (status != AJAX.STATUS.OK) {alert(_("BadData","Failed to load translation data from %1",url))} + }); + } + }; + + /* + * Handle setting MathPlayer events + */ + MENU.MPEvents = function (item) { + var discoverable = CONFIG.settings.discoverable, + MESSAGE = MENU.MPEvents.Messages; + if (!isIE9) { + if (CONFIG.settings.mpMouse && !confirm(_.apply(_,MESSAGE.IE8warning))) { + delete MENU.cookie.mpContext; delete CONFIG.settings.mpContext; + delete MENU.cookie.mpMouse; delete CONFIG.settings.mpMouse; + MENU.saveCookie(); + return; + } + CONFIG.settings.mpContext = CONFIG.settings.mpMouse; + MENU.cookie.mpContext = MENU.cookie.mpMouse = CONFIG.settings.mpMouse; + MENU.saveCookie(); + MathJax.Hub.Queue(["Rerender",MathJax.Hub]) + } else if (!discoverable && item.name[1] === "Menu Events" && CONFIG.settings.mpContext) { + alert(_.apply(_,MESSAGE.IE9warning)); + } + }; + + MENU.MPEvents.Messages = { + IE8warning: ["IE8warning", + "This will disable the MathJax menu and zoom features, " + + "but you can Alt-Click on an expression to obtain the MathJax " + + "menu instead.\n\nReally change the MathPlayer settings?"], + + IE9warning: ["IE9warning", + "The MathJax contextual menu will be disabled, but you can " + + "Alt-Click on an expression to obtain the MathJax menu instead."] + }; + + /*************************************************************/ + /*************************************************************/ + + HUB.Browser.Select({ + MSIE: function (browser) { + var quirks = (document.compatMode === "BackCompat"); + var isIE8 = browser.versionAtLeast("8.0") && document.documentMode > 7; + MENU.Augment({ + margin: 20, + msieBackgroundBug: (document.documentMode < 9), + msieFixedPositionBug: (quirks || !isIE8), + msieAboutBug: quirks + }); + if (isIE9) { + delete CONFIG.styles["#MathJax_About"].filter; + delete CONFIG.styles[".MathJax_Menu"].filter; + } + }, + Firefox: function (browser) { + MENU.skipMouseover = browser.isMobile && browser.versionAtLeast("6.0"); + MENU.skipMousedown = browser.isMobile; + } + }); + MENU.isMobile = HUB.Browser.isMobile; + MENU.noContextMenu = HUB.Browser.noContextMenu; + + /*************************************************************/ + + // + // Creates the locale menu from the list of locales in MathJax.Localization.strings + // + MENU.CreateLocaleMenu = function () { + if (!MENU.menu) return; + var menu = MENU.menu.Find("Language").menu, items = menu.items; + // + // Get the names of the languages and sort them + // + var locales = [], LOCALE = MathJax.Localization.strings; + for (var id in LOCALE) {if (LOCALE.hasOwnProperty(id)) {locales.push(id)}} + locales = locales.sort(); menu.items = []; + // + // Add a menu item for each + // + for (var i = 0, m = locales.length; i < m; i++) { + var title = LOCALE[locales[i]].menuTitle; + if (title) {title += " ("+locales[i]+")"} else {title = locales[i]} + menu.items.push(ITEM.RADIO([locales[i],title],"locale",{action:MENU.Locale})); + } + // + // Add the rule and "Load from URL" items + // + menu.items.push(items[items.length-2],items[items.length-1]); + }; + + // + // Create the annotation menu from MathJax.Hub.config.semanticsAnnotations + // + MENU.CreateAnnotationMenu = function () { + if (!MENU.menu) return; + var menu = MENU.menu.Find("Show Math As","Annotation").menu; + var annotations = CONFIG.semanticsAnnotations; + for (var a in annotations) { + if (annotations.hasOwnProperty(a)) { + menu.items.push(ITEM.COMMAND([a,a], MENU.ShowSource, {hidden: true, nativeTouch: true, format: a})); + } + } + }; + + /*************************************************************/ + + HUB.Register.StartupHook("End Config",function () { + + /* + * Get the menu settings from the HUB (which includes the + * data from the cookie already), and add the format, if + * it wasn't set in the cookie. + */ + CONFIG.settings = HUB.config.menuSettings; + if (typeof(CONFIG.settings.showRenderer) !== "undefined") {CONFIG.showRenderer = CONFIG.settings.showRenderer} + if (typeof(CONFIG.settings.showFontMenu) !== "undefined") {CONFIG.showFontMenu = CONFIG.settings.showFontMenu} + if (typeof(CONFIG.settings.showContext) !== "undefined") {CONFIG.showContext = CONFIG.settings.showContext} + MENU.getCookie(); + + /* + * The main menu + */ + // Localization: items used as key, should be refactored. + MENU.menu = MENU( + ITEM.SUBMENU(["Show","Show Math As"], + ITEM.COMMAND(["MathMLcode","MathML Code"], MENU.ShowSource, {nativeTouch: true, format: "MathML"}), + ITEM.COMMAND(["Original","Original Form"], MENU.ShowSource, {nativeTouch: true}), + ITEM.SUBMENU(["Annotation","Annotation"], {disabled:true}), + ITEM.RULE(), + ITEM.CHECKBOX(["texHints","Show TeX hints in MathML"], "texHints") + ), + ITEM.RULE(), + ITEM.SUBMENU(["Settings","Math Settings"], + ITEM.SUBMENU(["ZoomTrigger","Zoom Trigger"], + ITEM.RADIO(["Hover","Hover"], "zoom", {action: MENU.Zoom}), + ITEM.RADIO(["Click","Click"], "zoom", {action: MENU.Zoom}), + ITEM.RADIO(["DoubleClick","Double-Click"], "zoom", {action: MENU.Zoom}), + ITEM.RADIO(["NoZoom","No Zoom"], "zoom", {value: "None"}), + ITEM.RULE(), + ITEM.LABEL(["TriggerRequires","Trigger Requires:"]), + ITEM.CHECKBOX((HUB.Browser.isMac ? ["Option","Option"] : ["Alt","Alt"]), "ALT"), + ITEM.CHECKBOX(["Command","Command"], "CMD", {hidden: !HUB.Browser.isMac}), + ITEM.CHECKBOX(["Control","Control"], "CTRL", {hidden: HUB.Browser.isMac}), + ITEM.CHECKBOX(["Shift","Shift"], "Shift") + ), + ITEM.SUBMENU(["ZoomFactor","Zoom Factor"], + ITEM.RADIO("125%", "zscale"), + ITEM.RADIO("133%", "zscale"), + ITEM.RADIO("150%", "zscale"), + ITEM.RADIO("175%", "zscale"), + ITEM.RADIO("200%", "zscale"), + ITEM.RADIO("250%", "zscale"), + ITEM.RADIO("300%", "zscale"), + ITEM.RADIO("400%", "zscale") + ), + ITEM.RULE(), + ITEM.SUBMENU(["Renderer","Math Renderer"], {hidden:!CONFIG.showRenderer}, + ITEM.RADIO("HTML-CSS", "renderer", {action: MENU.Renderer}), + ITEM.RADIO("MathML", "renderer", {action: MENU.Renderer, value:"NativeMML"}), + ITEM.RADIO("SVG", "renderer", {action: MENU.Renderer}) + ), + ITEM.SUBMENU("MathPlayer", {hidden:!HUB.Browser.isMSIE || !CONFIG.showMathPlayer, + disabled:!HUB.Browser.hasMathPlayer}, + ITEM.LABEL(["MPHandles","Let MathPlayer Handle:"]), + ITEM.CHECKBOX(["MenuEvents","Menu Events"], "mpContext", {action: MENU.MPEvents, hidden:!isIE9}), + ITEM.CHECKBOX(["MouseEvents","Mouse Events"], "mpMouse", {action: MENU.MPEvents, hidden:!isIE9}), + ITEM.CHECKBOX(["MenuAndMouse","Mouse and Menu Events"], "mpMouse", {action: MENU.MPEvents, hidden:isIE9}) + ), + ITEM.SUBMENU(["FontPrefs","Font Preference"], {hidden:!CONFIG.showFontMenu}, + ITEM.LABEL(["ForHTMLCSS","For HTML-CSS:"]), + ITEM.RADIO(["Auto","Auto"], "font", {action: MENU.Font}), + ITEM.RULE(), + ITEM.RADIO(["TeXLocal","TeX (local)"], "font", {action: MENU.Font}), + ITEM.RADIO(["TeXWeb","TeX (web)"], "font", {action: MENU.Font}), + ITEM.RADIO(["TeXImage","TeX (image)"], "font", {action: MENU.Font}), + ITEM.RULE(), + ITEM.RADIO(["STIXLocal","STIX (local)"], "font", {action: MENU.Font}), + ITEM.RADIO(["STIXWeb","STIX (web)"], "font", {action: MENU.Font}), + ITEM.RULE(), + ITEM.RADIO(["AsanaMathWeb","Asana Math (web)"], "font", {action: MENU.Font}), + ITEM.RADIO(["GyrePagellaWeb","Gyre Pagella (web)"], "font", {action: MENU.Font}), + ITEM.RADIO(["GyreTermesWeb","Gyre Termes (web)"], "font", {action: MENU.Font}), + ITEM.RADIO(["LatinModernWeb","Latin Modern (web)"], "font", {action: MENU.Font}), + ITEM.RADIO(["NeoEulerWeb","Neo Euler (web)"], "font", {action: MENU.Font}) + ), + ITEM.SUBMENU(["ContextMenu","Contextual Menu"], {hidden:!CONFIG.showContext}, + ITEM.RADIO("MathJax", "context"), + ITEM.RADIO(["Browser","Browser"], "context") + ), + ITEM.COMMAND(["Scale","Scale All Math ..."],MENU.Scale), + ITEM.RULE().With({hidden:!CONFIG.showDiscoverable, name:["","discover_rule"]}), + ITEM.CHECKBOX(["Discoverable","Highlight on Hover"], "discoverable", {hidden:!CONFIG.showDiscoverable}) + ), + ITEM.SUBMENU(["Locale","Language"], {hidden:!CONFIG.showLocale}, + ITEM.RADIO("en", "locale", {action: MENU.Locale}), + ITEM.RULE().With({hidden:!CONFIG.showLocaleURL, name:["","localURL_rule"]}), + ITEM.COMMAND(["LoadLocale","Load from URL ..."], MENU.LoadLocale, {hidden:!CONFIG.showLocaleURL}) + ), + ITEM.RULE(), + ITEM.COMMAND(["About","About MathJax"],MENU.About), + ITEM.COMMAND(["Help","MathJax Help"],MENU.Help) + ); + + if (MENU.isMobile) { + (function () { + var settings = CONFIG.settings; + var trigger = MENU.menu.Find("Math Settings","Zoom Trigger").menu; + trigger.items[0].disabled = trigger.items[1].disabled = true; + if (settings.zoom === "Hover" || settings.zoom == "Click") {settings.zoom = "None"} + trigger.items = trigger.items.slice(0,4); + + if (navigator.appVersion.match(/[ (]Android[) ]/)) { + MENU.ITEM.SUBMENU.Augment({marker: "\u00BB"}); + } + })(); + } + + MENU.CreateLocaleMenu(); + MENU.CreateAnnotationMenu(); + }); + + MENU.showRenderer = function (show) { + MENU.cookie.showRenderer = CONFIG.showRenderer = show; MENU.saveCookie(); + MENU.menu.Find("Math Settings","Math Renderer").hidden = !show; + }; + MENU.showMathPlayer = function (show) { + MENU.cookie.showMathPlayer = CONFIG.showMathPlayer = show; MENU.saveCookie(); + MENU.menu.Find("Math Settings","MathPlayer").hidden = !show; + }; + MENU.showFontMenu = function (show) { + MENU.cookie.showFontMenu = CONFIG.showFontMenu = show; MENU.saveCookie(); + MENU.menu.Find("Math Settings","Font Preference").hidden = !show; + }; + MENU.showContext = function (show) { + MENU.cookie.showContext = CONFIG.showContext = show; MENU.saveCookie(); + MENU.menu.Find("Math Settings","Contextual Menu").hidden = !show; + }; + MENU.showDiscoverable = function (show) { + MENU.cookie.showDiscoverable = CONFIG.showDiscoverable = show; MENU.saveCookie(); + MENU.menu.Find("Math Settings","Highlight on Hover").hidden = !show; + MENU.menu.Find("Math Settings","discover_rule").hidden = !show; + }; + MENU.showLocale = function (show) { + MENU.cookie.showLocale = CONFIG.showLocale = show; MENU.saveCookie(); + MENU.menu.Find("Language").hidden = !show; + }; + + MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + if (!MathJax.OutputJax["HTML-CSS"].config.imageFont) + {MENU.menu.Find("Math Settings","Font Preference","TeX (image)").disabled = true} + }); + + /*************************************************************/ + + CALLBACK.Queue( + HUB.Register.StartupHook("End Config",{}), // wait until config is complete + ["getImages",MENU], + ["Styles",AJAX,CONFIG.styles], + ["Post",HUB.Startup.signal,"MathMenu Ready"], + ["loadComplete",AJAX,"[MathJax]/extensions/MathMenu.js"] + ); + +})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.CallBack,MathJax.OutputJax); diff --git a/modules/MathJax/unpacked/extensions/MathZoom.js b/modules/MathJax/unpacked/extensions/MathZoom.js new file mode 100644 index 0000000..a5a75e3 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/MathZoom.js @@ -0,0 +1,356 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/MathZoom.js + * + * Implements the zoom feature for enlarging math expressions. It is + * loaded automatically when the Zoom menu selection changes from "None". + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HUB,HTML,AJAX,HTMLCSS,nMML) { + var VERSION = "2.3"; + + var CONFIG = HUB.CombineConfig("MathZoom",{ + styles: { + // + // The styles for the MathZoom display box + // + "#MathJax_Zoom": { + position:"absolute", "background-color":"#F0F0F0", overflow:"auto", + display:"block", "z-index":301, padding:".5em", border:"1px solid black", margin:0, + "font-weight":"normal", "font-style":"normal", + "text-align":"left", "text-indent":0, "text-transform":"none", + "line-height":"normal", "letter-spacing":"normal", "word-spacing":"normal", + "word-wrap":"normal", "white-space":"nowrap", "float":"none", + "box-shadow":"5px 5px 15px #AAAAAA", // Opera 10.5 and IE9 + "-webkit-box-shadow":"5px 5px 15px #AAAAAA", // Safari 3 and Chrome + "-moz-box-shadow":"5px 5px 15px #AAAAAA", // Forefox 3.5 + "-khtml-box-shadow":"5px 5px 15px #AAAAAA", // Konqueror + filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')" // IE + }, + + // + // The styles for the hidden overlay (should not need to be adjusted by the page author) + // + "#MathJax_ZoomOverlay": { + position:"absolute", left:0, top:0, "z-index":300, display:"inline-block", + width:"100%", height:"100%", border:0, padding:0, margin:0, + "background-color":"white", opacity:0, filter:"alpha(opacity=0)" + }, + + "#MathJax_ZoomFrame": { + position:"relative", display:"inline-block", + height:0, width:0 + }, + + "#MathJax_ZoomEventTrap": { + position:"absolute", left:0, top:0, "z-index":302, + display:"inline-block", border:0, padding:0, margin:0, + "background-color":"white", opacity:0, filter:"alpha(opacity=0)" + } + } + }); + + var FALSE, HOVER, EVENT; + MathJax.Hub.Register.StartupHook("MathEvents Ready",function () { + EVENT = MathJax.Extension.MathEvents.Event; + FALSE = MathJax.Extension.MathEvents.Event.False; + HOVER = MathJax.Extension.MathEvents.Hover; + }); + + /*************************************************************/ + + var ZOOM = MathJax.Extension.MathZoom = { + version: VERSION, + settings: HUB.config.menuSettings, + scrollSize: 18, // width of scrool bars + + // + // Process events passed from output jax + // + HandleEvent: function (event,type,math) { + if (ZOOM.settings.CTRL && !event.ctrlKey) return true; + if (ZOOM.settings.ALT && !event.altKey) return true; + if (ZOOM.settings.CMD && !event.metaKey) return true; + if (ZOOM.settings.Shift && !event.shiftKey) return true; + if (!ZOOM[type]) return true; + return ZOOM[type](event,math); + }, + + // + // Zoom on click + // + Click: function (event,math) { + if (this.settings.zoom === "Click") {return this.Zoom(event,math)} + }, + + // + // Zoom on double click + // + DblClick: function (event,math) { + if (this.settings.zoom === "Double-Click" || this.settings.zoom === "DoubleClick") {return this.Zoom(event,math)} + }, + + // + // Zoom on hover (called by MathEvents.Hover) + // + Hover: function (event,math) { + if (this.settings.zoom === "Hover") {this.Zoom(event,math); return true} + return false; + }, + + + // + // Handle the actual zooming + // + Zoom: function (event,math) { + // + // Remove any other zoom and clear timers + // + this.Remove(); HOVER.ClearHoverTimer(); EVENT.ClearSelection(); + + // + // Find the jax + // + var JAX = MathJax.OutputJax[math.jaxID]; + var jax = JAX.getJaxFromMath(math); + if (jax.hover) {HOVER.UnHover(jax)} + + // + // Create the DOM elements for the zoom box + // + var Mw = Math.floor(.85*document.body.clientWidth), + Mh = Math.floor(.85*Math.max(document.body.clientHeight,document.documentElement.clientHeight)); + var div = HTML.Element( + "span",{id:"MathJax_ZoomFrame"},[ + ["span",{id:"MathJax_ZoomOverlay", onmousedown:this.Remove}], + ["span",{ + id:"MathJax_Zoom", onclick:this.Remove, + style:{ + visibility:"hidden", fontSize:this.settings.zscale, + "max-width":Mw+"px", "max-height":Mh+"px" + } + },[["span",{style:{display:"inline-block", "white-space":"nowrap"}}]] + ]] + ); + var zoom = div.lastChild, span = zoom.firstChild, overlay = div.firstChild; + math.parentNode.insertBefore(div,math); math.parentNode.insertBefore(math,div); // put div after math + if (span.addEventListener) {span.addEventListener("mousedown",this.Remove,true)} + + if (this.msieTrapEventBug) { + var trap = HTML.Element("span",{id:"MathJax_ZoomEventTrap", onmousedown:this.Remove}); + div.insertBefore(trap,zoom); + } + + // + // Display the zoomed math + // + if (this.msieZIndexBug) { + // MSIE doesn't do z-index properly, so move the div to the document.body, + // and use an image as a tracker for the usual position + var tracker = HTML.addElement(document.body,"img",{ + src:"about:blank", id:"MathJax_ZoomTracker", width:0, height:0, + style:{width:0, height:0, position:"relative"} + }); + div.style.position = "relative"; + div.style.zIndex = CONFIG.styles["#MathJax_ZoomOverlay"]["z-index"]; + div = tracker; + } + + var bbox = JAX.Zoom(jax,span,math,Mw,Mh); + + // + // Fix up size and position for browsers with bugs (IE) + // + if (this.msiePositionBug) { + if (this.msieSizeBug) + {zoom.style.height = bbox.zH+"px"; zoom.style.width = bbox.zW+"px"} // IE8 gets the dimensions completely wrong + if (zoom.offsetHeight > Mh) {zoom.style.height = Mh+"px"; zoom.style.width = (bbox.zW+this.scrollSize)+"px"} // IE doesn't do max-height? + if (zoom.offsetWidth > Mw) {zoom.style.width = Mw+"px"; zoom.style.height = (bbox.zH+this.scrollSize)+"px"} + } + if (this.operaPositionBug) {zoom.style.width = Math.min(Mw,bbox.zW)+"px"} // Opera gets width as 0? + if (zoom.offsetWidth && zoom.offsetWidth < Mw && zoom.offsetHeight < Mh) + {zoom.style.overflow = "visible"} // don't show scroll bars if we don't need to + this.Position(zoom,bbox); + if (this.msieTrapEventBug) { + trap.style.height = zoom.clientHeight+"px"; trap.style.width = zoom.clientWidth+"px"; + trap.style.left = (parseFloat(zoom.style.left)+zoom.clientLeft)+"px"; + trap.style.top = (parseFloat(zoom.style.top)+zoom.clientTop)+"px"; + } + zoom.style.visibility = ""; + + // + // Add event handlers + // + if (this.settings.zoom === "Hover") {overlay.onmouseover = this.Remove} + if (window.addEventListener) {addEventListener("resize",this.Resize,false)} + else if (window.attachEvent) {attachEvent("onresize",this.Resize)} + else {this.onresize = window.onresize; window.onresize = this.Resize} + + // + // Let others know about the zoomed math + // + HUB.signal.Post(["math zoomed",jax]); + + // + // Canel further actions + // + return FALSE(event); + }, + + // + // Set the position of the zoom box and overlay + // + Position: function (zoom,bbox) { + var XY = this.Resize(), x = XY.x, y = XY.y, W = bbox.mW; + var dx = -W-Math.floor((zoom.offsetWidth-W)/2), dy = bbox.Y; + zoom.style.left = Math.max(dx,10-x)+"px"; zoom.style.top = Math.max(dy,10-y)+"px"; + if (!ZOOM.msiePositionBug) {ZOOM.SetWH()} // refigure overlay width/height + }, + + // + // Handle resizing of overlay while zoom is displayed + // + Resize: function (event) { + if (ZOOM.onresize) {ZOOM.onresize(event)} + var div = document.getElementById("MathJax_ZoomFrame"), + overlay = document.getElementById("MathJax_ZoomOverlay"); + var xy = ZOOM.getXY(div); + var obj = div.parentNode, overflow = ZOOM.getOverflow(obj); + while (obj.parentNode && obj !== document.body && overflow === "visible") { + obj = obj.parentNode + overflow = ZOOM.getOverflow(obj); + } + if (overflow !== "visible") { + overlay.scroll_parent = obj; // Save this for future reference. + var XY = ZOOM.getXY(obj); // Remove container position + xy.x -= XY.x; xy.y -= XY.y; + XY = ZOOM.getBorder(obj); // Remove container border + xy.x -= XY.x; xy.y -= XY.y; + } + overlay.style.left = (-xy.x)+"px"; overlay.style.top = (-xy.y)+"px"; + if (ZOOM.msiePositionBug) {setTimeout(ZOOM.SetWH,0)} else {ZOOM.SetWH()} + return xy; + }, + SetWH: function () { + var overlay = document.getElementById("MathJax_ZoomOverlay"); + overlay.style.width = overlay.style.height = "1px"; // so scrollWidth/Height will be right below + var doc = overlay.scroll_parent || document.documentElement || document.body; + overlay.style.width = doc.scrollWidth + "px"; + overlay.style.height = Math.max(doc.clientHeight,doc.scrollHeight) + "px"; + }, + // + // Look up CSS properties (use getComputeStyle if available, or currentStyle if not) + // + getOverflow: (window.getComputedStyle ? + function (obj) {return getComputedStyle(obj).overflow} : + function (obj) {return (obj.currentStyle||{overflow:"visible"}).overflow}), + getBorder: function (obj) { + var size = {thin: 1, medium: 2, thick: 3}; + var style = (window.getComputedStyle ? getComputedStyle(obj) : + (obj.currentStyle || {borderLeftWidth:0,borderTopWidth:0})); + var x = style.borderLeftWidth, y = style.borderTopWidth; + if (size[x]) {x = size[x]} else {x = parseInt(x)} + if (size[y]) {y = size[y]} else {y = parseInt(y)} + return {x:x, y:y}; + }, + // + // Get the position of an element on the page + // + getXY: function (div) { + var x = 0, y = 0, obj; + obj = div; while (obj.offsetParent) {x += obj.offsetLeft; obj = obj.offsetParent} + if (ZOOM.operaPositionBug) {div.style.border = "1px solid"} // to get vertical position right + obj = div; while (obj.offsetParent) {y += obj.offsetTop; obj = obj.offsetParent} + if (ZOOM.operaPositionBug) {div.style.border = ""} + return {x:x, y:y}; + }, + + // + // Remove zoom display and event handlers + // + Remove: function (event) { + var div = document.getElementById("MathJax_ZoomFrame"); + if (div) { + var JAX = MathJax.OutputJax[div.previousSibling.jaxID]; + var jax = JAX.getJaxFromMath(div.previousSibling); + HUB.signal.Post(["math unzoomed",jax]); + div.parentNode.removeChild(div); + div = document.getElementById("MathJax_ZoomTracker"); + if (div) {div.parentNode.removeChild(div)} + if (ZOOM.operaRefreshBug) { + // force a redisplay of the page + // (Opera doesn't refresh properly after the zoom is removed) + var overlay = HTML.addElement(document.body,"div",{ + style:{position:"fixed", left:0, top:0, width:"100%", height:"100%", + backgroundColor:"white", opacity:0}, + id: "MathJax_OperaDiv" + }); + document.body.removeChild(overlay); + } + if (window.removeEventListener) {removeEventListener("resize",ZOOM.Resize,false)} + else if (window.detachEvent) {detachEvent("onresize",ZOOM.Resize)} + else {window.onresize = ZOOM.onresize; delete ZOOM.onresize} + } + return FALSE(event); + } + + }; + + + /*************************************************************/ + + HUB.Browser.Select({ + MSIE: function (browser) { + var mode = (document.documentMode || 0); + var isIE9 = (mode >= 9); + ZOOM.msiePositionBug = !isIE9; + ZOOM.msieSizeBug = browser.versionAtLeast("7.0") && + (!document.documentMode || mode === 7 || mode === 8); + ZOOM.msieZIndexBug = (mode <= 7); + ZOOM.msieInlineBlockAlignBug = (mode <= 7); + ZOOM.msieTrapEventBug = !window.addEventListener; + if (document.compatMode === "BackCompat") {ZOOM.scrollSize = 52} // don't know why this is so far off + if (isIE9) {delete CONFIG.styles["#MathJax_Zoom"].filter} + }, + + Opera: function (browser) { + ZOOM.operaPositionBug = true; + ZOOM.operaRefreshBug = true; + } + }); + + ZOOM.topImg = (ZOOM.msieInlineBlockAlignBug ? + HTML.Element("img",{style:{width:0,height:0,position:"relative"},src:"about:blank"}) : + HTML.Element("span",{style:{width:0,height:0,display:"inline-block"}}) + ); + if (ZOOM.operaPositionBug || ZOOM.msieTopBug) {ZOOM.topImg.style.border="1px solid"} + + /*************************************************************/ + + MathJax.Callback.Queue( + ["StartupHook",MathJax.Hub.Register,"Begin Styles",{}], + ["Styles",AJAX,CONFIG.styles], + ["Post",HUB.Startup.signal,"MathZoom Ready"], + ["loadComplete",AJAX,"[MathJax]/extensions/MathZoom.js"] + ); + +})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax["HTML-CSS"],MathJax.OutputJax.NativeMML); diff --git a/modules/MathJax/unpacked/extensions/Safe.js b/modules/MathJax/unpacked/extensions/Safe.js new file mode 100644 index 0000000..92bf48f --- /dev/null +++ b/modules/MathJax/unpacked/extensions/Safe.js @@ -0,0 +1,348 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/Safe.js + * + * Implements a "Safe" mode that disables features that could be + * misused in a shared environment (such as href's to javascript URL's). + * See the CONFIG variable below for configuration options. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HUB,AJAX) { + var VERSION = "2.3"; + + var CONFIG = MathJax.Hub.CombineConfig("Safe",{ + allow: { + // + // Values can be "all", "safe", or "none" + // + URLs: "safe", // safe are in safeProtocols below + classes: "safe", // safe start with MJX- + cssIDs: "safe", // safe start with MJX- + styles: "safe", // safe are in safeStyles below + fontsize: "all", // safe are between sizeMin and sizeMax em's + require: "safe" // safe are in safeRequire below + }, + sizeMin: .7, // \scriptsize + sizeMax: 1.44, // \large + safeProtocols: { + http: true, + https: true, + file: true, + javascript: false + }, + safeStyles: { + color: true, + backgroundColor: true, + border: true, + cursor: true, + margin: true, + padding: true, + textShadow: true, + fontFamily: true, + fontSize: true, + fontStyle: true, + fontWeight: true, + opacity: true, + outline: true + }, + safeRequire: { + action: true, + amscd: true, + amsmath: true, + amssymbols: true, + autobold: false, + "autoload-all": false, + bbox: true, + begingroup: true, + boldsymbol: true, + cancel: true, + color: true, + enclose: true, + extpfeil: true, + HTML: true, + mathchoice: true, + mhchem: true, + newcommand: true, + noErrors: false, + noUndefined: false, + unicode: true, + verb: true + } + }); + + var ALLOW = CONFIG.allow; + if (ALLOW.fontsize !== "all") {CONFIG.safeStyles.fontSize = false} + + var SAFE = MathJax.Extension.Safe = { + version: VERSION, + config: CONFIG, + div1: document.createElement("div"), // for CSS processing + div2: document.createElement("div"), + + // + // Methods called for MathML attribute processing + // + filter: { + href: "filterURL", + src: "filterURL", + altimg: "filterURL", + "class": "filterClass", + style: "filterStyles", + id: "filterID", + fontsize: "filterFontSize", + mathsize: "filterFontSize", + scriptminsize: "filterFontSize", + scriptsizemultiplier: "filterSizeMultiplier", + scriptlevel: "filterScriptLevel" + }, + + // + // Filter HREF URL's + // + filterURL: function (url) { + var protocol = (url.match(/^\s*([a-z]+):/i)||[null,""])[1].toLowerCase(); + if (ALLOW.URLs === "none" || + (ALLOW.URLs !== "all" && !CONFIG.safeProtocols[protocol])) {url = null} + return url; + }, + + // + // Filter class names and css ID's + // + filterClass: function (CLASS) { + if (ALLOW.classes === "none" || + (ALLOW.classes !== "all" && !CLASS.match(/^MJX-[-a-zA-Z0-9_.]+$/))) {CLASS = null} + return CLASS; + }, + filterID: function (id) { + if (ALLOW.cssIDs === "none" || + (ALLOW.cssIDs !== "all" && !id.match(/^MJX-[-a-zA-Z0-9_.]+$/))) {id = null} + return id; + }, + + // + // Filter style strings + // + filterStyles: function (styles) { + if (ALLOW.styles === "all") {return styles} + if (ALLOW.styles === "none") {return null} + try { + // + // Set the div1 styles to the given styles, and clear div2 + // + var STYLE1 = this.div1.style, STYLE2 = this.div2.style; + STYLE1.cssText = styles; STYLE2.cssText = ""; + // + // Check each allowed style and transfer OK ones to div2 + // + for (var name in CONFIG.safeStyles) {if (CONFIG.safeStyles.hasOwnProperty(name)) { + var value = this.filterStyle(name,STYLE1[name]); + if (value != null) {STYLE2[name] = value} + }} + // + // Return the div2 style string + // + styles = STYLE2.cssText; + } catch (e) {styles = null} + return styles; + }, + // + // Filter an individual name:value style pair + // + filterStyle: function (name,value) { + if (typeof value !== "string") {return null} + if (value.match(/^\s*expression/)) {return null} + if (value.match(/javascript:/)) {return null} + return (CONFIG.safeStyles[name] ? value : null); + }, + + // + // Filter TeX font size values (in em's) + // + filterSize: function (size) { + if (ALLOW.fontsize === "none") {return null} + if (ALLOW.fontsize !== "all") + {size = Math.min(Math.max(size,CONFIG.sizeMin),CONFIG.sizeMax)} + return size; + }, + filterFontSize: function (size) { + return (ALLOW.fontsize === "all" ? size: null); + }, + + // + // Filter scriptsizemultiplier + // + filterSizeMultiplier: function (size) { + if (ALLOW.fontsize === "none") {size = null} + else if (ALLOW.fontsize !== "all") {size = Math.min(1,Math.max(.6,size)).toString()} + return size; + }, + // + // Filter scriptLevel + // + filterScriptLevel: function (level) { + if (ALLOW.fontsize === "none") {level = null} + else if (ALLOW.fontsize !== "all") {level = Math.max(0,level).toString()} + return level; + }, + + // + // Filter TeX extension names + // + filterRequire: function (name) { + if (ALLOW.require === "none" || + (ALLOW.require !== "all" && !CONFIG.safeRequire[name.toLowerCase()])) + {name = null} + return name; + } + + }; + + HUB.Register.StartupHook("TeX HTML Ready",function () { + var TEX = MathJax.InputJax.TeX; + + TEX.Parse.Augment({ + + // + // Implements \href{url}{math} with URL filter + // + HREF_attribute: function (name) { + var url = SAFE.filterURL(this.GetArgument(name)), + arg = this.GetArgumentMML(name); + if (url) {arg.With({href:url})} + this.Push(arg); + }, + + // + // Implements \class{name}{math} with class-name filter + // + CLASS_attribute: function (name) { + var CLASS = SAFE.filterClass(this.GetArgument(name)), + arg = this.GetArgumentMML(name); + if (CLASS) { + if (arg["class"] != null) {CLASS = arg["class"] + " " + CLASS} + arg.With({"class":CLASS}); + } + this.Push(arg); + }, + + // + // Implements \style{style-string}{math} with style filter + // + STYLE_attribute: function (name) { + var style = SAFE.filterStyles(this.GetArgument(name)), + arg = this.GetArgumentMML(name); + if (style) { + if (arg.style != null) { + if (style.charAt(style.length-1) !== ";") {style += ";"} + style = arg.style + " " + style; + } + arg.With({style: style}); + } + this.Push(arg); + }, + + // + // Implements \cssId{id}{math} with ID filter + // + ID_attribute: function (name) { + var ID = SAFE.filterID(this.GetArgument(name)), + arg = this.GetArgumentMML(name); + if (ID) {arg.With({id:ID})} + this.Push(arg); + } + + }); + + }); + + HUB.Register.StartupHook("TeX Jax Ready",function () { + var TEX = MathJax.InputJax.TeX, + PARSE = TEX.Parse, METHOD = SAFE.filter; + + PARSE.Augment({ + + // + // Implements \require{name} with filtering + // + Require: function (name) { + var file = this.GetArgument(name).replace(/.*\//,"").replace(/[^a-z0-9_.-]/ig,""); + file = SAFE.filterRequire(file); + if (file) {this.Extension(null,file)} + }, + + // + // Controls \mmlToken attributes + // + MmlFilterAttribute: function (name,value) { + if (METHOD[name]) {value = SAFE[METHOD[name]](value)} + return value; + }, + + // + // Handles font size macros with filtering + // + SetSize: function (name,size) { + size = SAFE.filterSize(size); + if (size) { + this.stack.env.size = size; + this.Push(TEX.Stack.Item.style().With({styles: {mathsize: size+"em"}})); + } + } + + }); + }); + + HUB.Register.StartupHook("TeX bbox Ready",function () { + var TEX = MathJax.InputJax.TeX; + + // + // Filter the styles for \bbox + // + TEX.Parse.Augment({ + BBoxStyle: function (styles) {return SAFE.filterStyles(styles)} + }); + + }); + + HUB.Register.StartupHook("MathML Jax Ready",function () { + var PARSE = MathJax.InputJax.MathML.Parse, + METHOD = SAFE.filter; + + // + // Filter MathML attributes + // + PARSE.Augment({ + filterAttribute: function (name,value) { + if (METHOD[name]) {value = SAFE[METHOD[name]](value)} + return value; + } + }); + + }); + + // MathML input (href, style, fontsize, class, id) + + HUB.Startup.signal.Post("Safe Extension Ready"); + AJAX.loadComplete("[MathJax]/extensions/Safe.js"); + +})(MathJax.Hub,MathJax.Ajax); diff --git a/modules/MathJax/unpacked/extensions/TeX/AMScd.js b/modules/MathJax/unpacked/extensions/TeX/AMScd.js new file mode 100644 index 0000000..4282c4b --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/AMScd.js @@ -0,0 +1,147 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/AMScd.js + * + * Implements the CD environment for commutative diagrams. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/AMScd"] = { + version: "2.3", + config: MathJax.Hub.CombineConfig("TeX.CD",{ + colspace: "5pt", + rowspace: "5pt", + harrowsize: "2.25em", + varrowsize: "1.75em", + hideHorizontalLabels: false + }) +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var MML = MathJax.ElementJax.mml, + TEX = MathJax.InputJax.TeX, + STACKITEM = TEX.Stack.Item, + TEXDEF = TEX.Definitions, + CONFIG = MathJax.Extension["TeX/AMScd"].config; + + TEXDEF.environment.CD = "CD_env"; + TEXDEF.special["@"] = "CD_arrow"; + TEXDEF.macros.minCDarrowwidth = "CD_minwidth"; + TEXDEF.macros.minCDarrowheight = "CD_minheight"; + + TEX.Parse.Augment({ + // + // Implements \begin{CD}...\end{CD} + // + CD_env: function (begin) { + this.Push(begin); + return STACKITEM.array().With({ + arraydef: { + columnalign: "center", + columnspacing: CONFIG.colspace, + rowspacing: CONFIG.rowspace, + displaystyle: true + }, + minw: this.stack.env.CD_minw || CONFIG.harrowsize, + minh: this.stack.env.CD_minh || CONFIG.varrowsize + }); + }, + + CD_arrow: function (name) { + var c = this.string[this.i]; + if (!c.match(/[>>> @<<< @VVV and @AAA, get the arrow and labels + // + var arrow = {">":"\u2192", "<":"\u2190", V:"\u2193", A:"\u2191"}[c]; + var a = this.GetUpTo(name+c,c), + b = this.GetUpTo(name+c,c); + + if (c === ">" || c === "<") { + // + // Lay out horizontal arrows with munderover if it has labels + // + mml = MML.mo(arrow).With(hdef); + if (!a) {a = "\\kern "+top.minw} // minsize needs work + if (a || b) { + var pad = {width:"+11mu", lspace:"6mu"}; + mml = MML.munderover(this.mmlToken(mml)); + if (a) { + a = TEX.Parse(a,this.stack.env).mml(); + mml.SetData(mml.over,MML.mpadded(a).With(pad).With({voffset:".1em"})); + } + if (b) { + b = TEX.Parse(b,this.stack.env).mml(); + mml.SetData(mml.under,MML.mpadded(b).With(pad)); + } + if (CONFIG.hideHorizontalLabels) + {mml = MML.mpadded(mml).With({depth:0, height:".67em"})} + } + } else { + // + // Lay out vertical arrows with mrow if there are labels + // + mml = arrow = this.mmlToken(MML.mo(arrow).With(vdef)); + if (a || b) { + mml = MML.mrow(); + if (a) {mml.Append(TEX.Parse("\\scriptstyle\\llap{"+a+"}",this.stack.env).mml())} + mml.Append(arrow.With({texClass: MML.TEXCLASS.ORD})); + if (b) {mml.Append(TEX.Parse("\\scriptstyle\\rlap{"+b+"}",this.stack.env).mml())} + } + } + } + if (mml) {this.Push(mml)}; + this.CD_cell(name); + }, + CD_cell: function (name) { + this.Push(STACKITEM.cell().With({isEntry:true, name:name})); + }, + + CD_minwidth: function (name) { + this.stack.env.CD_minw = this.GetDimen(name); + }, + CD_minheight: function (name) { + this.stack.env.CD_minh = this.GetDimen(name); + } + + }); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/AMScd.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/AMSmath.js b/modules/MathJax/unpacked/extensions/TeX/AMSmath.js new file mode 100644 index 0000000..d040779 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/AMSmath.js @@ -0,0 +1,607 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/AMSmath.js + * + * Implements AMS math environments and macros. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/AMSmath"] = { + version: "2.3", + + number: 0, // current equation number + startNumber: 0, // current starting equation number (for when equation is restarted) + labels: {}, // the set of labels + eqlabels: {}, // labels in the current equation + refs: [] // array of jax with unresolved references +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var MML = MathJax.ElementJax.mml, + TEX = MathJax.InputJax.TeX, + AMS = MathJax.Extension["TeX/AMSmath"]; + + var TEXDEF = TEX.Definitions, + STACKITEM = TEX.Stack.Item, + CONFIG = TEX.config.equationNumbers; + + var COLS = function (W) { + var WW = []; + for (var i = 0, m = W.length; i < m; i++) + {WW[i] = TEX.Parse.prototype.Em(W[i])} + return WW.join(" "); + }; + + /******************************************************************************/ + + TEXDEF.Add({ + mathchar0mo: { + iiiint: ['2A0C',{texClass: MML.TEXCLASS.OP}] + }, + + macros: { + mathring: ['Accent','2DA'], // or 0x30A + + nobreakspace: 'Tilde', + negmedspace: ['Spacer',MML.LENGTH.NEGATIVEMEDIUMMATHSPACE], + negthickspace: ['Spacer',MML.LENGTH.NEGATIVETHICKMATHSPACE], + +// intI: ['Macro','\\mathchoice{\\!}{}{}{}\\!\\!\\int'], +// iint: ['MultiIntegral','\\int\\intI'], // now in core TeX input jax +// iiint: ['MultiIntegral','\\int\\intI\\intI'], // now in core TeX input jax +// iiiint: ['MultiIntegral','\\int\\intI\\intI\\intI'], // now in mathchar0mo above + idotsint: ['MultiIntegral','\\int\\cdots\\int'], + +// dddot: ['Macro','\\mathop{#1}\\limits^{\\textstyle \\mathord{.}\\mathord{.}\\mathord{.}}',1], +// ddddot: ['Macro','\\mathop{#1}\\limits^{\\textstyle \\mathord{.}\\mathord{.}\\mathord{.}\\mathord{.}}',1], + dddot: ['Accent','20DB'], + ddddot: ['Accent','20DC'], + + sideset: ['Macro','\\mathop{\\mathop{\\rlap{\\phantom{#3}}}\\nolimits#1\\!\\mathop{#3}\\nolimits#2}',3], + + boxed: ['Macro','\\fbox{$\\displaystyle{#1}$}',1], + + tag: 'HandleTag', + notag: 'HandleNoTag', + label: 'HandleLabel', + ref: 'HandleRef', + eqref: ['HandleRef',true], + + substack: ['Macro','\\begin{subarray}{c}#1\\end{subarray}',1], + + injlim: ['NamedOp','inj lim'], + projlim: ['NamedOp','proj lim'], + varliminf: ['Macro','\\mathop{\\underline{\\mmlToken{mi}{lim}}}'], + varlimsup: ['Macro','\\mathop{\\overline{\\mmlToken{mi}{lim}}}'], + varinjlim: ['Macro','\\mathop{\\underrightarrow{\\mmlToken{mi}{lim}\\Rule{-1pt}{0pt}{1pt}}\\Rule{0pt}{0pt}{.45em}}'], + varprojlim: ['Macro','\\mathop{\\underleftarrow{\\mmlToken{mi}{lim}\\Rule{-1pt}{0pt}{1pt}}\\Rule{0pt}{0pt}{.45em}}'], + + DeclareMathOperator: 'HandleDeclareOp', + operatorname: 'HandleOperatorName', + + genfrac: 'Genfrac', + frac: ['Genfrac',"","","",""], + tfrac: ['Genfrac',"","","",1], + dfrac: ['Genfrac',"","","",0], + binom: ['Genfrac',"(",")","0em",""], + tbinom: ['Genfrac',"(",")","0em",1], + dbinom: ['Genfrac',"(",")","0em",0], + + cfrac: 'CFrac', + + shoveleft: ['HandleShove',MML.ALIGN.LEFT], + shoveright: ['HandleShove',MML.ALIGN.RIGHT], + + xrightarrow: ['xArrow',0x2192,5,6], + xleftarrow: ['xArrow',0x2190,7,3] + }, + + environment: { + align: ['AMSarray',null,true,true, 'rlrlrlrlrlrl',COLS([5/18,2,5/18,2,5/18,2,5/18,2,5/18,2,5/18])], + 'align*': ['AMSarray',null,false,true, 'rlrlrlrlrlrl',COLS([5/18,2,5/18,2,5/18,2,5/18,2,5/18,2,5/18])], + multline: ['Multline',null,true], + 'multline*': ['Multline',null,false], + split: ['AMSarray',null,false,false,'rl',COLS([5/18])], + gather: ['AMSarray',null,true,true, 'c'], + 'gather*': ['AMSarray',null,false,true, 'c'], + + alignat: ['AlignAt',null,true,true], + 'alignat*': ['AlignAt',null,false,true], + alignedat: ['AlignAt',null,false,false], + + aligned: ['AlignedArray',null,null,null,'rlrlrlrlrlrl',COLS([5/18,2,5/18,2,5/18,2,5/18,2,5/18,2,5/18]),".5em",'D'], + gathered: ['AlignedArray',null,null,null,'c',null,".5em",'D'], + + subarray: ['Array',null,null,null,null,COLS([0,0,0,0]),"0.1em",'S',1], + smallmatrix: ['Array',null,null,null,'c',COLS([1/3]),".2em",'S',1], + + 'equation': ['EquationBegin','Equation',true], + 'equation*': ['EquationBegin','EquationStar',false], + + eqnarray: ['AMSarray',null,true,true, 'rcl',MML.LENGTH.THICKMATHSPACE,".5em"], + 'eqnarray*': ['AMSarray',null,false,true,'rcl',MML.LENGTH.THICKMATHSPACE,".5em"] + }, + + delimiter: { + '\\lvert': ['2223',{texClass:MML.TEXCLASS.OPEN}], + '\\rvert': ['2223',{texClass:MML.TEXCLASS.CLOSE}], + '\\lVert': ['2225',{texClass:MML.TEXCLASS.OPEN}], + '\\rVert': ['2225',{texClass:MML.TEXCLASS.CLOSE}] + } + },null,true); + + + /******************************************************************************/ + + TEX.Parse.Augment({ + + /* + * Add the tag to the environment (to be added to the table row later) + */ + HandleTag: function (name) { + var star = this.GetStar(); + var arg = this.trimSpaces(this.GetArgument(name)), tag = arg; + if (!star) {arg = CONFIG.formatTag(arg)} + var global = this.stack.global; global.tagID = tag; + if (global.notags) { + TEX.Error(["CommandNotAllowedInEnv", + "%1 not allowed in %2 environment", + name,global.notags] + ); + } + if (global.tag) {TEX.Error(["MultipleCommand","Multiple %1",name])} + global.tag = MML.mtd.apply(MML,this.InternalMath(arg)).With({id:CONFIG.formatID(tag)}); + }, + HandleNoTag: function (name) { + if (this.stack.global.tag) {delete this.stack.global.tag} + this.stack.global.notag = true; // prevent auto-tagging + }, + + /* + * Record a label name for a tag + */ + HandleLabel: function (name) { + var global = this.stack.global, label = this.GetArgument(name); + if (label === "") return; + if (!AMS.refUpdate) { + if (global.label) {TEX.Error(["MultipleCommand","Multiple %1",name])} + global.label = label; + if (AMS.labels[label] || AMS.eqlabels[label]) + {TEX.Error(["MultipleLabel","Label '%1' multiply defined",label])} + AMS.eqlabels[label] = "???"; // will be replaced by tag value later + } + }, + + /* + * Handle a label reference + */ + HandleRef: function (name,eqref) { + var label = this.GetArgument(name); + var ref = AMS.labels[label] || AMS.eqlabels[label]; + if (!ref) {ref = "??"; AMS.badref = !AMS.refUpdate} + var tag = ref; if (eqref) {tag = CONFIG.formatTag(tag)} + if (CONFIG.useLabelIds) {ref = label} + this.Push(MML.mrow.apply(MML,this.InternalMath(tag)).With({ + href:CONFIG.formatURL(CONFIG.formatID(ref)), "class":"MathJax_ref" + })); + }, + + /* + * Handle \DeclareMathOperator + */ + HandleDeclareOp: function (name) { + var limits = (this.GetStar() ? "\\limits" : ""); + var cs = this.trimSpaces(this.GetArgument(name)); + if (cs.charAt(0) == "\\") {cs = cs.substr(1)} + var op = this.GetArgument(name); + op = op.replace(/\*/g,'\\text{*}').replace(/-/g,'\\text{-}'); + TEX.Definitions.macros[cs] = ['Macro','\\mathop{\\rm '+op+'}'+limits]; + }, + + HandleOperatorName: function (name) { + var limits = (this.GetStar() ? "\\limits" : "\\nolimits"); + var op = this.trimSpaces(this.GetArgument(name)); + op = op.replace(/\*/g,'\\text{*}').replace(/-/g,'\\text{-}'); + this.string = '\\mathop{\\rm '+op+'}'+limits+" "+this.string.slice(this.i); + this.i = 0; + }, + + /* + * Record presence of \shoveleft and \shoveright + */ + HandleShove: function (name,shove) { + var top = this.stack.Top(); + if (top.type !== "multline" || top.data.length) { + TEX.Error(["CommandAtTheBeginingOfLine", + "%1 must come at the beginning of the line",name]); + } + top.data.shove = shove; + }, + + /* + * Handle \cfrac + */ + CFrac: function (name) { + var lr = this.trimSpaces(this.GetBrackets(name,"")), + num = this.GetArgument(name), + den = this.GetArgument(name); + var frac = MML.mfrac(TEX.Parse('\\strut\\textstyle{'+num+'}',this.stack.env).mml(), + TEX.Parse('\\strut\\textstyle{'+den+'}',this.stack.env).mml()); + lr = ({l:MML.ALIGN.LEFT, r:MML.ALIGN.RIGHT,"":""})[lr]; + if (lr == null) + {TEX.Error(["IllegalAlign","Illegal alignment specified in %1",name])} + if (lr) {frac.numalign = frac.denomalign = lr} + this.Push(frac); + }, + + /* + * Implement AMS generalized fraction + */ + Genfrac: function (name,left,right,thick,style) { + if (left == null) {left = this.GetDelimiterArg(name)} else {left = this.convertDelimiter(left)} + if (right == null) {right = this.GetDelimiterArg(name)} else {right = this.convertDelimiter(right)} + if (thick == null) {thick = this.GetArgument(name)} + if (style == null) {style = this.trimSpaces(this.GetArgument(name))} + var num = this.ParseArg(name); + var den = this.ParseArg(name); + var frac = MML.mfrac(num,den); + if (thick !== "") {frac.linethickness = thick} + if (left || right) {frac = TEX.fenced(left,frac,right)} + if (style !== "") { + var STYLE = (["D","T","S","SS"])[style]; + if (STYLE == null) + {TEX.Error(["BadMathStyleFor","Bad math style for %1",name])} + frac = MML.mstyle(frac); + if (STYLE === "D") {frac.displaystyle = true; frac.scriptlevel = 0} + else {frac.displaystyle = false; frac.scriptlevel = style - 1} + } + this.Push(frac); + }, + + /* + * Implements multline environment (mostly handled through STACKITEM below) + */ + Multline: function (begin,numbered) { + this.Push(begin); this.checkEqnEnv(); + return STACKITEM.multline(numbered,this.stack).With({ + arraydef: { + displaystyle: true, + rowspacing: ".5em", + width: TEX.config.MultLineWidth, columnwidth:"100%", + side: TEX.config.TagSide, + minlabelspacing: TEX.config.TagIndent + } + }); + }, + + /* + * Handle AMS aligned environments + */ + AMSarray: function (begin,numbered,taggable,align,spacing) { + this.Push(begin); if (taggable) {this.checkEqnEnv()} + align = align.replace(/[^clr]/g,'').split('').join(' '); + align = align.replace(/l/g,'left').replace(/r/g,'right').replace(/c/g,'center'); + return STACKITEM.AMSarray(begin.name,numbered,taggable,this.stack).With({ + arraydef: { + displaystyle: true, + rowspacing: ".5em", + columnalign: align, + columnspacing: (spacing||"1em"), + rowspacing: "3pt", + side: TEX.config.TagSide, + minlabelspacing: TEX.config.TagIndent + } + }); + }, + + /* + * Handle alignat environments + */ + AlignAt: function (begin,numbered,taggable) { + var n, valign, align = "", spacing = []; + if (!taggable) {valign = this.GetBrackets("\\begin{"+begin.name+"}")} + n = this.GetArgument("\\begin{"+begin.name+"}"); + if (n.match(/[^0-9]/)) { + TEX.Error(["PositiveIntegerArg","Argument to %1 must me a positive integer", + "\\begin{"+begin.name+"}"]); + } + while (n > 0) {align += "rl"; spacing.push("0em 0em"); n--} + spacing = spacing.join(" "); + if (taggable) {return this.AMSarray(begin,numbered,taggable,align,spacing)} + var array = this.Array.call(this,begin,null,null,align,spacing,".5em",'D'); + return this.setArrayAlign(array,valign); + }, + + /* + * Handle equation environment + */ + EquationBegin: function (begin,force) { + this.checkEqnEnv(); + this.stack.global.forcetag = (force && CONFIG.autoNumber !== "none"); + return begin; + }, + EquationStar: function (begin,row) { + this.stack.global.tagged = true; // prevent automatic tagging + return row; + }, + + /* + * Check for bad nesting of equation environments + */ + checkEqnEnv: function () { + if (this.stack.global.eqnenv) + {TEX.Error(["ErroneousNestingEq","Erroneous nesting of equation structures"])} + this.stack.global.eqnenv = true; + }, + + /* + * Handle multiple integrals (make a mathop if followed by limits) + */ + MultiIntegral: function (name,integral) { + var next = this.GetNext(); + if (next === "\\") { + var i = this.i; next = this.GetArgument(name); this.i = i; + if (next === "\\limits") { + if (name === "\\idotsint") {integral = "\\!\\!\\mathop{\\,\\,"+integral+"}"} + else {integral = "\\!\\!\\!\\mathop{\\,\\,\\,"+integral+"}"} + } + } + this.string = integral + " " + this.string.slice(this.i); + this.i = 0; + }, + + /* + * Handle stretchable arrows + */ + xArrow: function (name,chr,l,r) { + var def = {width: "+"+(l+r)+"mu", lspace: l+"mu"}; + var bot = this.GetBrackets(name), + top = this.ParseArg(name); + var arrow = MML.mo(MML.chars(String.fromCharCode(chr))).With({ + stretchy: true, texClass: MML.TEXCLASS.REL + }); + var mml = MML.munderover(arrow); + mml.SetData(mml.over,MML.mpadded(top).With(def).With({voffset:".15em"})); + if (bot) { + bot = TEX.Parse(bot,this.stack.env).mml() + mml.SetData(mml.under,MML.mpadded(bot).With(def).With({voffset:"-.24em"})); + } + this.Push(mml); + }, + + /* + * Get a delimiter or empty argument + */ + GetDelimiterArg: function (name) { + var c = this.trimSpaces(this.GetArgument(name)); + if (c == "") {return null} + if (TEXDEF.delimiter[c] == null) { + TEX.Error(["MissingOrUnrecognizedDelim", + "Missing or unrecognized delimiter for %1",name]); + } + return this.convertDelimiter(c); + }, + + /* + * Get a star following a control sequence name, if any + */ + GetStar: function () { + var star = (this.GetNext() === "*"); + if (star) {this.i++} + return star; + } + + }); + + /******************************************************************************/ + + STACKITEM.Augment({ + /* + * Increment equation number and form tag mtd element + */ + autoTag: function () { + var global = this.global; + if (!global.notag) { + AMS.number++; global.tagID = CONFIG.formatNumber(AMS.number.toString()); + var mml = TEX.Parse("\\text{"+CONFIG.formatTag(global.tagID)+"}",{}).mml(); + global.tag = MML.mtd(mml.With({id:CONFIG.formatID(global.tagID)})); + } + }, + + /* + * Get the tag and record the label, if any + */ + getTag: function () { + var global = this.global, tag = global.tag; global.tagged = true; + if (global.label) { + AMS.eqlabels[global.label] = global.tagID; + if (CONFIG.useLabelIds) {tag.id = CONFIG.formatID(global.label)} + } + delete global.tag; delete global.tagID; delete global.label; + return tag; + } + }); + + /* + * Implement multline environment via a STACKITEM + */ + STACKITEM.multline = STACKITEM.array.Subclass({ + type: "multline", + Init: function (numbered,stack) { + this.SUPER(arguments).Init.apply(this); + this.numbered = (numbered && CONFIG.autoNumber !== "none"); + this.save = {notag: stack.global.notag}; + stack.global.tagged = !numbered && !stack.global.forcetag; // prevent automatic tagging in starred environments + }, + EndEntry: function () { + var mtd = MML.mtd.apply(MML,this.data); + if (this.data.shove) {mtd.columnalign = this.data.shove} + this.row.push(mtd); + this.data = []; + }, + EndRow: function () { + if (this.row.length != 1) { + TEX.Error(["MultlineRowsOneCol", + "The rows within the %1 environment must have exactly one column", + "multline"]); + } + this.table.push(this.row); this.row = []; + }, + EndTable: function () { + this.SUPER(arguments).EndTable.call(this); + if (this.table.length) { + var m = this.table.length-1, i, label = -1; + if (!this.table[0][0].columnalign) {this.table[0][0].columnalign = MML.ALIGN.LEFT} + if (!this.table[m][0].columnalign) {this.table[m][0].columnalign = MML.ALIGN.RIGHT} + if (!this.global.tag && this.numbered) {this.autoTag()} + if (this.global.tag && !this.global.notags) { + label = (this.arraydef.side === "left" ? 0 : this.table.length - 1); + this.table[label] = [this.getTag()].concat(this.table[label]); + } + for (i = 0, m = this.table.length; i < m; i++) { + var mtr = (i === label ? MML.mlabeledtr : MML.mtr); + this.table[i] = mtr.apply(MML,this.table[i]); + } + } + this.global.notag = this.save.notag; + } + }); + + /* + * Save data about numbering and taging equations, and add + * tags at the ends of rows. + */ + STACKITEM.AMSarray = STACKITEM.array.Subclass({ + type: "AMSarray", + Init: function (name,numbered,taggable,stack) { + this.SUPER(arguments).Init.apply(this); + this.numbered = (numbered && CONFIG.autoNumber !== "none"); + this.save = {notags: stack.global.notags, notag: stack.global.notag}; + stack.global.notags = (taggable ? null : name); + stack.global.tagged = !numbered && !stack.global.forcetag; // prevent automatic tagging in starred environments + }, + EndRow: function () { + var mtr = MML.mtr; + if (!this.global.tag && this.numbered) {this.autoTag()} + if (this.global.tag && !this.global.notags) { + this.row = [this.getTag()].concat(this.row); + mtr = MML.mlabeledtr; + } + if (this.numbered) {delete this.global.notag} + this.table.push(mtr.apply(MML,this.row)); this.row = []; + }, + EndTable: function () { + this.SUPER(arguments).EndTable.call(this); + this.global.notags = this.save.notags; + this.global.notag = this.save.notag; + } + }); + + // + // Look for \tag on a formula and make an mtable to include it + // + STACKITEM.start.Augment({ + oldCheckItem: STACKITEM.start.prototype.checkItem, + checkItem: function (item) { + if (item.type === "stop") { + var mml = this.mmlData(), global = this.global; + if (AMS.display && !global.tag && !global.tagged && !global.isInner && + (CONFIG.autoNumber === "all" || global.forcetag)) {this.autoTag()} + if (global.tag) { + var row = [this.getTag(),MML.mtd(mml)]; + var def = { + side: TEX.config.TagSide, + minlabelspacing: TEX.config.TagIndent, + columnalign: mml.displayAlign + }; + if (mml.displayAlign === MML.INDENTALIGN.LEFT) { + def.width = "100%"; + if (mml.displayIndent && !String(mml.displayIndent).match(/^0+(\.0*)?($|[a-z%])/)) { + def.columnwidth = mml.displayIndent + " fit"; def.columnspacing = "0" + row = [row[0],MML.mtd(),row[1]]; + } + } else if (mml.displayAlign === MML.INDENTALIGN.RIGHT) { + def.width = "100%"; + if (mml.displayIndent && !String(mml.displayIndent).match(/^0+(\.0*)?($|[a-z%])/)) { + def.columnwidth = "fit "+mml.displayIndent; def.columnspacing = "0" + row[2] = MML.mtd(); + } + } + mml = MML.mtable(MML.mlabeledtr.apply(MML,row)).With(def); + } + return STACKITEM.mml(mml); + } + return this.oldCheckItem.call(this,item); + } + }); + + /******************************************************************************/ + + /* + * Add pre- and post-filters to handle the equation number maintainance. + */ + TEX.prefilterHooks.Add(function (data) { + AMS.display = data.display; + AMS.number = AMS.startNumber; // reset equation numbers (in case the equation restarted) + AMS.eqlabels = {}; AMS.badref = false; + if (AMS.refUpdate) {AMS.number = data.script.MathJax.startNumber} + }); + TEX.postfilterHooks.Add(function (data) { + data.script.MathJax.startNumber = AMS.startNumber; + AMS.startNumber = AMS.number; // equation numbers for next equation + MathJax.Hub.Insert(AMS.labels,AMS.eqlabels); // save labels from this equation + if (AMS.badref && !data.math.texError) {AMS.refs.push(data.script)} // reprocess later + }); + + MathJax.Hub.Register.MessageHook("Begin Math Input",function () { + AMS.refs = []; // array of jax with bad references + AMS.refUpdate = false; + }); + MathJax.Hub.Register.MessageHook("End Math Input",function (message) { + if (AMS.refs.length) { + AMS.refUpdate = true; + for (var i = 0, m = AMS.refs.length; i < m; i++) + {AMS.refs[i].MathJax.state = MathJax.ElementJax.STATE.UPDATE} + return MathJax.Hub.processInput({ + scripts:AMS.refs, + start: new Date().getTime(), + i:0, j:0, jax:{}, jaxIDs:[] + }); + } + return null; + }); + + // + // Clear the equation numbers and labels + // + TEX.resetEquationNumbers = function (n,keepLabels) { + AMS.startNumber = (n || 0); + if (!keepLabels) {AMS.labels = {}} + } + + /******************************************************************************/ + + MathJax.Hub.Startup.signal.Post("TeX AMSmath Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/AMSmath.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/AMSsymbols.js b/modules/MathJax/unpacked/extensions/TeX/AMSsymbols.js new file mode 100644 index 0000000..75450bf --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/AMSsymbols.js @@ -0,0 +1,349 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/AMSsymbols.js + * + * Implements macros for accessing the AMS symbol fonts. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/AMSsymbols"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var MML = MathJax.ElementJax.mml, + TEXDEF = MathJax.InputJax.TeX.Definitions; + + TEXDEF.Add({ + + mathchar0mi: { + // Lowercase Greek letters + digamma: '03DD', + varkappa: '03F0', + + // Uppercase Greek letters + varGamma: ['0393',{mathvariant: MML.VARIANT.ITALIC}], + varDelta: ['0394',{mathvariant: MML.VARIANT.ITALIC}], + varTheta: ['0398',{mathvariant: MML.VARIANT.ITALIC}], + varLambda: ['039B',{mathvariant: MML.VARIANT.ITALIC}], + varXi: ['039E',{mathvariant: MML.VARIANT.ITALIC}], + varPi: ['03A0',{mathvariant: MML.VARIANT.ITALIC}], + varSigma: ['03A3',{mathvariant: MML.VARIANT.ITALIC}], + varUpsilon: ['03A5',{mathvariant: MML.VARIANT.ITALIC}], + varPhi: ['03A6',{mathvariant: MML.VARIANT.ITALIC}], + varPsi: ['03A8',{mathvariant: MML.VARIANT.ITALIC}], + varOmega: ['03A9',{mathvariant: MML.VARIANT.ITALIC}], + + // Hebrew letters + beth: '2136', + gimel: '2137', + daleth: '2138', + + // Miscellaneous symbols +// hbar: '0127', // in TeX/jax.js + backprime: ['2035',{variantForm: true}], + hslash: '210F', + varnothing: ['2205',{variantForm: true}], + blacktriangle: '25B4', + triangledown: ['25BD',{variantForm: true}], + blacktriangledown: '25BE', + square: '25FB', + Box: '25FB', + blacksquare: '25FC', + lozenge: '25CA', + Diamond: '25CA', + blacklozenge: '29EB', + circledS: ['24C8',{mathvariant: MML.VARIANT.NORMAL}], + bigstar: '2605', +// angle: '2220', // in TeX/jax.js + sphericalangle: '2222', + measuredangle: '2221', + nexists: '2204', + complement: '2201', + mho: '2127', + eth: ['00F0',{mathvariant: MML.VARIANT.NORMAL}], + Finv: '2132', + diagup: '2571', + Game: '2141', + diagdown: '2572', + Bbbk: ['006B',{mathvariant: MML.VARIANT.DOUBLESTRUCK}], + + yen: '00A5', + circledR: '00AE', + checkmark: '2713', + maltese: '2720' + }, + + mathchar0mo: { + // Binary operators + dotplus: '2214', + ltimes: '22C9', + smallsetminus: '2216', + rtimes: '22CA', + Cap: '22D2', + doublecap: '22D2', + leftthreetimes: '22CB', + Cup: '22D3', + doublecup: '22D3', + rightthreetimes: '22CC', + barwedge: '22BC', + curlywedge: '22CF', + veebar: '22BB', + curlyvee: '22CE', + doublebarwedge: '2A5E', + boxminus: '229F', + circleddash: '229D', + boxtimes: '22A0', + circledast: '229B', + boxdot: '22A1', + circledcirc: '229A', + boxplus: '229E', + centerdot: '22C5', + divideontimes: '22C7', + intercal: '22BA', + + // Binary relations + leqq: '2266', + geqq: '2267', + leqslant: '2A7D', + geqslant: '2A7E', + eqslantless: '2A95', + eqslantgtr: '2A96', + lesssim: '2272', + gtrsim: '2273', + lessapprox: '2A85', + gtrapprox: '2A86', + approxeq: '224A', + lessdot: '22D6', + gtrdot: '22D7', + lll: '22D8', + llless: '22D8', + ggg: '22D9', + gggtr: '22D9', + lessgtr: '2276', + gtrless: '2277', + lesseqgtr: '22DA', + gtreqless: '22DB', + lesseqqgtr: '2A8B', + gtreqqless: '2A8C', + doteqdot: '2251', + Doteq: '2251', + eqcirc: '2256', + risingdotseq: '2253', + circeq: '2257', + fallingdotseq: '2252', + triangleq: '225C', + backsim: '223D', + thicksim: ['223C',{variantForm: true}], + backsimeq: '22CD', + thickapprox: ['2248',{variantForm: true}], + subseteqq: '2AC5', + supseteqq: '2AC6', + Subset: '22D0', + Supset: '22D1', + sqsubset: '228F', + sqsupset: '2290', + preccurlyeq: '227C', + succcurlyeq: '227D', + curlyeqprec: '22DE', + curlyeqsucc: '22DF', + precsim: '227E', + succsim: '227F', + precapprox: '2AB7', + succapprox: '2AB8', + vartriangleleft: '22B2', + lhd: '22B2', + vartriangleright: '22B3', + rhd: '22B3', + trianglelefteq: '22B4', + unlhd: '22B4', + trianglerighteq: '22B5', + unrhd: '22B5', + vDash: '22A8', + Vdash: '22A9', + Vvdash: '22AA', + smallsmile: ['2323',{variantForm: true}], + shortmid: ['2223',{variantForm: true}], + smallfrown: ['2322',{variantForm: true}], + shortparallel: ['2225',{variantForm: true}], + bumpeq: '224F', + between: '226C', + Bumpeq: '224E', + pitchfork: '22D4', + varpropto: '221D', + backepsilon: '220D', + blacktriangleleft: '25C2', + blacktriangleright: '25B8', + therefore: '2234', + because: '2235', + eqsim: '2242', + vartriangle: ['25B3',{variantForm: true}], + Join: '22C8', + + // Negated relations + nless: '226E', + ngtr: '226F', + nleq: '2270', + ngeq: '2271', + nleqslant: ['2A87',{variantForm: true}], + ngeqslant: ['2A88',{variantForm: true}], + nleqq: ['2270',{variantForm: true}], + ngeqq: ['2271',{variantForm: true}], + lneq: '2A87', + gneq: '2A88', + lneqq: '2268', + gneqq: '2269', + lvertneqq: ['2268',{variantForm: true}], + gvertneqq: ['2269',{variantForm: true}], + lnsim: '22E6', + gnsim: '22E7', + lnapprox: '2A89', + gnapprox: '2A8A', + nprec: '2280', + nsucc: '2281', + npreceq: ['22E0',{variantForm: true}], + nsucceq: ['22E1',{variantForm: true}], + precneqq: '2AB5', + succneqq: '2AB6', + precnsim: '22E8', + succnsim: '22E9', + precnapprox: '2AB9', + succnapprox: '2ABA', + nsim: '2241', + ncong: '2246', + nshortmid: ['2224',{variantForm: true}], + nshortparallel: ['2226',{variantForm: true}], + nmid: '2224', + nparallel: '2226', + nvdash: '22AC', + nvDash: '22AD', + nVdash: '22AE', + nVDash: '22AF', + ntriangleleft: '22EA', + ntriangleright: '22EB', + ntrianglelefteq: '22EC', + ntrianglerighteq: '22ED', + nsubseteq: '2288', + nsupseteq: '2289', + nsubseteqq: ['2288',{variantForm: true}], + nsupseteqq: ['2289',{variantForm: true}], + subsetneq: '228A', + supsetneq: '228B', + varsubsetneq: ['228A',{variantForm: true}], + varsupsetneq: ['228B',{variantForm: true}], + subsetneqq: '2ACB', + supsetneqq: '2ACC', + varsubsetneqq: ['2ACB',{variantForm: true}], + varsupsetneqq: ['2ACC',{variantForm: true}], + + + // Arrows + leftleftarrows: '21C7', + rightrightarrows: '21C9', + leftrightarrows: '21C6', + rightleftarrows: '21C4', + Lleftarrow: '21DA', + Rrightarrow: '21DB', + twoheadleftarrow: '219E', + twoheadrightarrow: '21A0', + leftarrowtail: '21A2', + rightarrowtail: '21A3', + looparrowleft: '21AB', + looparrowright: '21AC', + leftrightharpoons: '21CB', + rightleftharpoons: ['21CC',{variantForm: true}], + curvearrowleft: '21B6', + curvearrowright: '21B7', + circlearrowleft: '21BA', + circlearrowright: '21BB', + Lsh: '21B0', + Rsh: '21B1', + upuparrows: '21C8', + downdownarrows: '21CA', + upharpoonleft: '21BF', + upharpoonright: '21BE', + downharpoonleft: '21C3', + restriction: '21BE', + multimap: '22B8', + downharpoonright: '21C2', + leftrightsquigarrow: '21AD', + rightsquigarrow: '21DD', + leadsto: '21DD', + dashrightarrow: '21E2', + dashleftarrow: '21E0', + + // Negated arrows + nleftarrow: '219A', + nrightarrow: '219B', + nLeftarrow: '21CD', + nRightarrow: '21CF', + nleftrightarrow: '21AE', + nLeftrightarrow: '21CE' + }, + + delimiter: { + // corners + "\\ulcorner": '231C', + "\\urcorner": '231D', + "\\llcorner": '231E', + "\\lrcorner": '231F' + }, + + macros: { + implies: ['Macro','\\;\\Longrightarrow\\;'], + impliedby: ['Macro','\\;\\Longleftarrow\\;'] + } + + },null,true); + + var REL = MML.mo.OPTYPES.REL; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + infix: { + '\u2322': REL, // smallfrown + '\u2323': REL, // smallsmile + '\u25B3': REL, // vartriangle + '\uE006': REL, // nshortmid + '\uE007': REL, // nshortparallel + '\uE00C': REL, // lvertneqq + '\uE00D': REL, // gvertneqq + '\uE00E': REL, // ngeqq + '\uE00F': REL, // ngeqslant + '\uE010': REL, // nleqslant + '\uE011': REL, // nleqq + '\uE016': REL, // nsubseteqq + '\uE017': REL, // varsubsetneqq + '\uE018': REL, // nsupseteqq + '\uE019': REL, // varsupsetneqq + '\uE01A': REL, // varsubsetneq + '\uE01B': REL, // varsupsetneq + '\uE04B': REL, // npreceq + '\uE04F': REL // nsucceq + } + } + }); + + MathJax.Hub.Startup.signal.Post("TeX AMSsymbols Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/AMSsymbols.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/HTML.js b/modules/MathJax/unpacked/extensions/TeX/HTML.js new file mode 100644 index 0000000..555feaa --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/HTML.js @@ -0,0 +1,106 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/HTML.js + * + * Implements the \href, \class, \style, \cssId macros. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/HTML"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var TEX = MathJax.InputJax.TeX; + var TEXDEF = TEX.Definitions; + + TEXDEF.Add({ + macros: { + href: 'HREF_attribute', + "class": 'CLASS_attribute', + style: 'STYLE_attribute', + cssId: 'ID_attribute' + } + },null,true); + + TEX.Parse.Augment({ + + // + // Implements \href{url}{math} + // + HREF_attribute: function (name) { + var url = this.GetArgument(name), + arg = this.GetArgumentMML(name); + this.Push(arg.With({href:url})); + }, + + // + // Implements \class{name}{math} + // + CLASS_attribute: function (name) { + var CLASS = this.GetArgument(name), + arg = this.GetArgumentMML(name); + if (arg["class"] != null) {CLASS = arg["class"] + " " + CLASS} + this.Push(arg.With({"class":CLASS})); + }, + + // + // Implements \style{style-string}{math} + // + STYLE_attribute: function (name) { + var style = this.GetArgument(name), + arg = this.GetArgumentMML(name); + // check that it looks like a style string + if (arg.style != null) { + if (style.charAt(style.length-1) !== ";") {style += ";"} + style = arg.style + " " + style; + } + this.Push(arg.With({style: style})); + }, + + // + // Implements \cssId{id}{math} + // + ID_attribute: function (name) { + var ID = this.GetArgument(name), + arg = this.GetArgumentMML(name); + this.Push(arg.With({id:ID})); + }, + + // + // returns an argument that is a single MathML element + // (in an mrow if necessary) + // + GetArgumentMML: function (name) { + var arg = this.ParseArg(name); + if (arg.inferred && arg.data.length == 1) + {arg = arg.data[0]} else {delete arg.inferred} + return arg; + } + + }); + + MathJax.Hub.Startup.signal.Post("TeX HTML Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/HTML.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/action.js b/modules/MathJax/unpacked/extensions/TeX/action.js new file mode 100644 index 0000000..1c4edc5 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/action.js @@ -0,0 +1,83 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/action.js + * + * Implements the \mathtip, \texttip, and \toggle macros, which give + * access from TeX to the tag in the MathML that underlies + * MathJax's internal format. + * + * Usage: + * + * \mathtip{math}{tip} % use "tip" (in math mode) as tooltip for "math" + * \texttip{math}{tip} % use "tip" (in text mode) as tooltip for "math" + * \toggle{math1}{math2}...\endtoggle + * % show math1, and when clicked, show math2, and so on. + * % When the last one is clicked, go back to math1. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/action"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var TEX = MathJax.InputJax.TeX, + MML = MathJax.ElementJax.mml; + + // + // Set up control sequenecs + // + TEX.Definitions.Add({ + macros: { + toggle: 'Toggle', + mathtip: 'Mathtip', + texttip: ['Macro','\\mathtip{#1}{\\text{#2}}',2] + } + },null,true); + + TEX.Parse.Augment({ + + // + // Implement \toggle {math1} {math2} ... \endtoggle + // (as an ) + // + Toggle: function (name) { + var data = [], arg; + while ((arg = this.GetArgument(name)) !== "\\endtoggle") + {data.push(TEX.Parse(arg,this.stack.env).mml())} + this.Push(MML.maction.apply(MML,data).With({actiontype: MML.ACTIONTYPE.TOGGLE})); + }, + + // + // Implement \mathtip{math}{tip} + // (an an ) + // + Mathtip: function(name) { + var arg = this.ParseArg(name), tip = this.ParseArg(name); + this.Push(MML.maction(arg,tip).With({actiontype: MML.ACTIONTYPE.TOOLTIP})); + } + }); + + MathJax.Hub.Startup.signal.Post("TeX action Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/action.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/autobold.js b/modules/MathJax/unpacked/extensions/TeX/autobold.js new file mode 100644 index 0000000..7897ac5 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/autobold.js @@ -0,0 +1,50 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/autobold.js + * + * Adds \boldsymbol around mathematics that appears in a section + * of an HTML page that is in bold. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/autobold"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var TEX = MathJax.InputJax.TeX; + + TEX.prefilterHooks.Add(function (data) { + var span = data.script.parentNode.insertBefore(document.createElement("span"),data.script); + span.visibility = "hidden"; + span.style.fontFamily = "Times, serif"; + span.appendChild(document.createTextNode("ABCXYZabcxyz")); + var W = span.offsetWidth; + span.style.fontWeight = "bold"; + if (W && span.offsetWidth === W) {data.math = "\\boldsymbol{"+data.math+"}"} + span.parentNode.removeChild(span); + }); + + MathJax.Hub.Startup.signal.Post("TeX autobold Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/autobold.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/autoload-all.js b/modules/MathJax/unpacked/extensions/TeX/autoload-all.js new file mode 100644 index 0000000..d3df026 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/autoload-all.js @@ -0,0 +1,83 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/autoload-all.js + * + * Provides pre-defined macros to autoload all the extensions + * so that all macros that MathJax knows about are available. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/autoload-all"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var EXTENSIONS = { + action: ["mathtip","texttip","toggle"], + AMSmath: ["mathring","nobreakspace","negmedspace","negthickspace","intI", + "iiiint","idotsint","dddot","ddddot","sideset","boxed", + "substack","injlim","projlim","varliminf","varlimsup", + "varinjlim","varprojlim","DeclareMathOperator","operatorname", + "genfrac","tfrac","dfrac","binom","tbinom","dbinom","cfrac", + "shoveleft","shoveright","xrightarrow","xleftarrow"], + begingroup: ["begingroup","endgroup","gdef","global"], + cancel: ["cancel","bcancel","xcancel","cancelto"], + color: ["color","textcolor","colorbox","fcolorbox","DefineColor"], + enclose: ["enclose"], + extpfeil: ["Newextarrow","xlongequal","xmapsto","xtofrom", + "xtwoheadleftarrow","xtwoheadrightarrow"], + mhchem: ["ce","cee","cf"] + }; + + var ENVIRONMENTS = { + AMSmath: ["subarray","smallmatrix","equation","equation*"], + AMScd: ["CD"] + }; + + var name, i, m, defs = {macros:{}, environment:{}}; + + for (name in EXTENSIONS) {if (EXTENSIONS.hasOwnProperty(name)) { + if (!MathJax.Extension["TeX/"+name]) { + var macros = EXTENSIONS[name]; + for (i = 0, m = macros.length; i < m; i++) + {defs.macros[macros[i]] = ["Extension",name]} + } + }} + + for (name in ENVIRONMENTS) {if (ENVIRONMENTS.hasOwnProperty(name)) { + if (!MathJax.Extension["TeX/"+name]) { + var envs = ENVIRONMENTS[name]; + for (i = 0, m = envs.length; i < m; i++) + {defs.environment[envs[i]] = ["ExtensionEnv",null,name]} + } + }} + + MathJax.InputJax.TeX.Definitions.Add(defs); + + MathJax.Hub.Startup.signal.Post("TeX autoload-all Ready"); + +}); + +MathJax.Callback.Queue( + ["Require",MathJax.Ajax,"[MathJax]/extensions/TeX/AMSsymbols.js"], + ["loadComplete",MathJax.Ajax,"[MathJax]/extensions/TeX/autoload-all.js"] +); diff --git a/modules/MathJax/unpacked/extensions/TeX/bbox.js b/modules/MathJax/unpacked/extensions/TeX/bbox.js new file mode 100644 index 0000000..cb26e28 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/bbox.js @@ -0,0 +1,101 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/bbox.js + * + * This file implements the \bbox macro, which creates an box that + * can be styled (for background colors, and so on). You can include + * an optional dimension that tells how much extra padding to include + * around the bounding box for the mathematics, or a color specification + * for the background color to use, or both. E.g., + * + * \bbox[2pt]{x+y} % an invisible box around x+y with 2pt of extra space + * \bbox[green]{x+y} % a green box around x+y + * \bbox[green,2pt]{x+y} % a green box with 2pt of extra space + * + * You can also specify style attributes, for example + * + * \bbox[red,border:3px solid blue,5px]{x+y} + * + * would give a red background with a 3px solid blue border that has 5px + * of padding between the border and the mathematics. Note that not all + * output formats support the style specifications. In particular, the + * NativeMML output depends on the browser to render the attributes, and + * not all MathML renderers will honor them (e.g., MathPlayer2 doesn't + * render border styles). + * + * This file will be loaded automatically when \bbox is first used. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/bbox"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var TEX = MathJax.InputJax.TeX, + MML = MathJax.ElementJax.mml; + + TEX.Definitions.Add({macros: {bbox: "BBox"}},null,true); + + TEX.Parse.Augment({ + BBox: function (name) { + var bbox = this.GetBrackets(name,""), + math = this.ParseArg(name); + var parts = bbox.split(/,/), def, background, style; + for (var i in parts) { + var part = parts[i].replace(/^\s+/,'').replace(/\s+$/,''); + var match = part.match(/^(\.\d+|\d+(\.\d*)?)(pt|em|ex|mu|px|in|cm|mm)$/); + if (match) { + if (def) + {TEX.Error(["MultipleBBoxProperty","%1 specified twice in %2","Padding",name])} + var pad = match[1]+match[3]; + def = {height:"+"+pad, depth:"+"+pad, lspace:pad, width:"+"+(2*match[1])+match[3]}; + } else if (part.match(/^([a-z0-9]+|\#[0-9a-f]{6}|\#[0-9a-f]{3})$/i)) { + if (background) + {TEX.Error(["MultipleBBoxProperty","%1 specified twice in %2","Background",name])} + background = part; + } else if (part.match(/^[-a-z]+:/i)) { + if (style) + {TEX.Error(["MultipleBBoxProperty","%1 specified twice in %2", "Style",name])} + style = this.BBoxStyle(part); + } else if (part !== "") { + TEX.Error( + ["InvalidBBoxProperty", + "'%1' doesn't look like a color, a padding dimension, or a style", + part] + ); + } + } + if (def) {math = MML.mpadded(math).With(def)} + if (background || style) { + math = MML.mstyle(math).With({mathbackground:background, style:style}); + } + this.Push(math); + }, + BBoxStyle: function (styles) {return styles} + }); + + MathJax.Hub.Startup.signal.Post("TeX bbox Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/bbox.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/begingroup.js b/modules/MathJax/unpacked/extensions/TeX/begingroup.js new file mode 100644 index 0000000..13163e2 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/begingroup.js @@ -0,0 +1,309 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/begingroup.js + * + * Implements \begingroup and \endgroup commands that make local + * definitions possible and are removed when the \endgroup occurs. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/begingroup"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var TEX = MathJax.InputJax.TeX, + TEXDEF = TEX.Definitions; + + /****************************************************/ + + // + // A namespace for localizing macros and environments + // (\begingroup and \endgroup create and destroy these) + // + var NSFRAME = MathJax.Object.Subclass({ + macros: null, // the local macro definitions + environments: null, // the local environments + Init: function (macros,environments) { + this.macros = (macros || {}); + this.environments = (environments || {}); + }, + // + // Find a macro or environment by name + // + Find: function (name,type) {if (this[type][name]) {return this[type][name]}}, + // + // Define or remove a macro or environment + // + Def: function (name,value,type) {this[type][name] = value}, + Undef: function (name,type) {delete this[type][name]}, + // + // Merge two namespaces (used when the equation namespace is combined with the root one) + // + Merge: function (frame) { + MathJax.Hub.Insert(this.macros,frame.macros); + MathJax.Hub.Insert(this.environments,frame.environments); + }, + // + // Move global macros to the stack (globally) and remove from the frame + // + MergeGlobals: function (stack) { + var macros = this.macros; + for (var cs in macros) {if (macros.hasOwnProperty(cs) && macros[cs].global) { + stack.Def(cs,macros[cs],"macros",true); + delete macros[cs].global; delete macros[cs]; + }} + }, + // + // Clear the macro and environment lists + // (but not global macros unless "all" is true) + // + Clear: function (all) { + this.environments = {}; + if (all) {this.macros = {}} else { + var macros = this.macros; + for (var cs in macros) { + if (macros.hasOwnProperty(cs) && !macros[cs].global) {delete macros[cs]} + } + } + return this; + } + }); + + /****************************************************/ + + // + // A Stack of namespace frames + // + var NSSTACK = TEX.nsStack = MathJax.Object.Subclass({ + stack: null, // the namespace frames + top: 0, // the current top one (we don't pop for real until the equation completes) + isEqn: false, // true if this is the equation stack (not the global one) + // + // Set up the initial stack frame + // + Init: function (eqn) { + this.isEqn = eqn; this.stack = []; + if (!eqn) {this.Push(NSFRAME(TEXDEF.macros,TEXDEF.environment))} + else {this.Push(NSFRAME())} + }, + // + // Define a macro or environment in the top frame + // + Def: function (name,value,type,global) { + var n = this.top-1; + if (global) { + // + // Define global macros in the base frame and remove that cs + // from all other frames. Mark the global ones in equations + // so they can be made global when merged with the root stack. + // + while (n > 0) {this.stack[n].Undef(name,type); n--} + if (!(value instanceof Array)) {value = [value]} + if (this.isEqn) {value.global = true} + } + this.stack[n].Def(name,value,type); + }, + // + // Push a new namespace frame on the stack + // + Push: function (frame) { + this.stack.push(frame); + this.top = this.stack.length; + }, + // + // Pop the top stack frame + // (if it is the root, just keep track of the pop so we can + // reset it if the equation is reprocessed) + // + Pop: function () { + var top; + if (this.top > 1) { + top = this.stack[--this.top]; + if (this.isEqn) {this.stack.pop()} + } else if (this.isEqn) { + this.Clear(); + } + return top; + }, + // + // Search the stack from top to bottom for the first + // definition of the given control sequence in the given type + // + Find: function (name,type) { + for (var i = this.top-1; i >= 0; i--) { + var def = this.stack[i].Find(name,type); + if (def) {return def} + } + return null; + }, + // + // Combine the equation stack with the global one + // (The bottom frame of the equation goes with the top frame of the global one, + // and the remainder are pushed on the global stack, truncated to the + // position where items were poped from it.) + // + Merge: function (stack) { + stack.stack[0].MergeGlobals(this); + this.stack[this.top-1].Merge(stack.stack[0]); + var data = [this.top,this.stack.length-this.top].concat(stack.stack.slice(1)); + this.stack.splice.apply(this.stack,data); + this.top = this.stack.length; + }, + // + // Put back the temporarily poped items + // + Reset: function () {this.top = this.stack.length}, + // + // Clear the stack and start with a blank frame + // + Clear: function (all) { + this.stack = [this.stack[0].Clear()]; + this.top = this.stack.length; + } + },{ + nsFrame: NSFRAME + }); + + /****************************************************/ + + // + // Define the new macros + // + TEXDEF.Add({ + macros: { + begingroup: "BeginGroup", + endgroup: "EndGroup", + global: ["Extension","newcommand"], + gdef: ["Extension","newcommand"] + } + },null,true); + + TEX.Parse.Augment({ + // + // Implement \begingroup + // + BeginGroup: function (name) { + TEX.eqnStack.Push(NSFRAME()); + }, + // + // Implements \endgroup + // + EndGroup: function (name) { + // + // If the equation has pushed frames, pop one, + // Otherwise clear the equation stack and pop the top global one + // + if (TEX.eqnStack.top > 1) { + TEX.eqnStack.Pop(); + } else if (TEX.rootStack.top === 1) { + TEX.Error(["ExtraEndMissingBegin","Extra %1 or missing \\begingroup",name]); + } else { + TEX.eqnStack.Clear(); + TEX.rootStack.Pop(); + } + }, + + // + // Replace the original routines with ones that looks through the + // equation and root stacks for the given name + // + csFindMacro: function (name) { + return (TEX.eqnStack.Find(name,"macros") || TEX.rootStack.Find(name,"macros")); + }, + envFindName: function (name) { + return (TEX.eqnStack.Find(name,"environments") || TEX.rootStack.Find(name,"environments")); + } + + }); + + /****************************************************/ + + TEX.rootStack = NSSTACK(); // the global namespace stack + TEX.eqnStack = NSSTACK(true); // the equation stack + + // + // Reset the global stack and clear the equation stack + // (this gets us back to the initial stack state as it was + // before the equation was first processed, in case the equation + // get restarted due to an autoloaded file) + // + TEX.prefilterHooks.Add(function () {TEX.rootStack.Reset(); TEX.eqnStack.Clear(true)}); + + // + // We only get here if there were no errors and the equation is fully + // processed (all restarts are complete). So we merge the equation + // stack into the global stack, thus making the changes from this + // equation permanent. + // + TEX.postfilterHooks.Add(function () {TEX.rootStack.Merge(TEX.eqnStack)}); + + /*********************************************************/ + + MathJax.Hub.Register.StartupHook("TeX newcommand Ready",function () { + + // + // Add the commands that depend on the newcommand code + // + TEXDEF.Add({ + macros: { + global: "Global", + gdef: ["Macro","\\global\\def"] + } + },null,true); + + TEX.Parse.Augment({ + // + // Modify the way macros and environments are defined + // to make them go into the equation namespace stack + // + setDef: function (name,value) { + value.isUser = true; + TEX.eqnStack.Def(name,value,"macros",this.stack.env.isGlobal); + delete this.stack.env.isGlobal; + }, + setEnv: function (name,value) { + value.isUser = true; + TEX.eqnStack.Def(name,value,"environments") + }, + + // + // Implement \global (for \global\let, \global\def and \global\newcommand) + // + Global: function (name) { + var i = this.i; var cs = this.GetCSname(name); this.i = i; + if (cs !== "let" && cs !== "def" && cs !== "newcommand") { + TEX.Error(["GlobalNotFollowedBy", + "%1 not followed by \\let, \\def, or \\newcommand",name]); + } + this.stack.env.isGlobal = true; + } + + }); + + }); + + MathJax.Hub.Startup.signal.Post("TeX begingroup Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/begingroup.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/boldsymbol.js b/modules/MathJax/unpacked/extensions/TeX/boldsymbol.js new file mode 100644 index 0000000..317b3e0 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/boldsymbol.js @@ -0,0 +1,75 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/boldsymbol.js + * + * Implements the \boldsymbol{...} command to make bold + * versions of all math characters (not just variables). + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/boldsymbol"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var MML = MathJax.ElementJax.mml; + var TEX = MathJax.InputJax.TeX; + var TEXDEF = TEX.Definitions; + + var BOLDVARIANT = {}; + BOLDVARIANT[MML.VARIANT.NORMAL] = MML.VARIANT.BOLD; + BOLDVARIANT[MML.VARIANT.ITALIC] = MML.VARIANT.BOLDITALIC; + BOLDVARIANT[MML.VARIANT.FRAKTUR] = MML.VARIANT.BOLDFRAKTUR; + BOLDVARIANT[MML.VARIANT.SCRIPT] = MML.VARIANT.BOLDSCRIPT; + BOLDVARIANT[MML.VARIANT.SANSSERIF] = MML.VARIANT.BOLDSANSSERIF; + BOLDVARIANT["-tex-caligraphic"] = "-tex-caligraphic-bold"; + BOLDVARIANT["-tex-oldstyle"] = "-tex-oldstyle-bold"; + + TEXDEF.Add({macros: {boldsymbol: 'Boldsymbol'}},null,true); + + TEX.Parse.Augment({ + mmlToken: function (token) { + if (this.stack.env.boldsymbol) { + var variant = token.Get("mathvariant"); + if (variant == null) {token.mathvariant = MML.VARIANT.BOLD} + else {token.mathvariant = (BOLDVARIANT[variant]||variant)} + } + return token; + }, + + Boldsymbol: function (name) { + var boldsymbol = this.stack.env.boldsymbol, + font = this.stack.env.font; + this.stack.env.boldsymbol = true; + this.stack.env.font = null; + var mml = this.ParseArg(name); + this.stack.env.font = font; + this.stack.env.boldsymbol = boldsymbol; + this.Push(mml); + } + }); + + MathJax.Hub.Startup.signal.Post("TeX boldsymbol Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/boldsymbol.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/cancel.js b/modules/MathJax/unpacked/extensions/TeX/cancel.js new file mode 100644 index 0000000..8698ad3 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/cancel.js @@ -0,0 +1,110 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/cancel.js + * + * Implements the \cancel, \bcancel, \xcancel, and \cancelto macros. + * + * Usage: + * + * \cancel{math} % strikeout math from lower left to upper right + * \bcancel{math} % strikeout from upper left to lower right + * \xcancel{math} % strikeout with an X + * \cancelto{value}{math} % strikeout with arrow going to value + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/cancel"] = { + version: "2.3", + + // + // The attributes allowed in \enclose{notation}[attributes]{math} + // + ALLOWED: { + color: 1, mathcolor: 1, + background: 1, mathbackground: 1, + padding: 1, + thickness: 1 + } +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var TEX = MathJax.InputJax.TeX, + MML = MathJax.ElementJax.mml, + CANCEL = MathJax.Extension["TeX/cancel"]; + + CANCEL.setAttributes = function (def,attr) { + if (attr !== "") { + attr = attr.replace(/ /g,"").split(/,/); + for (var i = 0, m = attr.length; i < m; i++) { + var keyvalue = attr[i].split(/[:=]/); + if (CANCEL.ALLOWED[keyvalue[0]]) { + if (keyvalue[1] === "true") {keyvalue[1] = true} + if (keyvalue[1] === "false") {keyvalue[1] = false} + def[keyvalue[0]] = keyvalue[1]; + } + } + } + return def; + }; + + // + // Set up macros + // + TEX.Definitions.Add({ + macros: { + cancel: ['Cancel',MML.NOTATION.UPDIAGONALSTRIKE], + bcancel: ['Cancel',MML.NOTATION.DOWNDIAGONALSTRIKE], + xcancel: ['Cancel',MML.NOTATION.UPDIAGONALSTRIKE+" "+MML.NOTATION.DOWNDIAGONALSTRIKE], + cancelto: 'CancelTo' + } + },null,true); + + TEX.Parse.Augment({ + // + // Implement \cancel[attributes]{math}, + // \bcancel[attributes]{math}, and + // \xcancel[attributes]{math} + // + Cancel: function(name,notation) { + var attr = this.GetBrackets(name,""), math = this.ParseArg(name); + var def = CANCEL.setAttributes({notation: notation},attr); + this.Push(MML.menclose(math).With(def)); + }, + + // + // Implement \cancelto{value}[attributes]{math} + // + CancelTo: function(name,notation) { + var value = this.ParseArg(name), + attr = this.GetBrackets(name,""), + math = this.ParseArg(name); + var def = CANCEL.setAttributes({notation: MML.NOTATION.UPDIAGONALSTRIKE+" "+MML.NOTATION.UPDIAGONALARROW},attr); + value = MML.mpadded(value).With({depth:"-.1em",height:"+.1em",voffset:".1em"}); + this.Push(MML.msup(MML.menclose(math).With(def),value)); + } + + }); + + MathJax.Hub.Startup.signal.Post("TeX cancel Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/cancel.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/color.js b/modules/MathJax/unpacked/extensions/TeX/color.js new file mode 100644 index 0000000..14f1085 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/color.js @@ -0,0 +1,281 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/color.js + * + * Implements LaTeX-compatible \color macro rather than MathJax's original + * (non-standard) version. It includes the rgb, RGB, gray, and named color + * models, and the \textcolor, \definecolor, \colorbox, and \fcolorbox + * macros. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// +// The configuration defaults, augmented by the user settings +// +MathJax.Extension["TeX/color"] = { + version: "2.3", + + config: MathJax.Hub.CombineConfig("TeX.color",{ + padding: "5px", + border: "2px" + }), + + colors: { + Apricot: "#FBB982", + Aquamarine: "#00B5BE", + Bittersweet: "#C04F17", + Black: "#221E1F", + Blue: "#2D2F92", + BlueGreen: "#00B3B8", + BlueViolet: "#473992", + BrickRed: "#B6321C", + Brown: "#792500", + BurntOrange: "#F7921D", + CadetBlue: "#74729A", + CarnationPink: "#F282B4", + Cerulean: "#00A2E3", + CornflowerBlue: "#41B0E4", + Cyan: "#00AEEF", + Dandelion: "#FDBC42", + DarkOrchid: "#A4538A", + Emerald: "#00A99D", + ForestGreen: "#009B55", + Fuchsia: "#8C368C", + Goldenrod: "#FFDF42", + Gray: "#949698", + Green: "#00A64F", + GreenYellow: "#DFE674", + JungleGreen: "#00A99A", + Lavender: "#F49EC4", + LimeGreen: "#8DC73E", + Magenta: "#EC008C", + Mahogany: "#A9341F", + Maroon: "#AF3235", + Melon: "#F89E7B", + MidnightBlue: "#006795", + Mulberry: "#A93C93", + NavyBlue: "#006EB8", + OliveGreen: "#3C8031", + Orange: "#F58137", + OrangeRed: "#ED135A", + Orchid: "#AF72B0", + Peach: "#F7965A", + Periwinkle: "#7977B8", + PineGreen: "#008B72", + Plum: "#92268F", + ProcessBlue: "#00B0F0", + Purple: "#99479B", + RawSienna: "#974006", + Red: "#ED1B23", + RedOrange: "#F26035", + RedViolet: "#A1246B", + Rhodamine: "#EF559F", + RoyalBlue: "#0071BC", + RoyalPurple: "#613F99", + RubineRed: "#ED017D", + Salmon: "#F69289", + SeaGreen: "#3FBC9D", + Sepia: "#671800", + SkyBlue: "#46C5DD", + SpringGreen: "#C6DC67", + Tan: "#DA9D76", + TealBlue: "#00AEB3", + Thistle: "#D883B7", + Turquoise: "#00B4CE", + Violet: "#58429B", + VioletRed: "#EF58A0", + White: "#FFFFFF", + WildStrawberry: "#EE2967", + Yellow: "#FFF200", + YellowGreen: "#98CC70", + YellowOrange: "#FAA21A" + }, + + /* + * Look up a color based on its model and definition + */ + getColor: function (model,def) { + if (!model) {model = "named"} + var fn = this["get_"+model]; + if (!fn) {this.TEX.Error(["UndefinedColorModel","Color model '%1' not defined",model])} + return fn.call(this,def); + }, + + /* + * Get an rgb color + */ + get_rgb: function (rgb) { + rgb = rgb.replace(/^\s+/,"").replace(/\s+$/,"").split(/\s*,\s*/); var RGB = "#"; + if (rgb.length !== 3) + {this.TEX.Error(["ModelArg1","Color values for the %1 model require 3 numbers","rgb"])} + for (var i = 0; i < 3; i++) { + if (!rgb[i].match(/^(\d+(\.\d*)?|\.\d+)$/)) + {this.TEX.Error(["InvalidDecimalNumber","Invalid decimal number"])} + var n = parseFloat(rgb[i]); + if (n < 0 || n > 1) { + this.TEX.Error(["ModelArg2", + "Color values for the %1 model must be between %2 and %3", + "rgb",0,1]); + } + n = Math.floor(n*255).toString(16); if (n.length < 2) {n = "0"+n} + RGB += n; + } + return RGB; + }, + + /* + * Get an RGB color + */ + get_RGB: function (rgb) { + rgb = rgb.replace(/^\s+/,"").replace(/\s+$/,"").split(/\s*,\s*/); var RGB = "#"; + if (rgb.length !== 3) + {this.TEX.Error(["ModelArg1","Color values for the %1 model require 3 numbers","RGB"])} + for (var i = 0; i < 3; i++) { + if (!rgb[i].match(/^\d+$/)) + {this.TEX.Error(["InvalidNumber","Invalid number"])} + var n = parseInt(rgb[i]); + if (n > 255) { + this.TEX.Error(["ModelArg2", + "Color values for the %1 model must be between %2 and %3", + "RGB",0,255]); + } + n = n.toString(16); if (n.length < 2) {n = "0"+n} + RGB += n; + } + return RGB; + }, + + /* + * Get a gray-scale value + */ + get_gray: function (gray) { + if (!gray.match(/^\s*(\d+(\.\d*)?|\.\d+)\s*$/)) + {this.TEX.Error(["InvalidDecimalNumber","Invalid decimal number"])} + var n = parseFloat(gray); + if (n < 0 || n > 1) { + this.TEX.Error(["ModelArg2", + "Color values for the %1 model must be between %2 and %3", + "gray",0,1]); + } + n = Math.floor(n*255).toString(16); if (n.length < 2) {n = "0"+n} + return "#"+n+n+n; + }, + + /* + * Get a named value + */ + get_named: function (name) { + if (this.colors[name]) {return this.colors[name]} + return name; + }, + + padding: function () { + var pad = "+"+this.config.padding; + var unit = this.config.padding.replace(/^.*?([a-z]*)$/,"$1"); + var pad2 = "+"+(2*parseFloat(pad))+unit; + return {width:pad2, height:pad, depth:pad, lspace:this.config.padding}; + } + +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var TEX = MathJax.InputJax.TeX, + MML = MathJax.ElementJax.mml; + var STACKITEM = TEX.Stack.Item; + var COLOR = MathJax.Extension["TeX/color"]; + + COLOR.TEX = TEX; // for reference in getColor above + + TEX.Definitions.Add({ + macros: { + color: "Color", + textcolor: "TextColor", + definecolor: "DefineColor", + colorbox: "ColorBox", + fcolorbox: "fColorBox" + } + },null,true); + + TEX.Parse.Augment({ + + // + // Override \color macro definition + // + Color: function (name) { + var model = this.GetBrackets(name), + color = this.GetArgument(name); + color = COLOR.getColor(model,color); + var mml = STACKITEM.style().With({styles:{mathcolor:color}}); + this.stack.env.color = color; + this.Push(mml); + }, + + TextColor: function (name) { + var model = this.GetBrackets(name), + color = this.GetArgument(name); + color = COLOR.getColor(model,color); + var old = this.stack.env.color; this.stack.env.color = color; + var math = this.ParseArg(name); + if (old) {this.stack.env.color} else {delete this.stack.env.color} + this.Push(MML.mstyle(math).With({mathcolor: color})); + }, + + // + // Define the \definecolor macro + // + DefineColor: function (name) { + var cname = this.GetArgument(name), + model = this.GetArgument(name), + def = this.GetArgument(name); + COLOR.colors[cname] = COLOR.getColor(model,def); + }, + + // + // Produce a text box with a colored background + // + ColorBox: function (name) { + var cname = this.GetArgument(name), + arg = this.InternalMath(this.GetArgument(name)); + this.Push(MML.mpadded.apply(MML,arg).With({ + mathbackground:COLOR.getColor("named",cname) + }).With(COLOR.padding())); + }, + + // + // Procude a framed text box with a colored background + // + fColorBox: function (name) { + var fname = this.GetArgument(name), + cname = this.GetArgument(name), + arg = this.InternalMath(this.GetArgument(name)); + this.Push(MML.mpadded.apply(MML,arg).With({ + mathbackground: COLOR.getColor("named",cname), + style: "border: "+COLOR.config.border+" solid "+COLOR.getColor("named",fname) + }).With(COLOR.padding())); + } + + }); + + MathJax.Hub.Startup.signal.Post("TeX color Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/color.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/enclose.js b/modules/MathJax/unpacked/extensions/TeX/enclose.js new file mode 100644 index 0000000..2c80489 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/enclose.js @@ -0,0 +1,89 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/enclose.js + * + * Implements the \enclose macros, which give access from TeX to the + * tag in the MathML that underlies MathJax's internal format. + * + * Usage: + * + * \enclose{notation}{math} % enclose math using given notation + * \enclose{notation,notation,...}{math} % enclose with several notations + * \enclose{notation}[attributes]{math} % enclose with attributes + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/enclose"] = { + version: "2.3", + + // + // The attributes allowed in \enclose{notation}[attributes]{math} + // + ALLOWED: { + arrow: 1, + color: 1, mathcolor: 1, + background: 1, mathbackground: 1, + padding: 1, + thickness: 1 + } +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var TEX = MathJax.InputJax.TeX, + MML = MathJax.ElementJax.mml, + ALLOW = MathJax.Extension["TeX/enclose"].ALLOWED; + + // + // Set up macro + // + TEX.Definitions.Add({macros: {enclose: 'Enclose'}},null,true); + + TEX.Parse.Augment({ + // + // Implement \enclose{notation}[attr]{math} + // (create math) + // + Enclose: function(name) { + var notation = this.GetArgument(name), + attr = this.GetBrackets(name), + math = this.ParseArg(name); + var def = {notation: notation.replace(/,/g," ")}; + if (attr) { + attr = attr.replace(/ /g,"").split(/,/); + for (var i = 0, m = attr.length; i < m; i++) { + var keyvalue = attr[i].split(/[:=]/); + if (ALLOW[keyvalue[0]]) { + keyvalue[1] = keyvalue[1].replace(/^"(.*)"$/,"$1"); + if (keyvalue[1] === "true") {keyvalue[1] = true} + if (keyvalue[1] === "false") {keyvalue[1] = false} + def[keyvalue[0]] = keyvalue[1]; + } + } + } + this.Push(MML.menclose(math).With(def)); + } + }); + + MathJax.Hub.Startup.signal.Post("TeX enclose Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/enclose.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/extpfeil.js b/modules/MathJax/unpacked/extensions/TeX/extpfeil.js new file mode 100644 index 0000000..2c45830 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/extpfeil.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/extpfeil.js + * + * Implements additional stretchy arrow macros. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/extpfeil"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var TEX = MathJax.InputJax.TeX, + TEXDEF = TEX.Definitions; + + // + // Define the arrows to load the AMSmath extension + // (since they need its xArrow method) + // + TEXDEF.Add({ + macros: { + xtwoheadrightarrow: ['Extension','AMSmath'], + xtwoheadleftarrow: ['Extension','AMSmath'], + xmapsto: ['Extension','AMSmath'], + xlongequal: ['Extension','AMSmath'], + xtofrom: ['Extension','AMSmath'], + Newextarrow: ['Extension','AMSmath'] + } + },null,true); + + // + // Redefine the macros when AMSmath is loaded + // + MathJax.Hub.Register.StartupHook("TeX AMSmath Ready",function () { + MathJax.Hub.Insert(TEXDEF,{ + macros: { + xtwoheadrightarrow: ['xArrow',0x21A0,12,16], + xtwoheadleftarrow: ['xArrow',0x219E,17,13], + xmapsto: ['xArrow',0x21A6,6,7], + xlongequal: ['xArrow',0x003D,7,7], + xtofrom: ['xArrow',0x21C4,12,12], + Newextarrow: 'NewExtArrow' + } + }); + }); + + // + // Implements \Newextarrow to define a new arrow (not compatible with \newextarrow, but + // the equivalent for MathJax) + // + TEX.Parse.Augment({ + NewExtArrow: function (name) { + var cs = this.GetArgument(name), + space = this.GetArgument(name), + chr = this.GetArgument(name); + if (!cs.match(/^\\([a-z]+|.)$/i)) { + TEX.Error(["NewextarrowArg1", + "First argument to %1 must be a control sequence name",name]); + } + if (!space.match(/^(\d+),(\d+)$/)) { + TEX.Error( + ["NewextarrowArg2", + "Second argument to %1 must be two integers separated by a comma", + name] + ); + } + if (!chr.match(/^(\d+|0x[0-9A-F]+)$/i)) { + TEX.Error( + ["NewextarrowArg3", + "Third argument to %1 must be a unicode character number", + name] + ); + } + cs = cs.substr(1); space = space.split(","); chr = parseInt(chr); + TEXDEF.macros[cs] = ['xArrow',chr,parseInt(space[0]),parseInt(space[1])]; + } + }); + + MathJax.Hub.Startup.signal.Post("TeX extpfeil Ready"); +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/extpfeil.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/mathchoice.js b/modules/MathJax/unpacked/extensions/TeX/mathchoice.js new file mode 100644 index 0000000..2073288 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/mathchoice.js @@ -0,0 +1,89 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/mathchoice.js + * + * Implements the \mathchoice macro (rarely used) + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var VERSION = "2.3"; + + var MML = MathJax.ElementJax.mml; + var TEX = MathJax.InputJax.TeX; + var TEXDEF = TEX.Definitions; + + TEXDEF.Add({macros: {mathchoice: 'MathChoice'}},null,true); + + TEX.Parse.Augment({ + MathChoice: function (name) { + var D = this.ParseArg(name), + T = this.ParseArg(name), + S = this.ParseArg(name), + SS = this.ParseArg(name); + this.Push(MML.TeXmathchoice(D,T,S,SS)); + } + }); + + MML.TeXmathchoice = MML.mbase.Subclass({ + type: "TeXmathchoice", notParent: true, + choice: function () { + if (this.selection == null) { + this.selection = 0; + var values = this.getValues("displaystyle","scriptlevel"); + if (values.scriptlevel > 0) {this.selection = Math.min(3,values.scriptlevel+1)} + else {this.selection = (values.displaystyle ? 0 : 1)} + } + return this.selection; + }, + selected: function () {return this.data[this.choice()]}, + setTeXclass: function (prev) {return this.selected().setTeXclass(prev)}, + isSpacelike: function () {return this.selected().isSpacelike()}, + isEmbellished: function () {return this.selected().isEmbellished()}, + Core: function () {return this.selected()}, + CoreMO: function () {return this.selected().CoreMO()}, + toHTML: function (span) { + span = this.HTMLcreateSpan(span); + span.bbox = this.Core().toHTML(span).bbox; + // Firefox doesn't correctly handle a span with a negatively sized content, + // so move marginLeft to main span (this is a hack to get \iiiint to work). + // FIXME: This is a symptom of a more general problem with Firefox, and + // there probably needs to be a more general solution (e.g., modifying + // HTMLhandleSpace() to get the width and adjust the right margin to + // compensate for negative-width contents) + if (span.firstChild && span.firstChild.style.marginLeft) { + span.style.marginLeft = span.firstChild.style.marginLeft; + span.firstChild.style.marginLeft = ""; + } + return span; + }, + toSVG: function () { + var svg = this.Core().toSVG(); + this.SVGsaveData(svg); + return svg; + } + }); + + MathJax.Hub.Startup.signal.Post("TeX mathchoice Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/mathchoice.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/mhchem.js b/modules/MathJax/unpacked/extensions/TeX/mhchem.js new file mode 100644 index 0000000..578c32b --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/mhchem.js @@ -0,0 +1,459 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/mhchem.js + * + * Implements the \ce command for handling chemical formulas + * from the mhchem LaTeX package. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/mhchem"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var TEX = MathJax.InputJax.TeX; + + /* + * This is the main class for handing the \ce and related commands. + * Its main method is Parse() which takes the argument to \ce and + * returns the corresponding TeX string. + */ + + var CE = MathJax.Object.Subclass({ + string: "", // the \ce string being parsed + i: 0, // the current position in the string + tex: "", // the processed TeX result + atom: false, // last processed token is an atom + sup: "", // pending superscript + sub: "", // pending subscript + + // + // Store the string when a CE object is created + // + Init: function (string) {this.string = string}, + + // + // These are the special characters and the methods that + // handle them. All others are passed through verbatim. + // + ParseTable: { + '-': "Minus", + '+': "Plus", + '(': "Open", + ')': "Close", + '[': "Open", + ']': "Close", + '<': "Less", + '^': "Superscript", + '_': "Subscript", + '*': "Dot", + '.': "Dot", + '=': "Equal", + '#': "Pound", + '$': "Math", + '\\': "Macro", + ' ': "Space" + }, + // + // Basic arrow names for reactions + // + Arrows: { + '->': "rightarrow", + '<-': "leftarrow", + '<->': "leftrightarrow", + '<=>': "rightleftharpoons", + '<=>>': "Rightleftharpoons", + '<<=>': "Leftrightharpoons", + '^': "uparrow", + 'v': "downarrow" + }, + + // + // Implementations for the various bonds + // (the ~ ones are hacks that don't work well in NativeMML) + // + Bonds: { + '-': "-", + '=': "=", + '#': "\\equiv", + '~': "\\tripledash", + '~-': "\\begin{CEstack}{}\\tripledash\\\\-\\end{CEstack}", + '~=': "\\raise2mu{\\begin{CEstack}{}\\tripledash\\\\-\\\\-\\end{CEstack}}", + '~--': "\\raise2mu{\\begin{CEstack}{}\\tripledash\\\\-\\\\-\\end{CEstack}}", + '-~-': "\\raise2mu{\\begin{CEstack}{}-\\\\\\tripledash\\\\-\\end{CEstack}}", + '...': "{\\cdot}{\\cdot}{\\cdot}", + '....': "{\\cdot}{\\cdot}{\\cdot}{\\cdot}", + '->': "\\rightarrow", + '<-': "\\leftarrow", + '??': "\\text{??}" // unknown bond + }, + + // + // This converts the CE string to a TeX string. + // It loops through the string and calls the proper + // method depending on the ccurrent character. + // + Parse: function () { + this.tex = ""; this.atom = false; + while (this.i < this.string.length) { + var c = this.string.charAt(this.i); + if (c.match(/[a-z]/i)) {this.ParseLetter()} + else if (c.match(/[0-9]/)) {this.ParseNumber()} + else {this["Parse"+(this.ParseTable[c]||"Other")](c)} + } + this.FinishAtom(); + return this.tex; + }, + + // + // Make an atom name or a down arrow + // + ParseLetter: function () { + this.FinishAtom(); + if (this.Match(/^v( |$)/)) { + this.tex += "{\\"+this.Arrows["v"]+"}"; + } else { + this.tex += "\\text{"+this.Match(/^[a-z]+/i)+"}"; + this.atom = true; + } + }, + + // + // Make a number or fraction preceeding an atom, + // or a subscript for an atom. + // + ParseNumber: function () { + var n = this.Match(/^\d+/); + if (this.atom && !this.sub) { + this.sub = n; + } else { + this.FinishAtom(); + var match = this.Match(/^\/\d+/); + if (match) { + var frac = "\\frac{"+n+"}{"+match.substr(1)+"}"; + this.tex += "\\mathchoice{\\textstyle"+frac+"}{"+frac+"}{"+frac+"}{"+frac+"}"; + } else { + this.tex += n; + if (this.i < this.string.length) {this.tex += "\\,"} + } + } + }, + + // + // Make a superscript minus, or an arrow, or a single bond. + // + ParseMinus: function (c) { + if (this.atom && (this.i === this.string.length-1 || this.string.charAt(this.i+1) === " ")) { + this.sup += c; + } else { + this.FinishAtom(); + if (this.string.substr(this.i,2) === "->") {this.i += 2; this.AddArrow("->"); return} + else {this.tex += "{-}"} + } + this.i++; + }, + + // + // Make a superscript plus, or pass it through + // + ParsePlus: function (c) { + if (this.atom) {this.sup += c} else {this.FinishAtom(); this.tex += c} + this.i++; + }, + + // + // Handle dots and double or triple bonds + // + ParseDot: function (c) {this.FinishAtom(); this.tex += "\\cdot "; this.i++}, + ParseEqual: function (c) {this.FinishAtom(); this.tex += "{=}"; this.i++}, + ParsePound: function (c) {this.FinishAtom(); this.tex += "{\\equiv}"; this.i++}, + + // + // Look for (v) or (^), or pass it through + // + ParseOpen: function (c) { + this.FinishAtom(); + var match = this.Match(/^\([v^]\)/); + if (match) {this.tex += "{\\"+this.Arrows[match.charAt(1)]+"}"} + else {this.tex += "{"+c; this.i++} + }, + // + // Allow ) and ] to get super- and subscripts + // + ParseClose: function (c) {this.FinishAtom(); this.atom = true; this.tex += c+"}"; this.i++}, + + // + // Make the proper arrow + // + ParseLess: function (c) { + this.FinishAtom(); + var arrow = this.Match(/^(<->?|<=>>?|<<=>)/); + if (!arrow) {this.tex += c; this.i++} else {this.AddArrow(arrow)} + }, + + // + // Look for a superscript, or an up arrow + // + ParseSuperscript: function (c) { + c = this.string.charAt(++this.i); + if (c === "{") { + this.i++; var m = this.Find("}"); + if (m === "-.") {this.sup += "{-}{\\cdot}"} + else if (m) {this.sup += CE(m).Parse().replace(/^\{-\}/,"-")} + } else if (c === " " || c === "") { + this.tex += "{\\"+this.Arrows["^"]+"}"; this.i++; + } else { + var n = this.Match(/^(\d+|-\.)/); + if (n) {this.sup += n} + } + }, + // + // Look for subscripts + // + ParseSubscript: function (c) { + if (this.string.charAt(++this.i) == "{") { + this.i++; this.sub += CE(this.Find("}")).Parse().replace(/^\{-\}/,"-"); + } else { + var n = this.Match(/^\d+/); + if (n) {this.sub += n} + } + }, + + // + // Look for raw TeX code to include + // + ParseMath: function (c) { + this.FinishAtom(); + this.i++; this.tex += this.Find(c); + }, + + // + // Look for specific macros for bonds + // and allow \} to have subscripts + // + ParseMacro: function (c) { + this.FinishAtom(); + this.i++; var match = this.Match(/^([a-z]+|.)/i)||" "; + if (match === "sbond") {this.tex += "{-}"} + else if (match === "dbond") {this.tex += "{=}"} + else if (match === "tbond") {this.tex += "{\\equiv}"} + else if (match === "bond") { + var bond = (this.Match(/^\{.*?\}/)||""); + bond = bond.substr(1,bond.length-2); + this.tex += "{"+(this.Bonds[bond]||"\\text{??}")+"}"; + } + else if (match === "{") {this.tex += "{\\{"} + else if (match === "}") {this.tex += "\\}}"; this.atom = true} + else {this.tex += c+match} + }, + + // + // Ignore spaces + // + ParseSpace: function (c) {this.FinishAtom(); this.i++}, + + // + // Pass anything else on verbatim + // + ParseOther: function (c) {this.FinishAtom(); this.tex += c; this.i++}, + + // + // Process an arrow (looking for brackets for above and below) + // + AddArrow: function (arrow) { + var c = this.Match(/^[CT]\[/); + if (c) {this.i--; c = c.charAt(0)} + var above = this.GetBracket(c), below = this.GetBracket(c); + arrow = this.Arrows[arrow]; + if (above || below) { + if (below) {arrow += "["+below+"]"} + arrow += "{"+above+"}"; + arrow = "\\mathrel{\\x"+arrow+"}"; + } else { + arrow = "\\long"+arrow+" "; + } + this.tex += arrow; + }, + + // + // Handle the super and subscripts for an atom + // + FinishAtom: function () { + if (this.sup || this.sub) { + if (this.sup && this.sub && !this.atom) { + // + // right-justify super- and subscripts when they are before the atom + // + var sup = this.sup, sub = this.sub; + if (!sup.match(/\d/)) {sup += "\\vphantom{0}"} // force common heights + if (!sub.match(/\d/)) {sub += "\\vphantom{0}"} + this.tex += "\\raise 1pt{\\scriptstyle\\begin{CEscriptstack}"+sup+"\\\\"+ + sub+"\\end{CEscriptstack}}\\kern-.125em "; + } else { + if (!this.sup) {this.sup = "\\Space{0pt}{0pt}{.2em}"} // forces subscripts to align properly + this.tex += "^{"+this.sup+"}_{"+this.sub+"}"; + } + this.sup = this.sub = ""; + } + this.atom = false; + }, + + // + // Find a bracket group and handle C and T prefixes + // + GetBracket: function (c) { + if (this.string.charAt(this.i) !== "[") {return ""} + this.i++; var bracket = this.Find("]"); + if (c === "C") {bracket = "\\ce{"+bracket+"}"} else + if (c === "T") { + if (!bracket.match(/^\{.*\}$/)) {bracket = "{"+bracket+"}"} + bracket = "\\text"+bracket; + }; + return bracket; + }, + + // + // Check if the string matches a regular expression + // and move past it if so, returning the match + // + Match: function (regex) { + var match = regex.exec(this.string.substr(this.i)); + if (match) {match = match[0]; this.i += match.length} + return match; + }, + + // + // Find a particular character, skipping over braced groups + // + Find: function (c) { + var m = this.string.length, i = this.i, braces = 0; + while (this.i < m) { + var C = this.string.charAt(this.i++); + if (C === c && braces === 0) {return this.string.substr(i,this.i-i-1)} + if (C === "{") {braces++} else + if (C === "}") { + if (braces) {braces--} + else { + TEX.Error(["ExtraCloseMissingOpen","Extra close brace or missing open brace"]) + } + } + } + if (braces) {TEX.Error(["MissingCloseBrace","Missing close brace"])} + TEX.Error(["NoClosingChar","Can't find closing %1",c]); + } + + }); + + MathJax.Extension["TeX/mhchem"].CE = CE; + + /***************************************************************************/ + + TEX.Definitions.Add({ + macros: { + // + // Set up the macros for chemistry + // + ce: 'CE', + cf: 'CE', + cee: 'CE', + + // + // Make these load AMSmath package (redefined below when loaded) + // + xleftrightarrow: ['Extension','AMSmath'], + xrightleftharpoons: ['Extension','AMSmath'], + xRightleftharpoons: ['Extension','AMSmath'], + xLeftrightharpoons: ['Extension','AMSmath'], + + // FIXME: These don't work well in FF NativeMML mode + longrightleftharpoons: ["Macro","\\stackrel{\\textstyle{{-}\\!\\!{\\rightharpoonup}}}{\\smash{{\\leftharpoondown}\\!\\!{-}}}"], + longRightleftharpoons: ["Macro","\\stackrel{\\textstyle{-}\\!\\!{\\rightharpoonup}}{\\small\\smash\\leftharpoondown}"], + longLeftrightharpoons: ["Macro","\\stackrel{\\rightharpoonup}{{{\\leftharpoondown}\\!\\!\\textstyle{-}}}"], + + // + // Add \hyphen used in some mhchem examples + // + hyphen: ["Macro","\\text{-}"], + + // + // Needed for \bond for the ~ forms + // + tripledash: ["Macro","\\raise3mu{\\tiny\\text{-}\\kern2mu\\text{-}\\kern2mu\\text{-}}"] + }, + + // + // Needed for \bond for the ~ forms + // + environment: { + CEstack: ['Array',null,null,null,'r',null,"0.001em",'T',1], + CEscriptstack: ['Array',null,null,null,'r',null,"0.2em",'S',1] + } + },null,true); + + if (!MathJax.Extension["TeX/AMSmath"]) { + TEX.Definitions.Add({ + macros: { + xrightarrow: ['Extension','AMSmath'], + xleftarrow: ['Extension','AMSmath'] + } + },null,true); + } + + // + // These arrows need to wait until AMSmath is loaded + // + MathJax.Hub.Register.StartupHook("TeX AMSmath Ready",function () { + TEX.Definitions.Add({ + macros: { + // + // Some of these are hacks for now + // + xleftrightarrow: ['xArrow',0x2194,6,6], + xrightleftharpoons: ['xArrow',0x21CC,5,7], // FIXME: doesn't stretch in HTML-CSS output + xRightleftharpoons: ['xArrow',0x21CC,5,7], // FIXME: how should this be handled? + xLeftrightharpoons: ['xArrow',0x21CC,5,7] + } + },null,true); + }); + + TEX.Parse.Augment({ + + // + // Implements \ce and friends + // + CE: function (name) { + var arg = this.GetArgument(name); + var tex = CE(arg).Parse(); + this.string = tex + this.string.substr(this.i); this.i = 0; + } + + }); + + // + // Indicate that the extension is ready + // + MathJax.Hub.Startup.signal.Post("TeX mhchem Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/mhchem.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/newcommand.js b/modules/MathJax/unpacked/extensions/TeX/newcommand.js new file mode 100644 index 0000000..a12d089 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/newcommand.js @@ -0,0 +1,264 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/newcommand.js + * + * Implements the \newcommand, \newenvironment and \def + * macros, and is loaded automatically when needed. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/newcommand"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var TEX = MathJax.InputJax.TeX; + var TEXDEF = TEX.Definitions; + + TEXDEF.Add({ + macros: { + newcommand: 'NewCommand', + renewcommand: 'NewCommand', + newenvironment: 'NewEnvironment', + renewenvironment: 'NewEnvironment', + def: 'MacroDef', + let: 'Let' + } + },null,true); + + TEX.Parse.Augment({ + + /* + * Implement \newcommand{\name}[n]{...} + */ + NewCommand: function (name) { + var cs = this.trimSpaces(this.GetArgument(name)), + n = this.GetBrackets(name), + opt = this.GetBrackets(name), + def = this.GetArgument(name); + if (cs.charAt(0) === "\\") {cs = cs.substr(1)} + if (!cs.match(/^(.|[a-z]+)$/i)) { + TEX.Error(["IllegalControlSequenceName", + "Illegal control sequence name for %1",name]); + } + if (n) { + n = this.trimSpaces(n); + if (!n.match(/^[0-9]+$/)) { + TEX.Error(["IllegalParamNumber", + "Illegal number of parameters specified in %1",name]); + } + } + this.setDef(cs,['Macro',def,n,opt]); + }, + + /* + * Implement \newenvironment{name}[n][default]{begincmd}{endcmd} + */ + NewEnvironment: function (name) { + var env = this.trimSpaces(this.GetArgument(name)), + n = this.GetBrackets(name), + bdef = this.GetArgument(name), + edef = this.GetArgument(name); + if (n) { + n = this.trimSpaces(n); + if (!n.match(/^[0-9]+$/)) { + TEX.Error(["IllegalParamNumber", + "Illegal number of parameters specified in %1",name]); + } + } + this.setEnv(env,['BeginEnv','EndEnv',bdef,edef,n]); + }, + + /* + * Implement \def command + */ + MacroDef: function (name) { + var cs = this.GetCSname(name), + params = this.GetTemplate(name,"\\"+cs), + def = this.GetArgument(name); + if (!(params instanceof Array)) {this.setDef(cs,['Macro',def,params])} + else {this.setDef(cs,['MacroWithTemplate',def].concat(params))} + }, + + /* + * Implements the \let command + */ + Let: function (name) { + var cs = this.GetCSname(name), macro; + var c = this.GetNext(); if (c === "=") {this.i++; c = this.GetNext()} + // + // All \let commands create entries in the macros array, but we + // have to look in the various mathchar and delimiter arrays if + // the source isn't a macro already, and attach the data to a + // macro with the proper routine to process it. + // + // A command of the form \let\cs=char produces a macro equivalent + // to \def\cs{char}, which is as close as MathJax can get for this. + // So \let\bgroup={ is possible, but doesn't work as it does in TeX. + // + if (c === "\\") { + name = this.GetCSname(name); + macro = this.csFindMacro(name); + if (!macro) { + if (TEXDEF.mathchar0mi[name]) {macro = ["csMathchar0mi",TEXDEF.mathchar0mi[name]]} else + if (TEXDEF.mathchar0mo[name]) {macro = ["csMathchar0mo",TEXDEF.mathchar0mo[name]]} else + if (TEXDEF.mathchar7[name]) {macro = ["csMathchar7",TEXDEF.mathchar7[name]]} else + if (TEXDEF.delimiter["\\"+name] != null) {macro = ["csDelimiter",TEXDEF.delimiter["\\"+name]]} + } + } else {macro = ["Macro",c]; this.i++} + this.setDef(cs,macro); + }, + + /* + * Routines to set the macro and environment definitions + * (overridden by begingroup to make localized versions) + */ + setDef: function (name,value) {value.isUser = true; TEXDEF.macros[name] = value}, + setEnv: function (name,value) {value.isUser = true; TEXDEF.environment[name] = value}, + + /* + * Get a CS name or give an error + */ + GetCSname: function (cmd) { + var c = this.GetNext(); + if (c !== "\\") { + TEX.Error(["MissingCS", + "%1 must be followed by a control sequence", cmd]) + } + var cs = this.trimSpaces(this.GetArgument(cmd)); + return cs.substr(1); + }, + + /* + * Get a \def parameter template + */ + GetTemplate: function (cmd,cs) { + var c, params = [], n = 0; + c = this.GetNext(); var i = this.i; + while (this.i < this.string.length) { + c = this.GetNext(); + if (c === '#') { + if (i !== this.i) {params[n] = this.string.substr(i,this.i-i)} + c = this.string.charAt(++this.i); + if (!c.match(/^[1-9]$/)) { + TEX.Error(["CantUseHash2", + "Illegal use of # in template for %1",cs]); + } + if (parseInt(c) != ++n) { + TEX.Error(["SequentialParam", + "Parameters for %1 must be numbered sequentially",cs]); + } + i = this.i+1; + } else if (c === '{') { + if (i !== this.i) {params[n] = this.string.substr(i,this.i-i)} + if (params.length > 0) {return [n,params]} else {return n} + } + this.i++; + } + TEX.Error(["MissingReplacementString", + "Missing replacement string for definition of %1",cmd]); + }, + + /* + * Process a macro with a parameter template + */ + MacroWithTemplate: function (name,text,n,params) { + if (n) { + var args = []; this.GetNext(); + if (params[0] && !this.MatchParam(params[0])) { + TEX.Error(["MismatchUseDef", + "Use of %1 doesn't match its definition",name]); + } + for (var i = 0; i < n; i++) {args.push(this.GetParameter(name,params[i+1]))} + text = this.SubstituteArgs(args,text); + } + this.string = this.AddArgs(text,this.string.slice(this.i)); + this.i = 0; + if (++this.macroCount > TEX.config.MAXMACROS) { + TEX.Error(["MaxMacroSub1", + "MathJax maximum macro substitution count exceeded; " + + "is there a recursive macro call?"]); + } + }, + + /* + * Process a user-defined environment + */ + BeginEnv: function (begin,bdef,edef,n) { + if (n) { + var args = []; + for (var i = 0; i < n; i++) {args.push(this.GetArgument("\\begin{"+name+"}"))} + bdef = this.SubstituteArgs(args,bdef); + edef = this.SubstituteArgs(args,edef); + } + begin.edef = edef; + this.string = this.AddArgs(bdef,this.string.slice(this.i)); this.i = 0; + return begin; + }, + EndEnv: function (begin,row) { + this.string = this.AddArgs(begin.edef,this.string.slice(this.i)); this.i = 0 + return row; + }, + + /* + * Find a single parameter delimited by a trailing template + */ + GetParameter: function (name,param) { + if (param == null) {return this.GetArgument(name)} + var i = this.i, j = 0, hasBraces = 0; + while (this.i < this.string.length) { + if (this.string.charAt(this.i) === '{') { + if (this.i === i) {hasBraces = 1} + this.GetArgument(name); j = this.i - i; + } else if (this.MatchParam(param)) { + if (hasBraces) {i++; j -= 2} + return this.string.substr(i,j); + } else { + this.i++; j++; hasBraces = 0; + } + } + TEX.Error(["RunawayArgument","Runaway argument for %1?",name]); + }, + + /* + * Check if a template is at the current location. + * (The match must be exact, with no spacing differences. TeX is + * a little more forgiving than this about spaces after macro names) + */ + MatchParam: function (param) { + if (this.string.substr(this.i,param.length) !== param) {return 0} + this.i += param.length; + return 1; + } + + }); + + TEX.Environment = function (name) { + TEXDEF.environment[name] = ['BeginEnv','EndEnv'].concat([].slice.call(arguments,1)); + TEXDEF.environment[name].isUser = true; + } + + MathJax.Hub.Startup.signal.Post("TeX newcommand Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/newcommand.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/noErrors.js b/modules/MathJax/unpacked/extensions/TeX/noErrors.js new file mode 100644 index 0000000..47fac40 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/noErrors.js @@ -0,0 +1,309 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/noErrors.js + * + * Prevents the TeX error messages from being displayed and shows the + * original TeX code instead. You can configure whether the dollar signs + * are shown or not for in-line math, and whether to put all the TeX on + * one line or use multiple-lines. + * + * To configure this extension, use + * + * MathJax.Hub.Config({ + * TeX: { + * noErrors: { + * inlineDelimiters: ["",""], // or ["$","$"] or ["\\(","\\)"] + * multiLine: true, // false for TeX on all one line + * style: { + * "font-size": "90%", + * "text-align": "left", + * "color": "black", + * "padding": "1px 3px", + * "border": "1px solid" + * // add any additional CSS styles that you want + * // (be sure there is no extra comma at the end of the last item) + * } + * } + * } + * }); + * + * Display-style math is always shown in multi-line format, and without + * delimiters, as it will already be set off in its own centered + * paragraph, like standard display mathematics. + * + * The default settings place the invalid TeX in a multi-line box with a + * black border. If you want it to look as though the TeX is just part of + * the paragraph, use + * + * MathJax.Hub.Config({ + * TeX: { + * noErrors: { + * inlineDelimiters: ["$","$"], // or ["",""] or ["\\(","\\)"] + * multiLine: false, + * style: { + * "font-size": "normal", + * "border": "" + * } + * } + * } + * }); + * + * You may also wish to set the font family, as the default is "serif" + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HUB,HTML) { + var VERSION = "2.3"; + + var CONFIG = HUB.CombineConfig("TeX.noErrors",{ + disabled: false, // set to true to return to original error messages + multiLine: true, + inlineDelimiters: ["",""], // or use ["$","$"] or ["\\(","\\)"] + style: { + "font-size": "90%", + "text-align": "left", + "color": "black", + "padding": "1px 3px", + "border": "1px solid" + } + }); + + var NBSP = "\u00A0"; + + // + // The configuration defaults, augmented by the user settings + // + MathJax.Extension["TeX/noErrors"] = { + version: VERSION, + config: CONFIG + }; + + HUB.Register.StartupHook("TeX Jax Ready",function () { + var FORMAT = MathJax.InputJax.TeX.formatError; + + MathJax.InputJax.TeX.Augment({ + // + // Make error messages be the original TeX code + // Mark them as errors and multi-line or not, and for + // multi-line TeX, make spaces non-breakable (to get formatting right) + // + formatError: function (err,math,displaystyle,script) { + if (CONFIG.disabled) {return FORMAT.apply(this,arguments)} + var message = err.message.replace(/\n.*/,""); + HUB.signal.Post(["TeX Jax - parse error",message,math,displaystyle,script]); + var delim = CONFIG.inlineDelimiters; + var multiLine = (displaystyle || CONFIG.multiLine); + if (!displaystyle) {math = delim[0] + math + delim[1]} + if (multiLine) {math = math.replace(/ /g,NBSP)} else {math = math.replace(/\n/g," ")} + return MathJax.ElementJax.mml.merror(math).With({isError:true, multiLine: multiLine}); + } + }); + }); + + /******************************************************************* + * + * Fix HTML-CSS output + */ + + HUB.Register.StartupHook("HTML-CSS Jax Config",function () { + HUB.Config({ + "HTML-CSS": { + styles: { + ".MathJax .noError": HUB.Insert({ + "vertical-align": (HUB.Browser.isMSIE && CONFIG.multiLine ? "-2px" : "") + },CONFIG.style) + } + } + }); + }); + + HUB.Register.StartupHook("HTML-CSS Jax Ready",function () { + var MML = MathJax.ElementJax.mml; + var HTMLCSS = MathJax.OutputJax["HTML-CSS"]; + + var MATH = MML.math.prototype.toHTML, + MERROR = MML.merror.prototype.toHTML; + + // + // Override math toHTML routine so that error messages + // don't have the clipping and other unneeded overhead + // + MML.math.Augment({ + toHTML: function (span,node) { + var data = this.data[0]; + if (data && data.data[0] && data.data[0].isError) { + span.style.fontSize = ""; + span = this.HTMLcreateSpan(span); + span.bbox = data.data[0].toHTML(span).bbox; + } else { + span = MATH.call(this,span,node); + } + return span; + } + }); + + // + // Override merror toHTML routine so that it puts out the + // TeX code in an inline-block with line breaks as in the original + // + MML.merror.Augment({ + toHTML: function (span) { + if (!this.isError) {return MERROR.call(this,span)} + span = this.HTMLcreateSpan(span); span.className = "noError" + if (this.multiLine) {span.style.display = "inline-block"} + var text = this.data[0].data[0].data.join("").split(/\n/); + for (var i = 0, m = text.length; i < m; i++) { + HTMLCSS.addText(span,text[i]); + if (i !== m-1) {HTMLCSS.addElement(span,"br",{isMathJax:true})} + } + var HD = HTMLCSS.getHD(span.parentNode), W = HTMLCSS.getW(span.parentNode); + if (m > 1) { + var H = (HD.h + HD.d)/2, x = HTMLCSS.TeX.x_height/2; + span.parentNode.style.verticalAlign = HTMLCSS.Em(HD.d+(x-H)); + HD.h = x + H; HD.d = H - x; + } + span.bbox = {h: HD.h, d: HD.d, w: W, lw: 0, rw: W}; + return span; + } + }); + + }); + + /******************************************************************* + * + * Fix SVG output + */ + + HUB.Register.StartupHook("SVG Jax Config",function () { + HUB.Config({ + "SVG": { + styles: { + ".MathJax_SVG .noError": HUB.Insert({ + "vertical-align": (HUB.Browser.isMSIE && CONFIG.multiLine ? "-2px" : "") + },CONFIG.style) + } + } + }); + }); + + HUB.Register.StartupHook("SVG Jax Ready",function () { + var MML = MathJax.ElementJax.mml; + + var MATH = MML.math.prototype.toSVG, + MERROR = MML.merror.prototype.toSVG; + + // + // Override math toSVG routine so that error messages + // don't have the clipping and other unneeded overhead + // + MML.math.Augment({ + toSVG: function (span,node) { + var data = this.data[0]; + if (data && data.data[0] && data.data[0].isError) + {span = data.data[0].toSVG(span)} else {span = MATH.call(this,span,node)} + return span; + } + }); + + // + // Override merror toSVG routine so that it puts out the + // TeX code in an inline-block with line breaks as in the original + // + MML.merror.Augment({ + toSVG: function (span) { + if (!this.isError || this.Parent().type !== "math") {return MERROR.call(this,span)} + span = HTML.addElement(span,"span",{className: "noError", isMathJax:true}); + if (this.multiLine) {span.style.display = "inline-block"} + var text = this.data[0].data[0].data.join("").split(/\n/); + for (var i = 0, m = text.length; i < m; i++) { + HTML.addText(span,text[i]); + if (i !== m-1) {HTML.addElement(span,"br",{isMathJax:true})} + } + if (m > 1) { + var H = span.offsetHeight/2; + span.style.verticalAlign = (-H+(H/m))+"px"; + } + return span; + } + }); + + }); + + /******************************************************************* + * + * Fix NativeMML output + */ + + HUB.Register.StartupHook("NativeMML Jax Ready",function () { + var MML = MathJax.ElementJax.mml; + var CONFIG = MathJax.Extension["TeX/noErrors"].config; + + var MATH = MML.math.prototype.toNativeMML, + MERROR = MML.merror.prototype.toNativeMML; + + // + // Override math toNativeMML routine so that error messages + // don't get placed inside math tags. + // + MML.math.Augment({ + toNativeMML: function (span) { + var data = this.data[0]; + if (data && data.data[0] && data.data[0].isError) + {span = data.data[0].toNativeMML(span)} else {span = MATH.call(this,span)} + return span; + } + }); + + // + // Override merror toNativeMML routine so that it puts out the + // TeX code in an inline-block with line breaks as in the original + // + MML.merror.Augment({ + toNativeMML: function (span) { + if (!this.isError) {return MERROR.call(this,span)} + span = span.appendChild(document.createElement("span")); + var text = this.data[0].data[0].data.join("").split(/\n/); + for (var i = 0, m = text.length; i < m; i++) { + span.appendChild(document.createTextNode(text[i])); + if (i !== m-1) {span.appendChild(document.createElement("br"))} + } + if (this.multiLine) { + span.style.display = "inline-block"; + if (m > 1) {span.style.verticalAlign = "middle"} + } + for (var id in CONFIG.style) {if (CONFIG.style.hasOwnProperty(id)) { + var ID = id.replace(/-./g,function (c) {return c.charAt(1).toUpperCase()}); + span.style[ID] = CONFIG.style[id]; + }} + return span; + } + }); + + }); + + /*******************************************************************/ + + HUB.Startup.signal.Post("TeX noErrors Ready"); + +})(MathJax.Hub,MathJax.HTML); + + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noErrors.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/noUndefined.js b/modules/MathJax/unpacked/extensions/TeX/noUndefined.js new file mode 100644 index 0000000..d06500a --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/noUndefined.js @@ -0,0 +1,72 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/noUndefined.js + * + * This causes undefined control sequences to be shown as their macro + * names rather than producing an error message. So $X_{\xxx}$ would + * display as an X with a subscript consiting of the text "\xxx". + * + * To configure this extension, use for example + * + * MathJax.Hub.Config({ + * TeX: { + * noUndefined: { + * attributes: { + * mathcolor: "red", + * mathbackground: "#FFEEEE", + * mathsize: "90%" + * } + * } + * } + * }); + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// +// The configuration defaults, augmented by the user settings +// +MathJax.Extension["TeX/noUndefined"] = { + version: "2.3", + config: MathJax.Hub.CombineConfig("TeX.noUndefined",{ + disabled: false, // set to true to return to original error messages + attributes: { + mathcolor: "red" + } + }) +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var CONFIG = MathJax.Extension["TeX/noUndefined"].config; + var MML = MathJax.ElementJax.mml; + var UNDEFINED = MathJax.InputJax.TeX.Parse.prototype.csUndefined; + + MathJax.InputJax.TeX.Parse.Augment({ + csUndefined: function (name) { + if (CONFIG.disabled) {return UNDEFINED.apply(this,arguments)} + MathJax.Hub.signal.Post(["TeX Jax - undefined control sequence",name]); + this.Push(MML.mtext(name).With(CONFIG.attributes)); + } + }); + + MathJax.Hub.Startup.signal.Post("TeX noUndefined Ready"); +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/noUndefined.js"); diff --git a/modules/MathJax/extensions/TeX/texvc.js b/modules/MathJax/unpacked/extensions/TeX/texvc.js similarity index 100% rename from modules/MathJax/extensions/TeX/texvc.js rename to modules/MathJax/unpacked/extensions/TeX/texvc.js diff --git a/modules/MathJax/unpacked/extensions/TeX/unicode.js b/modules/MathJax/unpacked/extensions/TeX/unicode.js new file mode 100644 index 0000000..d321566 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/unicode.js @@ -0,0 +1,167 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/unicode.js + * + * Implements the \unicode extension to TeX to allow arbitrary unicode + * code points to be entered into the TeX file. You can specify + * the height and depth of the character (the width is determined by + * the browser), and the default font from which to take the character. + * + * Examples: + * \unicode{65} % the character 'A' + * \unicode{x41} % the character 'A' + * \unicode[.55,0.05]{x22D6} % less-than with dot, with height .55 and depth 0.05 + * \unicode[.55,0.05][Geramond]{x22D6} % same taken from Geramond font + * \unicode[Garamond]{x22D6} % same, but with default height, depth of .8,.2 + * + * Once a size and font are provided for a given code point, they need + * not be specified again in subsequent \unicode calls for that character. + * Note that a font list can be given, but Internet Explorer has a buggy + * implementation of font-family where it only looks in the first + * available font and if the glyph is not in that, it does not look at + * later fonts, but goes directly to the default font as set in the + * Internet-Options/Font panel. For this reason, the default font list is + * "STIXGeneral,'Arial Unicode MS'", so if the user has STIX fonts, the + * symbol will be taken from that (almost all the symbols are in + * STIXGeneral), otherwise Arial Unicode MS is tried. + * + * To configure the default font list, use + * + * MathJax.Hub.Config({ + * TeX: { + * unicode: { + * fonts: "STIXGeneral,'Arial Unicode MS'" + * } + * } + * }); + * + * The result of \unicode will have TeX class ORD (i.e., it will act like a + * variable). Use \mathbin, \mathrel, etc, to specify a different class. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// +// The configuration defaults, augmented by the user settings +// +MathJax.Extension["TeX/unicode"] = { + version: "2.3", + unicode: {}, + config: MathJax.Hub.CombineConfig("TeX.unicode",{ + fonts: "STIXGeneral,'Arial Unicode MS'" + }) +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + var TEX = MathJax.InputJax.TeX; + var MML = MathJax.ElementJax.mml; + var UNICODE = MathJax.Extension["TeX/unicode"].unicode; + + // + // Add \unicode macro + // + TEX.Definitions.Add({macros: {unicode: 'Unicode'}},null,true); + // + // Implementation of \unicode in parser + // + TEX.Parse.Augment({ + Unicode: function(name) { + var HD = this.GetBrackets(name), font; + if (HD) { + if (HD.replace(/ /g,"").match(/^(\d+(\.\d*)?|\.\d+),(\d+(\.\d*)?|\.\d+)$/)) + {HD = HD.replace(/ /g,"").split(/,/); font = this.GetBrackets(name)} + else {font = HD; HD = null} + } + var n = this.trimSpaces(this.GetArgument(name)), + N = parseInt(n.match(/^x/) ? "0"+n : n); + if (!UNICODE[N]) {UNICODE[N] = [800,200,font,N]} + else if (!font) {font = UNICODE[N][2]} + if (HD) { + UNICODE[N][0] = Math.floor(HD[0]*1000); + UNICODE[N][1] = Math.floor(HD[1]*1000); + } + var variant = this.stack.env.font, def = {}; + if (font) { + UNICODE[N][2] = def.fontfamily = font.replace(/"/g,"'"); + if (variant) { + if (variant.match(/bold/)) {def.fontweight = "bold"} + if (variant.match(/italic|-mathit/)) {def.fontstyle = "italic"} + } + } else if (variant) {def.mathvariant = variant} + def.unicode = [].concat(UNICODE[N]); // make a copy + this.Push(MML.mtext(MML.entity("#"+n)).With(def)); + } + }); + + MathJax.Hub.Startup.signal.Post("TeX unicode Ready"); + +}); + +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var MML = MathJax.ElementJax.mml; + var FONTS = MathJax.Extension["TeX/unicode"].config.fonts; + + // + // Override getVariant to make one that includes the font and size + // + var GETVARIANT = MML.mbase.prototype.HTMLgetVariant; + MML.mbase.Augment({ + HTMLgetVariant: function () { + var variant = GETVARIANT.call(this); + if (variant.unicode) {delete variant.unicode; delete variant.FONTS} // clear font cache in case of restart + if (!this.unicode) {return variant} + variant.unicode = true; + if (!variant.defaultFont) { + variant = MathJax.Hub.Insert({},variant); // make a copy + variant.defaultFont = {family:FONTS}; + } + var family = this.unicode[2]; if (family) {family += ","+FONTS} else {family = FONTS} + variant.defaultFont[this.unicode[3]] = [ + this.unicode[0],this.unicode[1],500,0,500, + {isUnknown:true, isUnicode:true, font:family} + ]; + return variant; + } + }); +}); + +MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { + var MML = MathJax.ElementJax.mml; + var FONTS = MathJax.Extension["TeX/unicode"].config.fonts; + + // + // Override getVariant to make one that includes the font and size + // + var GETVARIANT = MML.mbase.prototype.SVGgetVariant; + MML.mbase.Augment({ + SVGgetVariant: function () { + var variant = GETVARIANT.call(this); + if (variant.unicode) {delete variant.unicode; delete variant.FONTS} // clear font cache in case of restart + if (!this.unicode) {return variant} + variant.unicode = true; + if (!variant.forceFamily) {variant = MathJax.Hub.Insert({},variant)} // make a copy + variant.defaultFamily = FONTS; variant.noRemap = true; + variant.h = this.unicode[0]; variant.d = this.unicode[1]; + return variant; + } + }); +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/unicode.js"); diff --git a/modules/MathJax/unpacked/extensions/TeX/verb.js b/modules/MathJax/unpacked/extensions/TeX/verb.js new file mode 100644 index 0000000..d1b5133 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/TeX/verb.js @@ -0,0 +1,61 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/TeX/verb.js + * + * Implements the \verb|...| command for including text verbatim + * (with no processing of macros or special characters). + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension["TeX/verb"] = { + version: "2.3" +}; + +MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { + + var MML = MathJax.ElementJax.mml; + var TEX = MathJax.InputJax.TeX; + var TEXDEF = TEX.Definitions; + + TEXDEF.Add({macros: {verb: 'Verb'}},null,true); + + TEX.Parse.Augment({ + + /* + * Implement \verb|...| + */ + Verb: function (name) { + var c = this.GetNext(); var start = ++this.i; + if (c == "" ) {TEX.Error(["MissingArgFor","Missing argument for %1",name])} + while (this.i < this.string.length && this.string.charAt(this.i) != c) {this.i++} + if (this.i == this.string.length) + {TEX.Error(["NoClosingDelim","Can't find closing delimiter for %1", name])} + var text = this.string.slice(start,this.i).replace(/ /g,"\u00A0"); this.i++; + this.Push(MML.mtext(text).With({mathvariant:MML.VARIANT.MONOSPACE})); + } + + }); + + MathJax.Hub.Startup.signal.Post("TeX verb Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/verb.js"); diff --git a/modules/MathJax/unpacked/extensions/asciimath2jax.js b/modules/MathJax/unpacked/extensions/asciimath2jax.js new file mode 100644 index 0000000..64cb77d --- /dev/null +++ b/modules/MathJax/unpacked/extensions/asciimath2jax.js @@ -0,0 +1,239 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/asciimath2jax.js + * + * Implements the AsciiMath to Jax preprocessor that locates AsciiMath + * code within the text of a document and replaces it with SCRIPT tags for + * processing by MathJax. + * + * Modified by David Lippman, based on tex2jax.js. + * Additional work by Davide P. Cervone. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2012-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension.asciimath2jax = { + version: "2.3", + config: { + delimiters: [['`','`']], // The star/stop delimiter pairs for asciimath code + + skipTags: ["script","noscript","style","textarea","pre","code","annotation","annotation-xml"], + // The names of the tags whose contents will not be + // scanned for math delimiters + + ignoreClass: "asciimath2jax_ignore", // the class name of elements whose contents should + // NOT be processed by asciimath2jax. Note that this + // is a regular expression, so be sure to quote any + // regexp special characters + + processClass: "asciimath2jax_process", // the class name of elements whose contents SHOULD + // be processed when they appear inside ones that + // are ignored. Note that this is a regular expression, + // so be sure to quote any regexp special characters + + preview: "AsciiMath" // set to "none" to not insert MathJax_Preview spans + // or set to an array specifying an HTML snippet + // to use the same preview for every equation. + + }, + + PreProcess: function (element) { + if (!this.configured) { + this.config = MathJax.Hub.CombineConfig("asciimath2jax",this.config); + if (this.config.Augment) {MathJax.Hub.Insert(this,this.config.Augment)} + this.configured = true; + } + if (typeof(element) === "string") {element = document.getElementById(element)} + if (!element) {element = document.body} + if (this.createPatterns()) {this.scanElement(element,element.nextSibling)} + }, + + createPatterns: function () { + var starts = [], i, m, config = this.config; this.match = {}; + if (config.delimiters.length === 0) {return false} + for (i = 0, m = config.delimiters.length; i < m; i++) { + starts.push(this.patternQuote(config.delimiters[i][0])); + this.match[config.delimiters[i][0]] = { + mode: "", + end: config.delimiters[i][1], + pattern: this.endPattern(config.delimiters[i][1]) + }; + } + this.start = new RegExp(starts.sort(this.sortLength).join("|"),"g"); + this.skipTags = new RegExp("^("+config.skipTags.join("|")+")$","i"); + var ignore = []; + if (MathJax.Hub.config.preRemoveClass) {ignore.push(MathJax.Hub.config.preRemoveClass)} + if (config.ignoreClass) {ignore.push(config.ignoreClass)} + this.ignoreClass = (ignore.length ? new RegExp("(^| )("+ignore.join("|")+")( |$)") : /^$/); + this.processClass = new RegExp("(^| )("+config.processClass+")( |$)"); + return true; + }, + + patternQuote: function (s) {return s.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,'\\$1')}, + + endPattern: function (end) { + return new RegExp(this.patternQuote(end)+"|\\\\.","g"); + }, + + sortLength: function (a,b) { + if (a.length !== b.length) {return b.length - a.length} + return (a == b ? 0 : (a < b ? -1 : 1)); + }, + + scanElement: function (element,stop,ignore) { + var cname, tname, ignoreChild, process; + while (element && element != stop) { + if (element.nodeName.toLowerCase() === '#text') { + if (!ignore) {element = this.scanText(element)} + } else { + cname = (typeof(element.className) === "undefined" ? "" : element.className); + tname = (typeof(element.tagName) === "undefined" ? "" : element.tagName); + if (typeof(cname) !== "string") {cname = String(cname)} // jsxgraph uses non-string class names! + process = this.processClass.exec(cname); + if (element.firstChild && !cname.match(/(^| )MathJax/) && + (process || !this.skipTags.exec(tname))) { + ignoreChild = (ignore || this.ignoreClass.exec(cname)) && !process; + this.scanElement(element.firstChild,stop,ignoreChild); + } + } + if (element) {element = element.nextSibling} + } + }, + + scanText: function (element) { + if (element.nodeValue.replace(/\s+/,'') == '') {return element} + var match, prev; + this.search = {start: true}; + this.pattern = this.start; + while (element) { + this.pattern.lastIndex = 0; + while (element && element.nodeName.toLowerCase() === '#text' && + (match = this.pattern.exec(element.nodeValue))) { + if (this.search.start) {element = this.startMatch(match,element)} + else {element = this.endMatch(match,element)} + } + if (this.search.matched) {element = this.encloseMath(element)} + if (element) { + do {prev = element; element = element.nextSibling} + while (element && (element.nodeName.toLowerCase() === 'br' || + element.nodeName.toLowerCase() === '#comment')); + if (!element || element.nodeName !== '#text') {return prev} + } + } + return element; + }, + + startMatch: function (match,element) { + var delim = this.match[match[0]]; + if (delim != null) { + this.search = { + end: delim.end, mode: delim.mode, + open: element, olen: match[0].length, + opos: this.pattern.lastIndex - match[0].length + }; + this.switchPattern(delim.pattern); + } + return element; + }, + + endMatch: function (match,element) { + if (match[0] == this.search.end) { + this.search.close = element; + this.search.cpos = this.pattern.lastIndex; + this.search.clen = (this.search.isBeginEnd ? 0 : match[0].length); + this.search.matched = true; + element = this.encloseMath(element); + this.switchPattern(this.start); + } + return element; + }, + + switchPattern: function (pattern) { + pattern.lastIndex = this.pattern.lastIndex; + this.pattern = pattern; + this.search.start = (pattern === this.start); + }, + + encloseMath: function (element) { + var search = this.search, close = search.close, CLOSE, math; + if (search.cpos === close.length) {close = close.nextSibling} + else {close = close.splitText(search.cpos)} + if (!close) {CLOSE = close = MathJax.HTML.addText(search.close.parentNode,"")} + search.close = close; + math = (search.opos ? search.open.splitText(search.opos) : search.open); + while (math.nextSibling && math.nextSibling !== close) { + if (math.nextSibling.nodeValue !== null) { + if (math.nextSibling.nodeName === "#comment") { + math.nodeValue += math.nextSibling.nodeValue.replace(/^\[CDATA\[((.|\n|\r)*)\]\]$/,"$1"); + } else { + math.nodeValue += math.nextSibling.nodeValue; + } + } else if (this.msieNewlineBug) { + math.nodeValue += (math.nextSibling.nodeName.toLowerCase() === "br" ? "\n" : " "); + } else { + math.nodeValue += " "; + } + math.parentNode.removeChild(math.nextSibling); + } + var AM = math.nodeValue.substr(search.olen,math.nodeValue.length-search.olen-search.clen); + math.parentNode.removeChild(math); + if (this.config.preview !== "none") {this.createPreview(search.mode,AM)} + math = this.createMathTag(search.mode,AM); + this.search = {}; this.pattern.lastIndex = 0; + if (CLOSE) {CLOSE.parentNode.removeChild(CLOSE)} + return math; + }, + + insertNode: function (node) { + var search = this.search; + search.close.parentNode.insertBefore(node,search.close); + }, + + createPreview: function (mode,asciimath) { + var preview = this.config.preview; + if (preview === "none") return; + if (preview === "AsciiMath") {preview = [this.filterPreview(asciimath)]} + if (preview) { + preview = MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},preview); + this.insertNode(preview); + } + }, + + createMathTag: function (mode,asciimath) { + var script = document.createElement("script"); + script.type = "math/asciimath" + mode; + MathJax.HTML.setScript(script,asciimath); + this.insertNode(script); + return script; + }, + + filterPreview: function (asciimath) {return asciimath}, + + msieNewlineBug: (MathJax.Hub.Browser.isMSIE && (document.documentMode||0) < 9) + +}; + +// We register the preprocessors with the following priorities: +// - mml2jax.js: 5 +// - jsMath2jax.js: 8 +// - asciimath2jax.js, tex2jax.js: 10 (default) +// See issues 18 and 484 and the other *2jax.js files. +MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.asciimath2jax]); +MathJax.Ajax.loadComplete("[MathJax]/extensions/asciimath2jax.js"); diff --git a/modules/MathJax/unpacked/extensions/jsMath2jax.js b/modules/MathJax/unpacked/extensions/jsMath2jax.js new file mode 100644 index 0000000..8a5dcdd --- /dev/null +++ b/modules/MathJax/unpacked/extensions/jsMath2jax.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/jsMath2jax.js + * + * Implements a jsMath to Jax preprocessor that locates jsMath-style + * ... and
...
tags + * and replaces them with SCRIPT tags for processing by MathJax. + * (Note: use the tex2jax preprocessor to convert TeX delimiters or + * custom delimiters to MathJax SCRIPT tags. This preprocessor is + * only for the SPAN and DIV form of jsMath delimiters). + * + * To use this preprocessor, include "jsMath2jax.js" in the extensions + * array in your config/MathJax.js file, or the MathJax.Hub.Config() call + * in your HTML document. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension.jsMath2jax = { + version: "2.3", + + config: { + preview: "TeX" // Set to "none" to prevent preview strings from being inserted + // or to an array that specifies an HTML snippet to use for + // the preview. + }, + + PreProcess: function (element) { + if (!this.configured) { + this.config = MathJax.Hub.CombineConfig("jsMath2jax",this.config); + if (this.config.Augment) {MathJax.Hub.Insert(this,this.config.Augment)} + if (typeof(this.config.previewTeX) !== "undefined" && !this.config.previewTeX) + {this.config.preview = "none"} // backward compatibility for previewTeX parameter + this.previewClass = MathJax.Hub.config.preRemoveClass; + this.configured = true; + } + if (typeof(element) === "string") {element = document.getElementById(element)} + if (!element) {element = document.body} + var span = element.getElementsByTagName("span"), i; + for (i = span.length-1; i >= 0; i--) + {if (String(span[i].className).match(/(^| )math( |$)/)) {this.ConvertMath(span[i],"")}} + var div = element.getElementsByTagName("div"); + for (i = div.length-1; i >= 0; i--) + {if (String(div[i].className).match(/(^| )math( |$)/)) {this.ConvertMath(div[i],"; mode=display")}} + }, + + ConvertMath: function (node,mode) { + if (node.getElementsByTagName("script").length === 0) { + var parent = node.parentNode, + script = this.createMathTag(mode,node.innerHTML); + if (node.nextSibling) {parent.insertBefore(script,node.nextSibling)} + else {parent.appendChild(script)} + if (this.config.preview !== "none") {this.createPreview(node)} + parent.removeChild(node); + } + }, + + createPreview: function (node) { + var preview = this.config.preview; + if (preview === "TeX") {preview = [this.filterPreview(node.innerHTML)]} + if (preview) { + preview = MathJax.HTML.Element("span",{className: MathJax.Hub.config.preRemoveClass},preview); + node.parentNode.insertBefore(preview,node); + } + }, + + createMathTag: function (mode,tex) { + tex = tex.replace(/</g,"<").replace(/>/g,">").replace(/&/g,"&"); + var script = document.createElement("script"); + script.type = "math/tex" + mode; + MathJax.HTML.setScript(script,tex); + return script; + }, + + filterPreview: function (tex) {return tex} + +}; + +// We register the preprocessors with the following priorities: +// - mml2jax.js: 5 +// - jsMath2jax.js: 8 +// - asciimath2jax.js, tex2jax.js: 10 (default) +// See issues 18 and 484 and the other *2jax.js files. +MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.jsMath2jax],8); +MathJax.Ajax.loadComplete("[MathJax]/extensions/jsMath2jax.js"); diff --git a/modules/MathJax/unpacked/extensions/mml2jax.js b/modules/MathJax/unpacked/extensions/mml2jax.js new file mode 100644 index 0000000..d50dcd3 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/mml2jax.js @@ -0,0 +1,245 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/mml2jax.js + * + * Implements the MathML to Jax preprocessor that locates nodes + * within the text of a document and replaces them with SCRIPT tags + * for processing by MathJax. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension.mml2jax = { + version: "2.3", + config: { + preview: "mathml" // Use the element as the + // preview. Set to "none" for no preview, + // set to "alttext" to use the alttext attribute + // of the element, set to "altimg" to use + // an image described by the altimg* attributes + // or set to an array specifying an HTML snippet + // to use a fixed preview for all math + + }, + MMLnamespace: "http://www.w3.org/1998/Math/MathML", + + PreProcess: function (element) { + if (!this.configured) { + this.config = MathJax.Hub.CombineConfig("mml2jax",this.config); + if (this.config.Augment) {MathJax.Hub.Insert(this,this.config.Augment)} + this.InitBrowser(); + this.configured = true; + } + if (typeof(element) === "string") {element = document.getElementById(element)} + if (!element) {element = document.body} + var mathArray = []; + // + // Handle all math tags with no namespaces + // + mathArray.push.apply(mathArray,element.getElementsByTagName("math")); + // + // Handle math with namespaces in XHTML + // + if (element.getElementsByTagNameNS) + {mathArray.push.apply(mathArray,element.getElementsByTagNameNS(this.MMLnamespace,"math"))} + // + // Handle math with namespaces in HTML + // + var i, m; + if (typeof(document.namespaces) !== "undefined") { + // + // IE namespaces are listed in document.namespaces + // + try { + for (i = 0, m = document.namespaces.length; i < m; i++) { + var ns = document.namespaces[i]; + if (ns.urn === this.MMLnamespace) + {mathArray.push.apply(mathArray,element.getElementsByTagName(ns.name+":math"))} + } + } catch (err) {} + } else { + // + // Everybody else + // + var html = document.getElementsByTagName("html")[0]; + if (html) { + for (i = 0, m = html.attributes.length; i < m; i++) { + var attr = html.attributes[i]; + if (attr.nodeName.substr(0,6) === "xmlns:" && attr.nodeValue === this.MMLnamespace) + {mathArray.push.apply(mathArray,element.getElementsByTagName(attr.nodeName.substr(6)+":math"))} + } + } + } + this.ProcessMathArray(mathArray); + }, + + ProcessMathArray: function (math) { + var i, m = math.length; + if (m) { + if (this.MathTagBug) { + for (i = 0; i < m; i++) { + if (math[i].nodeName === "MATH") {this.ProcessMathFlattened(math[i])} + else {this.ProcessMath(math[i])} + } + } else { + for (i = 0; i < m; i++) {this.ProcessMath(math[i])} + } + } + }, + + ProcessMath: function (math) { + var parent = math.parentNode; + if (!parent || parent.className === MathJax.Hub.config.preRemoveClass) return; + var script = document.createElement("script"); + script.type = "math/mml"; + parent.insertBefore(script,math); + if (this.AttributeBug) { + var html = this.OuterHTML(math); + if (this.CleanupHTML) { + html = html.replace(/<\?import .*?>/i,"").replace(/<\?xml:namespace .*?\/>/i,""); + html = html.replace(/ /g," "); + } + MathJax.HTML.setScript(script,html); parent.removeChild(math); + } else { + var span = MathJax.HTML.Element("span"); span.appendChild(math); + MathJax.HTML.setScript(script,span.innerHTML); + } + if (this.config.preview !== "none") {this.createPreview(math,script)} + }, + + ProcessMathFlattened: function (math) { + var parent = math.parentNode; + if (!parent || parent.className === MathJax.Hub.config.preRemoveClass) return; + var script = document.createElement("script"); + script.type = "math/mml"; + parent.insertBefore(script,math); + var mml = "", node, MATH = math; + while (math && math.nodeName !== "/MATH") { + node = math; math = math.nextSibling; + mml += this.NodeHTML(node); + node.parentNode.removeChild(node); + } + if (math && math.nodeName === "/MATH") {math.parentNode.removeChild(math)} + script.text = mml + ""; + if (this.config.preview !== "none") {this.createPreview(MATH,script)} + }, + + NodeHTML: function (node) { + var html, i, m; + if (node.nodeName === "#text") { + html = this.quoteHTML(node.nodeValue); + } else if (node.nodeName === "#comment") { + html = "" + } else { + // In IE, outerHTML doesn't properly quote attributes, so quote them by hand + // In Opera, HTML special characters aren't quoted in attributes, so quote them + html = "<"+node.nodeName.toLowerCase(); + for (i = 0, m = node.attributes.length; i < m; i++) { + var attribute = node.attributes[i]; + if (attribute.specified) { + // Opera 11.5 beta turns xmlns into xmlns:xmlns, so put it back (*** check after 11.5 is out ***) + html += " "+attribute.nodeName.toLowerCase().replace(/xmlns:xmlns/,"xmlns")+"="; + var value = attribute.nodeValue; // IE < 8 doesn't properly set style by setAttributes + if (value == null && attribute.nodeName === "style" && node.style) {value = node.style.cssText} + html += '"'+this.quoteHTML(value)+'"'; + } + } + html += ">"; + // Handle internal HTML (possibly due to annotation or missing ) + if (node.outerHTML != null && node.outerHTML.match(/(.<\/[A-Z]+>|\/>)$/)) { + for (i = 0, m = node.childNodes.length; i < m; i++) + {html += this.OuterHTML(node.childNodes[i])} + html += ""; + } + } + return html; + }, + OuterHTML: function (node) { + if (node.nodeName.charAt(0) === "#") {return this.NodeHTML(node)} + if (!this.AttributeBug) {return node.outerHTML} + var html = this.NodeHTML(node); + for (var i = 0, m = node.childNodes.length; i < m; i++) + {html += this.OuterHTML(node.childNodes[i]);} + html += ""; + return html; + }, + quoteHTML: function (string) { + if (string == null) {string = ""} + return string.replace(/&/g,"&").replace(//g,">").replace(/\"/g,"""); + }, + + createPreview: function (math,script) { + var preview = this.config.preview; + if (preview === "none") return; + var isNodePreview = false; + if (preview === "mathml") { + isNodePreview = true; + // mathml preview does not work with IE < 9, so fallback to alttext. + if (this.MathTagBug) {preview = "alttext"} else {preview = math.cloneNode(false)} + } + if (preview === "alttext" || preview === "altimg") { + isNodePreview = true; + var alttext = this.filterPreview(math.getAttribute("alttext")); + if (preview === "alttext") { + if (alttext != null) {preview = MathJax.HTML.TextNode(alttext)} else {preview = null} + } else { + var src = math.getAttribute("altimg"); + if (src != null) { + // FIXME: use altimg-valign when display="inline"? + var style = {width: math.getAttribute("altimg-width"), height: math.getAttribute("altimg-height")}; + preview = MathJax.HTML.Element("img",{src:src,alt:alttext,style:style}); + } else {preview = null} + } + } + if (preview) { + var span; + if (isNodePreview) { + span = MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass}); + span.appendChild(preview); + } else { + span = MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},preview); + } + script.parentNode.insertBefore(span,script); + } + }, + + filterPreview: function (text) {return text}, + + InitBrowser: function () { + var test = MathJax.HTML.Element("span",{id:"<", className: "mathjax", innerHTML: "x"}); + var html = test.outerHTML || ""; + this.AttributeBug = html !== "" && !( + html.match(/id="<"/) && // "<" should convert to "<" + html.match(/class="mathjax"/) && // IE leaves out quotes + html.match(/<\/math>/) // Opera 9 drops tags after self-closing tags + ); + this.MathTagBug = test.childNodes.length > 1; // IE < 9 flattens unknown tags + this.CleanupHTML = MathJax.Hub.Browser.isMSIE; // remove namespace and other added tags + } + +}; + +// We register the preprocessors with the following priorities: +// - mml2jax.js: 5 +// - jsMath2jax.js: 8 +// - asciimath2jax.js, tex2jax.js: 10 (default) +// See issues 18 and 484 and the other *2jax.js files. +MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.mml2jax],5); +MathJax.Ajax.loadComplete("[MathJax]/extensions/mml2jax.js"); diff --git a/modules/MathJax/unpacked/extensions/tex2jax.js b/modules/MathJax/unpacked/extensions/tex2jax.js new file mode 100644 index 0000000..23ac196 --- /dev/null +++ b/modules/MathJax/unpacked/extensions/tex2jax.js @@ -0,0 +1,309 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/tex2jax.js + * + * Implements the TeX to Jax preprocessor that locates TeX code + * within the text of a document and replaces it with SCRIPT tags + * for processing by MathJax. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Extension.tex2jax = { + version: "2.3", + config: { + inlineMath: [ // The start/stop pairs for in-line math +// ['$','$'], // (comment out any you don't want, or add your own, but + ['\\(','\\)'] // be sure that you don't have an extra comma at the end) + ], + + displayMath: [ // The start/stop pairs for display math + ['$$','$$'], // (comment out any you don't want, or add your own, but + ['\\[','\\]'] // be sure that you don't have an extra comma at the end) + ], + + balanceBraces: true, // determines whether tex2jax requires braces to be + // balanced within math delimiters (allows for nested + // dollar signs). Set to false to get pre-v2.0 compatibility. + + skipTags: ["script","noscript","style","textarea","pre","code","annotation","annotation-xml"], + // The names of the tags whose contents will not be + // scanned for math delimiters + + ignoreClass: "tex2jax_ignore", // the class name of elements whose contents should + // NOT be processed by tex2jax. Note that this + // is a regular expression, so be sure to quote any + // regexp special characters + + processClass: "tex2jax_process", // the class name of elements whose contents SHOULD + // be processed when they appear inside ones that + // are ignored. Note that this is a regular expression, + // so be sure to quote any regexp special characters + + processEscapes: false, // set to true to allow \$ to produce a dollar without + // starting in-line math mode + + processEnvironments: true, // set to true to process \begin{xxx}...\end{xxx} outside + // of math mode, false to prevent that + + processRefs: true, // set to true to process \ref{...} outside of math mode + + + preview: "TeX" // set to "none" to not insert MathJax_Preview spans + // or set to an array specifying an HTML snippet + // to use the same preview for every equation. + + }, + + PreProcess: function (element) { + if (!this.configured) { + this.config = MathJax.Hub.CombineConfig("tex2jax",this.config); + if (this.config.Augment) {MathJax.Hub.Insert(this,this.config.Augment)} + if (typeof(this.config.previewTeX) !== "undefined" && !this.config.previewTeX) + {this.config.preview = "none"} // backward compatibility for previewTeX parameter + this.configured = true; + } + if (typeof(element) === "string") {element = document.getElementById(element)} + if (!element) {element = document.body} + if (this.createPatterns()) {this.scanElement(element,element.nextSibling)} + }, + + createPatterns: function () { + var starts = [], parts = [], i, m, config = this.config; + this.match = {}; + for (i = 0, m = config.inlineMath.length; i < m; i++) { + starts.push(this.patternQuote(config.inlineMath[i][0])); + this.match[config.inlineMath[i][0]] = { + mode: "", + end: config.inlineMath[i][1], + pattern: this.endPattern(config.inlineMath[i][1]) + }; + } + for (i = 0, m = config.displayMath.length; i < m; i++) { + starts.push(this.patternQuote(config.displayMath[i][0])); + this.match[config.displayMath[i][0]] = { + mode: "; mode=display", + end: config.displayMath[i][1], + pattern: this.endPattern(config.displayMath[i][1]) + }; + } + if (starts.length) {parts.push(starts.sort(this.sortLength).join("|"))} + if (config.processEnvironments) {parts.push("\\\\begin\\{([^}]*)\\}")} + if (config.processEscapes) {parts.push("\\\\*\\\\\\\$")} + if (config.processRefs) {parts.push("\\\\(eq)?ref\\{[^}]*\\}")} + this.start = new RegExp(parts.join("|"),"g"); + this.skipTags = new RegExp("^("+config.skipTags.join("|")+")$","i"); + var ignore = []; + if (MathJax.Hub.config.preRemoveClass) {ignore.push(MathJax.Hub.config.preRemoveClass)}; + if (config.ignoreClass) {ignore.push(config.ignoreClass)} + this.ignoreClass = (ignore.length ? new RegExp("(^| )("+ignore.join("|")+")( |$)") : /^$/); + this.processClass = new RegExp("(^| )("+config.processClass+")( |$)"); + return (parts.length > 0); + }, + + patternQuote: function (s) {return s.replace(/([\^$(){}+*?\-|\[\]\:\\])/g,'\\$1')}, + + endPattern: function (end) { + return new RegExp(this.patternQuote(end)+"|\\\\.|[{}]","g"); + }, + + sortLength: function (a,b) { + if (a.length !== b.length) {return b.length - a.length} + return (a == b ? 0 : (a < b ? -1 : 1)); + }, + + scanElement: function (element,stop,ignore) { + var cname, tname, ignoreChild, process; + while (element && element != stop) { + if (element.nodeName.toLowerCase() === '#text') { + if (!ignore) {element = this.scanText(element)} + } else { + cname = (typeof(element.className) === "undefined" ? "" : element.className); + tname = (typeof(element.tagName) === "undefined" ? "" : element.tagName); + if (typeof(cname) !== "string") {cname = String(cname)} // jsxgraph uses non-string class names! + process = this.processClass.exec(cname); + if (element.firstChild && !cname.match(/(^| )MathJax/) && + (process || !this.skipTags.exec(tname))) { + ignoreChild = (ignore || this.ignoreClass.exec(cname)) && !process; + this.scanElement(element.firstChild,stop,ignoreChild); + } + } + if (element) {element = element.nextSibling} + } + }, + + scanText: function (element) { + if (element.nodeValue.replace(/\s+/,'') == '') {return element} + var match, prev; + this.search = {start: true}; + this.pattern = this.start; + while (element) { + this.pattern.lastIndex = 0; + while (element && element.nodeName.toLowerCase() === '#text' && + (match = this.pattern.exec(element.nodeValue))) { + if (this.search.start) {element = this.startMatch(match,element)} + else {element = this.endMatch(match,element)} + } + if (this.search.matched) {element = this.encloseMath(element)} + if (element) { + do {prev = element; element = element.nextSibling} + while (element && (element.nodeName.toLowerCase() === 'br' || + element.nodeName.toLowerCase() === '#comment')); + if (!element || element.nodeName !== '#text') + {return (this.search.close ? this.prevEndMatch() : prev)} + } + } + return element; + }, + + startMatch: function (match,element) { + var delim = this.match[match[0]]; + if (delim != null) { // a start delimiter + this.search = { + end: delim.end, mode: delim.mode, pcount: 0, + open: element, olen: match[0].length, opos: this.pattern.lastIndex - match[0].length + }; + this.switchPattern(delim.pattern); + } else if (match[0].substr(0,6) === "\\begin") { // \begin{...} + this.search = { + end: "\\end{"+match[1]+"}", mode: "; mode=display", pcount: 0, + open: element, olen: 0, opos: this.pattern.lastIndex - match[0].length, + isBeginEnd: true + }; + this.switchPattern(this.endPattern(this.search.end)); + } else if (match[0].substr(0,4) === "\\ref" || match[0].substr(0,6) === "\\eqref") { + this.search = { + mode: "", end: "", open: element, pcount: 0, + olen: 0, opos: this.pattern.lastIndex - match[0].length + } + return this.endMatch([""],element); + } else { // escaped dollar signs + // put $ in a span so it doesn't get processed again + // split off backslashes so they don't get removed later + var slashes = match[0].substr(0,match[0].length-1), n, span; + if (slashes.length % 2 === 0) {span = [slashes.replace(/\\\\/g,"\\")]; n = 1} + else {span = [slashes.substr(1).replace(/\\\\/g,"\\"),"$"]; n = 0} + span = MathJax.HTML.Element("span",null,span); + var text = MathJax.HTML.TextNode(element.nodeValue.substr(0,match.index)); + element.nodeValue = element.nodeValue.substr(match.index + match[0].length - n); + element.parentNode.insertBefore(span,element); + element.parentNode.insertBefore(text,span); + this.pattern.lastIndex = n; + } + return element; + }, + + endMatch: function (match,element) { + var search = this.search; + if (match[0] == search.end) { + if (!search.close || search.pcount === 0) { + search.close = element; + search.cpos = this.pattern.lastIndex; + search.clen = (search.isBeginEnd ? 0 : match[0].length); + } + if (search.pcount === 0) { + search.matched = true; + element = this.encloseMath(element); + this.switchPattern(this.start); + } + } + else if (match[0] === "{") {search.pcount++} + else if (match[0] === "}" && search.pcount) {search.pcount--} + return element; + }, + prevEndMatch: function () { + this.search.matched = true; + var element = this.encloseMath(this.search.close); + this.switchPattern(this.start); + return element; + }, + + switchPattern: function (pattern) { + pattern.lastIndex = this.pattern.lastIndex; + this.pattern = pattern; + this.search.start = (pattern === this.start); + }, + + encloseMath: function (element) { + var search = this.search, close = search.close, CLOSE, math; + if (search.cpos === close.length) {close = close.nextSibling} + else {close = close.splitText(search.cpos)} + if (!close) {CLOSE = close = MathJax.HTML.addText(search.close.parentNode,"")} + search.close = close; + math = (search.opos ? search.open.splitText(search.opos) : search.open); + while (math.nextSibling && math.nextSibling !== close) { + if (math.nextSibling.nodeValue !== null) { + if (math.nextSibling.nodeName === "#comment") { + math.nodeValue += math.nextSibling.nodeValue.replace(/^\[CDATA\[((.|\n|\r)*)\]\]$/,"$1"); + } else { + math.nodeValue += math.nextSibling.nodeValue; + } + } else if (this.msieNewlineBug) { + math.nodeValue += (math.nextSibling.nodeName.toLowerCase() === "br" ? "\n" : " "); + } else { + math.nodeValue += " "; + } + math.parentNode.removeChild(math.nextSibling); + } + var TeX = math.nodeValue.substr(search.olen,math.nodeValue.length-search.olen-search.clen); + math.parentNode.removeChild(math); + if (this.config.preview !== "none") {this.createPreview(search.mode,TeX)} + math = this.createMathTag(search.mode,TeX); + this.search = {}; this.pattern.lastIndex = 0; + if (CLOSE) {CLOSE.parentNode.removeChild(CLOSE)} + return math; + }, + + insertNode: function (node) { + var search = this.search; + search.close.parentNode.insertBefore(node,search.close); + }, + + createPreview: function (mode,tex) { + var preview = this.config.preview; + if (preview === "none") return; + if (preview === "TeX") {preview = [this.filterPreview(tex)]} + if (preview) { + preview = MathJax.HTML.Element("span",{className:MathJax.Hub.config.preRemoveClass},preview); + this.insertNode(preview); + } + }, + + createMathTag: function (mode,tex) { + var script = document.createElement("script"); + script.type = "math/tex" + mode; + MathJax.HTML.setScript(script,tex); + this.insertNode(script); + return script; + }, + + filterPreview: function (tex) {return tex}, + + msieNewlineBug: (MathJax.Hub.Browser.isMSIE && document.documentMode < 9) + +}; + +// We register the preprocessors with the following priorities: +// - mml2jax.js: 5 +// - jsMath2jax.js: 8 +// - asciimath2jax.js, tex2jax.js: 10 (default) +// See issues 18 and 484 and the other *2jax.js files. +MathJax.Hub.Register.PreProcessor(["PreProcess",MathJax.Extension.tex2jax]); +MathJax.Ajax.loadComplete("[MathJax]/extensions/tex2jax.js"); diff --git a/modules/MathJax/unpacked/extensions/toMathML.js b/modules/MathJax/unpacked/extensions/toMathML.js new file mode 100644 index 0000000..20fb15a --- /dev/null +++ b/modules/MathJax/unpacked/extensions/toMathML.js @@ -0,0 +1,198 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/extensions/toMathML.js + * + * Implements a toMathML() method for the mml Element Jax that returns + * a MathML string from a given math expression. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.LoadHook("[MathJax]/jax/element/mml/jax.js",function () { + var VERSION = "2.3"; + + var MML = MathJax.ElementJax.mml + SETTINGS = MathJax.Hub.config.menuSettings; + + MML.mbase.Augment({ + + toMathML: function (space) { + var inferred = (this.inferred && this.parent.inferRow); + if (space == null) {space = ""} + var tag = this.type, attr = this.toMathMLattributes(); + if (tag === "mspace") {return space + "<"+tag+attr+" />"} + var data = []; var SPACE = (this.isToken ? "" : space+(inferred ? "" : " ")); + for (var i = 0, m = this.data.length; i < m; i++) { + if (this.data[i]) {data.push(this.data[i].toMathML(SPACE))} + else if (!this.isToken) {data.push(SPACE+"")} + } + if (this.isToken) {return space + "<"+tag+attr+">"+data.join("")+""} + if (inferred) {return data.join("\n")} + if (data.length === 0 || (data.length === 1 && data[0] === "")) + {return space + "<"+tag+attr+" />"} + return space + "<"+tag+attr+">\n"+data.join("\n")+"\n"+ space +""; + }, + + toMathMLattributes: function () { + var attr = [], defaults = this.defaults; + var copy = (this.attrNames||MML.copyAttributeNames), skip = MML.skipAttributes; + + if (this.type === "math" && (!this.attr || !this.attr.xmlns)) + {attr.push('xmlns="http://www.w3.org/1998/Math/MathML"')} + if (!this.attrNames) { + if (this.type === "mstyle") {defaults = MML.math.prototype.defaults} + for (var id in defaults) {if (!skip[id] && defaults.hasOwnProperty(id)) { + var force = (id === "open" || id === "close"); + if (this[id] != null && (force || this[id] !== defaults[id])) { + var value = this[id]; delete this[id]; + if (force || this.Get(id) !== value) + {attr.push(id+'="'+this.toMathMLattribute(value)+'"')} + this[id] = value; + } + }} + } + for (var i = 0, m = copy.length; i < m; i++) { + if (copy[i] === "class") continue; // this is handled separately below + value = (this.attr||{})[copy[i]]; if (value == null) {value = this[copy[i]]} + if (value != null) {attr.push(copy[i]+'="'+this.toMathMLquote(value)+'"')} + } + this.toMathMLclass(attr); + if (attr.length) {return " "+attr.join(" ")} else {return ""} + }, + toMathMLclass: function (attr) { + var CLASS = []; if (this["class"]) {CLASS.push(this["class"])} + if (this.isa(MML.TeXAtom) && SETTINGS.texHints) { + var TEXCLASS = ["ORD","OP","BIN","REL","OPEN","CLOSE","PUNCT","INNER","VCENTER"][this.texClass]; + if (TEXCLASS) {CLASS.push("MJX-TeXAtom-"+TEXCLASS)} + } + if (this.mathvariant && this.toMathMLvariants[this.mathvariant]) + {CLASS.push("MJX"+this.mathvariant)} + if (this.variantForm) {CLASS.push("MJX-variant")} + if (CLASS.length) {attr.unshift('class="'+CLASS.join(" ")+'"')} + }, + toMathMLattribute: function (value) { + if (typeof(value) === "string" && + value.replace(/ /g,"").match(/^(([-+])?(\d+(\.\d*)?|\.\d+))mu$/)) { + // FIXME: should take scriptlevel into account + return RegExp.$2+((1/18)*RegExp.$3).toFixed(3).replace(/\.?0+$/,"")+"em"; + } + else if (this.toMathMLvariants[value]) {return this.toMathMLvariants[value]} + return this.toMathMLquote(value); + }, + toMathMLvariants: { + "-tex-caligraphic": MML.VARIANT.SCRIPT, + "-tex-caligraphic-bold": MML.VARIANT.BOLDSCRIPT, + "-tex-oldstyle": MML.VARIANT.NORMAL, + "-tex-oldstyle-bold": MML.VARIANT.BOLD, + "-tex-mathit": MML.VARIANT.ITALIC + }, + + toMathMLquote: function (string) { + string = String(string).split(""); + for (var i = 0, m = string.length; i < m; i++) { + var n = string[i].charCodeAt(0); + if (n <= 0xD7FF || 0xE000 <= n) { + // Code points U+0000 to U+D7FF and U+E000 to U+FFFF. + // They are directly represented by n. + if (n < 0x20 || n > 0x7E) { + string[i] = "&#x"+n.toString(16).toUpperCase()+";"; + } else { + var c = + {'&':'&', '<':'<', '>':'>', '"':'"'}[string[i]]; + if (c) {string[i] = c} + } + } else if (i+1 < m) { + // Code points U+10000 to U+10FFFF. + // n is the lead surrogate, let's read the trail surrogate. + var trailSurrogate = string[i+1].charCodeAt(0); + var codePoint = (((n-0xD800)<<10)+(trailSurrogate-0xDC00)+0x10000); + string[i] = "&#x"+codePoint.toString(16).toUpperCase()+";"; + string[i+1] = ""; + i++; + } else { + // n is a lead surrogate without corresponding trail surrogate: + // remove that character. + string[i] = ""; + } + } + return string.join(""); + } + }); + + MML.msubsup.Augment({ + toMathML: function (space) { + var tag = this.type; + if (this.data[this.sup] == null) {tag = "msub"} + if (this.data[this.sub] == null) {tag = "msup"} + var attr = this.toMathMLattributes(); + delete this.data[0].inferred; + var data = []; + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {data.push(this.data[i].toMathML(space+" "))}} + return space + "<"+tag+attr+">\n" + data.join("\n") + "\n" + space + ""; + } + }); + + MML.munderover.Augment({ + toMathML: function (space) { + var tag = this.type; + if (this.data[this.under] == null) {tag = "mover"} + if (this.data[this.over] == null) {tag = "munder"} + var attr = this.toMathMLattributes(); + delete this.data[0].inferred; + var data = []; + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {data.push(this.data[i].toMathML(space+" "))}} + return space + "<"+tag+attr+">\n" + data.join("\n") + "\n" + space + ""; + } + }); + + MML.TeXAtom.Augment({ + toMathML: function (space) { + // FIXME: Handle spacing using mpadded? + var attr = this.toMathMLattributes(); + if (!attr && this.data[0].data.length === 1) {return space.substr(2) + this.data[0].toMathML(space)} + return space+"\n" + this.data[0].toMathML(space+" ")+"\n"+space+""; + } + }); + + MML.chars.Augment({ + toMathML: function (space) {return (space||"") + this.toMathMLquote(this.toString())} + }); + + MML.entity.Augment({ + toMathML: function (space) {return (space||"") + "&"+this.data[0]+";"} + }); + + MML.xml.Augment({ + toMathML: function (space) {return (space||"") + this.toString()} + }); + + MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function () { + MML.TeXmathchoice.Augment({ + toMathML: function (space) {return this.Core().toMathML(space)} + }); + }); + + MathJax.Hub.Startup.signal.Post("toMathML Ready"); + +}); + +MathJax.Ajax.loadComplete("[MathJax]/extensions/toMathML.js"); diff --git a/modules/MathJax/extensions/wiki2jax.js b/modules/MathJax/unpacked/extensions/wiki2jax.js similarity index 100% rename from modules/MathJax/extensions/wiki2jax.js rename to modules/MathJax/unpacked/extensions/wiki2jax.js diff --git a/modules/MathJax/unpacked/jax/element/mml/jax.js b/modules/MathJax/unpacked/jax/element/mml/jax.js new file mode 100644 index 0000000..9a6b377 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/jax.js @@ -0,0 +1,1700 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/element/mml/jax.js + * + * Implements the MML ElementJax that holds the internal represetation + * of the mathematics on the page. Various InputJax will produce this + * format, and the OutputJax will display it in various formats. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.ElementJax.mml = MathJax.ElementJax({ + mimeType: "jax/mml" +},{ + id: "mml", + version: "2.3", + directory: MathJax.ElementJax.directory + "/mml", + extensionDir: MathJax.ElementJax.extensionDir + "/mml", + optableDir: MathJax.ElementJax.directory + "/mml/optable" +}); + +MathJax.ElementJax.mml.Augment({ + Init: function () { + if (arguments.length === 1 && arguments[0].type === "math") {this.root = arguments[0]} + else {this.root = MathJax.ElementJax.mml.math.apply(this,arguments)} + if (this.root.attr && this.root.attr.mode) { + if (!this.root.display && this.root.attr.mode === "display") { + this.root.display = "block"; + this.root.attrNames.push("display"); + } + delete this.root.attr.mode; + for (var i = 0, m = this.root.attrNames.length; i < m; i++) { + if (this.root.attrNames[i] === "mode") {this.root.attrNames.splice(i,1); break} + } + } + } +},{ + INHERIT: "_inherit_", + AUTO: "_auto_", + SIZE: { + INFINITY: "infinity", + SMALL: "small", + NORMAL: "normal", + BIG: "big" + }, + COLOR: { + TRANSPARENT: "transparent" + }, + VARIANT: { + NORMAL: "normal", + BOLD: "bold", + ITALIC: "italic", + BOLDITALIC: "bold-italic", + DOUBLESTRUCK: "double-struck", + FRAKTUR: "fraktur", + BOLDFRAKTUR: "bold-fraktur", + SCRIPT: "script", + BOLDSCRIPT: "bold-script", + SANSSERIF: "sans-serif", + BOLDSANSSERIF: "bold-sans-serif", + SANSSERIFITALIC: "sans-serif-italic", + SANSSERIFBOLDITALIC: "sans-serif-bold-italic", + MONOSPACE: "monospace", + INITIAL: "inital", + TAILED: "tailed", + LOOPED: "looped", + STRETCHED: "stretched", + CALIGRAPHIC: "-tex-caligraphic", + OLDSTYLE: "-tex-oldstyle" + }, + FORM: { + PREFIX: "prefix", + INFIX: "infix", + POSTFIX: "postfix" + }, + LINEBREAK: { + AUTO: "auto", + NEWLINE: "newline", + NOBREAK: "nobreak", + GOODBREAK: "goodbreak", + BADBREAK: "badbreak" + }, + LINEBREAKSTYLE: { + BEFORE: "before", + AFTER: "after", + DUPLICATE: "duplicate", + INFIXLINBREAKSTYLE: "infixlinebreakstyle" + }, + INDENTALIGN: { + LEFT: "left", + CENTER: "center", + RIGHT: "right", + AUTO: "auto", + ID: "id", + INDENTALIGN: "indentalign" + }, + INDENTSHIFT: { + INDENTSHIFT: "indentshift" + }, + LINETHICKNESS: { + THIN: "thin", + MEDIUM: "medium", + THICK: "thick" + }, + NOTATION: { + LONGDIV: "longdiv", + ACTUARIAL: "actuarial", + RADICAL: "radical", + BOX: "box", + ROUNDEDBOX: "roundedbox", + CIRCLE: "circle", + LEFT: "left", + RIGHT: "right", + TOP: "top", + BOTTOM: "bottom", + UPDIAGONALSTRIKE: "updiagonalstrike", + DOWNDIAGONALSTRIKE: "downdiagonalstrike", + UPDIAGONALARROW: "updiagonalarrow", + VERTICALSTRIKE: "verticalstrike", + HORIZONTALSTRIKE: "horizontalstrike", + MADRUWB: "madruwb" + }, + ALIGN: { + TOP: "top", + BOTTOM: "bottom", + CENTER: "center", + BASELINE: "baseline", + AXIS: "axis", + LEFT: "left", + RIGHT: "right" + }, + LINES: { + NONE: "none", + SOLID: "solid", + DASHED: "dashed" + }, + SIDE: { + LEFT: "left", + RIGHT: "right", + LEFTOVERLAP: "leftoverlap", + RIGHTOVERLAP: "rightoverlap" + }, + WIDTH: { + AUTO: "auto", + FIT: "fit" + }, + ACTIONTYPE: { + TOGGLE: "toggle", + STATUSLINE: "statusline", + TOOLTIP: "tooltip", + INPUT: "input" + }, + LENGTH: { + VERYVERYTHINMATHSPACE: "veryverythinmathspace", + VERYTHINMATHSPACE: "verythinmathspace", + THINMATHSPACE: "thinmathspace", + MEDIUMMATHSPACE: "mediummathspace", + THICKMATHSPACE: "thickmathspace", + VERYTHICKMATHSPACE: "verythickmathspace", + VERYVERYTHICKMATHSPACE: "veryverythickmathspace", + NEGATIVEVERYVERYTHINMATHSPACE: "negativeveryverythinmathspace", + NEGATIVEVERYTHINMATHSPACE: "negativeverythinmathspace", + NEGATIVETHINMATHSPACE: "negativethinmathspace", + NEGATIVEMEDIUMMATHSPACE: "negativemediummathspace", + NEGATIVETHICKMATHSPACE: "negativethickmathspace", + NEGATIVEVERYTHICKMATHSPACE: "negativeverythickmathspace", + NEGATIVEVERYVERYTHICKMATHSPACE: "negativeveryverythickmathspace" + }, + OVERFLOW: { + LINBREAK: "linebreak", + SCROLL: "scroll", + ELIDE: "elide", + TRUNCATE: "truncate", + SCALE: "scale" + }, + UNIT: { + EM: "em", + EX: "ex", + PX: "px", + IN: "in", + CM: "cm", + MM: "mm", + PT: "pt", + PC: "pc" + }, + TEXCLASS: { + ORD: 0, + OP: 1, + BIN: 2, + REL: 3, + OPEN: 4, + CLOSE: 5, + PUNCT: 6, + INNER: 7, + VCENTER: 8, + NONE: -1 + }, + TEXCLASSNAMES: ["ORD", "OP", "BIN", "REL", "OPEN", "CLOSE", "PUNCT", "INNER", "VCENTER"], + copyAttributes: { + fontfamily:true, fontsize:true, fontweight:true, fontstyle:true, + color:true, background:true, + id:true, "class":true, href:true, style:true + }, + skipAttributes: {texClass: true, useHeight: true, texprimestyle: true}, + copyAttributeNames: [ + "fontfamily", "fontsize", "fontweight", "fontstyle", + "color", "background", + "id", "class", "href", "style" + ], + Error: function (message,def) { + var mml = this.merror(message), + dir = MathJax.Localization.fontDirection(), + font = MathJax.Localization.fontFamily(); + if (def) {mml = mml.With(def)} + if (dir || font) { + mml = this.mstyle(mml); + if (dir) {mml.dir = dir} + if (font) {mml.style.fontFamily = "font-family: "+font} + } + return mml; + } +}); + +(function (MML) { + + MML.mbase = MathJax.Object.Subclass({ + type: "base", isToken: false, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + dir: MML.INHERIT + }, + noInherit: {}, + noInheritAttribute: { + texClass: true + }, + linebreakContainer: false, + + Init: function () { + this.data = []; + if (this.inferRow && !(arguments.length === 1 && arguments[0].inferred)) + {this.Append(MML.mrow().With({inferred: true, notParent: true}))} + this.Append.apply(this,arguments); + }, + With: function (def) { + for (var id in def) {if (def.hasOwnProperty(id)) {this[id] = def[id]}} + return this; + }, + Append: function () { + if (this.inferRow && this.data.length) { + this.data[0].Append.apply(this.data[0],arguments); + } else { + for (var i = 0, m = arguments.length; i < m; i++) + {this.SetData(this.data.length,arguments[i])} + } + }, + SetData: function (i,item) { + if (item != null) { + if (!(item instanceof MML.mbase)) + {item = (this.isToken ? MML.chars(item) : MML.mtext(item))} + item.parent = this; + item.setInherit(this.inheritFromMe ? this : this.inherit); + } + this.data[i] = item; + }, + Parent: function () { + var parent = this.parent; + while (parent && parent.notParent) {parent = parent.parent} + return parent; + }, + Get: function (name,nodefault) { + if (this[name] != null) {return this[name]} + if (this.attr && this.attr[name] != null) {return this.attr[name]} + // FIXME: should cache these values and get from cache + // (clear cache when appended to a new object?) + var parent = this.Parent(); + if (parent && parent["adjustChild_"+name] != null) { + return (parent["adjustChild_"+name])(this.childPosition(),nodefault); + } + var obj = this.inherit; var root = obj; + while (obj) { + var value = obj[name]; if (value == null && obj.attr) {value = obj.attr[name]} + if (value != null && obj.noInheritAttribute && !obj.noInheritAttribute[name]) { + var noInherit = obj.noInherit[this.type]; + if (!(noInherit && noInherit[name])) {return value} + } + root = obj; obj = obj.inherit; + } + if (!nodefault) { + if (this.defaults[name] === MML.AUTO) {return this.autoDefault(name)} + if (this.defaults[name] !== MML.INHERIT && this.defaults[name] != null) + {return this.defaults[name]} + if (root) {return root.defaults[name]} + } + return null; + }, + hasValue: function (name) {return (this.Get(name,true) != null)}, + getValues: function () { + var values = {}; + for (var i = 0, m = arguments.length; i < m; i++) + {values[arguments[i]] = this.Get(arguments[i])} + return values; + }, + adjustChild_scriptlevel: function (i,nodef) {return this.Get("scriptlevel",nodef)}, // always inherit from parent + adjustChild_displaystyle: function (i,nodef) {return this.Get("displaystyle",nodef)}, // always inherit from parent + adjustChild_texprimestyle: function (i,nodef) {return this.Get("texprimestyle",nodef)}, // always inherit from parent + childPosition: function () { + var child = this, parent = child.parent; + while (parent.notParent) {child = parent; parent = child.parent} + for (var i = 0, m = parent.data.length; i < m; i++) {if (parent.data[i] === child) {return i}} + return null; + }, + setInherit: function (obj) { + if (obj !== this.inherit && this.inherit == null) { + this.inherit = obj; + for (var i = 0, m = this.data.length; i < m; i++) { + if (this.data[i] && this.data[i].setInherit) {this.data[i].setInherit(obj)} + } + } + }, + setTeXclass: function (prev) { + this.getPrevClass(prev); + return (typeof(this.texClass) !== "undefined" ? this : prev); + }, + getPrevClass: function (prev) { + if (prev) { + this.prevClass = prev.Get("texClass"); + this.prevLevel = prev.Get("scriptlevel"); + } + }, + updateTeXclass: function (core) { + if (core) { + this.prevClass = core.prevClass; delete core.prevClass; + this.prevLevel = core.prevLevel; delete core.prevLevel; + this.texClass = core.Get("texClass"); + } + }, + texSpacing: function () { + var prev = (this.prevClass != null ? this.prevClass : MML.TEXCLASS.NONE); + var tex = (this.Get("texClass") || MML.TEXCLASS.ORD); + if (prev === MML.TEXCLASS.NONE || tex === MML.TEXCLASS.NONE) {return ""} + if (prev === MML.TEXCLASS.VCENTER) {prev = MML.TEXCLASS.ORD} + if (tex === MML.TEXCLASS.VCENTER) {tex = MML.TEXCLASS.ORD} + var space = this.TEXSPACE[prev][tex]; + if (this.prevLevel > 0 && this.Get("scriptlevel") > 0 && space >= 0) {return ""} + return this.TEXSPACELENGTH[Math.abs(space)]; + }, + TEXSPACELENGTH:[ + "", + MML.LENGTH.THINMATHSPACE, + MML.LENGTH.MEDIUMMATHSPACE, + MML.LENGTH.THICKMATHSPACE + ], + // See TeXBook Chapter 18 (p. 170) + TEXSPACE: [ + [ 0,-1, 2, 3, 0, 0, 0, 1], // ORD + [-1,-1, 0, 3, 0, 0, 0, 1], // OP + [ 2, 2, 0, 0, 2, 0, 0, 2], // BIN + [ 3, 3, 0, 0, 3, 0, 0, 3], // REL + [ 0, 0, 0, 0, 0, 0, 0, 0], // OPEN + [ 0,-1, 2, 3, 0, 0, 0, 1], // CLOSE + [ 1, 1, 0, 1, 1, 1, 1, 1], // PUNCT + [ 1,-1, 2, 3, 1, 0, 1, 1] // INNER + ], + autoDefault: function (name) {return ""}, + isSpacelike: function () {return false}, + isEmbellished: function () {return false}, + Core: function () {return this}, + CoreMO: function () {return this}, + hasNewline: function () { + if (this.isEmbellished()) {return this.CoreMO().hasNewline()} + if (this.isToken || this.linebreakContainer) {return false} + for (var i = 0, m = this.data.length; i < m; i++) { + if (this.data[i] && this.data[i].hasNewline()) {return true} + } + return false; + }, + array: function () {if (this.inferred) {return this.data} else {return [this]}}, + toString: function () {return this.type+"("+this.data.join(",")+")"}, + getAnnotation: function () { return null; } + },{ + childrenSpacelike: function () { + for (var i = 0, m = this.data.length; i < m; i++) + {if (!this.data[i].isSpacelike()) {return false}} + return true; + }, + childEmbellished: function () { + return (this.data[0] && this.data[0].isEmbellished()); + }, + childCore: function () {return this.data[0]}, + childCoreMO: function () {return (this.data[0] ? this.data[0].CoreMO() : null)}, + setChildTeXclass: function (prev) { + if (this.data[0]) { + prev = this.data[0].setTeXclass(prev); + this.updateTeXclass(this.data[0]); + } + return prev; + }, + setBaseTeXclasses: function (prev) { + this.getPrevClass(prev); this.texClass = null; + if (this.data[0]) { + if (this.isEmbellished() || this.data[0].isa(MML.mi)) { + prev = this.data[0].setTeXclass(prev); + this.updateTeXclass(this.Core()); + } else {this.data[0].setTeXclass(); prev = this} + } else {prev = this} + for (var i = 1, m = this.data.length; i < m; i++) + {if (this.data[i]) {this.data[i].setTeXclass()}} + return prev; + }, + setSeparateTeXclasses: function (prev) { + this.getPrevClass(prev); + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {this.data[i].setTeXclass()}} + if (this.isEmbellished()) {this.updateTeXclass(this.Core())} + return this; + } + }); + + MML.mi = MML.mbase.Subclass({ + type: "mi", isToken: true, + texClass: MML.TEXCLASS.ORD, + defaults: { + mathvariant: MML.AUTO, + mathsize: MML.INHERIT, + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + dir: MML.INHERIT + }, + autoDefault: function (name) { + if (name === "mathvariant") { + var mi = (this.data[0]||"").toString(); + return (mi.length === 1 || + (mi.length === 2 && mi.charCodeAt(0) >= 0xD800 && mi.charCodeAt(0) < 0xDC00) ? + MML.VARIANT.ITALIC : MML.VARIANT.NORMAL); + } + return ""; + }, + setTeXclass: function (prev) { + this.getPrevClass(prev); + var name = this.data.join(""); + if (name.length > 1 && name.match(/^[a-z][a-z0-9]*$/i) && + this.texClass === MML.TEXCLASS.ORD) { + this.texClass = MML.TEXCLASS.OP; + this.autoOP = true; + } + return this; + } + }); + + MML.mn = MML.mbase.Subclass({ + type: "mn", isToken: true, + texClass: MML.TEXCLASS.ORD, + defaults: { + mathvariant: MML.INHERIT, + mathsize: MML.INHERIT, + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + dir: MML.INHERIT + } + }); + + MML.mo = MML.mbase.Subclass({ + type: "mo", isToken: true, + defaults: { + mathvariant: MML.INHERIT, + mathsize: MML.INHERIT, + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + dir: MML.INHERIT, + form: MML.AUTO, + fence: MML.AUTO, + separator: MML.AUTO, + lspace: MML.AUTO, + rspace: MML.AUTO, + stretchy: MML.AUTO, + symmetric: MML.AUTO, + maxsize: MML.AUTO, + minsize: MML.AUTO, + largeop: MML.AUTO, + movablelimits: MML.AUTO, + accent: MML.AUTO, + linebreak: MML.LINEBREAK.AUTO, + lineleading: MML.INHERIT, + linebreakstyle: MML.AUTO, + linebreakmultchar: MML.INHERIT, + indentalign: MML.INHERIT, + indentshift: MML.INHERIT, + indenttarget: MML.INHERIT, + indentalignfirst: MML.INHERIT, + indentshiftfirst: MML.INHERIT, + indentalignlast: MML.INHERIT, + indentshiftlast: MML.INHERIT, + texClass: MML.AUTO + }, + defaultDef: { + form: MML.FORM.INFIX, + fence: false, + separator: false, + lspace: MML.LENGTH.THICKMATHSPACE, + rspace: MML.LENGTH.THICKMATHSPACE, + stretchy: false, + symmetric: true, + maxsize: MML.SIZE.INFINITY, + minsize: '0em', //'1em', + largeop: false, + movablelimits: false, + accent: false, + linebreak: MML.LINEBREAK.AUTO, + lineleading: "1ex", + linebreakstyle: "before", + indentalign: MML.INDENTALIGN.AUTO, + indentshift: "0", + indenttarget: "", + indentalignfirst: MML.INDENTALIGN.INDENTALIGN, + indentshiftfirst: MML.INDENTSHIFT.INDENTSHIFT, + indentalignlast: MML.INDENTALIGN.INDENTALIGN, + indentshiftlast: MML.INDENTSHIFT.INDENTSHIFT, + texClass: MML.TEXCLASS.REL // for MML, but TeX sets ORD explicitly + }, + SPACE_ATTR: {lspace: 0x01, rspace: 0x02, form: 0x04}, + useMMLspacing: 0x07, + autoDefault: function (name,nodefault) { + var def = this.def; + if (!def) { + if (name === "form") {this.useMMLspacing &= ~this.SPACE_ATTR.form; return this.getForm()} + var mo = this.data.join(""); + var forms = [this.Get("form"),MML.FORM.INFIX,MML.FORM.POSTFIX,MML.FORM.PREFIX]; + for (var i = 0, m = forms.length; i < m; i++) { + var data = this.OPTABLE[forms[i]][mo]; + if (data) {def = this.makeDef(data); break} + } + if (!def) {def = this.CheckRange(mo)} + if (!def && nodefault) {def = {}} else { + if (!def) {def = MathJax.Hub.Insert({},this.defaultDef)} + def.form = forms[0]; + this.def = def; + } + } + this.useMMLspacing &= ~(this.SPACE_ATTR[name] || 0); + if (def[name] != null) {return def[name]} + else if (!nodefault) {return this.defaultDef[name]} + return ""; + }, + CheckRange: function (mo) { + var n = mo.charCodeAt(0); + if (n >= 0xD800 && n < 0xDC00) {n = (((n-0xD800)<<10)+(mo.charCodeAt(1)-0xDC00))+0x10000} + for (var i = 0, m = this.RANGES.length; i < m && this.RANGES[i][0] <= n; i++) { + if (n <= this.RANGES[i][1]) { + if (this.RANGES[i][3]) { + var file = MML.optableDir+"/"+this.RANGES[i][3]+".js"; + this.RANGES[i][3] = null; + MathJax.Hub.RestartAfter(MathJax.Ajax.Require(file)); + } + var data = MML.TEXCLASSNAMES[this.RANGES[i][2]]; + data = this.OPTABLE.infix[mo] = MML.mo.OPTYPES[data === "BIN" ? "BIN3" : data]; + return this.makeDef(data); + } + } + return null; + }, + makeDef: function (data) { + if (data[2] == null) {data[2] = this.defaultDef.texClass} + if (!data[3]) {data[3] = {}} + var def = MathJax.Hub.Insert({},data[3]); + def.lspace = this.SPACE[data[0]]; def.rspace = this.SPACE[data[1]]; + def.texClass = data[2]; + if (def.texClass === MML.TEXCLASS.REL && + (this.movablelimits || this.data.join("").match(/^[a-z]+$/i))) + {def.texClass = MML.TEXCLASS.OP} // mark named operators as OP + return def; + }, + getForm: function () { + var core = this, parent = this.parent, Parent = this.Parent(); + while (Parent && Parent.isEmbellished()) + {core = parent; parent = Parent.parent; Parent = Parent.Parent()} + if (parent && parent.type === "mrow" && parent.NonSpaceLength() !== 1) { + if (parent.FirstNonSpace() === core) {return MML.FORM.PREFIX} + if (parent.LastNonSpace() === core) {return MML.FORM.POSTFIX} + } + return MML.FORM.INFIX; + }, + isEmbellished: function () {return true}, + hasNewline: function () {return (this.Get("linebreak") === MML.LINEBREAK.NEWLINE)}, + setTeXclass: function (prev) { + this.getValues("lspace","rspace"); // sets useMMLspacing + if (this.useMMLspacing) {this.texClass = MML.TEXCLASS.NONE; return this} + this.texClass = this.Get("texClass"); + if (this.data.join("") === "\u2061") { + // force previous node to be texClass OP, and skip this node + if (prev) prev.texClass = MML.TEXCLASS.OP; + this.texClass = this.prevClass = MML.TEXCLASS.NONE; + return prev; + } + return this.adjustTeXclass(prev); + }, + adjustTeXclass: function (prev) { + if (this.texClass === MML.TEXCLASS.NONE) {return prev} + if (prev) { + if (prev.autoOP && (this.texClass === MML.TEXCLASS.BIN || + this.texClass === MML.TEXCLASS.REL)) + {prev.texClass = MML.TEXCLASS.ORD} + this.prevClass = prev.texClass || MML.TEXCLASS.ORD; + this.prevLevel = prev.Get("scriptlevel") + } else {this.prevClass = MML.TEXCLASS.NONE} + if (this.texClass === MML.TEXCLASS.BIN && + (this.prevClass === MML.TEXCLASS.NONE || + this.prevClass === MML.TEXCLASS.BIN || + this.prevClass === MML.TEXCLASS.OP || + this.prevClass === MML.TEXCLASS.REL || + this.prevClass === MML.TEXCLASS.OPEN || + this.prevClass === MML.TEXCLASS.PUNCT)) { + this.texClass = MML.TEXCLASS.ORD; + } else if (this.prevClass === MML.TEXCLASS.BIN && + (this.texClass === MML.TEXCLASS.REL || + this.texClass === MML.TEXCLASS.CLOSE || + this.texClass === MML.TEXCLASS.PUNCT)) { + prev.texClass = this.prevClass = MML.TEXCLASS.ORD; + } + return this; + } + }); + + MML.mtext = MML.mbase.Subclass({ + type: "mtext", isToken: true, + isSpacelike: function () {return true}, + texClass: MML.TEXCLASS.ORD, + defaults: { + mathvariant: MML.INHERIT, + mathsize: MML.INHERIT, + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + dir: MML.INHERIT + } + }); + + MML.mspace = MML.mbase.Subclass({ + type: "mspace", isToken: true, + isSpacelike: function () {return true}, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + width: "0em", + height: "0ex", + depth: "0ex", + linebreak: MML.LINEBREAK.AUTO + }, + hasDimAttr: function () { + return (this.hasValue("width") || this.hasValue("height") || + this.hasValue("depth")); + }, + hasNewline: function () { + // The MathML spec says that the linebreak attribute should be ignored + // if any dimensional attribute is set. + return (!this.hasDimAttr() && + this.Get("linebreak") === MML.LINEBREAK.NEWLINE); + } + }); + + MML.ms = MML.mbase.Subclass({ + type: "ms", isToken: true, + texClass: MML.TEXCLASS.ORD, + defaults: { + mathvariant: MML.INHERIT, + mathsize: MML.INHERIT, + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + dir: MML.INHERIT, + lquote: '"', + rquote: '"' + } + }); + + MML.mglyph = MML.mbase.Subclass({ + type: "mglyph", isToken: true, + texClass: MML.TEXCLASS.ORD, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + alt: "", + src: "", + width: MML.AUTO, + height: MML.AUTO, + valign: "0em" + } + }); + + MML.mrow = MML.mbase.Subclass({ + type: "mrow", + isSpacelike: MML.mbase.childrenSpacelike, + inferred: false, notParent: false, + isEmbellished: function () { + var isEmbellished = false; + for (var i = 0, m = this.data.length; i < m; i++) { + if (this.data[i] == null) continue; + if (this.data[i].isEmbellished()) { + if (isEmbellished) {return false} + isEmbellished = true; this.core = i; + } else if (!this.data[i].isSpacelike()) {return false} + } + return isEmbellished; + }, + NonSpaceLength: function () { + var n = 0; + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i] && !this.data[i].isSpacelike()) {n++}} + return n; + }, + FirstNonSpace: function () { + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i] && !this.data[i].isSpacelike()) {return this.data[i]}} + return null; + }, + LastNonSpace: function () { + for (var i = this.data.length-1; i >= 0; i--) + {if (this.data[0] && !this.data[i].isSpacelike()) {return this.data[i]}} + return null; + }, + Core: function () { + if (!(this.isEmbellished()) || typeof(this.core) === "undefined") {return this} + return this.data[this.core]; + }, + CoreMO: function () { + if (!(this.isEmbellished()) || typeof(this.core) === "undefined") {return this} + return this.data[this.core].CoreMO(); + }, + toString: function () { + if (this.inferred) {return '[' + this.data.join(',') + ']'} + return this.SUPER(arguments).toString.call(this); + }, + setTeXclass: function (prev) { + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {prev = this.data[i].setTeXclass(prev)}} + if (this.data[0]) {this.updateTeXclass(this.data[0])} + return prev; + }, + getAnnotation: function (name) { + if (this.data.length != 1) return null; + return this.data[0].getAnnotation(name); + } + }); + + MML.mfrac = MML.mbase.Subclass({ + type: "mfrac", num: 0, den: 1, + linebreakContainer: true, + texClass: MML.TEXCLASS.INNER, + isEmbellished: MML.mbase.childEmbellished, + Core: MML.mbase.childCore, + CoreMO: MML.mbase.childCoreMO, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + linethickness: MML.LINETHICKNESS.MEDIUM, + numalign: MML.ALIGN.CENTER, + denomalign: MML.ALIGN.CENTER, + bevelled: false + }, + adjustChild_displaystyle: function (n) {return false}, + adjustChild_scriptlevel: function (n) { + var level = this.Get("scriptlevel"); + if (!this.Get("displaystyle") || level > 0) {level++} + return level; + }, + adjustChild_texprimestyle: function (n) { + if (n == this.den) {return true} + return this.Get("texprimestyle"); + }, + setTeXclass: MML.mbase.setSeparateTeXclasses + }); + + MML.msqrt = MML.mbase.Subclass({ + type: "msqrt", + inferRow: true, + linebreakContainer: true, + texClass: MML.TEXCLASS.ORD, + setTeXclass: MML.mbase.setSeparateTeXclasses, + adjustChild_texprimestyle: function (n) {return true} + }); + + MML.mroot = MML.mbase.Subclass({ + type: "mroot", + linebreakContainer: true, + texClass: MML.TEXCLASS.ORD, + adjustChild_displaystyle: function (n) { + if (n === 1) {return false} + return this.Get("displaystyle"); + }, + adjustChild_scriptlevel: function (n) { + var level = this.Get("scriptlevel"); + if (n === 1) {level += 2} + return level; + }, + adjustChild_texprimestyle: function (n) { + if (n === 0) {return true}; + return this.Get("texprimestyle"); + }, + setTeXclass: MML.mbase.setSeparateTeXclasses + }); + + MML.mstyle = MML.mbase.Subclass({ + type: "mstyle", + isSpacelike: MML.mbase.childrenSpacelike, + isEmbellished: MML.mbase.childEmbellished, + Core: MML.mbase.childCore, + CoreMO: MML.mbase.childCoreMO, + inferRow: true, + defaults: { + scriptlevel: MML.INHERIT, + displaystyle: MML.INHERIT, + scriptsizemultiplier: Math.sqrt(1/2), + scriptminsize: "8pt", + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + dir: MML.INHERIT, + infixlinebreakstyle: MML.LINEBREAKSTYLE.BEFORE, + decimalseparator: "." + }, + adjustChild_scriptlevel: function (n) { + var level = this.scriptlevel; + if (level == null) { + level = this.Get("scriptlevel"); + } else if (String(level).match(/^ *[-+]/)) { + delete this.scriptlevel; + var LEVEL = this.Get("scriptlevel"); + this.scriptlevel = level; + level = LEVEL + parseInt(level); + } + return level; + }, + inheritFromMe: true, + noInherit: { + mpadded: {width: true, height: true, depth: true, lspace: true, voffset: true}, + mtable: {width: true, height: true, depth: true, align: true} + }, + setTeXclass: MML.mbase.setChildTeXclass + }); + + MML.merror = MML.mbase.Subclass({ + type: "merror", + inferRow: true, + linebreakContainer: true, + texClass: MML.TEXCLASS.ORD + }); + + MML.mpadded = MML.mbase.Subclass({ + type: "mpadded", + inferRow: true, + isSpacelike: MML.mbase.childrenSpacelike, + isEmbellished: MML.mbase.childEmbellished, + Core: MML.mbase.childCore, + CoreMO: MML.mbase.childCoreMO, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + width: "", + height: "", + depth: "", + lspace: 0, + voffset: 0 + }, + setTeXclass: MML.mbase.setChildTeXclass + }); + + MML.mphantom = MML.mbase.Subclass({ + type: "mphantom", + texClass: MML.TEXCLASS.ORD, + inferRow: true, + isSpacelike: MML.mbase.childrenSpacelike, + isEmbellished: MML.mbase.childEmbellished, + Core: MML.mbase.childCore, + CoreMO: MML.mbase.childCoreMO, + setTeXclass: MML.mbase.setChildTeXclass + }); + + MML.mfenced = MML.mbase.Subclass({ + type: "mfenced", + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + open: '(', + close: ')', + separators: ',' + }, + texClass: MML.TEXCLASS.OPEN, + setTeXclass: function (prev) { + this.getPrevClass(prev); + var values = this.getValues("open","close","separators"); + values.open = values.open.replace(/[ \t\n\r]/g,""); + values.close = values.close.replace(/[ \t\n\r]/g,""); + values.separators = values.separators.replace(/[ \t\n\r]/g,""); + // create a fake node for the open item + if (values.open !== "") { + this.SetData("open",MML.mo(values.open).With({stretchy:true, texClass:MML.TEXCLASS.OPEN})); + prev = this.data.open.setTeXclass(prev); + } + // get the separators + if (values.separators !== "") { + while (values.separators.length < this.data.length) + {values.separators += values.separators.charAt(values.separators.length-1)} + } + // handle the first item, if any + if (this.data[0]) {prev = this.data[0].setTeXclass(prev)} + // add fake nodes for separators and handle the following item + for (var i = 1, m = this.data.length; i < m; i++) { + if (this.data[i]) { + if (values.separators !== "") { + this.SetData("sep"+i,MML.mo(values.separators.charAt(i-1))); + prev = this.data["sep"+i].setTeXclass(prev); + } + prev = this.data[i].setTeXclass(prev); + } + } + // create fake node for the close item + if (values.close !== "") { + this.SetData("close",MML.mo(values.close).With({stretchy:true, texClass:MML.TEXCLASS.CLOSE})); + prev = this.data.close.setTeXclass(prev); + } + // get the data from the open item + this.updateTeXclass(this.data.open); + return prev; + } + }); + + MML.menclose = MML.mbase.Subclass({ + type: "menclose", + inferRow: true, + linebreakContainer: true, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + notation: MML.NOTATION.LONGDIV, + texClass: MML.TEXCLASS.ORD + }, + setTeXclass: MML.mbase.setSeparateTeXclasses + }); + + MML.msubsup = MML.mbase.Subclass({ + type: "msubsup", base: 0, sub: 1, sup: 2, + isEmbellished: MML.mbase.childEmbellished, + Core: MML.mbase.childCore, + CoreMO: MML.mbase.childCoreMO, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + subscriptshift: "", + superscriptshift: "", + texClass: MML.AUTO + }, + autoDefault: function (name) { + if (name === "texClass") + {return (this.isEmbellished() ? this.CoreMO().Get(name) : MML.TEXCLASS.ORD)} + return 0; + }, + adjustChild_displaystyle: function (n) { + if (n > 0) {return false} + return this.Get("displaystyle"); + }, + adjustChild_scriptlevel: function (n) { + var level = this.Get("scriptlevel"); + if (n > 0) {level++} + return level; + }, + adjustChild_texprimestyle: function (n) { + if (n === this.sub) {return true} + return this.Get("texprimestyle"); + }, + setTeXclass: MML.mbase.setBaseTeXclasses + }); + + MML.msub = MML.msubsup.Subclass({type: "msub"}); + MML.msup = MML.msubsup.Subclass({type: "msup", sub:2, sup:1}); + MML.mmultiscripts = MML.msubsup.Subclass({ + type: "mmultiscripts", + adjustChild_texprimestyle: function (n) { + if (n % 2 === 1) {return true} + return this.Get("texprimestyle"); + } + }); + MML.mprescripts = MML.mbase.Subclass({type: "mprescripts"}); + MML.none = MML.mbase.Subclass({type: "none"}); + + MML.munderover = MML.mbase.Subclass({ + type: "munderover", + base: 0, under: 1, over: 2, sub: 1, sup: 2, + ACCENTS: ["", "accentunder", "accent"], + linebreakContainer: true, + isEmbellished: MML.mbase.childEmbellished, + Core: MML.mbase.childCore, + CoreMO: MML.mbase.childCoreMO, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + accent: MML.AUTO, + accentunder: MML.AUTO, + align: MML.ALIGN.CENTER, + texClass: MML.AUTO, + subscriptshift: "", // when converted to msubsup by moveablelimits + superscriptshift: "" // when converted to msubsup by moveablelimits + }, + autoDefault: function (name) { + if (name === "texClass") + {return (this.isEmbellished() ? this.CoreMO().Get(name) : MML.TEXCLASS.ORD)} + if (name === "accent" && this.data[this.over]) {return this.data[this.over].CoreMO().Get("accent")} + if (name === "accentunder" && this.data[this.under]) {return this.data[this.under].CoreMO().Get("accent")} + return false; + }, + adjustChild_displaystyle: function (n) { + if (n > 0) {return false} + return this.Get("displaystyle"); + }, + adjustChild_scriptlevel: function (n) { + var level = this.Get("scriptlevel"); + var force = (this.data[this.base] && !this.Get("displaystyle") && + this.data[this.base].CoreMO().Get("movablelimits")); + if (n == this.under && (force || !this.Get("accentunder"))) {level++} + if (n == this.over && (force || !this.Get("accent"))) {level++} + return level; + }, + adjustChild_texprimestyle: function (n) { + if (n === this.base && this.data[this.over]) {return true} + return this.Get("texprimestyle"); + }, + setTeXclass: MML.mbase.setBaseTeXclasses + }); + + MML.munder = MML.munderover.Subclass({type: "munder"}); + MML.mover = MML.munderover.Subclass({ + type: "mover", over: 1, under: 2, sup: 1, sub: 2, + ACCENTS: ["", "accent", "accentunder"] + }); + + MML.mtable = MML.mbase.Subclass({ + type: "mtable", + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + align: MML.ALIGN.AXIS, + rowalign: MML.ALIGN.BASELINE, + columnalign: MML.ALIGN.CENTER, + groupalign: "{left}", + alignmentscope: true, + columnwidth: MML.WIDTH.AUTO, + width: MML.WIDTH.AUTO, + rowspacing: "1ex", + columnspacing: ".8em", + rowlines: MML.LINES.NONE, + columnlines: MML.LINES.NONE, + frame: MML.LINES.NONE, + framespacing: "0.4em 0.5ex", + equalrows: false, + equalcolumns: false, + displaystyle: false, + side: MML.SIDE.RIGHT, + minlabelspacing: "0.8em", + texClass: MML.TEXCLASS.ORD, + useHeight: 1 + }, + inheritFromMe: true, + noInherit: { + mover: {align: true}, + munder: {align: true}, + munderover: {align: true}, + mtable: { + align: true, rowalign: true, columnalign: true, groupalign: true, + alignmentscope: true, columnwidth: true, width: true, rowspacing: true, + columnspacing: true, rowlines: true, columnlines: true, frame: true, + framespacing: true, equalrows: true, equalcolumns: true, + side: true, minlabelspacing: true, texClass: true, useHeight: 1 + } + }, + linebreakContainer: true, + Append: function () { + for (var i = 0, m = arguments.length; i < m; i++) { + if (!((arguments[i] instanceof MML.mtr) || + (arguments[i] instanceof MML.mlabeledtr))) {arguments[i] = MML.mtd(arguments[i])} + } + this.SUPER(arguments).Append.apply(this,arguments); + }, + setTeXclass: MML.mbase.setSeparateTeXclasses + }); + + MML.mtr = MML.mbase.Subclass({ + type: "mtr", + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + rowalign: MML.INHERIT, + columnalign: MML.INHERIT, + groupalign: MML.INHERIT + }, + inheritFromMe: true, + noInherit: { + mrow: {rowalign: true, columnalign: true, groupalign: true}, + mtable: {rowalign: true, columnalign: true, groupalign: true} + }, + linebreakContainer: true, + Append: function () { + for (var i = 0, m = arguments.length; i < m; i++) { + if (!(arguments[i] instanceof MML.mtd)) {arguments[i] = MML.mtd(arguments[i])} + } + this.SUPER(arguments).Append.apply(this,arguments); + }, + setTeXclass: MML.mbase.setSeparateTeXclasses + }); + + MML.mtd = MML.mbase.Subclass({ + type: "mtd", + inferRow: true, + linebreakContainer: true, + isEmbellished: MML.mbase.childEmbellished, + Core: MML.mbase.childCore, + CoreMO: MML.mbase.childCoreMO, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + rowspan: 1, + columnspan: 1, + rowalign: MML.INHERIT, + columnalign: MML.INHERIT, + groupalign: MML.INHERIT + }, + setTeXclass: MML.mbase.setSeparateTeXclasses + }); + + MML.maligngroup = MML.mbase.Subclass({ + type: "malign", + isSpacelike: function () {return true}, + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + groupalign: MML.INHERIT + }, + inheritFromMe: true, + noInherit: { + mrow: {groupalign: true}, + mtable: {groupalign: true} + } + }); + + MML.malignmark = MML.mbase.Subclass({ + type: "malignmark", + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + edge: MML.SIDE.LEFT + }, + isSpacelike: function () {return true} + }); + + MML.mlabeledtr = MML.mtr.Subclass({ + type: "mlabeledtr" + }); + + MML.maction = MML.mbase.Subclass({ + type: "maction", + defaults: { + mathbackground: MML.INHERIT, + mathcolor: MML.INHERIT, + actiontype: MML.ACTIONTYPE.TOGGLE, + selection: 1 + }, + selected: function () {return this.data[this.Get("selection")-1] || MML.NULL}, + isEmbellished: function () {return this.selected().isEmbellished()}, + isSpacelike: function () {return this.selected().isSpacelike()}, + Core: function () {return this.selected().Core()}, + CoreMO: function () {return this.selected().CoreMO()}, + setTeXclass: function (prev) { + if (this.Get("actiontype") === MML.ACTIONTYPE.TOOLTIP && this.data[1]) { + // Make sure tooltip has proper spacing when typeset (see issue #412) + this.data[1].setTeXclass(); + } + return this.selected().setTeXclass(prev); + } + }); + + MML.semantics = MML.mbase.Subclass({ + type: "semantics", notParent: true, + isEmbellished: MML.mbase.childEmbellished, + Core: MML.mbase.childCore, + CoreMO: MML.mbase.childCoreMO, + defaults: { + definitionURL: null, + encoding: null + }, + setTeXclass: MML.mbase.setChildTeXclass, + getAnnotation: function (name) { + var encodingList = MathJax.Hub.config.MathMenu.semanticsAnnotations[name]; + if (encodingList) { + for (var i = 0, m = this.data.length; i < m; i++) { + var encoding = this.data[i].Get("encoding"); + if (encoding) { + for (var j = 0, n = encodingList.length; j < n; j++) { + if (encodingList[j] === encoding) return this.data[i]; + } + } + } + } + return null; + } + }); + MML.annotation = MML.mbase.Subclass({ + type: "annotation", isToken: true, + linebreakContainer: true, + defaults: { + definitionURL: null, + encoding: null, + cd: "mathmlkeys", + name: "", + src: null + } + }); + MML["annotation-xml"] = MML.mbase.Subclass({ + type: "annotation-xml", + linebreakContainer: true, + defaults: { + definitionURL: null, + encoding: null, + cd: "mathmlkeys", + name: "", + src: null + } + }); + + MML.math = MML.mstyle.Subclass({ + type: "math", + defaults: { + mathvariant: MML.VARIANT.NORMAL, + mathsize: MML.SIZE.NORMAL, + mathcolor: "", // should be "black", but allow it to inherit from surrounding text + mathbackground: MML.COLOR.TRANSPARENT, + dir: "ltr", + scriptlevel: 0, + displaystyle: MML.AUTO, + display: "inline", + maxwidth: "", + overflow: MML.OVERFLOW.LINEBREAK, + altimg: "", + 'altimg-width': "", + 'altimg-height': "", + 'altimg-valign': "", + alttext: "", + cdgroup: "", + scriptsizemultiplier: Math.sqrt(1/2), + scriptminsize: "8px", // should be 8pt, but that's too big + infixlinebreakstyle: MML.LINEBREAKSTYLE.BEFORE, + lineleading: "1ex", + indentshift: "auto", // use user configuration + indentalign: MML.INDENTALIGN.AUTO, + indentalignfirst: MML.INDENTALIGN.INDENTALIGN, + indentshiftfirst: MML.INDENTSHIFT.INDENTSHIFT, + indentalignlast: MML.INDENTALIGN.INDENTALIGN, + indentshiftlast: MML.INDENTSHIFT.INDENTSHIFT, + decimalseparator: ".", + texprimestyle: false // is it in TeX's C' style? + }, + autoDefault: function (name) { + if (name === "displaystyle") {return this.Get("display") === "block"} + return ""; + }, + linebreakContainer: true, + setTeXclass: MML.mbase.setChildTeXclass, + getAnnotation: function (name) { + if (this.data.length != 1) return null; + return this.data[0].getAnnotation(name); + } + }); + + MML.chars = MML.mbase.Subclass({ + type: "chars", + Append: function () {this.data.push.apply(this.data,arguments)}, + value: function () {return this.data.join("")}, + toString: function () {return this.data.join("")} + }); + + MML.entity = MML.mbase.Subclass({ + type: "entity", + Append: function () {this.data.push.apply(this.data,arguments)}, + value: function () { + if (this.data[0].substr(0,2) === "#x") {return parseInt(this.data[0].substr(2),16)} + else if (this.data[0].substr(0,1) === "#") {return parseInt(this.data[0].substr(1))} + else {return 0} // FIXME: look up named entities from table + }, + toString: function () { + var n = this.value(); + if (n <= 0xFFFF) {return String.fromCharCode(n)} + n -= 0x10000; + return String.fromCharCode((n>>10)+0xD800) + + String.fromCharCode((n&0x3FF)+0xDC00); + } + }); + + MML.xml = MML.mbase.Subclass({ + type: "xml", + Init: function () { + this.div = document.createElement("div"); + return this.SUPER(arguments).Init.apply(this,arguments); + }, + Append: function () { + for (var i = 0, m = arguments.length; i < m; i++) { + var node = this.Import(arguments[i]); + this.data.push(node); + this.div.appendChild(node); + } + }, + Import: function (node) { + if (document.importNode) {return document.importNode(node,true)} + // + // IE < 9 doesn't have importNode, so fake it. + // + var nNode, i, m; + if (node.nodeType === 1) { // ELEMENT_NODE + nNode = document.createElement(node.nodeName); + for (i = 0, m = node.attributes.length; i < m; i++) { + var attribute = node.attributes[i]; + if (attribute.specified && attribute.nodeValue != null && attribute.nodeValue != '') + {nNode.setAttribute(attribute.nodeName,attribute.nodeValue)} + if (attribute.nodeName === "style") {nNode.style.cssText = attribute.nodeValue} + } + if (node.className) {nNode.className = node.className} + } else if (node.nodeType === 3 || node.nodeType === 4) { // TEXT_NODE or CDATA_SECTION_NODE + nNode = document.createTextNode(node.nodeValue); + } else if (node.nodeType === 8) { // COMMENT_NODE + nNode = document.createComment(node.nodeValue); + } else { + return document.createTextNode(''); + } + for (i = 0, m = node.childNodes.length; i < m; i++) + {nNode.appendChild(this.Import(node.childNodes[i]))} + return nNode; + }, + value: function () {return this.div}, + toString: function () {return this.div.innerHTML} + }); + + MML.TeXAtom = MML.mbase.Subclass({ + type: "texatom", + inferRow: true, notParent: true, + texClass: MML.TEXCLASS.ORD, + Core: MML.mbase.childCore, + CoreMO: MML.mbase.childCoreMO, + isEmbellished: MML.mbase.childEmbellished, + setTeXclass: function (prev) { + this.data[0].setTeXclass(); + return this.adjustTeXclass(prev); + }, + adjustTeXclass: MML.mo.prototype.adjustTeXclass + }); + + MML.NULL = MML.mbase().With({type:"null"}); + + var TEXCLASS = MML.TEXCLASS; + + var MO = { + ORD: [0,0,TEXCLASS.ORD], + ORD11: [1,1,TEXCLASS.ORD], + ORD21: [2,1,TEXCLASS.ORD], + ORD02: [0,2,TEXCLASS.ORD], + ORD55: [5,5,TEXCLASS.ORD], + OP: [1,2,TEXCLASS.OP,{largeop: true, movablelimits: true, symmetric: true}], + OPFIXED: [1,2,TEXCLASS.OP,{largeop: true, movablelimits: true}], + INTEGRAL: [0,1,TEXCLASS.OP,{largeop: true, symmetric: true}], + INTEGRAL2: [1,2,TEXCLASS.OP,{largeop: true, symmetric: true}], + BIN3: [3,3,TEXCLASS.BIN], + BIN4: [4,4,TEXCLASS.BIN], + BIN01: [0,1,TEXCLASS.BIN], + BIN5: [5,5,TEXCLASS.BIN], + TALLBIN: [4,4,TEXCLASS.BIN,{stretchy: true}], + BINOP: [4,4,TEXCLASS.BIN,{largeop: true, movablelimits: true}], + REL: [5,5,TEXCLASS.REL], + REL1: [1,1,TEXCLASS.REL,{stretchy: true}], + REL4: [4,4,TEXCLASS.REL], + RELSTRETCH: [5,5,TEXCLASS.REL,{stretchy: true}], + RELACCENT: [5,5,TEXCLASS.REL,{accent: true}], + WIDEREL: [5,5,TEXCLASS.REL,{accent: true, stretchy: true}], + OPEN: [0,0,TEXCLASS.OPEN,{fence: true, stretchy: true, symmetric: true}], + CLOSE: [0,0,TEXCLASS.CLOSE,{fence: true, stretchy: true, symmetric: true}], + INNER: [0,0,TEXCLASS.INNER], + PUNCT: [0,3,TEXCLASS.PUNCT], + ACCENT: [0,0,TEXCLASS.ORD,{accent: true}], + WIDEACCENT: [0,0,TEXCLASS.ORD,{accent: true, stretchy: true}] + }; + + MML.mo.Augment({ + SPACE: [ + '0em', + '0.1111em', + '0.1667em', + '0.2222em', + '0.2667em', + '0.3333em' + ], + RANGES: [ + [0x20,0x7F,TEXCLASS.REL,"BasicLatin"], + [0xA0,0xFF,TEXCLASS.ORD,"Latin1Supplement"], + [0x100,0x17F,TEXCLASS.ORD], + [0x180,0x24F,TEXCLASS.ORD], + [0x2B0,0x2FF,TEXCLASS.ORD,"SpacingModLetters"], + [0x300,0x36F,TEXCLASS.ORD,"CombDiacritMarks"], + [0x370,0x3FF,TEXCLASS.ORD,"GreekAndCoptic"], + [0x1E00,0x1EFF,TEXCLASS.ORD], + [0x2000,0x206F,TEXCLASS.PUNCT,"GeneralPunctuation"], + [0x2070,0x209F,TEXCLASS.ORD], + [0x20A0,0x20CF,TEXCLASS.ORD], + [0x20D0,0x20FF,TEXCLASS.ORD,"CombDiactForSymbols"], + [0x2100,0x214F,TEXCLASS.ORD,"LetterlikeSymbols"], + [0x2150,0x218F,TEXCLASS.ORD], + [0x2190,0x21FF,TEXCLASS.REL,"Arrows"], + [0x2200,0x22FF,TEXCLASS.BIN,"MathOperators"], + [0x2300,0x23FF,TEXCLASS.ORD,"MiscTechnical"], + [0x2460,0x24FF,TEXCLASS.ORD], + [0x2500,0x259F,TEXCLASS.ORD], + [0x25A0,0x25FF,TEXCLASS.ORD,"GeometricShapes"], + [0x2700,0x27BF,TEXCLASS.ORD,"Dingbats"], + [0x27C0,0x27EF,TEXCLASS.ORD,"MiscMathSymbolsA"], + [0x27F0,0x27FF,TEXCLASS.REL,"SupplementalArrowsA"], + [0x2900,0x297F,TEXCLASS.REL,"SupplementalArrowsB"], + [0x2980,0x29FF,TEXCLASS.ORD,"MiscMathSymbolsB"], + [0x2A00,0x2AFF,TEXCLASS.BIN,"SuppMathOperators"], + [0x2B00,0x2BFF,TEXCLASS.ORD,"MiscSymbolsAndArrows"], + [0x1D400,0x1D7FF,TEXCLASS.ORD] + ], + OPTABLE: { + prefix: { + '\u2200': MO.ORD21, // for all + '\u2202': MO.ORD21, // partial differential + '\u2203': MO.ORD21, // there exists + '\u2207': MO.ORD21, // nabla + '\u220F': MO.OP, // n-ary product + '\u2210': MO.OP, // n-ary coproduct + '\u2211': MO.OP, // n-ary summation + '\u2212': MO.BIN01, // minus sign + '\u2213': MO.BIN01, // minus-or-plus sign + '\u221A': [1,1,TEXCLASS.ORD,{stretchy: true}], // square root + '\u2220': MO.ORD, // angle + '\u222B': MO.INTEGRAL, // integral + '\u222E': MO.INTEGRAL, // contour integral + '\u22C0': MO.OP, // n-ary logical and + '\u22C1': MO.OP, // n-ary logical or + '\u22C2': MO.OP, // n-ary intersection + '\u22C3': MO.OP, // n-ary union + '\u2308': MO.OPEN, // left ceiling + '\u230A': MO.OPEN, // left floor + '\u27E8': MO.OPEN, // mathematical left angle bracket + '\u27EE': MO.OPEN, // mathematical left flattened parenthesis + '\u2A00': MO.OP, // n-ary circled dot operator + '\u2A01': MO.OP, // n-ary circled plus operator + '\u2A02': MO.OP, // n-ary circled times operator + '\u2A04': MO.OP, // n-ary union operator with plus + '\u2A06': MO.OP, // n-ary square union operator + '\u00AC': MO.ORD21, // not sign + '\u00B1': MO.BIN01, // plus-minus sign + '(': MO.OPEN, // left parenthesis + '+': MO.BIN01, // plus sign + '-': MO.BIN01, // hyphen-minus + '[': MO.OPEN, // left square bracket + '{': MO.OPEN, // left curly bracket + '|': MO.OPEN // vertical line + }, + postfix: { + '!': [1,0,TEXCLASS.CLOSE], // exclamation mark + '&': MO.ORD, // ampersand + '\u2032': MO.ORD02, // prime + '\u203E': MO.WIDEACCENT, // overline + '\u2309': MO.CLOSE, // right ceiling + '\u230B': MO.CLOSE, // right floor + '\u23DE': MO.WIDEACCENT, // top curly bracket + '\u23DF': MO.WIDEACCENT, // bottom curly bracket + '\u266D': MO.ORD02, // music flat sign + '\u266E': MO.ORD02, // music natural sign + '\u266F': MO.ORD02, // music sharp sign + '\u27E9': MO.CLOSE, // mathematical right angle bracket + '\u27EF': MO.CLOSE, // mathematical right flattened parenthesis + '\u02C6': MO.WIDEACCENT, // modifier letter circumflex accent + '\u02C7': MO.WIDEACCENT, // caron + '\u02C9': MO.WIDEACCENT, // modifier letter macron + '\u02CA': MO.ACCENT, // modifier letter acute accent + '\u02CB': MO.ACCENT, // modifier letter grave accent + '\u02D8': MO.ACCENT, // breve + '\u02D9': MO.ACCENT, // dot above + '\u02DC': MO.WIDEACCENT, // small tilde + '\u0302': MO.WIDEACCENT, // combining circumflex accent + '\u00A8': MO.ACCENT, // diaeresis + '\u00AF': MO.WIDEACCENT, // macron + ')': MO.CLOSE, // right parenthesis + ']': MO.CLOSE, // right square bracket + '^': MO.WIDEACCENT, // circumflex accent + '_': MO.WIDEACCENT, // low line + '`': MO.ACCENT, // grave accent + '|': MO.CLOSE, // vertical line + '}': MO.CLOSE, // right curly bracket + '~': MO.WIDEACCENT // tilde + }, + infix: { + '': MO.ORD, // empty + '%': [3,3,TEXCLASS.ORD], // percent sign + '\u2022': MO.BIN4, // bullet + '\u2026': MO.INNER, // horizontal ellipsis + '\u2044': MO.TALLBIN, // fraction slash + '\u2061': MO.ORD, // function application + '\u2062': MO.ORD, // invisible times + '\u2063': [0,0,TEXCLASS.ORD,{linebreakstyle:"after", separator: true}], // invisible separator + '\u2064': MO.ORD, // invisible plus + '\u2190': MO.WIDEREL, // leftwards arrow + '\u2191': MO.RELSTRETCH, // upwards arrow + '\u2192': MO.WIDEREL, // rightwards arrow + '\u2193': MO.RELSTRETCH, // downwards arrow + '\u2194': MO.WIDEREL, // left right arrow + '\u2195': MO.RELSTRETCH, // up down arrow + '\u2196': MO.RELSTRETCH, // north west arrow + '\u2197': MO.RELSTRETCH, // north east arrow + '\u2198': MO.RELSTRETCH, // south east arrow + '\u2199': MO.RELSTRETCH, // south west arrow + '\u21A6': MO.WIDEREL, // rightwards arrow from bar + '\u21A9': MO.WIDEREL, // leftwards arrow with hook + '\u21AA': MO.WIDEREL, // rightwards arrow with hook + '\u21BC': MO.WIDEREL, // leftwards harpoon with barb upwards + '\u21BD': MO.WIDEREL, // leftwards harpoon with barb downwards + '\u21C0': MO.WIDEREL, // rightwards harpoon with barb upwards + '\u21C1': MO.WIDEREL, // rightwards harpoon with barb downwards + '\u21CC': MO.WIDEREL, // rightwards harpoon over leftwards harpoon + '\u21D0': MO.WIDEREL, // leftwards double arrow + '\u21D1': MO.RELSTRETCH, // upwards double arrow + '\u21D2': MO.WIDEREL, // rightwards double arrow + '\u21D3': MO.RELSTRETCH, // downwards double arrow + '\u21D4': MO.WIDEREL, // left right double arrow + '\u21D5': MO.RELSTRETCH, // up down double arrow + '\u2208': MO.REL, // element of + '\u2209': MO.REL, // not an element of + '\u220B': MO.REL, // contains as member + '\u2212': MO.BIN4, // minus sign + '\u2213': MO.BIN4, // minus-or-plus sign + '\u2215': MO.TALLBIN, // division slash + '\u2216': MO.BIN4, // set minus + '\u2217': MO.BIN4, // asterisk operator + '\u2218': MO.BIN4, // ring operator + '\u2219': MO.BIN4, // bullet operator + '\u221D': MO.REL, // proportional to + '\u2223': MO.REL, // divides + '\u2225': MO.REL, // parallel to + '\u2227': MO.BIN4, // logical and + '\u2228': MO.BIN4, // logical or + '\u2229': MO.BIN4, // intersection + '\u222A': MO.BIN4, // union + '\u223C': MO.REL, // tilde operator + '\u2240': MO.BIN4, // wreath product + '\u2243': MO.REL, // asymptotically equal to + '\u2245': MO.REL, // approximately equal to + '\u2248': MO.REL, // almost equal to + '\u224D': MO.REL, // equivalent to + '\u2250': MO.REL, // approaches the limit + '\u2260': MO.REL, // not equal to + '\u2261': MO.REL, // identical to + '\u2264': MO.REL, // less-than or equal to + '\u2265': MO.REL, // greater-than or equal to + '\u226A': MO.REL, // much less-than + '\u226B': MO.REL, // much greater-than + '\u227A': MO.REL, // precedes + '\u227B': MO.REL, // succeeds + '\u2282': MO.REL, // subset of + '\u2283': MO.REL, // superset of + '\u2286': MO.REL, // subset of or equal to + '\u2287': MO.REL, // superset of or equal to + '\u228E': MO.BIN4, // multiset union + '\u2291': MO.REL, // square image of or equal to + '\u2292': MO.REL, // square original of or equal to + '\u2293': MO.BIN4, // square cap + '\u2294': MO.BIN4, // square cup + '\u2295': MO.BIN4, // circled plus + '\u2296': MO.BIN4, // circled minus + '\u2297': MO.BIN4, // circled times + '\u2298': MO.BIN4, // circled division slash + '\u2299': MO.BIN4, // circled dot operator + '\u22A2': MO.REL, // right tack + '\u22A3': MO.REL, // left tack + '\u22A4': MO.ORD55, // down tack + '\u22A5': MO.REL, // up tack + '\u22A8': MO.REL, // true + '\u22C4': MO.BIN4, // diamond operator + '\u22C5': MO.BIN4, // dot operator + '\u22C6': MO.BIN4, // star operator + '\u22C8': MO.REL, // bowtie + '\u22EE': MO.ORD55, // vertical ellipsis + '\u22EF': MO.INNER, // midline horizontal ellipsis + '\u22F1': [5,5,TEXCLASS.INNER], // down right diagonal ellipsis + '\u25B3': MO.BIN4, // white up-pointing triangle + '\u25B5': MO.BIN4, // white up-pointing small triangle + '\u25B9': MO.BIN4, // white right-pointing small triangle + '\u25BD': MO.BIN4, // white down-pointing triangle + '\u25BF': MO.BIN4, // white down-pointing small triangle + '\u25C3': MO.BIN4, // white left-pointing small triangle + '\u2758': MO.REL, // light vertical bar + '\u27F5': MO.WIDEREL, // long leftwards arrow + '\u27F6': MO.WIDEREL, // long rightwards arrow + '\u27F7': MO.WIDEREL, // long left right arrow + '\u27F8': MO.WIDEREL, // long leftwards double arrow + '\u27F9': MO.WIDEREL, // long rightwards double arrow + '\u27FA': MO.WIDEREL, // long left right double arrow + '\u27FC': MO.WIDEREL, // long rightwards arrow from bar + '\u2A2F': MO.BIN4, // vector or cross product + '\u2A3F': MO.BIN4, // amalgamation or coproduct + '\u2AAF': MO.REL, // precedes above single-line equals sign + '\u2AB0': MO.REL, // succeeds above single-line equals sign + '\u00B1': MO.BIN4, // plus-minus sign + '\u00B7': MO.BIN4, // middle dot + '\u00D7': MO.BIN4, // multiplication sign + '\u00F7': MO.BIN4, // division sign + '*': MO.BIN3, // asterisk + '+': MO.BIN4, // plus sign + ',': [0,3,TEXCLASS.PUNCT,{linebreakstyle:"after", separator: true}], // comma + '-': MO.BIN4, // hyphen-minus + '.': [3,3,TEXCLASS.ORD], // full stop + '/': MO.ORD11, // solidus + ':': [1,2,TEXCLASS.REL], // colon + ';': [0,3,TEXCLASS.PUNCT,{linebreakstyle:"after", separator: true}], // semicolon + '<': MO.REL, // less-than sign + '=': MO.REL, // equals sign + '>': MO.REL, // greater-than sign + '?': [1,1,TEXCLASS.CLOSE], // question mark + '\\': MO.ORD, // reverse solidus + '^': MO.ORD11, // circumflex accent + '_': MO.ORD11, // low line + '|': [2,2,TEXCLASS.ORD,{fence: true, stretchy: true, symmetric: true}], // vertical line + '#': MO.ORD, // # + '$': MO.ORD, // $ + '\u002E': [0,3,TEXCLASS.PUNCT,{separator: true}], // \ldotp + '\u02B9': MO.ORD, // prime + '\u0300': MO.ACCENT, // \grave + '\u0301': MO.ACCENT, // \acute + '\u0303': MO.WIDEACCENT, // \tilde + '\u0304': MO.ACCENT, // \bar + '\u0306': MO.ACCENT, // \breve + '\u0307': MO.ACCENT, // \dot + '\u0308': MO.ACCENT, // \ddot + '\u030C': MO.ACCENT, // \check + '\u0332': MO.WIDEACCENT, // horizontal line + '\u0338': MO.REL4, // \not + '\u2015': [0,0,TEXCLASS.ORD,{stretchy: true}], // horizontal line + '\u2017': [0,0,TEXCLASS.ORD,{stretchy: true}], // horizontal line + '\u2020': MO.BIN3, // \dagger + '\u2021': MO.BIN3, // \ddagger + '\u20D7': MO.ACCENT, // \vec + '\u2111': MO.ORD, // \Im + '\u2113': MO.ORD, // \ell + '\u2118': MO.ORD, // \wp + '\u211C': MO.ORD, // \Re + '\u2205': MO.ORD, // \emptyset + '\u221E': MO.ORD, // \infty + '\u2305': MO.BIN3, // barwedge + '\u2306': MO.BIN3, // doublebarwedge + '\u2322': MO.REL4, // \frown + '\u2323': MO.REL4, // \smile + '\u2329': MO.OPEN, // langle + '\u232A': MO.CLOSE, // rangle + '\u23AA': MO.ORD, // \bracevert + '\u23AF': [0,0,TEXCLASS.ORD,{stretchy: true}], // \underline + '\u23B0': MO.OPEN, // \lmoustache + '\u23B1': MO.CLOSE, // \rmoustache + '\u2500': MO.ORD, // horizontal line + '\u25EF': MO.BIN3, // \bigcirc + '\u2660': MO.ORD, // \spadesuit + '\u2661': MO.ORD, // \heartsuit + '\u2662': MO.ORD, // \diamondsuit + '\u2663': MO.ORD, // \clubsuit + '\u3008': MO.OPEN, // langle + '\u3009': MO.CLOSE, // rangle + '\uFE37': MO.WIDEACCENT, // horizontal brace down + '\uFE38': MO.WIDEACCENT // horizontal brace up + } + } + },{ + OPTYPES: MO + }); + + // + // These are not in the W3C table, but FF works this way, + // and it makes sense, so add it here + // + MML.mo.prototype.OPTABLE.infix["^"] = MO.WIDEREL; + MML.mo.prototype.OPTABLE.infix["_"] = MO.WIDEREL; + +})(MathJax.ElementJax.mml); + +MathJax.ElementJax.mml.loadComplete("jax.js"); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/Arrows.js b/modules/MathJax/unpacked/jax/element/mml/optable/Arrows.js new file mode 100644 index 0000000..bf31a54 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/Arrows.js @@ -0,0 +1,122 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/Arrows.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + infix: { + '\u219A': MO.RELACCENT, // leftwards arrow with stroke + '\u219B': MO.RELACCENT, // rightwards arrow with stroke + '\u219C': MO.WIDEREL, // leftwards wave arrow + '\u219D': MO.WIDEREL, // rightwards wave arrow + '\u219E': MO.WIDEREL, // leftwards two headed arrow + '\u219F': MO.WIDEREL, // upwards two headed arrow + '\u21A0': MO.WIDEREL, // rightwards two headed arrow + '\u21A1': MO.RELSTRETCH, // downwards two headed arrow + '\u21A2': MO.WIDEREL, // leftwards arrow with tail + '\u21A3': MO.WIDEREL, // rightwards arrow with tail + '\u21A4': MO.WIDEREL, // leftwards arrow from bar + '\u21A5': MO.RELSTRETCH, // upwards arrow from bar + '\u21A7': MO.RELSTRETCH, // downwards arrow from bar + '\u21A8': MO.RELSTRETCH, // up down arrow with base + '\u21AB': MO.WIDEREL, // leftwards arrow with loop + '\u21AC': MO.WIDEREL, // rightwards arrow with loop + '\u21AD': MO.WIDEREL, // left right wave arrow + '\u21AE': MO.RELACCENT, // left right arrow with stroke + '\u21AF': MO.RELSTRETCH, // downwards zigzag arrow + '\u21B0': MO.RELSTRETCH, // upwards arrow with tip leftwards + '\u21B1': MO.RELSTRETCH, // upwards arrow with tip rightwards + '\u21B2': MO.RELSTRETCH, // downwards arrow with tip leftwards + '\u21B3': MO.RELSTRETCH, // downwards arrow with tip rightwards + '\u21B4': MO.RELSTRETCH, // rightwards arrow with corner downwards + '\u21B5': MO.RELSTRETCH, // downwards arrow with corner leftwards + '\u21B6': MO.RELACCENT, // anticlockwise top semicircle arrow + '\u21B7': MO.RELACCENT, // clockwise top semicircle arrow + '\u21B8': MO.REL, // north west arrow to long bar + '\u21B9': MO.WIDEREL, // leftwards arrow to bar over rightwards arrow to bar + '\u21BA': MO.REL, // anticlockwise open circle arrow + '\u21BB': MO.REL, // clockwise open circle arrow + '\u21BE': MO.RELSTRETCH, // upwards harpoon with barb rightwards + '\u21BF': MO.RELSTRETCH, // upwards harpoon with barb leftwards + '\u21C2': MO.RELSTRETCH, // downwards harpoon with barb rightwards + '\u21C3': MO.RELSTRETCH, // downwards harpoon with barb leftwards + '\u21C4': MO.WIDEREL, // rightwards arrow over leftwards arrow + '\u21C5': MO.RELSTRETCH, // upwards arrow leftwards of downwards arrow + '\u21C6': MO.WIDEREL, // leftwards arrow over rightwards arrow + '\u21C7': MO.WIDEREL, // leftwards paired arrows + '\u21C8': MO.RELSTRETCH, // upwards paired arrows + '\u21C9': MO.WIDEREL, // rightwards paired arrows + '\u21CA': MO.RELSTRETCH, // downwards paired arrows + '\u21CB': MO.WIDEREL, // leftwards harpoon over rightwards harpoon + '\u21CD': MO.RELACCENT, // leftwards double arrow with stroke + '\u21CE': MO.RELACCENT, // left right double arrow with stroke + '\u21CF': MO.RELACCENT, // rightwards double arrow with stroke + '\u21D6': MO.RELSTRETCH, // north west double arrow + '\u21D7': MO.RELSTRETCH, // north east double arrow + '\u21D8': MO.RELSTRETCH, // south east double arrow + '\u21D9': MO.RELSTRETCH, // south west double arrow + '\u21DA': MO.WIDEREL, // leftwards triple arrow + '\u21DB': MO.WIDEREL, // rightwards triple arrow + '\u21DC': MO.WIDEREL, // leftwards squiggle arrow + '\u21DD': MO.WIDEREL, // rightwards squiggle arrow + '\u21DE': MO.REL, // upwards arrow with double stroke + '\u21DF': MO.REL, // downwards arrow with double stroke + '\u21E0': MO.WIDEREL, // leftwards dashed arrow + '\u21E1': MO.RELSTRETCH, // upwards dashed arrow + '\u21E2': MO.WIDEREL, // rightwards dashed arrow + '\u21E3': MO.RELSTRETCH, // downwards dashed arrow + '\u21E4': MO.WIDEREL, // leftwards arrow to bar + '\u21E5': MO.WIDEREL, // rightwards arrow to bar + '\u21E6': MO.WIDEREL, // leftwards white arrow + '\u21E7': MO.RELSTRETCH, // upwards white arrow + '\u21E8': MO.WIDEREL, // rightwards white arrow + '\u21E9': MO.RELSTRETCH, // downwards white arrow + '\u21EA': MO.RELSTRETCH, // upwards white arrow from bar + '\u21EB': MO.RELSTRETCH, // upwards white arrow on pedestal + '\u21EC': MO.RELSTRETCH, // upwards white arrow on pedestal with horizontal bar + '\u21ED': MO.RELSTRETCH, // upwards white arrow on pedestal with vertical bar + '\u21EE': MO.RELSTRETCH, // upwards white double arrow + '\u21EF': MO.RELSTRETCH, // upwards white double arrow on pedestal + '\u21F0': MO.WIDEREL, // rightwards white arrow from wall + '\u21F1': MO.REL, // north west arrow to corner + '\u21F2': MO.REL, // south east arrow to corner + '\u21F3': MO.RELSTRETCH, // up down white arrow + '\u21F4': MO.RELACCENT, // right arrow with small circle + '\u21F5': MO.RELSTRETCH, // downwards arrow leftwards of upwards arrow + '\u21F6': MO.WIDEREL, // three rightwards arrows + '\u21F7': MO.RELACCENT, // leftwards arrow with vertical stroke + '\u21F8': MO.RELACCENT, // rightwards arrow with vertical stroke + '\u21F9': MO.RELACCENT, // left right arrow with vertical stroke + '\u21FA': MO.RELACCENT, // leftwards arrow with double vertical stroke + '\u21FB': MO.RELACCENT, // rightwards arrow with double vertical stroke + '\u21FC': MO.RELACCENT, // left right arrow with double vertical stroke + '\u21FD': MO.WIDEREL, // leftwards open-headed arrow + '\u21FE': MO.WIDEREL, // rightwards open-headed arrow + '\u21FF': MO.WIDEREL // left right open-headed arrow + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/Arrows.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/BasicLatin.js b/modules/MathJax/unpacked/jax/element/mml/optable/BasicLatin.js new file mode 100644 index 0000000..6c93930 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/BasicLatin.js @@ -0,0 +1,65 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/BasicLatin.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + prefix: { + '||': [0,0,TEXCLASS.BIN,{fence: true, stretchy: true, symmetric: true}], // multiple character operator: || + '|||': [0,0,TEXCLASS.ORD,{fence: true, stretchy: true, symmetric: true}] // multiple character operator: ||| + }, + postfix: { + '!!': [1,0,TEXCLASS.BIN], // multiple character operator: !! + '\'': MO.ACCENT, // apostrophe + '++': [0,0,TEXCLASS.BIN], // multiple character operator: ++ + '--': [0,0,TEXCLASS.BIN], // multiple character operator: -- + '..': [0,0,TEXCLASS.BIN], // multiple character operator: .. + '...': MO.ORD, // multiple character operator: ... + '||': [0,0,TEXCLASS.BIN,{fence: true, stretchy: true, symmetric: true}], // multiple character operator: || + '|||': [0,0,TEXCLASS.ORD,{fence: true, stretchy: true, symmetric: true}] // multiple character operator: ||| + }, + infix: { + '!=': MO.BIN4, // multiple character operator: != + '&&': MO.BIN4, // multiple character operator: && + '**': [1,1,TEXCLASS.BIN], // multiple character operator: ** + '*=': MO.BIN4, // multiple character operator: *= + '+=': MO.BIN4, // multiple character operator: += + '-=': MO.BIN4, // multiple character operator: -= + '->': MO.BIN5, // multiple character operator: -> + '//': [1,1,TEXCLASS.BIN], // multiple character operator: // + '/=': MO.BIN4, // multiple character operator: /= + ':=': MO.BIN4, // multiple character operator: := + '<=': MO.BIN5, // multiple character operator: <= + '<>': [1,1,TEXCLASS.BIN], // multiple character operator: <> + '==': MO.BIN4, // multiple character operator: == + '>=': MO.BIN5, // multiple character operator: >= + '@': MO.ORD11, // commercial at + '||': [2,2,TEXCLASS.BIN,{fence: true, stretchy: true, symmetric: true}], // multiple character operator: || + '|||': [2,2,TEXCLASS.ORD,{fence: true, stretchy: true, symmetric: true}] // multiple character operator: ||| + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/BasicLatin.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/element/mml/optable/CombDiacritMarks.js new file mode 100644 index 0000000..c778c4a --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/CombDiacritMarks.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/CombDiacritMarks.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + postfix: { + '\u0311': MO.ACCENT // combining inverted breve + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/CombDiacritMarks.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/CombDiactForSymbols.js b/modules/MathJax/unpacked/jax/element/mml/optable/CombDiactForSymbols.js new file mode 100644 index 0000000..2395e0d --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/CombDiactForSymbols.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/CombDiactForSymbols.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + postfix: { + '\u20DB': MO.ACCENT, // combining three dots above + '\u20DC': MO.ACCENT // combining four dots above + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/CombDiactForSymbols.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/Dingbats.js b/modules/MathJax/unpacked/jax/element/mml/optable/Dingbats.js new file mode 100644 index 0000000..4104450 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/Dingbats.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/Dingbats.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + prefix: { + '\u2772': MO.OPEN // light left tortoise shell bracket ornament + }, + postfix: { + '\u2773': MO.CLOSE // light right tortoise shell bracket ornament + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/Dingbats.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/element/mml/optable/GeneralPunctuation.js new file mode 100644 index 0000000..ce48bd6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/GeneralPunctuation.js @@ -0,0 +1,42 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/GeneralPunctuation.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + prefix: { + '\u2016': [0,0,TEXCLASS.ORD,{fence: true, stretchy: true}], // double vertical line + '\u2018': [0,0,TEXCLASS.OPEN,{fence: true}], // left single quotation mark + '\u201C': [0,0,TEXCLASS.OPEN,{fence: true}] // left double quotation mark + }, + postfix: { + '\u2016': [0,0,TEXCLASS.ORD,{fence: true, stretchy: true}], // double vertical line + '\u2019': [0,0,TEXCLASS.CLOSE,{fence: true}], // right single quotation mark + '\u201D': [0,0,TEXCLASS.CLOSE,{fence: true}] // right double quotation mark + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/GeneralPunctuation.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/GeometricShapes.js b/modules/MathJax/unpacked/jax/element/mml/optable/GeometricShapes.js new file mode 100644 index 0000000..9765ac8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/GeometricShapes.js @@ -0,0 +1,66 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/GeometricShapes.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + infix: { + '\u25A0': MO.BIN3, // black square + '\u25A1': MO.BIN3, // white square + '\u25AA': MO.BIN3, // black small square + '\u25AB': MO.BIN3, // white small square + '\u25AD': MO.BIN3, // white rectangle + '\u25AE': MO.BIN3, // black vertical rectangle + '\u25AF': MO.BIN3, // white vertical rectangle + '\u25B0': MO.BIN3, // black parallelogram + '\u25B1': MO.BIN3, // white parallelogram + '\u25B2': MO.BIN4, // black up-pointing triangle + '\u25B4': MO.BIN4, // black up-pointing small triangle + '\u25B6': MO.BIN4, // black right-pointing triangle + '\u25B7': MO.BIN4, // white right-pointing triangle + '\u25B8': MO.BIN4, // black right-pointing small triangle + '\u25BC': MO.BIN4, // black down-pointing triangle + '\u25BE': MO.BIN4, // black down-pointing small triangle + '\u25C0': MO.BIN4, // black left-pointing triangle + '\u25C1': MO.BIN4, // white left-pointing triangle + '\u25C2': MO.BIN4, // black left-pointing small triangle + '\u25C4': MO.BIN4, // black left-pointing pointer + '\u25C5': MO.BIN4, // white left-pointing pointer + '\u25C6': MO.BIN4, // black diamond + '\u25C7': MO.BIN4, // white diamond + '\u25C8': MO.BIN4, // white diamond containing black small diamond + '\u25C9': MO.BIN4, // fisheye + '\u25CC': MO.BIN4, // dotted circle + '\u25CD': MO.BIN4, // circle with vertical fill + '\u25CE': MO.BIN4, // bullseye + '\u25CF': MO.BIN4, // black circle + '\u25D6': MO.BIN4, // left half black circle + '\u25D7': MO.BIN4, // right half black circle + '\u25E6': MO.BIN4 // white bullet + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/GeometricShapes.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/element/mml/optable/GreekAndCoptic.js new file mode 100644 index 0000000..0f27c5b --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/GreekAndCoptic.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/GreekAndCoptic.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + infix: { + '\u03F6': MO.REL // greek reversed lunate epsilon symbol + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/GreekAndCoptic.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/Latin1Supplement.js b/modules/MathJax/unpacked/jax/element/mml/optable/Latin1Supplement.js new file mode 100644 index 0000000..a9097cc --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/Latin1Supplement.js @@ -0,0 +1,37 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/Latin1Supplement.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + postfix: { + '\u00B0': MO.ORD, // degree sign + '\u00B4': MO.ACCENT, // acute accent + '\u00B8': MO.ACCENT // cedilla + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/Latin1Supplement.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/element/mml/optable/LetterlikeSymbols.js new file mode 100644 index 0000000..0c202d3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/LetterlikeSymbols.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/LetterlikeSymbols.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + prefix: { + '\u2145': MO.ORD21, // double-struck italic capital d + '\u2146': [2,0,TEXCLASS.ORD] // double-struck italic small d + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/LetterlikeSymbols.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/MathOperators.js b/modules/MathJax/unpacked/jax/element/mml/optable/MathOperators.js new file mode 100644 index 0000000..a198409 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/MathOperators.js @@ -0,0 +1,228 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/MathOperators.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + prefix: { + '\u2204': MO.ORD21, // there does not exist + '\u221B': MO.ORD11, // cube root + '\u221C': MO.ORD11, // fourth root + '\u2221': MO.ORD, // measured angle + '\u2222': MO.ORD, // spherical angle + '\u222C': MO.INTEGRAL, // double integral + '\u222D': MO.INTEGRAL, // triple integral + '\u222F': MO.INTEGRAL, // surface integral + '\u2230': MO.INTEGRAL, // volume integral + '\u2231': MO.INTEGRAL, // clockwise integral + '\u2232': MO.INTEGRAL, // clockwise contour integral + '\u2233': MO.INTEGRAL // anticlockwise contour integral + }, + infix: { + '\u2201': [1,2,TEXCLASS.ORD], // complement + '\u2206': MO.BIN3, // increment + '\u220A': MO.REL, // small element of + '\u220C': MO.REL, // does not contain as member + '\u220D': MO.REL, // small contains as member + '\u220E': MO.BIN3, // end of proof + '\u2214': MO.BIN4, // dot plus + '\u221F': MO.REL, // right angle + '\u2224': MO.REL, // does not divide + '\u2226': MO.REL, // not parallel to + '\u2234': MO.REL, // therefore + '\u2235': MO.REL, // because + '\u2236': MO.REL, // ratio + '\u2237': MO.REL, // proportion + '\u2238': MO.BIN4, // dot minus + '\u2239': MO.REL, // excess + '\u223A': MO.BIN4, // geometric proportion + '\u223B': MO.REL, // homothetic + '\u223D': MO.REL, // reversed tilde + '\u223D\u0331': MO.BIN3, // reversed tilde with underline + '\u223E': MO.REL, // inverted lazy s + '\u223F': MO.BIN3, // sine wave + '\u2241': MO.REL, // not tilde + '\u2242': MO.REL, // minus tilde + '\u2242\u0338': MO.REL, // minus tilde with slash + '\u2244': MO.REL, // not asymptotically equal to + '\u2246': MO.REL, // approximately but not actually equal to + '\u2247': MO.REL, // neither approximately nor actually equal to + '\u2249': MO.REL, // not almost equal to + '\u224A': MO.REL, // almost equal or equal to + '\u224B': MO.REL, // triple tilde + '\u224C': MO.REL, // all equal to + '\u224E': MO.REL, // geometrically equivalent to + '\u224E\u0338': MO.REL, // geometrically equivalent to with slash + '\u224F': MO.REL, // difference between + '\u224F\u0338': MO.REL, // difference between with slash + '\u2251': MO.REL, // geometrically equal to + '\u2252': MO.REL, // approximately equal to or the image of + '\u2253': MO.REL, // image of or approximately equal to + '\u2254': MO.REL, // colon equals + '\u2255': MO.REL, // equals colon + '\u2256': MO.REL, // ring in equal to + '\u2257': MO.REL, // ring equal to + '\u2258': MO.REL, // corresponds to + '\u2259': MO.REL, // estimates + '\u225A': MO.REL, // equiangular to + '\u225C': MO.REL, // delta equal to + '\u225D': MO.REL, // equal to by definition + '\u225E': MO.REL, // measured by + '\u225F': MO.REL, // questioned equal to + '\u2262': MO.REL, // not identical to + '\u2263': MO.REL, // strictly equivalent to + '\u2266': MO.REL, // less-than over equal to + '\u2266\u0338': MO.REL, // less-than over equal to with slash + '\u2267': MO.REL, // greater-than over equal to + '\u2268': MO.REL, // less-than but not equal to + '\u2269': MO.REL, // greater-than but not equal to + '\u226A\u0338': MO.REL, // much less than with slash + '\u226B\u0338': MO.REL, // much greater than with slash + '\u226C': MO.REL, // between + '\u226D': MO.REL, // not equivalent to + '\u226E': MO.REL, // not less-than + '\u226F': MO.REL, // not greater-than + '\u2270': MO.REL, // neither less-than nor equal to + '\u2271': MO.REL, // neither greater-than nor equal to + '\u2272': MO.REL, // less-than or equivalent to + '\u2273': MO.REL, // greater-than or equivalent to + '\u2274': MO.REL, // neither less-than nor equivalent to + '\u2275': MO.REL, // neither greater-than nor equivalent to + '\u2276': MO.REL, // less-than or greater-than + '\u2277': MO.REL, // greater-than or less-than + '\u2278': MO.REL, // neither less-than nor greater-than + '\u2279': MO.REL, // neither greater-than nor less-than + '\u227C': MO.REL, // precedes or equal to + '\u227D': MO.REL, // succeeds or equal to + '\u227E': MO.REL, // precedes or equivalent to + '\u227F': MO.REL, // succeeds or equivalent to + '\u227F\u0338': MO.REL, // succeeds or equivalent to with slash + '\u2280': MO.REL, // does not precede + '\u2281': MO.REL, // does not succeed + '\u2282\u20D2': MO.REL, // subset of with vertical line + '\u2283\u20D2': MO.REL, // superset of with vertical line + '\u2284': MO.REL, // not a subset of + '\u2285': MO.REL, // not a superset of + '\u2288': MO.REL, // neither a subset of nor equal to + '\u2289': MO.REL, // neither a superset of nor equal to + '\u228A': MO.REL, // subset of with not equal to + '\u228B': MO.REL, // superset of with not equal to + '\u228C': MO.BIN4, // multiset + '\u228D': MO.BIN4, // multiset multiplication + '\u228F': MO.REL, // square image of + '\u228F\u0338': MO.REL, // square image of with slash + '\u2290': MO.REL, // square original of + '\u2290\u0338': MO.REL, // square original of with slash + '\u229A': MO.BIN4, // circled ring operator + '\u229B': MO.BIN4, // circled asterisk operator + '\u229C': MO.BIN4, // circled equals + '\u229D': MO.BIN4, // circled dash + '\u229E': MO.BIN4, // squared plus + '\u229F': MO.BIN4, // squared minus + '\u22A0': MO.BIN4, // squared times + '\u22A1': MO.BIN4, // squared dot operator + '\u22A6': MO.REL, // assertion + '\u22A7': MO.REL, // models + '\u22A9': MO.REL, // forces + '\u22AA': MO.REL, // triple vertical bar right turnstile + '\u22AB': MO.REL, // double vertical bar double right turnstile + '\u22AC': MO.REL, // does not prove + '\u22AD': MO.REL, // not true + '\u22AE': MO.REL, // does not force + '\u22AF': MO.REL, // negated double vertical bar double right turnstile + '\u22B0': MO.REL, // precedes under relation + '\u22B1': MO.REL, // succeeds under relation + '\u22B2': MO.REL, // normal subgroup of + '\u22B3': MO.REL, // contains as normal subgroup + '\u22B4': MO.REL, // normal subgroup of or equal to + '\u22B5': MO.REL, // contains as normal subgroup or equal to + '\u22B6': MO.REL, // original of + '\u22B7': MO.REL, // image of + '\u22B8': MO.REL, // multimap + '\u22B9': MO.REL, // hermitian conjugate matrix + '\u22BA': MO.BIN4, // intercalate + '\u22BB': MO.BIN4, // xor + '\u22BC': MO.BIN4, // nand + '\u22BD': MO.BIN4, // nor + '\u22BE': MO.BIN3, // right angle with arc + '\u22BF': MO.BIN3, // right triangle + '\u22C7': MO.BIN4, // division times + '\u22C9': MO.BIN4, // left normal factor semidirect product + '\u22CA': MO.BIN4, // right normal factor semidirect product + '\u22CB': MO.BIN4, // left semidirect product + '\u22CC': MO.BIN4, // right semidirect product + '\u22CD': MO.REL, // reversed tilde equals + '\u22CE': MO.BIN4, // curly logical or + '\u22CF': MO.BIN4, // curly logical and + '\u22D0': MO.REL, // double subset + '\u22D1': MO.REL, // double superset + '\u22D2': MO.BIN4, // double intersection + '\u22D3': MO.BIN4, // double union + '\u22D4': MO.REL, // pitchfork + '\u22D5': MO.REL, // equal and parallel to + '\u22D6': MO.REL, // less-than with dot + '\u22D7': MO.REL, // greater-than with dot + '\u22D8': MO.REL, // very much less-than + '\u22D9': MO.REL, // very much greater-than + '\u22DA': MO.REL, // less-than equal to or greater-than + '\u22DB': MO.REL, // greater-than equal to or less-than + '\u22DC': MO.REL, // equal to or less-than + '\u22DD': MO.REL, // equal to or greater-than + '\u22DE': MO.REL, // equal to or precedes + '\u22DF': MO.REL, // equal to or succeeds + '\u22E0': MO.REL, // does not precede or equal + '\u22E1': MO.REL, // does not succeed or equal + '\u22E2': MO.REL, // not square image of or equal to + '\u22E3': MO.REL, // not square original of or equal to + '\u22E4': MO.REL, // square image of or not equal to + '\u22E5': MO.REL, // square original of or not equal to + '\u22E6': MO.REL, // less-than but not equivalent to + '\u22E7': MO.REL, // greater-than but not equivalent to + '\u22E8': MO.REL, // precedes but not equivalent to + '\u22E9': MO.REL, // succeeds but not equivalent to + '\u22EA': MO.REL, // not normal subgroup of + '\u22EB': MO.REL, // does not contain as normal subgroup + '\u22EC': MO.REL, // not normal subgroup of or equal to + '\u22ED': MO.REL, // does not contain as normal subgroup or equal + '\u22F0': MO.REL, // up right diagonal ellipsis + '\u22F2': MO.REL, // element of with long horizontal stroke + '\u22F3': MO.REL, // element of with vertical bar at end of horizontal stroke + '\u22F4': MO.REL, // small element of with vertical bar at end of horizontal stroke + '\u22F5': MO.REL, // element of with dot above + '\u22F6': MO.REL, // element of with overbar + '\u22F7': MO.REL, // small element of with overbar + '\u22F8': MO.REL, // element of with underbar + '\u22F9': MO.REL, // element of with two horizontal strokes + '\u22FA': MO.REL, // contains with long horizontal stroke + '\u22FB': MO.REL, // contains with vertical bar at end of horizontal stroke + '\u22FC': MO.REL, // small contains with vertical bar at end of horizontal stroke + '\u22FD': MO.REL, // contains with overbar + '\u22FE': MO.REL, // small contains with overbar + '\u22FF': MO.REL // z notation bag membership + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/MathOperators.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/MiscMathSymbolsA.js b/modules/MathJax/unpacked/jax/element/mml/optable/MiscMathSymbolsA.js new file mode 100644 index 0000000..8000ed0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/MiscMathSymbolsA.js @@ -0,0 +1,42 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/MiscMathSymbolsA.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + prefix: { + '\u27E6': MO.OPEN, // mathematical left white square bracket + '\u27EA': MO.OPEN, // mathematical left double angle bracket + '\u27EC': MO.OPEN // mathematical left white tortoise shell bracket + }, + postfix: { + '\u27E7': MO.CLOSE, // mathematical right white square bracket + '\u27EB': MO.CLOSE, // mathematical right double angle bracket + '\u27ED': MO.CLOSE // mathematical right white tortoise shell bracket + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/MiscMathSymbolsA.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/MiscMathSymbolsB.js b/modules/MathJax/unpacked/jax/element/mml/optable/MiscMathSymbolsB.js new file mode 100644 index 0000000..57a4e04 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/MiscMathSymbolsB.js @@ -0,0 +1,168 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/MiscMathSymbolsB.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + prefix: { + '\u2980': [0,0,TEXCLASS.ORD,{fence: true, stretchy: true}], // triple vertical bar delimiter + '\u2983': MO.OPEN, // left white curly bracket + '\u2985': MO.OPEN, // left white parenthesis + '\u2987': MO.OPEN, // z notation left image bracket + '\u2989': MO.OPEN, // z notation left binding bracket + '\u298B': MO.OPEN, // left square bracket with underbar + '\u298D': MO.OPEN, // left square bracket with tick in top corner + '\u298F': MO.OPEN, // left square bracket with tick in bottom corner + '\u2991': MO.OPEN, // left angle bracket with dot + '\u2993': MO.OPEN, // left arc less-than bracket + '\u2995': MO.OPEN, // double left arc greater-than bracket + '\u2997': MO.OPEN, // left black tortoise shell bracket + '\u29FC': MO.OPEN // left-pointing curved angle bracket + }, + postfix: { + '\u2980': [0,0,TEXCLASS.ORD,{fence: true, stretchy: true}], // triple vertical bar delimiter + '\u2984': MO.CLOSE, // right white curly bracket + '\u2986': MO.CLOSE, // right white parenthesis + '\u2988': MO.CLOSE, // z notation right image bracket + '\u298A': MO.CLOSE, // z notation right binding bracket + '\u298C': MO.CLOSE, // right square bracket with underbar + '\u298E': MO.CLOSE, // right square bracket with tick in bottom corner + '\u2990': MO.CLOSE, // right square bracket with tick in top corner + '\u2992': MO.CLOSE, // right angle bracket with dot + '\u2994': MO.CLOSE, // right arc greater-than bracket + '\u2996': MO.CLOSE, // double right arc less-than bracket + '\u2998': MO.CLOSE, // right black tortoise shell bracket + '\u29FD': MO.CLOSE // right-pointing curved angle bracket + }, + infix: { + '\u2981': MO.BIN3, // z notation spot + '\u2982': MO.BIN3, // z notation type colon + '\u2999': MO.BIN3, // dotted fence + '\u299A': MO.BIN3, // vertical zigzag line + '\u299B': MO.BIN3, // measured angle opening left + '\u299C': MO.BIN3, // right angle variant with square + '\u299D': MO.BIN3, // measured right angle with dot + '\u299E': MO.BIN3, // angle with s inside + '\u299F': MO.BIN3, // acute angle + '\u29A0': MO.BIN3, // spherical angle opening left + '\u29A1': MO.BIN3, // spherical angle opening up + '\u29A2': MO.BIN3, // turned angle + '\u29A3': MO.BIN3, // reversed angle + '\u29A4': MO.BIN3, // angle with underbar + '\u29A5': MO.BIN3, // reversed angle with underbar + '\u29A6': MO.BIN3, // oblique angle opening up + '\u29A7': MO.BIN3, // oblique angle opening down + '\u29A8': MO.BIN3, // measured angle with open arm ending in arrow pointing up and right + '\u29A9': MO.BIN3, // measured angle with open arm ending in arrow pointing up and left + '\u29AA': MO.BIN3, // measured angle with open arm ending in arrow pointing down and right + '\u29AB': MO.BIN3, // measured angle with open arm ending in arrow pointing down and left + '\u29AC': MO.BIN3, // measured angle with open arm ending in arrow pointing right and up + '\u29AD': MO.BIN3, // measured angle with open arm ending in arrow pointing left and up + '\u29AE': MO.BIN3, // measured angle with open arm ending in arrow pointing right and down + '\u29AF': MO.BIN3, // measured angle with open arm ending in arrow pointing left and down + '\u29B0': MO.BIN3, // reversed empty set + '\u29B1': MO.BIN3, // empty set with overbar + '\u29B2': MO.BIN3, // empty set with small circle above + '\u29B3': MO.BIN3, // empty set with right arrow above + '\u29B4': MO.BIN3, // empty set with left arrow above + '\u29B5': MO.BIN3, // circle with horizontal bar + '\u29B6': MO.BIN4, // circled vertical bar + '\u29B7': MO.BIN4, // circled parallel + '\u29B8': MO.BIN4, // circled reverse solidus + '\u29B9': MO.BIN4, // circled perpendicular + '\u29BA': MO.BIN4, // circle divided by horizontal bar and top half divided by vertical bar + '\u29BB': MO.BIN4, // circle with superimposed x + '\u29BC': MO.BIN4, // circled anticlockwise-rotated division sign + '\u29BD': MO.BIN4, // up arrow through circle + '\u29BE': MO.BIN4, // circled white bullet + '\u29BF': MO.BIN4, // circled bullet + '\u29C0': MO.REL, // circled less-than + '\u29C1': MO.REL, // circled greater-than + '\u29C2': MO.BIN3, // circle with small circle to the right + '\u29C3': MO.BIN3, // circle with two horizontal strokes to the right + '\u29C4': MO.BIN4, // squared rising diagonal slash + '\u29C5': MO.BIN4, // squared falling diagonal slash + '\u29C6': MO.BIN4, // squared asterisk + '\u29C7': MO.BIN4, // squared small circle + '\u29C8': MO.BIN4, // squared square + '\u29C9': MO.BIN3, // two joined squares + '\u29CA': MO.BIN3, // triangle with dot above + '\u29CB': MO.BIN3, // triangle with underbar + '\u29CC': MO.BIN3, // s in triangle + '\u29CD': MO.BIN3, // triangle with serifs at bottom + '\u29CE': MO.REL, // right triangle above left triangle + '\u29CF': MO.REL, // left triangle beside vertical bar + '\u29CF\u0338': MO.REL, // left triangle beside vertical bar with slash + '\u29D0': MO.REL, // vertical bar beside right triangle + '\u29D0\u0338': MO.REL, // vertical bar beside right triangle with slash + '\u29D1': MO.REL, // bowtie with left half black + '\u29D2': MO.REL, // bowtie with right half black + '\u29D3': MO.REL, // black bowtie + '\u29D4': MO.REL, // times with left half black + '\u29D5': MO.REL, // times with right half black + '\u29D6': MO.BIN4, // white hourglass + '\u29D7': MO.BIN4, // black hourglass + '\u29D8': MO.BIN3, // left wiggly fence + '\u29D9': MO.BIN3, // right wiggly fence + '\u29DB': MO.BIN3, // right double wiggly fence + '\u29DC': MO.BIN3, // incomplete infinity + '\u29DD': MO.BIN3, // tie over infinity + '\u29DE': MO.REL, // infinity negated with vertical bar + '\u29DF': MO.BIN3, // double-ended multimap + '\u29E0': MO.BIN3, // square with contoured outline + '\u29E1': MO.REL, // increases as + '\u29E2': MO.BIN4, // shuffle product + '\u29E3': MO.REL, // equals sign and slanted parallel + '\u29E4': MO.REL, // equals sign and slanted parallel with tilde above + '\u29E5': MO.REL, // identical to and slanted parallel + '\u29E6': MO.REL, // gleich stark + '\u29E7': MO.BIN3, // thermodynamic + '\u29E8': MO.BIN3, // down-pointing triangle with left half black + '\u29E9': MO.BIN3, // down-pointing triangle with right half black + '\u29EA': MO.BIN3, // black diamond with down arrow + '\u29EB': MO.BIN3, // black lozenge + '\u29EC': MO.BIN3, // white circle with down arrow + '\u29ED': MO.BIN3, // black circle with down arrow + '\u29EE': MO.BIN3, // error-barred white square + '\u29EF': MO.BIN3, // error-barred black square + '\u29F0': MO.BIN3, // error-barred white diamond + '\u29F1': MO.BIN3, // error-barred black diamond + '\u29F2': MO.BIN3, // error-barred white circle + '\u29F3': MO.BIN3, // error-barred black circle + '\u29F4': MO.REL, // rule-delayed + '\u29F5': MO.BIN4, // reverse solidus operator + '\u29F6': MO.BIN4, // solidus with overbar + '\u29F7': MO.BIN4, // reverse solidus with horizontal stroke + '\u29F8': MO.BIN3, // big solidus + '\u29F9': MO.BIN3, // big reverse solidus + '\u29FA': MO.BIN3, // double plus + '\u29FB': MO.BIN3, // triple plus + '\u29FE': MO.BIN4, // tiny + '\u29FF': MO.BIN4 // miny + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/MiscMathSymbolsB.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/MiscSymbolsAndArrows.js b/modules/MathJax/unpacked/jax/element/mml/optable/MiscSymbolsAndArrows.js new file mode 100644 index 0000000..b329163 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/MiscSymbolsAndArrows.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/MiscSymbolsAndArrows.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + infix: { + '\u2B45': MO.RELSTRETCH, // leftwards quadruple arrow + '\u2B46': MO.RELSTRETCH // rightwards quadruple arrow + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/MiscSymbolsAndArrows.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/MiscTechnical.js b/modules/MathJax/unpacked/jax/element/mml/optable/MiscTechnical.js new file mode 100644 index 0000000..d55dfdc --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/MiscTechnical.js @@ -0,0 +1,40 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/MiscTechnical.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + postfix: { + '\u23B4': MO.WIDEACCENT, // top square bracket + '\u23B5': MO.WIDEACCENT, // bottom square bracket + '\u23DC': MO.WIDEACCENT, // top parenthesis + '\u23DD': MO.WIDEACCENT, // bottom parenthesis + '\u23E0': MO.WIDEACCENT, // top tortoise shell bracket + '\u23E1': MO.WIDEACCENT // bottom tortoise shell bracket + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/MiscTechnical.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/SpacingModLetters.js b/modules/MathJax/unpacked/jax/element/mml/optable/SpacingModLetters.js new file mode 100644 index 0000000..95917ce --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/SpacingModLetters.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/SpacingModLetters.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + postfix: { + '\u02CD': MO.WIDEACCENT, // modifier letter low macron + '\u02DA': MO.ACCENT, // ring above + '\u02DD': MO.ACCENT, // double acute accent + '\u02F7': MO.WIDEACCENT // modifier letter low tilde + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/SpacingModLetters.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/SuppMathOperators.js b/modules/MathJax/unpacked/jax/element/mml/optable/SuppMathOperators.js new file mode 100644 index 0000000..a7e6405 --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/SuppMathOperators.js @@ -0,0 +1,289 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/SuppMathOperators.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + prefix: { + '\u2A03': MO.OP, // n-ary union operator with dot + '\u2A05': MO.OP, // n-ary square intersection operator + '\u2A07': MO.OP, // two logical and operator + '\u2A08': MO.OP, // two logical or operator + '\u2A09': MO.OP, // n-ary times operator + '\u2A0A': MO.OP, // modulo two sum + '\u2A0B': MO.INTEGRAL2, // summation with integral + '\u2A0C': MO.INTEGRAL, // quadruple integral operator + '\u2A0D': MO.INTEGRAL2, // finite part integral + '\u2A0E': MO.INTEGRAL2, // integral with double stroke + '\u2A0F': MO.INTEGRAL2, // integral average with slash + '\u2A10': MO.OP, // circulation function + '\u2A11': MO.OP, // anticlockwise integration + '\u2A12': MO.OP, // line integration with rectangular path around pole + '\u2A13': MO.OP, // line integration with semicircular path around pole + '\u2A14': MO.OP, // line integration not including the pole + '\u2A15': MO.INTEGRAL2, // integral around a point operator + '\u2A16': MO.INTEGRAL2, // quaternion integral operator + '\u2A17': MO.INTEGRAL2, // integral with leftwards arrow with hook + '\u2A18': MO.INTEGRAL2, // integral with times sign + '\u2A19': MO.INTEGRAL2, // integral with intersection + '\u2A1A': MO.INTEGRAL2, // integral with union + '\u2A1B': MO.INTEGRAL2, // integral with overbar + '\u2A1C': MO.INTEGRAL2, // integral with underbar + '\u2AFC': MO.OP, // large triple vertical bar operator + '\u2AFF': MO.OP // n-ary white vertical bar + }, + infix: { + '\u2A1D': MO.BIN3, // join + '\u2A1E': MO.BIN3, // large left triangle operator + '\u2A1F': MO.BIN3, // z notation schema composition + '\u2A20': MO.BIN3, // z notation schema piping + '\u2A21': MO.BIN3, // z notation schema projection + '\u2A22': MO.BIN4, // plus sign with small circle above + '\u2A23': MO.BIN4, // plus sign with circumflex accent above + '\u2A24': MO.BIN4, // plus sign with tilde above + '\u2A25': MO.BIN4, // plus sign with dot below + '\u2A26': MO.BIN4, // plus sign with tilde below + '\u2A27': MO.BIN4, // plus sign with subscript two + '\u2A28': MO.BIN4, // plus sign with black triangle + '\u2A29': MO.BIN4, // minus sign with comma above + '\u2A2A': MO.BIN4, // minus sign with dot below + '\u2A2B': MO.BIN4, // minus sign with falling dots + '\u2A2C': MO.BIN4, // minus sign with rising dots + '\u2A2D': MO.BIN4, // plus sign in left half circle + '\u2A2E': MO.BIN4, // plus sign in right half circle + '\u2A30': MO.BIN4, // multiplication sign with dot above + '\u2A31': MO.BIN4, // multiplication sign with underbar + '\u2A32': MO.BIN4, // semidirect product with bottom closed + '\u2A33': MO.BIN4, // smash product + '\u2A34': MO.BIN4, // multiplication sign in left half circle + '\u2A35': MO.BIN4, // multiplication sign in right half circle + '\u2A36': MO.BIN4, // circled multiplication sign with circumflex accent + '\u2A37': MO.BIN4, // multiplication sign in double circle + '\u2A38': MO.BIN4, // circled division sign + '\u2A39': MO.BIN4, // plus sign in triangle + '\u2A3A': MO.BIN4, // minus sign in triangle + '\u2A3B': MO.BIN4, // multiplication sign in triangle + '\u2A3C': MO.BIN4, // interior product + '\u2A3D': MO.BIN4, // righthand interior product + '\u2A3E': MO.BIN4, // z notation relational composition + '\u2A40': MO.BIN4, // intersection with dot + '\u2A41': MO.BIN4, // union with minus sign + '\u2A42': MO.BIN4, // union with overbar + '\u2A43': MO.BIN4, // intersection with overbar + '\u2A44': MO.BIN4, // intersection with logical and + '\u2A45': MO.BIN4, // union with logical or + '\u2A46': MO.BIN4, // union above intersection + '\u2A47': MO.BIN4, // intersection above union + '\u2A48': MO.BIN4, // union above bar above intersection + '\u2A49': MO.BIN4, // intersection above bar above union + '\u2A4A': MO.BIN4, // union beside and joined with union + '\u2A4B': MO.BIN4, // intersection beside and joined with intersection + '\u2A4C': MO.BIN4, // closed union with serifs + '\u2A4D': MO.BIN4, // closed intersection with serifs + '\u2A4E': MO.BIN4, // double square intersection + '\u2A4F': MO.BIN4, // double square union + '\u2A50': MO.BIN4, // closed union with serifs and smash product + '\u2A51': MO.BIN4, // logical and with dot above + '\u2A52': MO.BIN4, // logical or with dot above + '\u2A53': MO.BIN4, // double logical and + '\u2A54': MO.BIN4, // double logical or + '\u2A55': MO.BIN4, // two intersecting logical and + '\u2A56': MO.BIN4, // two intersecting logical or + '\u2A57': MO.BIN4, // sloping large or + '\u2A58': MO.BIN4, // sloping large and + '\u2A59': MO.REL, // logical or overlapping logical and + '\u2A5A': MO.BIN4, // logical and with middle stem + '\u2A5B': MO.BIN4, // logical or with middle stem + '\u2A5C': MO.BIN4, // logical and with horizontal dash + '\u2A5D': MO.BIN4, // logical or with horizontal dash + '\u2A5E': MO.BIN4, // logical and with double overbar + '\u2A5F': MO.BIN4, // logical and with underbar + '\u2A60': MO.BIN4, // logical and with double underbar + '\u2A61': MO.BIN4, // small vee with underbar + '\u2A62': MO.BIN4, // logical or with double overbar + '\u2A63': MO.BIN4, // logical or with double underbar + '\u2A64': MO.BIN4, // z notation domain antirestriction + '\u2A65': MO.BIN4, // z notation range antirestriction + '\u2A66': MO.REL, // equals sign with dot below + '\u2A67': MO.REL, // identical with dot above + '\u2A68': MO.REL, // triple horizontal bar with double vertical stroke + '\u2A69': MO.REL, // triple horizontal bar with triple vertical stroke + '\u2A6A': MO.REL, // tilde operator with dot above + '\u2A6B': MO.REL, // tilde operator with rising dots + '\u2A6C': MO.REL, // similar minus similar + '\u2A6D': MO.REL, // congruent with dot above + '\u2A6E': MO.REL, // equals with asterisk + '\u2A6F': MO.REL, // almost equal to with circumflex accent + '\u2A70': MO.REL, // approximately equal or equal to + '\u2A71': MO.BIN4, // equals sign above plus sign + '\u2A72': MO.BIN4, // plus sign above equals sign + '\u2A73': MO.REL, // equals sign above tilde operator + '\u2A74': MO.REL, // double colon equal + '\u2A75': MO.REL, // two consecutive equals signs + '\u2A76': MO.REL, // three consecutive equals signs + '\u2A77': MO.REL, // equals sign with two dots above and two dots below + '\u2A78': MO.REL, // equivalent with four dots above + '\u2A79': MO.REL, // less-than with circle inside + '\u2A7A': MO.REL, // greater-than with circle inside + '\u2A7B': MO.REL, // less-than with question mark above + '\u2A7C': MO.REL, // greater-than with question mark above + '\u2A7D': MO.REL, // less-than or slanted equal to + '\u2A7D\u0338': MO.REL, // less-than or slanted equal to with slash + '\u2A7E': MO.REL, // greater-than or slanted equal to + '\u2A7E\u0338': MO.REL, // greater-than or slanted equal to with slash + '\u2A7F': MO.REL, // less-than or slanted equal to with dot inside + '\u2A80': MO.REL, // greater-than or slanted equal to with dot inside + '\u2A81': MO.REL, // less-than or slanted equal to with dot above + '\u2A82': MO.REL, // greater-than or slanted equal to with dot above + '\u2A83': MO.REL, // less-than or slanted equal to with dot above right + '\u2A84': MO.REL, // greater-than or slanted equal to with dot above left + '\u2A85': MO.REL, // less-than or approximate + '\u2A86': MO.REL, // greater-than or approximate + '\u2A87': MO.REL, // less-than and single-line not equal to + '\u2A88': MO.REL, // greater-than and single-line not equal to + '\u2A89': MO.REL, // less-than and not approximate + '\u2A8A': MO.REL, // greater-than and not approximate + '\u2A8B': MO.REL, // less-than above double-line equal above greater-than + '\u2A8C': MO.REL, // greater-than above double-line equal above less-than + '\u2A8D': MO.REL, // less-than above similar or equal + '\u2A8E': MO.REL, // greater-than above similar or equal + '\u2A8F': MO.REL, // less-than above similar above greater-than + '\u2A90': MO.REL, // greater-than above similar above less-than + '\u2A91': MO.REL, // less-than above greater-than above double-line equal + '\u2A92': MO.REL, // greater-than above less-than above double-line equal + '\u2A93': MO.REL, // less-than above slanted equal above greater-than above slanted equal + '\u2A94': MO.REL, // greater-than above slanted equal above less-than above slanted equal + '\u2A95': MO.REL, // slanted equal to or less-than + '\u2A96': MO.REL, // slanted equal to or greater-than + '\u2A97': MO.REL, // slanted equal to or less-than with dot inside + '\u2A98': MO.REL, // slanted equal to or greater-than with dot inside + '\u2A99': MO.REL, // double-line equal to or less-than + '\u2A9A': MO.REL, // double-line equal to or greater-than + '\u2A9B': MO.REL, // double-line slanted equal to or less-than + '\u2A9C': MO.REL, // double-line slanted equal to or greater-than + '\u2A9D': MO.REL, // similar or less-than + '\u2A9E': MO.REL, // similar or greater-than + '\u2A9F': MO.REL, // similar above less-than above equals sign + '\u2AA0': MO.REL, // similar above greater-than above equals sign + '\u2AA1': MO.REL, // double nested less-than + '\u2AA1\u0338': MO.REL, // double nested less-than with slash + '\u2AA2': MO.REL, // double nested greater-than + '\u2AA2\u0338': MO.REL, // double nested greater-than with slash + '\u2AA3': MO.REL, // double nested less-than with underbar + '\u2AA4': MO.REL, // greater-than overlapping less-than + '\u2AA5': MO.REL, // greater-than beside less-than + '\u2AA6': MO.REL, // less-than closed by curve + '\u2AA7': MO.REL, // greater-than closed by curve + '\u2AA8': MO.REL, // less-than closed by curve above slanted equal + '\u2AA9': MO.REL, // greater-than closed by curve above slanted equal + '\u2AAA': MO.REL, // smaller than + '\u2AAB': MO.REL, // larger than + '\u2AAC': MO.REL, // smaller than or equal to + '\u2AAD': MO.REL, // larger than or equal to + '\u2AAE': MO.REL, // equals sign with bumpy above + '\u2AAF\u0338': MO.REL, // precedes above single-line equals sign with slash + '\u2AB0\u0338': MO.REL, // succeeds above single-line equals sign with slash + '\u2AB1': MO.REL, // precedes above single-line not equal to + '\u2AB2': MO.REL, // succeeds above single-line not equal to + '\u2AB3': MO.REL, // precedes above equals sign + '\u2AB4': MO.REL, // succeeds above equals sign + '\u2AB5': MO.REL, // precedes above not equal to + '\u2AB6': MO.REL, // succeeds above not equal to + '\u2AB7': MO.REL, // precedes above almost equal to + '\u2AB8': MO.REL, // succeeds above almost equal to + '\u2AB9': MO.REL, // precedes above not almost equal to + '\u2ABA': MO.REL, // succeeds above not almost equal to + '\u2ABB': MO.REL, // double precedes + '\u2ABC': MO.REL, // double succeeds + '\u2ABD': MO.REL, // subset with dot + '\u2ABE': MO.REL, // superset with dot + '\u2ABF': MO.REL, // subset with plus sign below + '\u2AC0': MO.REL, // superset with plus sign below + '\u2AC1': MO.REL, // subset with multiplication sign below + '\u2AC2': MO.REL, // superset with multiplication sign below + '\u2AC3': MO.REL, // subset of or equal to with dot above + '\u2AC4': MO.REL, // superset of or equal to with dot above + '\u2AC5': MO.REL, // subset of above equals sign + '\u2AC6': MO.REL, // superset of above equals sign + '\u2AC7': MO.REL, // subset of above tilde operator + '\u2AC8': MO.REL, // superset of above tilde operator + '\u2AC9': MO.REL, // subset of above almost equal to + '\u2ACA': MO.REL, // superset of above almost equal to + '\u2ACB': MO.REL, // subset of above not equal to + '\u2ACC': MO.REL, // superset of above not equal to + '\u2ACD': MO.REL, // square left open box operator + '\u2ACE': MO.REL, // square right open box operator + '\u2ACF': MO.REL, // closed subset + '\u2AD0': MO.REL, // closed superset + '\u2AD1': MO.REL, // closed subset or equal to + '\u2AD2': MO.REL, // closed superset or equal to + '\u2AD3': MO.REL, // subset above superset + '\u2AD4': MO.REL, // superset above subset + '\u2AD5': MO.REL, // subset above subset + '\u2AD6': MO.REL, // superset above superset + '\u2AD7': MO.REL, // superset beside subset + '\u2AD8': MO.REL, // superset beside and joined by dash with subset + '\u2AD9': MO.REL, // element of opening downwards + '\u2ADA': MO.REL, // pitchfork with tee top + '\u2ADB': MO.REL, // transversal intersection + '\u2ADC': MO.REL, // forking + '\u2ADD': MO.REL, // nonforking + '\u2ADE': MO.REL, // short left tack + '\u2ADF': MO.REL, // short down tack + '\u2AE0': MO.REL, // short up tack + '\u2AE1': MO.REL, // perpendicular with s + '\u2AE2': MO.REL, // vertical bar triple right turnstile + '\u2AE3': MO.REL, // double vertical bar left turnstile + '\u2AE4': MO.REL, // vertical bar double left turnstile + '\u2AE5': MO.REL, // double vertical bar double left turnstile + '\u2AE6': MO.REL, // long dash from left member of double vertical + '\u2AE7': MO.REL, // short down tack with overbar + '\u2AE8': MO.REL, // short up tack with underbar + '\u2AE9': MO.REL, // short up tack above short down tack + '\u2AEA': MO.REL, // double down tack + '\u2AEB': MO.REL, // double up tack + '\u2AEC': MO.REL, // double stroke not sign + '\u2AED': MO.REL, // reversed double stroke not sign + '\u2AEE': MO.REL, // does not divide with reversed negation slash + '\u2AEF': MO.REL, // vertical line with circle above + '\u2AF0': MO.REL, // vertical line with circle below + '\u2AF1': MO.REL, // down tack with circle below + '\u2AF2': MO.REL, // parallel with horizontal stroke + '\u2AF3': MO.REL, // parallel with tilde operator + '\u2AF4': MO.BIN4, // triple vertical bar binary relation + '\u2AF5': MO.BIN4, // triple vertical bar with horizontal stroke + '\u2AF6': MO.BIN4, // triple colon operator + '\u2AF7': MO.REL, // triple nested less-than + '\u2AF8': MO.REL, // triple nested greater-than + '\u2AF9': MO.REL, // double-line slanted less-than or equal to + '\u2AFA': MO.REL, // double-line slanted greater-than or equal to + '\u2AFB': MO.BIN4, // triple solidus binary relation + '\u2AFD': MO.BIN4, // double solidus operator + '\u2AFE': MO.BIN3 // white vertical bar + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/SuppMathOperators.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/SupplementalArrowsA.js b/modules/MathJax/unpacked/jax/element/mml/optable/SupplementalArrowsA.js new file mode 100644 index 0000000..022066d --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/SupplementalArrowsA.js @@ -0,0 +1,40 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/SupplementalArrowsA.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + infix: { + '\u27F0': MO.RELSTRETCH, // upwards quadruple arrow + '\u27F1': MO.RELSTRETCH, // downwards quadruple arrow + '\u27FB': MO.WIDEREL, // long leftwards arrow from bar + '\u27FD': MO.WIDEREL, // long leftwards double arrow from bar + '\u27FE': MO.WIDEREL, // long rightwards double arrow from bar + '\u27FF': MO.WIDEREL // long rightwards squiggle arrow + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/SupplementalArrowsA.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/unpacked/jax/element/mml/optable/SupplementalArrowsB.js b/modules/MathJax/unpacked/jax/element/mml/optable/SupplementalArrowsB.js new file mode 100644 index 0000000..eea3d2f --- /dev/null +++ b/modules/MathJax/unpacked/jax/element/mml/optable/SupplementalArrowsB.js @@ -0,0 +1,162 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/optable/SupplementalArrowsB.js + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +(function (MML) { + var MO = MML.mo.OPTYPES; + var TEXCLASS = MML.TEXCLASS; + + MathJax.Hub.Insert(MML.mo.prototype,{ + OPTABLE: { + infix: { + '\u2900': MO.RELACCENT, // rightwards two-headed arrow with vertical stroke + '\u2901': MO.RELACCENT, // rightwards two-headed arrow with double vertical stroke + '\u2902': MO.RELACCENT, // leftwards double arrow with vertical stroke + '\u2903': MO.RELACCENT, // rightwards double arrow with vertical stroke + '\u2904': MO.RELACCENT, // left right double arrow with vertical stroke + '\u2905': MO.RELACCENT, // rightwards two-headed arrow from bar + '\u2906': MO.RELACCENT, // leftwards double arrow from bar + '\u2907': MO.RELACCENT, // rightwards double arrow from bar + '\u2908': MO.REL, // downwards arrow with horizontal stroke + '\u2909': MO.REL, // upwards arrow with horizontal stroke + '\u290A': MO.RELSTRETCH, // upwards triple arrow + '\u290B': MO.RELSTRETCH, // downwards triple arrow + '\u290C': MO.WIDEREL, // leftwards double dash arrow + '\u290D': MO.WIDEREL, // rightwards double dash arrow + '\u290E': MO.WIDEREL, // leftwards triple dash arrow + '\u290F': MO.WIDEREL, // rightwards triple dash arrow + '\u2910': MO.WIDEREL, // rightwards two-headed triple dash arrow + '\u2911': MO.RELACCENT, // rightwards arrow with dotted stem + '\u2912': MO.RELSTRETCH, // upwards arrow to bar + '\u2913': MO.RELSTRETCH, // downwards arrow to bar + '\u2914': MO.RELACCENT, // rightwards arrow with tail with vertical stroke + '\u2915': MO.RELACCENT, // rightwards arrow with tail with double vertical stroke + '\u2916': MO.RELACCENT, // rightwards two-headed arrow with tail + '\u2917': MO.RELACCENT, // rightwards two-headed arrow with tail with vertical stroke + '\u2918': MO.RELACCENT, // rightwards two-headed arrow with tail with double vertical stroke + '\u2919': MO.RELACCENT, // leftwards arrow-tail + '\u291A': MO.RELACCENT, // rightwards arrow-tail + '\u291B': MO.RELACCENT, // leftwards double arrow-tail + '\u291C': MO.RELACCENT, // rightwards double arrow-tail + '\u291D': MO.RELACCENT, // leftwards arrow to black diamond + '\u291E': MO.RELACCENT, // rightwards arrow to black diamond + '\u291F': MO.RELACCENT, // leftwards arrow from bar to black diamond + '\u2920': MO.RELACCENT, // rightwards arrow from bar to black diamond + '\u2921': MO.RELSTRETCH, // north west and south east arrow + '\u2922': MO.RELSTRETCH, // north east and south west arrow + '\u2923': MO.REL, // north west arrow with hook + '\u2924': MO.REL, // north east arrow with hook + '\u2925': MO.REL, // south east arrow with hook + '\u2926': MO.REL, // south west arrow with hook + '\u2927': MO.REL, // north west arrow and north east arrow + '\u2928': MO.REL, // north east arrow and south east arrow + '\u2929': MO.REL, // south east arrow and south west arrow + '\u292A': MO.REL, // south west arrow and north west arrow + '\u292B': MO.REL, // rising diagonal crossing falling diagonal + '\u292C': MO.REL, // falling diagonal crossing rising diagonal + '\u292D': MO.REL, // south east arrow crossing north east arrow + '\u292E': MO.REL, // north east arrow crossing south east arrow + '\u292F': MO.REL, // falling diagonal crossing north east arrow + '\u2930': MO.REL, // rising diagonal crossing south east arrow + '\u2931': MO.REL, // north east arrow crossing north west arrow + '\u2932': MO.REL, // north west arrow crossing north east arrow + '\u2933': MO.RELACCENT, // wave arrow pointing directly right + '\u2934': MO.REL, // arrow pointing rightwards then curving upwards + '\u2935': MO.REL, // arrow pointing rightwards then curving downwards + '\u2936': MO.REL, // arrow pointing downwards then curving leftwards + '\u2937': MO.REL, // arrow pointing downwards then curving rightwards + '\u2938': MO.REL, // right-side arc clockwise arrow + '\u2939': MO.REL, // left-side arc anticlockwise arrow + '\u293A': MO.RELACCENT, // top arc anticlockwise arrow + '\u293B': MO.RELACCENT, // bottom arc anticlockwise arrow + '\u293C': MO.RELACCENT, // top arc clockwise arrow with minus + '\u293D': MO.RELACCENT, // top arc anticlockwise arrow with plus + '\u293E': MO.REL, // lower right semicircular clockwise arrow + '\u293F': MO.REL, // lower left semicircular anticlockwise arrow + '\u2940': MO.REL, // anticlockwise closed circle arrow + '\u2941': MO.REL, // clockwise closed circle arrow + '\u2942': MO.RELACCENT, // rightwards arrow above short leftwards arrow + '\u2943': MO.RELACCENT, // leftwards arrow above short rightwards arrow + '\u2944': MO.RELACCENT, // short rightwards arrow above leftwards arrow + '\u2945': MO.RELACCENT, // rightwards arrow with plus below + '\u2946': MO.RELACCENT, // leftwards arrow with plus below + '\u2947': MO.RELACCENT, // rightwards arrow through x + '\u2948': MO.RELACCENT, // left right arrow through small circle + '\u2949': MO.REL, // upwards two-headed arrow from small circle + '\u294A': MO.RELACCENT, // left barb up right barb down harpoon + '\u294B': MO.RELACCENT, // left barb down right barb up harpoon + '\u294C': MO.REL, // up barb right down barb left harpoon + '\u294D': MO.REL, // up barb left down barb right harpoon + '\u294E': MO.WIDEREL, // left barb up right barb up harpoon + '\u294F': MO.RELSTRETCH, // up barb right down barb right harpoon + '\u2950': MO.WIDEREL, // left barb down right barb down harpoon + '\u2951': MO.RELSTRETCH, // up barb left down barb left harpoon + '\u2952': MO.WIDEREL, // leftwards harpoon with barb up to bar + '\u2953': MO.WIDEREL, // rightwards harpoon with barb up to bar + '\u2954': MO.RELSTRETCH, // upwards harpoon with barb right to bar + '\u2955': MO.RELSTRETCH, // downwards harpoon with barb right to bar + '\u2956': MO.RELSTRETCH, // leftwards harpoon with barb down to bar + '\u2957': MO.RELSTRETCH, // rightwards harpoon with barb down to bar + '\u2958': MO.RELSTRETCH, // upwards harpoon with barb left to bar + '\u2959': MO.RELSTRETCH, // downwards harpoon with barb left to bar + '\u295A': MO.WIDEREL, // leftwards harpoon with barb up from bar + '\u295B': MO.WIDEREL, // rightwards harpoon with barb up from bar + '\u295C': MO.RELSTRETCH, // upwards harpoon with barb right from bar + '\u295D': MO.RELSTRETCH, // downwards harpoon with barb right from bar + '\u295E': MO.WIDEREL, // leftwards harpoon with barb down from bar + '\u295F': MO.WIDEREL, // rightwards harpoon with barb down from bar + '\u2960': MO.RELSTRETCH, // upwards harpoon with barb left from bar + '\u2961': MO.RELSTRETCH, // downwards harpoon with barb left from bar + '\u2962': MO.RELACCENT, // leftwards harpoon with barb up above leftwards harpoon with barb down + '\u2963': MO.REL, // upwards harpoon with barb left beside upwards harpoon with barb right + '\u2964': MO.RELACCENT, // rightwards harpoon with barb up above rightwards harpoon with barb down + '\u2965': MO.REL, // downwards harpoon with barb left beside downwards harpoon with barb right + '\u2966': MO.RELACCENT, // leftwards harpoon with barb up above rightwards harpoon with barb up + '\u2967': MO.RELACCENT, // leftwards harpoon with barb down above rightwards harpoon with barb down + '\u2968': MO.RELACCENT, // rightwards harpoon with barb up above leftwards harpoon with barb up + '\u2969': MO.RELACCENT, // rightwards harpoon with barb down above leftwards harpoon with barb down + '\u296A': MO.RELACCENT, // leftwards harpoon with barb up above long dash + '\u296B': MO.RELACCENT, // leftwards harpoon with barb down below long dash + '\u296C': MO.RELACCENT, // rightwards harpoon with barb up above long dash + '\u296D': MO.RELACCENT, // rightwards harpoon with barb down below long dash + '\u296E': MO.RELSTRETCH, // upwards harpoon with barb left beside downwards harpoon with barb right + '\u296F': MO.RELSTRETCH, // downwards harpoon with barb left beside upwards harpoon with barb right + '\u2970': MO.RELACCENT, // right double arrow with rounded head + '\u2971': MO.RELACCENT, // equals sign above rightwards arrow + '\u2972': MO.RELACCENT, // tilde operator above rightwards arrow + '\u2973': MO.RELACCENT, // leftwards arrow above tilde operator + '\u2974': MO.RELACCENT, // rightwards arrow above tilde operator + '\u2975': MO.RELACCENT, // rightwards arrow above almost equal to + '\u2976': MO.RELACCENT, // less-than above leftwards arrow + '\u2977': MO.RELACCENT, // leftwards arrow through less-than + '\u2978': MO.RELACCENT, // greater-than above rightwards arrow + '\u2979': MO.RELACCENT, // subset above rightwards arrow + '\u297A': MO.RELACCENT, // leftwards arrow through subset + '\u297B': MO.RELACCENT, // superset above leftwards arrow + '\u297C': MO.RELACCENT, // left fish tail + '\u297D': MO.RELACCENT, // right fish tail + '\u297E': MO.REL, // up fish tail + '\u297F': MO.REL // down fish tail + } + } + }); + + MathJax.Ajax.loadComplete(MML.optableDir+"/SupplementalArrowsB.js"); + +})(MathJax.ElementJax.mml); diff --git a/modules/MathJax/config/local/local.js b/modules/MathJax/unpacked/jax/input/MathML/config.js similarity index 59% rename from modules/MathJax/config/local/local.js rename to modules/MathJax/unpacked/jax/input/MathML/config.js index 16c44a9..deb6668 100644 --- a/modules/MathJax/config/local/local.js +++ b/modules/MathJax/unpacked/jax/input/MathML/config.js @@ -3,12 +3,10 @@ /************************************************************* * - * MathJax/config/local/local.js - * - * Include changes and configuration local to your installation - * in this file. For example, common macros can be defined here - * (see below). To use this file, add "local/local.js" to the - * config array in MathJax.js or your MathJax.Hub.Config() call. + * MathJax/jax/input/MathML/config.js + * + * Initializes the MathML InputJax (the main definition is in + * MathJax/jax/input/MathML/jax.js, which is loaded when needed). * * --------------------------------------------------------------------- * @@ -27,14 +25,17 @@ * limitations under the License. */ - -MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { - var TEX = MathJax.InputJax.TeX; - - // place macros here. E.g.: - // TEX.Macro("R","{\\bf R}"); - // TEX.Macro("op","\\mathop{\\rm #1}",1); // a macro with 1 parameter +MathJax.InputJax.MathML = MathJax.InputJax({ + id: "MathML", + version: "2.3", + directory: MathJax.InputJax.directory + "/MathML", + extensionDir: MathJax.InputJax.extensionDir + "/MathML", + entityDir: MathJax.InputJax.directory + "/MathML/entities", + config: { + useMathMLspacing: false // false means use TeX spacing, true means MML spacing + } }); +MathJax.InputJax.MathML.Register("math/mml"); -MathJax.Ajax.loadComplete("[MathJax]/config/local/local.js"); +MathJax.InputJax.MathML.loadComplete("config.js"); diff --git a/modules/MathJax/unpacked/jax/input/MathML/jax.js b/modules/MathJax/unpacked/jax/input/MathML/jax.js new file mode 100644 index 0000000..22b2f53 --- /dev/null +++ b/modules/MathJax/unpacked/jax/input/MathML/jax.js @@ -0,0 +1,760 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/input/MathML/jax.js + * + * Implements the MathML InputJax that reads mathematics in + * MathML format and converts it to the MML ElementJax + * internal format. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (MATHML,BROWSER) { + var MML; + + var _ = function (id) { + return MathJax.Localization._.apply(MathJax.Localization, + [["MathML",id]].concat([].slice.call(arguments,1))) + }; + + MATHML.Parse = MathJax.Object.Subclass({ + + Init: function (string) {this.Parse(string)}, + + // + // Parse the MathML and check for errors + // + Parse: function (math) { + var doc; + if (typeof math !== "string") {doc = math.parentNode} else { + doc = MATHML.ParseXML(this.preProcessMath.call(this,math)); + if (doc == null) {MATHML.Error(["ErrorParsingMathML","Error parsing MathML"])} + } + var err = doc.getElementsByTagName("parsererror")[0]; + if (err) MATHML.Error(["ParsingError","Error parsing MathML: %1", + err.textContent.replace(/This page.*?errors:|XML Parsing Error: |Below is a rendering of the page.*/g,"")]); + if (doc.childNodes.length !== 1) + {MATHML.Error(["MathMLSingleElement","MathML must be formed by a single element"])} + if (doc.firstChild.nodeName.toLowerCase() === "html") { + var h1 = doc.getElementsByTagName("h1")[0]; + if (h1 && h1.textContent === "XML parsing error" && h1.nextSibling) + MATHML.Error(["ParsingError","Error parsing MathML: %1", + String(h1.nextSibling.nodeValue).replace(/fatal parsing error: /,"")]); + } + if (doc.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"") !== "math") { + MATHML.Error(["MathMLRootElement", + "MathML must be formed by a element, not %1", + "<"+doc.firstChild.nodeName+">"]); + } + this.mml = this.MakeMML(doc.firstChild); + }, + + // + // Convert the MathML structure to the MathJax Element jax structure + // + MakeMML: function (node) { + var CLASS = String(node.getAttribute("class")||""); // make sure CLASS is a string + var mml, type = node.nodeName.toLowerCase().replace(/^[a-z]+:/,""); + var match = (CLASS.match(/(^| )MJX-TeXAtom-([^ ]*)/)); + if (match) { + mml = this.TeXAtom(match[2]); + } else if (!(MML[type] && MML[type].isa && MML[type].isa(MML.mbase))) { + MathJax.Hub.signal.Post(["MathML Jax - unknown node type",type]); + return MML.Error(_("UnknownNodeType","Unknown node type: %1",type)); + } else { + mml = MML[type](); + } + this.AddAttributes(mml,node); this.CheckClass(mml,mml["class"]); + this.AddChildren(mml,node); + if (MATHML.config.useMathMLspacing) {mml.useMMLspacing = 0x08} + return mml; + }, + TeXAtom: function (mclass) { + var mml = MML.TeXAtom().With({texClass:MML.TEXCLASS[mclass]}); + if (mml.texClass === MML.TEXCLASS.OP) {mml.movesupsub = mml.movablelimits = true} + return mml; + }, + CheckClass: function (mml,CLASS) { + CLASS = (CLASS||"").split(/ /); var NCLASS = []; + for (var i = 0, m = CLASS.length; i < m; i++) { + if (CLASS[i].substr(0,4) === "MJX-") { + if (CLASS[i] === "MJX-arrow") { + // This class was used in former versions of MathJax to attach an + // arrow to the updiagonalstrike notation. For backward + // compatibility, let's continue to accept this case. See issue 481. + if (!mml.notation.match("/"+MML.NOTATION.UPDIAGONALARROW+"/")) + mml.notation += " "+MML.NOTATION.UPDIAGONALARROW; + } else if (CLASS[i] === "MJX-variant") { + mml.variantForm = true; + // + // Variant forms come from AMSsymbols, and it sets up the + // character mappings, so load that if needed. + // + if (!MathJax.Extension["TeX/AMSsymbols"]) + {MathJax.Hub.RestartAfter(MathJax.Ajax.Require("[MathJax]/extensions/TeX/AMSsymbols.js"))} + } else if (CLASS[i].substr(0,11) !== "MJX-TeXAtom") { + mml.mathvariant = CLASS[i].substr(3); + // + // Caligraphic and oldstyle bold are set up in the boldsymbol + // extension, so load it if it isn't already loaded. + // + if (mml.mathvariant === "-tex-caligraphic-bold" || + mml.mathvariant === "-tex-oldstyle-bold") { + if (!MathJax.Extension["TeX/boldsymbol"]) + {MathJax.Hub.RestartAfter(MathJax.Ajax.Require("[MathJax]/extensions/TeX/boldsymbol.js"))} + } + } + } else {NCLASS.push(CLASS[i])} + } + if (NCLASS.length) {mml["class"] = NCLASS.join(" ")} else {delete mml["class"]} + }, + + // + // Add the attributes to the mml node + // + AddAttributes: function (mml,node) { + mml.attr = {}; mml.attrNames = []; + for (var i = 0, m = node.attributes.length; i < m; i++) { + var name = node.attributes[i].name; + if (name == "xlink:href") {name = "href"} + if (name.match(/:/)) continue; + if (name.match(/^_moz-math-((column|row)(align|line)|font-style)$/)) continue; + var value = node.attributes[i].value; + value = this.filterAttribute(name,value); + if (value != null) { + if (value.toLowerCase() === "true") {value = true} + else if (value.toLowerCase() === "false") {value = false} + if (mml.defaults[name] != null || MML.copyAttributes[name]) + {mml[name] = value} else {mml.attr[name] = value} + mml.attrNames.push(name); + } + } + }, + filterAttribute: function (name,value) {return value}, // safe mode overrides this + + // + // Create the children for the mml node + // + AddChildren: function (mml,node) { + for (var i = 0, m = node.childNodes.length; i < m; i++) { + var child = node.childNodes[i]; + if (child.nodeName === "#comment") continue; + if (child.nodeName === "#text") { + if (mml.isToken && !mml.mmlSelfClosing) { + var text = child.nodeValue.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity); + mml.Append(MML.chars(this.trimSpace(text))); + } else if (child.nodeValue.match(/\S/)) { + MATHML.Error(["UnexpectedTextNode", + "Unexpected text node: %1","'"+child.nodeValue+"'"]); + } + } else if (mml.type === "annotation-xml") { + mml.Append(MML.xml(child)); + } else { + var cmml = this.MakeMML(child); mml.Append(cmml); + if (cmml.mmlSelfClosing && cmml.data.length) + {mml.Append.apply(mml,cmml.data); cmml.data = []} + } + } + if (mml.type === "mrow" && mml.data.length >= 2) { + var first = mml.data[0], last = mml.data[mml.data.length-1]; + if (first.type === "mo" && first.Get("fence") && + last.type === "mo" && last.Get("fence")) { + if (first.data[0]) {mml.open = first.data.join("")} + if (last.data[0]) {mml.close = last.data.join("")} + } + } + }, + + // + // Clean Up the source to prepare for XML parsing + // + preProcessMath: function (math) { + if (math.match(/^<[a-z]+:/i) && !math.match(/^<[^<>]* xmlns:/)) { + math = math.replace(/^<([a-z]+)(:math)/i,'<$1$2 xmlns:$1="http://www.w3.org/1998/Math/MathML"') + } + // HTML5 removes xmlns: namespaces, so put them back for XML + var match = math.match(/^(])+)>)/i); + if (match && match[2].match(/ (?!xmlns=)[a-z]+=\"http:/i)) { + math = match[1].replace(/ (?!xmlns=)([a-z]+=(['"])http:.*?\2)/ig," xmlns:$1 $1") + + math.substr(match[0].length); + } + if (math.match(/^]* xmlns=/)) { + // append the MathML namespace + math = math.replace(/^<(math)/i,'\s*$/,"$2"); + return math.replace(/&([a-z][a-z0-9]*);/ig,this.replaceEntity); + }, + + // + // Remove attribute whitespace + // + trimSpace: function (string) { + return string.replace(/[\t\n\r]/g," ") // whitespace to spaces + .replace(/^ +/,"") // initial whitespace + .replace(/ +$/,"") // trailing whitespace + .replace(/ +/g," "); // internal multiple whitespace + }, + + // + // Replace a named entity by its value + // (look up from external files if necessary) + // + replaceEntity: function (match,entity) { + if (entity.match(/^(lt|amp|quot)$/)) {return match} // these mess up attribute parsing + if (MATHML.Parse.Entity[entity]) {return MATHML.Parse.Entity[entity]} + var file = entity.charAt(0).toLowerCase(); + var font = entity.match(/^[a-zA-Z](fr|scr|opf)$/); + if (font) {file = font[1]} + if (!MATHML.Parse.loaded[file]) { + MATHML.Parse.loaded[file] = true; + MathJax.Hub.RestartAfter(MathJax.Ajax.Require(MATHML.entityDir+"/"+file+".js")); + } + return match; + } + }, { + loaded: [] // the entity files that are loaded + }); + + /************************************************************************/ + + MATHML.Augment({ + sourceMenuTitle: /*_(MathMenu)*/ ["OriginalMathML","Original MathML"], + + prefilterHooks: MathJax.Callback.Hooks(true), // hooks to run before processing MathML + postfilterHooks: MathJax.Callback.Hooks(true), // hooks to run after processing MathML + + Translate: function (script) { + if (!this.ParseXML) {this.ParseXML = this.createParser()} + var mml, math, data = {script:script}; + if (script.firstChild && + script.firstChild.nodeName.toLowerCase().replace(/^[a-z]+:/,"") === "math") { + data.math = script.firstChild; + this.prefilterHooks.Execute(data); math = data.math; + } else { + math = MathJax.HTML.getScript(script); + if (BROWSER.isMSIE) {math = math.replace(/( )+$/,"")} + data.math = math; this.prefilterHooks.Execute(data); math = data.math; + } + try { + mml = MATHML.Parse(math).mml; + } catch(err) { + if (!err.mathmlError) {throw err} + mml = this.formatError(err,math,script); + } + data.math = MML(mml); this.postfilterHooks.Execute(data); + return data.math; + }, + prefilterMath: function (math,script) {return math}, + prefilterMathML: function (math,script) {return math}, + formatError: function (err,math,script) { + var message = err.message.replace(/\n.*/,""); + MathJax.Hub.signal.Post(["MathML Jax - parse error",message,math,script]); + return MML.Error(message); + }, + Error: function (message) { + // + // Translate message if it is ["id","message",args] + // + if (message instanceof Array) {message = _.apply(_,message)} + throw MathJax.Hub.Insert(Error(message),{mathmlError: true}); + }, + // + // Parsers for various forms (DOMParser, Windows ActiveX object, other) + // + parseDOM: function (string) {return this.parser.parseFromString(string,"text/xml")}, + parseMS: function (string) {return (this.parser.loadXML(string) ? this.parser : null)}, + parseDIV: function (string) { + this.div.innerHTML = string.replace(/<([a-z]+)([^>]*)\/>/g,"<$1$2>"); + return this.div; + }, + parseError: function (string) {return null}, + createMSParser: function() { + var parser = null; + var xml = ["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.5.0", + "MSXML2.DOMDocument.4.0","MSXML2.DOMDocument.3.0", + "MSXML2.DOMDocument.2.0","Microsoft.XMLDOM"]; + for (var i = 0, m = xml.length; i < m && !parser; i++) { + try { + parser = new ActiveXObject(xml[i]) + } catch (err) {} + } + return parser; + }, + // + // Create the parser using a DOMParser, or other fallback method + // + createParser: function () { + if (window.DOMParser) { + this.parser = new DOMParser(); + return(this.parseDOM); + } else if (window.ActiveXObject) { + this.parser = this.createMSParser(); + if (!this.parser) { + MathJax.Localization.Try(this.parserCreationError); + return(this.parseError); + } + this.parser.async = false; + return(this.parseMS); + } + this.div = MathJax.Hub.Insert(document.createElement("div"),{ + style:{visibility:"hidden", overflow:"hidden", height:"1px", + position:"absolute", top:0} + }); + if (!document.body.firstChild) {document.body.appendChild(this.div)} + else {document.body.insertBefore(this.div,document.body.firstChild)} + return(this.parseDIV); + }, + parserCreationError: function () { + alert(_("CantCreateXMLParser", + "MathJax can't create an XML parser for MathML. Check that\n"+ + "the 'Script ActiveX controls marked safe for scripting' security\n"+ + "setting is enabled (use the Internet Options item in the Tools\n"+ + "menu, and select the Security panel, then press the Custom Level\n"+ + "button to check this).\n\n"+ + "MathML equations will not be able to be processed by MathJax.")); + }, + // + // Initialize the parser object (whichever type is used) + // + Startup: function () { + MML = MathJax.ElementJax.mml; + MML.mspace.Augment({mmlSelfClosing: true}); + MML.none.Augment({mmlSelfClosing: true}); + MML.mprescripts.Augment({mmlSelfClosing:true}); + } + }); + + // + // Add the default pre-filter (for backward compatibility) + // + MATHML.prefilterHooks.Add(function (data) { + data.math = (typeof(data.math) === "string" ? + MATHML.prefilterMath(data.math,data.script) : + MATHML.prefilterMathML(data.math,data.script)); + }); + + MATHML.Parse.Entity = { + ApplyFunction: '\u2061', + Backslash: '\u2216', + Because: '\u2235', + Breve: '\u02D8', + Cap: '\u22D2', + CenterDot: '\u00B7', + CircleDot: '\u2299', + CircleMinus: '\u2296', + CirclePlus: '\u2295', + CircleTimes: '\u2297', + Congruent: '\u2261', + ContourIntegral: '\u222E', + Coproduct: '\u2210', + Cross: '\u2A2F', + Cup: '\u22D3', + CupCap: '\u224D', + Dagger: '\u2021', + Del: '\u2207', + Delta: '\u0394', + Diamond: '\u22C4', + DifferentialD: '\u2146', + DotEqual: '\u2250', + DoubleDot: '\u00A8', + DoubleRightTee: '\u22A8', + DoubleVerticalBar: '\u2225', + DownArrow: '\u2193', + DownLeftVector: '\u21BD', + DownRightVector: '\u21C1', + DownTee: '\u22A4', + Downarrow: '\u21D3', + Element: '\u2208', + EqualTilde: '\u2242', + Equilibrium: '\u21CC', + Exists: '\u2203', + ExponentialE: '\u2147', + FilledVerySmallSquare: '\u25AA', + ForAll: '\u2200', + Gamma: '\u0393', + Gg: '\u22D9', + GreaterEqual: '\u2265', + GreaterEqualLess: '\u22DB', + GreaterFullEqual: '\u2267', + GreaterLess: '\u2277', + GreaterSlantEqual: '\u2A7E', + GreaterTilde: '\u2273', + Hacek: '\u02C7', + Hat: '\u005E', + HumpDownHump: '\u224E', + HumpEqual: '\u224F', + Im: '\u2111', + ImaginaryI: '\u2148', + Integral: '\u222B', + Intersection: '\u22C2', + InvisibleComma: '\u2063', + InvisibleTimes: '\u2062', + Lambda: '\u039B', + Larr: '\u219E', + LeftAngleBracket: '\u27E8', + LeftArrow: '\u2190', + LeftArrowRightArrow: '\u21C6', + LeftCeiling: '\u2308', + LeftDownVector: '\u21C3', + LeftFloor: '\u230A', + LeftRightArrow: '\u2194', + LeftTee: '\u22A3', + LeftTriangle: '\u22B2', + LeftTriangleEqual: '\u22B4', + LeftUpVector: '\u21BF', + LeftVector: '\u21BC', + Leftarrow: '\u21D0', + Leftrightarrow: '\u21D4', + LessEqualGreater: '\u22DA', + LessFullEqual: '\u2266', + LessGreater: '\u2276', + LessSlantEqual: '\u2A7D', + LessTilde: '\u2272', + Ll: '\u22D8', + Lleftarrow: '\u21DA', + LongLeftArrow: '\u27F5', + LongLeftRightArrow: '\u27F7', + LongRightArrow: '\u27F6', + Longleftarrow: '\u27F8', + Longleftrightarrow: '\u27FA', + Longrightarrow: '\u27F9', + Lsh: '\u21B0', + MinusPlus: '\u2213', + NestedGreaterGreater: '\u226B', + NestedLessLess: '\u226A', + NotDoubleVerticalBar: '\u2226', + NotElement: '\u2209', + NotEqual: '\u2260', + NotExists: '\u2204', + NotGreater: '\u226F', + NotGreaterEqual: '\u2271', + NotLeftTriangle: '\u22EA', + NotLeftTriangleEqual: '\u22EC', + NotLess: '\u226E', + NotLessEqual: '\u2270', + NotPrecedes: '\u2280', + NotPrecedesSlantEqual: '\u22E0', + NotRightTriangle: '\u22EB', + NotRightTriangleEqual: '\u22ED', + NotSubsetEqual: '\u2288', + NotSucceeds: '\u2281', + NotSucceedsSlantEqual: '\u22E1', + NotSupersetEqual: '\u2289', + NotTilde: '\u2241', + NotVerticalBar: '\u2224', + Omega: '\u03A9', + OverBar: '\u203E', + OverBrace: '\u23DE', + PartialD: '\u2202', + Phi: '\u03A6', + Pi: '\u03A0', + PlusMinus: '\u00B1', + Precedes: '\u227A', + PrecedesEqual: '\u2AAF', + PrecedesSlantEqual: '\u227C', + PrecedesTilde: '\u227E', + Product: '\u220F', + Proportional: '\u221D', + Psi: '\u03A8', + Rarr: '\u21A0', + Re: '\u211C', + ReverseEquilibrium: '\u21CB', + RightAngleBracket: '\u27E9', + RightArrow: '\u2192', + RightArrowLeftArrow: '\u21C4', + RightCeiling: '\u2309', + RightDownVector: '\u21C2', + RightFloor: '\u230B', + RightTee: '\u22A2', + RightTeeArrow: '\u21A6', + RightTriangle: '\u22B3', + RightTriangleEqual: '\u22B5', + RightUpVector: '\u21BE', + RightVector: '\u21C0', + Rightarrow: '\u21D2', + Rrightarrow: '\u21DB', + Rsh: '\u21B1', + Sigma: '\u03A3', + SmallCircle: '\u2218', + Sqrt: '\u221A', + Square: '\u25A1', + SquareIntersection: '\u2293', + SquareSubset: '\u228F', + SquareSubsetEqual: '\u2291', + SquareSuperset: '\u2290', + SquareSupersetEqual: '\u2292', + SquareUnion: '\u2294', + Star: '\u22C6', + Subset: '\u22D0', + SubsetEqual: '\u2286', + Succeeds: '\u227B', + SucceedsEqual: '\u2AB0', + SucceedsSlantEqual: '\u227D', + SucceedsTilde: '\u227F', + SuchThat: '\u220B', + Sum: '\u2211', + Superset: '\u2283', + SupersetEqual: '\u2287', + Supset: '\u22D1', + Therefore: '\u2234', + Theta: '\u0398', + Tilde: '\u223C', + TildeEqual: '\u2243', + TildeFullEqual: '\u2245', + TildeTilde: '\u2248', + UnderBar: '\u005F', + UnderBrace: '\u23DF', + Union: '\u22C3', + UnionPlus: '\u228E', + UpArrow: '\u2191', + UpDownArrow: '\u2195', + UpTee: '\u22A5', + Uparrow: '\u21D1', + Updownarrow: '\u21D5', + Upsilon: '\u03A5', + Vdash: '\u22A9', + Vee: '\u22C1', + VerticalBar: '\u2223', + VerticalTilde: '\u2240', + Vvdash: '\u22AA', + Wedge: '\u22C0', + Xi: '\u039E', + acute: '\u00B4', + aleph: '\u2135', + alpha: '\u03B1', + amalg: '\u2A3F', + and: '\u2227', + ang: '\u2220', + angmsd: '\u2221', + angsph: '\u2222', + ape: '\u224A', + backprime: '\u2035', + backsim: '\u223D', + backsimeq: '\u22CD', + beta: '\u03B2', + beth: '\u2136', + between: '\u226C', + bigcirc: '\u25EF', + bigodot: '\u2A00', + bigoplus: '\u2A01', + bigotimes: '\u2A02', + bigsqcup: '\u2A06', + bigstar: '\u2605', + bigtriangledown: '\u25BD', + bigtriangleup: '\u25B3', + biguplus: '\u2A04', + blacklozenge: '\u29EB', + blacktriangle: '\u25B4', + blacktriangledown: '\u25BE', + blacktriangleleft: '\u25C2', + bowtie: '\u22C8', + boxdl: '\u2510', + boxdr: '\u250C', + boxminus: '\u229F', + boxplus: '\u229E', + boxtimes: '\u22A0', + boxul: '\u2518', + boxur: '\u2514', + bsol: '\u005C', + bull: '\u2022', + cap: '\u2229', + check: '\u2713', + chi: '\u03C7', + circ: '\u02C6', + circeq: '\u2257', + circlearrowleft: '\u21BA', + circlearrowright: '\u21BB', + circledR: '\u00AE', + circledS: '\u24C8', + circledast: '\u229B', + circledcirc: '\u229A', + circleddash: '\u229D', + clubs: '\u2663', + colon: '\u003A', + comp: '\u2201', + ctdot: '\u22EF', + cuepr: '\u22DE', + cuesc: '\u22DF', + cularr: '\u21B6', + cup: '\u222A', + curarr: '\u21B7', + curlyvee: '\u22CE', + curlywedge: '\u22CF', + dagger: '\u2020', + daleth: '\u2138', + ddarr: '\u21CA', + deg: '\u00B0', + delta: '\u03B4', + digamma: '\u03DD', + div: '\u00F7', + divideontimes: '\u22C7', + dot: '\u02D9', + doteqdot: '\u2251', + dotplus: '\u2214', + dotsquare: '\u22A1', + dtdot: '\u22F1', + ecir: '\u2256', + efDot: '\u2252', + egs: '\u2A96', + ell: '\u2113', + els: '\u2A95', + empty: '\u2205', + epsi: '\u03B5', + epsiv: '\u03F5', + erDot: '\u2253', + eta: '\u03B7', + eth: '\u00F0', + flat: '\u266D', + fork: '\u22D4', + frown: '\u2322', + gEl: '\u2A8C', + gamma: '\u03B3', + gap: '\u2A86', + gimel: '\u2137', + gnE: '\u2269', + gnap: '\u2A8A', + gne: '\u2A88', + gnsim: '\u22E7', + gt: '\u003E', + gtdot: '\u22D7', + harrw: '\u21AD', + hbar: '\u210F', + hellip: '\u2026', + hookleftarrow: '\u21A9', + hookrightarrow: '\u21AA', + imath: '\u0131', + infin: '\u221E', + intcal: '\u22BA', + iota: '\u03B9', + jmath: '\u0237', + kappa: '\u03BA', + kappav: '\u03F0', + lEg: '\u2A8B', + lambda: '\u03BB', + lap: '\u2A85', + larrlp: '\u21AB', + larrtl: '\u21A2', + lbrace: '\u007B', + lbrack: '\u005B', + le: '\u2264', + leftleftarrows: '\u21C7', + leftthreetimes: '\u22CB', + lessdot: '\u22D6', + lmoust: '\u23B0', + lnE: '\u2268', + lnap: '\u2A89', + lne: '\u2A87', + lnsim: '\u22E6', + longmapsto: '\u27FC', + looparrowright: '\u21AC', + lowast: '\u2217', + loz: '\u25CA', + lt: '\u003C', + ltimes: '\u22C9', + ltri: '\u25C3', + macr: '\u00AF', + malt: '\u2720', + mho: '\u2127', + mu: '\u03BC', + multimap: '\u22B8', + nLeftarrow: '\u21CD', + nLeftrightarrow: '\u21CE', + nRightarrow: '\u21CF', + nVDash: '\u22AF', + nVdash: '\u22AE', + natur: '\u266E', + nearr: '\u2197', + nharr: '\u21AE', + nlarr: '\u219A', + not: '\u00AC', + nrarr: '\u219B', + nu: '\u03BD', + nvDash: '\u22AD', + nvdash: '\u22AC', + nwarr: '\u2196', + omega: '\u03C9', + omicron: '\u03BF', + or: '\u2228', + osol: '\u2298', + period: '\u002E', + phi: '\u03C6', + phiv: '\u03D5', + pi: '\u03C0', + piv: '\u03D6', + prap: '\u2AB7', + precnapprox: '\u2AB9', + precneqq: '\u2AB5', + precnsim: '\u22E8', + prime: '\u2032', + psi: '\u03C8', + rarrtl: '\u21A3', + rbrace: '\u007D', + rbrack: '\u005D', + rho: '\u03C1', + rhov: '\u03F1', + rightrightarrows: '\u21C9', + rightthreetimes: '\u22CC', + ring: '\u02DA', + rmoust: '\u23B1', + rtimes: '\u22CA', + rtri: '\u25B9', + scap: '\u2AB8', + scnE: '\u2AB6', + scnap: '\u2ABA', + scnsim: '\u22E9', + sdot: '\u22C5', + searr: '\u2198', + sect: '\u00A7', + sharp: '\u266F', + sigma: '\u03C3', + sigmav: '\u03C2', + simne: '\u2246', + smile: '\u2323', + spades: '\u2660', + sub: '\u2282', + subE: '\u2AC5', + subnE: '\u2ACB', + subne: '\u228A', + supE: '\u2AC6', + supnE: '\u2ACC', + supne: '\u228B', + swarr: '\u2199', + tau: '\u03C4', + theta: '\u03B8', + thetav: '\u03D1', + tilde: '\u02DC', + times: '\u00D7', + triangle: '\u25B5', + triangleq: '\u225C', + upsi: '\u03C5', + upuparrows: '\u21C8', + veebar: '\u22BB', + vellip: '\u22EE', + weierp: '\u2118', + xi: '\u03BE', + yen: '\u00A5', + zeta: '\u03B6', + zigrarr: '\u21DD' + }; + + MATHML.loadComplete("jax.js"); + +})(MathJax.InputJax.MathML,MathJax.Hub.Browser); diff --git a/modules/MathJax/unpacked/jax/input/TeX/config.js b/modules/MathJax/unpacked/jax/input/TeX/config.js new file mode 100644 index 0000000..c9989fa --- /dev/null +++ b/modules/MathJax/unpacked/jax/input/TeX/config.js @@ -0,0 +1,52 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/input/TeX/config.js + * + * Initializes the TeX InputJax (the main definition is in + * MathJax/jax/input/TeX/jax.js, which is loaded when needed). + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.InputJax.TeX = MathJax.InputJax({ + id: "TeX", + version: "2.3", + directory: MathJax.InputJax.directory + "/TeX", + extensionDir: MathJax.InputJax.extensionDir + "/TeX", + + config: { + TagSide: "right", + TagIndent: "0.8em", + MultLineWidth: "85%", + + equationNumbers: { + autoNumber: "none", // "AMS" for standard AMS numbering, + // or "all" for all displayed equations + formatNumber: function (n) {return n}, + formatTag: function (n) {return '('+n+')'}, + formatID: function (n) {return 'mjx-eqn-'+String(n).replace(/[:"'<>&]/g,"")}, + formatURL: function (id) {return '#'+escape(id)}, + useLabelIds: true + } + } +}); +MathJax.InputJax.TeX.Register("math/tex"); + +MathJax.InputJax.TeX.loadComplete("config.js"); diff --git a/modules/MathJax/unpacked/jax/input/TeX/jax.js b/modules/MathJax/unpacked/jax/input/TeX/jax.js new file mode 100644 index 0000000..3b71a11 --- /dev/null +++ b/modules/MathJax/unpacked/jax/input/TeX/jax.js @@ -0,0 +1,2177 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/input/TeX/jax.js + * + * Implements the TeX InputJax that reads mathematics in + * TeX and LaTeX format and converts it to the MML ElementJax + * internal format. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (TEX,HUB,AJAX) { + var MML, NBSP = "\u00A0"; + + var _ = function (id) { + return MathJax.Localization._.apply(MathJax.Localization, + [["TeX", id]].concat([].slice.call(arguments,1))); + }; + + var STACK = MathJax.Object.Subclass({ + Init: function (env,inner) { + this.global = {isInner: inner}; + this.data = [STACKITEM.start(this.global)]; + if (env) {this.data[0].env = env} + this.env = this.data[0].env; + }, + Push: function () { + var i, m, item, top; + for (i = 0, m = arguments.length; i < m; i++) { + item = arguments[i]; + if (item instanceof MML.mbase) {item = STACKITEM.mml(item)} + item.global = this.global; + top = (this.data.length ? this.Top().checkItem(item) : true); + if (top instanceof Array) {this.Pop(); this.Push.apply(this,top)} + else if (top instanceof STACKITEM) {this.Pop(); this.Push(top)} + else if (top) { + this.data.push(item); + if (item.env) { + for (var id in this.env) + {if (this.env.hasOwnProperty(id)) {item.env[id] = this.env[id]}} + this.env = item.env; + } else {item.env = this.env} + } + } + }, + Pop: function () { + var item = this.data.pop(); if (!item.isOpen) {delete item.env} + this.env = (this.data.length ? this.Top().env : {}); + return item; + }, + Top: function (n) { + if (n == null) {n = 1} + if (this.data.length < n) {return null} + return this.data[this.data.length-n]; + }, + Prev: function (noPop) { + var top = this.Top(); + if (noPop) {return top.data[top.data.length-1]} + else {return top.Pop()} + }, + toString: function () {return "stack[\n "+this.data.join("\n ")+"\n]"} + }); + + var STACKITEM = STACK.Item = MathJax.Object.Subclass({ + type: "base", + endError: /*_()*/ ["ExtraOpenMissingClose","Extra open brace or missing close brace"], + closeError: /*_()*/ ["ExtraCloseMissingOpen","Extra close brace or missing open brace"], + rightError: /*_()*/ ["MissingLeftExtraRight","Missing \\left or extra \\right"], + Init: function () { + if (this.isOpen) {this.env = {}} + this.data = []; + this.Push.apply(this,arguments); + }, + Push: function () {this.data.push.apply(this.data,arguments)}, + Pop: function () {return this.data.pop()}, + mmlData: function (inferred,forceRow) { + if (inferred == null) {inferred = true} + if (this.data.length === 1 && !forceRow) {return this.data[0]} + return MML.mrow.apply(MML,this.data).With((inferred ? {inferred: true}: {})); + }, + checkItem: function (item) { + if (item.type === "over" && this.isOpen) {item.num = this.mmlData(false); this.data = []} + if (item.type === "cell" && this.isOpen) { + if (item.linebreak) {return false} + TEX.Error(["Misplaced","Misplaced %1",item.name]); + } + if (item.isClose && this[item.type+"Error"]) {TEX.Error(this[item.type+"Error"])} + if (!item.isNotStack) {return true} + this.Push(item.data[0]); return false; + }, + With: function (def) { + for (var id in def) {if (def.hasOwnProperty(id)) {this[id] = def[id]}} + return this; + }, + toString: function () {return this.type+"["+this.data.join("; ")+"]"} + }); + + STACKITEM.start = STACKITEM.Subclass({ + type: "start", isOpen: true, + Init: function (global) { + this.SUPER(arguments).Init.call(this); + this.global = global; + }, + checkItem: function (item) { + if (item.type === "stop") {return STACKITEM.mml(this.mmlData())} + return this.SUPER(arguments).checkItem.call(this,item); + } + }); + + STACKITEM.stop = STACKITEM.Subclass({ + type: "stop", isClose: true + }); + + STACKITEM.open = STACKITEM.Subclass({ + type: "open", isOpen: true, + stopError: /*_()*/ ["ExtraOpenMissingClose","Extra open brace or missing close brace"], + checkItem: function (item) { + if (item.type === "close") { + var mml = this.mmlData(); + return STACKITEM.mml(MML.TeXAtom(mml)); // TeXAtom make it an ORD to prevent spacing (FIXME: should be another way) + } + return this.SUPER(arguments).checkItem.call(this,item); + } + }); + + STACKITEM.close = STACKITEM.Subclass({ + type: "close", isClose: true + }); + + STACKITEM.prime = STACKITEM.Subclass({ + type: "prime", + checkItem: function (item) { + if (this.data[0].type !== "msubsup") + {return [MML.msup(this.data[0],this.data[1]),item]} + this.data[0].SetData(this.data[0].sup,this.data[1]); + return [this.data[0],item]; + } + }); + + STACKITEM.subsup = STACKITEM.Subclass({ + type: "subsup", + stopError: /*_()*/ ["MissingScript","Missing superscript or subscript argument"], + supError: /*_()*/ ["MissingOpenForSup","Missing open brace for superscript"], + subError: /*_()*/ ["MissingOpenForSub","Missing open brace for subscript"], + checkItem: function (item) { + if (item.type === "open" || item.type === "left") {return true} + if (item.type === "mml") { + if (this.primes) { + if (this.position !== 2) {this.data[0].SetData(2,this.primes)} + else {item.data[0] = MML.mrow(this.primes.With({variantForm:true}),item.data[0])} + } + this.data[0].SetData(this.position,item.data[0]); + return STACKITEM.mml(this.data[0]); + } + if (this.SUPER(arguments).checkItem.call(this,item)) + {TEX.Error(this[["","subError","supError"][this.position]])} + }, + Pop: function () {} + }); + + STACKITEM.over = STACKITEM.Subclass({ + type: "over", isClose: true, name: "\\over", + checkItem: function (item,stack) { + if (item.type === "over") + {TEX.Error(["AmbiguousUseOf","Ambiguous use of %1",item.name])} + if (item.isClose) { + var mml = MML.mfrac(this.num,this.mmlData(false)); + if (this.thickness != null) {mml.linethickness = this.thickness} + if (this.open || this.close) { + mml.texClass = MML.TEXCLASS.INNER; + mml.texWithDelims = true; + mml = TEX.fenced(this.open,mml,this.close); + } + return [STACKITEM.mml(mml), item]; + } + return this.SUPER(arguments).checkItem.call(this,item); + }, + toString: function () {return "over["+this.num+" / "+this.data.join("; ")+"]"} + }); + + STACKITEM.left = STACKITEM.Subclass({ + type: "left", isOpen: true, delim: '(', + stopError: /*_()*/ ["ExtraLeftMissingRight", "Extra \\left or missing \\right"], + checkItem: function (item) { + if (item.type === "right") + {return STACKITEM.mml(TEX.fenced(this.delim,this.mmlData(),item.delim))} + return this.SUPER(arguments).checkItem.call(this,item); + } + }); + + STACKITEM.right = STACKITEM.Subclass({ + type: "right", isClose: true, delim: ')' + }); + + STACKITEM.begin = STACKITEM.Subclass({ + type: "begin", isOpen: true, + checkItem: function (item) { + if (item.type === "end") { + if (item.name !== this.name) + {TEX.Error(["EnvBadEnd","\\begin{%1} ended with \\end{%2}",this.name,item.name])} + if (!this.end) {return STACKITEM.mml(this.mmlData())} + return this.parse[this.end].call(this.parse,this,this.data); + } + if (item.type === "stop") + {TEX.Error(["EnvMissingEnd","Missing \\end{%1}",this.name])} + return this.SUPER(arguments).checkItem.call(this,item); + } + }); + + STACKITEM.end = STACKITEM.Subclass({ + type: "end", isClose: true + }); + + STACKITEM.style = STACKITEM.Subclass({ + type: "style", + checkItem: function (item) { + if (!item.isClose) {return this.SUPER(arguments).checkItem.call(this,item)} + var mml = MML.mstyle.apply(MML,this.data).With(this.styles); + return [STACKITEM.mml(mml),item]; + } + }); + + STACKITEM.position = STACKITEM.Subclass({ + type: "position", + checkItem: function (item) { + if (item.isClose) {TEX.Error(["MissingBoxFor","Missing box for %1",this.name])} + if (item.isNotStack) { + var mml = item.mmlData(); + switch (this.move) { + case 'vertical': + mml = MML.mpadded(mml).With({height: this.dh, depth: this.dd, voffset: this.dh}); + return [STACKITEM.mml(mml)]; + case 'horizontal': + return [STACKITEM.mml(this.left),item,STACKITEM.mml(this.right)]; + } + } + return this.SUPER(arguments).checkItem.call(this,item); + } + }); + + STACKITEM.array = STACKITEM.Subclass({ + type: "array", isOpen: true, arraydef: {}, + Init: function () { + this.table = []; this.row = []; this.env = {}; this.frame = [] + this.SUPER(arguments).Init.apply(this,arguments); + }, + checkItem: function (item) { + if (item.isClose && item.type !== "over") { + if (item.isEntry) {this.EndEntry(); this.clearEnv(); return false} + if (item.isCR) {this.EndEntry(); this.EndRow(); this.clearEnv(); return false} + this.EndTable(); this.clearEnv(); + var mml = MML.mtable.apply(MML,this.table).With(this.arraydef); + if (this.frame.length === 4) { + mml.frame = (this.frame.dashed ? "dashed" : "solid"); + } else if (this.frame.length) { + mml.hasFrame = true; + if (this.arraydef.rowlines) {this.arraydef.rowlines = this.arraydef.rowlines.replace(/none( none)+$/,"none")} + mml = MML.menclose(mml).With({notation: this.frame.join(" "), isFrame: true}); + if ((this.arraydef.columnlines||"none") != "none" || + (this.arraydef.rowlines||"none") != "none") {mml.padding = 0} // HTML-CSS jax implements this + } + if (this.open || this.close) {mml = TEX.fenced(this.open,mml,this.close)} + mml = STACKITEM.mml(mml); + if (this.requireClose) { + if (item.type === 'close') {return mml} + TEX.Error(["MissingCloseBrace","Missing close brace"]); + } + return [mml,item]; + } + return this.SUPER(arguments).checkItem.call(this,item); + }, + EndEntry: function () {this.row.push(MML.mtd.apply(MML,this.data)); this.data = []}, + EndRow: function () {this.table.push(MML.mtr.apply(MML,this.row)); this.row = []}, + EndTable: function () { + if (this.data.length || this.row.length) {this.EndEntry(); this.EndRow()} + this.checkLines(); + }, + checkLines: function () { + if (this.arraydef.rowlines) { + var lines = this.arraydef.rowlines.split(/ /); + if (lines.length === this.table.length) { + this.frame.push("bottom"); lines.pop(); + this.arraydef.rowlines = lines.join(' '); + } else if (lines.length < this.table.length-1) { + this.arraydef.rowlines += " none"; + } + } + if (this.rowspacing) { + var rows = this.arraydef.rowspacing.split(/ /); + while (rows.length < this.table.length) {rows.push(this.rowspacing+"em")} + this.arraydef.rowspacing = rows.join(' '); + } + }, + clearEnv: function () { + for (var id in this.env) {if (this.env.hasOwnProperty(id)) {delete this.env[id]}} + } + }); + + STACKITEM.cell = STACKITEM.Subclass({ + type: "cell", isClose: true + }); + + STACKITEM.mml = STACKITEM.Subclass({ + type: "mml", isNotStack: true, + Add: function () {this.data.push.apply(this.data,arguments); return this} + }); + + STACKITEM.fn = STACKITEM.Subclass({ + type: "fn", + checkItem: function (item) { + if (this.data[0]) { + if (item.type !== "mml" || !item.data[0]) {return [this.data[0],item]} + if (item.data[0].isa(MML.mspace)) {return [this.data[0],item]} + var mml = item.data[0]; if (mml.isEmbellished()) {mml = mml.CoreMO()} + if ([0,0,1,1,0,1,1,0,0,0][mml.Get("texClass")]) {return [this.data[0],item]} + return [this.data[0],MML.mo(MML.entity("#x2061")).With({texClass:MML.TEXCLASS.NONE}),item]; + } + return this.SUPER(arguments).checkItem.apply(this,arguments); + } + }); + + STACKITEM.not = STACKITEM.Subclass({ + type: "not", + checkItem: function (item) { + var mml, c; + if (item.type === "open" || item.type === "left") {return true} + if (item.type === "mml" && item.data[0].type.match(/^(mo|mi|mtext)$/)) { + mml = item.data[0], c = mml.data.join(""); + if (c.length === 1 && !mml.movesupsub) { + c = STACKITEM.not.remap[c.charCodeAt(0)]; + if (c) {mml.SetData(0,MML.chars(String.fromCharCode(c)))} + else {mml.Append(MML.chars("\u0338"))} + return item; + } + } + // \mathrel{\rlap{\notChar}} + mml = MML.mpadded(MML.mtext("\u29F8")).With({width:0}); + mml = MML.TeXAtom(mml).With({texClass:MML.TEXCLASS.REL}); + return [mml,item]; + } + }); + STACKITEM.not.remap = { + 0x2190:0x219A, 0x2192:0x219B, 0x2194:0x21AE, + 0x21D0:0x21CD, 0x21D2:0x21CF, 0x21D4:0x21CE, + 0x2208:0x2209, 0x220B:0x220C, 0x2223:0x2224, 0x2225:0x2226, + 0x223C:0x2241, 0x007E:0x2241, 0x2243:0x2244, 0x2245:0x2247, + 0x2248:0x2249, 0x224D:0x226D, 0x003D:0x2260, 0x2261:0x2262, + 0x003C:0x226E, 0x003E:0x226F, 0x2264:0x2270, 0x2265:0x2271, + 0x2272:0x2274, 0x2273:0x2275, 0x2276:0x2278, 0x2277:0x2279, + 0x227A:0x2280, 0x227B:0x2281, 0x2282:0x2284, 0x2283:0x2285, + 0x2286:0x2288, 0x2287:0x2289, 0x22A2:0x22AC, 0x22A8:0x22AD, + 0x22A9:0x22AE, 0x22AB:0x22AF, 0x227C:0x22E0, 0x227D:0x22E1, + 0x2291:0x22E2, 0x2292:0x22E3, 0x22B2:0x22EA, 0x22B3:0x22EB, + 0x22B4:0x22EC, 0x22B5:0x22ED, 0x2203:0x2204 + }; + + STACKITEM.dots = STACKITEM.Subclass({ + type: "dots", + checkItem: function (item) { + if (item.type === "open" || item.type === "left") {return true} + var dots = this.ldots; + if (item.type === "mml" && item.data[0].isEmbellished()) { + var tclass = item.data[0].CoreMO().Get("texClass"); + if (tclass === MML.TEXCLASS.BIN || tclass === MML.TEXCLASS.REL) {dots = this.cdots} + } + return [dots,item]; + } + }); + + + var TEXDEF = { + // + // Add new definitions without overriding user-defined ones + // + Add: function (src,dst,nouser) { + if (!dst) {dst = this} + for (var id in src) {if (src.hasOwnProperty(id)) { + if (typeof src[id] === 'object' && !(src[id] instanceof Array) && + (typeof dst[id] === 'object' || typeof dst[id] === 'function')) + {this.Add(src[id],dst[id],src[id],nouser)} + else if (!dst[id] || !dst[id].isUser || !nouser) {dst[id] = src[id]} + }} + return dst; + } + }; + var STARTUP = function () { + MML = MathJax.ElementJax.mml; + HUB.Insert(TEXDEF,{ + + // patterns for letters and numbers + letter: /[a-z]/i, + digit: /[0-9.]/, + number: /^(?:[0-9]+(?:\{,\}[0-9]{3})*(?:\.[0-9]*)*|\.[0-9]+)/, + + special: { + '\\': 'ControlSequence', + '{': 'Open', + '}': 'Close', + '~': 'Tilde', + '^': 'Superscript', + '_': 'Subscript', + ' ': 'Space', + "\t": 'Space', + "\r": 'Space', + "\n": 'Space', + "'": 'Prime', + '%': 'Comment', + '&': 'Entry', + '#': 'Hash', + '\u2019': 'Prime' + }, + + remap: { + '-': '2212', + '*': '2217', + '`': '2018' // map ` to back quote + }, + + mathchar0mi: { + // Lower-case greek + alpha: '03B1', + beta: '03B2', + gamma: '03B3', + delta: '03B4', + epsilon: '03F5', + zeta: '03B6', + eta: '03B7', + theta: '03B8', + iota: '03B9', + kappa: '03BA', + lambda: '03BB', + mu: '03BC', + nu: '03BD', + xi: '03BE', + omicron: '03BF', // added for completeness + pi: '03C0', + rho: '03C1', + sigma: '03C3', + tau: '03C4', + upsilon: '03C5', + phi: '03D5', + chi: '03C7', + psi: '03C8', + omega: '03C9', + varepsilon: '03B5', + vartheta: '03D1', + varpi: '03D6', + varrho: '03F1', + varsigma: '03C2', + varphi: '03C6', + + // Ord symbols + S: ['00A7',{mathvariant: MML.VARIANT.NORMAL}], + aleph: ['2135',{mathvariant: MML.VARIANT.NORMAL}], + hbar: ['210F',{variantForm:true}], + imath: '0131', + jmath: '0237', + ell: '2113', + wp: ['2118',{mathvariant: MML.VARIANT.NORMAL}], + Re: ['211C',{mathvariant: MML.VARIANT.NORMAL}], + Im: ['2111',{mathvariant: MML.VARIANT.NORMAL}], + partial: ['2202',{mathvariant: MML.VARIANT.NORMAL}], + infty: ['221E',{mathvariant: MML.VARIANT.NORMAL}], + prime: ['2032',{mathvariant: MML.VARIANT.NORMAL, variantForm:true}], + emptyset: ['2205',{mathvariant: MML.VARIANT.NORMAL}], + nabla: ['2207',{mathvariant: MML.VARIANT.NORMAL}], + top: ['22A4',{mathvariant: MML.VARIANT.NORMAL}], + bot: ['22A5',{mathvariant: MML.VARIANT.NORMAL}], + angle: ['2220',{mathvariant: MML.VARIANT.NORMAL}], + triangle: ['25B3',{mathvariant: MML.VARIANT.NORMAL}], + backslash: ['2216',{mathvariant: MML.VARIANT.NORMAL, variantForm:true}], + forall: ['2200',{mathvariant: MML.VARIANT.NORMAL}], + exists: ['2203',{mathvariant: MML.VARIANT.NORMAL}], + neg: ['00AC',{mathvariant: MML.VARIANT.NORMAL}], + lnot: ['00AC',{mathvariant: MML.VARIANT.NORMAL}], + flat: ['266D',{mathvariant: MML.VARIANT.NORMAL}], + natural: ['266E',{mathvariant: MML.VARIANT.NORMAL}], + sharp: ['266F',{mathvariant: MML.VARIANT.NORMAL}], + clubsuit: ['2663',{mathvariant: MML.VARIANT.NORMAL}], + diamondsuit: ['2662',{mathvariant: MML.VARIANT.NORMAL}], + heartsuit: ['2661',{mathvariant: MML.VARIANT.NORMAL}], + spadesuit: ['2660',{mathvariant: MML.VARIANT.NORMAL}] + }, + + mathchar0mo: { + surd: '221A', + + // big ops + coprod: ['2210',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + bigvee: ['22C1',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + bigwedge: ['22C0',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + biguplus: ['2A04',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + bigcap: ['22C2',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + bigcup: ['22C3',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + 'int': ['222B',{texClass: MML.TEXCLASS.OP}], + intop: ['222B',{texClass: MML.TEXCLASS.OP, movesupsub:true, movablelimits:true}], + iint: ['222C',{texClass: MML.TEXCLASS.OP}], + iiint: ['222D',{texClass: MML.TEXCLASS.OP}], + prod: ['220F',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + sum: ['2211',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + bigotimes: ['2A02',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + bigoplus: ['2A01',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + bigodot: ['2A00',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + oint: ['222E',{texClass: MML.TEXCLASS.OP}], + bigsqcup: ['2A06',{texClass: MML.TEXCLASS.OP, movesupsub:true}], + smallint: ['222B',{largeop:false}], + + // binary operations + triangleleft: '25C3', + triangleright: '25B9', + bigtriangleup: '25B3', + bigtriangledown: '25BD', + wedge: '2227', + land: '2227', + vee: '2228', + lor: '2228', + cap: '2229', + cup: '222A', + ddagger: '2021', + dagger: '2020', + sqcap: '2293', + sqcup: '2294', + uplus: '228E', + amalg: '2A3F', + diamond: '22C4', + bullet: '2219', + wr: '2240', + div: '00F7', + odot: ['2299',{largeop: false}], + oslash: ['2298',{largeop: false}], + otimes: ['2297',{largeop: false}], + ominus: ['2296',{largeop: false}], + oplus: ['2295',{largeop: false}], + mp: '2213', + pm: '00B1', + circ: '2218', + bigcirc: '25EF', + setminus: ['2216',{variantForm:true}], + cdot: '22C5', + ast: '2217', + times: '00D7', + star: '22C6', + + // Relations + propto: '221D', + sqsubseteq: '2291', + sqsupseteq: '2292', + parallel: '2225', + mid: '2223', + dashv: '22A3', + vdash: '22A2', + leq: '2264', + le: '2264', + geq: '2265', + ge: '2265', + lt: '003C', + gt: '003E', + succ: '227B', + prec: '227A', + approx: '2248', + succeq: '2AB0', // or '227C', + preceq: '2AAF', // or '227D', + supset: '2283', + subset: '2282', + supseteq: '2287', + subseteq: '2286', + 'in': '2208', + ni: '220B', + notin: '2209', + owns: '220B', + gg: '226B', + ll: '226A', + sim: '223C', + simeq: '2243', + perp: '22A5', + equiv: '2261', + asymp: '224D', + smile: '2323', + frown: '2322', + ne: '2260', + neq: '2260', + cong: '2245', + doteq: '2250', + bowtie: '22C8', + models: '22A8', + + notChar: '29F8', + + + // Arrows + Leftrightarrow: '21D4', + Leftarrow: '21D0', + Rightarrow: '21D2', + leftrightarrow: '2194', + leftarrow: '2190', + gets: '2190', + rightarrow: '2192', + to: '2192', + mapsto: '21A6', + leftharpoonup: '21BC', + leftharpoondown: '21BD', + rightharpoonup: '21C0', + rightharpoondown: '21C1', + nearrow: '2197', + searrow: '2198', + nwarrow: '2196', + swarrow: '2199', + rightleftharpoons: '21CC', + hookrightarrow: '21AA', + hookleftarrow: '21A9', + longleftarrow: '27F5', + Longleftarrow: '27F8', + longrightarrow: '27F6', + Longrightarrow: '27F9', + Longleftrightarrow: '27FA', + longleftrightarrow: '27F7', + longmapsto: '27FC', + + + // Misc. + ldots: '2026', + cdots: '22EF', + vdots: '22EE', + ddots: '22F1', + dotsc: '2026', // dots with commas + dotsb: '22EF', // dots with binary ops and relations + dotsm: '22EF', // dots with multiplication + dotsi: '22EF', // dots with integrals + dotso: '2026', // other dots + + ldotp: ['002E', {texClass: MML.TEXCLASS.PUNCT}], + cdotp: ['22C5', {texClass: MML.TEXCLASS.PUNCT}], + colon: ['003A', {texClass: MML.TEXCLASS.PUNCT}] + }, + + mathchar7: { + Gamma: '0393', + Delta: '0394', + Theta: '0398', + Lambda: '039B', + Xi: '039E', + Pi: '03A0', + Sigma: '03A3', + Upsilon: '03A5', + Phi: '03A6', + Psi: '03A8', + Omega: '03A9', + + '_': '005F', + '#': '0023', + '$': '0024', + '%': '0025', + '&': '0026', + And: '0026' + }, + + delimiter: { + '(': '(', + ')': ')', + '[': '[', + ']': ']', + '<': '27E8', + '>': '27E9', + '\\lt': '27E8', + '\\gt': '27E9', + '/': '/', + '|': ['|',{texClass:MML.TEXCLASS.ORD}], + '.': '', + '\\\\': '\\', + '\\lmoustache': '23B0', // non-standard + '\\rmoustache': '23B1', // non-standard + '\\lgroup': '27EE', // non-standard + '\\rgroup': '27EF', // non-standard + '\\arrowvert': '23D0', + '\\Arrowvert': '2016', + '\\bracevert': '23AA', // non-standard + '\\Vert': ['2225',{texClass:MML.TEXCLASS.ORD}], + '\\|': ['2225',{texClass:MML.TEXCLASS.ORD}], + '\\vert': ['|',{texClass:MML.TEXCLASS.ORD}], + '\\uparrow': '2191', + '\\downarrow': '2193', + '\\updownarrow': '2195', + '\\Uparrow': '21D1', + '\\Downarrow': '21D3', + '\\Updownarrow': '21D5', + '\\backslash': '\\', + '\\rangle': '27E9', + '\\langle': '27E8', + '\\rbrace': '}', + '\\lbrace': '{', + '\\}': '}', + '\\{': '{', + '\\rceil': '2309', + '\\lceil': '2308', + '\\rfloor': '230B', + '\\lfloor': '230A', + '\\lbrack': '[', + '\\rbrack': ']' + }, + + macros: { + displaystyle: ['SetStyle','D',true,0], + textstyle: ['SetStyle','T',false,0], + scriptstyle: ['SetStyle','S',false,1], + scriptscriptstyle: ['SetStyle','SS',false,2], + + rm: ['SetFont',MML.VARIANT.NORMAL], + mit: ['SetFont',MML.VARIANT.ITALIC], + oldstyle: ['SetFont',MML.VARIANT.OLDSTYLE], + cal: ['SetFont',MML.VARIANT.CALIGRAPHIC], + it: ['SetFont',"-tex-mathit"], // needs special handling + bf: ['SetFont',MML.VARIANT.BOLD], + bbFont: ['SetFont',MML.VARIANT.DOUBLESTRUCK], + scr: ['SetFont',MML.VARIANT.SCRIPT], + frak: ['SetFont',MML.VARIANT.FRAKTUR], + sf: ['SetFont',MML.VARIANT.SANSSERIF], + tt: ['SetFont',MML.VARIANT.MONOSPACE], + +// font: + + tiny: ['SetSize',0.5], + Tiny: ['SetSize',0.6], // non-standard + scriptsize: ['SetSize',0.7], + small: ['SetSize',0.85], + normalsize: ['SetSize',1.0], + large: ['SetSize',1.2], + Large: ['SetSize',1.44], + LARGE: ['SetSize',1.73], + huge: ['SetSize',2.07], + Huge: ['SetSize',2.49], + + arcsin: ['NamedFn'], + arccos: ['NamedFn'], + arctan: ['NamedFn'], + arg: ['NamedFn'], + cos: ['NamedFn'], + cosh: ['NamedFn'], + cot: ['NamedFn'], + coth: ['NamedFn'], + csc: ['NamedFn'], + deg: ['NamedFn'], + det: 'NamedOp', + dim: ['NamedFn'], + exp: ['NamedFn'], + gcd: 'NamedOp', + hom: ['NamedFn'], + inf: 'NamedOp', + ker: ['NamedFn'], + lg: ['NamedFn'], + lim: 'NamedOp', + liminf: ['NamedOp','lim inf'], + limsup: ['NamedOp','lim sup'], + ln: ['NamedFn'], + log: ['NamedFn'], + max: 'NamedOp', + min: 'NamedOp', + Pr: 'NamedOp', + sec: ['NamedFn'], + sin: ['NamedFn'], + sinh: ['NamedFn'], + sup: 'NamedOp', + tan: ['NamedFn'], + tanh: ['NamedFn'], + + limits: ['Limits',1], + nolimits: ['Limits',0], + + overline: ['UnderOver','00AF'], + underline: ['UnderOver','005F'], + overbrace: ['UnderOver','23DE',1], + underbrace: ['UnderOver','23DF',1], + overrightarrow: ['UnderOver','2192'], + underrightarrow: ['UnderOver','2192'], + overleftarrow: ['UnderOver','2190'], + underleftarrow: ['UnderOver','2190'], + overleftrightarrow: ['UnderOver','2194'], + underleftrightarrow: ['UnderOver','2194'], + + overset: 'Overset', + underset: 'Underset', + stackrel: ['Macro','\\mathrel{\\mathop{#2}\\limits^{#1}}',2], + + over: 'Over', + overwithdelims: 'Over', + atop: 'Over', + atopwithdelims: 'Over', + above: 'Over', + abovewithdelims: 'Over', + brace: ['Over','{','}'], + brack: ['Over','[',']'], + choose: ['Over','(',')'], + + frac: 'Frac', + sqrt: 'Sqrt', + root: 'Root', + uproot: ['MoveRoot','upRoot'], + leftroot: ['MoveRoot','leftRoot'], + + left: 'LeftRight', + right: 'LeftRight', + middle: 'Middle', + + llap: 'Lap', + rlap: 'Lap', + raise: 'RaiseLower', + lower: 'RaiseLower', + moveleft: 'MoveLeftRight', + moveright: 'MoveLeftRight', + + ',': ['Spacer',MML.LENGTH.THINMATHSPACE], + ':': ['Spacer',MML.LENGTH.MEDIUMMATHSPACE], // for LaTeX + '>': ['Spacer',MML.LENGTH.MEDIUMMATHSPACE], + ';': ['Spacer',MML.LENGTH.THICKMATHSPACE], + '!': ['Spacer',MML.LENGTH.NEGATIVETHINMATHSPACE], + enspace: ['Spacer',".5em"], + quad: ['Spacer',"1em"], + qquad: ['Spacer',"2em"], + thinspace: ['Spacer',MML.LENGTH.THINMATHSPACE], + negthinspace: ['Spacer',MML.LENGTH.NEGATIVETHINMATHSPACE], + + hskip: 'Hskip', + hspace: 'Hskip', + kern: 'Hskip', + mskip: 'Hskip', + mspace: 'Hskip', + mkern: 'Hskip', + Rule: ['Rule'], + Space: ['Rule','blank'], + + big: ['MakeBig',MML.TEXCLASS.ORD,0.85], + Big: ['MakeBig',MML.TEXCLASS.ORD,1.15], + bigg: ['MakeBig',MML.TEXCLASS.ORD,1.45], + Bigg: ['MakeBig',MML.TEXCLASS.ORD,1.75], + bigl: ['MakeBig',MML.TEXCLASS.OPEN,0.85], + Bigl: ['MakeBig',MML.TEXCLASS.OPEN,1.15], + biggl: ['MakeBig',MML.TEXCLASS.OPEN,1.45], + Biggl: ['MakeBig',MML.TEXCLASS.OPEN,1.75], + bigr: ['MakeBig',MML.TEXCLASS.CLOSE,0.85], + Bigr: ['MakeBig',MML.TEXCLASS.CLOSE,1.15], + biggr: ['MakeBig',MML.TEXCLASS.CLOSE,1.45], + Biggr: ['MakeBig',MML.TEXCLASS.CLOSE,1.75], + bigm: ['MakeBig',MML.TEXCLASS.REL,0.85], + Bigm: ['MakeBig',MML.TEXCLASS.REL,1.15], + biggm: ['MakeBig',MML.TEXCLASS.REL,1.45], + Biggm: ['MakeBig',MML.TEXCLASS.REL,1.75], + + mathord: ['TeXAtom',MML.TEXCLASS.ORD], + mathop: ['TeXAtom',MML.TEXCLASS.OP], + mathopen: ['TeXAtom',MML.TEXCLASS.OPEN], + mathclose: ['TeXAtom',MML.TEXCLASS.CLOSE], + mathbin: ['TeXAtom',MML.TEXCLASS.BIN], + mathrel: ['TeXAtom',MML.TEXCLASS.REL], + mathpunct: ['TeXAtom',MML.TEXCLASS.PUNCT], + mathinner: ['TeXAtom',MML.TEXCLASS.INNER], + + vcenter: ['TeXAtom',MML.TEXCLASS.VCENTER], + + mathchoice: ['Extension','mathchoice'], + buildrel: 'BuildRel', + + hbox: ['HBox',0], + text: 'HBox', + mbox: ['HBox',0], + fbox: 'FBox', + + strut: 'Strut', + mathstrut: ['Macro','\\vphantom{(}'], + phantom: 'Phantom', + vphantom: ['Phantom',1,0], + hphantom: ['Phantom',0,1], + smash: 'Smash', + + acute: ['Accent', "00B4"], // or 0301 or 02CA + grave: ['Accent', "0060"], // or 0300 or 02CB + ddot: ['Accent', "00A8"], // or 0308 + tilde: ['Accent', "007E"], // or 0303 or 02DC + bar: ['Accent', "00AF"], // or 0304 or 02C9 + breve: ['Accent', "02D8"], // or 0306 + check: ['Accent', "02C7"], // or 030C + hat: ['Accent', "005E"], // or 0302 or 02C6 + vec: ['Accent', "2192"], // or 20D7 + dot: ['Accent', "02D9"], // or 0307 + widetilde: ['Accent', "007E",1], // or 0303 or 02DC + widehat: ['Accent', "005E",1], // or 0302 or 02C6 + + matrix: 'Matrix', + array: 'Matrix', + pmatrix: ['Matrix','(',')'], + cases: ['Matrix','{','',"left left",null,".1em",null,true], + eqalign: ['Matrix',null,null,"right left",MML.LENGTH.THICKMATHSPACE,".5em",'D'], + displaylines: ['Matrix',null,null,"center",null,".5em",'D'], + cr: 'Cr', + '\\': 'CrLaTeX', + newline: 'Cr', + hline: ['HLine','solid'], + hdashline: ['HLine','dashed'], +// noalign: 'HandleNoAlign', + eqalignno: ['Matrix',null,null,"right left right",MML.LENGTH.THICKMATHSPACE+" 3em",".5em",'D'], + leqalignno: ['Matrix',null,null,"right left right",MML.LENGTH.THICKMATHSPACE+" 3em",".5em",'D'], + + // TeX substitution macros + bmod: ['Macro','\\mathbin{\\mmlToken{mo}{mod}}'], + pmod: ['Macro','\\pod{\\mmlToken{mi}{mod}\\kern 6mu #1}',1], + mod: ['Macro','\\mathchoice{\\kern18mu}{\\kern12mu}{\\kern12mu}{\\kern12mu}\\mmlToken{mi}{mod}\\,\\,#1',1], + pod: ['Macro','\\mathchoice{\\kern18mu}{\\kern8mu}{\\kern8mu}{\\kern8mu}(#1)',1], + iff: ['Macro','\\;\\Longleftrightarrow\\;'], + skew: ['Macro','{{#2{#3\\mkern#1mu}\\mkern-#1mu}{}}',3], + mathcal: ['Macro','{\\cal #1}',1], + mathscr: ['Macro','{\\scr #1}',1], + mathrm: ['Macro','{\\rm #1}',1], + mathbf: ['Macro','{\\bf #1}',1], + mathbb: ['Macro','{\\bbFont #1}',1], + Bbb: ['Macro','{\\bbFont #1}',1], + mathit: ['Macro','{\\it #1}',1], + mathfrak: ['Macro','{\\frak #1}',1], + mathsf: ['Macro','{\\sf #1}',1], + mathtt: ['Macro','{\\tt #1}',1], + textrm: ['Macro','\\mathord{\\rm\\text{#1}}',1], + textit: ['Macro','\\mathord{\\it{\\text{#1}}}',1], + textbf: ['Macro','\\mathord{\\bf{\\text{#1}}}',1], + pmb: ['Macro','\\rlap{#1}\\kern1px{#1}',1], + TeX: ['Macro','T\\kern-.14em\\lower.5ex{E}\\kern-.115em X'], + LaTeX: ['Macro','L\\kern-.325em\\raise.21em{\\scriptstyle{A}}\\kern-.17em\\TeX'], + ' ': ['Macro','\\text{ }'], + + // Specially handled + not: 'Not', + dots: 'Dots', + space: 'Tilde', + + + // LaTeX + begin: 'Begin', + end: 'End', + + newcommand: ['Extension','newcommand'], + renewcommand: ['Extension','newcommand'], + newenvironment: ['Extension','newcommand'], + renewenvironment: ['Extension','newcommand'], + def: ['Extension','newcommand'], + let: ['Extension','newcommand'], + + verb: ['Extension','verb'], + + boldsymbol: ['Extension','boldsymbol'], + + tag: ['Extension','AMSmath'], + notag: ['Extension','AMSmath'], + label: ['Extension','AMSmath'], + ref: ['Extension','AMSmath'], + eqref: ['Extension','AMSmath'], + nonumber: ['Macro','\\notag'], + + // Extensions to TeX + unicode: ['Extension','unicode'], + color: 'Color', + + href: ['Extension','HTML'], + 'class': ['Extension','HTML'], + style: ['Extension','HTML'], + cssId: ['Extension','HTML'], + bbox: ['Extension','bbox'], + + mmlToken: 'MmlToken', + + require: 'Require' + + }, + + environment: { + array: ['AlignedArray'], + matrix: ['Array',null,null,null,'c'], + pmatrix: ['Array',null,'(',')','c'], + bmatrix: ['Array',null,'[',']','c'], + Bmatrix: ['Array',null,'\\{','\\}','c'], + vmatrix: ['Array',null,'\\vert','\\vert','c'], + Vmatrix: ['Array',null,'\\Vert','\\Vert','c'], + cases: ['Array',null,'\\{','.','ll',null,".2em",'T'], + + equation: [null,'Equation'], + 'equation*': [null,'Equation'], + + eqnarray: ['ExtensionEnv',null,'AMSmath'], + 'eqnarray*': ['ExtensionEnv',null,'AMSmath'], + + align: ['ExtensionEnv',null,'AMSmath'], + 'align*': ['ExtensionEnv',null,'AMSmath'], + aligned: ['ExtensionEnv',null,'AMSmath'], + multline: ['ExtensionEnv',null,'AMSmath'], + 'multline*': ['ExtensionEnv',null,'AMSmath'], + split: ['ExtensionEnv',null,'AMSmath'], + gather: ['ExtensionEnv',null,'AMSmath'], + 'gather*': ['ExtensionEnv',null,'AMSmath'], + gathered: ['ExtensionEnv',null,'AMSmath'], + alignat: ['ExtensionEnv',null,'AMSmath'], + 'alignat*': ['ExtensionEnv',null,'AMSmath'], + alignedat: ['ExtensionEnv',null,'AMSmath'] + }, + + p_height: 1.2 / .85 // cmex10 height plus depth over .85 + + }); + + // + // Add macros defined in the configuration + // + if (this.config.Macros) { + var MACROS = this.config.Macros; + for (var id in MACROS) {if (MACROS.hasOwnProperty(id)) { + if (typeof(MACROS[id]) === "string") {TEXDEF.macros[id] = ['Macro',MACROS[id]]} + else {TEXDEF.macros[id] = ["Macro"].concat(MACROS[id])} + TEXDEF.macros[id].isUser = true; + }} + } + }; + + /************************************************************************/ + /* + * The TeX Parser + */ + + var PARSE = MathJax.Object.Subclass({ + Init: function (string,env) { + this.string = string; this.i = 0; this.macroCount = 0; + var ENV; if (env) {ENV = {}; for (var id in env) {if (env.hasOwnProperty(id)) {ENV[id] = env[id]}}} + this.stack = TEX.Stack(ENV,!!env); + this.Parse(); this.Push(STACKITEM.stop()); + }, + Parse: function () { + var c, n; + while (this.i < this.string.length) { + c = this.string.charAt(this.i++); n = c.charCodeAt(0); + if (n >= 0xD800 && n < 0xDC00) {c += this.string.charAt(this.i++)} + if (TEXDEF.special[c]) {this[TEXDEF.special[c]](c)} + else if (TEXDEF.letter.test(c)) {this.Variable(c)} + else if (TEXDEF.digit.test(c)) {this.Number(c)} + else {this.Other(c)} + } + }, + Push: function () {this.stack.Push.apply(this.stack,arguments)}, + mml: function () { + if (this.stack.Top().type !== "mml") {return null} + return this.stack.Top().data[0]; + }, + mmlToken: function (token) {return token}, // used by boldsymbol extension + + /************************************************************************/ + /* + * Handle various token classes + */ + + /* + * Lookup a control-sequence and process it + */ + ControlSequence: function (c) { + var name = this.GetCS(), macro = this.csFindMacro(name); + if (macro) { + if (!(macro instanceof Array)) {macro = [macro]} + var fn = macro[0]; if (!(fn instanceof Function)) {fn = this[fn]} + fn.apply(this,[c+name].concat(macro.slice(1))); + } else if (TEXDEF.mathchar0mi[name]) {this.csMathchar0mi(name,TEXDEF.mathchar0mi[name])} + else if (TEXDEF.mathchar0mo[name]) {this.csMathchar0mo(name,TEXDEF.mathchar0mo[name])} + else if (TEXDEF.mathchar7[name]) {this.csMathchar7(name,TEXDEF.mathchar7[name])} + else if (TEXDEF.delimiter["\\"+name] != null) {this.csDelimiter(name,TEXDEF.delimiter["\\"+name])} + else {this.csUndefined(c+name)} + }, + // + // Look up a macro in the macros list + // (overridden in begingroup extension) + // + csFindMacro: function (name) {return TEXDEF.macros[name]}, + // + // Handle normal mathchar (as an mi) + // + csMathchar0mi: function (name,mchar) { + var def = {mathvariant: MML.VARIANT.ITALIC}; + if (mchar instanceof Array) {def = mchar[1]; mchar = mchar[0]} + this.Push(this.mmlToken(MML.mi(MML.entity("#x"+mchar)).With(def))); + }, + // + // Handle normal mathchar (as an mo) + // + csMathchar0mo: function (name,mchar) { + var def = {stretchy: false}; + if (mchar instanceof Array) {def = mchar[1]; def.stretchy = false; mchar = mchar[0]} + this.Push(this.mmlToken(MML.mo(MML.entity("#x"+mchar)).With(def))); + }, + // + // Handle mathchar in current family + // + csMathchar7: function (name,mchar) { + var def = {mathvariant: MML.VARIANT.NORMAL}; + if (mchar instanceof Array) {def = mchar[1]; mchar = mchar[0]} + if (this.stack.env.font) {def.mathvariant = this.stack.env.font} + this.Push(this.mmlToken(MML.mi(MML.entity("#x"+mchar)).With(def))); + }, + // + // Handle delimiter + // + csDelimiter: function (name,delim) { + var def = {}; + if (delim instanceof Array) {def = delim[1]; delim = delim[0]} + if (delim.length === 4) {delim = MML.entity('#x'+delim)} else {delim = MML.chars(delim)} + this.Push(this.mmlToken(MML.mo(delim).With({fence: false, stretchy: false}).With(def))); + }, + // + // Handle undefined control sequence + // (overridden in noUndefined extension) + // + csUndefined: function (name) { + TEX.Error(["UndefinedControlSequence","Undefined control sequence %1",name]); + }, + + /* + * Handle a variable (a single letter) + */ + Variable: function (c) { + var def = {}; if (this.stack.env.font) {def.mathvariant = this.stack.env.font} + this.Push(this.mmlToken(MML.mi(MML.chars(c)).With(def))); + }, + + /* + * Determine the extent of a number (pattern may need work) + */ + Number: function (c) { + var mml, n = this.string.slice(this.i-1).match(TEXDEF.number); + if (n) {mml = MML.mn(n[0].replace(/[{}]/g,"")); this.i += n[0].length - 1} + else {mml = MML.mo(MML.chars(c))} + if (this.stack.env.font) {mml.mathvariant = this.stack.env.font} + this.Push(this.mmlToken(mml)); + }, + + /* + * Handle { and } + */ + Open: function (c) {this.Push(STACKITEM.open())}, + Close: function (c) {this.Push(STACKITEM.close())}, + + /* + * Handle tilde and spaces + */ + Tilde: function (c) {this.Push(MML.mtext(MML.chars(NBSP)))}, + Space: function (c) {}, + + /* + * Handle ^, _, and ' + */ + Superscript: function (c) { + if (this.GetNext().match(/\d/)) // don't treat numbers as a unit + {this.string = this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)} + var position, primes, base, top = this.stack.Top(); + if (top.type === "prime") {base = top.data[0]; primes = top.data[1]; this.stack.Pop()} + else {base = this.stack.Prev(); if (!base) {base = MML.mi("")}} + if (base.isEmbellishedWrapper) {base = base.data[0].data[0]} + if (base.type === "msubsup") { + if (base.data[base.sup]) + {TEX.Error(["DoubleExponent","Double exponent: use braces to clarify"])} + position = base.sup; + } else if (base.movesupsub) { + if (base.type !== "munderover" || base.data[base.over]) { + if (base.movablelimits && base.isa(MML.mi)) {base = this.mi2mo(base)} + base = MML.munderover(base,null,null).With({movesupsub:true}) + } + position = base.over; + } else { + base = MML.msubsup(base,null,null); + position = base.sup; + } + this.Push(STACKITEM.subsup(base).With({position: position, primes: primes})); + }, + Subscript: function (c) { + if (this.GetNext().match(/\d/)) // don't treat numbers as a unit + {this.string = this.string.substr(0,this.i+1)+" "+this.string.substr(this.i+1)} + var position, primes, base, top = this.stack.Top(); + if (top.type === "prime") {base = top.data[0]; primes = top.data[1]; this.stack.Pop()} + else {base = this.stack.Prev(); if (!base) {base = MML.mi("")}} + if (base.isEmbellishedWrapper) {base = base.data[0].data[0]} + if (base.type === "msubsup") { + if (base.data[base.sub]) + {TEX.Error(["DoubleSubscripts","Double subscripts: use braces to clarify"])} + position = base.sub; + } else if (base.movesupsub) { + if (base.type !== "munderover" || base.data[base.under]) { + if (base.movablelimits && base.isa(MML.mi)) {base = this.mi2mo(base)} + base = MML.munderover(base,null,null).With({movesupsub:true}) + } + position = base.under; + } else { + base = MML.msubsup(base,null,null); + position = base.sub; + } + this.Push(STACKITEM.subsup(base).With({position: position, primes: primes})); + }, + PRIME: "\u2032", SMARTQUOTE: "\u2019", + Prime: function (c) { + var base = this.stack.Prev(); if (!base) {base = MML.mi()} + if (base.type === "msubsup" && base.data[base.sup]) { + TEX.Error(["DoubleExponentPrime", + "Prime causes double exponent: use braces to clarify"]); + } + var sup = ""; this.i--; + do {sup += this.PRIME; this.i++, c = this.GetNext()} + while (c === "'" || c === this.SMARTQUOTE); + sup = ["","\u2032","\u2033","\u2034","\u2057"][sup.length] || sup; + this.Push(STACKITEM.prime(base,this.mmlToken(MML.mo(sup)))); + }, + mi2mo: function (mi) { + var mo = MML.mo(); mo.Append.apply(mo,mi.data); var id; + for (id in mo.defaults) + {if (mo.defaults.hasOwnProperty(id) && mi[id] != null) {mo[id] = mi[id]}} + for (id in MML.copyAttributes) + {if (MML.copyAttributes.hasOwnProperty(id) && mi[id] != null) {mo[id] = mi[id]}} + return mo; + }, + + /* + * Handle comments + */ + Comment: function (c) { + while (this.i < this.string.length && this.string.charAt(this.i) != "\n") {this.i++} + }, + + /* + * Handle hash marks outside of definitions + */ + Hash: function (c) { + TEX.Error(["CantUseHash1", + "You can't use 'macro parameter character #' in math mode"]); + }, + + /* + * Handle other characters (as elements) + */ + Other: function (c) { + var def = {stretchy: false}, mo; + if (this.stack.env.font) {def.mathvariant = this.stack.env.font} + if (TEXDEF.remap[c]) { + c = TEXDEF.remap[c]; + if (c instanceof Array) {def = c[1]; c = c[0]} + mo = MML.mo(MML.entity('#x'+c)).With(def); + } else { + mo = MML.mo(c).With(def); + } + if (mo.autoDefault("texClass",true) == "") {mo = MML.TeXAtom(mo)} + this.Push(this.mmlToken(mo)); + }, + + /************************************************************************/ + /* + * Macros + */ + + SetFont: function (name,font) {this.stack.env.font = font}, + SetStyle: function (name,texStyle,style,level) { + this.stack.env.style = texStyle; this.stack.env.level = level; + this.Push(STACKITEM.style().With({styles: {displaystyle: style, scriptlevel: level}})); + }, + SetSize: function (name,size) { + this.stack.env.size = size; + this.Push(STACKITEM.style().With({styles: {mathsize: size+"em"}})); // convert to absolute? + }, + + Color: function (name) { + var color = this.GetArgument(name); + var old = this.stack.env.color; this.stack.env.color = color; + var math = this.ParseArg(name); + if (old) {this.stack.env.color} else {delete this.stack.env.color} + this.Push(MML.mstyle(math).With({mathcolor: color})); + }, + + Spacer: function (name,space) { + this.Push(MML.mspace().With({width: space, mathsize: MML.SIZE.NORMAL, scriptlevel:0})); + }, + + LeftRight: function (name) { + this.Push(STACKITEM[name.substr(1)]().With({delim: this.GetDelimiter(name)})); + }, + + Middle: function (name) { + var delim = this.GetDelimiter(name); + if (this.stack.Top().type !== "left") + {TEX.Error(["MisplacedMiddle","%1 must be within \\left and \\right",name])} + this.Push(MML.mo(delim).With({stretchy:true})); + }, + + NamedFn: function (name,id) { + if (!id) {id = name.substr(1)}; + var mml = MML.mi(id).With({texClass: MML.TEXCLASS.OP}); + this.Push(STACKITEM.fn(this.mmlToken(mml))); + }, + NamedOp: function (name,id) { + if (!id) {id = name.substr(1)}; + id = id.replace(/ /,"\u2006"); + var mml = MML.mo(id).With({ + movablelimits: true, + movesupsub: true, + form: MML.FORM.PREFIX, + texClass: MML.TEXCLASS.OP + }); + mml.useMMLspacing &= ~mml.SPACE_ATTR.form; // don't count this explicit form setting + this.Push(this.mmlToken(mml)); + }, + Limits: function (name,limits) { + var op = this.stack.Prev("nopop"); + if (!op || op.texClass !== MML.TEXCLASS.OP) + {TEX.Error(["MisplacedLimits","%1 is allowed only on operators",name])} + op.movesupsub = (limits ? true : false); + op.movablelimits = false; + }, + + Over: function (name,open,close) { + var mml = STACKITEM.over().With({name: name}); + if (open || close) { + mml.open = open; mml.close = close; + } else if (name.match(/withdelims$/)) { + mml.open = this.GetDelimiter(name); + mml.close = this.GetDelimiter(name); + } + if (name.match(/^\\above/)) {mml.thickness = this.GetDimen(name)} + else if (name.match(/^\\atop/) || open || close) {mml.thickness = 0} + this.Push(mml); + }, + + Frac: function (name) { + var num = this.ParseArg(name); + var den = this.ParseArg(name); + this.Push(MML.mfrac(num,den)); + }, + + Sqrt: function (name) { + var n = this.GetBrackets(name), arg = this.GetArgument(name); + if (arg === "\\frac") {arg += "{"+this.GetArgument(arg)+"}{"+this.GetArgument(arg)+"}"} + var mml = TEX.Parse(arg,this.stack.env).mml(); + if (!n) {mml = MML.msqrt.apply(MML,mml.array())} + else {mml = MML.mroot(mml,this.parseRoot(n))} + this.Push(mml); + }, + Root: function (name) { + var n = this.GetUpTo(name,"\\of"); + var arg = this.ParseArg(name); + this.Push(MML.mroot(arg,this.parseRoot(n))); + }, + parseRoot: function (n) { + var env = this.stack.env, inRoot = env.inRoot; env.inRoot = true; + var parser = TEX.Parse(n,env); n = parser.mml(); var global = parser.stack.global; + if (global.leftRoot || global.upRoot) { + n = MML.mpadded(n); + if (global.leftRoot) {n.width = global.leftRoot} + if (global.upRoot) {n.voffset = global.upRoot; n.height = global.upRoot} + } + env.inRoot = inRoot; + return n; + }, + MoveRoot: function (name,id) { + if (!this.stack.env.inRoot) + {TEX.Error(["MisplacedMoveRoot","%1 can appear only within a root",name])} + if (this.stack.global[id]) + {TEX.Error(["MultipleMoveRoot","Multiple use of %1",name])} + var n = this.GetArgument(name); + if (!n.match(/-?[0-9]+/)) + {TEX.Error(["IntegerArg","The argument to %1 must be an integer",name])} + n = (n/15)+"em"; + if (n.substr(0,1) !== "-") {n = "+"+n} + this.stack.global[id] = n; + }, + + Accent: function (name,accent,stretchy) { + var c = this.ParseArg(name); + var def = {accent: true}; if (this.stack.env.font) {def.mathvariant = this.stack.env.font} + var mml = this.mmlToken(MML.mo(MML.entity("#x"+accent)).With(def)); + mml.stretchy = (stretchy ? true : false); + this.Push(MML.TeXAtom(MML.munderover(c,null,mml).With({accent: true}))); + }, + + UnderOver: function (name,c,stack) { + var pos = {o: "over", u: "under"}[name.charAt(1)]; + var base = this.ParseArg(name); + if (base.Get("movablelimits")) {base.movablelimits = false} + var mml = MML.munderover(base,null,null); + if (stack) {mml.movesupsub = true} + mml.data[mml[pos]] = + this.mmlToken(MML.mo(MML.entity("#x"+c)).With({stretchy:true, accent:(pos == "under")})); + this.Push(mml); + }, + + Overset: function (name) { + var top = this.ParseArg(name), base = this.ParseArg(name); + this.Push(MML.mover(base,top)); + }, + Underset: function (name) { + var bot = this.ParseArg(name), base = this.ParseArg(name); + this.Push(MML.munder(base,bot)); + }, + + TeXAtom: function (name,mclass) { + var def = {texClass: mclass}, mml; + if (mclass == MML.TEXCLASS.OP) { + def.movesupsub = def.movablelimits = true; + var arg = this.GetArgument(name); + var match = arg.match(/^\s*\\rm\s+([a-zA-Z0-9 ]+)$/); + if (match) { + def.mathvariant = MML.VARIANT.NORMAL; + mml = STACKITEM.fn(this.mmlToken(MML.mi(match[1]).With(def))); + } else { + mml = STACKITEM.fn(MML.TeXAtom(TEX.Parse(arg,this.stack.env).mml()).With(def)); + } + } else {mml = MML.TeXAtom(this.ParseArg(name)).With(def)} + this.Push(mml); + }, + + MmlToken: function (name) { + var type = this.GetArgument(name), + attr = this.GetBrackets(name,"").replace(/^\s+/,""), + data = this.GetArgument(name), + def = {attrNames:[]}, match; + if (!MML[type] || !MML[type].prototype.isToken) + {TEX.Error(["NotMathMLToken","%1 is not a token element",type])} + while (attr !== "") { + match = attr.match(/^([a-z]+)\s*=\s*(\'[^']*'|"[^"]*"|[^ ]*)\s*/i); + if (!match) + {TEX.Error(["InvalidMathMLAttr","Invalid MathML attribute: %1",attr])} + if (!MML[type].prototype.defaults[match[1]] && !this.MmlTokenAllow[match[1]]) { + TEX.Error(["UnknownAttrForElement", + "%1 is not a recognized attribute for %2", + match[1],type]); + } + var value = this.MmlFilterAttribute(match[1],match[2].replace(/^(['"])(.*)\1$/,"$2")); + if (value) { + if (value.toLowerCase() === "true") {value = true} + else if (value.toLowerCase() === "false") {value = false} + def[match[1]] = value; + def.attrNames.push(match[1]); + } + attr = attr.substr(match[0].length); + } + this.Push(this.mmlToken(MML[type](data).With(def))); + }, + MmlFilterAttribute: function (name,value) {return value}, + MmlTokenAllow: { + fontfamily:1, fontsize:1, fontweight:1, fontstyle:1, + color:1, background:1, + id:1, "class":1, href:1, style:1 + }, + + Strut: function (name) { + this.Push(MML.mpadded(MML.mrow()).With({height: "8.6pt", depth: "3pt", width: 0})); + }, + + Phantom: function (name,v,h) { + var box = MML.mphantom(this.ParseArg(name)); + if (v || h) { + box = MML.mpadded(box); + if (h) {box.height = box.depth = 0} + if (v) {box.width = 0} + } + this.Push(MML.TeXAtom(box)); + }, + + Smash: function (name) { + var bt = this.trimSpaces(this.GetBrackets(name,"")); + var smash = MML.mpadded(this.ParseArg(name)); + switch (bt) { + case "b": smash.depth = 0; break; + case "t": smash.height = 0; break; + default: smash.height = smash.depth = 0; + } + this.Push(MML.TeXAtom(smash)); + }, + + Lap: function (name) { + var mml = MML.mpadded(this.ParseArg(name)).With({width: 0}); + if (name === "\\llap") {mml.lspace = "-1 width"} + this.Push(MML.TeXAtom(mml)); + }, + + RaiseLower: function (name) { + var h = this.GetDimen(name); + var item = STACKITEM.position().With({name: name, move: 'vertical'}); + if (h.charAt(0) === '-') {h = h.slice(1); name = {raise: "\\lower", lower: "\\raise"}[name.substr(1)]} + if (name === "\\lower") {item.dh = '-'+h; item.dd = '+'+h} else {item.dh = '+'+h; item.dd = '-'+h} + this.Push(item); + }, + + MoveLeftRight: function (name) { + var h = this.GetDimen(name); + var nh = (h.charAt(0) === '-' ? h.slice(1) : '-'+h); + if (name === "\\moveleft") {var tmp = h; h = nh; nh = tmp} + this.Push(STACKITEM.position().With({ + name: name, move: 'horizontal', + left: MML.mspace().With({width: h, mathsize: MML.SIZE.NORMAL}), + right: MML.mspace().With({width: nh, mathsize: MML.SIZE.NORMAL}) + })); + }, + + Hskip: function (name) { + this.Push(MML.mspace().With({width: this.GetDimen(name), mathsize: MML.SIZE.NORMAL})); + }, + + Rule: function (name,style) { + var w = this.GetDimen(name), + h = this.GetDimen(name), + d = this.GetDimen(name); + var mml, def = {width:w, height:h, depth:d}; + if (style !== 'blank') { + if (parseFloat(w) && parseFloat(h)+parseFloat(d)) + {def.mathbackground = (this.stack.env.color || "black")} + mml = MML.mpadded(MML.mrow()).With(def); + } else { + mml = MML.mspace().With(def); + } + this.Push(mml); + }, + + MakeBig: function (name,mclass,size) { + size *= TEXDEF.p_height; + size = String(size).replace(/(\.\d\d\d).+/,'$1')+"em"; + var delim = this.GetDelimiter(name); + this.Push(MML.TeXAtom(MML.mo(delim).With({ + minsize: size, maxsize: size, + fence: true, stretchy: true, symmetric: true + })).With({texClass: mclass})); + }, + + BuildRel: function (name) { + var top = this.ParseUpTo(name,"\\over"); + var bot = this.ParseArg(name); + this.Push(MML.TeXAtom(MML.munderover(bot,null,top)).With({mclass: MML.TEXCLASS.REL})); + }, + + HBox: function (name,style) { + this.Push.apply(this,this.InternalMath(this.GetArgument(name),style)); + }, + + FBox: function (name) { + this.Push(MML.menclose.apply(MML,this.InternalMath(this.GetArgument(name))).With({notation:"box"})); + }, + + Not: function (name) { + this.Push(STACKITEM.not()); + }, + + Dots: function (name) { + this.Push(STACKITEM.dots().With({ + ldots: this.mmlToken(MML.mo(MML.entity("#x2026")).With({stretchy:false})), + cdots: this.mmlToken(MML.mo(MML.entity("#x22EF")).With({stretchy:false})) + })); + }, + + Require: function (name) { + var file = this.GetArgument(name) + .replace(/.*\//,"") // remove any leading path + .replace(/[^a-z0-9_.-]/ig,""); // remove illegal characters + this.Extension(null,file); + }, + + Extension: function (name,file,array) { + if (name && !typeof(name) === "string") {name = name.name} + file = TEX.extensionDir+"/"+file; + if (!file.match(/\.js$/)) {file += ".js"} + if (!AJAX.loaded[AJAX.fileURL(file)]) { + if (name != null) {delete TEXDEF[array || 'macros'][name.replace(/^\\/,"")]} + HUB.RestartAfter(AJAX.Require(file)); + } + }, + + Macro: function (name,macro,argcount,def) { + if (argcount) { + var args = []; + if (def != null) { + var optional = this.GetBrackets(name); + args.push(optional == null ? def : optional); + } + for (var i = args.length; i < argcount; i++) {args.push(this.GetArgument(name))} + macro = this.SubstituteArgs(args,macro); + } + this.string = this.AddArgs(macro,this.string.slice(this.i)); + this.i = 0; + if (++this.macroCount > TEX.config.MAXMACROS) { + TEX.Error(["MaxMacroSub1", + "MathJax maximum macro substitution count exceeded; " + + "is there a recursive macro call?"]); + } + }, + + Matrix: function (name,open,close,align,spacing,vspacing,style,cases) { + var c = this.GetNext(); + if (c === "") + {TEX.Error(["MissingArgFor","Missing argument for %1",name])} + if (c === "{") {this.i++} else {this.string = c+"}"+this.string.slice(this.i+1); this.i = 0} + var array = STACKITEM.array().With({ + requireClose: true, + arraydef: { + rowspacing: (vspacing||"4pt"), + columnspacing: (spacing||"1em") + } + }); + if (cases) {array.isCases = true} + if (open || close) {array.open = open; array.close = close} + if (style === "D") {array.arraydef.displaystyle = true} + if (align != null) {array.arraydef.columnalign = align} + this.Push(array); + }, + + Entry: function (name) { + this.Push(STACKITEM.cell().With({isEntry: true, name: name})); + if (this.stack.Top().isCases) { + var string = this.string; + var braces = 0, i = this.i, m = string.length; + while (i < m) { + var c = string.charAt(i); + if (c === "{") {braces++; i++} + else if (c === "}") {if (braces === 0) {m = 0} else {braces--; i++}} + else if (c === "&" && braces === 0) { + TEX.Error(["ExtraAlignTab","Extra alignment tab in \\cases text"]); + } else if (c === "\\") { + if (string.substr(i).match(/^((\\cr)[^a-zA-Z]|\\\\)/)) {m = 0} else {i += 2} + } else {i++} + } + var text = string.substr(this.i,i-this.i); + if (!text.match(/^\s*\\text[^a-zA-Z]/)) { + this.Push.apply(this,this.InternalMath(text)); + this.i = i; + } + } + }, + + Cr: function (name) { + this.Push(STACKITEM.cell().With({isCR: true, name: name})); + }, + + CrLaTeX: function (name) { + var n; + if (this.string.charAt(this.i) === "[") { + n = this.GetBrackets(name,"").replace(/ /g,""); + if (n && + !n.match(/^((-?(\.\d+|\d+(\.\d*)?))(pt|em|ex|mu|mm|cm|in|pc))$/)) { + TEX.Error(["BracketMustBeDimension", + "Bracket argument to %1 must be a dimension",name]); + } + } + this.Push(STACKITEM.cell().With({isCR: true, name: name, linebreak: true})); + var top = this.stack.Top(); + if (top.isa(STACKITEM.array)) { + if (n && top.arraydef.rowspacing) { + var rows = top.arraydef.rowspacing.split(/ /); + if (!top.rowspacing) {top.rowspacing = this.dimen2em(rows[0])} + while (rows.length < top.table.length) {rows.push(this.Em(top.rowspacing))} + rows[top.table.length-1] = this.Em(Math.max(0,top.rowspacing+this.dimen2em(n))); + top.arraydef.rowspacing = rows.join(' '); + } + } else { + if (n) {this.Push(MML.mspace().With({depth:n}))} + this.Push(MML.mo().With({linebreak:MML.LINEBREAK.NEWLINE})); + } + }, + emPerInch: 7.2, + dimen2em: function (dim) { + var match = dim.match(/^(-?(?:\.\d+|\d+(?:\.\d*)?))(pt|em|ex|mu|pc|in|mm|cm)/); + var m = parseFloat(match[1]||"1"), unit = match[2]; + if (unit === "em") {return m} + if (unit === "ex") {return m * .43} + if (unit === "pt") {return m / 10} // 10 pt to an em + if (unit === "pc") {return m * 1.2} // 12 pt to a pc + if (unit === "in") {return m * this.emPerInch} + if (unit === "cm") {return m * this.emPerInch / 2.54} // 2.54 cm to an inch + if (unit === "mm") {return m * this.emPerInch / 25.4} // 10 mm to a cm + if (unit === "mu") {return m / 18} + return 0; + }, + Em: function (m) { + if (Math.abs(m) < .0006) {return "0em"} + return m.toFixed(3).replace(/\.?0+$/,"") + "em"; + }, + + HLine: function (name,style) { + if (style == null) {style = "solid"} + var top = this.stack.Top(); + if (!top.isa(STACKITEM.array) || top.data.length) + {TEX.Error(["Misplaced","Misplaced %1",name])} + if (top.table.length == 0) { + top.frame.push("top"); + } else { + var lines = (top.arraydef.rowlines ? top.arraydef.rowlines.split(/ /) : []); + while (lines.length < top.table.length) {lines.push("none")} + lines[top.table.length-1] = style; + top.arraydef.rowlines = lines.join(' '); + } + }, + + /************************************************************************/ + /* + * LaTeX environments + */ + + Begin: function (name) { + var env = this.GetArgument(name); + if (env.match(/[^a-z*]/i)) + {TEX.Error(["InvalidEnv","Invalid environment name '%1'",env])} + var cmd = this.envFindName(env); + if (!cmd) + {TEX.Error(["UnknownEnv","Unknown environment '%1'",env])} + if (++this.macroCount > TEX.config.MAXMACROS) { + TEX.Error(["MaxMacroSub2", + "MathJax maximum substitution count exceeded; " + + "is there a recursive latex environment?"]); + } + if (!(cmd instanceof Array)) {cmd = [cmd]} + var mml = STACKITEM.begin().With({name: env, end: cmd[1], parse:this}); + if (cmd[0] && this[cmd[0]]) {mml = this[cmd[0]].apply(this,[mml].concat(cmd.slice(2)))} + this.Push(mml); + }, + End: function (name) { + this.Push(STACKITEM.end().With({name: this.GetArgument(name)})); + }, + envFindName: function (name) {return TEXDEF.environment[name]}, + + Equation: function (begin,row) {return row}, + + ExtensionEnv: function (begin,file) {this.Extension(begin.name,file,"environment")}, + + Array: function (begin,open,close,align,spacing,vspacing,style,raggedHeight) { + if (!align) {align = this.GetArgument("\\begin{"+begin.name+"}")} + var lines = ("c"+align).replace(/[^clr|:]/g,'').replace(/[^|:]([|:])+/g,'$1'); + align = align.replace(/[^clr]/g,'').split('').join(' '); + align = align.replace(/l/g,'left').replace(/r/g,'right').replace(/c/g,'center'); + var array = STACKITEM.array().With({ + arraydef: { + columnalign: align, + columnspacing: (spacing||"1em"), + rowspacing: (vspacing||"4pt") + } + }); + if (lines.match(/[|:]/)) { + if (lines.charAt(0).match(/[|:]/)) {array.frame.push("left"); array.frame.dashed = lines.charAt(0) === ":"} + if (lines.charAt(lines.length-1).match(/[|:]/)) {array.frame.push("right")} + lines = lines.substr(1,lines.length-2); + array.arraydef.columnlines = + lines.split('').join(' ').replace(/[^|: ]/g,'none').replace(/\|/g,'solid').replace(/:/g,'dashed'); + } + if (open) {array.open = this.convertDelimiter(open)} + if (close) {array.close = this.convertDelimiter(close)} + if (style === "D") {array.arraydef.displaystyle = true} + else if (style) {array.arraydef.displaystyle = false} + if (style === "S") {array.arraydef.scriptlevel = 1} // FIXME: should use mstyle? + if (raggedHeight) {array.arraydef.useHeight = false} + this.Push(begin); + return array; + }, + + AlignedArray: function (begin) { + var align = this.GetBrackets("\\begin{"+begin.name+"}"); + return this.setArrayAlign(this.Array.apply(this,arguments),align); + }, + setArrayAlign: function (array,align) { + align = this.trimSpaces(align||""); + if (align === "t") {array.arraydef.align = "baseline 1"} + else if (align === "b") {array.arraydef.align = "baseline -1"} + else if (align === "c") {array.arraydef.align = "center"} + else if (align) {array.arraydef.align = align} // FIXME: should be an error? + return array; + }, + + /************************************************************************/ + /* + * String handling routines + */ + + /* + * Convert delimiter to character + */ + convertDelimiter: function (c) { + if (c) {c = TEXDEF.delimiter[c]} + if (c == null) {return null} + if (c instanceof Array) {c = c[0]} + if (c.length === 4) {c = String.fromCharCode(parseInt(c,16))} + return c; + }, + + /* + * Trim spaces from a string + */ + trimSpaces: function (text) { + if (typeof(text) != 'string') {return text} + return text.replace(/^\s+|\s+$/g,''); + }, + + /* + * Check if the next character is a space + */ + nextIsSpace: function () { + return this.string.charAt(this.i).match(/[ \n\r\t]/); + }, + + /* + * Get the next non-space character + */ + GetNext: function () { + while (this.nextIsSpace()) {this.i++} + return this.string.charAt(this.i); + }, + + /* + * Get and return a control-sequence name + */ + GetCS: function () { + var CS = this.string.slice(this.i).match(/^([a-z]+|.) ?/i); + if (CS) {this.i += CS[1].length; return CS[1]} else {this.i++; return " "} + }, + + /* + * Get and return a TeX argument (either a single character or control sequence, + * or the contents of the next set of braces). + */ + GetArgument: function (name,noneOK) { + switch (this.GetNext()) { + case "": + if (!noneOK) {TEX.Error(["MissingArgFor","Missing argument for %1",name])} + return null; + case '}': + if (!noneOK) { + TEX.Error(["ExtraCloseMissingOpen", + "Extra close brace or missing open brace"]); + } + return null; + case '\\': + this.i++; return "\\"+this.GetCS(); + case '{': + var j = ++this.i, parens = 1; + while (this.i < this.string.length) { + switch (this.string.charAt(this.i++)) { + case '\\': this.i++; break; + case '{': parens++; break; + case '}': + if (--parens == 0) {return this.string.slice(j,this.i-1)} + break; + } + } + TEX.Error(["MissingCloseBrace","Missing close brace"]); + break; + } + return this.string.charAt(this.i++); + }, + + /* + * Get an optional LaTeX argument in brackets + */ + GetBrackets: function (name,def) { + if (this.GetNext() != '[') {return def}; + var j = ++this.i, parens = 0; + while (this.i < this.string.length) { + switch (this.string.charAt(this.i++)) { + case '{': parens++; break; + case '\\': this.i++; break; + case '}': + if (parens-- <= 0) { + TEX.Error(["ExtraCloseLooking", + "Extra close brace while looking for %1","']'"]); + } + break; + case ']': + if (parens == 0) {return this.string.slice(j,this.i-1)} + break; + } + } + TEX.Error(["MissingCloseBracket", + "Couldn't find closing ']' for argument to %1",name]); + }, + + /* + * Get the name of a delimiter (check it in the delimiter list). + */ + GetDelimiter: function (name) { + while (this.nextIsSpace()) {this.i++} + var c = this.string.charAt(this.i); + if (this.i < this.string.length) { + this.i++; if (c == "\\") {c += this.GetCS(name)} + if (TEXDEF.delimiter[c] != null) {return this.convertDelimiter(c)} + } + TEX.Error(["MissingOrUnrecognizedDelim", + "Missing or unrecognized delimiter for %1",name]); + }, + + /* + * Get a dimension (including its units). + */ + GetDimen: function (name) { + var dimen; + if (this.nextIsSpace()) {this.i++} + if (this.string.charAt(this.i) == '{') { + dimen = this.GetArgument(name); + if (dimen.match(/^\s*([-+]?(\.\d+|\d+(\.\d*)?))\s*(pt|em|ex|mu|px|mm|cm|in|pc)\s*$/)) + {return dimen.replace(/ /g,"")} + } else { + dimen = this.string.slice(this.i); + var match = dimen.match(/^\s*(([-+]?(\.\d+|\d+(\.\d*)?))\s*(pt|em|ex|mu|px|mm|cm|in|pc)) ?/); + if (match) { + this.i += match[0].length; + return match[1].replace(/ /g,""); + } + } + TEX.Error(["MissingDimOrUnits", + "Missing dimension or its units for %1",name]); + }, + + /* + * Get everything up to the given control sequence (token) + */ + GetUpTo: function (name,token) { + while (this.nextIsSpace()) {this.i++} + var j = this.i, k, c, parens = 0; + while (this.i < this.string.length) { + k = this.i; c = this.string.charAt(this.i++); + switch (c) { + case '\\': c += this.GetCS(); break; + case '{': parens++; break; + case '}': + if (parens == 0) { + TEX.Error(["ExtraCloseLooking", + "Extra close brace while looking for %1",token]) + } + parens--; + break; + } + if (parens == 0 && c == token) {return this.string.slice(j,k)} + } + TEX.Error(["TokenNotFoundForCommand", + "Couldn't find %1 for %2",token,name]); + }, + + /* + * Parse various substrings + */ + ParseArg: function (name) {return TEX.Parse(this.GetArgument(name),this.stack.env).mml()}, + ParseUpTo: function (name,token) {return TEX.Parse(this.GetUpTo(name,token),this.stack.env).mml()}, + + /* + * Break up a string into text and math blocks + * @@@ FIXME: skip over braced groups? @@@ + * @@@ FIXME: pass environment to TEX.Parse? @@@ + */ + InternalMath: function (text,level) { + var def = {displaystyle: false}; if (level != null) {def.scriptlevel = level} + if (this.stack.env.font) {def.mathvariant = this.stack.env.font} + if (!text.match(/\\?\$|\\\(|\\(eq)?ref\s*\{/)) {return [this.InternalText(text,def)]} + var i = 0, k = 0, c, match = ''; + var mml = []; + while (i < text.length) { + c = text.charAt(i++); + if (c === '$') { + if (match === '$') { + mml.push(MML.TeXAtom(TEX.Parse(text.slice(k,i-1),{}).mml().With(def))); + match = ''; k = i; + } else if (match === '') { + if (k < i-1) {mml.push(this.InternalText(text.slice(k,i-1),def))} + match = '$'; k = i; + } + } else if (c === '}' && match === '}') { + mml.push(MML.TeXAtom(TEX.Parse(text.slice(k,i),{}).mml().With(def))); + match = ''; k = i; + } else if (c === '\\') { + if (match === '' && text.substr(i).match(/^(eq)?ref\s*\{/)) { + if (k < i-1) {mml.push(this.InternalText(text.slice(k,i-1),def))} + match = '}'; k = i-1; + } else { + c = text.charAt(i++); + if (c === '(' && match === '') { + if (k < i-2) {mml.push(this.InternalText(text.slice(k,i-2),def))} + match = ')'; k = i; + } else if (c === ')' && match === ')') { + mml.push(MML.TeXAtom(TEX.Parse(text.slice(k,i-2),{}).mml().With(def))); + match = ''; k = i; + } else if (c === '$' && match === '') { + i--; text = text.substr(0,i-1) + text.substr(i); // remove \ from \$ + } + } + } + } + if (match !== '') + {TEX.Error(["MathNotTerminated","Math not terminated in text box"])} + if (k < text.length) {mml.push(this.InternalText(text.slice(k),def))} + return mml; + }, + InternalText: function (text,def) { + text = text.replace(/^\s+/,NBSP).replace(/\s+$/,NBSP); + return MML.mtext(MML.chars(text)).With(def); + }, + + /* + * Replace macro paramters with their values + */ + SubstituteArgs: function (args,string) { + var text = ''; var newstring = ''; var c; var i = 0; + while (i < string.length) { + c = string.charAt(i++); + if (c === "\\") {text += c + string.charAt(i++)} + else if (c === '#') { + c = string.charAt(i++); + if (c === '#') {text += c} else { + if (!c.match(/[1-9]/) || c > args.length) { + TEX.Error(["IllegalMacroParam", + "Illegal macro parameter reference"]); + } + newstring = this.AddArgs(this.AddArgs(newstring,text),args[c-1]); + text = ''; + } + } else {text += c} + } + return this.AddArgs(newstring,text); + }, + + /* + * Make sure that macros are followed by a space if their names + * could accidentally be continued into the following text. + */ + AddArgs: function (s1,s2) { + if (s2.match(/^[a-z]/i) && s1.match(/(^|[^\\])(\\\\)*\\[a-z]+$/i)) {s1 += ' '} + if (s1.length + s2.length > TEX.config.MAXBUFFER) { + TEX.Error(["MaxBufferSize", + "MathJax internal buffer size exceeded; is there a recursive macro call?"]); + } + return s1+s2; + } + + }); + + /************************************************************************/ + + TEX.Augment({ + Stack: STACK, Parse: PARSE, Definitions: TEXDEF, Startup: STARTUP, + + config: { + MAXMACROS: 10000, // maximum number of macro substitutions per equation + MAXBUFFER: 5*1024 // maximum size of TeX string to process + }, + + sourceMenuTitle: /*_(MathMenu)*/ ["TeXCommands","TeX Commands"], + + prefilterHooks: MathJax.Callback.Hooks(true), // hooks to run before processing TeX + postfilterHooks: MathJax.Callback.Hooks(true), // hooks to run after processing TeX + + // + // Check if AMSmath extension must be loaded and push + // it on the extensions array, if needed + // + Config: function () { + this.SUPER(arguments).Config.apply(this,arguments); + if (this.config.equationNumbers.autoNumber !== "none") { + if (!this.config.extensions) {this.config.extensions = []} + this.config.extensions.push("AMSmath.js"); + } + }, + + // + // Convert TeX to ElementJax + // + Translate: function (script) { + var mml, isError = false, math = MathJax.HTML.getScript(script); + var display = (script.type.replace(/\n/g," ").match(/(;|\s|\n)mode\s*=\s*display(;|\s|\n|$)/) != null); + var data = {math:math, display:display, script:script}; + this.prefilterHooks.Execute(data); math = data.math; + try { + mml = TEX.Parse(math).mml(); + mml = MML.semantics(mml,MML.annotation(math).With({encoding:"application/x-tex"})); + } catch(err) { + if (!err.texError) {throw err} + mml = this.formatError(err,math,display,script); + isError = true; + } + if (mml.inferred) {mml = MML.apply(MathJax.ElementJax,mml.data)} else {mml = MML(mml)} + if (display) {mml.root.display = "block"} + if (isError) {mml.texError = true} + data.math = mml; this.postfilterHooks.Execute(data); + return data.math; + }, + prefilterMath: function (math,displaystyle,script) { + return math; + }, + postfilterMath: function (math,displaystyle,script) { + this.combineRelations(math.root); + return math; + }, + formatError: function (err,math,display,script) { + var message = err.message.replace(/\n.*/,""); + HUB.signal.Post(["TeX Jax - parse error",message,math,display,script]); + return MML.Error(message); + }, + + // + // Produce an error and stop processing this equation + // + Error: function (message) { + // + // Translate message if it is ["id","message",args] + // + if (message instanceof Array) {message = _.apply(_,message)} + throw HUB.Insert(Error(message),{texError: true}); + }, + + // + // Add a user-defined macro to the macro list + // + Macro: function (name,def,argn) { + TEXDEF.macros[name] = ['Macro'].concat([].slice.call(arguments,1)); + TEXDEF.macros[name].isUser = true; + }, + + /* + * Create an mrow that has stretchy delimiters at either end, as needed + */ + fenced: function (open,mml,close) { + var mrow = MML.mrow(); + mrow.open = open; mrow.close = close; + if (open) {mrow.Append(MML.mo(open).With({fence:true, stretchy:true, texClass:MML.TEXCLASS.OPEN}))} + if (mml.type === "mrow") {mrow.Append.apply(mrow,mml.data)} else {mrow.Append(mml)} + if (close) {mrow.Append(MML.mo(close).With({fence:true, stretchy:true, texClass:MML.TEXCLASS.CLOSE}))} + return mrow; + }, + + // + // Combine adjacent elements that are relations + // (since MathML treats the spacing very differently) + // + combineRelations: function (mml) { + var i, m, m1, m2; + for (i = 0, m = mml.data.length; i < m; i++) { + if (mml.data[i]) { + if (mml.isa(MML.mrow)) { + while (i+1 < m && (m1 = mml.data[i]) && (m2 = mml.data[i+1]) && + m1.isa(MML.mo) && m2.isa(MML.mo) && + m1.Get("texClass") === MML.TEXCLASS.REL && + m2.Get("texClass") === MML.TEXCLASS.REL) { + if (m1.variantForm == m2.variantForm && + m1.Get("mathvariant") == m2.Get("mathvariant") && m1.style == m2.style && + m1["class"] == m2["class"] && !m1.id && !m2.id) { + m1.Append.apply(m1,m2.data); + mml.data.splice(i+1,1); m--; + } else { + m1.rspace = m2.lspace = "0pt"; i++; + } + } + } + if (!mml.data[i].isToken) {this.combineRelations(mml.data[i])} + } + } + } + }); + + // + // Add the default filters + // + TEX.prefilterHooks.Add(function (data) { + data.math = TEX.prefilterMath(data.math,data.display,data.script); + }); + TEX.postfilterHooks.Add(function (data) { + data.math = TEX.postfilterMath(data.math,data.display,data.script); + }); + + TEX.loadComplete("jax.js"); + +})(MathJax.InputJax.TeX,MathJax.Hub,MathJax.Ajax); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/annotation-xml.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/annotation-xml.js new file mode 100644 index 0000000..fe267d9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/annotation-xml.js @@ -0,0 +1,61 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/autoload/annotation-xm;l.js + * + * Implements the HTML-CSS output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + HTMLCSS = MathJax.OutputJax["HTML-CSS"]; + + MML["annotation-xml"].Augment({ + toHTML: function (span) { + span = this.HTMLhandleSize(this.HTMLcreateSpan(span)); + var encoding = this.Get("encoding"); + for (var i = 0, m = this.data.length; i < m; i++) + {this.data[i].toHTML(span,encoding)} + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLgetScale: function () { + return this.SUPER(arguments).HTMLgetScale.call(this) / HTMLCSS.scale; + } + }); + + MML.xml.Augment({ + toHTML: function (span,encoding) { + for (var i = 0, m = this.data.length; i < m; i++) + {span.appendChild(this.data[i].cloneNode(true))} + span.bbox.w = HTMLCSS.getW(span); span.bbox.rw = span.bbox.w; + var HD = HTMLCSS.getHD(span); + span.bbox.h = HD.h; span.bbox.d = HD.d; + } + }); + + MathJax.Hub.Startup.signal.Post("HTML-CSS annotation-xml Ready"); + MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/annotation-xml.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/maction.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/maction.js new file mode 100644 index 0000000..c1ab6e3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/maction.js @@ -0,0 +1,227 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/autoload/maction.js + * + * Implements the HTML-CSS output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + HTMLCSS = MathJax.OutputJax["HTML-CSS"]; + + var currentTip, hover, clear; + + // + // Add configuration for tooltips + // + var CONFIG = HTMLCSS.config.tooltip = MathJax.Hub.Insert({ + delayPost: 600, delayClear: 600, + offsetX: 10, offsetY: 5 + },HTMLCSS.config.tooltip||{}); + + + MML.maction.Augment({ + HTMLtooltip: HTMLCSS.addElement(document.body,"div",{id:"MathJax_Tooltip"}), + + toHTML: function (span,HW,D) { + var selected = this.selected(); + if (selected.type == "null") { + span = this.HTMLcreateSpan(span); + span.bbox = this.HTMLzeroBBox(); + return span; + } + span = this.HTMLhandleSize(this.HTMLcreateSpan(span)); span.bbox = null; + var box = selected.toHTML(span); + if (D != null) {HTMLCSS.Remeasured(selected.HTMLstretchV(span,HW,D),span)} + else if (HW != null) { + HTMLCSS.Remeasured(selected.HTMLstretchH(span,HW),span) + } else {HTMLCSS.Measured(box,span)} + this.HTMLhandleHitBox(span); + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLhandleHitBox: function (span,postfix) { + var frame; + if (HTMLCSS.msieHitBoxBug) { + // margin-left doesn't work on inline-block elements in IE, so put it in a SPAN + var box = HTMLCSS.addElement(span,"span",{isMathJax:true}); + frame = HTMLCSS.createFrame(box,span.bbox.h,span.bbox.d,span.bbox.w,0,"none"); + span.insertBefore(box,span.firstChild); // move below the content + box.style.marginRight = HTMLCSS.Em(-span.bbox.w); + if (HTMLCSS.msieInlineBlockAlignBug) + {frame.style.verticalAlign = HTMLCSS.Em(HTMLCSS.getHD(span).d-span.bbox.d)} + } else { + frame = HTMLCSS.createFrame(span,span.bbox.h,span.bbox.d,span.bbox.w,0,"none"); + span.insertBefore(frame,span.firstChild); // move below the content + frame.style.marginRight = HTMLCSS.Em(-span.bbox.w); + } + frame.className = "MathJax_HitBox"; + frame.id = "MathJax-HitBox-" + this.spanID + (postfix||"") + HTMLCSS.idPostfix; + + var type = this.Get("actiontype"); + if (this.HTMLaction[type]) {this.HTMLaction[type].call(this,span,frame,this.Get("selection"))} + }, + HTMLstretchH: MML.mbase.HTMLstretchH, + HTMLstretchV: MML.mbase.HTMLstretchV, + + // + // Implementations for the various actions + // + HTMLaction: { + toggle: function (span,frame,selection) { + this.selection = selection; + frame.onclick = span.childNodes[1].onclick = MathJax.Callback(["HTMLclick",this]); + frame.style.cursor = span.childNodes[1].style.cursor="pointer"; + }, + + statusline: function (span,frame,selection) { + frame.onmouseover = span.childNodes[1].onmouseover = MathJax.Callback(["HTMLsetStatus",this]); + frame.onmouseout = span.childNodes[1].onmouseout = MathJax.Callback(["HTMLclearStatus",this]); + frame.onmouseover.autoReset = frame.onmouseout.autoReset = true; + }, + + tooltip: function(span,frame,selection) { + if (this.data[1] && this.data[1].isToken) { + frame.title = frame.alt = span.childNodes[1].title = + span.childNodes[1].alt = this.data[1].data.join(""); + } else { + frame.onmouseover = span.childNodes[1].onmouseover = MathJax.Callback(["HTMLtooltipOver",this]); + frame.onmouseout = span.childNodes[1].onmouseout = MathJax.Callback(["HTMLtooltipOut",this]); + frame.onmouseover.autoReset = frame.onmouseout.autoReset = true; + } + } + }, + + // + // Handle a click on the maction element + // (remove the original rendering and rerender) + // + HTMLclick: function (event) { + this.selection++; + if (this.selection > this.data.length) {this.selection = 1} + var math = this; while (math.type !== "math") {math = math.inherit} + var jax = MathJax.Hub.getJaxFor(math.inputID), hover = !!jax.hover; + jax.Update(); + if (hover) { + var span = document.getElementById(jax.inputID+"-Span"); + MathJax.Extension.MathEvents.Hover.Hover(jax,span); + } + return MathJax.Extension.MathEvents.Event.False(event); + }, + + // + // Set/Clear the window status message + // + HTMLsetStatus: function (event) { + // FIXME: Do something better with non-token elements + this.messageID = MathJax.Message.Set + ((this.data[1] && this.data[1].isToken) ? + this.data[1].data.join("") : this.data[1].toString()); + }, + HTMLclearStatus: function (event) { + if (this.messageID) {MathJax.Message.Clear(this.messageID,0)} + delete this.messageID; + }, + + // + // Handle tooltips + // + HTMLtooltipOver: function (event) { + if (!event) {event = window.event} + if (clear) {clearTimeout(clear); clear = null} + if (hover) {clearTimeout(hover)} + var x = event.pageX; var y = event.pageY; + if (x == null) { + x = event.clientX + document.body.scrollLeft + document.documentElement.scrollLeft; + y = event.clientY + document.body.scrollTop + document.documentElement.scrollTop; + } + var callback = MathJax.Callback(["HTMLtooltipPost",this,x+CONFIG.offsetX,y+CONFIG.offsetY]) + hover = setTimeout(callback,CONFIG.delayPost); + }, + HTMLtooltipOut: function (event) { + if (hover) {clearTimeout(hover); hover = null} + if (clear) {clearTimeout(clear)} + var callback = MathJax.Callback(["HTMLtooltipClear",this,80]); + clear = setTimeout(callback,CONFIG.delayClear); + }, + HTMLtooltipPost: function (x,y) { + hover = null; if (clear) {clearTimeout(clear); clear = null} + var tip = this.HTMLtooltip; + tip.style.display = "block"; tip.style.opacity = ""; + tip.style.filter = HTMLCSS.config.styles["#MathJax_Tooltip"].filter; + if (this === currentTip) return; + tip.style.left = x+"px"; tip.style.top = y+"px"; + tip.innerHTML = ''; + // + // get em sizes (taken from HTMLCSS.preTranslate) + // + var emex = tip.insertBefore(HTMLCSS.EmExSpan.cloneNode(true),tip.firstChild); + var ex = emex.firstChild.offsetHeight/60, + em = emex.lastChild.firstChild.offsetHeight/60; + HTMLCSS.em = HTMLCSS.outerEm = MML.mbase.prototype.em = em; + var scale = Math.floor(Math.max(HTMLCSS.config.minScaleAdjust/100,(ex/HTMLCSS.TeX.x_height)/em) * HTMLCSS.config.scale); + tip.firstChild.style.fontSize = scale+"%"; + emex.parentNode.removeChild(emex); + + var stack = HTMLCSS.createStack(tip.firstChild.firstChild); + var box = HTMLCSS.createBox(stack); + try {HTMLCSS.Measured(this.data[1].toHTML(box),box)} catch(err) { + if (!err.restart) {throw err} + tip.style.display = "none"; + MathJax.Callback.After(["HTMLtooltipPost",this,x,y],err.restart); + return; + } + HTMLCSS.placeBox(box,0,0); + HTMLCSS.createRule(tip.firstChild.firstChild,box.bbox.h,box.bbox.d,0); + currentTip = this; + }, + HTMLtooltipClear: function (n) { + var tip = this.HTMLtooltip; + if (n <= 0) { + tip.style.display = "none"; + tip.style.opacity = tip.style.filter = ""; + clear = null; + } else { + tip.style.opacity = n/100; + tip.style.filter = "alpha(opacity="+n+")"; + clear = setTimeout(MathJax.Callback(["HTMLtooltipClear",this,n-20]),50); + } + } + }); + + // + // Do browser-specific setup + // + MathJax.Hub.Browser.Select({ + MSIE: function (browser) { + HTMLCSS.msieHitBoxBug = true; + } + }); + + + MathJax.Hub.Startup.signal.Post("HTML-CSS maction Ready"); + MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/maction.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/menclose.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/menclose.js new file mode 100644 index 0000000..ad01696 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/menclose.js @@ -0,0 +1,317 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/autoload/menclose.js + * + * Implements the HTML-CSS output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + HTMLCSS = MathJax.OutputJax["HTML-CSS"]; + + var SVGNS = "http://www.w3.org/2000/svg"; + var VMLNS = "urn:schemas-microsoft-com:vml"; + var vmlns = "mjxvml"; + + MML.menclose.Augment({ + toHTML: function (span) { + var values = this.getValues("notation","thickness","padding","mathcolor","color"); + if (values.color && !this.mathcolor) {values.mathcolor = values.color} + if (values.thickness == null) {values.thickness = ".075em"} + if (values.padding == null) {values.padding = ".2em"} + span = this.HTMLcreateSpan(span); + var mu = this.HTMLgetMu(span), scale = this.HTMLgetScale(); + var p = HTMLCSS.length2em(values.padding,mu,1/HTMLCSS.em) * scale; // padding for enclosure + var t = HTMLCSS.length2em(values.thickness,mu,1/HTMLCSS.em); // thickness of lines (not scaled, see issue #414) + var SOLID = HTMLCSS.Em(t)+" solid"; + + var stack = HTMLCSS.createStack(span); + var base = HTMLCSS.createBox(stack); + this.HTMLmeasureChild(0,base); + var H = base.bbox.h+p+t, D = base.bbox.d+p+t, W = base.bbox.w+2*(p+t); + var frame = HTMLCSS.createFrame(stack,H+D,0,W,t,"none"); + frame.id = "MathJax-frame-"+this.spanID; + HTMLCSS.addBox(stack,frame); stack.insertBefore(frame,base); // move base to above background + var T = 0, B = 0, R = 0, L = 0, dx = 0, dy = 0; var svg, vml; + var w, h, r; + if (!values.mathcolor) {values.mathcolor = "black"} else {span.style.color = values.mathcolor} + + // perform some reduction e.g. eliminate duplicate notations. + var nl = MathJax.Hub.SplitList(values.notation), notation = {}; + for (var i = 0, m = nl.length; i < m; i++) notation[nl[i]] = true; + if (notation[MML.NOTATION.UPDIAGONALARROW]) notation[MML.NOTATION.UPDIAGONALSTRIKE] = false; + + var line; + for (var n in notation) { + if (!notation.hasOwnProperty(n) || !notation[n]) continue; + switch (n) { + case MML.NOTATION.BOX: + frame.style.border = SOLID; if (!HTMLCSS.msieBorderWidthBug) {T = B = L = R = t} + break; + + case MML.NOTATION.ROUNDEDBOX: + if (HTMLCSS.useVML) { + if (!vml) {vml = this.HTMLvml(stack,H,D,W,t,values.mathcolor)} + // roundrect.arcsize can't be set in IE8 standards mode, so use a path + r = Math.floor(1000*Math.min(W,H+D)-2*t); + w = Math.floor(4000*(W-2*t)), h = Math.floor(4000*(H+D-2*t)); + this.HTMLvmlElement(vml,"shape",{ + style: {width:this.HTMLpx(W-2*t),height:this.HTMLpx(H+D-2*t), + left:this.HTMLpx(t,.5),top:this.HTMLpx(t,.5)}, + path: "m "+r+",0 qx 0,"+r+" l 0,"+(h-r)+" qy "+r+","+h+" "+ + "l "+(w-r)+","+h+" qx "+w+","+(h-r)+" l "+w+","+r+" qy "+(w-r)+",0 x e", + coordsize: w+","+h + }); + } else { + if (!svg) {svg = this.HTMLsvg(stack,H,D,W,t,values.mathcolor)} + this.HTMLsvgElement(svg.firstChild,"rect",{ + x:1, y:1, width:this.HTMLpx(W-t)-1, + height:this.HTMLpx(H+D-t)-1, rx:this.HTMLpx(Math.min(H+D,W)/4) + }); + } + break; + + case MML.NOTATION.CIRCLE: + if (HTMLCSS.useVML) { + if (!vml) {vml = this.HTMLvml(stack,H,D,W,t,values.mathcolor)} + this.HTMLvmlElement(vml,"oval",{ + style: {width:this.HTMLpx(W-2*t),height:this.HTMLpx(H+D-2*t), + left:this.HTMLpx(t,.5),top:this.HTMLpx(t,.5)} + }); + } else { + if (!svg) {svg = this.HTMLsvg(stack,H,D,W,t,values.mathcolor)} + this.HTMLsvgElement(svg.firstChild,"ellipse",{ + rx:this.HTMLpx(W/2-t), ry:this.HTMLpx((H+D)/2-t), + cx:this.HTMLpx(W/2), cy:this.HTMLpx((H+D)/2) + }); + } + break; + + case MML.NOTATION.LEFT: + frame.style.borderLeft = SOLID; if (!HTMLCSS.msieBorderWidthBug) {L = t} + break; + + case MML.NOTATION.ACTUARIAL: + frame.style.borderTop = SOLID; if (!HTMLCSS.msieBorderWidthBug) {T = t; frame.bbox.w += p-t} + case MML.NOTATION.RIGHT: + frame.style.borderRight = SOLID; if (!HTMLCSS.msieBorderWidthBug) {R = t} + break; + + case MML.NOTATION.VERTICALSTRIKE: + line = HTMLCSS.createRule(stack,H+D-t/2,0,t); + HTMLCSS.addBox(stack,line); HTMLCSS.placeBox(line,p+t+base.bbox.w/2,-D,true); + break; + + case MML.NOTATION.TOP: + frame.style.borderTop = SOLID; if (!HTMLCSS.msieBorderWidthBug) {T = t} + break; + + case MML.NOTATION.BOTTOM: + frame.style.borderBottom = SOLID; if (!HTMLCSS.msieBorderWidthBug) {B = t} + break; + + case MML.NOTATION.HORIZONTALSTRIKE: + line = HTMLCSS.createRule(stack,t,0,W-t/2); + HTMLCSS.addBox(stack,line); HTMLCSS.placeBox(line,0,(H+D)/2-D,true); + break; + + case MML.NOTATION.UPDIAGONALSTRIKE: + if (HTMLCSS.useVML) { + if (!vml) {vml = this.HTMLvml(stack,H,D,W,t,values.mathcolor)} + line = this.HTMLvmlElement(vml,"line",{from: "0,"+this.HTMLpx(H+D-t), to: this.HTMLpx(W)+",0"}); + } else { + if (!svg) {svg = this.HTMLsvg(stack,H,D,W,t,values.mathcolor)} + this.HTMLsvgElement(svg.firstChild,"line",{ + x1:1, y1:this.HTMLpx(H+D-t), x2:this.HTMLpx(W-t), y2:this.HTMLpx(t) + }); + } + break; + + case MML.NOTATION.UPDIAGONALARROW: + if (HTMLCSS.useVML) { + if (!vml) {vml = this.HTMLvml(stack,H,D,W,t,values.mathcolor)} + line = this.HTMLvmlElement(vml,"line",{from: "0,"+this.HTMLpx(H+D-t), to: this.HTMLpx(W)+","+this.HTMLpx(t)}); + this.HTMLvmlElement(line,"stroke",{endarrow:"classic"}); + } else { + if (!svg) {svg = this.HTMLsvg(stack,H,D,W,t,values.mathcolor)} + var l = Math.sqrt(W*W + (H+D)*(H+D)), f = 1/l * 10*scale/HTMLCSS.em * t/.075; + w = W * f; h = (H+D) * f; var x = W - t/2, y = t/2; + if (y+h-.4*w < 0) {y = .4*w-h} + this.HTMLsvgElement(svg.firstChild,"line",{ + x1:1, y1:this.HTMLpx(H+D-t), x2:this.HTMLpx(x-.7*w), y2:this.HTMLpx(y+.7*h) + }); + this.HTMLsvgElement(svg.firstChild,"polygon",{ + points: this.HTMLpx(x)+","+this.HTMLpx(y)+" " + +this.HTMLpx(x-w-.4*h)+","+this.HTMLpx(y+h-.4*w)+" " + +this.HTMLpx(x-.7*w)+","+this.HTMLpx(y+.7*h)+" " + +this.HTMLpx(x-w+.4*h)+","+this.HTMLpx(y+h+.4*w)+" " + +this.HTMLpx(x)+","+this.HTMLpx(y), + fill:values.mathcolor, stroke:"none" + }); + } + break; + + case MML.NOTATION.DOWNDIAGONALSTRIKE: + if (HTMLCSS.useVML) { + if (!vml) {vml = this.HTMLvml(stack,H,D,W,t,values.mathcolor)} + this.HTMLvmlElement(vml,"line",{from: "0,0", to: this.HTMLpx(W)+","+this.HTMLpx(H+D-t)}); + } else { + if (!svg) {svg = this.HTMLsvg(stack,H,D,W,t,values.mathcolor)} + this.HTMLsvgElement(svg.firstChild,"line",{ + x1:1, y1:this.HTMLpx(t), x2:this.HTMLpx(W-t), y2:this.HTMLpx(H+D-t) + }); + } + break; + + case MML.NOTATION.MADRUWB: + frame.style.borderBottom = SOLID; + frame.style.borderRight = SOLID; if (!HTMLCSS.msieBorderWidthBug) {B = R = t} + break; + + case MML.NOTATION.RADICAL: + if (HTMLCSS.useVML) { + if (!vml) {vml = this.HTMLvml(stack,H,D,W,t,values.mathcolor)} + this.HTMLvmlElement(vml,"shape",{ + style: {width:this.HTMLpx(W), height:this.HTMLpx(H+D)}, + path: "m "+this.HTMLpt(t/2,.6*(H+D))+" l "+this.HTMLpt(p,H+D-t)+" "+ + this.HTMLpt(2*p,t/2)+" "+this.HTMLpt(W,t/2)+" e", + coordsize: this.HTMLpt(W,H+D) + }); + dx = p; + } else { + if (!svg) {svg = this.HTMLsvg(stack,H,D,W,t,values.mathcolor)} + this.HTMLsvgElement(svg.firstChild,"path",{ + d: "M 1,"+this.HTMLpx(.6*(H+D)) + + " L "+this.HTMLpx(p)+","+this.HTMLpx(H+D) + + " L "+this.HTMLpx(2*p)+",1 L "+this.HTMLpx(W)+",1" + }); + HTMLCSS.placeBox(svg.parentNode,0,p/2-D,true); + dx = p; dy = t; + } + break; + + case MML.NOTATION.LONGDIV: + if (HTMLCSS.useVML) { + if (!vml) {vml = this.HTMLvml(stack,H,D,W,t,values.mathcolor)} + this.HTMLvmlElement(vml,"line",{from: "0,"+this.HTMLpx(t/2), to: this.HTMLpx(W-t)+","+this.HTMLpx(t/2)}); + this.HTMLvmlElement(vml,"arc",{ + style: {width:this.HTMLpx(2*p),height:this.HTMLpx(H+D-2*t), + left:this.HTMLpx(-p),top:this.HTMLpx(t)}, + startangle:"10", endangle:"170" + }); + dx = p; + } else { + if (!svg) {svg = this.HTMLsvg(stack,H,D,W,t,values.mathcolor)} + this.HTMLsvgElement(svg.firstChild,"path",{ + d: "M "+this.HTMLpx(W)+",1 L 1,1 "+ + "a"+this.HTMLpx(p)+","+this.HTMLpx((H+D)/2-t)+" 0 0,1 1,"+this.HTMLpx(H+D-2*t) + }); + HTMLCSS.placeBox(svg.parentNode,0,t-D,true); + dx = p; dy = t; + } + break; + } + } + frame.style.width = HTMLCSS.Em(W-L-R); frame.style.height = HTMLCSS.Em(H+D-T-B); + HTMLCSS.placeBox(frame,0,dy-D,true); + HTMLCSS.placeBox(base,dx+p+t,0); + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + + HTMLpx: function (n) {return (n*HTMLCSS.em)}, + HTMLpt: function (x,y) {return Math.floor(1000*x)+','+Math.floor(1000*y)}, + + HTMLhandleColor: function (span) { + var frame = document.getElementById("MathJax-frame-"+this.spanID); + if (frame) { + // mathcolor is handled in toHTML above + var values = this.getValues("mathbackground","background"); + if (this.style && span.style.backgroundColor) { + values.mathbackground = span.style.backgroundColor; + span.style.backgroundColor = ""; + } + if (values.background && !this.mathbackground) {values.mathbackground = values.background} + if (values.mathbackground && values.mathbackground !== MML.COLOR.TRANSPARENT) + {frame.style.backgroundColor = values.mathbackground} + } else {this.SUPER(arguments).HTMLhandleColor.call(this,span)} + }, + + HTMLsvg: function (stack,H,D,W,t,color) { + var svg = document.createElementNS(SVGNS,"svg"); + if (svg.style) {svg.style.width = HTMLCSS.Em(W); svg.style.height = HTMLCSS.Em(H+D)} + var scale = HTMLCSS.createBox(stack); scale.appendChild(svg); + HTMLCSS.placeBox(scale,0,-D,true); + this.HTMLsvgElement(svg,"g",{fill:"none", stroke:color, "stroke-width":t*HTMLCSS.em}); + return svg; + }, + HTMLsvgElement: function (svg,type,def) { + var obj = document.createElementNS(SVGNS,type); obj.isMathJax = true; + if (def) {for (var id in def) {if (def.hasOwnProperty(id)) {obj.setAttributeNS(null,id,def[id].toString())}}} + svg.appendChild(obj); + return obj; + }, + HTMLvml: function (stack,H,D,W,t,color) { + var vml = HTMLCSS.createFrame(stack,H+D,0,W,0,"none"); + HTMLCSS.addBox(stack,vml); HTMLCSS.placeBox(vml,0,-D,true); + this.constructor.VMLcolor = color; this.constructor.VMLthickness = this.HTMLpx(t); + return vml; + }, + HTMLvmlElement: function (vml,type,def) { + var obj = HTMLCSS.addElement(vml,vmlns+":"+type,{isMathJax:true}); + obj.style.position = "absolute"; obj.style.left = obj.style.top = 0; + MathJax.Hub.Insert(obj,def); // IE8 needs to do this after obj is added to the page + if (!def.fillcolor) {obj.fillcolor = "none"} + if (!def.strokecolor) {obj.strokecolor = this.constructor.VMLcolor} + if (!def.strokeweight) {obj.strokeweight =this.constructor.VMLthickness} + return obj; + } + }); + + MathJax.Hub.Browser.Select({ + MSIE: function (browser) { + // + // IE8 and below doesn't have SVG, so use VML + // + if ((document.documentMode||0) < 9) { + MML.menclose.Augment({HTMLpx: function (n,d) {return (n*HTMLCSS.em+(d||0))+"px"}}); + HTMLCSS.useVML = true; + if (!document.namespaces[vmlns]) { + if (document.documentMode && document.documentMode === 8) { + document.namespaces.add(vmlns,VMLNS,"#default#VML"); + } else { + document.namespaces.add(vmlns,VMLNS); + document.createStyleSheet().addRule(vmlns+"\\: *","{behavior: url(#default#VML)}"); + } + } + } + } + }); + + + MathJax.Hub.Startup.signal.Post("HTML-CSS menclose Ready"); + MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/menclose.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/mglyph.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/mglyph.js new file mode 100644 index 0000000..297eb26 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/mglyph.js @@ -0,0 +1,117 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/autoload/mglyph.js + * + * Implements the HTML-CSS output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + HTMLCSS = MathJax.OutputJax["HTML-CSS"], + LOCALE = MathJax.Localization; + + MML.mglyph.Augment({ + toHTML: function (span,variant) { + var SPAN = span, values = this.getValues("src","width","height","valign","alt"), err; + span = this.HTMLcreateSpan(span); + if (values.src === "") { + var index = this.Get("index"); + if (index) { + variant = this.HTMLgetVariant(); var font = variant.defaultFont; + if (font) { + font.noStyleChar = true; font.testString = String.fromCharCode(index) + 'ABCabc'; + if (HTMLCSS.Font.testFont(font)) { + this.HTMLhandleVariant(span,variant,String.fromCharCode(index)); + } else { + if (values.alt === "") + {values.alt = LOCALE._(["MathML","BadMglyphFont"],"Bad font: %1",font.family)} + err = MML.Error(values.alt,{mathsize:"75%"}); + this.Append(err); err.toHTML(span); this.data.pop(); + span.bbox = err.HTMLspanElement().bbox; + } + } + } + } else { + if (!this.img) {this.img = MML.mglyph.GLYPH[values.src]} + if (!this.img) { + this.img = MML.mglyph.GLYPH[values.src] = {img: new Image(), status: "pending"}; + var img = this.img.img; + img.onload = MathJax.Callback(["HTMLimgLoaded",this]); + img.onerror = MathJax.Callback(["HTMLimgError",this]); + img.src = values.src; + MathJax.Hub.RestartAfter(img.onload); + } + if (this.img.status !== "OK") { + err = MML.Error( + LOCALE._(["MathML","BadMglyph"],"Bad mglyph: %1",values.src), + {mathsize:"75%"}); + this.Append(err); err.toHTML(span); this.data.pop(); + span.bbox = err.HTMLspanElement().bbox; + } else { + var mu = this.HTMLgetMu(span); + img = HTMLCSS.addElement(span,"img",{isMathJax:true, src:values.src, alt:values.alt, title:values.alt}); + if (values.width) { + if (String(values.width).match(/^\s*-?\d+\s*$/)) {values.width += "px"} + img.style.width = HTMLCSS.Em(HTMLCSS.length2em(values.width,mu,this.img.img.width/HTMLCSS.em)); + } + if (values.height) { + if (String(values.height).match(/^\s*-?\d+\s*$/)) {values.height += "px"} + img.style.height = HTMLCSS.Em(HTMLCSS.length2em(values.height,mu,this.img.img.height/HTMLCSS.em)); + } + span.bbox.w = span.bbox.rw = img.offsetWidth/HTMLCSS.em; + span.bbox.h = img.offsetHeight/HTMLCSS.em; + if (values.valign) { + if (String(values.valign).match(/^\s*-?\d+\s*$/)) {values.valign += "px"} + span.bbox.d = -HTMLCSS.length2em(values.valign,mu,this.img.img.height/HTMLCSS.em); + img.style.verticalAlign = HTMLCSS.Em(-span.bbox.d); + span.bbox.h -= span.bbox.d; + } + } + } + if (!SPAN.bbox) { + SPAN.bbox = {w: span.bbox.w, h: span.bbox.h, d: span.bbox.d, + rw: span.bbox.rw, lw: span.bbox.lw}; + } else if (span.bbox) { + SPAN.bbox.w += span.bbox.w; + if (SPAN.bbox.w > SPAN.bbox.rw) {SPAN.bbox.rw = SPAN.bbox.w} + if (span.bbox.h > SPAN.bbox.h) {SPAN.bbox.h = span.bbox.h} + if (span.bbox.d > SPAN.bbox.d) {SPAN.bbox.d = span.bbox.d} + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLimgLoaded: function (event,status) { + if (typeof(event) === "string") {status = event} + this.img.status = (status || "OK") + }, + HTMLimgError: function () {this.img.img.onload("error")} + },{ + GLYPH: {} // global list of all loaded glyphs + }); + + MathJax.Hub.Startup.signal.Post("HTML-CSS mglyph Ready"); + MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/mglyph.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/mmultiscripts.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/mmultiscripts.js new file mode 100644 index 0000000..0e213be --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/mmultiscripts.js @@ -0,0 +1,159 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js + * + * Implements the HTML-CSS output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + HTMLCSS = MathJax.OutputJax["HTML-CSS"]; + + MML.mmultiscripts.Augment({ + toHTML: function (span,HW,D) { + span = this.HTMLcreateSpan(span); var scale = this.HTMLgetScale(); + var stack = HTMLCSS.createStack(span), values; + var base = HTMLCSS.createBox(stack); + if (this.data[this.base]) { + var child = this.data[this.base].toHTML(base); + if (D != null) {this.data[this.base].HTMLstretchV(base,HW,D)} + else if (HW != null) {this.data[this.base].HTMLstretchH(base,HW)} + HTMLCSS.Measured(child,base); + } else {base.bbox = this.HTMLzeroBBox()} + var x_height = HTMLCSS.TeX.x_height * scale, + s = HTMLCSS.TeX.scriptspace * scale * .75; // FIXME: .75 can be removed when IC is right? + + var BOX = this.HTMLgetScripts(stack,s); + var sub = BOX[0], sup = BOX[1], presub = BOX[2], presup = BOX[3]; + + // children other than the base can be , + // , etc so try to get HTMLgetScale from the + // first element with a spanID. See issue 362. + var sscale = this.HTMLgetScale(); + for (var i = 1; i < this.data.length; i++) { + if (this.data[i] && this.data[i].spanID) { + sscale = this.data[i].HTMLgetScale(); + break; + } + } + + var q = HTMLCSS.TeX.sup_drop * sscale, r = HTMLCSS.TeX.sub_drop * sscale; + var u = base.bbox.h - q, v = base.bbox.d + r, delta = 0, p; + if (base.bbox.ic) {delta = base.bbox.ic} + if (this.data[this.base] && + (this.data[this.base].type === "mi" || this.data[this.base].type === "mo")) { + if (this.data[this.base].data.join("").length === 1 && base.bbox.scale === 1 && + !this.data[this.base].Get("largeop")) {u = v = 0} + } + var min = this.getValues("subscriptshift","superscriptshift"), mu = this.HTMLgetMu(span); + min.subscriptshift = (min.subscriptshift === "" ? 0 : HTMLCSS.length2em(min.subscriptshift,mu)); + min.superscriptshift = (min.superscriptshift === "" ? 0 : HTMLCSS.length2em(min.superscriptshift,mu)); + + var dx = 0; + if (presub) {dx = presub.bbox.w+delta} else if (presup) {dx = presup.bbox.w-delta} + if (dx < 0) {dx = 0}; + HTMLCSS.placeBox(base,dx,0); + + if (!sup && !presup) { + v = Math.max(v,HTMLCSS.TeX.sub1*scale,min.subscriptshift); + if (sub) {v = Math.max(v,sub.bbox.h-(4/5)*x_height)} + if (presub) {v = Math.max(v,presub.bbox.h-(4/5)*x_height)} + if (sub) {HTMLCSS.placeBox(sub,dx+base.bbox.w+s-delta,-v)} + if (presub) {HTMLCSS.placeBox(presub,0,-v)} + } else { + if (!sub && !presub) { + values = this.getValues("displaystyle","texprimestyle"); + p = HTMLCSS.TeX[(values.displaystyle ? "sup1" : (values.texprimestyle ? "sup3" : "sup2"))]; + u = Math.max(u,p*scale,min.superscriptshift); + if (sup) {u = Math.max(u,sup.bbox.d+(1/4)*x_height)} + if (presup) {u = Math.max(u,presup.bbox.d+(1/4)*x_height)} + if (sup) {HTMLCSS.placeBox(sup,dx+base.bbox.w+s,u)} + if (presup) {HTMLCSS.placeBox(presup,0,u)} + } else { + v = Math.max(v,HTMLCSS.TeX.sub2*scale); + var t = HTMLCSS.TeX.rule_thickness * scale; + var h = (sub||presub).bbox.h, d = (sup||presup).bbox.d; + if (presub) {h = Math.max(h,presub.bbox.h)} + if (presup) {d = Math.max(d,presup.bbox.d)} + if ((u - d) - (h - v) < 3*t) { + v = 3*t - u + d + h; q = (4/5)*x_height - (u - d); + if (q > 0) {u += q; v -= q} + } + u = Math.max(u,min.superscriptshift); v = Math.max(v,min.subscriptshift); + if (sup) {HTMLCSS.placeBox(sup,dx+base.bbox.w+s,u)} + if (presup) {HTMLCSS.placeBox(presup,dx+delta-presup.bbox.w,u)} + if (sub) {HTMLCSS.placeBox(sub,dx+base.bbox.w+s-delta,-v)} + if (presub) {HTMLCSS.placeBox(presub,dx-presub.bbox.w,-v)} + } + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLgetScripts: function (stack,s) { + var sup, sub, BOX = []; + var i = 1, m = this.data.length, W = 0; + for (var k = 0; k < 4; k += 2) { + while (i < m && this.data[i].type !== "mprescripts") { + for (var j = k; j < k+2; j++) { + if (this.data[i] && this.data[i].type !== "none") { + if (!BOX[j]) { + BOX[j] = HTMLCSS.createBox(stack); BOX[j].bbox = this.HTMLemptyBBox({}); + if (W) {HTMLCSS.createBlank(BOX[j],W); BOX[j].bbox.w = BOX[j].bbox.rw = W} + } + this.data[i].toHTML(BOX[j]); this.HTMLcombineBBoxes(this.data[i],BOX[j].bbox); + } + i++; + } + sub = BOX[k]; sup = BOX[k+1]; + if (sub && sup) { + if (sub.bbox.w < sup.bbox.w) { + HTMLCSS.createBlank(sub,sup.bbox.w-sub.bbox.w); + sub.bbox.w = sup.bbox.w; sub.bbox.rw = Math.max(sub.bbox.w,sub.bbox.rw); + } else if (sub.bbox.w > sup.bbox.w) { + HTMLCSS.createBlank(sup,sub.bbox.w-sup.bbox.w); + sup.bbox.w = sub.bbox.w; sup.bbox.rw = Math.max(sup.bbox.w,sup.bbox.rw); + } + } + if (sub) {W = sub.bbox.w} else if (sup) {W = sup.bbox.w} + } + i++; W = 0; + } + for (j = 0; j < 4; j++) { + if (BOX[j]) { + BOX[j].bbox.w += s; + BOX[j].bbox.rw = Math.max(BOX[j].bbox.w,BOX[j].bbox.rw); + this.HTMLcleanBBox(BOX[j].bbox); + } + } + return BOX; + }, + HTMLstretchH: MML.mbase.HTMLstretchH, + HTMLstretchV: MML.mbase.HTMLstretchV + }); + + MathJax.Hub.Startup.signal.Post("HTML-CSS mmultiscripts Ready"); + MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/mmultiscripts.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/ms.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/ms.js new file mode 100644 index 0000000..59502d1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/ms.js @@ -0,0 +1,57 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/autoload/ms.js + * + * Implements the HTML-CSS output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + HTMLCSS = MathJax.OutputJax["HTML-CSS"]; + + MML.ms.Augment({ + toHTML: function (span) { + span = this.HTMLhandleSize(this.HTMLcreateSpan(span)); + var values = this.getValues("lquote","rquote"); + var text = this.data.join(""); // FIXME: handle mglyph? + var pattern = []; + if (values.lquote.length === 1) {pattern.push(this.HTMLquoteRegExp(values.lquote))} + if (values.rquote.length === 1) {pattern.push(this.HTMLquoteRegExp(values.rquote))} + if (pattern.length) {text = text.replace(RegExp("("+pattern.join("|")+")","g"),"\\$1")} + this.HTMLhandleVariant(span,this.HTMLgetVariant(),values.lquote+text+values.rquote); + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + this.HTMLhandleDir(span); + return span; + }, + HTMLquoteRegExp: function (string) { + return string.replace(/([.*+?|{}()\[\]\\])/g,"\\$1"); + } + }); + MML.ms.prototype.defaults.mathvariant = 'monospace'; + + MathJax.Hub.Startup.signal.Post("HTML-CSS ms Ready"); + MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/ms.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/mtable.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/mtable.js new file mode 100644 index 0000000..995a986 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/mtable.js @@ -0,0 +1,495 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/autoload/mtable.js + * + * Implements the HTML-CSS output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + HTMLCSS = MathJax.OutputJax["HTML-CSS"]; + + MML.mtable.Augment({ + toHTML: function (span) { + span = this.HTMLcreateSpan(span); + if (this.data.length === 0) {return span} + var values = this.getValues("columnalign","rowalign","columnspacing","rowspacing", + "columnwidth","equalcolumns","equalrows", + "columnlines","rowlines","frame","framespacing", + "align","useHeight","width","side","minlabelspacing"); + var hasRelativeWidth = values.width.match(/%$/); + var stack = HTMLCSS.createStack(span); + var scale = this.HTMLgetScale(), mu = this.HTMLgetMu(span), LABEL = -1; + + var H = [], D = [], W = [], A = [], C = [], i, j, J = -1, m, M, s, row, cell, mo, entries = []; + var LHD = HTMLCSS.FONTDATA.baselineskip * scale * values.useHeight, HD, + LH = HTMLCSS.FONTDATA.lineH * scale, LD = HTMLCSS.FONTDATA.lineD * scale; + + // + // Create cells and measure columns and rows + // + for (i = 0, m = this.data.length; i < m; i++) { + row = this.data[i]; s = (row.type === "mlabeledtr" ? LABEL : 0); + A[i] = []; H[i] = D[i] = 0; + for (j = s, M = row.data.length + s; j < M; j++) { + if (W[j] == null) { + if (j > J) {J = j} + C[j] = HTMLCSS.createStack(HTMLCSS.createBox(stack)); + W[j] = -HTMLCSS.BIGDIMEN; + } + A[i][j] = HTMLCSS.createBox(C[j]); + entries.push(row.data[j-s].toHTML(A[i][j])); + } + } + HTMLCSS.MeasureSpans(entries); + for (i = 0, m = this.data.length; i < m; i++) { + row = this.data[i]; s = (row.type === "mlabeledtr" ? LABEL : 0); + for (j = s, M = row.data.length + s; j < M; j++) { + cell = row.data[j-s]; + if (cell.isMultiline) {A[i][j].style.width = "100%"} + if (cell.isEmbellished()) { + mo = cell.CoreMO(); + var min = mo.Get("minsize",true); + if (min) { + var bbox = mo.HTMLspanElement().bbox; + if (mo.HTMLcanStretch("Vertical")) { + HD = bbox.h + bbox.d; + if (HD) { + min = HTMLCSS.length2em(min,mu,HD); + if (min*bbox.h/HD > H[i]) {H[i] = min*bbox.h/HD} + if (min*bbox.d/HD > D[i]) {D[i] = min*bbox.d/HD} + } + } else if (mo.HTMLcanStretch("Horizontal")) { + min = HTMLCSS.length2em(min,mu,bbox.w); + if (min > W[j]) {W[j] = min} + } + } + } + if (A[i][j].bbox.h > H[i]) {H[i] = A[i][j].bbox.h} + if (A[i][j].bbox.d > D[i]) {D[i] = A[i][j].bbox.d} + if (A[i][j].bbox.w > W[j]) {W[j] = A[i][j].bbox.w} + } + } + if (H[0]+D[0]) {H[0] = Math.max(H[0],LH)} + if (H[A.length-1]+D[A.length-1]) {D[A.length-1] = Math.max(D[A.length-1],LD)} + + // + // Determine spacing and alignment + // + var SPLIT = MathJax.Hub.SplitList; + var CSPACE = SPLIT(values.columnspacing), + RSPACE = SPLIT(values.rowspacing), + CALIGN = SPLIT(values.columnalign), + RALIGN = SPLIT(values.rowalign), + CLINES = SPLIT(values.columnlines), + RLINES = SPLIT(values.rowlines), + CWIDTH = SPLIT(values.columnwidth), + RCALIGN = []; + for (i = 0, m = CSPACE.length; i < m; i++) {CSPACE[i] = HTMLCSS.length2em(CSPACE[i],mu)} + for (i = 0, m = RSPACE.length; i < m; i++) {RSPACE[i] = HTMLCSS.length2em(RSPACE[i],mu)} + while (CSPACE.length < J) {CSPACE.push(CSPACE[CSPACE.length-1])} + while (CALIGN.length <= J) {CALIGN.push(CALIGN[CALIGN.length-1])} + while (CLINES.length < J) {CLINES.push(CLINES[CLINES.length-1])} + while (CWIDTH.length <= J) {CWIDTH.push(CWIDTH[CWIDTH.length-1])} + while (RSPACE.length < A.length) {RSPACE.push(RSPACE[RSPACE.length-1])} + while (RALIGN.length <= A.length) {RALIGN.push(RALIGN[RALIGN.length-1])} + while (RLINES.length < A.length) {RLINES.push(RLINES[RLINES.length-1])} + if (C[LABEL]) { + CALIGN[LABEL] = (values.side.substr(0,1) === "l" ? "left" : "right"); + CSPACE[LABEL] = -W[LABEL]; + } + // + // Override row data + // + for (i = 0, m = A.length; i < m; i++) { + row = this.data[i]; RCALIGN[i] = []; + if (row.rowalign) {RALIGN[i] = row.rowalign} + if (row.columnalign) { + RCALIGN[i] = SPLIT(row.columnalign); + while (RCALIGN[i].length <= J) {RCALIGN[i].push(RCALIGN[i][RCALIGN[i].length-1])} + } + } + + // + // Handle equal heights + // + if (values.equalrows) { + // FIXME: should really be based on row align (below is for baseline) + var Hm = Math.max.apply(Math,H), Dm = Math.max.apply(Math,D); + for (i = 0, m = A.length; i < m; i++) + {s = ((Hm + Dm) - (H[i] + D[i])) / 2; H[i] += s; D[i] += s} + } + + // FIXME: do background colors for entire cell (include half the intercolumn space?) + + // + // Determine array total height + // + HD = H[0] + D[A.length-1]; + for (i = 0, m = A.length-1; i < m; i++) {HD += Math.max((H[i]+D[i] ? LHD : 0),D[i]+H[i+1]+RSPACE[i])} + // + // Determine frame and line sizes + // + var fx = 0, fy = 0, fW, fH = HD; + if (values.frame !== "none" || + (values.columnlines+values.rowlines).match(/solid|dashed/)) { + var frameSpacing = SPLIT(values.framespacing); + if (frameSpacing.length != 2) { + // invalid attribute value: use the default. + frameSpacing = SPLIT(this.defaults.framespacing); + } + fx = HTMLCSS.length2em(frameSpacing[0],mu); + fy = HTMLCSS.length2em(frameSpacing[1],mu); + fH = HD + 2*fy; // fW waits until stack.bbox.w is determined + } + // + // Compute alignment + // + var Y, fY, n = ""; + if (typeof(values.align) !== "string") {values.align = String(values.align)} + if (values.align.match(/(top|bottom|center|baseline|axis)( +(-?\d+))?/)) + {n = RegExp.$3; values.align = RegExp.$1} else {values.align = this.defaults.align} + if (n !== "") { + // + // Find the height of the given row + // + n = parseInt(n); + if (n < 0) {n = A.length + 1 + n} + if (n < 1) {n = 1} else if (n > A.length) {n = A.length} + Y = 0; fY = -(HD + fy) + H[0]; + for (i = 0, m = n-1; i < m; i++) { + // FIXME: Should handle values.align for final row + var dY = Math.max((H[i]+D[i] ? LHD : 0),D[i]+H[i+1]+RSPACE[i]); + Y += dY; fY += dY; + } + } else { + Y = ({ + top: -(H[0] + fy), + bottom: HD + fy - H[0], + center: HD/2 - H[0], + baseline: HD/2 - H[0], + axis: HD/2 + HTMLCSS.TeX.axis_height*scale - H[0] + })[values.align]; + fY = ({ + top: -(HD + 2*fy), + bottom: 0, + center: -(HD/2 + fy), + baseline: -(HD/2 + fy), + axis: HTMLCSS.TeX.axis_height*scale - HD/2 - fy + })[values.align]; + } + + var WW, WP = 0, Wt = 0, Wp = 0, p = 0, f = 0, P = [], F = [], Wf = 1; + // + if (values.equalcolumns && values.width !== "auto") { + // + // Handle equalcolumns for percent-width and fixed-width tables + // + if (hasRelativeWidth) { + // Set widths to percentages + WW = (100/(J+1)).toFixed(2).replace(/\.?0+$/,"")+"%"; + for (i = 0, m = Math.min(J+1,CWIDTH.length); i < m; i++) {CWIDTH[i] = WW} + // Get total column spacing + WW = 0; WP = 1; f = J+1; + for (i = 0, m = Math.min(J+1,CSPACE.length); i < m; i++) {WW += CSPACE[i]} + } else { + // Get total width minus column spacing + WW = HTMLCSS.length2em(values.width,mu); + for (i = 0, m = Math.min(J+1,CSPACE.length); i < m; i++) {WW -= CSPACE[i]} + // Determine individual column widths + WW /= J+1; + for (i = 0, m = Math.min(J+1,CWIDTH.length); i < m; i++) {W[i] = WW} + } + } else { + // + // Get column widths for fit and percentage columns + // + // Calculate the natural widths and percentage widths, + // while keeping track of the fit and percentage columns + for(i = 0, m = Math.min(J+1,CWIDTH.length); i < m; i++) { + if (CWIDTH[i] === "auto") {Wt += W[i]} + else if (CWIDTH[i] === "fit") {F[f] = i; f++; Wt += W[i]} + else if (CWIDTH[i].match(/%$/)) + {P[p] = i; p++; Wp += W[i]; WP += HTMLCSS.length2em(CWIDTH[i],mu,1)} + else {W[i] = HTMLCSS.length2em(CWIDTH[i],mu); Wt += W[i]} + } + if (hasRelativeWidth) { + // Get separation width and check percentages + WW = 0; for (i = 0, m = Math.min(J,CSPACE.length); i < m; i++) {WW += CSPACE[i]} + if (WP > .98) {Wf = .98/WP; WP = .98} + } else { + // Get the full width (excluding inter-column spacing) + if (values.width === "auto") { + if (WP > .98) {Wf = Wp/(Wt+Wp); WW = Wt + Wp} else {WW = Wt / (1-WP)} + } else { + WW = HTMLCSS.length2em(values.width,mu); + for (i = 0, m = Math.min(J+1,CSPACE.length); i < m; i++) {WW -= CSPACE[i]} + } + // Determine the relative column widths + for (i = 0, m = P.length; i < m; i++) { + W[P[i]] = HTMLCSS.length2em(CWIDTH[P[i]],mu,WW*Wf); Wt += W[P[i]]; + } + // Stretch fit columns, if any, otherwise stretch (or shrink) everything + if (Math.abs(WW - Wt) > .01) { + if (f && WW > Wt) { + WW = (WW - Wt) / f; for (i = 0, m = F.length; i < m; i++) {W[F[i]] += WW} + } else {WW = WW/Wt; for (j = 0; j <= J; j++) {W[j] *= WW}} + } + // + // Handle equal columns + // + if (values.equalcolumns) { + var Wm = Math.max.apply(Math,W); + for (j = 0; j <= J; j++) {W[j] = Wm} + } + } + } + + // + // Lay out array columns + // + var y = Y, dy, line, align; s = (C[LABEL] ? LABEL : 0); + for (j = s; j <= J; j++) { + for (i = 0, m = A.length; i < m; i++) { + if (A[i][j]) { + s = (this.data[i].type === "mlabeledtr" ? LABEL : 0); + cell = this.data[i].data[j-s]; + if (cell.HTMLcanStretch("Horizontal")) { + A[i][j].bbox = cell.HTMLstretchH(C[j],W[j]).bbox; + } else if (cell.HTMLcanStretch("Vertical")) { + mo = cell.CoreMO(); + var symmetric = mo.symmetric; mo.symmetric = false; + A[i][j].bbox = cell.HTMLstretchV(C[j],H[i],D[i]).bbox; A[i][j].HH = null; + mo.symmetric = symmetric; + } + align = cell.rowalign||this.data[i].rowalign||RALIGN[i]; + dy = ({top: H[i] - A[i][j].bbox.h, + bottom: A[i][j].bbox.d - D[i], + center: ((H[i]-D[i]) - (A[i][j].bbox.h-A[i][j].bbox.d))/2, + baseline: 0, axis: 0})[align] || 0; // FIXME: handle axis better? + align = (cell.columnalign||RCALIGN[i][j]||CALIGN[j]); + HTMLCSS.alignBox(A[i][j],align,y+dy); + } + if (i < A.length-1) {y -= Math.max((H[i]+D[i] ? LHD : 0),D[i]+H[i+1]+RSPACE[i])} + } + y = Y; + } + + // + // Set column widths and placement + // + if (hasRelativeWidth) { + // + // Remove column spacing to get width available for columns + // + var box = HTMLCSS.createBox(stack); box.style.left = box.style.top = 0; + box.style.right = HTMLCSS.Em(WW+2*fx); box.style.display = "inline-block"; + box.style.height = "0px"; + if (HTMLCSS.msieRelativeWidthBug) { + box = HTMLCSS.createBox(box); box.style.position = "relative"; + box.style.height = "1em"; box.style.width = "100%"; box.bbox = stack.bbox; + } + // + // wp = remaining width (%) divided by the number of columns it is split over + // wm = remaining width (fixed) divided by the number of columns it is split over + // + var xp = 0, xf = fx, wp, wm; + if (f) {wp = 100*(1-WP)/f, wm = Wt/f} else {wp = 100*(1-WP)/(J+1); wm = Wt/(J+1)} + for (j = 0; j <= J; j++) { + HTMLCSS.placeBox(C[j].parentNode,0,0); // sets the bbox + // + // Convert original column to the innermost span in the mobile column + // + C[j].style.position = "relative"; + C[j].style.left = HTMLCSS.Em(xf); + C[j].style.width = "100%"; + C[j].parentNode.parentNode.removeChild(C[j].parentNode); + var Cj = HTMLCSS.createBox(box); HTMLCSS.addBox(Cj,C[j]); C[j] = Cj; + var CjStyle = Cj.style; CjStyle.display = "inline-block"; CjStyle.left = xp + "%"; + // + // Set width/position based on the type of column + // + if (CWIDTH[j].match(/%$/)) { + var pp = parseFloat(CWIDTH[j]) * Wf; + if (f === 0) { + CjStyle.width = (wp + pp) + "%"; xp += wp + pp; + Cj = HTMLCSS.createBox(Cj); HTMLCSS.addBox(Cj,C[j].firstChild); + Cj.style.left = 0; Cj.style.right = HTMLCSS.Em(wm); xf -= wm; + } else { + CjStyle.width = pp + "%"; xp += pp; + } + } else if (CWIDTH[j] === "fit" || f === 0) { + CjStyle.width = wp + "%"; + Cj = HTMLCSS.createBox(Cj); HTMLCSS.addBox(Cj,C[j].firstChild); + Cj.style.left = 0; Cj.style.right = HTMLCSS.Em(wm-W[j]); + xf += W[j] - wm; xp += wp; + } else { + CjStyle.width = HTMLCSS.Em(W[j]); xf += W[j]; + } + if (HTMLCSS.msieRelativeWidthBug) { + HTMLCSS.addText(Cj.firstChild,HTMLCSS.NBSP); // gets correct baseline + Cj.firstChild.style.position = "relative"; + } + xf += CSPACE[j]; + // + // Add column lines + // + if (CLINES[j] !== "none" && j < J && j !== LABEL) { + line = HTMLCSS.createBox(box); line.style.left = xp+"%"; + line = HTMLCSS.createRule(line,fH,0,1.25/HTMLCSS.em); line.style.position = "absolute"; + line.bbox = {h:fH, d:0, w:0, rw:1.25/HTMLCSS.em, lw:0}; + line.parentNode.bbox = stack.bbox; // make sure stack size is updated + HTMLCSS.placeBox(line,xf-CSPACE[j]/2,fY,true); line.style.borderStyle = CLINES[j]; + } + } + } else { + // + // Set the column box widths and place them + // + var x = fx; + for (j = 0; j <= J; j++) { + if (!C[j].bbox.width) {HTMLCSS.setStackWidth(C[j],W[j])} + if (CWIDTH[j] !== "auto" && CWIDTH[j] !== "fit") + {C[j].bbox.width = W[j]; C[j].bbox.isFixed = true} + HTMLCSS.placeBox(C[j].parentNode,x,0); x += W[j] + CSPACE[j]; + // + // Add column lines + // + if (CLINES[j] !== "none" && j < J && j !== LABEL) { + line = HTMLCSS.createRule(stack,fH,0,1.25/HTMLCSS.em); HTMLCSS.addBox(stack,line); + line.bbox = {h:fH, d:0, w:0, rw:1.25/HTMLCSS.em, lw:0}; + HTMLCSS.placeBox(line,x-CSPACE[j]/2,fY,true); line.style.borderStyle = CLINES[j]; + } + } + } + stack.bbox.d = -fY; stack.bbox.h = fH+fY; + HTMLCSS.setStackWidth(stack,stack.bbox.w + fx); + + // + // Add frame + // + fW = stack.bbox.w; var frame; + if (values.frame !== "none") { + frame = HTMLCSS.createFrame(stack,fH,0,fW,1.25/HTMLCSS.em,values.frame); + HTMLCSS.addBox(stack,frame); HTMLCSS.placeBox(frame,0,fY,true); + if (hasRelativeWidth) {frame.style.width = "100%"} + } + // + // Add row lines + // + y = Y; + for (i = 0, m = A.length-1; i < m; i++) { + dy = Math.max(LHD,D[i]+H[i+1]+RSPACE[i]); + if (RLINES[i] !== "none") { + line = HTMLCSS.createRule(stack,1.25/HTMLCSS.em,0,fW); HTMLCSS.addBox(stack,line); + line.bbox = {h:1.25/HTMLCSS.em, d:0, w:fW, rw:fW, lw:0}; + HTMLCSS.placeBox(line,0,y - D[i] - (dy-D[i]-H[i+1])/2,true); + if (RLINES[i] === "dashed" || hasRelativeWidth) { + line.style.borderTop = line.style.height+" "+RLINES[i]; line.style.height = 0; + line.style.width = line.style.borderLeftWidth; line.style.borderLeft = ""; + if (hasRelativeWidth) {line.style.width = "100%"} + } + } + y -= dy; + } + // + // Set relative width + // + if (hasRelativeWidth) {span.bbox.width = values.width; stack.style.width = "100%"} + // + // Place the labels, if any + // + if (C[LABEL]) { + var mw = stack.bbox.w, dw; + var indent = this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift"); + if (indent.indentalignfirst !== MML.INDENTALIGN.INDENTALIGN) {indent.indentalign = indent.indentalignfirst} + if (indent.indentalign === MML.INDENTALIGN.AUTO) {indent.indentalign = this.displayAlign} + if (indent.indentshiftfirst !== MML.INDENTSHIFT.INDENTSHIFT) {indent.indentshift = indent.indentshiftfirst} + if (indent.indentshift === "auto") {indent.indentshift = this.displayIndent} + var eqn = HTMLCSS.createStack(span,false,"100%"); + HTMLCSS.addBox(eqn,stack); HTMLCSS.alignBox(stack,indent.indentalign,0); + if (indent.indentshift && indent.indentalign !== MML.INDENTALIGN.CENTER) { + dw = HTMLCSS.length2em(indent.indentshift,mu); mw += dw; + stack.style[indent.indentalign] = HTMLCSS.Em(dw); + } + C[LABEL].parentNode.parentNode.removeChild(C[LABEL].parentNode); + HTMLCSS.addBox(eqn,C[LABEL]); HTMLCSS.alignBox(C[LABEL],CALIGN[LABEL],0); + if (HTMLCSS.msieRelativeWidthBug) {stack.style.top = C[LABEL].style.top = ""} + if (hasRelativeWidth) {stack.style.width = values.width; span.bbox.width = "100%"} + dw = HTMLCSS.length2em(values.minlabelspacing,mu); + C[LABEL].style.marginRight = C[LABEL].style.marginLeft = HTMLCSS.Em(dw); + if (indent.indentalign === MML.INDENTALIGN.CENTER) {mw += 4*dw + 2*C[LABEL].bbox.w} + else if (indent.indentalign !== CALIGN[LABEL]) {mw += 2*dw + C[LABEL].bbox.w} + span.style.minWidth = span.bbox.minWidth = + eqn.style.minWidth = eqn.bbox.minWidth = HTMLCSS.Em(mw); + } + // + // Finish the table + // + if (!hasRelativeWidth) {this.HTMLhandleSpace(span)} + var color = this.HTMLhandleColor(span); + // + // Handle relative-sized background color + // + if (color && hasRelativeWidth) { + if (!frame) { + frame = HTMLCSS.createFrame(stack,fH,0,fW,0,"none"); + HTMLCSS.addBox(stack,frame); HTMLCSS.placeBox(frame,0,fY,true); + frame.style.width = "100%"; + } + frame.style.backgroundColor = color.style.backgroundColor; + frame.parentNode.insertBefore(frame,frame.parentNode.firstChild); + color.parentNode.removeChild(color); + } + return span; + }, + HTMLhandleSpace: function (span) { + span.bbox.keepPadding = true; span.bbox.exact = true; + if (!this.hasFrame && span.bbox.width == null) + {span.style.paddingLeft = span.style.paddingRight = HTMLCSS.Em(1/6)} + this.SUPER(arguments).HTMLhandleSpace.call(this,span); + } + }); + + MML.mtd.Augment({ + toHTML: function (span,HW,D) { + span = this.HTMLcreateSpan(span); + if (this.data[0]) { + var box = this.data[0].toHTML(span); + if (D != null) {box = this.data[0].HTMLstretchV(span,HW,D)} + else if (HW != null) {box = this.data[0].HTMLstretchH(span,HW)} + span.bbox = box.bbox; + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLstretchH: MML.mbase.HTMLstretchH, + HTMLstretchV: MML.mbase.HTMLstretchV + }); + + MathJax.Hub.Startup.signal.Post("HTML-CSS mtable Ready"); + MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/mtable.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/multiline.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/multiline.js new file mode 100644 index 0000000..60916f6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/autoload/multiline.js @@ -0,0 +1,710 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/autoload/multiline.js + * + * Implements the HTML-CSS output for 's that contain line breaks. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + HTMLCSS = MathJax.OutputJax["HTML-CSS"]; + + // + // Penalties for the various line breaks + // + var PENALTY = { + newline: 0, + nobreak: 1000000, + goodbreak: [-200], + badbreak: [+200], + auto: [0], + + toobig: 800, + nestfactor: 400, + spacefactor: -100, + spaceoffset: 2, + spacelimit: 1, // spaces larger than this get a penalty boost + fence: 500, + close: 500 + }; + + var ENDVALUES = {linebreakstyle: "after"}; + + + /**************************************************************************/ + + MML.mbase.Augment({ + HTMLlinebreakPenalty: PENALTY, + + /****************************************************************/ + // + // Handle breaking an mrow into separate lines + // + HTMLmultiline: function (span) { + + // + // Find the parent element and mark it as multiline + // + var parent = this; + while (parent.inferred || (parent.parent && parent.parent.type === "mrow" && + parent.parent.data.length === 1)) {parent = parent.parent} + var isTop = ((parent.type === "math" && parent.Get("display") === "block") || + parent.type === "mtd"); + parent.isMultiline = true; + + // + // Default values for the line-breaking parameters + // + var VALUES = this.getValues( + "linebreak","linebreakstyle","lineleading","linebreakmultchar", + "indentalign","indentshift", + "indentalignfirst","indentshiftfirst", + "indentalignlast","indentshiftlast" + ); + if (VALUES.linebreakstyle === MML.LINEBREAKSTYLE.INFIXLINEBREAKSTYLE) + {VALUES.linebreakstyle = this.Get("infixlinebreakstyle")} + VALUES.lineleading = HTMLCSS.length2em(VALUES.lineleading,1,0.5); + + // + // Remove old color and break the span at its best line breaks + // + this.HTMLremoveColor(span); + var stack = HTMLCSS.createStack(span); + var state = { + n: 0, Y: 0, + scale: this.HTMLgetScale(), + isTop: isTop, + values: {}, + VALUES: VALUES + }, + align = this.HTMLgetAlign(state,{}), + shift = this.HTMLgetShift(state,{},align), + start = [], + end = { + index:[], penalty:PENALTY.nobreak, + w:0, W:shift, shift:shift, scanW:shift, + nest: 0 + }, + broken = false; + + while (this.HTMLbetterBreak(end,state) && + (end.scanW >= HTMLCSS.linebreakWidth || end.penalty == PENALTY.newline)) { + this.HTMLaddLine(stack,start,end.index,state,end.values,broken); + start = end.index.slice(0); broken = true; + align = this.HTMLgetAlign(state,end.values); + shift = this.HTMLgetShift(state,end.values,align); + if (align === MML.INDENTALIGN.CENTER) {shift = 0} + end.W = end.shift = end.scanW = shift; end.penalty = PENALTY.nobreak; + } + state.isLast = true; + this.HTMLaddLine(stack,start,[],state,ENDVALUES,broken); + + // + // Make top-level spans 100% wide. + // Finish up the space and add the color again + // + if (isTop) { + stack.style.width = "100%"; + if (parent.type === "math") {span.bbox.width = "100%"} + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + span.bbox.isMultiline = true; + + return span; + }, + + /****************************************************************/ + // + // Locate the next linebreak that is better than the current one + // + HTMLbetterBreak: function (info,state) { + if (this.isToken) {return false} // FIXME: handle breaking of token elements + if (this.isEmbellished()) { + info.embellished = this; + return this.CoreMO().HTMLbetterBreak(info,state); + } + if (this.linebreakContainer) {return false} + // + // Get the current breakpoint position and other data + // + var index = info.index.slice(0), i = info.index.shift(), + m = this.data.length, W, w, scanW, broken = (info.index.length > 0), better = false; + if (i == null) {i = -1}; if (!broken) {i++; info.W += info.w; info.w = 0} + scanW = info.scanW = info.W; info.nest++; + // + // Look through the line for breakpoints, + // (as long as we are not too far past the breaking width) + // + while (i < m && info.scanW < 1.33*HTMLCSS.linebreakWidth) { + if (this.data[i]) { + if (this.data[i].HTMLbetterBreak(info,state)) { + better = true; index = [i].concat(info.index); W = info.W; w = info.w; + if (info.penalty === PENALTY.newline) { + info.index = index; + if (info.nest) {info.nest--} + return true; + } + } + scanW = (broken ? info.scanW : this.HTMLaddWidth(i,info,scanW)); + } + info.index = []; i++; broken = false; + } + if (info.nest) {info.nest--} + info.index = index; + if (better) {info.W = W; info.w = w} + return better; + }, + HTMLaddWidth: function (i,info,scanW) { + if (this.data[i]) { + var span = this.data[i].HTMLspanElement(); + scanW += span.bbox.w; + if (span.style.paddingLeft) {scanW += HTMLCSS.unEm(span.style.paddingLeft)} + if (span.style.paddingRight) {scanW += HTMLCSS.unEm(span.style.paddingRight)} + info.W = info.scanW = scanW; info.w = 0; + } + return scanW; + }, + + /****************************************************************/ + // + // Create a new line and move the required elements into it + // Position it using proper alignment and indenting + // + HTMLaddLine: function (stack,start,end,state,values,broken) { + // + // Create a box for the line, with empty BBox + // fill it with the proper elements, + // and clean up the bbox + // + line = HTMLCSS.createBox(stack); + line.bbox = this.HTMLemptyBBox({}); + state.first = broken; state.last = true; + this.HTMLmoveLine(start,end,line,state,values); + this.HTMLcleanBBox(line.bbox); + // + // Get the alignment and shift values + // + var align = this.HTMLgetAlign(state,values), + shift = this.HTMLgetShift(state,values,align); + // + // Add in space for the shift + // + if (shift) { + HTMLCSS.createBlank(line,shift,(align !== MML.INDENTALIGN.RIGHT)); + line.bbox.w += shift; line.bbox.rw += shift; + } + // + // Set the Y offset based on previous depth, leading, and current height + // + if (state.n > 0) { + var LHD = HTMLCSS.FONTDATA.baselineskip * state.scale; + var leading = (state.values.lineleading == null ? state.VALUES : state.values).lineleading; + state.Y -= Math.max(LHD,state.d + line.bbox.h + leading); + } + // + // Place the new line + // + HTMLCSS.alignBox(line,align,state.Y); + // + // Save the values needed for the future + // + state.d = line.bbox.d; state.values = values; state.n++; + }, + + /****************************************************************/ + // + // Get alignment and shift values from the given data + // + HTMLgetAlign: function (state,values) { + var cur = values, prev = state.values, def = state.VALUES, align; + if (state.n === 0) {align = cur.indentalignfirst || prev.indentalignfirst || def.indentalignfirst} + else if (state.isLast) {align = prev.indentalignlast || def.indentalignlast} + else {align = prev.indentalign || def.indentalign} + if (align === MML.INDENTALIGN.INDENTALIGN) {align = prev.indentalign || def.indentalign} + if (align === MML.INDENTALIGN.AUTO) {align = (state.isTop ? this.displayAlign : MML.INDENTALIGN.LEFT)} + return align; + }, + HTMLgetShift: function (state,values,align) { + if (align === MML.INDENTALIGN.CENTER) {return 0} + var cur = values, prev = state.values, def = state.VALUES, shift; + if (state.n === 0) {shift = cur.indentshiftfirst || prev.indentshiftfirst || def.indentshiftfirst} + else if (state.isLast) {shift = prev.indentshiftlast || def.indentshiftlast} + else {shift = prev.indentshift || def.indentshift} + if (shift === MML.INDENTSHIFT.INDENTSHIFT) {shift = prev.indentshift || def.indentshift} + if (shift === "auto" || shift === "") {shift = (state.isTSop ? this.displayIndent : "0")} + return HTMLCSS.length2em(shift,0); + }, + + /****************************************************************/ + // + // Move the selected elements into the new line's span, + // moving whole items when possible, and parts of ones + // that are split by a line break. + // + HTMLmoveLine: function (start,end,span,state,values) { + var i = start[0], j = end[0]; + if (i == null) {i = -1}; if (j == null) {j = this.data.length-1} + if (i === j && start.length > 1) { + // + // If starting and ending in the same element move the subpiece to the new line + // + this.data[i].HTMLmoveSlice(start.slice(1),end.slice(1),span,state,values,"paddingLeft"); + } else { + // + // Otherwise, move the remainder of the initial item + // and any others up to the last one + // + var last = state.last; state.last = false; + while (i < j) { + if (this.data[i]) { + if (start.length <= 1) {this.data[i].HTMLmoveSpan(span,state,values)} + else {this.data[i].HTMLmoveSlice(start.slice(1),[],span,state,values,"paddingLeft")} + } + i++; state.first = false; start = []; + } + // + // If the last item is complete, move it, + // otherwise move the first part of it up to the split + // + state.last = last; + if (this.data[i]) { + if (end.length <= 1) {this.data[i].HTMLmoveSpan(span,state,values)} + else {this.data[i].HTMLmoveSlice([],end.slice(1),span,state,values,"paddingRight")} + } + } + }, + + /****************************************************************/ + // + // Split an element and copy the selected items into the new part + // + HTMLmoveSlice: function (start,end,span,state,values,padding) { + // + // Get rid of color, if any (added back in later) + // Create a new span for the slice of the element + // Move the selected portion into the slice + // If it is the last slice + // Remove the original (now empty) span + // Rename the Continue-0 span with the original name (for HTMLspanElement) + // Add back the color + // + this.HTMLremoveColor(); + var slice = this.HTMLcreateSliceSpan(span); + this.HTMLmoveLine(start,end,slice,state,values); + slice.style[padding] = ""; + this.HTMLcombineBBoxes(slice,span.bbox); + this.HTMLcleanBBox(slice.bbox); + if (end.length === 0) { + span = this.HTMLspanElement(); + span.parentNode.removeChild(span); + span.nextMathJaxSpan.id = span.id; var n = 0; + while (span = span.nextMathJaxSpan) { + var color = this.HTMLhandleColor(span); + if (color) {color.id += "-MathJax-Continue-"+n; n++} + } + } + return slice; + }, + + /****************************************************************/ + // + // Create a new span for an element that is split in two + // Clone the original and update its ID. + // Link the old span to the new one so we can find it later + // + HTMLcreateSliceSpan: function (span) { + var SPAN = this.HTMLspanElement(), n = 0; + var LAST = SPAN; while (LAST.nextMathJaxSpan) {LAST = LAST.nextMathJaxSpan; n++} + var SLICE = SPAN.cloneNode(false); LAST.nextMathJaxSpan = SLICE; SLICE.nextMathJaxSpan = null; + SLICE.id += "-MathJax-Continue-"+n; + SLICE.bbox = this.HTMLemptyBBox({}); + return span.appendChild(SLICE); + }, + + /****************************************************************/ + // + // Move an element from its original span to its new location in + // a split element or the new line's span + // + HTMLmoveSpan: function (line,state,values) { + // FIXME: handle linebreakstyle === "duplicate" + // FIXME: handle linebreakmultchar + if (!(state.first || state.last) || + (state.first && state.values.linebreakstyle === MML.LINEBREAKSTYLE.BEFORE) || + (state.last && values.linebreakstyle === MML.LINEBREAKSTYLE.AFTER)) { + // + // Move color and span + // + var color = document.getElementById("MathJax-Color-"+this.spanID+HTMLCSS.idPostfix); + if (color) {line.appendChild(color)} + var span = this.HTMLspanElement(); + line.appendChild(span); + // + // If it is last, remove right padding + // If it is first, remove left padding and recolor + // + if (state.last) {span.style.paddingRight = ""} + if (state.first || state.nextIsFirst) { + delete state.nextIsFirst; + span.style.paddingLeft = ""; + if (color) {this.HTMLremoveColor(span); this.HTMLhandleColor(span)} + } + // + // Update bounding box + // + this.HTMLcombineBBoxes(this,line.bbox); + } else if (state.first) {state.nextIsFirst = true} else {delete state.nextIsFirst} + } + }); + + /**************************************************************************/ + + MML.mfenced.Augment({ + HTMLbetterBreak: function (info,state) { + // + // Get the current breakpoint position and other data + // + var index = info.index.slice(0), i = info.index.shift(), + m = this.data.length, W, w, scanW, broken = (info.index.length > 0), better = false; + if (i == null) {i = -1}; if (!broken) {i++; info.W += info.w; info.w = 0} + scanW = info.scanW = info.W; info.nest++; + // + // Create indices that include the delimiters and separators + // + if (!this.dataI) { + this.dataI = []; + if (this.data.open) {this.dataI.push("open")} + if (m) {this.dataI.push(0)} + for (var j = 1; j < m; j++) { + if (this.data["sep"+j]) {this.dataI.push("sep"+j)} + this.dataI.push(j); + } + if (this.data.close) {this.dataI.push("close")} + } + m = this.dataI.length; + // + // Look through the line for breakpoints, including the open, close, and separators + // (as long as we are not too far past the breaking width) + // + while (i < m && info.scanW < 1.33*HTMLCSS.linebreakWidth) { + var k = this.dataI[i]; + if (this.data[k]) { + if (this.data[k].HTMLbetterBreak(info,state)) { + better = true; index = [i].concat(info.index); W = info.W; w = info.w; + if (info.penalty === PENALTY.newline) { + info.index = index; + if (info.nest) {info.nest--} + return true} + } + scanW = (broken ? info.scanW : this.HTMLaddWidth(i,info,scanW)); + } + info.index = []; i++; broken = false; + } + if (info.nest) {info.nest--} + info.index = index; + if (better) {info.W = W; info.w = w} + return better; + }, + + HTMLmoveLine: function (start,end,span,state,values) { + var i = start[0], j = end[0]; + if (i == null) {i = -1}; if (j == null) {j = this.dataI.length-1} + if (i === j && start.length > 1) { + // + // If starting and ending in the same element move the subpiece to the new line + // + this.data[this.dataI[i]].HTMLmoveSlice(start.slice(1),end.slice(1),span,state,values,"paddingLeft"); + } else { + // + // Otherwise, move the remainder of the initial item + // and any others (including open and separators) up to the last one + // + var last = state.last; state.last = false; var k = this.dataI[i]; + while (i < j) { + if (this.data[k]) { + if (start.length <= 1) {this.data[k].HTMLmoveSpan(span,state,values)} + else {this.data[k].HTMLmoveSlice(start.slice(1),[],span,state,values,"paddingLeft")} + } + i++; k = this.dataI[i]; state.first = false; start = []; + } + // + // If the last item is complete, move it + // + state.last = last; + if (this.data[k]) { + if (end.length <= 1) {this.data[k].HTMLmoveSpan(span,state,values)} + else {this.data[k].HTMLmoveSlice([],end.slice(1),span,state,values,"paddingRight")} + } + } + } + + }); + + /**************************************************************************/ + + MML.msubsup.Augment({ + HTMLbetterBreak: function (info,state) { + if (!this.data[this.base]) {return false} + // + // Get the current breakpoint position and other data + // + var index = info.index.slice(0), i = info.index.shift(), + W, w, scanW, broken = (info.index.length > 0), better = false; + if (!broken) {info.W += info.w; info.w = 0} + scanW = info.scanW = info.W; + // + // Record the width of the base and the super- and subscripts + // + if (i == null) { + this.HTMLbaseW = this.data[this.base].HTMLspanElement().bbox.w; + this.HTMLdw = this.HTMLspanElement().bbox.w - this.HTMLbaseW; + } + // + // Check if the base can be broken + // + if (this.data[this.base].HTMLbetterBreak(info,state)) { + better = true; index = [this.base].concat(info.index); W = info.W; w = info.w; + if (info.penalty === PENALTY.newline) {better = broken = true} + } + // + // Add in the base if it is unbroken, and add the scripts + // + if (!broken) {this.HTMLaddWidth(this.base,info,scanW)} + info.scanW += this.HTMLdw; info.W = info.scanW; + info.index = []; if (better) {info.W = W; info.w = w; info.index = index} + return better; + }, + + HTMLmoveLine: function (start,end,span,state,values) { + // + // Move the proper part of the base + // + if (this.data[this.base]) { + if (start.length > 1) { + this.data[this.base].HTMLmoveSlice(start.slice(1),end.slice(1),span,state,values,"paddingLeft"); + } else { + if (end.length <= 1) {this.data[this.base].HTMLmoveSpan(span,state,values)} + else {this.data[this.base].HTMLmoveSlice([],end.slice(1),span,state,values,"paddingRight")} + } + } + // + // If this is the end, check for super and subscripts, and move those + // by moving the stack that contains them, and shifting by the amount of the + // base that has been removed. Remove the empty base box from the stack. + // + if (end.length === 0) { + var s = this.data[this.sup] || this.data[this.sub]; + if (s) { + var box = s.HTMLspanElement().parentNode, stack = box.parentNode; + if (this.data[this.base]) {stack.removeChild(stack.firstChild)} + for (box = stack.firstChild; box; box = box.nextSibling) + {box.style.left = HTMLCSS.Em(HTMLCSS.unEm(box.style.left)-this.HTMLbaseW)} + stack.bbox.w -= this.HTMLbaseW; stack.style.width = HTMLCSS.Em(stack.bbox.w); + this.HTMLcombineBBoxes(stack,span.bbox); + span.appendChild(stack); + } + } + } + + }); + + /**************************************************************************/ + + MML.mo.Augment({ + // + // Override the method for checking line breaks to properly handle + // + HTMLbetterBreak: function (info,state) { + if (info.values && info.values.id === this.spanID) {return false} + var values = this.getValues( + "linebreak","linebreakstyle","lineleading","linebreakmultchar", + "indentalign","indentshift", + "indentalignfirst","indentshiftfirst", + "indentalignlast","indentshiftlast", + "texClass", "fence" + ); + if (values.linebreakstyle === MML.LINEBREAKSTYLE.INFIXLINEBREAKSTYLE) + {values.linebreakstyle = this.Get("infixlinebreakstyle")} + // + // Adjust nesting by TeX class (helps output that does not include + // mrows for nesting, but can leave these unbalanced. + // + if (values.texClass === MML.TEXCLASS.OPEN) {info.nest++} + if (values.texClass === MML.TEXCLASS.CLOSE && info.nest) {info.nest--} + // + // Get the default penalty for this location + // + var W = info.scanW, mo = (info.embellished||this); delete info.embellished; + var span = mo.HTMLspanElement(), w = span.bbox.w; + if (span.style.paddingLeft) {w += HTMLCSS.unEm(span.style.paddingLeft)} + if (values.linebreakstyle === MML.LINEBREAKSTYLE.AFTER) {W += w; w = 0} + if (W - info.shift === 0) {return false} // don't break at zero width (FIXME?) + var offset = HTMLCSS.linebreakWidth - W; + // Adjust offest for explicit first-line indent and align + if (state.n === 0 && (values.indentshiftfirst !== state.VALUES.indentshiftfirst || + values.indentalignfirst !== state.VALUES.indentalignfirst)) { + var align = this.HTMLgetAlign(state,values), + shift = this.HTMLgetShift(state,values,align); + offset += (info.shift - shift); + } + // + var penalty = Math.floor(offset / HTMLCSS.linebreakWidth * 1000); + if (penalty < 0) {penalty = PENALTY.toobig - 3*penalty} + if (values.fence) {penalty += PENALTY.fence} + if ((values.linebreakstyle === MML.LINEBREAKSTYLE.AFTER && + values.texClass === MML.TEXCLASS.OPEN) || + values.texClass === MML.TEXCLASS.CLOSE) {penalty += PENALTY.close} + penalty += info.nest * PENALTY.nestfactor; + // + // Get the penalty for this type of break and + // use it to modify the default penalty + // + var linebreak = PENALTY[values.linebreak||MML.LINEBREAK.AUTO]; + if (!(linebreak instanceof Array)) { + // for breaks past the width, don't modify penalty + if (offset >= 0) {penalty = linebreak * info.nest} + } else {penalty = Math.max(1,penalty + linebreak[0] * info.nest)} + // + // If the penalty is no better than the current one, return false + // Otherwise save the data for this breakpoint and return true + // + if (penalty >= info.penalty) {return false} + info.penalty = penalty; info.values = values; info.W = W; info.w = w; + values.lineleading = HTMLCSS.length2em(values.lineleading,state.VALUES.lineleading); + values.id = this.spanID; + return true; + } + }); + + /**************************************************************************/ + + MML.mspace.Augment({ + // + // Override the method for checking line breaks to properly handle + // + HTMLbetterBreak: function (info,state) { + if (info.values && info.values.id === this.spanID) {return false} + var values = this.getValues("linebreak"); + var linebreakValue = values.linebreak; + if (!linebreakValue || this.hasDimAttr()) { + // The MathML spec says that the linebreak attribute should be ignored + // if any dimensional attribute is set. + linebreakValue = MML.LINEBREAK.AUTO; + } + // + // Get the default penalty for this location + // + var W = info.scanW, span = this.HTMLspanElement(), w = span.bbox.w; + if (span.style.paddingLeft) {w += HTMLCSS.unEm(span.style.paddingLeft)} + if (W - info.shift === 0) {return false} // don't break at zero width (FIXME?) + var offset = HTMLCSS.linebreakWidth - W; + // + var penalty = Math.floor(offset / HTMLCSS.linebreakWidth * 1000); + if (penalty < 0) {penalty = PENALTY.toobig - 3*penalty} + penalty += info.nest * PENALTY.nestfactor; + // + // Get the penalty for this type of break and + // use it to modify the default penalty + // + var linebreak = PENALTY[linebreakValue]; + if (linebreakValue === MML.LINEBREAK.AUTO && w >= PENALTY.spacelimit) + {linebreak = [(w+PENALTY.spaceoffset)*PENALTY.spacefactor]} + if (!(linebreak instanceof Array)) { + // for breaks past the width, don't modify penalty + if (offset >= 0) {penalty = linebreak * info.nest} + } else {penalty = Math.max(1,penalty + linebreak[0] * info.nest)} + // + // If the penalty is no better than the current one, return false + // Otherwise save the data for this breakpoint and return true + // + if (penalty >= info.penalty) {return false} + info.penalty = penalty; info.values = values; info.W = W; info.w = w; + values.lineleading = state.VALUES.lineleading; + values.linebreakstyle = "before"; values.id = this.spanID; + return true; + } + }); + + // + // Hook into the mathchoice extension + // + MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function () { + MML.TeXmathchoice.Augment({ + HTMLbetterBreak: function (info,state) { + return this.Core().HTMLbetterBreak(info,state); + }, + HTMLmoveLine: function (start,end,span,state,values) { + return this.Core().HTMLmoveSlice(start,end,span,state,values); + } + }); + }); + + // + // Have maction process only the selected item + // + MML.maction.Augment({ + HTMLbetterBreak: function (info,state) { + return this.Core().HTMLbetterBreak(info,state); + }, + HTMLmoveLine: function (start,end,span,state,values) { + return this.Core().HTMLmoveSlice(start,end,span,state,values); + }, + // + // Split and move the hit boxes as well + // + HTMLmoveSlice: function (start,end,span,state,values,padding) { + var hitbox = document.getElementById("MathJax-HitBox-"+this.spanID+HTMLCSS.idPostfix); + if (hitbox) {hitbox.parentNode.removeChild(hitbox)} + var slice = this.SUPER(arguments).HTMLmoveSlice.apply(this,arguments); + if (end.length === 0) { + span = this.HTMLspanElement(); var n = 0; + while (span) { + hitbox = this.HTMLhandleHitBox(span,"-Continue-"+n); + span = span.nextMathJaxSpan; n++; + } + } + return slice; + } + }); + + // + // Have semantics only do the first element + // (FIXME: do we need to do anything special about annotation-xml?) + // + MML.semantics.Augment({ + HTMLbetterBreak: function (info,state) { + return (this.data[0] ? this.data[0].HTMLbetterBreak(info,state) : false); + }, + HTMLmoveLine: function (start,end,span,state,values) { + return (this.data[0] ? this.data[0].HTMLmoveSlice(start,end,span,state,values) : null); + } + }); + + /**************************************************************************/ + + MathJax.Hub.Startup.signal.Post("HTML-CSS multiline Ready"); + MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/multiline.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/blank.gif b/modules/MathJax/unpacked/jax/output/HTML-CSS/blank.gif new file mode 100644 index 0000000..8b27096 Binary files /dev/null and b/modules/MathJax/unpacked/jax/output/HTML-CSS/blank.gif differ diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/config.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/config.js new file mode 100644 index 0000000..fbea8a7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/config.js @@ -0,0 +1,161 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/config.js + * + * Initializes the HTML-CCS OutputJax (the main definition is in + * MathJax/jax/input/HTML-CSS/jax.js, which is loaded when needed). + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax["HTML-CSS"] = MathJax.OutputJax({ + id: "HTML-CSS", + version: "2.3", + directory: MathJax.OutputJax.directory + "/HTML-CSS", + extensionDir: MathJax.OutputJax.extensionDir + "/HTML-CSS", + autoloadDir: MathJax.OutputJax.directory + "/HTML-CSS/autoload", + fontDir: MathJax.OutputJax.directory + "/HTML-CSS/fonts", // font name added later + webfontDir: MathJax.OutputJax.fontDir + "/HTML-CSS", // font name added later + + config: { + matchFontHeight: true, // try to match math font height to surrounding font? + scale: 100, minScaleAdjust: 50, // global math scaling factor, and minimum adjusted scale factor + availableFonts: ["STIX","TeX"], // list of local fonts to check for + preferredFont: "TeX", // preferred local font (TeX or STIX) + webFont: "TeX", // web-based font to use when no local fonts found (TeX is only choice) + imageFont: "TeX", // font to use for image fallback mode (TeX is only choice) + undefinedFamily: "STIXGeneral,'Arial Unicode MS',serif", // fonts to use for unknown unicode characters + mtextFontInherit: false, // to make be in page font rather than MathJax font + + EqnChunk: (MathJax.Hub.Browser.isMobile ? 10: 50), + // number of equations to process before showing them + EqnChunkFactor: 1.5, // chunk size is multiplied by this after each chunk + EqnChunkDelay: 100, // milliseconds to delay between chunks (to let browser + // respond to other events) + + linebreaks: { + automatic: false, // when false, only process linebreak="newline", + // when true, insert line breaks automatically in long expressions. + + width: "container" // maximum width of a line for automatic line breaks (e.g. "30em"). + // use "container" to compute size from containing element, + // use "nn% container" for a portion of the container, + // use "nn%" for a portion of the window size + }, + + styles: { + ".MathJax_Display": { + "text-align": "center", + margin: "1em 0em" + }, + + ".MathJax .merror": { + "background-color": "#FFFF88", + color: "#CC0000", + border: "1px solid #CC0000", + padding: "1px 3px", + "font-style": "normal", + "font-size": "90%" + }, + + "#MathJax_Tooltip": { + "background-color": "InfoBackground", color: "InfoText", + border: "1px solid black", + "box-shadow": "2px 2px 5px #AAAAAA", // Opera 10.5 + "-webkit-box-shadow": "2px 2px 5px #AAAAAA", // Safari 3 and Chrome + "-moz-box-shadow": "2px 2px 5px #AAAAAA", // Forefox 3.5 + "-khtml-box-shadow": "2px 2px 5px #AAAAAA", // Konqueror + filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')", // IE + padding: "3px 4px", + "z-index": 401 + } + } + + } +}); +if (MathJax.Hub.Browser.isMSIE && document.documentMode >= 9) + {delete MathJax.OutputJax["HTML-CSS"].config.styles["#MathJax_Tooltip"].filter} + +if (!MathJax.Hub.config.delayJaxRegistration) + {MathJax.OutputJax["HTML-CSS"].Register("jax/mml")} + +MathJax.Hub.Register.StartupHook("End Config",[function (HUB,HTMLCSS) { + var CONFIG = HUB.Insert({ + + // + // The minimum versions that HTML-CSS supports + // + minBrowserVersion: { + Firefox: 3.0, + Opera: 9.52, + MSIE: 6.0, + Chrome: 0.3, + Safari: 2.0, + Konqueror: 4.0 + }, + + // + // For unsupported browsers, put back these delimiters for the preview + // + inlineMathDelimiters: ['$','$'], // or ["",""] or ["\\(","\\)"] + displayMathDelimiters: ['$$','$$'], // or ["",""] or ["\\[","\\]"] + // + // For displayed math, insert
for \n? + // + multilineDisplay: true, + + // + // The function to call to display the math for unsupported browsers + // + minBrowserTranslate: function (script) { + var MJ = HUB.getJaxFor(script), text = ["[Math]"], delim; + var span = document.createElement("span",{className: "MathJax_Preview"}); + if (MJ.inputJax === "TeX") { + if (MJ.root.Get("displaystyle")) { + delim = CONFIG.displayMathDelimiters; + text = [delim[0]+MJ.originalText+delim[1]]; + if (CONFIG.multilineDisplay) text = text[0].split(/\n/); + } else { + delim = CONFIG.inlineMathDelimiters; + text = [delim[0]+MJ.originalText.replace(/^\s+/,"").replace(/\s+$/,"")+delim[1]]; + } + } + for (var i = 0, m = text.length; i < m; i++) { + span.appendChild(document.createTextNode(text[i])); + if (i < m-1) {span.appendChild(document.createElement("br"))} + } + script.parentNode.insertBefore(span,script); + } + + },(HUB.config["HTML-CSS"]||{})); + + if (HUB.Browser.version !== "0.0" && + !HUB.Browser.versionAtLeast(CONFIG.minBrowserVersion[HUB.Browser]||0.0)) { + HTMLCSS.Translate = CONFIG.minBrowserTranslate; + HUB.Config({showProcessingMessages: false}); + MathJax.Message.Set(["MathJaxNotSupported", + "Your browser does not support MathJax"],null,4000); + HUB.Startup.signal.Post("MathJax not supported"); + } + +},MathJax.Hub,MathJax.OutputJax["HTML-CSS"]]); + + +MathJax.OutputJax["HTML-CSS"].loadComplete("config.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Alphabets/Regular/Main.js new file mode 100644 index 0000000..5837bf5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Alphabets/Regular/Main.js @@ -0,0 +1,170 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'AsanaMathJax_Alphabets', + testString: '\u0384\u0385\u0386\u0387\u0388\u0389\u038A\u038C\u038E\u038F\u0390\u03AA\u03AB\u03AC\u03AD', + 0x20: [0,0,249,0,0], + 0x384: [685,-476,374,134,241], + 0x385: [685,-476,332,-6,339], + 0x386: [700,3,777,15,756], + 0x387: [453,-327,216,45,172], + 0x388: [692,3,755,22,717], + 0x389: [692,3,987,22,966], + 0x38A: [692,3,476,22,455], + 0x38C: [709,20,863,22,842], + 0x38E: [691,4,854,3,855], + 0x38F: [709,6,904,34,871], + 0x390: [730,16,318,15,360], + 0x3AA: [819,3,388,22,367], + 0x3AB: [819,4,733,3,735], + 0x3AC: [730,16,594,44,571], + 0x3AD: [730,13,480,69,436], + 0x3AE: [730,275,531,-11,464], + 0x3AF: [730,16,310,94,305], + 0x3B0: [730,12,547,13,490], + 0x3CA: [645,16,310,15,360], + 0x3CB: [645,12,547,13,490], + 0x3CC: [730,20,545,32,514], + 0x3CD: [730,12,547,13,490], + 0x3CE: [730,12,715,36,659], + 0x13A0: [692,4,793,22,751], + 0x13A1: [692,3,667,22,669], + 0x13A2: [692,3,612,18,595], + 0x13A3: [699,-3,813,26,776], + 0x13A4: [689,20,729,29,702], + 0x13A5: [687,3,290,21,271], + 0x13A6: [709,20,835,26,809], + 0x13A7: [748,-49,647,27,617], + 0x13A8: [692,3,577,22,559], + 0x13A9: [692,0,709,50,675], + 0x13AA: [700,3,777,15,756], + 0x13AB: [692,196,509,22,487], + 0x13AC: [692,3,610,22,572], + 0x13AD: [697,3,785,27,758], + 0x13AE: [689,3,519,22,499], + 0x13AF: [693,0,602,20,577], + 0x13B0: [692,3,505,22,483], + 0x13B1: [692,3,555,22,536], + 0x13B2: [687,1,806,14,781], + 0x13B3: [692,9,967,8,956], + 0x13B4: [674,20,878,32,846], + 0x13B5: [692,3,555,22,580], + 0x13B6: [710,20,730,22,692], + 0x13B7: [692,13,1004,16,985], + 0x13B8: [725,195,572,23,538], + 0x13B9: [692,-4,920,11,908], + 0x13BA: [709,20,1105,22,1073], + 0x13BB: [692,3,831,22,810], + 0x13BC: [692,19,525,27,493], + 0x13BD: [692,-2,759,27,730], + 0x13BE: [709,20,786,22,764], + 0x13BF: [691,210,579,14,550], + 0x13C0: [710,20,839,22,805], + 0x13C1: [697,11,662,19,634], + 0x13C2: [790,3,581,6,572], + 0x13C3: [692,3,666,15,638], + 0x13C4: [700,-2,616,24,583], + 0x13C5: [708,21,1018,23,991], + 0x13C6: [689,-4,466,25,441], + 0x13C7: [691,12,715,41,671], + 0x13C8: [692,4,525,29,509], + 0x13C9: [705,6,1186,22,1168], + 0x13CA: [652,12,715,38,671], + 0x13CB: [710,20,547,30,524], + 0x13CC: [692,20,778,12,759], + 0x13CD: [698,20,839,19,814], + 0x13CE: [698,3,563,2,534], + 0x13CF: [692,3,603,22,580], + 0x13D0: [692,3,526,14,507], + 0x13D1: [693,11,549,10,514], + 0x13D2: [692,3,696,22,674], + 0x13D3: [692,195,509,22,487], + 0x13D4: [693,6,869,9,859], + 0x13D5: [709,20,578,24,544], + 0x13D6: [692,3,665,30,633], + 0x13D7: [692,11,466,10,446], + 0x13D8: [691,0,447,15,427], + 0x13D9: [693,6,681,8,661], + 0x13DA: [709,19,525,24,503], + 0x13DB: [692,36,725,18,716], + 0x13DC: [719,33,674,25,649], + 0x13DD: [693,0,500,12,478], + 0x13DE: [692,3,611,22,586], + 0x13DF: [733,20,709,22,664], + 0x13E0: [692,196,647,26,625], + 0x13E1: [722,13,902,32,884], + 0x13E2: [692,3,604,22,580], + 0x13E3: [710,20,764,22,742], + 0x13E4: [692,0,636,10,606], + 0x13E5: [692,3,680,22,658], + 0x13E6: [692,3,726,22,692], + 0x13E7: [692,-6,491,14,469], + 0x13E8: [688,16,875,22,854], + 0x13E9: [719,11,712,21,684], + 0x13EA: [692,9,981,10,959], + 0x13EB: [709,20,786,22,764], + 0x13EC: [694,22,922,4,908], + 0x13ED: [693,0,577,20,552], + 0x13EE: [690,20,496,28,467], + 0x13EF: [693,20,785,20,755], + 0x13F0: [677,158,512,7,486], + 0x13F1: [691,-2,596,27,565], + 0x13F2: [728,3,590,23,567], + 0x13F3: [759,9,840,22,814], + 0x13F4: [692,3,610,26,576], + 0x2100: [436,72,719,29,691], + 0x2101: [436,72,719,34,686], + 0x2103: [709,20,899,27,873], + 0x2105: [436,72,719,24,696], + 0x2106: [436,72,729,18,712], + 0x2107: [719,5,549,23,527], + 0x2109: [707,3,755,22,734], + 0x2116: [692,20,1108,17,1076], + 0x2117: [705,164,906,18,889], + 0x211E: [692,15,667,22,669], + 0x2120: [668,-273,834,23,823], + 0x2121: [692,3,1099,33,1067], + 0x2122: [659,-282,929,15,917], + 0x2126: [704,6,824,34,791], + 0x2129: [473,16,310,94,304], + 0x212A: [692,3,725,22,719], + 0x212B: [943,3,777,15,756], + 0x212E: [535,17,599,44,561], + 0x2139: [706,3,332,34,298], + 0x213A: [638,104,919,18,902], + 0x213B: [692,3,1099,28,1072], + 0x2142: [694,0,540,68,473], + 0x2143: [694,0,540,68,473], + 0x2144: [694,0,665,3,663], + 0x214B: [689,21,777,43,753], + 0x214D: [663,56,777,39,739], + 0x214E: [456,4,418,33,390], + 0x10143: [700,0,671,55,630], + 0x10144: [700,0,671,55,630], + 0x10145: [700,0,671,55,630], + 0x10146: [700,0,671,55,630], + 0x10147: [700,0,671,55,630] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Alphabets"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Alphabets/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Arrows/Regular/Main.js new file mode 100644 index 0000000..34e0df0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Arrows/Regular/Main.js @@ -0,0 +1,220 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'AsanaMathJax_Arrows', + testString: '\u219C\u219D\u219F\u21A1\u21A4\u21A5\u21A7\u21A8\u21AF\u21B2\u21B3\u21B4\u21B5\u21B8\u21B9', + 0x20: [0,0,249,0,0], + 0x219C: [486,-55,1061,62,1062], + 0x219D: [486,-55,1061,-3,997], + 0x219F: [712,172,524,47,478], + 0x21A1: [712,172,524,47,478], + 0x21A4: [486,-55,1013,36,978], + 0x21A5: [742,200,524,47,478], + 0x21A7: [742,200,524,47,478], + 0x21A8: [712,200,524,47,480], + 0x21AF: [476,222,524,20,504], + 0x21B2: [753,0,506,65,442], + 0x21B3: [753,0,506,65,442], + 0x21B4: [565,-140,714,24,691], + 0x21B5: [686,-19,524,50,475], + 0x21B8: [785,172,1013,64,950], + 0x21B9: [688,-20,899,51,849], + 0x21C5: [712,172,883,48,836], + 0x21D6: [724,246,1101,65,1037], + 0x21D7: [724,246,1101,65,1037], + 0x21D8: [724,246,1101,65,1037], + 0x21D9: [724,246,1101,65,1037], + 0x21DC: [485,-54,1149,34,1116], + 0x21DE: [712,172,524,47,478], + 0x21DF: [712,172,524,47,478], + 0x21E1: [737,196,524,47,478], + 0x21E3: [737,196,524,47,478], + 0x21E4: [499,-31,899,51,849], + 0x21E5: [500,-32,899,51,849], + 0x21E6: [554,12,1013,64,950], + 0x21E7: [713,172,678,56,622], + 0x21E8: [554,12,1013,64,950], + 0x21E9: [713,172,678,56,622], + 0x21EA: [713,172,678,56,622], + 0x21EB: [713,199,678,56,622], + 0x21EC: [713,199,678,56,622], + 0x21ED: [713,200,678,48,631], + 0x21EE: [856,172,678,56,622], + 0x21EF: [834,199,678,56,622], + 0x21F0: [555,11,989,39,951], + 0x21F1: [750,208,1019,25,988], + 0x21F2: [750,208,1019,25,988], + 0x21F3: [713,172,678,56,622], + 0x21F4: [504,-33,1089,27,1063], + 0x21F5: [712,172,883,48,836], + 0x21F6: [845,305,1013,65,949], + 0x21F7: [487,-56,1013,65,949], + 0x21F8: [486,-55,1013,65,949], + 0x21F9: [486,-55,1013,65,949], + 0x21FA: [486,-55,913,72,842], + 0x21FB: [486,-55,913,72,842], + 0x21FC: [488,-57,1013,65,949], + 0x21FD: [509,-38,1013,65,949], + 0x21FE: [509,-38,1013,65,949], + 0x21FF: [509,-38,1013,53,961], + 0x27F0: [713,173,1013,130,884], + 0x27F1: [713,173,1013,130,884], + 0x27F2: [759,0,987,73,929], + 0x27F3: [759,0,987,72,929], + 0x27F4: [524,-17,1013,65,949], + 0x27FB: [486,-55,1513,36,1478], + 0x27FD: [537,-5,1513,65,1449], + 0x27FE: [537,-5,1513,65,1449], + 0x27FF: [486,-55,1513,38,1476], + 0x2900: [486,-55,1013,65,949], + 0x2901: [486,-55,1013,65,949], + 0x2902: [537,-6,1013,65,949], + 0x2903: [537,-6,1013,65,949], + 0x2904: [537,-6,1013,59,954], + 0x2905: [486,-55,1013,65,949], + 0x2906: [537,-5,1013,65,949], + 0x2907: [537,-5,1013,65,949], + 0x2908: [712,172,559,65,495], + 0x2909: [712,172,559,65,495], + 0x290A: [712,172,803,65,739], + 0x290B: [713,171,803,65,739], + 0x290C: [486,-55,1013,65,949], + 0x290D: [486,-55,1013,65,949], + 0x290E: [486,-55,1013,65,949], + 0x290F: [486,-55,1013,65,949], + 0x2910: [486,-55,1150,27,1124], + 0x2911: [486,-55,1211,63,1147], + 0x2912: [667,131,559,87,473], + 0x2913: [667,131,559,87,473], + 0x2914: [489,-58,1150,28,1123], + 0x2915: [486,-55,1150,86,1066], + 0x2916: [486,-55,1150,28,1122], + 0x2917: [486,-55,1150,28,1123], + 0x2918: [486,-55,1150,28,1123], + 0x2919: [486,-55,1009,57,953], + 0x291A: [486,-55,1009,57,953], + 0x291B: [486,-55,1059,65,996], + 0x291C: [486,-55,1059,65,996], + 0x291D: [488,-57,1369,66,1304], + 0x291E: [488,-57,1369,66,1304], + 0x291F: [490,-59,1426,66,1362], + 0x2920: [490,-59,1426,66,1362], + 0x2921: [715,173,1013,63,951], + 0x2922: [715,173,1013,63,951], + 0x2923: [803,175,1013,76,938], + 0x2924: [803,175,1013,76,939], + 0x2925: [802,176,1013,76,939], + 0x2926: [802,176,1013,76,938], + 0x2927: [713,172,1013,65,949], + 0x2928: [712,172,1013,64,950], + 0x2929: [713,172,1013,65,949], + 0x292A: [712,172,1013,64,950], + 0x292B: [648,172,1013,65,949], + 0x292C: [648,172,1013,65,949], + 0x292D: [713,172,1013,64,950], + 0x292E: [712,172,1013,65,950], + 0x292F: [712,172,1013,65,950], + 0x2930: [713,172,1013,65,950], + 0x2931: [714,172,1013,64,950], + 0x2932: [714,172,1013,64,950], + 0x2933: [484,-53,961,-3,902], + 0x2934: [585,-76,729,54,676], + 0x2935: [588,-80,729,54,676], + 0x2936: [622,0,729,111,622], + 0x2937: [622,0,729,110,619], + 0x2938: [643,117,559,105,454], + 0x2939: [643,117,559,105,455], + 0x293A: [446,-97,869,55,815], + 0x293B: [447,-97,869,55,815], + 0x293C: [446,-97,869,55,815], + 0x293D: [446,-95,869,55,815], + 0x293E: [580,62,887,63,825], + 0x293F: [580,62,887,62,825], + 0x2940: [698,164,987,121,885], + 0x2941: [702,160,987,120,883], + 0x2942: [665,124,1013,65,949], + 0x2943: [665,124,1013,65,949], + 0x2944: [665,124,1013,65,949], + 0x2945: [665,-98,1013,65,949], + 0x2946: [665,-98,1013,65,949], + 0x2947: [486,-55,1013,65,949], + 0x2948: [504,-33,1260,54,1207], + 0x2949: [761,219,541,56,486], + 0x294A: [381,52,1013,65,949], + 0x294B: [381,52,1013,65,949], + 0x294C: [713,171,559,63,497], + 0x294D: [713,171,559,63,497], + 0x294E: [194,52,1013,65,949], + 0x294F: [713,171,459,107,353], + 0x2950: [194,52,1013,65,949], + 0x2951: [713,171,459,107,353], + 0x2952: [489,-21,899,51,849], + 0x2953: [489,-21,899,51,849], + 0x2954: [667,131,559,46,514], + 0x2955: [667,131,559,46,514], + 0x2956: [496,-28,899,51,849], + 0x2957: [489,-21,899,51,849], + 0x2958: [667,131,559,46,514], + 0x2959: [667,131,559,46,514], + 0x295A: [486,-55,1013,29,985], + 0x295B: [486,-55,1013,29,985], + 0x295C: [761,195,524,47,478], + 0x295D: [761,195,524,47,478], + 0x295E: [486,-55,1013,29,985], + 0x295F: [486,-55,1013,29,985], + 0x2960: [761,195,524,47,478], + 0x2961: [761,195,524,47,478], + 0x2962: [594,52,1013,65,949], + 0x2963: [713,171,759,57,703], + 0x2964: [594,52,1013,65,949], + 0x2965: [713,171,759,57,703], + 0x2966: [594,52,1013,65,949], + 0x2967: [560,19,1013,65,949], + 0x2968: [627,19,1013,65,949], + 0x2969: [627,19,1013,65,949], + 0x296A: [594,-135,1013,65,949], + 0x296B: [594,-135,1013,65,949], + 0x296C: [594,-135,1013,65,949], + 0x296D: [594,-135,1013,65,949], + 0x296E: [713,171,759,57,703], + 0x296F: [713,171,759,57,703], + 0x2970: [407,-140,1013,51,963], + 0x2971: [613,-41,1013,65,949], + 0x2972: [486,-55,1013,65,949], + 0x2973: [486,-55,1013,65,949], + 0x2974: [486,-55,1013,65,949], + 0x2975: [486,136,1013,65,949], + 0x2976: [695,154,1013,65,949], + 0x2977: [535,-7,1013,65,960], + 0x2978: [695,154,1013,65,949], + 0x2979: [723,179,1013,65,949], + 0x297A: [535,-10,1013,65,957], + 0x297B: [723,179,1013,65,949], + 0x297C: [576,35,803,65,739], + 0x297D: [576,35,803,65,739], + 0x297E: [608,66,743,66,678], + 0x297F: [608,66,743,66,678] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Arrows"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Arrows/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..2a2ebd4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/DoubleStruck/Regular/Main.js @@ -0,0 +1,102 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'AsanaMathJax_DoubleStruck', + testString: '\u2102\u210D\u2115\u2119\u211A\u211D\u2124\u213C\u213D\u213E\u213F\u2140\u2145\u2146\u2147', + 0x20: [0,0,249,0,0], + 0x2102: [709,20,708,22,669], + 0x210D: [692,3,948,22,927], + 0x2115: [692,3,951,17,934], + 0x2119: [692,3,720,22,697], + 0x211A: [709,176,785,22,764], + 0x211D: [692,3,784,22,786], + 0x2124: [692,3,816,15,788], + 0x213C: [525,15,718,10,688], + 0x213D: [485,230,494,-10,466], + 0x213E: [692,3,727,22,703], + 0x213F: [692,3,899,27,873], + 0x2140: [696,1,645,30,618], + 0x2145: [692,3,898,-39,888], + 0x2146: [694,10,667,-7,707], + 0x2147: [463,20,546,24,522], + 0x2148: [669,0,388,-17,298], + 0x2149: [669,210,409,-98,353], + 0x1D538: [700,3,887,15,866], + 0x1D539: [692,3,739,26,705], + 0x1D53B: [692,3,898,22,876], + 0x1D53C: [692,3,727,22,689], + 0x1D53D: [692,3,672,22,653], + 0x1D53E: [709,20,762,22,728], + 0x1D540: [692,3,453,22,432], + 0x1D541: [692,194,440,-15,419], + 0x1D542: [692,3,842,22,836], + 0x1D543: [692,3,727,22,703], + 0x1D544: [692,13,1066,16,1047], + 0x1D546: [709,20,785,22,764], + 0x1D54A: [709,20,524,24,503], + 0x1D54B: [694,3,737,18,720], + 0x1D54C: [692,22,907,12,889], + 0x1D54D: [692,9,851,8,836], + 0x1D54E: [700,9,1119,8,1104], + 0x1D54F: [700,3,783,14,765], + 0x1D550: [704,3,666,9,654], + 0x1D552: [463,14,602,42,596], + 0x1D553: [694,10,667,18,649], + 0x1D554: [456,16,546,29,517], + 0x1D555: [694,10,667,17,649], + 0x1D556: [462,20,546,28,518], + 0x1D557: [720,0,448,18,456], + 0x1D558: [460,214,602,38,576], + 0x1D559: [699,0,673,24,650], + 0x1D55A: [669,0,388,42,346], + 0x1D55B: [669,210,409,-35,316], + 0x1D55C: [698,0,639,25,619], + 0x1D55D: [690,0,390,44,372], + 0x1D55E: [466,0,977,25,959], + 0x1D55F: [457,0,684,27,665], + 0x1D560: [462,11,602,27,572], + 0x1D561: [442,194,681,29,666], + 0x1D562: [442,194,681,22,660], + 0x1D563: [442,0,509,27,497], + 0x1D564: [454,14,496,32,463], + 0x1D565: [615,11,499,23,482], + 0x1D566: [442,11,699,23,675], + 0x1D567: [441,11,669,17,653], + 0x1D568: [437,12,889,17,844], + 0x1D569: [431,0,704,15,676], + 0x1D56A: [431,204,700,17,674], + 0x1D56B: [447,0,560,12,548], + 0x1D7D8: [689,16,600,28,568], + 0x1D7D9: [689,3,600,44,556], + 0x1D7DA: [679,3,600,30,570], + 0x1D7DB: [679,17,600,36,564], + 0x1D7DC: [689,3,600,50,550], + 0x1D7DD: [675,17,600,27,573], + 0x1D7DE: [679,17,600,29,571], + 0x1D7DF: [675,3,600,29,571], + 0x1D7E0: [679,17,600,38,562], + 0x1D7E1: [679,17,600,38,562] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_DoubleStruck"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/DoubleStruck/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Fraktur/Regular/Main.js new file mode 100644 index 0000000..3c3ebe2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Fraktur/Regular/Main.js @@ -0,0 +1,132 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'AsanaMathJax_Fraktur', + testString: '\u210C\u2128\u212D\uD835\uDD04\uD835\uDD05\uD835\uDD07\uD835\uDD08\uD835\uDD09\uD835\uDD0A\uD835\uDD0D\uD835\uDD0E\uD835\uDD0F\uD835\uDD10\uD835\uDD11\uD835\uDD12', + 0x20: [0,0,249,0,0], + 0x210C: [719,166,697,29,657], + 0x2128: [709,171,697,-7,608], + 0x212D: [719,4,645,53,629], + 0x1D504: [721,4,697,20,675], + 0x1D505: [720,7,801,60,747], + 0x1D507: [708,4,801,69,746], + 0x1D508: [719,4,645,54,629], + 0x1D509: [715,157,697,74,663], + 0x1D50A: [721,4,801,88,740], + 0x1D50D: [719,162,645,-1,586], + 0x1D50E: [716,4,697,2,659], + 0x1D50F: [719,4,645,37,603], + 0x1D510: [714,4,957,11,936], + 0x1D511: [716,6,748,16,716], + 0x1D512: [707,4,801,42,754], + 0x1D513: [721,163,801,37,715], + 0x1D514: [706,4,801,41,800], + 0x1D516: [706,4,801,103,757], + 0x1D517: [707,4,697,42,688], + 0x1D518: [720,4,697,49,683], + 0x1D519: [714,4,801,48,705], + 0x1D51A: [713,-2,957,25,931], + 0x1D51B: [719,4,645,29,629], + 0x1D51C: [719,165,748,19,641], + 0x1D51E: [504,6,478,67,469], + 0x1D51F: [683,9,478,23,436], + 0x1D520: [500,4,374,85,356], + 0x1D521: [696,4,478,54,447], + 0x1D522: [503,5,426,78,392], + 0x1D523: [719,162,322,27,293], + 0x1D524: [505,163,478,54,443], + 0x1D525: [696,165,478,25,438], + 0x1D526: [703,4,270,32,258], + 0x1D527: [705,169,270,32,229], + 0x1D528: [702,4,322,21,308], + 0x1D529: [696,5,270,42,265], + 0x1D52A: [499,4,801,24,774], + 0x1D52B: [499,4,530,16,518], + 0x1D52C: [502,4,478,69,447], + 0x1D52D: [505,161,530,68,496], + 0x1D52E: [499,168,478,66,455], + 0x1D52F: [504,4,374,17,362], + 0x1D530: [500,6,426,56,409], + 0x1D531: [696,6,322,19,293], + 0x1D532: [501,4,530,25,513], + 0x1D533: [496,4,478,28,434], + 0x1D534: [501,4,748,46,708], + 0x1D535: [503,4,426,31,402], + 0x1D536: [505,163,530,36,465], + 0x1D537: [505,165,374,39,344], + 0x1D56C: [719,9,748,54,726], + 0x1D56D: [715,7,748,52,723], + 0x1D56E: [718,8,697,77,667], + 0x1D56F: [715,8,697,51,668], + 0x1D570: [719,8,697,63,684], + 0x1D571: [719,167,645,37,633], + 0x1D572: [718,9,801,76,756], + 0x1D573: [718,167,748,33,709], + 0x1D574: [718,11,645,29,611], + 0x1D575: [719,167,645,16,609], + 0x1D576: [718,14,748,14,732], + 0x1D577: [718,11,593,32,556], + 0x1D578: [719,15,968,16,952], + 0x1D579: [719,11,801,53,785], + 0x1D57A: [718,7,697,69,681], + 0x1D57B: [719,167,748,47,749], + 0x1D57C: [717,11,759,52,748], + 0x1D57D: [719,11,801,49,782], + 0x1D57E: [719,5,697,62,672], + 0x1D57F: [716,8,645,71,632], + 0x1D580: [718,12,697,32,676], + 0x1D581: [718,9,748,43,746], + 0x1D582: [713,4,968,38,968], + 0x1D583: [718,6,645,32,642], + 0x1D584: [718,167,748,49,705], + 0x1D585: [717,167,655,20,601], + 0x1D586: [537,9,499,63,489], + 0x1D587: [709,17,520,43,472], + 0x1D588: [540,7,364,61,354], + 0x1D589: [717,8,530,52,481], + 0x1D58A: [541,11,416,49,411], + 0x1D58B: [718,166,374,43,348], + 0x1D58C: [536,167,478,43,466], + 0x1D58D: [718,166,520,37,474], + 0x1D58E: [719,11,312,22,302], + 0x1D58F: [718,168,322,35,289], + 0x1D590: [718,8,374,52,345], + 0x1D591: [716,9,312,52,304], + 0x1D592: [537,9,822,27,800], + 0x1D593: [539,7,541,2,542], + 0x1D594: [549,8,478,40,455], + 0x1D595: [544,167,551,36,505], + 0x1D596: [549,167,488,54,458], + 0x1D597: [545,8,416,41,414], + 0x1D598: [542,4,468,60,429], + 0x1D599: [704,11,322,23,317], + 0x1D59A: [543,11,530,24,529], + 0x1D59B: [536,4,520,28,477], + 0x1D59C: [546,6,748,32,709], + 0x1D59D: [537,8,426,21,417], + 0x1D59E: [536,166,478,25,447], + 0x1D59F: [541,168,374,36,345] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Fraktur"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Latin/Regular/Main.js new file mode 100644 index 0000000..a8dd11c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Latin/Regular/Main.js @@ -0,0 +1,109 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'AsanaMathJax_Latin', + testString: '\u00A1\u00A2\u00A4\u00A6\u00A9\u00AA\u00AB\u00B2\u00B3\u00B6\u00B8\u00B9\u00BA\u00BB\u00BC', + 0x20: [0,0,249,0,0], + 0xA1: [469,225,277,81,197], + 0xA2: [562,101,499,61,448], + 0xA4: [531,-96,499,30,470], + 0xA6: [713,172,210,76,135], + 0xA9: [705,164,906,18,889], + 0xAA: [709,-422,332,24,310], + 0xAB: [428,-71,499,50,450], + 0xB2: [686,-271,299,6,284], + 0xB3: [686,-261,299,5,281], + 0xB6: [694,150,627,39,589], + 0xB8: [-10,225,332,96,304], + 0xB9: [689,-271,299,32,254], + 0xBA: [709,-416,332,10,323], + 0xBB: [428,-71,499,50,450], + 0xBC: [692,3,749,30,727], + 0xBD: [692,3,749,15,735], + 0xBE: [689,3,749,15,735], + 0xBF: [469,231,443,43,395], + 0xC0: [908,3,777,15,756], + 0xC1: [908,3,777,15,756], + 0xC2: [908,3,777,15,756], + 0xC3: [871,3,777,15,756], + 0xC4: [868,3,777,15,756], + 0xC5: [943,3,777,15,756], + 0xC6: [692,3,943,-10,908], + 0xC7: [709,225,708,22,670], + 0xC8: [908,3,610,22,572], + 0xC9: [908,3,610,22,572], + 0xCA: [908,3,610,22,572], + 0xCB: [868,3,610,22,572], + 0xCC: [908,3,336,22,315], + 0xCD: [908,3,336,22,315], + 0xCE: [908,3,336,13,325], + 0xCF: [868,3,336,19,318], + 0xD0: [692,3,773,14,751], + 0xD1: [871,20,830,17,813], + 0xD2: [908,20,785,22,764], + 0xD3: [908,20,785,22,764], + 0xD4: [908,20,785,22,764], + 0xD5: [871,20,785,22,764], + 0xD6: [868,20,785,22,764], + 0xD8: [709,20,832,30,797], + 0xD9: [908,20,777,12,759], + 0xDA: [908,20,777,12,759], + 0xDB: [908,20,777,12,759], + 0xDC: [868,20,777,12,759], + 0xDD: [908,3,666,9,654], + 0xDE: [692,3,603,32,574], + 0xDF: [731,9,555,23,519], + 0xE0: [677,12,499,32,471], + 0xE1: [677,12,499,32,471], + 0xE2: [677,12,499,32,471], + 0xE3: [640,12,499,32,471], + 0xE4: [637,12,499,32,471], + 0xE5: [712,12,499,32,471], + 0xE6: [469,20,757,30,732], + 0xE7: [469,225,443,26,413], + 0xE8: [677,20,478,26,448], + 0xE9: [677,20,478,26,448], + 0xEA: [677,20,478,26,448], + 0xEB: [637,20,478,26,448], + 0xEC: [677,3,286,8,271], + 0xED: [677,3,286,21,279], + 0xEE: [677,3,286,-12,300], + 0xEF: [657,3,286,-6,293], + 0xF1: [640,3,581,6,572], + 0xF2: [677,20,545,32,514], + 0xF3: [677,20,545,32,514], + 0xF4: [677,20,545,32,514], + 0xF5: [640,20,545,32,514], + 0xF6: [637,20,545,32,514], + 0xF8: [474,23,555,16,530], + 0xF9: [677,12,602,18,581], + 0xFA: [677,12,602,18,581], + 0xFB: [677,12,602,18,581], + 0xFC: [637,12,602,18,581], + 0xFD: [682,283,555,12,544], + 0xFE: [726,281,600,-2,544], + 0xFF: [637,283,555,12,544] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Latin"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Latin/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Main/Regular/Main.js new file mode 100644 index 0000000..da5da2e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Main/Regular/Main.js @@ -0,0 +1,544 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Main'] = { + directory: 'Main/Regular', + family: 'AsanaMathJax_Main', + testString: '\u00A3\u00A5\u00A7\u00A8\u00AC\u00AE\u00B1\u00B5\u00B7\u00D7\u00F0\u00F7\u0131\u02C6\u02C7', + 0x20: [0,0,249,0,0], + 0x21: [694,5,277,81,197], + 0x22: [709,-469,370,52,319], + 0x23: [684,0,499,4,495], + 0x24: [731,116,499,30,471], + 0x25: [709,20,839,39,802], + 0x26: [689,20,777,43,753], + 0x27: [709,-446,277,45,233], + 0x28: [726,215,332,60,301], + 0x29: [726,215,332,32,273], + 0x2A: [442,-95,388,32,359], + 0x2B: [538,0,668,65,604], + 0x2C: [123,155,249,16,218], + 0x2D: [287,-215,332,18,314], + 0x2E: [111,5,249,67,183], + 0x2F: [714,169,286,-37,297], + 0x30: [689,20,499,29,465], + 0x31: [700,3,499,60,418], + 0x32: [689,3,499,16,468], + 0x33: [689,20,499,15,462], + 0x34: [697,3,499,2,472], + 0x35: [690,20,499,13,459], + 0x36: [689,20,499,32,468], + 0x37: [689,1,499,44,497], + 0x38: [689,20,499,30,464], + 0x39: [689,20,499,20,457], + 0x3A: [456,5,249,66,182], + 0x3B: [456,153,249,16,218], + 0x3C: [528,0,668,65,604], + 0x3D: [406,-134,668,65,604], + 0x3E: [528,0,668,65,604], + 0x3F: [694,5,443,43,395], + 0x40: [694,20,746,24,724], + 0x41: [700,3,777,15,756], + 0x42: [692,3,610,26,576], + 0x43: [709,20,708,22,670], + 0x44: [692,3,793,22,751], + 0x45: [692,3,610,22,572], + 0x46: [692,3,555,22,536], + 0x47: [709,20,762,22,728], + 0x48: [692,3,831,22,810], + 0x49: [692,3,336,22,315], + 0x4A: [692,195,332,-15,311], + 0x4B: [692,3,725,22,719], + 0x4C: [692,3,610,22,586], + 0x4D: [692,13,945,16,926], + 0x4E: [692,6,830,17,813], + 0x4F: [709,20,785,22,764], + 0x50: [692,3,603,22,580], + 0x51: [709,176,785,22,764], + 0x52: [692,3,667,22,669], + 0x53: [709,20,524,24,503], + 0x54: [692,3,612,18,595], + 0x55: [692,20,777,12,759], + 0x56: [692,9,721,8,706], + 0x57: [700,9,1000,8,984], + 0x58: [700,3,666,14,648], + 0x59: [705,3,666,9,654], + 0x5A: [692,3,666,15,638], + 0x5B: [726,184,332,79,288], + 0x5C: [714,169,286,-9,324], + 0x5D: [726,184,332,45,254], + 0x5E: [689,-283,605,51,554], + 0x5F: [-75,125,499,0,500], + 0x60: [709,-446,277,45,233], + 0x61: [469,12,499,32,471], + 0x62: [726,28,552,-15,508], + 0x63: [497,20,443,25,413], + 0x64: [726,12,610,34,579], + 0x65: [469,20,478,26,448], + 0x66: [737,3,332,23,341], + 0x67: [469,283,555,32,544], + 0x68: [726,3,581,6,572], + 0x69: [687,3,290,21,271], + 0x6A: [688,283,233,-40,167], + 0x6B: [726,12,555,21,549], + 0x6C: [726,3,290,21,271], + 0x6D: [469,3,882,16,869], + 0x6E: [469,3,581,6,572], + 0x6F: [469,20,545,32,514], + 0x70: [477,281,600,8,556], + 0x71: [477,281,600,45,593], + 0x72: [469,3,394,21,374], + 0x73: [469,20,423,30,391], + 0x74: [621,12,325,22,319], + 0x75: [469,12,602,18,581], + 0x76: [459,7,564,6,539], + 0x77: [469,7,833,6,808], + 0x78: [469,3,515,20,496], + 0x79: [459,283,555,12,544], + 0x7A: [462,3,499,16,466], + 0x7B: [726,175,332,58,289], + 0x7C: [713,172,210,76,135], + 0x7D: [726,175,332,44,275], + 0x7E: [341,-182,605,51,555], + 0xA3: [694,13,499,12,478], + 0xA5: [701,3,499,5,496], + 0xA7: [709,219,499,26,465], + 0xA8: [637,-537,332,17,316], + 0xAC: [360,-88,673,65,608], + 0xAE: [705,164,906,18,889], + 0xB1: [541,0,668,65,604], + 0xB5: [473,286,610,89,567], + 0xB7: [319,-203,249,67,183], + 0xD7: [547,5,668,59,611], + 0xF0: [728,20,545,32,504], + 0xF7: [512,-10,605,51,555], + 0x131: [469,3,290,21,271], + 0x2C6: [677,-510,312,0,312], + 0x2C7: [677,-510,312,0,312], + 0x2C9: [591,-538,338,13,325], + 0x2D8: [699,-534,269,-4,273], + 0x2D9: [676,-568,333,112,220], + 0x2DA: [717,-535,267,36,231], + 0x2DC: [682,-571,329,-5,334], + 0x300: [677,-506,0,-302,-78], + 0x301: [677,-506,0,-255,-31], + 0x302: [677,-510,0,-312,0], + 0x303: [640,-535,0,-330,0], + 0x304: [591,-538,0,-332,-20], + 0x306: [664,-506,0,-307,-25], + 0x307: [637,-537,0,-175,-75], + 0x308: [637,-537,0,-318,-17], + 0x30A: [718,-518,0,-235,-35], + 0x30C: [677,-510,0,-322,-10], + 0x338: [714,169,0,-408,0], + 0x382: [0,0,768,0,0], + 0x391: [700,3,777,15,756], + 0x392: [692,3,610,26,576], + 0x393: [692,3,555,22,536], + 0x394: [697,4,688,27,662], + 0x395: [692,3,610,22,572], + 0x396: [692,3,666,15,638], + 0x397: [692,3,831,22,810], + 0x398: [709,20,785,22,764], + 0x399: [692,3,336,22,315], + 0x39A: [692,3,725,22,719], + 0x39B: [697,4,753,17,729], + 0x39C: [692,13,945,16,926], + 0x39D: [692,20,830,17,813], + 0x39E: [689,4,692,42,651], + 0x39F: [709,20,785,22,764], + 0x3A0: [689,4,812,25,788], + 0x3A1: [692,3,603,22,580], + 0x3A3: [689,4,684,45,643], + 0x3A4: [692,3,612,18,595], + 0x3A5: [691,4,733,3,735], + 0x3A6: [689,4,755,23,723], + 0x3A7: [700,3,666,14,648], + 0x3A8: [689,4,870,18,852], + 0x3A9: [704,6,824,34,791], + 0x3B1: [473,16,594,44,571], + 0x3B2: [680,283,512,68,460], + 0x3B3: [473,273,581,-31,489], + 0x3B4: [702,16,497,56,468], + 0x3B5: [468,13,480,69,436], + 0x3B6: [712,149,504,61,509], + 0x3B7: [473,275,531,-11,464], + 0x3B8: [702,16,613,83,555], + 0x3B9: [473,16,310,94,305], + 0x3BA: [473,16,571,13,553], + 0x3BB: [702,16,618,86,616], + 0x3BC: [473,286,610,89,567], + 0x3BD: [473,7,497,-24,443], + 0x3BE: [701,148,547,65,507], + 0x3BF: [469,20,545,32,514], + 0x3C0: [467,15,653,27,628], + 0x3C1: [473,284,566,83,490], + 0x3C2: [463,155,501,43,430], + 0x3C3: [474,15,552,35,487], + 0x3C4: [463,16,519,35,439], + 0x3C5: [471,12,547,13,490], + 0x3C6: [485,277,681,8,606], + 0x3C7: [479,193,608,51,548], + 0x3C8: [682,281,695,6,626], + 0x3C9: [463,12,715,36,659], + 0x3D0: [701,13,562,30,492], + 0x3D1: [702,15,620,62,583], + 0x3D5: [705,289,665,27,613], + 0x3D6: [529,12,715,41,671], + 0x3DC: [692,3,555,22,536], + 0x3DD: [495,233,514,23,495], + 0x3F0: [510,16,705,48,659], + 0x3F1: [474,260,478,72,461], + 0x3F4: [709,20,785,22,764], + 0x3F5: [466,12,480,46,439], + 0x2013: [277,-219,499,0,500], + 0x2014: [277,-219,1000,0,1000], + 0x2016: [713,172,420,76,345], + 0x2018: [709,-446,277,45,233], + 0x2019: [709,-446,277,45,233], + 0x201C: [709,-446,510,45,466], + 0x201D: [709,-446,510,45,466], + 0x2020: [694,5,499,34,466], + 0x2021: [694,249,499,34,466], + 0x2026: [111,5,746,100,647], + 0x2032: [495,-47,364,53,313], + 0x2033: [495,-47,599,53,548], + 0x2034: [495,-47,834,53,783], + 0x2035: [495,-47,364,53,313], + 0x203E: [1726,-1614,1024,0,1024], + 0x2044: [558,279,313,0,314], + 0x2057: [495,-47,1069,53,1018], + 0x20D7: [790,-519,557,0,558], + 0x210F: [733,9,499,10,471], + 0x2111: [721,4,645,12,594], + 0x2113: [713,13,470,16,455], + 0x2118: [504,203,656,58,617], + 0x211C: [717,4,748,17,702], + 0x2127: [704,6,824,34,791], + 0x2132: [692,3,555,22,536], + 0x2135: [746,13,672,32,641], + 0x2136: [734,0,675,31,635], + 0x2137: [734,0,331,26,306], + 0x2138: [734,0,559,36,526], + 0x2141: [727,9,778,53,708], + 0x2190: [486,-55,1013,65,949], + 0x2191: [713,172,524,47,478], + 0x2192: [486,-55,1013,65,949], + 0x2193: [713,172,524,47,478], + 0x2194: [486,-55,1013,65,949], + 0x2195: [712,172,524,47,478], + 0x2196: [713,172,1013,65,949], + 0x2197: [713,172,1013,65,949], + 0x2198: [713,172,1013,65,949], + 0x2199: [713,172,1013,65,949], + 0x219A: [486,-55,1013,65,949], + 0x219B: [486,-55,1013,65,949], + 0x219E: [486,-55,1013,65,949], + 0x21A0: [486,-55,1013,65,949], + 0x21A2: [486,-55,1150,65,1075], + 0x21A3: [486,-55,1150,76,1085], + 0x21A6: [486,-55,1013,36,978], + 0x21A9: [494,-55,1013,65,949], + 0x21AA: [494,-55,1013,65,949], + 0x21AB: [493,-55,1013,65,949], + 0x21AC: [493,-55,1013,65,949], + 0x21AD: [486,-55,1211,34,1178], + 0x21AE: [486,-55,1013,65,949], + 0x21B0: [753,0,506,65,442], + 0x21B1: [753,0,506,65,442], + 0x21B6: [458,0,1124,34,1115], + 0x21B7: [458,0,1124,34,1115], + 0x21BA: [751,0,987,114,875], + 0x21BB: [751,0,987,114,875], + 0x21BC: [394,-149,1013,64,950], + 0x21BD: [394,-148,1013,64,950], + 0x21BE: [714,171,524,233,478], + 0x21BF: [714,171,524,47,293], + 0x21C0: [394,-149,1013,64,950], + 0x21C1: [394,-148,1013,64,950], + 0x21C2: [714,171,524,233,478], + 0x21C3: [714,171,524,47,293], + 0x21C4: [665,124,1013,65,949], + 0x21C6: [665,124,1013,65,949], + 0x21C7: [665,124,1013,65,949], + 0x21C8: [714,171,883,47,837], + 0x21C9: [665,124,1013,65,949], + 0x21CA: [714,171,883,47,837], + 0x21CB: [594,52,1013,65,949], + 0x21CC: [594,52,1013,65,949], + 0x21CD: [537,-6,1013,65,949], + 0x21CE: [537,-6,1013,59,954], + 0x21CF: [537,-6,1013,65,949], + 0x21D0: [539,-7,1013,65,949], + 0x21D1: [713,172,578,24,555], + 0x21D2: [539,-7,1013,65,949], + 0x21D3: [713,172,578,24,555], + 0x21D4: [537,-5,1013,59,954], + 0x21D5: [718,176,578,24,556], + 0x21DA: [607,67,1013,65,949], + 0x21DB: [608,66,1013,65,949], + 0x21DD: [485,-54,1149,34,1116], + 0x21E0: [485,-54,1063,65,998], + 0x21E2: [485,-54,1063,65,998], + 0x2200: [697,15,617,26,592], + 0x2201: [906,146,753,114,640], + 0x2202: [750,11,494,35,460], + 0x2203: [697,0,617,46,572], + 0x2204: [836,141,617,46,572], + 0x2205: [591,13,733,65,668], + 0x2207: [697,4,688,27,662], + 0x2208: [533,-8,563,55,509], + 0x2209: [648,107,563,55,509], + 0x220B: [533,-8,563,55,509], + 0x220D: [482,3,511,65,446], + 0x2212: [299,-243,605,51,555], + 0x2213: [541,0,668,65,604], + 0x2214: [629,89,668,65,604], + 0x2215: [726,119,605,87,519], + 0x2216: [501,-50,799,101,699], + 0x2217: [446,-99,388,31,358], + 0x2218: [417,-124,388,47,342], + 0x2219: [319,-203,249,67,183], + 0x221A: [1079,59,760,63,793], + 0x221D: [466,-75,668,65,604], + 0x221E: [463,-65,897,55,843], + 0x2220: [577,0,535,65,471], + 0x2221: [577,0,535,65,471], + 0x2222: [515,-26,535,65,471], + 0x2223: [714,171,437,189,248], + 0x2224: [714,171,437,0,438], + 0x2225: [714,171,641,186,456], + 0x2226: [714,171,641,0,642], + 0x2227: [585,0,687,65,623], + 0x2228: [585,0,687,65,623], + 0x2229: [603,0,687,65,623], + 0x222A: [603,0,687,65,623], + 0x222B: [885,442,768,54,694], + 0x2234: [524,6,661,65,597], + 0x2235: [524,6,661,65,597], + 0x223C: [355,-186,668,58,610], + 0x223D: [355,-186,668,58,610], + 0x2240: [593,4,277,57,221], + 0x2241: [491,-51,668,56,614], + 0x2242: [434,-106,668,65,604], + 0x2243: [400,-107,668,65,604], + 0x2245: [587,-134,668,65,604], + 0x2246: [605,-18,668,65,604], + 0x2248: [465,-79,668,56,614], + 0x224A: [534,-62,668,65,604], + 0x224D: [478,-63,668,54,616], + 0x224E: [479,-62,668,65,604], + 0x224F: [479,-134,668,65,604], + 0x2250: [503,-38,668,65,604], + 0x2251: [599,58,668,65,604], + 0x2252: [599,58,668,65,604], + 0x2253: [599,58,668,65,604], + 0x2256: [404,-131,668,65,604], + 0x2257: [649,-134,668,65,604], + 0x225C: [640,-134,687,65,623], + 0x2260: [596,55,668,65,604], + 0x2261: [479,-62,668,65,604], + 0x2264: [604,61,669,65,604], + 0x2265: [604,61,669,65,604], + 0x2266: [672,131,668,65,604], + 0x2267: [672,131,668,65,604], + 0x2268: [672,183,668,65,604], + 0x2269: [672,183,668,65,604], + 0x226A: [535,-5,965,55,912], + 0x226B: [535,-5,965,55,912], + 0x226C: [705,179,430,65,366], + 0x226E: [648,107,668,65,604], + 0x226F: [648,107,668,65,604], + 0x2270: [712,171,668,65,604], + 0x2271: [712,171,668,65,604], + 0x2272: [604,118,668,65,604], + 0x2273: [604,118,668,65,604], + 0x2276: [626,85,668,65,604], + 0x2277: [626,85,668,65,604], + 0x227A: [553,14,668,65,604], + 0x227B: [553,14,668,65,604], + 0x227C: [632,91,668,65,604], + 0x227D: [632,91,668,65,604], + 0x227E: [621,118,668,65,604], + 0x227F: [621,118,668,65,604], + 0x2280: [648,107,668,65,604], + 0x2281: [648,107,668,65,604], + 0x2282: [533,-8,668,55,615], + 0x2283: [533,-8,668,55,615], + 0x2286: [602,61,668,55,615], + 0x2287: [602,61,668,55,615], + 0x2288: [712,171,668,55,615], + 0x2289: [712,171,668,55,615], + 0x228A: [602,114,668,55,615], + 0x228B: [602,114,668,55,615], + 0x228E: [603,0,687,65,623], + 0x228F: [533,-8,668,55,615], + 0x2290: [533,-8,668,55,615], + 0x2291: [602,61,668,55,615], + 0x2292: [602,61,668,55,615], + 0x2293: [576,0,687,65,623], + 0x2294: [576,0,687,65,623], + 0x2295: [587,46,668,18,652], + 0x2296: [587,46,668,18,652], + 0x2297: [587,46,668,18,652], + 0x2298: [587,46,668,18,652], + 0x2299: [587,46,668,18,652], + 0x229A: [587,46,668,18,652], + 0x229B: [587,46,668,18,652], + 0x229D: [587,46,668,18,652], + 0x229E: [541,0,668,64,605], + 0x229F: [541,0,668,64,605], + 0x22A0: [541,0,668,64,605], + 0x22A1: [541,0,668,64,605], + 0x22A2: [599,20,748,85,664], + 0x22A3: [599,20,748,85,664], + 0x22A4: [579,0,748,65,684], + 0x22A5: [579,0,748,65,684], + 0x22A8: [541,0,490,65,425], + 0x22A9: [541,0,618,65,554], + 0x22AA: [541,0,746,65,682], + 0x22AC: [541,0,490,-47,425], + 0x22AD: [592,50,490,204,776], + 0x22AE: [541,0,618,-47,554], + 0x22AF: [541,0,748,-47,684], + 0x22B2: [535,-6,669,65,604], + 0x22B3: [535,-6,669,65,604], + 0x22B4: [604,61,669,65,604], + 0x22B5: [604,61,669,65,604], + 0x22B8: [446,-94,1016,65,952], + 0x22BA: [579,0,748,125,625], + 0x22BB: [639,99,687,65,623], + 0x22BC: [639,99,687,65,623], + 0x22C4: [453,-89,273,22,253], + 0x22C5: [329,-213,249,67,183], + 0x22C6: [577,37,708,32,678], + 0x22C8: [515,-23,758,65,694], + 0x22C9: [515,-23,758,65,694], + 0x22CA: [518,-26,758,65,694], + 0x22CB: [714,36,858,55,804], + 0x22CC: [714,36,858,55,804], + 0x22CD: [434,-106,668,58,611], + 0x22CE: [541,-2,668,52,617], + 0x22CF: [541,-2,668,52,617], + 0x22D0: [533,-8,668,55,615], + 0x22D1: [533,-8,668,55,615], + 0x22D2: [603,0,687,65,623], + 0x22D3: [603,0,687,65,623], + 0x22D4: [771,0,687,65,623], + 0x22D6: [535,-5,668,65,604], + 0x22D7: [535,-5,668,65,604], + 0x22D8: [536,-6,1278,55,1224], + 0x22D9: [536,-6,1278,55,1224], + 0x22DA: [831,289,668,65,604], + 0x22DB: [831,289,668,65,604], + 0x22DE: [632,91,668,65,604], + 0x22DF: [632,91,668,65,604], + 0x22E0: [648,107,668,65,604], + 0x22E1: [648,107,668,65,604], + 0x22E6: [604,118,668,65,604], + 0x22E7: [604,118,668,65,604], + 0x22E8: [621,118,668,65,604], + 0x22E9: [621,118,668,65,604], + 0x22EA: [648,107,668,65,604], + 0x22EB: [648,107,668,65,604], + 0x22EC: [712,171,668,65,604], + 0x22ED: [712,171,668,65,604], + 0x22EE: [674,142,249,67,183], + 0x22EF: [329,-213,1000,109,891], + 0x22F1: [568,16,774,95,680], + 0x2308: [713,172,390,93,355], + 0x2309: [713,172,390,36,298], + 0x230A: [713,172,390,93,355], + 0x230B: [713,172,390,36,298], + 0x2322: [333,-164,691,65,627], + 0x2323: [333,-164,691,65,627], + 0x23B4: [755,-545,601,0,602], + 0x23B5: [-165,375,601,0,602], + 0x23DC: [786,-545,1069,64,1006], + 0x23DD: [-545,786,1069,64,1006], + 0x23DE: [776,-545,1029,64,966], + 0x23DF: [-545,776,1029,64,966], + 0x23E0: [755,-545,1029,65,965], + 0x23E1: [-545,755,1029,65,965], + 0x25A0: [541,0,669,64,605], + 0x25A1: [560,0,688,65,623], + 0x25B2: [577,0,667,44,623], + 0x25B3: [577,0,667,44,623], + 0x25B6: [578,1,667,45,622], + 0x25BC: [577,0,667,44,623], + 0x25BD: [577,0,667,44,623], + 0x25C0: [578,1,667,45,622], + 0x2660: [592,0,570,44,526], + 0x2661: [591,7,636,44,593], + 0x2662: [642,101,559,44,516], + 0x2663: [584,0,607,44,564], + 0x266D: [668,122,436,69,387], + 0x266E: [758,216,396,63,347], + 0x266F: [775,234,422,53,384], + 0x2713: [742,7,782,44,749], + 0x2720: [682,95,876,49,827], + 0x27E8: [713,172,381,53,329], + 0x27E9: [713,172,381,53,329], + 0x27EE: [726,223,245,61,213], + 0x27EF: [726,223,245,32,184], + 0x27F5: [488,-57,1513,65,1444], + 0x27F6: [488,-57,1513,65,1444], + 0x27F7: [486,-55,1513,65,1449], + 0x27F8: [537,-5,1513,65,1449], + 0x27F9: [537,-5,1513,65,1449], + 0x27FA: [537,-5,1513,59,1454], + 0x27FC: [486,-55,1513,36,1478], + 0x2997: [709,191,384,87,298], + 0x2998: [709,191,384,87,298], + 0x29EB: [642,101,559,44,516], + 0x29F5: [714,169,463,65,399], + 0x29F8: [1021,510,402,0,403], + 0x29F9: [1021,510,402,0,403], + 0x2A3F: [617,76,812,25,788], + 0x2A5E: [636,262,687,65,623], + 0x2A7D: [615,74,668,65,604], + 0x2A7E: [615,74,668,65,604], + 0x2A85: [672,187,668,65,604], + 0x2A86: [672,187,668,65,604], + 0x2A87: [604,114,668,65,604], + 0x2A88: [604,114,668,65,604], + 0x2A89: [672,187,668,65,604], + 0x2A8A: [672,187,668,65,604], + 0x2A8B: [831,289,668,65,604], + 0x2A8C: [831,289,668,65,604], + 0x2A95: [615,74,668,65,604], + 0x2A96: [615,74,668,65,604], + 0x2AAF: [623,81,668,65,604], + 0x2AB0: [620,84,668,65,604], + 0x2AB5: [680,191,668,65,604], + 0x2AB6: [680,191,668,65,604], + 0x2AB7: [688,187,668,65,604], + 0x2AB8: [688,187,668,65,604], + 0x2AB9: [688,187,668,65,604], + 0x2ABA: [688,187,668,65,604], + 0x2AC5: [669,131,668,55,615], + 0x2AC6: [669,131,668,55,615], + 0x2ACB: [669,183,668,55,615], + 0x2ACC: [669,183,668,55,615] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Main"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Marks/Regular/Main.js new file mode 100644 index 0000000..20e5b5d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Marks/Regular/Main.js @@ -0,0 +1,91 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'AsanaMathJax_Marks', + testString: '\u02DB\u0305\u0332\u0333\u033F\u0342\u2015\u2017\u201A\u201B\u201E\u2022\u2024\u2025\u2030', + 0x20: [0,0,249,0,0], + 0x2DB: [0,188,333,63,269], + 0x305: [587,-542,0,-433,0], + 0x332: [-130,175,0,-433,0], + 0x333: [-130,283,0,-433,0], + 0x33F: [695,-542,0,-433,0], + 0x342: [729,-653,0,-324,-31], + 0x2015: [271,-213,1000,0,1000], + 0x2017: [-75,225,499,0,500], + 0x201A: [100,165,403,141,334], + 0x201B: [709,-446,277,45,233], + 0x201E: [100,165,605,141,536], + 0x2022: [466,-75,522,65,458], + 0x2024: [111,5,315,100,216], + 0x2025: [111,5,530,100,431], + 0x2030: [709,20,1143,123,1021], + 0x2036: [495,-47,599,53,548], + 0x2037: [495,-47,834,53,783], + 0x203B: [547,5,668,59,614], + 0x203C: [694,5,973,81,394], + 0x203F: [96,58,834,36,798], + 0x2040: [642,-488,834,36,798], + 0x2045: [726,184,332,79,288], + 0x2046: [726,184,332,45,254], + 0x2050: [688,0,980,43,937], + 0x205D: [623,3,226,55,171], + 0x205E: [630,3,226,55,171], + 0x20D0: [791,-636,557,0,558], + 0x20D1: [791,-636,557,0,558], + 0x20D2: [813,31,416,252,312], + 0x20D3: [1014,0,987,679,738], + 0x20D4: [780,-492,680,0,681], + 0x20D5: [780,-492,680,0,681], + 0x20D6: [790,-519,557,0,558], + 0x20D8: [417,-124,388,47,342], + 0x20D9: [542,-236,447,47,401], + 0x20DA: [541,-235,447,47,401], + 0x20DB: [694,-578,519,27,493], + 0x20DC: [694,-578,694,27,668], + 0x20DD: [825,218,0,-1045,0], + 0x20DE: [705,164,0,-870,1], + 0x20DF: [1114,117,0,-1230,0], + 0x20E0: [705,164,0,-872,-1], + 0x20E1: [790,-519,556,0,557], + 0x20E2: [655,55,0,-1255,0], + 0x20E3: [960,259,0,-1219,0], + 0x20E4: [896,62,0,-849,0], + 0x20E5: [714,169,0,-333,0], + 0x20E6: [713,172,0,-345,-76], + 0x20E7: [710,15,0,-283,283], + 0x20E8: [-142,258,519,27,493], + 0x20E9: [723,-514,629,0,630], + 0x20EA: [486,-55,1013,65,949], + 0x20EB: [714,169,0,-609,-65], + 0x20EC: [673,-518,557,0,558], + 0x20ED: [673,-518,557,0,558], + 0x20EE: [-83,354,556,0,557], + 0x20EF: [-83,354,556,0,557], + 0x3014: [709,191,384,87,298], + 0x3015: [709,191,384,87,298], + 0x3018: [709,191,384,87,298], + 0x3019: [730,212,384,77,308] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Marks"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Marks/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Misc/Regular/Main.js new file mode 100644 index 0000000..a8d9a5b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Misc/Regular/Main.js @@ -0,0 +1,112 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'AsanaMathJax_Misc', + testString: '\u2070\u2071\u2074\u2075\u2076\u2077\u2078\u2079\u207A\u207B\u207C\u207D\u207E\u207F\u2080', + 0x20: [0,0,249,0,0], + 0x2070: [696,-271,300,14,286], + 0x2071: [685,-271,209,27,183], + 0x2074: [690,-271,299,2,296], + 0x2075: [696,-271,304,14,292], + 0x2076: [696,-271,299,14,286], + 0x2077: [687,-271,299,9,290], + 0x2078: [696,-271,299,15,285], + 0x2079: [696,-271,299,13,286], + 0x207A: [593,-271,406,35,372], + 0x207B: [449,-415,385,35,351], + 0x207C: [513,-349,406,35,372], + 0x207D: [727,-162,204,35,186], + 0x207E: [727,-162,204,19,170], + 0x207F: [555,-271,412,30,383], + 0x2080: [154,271,300,14,286], + 0x2081: [147,271,299,32,254], + 0x2082: [144,271,299,6,284], + 0x2083: [154,271,299,5,281], + 0x2084: [148,271,299,2,296], + 0x2085: [154,271,304,14,292], + 0x2086: [154,271,299,14,286], + 0x2087: [145,271,299,9,290], + 0x2088: [154,271,299,15,285], + 0x2089: [154,271,299,13,286], + 0x208A: [51,271,406,35,372], + 0x208B: [-93,127,385,35,351], + 0x208C: [-29,193,406,35,372], + 0x208D: [197,368,204,35,186], + 0x208E: [197,368,204,19,170], + 0x2090: [12,277,334,31,304], + 0x2091: [22,271,328,30,294], + 0x2092: [22,271,361,31,331], + 0x2093: [11,273,359,31,329], + 0x2094: [22,271,323,30,294], + 0x20AC: [683,0,721,0,689], + 0x2153: [692,3,750,15,735], + 0x2154: [689,3,781,15,766], + 0x2155: [692,7,766,15,751], + 0x2156: [689,7,781,15,766], + 0x2157: [691,7,766,15,751], + 0x2158: [690,7,766,15,751], + 0x2159: [692,7,750,15,735], + 0x215A: [692,7,750,15,735], + 0x215B: [693,1,750,14,736], + 0x215C: [691,1,750,15,736], + 0x215D: [690,1,750,15,736], + 0x215E: [691,2,677,15,662], + 0x215F: [692,0,392,15,625], + 0x2160: [692,3,336,22,315], + 0x2161: [692,3,646,30,618], + 0x2162: [692,3,966,43,924], + 0x2163: [692,9,1015,12,1004], + 0x2164: [692,9,721,8,706], + 0x2165: [692,9,1015,12,1004], + 0x2166: [692,9,1315,15,1301], + 0x2167: [692,9,1609,16,1594], + 0x2168: [700,3,979,26,954], + 0x2169: [700,3,666,14,648], + 0x216A: [700,3,954,14,940], + 0x216B: [700,3,1254,14,1236], + 0x216C: [692,3,610,22,586], + 0x216D: [709,20,708,22,670], + 0x216E: [692,3,773,22,751], + 0x216F: [692,13,945,16,926], + 0x2170: [687,3,290,21,271], + 0x2171: [687,3,544,21,523], + 0x2172: [687,3,794,21,773], + 0x2173: [687,7,826,21,802], + 0x2174: [459,7,564,6,539], + 0x2175: [687,7,834,6,813], + 0x2176: [687,7,1094,6,1065], + 0x2177: [687,7,1339,6,1313], + 0x2178: [687,3,768,21,749], + 0x2179: [469,3,515,20,496], + 0x217A: [687,3,764,20,746], + 0x217B: [687,3,1019,20,997], + 0x217C: [726,3,290,21,271], + 0x217D: [469,20,443,26,413], + 0x217E: [726,12,610,35,579], + 0x217F: [469,3,882,16,869], + 0x2731: [669,-148,601,55,546], + 0x2736: [572,0,592,45,547] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Misc"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Misc/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Monospace/Regular/Main.js new file mode 100644 index 0000000..d0c2721 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Monospace/Regular/Main.js @@ -0,0 +1,93 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'AsanaMathJax_Monospace', + testString: '\u00A0\uD835\uDE70\uD835\uDE71\uD835\uDE72\uD835\uDE73\uD835\uDE74\uD835\uDE75\uD835\uDE76\uD835\uDE77\uD835\uDE78\uD835\uDE79\uD835\uDE7A\uD835\uDE7B\uD835\uDE7C\uD835\uDE7D', + 0x20: [0,0,524,0,0], + 0xA0: [0,0,524,0,0], + 0x1D670: [623,0,524,27,497], + 0x1D671: [611,0,524,23,482], + 0x1D672: [622,11,524,40,484], + 0x1D673: [611,0,524,19,485], + 0x1D674: [611,0,524,26,502], + 0x1D675: [611,0,524,28,490], + 0x1D676: [622,11,524,38,496], + 0x1D677: [611,0,524,22,502], + 0x1D678: [611,0,524,79,446], + 0x1D679: [611,11,524,71,478], + 0x1D67A: [611,0,524,26,495], + 0x1D67B: [611,0,524,32,488], + 0x1D67C: [611,0,524,17,507], + 0x1D67D: [611,0,524,28,496], + 0x1D67E: [622,11,524,56,468], + 0x1D67F: [611,0,524,26,480], + 0x1D680: [622,139,524,56,468], + 0x1D681: [611,11,524,22,522], + 0x1D682: [622,11,524,52,472], + 0x1D683: [611,0,524,26,498], + 0x1D684: [611,11,524,4,520], + 0x1D685: [611,8,524,18,506], + 0x1D686: [611,8,524,11,513], + 0x1D687: [611,0,524,27,496], + 0x1D688: [611,0,524,19,505], + 0x1D689: [611,0,524,48,481], + 0x1D68A: [440,6,524,55,524], + 0x1D68B: [611,6,524,12,488], + 0x1D68C: [440,6,524,73,466], + 0x1D68D: [611,6,524,36,512], + 0x1D68E: [440,6,524,55,464], + 0x1D68F: [617,0,524,42,437], + 0x1D690: [442,229,524,29,509], + 0x1D691: [611,0,524,12,512], + 0x1D692: [612,0,524,78,455], + 0x1D693: [612,228,524,48,368], + 0x1D694: [611,0,524,21,508], + 0x1D695: [611,0,524,58,467], + 0x1D696: [437,0,524,-4,516], + 0x1D697: [437,0,524,12,512], + 0x1D698: [440,6,524,57,467], + 0x1D699: [437,222,524,12,488], + 0x1D69A: [437,222,524,40,537], + 0x1D69B: [437,0,524,32,487], + 0x1D69C: [440,6,524,72,459], + 0x1D69D: [554,6,524,25,449], + 0x1D69E: [431,6,524,12,512], + 0x1D69F: [431,4,524,24,500], + 0x1D6A0: [431,4,524,16,508], + 0x1D6A1: [431,0,524,27,496], + 0x1D6A2: [431,228,524,26,500], + 0x1D6A3: [431,0,524,33,475], + 0x1D7F6: [691,12,499,48,451], + 0x1D7F7: [691,0,499,100,421], + 0x1D7F8: [691,0,499,50,450], + 0x1D7F9: [691,12,499,42,457], + 0x1D7FA: [692,0,499,28,471], + 0x1D7FB: [679,12,499,50,450], + 0x1D7FC: [691,12,499,50,449], + 0x1D7FD: [697,12,499,42,457], + 0x1D7FE: [691,12,499,42,457], + 0x1D7FF: [691,12,499,50,449] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Monospace"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Monospace/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..3c83eef --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/NonUnicode/Regular/Main.js @@ -0,0 +1,310 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'AsanaMathJax_NonUnicode', + testString: '\uE000\uE001\uE002\uE003\uE004\uE005\uE006\uE007\uE008\uE009\uE00A\uE00B\uE00C\uE00D\uE00E', + 0x20: [0,0,249,0,0], + 0xE000: [705,3,751,28,724], + 0xE001: [692,6,610,26,559], + 0xE002: [706,18,687,45,651], + 0xE003: [692,3,777,28,741], + 0xE004: [692,3,610,30,570], + 0xE005: [692,3,555,0,548], + 0xE006: [706,18,721,50,694], + 0xE007: [692,3,777,-3,800], + 0xE008: [692,3,332,7,354], + 0xE009: [692,206,332,-35,358], + 0xE00A: [692,3,666,13,683], + 0xE00B: [692,3,555,16,523], + 0xE00C: [698,18,953,-19,950], + 0xE00D: [692,11,777,2,802], + 0xE00E: [706,18,777,53,748], + 0xE00F: [692,3,610,9,594], + 0xE010: [706,201,777,53,748], + 0xE011: [691,3,666,9,639], + 0xE012: [706,18,555,42,506], + 0xE013: [692,3,610,53,635], + 0xE014: [692,19,777,88,798], + 0xE015: [692,8,721,75,754], + 0xE016: [700,8,943,71,980], + 0xE017: [692,3,721,20,734], + 0xE018: [705,3,666,52,675], + 0xE019: [692,3,666,20,637], + 0xE01A: [482,11,443,4,406], + 0xE01B: [733,11,462,37,433], + 0xE01C: [482,11,406,25,389], + 0xE01D: [733,11,499,17,483], + 0xE01E: [483,11,388,15,374], + 0xE01F: [733,276,550,-25,550], + 0xE020: [482,276,499,-37,498], + 0xE021: [733,9,499,10,471], + 0xE022: [712,9,277,34,264], + 0xE023: [712,276,277,-70,265], + 0xE024: [733,9,468,14,455], + 0xE025: [733,9,277,36,251], + 0xE026: [482,9,777,24,740], + 0xE027: [482,9,555,24,514], + 0xE028: [482,11,443,17,411], + 0xE029: [482,276,499,-7,465], + 0xE02A: [482,276,462,24,432], + 0xE02B: [482,9,388,26,384], + 0xE02C: [482,11,388,9,345], + 0xE02D: [646,9,332,41,310], + 0xE02E: [482,11,555,32,512], + 0xE02F: [482,11,499,21,477], + 0xE030: [482,11,721,21,699], + 0xE031: [482,11,499,9,484], + 0xE032: [482,276,499,-8,490], + 0xE033: [482,11,443,-1,416], + 0xE034: [705,3,751,28,724], + 0xE035: [692,6,610,26,559], + 0xE036: [706,18,687,45,651], + 0xE037: [692,3,777,28,741], + 0xE038: [692,3,610,30,570], + 0xE039: [692,3,555,0,548], + 0xE03A: [706,18,721,50,694], + 0xE03B: [692,3,777,-3,800], + 0xE03C: [692,3,332,7,354], + 0xE03D: [692,206,332,-35,358], + 0xE03E: [692,3,666,13,683], + 0xE03F: [692,3,555,16,523], + 0xE040: [698,18,953,-19,950], + 0xE041: [692,11,777,2,802], + 0xE042: [706,18,777,53,748], + 0xE043: [692,3,610,9,594], + 0xE044: [706,201,777,53,748], + 0xE045: [691,3,666,9,639], + 0xE046: [706,18,555,42,506], + 0xE047: [692,3,610,53,635], + 0xE048: [692,19,777,88,798], + 0xE049: [692,8,721,75,754], + 0xE04A: [700,8,943,71,980], + 0xE04B: [692,3,721,20,734], + 0xE04C: [705,3,666,52,675], + 0xE04D: [692,3,666,20,637], + 0xE04E: [482,11,443,4,406], + 0xE04F: [733,11,462,37,433], + 0xE050: [482,11,406,25,389], + 0xE051: [733,11,499,17,483], + 0xE052: [483,11,388,15,374], + 0xE053: [733,276,550,-25,550], + 0xE054: [482,276,499,-37,498], + 0xE055: [733,9,499,10,471], + 0xE056: [712,9,277,34,264], + 0xE057: [712,276,277,-70,265], + 0xE058: [733,9,468,14,455], + 0xE059: [733,9,277,36,251], + 0xE05A: [482,9,777,24,740], + 0xE05B: [482,9,555,24,514], + 0xE05C: [482,11,443,17,411], + 0xE05D: [482,276,499,-7,465], + 0xE05E: [482,276,462,24,432], + 0xE05F: [482,9,388,26,384], + 0xE060: [482,11,388,9,345], + 0xE061: [646,9,332,41,310], + 0xE062: [482,11,555,32,512], + 0xE063: [482,11,499,21,477], + 0xE064: [482,11,721,21,699], + 0xE065: [482,11,499,9,484], + 0xE066: [482,276,499,-8,490], + 0xE067: [482,11,443,-1,416], + 0xE068: [689,20,499,29,465], + 0xE069: [694,3,499,60,418], + 0xE06A: [689,3,499,16,468], + 0xE06B: [689,20,499,15,462], + 0xE06C: [694,3,499,2,472], + 0xE06D: [689,20,499,13,459], + 0xE06E: [689,20,499,32,468], + 0xE06F: [689,3,499,44,497], + 0xE070: [689,20,499,30,464], + 0xE071: [689,20,499,20,457], + 0xE072: [689,20,499,29,465], + 0xE073: [694,3,499,60,418], + 0xE074: [689,3,499,16,468], + 0xE075: [689,20,499,15,462], + 0xE076: [694,3,499,2,472], + 0xE077: [689,20,499,13,459], + 0xE078: [689,20,499,32,468], + 0xE079: [689,3,499,44,497], + 0xE07A: [689,20,499,30,464], + 0xE07B: [689,20,499,20,457], + 0xE07C: [469,12,499,32,471], + 0xE07D: [726,27,552,-15,508], + 0xE07E: [497,20,443,25,413], + 0xE07F: [726,12,610,34,579], + 0xE080: [469,20,478,26,448], + 0xE081: [737,3,332,23,341], + 0xE082: [469,283,555,32,544], + 0xE083: [726,3,581,6,572], + 0xE084: [687,3,290,21,271], + 0xE085: [688,283,233,-40,167], + 0xE086: [726,12,555,21,549], + 0xE087: [726,3,290,21,271], + 0xE088: [469,3,882,16,869], + 0xE089: [469,3,581,6,572], + 0xE08A: [469,20,545,32,514], + 0xE08B: [476,281,600,8,556], + 0xE08C: [477,281,600,44,593], + 0xE08D: [469,3,394,21,374], + 0xE08E: [469,20,423,30,391], + 0xE08F: [621,12,325,22,319], + 0xE090: [469,12,602,18,581], + 0xE091: [459,7,564,6,539], + 0xE092: [469,7,833,6,808], + 0xE093: [469,3,515,20,496], + 0xE094: [459,283,555,12,544], + 0xE095: [462,3,499,16,466], + 0xE096: [469,12,499,32,471], + 0xE097: [726,27,552,-15,508], + 0xE098: [497,20,443,25,413], + 0xE099: [726,12,610,34,579], + 0xE09A: [469,20,478,26,448], + 0xE09B: [737,3,332,23,341], + 0xE09C: [469,283,555,32,544], + 0xE09D: [726,3,581,6,572], + 0xE09E: [687,3,290,21,271], + 0xE09F: [688,283,233,-40,167], + 0xE0A0: [726,12,555,21,549], + 0xE0A1: [726,3,290,21,271], + 0xE0A2: [469,3,882,16,869], + 0xE0A3: [469,3,581,6,572], + 0xE0A4: [469,20,545,32,514], + 0xE0A5: [476,281,600,8,556], + 0xE0A6: [477,281,600,44,593], + 0xE0A7: [469,3,394,21,374], + 0xE0A8: [469,20,423,30,391], + 0xE0A9: [621,12,325,22,319], + 0xE0AA: [469,12,602,18,581], + 0xE0AB: [459,7,564,6,539], + 0xE0AC: [469,7,833,6,808], + 0xE0AD: [469,3,515,20,496], + 0xE0AE: [459,283,555,12,544], + 0xE0AF: [462,3,499,16,466], + 0xE0B0: [689,4,870,18,852], + 0xE0B1: [704,6,824,34,791], + 0xE0B2: [692,3,555,22,536], + 0xE0B3: [697,4,688,27,662], + 0xE0B4: [709,20,785,22,764], + 0xE0B5: [697,4,753,17,729], + 0xE0B6: [689,4,692,42,651], + 0xE0B7: [689,4,812,25,788], + 0xE0B8: [689,4,684,45,643], + 0xE0B9: [691,4,733,3,735], + 0xE0BA: [689,4,755,23,723], + 0xE0BB: [692,3,555,22,536], + 0xE0BC: [697,4,688,27,662], + 0xE0BD: [709,20,785,22,764], + 0xE0BE: [697,4,753,17,729], + 0xE0BF: [689,4,692,42,651], + 0xE0C0: [689,4,812,25,788], + 0xE0C1: [689,4,684,45,643], + 0xE0C2: [691,4,733,3,735], + 0xE0C3: [689,4,755,23,723], + 0xE0C4: [689,4,870,18,852], + 0xE0C5: [704,6,824,34,791], + 0xE0C6: [700,3,777,15,756], + 0xE0C7: [692,3,610,26,576], + 0xE0C8: [709,20,708,22,670], + 0xE0C9: [692,3,773,22,751], + 0xE0CA: [692,3,610,22,572], + 0xE0CB: [692,3,555,22,536], + 0xE0CC: [709,20,762,22,728], + 0xE0CD: [692,3,831,22,810], + 0xE0CE: [692,3,336,22,315], + 0xE0CF: [692,194,347,0,326], + 0xE0D0: [692,3,725,22,719], + 0xE0D1: [692,3,610,22,586], + 0xE0D2: [692,13,945,16,926], + 0xE0D3: [692,6,830,17,813], + 0xE0D4: [709,20,785,22,764], + 0xE0D5: [692,3,603,22,580], + 0xE0D6: [709,176,785,22,764], + 0xE0D7: [692,3,667,22,669], + 0xE0D8: [709,20,524,24,503], + 0xE0D9: [692,3,612,18,595], + 0xE0DA: [692,20,777,12,759], + 0xE0DB: [692,9,721,8,706], + 0xE0DC: [700,9,1000,8,984], + 0xE0DD: [700,3,666,14,648], + 0xE0DE: [705,3,666,9,654], + 0xE0DF: [692,3,666,15,638], + 0xE0E0: [700,3,777,15,756], + 0xE0E1: [692,3,610,26,576], + 0xE0E2: [709,20,708,22,670], + 0xE0E3: [692,3,773,22,751], + 0xE0E4: [692,3,610,22,572], + 0xE0E5: [692,3,555,22,536], + 0xE0E6: [709,20,762,22,728], + 0xE0E7: [692,3,831,22,810], + 0xE0E8: [692,3,336,22,315], + 0xE0E9: [692,194,347,0,326], + 0xE0EA: [692,3,725,22,719], + 0xE0EB: [692,3,610,22,586], + 0xE0EC: [692,13,945,16,926], + 0xE0ED: [692,6,830,17,813], + 0xE0EE: [691,2,765,41,745], + 0xE0EF: [692,3,603,22,580], + 0xE0F0: [709,176,785,22,764], + 0xE0F1: [692,3,667,22,669], + 0xE0F2: [709,20,524,24,503], + 0xE0F3: [692,3,612,18,595], + 0xE0F4: [692,20,777,12,759], + 0xE0F5: [692,9,721,8,706], + 0xE0F6: [700,9,1000,8,984], + 0xE0F7: [700,3,666,14,648], + 0xE0F8: [705,3,666,9,654], + 0xE0F9: [692,3,666,15,638], + 0xE0FA: [713,15,448,19,462], + 0xE0FB: [713,13,438,16,455], + 0xE0FC: [701,13,562,30,492], + 0xE0FD: [702,15,620,62,583], + 0xE0FE: [485,277,681,8,606], + 0xE0FF: [431,0,524,78,455], + 0xE100: [431,228,524,48,368], + 0xE101: [451,0,401,80,370], + 0xE102: [451,227,301,-110,305], + 0xE103: [444,0,237,81,250], + 0xE104: [444,205,265,-97,278], + 0xE105: [458,0,254,61,194], + 0xE106: [458,205,285,-71,224], + 0xE107: [444,0,237,81,156], + 0xE108: [444,205,265,-61,184], + 0xE109: [540,11,312,22,302], + 0xE10A: [539,168,322,35,289], + 0xE10B: [442,0,388,42,346], + 0xE10C: [442,210,409,-35,316], + 0xE10D: [501,4,270,32,258], + 0xE10E: [504,169,270,32,229], + 0xE10F: [431,19,444,55,394], + 0xE110: [431,307,870,55,820], + 0xE111: [451,22,455,41,391], + 0xE112: [451,343,943,41,869], + 0xE113: [469,17,332,26,293], + 0xE114: [469,271,332,-64,274], + 0xE115: [471,3,332,34,298], + 0xE116: [471,266,332,3,227], + 0xE117: [469,283,233,-40,159] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_NonUnicode"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Normal/Regular/Main.js new file mode 100644 index 0000000..7500abb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Normal/Regular/Main.js @@ -0,0 +1,372 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'AsanaMathJax_Normal', + testString: '\u210E\uD835\uDC00\uD835\uDC01\uD835\uDC02\uD835\uDC03\uD835\uDC04\uD835\uDC05\uD835\uDC06\uD835\uDC07\uD835\uDC08\uD835\uDC09\uD835\uDC0A\uD835\uDC0B\uD835\uDC0C\uD835\uDC0D', + 0x20: [0,0,249,0,0], + 0x210E: [733,9,499,10,471], + 0x1D400: [686,3,777,24,757], + 0x1D401: [681,3,666,39,611], + 0x1D402: [695,17,721,44,695], + 0x1D403: [681,3,832,35,786], + 0x1D404: [682,4,610,39,577], + 0x1D405: [682,3,555,28,539], + 0x1D406: [695,17,832,47,776], + 0x1D407: [681,3,832,36,796], + 0x1D408: [681,3,388,39,350], + 0x1D409: [681,213,388,-11,350], + 0x1D40A: [681,3,777,39,763], + 0x1D40B: [681,4,610,39,577], + 0x1D40C: [681,10,1000,32,968], + 0x1D40D: [681,16,832,35,798], + 0x1D40E: [695,17,832,47,787], + 0x1D40F: [681,3,610,39,594], + 0x1D410: [695,184,832,47,787], + 0x1D411: [681,3,721,39,708], + 0x1D412: [695,17,610,57,559], + 0x1D413: [681,3,666,17,650], + 0x1D414: [681,17,777,26,760], + 0x1D415: [681,3,777,20,763], + 0x1D416: [686,3,1000,17,988], + 0x1D417: [695,3,666,17,650], + 0x1D418: [695,3,666,15,660], + 0x1D419: [681,3,666,24,627], + 0x1D41A: [471,17,499,40,478], + 0x1D41B: [720,17,610,10,556], + 0x1D41C: [471,17,443,37,414], + 0x1D41D: [720,17,610,42,577], + 0x1D41E: [471,17,499,42,461], + 0x1D41F: [720,3,388,34,381], + 0x1D420: [471,266,555,26,535], + 0x1D421: [720,3,610,24,587], + 0x1D422: [706,3,332,34,298], + 0x1D423: [706,266,332,3,241], + 0x1D424: [720,3,610,21,597], + 0x1D425: [720,3,332,24,296], + 0x1D426: [471,3,888,24,864], + 0x1D427: [471,3,610,24,587], + 0x1D428: [471,17,555,40,517], + 0x1D429: [471,258,610,29,567], + 0x1D42A: [471,258,610,52,589], + 0x1D42B: [471,3,388,30,389], + 0x1D42C: [471,17,443,39,405], + 0x1D42D: [632,17,332,22,324], + 0x1D42E: [471,17,610,25,583], + 0x1D42F: [459,3,555,11,545], + 0x1D430: [471,3,832,13,820], + 0x1D431: [471,3,499,20,483], + 0x1D432: [459,266,555,10,546], + 0x1D433: [459,3,499,16,464], + 0x1D434: [705,3,751,28,724], + 0x1D435: [692,6,610,26,559], + 0x1D436: [706,18,687,45,651], + 0x1D437: [692,3,777,28,741], + 0x1D438: [692,3,610,30,570], + 0x1D439: [692,3,555,0,548], + 0x1D43A: [706,18,721,50,694], + 0x1D43B: [692,3,777,-3,800], + 0x1D43C: [692,3,332,7,354], + 0x1D43D: [692,206,332,-35,358], + 0x1D43E: [692,3,666,13,683], + 0x1D43F: [692,3,555,16,523], + 0x1D440: [698,18,953,-19,950], + 0x1D441: [692,11,777,2,802], + 0x1D442: [706,18,777,53,748], + 0x1D443: [692,3,610,9,594], + 0x1D444: [706,201,777,53,748], + 0x1D445: [691,3,666,9,639], + 0x1D446: [706,18,555,42,506], + 0x1D447: [692,3,610,53,635], + 0x1D448: [692,19,777,88,798], + 0x1D449: [692,8,721,75,754], + 0x1D44A: [700,8,943,71,980], + 0x1D44B: [692,3,721,20,734], + 0x1D44C: [705,3,666,52,675], + 0x1D44D: [692,3,666,20,637], + 0x1D44E: [482,11,443,4,406], + 0x1D44F: [733,11,462,37,433], + 0x1D450: [482,11,406,25,389], + 0x1D451: [733,11,499,17,483], + 0x1D452: [483,11,388,15,374], + 0x1D453: [733,276,550,-25,550], + 0x1D454: [482,276,499,-37,498], + 0x1D456: [712,9,277,34,264], + 0x1D457: [712,276,277,-70,265], + 0x1D458: [733,9,468,14,455], + 0x1D459: [733,9,277,36,251], + 0x1D45A: [482,9,777,24,740], + 0x1D45B: [482,9,555,24,514], + 0x1D45C: [482,11,443,17,411], + 0x1D45D: [482,276,499,-7,465], + 0x1D45E: [482,276,462,24,432], + 0x1D45F: [482,9,388,26,384], + 0x1D460: [482,11,388,9,345], + 0x1D461: [646,9,332,41,310], + 0x1D462: [482,11,555,32,512], + 0x1D463: [482,11,499,21,477], + 0x1D464: [482,11,721,21,699], + 0x1D465: [482,11,499,9,484], + 0x1D466: [482,276,499,-8,490], + 0x1D467: [482,11,443,-1,416], + 0x1D468: [683,3,721,-35,685], + 0x1D469: [682,3,666,8,629], + 0x1D46A: [695,17,684,69,695], + 0x1D46B: [682,3,777,0,747], + 0x1D46C: [681,3,620,11,606], + 0x1D46D: [681,3,555,-6,593], + 0x1D46E: [695,17,777,72,750], + 0x1D46F: [681,3,777,-12,826], + 0x1D470: [681,3,388,-1,412], + 0x1D471: [681,207,388,-29,417], + 0x1D472: [681,3,721,-10,746], + 0x1D473: [681,3,610,26,578], + 0x1D474: [681,17,943,-23,985], + 0x1D475: [681,3,777,-2,829], + 0x1D476: [695,17,832,76,794], + 0x1D477: [681,3,711,11,673], + 0x1D478: [695,222,832,76,794], + 0x1D479: [681,3,721,4,697], + 0x1D47A: [695,17,555,50,517], + 0x1D47B: [681,3,610,56,674], + 0x1D47C: [681,17,777,83,825], + 0x1D47D: [681,3,666,67,745], + 0x1D47E: [689,3,1000,67,1073], + 0x1D47F: [681,3,721,-9,772], + 0x1D480: [695,3,610,54,675], + 0x1D481: [681,3,666,1,676], + 0x1D482: [470,17,555,44,519], + 0x1D483: [726,17,536,44,494], + 0x1D484: [469,17,443,32,436], + 0x1D485: [726,17,555,38,550], + 0x1D486: [469,17,443,28,418], + 0x1D487: [726,271,449,-25,554], + 0x1D488: [469,271,499,-50,529], + 0x1D489: [726,17,555,22,522], + 0x1D48A: [695,17,332,26,312], + 0x1D48B: [695,271,332,-64,323], + 0x1D48C: [726,17,555,34,528], + 0x1D48D: [726,17,332,64,318], + 0x1D48E: [469,17,832,19,803], + 0x1D48F: [469,17,555,17,521], + 0x1D490: [469,17,555,48,502], + 0x1D491: [469,271,555,-21,516], + 0x1D492: [469,271,536,32,513], + 0x1D493: [469,17,388,20,411], + 0x1D494: [469,17,443,25,406], + 0x1D495: [636,17,388,42,409], + 0x1D496: [469,17,555,22,521], + 0x1D497: [469,17,555,19,513], + 0x1D498: [469,17,832,27,802], + 0x1D499: [469,17,499,-8,500], + 0x1D49A: [469,271,555,13,541], + 0x1D49B: [469,17,499,31,470], + 0x1D6A4: [482,9,277,34,241], + 0x1D6A5: [482,276,277,-70,228], + 0x1D6A8: [686,3,777,24,757], + 0x1D6A9: [681,3,666,39,611], + 0x1D6AA: [681,3,555,28,533], + 0x1D6AB: [693,0,686,31,662], + 0x1D6AC: [681,4,610,39,577], + 0x1D6AD: [681,3,666,24,627], + 0x1D6AE: [681,3,832,36,796], + 0x1D6AF: [695,17,832,47,787], + 0x1D6B0: [681,3,388,39,350], + 0x1D6B1: [681,3,777,39,763], + 0x1D6B2: [693,3,777,29,757], + 0x1D6B3: [681,9,1000,32,968], + 0x1D6B4: [681,16,832,35,798], + 0x1D6B5: [689,3,684,34,646], + 0x1D6B6: [695,17,832,47,787], + 0x1D6B7: [689,3,817,36,782], + 0x1D6B8: [681,3,610,39,594], + 0x1D6B9: [695,17,832,47,787], + 0x1D6BA: [689,3,659,25,614], + 0x1D6BB: [681,3,666,17,644], + 0x1D6BC: [705,0,698,6,702], + 0x1D6BD: [689,3,957,46,913], + 0x1D6BE: [695,0,666,17,650], + 0x1D6BF: [695,5,935,6,928], + 0x1D6C0: [700,3,810,34,773], + 0x1D6C1: [693,0,686,25,656], + 0x1D6C2: [478,21,663,68,628], + 0x1D6C3: [705,282,582,57,527], + 0x1D6C4: [480,291,632,-19,556], + 0x1D6C5: [707,22,556,75,519], + 0x1D6C6: [479,21,463,67,459], + 0x1D6C7: [704,193,558,51,533], + 0x1D6C8: [480,282,560,-16,492], + 0x1D6C9: [701,21,645,87,587], + 0x1D6CA: [481,17,272,64,275], + 0x1D6CB: [481,17,539,3,534], + 0x1D6CC: [698,6,587,54,616], + 0x1D6CD: [492,302,610,69,583], + 0x1D6CE: [480,16,561,2,513], + 0x1D6CF: [704,193,524,59,529], + 0x1D6D0: [471,17,555,40,517], + 0x1D6D1: [476,16,633,14,628], + 0x1D6D2: [476,281,566,38,502], + 0x1D6D3: [477,193,515,30,502], + 0x1D6D4: [492,25,570,60,554], + 0x1D6D5: [480,17,518,37,485], + 0x1D6D6: [480,18,576,5,514], + 0x1D6D7: [478,277,836,31,753], + 0x1D6D8: [480,183,583,1,551], + 0x1D6D9: [688,279,762,-3,708], + 0x1D6DA: [480,14,817,61,755], + 0x1D6DB: [740,17,537,52,482], + 0x1D6DC: [470,17,528,38,477], + 0x1D6DD: [700,18,590,32,576], + 0x1D6DE: [439,24,666,60,712], + 0x1D6DF: [688,279,742,47,685], + 0x1D6E0: [476,266,562,95,535], + 0x1D6E1: [566,14,817,68,762], + 0x1D6E2: [705,3,721,-19,677], + 0x1D6E3: [692,4,610,26,559], + 0x1D6E4: [692,3,555,-39,597], + 0x1D6E5: [697,4,688,-33,602], + 0x1D6E6: [690,0,610,30,570], + 0x1D6E7: [692,3,666,20,637], + 0x1D6E8: [689,3,777,-3,800], + 0x1D6E9: [706,18,777,53,748], + 0x1D6EA: [689,3,332,7,345], + 0x1D6EB: [692,3,666,13,683], + 0x1D6EC: [697,4,753,-41,670], + 0x1D6ED: [697,18,963,-19,940], + 0x1D6EE: [692,11,777,2,804], + 0x1D6EF: [689,4,692,6,673], + 0x1D6F0: [706,18,777,53,748], + 0x1D6F1: [689,4,812,-33,845], + 0x1D6F2: [692,3,610,9,594], + 0x1D6F3: [706,18,777,53,748], + 0x1D6F4: [689,4,684,-16,645], + 0x1D6F5: [692,3,610,53,635], + 0x1D6F6: [691,4,733,41,778], + 0x1D6F7: [689,4,745,21,732], + 0x1D6F8: [692,3,721,20,734], + 0x1D6F9: [689,4,870,79,906], + 0x1D6FA: [704,6,824,-11,790], + 0x1D6FB: [697,4,688,87,717], + 0x1D6FC: [473,16,594,23,558], + 0x1D6FD: [680,283,512,-8,476], + 0x1D6FE: [473,273,581,18,547], + 0x1D6FF: [701,16,497,28,455], + 0x1D700: [473,15,493,54,446], + 0x1D701: [712,149,504,49,473], + 0x1D702: [473,275,531,38,497], + 0x1D703: [702,16,613,68,576], + 0x1D704: [473,16,310,62,275], + 0x1D705: [473,16,571,38,542], + 0x1D706: [701,16,618,25,570], + 0x1D707: [473,286,610,45,565], + 0x1D708: [473,7,497,2,474], + 0x1D709: [701,148,547,42,501], + 0x1D70A: [482,11,443,17,411], + 0x1D70B: [467,15,653,46,613], + 0x1D70C: [473,284,566,34,525], + 0x1D70D: [463,155,501,44,458], + 0x1D70E: [474,15,552,28,524], + 0x1D70F: [463,14,519,48,476], + 0x1D710: [471,12,547,39,509], + 0x1D711: [485,277,681,28,643], + 0x1D712: [479,193,608,-1,601], + 0x1D713: [682,281,695,39,653], + 0x1D714: [463,12,715,24,673], + 0x1D715: [754,4,563,53,538], + 0x1D716: [481,11,465,13,457], + 0x1D717: [702,15,620,41,572], + 0x1D718: [439,2,666,24,746], + 0x1D719: [705,289,665,26,622], + 0x1D71A: [474,260,478,55,493], + 0x1D71B: [528,12,715,24,674], + 0x1D71C: [686,3,758,-37,703], + 0x1D71D: [681,3,666,12,627], + 0x1D71E: [681,3,555,-32,595], + 0x1D71F: [693,0,686,-30,604], + 0x1D720: [681,0,610,12,622], + 0x1D721: [681,3,666,-36,683], + 0x1D722: [681,3,832,-24,856], + 0x1D723: [695,17,832,38,795], + 0x1D724: [681,3,388,-21,411], + 0x1D725: [681,3,777,-21,798], + 0x1D726: [693,3,777,-32,703], + 0x1D727: [681,9,1000,-28,1029], + 0x1D728: [681,15,832,-24,859], + 0x1D729: [689,3,684,-2,660], + 0x1D72A: [695,17,832,38,795], + 0x1D72B: [689,3,817,-25,843], + 0x1D72C: [681,3,610,-21,631], + 0x1D72D: [695,17,832,38,795], + 0x1D72E: [689,3,659,-36,656], + 0x1D72F: [681,3,666,61,704], + 0x1D730: [705,0,698,41,742], + 0x1D731: [689,3,957,44,921], + 0x1D732: [695,3,666,-44,708], + 0x1D733: [695,5,935,62,989], + 0x1D734: [700,3,810,-11,779], + 0x1D735: [693,0,686,83,717], + 0x1D736: [478,21,663,46,635], + 0x1D737: [705,282,582,-21,581], + 0x1D738: [480,291,632,32,614], + 0x1D739: [707,22,556,45,505], + 0x1D73A: [479,21,463,47,436], + 0x1D73B: [704,193,558,32,535], + 0x1D73C: [480,279,560,31,518], + 0x1D73D: [701,21,645,70,605], + 0x1D73E: [481,17,272,30,249], + 0x1D73F: [481,17,539,29,546], + 0x1D740: [698,7,587,2,565], + 0x1D741: [492,302,610,24,581], + 0x1D742: [480,16,561,29,542], + 0x1D743: [705,193,524,37,550], + 0x1D744: [471,17,555,32,523], + 0x1D745: [476,16,633,26,624], + 0x1D746: [476,279,566,-17,536], + 0x1D747: [477,193,515,49,484], + 0x1D748: [492,25,570,46,600], + 0x1D749: [480,17,518,46,529], + 0x1D74A: [480,18,576,38,529], + 0x1D74B: [478,277,836,50,791], + 0x1D74C: [480,183,583,-47,600], + 0x1D74D: [688,279,762,33,735], + 0x1D74E: [480,14,817,47,767], + 0x1D74F: [750,13,493,26,466], + 0x1D750: [470,17,528,28,508], + 0x1D751: [700,20,590,10,566], + 0x1D752: [439,24,666,-7,787], + 0x1D753: [688,279,742,48,695], + 0x1D754: [476,266,566,81,565], + 0x1D755: [566,14,817,45,768], + 0x1D7CE: [689,18,499,33,468], + 0x1D7CF: [699,3,499,35,455], + 0x1D7D0: [689,3,499,25,472], + 0x1D7D1: [689,18,499,22,458], + 0x1D7D2: [702,3,499,12,473], + 0x1D7D3: [685,18,499,42,472], + 0x1D7D4: [689,18,499,37,469], + 0x1D7D5: [685,3,499,46,493], + 0x1D7D6: [689,18,499,34,467], + 0x1D7D7: [689,18,499,31,463] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Normal"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Normal/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Operators/Regular/Main.js new file mode 100644 index 0000000..cd806f3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Operators/Regular/Main.js @@ -0,0 +1,350 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'AsanaMathJax_Operators', + testString: '\u2206\u220A\u220C\u220E\u220F\u2210\u2211\u221B\u221C\u221F\u222C\u222D\u222E\u222F\u2230', + 0x20: [0,0,249,0,0], + 0x2206: [697,4,688,27,662], + 0x220A: [482,3,511,66,446], + 0x220C: [648,107,563,55,509], + 0x220E: [406,0,508,52,457], + 0x220F: [626,311,994,54,941], + 0x2210: [626,311,994,54,941], + 0x2211: [620,310,850,62,788], + 0x221B: [1048,59,739,63,772], + 0x221C: [1045,59,739,63,771], + 0x221F: [368,0,498,65,434], + 0x222C: [885,442,1132,54,1058], + 0x222D: [885,442,1496,54,1422], + 0x222E: [885,442,768,54,694], + 0x222F: [885,442,1132,54,1058], + 0x2230: [885,442,1496,54,1422], + 0x2231: [885,442,787,54,713], + 0x2232: [885,442,787,54,713], + 0x2233: [885,442,787,54,713], + 0x2236: [518,-23,249,66,184], + 0x2237: [518,-23,570,76,495], + 0x2238: [538,-286,668,65,604], + 0x2239: [518,-23,890,65,806], + 0x223A: [518,-23,668,65,604], + 0x223B: [518,-23,668,58,610], + 0x223E: [422,-123,729,32,706], + 0x223F: [587,3,784,34,750], + 0x2244: [596,55,668,65,604], + 0x2247: [596,55,668,65,604], + 0x2249: [596,55,668,58,611], + 0x224B: [614,-14,668,53,614], + 0x224C: [587,-134,668,58,610], + 0x2254: [518,-23,890,85,826], + 0x2255: [518,-23,890,65,806], + 0x2258: [587,-134,668,62,604], + 0x2259: [646,-134,687,65,623], + 0x225A: [646,-134,687,65,623], + 0x225B: [652,-134,687,65,623], + 0x225D: [658,-134,687,65,623], + 0x225E: [632,-134,687,65,623], + 0x225F: [751,-134,687,65,623], + 0x2262: [596,55,668,65,604], + 0x2263: [566,27,668,65,604], + 0x226D: [596,55,668,54,616], + 0x2274: [712,171,668,65,604], + 0x2275: [712,171,668,65,604], + 0x2278: [712,171,668,65,604], + 0x2279: [712,171,668,65,604], + 0x2284: [648,107,668,55,615], + 0x2285: [648,107,668,55,615], + 0x228C: [603,0,687,65,623], + 0x228D: [603,0,687,65,623], + 0x229C: [587,46,668,18,652], + 0x22A6: [541,0,490,65,425], + 0x22A7: [620,-1,709,85,624], + 0x22AB: [541,0,748,64,684], + 0x22B0: [652,118,748,75,673], + 0x22B1: [652,118,748,75,674], + 0x22B6: [446,-94,1363,65,1299], + 0x22B7: [446,-94,1363,65,1299], + 0x22B9: [505,-5,687,96,598], + 0x22BD: [620,78,687,65,623], + 0x22BE: [410,0,535,63,473], + 0x22BF: [368,0,498,65,434], + 0x22C0: [626,313,897,86,813], + 0x22C1: [626,313,897,86,813], + 0x22C2: [626,313,897,86,812], + 0x22C3: [626,313,897,86,812], + 0x22C7: [547,5,668,59,611], + 0x22D5: [714,177,641,65,604], + 0x22DC: [615,74,668,65,604], + 0x22DD: [615,74,668,65,604], + 0x22E2: [712,171,668,55,615], + 0x22E3: [712,171,668,55,615], + 0x22E4: [602,114,668,55,615], + 0x22E5: [602,114,668,55,615], + 0x22F0: [570,14,774,95,680], + 0x22F2: [580,-22,876,53,824], + 0x22F3: [533,-8,563,55,509], + 0x22F4: [482,3,511,66,478], + 0x22F5: [618,79,563,55,509], + 0x22F6: [597,55,563,55,509], + 0x22F7: [583,42,511,66,446], + 0x22F8: [597,55,563,55,509], + 0x22F9: [533,-8,563,55,509], + 0x22FA: [580,-22,876,53,824], + 0x22FB: [533,-8,563,55,509], + 0x22FC: [482,3,511,66,478], + 0x22FD: [597,55,563,55,509], + 0x22FE: [583,42,511,66,446], + 0x22FF: [697,0,617,46,572], + 0x2A00: [830,316,1320,86,1235], + 0x2A01: [833,316,1320,86,1235], + 0x2A02: [833,316,1320,86,1235], + 0x2A03: [741,198,897,86,812], + 0x2A04: [741,198,897,86,812], + 0x2A05: [734,192,897,86,812], + 0x2A06: [734,192,897,86,812], + 0x2A07: [626,313,1035,86,950], + 0x2A08: [626,313,1035,86,950], + 0x2A09: [734,192,1098,86,1013], + 0x2A0A: [882,434,1158,60,1069], + 0x2A0B: [885,442,850,27,764], + 0x2A0C: [885,442,1860,54,1786], + 0x2A0D: [885,442,768,54,694], + 0x2A0E: [885,442,768,54,694], + 0x2A0F: [885,442,768,54,694], + 0x2A10: [885,442,768,54,694], + 0x2A11: [885,442,810,54,736], + 0x2A12: [885,442,768,54,694], + 0x2A13: [885,442,768,54,694], + 0x2A14: [885,442,768,54,694], + 0x2A15: [885,442,768,54,694], + 0x2A16: [885,442,768,54,694], + 0x2A17: [885,442,1005,52,936], + 0x2A18: [885,442,768,54,694], + 0x2A19: [885,442,768,54,694], + 0x2A1A: [885,442,768,54,694], + 0x2A1B: [994,442,775,54,701], + 0x2A1C: [994,442,775,54,701], + 0x2A1D: [515,-23,758,65,694], + 0x2A1E: [535,-6,668,65,604], + 0x2A1F: [703,355,552,16,521], + 0x2A20: [556,10,826,48,770], + 0x2A21: [714,171,524,233,478], + 0x2A22: [672,129,668,65,604], + 0x2A23: [609,68,668,65,604], + 0x2A24: [631,88,668,65,604], + 0x2A25: [538,180,668,65,604], + 0x2A26: [538,178,668,65,604], + 0x2A27: [538,95,668,65,604], + 0x2A28: [538,0,668,65,604], + 0x2A29: [570,-233,605,51,555], + 0x2A2A: [289,-74,605,51,555], + 0x2A2B: [492,-30,605,51,555], + 0x2A2C: [492,-30,605,51,555], + 0x2A2D: [587,52,602,26,571], + 0x2A2E: [587,52,602,26,571], + 0x2A2F: [489,-53,554,59,496], + 0x2A30: [688,5,668,59,611], + 0x2A31: [545,142,668,59,611], + 0x2A32: [547,5,760,58,702], + 0x2A33: [554,11,671,53,619], + 0x2A34: [587,52,603,54,550], + 0x2A35: [587,52,603,54,550], + 0x2A36: [634,192,668,18,652], + 0x2A37: [587,46,668,18,652], + 0x2A38: [587,46,668,18,652], + 0x2A39: [559,18,666,44,623], + 0x2A3A: [559,18,666,44,623], + 0x2A3B: [559,18,666,44,623], + 0x2A3C: [360,-88,672,65,608], + 0x2A3D: [360,-88,672,65,608], + 0x2A3E: [703,166,396,54,344], + 0x2A40: [573,30,687,65,623], + 0x2A41: [573,30,687,65,623], + 0x2A42: [634,91,687,65,623], + 0x2A43: [634,91,687,65,623], + 0x2A44: [578,25,687,65,623], + 0x2A45: [578,25,687,65,623], + 0x2A46: [622,80,407,64,344], + 0x2A47: [622,80,407,64,344], + 0x2A48: [622,80,407,64,344], + 0x2A49: [622,80,407,64,344], + 0x2A4A: [422,-120,659,64,596], + 0x2A4B: [422,-120,659,64,596], + 0x2A4C: [601,58,779,64,716], + 0x2A4D: [601,58,779,64,716], + 0x2A4E: [559,17,687,65,623], + 0x2A4F: [559,17,687,65,623], + 0x2A50: [601,58,779,64,716], + 0x2A51: [570,29,537,57,481], + 0x2A52: [570,29,537,57,481], + 0x2A53: [563,22,687,65,623], + 0x2A54: [563,22,687,65,623], + 0x2A55: [563,22,836,65,772], + 0x2A56: [563,22,836,65,772], + 0x2A57: [598,42,670,66,605], + 0x2A58: [598,41,669,66,604], + 0x2A59: [621,79,687,65,623], + 0x2A5A: [563,22,687,65,623], + 0x2A5B: [563,22,687,65,623], + 0x2A5C: [563,22,687,65,623], + 0x2A5D: [563,22,687,65,623], + 0x2A5F: [720,27,687,65,623], + 0x2A60: [640,267,687,65,623], + 0x2A61: [497,-45,687,65,623], + 0x2A62: [636,262,687,65,623], + 0x2A63: [645,262,687,65,623], + 0x2A64: [535,-6,668,65,604], + 0x2A65: [535,-6,668,65,604], + 0x2A66: [445,19,668,65,604], + 0x2A67: [571,29,668,65,604], + 0x2A68: [540,0,668,65,604], + 0x2A69: [540,0,668,65,604], + 0x2A6A: [429,-113,668,58,611], + 0x2A6B: [500,-41,668,58,611], + 0x2A6C: [514,-14,668,56,614], + 0x2A6D: [581,39,668,65,604], + 0x2A6E: [530,-12,668,65,604], + 0x2A6F: [649,-51,668,58,611], + 0x2A70: [596,55,668,65,604], + 0x2A71: [667,126,668,66,604], + 0x2A72: [667,126,668,66,604], + 0x2A73: [507,-35,668,65,604], + 0x2A74: [518,-23,1092,85,1028], + 0x2A75: [406,-134,1347,85,1263], + 0x2A76: [406,-134,1986,85,1902], + 0x2A77: [599,58,668,65,604], + 0x2A78: [567,25,668,65,604], + 0x2A79: [535,-5,668,65,604], + 0x2A7A: [535,-5,668,65,604], + 0x2A7B: [623,82,668,65,604], + 0x2A7C: [623,82,668,65,604], + 0x2A7F: [615,74,668,65,604], + 0x2A80: [615,74,668,65,604], + 0x2A81: [615,74,668,65,604], + 0x2A82: [615,74,668,65,604], + 0x2A83: [700,159,668,65,604], + 0x2A84: [700,159,668,65,604], + 0x2A8D: [672,186,668,65,604], + 0x2A8E: [672,186,668,65,604], + 0x2A8F: [821,279,668,65,604], + 0x2A90: [821,279,668,65,604], + 0x2A91: [755,159,668,65,604], + 0x2A92: [755,159,668,65,604], + 0x2A93: [944,279,668,65,604], + 0x2A94: [944,279,668,65,604], + 0x2A97: [615,74,668,65,604], + 0x2A98: [615,74,668,65,604], + 0x2A99: [672,131,668,65,604], + 0x2A9A: [672,131,668,65,604], + 0x2A9B: [701,147,668,66,605], + 0x2A9C: [701,147,668,66,605], + 0x2A9D: [605,122,668,65,604], + 0x2A9E: [605,122,668,65,604], + 0x2A9F: [801,193,668,65,604], + 0x2AA0: [801,193,668,65,604], + 0x2AA1: [535,-5,668,65,604], + 0x2AA2: [535,-5,668,65,604], + 0x2AA3: [606,61,965,55,912], + 0x2AA4: [535,-5,768,56,713], + 0x2AA5: [535,-5,1251,55,1198], + 0x2AA6: [535,-7,725,64,661], + 0x2AA7: [535,-7,725,64,662], + 0x2AA8: [613,74,725,64,661], + 0x2AA9: [613,74,725,64,662], + 0x2AAA: [553,5,713,65,649], + 0x2AAB: [553,5,713,65,649], + 0x2AAC: [635,61,713,65,649], + 0x2AAD: [635,61,713,65,649], + 0x2AAE: [550,8,668,65,604], + 0x2AB1: [623,134,668,65,604], + 0x2AB2: [623,134,668,65,604], + 0x2AB3: [680,139,668,65,604], + 0x2AB4: [680,139,668,65,604], + 0x2ABB: [553,14,1057,65,993], + 0x2ABC: [553,14,1057,65,993], + 0x2ABD: [533,-8,668,55,615], + 0x2ABE: [533,-8,668,55,615], + 0x2ABF: [588,46,465,65,401], + 0x2AC0: [588,46,465,65,401], + 0x2AC1: [623,81,465,65,401], + 0x2AC2: [623,81,465,65,401], + 0x2AC3: [645,103,607,65,543], + 0x2AC4: [645,103,607,65,543], + 0x2AC7: [656,115,668,55,615], + 0x2AC8: [656,115,668,55,615], + 0x2AC9: [739,227,668,55,615], + 0x2ACA: [739,227,668,55,615], + 0x2ACD: [543,-2,1145,64,1082], + 0x2ACE: [543,-2,1145,64,1082], + 0x2ACF: [533,-8,668,55,615], + 0x2AD0: [533,-8,668,55,615], + 0x2AD1: [603,61,668,55,615], + 0x2AD2: [603,61,668,55,615], + 0x2AD3: [611,69,407,53,355], + 0x2AD4: [611,69,407,53,355], + 0x2AD5: [611,69,407,53,355], + 0x2AD6: [611,69,407,53,355], + 0x2AD7: [410,-130,764,53,711], + 0x2AD8: [410,-130,764,53,711], + 0x2AD9: [498,-44,613,45,569], + 0x2ADA: [656,115,687,65,623], + 0x2ADB: [771,150,687,65,623], + 0x2ADC: [648,107,687,65,623], + 0x2ADD: [571,31,687,65,623], + 0x2ADE: [541,0,400,65,337], + 0x2ADF: [408,-136,670,65,607], + 0x2AE0: [408,-136,670,65,607], + 0x2AE1: [579,0,748,65,684], + 0x2AE2: [580,39,748,85,664], + 0x2AE3: [580,39,859,85,795], + 0x2AE4: [580,39,728,85,664], + 0x2AE5: [580,39,859,85,795], + 0x2AE6: [580,39,730,87,666], + 0x2AE7: [473,-70,670,65,607], + 0x2AE8: [473,-70,670,65,607], + 0x2AE9: [579,37,670,65,607], + 0x2AEA: [559,20,748,65,684], + 0x2AEB: [559,20,748,65,684], + 0x2AEC: [407,-135,672,65,608], + 0x2AED: [407,-135,672,65,608], + 0x2AEE: [714,171,437,0,438], + 0x2AEF: [715,173,521,85,437], + 0x2AF0: [714,174,521,85,437], + 0x2AF1: [714,174,560,65,496], + 0x2AF2: [714,171,644,70,575], + 0x2AF3: [714,171,668,58,611], + 0x2AF4: [714,171,560,61,500], + 0x2AF5: [714,171,691,65,627], + 0x2AF6: [709,164,286,85,202], + 0x2AF7: [535,-7,668,65,604], + 0x2AF8: [535,-7,668,65,604], + 0x2AF9: [695,153,668,66,605], + 0x2AFA: [695,153,668,66,605], + 0x2AFB: [714,169,885,65,821], + 0x2AFC: [763,222,620,71,550], + 0x2AFD: [714,169,673,65,609], + 0x2AFE: [541,0,383,64,320], + 0x2AFF: [654,112,383,64,320] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Operators"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Operators/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/SansSerif/Regular/Main.js new file mode 100644 index 0000000..b7d3f1f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/SansSerif/Regular/Main.js @@ -0,0 +1,376 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'AsanaMathJax_SansSerif', + testString: '\uD835\uDDA0\uD835\uDDA1\uD835\uDDA2\uD835\uDDA3\uD835\uDDA4\uD835\uDDA5\uD835\uDDA6\uD835\uDDA7\uD835\uDDA8\uD835\uDDA9\uD835\uDDAA\uD835\uDDAB\uD835\uDDAC\uD835\uDDAD\uD835\uDDAE', + 0x20: [0,0,249,0,0], + 0x1D5A0: [694,0,665,28,638], + 0x1D5A1: [694,0,665,97,610], + 0x1D5A2: [716,22,637,67,588], + 0x1D5A3: [694,0,721,96,665], + 0x1D5A4: [691,0,596,94,554], + 0x1D5A5: [691,0,568,94,526], + 0x1D5A6: [716,22,665,67,599], + 0x1D5A7: [694,0,707,94,613], + 0x1D5A8: [694,0,276,94,183], + 0x1D5A9: [694,22,471,42,388], + 0x1D5AA: [694,0,693,96,651], + 0x1D5AB: [694,0,540,94,499], + 0x1D5AC: [694,0,874,100,774], + 0x1D5AD: [694,0,707,96,611], + 0x1D5AE: [716,22,735,56,679], + 0x1D5AF: [694,0,637,96,582], + 0x1D5B0: [716,125,735,56,679], + 0x1D5B1: [694,0,644,96,617], + 0x1D5B2: [716,22,554,44,499], + 0x1D5B3: [688,0,679,36,644], + 0x1D5B4: [694,22,686,94,593], + 0x1D5B5: [694,0,665,14,652], + 0x1D5B6: [694,0,943,14,929], + 0x1D5B7: [694,0,665,14,652], + 0x1D5B8: [694,0,665,3,663], + 0x1D5B9: [694,0,610,56,560], + 0x1D5BA: [461,11,479,44,399], + 0x1D5BB: [694,11,515,82,480], + 0x1D5BC: [461,11,443,36,415], + 0x1D5BD: [694,11,515,36,434], + 0x1D5BE: [461,11,443,35,414], + 0x1D5BF: [705,0,304,27,347], + 0x1D5C0: [455,206,499,28,485], + 0x1D5C1: [694,0,515,81,435], + 0x1D5C2: [680,0,237,74,163], + 0x1D5C3: [680,205,265,-61,184], + 0x1D5C4: [694,0,487,84,471], + 0x1D5C5: [694,0,237,81,156], + 0x1D5C6: [455,0,793,81,713], + 0x1D5C7: [455,0,515,81,435], + 0x1D5C8: [461,11,499,30,469], + 0x1D5C9: [455,194,515,82,480], + 0x1D5CA: [455,194,515,36,434], + 0x1D5CB: [455,0,340,82,327], + 0x1D5CC: [461,11,382,28,360], + 0x1D5CD: [571,11,360,19,332], + 0x1D5CE: [444,11,515,81,435], + 0x1D5CF: [444,0,460,14,446], + 0x1D5D0: [444,0,682,14,668], + 0x1D5D1: [444,0,460,0,460], + 0x1D5D2: [444,205,460,14,446], + 0x1D5D3: [444,0,433,28,402], + 0x1D5D4: [694,0,732,42,690], + 0x1D5D5: [694,0,732,91,671], + 0x1D5D6: [716,22,701,61,647], + 0x1D5D7: [694,0,793,91,732], + 0x1D5D8: [691,0,640,91,595], + 0x1D5D9: [691,0,610,91,564], + 0x1D5DA: [716,22,732,61,659], + 0x1D5DB: [694,0,793,91,702], + 0x1D5DC: [694,0,329,92,239], + 0x1D5DD: [694,22,518,46,427], + 0x1D5DE: [694,0,762,91,701], + 0x1D5DF: [694,0,579,91,534], + 0x1D5E0: [694,0,976,91,886], + 0x1D5E1: [694,0,793,91,702], + 0x1D5E2: [716,22,793,61,732], + 0x1D5E3: [694,0,701,91,641], + 0x1D5E4: [716,106,793,61,732], + 0x1D5E5: [694,0,701,91,653], + 0x1D5E6: [716,22,610,48,549], + 0x1D5E7: [688,0,732,40,692], + 0x1D5E8: [694,22,762,91,672], + 0x1D5E9: [694,0,732,27,705], + 0x1D5EA: [694,0,1037,24,1014], + 0x1D5EB: [694,0,732,37,694], + 0x1D5EC: [694,0,732,24,708], + 0x1D5ED: [694,0,671,61,616], + 0x1D5EE: [475,11,524,31,464], + 0x1D5EF: [694,11,560,61,523], + 0x1D5F0: [475,11,487,37,457], + 0x1D5F1: [694,11,560,37,499], + 0x1D5F2: [475,11,510,31,479], + 0x1D5F3: [705,0,335,30,381], + 0x1D5F4: [469,206,549,25,534], + 0x1D5F5: [694,0,560,60,500], + 0x1D5F6: [695,0,254,54,201], + 0x1D5F7: [695,205,285,-71,224], + 0x1D5F8: [694,0,529,69,497], + 0x1D5F9: [694,0,254,61,194], + 0x1D5FA: [469,0,865,60,806], + 0x1D5FB: [469,0,560,60,500], + 0x1D5FC: [475,11,549,31,518], + 0x1D5FD: [469,194,560,61,523], + 0x1D5FE: [469,194,560,37,499], + 0x1D5FF: [469,0,371,61,356], + 0x1D600: [475,11,420,31,396], + 0x1D601: [589,11,403,20,373], + 0x1D602: [458,11,560,60,500], + 0x1D603: [458,0,499,26,473], + 0x1D604: [458,0,743,24,719], + 0x1D605: [458,0,499,24,474], + 0x1D606: [458,205,499,29,473], + 0x1D607: [458,0,475,31,441], + 0x1D608: [694,0,665,28,638], + 0x1D609: [694,0,665,97,696], + 0x1D60A: [716,22,637,131,722], + 0x1D60B: [694,0,721,96,747], + 0x1D60C: [691,0,596,94,687], + 0x1D60D: [691,0,568,94,673], + 0x1D60E: [716,22,665,131,733], + 0x1D60F: [694,0,707,94,761], + 0x1D610: [694,0,276,94,331], + 0x1D611: [694,22,471,46,536], + 0x1D612: [694,0,693,96,785], + 0x1D613: [694,0,540,94,513], + 0x1D614: [694,0,874,100,922], + 0x1D615: [694,0,707,96,759], + 0x1D616: [716,22,735,119,762], + 0x1D617: [694,0,637,96,690], + 0x1D618: [716,125,735,119,762], + 0x1D619: [694,0,644,96,700], + 0x1D61A: [716,22,554,54,607], + 0x1D61B: [688,0,679,155,790], + 0x1D61C: [694,22,686,137,741], + 0x1D61D: [694,0,665,161,800], + 0x1D61E: [694,0,943,161,1077], + 0x1D61F: [694,0,665,14,758], + 0x1D620: [694,0,665,150,811], + 0x1D621: [694,0,610,56,701], + 0x1D622: [461,11,479,65,465], + 0x1D623: [694,11,515,82,535], + 0x1D624: [461,11,443,77,499], + 0x1D625: [694,11,515,76,582], + 0x1D626: [461,11,443,77,471], + 0x1D627: [705,0,304,101,494], + 0x1D628: [455,206,499,11,571], + 0x1D629: [694,0,515,81,505], + 0x1D62A: [680,0,237,81,307], + 0x1D62B: [680,205,265,-97,329], + 0x1D62C: [694,0,487,84,543], + 0x1D62D: [694,0,237,81,304], + 0x1D62E: [455,0,793,81,783], + 0x1D62F: [455,0,515,81,505], + 0x1D630: [461,11,499,71,522], + 0x1D631: [455,194,515,41,535], + 0x1D632: [455,194,515,76,531], + 0x1D633: [455,0,340,82,424], + 0x1D634: [461,11,382,36,434], + 0x1D635: [571,11,360,101,410], + 0x1D636: [444,11,515,99,529], + 0x1D637: [444,0,460,108,540], + 0x1D638: [444,0,682,108,762], + 0x1D639: [444,0,460,0,538], + 0x1D63A: [444,205,460,1,540], + 0x1D63B: [444,0,433,28,494], + 0x1D63C: [695,0,696,28,670], + 0x1D63D: [695,0,749,68,781], + 0x1D63E: [733,37,700,131,785], + 0x1D63F: [695,0,781,66,807], + 0x1D640: [690,0,596,63,687], + 0x1D641: [690,0,568,63,673], + 0x1D642: [733,37,743,131,811], + 0x1D643: [695,0,737,63,791], + 0x1D644: [695,0,442,93,497], + 0x1D645: [695,37,500,33,565], + 0x1D646: [695,0,707,66,799], + 0x1D647: [695,0,540,62,513], + 0x1D648: [695,0,874,100,922], + 0x1D649: [695,0,733,69,785], + 0x1D64A: [733,37,769,119,796], + 0x1D64B: [695,0,694,66,747], + 0x1D64C: [733,132,770,119,797], + 0x1D64D: [695,0,701,66,757], + 0x1D64E: [733,37,579,36,632], + 0x1D64F: [686,0,679,168,790], + 0x1D650: [695,37,774,137,829], + 0x1D651: [695,0,685,129,820], + 0x1D652: [695,0,963,131,1097], + 0x1D653: [695,0,683,-19,776], + 0x1D654: [695,0,682,120,828], + 0x1D655: [695,0,613,54,704], + 0x1D656: [480,30,479,47,484], + 0x1D657: [712,30,515,60,553], + 0x1D658: [480,30,443,59,521], + 0x1D659: [712,30,515,58,605], + 0x1D65A: [480,30,443,59,490], + 0x1D65B: [724,19,304,78,515], + 0x1D65C: [474,224,499,-8,590], + 0x1D65D: [712,19,515,59,523], + 0x1D65E: [698,19,237,59,330], + 0x1D65F: [698,223,265,-120,352], + 0x1D660: [712,19,487,62,594], + 0x1D661: [712,19,237,59,327], + 0x1D662: [474,19,793,59,801], + 0x1D663: [474,19,515,59,523], + 0x1D664: [480,30,499,53,540], + 0x1D665: [474,213,515,18,553], + 0x1D666: [474,213,515,58,554], + 0x1D667: [474,19,340,60,447], + 0x1D668: [480,30,382,18,458], + 0x1D669: [590,30,360,78,433], + 0x1D66A: [463,30,515,80,552], + 0x1D66B: [463,19,460,86,573], + 0x1D66C: [463,19,682,87,792], + 0x1D66D: [463,19,460,-47,585], + 0x1D66E: [463,223,460,-20,573], + 0x1D66F: [463,19,433,7,516], + 0x1D756: [694,0,732,42,690], + 0x1D757: [694,0,732,91,671], + 0x1D758: [690,0,579,92,537], + 0x1D759: [694,-8,915,60,855], + 0x1D75A: [691,0,640,91,595], + 0x1D75B: [694,0,671,61,616], + 0x1D75C: [694,0,793,91,702], + 0x1D75D: [716,22,854,62,792], + 0x1D75E: [694,0,329,92,239], + 0x1D75F: [694,0,762,91,701], + 0x1D760: [694,0,671,41,630], + 0x1D761: [694,0,976,91,886], + 0x1D762: [694,0,793,91,702], + 0x1D763: [687,0,732,45,687], + 0x1D764: [716,22,793,61,732], + 0x1D765: [690,2,793,92,700], + 0x1D766: [694,0,701,91,641], + 0x1D767: [716,22,854,62,792], + 0x1D768: [693,-1,793,61,732], + 0x1D769: [688,0,732,40,692], + 0x1D76A: [715,0,854,61,792], + 0x1D76B: [695,0,793,62,731], + 0x1D76C: [694,0,732,37,694], + 0x1D76D: [695,0,854,62,793], + 0x1D76E: [716,0,793,48,744], + 0x1D76F: [694,-8,915,60,855], + 0x1D770: [469,13,742,47,720], + 0x1D771: [733,90,549,46,503], + 0x1D772: [469,201,610,32,577], + 0x1D773: [719,10,518,46,475], + 0x1D774: [470,11,472,33,456], + 0x1D775: [734,265,518,46,472], + 0x1D776: [481,200,564,30,514], + 0x1D777: [733,11,549,46,503], + 0x1D778: [471,11,304,34,290], + 0x1D779: [471,12,531,62,547], + 0x1D77A: [734,1,549,19,530], + 0x1D77B: [470,204,610,35,618], + 0x1D77C: [458,0,518,-12,500], + 0x1D77D: [760,211,518,46,472], + 0x1D77E: [468,10,579,46,532], + 0x1D77F: [458,11,641,-24,642], + 0x1D780: [469,192,518,46,471], + 0x1D781: [458,172,488,46,458], + 0x1D782: [458,10,625,46,594], + 0x1D783: [458,11,503,-44,476], + 0x1D784: [458,10,549,34,503], + 0x1D785: [469,193,641,47,594], + 0x1D786: [470,208,610,33,577], + 0x1D787: [722,193,641,46,595], + 0x1D788: [458,11,732,39,693], + 0x1D789: [636,6,453,24,430], + 0x1D78A: [519,-2,534,59,483], + 0x1D78B: [712,22,627,62,609], + 0x1D78C: [518,8,574,19,538], + 0x1D78D: [603,192,565,33,536], + 0x1D78E: [444,199,463,27,431], + 0x1D78F: [514,11,834,33,800], + 0x1D790: [694,0,732,-14,634], + 0x1D791: [694,0,732,36,672], + 0x1D792: [690,0,579,36,595], + 0x1D793: [694,-8,915,2,798], + 0x1D794: [691,0,640,36,634], + 0x1D795: [694,0,671,6,664], + 0x1D796: [694,0,793,36,756], + 0x1D797: [716,22,854,51,801], + 0x1D798: [694,0,329,37,293], + 0x1D799: [694,0,762,36,753], + 0x1D79A: [694,0,671,-16,573], + 0x1D79B: [694,0,976,36,940], + 0x1D79C: [694,0,793,36,756], + 0x1D79D: [687,0,732,-10,734], + 0x1D79E: [716,22,793,49,742], + 0x1D79F: [690,2,793,35,757], + 0x1D7A0: [694,0,701,36,668], + 0x1D7A1: [716,22,854,51,801], + 0x1D7A2: [693,-1,793,5,786], + 0x1D7A3: [688,0,732,89,746], + 0x1D7A4: [715,0,854,96,829], + 0x1D7A5: [695,0,793,57,735], + 0x1D7A6: [694,0,732,-20,706], + 0x1D7A7: [695,0,854,102,834], + 0x1D7A8: [716,0,793,-7,754], + 0x1D7A9: [697,-8,915,117,912], + 0x1D7AA: [469,13,695,40,707], + 0x1D7AB: [733,90,549,-25,491], + 0x1D7AC: [469,201,610,59,635], + 0x1D7AD: [719,10,518,15,516], + 0x1D7AE: [470,11,472,20,476], + 0x1D7AF: [734,265,518,44,529], + 0x1D7B0: [481,200,564,57,546], + 0x1D7B1: [733,11,549,34,513], + 0x1D7B2: [471,11,304,11,274], + 0x1D7B3: [470,12,531,21,521], + 0x1D7B4: [734,0,547,-37,478], + 0x1D7B5: [470,206,610,-20,620], + 0x1D7B6: [458,0,518,29,523], + 0x1D7B7: [768,202,518,38,476], + 0x1D7B8: [468,9,579,42,537], + 0x1D7B9: [458,11,641,13,633], + 0x1D7BA: [469,194,518,-6,491], + 0x1D7BB: [460,165,488,53,502], + 0x1D7BC: [458,10,625,42,634], + 0x1D7BD: [458,11,503,-11,491], + 0x1D7BE: [458,10,549,73,511], + 0x1D7BF: [469,187,641,60,616], + 0x1D7C0: [470,208,610,-11,621], + 0x1D7C1: [722,193,641,43,604], + 0x1D7C2: [458,11,732,31,693], + 0x1D7C3: [636,6,453,0,411], + 0x1D7C4: [519,-2,534,47,513], + 0x1D7C5: [712,22,617,49,597], + 0x1D7C6: [518,24,574,-3,578], + 0x1D7C7: [603,192,565,30,541], + 0x1D7C8: [444,199,463,-11,457], + 0x1D7C9: [514,11,834,61,798], + 0x1D7CA: [682,3,556,28,539], + 0x1D7CB: [499,237,522,20,506], + 0x1D7E2: [689,22,499,42,457], + 0x1D7E3: [689,0,499,89,424], + 0x1D7E4: [689,0,499,42,449], + 0x1D7E5: [689,22,499,42,457], + 0x1D7E6: [667,0,499,28,471], + 0x1D7E7: [667,22,499,39,449], + 0x1D7E8: [689,22,499,42,457], + 0x1D7E9: [667,11,499,42,457], + 0x1D7EA: [689,22,499,42,457], + 0x1D7EB: [689,22,499,42,457], + 0x1D7EC: [689,21,549,43,506], + 0x1D7ED: [689,0,549,76,473], + 0x1D7EE: [689,0,549,46,494], + 0x1D7EF: [689,21,549,46,503], + 0x1D7F0: [668,0,549,31,518], + 0x1D7F1: [668,21,549,37,494], + 0x1D7F2: [689,21,549,46,503], + 0x1D7F3: [669,11,549,46,503], + 0x1D7F4: [689,21,549,46,503], + 0x1D7F5: [689,21,549,46,503] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_SansSerif"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Script/Regular/Main.js new file mode 100644 index 0000000..9a7d3e1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Script/Regular/Main.js @@ -0,0 +1,134 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Script'] = { + directory: 'Script/Regular', + family: 'AsanaMathJax_Script', + testString: '\u210A\u210B\u2110\u2112\u211B\u212C\u212F\u2130\u2131\u2133\u2134\uD835\uDC9C\uD835\uDC9E\uD835\uDC9F\uD835\uDCA2', + 0x20: [0,0,249,0,0], + 0x210A: [410,344,896,56,842], + 0x210B: [732,12,961,46,1161], + 0x2110: [729,15,937,46,1123], + 0x2112: [758,10,1025,46,1163], + 0x211B: [723,16,946,49,1090], + 0x212C: [730,6,972,46,1116], + 0x212F: [411,19,516,35,481], + 0x2130: [746,15,680,46,824], + 0x2131: [724,19,850,32,1110], + 0x2133: [726,5,1046,45,1186], + 0x2134: [411,19,578,36,543], + 0x1D49C: [713,12,885,46,1055], + 0x1D49E: [744,15,751,45,874], + 0x1D49F: [733,8,923,44,1050], + 0x1D4A2: [740,15,703,46,871], + 0x1D4A5: [724,199,944,46,1095], + 0x1D4A6: [721,15,1016,45,1180], + 0x1D4A9: [723,13,988,46,1173], + 0x1D4AA: [716,15,711,46,840], + 0x1D4AB: [717,19,949,42,1038], + 0x1D4AC: [716,33,708,46,838], + 0x1D4AE: [741,15,939,46,1168], + 0x1D4AF: [745,13,828,46,1136], + 0x1D4B0: [727,6,836,46,907], + 0x1D4B1: [727,10,784,46,1071], + 0x1D4B2: [722,12,862,46,1187], + 0x1D4B3: [721,12,908,46,1095], + 0x1D4B4: [723,249,908,46,1085], + 0x1D4B5: [719,5,978,46,1078], + 0x1D4B6: [480,12,774,42,735], + 0x1D4B7: [854,14,747,36,827], + 0x1D4B8: [480,20,608,42,569], + 0x1D4B9: [785,10,733,36,900], + 0x1D4BB: [853,341,957,36,1123], + 0x1D4BD: [847,13,681,36,845], + 0x1D4BE: [708,22,438,42,508], + 0x1D4BF: [708,350,872,42,986], + 0x1D4C0: [854,17,831,36,877], + 0x1D4C1: [860,17,757,36,811], + 0x1D4C2: [477,16,1147,42,1106], + 0x1D4C3: [477,15,843,42,804], + 0x1D4C5: [477,401,1143,42,1104], + 0x1D4C6: [480,401,817,42,777], + 0x1D4C7: [468,0,747,42,708], + 0x1D4C8: [603,15,542,42,503], + 0x1D4C9: [714,20,656,42,615], + 0x1D4CA: [459,20,745,42,705], + 0x1D4CB: [469,22,652,42,612], + 0x1D4CC: [469,22,959,42,920], + 0x1D4CD: [479,20,817,42,777], + 0x1D4CE: [459,403,991,42,952], + 0x1D4CF: [498,17,781,42,741], + 0x1D4D0: [713,12,881,46,1051], + 0x1D4D1: [732,6,994,55,1119], + 0x1D4D2: [744,15,754,46,874], + 0x1D4D3: [735,8,910,46,1041], + 0x1D4D4: [746,15,693,46,824], + 0x1D4D5: [726,19,862,45,1120], + 0x1D4D6: [740,15,721,46,869], + 0x1D4D7: [733,12,950,45,1150], + 0x1D4D8: [730,15,929,46,1116], + 0x1D4D9: [726,194,898,46,1085], + 0x1D4DA: [722,15,982,46,1169], + 0x1D4DB: [758,9,1019,46,1152], + 0x1D4DC: [727,5,1055,45,1175], + 0x1D4DD: [723,13,975,46,1162], + 0x1D4DE: [717,15,709,46,838], + 0x1D4DF: [717,15,949,46,1042], + 0x1D4E0: [717,32,709,46,838], + 0x1D4E1: [724,15,951,46,1083], + 0x1D4E2: [741,15,926,46,1157], + 0x1D4E3: [747,13,814,46,1126], + 0x1D4E4: [728,6,816,46,904], + 0x1D4E5: [728,12,777,46,1064], + 0x1D4E6: [723,11,887,42,1173], + 0x1D4E7: [722,12,898,46,1085], + 0x1D4E8: [735,242,898,46,1075], + 0x1D4E9: [721,5,969,46,1069], + 0x1D4EA: [480,13,782,55,735], + 0x1D4EB: [846,15,775,51,839], + 0x1D4EC: [480,20,633,55,578], + 0x1D4ED: [779,11,951,51,906], + 0x1D4EE: [480,20,633,59,578], + 0x1D4EF: [844,332,903,47,1117], + 0x1D4F0: [479,379,1003,59,952], + 0x1D4F1: [839,13,891,47,851], + 0x1D4F2: [693,20,403,59,567], + 0x1D4F3: [693,329,807,59,969], + 0x1D4F4: [846,16,823,49,883], + 0x1D4F5: [800,17,718,59,782], + 0x1D4F6: [474,15,1137,55,1084], + 0x1D4F7: [473,11,848,55,799], + 0x1D4F8: [480,20,699,59,636], + 0x1D4F9: [477,378,1129,55,1079], + 0x1D4FA: [480,381,828,56,775], + 0x1D4FB: [469,0,759,55,707], + 0x1D4FC: [596,17,576,63,520], + 0x1D4FD: [704,20,678,65,625], + 0x1D4FE: [462,20,761,59,709], + 0x1D4FF: [470,20,674,57,620], + 0x1D500: [470,20,968,49,904], + 0x1D501: [479,20,835,60,780], + 0x1D502: [463,378,992,59,940], + 0x1D503: [494,18,799,59,742] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Script"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Shapes/Regular/Main.js new file mode 100644 index 0000000..84ca9f3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Shapes/Regular/Main.js @@ -0,0 +1,114 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'AsanaMathJax_Shapes', + testString: '\u2422\u2423\u25B7\u25BA\u25BB\u25C1\u25C4\u25C5\u25CB\u25CE\u25CF\u25E6\u25E7\u25E8\u25EB', + 0x20: [0,0,249,0,0], + 0x2422: [726,28,552,-27,508], + 0x2423: [262,0,726,35,691], + 0x25B7: [578,1,667,45,622], + 0x25BA: [515,-26,838,65,774], + 0x25BB: [515,-26,838,65,774], + 0x25C1: [578,1,667,45,622], + 0x25C4: [515,-26,838,65,774], + 0x25C5: [515,-26,838,65,774], + 0x25CB: [705,164,906,18,889], + 0x25CE: [705,164,906,18,889], + 0x25CF: [705,164,906,18,889], + 0x25E6: [466,-75,522,65,458], + 0x25E7: [560,0,688,65,623], + 0x25E8: [560,0,688,65,623], + 0x25EB: [560,0,688,65,623], + 0x25FB: [480,0,598,64,534], + 0x25FC: [480,0,598,64,534], + 0x2605: [778,98,1013,46,968], + 0x2606: [778,98,1013,46,968], + 0x2664: [642,21,570,23,547], + 0x2665: [591,7,636,44,593], + 0x2666: [642,101,559,44,516], + 0x2667: [605,21,607,23,585], + 0x2669: [701,19,319,19,301], + 0x266A: [701,19,525,19,507], + 0x2680: [669,23,982,145,837], + 0x2681: [669,23,982,145,837], + 0x2682: [669,23,982,145,837], + 0x2683: [669,23,982,145,837], + 0x2684: [669,23,982,145,837], + 0x2685: [669,23,982,145,837], + 0x2B00: [583,139,854,65,785], + 0x2B01: [583,139,854,65,785], + 0x2B02: [583,139,854,65,785], + 0x2B03: [583,139,854,65,785], + 0x2B04: [554,12,1128,64,1064], + 0x2B05: [554,12,1013,64,950], + 0x2B06: [713,172,678,56,622], + 0x2B07: [713,172,678,56,622], + 0x2B08: [583,139,852,65,785], + 0x2B09: [583,139,852,65,785], + 0x2B0A: [583,139,852,65,785], + 0x2B0B: [583,139,852,65,785], + 0x2B0C: [554,12,1128,64,1064], + 0x2B0D: [751,209,694,63,629], + 0x2B0E: [425,-48,968,65,904], + 0x2B0F: [425,-48,968,65,904], + 0x2B10: [425,-48,968,65,904], + 0x2B11: [425,-48,968,65,904], + 0x2B1A: [674,6,800,60,740], + 0x2B1B: [703,0,843,70,773], + 0x2B1C: [703,0,843,70,773], + 0x2B30: [504,-33,1089,27,1063], + 0x2B31: [845,305,1013,65,949], + 0x2B32: [524,-17,1013,65,949], + 0x2B33: [486,-55,1513,38,1476], + 0x2B34: [486,-55,1013,65,949], + 0x2B35: [486,-55,1013,65,949], + 0x2B36: [486,-55,1013,65,949], + 0x2B37: [486,-55,1150,27,1124], + 0x2B38: [486,-55,1211,63,1147], + 0x2B39: [489,-58,1150,28,1123], + 0x2B3A: [486,-55,1150,86,1066], + 0x2B3B: [486,-55,1150,28,1122], + 0x2B3C: [486,-55,1150,28,1123], + 0x2B3D: [486,-55,1150,28,1123], + 0x2B3E: [486,-55,1013,65,949], + 0x2B3F: [484,-53,961,-3,902], + 0x2B40: [613,-41,1013,65,949], + 0x2B41: [486,-55,1013,65,949], + 0x2B42: [564,22,1013,65,949], + 0x2B43: [535,-7,1013,65,960], + 0x2B44: [535,-10,1013,65,957], + 0x2B45: [647,107,1013,64,950], + 0x2B46: [647,107,1013,64,950], + 0x2B47: [486,-55,1013,65,949], + 0x2B48: [486,136,1013,65,949], + 0x2B49: [486,-55,1013,65,949], + 0x2B4A: [486,136,1013,65,949], + 0x2B4B: [486,-55,1013,65,949], + 0x2B4C: [486,-55,1013,65,949], + 0x2B50: [577,37,708,32,678], + 0x2B51: [458,2,554,35,519], + 0x2B52: [458,2,554,35,519] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Shapes"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Shapes/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size1/Regular/Main.js new file mode 100644 index 0000000..4cddeb7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size1/Regular/Main.js @@ -0,0 +1,118 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'AsanaMathJax_Size1', + testString: '\u0302\u0303\u0305\u0306\u030C\u0332\u0333\u033F\u2016\u2044\u2045\u2046\u20D6\u20D7\u220F', + 0x20: [0,0,249,0,0], + 0x28: [981,490,399,84,360], + 0x29: [981,490,399,40,316], + 0x5B: [984,492,350,84,321], + 0x5D: [984,492,350,84,321], + 0x7B: [981,490,362,84,328], + 0x7C: [908,367,241,86,156], + 0x7D: [981,490,362,84,328], + 0x302: [783,-627,453,0,453], + 0x303: [763,-654,700,0,701], + 0x305: [587,-542,510,0,511], + 0x306: [664,-506,383,0,384], + 0x30C: [783,-627,736,0,737], + 0x332: [-130,175,510,0,511], + 0x333: [-130,283,510,0,511], + 0x33F: [695,-542,510,0,511], + 0x2016: [908,367,436,86,351], + 0x2044: [742,463,382,-69,383], + 0x2045: [943,401,353,64,303], + 0x2046: [943,401,358,30,269], + 0x20D6: [790,-519,807,0,807], + 0x20D7: [790,-519,807,0,807], + 0x220F: [901,448,1431,78,1355], + 0x2210: [901,448,1431,78,1355], + 0x2211: [893,446,1224,89,1135], + 0x221A: [1280,0,770,63,803], + 0x2229: [1039,520,1292,124,1169], + 0x222B: [1310,654,1000,54,1001], + 0x222C: [1310,654,1659,54,1540], + 0x222D: [1310,654,2198,54,2079], + 0x222E: [1310,654,1120,54,1001], + 0x222F: [1310,654,1659,54,1540], + 0x2230: [1310,654,2198,54,2079], + 0x2231: [1310,654,1120,54,1001], + 0x2232: [1310,654,1146,80,1027], + 0x2233: [1310,654,1120,54,1001], + 0x22C0: [1040,519,1217,85,1132], + 0x22C1: [1040,519,1217,85,1132], + 0x22C2: [1039,520,1292,124,1169], + 0x22C3: [1039,520,1292,124,1169], + 0x2308: [980,490,390,84,346], + 0x2309: [980,490,390,84,346], + 0x230A: [980,490,390,84,346], + 0x230B: [980,490,390,84,346], + 0x23B4: [755,-518,977,0,978], + 0x23B5: [-238,475,977,0,978], + 0x23DC: [821,-545,972,0,973], + 0x23DD: [-545,821,972,0,973], + 0x23DE: [789,-545,1572,51,1522], + 0x23DF: [-545,789,1572,51,1522], + 0x23E0: [755,-545,1359,0,1360], + 0x23E1: [-545,755,1359,0,1360], + 0x27C5: [781,240,450,53,397], + 0x27C6: [781,240,450,53,397], + 0x27E6: [684,341,502,84,473], + 0x27E7: [684,341,502,84,473], + 0x27E8: [681,340,422,53,371], + 0x27E9: [681,340,422,53,371], + 0x27EA: [681,340,605,53,554], + 0x27EB: [681,340,605,53,554], + 0x29FC: [915,457,518,50,469], + 0x29FD: [915,457,518,49,469], + 0x2A00: [1100,550,1901,124,1778], + 0x2A01: [1100,550,1901,124,1778], + 0x2A02: [1100,550,1901,124,1778], + 0x2A03: [1039,520,1292,124,1169], + 0x2A04: [1039,520,1292,124,1169], + 0x2A05: [1024,513,1292,124,1169], + 0x2A06: [1024,513,1292,124,1169], + 0x2A07: [1039,520,1415,86,1330], + 0x2A08: [1039,520,1415,86,1330], + 0x2A09: [888,445,1581,124,1459], + 0x2A0C: [1310,654,2736,54,2617], + 0x2A0D: [1310,654,1120,54,1001], + 0x2A0E: [1310,654,1120,54,1001], + 0x2A0F: [1310,654,1120,54,1001], + 0x2A10: [1310,654,1120,54,1001], + 0x2A11: [1310,654,1182,54,1063], + 0x2A12: [1310,654,1120,54,1001], + 0x2A13: [1310,654,1120,54,1001], + 0x2A14: [1310,654,1120,54,1001], + 0x2A15: [1310,654,1120,54,1001], + 0x2A16: [1310,654,1120,54,1001], + 0x2A17: [1310,654,1431,54,1362], + 0x2A18: [1310,654,1120,54,1001], + 0x2A19: [1310,654,1120,54,1001], + 0x2A1A: [1310,654,1120,54,1001], + 0x2A1B: [1471,654,1130,54,1011], + 0x2A1C: [1471,654,1156,80,1037] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Size1"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size1/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size2/Regular/Main.js new file mode 100644 index 0000000..93d7adf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size2/Regular/Main.js @@ -0,0 +1,118 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'AsanaMathJax_Size2', + testString: '\u0302\u0303\u0305\u0306\u030C\u0332\u0333\u033F\u2016\u2044\u2045\u2046\u20D6\u20D7\u220F', + 0x20: [0,0,249,0,0], + 0x28: [1266,775,427,84,388], + 0x29: [1266,775,427,40,344], + 0x5B: [1363,682,371,84,342], + 0x5D: [1363,682,371,84,342], + 0x7B: [1357,684,468,51,419], + 0x7C: [1048,507,258,86,173], + 0x7D: [1357,684,468,50,418], + 0x302: [783,-627,633,0,633], + 0x303: [772,-642,1052,0,1053], + 0x305: [587,-542,674,0,675], + 0x306: [664,-506,541,0,542], + 0x30C: [787,-627,1104,0,1105], + 0x332: [-130,175,674,0,675], + 0x333: [-130,283,674,0,675], + 0x33F: [695,-542,674,0,675], + 0x2016: [1048,507,495,86,410], + 0x2044: [875,596,431,-119,433], + 0x2045: [1202,660,369,53,314], + 0x2046: [1202,660,377,19,280], + 0x20D6: [790,-519,1127,0,1127], + 0x20D7: [790,-519,1127,0,1127], + 0x220F: [1297,645,2061,112,1951], + 0x2210: [1297,645,2061,112,1951], + 0x2211: [1286,642,1763,128,1634], + 0x221A: [1912,0,866,63,899], + 0x2229: [1382,863,1705,100,1605], + 0x222B: [1808,903,1360,54,1361], + 0x222C: [1808,903,2254,54,2105], + 0x222D: [1808,903,2998,54,2849], + 0x222E: [1808,903,1510,54,1361], + 0x222F: [1808,903,2254,54,2105], + 0x2230: [1808,903,2998,54,2849], + 0x2231: [1808,903,1509,54,1360], + 0x2232: [1808,903,1566,110,1417], + 0x2233: [1808,903,1510,54,1361], + 0x22C0: [1726,862,1677,85,1592], + 0x22C1: [1726,862,1677,85,1592], + 0x22C2: [1725,863,1860,178,1684], + 0x22C3: [1382,863,1705,100,1605], + 0x2308: [1361,680,390,84,346], + 0x2309: [1361,680,390,84,346], + 0x230A: [1361,680,390,84,346], + 0x230B: [1361,680,390,84,346], + 0x23B4: [755,-497,1352,0,1353], + 0x23B5: [-217,475,1352,0,1353], + 0x23DC: [835,-531,1348,0,1349], + 0x23DD: [-531,835,1348,0,1349], + 0x23DE: [908,-540,2142,51,2092], + 0x23DF: [-540,908,2142,51,2092], + 0x23E0: [755,-545,2055,0,2056], + 0x23E1: [-545,755,2055,0,2056], + 0x27C5: [1036,495,450,53,397], + 0x27C6: [1003,528,450,53,397], + 0x27E6: [1023,512,513,84,483], + 0x27E7: [1023,512,513,84,483], + 0x27E8: [1362,680,455,53,403], + 0x27E9: [1362,680,455,53,403], + 0x27EA: [1362,680,645,53,593], + 0x27EB: [1362,680,645,53,593], + 0x29FC: [1262,631,554,50,505], + 0x29FD: [1262,631,554,49,505], + 0x2A00: [1584,792,2737,179,2560], + 0x2A01: [1584,792,2737,179,2560], + 0x2A02: [1584,792,2737,179,2560], + 0x2A03: [1725,863,1860,179,1683], + 0x2A04: [1725,863,1860,178,1684], + 0x2A05: [1700,852,1860,179,1683], + 0x2A06: [1700,852,1860,179,1683], + 0x2A07: [1725,863,1962,86,1877], + 0x2A08: [1725,863,1962,86,1877], + 0x2A09: [1279,641,2277,179,2101], + 0x2A0C: [1808,903,3760,54,3611], + 0x2A0D: [1808,903,1510,54,1361], + 0x2A0E: [1808,903,1510,54,1361], + 0x2A0F: [1808,903,1510,54,1361], + 0x2A10: [1808,903,1510,54,1361], + 0x2A11: [1808,903,1596,54,1447], + 0x2A12: [1808,903,1510,54,1361], + 0x2A13: [1808,903,1510,54,1361], + 0x2A14: [1808,903,1510,54,1361], + 0x2A15: [1808,903,1510,54,1361], + 0x2A16: [1808,903,1510,54,1361], + 0x2A17: [1808,903,1958,54,1859], + 0x2A18: [1808,903,1510,54,1361], + 0x2A19: [1808,903,1510,54,1361], + 0x2A1A: [1808,903,1510,54,1361], + 0x2A1B: [2030,903,1524,54,1375], + 0x2A1C: [2030,903,1524,54,1375] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Size2"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size2/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size3/Regular/Main.js new file mode 100644 index 0000000..d2fc476 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size3/Regular/Main.js @@ -0,0 +1,105 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'AsanaMathJax_Size3', + testString: '\u0302\u0303\u0305\u0306\u030C\u0332\u0333\u033F\u2016\u2044\u2045\u2046\u20D6\u20D7\u220F', + 0x20: [0,0,249,0,0], + 0x28: [1701,851,441,84,402], + 0x29: [1701,851,441,40,358], + 0x5B: [1710,846,381,84,352], + 0x5D: [1710,846,381,84,352], + 0x7B: [1697,855,590,51,541], + 0x7C: [1219,678,270,86,185], + 0x7D: [1697,855,590,50,540], + 0x302: [783,-627,1055,0,1055], + 0x303: [772,-642,1402,0,1403], + 0x305: [587,-542,1126,0,1127], + 0x306: [664,-506,921,0,922], + 0x30C: [792,-627,1473,0,1474], + 0x332: [-130,175,1126,0,1127], + 0x333: [-130,283,1126,0,1127], + 0x33F: [695,-542,1126,0,1127], + 0x2016: [1219,678,539,86,454], + 0x2044: [1037,758,491,-180,494], + 0x2045: [1435,893,375,48,319], + 0x2046: [1435,893,385,14,285], + 0x20D6: [790,-520,1878,0,1878], + 0x20D7: [790,-520,1878,0,1878], + 0x220F: [1868,929,2968,161,2809], + 0x2210: [1868,929,2968,161,2809], + 0x2211: [1852,924,2539,184,2353], + 0x221A: [2543,0,995,63,1027], + 0x2229: [1725,863,1860,178,1684], + 0x222B: [2314,1156,1726,54,1727], + 0x222C: [2314,1156,2828,54,2679], + 0x222D: [2314,1156,3780,54,3631], + 0x222E: [2314,1156,1876,54,1727], + 0x222F: [2314,1156,2828,54,2679], + 0x2230: [2314,1156,3780,54,3631], + 0x2231: [2314,1156,1875,54,1726], + 0x2232: [2314,1156,1963,141,1814], + 0x2233: [2314,1156,1876,54,1727], + 0x22C3: [1725,863,1860,178,1684], + 0x2308: [1701,851,390,86,348], + 0x2309: [1701,851,390,86,348], + 0x230A: [1701,851,390,86,348], + 0x230B: [1701,851,390,86,348], + 0x23B4: [755,-487,1689,0,1690], + 0x23B5: [-207,475,1689,0,1690], + 0x23DC: [848,-530,1685,0,1686], + 0x23DD: [-530,848,1685,0,1686], + 0x23DE: [1035,-545,2653,51,2603], + 0x23DF: [-545,1035,2653,51,2603], + 0x23E0: [755,-545,3107,0,3108], + 0x23E1: [-545,755,3107,0,3108], + 0x27C5: [1291,750,450,53,397], + 0x27C6: [1258,783,450,53,397], + 0x27E6: [1363,682,523,84,494], + 0x27E7: [1363,682,523,84,494], + 0x27E8: [1702,850,471,53,419], + 0x27E9: [1702,850,471,53,419], + 0x27EA: [1702,850,665,53,613], + 0x27EB: [1702,850,665,53,613], + 0x29FC: [1577,789,589,55,535], + 0x29FD: [1577,789,589,54,535], + 0x2A0C: [2314,1156,4730,54,4581], + 0x2A0D: [2314,1156,1876,54,1727], + 0x2A0E: [2314,1156,1876,54,1727], + 0x2A0F: [2314,1156,1876,54,1727], + 0x2A10: [2314,1156,1876,54,1727], + 0x2A11: [2314,1156,1986,54,1837], + 0x2A12: [2314,1156,1876,54,1727], + 0x2A13: [2314,1156,1876,54,1727], + 0x2A14: [2314,1156,1876,54,1727], + 0x2A15: [2314,1156,1876,54,1727], + 0x2A16: [2314,1156,1876,54,1727], + 0x2A17: [2314,1156,2463,54,2364], + 0x2A18: [2314,1156,1876,54,1727], + 0x2A19: [2314,1156,1876,54,1727], + 0x2A1A: [2314,1156,1876,54,1727], + 0x2A1B: [2598,1156,1894,54,1745], + 0x2A1C: [2598,1156,1894,54,1745] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Size3"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size3/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size4/Regular/Main.js new file mode 100644 index 0000000..f30c350 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size4/Regular/Main.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'AsanaMathJax_Size4', + testString: '\u0302\u0303\u0306\u030C\u2016\u2044\u20D6\u20D7\u221A\u27C5\u27C6\u27E6\u27E7', + 0x20: [0,0,249,0,0], + 0x7C: [1428,887,272,86,187], + 0x302: [783,-627,2017,0,2017], + 0x303: [772,-642,1864,0,1865], + 0x306: [664,-506,1761,0,1762], + 0x30C: [792,-627,1959,0,1960], + 0x2016: [1428,887,553,86,468], + 0x2044: [1234,955,564,-254,568], + 0x20D6: [790,-519,3579,0,3579], + 0x20D7: [790,-519,3579,0,3579], + 0x221A: [3175,0,946,63,979], + 0x27C5: [1276,1276,450,53,397], + 0x27C6: [1276,1276,450,53,397], + 0x27E6: [1704,852,534,84,504], + 0x27E7: [1704,852,534,84,504] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Size4"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size4/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size5/Regular/Main.js new file mode 100644 index 0000000..883ef58 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size5/Regular/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'AsanaMathJax_Size5', + testString: '\u0302\u0303\u030C\u27C5\u27C6', + 0x20: [0,0,249,0,0], + 0x7C: [1673,1039,288,85,203], + 0x302: [783,-627,3026,0,3026], + 0x303: [772,-642,2797,0,2797], + 0x30C: [792,-627,2940,0,2940], + 0x27C5: [1260,1803,450,53,397], + 0x27C6: [1260,1803,450,53,397] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Size5"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size5/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size6/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size6/Regular/Main.js new file mode 100644 index 0000000..a338ea9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Size6/Regular/Main.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Size6/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Size6'] = { + directory: 'Size6/Regular', + family: 'AsanaMathJax_Size6', + testString: '\uE000\uE001\uE002\uE003\uE004\uE005\uE006\uE007\uE008\uE009\uE00A\uE00B\uE00C\uE00D\uE00E', + 0x20: [0,0,249,0,0], + 0x7C: [1960,1217,308,85,223], + 0xE000: [1428,887,272,86,187], + 0xE001: [587,-542,510,0,511], + 0xE002: [-130,175,510,0,511], + 0xE003: [-130,283,510,0,511], + 0xE004: [695,-542,510,0,511], + 0xE005: [1428,887,553,86,468], + 0xE006: [384,-100,375,48,314], + 0xE007: [700,-100,375,59,170], + 0xE008: [523,-100,375,59,319], + 0xE009: [384,-100,375,48,314], + 0xE00A: [384,-100,375,62,328], + 0xE00B: [700,-100,373,206,317], + 0xE00C: [523,-100,373,57,317], + 0xE00D: [384,-100,375,62,328], + 0xE00E: [673,-636,484,0,485], + 0xE00F: [832,-544,887,0,888], + 0xE010: [827,-712,687,0,688], + 0xE011: [833,-545,887,0,888], + 0xE012: [-200,237,484,0,485], + 0xE013: [486,-55,948,65,949], + 0xE014: [300,-241,834,0,770], + 0xE015: [428,172,524,233,292], + 0xE016: [300,-241,834,65,835], + 0xE017: [486,-55,948,0,884], + 0xE018: [486,-55,243,0,208], + 0xE019: [486,-55,243,36,244], + 0xE01A: [494,-241,375,0,311], + 0xE01B: [494,-241,375,65,376], + 0xE01C: [537,-5,948,65,949], + 0xE01D: [406,-134,638,0,639], + 0xE01E: [406,-134,834,0,770], + 0xE01F: [428,172,578,153,425], + 0xE020: [406,-134,834,65,835], + 0xE021: [537,-5,948,0,884], + 0xE022: [494,0,915,679,988], + 0xE023: [-340,628,887,0,888], + 0xE024: [-513,628,687,0,688], + 0xE025: [-345,633,887,0,888], + 0xE026: [877,-545,773,51,773], + 0xE027: [877,-741,688,0,688], + 0xE028: [877,-545,770,0,720], + 0xE029: [-545,877,773,51,773], + 0xE02A: [-741,877,687,0,687], + 0xE02B: [-545,877,770,0,720], + 0xE02C: [1072,-741,758,0,758], + 0xE02D: [-741,1072,758,0,758], + 0xE02E: [486,-55,271,0,207], + 0xE02F: [486,-55,271,65,272] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Size6"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size6/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Symbols/Regular/Main.js new file mode 100644 index 0000000..e3df329 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Symbols/Regular/Main.js @@ -0,0 +1,232 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'AsanaMathJax_Symbols', + testString: '\u2300\u2304\u2305\u2306\u2310\u2319\u231C\u231D\u231E\u231F\u2320\u2321\u2329\u232A\u233D', + 0x20: [0,0,249,0,0], + 0x2300: [591,13,733,65,668], + 0x2304: [361,-18,688,65,623], + 0x2305: [515,-18,688,65,623], + 0x2306: [682,-18,688,65,623], + 0x2310: [360,-88,672,65,608], + 0x2319: [360,-88,672,65,608], + 0x231C: [713,-450,391,93,355], + 0x231D: [713,-450,391,36,298], + 0x231E: [91,172,391,93,355], + 0x231F: [91,172,391,36,298], + 0x2320: [1412,0,1371,537,1262], + 0x2321: [1412,0,1371,-36,689], + 0x2329: [733,192,381,53,309], + 0x232A: [733,192,381,53,309], + 0x233D: [660,119,669,18,652], + 0x239B: [885,0,442,53,412], + 0x239C: [1122,0,442,53,194], + 0x239D: [886,0,654,53,412], + 0x239E: [885,0,442,32,391], + 0x239F: [1122,0,442,249,391], + 0x23A0: [886,0,442,32,391], + 0x23A1: [888,0,408,86,374], + 0x23A2: [1132,0,408,86,206], + 0x23A3: [888,0,408,86,374], + 0x23A4: [888,0,408,35,323], + 0x23A5: [1132,0,408,203,323], + 0x23A6: [888,0,408,35,323], + 0x23A7: [721,0,627,246,578], + 0x23A8: [757,0,627,51,382], + 0x23A9: [715,7,627,246,578], + 0x23AA: [688,0,627,246,382], + 0x23AB: [721,0,627,51,382], + 0x23AC: [757,0,627,246,578], + 0x23AD: [722,0,627,51,382], + 0x23AE: [1125,0,1371,537,689], + 0x23AF: [300,-241,637,0,638], + 0x23B2: [981,480,1701,132,1536], + 0x23B3: [886,443,1701,124,1576], + 0x23B7: [1388,0,987,63,738], + 0x27C0: [521,-21,564,66,514], + 0x27C1: [559,18,666,44,623], + 0x27C2: [621,79,748,65,684], + 0x27C3: [533,-8,668,55,615], + 0x27C4: [533,-8,668,55,615], + 0x27C5: [718,192,381,42,340], + 0x27C6: [718,192,381,42,340], + 0x27C7: [563,22,687,65,623], + 0x27C8: [714,169,987,68,920], + 0x27C9: [714,169,987,68,920], + 0x27CA: [570,29,317,65,253], + 0x27CE: [540,1,668,64,605], + 0x27CF: [541,0,668,64,605], + 0x27D0: [630,89,761,47,715], + 0x27D1: [563,22,687,65,623], + 0x27D2: [498,-44,665,70,596], + 0x27D3: [476,-66,535,65,473], + 0x27D4: [476,-66,535,65,473], + 0x27D5: [515,-23,858,58,802], + 0x27D6: [515,-23,858,58,802], + 0x27D7: [515,-23,1009,76,934], + 0x27D8: [671,129,748,65,684], + 0x27D9: [671,129,748,65,684], + 0x27DA: [541,0,1189,70,1120], + 0x27DB: [541,0,1189,70,1120], + 0x27DC: [446,-94,1016,65,952], + 0x27DD: [579,40,969,85,885], + 0x27DE: [579,40,969,85,885], + 0x27DF: [671,129,748,65,684], + 0x27E0: [630,89,626,47,580], + 0x27E1: [578,37,558,44,515], + 0x27E2: [578,37,640,53,588], + 0x27E3: [578,37,640,53,588], + 0x27E4: [541,0,782,59,724], + 0x27E5: [541,0,782,58,724], + 0x27E6: [726,184,484,79,440], + 0x27E7: [726,184,484,45,406], + 0x27EA: [713,172,581,67,515], + 0x27EB: [713,172,581,67,515], + 0x27EC: [709,191,384,87,298], + 0x27ED: [709,191,384,87,298], + 0x2980: [713,172,620,71,550], + 0x2981: [521,-20,620,58,563], + 0x2982: [760,0,495,72,424], + 0x2983: [726,188,554,53,502], + 0x2984: [726,188,554,53,502], + 0x2985: [726,215,362,36,325], + 0x2986: [726,215,394,36,325], + 0x2987: [750,250,420,99,341], + 0x2988: [750,250,420,80,322], + 0x2989: [668,111,407,40,338], + 0x298A: [668,111,407,70,368], + 0x298B: [726,300,332,79,288], + 0x298C: [726,300,332,79,288], + 0x298D: [726,184,352,79,308], + 0x298E: [726,184,352,45,274], + 0x298F: [726,184,352,79,308], + 0x2990: [726,184,352,45,274], + 0x2991: [713,172,381,53,329], + 0x2992: [713,172,381,53,329], + 0x2993: [693,159,671,54,618], + 0x2994: [693,159,671,54,618], + 0x2995: [635,200,919,87,835], + 0x2996: [635,200,919,87,835], + 0x2999: [716,5,249,67,183], + 0x299A: [609,66,269,66,204], + 0x299B: [501,-40,544,65,480], + 0x299C: [541,0,668,64,605], + 0x299D: [541,0,668,64,605], + 0x299E: [474,-68,535,65,471], + 0x299F: [322,-73,535,65,471], + 0x29A0: [410,81,544,69,476], + 0x29A1: [405,2,621,65,557], + 0x29A2: [559,18,535,65,471], + 0x29A3: [559,18,535,65,471], + 0x29A4: [615,72,535,65,471], + 0x29A5: [615,72,535,65,471], + 0x29A6: [380,-162,722,65,658], + 0x29A7: [379,-161,722,65,658], + 0x29A8: [589,41,544,65,480], + 0x29A9: [589,41,544,65,480], + 0x29AA: [589,41,544,65,480], + 0x29AB: [589,41,544,65,480], + 0x29AC: [479,-63,759,65,695], + 0x29AD: [479,-63,759,65,695], + 0x29AE: [479,-63,759,65,695], + 0x29AF: [479,-63,759,65,695], + 0x29B0: [578,26,733,65,668], + 0x29B1: [714,13,733,65,668], + 0x29B2: [852,13,733,65,668], + 0x29B3: [871,13,733,65,668], + 0x29B4: [871,13,733,65,668], + 0x29B5: [587,46,761,18,744], + 0x29B6: [587,46,668,18,652], + 0x29B7: [587,46,668,18,652], + 0x29B8: [587,46,668,18,652], + 0x29B9: [587,46,668,18,652], + 0x29BA: [587,46,668,18,652], + 0x29BB: [587,46,668,18,652], + 0x29BC: [587,46,668,18,652], + 0x29BD: [858,96,643,18,624], + 0x29BE: [587,46,668,18,652], + 0x29BF: [587,46,668,18,652], + 0x29C0: [587,46,668,18,652], + 0x29C1: [587,46,668,18,652], + 0x29C2: [587,46,875,18,858], + 0x29C3: [587,46,942,18,925], + 0x29C4: [541,0,668,64,605], + 0x29C5: [541,0,668,64,605], + 0x29C6: [541,0,668,64,605], + 0x29C7: [541,0,668,64,605], + 0x29C8: [541,0,668,64,605], + 0x29C9: [645,147,911,64,848], + 0x29CA: [633,92,660,65,596], + 0x29CB: [463,181,660,65,596], + 0x29CC: [544,0,660,65,596], + 0x29CD: [544,3,671,15,650], + 0x29CE: [670,117,833,65,769], + 0x29CF: [514,-25,953,65,889], + 0x29D0: [514,-25,953,65,889], + 0x29D1: [515,-23,758,65,694], + 0x29D2: [515,-23,758,65,694], + 0x29D3: [515,-23,758,65,694], + 0x29D4: [515,-23,758,65,694], + 0x29D5: [518,-26,758,65,694], + 0x29D6: [584,46,620,64,556], + 0x29D7: [584,46,620,64,556], + 0x29D8: [567,26,269,66,204], + 0x29D9: [568,25,269,66,204], + 0x29DA: [568,25,438,66,373], + 0x29DB: [568,25,438,66,373], + 0x29DC: [463,-65,897,55,835], + 0x29DD: [570,29,897,55,843], + 0x29DE: [615,100,897,55,843], + 0x29DF: [446,-94,1363,65,1299], + 0x29E0: [541,0,668,64,605], + 0x29E1: [592,39,844,65,780], + 0x29E2: [469,-73,822,62,760], + 0x29E3: [539,-7,673,51,623], + 0x29E4: [618,75,673,51,623], + 0x29E5: [635,65,669,65,605], + 0x29E6: [541,0,761,65,697], + 0x29E7: [542,-10,605,51,555], + 0x29E8: [543,2,660,65,596], + 0x29E9: [543,2,660,65,596], + 0x29EA: [739,195,761,47,715], + 0x29EC: [587,281,668,18,652], + 0x29ED: [587,281,668,18,652], + 0x29EE: [725,183,668,64,605], + 0x29EF: [725,183,668,64,605], + 0x29F0: [875,240,761,47,715], + 0x29F1: [814,301,761,47,715], + 0x29F2: [802,290,669,18,652], + 0x29F3: [802,290,669,18,652], + 0x29F4: [518,-23,1206,85,1142], + 0x29F6: [801,171,581,87,495], + 0x29F7: [714,169,463,59,405], + 0x29FA: [512,-7,605,51,555], + 0x29FB: [512,-7,605,51,555], + 0x29FC: [750,203,533,65,469], + 0x29FD: [750,203,533,64,469], + 0x29FE: [560,0,678,60,619], + 0x29FF: [367,-197,678,60,619] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Symbols"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Symbols/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Variants/Regular/Main.js new file mode 100644 index 0000000..98f9e9f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/Variants/Regular/Main.js @@ -0,0 +1,92 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['AsanaMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'AsanaMathJax_Variants', + testString: '\uE200\uE201\uE202\uE203\uE204\uE205\uE206\uE207\uE208\uE209\uE20A\uE20B\uE20C\uE20D\uE20E', + 0x20: [0,0,249,0,0], + 0xE200: [475,20,499,20,471], + 0xE201: [483,2,499,63,426], + 0xE202: [474,2,499,20,465], + 0xE203: [474,240,499,9,437], + 0xE204: [480,240,499,3,467], + 0xE205: [468,240,499,8,445], + 0xE206: [699,20,499,31,468], + 0xE207: [469,240,499,35,489], + 0xE208: [684,17,499,32,463], + 0xE209: [472,247,499,28,466], + 0xE20A: [692,41,915,7,908], + 0xE20B: [720,23,755,7,748], + 0xE20C: [704,52,681,7,675], + 0xE20D: [707,31,904,7,898], + 0xE20E: [719,19,654,7,647], + 0xE20F: [742,69,703,7,897], + 0xE210: [715,176,740,7,734], + 0xE211: [758,36,921,7,1018], + 0xE212: [734,26,683,7,677], + 0xE213: [714,157,815,-21,908], + 0xE214: [734,29,837,7,939], + 0xE215: [725,91,787,7,781], + 0xE216: [741,46,1136,7,1129], + 0xE217: [720,40,864,7,959], + 0xE218: [753,26,739,7,733], + 0xE219: [714,39,745,7,746], + 0xE21A: [753,59,739,7,733], + 0xE21B: [727,23,715,7,722], + 0xE21C: [738,29,714,7,707], + 0xE21D: [717,29,713,7,875], + 0xE21E: [731,34,943,7,987], + 0xE21F: [712,39,938,7,955], + 0xE220: [734,25,1264,7,1292], + 0xE221: [729,31,776,7,769], + 0xE222: [759,72,838,7,855], + 0xE223: [743,116,910,7,903], + 0xE224: [692,41,996,16,980], + 0xE225: [720,23,847,18,822], + 0xE226: [704,52,635,26,694], + 0xE227: [707,31,975,17,949], + 0xE228: [719,19,677,13,663], + 0xE229: [742,69,760,13,902], + 0xE22A: [715,176,807,26,795], + 0xE22B: [761,35,1010,20,1112], + 0xE22C: [734,26,614,19,731], + 0xE22D: [714,157,833,11,982], + 0xE22E: [734,27,887,5,974], + 0xE22F: [725,91,841,13,828], + 0xE230: [741,46,1265,13,1240], + 0xE231: [720,40,924,13,1027], + 0xE232: [753,26,819,26,794], + 0xE233: [714,39,825,17,812], + 0xE234: [753,59,815,26,794], + 0xE235: [727,8,785,18,778], + 0xE236: [738,29,773,26,747], + 0xE237: [717,29,693,18,927], + 0xE238: [731,34,1028,15,1079], + 0xE239: [711,39,968,17,1027], + 0xE23A: [732,32,1318,5,1382], + 0xE23B: [761,41,796,11,778], + 0xE23C: [759,72,814,23,913], + 0xE23D: [747,112,962,9,948] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"AsanaMathJax_Variants"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Variants/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/fontdata-extra.js new file mode 100644 index 0000000..dbaf236 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/fontdata-extra.js @@ -0,0 +1,429 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/fontdata-extra.js + * + * Adds extra stretchy characters to the Asana-Math fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS) { + var VERSION = "2.3"; + + var DELIMITERS = HTMLCSS.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "AsanaMathJax_Alphabets", + ARROWS = "AsanaMathJax_Arrows", + DOUBLESTRUCK = "AsanaMathJax_DoubleStruck", + FRAKTUR = "AsanaMathJax_Fraktur", + LATIN = "AsanaMathJax_Latin", + MAIN = "AsanaMathJax_Main", + MARKS = "AsanaMathJax_Marks", + MISC = "AsanaMathJax_Misc", + MONOSPACE = "AsanaMathJax_Monospace", + NONUNICODE = "AsanaMathJax_NonUnicode", + NORMAL = "AsanaMathJax_Normal", + OPERATORS = "AsanaMathJax_Operators", + SANSSERIF = "AsanaMathJax_SansSerif", + SCRIPT = "AsanaMathJax_Script", + SHAPES = "AsanaMathJax_Shapes", + SIZE1 = "AsanaMathJax_Size1", + SIZE2 = "AsanaMathJax_Size2", + SIZE3 = "AsanaMathJax_Size3", + SIZE4 = "AsanaMathJax_Size4", + SIZE5 = "AsanaMathJax_Size5", + SIZE6 = "AsanaMathJax_Size6", + SYMBOLS = "AsanaMathJax_Symbols", + VARIANTS = "AsanaMathJax_Variants"; + + var delim = { + 0x306: + { + dir: H, + HW: [[0.282,MAIN], [0.384,SIZE1], [0.542,SIZE2], [0.922,SIZE3], [1.762,SIZE4]] + }, + 0x333: + { + dir: H, + HW: [[0.433,MARKS], [0.511,SIZE1], [0.675,SIZE2], [1.127,SIZE3]], + stretch: {rep:[0xE003,SIZE6], right:[0xE003,SIZE6]} + }, + 0x33F: + { + dir: H, + HW: [[0.433,MARKS], [0.511,SIZE1], [0.675,SIZE2], [1.127,SIZE3]], + stretch: {rep:[0xE004,SIZE6], right:[0xE004,SIZE6]} + }, + 0x2045: + { + dir: V, + HW: [[0.910,MARKS], [1.344,SIZE1], [1.862,SIZE2], [2.328,SIZE3]], + stretch: {bot:[0xE006,SIZE6], ext:[0xE007,SIZE6], mid:[0xE008,SIZE6], top:[0xE009,SIZE6]} + }, + 0x2046: + { + dir: V, + HW: [[0.910,MARKS], [1.344,SIZE1], [1.862,SIZE2], [2.328,SIZE3]], + stretch: {bot:[0xE00A,SIZE6], ext:[0xE00B,SIZE6], mid:[0xE00C,SIZE6], top:[0xE00D,SIZE6]} + }, + 0x20D0: + { + dir: H, + HW: [[0.558,MARKS]], + stretch: {left:[0x20D0,MARKS], rep:[0xE00E,SIZE6]} + }, + 0x20D1: + { + dir: H, + HW: [[0.558,MARKS]], + stretch: {rep:[0xE00E,SIZE6], right:[0x20D1,MARKS]} + }, + 0x20D6: + { + dir: H, + HW: [[0.558,MARKS], [0.807,SIZE1], [1.127,SIZE2], [1.878,SIZE3], [3.579,SIZE4]], + stretch: {left:[0x20D6,MARKS], rep:[0xE00E,SIZE6]} + }, + 0x20D7: + { + dir: H, + HW: [[0.558,MAIN], [0.807,SIZE1], [1.127,SIZE2], [1.878,SIZE3], [3.579,SIZE4]], + stretch: {rep:[0xE00E,SIZE6], right:[0x20D7,MAIN]} + }, + 0x20E1: + { + dir: H, + HW: [[0.557,MARKS]], + stretch: {left:[0x20D6,MARKS], rep:[0xE00E,SIZE6], right:[0x20D7,MAIN]} + }, + 0x20E9: + { + dir: H, + HW: [[0.630,MARKS]], + stretch: {left:[0xE00F,SIZE6], rep:[0xE010,SIZE6], right:[0xE011,SIZE6]} + }, + 0x20EE: + { + dir: H, + HW: [[0.557,MARKS]], + stretch: {left:[0x20EE,MARKS], rep:[0xE012,SIZE6]} + }, + 0x20EF: + { + dir: H, + HW: [[0.557,MARKS]], + stretch: {rep:[0xE012,SIZE6], right:[0x20EF,MARKS]} + }, + 0x21A9: + { + dir: H, + HW: [[0.884,MAIN]], + stretch: {left:[0xE013,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE01A,SIZE6]} + }, + 0x21AA: + { + dir: H, + HW: [[0.884,MAIN]], + stretch: {left:[0xE01B,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE017,SIZE6]} + }, + 0x2210: + { + dir: V, + HW: [[0.937,OPERATORS], [1.349,SIZE1], [1.942,SIZE2], [2.797,SIZE3]] + }, + 0x2211: + { + dir: V, + HW: [[0.930,OPERATORS], [1.339,SIZE1], [1.928,SIZE2], [2.776,SIZE3]] + }, + 0x2229: + { + dir: V, + HW: [[0.603,MAIN], [1.559,SIZE1], [2.245,SIZE2], [2.588,SIZE3]] + }, + 0x222B: + { + dir: V, + HW: [[1.327,MAIN], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]], + stretch: {bot:[0x2321,SYMBOLS], ext:[0x23AE,SYMBOLS], top:[0x2320,SYMBOLS]} + }, + 0x222C: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x222D: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x222E: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x222F: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2230: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2231: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2232: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2233: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x22C0: + { + dir: V, + HW: [[0.939,OPERATORS], [1.559,SIZE1], [2.588,SIZE2]] + }, + 0x22C1: + { + dir: V, + HW: [[0.939,OPERATORS], [1.559,SIZE1], [2.588,SIZE2]] + }, + 0x22C2: + { + dir: V, + HW: [[0.939,OPERATORS], [1.559,SIZE1], [2.588,SIZE2]] + }, + 0x22C3: + { + dir: V, + HW: [[0.939,OPERATORS], [1.559,SIZE1], [2.245,SIZE2], [2.588,SIZE3]] + }, + 0x23B4: + { + dir: H, + HW: [[0.602,MAIN], [0.978,SIZE1], [1.353,SIZE2], [1.690,SIZE3]], + stretch: {left:[0xE00F,SIZE6], rep:[0xE010,SIZE6], right:[0xE011,SIZE6]} + }, + 0x23B5: + { + dir: H, + HW: [[0.602,MAIN], [0.978,SIZE1], [1.353,SIZE2], [1.690,SIZE3]], + stretch: {left:[0xE023,SIZE6], rep:[0xE024,SIZE6], right:[0xE025,SIZE6]} + }, + 0x23DC: + { + dir: H, + HW: [[0.942,MAIN], [0.973,SIZE1], [1.349,SIZE2], [1.686,SIZE3]], + stretch: {left:[0xE026,SIZE6], rep:[0xE027,SIZE6], right:[0xE028,SIZE6]} + }, + 0x23DD: + { + dir: H, + HW: [[0.942,MAIN], [0.973,SIZE1], [1.349,SIZE2], [1.686,SIZE3]], + stretch: {left:[0xE029,SIZE6], rep:[0xE02A,SIZE6], right:[0xE02B,SIZE6]} + }, + 0x23E0: + { + dir: H, + HW: [[0.900,MAIN], [1.360,SIZE1], [2.056,SIZE2], [3.108,SIZE3]] + }, + 0x23E1: + { + dir: H, + HW: [[0.900,MAIN], [1.360,SIZE1], [2.056,SIZE2], [3.108,SIZE3]] + }, + 0x27E6: + { + dir: V, + HW: [[0.910,SYMBOLS], [1.025,SIZE1], [1.535,SIZE2], [2.045,SIZE3], [2.556,SIZE4]] + }, + 0x27E7: + { + dir: V, + HW: [[0.910,SYMBOLS], [1.025,SIZE1], [1.535,SIZE2], [2.045,SIZE3], [2.556,SIZE4]] + }, + 0x27EA: + { + dir: V, + HW: [[0.885,SYMBOLS], [1.021,SIZE1], [2.042,SIZE2], [2.552,SIZE3]] + }, + 0x27EB: + { + dir: V, + HW: [[0.885,SYMBOLS], [1.021,SIZE1], [2.042,SIZE2], [2.552,SIZE3]] + }, + 0x29FC: + { + dir: V, + HW: [[0.953,SYMBOLS], [1.372,SIZE1], [1.893,SIZE2], [2.366,SIZE3]] + }, + 0x29FD: + { + dir: V, + HW: [[0.953,SYMBOLS], [1.372,SIZE1], [1.893,SIZE2], [2.366,SIZE3]] + }, + 0x2A00: + { + dir: V, + HW: [[1.146,OPERATORS], [1.650,SIZE1], [2.376,SIZE2]] + }, + 0x2A01: + { + dir: V, + HW: [[1.149,OPERATORS], [1.650,SIZE1], [2.376,SIZE2]] + }, + 0x2A02: + { + dir: V, + HW: [[1.149,OPERATORS], [1.650,SIZE1], [2.376,SIZE2]] + }, + 0x2A03: + { + dir: V, + HW: [[0.939,OPERATORS], [1.559,SIZE1], [2.588,SIZE2]] + }, + 0x2A04: + { + dir: V, + HW: [[0.939,OPERATORS], [1.559,SIZE1], [2.588,SIZE2]] + }, + 0x2A05: + { + dir: V, + HW: [[0.926,OPERATORS], [1.537,SIZE1], [2.552,SIZE2]] + }, + 0x2A06: + { + dir: V, + HW: [[0.926,OPERATORS], [1.537,SIZE1], [2.552,SIZE2]] + }, + 0x2A07: + { + dir: V, + HW: [[0.939,OPERATORS], [1.559,SIZE1], [2.588,SIZE2]] + }, + 0x2A08: + { + dir: V, + HW: [[0.939,OPERATORS], [1.559,SIZE1], [2.588,SIZE2]] + }, + 0x2A09: + { + dir: V, + HW: [[0.926,OPERATORS], [1.333,SIZE1], [1.920,SIZE2]] + }, + 0x2A0C: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A0D: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A0E: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A0F: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A10: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A11: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A12: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A13: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A14: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A15: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A16: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A17: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A18: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A19: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A1A: + { + dir: V, + HW: [[1.327,OPERATORS], [1.964,SIZE1], [2.711,SIZE2], [3.470,SIZE3]] + }, + 0x2A1B: + { + dir: V, + HW: [[1.436,OPERATORS], [2.125,SIZE1], [2.933,SIZE2], [3.754,SIZE3]] + }, + 0x2A1C: + { + dir: V, + HW: [[1.436,OPERATORS], [2.125,SIZE1], [2.933,SIZE2], [3.754,SIZE3]] + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["HTML-CSS"]); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/fontdata.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/fontdata.js new file mode 100644 index 0000000..a058e20 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Asana-Math/fontdata.js @@ -0,0 +1,617 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Asana-Math/fontdata.js + * + * Initializes the HTML-CSS OutputJax to use the Asana-Math fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,MML,AJAX) { + + var VERSION = "2.3"; + + var ALPHABETS = "AsanaMathJax_Alphabets", + ARROWS = "AsanaMathJax_Arrows", + DOUBLESTRUCK = "AsanaMathJax_DoubleStruck", + FRAKTUR = "AsanaMathJax_Fraktur", + LATIN = "AsanaMathJax_Latin", + MAIN = "AsanaMathJax_Main", + MARKS = "AsanaMathJax_Marks", + MISC = "AsanaMathJax_Misc", + MONOSPACE = "AsanaMathJax_Monospace", + NONUNICODE = "AsanaMathJax_NonUnicode", + NORMAL = "AsanaMathJax_Normal", + OPERATORS = "AsanaMathJax_Operators", + SANSSERIF = "AsanaMathJax_SansSerif", + SCRIPT = "AsanaMathJax_Script", + SHAPES = "AsanaMathJax_Shapes", + SIZE1 = "AsanaMathJax_Size1", + SIZE2 = "AsanaMathJax_Size2", + SIZE3 = "AsanaMathJax_Size3", + SIZE4 = "AsanaMathJax_Size4", + SIZE5 = "AsanaMathJax_Size5", + SIZE6 = "AsanaMathJax_Size6", + SYMBOLS = "AsanaMathJax_Symbols", + VARIANTS = "AsanaMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + HTMLCSS.Augment({ + FONTDATA: { + version: VERSION, + + + TeX_factor: 1.058, + baselineskip: 1.200, + lineH: 0.800, lineD: 0.200, + + hasStyleChar: true, // char 0xEFFD encodes font style + + FONTS: { + "AsanaMathJax_Alphabets": "Alphabets/Regular/Main.js", + "AsanaMathJax_Arrows": "Arrows/Regular/Main.js", + "AsanaMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "AsanaMathJax_Fraktur": "Fraktur/Regular/Main.js", + "AsanaMathJax_Latin": "Latin/Regular/Main.js", + "AsanaMathJax_Main": "Main/Regular/Main.js", + "AsanaMathJax_Marks": "Marks/Regular/Main.js", + "AsanaMathJax_Misc": "Misc/Regular/Main.js", + "AsanaMathJax_Monospace": "Monospace/Regular/Main.js", + "AsanaMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "AsanaMathJax_Normal": "Normal/Regular/Main.js", + "AsanaMathJax_Operators": "Operators/Regular/Main.js", + "AsanaMathJax_SansSerif": "SansSerif/Regular/Main.js", + "AsanaMathJax_Script": "Script/Regular/Main.js", + "AsanaMathJax_Shapes": "Shapes/Regular/Main.js", + "AsanaMathJax_Size1": "Size1/Regular/Main.js", + "AsanaMathJax_Size2": "Size2/Regular/Main.js", + "AsanaMathJax_Size3": "Size3/Regular/Main.js", + "AsanaMathJax_Size4": "Size4/Regular/Main.js", + "AsanaMathJax_Size5": "Size5/Regular/Main.js", + "AsanaMathJax_Size6": "Size6/Regular/Main.js", + "AsanaMathJax_Symbols": "Symbols/Regular/Main.js", + "AsanaMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, offsetA: 0x1D434, offsetG: 0x1D6E2, remap: {0x1D455: 0x210E}}, + "bolditalic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true, offsetA: 0x1D468, offsetG: 0x1D71C}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Asana-Math-variant": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {offsetA: 0xE20A, noLowerCase: 1, fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {offsetN: 0xE200, fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {offsetA: 0xE224, noLowerCase: 1, fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x0305, + + REMAP: { + 0x25C2: 0x25C0, + 0x25C3: 0x25C1, + 0xFE38: 0x23DF, + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x25AA: 0x25A0, + 0x00AF: 0x0304, + 0x20F0: 0x002A, + 0x2758: 0x2223, + 0x03D2: 0x03A5, + 0x25B4: 0x25B2, + 0x25B5: 0x25B3, + 0xFE37: 0x23DE, + 0x25B8: 0x25B6, + 0x02B9: 0x2032, + 0x25BE: 0x25BC, + 0x25BF: 0x25BD + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[0.941,MAIN], [1.471,SIZE1], [2.041,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[0.941,MAIN], [1.471,SIZE1], [2.041,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0x305, dir: H}, + 0x2F: {alias: 0x2044, dir: H}, + 0x3D: + { + dir: H, + HW: [[0.539,MAIN]], + stretch: {rep:[0x3D,MAIN]} + }, + 0x5B: + { + dir: V, + HW: [[0.910,MAIN], [1.476,SIZE1], [2.045,SIZE2], [2.556,SIZE3], [2.615,SIZE3,1.023]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[0.883,MAIN], [1.270,MAIN,1.439], [1.719,MAIN,1.946], [2.167,MAIN,2.454], [2.615,MAIN,2.961]] + }, + 0x5D: + { + dir: V, + HW: [[0.910,MAIN], [1.476,SIZE1], [2.045,SIZE2], [2.556,SIZE3], [2.615,SIZE3,1.023]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5E: {alias: 0x302, dir: H}, + 0x5F: {alias: 0x332, dir: H}, + 0x7B: + { + dir: V, + HW: [[0.901,MAIN], [1.471,SIZE1], [2.041,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0x23AA,SYMBOLS], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[0.885,MAIN], [1.275,SIZE1], [1.555,SIZE2], [1.897,SIZE3], [2.315,SIZE4], [2.712,SIZE5], [3.177,SIZE6]], + stretch: {ext:[0xE000,SIZE6], top:[0xE000,SIZE6]} + }, + 0x7D: + { + dir: V, + HW: [[0.901,MAIN], [1.471,SIZE1], [2.041,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0x23AA,SYMBOLS], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0x7E: {alias: 0x303, dir: H}, + 0xAF: {alias: 0x305, dir: H}, + 0x2C6: {alias: 0x302, dir: H}, + 0x2C9: {alias: 0x305, dir: H}, + 0x2DC: {alias: 0x303, dir: H}, + 0x302: + { + dir: H, + HW: [[0.312,MAIN], [0.453,SIZE1], [0.633,SIZE2], [1.055,SIZE3], [2.017,SIZE4], [3.026,SIZE5]] + }, + 0x303: + { + dir: H, + HW: [[0.330,MAIN], [0.701,SIZE1], [1.053,SIZE2], [1.403,SIZE3], [1.865,SIZE4], [2.797,SIZE5]] + }, + 0x305: + { + dir: H, + HW: [[0.433,MARKS], [0.511,SIZE1], [0.675,SIZE2], [1.127,SIZE3]], + stretch: {rep:[0xE001,SIZE6], right:[0xE001,SIZE6]} + }, + 0x306: EXTRAH, + 0x30C: + { + dir: H, + HW: [[0.312,MAIN], [0.737,SIZE1], [1.105,SIZE2], [1.474,SIZE3], [1.960,SIZE4], [2.940,SIZE5]] + }, + 0x332: + { + dir: H, + HW: [[0.433,MARKS], [0.511,SIZE1], [0.675,SIZE2], [1.127,SIZE3]], + stretch: {rep:[0xE002,SIZE6], right:[0xE002,SIZE6]} + }, + 0x333: EXTRAH, + 0x33F: EXTRAH, + 0x2015: {alias: 0x305, dir: H}, + 0x2016: + { + dir: V, + HW: [[0.885,MAIN], [1.275,SIZE1], [1.555,SIZE2], [1.897,SIZE3], [2.315,SIZE4]], + stretch: {ext:[0xE005,SIZE6], top:[0xE005,SIZE6]} + }, + 0x2017: {alias: 0x305, dir: H}, + 0x203E: {alias: 0x305, dir: H}, + 0x2044: + { + dir: V, + HW: [[0.837,MAIN], [1.205,SIZE1], [1.471,SIZE2], [1.795,SIZE3], [2.189,SIZE4], [2.615,SIZE4,1.195]] + }, + 0x2045: EXTRAV, + 0x2046: EXTRAV, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: EXTRAH, + 0x20E1: EXTRAH, + 0x20E9: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2190: + { + dir: H, + HW: [[0.884,MAIN]], + stretch: {left:[0xE013,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE014,SIZE6]} + }, + 0x2191: + { + dir: V, + HW: [[0.885,MAIN]], + stretch: {ext:[0xE015,SIZE6], top:[0x2191,MAIN]} + }, + 0x2192: + { + dir: H, + HW: [[0.884,MAIN]], + stretch: {left:[0xE016,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE017,SIZE6]} + }, + 0x2193: + { + dir: V, + HW: [[0.885,MAIN]], + stretch: {bot:[0x2193,MAIN], ext:[0xE015,SIZE6]} + }, + 0x2194: + { + dir: H, + HW: [[0.884,MAIN]], + stretch: {left:[0xE013,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE017,SIZE6]} + }, + 0x2195: + { + dir: V, + HW: [[0.884,MAIN]], + stretch: {top:[0x2191,MAIN], ext:[0xE015,SIZE6], bot:[0x2193,MAIN]} + }, + 0x21A4: + { + dir: H, + HW: [[0.942,ARROWS]], + stretch: {left:[0xE013,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE018,SIZE6]} + }, + 0x21A6: + { + dir: H, + HW: [[0.942,MAIN]], + stretch: {left:[0xE019,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE017,SIZE6]} + }, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[0.884,MAIN]], + stretch: {left:[0xE01C,SIZE6], rep:[0xE01D,SIZE6], right:[0xE01E,SIZE6]} + }, + 0x21D1: + { + dir: V, + HW: [[0.885,MAIN]], + stretch: {ext:[0xE01F,SIZE6], top:[0x21D1,MAIN]} + }, + 0x21D2: + { + dir: H, + HW: [[0.884,MAIN]], + stretch: {left:[0xE020,SIZE6], rep:[0xE01D,SIZE6], right:[0xE021,SIZE6]} + }, + 0x21D3: + { + dir: V, + HW: [[0.885,MAIN]], + stretch: {bot:[0x21D3,MAIN], ext:[0xE01F,SIZE6]} + }, + 0x21D4: + { + dir: H, + HW: [[0.895,MAIN]], + stretch: {left:[0xE01C,SIZE6], rep:[0xE01D,SIZE6], right:[0xE021,SIZE6]} + }, + 0x21D5: + { + dir: V, + HW: [[0.884,MAIN,null,0x2195]], + stretch: {top:[0x21D1,MAIN], ext:[0xE01F,SIZE6], bot:[0x21D3,MAIN]} + }, + 0x220F: + { + dir: V, + HW: [[0.937,OPERATORS], [1.349,SIZE1], [1.942,SIZE2], [2.797,SIZE3]] + }, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: {alias: 0x305, dir: H}, + 0x2215: {alias: 0x2044, dir: V}, + 0x221A: + { + dir: V, + HW: [[1.138,MAIN], [1.280,SIZE1], [1.912,SIZE2], [2.543,SIZE3], [3.175,SIZE4]], + stretch: {bot:[0x23B7,SYMBOLS], ext:[0x20D3,MARKS], top:[0xE022,SIZE6]} + }, + 0x2223: + { + dir: V, + HW: [[0.885,MAIN]], + stretch: {ext:[0x2223,MAIN], top:[0x2223,MAIN]} + }, + 0x2225: + { + dir: V, + HW: [[0.885,MAIN]], + stretch: {ext:[0x2225,MAIN], top:[0x2225,MAIN]} + }, + 0x2229: EXTRAV, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[0.885,MAIN], [1.470,SIZE1], [2.041,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[0.885,MAIN], [1.470,SIZE1], [2.041,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[0.885,MAIN], [1.470,SIZE1], [2.041,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[0.885,MAIN], [1.470,SIZE1], [2.041,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: {alias: 0x27E8, dir: V}, + 0x232A: {alias: 0x27E9, dir: V}, + 0x23AA: + { + dir: V, + HW: [[0.688,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: + { + dir: H, + HW: [[0.638,SYMBOLS]], + stretch: {rep:[0x23AF,SYMBOLS]} + }, + 0x23B0: {alias: 0x27C6, dir: V}, + 0x23B1: {alias: 0x27C5, dir: V}, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: + { + dir: V, + HW: [[0.885,MAIN,null,0x7C], [1.270,MAIN,1.435,0x7C], [1.719,MAIN,1.942,0x7C], [2.167,MAIN,2.448,0x7C], [2.615,MAIN,2.955,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[0.902,MAIN], [1.471,SIZE1], [2.041,SIZE2], [2.552,SIZE3]], + stretch: {left:[0xE026,SIZE6], rep:[0xE027,SIZE6], mid:[0xE02C,SIZE6], right:[0xE028,SIZE6]} + }, + 0x23DF: + { + dir: H, + HW: [[0.902,MAIN], [1.471,SIZE1], [2.041,SIZE2], [2.552,SIZE3]], + stretch: {left:[0xE029,SIZE6], rep:[0xE02A,SIZE6], mid:[0xE02D,SIZE6], right:[0xE02B,SIZE6]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x305, dir: H}, + 0x2758: {alias: 0x2223, dir: V}, + 0x27C5: + { + dir: V, + HW: [[0.910,SYMBOLS], [1.021,SIZE1], [1.531,SIZE2], [2.041,SIZE3], [2.552,SIZE4], [3.063,SIZE5]] + }, + 0x27C6: + { + dir: V, + HW: [[0.910,SYMBOLS], [1.021,SIZE1], [1.531,SIZE2], [2.041,SIZE3], [2.552,SIZE4], [3.063,SIZE5]] + }, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[0.885,MAIN], [1.021,SIZE1], [1.270,SIZE1,1.244], [2.042,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]] + }, + 0x27E9: + { + dir: V, + HW: [[0.885,MAIN], [1.021,SIZE1], [1.270,SIZE1,1.244], [2.042,SIZE2], [2.552,SIZE3], [2.615,SIZE3,1.025]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: {alias: 0x28, dir: V}, + 0x27EF: {alias: 0x29, dir: V}, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: + { + dir: H, + HW: [[0.884,ARROWS]], + stretch: {left:[0xE01C,SIZE6], rep:[0xE01D,SIZE6], right:[0xE02E,SIZE6]} + }, + 0x2907: + { + dir: H, + HW: [[0.884,ARROWS]], + stretch: {left:[0xE02F,SIZE6], rep:[0xE01D,SIZE6], right:[0xE021,SIZE6]} + }, + 0x29FC: EXTRAV, + 0x29FD: EXTRAV, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A07: EXTRAV, + 0x2A08: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A0D: EXTRAV, + 0x2A0E: EXTRAV, + 0x2A0F: EXTRAV, + 0x2A10: EXTRAV, + 0x2A11: EXTRAV, + 0x2A12: EXTRAV, + 0x2A13: EXTRAV, + 0x2A14: EXTRAV, + 0x2A15: EXTRAV, + 0x2A16: EXTRAV, + 0x2A17: EXTRAV, + 0x2A18: EXTRAV, + 0x2A19: EXTRAV, + 0x2A1A: EXTRAV, + 0x2A1B: EXTRAV, + 0x2A1C: EXTRAV, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Size6/Regular/Main.js",function () { + var u; + u = HTMLCSS.FONTDATA.DELIMITERS[0x23DE].stretch.rep[0]; + HTMLCSS.FONTDATA.FONTS[SIZE6][u][0] += 100; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS[SIZE6][u][1] += 100; // adjust depth for brace extender + u = HTMLCSS.FONTDATA.DELIMITERS[0x23DF].stretch.rep[0]; + HTMLCSS.FONTDATA.FONTS[SIZE6][u][0] += 100; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS[SIZE6][u][1] += 100; // adjust depth for brace extender + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Size1/Regular/Main.js",function () { + var i; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222B][2] -= 300; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222B][5] = {rfix:-300}; + for (i = 0x222C; i <= 0x2233; i++) { + HTMLCSS.FONTDATA.FONTS[SIZE1][i][2] -= 420; + HTMLCSS.FONTDATA.FONTS[SIZE1][i][5] = {rfix:-420}; + } + for (i = 0x2A0C; i <= 0x2A1C; i++) { + HTMLCSS.FONTDATA.FONTS[SIZE1][i][2] -= 420; + HTMLCSS.FONTDATA.FONTS[SIZE1][i][5] = {rfix:-420}; + } + }); + AJAX.loadComplete(HTMLCSS.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.ElementJax.mml,MathJax.Ajax); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Alphabets/Regular/Main.js new file mode 100644 index 0000000..e26a5a9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Alphabets/Regular/Main.js @@ -0,0 +1,45 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'GyrePagellaMathJax_Alphabets', + testString: '\u00A0\u0E3F\u2103\u2107\u2109\u2116\u2117\u211E\u2120\u2122\u2126\u212A\u212B\u212E\uFEFF', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xE3F: [775,83,611,26,576], + 0x2103: [709,20,1077,50,1038], + 0x2107: [689,20,500,30,477], + 0x2109: [692,3,919,50,899], + 0x2116: [692,20,1096,0,1050], + 0x2117: [668,19,747,31,718], + 0x211E: [692,3,668,22,669], + 0x2120: [700,-320,938,40,898], + 0x2122: [692,-326,979,40,939], + 0x2126: [709,3,839,38,801], + 0x212A: [692,3,726,22,719], + 0x212B: [939,3,778,15,756], + 0x212E: [623,0,772,40,732], + 0xFEFF: [0,0,0,0,0] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Alphabets"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Alphabets/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Arrows/Regular/Main.js new file mode 100644 index 0000000..66170a9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Arrows/Regular/Main.js @@ -0,0 +1,60 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'GyrePagellaMathJax_Arrows', + testString: '\u00A0\u219F\u21A1\u21A4\u21A5\u21A7\u21B2\u21B3\u21B4\u21B5\u21C5\u21D6\u21D7\u21D8\u21D9', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x219F: [673,162,460,80,380], + 0x21A1: [662,173,460,80,380], + 0x21A4: [400,-100,920,80,840], + 0x21A5: [635,125,460,80,380], + 0x21A7: [625,135,460,80,380], + 0x21B2: [572,73,530,80,450], + 0x21B3: [572,72,530,80,450], + 0x21B4: [471,-19,723,80,643], + 0x21B5: [531,31,613,80,533], + 0x21C5: [635,135,800,80,720], + 0x21D6: [522,100,782,80,702], + 0x21D7: [522,100,782,80,702], + 0x21D8: [600,22,782,80,702], + 0x21D9: [600,22,782,80,702], + 0x21DC: [400,-100,920,80,840], + 0x21E6: [450,-50,1047,80,967], + 0x21E7: [705,182,560,80,480], + 0x21E8: [450,-50,1047,80,967], + 0x21E9: [682,205,560,80,480], + 0x21F3: [705,205,560,80,480], + 0x21F5: [635,135,800,80,720], + 0x21F6: [740,240,920,80,840], + 0x27F4: [568,68,1130,80,1050], + 0x27FB: [400,-100,1370,80,1290], + 0x27FD: [450,-50,1445,80,1365], + 0x27FE: [450,-50,1445,80,1365], + 0x27FF: [400,-100,1370,80,1290], + 0x2906: [450,-50,995,80,915], + 0x2907: [450,-50,995,80,915] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Arrows"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Arrows/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..a4c7e18 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js @@ -0,0 +1,103 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'GyrePagellaMathJax_DoubleStruck', + testString: '\u00A0\u2102\u210D\u2115\u2119\u211A\u211D\u2124\u213C\u213D\u213E\u213F\u2140\u2145\u2146', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2102: [698,12,858,80,778], + 0x210D: [686,0,960,80,880], + 0x2115: [686,12,887,80,807], + 0x2119: [686,0,790,80,710], + 0x211A: [698,187,936,80,856], + 0x211D: [686,0,907,80,827], + 0x2124: [686,0,776,80,696], + 0x213C: [493,11,797,80,717], + 0x213D: [482,229,723,80,643], + 0x213E: [686,0,690,80,610], + 0x213F: [686,0,960,80,880], + 0x2140: [750,250,1054,80,974], + 0x2145: [686,0,903,63,869], + 0x2146: [695,12,723,75,694], + 0x2147: [481,12,644,77,583], + 0x2148: [715,0,442,40,401], + 0x2149: [715,272,446,-5,461], + 0x1D538: [694,0,920,80,840], + 0x1D539: [686,0,784,80,704], + 0x1D53B: [686,0,903,80,823], + 0x1D53C: [686,0,723,80,643], + 0x1D53D: [686,0,690,80,610], + 0x1D53E: [698,12,925,80,845], + 0x1D540: [686,0,485,80,405], + 0x1D541: [686,187,551,80,471], + 0x1D542: [686,0,896,80,816], + 0x1D543: [686,0,713,80,633], + 0x1D544: [690,8,1037,80,957], + 0x1D546: [698,12,936,80,856], + 0x1D54A: [698,12,693,80,613], + 0x1D54B: [686,0,824,80,744], + 0x1D54C: [686,12,899,80,819], + 0x1D54D: [686,8,902,80,822], + 0x1D54E: [694,8,1135,80,1055], + 0x1D54F: [697,0,831,80,751], + 0x1D550: [697,0,802,80,722], + 0x1D552: [481,12,663,80,583], + 0x1D553: [695,18,728,80,648], + 0x1D554: [481,12,603,79,523], + 0x1D555: [695,12,723,80,643], + 0x1D556: [481,12,644,80,564], + 0x1D557: [700,0,530,80,450], + 0x1D558: [481,245,707,80,627], + 0x1D559: [695,0,765,80,685], + 0x1D55A: [715,0,442,80,362], + 0x1D55B: [715,272,446,80,366], + 0x1D55C: [695,15,749,80,669], + 0x1D55D: [695,0,442,80,362], + 0x1D55E: [489,0,1083,80,1003], + 0x1D55F: [489,0,765,80,685], + 0x1D560: [481,12,706,80,626], + 0x1D561: [489,240,728,80,648], + 0x1D562: [484,240,729,80,649], + 0x1D563: [489,0,570,80,490], + 0x1D564: [481,12,598,80,518], + 0x1D565: [624,12,520,80,440], + 0x1D566: [489,12,774,80,694], + 0x1D567: [466,8,672,80,592], + 0x1D568: [474,8,867,80,787], + 0x1D569: [486,0,670,80,590], + 0x1D56A: [466,238,711,80,631], + 0x1D56B: [466,0,685,80,605], + 0x1D7D8: [681,12,660,80,580], + 0x1D7D9: [686,0,560,80,480], + 0x1D7DA: [681,0,623,80,543], + 0x1D7DB: [681,12,666,80,586], + 0x1D7DC: [696,0,676,80,596], + 0x1D7DD: [698,12,656,80,576], + 0x1D7DE: [686,12,680,80,600], + 0x1D7DF: [693,0,616,80,536], + 0x1D7E0: [681,12,668,80,588], + 0x1D7E1: [681,19,680,80,600] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_DoubleStruck"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/DoubleStruck/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Fraktur/Regular/Main.js new file mode 100644 index 0000000..1bbeec3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Fraktur/Regular/Main.js @@ -0,0 +1,133 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'GyrePagellaMathJax_Fraktur', + testString: '\u00A0\u210C\u2128\u212D\uD835\uDD04\uD835\uDD05\uD835\uDD07\uD835\uDD08\uD835\uDD09\uD835\uDD0A\uD835\uDD0D\uD835\uDD0E\uD835\uDD0F\uD835\uDD10\uD835\uDD11', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210C: [667,133,720,-8,645], + 0x2128: [729,139,602,11,533], + 0x212D: [686,24,612,59,613], + 0x1D504: [697,27,717,22,709], + 0x1D505: [691,27,904,49,815], + 0x1D507: [690,27,831,27,746], + 0x1D508: [686,24,662,86,641], + 0x1D509: [686,155,611,11,621], + 0x1D50A: [692,25,785,66,711], + 0x1D50D: [686,139,552,-18,522], + 0x1D50E: [681,27,668,16,690], + 0x1D50F: [686,27,666,32,645], + 0x1D510: [692,27,1049,27,1049], + 0x1D511: [686,29,832,29,830], + 0x1D512: [729,27,828,11,746], + 0x1D513: [692,219,823,6,804], + 0x1D514: [729,69,828,11,783], + 0x1D516: [689,27,828,56,756], + 0x1D517: [703,27,669,24,676], + 0x1D518: [697,27,645,-26,666], + 0x1D519: [686,27,831,29,826], + 0x1D51A: [686,28,1046,21,1055], + 0x1D51B: [689,27,719,27,709], + 0x1D51C: [686,219,834,26,741], + 0x1D51E: [471,36,500,65,497], + 0x1D51F: [686,31,513,86,444], + 0x1D520: [466,29,389,72,359], + 0x1D521: [612,34,498,13,430], + 0x1D522: [467,31,400,70,364], + 0x1D523: [679,238,329,30,324], + 0x1D524: [470,209,503,16,455], + 0x1D525: [689,198,521,76,435], + 0x1D526: [675,21,279,14,268], + 0x1D527: [673,202,280,-9,196], + 0x1D528: [686,26,389,24,363], + 0x1D529: [686,20,279,97,277], + 0x1D52A: [475,26,766,7,757], + 0x1D52B: [475,23,526,18,521], + 0x1D52C: [481,28,488,66,413], + 0x1D52D: [538,214,500,12,430], + 0x1D52E: [480,224,489,59,418], + 0x1D52F: [474,21,389,15,395], + 0x1D530: [479,30,442,-28,407], + 0x1D531: [641,21,333,26,349], + 0x1D532: [474,26,517,8,514], + 0x1D533: [533,28,511,51,439], + 0x1D534: [533,28,773,44,693], + 0x1D535: [473,188,388,10,370], + 0x1D536: [524,219,498,45,437], + 0x1D537: [471,215,390,-7,314], + 0x1D56C: [688,31,847,29,827], + 0x1D56D: [685,31,1043,56,963], + 0x1D56E: [677,32,723,71,729], + 0x1D56F: [685,29,981,30,896], + 0x1D570: [687,29,782,73,733], + 0x1D571: [684,147,721,17,734], + 0x1D572: [692,27,927,74,844], + 0x1D573: [684,127,850,0,753], + 0x1D574: [683,25,654,31,623], + 0x1D575: [681,142,652,-8,615], + 0x1D576: [682,26,789,20,813], + 0x1D577: [684,28,786,30,764], + 0x1D578: [686,33,1239,26,1232], + 0x1D579: [681,33,982,26,968], + 0x1D57A: [726,29,976,11,881], + 0x1D57B: [685,223,977,19,944], + 0x1D57C: [726,82,976,11,917], + 0x1D57D: [689,29,977,19,977], + 0x1D57E: [685,31,978,82,906], + 0x1D57F: [691,30,789,30,798], + 0x1D580: [689,39,850,16,871], + 0x1D581: [687,29,981,25,966], + 0x1D582: [682,30,1235,31,1240], + 0x1D583: [682,35,849,32,835], + 0x1D584: [689,214,983,32,879], + 0x1D585: [718,137,726,17,633], + 0x1D586: [472,32,602,80,587], + 0x1D587: [691,32,589,86,504], + 0x1D588: [473,26,463,87,424], + 0x1D589: [632,29,588,-1,511], + 0x1D58A: [471,28,471,80,429], + 0x1D58B: [681,242,387,37,387], + 0x1D58C: [473,208,594,16,541], + 0x1D58D: [687,203,615,88,507], + 0x1D58E: [686,26,331,2,327], + 0x1D58F: [683,207,331,-19,238], + 0x1D590: [683,25,464,33,432], + 0x1D591: [682,24,336,100,315], + 0x1D592: [476,31,921,16,900], + 0x1D593: [474,28,653,3,608], + 0x1D594: [482,34,609,107,515], + 0x1D595: [558,208,603,-2,519], + 0x1D596: [485,212,595,87,515], + 0x1D597: [473,26,459,12,453], + 0x1D598: [480,35,522,-24,482], + 0x1D599: [654,27,393,47,407], + 0x1D59A: [473,35,588,9,604], + 0x1D59B: [546,28,604,56,507], + 0x1D59C: [549,33,917,55,815], + 0x1D59D: [471,188,458,8,449], + 0x1D59E: [559,222,589,60,515], + 0x1D59F: [472,215,461,-8,377] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Fraktur"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Latin/Regular/Main.js new file mode 100644 index 0000000..ec99948 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Latin/Regular/Main.js @@ -0,0 +1,301 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'GyrePagellaMathJax_Latin', + testString: '\u00A0\u00A1\u00A2\u00A4\u00A6\u00A9\u00AA\u00AB\u00B6\u00B8\u00BA\u00BB\u00BF\u00C0\u00C1', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xA1: [454,245,278,81,197], + 0xA2: [562,101,500,61,448], + 0xA4: [531,-96,500,30,470], + 0xA6: [726,184,606,275,331], + 0xA9: [668,19,747,31,718], + 0xAA: [709,-361,333,24,310], + 0xAB: [428,-71,500,50,450], + 0xB6: [695,150,628,39,589], + 0xB8: [10,225,333,96,304], + 0xBA: [709,-355,333,10,323], + 0xBB: [428,-71,500,50,450], + 0xBF: [454,245,444,49,401], + 0xC0: [888,3,778,15,756], + 0xC1: [888,3,778,15,756], + 0xC2: [887,3,778,15,756], + 0xC3: [872,3,778,15,756], + 0xC4: [869,3,778,15,756], + 0xC5: [939,3,778,15,756], + 0xC6: [692,3,944,-10,908], + 0xC7: [709,225,709,22,670], + 0xC8: [888,3,611,22,572], + 0xC9: [888,3,611,22,572], + 0xCA: [887,3,611,22,572], + 0xCB: [869,3,611,22,572], + 0xCC: [888,3,337,22,315], + 0xCD: [888,3,337,22,315], + 0xCE: [887,3,337,0,337], + 0xCF: [869,3,337,20,319], + 0xD0: [692,3,774,14,751], + 0xD1: [872,20,831,17,813], + 0xD2: [888,20,786,22,764], + 0xD3: [888,20,786,22,764], + 0xD4: [887,20,786,22,764], + 0xD5: [872,20,786,22,764], + 0xD6: [869,20,786,22,764], + 0xD8: [709,20,833,30,797], + 0xD9: [888,20,778,12,759], + 0xDA: [888,20,778,12,759], + 0xDB: [887,20,778,12,759], + 0xDC: [869,20,778,12,759], + 0xDD: [888,3,667,9,654], + 0xDE: [692,3,604,32,574], + 0xDF: [731,9,556,23,519], + 0xE0: [677,12,500,32,471], + 0xE1: [677,12,500,32,471], + 0xE2: [676,12,500,32,471], + 0xE3: [645,12,500,32,471], + 0xE4: [642,12,500,32,471], + 0xE5: [692,12,500,32,471], + 0xE6: [469,20,758,30,732], + 0xE7: [469,225,444,26,413], + 0xE8: [677,20,479,26,448], + 0xE9: [677,20,479,26,448], + 0xEA: [676,20,479,26,448], + 0xEB: [642,20,479,26,448], + 0xEC: [677,3,287,11,271], + 0xED: [677,3,287,21,281], + 0xEE: [676,3,287,-10,302], + 0xEF: [642,3,287,-4,295], + 0xF1: [645,3,582,6,572], + 0xF2: [677,20,546,32,514], + 0xF3: [677,20,546,32,514], + 0xF4: [676,20,546,32,514], + 0xF5: [645,20,546,32,514], + 0xF6: [642,20,546,32,514], + 0xF8: [474,23,556,16,530], + 0xF9: [677,12,603,18,581], + 0xFA: [677,12,603,18,581], + 0xFB: [676,12,603,18,581], + 0xFC: [642,12,603,18,581], + 0xFD: [677,283,556,12,544], + 0xFE: [726,281,601,-2,544], + 0xFF: [642,283,556,12,544], + 0x100: [846,3,778,15,756], + 0x101: [619,12,500,32,471], + 0x102: [884,3,778,15,756], + 0x103: [671,12,500,32,471], + 0x104: [700,250,778,15,756], + 0x105: [469,250,500,32,471], + 0x106: [888,20,709,22,670], + 0x107: [677,20,444,26,413], + 0x10C: [887,20,709,22,670], + 0x10D: [676,20,444,26,413], + 0x10E: [887,3,774,22,751], + 0x10F: [726,12,611,35,678], + 0x110: [692,3,774,14,751], + 0x111: [726,12,611,35,579], + 0x112: [846,3,611,22,572], + 0x113: [619,20,479,26,448], + 0x116: [869,3,611,22,572], + 0x117: [642,20,479,26,448], + 0x118: [692,250,611,22,572], + 0x119: [469,250,479,26,448], + 0x11A: [887,3,611,22,572], + 0x11B: [676,20,479,26,448], + 0x11E: [884,20,763,22,728], + 0x11F: [671,283,556,32,544], + 0x122: [709,271,763,22,728], + 0x123: [709,283,556,32,544], + 0x128: [872,3,337,5,335], + 0x129: [645,3,287,-19,311], + 0x12A: [846,3,337,14,326], + 0x12B: [619,3,287,-10,302], + 0x12E: [692,250,337,22,315], + 0x12F: [642,250,291,21,271], + 0x130: [869,3,337,22,315], + 0x132: [692,195,724,40,684], + 0x133: [642,283,509,40,477], + 0x136: [692,271,726,22,719], + 0x137: [726,271,556,21,549], + 0x139: [888,3,611,22,586], + 0x13A: [922,3,291,21,271], + 0x13B: [692,271,611,22,586], + 0x13C: [726,271,291,21,271], + 0x13D: [692,3,611,22,586], + 0x13E: [726,3,291,21,370], + 0x141: [692,3,611,22,586], + 0x142: [726,3,291,0,296], + 0x143: [888,20,831,17,813], + 0x144: [677,3,582,6,572], + 0x145: [692,271,831,17,813], + 0x146: [469,271,582,6,572], + 0x147: [887,20,831,17,813], + 0x148: [676,3,582,6,572], + 0x14A: [692,187,831,17,813], + 0x14B: [469,167,582,6,494], + 0x14C: [846,20,786,22,764], + 0x14D: [619,20,546,32,514], + 0x150: [888,20,786,22,764], + 0x151: [683,20,546,32,526], + 0x152: [709,20,998,22,962], + 0x153: [469,20,827,32,800], + 0x154: [888,3,668,22,669], + 0x155: [677,3,395,21,374], + 0x156: [692,271,668,22,669], + 0x157: [469,271,395,21,374], + 0x158: [887,3,668,22,669], + 0x159: [676,3,395,21,374], + 0x15A: [888,20,525,24,503], + 0x15B: [677,20,424,30,391], + 0x15E: [709,225,525,24,503], + 0x15F: [469,225,424,30,391], + 0x160: [887,20,525,24,503], + 0x161: [676,20,424,30,391], + 0x162: [692,225,613,18,595], + 0x163: [621,225,326,22,319], + 0x164: [887,3,613,18,595], + 0x165: [663,12,326,22,355], + 0x168: [872,20,778,12,759], + 0x169: [645,12,603,18,581], + 0x16A: [846,20,778,12,759], + 0x16B: [619,12,603,18,581], + 0x16E: [939,20,778,12,759], + 0x16F: [692,12,603,18,581], + 0x170: [888,20,778,12,759], + 0x171: [683,12,603,18,581], + 0x172: [692,250,778,12,759], + 0x173: [469,250,603,18,581], + 0x178: [869,3,667,9,654], + 0x179: [888,3,667,15,638], + 0x17A: [677,3,500,16,466], + 0x17B: [869,3,667,15,638], + 0x17C: [642,3,500,16,466], + 0x17D: [887,3,667,15,638], + 0x17E: [676,3,500,16,466], + 0x17F: [728,3,333,23,341], + 0x192: [706,262,500,0,473], + 0x1A0: [781,20,786,22,764], + 0x1A1: [532,20,546,32,567], + 0x1AF: [781,20,778,12,801], + 0x1B0: [532,12,640,18,640], + 0x218: [709,271,525,24,503], + 0x219: [469,271,424,30,391], + 0x21A: [692,271,613,18,595], + 0x21B: [621,271,326,22,319], + 0x1EA0: [700,193,778,15,756], + 0x1EA1: [469,193,500,32,471], + 0x1EA2: [946,3,778,15,756], + 0x1EA3: [703,12,500,32,471], + 0x1EA4: [1046,3,778,15,756], + 0x1EA5: [803,12,500,32,471], + 0x1EA6: [1046,3,778,15,756], + 0x1EA7: [803,12,500,32,471], + 0x1EA8: [1088,3,778,15,756], + 0x1EA9: [845,12,500,32,471], + 0x1EAA: [1022,3,778,15,756], + 0x1EAB: [779,12,500,32,471], + 0x1EAC: [887,193,778,15,756], + 0x1EAD: [676,193,500,32,471], + 0x1EAE: [1043,3,778,15,756], + 0x1EAF: [800,12,500,32,471], + 0x1EB0: [1043,3,778,15,756], + 0x1EB1: [800,12,500,32,471], + 0x1EB2: [1045,3,778,15,756], + 0x1EB3: [802,12,500,32,471], + 0x1EB4: [1015,3,778,15,756], + 0x1EB5: [772,12,500,32,471], + 0x1EB6: [884,193,778,15,756], + 0x1EB7: [671,193,500,32,471], + 0x1EB8: [692,193,611,22,572], + 0x1EB9: [469,193,479,26,448], + 0x1EBA: [946,3,611,22,572], + 0x1EBB: [703,20,479,26,448], + 0x1EBC: [872,3,611,22,572], + 0x1EBD: [645,20,479,26,448], + 0x1EBE: [1046,3,611,22,572], + 0x1EBF: [803,20,479,26,448], + 0x1EC0: [1046,3,611,22,572], + 0x1EC1: [803,20,479,26,448], + 0x1EC2: [1088,3,611,22,572], + 0x1EC3: [845,20,479,26,448], + 0x1EC4: [1022,3,611,22,572], + 0x1EC5: [779,20,479,26,448], + 0x1EC6: [887,193,611,22,572], + 0x1EC7: [676,193,479,26,448], + 0x1EC8: [946,3,337,22,315], + 0x1EC9: [703,3,287,21,271], + 0x1ECA: [692,193,337,22,315], + 0x1ECB: [642,193,287,21,271], + 0x1ECC: [709,193,786,22,764], + 0x1ECD: [469,193,546,32,514], + 0x1ECE: [946,20,786,22,764], + 0x1ECF: [703,20,546,32,514], + 0x1ED0: [1046,20,786,22,764], + 0x1ED1: [803,20,546,32,514], + 0x1ED2: [1046,20,786,22,764], + 0x1ED3: [803,20,546,32,514], + 0x1ED4: [1088,20,786,22,764], + 0x1ED5: [845,20,546,32,514], + 0x1ED6: [1022,20,786,22,764], + 0x1ED7: [779,20,546,32,514], + 0x1ED8: [887,193,786,22,764], + 0x1ED9: [676,193,546,32,514], + 0x1EDA: [888,20,786,22,764], + 0x1EDB: [677,20,546,32,567], + 0x1EDC: [888,20,786,22,764], + 0x1EDD: [677,20,546,32,567], + 0x1EDE: [946,20,786,22,764], + 0x1EDF: [703,20,546,32,567], + 0x1EE0: [872,20,786,22,764], + 0x1EE1: [645,20,546,32,567], + 0x1EE2: [781,193,786,22,764], + 0x1EE3: [532,193,546,32,567], + 0x1EE4: [692,193,778,12,759], + 0x1EE5: [469,193,603,18,581], + 0x1EE6: [946,20,778,12,759], + 0x1EE7: [703,12,603,18,581], + 0x1EE8: [888,20,778,12,801], + 0x1EE9: [677,12,640,18,640], + 0x1EEA: [888,20,778,12,801], + 0x1EEB: [677,12,640,18,640], + 0x1EEC: [946,20,778,12,801], + 0x1EED: [703,12,640,18,640], + 0x1EEE: [872,20,778,12,801], + 0x1EEF: [645,12,640,18,640], + 0x1EF0: [781,193,778,12,801], + 0x1EF1: [532,193,640,18,640], + 0x1EF2: [888,3,667,9,654], + 0x1EF3: [677,283,556,12,544], + 0x1EF4: [705,193,667,9,654], + 0x1EF5: [459,283,556,12,544], + 0x1EF6: [946,3,667,9,654], + 0x1EF7: [703,283,556,12,544], + 0x1EF8: [872,3,667,9,654], + 0x1EF9: [645,283,556,12,544], + 0xFB00: [728,3,623,23,631], + 0xFB01: [728,3,605,23,587], + 0xFB02: [728,3,608,23,590], + 0xFB03: [728,3,897,23,876], + 0xFB04: [728,3,900,23,880] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Latin"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Latin/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Main/Regular/Main.js new file mode 100644 index 0000000..66ab113 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Main/Regular/Main.js @@ -0,0 +1,536 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Main'] = { + directory: 'Main/Regular', + family: 'GyrePagellaMathJax_Main', + testString: '\u00A0\u00A3\u00A5\u00A7\u00A8\u00AC\u00AE\u00AF\u00B0\u00B1\u00B4\u00B5\u00B7\u00D7\u00F0', + 0x20: [0,0,250,0,0], + 0x21: [694,5,278,81,197], + 0x22: [709,-469,371,52,318], + 0x23: [684,0,500,4,495], + 0x24: [731,116,500,30,471], + 0x25: [709,20,840,39,802], + 0x26: [689,20,778,43,753], + 0x27: [709,-469,208,61,146], + 0x28: [664,164,424,120,344], + 0x29: [664,164,424,80,304], + 0x2A: [702,-359,390,32,358], + 0x2B: [550,50,760,80,680], + 0x2C: [123,155,250,16,218], + 0x2D: [287,-215,333,17,312], + 0x2E: [111,5,250,67,183], + 0x2F: [650,150,486,80,406], + 0x30: [689,20,500,29,465], + 0x31: [694,3,500,60,418], + 0x32: [689,3,500,16,468], + 0x33: [689,20,500,15,462], + 0x34: [694,3,500,2,472], + 0x35: [689,20,500,13,459], + 0x36: [689,20,500,32,468], + 0x37: [689,3,500,44,497], + 0x38: [689,20,500,30,464], + 0x39: [689,20,500,20,457], + 0x3A: [456,5,250,66,182], + 0x3B: [456,153,250,16,218], + 0x3C: [563,63,767,80,687], + 0x3D: [390,-110,760,80,680], + 0x3E: [563,63,767,80,687], + 0x3F: [694,5,444,43,395], + 0x40: [694,20,747,24,724], + 0x41: [700,3,778,15,756], + 0x42: [692,3,611,26,576], + 0x43: [709,20,709,22,670], + 0x44: [692,3,774,22,751], + 0x45: [692,3,611,22,572], + 0x46: [692,3,556,22,536], + 0x47: [709,20,763,22,728], + 0x48: [692,3,832,22,810], + 0x49: [692,3,337,22,315], + 0x4A: [692,195,333,-15,311], + 0x4B: [692,3,726,22,719], + 0x4C: [692,3,611,22,586], + 0x4D: [692,13,946,16,926], + 0x4E: [692,20,831,17,813], + 0x4F: [709,20,786,22,764], + 0x50: [692,3,604,22,580], + 0x51: [709,176,786,22,764], + 0x52: [692,3,668,22,669], + 0x53: [709,20,525,24,503], + 0x54: [692,3,613,18,595], + 0x55: [692,20,778,12,759], + 0x56: [692,9,722,8,706], + 0x57: [700,9,1000,8,984], + 0x58: [700,3,667,14,648], + 0x59: [705,3,667,9,654], + 0x5A: [692,3,667,15,638], + 0x5B: [670,170,410,120,330], + 0x5C: [650,150,486,80,406], + 0x5D: [670,170,410,80,290], + 0x5E: [689,-283,606,51,554], + 0x5F: [-75,125,500,0,500], + 0x60: [677,-506,333,31,255], + 0x61: [469,12,500,32,471], + 0x62: [726,12,553,-15,508], + 0x63: [469,20,444,26,413], + 0x64: [726,12,611,35,579], + 0x65: [469,20,479,26,448], + 0x66: [728,3,333,23,341], + 0x67: [469,283,556,32,544], + 0x68: [726,3,582,6,572], + 0x69: [642,3,291,21,271], + 0x6A: [642,283,234,-40,167], + 0x6B: [726,12,556,21,549], + 0x6C: [726,3,291,21,271], + 0x6D: [469,3,883,16,869], + 0x6E: [469,3,582,6,572], + 0x6F: [469,20,546,32,514], + 0x70: [469,281,601,8,554], + 0x71: [469,281,560,35,560], + 0x72: [469,3,395,21,374], + 0x73: [469,20,424,30,391], + 0x74: [621,12,326,22,319], + 0x75: [469,12,603,18,581], + 0x76: [459,7,565,6,539], + 0x77: [469,7,834,6,808], + 0x78: [469,3,516,20,496], + 0x79: [459,283,556,12,544], + 0x7A: [462,3,500,16,466], + 0x7B: [669,169,415,80,335], + 0x7C: [650,150,208,80,128], + 0x7D: [669,169,415,80,335], + 0x7E: [341,-182,606,51,555], + 0xA0: [0,0,250,0,0], + 0xA3: [694,13,500,12,478], + 0xA5: [701,3,500,5,496], + 0xA7: [709,219,500,26,465], + 0xA8: [642,-542,333,17,316], + 0xAC: [280,0,790,80,710], + 0xAE: [668,19,747,31,718], + 0xAF: [619,-566,333,11,323], + 0xB0: [689,-389,400,50,350], + 0xB1: [550,170,760,80,680], + 0xB4: [677,-506,333,78,302], + 0xB5: [449,262,681,80,641], + 0xB7: [310,-190,280,80,200], + 0xD7: [483,-17,627,80,547], + 0xF0: [728,20,546,32,504], + 0xF7: [520,20,760,80,680], + 0x131: [469,3,291,21,271], + 0x237: [469,283,234,-40,159], + 0x2C6: [676,-509,333,11,323], + 0x2C7: [676,-509,333,11,323], + 0x2D8: [671,-513,333,26,308], + 0x2D9: [642,-542,250,75,175], + 0x2DA: [692,-492,333,67,267], + 0x2DC: [645,-540,333,2,332], + 0x300: [712,-541,0,-385,-161], + 0x301: [712,-541,0,-338,-114], + 0x302: [700,-558,0,-424,-76], + 0x303: [682,-562,0,-421,-79], + 0x304: [637,-584,0,-405,-93], + 0x306: [695,-566,0,-431,-69], + 0x307: [660,-560,0,-300,-200], + 0x308: [660,-560,0,-399,-100], + 0x30A: [710,-510,0,-349,-149], + 0x30B: [718,-537,0,-367,-3], + 0x30C: [696,-554,0,-424,-76], + 0x338: [650,150,0,-413,-87], + 0x391: [700,3,759,6,747], + 0x392: [692,3,637,36,586], + 0x393: [692,3,550,24,538], + 0x394: [700,3,629,6,617], + 0x395: [692,3,628,36,586], + 0x396: [692,3,674,18,641], + 0x397: [692,3,836,24,812], + 0x398: [709,20,850,56,798], + 0x399: [692,3,341,24,317], + 0x39A: [692,3,712,23,720], + 0x39B: [700,3,735,-6,735], + 0x39C: [692,13,953,19,929], + 0x39D: [692,20,853,23,819], + 0x39E: [692,3,707,42,664], + 0x39F: [709,20,850,54,796], + 0x3A0: [692,3,836,24,812], + 0x3A1: [692,3,604,24,582], + 0x3A3: [692,3,710,45,668], + 0x3A4: [692,3,614,19,596], + 0x3A5: [705,3,647,3,648], + 0x3A6: [692,3,850,55,797], + 0x3A7: [700,3,656,10,644], + 0x3A8: [692,3,783,18,765], + 0x3A9: [709,3,839,38,801], + 0x3B1: [482,11,564,45,545], + 0x3B2: [711,277,611,105,553], + 0x3B3: [482,226,600,-14,572], + 0x3B4: [711,11,481,56,427], + 0x3B5: [484,11,466,57,432], + 0x3B6: [711,226,477,57,470], + 0x3B7: [482,276,552,4,478], + 0x3B8: [711,11,517,57,459], + 0x3B9: [482,9,299,88,297], + 0x3BA: [482,9,544,19,537], + 0x3BB: [711,12,597,7,593], + 0x3BC: [482,276,626,36,600], + 0x3BD: [482,12,524,-1,479], + 0x3BE: [711,226,479,56,471], + 0x3BF: [482,11,508,56,451], + 0x3C0: [493,11,711,48,688], + 0x3C1: [482,276,550,75,493], + 0x3C2: [482,226,496,46,460], + 0x3C3: [494,11,611,57,605], + 0x3C4: [493,11,587,33,558], + 0x3C5: [482,11,554,14,495], + 0x3C6: [482,276,670,56,612], + 0x3C7: [482,226,585,28,615], + 0x3C8: [646,276,678,5,631], + 0x3C9: [482,11,803,45,756], + 0x3D1: [711,11,581,15,549], + 0x3D5: [644,274,669,57,611], + 0x3D6: [548,11,803,45,756], + 0x3F0: [483,17,693,37,656], + 0x3F1: [482,276,562,74,505], + 0x3F4: [709,20,850,56,798], + 0x3F5: [482,11,513,57,479], + 0x2002: [0,0,500,0,0], + 0x2003: [0,0,1000,0,0], + 0x2004: [0,0,333,0,0], + 0x2005: [0,0,250,0,0], + 0x2006: [0,0,167,0,0], + 0x2009: [0,0,200,0,0], + 0x200A: [0,0,100,0,0], + 0x2013: [277,-219,500,0,500], + 0x2014: [277,-219,1000,0,1000], + 0x2016: [650,150,376,80,296], + 0x2018: [709,-446,278,45,233], + 0x2019: [709,-446,278,45,233], + 0x201C: [709,-446,500,51,449], + 0x201D: [709,-446,500,51,449], + 0x2020: [694,5,500,34,466], + 0x2021: [694,249,500,34,466], + 0x2026: [120,0,860,80,780], + 0x2032: [779,-446,293,60,233], + 0x2033: [779,-446,493,60,433], + 0x2034: [779,-446,693,60,633], + 0x2035: [779,-446,293,60,233], + 0x2044: [650,150,486,80,406], + 0x2057: [779,-446,893,60,833], + 0x20D7: [784,-544,0,-443,-57], + 0x210F: [733,9,500,10,471], + 0x2111: [686,27,554,28,533], + 0x2113: [712,20,379,40,339], + 0x2118: [545,186,711,80,631], + 0x211C: [686,27,828,27,826], + 0x2127: [691,21,839,38,801], + 0x2135: [723,19,663,40,623], + 0x2136: [729,29,552,40,512], + 0x2137: [740,18,489,40,448], + 0x2138: [719,16,522,40,482], + 0x2190: [400,-100,920,80,840], + 0x2191: [635,125,460,80,380], + 0x2192: [400,-100,920,80,840], + 0x2193: [625,135,460,80,380], + 0x2194: [400,-100,1005,80,925], + 0x2195: [673,172,460,80,380], + 0x2196: [522,36,719,80,639], + 0x2197: [522,36,719,80,639], + 0x2198: [536,22,719,80,639], + 0x2199: [536,22,719,80,639], + 0x219A: [400,-100,920,80,840], + 0x219B: [400,-100,920,80,840], + 0x219E: [400,-100,995,80,915], + 0x21A0: [400,-100,995,80,915], + 0x21A2: [400,-100,1005,80,925], + 0x21A3: [400,-100,1005,80,925], + 0x21A6: [400,-100,920,80,840], + 0x21A9: [490,-100,950,80,870], + 0x21AA: [490,-100,950,80,870], + 0x21AB: [490,-40,950,80,870], + 0x21AC: [490,-40,950,80,870], + 0x21AD: [400,-100,1005,80,925], + 0x21AE: [400,-100,1005,80,925], + 0x21B0: [573,72,530,80,450], + 0x21B1: [572,72,530,80,450], + 0x21B6: [543,-240,845,80,765], + 0x21B7: [543,-240,845,80,765], + 0x21BA: [568,30,720,80,640], + 0x21BB: [568,30,720,79,640], + 0x21BC: [400,-220,920,80,840], + 0x21BD: [280,-100,920,80,840], + 0x21BE: [635,125,340,80,260], + 0x21BF: [635,125,340,80,260], + 0x21C0: [400,-220,920,80,840], + 0x21C1: [280,-100,920,80,840], + 0x21C2: [625,135,340,80,260], + 0x21C3: [625,135,340,80,260], + 0x21C4: [570,70,930,80,850], + 0x21C6: [570,70,930,80,850], + 0x21C7: [570,70,920,80,840], + 0x21C8: [635,125,800,80,720], + 0x21C9: [570,70,920,80,840], + 0x21CA: [625,135,800,80,720], + 0x21CB: [510,10,929,80,849], + 0x21CC: [510,10,929,80,849], + 0x21CD: [550,50,920,80,840], + 0x21CE: [550,50,1005,80,925], + 0x21CF: [550,50,920,80,840], + 0x21D0: [450,-50,920,80,840], + 0x21D1: [635,125,560,80,480], + 0x21D2: [450,-50,920,80,840], + 0x21D3: [625,135,560,80,480], + 0x21D4: [450,-50,1005,80,925], + 0x21D5: [673,172,560,80,480], + 0x21DA: [525,25,920,80,840], + 0x21DB: [525,25,920,80,840], + 0x21DD: [400,-100,920,80,840], + 0x2200: [700,6,760,70,690], + 0x2201: [700,0,640,80,560], + 0x2202: [733,9,572,51,509], + 0x2203: [700,0,640,80,560], + 0x2204: [780,80,640,80,560], + 0x2205: [810,110,640,80,560], + 0x2207: [690,13,629,6,617], + 0x2208: [550,50,778,80,698], + 0x2209: [650,150,778,80,698], + 0x220B: [550,50,778,80,698], + 0x220D: [450,-50,578,80,498], + 0x2212: [280,-220,760,80,680], + 0x2213: [670,50,760,80,680], + 0x2214: [760,50,760,80,680], + 0x2215: [650,150,486,80,406], + 0x2216: [650,150,737,80,657], + 0x2217: [451,-49,542,80,462], + 0x2218: [410,-90,480,80,400], + 0x2219: [450,-50,560,80,480], + 0x221A: [660,130,690,120,720], + 0x221D: [440,-60,798,80,718], + 0x221E: [443,-57,943,80,863], + 0x2220: [651,0,803,80,723], + 0x2221: [651,103,803,80,723], + 0x2222: [529,29,737,80,657], + 0x2223: [650,150,208,80,128], + 0x2224: [650,150,380,80,300], + 0x2225: [650,150,376,80,296], + 0x2226: [650,150,536,80,456], + 0x2227: [556,50,760,80,680], + 0x2228: [550,56,760,80,680], + 0x2229: [568,50,760,80,680], + 0x222A: [550,68,760,80,680], + 0x222B: [796,296,634,80,554], + 0x2234: [447,-53,596,80,516], + 0x2235: [447,-53,596,80,516], + 0x223C: [337,-163,758,80,678], + 0x223D: [337,-163,758,80,678], + 0x2240: [549,49,351,80,271], + 0x2241: [457,-43,758,80,678], + 0x2242: [390,-53,760,80,680], + 0x2243: [447,-110,760,80,680], + 0x2245: [517,-40,760,80,680], + 0x2246: [535,20,760,80,680], + 0x2248: [447,-53,758,80,678], + 0x224A: [517,-40,760,80,680], + 0x224D: [435,-65,760,80,680], + 0x224E: [490,-10,760,80,680], + 0x224F: [490,-110,760,80,680], + 0x2250: [630,-110,760,80,680], + 0x2251: [630,130,760,80,680], + 0x2252: [630,130,760,80,680], + 0x2253: [630,130,760,80,680], + 0x2256: [390,-110,760,80,680], + 0x2257: [830,-110,760,80,680], + 0x225C: [867,-110,760,80,680], + 0x2260: [650,150,760,80,680], + 0x2261: [500,0,760,80,680], + 0x2264: [623,113,766,80,686], + 0x2265: [623,113,766,80,686], + 0x2266: [697,187,766,80,686], + 0x2267: [697,187,766,80,686], + 0x2268: [697,267,766,80,686], + 0x2269: [697,267,766,80,686], + 0x226A: [566,66,944,80,864], + 0x226B: [566,66,944,80,864], + 0x226C: [668,168,459,80,379], + 0x226E: [650,150,767,80,687], + 0x226F: [650,150,767,80,687], + 0x2270: [678,178,766,80,686], + 0x2271: [678,178,766,80,686], + 0x2272: [651,141,766,80,686], + 0x2273: [651,141,766,80,686], + 0x2276: [731,231,771,80,691], + 0x2277: [731,231,771,80,691], + 0x227A: [578,78,785,80,705], + 0x227B: [578,78,785,80,705], + 0x227C: [701,201,785,80,705], + 0x227D: [701,201,785,80,705], + 0x227E: [668,158,758,80,678], + 0x227F: [668,158,758,80,678], + 0x2280: [650,150,785,80,705], + 0x2281: [650,150,785,80,705], + 0x2282: [550,50,778,80,698], + 0x2283: [550,50,778,80,698], + 0x2286: [640,140,778,80,698], + 0x2287: [640,140,778,80,698], + 0x2288: [690,190,778,80,698], + 0x2289: [690,190,778,80,698], + 0x228A: [640,220,778,80,698], + 0x228B: [640,220,778,80,698], + 0x228E: [550,68,760,80,680], + 0x228F: [550,50,760,80,680], + 0x2290: [550,50,760,80,680], + 0x2291: [640,140,760,80,680], + 0x2292: [640,140,760,80,680], + 0x2293: [565,35,676,80,596], + 0x2294: [535,65,676,80,596], + 0x2295: [568,68,796,80,716], + 0x2296: [568,68,796,80,716], + 0x2297: [568,68,796,80,716], + 0x2298: [568,68,796,80,716], + 0x2299: [568,68,796,80,716], + 0x229A: [568,68,796,80,716], + 0x229B: [568,68,796,80,716], + 0x229D: [568,68,796,80,716], + 0x229E: [550,50,760,80,680], + 0x229F: [550,50,760,80,680], + 0x22A0: [550,50,760,80,680], + 0x22A1: [550,50,760,80,680], + 0x22A2: [650,0,760,80,680], + 0x22A3: [650,0,760,80,680], + 0x22A4: [650,0,760,80,680], + 0x22A5: [650,0,760,80,680], + 0x22A8: [650,150,760,80,680], + 0x22A9: [650,150,770,80,690], + 0x22AA: [650,150,950,80,870], + 0x22AC: [650,150,737,80,657], + 0x22AD: [650,150,880,80,800], + 0x22AE: [650,150,890,80,810], + 0x22AF: [650,150,890,80,810], + 0x22B2: [577,77,803,80,723], + 0x22B3: [577,77,803,80,723], + 0x22B4: [630,130,802,80,722], + 0x22B5: [630,130,802,80,722], + 0x22B8: [410,-90,920,80,840], + 0x22BA: [650,0,760,80,680], + 0x22BB: [580,80,760,80,680], + 0x22BC: [580,80,760,80,680], + 0x22C4: [463,-37,586,80,506], + 0x22C5: [310,-190,280,80,200], + 0x22C6: [470,-66,585,80,505], + 0x22C8: [483,-17,644,80,564], + 0x22C9: [483,-17,635,80,555], + 0x22CA: [483,-17,635,80,555], + 0x22CB: [483,-17,627,80,547], + 0x22CC: [483,-17,627,80,547], + 0x22CD: [447,-110,760,80,680], + 0x22CE: [550,49,786,80,706], + 0x22CF: [549,50,786,80,706], + 0x22D0: [550,50,778,80,698], + 0x22D1: [550,50,778,80,698], + 0x22D2: [568,50,760,80,680], + 0x22D3: [550,68,760,80,680], + 0x22D6: [563,63,767,80,687], + 0x22D7: [563,63,767,80,687], + 0x22D8: [566,66,1279,80,1199], + 0x22D9: [566,66,1279,80,1199], + 0x22DA: [844,344,766,80,686], + 0x22DB: [844,344,766,80,686], + 0x22DE: [701,201,785,80,705], + 0x22DF: [701,201,785,80,705], + 0x22E0: [731,231,785,80,705], + 0x22E1: [731,231,785,80,705], + 0x22E6: [651,201,766,80,686], + 0x22E7: [651,201,766,80,686], + 0x22E8: [668,218,758,80,678], + 0x22E9: [668,218,758,80,678], + 0x22EA: [650,150,803,80,723], + 0x22EB: [650,150,803,80,723], + 0x22EC: [690,190,802,80,722], + 0x22ED: [690,190,802,80,722], + 0x22EE: [630,130,280,80,200], + 0x22EF: [310,-190,860,80,780], + 0x22F1: [536,36,733,80,653], + 0x2308: [670,150,410,120,330], + 0x2309: [670,150,410,80,290], + 0x230A: [650,170,410,120,330], + 0x230B: [650,170,410,80,290], + 0x2322: [399,-101,996,80,916], + 0x2323: [399,-101,996,80,916], + 0x23B4: [771,-646,367,0,367], + 0x23B5: [-175,300,367,0,367], + 0x23D0: [516,0,220,80,140], + 0x23DC: [746,-629,528,0,528], + 0x23DD: [-159,276,528,0,528], + 0x23DE: [777,-615,540,0,540], + 0x23DF: [-145,307,540,0,540], + 0x23E0: [726,-577,560,0,560], + 0x23E1: [-107,256,560,0,560], + 0x250C: [280,150,600,270,600], + 0x2510: [280,150,600,0,330], + 0x2514: [650,-220,600,270,600], + 0x2518: [650,-220,600,0,330], + 0x25A0: [550,50,760,80,680], + 0x25A1: [550,50,760,80,680], + 0x25B2: [689,-8,947,80,867], + 0x25B3: [689,-8,947,80,867], + 0x25B6: [643,143,841,80,761], + 0x25BC: [492,189,947,80,867], + 0x25BD: [492,189,947,80,867], + 0x25C0: [643,143,841,80,761], + 0x25CA: [576,76,595,80,515], + 0x25EF: [668,168,996,80,916], + 0x2660: [668,0,800,80,720], + 0x2661: [666,0,760,80,680], + 0x2662: [670,0,746,80,666], + 0x2663: [668,0,842,80,762], + 0x266D: [650,38,470,80,390], + 0x266E: [650,150,440,80,360], + 0x266F: [684,184,560,80,480], + 0x2713: [650,0,860,80,780], + 0x2720: [662,6,828,80,748], + 0x27E8: [658,158,391,80,311], + 0x27E9: [658,158,391,80,311], + 0x27EE: [664,164,334,120,254], + 0x27EF: [664,164,334,80,214], + 0x27F5: [400,-100,1370,80,1290], + 0x27F6: [400,-100,1370,80,1290], + 0x27F7: [400,-100,1455,80,1375], + 0x27F8: [450,-50,1370,80,1290], + 0x27F9: [450,-50,1370,80,1290], + 0x27FA: [450,-50,1455,80,1375], + 0x27FC: [400,-100,1370,80,1290], + 0x2A3F: [692,3,836,24,812], + 0x2A7D: [662,162,767,80,687], + 0x2A7E: [662,162,767,80,687], + 0x2A85: [721,211,766,80,686], + 0x2A86: [721,211,766,80,686], + 0x2A87: [658,158,766,80,686], + 0x2A88: [658,158,766,80,686], + 0x2A89: [721,271,766,80,686], + 0x2A8A: [721,271,766,80,686], + 0x2A8B: [919,419,766,80,686], + 0x2A8C: [919,419,766,80,686], + 0x2A95: [662,162,767,80,687], + 0x2A96: [662,162,767,80,687], + 0x2AAF: [668,158,785,80,705], + 0x2AB0: [668,158,785,80,705] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Main"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Marks/Regular/Main.js new file mode 100644 index 0000000..c6bc24a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Marks/Regular/Main.js @@ -0,0 +1,107 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'GyrePagellaMathJax_Marks', + testString: '\u00A0\u02DB\u02DD\u0305\u0309\u030F\u0311\u0323\u0326\u032C\u032D\u032E\u032F\u0330\u0331', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2DB: [15,250,313,49,265], + 0x2DD: [683,-502,380,73,437], + 0x305: [646,-598,0,-416,-83], + 0x309: [721,-540,0,-337,-162], + 0x30F: [718,-537,0,-497,-133], + 0x311: [706,-577,0,-431,-69], + 0x323: [-93,193,0,-300,-200], + 0x326: [-77,271,0,-347,-205], + 0x32C: [-60,202,0,-424,-76], + 0x32D: [-70,212,0,-424,-76], + 0x32E: [-60,189,0,-431,-69], + 0x32F: [-78,207,0,-431,-69], + 0x330: [-78,198,0,-421,-79], + 0x331: [-116,169,0,-405,-93], + 0x332: [-60,108,0,-416,-83], + 0x333: [-60,216,0,-416,-83], + 0x33F: [754,-598,0,-416,-83], + 0x2000: [0,0,500,0,0], + 0x2001: [0,0,1000,0,0], + 0x2007: [0,0,500,0,0], + 0x2008: [0,0,250,0,0], + 0x200B: [0,0,0,0,0], + 0x200C: [0,0,0,0,0], + 0x200D: [0,0,0,0,0], + 0x2010: [287,-215,333,17,312], + 0x2012: [375,-315,660,80,580], + 0x2015: [280,-220,1160,80,1080], + 0x2017: [-60,216,493,80,413], + 0x201A: [110,153,278,22,210], + 0x201E: [110,153,500,51,449], + 0x2022: [450,-50,560,80,480], + 0x202F: [0,0,200,0,0], + 0x2030: [709,20,1000,63,961], + 0x2031: [709,20,1323,63,1284], + 0x2036: [779,-446,493,60,433], + 0x2037: [779,-446,693,60,633], + 0x2039: [428,-71,331,66,265], + 0x203A: [428,-71,331,66,265], + 0x203B: [534,34,606,19,587], + 0x203D: [734,5,444,43,395], + 0x2052: [692,0,500,34,466], + 0x205F: [0,0,222,0,0], + 0x2060: [0,0,0,0,0], + 0x2061: [660,160,940,60,880], + 0x2062: [0,0,0,0,0], + 0x2063: [0,0,0,0,0], + 0x2064: [0,0,0,0,0], + 0x20D0: [784,-640,0,-442,-58], + 0x20D1: [784,-640,0,-442,-58], + 0x20D2: [650,150,0,-274,-226], + 0x20D3: [500,0,0,-280,-220], + 0x20D4: [862,-639,0,-453,-47], + 0x20D5: [862,-639,0,-453,-47], + 0x20D6: [784,-544,0,-443,-57], + 0x20D8: [410,-90,0,-410,-90], + 0x20DB: [672,-572,0,-520,20], + 0x20DC: [672,-572,0,-630,130], + 0x20DD: [668,168,0,-668,168], + 0x20DE: [650,150,0,-650,150], + 0x20DF: [851,351,0,-851,351], + 0x20E1: [784,-544,0,-479,-21], + 0x20E4: [698,213,0,-776,276], + 0x20E5: [650,150,0,-413,-87], + 0x20E6: [650,150,0,-358,-142], + 0x20E8: [-60,160,0,-520,20], + 0x20E9: [771,-646,0,-433,-66], + 0x20EA: [400,-100,0,-630,130], + 0x20EB: [650,150,0,-502,2], + 0x20EC: [-170,314,0,-442,-58], + 0x20ED: [-170,314,0,-442,-58], + 0x20EE: [-74,314,0,-443,-57], + 0x20EF: [-74,314,0,-443,-57], + 0x20F0: [769,-511,0,-367,-122], + 0x2E18: [499,240,444,49,401], + 0x3016: [670,170,474,80,394], + 0x3017: [670,170,474,80,394] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Marks"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Marks/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Misc/Regular/Main.js new file mode 100644 index 0000000..3f7d236 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Misc/Regular/Main.js @@ -0,0 +1,40 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'GyrePagellaMathJax_Misc', + testString: '\u00A0\u20A1\u20A4\u20A6\u20A9\u20AB\u20AC\u20B1\u20B2\u27A1', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x20A1: [775,83,709,22,670], + 0x20A4: [694,13,500,12,478], + 0x20A6: [692,20,831,17,813], + 0x20A9: [700,9,1000,8,984], + 0x20AB: [692,34,542,40,502], + 0x20AC: [689,20,500,-2,501], + 0x20B1: [692,3,604,22,580], + 0x20B2: [775,83,763,22,728], + 0x27A1: [450,-50,995,80,915] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Misc"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Misc/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Monospace/Regular/Main.js new file mode 100644 index 0000000..6d68ccf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Monospace/Regular/Main.js @@ -0,0 +1,93 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'GyrePagellaMathJax_Monospace', + testString: '\u00A0\uD835\uDE70\uD835\uDE71\uD835\uDE72\uD835\uDE73\uD835\uDE74\uD835\uDE75\uD835\uDE76\uD835\uDE77\uD835\uDE78\uD835\uDE79\uD835\uDE7A\uD835\uDE7B\uD835\uDE7C\uD835\uDE7D', + 0x20: [0,0,350,0,0], + 0xA0: [0,0,350,0,0], + 0x1D670: [625,0,350,14,336], + 0x1D671: [611,0,350,13,326], + 0x1D672: [623,12,350,23,327], + 0x1D673: [611,0,350,10,328], + 0x1D674: [611,0,350,15,340], + 0x1D675: [611,0,350,17,331], + 0x1D676: [623,12,350,21,335], + 0x1D677: [611,0,350,12,338], + 0x1D678: [611,0,350,53,297], + 0x1D679: [611,12,350,48,322], + 0x1D67A: [611,0,350,13,334], + 0x1D67B: [611,0,350,19,330], + 0x1D67C: [611,0,350,7,343], + 0x1D67D: [611,0,350,15,334], + 0x1D67E: [623,12,350,34,316], + 0x1D67F: [611,0,350,15,325], + 0x1D680: [623,143,350,34,316], + 0x1D681: [611,12,350,12,353], + 0x1D682: [623,12,350,31,319], + 0x1D683: [611,0,350,13,336], + 0x1D684: [611,12,350,0,350], + 0x1D685: [611,9,350,8,342], + 0x1D686: [611,9,350,3,347], + 0x1D687: [611,0,350,14,335], + 0x1D688: [611,0,350,8,342], + 0x1D689: [611,0,350,28,325], + 0x1D68A: [435,6,350,24,345], + 0x1D68B: [611,6,350,5,329], + 0x1D68C: [435,6,350,47,314], + 0x1D68D: [611,6,350,21,344], + 0x1D68E: [435,6,350,34,314], + 0x1D68F: [617,0,350,24,295], + 0x1D690: [438,236,350,15,345], + 0x1D691: [611,0,350,5,344], + 0x1D692: [601,0,350,52,303], + 0x1D693: [601,235,350,28,247], + 0x1D694: [611,0,350,10,343], + 0x1D695: [611,0,350,39,311], + 0x1D696: [431,0,350,1,350], + 0x1D697: [431,0,350,5,344], + 0x1D698: [435,6,350,36,314], + 0x1D699: [431,229,350,5,329], + 0x1D69A: [431,229,350,24,362], + 0x1D69B: [431,0,350,19,329], + 0x1D69C: [435,6,350,45,309], + 0x1D69D: [552,6,350,12,303], + 0x1D69E: [425,6,350,5,344], + 0x1D69F: [425,5,350,11,339], + 0x1D6A0: [425,5,350,5,344], + 0x1D6A1: [425,0,350,14,335], + 0x1D6A2: [425,235,350,12,339], + 0x1D6A3: [425,0,350,17,321], + 0x1D7F6: [623,12,350,30,320], + 0x1D7F7: [623,0,350,69,298], + 0x1D7F8: [623,0,350,31,319], + 0x1D7F9: [623,12,350,25,325], + 0x1D7FA: [625,0,350,15,334], + 0x1D7FB: [611,12,350,31,319], + 0x1D7FC: [623,12,350,32,317], + 0x1D7FD: [626,12,350,25,325], + 0x1D7FE: [623,12,350,25,325], + 0x1D7FF: [623,12,350,32,317] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Monospace"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Monospace/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..7341222 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js @@ -0,0 +1,1474 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'GyrePagellaMathJax_NonUnicode', + testString: '\u00A0\uE000\uE001\uE002\uE003\uE004\uE005\uE006\uE007\uE008\uE009\uE00A\uE00B\uE00C\uE00D', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xE000: [728,12,876,23,869], + 0xE001: [-77,271,333,69,211], + 0xE002: [703,-522,333,79,254], + 0xE003: [668,19,747,31,718], + 0xE004: [692,0,580,40,540], + 0xE005: [277,-219,750,0,750], + 0xE006: [277,-219,667,0,667], + 0xE007: [749,57,1000,21,978], + 0xE008: [683,-502,380,-57,307], + 0xE009: [-93,193,250,75,175], + 0xE00A: [-116,169,333,11,323], + 0xE00B: [80,79,606,51,555], + 0xE00C: [709,20,1102,40,1062], + 0xE00D: [321,0,361,7,323], + 0xE00E: [480,-34,500,16,484], + 0xE00F: [854,165,786,22,764], + 0xE010: [614,165,546,32,514], + 0xE011: [700,3,868,26,834], + 0xE012: [700,3,950,38,905], + 0xE013: [469,12,565,45,523], + 0xE014: [469,12,625,57,571], + 0xE015: [888,3,868,26,834], + 0xE016: [888,3,950,38,905], + 0xE017: [677,12,565,45,523], + 0xE018: [677,12,625,57,571], + 0xE019: [884,3,868,26,834], + 0xE01A: [884,3,950,38,905], + 0xE01B: [671,12,565,45,523], + 0xE01C: [671,12,625,57,571], + 0xE01D: [1043,3,868,26,834], + 0xE01E: [1043,3,950,38,905], + 0xE01F: [800,12,565,45,523], + 0xE020: [800,12,625,57,571], + 0xE021: [884,193,868,26,834], + 0xE022: [884,193,950,38,905], + 0xE023: [671,193,565,45,523], + 0xE024: [671,193,625,57,571], + 0xE025: [1043,3,868,26,834], + 0xE026: [1043,3,950,38,905], + 0xE027: [800,12,565,45,523], + 0xE028: [800,12,625,57,571], + 0xE029: [1045,3,868,26,834], + 0xE02A: [1045,3,950,38,905], + 0xE02B: [802,12,565,45,523], + 0xE02C: [802,12,625,57,571], + 0xE02D: [1015,3,868,26,834], + 0xE02E: [1015,3,950,38,905], + 0xE02F: [772,12,565,45,523], + 0xE030: [772,12,625,57,571], + 0xE031: [887,3,868,26,834], + 0xE032: [887,3,950,38,905], + 0xE033: [676,12,565,45,523], + 0xE034: [676,12,625,57,571], + 0xE035: [1046,3,868,26,834], + 0xE036: [1046,3,950,38,905], + 0xE037: [803,12,565,45,523], + 0xE038: [803,12,625,57,571], + 0xE039: [887,193,868,26,834], + 0xE03A: [887,193,950,38,905], + 0xE03B: [676,193,565,45,523], + 0xE03C: [676,193,625,57,571], + 0xE03D: [1046,3,868,26,834], + 0xE03E: [1046,3,950,38,905], + 0xE03F: [803,12,565,45,523], + 0xE040: [803,12,625,57,571], + 0xE041: [1088,3,868,26,834], + 0xE042: [1088,3,950,38,905], + 0xE043: [845,12,565,45,523], + 0xE044: [845,12,625,57,571], + 0xE045: [1022,3,868,26,834], + 0xE046: [1022,3,950,38,905], + 0xE047: [779,12,565,45,523], + 0xE048: [779,12,625,57,571], + 0xE049: [677,-506,383,95,339], + 0xE04A: [677,-506,430,111,373], + 0xE04B: [869,3,868,26,834], + 0xE04C: [869,3,950,38,905], + 0xE04D: [642,12,565,45,523], + 0xE04E: [642,12,625,57,571], + 0xE04F: [700,193,868,26,834], + 0xE050: [700,193,950,38,905], + 0xE051: [469,193,565,45,523], + 0xE052: [469,193,625,57,571], + 0xE053: [692,3,1049,-1,1000], + 0xE054: [692,3,1144,8,1082], + 0xE055: [469,20,846,43,808], + 0xE056: [469,20,927,55,876], + 0xE057: [888,3,868,26,834], + 0xE058: [888,3,950,38,905], + 0xE059: [677,12,565,45,523], + 0xE05A: [677,12,625,57,571], + 0xE05B: [946,3,868,26,834], + 0xE05C: [946,3,950,38,905], + 0xE05D: [703,12,565,45,523], + 0xE05E: [703,12,625,57,571], + 0xE05F: [846,3,868,26,834], + 0xE060: [846,3,950,38,905], + 0xE061: [619,12,565,45,523], + 0xE062: [619,12,625,57,571], + 0xE063: [689,20,868,57,831], + 0xE064: [689,20,950,70,901], + 0xE065: [700,250,868,26,834], + 0xE066: [700,250,950,38,905], + 0xE067: [469,250,565,45,523], + 0xE068: [469,250,625,57,571], + 0xE069: [939,3,868,26,834], + 0xE06A: [939,3,950,38,905], + 0xE06B: [692,12,565,45,523], + 0xE06C: [692,12,625,57,571], + 0xE06D: [694,20,834,36,799], + 0xE06E: [694,20,914,48,867], + 0xE06F: [872,3,868,26,834], + 0xE070: [872,3,950,38,905], + 0xE071: [645,12,565,45,523], + 0xE072: [645,12,625,57,571], + 0xE073: [692,3,686,38,638], + 0xE074: [692,3,755,50,694], + 0xE075: [726,12,623,-6,564], + 0xE076: [726,12,687,2,614], + 0xE077: [671,-513,383,38,346], + 0xE078: [671,-513,430,50,380], + 0xE079: [726,184,681,310,371], + 0xE07A: [726,184,749,342,407], + 0xE07B: [709,20,793,34,740], + 0xE07C: [709,20,870,46,804], + 0xE07D: [469,20,504,38,460], + 0xE07E: [469,20,559,50,503], + 0xE07F: [888,20,793,34,740], + 0xE080: [888,20,870,46,804], + 0xE081: [677,20,504,38,460], + 0xE082: [677,20,559,50,503], + 0xE083: [676,-509,383,22,362], + 0xE084: [676,-509,430,33,398], + 0xE085: [887,20,793,34,740], + 0xE086: [887,20,870,46,804], + 0xE087: [676,20,504,38,460], + 0xE088: [676,20,559,50,503], + 0xE089: [709,225,793,34,740], + 0xE08A: [709,225,870,46,804], + 0xE08B: [469,225,504,38,460], + 0xE08C: [469,225,559,50,503], + 0xE08D: [10,225,383,115,341], + 0xE08E: [10,225,430,132,376], + 0xE08F: [562,101,565,76,498], + 0xE090: [562,101,625,91,544], + 0xE091: [676,-509,383,22,362], + 0xE092: [676,-509,430,33,398], + 0xE093: [456,5,292,82,208], + 0xE094: [456,5,332,97,233], + 0xE095: [123,155,292,27,248], + 0xE096: [123,155,332,39,275], + 0xE097: [692,3,864,34,829], + 0xE098: [692,3,946,46,899], + 0xE099: [726,12,686,48,641], + 0xE09A: [726,12,755,61,697], + 0xE09B: [887,3,864,34,829], + 0xE09C: [887,3,946,46,899], + 0xE09D: [726,12,686,48,749], + 0xE09E: [726,12,755,61,813], + 0xE09F: [692,3,864,25,829], + 0xE0A0: [692,3,946,36,899], + 0xE0A1: [726,12,686,48,641], + 0xE0A2: [726,12,755,61,697], + 0xE0A3: [642,-542,383,29,354], + 0xE0A4: [642,-542,430,40,390], + 0xE0A5: [731,116,565,43,523], + 0xE0A6: [731,116,625,55,571], + 0xE0A7: [642,-542,292,92,201], + 0xE0A8: [642,-542,332,108,225], + 0xE0A9: [-93,193,292,92,201], + 0xE0AA: [-93,193,332,108,225], + 0xE0AB: [692,3,686,34,633], + 0xE0AC: [692,3,755,46,689], + 0xE0AD: [469,20,542,38,498], + 0xE0AE: [469,20,600,50,544], + 0xE0AF: [888,3,686,34,633], + 0xE0B0: [888,3,755,46,689], + 0xE0B1: [677,20,542,38,498], + 0xE0B2: [677,20,600,50,544], + 0xE0B3: [887,3,686,34,633], + 0xE0B4: [887,3,755,46,689], + 0xE0B5: [676,20,542,38,498], + 0xE0B6: [676,20,600,50,544], + 0xE0B7: [887,3,686,34,633], + 0xE0B8: [887,3,755,46,689], + 0xE0B9: [676,20,542,38,498], + 0xE0BA: [676,20,600,50,544], + 0xE0BB: [1046,3,686,34,633], + 0xE0BC: [1046,3,755,46,689], + 0xE0BD: [803,20,542,38,498], + 0xE0BE: [803,20,600,50,544], + 0xE0BF: [887,193,686,34,633], + 0xE0C0: [887,193,755,46,689], + 0xE0C1: [676,193,542,38,498], + 0xE0C2: [676,193,600,50,544], + 0xE0C3: [1046,3,686,34,633], + 0xE0C4: [1046,3,755,46,689], + 0xE0C5: [803,20,542,38,498], + 0xE0C6: [803,20,600,50,544], + 0xE0C7: [1088,3,686,34,633], + 0xE0C8: [1088,3,755,46,689], + 0xE0C9: [845,20,542,38,498], + 0xE0CA: [845,20,600,50,544], + 0xE0CB: [1022,3,686,34,633], + 0xE0CC: [1022,3,755,46,689], + 0xE0CD: [779,20,542,38,498], + 0xE0CE: [779,20,600,50,544], + 0xE0CF: [869,3,686,34,633], + 0xE0D0: [869,3,755,46,689], + 0xE0D1: [642,20,542,38,498], + 0xE0D2: [642,20,600,50,544], + 0xE0D3: [869,3,686,34,633], + 0xE0D4: [869,3,755,46,689], + 0xE0D5: [642,20,542,38,498], + 0xE0D6: [642,20,600,50,544], + 0xE0D7: [692,193,686,34,633], + 0xE0D8: [692,193,755,46,689], + 0xE0D9: [469,193,542,38,498], + 0xE0DA: [469,193,600,50,544], + 0xE0DB: [888,3,686,34,633], + 0xE0DC: [888,3,755,46,689], + 0xE0DD: [677,20,542,38,498], + 0xE0DE: [677,20,600,50,544], + 0xE0DF: [946,3,686,34,633], + 0xE0E0: [946,3,755,46,689], + 0xE0E1: [703,20,542,38,498], + 0xE0E2: [703,20,600,50,544], + 0xE0E3: [689,20,565,43,516], + 0xE0E4: [689,20,625,55,563], + 0xE0E5: [846,3,686,34,633], + 0xE0E6: [846,3,755,46,689], + 0xE0E7: [619,20,542,38,498], + 0xE0E8: [619,20,600,50,544], + 0xE0E9: [692,187,926,29,896], + 0xE0EA: [692,187,1012,40,971], + 0xE0EB: [469,167,654,17,548], + 0xE0EC: [469,167,721,27,598], + 0xE0ED: [692,250,686,34,633], + 0xE0EE: [692,250,755,46,689], + 0xE0EF: [469,250,542,38,498], + 0xE0F0: [469,250,600,50,544], + 0xE0F1: [692,3,864,25,829], + 0xE0F2: [692,3,946,36,899], + 0xE0F3: [728,20,615,45,559], + 0xE0F4: [728,20,679,57,610], + 0xE0F5: [872,3,686,34,633], + 0xE0F6: [872,3,755,46,689], + 0xE0F7: [645,20,542,38,498], + 0xE0F8: [645,20,600,50,544], + 0xE0F9: [689,20,565,8,556], + 0xE0FA: [689,20,625,18,606], + 0xE0FB: [694,5,323,98,225], + 0xE0FC: [694,5,365,115,250], + 0xE0FD: [454,245,323,98,225], + 0xE0FE: [454,245,365,115,250], + 0xE0FF: [692,3,626,34,594], + 0xE100: [692,3,691,46,647], + 0xE101: [728,3,383,35,382], + 0xE102: [728,3,430,47,419], + 0xE103: [728,12,975,35,957], + 0xE104: [728,12,1065,47,1037], + 0xE105: [728,3,699,35,698], + 0xE106: [728,3,769,47,758], + 0xE107: [728,3,998,35,965], + 0xE108: [728,3,1089,47,1045], + 0xE109: [728,3,1001,35,969], + 0xE10A: [728,3,1093,47,1050], + 0xE10B: [728,3,679,35,650], + 0xE10C: [728,3,748,47,707], + 0xE10D: [689,20,565,24,510], + 0xE10E: [689,20,625,35,557], + 0xE10F: [728,3,683,35,653], + 0xE110: [728,3,751,47,710], + 0xE111: [694,3,565,12,524], + 0xE112: [694,3,625,22,572], + 0xE113: [709,20,852,34,804], + 0xE114: [709,20,933,46,872], + 0xE115: [469,283,626,45,603], + 0xE116: [469,283,691,57,656], + 0xE117: [884,20,852,34,804], + 0xE118: [884,20,933,46,872], + 0xE119: [671,283,626,45,603], + 0xE11A: [671,283,691,57,656], + 0xE11B: [709,271,852,34,804], + 0xE11C: [709,271,933,46,872], + 0xE11D: [709,283,626,45,603], + 0xE11E: [709,283,691,57,656], + 0xE11F: [709,20,1221,54,1168], + 0xE120: [709,20,1329,67,1263], + 0xE121: [731,9,626,35,576], + 0xE122: [731,9,691,47,627], + 0xE123: [677,-506,383,44,288], + 0xE124: [677,-506,430,56,318], + 0xE125: [428,-71,565,64,500], + 0xE126: [428,-71,625,78,546], + 0xE127: [428,-71,565,64,500], + 0xE128: [428,-71,625,78,546], + 0xE129: [428,-71,381,82,299], + 0xE12A: [428,-71,427,97,330], + 0xE12B: [428,-71,381,82,299], + 0xE12C: [428,-71,427,97,330], + 0xE12D: [692,3,927,34,893], + 0xE12E: [692,3,1013,46,968], + 0xE12F: [726,3,654,17,633], + 0xE130: [726,3,721,27,689], + 0xE131: [703,-522,383,96,287], + 0xE132: [703,-522,430,112,317], + 0xE133: [683,-502,434,90,486], + 0xE134: [683,-502,485,105,531], + 0xE135: [287,-215,383,29,350], + 0xE136: [287,-215,430,40,385], + 0xE137: [692,3,387,34,353], + 0xE138: [692,3,434,46,389], + 0xE139: [642,3,337,33,305], + 0xE13A: [642,3,380,45,337], + 0xE13B: [888,3,387,34,353], + 0xE13C: [888,3,434,46,389], + 0xE13D: [677,3,333,33,316], + 0xE13E: [677,3,376,45,349], + 0xE13F: [887,3,387,10,377], + 0xE140: [887,3,434,20,414], + 0xE141: [676,3,333,-1,339], + 0xE142: [676,3,376,8,373], + 0xE143: [869,3,387,32,358], + 0xE144: [869,3,434,43,393], + 0xE145: [642,3,333,6,332], + 0xE146: [642,3,376,15,365], + 0xE147: [869,3,387,34,353], + 0xE148: [869,3,434,46,389], + 0xE149: [692,193,387,34,353], + 0xE14A: [692,193,434,46,389], + 0xE14B: [642,193,333,33,305], + 0xE14C: [642,193,376,45,337], + 0xE14D: [888,3,387,34,353], + 0xE14E: [888,3,434,46,389], + 0xE14F: [677,3,333,22,305], + 0xE150: [677,3,376,33,337], + 0xE151: [946,3,387,34,353], + 0xE152: [946,3,434,46,389], + 0xE153: [703,3,333,33,305], + 0xE154: [703,3,376,45,337], + 0xE155: [692,195,809,54,756], + 0xE156: [692,195,887,67,820], + 0xE157: [642,283,575,54,530], + 0xE158: [642,283,636,67,578], + 0xE159: [846,3,387,25,365], + 0xE15A: [846,3,434,36,401], + 0xE15B: [619,3,333,-1,339], + 0xE15C: [619,3,376,8,373], + 0xE15D: [692,250,387,34,353], + 0xE15E: [692,250,434,46,389], + 0xE15F: [642,250,337,33,305], + 0xE160: [642,250,380,45,337], + 0xE161: [872,3,387,15,375], + 0xE162: [872,3,434,26,412], + 0xE163: [645,3,333,-11,349], + 0xE164: [645,3,376,-2,384], + 0xE165: [692,195,383,-6,349], + 0xE166: [692,195,430,2,384], + 0xE167: [642,283,275,-34,192], + 0xE168: [642,283,314,-27,215], + 0xE169: [692,3,811,34,794], + 0xE16A: [692,3,889,46,861], + 0xE16B: [726,12,626,33,608], + 0xE16C: [726,12,691,45,662], + 0xE16D: [692,271,811,34,794], + 0xE16E: [692,271,889,46,861], + 0xE16F: [726,271,626,33,608], + 0xE170: [726,271,691,45,662], + 0xE171: [692,3,686,34,649], + 0xE172: [692,3,755,46,706], + 0xE173: [726,3,337,33,305], + 0xE174: [726,3,380,45,337], + 0xE175: [888,3,686,34,649], + 0xE176: [888,3,755,46,706], + 0xE177: [922,3,337,33,305], + 0xE178: [922,3,380,45,337], + 0xE179: [692,3,686,34,649], + 0xE17A: [692,3,755,46,706], + 0xE17B: [726,3,337,33,413], + 0xE17C: [726,3,380,45,453], + 0xE17D: [692,271,686,34,649], + 0xE17E: [692,271,755,46,706], + 0xE17F: [726,271,337,33,305], + 0xE180: [726,271,380,45,337], + 0xE181: [728,3,383,35,382], + 0xE182: [728,3,430,47,419], + 0xE183: [692,3,686,34,649], + 0xE184: [692,3,755,46,706], + 0xE185: [726,3,337,10,333], + 0xE186: [726,3,380,20,366], + 0xE187: [692,13,1051,27,1019], + 0xE188: [692,13,1147,39,1103], + 0xE189: [469,3,982,27,957], + 0xE18A: [469,3,1073,39,1037], + 0xE18B: [619,-566,383,22,362], + 0xE18C: [619,-566,430,33,398], + 0xE18D: [449,262,762,97,709], + 0xE18E: [449,262,837,114,770], + 0xE18F: [692,20,926,29,896], + 0xE190: [692,20,1012,40,971], + 0xE191: [469,3,654,17,633], + 0xE192: [469,3,721,27,689], + 0xE193: [888,20,926,29,896], + 0xE194: [888,20,1012,40,971], + 0xE195: [677,3,654,17,633], + 0xE196: [677,3,721,27,689], + 0xE197: [887,20,926,29,896], + 0xE198: [887,20,1012,40,971], + 0xE199: [676,3,654,17,633], + 0xE19A: [676,3,721,27,689], + 0xE19B: [692,271,926,29,896], + 0xE19C: [692,271,1012,40,971], + 0xE19D: [469,271,654,17,633], + 0xE19E: [469,271,721,27,689], + 0xE19F: [689,20,565,32,508], + 0xE1A0: [689,20,625,43,555], + 0xE1A1: [872,20,926,29,896], + 0xE1A2: [872,20,1012,40,971], + 0xE1A3: [645,3,654,17,633], + 0xE1A4: [645,3,721,27,689], + 0xE1A5: [684,0,565,14,550], + 0xE1A6: [684,0,625,25,599], + 0xE1A7: [709,20,877,34,843], + 0xE1A8: [709,20,960,46,914], + 0xE1A9: [469,20,615,45,570], + 0xE1AA: [469,20,679,57,621], + 0xE1AB: [888,20,877,34,843], + 0xE1AC: [888,20,960,46,914], + 0xE1AD: [677,20,615,45,570], + 0xE1AE: [677,20,679,57,621], + 0xE1AF: [887,20,877,34,843], + 0xE1B0: [887,20,960,46,914], + 0xE1B1: [676,20,615,45,570], + 0xE1B2: [676,20,679,57,621], + 0xE1B3: [1046,20,877,34,843], + 0xE1B4: [1046,20,960,46,914], + 0xE1B5: [803,20,615,45,570], + 0xE1B6: [803,20,679,57,621], + 0xE1B7: [887,193,877,34,843], + 0xE1B8: [887,193,960,46,914], + 0xE1B9: [676,193,615,45,570], + 0xE1BA: [676,193,679,57,621], + 0xE1BB: [1046,20,877,34,843], + 0xE1BC: [1046,20,960,46,914], + 0xE1BD: [803,20,615,45,570], + 0xE1BE: [803,20,679,57,621], + 0xE1BF: [1088,20,877,34,843], + 0xE1C0: [1088,20,960,46,914], + 0xE1C1: [845,20,615,45,570], + 0xE1C2: [845,20,679,57,621], + 0xE1C3: [1022,20,877,34,843], + 0xE1C4: [1022,20,960,46,914], + 0xE1C5: [779,20,615,45,570], + 0xE1C6: [779,20,679,57,621], + 0xE1C7: [869,20,877,34,843], + 0xE1C8: [869,20,960,46,914], + 0xE1C9: [642,20,615,45,570], + 0xE1CA: [642,20,679,57,621], + 0xE1CB: [709,193,877,34,843], + 0xE1CC: [709,193,960,46,914], + 0xE1CD: [469,193,615,45,570], + 0xE1CE: [469,193,679,57,621], + 0xE1CF: [709,20,1108,34,1059], + 0xE1D0: [709,20,1208,46,1146], + 0xE1D1: [469,20,921,45,882], + 0xE1D2: [469,20,1008,57,956], + 0xE1D3: [15,250,361,63,299], + 0xE1D4: [15,250,406,77,330], + 0xE1D5: [888,20,877,34,843], + 0xE1D6: [888,20,960,46,914], + 0xE1D7: [677,20,615,45,570], + 0xE1D8: [677,20,679,57,621], + 0xE1D9: [946,20,877,34,843], + 0xE1DA: [946,20,960,46,914], + 0xE1DB: [703,20,615,45,570], + 0xE1DC: [703,20,679,57,621], + 0xE1DD: [781,20,877,34,843], + 0xE1DE: [781,20,960,46,914], + 0xE1DF: [532,20,615,45,628], + 0xE1E0: [532,20,679,57,683], + 0xE1E1: [888,20,877,34,843], + 0xE1E2: [888,20,960,46,914], + 0xE1E3: [677,20,615,45,628], + 0xE1E4: [677,20,679,57,683], + 0xE1E5: [781,193,877,34,843], + 0xE1E6: [781,193,960,46,914], + 0xE1E7: [532,193,615,45,628], + 0xE1E8: [532,193,679,57,683], + 0xE1E9: [888,20,877,34,843], + 0xE1EA: [888,20,960,46,914], + 0xE1EB: [677,20,615,45,628], + 0xE1EC: [677,20,679,57,683], + 0xE1ED: [946,20,877,34,843], + 0xE1EE: [946,20,960,46,914], + 0xE1EF: [703,20,615,45,628], + 0xE1F0: [703,20,679,57,683], + 0xE1F1: [872,20,877,34,843], + 0xE1F2: [872,20,960,46,914], + 0xE1F3: [645,20,615,45,628], + 0xE1F4: [645,20,679,57,683], + 0xE1F5: [888,20,877,34,843], + 0xE1F6: [888,20,960,46,914], + 0xE1F7: [683,20,615,45,583], + 0xE1F8: [683,20,679,57,635], + 0xE1F9: [846,20,877,34,843], + 0xE1FA: [846,20,960,46,914], + 0xE1FB: [619,20,615,45,570], + 0xE1FC: [619,20,679,57,621], + 0xE1FD: [694,3,565,75,466], + 0xE1FE: [694,3,625,90,509], + 0xE1FF: [854,165,877,34,843], + 0xE200: [854,165,960,46,914], + 0xE201: [614,165,615,45,570], + 0xE202: [614,165,679,57,621], + 0xE203: [709,20,928,43,879], + 0xE204: [709,20,1015,55,952], + 0xE205: [474,23,626,27,588], + 0xE206: [474,23,691,39,640], + 0xE207: [872,20,877,34,843], + 0xE208: [872,20,960,46,914], + 0xE209: [645,20,615,45,570], + 0xE20A: [645,20,679,57,621], + 0xE20B: [692,3,678,34,642], + 0xE20C: [692,3,747,46,699], + 0xE20D: [469,281,675,19,614], + 0xE20E: [469,281,743,29,668], + 0xE20F: [695,150,705,53,652], + 0xE210: [695,150,775,66,709], + 0xE211: [709,20,936,53,884], + 0xE212: [709,20,1023,66,958], + 0xE213: [111,5,292,83,209], + 0xE214: [111,5,332,98,234], + 0xE215: [709,20,1462,79,1410], + 0xE216: [709,20,1588,94,1522], + 0xE217: [709,20,1110,79,1057], + 0xE218: [709,20,1210,94,1144], + 0xE219: [709,176,877,34,843], + 0xE21A: [709,176,960,46,914], + 0xE21B: [469,281,630,48,620], + 0xE21C: [469,281,695,61,675], + 0xE21D: [694,5,504,57,441], + 0xE21E: [694,5,559,70,482], + 0xE21F: [454,245,504,63,447], + 0xE220: [454,245,559,77,489], + 0xE221: [709,-469,424,67,357], + 0xE222: [709,-469,474,81,392], + 0xE223: [110,153,565,66,499], + 0xE224: [110,153,625,80,545], + 0xE225: [709,-446,565,66,499], + 0xE226: [709,-446,625,80,545], + 0xE227: [709,-446,565,66,499], + 0xE228: [709,-446,625,80,545], + 0xE229: [709,-446,323,59,264], + 0xE22A: [709,-446,365,73,293], + 0xE22B: [709,-446,323,59,264], + 0xE22C: [709,-446,365,73,293], + 0xE22D: [110,153,323,34,239], + 0xE22E: [110,153,365,46,266], + 0xE22F: [709,-469,247,76,169], + 0xE230: [709,-469,283,91,191], + 0xE231: [692,3,748,34,739], + 0xE232: [692,3,822,46,803], + 0xE233: [469,3,451,33,418], + 0xE234: [469,3,502,45,458], + 0xE235: [888,3,748,34,739], + 0xE236: [888,3,822,46,803], + 0xE237: [677,3,451,33,418], + 0xE238: [677,3,502,45,458], + 0xE239: [887,3,748,34,739], + 0xE23A: [887,3,822,46,803], + 0xE23B: [676,3,451,33,418], + 0xE23C: [676,3,502,45,458], + 0xE23D: [692,271,748,34,739], + 0xE23E: [692,271,822,46,803], + 0xE23F: [469,271,451,33,418], + 0xE240: [469,271,502,45,458], + 0xE241: [692,-492,383,83,301], + 0xE242: [692,-492,430,98,332], + 0xE243: [709,20,592,36,558], + 0xE244: [709,20,654,48,609], + 0xE245: [469,20,482,43,436], + 0xE246: [469,20,536,55,477], + 0xE247: [888,20,592,36,558], + 0xE248: [888,20,654,48,609], + 0xE249: [677,20,482,43,436], + 0xE24A: [677,20,536,55,477], + 0xE24B: [887,20,592,36,558], + 0xE24C: [887,20,654,48,609], + 0xE24D: [676,20,482,43,436], + 0xE24E: [676,20,536,55,477], + 0xE24F: [709,225,592,36,558], + 0xE250: [709,225,654,48,609], + 0xE251: [469,225,482,43,436], + 0xE252: [469,225,536,55,477], + 0xE253: [709,271,592,36,558], + 0xE254: [709,271,654,48,609], + 0xE255: [469,271,482,43,436], + 0xE256: [469,271,536,55,477], + 0xE257: [709,219,565,38,517], + 0xE258: [709,219,625,50,564], + 0xE259: [456,153,292,27,248], + 0xE25A: [456,153,332,39,275], + 0xE25B: [689,3,565,58,552], + 0xE25C: [689,3,625,71,601], + 0xE25D: [689,20,565,45,520], + 0xE25E: [689,20,625,57,568], + 0xE25F: [694,13,565,23,531], + 0xE260: [694,13,625,34,579], + 0xE261: [692,3,688,30,659], + 0xE262: [692,3,757,41,716], + 0xE263: [621,12,375,34,358], + 0xE264: [621,12,421,46,393], + 0xE265: [887,3,688,30,659], + 0xE266: [887,3,757,41,716], + 0xE267: [663,12,375,34,397], + 0xE268: [663,12,421,46,435], + 0xE269: [692,225,688,30,659], + 0xE26A: [692,225,757,41,716], + 0xE26B: [621,225,375,34,358], + 0xE26C: [621,225,421,46,393], + 0xE26D: [692,271,688,30,659], + 0xE26E: [692,271,757,41,716], + 0xE26F: [621,271,375,34,358], + 0xE270: [621,271,421,46,393], + 0xE271: [692,3,678,45,636], + 0xE272: [692,3,747,57,692], + 0xE273: [726,281,675,8,603], + 0xE274: [726,281,743,18,656], + 0xE275: [689,20,565,26,514], + 0xE276: [689,20,625,38,561], + 0xE277: [645,-540,383,12,372], + 0xE278: [645,-540,430,22,408], + 0xE279: [80,79,681,66,615], + 0xE27A: [80,79,749,80,669], + 0xE27B: [689,3,565,27,520], + 0xE27C: [689,3,625,39,568], + 0xE27D: [692,20,868,23,837], + 0xE27E: [692,20,950,34,908], + 0xE27F: [469,12,677,30,643], + 0xE280: [469,12,746,41,700], + 0xE281: [888,20,868,23,837], + 0xE282: [888,20,950,34,908], + 0xE283: [677,12,677,30,643], + 0xE284: [677,12,746,41,700], + 0xE285: [887,20,868,23,837], + 0xE286: [887,20,950,34,908], + 0xE287: [676,12,677,30,643], + 0xE288: [676,12,746,41,700], + 0xE289: [869,20,868,23,837], + 0xE28A: [869,20,950,34,908], + 0xE28B: [642,12,677,30,643], + 0xE28C: [642,12,746,41,700], + 0xE28D: [692,193,868,23,837], + 0xE28E: [692,193,950,34,908], + 0xE28F: [469,193,677,30,643], + 0xE290: [469,193,746,41,700], + 0xE291: [888,20,868,23,837], + 0xE292: [888,20,950,34,908], + 0xE293: [677,12,677,30,643], + 0xE294: [677,12,746,41,700], + 0xE295: [946,20,868,23,837], + 0xE296: [946,20,950,34,908], + 0xE297: [703,12,677,30,643], + 0xE298: [703,12,746,41,700], + 0xE299: [781,20,868,23,883], + 0xE29A: [781,20,950,34,957], + 0xE29B: [532,12,718,30,708], + 0xE29C: [532,12,789,41,769], + 0xE29D: [888,20,868,23,883], + 0xE29E: [888,20,950,34,957], + 0xE29F: [677,12,718,30,708], + 0xE2A0: [677,12,789,41,769], + 0xE2A1: [781,193,868,23,883], + 0xE2A2: [781,193,950,34,957], + 0xE2A3: [532,193,718,30,708], + 0xE2A4: [532,193,789,41,769], + 0xE2A5: [888,20,868,23,883], + 0xE2A6: [888,20,950,34,957], + 0xE2A7: [677,12,718,30,708], + 0xE2A8: [677,12,789,41,769], + 0xE2A9: [946,20,868,23,883], + 0xE2AA: [946,20,950,34,957], + 0xE2AB: [703,12,718,30,708], + 0xE2AC: [703,12,789,41,769], + 0xE2AD: [872,20,868,23,883], + 0xE2AE: [872,20,950,34,957], + 0xE2AF: [645,12,718,30,708], + 0xE2B0: [645,12,789,41,769], + 0xE2B1: [888,20,868,23,837], + 0xE2B2: [888,20,950,34,908], + 0xE2B3: [683,12,677,30,643], + 0xE2B4: [683,12,746,41,700], + 0xE2B5: [846,20,868,23,837], + 0xE2B6: [846,20,950,34,908], + 0xE2B7: [619,12,677,30,643], + 0xE2B8: [619,12,746,41,700], + 0xE2B9: [692,250,868,23,837], + 0xE2BA: [692,250,950,34,908], + 0xE2BB: [469,250,677,30,643], + 0xE2BC: [469,250,746,41,700], + 0xE2BD: [939,20,868,23,837], + 0xE2BE: [939,20,950,34,908], + 0xE2BF: [692,12,677,30,643], + 0xE2C0: [692,12,746,41,700], + 0xE2C1: [872,20,868,23,837], + 0xE2C2: [872,20,950,34,908], + 0xE2C3: [645,12,677,30,643], + 0xE2C4: [645,12,746,41,700], + 0xE2C5: [692,9,807,19,780], + 0xE2C6: [692,9,885,29,846], + 0xE2C7: [459,7,636,17,598], + 0xE2C8: [459,7,701,27,651], + 0xE2C9: [700,9,1110,19,1083], + 0xE2CA: [700,9,1210,29,1171], + 0xE2CB: [469,7,929,17,891], + 0xE2CC: [469,7,1016,27,965], + 0xE2CD: [700,3,747,25,716], + 0xE2CE: [700,3,820,36,778], + 0xE2CF: [469,3,582,32,551], + 0xE2D0: [469,3,644,43,600], + 0xE2D1: [705,3,747,20,723], + 0xE2D2: [705,3,820,31,785], + 0xE2D3: [459,283,626,23,603], + 0xE2D4: [459,283,691,34,656], + 0xE2D5: [888,3,747,20,723], + 0xE2D6: [888,3,820,31,785], + 0xE2D7: [677,283,626,23,603], + 0xE2D8: [677,283,691,34,656], + 0xE2D9: [869,3,747,20,723], + 0xE2DA: [869,3,820,31,785], + 0xE2DB: [642,283,626,23,603], + 0xE2DC: [642,283,691,34,656], + 0xE2DD: [705,193,747,20,723], + 0xE2DE: [705,193,820,31,785], + 0xE2DF: [459,283,626,23,603], + 0xE2E0: [459,283,691,34,656], + 0xE2E1: [701,3,565,15,551], + 0xE2E2: [701,3,625,26,600], + 0xE2E3: [888,3,747,20,723], + 0xE2E4: [888,3,820,31,785], + 0xE2E5: [677,283,626,23,603], + 0xE2E6: [677,283,691,34,656], + 0xE2E7: [946,3,747,20,723], + 0xE2E8: [946,3,820,31,785], + 0xE2E9: [703,283,626,23,603], + 0xE2EA: [703,283,691,34,656], + 0xE2EB: [872,3,747,20,723], + 0xE2EC: [872,3,820,31,785], + 0xE2ED: [645,283,626,23,603], + 0xE2EE: [645,283,691,34,656], + 0xE2EF: [692,3,747,26,705], + 0xE2F0: [692,3,820,38,766], + 0xE2F1: [462,3,565,27,518], + 0xE2F2: [462,3,625,39,565], + 0xE2F3: [888,3,747,26,705], + 0xE2F4: [888,3,820,38,766], + 0xE2F5: [677,3,565,27,518], + 0xE2F6: [677,3,625,39,565], + 0xE2F7: [887,3,747,26,705], + 0xE2F8: [887,3,820,38,766], + 0xE2F9: [676,3,565,27,518], + 0xE2FA: [676,3,625,39,565], + 0xE2FB: [869,3,747,26,705], + 0xE2FC: [869,3,820,38,766], + 0xE2FD: [642,3,565,27,518], + 0xE2FE: [642,3,625,39,565], + 0xE2FF: [689,20,565,42,517], + 0xE300: [689,20,625,54,564], + 0xE301: [705,3,807,-11,748], + 0xE302: [705,3,885,-2,812], + 0xE303: [482,11,504,14,453], + 0xE304: [482,11,559,25,495], + 0xE305: [692,3,686,38,619], + 0xE306: [692,3,755,50,674], + 0xE307: [733,11,525,50,482], + 0xE308: [733,11,582,63,527], + 0xE309: [706,18,747,59,720], + 0xE30A: [706,18,820,73,782], + 0xE30B: [482,11,464,37,434], + 0xE30C: [482,11,516,49,475], + 0xE30D: [692,3,868,41,818], + 0xE30E: [692,3,950,53,887], + 0xE30F: [733,11,565,29,536], + 0xE310: [733,11,625,40,585], + 0xE311: [692,3,686,43,631], + 0xE312: [692,3,755,55,687], + 0xE313: [482,11,444,26,418], + 0xE314: [482,11,495,38,458], + 0xE315: [692,3,626,10,607], + 0xE316: [692,3,691,20,661], + 0xE317: [733,276,323,-167,460], + 0xE318: [733,276,365,-170,503], + 0xE319: [706,18,807,64,766], + 0xE31A: [706,18,885,78,832], + 0xE31B: [482,276,565,-30,553], + 0xE31C: [482,276,625,-23,603], + 0xE31D: [692,3,868,7,882], + 0xE31E: [692,3,950,16,956], + 0xE31F: [733,9,565,21,523], + 0xE320: [733,9,625,32,571], + 0xE321: [692,3,383,18,396], + 0xE322: [692,3,430,28,434], + 0xE323: [670,9,323,47,300], + 0xE324: [670,9,365,60,331], + 0xE325: [692,206,383,-28,400], + 0xE326: [692,206,430,-21,439], + 0xE327: [670,276,323,-66,308], + 0xE328: [670,276,365,-62,339], + 0xE329: [692,3,747,24,754], + 0xE32A: [692,3,820,35,819], + 0xE32B: [733,9,504,19,499], + 0xE32C: [733,9,559,29,545], + 0xE32D: [692,3,626,27,580], + 0xE32E: [692,3,691,39,632], + 0xE32F: [733,9,323,49,284], + 0xE330: [733,9,365,62,314], + 0xE331: [692,18,1049,-11,1035], + 0xE332: [692,18,1144,-2,1120], + 0xE333: [482,9,868,36,817], + 0xE334: [482,9,950,48,886], + 0xE335: [692,11,868,12,886], + 0xE336: [692,11,950,22,961], + 0xE337: [482,9,626,36,570], + 0xE338: [482,9,691,48,621], + 0xE339: [706,18,868,68,825], + 0xE33A: [706,18,950,82,895], + 0xE33B: [482,11,504,29,458], + 0xE33C: [482,11,559,40,501], + 0xE33D: [692,3,686,20,657], + 0xE33E: [692,3,755,31,715], + 0xE33F: [482,276,565,2,517], + 0xE340: [482,276,625,12,564], + 0xE341: [706,201,868,68,825], + 0xE342: [706,201,950,82,895], + 0xE343: [482,276,525,36,481], + 0xE344: [482,276,582,48,525], + 0xE345: [692,3,747,20,707], + 0xE346: [692,3,820,31,768], + 0xE347: [482,9,444,38,429], + 0xE348: [482,9,495,50,469], + 0xE349: [706,18,626,56,562], + 0xE34A: [706,18,691,69,612], + 0xE34B: [482,11,444,20,386], + 0xE34C: [482,11,495,31,424], + 0xE34D: [692,3,686,68,702], + 0xE34E: [692,3,755,82,763], + 0xE34F: [646,9,383,55,348], + 0xE350: [646,9,430,68,383], + 0xE351: [692,19,868,106,880], + 0xE352: [692,19,950,123,954], + 0xE353: [482,11,626,45,568], + 0xE354: [482,11,691,57,619], + 0xE355: [692,8,807,92,832], + 0xE356: [692,8,885,108,902], + 0xE357: [482,11,565,33,530], + 0xE358: [482,11,625,45,578], + 0xE359: [700,8,1049,87,1078], + 0xE35A: [700,8,1144,103,1167], + 0xE35B: [482,11,807,33,772], + 0xE35C: [482,11,885,45,838], + 0xE35D: [692,3,807,32,810], + 0xE35E: [692,3,885,43,879], + 0xE35F: [482,11,565,20,538], + 0xE360: [482,11,625,31,586], + 0xE361: [705,3,747,67,746], + 0xE362: [705,3,820,81,810], + 0xE363: [482,276,565,1,544], + 0xE364: [482,276,625,11,593], + 0xE365: [692,3,747,32,704], + 0xE366: [692,3,820,43,765], + 0xE367: [482,11,504,9,463], + 0xE368: [482,11,559,19,507], + 0xE369: [471,3,333,34,298], + 0xE36A: [471,266,333,3,227], + 0xE36B: [469,17,333,26,293], + 0xE36C: [469,271,333,-64,274], + 0xE36D: [700,3,847,17,824], + 0xE36E: [700,3,928,27,894], + 0xE36F: [700,3,831,-28,770], + 0xE370: [700,3,910,-21,835], + 0xE371: [686,3,835,17,816], + 0xE372: [686,3,915,27,885], + 0xE373: [686,3,819,-28,762], + 0xE374: [686,3,898,-21,828], + 0xE375: [692,3,714,49,649], + 0xE376: [692,3,785,62,706], + 0xE377: [692,3,700,46,666], + 0xE378: [692,3,770,59,724], + 0xE379: [681,3,738,44,667], + 0xE37A: [681,3,811,56,726], + 0xE37B: [681,3,724,34,693], + 0xE37C: [681,3,796,46,754], + 0xE37D: [700,3,735,21,712], + 0xE37E: [700,3,808,32,773], + 0xE37F: [700,3,721,-23,777], + 0xE380: [700,3,792,-16,843], + 0xE381: [695,3,696,1,691], + 0xE382: [695,3,765,11,751], + 0xE383: [695,3,683,-42,763], + 0xE384: [695,3,751,-36,829], + 0xE385: [700,3,706,17,683], + 0xE386: [700,3,776,27,742], + 0xE387: [700,3,691,-26,633], + 0xE388: [700,3,761,-18,689], + 0xE389: [686,3,742,37,704], + 0xE38A: [686,3,815,49,765], + 0xE38B: [686,3,727,-4,656], + 0xE38C: [686,3,799,5,713], + 0xE38D: [692,3,705,49,649], + 0xE38E: [692,3,775,62,706], + 0xE38F: [692,3,690,17,708], + 0xE390: [692,3,760,28,769], + 0xE391: [681,3,681,44,630], + 0xE392: [681,3,749,56,686], + 0xE393: [681,3,667,34,691], + 0xE394: [681,3,735,46,751], + 0xE395: [692,3,931,36,895], + 0xE396: [692,3,1018,48,970], + 0xE397: [692,3,913,-9,967], + 0xE398: [692,3,998,0,1047], + 0xE399: [681,3,916,44,872], + 0xE39A: [681,3,1002,56,945], + 0xE39B: [681,3,899,-1,942], + 0xE39C: [681,3,983,8,1021], + 0xE39D: [692,3,619,36,596], + 0xE39E: [692,3,683,48,649], + 0xE39F: [692,3,608,-9,674], + 0xE3A0: [692,3,671,0,732], + 0xE3A1: [681,3,633,44,601], + 0xE3A2: [681,3,698,56,654], + 0xE3A3: [681,3,621,-1,674], + 0xE3A4: [681,3,685,8,733], + 0xE3A5: [692,3,392,36,356], + 0xE3A6: [692,3,439,48,391], + 0xE3A7: [692,3,384,-9,438], + 0xE3A8: [692,3,431,0,479], + 0xE3A9: [681,3,444,54,393], + 0xE3AA: [681,3,495,67,431], + 0xE3AB: [681,3,435,9,472], + 0xE3AC: [681,3,486,18,516], + 0xE3AD: [692,3,796,35,795], + 0xE3AE: [692,3,873,47,862], + 0xE3AF: [692,3,781,-10,840], + 0xE3B0: [692,3,857,-1,911], + 0xE3B1: [681,3,849,44,833], + 0xE3B2: [681,3,930,56,903], + 0xE3B3: [681,3,833,-1,877], + 0xE3B4: [681,3,913,8,951], + 0xE3B5: [700,3,821,3,811], + 0xE3B6: [700,3,900,13,880], + 0xE3B7: [700,3,805,-41,757], + 0xE3B8: [700,3,882,-34,822], + 0xE3B9: [686,3,835,17,816], + 0xE3BA: [686,3,915,27,885], + 0xE3BB: [686,3,819,-28,762], + 0xE3BC: [686,3,898,-21,828], + 0xE3BD: [692,13,1059,31,1023], + 0xE3BE: [692,13,1155,42,1107], + 0xE3BF: [692,13,1038,-14,1085], + 0xE3C0: [692,13,1133,-6,1174], + 0xE3C1: [681,10,1120,51,1072], + 0xE3C2: [681,10,1221,64,1160], + 0xE3C3: [681,10,1098,6,1138], + 0xE3C4: [681,10,1197,16,1230], + 0xE3C5: [692,20,950,35,903], + 0xE3C6: [692,20,1038,47,978], + 0xE3C7: [692,20,931,-10,974], + 0xE3C8: [692,20,1018,-1,1055], + 0xE3C9: [681,16,916,44,875], + 0xE3CA: [681,16,1002,56,949], + 0xE3CB: [681,16,899,-1,945], + 0xE3CC: [681,16,983,8,1024], + 0xE3CD: [709,3,935,51,883], + 0xE3CE: [709,3,1022,64,957], + 0xE3CF: [709,3,916,14,881], + 0xE3D0: [709,3,1002,24,955], + 0xE3D1: [695,3,921,39,886], + 0xE3D2: [695,3,1008,52,961], + 0xE3D3: [695,3,903,5,888], + 0xE3D4: [695,3,988,15,963], + 0xE3D5: [709,20,946,69,878], + 0xE3D6: [709,20,1034,83,951], + 0xE3D7: [709,20,928,82,894], + 0xE3D8: [709,20,1015,97,969], + 0xE3D9: [695,17,927,60,867], + 0xE3DA: [695,17,1013,74,940], + 0xE3DB: [695,17,908,70,880], + 0xE3DC: [695,17,994,84,955], + 0xE3DD: [692,3,946,70,879], + 0xE3DE: [692,3,1034,84,952], + 0xE3DF: [692,3,928,88,889], + 0xE3E0: [692,3,1015,104,963], + 0xE3E1: [681,3,928,61,868], + 0xE3E2: [681,3,1015,75,941], + 0xE3E3: [681,3,909,77,876], + 0xE3E4: [681,3,995,91,950], + 0xE3E5: [692,3,931,36,895], + 0xE3E6: [692,3,1018,48,970], + 0xE3E7: [692,3,913,-9,967], + 0xE3E8: [692,3,998,0,1047], + 0xE3E9: [681,3,916,44,872], + 0xE3EA: [681,3,1002,56,945], + 0xE3EB: [681,3,899,-1,942], + 0xE3EC: [681,3,983,8,1021], + 0xE3ED: [692,3,873,30,844], + 0xE3EE: [692,3,956,41,915], + 0xE3EF: [692,3,856,113,917], + 0xE3F0: [692,3,937,130,993], + 0xE3F1: [681,3,829,14,814], + 0xE3F2: [681,3,908,25,883], + 0xE3F3: [681,3,812,94,886], + 0xE3F4: [681,3,891,111,960], + 0xE3F5: [692,3,678,36,644], + 0xE3F6: [692,3,747,48,701], + 0xE3F7: [692,3,665,-9,694], + 0xE3F8: [692,3,733,0,754], + 0xE3F9: [681,3,686,44,649], + 0xE3FA: [681,3,755,56,706], + 0xE3FB: [681,3,673,-1,696], + 0xE3FC: [681,3,741,8,757], + 0xE3FD: [692,3,794,59,738], + 0xE3FE: [692,3,871,73,802], + 0xE3FF: [692,3,779,14,742], + 0xE400: [692,3,854,24,806], + 0xE401: [681,3,749,37,695], + 0xE402: [681,3,823,49,755], + 0xE403: [681,3,735,-7,707], + 0xE404: [681,3,808,1,768], + 0xE405: [692,3,689,31,660], + 0xE406: [692,3,758,42,717], + 0xE407: [692,3,676,96,736], + 0xE408: [692,3,744,113,799], + 0xE409: [681,3,754,32,722], + 0xE40A: [681,3,827,43,784], + 0xE40B: [681,3,739,101,794], + 0xE40C: [681,3,812,118,861], + 0xE40D: [709,20,946,71,880], + 0xE40E: [709,20,1034,86,954], + 0xE40F: [709,20,928,84,897], + 0xE410: [709,20,1015,99,972], + 0xE411: [695,17,926,61,868], + 0xE412: [695,17,1012,75,941], + 0xE413: [695,17,907,71,882], + 0xE414: [695,17,992,86,956], + 0xE415: [705,3,725,13,716], + 0xE416: [705,3,797,24,778], + 0xE417: [705,3,711,95,792], + 0xE418: [705,3,782,111,859], + 0xE419: [695,3,756,26,729], + 0xE41A: [695,3,830,38,792], + 0xE41B: [695,3,740,102,802], + 0xE41C: [695,3,813,119,870], + 0xE41D: [692,3,791,56,734], + 0xE41E: [692,3,867,69,797], + 0xE41F: [692,3,775,28,754], + 0xE420: [692,3,851,39,819], + 0xE421: [681,3,804,56,747], + 0xE422: [681,3,881,69,811], + 0xE423: [681,3,788,34,765], + 0xE424: [681,3,865,46,830], + 0xE425: [692,3,755,30,709], + 0xE426: [692,3,829,41,770], + 0xE427: [692,3,740,-15,779], + 0xE428: [692,3,813,-7,845], + 0xE429: [681,3,750,37,695], + 0xE42A: [681,3,824,49,755], + 0xE42B: [681,3,736,-7,764], + 0xE42C: [681,3,809,1,829], + 0xE42D: [690,13,706,17,683], + 0xE42E: [690,13,776,27,742], + 0xE42F: [690,13,691,97,756], + 0xE430: [690,13,761,113,821], + 0xE431: [676,13,742,37,704], + 0xE432: [676,13,815,49,765], + 0xE433: [676,13,727,113,774], + 0xE434: [676,13,799,131,840], + 0xE435: [482,11,635,59,604], + 0xE436: [482,11,700,73,657], + 0xE437: [482,11,605,34,550], + 0xE438: [482,11,668,46,600], + 0xE439: [469,17,634,57,623], + 0xE43A: [469,17,699,70,678], + 0xE43B: [469,17,604,32,571], + 0xE43C: [469,17,667,44,622], + 0xE43D: [711,277,686,124,614], + 0xE43E: [711,277,755,143,668], + 0xE43F: [711,277,654,17,592], + 0xE440: [711,277,721,28,645], + 0xE441: [718,272,693,88,638], + 0xE442: [718,272,762,104,694], + 0xE443: [718,272,661,-13,611], + 0xE444: [718,272,728,-5,665], + 0xE445: [482,226,658,41,680], + 0xE446: [482,226,724,53,739], + 0xE447: [482,226,627,-38,651], + 0xE448: [482,226,692,-31,708], + 0xE449: [469,232,733,34,725], + 0xE44A: [469,232,805,45,787], + 0xE44B: [469,232,699,-36,644], + 0xE44C: [469,232,769,-29,701], + 0xE44D: [711,11,544,72,476], + 0xE44E: [711,11,603,86,520], + 0xE44F: [711,11,519,62,501], + 0xE450: [711,11,576,76,547], + 0xE451: [718,17,545,55,489], + 0xE452: [718,17,604,69,535], + 0xE453: [718,17,520,47,536], + 0xE454: [718,17,577,59,585], + 0xE455: [484,11,528,72,481], + 0xE456: [484,11,585,86,525], + 0xE457: [484,11,504,53,447], + 0xE458: [484,11,559,66,489], + 0xE459: [471,17,555,55,519], + 0xE45A: [471,17,614,68,567], + 0xE45B: [471,17,530,37,494], + 0xE45C: [471,17,588,49,539], + 0xE45D: [482,11,579,72,532], + 0xE45E: [482,11,640,86,580], + 0xE45F: [482,11,553,68,545], + 0xE460: [482,11,612,83,594], + 0xE461: [471,17,648,86,594], + 0xE462: [471,17,714,101,647], + 0xE463: [471,17,618,80,596], + 0xE464: [471,17,682,95,649], + 0xE465: [482,276,622,15,531], + 0xE466: [482,276,686,25,579], + 0xE467: [482,276,593,61,562], + 0xE468: [482,276,655,74,612], + 0xE469: [469,271,640,16,554], + 0xE46A: [469,271,706,26,604], + 0xE46B: [469,271,611,55,580], + 0xE46C: [469,271,674,68,632], + 0xE46D: [482,226,674,-6,633], + 0xE46E: [482,226,742,3,689], + 0xE46F: [482,226,642,26,652], + 0xE470: [482,226,708,37,709], + 0xE471: [469,232,642,-5,633], + 0xE472: [469,232,708,4,689], + 0xE473: [469,232,613,23,648], + 0xE474: [469,232,676,34,705], + 0xE475: [482,9,346,106,334], + 0xE476: [482,9,390,123,368], + 0xE477: [482,9,331,69,298], + 0xE478: [482,9,373,84,329], + 0xE479: [469,17,411,96,390], + 0xE47A: [469,17,460,112,428], + 0xE47B: [469,17,393,63,351], + 0xE47C: [469,17,440,76,386], + 0xE47D: [482,9,613,31,596], + 0xE47E: [482,9,676,42,649], + 0xE47F: [482,9,585,76,584], + 0xE480: [482,9,646,91,636], + 0xE481: [469,17,699,34,665], + 0xE482: [469,17,769,45,723], + 0xE483: [469,17,666,70,632], + 0xE484: [469,17,734,85,687], + 0xE485: [483,17,775,50,725], + 0xE486: [483,17,851,63,788], + 0xE487: [483,17,739,88,674], + 0xE488: [483,17,812,104,733], + 0xE489: [469,17,775,52,723], + 0xE48A: [469,17,851,65,785], + 0xE48B: [469,17,739,83,674], + 0xE48C: [469,17,812,98,733], + 0xE48D: [711,12,671,17,656], + 0xE48E: [711,12,738,28,714], + 0xE48F: [711,12,640,-24,602], + 0xE490: [711,12,706,-17,655], + 0xE491: [718,19,688,21,667], + 0xE492: [718,19,757,32,726], + 0xE493: [718,19,657,-21,612], + 0xE494: [718,19,723,-14,666], + 0xE495: [482,276,702,49,664], + 0xE496: [482,276,772,62,721], + 0xE497: [482,276,670,45,608], + 0xE498: [482,276,737,57,662], + 0xE499: [469,271,683,27,665], + 0xE49A: [469,271,751,38,723], + 0xE49B: [469,271,651,14,610], + 0xE49C: [469,271,717,24,664], + 0xE49D: [482,12,591,9,532], + 0xE49E: [482,12,653,19,580], + 0xE49F: [482,12,564,55,573], + 0xE4A0: [482,12,624,68,624], + 0xE4A1: [469,17,601,0,548], + 0xE4A2: [469,17,664,9,597], + 0xE4A3: [469,17,574,39,585], + 0xE4A4: [469,17,634,51,637], + 0xE4A5: [482,11,895,59,834], + 0xE4A6: [482,11,980,73,905], + 0xE4A7: [482,11,854,56,838], + 0xE4A8: [482,11,935,69,908], + 0xE4A9: [469,17,894,54,839], + 0xE4AA: [469,17,978,68,909], + 0xE4AB: [469,17,853,50,837], + 0xE4AC: [469,17,934,63,908], + 0xE4AD: [482,11,574,71,501], + 0xE4AE: [482,11,634,86,547], + 0xE4AF: [482,11,548,67,505], + 0xE4B0: [482,11,606,82,551], + 0xE4B1: [469,17,608,55,551], + 0xE4B2: [469,17,671,68,600], + 0xE4B3: [469,17,579,46,549], + 0xE4B4: [469,17,640,59,599], + 0xE4B5: [482,276,750,71,677], + 0xE4B6: [482,276,824,86,736], + 0xE4B7: [482,276,715,64,675], + 0xE4B8: [482,276,786,79,734], + 0xE4B9: [469,271,812,55,755], + 0xE4BA: [469,271,891,68,820], + 0xE4BB: [469,271,774,44,746], + 0xE4BC: [469,271,850,57,810], + 0xE4BD: [644,274,749,72,676], + 0xE4BE: [644,274,823,86,735], + 0xE4BF: [644,274,714,69,670], + 0xE4C0: [644,274,785,84,728], + 0xE4C1: [633,268,807,55,751], + 0xE4C2: [633,268,885,68,815], + 0xE4C3: [633,268,770,49,737], + 0xE4C4: [633,268,845,62,800], + 0xE4C5: [493,11,795,63,760], + 0xE4C6: [493,11,872,77,825], + 0xE4C7: [493,11,758,84,779], + 0xE4C8: [493,11,832,99,845], + 0xE4C9: [493,17,867,70,832], + 0xE4CA: [493,17,949,84,902], + 0xE4CB: [493,17,827,77,858], + 0xE4CC: [493,17,906,92,930], + 0xE4CD: [548,11,895,59,834], + 0xE4CE: [548,11,980,73,905], + 0xE4CF: [548,11,854,56,838], + 0xE4D0: [548,11,935,69,908], + 0xE4D1: [559,17,895,54,839], + 0xE4D2: [559,17,980,68,910], + 0xE4D3: [559,17,854,50,838], + 0xE4D4: [559,17,935,63,909], + 0xE4D5: [646,276,759,16,698], + 0xE4D6: [646,276,833,26,759], + 0xE4D7: [646,276,724,62,708], + 0xE4D8: [646,276,796,76,769], + 0xE4D9: [636,271,814,5,759], + 0xE4DA: [636,271,892,14,824], + 0xE4DB: [636,271,775,46,762], + 0xE4DC: [636,271,851,58,827], + 0xE4DD: [482,276,619,92,547], + 0xE4DE: [482,276,683,108,597], + 0xE4DF: [482,276,591,3,550], + 0xE4E0: [482,276,653,13,599], + 0xE4E1: [469,271,641,85,586], + 0xE4E2: [469,271,707,101,639], + 0xE4E3: [469,271,612,-4,584], + 0xE4E4: [469,271,675,5,636], + 0xE4E5: [482,276,633,91,560], + 0xE4E6: [482,276,698,107,610], + 0xE4E7: [482,276,603,70,546], + 0xE4E8: [482,276,666,85,596], + 0xE4E9: [469,271,631,86,576], + 0xE4EA: [469,271,696,101,628], + 0xE4EB: [469,271,602,69,574], + 0xE4EC: [469,271,665,83,625], + 0xE4ED: [494,11,686,71,670], + 0xE4EE: [494,11,755,86,728], + 0xE4EF: [494,11,654,67,706], + 0xE4F0: [494,11,721,81,767], + 0xE4F1: [482,17,739,68,705], + 0xE4F2: [482,17,812,82,766], + 0xE4F3: [482,17,706,60,734], + 0xE4F4: [482,17,776,73,797], + 0xE4F5: [482,226,561,60,512], + 0xE4F6: [482,226,620,74,558], + 0xE4F7: [482,226,534,51,505], + 0xE4F8: [482,226,592,65,552], + 0xE4F9: [469,232,550,63,516], + 0xE4FA: [469,232,609,76,564], + 0xE4FB: [469,232,525,50,502], + 0xE4FC: [469,232,582,63,548], + 0xE4FD: [493,11,660,46,618], + 0xE4FE: [493,11,727,59,673], + 0xE4FF: [493,11,629,84,657], + 0xE500: [493,11,694,100,715], + 0xE501: [493,17,694,44,658], + 0xE502: [493,17,763,57,716], + 0xE503: [493,17,662,81,692], + 0xE504: [493,17,729,97,752], + 0xE505: [711,11,584,73,510], + 0xE506: [711,11,645,87,557], + 0xE507: [711,11,556,88,547], + 0xE508: [711,11,616,104,597], + 0xE509: [695,17,619,63,558], + 0xE50A: [695,17,683,77,608], + 0xE50B: [695,17,591,76,583], + 0xE50C: [695,17,653,91,635], + 0xE50D: [711,11,653,26,609], + 0xE50E: [711,11,720,37,663], + 0xE50F: [711,11,623,72,643], + 0xE510: [711,11,687,86,699], + 0xE511: [695,17,676,34,642], + 0xE512: [695,17,744,46,699], + 0xE513: [695,17,645,74,683], + 0xE514: [695,17,710,89,743], + 0xE515: [482,11,624,25,549], + 0xE516: [482,11,688,36,599], + 0xE517: [482,11,596,71,566], + 0xE518: [482,11,658,85,617], + 0xE519: [469,17,606,5,550], + 0xE51A: [469,17,669,14,599], + 0xE51B: [469,17,578,46,563], + 0xE51C: [469,17,639,58,613], + 0xE51D: [711,226,542,71,524], + 0xE51E: [711,226,600,86,571], + 0xE51F: [711,226,517,63,598], + 0xE520: [711,226,574,77,651], + 0xE521: [718,232,539,69,530], + 0xE522: [718,232,597,84,578], + 0xE523: [718,232,514,63,592], + 0xE524: [718,232,570,77,645], + 0xE525: [711,226,540,72,522], + 0xE526: [711,226,598,86,570], + 0xE527: [711,226,515,61,597], + 0xE528: [711,226,571,75,650], + 0xE529: [718,232,555,59,519], + 0xE52A: [718,232,614,72,567], + 0xE52B: [718,232,530,53,582], + 0xE52C: [718,232,588,66,634], + 0xE52D: [733,9,643,66,564], + 0xE52E: [733,9,709,80,615], + 0xE52F: [733,9,614,80,583], + 0xE530: [733,9,678,95,635], + 0xE531: [740,17,642,62,568], + 0xE532: [740,17,708,75,619], + 0xE533: [740,17,613,87,587], + 0xE534: [740,17,676,102,639], + 0xE535: [709,20,946,71,880], + 0xE536: [709,20,1034,86,954], + 0xE537: [695,17,926,61,868], + 0xE538: [695,17,1012,75,941], + 0xE539: [709,20,928,84,897], + 0xE53A: [709,20,1015,99,972], + 0xE53B: [695,17,907,71,882], + 0xE53C: [695,17,992,86,956], + 0xE53D: [723,19,743,54,689], + 0xE53E: [723,19,816,67,749], + 0xE53F: [729,29,622,54,568], + 0xE540: [729,29,686,67,619], + 0xE541: [740,18,553,54,498], + 0xE542: [740,18,612,67,544], + 0xE543: [719,16,589,54,535], + 0xE544: [719,16,651,67,584], + 0xE545: [503,0,268,94,175], + 0xE546: [503,191,257,-18,164], + 0xE547: [503,0,253,35,212], + 0xE548: [503,191,238,-113,200], + 0xE549: [503,0,324,84,241], + 0xE54A: [503,199,313,-33,230], + 0xE54B: [503,0,310,31,285], + 0xE54C: [503,199,294,-128,269], + 0xE54D: [489,0,442,80,362], + 0xE54E: [489,272,446,80,362], + 0xE54F: [390,8,244,30,298], + 0xE550: [390,398,215,-309,268], + 0xE551: [393,10,270,34,328], + 0xE552: [393,400,228,-312,285], + 0xE553: [475,21,279,14,268], + 0xE554: [475,202,280,-9,196], + 0xE555: [478,26,331,2,327], + 0xE556: [483,207,331,-19,238], + 0xE557: [425,0,350,52,303], + 0xE558: [425,235,350,28,247], + 0xE559: [650,150,486,80,406], + 0xE55A: [650,150,740,80,660], + 0xE55B: [650,150,486,80,406], + 0xE55C: [650,150,743,80,663], + 0xE55D: [650,150,486,80,406], + 0xE55E: [650,150,747,80,667], + 0xE55F: [650,150,486,80,406], + 0xE560: [650,150,749,80,669], + 0xE561: [650,150,486,80,406], + 0xE562: [650,150,753,80,673], + 0xE563: [650,150,486,80,406], + 0xE564: [650,150,756,80,676], + 0xE565: [540,-103,379,70,309], + 0xE566: [540,-103,379,70,309], + 0xE567: [540,-103,679,70,609], + 0xE568: [540,-103,679,70,609], + 0xE569: [540,-103,979,70,909], + 0xE56A: [540,-103,979,70,909], + 0xE56B: [540,-103,1279,70,1209], + 0xE56C: [844,344,653,80,573], + 0xE56D: [844,344,984,80,904], + 0xE56E: [844,344,1315,80,1235], + 0xE56F: [844,344,1646,80,1566], + 0xE570: [844,344,706,80,626], + 0xE571: [844,344,1037,80,957], + 0xE572: [844,344,1368,80,1288], + 0xE573: [844,344,747,80,707], + 0xE574: [844,344,747,80,707], + 0xE575: [844,344,765,80,725], + 0xE576: [844,344,710,80,670], + 0xE577: [959,459,673,80,593], + 0xE578: [959,459,1017,80,937], + 0xE579: [959,459,1361,80,1281], + 0xE57A: [959,459,1705,80,1625], + 0xE57B: [959,459,726,80,646], + 0xE57C: [959,459,1070,80,990], + 0xE57D: [959,459,1414,80,1334], + 0xE57E: [959,459,767,80,727], + 0xE57F: [959,459,767,80,727], + 0xE580: [959,459,782,80,742], + 0xE581: [959,459,729,80,689], + 0xE582: [1097,597,693,80,613], + 0xE583: [1097,597,1051,80,971], + 0xE584: [1097,597,1409,80,1329], + 0xE585: [1097,597,1767,80,1687], + 0xE586: [1097,597,750,80,670], + 0xE587: [1097,597,1108,80,1028], + 0xE588: [1097,597,1466,80,1386], + 0xE589: [1097,597,790,80,750], + 0xE58A: [1097,597,790,80,750], + 0xE58B: [1097,597,802,80,762], + 0xE58C: [1097,597,752,80,712], + 0xE58D: [1462,962,737,80,657], + 0xE58E: [1462,962,1124,80,1044], + 0xE58F: [1462,962,1511,80,1431], + 0xE590: [1462,962,1898,80,1818], + 0xE591: [1462,962,796,80,716], + 0xE592: [1462,962,1183,80,1103], + 0xE593: [1462,962,1570,80,1490], + 0xE594: [1462,962,835,80,795], + 0xE595: [1462,962,835,80,795], + 0xE596: [1462,962,841,80,801], + 0xE597: [1462,962,796,80,756], + 0xE598: [1701,1201,760,80,680], + 0xE599: [1701,1201,1163,80,1083], + 0xE59A: [1701,1201,1566,80,1486], + 0xE59B: [1701,1201,1969,80,1889], + 0xE59C: [1701,1201,824,80,744], + 0xE59D: [1701,1201,1227,80,1147], + 0xE59E: [1701,1201,1630,80,1550], + 0xE59F: [1701,1201,861,80,821], + 0xE5A0: [1701,1201,861,80,821], + 0xE5A1: [1701,1201,863,80,823], + 0xE5A2: [1701,1201,823,80,783] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_NonUnicode"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Normal/Regular/Main.js new file mode 100644 index 0000000..bda5fb1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Normal/Regular/Main.js @@ -0,0 +1,373 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'GyrePagellaMathJax_Normal', + testString: '\u00A0\u210E\uD835\uDC00\uD835\uDC01\uD835\uDC02\uD835\uDC03\uD835\uDC04\uD835\uDC05\uD835\uDC06\uD835\uDC07\uD835\uDC08\uD835\uDC09\uD835\uDC0A\uD835\uDC0B\uD835\uDC0C', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210E: [733,9,500,10,471], + 0x1D400: [686,3,778,24,757], + 0x1D401: [681,3,667,39,611], + 0x1D402: [695,17,722,44,695], + 0x1D403: [681,3,833,35,786], + 0x1D404: [681,3,611,39,577], + 0x1D405: [681,3,556,28,539], + 0x1D406: [695,17,833,47,776], + 0x1D407: [681,3,833,36,796], + 0x1D408: [681,3,389,39,350], + 0x1D409: [681,213,389,-11,350], + 0x1D40A: [681,3,778,39,763], + 0x1D40B: [681,3,611,39,577], + 0x1D40C: [681,10,1000,32,968], + 0x1D40D: [681,16,833,35,798], + 0x1D40E: [695,17,833,47,787], + 0x1D40F: [681,3,611,39,594], + 0x1D410: [695,184,833,47,787], + 0x1D411: [681,3,722,39,708], + 0x1D412: [695,17,611,57,559], + 0x1D413: [681,3,667,17,650], + 0x1D414: [681,17,778,26,760], + 0x1D415: [681,3,778,20,763], + 0x1D416: [686,3,1000,17,988], + 0x1D417: [695,3,667,17,650], + 0x1D418: [695,3,667,15,660], + 0x1D419: [681,3,667,24,627], + 0x1D41A: [471,17,500,40,478], + 0x1D41B: [720,17,611,10,556], + 0x1D41C: [471,17,444,37,414], + 0x1D41D: [720,17,611,42,577], + 0x1D41E: [471,17,500,42,461], + 0x1D41F: [720,3,389,34,381], + 0x1D420: [471,266,556,26,535], + 0x1D421: [720,3,611,24,587], + 0x1D422: [666,3,333,34,298], + 0x1D423: [666,266,333,3,233], + 0x1D424: [720,3,611,21,597], + 0x1D425: [720,3,333,24,296], + 0x1D426: [471,3,889,24,864], + 0x1D427: [471,3,611,24,587], + 0x1D428: [471,17,556,40,517], + 0x1D429: [471,258,611,29,567], + 0x1D42A: [471,258,611,52,589], + 0x1D42B: [471,3,389,30,389], + 0x1D42C: [471,17,444,39,405], + 0x1D42D: [632,17,333,22,324], + 0x1D42E: [471,17,611,25,583], + 0x1D42F: [459,3,556,11,545], + 0x1D430: [471,3,833,13,820], + 0x1D431: [471,3,500,20,483], + 0x1D432: [459,266,556,10,546], + 0x1D433: [457,3,500,16,464], + 0x1D434: [705,3,722,-19,677], + 0x1D435: [692,3,611,26,559], + 0x1D436: [706,18,667,45,651], + 0x1D437: [692,3,778,28,741], + 0x1D438: [692,3,611,30,570], + 0x1D439: [692,3,556,0,548], + 0x1D43A: [706,18,722,50,694], + 0x1D43B: [692,3,778,-3,800], + 0x1D43C: [692,3,333,7,354], + 0x1D43D: [692,206,333,-35,358], + 0x1D43E: [692,3,667,13,683], + 0x1D43F: [692,3,556,16,523], + 0x1D440: [692,18,944,-19,940], + 0x1D441: [692,11,778,2,804], + 0x1D442: [706,18,778,53,748], + 0x1D443: [692,3,611,9,594], + 0x1D444: [706,201,778,53,748], + 0x1D445: [692,3,667,9,639], + 0x1D446: [706,18,556,42,506], + 0x1D447: [692,3,611,53,635], + 0x1D448: [692,19,778,88,798], + 0x1D449: [692,8,722,75,754], + 0x1D44A: [700,8,944,71,980], + 0x1D44B: [692,3,722,20,734], + 0x1D44C: [705,3,667,52,675], + 0x1D44D: [692,3,667,20,637], + 0x1D44E: [482,11,444,4,406], + 0x1D44F: [733,11,463,37,433], + 0x1D450: [482,11,407,25,389], + 0x1D451: [733,11,500,17,483], + 0x1D452: [482,11,389,15,374], + 0x1D453: [733,276,278,-162,413], + 0x1D454: [482,276,500,-37,498], + 0x1D456: [670,9,278,34,266], + 0x1D457: [670,276,278,-70,273], + 0x1D458: [733,9,444,8,449], + 0x1D459: [733,9,278,36,251], + 0x1D45A: [482,9,778,24,740], + 0x1D45B: [482,9,556,24,514], + 0x1D45C: [482,11,444,17,411], + 0x1D45D: [482,276,500,-7,465], + 0x1D45E: [482,276,463,24,432], + 0x1D45F: [482,9,389,26,384], + 0x1D460: [482,11,389,9,345], + 0x1D461: [646,9,333,41,310], + 0x1D462: [482,11,556,32,512], + 0x1D463: [482,11,500,21,477], + 0x1D464: [482,11,722,21,699], + 0x1D465: [482,11,500,9,484], + 0x1D466: [482,276,500,-8,490], + 0x1D467: [482,11,444,-1,416], + 0x1D468: [683,3,722,-35,685], + 0x1D469: [682,3,667,8,629], + 0x1D46A: [695,17,685,69,695], + 0x1D46B: [682,3,778,0,747], + 0x1D46C: [681,3,611,11,606], + 0x1D46D: [681,3,556,-6,593], + 0x1D46E: [695,17,778,72,750], + 0x1D46F: [681,3,778,-12,826], + 0x1D470: [681,3,389,-1,412], + 0x1D471: [681,207,389,-29,417], + 0x1D472: [681,3,722,-10,746], + 0x1D473: [681,3,611,26,578], + 0x1D474: [681,17,944,-23,985], + 0x1D475: [681,3,778,-2,829], + 0x1D476: [695,17,833,76,794], + 0x1D477: [681,3,667,11,673], + 0x1D478: [695,222,833,76,794], + 0x1D479: [681,3,722,4,697], + 0x1D47A: [695,17,556,50,517], + 0x1D47B: [681,3,611,56,674], + 0x1D47C: [681,17,778,83,825], + 0x1D47D: [681,3,667,67,745], + 0x1D47E: [689,3,1000,67,1073], + 0x1D47F: [681,3,722,-9,772], + 0x1D480: [695,3,611,54,675], + 0x1D481: [681,3,667,1,676], + 0x1D482: [470,17,556,44,519], + 0x1D483: [726,17,537,44,494], + 0x1D484: [469,17,444,32,436], + 0x1D485: [726,17,556,38,550], + 0x1D486: [469,17,444,28,418], + 0x1D487: [726,271,333,-130,449], + 0x1D488: [469,271,500,-50,529], + 0x1D489: [726,17,556,22,522], + 0x1D48A: [675,17,333,26,301], + 0x1D48B: [675,271,333,-64,311], + 0x1D48C: [726,17,556,34,528], + 0x1D48D: [726,17,333,64,318], + 0x1D48E: [469,17,833,19,803], + 0x1D48F: [469,17,556,17,521], + 0x1D490: [469,17,556,48,502], + 0x1D491: [469,271,556,-21,516], + 0x1D492: [469,271,537,32,513], + 0x1D493: [469,17,389,20,411], + 0x1D494: [469,17,444,25,406], + 0x1D495: [636,17,389,42,409], + 0x1D496: [469,17,556,22,521], + 0x1D497: [469,17,556,19,513], + 0x1D498: [469,17,833,27,802], + 0x1D499: [469,17,500,-8,500], + 0x1D49A: [469,271,556,13,541], + 0x1D49B: [469,17,500,31,470], + 0x1D6A4: [482,9,278,34,241], + 0x1D6A5: [482,276,278,-70,228], + 0x1D6A8: [686,3,748,6,739], + 0x1D6A9: [681,3,659,31,603], + 0x1D6AA: [681,3,562,31,542], + 0x1D6AB: [686,3,662,25,637], + 0x1D6AC: [681,3,606,31,569], + 0x1D6AD: [681,3,670,25,628], + 0x1D6AE: [681,3,822,31,791], + 0x1D6AF: [695,17,831,47,787], + 0x1D6B0: [681,3,389,40,351], + 0x1D6B1: [681,3,761,31,755], + 0x1D6B2: [686,3,748,6,739], + 0x1D6B3: [681,10,1009,38,974], + 0x1D6B4: [681,16,822,31,794], + 0x1D6B5: [681,3,719,42,676], + 0x1D6B6: [695,17,832,46,786], + 0x1D6B7: [681,3,822,31,791], + 0x1D6B8: [681,3,611,31,586], + 0x1D6B9: [695,17,831,47,787], + 0x1D6BA: [681,3,669,25,628], + 0x1D6BB: [681,3,673,20,653], + 0x1D6BC: [695,3,675,15,660], + 0x1D6BD: [681,3,833,47,787], + 0x1D6BE: [695,3,620,-8,625], + 0x1D6BF: [681,3,742,4,738], + 0x1D6C0: [695,3,827,27,804], + 0x1D6C1: [676,13,662,25,637], + 0x1D6C2: [469,17,563,43,563], + 0x1D6C3: [718,272,617,71,576], + 0x1D6C4: [469,232,571,-14,572], + 0x1D6C5: [718,17,482,41,440], + 0x1D6C6: [471,17,491,41,467], + 0x1D6C7: [718,232,491,45,468], + 0x1D6C8: [469,271,569,5,499], + 0x1D6C9: [695,17,550,49,502], + 0x1D6CA: [469,17,359,79,349], + 0x1D6CB: [469,17,623,22,601], + 0x1D6CC: [718,19,613,10,603], + 0x1D6CD: [469,271,608,16,601], + 0x1D6CE: [469,17,533,-9,494], + 0x1D6CF: [718,232,476,54,477], + 0x1D6D0: [469,17,539,41,496], + 0x1D6D1: [493,17,777,55,754], + 0x1D6D2: [469,271,570,69,529], + 0x1D6D3: [469,232,486,48,464], + 0x1D6D4: [482,17,660,54,637], + 0x1D6D5: [493,17,618,32,594], + 0x1D6D6: [469,17,538,-5,495], + 0x1D6D7: [469,271,727,41,684], + 0x1D6D8: [469,232,654,22,656], + 0x1D6D9: [636,271,728,-5,687], + 0x1D6DA: [469,17,802,41,759], + 0x1D6DB: [740,17,571,47,512], + 0x1D6DC: [471,17,576,69,536], + 0x1D6DD: [695,17,602,22,580], + 0x1D6DE: [469,17,693,39,654], + 0x1D6DF: [633,268,722,41,680], + 0x1D6E0: [469,271,561,70,519], + 0x1D6E1: [559,17,803,41,760], + 0x1D6E2: [700,3,744,-35,697], + 0x1D6E3: [692,3,624,33,601], + 0x1D6E4: [692,3,539,-17,609], + 0x1D6E5: [700,3,616,-33,572], + 0x1D6E6: [692,3,615,7,640], + 0x1D6E7: [692,3,661,-23,705], + 0x1D6E8: [692,3,819,-17,878], + 0x1D6E9: [709,20,833,67,813], + 0x1D6EA: [692,3,334,-17,393], + 0x1D6EB: [692,3,698,-18,761], + 0x1D6EC: [700,3,720,-46,685], + 0x1D6ED: [692,13,934,-22,987], + 0x1D6EE: [692,20,836,-18,885], + 0x1D6EF: [692,3,693,16,683], + 0x1D6F0: [709,20,833,66,811], + 0x1D6F1: [692,3,819,-17,878], + 0x1D6F2: [692,3,592,-17,627], + 0x1D6F3: [709,20,833,67,813], + 0x1D6F4: [692,3,696,4,672], + 0x1D6F5: [692,3,602,79,666], + 0x1D6F6: [705,3,634,78,717], + 0x1D6F7: [692,3,833,71,806], + 0x1D6F8: [700,3,643,-31,704], + 0x1D6F9: [692,3,767,94,832], + 0x1D6FA: [709,3,822,4,799], + 0x1D6FB: [690,13,616,80,684], + 0x1D6FC: [482,11,537,22,496], + 0x1D6FD: [711,277,582,7,534], + 0x1D6FE: [482,226,571,14,589], + 0x1D6FF: [711,11,458,48,450], + 0x1D700: [484,11,444,39,401], + 0x1D701: [711,226,454,47,539], + 0x1D702: [482,276,526,46,506], + 0x1D703: [711,11,492,71,493], + 0x1D704: [482,9,285,54,264], + 0x1D705: [482,9,518,61,526], + 0x1D706: [711,12,569,-32,543], + 0x1D707: [482,276,596,32,549], + 0x1D708: [482,12,499,41,517], + 0x1D709: [711,226,456,48,540], + 0x1D70A: [482,11,484,53,454], + 0x1D70B: [493,11,677,68,705], + 0x1D70C: [482,276,524,-6,495], + 0x1D70D: [482,226,472,38,454], + 0x1D70E: [494,11,582,52,639], + 0x1D70F: [493,11,559,68,594], + 0x1D710: [482,11,528,56,510], + 0x1D711: [482,276,638,50,610], + 0x1D712: [482,226,557,-44,588], + 0x1D713: [646,276,646,48,640], + 0x1D714: [482,11,765,42,759], + 0x1D715: [733,9,545,64,526], + 0x1D716: [482,11,489,54,491], + 0x1D717: [711,11,553,57,581], + 0x1D718: [483,17,660,72,609], + 0x1D719: [644,274,637,54,605], + 0x1D71A: [482,276,535,55,492], + 0x1D71B: [548,11,765,42,759], + 0x1D71C: [686,3,733,-35,690], + 0x1D71D: [681,3,646,22,627], + 0x1D71E: [681,3,551,-10,609], + 0x1D71F: [686,3,649,-13,593], + 0x1D720: [681,3,594,22,625], + 0x1D721: [681,3,657,-16,692], + 0x1D722: [681,3,806,-10,855], + 0x1D723: [695,17,814,56,799], + 0x1D724: [681,3,381,-1,424], + 0x1D725: [681,3,746,-10,795], + 0x1D726: [686,3,733,-35,690], + 0x1D727: [681,10,989,-3,1035], + 0x1D728: [681,16,806,-10,858], + 0x1D729: [681,3,705,22,693], + 0x1D72A: [695,17,815,55,798], + 0x1D72B: [681,3,806,-10,855], + 0x1D72C: [681,3,599,-10,630], + 0x1D72D: [695,17,814,56,799], + 0x1D72E: [681,3,656,-16,640], + 0x1D72F: [681,3,660,84,719], + 0x1D730: [695,3,661,84,726], + 0x1D731: [681,3,816,61,795], + 0x1D732: [695,3,608,-48,691], + 0x1D733: [681,3,727,77,803], + 0x1D734: [695,3,810,-4,806], + 0x1D735: [676,13,649,95,701], + 0x1D736: [469,17,536,20,514], + 0x1D737: [718,272,588,-21,551], + 0x1D738: [469,232,544,12,585], + 0x1D739: [718,17,459,34,483], + 0x1D73A: [471,17,468,24,444], + 0x1D73B: [718,232,468,40,525], + 0x1D73C: [469,271,542,41,523], + 0x1D73D: [695,17,524,61,526], + 0x1D73E: [469,17,342,48,313], + 0x1D73F: [469,17,593,55,570], + 0x1D740: [718,19,584,-29,552], + 0x1D741: [469,271,579,3,551], + 0x1D742: [469,17,508,27,527], + 0x1D743: [718,232,453,49,534], + 0x1D744: [469,17,513,33,495], + 0x1D745: [493,17,740,61,778], + 0x1D746: [469,271,543,-13,526], + 0x1D747: [469,232,463,36,451], + 0x1D748: [482,17,629,46,664], + 0x1D749: [493,17,589,65,626], + 0x1D74A: [469,17,512,33,507], + 0x1D74B: [469,271,692,31,675], + 0x1D74C: [469,232,623,-42,582], + 0x1D74D: [636,271,693,33,690], + 0x1D74E: [469,17,764,37,759], + 0x1D74F: [740,17,544,70,529], + 0x1D750: [471,17,549,64,538], + 0x1D751: [695,17,573,59,618], + 0x1D752: [469,17,660,67,609], + 0x1D753: [633,268,688,36,667], + 0x1D754: [469,271,534,54,517], + 0x1D755: [559,17,765,37,760], + 0x1D7CE: [660,17,500,33,468], + 0x1D7CF: [670,3,500,35,455], + 0x1D7D0: [660,3,500,25,472], + 0x1D7D1: [660,17,500,22,458], + 0x1D7D2: [672,3,500,12,473], + 0x1D7D3: [656,17,500,42,472], + 0x1D7D4: [660,17,500,37,469], + 0x1D7D5: [656,3,500,46,493], + 0x1D7D6: [660,17,500,34,467], + 0x1D7D7: [660,17,500,31,463] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Normal"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Normal/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Operators/Regular/Main.js new file mode 100644 index 0000000..1cd6a5f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Operators/Regular/Main.js @@ -0,0 +1,114 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'GyrePagellaMathJax_Operators', + testString: '\u00A0\u2206\u220A\u220C\u220E\u220F\u2210\u2211\u221F\u222C\u222D\u222E\u222F\u2230\u2231', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2206: [700,3,629,6,617], + 0x220A: [450,-50,578,80,498], + 0x220C: [650,150,778,80,698], + 0x220E: [585,0,745,80,665], + 0x220F: [750,250,1113,80,1033], + 0x2210: [750,250,1113,80,1033], + 0x2211: [750,250,983,80,903], + 0x221F: [630,0,790,80,710], + 0x222C: [796,296,952,80,872], + 0x222D: [796,296,1270,80,1190], + 0x222E: [796,296,684,80,604], + 0x222F: [796,296,1002,80,922], + 0x2230: [796,296,1320,80,1240], + 0x2231: [796,296,726,80,686], + 0x2232: [796,296,747,80,707], + 0x2233: [796,296,689,80,649], + 0x2236: [468,-32,280,80,200], + 0x2237: [468,-32,596,80,516], + 0x2238: [520,-220,760,80,680], + 0x2239: [441,-59,880,80,800], + 0x223A: [520,20,760,80,680], + 0x223B: [497,-3,758,80,678], + 0x223E: [390,-110,751,80,671], + 0x223F: [467,-33,760,80,680], + 0x2244: [550,50,760,80,680], + 0x2247: [550,50,760,80,680], + 0x2249: [550,50,758,80,678], + 0x224B: [517,17,758,80,678], + 0x224C: [518,-40,760,80,680], + 0x2254: [441,-59,880,80,800], + 0x2255: [441,-59,880,80,800], + 0x2258: [540,0,760,80,680], + 0x2259: [554,54,760,80,680], + 0x225A: [554,54,760,80,680], + 0x225B: [853,-110,760,80,680], + 0x225D: [867,-110,925,80,845], + 0x225E: [745,-110,760,80,680], + 0x225F: [870,-110,760,80,680], + 0x2262: [650,150,760,80,680], + 0x2263: [610,110,760,80,680], + 0x226D: [650,150,760,80,680], + 0x2274: [706,206,766,80,686], + 0x2275: [706,206,766,80,686], + 0x2278: [761,261,771,80,691], + 0x2279: [761,261,771,80,691], + 0x2284: [650,150,778,80,698], + 0x2285: [650,150,778,80,698], + 0x228C: [550,68,760,80,680], + 0x228D: [550,68,760,80,680], + 0x229C: [568,68,796,80,716], + 0x22A6: [650,150,590,80,510], + 0x22A7: [650,150,590,80,510], + 0x22AB: [650,150,770,80,690], + 0x22B6: [410,-90,1080,80,1000], + 0x22B7: [410,-90,1080,80,1000], + 0x22B9: [550,50,760,80,680], + 0x22BD: [584,84,760,80,680], + 0x22BE: [630,103,893,80,813], + 0x22BF: [651,0,812,80,732], + 0x22C0: [744,230,860,80,780], + 0x22C1: [730,244,860,80,780], + 0x22C2: [748,230,860,80,780], + 0x22C3: [730,248,860,80,780], + 0x22C7: [556,56,772,80,692], + 0x22D5: [650,150,760,80,680], + 0x22DC: [623,113,766,80,686], + 0x22DD: [623,113,766,80,686], + 0x22E2: [690,190,760,80,680], + 0x22E3: [690,190,760,80,680], + 0x22E4: [640,220,760,80,680], + 0x22E5: [640,220,760,80,680], + 0x22F0: [536,36,733,80,653], + 0x2A00: [708,208,1076,80,996], + 0x2A01: [708,208,1076,80,996], + 0x2A02: [708,208,1076,80,996], + 0x2A03: [730,248,860,80,780], + 0x2A04: [730,248,860,80,780], + 0x2A05: [747,213,860,80,780], + 0x2A06: [713,247,860,80,780], + 0x2A09: [635,135,929,80,849], + 0x2A0C: [796,296,1588,80,1508], + 0x2A11: [796,296,726,80,686], + 0x2A2F: [490,-10,641,80,561] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Operators"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Operators/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/SansSerif/Regular/Main.js new file mode 100644 index 0000000..f350e8d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/SansSerif/Regular/Main.js @@ -0,0 +1,375 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'GyrePagellaMathJax_SansSerif', + testString: '\u00A0\uD835\uDDA0\uD835\uDDA1\uD835\uDDA2\uD835\uDDA3\uD835\uDDA4\uD835\uDDA5\uD835\uDDA6\uD835\uDDA7\uD835\uDDA8\uD835\uDDA9\uD835\uDDAA\uD835\uDDAB\uD835\uDDAC\uD835\uDDAD', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x1D5A0: [671,0,617,8,609], + 0x1D5A1: [671,0,634,98,563], + 0x1D5A2: [683,13,639,56,585], + 0x1D5A3: [671,0,709,98,650], + 0x1D5A4: [671,0,584,98,521], + 0x1D5A5: [671,0,533,98,475], + 0x1D5A6: [683,13,710,56,629], + 0x1D5A7: [671,0,695,98,598], + 0x1D5A8: [671,0,284,98,187], + 0x1D5A9: [671,184,269,-52,172], + 0x1D5AA: [671,0,597,98,619], + 0x1D5AB: [671,0,512,98,507], + 0x1D5AC: [671,0,795,98,698], + 0x1D5AD: [671,0,693,98,595], + 0x1D5AE: [683,13,719,56,663], + 0x1D5AF: [671,0,556,98,522], + 0x1D5B0: [683,119,719,56,663], + 0x1D5B1: [671,0,637,98,609], + 0x1D5B2: [683,13,583,66,528], + 0x1D5B3: [671,0,548,-3,552], + 0x1D5B4: [671,13,675,87,589], + 0x1D5B5: [671,0,617,8,609], + 0x1D5B6: [671,0,896,33,864], + 0x1D5B7: [671,0,623,30,592], + 0x1D5B8: [671,0,548,-2,551], + 0x1D5B9: [671,0,625,45,580], + 0x1D5BA: [515,13,566,60,476], + 0x1D5BB: [699,13,585,91,531], + 0x1D5BC: [515,13,506,55,445], + 0x1D5BD: [699,13,585,55,495], + 0x1D5BE: [515,13,564,55,511], + 0x1D5BF: [699,0,317,23,336], + 0x1D5C0: [515,191,585,55,495], + 0x1D5C1: [699,0,587,91,503], + 0x1D5C2: [699,0,268,94,175], + 0x1D5C3: [699,191,257,-18,164], + 0x1D5C4: [699,0,530,91,527], + 0x1D5C5: [699,0,268,94,175], + 0x1D5C6: [515,0,894,91,809], + 0x1D5C7: [515,0,587,91,503], + 0x1D5C8: [515,13,561,55,507], + 0x1D5C9: [515,191,585,91,531], + 0x1D5CA: [515,191,585,55,495], + 0x1D5CB: [515,0,379,91,379], + 0x1D5CC: [515,13,478,54,430], + 0x1D5CD: [646,0,358,27,334], + 0x1D5CE: [503,13,587,85,497], + 0x1D5CF: [503,0,538,30,509], + 0x1D5D0: [503,0,744,42,703], + 0x1D5D1: [503,0,538,29,506], + 0x1D5D2: [503,191,538,30,509], + 0x1D5D3: [503,0,480,43,438], + 0x1D5D4: [671,0,697,5,693], + 0x1D5D5: [671,0,702,92,632], + 0x1D5D6: [683,13,671,50,608], + 0x1D5D7: [671,0,761,92,709], + 0x1D5D8: [671,0,631,92,558], + 0x1D5D9: [671,0,632,92,548], + 0x1D5DA: [683,13,750,50,677], + 0x1D5DB: [671,0,771,92,680], + 0x1D5DC: [671,0,353,92,261], + 0x1D5DD: [671,184,338,-56,246], + 0x1D5DE: [671,0,703,92,734], + 0x1D5DF: [671,0,585,92,558], + 0x1D5E0: [671,0,914,92,822], + 0x1D5E1: [671,0,771,92,680], + 0x1D5E2: [683,13,775,50,725], + 0x1D5E3: [671,0,672,92,632], + 0x1D5E4: [683,134,775,50,725], + 0x1D5E5: [671,0,704,92,684], + 0x1D5E6: [683,13,662,72,589], + 0x1D5E7: [671,0,615,5,610], + 0x1D5E8: [671,13,749,92,657], + 0x1D5E9: [671,0,697,5,693], + 0x1D5EA: [671,0,999,30,968], + 0x1D5EB: [671,0,697,19,678], + 0x1D5EC: [671,0,650,-10,660], + 0x1D5ED: [671,0,661,45,616], + 0x1D5EE: [515,13,619,43,541], + 0x1D5EF: [699,13,656,84,612], + 0x1D5F0: [515,13,544,43,478], + 0x1D5F1: [699,13,656,45,573], + 0x1D5F2: [515,13,619,43,571], + 0x1D5F3: [699,0,392,19,401], + 0x1D5F4: [514,199,656,45,573], + 0x1D5F5: [699,0,656,84,579], + 0x1D5F6: [699,0,324,84,241], + 0x1D5F7: [699,199,313,-33,230], + 0x1D5F8: [699,0,605,84,624], + 0x1D5F9: [699,0,324,84,241], + 0x1D5FA: [515,0,953,83,875], + 0x1D5FB: [515,0,656,84,579], + 0x1D5FC: [515,13,627,43,584], + 0x1D5FD: [515,191,656,84,612], + 0x1D5FE: [514,191,656,45,573], + 0x1D5FF: [515,0,452,84,449], + 0x1D600: [515,13,545,52,498], + 0x1D601: [646,0,434,13,411], + 0x1D602: [503,13,656,78,573], + 0x1D603: [503,0,589,15,575], + 0x1D604: [503,0,838,35,804], + 0x1D605: [503,0,583,15,568], + 0x1D606: [503,199,589,12,572], + 0x1D607: [503,0,533,45,485], + 0x1D608: [671,0,617,-53,548], + 0x1D609: [671,0,626,27,565], + 0x1D60A: [683,13,633,42,630], + 0x1D60B: [671,0,700,27,652], + 0x1D60C: [671,0,571,27,570], + 0x1D60D: [671,0,519,27,531], + 0x1D60E: [683,13,706,45,657], + 0x1D60F: [671,0,681,27,655], + 0x1D610: [671,0,270,27,244], + 0x1D611: [671,184,251,-164,223], + 0x1D612: [671,0,585,27,652], + 0x1D613: [671,0,510,27,450], + 0x1D614: [671,0,781,27,755], + 0x1D615: [671,0,679,27,652], + 0x1D616: [683,13,716,40,676], + 0x1D617: [671,0,546,27,544], + 0x1D618: [683,119,716,41,676], + 0x1D619: [671,0,637,27,543], + 0x1D61A: [683,13,574,6,543], + 0x1D61B: [671,0,547,43,613], + 0x1D61C: [671,13,665,58,647], + 0x1D61D: [671,0,618,78,676], + 0x1D61E: [671,0,896,96,928], + 0x1D61F: [671,0,610,-43,628], + 0x1D620: [671,0,549,63,615], + 0x1D621: [671,0,612,-22,630], + 0x1D622: [515,13,561,41,496], + 0x1D623: [699,13,579,36,532], + 0x1D624: [515,13,500,46,487], + 0x1D625: [699,13,575,46,580], + 0x1D626: [515,13,562,46,518], + 0x1D627: [699,0,311,68,437], + 0x1D628: [515,191,578,32,540], + 0x1D629: [699,0,580,35,513], + 0x1D62A: [699,0,253,35,249], + 0x1D62B: [699,191,238,-113,238], + 0x1D62C: [699,0,521,35,554], + 0x1D62D: [699,0,253,35,249], + 0x1D62E: [515,0,887,35,819], + 0x1D62F: [515,0,580,35,513], + 0x1D630: [515,13,559,46,514], + 0x1D631: [515,191,575,-3,530], + 0x1D632: [515,190,579,46,542], + 0x1D633: [515,0,368,35,420], + 0x1D634: [515,13,471,11,451], + 0x1D635: [646,0,356,64,387], + 0x1D636: [503,13,580,57,536], + 0x1D637: [503,0,538,72,551], + 0x1D638: [503,0,744,85,746], + 0x1D639: [503,0,528,-26,537], + 0x1D63A: [503,191,528,-25,540], + 0x1D63B: [503,0,469,-3,488], + 0x1D63C: [671,0,697,-65,615], + 0x1D63D: [671,0,694,21,631], + 0x1D63E: [683,13,664,36,655], + 0x1D63F: [671,0,753,21,709], + 0x1D640: [671,0,618,21,605], + 0x1D641: [671,0,618,21,605], + 0x1D642: [683,13,746,36,704], + 0x1D643: [671,0,756,21,736], + 0x1D644: [671,0,339,21,318], + 0x1D645: [671,184,320,-166,299], + 0x1D646: [671,0,692,21,755], + 0x1D647: [671,0,582,21,511], + 0x1D648: [671,0,900,21,879], + 0x1D649: [671,0,756,21,736], + 0x1D64A: [683,13,772,36,736], + 0x1D64B: [671,0,662,21,649], + 0x1D64C: [683,134,772,36,736], + 0x1D64D: [671,0,704,21,619], + 0x1D64E: [683,13,655,15,600], + 0x1D64F: [671,0,612,48,678], + 0x1D650: [671,13,740,68,719], + 0x1D651: [671,0,697,76,764], + 0x1D652: [671,0,999,107,1039], + 0x1D653: [671,0,684,-51,726], + 0x1D654: [671,0,649,63,734], + 0x1D655: [671,0,648,-26,663], + 0x1D656: [515,13,615,17,552], + 0x1D657: [699,13,650,31,612], + 0x1D658: [515,13,538,37,527], + 0x1D659: [699,13,646,36,655], + 0x1D65A: [515,13,618,36,580], + 0x1D65B: [699,0,386,50,491], + 0x1D65C: [514,199,649,20,616], + 0x1D65D: [699,0,649,31,592], + 0x1D65E: [699,0,310,31,322], + 0x1D65F: [699,199,294,-128,306], + 0x1D660: [699,0,596,31,647], + 0x1D661: [699,0,310,31,322], + 0x1D662: [515,0,946,31,889], + 0x1D663: [515,0,649,31,592], + 0x1D664: [515,13,625,36,589], + 0x1D665: [515,191,646,-10,608], + 0x1D666: [515,191,650,36,617], + 0x1D667: [515,0,442,31,494], + 0x1D668: [515,13,540,10,505], + 0x1D669: [646,0,431,43,462], + 0x1D66A: [503,13,649,60,619], + 0x1D66B: [503,0,589,63,616], + 0x1D66C: [503,0,839,87,843], + 0x1D66D: [503,0,574,-41,600], + 0x1D66E: [503,199,582,0,618], + 0x1D66F: [503,0,522,-9,526], + 0x1D756: [671,0,697,5,693], + 0x1D757: [671,0,702,92,632], + 0x1D758: [671,0,585,92,558], + 0x1D759: [671,0,697,5,693], + 0x1D75A: [671,0,631,92,558], + 0x1D75B: [671,0,661,45,616], + 0x1D75C: [671,0,771,92,680], + 0x1D75D: [683,13,775,50,725], + 0x1D75E: [671,0,353,92,261], + 0x1D75F: [671,0,703,92,734], + 0x1D760: [671,0,697,5,693], + 0x1D761: [671,0,914,92,822], + 0x1D762: [671,0,771,92,680], + 0x1D763: [671,0,586,98,503], + 0x1D764: [683,13,775,50,725], + 0x1D765: [671,0,771,92,680], + 0x1D766: [671,0,672,92,632], + 0x1D767: [683,13,775,50,725], + 0x1D768: [671,0,631,92,558], + 0x1D769: [671,0,615,5,610], + 0x1D76A: [671,0,650,-10,660], + 0x1D76B: [671,0,775,50,725], + 0x1D76C: [671,0,697,19,678], + 0x1D76D: [671,0,775,56,721], + 0x1D76E: [683,0,770,27,743], + 0x1D76F: [671,0,697,5,693], + 0x1D770: [514,11,627,48,585], + 0x1D771: [711,191,656,84,612], + 0x1D772: [503,191,616,15,602], + 0x1D773: [707,13,627,43,585], + 0x1D774: [515,13,512,54,449], + 0x1D775: [699,191,540,43,492], + 0x1D776: [515,191,656,84,579], + 0x1D777: [707,10,627,43,585], + 0x1D778: [503,17,362,78,321], + 0x1D779: [503,0,653,84,598], + 0x1D77A: [699,0,575,30,546], + 0x1D77B: [503,192,673,85,642], + 0x1D77C: [503,0,619,15,573], + 0x1D77D: [699,191,540,43,492], + 0x1D77E: [515,13,627,43,584], + 0x1D77F: [503,17,722,42,663], + 0x1D780: [517,191,656,84,612], + 0x1D781: [515,191,544,43,478], + 0x1D782: [503,13,710,43,659], + 0x1D783: [503,17,579,21,553], + 0x1D784: [503,9,620,78,574], + 0x1D785: [508,191,716,64,659], + 0x1D786: [503,191,585,25,560], + 0x1D787: [503,191,727,65,658], + 0x1D788: [503,12,791,43,748], + 0x1D789: [620,13,536,60,475], + 0x1D78A: [515,13,596,67,502], + 0x1D78B: [707,10,604,50,556], + 0x1D78C: [504,6,680,55,624], + 0x1D78D: [699,191,729,60,662], + 0x1D78E: [517,199,656,84,612], + 0x1D78F: [503,12,787,22,761], + 0x1D790: [671,0,697,-65,615], + 0x1D791: [671,0,694,21,631], + 0x1D792: [671,0,571,21,615], + 0x1D793: [671,0,697,-66,622], + 0x1D794: [671,0,618,21,605], + 0x1D795: [671,0,648,-26,663], + 0x1D796: [671,0,756,21,736], + 0x1D797: [683,13,773,40,733], + 0x1D798: [671,0,339,21,318], + 0x1D799: [671,0,692,21,755], + 0x1D79A: [671,0,697,-66,622], + 0x1D79B: [671,0,900,21,879], + 0x1D79C: [671,0,756,21,736], + 0x1D79D: [671,0,572,27,560], + 0x1D79E: [683,13,772,36,736], + 0x1D79F: [671,0,756,21,736], + 0x1D7A0: [671,0,662,21,649], + 0x1D7A1: [683,13,773,40,733], + 0x1D7A2: [671,0,618,21,605], + 0x1D7A3: [671,0,612,48,678], + 0x1D7A4: [671,0,649,63,734], + 0x1D7A5: [671,0,774,43,730], + 0x1D7A6: [671,0,684,-51,726], + 0x1D7A7: [671,0,770,78,787], + 0x1D7A8: [683,0,764,-45,726], + 0x1D7A9: [661,10,697,-2,686], + 0x1D7AA: [514,11,622,38,627], + 0x1D7AB: [711,191,648,-11,593], + 0x1D7AC: [503,191,614,66,673], + 0x1D7AD: [707,13,625,16,572], + 0x1D7AE: [515,13,507,27,471], + 0x1D7AF: [699,191,530,32,567], + 0x1D7B0: [515,191,649,50,610], + 0x1D7B1: [707,10,624,28,596], + 0x1D7B2: [503,17,362,42,286], + 0x1D7B3: [503,0,645,31,614], + 0x1D7B4: [699,0,575,-44,472], + 0x1D7B5: [503,192,665,-27,600], + 0x1D7B6: [503,0,622,68,594], + 0x1D7B7: [699,191,530,26,567], + 0x1D7B8: [515,13,625,36,589], + 0x1D7B9: [503,17,720,73,716], + 0x1D7BA: [517,191,646,9,630], + 0x1D7BB: [515,191,538,55,541], + 0x1D7BC: [503,13,704,37,707], + 0x1D7BD: [503,17,576,52,605], + 0x1D7BE: [503,9,616,54,586], + 0x1D7BF: [508,191,714,76,684], + 0x1D7C0: [503,191,571,-48,619], + 0x1D7C1: [503,191,721,79,725], + 0x1D7C2: [503,12,789,33,754], + 0x1D7C3: [620,13,494,29,466], + 0x1D7C4: [515,13,590,59,548], + 0x1D7C5: [707,10,600,31,571], + 0x1D7C6: [504,6,672,16,654], + 0x1D7C7: [699,191,728,52,668], + 0x1D7C8: [516,199,649,43,633], + 0x1D7C9: [503,12,783,33,811], + 0x1D7E2: [683,13,586,66,520], + 0x1D7E3: [671,0,593,110,501], + 0x1D7E4: [683,0,590,73,490], + 0x1D7E5: [683,13,588,76,508], + 0x1D7E6: [671,0,583,49,527], + 0x1D7E7: [671,13,589,77,502], + 0x1D7E8: [683,13,586,70,523], + 0x1D7E9: [671,0,589,82,504], + 0x1D7EA: [683,13,586,68,518], + 0x1D7EB: [683,13,586,63,516], + 0x1D7EC: [683,13,635,48,588], + 0x1D7ED: [671,0,644,113,576], + 0x1D7EE: [683,0,642,79,556], + 0x1D7EF: [683,13,640,67,561], + 0x1D7F0: [671,0,634,45,589], + 0x1D7F1: [671,13,640,77,571], + 0x1D7F2: [682,13,637,62,584], + 0x1D7F3: [671,0,640,67,561], + 0x1D7F4: [683,13,638,61,577], + 0x1D7F5: [682,13,637,52,574] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_SansSerif"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Script/Regular/Main.js new file mode 100644 index 0000000..49014bd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Script/Regular/Main.js @@ -0,0 +1,135 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Script'] = { + directory: 'Script/Regular', + family: 'GyrePagellaMathJax_Script', + testString: '\u00A0\u210A\u210B\u2110\u2112\u211B\u212C\u212F\u2130\u2131\u2133\u2134\uD835\uDC9C\uD835\uDC9E\uD835\uDC9F', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210A: [398,398,508,-62,562], + 0x210B: [798,18,790,55,844], + 0x2110: [787,8,577,75,647], + 0x2112: [755,8,789,52,842], + 0x211B: [764,8,905,55,958], + 0x212C: [764,8,887,47,940], + 0x212F: [398,8,406,21,459], + 0x2130: [757,8,569,55,623], + 0x2131: [802,8,754,55,835], + 0x2133: [783,73,940,47,1011], + 0x2134: [398,8,471,23,524], + 0x1D49C: [783,8,783,33,836], + 0x1D49E: [757,8,568,55,621], + 0x1D49F: [764,8,867,39,920], + 0x1D4A2: [757,406,637,51,690], + 0x1D4A5: [787,406,679,55,749], + 0x1D4A6: [788,8,881,62,935], + 0x1D4A9: [783,8,832,42,896], + 0x1D4AA: [757,8,788,53,841], + 0x1D4AB: [764,8,833,55,887], + 0x1D4AC: [757,244,788,56,841], + 0x1D4AE: [764,8,608,62,662], + 0x1D4AF: [897,8,555,43,971], + 0x1D4B0: [798,8,657,51,710], + 0x1D4B1: [816,8,606,52,659], + 0x1D4B2: [816,8,948,48,1001], + 0x1D4B3: [757,8,672,60,725], + 0x1D4B4: [798,406,649,51,702], + 0x1D4B5: [764,14,673,47,732], + 0x1D4B6: [398,8,567,23,620], + 0x1D4B7: [788,8,465,18,519], + 0x1D4B8: [398,8,406,21,459], + 0x1D4B9: [788,8,567,23,620], + 0x1D4BB: [788,390,247,-83,300], + 0x1D4BD: [788,8,524,-10,577], + 0x1D4BE: [632,8,244,30,298], + 0x1D4BF: [632,398,215,-309,268], + 0x1D4C0: [788,8,456,-10,510], + 0x1D4C1: [788,8,265,17,319], + 0x1D4C2: [398,8,753,12,806], + 0x1D4C3: [398,8,520,12,573], + 0x1D4C5: [398,398,485,-118,538], + 0x1D4C6: [398,397,486,23,540], + 0x1D4C7: [421,0,442,39,495], + 0x1D4C8: [421,8,413,-26,467], + 0x1D4C9: [655,8,286,23,339], + 0x1D4CA: [390,8,540,39,593], + 0x1D4CB: [420,8,491,39,545], + 0x1D4CC: [420,8,649,39,702], + 0x1D4CD: [398,8,488,25,541], + 0x1D4CE: [390,398,530,-39,584], + 0x1D4CF: [404,8,437,-13,490], + 0x1D4D0: [785,10,796,30,853], + 0x1D4D1: [767,10,913,44,970], + 0x1D4D2: [759,10,568,39,625], + 0x1D4D3: [767,10,880,36,937], + 0x1D4D4: [759,10,569,39,627], + 0x1D4D5: [807,10,761,52,850], + 0x1D4D6: [759,408,664,35,722], + 0x1D4D7: [801,22,803,39,861], + 0x1D4D8: [789,10,590,73,663], + 0x1D4D9: [789,408,692,39,764], + 0x1D4DA: [790,10,894,47,952], + 0x1D4DB: [758,10,789,36,846], + 0x1D4DC: [785,77,966,43,1040], + 0x1D4DD: [785,10,852,39,917], + 0x1D4DE: [759,10,801,51,858], + 0x1D4DF: [767,10,846,47,904], + 0x1D4E0: [759,250,801,53,858], + 0x1D4E1: [767,10,943,39,975], + 0x1D4E2: [767,10,615,60,672], + 0x1D4E3: [900,10,555,40,972], + 0x1D4E4: [801,10,696,48,753], + 0x1D4E5: [819,10,632,49,689], + 0x1D4E6: [819,10,987,49,1044], + 0x1D4E7: [759,10,685,57,742], + 0x1D4E8: [801,408,688,48,745], + 0x1D4E9: [767,17,673,43,736], + 0x1D4EA: [400,10,606,21,663], + 0x1D4EB: [790,10,491,16,549], + 0x1D4EC: [400,10,432,20,489], + 0x1D4ED: [790,10,606,21,663], + 0x1D4EE: [400,10,419,18,476], + 0x1D4EF: [790,393,274,-86,332], + 0x1D4F0: [400,400,534,-52,592], + 0x1D4F1: [790,10,563,-13,620], + 0x1D4F2: [649,10,270,34,328], + 0x1D4F3: [647,400,228,-312,285], + 0x1D4F4: [790,10,489,-3,546], + 0x1D4F5: [790,10,291,16,348], + 0x1D4F6: [400,10,805,10,862], + 0x1D4F7: [400,10,559,10,616], + 0x1D4F8: [400,10,497,21,554], + 0x1D4F9: [400,400,511,-134,568], + 0x1D4FA: [400,399,525,21,582], + 0x1D4FB: [424,3,481,38,540], + 0x1D4FC: [424,10,426,-29,484], + 0x1D4FD: [658,10,299,21,356], + 0x1D4FE: [393,10,579,35,636], + 0x1D4FF: [423,10,511,35,568], + 0x1D500: [423,10,688,35,745], + 0x1D501: [400,10,514,35,571], + 0x1D502: [393,400,558,-16,615], + 0x1D503: [408,10,437,-16,494] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Script"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Shapes/Regular/Main.js new file mode 100644 index 0000000..8063e1f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Shapes/Regular/Main.js @@ -0,0 +1,70 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'GyrePagellaMathJax_Shapes', + testString: '\u00A0\u2422\u2423\u2500\u2502\u251C\u2524\u252C\u2534\u253C\u2581\u2588\u2591\u2592\u2593', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2422: [726,12,553,-15,508], + 0x2423: [133,97,500,40,460], + 0x2500: [280,-220,600,0,600], + 0x2502: [650,150,600,270,330], + 0x251C: [650,150,600,270,600], + 0x2524: [650,150,600,0,330], + 0x252C: [280,150,600,0,600], + 0x2534: [650,-220,600,0,600], + 0x253C: [650,150,600,0,600], + 0x2581: [88,0,700,0,700], + 0x2588: [700,0,700,0,700], + 0x2591: [700,0,700,0,700], + 0x2592: [700,0,700,0,700], + 0x2593: [700,0,700,0,700], + 0x25AA: [410,-90,480,80,400], + 0x25AB: [410,-90,480,80,400], + 0x25AC: [400,-100,760,80,680], + 0x25AD: [400,-100,760,80,680], + 0x25B7: [643,143,841,80,761], + 0x25C1: [643,143,841,80,761], + 0x25CB: [568,68,796,80,716], + 0x25CF: [568,68,796,80,716], + 0x25E6: [450,-50,560,80,480], + 0x2664: [668,0,800,80,720], + 0x2665: [666,0,760,80,680], + 0x2666: [670,0,746,80,666], + 0x2667: [668,0,842,80,762], + 0x266A: [692,20,600,56,561], + 0x26AD: [475,-26,500,-116,616], + 0x26AE: [699,199,500,-170,670], + 0x2B04: [450,-50,1069,80,989], + 0x2B05: [450,-50,995,80,915], + 0x2B06: [673,162,560,80,480], + 0x2B07: [662,173,560,80,480], + 0x2B0C: [450,-50,1005,80,925], + 0x2B0D: [673,172,560,80,480], + 0x2B1A: [660,160,940,60,880], + 0x2B31: [740,240,920,80,840], + 0x2B33: [400,-100,1370,80,1290] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Shapes"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Shapes/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size1/Regular/Main.js new file mode 100644 index 0000000..8b6265a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size1/Regular/Main.js @@ -0,0 +1,207 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'GyrePagellaMathJax_Size1', + testString: '\u00A0\u0302\u0303\u0305\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u0332\u0333\u033F', + 0x20: [0,0,250,0,0], + 0x28: [744,244,456,124,374], + 0x29: [744,244,456,82,332], + 0x2F: [774,274,574,80,494], + 0x5B: [750,250,428,124,346], + 0x5C: [774,274,574,80,494], + 0x5D: [750,250,428,82,304], + 0x7B: [749,249,441,82,359], + 0x7C: [730,230,210,80,130], + 0x7D: [749,249,441,82,359], + 0xA0: [0,0,250,0,0], + 0x302: [712,-544,613,0,613], + 0x303: [700,-544,608,0,608], + 0x305: [646,-598,500,0,500], + 0x306: [708,-553,631,0,631], + 0x30C: [710,-542,613,0,613], + 0x311: [720,-564,631,0,631], + 0x32C: [-60,228,613,0,613], + 0x32D: [-70,238,613,0,613], + 0x32E: [-60,216,631,0,631], + 0x32F: [-78,234,631,0,631], + 0x330: [-78,234,608,0,608], + 0x332: [-60,108,500,0,500], + 0x333: [-60,216,500,0,500], + 0x33F: [754,-598,500,0,500], + 0x2016: [730,230,380,80,300], + 0x2044: [774,274,574,80,494], + 0x20D0: [784,-640,670,80,590], + 0x20D1: [784,-640,670,80,590], + 0x20D6: [784,-544,670,80,590], + 0x20D7: [784,-544,670,80,590], + 0x20E1: [784,-544,742,80,662], + 0x20E9: [772,-647,740,0,740], + 0x20EC: [-170,314,670,80,590], + 0x20ED: [-170,314,670,80,590], + 0x20EE: [-74,314,670,80,590], + 0x20EF: [-74,314,670,80,590], + 0x2140: [971,471,1326,80,1246], + 0x2190: [400,-100,1370,80,1290], + 0x2191: [860,350,460,80,380], + 0x2192: [400,-100,1370,80,1290], + 0x2193: [850,360,460,80,380], + 0x2194: [400,-100,1455,80,1375], + 0x2195: [898,397,460,80,380], + 0x2196: [681,195,1037,80,957], + 0x2197: [681,195,1037,80,957], + 0x2198: [695,181,1037,80,957], + 0x2199: [695,181,1037,80,957], + 0x219A: [400,-100,1370,80,1290], + 0x219B: [400,-100,1370,80,1290], + 0x219E: [400,-100,1445,80,1365], + 0x219F: [898,387,460,80,380], + 0x21A0: [400,-100,1445,80,1365], + 0x21A1: [887,398,460,80,380], + 0x21A2: [400,-100,1455,80,1375], + 0x21A3: [400,-100,1455,80,1375], + 0x21A4: [400,-100,1370,80,1290], + 0x21A5: [860,350,460,80,380], + 0x21A6: [400,-100,1370,80,1290], + 0x21A7: [850,360,460,80,380], + 0x21A9: [490,-100,1400,80,1320], + 0x21AA: [490,-100,1400,80,1320], + 0x21AB: [490,-40,1400,80,1320], + 0x21AC: [490,-40,1400,80,1320], + 0x21AD: [400,-100,1455,80,1375], + 0x21AE: [400,-100,1455,80,1375], + 0x21B0: [708,207,710,80,630], + 0x21B1: [708,207,710,80,630], + 0x21B2: [707,208,710,80,630], + 0x21B3: [707,208,710,80,630], + 0x21B6: [640,-240,1183,80,1103], + 0x21B7: [640,-240,1183,80,1103], + 0x21BC: [400,-220,1370,80,1290], + 0x21BD: [280,-100,1370,80,1290], + 0x21BE: [860,350,340,80,260], + 0x21BF: [860,350,340,80,260], + 0x21C0: [400,-220,1370,80,1290], + 0x21C1: [280,-100,1370,80,1290], + 0x21C2: [850,360,340,80,260], + 0x21C3: [850,360,340,80,260], + 0x21C4: [570,70,1380,80,1300], + 0x21C5: [860,360,800,80,720], + 0x21C6: [570,70,1380,80,1300], + 0x21C7: [570,70,1370,80,1290], + 0x21C8: [860,350,800,80,720], + 0x21C9: [570,70,1370,80,1290], + 0x21CA: [850,360,800,80,720], + 0x21CB: [510,10,1379,80,1299], + 0x21CC: [510,10,1379,80,1299], + 0x21CD: [550,50,1370,80,1290], + 0x21CE: [550,50,1455,80,1375], + 0x21CF: [550,50,1370,80,1290], + 0x21D0: [450,-50,1370,80,1290], + 0x21D1: [860,350,560,80,480], + 0x21D2: [450,-50,1370,80,1290], + 0x21D3: [850,360,560,80,480], + 0x21D4: [450,-50,1455,80,1375], + 0x21D5: [898,397,560,80,480], + 0x21D6: [681,259,1100,80,1020], + 0x21D7: [681,259,1100,80,1020], + 0x21D8: [759,181,1100,80,1020], + 0x21D9: [759,181,1100,80,1020], + 0x21DA: [525,25,1370,80,1290], + 0x21DB: [525,25,1370,80,1290], + 0x21DC: [400,-100,1370,80,1290], + 0x21DD: [400,-100,1370,80,1290], + 0x21E6: [450,-50,1497,80,1417], + 0x21E7: [930,407,560,80,480], + 0x21E8: [450,-50,1497,80,1417], + 0x21E9: [907,430,560,80,480], + 0x21F3: [930,430,560,80,480], + 0x21F5: [860,360,800,80,720], + 0x21F6: [740,240,1370,80,1290], + 0x220F: [971,471,1314,80,1234], + 0x2210: [971,471,1314,80,1234], + 0x2211: [971,471,1246,80,1166], + 0x221A: [840,310,703,120,733], + 0x2223: [730,230,210,80,130], + 0x2225: [730,230,380,80,300], + 0x222B: [1263,763,715,80,635], + 0x222C: [1263,763,1087,80,1007], + 0x222D: [1263,763,1459,80,1379], + 0x222E: [1263,763,772,80,692], + 0x222F: [1263,763,1144,80,1064], + 0x2230: [1263,763,1516,80,1436], + 0x2231: [1263,763,811,80,771], + 0x2232: [1263,763,820,80,780], + 0x2233: [1263,763,773,80,733], + 0x22A2: [650,150,1360,80,1280], + 0x22A3: [650,150,1360,80,1280], + 0x22A4: [650,150,860,80,780], + 0x22A5: [650,150,860,80,780], + 0x22C0: [969,442,1000,80,920], + 0x22C1: [942,469,1000,80,920], + 0x22C2: [960,442,1000,80,920], + 0x22C3: [942,460,1000,80,920], + 0x2308: [750,230,428,124,346], + 0x2309: [750,230,428,82,304], + 0x230A: [730,250,428,124,346], + 0x230B: [730,250,428,82,304], + 0x2329: [781,281,419,82,337], + 0x232A: [781,281,419,82,337], + 0x23B4: [772,-647,740,0,740], + 0x23B5: [-177,302,740,0,740], + 0x23DC: [762,-603,1028,0,1028], + 0x23DD: [-133,292,1028,0,1028], + 0x23DE: [797,-590,1038,0,1038], + 0x23DF: [-120,327,1038,0,1038], + 0x23E0: [729,-529,1064,0,1064], + 0x23E1: [-59,259,1064,0,1064], + 0x27A1: [450,-50,1445,80,1365], + 0x27E6: [750,250,444,124,362], + 0x27E7: [750,250,444,82,320], + 0x27E8: [781,281,419,82,337], + 0x27E9: [781,281,419,82,337], + 0x27EA: [781,281,654,82,572], + 0x27EB: [781,281,654,82,572], + 0x27EE: [744,244,350,124,268], + 0x27EF: [744,244,350,82,226], + 0x2906: [450,-50,1445,80,1365], + 0x2907: [450,-50,1445,80,1365], + 0x2A00: [844,344,1348,80,1268], + 0x2A01: [844,344,1348,80,1268], + 0x2A02: [844,344,1348,80,1268], + 0x2A03: [942,460,1000,80,920], + 0x2A04: [942,460,1000,80,920], + 0x2A05: [960,424,1000,80,920], + 0x2A06: [924,460,1000,80,920], + 0x2A09: [737,237,1134,80,1054], + 0x2A0C: [1263,763,1831,80,1751], + 0x2A11: [1263,763,811,80,771], + 0x2B04: [450,-50,1519,80,1439], + 0x2B05: [450,-50,1445,80,1365], + 0x2B06: [898,387,560,80,480], + 0x2B07: [887,398,560,80,480], + 0x2B0C: [450,-50,1455,80,1375], + 0x2B0D: [898,397,560,80,480], + 0x2B31: [740,240,1370,80,1290] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Size1"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size1/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size2/Regular/Main.js new file mode 100644 index 0000000..76d3510 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size2/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'GyrePagellaMathJax_Size2', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [840,340,491,127,406], + 0x29: [840,340,491,85,364], + 0x2F: [936,436,689,80,609], + 0x5B: [846,346,443,127,358], + 0x5C: [936,436,689,80,609], + 0x5D: [846,346,443,85,316], + 0x7B: [845,345,465,85,380], + 0x7C: [826,326,213,80,133], + 0x7D: [845,345,465,85,380], + 0xA0: [0,0,250,0,0], + 0x302: [712,-543,731,0,731], + 0x303: [700,-544,727,0,727], + 0x306: [708,-552,752,0,752], + 0x30C: [711,-542,731,0,731], + 0x311: [721,-564,752,0,752], + 0x32C: [-60,229,731,0,731], + 0x32D: [-70,239,731,0,731], + 0x32E: [-60,217,752,0,752], + 0x32F: [-78,235,752,0,752], + 0x330: [-78,234,727,0,727], + 0x2016: [826,326,386,80,306], + 0x2044: [936,436,689,80,609], + 0x20E9: [773,-647,1113,0,1113], + 0x221A: [1020,490,717,120,747], + 0x2223: [826,326,213,80,133], + 0x2225: [826,326,386,80,306], + 0x2308: [846,326,443,127,358], + 0x2309: [846,326,443,85,316], + 0x230A: [826,346,443,127,358], + 0x230B: [826,346,443,85,316], + 0x2329: [943,443,452,85,367], + 0x232A: [943,443,452,85,367], + 0x23B4: [773,-647,1113,0,1113], + 0x23B5: [-177,303,1113,0,1113], + 0x23DC: [779,-570,1528,0,1528], + 0x23DD: [-100,309,1528,0,1528], + 0x23DE: [798,-589,1538,0,1538], + 0x23DF: [-119,328,1538,0,1538], + 0x23E0: [730,-528,1566,0,1566], + 0x23E1: [-58,260,1566,0,1566], + 0x27E6: [846,346,458,127,373], + 0x27E7: [846,346,458,85,331], + 0x27E8: [943,443,452,85,367], + 0x27E9: [943,443,452,85,367], + 0x27EA: [943,443,701,85,616], + 0x27EB: [943,443,701,85,616], + 0x27EE: [840,340,365,127,280], + 0x27EF: [840,340,365,85,238] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Size2"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size2/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size3/Regular/Main.js new file mode 100644 index 0000000..3a513b0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size3/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'GyrePagellaMathJax_Size3', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [955,455,531,131,444], + 0x29: [955,455,531,87,400], + 0x2F: [1149,649,838,80,758], + 0x5B: [961,461,461,131,374], + 0x5C: [1149,649,838,80,758], + 0x5D: [961,461,461,87,330], + 0x7B: [960,460,493,87,406], + 0x7C: [941,441,216,80,136], + 0x7D: [960,460,493,87,406], + 0xA0: [0,0,250,0,0], + 0x302: [712,-542,874,0,874], + 0x303: [700,-544,870,0,870], + 0x306: [709,-551,897,0,897], + 0x30C: [712,-542,874,0,874], + 0x311: [721,-563,897,0,897], + 0x32C: [-60,230,874,0,874], + 0x32D: [-70,240,874,0,874], + 0x32E: [-60,218,897,0,897], + 0x32F: [-78,236,897,0,897], + 0x330: [-78,233,870,0,870], + 0x2016: [941,441,392,80,312], + 0x2044: [1149,649,838,80,758], + 0x20E9: [777,-649,1484,0,1484], + 0x221A: [1200,670,730,120,760], + 0x2223: [941,441,216,80,136], + 0x2225: [941,441,392,80,312], + 0x2308: [961,441,461,131,374], + 0x2309: [961,441,461,87,330], + 0x230A: [941,461,461,131,374], + 0x230B: [941,461,461,87,330], + 0x2329: [1155,655,487,87,400], + 0x232A: [1155,655,487,87,400], + 0x23B4: [777,-649,1484,0,1484], + 0x23B5: [-179,306,1484,0,1484], + 0x23DC: [784,-571,2028,0,2028], + 0x23DD: [-101,314,2028,0,2028], + 0x23DE: [802,-589,2038,0,2038], + 0x23DF: [-119,332,2038,0,2038], + 0x23E0: [734,-528,2070,0,2070], + 0x23E1: [-58,264,2070,0,2070], + 0x27E6: [961,461,472,131,385], + 0x27E7: [961,461,472,87,341], + 0x27E8: [1155,655,487,87,400], + 0x27E9: [1155,655,487,87,400], + 0x27EA: [1155,655,753,87,666], + 0x27EB: [1155,655,753,87,666], + 0x27EE: [955,455,381,131,294], + 0x27EF: [955,455,381,87,250] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Size3"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size3/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size4/Regular/Main.js new file mode 100644 index 0000000..da3d63a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size4/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'GyrePagellaMathJax_Size4', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [1093,593,573,135,483], + 0x29: [1093,593,573,90,438], + 0x2F: [1428,928,1032,80,952], + 0x5B: [1099,599,479,135,389], + 0x5C: [1428,928,1032,80,952], + 0x5D: [1099,599,479,90,344], + 0x7B: [1098,598,521,90,431], + 0x7C: [1079,579,218,80,138], + 0x7D: [1098,598,521,90,431], + 0xA0: [0,0,250,0,0], + 0x302: [713,-542,1045,0,1045], + 0x303: [702,-542,1042,0,1042], + 0x306: [709,-550,1070,0,1070], + 0x30C: [712,-541,1045,0,1045], + 0x311: [722,-563,1070,0,1070], + 0x32C: [-60,231,1045,0,1045], + 0x32D: [-70,241,1045,0,1045], + 0x32E: [-60,219,1070,0,1070], + 0x32F: [-78,237,1070,0,1070], + 0x330: [-78,238,1042,0,1042], + 0x2016: [1079,579,396,80,316], + 0x2044: [1428,928,1032,80,952], + 0x20E9: [779,-651,1855,0,1855], + 0x221A: [1380,850,743,120,773], + 0x2223: [1079,579,218,80,138], + 0x2225: [1079,579,396,80,316], + 0x2308: [1099,579,479,135,389], + 0x2309: [1099,579,479,90,344], + 0x230A: [1079,599,479,135,389], + 0x230B: [1079,599,479,90,344], + 0x2329: [1433,933,528,90,438], + 0x232A: [1433,933,528,90,438], + 0x23B4: [779,-651,1855,0,1855], + 0x23B5: [-181,309,1855,0,1855], + 0x23DC: [788,-570,2528,0,2528], + 0x23DD: [-100,318,2528,0,2528], + 0x23DE: [805,-588,2538,0,2538], + 0x23DF: [-118,335,2538,0,2538], + 0x23E0: [736,-526,2572,0,2572], + 0x23E1: [-56,266,2572,0,2572], + 0x27E6: [1099,599,487,135,397], + 0x27E7: [1099,599,487,90,352], + 0x27E8: [1433,933,528,90,438], + 0x27E9: [1433,933,528,90,438], + 0x27EA: [1433,933,812,90,722], + 0x27EB: [1433,933,812,90,722], + 0x27EE: [1093,593,399,135,309], + 0x27EF: [1093,593,399,90,264] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Size4"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size4/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size5/Regular/Main.js new file mode 100644 index 0000000..ded646c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size5/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'GyrePagellaMathJax_Size5', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [1259,759,624,139,531], + 0x29: [1259,759,624,93,485], + 0x2F: [1793,1293,1288,80,1208], + 0x5B: [1265,765,500,139,407], + 0x5C: [1793,1293,1288,80,1208], + 0x5D: [1265,765,500,93,361], + 0x7B: [1264,764,555,93,462], + 0x7C: [1245,745,221,80,141], + 0x7D: [1264,764,555,93,462], + 0xA0: [0,0,250,0,0], + 0x302: [714,-541,1251,0,1251], + 0x303: [707,-537,1247,0,1247], + 0x306: [709,-549,1279,0,1279], + 0x30C: [713,-540,1251,0,1251], + 0x311: [723,-563,1279,0,1279], + 0x32C: [-60,233,1251,0,1251], + 0x32D: [-70,243,1251,0,1251], + 0x32E: [-60,220,1279,0,1279], + 0x32F: [-78,238,1279,0,1279], + 0x330: [-78,249,1247,0,1247], + 0x2016: [1245,745,402,80,322], + 0x2044: [1793,1293,1288,80,1208], + 0x20E9: [782,-652,2226,0,2226], + 0x221A: [1560,1030,757,120,787], + 0x2223: [1245,745,221,80,141], + 0x2225: [1245,745,402,80,322], + 0x2308: [1265,745,500,139,407], + 0x2309: [1265,745,500,93,361], + 0x230A: [1245,765,500,139,407], + 0x230B: [1245,765,500,93,361], + 0x2329: [1797,1298,571,93,478], + 0x232A: [1797,1298,571,93,478], + 0x23B4: [782,-652,2226,0,2226], + 0x23B5: [-182,312,2226,0,2226], + 0x23DC: [792,-570,3028,0,3028], + 0x23DD: [-100,322,3028,0,3028], + 0x23DE: [808,-587,3038,0,3038], + 0x23DF: [-117,338,3038,0,3038], + 0x23E0: [739,-525,3076,0,3076], + 0x23E1: [-55,269,3076,0,3076], + 0x27E6: [1265,765,504,139,411], + 0x27E7: [1265,765,504,93,365], + 0x27E8: [1797,1298,571,93,478], + 0x27E9: [1797,1298,571,93,478], + 0x27EA: [1797,1298,872,93,779], + 0x27EB: [1797,1298,872,93,779], + 0x27EE: [1259,759,418,139,325], + 0x27EF: [1259,759,418,93,279] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Size5"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size5/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size6/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size6/Regular/Main.js new file mode 100644 index 0000000..b11f504 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size6/Regular/Main.js @@ -0,0 +1,398 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Size6/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Size6'] = { + directory: 'Size6/Regular', + family: 'GyrePagellaMathJax_Size6', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [1458,958,679,143,583], + 0x29: [1458,958,679,96,536], + 0x2F: [2272,1772,1620,80,1540], + 0x5B: [1464,964,521,143,425], + 0x5C: [2272,1772,1620,80,1540], + 0x5D: [1464,964,521,96,378], + 0x7B: [1463,963,589,96,493], + 0x7C: [1444,944,224,80,144], + 0x7D: [1463,963,589,96,493], + 0xA0: [0,0,250,0,0], + 0x302: [714,-540,1498,0,1498], + 0x303: [710,-534,1496,0,1496], + 0x306: [709,-549,1528,0,1528], + 0x30C: [714,-540,1498,0,1498], + 0x311: [724,-563,1528,0,1528], + 0x32C: [-60,234,1498,0,1498], + 0x32D: [-70,244,1498,0,1498], + 0x32E: [-60,221,1528,0,1528], + 0x32F: [-78,239,1528,0,1528], + 0x330: [-78,255,1496,0,1496], + 0x2016: [1444,944,408,80,328], + 0x2044: [2272,1772,1620,80,1540], + 0x20E9: [788,-656,2593,0,2593], + 0x221A: [1740,1210,770,120,800], + 0x2223: [1444,944,224,80,144], + 0x2225: [1444,944,408,80,328], + 0x2308: [1464,944,521,143,425], + 0x2309: [1464,944,521,96,378], + 0x230A: [1444,964,521,143,425], + 0x230B: [1444,964,521,96,378], + 0x2329: [2275,1775,620,96,524], + 0x232A: [2275,1775,620,96,524], + 0x23B4: [788,-656,2593,0,2593], + 0x23B5: [-186,318,2593,0,2593], + 0x23DC: [801,-569,3528,0,3528], + 0x23DD: [-99,331,3528,0,3528], + 0x23DE: [815,-586,3538,0,3538], + 0x23DF: [-116,345,3538,0,3538], + 0x23E0: [744,-522,3580,0,3580], + 0x23E1: [-52,274,3580,0,3580], + 0x27E6: [1464,964,521,143,425], + 0x27E7: [1464,964,521,96,378], + 0x27E8: [2275,1775,620,96,524], + 0x27E9: [2275,1775,620,96,524], + 0x27EA: [2275,1775,941,96,845], + 0x27EB: [2275,1775,941,96,845], + 0x27EE: [1458,958,439,143,343], + 0x27EF: [1458,958,439,96,296], + 0xE000: [390,-110,200,0,200], + 0xE001: [390,-110,200,0,200], + 0xE002: [390,-110,200,0,200], + 0xE003: [596,0,589,252,332], + 0xE004: [796,0,224,80,144], + 0xE005: [796,0,224,80,144], + 0xE006: [796,0,224,80,144], + 0xE007: [596,0,589,257,337], + 0xE008: [784,-640,191,0,191], + 0xE009: [688,-640,127,0,127], + 0xE00A: [688,-640,192,0,192], + 0xE00B: [688,-640,191,0,191], + 0xE00C: [688,-640,127,0,127], + 0xE00D: [784,-640,192,0,192], + 0xE00E: [784,-544,191,0,191], + 0xE00F: [688,-640,128,0,128], + 0xE010: [688,-640,191,0,191], + 0xE011: [688,-640,191,0,191], + 0xE012: [688,-640,128,0,128], + 0xE013: [784,-544,191,0,191], + 0xE014: [784,-544,218,0,218], + 0xE015: [688,-640,146,0,146], + 0xE016: [784,-544,218,0,218], + 0xE017: [-170,218,191,0,191], + 0xE018: [-170,218,127,0,127], + 0xE019: [-170,314,192,0,192], + 0xE01A: [-170,314,191,0,191], + 0xE01B: [-170,218,127,0,127], + 0xE01C: [-170,218,192,0,192], + 0xE01D: [-74,314,191,0,191], + 0xE01E: [-170,218,128,0,128], + 0xE01F: [-170,218,191,0,191], + 0xE020: [-170,218,191,0,191], + 0xE021: [-170,218,128,0,128], + 0xE022: [-74,314,191,0,191], + 0xE023: [400,-100,454,0,454], + 0xE024: [280,-220,302,0,302], + 0xE025: [280,-220,454,0,454], + 0xE026: [280,-220,454,0,454], + 0xE027: [280,-220,302,0,302], + 0xE028: [400,-100,454,0,454], + 0xE029: [454,0,460,200,260], + 0xE02A: [302,0,460,200,260], + 0xE02B: [454,0,460,80,380], + 0xE02C: [454,0,460,80,380], + 0xE02D: [302,0,460,200,260], + 0xE02E: [454,0,460,200,260], + 0xE02F: [400,-100,346,0,346], + 0xE030: [280,-220,86,0,86], + 0xE031: [400,-100,346,0,346], + 0xE032: [280,-220,346,0,346], + 0xE033: [280,-220,346,0,346], + 0xE034: [280,-220,86,0,86], + 0xE035: [400,-100,346,0,346], + 0xE036: [400,-100,346,0,346], + 0xE037: [400,-100,486,0,486], + 0xE038: [280,-220,323,0,323], + 0xE039: [400,-100,486,0,486], + 0xE03A: [485,0,460,80,380], + 0xE03B: [324,0,460,200,260], + 0xE03C: [486,0,460,80,380], + 0xE03D: [400,-100,370,0,370], + 0xE03E: [280,-220,93,0,93], + 0xE03F: [400,-100,369,0,369], + 0xE040: [400,-100,370,0,370], + 0xE041: [400,-100,482,0,482], + 0xE042: [280,-220,321,0,321], + 0xE043: [280,-220,482,0,482], + 0xE044: [280,-220,482,0,482], + 0xE045: [280,-220,321,0,321], + 0xE046: [400,-100,482,0,482], + 0xE047: [481,0,460,200,260], + 0xE048: [322,0,460,200,260], + 0xE049: [482,0,460,80,380], + 0xE04A: [482,0,460,80,380], + 0xE04B: [322,0,460,200,260], + 0xE04C: [481,0,460,200,260], + 0xE04D: [400,-100,486,0,486], + 0xE04E: [280,-220,323,0,323], + 0xE04F: [400,-100,486,0,486], + 0xE050: [400,-100,486,0,486], + 0xE051: [280,-220,323,0,323], + 0xE052: [400,-100,486,0,486], + 0xE053: [400,-100,454,0,454], + 0xE054: [280,-220,302,0,302], + 0xE055: [400,-100,454,0,454], + 0xE056: [400,-100,454,0,454], + 0xE057: [280,-220,302,0,302], + 0xE058: [400,-100,454,0,454], + 0xE059: [454,0,460,80,380], + 0xE05A: [302,0,460,200,260], + 0xE05B: [454,0,460,80,380], + 0xE05C: [454,0,460,80,380], + 0xE05D: [302,0,460,200,260], + 0xE05E: [454,0,460,80,380], + 0xE05F: [490,-220,465,0,465], + 0xE060: [280,-220,310,0,310], + 0xE061: [400,-100,465,0,465], + 0xE062: [400,-100,465,0,465], + 0xE063: [280,-220,310,0,310], + 0xE064: [490,-220,465,0,465], + 0xE065: [490,-40,465,0,465], + 0xE066: [280,-220,310,0,310], + 0xE067: [400,-100,465,0,465], + 0xE068: [400,-100,465,0,465], + 0xE069: [280,-220,310,0,310], + 0xE06A: [490,-40,465,0,465], + 0xE06B: [400,-220,454,0,454], + 0xE06C: [280,-220,302,0,302], + 0xE06D: [280,-220,454,0,454], + 0xE06E: [280,-220,454,0,454], + 0xE06F: [280,-220,302,0,302], + 0xE070: [400,-220,454,0,454], + 0xE071: [280,-100,454,0,454], + 0xE072: [280,-220,302,0,302], + 0xE073: [280,-220,454,0,454], + 0xE074: [280,-220,454,0,454], + 0xE075: [280,-220,302,0,302], + 0xE076: [280,-100,454,0,454], + 0xE077: [454,0,340,80,140], + 0xE078: [302,0,340,80,140], + 0xE079: [454,0,340,80,260], + 0xE07A: [454,0,340,80,260], + 0xE07B: [302,0,340,80,140], + 0xE07C: [454,0,340,80,140], + 0xE07D: [454,0,340,200,260], + 0xE07E: [302,0,340,200,260], + 0xE07F: [454,0,340,80,260], + 0xE080: [454,0,340,80,260], + 0xE081: [302,0,340,200,260], + 0xE082: [454,0,340,200,260], + 0xE083: [450,70,458,0,458], + 0xE084: [450,-50,305,0,305], + 0xE085: [570,-50,457,0,457], + 0xE086: [570,-50,457,0,457], + 0xE087: [450,-50,305,0,305], + 0xE088: [450,70,458,0,458], + 0xE089: [458,0,800,200,720], + 0xE08A: [305,0,800,200,600], + 0xE08B: [457,0,800,80,600], + 0xE08C: [457,0,800,80,600], + 0xE08D: [305,0,800,200,600], + 0xE08E: [458,0,800,200,720], + 0xE08F: [570,70,454,0,454], + 0xE090: [450,-50,302,0,302], + 0xE091: [450,-50,454,0,454], + 0xE092: [450,-50,454,0,454], + 0xE093: [450,-50,302,0,302], + 0xE094: [570,70,454,0,454], + 0xE095: [454,0,800,200,600], + 0xE096: [302,0,800,200,600], + 0xE097: [454,0,800,80,720], + 0xE098: [454,0,800,80,720], + 0xE099: [302,0,800,200,600], + 0xE09A: [454,0,800,200,600], + 0xE09B: [620,120,454,0,454], + 0xE09C: [620,120,302,0,302], + 0xE09D: [740,240,454,0,454], + 0xE09E: [740,240,454,0,454], + 0xE09F: [620,120,302,0,302], + 0xE0A0: [620,120,454,0,454], + 0xE0A1: [510,-110,457,0,457], + 0xE0A2: [390,-110,305,0,305], + 0xE0A3: [390,10,457,0,457], + 0xE0A4: [390,10,457,0,457], + 0xE0A5: [390,-110,305,0,305], + 0xE0A6: [510,-110,457,0,457], + 0xE0A7: [450,-50,454,0,454], + 0xE0A8: [370,-130,302,0,302], + 0xE0A9: [370,-130,454,0,454], + 0xE0AA: [370,-130,454,0,454], + 0xE0AB: [370,-130,302,0,302], + 0xE0AC: [450,-50,454,0,454], + 0xE0AD: [454,0,560,160,400], + 0xE0AE: [302,0,560,160,400], + 0xE0AF: [454,0,560,80,480], + 0xE0B0: [454,0,560,80,480], + 0xE0B1: [302,0,560,160,400], + 0xE0B2: [454,0,560,160,400], + 0xE0B3: [450,-50,486,0,486], + 0xE0B4: [370,-130,323,0,323], + 0xE0B5: [450,-50,486,0,486], + 0xE0B6: [485,0,560,80,480], + 0xE0B7: [324,0,560,160,400], + 0xE0B8: [486,0,560,80,480], + 0xE0B9: [450,-50,346,0,346], + 0xE0BA: [370,-130,86,0,86], + 0xE0BB: [550,50,346,0,346], + 0xE0BC: [370,-130,346,0,346], + 0xE0BD: [370,-130,346,0,346], + 0xE0BE: [370,-130,86,0,86], + 0xE0BF: [550,50,346,0,346], + 0xE0C0: [450,-50,346,0,346], + 0xE0C1: [450,-50,370,0,370], + 0xE0C2: [370,-130,93,0,93], + 0xE0C3: [550,50,369,0,369], + 0xE0C4: [450,-50,370,0,370], + 0xE0C5: [450,-50,482,0,482], + 0xE0C6: [370,-130,321,0,321], + 0xE0C7: [450,-50,482,0,482], + 0xE0C8: [450,-50,482,0,482], + 0xE0C9: [370,-130,321,0,321], + 0xE0CA: [450,-50,482,0,482], + 0xE0CB: [525,25,454,0,454], + 0xE0CC: [460,-40,302,0,302], + 0xE0CD: [460,-40,454,0,454], + 0xE0CE: [460,-40,454,0,454], + 0xE0CF: [460,-40,302,0,302], + 0xE0D0: [525,25,454,0,454], + 0xE0D1: [450,-50,501,0,501], + 0xE0D2: [360,-140,335,0,335], + 0xE0D3: [360,-140,501,0,501], + 0xE0D4: [360,-140,501,0,501], + 0xE0D5: [360,-140,335,0,335], + 0xE0D6: [450,-50,501,0,501], + 0xE0D7: [501,0,560,170,390], + 0xE0D8: [334,0,560,170,390], + 0xE0D9: [502,0,560,80,480], + 0xE0DA: [502,0,560,80,480], + 0xE0DB: [334,0,560,170,390], + 0xE0DC: [501,0,560,170,390], + 0xE0DD: [510,0,560,80,480], + 0xE0DE: [340,0,560,170,390], + 0xE0DF: [510,0,560,80,480], + 0xE0E0: [450,-50,510,0,510], + 0xE0E1: [360,-140,339,0,339], + 0xE0E2: [450,-50,510,0,510], + 0xE0E3: [450,-50,482,0,482], + 0xE0E4: [340,-160,321,0,321], + 0xE0E5: [340,-160,482,0,482], + 0xE0E6: [340,-160,482,0,482], + 0xE0E7: [340,-160,321,0,321], + 0xE0E8: [450,-50,482,0,482], + 0xE0E9: [481,0,560,190,370], + 0xE0EA: [322,0,560,190,370], + 0xE0EB: [482,0,560,80,480], + 0xE0EC: [482,0,560,80,480], + 0xE0ED: [322,0,560,190,370], + 0xE0EE: [481,0,560,190,370], + 0xE0EF: [450,-50,486,0,486], + 0xE0F0: [340,-160,323,0,323], + 0xE0F1: [450,-50,486,0,486], + 0xE0F2: [485,0,560,80,480], + 0xE0F3: [324,0,560,190,370], + 0xE0F4: [486,0,560,80,480], + 0xE0F5: [-60,108,167,0,167], + 0xE0F6: [-60,108,166,0,166], + 0xE0F7: [-60,108,167,0,167], + 0xE0F8: [-60,216,167,0,167], + 0xE0F9: [-60,216,166,0,166], + 0xE0FA: [-60,216,167,0,167], + 0xE0FB: [646,-598,167,0,167], + 0xE0FC: [646,-598,166,0,166], + 0xE0FD: [646,-598,167,0,167], + 0xE0FE: [754,-598,167,0,167], + 0xE0FF: [754,-598,166,0,166], + 0xE100: [754,-598,167,0,167], + 0xE101: [1208,0,439,143,343], + 0xE102: [794,0,439,143,223], + 0xE103: [1208,0,439,143,343], + 0xE104: [1208,0,439,96,296], + 0xE105: [794,0,439,216,296], + 0xE106: [1208,0,439,96,296], + 0xE107: [809,0,521,143,425], + 0xE108: [810,0,521,143,324], + 0xE109: [809,0,521,143,425], + 0xE10A: [809,0,521,96,378], + 0xE10B: [810,0,521,197,378], + 0xE10C: [809,0,521,96,378], + 0xE10D: [740,-586,884,0,884], + 0xE10E: [740,-668,874,0,874], + 0xE10F: [815,-668,1769,0,1769], + 0xE110: [740,-586,885,0,885], + 0xE111: [-116,270,884,0,884], + 0xE112: [-198,270,874,0,874], + 0xE113: [-198,345,1769,0,1769], + 0xE114: [-116,270,885,0,885], + 0xE115: [801,-569,1764,0,1764], + 0xE116: [801,-729,874,0,874], + 0xE117: [801,-569,1764,0,1764], + 0xE118: [-99,331,1764,0,1764], + 0xE119: [-259,331,874,0,874], + 0xE11A: [-99,331,1764,0,1764], + 0xE11B: [788,-657,1297,0,1297], + 0xE11C: [787,-715,865,0,865], + 0xE11D: [788,-656,1296,0,1296], + 0xE11E: [-186,317,1297,0,1297], + 0xE11F: [-245,318,865,0,865], + 0xE120: [-186,318,1296,0,1296], + 0xE121: [744,-522,1790,0,1790], + 0xE122: [744,-664,1194,0,1194], + 0xE123: [744,-522,1790,0,1790], + 0xE124: [-52,274,1790,0,1790], + 0xE125: [-194,274,1194,0,1194], + 0xE126: [-52,274,1790,0,1790], + 0xE127: [280,-220,200,0,200], + 0xE128: [280,-220,200,0,200], + 0xE129: [280,-220,200,0,200], + 0xE12A: [796,0,408,80,328], + 0xE12B: [796,0,408,80,328], + 0xE12C: [796,0,408,80,328], + 0xE12D: [500,0,200,0,200], + 0xE12E: [500,0,200,0,200], + 0xE12F: [500,0,200,0,200], + 0xE130: [610,110,200,0,200], + 0xE131: [610,110,200,0,200], + 0xE132: [610,110,200,0,200], + 0xE133: [1032,0,770,550,610], + 0xE134: [295,0,770,550,800], + 0xE135: [1161,0,1969,328,1889], + 0xE136: [580,0,1969,328,1641], + 0xE137: [1161,0,1969,80,1641], + 0xE138: [1161,0,760,328,680], + 0xE139: [1161,0,760,80,432], + 0xE13A: [1161,0,1163,328,1083], + 0xE13B: [580,0,1163,328,835], + 0xE13C: [1161,0,1163,80,835], + 0xE13D: [1161,0,1566,328,1486], + 0xE13E: [580,0,1566,328,1238], + 0xE13F: [1161,0,1566,80,1238] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Size6"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size6/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Symbols/Regular/Main.js new file mode 100644 index 0000000..750591b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Symbols/Regular/Main.js @@ -0,0 +1,83 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'GyrePagellaMathJax_Symbols', + testString: '\u00A0\u2300\u2305\u2306\u2310\u2319\u231C\u231D\u231E\u231F\u2320\u2321\u2329\u232A\u239B', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2300: [564,64,788,80,708], + 0x2305: [444,-56,760,80,680], + 0x2306: [554,54,760,80,680], + 0x2310: [280,0,790,80,710], + 0x2319: [500,-220,790,80,710], + 0x231C: [680,-450,390,80,310], + 0x231D: [680,-450,390,80,310], + 0x231E: [50,180,390,80,310], + 0x231F: [50,180,390,80,310], + 0x2320: [1212,0,737,318,657], + 0x2321: [1194,18,737,80,418], + 0x2329: [658,158,391,80,311], + 0x232A: [658,158,391,80,311], + 0x239B: [1208,0,679,143,583], + 0x239C: [396,0,679,143,223], + 0x239D: [1208,0,679,143,583], + 0x239E: [1208,0,679,96,536], + 0x239F: [396,0,679,456,536], + 0x23A0: [1208,0,679,96,536], + 0x23A1: [1214,0,521,143,425], + 0x23A2: [810,0,521,143,223], + 0x23A3: [1214,0,521,143,425], + 0x23A4: [1214,0,521,96,378], + 0x23A5: [810,0,521,298,378], + 0x23A6: [1214,0,521,96,378], + 0x23A7: [616,0,589,252,493], + 0x23A8: [1194,0,589,96,332], + 0x23A9: [616,0,589,252,493], + 0x23AA: [596,0,589,257,337], + 0x23AB: [616,0,589,96,337], + 0x23AC: [1194,0,589,257,493], + 0x23AD: [616,0,589,96,337], + 0x23AE: [580,0,760,328,432], + 0x23B2: [829,0,1408,80,1248], + 0x23B3: [896,4,1408,80,1328], + 0x23B7: [1623,0,770,120,610], + 0x27C2: [650,0,760,80,680], + 0x27D8: [650,150,860,80,780], + 0x27D9: [650,150,860,80,780], + 0x27DA: [650,150,1203,80,1123], + 0x27DB: [650,150,1203,80,1123], + 0x27DC: [410,-90,920,80,840], + 0x27DD: [650,150,1360,80,1280], + 0x27DE: [650,150,1360,80,1280], + 0x27E0: [576,76,595,80,515], + 0x27E1: [471,-29,603,80,523], + 0x27E2: [471,-29,698,80,618], + 0x27E3: [471,-29,698,80,618], + 0x27E6: [670,170,430,120,350], + 0x27E7: [670,170,430,80,310], + 0x27EA: [658,158,611,80,531], + 0x27EB: [658,158,611,80,531] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Symbols"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Symbols/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Variants/Regular/Main.js new file mode 100644 index 0000000..af05765 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/Variants/Regular/Main.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyrePagellaMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'GyrePagellaMathJax_Variants', + testString: '\u00A0\u2032\u2033\u2034\u2035\u2036\u2037\u2057', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2032: [518,-102,347,65,282], + 0x2033: [518,-102,587,65,522], + 0x2034: [518,-102,827,65,762], + 0x2035: [518,-102,347,65,282], + 0x2036: [518,-102,587,65,522], + 0x2037: [518,-102,827,65,762], + 0x2057: [518,-102,1067,65,1002] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyrePagellaMathJax_Variants"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Variants/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata-extra.js new file mode 100644 index 0000000..03834ee --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata-extra.js @@ -0,0 +1,788 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata-extra.js + * + * Adds extra stretchy characters to the Gyre-Pagella fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS) { + var VERSION = "2.3"; + + var DELIMITERS = HTMLCSS.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "GyrePagellaMathJax_Alphabets", + ARROWS = "GyrePagellaMathJax_Arrows", + DOUBLESTRUCK = "GyrePagellaMathJax_DoubleStruck", + FRAKTUR = "GyrePagellaMathJax_Fraktur", + LATIN = "GyrePagellaMathJax_Latin", + MAIN = "GyrePagellaMathJax_Main", + MARKS = "GyrePagellaMathJax_Marks", + MISC = "GyrePagellaMathJax_Misc", + MONOSPACE = "GyrePagellaMathJax_Monospace", + NONUNICODE = "GyrePagellaMathJax_NonUnicode", + NORMAL = "GyrePagellaMathJax_Normal", + OPERATORS = "GyrePagellaMathJax_Operators", + SANSSERIF = "GyrePagellaMathJax_SansSerif", + SCRIPT = "GyrePagellaMathJax_Script", + SHAPES = "GyrePagellaMathJax_Shapes", + SIZE1 = "GyrePagellaMathJax_Size1", + SIZE2 = "GyrePagellaMathJax_Size2", + SIZE3 = "GyrePagellaMathJax_Size3", + SIZE4 = "GyrePagellaMathJax_Size4", + SIZE5 = "GyrePagellaMathJax_Size5", + SIZE6 = "GyrePagellaMathJax_Size6", + SYMBOLS = "GyrePagellaMathJax_Symbols", + VARIANTS = "GyrePagellaMathJax_Variants"; + + var delim = { + 0x306: + { + dir: H, + HW: [[0.362,MAIN], [0.631,SIZE1], [0.752,SIZE2], [0.897,SIZE3], [1.070,SIZE4], [1.279,SIZE5], [1.528,SIZE6]] + }, + 0x311: + { + dir: H, + HW: [[0.362,MARKS], [0.631,SIZE1], [0.752,SIZE2], [0.897,SIZE3], [1.070,SIZE4], [1.279,SIZE5], [1.528,SIZE6]] + }, + 0x32C: + { + dir: H, + HW: [[0.348,MARKS], [0.613,SIZE1], [0.731,SIZE2], [0.874,SIZE3], [1.045,SIZE4], [1.251,SIZE5], [1.498,SIZE6]] + }, + 0x32D: + { + dir: H, + HW: [[0.348,MARKS], [0.613,SIZE1], [0.731,SIZE2], [0.874,SIZE3], [1.045,SIZE4], [1.251,SIZE5], [1.498,SIZE6]] + }, + 0x32E: + { + dir: H, + HW: [[0.362,MARKS], [0.631,SIZE1], [0.752,SIZE2], [0.897,SIZE3], [1.070,SIZE4], [1.279,SIZE5], [1.528,SIZE6]] + }, + 0x32F: + { + dir: H, + HW: [[0.362,MARKS], [0.631,SIZE1], [0.752,SIZE2], [0.897,SIZE3], [1.070,SIZE4], [1.279,SIZE5], [1.528,SIZE6]] + }, + 0x330: + { + dir: H, + HW: [[0.342,MARKS], [0.608,SIZE1], [0.727,SIZE2], [0.870,SIZE3], [1.042,SIZE4], [1.247,SIZE5], [1.496,SIZE6]] + }, + 0x333: + { + dir: H, + HW: [[0.333,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE0F8,SIZE6], rep:[0xE0F9,SIZE6], right:[0xE0FA,SIZE6]} + }, + 0x33F: + { + dir: H, + HW: [[0.333,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE0FE,SIZE6], rep:[0xE0FF,SIZE6], right:[0xE100,SIZE6]} + }, + 0x20D0: + { + dir: H, + HW: [[0.384,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE008,SIZE6], rep:[0xE009,SIZE6], right:[0xE00A,SIZE6]} + }, + 0x20D1: + { + dir: H, + HW: [[0.384,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE00B,SIZE6], rep:[0xE00C,SIZE6], right:[0xE00D,SIZE6]} + }, + 0x20D6: + { + dir: H, + HW: [[0.386,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE00E,SIZE6], rep:[0xE00F,SIZE6], right:[0xE010,SIZE6]} + }, + 0x20D7: + { + dir: H, + HW: [[0.386,MAIN], [0.510,SIZE1]], + stretch: {left:[0xE011,SIZE6], rep:[0xE012,SIZE6], right:[0xE013,SIZE6]} + }, + 0x20E1: + { + dir: H, + HW: [[0.458,MARKS], [0.582,SIZE1]], + stretch: {left:[0xE014,SIZE6], rep:[0xE015,SIZE6], right:[0xE016,SIZE6]} + }, + 0x20E9: + { + dir: H, + HW: [[0.367,MARKS], [0.740,SIZE1], [1.113,SIZE2], [1.484,SIZE3], [1.855,SIZE4], [2.226,SIZE5], [2.593,SIZE6]], + stretch: {left:[0xE11B,SIZE6], rep:[0xE11C,SIZE6], right:[0xE11D,SIZE6]} + }, + 0x20EC: + { + dir: H, + HW: [[0.384,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE017,SIZE6], rep:[0xE018,SIZE6], right:[0xE019,SIZE6]} + }, + 0x20ED: + { + dir: H, + HW: [[0.384,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE01A,SIZE6], rep:[0xE01B,SIZE6], right:[0xE01C,SIZE6]} + }, + 0x20EE: + { + dir: H, + HW: [[0.386,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE01D,SIZE6], rep:[0xE01E,SIZE6], right:[0xE01F,SIZE6]} + }, + 0x20EF: + { + dir: H, + HW: [[0.386,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE020,SIZE6], rep:[0xE021,SIZE6], right:[0xE022,SIZE6]} + }, + 0x2196: + { + dir: V, + HW: [[0.558,MAIN], [0.876,SIZE1]] + }, + 0x2197: + { + dir: V, + HW: [[0.558,MAIN], [0.876,SIZE1]] + }, + 0x2198: + { + dir: V, + HW: [[0.558,MAIN], [0.876,SIZE1]] + }, + 0x2199: + { + dir: V, + HW: [[0.558,MAIN], [0.876,SIZE1]] + }, + 0x219A: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE02F,SIZE6], rep:[0xE030,SIZE6], mid:[0xE031,SIZE6], right:[0xE032,SIZE6]} + }, + 0x219B: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE033,SIZE6], rep:[0xE034,SIZE6], mid:[0xE035,SIZE6], right:[0xE036,SIZE6]} + }, + 0x219E: + { + dir: H, + HW: [[0.835,MAIN], [1.285,SIZE1]], + stretch: {left:[0xE041,SIZE6], rep:[0xE042,SIZE6], right:[0xE043,SIZE6]} + }, + 0x219F: + { + dir: V, + HW: [[0.835,ARROWS], [1.285,SIZE1]], + stretch: {bot:[0xE047,SIZE6], ext:[0xE048,SIZE6], top:[0xE049,SIZE6]} + }, + 0x21A0: + { + dir: H, + HW: [[0.835,MAIN], [1.285,SIZE1]], + stretch: {left:[0xE044,SIZE6], rep:[0xE045,SIZE6], right:[0xE046,SIZE6]} + }, + 0x21A1: + { + dir: V, + HW: [[0.835,ARROWS], [1.285,SIZE1]], + stretch: {bot:[0xE04A,SIZE6], ext:[0xE04B,SIZE6], top:[0xE04C,SIZE6]} + }, + 0x21A2: + { + dir: H, + HW: [[0.845,MAIN], [1.295,SIZE1]], + stretch: {left:[0xE04D,SIZE6], rep:[0xE04E,SIZE6], right:[0xE04F,SIZE6]} + }, + 0x21A3: + { + dir: H, + HW: [[0.845,MAIN], [1.295,SIZE1]], + stretch: {left:[0xE050,SIZE6], rep:[0xE051,SIZE6], right:[0xE052,SIZE6]} + }, + 0x21A5: + { + dir: V, + HW: [[0.760,ARROWS], [1.210,SIZE1]], + stretch: {bot:[0xE059,SIZE6], ext:[0xE05A,SIZE6], top:[0xE05B,SIZE6]} + }, + 0x21A7: + { + dir: V, + HW: [[0.760,ARROWS], [1.210,SIZE1]], + stretch: {bot:[0xE05C,SIZE6], ext:[0xE05D,SIZE6], top:[0xE05E,SIZE6]} + }, + 0x21A9: + { + dir: H, + HW: [[0.790,MAIN], [1.240,SIZE1]], + stretch: {left:[0xE062,SIZE6], rep:[0xE063,SIZE6], right:[0xE064,SIZE6]} + }, + 0x21AA: + { + dir: H, + HW: [[0.790,MAIN], [1.240,SIZE1]], + stretch: {left:[0xE05F,SIZE6], rep:[0xE060,SIZE6], right:[0xE061,SIZE6]} + }, + 0x21AB: + { + dir: H, + HW: [[0.790,MAIN], [1.240,SIZE1]], + stretch: {left:[0xE068,SIZE6], rep:[0xE069,SIZE6], right:[0xE06A,SIZE6]} + }, + 0x21AC: + { + dir: H, + HW: [[0.790,MAIN], [1.240,SIZE1]], + stretch: {left:[0xE065,SIZE6], rep:[0xE066,SIZE6], right:[0xE067,SIZE6]} + }, + 0x21AD: + { + dir: H, + HW: [[0.845,MAIN], [1.295,SIZE1]] + }, + 0x21AE: + { + dir: H, + HW: [[0.845,MAIN], [1.295,SIZE1]], + stretch: {left:[0xE03D,SIZE6], rep:[0xE03E,SIZE6], mid:[0xE03F,SIZE6], right:[0xE040,SIZE6]} + }, + 0x21B0: + { + dir: V, + HW: [[0.645,MAIN], [0.915,SIZE1]] + }, + 0x21B1: + { + dir: V, + HW: [[0.644,MAIN], [0.915,SIZE1]] + }, + 0x21B2: + { + dir: V, + HW: [[0.645,ARROWS], [0.915,SIZE1]] + }, + 0x21B3: + { + dir: V, + HW: [[0.644,ARROWS], [0.915,SIZE1]] + }, + 0x21B6: + { + dir: H, + HW: [[0.685,MAIN], [1.023,SIZE1]] + }, + 0x21B7: + { + dir: H, + HW: [[0.685,MAIN], [1.023,SIZE1]] + }, + 0x21BC: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE06B,SIZE6], rep:[0xE06C,SIZE6], right:[0xE06D,SIZE6]} + }, + 0x21BD: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE071,SIZE6], rep:[0xE072,SIZE6], right:[0xE073,SIZE6]} + }, + 0x21BE: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE077,SIZE6], ext:[0xE078,SIZE6], top:[0xE079,SIZE6]} + }, + 0x21BF: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE07D,SIZE6], ext:[0xE07E,SIZE6], top:[0xE07F,SIZE6]} + }, + 0x21C0: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE06E,SIZE6], rep:[0xE06F,SIZE6], right:[0xE070,SIZE6]} + }, + 0x21C1: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE074,SIZE6], rep:[0xE075,SIZE6], right:[0xE076,SIZE6]} + }, + 0x21C2: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE07A,SIZE6], ext:[0xE07B,SIZE6], top:[0xE07C,SIZE6]} + }, + 0x21C3: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE080,SIZE6], ext:[0xE081,SIZE6], top:[0xE082,SIZE6]} + }, + 0x21C4: + { + dir: H, + HW: [[0.770,MAIN], [1.220,SIZE1]], + stretch: {left:[0xE083,SIZE6], rep:[0xE084,SIZE6], right:[0xE085,SIZE6]} + }, + 0x21C5: + { + dir: V, + HW: [[0.770,ARROWS], [1.220,SIZE1]], + stretch: {bot:[0xE089,SIZE6], ext:[0xE08A,SIZE6], top:[0xE08B,SIZE6]} + }, + 0x21C6: + { + dir: H, + HW: [[0.770,MAIN], [1.220,SIZE1]], + stretch: {left:[0xE086,SIZE6], rep:[0xE087,SIZE6], right:[0xE088,SIZE6]} + }, + 0x21C7: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE08F,SIZE6], rep:[0xE090,SIZE6], right:[0xE091,SIZE6]} + }, + 0x21C8: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE095,SIZE6], ext:[0xE096,SIZE6], top:[0xE097,SIZE6]} + }, + 0x21C9: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE092,SIZE6], rep:[0xE093,SIZE6], right:[0xE094,SIZE6]} + }, + 0x21CA: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE098,SIZE6], ext:[0xE099,SIZE6], top:[0xE09A,SIZE6]} + }, + 0x21CB: + { + dir: H, + HW: [[0.769,MAIN], [1.219,SIZE1]], + stretch: {left:[0xE0A1,SIZE6], rep:[0xE0A2,SIZE6], right:[0xE0A3,SIZE6]} + }, + 0x21CC: + { + dir: H, + HW: [[0.769,MAIN], [1.219,SIZE1]], + stretch: {left:[0xE0A4,SIZE6], rep:[0xE0A5,SIZE6], right:[0xE0A6,SIZE6]} + }, + 0x21CD: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE0B9,SIZE6], rep:[0xE0BA,SIZE6], mid:[0xE0BB,SIZE6], right:[0xE0BC,SIZE6]} + }, + 0x21CE: + { + dir: H, + HW: [[0.845,MAIN], [1.295,SIZE1]], + stretch: {left:[0xE0C1,SIZE6], rep:[0xE0C2,SIZE6], mid:[0xE0C3,SIZE6], right:[0xE0C4,SIZE6]} + }, + 0x21CF: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE0BD,SIZE6], rep:[0xE0BE,SIZE6], mid:[0xE0BF,SIZE6], right:[0xE0C0,SIZE6]} + }, + 0x21D6: + { + dir: V, + HW: [[0.622,ARROWS], [0.940,SIZE1]] + }, + 0x21D7: + { + dir: V, + HW: [[0.622,ARROWS], [0.940,SIZE1]] + }, + 0x21D8: + { + dir: V, + HW: [[0.622,ARROWS], [0.940,SIZE1]] + }, + 0x21D9: + { + dir: V, + HW: [[0.622,ARROWS], [0.940,SIZE1]] + }, + 0x21DA: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE0CB,SIZE6], rep:[0xE0CC,SIZE6], right:[0xE0CD,SIZE6]} + }, + 0x21DB: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE0CE,SIZE6], rep:[0xE0CF,SIZE6], right:[0xE0D0,SIZE6]} + }, + 0x21DC: + { + dir: H, + HW: [[0.760,ARROWS], [1.210,SIZE1]] + }, + 0x21DD: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]] + }, + 0x21E6: + { + dir: H, + HW: [[0.887,ARROWS], [1.337,SIZE1]], + stretch: {left:[0xE0D1,SIZE6], rep:[0xE0D2,SIZE6], right:[0xE0D3,SIZE6]} + }, + 0x21E7: + { + dir: V, + HW: [[0.887,ARROWS], [1.337,SIZE1]], + stretch: {bot:[0xE0D7,SIZE6], ext:[0xE0D8,SIZE6], top:[0xE0D9,SIZE6]} + }, + 0x21E8: + { + dir: H, + HW: [[0.887,ARROWS], [1.337,SIZE1]], + stretch: {left:[0xE0D4,SIZE6], rep:[0xE0D5,SIZE6], right:[0xE0D6,SIZE6]} + }, + 0x21E9: + { + dir: V, + HW: [[0.887,ARROWS], [1.337,SIZE1]], + stretch: {bot:[0xE0DA,SIZE6], ext:[0xE0DB,SIZE6], top:[0xE0DC,SIZE6]} + }, + 0x21F3: + { + dir: V, + HW: [[0.910,ARROWS], [1.360,SIZE1]], + stretch: {bot:[0xE0DD,SIZE6], ext:[0xE0DE,SIZE6], top:[0xE0DF,SIZE6]} + }, + 0x21F5: + { + dir: V, + HW: [[0.770,ARROWS], [1.220,SIZE1]], + stretch: {bot:[0xE08C,SIZE6], ext:[0xE08D,SIZE6], top:[0xE08E,SIZE6]} + }, + 0x21F6: + { + dir: H, + HW: [[0.760,ARROWS], [1.210,SIZE1]], + stretch: {left:[0xE09B,SIZE6], rep:[0xE09C,SIZE6], right:[0xE09D,SIZE6]} + }, + 0x220F: + { + dir: V, + HW: [[1.000,OPERATORS], [1.442,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[1.000,OPERATORS], [1.442,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[1.000,OPERATORS], [1.442,SIZE1]] + }, + 0x222B: + { + dir: V, + HW: [[1.092,MAIN], [2.026,SIZE1]], + stretch: {top:[0xE138,SIZE6], ext:[0x23AE,SYMBOLS], bot:[0xE139,SIZE6]} + }, + 0x222C: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]], + stretch: {top:[0xE13A,SIZE6], ext:[0xE13B,SIZE6], bot:[0xE13C,SIZE6]} + }, + 0x222D: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]], + stretch: {top:[0xE13D,SIZE6], ext:[0xE13E,SIZE6], bot:[0xE13F,SIZE6]} + }, + 0x222E: + { + dir: V, + HW: [[1.092,OPERATORS,null,0x222F], [2.026,SIZE1]] + }, + 0x222F: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2230: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2231: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2232: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2233: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2261: + { + dir: H, + HW: [[0.600,MAIN]], + stretch: {left:[0xE12D,SIZE6], rep:[0xE12E,SIZE6], right:[0xE12F,SIZE6]} + }, + 0x2263: + { + dir: H, + HW: [[0.600,OPERATORS]], + stretch: {left:[0xE130,SIZE6], rep:[0xE131,SIZE6], right:[0xE132,SIZE6]} + }, + 0x22A2: + { + dir: V, + HW: [[0.650,MAIN], [0.800,SIZE1]] + }, + 0x22A3: + { + dir: V, + HW: [[0.650,MAIN], [0.800,SIZE1]] + }, + 0x22A4: + { + dir: V, + HW: [[0.650,MAIN], [0.800,SIZE1]] + }, + 0x22A5: + { + dir: V, + HW: [[0.650,MAIN], [0.800,SIZE1]] + }, + 0x22C0: + { + dir: V, + HW: [[0.974,OPERATORS], [1.411,SIZE1]] + }, + 0x22C1: + { + dir: V, + HW: [[0.974,OPERATORS], [1.411,SIZE1]] + }, + 0x22C2: + { + dir: V, + HW: [[0.978,OPERATORS], [1.402,SIZE1]] + }, + 0x22C3: + { + dir: V, + HW: [[0.978,OPERATORS], [1.402,SIZE1]] + }, + 0x23B4: + { + dir: H, + HW: [[0.367,MAIN], [0.740,SIZE1], [1.113,SIZE2], [1.484,SIZE3], [1.855,SIZE4], [2.226,SIZE5], [2.593,SIZE6]], + stretch: {left:[0xE11B,SIZE6], rep:[0xE11C,SIZE6], right:[0xE11D,SIZE6]} + }, + 0x23B5: + { + dir: H, + HW: [[0.367,MAIN], [0.740,SIZE1], [1.113,SIZE2], [1.484,SIZE3], [1.855,SIZE4], [2.226,SIZE5], [2.593,SIZE6]], + stretch: {left:[0xE11E,SIZE6], rep:[0xE11F,SIZE6], right:[0xE120,SIZE6]} + }, + 0x23DC: + { + dir: H, + HW: [[0.528,MAIN], [1.028,SIZE1], [1.528,SIZE2], [2.028,SIZE3], [2.528,SIZE4], [3.028,SIZE5], [3.528,SIZE6]], + stretch: {left:[0xE115,SIZE6], rep:[0xE116,SIZE6], right:[0xE117,SIZE6]} + }, + 0x23DD: + { + dir: H, + HW: [[0.528,MAIN], [1.028,SIZE1], [1.528,SIZE2], [2.028,SIZE3], [2.528,SIZE4], [3.028,SIZE5], [3.528,SIZE6]], + stretch: {left:[0xE118,SIZE6], rep:[0xE119,SIZE6], right:[0xE11A,SIZE6]} + }, + 0x23E0: + { + dir: H, + HW: [[0.560,MAIN], [1.064,SIZE1], [1.566,SIZE2], [2.070,SIZE3], [2.572,SIZE4], [3.076,SIZE5], [3.580,SIZE6]], + stretch: {left:[0xE121,SIZE6], rep:[0xE122,SIZE6], right:[0xE123,SIZE6]} + }, + 0x23E1: + { + dir: H, + HW: [[0.560,MAIN], [1.064,SIZE1], [1.566,SIZE2], [2.070,SIZE3], [2.572,SIZE4], [3.076,SIZE5], [3.580,SIZE6]], + stretch: {left:[0xE124,SIZE6], rep:[0xE125,SIZE6], right:[0xE126,SIZE6]} + }, + 0x27A1: + { + dir: H, + HW: [[0.835,MISC], [1.285,SIZE1]], + stretch: {left:[0xE0E6,SIZE6], rep:[0xE0E7,SIZE6], right:[0xE0E8,SIZE6]} + }, + 0x27E6: + { + dir: V, + HW: [[0.840,SYMBOLS], [1.000,SIZE1], [1.192,SIZE2], [1.422,SIZE3], [1.698,SIZE4], [2.030,SIZE5], [2.428,SIZE6]], + stretch: {bot:[0xE107,SIZE6], ext:[0xE108,SIZE6], top:[0xE109,SIZE6]} + }, + 0x27E7: + { + dir: V, + HW: [[0.840,SYMBOLS], [1.000,SIZE1], [1.192,SIZE2], [1.422,SIZE3], [1.698,SIZE4], [2.030,SIZE5], [2.428,SIZE6]], + stretch: {bot:[0xE10A,SIZE6], ext:[0xE10B,SIZE6], top:[0xE10C,SIZE6]} + }, + 0x27EA: + { + dir: V, + HW: [[0.816,SYMBOLS], [1.062,SIZE1], [1.386,SIZE2], [1.810,SIZE3], [2.366,SIZE4], [3.095,SIZE5], [4.050,SIZE6]] + }, + 0x27EB: + { + dir: V, + HW: [[0.816,SYMBOLS], [1.062,SIZE1], [1.386,SIZE2], [1.810,SIZE3], [2.366,SIZE4], [3.095,SIZE5], [4.050,SIZE6]] + }, + 0x2A00: + { + dir: V, + HW: [[0.916,OPERATORS], [1.188,SIZE1]] + }, + 0x2A01: + { + dir: V, + HW: [[0.916,OPERATORS], [1.188,SIZE1]] + }, + 0x2A02: + { + dir: V, + HW: [[0.916,OPERATORS], [1.188,SIZE1]] + }, + 0x2A03: + { + dir: V, + HW: [[0.978,OPERATORS], [1.402,SIZE1]] + }, + 0x2A04: + { + dir: V, + HW: [[0.978,OPERATORS], [1.402,SIZE1]] + }, + 0x2A05: + { + dir: V, + HW: [[0.960,OPERATORS], [1.384,SIZE1]] + }, + 0x2A06: + { + dir: V, + HW: [[0.960,OPERATORS], [1.384,SIZE1]] + }, + 0x2A09: + { + dir: V, + HW: [[0.770,OPERATORS], [0.974,SIZE1]] + }, + 0x2A0C: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]], + stretch: {top:[0xE135,SIZE6], ext:[0xE136,SIZE6], bot:[0xE137,SIZE6]} + }, + 0x2A11: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2B04: + { + dir: H, + HW: [[0.909,SHAPES], [1.359,SIZE1]], + stretch: {left:[0xE0E0,SIZE6], rep:[0xE0E1,SIZE6], right:[0xE0E2,SIZE6]} + }, + 0x2B05: + { + dir: H, + HW: [[0.835,SHAPES], [1.285,SIZE1]], + stretch: {left:[0xE0E3,SIZE6], rep:[0xE0E4,SIZE6], right:[0xE0E5,SIZE6]} + }, + 0x2B06: + { + dir: V, + HW: [[0.835,SHAPES], [1.285,SIZE1]], + stretch: {bot:[0xE0E9,SIZE6], ext:[0xE0EA,SIZE6], top:[0xE0EB,SIZE6]} + }, + 0x2B07: + { + dir: V, + HW: [[0.835,SHAPES], [1.285,SIZE1]], + stretch: {bot:[0xE0EC,SIZE6], ext:[0xE0ED,SIZE6], top:[0xE0EE,SIZE6]} + }, + 0x2B0C: + { + dir: H, + HW: [[0.845,SHAPES], [1.295,SIZE1]], + stretch: {left:[0xE0EF,SIZE6], rep:[0xE0F0,SIZE6], right:[0xE0F1,SIZE6]} + }, + 0x2B0D: + { + dir: V, + HW: [[0.845,SHAPES], [1.295,SIZE1]], + stretch: {bot:[0xE0F2,SIZE6], ext:[0xE0F3,SIZE6], top:[0xE0F4,SIZE6]} + }, + 0x2B31: + { + dir: H, + HW: [[0.760,SHAPES], [1.210,SIZE1]], + stretch: {left:[0xE09E,SIZE6], rep:[0xE09F,SIZE6], right:[0xE0A0,SIZE6]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["HTML-CSS"]); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata.js new file mode 100644 index 0000000..cb79d17 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata.js @@ -0,0 +1,686 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Pagella/fontdata.js + * + * Initializes the HTML-CSS OutputJax to use the Gyre-Pagella fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,MML,AJAX) { + + var VERSION = "2.3"; + + var ALPHABETS = "GyrePagellaMathJax_Alphabets", + ARROWS = "GyrePagellaMathJax_Arrows", + DOUBLESTRUCK = "GyrePagellaMathJax_DoubleStruck", + FRAKTUR = "GyrePagellaMathJax_Fraktur", + LATIN = "GyrePagellaMathJax_Latin", + MAIN = "GyrePagellaMathJax_Main", + MARKS = "GyrePagellaMathJax_Marks", + MISC = "GyrePagellaMathJax_Misc", + MONOSPACE = "GyrePagellaMathJax_Monospace", + NONUNICODE = "GyrePagellaMathJax_NonUnicode", + NORMAL = "GyrePagellaMathJax_Normal", + OPERATORS = "GyrePagellaMathJax_Operators", + SANSSERIF = "GyrePagellaMathJax_SansSerif", + SCRIPT = "GyrePagellaMathJax_Script", + SHAPES = "GyrePagellaMathJax_Shapes", + SIZE1 = "GyrePagellaMathJax_Size1", + SIZE2 = "GyrePagellaMathJax_Size2", + SIZE3 = "GyrePagellaMathJax_Size3", + SIZE4 = "GyrePagellaMathJax_Size4", + SIZE5 = "GyrePagellaMathJax_Size5", + SIZE6 = "GyrePagellaMathJax_Size6", + SYMBOLS = "GyrePagellaMathJax_Symbols", + VARIANTS = "GyrePagellaMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + HTMLCSS.Augment({ + FONTDATA: { + version: VERSION, + + + TeX_factor: 1.057, + baselineskip: 1.200, + lineH: 0.800, lineD: 0.200, + + hasStyleChar: true, // char 0xEFFD encodes font style + + FONTS: { + "GyrePagellaMathJax_Alphabets": "Alphabets/Regular/Main.js", + "GyrePagellaMathJax_Arrows": "Arrows/Regular/Main.js", + "GyrePagellaMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "GyrePagellaMathJax_Fraktur": "Fraktur/Regular/Main.js", + "GyrePagellaMathJax_Latin": "Latin/Regular/Main.js", + "GyrePagellaMathJax_Main": "Main/Regular/Main.js", + "GyrePagellaMathJax_Marks": "Marks/Regular/Main.js", + "GyrePagellaMathJax_Misc": "Misc/Regular/Main.js", + "GyrePagellaMathJax_Monospace": "Monospace/Regular/Main.js", + "GyrePagellaMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "GyrePagellaMathJax_Normal": "Normal/Regular/Main.js", + "GyrePagellaMathJax_Operators": "Operators/Regular/Main.js", + "GyrePagellaMathJax_SansSerif": "SansSerif/Regular/Main.js", + "GyrePagellaMathJax_Script": "Script/Regular/Main.js", + "GyrePagellaMathJax_Shapes": "Shapes/Regular/Main.js", + "GyrePagellaMathJax_Size1": "Size1/Regular/Main.js", + "GyrePagellaMathJax_Size2": "Size2/Regular/Main.js", + "GyrePagellaMathJax_Size3": "Size3/Regular/Main.js", + "GyrePagellaMathJax_Size4": "Size4/Regular/Main.js", + "GyrePagellaMathJax_Size5": "Size5/Regular/Main.js", + "GyrePagellaMathJax_Size6": "Size6/Regular/Main.js", + "GyrePagellaMathJax_Symbols": "Symbols/Regular/Main.js", + "GyrePagellaMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, offsetA: 0x1D434, offsetG: 0x1D6E2, remap: {0x1D455: 0x210E}}, + "bolditalic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true, offsetA: 0x1D468, offsetG: 0x1D71C}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Gyre-Pagella-variant": {fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x0305, + + REMAP: { + 0x25C2: 0x25C0, + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x2758: 0x2223, + 0x25B8: 0x25B6, + 0x03D2: 0x03A5, + 0x25B4: 0x25B2, + 0x25B5: 0x25B3, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF, + 0x02B9: 0x2032, + 0x25FB: 0x25A1, + 0x25FC: 0x25A0, + 0x25BE: 0x25BC, + 0x203E: 0x0305, + 0x25BF: 0x25BD + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[0.828,MAIN], [0.988,SIZE1], [1.180,SIZE2], [1.410,SIZE3], [1.686,SIZE4], [2.018,SIZE5], [2.416,SIZE6], [2.612,SIZE6,1.081]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[0.828,MAIN], [0.988,SIZE1], [1.180,SIZE2], [1.410,SIZE3], [1.686,SIZE4], [2.018,SIZE5], [2.416,SIZE6], [2.612,SIZE6,1.081]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0x305, dir: H}, + 0x2F: + { + dir: V, + HW: [[0.800,MAIN], [1.048,SIZE1], [1.372,SIZE2], [1.798,SIZE3], [2.356,SIZE4], [3.086,SIZE5], [4.044,SIZE6]] + }, + 0x3D: + { + dir: H, + HW: [[0.600,MAIN]], + stretch: {left:[0xE000,SIZE6], rep:[0xE001,SIZE6], right:[0xE002,SIZE6]} + }, + 0x5B: + { + dir: V, + HW: [[0.840,MAIN], [1.000,SIZE1], [1.192,SIZE2], [1.422,SIZE3], [1.698,SIZE4], [2.030,SIZE5], [2.428,SIZE6], [2.612,SIZE6,1.076]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[0.800,MAIN], [1.048,SIZE1], [1.372,SIZE2], [1.798,SIZE3], [2.356,SIZE4], [3.086,SIZE5], [4.044,SIZE6]] + }, + 0x5D: + { + dir: V, + HW: [[0.840,MAIN], [1.000,SIZE1], [1.192,SIZE2], [1.422,SIZE3], [1.698,SIZE4], [2.030,SIZE5], [2.428,SIZE6], [2.612,SIZE6,1.076]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5E: {alias: 0x302, dir: H}, + 0x5F: {alias: 0x332, dir: H}, + 0x7B: + { + dir: V, + HW: [[0.838,MAIN], [0.998,SIZE1], [1.190,SIZE2], [1.420,SIZE3], [1.696,SIZE4], [2.028,SIZE5], [2.426,SIZE6], [2.612,SIZE6,1.077]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0xE003,SIZE6], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[0.800,MAIN], [0.960,SIZE1], [1.152,SIZE2], [1.382,SIZE3], [1.658,SIZE4], [1.990,SIZE5], [2.388,SIZE6]], + stretch: {bot:[0xE004,SIZE6], ext:[0xE005,SIZE6], top:[0xE006,SIZE6]} + }, + 0x7D: + { + dir: V, + HW: [[0.838,MAIN], [0.998,SIZE1], [1.190,SIZE2], [1.420,SIZE3], [1.696,SIZE4], [2.028,SIZE5], [2.426,SIZE6], [2.612,SIZE6,1.077]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0xE007,SIZE6], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0x7E: {alias: 0x303, dir: H}, + 0xAF: {alias: 0x332, dir: H}, + 0x2C6: {alias: 0x302, dir: H}, + 0x2C9: {alias: 0x305, dir: H}, + 0x2DC: {alias: 0x303, dir: H}, + 0x302: + { + dir: H, + HW: [[0.348,MAIN], [0.613,SIZE1], [0.731,SIZE2], [0.874,SIZE3], [1.045,SIZE4], [1.251,SIZE5], [1.498,SIZE6]] + }, + 0x303: + { + dir: H, + HW: [[0.342,MAIN], [0.608,SIZE1], [0.727,SIZE2], [0.870,SIZE3], [1.042,SIZE4], [1.247,SIZE5], [1.496,SIZE6]] + }, + 0x305: + { + dir: H, + HW: [[0.333,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE0FB,SIZE6], rep:[0xE0FC,SIZE6], right:[0xE0FD,SIZE6]} + }, + 0x306: EXTRAH, + 0x30C: + { + dir: H, + HW: [[0.348,MAIN], [0.613,SIZE1], [0.731,SIZE2], [0.874,SIZE3], [1.045,SIZE4], [1.251,SIZE5], [1.498,SIZE6]] + }, + 0x311: EXTRAH, + 0x32C: EXTRAH, + 0x32D: EXTRAH, + 0x32E: EXTRAH, + 0x32F: EXTRAH, + 0x330: EXTRAH, + 0x332: + { + dir: H, + HW: [[0.333,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE0F5,SIZE6], rep:[0xE0F6,SIZE6], right:[0xE0F7,SIZE6]} + }, + 0x333: EXTRAH, + 0x33F: EXTRAH, + 0x2015: {alias: 0x305, dir: H}, + 0x2016: + { + dir: V, + HW: [[0.800,MAIN], [0.960,SIZE1], [1.152,SIZE2], [1.382,SIZE3], [1.658,SIZE4], [1.990,SIZE5], [2.388,SIZE6]], + stretch: {bot:[0xE12A,SIZE6], ext:[0xE12B,SIZE6], top:[0xE12C,SIZE6]} + }, + 0x2017: {alias: 0x305, dir: H}, + 0x203E: {alias: 0x305, dir: H}, + 0x2044: + { + dir: V, + HW: [[0.800,MAIN], [1.048,SIZE1], [1.372,SIZE2], [1.798,SIZE3], [2.356,SIZE4], [3.086,SIZE5], [4.044,SIZE6]] + }, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: EXTRAH, + 0x20E1: EXTRAH, + 0x20E9: EXTRAH, + 0x20EC: EXTRAH, + 0x20ED: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2140: + { + dir: V, + HW: [[1.000,DOUBLESTRUCK], [1.442,SIZE1]] + }, + 0x2190: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE023,SIZE6], rep:[0xE024,SIZE6], right:[0xE025,SIZE6]} + }, + 0x2191: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE029,SIZE6], ext:[0xE02A,SIZE6], top:[0xE02B,SIZE6]} + }, + 0x2192: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE026,SIZE6], rep:[0xE027,SIZE6], right:[0xE028,SIZE6]} + }, + 0x2193: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE02C,SIZE6], ext:[0xE02D,SIZE6], top:[0xE02E,SIZE6]} + }, + 0x2194: + { + dir: H, + HW: [[0.845,MAIN], [1.295,SIZE1]], + stretch: {left:[0xE037,SIZE6], rep:[0xE038,SIZE6], right:[0xE039,SIZE6]} + }, + 0x2195: + { + dir: V, + HW: [[0.845,MAIN], [1.295,SIZE1]], + stretch: {bot:[0xE03A,SIZE6], ext:[0xE03B,SIZE6], top:[0xE03C,SIZE6]} + }, + 0x2196: EXTRAV, + 0x2197: EXTRAV, + 0x2198: EXTRAV, + 0x2199: EXTRAV, + 0x219A: EXTRAH, + 0x219B: EXTRAH, + 0x219E: EXTRAH, + 0x219F: EXTRAV, + 0x21A0: EXTRAH, + 0x21A1: EXTRAV, + 0x21A2: EXTRAH, + 0x21A3: EXTRAH, + 0x21A4: + { + dir: H, + HW: [[0.760,ARROWS], [1.210,SIZE1]], + stretch: {left:[0xE053,SIZE6], rep:[0xE054,SIZE6], right:[0xE055,SIZE6]} + }, + 0x21A5: EXTRAV, + 0x21A6: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE056,SIZE6], rep:[0xE057,SIZE6], right:[0xE058,SIZE6]} + }, + 0x21A7: EXTRAV, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21AB: EXTRAH, + 0x21AC: EXTRAH, + 0x21AD: EXTRAH, + 0x21AE: EXTRAH, + 0x21B0: EXTRAV, + 0x21B1: EXTRAV, + 0x21B2: EXTRAV, + 0x21B3: EXTRAV, + 0x21B6: EXTRAH, + 0x21B7: EXTRAH, + 0x21BC: EXTRAH, + 0x21BD: EXTRAH, + 0x21BE: EXTRAV, + 0x21BF: EXTRAV, + 0x21C0: EXTRAH, + 0x21C1: EXTRAH, + 0x21C2: EXTRAV, + 0x21C3: EXTRAV, + 0x21C4: EXTRAH, + 0x21C5: EXTRAV, + 0x21C6: EXTRAH, + 0x21C7: EXTRAH, + 0x21C8: EXTRAV, + 0x21C9: EXTRAH, + 0x21CA: EXTRAV, + 0x21CB: EXTRAH, + 0x21CC: EXTRAH, + 0x21CD: EXTRAH, + 0x21CE: EXTRAH, + 0x21CF: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE0A7,SIZE6], rep:[0xE0A8,SIZE6], right:[0xE0A9,SIZE6]} + }, + 0x21D1: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE0AD,SIZE6], ext:[0xE0AE,SIZE6], top:[0xE0AF,SIZE6]} + }, + 0x21D2: + { + dir: H, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {left:[0xE0AA,SIZE6], rep:[0xE0AB,SIZE6], right:[0xE0AC,SIZE6]} + }, + 0x21D3: + { + dir: V, + HW: [[0.760,MAIN], [1.210,SIZE1]], + stretch: {bot:[0xE0B0,SIZE6], ext:[0xE0B1,SIZE6], top:[0xE0B2,SIZE6]} + }, + 0x21D4: + { + dir: H, + HW: [[0.845,MAIN], [1.295,SIZE1]], + stretch: {left:[0xE0B3,SIZE6], rep:[0xE0B4,SIZE6], right:[0xE0B5,SIZE6]} + }, + 0x21D5: + { + dir: V, + HW: [[0.845,MAIN], [1.295,SIZE1]], + stretch: {bot:[0xE0B6,SIZE6], ext:[0xE0B7,SIZE6], top:[0xE0B8,SIZE6]} + }, + 0x21D6: EXTRAV, + 0x21D7: EXTRAV, + 0x21D8: EXTRAV, + 0x21D9: EXTRAV, + 0x21DA: EXTRAH, + 0x21DB: EXTRAH, + 0x21DC: EXTRAH, + 0x21DD: EXTRAH, + 0x21E6: EXTRAH, + 0x21E7: EXTRAV, + 0x21E8: EXTRAH, + 0x21E9: EXTRAV, + 0x21F3: EXTRAV, + 0x21F5: EXTRAV, + 0x21F6: EXTRAH, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: + { + dir: H, + HW: [[0.600,MAIN]], + stretch: {left:[0xE127,SIZE6], rep:[0xE128,SIZE6], right:[0xE129,SIZE6]} + }, + 0x2215: {alias: 0x2044, dir: V}, + 0x221A: + { + dir: V, + HW: [[0.790,MAIN], [1.150,SIZE1], [1.510,SIZE2], [1.870,SIZE3], [2.230,SIZE4], [2.590,SIZE5], [2.950,SIZE6]], + stretch: {bot:[0x23B7,SYMBOLS], ext:[0xE133,SIZE6], top:[0xE134,SIZE6]} + }, + 0x2223: + { + dir: V, + HW: [[0.800,MAIN], [0.960,SIZE1], [1.152,SIZE2], [1.382,SIZE3], [1.658,SIZE4], [1.990,SIZE5], [2.388,SIZE6]], + stretch: {bot:[0xE004,SIZE6], ext:[0xE005,SIZE6], top:[0xE006,SIZE6]} + }, + 0x2225: + { + dir: V, + HW: [[0.800,MAIN], [0.960,SIZE1], [1.152,SIZE2], [1.382,SIZE3], [1.658,SIZE4], [1.990,SIZE5], [2.388,SIZE6]], + stretch: {bot:[0xE12A,SIZE6], ext:[0xE12B,SIZE6], top:[0xE12C,SIZE6]} + }, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x2261: EXTRAH, + 0x2263: EXTRAH, + 0x22A2: EXTRAV, + 0x22A3: EXTRAV, + 0x22A4: EXTRAV, + 0x22A5: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[0.820,MAIN], [0.980,SIZE1], [1.172,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.010,SIZE5], [2.408,SIZE6], [2.612,SIZE6,1.085]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[0.820,MAIN], [0.980,SIZE1], [1.172,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.010,SIZE5], [2.408,SIZE6], [2.612,SIZE6,1.085]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[0.820,MAIN], [0.980,SIZE1], [1.172,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.010,SIZE5], [2.408,SIZE6], [2.612,SIZE6,1.085]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[0.820,MAIN], [0.980,SIZE1], [1.172,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.010,SIZE5], [2.408,SIZE6], [2.612,SIZE6,1.085]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: + { + dir: V, + HW: [[0.816,SYMBOLS], [1.062,SIZE1], [1.386,SIZE2], [1.810,SIZE3], [2.366,SIZE4], [3.095,SIZE5], [4.050,SIZE6]] + }, + 0x232A: + { + dir: V, + HW: [[0.816,SYMBOLS], [1.062,SIZE1], [1.386,SIZE2], [1.810,SIZE3], [2.366,SIZE4], [3.095,SIZE5], [4.050,SIZE6]] + }, + 0x23AA: + { + dir: V, + HW: [[0.596,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: {alias: 0x305, dir: H}, + 0x23B0: + { + dir: V, + HW: [[0.616,SYMBOLS,null,0x23A7]], + stretch: {top:[0x23A7,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23AD,SYMBOLS]} + }, + 0x23B1: + { + dir: V, + HW: [[0.616,SYMBOLS,null,0x23AB]], + stretch: {top:[0x23AB,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23A9,SYMBOLS]} + }, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: + { + dir: V, + HW: [[0.800,MAIN,null,0x7C], [1.269,MAIN,1.586,0x7C], [1.717,MAIN,2.146,0x7C], [2.164,MAIN,2.705,0x7C], [2.612,MAIN,3.265,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[0.540,MAIN], [1.038,SIZE1], [1.538,SIZE2], [2.038,SIZE3], [2.538,SIZE4], [3.038,SIZE5], [3.538,SIZE6]], + stretch: {left:[0xE10D,SIZE6], rep:[0xE10E,SIZE6], mid:[0xE10F,SIZE6], right:[0xE110,SIZE6]} + }, + 0x23DF: + { + dir: H, + HW: [[0.540,MAIN], [1.038,SIZE1], [1.538,SIZE2], [2.038,SIZE3], [2.538,SIZE4], [3.038,SIZE5], [3.538,SIZE6]], + stretch: {left:[0xE111,SIZE6], rep:[0xE112,SIZE6], mid:[0xE113,SIZE6], right:[0xE114,SIZE6]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x305, dir: H}, + 0x27A1: EXTRAH, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[0.816,MAIN], [1.062,SIZE1], [1.386,SIZE2], [1.810,SIZE3], [2.366,SIZE4], [3.095,SIZE5], [4.050,SIZE6]] + }, + 0x27E9: + { + dir: V, + HW: [[0.816,MAIN], [1.062,SIZE1], [1.386,SIZE2], [1.810,SIZE3], [2.366,SIZE4], [3.095,SIZE5], [4.050,SIZE6]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: + { + dir: V, + HW: [[0.828,MAIN], [0.988,SIZE1], [1.180,SIZE2], [1.410,SIZE3], [1.686,SIZE4], [2.018,SIZE5], [2.416,SIZE6]], + stretch: {bot:[0xE101,SIZE6], ext:[0xE102,SIZE6], top:[0xE103,SIZE6]} + }, + 0x27EF: + { + dir: V, + HW: [[0.828,MAIN], [0.988,SIZE1], [1.180,SIZE2], [1.410,SIZE3], [1.686,SIZE4], [2.018,SIZE5], [2.416,SIZE6]], + stretch: {bot:[0xE104,SIZE6], ext:[0xE105,SIZE6], top:[0xE106,SIZE6]} + }, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: + { + dir: H, + HW: [[0.835,ARROWS], [1.285,SIZE1]], + stretch: {left:[0xE0C5,SIZE6], rep:[0xE0C6,SIZE6], right:[0xE0C7,SIZE6]} + }, + 0x2907: + { + dir: H, + HW: [[0.835,ARROWS], [1.285,SIZE1]], + stretch: {left:[0xE0C8,SIZE6], rep:[0xE0C9,SIZE6], right:[0xE0CA,SIZE6]} + }, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A11: EXTRAV, + 0x2B04: EXTRAH, + 0x2B05: EXTRAH, + 0x2B06: EXTRAV, + 0x2B07: EXTRAV, + 0x2B0C: EXTRAH, + 0x2B0D: EXTRAV, + 0x2B31: EXTRAH, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Size1/Regular/Main.js",function () { + var i; + for (i = 0x222B; i <= 0x222D; i++) { + HTMLCSS.FONTDATA.FONTS[SIZE1][i][2] -= 190; + HTMLCSS.FONTDATA.FONTS[SIZE1][i][5] = {rfix:-190}; + } + for (i = 0x222E; i <= 0x2231; i++) { + HTMLCSS.FONTDATA.FONTS[SIZE1][i][2] -= 100; + HTMLCSS.FONTDATA.FONTS[SIZE1][i][5] = {rfix:-100}; + } + }); + AJAX.loadComplete(HTMLCSS.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.ElementJax.mml,MathJax.Ajax); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Alphabets/Regular/Main.js new file mode 100644 index 0000000..bba81d1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Alphabets/Regular/Main.js @@ -0,0 +1,45 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'GyreTermesMathJax_Alphabets', + testString: '\u00A0\u0E3F\u2103\u2107\u2109\u2116\u2117\u211E\u2120\u2122\u2126\u212A\u212B\u212E\uFEFF', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xE3F: [745,83,667,17,593], + 0x2103: [676,14,1029,57,995], + 0x2107: [676,14,475,48,427], + 0x2109: [676,0,929,57,919], + 0x2116: [669,15,1001,0,957], + 0x2117: [686,14,760,30,730], + 0x211E: [662,0,667,17,659], + 0x2120: [669,-297,939,40,899], + 0x2122: [662,-305,980,40,941], + 0x2126: [676,0,853,80,773], + 0x212A: [662,0,722,34,723], + 0x212B: [896,0,722,15,706], + 0x212E: [596,0,742,40,702], + 0xFEFF: [0,0,0,0,0] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Alphabets"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Alphabets/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Arrows/Regular/Main.js new file mode 100644 index 0000000..00315ec --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Arrows/Regular/Main.js @@ -0,0 +1,60 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'GyreTermesMathJax_Arrows', + testString: '\u00A0\u219F\u21A1\u21A4\u21A5\u21A7\u21B2\u21B3\u21B4\u21B5\u21C5\u21D6\u21D7\u21D8\u21D9', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x219F: [690,180,520,80,440], + 0x21A1: [680,190,520,80,440], + 0x21A4: [430,-70,850,80,770], + 0x21A5: [600,90,520,80,440], + 0x21A7: [590,100,520,80,440], + 0x21B2: [598,98,540,80,460], + 0x21B3: [598,98,540,80,460], + 0x21B4: [478,-12,770,80,690], + 0x21B5: [555,55,626,80,546], + 0x21C5: [600,100,920,80,840], + 0x21D6: [497,63,720,80,640], + 0x21D7: [497,63,720,80,640], + 0x21D8: [563,-3,720,80,640], + 0x21D9: [563,-3,720,80,640], + 0x21DC: [430,-70,850,80,770], + 0x21E6: [470,-30,1073,80,993], + 0x21E7: [715,198,600,80,520], + 0x21E8: [470,-30,1073,80,993], + 0x21E9: [698,215,600,80,520], + 0x21F3: [715,215,600,80,520], + 0x21F5: [600,100,920,80,840], + 0x21F6: [830,330,850,80,770], + 0x27F4: [568,68,1132,80,1052], + 0x27FB: [430,-70,1170,80,1090], + 0x27FD: [470,-30,1350,80,1270], + 0x27FE: [470,-30,1350,80,1270], + 0x27FF: [430,-70,1170,80,1090], + 0x2906: [470,-30,1030,80,950], + 0x2907: [470,-30,1030,80,950] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Arrows"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Arrows/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..fba0044 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js @@ -0,0 +1,103 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'GyreTermesMathJax_DoubleStruck', + testString: '\u00A0\u2102\u210D\u2115\u2119\u211A\u211D\u2124\u213C\u213D\u213E\u213F\u2140\u2145\u2146', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2102: [718,14,816,80,736], + 0x210D: [702,0,923,79,843], + 0x2115: [702,11,915,80,835], + 0x2119: [702,0,754,80,674], + 0x211A: [716,178,875,80,795], + 0x211D: [702,0,876,80,796], + 0x2124: [702,0,808,79,728], + 0x213C: [511,16,738,80,658], + 0x213D: [491,234,715,80,635], + 0x213E: [702,0,734,80,654], + 0x213F: [702,0,883,80,803], + 0x2140: [728,228,884,80,803], + 0x2145: [702,0,869,43,834], + 0x2146: [723,8,699,80,659], + 0x2147: [500,10,624,83,552], + 0x2148: [728,0,455,43,403], + 0x2149: [728,218,493,6,511], + 0x1D538: [714,0,923,80,843], + 0x1D539: [702,0,806,80,726], + 0x1D53B: [702,0,869,80,789], + 0x1D53C: [702,0,795,80,714], + 0x1D53D: [702,0,756,80,676], + 0x1D53E: [719,14,897,80,817], + 0x1D540: [702,0,517,80,437], + 0x1D541: [702,14,600,80,520], + 0x1D542: [702,0,929,80,849], + 0x1D543: [702,0,795,80,714], + 0x1D544: [702,0,1037,80,957], + 0x1D546: [716,14,873,80,793], + 0x1D54A: [716,17,679,79,599], + 0x1D54B: [702,0,800,79,720], + 0x1D54C: [702,14,911,80,831], + 0x1D54D: [702,13,892,80,812], + 0x1D54E: [702,14,1167,80,1087], + 0x1D54F: [702,0,914,80,834], + 0x1D550: [702,0,903,80,823], + 0x1D552: [500,10,630,80,550], + 0x1D553: [723,10,695,80,615], + 0x1D554: [500,10,608,80,528], + 0x1D555: [723,8,699,80,619], + 0x1D556: [500,10,624,80,544], + 0x1D557: [723,0,583,80,503], + 0x1D558: [500,218,632,80,552], + 0x1D559: [721,0,725,80,645], + 0x1D55A: [728,0,455,79,375], + 0x1D55B: [728,218,493,80,413], + 0x1D55C: [723,0,754,79,674], + 0x1D55D: [722,0,460,80,380], + 0x1D55E: [502,0,1022,80,942], + 0x1D55F: [499,0,713,80,633], + 0x1D560: [501,11,661,80,581], + 0x1D561: [500,217,702,80,622], + 0x1D562: [501,217,698,80,618], + 0x1D563: [501,0,562,80,482], + 0x1D564: [503,14,497,80,417], + 0x1D565: [601,14,471,80,391], + 0x1D566: [486,13,713,79,633], + 0x1D567: [490,14,690,80,610], + 0x1D568: [490,14,936,80,856], + 0x1D569: [487,0,677,79,597], + 0x1D56A: [490,218,704,80,624], + 0x1D56B: [490,0,620,80,540], + 0x1D7D8: [716,14,672,80,592], + 0x1D7D9: [716,0,503,80,423], + 0x1D7DA: [716,-1,659,80,579], + 0x1D7DB: [718,14,610,80,530], + 0x1D7DC: [716,0,723,80,643], + 0x1D7DD: [727,14,607,80,527], + 0x1D7DE: [723,14,672,80,592], + 0x1D7DF: [703,8,630,80,550], + 0x1D7E0: [716,14,599,80,519], + 0x1D7E1: [716,21,672,80,592] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_DoubleStruck"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/DoubleStruck/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Fraktur/Regular/Main.js new file mode 100644 index 0000000..ec95439 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Fraktur/Regular/Main.js @@ -0,0 +1,133 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'GyreTermesMathJax_Fraktur', + testString: '\u00A0\u210C\u2128\u212D\uD835\uDD04\uD835\uDD05\uD835\uDD07\uD835\uDD08\uD835\uDD09\uD835\uDD0A\uD835\uDD0D\uD835\uDD0E\uD835\uDD0F\uD835\uDD10\uD835\uDD11', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210C: [659,159,749,80,669], + 0x2128: [656,183,589,80,509], + 0x212D: [657,19,707,80,627], + 0x1D504: [656,22,742,80,662], + 0x1D505: [657,21,853,80,773], + 0x1D507: [656,38,865,80,785], + 0x1D508: [660,19,684,80,604], + 0x1D509: [658,172,695,80,615], + 0x1D50A: [671,21,771,80,691], + 0x1D50D: [659,152,633,79,553], + 0x1D50E: [656,21,764,80,684], + 0x1D50F: [656,21,603,80,523], + 0x1D510: [659,22,1030,80,950], + 0x1D511: [659,22,798,80,718], + 0x1D512: [675,19,813,80,733], + 0x1D513: [658,175,731,80,651], + 0x1D514: [675,31,869,80,789], + 0x1D516: [657,21,794,80,714], + 0x1D517: [658,21,708,80,628], + 0x1D518: [657,28,685,80,605], + 0x1D519: [656,19,842,80,762], + 0x1D51A: [669,23,1065,80,985], + 0x1D51B: [654,20,680,80,600], + 0x1D51C: [660,178,774,80,694], + 0x1D51E: [440,31,520,80,440], + 0x1D51F: [637,21,466,80,386], + 0x1D520: [442,24,384,80,304], + 0x1D521: [637,21,484,80,404], + 0x1D522: [440,24,410,79,330], + 0x1D523: [640,174,412,80,332], + 0x1D524: [440,177,487,80,407], + 0x1D525: [637,175,474,80,394], + 0x1D526: [647,25,337,80,257], + 0x1D527: [647,177,319,80,239], + 0x1D528: [637,16,350,80,270], + 0x1D529: [637,16,343,80,263], + 0x1D52A: [445,24,730,80,650], + 0x1D52B: [445,24,534,80,454], + 0x1D52C: [446,21,464,80,384], + 0x1D52D: [463,174,498,80,418], + 0x1D52E: [442,178,474,80,393], + 0x1D52F: [445,24,409,80,329], + 0x1D530: [440,20,505,80,425], + 0x1D531: [543,16,354,80,274], + 0x1D532: [440,28,534,80,454], + 0x1D533: [463,21,484,80,404], + 0x1D534: [463,21,666,80,586], + 0x1D535: [447,22,473,80,393], + 0x1D536: [463,175,485,80,405], + 0x1D537: [459,177,371,80,291], + 0x1D56C: [654,24,781,80,701], + 0x1D56D: [657,19,859,80,779], + 0x1D56E: [659,20,731,80,651], + 0x1D56F: [659,38,836,80,756], + 0x1D570: [660,18,717,80,637], + 0x1D571: [663,167,731,80,651], + 0x1D572: [676,20,812,80,732], + 0x1D573: [658,164,770,80,690], + 0x1D574: [666,23,651,80,571], + 0x1D575: [666,191,689,80,609], + 0x1D576: [662,20,795,80,715], + 0x1D577: [658,21,654,80,574], + 0x1D578: [665,34,1091,80,1011], + 0x1D579: [660,27,834,80,754], + 0x1D57A: [666,18,837,80,757], + 0x1D57B: [677,170,781,80,701], + 0x1D57C: [666,68,937,80,857], + 0x1D57D: [657,19,852,80,772], + 0x1D57E: [656,19,811,80,731], + 0x1D57F: [660,20,746,80,666], + 0x1D580: [655,30,720,80,640], + 0x1D581: [656,18,838,80,758], + 0x1D582: [667,21,1058,80,978], + 0x1D583: [652,19,716,80,636], + 0x1D584: [661,209,774,80,694], + 0x1D585: [653,179,612,80,532], + 0x1D586: [439,35,549,80,469], + 0x1D587: [627,19,491,80,411], + 0x1D588: [441,30,420,80,340], + 0x1D589: [629,19,506,80,426], + 0x1D58A: [439,30,438,80,358], + 0x1D58B: [629,167,440,80,360], + 0x1D58C: [438,169,508,80,428], + 0x1D58D: [627,175,507,80,427], + 0x1D58E: [657,23,378,80,298], + 0x1D58F: [657,169,360,80,280], + 0x1D590: [628,21,379,80,299], + 0x1D591: [627,26,388,80,308], + 0x1D592: [450,20,752,80,672], + 0x1D593: [450,20,567,80,487], + 0x1D594: [454,20,496,79,416], + 0x1D595: [470,167,524,80,444], + 0x1D596: [441,170,496,80,416], + 0x1D597: [450,25,440,80,360], + 0x1D598: [443,19,532,80,452], + 0x1D599: [538,21,381,80,301], + 0x1D59A: [435,36,567,80,487], + 0x1D59B: [469,20,517,80,437], + 0x1D59C: [469,20,701,80,621], + 0x1D59D: [452,29,504,80,424], + 0x1D59E: [469,175,512,80,432], + 0x1D59F: [461,170,403,80,323] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Fraktur"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Latin/Regular/Main.js new file mode 100644 index 0000000..7ba0cc1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Latin/Regular/Main.js @@ -0,0 +1,301 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'GyreTermesMathJax_Latin', + testString: '\u00A0\u00A1\u00A2\u00A4\u00A6\u00A9\u00AA\u00AB\u00B6\u00B8\u00BA\u00BB\u00BF\u00C0\u00C1', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xA1: [459,226,333,96,203], + 0xA2: [579,138,500,53,448], + 0xA4: [602,-58,500,-22,522], + 0xA6: [662,156,200,67,133], + 0xA9: [686,14,760,30,730], + 0xAA: [676,-349,276,4,270], + 0xAB: [411,-33,500,57,468], + 0xB6: [662,154,453,-22,450], + 0xB8: [5,215,333,52,261], + 0xBA: [676,-349,310,6,304], + 0xBB: [411,-33,500,45,456], + 0xBF: [458,226,444,30,376], + 0xC0: [851,0,722,15,706], + 0xC1: [851,0,722,15,706], + 0xC2: [847,0,722,15,706], + 0xC3: [835,0,722,15,706], + 0xC4: [832,0,722,15,706], + 0xC5: [896,0,722,15,706], + 0xC6: [662,0,889,0,863], + 0xC7: [676,215,667,28,633], + 0xC8: [851,0,611,12,597], + 0xC9: [851,0,611,12,597], + 0xCA: [847,0,611,12,597], + 0xCB: [832,0,611,12,597], + 0xCC: [851,0,333,12,315], + 0xCD: [851,0,333,18,321], + 0xCE: [847,0,333,-6,340], + 0xCF: [832,0,333,18,316], + 0xD0: [662,0,722,16,685], + 0xD1: [835,11,722,12,707], + 0xD2: [851,14,722,34,688], + 0xD3: [851,14,722,34,688], + 0xD4: [847,14,722,34,688], + 0xD5: [835,14,722,34,688], + 0xD6: [832,14,722,34,688], + 0xD8: [734,80,722,34,688], + 0xD9: [851,14,722,14,705], + 0xDA: [851,14,722,14,705], + 0xDB: [847,14,722,14,705], + 0xDC: [832,14,722,14,705], + 0xDD: [851,0,722,22,703], + 0xDE: [662,0,556,16,542], + 0xDF: [683,9,500,12,468], + 0xE0: [675,10,444,37,442], + 0xE1: [675,10,444,37,442], + 0xE2: [674,10,444,37,442], + 0xE3: [643,10,444,37,442], + 0xE4: [640,10,444,37,442], + 0xE5: [690,10,444,37,442], + 0xE6: [460,10,667,38,632], + 0xE7: [460,215,444,25,412], + 0xE8: [675,10,444,25,424], + 0xE9: [675,10,444,25,424], + 0xEA: [674,10,444,25,424], + 0xEB: [640,10,444,25,424], + 0xEC: [675,0,278,-13,253], + 0xED: [675,0,278,16,288], + 0xEE: [674,0,278,-18,293], + 0xEF: [640,0,278,-11,287], + 0xF1: [643,0,500,16,485], + 0xF2: [675,10,500,29,470], + 0xF3: [675,10,500,29,470], + 0xF4: [674,10,500,29,470], + 0xF5: [643,10,500,29,470], + 0xF6: [640,10,500,29,470], + 0xF8: [551,112,500,29,470], + 0xF9: [675,10,500,9,479], + 0xFA: [675,10,500,9,479], + 0xFB: [674,10,500,9,479], + 0xFC: [640,10,500,9,479], + 0xFD: [675,218,500,14,475], + 0xFE: [683,217,500,5,470], + 0xFF: [640,218,500,14,475], + 0x100: [809,0,722,15,706], + 0x101: [617,10,444,37,442], + 0x102: [851,0,722,15,706], + 0x103: [669,10,444,37,442], + 0x104: [674,245,722,15,706], + 0x105: [460,245,444,37,442], + 0x106: [851,14,667,28,633], + 0x107: [675,10,444,25,412], + 0x10C: [847,14,667,28,633], + 0x10D: [674,10,444,25,412], + 0x10E: [847,0,722,16,685], + 0x10F: [683,10,500,27,603], + 0x110: [662,0,722,16,685], + 0x111: [683,10,500,27,500], + 0x112: [809,0,611,12,597], + 0x113: [617,10,444,25,424], + 0x116: [833,0,611,12,597], + 0x117: [641,10,444,25,424], + 0x118: [662,245,611,12,597], + 0x119: [460,245,444,25,424], + 0x11A: [847,0,611,12,597], + 0x11B: [674,10,444,25,424], + 0x11E: [851,14,722,32,709], + 0x11F: [669,218,500,28,470], + 0x122: [676,281,722,32,709], + 0x123: [733,218,500,28,470], + 0x128: [835,0,333,1,331], + 0x129: [643,0,278,-28,302], + 0x12A: [809,0,333,11,322], + 0x12B: [617,0,278,-18,293], + 0x12E: [662,245,333,18,315], + 0x12F: [641,245,278,16,253], + 0x130: [833,0,333,18,315], + 0x132: [662,14,787,40,747], + 0x133: [641,218,535,40,504], + 0x136: [662,281,722,34,723], + 0x137: [683,281,500,7,505], + 0x139: [851,0,611,12,598], + 0x13A: [872,0,278,19,283], + 0x13B: [662,281,611,12,598], + 0x13C: [683,281,278,19,257], + 0x13D: [662,0,611,12,598], + 0x13E: [683,0,278,19,361], + 0x141: [662,0,611,12,598], + 0x142: [683,0,278,15,264], + 0x143: [851,11,722,12,707], + 0x144: [675,0,500,16,485], + 0x145: [662,281,722,12,707], + 0x146: [460,281,500,16,485], + 0x147: [847,11,722,12,707], + 0x148: [674,0,500,16,485], + 0x14A: [662,218,722,12,707], + 0x14B: [460,218,500,16,424], + 0x14C: [809,14,722,34,688], + 0x14D: [617,10,500,29,470], + 0x150: [851,14,722,34,688], + 0x151: [676,10,500,29,511], + 0x152: [668,6,889,30,885], + 0x153: [460,10,722,30,690], + 0x154: [851,0,667,17,659], + 0x155: [675,0,333,5,335], + 0x156: [662,281,667,17,659], + 0x157: [460,281,333,5,335], + 0x158: [847,0,667,17,659], + 0x159: [674,0,333,5,335], + 0x15A: [851,14,556,42,491], + 0x15B: [675,10,389,51,348], + 0x15E: [676,225,556,42,491], + 0x15F: [459,215,389,51,348], + 0x160: [847,14,556,42,491], + 0x161: [674,10,389,34,348], + 0x162: [662,225,611,17,593], + 0x163: [579,215,278,13,279], + 0x164: [847,0,611,17,593], + 0x165: [713,10,278,13,313], + 0x168: [835,14,722,14,705], + 0x169: [643,10,500,9,479], + 0x16A: [809,14,722,14,705], + 0x16B: [617,10,500,9,479], + 0x16E: [896,14,722,14,705], + 0x16F: [690,10,500,9,479], + 0x170: [851,14,722,14,705], + 0x171: [676,10,500,9,505], + 0x172: [662,245,722,14,705], + 0x173: [450,245,500,9,479], + 0x178: [832,0,722,22,703], + 0x179: [851,0,611,9,597], + 0x17A: [675,0,444,27,418], + 0x17B: [833,0,611,9,597], + 0x17C: [641,0,444,27,418], + 0x17D: [847,0,611,9,597], + 0x17E: [674,0,444,27,418], + 0x17F: [683,0,333,20,383], + 0x192: [676,189,500,7,490], + 0x1A0: [771,14,722,34,688], + 0x1A1: [559,10,500,29,473], + 0x1AF: [771,14,706,14,706], + 0x1B0: [560,10,513,9,513], + 0x218: [676,281,556,42,491], + 0x219: [459,281,389,51,348], + 0x21A: [662,281,611,17,593], + 0x21B: [579,281,278,13,279], + 0x1EA0: [674,191,722,15,706], + 0x1EA1: [460,191,444,37,442], + 0x1EA2: [896,0,722,15,706], + 0x1EA3: [684,10,444,37,442], + 0x1EA4: [1006,0,722,15,706], + 0x1EA5: [794,10,444,37,442], + 0x1EA6: [1006,0,722,15,706], + 0x1EA7: [794,10,444,37,442], + 0x1EA8: [1020,0,722,15,706], + 0x1EA9: [808,10,444,37,442], + 0x1EAA: [983,0,722,15,706], + 0x1EAB: [771,10,444,37,442], + 0x1EAC: [847,191,722,15,706], + 0x1EAD: [674,191,444,37,442], + 0x1EAE: [1010,0,722,15,706], + 0x1EAF: [798,10,444,37,442], + 0x1EB0: [1010,0,722,15,706], + 0x1EB1: [798,10,444,37,442], + 0x1EB2: [984,0,722,15,706], + 0x1EB3: [772,10,444,37,442], + 0x1EB4: [984,0,722,15,706], + 0x1EB5: [772,10,444,37,442], + 0x1EB6: [851,191,722,15,706], + 0x1EB7: [669,191,444,37,442], + 0x1EB8: [662,191,611,12,597], + 0x1EB9: [460,191,444,25,424], + 0x1EBA: [896,0,611,12,597], + 0x1EBB: [684,10,444,25,424], + 0x1EBC: [835,0,611,12,597], + 0x1EBD: [643,10,444,25,424], + 0x1EBE: [1006,0,611,12,597], + 0x1EBF: [794,10,444,25,424], + 0x1EC0: [1006,0,611,12,597], + 0x1EC1: [794,10,444,25,424], + 0x1EC2: [1020,0,611,12,597], + 0x1EC3: [808,10,444,25,424], + 0x1EC4: [983,0,611,12,597], + 0x1EC5: [771,10,444,25,424], + 0x1EC6: [847,191,611,12,597], + 0x1EC7: [674,191,444,25,424], + 0x1EC8: [896,0,333,18,315], + 0x1EC9: [684,0,278,16,253], + 0x1ECA: [662,191,333,18,315], + 0x1ECB: [641,191,278,16,253], + 0x1ECC: [676,191,722,34,688], + 0x1ECD: [460,191,500,29,470], + 0x1ECE: [896,14,722,34,688], + 0x1ECF: [684,10,500,29,470], + 0x1ED0: [1006,14,722,34,688], + 0x1ED1: [794,10,500,29,470], + 0x1ED2: [1006,14,722,34,688], + 0x1ED3: [794,10,500,29,470], + 0x1ED4: [1020,14,722,34,688], + 0x1ED5: [808,10,500,29,470], + 0x1ED6: [983,14,722,34,688], + 0x1ED7: [771,10,500,29,470], + 0x1ED8: [847,191,722,34,688], + 0x1ED9: [674,191,500,29,470], + 0x1EDA: [851,14,722,34,688], + 0x1EDB: [675,10,500,29,473], + 0x1EDC: [851,14,722,34,688], + 0x1EDD: [675,10,500,29,473], + 0x1EDE: [896,14,722,34,688], + 0x1EDF: [684,10,500,29,473], + 0x1EE0: [835,14,722,34,688], + 0x1EE1: [643,10,500,29,473], + 0x1EE2: [771,191,722,34,688], + 0x1EE3: [559,191,500,29,473], + 0x1EE4: [662,191,722,14,705], + 0x1EE5: [450,191,500,9,479], + 0x1EE6: [896,14,722,14,705], + 0x1EE7: [684,10,500,9,479], + 0x1EE8: [851,14,706,14,706], + 0x1EE9: [675,10,513,9,513], + 0x1EEA: [851,14,706,14,706], + 0x1EEB: [675,10,513,9,513], + 0x1EEC: [896,14,706,14,706], + 0x1EED: [684,10,513,9,513], + 0x1EEE: [835,14,706,14,706], + 0x1EEF: [643,10,513,9,513], + 0x1EF0: [771,191,706,14,706], + 0x1EF1: [560,191,513,9,513], + 0x1EF2: [851,0,722,22,703], + 0x1EF3: [675,218,500,14,475], + 0x1EF4: [662,191,722,22,703], + 0x1EF5: [450,218,500,14,475], + 0x1EF6: [896,0,722,22,703], + 0x1EF7: [684,218,500,14,475], + 0x1EF8: [835,0,722,22,703], + 0x1EF9: [643,218,500,14,475], + 0xFB00: [683,0,600,31,650], + 0xFB01: [683,0,556,31,521], + 0xFB02: [683,0,556,32,521], + 0xFB03: [683,0,827,31,792], + 0xFB04: [683,0,827,31,792] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Latin"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Latin/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Main/Regular/Main.js new file mode 100644 index 0000000..f8f5ada --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Main/Regular/Main.js @@ -0,0 +1,536 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Main'] = { + directory: 'Main/Regular', + family: 'GyreTermesMathJax_Main', + testString: '\u00A0\u00A3\u00A5\u00A7\u00A8\u00AC\u00AE\u00AF\u00B0\u00B1\u00B4\u00B5\u00B7\u00D7\u00F0', + 0x20: [0,0,250,0,0], + 0x21: [676,9,333,130,237], + 0x22: [676,-431,408,77,331], + 0x23: [662,0,500,5,496], + 0x24: [727,87,500,44,457], + 0x25: [676,13,833,49,783], + 0x26: [676,13,778,42,750], + 0x27: [676,-431,180,48,133], + 0x28: [658,158,398,120,318], + 0x29: [658,158,398,80,278], + 0x2A: [714,-310,442,40,402], + 0x2B: [500,0,660,80,580], + 0x2C: [102,141,250,56,195], + 0x2D: [257,-194,333,39,285], + 0x2E: [100,11,250,70,181], + 0x2F: [650,150,466,80,386], + 0x30: [676,14,500,24,476], + 0x31: [676,0,500,111,394], + 0x32: [676,0,500,30,475], + 0x33: [676,14,500,43,432], + 0x34: [676,0,500,12,472], + 0x35: [688,14,500,32,438], + 0x36: [684,14,500,34,468], + 0x37: [662,8,500,20,449], + 0x38: [676,14,500,56,445], + 0x39: [676,22,500,30,459], + 0x3A: [459,11,278,81,192], + 0x3B: [459,141,278,80,219], + 0x3C: [515,15,666,80,586], + 0x3D: [372,-128,660,80,580], + 0x3E: [515,15,666,80,586], + 0x3F: [676,8,444,68,414], + 0x40: [676,14,921,116,809], + 0x41: [674,0,722,15,706], + 0x42: [662,0,667,17,593], + 0x43: [676,14,667,28,633], + 0x44: [662,0,722,16,685], + 0x45: [662,0,611,12,597], + 0x46: [662,0,556,12,546], + 0x47: [676,14,722,32,709], + 0x48: [662,0,722,19,702], + 0x49: [662,0,333,18,315], + 0x4A: [662,14,389,10,370], + 0x4B: [662,0,722,34,723], + 0x4C: [662,0,611,12,598], + 0x4D: [662,0,889,12,863], + 0x4E: [662,11,722,12,707], + 0x4F: [676,14,722,34,688], + 0x50: [662,0,556,16,542], + 0x51: [676,178,722,34,701], + 0x52: [662,0,667,17,659], + 0x53: [676,14,556,42,491], + 0x54: [662,0,611,17,593], + 0x55: [662,14,722,14,705], + 0x56: [662,11,722,16,697], + 0x57: [662,11,944,5,932], + 0x58: [662,0,722,10,704], + 0x59: [662,0,722,22,703], + 0x5A: [662,0,611,9,597], + 0x5B: [668,168,387,120,307], + 0x5C: [650,150,466,80,386], + 0x5D: [668,168,387,80,267], + 0x5E: [662,-297,469,24,446], + 0x5F: [-75,125,500,0,500], + 0x60: [675,-504,333,16,240], + 0x61: [460,10,444,37,442], + 0x62: [683,10,500,3,468], + 0x63: [460,10,444,25,412], + 0x64: [683,10,500,27,491], + 0x65: [460,10,444,25,424], + 0x66: [683,0,333,20,383], + 0x67: [460,218,500,28,470], + 0x68: [683,0,500,9,487], + 0x69: [641,0,278,16,253], + 0x6A: [641,218,278,-70,202], + 0x6B: [683,0,500,7,505], + 0x6C: [683,0,278,19,257], + 0x6D: [460,0,778,16,775], + 0x6E: [460,0,500,16,485], + 0x6F: [460,10,500,29,470], + 0x70: [460,217,500,5,470], + 0x71: [461,217,500,24,488], + 0x72: [460,0,333,5,335], + 0x73: [459,10,389,51,348], + 0x74: [579,10,278,13,279], + 0x75: [450,10,500,9,479], + 0x76: [450,14,500,19,477], + 0x77: [450,14,722,21,694], + 0x78: [450,0,500,17,479], + 0x79: [450,218,500,14,475], + 0x7A: [450,0,444,27,418], + 0x7B: [660,160,391,80,311], + 0x7C: [650,150,204,80,124], + 0x7D: [660,160,391,80,311], + 0x7E: [320,-186,541,40,502], + 0xA0: [0,0,250,0,0], + 0xA3: [676,8,500,12,490], + 0xA5: [662,0,500,-53,512], + 0xA7: [676,148,500,70,426], + 0xA8: [640,-541,333,18,316], + 0xAC: [276,0,686,80,606], + 0xAE: [686,14,760,30,730], + 0xAF: [617,-563,333,11,322], + 0xB0: [676,-390,400,57,343], + 0xB1: [500,122,660,80,580], + 0xB4: [675,-504,333,93,317], + 0xB5: [450,250,590,80,550], + 0xB7: [306,-194,272,80,192], + 0xD7: [445,-55,550,80,470], + 0xF0: [686,10,500,29,471], + 0xF7: [488,-12,660,80,580], + 0x131: [460,0,278,16,253], + 0x237: [460,218,278,-70,193], + 0x2C6: [674,-507,333,11,322], + 0x2C7: [674,-507,333,11,322], + 0x2D8: [669,-512,333,26,307], + 0x2D9: [641,-539,333,115,217], + 0x2DA: [690,-491,333,67,266], + 0x2DC: [643,-537,333,1,331], + 0x300: [710,-539,0,-400,-176], + 0x301: [710,-539,0,-323,-99], + 0x302: [685,-551,0,-421,-79], + 0x303: [665,-555,0,-417,-83], + 0x304: [637,-583,0,-405,-94], + 0x306: [681,-556,0,-425,-75], + 0x307: [661,-559,0,-301,-199], + 0x308: [660,-561,0,-398,-100], + 0x30A: [710,-511,0,-349,-150], + 0x30B: [711,-540,0,-379,11], + 0x30C: [679,-545,0,-421,-79], + 0x338: [650,150,0,-403,-97], + 0x391: [674,0,849,80,769], + 0x392: [662,0,736,80,656], + 0x393: [662,0,693,80,613], + 0x394: [674,0,760,80,680], + 0x395: [662,0,744,80,664], + 0x396: [662,0,747,80,667], + 0x397: [662,0,843,80,763], + 0x398: [675,14,814,80,734], + 0x399: [662,0,457,80,377], + 0x39A: [662,0,849,80,769], + 0x39B: [674,0,849,80,769], + 0x39C: [662,0,1011,80,931], + 0x39D: [662,11,854,80,774], + 0x39E: [662,0,726,80,646], + 0x39F: [675,14,814,80,734], + 0x3A0: [662,0,843,80,763], + 0x3A1: [662,0,686,80,606], + 0x3A3: [662,0,753,80,673], + 0x3A4: [662,0,736,80,656], + 0x3A5: [662,0,824,80,744], + 0x3A6: [662,0,722,80,642], + 0x3A7: [662,0,854,80,774], + 0x3A8: [662,0,799,80,719], + 0x3A9: [676,0,853,80,773], + 0x3B1: [460,17,635,80,554], + 0x3B2: [673,217,563,80,483], + 0x3B3: [461,234,673,80,593], + 0x3B4: [671,16,602,80,522], + 0x3B5: [460,16,539,80,459], + 0x3B6: [667,210,546,80,466], + 0x3B7: [460,217,599,80,519], + 0x3B8: [673,16,552,79,472], + 0x3B9: [460,17,463,80,383], + 0x3BA: [460,15,691,80,611], + 0x3BB: [673,18,666,80,586], + 0x3BC: [444,218,620,80,540], + 0x3BD: [460,16,604,80,524], + 0x3BE: [667,210,545,80,465], + 0x3BF: [460,10,600,80,520], + 0x3C0: [471,16,708,80,628], + 0x3C1: [460,218,544,80,464], + 0x3C2: [460,210,545,80,465], + 0x3C3: [471,16,597,80,517], + 0x3C4: [471,16,628,80,548], + 0x3C5: [460,16,587,80,507], + 0x3C6: [460,218,682,80,602], + 0x3C7: [460,236,666,80,586], + 0x3C8: [460,218,780,80,700], + 0x3C9: [463,16,767,80,687], + 0x3D1: [673,16,727,80,647], + 0x3D5: [657,217,702,80,622], + 0x3D6: [471,21,898,80,818], + 0x3F0: [460,16,676,80,596], + 0x3F1: [460,217,552,80,472], + 0x3F4: [675,14,814,80,734], + 0x3F5: [460,16,474,80,394], + 0x2002: [0,0,500,0,0], + 0x2003: [0,0,1000,0,0], + 0x2004: [0,0,333,0,0], + 0x2005: [0,0,250,0,0], + 0x2006: [0,0,167,0,0], + 0x2009: [0,0,200,0,0], + 0x200A: [0,0,100,0,0], + 0x2013: [250,-201,500,0,500], + 0x2014: [250,-201,1000,0,1000], + 0x2016: [650,150,348,80,268], + 0x2018: [676,-433,333,115,254], + 0x2019: [676,-433,333,79,218], + 0x201C: [676,-433,444,43,414], + 0x201D: [676,-433,444,30,401], + 0x2020: [676,149,500,59,443], + 0x2021: [676,153,500,58,442], + 0x2026: [112,0,869,80,789], + 0x2032: [780,-450,321,60,261], + 0x2033: [780,-450,521,60,461], + 0x2034: [780,-450,721,60,661], + 0x2035: [780,-450,321,60,261], + 0x2044: [650,150,466,80,386], + 0x2057: [780,-450,921,60,861], + 0x20D7: [710,-534,0,-443,-57], + 0x210F: [683,9,500,19,478], + 0x2111: [659,22,634,79,554], + 0x2113: [676,14,433,40,393], + 0x2118: [538,186,710,80,630], + 0x211C: [656,21,828,80,748], + 0x2127: [658,18,853,80,773], + 0x2135: [723,19,604,40,564], + 0x2136: [729,29,522,40,482], + 0x2137: [740,18,469,40,428], + 0x2138: [717,16,522,40,482], + 0x2190: [430,-70,850,80,770], + 0x2191: [600,90,520,80,440], + 0x2192: [430,-70,850,80,770], + 0x2193: [590,100,520,80,440], + 0x2194: [430,-70,1040,80,960], + 0x2195: [690,190,520,80,440], + 0x2196: [497,9,666,80,586], + 0x2197: [497,9,666,80,586], + 0x2198: [509,-3,666,80,586], + 0x2199: [509,-3,666,80,586], + 0x219A: [430,-70,850,80,770], + 0x219B: [430,-70,850,80,770], + 0x219E: [430,-70,1030,80,950], + 0x21A0: [430,-70,1030,80,950], + 0x21A2: [430,-70,1040,80,960], + 0x21A3: [430,-70,1040,80,960], + 0x21A6: [430,-70,850,80,770], + 0x21A9: [508,-70,876,80,796], + 0x21AA: [508,-70,876,80,796], + 0x21AB: [508,-18,876,80,796], + 0x21AC: [508,-18,876,80,796], + 0x21AD: [430,-70,1040,80,960], + 0x21AE: [430,-70,1040,80,960], + 0x21B0: [598,98,540,80,460], + 0x21B1: [598,98,540,80,460], + 0x21B6: [535,-241,799,80,719], + 0x21B7: [535,-241,799,80,719], + 0x21BA: [547,3,726,80,646], + 0x21BB: [547,3,726,79,646], + 0x21BC: [430,-224,840,80,760], + 0x21BD: [276,-70,840,80,760], + 0x21BE: [590,90,366,80,286], + 0x21BF: [590,90,366,80,286], + 0x21C0: [430,-224,840,80,760], + 0x21C1: [276,-70,840,80,760], + 0x21C2: [590,90,366,80,286], + 0x21C3: [590,90,366,80,286], + 0x21C4: [630,130,860,80,780], + 0x21C6: [630,130,860,80,780], + 0x21C7: [630,130,850,80,770], + 0x21C8: [600,90,920,80,840], + 0x21C9: [630,130,850,80,770], + 0x21CA: [590,100,920,80,840], + 0x21CB: [526,26,840,80,760], + 0x21CC: [526,26,840,80,760], + 0x21CD: [500,0,850,80,770], + 0x21CE: [500,0,1040,80,960], + 0x21CF: [500,0,850,80,770], + 0x21D0: [470,-30,850,80,770], + 0x21D1: [600,90,600,80,520], + 0x21D2: [470,-30,850,80,770], + 0x21D3: [590,100,600,80,520], + 0x21D4: [470,-30,1040,80,960], + 0x21D5: [690,190,600,80,520], + 0x21DA: [572,72,1030,80,950], + 0x21DB: [572,72,1030,80,950], + 0x21DD: [430,-70,850,80,770], + 0x2200: [662,4,580,70,510], + 0x2201: [662,0,560,80,480], + 0x2202: [673,17,552,80,472], + 0x2203: [662,0,534,80,454], + 0x2204: [729,67,534,80,454], + 0x2205: [755,93,660,80,580], + 0x2207: [664,10,760,80,680], + 0x2208: [500,0,678,80,598], + 0x2209: [650,150,678,80,598], + 0x220B: [500,0,678,80,598], + 0x220D: [425,-75,528,80,448], + 0x2212: [276,-224,660,80,580], + 0x2213: [622,0,660,80,580], + 0x2214: [697,0,660,80,580], + 0x2215: [650,150,466,80,386], + 0x2216: [608,108,660,80,580], + 0x2217: [452,-48,522,80,442], + 0x2218: [400,-100,460,80,380], + 0x2219: [400,-100,460,80,380], + 0x221A: [616,90,594,120,620], + 0x221D: [440,-60,797,80,717], + 0x221E: [442,-58,940,80,860], + 0x2220: [544,0,697,80,617], + 0x2221: [544,85,697,80,617], + 0x2222: [483,-17,642,80,562], + 0x2223: [650,150,204,80,124], + 0x2224: [650,150,346,80,266], + 0x2225: [650,150,348,80,268], + 0x2226: [650,150,482,80,402], + 0x2227: [506,0,660,80,580], + 0x2228: [500,6,660,80,580], + 0x2229: [518,0,660,80,580], + 0x222A: [500,18,660,80,580], + 0x222B: [796,296,666,80,586], + 0x2234: [415,-85,524,80,444], + 0x2235: [415,-85,524,80,444], + 0x223C: [319,-181,642,80,562], + 0x223D: [319,-181,642,80,562], + 0x2240: [491,-9,321,80,241], + 0x2241: [419,-81,642,80,562], + 0x2242: [372,-85,660,80,580], + 0x2243: [415,-128,660,80,580], + 0x2245: [471,-72,660,80,580], + 0x2246: [487,-22,660,80,580], + 0x2248: [415,-85,642,80,562], + 0x224A: [471,-72,660,80,580], + 0x224D: [411,-89,660,80,580], + 0x224E: [470,-30,660,80,580], + 0x224F: [470,-128,660,80,580], + 0x2250: [584,-128,660,80,580], + 0x2251: [584,84,660,80,580], + 0x2252: [584,84,660,80,580], + 0x2253: [584,84,660,80,580], + 0x2256: [372,-128,660,80,580], + 0x2257: [772,-128,660,80,580], + 0x225C: [829,-128,660,80,580], + 0x2260: [650,150,660,80,580], + 0x2261: [468,-32,660,80,580], + 0x2264: [564,54,665,80,585], + 0x2265: [564,54,665,80,585], + 0x2266: [627,117,665,80,585], + 0x2267: [627,117,665,80,585], + 0x2268: [627,184,665,80,585], + 0x2269: [627,184,665,80,585], + 0x226A: [517,17,805,80,725], + 0x226B: [517,17,805,80,725], + 0x226C: [666,166,413,80,333], + 0x226E: [650,150,666,80,586], + 0x226F: [650,150,666,80,586], + 0x2270: [611,111,665,80,585], + 0x2271: [611,111,665,80,585], + 0x2272: [585,75,665,80,585], + 0x2273: [585,75,665,80,585], + 0x2276: [655,155,670,80,590], + 0x2277: [655,155,670,80,590], + 0x227A: [528,28,682,80,602], + 0x227B: [528,28,682,80,602], + 0x227C: [631,131,682,80,602], + 0x227D: [631,131,682,80,602], + 0x227E: [599,89,655,80,575], + 0x227F: [599,89,655,80,575], + 0x2280: [650,150,682,80,602], + 0x2281: [650,150,682,80,602], + 0x2282: [500,0,678,80,598], + 0x2283: [500,0,678,80,598], + 0x2286: [576,76,678,80,598], + 0x2287: [576,76,678,80,598], + 0x2288: [685,185,678,80,598], + 0x2289: [685,185,678,80,598], + 0x228A: [576,143,678,80,598], + 0x228B: [576,143,678,80,598], + 0x228E: [500,18,660,80,580], + 0x228F: [500,0,660,80,580], + 0x2290: [500,0,660,80,580], + 0x2291: [576,76,660,80,580], + 0x2292: [576,76,660,80,580], + 0x2293: [513,-13,591,80,511], + 0x2294: [487,13,591,80,511], + 0x2295: [568,68,796,80,716], + 0x2296: [568,68,796,80,716], + 0x2297: [568,68,796,80,716], + 0x2298: [568,68,796,80,716], + 0x2299: [568,68,796,80,716], + 0x229A: [568,68,796,80,716], + 0x229B: [568,68,796,80,716], + 0x229D: [568,68,796,80,716], + 0x229E: [500,0,660,80,580], + 0x229F: [500,0,660,80,580], + 0x22A0: [500,0,660,80,580], + 0x22A1: [500,0,660,80,580], + 0x22A2: [650,0,660,80,580], + 0x22A3: [650,0,660,80,580], + 0x22A4: [650,0,660,80,580], + 0x22A5: [650,0,660,80,580], + 0x22A8: [650,150,660,80,580], + 0x22A9: [650,150,738,80,658], + 0x22AA: [650,150,890,80,810], + 0x22AC: [650,150,712,80,632], + 0x22AD: [650,150,764,80,684], + 0x22AE: [650,150,842,80,762], + 0x22AF: [650,150,842,80,762], + 0x22B2: [527,27,697,80,617], + 0x22B3: [527,27,697,80,617], + 0x22B4: [570,70,696,80,616], + 0x22B5: [570,70,696,80,616], + 0x22B8: [400,-100,810,80,730], + 0x22BA: [650,0,660,80,580], + 0x22BB: [526,26,660,80,580], + 0x22BC: [526,26,660,80,580], + 0x22C4: [448,-52,557,80,477], + 0x22C5: [306,-194,272,80,192], + 0x22C6: [420,-110,486,80,406], + 0x22C8: [445,-55,566,80,486], + 0x22C9: [445,-55,558,80,478], + 0x22CA: [445,-55,558,80,478], + 0x22CB: [445,-55,550,80,470], + 0x22CC: [445,-55,550,80,470], + 0x22CD: [415,-128,660,80,580], + 0x22CE: [500,-1,683,80,603], + 0x22CF: [499,0,683,80,603], + 0x22D0: [500,0,678,80,598], + 0x22D1: [500,0,678,80,598], + 0x22D2: [518,0,660,80,580], + 0x22D3: [500,18,660,80,580], + 0x22D6: [515,15,666,80,586], + 0x22D7: [515,15,666,80,586], + 0x22D8: [517,17,1082,80,1002], + 0x22D9: [517,17,1082,80,1002], + 0x22DA: [756,256,665,80,585], + 0x22DB: [756,256,665,80,585], + 0x22DE: [631,131,682,80,602], + 0x22DF: [631,131,682,80,602], + 0x22E0: [657,157,682,80,602], + 0x22E1: [657,157,682,80,602], + 0x22E6: [585,125,665,80,585], + 0x22E7: [585,125,665,80,585], + 0x22E8: [599,139,655,80,575], + 0x22E9: [599,139,655,80,575], + 0x22EA: [650,150,697,80,617], + 0x22EB: [650,150,697,80,617], + 0x22EC: [622,122,696,80,616], + 0x22ED: [622,122,696,80,616], + 0x22EE: [605,105,272,80,192], + 0x22EF: [306,-194,869,80,789], + 0x22F1: [517,17,694,80,614], + 0x2308: [668,150,387,120,307], + 0x2309: [668,150,387,80,267], + 0x230A: [650,168,387,120,307], + 0x230B: [650,168,387,80,267], + 0x2322: [354,-146,978,80,898], + 0x2323: [354,-146,978,80,898], + 0x23B4: [726,-548,375,0,375], + 0x23B5: [-98,276,375,0,375], + 0x23D0: [527,0,212,80,132], + 0x23DC: [699,-595,514,0,514], + 0x23DD: [-145,249,514,0,514], + 0x23DE: [739,-559,520,0,520], + 0x23DF: [-109,289,520,0,520], + 0x23E0: [717,-579,562,0,562], + 0x23E1: [-129,267,562,0,562], + 0x250C: [276,150,500,224,500], + 0x2510: [276,150,500,0,276], + 0x2514: [650,-224,500,224,500], + 0x2518: [650,-224,500,0,276], + 0x25A0: [500,0,660,80,580], + 0x25A1: [500,0,660,80,580], + 0x25B2: [656,-47,862,80,782], + 0x25B3: [656,-47,862,80,782], + 0x25B6: [601,101,768,80,688], + 0x25BC: [453,156,862,80,782], + 0x25BD: [453,156,862,80,782], + 0x25C0: [601,101,768,80,688], + 0x25CA: [555,55,564,80,484], + 0x25EF: [668,168,996,80,916], + 0x2660: [668,0,796,80,716], + 0x2661: [668,0,760,80,680], + 0x2662: [670,0,782,80,702], + 0x2663: [668,0,822,80,742], + 0x266D: [650,35,424,80,344], + 0x266E: [650,150,399,80,319], + 0x266F: [678,178,493,80,413], + 0x2713: [650,0,752,80,672], + 0x2720: [662,0,822,80,742], + 0x27E8: [656,156,357,80,277], + 0x27E9: [656,156,357,80,277], + 0x27EE: [657,157,320,120,240], + 0x27EF: [657,157,320,80,200], + 0x27F5: [430,-70,1170,80,1090], + 0x27F6: [430,-70,1170,80,1090], + 0x27F7: [430,-70,1360,80,1280], + 0x27F8: [470,-30,1170,80,1090], + 0x27F9: [470,-30,1170,80,1090], + 0x27FA: [470,-30,1360,80,1280], + 0x27FC: [430,-70,1170,80,1090], + 0x2A3F: [662,0,761,24,737], + 0x2A7D: [599,99,666,80,586], + 0x2A7E: [599,99,666,80,586], + 0x2A85: [646,136,665,80,585], + 0x2A86: [646,136,665,80,585], + 0x2A87: [593,93,665,80,585], + 0x2A88: [593,93,665,80,585], + 0x2A89: [646,186,665,80,585], + 0x2A8A: [646,186,665,80,585], + 0x2A8B: [819,319,665,80,585], + 0x2A8C: [819,319,665,80,585], + 0x2A95: [599,99,666,80,586], + 0x2A96: [599,99,666,80,586], + 0x2AAF: [604,94,682,80,602], + 0x2AB0: [604,94,682,80,602] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Main"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Marks/Regular/Main.js new file mode 100644 index 0000000..60c88d4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Marks/Regular/Main.js @@ -0,0 +1,107 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'GyreTermesMathJax_Marks', + testString: '\u00A0\u02DB\u02DD\u0305\u0309\u030F\u0311\u0323\u0326\u032C\u032D\u032E\u032F\u0330\u0331', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2DB: [17,245,333,81,261], + 0x2DD: [676,-505,333,37,427], + 0x305: [632,-588,0,-416,-83], + 0x309: [704,-517,0,-348,-151], + 0x30F: [711,-540,0,-510,-120], + 0x311: [692,-567,0,-425,-75], + 0x323: [-89,191,0,-301,-199], + 0x326: [-38,281,0,-319,-180], + 0x32C: [-70,204,0,-421,-79], + 0x32D: [-80,214,0,-421,-79], + 0x32E: [-70,195,0,-425,-75], + 0x32F: [-88,213,0,-425,-75], + 0x330: [-88,197,0,-417,-83], + 0x331: [-113,167,0,-405,-94], + 0x332: [-70,114,0,-416,-83], + 0x333: [-70,228,0,-416,-83], + 0x33F: [746,-588,0,-416,-83], + 0x2000: [0,0,500,0,0], + 0x2001: [0,0,1000,0,0], + 0x2007: [0,0,500,0,0], + 0x2008: [0,0,250,0,0], + 0x200B: [0,0,0,0,0], + 0x200C: [0,0,0,0,0], + 0x200D: [0,0,0,0,0], + 0x2010: [257,-194,333,39,285], + 0x2012: [357,-305,660,80,580], + 0x2015: [276,-224,1160,80,1080], + 0x2017: [-70,228,493,80,413], + 0x201A: [102,141,333,79,218], + 0x201E: [102,141,444,45,416], + 0x2022: [400,-100,460,80,380], + 0x202F: [0,0,200,0,0], + 0x2030: [676,13,1000,14,986], + 0x2031: [676,13,1320,14,1306], + 0x2036: [780,-450,521,60,461], + 0x2037: [780,-450,721,60,661], + 0x2039: [411,-33,333,57,278], + 0x203A: [411,-33,333,45,266], + 0x203B: [514,14,564,18,546], + 0x203D: [736,8,444,68,414], + 0x2052: [662,0,500,28,472], + 0x205F: [0,0,222,0,0], + 0x2060: [0,0,0,0,0], + 0x2061: [702,202,1008,52,956], + 0x2062: [0,0,0,0,0], + 0x2063: [0,0,0,0,0], + 0x2064: [0,0,0,0,0], + 0x20D0: [710,-600,0,-438,-62], + 0x20D1: [710,-600,0,-438,-62], + 0x20D2: [650,150,0,-272,-228], + 0x20D3: [500,0,0,-276,-224], + 0x20D4: [768,-599,0,-452,-48], + 0x20D5: [768,-599,0,-452,-48], + 0x20D6: [710,-534,0,-443,-57], + 0x20D8: [400,-100,0,-400,-100], + 0x20DB: [660,-560,0,-500,0], + 0x20DC: [660,-560,0,-600,100], + 0x20DD: [668,168,0,-668,168], + 0x20DE: [650,150,0,-650,150], + 0x20DF: [872,372,0,-872,372], + 0x20E1: [710,-534,0,-479,-21], + 0x20E4: [735,209,0,-795,295], + 0x20E5: [650,150,0,-403,-97], + 0x20E6: [650,150,0,-344,-156], + 0x20E8: [-70,170,0,-500,0], + 0x20E9: [726,-548,0,-438,-63], + 0x20EA: [430,-70,0,-595,95], + 0x20EB: [650,150,0,-479,-21], + 0x20EC: [-150,260,0,-438,-62], + 0x20ED: [-150,260,0,-438,-62], + 0x20EE: [-84,260,0,-443,-57], + 0x20EF: [-84,260,0,-443,-57], + 0x20F0: [747,-509,0,-356,-143], + 0x2E18: [503,241,444,30,376], + 0x3016: [668,168,430,80,350], + 0x3017: [668,168,430,80,350] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Marks"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Marks/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Misc/Regular/Main.js new file mode 100644 index 0000000..0576312 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Misc/Regular/Main.js @@ -0,0 +1,40 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'GyreTermesMathJax_Misc', + testString: '\u00A0\u20A1\u20A4\u20A6\u20A9\u20AB\u20AC\u20B1\u20B2\u27A1', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x20A1: [745,83,667,28,633], + 0x20A4: [676,8,500,12,490], + 0x20A6: [662,11,722,12,707], + 0x20A9: [662,11,944,5,932], + 0x20AB: [662,28,482,40,442], + 0x20AC: [674,15,500,4,497], + 0x20B1: [662,0,556,16,542], + 0x20B2: [745,83,722,32,709], + 0x27A1: [470,-30,1030,80,950] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Misc"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Misc/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Monospace/Regular/Main.js new file mode 100644 index 0000000..fc9c9e6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Monospace/Regular/Main.js @@ -0,0 +1,93 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'GyreTermesMathJax_Monospace', + testString: '\u00A0\uD835\uDE70\uD835\uDE71\uD835\uDE72\uD835\uDE73\uD835\uDE74\uD835\uDE75\uD835\uDE76\uD835\uDE77\uD835\uDE78\uD835\uDE79\uD835\uDE7A\uD835\uDE7B\uD835\uDE7C\uD835\uDE7D', + 0x20: [0,0,600,0,0], + 0xA0: [0,0,600,0,0], + 0x1D670: [563,0,600,9,591], + 0x1D671: [563,0,600,43,541], + 0x1D672: [576,16,600,63,534], + 0x1D673: [563,0,600,43,520], + 0x1D674: [563,0,600,43,520], + 0x1D675: [563,0,600,43,520], + 0x1D676: [576,16,600,63,562], + 0x1D677: [563,0,600,53,551], + 0x1D678: [563,0,600,113,487], + 0x1D679: [563,16,600,84,583], + 0x1D67A: [563,0,600,43,572], + 0x1D67B: [563,0,600,63,541], + 0x1D67C: [563,0,600,11,593], + 0x1D67D: [563,0,600,22,562], + 0x1D67E: [576,16,600,51,549], + 0x1D67F: [563,0,600,43,499], + 0x1D680: [576,115,600,51,549], + 0x1D681: [563,0,600,43,589], + 0x1D682: [576,16,600,92,508], + 0x1D683: [563,0,600,72,528], + 0x1D684: [563,16,600,40,560], + 0x1D685: [563,0,600,9,591], + 0x1D686: [563,0,600,20,580], + 0x1D687: [563,0,600,40,560], + 0x1D688: [563,0,600,51,549], + 0x1D689: [563,0,600,103,497], + 0x1D68A: [431,16,600,72,541], + 0x1D68B: [604,16,600,22,541], + 0x1D68C: [431,16,600,84,535], + 0x1D68D: [604,16,600,63,583], + 0x1D68E: [431,16,600,63,520], + 0x1D68F: [604,0,600,105,541], + 0x1D690: [431,186,600,63,562], + 0x1D691: [604,0,600,43,551], + 0x1D692: [610,0,600,92,508], + 0x1D693: [610,186,600,147,458], + 0x1D694: [604,0,600,63,541], + 0x1D695: [604,0,600,92,508], + 0x1D696: [431,0,600,11,593], + 0x1D697: [431,0,600,53,541], + 0x1D698: [431,16,600,72,528], + 0x1D699: [431,186,600,22,541], + 0x1D69A: [431,186,600,63,583], + 0x1D69B: [427,0,600,84,541], + 0x1D69C: [431,16,600,103,497], + 0x1D69D: [563,16,600,43,499], + 0x1D69E: [417,16,600,43,541], + 0x1D69F: [417,0,600,30,570], + 0x1D6A0: [417,0,600,30,570], + 0x1D6A1: [417,0,600,51,549], + 0x1D6A2: [417,186,600,51,549], + 0x1D6A3: [417,0,600,115,489], + 0x1D7F6: [618,15,600,113,487], + 0x1D7F7: [612,0,600,113,487], + 0x1D7F8: [618,0,600,84,478], + 0x1D7F9: [618,15,600,96,499], + 0x1D7FA: [604,0,600,105,478], + 0x1D7FB: [604,15,600,96,499], + 0x1D7FC: [618,15,600,136,510], + 0x1D7FD: [604,1,600,105,478], + 0x1D7FE: [618,15,600,113,487], + 0x1D7FF: [618,15,600,136,510] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Monospace"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Monospace/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..e370bfa --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/NonUnicode/Regular/Main.js @@ -0,0 +1,1477 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'GyreTermesMathJax_NonUnicode', + testString: '\u00A0\uE000\uE001\uE002\uE003\uE004\uE005\uE006\uE007\uE008\uE009\uE00A\uE00B\uE00C\uE00D', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xE000: [-38,281,333,97,236], + 0xE001: [684,-497,333,68,265], + 0xE002: [683,0,791,32,796], + 0xE003: [686,14,760,30,730], + 0xE004: [662,0,580,40,540], + 0xE005: [250,-201,750,0,750], + 0xE006: [250,-201,667,0,667], + 0xE007: [721,59,1000,25,974], + 0xE008: [676,-505,333,-94,296], + 0xE009: [-89,191,333,115,217], + 0xE00A: [-113,167,333,11,322], + 0xE00B: [67,67,541,40,502], + 0xE00C: [676,14,1060,40,1020], + 0xE00D: [371,0,336,-4,286], + 0xE00E: [480,-36,500,17,483], + 0xE00F: [824,162,722,34,688], + 0xE010: [608,162,500,29,470], + 0xE011: [674,0,814,27,787], + 0xE012: [674,0,914,38,874], + 0xE013: [460,10,508,51,496], + 0xE014: [460,10,577,65,555], + 0xE015: [851,0,814,27,787], + 0xE016: [851,0,914,38,874], + 0xE017: [675,10,508,51,496], + 0xE018: [675,10,577,65,555], + 0xE019: [851,0,814,27,787], + 0xE01A: [851,0,914,38,874], + 0xE01B: [669,10,508,51,496], + 0xE01C: [669,10,577,65,555], + 0xE01D: [1010,0,814,27,787], + 0xE01E: [1010,0,914,38,874], + 0xE01F: [798,10,508,51,496], + 0xE020: [798,10,577,65,555], + 0xE021: [851,191,814,27,787], + 0xE022: [851,191,914,38,874], + 0xE023: [669,191,508,51,496], + 0xE024: [669,191,577,65,555], + 0xE025: [1010,0,814,27,787], + 0xE026: [1010,0,914,38,874], + 0xE027: [798,10,508,51,496], + 0xE028: [798,10,577,65,555], + 0xE029: [984,0,814,27,787], + 0xE02A: [984,0,914,38,874], + 0xE02B: [772,10,508,51,496], + 0xE02C: [772,10,577,65,555], + 0xE02D: [984,0,814,27,787], + 0xE02E: [984,0,914,38,874], + 0xE02F: [772,10,508,51,496], + 0xE030: [772,10,577,65,555], + 0xE031: [847,0,814,27,787], + 0xE032: [847,0,914,38,874], + 0xE033: [674,10,508,51,496], + 0xE034: [674,10,577,65,555], + 0xE035: [1006,0,814,27,787], + 0xE036: [1006,0,914,38,874], + 0xE037: [794,10,508,51,496], + 0xE038: [794,10,577,65,555], + 0xE039: [847,191,814,27,787], + 0xE03A: [847,191,914,38,874], + 0xE03B: [674,191,508,51,496], + 0xE03C: [674,191,577,65,555], + 0xE03D: [1006,0,814,27,787], + 0xE03E: [1006,0,914,38,874], + 0xE03F: [794,10,508,51,496], + 0xE040: [794,10,577,65,555], + 0xE041: [1020,0,814,27,787], + 0xE042: [1020,0,914,38,874], + 0xE043: [808,10,508,51,496], + 0xE044: [808,10,577,65,555], + 0xE045: [983,0,814,27,787], + 0xE046: [983,0,914,38,874], + 0xE047: [771,10,508,51,496], + 0xE048: [771,10,577,65,555], + 0xE049: [675,-504,386,112,359], + 0xE04A: [675,-504,443,133,404], + 0xE04B: [832,0,814,27,787], + 0xE04C: [832,0,914,38,874], + 0xE04D: [640,10,508,51,496], + 0xE04E: [640,10,577,65,555], + 0xE04F: [674,191,814,27,787], + 0xE050: [674,191,914,38,874], + 0xE051: [460,191,508,51,496], + 0xE052: [460,191,577,65,555], + 0xE053: [662,0,998,10,959], + 0xE054: [662,0,1116,20,1064], + 0xE055: [460,10,754,52,705], + 0xE056: [460,10,847,66,785], + 0xE057: [851,0,814,27,787], + 0xE058: [851,0,914,38,874], + 0xE059: [675,10,508,51,496], + 0xE05A: [675,10,577,65,555], + 0xE05B: [896,0,814,27,787], + 0xE05C: [896,0,914,38,874], + 0xE05D: [684,10,508,51,496], + 0xE05E: [684,10,577,65,555], + 0xE05F: [809,0,814,27,787], + 0xE060: [809,0,914,38,874], + 0xE061: [617,10,508,51,496], + 0xE062: [617,10,577,65,555], + 0xE063: [676,13,876,56,835], + 0xE064: [676,13,981,71,928], + 0xE065: [674,245,814,27,787], + 0xE066: [674,245,914,38,874], + 0xE067: [460,245,508,51,496], + 0xE068: [460,245,577,65,555], + 0xE069: [896,0,814,27,787], + 0xE06A: [896,0,914,38,874], + 0xE06B: [690,10,508,51,496], + 0xE06C: [690,10,577,65,555], + 0xE06D: [676,14,1033,138,900], + 0xE06E: [676,14,1154,160,999], + 0xE06F: [835,0,814,27,787], + 0xE070: [835,0,914,38,874], + 0xE071: [643,10,508,51,496], + 0xE072: [643,10,577,65,555], + 0xE073: [662,0,754,29,662], + 0xE074: [662,0,847,41,738], + 0xE075: [683,10,570,13,525], + 0xE076: [683,10,645,24,586], + 0xE077: [669,-512,386,39,348], + 0xE078: [669,-512,443,51,391], + 0xE079: [662,156,240,84,156], + 0xE07A: [662,156,282,101,181], + 0xE07B: [676,14,754,41,706], + 0xE07C: [676,14,847,54,786], + 0xE07D: [460,10,508,38,463], + 0xE07E: [460,10,577,50,519], + 0xE07F: [851,14,754,41,706], + 0xE080: [851,14,847,54,786], + 0xE081: [675,10,508,38,463], + 0xE082: [675,10,577,50,519], + 0xE083: [674,-507,386,22,364], + 0xE084: [674,-507,443,33,410], + 0xE085: [847,14,754,41,706], + 0xE086: [847,14,847,54,786], + 0xE087: [674,10,508,38,463], + 0xE088: [674,10,577,50,519], + 0xE089: [676,215,754,41,706], + 0xE08A: [676,215,847,54,786], + 0xE08B: [460,215,508,38,463], + 0xE08C: [460,215,577,50,519], + 0xE08D: [5,215,386,67,297], + 0xE08E: [5,215,443,83,336], + 0xE08F: [579,138,570,68,503], + 0xE090: [579,138,645,84,562], + 0xE091: [674,-507,386,22,364], + 0xE092: [674,-507,443,33,410], + 0xE093: [459,11,326,99,221], + 0xE094: [459,11,376,118,252], + 0xE095: [102,141,295,72,225], + 0xE096: [102,141,343,88,256], + 0xE097: [662,0,814,28,764], + 0xE098: [662,0,914,39,849], + 0xE099: [683,10,570,40,550], + 0xE09A: [683,10,645,53,614], + 0xE09B: [847,0,814,28,764], + 0xE09C: [847,0,914,39,849], + 0xE09D: [683,10,570,40,673], + 0xE09E: [683,10,645,53,750], + 0xE09F: [662,0,814,28,764], + 0xE0A0: [662,0,914,39,849], + 0xE0A1: [683,10,570,40,560], + 0xE0A2: [683,10,645,53,625], + 0xE0A3: [640,-541,386,30,358], + 0xE0A4: [640,-541,443,42,402], + 0xE0A5: [727,87,570,58,513], + 0xE0A6: [727,87,645,73,573], + 0xE0A7: [641,-539,386,137,249], + 0xE0A8: [641,-539,443,159,283], + 0xE0A9: [-89,191,386,137,249], + 0xE0AA: [-89,191,443,159,283], + 0xE0AB: [662,0,692,23,667], + 0xE0AC: [662,0,779,35,742], + 0xE0AD: [460,10,508,38,476], + 0xE0AE: [460,10,577,50,533], + 0xE0AF: [851,0,692,23,667], + 0xE0B0: [851,0,779,35,742], + 0xE0B1: [675,10,508,38,476], + 0xE0B2: [675,10,577,50,533], + 0xE0B3: [847,0,692,23,667], + 0xE0B4: [847,0,779,35,742], + 0xE0B5: [674,10,508,38,476], + 0xE0B6: [674,10,577,50,533], + 0xE0B7: [847,0,692,23,667], + 0xE0B8: [847,0,779,35,742], + 0xE0B9: [674,10,508,38,476], + 0xE0BA: [674,10,577,50,533], + 0xE0BB: [1006,0,692,23,667], + 0xE0BC: [1006,0,779,35,742], + 0xE0BD: [794,10,508,38,476], + 0xE0BE: [794,10,577,50,533], + 0xE0BF: [847,191,692,23,667], + 0xE0C0: [847,191,779,35,742], + 0xE0C1: [674,191,508,38,476], + 0xE0C2: [674,191,577,50,533], + 0xE0C3: [1006,0,692,23,667], + 0xE0C4: [1006,0,779,35,742], + 0xE0C5: [794,10,508,38,476], + 0xE0C6: [794,10,577,50,533], + 0xE0C7: [1020,0,692,23,667], + 0xE0C8: [1020,0,779,35,742], + 0xE0C9: [808,10,508,38,476], + 0xE0CA: [808,10,577,50,533], + 0xE0CB: [983,0,692,23,667], + 0xE0CC: [983,0,779,35,742], + 0xE0CD: [771,10,508,38,476], + 0xE0CE: [771,10,577,50,533], + 0xE0CF: [832,0,692,23,667], + 0xE0D0: [832,0,779,35,742], + 0xE0D1: [640,10,508,38,476], + 0xE0D2: [640,10,577,50,533], + 0xE0D3: [833,0,692,23,667], + 0xE0D4: [833,0,779,35,742], + 0xE0D5: [641,10,508,38,476], + 0xE0D6: [641,10,577,50,533], + 0xE0D7: [662,191,692,23,667], + 0xE0D8: [662,191,779,35,742], + 0xE0D9: [460,191,508,38,476], + 0xE0DA: [460,191,577,50,533], + 0xE0DB: [851,0,692,23,667], + 0xE0DC: [851,0,779,35,742], + 0xE0DD: [675,10,508,38,476], + 0xE0DE: [675,10,577,50,533], + 0xE0DF: [896,0,692,23,667], + 0xE0E0: [896,0,779,35,742], + 0xE0E1: [684,10,508,38,476], + 0xE0E2: [684,10,577,50,533], + 0xE0E3: [676,14,570,72,500], + 0xE0E4: [676,14,645,88,558], + 0xE0E5: [809,0,692,23,667], + 0xE0E6: [809,0,779,35,742], + 0xE0E7: [617,10,508,38,476], + 0xE0E8: [617,10,577,50,533], + 0xE0E9: [662,218,814,23,788], + 0xE0EA: [662,218,914,35,875], + 0xE0EB: [460,218,570,28,476], + 0xE0EC: [460,218,645,39,533], + 0xE0ED: [662,245,692,23,667], + 0xE0EE: [662,245,779,35,742], + 0xE0EF: [460,245,508,38,476], + 0xE0F0: [460,245,577,50,533], + 0xE0F1: [662,0,814,28,764], + 0xE0F2: [662,0,914,39,849], + 0xE0F3: [686,10,570,42,528], + 0xE0F4: [686,10,645,55,590], + 0xE0F5: [835,0,692,23,667], + 0xE0F6: [835,0,779,35,742], + 0xE0F7: [643,10,508,38,476], + 0xE0F8: [643,10,577,50,533], + 0xE0F9: [674,15,570,14,557], + 0xE0FA: [674,15,645,25,621], + 0xE0FB: [676,9,386,153,271], + 0xE0FC: [676,9,443,177,307], + 0xE0FD: [459,226,386,116,233], + 0xE0FE: [459,226,443,136,266], + 0xE0FF: [662,0,632,23,611], + 0xE100: [662,0,713,35,681], + 0xE101: [683,0,386,32,431], + 0xE102: [683,0,443,44,483], + 0xE103: [683,0,890,45,886], + 0xE104: [683,0,997,59,983], + 0xE105: [683,0,680,44,725], + 0xE106: [683,0,766,58,807], + 0xE107: [683,0,930,44,881], + 0xE108: [683,0,1041,58,978], + 0xE109: [683,0,930,44,881], + 0xE10A: [683,0,1041,58,978], + 0xE10B: [683,0,632,44,583], + 0xE10C: [683,0,713,58,650], + 0xE10D: [688,14,570,45,492], + 0xE10E: [688,14,645,59,550], + 0xE10F: [683,0,632,45,583], + 0xE110: [683,0,713,59,650], + 0xE111: [676,0,570,23,529], + 0xE112: [676,0,645,35,591], + 0xE113: [676,14,814,45,790], + 0xE114: [676,14,914,59,878], + 0xE115: [460,218,570,41,527], + 0xE116: [460,218,645,54,589], + 0xE117: [851,14,814,45,790], + 0xE118: [851,14,914,59,878], + 0xE119: [669,218,570,41,527], + 0xE11A: [669,218,645,54,589], + 0xE11B: [676,281,814,45,790], + 0xE11C: [676,281,914,59,878], + 0xE11D: [733,218,570,41,527], + 0xE11E: [733,218,645,54,589], + 0xE11F: [676,14,1186,54,1132], + 0xE120: [676,14,1323,68,1254], + 0xE121: [683,9,570,23,525], + 0xE122: [683,9,645,35,586], + 0xE123: [675,-504,386,28,274], + 0xE124: [675,-504,443,39,310], + 0xE125: [411,-33,570,73,525], + 0xE126: [411,-33,645,89,586], + 0xE127: [411,-33,570,60,512], + 0xE128: [411,-33,645,74,572], + 0xE129: [411,-33,386,73,316], + 0xE12A: [411,-33,443,89,356], + 0xE12B: [411,-33,386,60,303], + 0xE12C: [411,-33,443,74,342], + 0xE12D: [662,0,814,31,782], + 0xE12E: [662,0,914,43,869], + 0xE12F: [683,0,570,20,546], + 0xE130: [683,0,645,31,609], + 0xE131: [684,-497,386,85,302], + 0xE132: [684,-497,443,102,341], + 0xE133: [676,-505,386,51,480], + 0xE134: [676,-505,443,65,537], + 0xE135: [257,-194,386,53,324], + 0xE136: [257,-194,443,67,365], + 0xE137: [662,0,386,30,357], + 0xE138: [662,0,443,42,401], + 0xE139: [641,0,326,28,288], + 0xE13A: [641,0,376,39,326], + 0xE13B: [851,0,386,30,363], + 0xE13C: [851,0,443,42,408], + 0xE13D: [675,0,326,28,327], + 0xE13E: [675,0,376,39,368], + 0xE13F: [847,0,386,3,384], + 0xE140: [847,0,443,13,431], + 0xE141: [674,0,326,-10,332], + 0xE142: [674,0,376,-2,375], + 0xE143: [832,0,386,30,358], + 0xE144: [832,0,443,42,402], + 0xE145: [640,0,326,-2,326], + 0xE146: [640,0,376,7,367], + 0xE147: [833,0,386,30,357], + 0xE148: [833,0,443,42,401], + 0xE149: [662,191,386,30,357], + 0xE14A: [662,191,443,42,401], + 0xE14B: [641,191,326,28,288], + 0xE14C: [641,191,376,39,326], + 0xE14D: [851,0,386,23,357], + 0xE14E: [851,0,443,35,401], + 0xE14F: [675,0,326,-4,288], + 0xE150: [675,0,376,4,326], + 0xE151: [896,0,386,30,357], + 0xE152: [896,0,443,42,401], + 0xE153: [684,0,326,28,288], + 0xE154: [684,0,376,39,326], + 0xE155: [662,14,886,54,832], + 0xE156: [662,14,992,68,924], + 0xE157: [641,218,609,54,564], + 0xE158: [641,218,687,68,630], + 0xE159: [809,0,386,22,364], + 0xE15A: [809,0,443,33,410], + 0xE15B: [617,0,326,-10,332], + 0xE15C: [617,0,376,-2,375], + 0xE15D: [662,245,386,30,357], + 0xE15E: [662,245,443,42,401], + 0xE15F: [641,245,326,28,288], + 0xE160: [641,245,376,39,326], + 0xE161: [835,0,386,11,374], + 0xE162: [835,0,443,21,421], + 0xE163: [643,0,326,-21,342], + 0xE164: [643,0,376,-14,385], + 0xE165: [662,14,448,21,417], + 0xE166: [662,14,511,32,468], + 0xE167: [641,218,326,-67,232], + 0xE168: [641,218,376,-65,264], + 0xE169: [662,0,814,47,805], + 0xE16A: [662,0,914,61,895], + 0xE16B: [683,0,570,18,566], + 0xE16C: [683,0,645,28,631], + 0xE16D: [662,281,814,47,805], + 0xE16E: [662,281,914,61,895], + 0xE16F: [683,281,570,18,566], + 0xE170: [683,281,645,28,631], + 0xE171: [662,0,692,23,668], + 0xE172: [662,0,779,35,744], + 0xE173: [683,0,326,31,293], + 0xE174: [683,0,376,43,331], + 0xE175: [851,0,692,23,668], + 0xE176: [851,0,779,35,744], + 0xE177: [872,0,326,31,321], + 0xE178: [872,0,376,43,362], + 0xE179: [662,0,692,23,668], + 0xE17A: [662,0,779,35,744], + 0xE17B: [683,0,326,31,407], + 0xE17C: [683,0,376,43,457], + 0xE17D: [662,281,692,23,668], + 0xE17E: [662,281,779,35,744], + 0xE17F: [683,281,326,31,293], + 0xE180: [683,281,376,43,331], + 0xE181: [683,0,386,32,431], + 0xE182: [683,0,443,44,483], + 0xE183: [662,0,692,23,668], + 0xE184: [662,0,779,35,744], + 0xE185: [683,0,326,27,300], + 0xE186: [683,0,376,38,339], + 0xE187: [662,0,998,23,959], + 0xE188: [662,0,1116,35,1064], + 0xE189: [460,0,876,28,863], + 0xE18A: [460,0,981,39,958], + 0xE18B: [617,-563,386,22,364], + 0xE18C: [617,-563,443,33,410], + 0xE18D: [450,250,669,98,615], + 0xE18E: [450,250,754,117,686], + 0xE18F: [662,11,814,23,788], + 0xE190: [662,11,914,35,875], + 0xE191: [460,0,570,28,544], + 0xE192: [460,0,645,39,607], + 0xE193: [851,11,814,23,788], + 0xE194: [851,11,914,35,875], + 0xE195: [675,0,570,28,544], + 0xE196: [675,0,645,39,607], + 0xE197: [847,11,814,23,788], + 0xE198: [847,11,914,35,875], + 0xE199: [674,0,570,28,544], + 0xE19A: [674,0,645,39,607], + 0xE19B: [662,281,814,23,788], + 0xE19C: [662,281,914,35,875], + 0xE19D: [460,281,570,28,544], + 0xE19E: [460,281,645,39,607], + 0xE19F: [676,22,570,43,515], + 0xE1A0: [676,22,645,56,575], + 0xE1A1: [835,11,814,23,788], + 0xE1A2: [835,11,914,35,875], + 0xE1A3: [643,0,570,28,544], + 0xE1A4: [643,0,645,39,607], + 0xE1A5: [662,0,570,16,556], + 0xE1A6: [662,0,645,26,620], + 0xE1A7: [676,14,814,47,767], + 0xE1A8: [676,14,914,61,852], + 0xE1A9: [460,10,570,42,527], + 0xE1AA: [460,10,645,55,589], + 0xE1AB: [851,14,814,47,767], + 0xE1AC: [851,14,914,61,852], + 0xE1AD: [675,10,570,42,527], + 0xE1AE: [675,10,645,55,589], + 0xE1AF: [847,14,814,47,767], + 0xE1B0: [847,14,914,61,852], + 0xE1B1: [674,10,570,42,527], + 0xE1B2: [674,10,645,55,589], + 0xE1B3: [1006,14,814,47,767], + 0xE1B4: [1006,14,914,61,852], + 0xE1B5: [794,10,570,42,527], + 0xE1B6: [794,10,645,55,589], + 0xE1B7: [847,191,814,47,767], + 0xE1B8: [847,191,914,61,852], + 0xE1B9: [674,191,570,42,527], + 0xE1BA: [674,191,645,55,589], + 0xE1BB: [1006,14,814,47,767], + 0xE1BC: [1006,14,914,61,852], + 0xE1BD: [794,10,570,42,527], + 0xE1BE: [794,10,645,55,589], + 0xE1BF: [1020,14,814,47,767], + 0xE1C0: [1020,14,914,61,852], + 0xE1C1: [808,10,570,42,527], + 0xE1C2: [808,10,645,55,589], + 0xE1C3: [983,14,814,47,767], + 0xE1C4: [983,14,914,61,852], + 0xE1C5: [771,10,570,42,527], + 0xE1C6: [771,10,645,55,589], + 0xE1C7: [832,14,814,47,767], + 0xE1C8: [832,14,914,61,852], + 0xE1C9: [640,10,570,42,527], + 0xE1CA: [640,10,645,55,589], + 0xE1CB: [676,191,814,47,767], + 0xE1CC: [676,191,914,61,852], + 0xE1CD: [460,191,570,42,527], + 0xE1CE: [460,191,645,55,589], + 0xE1CF: [668,6,998,43,984], + 0xE1D0: [668,6,1116,56,1091], + 0xE1D1: [460,10,814,43,769], + 0xE1D2: [460,10,914,56,855], + 0xE1D3: [17,245,386,99,297], + 0xE1D4: [17,245,443,118,336], + 0xE1D5: [851,14,814,47,767], + 0xE1D6: [851,14,914,61,852], + 0xE1D7: [675,10,570,42,527], + 0xE1D8: [675,10,645,55,589], + 0xE1D9: [896,14,814,47,767], + 0xE1DA: [896,14,914,61,852], + 0xE1DB: [684,10,570,42,527], + 0xE1DC: [684,10,645,55,589], + 0xE1DD: [771,14,814,47,767], + 0xE1DE: [771,14,914,61,852], + 0xE1DF: [559,10,570,42,530], + 0xE1E0: [559,10,645,55,592], + 0xE1E1: [851,14,814,47,767], + 0xE1E2: [851,14,914,61,852], + 0xE1E3: [675,10,570,42,530], + 0xE1E4: [675,10,645,55,592], + 0xE1E5: [771,191,814,47,767], + 0xE1E6: [771,191,914,61,852], + 0xE1E7: [559,191,570,42,530], + 0xE1E8: [559,191,645,55,592], + 0xE1E9: [851,14,814,47,767], + 0xE1EA: [851,14,914,61,852], + 0xE1EB: [675,10,570,42,530], + 0xE1EC: [675,10,645,55,592], + 0xE1ED: [896,14,814,47,767], + 0xE1EE: [896,14,914,61,852], + 0xE1EF: [684,10,570,42,530], + 0xE1F0: [684,10,645,55,592], + 0xE1F1: [835,14,814,47,767], + 0xE1F2: [835,14,914,61,852], + 0xE1F3: [643,10,570,42,530], + 0xE1F4: [643,10,645,55,592], + 0xE1F5: [851,14,814,47,767], + 0xE1F6: [851,14,914,61,852], + 0xE1F7: [676,10,570,42,572], + 0xE1F8: [676,10,645,55,638], + 0xE1F9: [809,14,814,47,767], + 0xE1FA: [809,14,914,61,852], + 0xE1FB: [617,10,570,42,527], + 0xE1FC: [617,10,645,55,589], + 0xE1FD: [676,0,570,132,443], + 0xE1FE: [676,0,645,154,497], + 0xE1FF: [824,162,814,47,767], + 0xE200: [824,162,914,61,852], + 0xE201: [608,162,570,42,527], + 0xE202: [608,162,645,55,589], + 0xE203: [734,80,814,47,767], + 0xE204: [734,80,914,61,852], + 0xE205: [551,112,570,42,527], + 0xE206: [551,112,645,55,589], + 0xE207: [835,14,814,47,767], + 0xE208: [835,14,914,61,852], + 0xE209: [643,10,570,42,527], + 0xE20A: [643,10,645,55,589], + 0xE20B: [662,0,632,28,606], + 0xE20C: [662,0,713,39,676], + 0xE20D: [460,217,570,16,527], + 0xE20E: [460,217,645,26,589], + 0xE20F: [662,154,518,-14,505], + 0xE210: [662,154,588,-7,565], + 0xE211: [676,13,936,64,871], + 0xE212: [676,13,1048,79,967], + 0xE213: [100,11,295,87,209], + 0xE214: [100,11,343,105,239], + 0xE215: [676,13,1472,25,1447], + 0xE216: [676,13,1637,37,1600], + 0xE217: [676,13,1120,25,1095], + 0xE218: [676,13,1250,37,1213], + 0xE219: [676,178,814,47,781], + 0xE21A: [676,178,914,61,868], + 0xE21B: [461,217,570,36,547], + 0xE21C: [461,217,645,49,610], + 0xE21D: [676,8,508,85,465], + 0xE21E: [676,8,577,102,521], + 0xE21F: [458,226,508,43,424], + 0xE220: [458,226,577,56,475], + 0xE221: [676,-431,469,95,374], + 0xE222: [676,-431,534,113,421], + 0xE223: [102,141,508,60,468], + 0xE224: [102,141,577,74,523], + 0xE225: [676,-433,508,57,465], + 0xE226: [676,-433,577,72,521], + 0xE227: [676,-433,508,43,451], + 0xE228: [676,-433,577,56,505], + 0xE229: [676,-433,386,137,289], + 0xE22A: [676,-433,443,159,327], + 0xE22B: [676,-433,386,97,250], + 0xE22C: [676,-433,443,116,284], + 0xE22D: [102,141,386,97,250], + 0xE22E: [102,141,443,116,284], + 0xE22F: [676,-431,218,63,156], + 0xE230: [676,-431,258,78,181], + 0xE231: [662,0,754,29,735], + 0xE232: [662,0,847,41,817], + 0xE233: [460,0,386,16,379], + 0xE234: [460,0,443,26,425], + 0xE235: [851,0,754,29,735], + 0xE236: [851,0,847,41,817], + 0xE237: [675,0,386,16,379], + 0xE238: [675,0,443,26,425], + 0xE239: [847,0,754,29,735], + 0xE23A: [847,0,847,41,817], + 0xE23B: [674,0,386,16,379], + 0xE23C: [674,0,443,26,425], + 0xE23D: [662,281,754,29,735], + 0xE23E: [662,281,847,41,817], + 0xE23F: [460,281,386,16,379], + 0xE240: [460,281,443,26,425], + 0xE241: [690,-491,386,84,303], + 0xE242: [690,-491,443,101,342], + 0xE243: [676,14,632,56,550], + 0xE244: [676,14,713,71,614], + 0xE245: [459,10,448,66,393], + 0xE246: [459,10,511,82,441], + 0xE247: [851,14,632,56,550], + 0xE248: [851,14,713,71,614], + 0xE249: [675,10,448,66,393], + 0xE24A: [675,10,511,82,441], + 0xE24B: [847,14,632,56,550], + 0xE24C: [847,14,713,71,614], + 0xE24D: [674,10,448,47,393], + 0xE24E: [674,10,511,61,441], + 0xE24F: [676,225,632,56,550], + 0xE250: [676,225,713,71,614], + 0xE251: [459,215,448,66,393], + 0xE252: [459,215,511,82,441], + 0xE253: [676,281,632,56,550], + 0xE254: [676,281,713,71,614], + 0xE255: [459,281,448,66,393], + 0xE256: [459,281,511,82,441], + 0xE257: [676,148,570,87,479], + 0xE258: [676,148,645,105,535], + 0xE259: [459,141,326,98,251], + 0xE25A: [459,141,376,117,285], + 0xE25B: [662,8,570,32,504], + 0xE25C: [662,8,645,44,563], + 0xE25D: [684,14,570,47,525], + 0xE25E: [684,14,645,61,586], + 0xE25F: [676,8,570,23,549], + 0xE260: [676,8,645,35,613], + 0xE261: [662,0,692,29,662], + 0xE262: [662,0,779,41,738], + 0xE263: [579,10,326,24,317], + 0xE264: [579,10,376,36,358], + 0xE265: [847,0,692,29,662], + 0xE266: [847,0,779,41,738], + 0xE267: [713,10,326,24,354], + 0xE268: [713,10,376,36,399], + 0xE269: [662,225,692,29,662], + 0xE26A: [662,225,779,41,738], + 0xE26B: [579,215,326,24,317], + 0xE26C: [579,215,376,36,358], + 0xE26D: [662,281,692,29,662], + 0xE26E: [662,281,779,41,738], + 0xE26F: [579,281,326,24,317], + 0xE270: [579,281,376,36,358], + 0xE271: [662,0,632,28,606], + 0xE272: [662,0,713,39,676], + 0xE273: [683,217,570,16,527], + 0xE274: [683,217,645,26,589], + 0xE275: [676,14,570,57,485], + 0xE276: [676,14,645,72,543], + 0xE277: [643,-537,386,11,374], + 0xE278: [643,-537,443,21,421], + 0xE279: [67,67,615,54,562], + 0xE27A: [67,67,695,68,627], + 0xE27B: [676,0,570,43,533], + 0xE27C: [676,0,645,56,595], + 0xE27D: [662,14,814,25,786], + 0xE27E: [662,14,914,37,873], + 0xE27F: [450,10,570,20,537], + 0xE280: [450,10,645,31,600], + 0xE281: [851,14,814,25,786], + 0xE282: [851,14,914,37,873], + 0xE283: [675,10,570,20,537], + 0xE284: [675,10,645,31,600], + 0xE285: [847,14,814,25,786], + 0xE286: [847,14,914,37,873], + 0xE287: [674,10,570,20,537], + 0xE288: [674,10,645,31,600], + 0xE289: [832,14,814,25,786], + 0xE28A: [832,14,914,37,873], + 0xE28B: [640,10,570,20,537], + 0xE28C: [640,10,645,31,600], + 0xE28D: [662,191,814,25,786], + 0xE28E: [662,191,914,37,873], + 0xE28F: [450,191,570,20,537], + 0xE290: [450,191,645,31,600], + 0xE291: [851,14,814,25,786], + 0xE292: [851,14,914,37,873], + 0xE293: [675,10,570,20,537], + 0xE294: [675,10,645,31,600], + 0xE295: [896,14,814,25,786], + 0xE296: [896,14,914,37,873], + 0xE297: [684,10,570,20,537], + 0xE298: [684,10,645,31,600], + 0xE299: [771,14,797,25,787], + 0xE29A: [771,14,894,37,874], + 0xE29B: [560,10,584,20,574], + 0xE29C: [560,10,661,31,641], + 0xE29D: [851,14,797,25,787], + 0xE29E: [851,14,894,37,874], + 0xE29F: [675,10,584,20,574], + 0xE2A0: [675,10,661,31,641], + 0xE2A1: [771,191,797,25,787], + 0xE2A2: [771,191,894,37,874], + 0xE2A3: [560,191,584,20,574], + 0xE2A4: [560,191,661,31,641], + 0xE2A5: [851,14,797,25,787], + 0xE2A6: [851,14,894,37,874], + 0xE2A7: [675,10,584,20,574], + 0xE2A8: [675,10,661,31,641], + 0xE2A9: [896,14,797,25,787], + 0xE2AA: [896,14,894,37,874], + 0xE2AB: [684,10,584,20,574], + 0xE2AC: [684,10,661,31,641], + 0xE2AD: [835,14,797,25,787], + 0xE2AE: [835,14,894,37,874], + 0xE2AF: [643,10,584,20,574], + 0xE2B0: [643,10,661,31,641], + 0xE2B1: [851,14,814,25,786], + 0xE2B2: [851,14,914,37,873], + 0xE2B3: [676,10,570,20,566], + 0xE2B4: [676,10,645,31,631], + 0xE2B5: [809,14,814,25,786], + 0xE2B6: [809,14,914,37,873], + 0xE2B7: [617,10,570,20,537], + 0xE2B8: [617,10,645,31,600], + 0xE2B9: [662,245,814,25,786], + 0xE2BA: [662,245,914,37,873], + 0xE2BB: [450,245,570,20,537], + 0xE2BC: [450,245,645,31,600], + 0xE2BD: [896,14,814,25,786], + 0xE2BE: [896,14,914,37,873], + 0xE2BF: [690,10,570,20,537], + 0xE2C0: [690,10,645,31,600], + 0xE2C1: [835,14,814,25,786], + 0xE2C2: [835,14,914,37,873], + 0xE2C3: [643,10,570,20,537], + 0xE2C4: [643,10,645,31,600], + 0xE2C5: [662,11,814,28,777], + 0xE2C6: [662,11,914,39,863], + 0xE2C7: [450,14,570,31,535], + 0xE2C8: [450,14,645,43,597], + 0xE2C9: [662,11,1058,16,1035], + 0xE2CA: [662,11,1182,26,1148], + 0xE2CB: [450,14,814,33,773], + 0xE2CC: [450,14,914,45,860], + 0xE2CD: [662,0,814,21,784], + 0xE2CE: [662,0,914,32,872], + 0xE2CF: [450,0,570,29,537], + 0xE2D0: [450,0,645,41,600], + 0xE2D1: [662,0,814,34,783], + 0xE2D2: [662,0,914,47,871], + 0xE2D3: [450,218,570,25,533], + 0xE2D4: [450,218,645,37,595], + 0xE2D5: [851,0,814,34,783], + 0xE2D6: [851,0,914,47,871], + 0xE2D7: [675,218,570,25,533], + 0xE2D8: [675,218,645,37,595], + 0xE2D9: [832,0,814,34,783], + 0xE2DA: [832,0,914,47,871], + 0xE2DB: [640,218,570,25,533], + 0xE2DC: [640,218,645,37,595], + 0xE2DD: [662,191,814,34,783], + 0xE2DE: [662,191,914,47,871], + 0xE2DF: [450,218,570,25,533], + 0xE2E0: [450,218,645,37,595], + 0xE2E1: [662,0,570,-48,573], + 0xE2E2: [662,0,645,-44,640], + 0xE2E3: [851,0,814,34,783], + 0xE2E4: [851,0,914,47,871], + 0xE2E5: [675,218,570,25,533], + 0xE2E6: [675,218,645,37,595], + 0xE2E7: [896,0,814,34,783], + 0xE2E8: [896,0,914,47,871], + 0xE2E9: [684,218,570,25,533], + 0xE2EA: [684,218,645,37,595], + 0xE2EB: [835,0,814,34,783], + 0xE2EC: [835,0,914,47,871], + 0xE2ED: [643,218,570,25,533], + 0xE2EE: [643,218,645,37,595], + 0xE2EF: [662,0,692,20,667], + 0xE2F0: [662,0,779,31,742], + 0xE2F1: [450,0,508,40,470], + 0xE2F2: [450,0,577,53,526], + 0xE2F3: [851,0,692,20,667], + 0xE2F4: [851,0,779,31,742], + 0xE2F5: [675,0,508,40,470], + 0xE2F6: [675,0,577,53,526], + 0xE2F7: [847,0,692,20,667], + 0xE2F8: [847,0,779,31,742], + 0xE2F9: [674,0,508,40,470], + 0xE2FA: [674,0,577,53,526], + 0xE2FB: [833,0,692,20,667], + 0xE2FC: [833,0,779,31,742], + 0xE2FD: [641,0,508,40,470], + 0xE2FE: [641,0,577,53,526], + 0xE2FF: [676,14,570,36,534], + 0xE300: [676,14,645,49,596], + 0xE301: [668,0,692,-46,630], + 0xE302: [668,0,779,-42,702], + 0xE303: [441,11,570,29,534], + 0xE304: [441,11,645,41,596], + 0xE305: [653,0,692,1,657], + 0xE306: [653,0,779,10,731], + 0xE307: [683,11,570,35,530], + 0xE308: [683,11,645,48,592], + 0xE309: [666,18,754,83,768], + 0xE30A: [666,18,847,100,854], + 0xE30B: [441,11,508,43,478], + 0xE30C: [441,11,577,56,534], + 0xE30D: [653,0,814,1,780], + 0xE30E: [653,0,914,10,867], + 0xE30F: [683,13,570,27,590], + 0xE310: [683,13,645,38,658], + 0xE311: [653,0,692,9,707], + 0xE312: [653,0,779,19,787], + 0xE313: [441,11,508,44,463], + 0xE314: [441,11,577,58,519], + 0xE315: [653,0,692,19,720], + 0xE316: [653,0,779,30,800], + 0xE317: [678,207,326,-152,476], + 0xE318: [678,207,376,-158,533], + 0xE319: [666,18,814,67,804], + 0xE31A: [666,18,914,83,894], + 0xE31B: [441,206,570,19,526], + 0xE31C: [441,206,645,30,587], + 0xE31D: [653,0,814,1,854], + 0xE31E: [653,0,914,10,948], + 0xE31F: [683,9,570,31,536], + 0xE320: [683,9,645,43,598], + 0xE321: [653,0,386,1,432], + 0xE322: [653,0,443,10,485], + 0xE323: [643,11,326,64,314], + 0xE324: [643,11,376,79,354], + 0xE325: [653,18,508,3,550], + 0xE326: [653,18,577,13,614], + 0xE327: [643,207,326,-126,341], + 0xE328: [643,207,376,-130,384], + 0xE329: [653,0,754,18,804], + 0xE32A: [653,0,847,28,894], + 0xE32B: [683,11,508,25,517], + 0xE32C: [683,11,577,37,578], + 0xE32D: [653,0,632,1,625], + 0xE32E: [653,0,713,10,696], + 0xE32F: [683,11,326,55,317], + 0xE330: [683,11,376,70,358], + 0xE331: [653,0,936,-10,970], + 0xE332: [653,0,1048,-2,1076], + 0xE333: [441,9,814,23,784], + 0xE334: [441,9,914,35,872], + 0xE335: [653,15,754,-12,810], + 0xE336: [653,15,847,-4,900], + 0xE337: [441,9,570,25,531], + 0xE338: [441,9,645,37,594], + 0xE339: [666,18,814,76,779], + 0xE33A: [666,18,914,93,866], + 0xE33B: [441,11,570,40,525], + 0xE33C: [441,11,645,53,586], + 0xE33D: [653,0,692,10,676], + 0xE33E: [653,0,779,20,752], + 0xE33F: [441,205,570,-73,526], + 0xE340: [441,205,645,-71,587], + 0xE341: [666,182,814,75,779], + 0xE342: [666,182,914,91,866], + 0xE343: [441,205,570,38,541], + 0xE344: [441,205,645,50,604], + 0xE345: [653,0,692,-4,657], + 0xE346: [653,0,779,4,731], + 0xE347: [441,0,448,60,463], + 0xE348: [441,0,511,74,519], + 0xE349: [667,18,570,29,569], + 0xE34A: [667,18,645,41,635], + 0xE34B: [442,13,448,28,413], + 0xE34C: [442,13,511,39,463], + 0xE34D: [653,0,632,75,706], + 0xE34E: [653,0,713,91,786], + 0xE34F: [546,11,326,51,336], + 0xE350: [546,11,376,65,378], + 0xE351: [653,18,814,122,852], + 0xE352: [653,18,914,143,946], + 0xE353: [441,11,570,56,533], + 0xE354: [441,11,645,71,595], + 0xE355: [653,18,692,94,767], + 0xE356: [653,18,779,112,852], + 0xE357: [441,18,508,33,479], + 0xE358: [441,18,577,45,535], + 0xE359: [653,18,936,88,1007], + 0xE35A: [653,18,1048,106,1116], + 0xE35B: [441,18,754,28,723], + 0xE35C: [441,18,847,39,804], + 0xE35D: [653,0,692,-22,731], + 0xE35E: [653,0,779,-15,813], + 0xE35F: [441,11,508,-20,502], + 0xE360: [441,11,577,-13,561], + 0xE361: [653,0,632,96,706], + 0xE362: [653,0,713,114,786], + 0xE363: [441,206,508,-16,479], + 0xE364: [441,206,577,-9,535], + 0xE365: [653,0,632,3,677], + 0xE366: [653,0,713,13,753], + 0xE367: [428,81,448,8,428], + 0xE368: [428,81,511,18,480], + 0xE369: [461,0,278,16,255], + 0xE36A: [461,203,333,-57,260], + 0xE36B: [462,9,278,2,238], + 0xE36C: [462,207,278,-189,239], + 0xE36D: [674,0,954,98,856], + 0xE36E: [674,0,1067,117,950], + 0xE36F: [668,0,873,98,775], + 0xE370: [668,0,978,117,861], + 0xE371: [690,0,944,98,846], + 0xE372: [690,0,1056,117,940], + 0xE373: [683,0,922,98,824], + 0xE374: [683,0,1032,117,915], + 0xE375: [662,0,830,98,732], + 0xE376: [662,0,931,117,814], + 0xE377: [653,0,852,98,754], + 0xE378: [653,0,955,117,838], + 0xE379: [676,0,859,98,761], + 0xE37A: [676,0,963,117,846], + 0xE37B: [669,0,909,98,811], + 0xE37C: [669,0,1018,117,901], + 0xE37D: [662,0,782,98,684], + 0xE37E: [662,0,879,117,762], + 0xE37F: [662,0,975,98,877], + 0xE380: [662,0,1090,117,973], + 0xE381: [676,0,831,98,733], + 0xE382: [676,0,932,117,815], + 0xE383: [676,0,1030,98,932], + 0xE384: [676,0,1151,117,1034], + 0xE385: [662,0,838,98,740], + 0xE386: [662,0,940,117,823], + 0xE387: [653,0,895,98,797], + 0xE388: [653,0,1002,117,885], + 0xE389: [676,0,884,98,786], + 0xE38A: [676,0,990,117,873], + 0xE38B: [669,0,944,98,846], + 0xE38C: [669,0,1056,117,940], + 0xE38D: [662,0,842,98,744], + 0xE38E: [662,0,944,117,827], + 0xE38F: [653,0,869,98,771], + 0xE390: [653,0,974,117,857], + 0xE391: [676,0,863,98,765], + 0xE392: [676,0,967,117,850], + 0xE393: [669,0,857,98,759], + 0xE394: [669,0,961,117,844], + 0xE395: [662,0,947,98,849], + 0xE396: [662,0,1060,117,943], + 0xE397: [653,0,1049,98,951], + 0xE398: [653,0,1171,117,1055], + 0xE399: [676,0,1008,98,910], + 0xE39A: [676,0,1127,117,1010], + 0xE39B: [669,0,1101,98,1003], + 0xE39C: [669,0,1229,117,1113], + 0xE39D: [675,14,915,98,817], + 0xE39E: [675,14,1025,117,908], + 0xE39F: [666,18,899,98,801], + 0xE3A0: [666,18,1007,117,890], + 0xE3A1: [691,19,975,98,877], + 0xE3A2: [691,19,1090,117,973], + 0xE3A3: [685,18,948,98,850], + 0xE3A4: [685,18,1061,117,944], + 0xE3A5: [662,0,523,98,425], + 0xE3A6: [662,0,593,117,476], + 0xE3A7: [653,0,627,98,529], + 0xE3A8: [653,0,708,117,591], + 0xE3A9: [676,0,581,98,483], + 0xE3AA: [676,0,657,117,540], + 0xE3AB: [669,0,678,98,580], + 0xE3AC: [669,0,764,117,647], + 0xE3AD: [662,0,954,98,856], + 0xE3AE: [662,0,1067,117,950], + 0xE3AF: [653,0,983,98,885], + 0xE3B0: [653,0,1099,117,982], + 0xE3B1: [676,0,1009,98,911], + 0xE3B2: [676,0,1128,117,1011], + 0xE3B3: [669,0,991,98,893], + 0xE3B4: [669,0,1108,117,992], + 0xE3B5: [674,0,954,98,856], + 0xE3B6: [674,0,1067,117,950], + 0xE3B7: [668,0,873,98,775], + 0xE3B8: [668,0,978,117,861], + 0xE3B9: [690,0,944,98,846], + 0xE3BA: [690,0,1056,117,940], + 0xE3BB: [683,0,922,98,824], + 0xE3BC: [683,0,1032,117,915], + 0xE3BD: [662,0,1132,98,1034], + 0xE3BE: [662,0,1263,117,1147], + 0xE3BF: [653,0,1176,98,1078], + 0xE3C0: [653,0,1312,117,1195], + 0xE3C1: [676,0,1194,98,1096], + 0xE3C2: [676,0,1331,117,1214], + 0xE3C3: [669,12,1237,98,1139], + 0xE3C4: [669,12,1378,117,1261], + 0xE3C5: [662,11,959,98,861], + 0xE3C6: [662,11,1073,117,957], + 0xE3C7: [653,15,1018,98,920], + 0xE3C8: [653,15,1137,117,1021], + 0xE3C9: [676,18,950,98,852], + 0xE3CA: [676,18,1062,117,946], + 0xE3CB: [669,15,1049,98,951], + 0xE3CC: [669,15,1171,117,1055], + 0xE3CD: [662,0,819,98,721], + 0xE3CE: [662,0,918,117,802], + 0xE3CF: [653,0,924,98,826], + 0xE3D0: [653,0,1035,117,918], + 0xE3D1: [662,0,824,98,726], + 0xE3D2: [662,0,925,117,808], + 0xE3D3: [662,0,981,98,883], + 0xE3D4: [662,0,1098,117,981], + 0xE3D5: [675,14,915,98,817], + 0xE3D6: [675,14,1025,117,908], + 0xE3D7: [666,18,899,98,801], + 0xE3D8: [666,18,1007,117,890], + 0xE3D9: [691,19,975,98,877], + 0xE3DA: [691,19,1090,117,973], + 0xE3DB: [685,18,926,98,828], + 0xE3DC: [685,18,1037,117,920], + 0xE3DD: [662,0,947,98,849], + 0xE3DE: [662,0,1060,117,943], + 0xE3DF: [653,0,1049,98,951], + 0xE3E0: [653,0,1171,117,1055], + 0xE3E1: [676,0,1008,98,910], + 0xE3E2: [676,0,1127,117,1010], + 0xE3E3: [669,0,1101,98,1003], + 0xE3E4: [669,0,1229,117,1113], + 0xE3E5: [662,0,775,98,677], + 0xE3E6: [662,0,870,117,753], + 0xE3E7: [653,0,862,98,764], + 0xE3E8: [653,0,966,117,849], + 0xE3E9: [676,0,838,98,740], + 0xE3EA: [676,0,940,117,823], + 0xE3EB: [669,0,900,98,802], + 0xE3EC: [669,0,1008,117,891], + 0xE3ED: [662,0,848,98,750], + 0xE3EE: [662,0,951,117,834], + 0xE3EF: [653,0,953,98,855], + 0xE3F0: [653,0,1066,117,949], + 0xE3F1: [662,0,882,98,784], + 0xE3F2: [662,0,989,117,872], + 0xE3F3: [662,0,1020,98,922], + 0xE3F4: [662,0,1140,117,1023], + 0xE3F5: [662,0,830,98,732], + 0xE3F6: [662,0,931,117,814], + 0xE3F7: [653,0,827,98,729], + 0xE3F8: [653,0,928,117,811], + 0xE3F9: [676,0,862,98,764], + 0xE3FA: [676,0,966,117,849], + 0xE3FB: [669,0,856,98,758], + 0xE3FC: [669,0,960,117,843], + 0xE3FD: [662,0,926,98,828], + 0xE3FE: [662,0,1037,117,920], + 0xE3FF: [653,0,898,98,799], + 0xE400: [653,0,1006,117,888], + 0xE401: [676,0,953,98,855], + 0xE402: [676,0,1066,117,949], + 0xE403: [676,0,884,98,785], + 0xE404: [676,0,991,117,874], + 0xE405: [662,0,814,98,716], + 0xE406: [662,0,914,117,797], + 0xE407: [653,0,799,97,700], + 0xE408: [653,0,896,116,779], + 0xE409: [676,0,915,98,817], + 0xE40A: [676,0,1025,117,908], + 0xE40B: [676,0,885,97,786], + 0xE40C: [676,0,991,117,874], + 0xE40D: [662,0,959,98,861], + 0xE40E: [662,0,1073,117,957], + 0xE40F: [653,0,948,98,850], + 0xE410: [653,0,1061,117,944], + 0xE411: [676,0,947,98,849], + 0xE412: [676,0,1060,117,943], + 0xE413: [669,0,986,98,888], + 0xE414: [669,0,1102,117,986], + 0xE415: [662,0,899,98,801], + 0xE416: [662,0,1007,117,890], + 0xE417: [653,0,867,98,769], + 0xE418: [653,0,972,117,855], + 0xE419: [676,0,988,98,890], + 0xE41A: [676,0,1105,117,988], + 0xE41B: [676,0,966,98,868], + 0xE41C: [676,0,1081,117,964], + 0xE41D: [676,0,958,98,860], + 0xE41E: [676,0,1072,117,955], + 0xE41F: [649,0,960,98,862], + 0xE420: [649,0,1074,117,957], + 0xE421: [691,0,955,98,857], + 0xE422: [691,0,1069,117,952], + 0xE423: [691,0,1002,98,903], + 0xE424: [691,0,1120,117,1003], + 0xE425: [460,17,718,98,619], + 0xE426: [460,17,808,117,690], + 0xE427: [441,16,730,97,632], + 0xE428: [441,16,821,116,704], + 0xE429: [473,14,767,98,669], + 0xE42A: [473,14,862,117,745], + 0xE42B: [473,14,821,97,723], + 0xE42C: [473,14,921,116,804], + 0xE42D: [673,217,639,98,541], + 0xE42E: [673,217,721,117,604], + 0xE42F: [645,208,783,98,685], + 0xE430: [645,208,880,117,763], + 0xE431: [691,217,735,98,637], + 0xE432: [691,217,827,117,710], + 0xE433: [691,217,890,98,792], + 0xE434: [691,217,997,117,880], + 0xE435: [461,234,760,98,662], + 0xE436: [461,234,854,117,738], + 0xE437: [442,224,772,98,674], + 0xE438: [442,224,868,117,751], + 0xE439: [473,232,812,98,714], + 0xE43A: [473,232,911,117,794], + 0xE43B: [473,232,846,98,748], + 0xE43C: [473,232,949,117,832], + 0xE43D: [671,16,682,98,584], + 0xE43E: [671,16,768,117,652], + 0xE43F: [645,15,713,97,615], + 0xE440: [645,15,802,116,686], + 0xE441: [691,14,753,98,655], + 0xE442: [691,14,846,117,729], + 0xE443: [691,14,787,98,688], + 0xE444: [691,14,884,116,766], + 0xE445: [460,16,613,98,515], + 0xE446: [460,16,692,117,575], + 0xE447: [441,15,645,98,546], + 0xE448: [441,15,727,116,610], + 0xE449: [473,14,650,98,552], + 0xE44A: [473,14,733,117,617], + 0xE44B: [473,14,707,97,608], + 0xE44C: [473,14,795,116,678], + 0xE44D: [460,16,541,98,443], + 0xE44E: [460,16,614,117,497], + 0xE44F: [441,15,597,97,499], + 0xE450: [441,15,674,116,558], + 0xE451: [482,14,594,98,496], + 0xE452: [482,14,672,117,555], + 0xE453: [482,14,658,97,560], + 0xE454: [482,14,742,116,625], + 0xE455: [667,210,621,98,523], + 0xE456: [667,210,701,117,584], + 0xE457: [639,201,670,97,571], + 0xE458: [639,201,755,117,637], + 0xE459: [667,215,621,98,523], + 0xE45A: [667,215,701,117,584], + 0xE45B: [667,215,684,98,585], + 0xE45C: [667,215,770,116,653], + 0xE45D: [460,217,679,98,581], + 0xE45E: [460,217,765,117,648], + 0xE45F: [441,208,659,98,560], + 0xE460: [441,208,743,117,626], + 0xE461: [473,218,760,98,662], + 0xE462: [473,218,854,117,738], + 0xE463: [473,218,737,98,638], + 0xE464: [473,218,829,117,711], + 0xE465: [673,16,627,97,529], + 0xE466: [673,16,708,116,591], + 0xE467: [645,15,654,98,556], + 0xE468: [645,15,738,116,620], + 0xE469: [691,14,724,98,626], + 0xE46A: [691,14,814,117,698], + 0xE46B: [691,14,745,97,647], + 0xE46C: [691,14,838,116,721], + 0xE46D: [673,16,820,98,722], + 0xE46E: [673,16,920,117,803], + 0xE46F: [645,15,786,98,687], + 0xE470: [645,15,882,117,765], + 0xE471: [693,14,931,98,833], + 0xE472: [693,14,1042,117,925], + 0xE473: [693,14,898,98,799], + 0xE474: [693,14,1005,117,888], + 0xE475: [460,17,529,98,431], + 0xE476: [460,17,600,117,483], + 0xE477: [441,16,448,98,350], + 0xE478: [441,16,511,117,394], + 0xE479: [473,14,592,98,494], + 0xE47A: [473,14,669,117,552], + 0xE47B: [473,14,507,98,409], + 0xE47C: [473,14,576,117,459], + 0xE47D: [460,15,780,98,682], + 0xE47E: [460,15,876,117,759], + 0xE47F: [441,14,765,98,666], + 0xE480: [441,14,859,117,742], + 0xE481: [473,14,866,98,768], + 0xE482: [473,14,970,117,854], + 0xE483: [473,14,842,98,743], + 0xE484: [473,14,944,117,826], + 0xE485: [460,16,764,98,666], + 0xE486: [460,16,858,117,741], + 0xE487: [441,15,740,97,641], + 0xE488: [441,15,831,117,714], + 0xE489: [473,14,734,98,636], + 0xE48A: [473,14,825,117,708], + 0xE48B: [473,14,805,97,707], + 0xE48C: [473,14,904,117,786], + 0xE48D: [673,18,753,98,655], + 0xE48E: [673,18,846,117,729], + 0xE48F: [645,17,759,98,661], + 0xE490: [645,17,853,117,736], + 0xE491: [691,14,812,98,714], + 0xE492: [691,14,911,117,794], + 0xE493: [691,14,841,98,743], + 0xE494: [691,14,943,117,826], + 0xE495: [444,218,702,98,604], + 0xE496: [444,218,790,117,673], + 0xE497: [426,209,774,98,676], + 0xE498: [426,209,869,117,752], + 0xE499: [461,218,779,98,681], + 0xE49A: [461,218,875,117,758], + 0xE49B: [461,218,853,98,755], + 0xE49C: [461,218,956,117,839], + 0xE49D: [460,16,684,98,586], + 0xE49E: [460,16,771,117,654], + 0xE49F: [441,15,685,98,586], + 0xE4A0: [441,15,771,117,654], + 0xE4A1: [473,11,752,98,654], + 0xE4A2: [473,11,845,117,728], + 0xE4A3: [473,11,760,98,662], + 0xE4A4: [473,11,854,117,737], + 0xE4A5: [667,210,620,98,522], + 0xE4A6: [667,210,699,117,583], + 0xE4A7: [639,201,674,98,576], + 0xE4A8: [639,201,759,116,642], + 0xE4A9: [667,215,618,98,520], + 0xE4AA: [667,215,698,117,581], + 0xE4AB: [667,215,697,97,598], + 0xE4AC: [667,215,785,116,668], + 0xE4AD: [460,10,680,98,582], + 0xE4AE: [460,10,766,117,649], + 0xE4AF: [441,11,681,98,583], + 0xE4B0: [441,11,767,117,650], + 0xE4B1: [473,14,692,98,594], + 0xE4B2: [473,14,779,117,663], + 0xE4B3: [473,13,689,98,591], + 0xE4B4: [473,13,776,117,659], + 0xE4B5: [471,16,799,98,701], + 0xE4B6: [471,16,897,117,780], + 0xE4B7: [452,15,862,97,764], + 0xE4B8: [452,15,967,116,850], + 0xE4B9: [481,14,807,98,709], + 0xE4BA: [481,14,905,117,788], + 0xE4BB: [481,14,923,97,825], + 0xE4BC: [481,14,1033,116,917], + 0xE4BD: [471,21,1008,98,910], + 0xE4BE: [471,21,1127,117,1010], + 0xE4BF: [452,20,1017,98,919], + 0xE4C0: [452,20,1136,117,1019], + 0xE4C1: [481,14,1071,98,973], + 0xE4C2: [481,14,1196,117,1079], + 0xE4C3: [481,14,1104,98,1006], + 0xE4C4: [481,14,1232,117,1115], + 0xE4C5: [460,218,618,98,520], + 0xE4C6: [460,218,698,117,581], + 0xE4C7: [441,209,739,98,641], + 0xE4C8: [441,209,831,117,714], + 0xE4C9: [473,218,698,98,600], + 0xE4CA: [473,218,785,117,669], + 0xE4CB: [473,218,824,98,725], + 0xE4CC: [473,218,924,117,807], + 0xE4CD: [460,217,627,98,529], + 0xE4CE: [460,217,708,117,591], + 0xE4CF: [441,208,654,97,555], + 0xE4D0: [441,208,737,116,620], + 0xE4D1: [473,217,698,98,600], + 0xE4D2: [473,217,785,117,669], + 0xE4D3: [473,217,760,98,662], + 0xE4D4: [473,217,855,116,738], + 0xE4D5: [471,16,677,98,579], + 0xE4D6: [471,16,762,117,646], + 0xE4D7: [452,15,743,98,645], + 0xE4D8: [452,15,836,116,719], + 0xE4D9: [471,14,761,98,663], + 0xE4DA: [471,14,856,117,739], + 0xE4DB: [471,14,836,98,738], + 0xE4DC: [471,14,938,116,821], + 0xE4DD: [460,210,620,98,522], + 0xE4DE: [460,210,699,117,583], + 0xE4DF: [441,201,660,98,561], + 0xE4E0: [441,201,744,116,626], + 0xE4E1: [473,215,620,98,522], + 0xE4E2: [473,215,699,117,583], + 0xE4E3: [473,215,691,97,593], + 0xE4E4: [473,215,778,116,661], + 0xE4E5: [471,16,711,98,613], + 0xE4E6: [471,16,800,117,683], + 0xE4E7: [452,15,732,98,634], + 0xE4E8: [452,15,823,117,706], + 0xE4E9: [481,16,741,98,643], + 0xE4EA: [481,16,833,117,716], + 0xE4EB: [481,16,796,98,698], + 0xE4EC: [481,16,893,117,776], + 0xE4ED: [460,16,666,98,568], + 0xE4EE: [460,16,750,117,633], + 0xE4EF: [441,15,667,98,569], + 0xE4F0: [441,15,752,117,635], + 0xE4F1: [473,14,724,98,626], + 0xE4F2: [473,14,814,117,698], + 0xE4F3: [473,14,733,98,634], + 0xE4F4: [473,14,824,117,707], + 0xE4F5: [460,218,770,98,672], + 0xE4F6: [460,218,865,117,748], + 0xE4F7: [441,209,766,98,667], + 0xE4F8: [441,209,860,116,743], + 0xE4F9: [476,218,913,98,815], + 0xE4FA: [476,218,1023,117,906], + 0xE4FB: [476,218,905,97,807], + 0xE4FC: [476,218,1014,116,897], + 0xE4FD: [657,217,792,98,694], + 0xE4FE: [657,217,889,117,773], + 0xE4FF: [630,208,788,97,689], + 0xE500: [630,208,885,116,767], + 0xE501: [677,218,935,98,837], + 0xE502: [677,218,1047,117,930], + 0xE503: [677,218,925,97,826], + 0xE504: [677,218,1035,116,918], + 0xE505: [460,236,753,98,655], + 0xE506: [460,236,846,117,729], + 0xE507: [441,226,907,98,809], + 0xE508: [441,226,1015,117,898], + 0xE509: [473,232,812,98,714], + 0xE50A: [473,232,911,117,794], + 0xE50B: [473,232,985,98,887], + 0xE50C: [473,232,1101,117,984], + 0xE50D: [460,218,878,98,780], + 0xE50E: [460,218,984,117,867], + 0xE50F: [441,209,865,97,767], + 0xE510: [441,209,970,116,853], + 0xE511: [473,218,988,98,890], + 0xE512: [473,218,1105,117,988], + 0xE513: [473,218,981,97,883], + 0xE514: [473,218,1097,116,980], + 0xE515: [463,16,864,98,766], + 0xE516: [463,16,968,117,851], + 0xE517: [444,15,859,97,760], + 0xE518: [444,15,963,116,846], + 0xE519: [475,14,888,98,790], + 0xE51A: [475,14,995,117,878], + 0xE51B: [475,14,869,98,771], + 0xE51C: [475,14,974,117,857], + 0xE51D: [674,0,856,98,758], + 0xE51E: [674,0,960,117,843], + 0xE51F: [668,0,775,98,677], + 0xE520: [668,0,870,117,753], + 0xE521: [690,0,857,98,759], + 0xE522: [690,0,961,117,844], + 0xE523: [683,0,829,98,731], + 0xE524: [683,0,929,117,813], + 0xE525: [673,17,627,98,529], + 0xE526: [673,17,708,117,591], + 0xE527: [645,16,664,98,566], + 0xE528: [645,16,749,116,631], + 0xE529: [691,14,698,98,600], + 0xE52A: [691,14,785,117,669], + 0xE52B: [691,14,757,97,658], + 0xE52C: [691,14,851,116,733], + 0xE52D: [664,10,856,98,758], + 0xE52E: [664,10,960,117,843], + 0xE52F: [658,10,775,98,677], + 0xE530: [658,10,870,117,753], + 0xE531: [680,10,857,98,759], + 0xE532: [680,10,961,117,844], + 0xE533: [673,10,829,98,731], + 0xE534: [673,10,929,117,813], + 0xE535: [675,14,915,98,817], + 0xE536: [675,14,1025,117,908], + 0xE537: [691,19,975,98,877], + 0xE538: [691,19,1090,117,973], + 0xE539: [666,18,899,98,801], + 0xE53A: [666,18,1007,117,890], + 0xE53B: [685,18,948,98,850], + 0xE53C: [685,18,1061,117,944], + 0xE53D: [723,19,684,54,630], + 0xE53E: [723,19,771,68,702], + 0xE53F: [729,29,594,54,540], + 0xE540: [729,29,672,68,603], + 0xE541: [740,18,536,54,481], + 0xE542: [740,18,607,68,538], + 0xE543: [717,16,594,54,540], + 0xE544: [717,16,672,68,603], + 0xE545: [482,0,214,69,146], + 0xE546: [482,201,207,-18,139], + 0xE547: [482,0,203,19,198], + 0xE548: [482,201,192,-115,188], + 0xE549: [497,0,264,67,193], + 0xE54A: [497,201,257,4,189], + 0xE54B: [497,0,264,67,299], + 0xE54C: [497,201,257,-38,295], + 0xE54D: [494,0,455,79,375], + 0xE54E: [497,218,493,80,402], + 0xE54F: [406,14,466,80,386], + 0xE550: [410,308,770,80,690], + 0xE551: [411,14,501,80,421], + 0xE552: [411,291,811,80,731], + 0xE553: [445,25,337,80,257], + 0xE554: [445,177,319,80,228], + 0xE555: [455,23,378,80,298], + 0xE556: [455,169,360,80,280], + 0xE557: [417,0,600,92,508], + 0xE558: [417,186,600,147,458], + 0xE559: [650,150,466,80,386], + 0xE55A: [606,106,659,80,579], + 0xE55B: [650,150,466,80,386], + 0xE55C: [604,104,661,80,581], + 0xE55D: [650,150,466,80,386], + 0xE55E: [602,102,660,80,580], + 0xE55F: [650,150,466,80,386], + 0xE560: [600,100,659,80,579], + 0xE561: [650,150,466,80,386], + 0xE562: [597,97,660,80,580], + 0xE563: [650,150,466,80,386], + 0xE564: [594,94,660,80,580], + 0xE565: [638,-149,444,73,371], + 0xE566: [638,-149,444,73,371], + 0xE567: [638,-149,744,73,671], + 0xE568: [638,-149,744,73,671], + 0xE569: [638,-149,1044,73,971], + 0xE56A: [638,-149,1044,73,971], + 0xE56B: [638,-149,1344,73,1271], + 0xE56C: [844,344,686,80,606], + 0xE56D: [844,344,1077,80,997], + 0xE56E: [844,344,1468,80,1388], + 0xE56F: [844,344,1859,80,1779], + 0xE570: [844,344,734,80,654], + 0xE571: [844,344,1125,80,1045], + 0xE572: [844,344,1516,80,1436], + 0xE573: [844,344,750,80,710], + 0xE574: [844,344,750,80,710], + 0xE575: [844,344,739,80,699], + 0xE576: [844,344,713,80,673], + 0xE577: [959,459,708,80,628], + 0xE578: [959,459,1116,80,1036], + 0xE579: [959,459,1524,80,1444], + 0xE57A: [959,459,1932,80,1852], + 0xE57B: [959,459,758,80,678], + 0xE57C: [959,459,1166,80,1086], + 0xE57D: [959,459,1574,80,1494], + 0xE57E: [959,459,774,80,734], + 0xE57F: [959,459,774,80,734], + 0xE580: [959,459,759,80,719], + 0xE581: [959,459,736,80,696], + 0xE582: [1097,597,730,80,650], + 0xE583: [1097,597,1155,80,1075], + 0xE584: [1097,597,1580,80,1500], + 0xE585: [1097,597,2005,80,1925], + 0xE586: [1097,597,782,80,702], + 0xE587: [1097,597,1207,80,1127], + 0xE588: [1097,597,1632,80,1552], + 0xE589: [1097,597,797,80,757], + 0xE58A: [1097,597,797,80,757], + 0xE58B: [1097,597,779,80,739], + 0xE58C: [1097,597,759,80,719], + 0xE58D: [1462,962,776,80,696], + 0xE58E: [1462,962,1235,80,1155], + 0xE58F: [1462,962,1694,80,1614], + 0xE590: [1462,962,2153,80,2073], + 0xE591: [1462,962,832,80,752], + 0xE592: [1462,962,1291,80,1211], + 0xE593: [1462,962,1750,80,1670], + 0xE594: [1462,962,846,80,806], + 0xE595: [1462,962,846,80,806], + 0xE596: [1462,962,821,80,781], + 0xE597: [1462,962,807,80,767], + 0xE598: [1701,1201,800,80,720], + 0xE599: [1701,1201,1275,80,1195], + 0xE59A: [1701,1201,1750,80,1670], + 0xE59B: [1701,1201,2225,80,2145], + 0xE59C: [1701,1201,858,80,778], + 0xE59D: [1701,1201,1333,80,1253], + 0xE59E: [1701,1201,1808,80,1728], + 0xE59F: [1701,1201,871,80,831], + 0xE5A0: [1701,1201,871,80,831], + 0xE5A1: [1701,1201,842,80,802], + 0xE5A2: [1701,1201,832,80,792], + 0xE5A3: [1161,0,2225,80,1891], + 0xE5A4: [580,0,2225,334,1891], + 0xE5A5: [1161,0,2225,334,2145] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_NonUnicode"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Normal/Regular/Main.js new file mode 100644 index 0000000..9099f5e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Normal/Regular/Main.js @@ -0,0 +1,373 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'GyreTermesMathJax_Normal', + testString: '\u00A0\u210E\uD835\uDC00\uD835\uDC01\uD835\uDC02\uD835\uDC03\uD835\uDC04\uD835\uDC05\uD835\uDC06\uD835\uDC07\uD835\uDC08\uD835\uDC09\uD835\uDC0A\uD835\uDC0B\uD835\uDC0C', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210E: [683,9,500,19,478], + 0x1D400: [690,0,722,9,689], + 0x1D401: [676,0,667,16,619], + 0x1D402: [691,19,722,49,687], + 0x1D403: [676,0,722,14,690], + 0x1D404: [676,0,667,16,641], + 0x1D405: [676,0,611,16,583], + 0x1D406: [691,19,778,37,755], + 0x1D407: [676,0,778,21,759], + 0x1D408: [676,0,389,20,370], + 0x1D409: [676,96,500,3,479], + 0x1D40A: [676,0,778,30,769], + 0x1D40B: [676,0,667,19,638], + 0x1D40C: [676,0,944,14,921], + 0x1D40D: [676,18,722,16,701], + 0x1D40E: [691,19,778,35,743], + 0x1D40F: [676,0,611,16,600], + 0x1D410: [691,176,778,35,743], + 0x1D411: [676,0,722,26,715], + 0x1D412: [692,19,556,35,513], + 0x1D413: [676,0,667,31,636], + 0x1D414: [676,19,722,16,701], + 0x1D415: [676,18,722,16,701], + 0x1D416: [676,15,1000,19,981], + 0x1D417: [676,0,722,16,699], + 0x1D418: [676,0,722,15,699], + 0x1D419: [676,0,667,28,634], + 0x1D41A: [473,14,500,25,488], + 0x1D41B: [676,14,556,17,521], + 0x1D41C: [473,14,444,25,430], + 0x1D41D: [676,14,556,25,534], + 0x1D41E: [473,14,444,25,426], + 0x1D41F: [691,0,333,14,389], + 0x1D420: [473,206,500,28,483], + 0x1D421: [676,0,556,16,534], + 0x1D422: [687,0,278,16,255], + 0x1D423: [687,203,333,-57,266], + 0x1D424: [676,0,556,22,543], + 0x1D425: [676,0,278,16,255], + 0x1D426: [473,0,833,16,814], + 0x1D427: [473,0,556,21,539], + 0x1D428: [473,14,500,25,476], + 0x1D429: [473,205,556,19,524], + 0x1D42A: [473,205,556,34,536], + 0x1D42B: [473,0,444,29,434], + 0x1D42C: [473,14,389,25,361], + 0x1D42D: [630,12,333,20,332], + 0x1D42E: [461,14,556,16,537], + 0x1D42F: [461,14,500,21,485], + 0x1D430: [461,14,722,23,707], + 0x1D431: [461,0,500,12,484], + 0x1D432: [461,205,500,16,480], + 0x1D433: [461,0,444,21,420], + 0x1D434: [668,0,611,-51,564], + 0x1D435: [653,0,611,-8,588], + 0x1D436: [666,18,667,66,689], + 0x1D437: [653,0,722,-8,700], + 0x1D438: [653,0,611,-1,634], + 0x1D439: [653,0,611,8,645], + 0x1D43A: [666,18,722,52,722], + 0x1D43B: [653,0,722,-8,767], + 0x1D43C: [653,0,333,-8,384], + 0x1D43D: [653,18,444,-6,491], + 0x1D43E: [653,0,667,7,722], + 0x1D43F: [653,0,556,-8,559], + 0x1D440: [653,0,833,-18,873], + 0x1D441: [653,15,667,-20,727], + 0x1D442: [666,18,722,60,699], + 0x1D443: [653,0,611,0,605], + 0x1D444: [666,182,722,59,699], + 0x1D445: [653,0,611,-13,588], + 0x1D446: [667,18,500,17,508], + 0x1D447: [653,0,556,59,633], + 0x1D448: [653,18,722,102,765], + 0x1D449: [653,18,611,76,688], + 0x1D44A: [653,18,833,71,906], + 0x1D44B: [653,0,611,-29,655], + 0x1D44C: [653,0,556,78,633], + 0x1D44D: [653,0,556,-6,606], + 0x1D44E: [441,11,500,17,476], + 0x1D44F: [683,11,500,23,473], + 0x1D450: [441,11,444,30,425], + 0x1D451: [683,13,500,15,527], + 0x1D452: [441,11,444,31,412], + 0x1D453: [678,207,278,-147,424], + 0x1D454: [441,206,500,8,469], + 0x1D456: [643,11,278,49,276], + 0x1D457: [643,207,278,-124,301], + 0x1D458: [683,11,444,14,461], + 0x1D459: [683,11,278,41,279], + 0x1D45A: [441,9,722,12,704], + 0x1D45B: [441,9,500,14,474], + 0x1D45C: [441,11,500,27,468], + 0x1D45D: [441,205,500,-75,469], + 0x1D45E: [441,205,500,25,483], + 0x1D45F: [441,0,389,45,412], + 0x1D460: [442,13,389,16,366], + 0x1D461: [546,11,278,37,296], + 0x1D462: [441,11,500,42,475], + 0x1D463: [441,18,444,21,426], + 0x1D464: [441,18,667,16,648], + 0x1D465: [441,11,444,-27,447], + 0x1D466: [441,206,444,-24,426], + 0x1D467: [428,81,389,-2,380], + 0x1D468: [683,0,667,-67,593], + 0x1D469: [669,0,667,-24,624], + 0x1D46A: [685,18,667,32,677], + 0x1D46B: [669,0,722,-46,685], + 0x1D46C: [669,0,667,-27,653], + 0x1D46D: [669,0,667,-13,660], + 0x1D46E: [685,18,722,21,706], + 0x1D46F: [669,0,778,-24,799], + 0x1D470: [669,0,389,-32,406], + 0x1D471: [669,99,500,-46,524], + 0x1D472: [669,0,667,-21,702], + 0x1D473: [669,0,611,-22,590], + 0x1D474: [669,12,889,-29,917], + 0x1D475: [669,15,722,-27,748], + 0x1D476: [685,18,722,27,691], + 0x1D477: [669,0,611,-27,613], + 0x1D478: [685,208,722,27,691], + 0x1D479: [669,0,667,-29,623], + 0x1D47A: [685,18,556,2,526], + 0x1D47B: [669,0,611,50,650], + 0x1D47C: [669,18,722,67,744], + 0x1D47D: [669,18,667,65,715], + 0x1D47E: [669,18,889,65,940], + 0x1D47F: [669,0,667,-24,694], + 0x1D480: [669,0,611,73,659], + 0x1D481: [669,0,611,-11,590], + 0x1D482: [462,14,500,-21,455], + 0x1D483: [699,13,500,-14,444], + 0x1D484: [462,13,444,-5,392], + 0x1D485: [699,13,500,-21,517], + 0x1D486: [462,13,444,5,398], + 0x1D487: [698,205,333,-169,446], + 0x1D488: [462,203,500,-52,478], + 0x1D489: [699,9,556,-13,498], + 0x1D48A: [658,9,278,2,266], + 0x1D48B: [658,207,278,-189,284], + 0x1D48C: [699,8,500,-23,483], + 0x1D48D: [699,9,278,2,290], + 0x1D48E: [462,9,778,-14,722], + 0x1D48F: [462,9,556,-6,493], + 0x1D490: [462,13,500,-3,441], + 0x1D491: [462,205,500,-120,446], + 0x1D492: [462,205,500,1,471], + 0x1D493: [462,0,389,-21,389], + 0x1D494: [462,13,389,-19,333], + 0x1D495: [594,9,278,-11,281], + 0x1D496: [462,9,556,15,492], + 0x1D497: [462,13,444,16,401], + 0x1D498: [462,13,667,16,614], + 0x1D499: [462,13,500,-46,469], + 0x1D49A: [462,205,444,-94,392], + 0x1D49B: [449,78,389,-43,368], + 0x1D6A4: [441,11,278,49,235], + 0x1D6A5: [441,207,278,-124,246], + 0x1D6A8: [690,0,840,80,760], + 0x1D6A9: [676,0,763,80,683], + 0x1D6AA: [676,0,737,80,657], + 0x1D6AB: [690,0,761,80,681], + 0x1D6AC: [676,0,785,80,705], + 0x1D6AD: [676,0,766,80,686], + 0x1D6AE: [676,0,898,80,818], + 0x1D6AF: [691,19,868,80,788], + 0x1D6B0: [676,0,510,80,430], + 0x1D6B1: [676,0,899,80,819], + 0x1D6B2: [690,0,840,80,760], + 0x1D6B3: [676,0,1067,80,987], + 0x1D6B4: [676,18,845,80,765], + 0x1D6B5: [662,0,731,80,651], + 0x1D6B6: [691,19,868,80,788], + 0x1D6B7: [676,0,898,80,818], + 0x1D6B8: [676,0,744,80,664], + 0x1D6B9: [691,19,868,80,788], + 0x1D6BA: [662,0,784,80,704], + 0x1D6BB: [676,0,765,80,685], + 0x1D6BC: [676,0,848,80,768], + 0x1D6BD: [676,0,814,80,734], + 0x1D6BE: [676,0,843,80,763], + 0x1D6BF: [676,0,880,80,800], + 0x1D6C0: [691,0,850,80,770], + 0x1D6C1: [680,10,761,80,681], + 0x1D6C2: [473,14,679,80,599], + 0x1D6C3: [691,217,650,80,570], + 0x1D6C4: [473,232,720,80,640], + 0x1D6C5: [691,14,666,80,586], + 0x1D6C6: [473,14,573,80,493], + 0x1D6C7: [667,215,546,80,466], + 0x1D6C8: [473,218,673,80,593], + 0x1D6C9: [691,14,640,80,560], + 0x1D6CA: [473,14,520,80,440], + 0x1D6CB: [473,14,769,80,689], + 0x1D6CC: [691,14,720,80,640], + 0x1D6CD: [461,218,690,80,610], + 0x1D6CE: [473,11,665,80,585], + 0x1D6CF: [667,215,544,80,464], + 0x1D6D0: [473,14,611,80,531], + 0x1D6D1: [481,14,715,80,635], + 0x1D6D2: [473,218,616,80,536], + 0x1D6D3: [473,215,545,80,465], + 0x1D6D4: [471,14,674,80,594], + 0x1D6D5: [481,16,655,80,575], + 0x1D6D6: [473,14,640,80,560], + 0x1D6D7: [476,218,812,80,732], + 0x1D6D8: [473,232,720,80,640], + 0x1D6D9: [473,218,880,80,800], + 0x1D6DA: [475,14,789,80,709], + 0x1D6DB: [691,14,616,80,536], + 0x1D6DC: [482,14,522,80,442], + 0x1D6DD: [693,14,828,80,748], + 0x1D6DE: [473,14,649,80,569], + 0x1D6DF: [677,218,832,80,752], + 0x1D6E0: [473,217,616,80,536], + 0x1D6E1: [481,14,955,80,875], + 0x1D6E2: [668,0,775,80,695], + 0x1D6E3: [653,0,756,80,676], + 0x1D6E4: [662,0,868,80,788], + 0x1D6E5: [668,0,686,80,606], + 0x1D6E6: [653,0,795,80,715], + 0x1D6E7: [653,0,772,80,692], + 0x1D6E8: [653,0,935,80,855], + 0x1D6E9: [666,18,799,80,719], + 0x1D6EA: [653,0,552,80,472], + 0x1D6EB: [653,0,875,80,795], + 0x1D6EC: [668,0,775,80,695], + 0x1D6ED: [653,0,1051,80,971], + 0x1D6EE: [653,15,907,80,827], + 0x1D6EF: [653,0,822,80,742], + 0x1D6F0: [666,18,799,80,719], + 0x1D6F1: [653,0,935,80,855], + 0x1D6F2: [653,0,765,80,685], + 0x1D6F3: [666,18,799,80,719], + 0x1D6F4: [653,0,848,80,768], + 0x1D6F5: [653,0,734,80,654], + 0x1D6F6: [653,0,798,80,717], + 0x1D6F7: [653,0,708,79,627], + 0x1D6F8: [653,0,844,80,764], + 0x1D6F9: [653,0,770,80,690], + 0x1D6FA: [649,0,855,80,774], + 0x1D6FB: [658,10,686,80,606], + 0x1D6FC: [441,16,645,79,565], + 0x1D6FD: [645,208,694,80,614], + 0x1D6FE: [442,224,684,80,604], + 0x1D6FF: [645,15,630,80,550], + 0x1D700: [441,15,568,79,487], + 0x1D701: [639,201,591,80,510], + 0x1D702: [441,208,581,80,500], + 0x1D703: [645,15,577,80,496], + 0x1D704: [441,16,389,80,309], + 0x1D705: [441,14,677,80,596], + 0x1D706: [645,17,672,80,592], + 0x1D707: [426,209,685,80,605], + 0x1D708: [441,15,604,80,524], + 0x1D709: [639,201,594,80,514], + 0x1D70A: [441,11,601,80,521], + 0x1D70B: [452,15,766,80,686], + 0x1D70C: [441,209,654,80,573], + 0x1D70D: [441,201,582,80,501], + 0x1D70E: [452,15,658,80,578], + 0x1D70F: [452,15,647,80,567], + 0x1D710: [441,15,588,80,508], + 0x1D711: [441,209,678,80,598], + 0x1D712: [441,226,806,80,726], + 0x1D713: [441,209,768,79,688], + 0x1D714: [444,15,763,79,682], + 0x1D715: [645,16,586,79,505], + 0x1D716: [441,15,524,79,444], + 0x1D717: [645,15,696,80,615], + 0x1D718: [441,15,654,79,574], + 0x1D719: [630,208,698,79,617], + 0x1D71A: [441,208,576,79,496], + 0x1D71B: [452,20,906,80,826], + 0x1D71C: [683,0,820,80,740], + 0x1D71D: [669,0,808,80,728], + 0x1D71E: [676,0,918,80,838], + 0x1D71F: [683,0,735,80,655], + 0x1D720: [669,0,840,80,760], + 0x1D721: [669,0,761,80,681], + 0x1D722: [669,0,983,80,903], + 0x1D723: [685,18,844,80,764], + 0x1D724: [669,0,598,80,518], + 0x1D725: [669,0,883,80,803], + 0x1D726: [683,0,820,80,740], + 0x1D727: [669,12,1106,80,1026], + 0x1D728: [669,15,935,80,855], + 0x1D729: [662,0,874,80,794], + 0x1D72A: [685,18,824,80,744], + 0x1D72B: [669,0,983,80,903], + 0x1D72C: [669,0,800,80,720], + 0x1D72D: [685,18,844,80,764], + 0x1D72E: [662,0,909,80,829], + 0x1D72F: [669,0,760,80,680], + 0x1D730: [676,0,786,80,705], + 0x1D731: [676,0,786,79,706], + 0x1D732: [669,0,878,80,798], + 0x1D733: [676,0,860,80,780], + 0x1D734: [691,0,892,80,812], + 0x1D735: [673,10,735,80,655], + 0x1D736: [473,14,728,80,648], + 0x1D737: [691,217,791,80,710], + 0x1D738: [473,232,751,80,671], + 0x1D739: [691,14,697,80,617], + 0x1D73A: [473,14,624,80,544], + 0x1D73B: [667,215,604,79,523], + 0x1D73C: [473,218,652,80,571], + 0x1D73D: [691,14,659,79,579], + 0x1D73E: [473,14,443,80,363], + 0x1D73F: [473,14,747,80,666], + 0x1D740: [691,14,746,80,666], + 0x1D741: [461,218,757,80,677], + 0x1D742: [473,11,673,80,592], + 0x1D743: [667,215,615,79,535], + 0x1D744: [473,13,608,80,528], + 0x1D745: [481,14,821,80,741], + 0x1D746: [473,218,731,80,650], + 0x1D747: [473,215,610,79,530], + 0x1D748: [471,14,742,79,662], + 0x1D749: [481,16,705,80,625], + 0x1D74A: [473,14,648,80,567], + 0x1D74B: [476,218,805,79,724], + 0x1D74C: [473,232,877,80,797], + 0x1D74D: [473,218,874,80,794], + 0x1D74E: [475,14,772,80,692], + 0x1D74F: [691,14,670,80,589], + 0x1D750: [482,14,580,80,500], + 0x1D751: [693,14,798,80,717], + 0x1D752: [473,14,714,80,633], + 0x1D753: [677,218,822,79,742], + 0x1D754: [473,217,673,80,593], + 0x1D755: [481,14,985,80,905], + 0x1D7CE: [688,13,500,24,476], + 0x1D7CF: [688,0,500,65,442], + 0x1D7D0: [688,0,500,17,478], + 0x1D7D1: [688,14,500,16,468], + 0x1D7D2: [688,0,500,19,475], + 0x1D7D3: [676,8,500,22,470], + 0x1D7D4: [688,13,500,28,475], + 0x1D7D5: [676,0,500,17,477], + 0x1D7D6: [688,13,500,28,472], + 0x1D7D7: [688,13,500,26,473] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Normal"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Normal/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Operators/Regular/Main.js new file mode 100644 index 0000000..adb3620 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Operators/Regular/Main.js @@ -0,0 +1,114 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'GyreTermesMathJax_Operators', + testString: '\u00A0\u2206\u220A\u220C\u220E\u220F\u2210\u2211\u221F\u222C\u222D\u222E\u222F\u2230\u2231', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2206: [674,0,760,80,680], + 0x220A: [425,-75,528,80,448], + 0x220C: [650,150,678,80,598], + 0x220E: [556,0,716,80,636], + 0x220F: [727,227,1023,80,943], + 0x2210: [727,227,1023,80,943], + 0x2211: [727,227,944,80,864], + 0x221F: [526,0,686,80,606], + 0x222C: [796,296,1042,80,962], + 0x222D: [796,296,1418,80,1338], + 0x222E: [796,296,712,80,632], + 0x222F: [796,296,1088,80,1008], + 0x2230: [796,296,1464,80,1384], + 0x2231: [796,296,729,80,689], + 0x2232: [796,296,721,80,681], + 0x2233: [796,296,692,80,652], + 0x2236: [423,-77,272,80,192], + 0x2237: [423,-77,506,80,426], + 0x2238: [488,-224,660,80,580], + 0x2239: [423,-77,760,80,680], + 0x223A: [488,-12,660,80,580], + 0x223B: [471,-29,642,80,562], + 0x223E: [404,-96,784,80,704], + 0x223F: [431,-69,660,80,580], + 0x2244: [500,0,660,80,580], + 0x2247: [500,0,660,80,580], + 0x2249: [500,0,642,80,562], + 0x224B: [471,-29,642,80,562], + 0x224C: [471,-72,660,80,580], + 0x2254: [423,-77,760,80,680], + 0x2255: [423,-77,760,80,680], + 0x2258: [503,-32,660,80,580], + 0x2259: [546,46,660,80,580], + 0x225A: [546,46,660,80,580], + 0x225B: [791,-128,660,80,580], + 0x225D: [824,-128,852,80,772], + 0x225E: [712,-128,660,80,580], + 0x225F: [818,-128,660,80,580], + 0x2262: [650,150,660,80,580], + 0x2263: [564,64,660,80,580], + 0x226D: [650,150,660,80,580], + 0x2274: [632,132,665,80,585], + 0x2275: [632,132,665,80,585], + 0x2278: [681,181,670,80,590], + 0x2279: [681,181,670,80,590], + 0x2284: [650,150,678,80,598], + 0x2285: [650,150,678,80,598], + 0x228C: [500,18,660,80,580], + 0x228D: [500,18,660,80,580], + 0x229C: [568,68,796,80,716], + 0x22A6: [650,150,586,80,506], + 0x22A7: [650,150,586,80,506], + 0x22AB: [650,150,738,80,658], + 0x22B6: [400,-100,960,80,880], + 0x22B7: [400,-100,960,80,880], + 0x22B9: [500,0,660,80,580], + 0x22BD: [529,29,660,80,580], + 0x22BE: [526,85,771,80,691], + 0x22BF: [544,0,704,80,624], + 0x22C0: [698,190,960,80,880], + 0x22C1: [690,198,960,80,880], + 0x22C2: [708,190,960,80,880], + 0x22C3: [690,208,960,80,880], + 0x22C7: [521,21,671,80,591], + 0x22D5: [650,150,660,80,580], + 0x22DC: [564,54,665,80,585], + 0x22DD: [564,54,665,80,585], + 0x22E2: [685,185,660,80,580], + 0x22E3: [685,185,660,80,580], + 0x22E4: [576,143,660,80,580], + 0x22E5: [576,143,660,80,580], + 0x22F0: [517,17,694,80,614], + 0x2A00: [688,188,1036,80,956], + 0x2A01: [688,188,1036,80,956], + 0x2A02: [688,188,1036,80,956], + 0x2A03: [690,208,960,80,880], + 0x2A04: [690,208,960,80,880], + 0x2A05: [704,176,896,80,816], + 0x2A06: [676,204,896,80,816], + 0x2A09: [608,108,876,80,796], + 0x2A0C: [796,296,1794,80,1714], + 0x2A11: [796,296,729,80,689], + 0x2A2F: [455,-45,570,80,490] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Operators"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Operators/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/SansSerif/Regular/Main.js new file mode 100644 index 0000000..2ab8d6e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/SansSerif/Regular/Main.js @@ -0,0 +1,375 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'GyreTermesMathJax_SansSerif', + testString: '\u00A0\uD835\uDDA0\uD835\uDDA1\uD835\uDDA2\uD835\uDDA3\uD835\uDDA4\uD835\uDDA5\uD835\uDDA6\uD835\uDDA7\uD835\uDDA8\uD835\uDDA9\uD835\uDDAA\uD835\uDDAB\uD835\uDDAC\uD835\uDDAD', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x1D5A0: [671,0,616,17,602], + 0x1D5A1: [671,0,623,79,579], + 0x1D5A2: [687,17,672,48,627], + 0x1D5A3: [671,0,676,89,621], + 0x1D5A4: [671,0,625,90,571], + 0x1D5A5: [671,0,572,90,540], + 0x1D5A6: [687,17,725,44,656], + 0x1D5A7: [671,0,677,83,599], + 0x1D5A8: [671,0,271,100,186], + 0x1D5A9: [671,17,467,19,393], + 0x1D5AA: [671,0,621,79,612], + 0x1D5AB: [671,0,520,80,497], + 0x1D5AC: [671,0,778,75,706], + 0x1D5AD: [671,0,676,76,600], + 0x1D5AE: [687,17,722,38,686], + 0x1D5AF: [671,0,625,91,575], + 0x1D5B0: [687,50,722,38,686], + 0x1D5B1: [671,0,675,93,632], + 0x1D5B2: [687,17,621,48,575], + 0x1D5B3: [671,0,565,21,547], + 0x1D5B4: [671,17,677,85,600], + 0x1D5B5: [671,0,618,30,596], + 0x1D5B6: [671,0,871,22,856], + 0x1D5B7: [671,0,617,22,599], + 0x1D5B8: [671,0,615,13,609], + 0x1D5B9: [671,0,567,28,539], + 0x1D5BA: [496,14,517,42,496], + 0x1D5BB: [671,14,518,54,485], + 0x1D5BC: [496,14,464,31,441], + 0x1D5BD: [671,14,518,26,457], + 0x1D5BE: [496,14,518,40,475], + 0x1D5BF: [673,0,259,18,239], + 0x1D5C0: [496,201,519,29,452], + 0x1D5C1: [671,0,523,70,453], + 0x1D5C2: [650,0,214,60,156], + 0x1D5C3: [650,201,207,-18,149], + 0x1D5C4: [671,0,464,58,466], + 0x1D5C5: [671,0,215,68,144], + 0x1D5C6: [496,0,778,71,705], + 0x1D5C7: [496,0,523,70,454], + 0x1D5C8: [496,14,518,36,472], + 0x1D5C9: [496,201,519,55,486], + 0x1D5CA: [496,201,518,26,457], + 0x1D5CB: [496,0,313,70,301], + 0x1D5CC: [496,14,466,34,425], + 0x1D5CD: [615,6,259,14,235], + 0x1D5CE: [482,14,523,65,449], + 0x1D5CF: [482,0,462,10,448], + 0x1D5D0: [482,0,666,6,652], + 0x1D5D1: [482,0,464,17,437], + 0x1D5D2: [482,201,463,20,441], + 0x1D5D3: [482,0,466,31,423], + 0x1D5D4: [671,0,654,26,635], + 0x1D5D5: [671,0,664,82,608], + 0x1D5D6: [682,11,658,44,621], + 0x1D5D7: [671,0,662,77,621], + 0x1D5D8: [671,0,612,79,569], + 0x1D5D9: [671,0,560,74,535], + 0x1D5DA: [682,11,711,42,644], + 0x1D5DB: [671,0,663,68,598], + 0x1D5DC: [671,0,263,63,198], + 0x1D5DD: [671,11,510,24,440], + 0x1D5DE: [671,0,658,74,653], + 0x1D5DF: [671,0,561,80,529], + 0x1D5E0: [671,0,762,66,705], + 0x1D5E1: [671,0,663,68,602], + 0x1D5E2: [682,11,708,40,672], + 0x1D5E3: [671,0,611,76,577], + 0x1D5E4: [682,40,708,43,675], + 0x1D5E5: [671,0,662,80,617], + 0x1D5E6: [682,11,607,32,573], + 0x1D5E7: [671,0,553,14,540], + 0x1D5E8: [671,11,664,76,596], + 0x1D5E9: [671,0,605,24,585], + 0x1D5EA: [671,0,852,13,840], + 0x1D5EB: [671,0,604,22,590], + 0x1D5EC: [671,0,605,27,588], + 0x1D5ED: [671,0,556,30,523], + 0x1D5EE: [505,8,506,28,474], + 0x1D5EF: [671,8,559,59,523], + 0x1D5F0: [505,8,507,34,473], + 0x1D5F1: [671,8,559,29,493], + 0x1D5F2: [505,8,506,22,475], + 0x1D5F3: [671,0,303,14,283], + 0x1D5F4: [505,201,560,34,490], + 0x1D5F5: [671,0,564,67,494], + 0x1D5F6: [685,0,264,67,195], + 0x1D5F7: [685,201,257,4,189], + 0x1D5F8: [671,0,507,59,499], + 0x1D5F9: [671,0,264,67,193], + 0x1D5FA: [505,0,813,60,748], + 0x1D5FB: [505,0,563,63,498], + 0x1D5FC: [505,8,558,35,516], + 0x1D5FD: [505,201,559,58,522], + 0x1D5FE: [505,201,559,28,492], + 0x1D5FF: [505,0,358,63,339], + 0x1D600: [505,8,507,29,471], + 0x1D601: [620,4,304,14,272], + 0x1D602: [497,8,563,58,493], + 0x1D603: [497,0,504,14,484], + 0x1D604: [497,0,702,5,690], + 0x1D605: [497,0,504,16,483], + 0x1D606: [497,201,503,9,485], + 0x1D607: [497,0,455,21,423], + 0x1D608: [671,0,616,-33,552], + 0x1D609: [671,0,616,29,610], + 0x1D60A: [687,17,669,63,667], + 0x1D60B: [671,0,668,39,655], + 0x1D60C: [671,0,614,40,648], + 0x1D60D: [671,0,559,40,632], + 0x1D60E: [687,17,722,60,703], + 0x1D60F: [671,0,665,33,692], + 0x1D610: [671,0,258,50,279], + 0x1D611: [671,17,457,-2,488], + 0x1D612: [671,0,608,29,704], + 0x1D613: [671,0,518,30,463], + 0x1D614: [671,0,766,25,799], + 0x1D615: [671,0,664,26,693], + 0x1D616: [687,17,720,55,721], + 0x1D617: [671,0,616,41,632], + 0x1D618: [687,50,720,55,721], + 0x1D619: [671,0,668,43,666], + 0x1D61A: [687,17,617,40,615], + 0x1D61B: [671,0,564,108,651], + 0x1D61C: [671,17,668,75,696], + 0x1D61D: [671,0,618,135,701], + 0x1D61E: [671,0,871,127,961], + 0x1D61F: [671,0,605,-28,682], + 0x1D620: [671,0,615,118,714], + 0x1D621: [671,0,554,-22,630], + 0x1D622: [496,14,516,16,478], + 0x1D623: [671,14,513,4,495], + 0x1D624: [496,14,462,27,466], + 0x1D625: [671,14,510,24,554], + 0x1D626: [496,14,516,35,490], + 0x1D627: [673,0,252,39,337], + 0x1D628: [496,201,510,-18,505], + 0x1D629: [671,0,516,20,484], + 0x1D62A: [650,0,203,19,243], + 0x1D62B: [650,201,192,-115,232], + 0x1D62C: [671,0,458,8,492], + 0x1D62D: [671,0,203,18,238], + 0x1D62E: [496,0,771,21,740], + 0x1D62F: [496,0,516,20,484], + 0x1D630: [496,14,516,31,486], + 0x1D631: [496,196,510,-43,490], + 0x1D632: [496,196,513,22,514], + 0x1D633: [496,0,304,19,357], + 0x1D634: [496,14,463,13,433], + 0x1D635: [615,6,257,50,295], + 0x1D636: [482,14,516,40,504], + 0x1D637: [482,0,462,72,510], + 0x1D638: [482,0,666,68,714], + 0x1D639: [482,0,455,-33,488], + 0x1D63A: [482,201,453,-42,493], + 0x1D63B: [482,0,458,-19,465], + 0x1D63C: [671,0,654,26,694], + 0x1D63D: [671,0,664,82,698], + 0x1D63E: [682,11,658,103,715], + 0x1D63F: [671,0,662,77,704], + 0x1D640: [671,0,612,79,696], + 0x1D641: [671,0,560,74,678], + 0x1D642: [682,11,711,103,742], + 0x1D643: [671,0,663,68,741], + 0x1D644: [671,0,263,63,341], + 0x1D645: [671,11,510,59,583], + 0x1D646: [671,0,658,74,768], + 0x1D647: [671,0,561,80,553], + 0x1D648: [671,0,762,66,848], + 0x1D649: [671,0,663,68,745], + 0x1D64A: [682,11,708,101,753], + 0x1D64B: [671,0,611,76,682], + 0x1D64C: [682,40,708,104,757], + 0x1D64D: [671,0,662,80,718], + 0x1D64E: [682,11,607,71,654], + 0x1D64F: [671,0,553,132,683], + 0x1D650: [671,11,664,117,739], + 0x1D651: [671,0,605,167,728], + 0x1D652: [671,0,852,156,983], + 0x1D653: [671,0,604,22,725], + 0x1D654: [671,0,605,170,731], + 0x1D655: [671,0,556,30,666], + 0x1D656: [505,8,506,52,525], + 0x1D657: [671,8,559,59,582], + 0x1D658: [505,8,507,77,542], + 0x1D659: [671,8,559,74,636], + 0x1D65A: [505,8,506,65,534], + 0x1D65B: [671,0,303,82,421], + 0x1D65C: [505,201,560,29,596], + 0x1D65D: [671,0,564,67,571], + 0x1D65E: [685,0,264,67,341], + 0x1D65F: [685,201,257,-38,335], + 0x1D660: [671,0,507,59,593], + 0x1D661: [671,0,264,67,336], + 0x1D662: [505,0,813,60,828], + 0x1D663: [505,0,563,63,575], + 0x1D664: [505,8,558,79,577], + 0x1D665: [505,201,559,15,584], + 0x1D666: [505,201,559,72,598], + 0x1D667: [505,0,358,63,446], + 0x1D668: [505,8,507,59,533], + 0x1D669: [620,4,304,95,376], + 0x1D66A: [497,8,563,87,599], + 0x1D66B: [497,0,504,120,590], + 0x1D66C: [497,0,702,111,796], + 0x1D66D: [497,0,504,16,585], + 0x1D66E: [497,201,503,36,591], + 0x1D66F: [497,0,455,21,521], + 0x1D756: [671,0,769,80,689], + 0x1D757: [671,0,686,80,606], + 0x1D758: [671,0,621,80,541], + 0x1D759: [650,0,829,80,749], + 0x1D75A: [671,0,650,80,570], + 0x1D75B: [671,0,653,80,573], + 0x1D75C: [671,0,690,80,610], + 0x1D75D: [682,11,792,80,712], + 0x1D75E: [671,0,295,80,215], + 0x1D75F: [671,0,739,80,659], + 0x1D760: [671,0,769,80,689], + 0x1D761: [671,0,799,80,719], + 0x1D762: [671,0,694,80,614], + 0x1D763: [671,0,675,80,595], + 0x1D764: [682,11,792,80,712], + 0x1D765: [671,0,690,80,610], + 0x1D766: [671,0,661,80,581], + 0x1D767: [682,11,792,80,712], + 0x1D768: [671,0,648,80,568], + 0x1D769: [671,0,686,80,606], + 0x1D76A: [671,0,721,80,641], + 0x1D76B: [671,0,758,80,678], + 0x1D76C: [671,0,728,80,648], + 0x1D76D: [671,0,721,80,641], + 0x1D76E: [682,0,770,80,690], + 0x1D76F: [650,0,829,80,749], + 0x1D770: [505,10,762,80,682], + 0x1D771: [671,202,637,80,557], + 0x1D772: [497,230,718,80,638], + 0x1D773: [666,10,574,80,494], + 0x1D774: [505,9,565,80,485], + 0x1D775: [677,194,603,80,523], + 0x1D776: [505,202,615,80,535], + 0x1D777: [664,10,578,80,498], + 0x1D778: [497,6,371,80,291], + 0x1D779: [497,0,631,80,551], + 0x1D77A: [673,0,731,80,651], + 0x1D77B: [497,202,663,80,583], + 0x1D77C: [497,0,653,80,573], + 0x1D77D: [677,194,603,80,523], + 0x1D77E: [505,8,641,80,561], + 0x1D77F: [497,6,759,80,679], + 0x1D780: [493,202,635,80,555], + 0x1D781: [503,194,592,80,512], + 0x1D782: [524,8,711,80,631], + 0x1D783: [497,6,619,80,539], + 0x1D784: [483,10,622,80,542], + 0x1D785: [493,212,760,80,680], + 0x1D786: [497,212,750,79,670], + 0x1D787: [661,212,720,80,640], + 0x1D788: [497,-4,762,80,682], + 0x1D789: [671,11,585,80,505], + 0x1D78A: [505,8,542,80,462], + 0x1D78B: [671,10,615,80,535], + 0x1D78C: [507,10,676,80,596], + 0x1D78D: [671,212,729,80,649], + 0x1D78E: [493,202,615,80,535], + 0x1D78F: [608,-4,764,80,684], + 0x1D790: [671,0,769,80,689], + 0x1D791: [671,0,776,80,696], + 0x1D792: [671,0,764,80,684], + 0x1D793: [650,0,829,80,749], + 0x1D794: [671,0,777,80,697], + 0x1D795: [671,0,796,80,716], + 0x1D796: [671,0,833,80,753], + 0x1D797: [682,11,809,80,729], + 0x1D798: [671,0,438,80,358], + 0x1D799: [671,0,854,80,774], + 0x1D79A: [671,0,769,80,689], + 0x1D79B: [671,0,942,80,862], + 0x1D79C: [671,0,837,80,757], + 0x1D79D: [671,0,818,80,738], + 0x1D79E: [682,11,809,80,729], + 0x1D79F: [671,0,833,80,753], + 0x1D7A0: [671,0,766,80,686], + 0x1D7A1: [682,11,809,80,729], + 0x1D7A2: [671,0,791,80,711], + 0x1D7A3: [671,0,711,80,631], + 0x1D7A4: [671,0,721,80,641], + 0x1D7A5: [671,0,768,80,688], + 0x1D7A6: [671,0,863,80,783], + 0x1D7A7: [671,0,779,80,699], + 0x1D7A8: [682,0,847,80,767], + 0x1D7A9: [640,10,829,142,811], + 0x1D7AA: [505,10,823,80,743], + 0x1D7AB: [671,202,751,80,671], + 0x1D7AC: [497,230,718,80,638], + 0x1D7AD: [666,10,663,80,583], + 0x1D7AE: [505,9,612,80,532], + 0x1D7AF: [677,194,668,80,588], + 0x1D7B0: [505,202,672,80,592], + 0x1D7B1: [664,10,620,80,540], + 0x1D7B2: [497,6,365,80,285], + 0x1D7B3: [497,0,694,80,614], + 0x1D7B4: [673,0,731,80,651], + 0x1D7B5: [497,202,767,80,687], + 0x1D7B6: [497,0,637,80,557], + 0x1D7B7: [677,194,653,80,573], + 0x1D7B8: [505,8,658,80,578], + 0x1D7B9: [497,6,788,80,708], + 0x1D7BA: [493,202,738,80,658], + 0x1D7BB: [503,194,607,80,527], + 0x1D7BC: [524,8,779,80,699], + 0x1D7BD: [497,6,648,80,568], + 0x1D7BE: [483,10,629,80,549], + 0x1D7BF: [493,212,775,80,695], + 0x1D7C0: [497,212,822,80,742], + 0x1D7C1: [661,212,756,80,676], + 0x1D7C2: [497,-4,778,80,698], + 0x1D7C3: [671,11,624,80,544], + 0x1D7C4: [505,8,594,80,514], + 0x1D7C5: [671,10,661,80,581], + 0x1D7C6: [507,10,758,80,678], + 0x1D7C7: [671,212,742,80,662], + 0x1D7C8: [493,202,658,80,578], + 0x1D7C9: [603,-4,786,80,706], + 0x1D7E2: [652,14,519,43,470], + 0x1D7E3: [652,0,536,102,327], + 0x1D7E4: [652,0,518,34,473], + 0x1D7E5: [652,14,518,32,468], + 0x1D7E6: [652,0,517,28,481], + 0x1D7E7: [638,14,518,35,475], + 0x1D7E8: [652,14,518,43,475], + 0x1D7E9: [638,0,518,46,482], + 0x1D7EA: [652,14,518,37,475], + 0x1D7EB: [652,14,518,38,471], + 0x1D7EC: [666,8,507,29,468], + 0x1D7ED: [652,0,525,68,347], + 0x1D7EE: [666,0,507,30,466], + 0x1D7EF: [666,8,507,29,467], + 0x1D7F0: [652,0,506,24,472], + 0x1D7F1: [652,8,507,27,468], + 0x1D7F2: [666,8,507,32,470], + 0x1D7F3: [652,0,506,29,478], + 0x1D7F4: [666,8,506,22,475], + 0x1D7F5: [666,8,507,28,467] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_SansSerif"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Script/Regular/Main.js new file mode 100644 index 0000000..6a11c0c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Script/Regular/Main.js @@ -0,0 +1,135 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Script'] = { + directory: 'Script/Regular', + family: 'GyreTermesMathJax_Script', + testString: '\u00A0\u210A\u210B\u2110\u2112\u211B\u212C\u212F\u2130\u2131\u2133\u2134\uD835\uDC9C\uD835\uDC9E\uD835\uDC9F', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210A: [426,308,729,80,649], + 0x210B: [687,17,1070,80,990], + 0x2110: [689,15,806,80,726], + 0x2112: [687,17,948,80,868], + 0x211B: [690,17,1027,80,947], + 0x212C: [690,19,950,80,870], + 0x212F: [418,14,519,80,439], + 0x2130: [694,17,755,79,675], + 0x2131: [689,17,986,80,906], + 0x2133: [689,17,1266,80,1186], + 0x2134: [427,14,629,80,549], + 0x1D49C: [689,17,1090,80,1010], + 0x1D49E: [689,17,871,80,791], + 0x1D49F: [690,17,902,79,822], + 0x1D4A2: [689,17,859,80,779], + 0x1D4A5: [689,253,852,80,772], + 0x1D4A6: [689,17,1156,80,1076], + 0x1D4A9: [697,24,1193,80,1113], + 0x1D4AA: [689,19,864,80,784], + 0x1D4AB: [690,16,897,80,817], + 0x1D4AC: [689,140,864,80,784], + 0x1D4AE: [689,15,993,80,913], + 0x1D4AF: [689,17,996,80,916], + 0x1D4B0: [687,18,1016,80,936], + 0x1D4B1: [689,19,1050,80,970], + 0x1D4B2: [689,19,1269,80,1189], + 0x1D4B3: [688,17,1001,80,921], + 0x1D4B4: [689,264,974,80,894], + 0x1D4B5: [687,19,938,80,858], + 0x1D4B6: [418,14,726,80,646], + 0x1D4B7: [735,14,617,80,537], + 0x1D4B8: [418,14,484,80,404], + 0x1D4B9: [721,14,778,80,698], + 0x1D4BB: [735,280,797,80,717], + 0x1D4BD: [735,14,748,80,668], + 0x1D4BE: [671,14,466,80,386], + 0x1D4BF: [671,308,770,80,690], + 0x1D4C0: [735,14,720,80,640], + 0x1D4C1: [735,14,644,80,564], + 0x1D4C2: [413,14,1034,80,954], + 0x1D4C3: [410,14,750,80,670], + 0x1D4C5: [410,280,873,80,793], + 0x1D4C6: [413,280,707,80,627], + 0x1D4C7: [410,0,590,80,510], + 0x1D4C8: [506,14,500,80,420], + 0x1D4C9: [606,14,479,80,399], + 0x1D4CA: [406,14,721,80,641], + 0x1D4CB: [410,14,642,80,562], + 0x1D4CC: [409,14,892,80,812], + 0x1D4CD: [410,14,645,80,565], + 0x1D4CE: [406,308,754,80,674], + 0x1D4CF: [413,14,663,80,583], + 0x1D4D0: [703,14,1265,80,1185], + 0x1D4D1: [705,14,1099,80,1019], + 0x1D4D2: [703,14,925,80,845], + 0x1D4D3: [703,14,984,80,904], + 0x1D4D4: [703,14,848,80,768], + 0x1D4D5: [713,14,1092,80,1012], + 0x1D4D6: [703,14,920,80,840], + 0x1D4D7: [719,14,1220,80,1140], + 0x1D4D8: [707,14,854,80,774], + 0x1D4D9: [701,253,912,80,832], + 0x1D4DA: [709,14,1290,80,1210], + 0x1D4DB: [730,14,1062,80,982], + 0x1D4DC: [703,15,1463,80,1383], + 0x1D4DD: [718,26,1378,80,1298], + 0x1D4DE: [703,17,899,80,819], + 0x1D4DF: [706,14,1018,80,938], + 0x1D4E0: [703,152,899,80,819], + 0x1D4E1: [711,14,1196,80,1116], + 0x1D4E2: [703,15,1096,80,1016], + 0x1D4E3: [713,14,1112,80,1032], + 0x1D4E4: [703,14,1162,80,1082], + 0x1D4E5: [701,16,1240,80,1160], + 0x1D4E6: [701,16,1556,80,1476], + 0x1D4E7: [703,14,1090,80,1010], + 0x1D4E8: [702,263,1130,80,1050], + 0x1D4E9: [703,14,1093,80,1013], + 0x1D4EA: [425,14,762,80,682], + 0x1D4EB: [735,14,696,80,616], + 0x1D4EC: [425,14,574,80,494], + 0x1D4ED: [720,14,851,80,771], + 0x1D4EE: [425,14,581,80,501], + 0x1D4EF: [735,280,884,80,804], + 0x1D4F0: [425,309,817,80,737], + 0x1D4F1: [735,14,803,80,723], + 0x1D4F2: [701,14,501,80,421], + 0x1D4F3: [701,291,811,80,731], + 0x1D4F4: [735,14,800,80,720], + 0x1D4F5: [735,14,779,80,699], + 0x1D4F6: [425,14,1088,80,1008], + 0x1D4F7: [425,14,809,80,729], + 0x1D4F8: [425,14,677,80,597], + 0x1D4F9: [425,280,956,80,876], + 0x1D4FA: [425,280,751,80,671], + 0x1D4FB: [426,0,699,80,619], + 0x1D4FC: [521,14,537,80,457], + 0x1D4FD: [615,14,554,80,474], + 0x1D4FE: [411,14,780,80,700], + 0x1D4FF: [411,14,702,80,622], + 0x1D500: [411,14,951,80,871], + 0x1D501: [425,14,741,80,661], + 0x1D502: [411,291,812,80,732], + 0x1D503: [425,14,716,80,636] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Script"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Shapes/Regular/Main.js new file mode 100644 index 0000000..084200f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Shapes/Regular/Main.js @@ -0,0 +1,70 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'GyreTermesMathJax_Shapes', + testString: '\u00A0\u2422\u2423\u2500\u2502\u251C\u2524\u252C\u2534\u253C\u2581\u2588\u2591\u2592\u2593', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2422: [683,10,500,3,468], + 0x2423: [160,106,500,40,460], + 0x2500: [276,-224,500,0,500], + 0x2502: [650,150,500,224,276], + 0x251C: [650,150,500,224,500], + 0x2524: [650,150,500,0,276], + 0x252C: [276,150,500,0,500], + 0x2534: [650,-224,500,0,500], + 0x253C: [650,150,500,0,500], + 0x2581: [100,0,800,0,800], + 0x2588: [800,0,800,0,800], + 0x2591: [800,0,800,0,800], + 0x2592: [800,0,800,0,800], + 0x2593: [800,0,800,0,800], + 0x25AA: [400,-100,460,80,380], + 0x25AB: [400,-100,460,80,380], + 0x25AC: [375,-125,660,80,580], + 0x25AD: [375,-125,660,80,580], + 0x25B7: [601,101,768,80,688], + 0x25C1: [601,101,768,80,688], + 0x25CB: [568,68,796,80,716], + 0x25CF: [568,68,796,80,716], + 0x25E6: [400,-100,460,80,380], + 0x2664: [668,0,796,80,716], + 0x2665: [668,0,760,80,680], + 0x2666: [670,0,782,80,702], + 0x2667: [668,0,822,80,742], + 0x266A: [662,14,600,66,556], + 0x26AD: [475,-25,500,-117,617], + 0x26AE: [700,200,500,-171,671], + 0x2B04: [470,-30,1091,80,1011], + 0x2B05: [470,-30,1030,80,950], + 0x2B06: [690,180,600,80,520], + 0x2B07: [680,190,600,80,520], + 0x2B0C: [470,-30,1040,80,960], + 0x2B0D: [690,190,600,80,520], + 0x2B1A: [702,202,1008,52,956], + 0x2B31: [830,330,850,80,770], + 0x2B33: [430,-70,1170,80,1090] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Shapes"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Shapes/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size1/Regular/Main.js new file mode 100644 index 0000000..b714155 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size1/Regular/Main.js @@ -0,0 +1,207 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'GyreTermesMathJax_Size1', + testString: '\u00A0\u0302\u0303\u0305\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u0332\u0333\u033F', + 0x20: [0,0,250,0,0], + 0x28: [738,238,426,124,344], + 0x29: [738,238,426,82,302], + 0x2F: [774,274,549,80,469], + 0x5B: [749,249,403,124,321], + 0x5C: [774,274,549,80,469], + 0x5D: [749,249,403,82,279], + 0x7B: [740,240,413,82,331], + 0x7C: [730,230,206,80,126], + 0x7D: [740,240,413,82,331], + 0xA0: [0,0,250,0,0], + 0x302: [697,-537,608,0,608], + 0x303: [688,-532,601,0,601], + 0x305: [632,-588,500,0,500], + 0x306: [694,-543,620,0,620], + 0x30C: [693,-533,608,0,608], + 0x311: [706,-554,620,0,620], + 0x32C: [-70,230,608,0,608], + 0x32D: [-80,240,608,0,608], + 0x32E: [-70,222,620,0,620], + 0x32F: [-88,240,620,0,620], + 0x330: [-88,245,601,0,601], + 0x332: [-70,114,500,0,500], + 0x333: [-70,228,500,0,500], + 0x33F: [746,-588,500,0,500], + 0x2016: [730,230,352,80,272], + 0x2044: [774,274,549,80,469], + 0x20D0: [710,-600,660,80,580], + 0x20D1: [710,-600,660,80,580], + 0x20D6: [710,-534,670,80,590], + 0x20D7: [710,-534,670,80,590], + 0x20E1: [710,-534,742,80,662], + 0x20E9: [728,-548,750,0,750], + 0x20EC: [-150,260,660,80,580], + 0x20ED: [-150,260,660,80,580], + 0x20EE: [-84,260,670,80,590], + 0x20EF: [-84,260,670,80,590], + 0x2140: [930,430,1152,80,1071], + 0x2190: [430,-70,1170,80,1090], + 0x2191: [760,250,520,80,440], + 0x2192: [430,-70,1170,80,1090], + 0x2193: [750,260,520,80,440], + 0x2194: [430,-70,1360,80,1280], + 0x2195: [850,350,520,80,440], + 0x2196: [611,122,893,80,813], + 0x2197: [611,122,893,80,813], + 0x2198: [622,111,893,80,813], + 0x2199: [622,111,893,80,813], + 0x219A: [430,-70,1170,80,1090], + 0x219B: [430,-70,1170,80,1090], + 0x219E: [430,-70,1350,80,1270], + 0x219F: [850,340,520,80,440], + 0x21A0: [430,-70,1350,80,1270], + 0x21A1: [840,350,520,80,440], + 0x21A2: [430,-70,1360,80,1280], + 0x21A3: [430,-70,1360,80,1280], + 0x21A4: [430,-70,1170,80,1090], + 0x21A5: [760,250,520,80,440], + 0x21A6: [430,-70,1170,80,1090], + 0x21A7: [750,260,520,80,440], + 0x21A9: [508,-70,1196,80,1116], + 0x21AA: [508,-70,1196,80,1116], + 0x21AB: [508,-18,1196,80,1116], + 0x21AC: [508,-18,1196,80,1116], + 0x21AD: [430,-70,1360,80,1280], + 0x21AE: [430,-70,1360,80,1280], + 0x21B0: [694,194,668,80,588], + 0x21B1: [694,194,668,80,588], + 0x21B2: [694,194,668,80,588], + 0x21B3: [694,194,668,80,588], + 0x21B6: [576,-241,1039,80,959], + 0x21B7: [576,-241,1039,80,959], + 0x21BC: [430,-224,1160,80,1080], + 0x21BD: [276,-70,1160,80,1080], + 0x21BE: [750,250,366,80,286], + 0x21BF: [750,250,366,80,286], + 0x21C0: [430,-224,1160,80,1080], + 0x21C1: [276,-70,1160,80,1080], + 0x21C2: [750,250,366,80,286], + 0x21C3: [750,250,366,80,286], + 0x21C4: [630,130,1180,80,1100], + 0x21C5: [760,260,920,80,840], + 0x21C6: [630,130,1180,80,1100], + 0x21C7: [630,130,1170,80,1090], + 0x21C8: [760,250,920,80,840], + 0x21C9: [630,130,1170,80,1090], + 0x21CA: [750,260,920,80,840], + 0x21CB: [526,26,1160,80,1080], + 0x21CC: [526,26,1160,80,1080], + 0x21CD: [500,0,1170,80,1090], + 0x21CE: [500,0,1360,80,1280], + 0x21CF: [500,0,1170,80,1090], + 0x21D0: [470,-30,1170,80,1090], + 0x21D1: [760,250,600,80,520], + 0x21D2: [470,-30,1170,80,1090], + 0x21D3: [750,260,600,80,520], + 0x21D4: [470,-30,1360,80,1280], + 0x21D5: [850,350,600,80,520], + 0x21D6: [611,176,946,80,866], + 0x21D7: [611,176,946,80,866], + 0x21D8: [676,111,946,80,866], + 0x21D9: [676,111,946,80,866], + 0x21DA: [572,72,1350,80,1270], + 0x21DB: [572,72,1350,80,1270], + 0x21DC: [430,-70,1170,80,1090], + 0x21DD: [430,-70,1170,80,1090], + 0x21E6: [470,-30,1393,80,1313], + 0x21E7: [875,358,600,80,520], + 0x21E8: [470,-30,1393,80,1313], + 0x21E9: [858,375,600,80,520], + 0x21F3: [875,375,600,80,520], + 0x21F5: [760,260,920,80,840], + 0x21F6: [830,330,1170,80,1090], + 0x220F: [937,437,1204,80,1124], + 0x2210: [937,437,1204,80,1124], + 0x2211: [937,437,1197,80,1117], + 0x221A: [808,282,607,120,633], + 0x2223: [730,230,206,80,126], + 0x2225: [730,230,352,80,272], + 0x222B: [1263,763,750,80,670], + 0x222C: [1263,763,1188,80,1108], + 0x222D: [1263,763,1626,80,1546], + 0x222E: [1263,763,804,80,724], + 0x222F: [1263,763,1242,80,1162], + 0x2230: [1263,763,1680,80,1600], + 0x2231: [1263,763,818,80,778], + 0x2232: [1263,763,797,80,757], + 0x2233: [1263,763,780,80,740], + 0x22A2: [650,150,1160,80,1080], + 0x22A3: [650,150,1160,80,1080], + 0x22A4: [650,150,960,80,880], + 0x22A5: [650,150,960,80,880], + 0x22C0: [839,326,1040,80,960], + 0x22C1: [826,339,1040,80,960], + 0x22C2: [844,326,1040,80,960], + 0x22C3: [826,344,1040,80,960], + 0x2308: [749,230,403,124,321], + 0x2309: [749,230,403,82,279], + 0x230A: [730,249,403,124,321], + 0x230B: [730,249,403,82,279], + 0x2329: [780,280,381,82,299], + 0x232A: [780,280,381,82,299], + 0x23B4: [728,-548,750,0,750], + 0x23B5: [-98,278,750,0,750], + 0x23DC: [713,-571,1014,0,1014], + 0x23DD: [-121,263,1014,0,1014], + 0x23DE: [763,-534,1019,0,1019], + 0x23DF: [-84,312,1019,0,1019], + 0x23E0: [734,-548,1066,0,1066], + 0x23E1: [-98,284,1066,0,1066], + 0x27A1: [470,-30,1350,80,1270], + 0x27E6: [749,249,413,124,331], + 0x27E7: [749,249,413,82,289], + 0x27E8: [780,280,381,82,299], + 0x27E9: [780,280,381,82,299], + 0x27EA: [780,280,579,82,497], + 0x27EB: [780,280,579,82,497], + 0x27EE: [737,237,334,124,252], + 0x27EF: [737,237,334,82,210], + 0x2906: [470,-30,1350,80,1270], + 0x2907: [470,-30,1350,80,1270], + 0x2A00: [816,316,1292,80,1212], + 0x2A01: [816,316,1292,80,1212], + 0x2A02: [816,316,1292,80,1212], + 0x2A03: [826,344,1040,80,960], + 0x2A04: [826,344,1040,80,960], + 0x2A05: [841,311,1040,80,960], + 0x2A06: [811,341,1040,80,960], + 0x2A09: [703,203,1065,80,985], + 0x2A0C: [1263,763,2064,80,1984], + 0x2A11: [1263,763,818,80,778], + 0x2B04: [470,-30,1411,80,1331], + 0x2B05: [470,-30,1350,80,1270], + 0x2B06: [850,340,600,80,520], + 0x2B07: [840,350,600,80,520], + 0x2B0C: [470,-30,1360,80,1280], + 0x2B0D: [850,350,600,80,520], + 0x2B31: [830,330,1170,80,1090] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Size1"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size1/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size2/Regular/Main.js new file mode 100644 index 0000000..56b5737 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size2/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'GyreTermesMathJax_Size2', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [834,334,457,127,372], + 0x29: [834,334,457,85,330], + 0x2F: [936,436,658,80,578], + 0x5B: [845,345,418,127,333], + 0x5C: [936,436,658,80,578], + 0x5D: [845,345,418,85,291], + 0x7B: [836,336,435,85,350], + 0x7C: [826,326,209,80,129], + 0x7D: [836,336,435,85,350], + 0xA0: [0,0,250,0,0], + 0x302: [698,-537,727,0,727], + 0x303: [688,-532,720,0,720], + 0x306: [694,-542,740,0,740], + 0x30C: [693,-532,727,0,727], + 0x311: [707,-554,740,0,740], + 0x32C: [-70,231,727,0,727], + 0x32D: [-80,241,727,0,727], + 0x32E: [-70,223,740,0,740], + 0x32F: [-88,241,740,0,740], + 0x330: [-88,244,720,0,720], + 0x2016: [826,326,358,80,278], + 0x2044: [936,436,658,80,578], + 0x20E9: [732,-548,1125,0,1125], + 0x221A: [1000,474,621,120,647], + 0x2223: [826,326,209,80,129], + 0x2225: [826,326,358,80,278], + 0x2308: [845,326,418,127,333], + 0x2309: [845,326,418,85,291], + 0x230A: [826,345,418,127,333], + 0x230B: [826,345,418,85,291], + 0x2329: [941,441,409,85,324], + 0x232A: [941,441,409,85,324], + 0x23B4: [732,-548,1125,0,1125], + 0x23B5: [-98,282,1125,0,1125], + 0x23DC: [732,-541,1514,0,1514], + 0x23DD: [-91,282,1514,0,1514], + 0x23DE: [766,-533,1519,0,1519], + 0x23DF: [-83,316,1519,0,1519], + 0x23E0: [736,-547,1568,0,1568], + 0x23E1: [-97,286,1568,0,1568], + 0x27E6: [845,345,425,127,340], + 0x27E7: [845,345,425,85,298], + 0x27E8: [941,441,409,85,324], + 0x27E9: [941,441,409,85,324], + 0x27EA: [941,441,620,85,535], + 0x27EB: [941,441,620,85,535], + 0x27EE: [833,333,347,127,262], + 0x27EF: [833,333,347,85,220] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Size2"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size2/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size3/Regular/Main.js new file mode 100644 index 0000000..d0b5b6a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size3/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'GyreTermesMathJax_Size3', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [949,449,491,131,404], + 0x29: [949,449,491,87,360], + 0x2F: [1149,649,798,80,718], + 0x5B: [961,461,434,131,347], + 0x5C: [1149,649,798,80,718], + 0x5D: [961,461,434,87,303], + 0x7B: [951,451,459,87,372], + 0x7C: [941,441,211,80,131], + 0x7D: [951,451,459,87,372], + 0xA0: [0,0,250,0,0], + 0x302: [698,-536,870,0,870], + 0x303: [688,-532,863,0,863], + 0x306: [694,-541,885,0,885], + 0x30C: [694,-532,870,0,870], + 0x311: [707,-554,885,0,885], + 0x32C: [-70,232,870,0,870], + 0x32D: [-80,242,870,0,870], + 0x32E: [-70,223,885,0,885], + 0x32F: [-88,241,885,0,885], + 0x330: [-88,244,863,0,863], + 0x2016: [941,441,362,80,282], + 0x2044: [1149,649,798,80,718], + 0x20E9: [736,-548,1500,0,1500], + 0x221A: [1192,666,634,120,660], + 0x2223: [941,441,211,80,131], + 0x2225: [941,441,362,80,282], + 0x2308: [961,441,434,131,347], + 0x2309: [961,441,434,87,303], + 0x230A: [941,461,434,131,347], + 0x230B: [941,461,434,87,303], + 0x2329: [1153,653,439,87,352], + 0x232A: [1153,653,439,87,352], + 0x23B4: [736,-548,1500,0,1500], + 0x23B5: [-98,286,1500,0,1500], + 0x23DC: [736,-541,2014,0,2014], + 0x23DD: [-91,286,2014,0,2014], + 0x23DE: [771,-532,2019,0,2019], + 0x23DF: [-82,320,2019,0,2019], + 0x23E0: [738,-545,2072,0,2072], + 0x23E1: [-95,288,2072,0,2072], + 0x27E6: [961,461,442,131,355], + 0x27E7: [961,461,442,87,311], + 0x27E8: [1153,653,439,87,352], + 0x27E9: [1153,653,439,87,352], + 0x27EA: [1153,653,665,87,578], + 0x27EB: [1153,653,665,87,578], + 0x27EE: [948,448,363,131,276], + 0x27EF: [948,448,363,87,232] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Size3"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size3/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size4/Regular/Main.js new file mode 100644 index 0000000..97f5275 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size4/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'GyreTermesMathJax_Size4', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [1087,587,530,135,440], + 0x29: [1087,587,530,90,395], + 0x2F: [1428,928,982,80,902], + 0x5B: [1099,599,453,135,363], + 0x5C: [1428,928,982,80,902], + 0x5D: [1099,599,453,90,318], + 0x7B: [1089,589,487,90,397], + 0x7C: [1079,579,213,80,133], + 0x7D: [1089,589,487,90,397], + 0xA0: [0,0,250,0,0], + 0x302: [699,-536,1041,0,1041], + 0x303: [687,-533,1037,0,1037], + 0x306: [695,-540,1058,0,1058], + 0x30C: [694,-531,1041,0,1041], + 0x311: [708,-553,1058,0,1058], + 0x32C: [-70,233,1041,0,1041], + 0x32D: [-80,243,1041,0,1041], + 0x32E: [-70,225,1058,0,1058], + 0x32F: [-88,243,1058,0,1058], + 0x330: [-88,243,1037,0,1037], + 0x2016: [1079,579,366,80,286], + 0x2044: [1428,928,982,80,902], + 0x20E9: [742,-548,1875,0,1875], + 0x221A: [1384,858,647,120,673], + 0x2223: [1079,579,213,80,133], + 0x2225: [1079,579,366,80,286], + 0x2308: [1099,579,453,135,363], + 0x2309: [1099,579,453,90,318], + 0x230A: [1079,599,453,135,363], + 0x230B: [1079,599,453,90,318], + 0x2329: [1432,932,474,90,384], + 0x232A: [1432,932,474,90,384], + 0x23B4: [742,-548,1875,0,1875], + 0x23B5: [-98,292,1875,0,1875], + 0x23DC: [742,-541,2514,0,2514], + 0x23DD: [-91,292,2514,0,2514], + 0x23DE: [777,-530,2519,0,2519], + 0x23DF: [-80,326,2519,0,2519], + 0x23E0: [741,-543,2576,0,2576], + 0x23E1: [-93,291,2576,0,2576], + 0x27E6: [1099,599,457,135,367], + 0x27E7: [1099,599,457,90,322], + 0x27E8: [1432,932,474,90,384], + 0x27E9: [1432,932,474,90,384], + 0x27EA: [1432,932,714,90,624], + 0x27EB: [1432,932,714,90,624], + 0x27EE: [1086,586,382,135,292], + 0x27EF: [1086,586,382,90,247] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Size4"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size4/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size5/Regular/Main.js new file mode 100644 index 0000000..19c3052 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size5/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'GyreTermesMathJax_Size5', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [1253,753,575,139,482], + 0x29: [1253,753,575,93,436], + 0x2F: [1793,1293,1222,80,1142], + 0x5B: [1266,766,472,139,379], + 0x5C: [1793,1293,1222,80,1142], + 0x5D: [1266,766,472,93,333], + 0x7B: [1255,755,517,93,424], + 0x7C: [1245,745,216,80,136], + 0x7D: [1255,755,517,93,424], + 0xA0: [0,0,250,0,0], + 0x302: [699,-536,1249,0,1249], + 0x303: [687,-533,1241,0,1241], + 0x306: [695,-540,1266,0,1266], + 0x30C: [694,-531,1249,0,1249], + 0x311: [709,-553,1266,0,1266], + 0x32C: [-70,233,1249,0,1249], + 0x32D: [-80,243,1249,0,1249], + 0x32E: [-70,225,1266,0,1266], + 0x32F: [-88,243,1266,0,1266], + 0x330: [-88,242,1241,0,1241], + 0x2016: [1245,745,372,80,292], + 0x2044: [1793,1293,1222,80,1142], + 0x20E9: [750,-548,2250,0,2250], + 0x221A: [1576,1050,661,120,687], + 0x2223: [1245,745,216,80,136], + 0x2225: [1245,745,372,80,292], + 0x2308: [1266,745,472,139,379], + 0x2309: [1266,745,472,93,333], + 0x230A: [1245,766,472,139,379], + 0x230B: [1245,766,472,93,333], + 0x2329: [1796,1296,510,93,417], + 0x232A: [1796,1296,510,93,417], + 0x23B4: [750,-548,2250,0,2250], + 0x23B5: [-98,300,2250,0,2250], + 0x23DC: [750,-541,3014,0,3014], + 0x23DD: [-91,300,3014,0,3014], + 0x23DE: [784,-527,3019,0,3019], + 0x23DF: [-77,333,3019,0,3019], + 0x23E0: [745,-541,3080,0,3080], + 0x23E1: [-91,295,3080,0,3080], + 0x27E6: [1266,766,475,139,382], + 0x27E7: [1266,766,475,93,336], + 0x27E8: [1796,1296,510,93,417], + 0x27E9: [1796,1296,510,93,417], + 0x27EA: [1796,1296,765,93,672], + 0x27EB: [1796,1296,765,93,672], + 0x27EE: [1252,752,399,139,306], + 0x27EF: [1252,752,399,93,260] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Size5"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size5/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size6/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size6/Regular/Main.js new file mode 100644 index 0000000..b42bddc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Size6/Regular/Main.js @@ -0,0 +1,395 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Size6/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Size6'] = { + directory: 'Size6/Regular', + family: 'GyreTermesMathJax_Size6', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,250,0,0], + 0x28: [1452,952,624,143,528], + 0x29: [1452,952,624,96,481], + 0x2F: [2272,1772,1536,80,1456], + 0x5B: [1466,966,491,143,395], + 0x5C: [2272,1772,1536,80,1456], + 0x5D: [1466,966,491,96,348], + 0x7B: [1454,954,547,96,451], + 0x7C: [1444,944,219,80,139], + 0x7D: [1454,954,547,96,451], + 0xA0: [0,0,250,0,0], + 0x302: [700,-535,1496,0,1496], + 0x303: [689,-531,1491,0,1491], + 0x306: [695,-539,1515,0,1515], + 0x30C: [695,-530,1496,0,1496], + 0x311: [710,-553,1515,0,1515], + 0x32C: [-70,235,1496,0,1496], + 0x32D: [-80,245,1496,0,1496], + 0x32E: [-70,226,1515,0,1515], + 0x32F: [-88,244,1515,0,1515], + 0x330: [-88,246,1491,0,1491], + 0x2016: [1444,944,378,80,298], + 0x2044: [2272,1772,1536,80,1456], + 0x20E9: [758,-548,2625,0,2625], + 0x221A: [1768,1242,674,120,700], + 0x2223: [1444,944,219,80,139], + 0x2225: [1444,944,378,80,298], + 0x2308: [1466,944,491,143,395], + 0x2309: [1466,944,491,96,348], + 0x230A: [1444,966,491,143,395], + 0x230B: [1444,966,491,96,348], + 0x2329: [2274,1774,554,96,458], + 0x232A: [2274,1774,554,96,458], + 0x23B4: [758,-548,2625,0,2625], + 0x23B5: [-98,308,2625,0,2625], + 0x23DC: [758,-541,3514,0,3514], + 0x23DD: [-91,308,3514,0,3514], + 0x23DE: [792,-525,3519,0,3519], + 0x23DF: [-75,341,3519,0,3519], + 0x23E0: [748,-538,3584,0,3584], + 0x23E1: [-88,298,3584,0,3584], + 0x27E6: [1466,966,495,143,399], + 0x27E7: [1466,966,495,96,352], + 0x27E8: [2274,1774,554,96,458], + 0x27E9: [2274,1774,554,96,458], + 0x27EA: [2274,1774,825,96,729], + 0x27EB: [2274,1774,825,96,729], + 0x27EE: [1451,951,418,143,322], + 0x27EF: [1451,951,418,96,275], + 0xE000: [372,-128,167,0,167], + 0xE001: [372,-128,166,0,166], + 0xE002: [372,-128,167,0,167], + 0xE003: [596,0,547,230,314], + 0xE004: [796,0,219,80,139], + 0xE005: [796,0,219,80,139], + 0xE006: [796,0,219,80,139], + 0xE007: [596,0,547,233,317], + 0xE008: [710,-600,188,0,188], + 0xE009: [644,-600,125,0,125], + 0xE00A: [644,-600,187,0,187], + 0xE00B: [644,-600,187,0,187], + 0xE00C: [644,-600,125,0,125], + 0xE00D: [710,-600,188,0,188], + 0xE00E: [710,-534,191,0,191], + 0xE00F: [644,-600,128,0,128], + 0xE010: [644,-600,191,0,191], + 0xE011: [644,-600,191,0,191], + 0xE012: [644,-600,128,0,128], + 0xE013: [710,-534,191,0,191], + 0xE014: [710,-534,218,0,218], + 0xE015: [644,-600,146,0,146], + 0xE016: [710,-534,218,0,218], + 0xE017: [-150,194,188,0,188], + 0xE018: [-150,194,125,0,125], + 0xE019: [-150,260,187,0,187], + 0xE01A: [-150,260,187,0,187], + 0xE01B: [-150,194,125,0,125], + 0xE01C: [-150,194,188,0,188], + 0xE01D: [-84,260,191,0,191], + 0xE01E: [-150,194,128,0,128], + 0xE01F: [-150,194,191,0,191], + 0xE020: [-150,194,191,0,191], + 0xE021: [-150,194,128,0,128], + 0xE022: [-84,260,191,0,191], + 0xE023: [430,-70,379,0,379], + 0xE024: [276,-224,252,0,252], + 0xE025: [276,-224,379,0,379], + 0xE026: [276,-224,379,0,379], + 0xE027: [276,-224,252,0,252], + 0xE028: [430,-70,379,0,379], + 0xE029: [379,0,520,234,286], + 0xE02A: [252,0,520,234,286], + 0xE02B: [379,0,520,80,440], + 0xE02C: [379,0,520,80,440], + 0xE02D: [252,0,520,234,286], + 0xE02E: [379,0,520,234,286], + 0xE02F: [430,-70,289,0,289], + 0xE030: [276,-224,72,0,72], + 0xE031: [430,-70,288,0,288], + 0xE032: [276,-224,289,0,289], + 0xE033: [276,-224,289,0,289], + 0xE034: [276,-224,72,0,72], + 0xE035: [430,-70,288,0,288], + 0xE036: [430,-70,289,0,289], + 0xE037: [430,-70,450,0,450], + 0xE038: [276,-224,300,0,300], + 0xE039: [430,-70,450,0,450], + 0xE03A: [450,0,520,80,440], + 0xE03B: [300,0,520,234,286], + 0xE03C: [450,0,520,80,440], + 0xE03D: [430,-70,343,0,343], + 0xE03E: [276,-224,86,0,86], + 0xE03F: [430,-70,342,0,342], + 0xE040: [430,-70,343,0,343], + 0xE041: [430,-70,446,0,446], + 0xE042: [276,-224,298,0,298], + 0xE043: [276,-224,446,0,446], + 0xE044: [276,-224,446,0,446], + 0xE045: [276,-224,298,0,298], + 0xE046: [430,-70,446,0,446], + 0xE047: [446,0,520,234,286], + 0xE048: [298,0,520,234,286], + 0xE049: [446,0,520,80,440], + 0xE04A: [446,0,520,80,440], + 0xE04B: [298,0,520,234,286], + 0xE04C: [446,0,520,234,286], + 0xE04D: [430,-70,450,0,450], + 0xE04E: [276,-224,300,0,300], + 0xE04F: [430,-70,450,0,450], + 0xE050: [430,-70,450,0,450], + 0xE051: [276,-224,300,0,300], + 0xE052: [430,-70,450,0,450], + 0xE053: [430,-70,379,0,379], + 0xE054: [276,-224,252,0,252], + 0xE055: [430,-70,379,0,379], + 0xE056: [430,-70,379,0,379], + 0xE057: [276,-224,252,0,252], + 0xE058: [430,-70,379,0,379], + 0xE059: [379,0,520,80,440], + 0xE05A: [252,0,520,234,286], + 0xE05B: [379,0,520,80,440], + 0xE05C: [379,0,520,80,440], + 0xE05D: [252,0,520,234,286], + 0xE05E: [379,0,520,80,440], + 0xE05F: [508,-224,389,0,389], + 0xE060: [276,-224,259,0,259], + 0xE061: [430,-70,388,0,388], + 0xE062: [430,-70,388,0,388], + 0xE063: [276,-224,259,0,259], + 0xE064: [508,-224,389,0,389], + 0xE065: [508,-18,389,0,389], + 0xE066: [276,-224,259,0,259], + 0xE067: [430,-70,388,0,388], + 0xE068: [430,-70,388,0,388], + 0xE069: [276,-224,259,0,259], + 0xE06A: [508,-18,389,0,389], + 0xE06B: [430,-224,375,0,375], + 0xE06C: [276,-224,250,0,250], + 0xE06D: [276,-224,375,0,375], + 0xE06E: [276,-224,375,0,375], + 0xE06F: [276,-224,250,0,250], + 0xE070: [430,-224,375,0,375], + 0xE071: [276,-70,375,0,375], + 0xE072: [276,-224,250,0,250], + 0xE073: [276,-224,375,0,375], + 0xE074: [276,-224,375,0,375], + 0xE075: [276,-224,250,0,250], + 0xE076: [276,-70,375,0,375], + 0xE077: [375,0,366,80,132], + 0xE078: [250,0,366,80,132], + 0xE079: [375,0,366,80,286], + 0xE07A: [375,0,366,80,286], + 0xE07B: [250,0,366,80,132], + 0xE07C: [375,0,366,80,132], + 0xE07D: [375,0,366,234,286], + 0xE07E: [250,0,366,234,286], + 0xE07F: [375,0,366,80,286], + 0xE080: [375,0,366,80,286], + 0xE081: [250,0,366,234,286], + 0xE082: [375,0,366,234,286], + 0xE083: [476,130,383,0,383], + 0xE084: [476,-24,255,0,255], + 0xE085: [630,-24,382,0,382], + 0xE086: [630,-24,383,0,383], + 0xE087: [476,-24,255,0,255], + 0xE088: [476,130,382,0,382], + 0xE089: [383,0,920,234,840], + 0xE08A: [255,0,920,234,686], + 0xE08B: [382,0,920,80,686], + 0xE08C: [382,0,920,80,686], + 0xE08D: [255,0,920,234,686], + 0xE08E: [383,0,920,234,840], + 0xE08F: [630,130,379,0,379], + 0xE090: [476,-24,252,0,252], + 0xE091: [476,-24,379,0,379], + 0xE092: [476,-24,379,0,379], + 0xE093: [476,-24,252,0,252], + 0xE094: [630,130,379,0,379], + 0xE095: [379,0,920,234,686], + 0xE096: [252,0,920,234,686], + 0xE097: [379,0,920,80,840], + 0xE098: [379,0,920,80,840], + 0xE099: [252,0,920,234,686], + 0xE09A: [379,0,920,234,686], + 0xE09B: [676,176,379,0,379], + 0xE09C: [676,176,252,0,252], + 0xE09D: [830,330,379,0,379], + 0xE09E: [830,330,379,0,379], + 0xE09F: [676,176,252,0,252], + 0xE0A0: [676,176,379,0,379], + 0xE0A1: [526,-128,375,0,375], + 0xE0A2: [372,-128,250,0,250], + 0xE0A3: [372,26,375,0,375], + 0xE0A4: [372,26,375,0,375], + 0xE0A5: [372,-128,250,0,250], + 0xE0A6: [526,-128,375,0,375], + 0xE0A7: [470,-30,379,0,379], + 0xE0A8: [352,-148,252,0,252], + 0xE0A9: [352,-148,379,0,379], + 0xE0AA: [352,-148,379,0,379], + 0xE0AB: [352,-148,252,0,252], + 0xE0AC: [470,-30,379,0,379], + 0xE0AD: [379,0,600,198,402], + 0xE0AE: [252,0,600,198,402], + 0xE0AF: [379,0,600,80,520], + 0xE0B0: [379,0,600,80,520], + 0xE0B1: [252,0,600,198,402], + 0xE0B2: [379,0,600,198,402], + 0xE0B3: [470,-30,450,0,450], + 0xE0B4: [352,-148,300,0,300], + 0xE0B5: [470,-30,450,0,450], + 0xE0B6: [450,0,600,80,520], + 0xE0B7: [300,0,600,198,402], + 0xE0B8: [450,0,600,80,520], + 0xE0B9: [470,-30,289,0,289], + 0xE0BA: [352,-148,72,0,72], + 0xE0BB: [500,0,288,0,288], + 0xE0BC: [352,-148,289,0,289], + 0xE0BD: [352,-148,289,0,289], + 0xE0BE: [352,-148,72,0,72], + 0xE0BF: [500,0,288,0,288], + 0xE0C0: [470,-30,289,0,289], + 0xE0C1: [470,-30,343,0,343], + 0xE0C2: [352,-148,86,0,86], + 0xE0C3: [500,0,342,0,342], + 0xE0C4: [470,-30,343,0,343], + 0xE0C5: [470,-30,446,0,446], + 0xE0C6: [352,-148,298,0,298], + 0xE0C7: [470,-30,446,0,446], + 0xE0C8: [470,-30,446,0,446], + 0xE0C9: [352,-148,298,0,298], + 0xE0CA: [470,-30,446,0,446], + 0xE0CB: [572,72,446,0,446], + 0xE0CC: [428,-72,298,0,298], + 0xE0CD: [428,-72,446,0,446], + 0xE0CE: [428,-72,446,0,446], + 0xE0CF: [428,-72,298,0,298], + 0xE0D0: [572,72,446,0,446], + 0xE0D1: [470,-30,463,0,463], + 0xE0D2: [344,-156,308,0,308], + 0xE0D3: [344,-156,462,0,462], + 0xE0D4: [344,-156,463,0,463], + 0xE0D5: [344,-156,308,0,308], + 0xE0D6: [470,-30,462,0,462], + 0xE0D7: [463,0,600,206,394], + 0xE0D8: [308,0,600,206,394], + 0xE0D9: [462,0,600,80,520], + 0xE0DA: [462,0,600,80,520], + 0xE0DB: [308,0,600,206,394], + 0xE0DC: [463,0,600,206,394], + 0xE0DD: [469,0,600,80,520], + 0xE0DE: [312,0,600,206,394], + 0xE0DF: [469,0,600,80,520], + 0xE0E0: [470,-30,469,0,469], + 0xE0E1: [344,-156,313,0,313], + 0xE0E2: [470,-30,469,0,469], + 0xE0E3: [470,-30,446,0,446], + 0xE0E4: [326,-174,298,0,298], + 0xE0E5: [326,-174,446,0,446], + 0xE0E6: [326,-174,446,0,446], + 0xE0E7: [326,-174,298,0,298], + 0xE0E8: [470,-30,446,0,446], + 0xE0E9: [446,0,600,224,376], + 0xE0EA: [298,0,600,224,376], + 0xE0EB: [446,0,600,80,520], + 0xE0EC: [446,0,600,80,520], + 0xE0ED: [298,0,600,224,376], + 0xE0EE: [446,0,600,224,376], + 0xE0EF: [470,-30,450,0,450], + 0xE0F0: [326,-174,300,0,300], + 0xE0F1: [470,-30,450,0,450], + 0xE0F2: [450,0,600,80,520], + 0xE0F3: [300,0,600,224,376], + 0xE0F4: [450,0,600,80,520], + 0xE0F5: [-70,114,167,0,167], + 0xE0F6: [-70,114,166,0,166], + 0xE0F7: [-70,114,167,0,167], + 0xE0F8: [-70,228,167,0,167], + 0xE0F9: [-70,228,166,0,166], + 0xE0FA: [-70,228,167,0,167], + 0xE0FB: [632,-588,167,0,167], + 0xE0FC: [632,-588,166,0,166], + 0xE0FD: [632,-588,167,0,167], + 0xE0FE: [746,-588,167,0,167], + 0xE0FF: [746,-588,166,0,166], + 0xE100: [746,-588,167,0,167], + 0xE101: [1201,0,418,143,322], + 0xE102: [794,0,418,143,227], + 0xE103: [1201,0,418,143,322], + 0xE104: [1201,0,418,96,275], + 0xE105: [794,0,418,191,275], + 0xE106: [1201,0,418,96,275], + 0xE107: [811,0,495,143,399], + 0xE108: [810,0,495,143,315], + 0xE109: [811,0,495,143,399], + 0xE10A: [811,0,495,96,352], + 0xE10B: [810,0,495,180,352], + 0xE10C: [811,0,495,96,352], + 0xE10D: [702,-525,880,0,880], + 0xE10E: [702,-618,874,0,874], + 0xE10F: [792,-618,1759,0,1759], + 0xE110: [702,-525,880,0,880], + 0xE111: [-75,252,880,0,880], + 0xE112: [-168,252,874,0,874], + 0xE113: [-168,341,1759,0,1759], + 0xE114: [-75,252,880,0,880], + 0xE115: [758,-541,1757,0,1757], + 0xE116: [758,-674,874,0,874], + 0xE117: [758,-541,1757,0,1757], + 0xE118: [-91,308,1757,0,1757], + 0xE119: [-224,308,874,0,874], + 0xE11A: [-91,308,1757,0,1757], + 0xE11B: [758,-548,1313,0,1313], + 0xE11C: [758,-674,875,0,875], + 0xE11D: [758,-548,1312,0,1312], + 0xE11E: [-98,308,1313,0,1313], + 0xE11F: [-224,308,875,0,875], + 0xE120: [-98,308,1312,0,1312], + 0xE121: [748,-538,1792,0,1792], + 0xE122: [748,-664,1194,0,1194], + 0xE123: [748,-538,1792,0,1792], + 0xE124: [-88,298,1792,0,1792], + 0xE125: [-214,298,1194,0,1194], + 0xE126: [-88,298,1792,0,1792], + 0xE127: [276,-224,167,0,167], + 0xE128: [276,-224,166,0,166], + 0xE129: [276,-224,167,0,167], + 0xE12A: [796,0,378,80,298], + 0xE12B: [796,0,378,80,298], + 0xE12C: [796,0,378,80,298], + 0xE12D: [468,-32,167,0,167], + 0xE12E: [468,-32,166,0,166], + 0xE12F: [468,-32,167,0,167], + 0xE130: [564,64,167,0,167], + 0xE131: [564,64,166,0,166], + 0xE132: [564,64,167,0,167], + 0xE133: [1053,0,674,462,514], + 0xE134: [301,0,674,462,700], + 0xE135: [1161,0,800,334,720], + 0xE136: [1161,0,800,80,466], + 0xE137: [1161,0,1275,334,1195], + 0xE138: [580,0,1275,334,941], + 0xE139: [1161,0,1275,80,941], + 0xE13A: [1161,0,1750,334,1670], + 0xE13B: [580,0,1750,334,1416], + 0xE13C: [1161,0,1750,80,1416] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Size6"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size6/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Symbols/Regular/Main.js new file mode 100644 index 0000000..0173599 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Symbols/Regular/Main.js @@ -0,0 +1,83 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'GyreTermesMathJax_Symbols', + testString: '\u00A0\u2300\u2305\u2306\u2310\u2319\u231C\u231D\u231E\u231F\u2320\u2321\u2329\u232A\u239B', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2300: [513,13,686,80,606], + 0x2305: [450,-50,660,80,580], + 0x2306: [546,46,660,80,580], + 0x2310: [276,0,686,80,606], + 0x2319: [500,-224,686,80,606], + 0x231C: [676,-410,426,80,346], + 0x231D: [676,-410,426,80,346], + 0x231E: [90,176,426,80,346], + 0x231F: [90,176,426,80,346], + 0x2320: [1212,0,776,325,696], + 0x2321: [1194,18,776,80,451], + 0x2329: [656,156,357,80,277], + 0x232A: [656,156,357,80,277], + 0x239B: [1202,0,624,143,528], + 0x239C: [396,0,624,143,236], + 0x239D: [1202,0,624,143,528], + 0x239E: [1202,0,624,96,481], + 0x239F: [396,0,624,387,481], + 0x23A0: [1202,0,624,96,481], + 0x23A1: [1216,0,491,143,395], + 0x23A2: [810,0,491,143,227], + 0x23A3: [1216,0,491,143,395], + 0x23A4: [1216,0,491,96,348], + 0x23A5: [810,0,491,264,348], + 0x23A6: [1216,0,491,96,348], + 0x23A7: [607,0,547,230,451], + 0x23A8: [1194,0,547,96,314], + 0x23A9: [607,0,547,230,451], + 0x23AA: [596,0,547,233,317], + 0x23AB: [607,0,547,96,317], + 0x23AC: [1194,0,547,233,451], + 0x23AD: [607,0,547,96,317], + 0x23AE: [580,0,800,334,466], + 0x23B2: [763,0,1353,80,1202], + 0x23B3: [884,0,1353,80,1273], + 0x23B7: [1656,0,674,120,514], + 0x27C2: [650,0,660,80,580], + 0x27D8: [650,150,960,80,880], + 0x27D9: [650,150,960,80,880], + 0x27DA: [650,150,1164,80,1084], + 0x27DB: [650,150,1164,80,1084], + 0x27DC: [400,-100,810,80,730], + 0x27DD: [650,150,1160,80,1080], + 0x27DE: [650,150,1160,80,1080], + 0x27E0: [555,55,564,80,484], + 0x27E1: [457,-43,574,80,494], + 0x27E2: [457,-43,664,80,584], + 0x27E3: [457,-43,664,80,584], + 0x27E6: [668,168,398,120,318], + 0x27E7: [668,168,398,80,278], + 0x27EA: [656,156,543,80,463], + 0x27EB: [656,156,543,80,463] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Symbols"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Symbols/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Variants/Regular/Main.js new file mode 100644 index 0000000..5e337c4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/Variants/Regular/Main.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['GyreTermesMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'GyreTermesMathJax_Variants', + testString: '\u00A0\u2032\u2033\u2034\u2035\u2036\u2037\u2057', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2032: [596,-150,404,66,338], + 0x2033: [596,-150,644,66,578], + 0x2034: [596,-150,884,66,818], + 0x2035: [596,-150,404,66,338], + 0x2036: [596,-150,644,66,578], + 0x2037: [596,-150,884,66,818], + 0x2057: [596,-150,1124,66,1058] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"GyreTermesMathJax_Variants"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Variants/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata-extra.js new file mode 100644 index 0000000..feb04ff --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata-extra.js @@ -0,0 +1,787 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata-extra.js + * + * Adds extra stretchy characters to the Gyre-Termes fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS) { + var VERSION = "2.3"; + + var DELIMITERS = HTMLCSS.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "GyreTermesMathJax_Alphabets", + ARROWS = "GyreTermesMathJax_Arrows", + DOUBLESTRUCK = "GyreTermesMathJax_DoubleStruck", + FRAKTUR = "GyreTermesMathJax_Fraktur", + LATIN = "GyreTermesMathJax_Latin", + MAIN = "GyreTermesMathJax_Main", + MARKS = "GyreTermesMathJax_Marks", + MISC = "GyreTermesMathJax_Misc", + MONOSPACE = "GyreTermesMathJax_Monospace", + NONUNICODE = "GyreTermesMathJax_NonUnicode", + NORMAL = "GyreTermesMathJax_Normal", + OPERATORS = "GyreTermesMathJax_Operators", + SANSSERIF = "GyreTermesMathJax_SansSerif", + SCRIPT = "GyreTermesMathJax_Script", + SHAPES = "GyreTermesMathJax_Shapes", + SIZE1 = "GyreTermesMathJax_Size1", + SIZE2 = "GyreTermesMathJax_Size2", + SIZE3 = "GyreTermesMathJax_Size3", + SIZE4 = "GyreTermesMathJax_Size4", + SIZE5 = "GyreTermesMathJax_Size5", + SIZE6 = "GyreTermesMathJax_Size6", + SYMBOLS = "GyreTermesMathJax_Symbols", + VARIANTS = "GyreTermesMathJax_Variants"; + + var delim = { + 0x306: + { + dir: H, + HW: [[0.350,MAIN], [0.620,SIZE1], [0.740,SIZE2], [0.885,SIZE3], [1.058,SIZE4], [1.266,SIZE5], [1.515,SIZE6]] + }, + 0x311: + { + dir: H, + HW: [[0.350,MARKS], [0.620,SIZE1], [0.740,SIZE2], [0.885,SIZE3], [1.058,SIZE4], [1.266,SIZE5], [1.515,SIZE6]] + }, + 0x32C: + { + dir: H, + HW: [[0.342,MARKS], [0.608,SIZE1], [0.727,SIZE2], [0.870,SIZE3], [1.041,SIZE4], [1.249,SIZE5], [1.496,SIZE6]] + }, + 0x32D: + { + dir: H, + HW: [[0.342,MARKS], [0.608,SIZE1], [0.727,SIZE2], [0.870,SIZE3], [1.041,SIZE4], [1.249,SIZE5], [1.496,SIZE6]] + }, + 0x32E: + { + dir: H, + HW: [[0.350,MARKS], [0.620,SIZE1], [0.740,SIZE2], [0.885,SIZE3], [1.058,SIZE4], [1.266,SIZE5], [1.515,SIZE6]] + }, + 0x32F: + { + dir: H, + HW: [[0.350,MARKS], [0.620,SIZE1], [0.740,SIZE2], [0.885,SIZE3], [1.058,SIZE4], [1.266,SIZE5], [1.515,SIZE6]] + }, + 0x330: + { + dir: H, + HW: [[0.334,MARKS], [0.601,SIZE1], [0.720,SIZE2], [0.863,SIZE3], [1.037,SIZE4], [1.241,SIZE5], [1.491,SIZE6]] + }, + 0x333: + { + dir: H, + HW: [[0.333,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE0F8,SIZE6], rep:[0xE0F9,SIZE6], right:[0xE0FA,SIZE6]} + }, + 0x33F: + { + dir: H, + HW: [[0.333,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE0FE,SIZE6], rep:[0xE0FF,SIZE6], right:[0xE100,SIZE6]} + }, + 0x20D0: + { + dir: H, + HW: [[0.376,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE008,SIZE6], rep:[0xE009,SIZE6], right:[0xE00A,SIZE6]} + }, + 0x20D1: + { + dir: H, + HW: [[0.376,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE00B,SIZE6], rep:[0xE00C,SIZE6], right:[0xE00D,SIZE6]} + }, + 0x20D6: + { + dir: H, + HW: [[0.386,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE00E,SIZE6], rep:[0xE00F,SIZE6], right:[0xE010,SIZE6]} + }, + 0x20D7: + { + dir: H, + HW: [[0.386,MAIN], [0.510,SIZE1]], + stretch: {left:[0xE011,SIZE6], rep:[0xE012,SIZE6], right:[0xE013,SIZE6]} + }, + 0x20E1: + { + dir: H, + HW: [[0.458,MARKS], [0.582,SIZE1]], + stretch: {left:[0xE014,SIZE6], rep:[0xE015,SIZE6], right:[0xE016,SIZE6]} + }, + 0x20E9: + { + dir: H, + HW: [[0.375,MARKS], [0.750,SIZE1], [1.125,SIZE2], [1.500,SIZE3], [1.875,SIZE4], [2.250,SIZE5], [2.625,SIZE6]], + stretch: {left:[0xE11B,SIZE6], rep:[0xE11C,SIZE6], right:[0xE11D,SIZE6]} + }, + 0x20EC: + { + dir: H, + HW: [[0.376,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE017,SIZE6], rep:[0xE018,SIZE6], right:[0xE019,SIZE6]} + }, + 0x20ED: + { + dir: H, + HW: [[0.376,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE01A,SIZE6], rep:[0xE01B,SIZE6], right:[0xE01C,SIZE6]} + }, + 0x20EE: + { + dir: H, + HW: [[0.386,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE01D,SIZE6], rep:[0xE01E,SIZE6], right:[0xE01F,SIZE6]} + }, + 0x20EF: + { + dir: H, + HW: [[0.386,MARKS], [0.510,SIZE1]], + stretch: {left:[0xE020,SIZE6], rep:[0xE021,SIZE6], right:[0xE022,SIZE6]} + }, + 0x2196: + { + dir: V, + HW: [[0.506,MAIN], [0.733,SIZE1]] + }, + 0x2197: + { + dir: V, + HW: [[0.506,MAIN], [0.733,SIZE1]] + }, + 0x2198: + { + dir: V, + HW: [[0.506,MAIN], [0.733,SIZE1]] + }, + 0x2199: + { + dir: V, + HW: [[0.506,MAIN], [0.733,SIZE1]] + }, + 0x219A: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE02F,SIZE6], rep:[0xE030,SIZE6], mid:[0xE031,SIZE6], right:[0xE032,SIZE6]} + }, + 0x219B: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE033,SIZE6], rep:[0xE034,SIZE6], mid:[0xE035,SIZE6], right:[0xE036,SIZE6]} + }, + 0x219E: + { + dir: H, + HW: [[0.870,MAIN], [1.190,SIZE1]], + stretch: {left:[0xE041,SIZE6], rep:[0xE042,SIZE6], right:[0xE043,SIZE6]} + }, + 0x219F: + { + dir: V, + HW: [[0.870,ARROWS], [1.190,SIZE1]], + stretch: {bot:[0xE047,SIZE6], ext:[0xE048,SIZE6], top:[0xE049,SIZE6]} + }, + 0x21A0: + { + dir: H, + HW: [[0.870,MAIN], [1.190,SIZE1]], + stretch: {left:[0xE044,SIZE6], rep:[0xE045,SIZE6], right:[0xE046,SIZE6]} + }, + 0x21A1: + { + dir: V, + HW: [[0.870,ARROWS], [1.190,SIZE1]], + stretch: {bot:[0xE04A,SIZE6], ext:[0xE04B,SIZE6], top:[0xE04C,SIZE6]} + }, + 0x21A2: + { + dir: H, + HW: [[0.880,MAIN], [1.200,SIZE1]], + stretch: {left:[0xE04D,SIZE6], rep:[0xE04E,SIZE6], right:[0xE04F,SIZE6]} + }, + 0x21A3: + { + dir: H, + HW: [[0.880,MAIN], [1.200,SIZE1]], + stretch: {left:[0xE050,SIZE6], rep:[0xE051,SIZE6], right:[0xE052,SIZE6]} + }, + 0x21A5: + { + dir: V, + HW: [[0.690,ARROWS], [1.010,SIZE1]], + stretch: {bot:[0xE059,SIZE6], ext:[0xE05A,SIZE6], top:[0xE05B,SIZE6]} + }, + 0x21A7: + { + dir: V, + HW: [[0.690,ARROWS], [1.010,SIZE1]], + stretch: {bot:[0xE05C,SIZE6], ext:[0xE05D,SIZE6], top:[0xE05E,SIZE6]} + }, + 0x21A9: + { + dir: H, + HW: [[0.716,MAIN], [1.036,SIZE1]], + stretch: {left:[0xE062,SIZE6], rep:[0xE063,SIZE6], right:[0xE064,SIZE6]} + }, + 0x21AA: + { + dir: H, + HW: [[0.716,MAIN], [1.036,SIZE1]], + stretch: {left:[0xE05F,SIZE6], rep:[0xE060,SIZE6], right:[0xE061,SIZE6]} + }, + 0x21AB: + { + dir: H, + HW: [[0.716,MAIN], [1.036,SIZE1]], + stretch: {left:[0xE068,SIZE6], rep:[0xE069,SIZE6], right:[0xE06A,SIZE6]} + }, + 0x21AC: + { + dir: H, + HW: [[0.716,MAIN], [1.036,SIZE1]], + stretch: {left:[0xE065,SIZE6], rep:[0xE066,SIZE6], right:[0xE067,SIZE6]} + }, + 0x21AD: + { + dir: H, + HW: [[0.880,MAIN], [1.200,SIZE1]] + }, + 0x21AE: + { + dir: H, + HW: [[0.880,MAIN], [1.200,SIZE1]], + stretch: {left:[0xE03D,SIZE6], rep:[0xE03E,SIZE6], mid:[0xE03F,SIZE6], right:[0xE040,SIZE6]} + }, + 0x21B0: + { + dir: V, + HW: [[0.696,MAIN], [0.888,SIZE1]] + }, + 0x21B1: + { + dir: V, + HW: [[0.696,MAIN], [0.888,SIZE1]] + }, + 0x21B2: + { + dir: V, + HW: [[0.696,ARROWS], [0.888,SIZE1]] + }, + 0x21B3: + { + dir: V, + HW: [[0.696,ARROWS], [0.888,SIZE1]] + }, + 0x21B6: + { + dir: H, + HW: [[0.639,MAIN], [0.879,SIZE1]] + }, + 0x21B7: + { + dir: H, + HW: [[0.639,MAIN], [0.879,SIZE1]] + }, + 0x21BC: + { + dir: H, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {left:[0xE06B,SIZE6], rep:[0xE06C,SIZE6], right:[0xE06D,SIZE6]} + }, + 0x21BD: + { + dir: H, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {left:[0xE071,SIZE6], rep:[0xE072,SIZE6], right:[0xE073,SIZE6]} + }, + 0x21BE: + { + dir: V, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {bot:[0xE077,SIZE6], ext:[0xE078,SIZE6], top:[0xE079,SIZE6]} + }, + 0x21BF: + { + dir: V, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {bot:[0xE07D,SIZE6], ext:[0xE07E,SIZE6], top:[0xE07F,SIZE6]} + }, + 0x21C0: + { + dir: H, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {left:[0xE06E,SIZE6], rep:[0xE06F,SIZE6], right:[0xE070,SIZE6]} + }, + 0x21C1: + { + dir: H, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {left:[0xE074,SIZE6], rep:[0xE075,SIZE6], right:[0xE076,SIZE6]} + }, + 0x21C2: + { + dir: V, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {bot:[0xE07A,SIZE6], ext:[0xE07B,SIZE6], top:[0xE07C,SIZE6]} + }, + 0x21C3: + { + dir: V, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {bot:[0xE080,SIZE6], ext:[0xE081,SIZE6], top:[0xE082,SIZE6]} + }, + 0x21C4: + { + dir: H, + HW: [[0.700,MAIN], [1.020,SIZE1]], + stretch: {left:[0xE083,SIZE6], rep:[0xE084,SIZE6], right:[0xE085,SIZE6]} + }, + 0x21C5: + { + dir: V, + HW: [[0.700,ARROWS], [1.020,SIZE1]], + stretch: {bot:[0xE089,SIZE6], ext:[0xE08A,SIZE6], top:[0xE08B,SIZE6]} + }, + 0x21C6: + { + dir: H, + HW: [[0.700,MAIN], [1.020,SIZE1]], + stretch: {left:[0xE086,SIZE6], rep:[0xE087,SIZE6], right:[0xE088,SIZE6]} + }, + 0x21C7: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE08F,SIZE6], rep:[0xE090,SIZE6], right:[0xE091,SIZE6]} + }, + 0x21C8: + { + dir: V, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {bot:[0xE095,SIZE6], ext:[0xE096,SIZE6], top:[0xE097,SIZE6]} + }, + 0x21C9: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE092,SIZE6], rep:[0xE093,SIZE6], right:[0xE094,SIZE6]} + }, + 0x21CA: + { + dir: V, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {bot:[0xE098,SIZE6], ext:[0xE099,SIZE6], top:[0xE09A,SIZE6]} + }, + 0x21CB: + { + dir: H, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {left:[0xE0A1,SIZE6], rep:[0xE0A2,SIZE6], right:[0xE0A3,SIZE6]} + }, + 0x21CC: + { + dir: H, + HW: [[0.680,MAIN], [1.000,SIZE1]], + stretch: {left:[0xE0A4,SIZE6], rep:[0xE0A5,SIZE6], right:[0xE0A6,SIZE6]} + }, + 0x21CD: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE0B9,SIZE6], rep:[0xE0BA,SIZE6], mid:[0xE0BB,SIZE6], right:[0xE0BC,SIZE6]} + }, + 0x21CE: + { + dir: H, + HW: [[0.880,MAIN], [1.200,SIZE1]], + stretch: {left:[0xE0C1,SIZE6], rep:[0xE0C2,SIZE6], mid:[0xE0C3,SIZE6], right:[0xE0C4,SIZE6]} + }, + 0x21CF: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE0BD,SIZE6], rep:[0xE0BE,SIZE6], mid:[0xE0BF,SIZE6], right:[0xE0C0,SIZE6]} + }, + 0x21D6: + { + dir: V, + HW: [[0.560,ARROWS], [0.787,SIZE1]] + }, + 0x21D7: + { + dir: V, + HW: [[0.560,ARROWS], [0.787,SIZE1]] + }, + 0x21D8: + { + dir: V, + HW: [[0.560,ARROWS], [0.787,SIZE1]] + }, + 0x21D9: + { + dir: V, + HW: [[0.560,ARROWS], [0.787,SIZE1]] + }, + 0x21DA: + { + dir: H, + HW: [[0.870,MAIN], [1.190,SIZE1]], + stretch: {left:[0xE0CB,SIZE6], rep:[0xE0CC,SIZE6], right:[0xE0CD,SIZE6]} + }, + 0x21DB: + { + dir: H, + HW: [[0.870,MAIN], [1.190,SIZE1]], + stretch: {left:[0xE0CE,SIZE6], rep:[0xE0CF,SIZE6], right:[0xE0D0,SIZE6]} + }, + 0x21DC: + { + dir: H, + HW: [[0.690,ARROWS], [1.010,SIZE1]] + }, + 0x21DD: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]] + }, + 0x21E6: + { + dir: H, + HW: [[0.913,ARROWS], [1.233,SIZE1]], + stretch: {left:[0xE0D1,SIZE6], rep:[0xE0D2,SIZE6], right:[0xE0D3,SIZE6]} + }, + 0x21E7: + { + dir: V, + HW: [[0.913,ARROWS], [1.233,SIZE1]], + stretch: {bot:[0xE0D7,SIZE6], ext:[0xE0D8,SIZE6], top:[0xE0D9,SIZE6]} + }, + 0x21E8: + { + dir: H, + HW: [[0.913,ARROWS], [1.233,SIZE1]], + stretch: {left:[0xE0D4,SIZE6], rep:[0xE0D5,SIZE6], right:[0xE0D6,SIZE6]} + }, + 0x21E9: + { + dir: V, + HW: [[0.913,ARROWS], [1.233,SIZE1]], + stretch: {bot:[0xE0DA,SIZE6], ext:[0xE0DB,SIZE6], top:[0xE0DC,SIZE6]} + }, + 0x21F3: + { + dir: V, + HW: [[0.930,ARROWS], [1.250,SIZE1]], + stretch: {bot:[0xE0DD,SIZE6], ext:[0xE0DE,SIZE6], top:[0xE0DF,SIZE6]} + }, + 0x21F5: + { + dir: V, + HW: [[0.700,ARROWS], [1.020,SIZE1]], + stretch: {bot:[0xE08C,SIZE6], ext:[0xE08D,SIZE6], top:[0xE08E,SIZE6]} + }, + 0x21F6: + { + dir: H, + HW: [[0.690,ARROWS], [1.010,SIZE1]], + stretch: {left:[0xE09B,SIZE6], rep:[0xE09C,SIZE6], right:[0xE09D,SIZE6]} + }, + 0x220F: + { + dir: V, + HW: [[0.954,OPERATORS], [1.374,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[0.954,OPERATORS], [1.374,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[0.954,OPERATORS], [1.374,SIZE1]] + }, + 0x222B: + { + dir: V, + HW: [[1.092,MAIN], [2.026,SIZE1]], + stretch: {top:[0xE135,SIZE6], ext:[0x23AE,SYMBOLS], bot:[0xE136,SIZE6]} + }, + 0x222C: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]], + stretch: {top:[0xE137,SIZE6], ext:[0xE138,SIZE6], bot:[0xE139,SIZE6]} + }, + 0x222D: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]], + stretch: {top:[0xE13A,SIZE6], ext:[0xE13B,SIZE6], bot:[0xE13C,SIZE6]} + }, + 0x222E: + { + dir: V, + HW: [[1.092,OPERATORS,null,0x222F], [2.026,SIZE1]] + }, + 0x222F: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2230: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2231: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2232: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2233: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2261: + { + dir: H, + HW: [[0.500,MAIN]], + stretch: {left:[0xE12D,SIZE6], rep:[0xE12E,SIZE6], right:[0xE12F,SIZE6]} + }, + 0x2263: + { + dir: H, + HW: [[0.500,OPERATORS]], + stretch: {left:[0xE130,SIZE6], rep:[0xE131,SIZE6], right:[0xE132,SIZE6]} + }, + 0x22A2: + { + dir: V, + HW: [[0.650,MAIN], [0.800,SIZE1]] + }, + 0x22A3: + { + dir: V, + HW: [[0.650,MAIN], [0.800,SIZE1]] + }, + 0x22A4: + { + dir: V, + HW: [[0.650,MAIN], [0.800,SIZE1]] + }, + 0x22A5: + { + dir: V, + HW: [[0.650,MAIN], [0.800,SIZE1]] + }, + 0x22C0: + { + dir: V, + HW: [[0.888,OPERATORS], [1.165,SIZE1]] + }, + 0x22C1: + { + dir: V, + HW: [[0.888,OPERATORS], [1.165,SIZE1]] + }, + 0x22C2: + { + dir: V, + HW: [[0.898,OPERATORS], [1.170,SIZE1]] + }, + 0x22C3: + { + dir: V, + HW: [[0.898,OPERATORS], [1.170,SIZE1]] + }, + 0x23B4: + { + dir: H, + HW: [[0.375,MAIN], [0.750,SIZE1], [1.125,SIZE2], [1.500,SIZE3], [1.875,SIZE4], [2.250,SIZE5], [2.625,SIZE6]], + stretch: {left:[0xE11B,SIZE6], rep:[0xE11C,SIZE6], right:[0xE11D,SIZE6]} + }, + 0x23B5: + { + dir: H, + HW: [[0.375,MAIN], [0.750,SIZE1], [1.125,SIZE2], [1.500,SIZE3], [1.875,SIZE4], [2.250,SIZE5], [2.625,SIZE6]], + stretch: {left:[0xE11E,SIZE6], rep:[0xE11F,SIZE6], right:[0xE120,SIZE6]} + }, + 0x23DC: + { + dir: H, + HW: [[0.514,MAIN], [1.014,SIZE1], [1.514,SIZE2], [2.014,SIZE3], [2.514,SIZE4], [3.014,SIZE5], [3.514,SIZE6]], + stretch: {left:[0xE115,SIZE6], rep:[0xE116,SIZE6], right:[0xE117,SIZE6]} + }, + 0x23DD: + { + dir: H, + HW: [[0.514,MAIN], [1.014,SIZE1], [1.514,SIZE2], [2.014,SIZE3], [2.514,SIZE4], [3.014,SIZE5], [3.514,SIZE6]], + stretch: {left:[0xE118,SIZE6], rep:[0xE119,SIZE6], right:[0xE11A,SIZE6]} + }, + 0x23E0: + { + dir: H, + HW: [[0.562,MAIN], [1.066,SIZE1], [1.568,SIZE2], [2.072,SIZE3], [2.576,SIZE4], [3.080,SIZE5], [3.584,SIZE6]], + stretch: {left:[0xE121,SIZE6], rep:[0xE122,SIZE6], right:[0xE123,SIZE6]} + }, + 0x23E1: + { + dir: H, + HW: [[0.562,MAIN], [1.066,SIZE1], [1.568,SIZE2], [2.072,SIZE3], [2.576,SIZE4], [3.080,SIZE5], [3.584,SIZE6]], + stretch: {left:[0xE124,SIZE6], rep:[0xE125,SIZE6], right:[0xE126,SIZE6]} + }, + 0x27A1: + { + dir: H, + HW: [[0.870,MISC], [1.190,SIZE1]], + stretch: {left:[0xE0E6,SIZE6], rep:[0xE0E7,SIZE6], right:[0xE0E8,SIZE6]} + }, + 0x27E6: + { + dir: V, + HW: [[0.836,SYMBOLS], [0.998,SIZE1], [1.190,SIZE2], [1.422,SIZE3], [1.698,SIZE4], [2.032,SIZE5], [2.432,SIZE6]], + stretch: {bot:[0xE107,SIZE6], ext:[0xE108,SIZE6], top:[0xE109,SIZE6]} + }, + 0x27E7: + { + dir: V, + HW: [[0.836,SYMBOLS], [0.998,SIZE1], [1.190,SIZE2], [1.422,SIZE3], [1.698,SIZE4], [2.032,SIZE5], [2.432,SIZE6]], + stretch: {bot:[0xE10A,SIZE6], ext:[0xE10B,SIZE6], top:[0xE10C,SIZE6]} + }, + 0x27EA: + { + dir: V, + HW: [[0.812,SYMBOLS], [1.060,SIZE1], [1.382,SIZE2], [1.806,SIZE3], [2.364,SIZE4], [3.092,SIZE5], [4.048,SIZE6]] + }, + 0x27EB: + { + dir: V, + HW: [[0.812,SYMBOLS], [1.060,SIZE1], [1.382,SIZE2], [1.806,SIZE3], [2.364,SIZE4], [3.092,SIZE5], [4.048,SIZE6]] + }, + 0x2A00: + { + dir: V, + HW: [[0.876,OPERATORS], [1.132,SIZE1]] + }, + 0x2A01: + { + dir: V, + HW: [[0.876,OPERATORS], [1.132,SIZE1]] + }, + 0x2A02: + { + dir: V, + HW: [[0.876,OPERATORS], [1.132,SIZE1]] + }, + 0x2A03: + { + dir: V, + HW: [[0.898,OPERATORS], [1.170,SIZE1]] + }, + 0x2A04: + { + dir: V, + HW: [[0.898,OPERATORS], [1.170,SIZE1]] + }, + 0x2A05: + { + dir: V, + HW: [[0.880,OPERATORS], [1.152,SIZE1]] + }, + 0x2A06: + { + dir: V, + HW: [[0.880,OPERATORS], [1.152,SIZE1]] + }, + 0x2A09: + { + dir: V, + HW: [[0.716,OPERATORS], [0.906,SIZE1]] + }, + 0x2A0C: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2A11: + { + dir: V, + HW: [[1.092,OPERATORS], [2.026,SIZE1]] + }, + 0x2B04: + { + dir: H, + HW: [[0.931,SHAPES], [1.251,SIZE1]], + stretch: {left:[0xE0E0,SIZE6], rep:[0xE0E1,SIZE6], right:[0xE0E2,SIZE6]} + }, + 0x2B05: + { + dir: H, + HW: [[0.870,SHAPES], [1.190,SIZE1]], + stretch: {left:[0xE0E3,SIZE6], rep:[0xE0E4,SIZE6], right:[0xE0E5,SIZE6]} + }, + 0x2B06: + { + dir: V, + HW: [[0.870,SHAPES], [1.190,SIZE1]], + stretch: {bot:[0xE0E9,SIZE6], ext:[0xE0EA,SIZE6], top:[0xE0EB,SIZE6]} + }, + 0x2B07: + { + dir: V, + HW: [[0.870,SHAPES], [1.190,SIZE1]], + stretch: {bot:[0xE0EC,SIZE6], ext:[0xE0ED,SIZE6], top:[0xE0EE,SIZE6]} + }, + 0x2B0C: + { + dir: H, + HW: [[0.880,SHAPES], [1.200,SIZE1]], + stretch: {left:[0xE0EF,SIZE6], rep:[0xE0F0,SIZE6], right:[0xE0F1,SIZE6]} + }, + 0x2B0D: + { + dir: V, + HW: [[0.880,SHAPES], [1.200,SIZE1]], + stretch: {bot:[0xE0F2,SIZE6], ext:[0xE0F3,SIZE6], top:[0xE0F4,SIZE6]} + }, + 0x2B31: + { + dir: H, + HW: [[0.690,SHAPES], [1.010,SIZE1]], + stretch: {left:[0xE09E,SIZE6], rep:[0xE09F,SIZE6], right:[0xE0A0,SIZE6]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["HTML-CSS"]); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata.js new file mode 100644 index 0000000..97377d9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata.js @@ -0,0 +1,686 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Gyre-Termes/fontdata.js + * + * Initializes the HTML-CSS OutputJax to use the Gyre-Termes fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,MML,AJAX) { + + var VERSION = "2.3"; + + var ALPHABETS = "GyreTermesMathJax_Alphabets", + ARROWS = "GyreTermesMathJax_Arrows", + DOUBLESTRUCK = "GyreTermesMathJax_DoubleStruck", + FRAKTUR = "GyreTermesMathJax_Fraktur", + LATIN = "GyreTermesMathJax_Latin", + MAIN = "GyreTermesMathJax_Main", + MARKS = "GyreTermesMathJax_Marks", + MISC = "GyreTermesMathJax_Misc", + MONOSPACE = "GyreTermesMathJax_Monospace", + NONUNICODE = "GyreTermesMathJax_NonUnicode", + NORMAL = "GyreTermesMathJax_Normal", + OPERATORS = "GyreTermesMathJax_Operators", + SANSSERIF = "GyreTermesMathJax_SansSerif", + SCRIPT = "GyreTermesMathJax_Script", + SHAPES = "GyreTermesMathJax_Shapes", + SIZE1 = "GyreTermesMathJax_Size1", + SIZE2 = "GyreTermesMathJax_Size2", + SIZE3 = "GyreTermesMathJax_Size3", + SIZE4 = "GyreTermesMathJax_Size4", + SIZE5 = "GyreTermesMathJax_Size5", + SIZE6 = "GyreTermesMathJax_Size6", + SYMBOLS = "GyreTermesMathJax_Symbols", + VARIANTS = "GyreTermesMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + HTMLCSS.Augment({ + FONTDATA: { + version: VERSION, + + + TeX_factor: 1.125, + baselineskip: 1.200, + lineH: 0.800, lineD: 0.200, + + hasStyleChar: true, // char 0xEFFD encodes font style + + FONTS: { + "GyreTermesMathJax_Alphabets": "Alphabets/Regular/Main.js", + "GyreTermesMathJax_Arrows": "Arrows/Regular/Main.js", + "GyreTermesMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "GyreTermesMathJax_Fraktur": "Fraktur/Regular/Main.js", + "GyreTermesMathJax_Latin": "Latin/Regular/Main.js", + "GyreTermesMathJax_Main": "Main/Regular/Main.js", + "GyreTermesMathJax_Marks": "Marks/Regular/Main.js", + "GyreTermesMathJax_Misc": "Misc/Regular/Main.js", + "GyreTermesMathJax_Monospace": "Monospace/Regular/Main.js", + "GyreTermesMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "GyreTermesMathJax_Normal": "Normal/Regular/Main.js", + "GyreTermesMathJax_Operators": "Operators/Regular/Main.js", + "GyreTermesMathJax_SansSerif": "SansSerif/Regular/Main.js", + "GyreTermesMathJax_Script": "Script/Regular/Main.js", + "GyreTermesMathJax_Shapes": "Shapes/Regular/Main.js", + "GyreTermesMathJax_Size1": "Size1/Regular/Main.js", + "GyreTermesMathJax_Size2": "Size2/Regular/Main.js", + "GyreTermesMathJax_Size3": "Size3/Regular/Main.js", + "GyreTermesMathJax_Size4": "Size4/Regular/Main.js", + "GyreTermesMathJax_Size5": "Size5/Regular/Main.js", + "GyreTermesMathJax_Size6": "Size6/Regular/Main.js", + "GyreTermesMathJax_Symbols": "Symbols/Regular/Main.js", + "GyreTermesMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, offsetA: 0x1D434, offsetG: 0x1D6E2, remap: {0x1D455: 0x210E}}, + "bolditalic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true, offsetA: 0x1D468, offsetG: 0x1D71C}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Gyre-Termes-variant": {fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x0305, + + REMAP: { + 0x25C2: 0x25C0, + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x2758: 0x2223, + 0x25B8: 0x25B6, + 0x03D2: 0x03A5, + 0x25B4: 0x25B2, + 0x25B5: 0x25B3, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF, + 0x02B9: 0x2032, + 0x25FB: 0x25A1, + 0x25FC: 0x25A0, + 0x25BE: 0x25BC, + 0x203E: 0x0305, + 0x25BF: 0x25BD + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[0.816,MAIN], [0.976,SIZE1], [1.168,SIZE2], [1.398,SIZE3], [1.674,SIZE4], [2.006,SIZE5], [2.404,SIZE6], [2.780,SIZE6,1.157]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[0.816,MAIN], [0.976,SIZE1], [1.168,SIZE2], [1.398,SIZE3], [1.674,SIZE4], [2.006,SIZE5], [2.404,SIZE6], [2.780,SIZE6,1.157]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0x305, dir: H}, + 0x2F: + { + dir: V, + HW: [[0.800,MAIN], [1.048,SIZE1], [1.372,SIZE2], [1.798,SIZE3], [1.827,SIZE3,1.016], [2.356,SIZE4], [3.086,SIZE5], [4.044,SIZE6]] + }, + 0x3D: + { + dir: H, + HW: [[0.500,MAIN]], + stretch: {left:[0xE000,SIZE6], rep:[0xE001,SIZE6], right:[0xE002,SIZE6]} + }, + 0x5B: + { + dir: V, + HW: [[0.836,MAIN], [0.998,SIZE1], [1.190,SIZE2], [1.422,SIZE3], [1.698,SIZE4], [2.032,SIZE5], [2.432,SIZE6], [2.780,SIZE6,1.143]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[0.800,MAIN], [1.048,SIZE1], [1.372,SIZE2], [1.798,SIZE3], [1.827,SIZE3,1.016], [2.356,SIZE4], [3.086,SIZE5], [4.044,SIZE6]] + }, + 0x5D: + { + dir: V, + HW: [[0.836,MAIN], [0.998,SIZE1], [1.190,SIZE2], [1.422,SIZE3], [1.698,SIZE4], [2.032,SIZE5], [2.432,SIZE6], [2.780,SIZE6,1.143]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5E: {alias: 0x302, dir: H}, + 0x5F: {alias: 0x332, dir: H}, + 0x7B: + { + dir: V, + HW: [[0.820,MAIN], [0.980,SIZE1], [1.172,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.010,SIZE5], [2.408,SIZE6], [2.780,SIZE6,1.155]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0xE003,SIZE6], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[0.800,MAIN], [0.960,SIZE1], [1.152,SIZE2], [1.382,SIZE3], [1.658,SIZE4], [1.990,SIZE5], [2.388,SIZE6]], + stretch: {bot:[0xE004,SIZE6], ext:[0xE005,SIZE6], top:[0xE006,SIZE6]} + }, + 0x7D: + { + dir: V, + HW: [[0.820,MAIN], [0.980,SIZE1], [1.172,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.010,SIZE5], [2.408,SIZE6], [2.780,SIZE6,1.155]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0xE007,SIZE6], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0x7E: {alias: 0x303, dir: H}, + 0xAF: {alias: 0x332, dir: H}, + 0x2C6: {alias: 0x302, dir: H}, + 0x2C9: {alias: 0x305, dir: H}, + 0x2DC: {alias: 0x303, dir: H}, + 0x302: + { + dir: H, + HW: [[0.342,MAIN], [0.608,SIZE1], [0.727,SIZE2], [0.870,SIZE3], [1.041,SIZE4], [1.249,SIZE5], [1.496,SIZE6]] + }, + 0x303: + { + dir: H, + HW: [[0.334,MAIN], [0.601,SIZE1], [0.720,SIZE2], [0.863,SIZE3], [1.037,SIZE4], [1.241,SIZE5], [1.491,SIZE6]] + }, + 0x305: + { + dir: H, + HW: [[0.333,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE0FB,SIZE6], rep:[0xE0FC,SIZE6], right:[0xE0FD,SIZE6]} + }, + 0x306: EXTRAH, + 0x30C: + { + dir: H, + HW: [[0.342,MAIN], [0.608,SIZE1], [0.727,SIZE2], [0.870,SIZE3], [1.041,SIZE4], [1.249,SIZE5], [1.496,SIZE6]] + }, + 0x311: EXTRAH, + 0x32C: EXTRAH, + 0x32D: EXTRAH, + 0x32E: EXTRAH, + 0x32F: EXTRAH, + 0x330: EXTRAH, + 0x332: + { + dir: H, + HW: [[0.333,MARKS], [0.500,SIZE1]], + stretch: {left:[0xE0F5,SIZE6], rep:[0xE0F6,SIZE6], right:[0xE0F7,SIZE6]} + }, + 0x333: EXTRAH, + 0x33F: EXTRAH, + 0x2015: {alias: 0x305, dir: H}, + 0x2016: + { + dir: V, + HW: [[0.800,MAIN], [0.960,SIZE1], [1.152,SIZE2], [1.382,SIZE3], [1.658,SIZE4], [1.990,SIZE5], [2.388,SIZE6]], + stretch: {bot:[0xE12A,SIZE6], ext:[0xE12B,SIZE6], top:[0xE12C,SIZE6]} + }, + 0x2017: {alias: 0x305, dir: H}, + 0x203E: {alias: 0x305, dir: H}, + 0x2044: + { + dir: V, + HW: [[0.800,MAIN], [1.048,SIZE1], [1.372,SIZE2], [1.798,SIZE3], [2.356,SIZE4], [3.086,SIZE5], [4.044,SIZE6]] + }, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: EXTRAH, + 0x20E1: EXTRAH, + 0x20E9: EXTRAH, + 0x20EC: EXTRAH, + 0x20ED: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2140: + { + dir: V, + HW: [[0.956,DOUBLESTRUCK], [1.360,SIZE1]] + }, + 0x2190: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE023,SIZE6], rep:[0xE024,SIZE6], right:[0xE025,SIZE6]} + }, + 0x2191: + { + dir: V, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {bot:[0xE029,SIZE6], ext:[0xE02A,SIZE6], top:[0xE02B,SIZE6]} + }, + 0x2192: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE026,SIZE6], rep:[0xE027,SIZE6], right:[0xE028,SIZE6]} + }, + 0x2193: + { + dir: V, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {bot:[0xE02C,SIZE6], ext:[0xE02D,SIZE6], top:[0xE02E,SIZE6]} + }, + 0x2194: + { + dir: H, + HW: [[0.880,MAIN], [1.200,SIZE1]], + stretch: {left:[0xE037,SIZE6], rep:[0xE038,SIZE6], right:[0xE039,SIZE6]} + }, + 0x2195: + { + dir: V, + HW: [[0.880,MAIN], [1.200,SIZE1]], + stretch: {bot:[0xE03A,SIZE6], ext:[0xE03B,SIZE6], top:[0xE03C,SIZE6]} + }, + 0x2196: EXTRAV, + 0x2197: EXTRAV, + 0x2198: EXTRAV, + 0x2199: EXTRAV, + 0x219A: EXTRAH, + 0x219B: EXTRAH, + 0x219E: EXTRAH, + 0x219F: EXTRAV, + 0x21A0: EXTRAH, + 0x21A1: EXTRAV, + 0x21A2: EXTRAH, + 0x21A3: EXTRAH, + 0x21A4: + { + dir: H, + HW: [[0.690,ARROWS], [1.010,SIZE1]], + stretch: {left:[0xE053,SIZE6], rep:[0xE054,SIZE6], right:[0xE055,SIZE6]} + }, + 0x21A5: EXTRAV, + 0x21A6: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE056,SIZE6], rep:[0xE057,SIZE6], right:[0xE058,SIZE6]} + }, + 0x21A7: EXTRAV, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21AB: EXTRAH, + 0x21AC: EXTRAH, + 0x21AD: EXTRAH, + 0x21AE: EXTRAH, + 0x21B0: EXTRAV, + 0x21B1: EXTRAV, + 0x21B2: EXTRAV, + 0x21B3: EXTRAV, + 0x21B6: EXTRAH, + 0x21B7: EXTRAH, + 0x21BC: EXTRAH, + 0x21BD: EXTRAH, + 0x21BE: EXTRAV, + 0x21BF: EXTRAV, + 0x21C0: EXTRAH, + 0x21C1: EXTRAH, + 0x21C2: EXTRAV, + 0x21C3: EXTRAV, + 0x21C4: EXTRAH, + 0x21C5: EXTRAV, + 0x21C6: EXTRAH, + 0x21C7: EXTRAH, + 0x21C8: EXTRAV, + 0x21C9: EXTRAH, + 0x21CA: EXTRAV, + 0x21CB: EXTRAH, + 0x21CC: EXTRAH, + 0x21CD: EXTRAH, + 0x21CE: EXTRAH, + 0x21CF: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE0A7,SIZE6], rep:[0xE0A8,SIZE6], right:[0xE0A9,SIZE6]} + }, + 0x21D1: + { + dir: V, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {bot:[0xE0AD,SIZE6], ext:[0xE0AE,SIZE6], top:[0xE0AF,SIZE6]} + }, + 0x21D2: + { + dir: H, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {left:[0xE0AA,SIZE6], rep:[0xE0AB,SIZE6], right:[0xE0AC,SIZE6]} + }, + 0x21D3: + { + dir: V, + HW: [[0.690,MAIN], [1.010,SIZE1]], + stretch: {bot:[0xE0B0,SIZE6], ext:[0xE0B1,SIZE6], top:[0xE0B2,SIZE6]} + }, + 0x21D4: + { + dir: H, + HW: [[0.880,MAIN], [1.200,SIZE1]], + stretch: {left:[0xE0B3,SIZE6], rep:[0xE0B4,SIZE6], right:[0xE0B5,SIZE6]} + }, + 0x21D5: + { + dir: V, + HW: [[0.880,MAIN], [1.200,SIZE1]], + stretch: {bot:[0xE0B6,SIZE6], ext:[0xE0B7,SIZE6], top:[0xE0B8,SIZE6]} + }, + 0x21D6: EXTRAV, + 0x21D7: EXTRAV, + 0x21D8: EXTRAV, + 0x21D9: EXTRAV, + 0x21DA: EXTRAH, + 0x21DB: EXTRAH, + 0x21DC: EXTRAH, + 0x21DD: EXTRAH, + 0x21E6: EXTRAH, + 0x21E7: EXTRAV, + 0x21E8: EXTRAH, + 0x21E9: EXTRAV, + 0x21F3: EXTRAV, + 0x21F5: EXTRAV, + 0x21F6: EXTRAH, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: + { + dir: H, + HW: [[0.500,MAIN]], + stretch: {left:[0xE127,SIZE6], rep:[0xE128,SIZE6], right:[0xE129,SIZE6]} + }, + 0x2215: {alias: 0x2044, dir: V}, + 0x221A: + { + dir: V, + HW: [[0.706,MAIN], [1.090,SIZE1], [1.474,SIZE2], [1.858,SIZE3], [2.242,SIZE4], [2.626,SIZE5], [3.010,SIZE6]], + stretch: {bot:[0x23B7,SYMBOLS], ext:[0xE133,SIZE6], top:[0xE134,SIZE6]} + }, + 0x2223: + { + dir: V, + HW: [[0.800,MAIN], [0.960,SIZE1], [1.152,SIZE2], [1.382,SIZE3], [1.658,SIZE4], [1.990,SIZE5], [2.388,SIZE6]], + stretch: {bot:[0xE004,SIZE6], ext:[0xE005,SIZE6], top:[0xE006,SIZE6]} + }, + 0x2225: + { + dir: V, + HW: [[0.800,MAIN], [0.960,SIZE1], [1.152,SIZE2], [1.382,SIZE3], [1.658,SIZE4], [1.990,SIZE5], [2.388,SIZE6]], + stretch: {bot:[0xE12A,SIZE6], ext:[0xE12B,SIZE6], top:[0xE12C,SIZE6]} + }, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x2261: EXTRAH, + 0x2263: EXTRAH, + 0x22A2: EXTRAV, + 0x22A3: EXTRAV, + 0x22A4: EXTRAV, + 0x22A5: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[0.818,MAIN], [0.979,SIZE1], [1.171,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.011,SIZE5], [2.410,SIZE6], [2.780,SIZE6,1.154]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[0.818,MAIN], [0.979,SIZE1], [1.171,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.011,SIZE5], [2.410,SIZE6], [2.780,SIZE6,1.154]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[0.818,MAIN], [0.979,SIZE1], [1.171,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.011,SIZE5], [2.410,SIZE6], [2.780,SIZE6,1.154]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[0.818,MAIN], [0.979,SIZE1], [1.171,SIZE2], [1.402,SIZE3], [1.678,SIZE4], [2.011,SIZE5], [2.410,SIZE6], [2.780,SIZE6,1.154]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: + { + dir: V, + HW: [[0.812,SYMBOLS], [1.060,SIZE1], [1.382,SIZE2], [1.806,SIZE3], [2.364,SIZE4], [3.092,SIZE5], [4.048,SIZE6]] + }, + 0x232A: + { + dir: V, + HW: [[0.812,SYMBOLS], [1.060,SIZE1], [1.382,SIZE2], [1.806,SIZE3], [2.364,SIZE4], [3.092,SIZE5], [4.048,SIZE6]] + }, + 0x23AA: + { + dir: V, + HW: [[0.596,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: {alias: 0x305, dir: H}, + 0x23B0: + { + dir: V, + HW: [[0.607,SYMBOLS,null,0x23A7]], + stretch: {top:[0x23A7,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23AD,SYMBOLS]} + }, + 0x23B1: + { + dir: V, + HW: [[0.607,SYMBOLS,null,0x23AB]], + stretch: {top:[0x23AB,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23A9,SYMBOLS]} + }, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: + { + dir: V, + HW: [[0.800,MAIN,null,0x7C], [1.350,MAIN,1.688,0x7C], [1.827,MAIN,2.283,0x7C], [2.303,MAIN,2.879,0x7C], [2.780,MAIN,3.474,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[0.520,MAIN], [1.019,SIZE1], [1.519,SIZE2], [2.019,SIZE3], [2.519,SIZE4], [3.019,SIZE5], [3.519,SIZE6]], + stretch: {left:[0xE10D,SIZE6], rep:[0xE10E,SIZE6], mid:[0xE10F,SIZE6], right:[0xE110,SIZE6]} + }, + 0x23DF: + { + dir: H, + HW: [[0.520,MAIN], [1.019,SIZE1], [1.519,SIZE2], [2.019,SIZE3], [2.519,SIZE4], [3.019,SIZE5], [3.519,SIZE6]], + stretch: {left:[0xE111,SIZE6], rep:[0xE112,SIZE6], mid:[0xE113,SIZE6], right:[0xE114,SIZE6]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x305, dir: H}, + 0x27A1: EXTRAH, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[0.812,MAIN], [1.060,SIZE1], [1.382,SIZE2], [1.806,SIZE3], [1.827,SIZE3,1.012], [2.364,SIZE4], [3.092,SIZE5], [4.048,SIZE6]] + }, + 0x27E9: + { + dir: V, + HW: [[0.812,MAIN], [1.060,SIZE1], [1.382,SIZE2], [1.806,SIZE3], [1.827,SIZE3,1.012], [2.364,SIZE4], [3.092,SIZE5], [4.048,SIZE6]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: + { + dir: V, + HW: [[0.814,MAIN], [0.974,SIZE1], [1.166,SIZE2], [1.396,SIZE3], [1.672,SIZE4], [2.004,SIZE5], [2.402,SIZE6]], + stretch: {bot:[0xE101,SIZE6], ext:[0xE102,SIZE6], top:[0xE103,SIZE6]} + }, + 0x27EF: + { + dir: V, + HW: [[0.814,MAIN], [0.974,SIZE1], [1.166,SIZE2], [1.396,SIZE3], [1.672,SIZE4], [2.004,SIZE5], [2.402,SIZE6]], + stretch: {bot:[0xE104,SIZE6], ext:[0xE105,SIZE6], top:[0xE106,SIZE6]} + }, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: + { + dir: H, + HW: [[0.870,ARROWS], [1.190,SIZE1]], + stretch: {left:[0xE0C5,SIZE6], rep:[0xE0C6,SIZE6], right:[0xE0C7,SIZE6]} + }, + 0x2907: + { + dir: H, + HW: [[0.870,ARROWS], [1.190,SIZE1]], + stretch: {left:[0xE0C8,SIZE6], rep:[0xE0C9,SIZE6], right:[0xE0CA,SIZE6]} + }, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A11: EXTRAV, + 0x2B04: EXTRAH, + 0x2B05: EXTRAH, + 0x2B06: EXTRAV, + 0x2B07: EXTRAV, + 0x2B0C: EXTRAH, + 0x2B0D: EXTRAV, + 0x2B31: EXTRAH, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Size1/Regular/Main.js",function () { + var i; + for (i = 0x222B; i <= 0x222D; i++) { + HTMLCSS.FONTDATA.FONTS[SIZE1][i][2] -= 200; + HTMLCSS.FONTDATA.FONTS[SIZE1][i][5] = {rfix:-200}; + } + for (i = 0x222E; i <= 0x2231; i++) { + HTMLCSS.FONTDATA.FONTS[SIZE1][i][2] -= 150; + HTMLCSS.FONTDATA.FONTS[SIZE1][i][5] = {rfix:-150}; + } + }); + AJAX.loadComplete(HTMLCSS.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.ElementJax.mml,MathJax.Ajax); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Alphabets/Regular/Main.js new file mode 100644 index 0000000..f45a4af --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Alphabets/Regular/Main.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'LatinModernMathJax_Alphabets', + testString: '\u00A0\u2103\u2107\u2109\u2116\u2117\u211E\u2120\u2122\u2126\u212A\u212B\u212E\uFEFF', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x2103: [705,22,1031,49,974], + 0x2107: [705,22,530,50,495], + 0x2109: [683,0,980,49,937], + 0x2116: [695,10,916,51,860], + 0x2117: [683,0,683,0,683], + 0x211E: [683,22,736,35,732], + 0x2120: [683,-247,883,34,827], + 0x2122: [687,-277,983,22,938], + 0x2126: [705,0,722,44,677], + 0x212A: [683,0,778,33,736], + 0x212B: [892,0,750,32,717], + 0x212E: [701,10,676,28,647], + 0xFEFF: [0,0,0,0,0] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Alphabets"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Alphabets/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Arrows/Regular/Main.js new file mode 100644 index 0000000..62917f3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Arrows/Regular/Main.js @@ -0,0 +1,60 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'LatinModernMathJax_Arrows', + testString: '\u00A0\u219F\u21A1\u21A4\u21A5\u21A7\u21B2\u21B3\u21B4\u21B5\u21C5\u21D6\u21D7\u21D8\u21D9', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x219F: [689,213,572,56,516], + 0x21A1: [713,189,572,56,516], + 0x21A4: [510,10,977,56,921], + 0x21A5: [679,183,632,55,576], + 0x21A7: [683,179,632,55,576], + 0x21B2: [679,179,564,56,508], + 0x21B3: [679,179,564,56,508], + 0x21B4: [530,6,882,56,826], + 0x21B5: [650,150,650,56,594], + 0x21C5: [703,203,896,56,840], + 0x21D6: [682,272,1066,56,1010], + 0x21D7: [682,272,1066,56,1010], + 0x21D8: [772,182,1066,56,1010], + 0x21D9: [772,182,1066,56,1010], + 0x21DC: [510,10,997,56,941], + 0x21E6: [520,20,1050,56,994], + 0x21E7: [725,213,652,56,596], + 0x21E8: [520,20,1050,56,994], + 0x21E9: [713,225,652,56,596], + 0x21F3: [725,225,652,56,596], + 0x21F5: [703,203,896,56,840], + 0x21F6: [990,490,997,56,941], + 0x27F4: [592,92,1121,56,1065], + 0x27FB: [510,10,1443,56,1387], + 0x27FD: [520,20,1437,56,1381], + 0x27FE: [520,20,1437,56,1381], + 0x27FF: [510,10,1463,56,1407], + 0x2906: [520,20,991,56,935], + 0x2907: [520,20,991,56,935] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Arrows"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Arrows/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..16f3b52 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/DoubleStruck/Regular/Main.js @@ -0,0 +1,103 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'LatinModernMathJax_DoubleStruck', + testString: '\u00A0\u2102\u210D\u2115\u2119\u211A\u211D\u2124\u213C\u213D\u213E\u213F\u2140\u2145\u2146', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x2102: [705,22,667,55,611], + 0x210D: [683,0,722,83,639], + 0x2115: [683,0,722,83,639], + 0x2119: [683,0,639,83,583], + 0x211A: [705,194,667,55,611], + 0x211D: [683,0,639,83,583], + 0x2124: [683,0,667,55,611], + 0x213C: [431,0,517,27,488], + 0x213D: [431,216,472,27,444], + 0x213E: [683,0,611,83,583], + 0x213F: [683,0,667,83,583], + 0x2140: [683,0,667,55,611], + 0x2145: [683,0,694,47,680], + 0x2146: [694,22,500,26,547], + 0x2147: [453,22,472,26,460], + 0x2148: [691,0,279,19,331], + 0x2149: [691,216,389,-69,441], + 0x1D538: [683,0,611,27,583], + 0x1D539: [683,0,639,83,583], + 0x1D53B: [683,0,694,83,639], + 0x1D53C: [683,0,611,83,583], + 0x1D53D: [683,0,611,83,583], + 0x1D53E: [705,22,667,55,611], + 0x1D540: [683,0,334,83,251], + 0x1D541: [683,22,639,55,555], + 0x1D542: [683,0,639,83,583], + 0x1D543: [683,0,611,83,583], + 0x1D544: [683,0,722,83,639], + 0x1D546: [705,22,667,55,611], + 0x1D54A: [705,22,611,55,555], + 0x1D54B: [683,0,611,27,583], + 0x1D54C: [683,22,722,83,639], + 0x1D54D: [683,0,611,27,583], + 0x1D54E: [683,0,833,27,805], + 0x1D54F: [683,0,667,55,611], + 0x1D550: [683,0,611,27,583], + 0x1D552: [453,22,500,27,444], + 0x1D553: [694,22,628,55,599], + 0x1D554: [453,22,472,27,444], + 0x1D555: [694,22,500,27,444], + 0x1D556: [453,22,472,27,444], + 0x1D557: [716,0,389,55,388], + 0x1D558: [453,216,500,27,444], + 0x1D559: [694,0,572,55,516], + 0x1D55A: [691,0,279,33,245], + 0x1D55B: [691,216,389,0,355], + 0x1D55C: [694,0,544,55,516], + 0x1D55D: [694,0,279,55,223], + 0x1D55E: [453,0,722,55,667], + 0x1D55F: [453,0,572,55,516], + 0x1D560: [453,22,472,27,444], + 0x1D561: [453,194,628,55,599], + 0x1D562: [453,194,500,27,444], + 0x1D563: [453,0,544,55,516], + 0x1D564: [453,22,389,27,360], + 0x1D565: [694,22,417,55,388], + 0x1D566: [431,22,528,55,472], + 0x1D567: [431,0,472,27,443], + 0x1D568: [431,0,667,27,639], + 0x1D569: [431,0,472,27,444], + 0x1D56A: [431,216,472,27,443], + 0x1D56B: [431,0,472,27,444], + 0x1D7D8: [666,22,556,55,499], + 0x1D7D9: [644,0,556,55,499], + 0x1D7DA: [666,0,556,55,499], + 0x1D7DB: [666,22,556,55,499], + 0x1D7DC: [644,0,556,55,499], + 0x1D7DD: [644,22,556,55,499], + 0x1D7DE: [666,22,556,55,499], + 0x1D7DF: [644,0,556,55,499], + 0x1D7E0: [666,22,556,55,499], + 0x1D7E1: [666,22,556,55,499] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_DoubleStruck"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/DoubleStruck/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Fraktur/Regular/Main.js new file mode 100644 index 0000000..0106f30 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Fraktur/Regular/Main.js @@ -0,0 +1,133 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'LatinModernMathJax_Fraktur', + testString: '\u00A0\u210C\u2128\u212D\uD835\uDD04\uD835\uDD05\uD835\uDD07\uD835\uDD08\uD835\uDD09\uD835\uDD0A\uD835\uDD0D\uD835\uDD0E\uD835\uDD0F\uD835\uDD10\uD835\uDD11', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x210C: [667,133,720,-8,645], + 0x2128: [729,139,602,11,533], + 0x212D: [686,24,612,59,613], + 0x1D504: [697,27,717,22,709], + 0x1D505: [691,27,904,49,815], + 0x1D507: [690,27,831,27,746], + 0x1D508: [686,24,662,86,641], + 0x1D509: [686,155,611,11,621], + 0x1D50A: [692,25,785,66,711], + 0x1D50D: [686,139,552,-18,522], + 0x1D50E: [681,27,668,16,690], + 0x1D50F: [686,27,666,32,645], + 0x1D510: [692,27,1049,27,1049], + 0x1D511: [686,29,832,29,830], + 0x1D512: [729,27,828,11,746], + 0x1D513: [692,219,823,6,804], + 0x1D514: [729,69,828,11,783], + 0x1D516: [689,27,828,56,756], + 0x1D517: [703,27,669,24,676], + 0x1D518: [697,27,645,-26,666], + 0x1D519: [686,27,831,29,826], + 0x1D51A: [686,28,1046,21,1055], + 0x1D51B: [689,27,719,27,709], + 0x1D51C: [686,219,834,26,741], + 0x1D51E: [471,36,500,65,497], + 0x1D51F: [686,31,513,86,444], + 0x1D520: [466,29,389,72,359], + 0x1D521: [612,34,498,13,430], + 0x1D522: [467,31,400,70,364], + 0x1D523: [679,238,329,30,324], + 0x1D524: [470,209,503,16,455], + 0x1D525: [689,198,521,76,435], + 0x1D526: [675,21,279,14,268], + 0x1D527: [673,202,280,-9,196], + 0x1D528: [686,26,389,24,363], + 0x1D529: [686,20,279,97,277], + 0x1D52A: [475,26,766,7,757], + 0x1D52B: [475,23,526,18,521], + 0x1D52C: [481,28,488,66,413], + 0x1D52D: [538,214,500,12,430], + 0x1D52E: [480,224,489,59,418], + 0x1D52F: [474,21,389,15,395], + 0x1D530: [479,30,442,-28,407], + 0x1D531: [641,21,333,26,349], + 0x1D532: [474,26,517,8,514], + 0x1D533: [533,28,511,51,439], + 0x1D534: [533,28,773,44,693], + 0x1D535: [473,188,388,10,370], + 0x1D536: [524,219,498,45,437], + 0x1D537: [471,215,390,-7,314], + 0x1D56C: [688,31,847,29,827], + 0x1D56D: [685,31,1043,56,963], + 0x1D56E: [677,32,723,71,729], + 0x1D56F: [685,29,981,30,896], + 0x1D570: [687,29,782,73,733], + 0x1D571: [684,147,721,17,734], + 0x1D572: [692,27,927,74,844], + 0x1D573: [684,127,850,0,753], + 0x1D574: [683,25,654,31,623], + 0x1D575: [681,142,652,-8,615], + 0x1D576: [682,26,789,20,813], + 0x1D577: [684,28,786,30,764], + 0x1D578: [686,33,1239,26,1232], + 0x1D579: [681,33,982,26,968], + 0x1D57A: [726,29,976,11,881], + 0x1D57B: [685,223,977,19,944], + 0x1D57C: [726,82,976,11,917], + 0x1D57D: [689,29,977,19,977], + 0x1D57E: [685,31,978,82,906], + 0x1D57F: [691,30,789,30,798], + 0x1D580: [689,39,850,16,871], + 0x1D581: [687,29,981,25,966], + 0x1D582: [682,30,1235,31,1240], + 0x1D583: [682,35,849,32,835], + 0x1D584: [689,214,983,32,879], + 0x1D585: [718,137,726,17,633], + 0x1D586: [472,32,602,80,587], + 0x1D587: [691,32,589,86,504], + 0x1D588: [473,26,463,87,424], + 0x1D589: [632,29,588,-1,511], + 0x1D58A: [471,28,471,80,429], + 0x1D58B: [681,242,387,37,387], + 0x1D58C: [473,208,594,16,541], + 0x1D58D: [687,203,615,88,507], + 0x1D58E: [686,26,331,2,327], + 0x1D58F: [683,207,331,-19,238], + 0x1D590: [683,25,464,33,432], + 0x1D591: [682,24,336,100,315], + 0x1D592: [476,31,921,16,900], + 0x1D593: [474,28,653,3,608], + 0x1D594: [482,34,609,107,515], + 0x1D595: [558,208,603,-2,519], + 0x1D596: [485,212,595,87,515], + 0x1D597: [473,26,459,12,453], + 0x1D598: [480,35,522,-24,482], + 0x1D599: [654,27,393,47,407], + 0x1D59A: [473,35,588,9,604], + 0x1D59B: [546,28,604,56,507], + 0x1D59C: [549,33,917,55,815], + 0x1D59D: [471,188,458,8,449], + 0x1D59E: [559,222,589,60,515], + 0x1D59F: [472,215,461,-8,377] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Fraktur"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Latin/Regular/Main.js new file mode 100644 index 0000000..1847fc1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Latin/Regular/Main.js @@ -0,0 +1,299 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'LatinModernMathJax_Latin', + testString: '\u00A0\u00A1\u00A2\u00A4\u00A6\u00A9\u00AA\u00AB\u00B6\u00B8\u00BA\u00BB\u00BF\u00C0\u00C1', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0xA1: [500,216,278,86,192], + 0xA2: [476,45,444,34,415], + 0xA4: [492,-8,778,147,630], + 0xA6: [750,250,278,119,159], + 0xA9: [683,0,683,0,683], + 0xAA: [705,-333,449,35,414], + 0xAB: [483,0,556,111,444], + 0xB6: [694,194,611,56,582], + 0xB8: [5,200,444,89,356], + 0xBA: [705,-333,419,24,396], + 0xBB: [483,0,556,112,445], + 0xBF: [500,205,472,56,415], + 0xC0: [909,0,750,32,717], + 0xC1: [909,0,750,32,717], + 0xC2: [869,0,750,32,717], + 0xC3: [829,0,750,32,717], + 0xC4: [831,0,750,32,717], + 0xC5: [892,0,750,32,717], + 0xC6: [683,0,903,32,874], + 0xC7: [705,200,722,56,665], + 0xC8: [909,0,681,33,652], + 0xC9: [909,0,681,33,652], + 0xCA: [869,0,681,33,652], + 0xCB: [831,0,681,33,652], + 0xCC: [909,0,361,28,333], + 0xCD: [909,0,361,28,333], + 0xCE: [869,0,361,28,333], + 0xCF: [831,0,361,28,335], + 0xD0: [683,0,764,35,707], + 0xD1: [829,0,750,33,716], + 0xD2: [909,22,778,56,721], + 0xD3: [909,22,778,56,721], + 0xD4: [869,22,778,56,721], + 0xD5: [829,22,778,56,721], + 0xD6: [831,22,778,56,721], + 0xD8: [739,56,778,56,721], + 0xD9: [909,22,750,33,716], + 0xDA: [909,22,750,33,716], + 0xDB: [869,22,750,33,716], + 0xDC: [831,22,750,33,716], + 0xDD: [909,0,750,11,738], + 0xDE: [683,0,625,36,569], + 0xDF: [705,11,500,28,471], + 0xE0: [698,11,500,32,483], + 0xE1: [698,11,500,32,483], + 0xE2: [692,11,500,32,483], + 0xE3: [651,11,500,32,483], + 0xE4: [652,11,500,32,483], + 0xE5: [705,11,500,32,483], + 0xE6: [448,11,722,45,693], + 0xE7: [448,200,444,34,415], + 0xE8: [698,11,444,28,415], + 0xE9: [698,11,444,28,415], + 0xEA: [692,11,444,28,415], + 0xEB: [652,11,444,28,415], + 0xEC: [698,0,278,15,247], + 0xED: [698,0,278,33,263], + 0xEE: [692,0,278,-13,291], + 0xEF: [652,0,278,2,277], + 0xF1: [651,0,556,32,535], + 0xF2: [698,11,500,28,471], + 0xF3: [698,11,500,28,471], + 0xF4: [692,11,500,28,471], + 0xF5: [651,11,500,28,471], + 0xF6: [652,11,500,28,471], + 0xF8: [534,102,500,35,464], + 0xF9: [698,11,556,32,535], + 0xFA: [698,11,556,32,535], + 0xFB: [692,11,556,32,535], + 0xFC: [652,11,556,32,535], + 0xFD: [698,205,528,19,508], + 0xFE: [694,194,556,28,521], + 0xFF: [652,205,528,19,508], + 0x100: [787,0,750,32,717], + 0x101: [620,11,500,32,483], + 0x102: [918,0,750,32,717], + 0x103: [690,11,500,32,483], + 0x104: [716,211,750,32,717], + 0x105: [448,211,500,32,483], + 0x106: [909,22,722,56,665], + 0x107: [698,11,444,34,415], + 0x10C: [869,22,722,56,665], + 0x10D: [692,11,444,34,415], + 0x10E: [869,0,764,35,707], + 0x10F: [694,11,556,34,574], + 0x110: [683,0,764,35,707], + 0x112: [787,0,681,33,652], + 0x113: [620,11,444,28,415], + 0x116: [864,0,681,33,652], + 0x117: [657,11,444,28,415], + 0x118: [680,211,681,33,652], + 0x119: [448,211,444,28,415], + 0x11A: [869,0,681,33,652], + 0x11B: [692,11,444,28,415], + 0x11E: [918,22,785,56,735], + 0x11F: [690,206,500,28,485], + 0x122: [705,290,785,56,735], + 0x123: [738,206,500,28,485], + 0x128: [829,0,361,15,348], + 0x129: [651,0,278,-27,306], + 0x12A: [787,0,361,1,362], + 0x12B: [620,0,278,-41,320], + 0x12E: [683,211,361,28,333], + 0x12F: [669,211,278,24,253], + 0x130: [864,0,361,28,333], + 0x132: [683,22,839,28,790], + 0x133: [657,205,556,33,461], + 0x136: [683,290,778,33,736], + 0x137: [694,290,528,28,511], + 0x139: [909,0,625,33,582], + 0x13A: [920,0,278,33,276], + 0x13B: [683,290,625,33,582], + 0x13C: [694,290,278,33,255], + 0x13D: [683,0,625,33,582], + 0x13E: [694,0,278,33,302], + 0x141: [683,0,625,33,582], + 0x142: [694,0,336,48,286], + 0x143: [909,0,750,33,716], + 0x144: [698,0,556,32,535], + 0x145: [683,290,750,33,716], + 0x146: [442,290,556,32,535], + 0x147: [869,0,750,33,716], + 0x148: [692,0,556,32,535], + 0x14A: [705,22,750,28,713], + 0x14B: [442,216,506,32,457], + 0x14C: [787,22,778,56,721], + 0x14D: [620,11,500,28,471], + 0x150: [932,22,778,56,721], + 0x151: [697,11,500,28,471], + 0x152: [705,22,1014,70,985], + 0x153: [448,11,778,28,749], + 0x154: [909,22,736,35,732], + 0x155: [698,0,392,28,364], + 0x156: [683,290,736,35,732], + 0x157: [442,290,392,28,364], + 0x158: [869,22,736,35,732], + 0x159: [692,0,392,28,364], + 0x15A: [909,22,556,56,499], + 0x15B: [698,11,394,33,360], + 0x15E: [705,200,556,56,499], + 0x15F: [448,200,394,33,360], + 0x160: [869,22,556,56,499], + 0x161: [692,11,394,33,360], + 0x162: [677,200,722,36,685], + 0x163: [615,200,389,19,347], + 0x164: [869,0,722,36,685], + 0x165: [692,11,389,19,332], + 0x168: [829,22,750,33,716], + 0x169: [651,11,556,32,535], + 0x16A: [787,22,750,33,716], + 0x16B: [620,11,556,32,535], + 0x16E: [892,22,750,33,716], + 0x16F: [705,11,556,32,535], + 0x170: [932,22,750,33,716], + 0x171: [697,11,556,32,535], + 0x172: [683,211,750,33,716], + 0x173: [442,211,556,32,555], + 0x178: [831,0,750,11,738], + 0x179: [909,0,611,56,560], + 0x17A: [698,0,444,28,401], + 0x17B: [864,0,611,56,560], + 0x17C: [657,0,444,28,401], + 0x17D: [869,0,611,56,560], + 0x17E: [692,0,444,28,401], + 0x17F: [705,0,306,33,357], + 0x1A0: [789,22,778,55,720], + 0x1A1: [536,11,500,28,488], + 0x1AF: [789,22,750,33,726], + 0x1B0: [536,11,556,32,571], + 0x218: [705,290,556,56,499], + 0x219: [448,290,394,33,360], + 0x21A: [677,290,722,36,685], + 0x21B: [615,290,389,19,332], + 0x1EA0: [716,200,750,32,717], + 0x1EA1: [448,200,500,32,483], + 0x1EA2: [967,0,750,32,717], + 0x1EA3: [709,11,500,32,483], + 0x1EA4: [1052,0,750,32,717], + 0x1EA5: [832,11,500,32,483], + 0x1EA6: [1052,0,750,32,717], + 0x1EA7: [832,11,500,32,483], + 0x1EA8: [1078,0,750,32,717], + 0x1EA9: [858,11,500,32,483], + 0x1EAA: [1002,0,750,32,717], + 0x1EAB: [782,11,500,32,483], + 0x1EAC: [869,200,750,32,717], + 0x1EAD: [692,200,500,32,483], + 0x1EAE: [1101,0,750,32,717], + 0x1EAF: [873,11,500,32,483], + 0x1EB0: [1101,0,750,32,717], + 0x1EB1: [873,11,500,32,483], + 0x1EB2: [1127,0,750,32,717], + 0x1EB3: [899,11,500,32,483], + 0x1EB4: [1051,0,750,32,717], + 0x1EB5: [823,11,500,32,483], + 0x1EB6: [918,200,750,32,717], + 0x1EB7: [690,200,500,32,483], + 0x1EB8: [680,200,681,33,652], + 0x1EB9: [448,200,444,28,415], + 0x1EBA: [967,0,681,33,652], + 0x1EBB: [709,11,444,28,415], + 0x1EBC: [829,0,681,33,652], + 0x1EBD: [651,11,444,28,415], + 0x1EBE: [1052,0,681,33,652], + 0x1EBF: [832,11,444,28,415], + 0x1EC0: [1052,0,681,33,652], + 0x1EC1: [832,11,444,28,415], + 0x1EC2: [1078,0,681,33,652], + 0x1EC3: [858,11,444,28,416], + 0x1EC4: [1002,0,681,33,652], + 0x1EC5: [782,11,444,28,415], + 0x1EC6: [869,200,681,33,652], + 0x1EC7: [692,200,444,28,415], + 0x1EC8: [967,0,361,28,333], + 0x1EC9: [709,0,278,33,247], + 0x1ECA: [683,200,361,28,333], + 0x1ECB: [657,200,278,33,247], + 0x1ECC: [705,200,778,56,721], + 0x1ECD: [448,200,500,28,471], + 0x1ECE: [967,22,778,56,721], + 0x1ECF: [709,11,500,28,471], + 0x1ED0: [1052,22,778,56,721], + 0x1ED1: [832,11,500,28,471], + 0x1ED2: [1052,22,778,56,721], + 0x1ED3: [832,11,500,28,471], + 0x1ED4: [1078,22,778,56,721], + 0x1ED5: [858,11,500,28,471], + 0x1ED6: [1002,22,778,56,721], + 0x1ED7: [782,11,500,28,471], + 0x1ED8: [869,200,778,56,721], + 0x1ED9: [692,200,500,28,471], + 0x1EDA: [909,22,778,55,720], + 0x1EDB: [698,11,500,28,488], + 0x1EDC: [909,22,778,55,720], + 0x1EDD: [698,11,500,28,488], + 0x1EDE: [967,22,778,55,720], + 0x1EDF: [709,11,500,28,488], + 0x1EE0: [829,22,778,55,720], + 0x1EE1: [651,11,500,28,488], + 0x1EE2: [789,200,778,55,720], + 0x1EE3: [536,200,500,28,488], + 0x1EE4: [683,200,750,33,716], + 0x1EE5: [442,200,556,32,535], + 0x1EE6: [967,22,750,33,716], + 0x1EE7: [709,11,556,32,535], + 0x1EE8: [909,22,750,33,726], + 0x1EE9: [698,11,556,32,571], + 0x1EEA: [909,22,750,33,726], + 0x1EEB: [698,11,556,32,571], + 0x1EEC: [967,22,750,33,726], + 0x1EED: [709,11,556,32,571], + 0x1EEE: [829,22,750,33,726], + 0x1EEF: [651,11,556,32,571], + 0x1EF0: [789,200,750,33,726], + 0x1EF1: [536,200,556,32,571], + 0x1EF2: [909,0,750,11,738], + 0x1EF3: [698,205,528,19,508], + 0x1EF4: [683,200,750,11,738], + 0x1EF5: [431,205,528,19,508], + 0x1EF6: [967,0,750,11,738], + 0x1EF7: [709,205,528,19,508], + 0x1EF8: [829,0,750,11,738], + 0x1EF9: [651,205,528,19,508], + 0xFB00: [705,0,583,27,628], + 0xFB01: [705,0,556,27,527], + 0xFB02: [705,0,556,27,527], + 0xFB03: [705,0,833,27,804], + 0xFB04: [705,0,833,27,804] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Latin"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Latin/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Main/Regular/Main.js new file mode 100644 index 0000000..cc50dc6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Main/Regular/Main.js @@ -0,0 +1,536 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Main'] = { + directory: 'Main/Regular', + family: 'LatinModernMathJax_Main', + testString: '\u00A0\u00A3\u00A5\u00A7\u00A8\u00AC\u00AE\u00AF\u00B0\u00B1\u00B4\u00B5\u00B7\u00D7\u00F0', + 0x20: [0,0,332,0,0], + 0x21: [716,0,278,86,192], + 0x22: [705,-423,374,103,270], + 0x23: [694,194,833,56,776], + 0x24: [750,56,500,56,443], + 0x25: [750,56,833,56,776], + 0x26: [716,22,778,42,727], + 0x27: [705,-423,278,103,174], + 0x28: [748,248,389,101,332], + 0x29: [748,248,389,57,288], + 0x2A: [750,-320,500,59,440], + 0x2B: [583,83,778,56,722], + 0x2C: [106,193,278,86,203], + 0x2D: [245,-187,333,11,276], + 0x2E: [106,0,278,86,192], + 0x2F: [750,250,500,56,445], + 0x30: [666,22,500,39,460], + 0x31: [666,0,500,89,419], + 0x32: [666,0,500,50,449], + 0x33: [666,22,500,42,457], + 0x34: [677,0,500,28,471], + 0x35: [666,22,500,50,449], + 0x36: [666,22,500,42,457], + 0x37: [676,22,500,56,485], + 0x38: [666,22,500,42,457], + 0x39: [666,22,500,42,457], + 0x3A: [431,0,278,86,192], + 0x3B: [431,193,278,86,195], + 0x3C: [547,47,778,77,700], + 0x3D: [367,-133,778,56,722], + 0x3E: [547,47,778,77,700], + 0x3F: [705,0,472,56,415], + 0x40: [705,11,778,56,721], + 0x41: [716,0,750,32,717], + 0x42: [683,0,708,36,651], + 0x43: [705,22,722,56,665], + 0x44: [683,0,764,35,707], + 0x45: [680,0,681,33,652], + 0x46: [680,0,653,33,610], + 0x47: [705,22,785,56,735], + 0x48: [683,0,750,33,716], + 0x49: [683,0,361,28,333], + 0x4A: [683,22,514,41,465], + 0x4B: [683,0,778,33,736], + 0x4C: [683,0,625,33,582], + 0x4D: [683,0,917,37,879], + 0x4E: [683,0,750,33,716], + 0x4F: [705,22,778,56,721], + 0x50: [683,0,681,35,624], + 0x51: [705,194,778,56,727], + 0x52: [683,22,736,35,732], + 0x53: [705,22,556,56,499], + 0x54: [677,0,722,36,685], + 0x55: [683,22,750,33,716], + 0x56: [683,22,750,19,730], + 0x57: [683,22,1028,18,1009], + 0x58: [683,0,750,24,726], + 0x59: [683,0,750,11,738], + 0x5A: [683,0,611,56,560], + 0x5B: [750,250,278,114,256], + 0x5C: [750,250,500,55,444], + 0x5D: [750,250,278,22,164], + 0x5E: [744,-562,556,-5,561], + 0x5F: [-100,140,333,0,333], + 0x60: [698,-510,500,126,312], + 0x61: [448,11,500,32,483], + 0x62: [694,11,556,28,521], + 0x63: [448,11,444,34,415], + 0x64: [694,11,556,34,527], + 0x65: [448,11,444,28,415], + 0x66: [705,0,306,33,357], + 0x67: [453,206,500,28,485], + 0x68: [694,0,556,32,535], + 0x69: [657,0,278,33,247], + 0x6A: [657,205,306,-40,210], + 0x6B: [694,0,528,28,511], + 0x6C: [694,0,278,33,255], + 0x6D: [442,0,833,32,813], + 0x6E: [442,0,556,32,535], + 0x6F: [448,11,500,28,471], + 0x70: [442,194,556,28,521], + 0x71: [442,194,528,34,527], + 0x72: [442,0,392,28,364], + 0x73: [448,11,394,33,360], + 0x74: [615,11,389,19,332], + 0x75: [442,11,556,32,535], + 0x76: [431,11,528,19,508], + 0x77: [431,11,722,18,703], + 0x78: [431,0,528,12,516], + 0x79: [431,205,528,19,508], + 0x7A: [431,0,444,28,401], + 0x7B: [750,250,500,75,425], + 0x7C: [750,250,278,119,159], + 0x7D: [750,250,500,75,425], + 0x7E: [307,-193,556,0,555], + 0xA0: [0,0,332,0,0], + 0xA3: [683,35,750,62,688], + 0xA5: [683,0,750,11,738], + 0xA7: [705,205,444,69,374], + 0xA8: [652,-557,500,113,388], + 0xAC: [367,-133,667,47,620], + 0xAE: [683,0,683,0,683], + 0xAF: [620,-589,500,70,431], + 0xB0: [683,-406,375,49,326], + 0xB1: [583,84,778,56,722], + 0xB4: [698,-510,500,188,374], + 0xB5: [441,194,556,32,534], + 0xB7: [303,-197,278,86,192], + 0xD7: [491,-9,778,148,630], + 0xF0: [695,11,500,28,471], + 0xF7: [504,4,778,56,722], + 0x131: [442,0,278,33,247], + 0x237: [442,205,306,-40,210], + 0x2C6: [692,-516,500,98,402], + 0x2C7: [692,-516,500,98,402], + 0x2D8: [690,-518,500,101,400], + 0x2D9: [657,-551,278,85,192], + 0x2DA: [705,-529,750,279,471], + 0x2DC: [651,-558,500,84,417], + 0x300: [733,-545,0,-388,-202], + 0x301: [733,-545,0,-326,-140], + 0x302: [734,-587,0,-446,-82], + 0x303: [746,-554,0,-449,-79], + 0x304: [640,-609,0,-444,-83], + 0x306: [729,-592,0,-451,-77], + 0x307: [677,-571,0,-318,-211], + 0x308: [672,-577,0,-401,-126], + 0x30A: [725,-549,0,-360,-168], + 0x30B: [732,-546,0,-386,-94], + 0x30C: [725,-578,0,-446,-82], + 0x338: [750,250,0,-458,-69], + 0x391: [716,0,750,32,717], + 0x392: [683,0,708,36,651], + 0x393: [680,0,625,33,582], + 0x394: [716,0,833,47,785], + 0x395: [680,0,681,33,652], + 0x396: [683,0,611,56,560], + 0x397: [683,0,750,33,716], + 0x398: [705,22,778,56,721], + 0x399: [683,0,361,28,333], + 0x39A: [683,0,778,33,736], + 0x39B: [716,0,694,32,661], + 0x39C: [683,0,917,37,879], + 0x39D: [683,0,750,33,716], + 0x39E: [677,0,667,42,624], + 0x39F: [705,22,778,56,721], + 0x3A0: [680,0,750,33,716], + 0x3A1: [683,0,681,35,624], + 0x3A3: [683,0,722,56,665], + 0x3A4: [677,0,722,36,685], + 0x3A5: [705,0,778,56,721], + 0x3A6: [683,0,722,56,665], + 0x3A7: [683,0,750,24,726], + 0x3A8: [683,0,778,57,720], + 0x3A9: [705,0,722,44,677], + 0x3B1: [442,11,641,57,637], + 0x3B2: [706,194,558,84,486], + 0x3B3: [442,215,586,29,515], + 0x3B4: [712,11,474,59,403], + 0x3B5: [453,22,535,59,420], + 0x3B6: [697,205,530,70,487], + 0x3B7: [442,216,530,2,465], + 0x3B8: [705,11,488,57,430], + 0x3B9: [442,11,308,50,304], + 0x3BA: [442,11,530,64,525], + 0x3BB: [694,13,537,19,563], + 0x3BC: [442,216,530,65,525], + 0x3BD: [442,0,502,-18,436], + 0x3BE: [697,205,530,70,484], + 0x3BF: [448,11,500,28,471], + 0x3C0: [431,11,586,3,516], + 0x3C1: [442,216,488,65,429], + 0x3C2: [442,108,474,69,425], + 0x3C3: [431,11,599,57,529], + 0x3C4: [431,12,530,3,460], + 0x3C5: [442,11,530,2,486], + 0x3C6: [442,218,641,42,597], + 0x3C7: [442,205,641,3,637], + 0x3C8: [694,205,641,2,597], + 0x3C9: [442,11,641,42,596], + 0x3D1: [705,11,530,2,523], + 0x3D5: [694,205,641,63,576], + 0x3D6: [431,11,836,3,766], + 0x3F0: [442,12,624,37,586], + 0x3F1: [442,194,488,64,429], + 0x3F4: [705,22,778,56,721], + 0x3F5: [431,11,414,67,421], + 0x2002: [0,0,500,0,0], + 0x2003: [0,0,1000,0,0], + 0x2004: [0,0,333,0,0], + 0x2005: [0,0,250,0,0], + 0x2006: [0,0,167,0,0], + 0x2009: [0,0,200,0,0], + 0x200A: [0,0,100,0,0], + 0x2013: [277,-255,500,0,499], + 0x2014: [277,-255,1000,0,999], + 0x2016: [750,250,398,111,287], + 0x2018: [693,-394,278,72,192], + 0x2019: [694,-395,278,86,206], + 0x201C: [693,-394,472,72,386], + 0x201D: [694,-395,472,86,400], + 0x2020: [705,216,444,56,387], + 0x2021: [705,205,444,56,387], + 0x2026: [106,0,837,87,751], + 0x2032: [748,-430,311,60,251], + 0x2033: [748,-430,511,60,451], + 0x2034: [748,-430,711,60,651], + 0x2035: [748,-430,311,60,251], + 0x2044: [750,250,500,56,445], + 0x2057: [748,-430,911,60,851], + 0x20D7: [711,-521,0,-472,-56], + 0x210F: [694,11,576,55,546], + 0x2111: [686,27,554,28,533], + 0x2113: [705,12,417,11,398], + 0x2118: [453,216,636,56,598], + 0x211C: [686,27,828,27,826], + 0x2127: [684,21,722,45,678], + 0x2135: [693,0,611,56,554], + 0x2136: [720,39,604,56,548], + 0x2137: [720,29,528,56,472], + 0x2138: [709,17,574,56,518], + 0x2190: [510,10,1000,57,942], + 0x2191: [679,203,500,20,480], + 0x2192: [510,10,1000,58,943], + 0x2193: [703,179,500,20,480], + 0x2194: [510,10,1000,58,942], + 0x2195: [757,257,500,20,480], + 0x2196: [714,203,1000,41,958], + 0x2197: [714,203,1000,42,959], + 0x2198: [703,214,1000,42,959], + 0x2199: [703,214,1000,41,958], + 0x219A: [510,10,997,56,941], + 0x219B: [510,10,997,56,941], + 0x219E: [510,10,1017,56,961], + 0x21A0: [510,10,1017,56,961], + 0x21A2: [510,10,1192,56,1136], + 0x21A3: [510,10,1192,56,1136], + 0x21A6: [510,10,977,56,921], + 0x21A9: [550,10,997,56,941], + 0x21AA: [550,10,997,56,941], + 0x21AB: [550,50,997,56,941], + 0x21AC: [550,50,997,56,941], + 0x21AD: [510,10,996,56,940], + 0x21AE: [510,10,996,56,940], + 0x21B0: [679,179,564,56,508], + 0x21B1: [679,179,564,56,508], + 0x21B6: [562,-229,980,56,924], + 0x21B7: [562,-229,980,56,924], + 0x21BA: [696,59,764,56,708], + 0x21BB: [696,59,764,55,708], + 0x21BC: [503,-230,1000,50,950], + 0x21BD: [270,3,1012,56,956], + 0x21BE: [697,203,441,112,385], + 0x21BF: [697,203,441,56,329], + 0x21C0: [503,-230,1000,50,950], + 0x21C1: [270,3,1012,56,956], + 0x21C2: [703,197,441,112,385], + 0x21C3: [703,197,441,56,329], + 0x21C4: [672,172,1018,56,962], + 0x21C6: [672,172,1018,56,962], + 0x21C7: [750,250,997,56,941], + 0x21C8: [679,203,992,56,936], + 0x21C9: [750,250,997,56,941], + 0x21CA: [703,179,992,56,936], + 0x21CB: [600,100,1018,56,962], + 0x21CC: [600,100,1018,56,962], + 0x21CD: [520,20,991,56,935], + 0x21CE: [520,20,1068,56,1012], + 0x21CF: [520,20,991,56,935], + 0x21D0: [520,20,1000,61,940], + 0x21D1: [676,203,611,36,576], + 0x21D2: [520,20,1000,60,939], + 0x21D3: [703,176,611,36,576], + 0x21D4: [520,20,1000,22,978], + 0x21D5: [728,228,611,36,576], + 0x21DA: [617,117,1015,56,959], + 0x21DB: [617,117,1015,56,959], + 0x21DD: [510,10,997,56,941], + 0x2200: [684,-2,666,43,621], + 0x2201: [684,0,556,56,500], + 0x2202: [716,22,586,56,528], + 0x2203: [684,0,556,56,500], + 0x2204: [789,105,556,56,500], + 0x2205: [772,78,500,47,452], + 0x2207: [683,33,833,47,785], + 0x2208: [543,43,667,81,587], + 0x2209: [730,230,667,81,587], + 0x220B: [543,43,667,79,586], + 0x220D: [443,-57,498,55,442], + 0x2212: [270,-230,778,56,722], + 0x2213: [584,83,778,56,722], + 0x2214: [785,83,778,56,722], + 0x2215: [603,103,568,56,512], + 0x2216: [603,103,568,56,512], + 0x2217: [462,-39,500,62,437], + 0x2218: [400,-100,412,56,356], + 0x2219: [445,-55,500,55,445], + 0x221A: [40,960,833,73,853], + 0x221D: [442,11,778,56,722], + 0x221E: [442,11,1000,56,943], + 0x2220: [724,-13,778,56,722], + 0x2221: [724,109,778,56,722], + 0x2222: [562,62,778,82,696], + 0x2223: [750,250,278,119,159], + 0x2224: [750,250,388,56,332], + 0x2225: [750,250,500,133,367], + 0x2226: [750,250,556,56,500], + 0x2227: [601,20,667,68,598], + 0x2228: [601,20,667,68,598], + 0x2229: [604,20,667,61,607], + 0x222A: [604,20,667,61,607], + 0x222B: [805,306,665,56,609], + 0x2234: [416,-84,516,75,441], + 0x2235: [416,-84,516,75,441], + 0x223C: [366,-134,773,56,717], + 0x223D: [366,-134,773,56,717], + 0x2240: [583,83,280,56,224], + 0x2241: [482,-18,773,56,717], + 0x2242: [380,-32,778,56,722], + 0x2243: [468,-120,778,56,722], + 0x2245: [552,-36,778,56,722], + 0x2246: [614,48,778,56,722], + 0x2248: [457,-43,773,56,717], + 0x224A: [541,-36,778,56,722], + 0x224D: [498,-2,778,56,722], + 0x224E: [490,-10,778,56,722], + 0x224F: [490,-133,778,56,722], + 0x2250: [601,-133,778,56,722], + 0x2251: [601,101,778,56,722], + 0x2252: [601,101,778,56,722], + 0x2253: [601,101,778,56,722], + 0x2256: [367,-133,778,56,722], + 0x2257: [730,-133,778,56,722], + 0x225C: [810,-133,778,56,722], + 0x2260: [730,230,778,56,722], + 0x2261: [464,-36,778,56,722], + 0x2264: [631,119,778,76,702], + 0x2265: [631,119,778,75,702], + 0x2266: [715,203,778,76,702], + 0x2267: [715,203,778,75,702], + 0x2268: [715,287,778,76,702], + 0x2269: [715,287,778,75,702], + 0x226A: [547,47,1000,79,920], + 0x226B: [547,47,1000,79,921], + 0x226C: [770,270,434,56,378], + 0x226E: [730,230,778,77,700], + 0x226F: [730,230,778,77,700], + 0x2270: [730,230,778,76,702], + 0x2271: [730,230,778,75,702], + 0x2272: [636,125,776,55,719], + 0x2273: [636,125,776,55,719], + 0x2276: [736,236,778,76,701], + 0x2277: [736,236,778,76,701], + 0x227A: [547,47,778,76,702], + 0x227B: [547,47,778,76,702], + 0x227C: [639,139,738,56,682], + 0x227D: [639,139,738,56,682], + 0x227E: [682,170,773,56,717], + 0x227F: [682,170,773,56,717], + 0x2280: [730,230,778,76,702], + 0x2281: [730,230,778,76,702], + 0x2282: [543,43,778,85,693], + 0x2283: [543,43,778,85,693], + 0x2286: [627,127,778,85,693], + 0x2287: [627,127,778,85,693], + 0x2288: [730,230,778,85,693], + 0x2289: [730,230,778,85,693], + 0x228A: [627,211,778,85,693], + 0x228B: [627,211,778,85,693], + 0x228E: [604,20,667,61,607], + 0x228F: [543,43,778,76,702], + 0x2290: [543,43,778,76,702], + 0x2291: [627,127,778,76,702], + 0x2292: [627,127,778,76,702], + 0x2293: [604,20,667,80,587], + 0x2294: [604,20,667,80,587], + 0x2295: [592,92,778,47,731], + 0x2296: [592,92,778,47,731], + 0x2297: [592,92,778,47,731], + 0x2298: [592,92,778,47,731], + 0x2299: [592,92,778,47,731], + 0x229A: [592,92,796,56,740], + 0x229B: [592,92,796,56,740], + 0x229D: [592,92,796,56,740], + 0x229E: [583,83,778,56,722], + 0x229F: [583,83,778,56,722], + 0x22A0: [583,83,778,56,722], + 0x22A1: [583,83,778,56,722], + 0x22A2: [684,0,611,56,556], + 0x22A3: [684,0,611,55,555], + 0x22A4: [664,20,778,56,722], + 0x22A5: [684,0,778,56,722], + 0x22A8: [684,0,612,56,556], + 0x22A9: [684,0,673,56,617], + 0x22AA: [684,0,841,56,785], + 0x22AC: [684,0,565,56,509], + 0x22AD: [684,0,732,56,676], + 0x22AE: [684,0,793,56,737], + 0x22AF: [684,0,773,56,717], + 0x22B2: [547,47,738,56,682], + 0x22B3: [547,47,738,56,682], + 0x22B4: [605,105,738,56,682], + 0x22B5: [605,105,738,56,682], + 0x22B8: [400,-100,948,56,892], + 0x22BA: [664,20,778,56,722], + 0x22BB: [568,136,642,56,586], + 0x22BC: [684,20,642,55,585], + 0x22C4: [480,-20,500,20,480], + 0x22C5: [303,-197,278,86,192], + 0x22C6: [486,-13,500,2,497], + 0x22C8: [505,5,623,56,566], + 0x22C9: [505,5,623,56,566], + 0x22CA: [505,5,623,57,567], + 0x22CB: [505,5,623,56,566], + 0x22CC: [505,5,623,57,567], + 0x22CD: [468,-120,778,56,722], + 0x22CE: [584,20,733,56,677], + 0x22CF: [584,20,733,56,677], + 0x22D0: [543,43,698,56,642], + 0x22D1: [543,43,698,56,642], + 0x22D2: [604,20,658,56,602], + 0x22D3: [604,20,658,56,602], + 0x22D6: [547,47,778,77,700], + 0x22D7: [547,47,778,77,700], + 0x22D8: [547,47,1285,56,1229], + 0x22D9: [547,47,1285,55,1229], + 0x22DA: [848,348,778,76,702], + 0x22DB: [848,348,778,76,702], + 0x22DE: [639,139,738,56,682], + 0x22DF: [639,139,738,56,682], + 0x22E0: [730,230,738,56,682], + 0x22E1: [730,230,738,56,682], + 0x22E6: [668,241,776,55,719], + 0x22E7: [636,209,776,55,719], + 0x22E8: [682,254,773,56,717], + 0x22E9: [682,254,773,56,717], + 0x22EA: [730,230,738,56,682], + 0x22EB: [730,230,738,56,682], + 0x22EC: [730,230,738,56,682], + 0x22ED: [730,230,738,56,682], + 0x22EE: [582,82,218,56,162], + 0x22EF: [303,-197,776,56,720], + 0x22F1: [500,0,613,57,557], + 0x2308: [750,250,444,174,416], + 0x2309: [750,250,444,28,270], + 0x230A: [750,250,444,174,416], + 0x230B: [750,250,444,28,270], + 0x2322: [381,-130,1000,55,944], + 0x2323: [371,-133,1000,55,944], + 0x23B4: [726,-552,360,0,360], + 0x23B5: [-122,296,360,0,360], + 0x23D0: [642,0,333,145,188], + 0x23DC: [727,-572,504,0,504], + 0x23DD: [-142,297,504,0,504], + 0x23DE: [783,-539,492,0,492], + 0x23DF: [-109,353,492,0,492], + 0x23E0: [829,-657,546,0,546], + 0x23E1: [-227,399,546,0,546], + 0x250C: [274,270,666,308,686], + 0x2510: [274,270,666,-20,357], + 0x2514: [770,-225,666,308,686], + 0x2518: [770,-225,666,-20,357], + 0x25A0: [583,83,778,56,722], + 0x25A1: [583,83,778,56,722], + 0x25B2: [741,5,968,56,912], + 0x25B3: [741,5,968,56,912], + 0x25B6: [678,178,858,56,802], + 0x25BC: [505,241,968,56,912], + 0x25BD: [505,241,968,56,912], + 0x25C0: [678,178,858,56,802], + 0x25CA: [610,110,572,56,516], + 0x25EF: [701,201,1013,56,957], + 0x2660: [727,130,778,56,722], + 0x2661: [716,33,778,56,722], + 0x2662: [727,163,778,56,722], + 0x2663: [727,130,778,28,750], + 0x266D: [750,22,388,55,333], + 0x266E: [728,217,388,79,309], + 0x266F: [716,216,388,55,333], + 0x2713: [699,27,833,84,748], + 0x2720: [684,0,796,56,740], + 0x27E8: [750,250,389,110,336], + 0x27E9: [750,250,389,53,279], + 0x27EE: [762,262,287,98,231], + 0x27EF: [762,262,287,56,189], + 0x27F5: [510,10,1463,56,1407], + 0x27F6: [510,10,1463,56,1407], + 0x27F7: [510,10,1442,56,1386], + 0x27F8: [520,20,1457,56,1401], + 0x27F9: [520,20,1457,56,1401], + 0x27FA: [520,20,1534,56,1478], + 0x27FC: [510,10,1443,56,1387], + 0x2A3F: [683,0,750,36,713], + 0x2A7D: [634,134,778,76,702], + 0x2A7E: [634,134,778,75,702], + 0x2A85: [717,205,776,55,719], + 0x2A86: [717,205,776,55,720], + 0x2A87: [667,167,778,76,702], + 0x2A88: [667,167,778,75,702], + 0x2A89: [749,321,776,55,719], + 0x2A8A: [717,289,776,55,720], + 0x2A8B: [972,472,778,76,702], + 0x2A8C: [972,472,778,76,702], + 0x2A95: [629,129,778,76,702], + 0x2A96: [629,129,778,75,702], + 0x2AAF: [631,119,778,76,702], + 0x2AB0: [631,119,778,76,702] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Main"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Marks/Regular/Main.js new file mode 100644 index 0000000..c2e9eaa --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Marks/Regular/Main.js @@ -0,0 +1,107 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'LatinModernMathJax_Marks', + testString: '\u00A0\u02DB\u02DD\u0305\u0309\u030F\u0311\u0323\u0326\u032C\u032D\u032E\u032F\u0330\u0331', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x2DB: [5,211,500,135,364], + 0x2DD: [697,-511,500,128,420], + 0x305: [670,-630,0,-460,-68], + 0x309: [729,-520,0,-361,-167], + 0x30F: [732,-546,0,-434,-142], + 0x311: [742,-605,0,-451,-77], + 0x323: [-94,200,0,-318,-211], + 0x326: [-66,290,0,-308,-220], + 0x32C: [-96,243,0,-446,-82], + 0x32D: [-108,255,0,-446,-82], + 0x32E: [-96,233,0,-451,-77], + 0x32F: [-118,255,0,-451,-77], + 0x330: [-118,310,0,-449,-79], + 0x331: [-131,162,0,-444,-83], + 0x332: [-103,143,0,-460,-68], + 0x333: [-103,293,0,-460,-68], + 0x33F: [820,-630,0,-460,-68], + 0x2000: [0,0,500,0,0], + 0x2001: [0,0,1000,0,0], + 0x2007: [0,0,500,0,0], + 0x2008: [0,0,250,0,0], + 0x200B: [0,0,0,0,0], + 0x200C: [0,0,0,0,0], + 0x200D: [0,0,0,0,0], + 0x2010: [245,-187,333,11,276], + 0x2012: [342,-302,680,56,624], + 0x2015: [270,-230,1152,56,1096], + 0x2017: [-103,293,504,56,448], + 0x201A: [104,195,278,79,199], + 0x201E: [104,195,472,86,400], + 0x2022: [445,-55,500,55,445], + 0x202F: [0,0,200,0,0], + 0x2030: [750,56,1140,53,1087], + 0x2031: [750,56,1457,56,1417], + 0x2036: [748,-430,511,60,451], + 0x2037: [748,-430,711,60,651], + 0x2039: [483,0,389,111,277], + 0x203A: [483,0,389,112,278], + 0x203B: [492,-8,778,147,630], + 0x203D: [756,0,472,43,402], + 0x2052: [751,-1,500,56,444], + 0x205F: [0,0,222,0,0], + 0x2060: [0,0,0,0,0], + 0x2061: [640,240,960,40,920], + 0x2062: [0,0,0,0,0], + 0x2063: [0,0,0,0,0], + 0x2064: [0,0,0,0,0], + 0x20D0: [711,-601,0,-475,-53], + 0x20D1: [711,-601,0,-475,-53], + 0x20D2: [750,250,0,-284,-244], + 0x20D3: [520,20,0,-284,-244], + 0x20D4: [751,-589,0,-473,-55], + 0x20D5: [751,-589,0,-473,-55], + 0x20D6: [711,-521,0,-472,-56], + 0x20D8: [400,-100,0,-414,-114], + 0x20DB: [696,-604,0,-530,2], + 0x20DC: [696,-604,0,-640,112], + 0x20DD: [772,272,0,-786,258], + 0x20DE: [750,250,0,-764,236], + 0x20DF: [1028,528,0,-1042,514], + 0x20E1: [711,-521,0,-499,-29], + 0x20E4: [831,311,0,-924,396], + 0x20E5: [750,250,0,-458,-69], + 0x20E6: [750,250,0,-352,-176], + 0x20E8: [-96,188,0,-530,2], + 0x20E9: [726,-552,0,-444,-84], + 0x20EA: [510,10,0,-706,178], + 0x20EB: [750,250,0,-531,3], + 0x20EC: [-171,281,0,-475,-53], + 0x20ED: [-171,281,0,-475,-53], + 0x20EE: [-91,281,0,-472,-56], + 0x20EF: [-91,281,0,-472,-56], + 0x20F0: [827,-518,0,-401,-126], + 0x2E18: [500,256,472,56,415], + 0x3016: [770,270,458,56,402], + 0x3017: [770,270,458,57,402] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Marks"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Marks/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Misc/Regular/Main.js new file mode 100644 index 0000000..edc02ed --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Misc/Regular/Main.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'LatinModernMathJax_Misc', + testString: '\u00A0\u20A1\u20AC\u275A\u27A1', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x20A1: [728,45,722,56,665], + 0x20AC: [705,22,627,54,571], + 0x275A: [694,83,525,227,297], + 0x27A1: [468,-31,977,56,921] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Misc"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Misc/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Monospace/Regular/Main.js new file mode 100644 index 0000000..2f89675 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Monospace/Regular/Main.js @@ -0,0 +1,93 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'LatinModernMathJax_Monospace', + testString: '\u00A0\uD835\uDE70\uD835\uDE71\uD835\uDE72\uD835\uDE73\uD835\uDE74\uD835\uDE75\uD835\uDE76\uD835\uDE77\uD835\uDE78\uD835\uDE79\uD835\uDE7A\uD835\uDE7B\uD835\uDE7C\uD835\uDE7D', + 0x20: [0,0,525,0,0], + 0xA0: [0,0,525,0,0], + 0x1D670: [623,0,525,27,497], + 0x1D671: [611,0,525,23,482], + 0x1D672: [622,11,525,40,484], + 0x1D673: [611,0,525,19,485], + 0x1D674: [611,0,525,26,502], + 0x1D675: [611,0,525,28,490], + 0x1D676: [622,11,525,38,496], + 0x1D677: [611,0,525,22,502], + 0x1D678: [611,0,525,79,446], + 0x1D679: [611,11,525,71,478], + 0x1D67A: [611,0,525,26,495], + 0x1D67B: [611,0,525,32,488], + 0x1D67C: [611,0,525,17,507], + 0x1D67D: [611,0,525,28,496], + 0x1D67E: [622,11,525,56,468], + 0x1D67F: [611,0,525,26,480], + 0x1D680: [622,139,525,56,468], + 0x1D681: [611,11,525,22,522], + 0x1D682: [622,11,525,52,472], + 0x1D683: [611,0,525,26,498], + 0x1D684: [611,11,525,4,520], + 0x1D685: [611,8,525,18,506], + 0x1D686: [611,8,525,11,513], + 0x1D687: [611,0,525,27,496], + 0x1D688: [611,0,525,19,505], + 0x1D689: [611,0,525,48,481], + 0x1D68A: [440,6,525,50,519], + 0x1D68B: [611,6,525,12,488], + 0x1D68C: [440,6,525,73,466], + 0x1D68D: [611,6,525,36,512], + 0x1D68E: [440,6,525,55,464], + 0x1D68F: [617,0,525,42,437], + 0x1D690: [442,229,525,29,509], + 0x1D691: [611,0,525,12,512], + 0x1D692: [605,0,525,78,455], + 0x1D693: [605,228,525,48,369], + 0x1D694: [611,0,525,21,508], + 0x1D695: [611,0,525,58,467], + 0x1D696: [437,0,525,-4,516], + 0x1D697: [437,0,525,12,512], + 0x1D698: [440,6,525,57,467], + 0x1D699: [437,222,525,12,488], + 0x1D69A: [437,222,525,40,537], + 0x1D69B: [437,0,525,32,487], + 0x1D69C: [440,6,525,72,459], + 0x1D69D: [554,6,525,25,449], + 0x1D69E: [431,6,525,12,512], + 0x1D69F: [431,4,525,24,500], + 0x1D6A0: [431,4,525,16,508], + 0x1D6A1: [431,0,525,27,496], + 0x1D6A2: [431,228,525,26,500], + 0x1D6A3: [431,0,525,33,475], + 0x1D7F6: [622,11,525,50,474], + 0x1D7F7: [622,0,525,105,442], + 0x1D7F8: [622,0,525,52,472], + 0x1D7F9: [622,11,525,44,480], + 0x1D7FA: [623,0,525,29,495], + 0x1D7FB: [611,11,525,52,472], + 0x1D7FC: [622,11,525,53,471], + 0x1D7FD: [627,11,525,44,480], + 0x1D7FE: [622,11,525,44,480], + 0x1D7FF: [622,11,525,53,471] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Monospace"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Monospace/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..8fc2f53 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/NonUnicode/Regular/Main.js @@ -0,0 +1,2064 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'LatinModernMathJax_NonUnicode', + testString: '\u00A0\uE000\uE001\uE002\uE003\uE004\uE005\uE006\uE007\uE008\uE009\uE00A\uE00B\uE00C\uE00D', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0xE000: [907,0,981,71,909], + 0xE001: [694,9,1021,72,957], + 0xE002: [695,10,1180,97,1091], + 0xE003: [442,11,1361,125,1236], + 0xE004: [705,205,667,143,524], + 0xE005: [705,216,667,125,543], + 0xE006: [705,205,667,125,543], + 0xE007: [694,194,875,125,784], + 0xE008: [441,10,1139,78,1060], + 0xE009: [704,204,524,93,430], + 0xE00A: [704,214,524,78,445], + 0xE00B: [704,204,524,78,445], + 0xE00C: [694,194,708,78,660], + 0xE00D: [485,-19,500,5,495], + 0xE00E: [-66,290,500,206,294], + 0xE00F: [683,0,683,0,683], + 0xE010: [697,-511,500,80,372], + 0xE011: [603,25,500,44,455], + 0xE012: [-94,200,278,85,192], + 0xE013: [705,0,816,27,791], + 0xE014: [705,22,1111,56,1055], + 0xE015: [709,-500,500,153,347], + 0xE016: [746,50,1000,-12,1011], + 0xE017: [347,56,392,57,334], + 0xE018: [277,-255,750,0,749], + 0xE019: [114,0,556,0,555], + 0xE01A: [278,-256,667,0,666], + 0xE01B: [-131,162,500,70,431], + 0xE01C: [716,0,981,71,909], + 0xE01D: [448,11,681,72,635], + 0xE01E: [698,-502,681,262,496], + 0xE01F: [683,0,1178,72,1114], + 0xE020: [448,11,958,86,894], + 0xE021: [716,22,1028,80,936], + 0xE022: [716,245,981,71,909], + 0xE023: [448,245,681,72,635], + 0xE024: [744,-562,556,-5,561], + 0xE025: [307,-193,556,0,555], + 0xE026: [705,11,1028,97,930], + 0xE027: [683,0,935,87,837], + 0xE028: [694,11,750,76,677], + 0xE029: [694,11,750,76,677], + 0xE02A: [494,-10,680,87,592], + 0xE02B: [690,-511,681,150,530], + 0xE02C: [750,250,458,201,257], + 0xE02D: [705,22,958,97,860], + 0xE02E: [448,11,611,72,547], + 0xE02F: [688,-512,681,188,492], + 0xE030: [705,200,958,97,860], + 0xE031: [448,200,611,72,547], + 0xE032: [6,200,611,122,489], + 0xE033: [497,66,611,72,547], + 0xE034: [688,-512,681,188,492], + 0xE035: [431,0,403,140,262], + 0xE036: [749,66,958,97,860], + 0xE037: [-66,303,681,289,391], + 0xE038: [683,0,683,0,683], + 0xE039: [683,0,683,0,683], + 0xE03A: [553,53,1028,210,817], + 0xE03B: [683,0,1004,85,906], + 0xE03C: [694,11,750,72,673], + 0xE03D: [698,-503,681,127,496], + 0xE03E: [683,-336,510,82,429], + 0xE03F: [603,25,680,81,626], + 0xE040: [655,-545,681,184,496], + 0xE041: [751,-1,680,98,582], + 0xE042: [606,104,680,-211,890], + 0xE043: [750,56,681,97,583], + 0xE044: [661,-539,403,140,262], + 0xE045: [-78,200,403,140,262], + 0xE046: [442,0,403,83,326], + 0xE047: [442,205,438,-10,294], + 0xE048: [679,0,900,83,836], + 0xE049: [448,11,611,65,547], + 0xE04A: [666,22,681,80,600], + 0xE04B: [283,-250,1361,56,1304], + 0xE04C: [283,-250,681,28,652], + 0xE04D: [705,22,981,77,933], + 0xE04E: [442,216,675,82,600], + 0xE04F: [679,245,900,83,836], + 0xE050: [448,245,611,65,547], + 0xE051: [701,10,895,63,831], + 0xE052: [683,0,1004,85,906], + 0xE053: [710,11,681,65,614], + 0xE054: [716,0,403,140,262], + 0xE055: [500,216,403,140,262], + 0xE056: [679,0,865,83,784], + 0xE057: [705,0,438,70,468], + 0xE058: [705,0,1152,63,1103], + 0xE059: [705,0,875,70,906], + 0xE05A: [705,0,1230,70,1147], + 0xE05B: [705,0,1232,70,1160], + 0xE05C: [705,0,840,70,764], + 0xE05D: [666,22,681,91,589], + 0xE05E: [705,0,840,70,772], + 0xE05F: [677,0,681,63,617], + 0xE060: [705,22,1033,97,946], + 0xE061: [453,206,681,63,635], + 0xE062: [705,22,1500,97,1402], + 0xE063: [705,11,681,76,617], + 0xE064: [500,275,646,97,548], + 0xE065: [698,-502,681,185,419], + 0xE066: [683,0,981,83,897], + 0xE067: [694,0,750,82,683], + 0xE068: [701,-500,681,219,462], + 0xE069: [698,-503,681,185,554], + 0xE06A: [254,-177,472,42,374], + 0xE06B: [683,0,494,77,417], + 0xE06C: [683,22,1137,77,1041], + 0xE06D: [661,205,800,83,657], + 0xE06E: [775,0,646,80,531], + 0xE06F: [683,245,494,77,417], + 0xE070: [677,245,403,67,335], + 0xE071: [683,22,692,96,596], + 0xE072: [683,0,1015,83,934], + 0xE073: [694,0,715,76,665], + 0xE074: [683,0,831,83,750], + 0xE075: [694,0,403,83,334], + 0xE076: [789,94,1305,11,1293], + 0xE077: [705,0,438,70,468], + 0xE078: [683,0,831,83,750], + 0xE079: [694,0,476,107,384], + 0xE07A: [683,0,1189,89,1099], + 0xE07B: [442,0,1097,82,1031], + 0xE07C: [622,-578,681,115,565], + 0xE07D: [467,-36,680,-72,751], + 0xE07E: [441,194,750,82,683], + 0xE07F: [695,38,764,69,695], + 0xE080: [683,0,981,83,897], + 0xE081: [442,0,750,82,683], + 0xE082: [666,22,681,80,600], + 0xE083: [694,194,1097,97,999], + 0xE084: [705,22,1028,97,930], + 0xE085: [448,11,681,65,615], + 0xE086: [705,22,1317,108,1253], + 0xE087: [448,11,1028,65,964], + 0xE088: [6,245,681,206,474], + 0xE089: [805,22,1028,97,927], + 0xE08A: [553,11,680,64,631], + 0xE08B: [666,0,681,143,554], + 0xE08C: [705,-323,611,69,542], + 0xE08D: [705,-323,571,55,517], + 0xE08E: [744,61,1028,97,930], + 0xE08F: [538,107,681,70,610], + 0xE090: [683,0,900,85,802], + 0xE091: [442,194,750,76,677], + 0xE092: [750,56,1097,97,999], + 0xE093: [750,56,1828,97,1772], + 0xE094: [750,56,1425,74,1352], + 0xE095: [347,56,544,98,445], + 0xE096: [442,11,1083,125,958], + 0xE097: [683,0,683,0,683], + 0xE098: [705,194,1028,97,937], + 0xE099: [442,194,715,72,673], + 0xE09A: [705,0,646,97,548], + 0xE09B: [500,205,646,97,548], + 0xE09C: [705,-423,533,156,375], + 0xE09D: [694,-378,403,123,262], + 0xE09E: [694,-378,403,140,279], + 0xE09F: [124,192,403,132,271], + 0xE0A0: [705,-423,403,156,245], + 0xE0A1: [683,22,969,85,937], + 0xE0A2: [442,0,542,76,479], + 0xE0A3: [683,22,969,85,937], + 0xE0A4: [554,53,1028,210,817], + 0xE0A5: [683,0,683,0,683], + 0xE0A6: [705,-529,981,365,615], + 0xE0A7: [705,22,750,97,652], + 0xE0A8: [448,11,549,70,478], + 0xE0A9: [705,200,750,97,652], + 0xE0AA: [448,200,549,70,478], + 0xE0AB: [431,194,403,140,265], + 0xE0AC: [683,-247,1163,58,1051], + 0xE0AD: [676,22,681,97,635], + 0xE0AE: [666,22,681,80,600], + 0xE0AF: [683,35,981,77,904], + 0xE0B0: [675,0,958,73,884], + 0xE0B1: [615,11,542,51,444], + 0xE0B2: [682,-1,831,87,732], + 0xE0B3: [694,194,750,76,677], + 0xE0B4: [666,22,681,80,600], + 0xE0B5: [283,-250,1021,42,978], + 0xE0B6: [653,-548,681,132,548], + 0xE0B7: [114,0,556,0,555], + 0xE0B8: [688,-278,1288,44,1190], + 0xE0B9: [284,-250,944,56,887], + 0xE0BA: [666,0,681,91,589], + 0xE0BB: [683,22,981,83,897], + 0xE0BC: [442,11,750,82,683], + 0xE0BD: [805,22,980,83,914], + 0xE0BE: [553,11,750,81,732], + 0xE0BF: [-100,156,436,0,436], + 0xE0C0: [683,245,981,83,897], + 0xE0C1: [442,245,750,82,703], + 0xE0C2: [683,22,981,55,925], + 0xE0C3: [431,11,715,56,658], + 0xE0C4: [683,22,1328,53,1274], + 0xE0C5: [431,11,958,54,903], + 0xE0C6: [683,0,981,65,916], + 0xE0C7: [431,0,715,52,663], + 0xE0C8: [683,0,981,49,931], + 0xE0C9: [431,205,715,52,658], + 0xE0CA: [683,0,981,49,931], + 0xE0CB: [683,0,819,97,727], + 0xE0CC: [431,0,611,63,530], + 0xE0CD: [666,22,681,79,601], + 0xE0CE: [705,22,782,66,713], + 0xE0CF: [483,0,750,167,584], + 0xE0D0: [483,0,750,166,583], + 0xE0D1: [483,0,486,139,348], + 0xE0D2: [483,0,486,138,347], + 0xE0D3: [254,109,681,80,601], + 0xE0D4: [661,0,403,83,326], + 0xE0D5: [661,205,438,-10,294], + 0xE0D6: [-117,161,681,115,565], + 0xE0D7: [911,0,981,71,909], + 0xE0D8: [698,11,681,72,635], + 0xE0D9: [925,0,981,71,909], + 0xE0DA: [690,11,681,72,635], + 0xE0DB: [1110,0,981,71,909], + 0xE0DC: [875,11,681,72,635], + 0xE0DD: [925,200,981,71,909], + 0xE0DE: [690,200,681,72,635], + 0xE0DF: [1110,0,981,71,909], + 0xE0E0: [875,11,681,72,635], + 0xE0E1: [1126,0,981,71,909], + 0xE0E2: [891,11,681,72,635], + 0xE0E3: [1070,0,981,71,909], + 0xE0E4: [835,11,681,72,635], + 0xE0E5: [869,0,981,71,909], + 0xE0E6: [688,11,681,72,635], + 0xE0E7: [1054,0,981,71,909], + 0xE0E8: [830,11,681,72,635], + 0xE0E9: [869,200,981,71,909], + 0xE0EA: [688,200,681,72,635], + 0xE0EB: [1054,0,981,71,909], + 0xE0EC: [830,11,681,72,635], + 0xE0ED: [1070,0,981,71,909], + 0xE0EE: [846,11,681,72,635], + 0xE0EF: [1014,0,981,71,909], + 0xE0F0: [790,11,681,72,635], + 0xE0F1: [846,0,981,71,909], + 0xE0F2: [655,11,681,72,635], + 0xE0F3: [716,200,981,71,909], + 0xE0F4: [448,200,681,72,635], + 0xE0F5: [911,0,981,71,909], + 0xE0F6: [698,11,681,72,635], + 0xE0F7: [959,0,981,71,909], + 0xE0F8: [701,11,681,72,635], + 0xE0F9: [800,0,981,71,909], + 0xE0FA: [622,11,681,72,635], + 0xE0FB: [705,11,681,72,635], + 0xE0FC: [841,0,981,71,909], + 0xE0FD: [653,11,681,72,635], + 0xE0FE: [911,22,958,97,860], + 0xE0FF: [698,11,611,72,547], + 0xE100: [869,22,958,97,860], + 0xE101: [688,11,611,72,547], + 0xE102: [869,0,1004,85,906], + 0xE103: [694,11,750,72,738], + 0xE104: [911,0,900,83,836], + 0xE105: [698,11,611,65,547], + 0xE106: [869,0,900,83,836], + 0xE107: [688,11,611,65,547], + 0xE108: [869,0,900,83,836], + 0xE109: [688,11,611,65,547], + 0xE10A: [1054,0,900,83,836], + 0xE10B: [830,11,611,65,547], + 0xE10C: [869,200,900,83,836], + 0xE10D: [688,200,611,65,547], + 0xE10E: [1054,0,900,83,836], + 0xE10F: [830,11,611,65,547], + 0xE110: [1070,0,900,83,836], + 0xE111: [846,11,611,65,548], + 0xE112: [1014,0,900,83,836], + 0xE113: [790,11,611,65,547], + 0xE114: [846,0,900,83,836], + 0xE115: [655,11,611,65,547], + 0xE116: [880,0,900,83,836], + 0xE117: [661,11,611,65,547], + 0xE118: [679,200,900,83,836], + 0xE119: [448,200,611,65,547], + 0xE11A: [911,0,900,83,836], + 0xE11B: [698,11,611,65,547], + 0xE11C: [959,0,900,83,836], + 0xE11D: [701,11,611,65,547], + 0xE11E: [800,0,900,83,836], + 0xE11F: [622,11,611,65,547], + 0xE120: [841,0,900,83,836], + 0xE121: [653,11,611,65,547], + 0xE122: [925,22,1033,97,946], + 0xE123: [690,206,681,63,635], + 0xE124: [705,303,1033,97,946], + 0xE125: [741,206,681,63,635], + 0xE126: [911,0,494,77,417], + 0xE127: [698,0,403,83,357], + 0xE128: [869,0,494,77,417], + 0xE129: [688,0,403,49,353], + 0xE12A: [846,0,494,73,421], + 0xE12B: [655,0,403,45,357], + 0xE12C: [880,0,494,77,417], + 0xE12D: [683,200,494,77,417], + 0xE12E: [661,200,403,83,326], + 0xE12F: [911,0,494,77,417], + 0xE130: [698,0,403,46,326], + 0xE131: [959,0,494,77,417], + 0xE132: [701,0,403,80,326], + 0xE133: [800,0,494,22,472], + 0xE134: [622,0,403,-24,426], + 0xE135: [841,0,494,39,455], + 0xE136: [653,0,403,-7,409], + 0xE137: [683,303,1015,83,934], + 0xE138: [694,303,715,76,665], + 0xE139: [911,0,831,83,750], + 0xE13A: [922,0,403,83,369], + 0xE13B: [683,0,831,83,750], + 0xE13C: [694,0,403,83,399], + 0xE13D: [683,303,831,83,750], + 0xE13E: [694,303,403,83,334], + 0xE13F: [911,0,981,83,897], + 0xE140: [698,0,750,82,683], + 0xE141: [869,0,981,83,897], + 0xE142: [688,0,750,82,683], + 0xE143: [683,303,981,83,897], + 0xE144: [442,303,750,82,683], + 0xE145: [841,0,981,83,897], + 0xE146: [653,0,750,82,683], + 0xE147: [911,22,1028,97,930], + 0xE148: [698,11,681,65,615], + 0xE149: [869,22,1028,97,930], + 0xE14A: [688,11,681,65,615], + 0xE14B: [1054,22,1028,97,930], + 0xE14C: [830,11,681,65,615], + 0xE14D: [869,200,1028,97,930], + 0xE14E: [688,200,681,65,615], + 0xE14F: [1054,22,1028,97,930], + 0xE150: [830,11,681,65,615], + 0xE151: [1070,22,1028,97,930], + 0xE152: [846,11,681,65,615], + 0xE153: [1014,22,1028,97,930], + 0xE154: [790,11,681,65,615], + 0xE155: [846,22,1028,97,930], + 0xE156: [655,11,681,65,615], + 0xE157: [705,200,1028,97,930], + 0xE158: [448,200,681,65,615], + 0xE159: [911,22,1028,97,930], + 0xE15A: [698,11,681,65,615], + 0xE15B: [959,22,1028,97,930], + 0xE15C: [701,11,681,65,615], + 0xE15D: [911,22,1028,97,927], + 0xE15E: [698,11,680,64,631], + 0xE15F: [805,200,1028,97,927], + 0xE160: [553,200,680,64,631], + 0xE161: [911,22,1028,97,927], + 0xE162: [698,11,680,64,631], + 0xE163: [959,22,1028,97,927], + 0xE164: [701,11,680,64,631], + 0xE165: [841,22,1028,97,927], + 0xE166: [653,11,680,64,631], + 0xE167: [941,22,1028,97,930], + 0xE168: [698,11,681,65,615], + 0xE169: [800,22,1028,97,930], + 0xE16A: [622,11,681,65,615], + 0xE16B: [841,22,1028,97,930], + 0xE16C: [653,11,681,65,615], + 0xE16D: [911,22,969,85,937], + 0xE16E: [698,0,542,76,479], + 0xE16F: [869,22,969,85,937], + 0xE170: [688,0,542,76,479], + 0xE171: [683,303,969,85,937], + 0xE172: [442,303,542,76,479], + 0xE173: [911,22,750,97,652], + 0xE174: [698,11,549,70,478], + 0xE175: [869,22,750,97,652], + 0xE176: [688,11,549,70,478], + 0xE177: [705,303,750,97,652], + 0xE178: [448,303,549,70,478], + 0xE179: [869,0,958,73,884], + 0xE17A: [714,11,542,51,444], + 0xE17B: [675,303,958,73,884], + 0xE17C: [615,303,542,51,444], + 0xE17D: [675,200,958,73,884], + 0xE17E: [615,200,542,51,479], + 0xE17F: [911,22,981,83,897], + 0xE180: [698,11,750,82,683], + 0xE181: [869,22,981,83,897], + 0xE182: [688,11,750,82,683], + 0xE183: [846,22,981,83,897], + 0xE184: [655,11,750,82,683], + 0xE185: [683,200,981,83,897], + 0xE186: [442,200,750,82,683], + 0xE187: [911,22,981,83,897], + 0xE188: [698,11,750,82,683], + 0xE189: [959,22,981,83,897], + 0xE18A: [701,11,750,82,683], + 0xE18B: [911,22,980,83,914], + 0xE18C: [698,11,750,81,732], + 0xE18D: [805,200,980,83,914], + 0xE18E: [553,200,750,81,732], + 0xE18F: [911,22,980,83,914], + 0xE190: [698,11,750,81,732], + 0xE191: [959,22,980,83,914], + 0xE192: [701,11,750,81,732], + 0xE193: [841,22,980,83,914], + 0xE194: [653,11,750,81,732], + 0xE195: [941,22,981,83,897], + 0xE196: [698,11,750,82,683], + 0xE197: [800,22,981,83,897], + 0xE198: [622,11,750,82,683], + 0xE199: [892,22,981,83,897], + 0xE19A: [705,11,750,82,683], + 0xE19B: [841,22,981,83,897], + 0xE19C: [653,11,750,82,683], + 0xE19D: [911,0,981,49,931], + 0xE19E: [698,205,715,52,658], + 0xE19F: [846,0,981,49,931], + 0xE1A0: [655,205,715,52,658], + 0xE1A1: [683,200,981,49,931], + 0xE1A2: [431,205,715,52,658], + 0xE1A3: [911,0,981,49,931], + 0xE1A4: [698,205,715,52,658], + 0xE1A5: [959,0,981,49,931], + 0xE1A6: [701,205,715,52,658], + 0xE1A7: [841,0,981,49,931], + 0xE1A8: [653,205,715,52,658], + 0xE1A9: [911,0,819,97,727], + 0xE1AA: [698,0,611,63,530], + 0xE1AB: [869,0,819,97,727], + 0xE1AC: [688,0,611,63,530], + 0xE1AD: [880,0,819,97,727], + 0xE1AE: [661,0,611,63,530], + 0xE1AF: [694,-378,646,123,505], + 0xE1B0: [124,192,646,141,523], + 0xE1B1: [694,-378,646,141,523], + 0xE1B2: [683,0,1004,85,906], + 0xE1B3: [713,0,843,45,797], + 0xE1B4: [446,10,569,45,544], + 0xE1B5: [698,-506,569,216,422], + 0xE1B6: [683,0,1014,46,974], + 0xE1B7: [446,10,816,58,775], + 0xE1B8: [714,20,877,54,813], + 0xE1B9: [713,232,843,45,797], + 0xE1BA: [446,232,569,45,548], + 0xE1BB: [744,-562,556,-5,561], + 0xE1BC: [307,-193,556,0,555], + 0xE1BD: [704,10,877,70,806], + 0xE1BE: [683,0,799,60,728], + 0xE1BF: [694,10,631,49,584], + 0xE1C0: [694,10,631,49,584], + 0xE1C1: [490,-13,569,35,533], + 0xE1C2: [691,-513,569,118,452], + 0xE1C3: [750,250,339,145,194], + 0xE1C4: [703,20,816,70,744], + 0xE1C5: [446,10,508,46,468], + 0xE1C6: [690,-514,569,133,437], + 0xE1C7: [703,200,816,70,744], + 0xE1C8: [446,200,508,46,468], + 0xE1C9: [6,200,508,102,406], + 0xE1CA: [485,54,508,46,468], + 0xE1CB: [690,-514,569,133,437], + 0xE1CC: [431,0,323,104,219], + 0xE1CD: [737,54,816,70,744], + 0xE1CE: [-60,292,569,237,332], + 0xE1CF: [683,0,683,0,683], + 0xE1D0: [683,0,683,0,683], + 0xE1D1: [519,17,877,169,706], + 0xE1D2: [683,0,860,58,789], + 0xE1D3: [694,10,631,46,581], + 0xE1D4: [697,-507,569,97,422], + 0xE1D5: [683,-376,427,60,367], + 0xE1D6: [603,25,569,55,521], + 0xE1D7: [654,-550,569,139,431], + 0xE1D8: [751,-1,569,69,499], + 0xE1D9: [606,104,569,-203,771], + 0xE1DA: [750,56,569,70,498], + 0xE1DB: [660,-545,323,105,219], + 0xE1DC: [-85,200,323,105,219], + 0xE1DD: [441,0,323,56,274], + 0xE1DE: [441,204,354,-27,243], + 0xE1DF: [679,0,768,56,728], + 0xE1E0: [446,10,508,39,468], + 0xE1E1: [664,20,569,54,514], + 0xE1E2: [280,-252,1139,16,1122], + 0xE1E3: [280,-252,569,8,560], + 0xE1E4: [703,20,843,51,801], + 0xE1E5: [441,214,573,54,515], + 0xE1E6: [679,232,768,56,728], + 0xE1E7: [446,232,508,39,468], + 0xE1E8: [699,9,761,39,721], + 0xE1E9: [683,0,860,58,789], + 0xE1EA: [695,10,569,39,529], + 0xE1EB: [714,0,323,104,219], + 0xE1EC: [500,214,323,104,219], + 0xE1ED: [679,0,737,56,682], + 0xE1EE: [704,0,354,45,398], + 0xE1EF: [704,0,939,38,897], + 0xE1F0: [704,0,678,38,715], + 0xE1F1: [704,0,970,38,920], + 0xE1F2: [704,0,970,38,920], + 0xE1F3: [704,0,647,38,597], + 0xE1F4: [664,20,569,63,505], + 0xE1F5: [704,0,647,38,597], + 0xE1F6: [674,0,569,39,529], + 0xE1F7: [703,20,884,70,822], + 0xE1F8: [451,205,569,39,545], + 0xE1F9: [703,20,1262,70,1191], + 0xE1FA: [704,10,569,49,529], + 0xE1FB: [500,262,539,70,468], + 0xE1FC: [698,-506,569,147,353], + 0xE1FD: [683,0,843,56,786], + 0xE1FE: [694,0,631,54,590], + 0xE1FF: [704,-501,569,177,392], + 0xE200: [697,-507,569,147,472], + 0xE201: [249,-181,385,20,314], + 0xE202: [683,0,413,51,362], + 0xE203: [683,20,955,51,885], + 0xE204: [660,204,645,56,534], + 0xE205: [762,0,539,55,453], + 0xE206: [683,232,413,51,362], + 0xE207: [674,232,323,39,283], + 0xE208: [683,20,583,66,514], + 0xE209: [683,0,874,56,819], + 0xE20A: [694,0,600,49,572], + 0xE20B: [683,0,706,56,651], + 0xE20C: [694,0,323,56,281], + 0xE20D: [764,68,1123,-6,1129], + 0xE20E: [704,0,354,45,398], + 0xE20F: [683,0,706,56,651], + 0xE210: [694,0,388,80,323], + 0xE211: [683,0,1028,62,965], + 0xE212: [441,0,939,54,897], + 0xE213: [621,-583,569,86,484], + 0xE214: [467,-36,569,-80,648], + 0xE215: [440,194,631,53,591], + 0xE216: [695,33,676,61,615], + 0xE217: [683,0,843,56,786], + 0xE218: [441,0,631,54,590], + 0xE219: [664,20,569,54,514], + 0xE21A: [694,194,939,70,867], + 0xE21B: [703,20,877,70,806], + 0xE21C: [446,10,569,39,529], + 0xE21D: [703,20,1137,84,1097], + 0xE21E: [446,10,877,39,837], + 0xE21F: [6,232,569,162,406], + 0xE220: [798,20,877,69,805], + 0xE221: [546,10,569,39,548], + 0xE222: [664,0,569,109,473], + 0xE223: [703,-329,512,46,465], + 0xE224: [703,-329,477,33,444], + 0xE225: [742,58,877,70,806], + 0xE226: [536,104,569,45,523], + 0xE227: [683,0,768,58,697], + 0xE228: [441,194,631,49,584], + 0xE229: [750,56,939,70,867], + 0xE22A: [750,56,1610,70,1562], + 0xE22B: [750,56,1256,60,1196], + 0xE22C: [347,56,449,72,378], + 0xE22D: [441,10,893,78,815], + 0xE22E: [683,0,683,0,683], + 0xE22F: [703,194,877,70,812], + 0xE230: [441,194,600,46,581], + 0xE231: [704,0,539,70,468], + 0xE232: [500,204,539,70,468], + 0xE233: [703,-422,437,121,316], + 0xE234: [694,-385,323,89,219], + 0xE235: [694,-385,323,104,234], + 0xE236: [114,195,323,97,227], + 0xE237: [703,-422,323,121,202], + 0xE238: [683,20,829,58,817], + 0xE239: [441,0,446,49,407], + 0xE23A: [683,20,829,58,817], + 0xE23B: [519,17,877,169,706], + 0xE23C: [683,0,683,0,683], + 0xE23D: [702,-526,843,313,531], + 0xE23E: [703,20,631,70,560], + 0xE23F: [446,10,453,45,407], + 0xE240: [703,200,631,70,560], + 0xE241: [446,200,453,45,407], + 0xE242: [431,194,323,104,222], + 0xE243: [683,-250,995,42,915], + 0xE244: [676,20,569,70,545], + 0xE245: [664,20,569,54,514], + 0xE246: [683,34,843,67,776], + 0xE247: [676,0,816,48,766], + 0xE248: [615,10,446,29,375], + 0xE249: [682,-1,706,59,636], + 0xE24A: [694,194,631,49,584], + 0xE24B: [664,20,569,54,514], + 0xE24C: [280,-252,854,12,842], + 0xE24D: [652,-552,569,101,469], + 0xE24E: [114,0,556,0,555], + 0xE24F: [688,-278,1106,29,1039], + 0xE250: [281,-253,770,16,753], + 0xE251: [664,0,569,63,505], + 0xE252: [683,20,843,56,786], + 0xE253: [441,10,631,54,590], + 0xE254: [798,20,843,55,806], + 0xE255: [546,10,631,53,640], + 0xE256: [-100,148,374,0,374], + 0xE257: [683,232,843,56,786], + 0xE258: [441,232,631,54,610], + 0xE259: [683,20,843,31,811], + 0xE25A: [431,10,600,31,568], + 0xE25B: [683,20,1151,29,1121], + 0xE25C: [431,10,816,30,784], + 0xE25D: [683,0,843,38,805], + 0xE25E: [431,0,600,26,574], + 0xE25F: [683,0,843,24,818], + 0xE260: [431,204,600,30,568], + 0xE261: [683,0,843,24,818], + 0xE262: [683,0,692,70,628], + 0xE263: [431,0,508,39,453], + 0xE264: [664,20,569,52,516], + 0xE265: [703,20,694,60,632], + 0xE266: [483,0,631,131,500], + 0xE267: [483,0,631,131,500], + 0xE268: [483,0,430,123,307], + 0xE269: [483,0,430,123,307], + 0xE26A: [251,107,569,54,515], + 0xE26B: [660,0,323,56,274], + 0xE26C: [660,204,354,-27,243], + 0xE26D: [-123,161,569,86,484], + 0xE26E: [908,0,843,45,797], + 0xE26F: [698,10,569,45,544], + 0xE270: [921,0,843,45,797], + 0xE271: [691,10,569,45,544], + 0xE272: [1106,0,843,45,797], + 0xE273: [876,10,569,45,544], + 0xE274: [921,200,843,45,797], + 0xE275: [691,200,569,45,544], + 0xE276: [1106,0,843,45,797], + 0xE277: [876,10,569,45,544], + 0xE278: [1124,0,843,45,797], + 0xE279: [894,10,569,45,544], + 0xE27A: [1061,0,843,45,797], + 0xE27B: [831,10,569,45,544], + 0xE27C: [866,0,843,45,797], + 0xE27D: [690,10,569,45,544], + 0xE27E: [1051,0,843,45,797], + 0xE27F: [832,10,569,45,544], + 0xE280: [866,200,843,45,797], + 0xE281: [690,200,569,45,544], + 0xE282: [1051,0,843,45,797], + 0xE283: [832,10,569,45,544], + 0xE284: [1069,0,843,45,797], + 0xE285: [850,10,569,45,544], + 0xE286: [1006,0,843,45,797], + 0xE287: [787,10,569,45,544], + 0xE288: [837,0,843,45,797], + 0xE289: [654,10,569,45,544], + 0xE28A: [713,200,843,45,797], + 0xE28B: [446,200,569,45,544], + 0xE28C: [908,0,843,45,797], + 0xE28D: [698,10,569,45,544], + 0xE28E: [956,0,843,45,797], + 0xE28F: [704,10,569,45,544], + 0xE290: [791,0,843,45,797], + 0xE291: [621,10,569,45,544], + 0xE292: [889,0,843,45,797], + 0xE293: [702,10,569,45,544], + 0xE294: [833,0,843,45,797], + 0xE295: [652,10,569,45,544], + 0xE296: [908,20,816,70,744], + 0xE297: [698,10,508,46,468], + 0xE298: [866,20,816,70,744], + 0xE299: [690,10,508,46,468], + 0xE29A: [866,0,860,58,789], + 0xE29B: [694,10,631,46,642], + 0xE29C: [908,0,768,56,728], + 0xE29D: [698,10,508,39,468], + 0xE29E: [866,0,768,56,728], + 0xE29F: [690,10,508,39,468], + 0xE2A0: [866,0,768,56,728], + 0xE2A1: [690,10,508,39,468], + 0xE2A2: [1051,0,768,56,728], + 0xE2A3: [832,10,508,39,468], + 0xE2A4: [866,200,768,56,728], + 0xE2A5: [690,200,508,39,468], + 0xE2A6: [1051,0,768,56,728], + 0xE2A7: [832,10,508,39,468], + 0xE2A8: [1069,0,768,56,728], + 0xE2A9: [850,10,508,39,469], + 0xE2AA: [1006,0,768,56,728], + 0xE2AB: [787,10,508,39,468], + 0xE2AC: [837,0,768,56,728], + 0xE2AD: [654,10,508,39,468], + 0xE2AE: [868,0,768,56,728], + 0xE2AF: [660,10,508,39,468], + 0xE2B0: [679,200,768,56,728], + 0xE2B1: [446,200,508,39,468], + 0xE2B2: [908,0,768,56,728], + 0xE2B3: [698,10,508,39,468], + 0xE2B4: [956,0,768,56,728], + 0xE2B5: [704,10,508,39,468], + 0xE2B6: [791,0,768,56,728], + 0xE2B7: [621,10,508,39,468], + 0xE2B8: [833,0,768,56,728], + 0xE2B9: [652,10,508,39,468], + 0xE2BA: [921,20,884,70,822], + 0xE2BB: [691,205,569,39,545], + 0xE2BC: [703,292,884,70,822], + 0xE2BD: [738,205,569,39,545], + 0xE2BE: [908,0,413,51,362], + 0xE2BF: [698,0,323,56,299], + 0xE2C0: [866,0,413,51,362], + 0xE2C1: [690,0,323,10,314], + 0xE2C2: [837,0,413,44,370], + 0xE2C3: [654,0,323,16,308], + 0xE2C4: [868,0,413,51,362], + 0xE2C5: [683,200,413,51,362], + 0xE2C6: [660,200,323,56,274], + 0xE2C7: [908,0,413,51,362], + 0xE2C8: [698,0,323,24,274], + 0xE2C9: [956,0,413,51,362], + 0xE2CA: [704,0,323,54,274], + 0xE2CB: [791,0,413,8,406], + 0xE2CC: [621,0,323,-37,361], + 0xE2CD: [833,0,413,23,391], + 0xE2CE: [652,0,323,-22,346], + 0xE2CF: [683,292,874,56,819], + 0xE2D0: [694,292,600,49,572], + 0xE2D1: [908,0,706,56,651], + 0xE2D2: [919,0,323,56,312], + 0xE2D3: [683,0,706,56,651], + 0xE2D4: [694,0,323,56,342], + 0xE2D5: [683,292,706,56,651], + 0xE2D6: [694,292,323,56,281], + 0xE2D7: [908,0,843,56,786], + 0xE2D8: [698,0,631,54,590], + 0xE2D9: [866,0,843,56,786], + 0xE2DA: [690,0,631,54,590], + 0xE2DB: [683,292,843,56,786], + 0xE2DC: [441,292,631,54,590], + 0xE2DD: [833,0,843,56,786], + 0xE2DE: [652,0,631,54,590], + 0xE2DF: [908,20,877,70,806], + 0xE2E0: [698,10,569,39,529], + 0xE2E1: [866,20,877,70,806], + 0xE2E2: [690,10,569,39,529], + 0xE2E3: [1051,20,877,70,806], + 0xE2E4: [832,10,569,39,529], + 0xE2E5: [866,200,877,70,806], + 0xE2E6: [690,200,569,39,529], + 0xE2E7: [1051,20,877,70,806], + 0xE2E8: [832,10,569,39,529], + 0xE2E9: [1069,20,877,70,806], + 0xE2EA: [850,10,569,39,529], + 0xE2EB: [1006,20,877,70,806], + 0xE2EC: [787,10,569,39,529], + 0xE2ED: [837,20,877,70,806], + 0xE2EE: [654,10,569,39,529], + 0xE2EF: [703,200,877,70,806], + 0xE2F0: [446,200,569,39,529], + 0xE2F1: [908,20,877,70,806], + 0xE2F2: [698,10,569,39,529], + 0xE2F3: [956,20,877,70,806], + 0xE2F4: [704,10,569,39,529], + 0xE2F5: [908,20,877,69,805], + 0xE2F6: [698,10,569,39,548], + 0xE2F7: [798,200,877,69,805], + 0xE2F8: [546,200,569,39,548], + 0xE2F9: [908,20,877,69,805], + 0xE2FA: [698,10,569,39,548], + 0xE2FB: [956,20,877,69,805], + 0xE2FC: [704,10,569,39,548], + 0xE2FD: [833,20,877,69,805], + 0xE2FE: [652,10,569,39,548], + 0xE2FF: [933,20,877,70,806], + 0xE300: [697,10,569,39,529], + 0xE301: [791,20,877,70,806], + 0xE302: [621,10,569,39,529], + 0xE303: [833,20,877,70,806], + 0xE304: [652,10,569,39,529], + 0xE305: [908,20,829,58,817], + 0xE306: [698,0,446,49,407], + 0xE307: [866,20,829,58,817], + 0xE308: [690,0,446,49,407], + 0xE309: [683,292,829,58,817], + 0xE30A: [441,292,446,49,407], + 0xE30B: [908,20,631,70,560], + 0xE30C: [698,10,453,45,407], + 0xE30D: [866,20,631,70,560], + 0xE30E: [690,10,453,45,407], + 0xE30F: [703,292,631,70,560], + 0xE310: [446,292,453,45,407], + 0xE311: [866,0,816,48,766], + 0xE312: [704,10,446,29,375], + 0xE313: [676,292,816,48,766], + 0xE314: [615,292,446,29,375], + 0xE315: [676,200,816,48,766], + 0xE316: [615,200,446,29,396], + 0xE317: [908,20,843,56,786], + 0xE318: [698,10,631,54,590], + 0xE319: [866,20,843,56,786], + 0xE31A: [690,10,631,54,590], + 0xE31B: [837,20,843,56,786], + 0xE31C: [654,10,631,54,590], + 0xE31D: [683,200,843,56,786], + 0xE31E: [441,200,631,54,590], + 0xE31F: [908,20,843,56,786], + 0xE320: [698,10,631,54,590], + 0xE321: [956,20,843,56,786], + 0xE322: [704,10,631,54,590], + 0xE323: [908,20,843,55,806], + 0xE324: [698,10,631,53,640], + 0xE325: [798,200,843,55,806], + 0xE326: [546,200,631,53,640], + 0xE327: [908,20,843,55,806], + 0xE328: [698,10,631,53,640], + 0xE329: [956,20,843,55,806], + 0xE32A: [704,10,631,53,640], + 0xE32B: [833,20,843,55,806], + 0xE32C: [652,10,631,53,640], + 0xE32D: [933,20,843,56,786], + 0xE32E: [697,10,631,54,590], + 0xE32F: [791,20,843,56,786], + 0xE330: [621,10,631,54,590], + 0xE331: [889,20,843,56,786], + 0xE332: [702,10,631,54,590], + 0xE333: [833,20,843,56,786], + 0xE334: [652,10,631,54,590], + 0xE335: [908,0,843,24,818], + 0xE336: [698,204,600,30,568], + 0xE337: [837,0,843,24,818], + 0xE338: [654,204,600,30,568], + 0xE339: [683,200,843,24,818], + 0xE33A: [431,204,600,30,568], + 0xE33B: [908,0,843,24,818], + 0xE33C: [698,204,600,30,568], + 0xE33D: [956,0,843,24,818], + 0xE33E: [704,204,600,30,568], + 0xE33F: [833,0,843,24,818], + 0xE340: [652,204,600,30,568], + 0xE341: [908,0,692,70,628], + 0xE342: [698,0,508,39,453], + 0xE343: [866,0,692,70,628], + 0xE344: [690,0,508,39,453], + 0xE345: [868,0,692,70,628], + 0xE346: [660,0,508,39,453], + 0xE347: [694,-385,538,89,434], + 0xE348: [114,195,538,104,449], + 0xE349: [694,-385,538,104,449], + 0xE34A: [683,0,860,58,789], + 0xE34B: [122,0,458,168,290], + 0xE34C: [122,194,458,168,304], + 0xE34D: [705,14,597,60,514], + 0xE34E: [115,0,339,112,227], + 0xE34F: [115,193,339,112,239], + 0xE350: [704,12,478,23,439], + 0xE351: [716,0,1036,104,943], + 0xE352: [683,0,1037,121,961], + 0xE353: [705,22,996,115,975], + 0xE354: [683,0,1110,119,1028], + 0xE355: [679,0,1007,117,964], + 0xE356: [679,0,867,117,946], + 0xE357: [705,22,1064,115,974], + 0xE358: [683,0,1110,117,1089], + 0xE359: [683,0,627,112,610], + 0xE35A: [683,22,773,152,791], + 0xE35B: [683,0,1139,117,1112], + 0xE35C: [683,0,956,117,842], + 0xE35D: [683,0,1284,123,1291], + 0xE35E: [683,0,1076,117,1089], + 0xE35F: [705,22,1048,114,967], + 0xE360: [683,0,875,119,957], + 0xE361: [705,194,1082,114,967], + 0xE362: [683,22,1030,119,990], + 0xE363: [705,22,856,123,818], + 0xE364: [675,0,832,86,927], + 0xE365: [683,22,944,143,957], + 0xE366: [683,22,828,128,1000], + 0xE367: [683,22,1279,126,1349], + 0xE368: [683,0,1113,97,1058], + 0xE369: [683,0,824,105,989], + 0xE36A: [683,0,943,129,917], + 0xE36B: [442,11,774,105,684], + 0xE36C: [693,11,633,111,563], + 0xE36D: [442,11,649,107,596], + 0xE36E: [693,11,740,105,684], + 0xE36F: [442,11,677,112,596], + 0xE370: [705,205,684,120,692], + 0xE371: [442,205,701,99,635], + 0xE372: [693,11,828,124,737], + 0xE373: [667,11,534,91,443], + 0xE374: [667,205,588,37,510], + 0xE375: [693,11,758,124,668], + 0xE376: [693,11,480,106,355], + 0xE377: [442,11,1228,91,1138], + 0xE378: [442,11,881,91,791], + 0xE379: [442,11,703,106,632], + 0xE37A: [442,194,740,55,670], + 0xE37B: [442,194,659,106,603], + 0xE37C: [442,11,671,91,652], + 0xE37D: [442,11,670,115,558], + 0xE37E: [626,11,564,84,473], + 0xE37F: [442,11,846,91,756], + 0xE380: [443,11,722,91,641], + 0xE381: [443,11,1009,91,918], + 0xE382: [442,11,792,93,682], + 0xE383: [442,205,731,91,666], + 0xE384: [442,11,689,105,613], + 0xE385: [442,11,534,91,443], + 0xE386: [442,205,553,37,474], + 0xE387: [713,0,859,57,810], + 0xE388: [683,0,863,72,837], + 0xE389: [703,20,819,70,843], + 0xE38A: [683,0,934,71,893], + 0xE38B: [679,0,839,69,841], + 0xE38C: [679,0,725,69,825], + 0xE38D: [703,20,889,70,843], + 0xE38E: [683,0,936,69,960], + 0xE38F: [683,0,506,64,536], + 0xE390: [683,20,632,102,689], + 0xE391: [683,0,960,69,979], + 0xE392: [683,0,784,69,721], + 0xE393: [683,0,1089,74,1140], + 0xE394: [683,0,905,69,960], + 0xE395: [703,20,869,69,829], + 0xE396: [683,0,727,71,834], + 0xE397: [703,194,900,69,829], + 0xE398: [683,20,861,71,849], + 0xE399: [703,20,702,75,710], + 0xE39A: [676,0,675,43,790], + 0xE39B: [683,20,778,92,833], + 0xE39C: [683,20,675,79,861], + 0xE39D: [683,20,1074,78,1171], + 0xE39E: [683,0,937,50,933], + 0xE39F: [683,0,672,58,853], + 0xE3A0: [683,0,778,80,797], + 0xE3A1: [441,10,620,61,571], + 0xE3A2: [694,10,502,66,471], + 0xE3A3: [441,10,511,62,495], + 0xE3A4: [694,10,595,61,575], + 0xE3A5: [441,10,542,67,495], + 0xE3A6: [704,204,557,73,604], + 0xE3A7: [441,204,557,43,536], + 0xE3A8: [694,10,669,75,620], + 0xE3A9: [663,10,404,47,350], + 0xE3AA: [663,204,473,0,439], + 0xE3AB: [694,10,607,75,567], + 0xE3AC: [694,10,361,62,286], + 0xE3AD: [441,10,1014,47,965], + 0xE3AE: [441,10,706,47,658], + 0xE3AF: [441,10,564,62,531], + 0xE3B0: [441,194,589,-1,557], + 0xE3B1: [441,194,524,61,511], + 0xE3B2: [441,10,530,47,512], + 0xE3B3: [441,10,539,71,470], + 0xE3B4: [625,10,432,42,380], + 0xE3B5: [441,10,675,47,628], + 0xE3B6: [442,10,571,47,534], + 0xE3B7: [442,10,826,47,780], + 0xE3B8: [441,10,648,48,583], + 0xE3B9: [441,204,579,47,560], + 0xE3BA: [441,10,546,61,521], + 0xE3BB: [441,10,399,47,350], + 0xE3BC: [441,204,442,0,402], + 0xE3BD: [450,0,319,47,286], + 0xE3BE: [450,200,351,-56,267], + 0xE3BF: [711,0,1114,72,1042], + 0xE3C0: [456,8,738,58,716], + 0xE3C1: [686,0,1057,100,959], + 0xE3C2: [694,8,839,84,774], + 0xE3C3: [703,17,1081,98,983], + 0xE3C4: [456,8,678,65,621], + 0xE3C5: [686,0,1138,96,1039], + 0xE3C6: [694,8,839,65,755], + 0xE3C7: [452,0,436,101,363], + 0xE3C8: [452,202,476,-40,354], + 0xE3C9: [678,0,978,92,921], + 0xE3CA: [456,8,692,57,635], + 0xE3CB: [661,17,758,77,681], + 0xE3CC: [678,0,938,92,860], + 0xE3CD: [702,0,476,73,563], + 0xE3CE: [661,17,758,89,669], + 0xE3CF: [669,0,758,57,701], + 0xE3D0: [703,17,1169,98,1084], + 0xE3D1: [461,203,758,57,721], + 0xE3D2: [686,0,1153,92,1061], + 0xE3D3: [694,0,839,97,776], + 0xE3D4: [686,0,550,86,464], + 0xE3D5: [686,17,775,66,659], + 0xE3D6: [686,0,1154,92,1076], + 0xE3D7: [694,0,799,84,757], + 0xE3D8: [686,0,897,92,820], + 0xE3D9: [694,0,436,101,370], + 0xE3DA: [686,0,1394,104,1290], + 0xE3DB: [452,0,1242,97,1180], + 0xE3DC: [686,0,1153,92,1061], + 0xE3DD: [452,0,839,97,776], + 0xE3DE: [661,17,758,77,681], + 0xE3DF: [703,17,1122,98,1024], + 0xE3E0: [456,8,758,57,701], + 0xE3E1: [661,0,758,136,640], + 0xE3E2: [686,0,1017,96,919], + 0xE3E3: [452,194,839,84,774], + 0xE3E4: [703,194,1122,98,1032], + 0xE3E5: [452,194,799,65,755], + 0xE3E6: [686,17,1103,96,1082], + 0xE3E7: [452,0,622,84,565], + 0xE3E8: [703,17,839,98,741], + 0xE3E9: [456,8,605,65,540], + 0xE3EA: [667,17,758,98,721], + 0xE3EB: [661,17,758,77,681], + 0xE3EC: [669,0,1042,69,973], + 0xE3ED: [635,8,597,44,499], + 0xE3EE: [661,17,758,77,681], + 0xE3EF: [661,0,758,89,669], + 0xE3F0: [686,17,1133,92,1041], + 0xE3F1: [452,8,839,97,776], + 0xE3F2: [686,17,1114,53,1061], + 0xE3F3: [444,8,799,53,746], + 0xE3F4: [686,17,1517,50,1467], + 0xE3F5: [444,8,1081,50,1031], + 0xE3F6: [686,0,1114,71,1043], + 0xE3F7: [444,0,799,58,741], + 0xE3F8: [686,0,1114,53,1061], + 0xE3F9: [444,202,799,45,745], + 0xE3FA: [686,0,919,98,830], + 0xE3FB: [444,0,678,57,601], + 0xE3FC: [661,17,758,73,685], + 0xE3FD: [687,0,436,101,363], + 0xE3FE: [687,202,476,-40,354], + 0xE3FF: [704,0,968,51,916], + 0xE400: [453,6,629,36,619], + 0xE401: [686,0,914,59,838], + 0xE402: [694,6,718,55,670], + 0xE403: [698,12,931,75,855], + 0xE404: [453,6,576,47,535], + 0xE405: [686,0,985,57,909], + 0xE406: [694,6,718,47,662], + 0xE407: [450,0,363,67,315], + 0xE408: [450,200,399,-55,304], + 0xE409: [679,0,844,57,803], + 0xE40A: [453,6,592,40,551], + 0xE40B: [656,12,647,57,589], + 0xE40C: [679,0,809,57,751], + 0xE40D: [700,0,399,52,491], + 0xE40E: [656,12,647,68,578], + 0xE40F: [662,0,647,40,606], + 0xE410: [698,12,1012,75,945], + 0xE411: [456,201,647,40,624], + 0xE412: [686,0,1002,57,944], + 0xE413: [694,0,718,64,679], + 0xE414: [686,0,479,51,428], + 0xE415: [686,12,665,36,580], + 0xE416: [686,0,1003,57,944], + 0xE417: [694,0,683,55,656], + 0xE418: [686,0,773,57,715], + 0xE419: [694,0,363,67,321], + 0xE41A: [686,0,1215,63,1151], + 0xE41B: [450,0,1073,64,1035], + 0xE41C: [686,0,1002,57,944], + 0xE41D: [450,0,718,64,679], + 0xE41E: [656,12,647,57,589], + 0xE41F: [698,12,968,75,892], + 0xE420: [453,6,647,40,606], + 0xE421: [656,0,647,102,553], + 0xE422: [686,0,879,57,803], + 0xE423: [450,194,718,55,670], + 0xE424: [698,194,968,75,899], + 0xE425: [450,194,683,47,663], + 0xE426: [686,12,960,57,951], + 0xE427: [450,0,535,55,495], + 0xE428: [698,12,718,75,642], + 0xE429: [453,6,512,47,464], + 0xE42A: [674,12,647,75,624], + 0xE42B: [656,12,647,57,589], + 0xE42C: [673,0,897,50,846], + 0xE42D: [635,6,505,28,429], + 0xE42E: [656,12,647,57,589], + 0xE42F: [656,0,647,68,578], + 0xE430: [686,12,985,57,927], + 0xE431: [450,6,718,64,679], + 0xE432: [686,12,968,35,932], + 0xE433: [444,6,683,36,646], + 0xE434: [686,12,1323,33,1289], + 0xE435: [444,6,931,33,897], + 0xE436: [686,0,968,47,921], + 0xE437: [444,0,683,35,648], + 0xE438: [686,0,968,31,936], + 0xE439: [444,200,683,29,646], + 0xE43A: [686,0,789,75,720], + 0xE43B: [444,0,576,40,518], + 0xE43C: [656,12,647,54,592], + 0xE43D: [684,0,363,67,315], + 0xE43E: [684,200,399,-55,304], + 0xE43F: [452,8,394,32,359], + 0xE440: [452,202,439,-14,413], + 0xE441: [715,0,1147,93,1068], + 0xE442: [686,0,1134,115,1065], + 0xE443: [705,19,1088,98,1078], + 0xE444: [686,0,1210,110,1151], + 0xE445: [678,0,1057,106,1020], + 0xE446: [678,0,882,106,1000], + 0xE447: [705,19,1153,98,1078], + 0xE448: [686,0,1259,106,1250], + 0xE449: [686,0,659,100,653], + 0xE44A: [686,19,826,113,848], + 0xE44B: [686,0,1253,106,1237], + 0xE44C: [686,0,1011,106,887], + 0xE44D: [686,0,1460,119,1479], + 0xE44E: [686,0,1218,106,1250], + 0xE44F: [705,19,1103,95,1044], + 0xE450: [686,0,937,110,1060], + 0xE451: [705,194,1144,95,1044], + 0xE452: [686,19,1133,110,1120], + 0xE453: [705,19,918,114,887], + 0xE454: [669,0,857,78,992], + 0xE455: [686,19,1050,112,1082], + 0xE456: [686,19,906,119,1131], + 0xE457: [686,19,1429,116,1537], + 0xE458: [686,0,1223,93,1164], + 0xE459: [686,0,902,99,1110], + 0xE45A: [686,0,1018,119,1004], + 0xE45B: [454,10,869,88,794], + 0xE45C: [694,10,699,97,648], + 0xE45D: [454,10,706,89,672], + 0xE45E: [694,10,829,88,794], + 0xE45F: [454,10,746,89,672], + 0xE460: [704,204,724,109,747], + 0xE461: [454,204,744,68,688], + 0xE462: [694,10,911,102,836], + 0xE463: [695,10,596,73,521], + 0xE464: [695,204,613,14,547], + 0xE465: [694,10,830,102,755], + 0xE466: [694,10,508,74,393], + 0xE467: [454,10,1402,73,1327], + 0xE468: [454,10,999,73,924], + 0xE469: [454,10,779,89,728], + 0xE46A: [454,194,829,73,779], + 0xE46B: [454,194,727,88,684], + 0xE46C: [454,10,733,73,701], + 0xE46D: [454,10,705,98,608], + 0xE46E: [645,10,618,63,544], + 0xE46F: [454,10,959,73,884], + 0xE470: [455,10,793,73,721], + 0xE471: [455,10,1125,73,1043], + 0xE472: [454,10,866,65,779], + 0xE473: [454,204,817,73,764], + 0xE474: [454,10,756,74,684], + 0xE475: [454,10,596,73,521], + 0xE476: [454,204,572,14,513], + 0xE477: [710,0,976,61,928], + 0xE478: [686,0,969,71,939], + 0xE479: [702,16,920,68,943], + 0xE47A: [686,0,1042,68,1009], + 0xE47B: [679,0,903,67,902], + 0xE47C: [679,0,759,67,885], + 0xE47D: [702,16,988,68,943], + 0xE47E: [686,0,1087,67,1114], + 0xE47F: [686,0,560,61,593], + 0xE480: [686,16,701,74,750], + 0xE481: [686,0,1079,67,1097], + 0xE482: [686,0,852,67,781], + 0xE483: [686,0,1264,74,1320], + 0xE484: [686,0,1051,67,1114], + 0xE485: [702,16,938,65,906], + 0xE486: [686,0,802,68,934], + 0xE487: [702,194,974,65,906], + 0xE488: [686,16,969,68,978], + 0xE489: [702,16,776,80,782], + 0xE48A: [673,0,719,39,860], + 0xE48B: [686,16,894,78,956], + 0xE48C: [686,16,763,84,984], + 0xE48D: [686,16,1224,82,1341], + 0xE48E: [686,0,1053,57,1036], + 0xE48F: [686,0,759,62,970], + 0xE490: [686,0,865,84,884], + 0xE491: [452,8,722,58,677], + 0xE492: [694,8,586,64,562], + 0xE493: [452,8,584,59,576], + 0xE494: [694,8,687,58,677], + 0xE495: [452,8,625,61,576], + 0xE496: [702,202,632,76,682], + 0xE497: [452,202,619,24,595], + 0xE498: [694,8,759,65,714], + 0xE499: [695,8,468,44,423], + 0xE49A: [695,202,521,-7,487], + 0xE49B: [694,8,688,65,643], + 0xE49C: [694,8,404,42,323], + 0xE49D: [452,8,1178,44,1133], + 0xE49E: [452,8,823,44,778], + 0xE49F: [452,8,657,59,632], + 0xE4A0: [452,194,687,18,663], + 0xE4A1: [452,194,612,58,600], + 0xE4A2: [452,8,606,44,580], + 0xE4A3: [452,8,595,68,529], + 0xE4A4: [643,8,488,36,444], + 0xE4A5: [452,8,787,44,743], + 0xE4A6: [453,8,651,44,613], + 0xE4A7: [453,8,944,44,897], + 0xE4A8: [452,8,737,51,668], + 0xE4A9: [452,202,677,44,656], + 0xE4AA: [452,8,633,50,594], + 0xE4AB: [452,8,468,44,423], + 0xE4AC: [452,202,486,-7,453], + 0xE4AD: [605,105,572,56,516], + 0xE4AE: [605,105,572,56,516], + 0xE4AF: [608,107,577,57,522], + 0xE4B0: [608,107,577,57,522], + 0xE4B1: [610,109,581,57,526], + 0xE4B2: [610,109,581,57,526], + 0xE4B3: [613,113,588,56,532], + 0xE4B4: [613,113,588,56,532], + 0xE4B5: [616,115,593,57,538], + 0xE4B6: [616,115,593,57,538], + 0xE4B7: [619,119,600,56,544], + 0xE4B8: [619,119,600,56,544], + 0xE4B9: [623,122,607,57,552], + 0xE4BA: [623,122,607,57,552], + 0xE4BB: [634,-94,489,82,407], + 0xE4BC: [634,-94,489,82,407], + 0xE4BD: [634,-94,789,82,707], + 0xE4BE: [634,-94,789,82,707], + 0xE4BF: [634,-94,1089,82,1007], + 0xE4C0: [634,-94,1089,82,1007], + 0xE4C1: [634,-94,1389,82,1307], + 0xE4C2: [716,216,527,56,471], + 0xE4C3: [693,0,708,75,632], + 0xE4C4: [693,0,875,98,775], + 0xE4C5: [720,39,700,75,626], + 0xE4C6: [720,39,865,98,767], + 0xE4C7: [720,29,615,75,541], + 0xE4C8: [720,29,762,98,664], + 0xE4C9: [709,17,667,75,592], + 0xE4CA: [709,17,825,98,726], + 0xE4CB: [444,0,239,81,156], + 0xE4CC: [444,205,267,-61,184], + 0xE4CD: [444,0,239,81,250], + 0xE4CE: [444,205,267,-97,278], + 0xE4CF: [458,0,256,61,194], + 0xE4D0: [458,205,286,-71,224], + 0xE4D1: [458,0,256,68,283], + 0xE4D2: [458,205,286,-105,313], + 0xE4D3: [431,0,279,55,223], + 0xE4D4: [431,216,389,0,333], + 0xE4D5: [694,15,982,40,943], + 0xE4D6: [712,1,888,40,847], + 0xE4D7: [697,15,749,40,709], + 0xE4D8: [716,-4,1005,40,965], + 0xE4D9: [702,12,695,40,655], + 0xE4DA: [699,15,1038,39,998], + 0xE4DB: [697,130,774,40,733], + 0xE4DC: [690,8,1232,40,1192], + 0xE4DD: [685,14,696,39,656], + 0xE4DE: [692,129,784,39,744], + 0xE4DF: [690,12,1142,40,1102], + 0xE4E0: [685,7,878,40,837], + 0xE4E1: [699,13,1333,40,1293], + 0xE4E2: [706,7,1161,39,1120], + 0xE4E3: [686,18,807,40,767], + 0xE4E4: [710,11,875,39,834], + 0xE4E5: [694,24,817,40,777], + 0xE4E6: [712,6,940,40,899], + 0xE4E7: [702,12,708,40,668], + 0xE4E8: [693,6,888,40,849], + 0xE4E9: [699,16,867,41,827], + 0xE4EA: [709,9,832,40,792], + 0xE4EB: [702,5,1214,40,1174], + 0xE4EC: [706,9,998,40,958], + 0xE4ED: [702,136,698,40,659], + 0xE4EE: [696,11,824,41,785], + 0xE4EF: [694,15,938,40,898], + 0xE4F0: [712,1,850,40,809], + 0xE4F1: [697,15,716,40,676], + 0xE4F2: [716,-4,958,40,917], + 0xE4F3: [702,12,666,40,626], + 0xE4F4: [699,15,991,39,951], + 0xE4F5: [697,130,743,40,703], + 0xE4F6: [690,8,1174,40,1134], + 0xE4F7: [685,14,669,40,630], + 0xE4F8: [692,129,754,40,714], + 0xE4F9: [690,12,1088,40,1048], + 0xE4FA: [685,7,840,40,800], + 0xE4FB: [699,13,1268,40,1228], + 0xE4FC: [706,7,1107,39,1066], + 0xE4FD: [686,18,769,40,728], + 0xE4FE: [710,11,836,39,795], + 0xE4FF: [694,24,781,40,741], + 0xE500: [712,6,897,40,857], + 0xE501: [702,12,679,40,638], + 0xE502: [693,6,846,40,807], + 0xE503: [699,16,824,41,784], + 0xE504: [709,9,788,40,748], + 0xE505: [702,5,1148,40,1108], + 0xE506: [706,9,953,39,912], + 0xE507: [702,136,674,40,634], + 0xE508: [696,11,789,41,750], + 0xE509: [711,17,1064,39,1024], + 0xE50A: [727,1,1007,40,966], + 0xE50B: [709,15,819,40,779], + 0xE50C: [727,1,1112,40,1072], + 0xE50D: [708,12,770,39,730], + 0xE50E: [731,14,1105,40,1066], + 0xE50F: [705,138,860,39,820], + 0xE510: [699,12,1315,39,1275], + 0xE511: [703,18,777,39,737], + 0xE512: [701,137,837,40,797], + 0xE513: [709,9,1212,39,1171], + 0xE514: [710,12,954,40,915], + 0xE515: [710,17,1420,40,1380], + 0xE516: [712,13,1206,40,1166], + 0xE517: [707,20,908,40,868], + 0xE518: [726,13,968,40,928], + 0xE519: [705,42,920,41,880], + 0xE51A: [732,12,1015,40,975], + 0xE51B: [715,18,788,40,748], + 0xE51C: [697,11,997,40,957], + 0xE51D: [709,13,944,40,905], + 0xE51E: [702,16,872,40,832], + 0xE51F: [710,8,1287,40,1246], + 0xE520: [712,11,1066,40,1025], + 0xE521: [709,135,799,39,759], + 0xE522: [705,14,872,40,832], + 0xE523: [711,17,1020,39,980], + 0xE524: [727,1,965,40,924], + 0xE525: [709,15,785,40,744], + 0xE526: [727,1,1064,40,1023], + 0xE527: [708,12,741,40,701], + 0xE528: [731,14,1059,40,1020], + 0xE529: [705,138,827,39,787], + 0xE52A: [699,12,1257,39,1217], + 0xE52B: [703,18,748,39,708], + 0xE52C: [701,137,807,40,767], + 0xE52D: [709,9,1160,39,1119], + 0xE52E: [710,12,911,40,872], + 0xE52F: [710,17,1358,40,1318], + 0xE530: [712,13,1155,40,1114], + 0xE531: [707,20,868,40,828], + 0xE532: [726,13,927,40,887], + 0xE533: [705,42,883,41,843], + 0xE534: [732,12,973,40,932], + 0xE535: [715,18,758,40,718], + 0xE536: [697,11,957,40,917], + 0xE537: [709,13,901,40,861], + 0xE538: [702,16,831,40,791], + 0xE539: [710,8,1224,40,1183], + 0xE53A: [712,11,1021,40,981], + 0xE53B: [709,135,771,39,731], + 0xE53C: [705,14,839,40,799], + 0xE53D: [697,27,1054,123,948], + 0xE53E: [691,27,1278,156,1075], + 0xE53F: [686,24,928,168,833], + 0xE540: [690,27,1191,129,992], + 0xE541: [686,24,988,200,866], + 0xE542: [686,155,927,110,843], + 0xE543: [692,25,1136,176,950], + 0xE544: [667,133,1058,87,871], + 0xE545: [686,27,858,131,737], + 0xE546: [686,139,856,75,723], + 0xE547: [681,27,995,116,925], + 0xE548: [686,27,993,135,871], + 0xE549: [692,27,1452,129,1356], + 0xE54A: [686,29,1192,132,1093], + 0xE54B: [729,27,1187,110,992], + 0xE54C: [692,219,1181,104,1062], + 0xE54D: [729,69,1187,110,1037], + 0xE54E: [686,27,1187,129,1088], + 0xE54F: [689,27,1187,164,1004], + 0xE550: [703,27,996,126,908], + 0xE551: [697,27,968,66,896], + 0xE552: [686,27,1191,132,1088], + 0xE553: [686,28,1449,122,1363], + 0xE554: [689,27,1056,129,948], + 0xE555: [686,219,1194,129,986], + 0xE556: [729,139,916,110,737], + 0xE557: [471,36,794,174,693], + 0xE558: [686,31,809,200,629], + 0xE559: [466,29,660,183,528], + 0xE55A: [612,34,791,113,614], + 0xE55B: [467,31,674,181,534], + 0xE55C: [679,238,588,133,486], + 0xE55D: [470,209,797,116,643], + 0xE55E: [689,198,819,188,619], + 0xE55F: [675,21,528,114,419], + 0xE560: [673,202,530,86,332], + 0xE561: [686,26,660,126,533], + 0xE562: [686,20,528,213,429], + 0xE563: [475,26,1113,105,1006], + 0xE564: [475,23,825,119,722], + 0xE565: [481,28,779,176,593], + 0xE566: [538,214,794,111,613], + 0xE567: [480,224,780,168,599], + 0xE568: [474,21,660,115,570], + 0xE569: [479,30,724,63,585], + 0xE56A: [641,21,593,128,516], + 0xE56B: [474,26,814,107,714], + 0xE56C: [533,28,807,158,624], + 0xE56D: [533,28,1121,150,929], + 0xE56E: [473,188,659,109,541], + 0xE56F: [524,219,791,151,621], + 0xE570: [471,215,662,89,474], + 0xE571: [697,27,832,47,796], + 0xE572: [691,27,1030,71,905], + 0xE573: [686,24,720,90,694], + 0xE574: [690,27,955,51,834], + 0xE575: [686,24,772,117,722], + 0xE576: [686,155,721,40,705], + 0xE577: [692,25,904,93,796], + 0xE578: [667,133,840,18,730], + 0xE579: [686,27,662,61,612], + 0xE57A: [686,139,663,14,602], + 0xE57B: [681,27,780,42,776], + 0xE57C: [686,27,779,60,729], + 0xE57D: [692,27,1178,37,1151], + 0xE57E: [686,29,952,49,922], + 0xE57F: [729,27,952,34,835], + 0xE580: [692,219,944,26,896], + 0xE581: [729,69,950,32,874], + 0xE582: [686,27,948,47,918], + 0xE583: [689,27,949,80,844], + 0xE584: [703,27,781,51,761], + 0xE585: [697,27,758,-1,753], + 0xE586: [686,27,951,49,918], + 0xE587: [686,28,1175,30,1158], + 0xE588: [689,27,834,52,796], + 0xE589: [686,219,958,50,829], + 0xE58A: [729,139,715,44,612], + 0xE58B: [471,36,603,101,572], + 0xE58C: [686,31,619,126,516], + 0xE58D: [466,29,488,115,428], + 0xE58E: [612,34,606,50,505], + 0xE58F: [467,31,500,112,433], + 0xE590: [679,238,426,73,393], + 0xE591: [470,209,611,52,531], + 0xE592: [689,198,628,116,507], + 0xE593: [675,21,375,59,335], + 0xE594: [673,202,380,38,261], + 0xE595: [686,26,490,65,434], + 0xE596: [686,20,371,145,341], + 0xE597: [475,26,884,29,847], + 0xE598: [475,23,633,51,599], + 0xE599: [481,28,594,106,485], + 0xE59A: [538,214,609,49,505], + 0xE59B: [480,224,595,99,490], + 0xE59C: [474,21,489,54,468], + 0xE59D: [479,30,548,8,483], + 0xE59E: [641,21,430,67,420], + 0xE59F: [474,26,624,41,593], + 0xE5A0: [533,28,618,90,512], + 0xE5A1: [533,28,893,71,778], + 0xE5A2: [473,188,489,50,443], + 0xE5A3: [524,219,605,84,511], + 0xE5A4: [471,215,495,35,384], + 0xE5A5: [475,21,528,114,419], + 0xE5A6: [475,202,530,86,332], + 0xE5A7: [475,21,375,59,335], + 0xE5A8: [475,202,380,38,261], + 0xE5A9: [475,21,279,14,268], + 0xE5AA: [475,202,280,-9,196], + 0xE5AB: [688,31,1141,137,1015], + 0xE5AC: [685,31,1357,167,1164], + 0xE5AD: [677,32,1005,183,907], + 0xE5AE: [685,29,1289,138,1091], + 0xE5AF: [687,29,1070,185,911], + 0xE5B0: [684,147,1003,124,912], + 0xE5B1: [692,27,1229,186,1033], + 0xE5B2: [684,127,1145,105,933], + 0xE5B3: [683,25,929,139,790], + 0xE5B4: [681,142,927,96,782], + 0xE5B5: [682,26,1077,127,999], + 0xE5B6: [684,28,1074,138,945], + 0xE5B7: [686,33,1572,134,1460], + 0xE5B8: [681,33,1290,134,1170], + 0xE5B9: [726,29,1283,117,1074], + 0xE5BA: [685,223,1284,126,1143], + 0xE5BB: [726,82,1283,117,1114], + 0xE5BC: [689,29,1284,126,1180], + 0xE5BD: [685,31,1285,195,1102], + 0xE5BE: [691,30,1077,138,983], + 0xE5BF: [689,39,1145,123,1063], + 0xE5C0: [687,29,1289,132,1168], + 0xE5C1: [682,30,1568,139,1469], + 0xE5C2: [682,35,1143,140,1024], + 0xE5C3: [689,214,1291,140,1072], + 0xE5C4: [718,137,1008,124,801], + 0xE5C5: [472,32,872,192,751], + 0xE5C6: [691,32,857,200,659], + 0xE5C7: [473,26,719,201,571], + 0xE5C8: [632,29,856,104,667], + 0xE5C9: [471,28,728,193,577], + 0xE5CA: [681,242,635,146,531], + 0xE5CB: [473,208,863,123,700], + 0xE5CC: [687,203,886,202,662], + 0xE5CD: [686,26,574,107,465], + 0xE5CE: [683,207,574,84,367], + 0xE5CF: [683,25,720,141,580], + 0xE5D0: [682,24,579,215,451], + 0xE5D1: [476,31,1223,123,1095], + 0xE5D2: [474,28,928,108,774], + 0xE5D3: [482,34,879,222,672], + 0xE5D4: [558,208,873,103,676], + 0xE5D5: [485,212,864,201,672], + 0xE5D6: [473,26,714,118,603], + 0xE5D7: [480,35,784,79,635], + 0xE5D8: [654,27,642,157,553], + 0xE5D9: [473,35,856,115,769], + 0xE5DA: [546,28,874,167,663], + 0xE5DB: [549,33,1218,166,1002], + 0xE5DC: [471,188,713,114,599], + 0xE5DD: [559,222,857,171,672], + 0xE5DE: [472,215,717,96,520], + 0xE5DF: [688,31,927,62,876], + 0xE5E0: [685,31,1127,89,1014], + 0xE5E1: [677,32,801,104,776], + 0xE5E2: [685,29,1064,63,946], + 0xE5E3: [687,29,861,106,780], + 0xE5E4: [684,147,799,49,781], + 0xE5E5: [692,27,1009,107,893], + 0xE5E6: [684,127,931,32,800], + 0xE5E7: [683,25,731,64,667], + 0xE5E8: [681,142,729,24,659], + 0xE5E9: [682,26,868,52,861], + 0xE5EA: [684,28,865,63,811], + 0xE5EB: [686,33,1327,59,1289], + 0xE5EC: [681,33,1065,59,1019], + 0xE5ED: [726,29,1059,43,931], + 0xE5EE: [685,223,1060,51,995], + 0xE5EF: [726,82,1059,43,967], + 0xE5F0: [689,29,1060,51,1029], + 0xE5F1: [685,31,1061,116,956], + 0xE5F2: [691,30,868,63,846], + 0xE5F3: [689,39,931,48,920], + 0xE5F4: [687,29,1064,58,1017], + 0xE5F5: [682,30,1323,64,1296], + 0xE5F6: [682,35,929,65,884], + 0xE5F7: [689,214,1066,65,929], + 0xE5F8: [718,137,804,49,678], + 0xE5F9: [472,32,678,113,631], + 0xE5FA: [691,32,664,120,546], + 0xE5FB: [473,26,536,121,464], + 0xE5FC: [632,29,663,31,553], + 0xE5FD: [471,28,544,114,470], + 0xE5FE: [681,242,458,70,427], + 0xE5FF: [473,208,669,48,584], + 0xE600: [687,203,691,122,549], + 0xE601: [686,26,401,34,366], + 0xE602: [683,207,401,13,275], + 0xE603: [683,25,537,66,473], + 0xE604: [682,24,406,134,353], + 0xE605: [476,31,1003,48,950], + 0xE606: [474,28,730,35,652], + 0xE607: [482,34,685,141,558], + 0xE608: [558,208,679,30,561], + 0xE609: [485,212,670,121,557], + 0xE60A: [473,26,532,44,494], + 0xE60B: [480,35,596,8,524], + 0xE60C: [654,27,464,80,447], + 0xE60D: [473,35,663,41,648], + 0xE60E: [546,28,680,89,549], + 0xE60F: [549,33,999,88,863], + 0xE610: [471,188,531,41,490], + 0xE611: [559,222,664,93,558], + 0xE612: [472,215,534,24,417], + 0xE613: [478,26,574,107,465], + 0xE614: [483,207,574,84,367], + 0xE615: [478,26,401,34,366], + 0xE616: [483,207,401,13,275], + 0xE617: [478,26,331,2,327], + 0xE618: [483,207,331,-19,238], + 0xE619: [431,0,525,78,455], + 0xE61A: [431,228,525,48,368], + 0xE61B: [683,33,1153,117,1036], + 0xE61C: [683,30,954,69,884], + 0xE61D: [716,0,1097,89,1007], + 0xE61E: [679,0,831,83,750], + 0xE61F: [716,0,911,71,839], + 0xE620: [705,0,958,84,873], + 0xE621: [683,0,958,97,860], + 0xE622: [679,0,981,83,897], + 0xE623: [683,0,1028,97,930], + 0xE624: [683,0,958,97,860], + 0xE625: [705,22,1028,97,930], + 0xE626: [705,0,1028,97,930], + 0xE627: [675,0,889,80,808], + 0xE628: [684,21,958,85,874], + 0xE629: [705,0,958,84,873], + 0xE62A: [716,0,981,71,909], + 0xE62B: [683,0,935,87,837], + 0xE62C: [679,0,900,83,836], + 0xE62D: [683,0,819,97,727], + 0xE62E: [683,0,981,83,897], + 0xE62F: [683,0,494,77,417], + 0xE630: [683,0,1015,83,934], + 0xE631: [683,0,1189,89,1099], + 0xE632: [683,0,981,83,897], + 0xE633: [705,22,1028,97,930], + 0xE634: [683,0,900,85,802], + 0xE635: [675,0,958,73,884], + 0xE636: [683,0,981,65,916], + 0xE637: [713,0,939,61,876], + 0xE638: [679,0,706,56,651], + 0xE639: [713,0,782,45,736], + 0xE63A: [703,0,816,57,757], + 0xE63B: [683,0,816,70,744], + 0xE63C: [679,0,843,56,786], + 0xE63D: [683,0,877,70,806], + 0xE63E: [683,0,816,70,744], + 0xE63F: [703,20,877,70,806], + 0xE640: [703,0,877,70,806], + 0xE641: [676,0,754,54,699], + 0xE642: [684,19,816,59,759], + 0xE643: [703,0,816,57,757], + 0xE644: [713,0,843,45,797], + 0xE645: [683,0,799,60,728], + 0xE646: [679,0,768,56,728], + 0xE647: [683,0,692,70,628], + 0xE648: [683,0,843,56,786], + 0xE649: [683,0,413,51,362], + 0xE64A: [683,0,874,56,819], + 0xE64B: [683,0,1028,62,965], + 0xE64C: [683,0,843,56,786], + 0xE64D: [703,20,877,70,806], + 0xE64E: [683,0,768,58,697], + 0xE64F: [676,0,816,48,766], + 0xE650: [683,0,843,38,805], + 0xE651: [442,11,925,136,865], + 0xE652: [706,194,821,163,668], + 0xE653: [442,216,856,94,706], + 0xE654: [716,11,717,133,563], + 0xE655: [431,11,656,148,593], + 0xE656: [701,205,786,149,654], + 0xE657: [442,216,786,59,645], + 0xE658: [705,11,734,135,599], + 0xE659: [442,11,508,124,448], + 0xE65A: [442,11,786,141,726], + 0xE65B: [442,12,890,65,825], + 0xE65C: [694,13,799,84,764], + 0xE65D: [442,216,786,141,726], + 0xE65E: [442,0,751,47,609], + 0xE65F: [701,205,786,149,653], + 0xE660: [431,11,856,60,709], + 0xE661: [442,216,734,141,598], + 0xE662: [431,11,873,136,726], + 0xE663: [431,13,786,60,639], + 0xE664: [443,11,786,59,671], + 0xE665: [694,205,925,142,782], + 0xE666: [442,205,925,59,865], + 0xE667: [694,205,925,59,809], + 0xE668: [442,11,925,114,806], + 0xE669: [453,22,778,137,588], + 0xE66A: [705,11,786,59,719], + 0xE66B: [431,11,1168,60,1020], + 0xE66C: [442,194,734,141,598], + 0xE66D: [442,108,717,148,585], + 0xE66E: [442,218,925,115,809], + 0xE66F: [716,22,856,133,722], + 0xE670: [441,10,748,83,728], + 0xE671: [704,194,656,110,556], + 0xE672: [441,214,687,50,588], + 0xE673: [714,10,564,82,464], + 0xE674: [431,10,500,96,490], + 0xE675: [699,204,625,96,551], + 0xE676: [441,214,625,18,535], + 0xE677: [704,10,579,83,494], + 0xE678: [441,10,379,73,358], + 0xE679: [441,10,625,87,604], + 0xE67A: [442,12,736,54,682], + 0xE67B: [694,12,634,39,644], + 0xE67C: [441,214,625,88,604], + 0xE67D: [441,0,595,4,505], + 0xE67E: [699,204,625,96,549], + 0xE67F: [431,10,687,19,592], + 0xE680: [441,214,579,88,494], + 0xE681: [431,10,702,83,607], + 0xE682: [431,12,625,19,530], + 0xE683: [442,10,625,18,557], + 0xE684: [694,204,748,90,657], + 0xE685: [441,204,748,18,728], + 0xE686: [694,204,748,18,680], + 0xE687: [440,10,748,66,679], + 0xE688: [451,20,627,84,484], + 0xE689: [704,10,625,18,600], + 0xE68A: [431,10,964,19,869], + 0xE68B: [441,194,579,88,494], + 0xE68C: [441,107,564,96,488], + 0xE68D: [441,216,748,66,680], + 0xE68E: [714,20,687,81,604], + 0xE68F: [446,10,569,39,529], + 0xE690: [448,11,681,65,615], + 0xE691: [713,0,939,61,876], + 0xE692: [716,0,1097,89,1007], + 0xE693: [686,29,1275,107,1166], + 0xE694: [686,24,1081,73,1007], + 0xE695: [711,0,1242,91,1151], + 0xE696: [678,0,897,92,820], + 0xE697: [711,0,1033,70,963], + 0xE698: [703,0,1081,81,1000], + 0xE699: [686,0,1081,98,983], + 0xE69A: [678,0,1153,92,1061], + 0xE69B: [686,0,1161,98,1063], + 0xE69C: [686,0,1081,98,983], + 0xE69D: [703,17,1161,98,1063], + 0xE69E: [703,0,1161,98,1063], + 0xE69F: [669,0,1000,77,923], + 0xE6A0: [711,0,1114,72,1042], + 0xE6A1: [686,0,1057,100,959], + 0xE6A2: [678,0,978,92,921], + 0xE6A3: [686,0,919,98,830], + 0xE6A4: [686,0,1153,92,1061], + 0xE6A5: [686,0,550,86,464], + 0xE6A6: [686,0,1154,92,1076], + 0xE6A7: [686,0,1394,104,1290], + 0xE6A8: [686,0,1153,92,1061], + 0xE6A9: [703,17,1122,98,1024], + 0xE6AA: [686,0,1017,96,919], + 0xE6AB: [669,0,1042,69,973], + 0xE6AC: [686,0,1114,71,1043], + 0xE6AD: [704,0,1073,69,1003], + 0xE6AE: [679,0,773,57,715], + 0xE6AF: [704,0,897,50,846], + 0xE6B0: [698,0,931,61,869], + 0xE6B1: [686,0,931,75,855], + 0xE6B2: [679,0,1002,57,944], + 0xE6B3: [686,0,1002,75,926], + 0xE6B4: [686,0,931,75,855], + 0xE6B5: [698,12,1002,75,926], + 0xE6B6: [698,0,1002,75,926], + 0xE6B7: [673,0,860,57,802], + 0xE6B8: [704,0,968,51,916], + 0xE6B9: [686,0,914,59,838], + 0xE6BA: [679,0,844,57,803], + 0xE6BB: [686,0,789,75,720], + 0xE6BC: [686,0,1002,57,944], + 0xE6BD: [686,0,479,51,428], + 0xE6BE: [686,0,1003,57,944], + 0xE6BF: [686,0,1215,63,1151], + 0xE6C0: [686,0,1002,57,944], + 0xE6C1: [698,12,968,75,892], + 0xE6C2: [686,0,879,57,803], + 0xE6C3: [673,0,897,50,846], + 0xE6C4: [686,0,968,47,921], + 0xE6C5: [454,10,1013,110,991], + 0xE6C6: [704,194,892,141,745], + 0xE6C7: [454,213,932,60,787], + 0xE6C8: [728,10,771,111,625], + 0xE6C9: [444,10,727,136,674], + 0xE6CA: [713,205,852,142,723], + 0xE6CB: [454,213,852,20,731], + 0xE6CC: [704,10,791,110,679], + 0xE6CD: [454,10,529,97,507], + 0xE6CE: [454,10,852,119,830], + 0xE6CF: [452,13,1000,80,918], + 0xE6D0: [694,12,854,64,862], + 0xE6D1: [454,213,852,118,829], + 0xE6D2: [454,0,811,35,689], + 0xE6D3: [712,206,852,142,726], + 0xE6D4: [444,11,932,20,803], + 0xE6D5: [454,213,791,120,678], + 0xE6D6: [444,10,952,110,823], + 0xE6D7: [444,13,852,20,723], + 0xE6D8: [455,10,852,19,747], + 0xE6D9: [694,204,1013,123,887], + 0xE6DA: [454,204,1013,20,990], + 0xE6DB: [694,204,1013,19,909], + 0xE6DC: [454,10,1013,103,907], + 0xE6DD: [462,20,816,116,639], + 0xE6DE: [704,10,852,20,810], + 0xE6DF: [444,10,1295,20,1166], + 0xE6E0: [454,194,791,119,678], + 0xE6E1: [454,107,771,142,650], + 0xE6E2: [454,216,1013,102,909], + 0xE6E3: [713,19,932,121,807], + 0xE6E4: [452,8,847,71,844], + 0xE6E5: [702,194,741,107,635], + 0xE6E6: [452,210,776,36,671], + 0xE6E7: [723,8,634,70,528], + 0xE6E8: [444,8,586,98,574], + 0xE6E9: [707,202,705,103,625], + 0xE6EA: [452,210,705,1,627], + 0xE6EB: [702,8,652,71,579], + 0xE6EC: [452,8,421,59,418], + 0xE6ED: [452,8,705,77,702], + 0xE6EE: [452,10,833,50,782], + 0xE6EF: [694,12,708,34,745], + 0xE6F0: [452,210,705,77,702], + 0xE6F1: [452,0,670,1,591], + 0xE6F2: [707,202,705,103,626], + 0xE6F3: [444,9,776,1,690], + 0xE6F4: [452,210,652,77,580], + 0xE6F5: [444,8,794,71,707], + 0xE6F6: [444,12,705,1,619], + 0xE6F7: [453,8,705,0,637], + 0xE6F8: [694,202,847,80,765], + 0xE6F9: [452,202,847,1,844], + 0xE6FA: [694,202,847,0,778], + 0xE6FB: [452,8,847,68,777], + 0xE6FC: [460,16,682,76,536], + 0xE6FD: [702,8,705,1,690], + 0xE6FE: [444,8,1096,1,1010], + 0xE6FF: [452,194,652,77,580], + 0xE700: [452,105,634,103,560], + 0xE701: [452,215,847,67,778], + 0xE702: [710,16,776,85,689], + 0xE703: [453,6,647,40,606], + 0xE704: [456,8,758,57,701], + 0xE705: [679,0,833,117,911], + 0xE706: [716,0,1153,120,1039], + 0xE707: [705,22,1048,114,967], + 0xE708: [716,0,967,103,875], + 0xE709: [675,0,1018,122,984], + 0xE70A: [679,0,1110,117,1088], + 0xE70B: [683,0,1065,129,1023], + 0xE70C: [705,0,840,90,928], + 0xE70D: [683,0,944,87,858], + 0xE70E: [683,0,893,86,919], + 0xE70F: [705,0,1061,152,1007], + 0xE710: [442,11,913,107,802], + 0xE711: [706,194,791,93,727], + 0xE712: [442,216,747,74,723], + 0xE713: [716,11,654,104,582], + 0xE714: [431,11,614,113,514], + 0xE715: [701,205,667,110,616], + 0xE716: [442,216,744,91,679], + 0xE717: [705,11,677,108,604], + 0xE718: [442,11,550,120,459], + 0xE719: [442,11,828,124,737], + 0xE71A: [442,12,890,97,820], + 0xE71B: [694,13,840,122,740], + 0xE71C: [442,216,850,95,759], + 0xE71D: [442,0,712,121,685], + 0xE71E: [701,205,667,85,582], + 0xE71F: [431,11,831,89,763], + 0xE720: [442,216,726,95,655], + 0xE721: [431,11,815,104,747], + 0xE722: [431,13,682,89,693], + 0xE723: [443,11,792,91,710], + 0xE724: [694,205,842,114,763], + 0xE725: [442,205,865,92,772], + 0xE726: [694,205,931,91,849], + 0xE727: [442,11,886,80,801], + 0xE728: [453,22,675,91,574], + 0xE729: [705,11,855,91,762], + 0xE72A: [431,11,1145,89,1075], + 0xE72B: [442,194,726,142,655], + 0xE72C: [442,108,578,94,554], + 0xE72D: [442,218,918,113,818], + 0xE72E: [716,22,749,104,742], + 0xE72F: [679,0,694,69,794], + 0xE730: [713,0,954,72,887], + 0xE731: [703,20,869,69,829], + 0xE732: [713,0,798,57,749], + 0xE733: [676,0,845,75,857], + 0xE734: [679,0,936,69,959], + 0xE735: [683,0,886,81,889], + 0xE736: [703,0,678,46,790], + 0xE737: [683,0,770,43,726], + 0xE738: [683,0,717,45,782], + 0xE739: [703,0,880,103,872], + 0xE73A: [441,10,743,62,676], + 0xE73B: [704,194,648,49,632], + 0xE73C: [441,214,600,34,611], + 0xE73D: [714,10,519,61,501], + 0xE73E: [431,10,476,68,426], + 0xE73F: [699,204,520,65,526], + 0xE740: [441,214,589,47,567], + 0xE741: [704,10,544,63,511], + 0xE742: [441,10,423,74,374], + 0xE743: [441,10,669,75,620], + 0xE744: [442,12,736,86,677], + 0xE745: [694,12,678,74,624], + 0xE746: [441,214,695,50,646], + 0xE747: [441,0,573,73,587], + 0xE748: [699,204,520,41,496], + 0xE749: [431,10,668,45,644], + 0xE74A: [441,214,593,50,561], + 0xE74B: [431,10,662,59,638], + 0xE74C: [431,12,527,45,582], + 0xE74D: [442,10,633,47,595], + 0xE74E: [694,204,687,70,647], + 0xE74F: [441,204,714,50,662], + 0xE750: [694,204,756,47,718], + 0xE751: [440,10,720,34,680], + 0xE752: [451,20,540,47,483], + 0xE753: [704,10,690,47,640], + 0xE754: [431,10,950,45,921], + 0xE755: [441,194,593,96,561], + 0xE756: [441,107,439,50,463], + 0xE757: [441,216,751,69,695], + 0xE758: [714,20,610,60,634], + 0xE759: [713,0,859,57,810], + 0xE75A: [683,0,863,72,837], + 0xE75B: [679,0,839,69,841], + 0xE75C: [683,0,778,80,797], + 0xE75D: [683,0,936,69,960], + 0xE75E: [683,0,506,64,536], + 0xE75F: [683,0,960,69,979], + 0xE760: [683,0,1089,74,1140], + 0xE761: [683,0,905,69,960], + 0xE762: [441,10,564,62,531], + 0xE763: [703,20,869,69,829], + 0xE764: [683,0,727,71,834], + 0xE765: [676,0,675,43,790], + 0xE766: [683,0,937,50,933], + 0xE767: [716,0,1036,104,943], + 0xE768: [683,0,1037,121,961], + 0xE769: [679,0,1007,117,964], + 0xE76A: [683,0,943,129,917], + 0xE76B: [683,0,1110,117,1089], + 0xE76C: [683,0,627,112,610], + 0xE76D: [683,0,1139,117,1112], + 0xE76E: [683,0,1284,123,1291], + 0xE76F: [683,0,1076,117,1089], + 0xE770: [442,11,703,106,632], + 0xE771: [705,22,1048,114,967], + 0xE772: [683,0,875,119,957], + 0xE773: [675,0,832,86,927], + 0xE774: [683,0,1113,97,1058], + 0xE775: [683,30,954,72,887], + 0xE776: [683,33,1153,119,1039], + 0xE777: [678,0,842,106,960], + 0xE778: [715,0,1275,111,1171], + 0xE779: [705,19,1142,96,1082], + 0xE77A: [715,0,1067,92,990], + 0xE77B: [669,0,1105,111,1079], + 0xE77C: [678,0,1259,106,1248], + 0xE77D: [686,0,1160,119,1125], + 0xE77E: [705,0,913,73,1043], + 0xE77F: [686,0,1033,70,962], + 0xE780: [686,0,985,62,1030], + 0xE781: [705,0,1158,137,1118], + 0xE782: [454,10,1030,89,932], + 0xE783: [704,194,871,79,798], + 0xE784: [454,213,798,37,798], + 0xE785: [728,10,707,90,635], + 0xE786: [444,10,669,90,588], + 0xE787: [713,205,717,90,660], + 0xE788: [454,213,835,73,785], + 0xE789: [704,10,744,91,691], + 0xE78A: [454,10,588,91,513], + 0xE78B: [454,10,911,102,836], + 0xE78C: [452,13,1000,118,910], + 0xE78D: [694,12,913,99,835], + 0xE78E: [454,213,943,83,868], + 0xE78F: [454,0,769,96,758], + 0xE790: [712,206,717,65,620], + 0xE791: [444,11,934,71,875], + 0xE792: [454,213,792,83,742], + 0xE793: [444,10,908,85,849], + 0xE794: [444,13,756,71,795], + 0xE795: [455,10,874,73,802], + 0xE796: [694,204,940,103,875], + 0xE797: [454,204,954,51,900], + 0xE798: [694,204,1035,73,963], + 0xE799: [454,10,971,67,895], + 0xE79A: [462,20,714,77,623], + 0xE79B: [704,10,951,73,872], + 0xE79C: [444,10,1293,71,1238], + 0xE79D: [454,194,792,128,742], + 0xE79E: [454,107,615,76,601], + 0xE79F: [454,216,997,90,907], + 0xE7A0: [713,19,823,99,833], + 0xE7A1: [679,0,723,67,849], + 0xE7A2: [710,0,1081,76,1012], + 0xE7A3: [702,16,972,65,939], + 0xE7A4: [710,0,905,60,858], + 0xE7A5: [673,0,942,77,952], + 0xE7A6: [679,0,1087,67,1112], + 0xE7A7: [686,0,990,85,990], + 0xE7A8: [702,0,762,43,898], + 0xE7A9: [686,0,868,40,827], + 0xE7AA: [686,0,817,36,887], + 0xE7AB: [702,0,986,110,978], + 0xE7AC: [452,8,864,59,796], + 0xE7AD: [702,194,738,47,700], + 0xE7AE: [452,210,667,17,688], + 0xE7AF: [723,8,589,58,560], + 0xE7B0: [444,8,548,61,497], + 0xE7B1: [707,202,585,61,575], + 0xE7B2: [452,210,690,44,672], + 0xE7B3: [702,8,629,59,603], + 0xE7B4: [452,8,475,57,430], + 0xE7B5: [452,8,759,65,714], + 0xE7B6: [452,10,833,87,774], + 0xE7B7: [694,12,762,61,722], + 0xE7B8: [452,210,798,53,753], + 0xE7B9: [452,0,649,59,665], + 0xE7BA: [707,202,585,36,540], + 0xE7BB: [444,9,780,42,752], + 0xE7BC: [452,210,680,53,656], + 0xE7BD: [444,8,772,55,744], + 0xE7BE: [444,12,609,42,681], + 0xE7BF: [453,8,722,44,684], + 0xE7C0: [694,202,799,69,764], + 0xE7C1: [452,202,807,42,762], + 0xE7C2: [694,202,864,44,826], + 0xE7C3: [452,8,814,35,772], + 0xE7C4: [460,16,595,48,536], + 0xE7C5: [702,8,791,44,742], + 0xE7C6: [444,8,1101,42,1072], + 0xE7C7: [452,194,680,95,656], + 0xE7C8: [452,105,493,46,515], + 0xE7C9: [452,215,842,62,784], + 0xE7CA: [710,16,701,71,727], + 0xE7CB: [710,0,976,61,928], + 0xE7CC: [686,0,969,71,939], + 0xE7CD: [679,0,903,67,902], + 0xE7CE: [686,0,865,84,884], + 0xE7CF: [686,0,1087,67,1114], + 0xE7D0: [686,0,560,61,593], + 0xE7D1: [686,0,1079,67,1097], + 0xE7D2: [686,0,1264,74,1320], + 0xE7D3: [686,0,1051,67,1114], + 0xE7D4: [452,8,657,59,632], + 0xE7D5: [702,16,938,65,906], + 0xE7D6: [686,0,802,68,934], + 0xE7D7: [673,0,719,39,860], + 0xE7D8: [686,0,1053,57,1036], + 0xE7D9: [715,0,1147,93,1068], + 0xE7DA: [686,0,1134,115,1065], + 0xE7DB: [678,0,1057,106,1020], + 0xE7DC: [686,0,1018,119,1004], + 0xE7DD: [686,0,1259,106,1250], + 0xE7DE: [686,0,659,100,653], + 0xE7DF: [686,0,1253,106,1237], + 0xE7E0: [686,0,1460,119,1479], + 0xE7E1: [686,0,1218,106,1250], + 0xE7E2: [454,10,779,89,728], + 0xE7E3: [705,19,1103,95,1044], + 0xE7E4: [686,0,937,110,1060], + 0xE7E5: [669,0,857,78,992], + 0xE7E6: [686,0,1223,93,1164], + 0xE7E7: [686,24,1081,75,1010], + 0xE7E8: [686,29,1275,109,1169], + 0xE7E9: [703,20,877,70,806], + 0xE7EA: [698,12,1002,75,926], + 0xE7EB: [703,20,869,69,829], + 0xE7EC: [702,16,972,65,939], + 0xE7ED: [705,22,1028,97,930], + 0xE7EE: [703,17,1161,98,1063], + 0xE7EF: [705,22,1048,114,967], + 0xE7F0: [705,19,1142,96,1082] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_NonUnicode"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Normal/Regular/Main.js new file mode 100644 index 0000000..f8f3461 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Normal/Regular/Main.js @@ -0,0 +1,373 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'LatinModernMathJax_Normal', + testString: '\u00A0\u210E\uD835\uDC00\uD835\uDC01\uD835\uDC02\uD835\uDC03\uD835\uDC04\uD835\uDC05\uD835\uDC06\uD835\uDC07\uD835\uDC08\uD835\uDC09\uD835\uDC0A\uD835\uDC0B\uD835\uDC0C', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x210E: [694,11,576,55,546], + 0x1D400: [698,0,869,41,827], + 0x1D401: [686,0,818,39,753], + 0x1D402: [697,11,831,64,766], + 0x1D403: [686,0,882,39,817], + 0x1D404: [680,0,756,39,723], + 0x1D405: [680,0,724,39,675], + 0x1D406: [697,11,904,64,845], + 0x1D407: [686,0,900,39,860], + 0x1D408: [686,0,436,33,403], + 0x1D409: [686,11,594,23,527], + 0x1D40A: [686,0,901,39,852], + 0x1D40B: [686,0,692,39,643], + 0x1D40C: [686,0,1092,40,1051], + 0x1D40D: [686,0,900,39,860], + 0x1D40E: [697,11,864,64,799], + 0x1D40F: [686,0,786,39,721], + 0x1D410: [697,194,864,64,805], + 0x1D411: [686,11,863,39,858], + 0x1D412: [697,11,639,64,574], + 0x1D413: [675,0,800,42,757], + 0x1D414: [686,11,885,39,845], + 0x1D415: [686,8,869,26,842], + 0x1D416: [686,8,1189,24,1164], + 0x1D417: [686,0,869,34,835], + 0x1D418: [686,0,869,19,849], + 0x1D419: [686,0,703,64,645], + 0x1D41A: [453,6,559,27,553], + 0x1D41B: [694,6,639,37,600], + 0x1D41C: [453,6,511,38,478], + 0x1D41D: [694,6,639,38,601], + 0x1D41E: [453,6,527,32,494], + 0x1D41F: [700,0,351,42,437], + 0x1D420: [455,201,575,32,558], + 0x1D421: [694,0,639,45,615], + 0x1D422: [685,0,319,47,286], + 0x1D423: [685,200,351,-56,267], + 0x1D424: [694,0,607,37,587], + 0x1D425: [694,0,319,47,293], + 0x1D426: [450,0,958,45,935], + 0x1D427: [450,0,639,45,615], + 0x1D428: [453,6,575,32,542], + 0x1D429: [450,194,639,37,600], + 0x1D42A: [450,194,607,38,601], + 0x1D42B: [450,0,474,37,442], + 0x1D42C: [453,6,454,38,415], + 0x1D42D: [635,6,447,21,382], + 0x1D42E: [450,6,639,45,615], + 0x1D42F: [444,4,607,26,580], + 0x1D430: [444,4,831,25,805], + 0x1D431: [444,0,607,22,585], + 0x1D432: [444,200,607,22,580], + 0x1D433: [444,0,511,32,462], + 0x1D434: [716,0,750,35,721], + 0x1D435: [683,0,759,42,756], + 0x1D436: [705,22,715,50,760], + 0x1D437: [683,0,828,40,804], + 0x1D438: [680,0,738,38,763], + 0x1D439: [680,0,643,38,748], + 0x1D43A: [705,22,786,50,760], + 0x1D43B: [683,0,831,39,881], + 0x1D43C: [683,0,440,34,497], + 0x1D43D: [683,22,555,71,633], + 0x1D43E: [683,0,849,38,889], + 0x1D43F: [683,0,681,39,643], + 0x1D440: [683,0,970,42,1044], + 0x1D441: [683,0,803,39,881], + 0x1D442: [705,22,763,49,740], + 0x1D443: [683,0,642,40,754], + 0x1D444: [705,194,791,49,740], + 0x1D445: [683,22,759,41,755], + 0x1D446: [705,22,613,52,645], + 0x1D447: [677,0,584,24,704], + 0x1D448: [683,22,683,67,760], + 0x1D449: [683,22,583,56,769], + 0x1D44A: [683,22,944,55,1048], + 0x1D44B: [683,0,828,27,851], + 0x1D44C: [683,0,581,35,762], + 0x1D44D: [683,0,683,58,723], + 0x1D44E: [442,11,529,40,498], + 0x1D44F: [694,11,429,47,415], + 0x1D450: [442,11,433,41,430], + 0x1D451: [694,11,520,40,516], + 0x1D452: [442,11,466,46,430], + 0x1D453: [705,205,490,53,552], + 0x1D454: [442,205,477,15,474], + 0x1D456: [661,11,345,29,293], + 0x1D457: [661,205,412,-13,397], + 0x1D458: [694,11,521,55,508], + 0x1D459: [694,11,298,44,258], + 0x1D45A: [442,11,878,29,848], + 0x1D45B: [442,11,600,29,571], + 0x1D45C: [442,11,485,41,469], + 0x1D45D: [442,194,503,-32,490], + 0x1D45E: [442,194,446,40,452], + 0x1D45F: [442,11,451,29,436], + 0x1D460: [442,11,469,52,420], + 0x1D461: [626,11,361,23,330], + 0x1D462: [442,11,572,29,543], + 0x1D463: [442,11,485,29,468], + 0x1D464: [442,11,716,29,691], + 0x1D465: [442,11,572,29,527], + 0x1D466: [442,205,490,29,490], + 0x1D467: [442,11,465,43,467], + 0x1D468: [711,0,869,45,834], + 0x1D469: [686,0,866,43,854], + 0x1D46A: [703,17,817,55,855], + 0x1D46B: [686,0,938,43,915], + 0x1D46C: [680,0,810,43,825], + 0x1D46D: [680,0,689,43,809], + 0x1D46E: [703,17,887,55,854], + 0x1D46F: [686,0,982,43,1027], + 0x1D470: [686,0,511,38,566], + 0x1D471: [686,17,631,56,694], + 0x1D472: [686,0,971,43,1003], + 0x1D473: [686,0,756,43,707], + 0x1D474: [686,0,1142,46,1216], + 0x1D475: [686,0,950,43,1027], + 0x1D476: [703,17,837,53,815], + 0x1D477: [686,0,723,43,849], + 0x1D478: [703,194,869,53,815], + 0x1D479: [686,17,872,43,881], + 0x1D47A: [703,17,693,64,714], + 0x1D47B: [675,0,637,25,772], + 0x1D47C: [686,17,800,63,877], + 0x1D47D: [686,17,678,66,885], + 0x1D47E: [686,17,1093,65,1207], + 0x1D47F: [686,0,947,39,953], + 0x1D480: [686,0,675,44,875], + 0x1D481: [686,0,773,68,805], + 0x1D482: [452,8,633,45,599], + 0x1D483: [694,8,521,52,506], + 0x1D484: [452,8,513,46,511], + 0x1D485: [694,8,610,45,604], + 0x1D486: [452,8,554,49,511], + 0x1D487: [702,202,568,62,626], + 0x1D488: [452,202,545,6,534], + 0x1D489: [694,8,668,50,634], + 0x1D48A: [694,8,405,32,359], + 0x1D48B: [694,202,471,-14,450], + 0x1D48C: [694,8,604,50,570], + 0x1D48D: [694,8,348,33,288], + 0x1D48E: [452,8,1032,32,998], + 0x1D48F: [452,8,713,32,679], + 0x1D490: [452,8,585,46,569], + 0x1D491: [452,194,601,-15,586], + 0x1D492: [452,194,542,45,543], + 0x1D493: [452,8,529,32,505], + 0x1D494: [452,8,531,57,476], + 0x1D495: [643,8,415,25,379], + 0x1D496: [452,8,681,32,647], + 0x1D497: [453,8,567,32,541], + 0x1D498: [453,8,831,32,797], + 0x1D499: [452,8,659,38,604], + 0x1D49A: [452,202,590,32,582], + 0x1D49B: [452,8,555,42,538], + 0x1D6A4: [442,11,322,29,293], + 0x1D6A5: [442,205,384,-13,361], + 0x1D6A8: [698,0,869,41,827], + 0x1D6A9: [686,0,818,39,753], + 0x1D6AA: [680,0,692,39,643], + 0x1D6AB: [698,0,958,57,900], + 0x1D6AC: [680,0,756,39,723], + 0x1D6AD: [686,0,703,64,645], + 0x1D6AE: [686,0,900,39,860], + 0x1D6AF: [697,11,894,64,829], + 0x1D6B0: [686,0,436,33,403], + 0x1D6B1: [686,0,901,39,852], + 0x1D6B2: [698,0,806,40,765], + 0x1D6B3: [686,0,1092,40,1051], + 0x1D6B4: [686,0,900,39,860], + 0x1D6B5: [675,0,767,48,718], + 0x1D6B6: [697,11,864,64,799], + 0x1D6B7: [680,0,900,39,860], + 0x1D6B8: [686,0,786,39,721], + 0x1D6B9: [697,11,894,64,829], + 0x1D6BA: [686,0,831,64,766], + 0x1D6BB: [675,0,800,42,757], + 0x1D6BC: [697,0,894,64,829], + 0x1D6BD: [686,0,831,64,766], + 0x1D6BE: [686,0,869,34,835], + 0x1D6BF: [686,0,894,64,829], + 0x1D6C0: [697,0,831,51,779], + 0x1D6C1: [686,25,958,57,900], + 0x1D6C2: [452,8,743,52,744], + 0x1D6C3: [703,194,647,92,562], + 0x1D6C4: [452,211,679,26,594], + 0x1D6C5: [718,8,551,53,466], + 0x1D6C6: [461,17,597,57,471], + 0x1D6C7: [703,202,615,83,559], + 0x1D6C8: [452,211,615,-3,555], + 0x1D6C9: [702,8,567,52,513], + 0x1D6CA: [452,8,359,43,361], + 0x1D6CB: [452,8,615,59,617], + 0x1D6CC: [694,12,618,21,663], + 0x1D6CD: [452,211,615,59,617], + 0x1D6CE: [452,0,583,-16,522], + 0x1D6CF: [703,202,615,83,559], + 0x1D6D0: [453,6,575,32,542], + 0x1D6D1: [444,9,679,-3,610], + 0x1D6D2: [452,211,567,59,513], + 0x1D6D3: [452,105,551,84,499], + 0x1D6D4: [444,8,695,52,626], + 0x1D6D5: [444,12,615,-3,546], + 0x1D6D6: [453,8,615,-3,563], + 0x1D6D7: [452,216,743,51,690], + 0x1D6D8: [452,202,743,-3,744], + 0x1D6D9: [694,202,743,-3,690], + 0x1D6DA: [453,8,743,51,689], + 0x1D6DB: [711,17,679,67,610], + 0x1D6DC: [444,8,506,78,505], + 0x1D6DD: [702,8,615,-3,608], + 0x1D6DE: [452,10,724,35,689], + 0x1D6DF: [694,202,743,61,681], + 0x1D6E0: [452,194,567,59,514], + 0x1D6E1: [444,8,966,-3,897], + 0x1D6E2: [716,0,750,35,721], + 0x1D6E3: [683,0,759,42,756], + 0x1D6E4: [680,0,615,39,720], + 0x1D6E5: [716,0,833,49,787], + 0x1D6E6: [680,0,738,38,763], + 0x1D6E7: [683,0,683,58,723], + 0x1D6E8: [683,0,831,39,881], + 0x1D6E9: [705,22,763,49,740], + 0x1D6EA: [683,0,440,34,497], + 0x1D6EB: [683,0,849,38,889], + 0x1D6EC: [716,0,694,35,666], + 0x1D6ED: [683,0,970,42,1044], + 0x1D6EE: [683,0,803,39,881], + 0x1D6EF: [677,0,742,53,777], + 0x1D6F0: [705,22,763,49,740], + 0x1D6F1: [680,0,831,39,880], + 0x1D6F2: [683,0,642,40,754], + 0x1D6F3: [705,22,763,49,740], + 0x1D6F4: [683,0,780,58,806], + 0x1D6F5: [677,0,584,24,704], + 0x1D6F6: [705,0,583,28,701], + 0x1D6F7: [683,0,667,23,643], + 0x1D6F8: [683,0,828,27,851], + 0x1D6F9: [683,0,612,27,693], + 0x1D6FA: [705,0,772,80,786], + 0x1D6FB: [683,33,833,50,789], + 0x1D6FC: [442,11,640,41,602], + 0x1D6FD: [706,194,566,30,574], + 0x1D6FE: [442,215,518,18,543], + 0x1D6FF: [712,11,444,43,452], + 0x1D700: [453,22,466,26,429], + 0x1D701: [697,205,438,46,474], + 0x1D702: [442,216,497,29,496], + 0x1D703: [705,11,469,42,455], + 0x1D704: [442,11,354,56,324], + 0x1D705: [442,11,576,55,546], + 0x1D706: [694,13,583,53,548], + 0x1D707: [442,216,603,30,572], + 0x1D708: [442,0,494,53,524], + 0x1D709: [697,205,438,23,446], + 0x1D70A: [442,11,485,41,469], + 0x1D70B: [431,11,570,27,567], + 0x1D70C: [442,216,517,30,502], + 0x1D70D: [442,108,363,31,409], + 0x1D70E: [431,11,571,38,567], + 0x1D70F: [431,12,437,27,511], + 0x1D710: [442,11,540,29,524], + 0x1D711: [442,218,654,50,619], + 0x1D712: [442,205,626,31,594], + 0x1D713: [694,205,651,29,635], + 0x1D714: [442,11,622,13,604], + 0x1D715: [716,22,531,40,566], + 0x1D716: [431,11,406,47,376], + 0x1D717: [705,11,591,29,561], + 0x1D718: [442,12,624,70,582], + 0x1D719: [694,205,596,49,573], + 0x1D71A: [442,194,517,74,502], + 0x1D71B: [431,11,828,27,817], + 0x1D71C: [711,0,869,45,834], + 0x1D71D: [686,0,866,43,854], + 0x1D71E: [680,0,657,43,777], + 0x1D71F: [711,0,958,60,904], + 0x1D720: [680,0,810,43,825], + 0x1D721: [686,0,773,68,805], + 0x1D722: [686,0,982,43,1027], + 0x1D723: [703,17,867,53,844], + 0x1D724: [686,0,511,38,566], + 0x1D725: [686,0,971,43,1003], + 0x1D726: [711,0,806,45,772], + 0x1D727: [686,0,1142,46,1216], + 0x1D728: [686,0,950,43,1027], + 0x1D729: [675,0,841,62,867], + 0x1D72A: [703,17,837,53,815], + 0x1D72B: [680,0,982,43,1026], + 0x1D72C: [686,0,723,43,849], + 0x1D72D: [703,17,867,53,844], + 0x1D72E: [686,0,885,69,901], + 0x1D72F: [675,0,637,25,772], + 0x1D730: [703,0,671,32,802], + 0x1D731: [686,0,767,28,738], + 0x1D732: [686,0,947,39,953], + 0x1D733: [686,0,714,27,792], + 0x1D734: [703,0,879,93,886], + 0x1D735: [686,25,958,60,904], + 0x1D736: [452,8,761,46,704], + 0x1D737: [703,194,660,35,638], + 0x1D738: [452,211,590,12,617], + 0x1D739: [718,8,522,47,513], + 0x1D73A: [461,17,529,35,483], + 0x1D73B: [703,202,508,48,522], + 0x1D73C: [452,211,600,32,594], + 0x1D73D: [702,8,562,46,547], + 0x1D73E: [452,8,412,46,378], + 0x1D73F: [452,8,668,50,634], + 0x1D740: [694,12,671,47,644], + 0x1D741: [452,211,708,40,674], + 0x1D742: [452,0,577,45,603], + 0x1D743: [703,202,508,24,491], + 0x1D744: [452,8,585,46,569], + 0x1D745: [444,9,682,31,668], + 0x1D746: [452,211,612,40,597], + 0x1D747: [452,105,424,35,462], + 0x1D748: [444,8,686,42,671], + 0x1D749: [444,12,521,31,604], + 0x1D74A: [453,8,631,32,605], + 0x1D74B: [452,216,747,52,704], + 0x1D74C: [452,202,718,37,679], + 0x1D74D: [694,202,758,32,733], + 0x1D74E: [453,8,718,22,691], + 0x1D74F: [711,17,628,59,657], + 0x1D750: [444,8,483,50,444], + 0x1D751: [702,8,692,32,655], + 0x1D752: [452,10,724,72,681], + 0x1D753: [694,202,713,56,687], + 0x1D754: [452,194,612,81,597], + 0x1D755: [444,8,975,31,955], + 0x1D7CE: [655,11,575,45,529], + 0x1D7CF: [655,0,575,85,494], + 0x1D7D0: [655,0,575,57,517], + 0x1D7D1: [655,11,575,48,526], + 0x1D7D2: [656,0,575,32,542], + 0x1D7D3: [655,11,575,57,517], + 0x1D7D4: [655,11,575,48,526], + 0x1D7D5: [676,11,575,64,558], + 0x1D7D6: [655,11,575,48,526], + 0x1D7D7: [655,11,575,48,526] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Normal"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Normal/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Operators/Regular/Main.js new file mode 100644 index 0000000..73a285b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Operators/Regular/Main.js @@ -0,0 +1,114 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'LatinModernMathJax_Operators', + testString: '\u00A0\u2206\u220A\u220C\u220E\u220F\u2210\u2211\u221F\u222C\u222D\u222E\u222F\u2230\u2231', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x2206: [716,0,833,47,785], + 0x220A: [443,-57,498,56,442], + 0x220C: [730,230,667,80,587], + 0x220E: [554,0,666,56,610], + 0x220F: [750,250,944,56,887], + 0x2210: [750,250,944,56,887], + 0x2211: [750,250,1056,56,999], + 0x221F: [679,-13,778,56,722], + 0x222C: [805,306,1035,56,979], + 0x222D: [805,306,1405,56,1349], + 0x222E: [805,306,665,56,609], + 0x222F: [805,306,1035,56,979], + 0x2230: [805,306,1405,56,1349], + 0x2231: [805,306,695,56,667], + 0x2232: [805,306,700,56,672], + 0x2233: [805,306,682,56,644], + 0x2236: [422,-78,278,86,192], + 0x2237: [422,-78,516,86,430], + 0x2238: [504,-230,778,56,722], + 0x2239: [422,-78,906,56,850], + 0x223A: [504,4,778,56,722], + 0x223B: [536,36,773,56,717], + 0x223E: [466,-34,901,56,845], + 0x223F: [492,-8,778,56,722], + 0x2244: [603,103,778,56,722], + 0x2247: [603,103,778,56,722], + 0x2249: [603,103,773,56,717], + 0x224B: [541,41,773,56,717], + 0x224C: [541,-36,778,56,722], + 0x2254: [422,-78,906,56,850], + 0x2255: [422,-78,906,56,850], + 0x2258: [619,-133,778,56,722], + 0x2259: [752,-133,778,56,722], + 0x225A: [752,-133,778,56,722], + 0x225B: [810,-133,778,56,722], + 0x225D: [793,-133,778,56,722], + 0x225E: [684,-133,778,56,722], + 0x225F: [803,-133,778,56,722], + 0x2262: [730,230,778,56,722], + 0x2263: [561,61,778,56,722], + 0x226D: [730,230,778,56,722], + 0x2274: [691,191,776,55,719], + 0x2275: [691,191,776,55,719], + 0x2278: [776,276,778,76,701], + 0x2279: [776,276,778,76,701], + 0x2284: [730,230,778,85,693], + 0x2285: [730,230,778,85,693], + 0x228C: [604,20,667,61,607], + 0x228D: [604,20,667,61,607], + 0x229C: [592,92,796,56,740], + 0x22A6: [684,0,445,56,389], + 0x22A7: [684,0,445,56,389], + 0x22AB: [684,0,653,56,597], + 0x22B6: [400,-100,1078,56,1022], + 0x22B7: [400,-100,1078,56,1022], + 0x22B9: [603,103,818,56,762], + 0x22BD: [684,17,642,55,585], + 0x22BE: [679,109,900,56,844], + 0x22BF: [679,-13,778,56,722], + 0x22C0: [780,264,833,51,781], + 0x22C1: [764,280,833,51,781], + 0x22C2: [772,250,833,50,784], + 0x22C3: [750,272,833,50,784], + 0x22C7: [586,86,802,56,745], + 0x22D5: [750,250,778,56,722], + 0x22DC: [631,119,778,76,702], + 0x22DD: [631,119,778,76,702], + 0x22E2: [730,230,778,76,702], + 0x22E3: [730,230,778,76,702], + 0x22E4: [627,211,778,76,702], + 0x22E5: [627,211,778,76,702], + 0x22F0: [500,0,613,56,556], + 0x2A00: [743,243,1111,63,1049], + 0x2A01: [743,243,1111,63,1049], + 0x2A02: [743,243,1111,63,1049], + 0x2A03: [750,272,833,50,784], + 0x2A04: [750,272,833,50,784], + 0x2A05: [764,264,833,50,784], + 0x2A06: [764,264,833,50,784], + 0x2A09: [740,240,1092,55,1036], + 0x2A0C: [805,306,1775,56,1719], + 0x2A11: [805,306,695,56,667], + 0x2A2F: [496,-3,778,142,636] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Operators"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Operators/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/SansSerif/Regular/Main.js new file mode 100644 index 0000000..91773cb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/SansSerif/Regular/Main.js @@ -0,0 +1,375 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'LatinModernMathJax_SansSerif', + testString: '\u00A0\uD835\uDDA0\uD835\uDDA1\uD835\uDDA2\uD835\uDDA3\uD835\uDDA4\uD835\uDDA5\uD835\uDDA6\uD835\uDDA7\uD835\uDDA8\uD835\uDDA9\uD835\uDDAA\uD835\uDDAB\uD835\uDDAC\uD835\uDDAD', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x1D5A0: [694,0,667,28,638], + 0x1D5A1: [694,0,667,97,610], + 0x1D5A2: [706,11,639,66,587], + 0x1D5A3: [694,0,722,96,665], + 0x1D5A4: [691,0,597,94,554], + 0x1D5A5: [691,0,569,94,526], + 0x1D5A6: [706,11,667,66,598], + 0x1D5A7: [694,0,708,94,613], + 0x1D5A8: [694,0,278,94,183], + 0x1D5A9: [694,22,472,42,388], + 0x1D5AA: [694,0,694,96,651], + 0x1D5AB: [694,0,542,94,499], + 0x1D5AC: [694,0,875,100,774], + 0x1D5AD: [694,0,708,96,611], + 0x1D5AE: [716,22,736,56,679], + 0x1D5AF: [694,0,639,96,582], + 0x1D5B0: [716,125,736,56,679], + 0x1D5B1: [694,0,646,96,617], + 0x1D5B2: [716,22,556,44,499], + 0x1D5B3: [688,0,681,36,644], + 0x1D5B4: [694,22,688,94,593], + 0x1D5B5: [694,0,667,14,652], + 0x1D5B6: [694,0,944,14,929], + 0x1D5B7: [694,0,667,14,652], + 0x1D5B8: [694,0,667,3,663], + 0x1D5B9: [694,0,611,56,560], + 0x1D5BA: [461,11,481,54,409], + 0x1D5BB: [694,11,517,82,480], + 0x1D5BC: [461,11,444,36,415], + 0x1D5BD: [694,11,517,36,434], + 0x1D5BE: [461,11,444,35,414], + 0x1D5BF: [705,0,306,27,347], + 0x1D5C0: [455,206,500,28,485], + 0x1D5C1: [694,0,517,81,435], + 0x1D5C2: [655,0,239,75,164], + 0x1D5C3: [655,205,267,-61,184], + 0x1D5C4: [694,0,489,84,471], + 0x1D5C5: [694,0,239,81,156], + 0x1D5C6: [455,0,794,81,713], + 0x1D5C7: [455,0,517,81,435], + 0x1D5C8: [461,11,500,30,469], + 0x1D5C9: [455,194,517,82,480], + 0x1D5CA: [455,194,517,36,434], + 0x1D5CB: [455,0,342,82,327], + 0x1D5CC: [461,11,383,28,360], + 0x1D5CD: [571,11,361,19,332], + 0x1D5CE: [444,11,517,81,435], + 0x1D5CF: [444,0,461,14,446], + 0x1D5D0: [444,0,683,14,668], + 0x1D5D1: [444,0,461,0,460], + 0x1D5D2: [444,205,461,14,446], + 0x1D5D3: [444,0,435,28,402], + 0x1D5D4: [694,0,733,42,690], + 0x1D5D5: [694,0,733,91,671], + 0x1D5D6: [706,11,703,61,646], + 0x1D5D7: [694,0,794,91,732], + 0x1D5D8: [691,0,642,91,595], + 0x1D5D9: [691,0,611,91,564], + 0x1D5DA: [706,11,733,61,658], + 0x1D5DB: [694,0,794,91,702], + 0x1D5DC: [694,0,331,92,239], + 0x1D5DD: [694,22,519,46,427], + 0x1D5DE: [694,0,764,91,701], + 0x1D5DF: [694,0,581,91,534], + 0x1D5E0: [694,0,978,91,886], + 0x1D5E1: [694,0,794,91,702], + 0x1D5E2: [716,22,794,61,732], + 0x1D5E3: [694,0,703,91,641], + 0x1D5E4: [716,106,794,61,732], + 0x1D5E5: [694,0,703,91,653], + 0x1D5E6: [716,22,611,49,549], + 0x1D5E7: [688,0,733,40,692], + 0x1D5E8: [694,22,764,91,672], + 0x1D5E9: [694,0,733,27,705], + 0x1D5EA: [694,0,1039,24,1014], + 0x1D5EB: [694,0,733,37,694], + 0x1D5EC: [694,0,733,24,708], + 0x1D5ED: [694,0,672,61,616], + 0x1D5EE: [475,11,525,41,474], + 0x1D5EF: [694,11,561,61,523], + 0x1D5F0: [475,11,489,37,457], + 0x1D5F1: [694,11,561,37,499], + 0x1D5F2: [475,11,511,31,479], + 0x1D5F3: [705,0,336,30,381], + 0x1D5F4: [469,206,550,25,534], + 0x1D5F5: [694,0,561,60,500], + 0x1D5F6: [673,0,256,54,201], + 0x1D5F7: [673,205,286,-71,224], + 0x1D5F8: [694,0,531,69,497], + 0x1D5F9: [694,0,256,61,194], + 0x1D5FA: [469,0,867,60,806], + 0x1D5FB: [469,0,561,60,500], + 0x1D5FC: [475,11,550,31,518], + 0x1D5FD: [469,194,561,61,523], + 0x1D5FE: [469,194,561,37,499], + 0x1D5FF: [469,0,372,61,356], + 0x1D600: [475,11,422,31,396], + 0x1D601: [589,11,404,20,373], + 0x1D602: [458,11,561,60,500], + 0x1D603: [458,0,500,26,473], + 0x1D604: [458,0,744,24,719], + 0x1D605: [458,0,500,24,474], + 0x1D606: [458,205,500,29,473], + 0x1D607: [458,0,476,31,441], + 0x1D608: [694,0,667,28,638], + 0x1D609: [694,0,667,97,696], + 0x1D60A: [706,11,639,130,718], + 0x1D60B: [694,0,722,96,746], + 0x1D60C: [691,0,597,94,687], + 0x1D60D: [691,0,569,94,673], + 0x1D60E: [706,11,667,130,729], + 0x1D60F: [694,0,708,94,761], + 0x1D610: [694,0,278,94,331], + 0x1D611: [694,22,472,46,536], + 0x1D612: [694,0,694,96,785], + 0x1D613: [694,0,542,94,513], + 0x1D614: [694,0,875,100,922], + 0x1D615: [694,0,708,96,759], + 0x1D616: [716,22,736,119,762], + 0x1D617: [694,0,639,96,690], + 0x1D618: [716,125,736,119,762], + 0x1D619: [694,0,646,96,700], + 0x1D61A: [716,22,556,54,607], + 0x1D61B: [688,0,681,168,790], + 0x1D61C: [694,22,688,137,741], + 0x1D61D: [694,0,667,162,800], + 0x1D61E: [694,0,944,162,1077], + 0x1D61F: [694,0,667,14,758], + 0x1D620: [694,0,667,151,811], + 0x1D621: [694,0,611,56,702], + 0x1D622: [461,11,481,75,474], + 0x1D623: [694,11,517,82,534], + 0x1D624: [461,11,444,77,499], + 0x1D625: [694,11,517,75,582], + 0x1D626: [461,11,444,77,471], + 0x1D627: [705,0,306,101,495], + 0x1D628: [455,206,500,11,571], + 0x1D629: [694,0,517,81,505], + 0x1D62A: [655,0,239,81,303], + 0x1D62B: [655,205,267,-97,323], + 0x1D62C: [694,0,489,84,543], + 0x1D62D: [694,0,239,81,304], + 0x1D62E: [455,0,794,81,783], + 0x1D62F: [455,0,517,81,505], + 0x1D630: [461,11,500,71,521], + 0x1D631: [455,194,517,41,534], + 0x1D632: [455,194,517,75,531], + 0x1D633: [455,0,342,82,424], + 0x1D634: [461,11,383,35,434], + 0x1D635: [571,11,361,101,410], + 0x1D636: [444,11,517,98,529], + 0x1D637: [444,0,461,108,540], + 0x1D638: [444,0,683,108,762], + 0x1D639: [444,0,461,0,537], + 0x1D63A: [444,205,461,1,540], + 0x1D63B: [444,0,435,28,494], + 0x1D63C: [694,0,733,47,696], + 0x1D63D: [694,0,733,98,753], + 0x1D63E: [706,11,703,122,773], + 0x1D63F: [694,0,794,98,818], + 0x1D640: [691,0,642,98,719], + 0x1D641: [691,0,611,98,703], + 0x1D642: [706,11,733,122,785], + 0x1D643: [694,0,794,98,841], + 0x1D644: [694,0,331,99,378], + 0x1D645: [694,22,519,52,566], + 0x1D646: [694,0,764,98,839], + 0x1D647: [694,0,581,98,548], + 0x1D648: [694,0,978,98,1025], + 0x1D649: [694,0,794,98,841], + 0x1D64A: [716,22,794,119,819], + 0x1D64B: [694,0,703,98,749], + 0x1D64C: [716,106,794,119,819], + 0x1D64D: [694,0,703,98,752], + 0x1D64E: [716,22,611,61,651], + 0x1D64F: [688,0,733,171,830], + 0x1D650: [694,22,764,132,811], + 0x1D651: [694,0,733,168,847], + 0x1D652: [694,0,1039,164,1156], + 0x1D653: [694,0,733,41,792], + 0x1D654: [694,0,733,166,851], + 0x1D655: [694,0,672,68,750], + 0x1D656: [475,11,525,65,545], + 0x1D657: [694,11,561,68,582], + 0x1D658: [475,11,489,77,541], + 0x1D659: [694,11,561,75,638], + 0x1D65A: [475,11,511,72,542], + 0x1D65B: [705,0,336,93,525], + 0x1D65C: [469,206,550,8,621], + 0x1D65D: [694,0,561,67,575], + 0x1D65E: [673,0,256,68,336], + 0x1D65F: [673,205,286,-105,359], + 0x1D660: [694,0,531,76,575], + 0x1D661: [694,0,256,68,333], + 0x1D662: [469,0,867,67,881], + 0x1D663: [469,0,561,67,575], + 0x1D664: [475,11,550,70,575], + 0x1D665: [469,194,561,27,583], + 0x1D666: [469,194,561,75,590], + 0x1D667: [469,0,372,68,452], + 0x1D668: [475,11,422,40,469], + 0x1D669: [589,11,404,108,445], + 0x1D66A: [458,11,561,81,589], + 0x1D66B: [458,0,500,116,564], + 0x1D66C: [458,0,744,115,810], + 0x1D66D: [458,0,500,28,549], + 0x1D66E: [458,205,500,3,565], + 0x1D66F: [458,0,476,38,527], + 0x1D756: [694,0,733,42,690], + 0x1D757: [694,0,733,91,671], + 0x1D758: [691,0,581,91,534], + 0x1D759: [694,0,917,60,856], + 0x1D75A: [691,0,642,91,595], + 0x1D75B: [694,0,672,61,616], + 0x1D75C: [694,0,794,91,702], + 0x1D75D: [716,22,856,61,794], + 0x1D75E: [694,0,331,92,239], + 0x1D75F: [694,0,764,91,701], + 0x1D760: [694,0,672,40,631], + 0x1D761: [694,0,978,91,886], + 0x1D762: [694,0,794,91,702], + 0x1D763: [688,0,733,46,686], + 0x1D764: [716,22,794,61,732], + 0x1D765: [691,0,794,91,702], + 0x1D766: [694,0,703,91,641], + 0x1D767: [716,22,856,61,794], + 0x1D768: [694,0,794,61,732], + 0x1D769: [688,0,733,40,692], + 0x1D76A: [716,0,856,61,794], + 0x1D76B: [694,0,794,61,732], + 0x1D76C: [694,0,733,37,694], + 0x1D76D: [694,0,856,61,794], + 0x1D76E: [716,0,794,49,744], + 0x1D76F: [694,0,917,60,856], + 0x1D770: [469,12,837,56,781], + 0x1D771: [705,195,606,56,550], + 0x1D772: [469,217,698,56,641], + 0x1D773: [733,12,541,56,485], + 0x1D774: [480,23,512,56,456], + 0x1D775: [750,208,566,56,510], + 0x1D776: [469,217,735,56,679], + 0x1D777: [705,12,567,56,511], + 0x1D778: [469,12,477,56,421], + 0x1D779: [469,12,675,56,619], + 0x1D77A: [694,12,764,56,708], + 0x1D77B: [469,217,735,56,679], + 0x1D77C: [469,0,574,56,518], + 0x1D77D: [750,226,574,56,518], + 0x1D77E: [475,11,599,56,543], + 0x1D77F: [458,12,760,55,703], + 0x1D780: [469,217,567,56,511], + 0x1D781: [469,109,524,56,468], + 0x1D782: [458,12,683,56,627], + 0x1D783: [458,11,699,55,642], + 0x1D784: [470,12,728,56,672], + 0x1D785: [469,217,716,56,660], + 0x1D786: [469,206,849,56,793], + 0x1D787: [694,206,870,56,814], + 0x1D788: [470,12,731,56,675], + 0x1D789: [716,22,569,56,513], + 0x1D78A: [458,12,519,56,462], + 0x1D78B: [705,12,811,56,755], + 0x1D78C: [469,10,609,56,553], + 0x1D78D: [694,206,730,56,674], + 0x1D78E: [469,245,567,56,511], + 0x1D78F: [458,12,1035,55,978], + 0x1D790: [694,0,733,47,696], + 0x1D791: [694,0,733,98,753], + 0x1D792: [691,0,581,98,673], + 0x1D793: [694,0,917,64,861], + 0x1D794: [691,0,642,98,719], + 0x1D795: [694,0,672,68,750], + 0x1D796: [694,0,794,98,841], + 0x1D797: [716,22,856,120,880], + 0x1D798: [694,0,331,99,378], + 0x1D799: [694,0,764,98,839], + 0x1D79A: [694,0,672,45,637], + 0x1D79B: [694,0,978,98,1025], + 0x1D79C: [694,0,794,98,841], + 0x1D79D: [688,0,733,53,818], + 0x1D79E: [716,22,794,119,819], + 0x1D79F: [691,0,794,98,841], + 0x1D7A0: [694,0,703,98,749], + 0x1D7A1: [716,22,856,120,880], + 0x1D7A2: [694,0,794,67,871], + 0x1D7A3: [688,0,733,171,830], + 0x1D7A4: [716,0,856,178,915], + 0x1D7A5: [694,0,794,128,812], + 0x1D7A6: [694,0,769,60,811], + 0x1D7A7: [694,0,856,184,919], + 0x1D7A8: [716,0,794,56,836], + 0x1D7A9: [682,12,917,130,927], + 0x1D7AA: [469,12,837,96,799], + 0x1D7AB: [705,195,606,16,620], + 0x1D7AC: [469,217,697,114,736], + 0x1D7AD: [733,12,541,96,566], + 0x1D7AE: [480,23,513,81,516], + 0x1D7AF: [750,208,566,98,562], + 0x1D7B0: [469,217,735,120,748], + 0x1D7B1: [705,12,567,109,605], + 0x1D7B2: [469,12,477,76,454], + 0x1D7B3: [469,12,676,66,652], + 0x1D7B4: [694,12,764,105,708], + 0x1D7B5: [469,217,736,22,712], + 0x1D7B6: [469,0,574,62,605], + 0x1D7B7: [750,226,574,77,521], + 0x1D7B8: [475,11,599,95,600], + 0x1D7B9: [458,12,760,121,789], + 0x1D7BA: [469,217,568,22,568], + 0x1D7BB: [469,109,524,106,501], + 0x1D7BC: [458,12,683,92,712], + 0x1D7BD: [458,11,699,121,728], + 0x1D7BE: [470,12,728,120,736], + 0x1D7BF: [469,217,716,103,718], + 0x1D7C0: [469,206,849,108,786], + 0x1D7C1: [694,206,870,120,878], + 0x1D7C2: [470,12,731,100,738], + 0x1D7C3: [716,22,569,93,589], + 0x1D7C4: [458,12,519,99,492], + 0x1D7C5: [705,12,811,120,835], + 0x1D7C6: [469,10,609,67,639], + 0x1D7C7: [694,206,730,98,729], + 0x1D7C8: [469,245,567,66,568], + 0x1D7C9: [458,12,1035,121,1064], + 0x1D7E2: [678,22,500,42,457], + 0x1D7E3: [678,0,500,89,424], + 0x1D7E4: [678,0,500,42,449], + 0x1D7E5: [678,22,500,42,457], + 0x1D7E6: [656,0,500,28,471], + 0x1D7E7: [656,22,500,39,449], + 0x1D7E8: [678,22,500,42,457], + 0x1D7E9: [656,11,500,42,457], + 0x1D7EA: [678,22,500,42,457], + 0x1D7EB: [678,22,500,42,457], + 0x1D7EC: [716,22,550,43,506], + 0x1D7ED: [716,0,550,76,473], + 0x1D7EE: [716,0,550,46,494], + 0x1D7EF: [716,22,550,46,503], + 0x1D7F0: [694,0,550,31,518], + 0x1D7F1: [694,22,550,37,494], + 0x1D7F2: [716,22,550,46,503], + 0x1D7F3: [695,11,550,46,503], + 0x1D7F4: [716,22,550,46,503], + 0x1D7F5: [716,22,550,46,503] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_SansSerif"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Script/Regular/Main.js new file mode 100644 index 0000000..5b9a1ab --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Script/Regular/Main.js @@ -0,0 +1,83 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Script'] = { + directory: 'Script/Regular', + family: 'LatinModernMathJax_Script', + testString: '\u00A0\u210B\u2110\u2112\u211B\u212C\u2130\u2131\u2133\uD835\uDC9C\uD835\uDC9E\uD835\uDC9F\uD835\uDCA2\uD835\uDCA5\uD835\uDCA6', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x210B: [690,8,1065,40,1024], + 0x2110: [685,14,620,40,580], + 0x2112: [685,7,770,40,730], + 0x211B: [712,6,818,40,778], + 0x212C: [712,1,778,40,737], + 0x2130: [702,12,613,40,573], + 0x2131: [699,15,904,40,865], + 0x2133: [699,13,1149,40,1109], + 0x1D49C: [694,15,857,39,817], + 0x1D49E: [697,15,654,39,614], + 0x1D49F: [716,-4,871,40,831], + 0x1D4A2: [697,130,685,39,644], + 0x1D4A5: [692,129,698,40,658], + 0x1D4A6: [690,12,989,40,949], + 0x1D4A9: [706,7,1007,40,967], + 0x1D4AA: [686,18,699,40,659], + 0x1D4AB: [710,11,763,40,723], + 0x1D4AC: [694,24,716,40,676], + 0x1D4AE: [702,12,625,40,585], + 0x1D4AF: [693,6,776,39,736], + 0x1D4B0: [699,16,744,41,704], + 0x1D4B1: [709,9,710,40,669], + 0x1D4B2: [702,5,1028,40,988], + 0x1D4B3: [706,9,870,39,829], + 0x1D4B4: [702,136,628,40,588], + 0x1D4B5: [696,11,726,41,687], + 0x1D4D0: [711,17,969,40,930], + 0x1D4D1: [727,1,916,40,876], + 0x1D4D2: [709,15,745,40,705], + 0x1D4D3: [727,1,1007,40,966], + 0x1D4D4: [708,12,705,40,665], + 0x1D4D5: [731,14,1005,40,966], + 0x1D4D6: [705,138,790,39,749], + 0x1D4D7: [699,12,1191,39,1150], + 0x1D4D8: [703,18,715,39,675], + 0x1D4D9: [701,137,771,40,732], + 0x1D4DA: [709,9,1099,39,1058], + 0x1D4DB: [710,12,861,40,822], + 0x1D4DC: [710,17,1284,40,1244], + 0x1D4DD: [712,13,1095,40,1054], + 0x1D4DE: [707,20,822,40,781], + 0x1D4DF: [726,13,880,40,840], + 0x1D4E0: [705,42,839,41,799], + 0x1D4E1: [732,12,923,40,882], + 0x1D4E2: [715,18,722,40,682], + 0x1D4E3: [697,11,910,39,870], + 0x1D4E4: [709,13,853,39,813], + 0x1D4E5: [702,16,784,40,744], + 0x1D4E6: [710,8,1150,40,1110], + 0x1D4E7: [712,11,970,40,930], + 0x1D4E8: [709,135,738,39,698], + 0x1D4E9: [705,14,800,40,760] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Script"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Shapes/Regular/Main.js new file mode 100644 index 0000000..24eac6a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Shapes/Regular/Main.js @@ -0,0 +1,70 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'LatinModernMathJax_Shapes', + testString: '\u00A0\u2422\u2423\u2500\u2502\u251C\u2524\u252C\u2534\u253C\u2581\u2588\u2591\u2592\u2593', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x2422: [694,11,556,28,521], + 0x2423: [249,105,500,42,458], + 0x2500: [270,-230,666,-20,686], + 0x2502: [770,270,666,313,353], + 0x251C: [770,-230,666,313,686], + 0x2524: [270,270,666,-20,353], + 0x252C: [270,270,666,313,686], + 0x2534: [770,-230,666,-20,353], + 0x253C: [770,270,666,-20,686], + 0x2581: [83,0,664,0,664], + 0x2588: [664,0,664,0,664], + 0x2591: [664,0,664,0,664], + 0x2592: [664,0,664,0,664], + 0x2593: [664,0,664,0,664], + 0x25AA: [358,-142,328,56,272], + 0x25AB: [358,-142,328,56,272], + 0x25AC: [417,-84,778,56,722], + 0x25AD: [417,-84,778,56,722], + 0x25B7: [678,178,858,56,802], + 0x25C1: [678,178,858,56,802], + 0x25CB: [592,92,796,56,740], + 0x25CF: [592,92,796,56,740], + 0x25E6: [445,-55,500,55,445], + 0x2664: [727,130,778,56,722], + 0x2665: [716,33,778,56,722], + 0x2666: [727,163,778,56,722], + 0x2667: [727,130,778,28,750], + 0x266A: [695,29,611,55,556], + 0x26AD: [467,-36,500,-78,577], + 0x26AE: [606,104,500,-189,688], + 0x2B04: [520,20,1062,56,1006], + 0x2B05: [468,-31,977,56,921], + 0x2B06: [672,193,612,87,524], + 0x2B07: [693,172,612,87,524], + 0x2B0C: [468,-31,1022,89,933], + 0x2B0D: [672,172,549,56,492], + 0x2B1A: [640,240,960,40,920], + 0x2B31: [990,490,997,56,941], + 0x2B33: [510,10,1463,56,1407] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Shapes"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Shapes/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size1/Regular/Main.js new file mode 100644 index 0000000..d5d486e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size1/Regular/Main.js @@ -0,0 +1,206 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'LatinModernMathJax_Size1', + testString: '\u00A0\u0302\u0303\u0305\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u0332\u0333\u033F', + 0x20: [0,0,332,0,0], + 0x28: [797,297,422,116,362], + 0x29: [797,297,422,60,306], + 0x2F: [905,405,617,56,561], + 0x5B: [800,300,340,161,313], + 0x5C: [905,405,617,56,561], + 0x5D: [800,300,340,27,179], + 0x7B: [800,300,540,86,454], + 0x7C: [851,351,278,117,161], + 0x7D: [800,300,540,86,454], + 0xA0: [0,0,332,0,0], + 0x302: [746,-572,644,0,644], + 0x303: [751,-550,652,0,652], + 0x305: [670,-630,568,0,568], + 0x306: [742,-578,658,0,658], + 0x30C: [740,-566,644,0,644], + 0x311: [756,-592,658,0,658], + 0x32C: [-96,270,644,0,644], + 0x32D: [-108,282,644,0,644], + 0x32E: [-96,260,658,0,658], + 0x32F: [-118,282,658,0,658], + 0x330: [-118,319,652,0,652], + 0x332: [-103,143,568,0,568], + 0x333: [-103,293,568,0,568], + 0x33F: [820,-630,568,0,568], + 0x2016: [851,351,354,56,298], + 0x2044: [905,405,617,56,561], + 0x20D0: [711,-601,667,56,611], + 0x20D1: [711,-601,667,56,611], + 0x20D6: [711,-521,659,56,603], + 0x20D7: [711,-521,659,56,603], + 0x20E1: [711,-521,715,56,659], + 0x20E9: [730,-546,735,0,735], + 0x20EC: [-171,281,667,56,611], + 0x20ED: [-171,281,667,56,611], + 0x20EE: [-91,281,659,56,603], + 0x20EF: [-91,281,659,56,603], + 0x2190: [510,10,1463,56,1407], + 0x2191: [912,436,500,20,480], + 0x2192: [510,10,1463,56,1407], + 0x2193: [936,412,500,20,480], + 0x2194: [510,10,1442,56,1386], + 0x2195: [757,257,572,56,516], + 0x2196: [947,436,1495,56,1439], + 0x2197: [947,436,1495,56,1439], + 0x2198: [936,447,1495,56,1439], + 0x2199: [936,447,1495,56,1439], + 0x219A: [510,10,1463,56,1407], + 0x219B: [510,10,1463,56,1407], + 0x219E: [510,10,1463,56,1407], + 0x219F: [912,436,572,56,516], + 0x21A0: [510,10,1463,56,1407], + 0x21A1: [936,412,572,56,516], + 0x21A2: [510,10,1658,56,1602], + 0x21A3: [510,10,1658,56,1602], + 0x21A4: [510,10,1443,56,1387], + 0x21A5: [912,416,632,55,576], + 0x21A6: [510,10,1443,56,1387], + 0x21A7: [916,412,632,55,576], + 0x21A9: [550,10,1463,56,1407], + 0x21AA: [550,10,1463,56,1407], + 0x21AB: [550,50,1463,56,1407], + 0x21AC: [550,50,1463,56,1407], + 0x21AD: [510,10,1442,56,1386], + 0x21AE: [510,10,1442,56,1386], + 0x21B0: [834,334,797,56,741], + 0x21B1: [834,334,797,56,741], + 0x21B2: [834,334,797,56,741], + 0x21B3: [834,334,797,56,741], + 0x21B6: [659,-229,1330,56,1274], + 0x21B7: [659,-229,1330,56,1274], + 0x21BC: [503,-230,1478,56,1422], + 0x21BD: [270,3,1478,56,1422], + 0x21BE: [930,436,441,112,385], + 0x21BF: [930,436,441,56,329], + 0x21C0: [503,-230,1478,56,1422], + 0x21C1: [270,3,1478,56,1422], + 0x21C2: [936,430,441,112,385], + 0x21C3: [936,430,441,56,329], + 0x21C4: [672,172,1484,56,1428], + 0x21C5: [936,436,896,56,840], + 0x21C6: [672,172,1484,56,1428], + 0x21C7: [750,250,1463,56,1407], + 0x21C8: [912,436,992,56,936], + 0x21C9: [750,250,1463,56,1407], + 0x21CA: [936,412,992,56,936], + 0x21CB: [600,100,1484,56,1428], + 0x21CC: [600,100,1484,56,1428], + 0x21CD: [520,20,1457,56,1401], + 0x21CE: [520,20,1534,56,1478], + 0x21CF: [520,20,1457,56,1401], + 0x21D0: [520,20,1457,56,1401], + 0x21D1: [909,436,652,56,596], + 0x21D2: [520,20,1457,56,1401], + 0x21D3: [936,409,652,56,596], + 0x21D4: [520,20,1534,56,1478], + 0x21D5: [961,461,652,56,596], + 0x21D6: [915,505,1532,56,1476], + 0x21D7: [915,505,1532,56,1476], + 0x21D8: [1005,415,1532,56,1476], + 0x21D9: [1005,415,1532,56,1476], + 0x21DA: [617,117,1461,56,1405], + 0x21DB: [617,117,1461,56,1405], + 0x21DC: [510,10,1463,56,1407], + 0x21DD: [510,10,1463,56,1407], + 0x21E6: [520,20,1496,56,1440], + 0x21E7: [948,436,652,56,596], + 0x21E8: [520,20,1496,56,1440], + 0x21E9: [936,448,652,56,596], + 0x21F3: [948,448,652,56,596], + 0x21F5: [936,436,896,56,840], + 0x21F6: [990,490,1463,56,1407], + 0x220F: [950,450,1278,56,1221], + 0x2210: [950,450,1278,56,1221], + 0x2211: [950,450,1444,56,1387], + 0x221A: [850,350,1000,110,1020], + 0x2223: [851,351,278,117,161], + 0x2225: [851,351,354,56,298], + 0x222B: [1361,861,999,56,943], + 0x222C: [1361,861,1419,56,1363], + 0x222D: [1361,861,1839,56,1783], + 0x222E: [1361,861,999,56,943], + 0x222F: [1361,861,1419,56,1363], + 0x2230: [1361,861,1839,56,1783], + 0x2231: [1361,861,999,56,943], + 0x2232: [1361,861,999,56,943], + 0x2233: [1361,861,999,56,943], + 0x22A2: [684,184,946,56,890], + 0x22A3: [684,184,946,56,890], + 0x22A4: [684,184,986,56,930], + 0x22A5: [684,184,946,56,890], + 0x22C0: [957,435,1111,66,1043], + 0x22C1: [935,457,1111,66,1043], + 0x22C2: [939,417,1111,66,1046], + 0x22C3: [917,439,1111,66,1046], + 0x2308: [800,300,458,178,429], + 0x2309: [800,300,458,29,280], + 0x230A: [800,300,458,178,429], + 0x230B: [800,300,458,29,280], + 0x2329: [800,300,428,124,372], + 0x232A: [800,300,428,56,304], + 0x23B4: [730,-546,735,0,735], + 0x23B5: [-116,300,735,0,735], + 0x23DC: [745,-540,1006,0,1006], + 0x23DD: [-110,315,1006,0,1006], + 0x23DE: [815,-509,993,1,994], + 0x23DF: [-79,385,993,0,993], + 0x23E0: [853,-613,1048,0,1048], + 0x23E1: [-183,423,1048,0,1048], + 0x27A1: [468,-31,1423,56,1367], + 0x27E6: [800,300,444,130,422], + 0x27E7: [800,300,444,22,314], + 0x27E8: [800,300,428,124,372], + 0x27E9: [800,300,428,56,304], + 0x27EA: [800,300,623,124,567], + 0x27EB: [800,300,623,56,499], + 0x27EE: [813,313,305,108,249], + 0x27EF: [813,313,305,56,197], + 0x2906: [520,20,1437,56,1381], + 0x2907: [520,20,1437,56,1381], + 0x2A00: [902,402,1511,104,1408], + 0x2A01: [902,402,1511,104,1408], + 0x2A02: [902,402,1511,104,1408], + 0x2A03: [917,439,1111,66,1046], + 0x2A04: [917,439,1111,66,1046], + 0x2A05: [936,436,1111,66,1046], + 0x2A06: [936,436,1111,66,1046], + 0x2A09: [879,379,1371,56,1315], + 0x2A0C: [1361,861,2259,56,2203], + 0x2A11: [1361,861,999,56,943], + 0x2B04: [520,20,1508,56,1452], + 0x2B05: [468,-31,1423,56,1367], + 0x2B06: [895,416,612,87,524], + 0x2B07: [916,395,612,87,524], + 0x2B0C: [468,-31,1468,89,1379], + 0x2B0D: [895,395,549,56,492], + 0x2B31: [990,490,1463,56,1407] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Size1"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size1/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size2/Regular/Main.js new file mode 100644 index 0000000..697337b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size2/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'LatinModernMathJax_Size2', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,332,0,0], + 0x28: [847,347,458,131,395], + 0x29: [847,347,458,63,327], + 0x2F: [1108,608,768,57,713], + 0x5B: [850,350,417,217,383], + 0x5C: [1108,608,768,55,711], + 0x5D: [850,350,417,34,200], + 0x7B: [850,350,583,98,486], + 0x7C: [972,472,278,115,164], + 0x7D: [850,350,583,97,485], + 0xA0: [0,0,332,0,0], + 0x302: [746,-572,768,0,768], + 0x303: [753,-548,778,0,778], + 0x306: [742,-578,784,0,784], + 0x30C: [740,-566,768,0,768], + 0x311: [757,-592,784,0,784], + 0x32C: [-96,270,768,0,768], + 0x32D: [-108,282,768,0,768], + 0x32E: [-96,260,784,0,784], + 0x32F: [-118,282,784,0,784], + 0x330: [-118,323,778,0,778], + 0x2016: [972,472,364,57,309], + 0x2044: [1108,608,768,57,713], + 0x20E9: [735,-541,1110,0,1110], + 0x221A: [1150,650,1000,110,1020], + 0x2223: [972,472,278,115,164], + 0x2225: [972,472,364,57,309], + 0x2308: [850,350,472,182,443], + 0x2309: [850,350,472,29,290], + 0x230A: [850,350,472,182,443], + 0x230B: [850,350,472,29,290], + 0x2329: [850,350,472,139,411], + 0x232A: [850,350,472,61,333], + 0x23B4: [735,-541,1110,0,1110], + 0x23B5: [-111,305,1110,0,1110], + 0x23DC: [761,-511,1508,0,1508], + 0x23DD: [-81,331,1508,0,1508], + 0x23DE: [818,-509,1494,0,1494], + 0x23DF: [-78,387,1494,0,1494], + 0x23E0: [854,-612,1550,0,1550], + 0x23E1: [-182,424,1550,0,1550], + 0x27E6: [850,350,480,142,458], + 0x27E7: [850,350,480,22,338], + 0x27E8: [850,350,472,139,411], + 0x27E9: [850,350,472,61,333], + 0x27EA: [850,350,682,139,621], + 0x27EB: [850,350,682,61,543], + 0x27EE: [864,364,323,118,267], + 0x27EF: [864,364,323,56,205] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Size2"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size2/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size3/Regular/Main.js new file mode 100644 index 0000000..52f09b8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size3/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'LatinModernMathJax_Size3', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,332,0,0], + 0x28: [972,472,523,156,461], + 0x29: [972,472,523,62,367], + 0x2F: [1374,874,964,57,909], + 0x5B: [975,475,444,226,414], + 0x5C: [1374,874,964,56,908], + 0x5D: [975,475,444,30,218], + 0x7B: [975,475,624,100,524], + 0x7C: [1117,617,278,113,166], + 0x7D: [975,475,624,100,524], + 0xA0: [0,0,332,0,0], + 0x302: [747,-572,919,0,919], + 0x303: [757,-543,931,0,931], + 0x306: [742,-577,937,0,937], + 0x30C: [740,-565,919,0,919], + 0x311: [758,-592,937,0,937], + 0x32C: [-96,271,919,0,919], + 0x32D: [-108,283,919,0,919], + 0x32E: [-96,262,937,0,937], + 0x32F: [-118,284,937,0,937], + 0x330: [-118,332,931,0,931], + 0x2016: [1117,617,372,57,317], + 0x2044: [1374,874,964,57,909], + 0x20E9: [742,-535,1485,0,1485], + 0x221A: [1450,950,1000,111,1020], + 0x2223: [1117,617,278,113,166], + 0x2225: [1117,617,372,57,317], + 0x2308: [975,475,499,189,471], + 0x2309: [975,475,499,28,310], + 0x230A: [975,475,499,189,471], + 0x230B: [975,475,499,28,310], + 0x2329: [975,475,537,154,476], + 0x232A: [975,475,537,61,383], + 0x23B4: [742,-535,1485,0,1485], + 0x23B5: [-105,312,1485,0,1485], + 0x23DC: [767,-509,2012,0,2012], + 0x23DD: [-79,337,2012,0,2012], + 0x23DE: [825,-506,1996,0,1996], + 0x23DF: [-75,394,1996,0,1996], + 0x23E0: [858,-610,2056,0,2056], + 0x23E1: [-180,428,2056,0,2056], + 0x27E6: [975,475,555,170,532], + 0x27E7: [975,475,555,23,385], + 0x27E8: [975,475,537,154,476], + 0x27E9: [975,475,537,61,383], + 0x27EA: [975,475,781,154,720], + 0x27EB: [975,475,781,61,627], + 0x27EE: [991,491,370,142,314], + 0x27EF: [991,491,370,56,228] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Size3"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size3/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size4/Regular/Main.js new file mode 100644 index 0000000..178d20e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size4/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'LatinModernMathJax_Size4', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u221A', + 0x20: [0,0,332,0,0], + 0x28: [1146,646,597,179,539], + 0x29: [1146,646,597,58,418], + 0x2F: [1722,1222,1222,56,1166], + 0x5B: [1150,650,472,226,448], + 0x5C: [1722,1222,1222,56,1166], + 0x5D: [1150,650,472,24,246], + 0x7B: [1150,650,667,97,569], + 0x7C: [1292,792,278,109,169], + 0x7D: [1150,650,667,98,570], + 0xA0: [0,0,332,0,0], + 0x302: [747,-571,1100,0,1100], + 0x303: [762,-539,1115,0,1115], + 0x306: [742,-576,1120,0,1120], + 0x30C: [741,-565,1100,0,1100], + 0x311: [759,-592,1120,0,1120], + 0x32C: [-96,273,1100,0,1100], + 0x32D: [-108,285,1100,0,1100], + 0x32E: [-96,263,1120,0,1120], + 0x32F: [-118,285,1120,0,1120], + 0x330: [-118,341,1115,0,1115], + 0x2016: [1292,792,386,56,330], + 0x2044: [1722,1222,1222,56,1166], + 0x20E9: [750,-527,1860,0,1860], + 0x221A: [1750,1250,1000,111,1020], + 0x2223: [1292,792,278,109,169], + 0x2225: [1292,792,386,56,330], + 0x2308: [1150,650,528,196,502], + 0x2309: [1150,650,528,26,332], + 0x230A: [1150,650,528,196,502], + 0x230B: [1150,650,528,26,332], + 0x2329: [1150,650,611,159,555], + 0x232A: [1150,650,611,56,452], + 0x23B4: [750,-527,1860,0,1860], + 0x23B5: [-97,320,1860,0,1860], + 0x23DC: [774,-506,2516,0,2516], + 0x23DD: [-76,344,2516,0,2516], + 0x23DE: [833,-502,2498,0,2498], + 0x23DF: [-71,402,2498,0,2498], + 0x23E0: [863,-607,2564,0,2564], + 0x23E1: [-177,433,2564,0,2564], + 0x27E6: [1150,650,660,211,637], + 0x27E7: [1150,650,660,23,449], + 0x27E8: [1150,650,611,159,555], + 0x27E9: [1150,650,611,56,452], + 0x27EA: [1150,650,905,159,849], + 0x27EB: [1150,650,905,56,746], + 0x27EE: [1168,668,432,176,376], + 0x27EF: [1168,668,432,56,256] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Size4"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size4/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size5/Regular/Main.js new file mode 100644 index 0000000..e64be2a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size5/Regular/Main.js @@ -0,0 +1,77 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'LatinModernMathJax_Size5', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u2223', + 0x20: [0,0,332,0,0], + 0x28: [1296,796,663,201,608], + 0x29: [1296,796,663,55,462], + 0x2F: [2179,1679,1557,57,1502], + 0x5B: [1300,800,499,230,478], + 0x5C: [2179,1679,1557,56,1501], + 0x5D: [1300,800,499,21,269], + 0x7B: [1300,800,707,100,608], + 0x7C: [1501,1001,278,107,172], + 0x7D: [1300,800,707,99,607], + 0xA0: [0,0,332,0,0], + 0x302: [748,-570,1320,0,1320], + 0x303: [766,-534,1335,0,1335], + 0x306: [742,-575,1341,0,1341], + 0x30C: [742,-564,1320,0,1320], + 0x311: [760,-592,1341,0,1341], + 0x32C: [-96,274,1320,0,1320], + 0x32D: [-108,286,1320,0,1320], + 0x32E: [-96,264,1341,0,1341], + 0x32F: [-118,286,1341,0,1341], + 0x330: [-118,350,1335,0,1335], + 0x2016: [1501,1001,396,57,341], + 0x2044: [2179,1679,1557,57,1502], + 0x20E9: [757,-521,2235,0,2235], + 0x2223: [1501,1001,278,107,172], + 0x2225: [1501,1001,396,57,341], + 0x2308: [1300,800,555,203,528], + 0x2309: [1300,800,555,27,352], + 0x230A: [1300,800,555,203,528], + 0x230B: [1300,800,555,27,352], + 0x2329: [1300,800,677,165,623], + 0x232A: [1300,800,677,54,512], + 0x23B4: [757,-521,2235,0,2235], + 0x23B5: [-91,327,2235,0,2235], + 0x23DC: [780,-506,3020,0,3020], + 0x23DD: [-76,350,3020,0,3020], + 0x23DE: [838,-500,3000,0,3000], + 0x23DF: [-70,408,3000,0,3000], + 0x23E0: [866,-607,3068,0,3068], + 0x23E1: [-177,436,3068,0,3068], + 0x27E6: [1300,800,750,247,727], + 0x27E7: [1300,800,750,23,503], + 0x27E8: [1300,800,677,165,623], + 0x27E9: [1300,800,677,54,512], + 0x27EA: [1300,800,1011,165,957], + 0x27EB: [1300,800,1011,54,846], + 0x27EE: [1320,820,485,206,429], + 0x27EF: [1320,820,485,56,279] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Size5"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size5/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size6/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size6/Regular/Main.js new file mode 100644 index 0000000..d7ea57c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size6/Regular/Main.js @@ -0,0 +1,77 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Size6/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Size6'] = { + directory: 'Size6/Regular', + family: 'LatinModernMathJax_Size6', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u2223', + 0x20: [0,0,332,0,0], + 0x28: [1446,946,736,226,682], + 0x29: [1446,946,736,54,510], + 0x2F: [2777,2277,1997,56,1941], + 0x5B: [1450,950,528,233,509], + 0x5C: [2777,2277,1997,56,1941], + 0x5D: [1450,950,528,19,295], + 0x7B: [1450,950,750,102,648], + 0x7C: [1752,1252,278,103,175], + 0x7D: [1450,950,750,102,648], + 0xA0: [0,0,332,0,0], + 0x302: [748,-570,1581,0,1581], + 0x303: [769,-532,1599,0,1599], + 0x306: [743,-574,1604,0,1604], + 0x30C: [742,-564,1581,0,1581], + 0x311: [760,-591,1604,0,1604], + 0x32C: [-96,275,1581,0,1581], + 0x32D: [-108,287,1581,0,1581], + 0x32E: [-96,265,1604,0,1604], + 0x32F: [-118,287,1604,0,1604], + 0x330: [-118,355,1599,0,1599], + 0x2016: [1752,1252,410,56,354], + 0x2044: [2777,2277,1997,56,1941], + 0x20E9: [764,-513,2610,0,2610], + 0x2223: [1752,1252,278,103,175], + 0x2225: [1752,1252,410,56,354], + 0x2308: [1450,950,583,210,555], + 0x2309: [1450,950,583,28,373], + 0x230A: [1450,950,583,210,555], + 0x230B: [1450,950,583,28,373], + 0x2329: [1450,950,750,173,697], + 0x232A: [1450,950,750,53,577], + 0x23B4: [764,-513,2610,0,2610], + 0x23B5: [-83,334,2610,0,2610], + 0x23DC: [787,-505,3524,0,3524], + 0x23DD: [-75,357,3524,0,3524], + 0x23DE: [845,-498,3502,0,3502], + 0x23DF: [-67,414,3502,0,3502], + 0x23E0: [869,-606,3574,0,3574], + 0x23E1: [-176,439,3574,0,3574], + 0x27E6: [1450,950,838,282,816], + 0x27E7: [1450,950,838,22,556], + 0x27E8: [1450,950,750,173,697], + 0x27E9: [1450,950,750,53,577], + 0x27EA: [1450,950,1124,173,1071], + 0x27EB: [1450,950,1124,53,951], + 0x27EE: [1472,972,541,235,485], + 0x27EF: [1472,972,541,56,306] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Size6"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size6/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size7/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size7/Regular/Main.js new file mode 100644 index 0000000..eb3b3a0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Size7/Regular/Main.js @@ -0,0 +1,386 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Size7/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Size7'] = { + directory: 'Size7/Regular', + family: 'LatinModernMathJax_Size7', + testString: '\u00A0\u0302\u0303\u0306\u030C\u0311\u032C\u032D\u032E\u032F\u0330\u2016\u2044\u20E9\u2223', + 0x20: [0,0,332,0,0], + 0x28: [1745,1245,875,277,823], + 0x29: [1745,1245,875,52,598], + 0x2F: [3560,3060,2572,57,2517], + 0x5B: [1750,1250,667,321,647], + 0x5C: [3560,3060,2572,55,2515], + 0x5D: [1750,1250,667,20,346], + 0x7B: [1750,1250,902,147,755], + 0x7C: [2053,1553,278,100,179], + 0x7D: [1750,1250,902,147,755], + 0xA0: [0,0,332,0,0], + 0x302: [749,-569,1896,0,1896], + 0x303: [773,-527,1915,0,1915], + 0x306: [743,-573,1920,0,1920], + 0x30C: [743,-563,1896,0,1896], + 0x311: [761,-591,1920,0,1920], + 0x32C: [-96,276,1896,0,1896], + 0x32D: [-108,288,1896,0,1896], + 0x32E: [-96,266,1920,0,1920], + 0x32F: [-118,288,1920,0,1920], + 0x330: [-118,364,1915,0,1915], + 0x2016: [2053,1553,424,57,369], + 0x2044: [3560,3060,2572,57,2517], + 0x20E9: [772,-504,2985,0,2985], + 0x2223: [2053,1553,278,100,179], + 0x2225: [2053,1553,424,57,369], + 0x2308: [1750,1250,623,221,595], + 0x2309: [1750,1250,623,28,402], + 0x230A: [1750,1250,623,221,595], + 0x230B: [1750,1250,623,28,402], + 0x2329: [1750,1250,908,204,852], + 0x232A: [1750,1250,908,56,704], + 0x23B4: [772,-504,2985,0,2985], + 0x23B5: [-74,342,2985,0,2985], + 0x23DC: [796,-502,4032,0,4032], + 0x23DD: [-72,366,4032,0,4032], + 0x23DE: [854,-493,4006,0,4006], + 0x23DF: [-62,423,4006,0,4006], + 0x23E0: [873,-605,4082,0,4082], + 0x23E1: [-175,443,4082,0,4082], + 0x27E6: [1750,1250,1007,353,985], + 0x27E7: [1750,1250,1007,22,654], + 0x27E8: [1750,1250,908,204,852], + 0x27E9: [1750,1250,908,56,704], + 0x27EA: [1750,1250,1362,204,1306], + 0x27EB: [1750,1250,1362,56,1158], + 0x27EE: [1776,1276,647,294,591], + 0x27EF: [1776,1276,647,56,353], + 0xE000: [367,-133,222,0,222], + 0xE001: [367,-133,222,0,222], + 0xE002: [367,-133,222,0,222], + 0xE003: [748,0,902,400,502], + 0xE004: [1202,0,278,100,179], + 0xE005: [1202,0,278,100,179], + 0xE006: [1202,0,278,100,179], + 0xE007: [748,0,902,400,502], + 0xE008: [711,-601,208,0,208], + 0xE009: [631,-601,139,0,139], + 0xE00A: [631,-601,208,0,208], + 0xE00B: [631,-601,208,0,208], + 0xE00C: [631,-601,139,0,139], + 0xE00D: [711,-601,208,0,208], + 0xE00E: [711,-521,205,0,205], + 0xE00F: [631,-601,137,0,137], + 0xE010: [631,-601,205,0,205], + 0xE011: [631,-601,205,0,205], + 0xE012: [631,-601,137,0,137], + 0xE013: [711,-521,205,0,205], + 0xE014: [711,-521,226,0,226], + 0xE015: [631,-601,151,0,151], + 0xE016: [711,-521,226,0,226], + 0xE017: [-171,201,208,0,208], + 0xE018: [-171,201,139,0,139], + 0xE019: [-171,281,208,0,208], + 0xE01A: [-171,281,208,0,208], + 0xE01B: [-171,201,139,0,139], + 0xE01C: [-171,201,208,0,208], + 0xE01D: [-91,281,205,0,205], + 0xE01E: [-171,201,137,0,137], + 0xE01F: [-171,201,205,0,205], + 0xE020: [-171,201,205,0,205], + 0xE021: [-171,201,137,0,137], + 0xE022: [-91,281,205,0,205], + 0xE023: [510,10,507,0,507], + 0xE024: [270,-230,337,0,337], + 0xE025: [270,-230,507,0,507], + 0xE026: [270,-230,507,0,507], + 0xE027: [270,-230,337,0,337], + 0xE028: [510,10,507,0,507], + 0xE029: [506,0,500,230,270], + 0xE02A: [337,0,500,230,270], + 0xE02B: [505,0,500,20,480], + 0xE02C: [505,0,500,20,480], + 0xE02D: [337,0,500,230,270], + 0xE02E: [506,0,500,230,270], + 0xE02F: [510,10,386,0,386], + 0xE030: [270,-230,97,0,97], + 0xE031: [510,10,386,0,386], + 0xE032: [270,-230,386,0,386], + 0xE033: [270,-230,386,0,386], + 0xE034: [270,-230,96,0,96], + 0xE035: [510,10,386,0,386], + 0xE036: [510,10,386,0,386], + 0xE037: [510,10,499,0,499], + 0xE038: [270,-230,332,0,332], + 0xE039: [510,10,499,0,499], + 0xE03A: [380,0,572,56,516], + 0xE03B: [254,0,572,266,306], + 0xE03C: [380,0,572,56,516], + 0xE03D: [510,10,380,0,380], + 0xE03E: [270,-230,95,0,95], + 0xE03F: [510,10,380,0,380], + 0xE040: [510,10,380,0,380], + 0xE041: [510,10,507,0,507], + 0xE042: [270,-230,337,0,337], + 0xE043: [270,-230,507,0,507], + 0xE044: [270,-230,507,0,507], + 0xE045: [270,-230,337,0,337], + 0xE046: [510,10,507,0,507], + 0xE047: [506,0,572,266,306], + 0xE048: [337,0,572,266,306], + 0xE049: [505,0,572,56,516], + 0xE04A: [505,0,572,56,516], + 0xE04B: [337,0,572,266,306], + 0xE04C: [506,0,572,266,306], + 0xE04D: [510,10,580,0,580], + 0xE04E: [270,-230,386,0,386], + 0xE04F: [510,10,580,0,580], + 0xE050: [510,10,580,0,580], + 0xE051: [270,-230,386,0,386], + 0xE052: [510,10,580,0,580], + 0xE053: [510,10,499,0,499], + 0xE054: [270,-230,333,0,333], + 0xE055: [510,10,499,0,499], + 0xE056: [510,10,499,0,499], + 0xE057: [270,-230,333,0,333], + 0xE058: [510,10,499,0,499], + 0xE059: [498,0,632,55,576], + 0xE05A: [332,0,632,296,336], + 0xE05B: [498,0,632,86,546], + 0xE05C: [498,0,632,86,546], + 0xE05D: [332,0,632,296,336], + 0xE05E: [498,0,632,55,576], + 0xE05F: [550,-230,507,0,507], + 0xE060: [270,-230,337,0,337], + 0xE061: [510,10,507,0,507], + 0xE062: [510,10,507,0,507], + 0xE063: [270,-230,337,0,337], + 0xE064: [550,-230,507,0,507], + 0xE065: [550,50,507,0,507], + 0xE066: [270,-230,337,0,337], + 0xE067: [510,10,507,0,507], + 0xE068: [510,10,507,0,507], + 0xE069: [270,-230,337,0,337], + 0xE06A: [550,50,507,0,507], + 0xE06B: [503,-230,513,0,513], + 0xE06C: [270,-230,341,0,341], + 0xE06D: [270,-230,512,0,512], + 0xE06E: [270,-230,512,0,512], + 0xE06F: [270,-230,341,0,341], + 0xE070: [503,-230,513,0,513], + 0xE071: [270,3,512,0,512], + 0xE072: [270,-230,341,0,341], + 0xE073: [270,-230,513,0,513], + 0xE074: [270,-230,512,0,512], + 0xE075: [270,-230,341,0,341], + 0xE076: [270,3,513,0,513], + 0xE077: [512,0,441,112,152], + 0xE078: [341,0,441,112,152], + 0xE079: [513,0,441,112,385], + 0xE07A: [513,0,441,112,385], + 0xE07B: [341,0,441,112,152], + 0xE07C: [512,0,441,112,152], + 0xE07D: [512,0,441,289,329], + 0xE07E: [341,0,441,289,329], + 0xE07F: [513,0,441,56,329], + 0xE080: [513,0,441,56,329], + 0xE081: [341,0,441,289,329], + 0xE082: [512,0,441,289,329], + 0xE083: [432,172,515,0,515], + 0xE084: [432,-68,343,0,343], + 0xE085: [672,-68,514,0,514], + 0xE086: [672,-68,514,0,514], + 0xE087: [432,-68,343,0,343], + 0xE088: [432,172,515,0,515], + 0xE089: [515,0,896,266,840], + 0xE08A: [343,0,896,266,630], + 0xE08B: [514,0,896,56,630], + 0xE08C: [514,0,896,56,630], + 0xE08D: [343,0,896,266,630], + 0xE08E: [515,0,896,266,840], + 0xE08F: [750,250,507,0,507], + 0xE090: [510,10,337,0,337], + 0xE091: [510,10,507,0,507], + 0xE092: [510,10,507,0,507], + 0xE093: [510,10,337,0,337], + 0xE094: [750,250,507,0,507], + 0xE095: [506,0,992,266,726], + 0xE096: [337,0,992,266,726], + 0xE097: [505,0,992,56,936], + 0xE098: [505,0,992,56,936], + 0xE099: [337,0,992,266,726], + 0xE09A: [506,0,992,266,726], + 0xE09B: [750,250,507,0,507], + 0xE09C: [750,250,337,0,337], + 0xE09D: [990,490,507,0,507], + 0xE09E: [990,490,507,0,507], + 0xE09F: [750,250,337,0,337], + 0xE0A0: [750,250,507,0,507], + 0xE0A1: [600,-133,515,0,515], + 0xE0A2: [367,-133,343,0,343], + 0xE0A3: [367,100,514,0,514], + 0xE0A4: [367,100,514,0,514], + 0xE0A5: [367,-133,343,0,343], + 0xE0A6: [600,-133,515,0,515], + 0xE0A7: [520,20,504,0,504], + 0xE0A8: [367,-133,336,0,336], + 0xE0A9: [367,-133,505,0,505], + 0xE0AA: [367,-133,505,0,505], + 0xE0AB: [367,-133,336,0,336], + 0xE0AC: [520,20,504,0,504], + 0xE0AD: [505,0,652,209,443], + 0xE0AE: [336,0,652,209,443], + 0xE0AF: [504,0,652,56,596], + 0xE0B0: [504,0,652,56,596], + 0xE0B1: [336,0,652,209,443], + 0xE0B2: [505,0,652,209,443], + 0xE0B3: [520,20,533,0,533], + 0xE0B4: [367,-133,356,0,356], + 0xE0B5: [520,20,533,0,533], + 0xE0B6: [533,0,652,56,596], + 0xE0B7: [356,0,652,209,443], + 0xE0B8: [533,0,652,56,596], + 0xE0B9: [520,20,384,0,384], + 0xE0BA: [367,-133,97,0,97], + 0xE0BB: [520,20,384,0,384], + 0xE0BC: [367,-133,384,0,384], + 0xE0BD: [367,-133,384,0,384], + 0xE0BE: [367,-133,97,0,97], + 0xE0BF: [520,20,384,0,384], + 0xE0C0: [520,20,384,0,384], + 0xE0C1: [520,20,406,0,406], + 0xE0C2: [367,-133,102,0,102], + 0xE0C3: [520,20,406,0,406], + 0xE0C4: [520,20,406,0,406], + 0xE0C5: [520,20,497,0,497], + 0xE0C6: [367,-133,331,0,331], + 0xE0C7: [520,20,497,0,497], + 0xE0C8: [520,20,497,0,497], + 0xE0C9: [367,-133,331,0,331], + 0xE0CA: [520,20,497,0,497], + 0xE0CB: [617,117,506,0,506], + 0xE0CC: [464,-36,337,0,337], + 0xE0CD: [464,-36,506,0,506], + 0xE0CE: [464,-36,506,0,506], + 0xE0CF: [464,-36,337,0,337], + 0xE0D0: [617,117,506,0,506], + 0xE0D1: [520,20,519,0,519], + 0xE0D2: [367,-133,346,0,346], + 0xE0D3: [367,-133,519,0,519], + 0xE0D4: [367,-133,519,0,519], + 0xE0D5: [367,-133,346,0,346], + 0xE0D6: [520,20,519,0,519], + 0xE0D7: [519,0,652,209,443], + 0xE0D8: [346,0,652,209,443], + 0xE0D9: [519,0,652,56,596], + 0xE0DA: [519,0,652,56,596], + 0xE0DB: [346,0,652,209,443], + 0xE0DC: [519,0,652,209,443], + 0xE0DD: [524,0,652,56,596], + 0xE0DE: [349,0,652,209,443], + 0xE0DF: [523,0,652,56,596], + 0xE0E0: [520,20,524,0,524], + 0xE0E1: [367,-133,349,0,349], + 0xE0E2: [520,20,523,0,523], + 0xE0E3: [468,-31,492,0,492], + 0xE0E4: [347,-153,327,0,327], + 0xE0E5: [347,-153,492,0,492], + 0xE0E6: [347,-153,492,0,492], + 0xE0E7: [347,-153,327,0,327], + 0xE0E8: [468,-31,492,0,492], + 0xE0E9: [492,0,612,209,403], + 0xE0EA: [327,0,612,209,403], + 0xE0EB: [492,0,612,87,524], + 0xE0EC: [492,0,612,87,524], + 0xE0ED: [327,0,612,209,403], + 0xE0EE: [492,0,612,209,403], + 0xE0EF: [468,-31,484,0,484], + 0xE0F0: [347,-153,322,0,322], + 0xE0F1: [468,-31,484,0,484], + 0xE0F2: [484,0,549,56,492], + 0xE0F3: [322,0,549,177,371], + 0xE0F4: [484,0,549,56,492], + 0xE0F5: [-103,143,189,0,189], + 0xE0F6: [-103,143,190,0,190], + 0xE0F7: [-103,143,189,0,189], + 0xE0F8: [-103,293,189,0,189], + 0xE0F9: [-103,293,190,0,190], + 0xE0FA: [-103,293,189,0,189], + 0xE0FB: [670,-630,189,0,189], + 0xE0FC: [670,-630,190,0,190], + 0xE0FD: [670,-630,189,0,189], + 0xE0FE: [820,-630,189,0,189], + 0xE0FF: [820,-630,190,0,190], + 0xE100: [820,-630,189,0,189], + 0xE101: [1526,0,647,294,591], + 0xE102: [998,0,647,294,396], + 0xE103: [1526,0,647,294,591], + 0xE104: [1526,0,647,56,353], + 0xE105: [998,0,647,251,353], + 0xE106: [1526,0,647,56,353], + 0xE107: [1000,0,1007,353,985], + 0xE108: [1000,0,1007,353,714], + 0xE109: [1000,0,1007,353,985], + 0xE10A: [1000,0,1007,22,654], + 0xE10B: [1000,0,1007,293,654], + 0xE10C: [1000,0,1007,22,654], + 0xE10D: [724,-493,1002,0,1002], + 0xE10E: [724,-622,994,0,994], + 0xE10F: [854,-622,2003,0,2003], + 0xE110: [724,-493,1001,0,1001], + 0xE111: [-62,294,1002,0,1002], + 0xE112: [-192,294,994,0,994], + 0xE113: [-192,423,2003,0,2003], + 0xE114: [-62,294,1001,0,1001], + 0xE115: [796,-502,2016,0,2016], + 0xE116: [796,-694,994,0,994], + 0xE117: [796,-502,2016,0,2016], + 0xE118: [-72,366,2016,0,2016], + 0xE119: [-264,366,994,0,994], + 0xE11A: [-72,366,2016,0,2016], + 0xE11B: [772,-504,1493,0,1493], + 0xE11C: [772,-712,995,0,995], + 0xE11D: [772,-504,1492,0,1492], + 0xE11E: [-74,342,1493,0,1493], + 0xE11F: [-282,342,995,0,995], + 0xE120: [-74,342,1492,0,1492], + 0xE121: [873,-605,2041,0,2041], + 0xE122: [873,-771,1360,0,1360], + 0xE123: [873,-605,2041,0,2041], + 0xE124: [-175,443,2041,0,2041], + 0xE125: [-341,443,1360,0,1360], + 0xE126: [-175,443,2041,0,2041], + 0xE127: [270,-230,222,0,222], + 0xE128: [270,-230,222,0,222], + 0xE129: [270,-230,222,0,222], + 0xE12A: [1202,0,424,57,369], + 0xE12B: [1202,0,424,57,369], + 0xE12C: [1202,0,424,57,369], + 0xE12D: [464,-36,222,0,222], + 0xE12E: [464,-36,222,0,222], + 0xE12F: [464,-36,222,0,222], + 0xE130: [561,61,222,0,222], + 0xE131: [561,61,222,0,222], + 0xE132: [561,61,222,0,222], + 0xE133: [640,0,1056,702,742], + 0xE134: [620,0,1056,702,1076] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Size7"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size7/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Symbols/Regular/Main.js new file mode 100644 index 0000000..dd8fbbf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Symbols/Regular/Main.js @@ -0,0 +1,82 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'LatinModernMathJax_Symbols', + testString: '\u00A0\u2300\u2305\u2306\u2310\u2319\u231C\u231D\u231E\u231F\u2320\u2321\u2329\u232A\u239B', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x2300: [596,96,778,43,735], + 0x2305: [270,155,778,56,722], + 0x2306: [367,252,778,56,722], + 0x2310: [367,-133,667,47,620], + 0x2319: [367,-133,667,47,620], + 0x231C: [770,-490,392,56,336], + 0x231D: [770,-490,392,56,336], + 0x231E: [10,270,392,56,336], + 0x231F: [10,270,392,56,336], + 0x2320: [1344,0,1185,551,1129], + 0x2321: [1322,22,1185,56,685], + 0x2329: [750,250,389,110,336], + 0x232A: [750,250,389,53,279], + 0x239B: [1495,0,875,277,823], + 0x239C: [498,0,875,277,379], + 0x239D: [1495,0,875,277,823], + 0x239E: [1495,0,875,52,598], + 0x239F: [498,0,875,496,598], + 0x23A0: [1495,0,875,52,598], + 0x23A1: [1500,0,667,321,647], + 0x23A2: [1000,0,667,321,381], + 0x23A3: [1500,0,667,321,647], + 0x23A4: [1500,0,667,20,346], + 0x23A5: [1000,0,667,286,346], + 0x23A6: [1500,0,667,20,346], + 0x23A7: [750,0,902,400,755], + 0x23A8: [1500,0,902,147,502], + 0x23A9: [750,0,902,400,755], + 0x23AA: [748,0,902,400,502], + 0x23AB: [750,0,902,147,502], + 0x23AC: [1500,0,902,400,755], + 0x23AD: [750,0,902,147,502], + 0x23B2: [846,0,1576,56,1520], + 0x23B3: [847,0,1576,57,1520], + 0x23B7: [1820,0,1056,111,742], + 0x27C2: [684,0,778,56,722], + 0x27D8: [684,184,946,56,890], + 0x27D9: [684,184,986,56,930], + 0x27DA: [684,0,1026,56,970], + 0x27DB: [684,0,1026,56,970], + 0x27DC: [400,-100,948,56,892], + 0x27DD: [684,184,946,56,890], + 0x27DE: [684,184,946,56,890], + 0x27E0: [610,110,572,56,516], + 0x27E1: [501,1,614,56,558], + 0x27E2: [501,1,730,56,674], + 0x27E3: [501,1,730,56,674], + 0x27E6: [750,250,410,118,388], + 0x27E7: [750,250,410,22,292], + 0x27EA: [750,250,570,110,517], + 0x27EB: [750,250,570,53,460] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Symbols"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Symbols/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Variants/Regular/Main.js new file mode 100644 index 0000000..67ff8f6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/Variants/Regular/Main.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['LatinModernMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'LatinModernMathJax_Variants', + testString: '\u00A0\u2032\u2033\u2034\u2035\u2036\u2037\u2057', + 0x20: [0,0,332,0,0], + 0xA0: [0,0,332,0,0], + 0x2032: [549,-96,407,67,340], + 0x2033: [549,-96,647,67,580], + 0x2034: [549,-96,887,67,820], + 0x2035: [549,-96,407,67,340], + 0x2036: [549,-96,647,67,580], + 0x2037: [549,-96,887,67,820], + 0x2057: [549,-96,1127,67,1060] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"LatinModernMathJax_Variants"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Variants/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata-extra.js new file mode 100644 index 0000000..42f6d1a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata-extra.js @@ -0,0 +1,785 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata-extra.js + * + * Adds extra stretchy characters to the Latin-Modern fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS) { + var VERSION = "2.3"; + + var DELIMITERS = HTMLCSS.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "LatinModernMathJax_Alphabets", + ARROWS = "LatinModernMathJax_Arrows", + DOUBLESTRUCK = "LatinModernMathJax_DoubleStruck", + FRAKTUR = "LatinModernMathJax_Fraktur", + LATIN = "LatinModernMathJax_Latin", + MAIN = "LatinModernMathJax_Main", + MARKS = "LatinModernMathJax_Marks", + MISC = "LatinModernMathJax_Misc", + MONOSPACE = "LatinModernMathJax_Monospace", + NONUNICODE = "LatinModernMathJax_NonUnicode", + NORMAL = "LatinModernMathJax_Normal", + OPERATORS = "LatinModernMathJax_Operators", + SANSSERIF = "LatinModernMathJax_SansSerif", + SCRIPT = "LatinModernMathJax_Script", + SHAPES = "LatinModernMathJax_Shapes", + SIZE1 = "LatinModernMathJax_Size1", + SIZE2 = "LatinModernMathJax_Size2", + SIZE3 = "LatinModernMathJax_Size3", + SIZE4 = "LatinModernMathJax_Size4", + SIZE5 = "LatinModernMathJax_Size5", + SIZE6 = "LatinModernMathJax_Size6", + SIZE7 = "LatinModernMathJax_Size7", + SYMBOLS = "LatinModernMathJax_Symbols", + VARIANTS = "LatinModernMathJax_Variants"; + + var delim = { + 0x306: + { + dir: H, + HW: [[0.374,MAIN], [0.658,SIZE1], [0.784,SIZE2], [0.937,SIZE3], [1.120,SIZE4], [1.341,SIZE5], [1.604,SIZE6], [1.920,SIZE7]] + }, + 0x311: + { + dir: H, + HW: [[0.374,MARKS], [0.658,SIZE1], [0.784,SIZE2], [0.937,SIZE3], [1.120,SIZE4], [1.341,SIZE5], [1.604,SIZE6], [1.920,SIZE7]] + }, + 0x32C: + { + dir: H, + HW: [[0.364,MARKS], [0.644,SIZE1], [0.768,SIZE2], [0.919,SIZE3], [1.100,SIZE4], [1.320,SIZE5], [1.581,SIZE6], [1.896,SIZE7]] + }, + 0x32D: + { + dir: H, + HW: [[0.364,MARKS], [0.644,SIZE1], [0.768,SIZE2], [0.919,SIZE3], [1.100,SIZE4], [1.320,SIZE5], [1.581,SIZE6], [1.896,SIZE7]] + }, + 0x32E: + { + dir: H, + HW: [[0.374,MARKS], [0.658,SIZE1], [0.784,SIZE2], [0.937,SIZE3], [1.120,SIZE4], [1.341,SIZE5], [1.604,SIZE6], [1.920,SIZE7]] + }, + 0x32F: + { + dir: H, + HW: [[0.374,MARKS], [0.658,SIZE1], [0.784,SIZE2], [0.937,SIZE3], [1.120,SIZE4], [1.341,SIZE5], [1.604,SIZE6], [1.920,SIZE7]] + }, + 0x330: + { + dir: H, + HW: [[0.370,MARKS], [0.652,SIZE1], [0.778,SIZE2], [0.931,SIZE3], [1.115,SIZE4], [1.335,SIZE5], [1.599,SIZE6], [1.915,SIZE7]] + }, + 0x333: + { + dir: H, + HW: [[0.392,MARKS], [0.568,SIZE1]], + stretch: {left:[0xE0F8,SIZE7], rep:[0xE0F9,SIZE7], right:[0xE0FA,SIZE7]} + }, + 0x33F: + { + dir: H, + HW: [[0.392,MARKS], [0.568,SIZE1]], + stretch: {left:[0xE0FE,SIZE7], rep:[0xE0FF,SIZE7], right:[0xE100,SIZE7]} + }, + 0x20D0: + { + dir: H, + HW: [[0.422,MARKS], [0.555,SIZE1]], + stretch: {left:[0xE008,SIZE7], rep:[0xE009,SIZE7], right:[0xE00A,SIZE7]} + }, + 0x20D1: + { + dir: H, + HW: [[0.422,MARKS], [0.555,SIZE1]], + stretch: {left:[0xE00B,SIZE7], rep:[0xE00C,SIZE7], right:[0xE00D,SIZE7]} + }, + 0x20D6: + { + dir: H, + HW: [[0.416,MARKS], [0.547,SIZE1]], + stretch: {left:[0xE00E,SIZE7], rep:[0xE00F,SIZE7], right:[0xE010,SIZE7]} + }, + 0x20D7: + { + dir: H, + HW: [[0.416,MAIN], [0.547,SIZE1]], + stretch: {left:[0xE011,SIZE7], rep:[0xE012,SIZE7], right:[0xE013,SIZE7]} + }, + 0x20E1: + { + dir: H, + HW: [[0.470,MARKS], [0.603,SIZE1]], + stretch: {left:[0xE014,SIZE7], rep:[0xE015,SIZE7], right:[0xE016,SIZE7]} + }, + 0x20E9: + { + dir: H, + HW: [[0.360,MARKS], [0.735,SIZE1], [1.110,SIZE2], [1.485,SIZE3], [1.860,SIZE4], [2.235,SIZE5], [2.610,SIZE6], [2.985,SIZE7]], + stretch: {left:[0xE11B,SIZE7], rep:[0xE11C,SIZE7], right:[0xE11D,SIZE7]} + }, + 0x20EC: + { + dir: H, + HW: [[0.422,MARKS], [0.555,SIZE1]], + stretch: {left:[0xE017,SIZE7], rep:[0xE018,SIZE7], right:[0xE019,SIZE7]} + }, + 0x20ED: + { + dir: H, + HW: [[0.422,MARKS], [0.555,SIZE1]], + stretch: {left:[0xE01A,SIZE7], rep:[0xE01B,SIZE7], right:[0xE01C,SIZE7]} + }, + 0x20EE: + { + dir: H, + HW: [[0.416,MARKS], [0.547,SIZE1]], + stretch: {left:[0xE01D,SIZE7], rep:[0xE01E,SIZE7], right:[0xE01F,SIZE7]} + }, + 0x20EF: + { + dir: H, + HW: [[0.416,MARKS], [0.547,SIZE1]], + stretch: {left:[0xE020,SIZE7], rep:[0xE021,SIZE7], right:[0xE022,SIZE7]} + }, + 0x2196: + { + dir: V, + HW: [[0.917,MAIN], [1.383,SIZE1]] + }, + 0x2197: + { + dir: V, + HW: [[0.917,MAIN], [1.383,SIZE1]] + }, + 0x2198: + { + dir: V, + HW: [[0.917,MAIN], [1.383,SIZE1]] + }, + 0x2199: + { + dir: V, + HW: [[0.917,MAIN], [1.383,SIZE1]] + }, + 0x219A: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE02F,SIZE7], rep:[0xE030,SIZE7], mid:[0xE031,SIZE7], right:[0xE032,SIZE7]} + }, + 0x219B: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE033,SIZE7], rep:[0xE034,SIZE7], mid:[0xE035,SIZE7], right:[0xE036,SIZE7]} + }, + 0x219E: + { + dir: H, + HW: [[0.905,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE041,SIZE7], rep:[0xE042,SIZE7], right:[0xE043,SIZE7]} + }, + 0x219F: + { + dir: V, + HW: [[0.902,ARROWS], [1.348,SIZE1]], + stretch: {bot:[0xE047,SIZE7], ext:[0xE048,SIZE7], top:[0xE049,SIZE7]} + }, + 0x21A0: + { + dir: H, + HW: [[0.905,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE044,SIZE7], rep:[0xE045,SIZE7], right:[0xE046,SIZE7]} + }, + 0x21A1: + { + dir: V, + HW: [[0.902,ARROWS], [1.348,SIZE1]], + stretch: {bot:[0xE04A,SIZE7], ext:[0xE04B,SIZE7], top:[0xE04C,SIZE7]} + }, + 0x21A2: + { + dir: H, + HW: [[1.080,MAIN], [1.546,SIZE1]], + stretch: {left:[0xE04D,SIZE7], rep:[0xE04E,SIZE7], right:[0xE04F,SIZE7]} + }, + 0x21A3: + { + dir: H, + HW: [[1.080,MAIN], [1.546,SIZE1]], + stretch: {left:[0xE050,SIZE7], rep:[0xE051,SIZE7], right:[0xE052,SIZE7]} + }, + 0x21A5: + { + dir: V, + HW: [[0.862,ARROWS], [1.328,SIZE1]], + stretch: {bot:[0xE059,SIZE7], ext:[0xE05A,SIZE7], top:[0xE05B,SIZE7]} + }, + 0x21A7: + { + dir: V, + HW: [[0.862,ARROWS], [1.328,SIZE1]], + stretch: {bot:[0xE05C,SIZE7], ext:[0xE05D,SIZE7], top:[0xE05E,SIZE7]} + }, + 0x21A9: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE062,SIZE7], rep:[0xE063,SIZE7], right:[0xE064,SIZE7]} + }, + 0x21AA: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE05F,SIZE7], rep:[0xE060,SIZE7], right:[0xE061,SIZE7]} + }, + 0x21AB: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE068,SIZE7], rep:[0xE069,SIZE7], right:[0xE06A,SIZE7]} + }, + 0x21AC: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE065,SIZE7], rep:[0xE066,SIZE7], right:[0xE067,SIZE7]} + }, + 0x21AD: + { + dir: H, + HW: [[0.884,MAIN], [1.330,SIZE1]] + }, + 0x21AE: + { + dir: H, + HW: [[0.884,MAIN], [1.330,SIZE1]], + stretch: {left:[0xE03D,SIZE7], rep:[0xE03E,SIZE7], mid:[0xE03F,SIZE7], right:[0xE040,SIZE7]} + }, + 0x21B0: + { + dir: V, + HW: [[0.858,MAIN], [1.168,SIZE1]] + }, + 0x21B1: + { + dir: V, + HW: [[0.858,MAIN], [1.168,SIZE1]] + }, + 0x21B2: + { + dir: V, + HW: [[0.858,ARROWS], [1.168,SIZE1]] + }, + 0x21B3: + { + dir: V, + HW: [[0.858,ARROWS], [1.168,SIZE1]] + }, + 0x21B6: + { + dir: H, + HW: [[0.868,MAIN], [1.218,SIZE1]] + }, + 0x21B7: + { + dir: H, + HW: [[0.868,MAIN], [1.218,SIZE1]] + }, + 0x21BC: + { + dir: H, + HW: [[0.900,MAIN], [1.366,SIZE1]], + stretch: {left:[0xE06B,SIZE7], rep:[0xE06C,SIZE7], right:[0xE06D,SIZE7]} + }, + 0x21BD: + { + dir: H, + HW: [[0.900,MAIN], [1.366,SIZE1]], + stretch: {left:[0xE071,SIZE7], rep:[0xE072,SIZE7], right:[0xE073,SIZE7]} + }, + 0x21BE: + { + dir: V, + HW: [[0.900,MAIN], [1.366,SIZE1]], + stretch: {bot:[0xE077,SIZE7], ext:[0xE078,SIZE7], top:[0xE079,SIZE7]} + }, + 0x21BF: + { + dir: V, + HW: [[0.900,MAIN], [1.366,SIZE1]], + stretch: {bot:[0xE07D,SIZE7], ext:[0xE07E,SIZE7], top:[0xE07F,SIZE7]} + }, + 0x21C0: + { + dir: H, + HW: [[0.900,MAIN], [1.366,SIZE1]], + stretch: {left:[0xE06E,SIZE7], rep:[0xE06F,SIZE7], right:[0xE070,SIZE7]} + }, + 0x21C1: + { + dir: H, + HW: [[0.900,MAIN], [1.366,SIZE1]], + stretch: {left:[0xE074,SIZE7], rep:[0xE075,SIZE7], right:[0xE076,SIZE7]} + }, + 0x21C2: + { + dir: V, + HW: [[0.900,MAIN], [1.366,SIZE1]], + stretch: {bot:[0xE07A,SIZE7], ext:[0xE07B,SIZE7], top:[0xE07C,SIZE7]} + }, + 0x21C3: + { + dir: V, + HW: [[0.900,MAIN], [1.366,SIZE1]], + stretch: {bot:[0xE080,SIZE7], ext:[0xE081,SIZE7], top:[0xE082,SIZE7]} + }, + 0x21C4: + { + dir: H, + HW: [[0.906,MAIN], [1.372,SIZE1]], + stretch: {left:[0xE083,SIZE7], rep:[0xE084,SIZE7], right:[0xE085,SIZE7]} + }, + 0x21C5: + { + dir: V, + HW: [[0.906,ARROWS], [1.372,SIZE1]], + stretch: {bot:[0xE089,SIZE7], ext:[0xE08A,SIZE7], top:[0xE08B,SIZE7]} + }, + 0x21C6: + { + dir: H, + HW: [[0.906,MAIN], [1.372,SIZE1]], + stretch: {left:[0xE086,SIZE7], rep:[0xE087,SIZE7], right:[0xE088,SIZE7]} + }, + 0x21C7: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE08F,SIZE7], rep:[0xE090,SIZE7], right:[0xE091,SIZE7]} + }, + 0x21C8: + { + dir: V, + HW: [[0.882,MAIN], [1.348,SIZE1]], + stretch: {bot:[0xE095,SIZE7], ext:[0xE096,SIZE7], top:[0xE097,SIZE7]} + }, + 0x21C9: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE092,SIZE7], rep:[0xE093,SIZE7], right:[0xE094,SIZE7]} + }, + 0x21CA: + { + dir: V, + HW: [[0.882,MAIN], [1.348,SIZE1]], + stretch: {bot:[0xE098,SIZE7], ext:[0xE099,SIZE7], top:[0xE09A,SIZE7]} + }, + 0x21CB: + { + dir: H, + HW: [[0.906,MAIN], [1.372,SIZE1]], + stretch: {left:[0xE0A1,SIZE7], rep:[0xE0A2,SIZE7], right:[0xE0A3,SIZE7]} + }, + 0x21CC: + { + dir: H, + HW: [[0.906,MAIN], [1.372,SIZE1]], + stretch: {left:[0xE0A4,SIZE7], rep:[0xE0A5,SIZE7], right:[0xE0A6,SIZE7]} + }, + 0x21CD: + { + dir: H, + HW: [[0.879,MAIN], [1.345,SIZE1]], + stretch: {left:[0xE0B9,SIZE7], rep:[0xE0BA,SIZE7], mid:[0xE0BB,SIZE7], right:[0xE0BC,SIZE7]} + }, + 0x21CE: + { + dir: H, + HW: [[0.956,MAIN], [1.422,SIZE1]], + stretch: {left:[0xE0C1,SIZE7], rep:[0xE0C2,SIZE7], mid:[0xE0C3,SIZE7], right:[0xE0C4,SIZE7]} + }, + 0x21CF: + { + dir: H, + HW: [[0.879,MAIN], [1.345,SIZE1]], + stretch: {left:[0xE0BD,SIZE7], rep:[0xE0BE,SIZE7], mid:[0xE0BF,SIZE7], right:[0xE0C0,SIZE7]} + }, + 0x21D6: + { + dir: V, + HW: [[0.954,ARROWS], [1.420,SIZE1]] + }, + 0x21D7: + { + dir: V, + HW: [[0.954,ARROWS], [1.420,SIZE1]] + }, + 0x21D8: + { + dir: V, + HW: [[0.954,ARROWS], [1.420,SIZE1]] + }, + 0x21D9: + { + dir: V, + HW: [[0.954,ARROWS], [1.420,SIZE1]] + }, + 0x21DA: + { + dir: H, + HW: [[0.903,MAIN], [1.349,SIZE1]], + stretch: {left:[0xE0CB,SIZE7], rep:[0xE0CC,SIZE7], right:[0xE0CD,SIZE7]} + }, + 0x21DB: + { + dir: H, + HW: [[0.903,MAIN], [1.349,SIZE1]], + stretch: {left:[0xE0CE,SIZE7], rep:[0xE0CF,SIZE7], right:[0xE0D0,SIZE7]} + }, + 0x21DC: + { + dir: H, + HW: [[0.885,ARROWS], [1.351,SIZE1]] + }, + 0x21DD: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]] + }, + 0x21E6: + { + dir: H, + HW: [[0.938,ARROWS], [1.384,SIZE1]], + stretch: {left:[0xE0D1,SIZE7], rep:[0xE0D2,SIZE7], right:[0xE0D3,SIZE7]} + }, + 0x21E7: + { + dir: V, + HW: [[0.938,ARROWS], [1.384,SIZE1]], + stretch: {bot:[0xE0D7,SIZE7], ext:[0xE0D8,SIZE7], top:[0xE0D9,SIZE7]} + }, + 0x21E8: + { + dir: H, + HW: [[0.938,ARROWS], [1.384,SIZE1]], + stretch: {left:[0xE0D4,SIZE7], rep:[0xE0D5,SIZE7], right:[0xE0D6,SIZE7]} + }, + 0x21E9: + { + dir: V, + HW: [[0.938,ARROWS], [1.384,SIZE1]], + stretch: {bot:[0xE0DA,SIZE7], ext:[0xE0DB,SIZE7], top:[0xE0DC,SIZE7]} + }, + 0x21F3: + { + dir: V, + HW: [[0.950,ARROWS], [1.396,SIZE1]], + stretch: {bot:[0xE0DD,SIZE7], ext:[0xE0DE,SIZE7], top:[0xE0DF,SIZE7]} + }, + 0x21F5: + { + dir: V, + HW: [[0.906,ARROWS], [1.372,SIZE1]], + stretch: {bot:[0xE08C,SIZE7], ext:[0xE08D,SIZE7], top:[0xE08E,SIZE7]} + }, + 0x21F6: + { + dir: H, + HW: [[0.885,ARROWS], [1.351,SIZE1]], + stretch: {left:[0xE09B,SIZE7], rep:[0xE09C,SIZE7], right:[0xE09D,SIZE7]} + }, + 0x220F: + { + dir: V, + HW: [[1.000,OPERATORS], [1.400,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[1.000,OPERATORS], [1.400,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[1.000,OPERATORS], [1.400,SIZE1]] + }, + 0x222B: + { + dir: V, + HW: [[1.111,MAIN], [2.222,SIZE1]] + }, + 0x222C: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x222D: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x222E: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x222F: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x2230: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x2231: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x2232: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x2233: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x2261: + { + dir: H, + HW: [[0.666,MAIN]], + stretch: {left:[0xE12D,SIZE7], rep:[0xE12E,SIZE7], right:[0xE12F,SIZE7]} + }, + 0x2263: + { + dir: H, + HW: [[0.666,OPERATORS]], + stretch: {left:[0xE130,SIZE7], rep:[0xE131,SIZE7], right:[0xE132,SIZE7]} + }, + 0x22A2: + { + dir: V, + HW: [[0.684,MAIN], [0.868,SIZE1]] + }, + 0x22A3: + { + dir: V, + HW: [[0.684,MAIN], [0.868,SIZE1]] + }, + 0x22A4: + { + dir: V, + HW: [[0.684,MAIN], [0.868,SIZE1]] + }, + 0x22A5: + { + dir: V, + HW: [[0.684,MAIN], [0.868,SIZE1]] + }, + 0x22C0: + { + dir: V, + HW: [[1.045,OPERATORS], [1.393,SIZE1]] + }, + 0x22C1: + { + dir: V, + HW: [[1.045,OPERATORS], [1.393,SIZE1]] + }, + 0x22C2: + { + dir: V, + HW: [[1.022,OPERATORS], [1.356,SIZE1]] + }, + 0x22C3: + { + dir: V, + HW: [[1.022,OPERATORS], [1.356,SIZE1]] + }, + 0x23B4: + { + dir: H, + HW: [[0.360,MAIN], [0.735,SIZE1], [1.110,SIZE2], [1.485,SIZE3], [1.860,SIZE4], [2.235,SIZE5], [2.610,SIZE6], [2.985,SIZE7]], + stretch: {left:[0xE11B,SIZE7], rep:[0xE11C,SIZE7], right:[0xE11D,SIZE7]} + }, + 0x23B5: + { + dir: H, + HW: [[0.360,MAIN], [0.735,SIZE1], [1.110,SIZE2], [1.485,SIZE3], [1.860,SIZE4], [2.235,SIZE5], [2.610,SIZE6], [2.985,SIZE7]], + stretch: {left:[0xE11E,SIZE7], rep:[0xE11F,SIZE7], right:[0xE120,SIZE7]} + }, + 0x23DC: + { + dir: H, + HW: [[0.504,MAIN], [1.006,SIZE1], [1.508,SIZE2], [2.012,SIZE3], [2.516,SIZE4], [3.020,SIZE5], [3.524,SIZE6], [4.032,SIZE7]], + stretch: {left:[0xE115,SIZE7], rep:[0xE116,SIZE7], right:[0xE117,SIZE7]} + }, + 0x23DD: + { + dir: H, + HW: [[0.504,MAIN], [1.006,SIZE1], [1.508,SIZE2], [2.012,SIZE3], [2.516,SIZE4], [3.020,SIZE5], [3.524,SIZE6], [4.032,SIZE7]], + stretch: {left:[0xE118,SIZE7], rep:[0xE119,SIZE7], right:[0xE11A,SIZE7]} + }, + 0x23E0: + { + dir: H, + HW: [[0.546,MAIN], [1.048,SIZE1], [1.550,SIZE2], [2.056,SIZE3], [2.564,SIZE4], [3.068,SIZE5], [3.574,SIZE6], [4.082,SIZE7]], + stretch: {left:[0xE121,SIZE7], rep:[0xE122,SIZE7], right:[0xE123,SIZE7]} + }, + 0x23E1: + { + dir: H, + HW: [[0.546,MAIN], [1.048,SIZE1], [1.550,SIZE2], [2.056,SIZE3], [2.564,SIZE4], [3.068,SIZE5], [3.574,SIZE6], [4.082,SIZE7]], + stretch: {left:[0xE124,SIZE7], rep:[0xE125,SIZE7], right:[0xE126,SIZE7]} + }, + 0x27A1: + { + dir: H, + HW: [[0.865,MISC], [1.311,SIZE1]], + stretch: {left:[0xE0E6,SIZE7], rep:[0xE0E7,SIZE7], right:[0xE0E8,SIZE7]} + }, + 0x27E6: + { + dir: V, + HW: [[1.000,SYMBOLS], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {bot:[0xE107,SIZE7], ext:[0xE108,SIZE7], top:[0xE109,SIZE7]} + }, + 0x27E7: + { + dir: V, + HW: [[1.000,SYMBOLS], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {bot:[0xE10A,SIZE7], ext:[0xE10B,SIZE7], top:[0xE10C,SIZE7]} + }, + 0x27EA: + { + dir: V, + HW: [[1.000,SYMBOLS], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]] + }, + 0x27EB: + { + dir: V, + HW: [[1.000,SYMBOLS], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]] + }, + 0x2A00: + { + dir: V, + HW: [[0.986,OPERATORS], [1.304,SIZE1]] + }, + 0x2A01: + { + dir: V, + HW: [[0.986,OPERATORS], [1.304,SIZE1]] + }, + 0x2A02: + { + dir: V, + HW: [[0.986,OPERATORS], [1.304,SIZE1]] + }, + 0x2A03: + { + dir: V, + HW: [[1.022,OPERATORS], [1.356,SIZE1]] + }, + 0x2A04: + { + dir: V, + HW: [[1.022,OPERATORS], [1.356,SIZE1]] + }, + 0x2A05: + { + dir: V, + HW: [[1.028,OPERATORS], [1.372,SIZE1]] + }, + 0x2A06: + { + dir: V, + HW: [[1.028,OPERATORS], [1.372,SIZE1]] + }, + 0x2A09: + { + dir: V, + HW: [[0.981,OPERATORS], [1.260,SIZE1]] + }, + 0x2A0C: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x2A11: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x2B04: + { + dir: H, + HW: [[0.950,SHAPES], [1.396,SIZE1]], + stretch: {left:[0xE0E0,SIZE7], rep:[0xE0E1,SIZE7], right:[0xE0E2,SIZE7]} + }, + 0x2B05: + { + dir: H, + HW: [[0.865,SHAPES], [1.311,SIZE1]], + stretch: {left:[0xE0E3,SIZE7], rep:[0xE0E4,SIZE7], right:[0xE0E5,SIZE7]} + }, + 0x2B06: + { + dir: V, + HW: [[0.865,SHAPES], [1.311,SIZE1]], + stretch: {bot:[0xE0E9,SIZE7], ext:[0xE0EA,SIZE7], top:[0xE0EB,SIZE7]} + }, + 0x2B07: + { + dir: V, + HW: [[0.865,SHAPES], [1.311,SIZE1]], + stretch: {bot:[0xE0EC,SIZE7], ext:[0xE0ED,SIZE7], top:[0xE0EE,SIZE7]} + }, + 0x2B0C: + { + dir: H, + HW: [[0.844,SHAPES], [1.290,SIZE1]], + stretch: {left:[0xE0EF,SIZE7], rep:[0xE0F0,SIZE7], right:[0xE0F1,SIZE7]} + }, + 0x2B0D: + { + dir: V, + HW: [[0.844,SHAPES], [1.290,SIZE1]], + stretch: {bot:[0xE0F2,SIZE7], ext:[0xE0F3,SIZE7], top:[0xE0F4,SIZE7]} + }, + 0x2B31: + { + dir: H, + HW: [[0.885,SHAPES], [1.351,SIZE1]], + stretch: {left:[0xE09E,SIZE7], rep:[0xE09F,SIZE7], right:[0xE0A0,SIZE7]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["HTML-CSS"]); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata.js new file mode 100644 index 0000000..e291ea1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata.js @@ -0,0 +1,705 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Latin-Modern/fontdata.js + * + * Initializes the HTML-CSS OutputJax to use the Latin-Modern fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,MML,AJAX) { + + var VERSION = "2.3"; + + var ALPHABETS = "LatinModernMathJax_Alphabets", + ARROWS = "LatinModernMathJax_Arrows", + DOUBLESTRUCK = "LatinModernMathJax_DoubleStruck", + FRAKTUR = "LatinModernMathJax_Fraktur", + LATIN = "LatinModernMathJax_Latin", + MAIN = "LatinModernMathJax_Main", + MARKS = "LatinModernMathJax_Marks", + MISC = "LatinModernMathJax_Misc", + MONOSPACE = "LatinModernMathJax_Monospace", + NONUNICODE = "LatinModernMathJax_NonUnicode", + NORMAL = "LatinModernMathJax_Normal", + OPERATORS = "LatinModernMathJax_Operators", + SANSSERIF = "LatinModernMathJax_SansSerif", + SCRIPT = "LatinModernMathJax_Script", + SHAPES = "LatinModernMathJax_Shapes", + SIZE1 = "LatinModernMathJax_Size1", + SIZE2 = "LatinModernMathJax_Size2", + SIZE3 = "LatinModernMathJax_Size3", + SIZE4 = "LatinModernMathJax_Size4", + SIZE5 = "LatinModernMathJax_Size5", + SIZE6 = "LatinModernMathJax_Size6", + SIZE7 = "LatinModernMathJax_Size7", + SYMBOLS = "LatinModernMathJax_Symbols", + VARIANTS = "LatinModernMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + HTMLCSS.Augment({ + FONTDATA: { + version: VERSION, + + + TeX_factor: 1.091, + baselineskip: 1.200, + lineH: 0.800, lineD: 0.200, + + hasStyleChar: true, // char 0xEFFD encodes font style + + FONTS: { + "LatinModernMathJax_Alphabets": "Alphabets/Regular/Main.js", + "LatinModernMathJax_Arrows": "Arrows/Regular/Main.js", + "LatinModernMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "LatinModernMathJax_Fraktur": "Fraktur/Regular/Main.js", + "LatinModernMathJax_Latin": "Latin/Regular/Main.js", + "LatinModernMathJax_Main": "Main/Regular/Main.js", + "LatinModernMathJax_Marks": "Marks/Regular/Main.js", + "LatinModernMathJax_Misc": "Misc/Regular/Main.js", + "LatinModernMathJax_Monospace": "Monospace/Regular/Main.js", + "LatinModernMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "LatinModernMathJax_Normal": "Normal/Regular/Main.js", + "LatinModernMathJax_Operators": "Operators/Regular/Main.js", + "LatinModernMathJax_SansSerif": "SansSerif/Regular/Main.js", + "LatinModernMathJax_Script": "Script/Regular/Main.js", + "LatinModernMathJax_Shapes": "Shapes/Regular/Main.js", + "LatinModernMathJax_Size1": "Size1/Regular/Main.js", + "LatinModernMathJax_Size2": "Size2/Regular/Main.js", + "LatinModernMathJax_Size3": "Size3/Regular/Main.js", + "LatinModernMathJax_Size4": "Size4/Regular/Main.js", + "LatinModernMathJax_Size5": "Size5/Regular/Main.js", + "LatinModernMathJax_Size6": "Size6/Regular/Main.js", + "LatinModernMathJax_Size7": "Size7/Regular/Main.js", + "LatinModernMathJax_Symbols": "Symbols/Regular/Main.js", + "LatinModernMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, offsetA: 0x1D434, offsetG: 0x1D6E2, remap: {0x1D455: 0x210E}}, + "bolditalic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true, offsetA: 0x1D468, offsetG: 0x1D71C}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Latin-Modern-variant": {fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x0305, + + REMAP: { + 0x25C2: 0x25C0, + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x2758: 0x2223, + 0x25B8: 0x25B6, + 0x03D2: 0x03A5, + 0x25B4: 0x25B2, + 0x25B5: 0x25B3, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF, + 0x02B9: 0x2032, + 0x25FB: 0x25A1, + 0x25FC: 0x25A0, + 0x25BE: 0x25BC, + 0x203E: 0x0305, + 0x25BF: 0x25BD + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[0.996,MAIN], [1.094,SIZE1], [1.194,SIZE2], [1.444,SIZE3], [1.792,SIZE4], [2.092,SIZE5], [2.392,SIZE6], [2.990,SIZE7]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[0.996,MAIN], [1.094,SIZE1], [1.194,SIZE2], [1.444,SIZE3], [1.792,SIZE4], [2.092,SIZE5], [2.392,SIZE6], [2.990,SIZE7]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0x305, dir: H}, + 0x2F: + { + dir: V, + HW: [[1.000,MAIN], [1.310,SIZE1], [1.716,SIZE2], [1.771,SIZE2,1.032], [2.248,SIZE3], [2.944,SIZE4], [3.858,SIZE5], [5.054,SIZE6], [6.620,SIZE7]] + }, + 0x3D: + { + dir: H, + HW: [[0.666,MAIN]], + stretch: {left:[0xE000,SIZE7], rep:[0xE001,SIZE7], right:[0xE002,SIZE7]} + }, + 0x5B: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[1.000,MAIN], [1.310,SIZE1], [1.716,SIZE2], [1.771,SIZE2,1.032], [2.248,SIZE3], [2.944,SIZE4], [3.858,SIZE5], [5.054,SIZE6], [6.620,SIZE7]] + }, + 0x5D: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5E: {alias: 0x302, dir: H}, + 0x5F: {alias: 0x332, dir: H}, + 0x7B: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0xE003,SIZE7], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[1.000,MAIN], [1.202,SIZE1], [1.444,SIZE2], [1.734,SIZE3], [2.084,SIZE4], [2.502,SIZE5], [3.004,SIZE6], [3.606,SIZE7]], + stretch: {bot:[0xE004,SIZE7], ext:[0xE005,SIZE7], top:[0xE006,SIZE7]} + }, + 0x7D: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0xE007,SIZE7], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0x7E: {alias: 0x303, dir: H}, + 0xAF: {alias: 0x332, dir: H}, + 0x2C6: {alias: 0x302, dir: H}, + 0x2C9: {alias: 0x305, dir: H}, + 0x2DC: {alias: 0x303, dir: H}, + 0x302: + { + dir: H, + HW: [[0.364,MAIN], [0.644,SIZE1], [0.768,SIZE2], [0.919,SIZE3], [1.100,SIZE4], [1.320,SIZE5], [1.581,SIZE6], [1.896,SIZE7]] + }, + 0x303: + { + dir: H, + HW: [[0.370,MAIN], [0.652,SIZE1], [0.778,SIZE2], [0.931,SIZE3], [1.115,SIZE4], [1.335,SIZE5], [1.599,SIZE6], [1.915,SIZE7]] + }, + 0x305: + { + dir: H, + HW: [[0.392,MARKS], [0.568,SIZE1]], + stretch: {left:[0xE0FB,SIZE7], rep:[0xE0FC,SIZE7], right:[0xE0FD,SIZE7]} + }, + 0x306: EXTRAH, + 0x30C: + { + dir: H, + HW: [[0.364,MAIN], [0.644,SIZE1], [0.768,SIZE2], [0.919,SIZE3], [1.100,SIZE4], [1.320,SIZE5], [1.581,SIZE6], [1.896,SIZE7]] + }, + 0x311: EXTRAH, + 0x32C: EXTRAH, + 0x32D: EXTRAH, + 0x32E: EXTRAH, + 0x32F: EXTRAH, + 0x330: EXTRAH, + 0x332: + { + dir: H, + HW: [[0.392,MARKS], [0.568,SIZE1]], + stretch: {left:[0xE0F5,SIZE7], rep:[0xE0F6,SIZE7], right:[0xE0F7,SIZE7]} + }, + 0x333: EXTRAH, + 0x33F: EXTRAH, + 0x2015: {alias: 0x305, dir: H}, + 0x2016: + { + dir: V, + HW: [[1.000,MAIN], [1.202,SIZE1], [1.444,SIZE2], [1.734,SIZE3], [2.084,SIZE4], [2.502,SIZE5], [3.004,SIZE6], [3.606,SIZE7]], + stretch: {bot:[0xE12A,SIZE7], ext:[0xE12B,SIZE7], top:[0xE12C,SIZE7]} + }, + 0x2017: {alias: 0x305, dir: H}, + 0x203E: {alias: 0x305, dir: H}, + 0x2044: + { + dir: V, + HW: [[1.000,MAIN], [1.310,SIZE1], [1.716,SIZE2], [2.248,SIZE3], [2.944,SIZE4], [3.858,SIZE5], [5.054,SIZE6], [6.620,SIZE7]] + }, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: EXTRAH, + 0x20E1: EXTRAH, + 0x20E9: EXTRAH, + 0x20EC: EXTRAH, + 0x20ED: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2190: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE023,SIZE7], rep:[0xE024,SIZE7], right:[0xE025,SIZE7]} + }, + 0x2191: + { + dir: V, + HW: [[0.882,MAIN], [1.348,SIZE1]], + stretch: {bot:[0xE029,SIZE7], ext:[0xE02A,SIZE7], top:[0xE02B,SIZE7]} + }, + 0x2192: + { + dir: H, + HW: [[0.885,MAIN], [1.351,SIZE1]], + stretch: {left:[0xE026,SIZE7], rep:[0xE027,SIZE7], right:[0xE028,SIZE7]} + }, + 0x2193: + { + dir: V, + HW: [[0.882,MAIN], [1.348,SIZE1]], + stretch: {bot:[0xE02C,SIZE7], ext:[0xE02D,SIZE7], top:[0xE02E,SIZE7]} + }, + 0x2194: + { + dir: H, + HW: [[0.884,MAIN], [1.330,SIZE1]], + stretch: {left:[0xE037,SIZE7], rep:[0xE038,SIZE7], right:[0xE039,SIZE7]} + }, + 0x2195: + { + dir: V, + HW: [[1.014,MAIN], [1.014,SIZE1]], + stretch: {bot:[0xE03A,SIZE7], ext:[0xE03B,SIZE7], top:[0xE03C,SIZE7]} + }, + 0x2196: EXTRAV, + 0x2197: EXTRAV, + 0x2198: EXTRAV, + 0x2199: EXTRAV, + 0x219A: EXTRAH, + 0x219B: EXTRAH, + 0x219E: EXTRAH, + 0x219F: EXTRAV, + 0x21A0: EXTRAH, + 0x21A1: EXTRAV, + 0x21A2: EXTRAH, + 0x21A3: EXTRAH, + 0x21A4: + { + dir: H, + HW: [[0.865,ARROWS], [1.331,SIZE1]], + stretch: {left:[0xE053,SIZE7], rep:[0xE054,SIZE7], right:[0xE055,SIZE7]} + }, + 0x21A5: EXTRAV, + 0x21A6: + { + dir: H, + HW: [[0.865,MAIN], [1.331,SIZE1]], + stretch: {left:[0xE056,SIZE7], rep:[0xE057,SIZE7], right:[0xE058,SIZE7]} + }, + 0x21A7: EXTRAV, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21AB: EXTRAH, + 0x21AC: EXTRAH, + 0x21AD: EXTRAH, + 0x21AE: EXTRAH, + 0x21B0: EXTRAV, + 0x21B1: EXTRAV, + 0x21B2: EXTRAV, + 0x21B3: EXTRAV, + 0x21B6: EXTRAH, + 0x21B7: EXTRAH, + 0x21BC: EXTRAH, + 0x21BD: EXTRAH, + 0x21BE: EXTRAV, + 0x21BF: EXTRAV, + 0x21C0: EXTRAH, + 0x21C1: EXTRAH, + 0x21C2: EXTRAV, + 0x21C3: EXTRAV, + 0x21C4: EXTRAH, + 0x21C5: EXTRAV, + 0x21C6: EXTRAH, + 0x21C7: EXTRAH, + 0x21C8: EXTRAV, + 0x21C9: EXTRAH, + 0x21CA: EXTRAV, + 0x21CB: EXTRAH, + 0x21CC: EXTRAH, + 0x21CD: EXTRAH, + 0x21CE: EXTRAH, + 0x21CF: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[0.879,MAIN], [1.345,SIZE1]], + stretch: {left:[0xE0A7,SIZE7], rep:[0xE0A8,SIZE7], right:[0xE0A9,SIZE7]} + }, + 0x21D1: + { + dir: V, + HW: [[0.879,MAIN], [1.345,SIZE1]], + stretch: {bot:[0xE0AD,SIZE7], ext:[0xE0AE,SIZE7], top:[0xE0AF,SIZE7]} + }, + 0x21D2: + { + dir: H, + HW: [[0.879,MAIN], [1.345,SIZE1]], + stretch: {left:[0xE0AA,SIZE7], rep:[0xE0AB,SIZE7], right:[0xE0AC,SIZE7]} + }, + 0x21D3: + { + dir: V, + HW: [[0.879,MAIN], [1.345,SIZE1]], + stretch: {bot:[0xE0B0,SIZE7], ext:[0xE0B1,SIZE7], top:[0xE0B2,SIZE7]} + }, + 0x21D4: + { + dir: H, + HW: [[0.956,MAIN], [1.422,SIZE1]], + stretch: {left:[0xE0B3,SIZE7], rep:[0xE0B4,SIZE7], right:[0xE0B5,SIZE7]} + }, + 0x21D5: + { + dir: V, + HW: [[0.956,MAIN], [1.422,SIZE1]], + stretch: {bot:[0xE0B6,SIZE7], ext:[0xE0B7,SIZE7], top:[0xE0B8,SIZE7]} + }, + 0x21D6: EXTRAV, + 0x21D7: EXTRAV, + 0x21D8: EXTRAV, + 0x21D9: EXTRAV, + 0x21DA: EXTRAH, + 0x21DB: EXTRAH, + 0x21DC: EXTRAH, + 0x21DD: EXTRAH, + 0x21E6: EXTRAH, + 0x21E7: EXTRAV, + 0x21E8: EXTRAH, + 0x21E9: EXTRAV, + 0x21F3: EXTRAV, + 0x21F5: EXTRAV, + 0x21F6: EXTRAH, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: + { + dir: H, + HW: [[0.666,MAIN]], + stretch: {left:[0xE127,SIZE7], rep:[0xE128,SIZE7], right:[0xE129,SIZE7]} + }, + 0x2215: {alias: 0x2044, dir: V}, + 0x221A: + { + dir: V, + HW: [[1.000,MAIN], [1.200,SIZE1], [1.800,SIZE2], [2.400,SIZE3], [3.000,SIZE4]], + stretch: {bot:[0x23B7,SYMBOLS], ext:[0xE133,SIZE7], top:[0xE134,SIZE7]} + }, + 0x2223: + { + dir: V, + HW: [[1.000,MAIN], [1.202,SIZE1], [1.444,SIZE2], [1.734,SIZE3], [2.084,SIZE4], [2.502,SIZE5], [3.004,SIZE6], [3.606,SIZE7]], + stretch: {bot:[0xE004,SIZE7], ext:[0xE005,SIZE7], top:[0xE006,SIZE7]} + }, + 0x2225: + { + dir: V, + HW: [[1.000,MAIN], [1.202,SIZE1], [1.444,SIZE2], [1.734,SIZE3], [2.084,SIZE4], [2.502,SIZE5], [3.004,SIZE6], [3.606,SIZE7]], + stretch: {bot:[0xE12A,SIZE7], ext:[0xE12B,SIZE7], top:[0xE12C,SIZE7]} + }, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x2261: EXTRAH, + 0x2263: EXTRAH, + 0x22A2: EXTRAV, + 0x22A3: EXTRAV, + 0x22A4: EXTRAV, + 0x22A5: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: + { + dir: V, + HW: [[1.000,SYMBOLS], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]] + }, + 0x232A: + { + dir: V, + HW: [[1.000,SYMBOLS], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]] + }, + 0x23AA: + { + dir: V, + HW: [[0.748,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: {alias: 0x305, dir: H}, + 0x23B0: + { + dir: V, + HW: [[0.750,SYMBOLS,null,0x23A7]], + stretch: {top:[0x23A7,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23AD,SYMBOLS]} + }, + 0x23B1: + { + dir: V, + HW: [[0.750,SYMBOLS,null,0x23AB]], + stretch: {top:[0x23AB,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23A9,SYMBOLS]} + }, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: + { + dir: V, + HW: [[1.000,MAIN,null,0x7C], [1.309,MAIN,1.309,0x7C], [1.771,MAIN,1.771,0x7C], [2.233,MAIN,2.233,0x7C], [2.695,MAIN,2.695,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[0.492,MAIN], [0.993,SIZE1], [1.494,SIZE2], [1.996,SIZE3], [2.498,SIZE4], [3.000,SIZE5], [3.502,SIZE6], [4.006,SIZE7]], + stretch: {left:[0xE10D,SIZE7], rep:[0xE10E,SIZE7], mid:[0xE10F,SIZE7], right:[0xE110,SIZE7]} + }, + 0x23DF: + { + dir: H, + HW: [[0.492,MAIN], [0.993,SIZE1], [1.494,SIZE2], [1.996,SIZE3], [2.498,SIZE4], [3.000,SIZE5], [3.502,SIZE6], [4.006,SIZE7]], + stretch: {left:[0xE111,SIZE7], rep:[0xE112,SIZE7], mid:[0xE113,SIZE7], right:[0xE114,SIZE7]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x305, dir: H}, + 0x27A1: EXTRAH, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]] + }, + 0x27E9: + { + dir: V, + HW: [[1.000,MAIN], [1.100,SIZE1], [1.200,SIZE2], [1.450,SIZE3], [1.800,SIZE4], [2.100,SIZE5], [2.400,SIZE6], [3.000,SIZE7]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: + { + dir: V, + HW: [[1.024,MAIN], [1.126,SIZE1], [1.228,SIZE2], [1.482,SIZE3], [1.836,SIZE4], [2.140,SIZE5], [2.444,SIZE6], [3.052,SIZE7]], + stretch: {bot:[0xE101,SIZE7], ext:[0xE102,SIZE7], top:[0xE103,SIZE7]} + }, + 0x27EF: + { + dir: V, + HW: [[1.024,MAIN], [1.126,SIZE1], [1.228,SIZE2], [1.482,SIZE3], [1.836,SIZE4], [2.140,SIZE5], [2.444,SIZE6], [3.052,SIZE7]], + stretch: {bot:[0xE104,SIZE7], ext:[0xE105,SIZE7], top:[0xE106,SIZE7]} + }, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: + { + dir: H, + HW: [[0.879,ARROWS], [1.325,SIZE1]], + stretch: {left:[0xE0C5,SIZE7], rep:[0xE0C6,SIZE7], right:[0xE0C7,SIZE7]} + }, + 0x2907: + { + dir: H, + HW: [[0.879,ARROWS], [1.325,SIZE1]], + stretch: {left:[0xE0C8,SIZE7], rep:[0xE0C9,SIZE7], right:[0xE0CA,SIZE7]} + }, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A11: EXTRAV, + 0x2B04: EXTRAH, + 0x2B05: EXTRAH, + 0x2B06: EXTRAV, + 0x2B07: EXTRAV, + 0x2B0C: EXTRAH, + 0x2B0D: EXTRAV, + 0x2B31: EXTRAH, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Size7/Regular/Main.js",function () { + var u; + u = HTMLCSS.FONTDATA.DELIMITERS[0x23DE].stretch.rep[0]; + HTMLCSS.FONTDATA.FONTS[SIZE7][u][0] += 200; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS[SIZE7][u][1] += 200; // adjust depth for brace extender + u = HTMLCSS.FONTDATA.DELIMITERS[0x23DF].stretch.rep[0]; + HTMLCSS.FONTDATA.FONTS[SIZE7][u][0] += 200; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS[SIZE7][u][1] += 200; // adjust depth for brace extender + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Size1/Regular/Main.js",function () { + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222B][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222B][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222C][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222C][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222D][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222D][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222E][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222E][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222F][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x222F][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2230][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2230][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2231][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2231][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2232][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2232][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2233][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2233][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2A0C][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2A0C][5] = {rfix:-425}; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2A11][2] -= 425; + HTMLCSS.FONTDATA.FONTS[SIZE1][0x2A11][5] = {rfix:-425}; + }); + AJAX.loadComplete(HTMLCSS.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.ElementJax.mml,MathJax.Ajax); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Alphabets/Regular/Main.js new file mode 100644 index 0000000..b924287 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Alphabets/Regular/Main.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'NeoEulerMathJax_Alphabets', + testString: '\u00A0\u2126', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x2126: [689,2,875,25,844] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Alphabets"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Alphabets/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Arrows/Regular/Main.js new file mode 100644 index 0000000..b8a2a4b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Arrows/Regular/Main.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'NeoEulerMathJax_Arrows', + testString: '\u00A0\u21A4\u27FB\u27FD\u27FE', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x21A4: [500,0,1000,56,944], + 0x27FB: [500,0,1690,56,1634], + 0x27FD: [598,98,1700,76,1643], + 0x27FE: [598,98,1700,75,1643] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Arrows"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Arrows/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Fraktur/Regular/Main.js new file mode 100644 index 0000000..e58db62 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Fraktur/Regular/Main.js @@ -0,0 +1,133 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'NeoEulerMathJax_Fraktur', + testString: '\u00A0\u210C\u2128\u212D\uD835\uDD04\uD835\uDD05\uD835\uDD07\uD835\uDD08\uD835\uDD09\uD835\uDD0A\uD835\uDD0D\uD835\uDD0E\uD835\uDD0F\uD835\uDD10\uD835\uDD11', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x210C: [667,133,720,-8,645], + 0x2128: [729,139,602,11,533], + 0x212D: [686,24,612,59,613], + 0x1D504: [697,27,717,22,709], + 0x1D505: [691,27,904,49,815], + 0x1D507: [690,27,831,27,746], + 0x1D508: [686,24,662,86,641], + 0x1D509: [686,155,611,11,621], + 0x1D50A: [692,25,785,66,711], + 0x1D50D: [686,139,552,-18,522], + 0x1D50E: [681,27,668,16,690], + 0x1D50F: [686,27,666,32,645], + 0x1D510: [692,27,1049,27,1049], + 0x1D511: [686,29,832,29,830], + 0x1D512: [729,27,828,11,746], + 0x1D513: [692,219,823,6,804], + 0x1D514: [729,69,828,11,783], + 0x1D516: [689,27,828,56,756], + 0x1D517: [703,27,669,24,676], + 0x1D518: [697,27,645,-26,666], + 0x1D519: [686,27,831,29,826], + 0x1D51A: [686,28,1046,21,1055], + 0x1D51B: [689,27,719,27,709], + 0x1D51C: [686,219,834,26,741], + 0x1D51E: [471,36,500,65,497], + 0x1D51F: [686,31,513,86,444], + 0x1D520: [466,29,389,72,359], + 0x1D521: [612,34,498,13,430], + 0x1D522: [467,31,400,70,364], + 0x1D523: [679,238,329,30,324], + 0x1D524: [470,209,503,16,455], + 0x1D525: [689,198,521,76,435], + 0x1D526: [675,21,279,14,268], + 0x1D527: [673,202,280,-9,196], + 0x1D528: [686,26,389,24,363], + 0x1D529: [686,20,279,97,277], + 0x1D52A: [475,26,766,7,757], + 0x1D52B: [475,23,526,18,521], + 0x1D52C: [481,28,488,66,413], + 0x1D52D: [538,214,500,12,430], + 0x1D52E: [480,224,489,59,418], + 0x1D52F: [474,21,389,15,395], + 0x1D530: [479,30,442,-28,407], + 0x1D531: [641,21,333,26,349], + 0x1D532: [474,26,517,8,514], + 0x1D533: [533,28,511,51,439], + 0x1D534: [533,28,773,44,693], + 0x1D535: [473,188,388,10,370], + 0x1D536: [524,219,498,45,437], + 0x1D537: [471,215,390,-7,314], + 0x1D56C: [688,31,847,29,827], + 0x1D56D: [685,31,1043,56,963], + 0x1D56E: [677,32,723,71,729], + 0x1D56F: [685,29,981,30,896], + 0x1D570: [687,29,782,73,733], + 0x1D571: [684,147,721,17,734], + 0x1D572: [692,27,927,74,844], + 0x1D573: [684,127,850,0,753], + 0x1D574: [683,25,654,31,623], + 0x1D575: [681,142,652,-8,615], + 0x1D576: [682,26,789,20,813], + 0x1D577: [684,28,786,30,764], + 0x1D578: [686,33,1239,26,1232], + 0x1D579: [681,33,982,26,968], + 0x1D57A: [726,29,976,11,881], + 0x1D57B: [685,223,977,19,944], + 0x1D57C: [726,82,976,11,917], + 0x1D57D: [689,29,977,19,977], + 0x1D57E: [685,31,978,82,906], + 0x1D57F: [691,30,789,30,798], + 0x1D580: [689,39,850,16,871], + 0x1D581: [687,29,981,25,966], + 0x1D582: [682,30,1235,31,1240], + 0x1D583: [682,35,849,32,835], + 0x1D584: [689,214,983,32,879], + 0x1D585: [718,137,726,17,633], + 0x1D586: [472,32,602,80,587], + 0x1D587: [691,32,589,86,504], + 0x1D588: [473,26,463,87,424], + 0x1D589: [632,29,588,-1,511], + 0x1D58A: [471,28,471,80,429], + 0x1D58B: [681,242,387,37,387], + 0x1D58C: [473,208,594,16,541], + 0x1D58D: [687,203,615,88,507], + 0x1D58E: [686,26,331,2,327], + 0x1D58F: [683,207,331,-19,238], + 0x1D590: [683,25,464,33,432], + 0x1D591: [682,24,336,100,315], + 0x1D592: [476,31,921,16,900], + 0x1D593: [474,28,653,3,608], + 0x1D594: [482,34,609,107,515], + 0x1D595: [558,208,603,-2,519], + 0x1D596: [485,212,595,87,515], + 0x1D597: [473,26,459,12,453], + 0x1D598: [480,35,522,-24,482], + 0x1D599: [654,27,393,47,407], + 0x1D59A: [473,35,588,9,604], + 0x1D59B: [546,28,604,56,507], + 0x1D59C: [549,33,917,55,815], + 0x1D59D: [471,188,458,8,449], + 0x1D59E: [559,222,589,60,515], + 0x1D59F: [472,215,461,-8,377] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Fraktur"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Main/Regular/Main.js new file mode 100644 index 0000000..0e6a083 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Main/Regular/Main.js @@ -0,0 +1,350 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Main'] = { + directory: 'Main/Regular', + family: 'NeoEulerMathJax_Main', + testString: '\u00A0\u00A7\u00A8\u00AC\u00AF\u00B1\u00B4\u00B5\u00B7\u00D7\u00F7\u0131\u0237\u02C6\u02C7', + 0x1: [0,0,333,0,0], + 0x20: [0,0,333,0,0], + 0x21: [690,11,295,90,204], + 0x22: [695,-432,214,9,196], + 0x23: [690,0,500,4,493], + 0x24: [708,107,557,84,480], + 0x25: [708,20,840,58,789], + 0x26: [698,11,737,49,734], + 0x27: [695,-436,212,68,134], + 0x28: [738,187,388,113,301], + 0x29: [736,189,388,86,276], + 0x2A: [692,-448,277,28,239], + 0x2B: [586,74,755,46,709], + 0x2C: [138,210,277,67,214], + 0x2D: [276,-236,544,40,504], + 0x2E: [119,15,277,77,211], + 0x2F: [720,192,501,39,463], + 0x30: [704,14,499,34,460], + 0x31: [712,5,499,92,314], + 0x32: [708,-2,499,12,472], + 0x33: [702,17,499,18,446], + 0x34: [704,5,499,-1,473], + 0x35: [687,11,499,12,448], + 0x36: [700,13,499,45,471], + 0x37: [694,8,499,49,494], + 0x38: [706,10,499,40,461], + 0x39: [702,9,499,40,462], + 0x3A: [455,12,216,50,164], + 0x3B: [457,190,216,48,179], + 0x3C: [531,36,756,59,680], + 0x3D: [369,-132,756,54,722], + 0x3E: [531,36,756,76,698], + 0x3F: [693,11,362,45,358], + 0x40: [688,31,744,26,718], + 0x41: [680,10,770,25,743], + 0x42: [686,1,655,50,574], + 0x43: [699,15,714,87,672], + 0x44: [686,-2,828,51,738], + 0x45: [688,0,604,46,559], + 0x46: [690,2,499,39,467], + 0x47: [699,17,765,90,676], + 0x48: [690,2,783,52,744], + 0x49: [683,1,394,78,348], + 0x4A: [690,234,402,50,351], + 0x4B: [683,7,668,49,632], + 0x4C: [690,5,559,50,534], + 0x4D: [690,6,1044,79,1010], + 0x4E: [694,5,829,49,710], + 0x4F: [700,18,803,72,726], + 0x50: [679,6,576,55,550], + 0x51: [698,235,828,85,774], + 0x52: [679,8,609,54,582], + 0x53: [702,15,557,45,483], + 0x54: [697,10,492,26,575], + 0x55: [694,9,774,34,746], + 0x56: [698,16,646,23,729], + 0x57: [690,11,986,13,1060], + 0x58: [688,11,666,27,636], + 0x59: [693,11,555,23,615], + 0x5A: [695,12,666,46,640], + 0x5B: [741,125,277,120,279], + 0x5C: [722,192,501,39,463], + 0x5D: [741,125,277,-1,158], + 0x5E: [735,-452,499,0,495], + 0x5F: [-60,100,450,-7,457], + 0x60: [677,-506,201,0,201], + 0x61: [466,12,609,87,596], + 0x62: [684,10,588,27,523], + 0x63: [475,19,486,49,446], + 0x64: [684,19,603,86,597], + 0x65: [478,12,499,69,463], + 0x66: [669,12,419,36,422], + 0x67: [465,233,568,83,494], + 0x68: [681,10,621,27,637], + 0x69: [683,8,360,14,357], + 0x6A: [683,231,331,-1,226], + 0x6B: [686,7,555,27,565], + 0x6C: [686,11,365,41,360], + 0x6D: [471,18,915,29,922], + 0x6E: [471,10,664,5,656], + 0x6F: [465,14,563,56,497], + 0x70: [470,237,589,-12,518], + 0x71: [504,243,605,88,502], + 0x72: [473,3,432,9,415], + 0x73: [466,17,455,52,387], + 0x74: [611,9,416,17,399], + 0x75: [470,10,642,-1,655], + 0x76: [469,11,495,-21,466], + 0x77: [469,8,812,-13,782], + 0x78: [464,12,526,2,512], + 0x79: [468,233,593,-17,491], + 0x7A: [462,27,470,12,479], + 0x7B: [730,178,320,-3,292], + 0x7C: [738,167,213,86,126], + 0x7D: [733,175,320,23,318], + 0x7E: [347,-178,551,22,530], + 0xA0: [0,0,333,0,0], + 0xA7: [701,107,515,56,451], + 0xA8: [642,-542,299,0,299], + 0xAC: [401,-205,773,30,709], + 0xAF: [619,-566,312,0,312], + 0xB1: [586,74,755,46,710], + 0xB4: [677,-506,201,0,201], + 0xB5: [466,199,617,96,635], + 0xB7: [379,-245,277,72,206], + 0xD7: [505,-7,755,133,623], + 0xF7: [537,36,777,56,720], + 0x131: [471,8,333,-2,341], + 0x237: [468,231,331,-1,223], + 0x2C6: [735,-452,499,0,495], + 0x2C7: [735,-452,495,0,495], + 0x2D8: [671,-513,282,0,282], + 0x2D9: [642,-542,100,0,100], + 0x2DA: [692,-492,200,0,200], + 0x2DC: [640,-540,321,0,322], + 0x300: [677,-506,0,-385,-184], + 0x301: [677,-506,0,-315,-114], + 0x302: [735,-452,499,0,495], + 0x303: [640,-540,0,-409,-88], + 0x304: [619,-566,0,-405,-93], + 0x306: [671,-513,0,-390,-108], + 0x307: [642,-542,0,-300,-200], + 0x308: [642,-542,0,-399,-100], + 0x30A: [692,-492,0,-349,-149], + 0x30B: [683,-502,0,-346,-3], + 0x30C: [735,-452,499,0,495], + 0x338: [720,192,0,39,463], + 0x391: [680,10,770,25,743], + 0x392: [686,1,655,50,574], + 0x393: [697,7,428,74,507], + 0x394: [696,4,713,30,689], + 0x395: [688,0,604,46,559], + 0x396: [694,12,666,46,640], + 0x397: [690,2,783,52,744], + 0x398: [701,12,757,38,714], + 0x399: [683,1,394,78,348], + 0x39A: [683,7,668,49,632], + 0x39B: [698,7,770,28,771], + 0x39C: [690,6,1044,79,1010], + 0x39D: [694,5,829,49,710], + 0x39E: [695,6,596,27,569], + 0x39F: [701,12,803,66,742], + 0x3A0: [690,14,722,26,693], + 0x3A1: [679,6,576,55,550], + 0x3A3: [695,-2,646,49,600], + 0x3A4: [697,10,492,26,575], + 0x3A5: [697,11,716,27,682], + 0x3A6: [721,33,833,73,748], + 0x3A7: [688,11,666,27,636], + 0x3A8: [694,1,703,-28,698], + 0x3A9: [689,2,875,25,844], + 0x3B1: [468,20,658,84,673], + 0x3B2: [698,202,662,113,569], + 0x3B3: [470,198,608,-25,582], + 0x3B4: [694,9,501,56,438], + 0x3B5: [471,15,486,78,430], + 0x3B6: [695,136,512,84,491], + 0x3B7: [466,199,560,-32,479], + 0x3B8: [695,11,554,59,486], + 0x3B9: [474,9,334,101,332], + 0x3BA: [472,4,555,112,516], + 0x3BB: [690,11,541,21,510], + 0x3BC: [466,199,617,96,635], + 0x3BD: [471,8,599,15,561], + 0x3BE: [694,137,553,74,545], + 0x3BF: [465,14,563,56,497], + 0x3C0: [488,5,609,21,628], + 0x3C1: [477,189,548,90,499], + 0x3C3: [476,5,605,82,608], + 0x3C4: [484,9,513,15,519], + 0x3C5: [472,12,587,-12,519], + 0x3C6: [467,197,763,91,685], + 0x3C7: [466,197,576,-18,564], + 0x3C8: [695,189,754,-7,684], + 0x3C9: [472,13,851,67,781], + 0x3D1: [698,14,552,-16,522], + 0x3D5: [694,192,727,66,659], + 0x3D6: [541,12,875,74,790], + 0x3F5: [471,11,550,88,490], + 0x2016: [738,167,392,86,306], + 0x2018: [709,-406,214,45,167], + 0x2019: [695,-395,214,44,163], + 0x2026: [119,15,768,77,691], + 0x2032: [782,-422,257,48,211], + 0x2033: [782,-422,490,48,404], + 0x2034: [782,-422,724,48,596], + 0x2035: [782,-422,241,30,193], + 0x2044: [720,192,501,39,463], + 0x2057: [782,-422,958,48,789], + 0x20D7: [750,-479,287,0,418], + 0x210F: [681,10,621,20,637], + 0x2111: [686,27,554,28,533], + 0x2113: [704,9,388,30,355], + 0x2118: [472,196,604,60,566], + 0x211C: [686,27,828,27,826], + 0x2127: [689,2,875,25,844], + 0x2135: [689,-1,774,78,689], + 0x2190: [500,0,1000,57,945], + 0x2191: [693,194,500,28,472], + 0x2192: [500,0,1000,56,944], + 0x2193: [674,193,500,28,472], + 0x2194: [500,0,1000,57,944], + 0x2195: [771,271,500,28,472], + 0x2196: [767,193,1000,-17,943], + 0x2197: [767,193,1000,58,1018], + 0x2198: [694,267,1000,57,1018], + 0x2199: [694,267,1000,-17,944], + 0x21A6: [500,0,1000,56,944], + 0x21A9: [554,0,1000,56,944], + 0x21AA: [554,0,1000,56,944], + 0x21BC: [500,-230,1000,56,945], + 0x21BD: [270,0,1000,56,945], + 0x21BE: [693,194,298,28,270], + 0x21BF: [693,194,298,28,270], + 0x21C0: [500,-230,1000,56,945], + 0x21C1: [270,0,1000,56,945], + 0x21C2: [693,194,298,28,270], + 0x21C3: [693,194,298,28,270], + 0x21CB: [599,98,999,55,944], + 0x21CC: [599,98,999,55,944], + 0x21D0: [598,98,1000,55,922], + 0x21D1: [694,174,667,12,652], + 0x21D2: [598,98,1000,76,943], + 0x21D3: [674,194,667,12,652], + 0x21D4: [598,98,1000,33,965], + 0x21D5: [772,272,667,12,652], + 0x2200: [681,9,555,1,552], + 0x2202: [699,7,560,79,485], + 0x2203: [694,0,555,75,498], + 0x2204: [800,112,555,65,498], + 0x2205: [720,192,742,55,687], + 0x2207: [696,4,713,30,689], + 0x2208: [541,41,666,83,561], + 0x2209: [720,192,666,83,561], + 0x220B: [541,41,666,103,581], + 0x2212: [276,-236,756,46,710], + 0x2213: [586,74,755,46,710], + 0x2215: [720,192,0,39,463], + 0x2216: [722,192,501,39,463], + 0x2217: [514,-26,482,30,452], + 0x2218: [444,-56,500,55,444], + 0x2219: [444,-56,500,55,444], + 0x221A: [988,1,833,70,849], + 0x221D: [442,11,815,56,760], + 0x221E: [442,11,1000,56,945], + 0x2223: [698,97,213,86,126], + 0x2225: [738,167,392,86,306], + 0x2227: [714,4,775,11,768], + 0x2228: [688,12,775,6,756], + 0x2229: [598,2,666,55,609], + 0x222A: [578,22,666,55,609], + 0x222B: [950,161,556,49,507], + 0x2234: [455,12,569,50,517], + 0x2235: [455,12,569,50,517], + 0x223C: [347,-178,551,22,530], + 0x223D: [347,-178,551,22,530], + 0x2240: [422,77,243,54,189], + 0x2241: [454,-32,551,22,530], + 0x2242: [397,-103,597,54,563], + 0x2243: [396,-101,597,54,563], + 0x2245: [597,-102,597,54,563], + 0x2246: [597,8,597,54,563], + 0x2248: [427,-108,551,22,530], + 0x224A: [546,-101,597,54,563], + 0x2260: [720,192,756,54,722], + 0x2261: [465,-33,830,81,749], + 0x2264: [648,150,807,79,700], + 0x2265: [647,149,807,102,724], + 0x2266: [800,0,756,54,722], + 0x2267: [800,0,756,54,722], + 0x2268: [800,93,756,54,722], + 0x2269: [800,93,756,54,722], + 0x226E: [720,192,756,59,680], + 0x226F: [720,192,756,76,698], + 0x2270: [720,192,807,79,700], + 0x2271: [720,192,807,102,724], + 0x2272: [663,52,807,79,716], + 0x2273: [663,52,807,88,725], + 0x2276: [766,119,807,71,716], + 0x2277: [764,120,807,72,716], + 0x2282: [541,41,777,83,673], + 0x2283: [541,41,777,103,693], + 0x2286: [636,143,777,83,673], + 0x2287: [636,143,777,103,693], + 0x2288: [720,192,777,83,673], + 0x2289: [720,192,777,103,693], + 0x228A: [636,222,777,83,673], + 0x228B: [636,222,777,103,693], + 0x228E: [578,22,665,55,609], + 0x2291: [636,143,1000,94,693], + 0x2292: [636,143,1000,83,681], + 0x2295: [583,83,777,55,722], + 0x2296: [583,83,777,55,722], + 0x2297: [583,83,777,55,722], + 0x2298: [583,83,777,55,722], + 0x2299: [583,83,777,55,722], + 0x22A2: [694,0,673,55,618], + 0x22A3: [694,0,673,55,618], + 0x22A4: [684,0,875,55,820], + 0x22A5: [684,0,875,55,820], + 0x22C4: [496,-4,500,3,495], + 0x22C5: [379,-245,277,72,206], + 0x22EF: [319,-185,768,77,691], + 0x22F1: [533,-60,627,76,550], + 0x2308: [980,0,511,174,401], + 0x2309: [980,0,511,41,269], + 0x230A: [980,0,511,174,401], + 0x230B: [980,0,511,41,269], + 0x23DC: [770,-582,1037,56,981], + 0x23DD: [-32,222,1037,56,981], + 0x23DE: [824,-528,1020,56,964], + 0x23DF: [26,268,1020,56,964], + 0x27E8: [737,237,388,107,330], + 0x27E9: [737,237,388,57,280], + 0x27F5: [500,0,1610,55,1553], + 0x27F6: [500,0,1610,55,1553], + 0x27F7: [500,0,1700,57,1644], + 0x27F8: [598,98,1700,55,1622], + 0x27F9: [598,98,1700,55,1622], + 0x27FA: [598,98,1700,33,1665], + 0x27FC: [500,0,1690,56,1634] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Main"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Marks/Regular/Main.js new file mode 100644 index 0000000..fbc7dc7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Marks/Regular/Main.js @@ -0,0 +1,51 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'NeoEulerMathJax_Marks', + testString: '\u00A0\u0305\u030F\u0311\u0323\u0324\u0325\u032E\u032F\u0330\u0331\u0332\u2036\u2037\u20D6', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x305: [615,-570,0,-445,-53], + 0x30F: [683,-502,0,-497,-154], + 0x311: [671,-513,0,-390,-108], + 0x323: [-93,193,0,-225,-125], + 0x324: [-93,193,0,-399,-100], + 0x325: [-43,243,0,-349,-149], + 0x32E: [-78,207,0,-388,-83], + 0x32F: [-78,207,0,-388,-83], + 0x330: [-95,196,0,-389,-68], + 0x331: [-116,169,0,-405,-93], + 0x332: [-120,165,0,-445,-53], + 0x2036: [782,-422,433,30,386], + 0x2037: [782,-422,626,30,578], + 0x20D6: [750,-479,287,-131,287], + 0x20DB: [642,-542,0,-599,-100], + 0x20DC: [642,-542,0,-799,-100], + 0x20DD: [716,216,1000,55,944], + 0x20E1: [750,-479,449,0,449], + 0x20EE: [50,221,287,-131,287], + 0x20EF: [50,221,287,0,418] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Marks"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Marks/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..994d818 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/NonUnicode/Regular/Main.js @@ -0,0 +1,1114 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'NeoEulerMathJax_NonUnicode', + testString: '\u00A0\uE000\uE001\uE002\uE003\uE004\uE005\uE006\uE007\uE008\uE009\uE00A\uE00B\uE00C\uE00D', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0xE000: [631,28,587,64,512], + 0xE001: [691,242,393,37,408], + 0xE002: [688,242,388,37,387], + 0xE003: [474,212,592,67,531], + 0xE004: [684,27,393,29,387], + 0xE005: [586,33,397,47,411], + 0xE006: [681,221,980,25,875], + 0xE007: [678,148,710,-5,624], + 0xE008: [502,11,592,41,533], + 0xE009: [489,0,592,54,548], + 0xE00A: [491,0,592,44,564], + 0xE00B: [488,193,592,36,523], + 0xE00C: [495,198,592,13,565], + 0xE00D: [481,191,592,18,518], + 0xE00E: [704,12,592,48,548], + 0xE00F: [479,198,592,54,591], + 0xE010: [715,5,592,45,542], + 0xE011: [488,195,592,29,549], + 0xE012: [704,10,378,54,254], + 0xE013: [684,34,497,73,430], + 0xE014: [616,30,498,35,433], + 0xE015: [681,257,333,30,339], + 0xE016: [681,242,326,30,324], + 0xE017: [470,214,503,51,444], + 0xE018: [687,20,333,25,315], + 0xE019: [578,21,334,29,348], + 0xE01A: [474,26,500,8,514], + 0xE01B: [493,13,367,10,365], + 0xE01C: [493,246,367,-18,251], + 0xE01D: [489,202,674,49,633], + 0xE01E: [713,9,542,74,383], + 0xE01F: [999,200,662,127,533], + 0xE020: [999,200,662,128,533], + 0xE021: [1599,200,754,137,616], + 0xE022: [1599,200,754,137,616], + 0xE023: [2199,200,846,151,694], + 0xE024: [2199,200,846,151,694], + 0xE025: [2799,200,908,165,742], + 0xE026: [2799,200,908,165,742], + 0xE027: [500,-226,1123,69,1053], + 0xE028: [275,-1,1123,69,1053], + 0xE029: [500,-226,1123,69,1053], + 0xE02A: [275,-1,1123,69,1053], + 0xE02B: [500,-1,1123,69,1053], + 0xE02C: [500,-1,1123,69,1053], + 0xE02D: [694,194,569,39,530], + 0xE02E: [694,194,569,39,530], + 0xE02F: [500,-1,1123,69,1053], + 0xE030: [773,194,1123,69,1101], + 0xE031: [694,273,1123,69,1101], + 0xE032: [612,112,1123,69,1026], + 0xE033: [612,112,1123,94,1051], + 0xE034: [694,170,754,19,732], + 0xE035: [670,194,754,19,732], + 0xE036: [612,112,1123,49,1071], + 0xE037: [773,194,1123,21,1053], + 0xE038: [694,273,1123,21,1053], + 0xE039: [441,10,1123,69,1053], + 0xE03A: [911,0,1000,448,804], + 0xE03B: [911,200,630,59,570], + 0xE03C: [2022,200,631,21,623], + 0xE03D: [800,200,1185,69,1084], + 0xE03E: [1200,200,1615,69,1514], + 0xE03F: [800,200,1185,85,1099], + 0xE040: [1200,200,1578,69,1508], + 0xE041: [911,200,630,59,570], + 0xE042: [2022,200,631,49,581], + 0xE043: [800,200,1185,85,1099], + 0xE044: [1200,200,1578,69,1508], + 0xE045: [770,270,569,39,528], + 0xE046: [770,270,754,19,732], + 0xE047: [103,252,466,-20,470], + 0xE048: [103,252,466,-4,486], + 0xE049: [356,0,466,-20,470], + 0xE04A: [356,0,466,-4,486], + 0xE04B: [631,28,662,97,555], + 0xE04C: [691,242,464,70,448], + 0xE04D: [688,242,459,70,427], + 0xE04E: [474,212,667,100,574], + 0xE04F: [684,27,464,62,427], + 0xE050: [692,-448,373,75,305], + 0xE051: [586,74,872,72,795], + 0xE052: [138,210,373,117,277], + 0xE053: [276,-236,874,72,796], + 0xE054: [119,15,372,127,273], + 0xE055: [720,192,607,76,538], + 0xE056: [713,9,616,107,423], + 0xE057: [1007,0,938,86,970], + 0xE058: [455,12,309,101,226], + 0xE059: [457,190,309,99,241], + 0xE05A: [369,-132,873,80,808], + 0xE05B: [693,11,460,87,428], + 0xE05C: [688,31,927,62,876], + 0xE05D: [685,31,1127,89,1014], + 0xE05E: [677,32,801,104,776], + 0xE05F: [685,29,1064,63,946], + 0xE060: [687,29,861,106,780], + 0xE061: [684,147,799,49,781], + 0xE062: [692,27,1009,107,893], + 0xE063: [684,127,931,32,800], + 0xE064: [683,25,731,64,667], + 0xE065: [681,142,729,24,659], + 0xE066: [682,26,868,52,861], + 0xE067: [684,28,865,63,811], + 0xE068: [686,33,1327,59,1289], + 0xE069: [681,33,1065,59,1019], + 0xE06A: [726,29,1059,43,931], + 0xE06B: [685,223,1060,51,995], + 0xE06C: [726,82,1059,43,967], + 0xE06D: [689,29,1060,51,1029], + 0xE06E: [685,31,1061,116,956], + 0xE06F: [691,30,868,63,846], + 0xE070: [689,39,931,48,920], + 0xE071: [687,29,1064,58,1017], + 0xE072: [682,30,1323,64,1296], + 0xE073: [682,35,929,65,884], + 0xE074: [689,214,1066,65,929], + 0xE075: [718,137,804,49,678], + 0xE076: [741,125,367,169,342], + 0xE077: [741,125,378,48,221], + 0xE078: [735,-452,605,34,573], + 0xE079: [472,32,678,113,631], + 0xE07A: [691,32,664,120,546], + 0xE07B: [473,26,536,121,464], + 0xE07C: [632,29,663,31,553], + 0xE07D: [471,28,544,114,470], + 0xE07E: [681,242,458,70,427], + 0xE07F: [473,208,669,48,584], + 0xE080: [687,203,691,122,549], + 0xE081: [686,26,401,34,366], + 0xE082: [683,207,401,13,275], + 0xE083: [683,25,537,66,473], + 0xE084: [682,24,406,134,353], + 0xE085: [476,31,1003,48,950], + 0xE086: [474,28,730,35,652], + 0xE087: [482,34,685,141,558], + 0xE088: [558,208,679,30,561], + 0xE089: [485,212,670,121,557], + 0xE08A: [473,26,532,44,494], + 0xE08B: [480,35,596,8,524], + 0xE08C: [654,27,464,80,447], + 0xE08D: [473,35,663,41,648], + 0xE08E: [546,28,680,89,549], + 0xE08F: [549,33,999,88,863], + 0xE090: [471,188,531,41,490], + 0xE091: [559,222,664,93,558], + 0xE092: [472,215,534,24,417], + 0xE093: [695,-432,308,57,260], + 0xE094: [704,10,482,101,319], + 0xE095: [684,34,603,113,503], + 0xE096: [616,30,605,73,507], + 0xE097: [681,257,430,72,409], + 0xE098: [681,242,423,73,393], + 0xE099: [470,214,610,89,517], + 0xE09A: [687,20,431,68,384], + 0xE09B: [578,21,431,71,418], + 0xE09C: [474,26,605,41,593], + 0xE09D: [493,13,607,78,531], + 0xE09E: [469,1,607,83,535], + 0xE09F: [474,-1,605,96,560], + 0xE0A0: [474,182,609,76,504], + 0xE0A1: [476,192,607,45,559], + 0xE0A2: [458,184,608,85,515], + 0xE0A3: [700,13,606,82,546], + 0xE0A4: [468,181,606,72,575], + 0xE0A5: [706,10,607,77,536], + 0xE0A6: [470,182,607,63,544], + 0xE0A7: [697,27,832,47,796], + 0xE0A8: [691,27,1030,71,905], + 0xE0A9: [686,24,720,90,694], + 0xE0AA: [690,27,955,51,834], + 0xE0AB: [686,24,772,117,722], + 0xE0AC: [686,155,721,40,705], + 0xE0AD: [692,25,904,93,796], + 0xE0AE: [667,133,840,18,730], + 0xE0AF: [686,27,662,61,612], + 0xE0B0: [686,139,663,14,602], + 0xE0B1: [681,27,780,42,776], + 0xE0B2: [686,27,779,60,729], + 0xE0B3: [692,27,1178,37,1151], + 0xE0B4: [686,29,952,49,922], + 0xE0B5: [729,27,952,34,835], + 0xE0B6: [692,219,944,26,896], + 0xE0B7: [729,69,950,32,874], + 0xE0B8: [686,27,948,47,918], + 0xE0B9: [689,27,949,80,844], + 0xE0BA: [703,27,781,51,761], + 0xE0BB: [697,27,758,-1,753], + 0xE0BC: [686,27,951,49,918], + 0xE0BD: [686,28,1175,30,1158], + 0xE0BE: [689,27,834,52,796], + 0xE0BF: [686,219,958,50,829], + 0xE0C0: [729,139,715,44,612], + 0xE0C1: [471,36,603,101,572], + 0xE0C2: [686,31,619,126,516], + 0xE0C3: [466,29,488,115,428], + 0xE0C4: [612,34,606,50,505], + 0xE0C5: [467,31,500,112,433], + 0xE0C6: [679,238,426,73,393], + 0xE0C7: [470,209,611,52,531], + 0xE0C8: [689,198,628,116,507], + 0xE0C9: [675,21,375,59,335], + 0xE0CA: [673,202,380,38,261], + 0xE0CB: [686,26,490,65,434], + 0xE0CC: [686,20,371,145,341], + 0xE0CD: [475,26,884,29,847], + 0xE0CE: [475,23,633,51,599], + 0xE0CF: [481,28,594,106,485], + 0xE0D0: [538,214,609,49,505], + 0xE0D1: [480,224,595,99,490], + 0xE0D2: [474,21,489,54,468], + 0xE0D3: [479,30,548,8,483], + 0xE0D4: [641,21,430,67,420], + 0xE0D5: [474,26,624,41,593], + 0xE0D6: [533,28,618,90,512], + 0xE0D7: [533,28,893,71,778], + 0xE0D8: [473,188,489,50,443], + 0xE0D9: [524,219,605,84,511], + 0xE0DA: [471,215,495,35,384], + 0xE0DB: [692,9,648,91,663], + 0xE0DC: [699,7,916,57,851], + 0xE0DD: [699,14,1119,116,982], + 0xE0DE: [694,13,987,52,921], + 0xE0DF: [700,14,774,60,711], + 0xE0E0: [690,14,983,64,918], + 0xE0E1: [699,1,840,63,750], + 0xE0E2: [707,6,929,64,864], + 0xE0E3: [685,0,1124,117,996], + 0xE0E4: [703,1,915,-1,871], + 0xE0E5: [700,5,1109,60,1044], + 0xE0E6: [476,18,842,130,819], + 0xE0E7: [676,194,827,149,702], + 0xE0E8: [475,201,767,29,713], + 0xE0E9: [672,11,700,120,582], + 0xE0EA: [471,7,703,124,620], + 0xE0EB: [674,129,634,118,589], + 0xE0EC: [470,197,773,44,621], + 0xE0ED: [677,14,770,124,646], + 0xE0EE: [469,11,449,156,411], + 0xE0EF: [471,12,699,153,645], + 0xE0F0: [679,8,713,64,648], + 0xE0F1: [474,196,768,136,731], + 0xE0F2: [473,6,759,60,689], + 0xE0F3: [689,126,703,112,660], + 0xE0F4: [523,4,787,52,778], + 0xE0F5: [474,196,728,145,649], + 0xE0F6: [475,11,827,126,774], + 0xE0F7: [497,7,696,66,668], + 0xE0F8: [472,2,740,35,653], + 0xE0F9: [672,196,1015,126,893], + 0xE0FA: [470,197,703,22,684], + 0xE0FB: [672,196,958,29,841], + 0xE0FC: [499,9,1123,117,999], + 0xE0FD: [472,16,643,146,575], + 0xE0FE: [676,8,760,32,699], + 0xE0FF: [547,11,1079,124,975], + 0xE100: [472,201,953,125,835], + 0xE101: [716,15,663,76,591], + 0xE102: [715,9,663,108,421], + 0xE103: [715,-5,663,48,609], + 0xE104: [708,8,663,59,573], + 0xE105: [708,12,663,34,597], + 0xE106: [694,12,663,52,572], + 0xE107: [704,12,663,80,599], + 0xE108: [696,15,663,86,628], + 0xE109: [720,5,663,78,582], + 0xE10A: [707,10,663,84,592], + 0xE10B: [531,36,914,97,800], + 0xE10C: [531,36,914,117,820], + 0xE10D: [696,18,764,127,640], + 0xE10E: [687,14,967,35,927], + 0xE10F: [703,2,855,76,731], + 0xE110: [711,18,924,126,851], + 0xE111: [698,1,1043,80,935], + 0xE112: [709,8,761,44,691], + 0xE113: [706,12,636,45,570], + 0xE114: [709,14,985,130,859], + 0xE115: [711,7,997,76,930], + 0xE116: [696,-1,566,84,454], + 0xE117: [705,192,562,81,481], + 0xE118: [702,12,878,82,826], + 0xE119: [702,5,739,78,673], + 0xE11A: [701,16,1325,127,1258], + 0xE11B: [713,3,1068,89,895], + 0xE11C: [720,15,1024,110,928], + 0xE11D: [699,6,787,85,705], + 0xE11E: [714,197,1064,126,942], + 0xE11F: [701,10,842,84,756], + 0xE120: [723,14,776,120,676], + 0xE121: [714,11,655,56,717], + 0xE122: [717,10,999,63,945], + 0xE123: [712,5,876,61,912], + 0xE124: [701,16,1290,47,1316], + 0xE125: [705,13,867,64,800], + 0xE126: [707,4,699,63,775], + 0xE127: [709,11,862,64,798], + 0xE128: [704,9,498,65,432], + 0xE129: [498,15,787,139,758], + 0xE12A: [705,14,797,64,674], + 0xE12B: [496,10,662,130,611], + 0xE12C: [699,11,797,124,760], + 0xE12D: [495,16,732,127,640], + 0xE12E: [686,10,532,57,528], + 0xE12F: [495,242,781,125,626], + 0xE130: [696,8,787,65,755], + 0xE131: [687,13,464,43,430], + 0xE132: [687,246,459,12,314], + 0xE133: [698,6,729,65,700], + 0xE134: [697,7,465,63,433], + 0xE135: [495,9,1140,37,1105], + 0xE136: [497,10,794,32,763], + 0xE137: [486,11,796,118,675], + 0xE138: [488,247,785,52,678], + 0xE139: [538,247,795,143,639], + 0xE13A: [489,6,604,47,554], + 0xE13B: [494,15,606,70,495], + 0xE13C: [624,11,540,56,479], + 0xE13D: [500,8,794,34,759], + 0xE13E: [490,12,659,4,597], + 0xE13F: [496,13,1065,23,1002], + 0xE140: [491,12,663,7,611], + 0xE141: [491,232,794,44,634], + 0xE142: [492,14,656,51,603], + 0xE143: [493,13,464,43,430], + 0xE144: [493,246,464,12,306], + 0xE145: [489,202,798,85,722], + 0xE146: [697,7,543,115,606], + 0xE147: [696,4,865,65,810], + 0xE148: [701,12,915,64,851], + 0xE149: [698,7,930,63,902], + 0xE14A: [695,6,733,62,674], + 0xE14B: [690,14,875,60,814], + 0xE14C: [695,-2,789,86,709], + 0xE14D: [697,11,869,54,805], + 0xE14E: [686,-2,1001,113,876], + 0xE14F: [694,1,854,-1,820], + 0xE150: [689,2,1048,59,985], + 0xE151: [468,20,803,126,791], + 0xE152: [698,202,808,159,674], + 0xE153: [470,198,747,3,689], + 0xE154: [694,9,626,94,526], + 0xE155: [471,11,681,130,585], + 0xE156: [695,136,638,126,586], + 0xE157: [466,199,692,-5,572], + 0xE158: [695,11,686,98,580], + 0xE159: [474,9,437,145,406], + 0xE15A: [472,4,687,158,614], + 0xE15B: [690,11,671,55,608], + 0xE15C: [466,199,757,139,749], + 0xE15D: [471,8,736,48,665], + 0xE15E: [694,137,684,115,647], + 0xE15F: [488,5,748,55,741], + 0xE160: [477,189,679,133,595], + 0xE161: [476,5,743,124,718], + 0xE162: [484,9,639,48,617], + 0xE163: [472,12,723,17,617], + 0xE164: [467,197,922,134,805], + 0xE165: [466,197,710,11,668], + 0xE166: [695,189,974,24,804], + 0xE167: [472,13,1021,107,914], + 0xE168: [471,15,609,119,517], + 0xE169: [698,14,683,13,621], + 0xE16A: [541,12,1048,115,924], + 0xE16B: [694,192,881,106,776], + 0xE16C: [704,14,623,69,551], + 0xE16D: [712,5,623,135,386], + 0xE16E: [708,-2,623,45,564], + 0xE16F: [702,17,623,51,535], + 0xE170: [704,5,623,30,565], + 0xE171: [687,11,623,45,537], + 0xE172: [700,13,623,82,563], + 0xE173: [694,8,623,86,589], + 0xE174: [706,10,623,76,552], + 0xE175: [702,9,623,76,553], + 0xE176: [699,7,692,120,579], + 0xE177: [680,10,930,59,871], + 0xE178: [686,1,800,88,680], + 0xE179: [699,15,866,129,790], + 0xE17A: [686,-2,995,89,865], + 0xE17B: [688,0,742,83,663], + 0xE17C: [690,2,623,75,559], + 0xE17D: [699,17,924,133,795], + 0xE17E: [690,2,944,89,872], + 0xE17F: [683,1,505,119,424], + 0xE180: [690,234,514,88,427], + 0xE181: [683,7,814,86,745], + 0xE182: [690,5,691,88,634], + 0xE183: [690,6,1239,120,1172], + 0xE184: [694,5,996,86,833], + 0xE185: [700,18,967,112,851], + 0xE186: [679,6,710,93,652], + 0xE187: [698,235,995,127,905], + 0xE188: [679,8,748,92,689], + 0xE189: [702,15,689,82,577], + 0xE18A: [697,10,615,60,680], + 0xE18B: [694,9,934,70,874], + 0xE18C: [698,16,789,57,855], + 0xE18D: [690,11,1174,46,1229], + 0xE18E: [688,11,812,62,750], + 0xE18F: [693,11,687,57,726], + 0xE190: [695,12,812,83,754], + 0xE191: [466,12,748,129,704], + 0xE192: [684,10,724,62,622], + 0xE193: [475,19,609,86,535], + 0xE194: [684,19,741,128,706], + 0xE195: [478,12,623,109,554], + 0xE196: [669,12,533,72,507], + 0xE197: [465,233,701,125,590], + 0xE198: [681,10,761,62,751], + 0xE199: [683,8,466,47,434], + 0xE19A: [683,231,434,30,286], + 0xE19B: [686,7,687,62,669], + 0xE19C: [686,11,472,77,438], + 0xE19D: [471,18,1093,64,1073], + 0xE19E: [471,10,810,37,772], + 0xE19F: [465,14,696,94,593], + 0xE1A0: [470,237,725,17,616], + 0xE1A1: [504,243,743,131,598], + 0xE1A2: [473,3,548,41,500], + 0xE1A3: [466,17,574,90,468], + 0xE1A4: [611,9,530,51,482], + 0xE1A5: [470,10,785,30,771], + 0xE1A6: [469,11,619,7,558], + 0xE1A7: [469,8,977,16,915], + 0xE1A8: [464,12,654,33,610], + 0xE1A9: [468,233,730,12,586], + 0xE1AA: [462,27,591,44,572], + 0xE1AB: [471,8,436,29,416], + 0xE1AC: [468,231,434,30,283], + 0xE1AD: [472,196,742,99,671], + 0xE1AE: [347,-178,684,56,630], + 0xE1AF: [409,-206,834,59,741], + 0xE1B0: [689,-1,936,119,810], + 0xE1B1: [711,17,1013,43,952], + 0xE1B2: [727,1,988,73,882], + 0xE1B3: [709,15,791,95,721], + 0xE1B4: [727,1,1067,62,975], + 0xE1B5: [708,12,799,97,704], + 0xE1B6: [731,14,871,65,890], + 0xE1B7: [705,138,794,88,675], + 0xE1B8: [699,12,1132,63,1091], + 0xE1B9: [703,18,666,62,573], + 0xE1BA: [701,137,674,65,610], + 0xE1BB: [709,9,1060,61,998], + 0xE1BC: [710,12,928,60,825], + 0xE1BD: [710,17,1252,61,1189], + 0xE1BE: [712,13,999,59,983], + 0xE1BF: [707,20,918,80,822], + 0xE1C0: [726,13,862,63,794], + 0xE1C1: [705,42,882,77,808], + 0xE1C2: [732,12,937,63,933], + 0xE1C3: [715,18,703,39,625], + 0xE1C4: [697,11,763,60,818], + 0xE1C5: [709,13,918,42,885], + 0xE1C6: [702,16,867,61,796], + 0xE1C7: [710,8,1261,61,1189], + 0xE1C8: [712,11,931,61,860], + 0xE1C9: [709,135,791,28,673], + 0xE1CA: [705,14,857,93,796], + 0xE1CB: [714,4,937,43,899], + 0xE1CC: [688,12,937,38,885], + 0xE1CD: [730,178,423,28,361], + 0xE1CE: [733,175,423,57,390], + 0xE1CF: [738,167,302,128,173], + 0xE1D0: [722,192,628,75,554], + 0xE1D1: [701,107,643,94,541], + 0xE1D2: [694,15,932,22,863], + 0xE1D3: [712,1,921,78,803], + 0xE1D4: [697,15,742,110,665], + 0xE1D5: [716,-4,999,90,894], + 0xE1D6: [702,12,749,109,628], + 0xE1D7: [699,15,795,74,833], + 0xE1D8: [697,130,744,112,623], + 0xE1D9: [690,8,1060,68,1017], + 0xE1DA: [685,14,547,62,497], + 0xE1DB: [692,129,633,63,560], + 0xE1DC: [690,12,993,64,928], + 0xE1DD: [685,7,869,60,724], + 0xE1DE: [699,13,1171,62,1117], + 0xE1DF: [706,7,936,63,937], + 0xE1E0: [686,18,860,111,746], + 0xE1E1: [710,11,807,81,752], + 0xE1E2: [694,24,810,112,727], + 0xE1E3: [712,6,877,68,834], + 0xE1E4: [702,12,674,63,575], + 0xE1E5: [693,6,724,60,777], + 0xE1E6: [699,16,868,59,812], + 0xE1E7: [709,9,812,62,752], + 0xE1E8: [702,5,1179,65,1119], + 0xE1E9: [706,9,871,88,814], + 0xE1EA: [702,136,734,59,598], + 0xE1EB: [696,11,803,97,745], + 0xE1EC: [502,11,667,74,576], + 0xE1ED: [489,0,667,87,591], + 0xE1EE: [491,0,667,77,607], + 0xE1EF: [488,193,667,69,565], + 0xE1F0: [495,198,667,45,608], + 0xE1F1: [481,191,667,50,560], + 0xE1F2: [704,12,667,81,591], + 0xE1F3: [479,198,667,87,635], + 0xE1F4: [715,5,667,78,585], + 0xE1F5: [488,195,667,62,592], + 0xE1F6: [465,-33,999,122,877], + 0xE1F7: [648,152,973,121,824], + 0xE1F8: [648,153,973,146,850], + 0xE1F9: [631,28,855,175,669], + 0xE1FA: [691,242,642,146,554], + 0xE1FB: [688,242,636,146,531], + 0xE1FC: [474,212,861,179,689], + 0xE1FD: [684,27,642,137,531], + 0xE1FE: [586,33,646,157,557], + 0xE1FF: [681,221,1288,132,1068], + 0xE200: [678,148,991,100,791], + 0xE201: [709,-406,450,151,297], + 0xE202: [695,-395,450,150,293], + 0xE203: [722,182,860,119,740], + 0xE204: [713,9,806,186,526], + 0xE205: [1008,0,1127,135,1137], + 0xE206: [455,12,453,158,294], + 0xE207: [457,190,453,155,312], + 0xE208: [369,-132,1101,162,963], + 0xE209: [693,11,628,151,527], + 0xE20A: [688,31,1141,137,1015], + 0xE20B: [685,31,1357,167,1164], + 0xE20C: [677,32,1005,183,907], + 0xE20D: [685,29,1289,138,1091], + 0xE20E: [687,29,1070,185,911], + 0xE20F: [684,147,1003,124,912], + 0xE210: [692,27,1229,186,1033], + 0xE211: [684,127,1145,105,933], + 0xE212: [683,25,929,139,790], + 0xE213: [681,142,927,96,782], + 0xE214: [682,26,1077,127,999], + 0xE215: [684,28,1074,138,945], + 0xE216: [686,33,1572,134,1460], + 0xE217: [681,33,1290,134,1170], + 0xE218: [726,29,1283,117,1074], + 0xE219: [685,223,1284,126,1143], + 0xE21A: [726,82,1283,117,1114], + 0xE21B: [689,29,1284,126,1180], + 0xE21C: [685,31,1285,195,1102], + 0xE21D: [691,30,1077,138,983], + 0xE21E: [689,39,1145,123,1063], + 0xE21F: [687,29,1289,132,1168], + 0xE220: [682,30,1568,139,1469], + 0xE221: [682,35,1143,140,1024], + 0xE222: [689,214,1291,140,1072], + 0xE223: [718,137,1008,124,801], + 0xE224: [741,130,491,145,354], + 0xE225: [739,132,491,120,334], + 0xE226: [735,-452,857,105,747], + 0xE227: [472,32,872,192,751], + 0xE228: [691,32,857,200,659], + 0xE229: [473,26,719,201,571], + 0xE22A: [632,29,856,104,667], + 0xE22B: [471,28,728,193,577], + 0xE22C: [681,242,635,146,531], + 0xE22D: [473,208,863,123,700], + 0xE22E: [687,203,886,202,662], + 0xE22F: [686,26,574,107,465], + 0xE230: [683,207,574,84,367], + 0xE231: [683,25,720,141,580], + 0xE232: [682,24,579,215,451], + 0xE233: [476,31,1223,123,1095], + 0xE234: [474,28,928,108,774], + 0xE235: [482,34,879,222,672], + 0xE236: [558,208,873,103,676], + 0xE237: [485,212,864,201,672], + 0xE238: [473,26,714,118,603], + 0xE239: [480,35,784,79,635], + 0xE23A: [654,27,642,157,553], + 0xE23B: [473,35,856,115,769], + 0xE23C: [546,28,874,167,663], + 0xE23D: [549,33,1218,166,1002], + 0xE23E: [471,188,713,114,599], + 0xE23F: [559,222,857,171,672], + 0xE240: [472,215,717,96,520], + 0xE241: [695,-432,488,116,359], + 0xE242: [704,10,647,162,402], + 0xE243: [684,34,790,185,614], + 0xE244: [616,30,791,139,616], + 0xE245: [681,257,593,133,504], + 0xE246: [681,242,585,133,486], + 0xE247: [470,214,797,158,629], + 0xE248: [687,20,593,127,475], + 0xE249: [578,21,594,132,515], + 0xE24A: [474,26,794,107,714], + 0xE24B: [493,13,795,146,644], + 0xE24C: [469,1,795,152,649], + 0xE24D: [474,-1,795,168,679], + 0xE24E: [474,182,795,143,613], + 0xE24F: [476,192,795,109,675], + 0xE250: [458,184,795,153,626], + 0xE251: [700,13,795,151,662], + 0xE252: [468,181,795,141,695], + 0xE253: [706,10,795,145,650], + 0xE254: [470,182,795,129,659], + 0xE255: [697,27,1054,123,948], + 0xE256: [691,27,1278,156,1075], + 0xE257: [686,24,928,168,833], + 0xE258: [690,27,1191,129,992], + 0xE259: [686,24,988,200,866], + 0xE25A: [686,155,927,110,843], + 0xE25B: [692,25,1136,176,950], + 0xE25C: [667,133,1058,87,871], + 0xE25D: [686,27,858,131,737], + 0xE25E: [686,139,856,75,723], + 0xE25F: [681,27,995,116,925], + 0xE260: [686,27,993,135,871], + 0xE261: [692,27,1452,129,1356], + 0xE262: [686,29,1192,132,1093], + 0xE263: [729,27,1187,110,992], + 0xE264: [692,219,1181,104,1062], + 0xE265: [729,69,1187,110,1037], + 0xE266: [686,27,1187,129,1088], + 0xE267: [689,27,1187,164,1004], + 0xE268: [703,27,996,126,908], + 0xE269: [697,27,968,66,896], + 0xE26A: [686,27,1191,132,1088], + 0xE26B: [686,28,1449,122,1363], + 0xE26C: [689,27,1056,129,948], + 0xE26D: [686,219,1194,129,986], + 0xE26E: [729,139,916,110,737], + 0xE26F: [471,36,794,174,693], + 0xE270: [686,31,809,200,629], + 0xE271: [466,29,660,183,528], + 0xE272: [612,34,791,113,614], + 0xE273: [467,31,674,181,534], + 0xE274: [679,238,588,133,486], + 0xE275: [470,209,797,116,643], + 0xE276: [689,198,819,188,619], + 0xE277: [675,21,528,114,419], + 0xE278: [673,202,530,86,332], + 0xE279: [686,26,660,126,533], + 0xE27A: [686,20,528,213,429], + 0xE27B: [475,26,1113,105,1006], + 0xE27C: [475,23,825,119,722], + 0xE27D: [481,28,779,176,593], + 0xE27E: [538,214,794,111,613], + 0xE27F: [480,224,780,168,599], + 0xE280: [474,21,660,115,570], + 0xE281: [479,30,724,63,585], + 0xE282: [641,21,593,128,516], + 0xE283: [474,26,814,107,714], + 0xE284: [533,28,807,158,624], + 0xE285: [533,28,1121,150,929], + 0xE286: [473,188,659,109,541], + 0xE287: [524,219,791,151,621], + 0xE288: [471,215,662,89,474], + 0xE289: [692,9,831,168,777], + 0xE28A: [699,7,1117,132,976], + 0xE28B: [699,14,1332,194,1117], + 0xE28C: [694,13,1192,126,1052], + 0xE28D: [700,14,966,135,828], + 0xE28E: [690,14,1189,139,1048], + 0xE28F: [699,1,1035,137,869], + 0xE290: [707,6,1131,139,990], + 0xE291: [685,0,1338,195,1130], + 0xE292: [703,1,1115,70,998], + 0xE293: [700,5,1322,135,1181], + 0xE294: [476,18,1038,209,943], + 0xE295: [676,194,1022,229,818], + 0xE296: [475,201,958,102,830], + 0xE297: [672,11,887,199,691], + 0xE298: [471,7,890,202,730], + 0xE299: [674,129,816,197,698], + 0xE29A: [470,197,965,118,731], + 0xE29B: [677,14,961,202,758], + 0xE29C: [469,11,620,237,509], + 0xE29D: [471,12,886,234,757], + 0xE29E: [679,8,901,139,761], + 0xE29F: [474,196,959,215,849], + 0xE2A0: [473,6,950,135,804], + 0xE2A1: [689,126,890,190,773], + 0xE2A2: [523,4,980,126,899], + 0xE2A3: [474,196,917,226,762], + 0xE2A4: [475,11,1022,205,895], + 0xE2A5: [497,7,882,141,782], + 0xE2A6: [472,2,930,108,766], + 0xE2A7: [672,196,1222,205,1021], + 0xE2A8: [470,197,890,95,799], + 0xE2A9: [672,196,1162,102,966], + 0xE2AA: [499,9,1337,195,1134], + 0xE2AB: [472,16,827,227,683], + 0xE2AC: [676,8,951,105,815], + 0xE2AD: [547,11,1291,202,1108], + 0xE2AE: [472,201,1156,204,960], + 0xE2AF: [716,15,848,151,700], + 0xE2B0: [715,9,848,186,519], + 0xE2B1: [715,-5,848,122,719], + 0xE2B2: [708,8,848,134,680], + 0xE2B3: [708,12,848,107,707], + 0xE2B4: [694,12,848,126,679], + 0xE2B5: [704,12,848,156,708], + 0xE2B6: [696,15,848,163,740], + 0xE2B7: [720,5,848,154,691], + 0xE2B8: [707,10,848,161,701], + 0xE2B9: [531,36,1101,168,914], + 0xE2BA: [531,36,1101,189,935], + 0xE2BB: [696,18,955,206,752], + 0xE2BC: [687,14,1171,108,1057], + 0xE2BD: [703,2,1052,151,849], + 0xE2BE: [711,18,1125,205,976], + 0xE2BF: [698,1,1252,156,1065], + 0xE2C0: [709,8,952,118,807], + 0xE2C1: [706,12,819,119,678], + 0xE2C2: [709,14,1190,209,985], + 0xE2C3: [711,7,1202,151,1061], + 0xE2C4: [696,-1,744,161,554], + 0xE2C5: [705,192,740,157,583], + 0xE2C6: [702,12,1076,158,949], + 0xE2C7: [702,5,929,154,787], + 0xE2C8: [701,16,1552,206,1410], + 0xE2C9: [713,3,1279,165,1024], + 0xE2CA: [720,15,1231,189,1059], + 0xE2CB: [699,6,980,162,821], + 0xE2CC: [714,197,1274,205,1074], + 0xE2CD: [701,10,1038,161,875], + 0xE2CE: [723,14,968,199,791], + 0xE2CF: [714,11,839,131,833], + 0xE2D0: [717,10,1205,137,1076], + 0xE2D1: [712,5,1074,136,1041], + 0xE2D2: [701,16,1515,121,1471], + 0xE2D3: [705,13,1064,139,923], + 0xE2D4: [707,4,886,137,896], + 0xE2D5: [709,11,1060,139,920], + 0xE2D6: [704,9,659,133,523], + 0xE2D7: [498,15,980,219,878], + 0xE2D8: [705,14,990,139,788], + 0xE2D9: [496,10,846,209,721], + 0xE2DA: [699,11,990,202,880], + 0xE2DB: [495,16,921,206,752], + 0xE2DC: [686,10,708,132,632], + 0xE2DD: [495,242,973,204,737], + 0xE2DE: [696,8,980,140,875], + 0xE2DF: [687,13,635,117,528], + 0xE2E0: [687,246,631,84,405], + 0xE2E1: [698,6,918,140,816], + 0xE2E2: [697,7,636,137,532], + 0xE2E3: [495,9,1356,111,1247], + 0xE2E4: [497,10,987,105,883], + 0xE2E5: [486,11,989,197,789], + 0xE2E6: [488,247,977,126,793], + 0xE2E7: [538,247,988,223,751], + 0xE2E8: [489,6,785,121,661], + 0xE2E9: [494,15,787,146,598], + 0xE2EA: [624,11,716,131,581], + 0xE2EB: [500,8,987,107,879], + 0xE2EC: [490,12,843,75,706], + 0xE2ED: [496,13,1276,96,1137], + 0xE2EE: [491,12,848,78,721], + 0xE2EF: [491,232,987,118,745], + 0xE2F0: [492,14,841,125,713], + 0xE2F1: [493,13,635,117,528], + 0xE2F2: [493,246,635,84,396], + 0xE2F3: [489,202,991,162,839], + 0xE2F4: [697,7,707,186,708], + 0xE2F5: [696,4,1049,133,924], + 0xE2F6: [701,12,1102,132,968], + 0xE2F7: [698,7,1118,131,1022], + 0xE2F8: [695,6,909,129,780], + 0xE2F9: [690,14,1060,128,929], + 0xE2FA: [695,-2,969,156,817], + 0xE2FB: [697,11,1053,121,919], + 0xE2FC: [686,-2,1193,185,995], + 0xE2FD: [694,1,1037,63,935], + 0xE2FE: [689,2,1244,127,1110], + 0xE2FF: [468,20,983,198,905], + 0xE300: [698,202,988,233,780], + 0xE301: [470,198,923,67,795], + 0xE302: [694,9,795,164,623], + 0xE303: [471,11,854,203,685], + 0xE304: [695,136,808,198,686], + 0xE305: [466,199,866,59,672], + 0xE306: [695,11,858,168,680], + 0xE307: [474,9,594,218,495], + 0xE308: [472,4,860,231,716], + 0xE309: [690,11,843,122,709], + 0xE30A: [466,199,934,212,859], + 0xE30B: [471,8,912,115,770], + 0xE30C: [694,137,857,186,751], + 0xE30D: [488,5,924,122,851], + 0xE30E: [477,189,851,205,696], + 0xE30F: [476,5,920,195,827], + 0xE310: [484,9,809,115,720], + 0xE311: [472,12,898,83,720], + 0xE312: [467,197,1109,206,919], + 0xE313: [466,197,885,75,774], + 0xE314: [695,189,1098,89,918], + 0xE315: [472,13,1215,177,1034], + 0xE316: [471,15,777,191,613], + 0xE317: [698,14,856,78,723], + 0xE318: [541,12,1244,186,1045], + 0xE319: [694,192,1066,176,888], + 0xE31A: [704,14,792,138,649], + 0xE31B: [712,5,792,207,474], + 0xE31C: [708,-2,792,111,663], + 0xE31D: [702,17,792,119,632], + 0xE31E: [704,5,792,96,665], + 0xE31F: [687,11,792,111,635], + 0xE320: [700,13,792,151,662], + 0xE321: [694,8,792,156,690], + 0xE322: [706,10,792,145,650], + 0xE323: [702,9,792,145,651], + 0xE324: [699,7,866,192,679], + 0xE325: [680,10,1118,127,989], + 0xE326: [686,1,980,157,786], + 0xE327: [699,15,1050,201,903], + 0xE328: [686,-2,1187,158,983], + 0xE329: [688,0,918,152,768], + 0xE32A: [690,2,792,144,657], + 0xE32B: [699,17,1112,205,908], + 0xE32C: [690,2,1133,159,990], + 0xE32D: [683,1,666,191,515], + 0xE32E: [690,234,676,157,518], + 0xE32F: [683,7,995,156,855], + 0xE330: [690,5,864,157,738], + 0xE331: [690,6,1446,192,1309], + 0xE332: [694,5,1188,156,949], + 0xE333: [700,18,1157,183,968], + 0xE334: [679,6,885,163,757], + 0xE335: [698,235,1187,199,1025], + 0xE336: [679,8,924,162,795], + 0xE337: [702,15,862,151,677], + 0xE338: [697,10,784,128,787], + 0xE339: [694,9,1122,138,993], + 0xE33A: [698,16,969,125,972], + 0xE33B: [690,11,1377,113,1369], + 0xE33C: [688,11,993,129,860], + 0xE33D: [693,11,860,125,835], + 0xE33E: [695,12,993,152,865], + 0xE33F: [466,12,924,202,812], + 0xE340: [684,10,899,129,725], + 0xE341: [475,19,777,156,632], + 0xE342: [684,19,917,200,813], + 0xE343: [478,12,792,180,653], + 0xE344: [669,12,696,140,603], + 0xE345: [465,233,875,197,690], + 0xE346: [681,10,939,129,862], + 0xE347: [683,8,626,114,525], + 0xE348: [683,231,591,96,368], + 0xE349: [686,7,860,129,775], + 0xE34A: [686,11,632,146,529], + 0xE34B: [471,18,1292,132,1203], + 0xE34C: [471,10,990,103,884], + 0xE34D: [465,14,869,164,693], + 0xE34E: [470,237,900,83,718], + 0xE34F: [504,243,920,203,699], + 0xE350: [473,3,712,108,595], + 0xE351: [466,17,740,159,561], + 0xE352: [611,9,693,118,576], + 0xE353: [470,10,964,96,883], + 0xE354: [469,11,788,72,656], + 0xE355: [469,8,1168,81,1035], + 0xE356: [464,12,825,99,711], + 0xE357: [468,233,905,77,686], + 0xE358: [462,27,758,111,672], + 0xE359: [471,8,593,95,506], + 0xE35A: [468,231,591,96,365], + 0xE35B: [472,196,918,169,776], + 0xE35C: [347,-178,855,123,733], + 0xE35D: [409,-206,1014,127,851], + 0xE35E: [689,-1,1122,191,924], + 0xE35F: [711,17,1212,116,1077], + 0xE360: [727,1,1186,148,1002], + 0xE361: [709,15,978,172,833], + 0xE362: [727,1,1269,137,1101], + 0xE363: [708,12,986,174,815], + 0xE364: [731,14,1063,140,1011], + 0xE365: [705,138,981,164,784], + 0xE366: [699,12,1338,138,1224], + 0xE367: [703,18,846,137,677], + 0xE368: [701,137,855,140,715], + 0xE369: [709,9,1262,136,1125], + 0xE36A: [710,12,1123,134,942], + 0xE36B: [710,17,1465,136,1327], + 0xE36C: [712,13,1197,133,1110], + 0xE36D: [707,20,1112,156,939], + 0xE36E: [726,13,1052,138,910], + 0xE36F: [705,42,1074,152,924], + 0xE370: [732,12,1132,138,1056], + 0xE371: [715,18,885,113,731], + 0xE372: [697,11,949,134,935], + 0xE373: [709,13,1112,115,1006], + 0xE374: [702,16,1058,136,912], + 0xE375: [710,8,1474,136,1327], + 0xE376: [712,11,1126,136,980], + 0xE377: [709,135,978,100,782], + 0xE378: [705,14,1048,169,912], + 0xE379: [714,4,1124,110,1019], + 0xE37A: [688,12,1124,104,1004], + 0xE37B: [730,178,578,93,447], + 0xE37C: [733,175,578,125,479], + 0xE37D: [738,167,449,200,248], + 0xE37E: [722,192,795,144,653], + 0xE37F: [701,107,812,164,638], + 0xE380: [694,15,1118,87,981], + 0xE381: [712,1,1107,147,917], + 0xE382: [697,15,916,181,770], + 0xE383: [716,-4,1190,159,1014], + 0xE384: [702,12,923,180,731], + 0xE385: [699,15,972,143,949], + 0xE386: [697,130,918,183,726], + 0xE387: [690,8,1254,137,1144], + 0xE388: [685,14,710,129,591], + 0xE389: [692,129,801,131,659], + 0xE38A: [690,12,1182,132,1050], + 0xE38B: [685,7,1052,128,833], + 0xE38C: [699,13,1372,129,1250], + 0xE38D: [706,7,1122,131,1059], + 0xE38E: [686,18,1042,182,857], + 0xE38F: [710,11,986,150,863], + 0xE390: [694,24,988,183,836], + 0xE391: [712,6,1060,137,950], + 0xE392: [702,12,844,131,674], + 0xE393: [693,6,897,128,889], + 0xE394: [699,16,1050,127,926], + 0xE395: [709,9,990,129,863], + 0xE396: [702,5,1380,133,1253], + 0xE397: [706,9,1053,157,929], + 0xE398: [702,136,908,127,699], + 0xE399: [696,11,981,167,855], + 0xE39A: [502,11,861,150,691], + 0xE39B: [489,0,861,164,708], + 0xE39C: [491,0,861,153,725], + 0xE39D: [488,193,861,145,680], + 0xE39E: [495,198,861,119,726], + 0xE39F: [481,191,861,125,675], + 0xE3A0: [704,12,861,158,708], + 0xE3A1: [586,33,468,80,451], + 0xE3A2: [690,11,548,206,342], + 0xE3A3: [681,221,1063,58,924], + 0xE3A4: [698,11,1078,156,978], + 0xE3A5: [678,148,788,27,668], + 0xE3A6: [709,-406,307,96,228], + 0xE3A7: [695,-395,307,95,224], + 0xE3A8: [690,11,392,141,266], + 0xE3A9: [698,11,852,74,821], + 0xE3AA: [695,-436,305,121,193], + 0xE3AB: [738,187,488,161,365], + 0xE3AC: [736,189,490,133,341], + 0xE3AD: [695,-436,448,179,258], + 0xE3AE: [738,186,697,233,493], + 0xE3AF: [735,187,697,198,468], + 0xE3B0: [107,192,537,212,378], + 0xE3B1: [275,-236,1227,135,1087], + 0xE3B2: [102,15,537,195,359], + 0xE3B3: [479,198,861,164,755], + 0xE3B4: [715,5,861,154,701], + 0xE3B5: [488,195,861,137,709], + 0xE3B6: [467,-33,1187,193,994], + 0xE3B7: [648,152,1161,198,944], + 0xE3B8: [648,150,1125,219,967], + 0xE3B9: [692,-449,537,117,408], + 0xE3BA: [598,83,1227,138,1092], + 0xE3BB: [598,84,1227,135,1092], + 0xE3BC: [599,83,1227,135,1092], + 0xE3BD: [586,74,872,72,796], + 0xE3BE: [586,74,872,72,796], + 0xE3BF: [119,15,925,99,826], + 0xE3C0: [102,15,1136,178,958], + 0xE3C1: [911,0,1000,195,551], + 0xE3C2: [911,0,1000,448,804], + 0xE3C3: [912,-1,1000,195,551], + 0xE3C4: [1824,0,1000,195,551], + 0xE3C5: [1824,0,1000,448,804], + 0xE3C6: [324,0,1000,448,551], + 0xE3C7: [694,194,348,39,310], + 0xE3C8: [694,194,348,39,310], + 0xE3C9: [694,194,348,39,310], + 0xE3CA: [694,194,348,39,310], + 0xE3CB: [610,109,1123,69,1053], + 0xE3CC: [610,109,1123,69,1053], + 0xE3CD: [689,2,1244,127,1110], + 0xE3CE: [696,4,1049,133,924], + 0xE3CF: [689,2,1048,59,985], + 0xE3D0: [696,4,865,65,810], + 0xE3D1: [347,-178,855,123,733], + 0xE3D2: [347,-178,684,56,630], + 0xE3D3: [559,-38,440,93,370], + 0xE3D4: [559,-38,857,93,787], + 0xE3D5: [559,-38,1274,93,1204], + 0xE3D6: [559,-38,1691,93,1621], + 0xE3D7: [559,-38,440,93,370], + 0xE3D8: [559,-38,857,93,787], + 0xE3D9: [559,-38,1274,93,1204], + 0xE3DA: [578,78,769,108,635], + 0xE3DB: [720,192,769,108,635], + 0xE3DC: [578,78,769,132,659], + 0xE3DD: [720,192,769,132,659], + 0xE3DE: [603,103,944,159,753], + 0xE3DF: [722,182,944,159,781], + 0xE3E0: [603,103,944,187,781], + 0xE3E1: [722,182,944,160,781], + 0xE3E2: [722,182,1101,162,963], + 0xE3E3: [720,192,873,80,808], + 0xE3E4: [720,192,999,122,877], + 0xE3E5: [722,182,1187,193,994], + 0xE3E6: [599,-5,769,78,689], + 0xE3E7: [575,19,769,78,689], + 0xE3E8: [606,-6,944,125,816], + 0xE3E9: [578,22,944,125,816], + 0xE3EA: [578,78,892,108,758], + 0xE3EB: [578,78,892,132,782], + 0xE3EC: [685,195,892,108,758], + 0xE3ED: [685,195,892,132,782], + 0xE3EE: [720,192,892,108,758], + 0xE3EF: [720,192,892,132,782], + 0xE3F0: [746,244,892,108,758], + 0xE3F1: [746,244,892,132,782], + 0xE3F2: [685,249,892,108,758], + 0xE3F3: [685,249,892,132,782], + 0xE3F4: [603,103,1083,159,892], + 0xE3F5: [603,103,1083,187,920], + 0xE3F6: [719,228,1083,159,892], + 0xE3F7: [719,228,1083,187,920], + 0xE3F8: [722,182,1083,159,892], + 0xE3F9: [722,182,1083,187,920], + 0xE3FA: [782,269,1083,159,892], + 0xE3FB: [782,269,1083,187,920], + 0xE3FC: [719,299,1083,159,892], + 0xE3FD: [719,299,1083,187,920], + 0xE3FE: [302,-185,1136,178,958], + 0xE3FF: [319,-185,925,99,826], + 0xE400: [607,-64,749,93,653], + 0xE401: [624,-71,934,170,768], + 0xE402: [607,-64,749,93,653], + 0xE403: [624,-71,934,170,768], + 0xE404: [362,-245,537,186,350], + 0xE405: [379,-245,372,113,259], + 0xE406: [698,97,449,200,248], + 0xE407: [698,97,302,128,173], + 0xE408: [735,235,462,134,380], + 0xE409: [735,235,462,79,326], + 0xE40A: [734,234,597,186,466], + 0xE40B: [734,234,597,127,407], + 0xE40C: [738,167,676,200,476], + 0xE40D: [738,167,517,128,389], + 0xE40E: [911,200,990,59,960], + 0xE40F: [911,200,1380,59,1350], + 0xE410: [911,200,1770,59,1740], + 0xE411: [679,5,646,18,626], + 0xE412: [694,0,646,101,566], + 0xE413: [507,3,892,193,701], + 0xE414: [562,61,874,72,796], + 0xE415: [522,22,585,19,563], + 0xE416: [619,118,892,77,815], + 0xE417: [619,118,892,77,815], + 0xE418: [619,118,892,77,815], + 0xE419: [619,118,892,77,815], + 0xE41A: [619,118,892,77,815], + 0xE41B: [714,214,1138,77,1061], + 0xE41C: [465,-36,585,77,507], + 0xE41D: [465,-36,585,77,507], + 0xE41E: [678,6,805,58,743], + 0xE41F: [694,0,805,153,677], + 0xE420: [538,38,1083,255,831], + 0xE421: [584,84,1232,135,1087], + 0xE422: [557,57,736,59,673], + 0xE423: [667,167,1083,125,958], + 0xE424: [667,167,1083,125,958], + 0xE425: [667,167,1083,125,958], + 0xE426: [667,167,1083,125,958], + 0xE427: [667,167,1083,125,958], + 0xE428: [716,216,1361,125,1236], + 0xE429: [493,-7,736,125,611], + 0xE42A: [493,-7,736,125,611], + 0xE42B: [802,110,646,93,566], + 0xE42C: [800,104,805,97,718], + 0xE42D: [575,19,769,78,689], + 0xE42E: [578,22,943,125,816], + 0xE42F: [685,195,1000,118,782], + 0xE430: [685,195,1000,108,772], + 0xE431: [719,228,1000,171,920], + 0xE432: [719,228,1000,159,909], + 0xE433: [681,10,761,55,751], + 0xE434: [681,10,939,115,862], + 0xE435: [699,7,916,57,851], + 0xE436: [699,7,1117,132,976], + 0xE437: [500,-1,1123,69,1053], + 0xE438: [500,-1,1123,70,1054], + 0xE439: [588,-1,1123,70,1053], + 0xE43A: [588,-1,1123,70,1053] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_NonUnicode"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/NonUnicode/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Normal/Regular/Main.js new file mode 100644 index 0000000..2e38813 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Normal/Regular/Main.js @@ -0,0 +1,148 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'NeoEulerMathJax_Normal', + testString: '\u00A0\u210E\uD835\uDC00\uD835\uDC01\uD835\uDC02\uD835\uDC03\uD835\uDC04\uD835\uDC05\uD835\uDC06\uD835\uDC07\uD835\uDC08\uD835\uDC09\uD835\uDC0A\uD835\uDC0B\uD835\uDC0C', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x210E: [681,10,621,27,637], + 0x1D400: [687,14,829,3,821], + 0x1D401: [703,2,726,40,641], + 0x1D402: [711,18,789,86,751], + 0x1D403: [698,1,899,44,828], + 0x1D404: [709,8,640,11,605], + 0x1D405: [706,12,525,12,494], + 0x1D406: [709,14,845,90,759], + 0x1D407: [711,7,856,40,824], + 0x1D408: [696,-1,461,48,387], + 0x1D409: [705,192,457,45,412], + 0x1D40A: [702,12,747,46,728], + 0x1D40B: [702,5,620,42,588], + 0x1D40C: [701,16,1157,87,1125], + 0x1D40D: [713,3,922,52,792], + 0x1D40E: [720,15,881,72,822], + 0x1D40F: [699,6,664,49,617], + 0x1D410: [714,197,918,86,835], + 0x1D411: [701,10,714,48,664], + 0x1D412: [723,14,654,81,591], + 0x1D413: [714,11,543,22,628], + 0x1D414: [717,10,858,28,837], + 0x1D415: [712,5,745,27,807], + 0x1D416: [701,16,1125,14,1178], + 0x1D417: [705,13,737,29,705], + 0x1D418: [707,4,583,28,682], + 0x1D419: [709,11,733,29,703], + 0x1D41A: [498,15,664,98,666], + 0x1D41B: [705,14,673,29,589], + 0x1D41C: [496,10,549,90,531], + 0x1D41D: [699,11,673,84,668], + 0x1D41E: [495,16,613,87,558], + 0x1D41F: [686,10,430,23,455], + 0x1D420: [495,242,658,86,545], + 0x1D421: [696,8,664,30,664], + 0x1D422: [687,13,367,10,365], + 0x1D423: [687,246,363,-18,259], + 0x1D424: [698,6,611,30,613], + 0x1D425: [697,7,368,28,368], + 0x1D426: [495,9,988,5,984], + 0x1D427: [497,10,670,0,671], + 0x1D428: [486,11,672,79,590], + 0x1D429: [488,247,662,18,593], + 0x1D42A: [538,247,671,102,557], + 0x1D42B: [489,6,496,14,479], + 0x1D42C: [494,15,498,35,425], + 0x1D42D: [624,11,437,22,410], + 0x1D42E: [500,8,670,2,667], + 0x1D42F: [490,12,546,-26,518], + 0x1D430: [496,13,919,-8,890], + 0x1D431: [491,12,550,-23,531], + 0x1D432: [491,232,670,11,552], + 0x1D433: [492,14,544,17,524], + 0x1D6A8: [687,14,829,3,821], + 0x1D6A9: [703,2,726,40,641], + 0x1D6AA: [692,9,536,54,579], + 0x1D6AB: [699,7,782,23,751], + 0x1D6AC: [709,8,640,11,605], + 0x1D6AD: [709,11,733,29,703], + 0x1D6AE: [711,7,856,40,824], + 0x1D6AF: [699,14,968,77,872], + 0x1D6B0: [696,-1,461,48,387], + 0x1D6B1: [702,12,747,46,728], + 0x1D6B2: [694,13,847,18,816], + 0x1D6B3: [701,16,1157,87,1125], + 0x1D6B4: [713,3,922,52,792], + 0x1D6B5: [700,14,652,26,623], + 0x1D6B6: [720,15,881,72,822], + 0x1D6B7: [690,14,844,29,813], + 0x1D6B8: [699,6,664,49,617], + 0x1D6BA: [699,1,712,28,659], + 0x1D6BB: [714,11,543,22,628], + 0x1D6BC: [707,6,794,29,763], + 0x1D6BD: [685,0,973,78,884], + 0x1D6BE: [705,13,737,29,705], + 0x1D6BF: [703,1,781,-30,770], + 0x1D6C0: [700,5,959,26,928], + 0x1D6C1: [699,7,782,23,751], + 0x1D6C2: [476,18,714,90,722], + 0x1D6C3: [676,194,700,107,615], + 0x1D6C4: [475,201,645,-3,625], + 0x1D6C5: [672,11,584,81,505], + 0x1D6C6: [472,16,532,105,498], + 0x1D6C7: [674,129,523,79,511], + 0x1D6C8: [470,197,651,11,540], + 0x1D6C9: [677,14,648,84,563], + 0x1D6CA: [469,11,354,114,348], + 0x1D6CB: [471,12,583,111,562], + 0x1D6CC: [679,8,596,29,565], + 0x1D6CD: [474,196,646,95,641], + 0x1D6CE: [473,6,638,26,603], + 0x1D6CF: [689,126,587,73,576], + 0x1D6D0: [486,11,672,79,590], + 0x1D6D1: [523,4,664,18,685], + 0x1D6D2: [474,196,610,104,566], + 0x1D6D4: [475,11,700,86,681], + 0x1D6D5: [497,7,580,31,584], + 0x1D6D6: [472,2,621,3,570], + 0x1D6D7: [472,201,816,85,737], + 0x1D6D8: [470,197,587,-9,598], + 0x1D6D9: [672,196,821,-3,742], + 0x1D6DA: [499,9,972,78,887], + 0x1D6DB: [696,18,643,87,558], + 0x1D6DC: [471,7,587,84,539], + 0x1D6DD: [676,8,639,0,612], + 0x1D6DF: [672,196,873,86,790], + 0x1D6E1: [547,11,932,84,865], + 0x1D7CE: [716,15,550,40,513], + 0x1D7CF: [715,9,550,70,357], + 0x1D7D0: [715,-5,550,15,529], + 0x1D7D1: [708,8,550,25,496], + 0x1D7D2: [708,12,550,2,519], + 0x1D7D3: [694,12,550,18,495], + 0x1D7D4: [704,12,550,44,520], + 0x1D7D5: [696,15,550,50,547], + 0x1D7D6: [720,5,550,42,505], + 0x1D7D7: [707,10,550,48,514] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Normal"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Normal/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Operators/Regular/Main.js new file mode 100644 index 0000000..e35c5de --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Operators/Regular/Main.js @@ -0,0 +1,68 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'NeoEulerMathJax_Operators', + testString: '\u00A0\u2206\u220C\u220F\u2210\u2211\u221B\u221C\u222C\u222D\u222E\u2236\u2237\u2238\u2239', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x2206: [696,4,713,30,689], + 0x220C: [720,192,666,103,581], + 0x220F: [950,50,1056,70,985], + 0x2210: [950,50,1056,70,985], + 0x2211: [950,50,1056,56,971], + 0x221B: [988,1,833,70,849], + 0x221C: [988,1,833,70,849], + 0x222C: [950,161,856,49,807], + 0x222D: [950,161,1156,49,1107], + 0x222E: [950,161,556,49,507], + 0x2236: [455,12,216,50,164], + 0x2237: [455,12,569,50,517], + 0x2238: [455,-206,756,46,710], + 0x2239: [455,12,863,46,817], + 0x223A: [455,12,756,46,710], + 0x223B: [455,12,551,22,530], + 0x2244: [720,192,597,54,563], + 0x2247: [740,172,597,54,563], + 0x2249: [720,192,551,22,530], + 0x224B: [577,-108,551,22,530], + 0x224C: [597,-102,597,54,563], + 0x2262: [720,192,830,81,749], + 0x2263: [661,-33,830,81,749], + 0x2274: [770,142,807,84,721], + 0x2275: [770,142,807,88,725], + 0x2278: [770,142,807,71,716], + 0x2279: [770,142,807,72,716], + 0x2284: [720,192,777,83,673], + 0x2285: [720,192,777,103,693], + 0x22C0: [714,4,775,11,768], + 0x22C1: [688,12,775,6,756], + 0x22C2: [598,2,666,55,609], + 0x22C3: [578,22,666,55,609], + 0x22DC: [733,54,807,79,700], + 0x22DD: [745,52,807,102,724], + 0x22F0: [533,-60,627,76,550], + 0x2A0C: [950,161,1456,49,1407] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Operators"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Operators/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Script/Regular/Main.js new file mode 100644 index 0000000..50384e1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Script/Regular/Main.js @@ -0,0 +1,83 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Script'] = { + directory: 'Script/Regular', + family: 'NeoEulerMathJax_Script', + testString: '\u00A0\u210B\u2110\u2112\u211B\u212C\u2130\u2131\u2133\uD835\uDC9C\uD835\uDC9E\uD835\uDC9F\uD835\uDCA2\uD835\uDCA5\uD835\uDCA6', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x210B: [690,8,884,33,872], + 0x2110: [685,14,430,27,412], + 0x2112: [685,7,715,26,613], + 0x211B: [712,6,722,33,711], + 0x212C: [712,1,761,42,683], + 0x2130: [702,12,608,69,528], + 0x2131: [699,15,649,38,710], + 0x2133: [699,13,982,27,961], + 0x1D49C: [694,15,770,-8,736], + 0x1D49E: [697,15,602,70,561], + 0x1D49F: [716,-4,830,52,764], + 0x1D4A2: [697,130,604,72,524], + 0x1D4A5: [692,129,506,28,468], + 0x1D4A6: [690,12,824,29,794], + 0x1D4A9: [706,7,774,28,802], + 0x1D4AA: [686,18,707,71,633], + 0x1D4AB: [710,11,660,44,638], + 0x1D4AC: [694,24,662,72,616], + 0x1D4AE: [702,12,542,28,481], + 0x1D4AF: [693,6,586,26,660], + 0x1D4B0: [699,16,714,25,691], + 0x1D4B1: [709,9,664,27,638], + 0x1D4B2: [702,5,989,30,963], + 0x1D4B3: [706,9,716,50,693], + 0x1D4B4: [702,136,595,25,502], + 0x1D4B5: [696,11,656,58,632], + 0x1D4D0: [711,17,887,10,860], + 0x1D4D1: [727,1,864,38,794], + 0x1D4D2: [709,15,680,59,644], + 0x1D4D3: [727,1,938,28,881], + 0x1D4D4: [708,12,687,61,628], + 0x1D4D5: [731,14,755,31,802], + 0x1D4D6: [705,138,683,52,601], + 0x1D4D7: [699,12,999,29,990], + 0x1D4D8: [703,18,563,28,506], + 0x1D4D9: [701,137,571,31,540], + 0x1D4DA: [709,9,931,27,903], + 0x1D4DB: [710,12,808,26,741], + 0x1D4DC: [710,17,1111,27,1081], + 0x1D4DD: [712,13,874,25,889], + 0x1D4DE: [707,20,799,45,738], + 0x1D4DF: [726,13,746,29,712], + 0x1D4E0: [705,42,765,42,725], + 0x1D4E1: [732,12,816,29,842], + 0x1D4E2: [715,18,598,7,554], + 0x1D4E3: [697,11,654,26,735], + 0x1D4E4: [709,13,799,9,797], + 0x1D4E5: [702,16,751,27,714], + 0x1D4E6: [710,8,1119,27,1081], + 0x1D4E7: [712,11,811,27,774], + 0x1D4E8: [709,135,680,-4,599], + 0x1D4E9: [705,14,742,57,714] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Script"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes/Regular/Main.js new file mode 100644 index 0000000..a07a9ce --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes/Regular/Main.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'NeoEulerMathJax_Shapes', + testString: '\u00A0\u2B1A', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x2B1A: [690,6,816,60,756] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Shapes"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Shapes/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size1/Regular/Main.js new file mode 100644 index 0000000..78237fe --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size1/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'NeoEulerMathJax_Size1', + testString: '\u00A0\u2016\u2044\u21D0\u21D2\u21D4\u220F\u2210\u2211\u2215\u221A\u2223\u2225\u2227\u2228', + 0x20: [0,0,333,0,0], + 0x28: [999,199,456,153,426], + 0x29: [999,199,457,30,304], + 0x2F: [999,200,577,55,524], + 0x5B: [1074,125,416,202,394], + 0x5C: [999,200,577,55,524], + 0x5D: [1074,125,416,22,214], + 0x7B: [999,200,583,110,474], + 0x7C: [1297,208,213,86,126], + 0x7D: [999,200,583,110,474], + 0xA0: [0,0,333,0,0], + 0x2016: [1297,208,403,86,316], + 0x2044: [999,200,577,55,524], + 0x21D0: [598,98,1700,55,1622], + 0x21D2: [598,98,1700,55,1622], + 0x21D4: [598,98,1700,33,1665], + 0x220F: [1200,200,1411,56,1354], + 0x2210: [1200,200,1411,56,1354], + 0x2211: [1200,200,1444,56,1361], + 0x2215: [999,200,577,55,524], + 0x221A: [1207,2,1000,110,1027], + 0x2223: [1297,208,213,86,126], + 0x2225: [738,167,392,86,306], + 0x2227: [924,74,1124,56,1068], + 0x2228: [874,124,1124,56,1068], + 0x2229: [959,6,833,56,776], + 0x222A: [924,41,833,56,776], + 0x222B: [2022,200,555,41,517], + 0x222C: [2022,200,773,41,847], + 0x222D: [2022,200,1103,41,1177], + 0x222E: [2022,200,555,17,556], + 0x228E: [924,41,833,56,776], + 0x22C0: [924,74,1124,56,1068], + 0x22C1: [874,124,1124,56,1068], + 0x22C2: [959,6,833,56,776], + 0x22C3: [924,41,833,56,776], + 0x2308: [999,200,472,202,449], + 0x2309: [999,200,472,22,269], + 0x230A: [999,200,472,202,449], + 0x230B: [999,200,472,22,269], + 0x2329: [939,237,501,95,392], + 0x232A: [939,237,568,79,375], + 0x23DC: [786,-525,1311,56,1255], + 0x23DD: [31,230,1311,56,1255], + 0x23DE: [878,-514,1311,56,1255], + 0x23DF: [40,324,1311,56,1255], + 0x27E8: [737,237,388,107,330], + 0x27E9: [737,237,388,57,280], + 0x2A0C: [2022,200,1433,41,1507] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Size1"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size1/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size2/Regular/Main.js new file mode 100644 index 0000000..be87b98 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size2/Regular/Main.js @@ -0,0 +1,67 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'NeoEulerMathJax_Size2', + testString: '\u00A0\u2016\u2044\u2215\u221A\u2223\u2225\u2227\u2228\u2229\u222A\u228E\u22C0\u22C1\u22C2', + 0x20: [0,0,333,0,0], + 0x28: [1599,199,596,180,574], + 0x29: [1599,199,595,22,415], + 0x2F: [1599,200,811,53,759], + 0x5B: [1674,125,472,226,453], + 0x5C: [1599,200,811,53,759], + 0x5D: [1674,125,472,18,245], + 0x7B: [1599,200,667,119,547], + 0x7C: [1897,208,213,86,126], + 0x7D: [1599,200,667,119,547], + 0xA0: [0,0,333,0,0], + 0x2016: [1897,208,403,86,316], + 0x2044: [1599,200,811,53,759], + 0x2215: [1599,200,811,53,759], + 0x221A: [1800,1,1000,110,1024], + 0x2223: [1897,208,213,86,126], + 0x2225: [1297,208,403,86,316], + 0x2227: [1128,267,1549,56,1492], + 0x2228: [1069,326,1549,56,1492], + 0x2229: [1359,-1,1110,56,1053], + 0x222A: [1317,41,1110,56,1053], + 0x228E: [1317,41,1110,56,1053], + 0x22C0: [1128,267,1549,56,1492], + 0x22C1: [1069,326,1549,56,1492], + 0x22C2: [1359,-1,1110,56,1053], + 0x22C3: [1317,41,1110,56,1053], + 0x2308: [1599,200,527,226,509], + 0x2309: [1599,200,527,18,301], + 0x230A: [1599,200,527,226,509], + 0x230B: [1599,200,527,18,301], + 0x2329: [1536,234,629,109,520], + 0x232A: [1536,234,693,89,500], + 0x23DC: [794,-414,1911,56,1855], + 0x23DD: [144,236,1911,56,1855], + 0x23DE: [912,-484,1911,56,1855], + 0x23DF: [70,358,1911,56,1855], + 0x27E8: [939,237,501,95,392], + 0x27E9: [939,237,568,79,375] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Size2"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size2/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size3/Regular/Main.js new file mode 100644 index 0000000..8a69813 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size3/Regular/Main.js @@ -0,0 +1,58 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'NeoEulerMathJax_Size3', + testString: '\u00A0\u2016\u2044\u2215\u221A\u2223\u2225\u2308\u2309\u230A\u230B\u2329\u232A\u23DC\u23DD', + 0x20: [0,0,333,0,0], + 0x28: [2199,199,734,208,714], + 0x29: [2199,199,734,20,526], + 0x2F: [2199,200,1044,54,992], + 0x5B: [2274,125,527,250,513], + 0x5C: [2199,200,1044,54,992], + 0x5D: [2274,125,527,14,277], + 0x7B: [2199,200,750,131,618], + 0x7C: [2498,208,213,86,126], + 0x7D: [2199,200,750,131,618], + 0xA0: [0,0,333,0,0], + 0x2016: [2498,208,403,86,316], + 0x2044: [2199,200,1044,54,992], + 0x2215: [2199,200,1044,54,992], + 0x221A: [2402,1,1000,111,1025], + 0x2223: [2498,208,213,86,126], + 0x2225: [1897,208,403,86,316], + 0x2308: [2199,200,583,250,568], + 0x2309: [2199,200,583,14,332], + 0x230A: [2199,200,583,250,568], + 0x230B: [2199,200,583,14,332], + 0x2329: [2134,232,757,123,648], + 0x232A: [2134,232,818,100,625], + 0x23DC: [800,-308,2511,56,2455], + 0x23DD: [248,244,2511,56,2455], + 0x23DE: [944,-457,2511,56,2455], + 0x23DF: [97,390,2511,56,2455], + 0x27E8: [1536,234,629,109,520], + 0x27E9: [1536,234,693,89,500] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Size3"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size3/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size4/Regular/Main.js new file mode 100644 index 0000000..af484a6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size4/Regular/Main.js @@ -0,0 +1,58 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'NeoEulerMathJax_Size4', + testString: '\u00A0\u2016\u2044\u2215\u221A\u2223\u2225\u2308\u2309\u230A\u230B\u2329\u232A\u23DC\u23DD', + 0x20: [0,0,333,0,0], + 0x28: [2799,199,790,236,768], + 0x29: [2799,199,790,22,554], + 0x2F: [2799,200,1277,50,1228], + 0x5B: [2874,125,583,275,571], + 0x5C: [2799,200,1277,50,1228], + 0x5D: [2874,125,583,11,307], + 0x7B: [2799,200,806,144,661], + 0x7C: [3098,208,213,86,126], + 0x7D: [2799,200,806,144,661], + 0xA0: [0,0,333,0,0], + 0x2016: [3098,208,403,86,316], + 0x2044: [2799,200,1277,50,1228], + 0x2215: [2799,200,1277,50,1228], + 0x221A: [3002,1,1000,111,1023], + 0x2223: [3098,208,213,86,126], + 0x2225: [2498,208,403,86,316], + 0x2308: [2799,200,638,275,627], + 0x2309: [2799,200,638,11,363], + 0x230A: [2799,200,638,275,627], + 0x230B: [2799,200,638,11,363], + 0x2329: [2730,228,803,137,694], + 0x232A: [2730,228,859,109,666], + 0x23DC: [814,-293,3111,56,3055], + 0x23DD: [264,257,3111,56,3055], + 0x23DE: [962,-445,3111,56,3055], + 0x23DF: [110,407,3111,56,3055], + 0x27E8: [2134,232,757,123,648], + 0x27E9: [2134,232,818,100,625] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Size4"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size4/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size5/Regular/Main.js new file mode 100644 index 0000000..8680920 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Size5/Regular/Main.js @@ -0,0 +1,57 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'NeoEulerMathJax_Size5', + testString: '\u00A0\u2225\u27E8\u27E9\uE000\uE001\uE002\uE003\uE004\uE005\uE006\uE007\uE008\uE009\uE00A', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x2225: [3098,208,403,86,316], + 0x27E8: [2730,228,803,137,694], + 0x27E9: [2730,228,859,109,666], + 0xE000: [3098,208,213,86,126], + 0xE001: [138,167,213,86,126], + 0xE002: [3098,208,403,86,316], + 0xE003: [138,167,403,86,316], + 0xE004: [635,-595,150,0,150], + 0xE005: [-65,105,150,0,150], + 0xE006: [1820,0,1055,111,742], + 0xE007: [572,-2,1055,702,742], + 0xE008: [583,2,1055,702,1076], + 0xE009: [827,-276,1799,0,1809], + 0xE00A: [828,-718,600,-10,610], + 0xE00B: [828,-277,1799,-10,1799], + 0xE00C: [280,271,1799,0,1809], + 0xE00D: [-160,271,600,-10,610], + 0xE00E: [281,270,1799,-10,1799], + 0xE00F: [758,-436,450,-24,460], + 0xE010: [758,-660,300,-10,310], + 0xE011: [983,-661,1800,-10,1810], + 0xE012: [758,-436,450,-10,474], + 0xE013: [120,202,450,-24,460], + 0xE014: [-106,202,300,-10,310], + 0xE015: [-106,428,1800,-10,1810], + 0xE016: [120,202,450,-10,474] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Size5"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size5/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Symbols/Regular/Main.js new file mode 100644 index 0000000..8ab1e8a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Symbols/Regular/Main.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'NeoEulerMathJax_Symbols', + testString: '\u00A0\u2320\u2321\u2329\u232A\u239B\u239C\u239D\u239E\u239F\u23A0\u23A1\u23A2\u23A3\u23A4', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x2320: [915,0,444,180,452], + 0x2321: [925,0,444,-23,265], + 0x2329: [737,237,388,107,330], + 0x232A: [737,237,388,57,280], + 0x239B: [1808,0,883,292,851], + 0x239C: [620,0,875,292,403], + 0x239D: [1808,0,883,292,851], + 0x239E: [1808,0,873,22,581], + 0x239F: [620,0,875,472,583], + 0x23A0: [1808,0,873,22,581], + 0x23A1: [1799,0,666,326,659], + 0x23A2: [602,0,666,326,395], + 0x23A3: [1800,-1,666,326,659], + 0x23A4: [1799,0,666,7,340], + 0x23A5: [602,0,666,271,340], + 0x23A6: [1800,-1,666,7,340], + 0x23A7: [909,0,889,395,718], + 0x23A8: [1820,0,889,170,492], + 0x23A9: [909,0,889,395,718], + 0x23AA: [320,0,889,395,492], + 0x23AB: [909,0,889,170,492], + 0x23AC: [1820,0,889,395,718], + 0x23AD: [909,0,889,170,492], + 0x23AE: [381,0,444,181,265] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Symbols"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Symbols/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Variants/Regular/Main.js new file mode 100644 index 0000000..fb6c279 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/Variants/Regular/Main.js @@ -0,0 +1,48 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['NeoEulerMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'NeoEulerMathJax_Variants', + testString: '\u00A0\u2032\u2033\u2034\u2035\u2036\u2037\u2057\uE200\uE201\uE202\uE203\uE204\uE205\uE206', + 0x20: [0,0,333,0,0], + 0xA0: [0,0,333,0,0], + 0x2032: [559,-41,329,48,299], + 0x2033: [559,-41,640,48,610], + 0x2034: [559,-41,950,48,920], + 0x2035: [559,-41,329,48,299], + 0x2036: [559,-41,640,48,610], + 0x2037: [559,-41,950,48,919], + 0x2057: [559,-41,1260,48,1230], + 0xE200: [493,13,501,41,456], + 0xE201: [469,1,501,46,460], + 0xE202: [474,-1,501,59,485], + 0xE203: [474,182,501,38,430], + 0xE204: [476,192,501,10,482], + 0xE205: [458,184,501,47,441], + 0xE206: [700,13,501,45,471], + 0xE207: [468,181,501,37,498], + 0xE208: [706,10,501,40,461], + 0xE209: [470,182,501,27,468] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"NeoEulerMathJax_Variants"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Variants/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata-extra.js new file mode 100644 index 0000000..d395a4d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata-extra.js @@ -0,0 +1,177 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata-extra.js + * + * Adds extra stretchy characters to the Neo-Euler fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS) { + var VERSION = "2.3"; + + var DELIMITERS = HTMLCSS.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "NeoEulerMathJax_Alphabets", + ARROWS = "NeoEulerMathJax_Arrows", + FRAKTUR = "NeoEulerMathJax_Fraktur", + MAIN = "NeoEulerMathJax_Main", + MARKS = "NeoEulerMathJax_Marks", + NONUNICODE = "NeoEulerMathJax_NonUnicode", + NORMAL = "NeoEulerMathJax_Normal", + OPERATORS = "NeoEulerMathJax_Operators", + SCRIPT = "NeoEulerMathJax_Script", + SHAPES = "NeoEulerMathJax_Shapes", + SIZE1 = "NeoEulerMathJax_Size1", + SIZE2 = "NeoEulerMathJax_Size2", + SIZE3 = "NeoEulerMathJax_Size3", + SIZE4 = "NeoEulerMathJax_Size4", + SIZE5 = "NeoEulerMathJax_Size5", + SYMBOLS = "NeoEulerMathJax_Symbols", + VARIANTS = "NeoEulerMathJax_Variants", + DOUBLESTRUCK = "NeoEulerMathJax_Normal", + SANSSERIF = "NeoEulerMathJax_Normal", + MONOSPACE = "NeoEulerMathJax_Normal"; + + var delim = { + 0x2044: + { + dir: V, + HW: [[0.912,MAIN], [1.199,SIZE1], [1.799,SIZE2], [2.399,SIZE3], [2.999,SIZE4]] + }, + 0x20E1: + { + dir: H, + HW: [[0.449,MARKS]], + stretch: {left:[0x20D6,MARKS], rep:[0xE004,SIZE5], right:[0x20D7,MAIN]} + }, + 0x20EE: + { + dir: H, + HW: [[0.418,MARKS]], + stretch: {left:[0x20EE,MARKS], rep:[0xE005,SIZE5]} + }, + 0x20EF: + { + dir: H, + HW: [[0.418,MARKS]], + stretch: {rep:[0xE005,SIZE5], right:[0x20EF,MARKS]} + }, + 0x220F: + { + dir: V, + HW: [[1.000,OPERATORS], [1.400,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[1.000,OPERATORS], [1.400,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[1.000,OPERATORS], [1.400,SIZE1]] + }, + 0x2227: + { + dir: V, + HW: [[0.718,MAIN], [0.998,SIZE1], [1.395,SIZE2]] + }, + 0x2228: + { + dir: V, + HW: [[0.700,MAIN], [0.998,SIZE1], [1.395,SIZE2]] + }, + 0x2229: + { + dir: V, + HW: [[0.600,MAIN], [0.965,SIZE1], [1.358,SIZE2]] + }, + 0x222A: + { + dir: V, + HW: [[0.600,MAIN], [0.965,SIZE1], [1.358,SIZE2]] + }, + 0x222B: + { + dir: V, + HW: [[1.111,MAIN], [2.222,SIZE1]] + }, + 0x222C: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x222D: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x222E: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + }, + 0x228E: + { + dir: V, + HW: [[0.600,MAIN], [0.965,SIZE1], [1.358,SIZE2]] + }, + 0x22C0: + { + dir: V, + HW: [[0.718,OPERATORS], [0.998,SIZE1], [1.395,SIZE2]] + }, + 0x22C1: + { + dir: V, + HW: [[0.700,OPERATORS], [0.998,SIZE1], [1.395,SIZE2]] + }, + 0x22C2: + { + dir: V, + HW: [[0.600,OPERATORS], [0.965,SIZE1], [1.358,SIZE2]] + }, + 0x22C3: + { + dir: V, + HW: [[0.600,OPERATORS], [0.965,SIZE1], [1.358,SIZE2]] + }, + 0x23DC: + { + dir: H, + HW: [[0.925,MAIN], [1.199,SIZE1], [1.799,SIZE2], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {left:[0xE009,SIZE5], rep:[0xE00A,SIZE5], right:[0xE00B,SIZE5]} + }, + 0x23DD: + { + dir: H, + HW: [[0.925,MAIN], [1.199,SIZE1], [1.799,SIZE2], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {left:[0xE00C,SIZE5], rep:[0xE00D,SIZE5], right:[0xE00E,SIZE5]} + }, + 0x2A0C: + { + dir: V, + HW: [[1.111,OPERATORS], [2.222,SIZE1]] + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["HTML-CSS"]); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata.js new file mode 100644 index 0000000..6a74e45 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata.js @@ -0,0 +1,497 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/Neo-Euler/fontdata.js + * + * Initializes the HTML-CSS OutputJax to use the Neo-Euler fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,MML,AJAX) { + + var VERSION = "2.3"; + + var ALPHABETS = "NeoEulerMathJax_Alphabets", + ARROWS = "NeoEulerMathJax_Arrows", + FRAKTUR = "NeoEulerMathJax_Fraktur", + MAIN = "NeoEulerMathJax_Main", + MARKS = "NeoEulerMathJax_Marks", + NONUNICODE = "NeoEulerMathJax_NonUnicode", + NORMAL = "NeoEulerMathJax_Normal", + OPERATORS = "NeoEulerMathJax_Operators", + SCRIPT = "NeoEulerMathJax_Script", + SHAPES = "NeoEulerMathJax_Shapes", + SIZE1 = "NeoEulerMathJax_Size1", + SIZE2 = "NeoEulerMathJax_Size2", + SIZE3 = "NeoEulerMathJax_Size3", + SIZE4 = "NeoEulerMathJax_Size4", + SIZE5 = "NeoEulerMathJax_Size5", + SYMBOLS = "NeoEulerMathJax_Symbols", + VARIANTS = "NeoEulerMathJax_Variants", + DOUBLESTRUCK = "NeoEulerMathJax_Normal", + SANSSERIF = "NeoEulerMathJax_Normal", + MONOSPACE = "NeoEulerMathJax_Normal"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + HTMLCSS.Augment({ + FONTDATA: { + version: VERSION, + + + TeX_factor: 0.958, + baselineskip: 1.200, + lineH: 0.800, lineD: 0.200, + + hasStyleChar: true, // char 0xEFFD encodes font style + + FONTS: { + "NeoEulerMathJax_Alphabets": "Alphabets/Regular/Main.js", + "NeoEulerMathJax_Arrows": "Arrows/Regular/Main.js", + "NeoEulerMathJax_Fraktur": "Fraktur/Regular/Main.js", + "NeoEulerMathJax_Main": "Main/Regular/Main.js", + "NeoEulerMathJax_Marks": "Marks/Regular/Main.js", + "NeoEulerMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "NeoEulerMathJax_Normal": "Normal/Regular/Main.js", + "NeoEulerMathJax_Operators": "Operators/Regular/Main.js", + "NeoEulerMathJax_Script": "Script/Regular/Main.js", + "NeoEulerMathJax_Shapes": "Shapes/Regular/Main.js", + "NeoEulerMathJax_Size1": "Size1/Regular/Main.js", + "NeoEulerMathJax_Size2": "Size2/Regular/Main.js", + "NeoEulerMathJax_Size3": "Size3/Regular/Main.js", + "NeoEulerMathJax_Size4": "Size4/Regular/Main.js", + "NeoEulerMathJax_Size5": "Size5/Regular/Main.js", + "NeoEulerMathJax_Symbols": "Symbols/Regular/Main.js", + "NeoEulerMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], italic:true}, + "bolditalic": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Neo-Euler-variant": {fonts: [VARIANTS,MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {offsetN: 0xE200, fonts: [VARIANTS,MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x00AF, + + REMAP: { + 0x20F0: 0x002A, + 0x2022: 0x2219, + 0x22E3: "\u2292\u0338", + 0x22E2: "\u2291\u0338", + 0x3008: 0x27E8, + 0x02C9: 0x00AF, + 0x2017: 0x005F, + 0x20EC: 0x21C1, + 0x20ED: 0x21BD, + 0x2A2F: 0x00D7, + 0x20D0: 0x21BC, + 0x20D1: 0x21C0, + 0x03D2: 0x03A5, + 0x2014: 0x00AF, + 0x2015: 0x00AF, + 0x3009: 0x27E9, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF, + 0x02B9: 0x2032, + 0x2758: 0x2223, + 0x203E: 0x00AF + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[0.925,MAIN], [1.198,SIZE1], [1.798,SIZE2], [1.961,SIZE2,1.091], [2.398,SIZE3], [2.998,SIZE4]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[0.925,MAIN], [1.198,SIZE1], [1.798,SIZE2], [1.961,SIZE2,1.091], [2.398,SIZE3], [2.998,SIZE4]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0xAF, dir: H}, + 0x2F: + { + dir: V, + HW: [[0.912,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]] + }, + 0x3D: + { + dir: H, + HW: [[0.668,MAIN]], + stretch: {rep:[0x3D,MAIN]} + }, + 0x5B: + { + dir: V, + HW: [[0.866,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[0.914,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]] + }, + 0x5D: + { + dir: V, + HW: [[0.866,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5F: {alias: 0xAF, dir: H}, + 0x7B: + { + dir: V, + HW: [[0.908,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0x23AA,SYMBOLS], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[0.905,MAIN], [1.505,SIZE1], [2.105,SIZE2], [2.706,SIZE3], [3.306,SIZE4]], + stretch: {bot:[0xE000,SIZE5], ext:[0xE001,SIZE5]} + }, + 0x7D: + { + dir: V, + HW: [[0.908,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0x23AA,SYMBOLS], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0xAF: + { + dir: H, + HW: [[0.312,MAIN]], + stretch: {rep:[0xAF,MAIN]} + }, + 0xC9: {alias: 0xAF, dir: H}, + 0x332: {alias: 0xAF, dir: H}, + 0x2015: {alias: 0xAF, dir: H}, + 0x2016: + { + dir: V, + HW: [[0.905,MAIN], [1.505,SIZE1], [2.105,SIZE2], [2.706,SIZE3], [3.306,SIZE4]], + stretch: {bot:[0xE002,SIZE5], ext:[0xE003,SIZE5]} + }, + 0x2017: {alias: 0xAF, dir: H}, + 0x203E: {alias: 0xAF, dir: H}, + 0x2044: EXTRAV, + 0x20D6: + { + dir: H, + HW: [[0.418,MARKS]], + stretch: {left:[0x20D6,MARKS], rep:[0xE004,SIZE5]} + }, + 0x20D7: + { + dir: H, + HW: [[0.418,MAIN]], + stretch: {rep:[0xE004,SIZE5], right:[0x20D7,MAIN]} + }, + 0x20E1: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2190: {alias: 0x20D6, dir: H}, + 0x2191: + { + dir: V, + HW: [[0.887,MAIN]], + stretch: {top:[0x2191,MAIN], ext:[0x7C,MAIN]} + }, + 0x2192: {alias: 0x20D7, dir: H}, + 0x2193: + { + dir: V, + HW: [[0.867,MAIN]], + stretch: {ext:[0x7C,MAIN], bot:[0x2193,MAIN]} + }, + 0x2194: {alias: 0x20E1, dir: H}, + 0x2195: + { + dir: V, + HW: [[1.042,MAIN]], + stretch: {top:[0x2191,MAIN], ext:[0x7C,MAIN], bot:[0x2193,MAIN]} + }, + 0x21D0: + { + dir: H, + HW: [[0.867,MAIN], [1.567,SIZE1]] + }, + 0x21D1: + { + dir: H, + HW: [[0.640,MAIN]], + stretch: {top:[0x21D1,MAIN], ext:[0x2016,MAIN]} + }, + 0x21D2: + { + dir: H, + HW: [[0.867,MAIN], [1.567,SIZE1]] + }, + 0x21D3: + { + dir: H, + HW: [[0.640,MAIN]], + stretch: {ext:[0x2016,MAIN], bot:[0x21D3,MAIN]} + }, + 0x21D4: + { + dir: H, + HW: [[0.867,MAIN,null,0x21D0], [1.632,SIZE1]] + }, + 0x21D5: + { + dir: H, + HW: [[0.640,MAIN]], + stretch: {top:[0x21D1,MAIN], ext:[0x2016,MAIN], bot:[0x21D3,MAIN]} + }, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: {alias: 0xAF, dir: H}, + 0x2215: + { + dir: V, + HW: [[0.912,MAIN], [1.199,SIZE1], [1.799,SIZE2], [2.399,SIZE3], [2.999,SIZE4]] + }, + 0x221A: + { + dir: V, + HW: [[0.989,MAIN], [1.209,SIZE1], [1.801,SIZE2], [2.403,SIZE3], [3.003,SIZE4]], + stretch: {bot:[0xE006,SIZE5], ext:[0xE007,SIZE5], top:[0xE008,SIZE5]} + }, + 0x2223: + { + dir: V, + HW: [[0.795,MAIN], [1.505,SIZE1], [2.105,SIZE2], [2.706,SIZE3], [3.306,SIZE4]] + }, + 0x2225: + { + dir: V, + HW: [[0.905,MAIN], [0.905,SIZE1], [1.505,SIZE2], [2.105,SIZE3], [2.706,SIZE4], [3.306,SIZE5]], + stretch: {bot:[0xE002,SIZE5], ext:[0xE003,SIZE5]} + }, + 0x2227: EXTRAV, + 0x2228: EXTRAV, + 0x2229: EXTRAV, + 0x222A: EXTRAV, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x228E: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[0.980,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[0.980,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[0.980,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[0.980,MAIN], [1.199,SIZE1], [1.799,SIZE2], [1.961,SIZE2,1.090], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: + { + dir: V, + HW: [[0.974,SYMBOLS], [1.176,SIZE1], [1.770,SIZE2], [2.366,SIZE3], [2.958,SIZE4]] + }, + 0x232A: + { + dir: V, + HW: [[0.974,SYMBOLS], [1.176,SIZE1], [1.770,SIZE2], [2.366,SIZE3], [2.958,SIZE4]] + }, + 0x23AA: + { + dir: V, + HW: [[0.320,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: {alias: 0xAF, dir: H}, + 0x23B0: + { + dir: V, + HW: [[0.909,SYMBOLS,null,0x23A7]], + stretch: {top:[0x23A7,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23AD,SYMBOLS]} + }, + 0x23B1: + { + dir: V, + HW: [[0.909,SYMBOLS,null,0x23AB]], + stretch: {top:[0x23AB,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23A9,SYMBOLS]} + }, + 0x23D0: + { + dir: V, + HW: [[0.905,MAIN,null,0x7C], [1.150,MAIN,1.271,0x7C], [1.556,MAIN,1.719,0x7C], [1.961,MAIN,2.167,0x7C], [2.367,MAIN,2.615,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[0.908,MAIN], [1.199,SIZE1], [1.799,SIZE2], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {left:[0xE00F,SIZE5], rep:[0xE010,SIZE5], mid:[0xE011,SIZE5], right:[0xE012,SIZE5]} + }, + 0x23DF: + { + dir: H, + HW: [[0.908,MAIN], [1.199,SIZE1], [1.799,SIZE2], [2.399,SIZE3], [2.999,SIZE4]], + stretch: {left:[0xE013,SIZE5], rep:[0xE014,SIZE5], mid:[0xE015,SIZE5], right:[0xE016,SIZE5]} + }, + 0x2500: {alias: 0xAF, dir: H}, + 0x2758: {alias: 0x23D0, dir: V}, + 0x27E8: + { + dir: V, + HW: [[0.974,MAIN], [0.974,SIZE1], [1.176,SIZE2], [1.770,SIZE3], [2.366,SIZE4], [2.958,SIZE5]] + }, + 0x27E9: + { + dir: V, + HW: [[0.974,MAIN], [0.974,SIZE1], [1.176,SIZE2], [1.770,SIZE3], [2.366,SIZE4], [2.958,SIZE5]] + }, + 0x27EE: {alias: 0x28, dir: V}, + 0x27EF: {alias: 0x29, dir: V}, + 0x27F5: {alias: 0x20D6, dir: H}, + 0x27F6: {alias: 0x20D7, dir: H}, + 0x27F7: {alias: 0x20E1, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x20D6, dir: H}, + 0x27FC: {alias: 0x20D7, dir: H}, + 0x27FD: {alias: 0x21D0, dir: H}, + 0x27FE: {alias: 0x21D2, dir: H}, + 0x2A0C: EXTRAV, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Size5/Regular/Main.js",function () { + var u; + u = HTMLCSS.FONTDATA.DELIMITERS[0x23DE].stretch.rep[0]; + HTMLCSS.FONTDATA.FONTS[SIZE5][u][0] += 200; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS[SIZE5][u][1] += 200; // adjust depth for brace extender + u = HTMLCSS.FONTDATA.DELIMITERS[0x23DF].stretch.rep[0]; + HTMLCSS.FONTDATA.FONTS[SIZE5][u][0] += 200; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS[SIZE5][u][1] += 200; // adjust depth for brace extender + }); + AJAX.loadComplete(HTMLCSS.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.ElementJax.mml,MathJax.Ajax); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Bold/Main.js new file mode 100644 index 0000000..7017cdc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Bold/Main.js @@ -0,0 +1,205 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Alphabets-bold'] = { + directory: 'Alphabets/Bold', + family: 'STIXMathJax_Alphabets', + weight: 'bold', + testString: '\u00A0\u0384\u0385\u0386\u0387\u0388\u0389\u038A\u038C\u038E\u038F\u0390\u03AA\u03AB\u03AC', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x384: [692,-528,300,118,263], + 0x385: [692,-528,390,-2,392], + 0x386: [700,0,722,9,689], + 0x387: [472,-303,333,82,251], + 0x388: [700,0,800,10,791], + 0x389: [700,0,920,10,904], + 0x38A: [700,0,530,10,516], + 0x38C: [700,19,778,10,743], + 0x38E: [700,0,860,10,846], + 0x38F: [700,0,780,10,761], + 0x390: [692,14,390,-2,392], + 0x3AA: [915,0,389,20,370], + 0x3AB: [915,0,703,7,693], + 0x3AC: [692,14,644,25,618], + 0x3AD: [692,14,444,28,429], + 0x3AE: [692,205,585,12,545], + 0x3AF: [692,14,326,15,304], + 0x3B0: [692,14,576,12,551], + 0x3CA: [666,14,335,-2,337], + 0x3CB: [666,14,576,12,551], + 0x3CC: [692,14,500,25,476], + 0x3CD: [692,14,576,12,551], + 0x3CE: [692,14,733,26,708], + 0x401: [916,0,667,16,641], + 0x402: [676,97,856,40,809], + 0x403: [963,0,632,20,600], + 0x404: [691,19,685,37,638], + 0x405: [692,19,556,35,513], + 0x406: [676,0,389,20,370], + 0x407: [916,0,389,20,370], + 0x408: [676,96,500,3,478], + 0x409: [676,18,1005,10,958], + 0x40A: [676,0,1054,21,1007], + 0x40B: [676,0,883,40,868], + 0x40C: [923,0,759,21,741], + 0x40E: [926,22,722,15,699], + 0x40F: [676,176,770,21,753], + 0x410: [690,0,722,9,689], + 0x411: [676,0,667,16,619], + 0x412: [676,0,667,16,619], + 0x413: [676,0,632,20,600], + 0x414: [676,176,715,24,691], + 0x415: [676,0,667,16,641], + 0x416: [684,0,1130,32,1091], + 0x417: [691,19,570,22,531], + 0x418: [676,0,778,21,759], + 0x419: [926,0,778,21,759], + 0x41A: [684,0,759,21,741], + 0x41B: [676,18,738,10,719], + 0x41C: [676,0,944,14,921], + 0x41D: [676,0,778,21,759], + 0x41E: [691,19,778,35,743], + 0x41F: [676,0,762,13,751], + 0x420: [676,0,611,16,600], + 0x421: [691,19,709,36,674], + 0x422: [676,0,667,31,636], + 0x423: [676,22,722,15,699], + 0x424: [676,0,850,25,825], + 0x425: [676,0,722,16,699], + 0x426: [676,176,770,21,753], + 0x427: [676,0,732,7,710], + 0x428: [676,0,1020,21,1001], + 0x429: [676,176,1020,21,1001], + 0x42A: [676,0,805,41,757], + 0x42B: [676,0,1004,16,985], + 0x42C: [676,0,672,19,624], + 0x42D: [691,19,685,37,648], + 0x42E: [691,19,955,21,920], + 0x42F: [676,0,736,12,687], + 0x430: [473,14,517,42,505], + 0x431: [691,14,500,25,476], + 0x432: [461,0,492,21,475], + 0x433: [461,0,451,21,434], + 0x434: [461,143,541,19,524], + 0x435: [473,14,444,25,427], + 0x436: [467,0,762,14,748], + 0x437: [473,17,446,25,420], + 0x438: [461,0,556,21,543], + 0x439: [691,0,556,21,543], + 0x43A: [467,0,556,22,543], + 0x43B: [461,11,546,11,529], + 0x43C: [461,0,657,20,640], + 0x43D: [461,0,560,21,543], + 0x43E: [473,14,500,25,476], + 0x43F: [461,0,556,21,543], + 0x440: [473,205,556,19,524], + 0x441: [473,14,444,25,430], + 0x442: [461,0,509,18,493], + 0x443: [461,205,520,16,502], + 0x444: [676,205,726,31,693], + 0x445: [461,0,500,12,484], + 0x446: [461,143,556,21,543], + 0x447: [461,0,559,20,542], + 0x448: [461,0,841,21,824], + 0x449: [461,143,841,21,824], + 0x44A: [461,0,607,15,592], + 0x44B: [461,0,759,22,741], + 0x44C: [461,0,498,21,483], + 0x44D: [473,14,453,24,429], + 0x44E: [473,14,785,21,761], + 0x44F: [461,0,526,11,509], + 0x451: [666,14,444,25,427], + 0x452: [676,205,556,15,485], + 0x453: [713,0,451,21,434], + 0x454: [473,14,453,24,429], + 0x455: [473,14,389,25,361], + 0x456: [691,0,278,15,256], + 0x457: [666,0,278,-30,309], + 0x458: [691,203,333,-57,263], + 0x459: [461,11,760,11,745], + 0x45A: [461,0,775,21,760], + 0x45B: [676,0,556,15,534], + 0x45C: [713,0,556,22,543], + 0x45E: [691,205,500,16,502], + 0x45F: [461,143,556,21,543], + 0x462: [676,0,793,31,745], + 0x463: [676,0,602,15,587], + 0x46A: [676,0,1123,30,1088], + 0x46B: [461,0,762,14,748], + 0x472: [691,19,778,35,743], + 0x473: [473,14,500,25,476], + 0x474: [691,18,793,16,778], + 0x475: [470,14,559,21,550], + 0x490: [833,0,626,14,594], + 0x491: [602,0,451,21,434], + 0x2105: [688,12,873,38,835], + 0x2107: [691,19,699,65,662], + 0x2116: [691,18,1093,10,1042], + 0x2117: [691,19,747,26,721], + 0x211E: [676,101,722,26,726], + 0x2122: [676,-271,1000,24,977], + 0x2125: [676,205,448,21,424], + 0x2126: [692,0,758,35,723], + 0x2129: [475,0,312,9,244], + 0x212B: [920,0,722,9,689], + 0x214B: [690,17,833,61,788], + 0xE0B3: [691,203,556,14,487], + 0xE0DD: [930,0,553,76,483], + 0xE0DE: [926,0,549,67,482], + 0xE0DF: [765,0,773,67,706], + 0xE0E0: [920,0,552,42,510], + 0xE0E1: [765,0,378,55,323], + 0xE0E2: [754,0,481,63,435], + 0xE2FD: [775,235,722,9,689], + 0xE2FF: [775,235,667,16,619], + 0xE301: [775,207,620,16,593], + 0xE303: [775,207,722,33,673], + 0xE305: [775,235,667,16,641], + 0xE307: [775,235,667,28,634], + 0xE309: [775,235,778,21,759], + 0xE30B: [775,207,778,35,743], + 0xE30D: [775,235,389,-36,436], + 0xE30F: [775,235,778,30,769], + 0xE311: [775,207,707,9,674], + 0xE313: [775,235,944,14,921], + 0xE315: [775,235,722,16,701], + 0xE317: [775,207,647,40,607], + 0xE319: [775,235,778,35,743], + 0xE31B: [775,207,778,21,759], + 0xE31D: [775,235,611,16,600], + 0xE31F: [775,207,671,28,641], + 0xE321: [775,235,667,31,636], + 0xE323: [775,207,723,14,700], + 0xE325: [775,207,836,18,818], + 0xE327: [775,235,722,16,699], + 0xE329: [775,207,804,11,793], + 0xE32B: [775,207,768,28,740], + 0xE365: [775,235,669,32,665], + 0xE369: [775,235,667,-13,670], + 0xE36D: [793,235,757,-49,758], + 0xE371: [775,235,734,27,710], + 0xE37C: [775,235,667,16,641], + 0xE400: [691,203,556,14,487] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Alphabets-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Alphabets/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/BoldItalic/Main.js new file mode 100644 index 0000000..9215e07 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/BoldItalic/Main.js @@ -0,0 +1,210 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Alphabets-bold-italic'] = { + directory: 'Alphabets/BoldItalic', + family: 'STIXMathJax_Alphabets', + weight: 'bold', + style: 'italic', + testString: '\u00A0\u0384\u0385\u0386\u0387\u0388\u0389\u038A\u038C\u038E\u038F\u0390\u03AA\u03AB\u03AC', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x384: [680,-516,300,140,319], + 0x385: [680,-516,380,27,440], + 0x386: [693,0,667,-68,593], + 0x387: [459,-311,333,116,264], + 0x388: [693,0,700,10,748], + 0x389: [693,0,850,9,889], + 0x38A: [693,0,450,9,503], + 0x38C: [693,18,722,11,691], + 0x38E: [693,0,700,8,855], + 0x38F: [693,0,808,25,774], + 0x390: [680,9,278,6,419], + 0x3AA: [905,0,389,-32,486], + 0x3AB: [905,0,611,21,697], + 0x3AC: [680,13,576,-3,574], + 0x3AD: [680,13,454,-5,408], + 0x3AE: [680,205,488,-7,474], + 0x3AF: [680,9,278,2,286], + 0x3B0: [680,13,536,-7,500], + 0x3CA: [655,9,278,2,351], + 0x3CB: [655,13,536,-7,477], + 0x3CC: [680,13,500,-3,441], + 0x3CD: [680,13,536,-7,477], + 0x3CE: [680,13,735,-3,676], + 0x401: [905,0,667,-35,645], + 0x402: [669,205,789,80,737], + 0x403: [947,0,604,-32,658], + 0x404: [685,18,657,44,689], + 0x405: [685,18,556,-22,502], + 0x406: [669,0,389,-32,406], + 0x407: [905,0,389,-35,477], + 0x408: [669,99,500,-8,562], + 0x409: [669,18,954,-59,896], + 0x40A: [669,0,982,-32,924], + 0x40B: [669,0,830,71,757], + 0x40C: [947,0,678,-35,697], + 0x40E: [951,18,666,99,712], + 0x40F: [669,184,778,-33,791], + 0x410: [683,0,667,-57,604], + 0x411: [669,0,635,-18,629], + 0x412: [669,0,654,-25,624], + 0x413: [669,0,604,-32,658], + 0x414: [669,184,696,-115,718], + 0x415: [669,0,667,-35,645], + 0x416: [678,0,927,-63,969], + 0x417: [686,18,561,-10,549], + 0x418: [669,0,768,-33,790], + 0x419: [948,0,768,-33,790], + 0x41A: [678,0,678,-35,697], + 0x41B: [669,18,742,-59,764], + 0x41C: [669,12,890,-34,912], + 0x41D: [669,0,769,-32,791], + 0x41E: [685,18,722,53,717], + 0x41F: [669,0,767,-35,789], + 0x420: [669,0,590,-30,611], + 0x421: [685,18,667,65,710], + 0x422: [669,0,611,80,681], + 0x423: [669,18,666,99,712], + 0x424: [669,0,833,72,816], + 0x425: [669,0,607,-61,657], + 0x426: [669,184,770,-32,792], + 0x427: [669,0,758,120,780], + 0x428: [669,0,960,-33,982], + 0x429: [669,184,960,-33,982], + 0x42A: [669,0,780,107,722], + 0x42B: [669,0,985,-19,1007], + 0x42C: [669,0,636,-19,578], + 0x42D: [685,18,671,4,648], + 0x42E: [685,18,905,-38,871], + 0x42F: [669,0,710,-65,732], + 0x430: [462,14,527,20,497], + 0x431: [685,13,499,32,570], + 0x432: [462,13,482,25,458], + 0x433: [461,14,368,-8,371], + 0x434: [695,13,496,22,466], + 0x435: [462,13,431,22,415], + 0x436: [462,13,898,-4,890], + 0x437: [462,13,400,-11,378], + 0x438: [462,9,542,34,512], + 0x439: [697,9,542,34,514], + 0x43A: [461,8,522,12,527], + 0x43B: [462,11,507,-48,477], + 0x43C: [449,11,667,-48,637], + 0x43D: [462,9,543,13,513], + 0x43E: [462,13,500,24,468], + 0x43F: [462,9,543,13,513], + 0x440: [462,205,497,-96,470], + 0x441: [462,13,435,26,423], + 0x442: [462,9,777,10,747], + 0x443: [462,205,447,-94,422], + 0x444: [699,205,750,28,717], + 0x445: [462,13,456,-38,511], + 0x446: [462,179,542,34,512], + 0x447: [462,9,531,48,501], + 0x448: [462,9,800,36,770], + 0x449: [462,179,800,36,770], + 0x44A: [462,13,594,29,556], + 0x44B: [462,13,754,43,724], + 0x44C: [462,13,491,43,453], + 0x44D: [462,13,444,-12,405], + 0x44E: [462,13,740,12,710], + 0x44F: [449,11,538,2,508], + 0x451: [655,13,434,22,487], + 0x452: [699,205,523,12,490], + 0x453: [697,14,368,-8,456], + 0x454: [462,13,415,22,450], + 0x455: [462,13,389,0,352], + 0x456: [684,9,278,20,280], + 0x457: [655,9,278,22,382], + 0x458: [685,207,278,-161,307], + 0x459: [462,13,694,-48,656], + 0x45A: [462,13,733,12,695], + 0x45B: [699,9,556,12,515], + 0x45C: [697,8,522,12,527], + 0x45E: [697,205,447,-94,436], + 0x45F: [462,179,538,30,508], + 0x462: [669,0,761,62,707], + 0x463: [699,13,569,20,531], + 0x46A: [669,0,978,-22,918], + 0x46B: [449,13,844,-4,825], + 0x472: [685,18,722,53,717], + 0x473: [462,13,500,24,468], + 0x474: [678,18,667,66,750], + 0x475: [462,13,487,15,534], + 0x490: [834,0,539,-32,641], + 0x491: [590,9,360,31,457], + 0x2105: [683,14,847,52,795], + 0x2116: [675,15,1055,24,1031], + 0xE09C: [775,235,776,40,765], + 0xE09D: [775,235,759,44,779], + 0xE09E: [775,235,658,44,771], + 0xE0B3: [703,205,556,-188,517], + 0xE32D: [775,207,671,46,675], + 0xE32F: [775,207,664,-65,706], + 0xE331: [775,207,588,-100,671], + 0xE333: [775,207,571,46,547], + 0xE335: [775,207,508,44,515], + 0xE337: [775,207,505,-54,629], + 0xE339: [775,207,579,20,583], + 0xE33B: [775,207,615,46,602], + 0xE33D: [775,207,355,29,483], + 0xE33F: [775,207,594,35,656], + 0xE341: [775,207,598,18,642], + 0xE343: [775,207,697,-34,737], + 0xE345: [775,207,571,35,584], + 0xE347: [775,207,504,-54,629], + 0xE349: [775,235,500,32,506], + 0xE34B: [775,207,652,1,772], + 0xE34D: [775,207,636,27,652], + 0xE34F: [775,207,504,23,514], + 0xE351: [775,207,595,46,641], + 0xE353: [775,207,474,20,521], + 0xE355: [775,207,582,20,584], + 0xE357: [775,207,726,1,772], + 0xE359: [775,207,622,-41,730], + 0xE35B: [775,207,720,37,808], + 0xE35D: [775,207,782,24,795], + 0xE35F: [775,207,608,20,681], + 0xE361: [775,207,727,0,771], + 0xE363: [775,207,925,6,978], + 0xE367: [775,235,475,-35,509], + 0xE36B: [775,235,525,-68,651], + 0xE36F: [775,235,485,16,466], + 0xE373: [775,235,530,12,731], + 0xE375: [775,235,569,-50,592], + 0xE377: [775,207,571,46,547], + 0xE379: [775,207,601,46,579], + 0xE37B: [775,207,525,46,543], + 0xE37E: [775,235,792,-40,777], + 0xE380: [707,14,670,10,662], + 0xE382: [707,14,622,14,598], + 0xE384: [628,14,411,18,390], + 0xE386: [473,14,355,15,338], + 0xE388: [666,0,493,25,508], + 0xE389: [666,0,480,16,472], + 0xE3C5: [462,207,514,47,475], + 0xE3C6: [462,9,357,55,274], + 0xE400: [703,205,556,-188,517] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Alphabets-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Alphabets/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Italic/Main.js new file mode 100644 index 0000000..3832fd9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Italic/Main.js @@ -0,0 +1,207 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Alphabets-italic'] = { + directory: 'Alphabets/Italic', + family: 'STIXMathJax_Alphabets', + style: 'italic', + testString: '\u00A0\u0384\u0385\u0386\u0387\u0388\u0389\u038A\u038C\u038E\u038F\u0390\u03AA\u03AB\u03AC', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x384: [649,-494,289,160,322], + 0x385: [649,-494,333,70,387], + 0x386: [678,0,611,-51,564], + 0x387: [441,-330,333,150,261], + 0x388: [678,0,630,7,679], + 0x389: [678,0,740,4,821], + 0x38A: [678,0,350,3,429], + 0x38C: [678,18,722,58,699], + 0x38E: [678,0,580,8,725], + 0x38F: [678,0,762,-6,739], + 0x390: [649,11,278,49,387], + 0x3AA: [856,0,333,-8,460], + 0x3AB: [856,0,556,78,648], + 0x3AC: [649,11,552,27,549], + 0x3AD: [649,11,444,30,425], + 0x3AE: [649,205,474,14,442], + 0x3AF: [649,11,278,49,288], + 0x3B0: [649,10,478,19,446], + 0x3CA: [606,11,278,49,359], + 0x3CB: [606,10,478,19,446], + 0x3CC: [649,11,500,27,468], + 0x3CD: [649,10,478,19,446], + 0x3CE: [649,11,686,27,654], + 0x401: [856,0,611,1,631], + 0x402: [653,208,723,70,663], + 0x403: [914,0,569,-36,603], + 0x404: [666,18,657,67,680], + 0x405: [667,18,500,7,498], + 0x406: [653,0,333,-7,382], + 0x407: [856,0,333,-31,433], + 0x408: [653,18,444,-34,463], + 0x409: [653,16,961,-35,901], + 0x40A: [653,0,966,-28,906], + 0x40B: [653,0,786,70,701], + 0x40C: [914,0,621,-28,657], + 0x40E: [887,14,656,110,716], + 0x40F: [653,179,722,-25,747], + 0x410: [668,0,611,-49,566], + 0x411: [653,0,590,-28,603], + 0x412: [653,0,597,-23,571], + 0x413: [653,0,569,-36,603], + 0x414: [653,179,655,-103,696], + 0x415: [653,0,611,1,631], + 0x416: [661,0,956,-55,972], + 0x417: [668,16,564,9,548], + 0x418: [653,0,708,-25,749], + 0x419: [887,0,708,-25,749], + 0x41A: [661,0,621,-28,657], + 0x41B: [653,16,699,-35,740], + 0x41C: [653,0,814,-33,855], + 0x41D: [653,0,708,-26,749], + 0x41E: [666,18,712,60,699], + 0x41F: [653,0,704,-29,745], + 0x420: [653,0,568,-24,578], + 0x421: [666,18,667,67,690], + 0x422: [653,0,556,70,644], + 0x423: [653,14,656,110,716], + 0x424: [653,0,772,73,758], + 0x425: [653,0,575,-67,617], + 0x426: [653,179,706,-25,747], + 0x427: [653,0,622,54,663], + 0x428: [653,0,936,-14,977], + 0x429: [653,179,936,-14,977], + 0x42A: [653,0,695,63,652], + 0x42B: [653,0,852,-28,893], + 0x42C: [653,0,597,-28,537], + 0x42D: [666,18,658,15,636], + 0x42E: [666,18,877,-32,850], + 0x42F: [653,0,635,-49,676], + 0x430: [441,11,514,23,482], + 0x431: [683,11,498,36,535], + 0x432: [441,11,442,31,423], + 0x433: [441,11,390,1,384], + 0x434: [683,11,489,30,470], + 0x435: [441,11,440,34,422], + 0x436: [441,11,799,0,791], + 0x437: [441,11,376,-18,357], + 0x438: [441,11,527,29,495], + 0x439: [667,11,527,29,495], + 0x43A: [441,11,491,18,485], + 0x43B: [441,12,474,-44,442], + 0x43C: [432,12,633,-45,601], + 0x43D: [441,9,504,20,472], + 0x43E: [441,11,489,29,470], + 0x43F: [441,9,511,19,479], + 0x440: [441,205,483,-77,464], + 0x441: [441,11,441,27,422], + 0x442: [441,9,741,17,709], + 0x443: [441,206,421,-61,389], + 0x444: [683,205,702,29,677], + 0x445: [441,11,444,-35,439], + 0x446: [441,182,527,29,495], + 0x447: [441,9,482,42,450], + 0x448: [441,11,785,31,753], + 0x449: [441,182,785,31,753], + 0x44A: [441,11,567,12,528], + 0x44B: [441,11,689,50,657], + 0x44C: [441,11,471,50,433], + 0x44D: [441,11,408,7,391], + 0x44E: [441,11,674,21,655], + 0x44F: [432,9,481,-25,449], + 0x451: [606,11,440,34,475], + 0x452: [683,208,479,20,448], + 0x453: [664,11,390,1,455], + 0x454: [441,11,428,26,441], + 0x455: [442,13,389,-9,341], + 0x456: [654,11,278,43,258], + 0x457: [606,11,278,43,357], + 0x458: [652,207,278,-172,231], + 0x459: [441,12,679,-44,631], + 0x45A: [441,11,697,21,649], + 0x45B: [683,9,511,20,479], + 0x45C: [664,11,491,18,485], + 0x45E: [667,206,421,-61,417], + 0x45F: [441,182,527,29,495], + 0x462: [653,0,681,19,621], + 0x463: [683,11,542,13,504], + 0x46A: [653,0,953,-55,893], + 0x46B: [432,11,741,0,686], + 0x472: [666,18,712,60,699], + 0x473: [441,11,489,29,470], + 0x474: [662,18,646,76,742], + 0x475: [441,18,464,34,528], + 0x490: [783,0,524,-30,622], + 0x491: [507,11,337,42,404], + 0x2105: [676,14,855,47,808], + 0x2116: [668,15,1046,19,1031], + 0xE09C: [756,218,753,37,787], + 0xE09D: [756,218,706,42,732], + 0xE09E: [756,218,624,42,724], + 0xE0B3: [681,207,500,-141,504], + 0xE32C: [756,218,613,42,612], + 0xE32E: [756,218,595,-47,644], + 0xE330: [756,218,514,-58,634], + 0xE332: [756,218,536,40,522], + 0xE334: [756,218,478,29,491], + 0xE336: [756,218,440,11,482], + 0xE338: [756,218,512,32,536], + 0xE33A: [756,218,529,20,519], + 0xE33C: [756,217,326,-10,453], + 0xE33E: [756,218,546,57,558], + 0xE340: [756,218,557,52,619], + 0xE342: [756,217,630,0,696], + 0xE344: [756,218,466,32,495], + 0xE346: [756,218,454,9,468], + 0xE348: [756,240,533,27,498], + 0xE34A: [756,217,591,14,710], + 0xE34C: [756,218,584,32,591], + 0xE34E: [756,218,468,1,460], + 0xE350: [756,218,534,42,560], + 0xE352: [756,218,448,32,537], + 0xE354: [756,218,514,32,545], + 0xE356: [756,218,663,-2,690], + 0xE358: [756,218,632,4,700], + 0xE35A: [756,218,668,32,736], + 0xE35C: [756,217,733,42,758], + 0xE35E: [756,218,602,32,590], + 0xE360: [756,218,666,42,778], + 0xE362: [756,217,889,32,897], + 0xE366: [756,240,444,7,482], + 0xE36A: [756,240,528,-57,648], + 0xE36E: [756,240,457,31,445], + 0xE372: [756,240,528,8,715], + 0xE374: [756,240,533,-16,559], + 0xE376: [756,218,533,42,525], + 0xE378: [756,218,533,35,506], + 0xE37A: [756,218,477,42,539], + 0xE37D: [756,218,710,-50,694], + 0xE37F: [683,10,606,10,601], + 0xE381: [683,10,554,39,540], + 0xE383: [579,10,353,6,323], + 0xE385: [460,10,326,15,278], + 0xE387: [668,0,490,30,502], + 0xE389: [668,0,490,30,478], + 0xE400: [681,207,500,-141,504] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Alphabets-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Alphabets/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Regular/Main.js new file mode 100644 index 0000000..4e56d2a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Regular/Main.js @@ -0,0 +1,219 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'STIXMathJax_Alphabets', + testString: '\u00A0\u0384\u0385\u0386\u0387\u0388\u0389\u038A\u038C\u038E\u038F\u0390\u03AA\u03AB\u03AC', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x384: [662,-507,277,113,240], + 0x385: [662,-507,333,18,316], + 0x386: [683,0,722,15,707], + 0x387: [459,-348,278,81,192], + 0x388: [683,0,750,8,737], + 0x389: [683,0,850,8,836], + 0x38A: [683,0,470,8,449], + 0x38C: [683,14,722,8,688], + 0x38E: [683,0,840,8,818], + 0x38F: [683,0,744,8,715], + 0x390: [662,10,340,18,316], + 0x3AA: [873,0,333,18,316], + 0x3AB: [873,0,722,29,703], + 0x3AC: [662,10,543,29,529], + 0x3AD: [662,10,439,25,407], + 0x3AE: [662,217,512,10,452], + 0x3AF: [662,10,275,20,267], + 0x3B0: [662,10,524,16,494], + 0x3CA: [622,10,340,18,316], + 0x3CB: [622,10,524,16,494], + 0x3CC: [662,10,505,35,473], + 0x3CD: [662,10,524,16,494], + 0x3CE: [662,10,625,29,595], + 0x401: [872,0,629,22,607], + 0x402: [662,189,756,18,700], + 0x403: [928,0,571,19,544], + 0x404: [676,14,651,38,621], + 0x405: [676,14,556,62,510], + 0x406: [662,0,333,18,315], + 0x407: [872,0,333,25,323], + 0x408: [662,14,373,-6,354], + 0x409: [662,14,988,10,954], + 0x40A: [662,0,1017,19,983], + 0x40B: [662,0,803,18,786], + 0x40C: [928,0,690,19,686], + 0x40E: [915,15,711,15,694], + 0x40F: [662,153,715,19,696], + 0x410: [674,0,713,9,701], + 0x411: [662,0,611,19,577], + 0x412: [662,0,651,19,595], + 0x413: [662,0,571,19,544], + 0x414: [662,153,665,14,646], + 0x415: [662,0,629,22,607], + 0x416: [676,0,1021,8,1013], + 0x417: [676,14,576,28,545], + 0x418: [662,0,723,19,704], + 0x419: [915,0,723,19,704], + 0x41A: [676,0,690,19,686], + 0x41B: [662,14,683,9,664], + 0x41C: [662,0,893,19,871], + 0x41D: [662,0,726,19,704], + 0x41E: [676,14,729,36,690], + 0x41F: [662,0,724,19,705], + 0x420: [662,0,571,19,535], + 0x421: [676,14,677,36,641], + 0x422: [662,0,618,30,592], + 0x423: [662,15,711,15,694], + 0x424: [662,0,769,38,731], + 0x425: [662,0,716,9,703], + 0x426: [662,153,715,19,696], + 0x427: [662,0,657,3,639], + 0x428: [662,0,994,29,965], + 0x429: [662,153,994,29,965], + 0x42A: [662,0,737,13,703], + 0x42B: [662,0,884,19,865], + 0x42C: [662,0,612,19,578], + 0x42D: [676,14,651,30,613], + 0x42E: [676,14,902,19,863], + 0x42F: [662,0,637,3,618], + 0x430: [460,10,450,37,446], + 0x431: [685,10,507,39,478], + 0x432: [450,0,474,24,438], + 0x433: [450,0,394,17,387], + 0x434: [450,137,462,14,439], + 0x435: [460,10,466,38,437], + 0x436: [456,0,721,14,707], + 0x437: [460,10,390,14,357], + 0x438: [450,0,525,23,502], + 0x439: [704,0,525,23,502], + 0x43A: [456,0,503,23,495], + 0x43B: [450,10,499,8,476], + 0x43C: [450,0,617,23,594], + 0x43D: [450,0,525,23,502], + 0x43E: [460,10,512,35,476], + 0x43F: [450,0,525,23,502], + 0x440: [460,217,499,-2,463], + 0x441: [460,10,456,41,428], + 0x442: [450,0,434,8,426], + 0x443: [450,218,491,8,483], + 0x444: [662,217,678,43,635], + 0x445: [450,0,489,14,476], + 0x446: [450,137,525,23,502], + 0x447: [450,0,512,18,489], + 0x448: [450,0,768,23,745], + 0x449: [450,137,768,23,745], + 0x44A: [450,0,539,8,507], + 0x44B: [450,0,670,23,646], + 0x44C: [450,0,457,23,425], + 0x44D: [460,10,444,14,410], + 0x44E: [460,10,738,23,703], + 0x44F: [450,0,471,4,448], + 0x451: [622,10,466,38,437], + 0x452: [683,218,512,6,439], + 0x453: [679,0,394,17,387], + 0x454: [460,10,444,34,430], + 0x455: [459,10,389,49,346], + 0x456: [683,0,278,29,266], + 0x457: [622,0,278,1,299], + 0x458: [683,218,278,-77,187], + 0x459: [450,10,702,8,670], + 0x45A: [450,0,721,23,689], + 0x45B: [683,0,512,6,499], + 0x45C: [679,0,503,23,495], + 0x45E: [704,218,491,8,483], + 0x45F: [450,137,518,23,495], + 0x462: [662,0,746,26,713], + 0x463: [683,0,539,8,507], + 0x46A: [662,0,998,6,992], + 0x46B: [450,0,722,14,708], + 0x472: [676,14,729,36,690], + 0x473: [460,10,512,35,476], + 0x474: [676,11,766,16,760], + 0x475: [456,14,539,19,532], + 0x490: [803,0,571,19,544], + 0x491: [558,0,394,17,387], + 0x2105: [676,14,837,48,795], + 0x2107: [676,14,598,28,561], + 0x2116: [676,14,1012,7,966], + 0x2117: [676,14,760,38,722], + 0x211E: [667,101,780,69,763], + 0x2122: [662,-256,980,30,957], + 0x2125: [662,218,424,35,391], + 0x2126: [676,0,744,29,715], + 0x2129: [463,0,360,32,276], + 0x212B: [871,0,722,15,707], + 0x212E: [676,17,843,35,808], + 0x2142: [662,0,559,13,485], + 0x2143: [662,0,559,13,485], + 0x2144: [662,0,630,21,609], + 0x214A: [692,0,664,45,602], + 0x214B: [676,13,778,28,736], + 0x306E: [661,41,901,37,840], + 0xE053: [450,0,632,26,604], + 0xE054: [516,10,688,37,679], + 0xE055: [475,14,571,20,563], + 0xE056: [459,11,632,10,624], + 0xE057: [459,12,624,29,595], + 0xE05D: [459,10,452,16,436], + 0xE068: [683,287,524,9,487], + 0xE0A2: [460,218,561,24,539], + 0xE0B3: [683,218,541,32,457], + 0xE0BD: [662,218,710,15,660], + 0xE0BE: [757,218,1102,15,1073], + 0xE0DD: [933,0,516,73,445], + 0xE0DE: [933,0,500,57,439], + 0xE0DF: [754,0,778,92,699], + 0xE0E0: [920,0,500,40,444], + 0xE0E1: [757,0,389,81,318], + 0xE0E2: [754,0,500,60,429], + 0xE2FC: [756,218,722,15,707], + 0xE2FE: [756,217,667,17,593], + 0xE300: [756,217,587,11,577], + 0xE302: [756,218,722,48,675], + 0xE304: [756,217,611,12,597], + 0xE306: [756,217,612,10,598], + 0xE308: [756,217,722,18,703], + 0xE30A: [756,218,722,34,688], + 0xE30C: [756,218,333,-24,438], + 0xE30E: [756,217,731,33,723], + 0xE310: [756,218,702,15,687], + 0xE312: [756,217,889,12,864], + 0xE314: [756,218,722,12,707], + 0xE316: [756,217,643,29,614], + 0xE318: [756,218,722,34,688], + 0xE31A: [756,217,722,18,703], + 0xE31C: [756,218,557,16,565], + 0xE31E: [756,217,624,30,600], + 0xE320: [756,218,611,17,593], + 0xE322: [756,218,722,29,703], + 0xE324: [756,217,763,35,728], + 0xE326: [756,217,722,10,704], + 0xE328: [756,217,743,22,724], + 0xE32A: [756,217,744,29,715], + 0xE364: [756,240,673,55,665], + 0xE368: [756,218,557,8,645], + 0xE36C: [773,218,645,-72,675], + 0xE370: [756,218,708,7,668], + 0xE400: [683,218,541,32,457] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Alphabets"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Alphabets/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Bold/Main.js new file mode 100644 index 0000000..cbb0ad9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Bold/Main.js @@ -0,0 +1,62 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Arrows-bold'] = { + directory: 'Arrows/Bold', + family: 'STIXMathJax_Arrows', + weight: 'bold', + testString: '\u00A0\u219C\u219D\u219F\u21A1\u21A4\u21A5\u21A7\u21A8\u21AF\u21B2\u21B3\u21B4\u21B5\u21B8', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x219C: [462,-72,956,66,890], + 0x219D: [462,-72,956,66,890], + 0x219F: [676,165,568,86,482], + 0x21A1: [676,165,568,86,482], + 0x21A4: [451,-55,977,68,909], + 0x21A5: [676,165,584,94,490], + 0x21A7: [676,165,584,94,490], + 0x21A8: [732,196,584,94,490], + 0x21AF: [683,154,562,68,494], + 0x21B2: [686,170,584,45,503], + 0x21B3: [686,170,584,81,539], + 0x21B4: [686,162,960,66,894], + 0x21B5: [686,171,960,56,904], + 0x21B8: [768,170,977,68,911], + 0x21B9: [618,114,977,68,909], + 0x21C5: [676,165,864,66,798], + 0x21D6: [662,156,926,54,872], + 0x21D7: [662,156,926,54,872], + 0x21D8: [662,156,926,54,872], + 0x21D9: [662,156,926,54,872], + 0x21DC: [451,-55,977,62,914], + 0x21E6: [551,45,926,60,866], + 0x21E7: [662,156,685,45,641], + 0x21E8: [551,45,926,60,866], + 0x21E9: [662,156,685,45,641], + 0x21EA: [705,201,685,45,641], + 0x21F5: [676,165,864,66,798], + 0xE0B4: [555,-209,282,42,239], + 0xE0B5: [555,-209,282,43,240], + 0xE0B6: [478,-56,0,15,142] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Arrows-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Arrows/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Regular/Main.js new file mode 100644 index 0000000..41c87b3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Regular/Main.js @@ -0,0 +1,249 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'STIXMathJax_Arrows', + testString: '\u00A0\u219C\u219D\u219F\u21A1\u21A4\u21A5\u21A7\u21A8\u21AF\u21B2\u21B3\u21B4\u21B5\u21B8', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x219C: [411,-102,926,70,856], + 0x219D: [411,-102,926,70,856], + 0x219F: [662,154,511,60,451], + 0x21A1: [662,154,511,60,451], + 0x21A4: [450,-57,926,70,857], + 0x21A5: [662,154,511,60,451], + 0x21A7: [662,154,511,59,451], + 0x21A8: [662,154,511,59,451], + 0x21AF: [662,154,511,60,451], + 0x21B2: [662,154,463,25,419], + 0x21B3: [662,154,463,39,433], + 0x21B4: [662,154,926,70,856], + 0x21B5: [662,156,926,70,856], + 0x21B8: [732,156,926,55,872], + 0x21B9: [598,92,926,60,866], + 0x21C5: [662,156,773,31,742], + 0x21D6: [662,156,926,55,874], + 0x21D7: [662,156,926,55,874], + 0x21D8: [662,156,926,55,874], + 0x21D9: [662,156,926,55,874], + 0x21DC: [449,-58,926,60,866], + 0x21DE: [662,156,511,60,451], + 0x21DF: [662,156,511,60,451], + 0x21E1: [662,156,511,60,451], + 0x21E3: [662,156,511,60,451], + 0x21E4: [450,-58,926,60,866], + 0x21E5: [450,-58,926,60,866], + 0x21E6: [551,45,926,60,866], + 0x21E7: [662,156,685,45,641], + 0x21E8: [551,45,926,60,866], + 0x21E9: [662,156,685,45,641], + 0x21EA: [690,184,685,45,641], + 0x21F4: [448,-57,926,70,856], + 0x21F5: [662,156,773,31,742], + 0x21F6: [739,232,926,60,866], + 0x21F7: [450,-58,926,60,866], + 0x21F8: [450,-58,926,55,861], + 0x21F9: [450,-58,926,48,878], + 0x21FA: [450,-58,926,60,866], + 0x21FB: [450,-58,926,60,866], + 0x21FC: [450,-58,926,38,888], + 0x21FD: [449,-57,926,60,866], + 0x21FE: [449,-57,926,60,866], + 0x21FF: [449,-57,926,20,906], + 0x27F0: [662,156,1033,69,965], + 0x27F1: [662,156,1033,69,965], + 0x27F2: [626,116,974,54,882], + 0x27F3: [626,116,974,92,920], + 0x27F4: [569,61,1200,52,1147], + 0x27FB: [450,-57,1574,55,1519], + 0x27FD: [551,45,1574,55,1519], + 0x27FE: [551,45,1574,55,1519], + 0x27FF: [449,-58,1574,55,1519], + 0x2900: [450,-57,926,56,871], + 0x2901: [450,-57,926,55,871], + 0x2902: [551,45,926,55,871], + 0x2903: [551,45,926,55,871], + 0x2904: [551,45,926,20,906], + 0x2905: [450,-57,926,55,871], + 0x2906: [551,45,926,55,871], + 0x2907: [551,45,926,55,871], + 0x2908: [662,156,511,59,452], + 0x2909: [662,156,511,59,452], + 0x290A: [662,156,926,71,854], + 0x290B: [662,156,926,72,855], + 0x290C: [449,-57,926,55,871], + 0x290D: [449,-57,926,55,871], + 0x290E: [449,-57,926,55,871], + 0x290F: [449,-57,926,55,871], + 0x2910: [449,-57,1412,55,1357], + 0x2911: [449,-57,926,55,873], + 0x2912: [662,156,511,59,452], + 0x2913: [662,156,511,59,452], + 0x2914: [450,-57,926,55,871], + 0x2915: [450,-57,926,55,871], + 0x2916: [449,-57,926,55,871], + 0x2917: [450,-57,926,55,871], + 0x2918: [450,-57,926,50,876], + 0x2919: [449,-57,926,55,871], + 0x291A: [449,-57,926,55,871], + 0x291B: [449,-57,926,55,871], + 0x291C: [449,-57,926,55,871], + 0x291D: [449,-57,926,55,871], + 0x291E: [449,-57,926,55,871], + 0x291F: [450,-57,926,55,871], + 0x2920: [450,-57,926,55,871], + 0x2921: [662,156,926,55,871], + 0x2922: [660,156,926,55,873], + 0x2923: [662,156,926,55,871], + 0x2924: [662,156,926,55,871], + 0x2925: [662,156,926,55,871], + 0x2926: [662,156,926,55,871], + 0x2927: [662,156,926,55,873], + 0x2928: [662,156,926,53,871], + 0x2929: [662,156,926,53,871], + 0x292A: [662,156,926,55,873], + 0x292B: [662,156,926,55,871], + 0x292C: [662,156,926,55,871], + 0x292D: [662,156,926,55,871], + 0x292E: [662,156,926,55,871], + 0x292F: [662,156,926,55,871], + 0x2930: [662,154,926,55,873], + 0x2931: [662,156,926,54,870], + 0x2932: [662,156,926,55,871], + 0x2933: [449,-57,926,55,871], + 0x2934: [562,0,926,141,797], + 0x2935: [562,0,926,141,797], + 0x2936: [493,163,784,87,649], + 0x2937: [493,163,784,135,697], + 0x2938: [657,153,511,70,415], + 0x2939: [657,153,511,96,441], + 0x293A: [423,-78,926,69,866], + 0x293B: [423,-78,926,60,857], + 0x293C: [423,-64,926,59,856], + 0x293D: [423,29,926,69,866], + 0x293E: [563,116,926,69,856], + 0x293F: [563,116,926,69,856], + 0x2940: [788,116,926,92,834], + 0x2941: [788,116,926,92,834], + 0x2942: [598,92,926,55,871], + 0x2943: [598,92,926,55,871], + 0x2944: [598,92,926,55,871], + 0x2945: [449,69,926,55,871], + 0x2946: [449,69,926,55,871], + 0x2947: [449,-57,926,55,871], + 0x2948: [449,-57,926,38,888], + 0x2949: [662,154,511,60,451], + 0x294A: [439,-67,926,38,888], + 0x294B: [439,-67,926,38,888], + 0x294C: [662,156,511,69,441], + 0x294D: [662,156,511,69,441], + 0x294E: [439,-220,926,38,888], + 0x294F: [662,156,511,222,441], + 0x2950: [286,-67,926,38,888], + 0x2951: [662,156,511,69,288], + 0x2952: [448,-58,926,55,871], + 0x2953: [448,-58,926,55,871], + 0x2954: [662,156,511,60,451], + 0x2955: [662,156,511,60,451], + 0x2956: [448,-58,926,55,871], + 0x2957: [448,-58,926,55,871], + 0x2958: [662,156,511,60,451], + 0x2959: [662,156,511,60,451], + 0x295A: [448,-58,926,55,871], + 0x295B: [448,-58,926,55,871], + 0x295C: [662,156,511,60,451], + 0x295D: [662,156,511,60,451], + 0x295E: [448,-58,926,55,871], + 0x295F: [448,-58,926,55,871], + 0x2960: [662,156,511,59,450], + 0x2961: [662,156,511,59,450], + 0x2962: [539,33,926,55,871], + 0x2963: [662,156,685,57,629], + 0x2964: [539,33,926,55,871], + 0x2965: [662,156,685,57,629], + 0x2966: [539,-120,926,55,871], + 0x2967: [386,33,926,55,871], + 0x2968: [539,-120,926,55,871], + 0x2969: [386,33,926,55,871], + 0x296A: [539,-120,926,55,871], + 0x296B: [386,33,926,55,871], + 0x296C: [539,-120,926,55,871], + 0x296D: [386,33,926,55,871], + 0x296E: [662,156,685,57,629], + 0x296F: [662,156,685,57,629], + 0x2970: [386,-120,926,55,871], + 0x2971: [565,-57,926,55,871], + 0x2972: [508,-57,926,55,871], + 0x2973: [449,2,926,55,871], + 0x2974: [449,2,926,55,871], + 0x2975: [449,141,926,55,871], + 0x2976: [607,283,685,64,621], + 0x2977: [532,26,926,45,871], + 0x2978: [608,282,685,64,621], + 0x2979: [627,262,685,64,621], + 0x297A: [532,26,926,45,871], + 0x297B: [627,262,685,63,620], + 0x297C: [511,5,926,135,791], + 0x297D: [511,5,926,135,791], + 0x297E: [581,75,685,84,600], + 0x297F: [581,75,685,84,600], + 0xE0B4: [556,-220,313,55,258], + 0xE0B5: [556,-220,313,55,258], + 0xE0B6: [449,-57,0,30,124], + 0xE112: [662,156,926,55,872], + 0xE113: [662,156,926,55,872], + 0xE114: [662,156,926,54,871], + 0xE115: [662,156,926,54,871], + 0xE11A: [662,156,511,59,451], + 0xE11B: [662,156,511,59,451], + 0xE11C: [662,156,926,54,872], + 0xE11D: [662,156,926,54,872], + 0xE11E: [662,156,926,54,872], + 0xE11F: [662,156,926,54,872], + 0xE120: [411,-94,511,220,293], + 0xE121: [290,-217,311,-3,314], + 0xE122: [382,-123,367,54,313], + 0xE123: [383,-124,367,54,313], + 0xE124: [662,156,511,59,451], + 0xE125: [662,156,511,59,451], + 0xE126: [449,-57,926,54,872], + 0xE127: [449,-57,926,54,872], + 0xE128: [662,155,926,54,872], + 0xE129: [662,156,926,55,872], + 0xE12A: [662,156,926,54,871], + 0xE12B: [661,156,926,54,872], + 0xE12C: [404,-101,511,220,293], + 0xE12D: [403,-100,511,220,293], + 0xE12E: [290,-217,371,14,317], + 0xE12F: [290,-217,371,54,357], + 0xE130: [373,-134,379,70,309], + 0xE131: [373,-134,379,70,309], + 0xE132: [373,-134,379,70,309], + 0xE133: [373,-134,379,70,309], + 0xE134: [486,-20,315,0,315], + 0xE135: [405,-101,926,230,696], + 0xE136: [541,35,315,0,315], + 0xE137: [405,-101,1033,229,805] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Arrows"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Arrows/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Bold/Main.js new file mode 100644 index 0000000..86e4921 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Bold/Main.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_DoubleStruck-bold'] = { + directory: 'DoubleStruck/Bold', + family: 'STIXMathJax_DoubleStruck', + weight: 'bold', + testString: '\u00A0\u2102\u210D\u2115\u2119\u211A\u211D\u2124\u213C\u213D\u213E\u213F\u2140\uD835\uDD38\uD835\uDD39', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2102: [691,19,727,45,672], + 0x210D: [676,0,768,75,693], + 0x2115: [676,0,738,75,663], + 0x2119: [676,0,700,75,670], + 0x211A: [691,64,797,45,747], + 0x211D: [676,0,783,75,758], + 0x2124: [691,0,777,52,727], + 0x213C: [461,11,804,55,759], + 0x213D: [486,203,646,23,624], + 0x213E: [676,0,497,75,643], + 0x213F: [676,0,768,75,693], + 0x2140: [773,269,976,36,952], + 0x1D538: [676,0,787,50,737], + 0x1D539: [676,0,729,75,669], + 0x1D53B: [676,0,748,75,703], + 0x1D53C: [676,0,650,75,595], + 0x1D53D: [676,0,474,75,595], + 0x1D53E: [691,19,751,45,686], + 0x1D540: [676,0,380,80,300], + 0x1D541: [676,19,618,50,548], + 0x1D542: [676,0,792,75,767], + 0x1D543: [676,0,662,70,607], + 0x1D544: [676,0,914,75,839], + 0x1D546: [691,19,787,45,742], + 0x1D54A: [692,19,702,45,657], + 0x1D54B: [676,0,556,25,645], + 0x1D54C: [676,19,738,70,668], + 0x1D54D: [676,0,627,17,704], + 0x1D54E: [676,0,996,17,1015], + 0x1D54F: [676,0,794,20,769], + 0x1D550: [676,0,652,23,739], + 0x1D552: [473,14,623,50,563], + 0x1D553: [676,14,643,60,593], + 0x1D554: [473,14,574,50,524], + 0x1D555: [676,14,643,50,583], + 0x1D556: [473,14,573,50,523], + 0x1D557: [676,0,474,25,536], + 0x1D558: [473,205,643,50,583], + 0x1D559: [676,0,624,60,564], + 0x1D55A: [691,0,330,65,265], + 0x1D55B: [691,205,371,-20,311], + 0x1D55C: [676,0,646,60,621], + 0x1D55D: [676,0,325,60,265], + 0x1D55E: [473,0,908,60,848], + 0x1D55F: [473,0,624,60,564], + 0x1D560: [473,14,598,45,553], + 0x1D561: [473,205,643,60,593], + 0x1D562: [473,205,643,50,583], + 0x1D563: [473,0,339,60,445], + 0x1D564: [473,14,549,52,497], + 0x1D565: [676,14,446,25,411], + 0x1D566: [461,16,619,55,559], + 0x1D567: [461,0,494,6,544], + 0x1D568: [461,0,786,22,789], + 0x1D569: [461,0,660,25,635], + 0x1D56A: [461,205,471,-9,537], + 0x1D56B: [461,0,513,40,473] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_DoubleStruck-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/DoubleStruck/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js new file mode 100644 index 0000000..ffa739a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_DoubleStruck-bold-italic'] = { + directory: 'DoubleStruck/BoldItalic', + family: 'STIXMathJax_DoubleStruck', + weight: 'bold', + style: 'italic', + testString: '\u00A0\u2102\u210D\u2115\u2119\u211A\u211D\u2124\u213C\u213F\u2145\u2146\u2147\u2148\u2149', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2102: [685,14,713,35,704], + 0x210D: [669,0,773,21,808], + 0x2115: [669,0,760,27,783], + 0x2119: [669,0,497,18,715], + 0x211A: [685,74,754,35,734], + 0x211D: [669,0,727,18,718], + 0x2124: [669,0,807,23,837], + 0x213C: [449,13,730,32,715], + 0x213F: [669,0,796,35,821], + 0x2145: [669,0,748,18,733], + 0x2146: [699,13,633,45,698], + 0x2147: [462,13,575,45,540], + 0x2148: [669,0,379,40,413], + 0x2149: [669,205,421,-93,455] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_DoubleStruck-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/DoubleStruck/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Italic/Main.js new file mode 100644 index 0000000..f6cd30b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Italic/Main.js @@ -0,0 +1,46 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_DoubleStruck-italic'] = { + directory: 'DoubleStruck/Italic', + family: 'STIXMathJax_DoubleStruck', + style: 'italic', + testString: '\u00A0\u2102\u210D\u2115\u2119\u211A\u211D\u2124\u213C\u213F\u2145\u2146\u2147\u2148\u2149', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2102: [666,18,702,35,702], + 0x210D: [653,0,732,17,767], + 0x2115: [653,0,727,25,755], + 0x2119: [653,0,687,17,686], + 0x211A: [666,71,723,35,713], + 0x211D: [653,0,687,17,686], + 0x2124: [653,0,754,7,750], + 0x213C: [428,12,635,40,630], + 0x213F: [653,0,750,30,780], + 0x2145: [653,0,713,17,703], + 0x2146: [683,11,581,40,634], + 0x2147: [441,11,515,40,485], + 0x2148: [653,0,293,27,346], + 0x2149: [653,217,341,-104,394] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_DoubleStruck-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/DoubleStruck/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..92d81bd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Regular/Main.js @@ -0,0 +1,98 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'STIXMathJax_DoubleStruck', + testString: '\u00A0\u2102\u210D\u2115\u2119\u211A\u211D\u2124\u213C\u213D\u213E\u213F\u2140\uD835\uDD38\uD835\uDD39', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2102: [676,14,705,45,663], + 0x210D: [662,0,718,70,648], + 0x2115: [662,0,698,70,628], + 0x2119: [662,0,678,70,628], + 0x211A: [676,65,765,45,715], + 0x211D: [662,0,747,70,712], + 0x2124: [662,0,727,50,677], + 0x213C: [450,12,673,25,645], + 0x213D: [460,218,540,0,526], + 0x213E: [662,0,469,70,567], + 0x213F: [662,0,718,70,648], + 0x2140: [763,259,923,61,882], + 0x1D538: [662,0,741,50,691], + 0x1D539: [662,0,676,70,626], + 0x1D53B: [662,0,722,70,677], + 0x1D53C: [662,0,622,70,567], + 0x1D53D: [662,0,469,70,567], + 0x1D53E: [676,13,706,45,664], + 0x1D540: [662,0,322,78,244], + 0x1D541: [662,14,560,40,495], + 0x1D542: [674,0,735,70,729], + 0x1D543: [662,0,591,70,571], + 0x1D544: [662,0,855,70,785], + 0x1D546: [676,14,760,45,715], + 0x1D54A: [676,14,636,35,597], + 0x1D54B: [662,0,527,20,622], + 0x1D54C: [662,14,698,65,633], + 0x1D54D: [662,0,568,12,653], + 0x1D54E: [662,0,920,12,949], + 0x1D54F: [662,0,768,35,733], + 0x1D550: [662,0,563,12,685], + 0x1D552: [460,10,561,45,506], + 0x1D553: [683,10,565,50,524], + 0x1D554: [460,10,520,45,475], + 0x1D555: [683,10,574,45,519], + 0x1D556: [460,10,523,45,478], + 0x1D557: [683,0,368,25,431], + 0x1D558: [460,218,574,45,519], + 0x1D559: [683,0,544,55,489], + 0x1D55A: [683,0,258,55,203], + 0x1D55B: [683,217,305,-15,250], + 0x1D55C: [683,0,551,50,539], + 0x1D55D: [683,0,258,55,203], + 0x1D55E: [460,0,830,55,775], + 0x1D55F: [460,0,544,55,489], + 0x1D560: [458,12,553,45,508], + 0x1D561: [460,218,574,55,529], + 0x1D562: [460,218,574,45,519], + 0x1D563: [462,0,301,55,407], + 0x1D564: [460,10,519,36,483], + 0x1D565: [633,10,329,20,297], + 0x1D566: [450,10,544,55,489], + 0x1D567: [450,0,443,20,479], + 0x1D568: [450,0,676,20,695], + 0x1D569: [450,0,560,30,530], + 0x1D56A: [450,218,468,20,510], + 0x1D56B: [450,0,519,43,476], + 0x1D7D8: [676,14,540,28,512], + 0x1D7D9: [693,0,540,91,355], + 0x1D7DA: [676,0,547,48,514], + 0x1D7DB: [676,14,540,49,478], + 0x1D7DC: [676,0,540,20,524], + 0x1D7DD: [662,14,540,35,489], + 0x1D7DE: [676,14,540,28,512], + 0x1D7DF: [662,0,540,24,511], + 0x1D7E0: [676,14,540,28,512], + 0x1D7E1: [676,12,540,28,512] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_DoubleStruck"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/DoubleStruck/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Bold/Main.js new file mode 100644 index 0000000..7c33ba2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Bold/Main.js @@ -0,0 +1,87 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Fraktur-bold'] = { + directory: 'Fraktur/Bold', + family: 'STIXMathJax_Fraktur', + weight: 'bold', + testString: '\u00A0\u210C\u2128\u212D\uD835\uDD6C\uD835\uDD6D\uD835\uDD6E\uD835\uDD6F\uD835\uDD70\uD835\uDD71\uD835\uDD72\uD835\uDD73\uD835\uDD74\uD835\uDD75\uD835\uDD76', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210C: [701,205,843,42,795], + 0x2128: [701,195,755,44,703], + 0x212D: [701,19,773,54,731], + 0x1D56C: [701,25,856,50,805], + 0x1D56D: [701,19,849,50,794], + 0x1D56E: [701,19,773,54,731], + 0x1D56F: [701,19,891,54,836], + 0x1D570: [701,19,788,54,731], + 0x1D571: [701,205,803,54,748], + 0x1D572: [701,19,833,54,781], + 0x1D573: [701,205,843,42,795], + 0x1D574: [701,25,790,54,735], + 0x1D575: [701,205,803,54,748], + 0x1D576: [701,25,864,42,814], + 0x1D577: [701,25,699,51,645], + 0x1D578: [701,25,1133,50,1081], + 0x1D579: [701,25,862,50,810], + 0x1D57A: [701,19,909,54,854], + 0x1D57B: [701,205,850,50,795], + 0x1D57C: [701,59,930,54,902], + 0x1D57D: [701,25,884,50,841], + 0x1D57E: [701,19,852,54,802], + 0x1D57F: [701,25,793,54,740], + 0x1D580: [701,25,860,54,809], + 0x1D581: [701,19,855,50,800], + 0x1D582: [701,19,1121,50,1066], + 0x1D583: [701,25,819,50,775], + 0x1D584: [701,205,837,50,782], + 0x1D585: [701,195,755,44,703], + 0x1D586: [475,24,600,55,545], + 0x1D587: [695,24,559,45,504], + 0x1D588: [475,24,464,55,412], + 0x1D589: [694,25,557,48,502], + 0x1D58A: [475,24,476,55,427], + 0x1D58B: [700,214,370,33,352], + 0x1D58C: [475,219,566,55,506], + 0x1D58D: [695,219,576,45,516], + 0x1D58E: [697,24,429,35,379], + 0x1D58F: [697,219,389,40,337], + 0x1D590: [695,24,456,48,402], + 0x1D591: [695,24,433,45,379], + 0x1D592: [475,24,984,40,932], + 0x1D593: [475,24,696,40,644], + 0x1D594: [475,24,554,45,499], + 0x1D595: [593,219,640,36,585], + 0x1D596: [475,219,574,55,522], + 0x1D597: [475,24,525,40,493], + 0x1D598: [643,31,557,52,505], + 0x1D599: [656,23,438,45,378], + 0x1D59A: [475,24,681,35,629], + 0x1D59B: [593,24,573,55,526], + 0x1D59C: [593,24,850,55,795], + 0x1D59D: [475,209,521,50,489], + 0x1D59E: [593,219,596,55,536], + 0x1D59F: [475,219,484,36,437] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Fraktur-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Regular/Main.js new file mode 100644 index 0000000..242354f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Regular/Main.js @@ -0,0 +1,81 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'STIXMathJax_Fraktur', + testString: '\u00A0\u210C\u2128\u212D\uD835\uDD04\uD835\uDD05\uD835\uDD07\uD835\uDD08\uD835\uDD09\uD835\uDD0A\uD835\uDD0D\uD835\uDD0E\uD835\uDD0F\uD835\uDD10\uD835\uDD11', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210C: [695,204,824,43,773], + 0x2128: [695,204,726,50,676], + 0x212D: [695,24,717,47,675], + 0x1D504: [695,22,785,47,742], + 0x1D505: [704,24,822,48,774], + 0x1D507: [695,24,868,50,817], + 0x1D508: [695,24,729,50,678], + 0x1D509: [695,204,767,50,716], + 0x1D50A: [695,24,806,50,755], + 0x1D50D: [695,204,772,50,721], + 0x1D50E: [695,22,846,50,801], + 0x1D50F: [695,24,669,47,626], + 0x1D510: [695,22,1083,50,1031], + 0x1D511: [695,22,827,50,775], + 0x1D512: [695,24,837,37,786], + 0x1D513: [695,204,823,40,773], + 0x1D514: [695,64,865,37,814], + 0x1D516: [695,24,856,55,801], + 0x1D517: [695,24,766,47,722], + 0x1D518: [696,22,787,50,744], + 0x1D519: [695,24,831,48,781], + 0x1D51A: [695,24,1075,48,1025], + 0x1D51B: [695,31,763,46,735], + 0x1D51C: [695,204,766,47,714], + 0x1D51E: [468,18,530,51,479], + 0x1D51F: [695,18,513,46,462], + 0x1D520: [468,18,385,57,344], + 0x1D521: [695,18,506,45,455], + 0x1D522: [468,18,420,47,379], + 0x1D523: [694,209,327,27,316], + 0x1D524: [468,209,499,51,461], + 0x1D525: [695,209,528,48,476], + 0x1D526: [694,18,384,42,338], + 0x1D527: [695,209,345,44,311], + 0x1D528: [695,18,420,48,368], + 0x1D529: [695,18,398,46,350], + 0x1D52A: [468,25,910,59,856], + 0x1D52B: [468,25,636,60,582], + 0x1D52C: [468,18,503,50,452], + 0x1D52D: [586,209,555,38,504], + 0x1D52E: [468,209,507,51,459], + 0x1D52F: [468,18,463,38,426], + 0x1D530: [623,24,518,49,469], + 0x1D531: [656,18,374,38,337], + 0x1D532: [478,18,647,60,593], + 0x1D533: [586,18,515,47,464], + 0x1D534: [586,25,759,41,708], + 0x1D535: [468,189,456,45,406], + 0x1D536: [586,209,516,48,464], + 0x1D537: [468,209,457,43,407] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Fraktur"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Bold/Main.js new file mode 100644 index 0000000..60e5494 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Bold/Main.js @@ -0,0 +1,283 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Latin-bold'] = { + directory: 'Latin/Bold', + family: 'STIXMathJax_Latin', + weight: 'bold', + testString: '\u00A0\u00A1\u00A2\u00A4\u00A6\u00A9\u00AA\u00AB\u00AD\u00B2\u00B3\u00B6\u00B8\u00B9\u00BA', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xA1: [501,203,333,82,252], + 0xA2: [588,140,500,53,458], + 0xA4: [542,10,500,-26,526], + 0xA6: [691,19,220,66,154], + 0xA9: [691,19,747,26,721], + 0xAA: [688,-397,300,-1,301], + 0xAB: [415,-36,500,23,473], + 0xAD: [287,-171,333,44,287], + 0xB2: [688,-275,300,0,300], + 0xB3: [688,-268,300,3,297], + 0xB6: [676,186,639,60,579], + 0xB8: [0,218,333,68,294], + 0xB9: [688,-275,300,28,273], + 0xBA: [688,-397,330,18,312], + 0xBB: [415,-36,500,27,477], + 0xBC: [688,12,750,28,743], + 0xBD: [688,12,750,-7,775], + 0xBE: [688,12,750,23,733], + 0xBF: [501,201,500,55,443], + 0xC0: [963,0,722,9,689], + 0xC1: [963,0,722,9,689], + 0xC2: [954,0,722,9,689], + 0xC3: [924,0,722,9,689], + 0xC4: [916,0,722,9,689], + 0xC5: [1000,0,722,9,689], + 0xC6: [676,0,1000,4,951], + 0xC7: [691,218,722,49,687], + 0xC8: [963,0,667,16,641], + 0xC9: [963,0,667,16,641], + 0xCA: [954,0,667,16,641], + 0xCB: [916,0,667,16,641], + 0xCC: [963,0,389,20,370], + 0xCD: [963,0,389,20,370], + 0xCE: [954,0,389,20,370], + 0xCF: [916,0,389,20,370], + 0xD0: [676,0,722,6,690], + 0xD1: [924,18,722,16,701], + 0xD2: [963,19,778,35,743], + 0xD3: [963,19,778,35,743], + 0xD4: [954,19,778,35,743], + 0xD5: [924,19,778,35,743], + 0xD6: [916,19,778,35,743], + 0xD8: [737,74,778,35,743], + 0xD9: [963,19,722,16,701], + 0xDA: [963,19,722,16,701], + 0xDB: [954,19,722,16,701], + 0xDC: [916,19,722,16,701], + 0xDD: [963,0,722,15,699], + 0xDE: [676,0,611,16,600], + 0xDF: [691,12,556,19,517], + 0xE0: [713,14,500,25,488], + 0xE1: [713,14,500,25,488], + 0xE2: [704,14,500,25,488], + 0xE3: [674,14,500,25,488], + 0xE4: [666,14,500,25,488], + 0xE5: [752,14,500,25,488], + 0xE6: [473,14,722,33,694], + 0xE7: [473,218,444,25,430], + 0xE8: [713,14,444,25,427], + 0xE9: [713,14,444,25,427], + 0xEA: [704,14,444,25,427], + 0xEB: [666,14,444,25,427], + 0xEC: [713,0,278,14,257], + 0xED: [713,0,278,15,258], + 0xEE: [704,0,278,-29,308], + 0xEF: [666,0,278,-29,310], + 0xF1: [674,0,556,21,539], + 0xF2: [713,14,500,25,476], + 0xF3: [713,14,500,25,476], + 0xF4: [704,14,500,25,476], + 0xF5: [674,14,500,25,476], + 0xF6: [666,14,500,25,476], + 0xF8: [549,92,500,25,476], + 0xF9: [713,14,556,16,538], + 0xFA: [713,14,556,16,538], + 0xFB: [704,14,556,16,538], + 0xFC: [666,14,556,16,538], + 0xFD: [713,205,500,16,482], + 0xFE: [676,205,556,19,524], + 0xFF: [666,205,500,16,482], + 0x100: [810,0,722,9,689], + 0x101: [600,14,500,25,488], + 0x102: [901,0,722,9,689], + 0x103: [691,14,500,25,488], + 0x104: [690,205,722,9,721], + 0x105: [473,205,500,25,569], + 0x106: [923,19,722,49,687], + 0x107: [713,14,444,25,430], + 0x108: [914,19,722,49,687], + 0x109: [704,14,444,25,430], + 0x10A: [876,19,722,49,687], + 0x10B: [666,14,444,25,430], + 0x10C: [914,19,722,49,687], + 0x10D: [704,14,444,25,430], + 0x10E: [914,0,722,14,690], + 0x10F: [709,14,680,25,710], + 0x110: [676,0,722,6,690], + 0x111: [676,14,556,25,534], + 0x112: [810,0,667,16,641], + 0x113: [600,14,444,25,427], + 0x114: [901,0,667,16,641], + 0x115: [691,14,444,25,427], + 0x116: [876,0,667,16,641], + 0x117: [666,14,444,25,427], + 0x118: [676,205,667,16,641], + 0x119: [473,205,444,25,435], + 0x11A: [914,0,667,16,641], + 0x11B: [704,14,444,25,427], + 0x11C: [914,19,778,37,755], + 0x11D: [704,206,500,28,483], + 0x11E: [901,19,778,37,755], + 0x11F: [691,206,500,28,483], + 0x120: [876,19,778,37,755], + 0x121: [666,206,500,28,483], + 0x122: [691,378,778,37,755], + 0x123: [863,206,500,28,483], + 0x124: [914,0,778,21,759], + 0x125: [914,0,556,15,534], + 0x126: [676,0,778,21,759], + 0x128: [884,0,389,14,379], + 0x129: [674,0,278,-47,318], + 0x12A: [810,0,389,20,370], + 0x12B: [600,0,278,-25,305], + 0x12C: [900,0,389,20,370], + 0x12D: [691,0,278,-11,292], + 0x12E: [676,205,389,20,389], + 0x12F: [691,205,278,15,321], + 0x130: [876,0,389,20,370], + 0x132: [676,96,838,20,917], + 0x133: [691,203,552,15,531], + 0x134: [914,96,500,3,479], + 0x135: [704,203,333,-57,335], + 0x136: [676,378,778,30,769], + 0x137: [676,378,556,22,543], + 0x138: [470,0,600,19,627], + 0x139: [923,0,667,19,638], + 0x13A: [923,0,278,15,260], + 0x13B: [676,378,667,19,638], + 0x13C: [676,378,278,15,256], + 0x13D: [691,0,667,19,638], + 0x13E: [709,0,457,15,442], + 0x13F: [676,0,667,19,638], + 0x140: [676,0,414,15,441], + 0x141: [676,0,667,18,638], + 0x142: [676,0,278,-22,303], + 0x143: [923,18,722,16,701], + 0x144: [713,0,556,21,539], + 0x145: [676,378,722,16,701], + 0x146: [473,378,556,21,539], + 0x147: [914,18,722,16,701], + 0x148: [704,0,556,21,539], + 0x149: [709,0,705,13,693], + 0x14A: [676,96,732,14,712], + 0x14B: [473,205,556,21,490], + 0x14C: [810,19,778,35,743], + 0x14D: [600,14,500,25,476], + 0x14E: [901,19,778,35,743], + 0x14F: [691,14,500,25,476], + 0x150: [923,19,778,35,743], + 0x151: [713,14,500,25,476], + 0x152: [684,5,1000,22,981], + 0x153: [473,14,722,22,696], + 0x154: [923,0,722,26,716], + 0x155: [713,0,444,28,434], + 0x156: [676,378,722,26,716], + 0x157: [473,378,444,28,434], + 0x158: [914,0,722,26,716], + 0x159: [704,0,444,28,434], + 0x15A: [923,19,556,35,513], + 0x15B: [713,14,389,25,364], + 0x15C: [914,19,556,35,513], + 0x15D: [704,14,389,22,361], + 0x15E: [692,218,556,35,513], + 0x15F: [473,218,389,25,361], + 0x160: [914,19,556,35,513], + 0x161: [704,14,389,22,361], + 0x162: [676,218,667,31,636], + 0x163: [630,218,333,19,332], + 0x164: [914,0,667,31,636], + 0x165: [709,12,415,19,445], + 0x166: [676,0,667,31,636], + 0x167: [630,12,333,17,332], + 0x168: [886,19,722,16,701], + 0x169: [674,14,556,16,538], + 0x16A: [810,19,722,16,701], + 0x16B: [600,14,556,16,538], + 0x16C: [901,19,722,16,701], + 0x16D: [691,14,556,16,538], + 0x16E: [935,19,722,16,701], + 0x16F: [740,14,556,16,538], + 0x170: [923,19,722,16,701], + 0x171: [713,14,556,16,538], + 0x172: [676,205,722,16,701], + 0x173: [461,205,556,16,547], + 0x174: [914,15,1000,19,981], + 0x175: [704,14,722,23,707], + 0x176: [914,0,722,15,699], + 0x177: [704,205,500,16,482], + 0x178: [876,0,722,15,699], + 0x179: [923,0,667,28,634], + 0x17A: [713,0,444,21,420], + 0x17B: [876,0,667,28,634], + 0x17C: [666,0,444,21,420], + 0x17D: [914,0,667,28,634], + 0x17E: [704,0,444,21,420], + 0x17F: [691,0,333,14,389], + 0x180: [676,14,553,-28,516], + 0x188: [576,14,568,30,574], + 0x190: [686,4,610,38,587], + 0x192: [706,155,500,0,498], + 0x195: [676,10,797,14,767], + 0x199: [691,0,533,12,533], + 0x19A: [676,0,291,24,265], + 0x19B: [666,0,536,60,526], + 0x19E: [473,205,559,21,539], + 0x1A0: [732,19,778,35,788], + 0x1A1: [505,14,554,25,576], + 0x1A5: [673,205,550,10,515], + 0x1AA: [689,228,446,25,421], + 0x1AB: [630,218,347,18,331], + 0x1AD: [691,12,371,19,389], + 0x1AF: [810,19,796,16,836], + 0x1B0: [596,14,600,16,626], + 0x1BA: [450,237,441,9,415], + 0x1BB: [688,0,515,27,492], + 0x1BE: [541,10,527,78,449], + 0x1C0: [740,0,186,60,126], + 0x1C1: [740,0,313,60,253], + 0x1C2: [740,0,445,39,405], + 0x1C3: [691,13,333,81,251], + 0x1F0: [704,203,333,-57,335], + 0x1FA: [972,0,722,9,689], + 0x1FB: [923,14,500,25,488], + 0x1FC: [923,0,1000,4,951], + 0x1FD: [713,14,722,33,694], + 0x1FE: [923,74,778,35,743], + 0x1FF: [713,92,500,25,476], + 0x1E80: [923,15,1000,19,981], + 0x1E81: [713,14,722,23,707], + 0x1E82: [923,15,1000,19,981], + 0x1E83: [713,14,722,23,707], + 0x1E84: [876,15,1000,19,981], + 0x1E85: [666,14,722,23,707], + 0x1EF2: [923,0,722,15,699], + 0x1EF3: [713,205,500,16,482], + 0xA792: [691,19,769,27,734], + 0xFB00: [691,0,610,15,666], + 0xFB01: [691,0,556,14,536], + 0xFB02: [691,0,556,15,535], + 0xFB03: [691,0,833,15,813], + 0xFB04: [691,0,833,15,812] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Latin-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Latin/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/BoldItalic/Main.js new file mode 100644 index 0000000..9e533ae --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/BoldItalic/Main.js @@ -0,0 +1,283 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Latin-bold-italic'] = { + directory: 'Latin/BoldItalic', + family: 'STIXMathJax_Latin', + weight: 'bold', + style: 'italic', + testString: '\u00A0\u00A1\u00A2\u00A4\u00A6\u00A9\u00AA\u00AB\u00AD\u00B2\u00B3\u00B6\u00B8\u00B9\u00BA', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xA1: [494,205,389,19,320], + 0xA2: [576,143,500,42,439], + 0xA4: [542,10,500,-26,526], + 0xA6: [685,18,220,66,154], + 0xA9: [685,18,747,30,718], + 0xAA: [685,-399,266,16,330], + 0xAB: [415,-32,500,12,468], + 0xAD: [282,-166,333,2,271], + 0xB2: [683,-274,300,2,313], + 0xB3: [683,-265,300,17,321], + 0xB6: [669,193,617,60,679], + 0xB8: [5,218,333,-80,156], + 0xB9: [683,-274,300,30,301], + 0xBA: [685,-400,300,56,347], + 0xBB: [415,-32,500,12,468], + 0xBC: [683,14,750,7,721], + 0xBD: [683,14,750,-9,723], + 0xBE: [683,14,750,7,726], + 0xBF: [492,205,500,30,421], + 0xC0: [947,0,667,-68,593], + 0xC1: [947,0,667,-68,593], + 0xC2: [940,0,667,-68,593], + 0xC3: [905,0,667,-68,612], + 0xC4: [905,0,667,-68,599], + 0xC5: [1004,0,667,-68,593], + 0xC6: [669,0,944,-64,918], + 0xC7: [685,218,667,32,677], + 0xC8: [947,0,667,-27,653], + 0xC9: [947,0,667,-27,653], + 0xCA: [940,0,667,-27,653], + 0xCB: [905,0,667,-27,653], + 0xCC: [947,0,389,-32,406], + 0xCD: [947,0,389,-32,440], + 0xCE: [940,0,389,-32,469], + 0xCF: [905,0,389,-32,480], + 0xD0: [669,0,722,-31,700], + 0xD1: [905,15,722,-27,748], + 0xD2: [947,18,722,27,691], + 0xD3: [947,18,722,27,691], + 0xD4: [940,18,722,27,691], + 0xD5: [905,18,722,27,691], + 0xD6: [905,18,722,27,691], + 0xD8: [764,125,722,27,691], + 0xD9: [947,18,722,67,744], + 0xDA: [947,18,722,67,744], + 0xDB: [940,18,722,67,744], + 0xDC: [905,18,722,67,744], + 0xDD: [947,0,611,71,659], + 0xDE: [669,0,611,-27,573], + 0xDF: [705,200,500,-200,473], + 0xE0: [697,14,500,-21,456], + 0xE1: [697,14,500,-21,456], + 0xE2: [690,14,500,-21,475], + 0xE3: [655,14,500,-21,497], + 0xE4: [655,14,500,-21,485], + 0xE5: [756,14,500,-21,456], + 0xE6: [462,13,722,-5,673], + 0xE7: [462,218,444,-24,392], + 0xE8: [697,13,444,5,398], + 0xE9: [697,13,444,5,419], + 0xEA: [690,13,444,5,462], + 0xEB: [655,13,444,5,470], + 0xEC: [697,9,278,2,294], + 0xED: [697,9,278,2,310], + 0xEE: [690,9,278,2,353], + 0xEF: [655,9,278,2,362], + 0xF1: [655,9,556,-6,507], + 0xF2: [697,13,500,-3,441], + 0xF3: [697,13,500,-3,441], + 0xF4: [690,13,500,-3,462], + 0xF5: [655,13,500,-3,485], + 0xF6: [655,13,500,-3,470], + 0xF8: [560,119,500,-3,441], + 0xF9: [697,9,556,15,493], + 0xFA: [697,9,556,15,493], + 0xFB: [690,9,556,15,493], + 0xFC: [655,9,556,15,493], + 0xFD: [697,205,444,-94,401], + 0xFE: [699,205,500,-120,446], + 0xFF: [655,205,444,-94,460], + 0x100: [793,0,667,-68,593], + 0x101: [586,14,500,-21,486], + 0x102: [885,0,667,-68,593], + 0x103: [678,14,500,-21,483], + 0x104: [683,173,667,-68,640], + 0x105: [462,173,500,-21,507], + 0x106: [904,18,667,32,677], + 0x107: [697,13,444,-5,392], + 0x108: [897,18,667,32,677], + 0x109: [690,13,444,-5,415], + 0x10A: [862,18,667,32,677], + 0x10B: [655,13,444,-5,392], + 0x10C: [897,18,667,32,677], + 0x10D: [690,13,444,-5,437], + 0x10E: [897,0,722,-46,685], + 0x10F: [710,13,658,-21,726], + 0x110: [669,0,722,-31,700], + 0x111: [699,13,500,-21,541], + 0x112: [793,0,667,-27,653], + 0x113: [586,13,444,5,431], + 0x114: [885,0,667,-27,653], + 0x115: [678,13,444,5,478], + 0x116: [862,0,667,-27,653], + 0x117: [655,13,444,5,398], + 0x118: [669,182,667,-27,653], + 0x119: [462,182,444,5,398], + 0x11A: [897,0,667,-27,653], + 0x11B: [690,13,444,5,486], + 0x11C: [897,18,722,21,705], + 0x11D: [690,203,500,-52,477], + 0x11E: [885,18,722,21,705], + 0x11F: [678,203,500,-52,477], + 0x120: [862,18,722,21,705], + 0x121: [655,203,500,-52,477], + 0x122: [685,359,722,21,705], + 0x123: [832,203,500,-52,477], + 0x124: [897,0,778,-24,799], + 0x125: [897,9,556,-13,498], + 0x126: [669,0,778,-24,800], + 0x128: [862,0,389,-32,470], + 0x129: [655,9,278,-9,350], + 0x12A: [793,0,389,-32,451], + 0x12B: [586,9,278,-11,331], + 0x12C: [885,0,389,-32,458], + 0x12D: [678,9,278,2,328], + 0x12E: [669,173,389,-32,406], + 0x12F: [684,173,278,2,262], + 0x130: [862,0,389,-32,406], + 0x132: [669,99,823,-32,913], + 0x133: [685,207,552,2,544], + 0x134: [897,99,500,-46,554], + 0x135: [690,207,278,-189,314], + 0x136: [669,359,667,-21,702], + 0x137: [699,359,500,-23,483], + 0x138: [470,0,600,6,689], + 0x139: [904,0,611,-22,590], + 0x13A: [904,9,278,2,344], + 0x13B: [669,359,611,-22,590], + 0x13C: [699,359,278,-62,290], + 0x13D: [685,0,611,-22,667], + 0x13E: [710,9,451,2,499], + 0x13F: [669,0,611,-22,590], + 0x140: [699,9,375,2,382], + 0x141: [669,0,611,-22,590], + 0x142: [699,9,278,-13,301], + 0x143: [904,15,722,-27,748], + 0x144: [697,9,556,-6,494], + 0x145: [669,359,722,-27,748], + 0x146: [462,359,556,-6,494], + 0x147: [897,15,722,-27,748], + 0x148: [690,9,556,-6,506], + 0x149: [710,9,700,42,657], + 0x14A: [669,203,722,-46,685], + 0x14B: [462,207,543,-6,474], + 0x14C: [793,18,722,27,691], + 0x14D: [586,13,500,-3,461], + 0x14E: [885,18,722,27,691], + 0x14F: [678,13,500,-3,488], + 0x150: [904,18,722,27,700], + 0x151: [697,13,500,-3,519], + 0x152: [677,8,944,23,946], + 0x153: [462,13,722,6,674], + 0x154: [904,0,667,-28,623], + 0x155: [697,0,389,-21,389], + 0x156: [669,359,667,-28,623], + 0x157: [462,359,389,-102,389], + 0x158: [897,0,667,-28,623], + 0x159: [690,0,389,-21,411], + 0x15A: [904,18,556,2,526], + 0x15B: [697,13,389,-19,379], + 0x15C: [897,18,556,2,526], + 0x15D: [690,13,389,-19,367], + 0x15E: [685,218,556,2,526], + 0x15F: [462,218,389,-19,333], + 0x160: [897,18,556,2,526], + 0x161: [690,13,389,-19,411], + 0x162: [669,218,611,49,650], + 0x163: [594,218,278,-75,289], + 0x164: [897,0,611,49,650], + 0x165: [710,9,411,-11,499], + 0x166: [669,0,611,49,650], + 0x167: [594,9,278,-30,281], + 0x168: [841,18,722,67,744], + 0x169: [655,9,556,15,493], + 0x16A: [793,18,722,67,744], + 0x16B: [586,9,556,15,493], + 0x16C: [885,18,722,67,744], + 0x16D: [678,9,556,15,493], + 0x16E: [921,18,722,67,744], + 0x16F: [729,9,556,15,493], + 0x170: [889,18,722,67,744], + 0x171: [697,9,556,15,527], + 0x172: [669,173,722,67,744], + 0x173: [462,173,556,15,531], + 0x174: [897,18,889,64,940], + 0x175: [690,13,667,15,614], + 0x176: [897,0,611,71,659], + 0x177: [690,205,444,-94,393], + 0x178: [862,0,611,71,659], + 0x179: [904,0,611,-12,589], + 0x17A: [697,78,389,-43,379], + 0x17B: [862,0,611,-12,589], + 0x17C: [655,78,389,-43,368], + 0x17D: [897,0,611,-12,589], + 0x17E: [690,78,389,-43,411], + 0x17F: [691,0,333,14,536], + 0x180: [699,13,500,-14,444], + 0x188: [576,13,560,-5,627], + 0x190: [686,4,512,54,676], + 0x192: [707,156,500,-87,537], + 0x195: [699,10,735,-13,692], + 0x199: [691,8,500,-23,483], + 0x19A: [699,9,278,2,290], + 0x19B: [666,0,480,16,452], + 0x19E: [462,205,536,-6,474], + 0x1A0: [716,18,722,27,806], + 0x1A1: [507,13,537,24,595], + 0x1A5: [673,205,520,-100,466], + 0x1AA: [684,233,400,46,380], + 0x1AB: [594,218,286,-49,289], + 0x1AD: [691,9,360,-3,450], + 0x1AF: [803,18,775,67,893], + 0x1B0: [583,9,556,15,656], + 0x1BA: [450,237,496,-52,458], + 0x1BB: [683,0,500,-27,469], + 0x1BE: [541,10,500,37,463], + 0x1C0: [740,0,208,14,278], + 0x1C1: [740,0,345,14,415], + 0x1C2: [740,0,368,14,438], + 0x1C3: [684,13,300,45,355], + 0x1F0: [690,207,350,-104,474], + 0x1FA: [972,0,667,-68,593], + 0x1FB: [909,14,500,-21,456], + 0x1FC: [904,0,944,-64,918], + 0x1FD: [697,13,722,-5,673], + 0x1FE: [904,125,722,27,691], + 0x1FF: [697,119,500,-3,441], + 0x1E80: [904,18,889,64,940], + 0x1E81: [697,13,667,15,614], + 0x1E82: [904,18,889,64,940], + 0x1E83: [697,13,667,15,614], + 0x1E84: [862,18,889,64,940], + 0x1E85: [655,13,667,15,614], + 0x1EF2: [904,0,611,71,659], + 0x1EF3: [697,205,444,-94,392], + 0xFB00: [698,205,613,-169,726], + 0xFB01: [703,205,556,-188,514], + 0xFB02: [704,205,556,-186,553], + 0xFB03: [703,205,856,-169,814], + 0xFB04: [704,205,854,-169,851] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Latin-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Latin/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Italic/Main.js new file mode 100644 index 0000000..64a7946 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Italic/Main.js @@ -0,0 +1,282 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Latin-italic'] = { + directory: 'Latin/Italic', + family: 'STIXMathJax_Latin', + style: 'italic', + testString: '\u00A0\u00A1\u00A2\u00A4\u00A6\u00A9\u00AA\u00AB\u00AD\u00B2\u00B3\u00B6\u00B8\u00B9\u00BA', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xA1: [474,205,389,59,321], + 0xA2: [560,143,500,77,472], + 0xA4: [534,10,500,-22,522], + 0xA6: [666,18,275,105,171], + 0xA9: [666,18,760,41,719], + 0xAA: [676,-406,276,42,352], + 0xAB: [403,-37,500,53,445], + 0xAD: [255,-192,333,49,282], + 0xB2: [676,-271,300,33,324], + 0xB3: [676,-268,300,43,339], + 0xB6: [653,123,559,60,621], + 0xB8: [0,217,333,-30,182], + 0xB9: [676,-271,300,43,284], + 0xBA: [676,-406,310,67,362], + 0xBB: [403,-37,500,55,447], + 0xBC: [676,10,750,33,736], + 0xBD: [676,10,750,34,749], + 0xBE: [676,10,750,23,736], + 0xBF: [473,205,500,28,367], + 0xC0: [914,0,611,-51,564], + 0xC1: [914,0,611,-51,564], + 0xC2: [911,0,611,-51,564], + 0xC3: [874,0,611,-51,572], + 0xC4: [856,0,611,-51,564], + 0xC5: [957,0,611,-51,564], + 0xC6: [653,0,889,-27,911], + 0xC7: [666,217,667,66,689], + 0xC8: [914,0,611,-1,634], + 0xC9: [914,0,611,-1,634], + 0xCA: [911,0,611,-1,634], + 0xCB: [856,0,611,-1,634], + 0xCC: [914,0,333,-8,398], + 0xCD: [914,0,333,-8,414], + 0xCE: [911,0,333,-8,450], + 0xCF: [856,0,333,-8,457], + 0xD0: [653,0,722,-8,700], + 0xD1: [874,15,667,-20,727], + 0xD2: [914,18,722,60,699], + 0xD3: [914,18,722,60,699], + 0xD4: [911,18,722,60,699], + 0xD5: [874,18,722,60,699], + 0xD6: [856,18,722,60,699], + 0xD8: [722,105,722,60,699], + 0xD9: [914,18,722,102,765], + 0xDA: [914,18,722,102,765], + 0xDB: [911,18,722,102,765], + 0xDC: [856,18,722,102,765], + 0xDD: [914,0,556,78,633], + 0xDE: [653,0,611,0,569], + 0xDF: [679,207,500,-168,493], + 0xE0: [664,11,501,17,476], + 0xE1: [664,11,501,17,476], + 0xE2: [661,11,501,17,497], + 0xE3: [624,11,501,17,521], + 0xE4: [606,11,501,17,503], + 0xE5: [709,11,501,17,476], + 0xE6: [441,11,667,23,640], + 0xE7: [441,217,444,26,425], + 0xE8: [664,11,444,31,414], + 0xE9: [664,11,444,31,431], + 0xEA: [661,11,444,31,466], + 0xEB: [606,11,444,31,475], + 0xEC: [664,11,278,47,302], + 0xED: [664,11,278,47,318], + 0xEE: [661,11,278,47,351], + 0xEF: [606,11,278,47,361], + 0xF1: [624,9,500,14,488], + 0xF2: [664,11,500,27,468], + 0xF3: [664,11,500,27,468], + 0xF4: [661,11,500,27,468], + 0xF5: [624,11,500,27,494], + 0xF6: [606,11,500,27,474], + 0xF8: [554,135,500,28,469], + 0xF9: [664,11,500,42,475], + 0xFA: [664,11,500,42,475], + 0xFB: [661,11,500,42,475], + 0xFC: [606,11,500,42,475], + 0xFD: [664,206,444,-24,426], + 0xFE: [683,205,500,-75,469], + 0xFF: [606,206,444,-24,442], + 0x100: [757,0,611,-51,564], + 0x101: [543,11,501,17,481], + 0x102: [862,0,611,-51,564], + 0x103: [650,11,501,17,481], + 0x104: [668,169,611,-51,626], + 0x105: [441,169,501,17,529], + 0x106: [876,18,667,66,689], + 0x107: [664,11,444,30,431], + 0x108: [875,18,667,66,689], + 0x109: [661,11,444,30,427], + 0x10A: [818,18,667,66,689], + 0x10B: [606,11,444,30,425], + 0x10C: [875,18,667,66,689], + 0x10D: [661,11,444,30,473], + 0x10E: [875,0,722,-8,700], + 0x10F: [691,13,609,15,697], + 0x110: [653,0,722,-8,700], + 0x111: [683,13,500,15,580], + 0x112: [757,0,611,-1,634], + 0x113: [542,11,444,31,466], + 0x114: [866,0,611,-1,634], + 0x115: [650,11,444,31,471], + 0x116: [818,0,611,-1,634], + 0x117: [606,11,444,31,412], + 0x118: [653,175,611,-1,634], + 0x119: [441,175,444,31,412], + 0x11A: [875,0,611,-1,634], + 0x11B: [661,11,444,31,502], + 0x11C: [877,18,722,52,722], + 0x11D: [661,206,500,8,471], + 0x11E: [866,18,722,52,722], + 0x11F: [650,206,500,8,476], + 0x120: [818,18,722,52,722], + 0x121: [606,206,500,8,471], + 0x122: [666,267,722,52,722], + 0x123: [724,206,500,8,471], + 0x124: [875,0,722,-8,769], + 0x125: [875,9,500,19,478], + 0x126: [653,0,722,-8,769], + 0x128: [836,0,333,-8,444], + 0x129: [624,11,278,30,357], + 0x12A: [757,0,333,-8,439], + 0x12B: [543,11,278,29,341], + 0x12C: [866,0,333,-8,448], + 0x12D: [650,11,278,46,347], + 0x12E: [653,169,333,-8,384], + 0x12F: [654,169,278,49,303], + 0x130: [818,0,333,-8,384], + 0x132: [653,18,750,-8,783], + 0x133: [654,207,500,49,500], + 0x134: [877,18,444,-6,536], + 0x135: [661,207,278,-124,353], + 0x136: [653,267,667,7,722], + 0x137: [683,267,444,14,461], + 0x138: [459,0,542,5,601], + 0x139: [876,0,556,-8,559], + 0x13A: [876,11,278,41,348], + 0x13B: [653,267,556,-8,559], + 0x13C: [683,267,278,7,279], + 0x13D: [666,0,556,-8,595], + 0x13E: [693,11,278,41,448], + 0x13F: [653,0,556,-8,559], + 0x140: [683,11,323,41,386], + 0x141: [653,0,556,-8,559], + 0x142: [683,11,278,37,307], + 0x143: [876,15,667,-20,727], + 0x144: [664,9,500,14,474], + 0x145: [653,267,667,-20,727], + 0x146: [441,267,500,14,474], + 0x147: [875,15,667,-20,727], + 0x148: [661,9,500,14,475], + 0x149: [691,9,577,58,540], + 0x14A: [666,18,722,-8,700], + 0x14B: [441,208,500,14,442], + 0x14C: [757,18,722,60,699], + 0x14D: [543,11,500,27,511], + 0x14E: [866,18,722,60,709], + 0x14F: [650,11,500,27,533], + 0x150: [876,18,722,60,720], + 0x151: [664,11,500,27,541], + 0x152: [666,8,944,49,964], + 0x153: [441,12,667,20,646], + 0x154: [876,0,611,-13,588], + 0x155: [664,0,389,45,412], + 0x156: [653,267,611,-13,588], + 0x157: [441,267,389,-2,412], + 0x158: [875,0,611,-13,588], + 0x159: [663,0,389,45,426], + 0x15A: [876,18,500,17,508], + 0x15B: [664,13,389,16,403], + 0x15C: [877,18,500,17,508], + 0x15D: [661,13,389,16,385], + 0x15E: [667,217,500,17,508], + 0x15F: [442,217,389,16,366], + 0x160: [875,18,500,17,532], + 0x161: [663,13,389,16,426], + 0x162: [653,217,556,59,633], + 0x163: [546,217,278,-38,296], + 0x164: [875,0,556,59,633], + 0x165: [693,11,278,38,453], + 0x166: [653,0,556,59,633], + 0x167: [546,11,278,28,296], + 0x168: [836,18,722,102,765], + 0x169: [624,11,500,42,475], + 0x16A: [757,18,722,102,765], + 0x16B: [543,11,500,42,475], + 0x16C: [866,18,722,102,765], + 0x16D: [650,11,500,42,480], + 0x16E: [907,18,722,102,765], + 0x16F: [691,11,500,42,475], + 0x170: [876,18,722,102,765], + 0x171: [664,11,500,42,511], + 0x172: [653,169,722,102,765], + 0x173: [441,169,500,42,538], + 0x174: [877,18,833,71,906], + 0x175: [661,18,667,15,648], + 0x176: [877,0,556,78,633], + 0x177: [661,206,444,-24,426], + 0x178: [818,0,556,78,633], + 0x179: [876,0,556,-6,606], + 0x17A: [664,81,389,-2,390], + 0x17B: [818,0,556,-6,606], + 0x17C: [606,81,389,-2,380], + 0x17D: [875,0,556,-6,606], + 0x17E: [663,81,389,-2,426], + 0x17F: [683,0,383,13,513], + 0x180: [683,11,500,23,473], + 0x188: [548,11,500,30,577], + 0x190: [684,6,667,66,671], + 0x192: [706,159,472,-62,494], + 0x195: [683,10,672,19,654], + 0x199: [683,11,500,14,490], + 0x19A: [683,11,278,41,279], + 0x19B: [668,0,490,30,478], + 0x19E: [441,233,500,14,442], + 0x1A0: [691,18,722,60,783], + 0x1A1: [467,11,534,27,583], + 0x1A5: [669,205,504,-75,472], + 0x1AA: [684,233,340,31,319], + 0x1AB: [546,218,278,-54,296], + 0x1AD: [683,11,310,38,452], + 0x1AF: [765,18,754,102,881], + 0x1B0: [543,11,573,42,607], + 0x1BA: [450,234,500,8,462], + 0x1BB: [676,0,500,12,500], + 0x1BE: [539,12,500,47,453], + 0x1C0: [736,0,170,15,258], + 0x1C1: [736,0,290,15,379], + 0x1C2: [736,0,340,15,429], + 0x1C3: [667,11,333,39,304], + 0x1F0: [661,207,278,-124,397], + 0x1FA: [950,0,611,-51,564], + 0x1FB: [860,11,501,17,476], + 0x1FC: [876,0,889,-27,911], + 0x1FD: [664,11,667,23,640], + 0x1FE: [876,105,722,60,699], + 0x1FF: [664,135,500,28,469], + 0x1E80: [880,18,833,71,906], + 0x1E81: [664,18,667,15,648], + 0x1E82: [876,18,833,71,906], + 0x1E83: [664,18,667,15,648], + 0x1E84: [818,18,833,71,906], + 0x1E85: [606,18,667,15,648], + 0x1EF2: [880,0,556,78,633], + 0x1EF3: [664,206,444,-24,426], + 0xFB00: [678,207,527,-147,673], + 0xFB01: [681,207,500,-141,481], + 0xFB02: [682,204,500,-141,518], + 0xFB03: [681,207,744,-147,725], + 0xFB04: [682,207,745,-147,763] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Latin-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Latin/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Regular/Main.js new file mode 100644 index 0000000..e6c2e3d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Regular/Main.js @@ -0,0 +1,288 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'STIXMathJax_Latin', + testString: '\u00A0\u00A1\u00A2\u00A4\u00A6\u00A9\u00AA\u00AB\u00AD\u00B2\u00B3\u00B6\u00B8\u00B9\u00BA', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xA1: [468,218,330,96,202], + 0xA2: [579,138,500,53,448], + 0xA4: [534,10,500,-22,522], + 0xA6: [676,14,200,67,133], + 0xA9: [676,14,760,38,722], + 0xAA: [676,-394,276,4,270], + 0xAB: [416,-33,500,42,456], + 0xAD: [257,-194,333,39,285], + 0xB2: [676,-270,300,1,296], + 0xB3: [676,-262,300,13,291], + 0xB6: [662,154,592,60,532], + 0xB8: [0,215,333,52,261], + 0xB9: [676,-270,300,57,248], + 0xBA: [676,-394,310,6,304], + 0xBB: [416,-33,500,43,458], + 0xBC: [676,14,750,42,713], + 0xBD: [676,14,750,36,741], + 0xBE: [676,14,750,13,718], + 0xBF: [467,218,444,30,376], + 0xC0: [928,0,722,15,707], + 0xC1: [928,0,722,15,707], + 0xC2: [924,0,722,15,707], + 0xC3: [888,0,722,15,707], + 0xC4: [872,0,722,15,707], + 0xC5: [961,0,722,15,707], + 0xC6: [662,0,889,0,863], + 0xC7: [676,215,667,28,633], + 0xC8: [928,0,611,12,597], + 0xC9: [928,0,611,12,597], + 0xCA: [924,0,611,12,597], + 0xCB: [872,0,611,12,597], + 0xCC: [928,0,333,18,315], + 0xCD: [928,0,333,18,315], + 0xCE: [924,0,333,10,321], + 0xCF: [872,0,333,17,315], + 0xD0: [662,0,722,16,685], + 0xD1: [888,11,722,12,707], + 0xD2: [928,14,722,34,688], + 0xD3: [928,14,722,34,688], + 0xD4: [924,14,722,34,688], + 0xD5: [888,14,722,34,688], + 0xD6: [872,14,722,34,688], + 0xD8: [734,80,722,34,688], + 0xD9: [928,14,722,14,705], + 0xDA: [928,14,722,14,705], + 0xDB: [924,14,722,14,705], + 0xDC: [872,14,722,14,705], + 0xDD: [928,0,722,22,703], + 0xDE: [662,0,556,16,542], + 0xDF: [683,9,500,12,468], + 0xE0: [678,10,444,37,442], + 0xE1: [678,10,444,37,442], + 0xE2: [674,10,444,37,442], + 0xE3: [638,10,444,37,442], + 0xE4: [622,10,444,37,442], + 0xE5: [713,10,444,37,442], + 0xE6: [460,7,667,38,632], + 0xE7: [460,215,444,25,412], + 0xE8: [678,10,444,25,424], + 0xE9: [678,10,444,25,424], + 0xEA: [674,10,444,25,424], + 0xEB: [622,10,444,25,424], + 0xEC: [678,0,278,6,243], + 0xED: [678,0,278,16,273], + 0xEE: [674,0,278,-17,294], + 0xEF: [622,0,278,-10,288], + 0xF1: [638,0,500,16,485], + 0xF2: [678,10,500,29,470], + 0xF3: [678,10,500,29,470], + 0xF4: [674,10,500,29,470], + 0xF5: [638,10,500,29,470], + 0xF6: [622,10,500,29,470], + 0xF8: [551,112,500,29,470], + 0xF9: [678,10,500,9,480], + 0xFA: [678,10,500,9,480], + 0xFB: [674,10,500,9,480], + 0xFC: [622,10,500,9,480], + 0xFD: [678,218,500,14,475], + 0xFE: [683,217,500,5,470], + 0xFF: [622,218,500,14,475], + 0x100: [773,0,722,15,707], + 0x101: [561,10,444,37,442], + 0x102: [876,0,722,15,707], + 0x103: [664,10,444,37,442], + 0x104: [674,165,722,15,707], + 0x105: [460,165,444,37,472], + 0x106: [890,14,667,28,633], + 0x107: [678,10,444,25,412], + 0x108: [886,14,667,28,633], + 0x109: [674,10,444,25,412], + 0x10A: [834,14,667,28,633], + 0x10B: [622,10,444,25,412], + 0x10C: [886,14,667,28,633], + 0x10D: [674,10,444,25,412], + 0x10E: [886,0,722,16,685], + 0x10F: [701,10,586,27,604], + 0x110: [662,0,722,16,685], + 0x111: [683,10,500,27,507], + 0x112: [773,0,611,12,597], + 0x113: [561,10,444,25,424], + 0x114: [876,0,611,12,597], + 0x115: [664,10,444,25,424], + 0x116: [834,0,611,12,597], + 0x117: [622,10,444,25,424], + 0x118: [662,165,611,12,597], + 0x119: [460,165,444,25,424], + 0x11A: [886,0,611,12,597], + 0x11B: [674,10,444,25,424], + 0x11C: [886,14,722,32,709], + 0x11D: [674,218,500,28,470], + 0x11E: [876,14,722,32,709], + 0x11F: [664,218,500,28,470], + 0x120: [834,14,722,32,709], + 0x121: [622,218,500,28,470], + 0x122: [676,280,722,32,709], + 0x123: [766,218,500,28,470], + 0x124: [886,0,722,18,703], + 0x125: [886,0,500,9,487], + 0x126: [662,0,723,17,702], + 0x128: [850,0,333,1,331], + 0x129: [638,0,278,-25,305], + 0x12A: [773,0,333,11,322], + 0x12B: [561,0,278,-21,290], + 0x12C: [876,0,333,18,315], + 0x12D: [664,0,278,-1,280], + 0x12E: [662,165,333,18,315], + 0x12F: [683,165,278,16,277], + 0x130: [834,0,333,18,315], + 0x132: [662,14,747,18,728], + 0x133: [683,218,538,16,454], + 0x134: [886,14,373,-6,367], + 0x135: [674,218,278,-70,295], + 0x136: [662,280,722,33,723], + 0x137: [683,280,500,7,505], + 0x138: [459,0,542,5,532], + 0x139: [890,0,611,12,598], + 0x13A: [890,0,278,19,257], + 0x13B: [662,280,611,12,598], + 0x13C: [683,280,278,19,257], + 0x13D: [683,0,611,12,598], + 0x13E: [702,0,381,19,362], + 0x13F: [662,0,620,29,615], + 0x140: [683,0,370,19,354], + 0x141: [662,0,611,10,597], + 0x142: [683,0,278,19,259], + 0x143: [890,11,722,12,707], + 0x144: [678,0,500,16,485], + 0x145: [662,280,722,12,707], + 0x146: [460,280,500,16,485], + 0x147: [886,11,722,12,707], + 0x148: [674,0,500,16,485], + 0x149: [702,0,590,20,566], + 0x14A: [678,18,710,16,673], + 0x14B: [460,218,504,16,424], + 0x14C: [773,14,722,34,688], + 0x14D: [561,10,500,29,470], + 0x14E: [876,14,722,34,688], + 0x14F: [664,10,500,29,470], + 0x150: [890,14,722,34,688], + 0x151: [678,10,500,29,470], + 0x152: [668,6,889,30,885], + 0x153: [460,10,722,30,690], + 0x154: [890,0,667,17,660], + 0x155: [678,0,333,5,335], + 0x156: [662,280,667,17,660], + 0x157: [460,280,333,5,335], + 0x158: [886,0,667,17,660], + 0x159: [674,0,333,5,335], + 0x15A: [890,14,556,43,491], + 0x15B: [678,10,389,51,348], + 0x15C: [886,14,556,43,491], + 0x15D: [674,10,389,40,351], + 0x15E: [676,215,556,43,491], + 0x15F: [459,215,389,51,348], + 0x160: [924,14,556,43,491], + 0x161: [674,10,389,38,349], + 0x162: [662,215,611,17,593], + 0x163: [579,215,278,13,279], + 0x164: [886,0,611,17,593], + 0x165: [701,10,315,13,333], + 0x166: [662,0,613,17,593], + 0x167: [584,5,279,11,280], + 0x168: [849,14,722,14,705], + 0x169: [638,10,500,9,480], + 0x16A: [773,14,722,14,705], + 0x16B: [561,10,500,9,480], + 0x16C: [876,14,722,14,705], + 0x16D: [664,10,500,9,480], + 0x16E: [898,14,722,14,705], + 0x16F: [711,10,500,9,480], + 0x170: [890,14,722,14,705], + 0x171: [678,10,500,9,480], + 0x172: [662,165,722,14,705], + 0x173: [450,156,500,9,480], + 0x174: [886,11,944,5,932], + 0x175: [674,14,722,21,694], + 0x176: [886,0,722,22,703], + 0x177: [674,218,500,14,475], + 0x178: [872,0,722,22,703], + 0x179: [890,0,612,10,598], + 0x17A: [678,0,444,27,418], + 0x17B: [834,0,612,10,598], + 0x17C: [622,0,444,27,418], + 0x17D: [924,0,612,10,598], + 0x17E: [674,0,444,27,418], + 0x17F: [683,0,334,20,383], + 0x180: [683,10,500,-19,472], + 0x188: [559,10,500,25,511], + 0x190: [684,6,580,33,562], + 0x192: [706,159,434,6,426], + 0x195: [683,10,735,9,710], + 0x199: [683,0,500,7,505], + 0x19A: [683,0,278,19,257], + 0x19B: [668,0,520,55,516], + 0x19E: [460,233,500,16,485], + 0x1A0: [754,14,722,34,688], + 0x1A1: [474,10,545,29,531], + 0x1A5: [669,217,500,5,470], + 0x1AA: [684,233,432,20,412], + 0x1AB: [579,218,290,13,279], + 0x1AD: [683,10,310,14,333], + 0x1AF: [774,14,766,14,810], + 0x1B0: [561,10,500,9,539], + 0x1B5: [662,0,612,10,598], + 0x1BA: [450,234,381,4,360], + 0x1BB: [676,0,500,22,482], + 0x1BE: [539,12,500,73,427], + 0x1C0: [736,0,160,54,105], + 0x1C1: [736,0,280,54,225], + 0x1C2: [736,0,435,34,400], + 0x1C3: [676,9,333,130,236], + 0x1F0: [674,218,278,-70,294], + 0x1FA: [938,0,722,15,707], + 0x1FB: [890,10,444,37,442], + 0x1FC: [890,0,889,0,863], + 0x1FD: [678,7,667,38,632], + 0x1FE: [890,80,722,34,688], + 0x1FF: [678,112,500,29,470], + 0x221: [683,150,671,27,652], + 0x234: [683,150,429,19,410], + 0x235: [460,150,672,16,653], + 0x236: [579,150,401,13,382], + 0x1E80: [890,11,944,5,932], + 0x1E81: [678,14,722,21,694], + 0x1E82: [890,11,944,5,932], + 0x1E83: [678,14,722,21,694], + 0x1E84: [834,11,944,5,932], + 0x1E85: [622,14,722,21,694], + 0x1EF2: [890,0,722,22,703], + 0x1EF3: [678,218,500,14,475], + 0xA727: [683,233,481,9,427], + 0xA792: [676,14,734,18,700], + 0xFB00: [683,0,605,20,655], + 0xFB01: [683,0,558,32,523], + 0xFB02: [683,0,556,31,522], + 0xFB03: [683,0,832,20,797], + 0xFB04: [683,0,830,20,796] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Latin"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Latin/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/Bold/Main.js new file mode 100644 index 0000000..ae052b4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/Bold/Main.js @@ -0,0 +1,510 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Main-bold'] = { + directory: 'Main/Bold', + family: 'STIXMathJax_Main', + weight: 'bold', + testString: '\u00A0\u00A3\u00A5\u00A7\u00A8\u00AC\u00AE\u00AF\u00B0\u00B1\u00B4\u00B5\u00B7\u00D7\u00F0', + 0x20: [0,0,250,0,0], + 0x21: [691,13,333,81,251], + 0x22: [691,-404,555,83,472], + 0x23: [700,0,500,5,495], + 0x24: [750,99,500,29,472], + 0x25: [706,29,749,61,688], + 0x26: [691,16,833,62,789], + 0x27: [691,-404,278,75,204], + 0x28: [694,168,333,46,306], + 0x29: [694,168,333,27,287], + 0x2A: [691,-255,500,56,448], + 0x2B: [563,57,750,65,685], + 0x2C: [155,180,250,39,223], + 0x2D: [287,-171,333,44,287], + 0x2E: [156,13,250,41,210], + 0x2F: [691,19,278,-24,302], + 0x30: [688,13,500,24,476], + 0x31: [688,0,500,65,441], + 0x32: [688,0,500,17,478], + 0x33: [688,14,500,16,468], + 0x34: [688,0,500,19,476], + 0x35: [676,8,500,22,470], + 0x36: [688,13,500,28,475], + 0x37: [676,0,500,17,477], + 0x38: [688,13,500,28,472], + 0x39: [688,13,500,26,473], + 0x3A: [472,13,333,82,251], + 0x3B: [472,180,333,82,266], + 0x3C: [534,24,750,80,670], + 0x3D: [399,-107,750,68,682], + 0x3E: [534,24,750,80,670], + 0x3F: [689,13,500,57,445], + 0x40: [691,19,930,108,822], + 0x41: [690,0,722,9,689], + 0x42: [676,0,667,16,619], + 0x43: [691,19,722,49,687], + 0x44: [676,0,722,14,690], + 0x45: [676,0,667,16,641], + 0x46: [676,0,611,16,583], + 0x47: [691,19,778,37,755], + 0x48: [676,0,778,21,759], + 0x49: [676,0,389,20,370], + 0x4A: [676,96,500,3,478], + 0x4B: [676,0,778,30,769], + 0x4C: [677,0,667,19,638], + 0x4D: [676,0,944,14,921], + 0x4E: [676,18,722,16,701], + 0x4F: [691,19,778,35,743], + 0x50: [676,0,611,16,600], + 0x51: [691,176,778,35,743], + 0x52: [676,0,722,26,716], + 0x53: [692,19,556,35,513], + 0x54: [676,0,667,31,636], + 0x55: [676,19,722,16,701], + 0x56: [676,18,722,16,701], + 0x57: [676,15,1000,19,981], + 0x58: [676,0,722,16,699], + 0x59: [676,0,722,15,699], + 0x5A: [676,0,667,28,634], + 0x5B: [678,149,333,67,301], + 0x5C: [691,19,278,-25,303], + 0x5D: [678,149,333,32,266], + 0x5E: [676,-311,581,73,509], + 0x5F: [-75,125,500,0,500], + 0x60: [713,-528,333,8,246], + 0x61: [473,14,500,25,488], + 0x62: [676,14,556,17,521], + 0x63: [473,14,444,25,430], + 0x64: [676,14,556,25,534], + 0x65: [473,14,444,25,427], + 0x66: [691,0,333,14,389], + 0x67: [473,206,500,28,483], + 0x68: [676,0,556,15,534], + 0x69: [691,0,278,15,256], + 0x6A: [691,203,333,-57,263], + 0x6B: [676,0,556,22,543], + 0x6C: [676,0,278,15,256], + 0x6D: [473,0,833,15,814], + 0x6E: [473,0,556,21,539], + 0x6F: [473,14,500,25,476], + 0x70: [473,205,556,19,524], + 0x71: [473,205,556,34,536], + 0x72: [473,0,444,28,434], + 0x73: [473,14,389,25,361], + 0x74: [630,12,333,19,332], + 0x75: [461,14,556,16,538], + 0x76: [461,14,500,21,485], + 0x77: [461,14,722,23,707], + 0x78: [461,0,500,12,484], + 0x79: [461,205,500,16,482], + 0x7A: [461,0,444,21,420], + 0x7B: [698,175,394,22,340], + 0x7C: [691,19,220,66,154], + 0x7D: [698,175,394,54,372], + 0x7E: [333,-173,520,29,491], + 0xA0: [0,0,250,0,0], + 0xA3: [684,16,500,21,477], + 0xA5: [676,0,500,-64,547], + 0xA7: [691,132,500,57,443], + 0xA8: [666,-537,333,-2,337], + 0xAC: [399,-108,750,65,685], + 0xAE: [691,19,747,26,721], + 0xAF: [637,-565,333,1,331], + 0xB0: [688,-402,400,57,343], + 0xB1: [518,151,770,65,685], + 0xB4: [713,-528,333,86,324], + 0xB5: [461,206,556,33,536], + 0xB7: [417,-248,250,41,210], + 0xD7: [538,33,702,66,636], + 0xF0: [691,14,500,25,476], + 0xF7: [537,31,570,33,537], + 0x127: [676,0,556,15,534], + 0x131: [461,0,278,15,256], + 0x237: [461,203,333,-57,260], + 0x2C6: [704,-528,333,-2,335], + 0x2C7: [704,-528,333,-2,335], + 0x2C9: [637,-565,370,20,350], + 0x2CA: [713,-528,266,20,258], + 0x2CB: [713,-528,266,20,258], + 0x2D8: [691,-528,333,15,318], + 0x2D9: [666,-537,333,102,231], + 0x2DA: [750,-537,333,60,273], + 0x2DC: [674,-547,333,-16,349], + 0x300: [713,-528,0,-369,-131], + 0x301: [713,-528,0,-369,-131], + 0x302: [704,-528,0,-418,-81], + 0x303: [674,-547,0,-432,-67], + 0x304: [637,-565,0,-415,-85], + 0x306: [691,-528,0,-401,-98], + 0x307: [666,-537,0,-314,-185], + 0x308: [666,-537,0,-419,-80], + 0x30A: [750,-537,0,-356,-143], + 0x30B: [713,-528,0,-469,-31], + 0x30C: [704,-528,0,-418,-81], + 0x338: [662,156,0,-410,31], + 0x391: [690,0,722,9,689], + 0x392: [676,0,667,16,619], + 0x393: [676,0,620,16,593], + 0x394: [690,0,722,33,673], + 0x395: [676,0,667,16,641], + 0x396: [676,0,667,28,634], + 0x397: [676,0,778,21,759], + 0x398: [692,18,778,35,743], + 0x399: [676,0,389,20,370], + 0x39A: [676,0,778,30,769], + 0x39B: [690,0,707,9,674], + 0x39C: [676,0,944,14,921], + 0x39D: [676,18,722,16,701], + 0x39E: [676,0,647,40,607], + 0x39F: [691,19,778,35,743], + 0x3A0: [676,0,778,21,759], + 0x3A1: [676,0,611,16,600], + 0x3A3: [676,0,671,28,641], + 0x3A4: [676,0,667,31,636], + 0x3A5: [692,0,703,7,693], + 0x3A6: [676,0,836,18,818], + 0x3A7: [676,0,722,16,699], + 0x3A8: [692,0,808,15,797], + 0x3A9: [692,0,768,28,740], + 0x3B1: [473,14,644,25,618], + 0x3B2: [692,205,556,45,524], + 0x3B3: [473,205,518,12,501], + 0x3B4: [692,14,502,26,477], + 0x3B5: [473,14,444,28,429], + 0x3B6: [692,205,459,23,437], + 0x3B7: [473,205,585,12,545], + 0x3B8: [692,14,501,25,476], + 0x3B9: [461,14,326,15,304], + 0x3BA: [473,0,581,21,559], + 0x3BB: [692,18,547,19,527], + 0x3BC: [461,205,610,45,588], + 0x3BD: [473,14,518,15,495], + 0x3BE: [692,205,468,23,439], + 0x3BF: [473,14,500,25,476], + 0x3C0: [461,18,631,20,609], + 0x3C1: [473,205,547,45,515], + 0x3C2: [473,203,464,23,444], + 0x3C3: [461,14,568,25,529], + 0x3C4: [461,14,492,18,457], + 0x3C5: [473,14,576,12,551], + 0x3C6: [473,205,653,24,629], + 0x3C7: [473,205,612,21,586], + 0x3C8: [473,205,763,12,751], + 0x3C9: [473,14,733,26,708], + 0x3D0: [697,10,500,54,462], + 0x3D1: [692,14,647,12,620], + 0x3D2: [692,0,743,7,733], + 0x3D5: [676,205,653,24,629], + 0x3D6: [461,14,864,9,851], + 0x3D8: [691,205,778,35,743], + 0x3D9: [473,205,500,25,476], + 0x3DA: [691,211,680,45,645], + 0x3DB: [503,203,504,23,483], + 0x3DC: [676,0,620,16,593], + 0x3DD: [461,205,491,45,458], + 0x3DE: [797,14,757,35,715], + 0x3DF: [692,0,485,29,453], + 0x3E0: [692,205,839,33,801], + 0x3E1: [639,205,611,29,583], + 0x3F0: [473,19,563,12,546], + 0x3F1: [473,205,511,25,486], + 0x3F4: [691,19,778,35,743], + 0x3F5: [473,14,444,25,430], + 0x3F6: [473,14,444,14,419], + 0x2013: [271,-181,500,0,500], + 0x2014: [271,-181,1000,0,1000], + 0x2018: [691,-356,333,70,254], + 0x2019: [691,-356,333,79,263], + 0x201C: [691,-356,500,32,486], + 0x201D: [691,-356,500,14,468], + 0x2020: [691,134,500,47,453], + 0x2021: [691,132,500,45,456], + 0x2026: [156,13,1000,82,917], + 0x2032: [713,-438,310,75,235], + 0x2033: [713,-438,467,75,392], + 0x2034: [713,-438,625,75,550], + 0x2035: [713,-438,310,75,235], + 0x203E: [838,-766,500,0,500], + 0x2044: [688,12,183,-168,345], + 0x2057: [713,-438,783,75,708], + 0x20D7: [846,-508,0,-470,14], + 0x210F: [685,10,576,50,543], + 0x2111: [701,25,790,54,735], + 0x2113: [699,14,500,43,632], + 0x2118: [541,219,850,55,822], + 0x211C: [701,25,884,50,841], + 0x2127: [674,18,758,35,723], + 0x2132: [676,0,616,48,546], + 0x2135: [694,34,766,76,690], + 0x2136: [694,34,703,60,659], + 0x2137: [694,34,562,71,493], + 0x2138: [694,34,599,40,559], + 0x2190: [451,-55,977,68,909], + 0x2191: [676,170,584,94,490], + 0x2192: [451,-55,977,68,909], + 0x2193: [676,170,584,94,490], + 0x2194: [451,-55,977,30,948], + 0x2195: [736,230,584,94,490], + 0x2196: [676,170,977,68,911], + 0x2197: [676,170,977,68,911], + 0x2198: [676,170,977,68,911], + 0x2199: [676,170,977,68,911], + 0x219A: [451,-55,977,68,909], + 0x219B: [451,-55,977,68,909], + 0x219E: [451,-55,977,68,909], + 0x21A0: [451,-55,977,68,909], + 0x21A2: [451,-55,977,68,909], + 0x21A3: [451,-55,977,68,909], + 0x21A6: [451,-55,977,68,909], + 0x21A9: [539,-55,966,66,900], + 0x21AA: [539,-55,966,66,900], + 0x21AB: [540,6,966,66,900], + 0x21AC: [540,6,966,66,900], + 0x21AD: [451,-55,1297,55,1242], + 0x21AE: [451,-55,977,30,948], + 0x21B0: [686,170,584,45,503], + 0x21B1: [686,170,584,81,539], + 0x21B6: [524,0,971,66,905], + 0x21B7: [524,0,971,66,905], + 0x21BA: [693,127,974,105,869], + 0x21BB: [693,127,974,105,869], + 0x21BC: [501,-209,977,66,910], + 0x21BD: [297,-5,977,65,909], + 0x21BE: [694,162,552,239,481], + 0x21BF: [694,162,352,71,313], + 0x21C0: [501,-209,977,66,910], + 0x21C1: [297,-5,977,66,910], + 0x21C2: [694,162,552,239,481], + 0x21C3: [694,162,552,71,313], + 0x21C4: [618,114,977,68,909], + 0x21C6: [618,114,977,68,909], + 0x21C7: [618,114,977,68,909], + 0x21C8: [676,165,864,66,798], + 0x21C9: [618,114,977,68,909], + 0x21CA: [676,165,864,66,798], + 0x21CB: [571,21,977,66,910], + 0x21CC: [571,21,977,66,910], + 0x21CD: [570,64,977,68,909], + 0x21CE: [570,64,1240,50,1190], + 0x21CF: [570,64,977,68,909], + 0x21D0: [570,64,977,68,909], + 0x21D1: [676,170,714,40,674], + 0x21D2: [570,64,977,68,909], + 0x21D3: [676,170,714,40,674], + 0x21D4: [570,64,1240,50,1190], + 0x21D5: [736,230,714,40,674], + 0x21DD: [451,-55,977,62,914], + 0x2200: [676,0,599,5,594], + 0x2201: [785,29,539,63,476], + 0x2202: [686,10,559,44,559], + 0x2203: [676,0,599,76,523], + 0x2204: [803,127,599,76,523], + 0x2205: [594,90,787,50,737], + 0x2207: [676,0,681,23,658], + 0x2208: [547,13,750,82,668], + 0x2209: [680,146,750,82,668], + 0x220B: [547,13,750,82,668], + 0x220D: [499,-35,500,60,440], + 0x2212: [297,-209,750,66,685], + 0x2213: [657,12,770,65,685], + 0x2214: [793,57,750,65,685], + 0x2215: [732,193,584,78,506], + 0x2216: [411,-93,452,25,427], + 0x2217: [502,-34,585,82,503], + 0x2218: [409,-95,394,40,354], + 0x2219: [414,-91,493,85,408], + 0x221A: [946,259,965,130,1016], + 0x221D: [450,0,772,80,692], + 0x221E: [450,0,964,80,884], + 0x2220: [569,0,792,50,708], + 0x2221: [569,74,792,50,708], + 0x2222: [534,26,695,27,667], + 0x2223: [690,189,288,100,188], + 0x2224: [690,189,411,23,388], + 0x2225: [690,189,487,100,387], + 0x2226: [690,189,617,23,594], + 0x2227: [536,28,640,52,588], + 0x2228: [536,28,640,52,588], + 0x2229: [541,33,650,66,584], + 0x222A: [541,33,650,66,584], + 0x222B: [824,320,553,32,733], + 0x2234: [575,41,750,66,685], + 0x2235: [575,41,750,66,685], + 0x223C: [374,-132,750,67,682], + 0x223D: [374,-132,750,67,682], + 0x2240: [575,40,348,53,295], + 0x2241: [444,-62,750,67,682], + 0x2242: [463,-45,750,68,683], + 0x2243: [463,-45,750,68,683], + 0x2245: [568,60,750,68,683], + 0x2246: [568,150,750,68,683], + 0x2248: [508,-26,750,68,683], + 0x224A: [568,75,750,68,683], + 0x224D: [518,13,750,68,683], + 0x224E: [484,-22,750,68,683], + 0x224F: [484,-107,750,68,683], + 0x2250: [667,-107,750,68,682], + 0x2251: [667,161,750,68,682], + 0x2252: [667,161,750,68,682], + 0x2253: [667,161,750,68,682], + 0x2256: [471,-63,750,68,682], + 0x2257: [809,-107,750,68,682], + 0x225C: [844,-107,750,68,682], + 0x2260: [662,156,750,68,682], + 0x2261: [507,-27,750,68,682], + 0x2264: [627,121,750,80,670], + 0x2265: [627,120,750,80,670], + 0x2266: [729,222,750,80,670], + 0x2267: [729,222,750,80,670], + 0x2268: [729,294,750,80,670], + 0x2269: [729,294,750,80,670], + 0x226A: [534,24,1000,38,961], + 0x226B: [534,24,1000,38,961], + 0x226C: [732,193,417,46,371], + 0x226E: [625,115,750,80,670], + 0x226F: [625,115,750,80,670], + 0x2270: [717,235,750,80,670], + 0x2271: [717,235,750,80,670], + 0x2272: [690,182,750,67,682], + 0x2273: [690,182,750,67,682], + 0x2276: [734,226,750,80,670], + 0x2277: [734,226,750,80,670], + 0x227A: [531,23,750,80,670], + 0x227B: [531,23,750,80,670], + 0x227C: [645,138,750,80,670], + 0x227D: [645,138,750,80,670], + 0x227E: [676,169,750,67,682], + 0x227F: [676,169,750,67,682], + 0x2280: [625,115,750,80,670], + 0x2281: [625,115,750,80,670], + 0x2282: [547,13,750,82,668], + 0x2283: [547,13,750,82,668], + 0x2286: [647,101,750,82,668], + 0x2287: [647,101,750,82,668], + 0x2288: [747,201,750,82,668], + 0x2289: [747,201,750,82,668], + 0x228A: [734,200,750,82,668], + 0x228B: [734,200,750,82,668], + 0x228E: [541,33,650,66,584], + 0x228F: [532,27,750,87,663], + 0x2290: [532,27,750,87,663], + 0x2291: [644,93,750,87,663], + 0x2292: [644,93,750,87,663], + 0x2293: [541,33,650,66,584], + 0x2294: [541,33,650,66,584], + 0x2295: [634,130,864,50,814], + 0x2296: [634,130,864,50,814], + 0x2297: [634,130,864,50,814], + 0x2298: [634,130,864,50,814], + 0x2299: [594,90,784,50,734], + 0x229A: [634,130,842,39,803], + 0x229B: [634,130,864,50,814], + 0x229D: [634,130,864,50,814], + 0x229E: [661,158,910,45,865], + 0x229F: [661,158,910,45,865], + 0x22A0: [661,158,910,45,865], + 0x22A1: [661,158,910,45,865], + 0x22A2: [676,0,750,91,659], + 0x22A3: [676,0,750,91,659], + 0x22A4: [676,0,750,91,659], + 0x22A5: [676,0,750,91,659], + 0x22A8: [676,0,750,91,659], + 0x22A9: [676,0,972,91,882], + 0x22AA: [676,0,944,91,856], + 0x22AC: [676,0,913,21,822], + 0x22AD: [676,0,912,21,822], + 0x22AE: [676,0,1096,21,1024], + 0x22AF: [676,0,1104,21,1016], + 0x22B2: [534,24,750,81,669], + 0x22B3: [534,24,750,81,669], + 0x22B4: [621,113,750,81,669], + 0x22B5: [621,113,750,81,669], + 0x22B8: [436,-96,884,50,834], + 0x22BA: [461,216,498,74,424], + 0x22BB: [536,189,640,52,588], + 0x22BC: [697,28,640,52,588], + 0x22C4: [515,-17,584,43,541], + 0x22C8: [604,72,870,67,803], + 0x22C9: [604,72,870,57,817], + 0x22CA: [604,72,870,53,813], + 0x22CB: [604,72,870,97,773], + 0x22CC: [604,72,870,97,773], + 0x22CD: [463,-45,750,68,683], + 0x22CE: [536,28,640,41,599], + 0x22CF: [536,28,640,41,599], + 0x22D0: [600,67,750,63,687], + 0x22D1: [600,67,750,63,687], + 0x22D2: [541,33,750,65,685], + 0x22D3: [541,33,750,65,685], + 0x22D4: [643,33,650,66,584], + 0x22D6: [534,24,750,80,670], + 0x22D7: [534,24,750,80,670], + 0x22D8: [534,24,1336,40,1296], + 0x22D9: [534,24,1336,40,1296], + 0x22DA: [916,408,750,80,670], + 0x22DB: [916,408,750,80,670], + 0x22DE: [645,138,750,80,670], + 0x22DF: [645,138,750,80,670], + 0x22E0: [735,199,750,80,670], + 0x22E1: [735,199,750,80,670], + 0x22E6: [690,200,750,67,682], + 0x22E7: [690,200,750,67,682], + 0x22E8: [676,187,750,67,682], + 0x22E9: [676,187,750,67,682], + 0x22EA: [625,115,750,81,669], + 0x22EB: [625,115,750,81,669], + 0x22EC: [711,228,750,81,669], + 0x22ED: [711,228,750,81,669], + 0x22EE: [678,174,584,205,375], + 0x22EF: [351,-181,977,62,914], + 0x22F1: [579,75,977,162,815], + 0x2308: [731,193,469,164,459], + 0x2309: [731,193,469,10,305], + 0x230A: [732,193,469,164,459], + 0x230B: [732,193,469,10,305], + 0x2322: [378,-129,1026,37,990], + 0x2323: [378,-129,1026,37,990], + 0x24C8: [690,19,695,0,695], + 0x25B3: [811,127,1145,35,1110], + 0x25BD: [811,127,1145,35,1110], + 0x25CA: [795,289,790,45,745], + 0x266D: [740,5,437,86,389], + 0x266E: [818,210,490,97,393], + 0x266F: [818,210,490,52,438], + 0x27E8: [732,193,445,69,399], + 0x27E9: [732,193,445,46,376], + 0x2A3F: [676,0,734,27,707], + 0x2A5E: [887,28,640,52,588], + 0x2A7D: [648,140,750,80,670], + 0x2A7E: [648,140,750,80,670], + 0x2A87: [646,213,750,80,670], + 0x2A88: [646,213,750,80,670], + 0x2A89: [792,305,750,67,682], + 0x2A8A: [792,305,750,67,682], + 0x2A95: [648,140,750,80,670], + 0x2A96: [648,140,750,80,670], + 0x2AAF: [619,111,750,80,670], + 0x2AB0: [619,111,750,80,670], + 0x2AC5: [730,222,750,80,670], + 0x2AC6: [730,222,750,80,670] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Main-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/BoldItalic/Main.js new file mode 100644 index 0000000..a75cf1f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/BoldItalic/Main.js @@ -0,0 +1,228 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Main-bold-italic'] = { + directory: 'Main/BoldItalic', + family: 'STIXMathJax_Main', + weight: 'bold', + style: 'italic', + testString: '\u00A0\u00A3\u00A5\u00A7\u00A8\u00AF\u00B0\u00B4\u00B5\u00B7\u00F0\u0127\u0131\u0237\u02C6', + 0x20: [0,0,250,0,0], + 0x21: [684,13,389,67,370], + 0x22: [685,-398,555,136,536], + 0x23: [700,0,500,-32,532], + 0x24: [733,100,500,-20,497], + 0x25: [706,29,757,80,707], + 0x26: [682,19,849,76,771], + 0x27: [685,-398,278,128,268], + 0x28: [685,179,333,28,344], + 0x29: [685,179,333,-44,271], + 0x2A: [685,-252,500,101,492], + 0x2B: [506,0,570,33,537], + 0x2C: [134,182,250,-60,144], + 0x2D: [282,-166,333,2,271], + 0x2E: [135,13,250,-9,139], + 0x2F: [685,18,278,-64,342], + 0x30: [683,14,500,17,477], + 0x31: [683,0,500,5,419], + 0x32: [683,0,500,-27,446], + 0x33: [683,13,500,-14,450], + 0x34: [683,0,500,-15,503], + 0x35: [669,13,500,-11,486], + 0x36: [679,15,500,23,509], + 0x37: [669,0,500,52,525], + 0x38: [683,13,500,3,476], + 0x39: [683,10,500,-12,475], + 0x3A: [459,13,333,23,264], + 0x3B: [459,183,333,-25,264], + 0x3C: [518,12,570,31,539], + 0x3D: [399,-107,570,33,537], + 0x3E: [518,12,570,31,539], + 0x3F: [684,13,500,79,470], + 0x40: [685,18,939,118,825], + 0x41: [683,0,667,-68,593], + 0x42: [669,0,667,-25,624], + 0x43: [685,18,667,32,677], + 0x44: [669,0,722,-46,685], + 0x45: [669,0,667,-27,653], + 0x46: [669,0,667,-13,660], + 0x47: [685,18,722,21,705], + 0x48: [669,0,778,-24,799], + 0x49: [669,0,389,-32,406], + 0x4A: [669,99,500,-46,524], + 0x4B: [669,0,667,-21,702], + 0x4C: [669,0,611,-22,590], + 0x4D: [669,12,889,-29,917], + 0x4E: [669,15,722,-27,748], + 0x4F: [685,18,722,27,691], + 0x50: [669,0,611,-28,613], + 0x51: [685,208,722,27,691], + 0x52: [669,0,667,-28,623], + 0x53: [685,18,556,2,526], + 0x54: [669,0,611,49,650], + 0x55: [669,18,722,67,744], + 0x56: [669,18,667,66,715], + 0x57: [669,18,889,64,940], + 0x58: [669,0,667,-24,694], + 0x59: [669,0,611,71,659], + 0x5A: [669,0,611,-12,589], + 0x5B: [674,159,333,-37,362], + 0x5C: [685,18,278,-1,279], + 0x5D: [674,157,333,-56,343], + 0x5E: [669,-304,570,67,503], + 0x5F: [-75,125,500,0,500], + 0x60: [697,-516,333,85,297], + 0x61: [462,14,500,-21,456], + 0x62: [699,13,500,-14,444], + 0x63: [462,13,444,-5,392], + 0x64: [699,13,500,-21,517], + 0x65: [462,13,444,5,398], + 0x66: [698,205,333,-169,446], + 0x67: [462,203,500,-52,477], + 0x68: [699,9,556,-13,498], + 0x69: [684,9,278,2,262], + 0x6A: [685,207,278,-189,279], + 0x6B: [699,8,500,-23,483], + 0x6C: [699,9,278,2,290], + 0x6D: [462,9,778,-14,723], + 0x6E: [462,9,556,-6,494], + 0x6F: [462,13,500,-3,441], + 0x70: [462,205,500,-120,446], + 0x71: [462,205,500,1,471], + 0x72: [462,0,389,-21,389], + 0x73: [462,13,389,-19,333], + 0x74: [594,9,278,-11,281], + 0x75: [462,9,556,15,493], + 0x76: [462,13,444,15,401], + 0x77: [462,13,667,15,614], + 0x78: [462,13,500,-45,469], + 0x79: [462,205,444,-94,392], + 0x7A: [449,78,389,-43,368], + 0x7B: [686,187,348,4,436], + 0x7C: [685,18,220,66,154], + 0x7D: [686,187,348,-129,303], + 0x7E: [331,-175,570,54,516], + 0xA0: [0,0,250,0,0], + 0xA3: [683,12,500,-32,510], + 0xA5: [669,0,500,33,628], + 0xA7: [685,143,500,36,459], + 0xA8: [655,-525,333,55,397], + 0xAF: [623,-553,333,51,393], + 0xB0: [688,-402,400,83,369], + 0xB4: [697,-516,333,139,379], + 0xB5: [449,207,576,-60,516], + 0xB7: [405,-257,250,51,199], + 0xF0: [699,13,500,-3,454], + 0x127: [699,9,556,-13,498], + 0x131: [462,9,278,2,238], + 0x237: [462,207,278,-189,239], + 0x2C6: [690,-516,333,40,367], + 0x2C7: [690,-516,333,79,411], + 0x2D8: [678,-516,333,71,387], + 0x2D9: [655,-525,333,163,293], + 0x2DA: [754,-541,333,127,340], + 0x2DC: [655,-536,333,48,407], + 0x391: [683,0,667,-68,593], + 0x392: [669,0,667,-25,624], + 0x393: [669,0,585,-13,670], + 0x394: [683,0,667,-65,549], + 0x395: [669,0,667,-27,653], + 0x396: [669,0,611,-12,589], + 0x397: [669,0,778,-24,799], + 0x398: [685,18,718,27,691], + 0x399: [669,0,389,-32,406], + 0x39A: [669,0,667,-21,702], + 0x39B: [683,0,655,-68,581], + 0x39C: [669,12,889,-29,917], + 0x39D: [669,15,722,-27,748], + 0x39E: [669,0,746,25,740], + 0x39F: [685,18,722,27,691], + 0x3A0: [669,0,778,-24,799], + 0x3A1: [669,0,611,-28,613], + 0x3A3: [669,0,633,-11,619], + 0x3A4: [669,0,611,49,650], + 0x3A5: [685,0,611,21,697], + 0x3A6: [669,0,771,26,763], + 0x3A7: [669,0,667,-24,694], + 0x3A8: [685,0,661,17,780], + 0x3A9: [685,0,808,25,774], + 0x3B1: [462,13,576,-3,574], + 0x3B2: [698,205,500,-79,480], + 0x3B3: [462,204,438,3,461], + 0x3B4: [698,13,496,-3,456], + 0x3B5: [462,13,454,-5,408], + 0x3B6: [698,205,415,-5,473], + 0x3B7: [462,205,488,-7,474], + 0x3B8: [698,13,501,-3,488], + 0x3B9: [462,9,278,2,238], + 0x3BA: [462,12,500,-23,504], + 0x3BB: [698,18,484,-34,459], + 0x3BC: [449,205,523,-82,483], + 0x3BD: [462,13,469,-23,441], + 0x3BE: [698,205,415,-5,426], + 0x3BF: [462,13,500,-3,441], + 0x3C0: [449,15,558,-6,570], + 0x3C1: [462,205,495,-81,447], + 0x3C2: [462,205,415,-5,447], + 0x3C3: [449,13,499,-3,536], + 0x3C4: [449,9,415,4,455], + 0x3C5: [462,13,536,-7,477], + 0x3C6: [462,205,678,-3,619], + 0x3C7: [462,205,404,-136,515], + 0x3C8: [462,205,652,-5,715], + 0x3C9: [462,13,735,-3,676], + 0x3D0: [696,12,500,42,479], + 0x3D1: [698,13,582,8,589], + 0x3D2: [685,0,611,21,696], + 0x3D5: [699,205,678,-3,619], + 0x3D6: [449,13,828,-2,844], + 0x3D8: [685,200,722,27,691], + 0x3D9: [462,205,500,-3,441], + 0x3DA: [685,205,669,32,665], + 0x3DB: [492,205,475,-5,509], + 0x3DC: [669,0,667,-13,670], + 0x3DD: [450,190,525,32,507], + 0x3DE: [793,18,757,-7,758], + 0x3DF: [698,0,485,16,466], + 0x3E0: [685,205,734,27,710], + 0x3E1: [639,205,530,47,467], + 0x3F0: [462,15,569,-50,592], + 0x3F1: [462,206,517,-12,458], + 0x3F4: [685,18,722,27,691], + 0x3F5: [462,13,466,-3,429], + 0x3F6: [460,15,486,-5,427], + 0x2013: [269,-178,500,-40,477], + 0x2014: [269,-178,1000,-40,977], + 0x2018: [685,-369,333,128,332], + 0x2019: [685,-369,333,98,302], + 0x201C: [685,-369,500,53,513], + 0x201D: [685,-369,500,53,513], + 0x2020: [685,145,500,91,494], + 0x2021: [685,139,500,10,493], + 0x203E: [838,-766,500,0,500], + 0x2044: [688,12,183,-168,345], + 0x2113: [699,14,500,43,632], + 0x2202: [686,10,559,44,559], + 0x24C8: [690,19,695,0,695] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Main-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/Italic/Main.js new file mode 100644 index 0000000..626d822 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/Italic/Main.js @@ -0,0 +1,228 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Main-italic'] = { + directory: 'Main/Italic', + family: 'STIXMathJax_Main', + style: 'italic', + testString: '\u00A0\u00A3\u00A5\u00A7\u00A8\u00AF\u00B0\u00B4\u00B5\u00B7\u00F0\u0127\u0131\u0237\u02C6', + 0x20: [0,0,250,0,0], + 0x21: [667,11,333,39,304], + 0x22: [666,-421,420,144,432], + 0x23: [676,0,501,2,540], + 0x24: [731,89,500,32,497], + 0x25: [706,19,755,80,705], + 0x26: [666,18,778,76,723], + 0x27: [666,-421,214,132,241], + 0x28: [669,181,333,42,315], + 0x29: [669,180,333,16,289], + 0x2A: [666,-255,500,128,492], + 0x2B: [506,0,675,86,590], + 0x2C: [101,129,250,-5,135], + 0x2D: [255,-192,333,49,282], + 0x2E: [100,11,250,27,138], + 0x2F: [666,18,278,-65,386], + 0x30: [676,7,500,32,497], + 0x31: [676,0,500,50,409], + 0x32: [676,0,500,12,452], + 0x33: [676,7,500,16,465], + 0x34: [676,0,500,1,479], + 0x35: [666,7,500,15,491], + 0x36: [686,7,500,30,521], + 0x37: [666,8,500,75,537], + 0x38: [676,7,500,30,493], + 0x39: [676,17,500,23,492], + 0x3A: [441,11,333,50,261], + 0x3B: [441,129,333,26,261], + 0x3C: [516,10,675,84,592], + 0x3D: [386,-120,675,86,590], + 0x3E: [516,10,675,84,592], + 0x3F: [664,12,500,132,472], + 0x40: [666,18,920,118,806], + 0x41: [668,0,611,-51,564], + 0x42: [653,0,611,-8,588], + 0x43: [666,18,667,66,689], + 0x44: [653,0,722,-8,700], + 0x45: [653,0,611,-1,634], + 0x46: [653,0,611,8,645], + 0x47: [666,18,722,52,722], + 0x48: [653,0,722,-8,769], + 0x49: [653,0,333,-8,384], + 0x4A: [653,18,444,-6,491], + 0x4B: [653,0,667,7,722], + 0x4C: [653,0,556,-8,559], + 0x4D: [653,0,833,-18,872], + 0x4E: [653,15,667,-20,727], + 0x4F: [666,18,722,60,699], + 0x50: [653,0,611,0,605], + 0x51: [666,182,722,59,699], + 0x52: [653,0,611,-13,588], + 0x53: [667,18,500,17,508], + 0x54: [653,0,556,59,633], + 0x55: [653,18,722,102,765], + 0x56: [653,18,611,76,688], + 0x57: [653,18,833,71,906], + 0x58: [653,0,611,-29,655], + 0x59: [653,0,556,78,633], + 0x5A: [653,0,556,-6,606], + 0x5B: [663,153,389,21,391], + 0x5C: [666,18,278,-41,319], + 0x5D: [663,153,389,12,382], + 0x5E: [666,-301,422,0,422], + 0x5F: [-75,125,500,0,500], + 0x60: [664,-492,333,120,311], + 0x61: [441,11,501,17,476], + 0x62: [683,11,500,23,473], + 0x63: [441,11,444,30,425], + 0x64: [683,13,500,15,527], + 0x65: [441,11,444,31,412], + 0x66: [678,207,278,-147,424], + 0x67: [441,206,500,8,471], + 0x68: [683,9,500,19,478], + 0x69: [654,11,278,49,264], + 0x6A: [652,207,278,-124,279], + 0x6B: [683,11,444,14,461], + 0x6C: [683,11,278,41,279], + 0x6D: [441,9,722,12,704], + 0x6E: [441,9,500,14,474], + 0x6F: [441,11,500,27,468], + 0x70: [441,205,504,-75,472], + 0x71: [441,209,500,25,484], + 0x72: [441,0,389,45,412], + 0x73: [442,13,389,16,366], + 0x74: [546,11,278,38,296], + 0x75: [441,11,500,42,475], + 0x76: [441,18,444,20,426], + 0x77: [441,18,667,15,648], + 0x78: [441,11,444,-27,447], + 0x79: [441,206,444,-24,426], + 0x7A: [428,81,389,-2,380], + 0x7B: [687,177,400,51,407], + 0x7C: [666,18,275,105,171], + 0x7D: [687,177,400,-7,349], + 0x7E: [323,-183,541,40,502], + 0xA0: [0,0,250,0,0], + 0xA3: [670,8,500,10,517], + 0xA5: [653,0,500,28,605], + 0xA7: [666,162,500,53,461], + 0xA8: [606,-508,333,107,405], + 0xAF: [583,-532,333,99,411], + 0xB0: [676,-390,400,101,387], + 0xB4: [664,-494,333,180,403], + 0xB5: [428,209,500,-30,497], + 0xB7: [310,-199,250,70,181], + 0xF0: [683,11,500,27,482], + 0x127: [683,9,500,19,478], + 0x131: [441,11,278,47,235], + 0x237: [441,207,278,-124,246], + 0x2C6: [661,-492,333,91,385], + 0x2C7: [661,-492,333,121,426], + 0x2D8: [650,-492,333,117,418], + 0x2D9: [606,-508,333,207,305], + 0x2DA: [707,-508,333,155,355], + 0x2DC: [624,-517,333,100,427], + 0x391: [668,0,611,-51,564], + 0x392: [653,0,611,-8,588], + 0x393: [653,0,611,8,645], + 0x394: [668,0,611,-32,526], + 0x395: [653,0,611,-1,634], + 0x396: [653,0,556,-6,606], + 0x397: [653,0,722,-8,769], + 0x398: [666,18,722,60,699], + 0x399: [653,0,333,-8,384], + 0x39A: [653,0,667,7,722], + 0x39B: [668,0,611,-51,564], + 0x39C: [653,0,833,-18,872], + 0x39D: [653,15,667,-20,727], + 0x39E: [653,0,651,-6,680], + 0x39F: [666,18,722,60,699], + 0x3A0: [653,0,722,-8,769], + 0x3A1: [653,0,611,0,605], + 0x3A3: [653,0,620,-6,659], + 0x3A4: [653,0,556,59,633], + 0x3A5: [668,0,556,78,648], + 0x3A6: [653,0,741,50,731], + 0x3A7: [653,0,611,-29,655], + 0x3A8: [667,0,675,77,778], + 0x3A9: [666,0,762,-6,739], + 0x3B1: [441,11,552,27,549], + 0x3B2: [678,205,506,-40,514], + 0x3B3: [435,206,410,19,438], + 0x3B4: [668,11,460,24,460], + 0x3B5: [441,11,444,30,425], + 0x3B6: [683,185,454,30,475], + 0x3B7: [441,205,474,14,442], + 0x3B8: [678,11,480,27,494], + 0x3B9: [441,11,278,49,235], + 0x3BA: [441,13,444,14,465], + 0x3BB: [678,16,458,-12,431], + 0x3BC: [428,205,526,-33,483], + 0x3BD: [441,18,470,20,459], + 0x3BE: [683,185,454,30,446], + 0x3BF: [441,11,500,27,468], + 0x3C0: [428,18,504,19,536], + 0x3C1: [441,205,504,-40,471], + 0x3C2: [441,185,454,30,453], + 0x3C3: [428,11,498,27,531], + 0x3C4: [428,11,410,12,426], + 0x3C5: [441,10,478,19,446], + 0x3C6: [441,205,622,27,590], + 0x3C7: [441,207,457,-108,498], + 0x3C8: [441,205,584,15,668], + 0x3C9: [439,11,686,27,654], + 0x3D0: [694,10,456,45,436], + 0x3D1: [678,10,556,19,526], + 0x3D2: [668,0,596,78,693], + 0x3D5: [683,205,627,27,595], + 0x3D6: [428,11,792,17,832], + 0x3D8: [666,205,722,60,699], + 0x3D9: [441,205,500,27,468], + 0x3DA: [666,207,673,55,665], + 0x3DB: [458,185,444,30,482], + 0x3DC: [653,0,557,8,645], + 0x3DD: [433,190,487,32,472], + 0x3DE: [773,18,645,19,675], + 0x3DF: [683,0,457,31,445], + 0x3E0: [666,207,708,7,668], + 0x3E1: [552,210,528,93,448], + 0x3F0: [441,13,533,-16,559], + 0x3F1: [441,205,516,27,484], + 0x3F4: [666,18,722,60,699], + 0x3F5: [441,11,444,30,420], + 0x3F6: [441,11,444,24,414], + 0x2013: [243,-197,500,-6,505], + 0x2014: [243,-197,889,-6,894], + 0x2018: [666,-436,333,171,310], + 0x2019: [666,-436,333,151,290], + 0x201C: [666,-436,556,166,514], + 0x201D: [666,-436,556,151,499], + 0x2020: [666,159,500,101,488], + 0x2021: [666,143,500,22,491], + 0x203E: [820,-770,500,0,500], + 0x2044: [676,10,167,-169,337], + 0x20D7: [760,-548,0,-453,-17], + 0x2113: [687,11,579,48,571], + 0x2202: [668,11,471,40,471], + 0x24C8: [676,14,684,0,684] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Main-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/Regular/Main.js new file mode 100644 index 0000000..0ee0700 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Main/Regular/Main.js @@ -0,0 +1,577 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Main'] = { + directory: 'Main/Regular', + family: 'STIXMathJax_Main', + testString: '\u00A0\u00A3\u00A5\u00A7\u00A8\u00AC\u00AE\u00AF\u00B0\u00B1\u00B4\u00B5\u00B7\u00D7\u00F0', + 0x20: [0,0,250,0,0], + 0x21: [676,9,333,130,236], + 0x22: [676,-431,408,77,331], + 0x23: [662,0,500,6,495], + 0x24: [727,87,500,44,458], + 0x25: [706,19,747,61,686], + 0x26: [676,13,778,42,750], + 0x27: [676,-431,180,48,133], + 0x28: [676,177,333,48,304], + 0x29: [676,177,333,29,285], + 0x2A: [676,-265,500,68,433], + 0x2B: [547,41,685,48,636], + 0x2C: [102,141,250,55,195], + 0x2D: [257,-194,333,39,285], + 0x2E: [100,11,250,70,181], + 0x2F: [676,14,278,-9,287], + 0x30: [676,14,500,24,476], + 0x31: [676,0,500,111,394], + 0x32: [676,0,500,29,474], + 0x33: [676,14,500,41,431], + 0x34: [676,0,500,12,473], + 0x35: [688,14,500,31,438], + 0x36: [684,14,500,34,468], + 0x37: [662,8,500,20,449], + 0x38: [676,14,500,56,445], + 0x39: [676,22,500,30,459], + 0x3A: [459,11,278,81,192], + 0x3B: [459,141,278,80,219], + 0x3C: [534,24,685,56,621], + 0x3D: [386,-120,685,48,637], + 0x3E: [534,24,685,56,621], + 0x3F: [676,8,444,68,414], + 0x40: [676,14,921,116,809], + 0x41: [674,0,722,15,707], + 0x42: [662,0,667,17,593], + 0x43: [676,14,667,28,633], + 0x44: [662,0,722,16,685], + 0x45: [662,0,611,12,597], + 0x46: [662,0,556,11,546], + 0x47: [676,14,722,32,709], + 0x48: [662,0,722,18,703], + 0x49: [662,0,333,18,315], + 0x4A: [662,14,373,-6,354], + 0x4B: [662,0,722,33,723], + 0x4C: [662,0,611,12,598], + 0x4D: [662,0,889,12,864], + 0x4E: [662,11,722,12,707], + 0x4F: [676,14,722,34,688], + 0x50: [662,0,557,16,542], + 0x51: [676,177,722,34,701], + 0x52: [662,0,667,17,660], + 0x53: [676,14,556,43,491], + 0x54: [662,0,611,17,593], + 0x55: [662,14,722,14,705], + 0x56: [662,11,722,16,697], + 0x57: [662,11,944,5,932], + 0x58: [662,0,722,10,704], + 0x59: [662,0,722,22,703], + 0x5A: [662,0,612,10,598], + 0x5B: [662,156,333,88,299], + 0x5C: [676,14,278,-9,287], + 0x5D: [662,156,333,34,245], + 0x5E: [662,-297,469,24,446], + 0x5F: [-75,125,500,0,500], + 0x60: [678,-507,333,18,242], + 0x61: [460,10,444,37,442], + 0x62: [683,10,500,3,468], + 0x63: [460,10,444,25,412], + 0x64: [683,10,500,27,491], + 0x65: [460,10,444,25,424], + 0x66: [683,0,333,20,383], + 0x67: [460,218,500,28,470], + 0x68: [683,0,500,9,487], + 0x69: [683,0,278,16,253], + 0x6A: [683,218,278,-70,194], + 0x6B: [683,0,500,7,505], + 0x6C: [683,0,278,19,257], + 0x6D: [460,0,778,16,775], + 0x6E: [460,0,500,16,485], + 0x6F: [460,10,500,29,470], + 0x70: [460,217,500,5,470], + 0x71: [460,217,500,24,488], + 0x72: [460,0,333,5,335], + 0x73: [459,10,389,51,348], + 0x74: [579,10,278,13,279], + 0x75: [450,10,500,9,480], + 0x76: [450,14,500,19,477], + 0x77: [450,14,722,21,694], + 0x78: [450,0,500,17,479], + 0x79: [450,218,500,14,475], + 0x7A: [450,0,444,27,418], + 0x7B: [680,181,480,100,350], + 0x7C: [676,14,200,67,133], + 0x7D: [680,181,480,130,380], + 0x7E: [325,-183,541,40,502], + 0xA0: [0,0,250,0,0], + 0xA3: [676,8,500,12,490], + 0xA5: [662,0,500,-53,512], + 0xA7: [676,148,500,70,426], + 0xA8: [622,-523,333,18,316], + 0xAC: [393,-115,600,48,552], + 0xAE: [676,14,760,38,722], + 0xAF: [601,-547,333,11,322], + 0xB0: [676,-390,400,57,343], + 0xB1: [502,87,685,48,637], + 0xB4: [678,-507,333,93,317], + 0xB5: [450,218,500,36,512], + 0xB7: [310,-199,250,70,181], + 0xD7: [529,25,640,43,597], + 0xF0: [686,10,500,29,471], + 0xF7: [516,10,564,30,534], + 0x127: [683,0,500,8,487], + 0x131: [460,0,278,16,253], + 0x237: [460,218,278,-70,193], + 0x2C6: [674,-507,333,11,322], + 0x2C7: [674,-507,333,11,322], + 0x2C9: [601,-547,334,11,322], + 0x2CA: [679,-509,333,93,320], + 0x2CB: [679,-509,333,22,249], + 0x2D8: [664,-507,335,27,308], + 0x2D9: [622,-523,333,118,217], + 0x2DA: [711,-512,333,67,266], + 0x2DC: [638,-532,333,1,331], + 0x300: [678,-507,0,-371,-147], + 0x301: [678,-507,0,-371,-147], + 0x302: [674,-507,0,-386,-75], + 0x303: [638,-532,0,-395,-65], + 0x304: [601,-547,0,-385,-74], + 0x306: [664,-507,0,-373,-92], + 0x307: [622,-523,0,-280,-181], + 0x308: [622,-523,0,-379,-81], + 0x30A: [711,-512,0,-329,-130], + 0x30B: [678,-507,0,-401,-22], + 0x30C: [674,-507,0,-385,-74], + 0x338: [662,156,0,-380,31], + 0x391: [674,0,722,15,707], + 0x392: [662,0,667,17,593], + 0x393: [662,0,587,11,577], + 0x394: [674,0,722,48,675], + 0x395: [662,0,611,12,597], + 0x396: [662,0,612,10,598], + 0x397: [662,0,722,18,703], + 0x398: [676,14,722,34,688], + 0x399: [662,0,333,18,315], + 0x39A: [662,0,731,33,723], + 0x39B: [674,0,702,15,687], + 0x39C: [662,0,889,12,864], + 0x39D: [662,11,722,12,707], + 0x39E: [662,0,643,29,614], + 0x39F: [676,14,722,34,688], + 0x3A0: [662,0,722,18,703], + 0x3A1: [662,0,557,16,542], + 0x3A3: [662,0,624,30,600], + 0x3A4: [662,0,611,17,593], + 0x3A5: [674,0,722,29,703], + 0x3A6: [662,0,763,35,728], + 0x3A7: [662,0,722,10,704], + 0x3A8: [690,0,746,22,724], + 0x3A9: [676,0,744,29,715], + 0x3B1: [460,10,543,29,529], + 0x3B2: [683,217,496,55,466], + 0x3B3: [457,218,474,10,444], + 0x3B4: [683,10,500,29,470], + 0x3B5: [460,10,439,25,407], + 0x3B6: [683,218,441,35,407], + 0x3B7: [460,217,512,10,452], + 0x3B8: [683,10,496,27,468], + 0x3B9: [460,10,275,20,267], + 0x3BA: [460,0,500,7,503], + 0x3BB: [683,11,497,12,492], + 0x3BC: [450,217,528,55,516], + 0x3BD: [460,14,455,20,443], + 0x3BE: [683,218,441,35,407], + 0x3BF: [460,10,505,35,473], + 0x3C0: [450,14,501,9,482], + 0x3C1: [460,217,496,55,466], + 0x3C2: [460,218,441,35,432], + 0x3C3: [450,10,548,29,518], + 0x3C4: [450,10,477,3,442], + 0x3C5: [460,10,524,16,494], + 0x3C6: [460,217,623,29,593], + 0x3C7: [460,220,500,11,486], + 0x3C8: [460,217,694,20,684], + 0x3C9: [460,10,625,29,595], + 0x3D0: [693,10,450,54,411], + 0x3D1: [683,10,554,0,544], + 0x3D2: [676,0,722,29,698], + 0x3D5: [683,217,623,29,593], + 0x3D6: [450,10,762,6,726], + 0x3D8: [676,217,722,34,688], + 0x3D9: [460,217,500,29,470], + 0x3DA: [676,218,667,28,622], + 0x3DB: [490,218,461,35,436], + 0x3DC: [662,0,556,11,546], + 0x3DD: [450,190,470,80,435], + 0x3DE: [797,14,703,13,678], + 0x3DF: [662,0,511,64,455], + 0x3E0: [676,218,801,11,767], + 0x3E1: [573,216,528,-6,487], + 0x3F0: [460,10,551,42,515], + 0x3F1: [460,215,500,29,470], + 0x3F4: [676,14,722,34,688], + 0x3F5: [460,10,439,25,407], + 0x3F6: [460,10,444,32,414], + 0x2013: [250,-201,500,0,500], + 0x2014: [250,-201,1000,0,1000], + 0x2016: [690,189,523,129,394], + 0x2018: [676,-433,333,115,254], + 0x2019: [676,-433,333,79,218], + 0x201C: [676,-433,444,43,414], + 0x201D: [676,-433,444,30,401], + 0x2020: [676,149,500,59,442], + 0x2021: [676,153,500,58,442], + 0x2026: [100,11,1000,111,888], + 0x2032: [678,-402,289,75,214], + 0x2033: [678,-401,426,75,351], + 0x2034: [678,-401,563,75,488], + 0x2035: [678,-402,289,75,214], + 0x203E: [820,-770,500,0,500], + 0x2044: [676,14,167,-168,331], + 0x2057: [678,-401,710,75,635], + 0x20D7: [760,-548,0,-453,-17], + 0x210F: [683,10,579,47,547], + 0x2111: [695,34,762,45,711], + 0x2113: [687,11,579,48,571], + 0x2118: [547,217,826,52,799], + 0x211C: [704,22,874,50,829], + 0x2127: [662,14,744,29,715], + 0x2132: [662,0,535,13,462], + 0x2135: [677,13,682,43,634], + 0x2136: [677,19,639,57,572], + 0x2137: [677,19,505,40,463], + 0x2138: [677,19,599,52,495], + 0x2141: [676,14,695,68,668], + 0x2190: [449,-58,926,71,857], + 0x2191: [662,156,511,60,451], + 0x2192: [448,-57,926,70,856], + 0x2193: [662,156,511,60,451], + 0x2194: [449,-57,926,38,888], + 0x2195: [730,224,511,60,451], + 0x2196: [662,156,926,70,856], + 0x2197: [662,156,926,70,856], + 0x2198: [662,156,926,70,856], + 0x2199: [662,156,926,70,856], + 0x219A: [450,-58,926,60,866], + 0x219B: [450,-58,926,60,866], + 0x219E: [449,-58,926,70,856], + 0x21A0: [449,-58,926,70,856], + 0x21A2: [449,-58,926,70,856], + 0x21A3: [449,-58,926,70,856], + 0x21A6: [450,-57,926,70,857], + 0x21A9: [553,-57,926,70,856], + 0x21AA: [553,-57,926,70,856], + 0x21AB: [553,0,926,70,856], + 0x21AC: [553,0,926,70,856], + 0x21AD: [449,-58,1200,49,1151], + 0x21AE: [450,-58,926,38,888], + 0x21B0: [662,156,463,30,424], + 0x21B1: [662,156,463,39,433], + 0x21B6: [534,0,926,44,882], + 0x21B7: [534,0,926,44,882], + 0x21BA: [686,116,974,116,858], + 0x21BB: [686,116,974,116,858], + 0x21BC: [494,-220,955,54,901], + 0x21BD: [286,-12,955,54,901], + 0x21BE: [662,156,511,222,441], + 0x21BF: [662,156,511,69,288], + 0x21C0: [494,-220,955,54,901], + 0x21C1: [286,-12,955,54,901], + 0x21C2: [662,156,511,222,441], + 0x21C3: [662,156,511,69,288], + 0x21C4: [598,92,926,71,856], + 0x21C6: [598,92,926,71,856], + 0x21C7: [599,92,926,70,856], + 0x21C8: [662,156,773,41,732], + 0x21C9: [599,92,926,70,856], + 0x21CA: [662,156,773,41,732], + 0x21CB: [539,33,926,70,856], + 0x21CC: [539,33,926,70,856], + 0x21CD: [551,45,926,60,866], + 0x21CE: [517,10,926,20,906], + 0x21CF: [551,45,926,60,866], + 0x21D0: [551,45,926,60,866], + 0x21D1: [662,156,685,45,641], + 0x21D2: [551,45,926,60,866], + 0x21D3: [662,156,685,45,641], + 0x21D4: [517,10,926,20,906], + 0x21D5: [730,224,685,45,641], + 0x21DA: [644,139,926,46,852], + 0x21DB: [645,138,926,74,880], + 0x21DD: [449,-58,926,60,866], + 0x21E0: [449,-58,926,60,866], + 0x21E2: [449,-58,926,60,866], + 0x2200: [662,0,560,2,558], + 0x2201: [760,15,463,59,404], + 0x2202: [668,11,471,40,471], + 0x2203: [662,0,560,73,487], + 0x2204: [775,122,560,71,487], + 0x2205: [583,79,762,50,712], + 0x2207: [662,12,731,63,667], + 0x2208: [531,27,685,60,625], + 0x2209: [662,157,685,60,625], + 0x220B: [531,27,685,60,625], + 0x220D: [459,-45,486,64,422], + 0x2212: [286,-220,685,64,621], + 0x2213: [502,87,685,48,637], + 0x2214: [741,41,685,48,636], + 0x2215: [710,222,523,46,478], + 0x2216: [411,-93,428,25,403], + 0x2217: [471,-33,523,67,457], + 0x2218: [387,-117,350,40,310], + 0x2219: [387,-117,350,40,310], + 0x221A: [973,259,928,112,963], + 0x221D: [430,0,685,41,643], + 0x221E: [430,0,926,70,854], + 0x2220: [547,0,685,23,643], + 0x2221: [547,72,685,22,642], + 0x2222: [519,11,685,56,653], + 0x2223: [690,189,266,100,166], + 0x2224: [690,189,404,23,381], + 0x2225: [690,189,523,129,394], + 0x2226: [690,189,609,23,586], + 0x2227: [536,29,620,31,589], + 0x2228: [536,29,620,31,589], + 0x2229: [536,31,620,48,572], + 0x222A: [536,31,620,48,572], + 0x222B: [824,320,459,32,639], + 0x2234: [521,16,620,38,582], + 0x2235: [521,16,620,38,582], + 0x223C: [362,-148,685,48,637], + 0x223D: [362,-148,685,48,637], + 0x2240: [547,42,286,35,249], + 0x2241: [424,-88,685,48,637], + 0x2242: [445,-55,685,48,637], + 0x2243: [445,-55,685,48,637], + 0x2245: [532,27,685,48,637], + 0x2246: [604,107,685,47,637], + 0x2248: [475,-25,685,48,637], + 0x224A: [552,45,685,48,637], + 0x224D: [498,-8,685,48,637], + 0x224E: [471,-35,685,48,637], + 0x224F: [471,-120,685,48,637], + 0x2250: [611,-120,685,48,637], + 0x2251: [611,106,685,48,637], + 0x2252: [611,105,685,48,637], + 0x2253: [611,106,685,48,637], + 0x2256: [416,-90,685,48,637], + 0x2257: [752,-120,685,48,637], + 0x225C: [853,-120,685,48,637], + 0x2260: [662,156,685,48,637], + 0x2261: [478,-28,685,48,637], + 0x2264: [609,103,685,64,629], + 0x2265: [609,103,685,64,629], + 0x2266: [718,211,685,57,622], + 0x2267: [718,211,685,57,622], + 0x2268: [746,260,685,56,621], + 0x2269: [746,260,685,56,621], + 0x226A: [532,26,933,25,908], + 0x226B: [532,26,933,25,908], + 0x226C: [730,224,466,85,381], + 0x226E: [662,156,685,56,621], + 0x226F: [662,156,685,56,621], + 0x2270: [730,229,685,56,621], + 0x2271: [730,229,685,56,622], + 0x2272: [664,164,685,48,637], + 0x2273: [664,164,685,48,637], + 0x2276: [705,204,685,56,621], + 0x2277: [705,204,685,56,621], + 0x227A: [532,26,685,64,621], + 0x227B: [532,26,685,64,621], + 0x227C: [628,120,685,64,621], + 0x227D: [629,119,685,64,621], + 0x227E: [664,164,685,48,637], + 0x227F: [664,164,685,48,637], + 0x2280: [662,156,685,64,621], + 0x2281: [662,156,685,64,621], + 0x2282: [531,25,685,64,621], + 0x2283: [531,25,685,64,621], + 0x2286: [607,103,685,64,621], + 0x2287: [607,103,685,64,621], + 0x2288: [730,229,685,64,621], + 0x2289: [730,229,685,64,621], + 0x228A: [627,216,685,64,621], + 0x228B: [627,216,685,64,621], + 0x228E: [536,31,620,48,572], + 0x228F: [531,25,685,64,621], + 0x2290: [531,25,685,64,621], + 0x2291: [607,103,685,64,621], + 0x2292: [607,103,685,64,621], + 0x2293: [536,31,620,48,572], + 0x2294: [536,31,620,48,572], + 0x2295: [623,119,842,50,792], + 0x2296: [623,119,842,50,792], + 0x2297: [623,119,842,50,792], + 0x2298: [623,119,842,50,792], + 0x2299: [583,79,762,50,712], + 0x229A: [623,119,842,50,792], + 0x229B: [623,119,842,50,792], + 0x229D: [623,119,842,50,792], + 0x229E: [662,158,910,45,865], + 0x229F: [662,158,910,45,865], + 0x22A0: [662,158,910,45,865], + 0x22A1: [662,157,910,45,865], + 0x22A2: [662,0,685,64,621], + 0x22A3: [662,0,685,64,621], + 0x22A4: [662,0,685,48,637], + 0x22A5: [662,0,685,48,637], + 0x22A8: [662,0,685,64,621], + 0x22A9: [662,0,860,57,814], + 0x22AA: [662,0,860,45,815], + 0x22AC: [662,0,786,9,723], + 0x22AD: [662,0,786,9,723], + 0x22AE: [662,0,968,9,922], + 0x22AF: [662,0,968,9,922], + 0x22B2: [531,25,685,24,631], + 0x22B3: [531,25,685,54,661], + 0x22B4: [607,103,685,24,631], + 0x22B5: [607,103,685,54,661], + 0x22B8: [403,-103,849,50,799], + 0x22BA: [450,212,480,74,406], + 0x22BB: [536,139,620,32,590], + 0x22BC: [646,29,620,32,590], + 0x22C4: [488,-16,523,26,497], + 0x22C5: [313,-193,286,83,203], + 0x22C6: [597,13,700,35,665], + 0x22C8: [582,80,810,54,756], + 0x22C9: [582,80,810,93,716], + 0x22CA: [582,80,810,93,716], + 0x22CB: [582,80,810,74,736], + 0x22CC: [582,80,810,74,736], + 0x22CD: [445,-55,685,48,637], + 0x22CE: [532,25,580,31,549], + 0x22CF: [532,25,580,31,549], + 0x22D0: [531,25,685,64,621], + 0x22D1: [531,25,685,64,621], + 0x22D2: [536,31,620,48,572], + 0x22D3: [536,31,620,48,572], + 0x22D4: [631,31,620,48,572], + 0x22D6: [534,24,685,56,621], + 0x22D7: [534,24,685,56,621], + 0x22D8: [534,24,1274,45,1229], + 0x22D9: [534,24,1274,45,1229], + 0x22DA: [830,324,685,56,621], + 0x22DB: [830,324,685,56,621], + 0x22DE: [627,121,685,64,621], + 0x22DF: [627,121,685,64,621], + 0x22E0: [730,229,685,64,621], + 0x22E1: [730,229,685,64,621], + 0x22E6: [669,279,685,48,637], + 0x22E7: [669,279,685,48,637], + 0x22E8: [670,279,685,48,637], + 0x22E9: [670,279,685,48,637], + 0x22EA: [662,156,635,24,581], + 0x22EB: [662,156,635,54,611], + 0x22EC: [730,229,635,24,581], + 0x22ED: [730,229,635,54,611], + 0x22EE: [606,104,511,192,319], + 0x22EF: [316,-189,926,108,818], + 0x22F1: [520,18,926,194,732], + 0x2308: [713,213,469,188,447], + 0x2309: [713,213,469,27,286], + 0x230A: [713,213,469,188,447], + 0x230B: [713,213,469,27,286], + 0x2322: [360,-147,1019,54,965], + 0x2323: [360,-147,1019,54,965], + 0x23B4: [766,-574,926,55,871], + 0x23B5: [109,83,926,55,871], + 0x23D0: [405,-101,511,222,288], + 0x23DC: [100,100,1000,0,1000], + 0x23DD: [764,-564,1000,0,1000], + 0x23DE: [214,114,1000,0,1000], + 0x23DF: [892,-564,1000,0,1000], + 0x23E0: [100,114,1000,0,1000], + 0x23E1: [778,-564,1000,0,1000], + 0x24C8: [676,14,684,0,684], + 0x250C: [340,303,708,317,720], + 0x2510: [340,303,708,-11,390], + 0x2514: [910,-267,708,317,720], + 0x2518: [910,-267,708,-11,390], + 0x2571: [910,303,708,-15,723], + 0x2572: [910,303,708,-15,723], + 0x25A0: [662,158,910,45,865], + 0x25A1: [662,158,910,45,865], + 0x25B2: [811,127,1145,35,1110], + 0x25B3: [811,127,1145,35,1110], + 0x25B6: [790,285,1043,70,1008], + 0x25B8: [556,49,660,80,605], + 0x25B9: [555,50,660,80,605], + 0x25BC: [811,127,1145,35,1110], + 0x25BD: [811,127,1145,35,1110], + 0x25C0: [790,285,1043,35,973], + 0x25C2: [555,50,660,55,580], + 0x25C3: [554,51,660,55,580], + 0x25CA: [795,289,790,45,745], + 0x25EF: [785,282,1207,70,1137], + 0x2660: [609,99,685,34,651], + 0x2661: [603,105,685,34,651], + 0x2662: [609,105,685,41,643], + 0x2663: [603,99,685,34,651], + 0x266D: [768,10,426,57,346], + 0x266E: [768,181,426,75,350], + 0x266F: [768,181,426,41,386], + 0x2713: [707,12,755,34,704], + 0x2720: [592,87,767,53,714], + 0x27E8: [713,213,400,77,335], + 0x27E9: [713,213,400,65,323], + 0x27EE: [676,177,233,56,211], + 0x27EF: [676,177,233,22,177], + 0x27F5: [449,-58,1574,55,1519], + 0x27F6: [449,-57,1574,55,1519], + 0x27F7: [449,-57,1574,55,1519], + 0x27F8: [551,45,1574,55,1519], + 0x27F9: [551,45,1574,55,1519], + 0x27FA: [517,10,1574,55,1519], + 0x27FC: [450,-57,1574,55,1519], + 0x2997: [719,213,488,188,466], + 0x2998: [719,213,488,22,300], + 0x29EB: [795,289,790,45,745], + 0x29F5: [710,222,523,46,478], + 0x29F8: [695,325,602,85,517], + 0x29F9: [695,325,602,85,517], + 0x2A3F: [662,0,694,30,664], + 0x2A5E: [796,29,620,31,589], + 0x2A7D: [625,137,685,56,621], + 0x2A7E: [625,137,685,56,621], + 0x2A85: [746,275,685,48,637], + 0x2A86: [746,275,685,48,637], + 0x2A87: [628,216,685,60,625], + 0x2A88: [628,216,687,56,621], + 0x2A89: [746,309,685,48,637], + 0x2A8A: [746,309,685,48,637], + 0x2A8B: [930,424,685,56,621], + 0x2A8C: [930,424,685,56,621], + 0x2A95: [640,122,685,56,621], + 0x2A96: [640,122,685,56,621], + 0x2AAF: [609,103,685,64,621], + 0x2AB0: [609,103,685,64,621], + 0x2AB5: [747,260,685,65,622], + 0x2AB6: [747,260,685,65,622], + 0x2AB7: [747,275,685,48,637], + 0x2AB8: [747,275,685,48,637], + 0x2AB9: [747,309,685,48,637], + 0x2ABA: [747,309,685,48,637], + 0x2AC5: [717,211,685,64,622], + 0x2AC6: [717,211,685,65,623], + 0x2ACB: [717,319,685,61,619], + 0x2ACC: [717,319,685,66,624], + 0xFFFD: [662,217,872,55,817] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Main"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Bold/Main.js new file mode 100644 index 0000000..1728c41 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Bold/Main.js @@ -0,0 +1,200 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Marks-bold'] = { + directory: 'Marks/Bold', + family: 'STIXMathJax_Marks', + weight: 'bold', + testString: '\u00A0\u02B0\u02B1\u02B2\u02B3\u02B4\u02B5\u02B6\u02B7\u02B8\u02B9\u02BA\u02BB\u02BC\u02BD', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2B0: [842,-335,378,6,365], + 0x2B1: [848,-336,378,7,365], + 0x2B2: [868,-179,300,25,273], + 0x2B3: [699,-335,270,12,266], + 0x2B4: [690,-326,292,10,264], + 0x2B5: [690,-163,319,10,342], + 0x2B6: [684,-345,404,20,397], + 0x2B7: [681,-331,550,23,528], + 0x2B8: [690,-179,380,16,374], + 0x2B9: [684,-421,208,30,216], + 0x2BA: [684,-421,356,19,364], + 0x2BB: [685,-350,333,39,223], + 0x2BC: [686,-351,333,39,223], + 0x2BD: [686,-351,250,39,223], + 0x2BE: [662,-382,334,65,250], + 0x2BF: [662,-382,334,65,250], + 0x2C0: [690,-240,353,30,333], + 0x2C1: [690,-240,353,30,333], + 0x2C2: [760,-414,317,30,297], + 0x2C3: [760,-414,317,30,297], + 0x2C4: [720,-453,317,-14,332], + 0x2C5: [720,-453,317,-14,332], + 0x2C8: [720,-455,279,112,167], + 0x2CC: [70,195,278,112,167], + 0x2CD: [-88,160,370,20,350], + 0x2CE: [-7,192,333,15,253], + 0x2CF: [-7,192,333,80,318], + 0x2D0: [474,-4,333,79,254], + 0x2D1: [474,-294,333,79,254], + 0x2D2: [378,-62,333,65,268], + 0x2D3: [378,-62,333,65,268], + 0x2D4: [206,-4,333,51,281], + 0x2D5: [206,-4,333,51,281], + 0x2D6: [227,-9,334,61,273], + 0x2D7: [150,-84,334,61,273], + 0x2DB: [44,173,333,90,319], + 0x2DD: [713,-528,333,-13,425], + 0x2DE: [481,-186,292,0,302], + 0x2DF: [744,-506,260,10,250], + 0x2E0: [684,-190,420,10,410], + 0x2E1: [842,-335,190,5,186], + 0x2E2: [695,-320,300,19,278], + 0x2E3: [690,-335,380,12,376], + 0x2E4: [855,-335,328,20,323], + 0x2E5: [676,0,405,40,368], + 0x2E6: [676,0,405,40,368], + 0x2E7: [676,0,405,40,368], + 0x2E8: [676,0,405,40,368], + 0x2E9: [676,0,405,40,368], + 0x2EC: [70,167,314,5,309], + 0x2ED: [720,-528,395,5,390], + 0x2F7: [-108,235,333,-16,349], + 0x305: [838,-788,0,-500,0], + 0x309: [751,-491,0,-336,-131], + 0x30D: [730,-530,0,-277,-211], + 0x30E: [730,-530,0,-358,-142], + 0x30F: [713,-528,0,-469,-31], + 0x310: [828,-528,0,-401,-98], + 0x311: [691,-528,0,-401,-98], + 0x312: [867,-532,0,-342,-158], + 0x313: [867,-532,0,-342,-158], + 0x314: [867,-532,0,-342,-158], + 0x315: [867,-532,0,-116,68], + 0x316: [-70,255,0,-369,-131], + 0x317: [-70,255,0,-369,-131], + 0x318: [-58,288,0,-425,-223], + 0x319: [-58,288,0,-288,-86], + 0x31A: [752,-531,0,-410,-93], + 0x31B: [505,-352,0,-62,66], + 0x31C: [-33,313,0,-375,-190], + 0x31D: [-70,272,0,-365,-135], + 0x31E: [-70,272,0,-365,-135], + 0x31F: [-70,287,0,-356,-144], + 0x320: [-140,206,0,-356,-144], + 0x321: [75,287,0,-241,-22], + 0x322: [75,287,0,-94,125], + 0x323: [-109,238,0,-314,-185], + 0x324: [-109,238,0,-419,-80], + 0x325: [-66,279,0,-356,-143], + 0x326: [-88,423,0,-342,-158], + 0x327: [0,218,0,-363,-137], + 0x328: [44,173,0,-364,-135], + 0x329: [-107,239,0,-277,-222], + 0x32A: [-86,260,0,-425,-93], + 0x32B: [-104,242,0,-420,-95], + 0x32C: [-83,259,0,-418,-81], + 0x32D: [-85,261,0,-418,-81], + 0x32E: [-78,241,0,-401,-98], + 0x32F: [-78,241,0,-401,-98], + 0x330: [-108,235,0,-432,-67], + 0x331: [-137,209,0,-415,-85], + 0x332: [-137,187,0,-500,0], + 0x333: [-137,287,0,-500,0], + 0x334: [316,-189,0,-432,-67], + 0x335: [282,-224,0,-414,-108], + 0x336: [282,-224,0,-510,-10], + 0x337: [580,74,0,-410,-43], + 0x339: [-33,313,0,-375,-190], + 0x33A: [-71,245,0,-425,-93], + 0x33B: [-70,264,0,-353,-167], + 0x33C: [-89,234,0,-410,-109], + 0x33D: [719,-520,0,-350,-150], + 0x33E: [881,-516,0,-314,-187], + 0x33F: [938,-788,0,-500,0], + 0x346: [717,-544,0,-410,-107], + 0x347: [-137,322,0,0,330], + 0x34C: [837,-547,0,-446,-81], + 0x359: [-66,368,0,-359,-89], + 0x35C: [-79,242,0,-401,300], + 0x360: [674,-529,0,-432,398], + 0x361: [691,-534,0,-403,265], + 0x362: [-54,293,0,-432,377], + 0x2010: [287,-171,333,44,287], + 0x2011: [287,-171,333,44,287], + 0x2012: [287,-171,500,0,500], + 0x2015: [271,-181,2000,0,2000], + 0x2017: [-137,287,520,10,510], + 0x201A: [155,180,333,79,263], + 0x201B: [691,-356,333,79,263], + 0x201E: [155,180,500,14,468], + 0x201F: [691,-356,500,14,468], + 0x2022: [462,-42,560,70,490], + 0x2025: [156,13,666,82,584], + 0x2030: [706,29,1110,61,1049], + 0x2031: [706,29,1472,61,1411], + 0x2036: [713,-438,467,75,392], + 0x2037: [713,-438,625,75,550], + 0x2038: [117,170,584,91,497], + 0x2039: [415,-36,333,51,305], + 0x203A: [415,-36,333,28,282], + 0x203C: [691,13,625,81,544], + 0x2040: [725,-508,798,79,733], + 0x2047: [689,13,947,57,892], + 0x204E: [236,200,500,56,448], + 0x204F: [472,180,333,67,251], + 0x2051: [706,200,500,56,448], + 0x20D0: [846,-637,0,-470,14], + 0x20D1: [846,-637,0,-470,14], + 0x20D2: [662,156,0,-298,-223], + 0x20D6: [846,-508,0,-500,-16], + 0x20DB: [666,-537,0,-512,37], + 0x20DC: [666,-537,0,-627,132], + 0x20DD: [760,254,0,-753,256], + 0x20E1: [846,-508,0,-515,79], + 0x20E4: [1055,169,0,-998,519], + 0x20E5: [662,155,0,-470,12], + 0x20E6: [662,156,0,-390,-111], + 0x20E7: [760,172,0,-643,200], + 0x20E8: [-109,238,0,-512,37], + 0x20E9: [717,-544,0,-510,54], + 0x20EA: [441,-65,0,-688,148], + 0x20EB: [775,235,0,-505,208], + 0x20EC: [-166,375,0,-470,14], + 0x20ED: [-166,375,0,-470,14], + 0x20EE: [-35,373,0,-490,-6], + 0x20EF: [-35,373,0,-470,14], + 0x20F0: [845,-543,0,-385,-115], + 0xE05E: [762,-565,0,95,425], + 0xE061: [-137,437,0,0,330], + 0xE062: [-137,552,0,0,330], + 0xE064: [837,-565,333,-16,349], + 0xE065: [-137,409,0,-16,349], + 0xE066: [801,-565,0,91,430], + 0xE067: [-137,409,0,-16,349], + 0xE0D8: [688,13,400,57,343], + 0xE0D9: [663,0,314,54,260], + 0xE0DA: [663,0,425,54,371], + 0xE28D: [734,-484,0,92,498] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Marks-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Marks/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/BoldItalic/Main.js new file mode 100644 index 0000000..4a1aa26 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/BoldItalic/Main.js @@ -0,0 +1,68 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Marks-bold-italic'] = { + directory: 'Marks/BoldItalic', + family: 'STIXMathJax_Marks', + weight: 'bold', + style: 'italic', + testString: '\u00A0\u02B0\u02B1\u02B2\u02B3\u02B4\u02B5\u02B6\u02B7\u02B8\u02BB\u02C0\u02C1\u02DB\u02DD', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2B0: [852,-328,380,7,365], + 0x2B1: [841,-329,380,7,365], + 0x2B2: [862,-176,350,24,384], + 0x2B3: [690,-344,389,21,384], + 0x2B4: [690,-344,389,2,365], + 0x2B5: [690,-171,389,2,371], + 0x2B6: [684,-345,390,5,466], + 0x2B7: [690,-331,450,15,467], + 0x2B8: [690,-176,350,11,386], + 0x2BB: [685,-369,333,128,332], + 0x2C0: [690,-240,343,-3,323], + 0x2C1: [690,-240,326,20,364], + 0x2DB: [44,173,333,-40,189], + 0x2DD: [697,-516,333,69,498], + 0x2E0: [684,-190,379,14,423], + 0x2E1: [857,-329,222,2,217], + 0x2E2: [690,-331,280,8,274], + 0x2E3: [690,-335,389,3,387], + 0x2E4: [849,-329,328,9,364], + 0x2EC: [70,167,314,5,309], + 0x2ED: [720,-528,395,5,390], + 0x2F7: [-108,227,333,-74,285], + 0x2010: [282,-166,333,-4,273], + 0x2011: [282,-166,333,-4,273], + 0x2012: [282,-166,500,-40,477], + 0x201A: [134,182,333,-5,199], + 0x201B: [685,-369,333,128,302], + 0x201E: [134,182,500,-57,403], + 0x201F: [685,-369,500,92,513], + 0x2022: [462,-42,560,70,490], + 0x2030: [706,29,1118,80,1068], + 0x2031: [706,29,1480,80,1430], + 0x2039: [415,-32,333,32,303], + 0x203A: [415,-32,333,10,281], + 0x20DD: [760,254,0,-753,256] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Marks-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Marks/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Italic/Main.js new file mode 100644 index 0000000..829a675 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Italic/Main.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Marks-italic'] = { + directory: 'Marks/Italic', + family: 'STIXMathJax_Marks', + style: 'italic', + testString: '\u00A0\u02B0\u02B1\u02B2\u02B3\u02B4\u02B5\u02B6\u02B7\u02B8\u02BB\u02C0\u02C1\u02DB\u02DD', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2B0: [838,-326,378,7,391], + 0x2B1: [838,-326,378,7,414], + 0x2B2: [851,-199,300,44,350], + 0x2B3: [690,-345,320,2,320], + 0x2B4: [690,-345,320,0,318], + 0x2B5: [690,-163,320,0,335], + 0x2B6: [684,-345,390,6,462], + 0x2B7: [690,-327,500,15,515], + 0x2B8: [693,-202,330,16,357], + 0x2BB: [686,-443,333,79,236], + 0x2C0: [690,-295,326,30,307], + 0x2C1: [690,-295,326,23,343], + 0x2DB: [40,169,333,-20,200], + 0x2DD: [664,-494,333,93,486], + 0x2E0: [684,-218,315,23,335], + 0x2E1: [837,-333,220,41,214], + 0x2E2: [691,-335,300,16,290], + 0x2E3: [691,-333,380,4,379], + 0x2E4: [847,-333,318,8,345], + 0x2EC: [70,147,320,15,305], + 0x2ED: [665,-507,405,10,395], + 0x2F7: [-113,220,333,-94,233], + 0x2010: [257,-191,333,49,282], + 0x2011: [257,-191,333,49,282], + 0x2012: [258,-192,500,-8,508], + 0x201A: [101,129,333,44,183], + 0x201B: [666,-436,333,169,290], + 0x201E: [101,129,556,57,405], + 0x201F: [666,-436,556,169,499], + 0x2022: [444,-59,523,70,455], + 0x2030: [706,19,1117,80,1067], + 0x2031: [706,19,1479,80,1429], + 0x2039: [403,-37,333,51,281], + 0x203A: [403,-37,333,52,282], + 0x20D0: [760,-627,0,-453,-17], + 0x20D1: [760,-627,0,-426,10], + 0x20D2: [662,156,0,-300,-234], + 0x20D6: [760,-548,0,-453,-17], + 0x20DB: [622,-523,0,-453,44], + 0x20DC: [622,-523,0,-582,114], + 0x20DD: [725,221,0,-723,223], + 0x20E1: [760,-548,0,-453,25], + 0x20E4: [1023,155,0,-970,490], + 0x20E5: [662,156,0,-430,-24], + 0x20E6: [662,156,0,-351,-86], + 0x20E7: [725,178,0,-595,221], + 0x20E8: [-119,218,0,-462,35], + 0x20E9: [681,-538,0,-478,55], + 0x20EA: [419,-87,0,-793,153], + 0x20EC: [-119,252,0,27,463], + 0x20ED: [-119,252,0,27,463], + 0x20EE: [-40,252,0,-453,-17], + 0x20EF: [-40,252,0,-453,-17] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Marks-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Marks/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Regular/Main.js new file mode 100644 index 0000000..0faab08 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Regular/Main.js @@ -0,0 +1,210 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'STIXMathJax_Marks', + testString: '\u00A0\u02B0\u02B1\u02B2\u02B3\u02B4\u02B5\u02B6\u02B7\u02B8\u02B9\u02BA\u02BB\u02BC\u02BD', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2B0: [848,-336,378,7,365], + 0x2B1: [848,-336,378,7,365], + 0x2B2: [852,-169,300,44,244], + 0x2B3: [681,-336,252,5,252], + 0x2B4: [680,-335,277,10,257], + 0x2B5: [680,-168,325,10,338], + 0x2B6: [680,-335,390,6,379], + 0x2B7: [680,-331,520,6,512], + 0x2B8: [680,-176,370,14,361], + 0x2B9: [684,-421,208,90,257], + 0x2BA: [684,-421,305,19,324], + 0x2BB: [686,-443,333,79,218], + 0x2BC: [686,-443,333,79,218], + 0x2BD: [686,-443,333,79,218], + 0x2BE: [680,-485,198,35,163], + 0x2BF: [680,-485,198,35,163], + 0x2C0: [690,-295,326,23,303], + 0x2C1: [690,-295,326,23,303], + 0x2C2: [755,-419,317,33,285], + 0x2C3: [755,-419,317,33,285], + 0x2C4: [713,-461,317,-9,327], + 0x2C5: [713,-461,317,-9,327], + 0x2C8: [713,-448,278,119,159], + 0x2CC: [70,195,278,119,159], + 0x2CD: [-104,159,334,11,323], + 0x2CE: [-21,192,333,25,249], + 0x2CF: [-21,192,333,84,308], + 0x2D0: [460,-19,333,89,244], + 0x2D1: [460,-299,333,89,244], + 0x2D2: [365,-75,333,72,262], + 0x2D3: [365,-75,333,71,261], + 0x2D4: [205,-18,333,51,281], + 0x2D5: [205,-18,333,51,281], + 0x2D6: [218,-26,333,71,263], + 0x2D7: [144,-100,333,71,263], + 0x2DB: [0,165,333,64,249], + 0x2DD: [678,-507,333,-3,376], + 0x2DE: [443,-186,298,0,263], + 0x2DF: [662,-425,333,48,284], + 0x2E0: [684,-219,378,24,335], + 0x2E1: [848,-336,215,19,197], + 0x2E2: [681,-331,291,36,261], + 0x2E3: [680,-336,380,5,372], + 0x2E4: [850,-336,341,45,319], + 0x2E5: [662,0,413,48,373], + 0x2E6: [662,0,405,40,365], + 0x2E7: [662,0,405,40,365], + 0x2E8: [662,0,405,40,365], + 0x2E9: [662,0,405,40,365], + 0x2EC: [70,147,333,21,311], + 0x2ED: [665,-507,405,10,395], + 0x2F7: [-113,219,333,1,331], + 0x305: [820,-770,0,-480,20], + 0x309: [751,-492,0,-307,-118], + 0x30D: [700,-500,0,-250,-195], + 0x30E: [700,-500,0,-326,-133], + 0x30F: [678,-507,0,-401,-22], + 0x310: [767,-507,0,-373,-92], + 0x311: [664,-507,0,-373,-92], + 0x312: [745,-502,0,-299,-160], + 0x313: [745,-502,0,-299,-160], + 0x314: [745,-502,0,-299,-160], + 0x315: [745,-502,0,-85,54], + 0x316: [-53,224,0,-351,-127], + 0x317: [-53,224,0,-371,-147], + 0x318: [-53,283,0,-397,-210], + 0x319: [-53,283,0,-267,-80], + 0x31A: [735,-531,0,-380,-80], + 0x31B: [474,-345,0,-44,51], + 0x31C: [-71,266,0,-360,-232], + 0x31D: [-53,240,0,-345,-115], + 0x31E: [-53,240,0,-345,-115], + 0x31F: [-53,250,0,-326,-134], + 0x320: [-124,168,0,-326,-134], + 0x321: [75,287,0,-235,1], + 0x322: [75,287,0,-54,182], + 0x323: [-118,217,0,-280,-181], + 0x324: [-119,218,0,-379,-81], + 0x325: [-69,268,0,-329,-130], + 0x326: [-110,353,0,-299,-160], + 0x327: [0,215,0,-334,-125], + 0x328: [0,165,0,-322,-137], + 0x329: [-102,234,0,-250,-210], + 0x32A: [-98,235,0,-385,-73], + 0x32B: [-110,227,0,-380,-75], + 0x32C: [-73,240,0,-385,-74], + 0x32D: [-73,240,0,-385,-74], + 0x32E: [-68,225,0,-370,-89], + 0x32F: [-59,216,0,-370,-89], + 0x330: [-113,219,0,-395,-65], + 0x331: [-141,195,0,-385,-74], + 0x332: [-141,191,0,-480,20], + 0x333: [-141,300,0,-480,20], + 0x334: [320,-214,0,-401,-71], + 0x335: [274,-230,0,-384,-78], + 0x336: [274,-230,0,-480,20], + 0x337: [580,74,0,-380,-41], + 0x339: [-71,266,0,-280,-152], + 0x33A: [-53,190,0,-385,-73], + 0x33B: [-53,227,0,-313,-147], + 0x33C: [-65,189,0,-380,-79], + 0x33D: [715,-525,0,-326,-135], + 0x33E: [829,-499,0,-283,-177], + 0x33F: [928,-770,0,-480,20], + 0x346: [681,-538,0,-350,-68], + 0x347: [-140,292,1,11,323], + 0x34C: [777,-532,0,-386,-56], + 0x359: [-65,367,0,-357,-87], + 0x35C: [-76,233,0,-373,295], + 0x360: [633,-517,0,-395,365], + 0x361: [664,-507,0,-373,295], + 0x362: [-65,270,0,-395,355], + 0x2010: [259,-193,333,39,285], + 0x2011: [257,-194,333,39,285], + 0x2012: [259,-193,500,0,500], + 0x2015: [250,-201,2000,0,2000], + 0x2017: [-141,300,500,0,500], + 0x201A: [102,141,333,79,218], + 0x201B: [676,-433,333,79,218], + 0x201E: [102,141,444,45,416], + 0x201F: [676,-433,444,30,401], + 0x2022: [444,-59,523,70,455], + 0x2025: [100,11,667,111,555], + 0x2030: [706,19,1109,61,1048], + 0x2031: [706,19,1471,61,1410], + 0x2036: [678,-401,426,75,351], + 0x2037: [678,-401,563,75,488], + 0x2038: [102,156,511,59,454], + 0x2039: [416,-33,333,63,285], + 0x203A: [416,-33,333,48,270], + 0x203B: [547,41,685,48,635], + 0x203C: [676,9,549,130,452], + 0x2040: [709,-512,798,72,726], + 0x2043: [332,-172,333,39,285], + 0x2047: [676,8,839,68,809], + 0x204E: [240,171,500,68,433], + 0x204F: [459,141,278,60,199], + 0x2050: [691,40,790,55,735], + 0x2051: [676,171,501,68,433], + 0x2052: [706,200,471,54,417], + 0x205F: [0,0,1000,0,0], + 0x20D0: [760,-627,0,-453,-17], + 0x20D1: [760,-627,0,-453,-17], + 0x20D2: [662,156,0,-242,-192], + 0x20D6: [760,-548,0,-453,-17], + 0x20DB: [622,-523,0,-462,35], + 0x20DC: [622,-523,0,-600,96], + 0x20DD: [725,221,0,-723,223], + 0x20DE: [780,180,0,-730,230], + 0x20DF: [843,341,0,-840,344], + 0x20E1: [760,-548,0,-453,25], + 0x20E4: [1023,155,0,-970,490], + 0x20E5: [662,156,0,-430,-40], + 0x20E6: [662,156,0,-335,-102], + 0x20E7: [725,178,0,-650,166], + 0x20E8: [-119,218,0,-462,35], + 0x20E9: [681,-538,0,-480,53], + 0x20EA: [419,-87,0,-658,118], + 0x20EB: [756,217,0,-448,193], + 0x20EC: [-119,252,0,-453,-17], + 0x20ED: [-119,252,0,-453,-17], + 0x20EE: [-40,252,0,-453,-17], + 0x20EF: [-40,252,0,-453,-17], + 0x20F0: [819,-517,0,-357,-87], + 0x3012: [662,0,685,10,672], + 0x3030: [417,-93,1412,45,1367], + 0xE05E: [698,-547,0,95,406], + 0xE061: [-141,390,0,11,322], + 0xE062: [-141,486,0,11,322], + 0xE063: [734,-508,0,94,485], + 0xE064: [777,-547,0,95,425], + 0xE065: [-141,371,0,1,331], + 0xE066: [770,-547,0,101,412], + 0xE067: [-141,371,0,1,331], + 0xE0D8: [584,0,400,57,343], + 0xE0D9: [665,0,255,56,199], + 0xE0DA: [665,0,388,56,332], + 0xE28C: [474,-227,0,53,397], + 0xE28D: [734,-484,0,94,460] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Marks"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Marks/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Bold/Main.js new file mode 100644 index 0000000..fc49438 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Bold/Main.js @@ -0,0 +1,202 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Misc-bold'] = { + directory: 'Misc/Bold', + family: 'STIXMathJax_Misc', + weight: 'bold', + testString: '\u00A0\u0250\u0251\u0252\u0253\u0254\u0255\u0256\u0257\u0258\u0259\u025A\u025B\u025C\u025D', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x250: [473,14,512,13,476], + 0x251: [473,14,608,32,594], + 0x252: [473,14,608,32,594], + 0x253: [691,14,560,74,523], + 0x254: [473,14,472,15,420], + 0x255: [473,161,477,30,445], + 0x256: [676,233,602,32,660], + 0x257: [683,14,650,32,660], + 0x258: [473,14,457,25,427], + 0x259: [473,14,457,19,421], + 0x25A: [473,14,688,41,677], + 0x25B: [475,14,493,25,439], + 0x25C: [475,14,493,25,439], + 0x25D: [475,14,683,25,658], + 0x25E: [475,14,523,25,469], + 0x25F: [461,203,338,-54,314], + 0x260: [683,245,627,37,662], + 0x261: [473,245,571,37,484], + 0x262: [461,11,590,35,555], + 0x263: [461,233,532,24,507], + 0x264: [450,10,514,17,497], + 0x265: [450,226,550,17,536], + 0x266: [683,0,550,14,532], + 0x267: [683,205,556,16,485], + 0x268: [691,0,292,21,262], + 0x269: [456,8,366,22,339], + 0x26A: [461,0,297,26,264], + 0x26B: [676,0,395,15,380], + 0x26C: [676,0,446,17,428], + 0x26D: [676,233,326,15,384], + 0x26E: [676,236,619,24,603], + 0x26F: [473,0,828,16,815], + 0x270: [473,233,859,16,836], + 0x271: [473,233,847,21,770], + 0x272: [473,233,625,-57,586], + 0x273: [473,233,610,21,668], + 0x274: [461,12,604,34,558], + 0x275: [473,14,520,34,485], + 0x276: [461,5,741,28,713], + 0x277: [477,2,696,42,653], + 0x278: [685,231,713,45,667], + 0x279: [463,10,456,35,441], + 0x27A: [676,10,456,35,441], + 0x27B: [463,233,506,35,564], + 0x27C: [473,233,426,10,416], + 0x27D: [473,233,454,12,418], + 0x27E: [484,0,359,15,386], + 0x27F: [484,0,404,10,381], + 0x280: [464,0,516,21,495], + 0x281: [464,0,516,21,495], + 0x282: [473,218,389,25,361], + 0x283: [683,233,458,-36,406], + 0x284: [683,233,373,-57,430], + 0x285: [470,233,396,8,452], + 0x286: [683,243,399,-16,449], + 0x287: [513,129,333,19,332], + 0x288: [630,233,339,19,389], + 0x289: [461,14,556,9,538], + 0x28A: [452,8,500,13,487], + 0x28B: [465,10,534,23,511], + 0x28C: [475,0,500,21,485], + 0x28D: [475,0,722,23,707], + 0x28E: [666,0,500,16,482], + 0x28F: [464,0,633,46,587], + 0x290: [461,218,531,21,577], + 0x291: [461,150,538,21,517], + 0x292: [450,236,440,8,430], + 0x293: [450,307,440,8,430], + 0x294: [683,0,417,55,426], + 0x295: [683,0,417,55,426], + 0x296: [669,14,417,55,426], + 0x297: [473,232,479,72,447], + 0x298: [680,17,723,13,708], + 0x299: [464,0,456,15,441], + 0x29A: [475,14,465,11,455], + 0x29B: [537,11,600,29,595], + 0x29C: [464,0,582,21,561], + 0x29D: [691,233,394,-60,414], + 0x29E: [461,215,556,22,543], + 0x29F: [464,0,470,17,440], + 0x2A0: [582,205,636,34,659], + 0x2A1: [683,0,500,55,426], + 0x2A2: [683,0,500,55,426], + 0x2A3: [676,14,868,25,843], + 0x2A4: [676,236,810,25,794], + 0x2A5: [676,164,960,25,933], + 0x2A6: [630,12,626,19,598], + 0x2A7: [683,233,540,19,626], + 0x2A8: [630,12,700,19,690], + 0x1D00: [475,0,515,9,503], + 0x1D07: [461,0,531,20,511], + 0x1D1C: [461,19,600,16,584], + 0x207F: [700,-275,491,15,478], + 0x20A3: [676,0,611,11,583], + 0x20A4: [684,16,500,21,477], + 0x20A7: [676,14,1369,16,1341], + 0x20AC: [672,12,500,29,478], + 0x2153: [688,12,750,-7,763], + 0x2154: [688,12,750,28,763], + 0x2155: [688,12,750,-7,775], + 0x2156: [688,12,750,28,775], + 0x2157: [688,12,750,23,775], + 0x2158: [688,12,750,22,775], + 0x2159: [688,12,750,-7,758], + 0x215A: [688,12,750,49,758], + 0x215B: [688,12,750,-7,775], + 0x215C: [688,12,750,23,775], + 0x215D: [688,12,750,49,775], + 0x215E: [688,12,750,30,775], + 0x2460: [690,19,695,0,695], + 0x2461: [690,19,695,0,695], + 0x2462: [690,19,695,0,695], + 0x2463: [690,19,695,0,695], + 0x2464: [690,19,695,0,695], + 0x2465: [690,19,695,0,695], + 0x2466: [690,19,695,0,695], + 0x2467: [690,19,695,0,695], + 0x2468: [690,19,695,0,695], + 0x24B6: [690,19,695,0,695], + 0x24B7: [690,19,695,0,695], + 0x24B8: [690,19,695,0,695], + 0x24B9: [690,19,695,0,695], + 0x24BA: [690,19,695,0,695], + 0x24BB: [690,19,695,0,695], + 0x24BC: [690,19,695,0,695], + 0x24BD: [690,19,695,0,695], + 0x24BE: [690,19,695,0,695], + 0x24BF: [690,19,695,0,695], + 0x24C0: [690,19,695,0,695], + 0x24C1: [690,19,695,0,695], + 0x24C2: [690,19,695,0,695], + 0x24C3: [690,19,695,0,695], + 0x24C4: [690,19,695,0,695], + 0x24C5: [690,19,695,0,695], + 0x24C6: [690,19,695,0,695], + 0x24C7: [690,19,695,0,695], + 0x24C9: [690,19,695,0,695], + 0x24CA: [690,19,695,0,695], + 0x24CB: [690,19,695,0,695], + 0x24CC: [690,19,695,0,695], + 0x24CD: [690,19,695,0,695], + 0x24CE: [690,19,695,0,695], + 0x24CF: [690,19,695,0,695], + 0x24D0: [690,19,695,0,695], + 0x24D1: [690,19,695,0,695], + 0x24D2: [690,19,695,0,695], + 0x24D3: [690,19,695,0,695], + 0x24D4: [690,19,695,0,695], + 0x24D5: [690,19,695,0,695], + 0x24D6: [690,19,695,0,695], + 0x24D7: [690,19,695,0,695], + 0x24D8: [690,19,695,0,695], + 0x24D9: [690,19,695,0,695], + 0x24DA: [690,19,695,0,695], + 0x24DB: [690,19,695,0,695], + 0x24DC: [690,19,695,0,695], + 0x24DD: [690,19,695,0,695], + 0x24DE: [690,19,695,0,695], + 0x24DF: [690,19,695,0,695], + 0x24E0: [690,19,695,0,695], + 0x24E1: [690,19,695,0,695], + 0x24E2: [690,19,695,0,695], + 0x24E3: [690,19,695,0,695], + 0x24E4: [690,19,695,0,695], + 0x24E5: [690,19,695,0,695], + 0x24E6: [690,19,695,0,695], + 0x24E7: [690,19,695,0,695], + 0x24E8: [690,19,695,0,695], + 0x24E9: [690,19,695,0,695], + 0x24EA: [690,19,695,0,695] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Misc-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Misc/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/BoldItalic/Main.js new file mode 100644 index 0000000..98b16db --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/BoldItalic/Main.js @@ -0,0 +1,187 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Misc-bold-italic'] = { + directory: 'Misc/BoldItalic', + family: 'STIXMathJax_Misc', + weight: 'bold', + style: 'italic', + testString: '\u00A0\u0250\u0251\u0252\u0253\u0254\u0255\u0256\u0257\u0258\u0259\u025A\u025B\u025C\u025D', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x250: [473,14,512,13,492], + 0x251: [473,14,612,25,592], + 0x252: [473,14,612,25,592], + 0x253: [691,13,500,-14,449], + 0x254: [462,13,444,-5,392], + 0x255: [462,157,444,-5,406], + 0x256: [699,233,500,-21,517], + 0x257: [683,13,570,-21,653], + 0x258: [462,13,444,5,421], + 0x259: [462,13,444,5,398], + 0x25A: [462,13,626,5,626], + 0x25B: [475,14,444,5,482], + 0x25C: [475,14,480,5,469], + 0x25D: [475,14,689,5,689], + 0x25E: [475,14,486,7,475], + 0x25F: [462,207,367,-100,364], + 0x260: [683,245,720,-52,751], + 0x261: [472,245,549,-52,520], + 0x262: [462,11,561,21,544], + 0x263: [462,234,444,20,400], + 0x264: [450,10,493,10,488], + 0x265: [459,249,556,-13,498], + 0x266: [683,9,556,-13,498], + 0x267: [683,205,533,-13,475], + 0x268: [684,9,278,-10,262], + 0x269: [456,8,253,2,237], + 0x26A: [462,0,304,-32,321], + 0x26B: [699,9,320,9,368], + 0x26C: [699,9,445,17,417], + 0x26D: [699,233,291,-47,290], + 0x26E: [699,236,623,2,585], + 0x26F: [462,9,778,-14,723], + 0x270: [462,233,778,-14,723], + 0x271: [462,233,759,-14,704], + 0x272: [462,233,694,-109,632], + 0x273: [462,233,505,-6,486], + 0x274: [462,12,588,-27,614], + 0x275: [462,13,500,-3,441], + 0x276: [462,5,749,23,751], + 0x277: [477,2,685,-3,626], + 0x278: [685,231,691,-3,632], + 0x279: [462,0,427,0,410], + 0x27A: [699,0,493,0,476], + 0x27B: [462,233,436,0,417], + 0x27C: [462,233,389,-87,389], + 0x27D: [462,233,389,-47,389], + 0x27E: [484,0,360,-21,417], + 0x27F: [484,0,338,10,292], + 0x280: [464,0,498,8,515], + 0x281: [464,0,498,8,597], + 0x282: [462,218,389,-32,333], + 0x283: [683,233,424,-104,584], + 0x284: [683,207,394,-90,576], + 0x285: [470,233,415,79,344], + 0x286: [683,243,521,-40,641], + 0x287: [513,90,310,7,299], + 0x288: [594,233,311,-60,281], + 0x289: [462,9,556,-16,514], + 0x28A: [452,8,500,15,552], + 0x28B: [462,10,534,18,492], + 0x28C: [462,13,444,15,401], + 0x28D: [462,13,667,15,614], + 0x28E: [667,0,444,16,502], + 0x28F: [464,0,633,65,606], + 0x290: [449,218,440,-24,405], + 0x291: [449,97,411,-24,376], + 0x292: [450,236,499,-10,558], + 0x293: [450,307,499,-10,528], + 0x294: [685,0,530,25,520], + 0x295: [685,0,530,65,509], + 0x296: [669,14,487,25,453], + 0x297: [462,237,479,20,544], + 0x298: [680,17,723,13,734], + 0x299: [464,0,493,-10,486], + 0x29A: [475,14,465,16,504], + 0x29B: [538,11,580,29,690], + 0x29C: [464,0,582,21,676], + 0x29D: [685,233,475,-50,463], + 0x29E: [457,250,500,22,528], + 0x29F: [464,0,485,10,468], + 0x2A0: [582,205,488,1,674], + 0x2A1: [685,0,530,25,520], + 0x2A2: [685,0,530,65,507], + 0x2A3: [699,13,750,-21,735], + 0x2A4: [699,236,820,-21,813], + 0x2A5: [699,97,817,-21,743], + 0x2A6: [594,13,560,-3,524], + 0x2A7: [683,233,453,-30,670], + 0x2A8: [594,18,600,-3,618], + 0x20A3: [669,0,668,-13,661], + 0x20A4: [683,12,500,-32,510], + 0x20A7: [669,13,1229,-28,1173], + 0x20AC: [681,17,562,34,546], + 0x2460: [690,19,695,0,695], + 0x2461: [690,19,695,0,695], + 0x2462: [690,19,695,0,695], + 0x2463: [690,19,695,0,695], + 0x2464: [690,19,695,0,695], + 0x2465: [690,19,695,0,695], + 0x2466: [690,19,695,0,695], + 0x2467: [690,19,695,0,695], + 0x2468: [690,19,695,0,695], + 0x24B6: [690,19,695,0,695], + 0x24B7: [690,19,695,0,695], + 0x24B8: [690,19,695,0,695], + 0x24B9: [690,19,695,0,695], + 0x24BA: [690,19,695,0,695], + 0x24BB: [690,19,695,0,695], + 0x24BC: [690,19,695,0,695], + 0x24BD: [690,19,695,0,695], + 0x24BE: [690,19,695,0,695], + 0x24BF: [690,19,695,0,695], + 0x24C0: [690,19,695,0,695], + 0x24C1: [690,19,695,0,695], + 0x24C2: [690,19,695,0,695], + 0x24C3: [690,19,695,0,695], + 0x24C4: [690,19,695,0,695], + 0x24C5: [690,19,695,0,695], + 0x24C6: [690,19,695,0,695], + 0x24C7: [690,19,695,0,695], + 0x24C9: [690,19,695,0,695], + 0x24CA: [690,19,695,0,695], + 0x24CB: [690,19,695,0,695], + 0x24CC: [690,19,695,0,695], + 0x24CD: [690,19,695,0,695], + 0x24CE: [690,19,695,0,695], + 0x24CF: [690,19,695,0,695], + 0x24D0: [690,19,695,0,695], + 0x24D1: [690,19,695,0,695], + 0x24D2: [690,19,695,0,695], + 0x24D3: [690,19,695,0,695], + 0x24D4: [690,19,695,0,695], + 0x24D5: [690,19,695,0,695], + 0x24D6: [690,19,695,0,695], + 0x24D7: [690,19,695,0,695], + 0x24D8: [690,19,695,0,695], + 0x24D9: [690,19,695,0,695], + 0x24DA: [690,19,695,0,695], + 0x24DB: [690,19,695,0,695], + 0x24DC: [690,19,695,0,695], + 0x24DD: [690,19,695,0,695], + 0x24DE: [690,19,695,0,695], + 0x24DF: [690,19,695,0,695], + 0x24E0: [690,19,695,0,695], + 0x24E1: [690,19,695,0,695], + 0x24E2: [690,19,695,0,695], + 0x24E3: [690,19,695,0,695], + 0x24E4: [690,19,695,0,695], + 0x24E5: [690,19,695,0,695], + 0x24E6: [690,19,695,0,695], + 0x24E7: [690,19,695,0,695], + 0x24E8: [690,19,695,0,695], + 0x24E9: [690,19,695,0,695], + 0x24EA: [690,19,695,0,695] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Misc-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Misc/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Italic/Main.js new file mode 100644 index 0000000..caafa44 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Italic/Main.js @@ -0,0 +1,186 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Misc-italic'] = { + directory: 'Misc/Italic', + family: 'STIXMathJax_Misc', + style: 'italic', + testString: '\u00A0\u0250\u0251\u0252\u0253\u0254\u0255\u0256\u0257\u0258\u0259\u025A\u025B\u025C\u025D', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x250: [460,10,444,19,421], + 0x251: [460,10,511,17,487], + 0x252: [460,10,511,17,487], + 0x253: [683,11,500,23,488], + 0x254: [441,11,444,30,425], + 0x255: [441,160,444,-3,425], + 0x256: [683,233,500,15,527], + 0x257: [683,13,500,15,748], + 0x258: [441,11,444,31,416], + 0x259: [441,11,444,31,412], + 0x25A: [441,11,639,31,639], + 0x25B: [475,14,444,31,467], + 0x25C: [475,14,480,31,447], + 0x25D: [475,14,666,31,666], + 0x25E: [475,14,490,30,458], + 0x25F: [441,207,357,-100,340], + 0x260: [683,212,714,8,799], + 0x261: [482,212,595,8,579], + 0x262: [441,11,562,52,562], + 0x263: [441,234,444,15,426], + 0x264: [450,10,480,4,475], + 0x265: [450,242,500,19,478], + 0x266: [683,9,500,19,494], + 0x267: [683,233,500,-6,494], + 0x268: [654,11,278,16,264], + 0x269: [454,10,333,51,266], + 0x26A: [441,0,247,-8,298], + 0x26B: [683,11,278,4,331], + 0x26C: [683,11,375,12,366], + 0x26D: [683,233,252,8,279], + 0x26E: [683,233,575,41,537], + 0x26F: [441,9,722,12,704], + 0x270: [441,233,722,12,704], + 0x271: [441,233,690,12,672], + 0x272: [441,233,606,-110,580], + 0x273: [441,233,498,14,487], + 0x274: [441,8,539,-20,599], + 0x275: [441,11,500,27,468], + 0x276: [441,6,718,49,738], + 0x277: [475,4,668,30,638], + 0x278: [683,233,660,30,630], + 0x279: [441,0,402,-45,322], + 0x27A: [683,0,383,-45,384], + 0x27B: [441,233,353,-45,342], + 0x27C: [441,233,333,-20,412], + 0x27D: [441,233,390,24,412], + 0x27E: [470,0,401,45,424], + 0x27F: [470,0,338,66,293], + 0x280: [464,0,475,25,501], + 0x281: [464,0,475,25,581], + 0x282: [442,218,389,9,376], + 0x283: [683,233,415,-110,577], + 0x284: [683,233,453,-110,595], + 0x285: [470,233,339,79,355], + 0x286: [683,243,439,-62,602], + 0x287: [460,97,330,38,296], + 0x288: [546,233,278,6,308], + 0x289: [441,11,500,9,479], + 0x28A: [450,10,537,49,552], + 0x28B: [441,10,500,52,475], + 0x28C: [441,18,444,20,426], + 0x28D: [441,18,667,15,648], + 0x28E: [647,0,444,10,460], + 0x28F: [464,0,633,62,603], + 0x290: [428,218,405,17,429], + 0x291: [428,47,393,17,380], + 0x292: [450,233,413,21,517], + 0x293: [450,305,457,7,544], + 0x294: [683,0,500,55,509], + 0x295: [683,0,500,55,495], + 0x296: [662,14,393,-25,413], + 0x297: [441,238,450,24,459], + 0x298: [679,17,723,22,704], + 0x299: [464,0,460,19,505], + 0x29A: [475,14,479,20,470], + 0x29B: [515,11,570,29,650], + 0x29C: [464,0,572,25,671], + 0x29D: [652,233,403,-80,394], + 0x29E: [439,255,463,26,473], + 0x29F: [464,0,470,25,473], + 0x2A0: [582,209,480,25,666], + 0x2A1: [683,0,500,55,509], + 0x2A2: [683,0,500,55,495], + 0x2A3: [683,13,743,15,741], + 0x2A4: [683,233,743,15,780], + 0x2A5: [683,47,754,15,741], + 0x2A6: [546,11,500,38,523], + 0x2A7: [683,233,517,-32,655], + 0x2A8: [546,16,632,38,612], + 0x20A3: [653,0,611,8,645], + 0x20A4: [670,8,500,10,517], + 0x20A7: [653,13,1149,0,1126], + 0x20AC: [664,12,500,16,538], + 0x2460: [676,14,684,0,684], + 0x2461: [676,14,684,0,684], + 0x2462: [676,14,684,0,684], + 0x2463: [676,14,684,0,684], + 0x2464: [676,14,684,0,684], + 0x2465: [676,14,684,0,684], + 0x2466: [676,14,684,0,684], + 0x2467: [676,14,684,0,684], + 0x2468: [676,14,684,0,684], + 0x24B6: [676,14,684,0,684], + 0x24B7: [676,14,684,0,684], + 0x24B8: [676,14,684,0,684], + 0x24B9: [676,14,684,0,684], + 0x24BA: [676,14,684,0,684], + 0x24BB: [676,14,684,0,684], + 0x24BC: [676,14,684,0,684], + 0x24BD: [676,14,684,0,684], + 0x24BE: [676,14,684,0,684], + 0x24BF: [676,14,684,0,684], + 0x24C0: [676,14,684,0,684], + 0x24C1: [676,14,684,0,684], + 0x24C2: [676,14,684,0,684], + 0x24C3: [676,14,684,0,684], + 0x24C4: [676,14,684,0,684], + 0x24C5: [676,14,684,0,684], + 0x24C6: [676,14,684,0,684], + 0x24C7: [676,14,684,0,684], + 0x24C9: [676,14,684,0,684], + 0x24CA: [676,14,684,0,684], + 0x24CB: [676,14,684,0,684], + 0x24CC: [676,14,684,0,684], + 0x24CD: [676,14,684,0,684], + 0x24CE: [676,14,684,0,684], + 0x24CF: [676,14,684,0,684], + 0x24D0: [676,14,684,0,684], + 0x24D1: [676,14,684,0,684], + 0x24D2: [676,14,684,0,684], + 0x24D3: [676,14,684,0,684], + 0x24D4: [676,14,684,0,684], + 0x24D5: [676,14,684,0,684], + 0x24D6: [676,14,684,0,684], + 0x24D7: [676,14,684,0,684], + 0x24D8: [676,14,684,0,684], + 0x24D9: [676,14,684,0,684], + 0x24DA: [676,14,684,0,684], + 0x24DB: [676,14,684,0,684], + 0x24DC: [676,14,684,0,684], + 0x24DD: [676,14,684,0,684], + 0x24DE: [676,14,684,0,684], + 0x24DF: [676,14,684,0,684], + 0x24E0: [676,14,684,0,684], + 0x24E1: [676,14,684,0,684], + 0x24E2: [676,14,684,0,684], + 0x24E3: [676,14,684,0,684], + 0x24E4: [676,14,684,0,684], + 0x24E5: [676,14,684,0,684], + 0x24E6: [676,14,684,0,684], + 0x24E7: [676,14,684,0,684], + 0x24E8: [676,14,684,0,684], + 0x24E9: [676,14,684,0,684], + 0x24EA: [676,14,684,0,684] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Misc-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Misc/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Regular/Main.js new file mode 100644 index 0000000..a9ff300 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Regular/Main.js @@ -0,0 +1,274 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'STIXMathJax_Misc', + testString: '\u00A0\u0250\u0251\u0252\u0253\u0254\u0255\u0256\u0257\u0258\u0259\u025A\u025B\u025C\u025D', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x250: [460,10,444,8,413], + 0x251: [460,10,500,27,491], + 0x252: [460,10,500,27,491], + 0x253: [683,10,500,69,468], + 0x254: [459,11,444,10,397], + 0x255: [460,160,444,25,417], + 0x256: [683,233,553,27,599], + 0x257: [683,10,587,27,602], + 0x258: [460,10,444,20,419], + 0x259: [460,10,444,14,413], + 0x25A: [460,13,657,36,651], + 0x25B: [475,14,438,20,389], + 0x25C: [475,14,438,20,389], + 0x25D: [475,14,623,20,603], + 0x25E: [475,14,479,20,430], + 0x25F: [460,218,315,-49,296], + 0x260: [683,212,594,32,634], + 0x261: [482,212,537,32,455], + 0x262: [450,11,570,30,539], + 0x263: [450,234,500,19,480], + 0x264: [450,10,500,13,486], + 0x265: [450,233,500,13,491], + 0x266: [683,0,500,9,487], + 0x267: [683,233,481,9,427], + 0x268: [683,0,278,16,253], + 0x269: [454,10,333,17,311], + 0x26A: [450,0,258,21,231], + 0x26B: [683,0,350,10,340], + 0x26C: [683,0,375,12,362], + 0x26D: [683,233,302,10,352], + 0x26E: [683,233,549,19,538], + 0x26F: [450,10,778,11,770], + 0x270: [450,233,803,11,785], + 0x271: [460,233,778,16,706], + 0x272: [460,233,529,-70,514], + 0x273: [460,233,533,16,603], + 0x274: [450,8,602,29,561], + 0x275: [460,10,500,29,470], + 0x276: [450,6,720,23,697], + 0x277: [475,4,667,37,629], + 0x278: [683,233,667,40,626], + 0x279: [450,10,370,30,360], + 0x27A: [683,10,370,30,364], + 0x27B: [450,233,418,30,468], + 0x27C: [460,233,333,5,335], + 0x27D: [460,233,370,7,339], + 0x27E: [470,0,315,10,337], + 0x27F: [470,0,350,5,332], + 0x280: [464,0,475,21,470], + 0x281: [464,0,475,21,470], + 0x282: [458,218,389,50,348], + 0x283: [683,233,322,-70,372], + 0x284: [683,218,304,-70,372], + 0x285: [470,233,400,15,457], + 0x286: [683,243,437,-23,422], + 0x287: [460,129,278,16,282], + 0x288: [579,233,270,13,283], + 0x289: [450,10,500,9,480], + 0x28A: [450,10,537,46,490], + 0x28B: [460,10,500,32,476], + 0x28C: [464,0,500,-4,454], + 0x28D: [464,0,722,21,694], + 0x28E: [668,0,444,-2,459], + 0x28F: [464,0,587,23,564], + 0x290: [450,218,528,27,569], + 0x291: [450,150,507,27,487], + 0x292: [450,233,413,12,392], + 0x293: [450,305,431,12,410], + 0x294: [683,0,450,47,400], + 0x295: [683,0,450,48,401], + 0x296: [662,14,450,47,400], + 0x297: [460,230,450,80,410], + 0x298: [679,17,723,33,690], + 0x299: [464,0,460,15,444], + 0x29A: [475,14,479,20,430], + 0x29B: [523,11,600,29,583], + 0x29C: [464,0,572,21,560], + 0x29D: [683,233,387,-23,412], + 0x29E: [450,233,519,1,499], + 0x29F: [464,0,470,21,441], + 0x2A0: [582,217,600,24,590], + 0x2A1: [683,0,450,48,401], + 0x2A2: [683,0,450,48,401], + 0x2A3: [683,10,802,27,775], + 0x2A4: [683,233,743,27,722], + 0x2A5: [683,160,864,27,844], + 0x2A6: [579,10,536,13,495], + 0x2A7: [683,233,483,13,540], + 0x2A8: [579,10,650,13,641], + 0x2AE: [469,232,619,15,612], + 0x2AF: [469,233,679,15,729], + 0x1D00: [468,0,510,15,495], + 0x1D07: [464,0,504,21,481], + 0x1D1C: [464,14,583,21,560], + 0x1D81: [683,287,528,27,491], + 0x1D84: [683,287,542,7,505], + 0x1D85: [683,287,294,19,257], + 0x1D8A: [459,287,389,51,348], + 0x1D8D: [450,287,516,17,479], + 0x1D8E: [450,287,453,27,416], + 0x1D98: [755,-425,441,57,387], + 0x1DA3: [757,-279,480,64,398], + 0x207F: [676,-270,541,57,484], + 0x20A3: [662,0,556,11,546], + 0x20A4: [676,8,500,12,490], + 0x20A7: [662,10,1182,16,1141], + 0x20AC: [664,12,500,38,462], + 0x2153: [676,14,750,36,725], + 0x2154: [676,14,750,14,731], + 0x2155: [676,14,750,37,715], + 0x2156: [676,14,750,14,720], + 0x2157: [676,14,750,13,720], + 0x2158: [676,14,750,14,720], + 0x2159: [676,14,750,37,717], + 0x215A: [676,15,750,29,722], + 0x215B: [676,14,750,37,722], + 0x215C: [676,14,750,13,727], + 0x215D: [676,14,750,29,727], + 0x215E: [676,14,750,28,727], + 0x2460: [676,14,684,0,684], + 0x2461: [676,14,684,0,684], + 0x2462: [676,14,684,0,684], + 0x2463: [676,14,684,0,684], + 0x2464: [676,14,684,0,684], + 0x2465: [676,14,684,0,684], + 0x2466: [676,14,684,0,684], + 0x2467: [676,14,684,0,684], + 0x2468: [676,14,684,0,684], + 0x24B6: [676,14,684,0,684], + 0x24B7: [676,14,684,0,684], + 0x24B8: [676,14,684,0,684], + 0x24B9: [676,14,684,0,684], + 0x24BA: [676,14,684,0,684], + 0x24BB: [676,14,684,0,684], + 0x24BC: [676,14,684,0,684], + 0x24BD: [676,14,684,0,684], + 0x24BE: [676,14,684,0,684], + 0x24BF: [676,14,684,0,684], + 0x24C0: [676,14,684,0,684], + 0x24C1: [676,14,684,0,684], + 0x24C2: [676,14,684,0,684], + 0x24C3: [676,14,684,0,684], + 0x24C4: [676,14,684,0,684], + 0x24C5: [676,14,684,0,684], + 0x24C6: [676,14,684,0,684], + 0x24C7: [676,14,684,0,684], + 0x24C9: [676,14,684,0,684], + 0x24CA: [676,14,684,0,684], + 0x24CB: [676,14,684,0,684], + 0x24CC: [676,14,684,0,684], + 0x24CD: [676,14,684,0,684], + 0x24CE: [676,14,684,0,684], + 0x24CF: [676,14,684,0,684], + 0x24D0: [676,14,684,0,684], + 0x24D1: [676,14,684,0,684], + 0x24D2: [676,14,684,0,684], + 0x24D3: [676,14,684,0,684], + 0x24D4: [676,14,684,0,684], + 0x24D5: [676,14,684,0,684], + 0x24D6: [676,14,684,0,684], + 0x24D7: [676,14,684,0,684], + 0x24D8: [676,14,684,0,684], + 0x24D9: [676,14,684,0,684], + 0x24DA: [676,14,684,0,684], + 0x24DB: [676,14,684,0,684], + 0x24DC: [676,14,684,0,684], + 0x24DD: [676,14,684,0,684], + 0x24DE: [676,14,684,0,684], + 0x24DF: [676,14,684,0,684], + 0x24E0: [676,14,684,0,684], + 0x24E1: [676,14,684,0,684], + 0x24E2: [676,14,684,0,684], + 0x24E3: [676,14,684,0,684], + 0x24E4: [676,14,684,0,684], + 0x24E5: [676,14,684,0,684], + 0x24E6: [676,14,684,0,684], + 0x24E7: [676,14,684,0,684], + 0x24E8: [676,14,684,0,684], + 0x24E9: [676,14,684,0,684], + 0x24EA: [676,14,684,0,684], + 0x2702: [612,-82,961,35,905], + 0x2709: [555,-138,690,34,638], + 0x272A: [613,106,789,35,733], + 0x2736: [616,108,695,35,642], + 0x273D: [612,108,682,35,626], + 0x2772: [719,213,488,188,466], + 0x2773: [719,213,488,22,300], + 0x2780: [705,14,788,35,733], + 0x2781: [705,14,788,35,733], + 0x2782: [705,14,788,35,733], + 0x2783: [705,14,788,35,733], + 0x2784: [705,14,788,35,733], + 0x2785: [705,14,788,35,733], + 0x2786: [705,14,788,35,733], + 0x2787: [705,14,788,35,733], + 0x2788: [705,14,788,35,733], + 0x2789: [705,14,788,35,733], + 0x278A: [705,14,788,35,733], + 0x278B: [705,14,788,35,733], + 0x278C: [705,14,788,35,733], + 0x278D: [705,14,788,35,733], + 0x278E: [705,14,788,35,733], + 0x278F: [705,14,788,35,733], + 0x2790: [705,14,788,35,733], + 0x2791: [705,14,788,35,733], + 0x2792: [705,14,788,35,733], + 0x2793: [705,14,788,35,733], + 0x279B: [433,-70,918,35,861], + 0xE02F: [662,156,685,23,662], + 0xE0A4: [470,233,378,10,358], + 0xE0A5: [669,-426,397,75,338], + 0xE0A6: [216,144,444,38,429], + 0xE0B7: [324,-183,281,70,211], + 0xE0B8: [943,11,1344,67,1302], + 0xE0B9: [943,11,1344,67,1302], + 0xE0BC: [547,41,685,47,635], + 0xE0DB: [610,104,1472,86,1402], + 0xE0DC: [354,-152,1134,65,1069], + 0xE0F2: [936,157,1059,38,1033], + 0xE0F3: [662,156,1059,196,862], + 0xE0F4: [694,168,773,55,718], + 0xE0F5: [672,146,926,55,872], + 0xE0F6: [747,114,909,23,886], + 0xE0F7: [727,102,956,22,934], + 0xE0F8: [474,89,500,163,336], + 0xE0F9: [680,0,767,88,679], + 0xE0FA: [474,89,297,62,235], + 0xE0FB: [680,0,1750,88,1662], + 0xE0FC: [680,0,1625,88,1537], + 0xE0FD: [680,0,1625,88,1537], + 0xE0FE: [680,0,1625,88,1537], + 0xE0FF: [680,0,1625,88,1537], + 0xE100: [680,0,2032,88,1944], + 0xE101: [680,0,1625,88,1537], + 0xE102: [680,0,1608,88,1520], + 0xE103: [680,0,2296,88,2208], + 0xE105: [680,0,2032,88,1944], + 0xE106: [680,0,2032,88,1944], + 0xE107: [680,0,1625,88,1537], + 0xE108: [680,0,1625,88,1537], + 0xE138: [634,-584,480,-10,490], + 0xE139: [-127,177,480,-10,490], + 0xE13A: [943,11,735,67,1302] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Misc"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Misc/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Monospace/Regular/Main.js new file mode 100644 index 0000000..49ed496 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Monospace/Regular/Main.js @@ -0,0 +1,93 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'STIXMathJax_Monospace', + testString: '\u00A0\uD835\uDE70\uD835\uDE71\uD835\uDE72\uD835\uDE73\uD835\uDE74\uD835\uDE75\uD835\uDE76\uD835\uDE77\uD835\uDE78\uD835\uDE79\uD835\uDE7A\uD835\uDE7B\uD835\uDE7C\uD835\uDE7D', + 0x20: [0,0,525,0,0], + 0xA0: [0,0,525,0,0], + 0x1D670: [673,0,525,26,496], + 0x1D671: [662,0,525,29,480], + 0x1D672: [672,11,525,40,482], + 0x1D673: [662,0,525,25,483], + 0x1D674: [662,0,525,31,500], + 0x1D675: [662,0,525,34,488], + 0x1D676: [672,11,525,37,495], + 0x1D677: [662,0,525,26,496], + 0x1D678: [662,0,525,84,438], + 0x1D679: [662,11,525,85,476], + 0x1D67A: [662,0,525,30,494], + 0x1D67B: [662,0,525,37,487], + 0x1D67C: [662,0,525,21,501], + 0x1D67D: [662,0,525,31,491], + 0x1D67E: [672,11,525,56,466], + 0x1D67F: [662,0,525,31,479], + 0x1D680: [672,139,525,56,466], + 0x1D681: [662,11,525,26,520], + 0x1D682: [672,11,525,52,470], + 0x1D683: [662,0,525,26,496], + 0x1D684: [662,11,525,9,514], + 0x1D685: [662,8,525,17,506], + 0x1D686: [662,8,525,11,512], + 0x1D687: [662,0,525,24,497], + 0x1D688: [662,0,525,15,507], + 0x1D689: [662,0,525,47,479], + 0x1D68A: [459,6,525,58,516], + 0x1D68B: [609,6,525,17,481], + 0x1D68C: [459,6,525,78,464], + 0x1D68D: [609,6,525,41,505], + 0x1D68E: [459,6,525,60,462], + 0x1D68F: [615,0,525,42,437], + 0x1D690: [461,228,525,29,508], + 0x1D691: [609,0,525,17,505], + 0x1D692: [610,0,525,84,448], + 0x1D693: [610,227,525,47,362], + 0x1D694: [609,0,525,24,505], + 0x1D695: [609,0,525,63,459], + 0x1D696: [456,0,525,2,520], + 0x1D697: [456,0,525,17,505], + 0x1D698: [459,6,525,62,460], + 0x1D699: [456,221,525,17,481], + 0x1D69A: [456,221,525,45,530], + 0x1D69B: [456,0,525,37,485], + 0x1D69C: [459,6,525,72,457], + 0x1D69D: [580,6,525,25,448], + 0x1D69E: [450,6,525,17,505], + 0x1D69F: [450,4,525,22,500], + 0x1D6A0: [450,4,525,15,508], + 0x1D6A1: [450,0,525,23,498], + 0x1D6A2: [450,227,525,24,501], + 0x1D6A3: [450,0,525,32,473], + 0x1D7F6: [681,11,525,55,467], + 0x1D7F7: [681,0,525,110,435], + 0x1D7F8: [681,0,525,52,470], + 0x1D7F9: [681,11,525,43,479], + 0x1D7FA: [682,0,525,29,493], + 0x1D7FB: [670,11,525,52,470], + 0x1D7FC: [681,11,525,58,464], + 0x1D7FD: [686,11,525,43,479], + 0x1D7FE: [681,11,525,43,479], + 0x1D7FF: [681,11,525,58,464] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Monospace"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Monospace/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Bold/Main.js new file mode 100644 index 0000000..d58678d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Bold/Main.js @@ -0,0 +1,153 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Normal-bold'] = { + directory: 'Normal/Bold', + family: 'STIXMathJax_Normal', + weight: 'bold', + testString: '\u00A0\u210E\uD835\uDC00\uD835\uDC01\uD835\uDC02\uD835\uDC03\uD835\uDC04\uD835\uDC05\uD835\uDC06\uD835\uDC07\uD835\uDC08\uD835\uDC09\uD835\uDC0A\uD835\uDC0B\uD835\uDC0C', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210E: [685,10,576,50,543], + 0x1D400: [690,0,722,9,689], + 0x1D401: [676,0,667,16,619], + 0x1D402: [691,19,722,49,687], + 0x1D403: [676,0,722,14,690], + 0x1D404: [676,0,667,16,641], + 0x1D405: [676,0,611,16,583], + 0x1D406: [691,19,778,37,755], + 0x1D407: [676,0,778,21,759], + 0x1D408: [676,0,389,20,370], + 0x1D409: [676,96,500,3,478], + 0x1D40A: [676,0,778,30,769], + 0x1D40B: [676,0,667,19,638], + 0x1D40C: [676,0,944,14,921], + 0x1D40D: [676,18,722,16,701], + 0x1D40E: [691,19,778,35,743], + 0x1D40F: [676,0,611,16,600], + 0x1D410: [691,176,778,35,743], + 0x1D411: [676,0,722,26,716], + 0x1D412: [692,19,556,35,513], + 0x1D413: [676,0,667,31,636], + 0x1D414: [676,19,722,16,701], + 0x1D415: [676,18,722,16,701], + 0x1D416: [676,15,1000,19,981], + 0x1D417: [676,0,722,16,699], + 0x1D418: [676,0,722,15,699], + 0x1D419: [676,0,667,28,634], + 0x1D41A: [473,14,500,25,488], + 0x1D41B: [676,14,556,17,521], + 0x1D41C: [473,14,444,25,430], + 0x1D41D: [676,14,556,25,534], + 0x1D41E: [473,14,444,25,427], + 0x1D41F: [691,0,333,14,389], + 0x1D420: [473,206,500,28,483], + 0x1D421: [676,0,556,15,534], + 0x1D422: [691,0,278,15,256], + 0x1D423: [691,203,333,-57,263], + 0x1D424: [676,0,556,22,543], + 0x1D425: [676,0,278,15,256], + 0x1D426: [473,0,833,15,814], + 0x1D427: [473,0,556,21,539], + 0x1D428: [473,14,500,25,476], + 0x1D429: [473,205,556,19,524], + 0x1D42A: [473,205,556,34,536], + 0x1D42B: [473,0,444,28,434], + 0x1D42C: [473,14,389,25,361], + 0x1D42D: [630,12,333,19,332], + 0x1D42E: [461,14,556,16,538], + 0x1D42F: [461,14,500,21,485], + 0x1D430: [461,14,722,23,707], + 0x1D431: [461,0,500,12,484], + 0x1D432: [461,205,500,16,482], + 0x1D433: [461,0,444,21,420], + 0x1D6A8: [690,0,735,9,689], + 0x1D6A9: [676,0,667,16,619], + 0x1D6AA: [676,0,620,16,593], + 0x1D6AB: [690,0,691,16,656], + 0x1D6AC: [676,0,679,16,641], + 0x1D6AD: [676,0,693,28,634], + 0x1D6AE: [676,0,810,21,759], + 0x1D6AF: [692,18,778,35,743], + 0x1D6B0: [676,0,421,20,370], + 0x1D6B1: [676,0,820,30,769], + 0x1D6B2: [690,0,707,9,674], + 0x1D6B3: [676,0,972,14,921], + 0x1D6B4: [676,18,722,16,701], + 0x1D6B5: [676,0,623,28,595], + 0x1D6B6: [691,19,778,35,743], + 0x1D6B7: [676,0,780,21,759], + 0x1D6B8: [676,0,611,16,600], + 0x1D6B9: [692,18,778,35,743], + 0x1D6BA: [676,0,665,14,627], + 0x1D6BB: [676,0,667,31,636], + 0x1D6BC: [692,0,722,3,699], + 0x1D6BD: [676,0,836,18,818], + 0x1D6BE: [676,0,747,16,699], + 0x1D6BF: [692,0,800,3,785], + 0x1D6C0: [692,0,778,35,723], + 0x1D6C1: [676,14,691,16,656], + 0x1D6C2: [473,14,644,25,618], + 0x1D6C3: [692,205,556,45,524], + 0x1D6C4: [473,205,518,12,501], + 0x1D6C5: [692,14,502,26,477], + 0x1D6C6: [473,14,444,28,429], + 0x1D6C7: [692,205,459,23,437], + 0x1D6C8: [473,205,580,12,545], + 0x1D6C9: [692,14,501,25,476], + 0x1D6CA: [461,14,326,15,304], + 0x1D6CB: [473,0,581,21,559], + 0x1D6CC: [692,18,546,19,527], + 0x1D6CD: [461,205,610,45,588], + 0x1D6CE: [473,14,518,15,495], + 0x1D6CF: [692,205,465,23,439], + 0x1D6D0: [473,14,500,25,476], + 0x1D6D1: [461,18,631,20,609], + 0x1D6D2: [473,205,547,45,515], + 0x1D6D3: [473,203,464,23,444], + 0x1D6D4: [461,14,568,25,529], + 0x1D6D5: [461,14,492,18,457], + 0x1D6D6: [473,14,576,12,551], + 0x1D6D7: [473,205,653,24,629], + 0x1D6D8: [473,205,612,21,586], + 0x1D6D9: [473,205,763,12,751], + 0x1D6DA: [473,14,734,26,708], + 0x1D6DB: [707,14,515,25,491], + 0x1D6DC: [473,14,444,25,430], + 0x1D6DD: [692,14,647,12,620], + 0x1D6DE: [473,19,563,12,546], + 0x1D6DF: [676,205,653,24,629], + 0x1D6E0: [473,205,511,25,486], + 0x1D6E1: [461,14,864,9,851], + 0x1D7CE: [688,13,500,24,476], + 0x1D7CF: [688,0,500,65,441], + 0x1D7D0: [688,0,500,17,478], + 0x1D7D1: [688,14,500,16,468], + 0x1D7D2: [688,0,500,19,476], + 0x1D7D3: [676,8,500,22,470], + 0x1D7D4: [688,13,500,28,475], + 0x1D7D5: [676,0,500,17,477], + 0x1D7D6: [688,13,500,28,472], + 0x1D7D7: [688,13,500,26,473] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Normal-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Normal/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Normal/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Normal/BoldItalic/Main.js new file mode 100644 index 0000000..0649fdd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Normal/BoldItalic/Main.js @@ -0,0 +1,143 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Normal-bold-italic'] = { + directory: 'Normal/BoldItalic', + family: 'STIXMathJax_Normal', + weight: 'bold', + style: 'italic', + testString: '\u00A0\uD835\uDC68\uD835\uDC69\uD835\uDC6A\uD835\uDC6B\uD835\uDC6C\uD835\uDC6D\uD835\uDC6E\uD835\uDC6F\uD835\uDC70\uD835\uDC71\uD835\uDC72\uD835\uDC73\uD835\uDC74\uD835\uDC75', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x1D468: [685,0,759,39,724], + 0x1D469: [669,0,726,42,715], + 0x1D46A: [685,12,701,55,745], + 0x1D46B: [669,0,818,42,790], + 0x1D46C: [669,0,732,42,754], + 0x1D46D: [669,0,635,44,750], + 0x1D46E: [685,12,768,55,768], + 0x1D46F: [669,0,891,42,946], + 0x1D470: [669,0,502,42,557], + 0x1D471: [669,12,558,66,646], + 0x1D472: [669,0,795,42,839], + 0x1D473: [669,0,744,42,700], + 0x1D474: [669,0,1016,42,1071], + 0x1D475: [669,0,869,42,924], + 0x1D476: [685,16,777,55,755], + 0x1D477: [669,0,612,42,733], + 0x1D478: [685,154,810,55,755], + 0x1D479: [669,0,801,42,784], + 0x1D47A: [685,10,671,55,704], + 0x1D47B: [669,0,568,28,700], + 0x1D47C: [669,10,733,72,810], + 0x1D47D: [669,15,593,66,797], + 0x1D47E: [669,17,925,66,1129], + 0x1D47F: [669,0,808,28,830], + 0x1D480: [669,0,549,39,725], + 0x1D481: [669,0,797,66,830], + 0x1D482: [462,10,581,44,548], + 0x1D483: [685,8,509,50,487], + 0x1D484: [462,10,477,44,460], + 0x1D485: [685,14,595,44,589], + 0x1D486: [462,10,498,44,459], + 0x1D487: [685,207,572,44,632], + 0x1D488: [462,203,527,22,527], + 0x1D489: [685,10,576,50,543], + 0x1D48A: [620,9,357,55,300], + 0x1D48B: [620,207,431,-18,414], + 0x1D48C: [685,11,580,55,563], + 0x1D48D: [685,9,346,50,310], + 0x1D48E: [467,9,760,33,727], + 0x1D48F: [467,10,559,33,526], + 0x1D490: [462,10,561,44,539], + 0x1D491: [469,205,571,-33,554], + 0x1D492: [462,205,526,44,532], + 0x1D493: [467,0,441,33,424], + 0x1D494: [462,11,474,55,419], + 0x1D495: [592,10,351,44,318], + 0x1D496: [463,10,535,33,502], + 0x1D497: [473,14,554,52,539], + 0x1D498: [473,14,814,52,799], + 0x1D499: [462,8,587,33,543], + 0x1D49A: [462,205,519,35,522], + 0x1D49B: [462,19,531,35,499], + 0x1D71C: [685,0,759,39,724], + 0x1D71D: [669,0,726,42,715], + 0x1D71E: [669,0,634,42,749], + 0x1D71F: [685,0,632,32,589], + 0x1D720: [669,0,732,42,754], + 0x1D721: [669,0,797,66,830], + 0x1D722: [669,0,891,42,946], + 0x1D723: [685,16,783,55,755], + 0x1D724: [669,0,502,42,557], + 0x1D725: [669,0,795,42,839], + 0x1D726: [685,0,759,39,724], + 0x1D727: [669,0,1016,42,1071], + 0x1D728: [669,0,869,42,924], + 0x1D729: [669,0,718,57,757], + 0x1D72A: [685,16,777,55,755], + 0x1D72B: [669,0,887,39,942], + 0x1D72C: [669,0,612,42,733], + 0x1D72D: [685,16,783,55,755], + 0x1D72E: [669,0,759,64,787], + 0x1D72F: [669,0,568,28,700], + 0x1D730: [685,0,641,31,784], + 0x1D731: [669,0,827,28,799], + 0x1D732: [669,0,808,28,830], + 0x1D733: [685,0,694,30,781], + 0x1D734: [685,0,826,57,815], + 0x1D735: [669,16,632,43,600], + 0x1D736: [461,12,624,44,630], + 0x1D737: [685,205,555,28,583], + 0x1D738: [462,203,490,44,503], + 0x1D739: [685,8,538,44,538], + 0x1D73A: [462,10,495,28,451], + 0x1D73B: [685,203,472,44,522], + 0x1D73C: [462,205,517,33,511], + 0x1D73D: [685,11,566,44,555], + 0x1D73E: [462,9,318,55,274], + 0x1D73F: [462,0,560,55,577], + 0x1D740: [685,16,570,55,537], + 0x1D741: [449,205,636,33,603], + 0x1D742: [459,10,523,55,534], + 0x1D743: [685,203,476,28,487], + 0x1D744: [462,10,561,44,539], + 0x1D745: [449,13,579,39,590], + 0x1D746: [462,205,595,33,562], + 0x1D747: [462,203,480,39,508], + 0x1D748: [449,10,592,44,603], + 0x1D749: [449,7,469,33,502], + 0x1D74A: [462,10,552,33,535], + 0x1D74B: [462,205,706,55,667], + 0x1D74C: [462,204,621,33,676], + 0x1D74D: [462,205,701,33,756], + 0x1D74E: [462,10,687,22,665], + 0x1D74F: [686,10,559,44,559], + 0x1D750: [461,10,481,44,481], + 0x1D751: [698,13,607,33,584], + 0x1D752: [462,15,607,-12,630], + 0x1D753: [685,205,683,44,655], + 0x1D754: [462,205,585,44,563], + 0x1D755: [449,10,868,33,879] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Normal-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Normal/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Italic/Main.js new file mode 100644 index 0000000..6c0b1a4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Italic/Main.js @@ -0,0 +1,144 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Normal-italic'] = { + directory: 'Normal/Italic', + family: 'STIXMathJax_Normal', + style: 'italic', + testString: '\u00A0\u210E\uD835\uDC34\uD835\uDC35\uD835\uDC36\uD835\uDC37\uD835\uDC38\uD835\uDC39\uD835\uDC3A\uD835\uDC3B\uD835\uDC3C\uD835\uDC3D\uD835\uDC3E\uD835\uDC3F\uD835\uDC40', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210E: [668,11,513,45,483], + 0x1D434: [667,0,717,35,685], + 0x1D435: [653,0,696,38,686], + 0x1D436: [659,12,671,50,711], + 0x1D437: [653,0,790,38,765], + 0x1D438: [653,0,714,38,734], + 0x1D439: [653,0,618,38,723], + 0x1D43A: [668,12,734,50,734], + 0x1D43B: [653,0,873,38,923], + 0x1D43C: [653,0,480,38,530], + 0x1D43D: [653,12,540,60,620], + 0x1D43E: [653,0,762,38,802], + 0x1D43F: [653,0,708,38,668], + 0x1D440: [653,0,1005,38,1055], + 0x1D441: [653,0,851,38,901], + 0x1D442: [669,11,732,50,712], + 0x1D443: [653,0,594,38,704], + 0x1D444: [667,152,781,50,731], + 0x1D445: [653,0,740,38,725], + 0x1D446: [668,10,650,50,680], + 0x1D447: [653,0,550,25,670], + 0x1D448: [653,13,705,65,775], + 0x1D449: [653,16,575,60,760], + 0x1D44A: [653,16,916,60,1101], + 0x1D44B: [653,0,790,25,810], + 0x1D44C: [653,0,535,35,695], + 0x1D44D: [653,0,772,60,802], + 0x1D44E: [441,10,502,40,472], + 0x1D44F: [668,11,470,45,450], + 0x1D450: [441,11,415,40,400], + 0x1D451: [668,12,532,40,527], + 0x1D452: [441,11,445,40,410], + 0x1D453: [668,187,555,40,615], + 0x1D454: [441,187,492,20,492], + 0x1D456: [616,11,311,50,257], + 0x1D457: [616,187,389,-16,372], + 0x1D458: [668,11,542,45,527], + 0x1D459: [668,10,318,45,278], + 0x1D45A: [441,8,710,30,680], + 0x1D45B: [441,8,497,30,467], + 0x1D45C: [441,11,458,40,438], + 0x1D45D: [441,183,489,-30,474], + 0x1D45E: [441,183,458,40,463], + 0x1D45F: [441,0,408,30,393], + 0x1D460: [441,11,440,50,390], + 0x1D461: [567,9,313,40,283], + 0x1D462: [441,9,474,30,444], + 0x1D463: [458,9,506,72,479], + 0x1D464: [460,9,775,72,748], + 0x1D465: [441,9,550,30,510], + 0x1D466: [440,183,496,30,496], + 0x1D467: [450,14,499,42,467], + 0x1D6A4: [441,11,278,47,235], + 0x1D6A5: [441,207,278,-124,246], + 0x1D6E2: [667,0,717,35,685], + 0x1D6E3: [653,0,696,38,686], + 0x1D6E4: [653,0,616,38,721], + 0x1D6E5: [667,0,596,30,556], + 0x1D6E6: [653,0,714,38,734], + 0x1D6E7: [653,0,772,60,802], + 0x1D6E8: [653,0,873,38,923], + 0x1D6E9: [669,11,737,50,712], + 0x1D6EA: [653,0,480,38,530], + 0x1D6EB: [653,0,762,38,802], + 0x1D6EC: [667,0,718,35,686], + 0x1D6ED: [653,0,1005,38,1055], + 0x1D6EE: [653,0,851,38,901], + 0x1D6EF: [653,0,706,52,741], + 0x1D6F0: [669,11,732,50,712], + 0x1D6F1: [653,0,873,38,923], + 0x1D6F2: [653,0,594,38,704], + 0x1D6F3: [669,11,737,50,712], + 0x1D6F4: [653,0,735,58,760], + 0x1D6F5: [653,0,550,25,670], + 0x1D6F6: [668,0,613,28,743], + 0x1D6F7: [653,0,772,25,747], + 0x1D6F8: [653,0,790,25,810], + 0x1D6F9: [667,0,670,28,743], + 0x1D6FA: [666,0,800,32,777], + 0x1D6FB: [653,15,627,42,600], + 0x1D6FC: [441,10,524,40,529], + 0x1D6FD: [668,183,493,25,518], + 0x1D6FE: [441,187,428,35,458], + 0x1D6FF: [668,11,463,40,451], + 0x1D700: [441,11,484,25,444], + 0x1D701: [668,183,435,40,480], + 0x1D702: [441,183,460,30,455], + 0x1D703: [668,11,484,40,474], + 0x1D704: [441,11,267,50,227], + 0x1D705: [441,0,534,50,549], + 0x1D706: [668,16,541,50,511], + 0x1D707: [428,183,579,30,549], + 0x1D708: [446,9,452,50,462], + 0x1D709: [668,183,433,25,443], + 0x1D70A: [441,11,458,40,438], + 0x1D70B: [428,13,558,35,568], + 0x1D70C: [441,183,502,30,472], + 0x1D70D: [490,183,439,35,464], + 0x1D70E: [428,11,537,40,547], + 0x1D70F: [428,5,442,30,472], + 0x1D710: [439,11,460,30,445], + 0x1D711: [441,183,666,50,631], + 0x1D712: [441,202,595,30,645], + 0x1D713: [441,183,661,30,711], + 0x1D714: [441,11,681,20,661], + 0x1D715: [668,11,471,40,471], + 0x1D716: [441,11,430,40,430], + 0x1D717: [678,10,554,20,507], + 0x1D718: [441,13,561,12,587], + 0x1D719: [668,183,645,40,620], + 0x1D71A: [441,187,509,40,489], + 0x1D71B: [428,11,856,30,866] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Normal-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Normal/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Bold/Main.js new file mode 100644 index 0000000..707036a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Bold/Main.js @@ -0,0 +1,178 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Operators-bold'] = { + directory: 'Operators/Bold', + family: 'STIXMathJax_Operators', + weight: 'bold', + testString: '\u00A0\u2206\u220A\u220C\u220F\u2210\u2211\u221F\u222C\u222D\u222E\u222F\u2230\u2231\u2232', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2206: [676,0,681,23,658], + 0x220A: [499,-35,500,60,440], + 0x220C: [680,146,750,82,668], + 0x220F: [763,259,1000,37,963], + 0x2210: [763,259,982,28,954], + 0x2211: [763,259,914,40,873], + 0x221F: [584,0,685,50,634], + 0x222C: [824,320,863,32,1043], + 0x222D: [824,320,1174,32,1354], + 0x222E: [824,320,591,30,731], + 0x222F: [824,320,903,32,1043], + 0x2230: [824,320,1214,32,1354], + 0x2231: [824,320,593,32,733], + 0x2232: [824,320,593,32,733], + 0x2233: [824,320,593,32,733], + 0x2236: [575,41,554,190,364], + 0x2237: [575,41,750,68,683], + 0x2238: [543,-209,750,66,685], + 0x2239: [543,37,750,66,686], + 0x223A: [575,41,750,66,685], + 0x223B: [565,59,750,67,682], + 0x223E: [419,-85,750,68,683], + 0x223F: [484,-67,750,66,684], + 0x2244: [530,54,750,68,683], + 0x2247: [642,152,750,68,683], + 0x2249: [583,48,750,68,683], + 0x224B: [613,109,750,68,683], + 0x224C: [568,60,750,68,683], + 0x2254: [483,-50,932,68,864], + 0x2255: [483,-50,932,68,864], + 0x2258: [761,-107,750,68,682], + 0x2259: [836,-107,750,68,682], + 0x225A: [836,-107,750,68,682], + 0x225B: [841,-107,750,68,682], + 0x225D: [838,-107,750,55,735], + 0x225E: [721,-107,750,68,682], + 0x225F: [880,-107,750,68,682], + 0x2262: [688,156,750,68,682], + 0x2263: [592,57,750,68,682], + 0x226D: [591,87,750,68,683], + 0x2274: [780,282,750,67,682], + 0x2275: [780,282,750,67,682], + 0x2278: [824,316,750,80,670], + 0x2279: [824,316,750,80,670], + 0x2284: [680,146,750,82,668], + 0x2285: [680,146,750,82,668], + 0x228C: [541,33,650,66,584], + 0x228D: [541,33,650,66,584], + 0x229C: [634,130,864,50,814], + 0x22A6: [676,0,555,91,464], + 0x22A7: [676,0,555,91,464], + 0x22AB: [676,0,944,91,856], + 0x22B0: [543,38,750,98,652], + 0x22B1: [543,38,750,98,652], + 0x22B6: [436,-96,1216,50,1166], + 0x22B7: [436,-96,1216,50,1166], + 0x22B9: [563,57,750,65,685], + 0x22BD: [697,28,640,52,588], + 0x22BE: [630,0,750,60,690], + 0x22BF: [662,158,910,45,865], + 0x22C0: [763,259,977,54,923], + 0x22C1: [763,259,977,54,923], + 0x22C2: [768,264,961,94,867], + 0x22C3: [768,264,961,94,867], + 0x22C7: [595,63,750,66,685], + 0x22D5: [690,189,685,48,637], + 0x22DC: [627,120,750,80,670], + 0x22DD: [627,120,750,80,670], + 0x22E2: [792,241,750,87,663], + 0x22E3: [792,241,750,87,663], + 0x22F0: [579,75,977,162,815], + 0x22F6: [735,13,750,82,668], + 0x22FD: [735,13,750,82,668], + 0x2A0C: [824,320,1484,32,1664], + 0x2A0D: [824,320,593,32,733], + 0x2A0E: [824,320,593,32,733], + 0x2A0F: [824,320,593,32,733], + 0x2A10: [824,320,593,32,733], + 0x2A11: [824,320,593,32,733], + 0x2A12: [824,320,613,32,733], + 0x2A13: [824,320,593,32,733], + 0x2A14: [824,320,675,32,735], + 0x2A15: [824,320,593,32,733], + 0x2A16: [824,320,623,32,733], + 0x2A17: [824,320,791,32,871], + 0x2A18: [824,320,633,32,733], + 0x2A19: [824,320,653,32,733], + 0x2A1A: [824,320,653,32,733], + 0x2A1B: [959,320,557,32,737], + 0x2A1C: [824,455,557,32,737], + 0x2A22: [894,57,750,65,685], + 0x2A23: [736,57,750,65,685], + 0x2A24: [746,57,750,65,685], + 0x2A25: [563,287,750,65,685], + 0x2A26: [563,240,750,65,685], + 0x2A27: [563,247,780,65,778], + 0x2A2A: [297,37,750,66,685], + 0x2A2B: [543,37,750,66,685], + 0x2A2C: [543,37,750,66,685], + 0x2A30: [745,33,702,66,636], + 0x2A31: [538,191,702,66,636], + 0x2A32: [538,59,702,66,636], + 0x2A63: [536,379,640,52,588], + 0x2A66: [399,161,750,68,682], + 0x2A67: [775,-27,750,68,682], + 0x2A6A: [565,-132,750,67,682], + 0x2A6D: [759,60,750,68,683], + 0x2A6E: [884,-107,750,68,682], + 0x2A6F: [752,-26,750,68,683], + 0x2A70: [680,176,750,68,683], + 0x2A71: [665,159,750,65,685], + 0x2A72: [665,159,750,65,685], + 0x2A73: [568,60,750,67,682], + 0x2A9D: [689,183,750,67,682], + 0x2A9E: [689,183,750,67,682], + 0x2ABD: [547,13,750,82,668], + 0x2ABE: [547,13,750,82,668], + 0xE00E: [819,339,750,80,670], + 0xE00F: [742,235,750,80,670], + 0xE010: [742,235,750,80,670], + 0xE011: [819,339,750,80,670], + 0xE023: [742,235,750,68,683], + 0xE025: [852,345,750,67,683], + 0xE028: [672,166,1000,38,961], + 0xE029: [672,166,1000,38,961], + 0xE037: [672,166,750,67,682], + 0xE04D: [553,47,750,68,683], + 0xE050: [672,166,750,87,663], + 0xE051: [672,166,750,87,663], + 0xE052: [574,69,750,68,683], + 0xE05B: [574,-16,750,68,683], + 0xE05C: [553,31,750,68,683], + 0xE06D: [835,113,750,82,668], + 0xE06E: [835,113,750,82,668], + 0xE06F: [835,113,750,82,668], + 0xE070: [835,113,750,82,668], + 0xE07E: [738,230,750,80,670], + 0xE07F: [742,234,750,80,670], + 0xE080: [819,337,750,80,670], + 0xE081: [820,342,750,91,681], + 0xE082: [742,235,750,80,670], + 0xE083: [742,234,750,80,670], + 0xE084: [738,230,750,80,670], + 0xE085: [742,234,750,80,670], + 0xE3C3: [747,243,750,68,683], + 0xE3C4: [747,243,750,68,683] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Operators-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Operators/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Regular/Main.js new file mode 100644 index 0000000..12f9b5b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Regular/Main.js @@ -0,0 +1,439 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'STIXMathJax_Operators', + testString: '\u00A0\u2206\u220A\u220C\u220E\u220F\u2210\u2211\u221B\u221C\u221F\u222C\u222D\u222E\u222F', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2206: [674,0,731,63,665], + 0x220A: [459,-45,486,64,422], + 0x220C: [662,157,685,60,625], + 0x220E: [640,0,545,60,485], + 0x220F: [763,259,1000,52,948], + 0x2210: [763,259,1000,52,948], + 0x2211: [763,259,914,58,856], + 0x221B: [973,259,928,112,963], + 0x221C: [973,259,928,112,963], + 0x221F: [584,0,685,50,634], + 0x222C: [824,320,701,32,881], + 0x222D: [824,320,943,32,1123], + 0x222E: [824,320,499,32,639], + 0x222F: [824,320,741,32,881], + 0x2230: [824,320,982,32,1122], + 0x2231: [824,320,499,32,639], + 0x2232: [824,320,499,32,639], + 0x2233: [824,320,499,32,639], + 0x2236: [521,13,511,192,319], + 0x2237: [521,13,685,82,602], + 0x2238: [511,-220,685,48,637], + 0x2239: [511,5,685,48,637], + 0x223A: [511,5,685,48,637], + 0x223B: [521,13,685,48,637], + 0x223E: [413,-90,685,48,637], + 0x223F: [467,-39,685,49,637], + 0x2244: [519,35,685,48,637], + 0x2247: [647,202,685,48,637], + 0x2249: [549,49,685,48,637], + 0x224B: [532,26,685,48,638], + 0x224C: [532,27,685,48,637], + 0x2254: [417,-89,824,48,776], + 0x2255: [417,-89,824,48,776], + 0x2258: [729,-120,685,48,637], + 0x2259: [853,-120,685,48,637], + 0x225A: [853,-120,685,48,637], + 0x225B: [756,-120,685,48,637], + 0x225D: [823,-120,685,7,678], + 0x225E: [703,-120,685,48,637], + 0x225F: [863,-120,685,48,637], + 0x2262: [662,156,685,48,637], + 0x2263: [544,38,685,48,637], + 0x226D: [572,66,685,48,637], + 0x2274: [731,228,685,48,637], + 0x2275: [730,229,685,48,637], + 0x2278: [750,250,685,48,637], + 0x2279: [750,250,685,48,637], + 0x2284: [662,156,685,65,623], + 0x2285: [662,156,685,65,623], + 0x228C: [536,31,620,48,572], + 0x228D: [536,31,620,48,572], + 0x229C: [623,119,842,50,792], + 0x22A6: [662,0,497,64,433], + 0x22A7: [662,0,498,64,434], + 0x22AB: [662,0,860,57,814], + 0x22B0: [551,45,685,64,621], + 0x22B1: [551,45,685,64,621], + 0x22B6: [403,-103,1145,50,1095], + 0x22B7: [403,-103,1145,50,1095], + 0x22B9: [547,41,685,48,636], + 0x22BD: [646,29,620,32,590], + 0x22BE: [584,0,685,50,634], + 0x22BF: [662,158,911,45,865], + 0x22C0: [763,259,924,54,870], + 0x22C1: [763,259,924,54,870], + 0x22C2: [778,254,924,94,830], + 0x22C3: [768,264,924,94,830], + 0x22C7: [545,38,685,51,634], + 0x22D5: [690,189,685,48,637], + 0x22DC: [607,103,685,64,621], + 0x22DD: [607,103,685,64,621], + 0x22E2: [730,229,685,65,622], + 0x22E3: [730,229,685,65,622], + 0x22E4: [627,216,685,64,621], + 0x22E5: [627,216,685,64,621], + 0x22F0: [520,18,926,194,732], + 0x22F2: [531,27,823,55,763], + 0x22F3: [531,27,685,60,625], + 0x22F4: [459,-45,486,62,420], + 0x22F5: [716,27,685,60,625], + 0x22F6: [685,27,685,60,625], + 0x22F7: [613,-45,486,62,420], + 0x22F8: [532,180,685,60,625], + 0x22F9: [531,27,685,61,625], + 0x22FA: [531,27,823,55,763], + 0x22FB: [531,27,685,59,624], + 0x22FC: [459,-45,486,62,420], + 0x22FD: [685,27,685,61,626], + 0x22FE: [613,-45,486,67,425], + 0x22FF: [662,158,910,45,865], + 0x2A00: [763,259,1126,53,1073], + 0x2A01: [763,259,1126,53,1073], + 0x2A02: [763,259,1126,53,1073], + 0x2A03: [768,264,924,94,830], + 0x2A04: [768,264,924,94,830], + 0x2A05: [763,259,924,94,830], + 0x2A06: [763,259,924,94,830], + 0x2A07: [763,259,1180,83,1097], + 0x2A08: [763,259,1180,83,1097], + 0x2A09: [763,259,1021,50,971], + 0x2A0A: [763,259,914,58,856], + 0x2A0B: [824,320,690,33,659], + 0x2A0C: [824,320,1184,32,1364], + 0x2A0D: [824,320,499,32,639], + 0x2A0E: [824,320,499,32,639], + 0x2A0F: [824,320,499,32,639], + 0x2A10: [824,320,499,32,639], + 0x2A11: [824,320,499,32,639], + 0x2A12: [824,320,519,32,639], + 0x2A13: [824,320,499,32,639], + 0x2A14: [824,320,628,32,688], + 0x2A15: [824,320,499,32,639], + 0x2A16: [824,320,529,32,639], + 0x2A17: [824,320,738,32,818], + 0x2A18: [824,320,539,32,639], + 0x2A19: [824,320,559,32,639], + 0x2A1A: [824,320,559,32,639], + 0x2A1B: [947,320,459,32,639], + 0x2A1C: [824,443,459,32,639], + 0x2A1D: [770,252,1270,93,1177], + 0x2A1E: [764,258,1018,45,924], + 0x2A1F: [566,291,503,110,410], + 0x2A20: [633,127,1177,98,1079], + 0x2A21: [805,300,547,215,472], + 0x2A22: [819,41,685,48,636], + 0x2A23: [707,41,685,48,636], + 0x2A24: [704,41,685,48,636], + 0x2A25: [547,235,685,48,636], + 0x2A26: [547,198,685,48,636], + 0x2A27: [547,210,685,41,673], + 0x2A28: [547,41,685,48,636], + 0x2A29: [556,-220,685,48,637], + 0x2A2A: [286,5,685,48,637], + 0x2A2B: [511,5,685,48,637], + 0x2A2C: [511,5,685,48,637], + 0x2A2D: [623,119,724,50,674], + 0x2A2E: [623,119,724,50,674], + 0x2A2F: [447,-59,490,50,439], + 0x2A30: [686,25,640,43,597], + 0x2A31: [529,130,640,43,597], + 0x2A32: [529,45,640,43,597], + 0x2A33: [538,32,685,57,627], + 0x2A34: [623,119,674,50,624], + 0x2A35: [623,119,674,50,624], + 0x2A36: [810,119,842,50,792], + 0x2A37: [752,248,1100,50,1050], + 0x2A38: [623,119,842,50,792], + 0x2A39: [811,127,1145,35,1110], + 0x2A3A: [811,127,1145,35,1110], + 0x2A3B: [811,127,1145,35,1110], + 0x2A3C: [393,-115,600,48,552], + 0x2A3D: [393,-115,600,48,552], + 0x2A3E: [488,170,300,60,230], + 0x2A40: [536,31,620,48,572], + 0x2A41: [536,31,620,48,572], + 0x2A42: [668,31,620,48,572], + 0x2A43: [668,31,620,48,572], + 0x2A44: [536,31,620,48,572], + 0x2A45: [536,31,620,48,572], + 0x2A46: [914,406,620,48,572], + 0x2A47: [914,406,620,48,572], + 0x2A48: [914,406,620,48,572], + 0x2A49: [914,406,620,48,572], + 0x2A4A: [528,39,1078,48,1030], + 0x2A4B: [527,40,1078,48,1030], + 0x2A4C: [602,31,620,10,610], + 0x2A4D: [536,97,620,10,610], + 0x2A4E: [536,31,620,48,572], + 0x2A4F: [536,31,620,48,572], + 0x2A50: [602,31,620,10,610], + 0x2A51: [710,29,620,31,589], + 0x2A52: [710,29,620,31,589], + 0x2A53: [536,29,620,31,589], + 0x2A54: [536,29,620,31,589], + 0x2A55: [536,29,780,32,748], + 0x2A56: [536,29,780,32,748], + 0x2A57: [536,29,706,106,683], + 0x2A58: [536,29,706,23,600], + 0x2A59: [585,77,620,31,589], + 0x2A5A: [536,29,620,31,589], + 0x2A5B: [536,29,620,31,589], + 0x2A5C: [536,29,620,31,589], + 0x2A5D: [536,29,620,31,589], + 0x2A5F: [536,139,620,30,590], + 0x2A60: [536,289,620,30,590], + 0x2A61: [479,0,620,45,575], + 0x2A62: [806,29,620,30,590], + 0x2A63: [536,289,620,30,590], + 0x2A64: [791,284,1043,70,1008], + 0x2A65: [791,284,1043,70,1008], + 0x2A66: [386,105,685,48,637], + 0x2A67: [703,-28,685,48,637], + 0x2A68: [695,189,685,48,637], + 0x2A69: [662,156,685,48,637], + 0x2A6A: [521,-148,685,48,637], + 0x2A6B: [521,13,685,48,637], + 0x2A6C: [543,38,685,48,637], + 0x2A6D: [703,27,685,48,637], + 0x2A6E: [847,-120,685,48,637], + 0x2A6F: [707,-25,685,48,637], + 0x2A70: [650,146,685,48,637], + 0x2A71: [648,141,685,48,637], + 0x2A72: [648,141,685,48,637], + 0x2A73: [532,27,685,48,637], + 0x2A74: [417,-89,1015,48,967], + 0x2A75: [386,-120,997,48,949], + 0x2A76: [386,-120,1436,48,1388], + 0x2A77: [611,106,685,48,637], + 0x2A78: [703,-28,685,38,647], + 0x2A79: [532,26,685,44,609], + 0x2A7A: [532,26,685,76,641], + 0x2A7B: [806,26,685,44,609], + 0x2A7C: [806,26,685,76,641], + 0x2A7F: [625,137,685,60,625], + 0x2A80: [625,137,685,60,625], + 0x2A81: [625,137,685,60,625], + 0x2A82: [625,137,685,60,625], + 0x2A83: [777,137,685,60,625], + 0x2A84: [777,137,685,60,625], + 0x2A8D: [746,176,685,48,637], + 0x2A8E: [746,176,685,48,637], + 0x2A8F: [867,361,685,60,649], + 0x2A90: [867,361,685,60,649], + 0x2A91: [844,338,685,55,630], + 0x2A92: [844,338,685,55,630], + 0x2A93: [866,361,685,60,625], + 0x2A94: [866,361,685,60,625], + 0x2A97: [640,122,685,56,621], + 0x2A98: [640,122,685,56,621], + 0x2A99: [718,211,685,60,625], + 0x2A9A: [718,211,685,60,625], + 0x2A9B: [726,220,685,60,625], + 0x2A9C: [726,220,685,60,625], + 0x2A9D: [664,164,685,53,642], + 0x2A9E: [664,164,685,43,632], + 0x2A9F: [774,267,685,48,637], + 0x2AA0: [774,267,685,48,637], + 0x2AA1: [532,26,685,44,609], + 0x2AA2: [532,26,685,76,641], + 0x2AA3: [609,103,933,25,908], + 0x2AA4: [532,26,782,60,722], + 0x2AA5: [532,26,855,60,795], + 0x2AA6: [532,26,685,35,625], + 0x2AA7: [532,26,685,60,650], + 0x2AA8: [625,137,685,50,640], + 0x2AA9: [626,137,685,45,635], + 0x2AAA: [537,31,685,45,609], + 0x2AAB: [537,31,685,76,640], + 0x2AAC: [613,103,685,60,625], + 0x2AAD: [613,103,685,60,625], + 0x2AAE: [563,-28,685,48,637], + 0x2AB1: [628,216,685,60,625], + 0x2AB2: [628,216,685,60,625], + 0x2AB3: [717,211,685,60,625], + 0x2AB4: [717,211,685,60,625], + 0x2ABB: [532,26,933,25,908], + 0x2ABC: [532,26,933,25,908], + 0x2ABD: [532,26,685,60,625], + 0x2ABE: [532,26,685,60,625], + 0x2ABF: [607,103,685,60,625], + 0x2AC0: [607,103,685,60,625], + 0x2AC1: [607,103,685,60,625], + 0x2AC2: [607,103,685,60,625], + 0x2AC3: [709,103,685,60,625], + 0x2AC4: [709,103,685,60,625], + 0x2AC7: [665,164,685,60,625], + 0x2AC8: [665,164,685,60,625], + 0x2AC9: [746,274,685,60,625], + 0x2ACA: [746,274,685,60,625], + 0x2ACD: [558,53,1352,64,1288], + 0x2ACE: [558,53,1352,64,1288], + 0x2ACF: [532,26,685,50,615], + 0x2AD0: [532,26,685,70,635], + 0x2AD1: [609,103,685,60,626], + 0x2AD2: [609,103,685,60,625], + 0x2AD3: [715,209,685,60,625], + 0x2AD4: [715,209,685,60,625], + 0x2AD5: [715,209,685,60,625], + 0x2AD6: [715,209,685,60,625], + 0x2AD7: [532,26,1250,60,1190], + 0x2AD8: [532,26,1250,60,1190], + 0x2AD9: [536,31,620,48,572], + 0x2ADA: [697,128,620,48,572], + 0x2ADB: [695,97,620,48,572], + 0x2ADC: [557,10,620,11,572], + 0x2ADD: [557,10,620,48,572], + 0x2ADE: [662,0,497,64,433], + 0x2ADF: [371,0,685,48,637], + 0x2AE0: [371,0,685,48,637], + 0x2AE1: [662,0,685,48,637], + 0x2AE2: [662,0,685,60,625], + 0x2AE3: [662,0,860,46,803], + 0x2AE4: [662,0,685,60,625], + 0x2AE5: [662,0,860,46,803], + 0x2AE6: [662,0,685,57,626], + 0x2AE7: [571,0,685,48,637], + 0x2AE8: [571,0,685,48,637], + 0x2AE9: [691,185,685,48,637], + 0x2AEA: [662,0,685,48,637], + 0x2AEB: [662,0,685,48,637], + 0x2AEC: [489,-18,600,48,552], + 0x2AED: [489,-18,600,48,552], + 0x2AEE: [690,189,404,23,381], + 0x2AEF: [660,154,502,101,401], + 0x2AF0: [660,154,502,101,401], + 0x2AF1: [693,187,502,101,401], + 0x2AF2: [695,189,523,10,513], + 0x2AF3: [695,189,685,48,637], + 0x2AF4: [695,189,685,131,555], + 0x2AF5: [695,189,685,12,674], + 0x2AF6: [608,102,685,279,406], + 0x2AF7: [661,155,1170,58,1080], + 0x2AF8: [661,155,1170,90,1112], + 0x2AF9: [726,220,685,60,625], + 0x2AFA: [726,220,685,60,625], + 0x2AFB: [710,222,894,46,848], + 0x2AFC: [763,259,654,94,560], + 0x2AFD: [710,222,709,46,663], + 0x2AFE: [690,189,410,100,310], + 0x2AFF: [763,259,478,94,384], + 0xE004: [450,-59,926,55,871], + 0xE005: [530,-57,926,55,871], + 0xE00A: [538,-55,685,48,637], + 0xE00B: [543,37,685,48,637], + 0xE00E: [846,340,685,60,626], + 0xE00F: [730,229,685,56,621], + 0xE010: [730,229,685,56,621], + 0xE011: [846,340,685,61,626], + 0xE016: [818,311,685,53,618], + 0xE018: [818,311,685,67,632], + 0xE01E: [607,110,685,48,638], + 0xE023: [695,189,685,48,637], + 0xE025: [724,236,685,48,637], + 0xE026: [662,156,685,47,612], + 0xE027: [662,156,685,73,638], + 0xE028: [663,155,933,25,908], + 0xE029: [662,156,933,25,908], + 0xE02A: [662,156,1240,43,1184], + 0xE02B: [662,156,1240,56,1197], + 0xE035: [602,98,486,64,422], + 0xE037: [662,156,685,48,637], + 0xE038: [690,189,732,50,682], + 0xE039: [662,156,685,47,636], + 0xE03A: [811,156,471,40,525], + 0xE03B: [736,156,685,60,625], + 0xE03C: [662,156,685,60,625], + 0xE03D: [602,98,486,64,422], + 0xE040: [415,-92,685,48,637], + 0xE043: [818,311,685,60,625], + 0xE044: [818,311,685,60,625], + 0xE045: [818,311,685,60,625], + 0xE046: [818,311,685,60,625], + 0xE04B: [745,242,685,60,625], + 0xE04C: [845,341,685,60,625], + 0xE04D: [534,19,685,48,637], + 0xE04E: [845,341,685,60,625], + 0xE04F: [745,242,685,60,625], + 0xE050: [662,156,685,65,620], + 0xE051: [662,156,685,65,620], + 0xE052: [561,55,685,48,637], + 0xE059: [730,224,685,48,637], + 0xE05A: [730,224,685,48,637], + 0xE05B: [561,-30,685,48,637], + 0xE05C: [534,19,685,48,637], + 0xE06B: [602,98,486,64,422], + 0xE06C: [602,98,486,64,422], + 0xE06D: [785,157,685,60,625], + 0xE06E: [785,157,685,60,625], + 0xE06F: [785,129,685,60,625], + 0xE070: [785,129,685,60,625], + 0xE075: [626,119,685,48,637], + 0xE076: [626,119,685,48,637], + 0xE077: [725,236,685,48,637], + 0xE07C: [758,252,685,48,637], + 0xE07D: [758,252,685,48,637], + 0xE07E: [732,227,685,56,621], + 0xE07F: [732,227,685,56,621], + 0xE080: [818,311,685,57,622], + 0xE081: [818,311,685,57,622], + 0xE082: [730,229,685,56,621], + 0xE083: [730,229,685,56,621], + 0xE084: [709,201,685,56,621], + 0xE085: [709,201,685,56,621], + 0xE086: [818,311,685,56,621], + 0xE087: [818,311,685,55,621], + 0xE088: [818,311,685,56,621], + 0xE089: [818,311,685,55,620], + 0xE092: [719,296,685,62,627], + 0xE093: [719,296,685,61,626], + 0xE094: [719,240,685,62,627], + 0xE095: [719,240,685,61,626], + 0xE096: [818,311,685,55,620], + 0xE097: [818,311,685,65,630], + 0xE098: [690,189,685,23,662], + 0xE0BB: [622,101,685,48,637], + 0xE0EC: [862,-120,685,48,637], + 0xE109: [781,279,327,10,286], + 0xE10A: [781,279,250,41,178], + 0xE14C: [660,158,857,48,777], + 0xE14D: [660,158,857,80,809], + 0xE14E: [661,157,685,44,609], + 0xE14F: [661,157,685,76,641], + 0xE28E: [622,101,685,48,637], + 0xE292: [662,0,1388,38,1350], + 0xE293: [763,260,1797,58,1739], + 0xE3C2: [662,156,685,48,637], + 0xE3C3: [627,135,685,48,637], + 0xE3C4: [627,135,685,48,637] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Operators"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Operators/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Bold/Main.js new file mode 100644 index 0000000..785a4bc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Bold/Main.js @@ -0,0 +1,152 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_SansSerif-bold'] = { + directory: 'SansSerif/Bold', + family: 'STIXMathJax_SansSerif', + weight: 'bold', + testString: '\u00A0\uD835\uDDD4\uD835\uDDD5\uD835\uDDD6\uD835\uDDD7\uD835\uDDD8\uD835\uDDD9\uD835\uDDDA\uD835\uDDDB\uD835\uDDDC\uD835\uDDDD\uD835\uDDDE\uD835\uDDDF\uD835\uDDE0\uD835\uDDE1', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x1D5D4: [690,0,690,25,665], + 0x1D5D5: [676,0,636,80,594], + 0x1D5D6: [691,19,723,49,688], + 0x1D5D7: [676,0,709,80,674], + 0x1D5D8: [676,0,635,80,597], + 0x1D5D9: [676,0,582,80,570], + 0x1D5DA: [691,19,746,37,671], + 0x1D5DB: [676,0,715,80,635], + 0x1D5DC: [676,0,440,65,375], + 0x1D5DD: [676,96,481,15,406], + 0x1D5DE: [676,0,712,80,707], + 0x1D5DF: [676,0,603,80,587], + 0x1D5E0: [676,0,913,80,833], + 0x1D5E1: [676,18,724,80,644], + 0x1D5E2: [692,18,778,35,743], + 0x1D5E3: [676,0,581,80,569], + 0x1D5E4: [691,176,779,35,754], + 0x1D5E5: [676,0,670,80,657], + 0x1D5E6: [691,19,554,35,511], + 0x1D5E7: [676,0,641,14,627], + 0x1D5E8: [676,19,699,75,624], + 0x1D5E9: [676,18,690,25,665], + 0x1D5EA: [676,15,997,30,967], + 0x1D5EB: [676,0,740,40,700], + 0x1D5EC: [676,0,694,20,674], + 0x1D5ED: [676,0,653,25,623], + 0x1D5EE: [473,14,489,23,428], + 0x1D5EF: [676,13,512,55,487], + 0x1D5F0: [473,14,462,25,442], + 0x1D5F1: [676,14,518,25,463], + 0x1D5F2: [473,13,452,25,433], + 0x1D5F3: [691,0,340,14,374], + 0x1D5F4: [473,206,504,28,490], + 0x1D5F5: [676,0,510,55,455], + 0x1D5F6: [688,0,245,50,195], + 0x1D5F7: [688,203,324,-57,269], + 0x1D5F8: [676,0,519,55,506], + 0x1D5F9: [676,0,235,55,180], + 0x1D5FA: [473,0,776,55,721], + 0x1D5FB: [473,0,510,55,455], + 0x1D5FC: [473,14,501,25,476], + 0x1D5FD: [473,205,512,55,487], + 0x1D5FE: [473,205,512,25,457], + 0x1D5FF: [473,0,411,55,406], + 0x1D600: [473,13,385,25,357], + 0x1D601: [630,12,386,7,371], + 0x1D602: [461,15,518,55,463], + 0x1D603: [461,14,462,15,447], + 0x1D604: [461,14,701,17,684], + 0x1D605: [461,0,506,20,486], + 0x1D606: [461,205,472,18,455], + 0x1D607: [461,0,441,21,417], + 0x1D756: [690,0,690,25,665], + 0x1D757: [676,0,636,80,594], + 0x1D758: [676,0,591,80,569], + 0x1D759: [690,0,720,40,680], + 0x1D75A: [676,0,635,80,597], + 0x1D75B: [676,0,653,25,623], + 0x1D75C: [676,0,715,80,635], + 0x1D75D: [691,19,778,35,743], + 0x1D75E: [676,0,440,65,375], + 0x1D75F: [676,0,712,80,707], + 0x1D760: [690,0,706,40,666], + 0x1D761: [676,0,913,80,833], + 0x1D762: [676,18,724,80,644], + 0x1D763: [676,0,640,35,605], + 0x1D764: [692,18,778,35,743], + 0x1D765: [676,0,715,80,635], + 0x1D766: [676,0,581,80,569], + 0x1D767: [691,19,778,35,743], + 0x1D768: [676,0,674,28,632], + 0x1D769: [676,0,641,14,627], + 0x1D76A: [691,0,748,20,728], + 0x1D76B: [676,0,800,25,775], + 0x1D76C: [676,0,740,40,700], + 0x1D76D: [691,0,806,15,791], + 0x1D76E: [691,0,752,32,720], + 0x1D76F: [664,30,735,45,685], + 0x1D770: [473,14,662,40,629], + 0x1D771: [692,205,512,39,487], + 0x1D772: [473,205,502,10,477], + 0x1D773: [692,14,502,25,477], + 0x1D774: [473,14,451,25,434], + 0x1D775: [692,205,500,28,488], + 0x1D776: [473,205,510,35,474], + 0x1D777: [692,14,500,23,477], + 0x1D778: [461,14,319,53,296], + 0x1D779: [473,0,527,55,512], + 0x1D77A: [692,14,554,18,520], + 0x1D77B: [461,205,550,39,517], + 0x1D77C: [473,14,492,55,472], + 0x1D77D: [692,205,501,28,489], + 0x1D77E: [473,14,501,25,476], + 0x1D77F: [461,14,594,10,572], + 0x1D780: [473,205,511,38,486], + 0x1D781: [473,205,498,26,486], + 0x1D782: [461,14,520,25,552], + 0x1D783: [461,14,479,6,472], + 0x1D784: [473,14,514,35,489], + 0x1D785: [473,205,634,25,609], + 0x1D786: [473,205,573,9,553], + 0x1D787: [473,205,680,25,699], + 0x1D788: [461,14,740,42,689], + 0x1D789: [691,14,501,25,476], + 0x1D78A: [473,14,462,25,440], + 0x1D78B: [692,14,536,35,522], + 0x1D78C: [473,14,570,14,554], + 0x1D78D: [692,205,634,25,609], + 0x1D78E: [473,205,494,25,469], + 0x1D78F: [461,14,848,6,839], + 0x1D7EC: [688,13,500,24,476], + 0x1D7ED: [688,0,500,82,334], + 0x1D7EE: [688,0,500,20,474], + 0x1D7EF: [688,13,500,18,479], + 0x1D7F0: [688,0,500,19,484], + 0x1D7F1: [676,13,500,13,483], + 0x1D7F2: [688,13,500,26,475], + 0x1D7F3: [676,0,500,35,471], + 0x1D7F4: [688,13,500,28,472], + 0x1D7F5: [688,13,500,26,475] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_SansSerif-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/BoldItalic/Main.js new file mode 100644 index 0000000..e30c743 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/BoldItalic/Main.js @@ -0,0 +1,153 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_SansSerif-bold-italic'] = { + directory: 'SansSerif/BoldItalic', + family: 'STIXMathJax_SansSerif', + weight: 'bold', + style: 'italic', + testString: '\u00A0\uE1F6\uE1F7\uE1F8\uE1F9\uE1FA\uE1FB\uE1FC\uE1FD\uE1FE\uE1FF\uD835\uDE3C\uD835\uDE3D\uD835\uDE3E\uD835\uDE3F', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xE1F6: [688,13,500,89,578], + 0xE1F7: [688,0,500,204,505], + 0xE1F8: [688,0,500,20,581], + 0xE1F9: [688,13,500,32,586], + 0xE1FA: [688,0,500,55,583], + 0xE1FB: [676,13,500,27,651], + 0xE1FC: [688,13,500,80,638], + 0xE1FD: [676,0,500,120,639], + 0xE1FE: [688,13,500,63,594], + 0xE1FF: [688,13,500,28,588], + 0x1D63C: [690,0,690,25,665], + 0x1D63D: [676,0,636,80,691], + 0x1D63E: [691,19,723,119,797], + 0x1D63F: [676,0,709,80,772], + 0x1D640: [676,0,635,80,728], + 0x1D641: [676,0,582,80,725], + 0x1D642: [691,19,746,107,785], + 0x1D643: [676,0,715,80,803], + 0x1D644: [676,0,440,79,534], + 0x1D645: [676,96,481,15,574], + 0x1D646: [676,0,712,80,816], + 0x1D647: [676,0,603,80,612], + 0x1D648: [676,0,913,80,1001], + 0x1D649: [676,18,724,80,812], + 0x1D64A: [692,18,778,106,840], + 0x1D64B: [676,0,581,80,695], + 0x1D64C: [691,176,779,105,839], + 0x1D64D: [676,0,670,80,698], + 0x1D64E: [691,19,554,66,637], + 0x1D64F: [676,0,641,157,785], + 0x1D650: [676,19,699,123,792], + 0x1D651: [676,18,690,193,833], + 0x1D652: [676,15,997,198,1135], + 0x1D653: [676,0,740,40,853], + 0x1D654: [676,0,694,188,842], + 0x1D655: [676,0,653,25,769], + 0x1D656: [473,14,489,48,507], + 0x1D657: [676,13,512,51,558], + 0x1D658: [473,14,462,71,524], + 0x1D659: [676,14,518,69,625], + 0x1D65A: [473,13,452,71,492], + 0x1D65B: [692,0,340,72,533], + 0x1D65C: [473,206,504,2,599], + 0x1D65D: [676,0,510,55,542], + 0x1D65E: [688,0,245,59,366], + 0x1D65F: [688,202,324,-90,440], + 0x1D660: [676,0,519,55,599], + 0x1D661: [676,0,235,55,348], + 0x1D662: [473,0,776,55,809], + 0x1D663: [473,0,510,55,542], + 0x1D664: [473,14,501,72,542], + 0x1D665: [473,205,512,3,559], + 0x1D666: [473,205,512,69,574], + 0x1D667: [473,0,411,55,519], + 0x1D668: [473,13,385,37,442], + 0x1D669: [631,12,386,98,447], + 0x1D66A: [462,15,518,81,569], + 0x1D66B: [462,14,462,129,561], + 0x1D66C: [462,14,701,131,798], + 0x1D66D: [462,0,506,20,582], + 0x1D66E: [462,204,472,-27,569], + 0x1D66F: [462,0,441,21,530], + 0x1D790: [690,0,690,25,665], + 0x1D791: [676,0,706,60,671], + 0x1D792: [676,0,602,60,705], + 0x1D793: [690,0,720,40,680], + 0x1D794: [676,0,683,60,708], + 0x1D795: [676,0,707,25,769], + 0x1D796: [676,0,748,60,783], + 0x1D797: [691,19,847,90,822], + 0x1D798: [676,0,435,50,505], + 0x1D799: [676,0,712,60,796], + 0x1D79A: [690,0,686,20,646], + 0x1D79B: [676,0,933,60,981], + 0x1D79C: [676,18,744,60,792], + 0x1D79D: [676,0,690,47,737], + 0x1D79E: [692,18,849,90,824], + 0x1D79F: [676,0,745,60,783], + 0x1D7A0: [676,0,581,60,675], + 0x1D7A1: [691,19,847,90,822], + 0x1D7A2: [676,0,696,21,748], + 0x1D7A3: [676,0,641,87,715], + 0x1D7A4: [691,0,671,91,799], + 0x1D7A5: [676,0,835,72,835], + 0x1D7A6: [676,0,740,20,833], + 0x1D7A7: [691,0,791,125,901], + 0x1D7A8: [691,0,816,47,816], + 0x1D7A9: [664,30,780,120,760], + 0x1D7AA: [473,14,678,47,703], + 0x1D7AB: [692,205,552,-12,581], + 0x1D7AC: [473,204,525,84,571], + 0x1D7AD: [692,14,507,30,547], + 0x1D7AE: [473,14,504,45,508], + 0x1D7AF: [692,205,480,49,539], + 0x1D7B0: [473,205,532,38,525], + 0x1D7B1: [692,14,560,65,553], + 0x1D7B2: [462,14,325,56,302], + 0x1D7B3: [473,0,537,38,582], + 0x1D7B4: [692,14,574,18,540], + 0x1D7B5: [462,205,594,-12,569], + 0x1D7B6: [473,14,525,41,565], + 0x1D7B7: [692,205,481,43,525], + 0x1D7B8: [473,14,543,45,515], + 0x1D7B9: [462,14,632,45,656], + 0x1D7BA: [473,205,560,-33,536], + 0x1D7BB: [473,205,517,52,554], + 0x1D7BC: [462,14,614,45,639], + 0x1D7BD: [462,14,523,42,547], + 0x1D7BE: [473,14,550,61,526], + 0x1D7BF: [473,205,683,55,659], + 0x1D7C0: [473,205,575,-80,626], + 0x1D7C1: [473,205,703,75,751], + 0x1D7C2: [461,14,756,64,732], + 0x1D7C3: [691,14,548,45,539], + 0x1D7C4: [473,14,468,45,470], + 0x1D7C5: [692,14,579,54,579], + 0x1D7C6: [473,10,646,-10,665], + 0x1D7C7: [692,205,678,48,654], + 0x1D7C8: [473,205,544,38,520], + 0x1D7C9: [462,14,889,40,912] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_SansSerif-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Italic/Main.js new file mode 100644 index 0000000..d85ea1c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Italic/Main.js @@ -0,0 +1,150 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_SansSerif-italic'] = { + directory: 'SansSerif/Italic', + family: 'STIXMathJax_SansSerif', + style: 'italic', + testString: '\u00A0\uE1B4\uE1B5\uE1B6\uE1B7\uE1B8\uE1B9\uE1BA\uE1BB\uE1BC\uE1BD\uE1BE\uE1BF\uE1C0\uE1C1', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xE1B4: [676,14,500,86,578], + 0xE1B5: [677,0,500,223,469], + 0xE1B6: [676,0,500,35,574], + 0xE1B7: [676,14,500,44,544], + 0xE1B8: [676,0,500,52,547], + 0xE1B9: [676,14,500,49,626], + 0xE1BA: [684,14,500,83,617], + 0xE1BB: [662,8,500,146,616], + 0xE1BC: [676,14,500,81,560], + 0xE1BD: [676,21,500,51,579], + 0xE1BE: [683,10,536,45,527], + 0xE1BF: [674,0,660,28,632], + 0xE1C0: [662,0,662,60,627], + 0xE1C1: [662,0,562,60,665], + 0xE1C2: [674,0,660,28,632], + 0xE1C3: [662,0,639,60,664], + 0xE1C4: [662,0,698,25,760], + 0xE1C5: [662,0,700,60,735], + 0xE1C6: [676,14,780,75,755], + 0xE1C7: [662,0,433,50,503], + 0xE1C8: [662,0,631,60,715], + 0xE1C9: [674,0,664,20,624], + 0xE1CA: [662,0,890,60,918], + 0xE1CB: [662,14,724,60,752], + 0xE1CC: [662,0,722,47,754], + 0xE1CD: [676,14,780,75,755], + 0xE1CE: [662,0,700,60,735], + 0xE1CF: [662,0,538,60,624], + 0xE1D0: [676,14,780,75,755], + 0xE1D1: [662,0,654,21,706], + 0xE1D2: [662,0,585,72,659], + 0xE1D3: [676,0,593,83,725], + 0xE1D4: [662,0,736,52,736], + 0xE1D5: [662,0,722,20,795], + 0xE1D6: [681,0,712,105,805], + 0xE1D7: [676,0,795,39,795], + 0xE1D8: [463,10,586,47,616], + 0xE1D9: [683,215,535,-12,559], + 0xE1DA: [463,216,503,84,527], + 0xE1DB: [683,10,497,30,537], + 0xE1DC: [463,10,494,35,484], + 0xE1DD: [683,213,429,32,454], + 0xE1DE: [463,215,493,38,486], + 0xE1DF: [683,10,518,65,511], + 0xE1E0: [464,10,296,56,268], + 0xE1E1: [464,0,472,38,517], + 0xE1E2: [683,11,536,18,502], + 0xE1E3: [453,215,561,-9,536], + 0xE1E4: [464,14,376,41,416], + 0xE1E5: [683,215,434,43,464], + 0xE1E6: [463,10,533,45,505], + 0xE1E7: [453,10,565,45,589], + 0xE1E8: [462,216,534,-33,510], + 0xE1E9: [463,212,436,52,500], + 0xE1EA: [453,10,607,45,625], + 0xE1EB: [453,10,468,42,486], + 0xE1EC: [463,10,514,61,490], + 0xE1ED: [464,216,665,55,641], + 0xE1EE: [463,215,514,-72,552], + 0xE1EF: [461,216,654,75,705], + 0xE1F0: [454,10,630,50,636], + 0xE1F1: [463,10,462,45,467], + 0xE1F2: [683,12,534,45,525], + 0xE1F3: [684,216,648,48,630], + 0xE1F4: [463,216,536,38,518], + 0xE1F5: [453,10,795,40,811], + 0x1D608: [674,0,666,31,635], + 0x1D609: [662,0,604,74,641], + 0x1D60A: [676,14,671,96,755], + 0x1D60B: [662,0,692,74,751], + 0x1D60C: [662,0,583,74,678], + 0x1D60D: [662,0,535,74,679], + 0x1D60E: [676,14,695,97,755], + 0x1D60F: [662,0,658,74,749], + 0x1D610: [662,0,401,59,512], + 0x1D611: [662,14,398,22,470], + 0x1D612: [662,0,634,74,729], + 0x1D613: [662,0,559,74,564], + 0x1D614: [662,0,843,75,933], + 0x1D615: [662,14,675,74,766], + 0x1D616: [676,14,714,99,779], + 0x1D617: [662,0,525,74,638], + 0x1D618: [676,175,716,99,779], + 0x1D619: [662,0,589,74,639], + 0x1D61A: [676,14,541,62,597], + 0x1D61B: [662,0,608,161,748], + 0x1D61C: [662,14,661,117,757], + 0x1D61D: [662,11,654,196,788], + 0x1D61E: [662,11,921,194,1057], + 0x1D61F: [662,0,700,31,806], + 0x1D620: [662,0,630,186,774], + 0x1D621: [662,0,637,28,763], + 0x1D622: [463,10,448,55,467], + 0x1D623: [684,10,496,74,535], + 0x1D624: [463,10,456,67,503], + 0x1D625: [684,11,494,72,600], + 0x1D626: [463,10,444,69,487], + 0x1D627: [683,0,336,101,526], + 0x1D628: [463,216,496,-7,575], + 0x1D629: [684,0,487,63,510], + 0x1D62A: [679,0,220,69,325], + 0x1D62B: [679,216,254,-118,354], + 0x1D62C: [684,0,453,63,556], + 0x1D62D: [684,0,205,61,313], + 0x1D62E: [464,0,756,65,775], + 0x1D62F: [464,0,487,63,510], + 0x1D630: [463,10,499,76,536], + 0x1D631: [464,216,498,14,538], + 0x1D632: [464,216,498,72,549], + 0x1D633: [464,0,336,63,439], + 0x1D634: [463,10,389,61,432], + 0x1D635: [580,10,291,96,376], + 0x1D636: [453,11,491,89,536], + 0x1D637: [453,14,474,143,555], + 0x1D638: [453,14,702,140,787], + 0x1D639: [453,0,482,30,544], + 0x1D63A: [453,216,484,-19,565], + 0x1D63B: [453,0,447,25,517] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_SansSerif-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Regular/Main.js new file mode 100644 index 0000000..b77b1ec --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Regular/Main.js @@ -0,0 +1,149 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'STIXMathJax_SansSerif', + testString: '\u00A0\uE17C\uE17D\uE17E\uE17F\uE180\uE181\uE182\uE183\uE184\uE185\uE186\uE187\uE188\uE189', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xE17C: [683,10,499,28,471], + 0xE17D: [674,0,666,31,635], + 0xE17E: [662,0,604,74,547], + 0xE17F: [662,0,535,74,523], + 0xE180: [674,0,666,31,635], + 0xE181: [662,0,583,74,540], + 0xE182: [662,0,637,28,603], + 0xE183: [662,0,658,74,584], + 0xE184: [676,14,714,30,684], + 0xE185: [662,0,401,45,356], + 0xE186: [662,0,634,74,630], + 0xE187: [674,0,666,31,635], + 0xE188: [662,0,843,75,768], + 0xE189: [662,14,675,74,601], + 0xE18A: [662,0,643,28,615], + 0xE18B: [676,14,714,30,684], + 0xE18C: [662,0,658,74,584], + 0xE18D: [662,0,525,74,512], + 0xE18E: [676,14,714,30,684], + 0xE18F: [662,0,624,26,594], + 0xE190: [662,0,608,15,593], + 0xE191: [676,0,690,24,666], + 0xE192: [662,0,716,23,693], + 0xE193: [662,0,700,31,669], + 0xE194: [681,0,724,12,712], + 0xE195: [676,0,744,29,715], + 0xE196: [463,10,537,28,532], + 0xE197: [683,215,498,41,471], + 0xE198: [463,216,474,27,455], + 0xE199: [683,10,499,28,471], + 0xE19A: [463,10,438,22,419], + 0xE19B: [683,213,416,33,408], + 0xE19C: [463,215,494,41,443], + 0xE19D: [683,10,446,21,425], + 0xE19E: [464,10,270,57,269], + 0xE19F: [464,0,472,82,472], + 0xE1A0: [683,11,489,8,478], + 0xE1A1: [453,215,487,44,482], + 0xE1A2: [464,14,460,30,427], + 0xE1A3: [683,215,418,33,410], + 0xE1A4: [463,10,499,28,471], + 0xE1A5: [453,10,507,7,487], + 0xE1A6: [462,216,498,48,470], + 0xE1A7: [463,212,416,33,414], + 0xE1A8: [453,10,526,28,542], + 0xE1A9: [453,10,426,2,410], + 0xE1AA: [463,10,503,41,463], + 0xE1AB: [464,216,632,34,600], + 0xE1AC: [463,215,399,-20,440], + 0xE1AD: [461,216,654,12,642], + 0xE1AE: [454,10,624,29,595], + 0xE1AF: [463,10,456,23,432], + 0xE1B0: [683,12,489,42,491], + 0xE1B1: [684,216,622,28,594], + 0xE1B2: [463,216,491,28,463], + 0xE1B3: [453,10,762,7,739], + 0x1D5A0: [674,0,666,31,635], + 0x1D5A1: [662,0,604,74,547], + 0x1D5A2: [676,14,671,27,637], + 0x1D5A3: [662,0,692,74,656], + 0x1D5A4: [662,0,583,74,540], + 0x1D5A5: [662,0,535,74,523], + 0x1D5A6: [676,14,695,27,627], + 0x1D5A7: [662,0,658,74,584], + 0x1D5A8: [662,0,401,45,356], + 0x1D5A9: [662,14,398,12,305], + 0x1D5AA: [662,0,634,74,630], + 0x1D5AB: [662,0,559,74,546], + 0x1D5AC: [662,0,843,75,768], + 0x1D5AD: [662,14,675,74,601], + 0x1D5AE: [676,14,714,30,684], + 0x1D5AF: [662,0,525,74,512], + 0x1D5B0: [676,175,716,30,691], + 0x1D5B1: [662,0,589,74,581], + 0x1D5B2: [676,14,541,32,481], + 0x1D5B3: [662,0,608,15,593], + 0x1D5B4: [662,14,661,69,592], + 0x1D5B5: [662,11,654,31,623], + 0x1D5B6: [662,11,921,29,892], + 0x1D5B7: [662,0,700,31,669], + 0x1D5B8: [662,0,630,21,609], + 0x1D5B9: [662,0,637,28,603], + 0x1D5BA: [463,10,448,35,391], + 0x1D5BB: [684,10,496,63,466], + 0x1D5BC: [463,10,456,23,432], + 0x1D5BD: [684,11,494,28,437], + 0x1D5BE: [463,10,444,23,428], + 0x1D5BF: [683,0,336,20,369], + 0x1D5C0: [463,216,496,21,467], + 0x1D5C1: [684,0,487,63,424], + 0x1D5C2: [679,0,220,64,156], + 0x1D5C3: [679,216,254,-74,185], + 0x1D5C4: [684,0,453,63,452], + 0x1D5C5: [684,0,205,61,144], + 0x1D5C6: [464,0,756,65,691], + 0x1D5C7: [464,0,487,63,424], + 0x1D5C8: [463,10,499,28,471], + 0x1D5C9: [464,216,498,67,470], + 0x1D5CA: [464,216,498,28,435], + 0x1D5CB: [464,0,336,63,328], + 0x1D5CC: [463,10,389,49,350], + 0x1D5CD: [580,10,291,1,287], + 0x1D5CE: [453,11,491,63,430], + 0x1D5CF: [453,14,474,31,443], + 0x1D5D0: [453,14,702,28,675], + 0x1D5D1: [453,0,482,30,452], + 0x1D5D2: [453,216,484,28,453], + 0x1D5D3: [453,0,447,25,417], + 0x1D7E2: [676,14,500,23,477], + 0x1D7E3: [677,0,500,108,302], + 0x1D7E4: [676,0,500,35,469], + 0x1D7E5: [676,14,500,31,441], + 0x1D7E6: [676,0,500,11,489], + 0x1D7E7: [676,14,500,36,458], + 0x1D7E8: [684,14,500,32,470], + 0x1D7E9: [662,8,500,38,451], + 0x1D7EA: [676,14,500,49,447], + 0x1D7EB: [676,21,500,28,466] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_SansSerif"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Script/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Script/BoldItalic/Main.js new file mode 100644 index 0000000..113ec53 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Script/BoldItalic/Main.js @@ -0,0 +1,96 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Script/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Script-bold-italic'] = { + directory: 'Script/BoldItalic', + family: 'STIXMathJax_Script', + weight: 'bold', + style: 'italic', + testString: '\u00A0\u210A\u210B\u2110\u2112\u211B\u212C\u212F\u2130\u2131\u2133\u2134\uD835\uDCD0\uD835\uDCD1\uD835\uDCD2', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210A: [462,224,819,27,771], + 0x210B: [699,21,1171,65,1154], + 0x2110: [699,21,997,47,977], + 0x2112: [699,21,1036,40,1015], + 0x211B: [699,21,1048,55,973], + 0x212C: [699,21,1060,55,985], + 0x212F: [462,14,726,35,648], + 0x2130: [699,21,826,95,791], + 0x2131: [699,21,1042,65,1025], + 0x2133: [699,21,1300,60,1245], + 0x2134: [462,14,848,35,780], + 0x1D4D0: [699,21,984,50,955], + 0x1D4D1: [699,21,1060,55,985], + 0x1D4D2: [699,21,912,60,877], + 0x1D4D3: [699,21,991,60,906], + 0x1D4D4: [699,21,826,95,791], + 0x1D4D5: [699,21,1042,65,1025], + 0x1D4D6: [699,21,834,82,799], + 0x1D4D7: [699,21,1171,65,1154], + 0x1D4D8: [699,21,997,47,977], + 0x1D4D9: [699,224,906,19,886], + 0x1D4DA: [699,21,1154,45,1130], + 0x1D4DB: [699,21,1036,40,1015], + 0x1D4DC: [699,21,1300,60,1245], + 0x1D4DD: [699,21,1095,60,1078], + 0x1D4DE: [699,21,809,72,749], + 0x1D4DF: [699,21,1025,55,994], + 0x1D4E0: [699,52,809,72,749], + 0x1D4E1: [699,21,1048,55,973], + 0x1D4E2: [699,21,816,81,781], + 0x1D4E3: [699,21,1030,65,1025], + 0x1D4E4: [699,21,964,60,904], + 0x1D4E5: [699,21,1040,60,1024], + 0x1D4E6: [699,21,1320,60,1306], + 0x1D4E7: [699,21,1033,64,1010], + 0x1D4E8: [699,224,989,60,963], + 0x1D4E9: [699,21,996,50,976], + 0x1D4EA: [462,14,942,35,865], + 0x1D4EB: [699,14,646,60,624], + 0x1D4EC: [462,14,764,35,683], + 0x1D4ED: [699,14,949,28,912], + 0x1D4EE: [462,14,726,35,648], + 0x1D4EF: [699,205,768,25,749], + 0x1D4F0: [462,224,819,27,771], + 0x1D4F1: [699,14,838,55,758], + 0x1D4F2: [698,14,558,40,534], + 0x1D4F3: [698,224,840,41,823], + 0x1D4F4: [699,14,810,55,730], + 0x1D4F5: [699,14,650,43,632], + 0x1D4F6: [462,14,1137,45,1057], + 0x1D4F7: [462,14,851,45,771], + 0x1D4F8: [462,14,848,35,780], + 0x1D4F9: [462,205,885,25,770], + 0x1D4FA: [462,205,913,35,833], + 0x1D4FB: [462,0,677,40,648], + 0x1D4FC: [557,14,562,51,449], + 0x1D4FD: [669,14,618,47,612], + 0x1D4FE: [449,14,842,31,762], + 0x1D4FF: [458,14,732,40,670], + 0x1D500: [458,14,1012,40,950], + 0x1D501: [462,14,820,63,740], + 0x1D502: [449,224,784,40,711], + 0x1D503: [493,14,782,61,702] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Script-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Script/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Script/Italic/Main.js new file mode 100644 index 0000000..4188aa1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Script/Italic/Main.js @@ -0,0 +1,84 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Script-italic'] = { + directory: 'Script/Italic', + family: 'STIXMathJax_Script', + style: 'italic', + testString: '\u00A0\u210A\u210B\u2110\u2112\u211B\u212C\u212F\u2130\u2131\u2133\u2134\uD835\uDC9C\uD835\uDC9E\uD835\uDC9F', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210A: [441,219,738,30,678], + 0x210B: [687,15,997,53,991], + 0x2110: [675,15,897,26,888], + 0x2112: [687,15,946,33,931], + 0x211B: [687,15,944,34,876], + 0x212C: [687,15,950,34,902], + 0x212F: [441,11,627,30,554], + 0x2130: [687,15,750,100,734], + 0x2131: [680,0,919,43,907], + 0x2133: [674,15,1072,38,1056], + 0x2134: [441,11,697,30,680], + 0x1D49C: [674,15,855,31,846], + 0x1D49E: [687,15,797,37,781], + 0x1D49F: [687,15,885,36,818], + 0x1D4A2: [687,15,773,83,740], + 0x1D4A5: [674,177,802,9,792], + 0x1D4A6: [687,15,1009,40,1004], + 0x1D4A9: [687,15,970,38,956], + 0x1D4AA: [680,15,692,82,663], + 0x1D4AB: [687,15,910,38,886], + 0x1D4AC: [680,38,692,82,663], + 0x1D4AE: [680,15,743,67,701], + 0x1D4AF: [687,15,912,43,907], + 0x1D4B0: [687,15,842,36,805], + 0x1D4B1: [687,15,932,35,922], + 0x1D4B2: [687,15,1078,35,1070], + 0x1D4B3: [687,15,891,36,873], + 0x1D4B4: [687,226,926,91,916], + 0x1D4B5: [687,15,932,59,912], + 0x1D4B6: [441,11,819,30,758], + 0x1D4B7: [687,12,580,47,559], + 0x1D4B8: [441,11,662,30,589], + 0x1D4B9: [687,11,845,30,827], + 0x1D4BB: [687,209,685,27,673], + 0x1D4BD: [687,11,753,38,690], + 0x1D4BE: [653,11,496,83,484], + 0x1D4BF: [653,219,730,9,718], + 0x1D4C0: [687,11,726,40,666], + 0x1D4C1: [687,11,579,48,571], + 0x1D4C2: [441,11,1038,49,978], + 0x1D4C3: [441,11,761,49,701], + 0x1D4C5: [441,209,773,23,694], + 0x1D4C6: [441,209,780,30,743], + 0x1D4C7: [444,0,580,48,572], + 0x1D4C8: [531,11,515,62,412], + 0x1D4C9: [658,11,551,30,532], + 0x1D4CA: [424,11,753,30,693], + 0x1D4CB: [441,11,618,30,582], + 0x1D4CC: [441,11,888,30,852], + 0x1D4CD: [441,11,752,65,675], + 0x1D4CE: [424,219,658,30,617], + 0x1D4CF: [478,11,691,52,617] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Script-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Script/Regular/Main.js new file mode 100644 index 0000000..3373e44 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Script/Regular/Main.js @@ -0,0 +1,83 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Script'] = { + directory: 'Script/Regular', + family: 'STIXMathJax_Script', + testString: '\u00A0\u210A\u210B\u2110\u2112\u211B\u212C\u212F\u2130\u2131\u2133\u2134\uD835\uDC9C\uD835\uDC9E\uD835\uDC9F', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x210A: [441,219,738,30,678], + 0x210B: [687,15,997,53,991], + 0x2110: [675,15,897,26,888], + 0x2112: [687,15,946,33,931], + 0x211B: [687,15,944,34,876], + 0x212C: [687,15,950,34,902], + 0x212F: [441,11,627,30,554], + 0x2130: [687,15,750,100,734], + 0x2131: [680,0,919,43,907], + 0x2133: [674,15,1072,38,1056], + 0x2134: [441,11,697,30,680], + 0x1D49C: [674,15,855,31,846], + 0x1D49E: [687,15,797,37,781], + 0x1D49F: [687,15,885,36,818], + 0x1D4A2: [687,15,773,83,740], + 0x1D4A5: [674,177,802,9,792], + 0x1D4A6: [687,15,1009,40,1004], + 0x1D4A9: [687,15,970,38,956], + 0x1D4AA: [680,15,692,82,663], + 0x1D4AB: [687,15,910,38,886], + 0x1D4AC: [680,38,692,82,663], + 0x1D4AE: [680,15,743,67,701], + 0x1D4AF: [687,15,912,43,907], + 0x1D4B0: [687,15,842,36,805], + 0x1D4B1: [687,15,932,35,922], + 0x1D4B2: [687,15,1078,35,1070], + 0x1D4B3: [687,15,891,36,873], + 0x1D4B4: [687,226,926,91,916], + 0x1D4B5: [687,15,932,59,912], + 0x1D4B6: [441,11,819,30,758], + 0x1D4B7: [687,12,580,47,559], + 0x1D4B8: [441,11,662,30,589], + 0x1D4B9: [687,11,845,30,827], + 0x1D4BB: [687,209,685,27,673], + 0x1D4BD: [687,11,753,38,690], + 0x1D4BE: [653,11,496,83,484], + 0x1D4BF: [653,219,730,9,718], + 0x1D4C0: [687,11,726,40,666], + 0x1D4C1: [687,11,579,48,571], + 0x1D4C2: [441,11,1038,49,978], + 0x1D4C3: [441,11,761,49,701], + 0x1D4C5: [441,209,773,23,694], + 0x1D4C6: [441,209,780,30,743], + 0x1D4C7: [444,0,580,48,572], + 0x1D4C8: [531,11,515,62,412], + 0x1D4C9: [658,11,551,30,532], + 0x1D4CA: [424,11,753,30,693], + 0x1D4CB: [441,11,618,30,582], + 0x1D4CC: [441,11,888,30,852], + 0x1D4CD: [441,11,752,65,675], + 0x1D4CE: [424,219,658,30,617], + 0x1D4CF: [478,11,691,52,617] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Script"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Bold/Main.js new file mode 100644 index 0000000..f10de86 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Bold/Main.js @@ -0,0 +1,45 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Shapes-bold'] = { + directory: 'Shapes/Bold', + family: 'STIXMathJax_Shapes', + weight: 'bold', + testString: '\u00A0\u2423\u25B7\u25C1\u25EC\uE000\uE001\uE0B0\uE0B1\uE0B2\uE10E\uE10F\uE28F\uE290', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2423: [31,120,500,40,460], + 0x25B7: [791,284,1043,70,1008], + 0x25C1: [791,284,1043,35,973], + 0x25EC: [811,127,1145,35,1110], + 0xE000: [610,25,1184,808,912], + 0xE001: [704,-75,1198,808,1224], + 0xE0B0: [752,-531,0,100,417], + 0xE0B1: [-50,271,0,100,417], + 0xE0B2: [-50,271,0,99,416], + 0xE10E: [405,-101,714,211,503], + 0xE10F: [399,-107,315,0,315], + 0xE28F: [175,0,325,-1,326], + 0xE290: [175,0,633,-1,634] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Shapes-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Shapes/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/BoldItalic/Main.js new file mode 100644 index 0000000..dd4c5cf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/BoldItalic/Main.js @@ -0,0 +1,34 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Shapes-bold-italic'] = { + directory: 'Shapes/BoldItalic', + family: 'STIXMathJax_Shapes', + weight: 'bold', + style: 'italic', + testString: '\u00A0\u2423', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2423: [31,120,500,40,460] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Shapes-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Shapes/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Regular/Main.js new file mode 100644 index 0000000..9881760 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Regular/Main.js @@ -0,0 +1,318 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'STIXMathJax_Shapes', + testString: '\u00A0\u2423\u2500\u2502\u2506\u2508\u250A\u251C\u2524\u252C\u2534\u253C\u2550\u2551\u2552', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2423: [16,120,500,40,460], + 0x2500: [340,-267,708,-11,719], + 0x2502: [910,303,708,317,390], + 0x2506: [910,303,708,317,390], + 0x2508: [340,-267,708,-11,719], + 0x250A: [910,303,708,317,390], + 0x251C: [910,303,708,317,719], + 0x2524: [910,303,708,-11,390], + 0x252C: [340,303,708,-11,719], + 0x2534: [910,-267,708,-11,719], + 0x253C: [910,303,708,-11,719], + 0x2550: [433,-174,708,-11,719], + 0x2551: [910,303,708,225,483], + 0x2552: [433,303,708,317,720], + 0x2553: [340,303,708,225,720], + 0x2554: [433,303,708,225,719], + 0x2555: [433,303,708,-11,390], + 0x2556: [340,303,708,-11,483], + 0x2557: [433,303,708,-11,483], + 0x2558: [910,-174,708,317,720], + 0x2559: [910,-267,708,225,720], + 0x255A: [910,-174,708,225,719], + 0x255B: [910,-174,708,-11,390], + 0x255C: [910,-267,708,-11,483], + 0x255D: [910,-174,708,-11,483], + 0x255E: [910,303,708,317,720], + 0x255F: [910,303,708,225,720], + 0x2560: [910,303,708,225,720], + 0x2561: [910,303,708,-11,390], + 0x2562: [910,303,708,-11,483], + 0x2563: [910,303,708,-11,483], + 0x2564: [433,303,708,-11,719], + 0x2565: [340,303,708,-11,719], + 0x2566: [433,303,708,-11,719], + 0x2567: [910,-174,708,-11,719], + 0x2568: [910,-267,708,-11,719], + 0x2569: [910,-174,708,-11,719], + 0x256A: [910,303,708,-11,719], + 0x256B: [910,303,708,-11,719], + 0x256C: [910,303,708,-11,719], + 0x2580: [910,-304,1213,0,1213], + 0x2584: [303,303,1213,0,1213], + 0x2588: [910,303,1213,0,1213], + 0x258C: [910,303,1212,0,606], + 0x2590: [910,303,1212,606,1212], + 0x2591: [860,258,1200,0,1200], + 0x2592: [874,273,1200,0,1200], + 0x2593: [874,273,1200,0,1200], + 0x25A2: [662,158,910,45,865], + 0x25A3: [662,158,910,45,865], + 0x25A4: [662,158,910,45,865], + 0x25A5: [662,158,910,45,865], + 0x25A6: [662,158,910,45,865], + 0x25A7: [662,158,910,45,865], + 0x25A8: [662,158,910,45,865], + 0x25A9: [662,158,910,45,865], + 0x25AA: [460,-40,484,32,452], + 0x25AB: [460,-40,484,32,452], + 0x25AC: [469,11,1020,38,982], + 0x25AD: [469,11,1020,38,982], + 0x25AE: [724,220,560,40,520], + 0x25AF: [724,220,560,40,520], + 0x25B0: [514,11,1140,28,1112], + 0x25B1: [514,11,1140,29,1111], + 0x25B4: [553,-28,660,27,632], + 0x25B5: [553,-28,660,27,632], + 0x25B7: [791,284,1043,70,1008], + 0x25BA: [555,50,930,65,885], + 0x25BB: [555,50,930,65,885], + 0x25BE: [477,48,660,27,632], + 0x25BF: [477,48,660,27,632], + 0x25C1: [791,284,1043,70,1008], + 0x25C4: [555,50,930,45,865], + 0x25C5: [555,50,930,45,865], + 0x25C6: [744,242,1064,39,1025], + 0x25C7: [744,242,1064,39,1025], + 0x25C8: [744,242,1064,39,1025], + 0x25C9: [623,119,842,50,792], + 0x25CB: [623,119,842,50,792], + 0x25CC: [680,176,910,29,881], + 0x25CD: [680,176,910,27,884], + 0x25CE: [623,119,842,50,792], + 0x25CF: [623,119,842,50,792], + 0x25D0: [623,119,842,50,792], + 0x25D1: [623,119,842,50,792], + 0x25D2: [623,119,842,50,792], + 0x25D3: [623,119,842,50,792], + 0x25D4: [623,119,842,50,792], + 0x25D5: [623,119,842,50,792], + 0x25D6: [680,176,580,66,494], + 0x25D7: [680,176,580,86,514], + 0x25D8: [662,158,910,45,865], + 0x25D9: [662,158,910,45,865], + 0x25DA: [662,-252,910,45,865], + 0x25DB: [252,158,910,45,865], + 0x25DC: [680,-252,910,27,455], + 0x25DD: [680,-252,910,455,884], + 0x25DE: [252,176,910,455,884], + 0x25DF: [252,176,910,26,455], + 0x25E0: [680,-251,910,27,884], + 0x25E1: [252,176,910,27,884], + 0x25E2: [662,158,911,45,865], + 0x25E3: [662,158,911,45,865], + 0x25E4: [662,158,911,45,865], + 0x25E5: [662,158,911,45,865], + 0x25E6: [444,-59,523,70,455], + 0x25E7: [662,157,910,45,865], + 0x25E8: [662,157,910,45,865], + 0x25E9: [662,157,910,45,865], + 0x25EA: [662,157,910,45,865], + 0x25EB: [662,157,910,45,865], + 0x25EC: [811,127,1145,35,1110], + 0x25ED: [811,127,1145,35,1110], + 0x25EE: [811,127,1145,35,1110], + 0x25F0: [662,158,910,45,865], + 0x25F1: [662,158,910,45,865], + 0x25F2: [662,158,910,45,865], + 0x25F3: [662,158,910,45,865], + 0x25F4: [623,119,842,50,792], + 0x25F5: [623,119,842,50,792], + 0x25F6: [623,119,842,50,792], + 0x25F7: [623,119,842,50,792], + 0x25F8: [662,158,911,45,865], + 0x25F9: [662,158,911,45,865], + 0x25FA: [662,158,911,45,865], + 0x25FB: [580,76,746,45,701], + 0x25FC: [580,76,746,45,701], + 0x25FD: [513,12,601,38,563], + 0x25FE: [514,11,601,38,563], + 0x25FF: [662,158,911,45,865], + 0x2605: [655,66,870,60,810], + 0x2606: [655,66,870,60,810], + 0x2609: [583,79,762,50,712], + 0x260C: [634,131,581,54,553], + 0x260E: [676,0,1000,32,967], + 0x2612: [662,158,910,45,865], + 0x2621: [630,35,619,70,549], + 0x2639: [728,82,1150,170,980], + 0x263A: [728,82,1150,170,980], + 0x263B: [728,82,1150,170,980], + 0x263C: [623,122,837,46,791], + 0x263D: [728,82,641,40,601], + 0x263E: [728,82,641,40,601], + 0x263F: [702,198,603,65,538], + 0x2640: [638,135,603,65,538], + 0x2641: [638,135,603,65,538], + 0x2642: [634,131,660,54,620], + 0x2643: [732,176,970,66,904], + 0x2644: [793,140,970,63,866], + 0x2646: [760,110,840,60,780], + 0x2647: [730,110,632,76,576], + 0x2648: [760,110,964,25,939], + 0x2649: [643,139,781,43,738], + 0x2664: [609,99,685,34,651], + 0x2665: [603,105,685,34,651], + 0x2666: [609,105,685,41,643], + 0x2667: [603,99,685,34,651], + 0x2669: [714,125,390,45,345], + 0x266A: [714,125,560,50,510], + 0x266B: [842,125,840,40,721], + 0x267E: [775,271,1186,70,1116], + 0x2680: [669,23,1032,170,862], + 0x2681: [669,23,1032,170,862], + 0x2682: [669,23,1032,170,862], + 0x2683: [669,23,1032,170,862], + 0x2684: [669,23,1032,170,862], + 0x2685: [669,23,1032,170,862], + 0x2686: [687,42,1032,152,881], + 0x2687: [687,42,1032,152,881], + 0x2688: [687,42,1032,152,881], + 0x2689: [687,42,1032,152,881], + 0x26A0: [1023,155,1510,25,1485], + 0x26A5: [784,281,660,54,620], + 0x26AA: [583,79,762,50,712], + 0x26AB: [583,79,762,50,712], + 0x26AC: [487,-14,565,46,519], + 0x26B2: [638,135,603,65,538], + 0x26E2: [773,80,700,94,606], + 0x2B12: [662,157,910,45,865], + 0x2B13: [662,157,910,45,865], + 0x2B14: [662,157,910,45,865], + 0x2B15: [662,157,910,45,865], + 0x2B16: [744,242,1064,39,1025], + 0x2B17: [744,242,1064,39,1025], + 0x2B18: [744,242,1064,39,1025], + 0x2B19: [744,242,1064,39,1025], + 0x2B1A: [662,157,910,45,865], + 0x2B1B: [780,180,1040,40,1000], + 0x2B1C: [780,180,1040,40,1000], + 0x2B1D: [332,-172,240,50,190], + 0x2B1E: [332,-172,240,50,190], + 0x2B1F: [690,105,910,36,874], + 0x2B20: [690,105,910,36,874], + 0x2B21: [680,178,910,82,828], + 0x2B22: [680,178,910,82,828], + 0x2B23: [633,127,926,24,902], + 0x2B24: [785,282,1207,70,1137], + 0x2B25: [581,96,779,45,734], + 0x2B26: [581,96,779,45,734], + 0x2B27: [609,105,544,40,504], + 0x2B28: [609,105,544,40,504], + 0x2B29: [488,-16,523,26,497], + 0x2B2A: [488,-16,357,26,331], + 0x2B2B: [488,-16,357,26,331], + 0x2B2C: [500,-4,842,50,792], + 0x2B2D: [500,-4,842,50,792], + 0x2B2E: [623,119,596,50,546], + 0x2B2F: [623,119,596,50,546], + 0x2B30: [448,-57,926,70,856], + 0x2B31: [739,232,926,60,866], + 0x2B32: [569,61,1200,52,1147], + 0x2B33: [449,-58,1574,55,1519], + 0x2B34: [450,-57,926,56,871], + 0x2B35: [450,-57,926,55,871], + 0x2B36: [450,-57,926,55,871], + 0x2B37: [449,-57,1412,55,1357], + 0x2B38: [449,-57,926,55,873], + 0x2B39: [450,-57,926,55,871], + 0x2B3A: [450,-57,926,55,871], + 0x2B3B: [449,-57,926,55,871], + 0x2B3C: [450,-57,926,55,871], + 0x2B3D: [450,-57,926,50,876], + 0x2B3E: [449,-57,926,55,871], + 0x2B3F: [449,-57,926,55,871], + 0x2B40: [565,-57,926,55,871], + 0x2B41: [508,-57,926,55,871], + 0x2B42: [449,141,926,55,871], + 0x2B43: [532,26,926,45,871], + 0x2B44: [532,26,926,45,871], + 0x2B45: [701,195,928,55,873], + 0x2B46: [701,195,928,55,873], + 0x2B47: [508,-57,926,55,871], + 0x2B48: [449,141,926,55,871], + 0x2B49: [508,-57,926,55,871], + 0x2B4A: [449,141,926,55,871], + 0x2B4B: [449,2,926,55,871], + 0x2B4C: [449,2,926,55,871], + 0x2B50: [619,30,794,60,734], + 0x2B51: [619,30,794,60,734], + 0x2B52: [597,13,700,35,665], + 0x2B53: [712,126,865,45,840], + 0x2B54: [712,127,865,45,840], + 0xE000: [610,25,1184,829,895], + 0xE001: [667,-41,1184,829,1211], + 0xE002: [1022,0,1192,30,1162], + 0xE099: [567,183,612,25,587], + 0xE0A7: [702,-506,376,30,346], + 0xE0A8: [662,156,496,114,371], + 0xE0A9: [497,-167,647,49,619], + 0xE0AA: [702,-506,376,30,346], + 0xE0AB: [662,156,496,114,371], + 0xE0AC: [702,-506,470,30,440], + 0xE0AD: [662,156,638,35,513], + 0xE0AE: [662,0,423,55,345], + 0xE0AF: [662,0,423,55,345], + 0xE0B0: [735,-531,0,100,400], + 0xE0B1: [-50,254,0,0,300], + 0xE0B2: [-50,254,0,0,300], + 0xE0D7: [583,79,762,50,712], + 0xE0E3: [638,134,842,35,807], + 0xE0E5: [690,189,523,72,450], + 0xE0E6: [690,189,523,72,450], + 0xE0E7: [811,127,772,35,737], + 0xE0E8: [532,26,1077,55,1022], + 0xE0E9: [547,41,685,48,636], + 0xE0EA: [661,158,910,45,865], + 0xE0EB: [567,58,716,45,671], + 0xE0ED: [819,312,511,192,319], + 0xE0EE: [751,156,926,85,841], + 0xE0EF: [547,41,686,49,637], + 0xE0F1: [66,0,390,48,342], + 0xE104: [409,-253,100,-64,164], + 0xE10C: [384,-122,400,69,330], + 0xE10D: [384,-122,400,69,330], + 0xE10E: [405,-101,652,193,459], + 0xE10F: [386,-120,315,0,315], + 0xE110: [432,-28,652,124,528], + 0xE111: [432,-28,652,124,528], + 0xE116: [214,-107,511,223,289], + 0xE117: [286,-220,229,61,168], + 0xE118: [271,-134,277,70,207], + 0xE119: [271,-134,277,70,207], + 0xE28F: [135,0,325,-1,326], + 0xE290: [135,0,633,-1,634], + 0xE291: [955,-820,325,-1,326], + 0xE3C7: [662,156,902,0,863], + 0xE3C8: [662,156,902,0,863] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Shapes"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Shapes/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size1/Regular/Main.js new file mode 100644 index 0000000..e3efd53 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size1/Regular/Main.js @@ -0,0 +1,137 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'STIXMathJax_Size1', + testString: '\u00A0\u02C6\u02C7\u02DC\u02F7\u0302\u0303\u0305\u030C\u0330\u0332\u0338\u203E\u20D0\u20D1', + 0x20: [0,0,250,0,0], + 0x28: [1066,164,468,139,382], + 0x29: [1066,164,468,86,329], + 0x2F: [1066,164,579,25,552], + 0x5B: [1066,164,383,180,363], + 0x5C: [1066,164,579,27,552], + 0x5D: [1066,164,383,20,203], + 0x7B: [1066,164,575,114,466], + 0x7D: [1066,164,575,109,461], + 0xA0: [0,0,250,0,0], + 0x2C6: [767,-554,560,0,560], + 0x2C7: [767,-554,560,0,560], + 0x2DC: [750,-598,558,-2,558], + 0x2F7: [-117,269,558,-2,558], + 0x302: [767,-554,560,0,560], + 0x303: [750,-598,560,0,560], + 0x305: [820,-770,1000,0,1000], + 0x30C: [767,-554,560,0,560], + 0x330: [-117,269,560,0,560], + 0x332: [-127,177,1000,0,1000], + 0x338: [532,21,0,-720,-157], + 0x203E: [820,-770,1000,0,1000], + 0x20D0: [749,-584,870,0,871], + 0x20D1: [749,-584,871,0,871], + 0x20D6: [735,-482,871,0,872], + 0x20D7: [736,-482,871,0,872], + 0x20EC: [-123,288,871,0,871], + 0x20ED: [-123,288,871,0,871], + 0x20EE: [-26,279,871,0,872], + 0x20EF: [-25,279,871,0,872], + 0x2140: [1500,-50,1259,55,1204], + 0x220F: [1500,-49,1355,50,1305], + 0x2210: [1500,-49,1355,50,1305], + 0x2211: [1499,-49,1292,90,1202], + 0x221A: [1552,295,1057,112,1089], + 0x221B: [1552,295,1057,112,1089], + 0x221C: [1552,295,1057,112,1089], + 0x222B: [2000,269,585,56,1035], + 0x222C: [2000,269,895,56,1345], + 0x222D: [2000,269,1205,56,1655], + 0x222E: [2000,269,635,56,1035], + 0x222F: [2000,269,945,56,1345], + 0x2230: [2000,269,1255,56,1655], + 0x2231: [2000,269,635,56,1035], + 0x2232: [2000,269,635,56,1035], + 0x2233: [2000,269,635,56,1035], + 0x22C0: [1500,-49,1265,60,1205], + 0x22C1: [1500,-49,1265,60,1205], + 0x22C2: [1510,-49,1265,118,1147], + 0x22C3: [1500,-39,1265,118,1147], + 0x2308: [1066,164,453,180,426], + 0x2309: [1066,164,453,25,273], + 0x230A: [1066,164,453,180,428], + 0x230B: [1066,164,453,27,273], + 0x23B4: [766,-544,1063,69,994], + 0x23B5: [139,83,1063,68,993], + 0x23D0: [676,14,200,67,133], + 0x23DC: [60,153,926,0,926], + 0x23DD: [777,-564,926,0,926], + 0x23DE: [136,89,926,0,925], + 0x23DF: [789,-564,926,0,925], + 0x23E0: [66,212,1460,0,1460], + 0x23E1: [842,-564,1460,0,1460], + 0x2772: [1066,164,566,205,539], + 0x2773: [1066,164,566,27,361], + 0x27E6: [1066,164,515,180,486], + 0x27E7: [1066,164,515,29,335], + 0x27E8: [1066,164,578,116,462], + 0x27E9: [1066,164,578,116,462], + 0x27EA: [1066,164,798,116,670], + 0x27EB: [1066,164,798,128,682], + 0x2983: [1066,164,712,114,587], + 0x2984: [1066,164,712,114,587], + 0x2985: [1066,164,632,135,546], + 0x2986: [1066,164,632,86,497], + 0x29F8: [1566,279,806,25,781], + 0x29F9: [1566,279,806,25,781], + 0x2A00: [1500,-49,1555,52,1503], + 0x2A01: [1500,-49,1555,52,1503], + 0x2A02: [1500,-49,1555,52,1503], + 0x2A03: [1500,-39,1265,118,1147], + 0x2A04: [1500,-39,1265,118,1147], + 0x2A05: [1500,-49,1153,82,1071], + 0x2A06: [1500,-49,1153,82,1071], + 0x2A07: [1500,-49,1530,60,1470], + 0x2A08: [1500,-49,1530,60,1470], + 0x2A09: [1500,-49,1482,60,1422], + 0x2A0A: [1500,-50,1292,90,1202], + 0x2A0B: [2000,269,914,56,1035], + 0x2A0C: [2000,269,1515,56,1965], + 0x2A0D: [2000,269,635,56,1035], + 0x2A0E: [2000,269,635,56,1035], + 0x2A0F: [2000,269,635,56,1035], + 0x2A10: [2000,269,635,56,1035], + 0x2A11: [2000,269,635,56,1035], + 0x2A12: [2000,269,735,56,1035], + 0x2A13: [2000,269,635,56,1035], + 0x2A14: [2000,269,844,56,1054], + 0x2A15: [2000,269,635,56,1035], + 0x2A16: [2000,269,735,56,1035], + 0x2A17: [2000,269,819,24,1039], + 0x2A18: [2000,269,635,56,1035], + 0x2A19: [2000,269,735,56,1035], + 0x2A1A: [2000,269,735,56,1035], + 0x2A1B: [2157,269,636,56,1036], + 0x2A1C: [2000,426,585,56,1035], + 0x2AFC: [867,363,690,133,557], + 0x2AFF: [867,363,410,100,310] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Size1"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size1/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size2/Regular/Main.js new file mode 100644 index 0000000..5311653 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size2/Regular/Main.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'STIXMathJax_Size2', + testString: '\u00A0\u02C6\u02C7\u02DC\u02F7\u0302\u0303\u0305\u030C\u0330\u0332\u0338\u203E\u20D0\u20D1', + 0x20: [0,0,250,0,0], + 0x28: [1566,279,589,139,503], + 0x29: [1566,279,608,114,478], + 0x2F: [1566,279,806,25,781], + 0x5B: [1566,279,459,190,422], + 0x5C: [1566,279,806,25,781], + 0x5D: [1566,279,459,37,269], + 0x7B: [1566,279,717,124,531], + 0x7D: [1566,279,717,186,593], + 0xA0: [0,0,250,0,0], + 0x2C6: [777,-564,979,0,979], + 0x2C7: [777,-564,979,0,979], + 0x2DC: [760,-608,977,-2,977], + 0x2F7: [-117,269,977,-2,977], + 0x302: [777,-564,979,0,979], + 0x303: [760,-608,979,0,979], + 0x305: [820,-770,1500,0,1500], + 0x30C: [777,-564,979,0,979], + 0x330: [-117,269,979,0,979], + 0x332: [-127,177,1500,0,1500], + 0x338: [662,0,0,-720,-6], + 0x203E: [820,-770,1500,0,1500], + 0x20D0: [749,-584,1307,0,1308], + 0x20D1: [749,-584,1308,0,1308], + 0x20D6: [735,-482,1308,0,1308], + 0x20D7: [735,-482,1308,0,1308], + 0x20EC: [-123,288,1308,0,1308], + 0x20ED: [-123,288,1308,0,1308], + 0x20EE: [-26,279,1308,0,1308], + 0x20EF: [-26,279,1308,0,1308], + 0x221A: [2056,404,1124,110,1157], + 0x221B: [2056,404,1124,110,1157], + 0x221C: [2056,404,1124,110,1157], + 0x2308: [1566,279,524,190,479], + 0x2309: [1566,279,526,47,336], + 0x230A: [1566,279,524,190,479], + 0x230B: [1566,279,526,47,336], + 0x23B4: [766,-544,1606,74,1532], + 0x23B5: [139,83,1606,74,1532], + 0x23D0: [690,189,266,100,166], + 0x23DC: [66,147,1460,0,1460], + 0x23DD: [785,-572,1460,0,1460], + 0x23DE: [143,81,1460,0,1460], + 0x23DF: [797,-573,1460,0,1460], + 0x23E0: [66,212,1886,0,1886], + 0x23E1: [842,-564,1886,0,1886], + 0x2772: [1566,279,688,230,651], + 0x2773: [1566,279,688,37,458], + 0x27E6: [1566,279,555,190,517], + 0x27E7: [1566,279,555,38,365], + 0x27E8: [1566,279,622,95,531], + 0x27E9: [1566,279,622,91,527], + 0x27EA: [1566,279,901,93,793], + 0x27EB: [1566,279,901,108,808], + 0x2983: [1566,279,827,122,692], + 0x2984: [1565,280,827,135,705], + 0x2985: [1566,282,793,155,693], + 0x2986: [1566,282,793,100,638], + 0x2AFC: [1586,289,906,133,773], + 0x2AFF: [1586,289,636,133,503] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Size2"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size2/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size3/Regular/Main.js new file mode 100644 index 0000000..f5c31c1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size3/Regular/Main.js @@ -0,0 +1,86 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'STIXMathJax_Size3', + testString: '\u00A0\u02C6\u02C7\u02DC\u02F7\u0302\u0303\u0305\u030C\u0330\u0332\u0338\u203E\u20D0\u20D1', + 0x20: [0,0,250,0,0], + 0x28: [2066,394,750,182,667], + 0x29: [2066,394,750,83,568], + 0x2F: [2066,394,1101,30,1071], + 0x5B: [2066,394,508,225,491], + 0x5C: [2066,394,1101,30,1071], + 0x5D: [2066,394,508,17,283], + 0x7B: [2066,394,906,143,717], + 0x7D: [2066,394,906,189,763], + 0xA0: [0,0,250,0,0], + 0x2C6: [777,-564,1460,0,1460], + 0x2C7: [777,-564,1460,0,1460], + 0x2DC: [774,-608,1458,-2,1458], + 0x2F7: [-117,283,1458,-2,1458], + 0x302: [777,-564,1460,0,1460], + 0x303: [774,-608,1460,0,1460], + 0x305: [820,-770,2000,0,2000], + 0x30C: [777,-564,1460,0,1460], + 0x330: [-117,283,1460,0,1460], + 0x332: [-127,177,2000,0,2000], + 0x338: [662,156,0,-543,-132], + 0x203E: [820,-770,2000,0,2000], + 0x20D0: [749,-584,1744,0,1744], + 0x20D1: [749,-584,1744,0,1744], + 0x20D6: [735,-482,1744,0,1744], + 0x20D7: [735,-482,1744,0,1744], + 0x20EC: [-123,288,1744,0,1744], + 0x20ED: [-123,288,1744,0,1744], + 0x20EE: [-26,279,1744,0,1744], + 0x20EF: [-26,279,1744,0,1744], + 0x221A: [2565,510,1076,112,1110], + 0x221B: [2565,510,1076,112,1110], + 0x221C: [2565,510,1076,112,1110], + 0x2308: [2066,394,565,225,550], + 0x2309: [2066,394,565,15,340], + 0x230A: [2066,394,565,225,550], + 0x230B: [2066,394,565,15,340], + 0x23B4: [766,-544,2147,78,2069], + 0x23B5: [139,83,2147,78,2069], + 0x23DC: [70,161,1886,0,1886], + 0x23DD: [803,-572,1886,0,1886], + 0x23DE: [157,86,1886,0,1886], + 0x23DF: [815,-572,1886,0,1886], + 0x23E0: [66,212,2312,0,2312], + 0x23E1: [842,-564,2312,0,2312], + 0x2772: [2066,393,842,265,790], + 0x2773: [2066,393,842,52,577], + 0x27E6: [2066,394,647,225,597], + 0x27E7: [2066,394,647,50,422], + 0x27E8: [2066,394,765,96,670], + 0x27E9: [2066,394,765,95,669], + 0x27EA: [2067,394,1091,104,955], + 0x27EB: [2067,394,1091,136,987], + 0x2983: [2066,394,1031,143,867], + 0x2984: [2066,394,1031,164,888], + 0x2985: [2066,393,1029,180,914], + 0x2986: [2066,393,1029,115,849] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Size3"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size3/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size4/Regular/Main.js new file mode 100644 index 0000000..f8368b3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size4/Regular/Main.js @@ -0,0 +1,83 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'STIXMathJax_Size4', + testString: '\u00A0\u02C6\u02C7\u02DC\u02F7\u0302\u0303\u0305\u030C\u0330\u0332\u0338\u203E\u20D0\u20D1', + 0x20: [0,0,250,0,0], + 0x28: [2566,509,808,124,732], + 0x29: [2566,509,808,76,684], + 0x2F: [2566,509,1309,16,1293], + 0x5B: [2566,509,661,295,634], + 0x5C: [2566,509,1309,16,1293], + 0x5D: [2566,509,661,27,366], + 0x7B: [2566,509,1076,173,882], + 0x7D: [2566,509,1076,194,903], + 0xA0: [0,0,250,0,0], + 0x2C6: [796,-573,1886,0,1886], + 0x2C7: [796,-573,1886,0,1886], + 0x2DC: [771,-608,1886,0,1886], + 0x2F7: [-117,280,1886,0,1886], + 0x302: [796,-573,1886,0,1886], + 0x303: [771,-608,1886,0,1886], + 0x305: [820,-770,2500,0,2500], + 0x30C: [796,-573,1886,0,1886], + 0x330: [-117,280,1886,0,1886], + 0x332: [-127,177,2500,0,2500], + 0x338: [731,228,0,-490,-169], + 0x203E: [820,-770,2500,0,2500], + 0x20D0: [749,-584,2180,0,2180], + 0x20D1: [749,-584,2180,0,2180], + 0x20D6: [735,-482,2180,0,2180], + 0x20D7: [735,-482,2180,0,2180], + 0x20EC: [-123,288,2180,0,2180], + 0x20ED: [-123,288,2180,0,2180], + 0x20EE: [-26,279,2180,0,2180], + 0x20EF: [-26,279,2180,0,2180], + 0x2308: [2566,509,682,295,655], + 0x2309: [2566,509,682,27,387], + 0x230A: [2566,509,682,295,655], + 0x230B: [2566,509,682,27,387], + 0x23B4: [766,-544,2692,84,2608], + 0x23B5: [139,83,2692,84,2608], + 0x23DC: [76,168,2328,0,2328], + 0x23DD: [817,-573,2328,0,2328], + 0x23DE: [175,90,2328,0,2328], + 0x23DF: [837,-572,2328,0,2328], + 0x23E0: [66,212,2738,0,2738], + 0x23E1: [842,-564,2738,0,2738], + 0x2772: [2566,509,1031,320,959], + 0x2773: [2566,509,1031,72,711], + 0x27E6: [2566,509,778,295,708], + 0x27E7: [2566,509,778,70,483], + 0x27E8: [2566,509,908,113,796], + 0x27E9: [2566,509,908,112,795], + 0x27EA: [2566,509,1273,126,1133], + 0x27EB: [2566,509,1273,140,1147], + 0x2983: [2566,509,1225,182,1052], + 0x2984: [2566,509,1225,173,1043], + 0x2985: [2566,509,1175,195,1050], + 0x2986: [2566,509,1175,194,1049] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Size4"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size4/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size5/Regular/Main.js new file mode 100644 index 0000000..5ec59de --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Size5/Regular/Main.js @@ -0,0 +1,122 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'STIXMathJax_Size5', + testString: '\u00A0\u02C6\u02C7\u02DC\u02F7\u0302\u0303\u0305\u030C\u0330\u0332\u0338\u203E\u20D0\u20D1', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2C6: [816,-572,2328,0,2328], + 0x2C7: [816,-572,2328,0,2328], + 0x2DC: [780,-617,2328,0,2328], + 0x2F7: [-117,280,2328,0,2328], + 0x302: [816,-572,2328,0,2328], + 0x303: [780,-617,2328,0,2328], + 0x305: [820,-770,3000,0,3000], + 0x30C: [816,-572,2328,0,2328], + 0x330: [-117,280,2328,0,2328], + 0x332: [-127,177,3000,0,3000], + 0x338: [960,454,0,-561,-123], + 0x203E: [820,-770,3000,0,3000], + 0x20D0: [749,-584,3000,0,3000], + 0x20D1: [749,-584,3000,0,3000], + 0x20D6: [735,-482,3000,0,3000], + 0x20D7: [735,-482,3000,0,3000], + 0x20EC: [-123,288,3000,0,3000], + 0x20ED: [-123,288,3000,0,3000], + 0x20EE: [-26,279,3000,0,3000], + 0x20EF: [-26,279,3000,0,3000], + 0x23B4: [766,-544,3237,90,3147], + 0x23B5: [139,83,3237,90,3147], + 0x23DC: [80,189,3237,0,3237], + 0x23DD: [842,-573,3237,0,3237], + 0x23DE: [181,90,3238,0,3238], + 0x23DF: [844,-573,3238,0,3238], + 0x23E0: [66,212,3164,0,3164], + 0x23E1: [842,-564,3164,0,3164], + 0xE000: [705,300,450,50,400], + 0xE001: [705,305,450,50,174], + 0xE002: [700,305,450,50,400], + 0xE003: [705,300,450,50,400], + 0xE004: [705,305,450,276,400], + 0xE005: [700,305,450,50,400], + 0xE006: [687,318,450,50,415], + 0xE007: [687,323,450,50,150], + 0xE008: [682,323,450,50,415], + 0xE009: [687,318,450,35,400], + 0xE00A: [687,323,450,300,400], + 0xE00B: [682,323,450,35,400], + 0xE00C: [705,300,640,260,600], + 0xE00D: [705,305,640,260,380], + 0xE00E: [705,305,640,40,380], + 0xE00F: [700,305,640,260,600], + 0xE010: [705,300,640,40,380], + 0xE011: [705,305,640,260,600], + 0xE012: [700,305,640,40,380], + 0xE013: [820,-770,1000,0,1000], + 0xE014: [-127,177,1000,0,1000], + 0xE015: [749,-584,870,0,871], + 0xE016: [634,-584,480,-10,490], + 0xE017: [749,-584,871,0,871], + 0xE018: [735,-482,871,0,872], + 0xE019: [736,-482,871,0,872], + 0xE01A: [-127,177,480,-10,490], + 0xE01B: [-123,288,871,0,871], + 0xE01C: [-123,288,871,0,871], + 0xE01D: [-26,279,871,0,872], + 0xE01E: [-25,279,871,0,872], + 0xE01F: [386,-120,315,0,315], + 0xE020: [405,-101,686,210,476], + 0xE021: [486,-20,315,0,315], + 0xE022: [1855,0,1184,112,895], + 0xE023: [635,0,1184,829,895], + 0xE024: [626,0,1184,829,1211], + 0xE025: [2140,0,1184,112,895], + 0xE026: [2135,0,1184,112,895], + 0xE027: [955,-554,1820,-25,1830], + 0xE028: [955,-820,633,-1,634], + 0xE029: [955,-554,1820,-10,1845], + 0xE02A: [140,261,1820,-25,1830], + 0xE02B: [-126,261,633,-1,634], + 0xE02C: [140,261,1820,-10,1845], + 0xE02D: [955,-342,1820,-25,1830], + 0xE02E: [955,-342,1820,-10,1845], + 0xE02F: [352,261,1820,-25,1830], + 0xE030: [352,261,1820,-10,1845], + 0xE031: [955,-512,897,-25,908], + 0xE032: [1218,-820,1844,-10,1854], + 0xE033: [955,-512,897,-11,922], + 0xE034: [182,261,897,-25,908], + 0xE035: [-126,524,1844,-10,1854], + 0xE036: [182,261,897,-11,922], + 0xE037: [405,-101,1033,229,805], + 0xE038: [405,-101,926,230,696], + 0xE039: [541,35,315,0,315], + 0xE03A: [700,301,600,35,566], + 0xE03B: [700,301,600,35,566], + 0xE03C: [1066,79,688,294,574], + 0xE03D: [610,25,688,294,394], + 0xE03E: [1086,59,688,115,394] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Size5"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size5/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Bold/Main.js new file mode 100644 index 0000000..dd69eec --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Bold/Main.js @@ -0,0 +1,53 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Symbols-bold'] = { + directory: 'Symbols/Bold', + family: 'STIXMathJax_Symbols', + weight: 'bold', + testString: '\u00A0\u2302\u2310\u2319\u2329\u232A\u2336\u233D\u233F\u23AF\u27C8\u27C9\u2980\u29B6\u29B7', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2302: [774,0,926,55,871], + 0x2310: [399,-108,750,65,685], + 0x2319: [399,-108,750,65,685], + 0x2329: [732,193,445,69,399], + 0x232A: [732,193,445,46,376], + 0x2336: [751,156,926,85,841], + 0x233D: [694,190,924,80,844], + 0x233F: [732,200,728,55,673], + 0x23AF: [297,-209,315,0,315], + 0x27C8: [547,13,1025,62,943], + 0x27C9: [547,13,1025,62,943], + 0x2980: [705,200,675,105,570], + 0x29B6: [634,130,864,50,814], + 0x29B7: [634,130,864,50,814], + 0x29B8: [634,130,864,50,814], + 0x29C0: [634,130,864,50,814], + 0x29C1: [634,130,864,50,814], + 0x29C4: [661,158,910,45,865], + 0x29C5: [661,158,910,45,865], + 0x29C6: [661,158,910,45,865], + 0x29C7: [661,158,910,45,865] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Symbols-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Symbols/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Regular/Main.js new file mode 100644 index 0000000..4c2e97d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Regular/Main.js @@ -0,0 +1,266 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'STIXMathJax_Symbols', + testString: '\u00A0\u2300\u2302\u2305\u2306\u230C\u230D\u230E\u230F\u2310\u2311\u2312\u2313\u2315\u2316', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0x2300: [487,-14,606,25,581], + 0x2302: [774,0,926,55,871], + 0x2305: [577,0,620,48,572], + 0x2306: [728,0,620,48,572], + 0x230C: [166,215,463,52,412], + 0x230D: [166,215,463,52,412], + 0x230E: [876,-495,463,52,412], + 0x230F: [876,-495,463,52,412], + 0x2310: [393,-115,600,48,552], + 0x2311: [439,-65,523,75,449], + 0x2312: [331,0,762,50,712], + 0x2313: [331,0,762,50,712], + 0x2315: [582,189,847,26,796], + 0x2316: [748,246,1100,53,1047], + 0x2317: [749,245,1100,53,1047], + 0x2318: [662,156,926,55,871], + 0x2319: [393,-115,600,48,552], + 0x231A: [671,69,685,64,622], + 0x231C: [662,-281,463,51,411], + 0x231D: [662,-281,463,51,411], + 0x231E: [164,217,463,51,411], + 0x231F: [164,217,463,52,412], + 0x2329: [713,213,400,77,335], + 0x232A: [713,213,400,65,323], + 0x232C: [692,186,926,83,843], + 0x232D: [592,88,986,55,931], + 0x232E: [450,140,624,-18,574], + 0x2332: [562,56,889,80,809], + 0x2336: [751,156,926,85,841], + 0x233D: [683,179,910,84,826], + 0x233F: [703,176,683,60,623], + 0x2340: [703,176,683,60,623], + 0x2353: [751,176,794,55,739], + 0x2370: [751,176,794,55,739], + 0x237C: [584,220,871,50,820], + 0x2393: [386,-120,913,85,841], + 0x2394: [633,127,926,24,902], + 0x23AF: [286,-220,315,0,315], + 0x23B6: [495,-11,926,55,871], + 0x23CE: [731,225,926,50,856], + 0x23E2: [558,53,1144,54,1090], + 0x23E3: [680,178,910,82,828], + 0x23E4: [286,-220,1094,47,1047], + 0x23E5: [527,20,1018,23,995], + 0x23E6: [434,-72,926,55,871], + 0x23E7: [606,97,798,194,733], + 0x27C0: [584,0,685,50,634], + 0x27C1: [811,127,1145,35,1110], + 0x27C2: [662,0,693,52,641], + 0x27C3: [529,27,685,60,625], + 0x27C4: [529,27,685,61,626], + 0x27C5: [702,198,455,55,400], + 0x27C6: [702,198,455,55,400], + 0x27C7: [536,29,620,31,589], + 0x27C8: [533,25,966,60,906], + 0x27C9: [533,25,966,60,906], + 0x27CB: [662,156,902,0,863], + 0x27CC: [806,213,325,20,325], + 0x27CD: [662,156,902,0,863], + 0x27D0: [744,242,1064,39,1025], + 0x27D1: [536,29,620,31,589], + 0x27D2: [536,31,620,48,572], + 0x27D3: [584,0,685,50,634], + 0x27D4: [584,0,685,50,634], + 0x27D5: [582,80,1019,40,965], + 0x27D6: [582,80,1019,54,979], + 0x27D7: [582,80,1228,40,1188], + 0x27D8: [718,213,866,50,816], + 0x27D9: [718,213,866,50,816], + 0x27DA: [662,0,1376,64,1312], + 0x27DB: [662,0,1376,64,1312], + 0x27DC: [403,-103,849,50,799], + 0x27DD: [450,-57,1574,55,1519], + 0x27DE: [450,-57,1574,55,1519], + 0x27DF: [693,187,502,101,401], + 0x27E0: [795,289,790,45,745], + 0x27E1: [589,87,764,45,719], + 0x27E2: [589,87,803,45,758], + 0x27E3: [589,87,803,45,758], + 0x27E4: [662,158,1182,45,1137], + 0x27E5: [662,158,1182,45,1137], + 0x27E6: [717,213,504,188,482], + 0x27E7: [717,213,504,22,316], + 0x27EA: [719,213,610,73,545], + 0x27EB: [719,213,610,65,537], + 0x27EC: [719,213,488,178,466], + 0x27ED: [719,213,488,22,310], + 0x2980: [695,189,594,85,509], + 0x2981: [487,-14,565,46,519], + 0x2982: [566,59,503,110,393], + 0x2983: [719,213,596,108,477], + 0x2984: [719,213,596,119,488], + 0x2985: [719,213,463,70,393], + 0x2986: [719,213,463,70,393], + 0x2987: [719,214,511,115,367], + 0x2988: [719,214,511,144,396], + 0x2989: [719,213,511,100,352], + 0x298A: [719,213,511,159,411], + 0x298B: [719,213,469,188,447], + 0x298C: [719,213,469,22,281], + 0x298D: [719,213,469,188,447], + 0x298E: [719,213,469,22,281], + 0x298F: [719,213,469,188,447], + 0x2990: [719,213,469,22,281], + 0x2991: [719,213,400,73,357], + 0x2992: [719,213,400,73,357], + 0x2993: [649,143,685,34,591], + 0x2994: [649,143,685,94,651], + 0x2995: [649,143,685,86,643], + 0x2996: [649,143,685,42,599], + 0x2999: [661,155,211,50,161], + 0x299A: [662,156,511,177,334], + 0x299B: [547,72,685,42,662], + 0x299C: [584,0,685,50,634], + 0x299D: [584,0,685,50,634], + 0x299E: [547,0,685,11,675], + 0x299F: [396,0,685,24,643], + 0x29A0: [517,13,685,57,654], + 0x29A1: [609,-12,685,77,607], + 0x29A2: [547,0,685,42,662], + 0x29A3: [547,0,685,42,662], + 0x29A4: [547,200,685,23,643], + 0x29A5: [547,200,685,42,662], + 0x29A6: [547,0,900,40,860], + 0x29A7: [547,0,900,40,860], + 0x29A8: [574,72,685,29,649], + 0x29A9: [574,72,685,36,656], + 0x29AA: [578,68,685,29,649], + 0x29AB: [578,68,685,36,656], + 0x29AC: [562,58,706,34,680], + 0x29AD: [562,58,706,26,672], + 0x29AE: [562,58,706,34,680], + 0x29AF: [562,58,708,26,672], + 0x29B0: [583,79,762,50,712], + 0x29B1: [717,79,762,50,712], + 0x29B2: [819,79,762,50,712], + 0x29B3: [832,79,762,50,712], + 0x29B4: [832,79,762,50,712], + 0x29B5: [623,119,910,24,886], + 0x29B6: [623,119,842,50,792], + 0x29B7: [623,119,842,50,792], + 0x29B8: [623,119,842,50,792], + 0x29B9: [623,119,842,50,792], + 0x29BA: [623,119,842,50,792], + 0x29BB: [623,119,842,50,792], + 0x29BC: [623,119,842,50,792], + 0x29BD: [882,179,842,50,792], + 0x29BE: [623,119,842,50,792], + 0x29BF: [623,119,842,50,792], + 0x29C0: [623,119,842,50,792], + 0x29C1: [623,119,842,50,792], + 0x29C2: [623,119,1091,50,1056], + 0x29C3: [623,119,1091,50,1056], + 0x29C4: [662,158,910,45,865], + 0x29C5: [662,158,910,45,865], + 0x29C6: [662,158,910,45,865], + 0x29C7: [662,158,910,45,865], + 0x29C8: [662,158,910,45,865], + 0x29C9: [712,207,1046,64,982], + 0x29CA: [1003,127,1145,35,1110], + 0x29CB: [811,259,1145,35,1110], + 0x29CC: [811,127,1145,35,1110], + 0x29CD: [811,127,1165,15,1150], + 0x29CE: [698,193,780,70,710], + 0x29CF: [531,25,857,48,777], + 0x29D0: [531,25,857,80,809], + 0x29D1: [582,80,810,93,716], + 0x29D2: [582,80,810,93,716], + 0x29D3: [582,80,810,93,716], + 0x29D4: [582,80,810,94,717], + 0x29D5: [582,80,810,93,716], + 0x29D6: [602,100,810,74,736], + 0x29D7: [602,100,810,74,736], + 0x29D8: [620,116,511,177,334], + 0x29D9: [620,116,511,176,333], + 0x29DA: [620,116,688,177,511], + 0x29DB: [620,116,688,177,511], + 0x29DC: [430,0,926,70,854], + 0x29DD: [653,0,926,70,854], + 0x29DE: [695,189,926,70,854], + 0x29DF: [403,-103,1145,50,1095], + 0x29E0: [662,157,910,45,865], + 0x29E1: [512,8,667,24,613], + 0x29E2: [414,0,790,64,726], + 0x29E3: [662,156,685,47,637], + 0x29E4: [842,156,685,47,637], + 0x29E5: [662,156,685,48,637], + 0x29E6: [584,78,798,60,738], + 0x29E7: [695,189,628,48,580], + 0x29E8: [811,127,1145,35,1110], + 0x29E9: [811,127,1145,35,1110], + 0x29EA: [744,241,762,32,730], + 0x29EC: [743,241,762,50,712], + 0x29ED: [743,241,762,50,712], + 0x29EE: [747,243,762,97,665], + 0x29EF: [747,243,762,97,665], + 0x29F0: [747,243,762,32,730], + 0x29F1: [747,243,762,32,730], + 0x29F2: [747,243,762,65,697], + 0x29F3: [747,243,762,65,697], + 0x29F4: [521,13,926,55,871], + 0x29F6: [765,80,520,94,426], + 0x29F7: [662,80,520,94,426], + 0x29FA: [532,25,685,64,621], + 0x29FB: [532,25,685,64,621], + 0x29FC: [713,213,459,77,394], + 0x29FD: [713,213,459,65,382], + 0x29FE: [540,36,762,93,669], + 0x29FF: [316,-190,762,93,669], + 0xE09A: [719,213,708,18,690], + 0xE09B: [719,213,708,18,690], + 0xE0BF: [836,236,636,50,586], + 0xE0C0: [836,236,636,50,586], + 0xE0C1: [836,236,636,50,586], + 0xE0C2: [836,236,636,50,586], + 0xE0C3: [386,-120,750,50,700], + 0xE0C4: [478,-28,750,50,700], + 0xE0C5: [478,-28,750,50,700], + 0xE0C6: [286,-220,750,50,700], + 0xE0C7: [402,-120,750,50,700], + 0xE0C8: [386,-120,1000,50,950], + 0xE0C9: [478,-28,1000,50,950], + 0xE0CA: [544,38,1000,50,950], + 0xE0CB: [386,-120,750,50,700], + 0xE0CC: [478,-28,750,50,700], + 0xE0CD: [544,38,750,50,700], + 0xE0CE: [836,236,636,50,586], + 0xE0CF: [836,236,636,50,586], + 0xE0D0: [836,236,636,50,586], + 0xE0D1: [836,236,636,50,586], + 0xE0D2: [692,186,926,83,843], + 0xE0D3: [633,127,926,24,902], + 0xE0D4: [633,127,926,24,902], + 0xE0D5: [286,-220,1000,50,950], + 0xE0D6: [386,-120,750,50,700] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Symbols"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Symbols/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Bold/Main.js new file mode 100644 index 0000000..01e2db0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Bold/Main.js @@ -0,0 +1,103 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Variants-bold'] = { + directory: 'Variants/Bold', + family: 'STIXMathJax_Variants', + weight: 'bold', + testString: '\u00A0\u019B\u2032\u2033\u2034\u2035\u2036\u2037\u2057\u2140\u2190\u2191\u2192\u2193\u21D1', + 0x20: [0,0,250,0,0], + 0x7C: [691,189,340,126,214], + 0xA0: [0,0,250,0,0], + 0x19B: [666,0,536,60,526], + 0x2032: [586,-12,394,44,350], + 0x2033: [586,-12,713,44,669], + 0x2034: [586,-12,1032,44,988], + 0x2035: [586,-12,394,44,350], + 0x2036: [586,-12,713,44,669], + 0x2037: [586,-12,1032,44,988], + 0x2057: [586,-12,1351,43,1306], + 0x2140: [691,0,780,55,725], + 0x2190: [451,-55,428,68,428], + 0x2191: [680,15,556,80,476], + 0x2192: [451,-55,428,0,360], + 0x2193: [680,15,556,80,476], + 0x21D1: [600,15,714,40,674], + 0x21D3: [600,15,714,40,674], + 0x2205: [729,74,584,36,548], + 0x220F: [676,0,734,27,707], + 0x2210: [676,0,734,27,707], + 0x2211: [676,0,690,39,649], + 0x2216: [732,193,518,45,473], + 0x221A: [943,-28,800,112,844], + 0x221D: [431,0,750,56,687], + 0x2223: [451,19,290,89,201], + 0x222B: [824,320,425,59,467], + 0x222C: [824,320,715,59,757], + 0x222D: [824,320,1005,59,1047], + 0x222E: [834,310,394,35,483], + 0x222F: [824,320,650,35,739], + 0x2230: [824,320,951,54,1047], + 0x2231: [824,320,484,54,553], + 0x2232: [824,320,445,35,534], + 0x2233: [824,320,456,35,545], + 0x2244: [543,45,750,68,683], + 0x2247: [648,144,750,68,683], + 0x2249: [598,64,750,68,683], + 0x2260: [687,183,750,68,682], + 0x2262: [747,243,750,68,682], + 0x2268: [728,293,750,80,670], + 0x2269: [728,293,750,80,670], + 0x226E: [672,166,750,80,670], + 0x226F: [672,166,750,80,670], + 0x2270: [742,236,750,80,670], + 0x2271: [742,236,750,80,670], + 0x2A0C: [824,320,1295,59,1337], + 0x2A0D: [824,320,511,59,553], + 0x2A0E: [824,320,511,59,553], + 0x2A0F: [824,320,592,59,634], + 0x2A10: [824,320,385,35,474], + 0x2A11: [824,320,484,54,553], + 0x2A12: [824,320,417,35,486], + 0x2A13: [824,320,424,54,493], + 0x2A14: [824,320,535,54,604], + 0x2A15: [824,320,416,35,505], + 0x2A16: [824,320,459,35,528], + 0x2A17: [824,320,824,45,884], + 0x2A18: [824,320,527,45,587], + 0x2A19: [824,320,567,45,632], + 0x2A1A: [824,320,567,45,632], + 0x2A1B: [959,320,479,45,521], + 0x2A1C: [824,455,411,35,511], + 0xE263: [422,10,523,26,496], + 0xE267: [425,0,523,111,420], + 0xE26B: [421,0,523,53,470], + 0xE26F: [424,198,523,31,478], + 0xE273: [420,198,523,42,496], + 0xE277: [421,198,523,49,474], + 0xE27B: [614,8,523,21,502], + 0xE27F: [421,198,523,8,507], + 0xE283: [606,12,523,31,493], + 0xE287: [421,202,523,25,499] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Variants-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Variants/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/BoldItalic/Main.js new file mode 100644 index 0000000..891b18d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/BoldItalic/Main.js @@ -0,0 +1,69 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Variants-bold-italic'] = { + directory: 'Variants/BoldItalic', + family: 'STIXMathJax_Variants', + weight: 'bold', + style: 'italic', + testString: '\u00A0\uE247\uE248\uE249\uE24A\uE24B\uE24C\uE24D\uE24E\uE24F\uE250\uE251\uE252\uE253\uE254', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xE247: [711,47,871,38,834], + 0xE248: [703,10,755,33,740], + 0xE249: [704,12,667,36,669], + 0xE24A: [696,0,802,30,808], + 0xE24B: [704,8,609,41,626], + 0xE24C: [696,0,645,34,738], + 0xE24D: [704,144,615,43,615], + 0xE24E: [696,24,849,22,858], + 0xE24F: [696,0,621,36,623], + 0xE250: [695,116,645,36,811], + 0xE251: [703,14,856,38,820], + 0xE252: [704,8,726,38,688], + 0xE253: [705,45,1186,38,1146], + 0xE254: [835,39,997,36,1098], + 0xE255: [707,10,772,43,782], + 0xE256: [696,0,645,36,731], + 0xE257: [704,145,778,43,737], + 0xE258: [697,13,869,36,831], + 0xE259: [705,7,667,36,699], + 0xE25A: [783,0,547,33,747], + 0xE25B: [700,14,787,33,936], + 0xE25C: [711,31,652,36,706], + 0xE25D: [711,34,956,36,1010], + 0xE25E: [710,14,720,36,781], + 0xE25F: [711,144,720,36,773], + 0xE260: [702,98,778,36,744], + 0xE264: [473,10,600,47,554], + 0xE268: [473,0,600,95,450], + 0xE26C: [473,0,600,54,531], + 0xE270: [463,217,600,31,547], + 0xE274: [450,217,600,30,564], + 0xE278: [450,218,600,25,561], + 0xE27C: [670,10,600,55,545], + 0xE280: [450,217,600,24,582], + 0xE284: [670,10,600,41,560], + 0xE288: [463,217,600,49,539] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Variants-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Variants/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Italic/Main.js new file mode 100644 index 0000000..54b776b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Italic/Main.js @@ -0,0 +1,68 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Variants-italic'] = { + directory: 'Variants/Italic', + family: 'STIXMathJax_Variants', + style: 'italic', + testString: '\u00A0\uE22D\uE22E\uE22F\uE230\uE231\uE232\uE233\uE234\uE235\uE236\uE237\uE238\uE239\uE23A', + 0x20: [0,0,250,0,0], + 0xA0: [0,0,250,0,0], + 0xE22D: [677,45,852,43,812], + 0xE22E: [670,3,724,35,709], + 0xE22F: [671,11,569,43,586], + 0xE230: [662,0,801,34,788], + 0xE231: [670,4,553,40,599], + 0xE232: [662,0,652,43,710], + 0xE233: [671,131,580,40,580], + 0xE234: [664,21,831,41,845], + 0xE235: [662,0,575,38,591], + 0xE236: [662,120,632,31,785], + 0xE237: [670,13,809,30,783], + 0xE238: [670,7,693,30,653], + 0xE239: [671,45,1166,40,1128], + 0xE23A: [795,37,957,40,1064], + 0xE23B: [669,10,737,38,729], + 0xE23C: [662,0,667,38,709], + 0xE23D: [671,131,744,43,704], + 0xE23E: [662,3,854,38,816], + 0xE23F: [671,0,634,38,671], + 0xE240: [721,0,509,41,730], + 0xE241: [672,13,817,37,950], + 0xE242: [677,33,638,33,680], + 0xE243: [685,32,956,33,998], + 0xE244: [672,13,692,38,739], + 0xE245: [675,131,719,34,763], + 0xE246: [664,94,752,38,714], + 0xE262: [460,11,570,56,514], + 0xE266: [460,0,570,100,415], + 0xE26A: [460,0,570,59,487], + 0xE26E: [461,217,570,40,513], + 0xE272: [450,217,570,17,542], + 0xE276: [450,218,570,23,536], + 0xE27A: [668,10,570,28,553], + 0xE27E: [450,217,570,40,543], + 0xE282: [668,10,570,50,519], + 0xE286: [460,217,570,23,526] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Variants-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Variants/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Regular/Main.js new file mode 100644 index 0000000..2bdea33 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Regular/Main.js @@ -0,0 +1,164 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'STIXMathJax_Variants', + testString: '\u00A0\u019B\u0264\u2032\u2033\u2034\u2035\u2036\u2037\u2057\u210F\u2140\u2190\u2191\u2192', + 0x20: [0,0,250,0,0], + 0x77: [80,244,515,22,493], + 0x7C: [690,189,320,127,193], + 0xA0: [0,0,250,0,0], + 0x19B: [668,0,520,55,516], + 0x264: [450,10,460,18,441], + 0x2032: [565,-28,340,44,295], + 0x2033: [565,-28,605,43,561], + 0x2034: [565,-28,873,43,829], + 0x2035: [565,-28,340,45,296], + 0x2036: [565,-28,605,44,561], + 0x2037: [565,-28,873,43,829], + 0x2057: [565,-28,1139,43,1096], + 0x210F: [683,10,579,47,547], + 0x2140: [662,0,718,50,668], + 0x2190: [449,-57,415,55,415], + 0x2191: [600,15,598,82,518], + 0x2192: [449,-57,415,0,360], + 0x2193: [600,15,598,80,516], + 0x21D1: [600,15,794,63,729], + 0x21D3: [600,15,794,65,731], + 0x21E0: [449,-58,463,70,393], + 0x21E2: [449,-58,463,70,393], + 0x2205: [729,74,523,28,502], + 0x2208: [516,13,402,64,338], + 0x2209: [662,156,685,60,625], + 0x220B: [516,13,402,64,338], + 0x220C: [662,156,685,60,625], + 0x220F: [662,0,694,30,664], + 0x2210: [662,0,694,30,664], + 0x2211: [662,0,694,38,656], + 0x2216: [710,222,523,46,478], + 0x221A: [943,11,737,67,767], + 0x221B: [946,-55,737,72,767], + 0x221C: [943,-55,737,72,767], + 0x221D: [428,0,685,41,646], + 0x2223: [451,19,266,100,166], + 0x2224: [451,19,404,23,381], + 0x2225: [451,11,446,90,356], + 0x2226: [451,19,609,23,586], + 0x2229: [602,31,620,10,610], + 0x222A: [602,31,620,10,610], + 0x222B: [824,320,366,59,408], + 0x222C: [824,320,596,59,638], + 0x222D: [824,320,826,59,868], + 0x222E: [824,320,397,35,486], + 0x222F: [824,320,548,35,637], + 0x2230: [824,320,876,54,972], + 0x2231: [824,320,478,54,547], + 0x2232: [824,320,441,35,530], + 0x2233: [824,320,475,35,564], + 0x223C: [362,-148,685,48,637], + 0x223E: [344,-130,1086,55,1031], + 0x223F: [461,-43,520,0,586], + 0x2241: [462,-48,685,48,637], + 0x2244: [529,35,685,48,637], + 0x2247: [606,117,685,48,637], + 0x2248: [475,-25,685,48,637], + 0x2249: [549,49,685,48,637], + 0x224C: [586,82,685,48,637], + 0x2260: [662,156,685,48,637], + 0x2262: [662,156,685,48,637], + 0x2268: [718,275,685,56,621], + 0x2269: [718,275,685,56,621], + 0x226D: [572,66,685,48,637], + 0x226E: [662,156,685,47,612], + 0x226F: [662,156,685,73,638], + 0x2270: [695,189,685,56,621], + 0x2271: [695,189,685,64,629], + 0x2272: [673,103,685,10,632], + 0x2273: [673,144,685,58,624], + 0x2274: [730,227,685,48,637], + 0x2275: [730,227,685,48,650], + 0x2278: [818,311,685,56,621], + 0x2279: [818,311,685,55,620], + 0x2280: [662,156,685,64,621], + 0x2281: [662,156,685,64,621], + 0x2284: [662,156,685,55,620], + 0x2285: [662,156,685,65,630], + 0x2288: [707,203,695,65,630], + 0x2289: [707,203,695,65,630], + 0x228A: [607,229,685,51,616], + 0x228B: [607,229,685,69,634], + 0x2293: [536,31,620,10,610], + 0x2294: [536,31,620,10,610], + 0x2295: [623,119,842,50,792], + 0x2297: [623,119,842,50,792], + 0x229C: [623,119,842,50,792], + 0x22DA: [768,262,685,60,625], + 0x22DB: [768,262,685,60,625], + 0x22E0: [803,212,685,60,625], + 0x22E1: [803,212,685,60,625], + 0x22EC: [695,189,685,54,611], + 0x22ED: [695,189,685,74,631], + 0x2322: [386,-120,685,48,637], + 0x2323: [386,-120,685,48,637], + 0x2423: [22,119,500,48,453], + 0x25A9: [662,158,910,45,865], + 0x2A0B: [812,332,706,43,661], + 0x2A0C: [812,332,1093,59,1135], + 0x2A0D: [812,332,467,59,509], + 0x2A0E: [812,332,467,59,509], + 0x2A0F: [812,332,529,59,571], + 0x2A10: [812,332,346,35,435], + 0x2A11: [812,332,478,54,547], + 0x2A12: [812,332,365,35,434], + 0x2A13: [812,332,384,54,453], + 0x2A14: [812,332,509,54,578], + 0x2A15: [812,332,396,35,485], + 0x2A16: [812,332,412,31,481], + 0x2A17: [812,332,771,45,831], + 0x2A18: [812,332,455,45,515], + 0x2A19: [812,332,504,45,569], + 0x2A1A: [812,332,504,45,569], + 0x2A1B: [935,332,453,45,495], + 0x2A1C: [812,455,376,59,509], + 0x2A3C: [633,129,463,51,411], + 0x2A3D: [633,129,463,51,411], + 0x2A9D: [647,166,685,49,627], + 0x2A9E: [615,166,685,54,676], + 0x2AAC: [625,137,685,60,625], + 0x2AAD: [625,137,685,60,625], + 0x2ACB: [718,321,685,64,629], + 0x2ACC: [718,321,685,74,639], + 0x2AEE: [451,19,404,23,381], + 0xE261: [422,10,523,41,481], + 0xE265: [421,0,523,127,405], + 0xE269: [421,0,523,68,455], + 0xE26D: [424,198,523,47,463], + 0xE271: [420,198,523,58,480], + 0xE275: [421,198,523,66,457], + 0xE279: [612,8,523,37,486], + 0xE27D: [421,198,523,25,490], + 0xE281: [606,12,523,47,477], + 0xE285: [421,200,523,41,483] +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"STIXMathJax_Variants"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Variants/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/fontdata-extra.js new file mode 100644 index 0000000..74e6994 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/fontdata-extra.js @@ -0,0 +1,933 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata-extra.js + * + * Adds extra stretchy characters to the STIX-Web fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS) { + var VERSION = "2.3"; + + var DELIMITERS = HTMLCSS.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETSBOLDITALIC = "STIXMathJax_Alphabets-bold-italic", + ALPHABETSBOLD = "STIXMathJax_Alphabets-bold", + ALPHABETSITALIC = "STIXMathJax_Alphabets-italic", + ALPHABETS = "STIXMathJax_Alphabets", + ARROWSBOLD = "STIXMathJax_Arrows-bold", + ARROWS = "STIXMathJax_Arrows", + DOUBLESTRUCKBOLDITALIC = "STIXMathJax_DoubleStruck-bold-italic", + DOUBLESTRUCKBOLD = "STIXMathJax_DoubleStruck-bold", + DOUBLESTRUCKITALIC = "STIXMathJax_DoubleStruck-italic", + DOUBLESTRUCK = "STIXMathJax_DoubleStruck", + FRAKTURBOLD = "STIXMathJax_Fraktur-bold", + FRAKTUR = "STIXMathJax_Fraktur", + LATINBOLDITALIC = "STIXMathJax_Latin-bold-italic", + LATINBOLD = "STIXMathJax_Latin-bold", + LATINITALIC = "STIXMathJax_Latin-italic", + LATIN = "STIXMathJax_Latin", + MAINBOLDITALIC = "STIXMathJax_Main-bold-italic", + MAINBOLD = "STIXMathJax_Main-bold", + MAINITALIC = "STIXMathJax_Main-italic", + MAIN = "STIXMathJax_Main", + MARKSBOLDITALIC = "STIXMathJax_Marks-bold-italic", + MARKSBOLD = "STIXMathJax_Marks-bold", + MARKSITALIC = "STIXMathJax_Marks-italic", + MARKS = "STIXMathJax_Marks", + MISCBOLDITALIC = "STIXMathJax_Misc-bold-italic", + MISCBOLD = "STIXMathJax_Misc-bold", + MISCITALIC = "STIXMathJax_Misc-italic", + MISC = "STIXMathJax_Misc", + MONOSPACE = "STIXMathJax_Monospace", + NORMALBOLDITALIC = "STIXMathJax_Normal-bold-italic", + NORMALBOLD = "STIXMathJax_Normal-bold", + NORMALITALIC = "STIXMathJax_Normal-italic", + OPERATORSBOLD = "STIXMathJax_Operators-bold", + OPERATORS = "STIXMathJax_Operators", + SANSSERIFBOLDITALIC = "STIXMathJax_SansSerif-bold-italic", + SANSSERIFBOLD = "STIXMathJax_SansSerif-bold", + SANSSERIFITALIC = "STIXMathJax_SansSerif-italic", + SANSSERIF = "STIXMathJax_SansSerif", + SCRIPTBOLDITALIC = "STIXMathJax_Script-bold-italic", + SCRIPTITALIC = "STIXMathJax_Script-italic", + SCRIPT = "STIXMathJax_Script", + SHAPESBOLDITALIC = "STIXMathJax_Shapes-bold-italic", + SHAPESBOLD = "STIXMathJax_Shapes-bold", + SHAPES = "STIXMathJax_Shapes", + SIZE1 = "STIXMathJax_Size1", + SIZE2 = "STIXMathJax_Size2", + SIZE3 = "STIXMathJax_Size3", + SIZE4 = "STIXMathJax_Size4", + SIZE5 = "STIXMathJax_Size5", + SYMBOLSBOLD = "STIXMathJax_Symbols-bold", + SYMBOLS = "STIXMathJax_Symbols", + VARIANTSBOLDITALIC = "STIXMathJax_Variants-bold-italic", + VARIANTSBOLD = "STIXMathJax_Variants-bold", + VARIANTSITALIC = "STIXMathJax_Variants-italic", + VARIANTS = "STIXMathJax_Variants"; + + var delim = { + 0x3D: + { + dir: H, + HW: [[0.589,MAIN]], + stretch: {rep:[0x3D,MAIN]} + }, + 0x2C7: + { + dir: H, + HW: [[0.311,MAIN], [0.560,SIZE1], [0.979,SIZE2], [1.460,SIZE3], [1.886,SIZE4], [2.328,SIZE5]] + }, + 0x2CD: + { + dir: H, + HW: [[0.312,MARKS]], + stretch: {rep:[0x2CD,MARKS]} + }, + 0x2F7: + { + dir: H, + HW: [[0.330,MARKS], [0.560,SIZE1], [0.979,SIZE2], [1.460,SIZE3], [1.886,SIZE4], [2.328,SIZE5]] + }, + 0x20D0: + { + dir: H, + HW: [[0.436,MARKS], [0.871,SIZE1], [1.308,SIZE2], [1.744,SIZE3], [2.180,SIZE4], [3.000,SIZE5]], + stretch: {left:[0xE015,SIZE5], rep:[0xE016,SIZE5]} + }, + 0x20D1: + { + dir: H, + HW: [[0.436,MARKS], [0.871,SIZE1], [1.308,SIZE2], [1.744,SIZE3], [2.180,SIZE4], [3.000,SIZE5]], + stretch: {rep:[0xE016,SIZE5], right:[0xE017,SIZE5]} + }, + 0x20D6: + { + dir: H, + HW: [[0.436,MARKS], [0.872,SIZE1], [1.308,SIZE2], [1.744,SIZE3], [2.180,SIZE4], [3.000,SIZE5]], + stretch: {left:[0xE018,SIZE5], rep:[0xE016,SIZE5]} + }, + 0x20E1: + { + dir: H, + HW: [[0.478,MARKS]], + stretch: {left:[0xE018,SIZE5], rep:[0xE016,SIZE5], right:[0xE019,SIZE5]} + }, + 0x20EC: + { + dir: H, + HW: [[0.436,MARKS], [0.871,SIZE1], [1.308,SIZE2], [1.744,SIZE3], [2.180,SIZE4], [3.000,SIZE5]], + stretch: {rep:[0xE01A,SIZE5], right:[0xE01B,SIZE5]} + }, + 0x20ED: + { + dir: H, + HW: [[0.436,MARKS], [0.871,SIZE1], [1.308,SIZE2], [1.744,SIZE3], [2.180,SIZE4], [3.000,SIZE5]], + stretch: {left:[0xE01C,SIZE5], rep:[0xE01A,SIZE5]} + }, + 0x20EE: + { + dir: H, + HW: [[0.436,MARKS], [0.872,SIZE1], [1.308,SIZE2], [1.744,SIZE3], [2.180,SIZE4], [3.000,SIZE5]], + stretch: {left:[0xE01D,SIZE5], rep:[0xE01A,SIZE5]} + }, + 0x20EF: + { + dir: H, + HW: [[0.436,MARKS], [0.872,SIZE1], [1.308,SIZE2], [1.744,SIZE3], [2.180,SIZE4], [3.000,SIZE5]], + stretch: {rep:[0xE01A,SIZE5], right:[0xE01E,SIZE5]} + }, + 0x2140: + { + dir: V, + HW: [[1.022,DOUBLESTRUCK], [1.450,SIZE1]] + }, + 0x219E: + { + dir: H, + HW: [[0.786,MAIN]], + stretch: {left:[0x219E,MAIN], rep:[0x2212,MAIN]} + }, + 0x219F: + { + dir: V, + HW: [[0.816,ARROWS]], + stretch: {ext:[0x23D0,MAIN], top:[0x219F,ARROWS]} + }, + 0x21A0: + { + dir: H, + HW: [[0.786,MAIN]], + stretch: {right:[0x21A0,MAIN], rep:[0x2212,MAIN]} + }, + 0x21A1: + { + dir: V, + HW: [[0.816,ARROWS]], + stretch: {ext:[0x23D0,MAIN], bot:[0x21A1,ARROWS]} + }, + 0x21A4: + { + dir: H, + HW: [[0.787,ARROWS]], + stretch: {left:[0x2190,MAIN], rep:[0x23AF,SYMBOLS], right:[0x27DE,SYMBOLS]} + }, + 0x21A5: + { + dir: V, + HW: [[0.816,ARROWS]], + stretch: {bot:[0x5F,MAIN,0.050,-0.010,0.800], ext:[0x23D0,MAIN], top:[0x2191,MAIN]} + }, + 0x21A6: + { + dir: H, + HW: [[0.787,MAIN]], + stretch: {left:[0x27DD,SYMBOLS], rep:[0x23AF,SYMBOLS], right:[0x2192,MAIN]} + }, + 0x21A7: + { + dir: V, + HW: [[0.816,ARROWS]], + stretch: {top:[0x22A4,MAINBOLD,0.040,0.000,0.600], ext:[0x23D0,MAIN], bot:[0x2193,MAIN]} + }, + 0x21A8: + { + dir: V, + HW: [[0.816,ARROWS]], + stretch: {top:[0x2191,MAIN], ext:[0x23D0,MAIN], bot:[0x2913,ARROWS]} + }, + 0x21A9: + { + dir: H, + HW: [[0.786,MAIN]], + stretch: {left:[0x2190,MAIN], rep:[0x2212,MAIN], right:[0xE0B5,ARROWS]} + }, + 0x21AA: + { + dir: H, + HW: [[0.786,MAIN]], + stretch: {left:[0xE0B4,ARROWS], rep:[0x2212,MAIN], right:[0x2192,MAIN]} + }, + 0x21B0: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {top:[0x21B0,MAIN], ext:[0x23D0,MAIN,0.152]} + }, + 0x21B1: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {top:[0x21B1,MAIN], ext:[0x23D0,MAIN,-0.195]} + }, + 0x21B2: + { + dir: V, + HW: [[0.816,ARROWS]], + stretch: {bot:[0x21B2,ARROWS], ext:[0x23D0,MAIN,0.152]} + }, + 0x21B3: + { + dir: V, + HW: [[0.816,ARROWS]], + stretch: {bot:[0x21B3,ARROWS], ext:[0x23D0,MAIN,-0.195]} + }, + 0x21B4: + { + dir: H, + HW: [[0.786,ARROWS]], + stretch: {rep:[0x2212,MAIN,0.000,0.400], right:[0x21B4,ARROWS]} + }, + 0x21B5: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {bot:[0x21B5,ARROWS], ext:[0x23D0,MAIN,0.570]} + }, + 0x21BC: + { + dir: H, + HW: [[0.847,MAIN]], + stretch: {left:[0x21BC,MAIN], rep:[0x23AF,SYMBOLS]} + }, + 0x21BD: + { + dir: H, + HW: [[0.847,MAIN]], + stretch: {left:[0x21BD,MAIN], rep:[0x23AF,SYMBOLS]} + }, + 0x21BE: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {ext:[0x23D0,MAIN], top:[0x21BE,MAIN]} + }, + 0x21BF: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {ext:[0x23D0,MAIN], top:[0x21BF,MAIN]} + }, + 0x21C0: + { + dir: H, + HW: [[0.847,MAIN]], + stretch: {rep:[0x23AF,SYMBOLS], right:[0x21C0,MAIN]} + }, + 0x21C1: + { + dir: H, + HW: [[0.847,MAIN]], + stretch: {right:[0x21C1,MAIN], rep:[0x2212,MAIN]} + }, + 0x21C2: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {bot:[0x21C2,MAIN], ext:[0x23D0,MAIN]} + }, + 0x21C3: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {bot:[0x21C3,MAIN], ext:[0x23D0,MAIN]} + }, + 0x21CB: + { + dir: H, + HW: [[0.786,MAIN]], + stretch: {left:[0x296A,ARROWS], rep:[0x3D,MAIN], right:[0x296D,ARROWS]} + }, + 0x21CC: + { + dir: H, + HW: [[0.786,MAIN]], + stretch: {left:[0x296B,ARROWS], rep:[0x3D,MAIN], right:[0x296C,ARROWS]} + }, + 0x21DA: + { + dir: H, + HW: [[0.806,MAIN]], + stretch: {left:[0x21DA,MAIN], rep:[0xE021,SIZE5]} + }, + 0x21DB: + { + dir: H, + HW: [[0.806,MAIN]], + stretch: {rep:[0xE021,SIZE5], right:[0x21DB,MAIN]} + }, + 0x21E0: + { + dir: H, + HW: [[0.806,MAIN]], + stretch: {left:[0x21E0,MAIN], rep:[0xE121,ARROWS]} + }, + 0x21E1: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {ext:[0xE12D,ARROWS], top:[0x21E1,ARROWS]} + }, + 0x21E2: + { + dir: H, + HW: [[0.806,MAIN]], + stretch: {right:[0x21E2,MAIN], rep:[0xE12E,ARROWS]} + }, + 0x21E3: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {ext:[0xE12C,ARROWS], bot:[0x21E3,ARROWS]} + }, + 0x21E4: + { + dir: H, + HW: [[0.806,ARROWS]], + stretch: {left:[0x21E4,ARROWS], rep:[0x2212,MAIN]} + }, + 0x21E5: + { + dir: H, + HW: [[0.806,ARROWS]], + stretch: {right:[0x21E5,ARROWS], rep:[0x2212,MAIN]} + }, + 0x21FD: + { + dir: H, + HW: [[0.806,ARROWS]], + stretch: {left:[0x21FD,ARROWS], rep:[0x2212,MAIN]} + }, + 0x21FE: + { + dir: H, + HW: [[0.806,ARROWS]], + stretch: {right:[0x21FE,ARROWS], rep:[0x2212,MAIN]} + }, + 0x21FF: + { + dir: H, + HW: [[0.886,ARROWS]], + stretch: {left:[0x21FD,ARROWS], rep:[0x2212,MAIN], right:[0x21FE,ARROWS]} + }, + 0x220F: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[1.022,OPERATORS], [1.450,SIZE1]] + }, + 0x221B: + { + dir: V, + HW: [[1.232,OPERATORS], [1.847,SIZE1], [2.460,SIZE2], [3.075,SIZE3]], + stretch: {bot:[0xE025,SIZE5], ext:[0xE023,SIZE5], top:[0xE024,SIZE5]} + }, + 0x221C: + { + dir: V, + HW: [[1.232,OPERATORS], [1.847,SIZE1], [2.460,SIZE2], [3.075,SIZE3]], + stretch: {bot:[0xE026,SIZE5], ext:[0xE023,SIZE5], top:[0xE024,SIZE5]} + }, + 0x222B: + { + dir: H, + HW: [[0.607,MAIN], [0.979,SIZE1]], + stretch: {top:[0xE03C,SIZE5], rep:[0xE03D,SIZE5], bot:[0xE03E,SIZE5]} + }, + 0x222C: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x222D: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x222E: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x222F: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2230: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2231: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2232: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2233: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x22C0: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x22C1: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x22C2: + { + dir: V, + HW: [[1.032,OPERATORS], [1.461,SIZE1]] + }, + 0x22C3: + { + dir: V, + HW: [[1.032,OPERATORS], [1.461,SIZE1]] + }, + 0x23AA: + { + dir: V, + HW: [[1.010,SIZE5,null,0xE00D]], + stretch: {top:[0xE00D,SIZE5], ext:[0xE00D,SIZE5], bot:[0xE00D,SIZE5]} + }, + 0x23B4: + { + dir: H, + HW: [[0.816,MAIN], [0.925,SIZE1], [1.458,SIZE2], [1.991,SIZE3], [2.524,SIZE4], [3.057,SIZE5]], + stretch: {left:[0xE027,SIZE5], rep:[0xE028,SIZE5], right:[0xE029,SIZE5]} + }, + 0x23B5: + { + dir: H, + HW: [[0.816,MAIN], [0.925,SIZE1], [1.458,SIZE2], [1.991,SIZE3], [2.524,SIZE4], [3.057,SIZE5]], + stretch: {left:[0xE02A,SIZE5], rep:[0xE02B,SIZE5], right:[0xE02C,SIZE5]} + }, + 0x23D0: + { + dir: V, + HW: [[0.304,MAIN], [0.690,SIZE1], [0.879,SIZE2], [1.350,SIZE2,1.536], [1.827,SIZE2,2.078], [2.303,SIZE2,2.620], [2.780,SIZE2,3.162]], + stretch: {ext:[0x2223,MAIN]} + }, + 0x23DC: + { + dir: H, + HW: [[1.000,MAIN], [0.926,SIZE1], [1.460,SIZE2], [1.886,SIZE3], [2.328,SIZE4], [3.237,SIZE5]], + stretch: {left:[0xE02D,SIZE5], rep:[0xE028,SIZE5], right:[0xE02E,SIZE5]} + }, + 0x23DD: + { + dir: H, + HW: [[1.000,MAIN], [0.926,SIZE1], [1.460,SIZE2], [1.886,SIZE3], [2.328,SIZE4], [3.237,SIZE5]], + stretch: {left:[0xE02F,SIZE5], rep:[0xE02B,SIZE5], right:[0xE030,SIZE5]} + }, + 0x23E0: + { + dir: H, + HW: [[1.000,MAIN], [1.460,SIZE1], [1.886,SIZE2], [2.312,SIZE3], [2.738,SIZE4], [3.164,SIZE5]] + }, + 0x23E1: + { + dir: H, + HW: [[1.000,MAIN], [1.460,SIZE1], [1.886,SIZE2], [2.312,SIZE3], [2.738,SIZE4], [3.164,SIZE5]] + }, + 0x2772: + { + dir: V, + HW: [[0.932,MISC], [1.230,SIZE1], [1.845,SIZE2], [2.459,SIZE3], [3.075,SIZE4]] + }, + 0x2773: + { + dir: V, + HW: [[0.932,MISC], [1.230,SIZE1], [1.845,SIZE2], [2.459,SIZE3], [3.075,SIZE4]] + }, + 0x27E6: + { + dir: V, + HW: [[0.930,SYMBOLS], [1.230,SIZE1], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {top:[0x2553,SHAPES], ext:[0x2551,SHAPES], bot:[0x2559,SHAPES]} + }, + 0x27E7: + { + dir: V, + HW: [[0.930,SYMBOLS], [1.230,SIZE1], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {top:[0x2556,SHAPES], ext:[0x2551,SHAPES], bot:[0x255C,SHAPES]} + }, + 0x27EA: + { + dir: V, + HW: [[0.932,SYMBOLS], [1.230,SIZE1], [1.845,SIZE2], [2.461,SIZE3], [3.075,SIZE4]] + }, + 0x27EB: + { + dir: V, + HW: [[0.932,SYMBOLS], [1.230,SIZE1], [1.845,SIZE2], [2.461,SIZE3], [3.075,SIZE4]] + }, + 0x27F0: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {ext:[0xE037,SIZE5], top:[0x27F0,ARROWS]} + }, + 0x27F1: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {bot:[0x27F1,ARROWS], ext:[0xE037,SIZE5]} + }, + 0x2906: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {left:[0x21D0,MAIN], rep:[0x3D,MAIN], right:[0x2AE4,OPERATORS,0.000,-0.090]} + }, + 0x2907: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {left:[0x22A8,MAIN,0.000,-0.090], rep:[0x3D,MAIN], right:[0x21D2,MAIN]} + }, + 0x290A: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {ext:[0xE038,SIZE5], top:[0x290A,ARROWS]} + }, + 0x290B: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {bot:[0x290B,ARROWS], ext:[0xE038,SIZE5]} + }, + 0x2912: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {top:[0x2912,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x2913: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {bot:[0x2913,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x294E: + { + dir: H, + HW: [[0.850,ARROWS]], + stretch: {left:[0x21BC,MAIN], rep:[0x2212,MAIN], right:[0x21C0,MAIN]} + }, + 0x294F: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {top:[0x21BE,MAIN], ext:[0x23D0,MAIN], bot:[0x21C2,MAIN]} + }, + 0x2950: + { + dir: H, + HW: [[0.850,ARROWS]], + stretch: {left:[0x21BD,MAIN], rep:[0x2212,MAIN], right:[0x21C1,MAIN]} + }, + 0x2951: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {top:[0x21BF,MAIN], ext:[0x23D0,MAIN], bot:[0x21C3,MAIN]} + }, + 0x2952: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {left:[0x2952,ARROWS], rep:[0x2212,MAIN]} + }, + 0x2953: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {right:[0x2953,ARROWS], rep:[0x2212,MAIN]} + }, + 0x2954: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {top:[0x2954,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x2955: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {bot:[0x2955,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x2956: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {left:[0x2956,ARROWS], rep:[0x2212,MAIN]} + }, + 0x2957: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {right:[0x2957,ARROWS], rep:[0x2212,MAIN]} + }, + 0x2958: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {top:[0x2958,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x2959: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {bot:[0x2959,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x295A: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {left:[0x21BC,MAIN], rep:[0x2212,MAIN], right:[0x22A3,MAINBOLD,0.000,0.100,0.600]} + }, + 0x295B: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {left:[0xE0B6,ARROWS], rep:[0x2212,MAIN], right:[0x21C0,MAIN]} + }, + 0x295C: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {bot:[0x5F,MAIN,0.050,-0.010,0.800], ext:[0x23D0,MAIN], top:[0x21BE,MAIN]} + }, + 0x295D: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {top:[0x22A4,MAINBOLD,0.040,0.000,0.600], ext:[0x23D0,MAIN], bot:[0x21C2,MAIN]} + }, + 0x295E: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {left:[0x21BD,MAIN], rep:[0x2212,MAIN], right:[0x22A3,MAINBOLD,0.000,0.100,0.600]} + }, + 0x295F: + { + dir: H, + HW: [[0.816,ARROWS]], + stretch: {left:[0xE0B6,ARROWS], rep:[0x2212,MAIN], right:[0x21C1,MAIN]} + }, + 0x2960: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {bot:[0x5F,MAIN,0.050,-0.010,0.800], ext:[0x23D0,MAIN], top:[0x21BF,MAIN]} + }, + 0x2961: + { + dir: V, + HW: [[0.818,ARROWS]], + stretch: {top:[0x22A4,MAINBOLD,0.040,0.000,0.600], ext:[0x23D0,MAIN], bot:[0x21C3,MAIN]} + }, + 0x2980: + { + dir: V, + HW: [[0.884,SYMBOLS]], + stretch: {ext:[0x2980,SYMBOLS]} + }, + 0x2983: + { + dir: V, + HW: [[0.932,SYMBOLS], [1.230,SIZE1], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]] + }, + 0x2984: + { + dir: V, + HW: [[0.932,SYMBOLS], [1.230,SIZE1], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]] + }, + 0x2985: + { + dir: V, + HW: [[0.932,SYMBOLS], [1.230,SIZE1], [1.848,SIZE2], [2.459,SIZE3], [3.075,SIZE4]] + }, + 0x2986: + { + dir: V, + HW: [[0.932,SYMBOLS], [1.230,SIZE1], [1.848,SIZE2], [2.459,SIZE3], [3.075,SIZE4]] + }, + 0x2997: + { + dir: V, + HW: [[0.932,MAIN]], + stretch: {top:[0xE10D,SHAPES,0.100,0.050], ext:[0x23D0,MAIN,-0.100], bot:[0xE10C,SHAPES,0.100]} + }, + 0x2998: + { + dir: V, + HW: [[0.932,MAIN]], + stretch: {top:[0xE10C,SHAPES,-0.100,0.050], ext:[0x23D0,MAIN], bot:[0xE10D,SHAPES,-0.100]} + }, + 0x2A00: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2A01: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2A02: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2A03: + { + dir: V, + HW: [[1.032,OPERATORS], [1.461,SIZE1]] + }, + 0x2A04: + { + dir: V, + HW: [[1.032,OPERATORS], [1.461,SIZE1]] + }, + 0x2A05: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2A06: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2A07: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2A08: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2A09: + { + dir: V, + HW: [[1.022,OPERATORS], [1.451,SIZE1]] + }, + 0x2A0A: + { + dir: V, + HW: [[1.022,OPERATORS], [1.450,SIZE1]] + }, + 0x2A0B: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A0C: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A0D: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A0E: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A0F: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A10: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A11: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A12: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A13: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A14: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A15: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A16: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A17: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A18: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A19: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A1A: + { + dir: V, + HW: [[1.144,OPERATORS], [2.269,SIZE1]] + }, + 0x2A1B: + { + dir: V, + HW: [[1.267,OPERATORS], [2.426,SIZE1]] + }, + 0x2A1C: + { + dir: V, + HW: [[1.267,OPERATORS], [2.426,SIZE1]] + }, + 0x2AFC: + { + dir: V, + HW: [[1.022,OPERATORS], [1.230,SIZE1], [1.875,SIZE2]] + }, + 0x2AFF: + { + dir: V, + HW: [[1.022,OPERATORS], [1.230,SIZE1], [1.875,SIZE2]] + }, + 0x2B45: + { + dir: H, + HW: [[0.818,SHAPES]], + stretch: {left:[0x2B45,SHAPES], rep:[0xE039,SIZE5]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["HTML-CSS"]); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js new file mode 100644 index 0000000..b08aaf6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js @@ -0,0 +1,750 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js + * + * Initializes the HTML-CSS OutputJax to use the STIX-Web fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,MML,AJAX) { + + var VERSION = "2.3"; + + var ALPHABETSBOLDITALIC = "STIXMathJax_Alphabets-bold-italic", + ALPHABETSBOLD = "STIXMathJax_Alphabets-bold", + ALPHABETSITALIC = "STIXMathJax_Alphabets-italic", + ALPHABETS = "STIXMathJax_Alphabets", + ARROWSBOLD = "STIXMathJax_Arrows-bold", + ARROWS = "STIXMathJax_Arrows", + DOUBLESTRUCKBOLDITALIC = "STIXMathJax_DoubleStruck-bold-italic", + DOUBLESTRUCKBOLD = "STIXMathJax_DoubleStruck-bold", + DOUBLESTRUCKITALIC = "STIXMathJax_DoubleStruck-italic", + DOUBLESTRUCK = "STIXMathJax_DoubleStruck", + FRAKTURBOLD = "STIXMathJax_Fraktur-bold", + FRAKTUR = "STIXMathJax_Fraktur", + LATINBOLDITALIC = "STIXMathJax_Latin-bold-italic", + LATINBOLD = "STIXMathJax_Latin-bold", + LATINITALIC = "STIXMathJax_Latin-italic", + LATIN = "STIXMathJax_Latin", + MAINBOLDITALIC = "STIXMathJax_Main-bold-italic", + MAINBOLD = "STIXMathJax_Main-bold", + MAINITALIC = "STIXMathJax_Main-italic", + MAIN = "STIXMathJax_Main", + MARKSBOLDITALIC = "STIXMathJax_Marks-bold-italic", + MARKSBOLD = "STIXMathJax_Marks-bold", + MARKSITALIC = "STIXMathJax_Marks-italic", + MARKS = "STIXMathJax_Marks", + MISCBOLDITALIC = "STIXMathJax_Misc-bold-italic", + MISCBOLD = "STIXMathJax_Misc-bold", + MISCITALIC = "STIXMathJax_Misc-italic", + MISC = "STIXMathJax_Misc", + MONOSPACE = "STIXMathJax_Monospace", + NORMALBOLDITALIC = "STIXMathJax_Normal-bold-italic", + NORMALBOLD = "STIXMathJax_Normal-bold", + NORMALITALIC = "STIXMathJax_Normal-italic", + OPERATORSBOLD = "STIXMathJax_Operators-bold", + OPERATORS = "STIXMathJax_Operators", + SANSSERIFBOLDITALIC = "STIXMathJax_SansSerif-bold-italic", + SANSSERIFBOLD = "STIXMathJax_SansSerif-bold", + SANSSERIFITALIC = "STIXMathJax_SansSerif-italic", + SANSSERIF = "STIXMathJax_SansSerif", + SCRIPTBOLDITALIC = "STIXMathJax_Script-bold-italic", + SCRIPTITALIC = "STIXMathJax_Script-italic", + SCRIPT = "STIXMathJax_Script", + SHAPESBOLDITALIC = "STIXMathJax_Shapes-bold-italic", + SHAPESBOLD = "STIXMathJax_Shapes-bold", + SHAPES = "STIXMathJax_Shapes", + SIZE1 = "STIXMathJax_Size1", + SIZE2 = "STIXMathJax_Size2", + SIZE3 = "STIXMathJax_Size3", + SIZE4 = "STIXMathJax_Size4", + SIZE5 = "STIXMathJax_Size5", + SYMBOLSBOLD = "STIXMathJax_Symbols-bold", + SYMBOLS = "STIXMathJax_Symbols", + VARIANTSBOLDITALIC = "STIXMathJax_Variants-bold-italic", + VARIANTSBOLD = "STIXMathJax_Variants-bold", + VARIANTSITALIC = "STIXMathJax_Variants-italic", + VARIANTS = "STIXMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + HTMLCSS.Augment({ + FONTDATA: { + version: VERSION, + + + TeX_factor: 1.125, + baselineskip: 1.200, + lineH: 0.800, lineD: 0.200, + + hasStyleChar: true, // char 0xEFFD encodes font style + + FONTS: { + "STIXMathJax_Alphabets-bold-italic": "Alphabets/BoldItalic/Main.js", + "STIXMathJax_Alphabets-bold": "Alphabets/Bold/Main.js", + "STIXMathJax_Alphabets-italic": "Alphabets/Italic/Main.js", + "STIXMathJax_Alphabets": "Alphabets/Regular/Main.js", + "STIXMathJax_Arrows-bold": "Arrows/Bold/Main.js", + "STIXMathJax_Arrows": "Arrows/Regular/Main.js", + "STIXMathJax_DoubleStruck-bold-italic": "DoubleStruck/BoldItalic/Main.js", + "STIXMathJax_DoubleStruck-bold": "DoubleStruck/Bold/Main.js", + "STIXMathJax_DoubleStruck-italic": "DoubleStruck/Italic/Main.js", + "STIXMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "STIXMathJax_Fraktur-bold": "Fraktur/Bold/Main.js", + "STIXMathJax_Fraktur": "Fraktur/Regular/Main.js", + "STIXMathJax_Latin-bold-italic": "Latin/BoldItalic/Main.js", + "STIXMathJax_Latin-bold": "Latin/Bold/Main.js", + "STIXMathJax_Latin-italic": "Latin/Italic/Main.js", + "STIXMathJax_Latin": "Latin/Regular/Main.js", + "STIXMathJax_Main-bold-italic": "Main/BoldItalic/Main.js", + "STIXMathJax_Main-bold": "Main/Bold/Main.js", + "STIXMathJax_Main-italic": "Main/Italic/Main.js", + "STIXMathJax_Main": "Main/Regular/Main.js", + "STIXMathJax_Marks-bold-italic": "Marks/BoldItalic/Main.js", + "STIXMathJax_Marks-bold": "Marks/Bold/Main.js", + "STIXMathJax_Marks-italic": "Marks/Italic/Main.js", + "STIXMathJax_Marks": "Marks/Regular/Main.js", + "STIXMathJax_Misc-bold-italic": "Misc/BoldItalic/Main.js", + "STIXMathJax_Misc-bold": "Misc/Bold/Main.js", + "STIXMathJax_Misc-italic": "Misc/Italic/Main.js", + "STIXMathJax_Misc": "Misc/Regular/Main.js", + "STIXMathJax_Monospace": "Monospace/Regular/Main.js", + "STIXMathJax_Normal-bold-italic": "Normal/BoldItalic/Main.js", + "STIXMathJax_Normal-bold": "Normal/Bold/Main.js", + "STIXMathJax_Normal-italic": "Normal/Italic/Main.js", + "STIXMathJax_Operators-bold": "Operators/Bold/Main.js", + "STIXMathJax_Operators": "Operators/Regular/Main.js", + "STIXMathJax_SansSerif-bold-italic": "SansSerif/BoldItalic/Main.js", + "STIXMathJax_SansSerif-bold": "SansSerif/Bold/Main.js", + "STIXMathJax_SansSerif-italic": "SansSerif/Italic/Main.js", + "STIXMathJax_SansSerif": "SansSerif/Regular/Main.js", + "STIXMathJax_Script-bold-italic": "Script/BoldItalic/Main.js", + "STIXMathJax_Script-italic": "Script/Italic/Main.js", + "STIXMathJax_Script": "Script/Regular/Main.js", + "STIXMathJax_Shapes-bold-italic": "Shapes/BoldItalic/Main.js", + "STIXMathJax_Shapes-bold": "Shapes/Bold/Main.js", + "STIXMathJax_Shapes": "Shapes/Regular/Main.js", + "STIXMathJax_Size1": "Size1/Regular/Main.js", + "STIXMathJax_Size2": "Size2/Regular/Main.js", + "STIXMathJax_Size3": "Size3/Regular/Main.js", + "STIXMathJax_Size4": "Size4/Regular/Main.js", + "STIXMathJax_Size5": "Size5/Regular/Main.js", + "STIXMathJax_Symbols-bold": "Symbols/Bold/Main.js", + "STIXMathJax_Symbols": "Symbols/Regular/Main.js", + "STIXMathJax_Variants-bold-italic": "Variants/BoldItalic/Main.js", + "STIXMathJax_Variants-bold": "Variants/Bold/Main.js", + "STIXMathJax_Variants-italic": "Variants/Italic/Main.js", + "STIXMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,SIZE1]}, + "bold": {fonts: [MAINBOLD,NORMALBOLD,FRAKTURBOLD,DOUBLESTRUCKBOLD,SANSSERIFBOLD,LATINBOLD,ALPHABETSBOLD,MARKSBOLD,ARROWSBOLD,OPERATORSBOLD,SYMBOLSBOLD,SHAPESBOLD,MISCBOLD,VARIANTSBOLD,SIZE1], bold:true +}, + "italic": {fonts: [MAINITALIC,NORMALITALIC,SCRIPTITALIC,DOUBLESTRUCKITALIC,SANSSERIFITALIC,LATINITALIC,ALPHABETSITALIC,MARKSITALIC,MISCITALIC,VARIANTSITALIC,SIZE1], italic:true}, + "bolditalic": {fonts: [MAINBOLDITALIC,NORMALBOLDITALIC,SCRIPTBOLDITALIC,DOUBLESTRUCKBOLDITALIC,SANSSERIFBOLDITALIC,LATINBOLDITALIC,ALPHABETSBOLDITALIC,MARKSBOLDITALIC,SHAPESBOLDITALIC,MISCBOLDITALIC,VARIANTSBOLDITALIC,SIZE1], bold: true, italic:true}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTURBOLD], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPTITALIC], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPTBOLDITALIC], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2, + offsetG: 0xE17D + }, + "bold-sans-serif": { + fonts: [SANSSERIFBOLD], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIFITALIC], italic: true, + offsetA: 0x1D608, + offsetN: 0xE1B4, + offsetG: 0xE1BF + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIFBOLDITALIC], bold:true, italic: true, + offsetA: 0x1D63C, + offsetN: 0xE1F6, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-STIX-Web-variant": {remap: { 0x2A87: 0xE010, 0x2A88: 0xE00F, 0x25B3: 0x25B5, 0x25BD: 0x25BF }, fonts: [VARIANTS,SHAPES,OPERATORS,MAIN,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,SYMBOLS,MISC,SIZE1]}, + "-tex-caligraphic": {offsetA: 0xE22D, noLowerCase: 1, fonts: [VARIANTSITALIC,MAINITALIC,NORMALITALIC,SCRIPTITALIC,DOUBLESTRUCKITALIC,SANSSERIFITALIC,LATINITALIC,ALPHABETSITALIC,MARKSITALIC,MISCITALIC,SIZE1], italic: true}, + "-tex-oldstyle": {offsetN: 0xE261, remap: {0xE262: 0xE265, 0xE263: 0xE269, 0xE264: 0xE26D, 0xE265: 0xE271, 0xE266: 0xE275, 0xE267: 0xE279, 0xE268: 0xE27D, 0xE269: 0xE281, 0xE26A: 0xE285}, fonts: [VARIANTS,MAIN,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,SIZE1]}, + "-tex-caligraphic-bold": {offsetA: 0xE247, noLowerCase: 1, fonts: [VARIANTSBOLDITALIC,MAINBOLDITALIC,NORMALBOLDITALIC,SCRIPTBOLDITALIC,DOUBLESTRUCKBOLDITALIC,SANSSERIFBOLDITALIC,LATINBOLDITALIC,ALPHABETSBOLDITALIC,MARKSBOLDITALIC,SHAPESBOLDITALIC,MISCBOLDITALIC,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {offsetN: 0xE261, remap: {0xE264: 0xE267, 0xE265: 0xE26B, 0xE266: 0xE26F, 0xE267: 0xE273, 0xE268: 0xE277, 0xE269: 0xE27B, 0xE26A: 0xE27F, 0xE26B: 0xE283, 0xE26C: 0xE287}, fonts: [VARIANTSBOLD,MAINBOLD,NORMALBOLD,FRAKTURBOLD,DOUBLESTRUCKBOLD,SANSSERIFBOLD,LATINBOLD,ALPHABETSBOLD,MARKSBOLD,ARROWSBOLD,OPERATORSBOLD,SYMBOLSBOLD,SHAPESBOLD,MISCBOLD,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAINITALIC,NORMALITALIC,SCRIPTITALIC,DOUBLESTRUCKITALIC,SANSSERIFITALIC,LATINITALIC,ALPHABETSITALIC,MARKSITALIC,MISCITALIC,VARIANTSITALIC,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x23AF, + + REMAP: { + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x2758: 0x2223, + 0x02F3: 0x02DA, + 0x02F4: 0x02CA, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF + }, + + REMAPACCENT: { + "\u2192": "\u20D7" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[0.853,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {bot:[0xE000,SIZE5], ext:[0xE001,SIZE5], top:[0xE002,SIZE5]} + }, + 0x29: + { + dir: V, + HW: [[0.853,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {bot:[0xE003,SIZE5], ext:[0xE004,SIZE5], top:[0xE005,SIZE5]} + }, + 0x2D: {alias: 0x23AF, dir: H}, + 0x2F: + { + dir: V, + HW: [[0.690,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]] + }, + 0x3D: EXTRAH, + 0x5B: + { + dir: V, + HW: [[0.818,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {bot:[0xE006,SIZE5], ext:[0xE007,SIZE5], top:[0xE008,SIZE5]} + }, + 0x5C: + { + dir: V, + HW: [[0.690,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]] + }, + 0x5D: + { + dir: V, + HW: [[0.818,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {bot:[0xE009,SIZE5], ext:[0xE00A,SIZE5], top:[0xE00B,SIZE5]} + }, + 0x5E: {alias: 0x2C6, dir: H}, + 0x5F: {alias: 0x23AF, dir: H}, + 0x7B: + { + dir: V, + HW: [[0.861,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {bot:[0xE00C,SIZE5], ext:[0xE00D,SIZE5], mid:[0xE00E,SIZE5], top:[0xE00F,SIZE5]} + }, + 0x7C: + { + dir: V, + HW: [[0.690,MAIN]], + stretch: {bot:[0x7C,MAIN], ext:[0x7C,MAIN]} + }, + 0x7D: + { + dir: V, + HW: [[0.861,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {bot:[0xE010,SIZE5], ext:[0xE00D,SIZE5], mid:[0xE011,SIZE5], top:[0xE012,SIZE5]} + }, + 0x7E: {alias: 0x2DC, dir: H}, + 0xAF: {alias: 0x23AF, dir: H}, + 0x2C6: + { + dir: H, + HW: [[0.311,MAIN], [0.560,SIZE1], [0.979,SIZE2], [1.460,SIZE3], [1.886,SIZE4], [2.328,SIZE5]] + }, + 0x2C7: EXTRAH, + 0x2C9: {alias: 0x23AF, dir: H}, + 0x2CD: EXTRAH, + 0x2DC: + { + dir: H, + HW: [[0.330,MAIN], [0.560,SIZE1], [0.979,SIZE2], [1.460,SIZE3], [1.886,SIZE4], [2.328,SIZE5]] + }, + 0x2F7: EXTRAH, + 0x302: + { + dir: H, + HW: [[0.311,MAIN], [0.560,SIZE1], [0.979,SIZE2], [1.460,SIZE3], [1.886,SIZE4], [2.328,SIZE5]] + }, + 0x303: + { + dir: H, + HW: [[0.330,MAIN], [0.560,SIZE1], [0.979,SIZE2], [1.460,SIZE3], [1.886,SIZE4], [2.328,SIZE5]] + }, + 0x305: + { + dir: H, + HW: [[0.500,MARKS], [1.000,SIZE1], [1.500,SIZE2], [2.000,SIZE3], [2.500,SIZE4], [3.000,SIZE5]], + stretch: {left:[0xE013,SIZE5], rep:[0xE013,SIZE5]} + }, + 0x30C: + { + dir: H, + HW: [[0.311,MAIN], [0.560,SIZE1], [0.979,SIZE2], [1.460,SIZE3], [1.886,SIZE4], [2.328,SIZE5]] + }, + 0x330: + { + dir: H, + HW: [[0.330,MARKS], [0.560,SIZE1], [0.979,SIZE2], [1.460,SIZE3], [1.886,SIZE4], [2.328,SIZE5]] + }, + 0x332: + { + dir: H, + HW: [[0.500,MARKS], [1.000,SIZE1], [1.500,SIZE2], [2.000,SIZE3], [2.500,SIZE4], [3.000,SIZE5]], + stretch: {left:[0xE014,SIZE5], rep:[0xE014,SIZE5]} + }, + 0x338: + { + dir: V, + HW: [[0.818,MAIN], [0.553,SIZE1], [0.662,SIZE2], [0.818,SIZE3], [0.959,SIZE4], [1.414,SIZE5]] + }, + 0x2015: {alias: 0x23AF, dir: H}, + 0x2016: + { + dir: V, + HW: [[0.879,MAIN]], + stretch: {bot:[0x2016,MAIN], ext:[0x2016,MAIN]} + }, + 0x2017: {alias: 0x23AF, dir: H}, + 0x203E: + { + dir: H, + HW: [[0.500,MAIN], [1.000,SIZE1], [1.500,SIZE2], [2.000,SIZE3], [2.500,SIZE4], [3.000,SIZE5]], + stretch: {left:[0x203E,MAIN], rep:[0x203E,MAIN]} + }, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: + { + dir: H, + HW: [[0.436,MAIN], [0.872,SIZE1], [1.308,SIZE2], [1.744,SIZE3], [2.180,SIZE4], [3.000,SIZE5]], + stretch: {rep:[0xE016,SIZE5], right:[0xE019,SIZE5]} + }, + 0x20E1: EXTRAH, + 0x20EC: EXTRAH, + 0x20ED: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2140: EXTRAV, + 0x2190: + { + dir: H, + HW: [[0.786,MAIN]], + stretch: {left:[0x2190,MAIN], rep:[0x23AF,SYMBOLS]} + }, + 0x2191: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {ext:[0x23D0,MAIN], top:[0x2191,MAIN]} + }, + 0x2192: + { + dir: H, + HW: [[0.786,MAIN]], + stretch: {rep:[0x23AF,SYMBOLS], right:[0x2192,MAIN]} + }, + 0x2193: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {bot:[0x2193,MAIN], ext:[0x23D0,MAIN]} + }, + 0x2194: + { + dir: H, + HW: [[0.850,MAIN]], + stretch: {left:[0x2190,MAIN], rep:[0x23AF,SYMBOLS], right:[0x2192,MAIN]} + }, + 0x2195: + { + dir: V, + HW: [[0.954,MAIN]], + stretch: {bot:[0x2193,MAIN], ext:[0x23D0,MAIN], top:[0x2191,MAIN]} + }, + 0x219E: EXTRAH, + 0x219F: EXTRAV, + 0x21A0: EXTRAH, + 0x21A1: EXTRAV, + 0x21A4: EXTRAH, + 0x21A5: EXTRAV, + 0x21A6: EXTRAH, + 0x21A7: EXTRAV, + 0x21A8: EXTRAV, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21B0: EXTRAV, + 0x21B1: EXTRAV, + 0x21B2: EXTRAV, + 0x21B3: EXTRAV, + 0x21B4: EXTRAH, + 0x21B5: EXTRAV, + 0x21BC: EXTRAH, + 0x21BD: EXTRAH, + 0x21BE: EXTRAV, + 0x21BF: EXTRAV, + 0x21C0: EXTRAH, + 0x21C1: EXTRAH, + 0x21C2: EXTRAV, + 0x21C3: EXTRAV, + 0x21CB: EXTRAH, + 0x21CC: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[0.806,MAIN]], + stretch: {left:[0x21D0,MAIN], rep:[0xE01F,SIZE5]} + }, + 0x21D1: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {ext:[0xE020,SIZE5], top:[0x21D1,MAIN]} + }, + 0x21D2: + { + dir: H, + HW: [[0.806,MAIN]], + stretch: {rep:[0xE01F,SIZE5], right:[0x21D2,MAIN]} + }, + 0x21D3: + { + dir: V, + HW: [[0.818,MAIN]], + stretch: {bot:[0x21D3,MAIN], ext:[0xE020,SIZE5]} + }, + 0x21D4: + { + dir: H, + HW: [[0.886,MAIN]], + stretch: {left:[0x21D0,MAIN], rep:[0xE01F,SIZE5], right:[0x21D2,MAIN]} + }, + 0x21D5: + { + dir: V, + HW: [[0.954,MAIN]], + stretch: {bot:[0x21D3,MAIN], ext:[0xE020,SIZE5], top:[0x21D1,MAIN]} + }, + 0x21DA: EXTRAH, + 0x21DB: EXTRAH, + 0x21E0: EXTRAH, + 0x21E1: EXTRAV, + 0x21E2: EXTRAH, + 0x21E3: EXTRAV, + 0x21E4: EXTRAH, + 0x21E5: EXTRAH, + 0x21FD: EXTRAH, + 0x21FE: EXTRAH, + 0x21FF: EXTRAH, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: {alias: 0x23AF, dir: H}, + 0x2215: {alias: 0x2F, dir: V}, + 0x221A: + { + dir: V, + HW: [[1.232,MAIN], [1.847,SIZE1], [2.460,SIZE2], [3.075,SIZE3]], + stretch: {bot:[0xE022,SIZE5], ext:[0xE023,SIZE5], top:[0xE024,SIZE5]} + }, + 0x221B: EXTRAV, + 0x221C: EXTRAV, + 0x2223: + { + dir: V, + HW: [[0.879,MAIN]], + stretch: {ext:[0x2223,MAIN]} + }, + 0x2225: + { + dir: V, + HW: [[0.879,MAIN]], + stretch: {ext:[0x2225,MAIN]} + }, + 0x222B: EXTRAH, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[0.926,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {ext:[0xE007,SIZE5], top:[0xE008,SIZE5]} + }, + 0x2309: + { + dir: V, + HW: [[0.926,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {ext:[0xE00A,SIZE5], top:[0xE00B,SIZE5]} + }, + 0x230A: + { + dir: V, + HW: [[0.926,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {bot:[0xE006,SIZE5], ext:[0xE007,SIZE5]} + }, + 0x230B: + { + dir: V, + HW: [[0.926,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]], + stretch: {bot:[0xE009,SIZE5], ext:[0xE00A,SIZE5]} + }, + 0x2329: {alias: 0x27E8, dir: V}, + 0x232A: {alias: 0x27E9, dir: V}, + 0x23AA: EXTRAV, + 0x23AF: + { + dir: H, + HW: [[0.315,SYMBOLS]], + stretch: {rep:[0x23AF,SYMBOLS]} + }, + 0x23B0: + { + dir: V, + HW: [[1.001,SIZE5,null,0xE03A]], + stretch: {top:[0xE00F,SIZE5], ext:[0xE00D,SIZE5], bot:[0xE010,SIZE5]} + }, + 0x23B1: + { + dir: V, + HW: [[1.001,SIZE5,null,0xE03B]], + stretch: {top:[0xE012,SIZE5], ext:[0xE00D,SIZE5], bot:[0xE00C,SIZE5]} + }, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: EXTRAV, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[1.000,MAIN], [0.925,SIZE1], [1.460,SIZE2], [1.886,SIZE3], [2.328,SIZE4], [3.238,SIZE5]], + stretch: {left:[0xE031,SIZE5], rep:[0xE028,SIZE5], mid:[0xE032,SIZE5], right:[0xE033,SIZE5]} + }, + 0x23DF: + { + dir: H, + HW: [[1.000,MAIN], [0.925,SIZE1], [1.460,SIZE2], [1.886,SIZE3], [2.328,SIZE4], [3.238,SIZE5]], + stretch: {left:[0xE034,SIZE5], rep:[0xE02B,SIZE5], mid:[0xE035,SIZE5], right:[0xE036,SIZE5]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x2212, dir: H}, + 0x2758: {alias: 0x2223, dir: V}, + 0x2772: EXTRAV, + 0x2773: EXTRAV, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[0.926,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]] + }, + 0x27E9: + { + dir: V, + HW: [[0.926,MAIN], [1.230,SIZE1], [1.350,SIZE1,1.098], [1.845,SIZE2], [2.460,SIZE3], [3.075,SIZE4]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: + { + dir: V, + HW: [[0.853,MAIN]], + stretch: {bot:[0xE000,SIZE5], ext:[0xE001,SIZE5], top:[0xE002,SIZE5]} + }, + 0x27EF: + { + dir: V, + HW: [[0.853,MAIN]], + stretch: {bot:[0xE003,SIZE5], ext:[0xE004,SIZE5], top:[0xE005,SIZE5]} + }, + 0x27F0: EXTRAV, + 0x27F1: EXTRAV, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: EXTRAH, + 0x2907: EXTRAH, + 0x290A: EXTRAV, + 0x290B: EXTRAV, + 0x2912: EXTRAV, + 0x2913: EXTRAV, + 0x294E: EXTRAH, + 0x294F: EXTRAV, + 0x2950: EXTRAH, + 0x2951: EXTRAV, + 0x2952: EXTRAH, + 0x2953: EXTRAH, + 0x2954: EXTRAV, + 0x2955: EXTRAV, + 0x2956: EXTRAH, + 0x2957: EXTRAH, + 0x2958: EXTRAV, + 0x2959: EXTRAV, + 0x295A: EXTRAH, + 0x295B: EXTRAH, + 0x295C: EXTRAV, + 0x295D: EXTRAV, + 0x295E: EXTRAH, + 0x295F: EXTRAH, + 0x2960: EXTRAV, + 0x2961: EXTRAV, + 0x2980: EXTRAV, + 0x2983: EXTRAV, + 0x2984: EXTRAV, + 0x2985: EXTRAV, + 0x2986: EXTRAV, + 0x2997: EXTRAV, + 0x2998: EXTRAV, + 0x29F8: + { + dir: V, + HW: [[1.020,MAIN], [1.845,SIZE1]] + }, + 0x29F9: + { + dir: V, + HW: [[1.020,MAIN], [1.845,SIZE1]] + }, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A07: EXTRAV, + 0x2A08: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0A: EXTRAV, + 0x2A0B: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A0D: EXTRAV, + 0x2A0E: EXTRAV, + 0x2A0F: EXTRAV, + 0x2A10: EXTRAV, + 0x2A11: EXTRAV, + 0x2A12: EXTRAV, + 0x2A13: EXTRAV, + 0x2A14: EXTRAV, + 0x2A15: EXTRAV, + 0x2A16: EXTRAV, + 0x2A17: EXTRAV, + 0x2A18: EXTRAV, + 0x2A19: EXTRAV, + 0x2A1A: EXTRAV, + 0x2A1B: EXTRAV, + 0x2A1C: EXTRAV, + 0x2AFC: EXTRAV, + 0x2AFF: EXTRAV, + 0x2B45: EXTRAH, + 0x2B46: + { + dir: H, + HW: [[0.818,SHAPES]], + stretch: {rep:[0xE039,SIZE5], right:[0x2B46,SHAPES]} + }, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Main/Regular/Main.js",function () { + HTMLCSS.FONTDATA.FONTS[MAIN][0x22EE][0] += 400; // adjust height for \vdots + HTMLCSS.FONTDATA.FONTS[MAIN][0x22F1][0] += 500; // adjust height for \ddots + HTMLCSS.FONTDATA.FONTS[MAIN][0x2212][1] += 100; // adjust depth for minus (arrow extender) + HTMLCSS.FONTDATA.FONTS[MAIN][0x003D][1] += 100; // adjust depth for = (double arrow extender) + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Size5/Regular/Main.js",function () { + var u; + u = HTMLCSS.FONTDATA.DELIMITERS[0x23DE].stretch.rep[0]; + HTMLCSS.FONTDATA.FONTS[SIZE5][u][0] += 200; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS[SIZE5][u][1] += 200; // adjust depth for brace extender + u = HTMLCSS.FONTDATA.DELIMITERS[0x23DF].stretch.rep[0]; + HTMLCSS.FONTDATA.FONTS[SIZE5][u][0] += 200; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS[SIZE5][u][1] += 200; // adjust depth for brace extender + }); + + AJAX.loadComplete(HTMLCSS.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.ElementJax.mml,MathJax.Ajax); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js new file mode 100644 index 0000000..c2635f7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0xFB00: [691,0,610,15,666], // LATIN SMALL LIGATURE FF + 0xFB01: [691,0,556,14,536], // LATIN SMALL LIGATURE FI + 0xFB02: [691,0,556,15,535], // LATIN SMALL LIGATURE FL + 0xFB03: [691,0,833,15,813], // LATIN SMALL LIGATURE FFI + 0xFB04: [691,0,833,15,812] // LATIN SMALL LIGATURE FFL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/AlphaPresentForms.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js new file mode 100644 index 0000000..5fa1ec5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js @@ -0,0 +1,109 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2190: [451,-55,977,68,909], // LEFTWARDS ARROW + 0x2191: [676,170,584,94,490], // UPWARDS ARROW + 0x2192: [451,-55,977,68,909], // RIGHTWARDS ARROW + 0x2193: [676,170,584,94,490], // DOWNWARDS ARROW + 0x2194: [451,-55,977,30,948], // LEFT RIGHT ARROW + 0x2195: [736,230,584,94,490], // UP DOWN ARROW + 0x2196: [676,170,977,68,911], // NORTH WEST ARROW + 0x2197: [676,170,977,68,911], // NORTH EAST ARROW + 0x2198: [676,170,977,68,911], // SOUTH EAST ARROW + 0x2199: [676,170,977,68,911], // SOUTH WEST ARROW + 0x219A: [451,-55,977,68,909], // LEFTWARDS ARROW WITH STROKE + 0x219B: [451,-55,977,68,909], // RIGHTWARDS ARROW WITH STROKE + 0x219C: [462,-72,956,66,890], // LEFTWARDS WAVE ARROW + 0x219D: [462,-72,956,66,890], // RIGHTWARDS WAVE ARROW + 0x219E: [451,-55,977,68,909], // LEFTWARDS TWO HEADED ARROW + 0x219F: [676,165,568,86,482], // UPWARDS TWO HEADED ARROW + 0x21A0: [451,-55,977,68,909], // RIGHTWARDS TWO HEADED ARROW + 0x21A1: [676,165,568,86,482], // DOWNWARDS TWO HEADED ARROW + 0x21A2: [451,-55,977,68,909], // LEFTWARDS ARROW WITH TAIL + 0x21A3: [451,-55,977,68,909], // RIGHTWARDS ARROW WITH TAIL + 0x21A4: [451,-55,977,68,909], // LEFTWARDS ARROW FROM BAR + 0x21A5: [676,165,584,94,490], // UPWARDS ARROW FROM BAR + 0x21A6: [451,-55,977,68,909], // RIGHTWARDS ARROW FROM BAR + 0x21A7: [676,165,584,94,490], // DOWNWARDS ARROW FROM BAR + 0x21A8: [732,196,584,94,490], // UP DOWN ARROW WITH BASE + 0x21A9: [539,-55,966,66,900], // LEFTWARDS ARROW WITH HOOK + 0x21AA: [539,-55,966,66,900], // RIGHTWARDS ARROW WITH HOOK + 0x21AB: [540,6,966,66,900], // LEFTWARDS ARROW WITH LOOP + 0x21AC: [540,6,966,66,900], // RIGHTWARDS ARROW WITH LOOP + 0x21AD: [451,-55,1297,55,1242], // LEFT RIGHT WAVE ARROW + 0x21AE: [451,-55,977,30,948], // LEFT RIGHT ARROW WITH STROKE + 0x21AF: [683,154,562,68,494], // DOWNWARDS ZIGZAG ARROW + 0x21B0: [686,170,584,45,503], // UPWARDS ARROW WITH TIP LEFTWARDS + 0x21B1: [686,170,584,81,539], // UPWARDS ARROW WITH TIP RIGHTWARDS + 0x21B2: [686,170,584,45,503], // DOWNWARDS ARROW WITH TIP LEFTWARDS + 0x21B3: [686,170,584,81,539], // DOWNWARDS ARROW WITH TIP RIGHTWARDS + 0x21B4: [686,162,960,66,894], // RIGHTWARDS ARROW WITH CORNER DOWNWARDS + 0x21B5: [686,171,960,56,904], // DOWNWARDS ARROW WITH CORNER LEFTWARDS + 0x21B6: [524,0,971,66,905], // ANTICLOCKWISE TOP SEMICIRCLE ARROW + 0x21B7: [524,0,971,66,905], // CLOCKWISE TOP SEMICIRCLE ARROW + 0x21B8: [768,170,977,68,911], // NORTH WEST ARROW TO LONG BAR + 0x21B9: [618,114,977,68,909], // LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR + 0x21BA: [693,127,974,105,869], // ANTICLOCKWISE OPEN CIRCLE ARROW + 0x21BB: [693,127,974,105,869], // CLOCKWISE OPEN CIRCLE ARROW + 0x21BC: [501,-209,977,66,910], // LEFTWARDS HARPOON WITH BARB UPWARDS + 0x21BD: [297,-5,977,65,909], // LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x21BE: [694,162,552,239,481], // UPWARDS HARPOON WITH BARB RIGHTWARDS + 0x21BF: [694,162,352,71,313], // UPWARDS HARPOON WITH BARB LEFTWARDS + 0x21C0: [501,-209,977,66,910], // RIGHTWARDS HARPOON WITH BARB UPWARDS + 0x21C1: [297,-5,977,66,910], // RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x21C2: [694,162,552,239,481], // DOWNWARDS HARPOON WITH BARB RIGHTWARDS + 0x21C3: [694,162,552,71,313], // DOWNWARDS HARPOON WITH BARB LEFTWARDS + 0x21C4: [618,114,977,68,909], // RIGHTWARDS ARROW OVER LEFTWARDS ARROW + 0x21C5: [676,165,864,66,798], // UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW + 0x21C6: [618,114,977,68,909], // LEFTWARDS ARROW OVER RIGHTWARDS ARROW + 0x21C7: [618,114,977,68,909], // LEFTWARDS PAIRED ARROWS + 0x21C8: [676,165,864,66,798], // UPWARDS PAIRED ARROWS + 0x21C9: [618,114,977,68,909], // RIGHTWARDS PAIRED ARROWS + 0x21CA: [676,165,864,66,798], // DOWNWARDS PAIRED ARROWS + 0x21CB: [571,21,977,66,910], // LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON + 0x21CC: [571,21,977,66,910], // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21CD: [570,64,977,68,909], // LEFTWARDS DOUBLE ARROW WITH STROKE + 0x21CE: [570,64,1240,50,1190], // LEFT RIGHT DOUBLE ARROW WITH STROKE + 0x21CF: [570,64,977,68,909], // RIGHTWARDS DOUBLE ARROW WITH STROKE + 0x21D0: [570,64,977,68,909], // LEFTWARDS DOUBLE ARROW + 0x21D1: [676,170,714,40,674], // UPWARDS DOUBLE ARROW + 0x21D2: [570,64,977,68,909], // RIGHTWARDS DOUBLE ARROW + 0x21D3: [676,170,714,40,674], // DOWNWARDS DOUBLE ARROW + 0x21D4: [570,64,1240,50,1190], // LEFT RIGHT DOUBLE ARROW + 0x21D5: [736,230,714,40,674], // UP DOWN DOUBLE ARROW + 0x21D6: [662,156,926,54,872], // NORTH WEST DOUBLE ARROW + 0x21D7: [662,156,926,54,872], // NORTH EAST DOUBLE ARROW + 0x21D8: [662,156,926,54,872], // SOUTH EAST DOUBLE ARROW + 0x21D9: [662,156,926,54,872], // SOUTH WEST DOUBLE ARROW + 0x21DC: [451,-55,977,62,914], // LEFTWARDS SQUIGGLE ARROW + 0x21DD: [451,-55,977,62,914], // RIGHTWARDS SQUIGGLE ARROW + 0x21E6: [551,45,926,60,866], // LEFTWARDS WHITE ARROW + 0x21E7: [662,156,685,45,641], // UPWARDS WHITE ARROW + 0x21E8: [551,45,926,60,866], // RIGHTWARDS WHITE ARROW + 0x21E9: [662,156,685,45,641], // DOWNWARDS WHITE ARROW + 0x21EA: [705,201,685,45,641], // UPWARDS WHITE ARROW FROM BAR + 0x21F5: [676,165,864,66,798] // DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/Arrows.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js new file mode 100644 index 0000000..bfd4278 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js @@ -0,0 +1,72 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x1D538: [676,0,787,50,737], // MATHEMATICAL DOUBLE-STRUCK CAPITAL A + 0x1D539: [676,0,729,75,669], // MATHEMATICAL DOUBLE-STRUCK CAPITAL B + 0x1D53B: [676,0,748,75,703], // MATHEMATICAL DOUBLE-STRUCK CAPITAL D + 0x1D53C: [676,0,650,75,595], // MATHEMATICAL DOUBLE-STRUCK CAPITAL E + 0x1D53D: [676,0,474,75,595], // MATHEMATICAL DOUBLE-STRUCK CAPITAL F + 0x1D53E: [691,19,751,45,686], // MATHEMATICAL DOUBLE-STRUCK CAPITAL G + 0x1D540: [676,0,380,80,300], // MATHEMATICAL DOUBLE-STRUCK CAPITAL I + 0x1D541: [676,19,618,50,548], // MATHEMATICAL DOUBLE-STRUCK CAPITAL J + 0x1D542: [676,0,792,75,767], // MATHEMATICAL DOUBLE-STRUCK CAPITAL K + 0x1D543: [676,0,662,70,607], // MATHEMATICAL DOUBLE-STRUCK CAPITAL L + 0x1D544: [676,0,914,75,839], // MATHEMATICAL DOUBLE-STRUCK CAPITAL M + 0x1D546: [691,19,787,45,742], // MATHEMATICAL DOUBLE-STRUCK CAPITAL O + 0x1D54A: [692,19,702,45,657], // MATHEMATICAL DOUBLE-STRUCK CAPITAL S + 0x1D54B: [676,0,556,25,645], // MATHEMATICAL DOUBLE-STRUCK CAPITAL T + 0x1D54C: [676,19,738,70,668], // MATHEMATICAL DOUBLE-STRUCK CAPITAL U + 0x1D54D: [676,0,627,17,704], // MATHEMATICAL DOUBLE-STRUCK CAPITAL V + 0x1D54E: [676,0,996,17,1015], // MATHEMATICAL DOUBLE-STRUCK CAPITAL W + 0x1D54F: [676,0,794,20,769], // MATHEMATICAL DOUBLE-STRUCK CAPITAL X + 0x1D550: [676,0,652,23,739], // MATHEMATICAL DOUBLE-STRUCK CAPITAL Y + 0x1D552: [473,14,623,50,563], // MATHEMATICAL DOUBLE-STRUCK SMALL A + 0x1D553: [676,14,643,60,593], // MATHEMATICAL DOUBLE-STRUCK SMALL B + 0x1D554: [473,14,574,50,524], // MATHEMATICAL DOUBLE-STRUCK SMALL C + 0x1D555: [676,14,643,50,583], // MATHEMATICAL DOUBLE-STRUCK SMALL D + 0x1D556: [473,14,573,50,523], // MATHEMATICAL DOUBLE-STRUCK SMALL E + 0x1D557: [676,0,474,25,536], // MATHEMATICAL DOUBLE-STRUCK SMALL F + 0x1D558: [473,205,643,50,583], // MATHEMATICAL DOUBLE-STRUCK SMALL G + 0x1D559: [676,0,624,60,564], // MATHEMATICAL DOUBLE-STRUCK SMALL H + 0x1D55A: [691,0,330,65,265], // MATHEMATICAL DOUBLE-STRUCK SMALL I + 0x1D55B: [691,205,371,-20,311], // MATHEMATICAL DOUBLE-STRUCK SMALL J + 0x1D55C: [676,0,646,60,621], // MATHEMATICAL DOUBLE-STRUCK SMALL K + 0x1D55D: [676,0,325,60,265], // MATHEMATICAL DOUBLE-STRUCK SMALL L + 0x1D55E: [473,0,908,60,848], // MATHEMATICAL DOUBLE-STRUCK SMALL M + 0x1D55F: [473,0,624,60,564], // MATHEMATICAL DOUBLE-STRUCK SMALL N + 0x1D560: [473,14,598,45,553], // MATHEMATICAL DOUBLE-STRUCK SMALL O + 0x1D561: [473,205,643,60,593], // MATHEMATICAL DOUBLE-STRUCK SMALL P + 0x1D562: [473,205,643,50,583], // MATHEMATICAL DOUBLE-STRUCK SMALL Q + 0x1D563: [473,0,339,60,445], // MATHEMATICAL DOUBLE-STRUCK SMALL R + 0x1D564: [473,14,549,52,497], // MATHEMATICAL DOUBLE-STRUCK SMALL S + 0x1D565: [676,14,446,25,411], // MATHEMATICAL DOUBLE-STRUCK SMALL T + 0x1D566: [461,16,619,55,559], // MATHEMATICAL DOUBLE-STRUCK SMALL U + 0x1D567: [461,0,494,6,544], // MATHEMATICAL DOUBLE-STRUCK SMALL V + 0x1D568: [461,0,786,22,789], // MATHEMATICAL DOUBLE-STRUCK SMALL W + 0x1D569: [461,0,660,25,635], // MATHEMATICAL DOUBLE-STRUCK SMALL X + 0x1D56A: [461,205,471,-9,537], // MATHEMATICAL DOUBLE-STRUCK SMALL Y + 0x1D56B: [461,0,513,40,473] // MATHEMATICAL DOUBLE-STRUCK SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/BBBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js new file mode 100644 index 0000000..0f332bb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x1D56C: [701,25,856,50,805], // MATHEMATICAL BOLD FRAKTUR CAPITAL A + 0x1D56D: [701,19,849,50,794], // MATHEMATICAL BOLD FRAKTUR CAPITAL B + 0x1D56E: [701,19,773,54,731], // MATHEMATICAL BOLD FRAKTUR CAPITAL C + 0x1D56F: [701,19,891,54,836], // MATHEMATICAL BOLD FRAKTUR CAPITAL D + 0x1D570: [701,19,788,54,731], // MATHEMATICAL BOLD FRAKTUR CAPITAL E + 0x1D571: [701,205,803,54,748], // MATHEMATICAL BOLD FRAKTUR CAPITAL F + 0x1D572: [701,19,833,54,781], // MATHEMATICAL BOLD FRAKTUR CAPITAL G + 0x1D573: [701,205,843,42,795], // MATHEMATICAL BOLD FRAKTUR CAPITAL H + 0x1D574: [701,25,790,54,735], // MATHEMATICAL BOLD FRAKTUR CAPITAL I + 0x1D575: [701,205,803,54,748], // MATHEMATICAL BOLD FRAKTUR CAPITAL J + 0x1D576: [701,25,864,42,814], // MATHEMATICAL BOLD FRAKTUR CAPITAL K + 0x1D577: [701,25,699,51,645], // MATHEMATICAL BOLD FRAKTUR CAPITAL L + 0x1D578: [701,25,1133,50,1081], // MATHEMATICAL BOLD FRAKTUR CAPITAL M + 0x1D579: [701,25,862,50,810], // MATHEMATICAL BOLD FRAKTUR CAPITAL N + 0x1D57A: [701,19,909,54,854], // MATHEMATICAL BOLD FRAKTUR CAPITAL O + 0x1D57B: [701,205,850,50,795], // MATHEMATICAL BOLD FRAKTUR CAPITAL P + 0x1D57C: [701,59,930,54,902], // MATHEMATICAL BOLD FRAKTUR CAPITAL Q + 0x1D57D: [701,25,884,50,841], // MATHEMATICAL BOLD FRAKTUR CAPITAL R + 0x1D57E: [701,19,852,54,802], // MATHEMATICAL BOLD FRAKTUR CAPITAL S + 0x1D57F: [701,25,793,54,740], // MATHEMATICAL BOLD FRAKTUR CAPITAL T + 0x1D580: [701,25,860,54,809], // MATHEMATICAL BOLD FRAKTUR CAPITAL U + 0x1D581: [701,19,855,50,800], // MATHEMATICAL BOLD FRAKTUR CAPITAL V + 0x1D582: [701,19,1121,50,1066], // MATHEMATICAL BOLD FRAKTUR CAPITAL W + 0x1D583: [701,25,819,50,775], // MATHEMATICAL BOLD FRAKTUR CAPITAL X + 0x1D584: [701,205,837,50,782], // MATHEMATICAL BOLD FRAKTUR CAPITAL Y + 0x1D585: [701,195,755,44,703], // MATHEMATICAL BOLD FRAKTUR CAPITAL Z + 0x1D586: [475,24,600,55,545], // MATHEMATICAL BOLD FRAKTUR SMALL A + 0x1D587: [695,24,559,45,504], // MATHEMATICAL BOLD FRAKTUR SMALL B + 0x1D588: [475,24,464,55,412], // MATHEMATICAL BOLD FRAKTUR SMALL C + 0x1D589: [694,25,557,48,502], // MATHEMATICAL BOLD FRAKTUR SMALL D + 0x1D58A: [475,24,476,55,427], // MATHEMATICAL BOLD FRAKTUR SMALL E + 0x1D58B: [700,214,370,33,352], // MATHEMATICAL BOLD FRAKTUR SMALL F + 0x1D58C: [475,219,566,55,506], // MATHEMATICAL BOLD FRAKTUR SMALL G + 0x1D58D: [695,219,576,45,516], // MATHEMATICAL BOLD FRAKTUR SMALL H + 0x1D58E: [697,24,429,35,379], // MATHEMATICAL BOLD FRAKTUR SMALL I + 0x1D58F: [697,219,389,40,337], // MATHEMATICAL BOLD FRAKTUR SMALL J + 0x1D590: [695,24,456,48,402], // MATHEMATICAL BOLD FRAKTUR SMALL K + 0x1D591: [695,24,433,45,379], // MATHEMATICAL BOLD FRAKTUR SMALL L + 0x1D592: [475,24,984,40,932], // MATHEMATICAL BOLD FRAKTUR SMALL M + 0x1D593: [475,24,696,40,644], // MATHEMATICAL BOLD FRAKTUR SMALL N + 0x1D594: [475,24,554,45,499], // MATHEMATICAL BOLD FRAKTUR SMALL O + 0x1D595: [593,219,640,36,585], // MATHEMATICAL BOLD FRAKTUR SMALL P + 0x1D596: [475,219,574,55,522], // MATHEMATICAL BOLD FRAKTUR SMALL Q + 0x1D597: [475,24,525,40,493], // MATHEMATICAL BOLD FRAKTUR SMALL R + 0x1D598: [643,31,557,52,505], // MATHEMATICAL BOLD FRAKTUR SMALL S + 0x1D599: [656,23,438,45,378], // MATHEMATICAL BOLD FRAKTUR SMALL T + 0x1D59A: [475,24,681,35,629], // MATHEMATICAL BOLD FRAKTUR SMALL U + 0x1D59B: [593,24,573,55,526], // MATHEMATICAL BOLD FRAKTUR SMALL V + 0x1D59C: [593,24,850,55,795], // MATHEMATICAL BOLD FRAKTUR SMALL W + 0x1D59D: [475,209,521,50,489], // MATHEMATICAL BOLD FRAKTUR SMALL X + 0x1D59E: [593,219,596,55,536], // MATHEMATICAL BOLD FRAKTUR SMALL Y + 0x1D59F: [475,219,484,36,437] // MATHEMATICAL BOLD FRAKTUR SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/BoldFraktur.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js new file mode 100644 index 0000000..6c062ec --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js @@ -0,0 +1,67 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2500: [340,-267,708,-11,719], // BOX DRAWINGS LIGHT HORIZONTAL + 0x2502: [910,303,696,312,385], // BOX DRAWINGS LIGHT VERTICAL + 0x250C: [340,303,708,318,720], // BOX DRAWINGS LIGHT DOWN AND RIGHT + 0x2510: [340,303,708,-11,390], // BOX DRAWINGS LIGHT DOWN AND LEFT + 0x2514: [910,-267,708,318,720], // BOX DRAWINGS LIGHT UP AND RIGHT + 0x2518: [910,-267,708,-11,390], // BOX DRAWINGS LIGHT UP AND LEFT + 0x251C: [910,303,708,318,720], // BOX DRAWINGS LIGHT VERTICAL AND RIGHT + 0x2524: [910,303,708,-11,390], // BOX DRAWINGS LIGHT VERTICAL AND LEFT + 0x252C: [340,303,708,-11,719], // BOX DRAWINGS LIGHT DOWN AND HORIZONTAL + 0x2534: [910,-267,708,-11,719], // BOX DRAWINGS LIGHT UP AND HORIZONTAL + 0x253C: [910,303,708,-11,719], // BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL + 0x2550: [433,-174,708,-11,719], // BOX DRAWINGS DOUBLE HORIZONTAL + 0x2551: [910,303,708,225,484], // BOX DRAWINGS DOUBLE VERTICAL + 0x2552: [433,303,708,318,720], // BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE + 0x2553: [340,303,708,225,720], // BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE + 0x2554: [433,303,708,225,719], // BOX DRAWINGS DOUBLE DOWN AND RIGHT + 0x2555: [433,303,708,-11,390], // BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE + 0x2556: [340,303,708,-11,483], // BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE + 0x2557: [433,303,708,-11,483], // BOX DRAWINGS DOUBLE DOWN AND LEFT + 0x2558: [910,-174,708,318,720], // BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE + 0x2559: [910,-267,708,225,720], // BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE + 0x255A: [910,-174,708,225,719], // BOX DRAWINGS DOUBLE UP AND RIGHT + 0x255B: [910,-174,708,-11,390], // BOX DRAWINGS UP SINGLE AND LEFT DOUBLE + 0x255C: [910,-267,708,-11,483], // BOX DRAWINGS UP DOUBLE AND LEFT SINGLE + 0x255D: [910,-174,708,-11,483], // BOX DRAWINGS DOUBLE UP AND LEFT + 0x255E: [910,303,708,318,720], // BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE + 0x255F: [910,303,708,225,720], // BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE + 0x2560: [910,303,708,225,720], // BOX DRAWINGS DOUBLE VERTICAL AND RIGHT + 0x2561: [910,303,708,-11,390], // BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE + 0x2562: [910,303,708,-11,483], // BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE + 0x2563: [910,303,708,-11,483], // BOX DRAWINGS DOUBLE VERTICAL AND LEFT + 0x2564: [433,303,708,-11,719], // BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE + 0x2565: [340,303,708,-11,719], // BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE + 0x2566: [433,303,708,-11,719], // BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL + 0x2567: [910,-174,708,-11,719], // BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE + 0x2568: [910,-267,708,-11,719], // BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE + 0x2569: [910,-174,708,-11,719], // BOX DRAWINGS DOUBLE UP AND HORIZONTAL + 0x256A: [910,303,708,-11,719], // BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE + 0x256B: [910,303,708,-11,719], // BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE + 0x256C: [910,303,708,-11,719] // BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/BoxDrawing.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js new file mode 100644 index 0000000..76ec1e3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js @@ -0,0 +1,99 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x300: [713,-528,0,-369,-131], // COMBINING GRAVE ACCENT + 0x301: [713,-528,0,-369,-131], // COMBINING ACUTE ACCENT + 0x302: [704,-528,0,-418,-81], // COMBINING CIRCUMFLEX ACCENT + 0x303: [674,-547,0,-432,-67], // COMBINING TILDE + 0x304: [637,-565,0,-415,-85], // COMBINING MACRON + 0x305: [838,-788,0,-500,0], // COMBINING OVERLINE + 0x306: [691,-528,0,-401,-98], // COMBINING BREVE + 0x307: [666,-537,0,-314,-185], // COMBINING DOT ABOVE + 0x308: [666,-537,0,-419,-80], // COMBINING DIAERESIS + 0x309: [751,-491,0,-336,-131], // COMBINING HOOK ABOVE + 0x30A: [750,-537,0,-356,-143], // COMBINING RING ABOVE + 0x30B: [713,-528,0,-469,-31], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [704,-528,0,-418,-81], // COMBINING CARON + 0x30D: [730,-530,0,-277,-211], // COMBINING VERTICAL LINE ABOVE + 0x30E: [730,-530,0,-358,-142], // COMBINING DOUBLE VERTICAL LINE ABOVE + 0x30F: [713,-528,0,-469,-31], // COMBINING DOUBLE GRAVE ACCENT + 0x310: [828,-528,0,-401,-98], // COMBINING CANDRABINDU + 0x311: [691,-528,0,-401,-98], // COMBINING INVERTED BREVE + 0x312: [867,-532,0,-342,-158], // COMBINING TURNED COMMA ABOVE + 0x313: [867,-532,0,-342,-158], // COMBINING COMMA ABOVE + 0x314: [867,-532,0,-342,-158], // COMBINING REVERSED COMMA ABOVE + 0x315: [867,-532,0,-116,68], // COMBINING COMMA ABOVE RIGHT + 0x316: [-70,255,0,-369,-131], // COMBINING GRAVE ACCENT BELOW + 0x317: [-70,255,0,-369,-131], // COMBINING ACUTE ACCENT BELOW + 0x318: [-58,288,0,-425,-223], // COMBINING LEFT TACK BELOW + 0x319: [-58,288,0,-288,-86], // COMBINING RIGHT TACK BELOW + 0x31A: [752,-531,0,-410,-93], // COMBINING LEFT ANGLE ABOVE + 0x31B: [505,-352,0,-62,66], // COMBINING HORN + 0x31C: [-33,313,0,-375,-190], // COMBINING LEFT HALF RING BELOW + 0x31D: [-70,272,0,-365,-135], // COMBINING UP TACK BELOW + 0x31E: [-70,272,0,-365,-135], // COMBINING DOWN TACK BELOW + 0x31F: [-70,287,0,-356,-144], // COMBINING PLUS SIGN BELOW + 0x320: [-140,206,0,-356,-144], // COMBINING MINUS SIGN BELOW + 0x321: [75,287,0,-241,-22], // COMBINING PALATALIZED HOOK BELOW + 0x322: [75,287,0,-94,125], // COMBINING RETROFLEX HOOK BELOW + 0x323: [-109,238,0,-314,-185], // COMBINING DOT BELOW + 0x324: [-109,238,0,-419,-80], // COMBINING DIAERESIS BELOW + 0x325: [-66,279,0,-356,-143], // COMBINING RING BELOW + 0x326: [-88,423,0,-342,-158], // COMBINING COMMA BELOW + 0x327: [0,218,0,-363,-137], // COMBINING CEDILLA + 0x328: [44,173,0,-364,-135], // COMBINING OGONEK + 0x329: [-107,239,0,-277,-222], // COMBINING VERTICAL LINE BELOW + 0x32A: [-86,260,0,-425,-93], // COMBINING BRIDGE BELOW + 0x32B: [-104,242,0,-420,-95], // COMBINING INVERTED DOUBLE ARCH BELOW + 0x32C: [-83,259,0,-418,-81], // COMBINING CARON BELOW + 0x32D: [-85,261,0,-418,-81], // COMBINING CIRCUMFLEX ACCENT BELOW + 0x32E: [-78,241,0,-401,-98], // COMBINING BREVE BELOW + 0x32F: [-78,241,0,-401,-98], // COMBINING INVERTED BREVE BELOW + 0x330: [-108,235,0,-432,-67], // COMBINING TILDE BELOW + 0x331: [-137,209,0,-415,-85], // COMBINING MACRON BELOW + 0x332: [-137,187,0,-500,0], // COMBINING LOW LINE + 0x333: [-137,287,0,-500,0], // COMBINING DOUBLE LOW LINE + 0x334: [316,-189,0,-432,-67], // COMBINING TILDE OVERLAY + 0x335: [282,-224,0,-414,-108], // COMBINING SHORT STROKE OVERLAY + 0x336: [282,-224,0,-510,-10], // COMBINING LONG STROKE OVERLAY + 0x337: [580,74,0,-410,-43], // COMBINING SHORT SOLIDUS OVERLAY + 0x338: [662,156,0,-410,31], // COMBINING LONG SOLIDUS OVERLAY + 0x339: [-33,313,0,-375,-190], // COMBINING RIGHT HALF RING BELOW + 0x33A: [-71,245,0,-425,-93], // COMBINING INVERTED BRIDGE BELOW + 0x33B: [-70,264,0,-353,-167], // COMBINING SQUARE BELOW + 0x33C: [-89,234,0,-410,-109], // COMBINING SEAGULL BELOW + 0x33D: [719,-520,0,-350,-150], // COMBINING X ABOVE + 0x33E: [881,-516,0,-314,-187], // COMBINING VERTICAL TILDE + 0x33F: [938,-788,0,-500,0], // COMBINING DOUBLE OVERLINE + 0x346: [717,-544,0,-410,-107], // COMBINING BRIDGE ABOVE + 0x347: [-137,322,0,0,330], // ?? + 0x34C: [837,-547,0,-446,-81], // COMBINING ALMOST EQUAL TO ABOVE + 0x359: [-66,368,0,-359,-89], // COMBINING ASTERISK BELOW + 0x35C: [-79,242,0,-401,300], // COMBINING DOUBLE BREVE BELOW + 0x360: [674,-529,0,-432,398], // COMBINING DOUBLE TILDE + 0x361: [691,-534,0,-403,265], // COMBINING DOUBLE INVERTED BREVE + 0x362: [-54,293,0,-432,377] // COMBINING DOUBLE RIGHTWARDS ARROW BELOW + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js new file mode 100644 index 0000000..64b8ac8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js @@ -0,0 +1,49 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiactForSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x20D0: [846,-637,0,-470,14], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [846,-637,0,-470,14], // COMBINING RIGHT HARPOON ABOVE + 0x20D2: [662,156,0,-298,-223], // COMBINING LONG VERTICAL LINE OVERLAY + 0x20D6: [846,-508,0,-500,-16], // COMBINING LEFT ARROW ABOVE + 0x20D7: [846,-508,0,-470,14], // COMBINING RIGHT ARROW ABOVE + 0x20DB: [666,-537,0,-512,37], // COMBINING THREE DOTS ABOVE + 0x20DC: [666,-537,0,-627,132], // COMBINING FOUR DOTS ABOVE + 0x20DD: [760,254,0,-753,256], // COMBINING ENCLOSING CIRCLE + 0x20E1: [846,-508,0,-515,79], // COMBINING LEFT RIGHT ARROW ABOVE + 0x20E4: [1055,169,0,-998,519], // COMBINING ENCLOSING UPWARD POINTING TRIANGLE + 0x20E5: [662,155,0,-470,12], // COMBINING REVERSE SOLIDUS OVERLAY + 0x20E6: [662,156,0,-390,-111], // COMBINING DOUBLE VERTICAL STROKE OVERLAY + 0x20E7: [760,172,0,-643,200], // COMBINING ANNUITY SYMBOL + 0x20E8: [-109,238,0,-512,37], // COMBINING TRIPLE UNDERDOT + 0x20E9: [717,-544,0,-510,54], // COMBINING WIDE BRIDGE ABOVE + 0x20EA: [441,-65,0,-688,148], // COMBINING LEFTWARDS ARROW OVERLAY + 0x20EB: [775,235,0,-505,208], // COMBINING LONG DOUBLE SOLIDUS OVERLAY + 0x20EC: [-166,375,0,-470,14], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-166,375,0,-470,14], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-35,373,0,-490,-6], // COMBINING LEFT ARROW BELOW + 0x20EF: [-35,373,0,-470,14], // COMBINING RIGHT ARROW BELOW + 0x20F0: [845,-543,0,-385,-115] // COMBINING ASTERISK ABOVE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/CombDiactForSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js new file mode 100644 index 0000000..50063fd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2423: [31,120,500,40,460] // stix-round space indicator + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/ControlPictures.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js new file mode 100644 index 0000000..09fe34e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js @@ -0,0 +1,31 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x20A3: [676,0,611,11,583], // FRENCH FRANC SIGN + 0x20A4: [684,16,500,21,477], // LIRA SIGN + 0x20A7: [676,14,1369,16,1341], // PESETA SIGN + 0x20AC: [672,12,500,29,478] // EURO SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/CurrencySymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js new file mode 100644 index 0000000..fdb2677 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js @@ -0,0 +1,129 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x401: [916,0,667,16,641], // CYRILLIC CAPITAL LETTER IO + 0x402: [676,97,856,40,809], // CYRILLIC CAPITAL LETTER DJE + 0x403: [963,0,632,20,600], // CYRILLIC CAPITAL LETTER GJE + 0x404: [691,19,685,37,638], // CYRILLIC CAPITAL LETTER UKRAINIAN IE + 0x405: [692,19,556,35,513], // CYRILLIC CAPITAL LETTER DZE + 0x406: [676,0,389,20,370], // CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I + 0x407: [916,0,389,20,370], // CYRILLIC CAPITAL LETTER YI + 0x408: [676,96,500,3,478], // CYRILLIC CAPITAL LETTER JE + 0x409: [676,18,1005,10,958], // CYRILLIC CAPITAL LETTER LJE + 0x40A: [676,0,1054,21,1007], // CYRILLIC CAPITAL LETTER NJE + 0x40B: [676,0,883,40,868], // CYRILLIC CAPITAL LETTER TSHE + 0x40C: [923,0,759,21,741], // CYRILLIC CAPITAL LETTER KJE + 0x40E: [926,22,722,15,699], // CYRILLIC CAPITAL LETTER SHORT U + 0x40F: [676,176,770,21,753], // CYRILLIC CAPITAL LETTER DZHE + 0x410: [690,0,722,9,689], // CYRILLIC CAPITAL LETTER A + 0x411: [676,0,667,16,619], // CYRILLIC CAPITAL LETTER BE + 0x412: [676,0,667,16,619], // CYRILLIC CAPITAL LETTER VE + 0x413: [676,0,632,20,600], // CYRILLIC CAPITAL LETTER GHE + 0x414: [676,176,715,24,691], // CYRILLIC CAPITAL LETTER DE + 0x415: [676,0,667,16,641], // CYRILLIC CAPITAL LETTER IE + 0x416: [684,0,1130,32,1091], // CYRILLIC CAPITAL LETTER ZHE + 0x417: [691,19,570,22,531], // CYRILLIC CAPITAL LETTER ZE + 0x418: [676,0,778,21,759], // CYRILLIC CAPITAL LETTER I + 0x419: [926,0,778,21,759], // CYRILLIC CAPITAL LETTER SHORT I + 0x41A: [684,0,759,21,741], // CYRILLIC CAPITAL LETTER KA + 0x41B: [676,18,738,10,719], // CYRILLIC CAPITAL LETTER EL + 0x41C: [676,0,944,14,921], // CYRILLIC CAPITAL LETTER EM + 0x41D: [676,0,778,21,759], // CYRILLIC CAPITAL LETTER EN + 0x41E: [691,19,778,35,743], // CYRILLIC CAPITAL LETTER O + 0x41F: [676,0,762,13,751], // CYRILLIC CAPITAL LETTER PE + 0x420: [676,0,611,16,600], // CYRILLIC CAPITAL LETTER ER + 0x421: [691,19,709,36,674], // CYRILLIC CAPITAL LETTER ES + 0x422: [676,0,667,31,636], // CYRILLIC CAPITAL LETTER TE + 0x423: [676,22,722,15,699], // CYRILLIC CAPITAL LETTER U + 0x424: [676,0,850,25,825], // CYRILLIC CAPITAL LETTER EF + 0x425: [676,0,722,16,699], // CYRILLIC CAPITAL LETTER HA + 0x426: [676,176,770,21,753], // CYRILLIC CAPITAL LETTER TSE + 0x427: [676,0,732,7,710], // CYRILLIC CAPITAL LETTER CHE + 0x428: [676,0,1020,21,1001], // CYRILLIC CAPITAL LETTER SHA + 0x429: [676,176,1020,21,1001], // CYRILLIC CAPITAL LETTER SHCHA + 0x42A: [676,0,805,41,757], // CYRILLIC CAPITAL LETTER HARD SIGN + 0x42B: [676,0,1004,16,985], // CYRILLIC CAPITAL LETTER YERU + 0x42C: [676,0,672,19,624], // CYRILLIC CAPITAL LETTER SOFT SIGN + 0x42D: [691,19,685,37,648], // CYRILLIC CAPITAL LETTER E + 0x42E: [691,19,955,21,920], // CYRILLIC CAPITAL LETTER YU + 0x42F: [676,0,736,12,687], // CYRILLIC CAPITAL LETTER YA + 0x430: [473,14,517,42,505], // CYRILLIC SMALL LETTER A + 0x431: [691,14,500,25,476], // CYRILLIC SMALL LETTER BE + 0x432: [461,0,492,21,475], // CYRILLIC SMALL LETTER VE + 0x433: [461,0,451,21,434], // CYRILLIC SMALL LETTER GHE + 0x434: [461,143,541,19,524], // CYRILLIC SMALL LETTER DE + 0x435: [473,14,444,25,427], // CYRILLIC SMALL LETTER IE + 0x436: [467,0,762,14,748], // CYRILLIC SMALL LETTER ZHE + 0x437: [473,17,446,25,420], // CYRILLIC SMALL LETTER ZE + 0x438: [461,0,556,21,543], // CYRILLIC SMALL LETTER I + 0x439: [691,0,556,21,543], // CYRILLIC SMALL LETTER SHORT I + 0x43A: [467,0,556,22,543], // CYRILLIC SMALL LETTER KA + 0x43B: [461,11,546,11,529], // CYRILLIC SMALL LETTER EL + 0x43C: [461,0,657,20,640], // CYRILLIC SMALL LETTER EM + 0x43D: [461,0,560,21,543], // CYRILLIC SMALL LETTER EN + 0x43E: [473,14,500,25,476], // CYRILLIC SMALL LETTER O + 0x43F: [461,0,556,21,543], // CYRILLIC SMALL LETTER PE + 0x440: [473,205,556,19,524], // CYRILLIC SMALL LETTER ER + 0x441: [473,14,444,25,430], // CYRILLIC SMALL LETTER ES + 0x442: [461,0,509,18,493], // CYRILLIC SMALL LETTER TE + 0x443: [461,205,520,16,502], // CYRILLIC SMALL LETTER U + 0x444: [676,205,726,31,693], // CYRILLIC SMALL LETTER EF + 0x445: [461,0,500,12,484], // CYRILLIC SMALL LETTER HA + 0x446: [461,143,556,21,543], // CYRILLIC SMALL LETTER TSE + 0x447: [461,0,559,20,542], // CYRILLIC SMALL LETTER CHE + 0x448: [461,0,841,21,824], // CYRILLIC SMALL LETTER SHA + 0x449: [461,143,841,21,824], // CYRILLIC SMALL LETTER SHCHA + 0x44A: [461,0,607,15,592], // CYRILLIC SMALL LETTER HARD SIGN + 0x44B: [461,0,759,22,741], // CYRILLIC SMALL LETTER YERU + 0x44C: [461,0,498,21,483], // CYRILLIC SMALL LETTER SOFT SIGN + 0x44D: [473,14,453,24,429], // CYRILLIC SMALL LETTER E + 0x44E: [473,14,785,21,761], // CYRILLIC SMALL LETTER YU + 0x44F: [461,0,526,11,509], // CYRILLIC SMALL LETTER YA + 0x451: [666,14,444,25,427], // CYRILLIC SMALL LETTER IO + 0x452: [676,205,556,15,485], // CYRILLIC SMALL LETTER DJE + 0x453: [713,0,451,21,434], // CYRILLIC SMALL LETTER GJE + 0x454: [473,14,453,24,429], // CYRILLIC SMALL LETTER UKRAINIAN IE + 0x455: [473,14,389,25,361], // CYRILLIC SMALL LETTER DZE + 0x456: [691,0,278,15,256], // CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I + 0x457: [666,0,278,-30,309], // CYRILLIC SMALL LETTER YI + 0x458: [691,203,333,-57,263], // CYRILLIC SMALL LETTER JE + 0x459: [461,11,760,11,745], // CYRILLIC SMALL LETTER LJE + 0x45A: [461,0,775,21,760], // CYRILLIC SMALL LETTER NJE + 0x45B: [676,0,556,15,534], // CYRILLIC SMALL LETTER TSHE + 0x45C: [713,0,556,22,543], // CYRILLIC SMALL LETTER KJE + 0x45E: [691,205,500,16,502], // CYRILLIC SMALL LETTER SHORT U + 0x45F: [461,143,556,21,543], // CYRILLIC SMALL LETTER DZHE + 0x462: [676,0,793,31,745], // CYRILLIC CAPITAL LETTER YAT + 0x463: [676,0,602,15,587], // CYRILLIC SMALL LETTER YAT + 0x46A: [676,0,1123,30,1088], // CYRILLIC CAPITAL LETTER BIG YUS + 0x46B: [461,0,762,14,748], // CYRILLIC SMALL LETTER BIG YUS + 0x472: [691,19,778,35,743], // CYRILLIC CAPITAL LETTER FITA + 0x473: [473,14,500,25,476], // CYRILLIC SMALL LETTER FITA + 0x474: [691,18,793,16,778], // CYRILLIC CAPITAL LETTER IZHITSA + 0x475: [470,14,559,21,550], // CYRILLIC SMALL LETTER IZHITSA + 0x490: [833,0,626,14,594], // CYRILLIC CAPITAL LETTER GHE WITH UPTURN + 0x491: [602,0,451,21,434] // CYRILLIC SMALL LETTER GHE WITH UPTURN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/Cyrillic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js new file mode 100644 index 0000000..ad85d07 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2460: [690,19,695,0,695], // CIRCLED DIGIT ONE + 0x2461: [690,19,695,0,695], // CIRCLED DIGIT TWO + 0x2462: [690,19,695,0,695], // CIRCLED DIGIT THREE + 0x2463: [690,19,695,0,695], // CIRCLED DIGIT FOUR + 0x2464: [690,19,695,0,695], // CIRCLED DIGIT FIVE + 0x2465: [690,19,695,0,695], // CIRCLED DIGIT SIX + 0x2466: [690,19,695,0,695], // CIRCLED DIGIT SEVEN + 0x2467: [690,19,695,0,695], // CIRCLED DIGIT EIGHT + 0x2468: [690,19,695,0,695], // CIRCLED DIGIT NINE + 0x24B6: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER A + 0x24B7: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER B + 0x24B8: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER C + 0x24B9: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER D + 0x24BA: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER E + 0x24BB: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER F + 0x24BC: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER G + 0x24BD: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER H + 0x24BE: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER I + 0x24BF: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER J + 0x24C0: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER K + 0x24C1: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER L + 0x24C2: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER M + 0x24C3: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER N + 0x24C4: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER O + 0x24C5: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER P + 0x24C6: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER Q + 0x24C7: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER R + 0x24C8: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER S + 0x24C9: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER T + 0x24CA: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER U + 0x24CB: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER V + 0x24CC: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER W + 0x24CD: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER X + 0x24CE: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER Y + 0x24CF: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER Z + 0x24D0: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER A + 0x24D1: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER B + 0x24D2: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER C + 0x24D3: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER D + 0x24D4: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER E + 0x24D5: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER F + 0x24D6: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER G + 0x24D7: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER H + 0x24D8: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER I + 0x24D9: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER J + 0x24DA: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER K + 0x24DB: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER L + 0x24DC: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER M + 0x24DD: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER N + 0x24DE: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER O + 0x24DF: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER P + 0x24E0: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER Q + 0x24E1: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER R + 0x24E2: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER S + 0x24E3: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER T + 0x24E4: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER U + 0x24E5: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER V + 0x24E6: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER W + 0x24E7: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER X + 0x24E8: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER Y + 0x24E9: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER Z + 0x24EA: [690,19,695,0,695] // CIRCLED DIGIT ZERO + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/EnclosedAlphanum.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js new file mode 100644 index 0000000..5534973 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js @@ -0,0 +1,67 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeneralPunctuation.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2010: [287,-171,333,44,287], // HYPHEN + 0x2011: [287,-171,333,44,287], // NON-BREAKING HYPHEN + 0x2012: [287,-171,500,0,500], // FIGURE DASH + 0x2013: [271,-181,500,0,500], // EN DASH + 0x2014: [271,-181,1000,0,1000], // EM DASH + 0x2015: [271,-181,2000,0,2000], // HORIZONTAL BAR + 0x2017: [-137,287,520,10,510], // DOUBLE LOW LINE + 0x2018: [691,-356,333,70,254], // LEFT SINGLE QUOTATION MARK + 0x2019: [691,-356,333,79,263], // RIGHT SINGLE QUOTATION MARK + 0x201A: [155,180,333,79,263], // SINGLE LOW-9 QUOTATION MARK + 0x201B: [691,-356,333,79,263], // SINGLE HIGH-REVERSED-9 QUOTATION MARK + 0x201C: [691,-356,500,32,486], // LEFT DOUBLE QUOTATION MARK + 0x201D: [691,-356,500,14,468], // RIGHT DOUBLE QUOTATION MARK + 0x201E: [155,180,500,14,468], // DOUBLE LOW-9 QUOTATION MARK + 0x201F: [691,-356,500,14,468], // DOUBLE HIGH-REVERSED-9 QUOTATION MARK + 0x2020: [691,134,500,47,453], // DAGGER + 0x2021: [691,132,500,45,456], // DOUBLE DAGGER + 0x2022: [462,-42,560,70,490], // BULLET + 0x2025: [156,13,666,82,584], // TWO DOT LEADER + 0x2026: [156,13,1000,82,917], // HORIZONTAL ELLIPSIS + 0x2030: [706,29,1110,61,1049], // PER MILLE SIGN + 0x2031: [706,29,1472,61,1411], // PER TEN THOUSAND SIGN + 0x2032: [713,-438,310,75,235], // PRIME + 0x2033: [713,-438,467,75,392], // DOUBLE PRIME + 0x2034: [713,-438,625,75,550], // TRIPLE PRIME + 0x2035: [713,-438,310,75,235], // REVERSED PRIME + 0x2036: [713,-438,467,75,392], // REVERSED DOUBLE PRIME + 0x2037: [713,-438,625,75,550], // REVERSED TRIPLE PRIME + 0x2038: [117,170,584,91,497], // CARET + 0x2039: [415,-36,333,51,305], // SINGLE LEFT-POINTING ANGLE QUOTATION MARK + 0x203A: [415,-36,333,28,282], // SINGLE RIGHT-POINTING ANGLE QUOTATION MARK + 0x203C: [691,13,625,81,544], // DOUBLE EXCLAMATION MARK + 0x203E: [838,-766,500,0,500], // OVERLINE + 0x2040: [725,-508,798,79,733], // CHARACTER TIE + 0x2044: [688,12,183,-168,345], // FRACTION SLASH + 0x2047: [689,13,947,57,892], // DOUBLE QUESTION MARK + 0x204E: [236,200,500,56,448], // LOW ASTERISK + 0x204F: [472,180,333,67,251], // REVERSED SEMICOLON + 0x2051: [706,200,500,56,448], // TWO ASTERISKS ALIGNED VERTICALLY + 0x2057: [713,-438,783,75,708] // QUADRUPLE PRIME + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js new file mode 100644 index 0000000..c6ba555 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js @@ -0,0 +1,33 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x25B3: [811,127,1145,35,1110], // WHITE UP-POINTING TRIANGLE + 0x25B7: [791,284,1043,70,1008], // WHITE RIGHT-POINTING TRIANGLE + 0x25BD: [811,127,1145,35,1110], // WHITE DOWN-POINTING TRIANGLE + 0x25C1: [791,284,1043,35,973], // WHITE LEFT-POINTING TRIANGLE + 0x25CA: [795,289,790,45,745], // LOZENGE + 0x25EC: [811,127,1145,35,1110] // WHITE UP-POINTING TRIANGLE WITH DOT + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/GeometricShapes.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js new file mode 100644 index 0000000..8c2831c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js @@ -0,0 +1,109 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x37E: [472,180,333,82,266], // GREEK QUESTION MARK + 0x384: [692,-528,300,118,263], // GREEK TONOS + 0x385: [692,-528,390,-2,392], // GREEK DIALYTIKA TONOS + 0x386: [700,0,722,9,689], // GREEK CAPITAL LETTER ALPHA WITH TONOS + 0x387: [472,-303,333,82,251], // GREEK ANO TELEIA + 0x388: [700,0,800,10,791], // GREEK CAPITAL LETTER EPSILON WITH TONOS + 0x389: [700,0,920,10,904], // GREEK CAPITAL LETTER ETA WITH TONOS + 0x38A: [700,0,530,10,516], // GREEK CAPITAL LETTER IOTA WITH TONOS + 0x38C: [700,19,778,10,743], // GREEK CAPITAL LETTER OMICRON WITH TONOS + 0x38E: [700,0,860,10,846], // GREEK CAPITAL LETTER UPSILON WITH TONOS + 0x38F: [700,0,780,10,761], // GREEK CAPITAL LETTER OMEGA WITH TONOS + 0x390: [692,14,390,-2,392], // GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS + 0x391: [690,0,722,9,689], // GREEK CAPITAL LETTER ALPHA + 0x392: [676,0,667,16,619], // GREEK CAPITAL LETTER BETA + 0x395: [676,0,667,16,641], // GREEK CAPITAL LETTER EPSILON + 0x396: [676,0,667,28,634], // GREEK CAPITAL LETTER ZETA + 0x397: [676,0,778,21,759], // GREEK CAPITAL LETTER ETA + 0x399: [676,0,389,20,370], // GREEK CAPITAL LETTER IOTA + 0x39A: [676,0,778,30,769], // GREEK CAPITAL LETTER KAPPA + 0x39C: [676,0,944,14,921], // GREEK CAPITAL LETTER MU + 0x39D: [676,18,722,16,701], // GREEK CAPITAL LETTER NU + 0x39F: [691,19,778,35,743], // GREEK CAPITAL LETTER OMICRON + 0x3A1: [676,0,611,16,600], // GREEK CAPITAL LETTER RHO + 0x3A4: [676,0,667,31,636], // GREEK CAPITAL LETTER TAU + 0x3A7: [676,0,722,16,699], // GREEK CAPITAL LETTER CHI + 0x3AA: [915,0,389,20,370], // GREEK CAPITAL LETTER IOTA WITH DIALYTIKA + 0x3AB: [915,0,703,7,693], // GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA + 0x3AC: [692,14,644,25,618], // GREEK SMALL LETTER ALPHA WITH TONOS + 0x3AD: [692,14,444,28,429], // GREEK SMALL LETTER EPSILON WITH TONOS + 0x3AE: [692,205,585,12,545], // GREEK SMALL LETTER ETA WITH TONOS + 0x3AF: [692,14,326,15,304], // GREEK SMALL LETTER IOTA WITH TONOS + 0x3B0: [692,14,576,12,551], // GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS + 0x3B1: [473,14,644,25,618], // GREEK SMALL LETTER ALPHA + 0x3B2: [692,205,556,45,524], // GREEK SMALL LETTER BETA + 0x3B3: [473,205,518,12,501], // GREEK SMALL LETTER GAMMA + 0x3B4: [692,14,502,26,477], // GREEK SMALL LETTER DELTA + 0x3B5: [473,14,444,28,429], // GREEK SMALL LETTER EPSILON + 0x3B6: [692,205,459,23,437], // GREEK SMALL LETTER ZETA + 0x3B7: [473,205,585,12,545], // GREEK SMALL LETTER ETA + 0x3B8: [692,14,501,25,476], // GREEK SMALL LETTER THETA + 0x3B9: [461,14,326,15,304], // GREEK SMALL LETTER IOTA + 0x3BA: [473,0,581,21,559], // GREEK SMALL LETTER KAPPA + 0x3BB: [692,18,547,19,527], // GREEK SMALL LETTER LAMDA + 0x3BC: [461,205,610,45,588], // GREEK SMALL LETTER MU + 0x3BD: [473,14,518,15,495], // GREEK SMALL LETTER NU + 0x3BE: [692,205,468,23,439], // GREEK SMALL LETTER XI + 0x3BF: [473,14,500,25,476], // GREEK SMALL LETTER OMICRON + 0x3C0: [461,18,631,20,609], // GREEK SMALL LETTER PI + 0x3C1: [473,205,547,45,515], // GREEK SMALL LETTER RHO + 0x3C2: [473,203,464,23,444], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [461,14,568,25,529], // GREEK SMALL LETTER SIGMA + 0x3C4: [461,14,492,18,457], // GREEK SMALL LETTER TAU + 0x3C5: [473,14,576,12,551], // GREEK SMALL LETTER UPSILON + 0x3C6: [473,205,653,24,629], // GREEK SMALL LETTER PHI + 0x3C7: [473,205,612,21,586], // GREEK SMALL LETTER CHI + 0x3C8: [473,205,763,12,751], // GREEK SMALL LETTER PSI + 0x3C9: [473,14,733,26,708], // GREEK SMALL LETTER OMEGA + 0x3CA: [666,14,335,-2,337], // GREEK SMALL LETTER IOTA WITH DIALYTIKA + 0x3CB: [666,14,576,12,551], // GREEK SMALL LETTER UPSILON WITH DIALYTIKA + 0x3CC: [692,14,500,25,476], // GREEK SMALL LETTER OMICRON WITH TONOS + 0x3CD: [692,14,576,12,551], // GREEK SMALL LETTER UPSILON WITH TONOS + 0x3CE: [692,14,733,26,708], // GREEK SMALL LETTER OMEGA WITH TONOS + 0x3D0: [697,10,500,54,462], // GREEK BETA SYMBOL + 0x3D1: [692,14,647,12,620], // GREEK THETA SYMBOL + 0x3D2: [692,0,743,7,733], // GREEK UPSILON WITH HOOK SYMBOL + 0x3D5: [676,205,653,24,629], // GREEK PHI SYMBOL + 0x3D6: [461,14,864,9,851], // GREEK PI SYMBOL + 0x3D8: [691,205,778,35,743], // GREEK LETTER ARCHAIC KOPPA + 0x3D9: [473,205,500,25,476], // GREEK SMALL LETTER ARCHAIC KOPPA + 0x3DA: [691,211,680,45,645], // GREEK LETTER STIGMA + 0x3DB: [503,203,504,23,483], // GREEK SMALL LETTER STIGMA + 0x3DC: [676,0,620,16,593], // GREEK LETTER DIGAMMA + 0x3DD: [461,205,491,45,458], // GREEK SMALL LETTER DIGAMMA + 0x3DE: [797,14,757,35,715], // GREEK LETTER KOPPA + 0x3DF: [692,0,485,29,453], // GREEK SMALL LETTER KOPPA + 0x3E0: [692,205,839,33,801], // GREEK LETTER SAMPI + 0x3E1: [639,205,611,29,583], // GREEK SMALL LETTER SAMPI + 0x3F0: [473,19,563,12,546], // GREEK KAPPA SYMBOL + 0x3F1: [473,205,511,25,486], // GREEK RHO SYMBOL + 0x3F4: [691,19,778,35,743], // GREEK CAPITAL THETA SYMBOL + 0x3F5: [473,14,444,25,430], // GREEK LUNATE EPSILON SYMBOL + 0x3F6: [473,14,444,14,419] // GREEK REVERSED LUNATE EPSILON SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/GreekAndCoptic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js new file mode 100644 index 0000000..acdb424 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x1D6A8: [690,0,735,9,689], // MATHEMATICAL BOLD CAPITAL ALPHA + 0x1D6A9: [676,0,667,16,619], // MATHEMATICAL BOLD CAPITAL BETA + 0x1D6AA: [676,0,620,16,593], // MATHEMATICAL BOLD CAPITAL GAMMA + 0x1D6AB: [690,0,691,16,656], // MATHEMATICAL BOLD CAPITAL DELTA + 0x1D6AC: [676,0,679,16,641], // MATHEMATICAL BOLD CAPITAL EPSILON + 0x1D6AD: [676,0,693,28,634], // MATHEMATICAL BOLD CAPITAL ZETA + 0x1D6AE: [676,0,810,21,759], // MATHEMATICAL BOLD CAPITAL ETA + 0x1D6AF: [692,18,778,35,743], // MATHEMATICAL BOLD CAPITAL THETA + 0x1D6B0: [676,0,421,20,370], // MATHEMATICAL BOLD CAPITAL IOTA + 0x1D6B1: [676,0,820,30,769], // MATHEMATICAL BOLD CAPITAL KAPPA + 0x1D6B2: [690,0,707,9,674], // MATHEMATICAL BOLD CAPITAL LAMDA + 0x1D6B3: [676,0,972,14,921], // MATHEMATICAL BOLD CAPITAL MU + 0x1D6B4: [676,18,722,16,701], // MATHEMATICAL BOLD CAPITAL NU + 0x1D6B5: [676,0,623,28,595], // MATHEMATICAL BOLD CAPITAL XI + 0x1D6B6: [691,19,778,35,743], // MATHEMATICAL BOLD CAPITAL OMICRON + 0x1D6B7: [676,0,780,21,759], // MATHEMATICAL BOLD CAPITAL PI + 0x1D6B8: [676,0,611,16,600], // MATHEMATICAL BOLD CAPITAL RHO + 0x1D6B9: [692,18,778,35,743], // MATHEMATICAL BOLD CAPITAL THETA SYMBOL + 0x1D6BA: [676,0,665,14,627], // MATHEMATICAL BOLD CAPITAL SIGMA + 0x1D6BB: [676,0,667,31,636], // MATHEMATICAL BOLD CAPITAL TAU + 0x1D6BC: [692,0,722,3,699], // MATHEMATICAL BOLD CAPITAL UPSILON + 0x1D6BD: [676,0,836,18,818], // MATHEMATICAL BOLD CAPITAL PHI + 0x1D6BE: [676,0,747,16,699], // MATHEMATICAL BOLD CAPITAL CHI + 0x1D6BF: [692,0,800,3,785], // MATHEMATICAL BOLD CAPITAL PSI + 0x1D6C0: [692,0,778,35,723], // MATHEMATICAL BOLD CAPITAL OMEGA + 0x1D6C1: [676,14,691,16,656], // MATHEMATICAL BOLD NABLA + 0x1D6C2: [473,14,644,25,618], // MATHEMATICAL BOLD SMALL ALPHA + 0x1D6C3: [692,205,556,45,524], // MATHEMATICAL BOLD SMALL BETA + 0x1D6C4: [473,205,518,12,501], // MATHEMATICAL BOLD SMALL GAMMA + 0x1D6C5: [692,14,502,26,477], // MATHEMATICAL BOLD SMALL DELTA + 0x1D6C6: [473,14,444,28,429], // MATHEMATICAL BOLD SMALL EPSILON + 0x1D6C7: [692,205,459,23,437], // MATHEMATICAL BOLD SMALL ZETA + 0x1D6C8: [473,205,580,12,545], // MATHEMATICAL BOLD SMALL ETA + 0x1D6C9: [692,14,501,25,476], // MATHEMATICAL BOLD SMALL THETA + 0x1D6CA: [461,14,326,15,304], // MATHEMATICAL BOLD SMALL IOTA + 0x1D6CB: [473,0,581,21,559], // MATHEMATICAL BOLD SMALL KAPPA + 0x1D6CC: [692,18,546,19,527], // MATHEMATICAL BOLD SMALL LAMDA + 0x1D6CD: [461,205,610,45,588], // MATHEMATICAL BOLD SMALL MU + 0x1D6CE: [473,14,518,15,495], // MATHEMATICAL BOLD SMALL NU + 0x1D6CF: [692,205,465,23,439], // MATHEMATICAL BOLD SMALL XI + 0x1D6D0: [473,14,500,25,476], // MATHEMATICAL BOLD SMALL OMICRON + 0x1D6D1: [461,18,631,20,609], // MATHEMATICAL BOLD SMALL PI + 0x1D6D2: [473,205,547,45,515], // MATHEMATICAL BOLD SMALL RHO + 0x1D6D3: [473,203,464,23,444], // MATHEMATICAL BOLD SMALL FINAL SIGMA + 0x1D6D4: [461,14,568,25,529], // MATHEMATICAL BOLD SMALL SIGMA + 0x1D6D5: [461,14,492,18,457], // MATHEMATICAL BOLD SMALL TAU + 0x1D6D6: [473,14,576,12,551], // MATHEMATICAL BOLD SMALL UPSILON + 0x1D6D7: [473,205,653,24,629], // MATHEMATICAL BOLD SMALL PHI + 0x1D6D8: [473,205,612,21,586], // MATHEMATICAL BOLD SMALL CHI + 0x1D6D9: [473,205,763,12,751], // MATHEMATICAL BOLD SMALL PSI + 0x1D6DA: [473,14,734,26,708], // MATHEMATICAL BOLD SMALL OMEGA + 0x1D6DB: [707,14,515,25,491], // MATHEMATICAL BOLD PARTIAL DIFFERENTIAL + 0x1D6DC: [473,14,444,25,430], // MATHEMATICAL BOLD EPSILON SYMBOL + 0x1D6DD: [692,14,647,12,620], // MATHEMATICAL BOLD THETA SYMBOL + 0x1D6DE: [473,19,563,12,546], // MATHEMATICAL BOLD KAPPA SYMBOL + 0x1D6DF: [676,205,653,24,629], // MATHEMATICAL BOLD PHI SYMBOL + 0x1D6E0: [473,205,511,25,486], // MATHEMATICAL BOLD RHO SYMBOL + 0x1D6E1: [461,14,864,9,851] // MATHEMATICAL BOLD PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/GreekBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js new file mode 100644 index 0000000..c044574 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x1D756: [690,0,690,25,665], // MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA + 0x1D757: [676,0,636,80,594], // MATHEMATICAL SANS-SERIF BOLD CAPITAL BETA + 0x1D758: [676,0,591,80,569], // MATHEMATICAL SANS-SERIF BOLD CAPITAL GAMMA + 0x1D759: [690,0,720,40,680], // MATHEMATICAL SANS-SERIF BOLD CAPITAL DELTA + 0x1D75A: [676,0,635,80,597], // MATHEMATICAL SANS-SERIF BOLD CAPITAL EPSILON + 0x1D75B: [676,0,653,25,623], // MATHEMATICAL SANS-SERIF BOLD CAPITAL ZETA + 0x1D75C: [676,0,715,80,635], // MATHEMATICAL SANS-SERIF BOLD CAPITAL ETA + 0x1D75D: [691,19,778,35,743], // MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA + 0x1D75E: [676,0,440,65,375], // MATHEMATICAL SANS-SERIF BOLD CAPITAL IOTA + 0x1D75F: [676,0,712,80,707], // MATHEMATICAL SANS-SERIF BOLD CAPITAL KAPPA + 0x1D760: [690,0,706,40,666], // MATHEMATICAL SANS-SERIF BOLD CAPITAL LAMDA + 0x1D761: [676,0,913,80,833], // MATHEMATICAL SANS-SERIF BOLD CAPITAL MU + 0x1D762: [676,18,724,80,644], // MATHEMATICAL SANS-SERIF BOLD CAPITAL NU + 0x1D763: [676,0,640,35,605], // MATHEMATICAL SANS-SERIF BOLD CAPITAL XI + 0x1D764: [692,18,778,35,743], // MATHEMATICAL SANS-SERIF BOLD CAPITAL OMICRON + 0x1D765: [676,0,715,80,635], // MATHEMATICAL SANS-SERIF BOLD CAPITAL PI + 0x1D766: [676,0,581,80,569], // MATHEMATICAL SANS-SERIF BOLD CAPITAL RHO + 0x1D767: [691,19,778,35,743], // MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA SYMBOL + 0x1D768: [676,0,674,28,632], // MATHEMATICAL SANS-SERIF BOLD CAPITAL SIGMA + 0x1D769: [676,0,641,14,627], // MATHEMATICAL SANS-SERIF BOLD CAPITAL TAU + 0x1D76A: [691,0,748,20,728], // MATHEMATICAL SANS-SERIF BOLD CAPITAL UPSILON + 0x1D76B: [676,0,800,25,775], // MATHEMATICAL SANS-SERIF BOLD CAPITAL PHI + 0x1D76C: [676,0,740,40,700], // MATHEMATICAL SANS-SERIF BOLD CAPITAL CHI + 0x1D76D: [691,0,806,15,791], // MATHEMATICAL SANS-SERIF BOLD CAPITAL PSI + 0x1D76E: [691,0,752,32,720], // MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA + 0x1D76F: [664,30,735,45,685], // MATHEMATICAL SANS-SERIF BOLD NABLA + 0x1D770: [473,14,662,40,629], // MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA + 0x1D771: [692,205,512,39,487], // MATHEMATICAL SANS-SERIF BOLD SMALL BETA + 0x1D772: [473,205,502,10,477], // MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA + 0x1D773: [692,14,502,25,477], // MATHEMATICAL SANS-SERIF BOLD SMALL DELTA + 0x1D774: [473,14,451,25,434], // MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON + 0x1D775: [692,205,500,28,488], // MATHEMATICAL SANS-SERIF BOLD SMALL ZETA + 0x1D776: [473,205,510,35,474], // MATHEMATICAL SANS-SERIF BOLD SMALL ETA + 0x1D777: [692,14,500,23,477], // MATHEMATICAL SANS-SERIF BOLD SMALL THETA + 0x1D778: [461,14,319,53,296], // MATHEMATICAL SANS-SERIF BOLD SMALL IOTA + 0x1D779: [473,0,527,55,512], // MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA + 0x1D77A: [692,14,554,18,520], // MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA + 0x1D77B: [461,205,550,39,517], // MATHEMATICAL SANS-SERIF BOLD SMALL MU + 0x1D77C: [473,14,492,55,472], // MATHEMATICAL SANS-SERIF BOLD SMALL NU + 0x1D77D: [692,205,501,28,489], // MATHEMATICAL SANS-SERIF BOLD SMALL XI + 0x1D77E: [473,14,501,25,476], // MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON + 0x1D77F: [461,14,594,10,572], // MATHEMATICAL SANS-SERIF BOLD SMALL PI + 0x1D780: [473,205,511,38,486], // MATHEMATICAL SANS-SERIF BOLD SMALL RHO + 0x1D781: [473,205,498,26,486], // MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA + 0x1D782: [461,14,520,25,552], // MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA + 0x1D783: [461,14,479,6,472], // MATHEMATICAL SANS-SERIF BOLD SMALL TAU + 0x1D784: [473,14,514,35,489], // MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON + 0x1D785: [473,205,634,25,609], // MATHEMATICAL SANS-SERIF BOLD SMALL PHI + 0x1D786: [473,205,573,9,553], // MATHEMATICAL SANS-SERIF BOLD SMALL CHI + 0x1D787: [473,205,680,25,699], // MATHEMATICAL SANS-SERIF BOLD SMALL PSI + 0x1D788: [461,14,740,42,689], // MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA + 0x1D789: [691,14,501,25,476], // MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL + 0x1D78A: [473,14,462,25,440], // MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL + 0x1D78B: [692,14,536,35,522], // MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL + 0x1D78C: [473,14,570,14,554], // MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL + 0x1D78D: [692,205,634,25,609], // MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL + 0x1D78E: [473,205,494,25,469], // MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL + 0x1D78F: [461,14,848,6,839] // MATHEMATICAL SANS-SERIF BOLD PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/GreekSSBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js new file mode 100644 index 0000000..517a64d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js @@ -0,0 +1,116 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x250: [473,14,512,13,476], // ?? + 0x251: [473,14,608,32,594], // ?? + 0x252: [473,14,608,32,594], // ?? + 0x253: [691,14,560,74,523], // ?? + 0x254: [473,14,472,15,420], // ?? + 0x255: [473,161,477,30,445], // ?? + 0x256: [676,233,602,32,660], // ?? + 0x257: [683,14,650,32,660], // ?? + 0x258: [473,14,457,25,427], // ?? + 0x259: [473,14,457,19,421], // ?? + 0x25A: [473,14,688,41,677], // ?? + 0x25B: [475,14,493,25,439], // ?? + 0x25C: [475,14,493,25,439], // ?? + 0x25D: [475,14,683,25,658], // ?? + 0x25E: [475,14,523,25,469], // ?? + 0x25F: [461,203,338,-54,314], // ?? + 0x260: [683,245,627,37,662], // ?? + 0x261: [473,245,571,37,484], // ?? + 0x262: [461,11,590,35,555], // ?? + 0x263: [461,233,532,24,507], // ?? + 0x264: [450,10,514,17,497], // ?? + 0x265: [450,226,550,17,536], // ?? + 0x266: [683,0,550,14,532], // ?? + 0x267: [683,205,556,16,485], // ?? + 0x268: [691,0,292,21,262], // ?? + 0x269: [456,8,366,22,339], // ?? + 0x26A: [461,0,297,26,264], // ?? + 0x26B: [676,0,395,15,380], // ?? + 0x26C: [676,0,446,17,428], // ?? + 0x26D: [676,233,326,15,384], // ?? + 0x26E: [676,236,619,24,603], // ?? + 0x26F: [473,0,828,16,815], // ?? + 0x270: [473,233,859,16,836], // ?? + 0x271: [473,233,847,21,770], // ?? + 0x272: [473,233,625,-57,586], // ?? + 0x273: [473,233,610,21,668], // ?? + 0x274: [461,12,604,34,558], // ?? + 0x275: [473,14,520,34,485], // ?? + 0x276: [461,5,741,28,713], // ?? + 0x277: [477,2,696,42,653], // ?? + 0x278: [685,231,713,45,667], // ?? + 0x279: [463,10,456,35,441], // ?? + 0x27A: [676,10,456,35,441], // ?? + 0x27B: [463,233,506,35,564], // ?? + 0x27C: [473,233,426,10,416], // ?? + 0x27D: [473,233,454,12,418], // ?? + 0x27E: [484,0,359,15,386], // ?? + 0x27F: [484,0,404,10,381], // ?? + 0x280: [464,0,516,21,495], // ?? + 0x281: [464,0,516,21,495], // ?? + 0x282: [473,218,389,25,361], // ?? + 0x283: [683,233,458,-36,406], // ?? + 0x284: [683,233,373,-57,430], // ?? + 0x285: [470,233,396,8,452], // ?? + 0x286: [683,243,399,-16,449], // ?? + 0x287: [513,129,333,19,332], // ?? + 0x288: [630,233,339,19,389], // ?? + 0x289: [461,14,556,9,538], // ?? + 0x28A: [452,8,500,13,487], // ?? + 0x28B: [465,10,534,23,511], // ?? + 0x28C: [475,0,500,21,485], // ?? + 0x28D: [475,0,722,23,707], // ?? + 0x28E: [666,0,500,16,482], // ?? + 0x28F: [464,0,633,46,587], // ?? + 0x290: [461,218,531,21,577], // ?? + 0x291: [461,150,538,21,517], // ?? + 0x292: [450,236,440,8,430], // ?? + 0x293: [450,307,440,8,430], // ?? + 0x294: [683,0,417,55,426], // ?? + 0x295: [683,0,417,55,426], // ?? + 0x296: [669,14,417,55,426], // ?? + 0x297: [473,232,479,72,447], // ?? + 0x298: [680,17,723,13,708], // ?? + 0x299: [464,0,456,15,441], // ?? + 0x29A: [475,14,465,11,455], // ?? + 0x29B: [537,11,600,29,595], // ?? + 0x29C: [464,0,582,21,561], // ?? + 0x29D: [691,233,394,-60,414], // ?? + 0x29E: [461,215,556,22,543], // ?? + 0x29F: [464,0,470,17,440], // ?? + 0x2A0: [582,205,636,34,659], // ?? + 0x2A1: [683,0,500,55,426], // ?? + 0x2A2: [683,0,500,55,426], // ?? + 0x2A3: [676,14,868,25,843], // ?? + 0x2A4: [676,236,810,25,794], // ?? + 0x2A5: [676,164,960,25,933], // ?? + 0x2A6: [630,12,626,19,598], // ?? + 0x2A7: [683,233,540,19,626], // ?? + 0x2A8: [630,12,700,19,690] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/IPAExtensions.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js new file mode 100644 index 0000000..74819d9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js @@ -0,0 +1,123 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xA1: [501,203,333,82,252], // INVERTED EXCLAMATION MARK + 0xA2: [588,140,500,53,458], // CENT SIGN + 0xA3: [684,16,500,21,477], // POUND SIGN + 0xA4: [542,10,500,-26,526], // CURRENCY SIGN + 0xA5: [676,0,500,-64,547], // YEN SIGN + 0xA6: [691,19,220,66,154], // BROKEN BAR + 0xA7: [691,132,500,57,443], // SECTION SIGN + 0xA8: [666,-537,333,-2,337], // DIAERESIS + 0xA9: [691,19,747,26,721], // COPYRIGHT SIGN + 0xAA: [688,-397,300,-1,301], // FEMININE ORDINAL INDICATOR + 0xAB: [415,-36,500,23,473], // LEFT-POINTING DOUBLE ANGLE QUOTATION MARK + 0xAC: [399,-108,750,65,685], // NOT SIGN + 0xAD: [287,-171,333,44,287], // SOFT HYPHEN + 0xAE: [691,19,747,26,721], // REGISTERED SIGN + 0xAF: [637,-565,333,1,331], // MACRON + 0xB0: [688,-402,400,57,343], // DEGREE SIGN + 0xB1: [518,151,770,65,685], // PLUS-MINUS SIGN + 0xB2: [688,-275,300,0,300], // SUPERSCRIPT TWO + 0xB3: [688,-268,300,3,297], // SUPERSCRIPT THREE + 0xB4: [713,-528,333,86,324], // ACUTE ACCENT + 0xB5: [461,206,556,33,536], // MICRO SIGN + 0xB6: [676,186,639,60,579], // PILCROW SIGN + 0xB7: [417,-248,250,41,210], // MIDDLE DOT + 0xB8: [0,218,333,68,294], // CEDILLA + 0xB9: [688,-275,300,28,273], // SUPERSCRIPT ONE + 0xBA: [688,-397,330,18,312], // MASCULINE ORDINAL INDICATOR + 0xBB: [415,-36,500,27,477], // RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK + 0xBC: [688,12,750,28,743], // VULGAR FRACTION ONE QUARTER + 0xBD: [688,12,750,-7,775], // VULGAR FRACTION ONE HALF + 0xBE: [688,12,750,23,733], // VULGAR FRACTION THREE QUARTERS + 0xBF: [501,201,500,55,443], // INVERTED QUESTION MARK + 0xC0: [963,0,722,9,689], // LATIN CAPITAL LETTER A WITH GRAVE + 0xC1: [963,0,722,9,689], // LATIN CAPITAL LETTER A WITH ACUTE + 0xC2: [954,0,722,9,689], // LATIN CAPITAL LETTER A WITH CIRCUMFLEX + 0xC3: [924,0,722,9,689], // LATIN CAPITAL LETTER A WITH TILDE + 0xC4: [916,0,722,9,689], // LATIN CAPITAL LETTER A WITH DIAERESIS + 0xC5: [1000,0,722,9,689], // LATIN CAPITAL LETTER A WITH RING ABOVE + 0xC6: [676,0,1000,4,951], // LATIN CAPITAL LETTER AE + 0xC7: [691,218,722,49,687], // LATIN CAPITAL LETTER C WITH CEDILLA + 0xC8: [963,0,667,16,641], // LATIN CAPITAL LETTER E WITH GRAVE + 0xC9: [963,0,667,16,641], // LATIN CAPITAL LETTER E WITH ACUTE + 0xCA: [954,0,667,16,641], // LATIN CAPITAL LETTER E WITH CIRCUMFLEX + 0xCB: [916,0,667,16,641], // LATIN CAPITAL LETTER E WITH DIAERESIS + 0xCC: [963,0,389,20,370], // LATIN CAPITAL LETTER I WITH GRAVE + 0xCD: [963,0,389,20,370], // LATIN CAPITAL LETTER I WITH ACUTE + 0xCE: [954,0,389,20,370], // LATIN CAPITAL LETTER I WITH CIRCUMFLEX + 0xCF: [916,0,389,20,370], // LATIN CAPITAL LETTER I WITH DIAERESIS + 0xD0: [676,0,722,6,690], // LATIN CAPITAL LETTER ETH + 0xD1: [924,18,722,16,701], // LATIN CAPITAL LETTER N WITH TILDE + 0xD2: [963,19,778,35,743], // LATIN CAPITAL LETTER O WITH GRAVE + 0xD3: [963,19,778,35,743], // LATIN CAPITAL LETTER O WITH ACUTE + 0xD4: [954,19,778,35,743], // LATIN CAPITAL LETTER O WITH CIRCUMFLEX + 0xD5: [924,19,778,35,743], // LATIN CAPITAL LETTER O WITH TILDE + 0xD6: [916,19,778,35,743], // LATIN CAPITAL LETTER O WITH DIAERESIS + 0xD7: [538,33,702,66,636], // MULTIPLICATION SIGN + 0xD8: [737,74,778,35,743], // LATIN CAPITAL LETTER O WITH STROKE + 0xD9: [963,19,722,16,701], // LATIN CAPITAL LETTER U WITH GRAVE + 0xDA: [963,19,722,16,701], // LATIN CAPITAL LETTER U WITH ACUTE + 0xDB: [954,19,722,16,701], // LATIN CAPITAL LETTER U WITH CIRCUMFLEX + 0xDC: [916,19,722,16,701], // LATIN CAPITAL LETTER U WITH DIAERESIS + 0xDD: [963,0,722,15,699], // LATIN CAPITAL LETTER Y WITH ACUTE + 0xDE: [676,0,611,16,600], // LATIN CAPITAL LETTER THORN + 0xDF: [691,12,556,19,517], // LATIN SMALL LETTER SHARP S + 0xE0: [713,14,500,25,488], // LATIN SMALL LETTER A WITH GRAVE + 0xE1: [713,14,500,25,488], // LATIN SMALL LETTER A WITH ACUTE + 0xE2: [704,14,500,25,488], // LATIN SMALL LETTER A WITH CIRCUMFLEX + 0xE3: [674,14,500,25,488], // LATIN SMALL LETTER A WITH TILDE + 0xE4: [666,14,500,25,488], // LATIN SMALL LETTER A WITH DIAERESIS + 0xE5: [752,14,500,25,488], // LATIN SMALL LETTER A WITH RING ABOVE + 0xE6: [473,14,722,33,694], // LATIN SMALL LETTER AE + 0xE7: [473,218,444,25,430], // LATIN SMALL LETTER C WITH CEDILLA + 0xE8: [713,14,444,25,427], // LATIN SMALL LETTER E WITH GRAVE + 0xE9: [713,14,444,25,427], // LATIN SMALL LETTER E WITH ACUTE + 0xEA: [704,14,444,25,427], // LATIN SMALL LETTER E WITH CIRCUMFLEX + 0xEB: [666,14,444,25,427], // LATIN SMALL LETTER E WITH DIAERESIS + 0xEC: [713,0,278,14,257], // LATIN SMALL LETTER I WITH GRAVE + 0xED: [713,0,278,15,258], // LATIN SMALL LETTER I WITH ACUTE + 0xEE: [704,0,278,-29,308], // LATIN SMALL LETTER I WITH CIRCUMFLEX + 0xEF: [666,0,278,-29,310], // LATIN SMALL LETTER I WITH DIAERESIS + 0xF0: [691,14,500,25,476], // LATIN SMALL LETTER ETH + 0xF1: [674,0,556,21,539], // LATIN SMALL LETTER N WITH TILDE + 0xF2: [713,14,500,25,476], // LATIN SMALL LETTER O WITH GRAVE + 0xF3: [713,14,500,25,476], // LATIN SMALL LETTER O WITH ACUTE + 0xF4: [704,14,500,25,476], // LATIN SMALL LETTER O WITH CIRCUMFLEX + 0xF5: [674,14,500,25,476], // LATIN SMALL LETTER O WITH TILDE + 0xF6: [666,14,500,25,476], // LATIN SMALL LETTER O WITH DIAERESIS + 0xF7: [537,31,570,33,537], // DIVISION SIGN + 0xF8: [549,92,500,25,476], // LATIN SMALL LETTER O WITH STROKE + 0xF9: [713,14,556,16,538], // LATIN SMALL LETTER U WITH GRAVE + 0xFA: [713,14,556,16,538], // LATIN SMALL LETTER U WITH ACUTE + 0xFB: [704,14,556,16,538], // LATIN SMALL LETTER U WITH CIRCUMFLEX + 0xFC: [666,14,556,16,538], // LATIN SMALL LETTER U WITH DIAERESIS + 0xFD: [713,205,500,16,482], // LATIN SMALL LETTER Y WITH ACUTE + 0xFE: [676,205,556,19,524], // LATIN SMALL LETTER THORN + 0xFF: [666,205,500,16,482] // LATIN SMALL LETTER Y WITH DIAERESIS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/Latin1Supplement.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js new file mode 100644 index 0000000..4ec955c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js @@ -0,0 +1,155 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x100: [810,0,722,9,689], // LATIN CAPITAL LETTER A WITH MACRON + 0x101: [600,14,500,25,488], // LATIN SMALL LETTER A WITH MACRON + 0x102: [901,0,722,9,689], // LATIN CAPITAL LETTER A WITH BREVE + 0x103: [691,14,500,25,488], // LATIN SMALL LETTER A WITH BREVE + 0x104: [690,205,722,9,721], // LATIN CAPITAL LETTER A WITH OGONEK + 0x105: [473,205,500,25,569], // LATIN SMALL LETTER A WITH OGONEK + 0x106: [923,19,722,49,687], // LATIN CAPITAL LETTER C WITH ACUTE + 0x107: [713,14,444,25,430], // LATIN SMALL LETTER C WITH ACUTE + 0x108: [914,19,722,49,687], // LATIN CAPITAL LETTER C WITH CIRCUMFLEX + 0x109: [704,14,444,25,430], // LATIN SMALL LETTER C WITH CIRCUMFLEX + 0x10A: [876,19,722,49,687], // LATIN CAPITAL LETTER C WITH DOT ABOVE + 0x10B: [666,14,444,25,430], // LATIN SMALL LETTER C WITH DOT ABOVE + 0x10C: [914,19,722,49,687], // LATIN CAPITAL LETTER C WITH CARON + 0x10D: [704,14,444,25,430], // LATIN SMALL LETTER C WITH CARON + 0x10E: [914,0,722,14,690], // LATIN CAPITAL LETTER D WITH CARON + 0x10F: [709,14,680,25,710], // LATIN SMALL LETTER D WITH CARON + 0x110: [676,0,722,6,690], // LATIN CAPITAL LETTER D WITH STROKE + 0x111: [676,14,556,25,534], // LATIN SMALL LETTER D WITH STROKE + 0x112: [810,0,667,16,641], // LATIN CAPITAL LETTER E WITH MACRON + 0x113: [600,14,444,25,427], // LATIN SMALL LETTER E WITH MACRON + 0x114: [901,0,667,16,641], // LATIN CAPITAL LETTER E WITH BREVE + 0x115: [691,14,444,25,427], // LATIN SMALL LETTER E WITH BREVE + 0x116: [876,0,667,16,641], // LATIN CAPITAL LETTER E WITH DOT ABOVE + 0x117: [666,14,444,25,427], // LATIN SMALL LETTER E WITH DOT ABOVE + 0x118: [676,205,667,16,641], // LATIN CAPITAL LETTER E WITH OGONEK + 0x119: [473,205,444,25,435], // LATIN SMALL LETTER E WITH OGONEK + 0x11A: [914,0,667,16,641], // LATIN CAPITAL LETTER E WITH CARON + 0x11B: [704,14,444,25,427], // LATIN SMALL LETTER E WITH CARON + 0x11C: [914,19,778,37,755], // LATIN CAPITAL LETTER G WITH CIRCUMFLEX + 0x11D: [704,206,500,28,483], // LATIN SMALL LETTER G WITH CIRCUMFLEX + 0x11E: [901,19,778,37,755], // LATIN CAPITAL LETTER G WITH BREVE + 0x11F: [691,206,500,28,483], // LATIN SMALL LETTER G WITH BREVE + 0x120: [876,19,778,37,755], // LATIN CAPITAL LETTER G WITH DOT ABOVE + 0x121: [666,206,500,28,483], // LATIN SMALL LETTER G WITH DOT ABOVE + 0x122: [691,378,778,37,755], // LATIN CAPITAL LETTER G WITH CEDILLA + 0x123: [863,206,500,28,483], // LATIN SMALL LETTER G WITH CEDILLA + 0x124: [914,0,778,21,759], // LATIN CAPITAL LETTER H WITH CIRCUMFLEX + 0x125: [914,0,556,15,534], // LATIN SMALL LETTER H WITH CIRCUMFLEX + 0x126: [676,0,778,21,759], // LATIN CAPITAL LETTER H WITH STROKE + 0x127: [676,0,556,15,534], // LATIN SMALL LETTER H WITH STROKE + 0x128: [884,0,389,14,379], // LATIN CAPITAL LETTER I WITH TILDE + 0x129: [674,0,278,-47,318], // LATIN SMALL LETTER I WITH TILDE + 0x12A: [810,0,389,20,370], // LATIN CAPITAL LETTER I WITH MACRON + 0x12B: [600,0,278,-25,305], // LATIN SMALL LETTER I WITH MACRON + 0x12C: [900,0,389,20,370], // LATIN CAPITAL LETTER I WITH BREVE + 0x12D: [691,0,278,-11,292], // LATIN SMALL LETTER I WITH BREVE + 0x12E: [676,205,389,20,389], // LATIN CAPITAL LETTER I WITH OGONEK + 0x12F: [691,205,278,15,321], // LATIN SMALL LETTER I WITH OGONEK + 0x130: [876,0,389,20,370], // LATIN CAPITAL LETTER I WITH DOT ABOVE + 0x131: [461,0,278,15,256], // LATIN SMALL LETTER DOTLESS I + 0x132: [676,96,838,20,917], // LATIN CAPITAL LIGATURE IJ + 0x133: [691,203,552,15,531], // LATIN SMALL LIGATURE IJ + 0x134: [914,96,500,3,479], // LATIN CAPITAL LETTER J WITH CIRCUMFLEX + 0x135: [704,203,333,-57,335], // LATIN SMALL LETTER J WITH CIRCUMFLEX + 0x136: [676,378,778,30,769], // LATIN CAPITAL LETTER K WITH CEDILLA + 0x137: [676,378,556,22,543], // LATIN SMALL LETTER K WITH CEDILLA + 0x138: [470,0,600,19,627], // LATIN SMALL LETTER KRA + 0x139: [923,0,667,19,638], // LATIN CAPITAL LETTER L WITH ACUTE + 0x13A: [923,0,278,15,260], // LATIN SMALL LETTER L WITH ACUTE + 0x13B: [676,378,667,19,638], // LATIN CAPITAL LETTER L WITH CEDILLA + 0x13C: [676,378,278,15,256], // LATIN SMALL LETTER L WITH CEDILLA + 0x13D: [691,0,667,19,638], // LATIN CAPITAL LETTER L WITH CARON + 0x13E: [709,0,457,15,442], // LATIN SMALL LETTER L WITH CARON + 0x13F: [676,0,667,19,638], // LATIN CAPITAL LETTER L WITH MIDDLE DOT + 0x140: [676,0,414,15,441], // LATIN SMALL LETTER L WITH MIDDLE DOT + 0x141: [676,0,667,18,638], // LATIN CAPITAL LETTER L WITH STROKE + 0x142: [676,0,278,-22,303], // LATIN SMALL LETTER L WITH STROKE + 0x143: [923,18,722,16,701], // LATIN CAPITAL LETTER N WITH ACUTE + 0x144: [713,0,556,21,539], // LATIN SMALL LETTER N WITH ACUTE + 0x145: [676,378,722,16,701], // LATIN CAPITAL LETTER N WITH CEDILLA + 0x146: [473,378,556,21,539], // LATIN SMALL LETTER N WITH CEDILLA + 0x147: [914,18,722,16,701], // LATIN CAPITAL LETTER N WITH CARON + 0x148: [704,0,556,21,539], // LATIN SMALL LETTER N WITH CARON + 0x149: [709,0,705,13,693], // LATIN SMALL LETTER N PRECEDED BY APOSTROPHE + 0x14A: [676,96,732,14,712], // LATIN CAPITAL LETTER ENG + 0x14B: [473,205,556,21,490], // LATIN SMALL LETTER ENG + 0x14C: [810,19,778,35,743], // LATIN CAPITAL LETTER O WITH MACRON + 0x14D: [600,14,500,25,476], // LATIN SMALL LETTER O WITH MACRON + 0x14E: [901,19,778,35,743], // LATIN CAPITAL LETTER O WITH BREVE + 0x14F: [691,14,500,25,476], // LATIN SMALL LETTER O WITH BREVE + 0x150: [923,19,778,35,743], // LATIN CAPITAL LETTER O WITH DOUBLE ACUTE + 0x151: [713,14,500,25,476], // LATIN SMALL LETTER O WITH DOUBLE ACUTE + 0x152: [684,5,1000,22,981], // LATIN CAPITAL LIGATURE OE + 0x153: [473,14,722,22,696], // LATIN SMALL LIGATURE OE + 0x154: [923,0,722,26,716], // LATIN CAPITAL LETTER R WITH ACUTE + 0x155: [713,0,444,28,434], // LATIN SMALL LETTER R WITH ACUTE + 0x156: [676,378,722,26,716], // LATIN CAPITAL LETTER R WITH CEDILLA + 0x157: [473,378,444,28,434], // LATIN SMALL LETTER R WITH CEDILLA + 0x158: [914,0,722,26,716], // LATIN CAPITAL LETTER R WITH CARON + 0x159: [704,0,444,28,434], // LATIN SMALL LETTER R WITH CARON + 0x15A: [923,19,556,35,513], // LATIN CAPITAL LETTER S WITH ACUTE + 0x15B: [713,14,389,25,364], // LATIN SMALL LETTER S WITH ACUTE + 0x15C: [914,19,556,35,513], // LATIN CAPITAL LETTER S WITH CIRCUMFLEX + 0x15D: [704,14,389,22,361], // LATIN SMALL LETTER S WITH CIRCUMFLEX + 0x15E: [692,218,556,35,513], // LATIN CAPITAL LETTER S WITH CEDILLA + 0x15F: [473,218,389,25,361], // LATIN SMALL LETTER S WITH CEDILLA + 0x160: [914,19,556,35,513], // LATIN CAPITAL LETTER S WITH CARON + 0x161: [704,14,389,22,361], // LATIN SMALL LETTER S WITH CARON + 0x162: [676,218,667,31,636], // LATIN CAPITAL LETTER T WITH CEDILLA + 0x163: [630,218,333,19,332], // LATIN SMALL LETTER T WITH CEDILLA + 0x164: [914,0,667,31,636], // LATIN CAPITAL LETTER T WITH CARON + 0x165: [709,12,415,19,445], // LATIN SMALL LETTER T WITH CARON + 0x166: [676,0,667,31,636], // LATIN CAPITAL LETTER T WITH STROKE + 0x167: [630,12,333,17,332], // LATIN SMALL LETTER T WITH STROKE + 0x168: [886,19,722,16,701], // LATIN CAPITAL LETTER U WITH TILDE + 0x169: [674,14,556,16,538], // LATIN SMALL LETTER U WITH TILDE + 0x16A: [810,19,722,16,701], // LATIN CAPITAL LETTER U WITH MACRON + 0x16B: [600,14,556,16,538], // LATIN SMALL LETTER U WITH MACRON + 0x16C: [901,19,722,16,701], // LATIN CAPITAL LETTER U WITH BREVE + 0x16D: [691,14,556,16,538], // LATIN SMALL LETTER U WITH BREVE + 0x16E: [935,19,722,16,701], // LATIN CAPITAL LETTER U WITH RING ABOVE + 0x16F: [740,14,556,16,538], // LATIN SMALL LETTER U WITH RING ABOVE + 0x170: [923,19,722,16,701], // LATIN CAPITAL LETTER U WITH DOUBLE ACUTE + 0x171: [713,14,556,16,538], // LATIN SMALL LETTER U WITH DOUBLE ACUTE + 0x172: [676,205,722,16,701], // LATIN CAPITAL LETTER U WITH OGONEK + 0x173: [461,205,556,16,547], // LATIN SMALL LETTER U WITH OGONEK + 0x174: [914,15,1000,19,981], // LATIN CAPITAL LETTER W WITH CIRCUMFLEX + 0x175: [704,14,722,23,707], // LATIN SMALL LETTER W WITH CIRCUMFLEX + 0x176: [914,0,722,15,699], // LATIN CAPITAL LETTER Y WITH CIRCUMFLEX + 0x177: [704,205,500,16,482], // LATIN SMALL LETTER Y WITH CIRCUMFLEX + 0x178: [876,0,722,15,699], // LATIN CAPITAL LETTER Y WITH DIAERESIS + 0x179: [923,0,667,28,634], // LATIN CAPITAL LETTER Z WITH ACUTE + 0x17A: [713,0,444,21,420], // LATIN SMALL LETTER Z WITH ACUTE + 0x17B: [876,0,667,28,634], // LATIN CAPITAL LETTER Z WITH DOT ABOVE + 0x17C: [666,0,444,21,420], // LATIN SMALL LETTER Z WITH DOT ABOVE + 0x17D: [914,0,667,28,634], // LATIN CAPITAL LETTER Z WITH CARON + 0x17E: [704,0,444,21,420], // LATIN SMALL LETTER Z WITH CARON + 0x17F: [691,0,333,14,389] // LATIN SMALL LETTER LONG S + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js new file mode 100644 index 0000000..396b933 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedAdditional.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x1E80: [923,15,1000,19,981], // LATIN CAPITAL LETTER W WITH GRAVE + 0x1E81: [713,14,722,23,707], // LATIN SMALL LETTER W WITH GRAVE + 0x1E82: [923,15,1000,19,981], // LATIN CAPITAL LETTER W WITH ACUTE + 0x1E83: [713,14,722,23,707], // LATIN SMALL LETTER W WITH ACUTE + 0x1E84: [876,15,1000,19,981], // LATIN CAPITAL LETTER W WITH DIAERESIS + 0x1E85: [666,14,722,23,707], // LATIN SMALL LETTER W WITH DIAERESIS + 0x1EF2: [923,0,722,15,699], // LATIN CAPITAL LETTER Y WITH GRAVE + 0x1EF3: [713,205,500,16,482] // LATIN SMALL LETTER Y WITH GRAVE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/LatinExtendedAdditional.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js new file mode 100644 index 0000000..dc575db --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x180: [676,14,553,-28,516], // LATIN SMALL LETTER B WITH STROKE + 0x188: [576,14,568,30,574], // LATIN SMALL LETTER C WITH HOOK + 0x190: [686,4,610,38,587], // LATIN CAPITAL LETTER OPEN E + 0x192: [706,155,500,0,498], // LATIN SMALL LETTER F WITH HOOK + 0x195: [676,10,797,14,767], // LATIN SMALL LETTER HV + 0x199: [691,0,533,12,533], // LATIN SMALL LETTER K WITH HOOK + 0x19A: [676,0,291,24,265], // LATIN SMALL LETTER L WITH BAR + 0x19B: [666,0,536,60,526], // LATIN SMALL LETTER LAMBDA WITH STROKE + 0x19E: [473,205,559,21,539], // LATIN SMALL LETTER N WITH LONG RIGHT LEG + 0x1A0: [732,19,778,35,788], // LATIN CAPITAL LETTER O WITH HORN + 0x1A1: [505,14,554,25,576], // LATIN SMALL LETTER O WITH HORN + 0x1A5: [673,205,550,10,515], // LATIN SMALL LETTER P WITH HOOK + 0x1AA: [689,228,446,25,421], // LATIN LETTER REVERSED ESH LOOP + 0x1AB: [630,218,347,18,331], // LATIN SMALL LETTER T WITH PALATAL HOOK + 0x1AD: [691,12,371,19,389], // LATIN SMALL LETTER T WITH HOOK + 0x1AF: [810,19,796,16,836], // LATIN CAPITAL LETTER U WITH HORN + 0x1B0: [596,14,600,16,626], // LATIN SMALL LETTER U WITH HORN + 0x1BA: [450,237,441,9,415], // LATIN SMALL LETTER EZH WITH TAIL + 0x1BB: [688,0,515,27,492], // LATIN LETTER TWO WITH STROKE + 0x1BE: [541,10,527,78,449], // LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE + 0x1C0: [740,0,186,60,126], // LATIN LETTER DENTAL CLICK + 0x1C1: [740,0,313,60,253], // LATIN LETTER LATERAL CLICK + 0x1C2: [740,0,445,39,405], // LATIN LETTER ALVEOLAR CLICK + 0x1C3: [691,13,333,81,251], // LATIN LETTER RETROFLEX CLICK + 0x1F0: [704,203,333,-57,335], // LATIN SMALL LETTER J WITH CARON + 0x1FA: [972,0,722,9,689], // LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE + 0x1FB: [923,14,500,25,488], // LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE + 0x1FC: [923,0,1000,4,951], // LATIN CAPITAL LETTER AE WITH ACUTE + 0x1FD: [713,14,722,33,694], // LATIN SMALL LETTER AE WITH ACUTE + 0x1FE: [923,74,778,35,743], // LATIN CAPITAL LETTER O WITH STROKE AND ACUTE + 0x1FF: [713,92,500,25,476], // LATIN SMALL LETTER O WITH STROKE AND ACUTE + 0x237: [461,203,333,-57,260] // LATIN SMALL LETTER DOTLESS J + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/LatinExtendedB.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js new file mode 100644 index 0000000..718999c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedD.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0xA792: [691,19,769,27,734] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/LatinExtendedD.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js new file mode 100644 index 0000000..0997ca2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js @@ -0,0 +1,65 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LetterlikeSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2102: [691,19,727,45,672], // stix-mathematical bold oblique double-struck capital C + 0x2105: [688,12,873,38,835], // CARE OF + 0x2107: [691,19,699,65,662], // EULER CONSTANT + 0x210C: [701,205,843,42,795], // BLACK-LETTER CAPITAL H + 0x210D: [676,0,768,75,693], // stix-mathematical bold oblique double-struck capital H + 0x210E: [685,10,576,50,543], // PLANCK CONSTANT + 0x210F: [685,10,576,50,543], // stix-/hbar - Planck's over 2pi + 0x2111: [701,25,790,54,735], // BLACK-LETTER CAPITAL I + 0x2113: [699,14,500,43,632], // SCRIPT SMALL L + 0x2115: [676,0,738,75,663], // stix-mathematical bold oblique double-struck capital N + 0x2116: [691,18,1093,10,1042], // NUMERO SIGN + 0x2117: [691,19,747,26,721], // SOUND RECORDING COPYRIGHT + 0x2118: [541,219,850,55,822], // SCRIPT CAPITAL P + 0x2119: [676,0,700,75,670], // stix-mathematical bold oblique double-struck capital P + 0x211A: [691,64,797,45,747], // stix-mathematical bold oblique double-struck capital Q + 0x211C: [701,25,884,50,841], // BLACK-LETTER CAPITAL R + 0x211D: [676,0,783,75,758], // stix-mathematical bold oblique double-struck capital R + 0x211E: [676,101,722,26,726], // PRESCRIPTION TAKE + 0x2122: [676,-271,1000,24,977], // TRADE MARK SIGN + 0x2124: [691,0,777,52,727], // stix-mathematical bold oblique double-struck capital Z + 0x2125: [676,205,448,21,424], // OUNCE SIGN + 0x2126: [692,0,758,35,723], // OHM SIGN + 0x2127: [674,18,758,35,723], // INVERTED OHM SIGN + 0x2128: [701,195,755,44,703], // BLACK-LETTER CAPITAL Z + 0x2129: [475,0,312,9,244], // TURNED GREEK SMALL LETTER IOTA + 0x212B: [920,0,722,9,689], // ANGSTROM SIGN + 0x212D: [701,19,773,54,731], // BLACK-LETTER CAPITAL C + 0x2132: [676,0,616,48,546], // TURNED CAPITAL F + 0x2135: [694,34,766,76,690], // ALEF SYMBOL + 0x2136: [694,34,703,60,659], // BET SYMBOL + 0x2137: [694,34,562,71,493], // GIMEL SYMBOL + 0x2138: [694,34,599,40,559], // DALET SYMBOL + 0x213C: [461,11,804,55,759], // DOUBLE-STRUCK SMALL PI + 0x213D: [486,203,646,23,624], // DOUBLE-STRUCK SMALL GAMMA + 0x213E: [676,0,497,75,643], // DOUBLE-STRUCK CAPITAL GAMMA + 0x213F: [676,0,768,75,693], // DOUBLE-STRUCK CAPITAL PI + 0x2140: [773,269,976,36,952], // DOUBLE-STRUCK N-ARY SUMMATION + 0x214B: [690,17,833,61,788] // TURNED AMPERSAND + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js new file mode 100644 index 0000000..2faa43a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js @@ -0,0 +1,174 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'] = { + directory: 'General/Bold', + family: 'STIXGeneral', + weight: 'bold', + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x250,0x2AF,"IPAExtensions"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x400,0x4FF,"Cyrillic"], + [0x1D00,0x1DBF,"PhoneticExtensions"], + [0x1E00,0x1EFF,"LatinExtendedAdditional"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x2070,0x209F,"SuperAndSubscripts"], + [0x20A0,0x20CF,"CurrencySymbols"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2150,0x218F,"NumberForms"], + [0x2190,0x21FF,"Arrows"], + [0x2200,0x22FF,"MathOperators"], + [0x2300,0x23FF,"MiscTechnical"], + [0x2400,0x243F,"ControlPictures"], + [0x2460,0x24FF,"EnclosedAlphanum"], + [0x2500,0x257F,"BoxDrawing"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x27C0,0x27EF,"MiscMathSymbolsA"], + [0x2980,0x29FF,"MiscMathSymbolsB"], + [0x2A00,0x2AFF,"SuppMathOperators"], + [0xA720,0xA7FF,"LatinExtendedD"], + [0xFB00,0xFB4F,"AlphaPresentForms"], + [0x1D400,0x1D433,"MathBold"], + [0x1D538,0x1D56B,"BBBold"], + [0x1D56C,0x1D59F,"BoldFraktur"], + [0x1D5D4,0x1D607,"MathSSBold"], + [0x1D6A8,0x1D6E1,"GreekBold"], + [0x1D756,0x1D78F,"GreekSSBold"], + [0x1D7CE,0x1D7D7,"MathBold"], + [0x1D7EC,0x1D7F6,"MathSSBold"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [691,13,333,81,251], // EXCLAMATION MARK + 0x22: [691,-404,555,83,472], // QUOTATION MARK + 0x23: [700,0,500,5,495], // NUMBER SIGN + 0x24: [750,99,500,29,472], // DOLLAR SIGN + 0x25: [706,29,749,61,688], // PERCENT SIGN + 0x26: [691,16,833,62,789], // AMPERSAND + 0x27: [691,-404,278,75,204], // APOSTROPHE + 0x28: [694,168,333,46,306], // LEFT PARENTHESIS + 0x29: [694,168,333,27,287], // RIGHT PARENTHESIS + 0x2A: [691,-255,500,56,448], // ASTERISK + 0x2B: [563,57,750,65,685], // PLUS SIGN + 0x2C: [155,180,250,39,223], // COMMA + 0x2D: [287,-171,333,44,287], // HYPHEN-MINUS + 0x2E: [156,13,250,41,210], // FULL STOP + 0x2F: [691,19,278,-24,302], // SOLIDUS + 0x30: [688,13,500,24,476], // DIGIT ZERO + 0x31: [688,0,500,65,441], // DIGIT ONE + 0x32: [688,0,500,17,478], // DIGIT TWO + 0x33: [688,14,500,16,468], // DIGIT THREE + 0x34: [688,0,500,19,476], // DIGIT FOUR + 0x35: [676,8,500,22,470], // DIGIT FIVE + 0x36: [688,13,500,28,475], // DIGIT SIX + 0x37: [676,0,500,17,477], // DIGIT SEVEN + 0x38: [688,13,500,28,472], // DIGIT EIGHT + 0x39: [688,13,500,26,473], // DIGIT NINE + 0x3A: [472,13,333,82,251], // COLON + 0x3B: [472,180,333,82,266], // SEMICOLON + 0x3C: [534,24,750,80,670], // LESS-THAN SIGN + 0x3D: [399,-107,750,68,682], // EQUALS SIGN + 0x3E: [534,24,750,80,670], // GREATER-THAN SIGN + 0x3F: [689,13,500,57,445], // QUESTION MARK + 0x40: [691,19,930,108,822], // COMMERCIAL AT + 0x41: [690,0,722,9,689], // LATIN CAPITAL LETTER A + 0x42: [676,0,667,16,619], // LATIN CAPITAL LETTER B + 0x43: [691,19,722,49,687], // LATIN CAPITAL LETTER C + 0x44: [676,0,722,14,690], // LATIN CAPITAL LETTER D + 0x45: [676,0,667,16,641], // LATIN CAPITAL LETTER E + 0x46: [676,0,611,16,583], // LATIN CAPITAL LETTER F + 0x47: [691,19,778,37,755], // LATIN CAPITAL LETTER G + 0x48: [676,0,778,21,759], // LATIN CAPITAL LETTER H + 0x49: [676,0,389,20,370], // LATIN CAPITAL LETTER I + 0x4A: [676,96,500,3,478], // LATIN CAPITAL LETTER J + 0x4B: [676,0,778,30,769], // LATIN CAPITAL LETTER K + 0x4C: [677,0,667,19,638], // LATIN CAPITAL LETTER L + 0x4D: [676,0,944,14,921], // LATIN CAPITAL LETTER M + 0x4E: [676,18,722,16,701], // LATIN CAPITAL LETTER N + 0x4F: [691,19,778,35,743], // LATIN CAPITAL LETTER O + 0x50: [676,0,611,16,600], // LATIN CAPITAL LETTER P + 0x51: [691,176,778,35,743], // LATIN CAPITAL LETTER Q + 0x52: [676,0,722,26,716], // LATIN CAPITAL LETTER R + 0x53: [692,19,556,35,513], // LATIN CAPITAL LETTER S + 0x54: [676,0,667,31,636], // LATIN CAPITAL LETTER T + 0x55: [676,19,722,16,701], // LATIN CAPITAL LETTER U + 0x56: [676,18,722,16,701], // LATIN CAPITAL LETTER V + 0x57: [676,15,1000,19,981], // LATIN CAPITAL LETTER W + 0x58: [676,0,722,16,699], // LATIN CAPITAL LETTER X + 0x59: [676,0,722,15,699], // LATIN CAPITAL LETTER Y + 0x5A: [676,0,667,28,634], // LATIN CAPITAL LETTER Z + 0x5B: [678,149,333,67,301], // LEFT SQUARE BRACKET + 0x5C: [691,19,278,-25,303], // REVERSE SOLIDUS + 0x5D: [678,149,333,32,266], // RIGHT SQUARE BRACKET + 0x5E: [676,-311,581,73,509], // CIRCUMFLEX ACCENT + 0x5F: [-75,125,500,0,500], // LOW LINE + 0x60: [713,-528,333,8,246], // GRAVE ACCENT + 0x61: [473,14,500,25,488], // LATIN SMALL LETTER A + 0x62: [676,14,556,17,521], // LATIN SMALL LETTER B + 0x63: [473,14,444,25,430], // LATIN SMALL LETTER C + 0x64: [676,14,556,25,534], // LATIN SMALL LETTER D + 0x65: [473,14,444,25,427], // LATIN SMALL LETTER E + 0x66: [691,0,333,14,389], // LATIN SMALL LETTER F + 0x67: [473,206,500,28,483], // LATIN SMALL LETTER G + 0x68: [676,0,556,15,534], // LATIN SMALL LETTER H + 0x69: [691,0,278,15,256], // LATIN SMALL LETTER I + 0x6A: [691,203,333,-57,263], // LATIN SMALL LETTER J + 0x6B: [676,0,556,22,543], // LATIN SMALL LETTER K + 0x6C: [676,0,278,15,256], // LATIN SMALL LETTER L + 0x6D: [473,0,833,15,814], // LATIN SMALL LETTER M + 0x6E: [473,0,556,21,539], // LATIN SMALL LETTER N + 0x6F: [473,14,500,25,476], // LATIN SMALL LETTER O + 0x70: [473,205,556,19,524], // LATIN SMALL LETTER P + 0x71: [473,205,556,34,536], // LATIN SMALL LETTER Q + 0x72: [473,0,444,28,434], // LATIN SMALL LETTER R + 0x73: [473,14,389,25,361], // LATIN SMALL LETTER S + 0x74: [630,12,333,19,332], // LATIN SMALL LETTER T + 0x75: [461,14,556,16,538], // LATIN SMALL LETTER U + 0x76: [461,14,500,21,485], // LATIN SMALL LETTER V + 0x77: [461,14,722,23,707], // LATIN SMALL LETTER W + 0x78: [461,0,500,12,484], // LATIN SMALL LETTER X + 0x79: [461,205,500,16,482], // LATIN SMALL LETTER Y + 0x7A: [461,0,444,21,420], // LATIN SMALL LETTER Z + 0x7B: [698,175,394,22,340], // LEFT CURLY BRACKET + 0x7C: [691,19,220,66,154], // VERTICAL LINE + 0x7D: [698,175,394,54,372], // RIGHT CURLY BRACKET + 0x7E: [333,-173,520,29,491], // TILDE + 0x393: [676,0,620,16,593], // GREEK CAPITAL LETTER GAMMA + 0x394: [690,0,722,33,673], // GREEK CAPITAL LETTER DELTA + 0x398: [692,18,778,35,743], // GREEK CAPITAL LETTER THETA + 0x39B: [690,0,707,9,674], // GREEK CAPITAL LETTER LAMDA + 0x39E: [676,0,647,40,607], // GREEK CAPITAL LETTER XI + 0x3A0: [676,0,778,21,759], // GREEK CAPITAL LETTER PI + 0x3A3: [676,0,671,28,641], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [692,0,703,7,693], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [676,0,836,18,818], // GREEK CAPITAL LETTER PHI + 0x3A8: [692,0,808,15,797], // GREEK CAPITAL LETTER PSI + 0x3A9: [692,0,768,28,740] // GREEK CAPITAL LETTER OMEGA +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXGeneral-bold"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js new file mode 100644 index 0000000..eb6c71c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x1D400: [690,0,722,9,689], // MATHEMATICAL BOLD CAPITAL A + 0x1D401: [676,0,667,16,619], // MATHEMATICAL BOLD CAPITAL B + 0x1D402: [691,19,722,49,687], // MATHEMATICAL BOLD CAPITAL C + 0x1D403: [676,0,722,14,690], // MATHEMATICAL BOLD CAPITAL D + 0x1D404: [676,0,667,16,641], // MATHEMATICAL BOLD CAPITAL E + 0x1D405: [676,0,611,16,583], // MATHEMATICAL BOLD CAPITAL F + 0x1D406: [691,19,778,37,755], // MATHEMATICAL BOLD CAPITAL G + 0x1D407: [676,0,778,21,759], // MATHEMATICAL BOLD CAPITAL H + 0x1D408: [676,0,389,20,370], // MATHEMATICAL BOLD CAPITAL I + 0x1D409: [676,96,500,3,478], // MATHEMATICAL BOLD CAPITAL J + 0x1D40A: [676,0,778,30,769], // MATHEMATICAL BOLD CAPITAL K + 0x1D40B: [676,0,667,19,638], // MATHEMATICAL BOLD CAPITAL L + 0x1D40C: [676,0,944,14,921], // MATHEMATICAL BOLD CAPITAL M + 0x1D40D: [676,18,722,16,701], // MATHEMATICAL BOLD CAPITAL N + 0x1D40E: [691,19,778,35,743], // MATHEMATICAL BOLD CAPITAL O + 0x1D40F: [676,0,611,16,600], // MATHEMATICAL BOLD CAPITAL P + 0x1D410: [691,176,778,35,743], // MATHEMATICAL BOLD CAPITAL Q + 0x1D411: [676,0,722,26,716], // MATHEMATICAL BOLD CAPITAL R + 0x1D412: [692,19,556,35,513], // MATHEMATICAL BOLD CAPITAL S + 0x1D413: [676,0,667,31,636], // MATHEMATICAL BOLD CAPITAL T + 0x1D414: [676,19,722,16,701], // MATHEMATICAL BOLD CAPITAL U + 0x1D415: [676,18,722,16,701], // MATHEMATICAL BOLD CAPITAL V + 0x1D416: [676,15,1000,19,981], // MATHEMATICAL BOLD CAPITAL W + 0x1D417: [676,0,722,16,699], // MATHEMATICAL BOLD CAPITAL X + 0x1D418: [676,0,722,15,699], // MATHEMATICAL BOLD CAPITAL Y + 0x1D419: [676,0,667,28,634], // MATHEMATICAL BOLD CAPITAL Z + 0x1D41A: [473,14,500,25,488], // MATHEMATICAL BOLD SMALL A + 0x1D41B: [676,14,556,17,521], // MATHEMATICAL BOLD SMALL B + 0x1D41C: [473,14,444,25,430], // MATHEMATICAL BOLD SMALL C + 0x1D41D: [676,14,556,25,534], // MATHEMATICAL BOLD SMALL D + 0x1D41E: [473,14,444,25,427], // MATHEMATICAL BOLD SMALL E + 0x1D41F: [691,0,333,14,389], // MATHEMATICAL BOLD SMALL F + 0x1D420: [473,206,500,28,483], // MATHEMATICAL BOLD SMALL G + 0x1D421: [676,0,556,15,534], // MATHEMATICAL BOLD SMALL H + 0x1D422: [691,0,278,15,256], // MATHEMATICAL BOLD SMALL I + 0x1D423: [691,203,333,-57,263], // MATHEMATICAL BOLD SMALL J + 0x1D424: [676,0,556,22,543], // MATHEMATICAL BOLD SMALL K + 0x1D425: [676,0,278,15,256], // MATHEMATICAL BOLD SMALL L + 0x1D426: [473,0,833,15,814], // MATHEMATICAL BOLD SMALL M + 0x1D427: [473,0,556,21,539], // MATHEMATICAL BOLD SMALL N + 0x1D428: [473,14,500,25,476], // MATHEMATICAL BOLD SMALL O + 0x1D429: [473,205,556,19,524], // MATHEMATICAL BOLD SMALL P + 0x1D42A: [473,205,556,34,536], // MATHEMATICAL BOLD SMALL Q + 0x1D42B: [473,0,444,28,434], // MATHEMATICAL BOLD SMALL R + 0x1D42C: [473,14,389,25,361], // MATHEMATICAL BOLD SMALL S + 0x1D42D: [630,12,333,19,332], // MATHEMATICAL BOLD SMALL T + 0x1D42E: [461,14,556,16,538], // MATHEMATICAL BOLD SMALL U + 0x1D42F: [461,14,500,21,485], // MATHEMATICAL BOLD SMALL V + 0x1D430: [461,14,722,23,707], // MATHEMATICAL BOLD SMALL W + 0x1D431: [461,0,500,12,484], // MATHEMATICAL BOLD SMALL X + 0x1D432: [461,205,500,16,482], // MATHEMATICAL BOLD SMALL Y + 0x1D433: [461,0,444,21,420], // MATHEMATICAL BOLD SMALL Z + 0x1D7CE: [688,13,500,24,476], // MATHEMATICAL BOLD DIGIT ZERO + 0x1D7CF: [688,0,500,65,441], // MATHEMATICAL BOLD DIGIT ONE + 0x1D7D0: [688,0,500,17,478], // MATHEMATICAL BOLD DIGIT TWO + 0x1D7D1: [688,14,500,16,468], // MATHEMATICAL BOLD DIGIT THREE + 0x1D7D2: [688,0,500,19,476], // MATHEMATICAL BOLD DIGIT FOUR + 0x1D7D3: [676,8,500,22,470], // MATHEMATICAL BOLD DIGIT FIVE + 0x1D7D4: [688,13,500,28,475], // MATHEMATICAL BOLD DIGIT SIX + 0x1D7D5: [676,0,500,17,477], // MATHEMATICAL BOLD DIGIT SEVEN + 0x1D7D6: [688,13,500,28,472], // MATHEMATICAL BOLD DIGIT EIGHT + 0x1D7D7: [688,13,500,26,473] // MATHEMATICAL BOLD DIGIT NINE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MathBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js new file mode 100644 index 0000000..c878754 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js @@ -0,0 +1,264 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2200: [676,0,599,5,594], // FOR ALL + 0x2201: [785,29,539,63,476], // COMPLEMENT + 0x2202: [686,10,559,44,559], // PARTIAL DIFFERENTIAL + 0x2203: [676,0,599,76,523], // THERE EXISTS + 0x2204: [803,127,599,76,523], // THERE DOES NOT EXIST + 0x2205: [594,90,787,50,737], // EMPTY SET + 0x2206: [676,0,681,23,658], // INCREMENT + 0x2207: [676,0,681,23,658], // NABLA + 0x2208: [547,13,750,82,668], // ELEMENT OF + 0x2209: [680,146,750,82,668], // stix-negated (vert) set membership, variant + 0x220A: [499,-35,500,60,440], // SMALL ELEMENT OF + 0x220B: [547,13,750,82,668], // CONTAINS AS MEMBER + 0x220C: [680,146,750,82,668], // stix-negated (vert) contains + 0x220D: [499,-35,500,60,440], // SMALL CONTAINS AS MEMBER + 0x220F: [763,259,1000,37,963], // N-ARY PRODUCT + 0x2210: [763,259,982,28,954], // N-ARY COPRODUCT + 0x2211: [763,259,914,40,873], // N-ARY SUMMATION + 0x2212: [297,-209,750,66,685], // MINUS SIGN + 0x2213: [657,12,770,65,685], // MINUS-OR-PLUS SIGN + 0x2214: [793,57,750,65,685], // DOT PLUS + 0x2215: [732,193,584,78,506], // DIVISION SLASH + 0x2216: [411,-93,452,25,427], // SET MINUS + 0x2217: [502,-34,585,82,503], // ASTERISK OPERATOR + 0x2218: [409,-95,394,40,354], // RING OPERATOR + 0x2219: [414,-91,493,85,408], // BULLET OPERATOR + 0x221A: [946,259,965,130,1016], // SQUARE ROOT + 0x221D: [450,0,772,80,692], // PROPORTIONAL TO + 0x221E: [450,0,964,80,884], // INFINITY + 0x221F: [584,0,685,50,634], // RIGHT ANGLE + 0x2220: [569,0,792,50,708], // ANGLE + 0x2221: [569,74,792,50,708], // MEASURED ANGLE + 0x2222: [534,26,695,27,667], // SPHERICAL ANGLE + 0x2223: [690,189,288,100,188], // DIVIDES + 0x2224: [690,189,411,23,388], // DOES NOT DIVIDE + 0x2225: [690,189,487,100,387], // PARALLEL TO + 0x2226: [690,189,617,23,594], // NOT PARALLEL TO + 0x2227: [536,28,640,52,588], // LOGICAL AND + 0x2228: [536,28,640,52,588], // LOGICAL OR + 0x2229: [541,33,650,66,584], // stix-intersection, serifs + 0x222A: [541,33,650,66,584], // stix-union, serifs + 0x222B: [824,320,553,32,733], // INTEGRAL + 0x222C: [824,320,863,32,1043], // DOUBLE INTEGRAL + 0x222D: [824,320,1174,32,1354], // TRIPLE INTEGRAL + 0x222E: [824,320,591,30,731], // CONTOUR INTEGRAL + 0x222F: [824,320,903,32,1043], // SURFACE INTEGRAL + 0x2230: [824,320,1214,32,1354], // VOLUME INTEGRAL + 0x2231: [824,320,593,32,733], // CLOCKWISE INTEGRAL + 0x2232: [824,320,593,32,733], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [824,320,593,32,733], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2234: [575,41,750,66,685], // THEREFORE + 0x2235: [575,41,750,66,685], // BECAUSE + 0x2236: [575,41,554,190,364], // RATIO + 0x2237: [575,41,750,68,683], // PROPORTION + 0x2238: [543,-209,750,66,685], // DOT MINUS + 0x2239: [543,37,750,66,686], // EXCESS + 0x223A: [575,41,750,66,685], // GEOMETRIC PROPORTION + 0x223B: [565,59,750,67,682], // HOMOTHETIC + 0x223C: [374,-132,750,67,682], // TILDE OPERATOR + 0x223D: [374,-132,750,67,682], // REVERSED TILDE + 0x223E: [419,-85,750,68,683], // stix-most positive + 0x223F: [484,-67,750,66,684], // stix-reverse sine wave + 0x2240: [575,40,348,53,295], // WREATH PRODUCT + 0x2241: [444,-62,750,67,682], // stix-not, vert, similar + 0x2242: [463,-45,750,68,683], // MINUS TILDE + 0x2243: [463,-45,750,68,683], // ASYMPTOTICALLY EQUAL TO + 0x2244: [530,54,750,68,683], // stix-not (vert) similar or equal + 0x2245: [568,60,750,68,683], // APPROXIMATELY EQUAL TO + 0x2246: [568,150,750,68,683], // APPROXIMATELY BUT NOT ACTUALLY EQUAL TO + 0x2247: [642,152,750,68,683], // stix-not (vert) similar over two-line equals + 0x2248: [508,-26,750,68,683], // ALMOST EQUAL TO + 0x2249: [583,48,750,68,683], // stix-not, vert, approximate + 0x224A: [568,75,750,68,683], // ALMOST EQUAL OR EQUAL TO + 0x224B: [613,109,750,68,683], // TRIPLE TILDE + 0x224C: [568,60,750,68,683], // stix-all equal to (lazy S over equals) (formerly 224C; that shape changed) + 0x224D: [518,13,750,68,683], // EQUIVALENT TO + 0x224E: [484,-22,750,68,683], // GEOMETRICALLY EQUIVALENT TO + 0x224F: [484,-107,750,68,683], // DIFFERENCE BETWEEN + 0x2250: [667,-107,750,68,682], // APPROACHES THE LIMIT + 0x2251: [667,161,750,68,682], // GEOMETRICALLY EQUAL TO + 0x2252: [667,161,750,68,682], // APPROXIMATELY EQUAL TO OR THE IMAGE OF + 0x2253: [667,161,750,68,682], // IMAGE OF OR APPROXIMATELY EQUAL TO + 0x2254: [483,-50,932,68,864], // COLON EQUALS + 0x2255: [483,-50,932,68,864], // EQUALS COLON + 0x2256: [471,-63,750,68,682], // RING IN EQUAL TO + 0x2257: [809,-107,750,68,682], // RING EQUAL TO + 0x2258: [761,-107,750,68,682], // CORRESPONDS TO + 0x2259: [836,-107,750,68,682], // ESTIMATES + 0x225A: [836,-107,750,68,682], // EQUIANGULAR TO + 0x225B: [841,-107,750,68,682], // STAR EQUALS + 0x225C: [844,-107,750,68,682], // DELTA EQUAL TO + 0x225D: [838,-107,750,55,735], // EQUAL TO BY DEFINITION + 0x225E: [721,-107,750,68,682], // MEASURED BY + 0x225F: [880,-107,750,68,682], // QUESTIONED EQUAL TO + 0x2260: [662,156,750,68,682], // stix-not (vert) equals + 0x2261: [507,-27,750,68,682], // IDENTICAL TO + 0x2262: [688,156,750,68,682], // stix-not (vert) three-line equals + 0x2263: [592,57,750,68,682], // STRICTLY EQUIVALENT TO + 0x2264: [627,121,750,80,670], // LESS-THAN OR EQUAL TO + 0x2265: [627,120,750,80,670], // GREATER-THAN OR EQUAL TO + 0x2266: [729,222,750,80,670], // LESS-THAN OVER EQUAL TO + 0x2267: [729,222,750,80,670], // GREATER-THAN OVER EQUAL TO + 0x2268: [729,294,750,80,670], // stix-less, vert, not double equals + 0x2269: [729,294,750,80,670], // stix-gt, vert, not double equals + 0x226A: [534,24,1000,38,961], // MUCH LESS-THAN + 0x226B: [534,24,1000,38,961], // MUCH GREATER-THAN + 0x226C: [732,193,417,46,371], // BETWEEN + 0x226D: [591,87,750,68,683], // stix-not (vert) asymptotically equal to + 0x226E: [625,115,750,80,670], // stix-not, vert, less-than + 0x226F: [625,115,750,80,670], // stix-not, vert, greater-than + 0x2270: [717,235,750,80,670], // stix-not, vert, less-than-or-equal + 0x2271: [717,235,750,80,670], // stix-not, vert, greater-than-or-equal + 0x2272: [690,182,750,67,682], // stix-less-than or (contour) similar + 0x2273: [690,182,750,67,682], // stix-greater-than or (contour) similar + 0x2274: [780,282,750,67,682], // stix-not, vert, less, similar + 0x2275: [780,282,750,67,682], // stix-not, vert, greater, similar + 0x2276: [734,226,750,80,670], // LESS-THAN OR GREATER-THAN + 0x2277: [734,226,750,80,670], // GREATER-THAN OR LESS-THAN + 0x2278: [824,316,750,80,670], // stix-not, vert, less, greater + 0x2279: [824,316,750,80,670], // stix-not, vert, greater, less + 0x227A: [531,23,750,80,670], // PRECEDES + 0x227B: [531,23,750,80,670], // SUCCEEDS + 0x227C: [645,138,750,80,670], // PRECEDES OR EQUAL TO + 0x227D: [645,138,750,80,670], // SUCCEEDS OR EQUAL TO + 0x227E: [676,169,750,67,682], // PRECEDES OR EQUIVALENT TO + 0x227F: [676,169,750,67,682], // SUCCEEDS OR EQUIVALENT TO + 0x2280: [625,115,750,80,670], // DOES NOT PRECEDE + 0x2281: [625,115,750,80,670], // stix-not (vert) succeeds + 0x2282: [547,13,750,82,668], // SUBSET OF + 0x2283: [547,13,750,82,668], // SUPERSET OF + 0x2284: [680,146,750,82,668], // stix-not subset [vertical negation] + 0x2285: [680,146,750,82,668], // stix-not superset [vertical negation] + 0x2286: [647,101,750,82,668], // SUBSET OF OR EQUAL TO + 0x2287: [647,101,750,82,668], // SUPERSET OF OR EQUAL TO + 0x2288: [747,201,750,82,668], // stix-/nsubseteq N: not (vert) subset, equals + 0x2289: [747,201,750,82,668], // stix-/nsupseteq N: not (vert) superset, equals + 0x228A: [734,200,750,82,668], // stix-subset, not equals, variant + 0x228B: [734,200,750,82,668], // stix-superset, not equals, variant + 0x228C: [541,33,650,66,584], // MULTISET + 0x228D: [541,33,650,66,584], // MULTISET MULTIPLICATION + 0x228E: [541,33,650,66,584], // MULTISET UNION + 0x228F: [532,27,750,87,663], // SQUARE IMAGE OF + 0x2290: [532,27,750,87,663], // SQUARE ORIGINAL OF + 0x2291: [644,93,750,87,663], // SQUARE IMAGE OF OR EQUAL TO + 0x2292: [644,93,750,87,663], // SQUARE ORIGINAL OF OR EQUAL TO + 0x2293: [541,33,650,66,584], // stix-square intersection, serifs + 0x2294: [541,33,650,66,584], // stix-square union, serifs + 0x2295: [634,130,864,50,814], // stix-circled plus (with rim) + 0x2296: [634,130,864,50,814], // CIRCLED MINUS + 0x2297: [634,130,864,50,814], // stix-circled times (with rim) + 0x2298: [634,130,864,50,814], // CIRCLED DIVISION SLASH + 0x2299: [594,90,784,50,734], // CIRCLED DOT OPERATOR + 0x229A: [634,130,842,39,803], // CIRCLED RING OPERATOR + 0x229B: [634,130,864,50,814], // CIRCLED ASTERISK OPERATOR + 0x229C: [634,130,864,50,814], // stix-two horizontal bars in circle + 0x229D: [634,130,864,50,814], // CIRCLED DASH + 0x229E: [661,158,910,45,865], // SQUARED PLUS + 0x229F: [661,158,910,45,865], // SQUARED MINUS + 0x22A0: [661,158,910,45,865], // SQUARED TIMES + 0x22A1: [661,158,910,45,865], // SQUARED DOT OPERATOR + 0x22A2: [676,0,750,91,659], // RIGHT TACK + 0x22A3: [676,0,750,91,659], // LEFT TACK + 0x22A4: [676,0,750,91,659], // DOWN TACK + 0x22A5: [676,0,750,91,659], // UP TACK + 0x22A6: [676,0,555,91,464], // ASSERTION + 0x22A7: [676,0,555,91,464], // MODELS + 0x22A8: [676,0,750,91,659], // TRUE + 0x22A9: [676,0,972,91,882], // FORCES + 0x22AA: [676,0,944,91,856], // TRIPLE VERTICAL BAR RIGHT TURNSTILE + 0x22AB: [676,0,944,91,856], // DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE + 0x22AC: [676,0,913,21,822], // DOES NOT PROVE + 0x22AD: [676,0,912,21,822], // NOT TRUE + 0x22AE: [676,0,1096,21,1024], // DOES NOT FORCE + 0x22AF: [676,0,1104,21,1016], // NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE + 0x22B0: [543,38,750,98,652], // PRECEDES UNDER RELATION + 0x22B1: [543,38,750,98,652], // SUCCEEDS UNDER RELATION + 0x22B2: [534,24,750,81,669], // NORMAL SUBGROUP OF + 0x22B3: [534,24,750,81,669], // CONTAINS AS NORMAL SUBGROUP + 0x22B4: [621,113,750,81,669], // NORMAL SUBGROUP OF OR EQUAL TO + 0x22B5: [621,113,750,81,669], // CONTAINS AS NORMAL SUBGROUP OR EQUAL TO + 0x22B6: [436,-96,1216,50,1166], // ORIGINAL OF + 0x22B7: [436,-96,1216,50,1166], // IMAGE OF + 0x22B8: [436,-96,884,50,834], // MULTIMAP + 0x22B9: [563,57,750,65,685], // HERMITIAN CONJUGATE MATRIX + 0x22BA: [461,216,498,74,424], // INTERCALATE + 0x22BB: [536,189,640,52,588], // XOR + 0x22BC: [697,28,640,52,588], // NAND + 0x22BD: [697,28,640,52,588], // NOR + 0x22BE: [630,0,750,60,690], // RIGHT ANGLE WITH ARC + 0x22BF: [662,158,910,45,865], // RIGHT TRIANGLE + 0x22C0: [763,259,977,54,923], // N-ARY LOGICAL AND + 0x22C1: [763,259,977,54,923], // N-ARY LOGICAL OR + 0x22C2: [768,264,961,94,867], // N-ARY INTERSECTION + 0x22C3: [768,264,961,94,867], // N-ARY UNION + 0x22C4: [515,-17,584,43,541], // DIAMOND OPERATOR + 0x22C7: [595,63,750,66,685], // DIVISION TIMES + 0x22C8: [604,72,870,67,803], // BOWTIE + 0x22C9: [604,72,870,57,817], // LEFT NORMAL FACTOR SEMIDIRECT PRODUCT + 0x22CA: [604,72,870,53,813], // RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT + 0x22CB: [604,72,870,97,773], // LEFT SEMIDIRECT PRODUCT + 0x22CC: [604,72,870,97,773], // RIGHT SEMIDIRECT PRODUCT + 0x22CD: [463,-45,750,68,683], // REVERSED TILDE EQUALS + 0x22CE: [536,28,640,41,599], // CURLY LOGICAL OR + 0x22CF: [536,28,640,41,599], // CURLY LOGICAL AND + 0x22D0: [600,67,750,63,687], // DOUBLE SUBSET + 0x22D1: [600,67,750,63,687], // DOUBLE SUPERSET + 0x22D2: [541,33,750,65,685], // DOUBLE INTERSECTION + 0x22D3: [541,33,750,65,685], // DOUBLE UNION + 0x22D4: [643,33,650,66,584], // PITCHFORK + 0x22D5: [690,189,685,48,637], // EQUAL AND PARALLEL TO + 0x22D6: [534,24,750,80,670], // LESS-THAN WITH DOT + 0x22D7: [534,24,750,80,670], // GREATER-THAN WITH DOT + 0x22D8: [534,24,1336,40,1296], // VERY MUCH LESS-THAN + 0x22D9: [534,24,1336,40,1296], // VERY MUCH GREATER-THAN + 0x22DA: [916,408,750,80,670], // stix-less, equal, slanted, greater + 0x22DB: [916,408,750,80,670], // stix-greater, equal, slanted, less + 0x22DC: [627,120,750,80,670], // EQUAL TO OR LESS-THAN + 0x22DD: [627,120,750,80,670], // EQUAL TO OR GREATER-THAN + 0x22DE: [645,138,750,80,670], // EQUAL TO OR PRECEDES + 0x22DF: [645,138,750,80,670], // EQUAL TO OR SUCCEEDS + 0x22E0: [735,199,750,80,670], // stix-not (vert) precedes or contour equals + 0x22E1: [735,199,750,80,670], // stix-not (vert) succeeds or contour equals + 0x22E2: [792,241,750,87,663], // NOT SQUARE IMAGE OF OR EQUAL TO + 0x22E3: [792,241,750,87,663], // NOT SQUARE ORIGINAL OF OR EQUAL TO + 0x22E6: [690,200,750,67,682], // LESS-THAN BUT NOT EQUIVALENT TO + 0x22E7: [690,200,750,67,682], // GREATER-THAN BUT NOT EQUIVALENT TO + 0x22E8: [676,187,750,67,682], // PRECEDES BUT NOT EQUIVALENT TO + 0x22E9: [676,187,750,67,682], // SUCCEEDS BUT NOT EQUIVALENT TO + 0x22EA: [625,115,750,81,669], // NOT NORMAL SUBGROUP OF + 0x22EB: [625,115,750,81,669], // DOES NOT CONTAIN AS NORMAL SUBGROUP + 0x22EC: [711,228,750,81,669], // stix-not, vert, left triangle, equals + 0x22ED: [711,228,750,81,669], // stix-not, vert, right triangle, equals + 0x22EE: [678,174,584,205,375], // VERTICAL ELLIPSIS + 0x22EF: [351,-181,977,62,914], // MIDLINE HORIZONTAL ELLIPSIS + 0x22F0: [579,75,977,162,815], // UP RIGHT DIAGONAL ELLIPSIS + 0x22F1: [579,75,977,162,815], // DOWN RIGHT DIAGONAL ELLIPSIS + 0x22F6: [735,13,750,82,668], // ELEMENT OF WITH OVERBAR + 0x22FD: [735,13,750,82,668] // CONTAINS WITH OVERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js new file mode 100644 index 0000000..b9ac751 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x1D5D4: [690,0,690,25,665], // MATHEMATICAL SANS-SERIF BOLD CAPITAL A + 0x1D5D5: [676,0,636,80,594], // MATHEMATICAL SANS-SERIF BOLD CAPITAL B + 0x1D5D6: [691,19,723,49,688], // MATHEMATICAL SANS-SERIF BOLD CAPITAL C + 0x1D5D7: [676,0,709,80,674], // MATHEMATICAL SANS-SERIF BOLD CAPITAL D + 0x1D5D8: [676,0,635,80,597], // MATHEMATICAL SANS-SERIF BOLD CAPITAL E + 0x1D5D9: [676,0,582,80,570], // MATHEMATICAL SANS-SERIF BOLD CAPITAL F + 0x1D5DA: [691,19,746,37,671], // MATHEMATICAL SANS-SERIF BOLD CAPITAL G + 0x1D5DB: [676,0,715,80,635], // MATHEMATICAL SANS-SERIF BOLD CAPITAL H + 0x1D5DC: [676,0,440,65,375], // MATHEMATICAL SANS-SERIF BOLD CAPITAL I + 0x1D5DD: [676,96,481,15,406], // MATHEMATICAL SANS-SERIF BOLD CAPITAL J + 0x1D5DE: [676,0,712,80,707], // MATHEMATICAL SANS-SERIF BOLD CAPITAL K + 0x1D5DF: [676,0,603,80,587], // MATHEMATICAL SANS-SERIF BOLD CAPITAL L + 0x1D5E0: [676,0,913,80,833], // MATHEMATICAL SANS-SERIF BOLD CAPITAL M + 0x1D5E1: [676,18,724,80,644], // MATHEMATICAL SANS-SERIF BOLD CAPITAL N + 0x1D5E2: [692,18,778,35,743], // MATHEMATICAL SANS-SERIF BOLD CAPITAL O + 0x1D5E3: [676,0,581,80,569], // MATHEMATICAL SANS-SERIF BOLD CAPITAL P + 0x1D5E4: [691,176,779,35,754], // MATHEMATICAL SANS-SERIF BOLD CAPITAL Q + 0x1D5E5: [676,0,670,80,657], // MATHEMATICAL SANS-SERIF BOLD CAPITAL R + 0x1D5E6: [691,19,554,35,511], // MATHEMATICAL SANS-SERIF BOLD CAPITAL S + 0x1D5E7: [676,0,641,14,627], // MATHEMATICAL SANS-SERIF BOLD CAPITAL T + 0x1D5E8: [676,19,699,75,624], // MATHEMATICAL SANS-SERIF BOLD CAPITAL U + 0x1D5E9: [676,18,690,25,665], // MATHEMATICAL SANS-SERIF BOLD CAPITAL V + 0x1D5EA: [676,15,997,30,967], // MATHEMATICAL SANS-SERIF BOLD CAPITAL W + 0x1D5EB: [676,0,740,40,700], // MATHEMATICAL SANS-SERIF BOLD CAPITAL X + 0x1D5EC: [676,0,694,20,674], // MATHEMATICAL SANS-SERIF BOLD CAPITAL Y + 0x1D5ED: [676,0,653,25,623], // MATHEMATICAL SANS-SERIF BOLD CAPITAL Z + 0x1D5EE: [473,14,489,23,428], // MATHEMATICAL SANS-SERIF BOLD SMALL A + 0x1D5EF: [676,13,512,55,487], // MATHEMATICAL SANS-SERIF BOLD SMALL B + 0x1D5F0: [473,14,462,25,442], // MATHEMATICAL SANS-SERIF BOLD SMALL C + 0x1D5F1: [676,14,518,25,463], // MATHEMATICAL SANS-SERIF BOLD SMALL D + 0x1D5F2: [473,13,452,25,433], // MATHEMATICAL SANS-SERIF BOLD SMALL E + 0x1D5F3: [691,0,340,14,374], // MATHEMATICAL SANS-SERIF BOLD SMALL F + 0x1D5F4: [473,206,504,28,490], // MATHEMATICAL SANS-SERIF BOLD SMALL G + 0x1D5F5: [676,0,510,55,455], // MATHEMATICAL SANS-SERIF BOLD SMALL H + 0x1D5F6: [688,0,245,50,195], // MATHEMATICAL SANS-SERIF BOLD SMALL I + 0x1D5F7: [688,203,324,-57,269], // MATHEMATICAL SANS-SERIF BOLD SMALL J + 0x1D5F8: [676,0,519,55,506], // MATHEMATICAL SANS-SERIF BOLD SMALL K + 0x1D5F9: [676,0,235,55,180], // MATHEMATICAL SANS-SERIF BOLD SMALL L + 0x1D5FA: [473,0,776,55,721], // MATHEMATICAL SANS-SERIF BOLD SMALL M + 0x1D5FB: [473,0,510,55,455], // MATHEMATICAL SANS-SERIF BOLD SMALL N + 0x1D5FC: [473,14,501,25,476], // MATHEMATICAL SANS-SERIF BOLD SMALL O + 0x1D5FD: [473,205,512,55,487], // MATHEMATICAL SANS-SERIF BOLD SMALL P + 0x1D5FE: [473,205,512,25,457], // MATHEMATICAL SANS-SERIF BOLD SMALL Q + 0x1D5FF: [473,0,411,55,406], // MATHEMATICAL SANS-SERIF BOLD SMALL R + 0x1D600: [473,13,385,25,357], // MATHEMATICAL SANS-SERIF BOLD SMALL S + 0x1D601: [630,12,386,7,371], // MATHEMATICAL SANS-SERIF BOLD SMALL T + 0x1D602: [461,15,518,55,463], // MATHEMATICAL SANS-SERIF BOLD SMALL U + 0x1D603: [461,14,462,15,447], // MATHEMATICAL SANS-SERIF BOLD SMALL V + 0x1D604: [461,14,701,17,684], // MATHEMATICAL SANS-SERIF BOLD SMALL W + 0x1D605: [461,0,506,20,486], // MATHEMATICAL SANS-SERIF BOLD SMALL X + 0x1D606: [461,205,472,18,455], // MATHEMATICAL SANS-SERIF BOLD SMALL Y + 0x1D607: [461,0,441,21,417], // MATHEMATICAL SANS-SERIF BOLD SMALL Z + 0x1D7EC: [688,13,500,24,476], // MATHEMATICAL SANS-SERIF BOLD DIGIT ZERO + 0x1D7ED: [688,0,500,82,334], // MATHEMATICAL SANS-SERIF BOLD DIGIT ONE + 0x1D7EE: [688,0,500,20,474], // MATHEMATICAL SANS-SERIF BOLD DIGIT TWO + 0x1D7EF: [688,13,500,18,479], // MATHEMATICAL SANS-SERIF BOLD DIGIT THREE + 0x1D7F0: [688,0,500,19,484], // MATHEMATICAL SANS-SERIF BOLD DIGIT FOUR + 0x1D7F1: [676,13,500,13,483], // MATHEMATICAL SANS-SERIF BOLD DIGIT FIVE + 0x1D7F2: [688,13,500,26,475], // MATHEMATICAL SANS-SERIF BOLD DIGIT SIX + 0x1D7F3: [676,0,500,35,471], // MATHEMATICAL SANS-SERIF BOLD DIGIT SEVEN + 0x1D7F4: [688,13,500,28,472], // MATHEMATICAL SANS-SERIF BOLD DIGIT EIGHT + 0x1D7F5: [688,13,500,26,475] // MATHEMATICAL SANS-SERIF BOLD DIGIT NINE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MathSSBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js new file mode 100644 index 0000000..241aee1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js @@ -0,0 +1,31 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x27C8: [547,13,1025,62,943], // REVERSE SOLIDUS PRECEDING SUBSET + 0x27C9: [547,13,1025,62,943], // SUBSET PRECEDING SOLIDUS + 0x27E8: [732,193,445,69,399], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [732,193,445,46,376] // MATHEMATICAL RIGHT ANGLE BRACKET + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MiscMathSymbolsA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js new file mode 100644 index 0000000..02c38c1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js @@ -0,0 +1,37 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsB.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2980: [705,200,675,105,570], // TRIPLE VERTICAL BAR DELIMITER + 0x29B6: [634,130,864,50,814], // CIRCLED VERTICAL BAR + 0x29B7: [634,130,864,50,814], // CIRCLED PARALLEL + 0x29B8: [634,130,864,50,814], // CIRCLED REVERSE SOLIDUS + 0x29C0: [634,130,864,50,814], // CIRCLED LESS-THAN + 0x29C1: [634,130,864,50,814], // CIRCLED GREATER-THAN + 0x29C4: [661,158,910,45,865], // SQUARED RISING DIAGONAL SLASH + 0x29C5: [661,158,910,45,865], // SQUARED FALLING DIAGONAL SLASH + 0x29C6: [661,158,910,45,865], // SQUARED ASTERISK + 0x29C7: [661,158,910,45,865] // SQUARED SMALL CIRCLE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MiscMathSymbolsB.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js new file mode 100644 index 0000000..0f10094 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js @@ -0,0 +1,30 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x266D: [740,5,437,86,389], // MUSIC FLAT SIGN + 0x266E: [818,210,490,97,393], // MUSIC NATURAL SIGN + 0x266F: [818,210,490,52,438] // MUSIC SHARP SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MiscSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js new file mode 100644 index 0000000..37d2554 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js @@ -0,0 +1,42 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2302: [774,0,926,55,871], // HOUSE + 0x2308: [731,193,469,164,459], // LEFT CEILING + 0x2309: [731,193,469,10,305], // RIGHT CEILING + 0x230A: [732,193,469,164,459], // LEFT FLOOR + 0x230B: [732,193,469,10,305], // RIGHT FLOOR + 0x2310: [399,-108,750,65,685], // REVERSED NOT SIGN + 0x2319: [399,-108,750,65,685], // TURNED NOT SIGN + 0x2322: [378,-129,1026,37,990], // stix-small down curve + 0x2323: [378,-129,1026,37,990], // stix-small up curve + 0x2329: [732,193,445,69,399], // LEFT-POINTING ANGLE BRACKET + 0x232A: [732,193,445,46,376], // RIGHT-POINTING ANGLE BRACKET + 0x2336: [751,156,926,85,841], // APL FUNCTIONAL SYMBOL I-BEAM + 0x233D: [694,190,924,80,844], // APL FUNCTIONAL SYMBOL CIRCLE STILE + 0x233F: [732,200,728,55,673], // APL FUNCTIONAL SYMBOL SLASH BAR + 0x23AF: [297,-209,315,0,315] // HORIZONTAL LINE EXTENSION + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MiscTechnical.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js new file mode 100644 index 0000000..5a095b4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js @@ -0,0 +1,39 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2153: [688,12,750,-7,763], // VULGAR FRACTION ONE THIRD + 0x2154: [688,12,750,28,763], // VULGAR FRACTION TWO THIRDS + 0x2155: [688,12,750,-7,775], // VULGAR FRACTION ONE FIFTH + 0x2156: [688,12,750,28,775], // VULGAR FRACTION TWO FIFTHS + 0x2157: [688,12,750,23,775], // VULGAR FRACTION THREE FIFTHS + 0x2158: [688,12,750,22,775], // VULGAR FRACTION FOUR FIFTHS + 0x2159: [688,12,750,-7,758], // VULGAR FRACTION ONE SIXTH + 0x215A: [688,12,750,49,758], // VULGAR FRACTION FIVE SIXTHS + 0x215B: [688,12,750,-7,775], // VULGAR FRACTION ONE EIGHTH + 0x215C: [688,12,750,23,775], // VULGAR FRACTION THREE EIGHTHS + 0x215D: [688,12,750,49,775], // VULGAR FRACTION FIVE EIGHTHS + 0x215E: [688,12,750,30,775] // VULGAR FRACTION SEVEN EIGHTHS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/NumberForms.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js new file mode 100644 index 0000000..4e969a1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js @@ -0,0 +1,30 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x1D00: [475,0,515,9,503], // LATIN LETTER SMALL CAPITAL A + 0x1D07: [461,0,531,20,511], // LATIN LETTER SMALL CAPITAL E + 0x1D1C: [461,19,600,16,584] // LATIN LETTER SMALL CAPITAL U + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/PhoneticExtensions.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js new file mode 100644 index 0000000..2fdb28a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js @@ -0,0 +1,88 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SpacingModLetters.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2B0: [842,-335,378,6,365], // MODIFIER LETTER SMALL H + 0x2B1: [848,-336,378,7,365], // MODIFIER LETTER SMALL H WITH HOOK + 0x2B2: [868,-179,300,25,273], // MODIFIER LETTER SMALL J + 0x2B3: [699,-335,270,12,266], // MODIFIER LETTER SMALL R + 0x2B4: [690,-326,292,10,264], // MODIFIER LETTER SMALL TURNED R + 0x2B5: [690,-163,319,10,342], // MODIFIER LETTER SMALL TURNED R WITH HOOK + 0x2B6: [684,-345,404,20,397], // MODIFIER LETTER SMALL CAPITAL INVERTED R + 0x2B7: [681,-331,550,23,528], // MODIFIER LETTER SMALL W + 0x2B8: [690,-179,380,16,374], // MODIFIER LETTER SMALL Y + 0x2B9: [684,-421,208,30,216], // MODIFIER LETTER PRIME + 0x2BA: [684,-421,356,19,364], // MODIFIER LETTER DOUBLE PRIME + 0x2BB: [685,-350,333,39,223], // MODIFIER LETTER TURNED COMMA + 0x2BC: [686,-351,333,39,223], // MODIFIER LETTER APOSTROPHE + 0x2BD: [686,-351,250,39,223], // MODIFIER LETTER REVERSED COMMA + 0x2BE: [662,-382,334,65,250], // MODIFIER LETTER RIGHT HALF RING + 0x2BF: [662,-382,334,65,250], // MODIFIER LETTER LEFT HALF RING + 0x2C0: [690,-240,353,30,333], // MODIFIER LETTER GLOTTAL STOP + 0x2C1: [690,-240,353,30,333], // MODIFIER LETTER REVERSED GLOTTAL STOP + 0x2C2: [760,-414,317,30,297], // MODIFIER LETTER LEFT ARROWHEAD + 0x2C3: [760,-414,317,30,297], // MODIFIER LETTER RIGHT ARROWHEAD + 0x2C4: [720,-453,317,-14,332], // MODIFIER LETTER UP ARROWHEAD + 0x2C5: [720,-453,317,-14,332], // MODIFIER LETTER DOWN ARROWHEAD + 0x2C6: [704,-528,333,-2,335], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [704,-528,333,-2,335], // CARON + 0x2C8: [720,-455,279,112,167], // MODIFIER LETTER VERTICAL LINE + 0x2C9: [637,-565,370,20,350], // MODIFIER LETTER MACRON + 0x2CA: [713,-528,266,20,258], // MODIFIER LETTER ACUTE ACCENT + 0x2CB: [713,-528,266,20,258], // MODIFIER LETTER GRAVE ACCENT + 0x2CC: [70,195,278,112,167], // MODIFIER LETTER LOW VERTICAL LINE + 0x2CD: [-88,160,370,20,350], // MODIFIER LETTER LOW MACRON + 0x2CE: [-7,192,333,15,253], // MODIFIER LETTER LOW GRAVE ACCENT + 0x2CF: [-7,192,333,80,318], // MODIFIER LETTER LOW ACUTE ACCENT + 0x2D0: [474,-4,333,79,254], // MODIFIER LETTER TRIANGULAR COLON + 0x2D1: [474,-294,333,79,254], // MODIFIER LETTER HALF TRIANGULAR COLON + 0x2D2: [378,-62,333,65,268], // MODIFIER LETTER CENTRED RIGHT HALF RING + 0x2D3: [378,-62,333,65,268], // MODIFIER LETTER CENTRED LEFT HALF RING + 0x2D4: [206,-4,333,51,281], // MODIFIER LETTER UP TACK + 0x2D5: [206,-4,333,51,281], // MODIFIER LETTER DOWN TACK + 0x2D6: [227,-9,334,61,273], // MODIFIER LETTER PLUS SIGN + 0x2D7: [150,-84,334,61,273], // MODIFIER LETTER MINUS SIGN + 0x2D8: [691,-528,333,15,318], // BREVE + 0x2D9: [666,-537,333,102,231], // DOT ABOVE + 0x2DA: [750,-537,333,60,273], // RING ABOVE + 0x2DB: [44,173,333,90,319], // OGONEK + 0x2DC: [674,-547,333,-16,349], // SMALL TILDE + 0x2DD: [713,-528,333,-13,425], // DOUBLE ACUTE ACCENT + 0x2DE: [481,-186,292,0,302], // MODIFIER LETTER RHOTIC HOOK + 0x2DF: [744,-506,260,10,250], // MODIFIER LETTER CROSS ACCENT + 0x2E0: [684,-190,420,10,410], // MODIFIER LETTER SMALL GAMMA + 0x2E1: [842,-335,190,5,186], // MODIFIER LETTER SMALL L + 0x2E2: [695,-320,300,19,278], // MODIFIER LETTER SMALL S + 0x2E3: [690,-335,380,12,376], // MODIFIER LETTER SMALL X + 0x2E4: [855,-335,328,20,323], // MODIFIER LETTER SMALL REVERSED GLOTTAL STOP + 0x2E5: [676,0,405,40,368], // MODIFIER LETTER EXTRA-HIGH TONE BAR + 0x2E6: [676,0,405,40,368], // MODIFIER LETTER HIGH TONE BAR + 0x2E7: [676,0,405,40,368], // MODIFIER LETTER MID TONE BAR + 0x2E8: [676,0,405,40,368], // MODIFIER LETTER LOW TONE BAR + 0x2E9: [676,0,405,40,368], // MODIFIER LETTER EXTRA-LOW TONE BAR + 0x2EC: [70,167,314,5,309], // MODIFIER LETTER VOICING + 0x2ED: [720,-528,395,5,390], // MODIFIER LETTER UNASPIRATED + 0x2F7: [-108,235,333,-16,349] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js new file mode 100644 index 0000000..23fcb85 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x207F: [700,-275,491,15,478] // SUPERSCRIPT LATIN SMALL LETTER N + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/SuperAndSubscripts.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js new file mode 100644 index 0000000..26fa05c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuppMathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], + { + 0x2A0C: [824,320,1484,32,1664], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [824,320,593,32,733], // FINITE PART INTEGRAL + 0x2A0E: [824,320,593,32,733], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [824,320,593,32,733], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [824,320,593,32,733], // CIRCULATION FUNCTION + 0x2A11: [824,320,593,32,733], // ANTICLOCKWISE INTEGRATION + 0x2A12: [824,320,613,32,733], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [824,320,593,32,733], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [824,320,675,32,735], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [824,320,593,32,733], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [824,320,623,32,733], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [824,320,791,32,871], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [824,320,633,32,733], // INTEGRAL WITH TIMES SIGN + 0x2A19: [824,320,653,32,733], // INTEGRAL WITH INTERSECTION + 0x2A1A: [824,320,653,32,733], // INTEGRAL WITH UNION + 0x2A1B: [959,320,557,32,737], // INTEGRAL WITH OVERBAR + 0x2A1C: [824,455,557,32,737], // INTEGRAL WITH UNDERBAR + 0x2A22: [894,57,750,65,685], // PLUS SIGN WITH SMALL CIRCLE ABOVE + 0x2A23: [736,57,750,65,685], // PLUS SIGN WITH CIRCUMFLEX ACCENT ABOVE + 0x2A24: [746,57,750,65,685], // PLUS SIGN WITH TILDE ABOVE + 0x2A25: [563,287,750,65,685], // PLUS SIGN WITH DOT BELOW + 0x2A26: [563,240,750,65,685], // PLUS SIGN WITH TILDE BELOW + 0x2A27: [563,247,780,65,778], // PLUS SIGN WITH SUBSCRIPT TWO + 0x2A2A: [297,37,750,66,685], // MINUS SIGN WITH DOT BELOW + 0x2A2B: [543,37,750,66,685], // MINUS SIGN WITH FALLING DOTS + 0x2A2C: [543,37,750,66,685], // MINUS SIGN WITH RISING DOTS + 0x2A30: [745,33,702,66,636], // MULTIPLICATION SIGN WITH DOT ABOVE + 0x2A31: [538,191,702,66,636], // MULTIPLICATION SIGN WITH UNDERBAR + 0x2A32: [538,59,702,66,636], // SEMIDIRECT PRODUCT WITH BOTTOM CLOSED + 0x2A3F: [676,0,734,27,707], // AMALGAMATION OR COPRODUCT + 0x2A5E: [887,28,640,52,588], // LOGICAL AND WITH DOUBLE OVERBAR + 0x2A63: [536,379,640,52,588], // LOGICAL OR WITH DOUBLE UNDERBAR + 0x2A66: [399,161,750,68,682], // EQUALS SIGN WITH DOT BELOW + 0x2A67: [775,-27,750,68,682], // IDENTICAL WITH DOT ABOVE + 0x2A6A: [565,-132,750,67,682], // TILDE OPERATOR WITH DOT ABOVE + 0x2A6D: [759,60,750,68,683], // CONGRUENT WITH DOT ABOVE + 0x2A6E: [884,-107,750,68,682], // EQUALS WITH ASTERISK + 0x2A6F: [752,-26,750,68,683], // ALMOST EQUAL TO WITH CIRCUMFLEX ACCENT + 0x2A70: [680,176,750,68,683], // APPROXIMATELY EQUAL OR EQUAL TO + 0x2A71: [665,159,750,65,685], // EQUALS SIGN ABOVE PLUS SIGN + 0x2A72: [665,159,750,65,685], // PLUS SIGN ABOVE EQUALS SIGN + 0x2A73: [568,60,750,67,682], // EQUALS SIGN ABOVE TILDE OPERATOR + 0x2A7D: [648,140,750,80,670], // LESS-THAN OR SLANTED EQUAL TO + 0x2A7E: [648,140,750,80,670], // GREATER-THAN OR SLANTED EQUAL TO + 0x2A87: [646,213,750,80,670], // LESS-THAN AND SINGLE-LINE NOT EQUAL TO + 0x2A88: [646,213,750,80,670], // GREATER-THAN AND SINGLE-LINE NOT EQUAL TO + 0x2A89: [792,305,750,67,682], // LESS-THAN AND NOT APPROXIMATE + 0x2A8A: [792,305,750,67,682], // GREATER-THAN AND NOT APPROXIMATE + 0x2A95: [648,140,750,80,670], // SLANTED EQUAL TO OR LESS-THAN + 0x2A96: [648,140,750,80,670], // SLANTED EQUAL TO OR GREATER-THAN + 0x2A9D: [689,183,750,67,682], // stix-similar (conforming) or less-than + 0x2A9E: [689,183,750,67,682], // SIMILAR OR GREATER-THAN + 0x2AAF: [619,111,750,80,670], // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN + 0x2AB0: [619,111,750,80,670], // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN + 0x2ABD: [547,13,750,82,668], // SUBSET WITH DOT + 0x2ABE: [547,13,750,82,668], // SUPERSET WITH DOT + 0x2AC5: [730,222,750,80,670], // SUBSET OF ABOVE EQUALS SIGN + 0x2AC6: [730,222,750,80,670] // SUPERSET OF ABOVE EQUALS SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/SuppMathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js new file mode 100644 index 0000000..cfed66e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0xFB00: [698,205,613,-169,726], // LATIN SMALL LIGATURE FF + 0xFB01: [703,205,556,-188,514], // LATIN SMALL LIGATURE FI + 0xFB02: [704,205,556,-186,553], // LATIN SMALL LIGATURE FL + 0xFB03: [703,205,856,-169,814], // LATIN SMALL LIGATURE FFI + 0xFB04: [704,205,854,-169,851] // LATIN SMALL LIGATURE FFL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/AlphaPresentForms.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js new file mode 100644 index 0000000..2f67b05 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js @@ -0,0 +1,122 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BasicLatin.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x21: [684,13,389,67,370], // EXCLAMATION MARK + 0x22: [685,-398,555,136,536], // QUOTATION MARK + 0x23: [700,0,500,-32,532], // NUMBER SIGN + 0x24: [733,100,500,-20,497], // DOLLAR SIGN + 0x25: [706,29,757,80,707], // PERCENT SIGN + 0x26: [682,19,849,76,771], // AMPERSAND + 0x27: [685,-398,278,128,268], // APOSTROPHE + 0x28: [685,179,333,28,344], // LEFT PARENTHESIS + 0x29: [685,179,333,-44,271], // RIGHT PARENTHESIS + 0x2A: [685,-252,500,101,492], // ASTERISK + 0x2B: [506,0,570,33,537], // PLUS SIGN + 0x2C: [134,182,250,-60,144], // COMMA + 0x2D: [282,-166,333,2,271], // HYPHEN-MINUS + 0x2E: [135,13,250,-9,139], // FULL STOP + 0x2F: [685,18,278,-64,342], // SOLIDUS + 0x30: [683,14,500,17,477], // DIGIT ZERO + 0x31: [683,0,500,5,419], // DIGIT ONE + 0x32: [683,0,500,-27,446], // DIGIT TWO + 0x33: [683,13,500,-14,450], // DIGIT THREE + 0x34: [683,0,500,-15,503], // DIGIT FOUR + 0x35: [669,13,500,-11,486], // DIGIT FIVE + 0x36: [679,15,500,23,509], // DIGIT SIX + 0x37: [669,0,500,52,525], // DIGIT SEVEN + 0x38: [683,13,500,3,476], // DIGIT EIGHT + 0x39: [683,10,500,-12,475], // DIGIT NINE + 0x3A: [459,13,333,23,264], // COLON + 0x3B: [459,183,333,-25,264], // SEMICOLON + 0x3C: [518,12,570,31,539], // LESS-THAN SIGN + 0x3D: [399,-107,570,33,537], // EQUALS SIGN + 0x3E: [518,12,570,31,539], // GREATER-THAN SIGN + 0x3F: [684,13,500,79,470], // QUESTION MARK + 0x40: [685,18,939,118,825], // COMMERCIAL AT + 0x41: [683,0,667,-68,593], // LATIN CAPITAL LETTER A + 0x42: [669,0,667,-25,624], // LATIN CAPITAL LETTER B + 0x43: [685,18,667,32,677], // LATIN CAPITAL LETTER C + 0x44: [669,0,722,-46,685], // LATIN CAPITAL LETTER D + 0x45: [669,0,667,-27,653], // LATIN CAPITAL LETTER E + 0x46: [669,0,667,-13,660], // LATIN CAPITAL LETTER F + 0x47: [685,18,722,21,705], // LATIN CAPITAL LETTER G + 0x48: [669,0,778,-24,799], // LATIN CAPITAL LETTER H + 0x49: [669,0,389,-32,406], // LATIN CAPITAL LETTER I + 0x4A: [669,99,500,-46,524], // LATIN CAPITAL LETTER J + 0x4B: [669,0,667,-21,702], // LATIN CAPITAL LETTER K + 0x4C: [669,0,611,-22,590], // LATIN CAPITAL LETTER L + 0x4D: [669,12,889,-29,917], // LATIN CAPITAL LETTER M + 0x4E: [669,15,722,-27,748], // LATIN CAPITAL LETTER N + 0x4F: [685,18,722,27,691], // LATIN CAPITAL LETTER O + 0x50: [669,0,611,-28,613], // LATIN CAPITAL LETTER P + 0x51: [685,208,722,27,691], // LATIN CAPITAL LETTER Q + 0x52: [669,0,667,-28,623], // LATIN CAPITAL LETTER R + 0x53: [685,18,556,2,526], // LATIN CAPITAL LETTER S + 0x54: [669,0,611,49,650], // LATIN CAPITAL LETTER T + 0x55: [669,18,722,67,744], // LATIN CAPITAL LETTER U + 0x56: [669,18,667,66,715], // LATIN CAPITAL LETTER V + 0x57: [669,18,889,64,940], // LATIN CAPITAL LETTER W + 0x58: [669,0,667,-24,694], // LATIN CAPITAL LETTER X + 0x59: [669,0,611,71,659], // LATIN CAPITAL LETTER Y + 0x5A: [669,0,611,-12,589], // LATIN CAPITAL LETTER Z + 0x5B: [674,159,333,-37,362], // LEFT SQUARE BRACKET + 0x5C: [685,18,278,-1,279], // REVERSE SOLIDUS + 0x5D: [674,157,333,-56,343], // RIGHT SQUARE BRACKET + 0x5E: [669,-304,570,67,503], // CIRCUMFLEX ACCENT + 0x5F: [-75,125,500,0,500], // LOW LINE + 0x60: [697,-516,333,85,297], // GRAVE ACCENT + 0x61: [462,14,500,-21,456], // LATIN SMALL LETTER A + 0x62: [699,13,500,-14,444], // LATIN SMALL LETTER B + 0x63: [462,13,444,-5,392], // LATIN SMALL LETTER C + 0x64: [699,13,500,-21,517], // LATIN SMALL LETTER D + 0x65: [462,13,444,5,398], // LATIN SMALL LETTER E + 0x66: [698,205,333,-169,446], // LATIN SMALL LETTER F + 0x67: [462,203,500,-52,477], // LATIN SMALL LETTER G + 0x68: [699,9,556,-13,498], // LATIN SMALL LETTER H + 0x69: [684,9,278,2,262], // LATIN SMALL LETTER I + 0x6A: [685,207,278,-189,279], // LATIN SMALL LETTER J + 0x6B: [699,8,500,-23,483], // LATIN SMALL LETTER K + 0x6C: [699,9,278,2,290], // LATIN SMALL LETTER L + 0x6D: [462,9,778,-14,723], // LATIN SMALL LETTER M + 0x6E: [462,9,556,-6,494], // LATIN SMALL LETTER N + 0x6F: [462,13,500,-3,441], // LATIN SMALL LETTER O + 0x70: [462,205,500,-120,446], // LATIN SMALL LETTER P + 0x71: [462,205,500,1,471], // LATIN SMALL LETTER Q + 0x72: [462,0,389,-21,389], // LATIN SMALL LETTER R + 0x73: [462,13,389,-19,333], // LATIN SMALL LETTER S + 0x74: [594,9,278,-11,281], // LATIN SMALL LETTER T + 0x75: [462,9,556,15,493], // LATIN SMALL LETTER U + 0x76: [462,13,444,15,401], // LATIN SMALL LETTER V + 0x77: [462,13,667,15,614], // LATIN SMALL LETTER W + 0x78: [462,13,500,-45,469], // LATIN SMALL LETTER X + 0x79: [462,205,444,-94,392], // LATIN SMALL LETTER Y + 0x7A: [449,78,389,-43,368], // LATIN SMALL LETTER Z + 0x7B: [686,187,348,4,436], // LEFT CURLY BRACKET + 0x7C: [685,18,220,66,154], // VERTICAL LINE + 0x7D: [686,187,348,-129,303], // RIGHT CURLY BRACKET + 0x7E: [331,-175,570,54,516] // TILDE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js new file mode 100644 index 0000000..df4d535 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js @@ -0,0 +1,67 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/BoxDrawing.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x2500: [340,-267,708,-11,719], // BOX DRAWINGS LIGHT HORIZONTAL + 0x2502: [910,303,696,312,385], // BOX DRAWINGS LIGHT VERTICAL + 0x250C: [340,303,708,318,720], // BOX DRAWINGS LIGHT DOWN AND RIGHT + 0x2510: [340,303,708,-11,390], // BOX DRAWINGS LIGHT DOWN AND LEFT + 0x2514: [910,-267,708,318,720], // BOX DRAWINGS LIGHT UP AND RIGHT + 0x2518: [910,-267,708,-11,390], // BOX DRAWINGS LIGHT UP AND LEFT + 0x251C: [910,303,708,318,720], // BOX DRAWINGS LIGHT VERTICAL AND RIGHT + 0x2524: [910,303,708,-11,390], // BOX DRAWINGS LIGHT VERTICAL AND LEFT + 0x252C: [340,303,708,-11,719], // BOX DRAWINGS LIGHT DOWN AND HORIZONTAL + 0x2534: [910,-267,708,-11,719], // BOX DRAWINGS LIGHT UP AND HORIZONTAL + 0x253C: [910,303,708,-11,719], // BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL + 0x2550: [433,-174,708,-11,719], // BOX DRAWINGS DOUBLE HORIZONTAL + 0x2551: [910,303,708,225,484], // BOX DRAWINGS DOUBLE VERTICAL + 0x2552: [433,303,708,318,720], // BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE + 0x2553: [340,303,708,225,720], // BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE + 0x2554: [433,303,708,225,719], // BOX DRAWINGS DOUBLE DOWN AND RIGHT + 0x2555: [433,303,708,-11,390], // BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE + 0x2556: [340,303,708,-11,483], // BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE + 0x2557: [433,303,708,-11,483], // BOX DRAWINGS DOUBLE DOWN AND LEFT + 0x2558: [910,-174,708,318,720], // BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE + 0x2559: [910,-267,708,225,720], // BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE + 0x255A: [910,-174,708,225,719], // BOX DRAWINGS DOUBLE UP AND RIGHT + 0x255B: [910,-174,708,-11,390], // BOX DRAWINGS UP SINGLE AND LEFT DOUBLE + 0x255C: [910,-267,708,-11,483], // BOX DRAWINGS UP DOUBLE AND LEFT SINGLE + 0x255D: [910,-174,708,-11,483], // BOX DRAWINGS DOUBLE UP AND LEFT + 0x255E: [910,303,708,318,720], // BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE + 0x255F: [910,303,708,225,720], // BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE + 0x2560: [910,303,708,225,720], // BOX DRAWINGS DOUBLE VERTICAL AND RIGHT + 0x2561: [910,303,708,-11,390], // BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE + 0x2562: [910,303,708,-11,483], // BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE + 0x2563: [910,303,708,-11,483], // BOX DRAWINGS DOUBLE VERTICAL AND LEFT + 0x2564: [433,303,708,-11,719], // BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE + 0x2565: [340,303,708,-11,719], // BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE + 0x2566: [433,303,708,-11,719], // BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL + 0x2567: [910,-174,708,-11,719], // BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE + 0x2568: [910,-267,708,-11,719], // BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE + 0x2569: [910,-174,708,-11,719], // BOX DRAWINGS DOUBLE UP AND HORIZONTAL + 0x256A: [910,303,708,-11,719], // BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE + 0x256B: [910,303,708,-11,719], // BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE + 0x256C: [910,303,708,-11,719] // BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/BoxDrawing.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js new file mode 100644 index 0000000..2ad2f00 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x20DD: [760,254,0,-753,256] // COMBINING ENCLOSING CIRCLE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/CombDiactForSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js new file mode 100644 index 0000000..b49ebae --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x2423: [31,120,500,40,460] // stix-round space indicator + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/ControlPictures.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js new file mode 100644 index 0000000..1a13507 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js @@ -0,0 +1,31 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x20A3: [669,0,668,-13,661], // FRENCH FRANC SIGN + 0x20A4: [683,12,500,-32,510], // LIRA SIGN + 0x20A7: [669,13,1229,-28,1173], // PESETA SIGN + 0x20AC: [681,17,562,34,546] // EURO SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/CurrencySymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js new file mode 100644 index 0000000..1cd0634 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js @@ -0,0 +1,129 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Cyrillic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x401: [905,0,667,-35,645], // CYRILLIC CAPITAL LETTER IO + 0x402: [669,205,789,80,737], // CYRILLIC CAPITAL LETTER DJE + 0x403: [947,0,604,-32,658], // CYRILLIC CAPITAL LETTER GJE + 0x404: [685,18,657,44,689], // CYRILLIC CAPITAL LETTER UKRAINIAN IE + 0x405: [685,18,556,-22,502], // CYRILLIC CAPITAL LETTER DZE + 0x406: [669,0,389,-32,406], // CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I + 0x407: [905,0,389,-35,477], // CYRILLIC CAPITAL LETTER YI + 0x408: [669,99,500,-8,562], // CYRILLIC CAPITAL LETTER JE + 0x409: [669,18,954,-59,896], // CYRILLIC CAPITAL LETTER LJE + 0x40A: [669,0,982,-32,924], // CYRILLIC CAPITAL LETTER NJE + 0x40B: [669,0,830,71,757], // CYRILLIC CAPITAL LETTER TSHE + 0x40C: [947,0,678,-35,697], // CYRILLIC CAPITAL LETTER KJE + 0x40E: [951,18,666,99,712], // CYRILLIC CAPITAL LETTER SHORT U + 0x40F: [669,184,778,-33,791], // CYRILLIC CAPITAL LETTER DZHE + 0x410: [683,0,667,-57,604], // CYRILLIC CAPITAL LETTER A + 0x411: [669,0,635,-18,629], // CYRILLIC CAPITAL LETTER BE + 0x412: [669,0,654,-25,624], // CYRILLIC CAPITAL LETTER VE + 0x413: [669,0,604,-32,658], // CYRILLIC CAPITAL LETTER GHE + 0x414: [669,184,696,-115,718], // CYRILLIC CAPITAL LETTER DE + 0x415: [669,0,667,-35,645], // CYRILLIC CAPITAL LETTER IE + 0x416: [678,0,927,-63,969], // CYRILLIC CAPITAL LETTER ZHE + 0x417: [686,18,561,-10,549], // CYRILLIC CAPITAL LETTER ZE + 0x418: [669,0,768,-33,790], // CYRILLIC CAPITAL LETTER I + 0x419: [948,0,768,-33,790], // CYRILLIC CAPITAL LETTER SHORT I + 0x41A: [678,0,678,-35,697], // CYRILLIC CAPITAL LETTER KA + 0x41B: [669,18,742,-59,764], // CYRILLIC CAPITAL LETTER EL + 0x41C: [669,12,890,-34,912], // CYRILLIC CAPITAL LETTER EM + 0x41D: [669,0,769,-32,791], // CYRILLIC CAPITAL LETTER EN + 0x41E: [685,18,722,53,717], // CYRILLIC CAPITAL LETTER O + 0x41F: [669,0,767,-35,789], // CYRILLIC CAPITAL LETTER PE + 0x420: [669,0,590,-30,611], // CYRILLIC CAPITAL LETTER ER + 0x421: [685,18,667,65,710], // CYRILLIC CAPITAL LETTER ES + 0x422: [669,0,611,80,681], // CYRILLIC CAPITAL LETTER TE + 0x423: [669,18,666,99,712], // CYRILLIC CAPITAL LETTER U + 0x424: [669,0,833,72,816], // CYRILLIC CAPITAL LETTER EF + 0x425: [669,0,607,-61,657], // CYRILLIC CAPITAL LETTER HA + 0x426: [669,184,770,-32,792], // CYRILLIC CAPITAL LETTER TSE + 0x427: [669,0,758,120,780], // CYRILLIC CAPITAL LETTER CHE + 0x428: [669,0,960,-33,982], // CYRILLIC CAPITAL LETTER SHA + 0x429: [669,184,960,-33,982], // CYRILLIC CAPITAL LETTER SHCHA + 0x42A: [669,0,780,107,722], // CYRILLIC CAPITAL LETTER HARD SIGN + 0x42B: [669,0,985,-19,1007], // CYRILLIC CAPITAL LETTER YERU + 0x42C: [669,0,636,-19,578], // CYRILLIC CAPITAL LETTER SOFT SIGN + 0x42D: [685,18,671,4,648], // CYRILLIC CAPITAL LETTER E + 0x42E: [685,18,905,-38,871], // CYRILLIC CAPITAL LETTER YU + 0x42F: [669,0,710,-65,732], // CYRILLIC CAPITAL LETTER YA + 0x430: [462,14,527,20,497], // CYRILLIC SMALL LETTER A + 0x431: [685,13,499,32,570], // CYRILLIC SMALL LETTER BE + 0x432: [462,13,482,25,458], // CYRILLIC SMALL LETTER VE + 0x433: [461,14,368,-8,371], // CYRILLIC SMALL LETTER GHE + 0x434: [695,13,496,22,466], // CYRILLIC SMALL LETTER DE + 0x435: [462,13,431,22,415], // CYRILLIC SMALL LETTER IE + 0x436: [462,13,898,-4,890], // CYRILLIC SMALL LETTER ZHE + 0x437: [462,13,400,-11,378], // CYRILLIC SMALL LETTER ZE + 0x438: [462,9,542,34,512], // CYRILLIC SMALL LETTER I + 0x439: [697,9,542,34,514], // CYRILLIC SMALL LETTER SHORT I + 0x43A: [461,8,522,12,527], // CYRILLIC SMALL LETTER KA + 0x43B: [462,11,507,-48,477], // CYRILLIC SMALL LETTER EL + 0x43C: [449,11,667,-48,637], // CYRILLIC SMALL LETTER EM + 0x43D: [462,9,543,13,513], // CYRILLIC SMALL LETTER EN + 0x43E: [462,13,500,24,468], // CYRILLIC SMALL LETTER O + 0x43F: [462,9,543,13,513], // CYRILLIC SMALL LETTER PE + 0x440: [462,205,497,-96,470], // CYRILLIC SMALL LETTER ER + 0x441: [462,13,435,26,423], // CYRILLIC SMALL LETTER ES + 0x442: [462,9,777,10,747], // CYRILLIC SMALL LETTER TE + 0x443: [462,205,447,-94,422], // CYRILLIC SMALL LETTER U + 0x444: [699,205,750,28,717], // CYRILLIC SMALL LETTER EF + 0x445: [462,13,456,-38,511], // CYRILLIC SMALL LETTER HA + 0x446: [462,179,542,34,512], // CYRILLIC SMALL LETTER TSE + 0x447: [462,9,531,48,501], // CYRILLIC SMALL LETTER CHE + 0x448: [462,9,800,36,770], // CYRILLIC SMALL LETTER SHA + 0x449: [462,179,800,36,770], // CYRILLIC SMALL LETTER SHCHA + 0x44A: [462,13,594,29,556], // CYRILLIC SMALL LETTER HARD SIGN + 0x44B: [462,13,754,43,724], // CYRILLIC SMALL LETTER YERU + 0x44C: [462,13,491,43,453], // CYRILLIC SMALL LETTER SOFT SIGN + 0x44D: [462,13,444,-12,405], // CYRILLIC SMALL LETTER E + 0x44E: [462,13,740,12,710], // CYRILLIC SMALL LETTER YU + 0x44F: [449,11,538,2,508], // CYRILLIC SMALL LETTER YA + 0x451: [655,13,434,22,487], // CYRILLIC SMALL LETTER IO + 0x452: [699,205,523,12,490], // CYRILLIC SMALL LETTER DJE + 0x453: [697,14,368,-8,456], // CYRILLIC SMALL LETTER GJE + 0x454: [462,13,415,22,450], // CYRILLIC SMALL LETTER UKRAINIAN IE + 0x455: [462,13,389,0,352], // CYRILLIC SMALL LETTER DZE + 0x456: [684,9,278,20,280], // CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I + 0x457: [655,9,278,22,382], // CYRILLIC SMALL LETTER YI + 0x458: [685,207,278,-161,307], // CYRILLIC SMALL LETTER JE + 0x459: [462,13,694,-48,656], // CYRILLIC SMALL LETTER LJE + 0x45A: [462,13,733,12,695], // CYRILLIC SMALL LETTER NJE + 0x45B: [699,9,556,12,515], // CYRILLIC SMALL LETTER TSHE + 0x45C: [697,8,522,12,527], // CYRILLIC SMALL LETTER KJE + 0x45E: [697,205,447,-94,436], // CYRILLIC SMALL LETTER SHORT U + 0x45F: [462,179,538,30,508], // CYRILLIC SMALL LETTER DZHE + 0x462: [669,0,761,62,707], // CYRILLIC CAPITAL LETTER YAT + 0x463: [699,13,569,20,531], // CYRILLIC SMALL LETTER YAT + 0x46A: [669,0,978,-22,918], // CYRILLIC CAPITAL LETTER BIG YUS + 0x46B: [449,13,844,-4,825], // CYRILLIC SMALL LETTER BIG YUS + 0x472: [685,18,722,53,717], // CYRILLIC CAPITAL LETTER FITA + 0x473: [462,13,500,24,468], // CYRILLIC SMALL LETTER FITA + 0x474: [678,18,667,66,750], // CYRILLIC CAPITAL LETTER IZHITSA + 0x475: [462,13,487,15,534], // CYRILLIC SMALL LETTER IZHITSA + 0x490: [834,0,539,-32,641], // CYRILLIC CAPITAL LETTER GHE WITH UPTURN + 0x491: [590,9,360,31,457] // CYRILLIC SMALL LETTER GHE WITH UPTURN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/Cyrillic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js new file mode 100644 index 0000000..e8c9038 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/EnclosedAlphanum.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x2460: [690,19,695,0,695], // CIRCLED DIGIT ONE + 0x2461: [690,19,695,0,695], // CIRCLED DIGIT TWO + 0x2462: [690,19,695,0,695], // CIRCLED DIGIT THREE + 0x2463: [690,19,695,0,695], // CIRCLED DIGIT FOUR + 0x2464: [690,19,695,0,695], // CIRCLED DIGIT FIVE + 0x2465: [690,19,695,0,695], // CIRCLED DIGIT SIX + 0x2466: [690,19,695,0,695], // CIRCLED DIGIT SEVEN + 0x2467: [690,19,695,0,695], // CIRCLED DIGIT EIGHT + 0x2468: [690,19,695,0,695], // CIRCLED DIGIT NINE + 0x24B6: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER A + 0x24B7: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER B + 0x24B8: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER C + 0x24B9: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER D + 0x24BA: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER E + 0x24BB: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER F + 0x24BC: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER G + 0x24BD: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER H + 0x24BE: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER I + 0x24BF: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER J + 0x24C0: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER K + 0x24C1: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER L + 0x24C2: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER M + 0x24C3: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER N + 0x24C4: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER O + 0x24C5: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER P + 0x24C6: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER Q + 0x24C7: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER R + 0x24C8: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER S + 0x24C9: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER T + 0x24CA: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER U + 0x24CB: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER V + 0x24CC: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER W + 0x24CD: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER X + 0x24CE: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER Y + 0x24CF: [690,19,695,0,695], // CIRCLED LATIN CAPITAL LETTER Z + 0x24D0: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER A + 0x24D1: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER B + 0x24D2: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER C + 0x24D3: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER D + 0x24D4: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER E + 0x24D5: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER F + 0x24D6: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER G + 0x24D7: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER H + 0x24D8: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER I + 0x24D9: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER J + 0x24DA: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER K + 0x24DB: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER L + 0x24DC: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER M + 0x24DD: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER N + 0x24DE: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER O + 0x24DF: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER P + 0x24E0: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER Q + 0x24E1: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER R + 0x24E2: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER S + 0x24E3: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER T + 0x24E4: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER U + 0x24E5: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER V + 0x24E6: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER W + 0x24E7: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER X + 0x24E8: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER Y + 0x24E9: [690,19,695,0,695], // CIRCLED LATIN SMALL LETTER Z + 0x24EA: [690,19,695,0,695] // CIRCLED DIGIT ZERO + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/EnclosedAlphanum.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js new file mode 100644 index 0000000..ad30437 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js @@ -0,0 +1,50 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GeneralPunctuation.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x2010: [282,-166,333,-4,273], // HYPHEN + 0x2011: [282,-166,333,-4,273], // NON-BREAKING HYPHEN + 0x2012: [282,-166,500,-40,477], // FIGURE DASH + 0x2013: [269,-178,500,-40,477], // EN DASH + 0x2014: [269,-178,1000,-40,977], // EM DASH + 0x2018: [685,-369,333,128,332], // LEFT SINGLE QUOTATION MARK + 0x2019: [685,-369,333,98,302], // RIGHT SINGLE QUOTATION MARK + 0x201A: [134,182,333,-5,199], // SINGLE LOW-9 QUOTATION MARK + 0x201B: [685,-369,333,128,302], // SINGLE HIGH-REVERSED-9 QUOTATION MARK + 0x201C: [685,-369,500,53,513], // LEFT DOUBLE QUOTATION MARK + 0x201D: [685,-369,500,53,513], // RIGHT DOUBLE QUOTATION MARK + 0x201E: [134,182,500,-57,403], // DOUBLE LOW-9 QUOTATION MARK + 0x201F: [685,-369,500,92,513], // DOUBLE HIGH-REVERSED-9 QUOTATION MARK + 0x2020: [685,145,500,91,494], // DAGGER + 0x2021: [685,139,500,10,493], // DOUBLE DAGGER + 0x2022: [462,-42,560,70,490], // BULLET + 0x2026: [135,13,1000,40,852], // HORIZONTAL ELLIPSIS + 0x2030: [706,29,1118,80,1068], // PER MILLE SIGN + 0x2031: [706,29,1480,80,1430], // PER TEN THOUSAND SIGN + 0x2039: [415,-32,333,32,303], // SINGLE LEFT-POINTING ANGLE QUOTATION MARK + 0x203A: [415,-32,333,10,281], // SINGLE RIGHT-POINTING ANGLE QUOTATION MARK + 0x203E: [838,-766,500,0,500], // OVERLINE + 0x2044: [688,12,183,-168,345] // FRACTION SLASH + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js new file mode 100644 index 0000000..e68b18e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js @@ -0,0 +1,119 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekAndCoptic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x384: [680,-516,300,140,319], // GREEK TONOS + 0x385: [680,-516,380,27,440], // GREEK DIALYTIKA TONOS + 0x386: [693,0,667,-68,593], // GREEK CAPITAL LETTER ALPHA WITH TONOS + 0x387: [459,-311,333,116,264], // GREEK ANO TELEIA + 0x388: [693,0,700,10,748], // GREEK CAPITAL LETTER EPSILON WITH TONOS + 0x389: [693,0,850,9,889], // GREEK CAPITAL LETTER ETA WITH TONOS + 0x38A: [693,0,450,9,503], // GREEK CAPITAL LETTER IOTA WITH TONOS + 0x38C: [693,18,722,11,691], // GREEK CAPITAL LETTER OMICRON WITH TONOS + 0x38E: [693,0,700,8,855], // GREEK CAPITAL LETTER UPSILON WITH TONOS + 0x38F: [693,0,808,25,774], // GREEK CAPITAL LETTER OMEGA WITH TONOS + 0x390: [680,9,278,6,419], // GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS + 0x391: [683,0,667,-68,593], // GREEK CAPITAL LETTER ALPHA + 0x392: [669,0,667,-25,624], // GREEK CAPITAL LETTER BETA + 0x393: [669,0,585,-13,670], // GREEK CAPITAL LETTER GAMMA + 0x394: [683,0,667,-65,549], // GREEK CAPITAL LETTER DELTA + 0x395: [669,0,667,-27,653], // GREEK CAPITAL LETTER EPSILON + 0x396: [669,0,611,-12,589], // GREEK CAPITAL LETTER ZETA + 0x397: [669,0,778,-24,799], // GREEK CAPITAL LETTER ETA + 0x398: [685,18,718,27,691], // GREEK CAPITAL LETTER THETA + 0x399: [669,0,389,-32,406], // GREEK CAPITAL LETTER IOTA + 0x39A: [669,0,667,-21,702], // GREEK CAPITAL LETTER KAPPA + 0x39B: [683,0,655,-68,581], // GREEK CAPITAL LETTER LAMDA + 0x39C: [669,12,889,-29,917], // GREEK CAPITAL LETTER MU + 0x39D: [669,15,722,-27,748], // GREEK CAPITAL LETTER NU + 0x39E: [669,0,746,25,740], // GREEK CAPITAL LETTER XI + 0x39F: [685,18,722,27,691], // GREEK CAPITAL LETTER OMICRON + 0x3A0: [669,0,778,-24,799], // GREEK CAPITAL LETTER PI + 0x3A1: [669,0,611,-28,613], // GREEK CAPITAL LETTER RHO + 0x3A3: [669,0,633,-11,619], // GREEK CAPITAL LETTER SIGMA + 0x3A4: [669,0,611,49,650], // GREEK CAPITAL LETTER TAU + 0x3A5: [685,0,611,21,697], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [669,0,771,26,763], // GREEK CAPITAL LETTER PHI + 0x3A7: [669,0,667,-24,694], // GREEK CAPITAL LETTER CHI + 0x3A8: [685,0,661,17,780], // GREEK CAPITAL LETTER PSI + 0x3A9: [685,0,808,25,774], // GREEK CAPITAL LETTER OMEGA + 0x3AA: [905,0,389,-32,486], // GREEK CAPITAL LETTER IOTA WITH DIALYTIKA + 0x3AB: [905,0,611,21,697], // GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA + 0x3AC: [680,13,576,-3,574], // GREEK SMALL LETTER ALPHA WITH TONOS + 0x3AD: [680,13,454,-5,408], // GREEK SMALL LETTER EPSILON WITH TONOS + 0x3AE: [680,205,488,-7,474], // GREEK SMALL LETTER ETA WITH TONOS + 0x3AF: [680,9,278,2,286], // GREEK SMALL LETTER IOTA WITH TONOS + 0x3B0: [680,13,536,-7,500], // GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS + 0x3B1: [462,13,576,-3,574], // GREEK SMALL LETTER ALPHA + 0x3B2: [698,205,500,-79,480], // GREEK SMALL LETTER BETA + 0x3B3: [462,204,438,3,461], // GREEK SMALL LETTER GAMMA + 0x3B4: [698,13,496,-3,456], // GREEK SMALL LETTER DELTA + 0x3B5: [462,13,454,-5,408], // GREEK SMALL LETTER EPSILON + 0x3B6: [698,205,415,-5,473], // GREEK SMALL LETTER ZETA + 0x3B7: [462,205,488,-7,474], // GREEK SMALL LETTER ETA + 0x3B8: [698,13,501,-3,488], // GREEK SMALL LETTER THETA + 0x3B9: [462,9,278,2,238], // GREEK SMALL LETTER IOTA + 0x3BA: [462,12,500,-23,504], // GREEK SMALL LETTER KAPPA + 0x3BB: [698,18,484,-34,459], // GREEK SMALL LETTER LAMDA + 0x3BC: [449,205,523,-82,483], // GREEK SMALL LETTER MU + 0x3BD: [462,13,469,-23,441], // GREEK SMALL LETTER NU + 0x3BE: [698,205,415,-5,426], // GREEK SMALL LETTER XI + 0x3BF: [462,13,500,-3,441], // GREEK SMALL LETTER OMICRON + 0x3C0: [449,15,558,-6,570], // GREEK SMALL LETTER PI + 0x3C1: [462,205,495,-81,447], // GREEK SMALL LETTER RHO + 0x3C2: [462,205,415,-5,447], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [449,13,499,-3,536], // GREEK SMALL LETTER SIGMA + 0x3C4: [449,9,415,4,455], // GREEK SMALL LETTER TAU + 0x3C5: [462,13,536,-7,477], // GREEK SMALL LETTER UPSILON + 0x3C6: [462,205,678,-3,619], // GREEK SMALL LETTER PHI + 0x3C7: [462,205,404,-136,515], // GREEK SMALL LETTER CHI + 0x3C8: [462,205,652,-5,715], // GREEK SMALL LETTER PSI + 0x3C9: [462,13,735,-3,676], // GREEK SMALL LETTER OMEGA + 0x3CA: [655,9,278,2,351], // GREEK SMALL LETTER IOTA WITH DIALYTIKA + 0x3CB: [655,13,536,-7,477], // GREEK SMALL LETTER UPSILON WITH DIALYTIKA + 0x3CC: [680,13,500,-3,441], // GREEK SMALL LETTER OMICRON WITH TONOS + 0x3CD: [680,13,536,-7,477], // GREEK SMALL LETTER UPSILON WITH TONOS + 0x3CE: [680,13,735,-3,676], // GREEK SMALL LETTER OMEGA WITH TONOS + 0x3D0: [696,12,500,42,479], // GREEK BETA SYMBOL + 0x3D1: [698,13,582,8,589], // GREEK THETA SYMBOL + 0x3D2: [685,0,611,21,696], // GREEK UPSILON WITH HOOK SYMBOL + 0x3D5: [699,205,678,-3,619], // GREEK PHI SYMBOL + 0x3D6: [449,13,828,-2,844], // GREEK PI SYMBOL + 0x3D8: [685,200,722,27,691], // GREEK LETTER ARCHAIC KOPPA + 0x3D9: [462,205,500,-3,441], // GREEK SMALL LETTER ARCHAIC KOPPA + 0x3DA: [685,205,669,32,665], // GREEK LETTER STIGMA + 0x3DB: [492,205,475,-5,509], // GREEK SMALL LETTER STIGMA + 0x3DC: [669,0,667,-13,670], // GREEK LETTER DIGAMMA + 0x3DD: [450,190,525,32,507], // GREEK SMALL LETTER DIGAMMA + 0x3DE: [793,18,757,-7,758], // GREEK LETTER KOPPA + 0x3DF: [698,0,485,16,466], // GREEK SMALL LETTER KOPPA + 0x3E0: [685,205,734,27,710], // GREEK LETTER SAMPI + 0x3E1: [639,205,530,47,467], // GREEK SMALL LETTER SAMPI + 0x3F0: [462,15,569,-50,592], // GREEK KAPPA SYMBOL + 0x3F1: [462,206,517,-12,458], // GREEK RHO SYMBOL + 0x3F4: [685,18,722,27,691], // GREEK CAPITAL THETA SYMBOL + 0x3F5: [463,13,466,-3,429], // GREEK LUNATE EPSILON SYMBOL + 0x3F6: [460,16,486,-5,427] // GREEK REVERSED LUNATE EPSILON SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/GreekAndCoptic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js new file mode 100644 index 0000000..4ff364a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekBoldItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x1D71C: [685,0,759,39,724], // MATHEMATICAL BOLD ITALIC CAPITAL ALPHA + 0x1D71D: [669,0,726,42,715], // MATHEMATICAL BOLD ITALIC CAPITAL BETA + 0x1D71E: [669,0,634,42,749], // MATHEMATICAL BOLD ITALIC CAPITAL GAMMA + 0x1D71F: [685,0,632,32,589], // MATHEMATICAL BOLD ITALIC CAPITAL DELTA + 0x1D720: [669,0,732,42,754], // MATHEMATICAL BOLD ITALIC CAPITAL EPSILON + 0x1D721: [669,0,797,66,830], // MATHEMATICAL BOLD ITALIC CAPITAL ZETA + 0x1D722: [669,0,891,42,946], // MATHEMATICAL BOLD ITALIC CAPITAL ETA + 0x1D723: [685,16,783,55,755], // MATHEMATICAL BOLD ITALIC CAPITAL THETA + 0x1D724: [669,0,502,42,557], // MATHEMATICAL BOLD ITALIC CAPITAL IOTA + 0x1D725: [669,0,795,42,839], // MATHEMATICAL BOLD ITALIC CAPITAL KAPPA + 0x1D726: [685,0,759,39,724], // MATHEMATICAL BOLD ITALIC CAPITAL LAMDA + 0x1D727: [669,0,1016,42,1071], // MATHEMATICAL BOLD ITALIC CAPITAL MU + 0x1D728: [669,0,869,42,924], // MATHEMATICAL BOLD ITALIC CAPITAL NU + 0x1D729: [669,0,718,57,757], // MATHEMATICAL BOLD ITALIC CAPITAL XI + 0x1D72A: [685,16,777,55,755], // MATHEMATICAL BOLD ITALIC CAPITAL OMICRON + 0x1D72B: [669,0,887,39,942], // MATHEMATICAL BOLD ITALIC CAPITAL PI + 0x1D72C: [669,0,612,42,733], // MATHEMATICAL BOLD ITALIC CAPITAL RHO + 0x1D72D: [685,16,783,55,755], // MATHEMATICAL BOLD ITALIC CAPITAL THETA SYMBOL + 0x1D72E: [669,0,759,64,787], // MATHEMATICAL BOLD ITALIC CAPITAL SIGMA + 0x1D72F: [669,0,568,28,700], // MATHEMATICAL BOLD ITALIC CAPITAL TAU + 0x1D730: [685,0,641,31,784], // MATHEMATICAL BOLD ITALIC CAPITAL UPSILON + 0x1D731: [669,0,827,28,799], // MATHEMATICAL BOLD ITALIC CAPITAL PHI + 0x1D732: [669,0,808,28,830], // MATHEMATICAL BOLD ITALIC CAPITAL CHI + 0x1D733: [685,0,694,30,781], // MATHEMATICAL BOLD ITALIC CAPITAL PSI + 0x1D734: [685,0,826,57,815], // MATHEMATICAL BOLD ITALIC CAPITAL OMEGA + 0x1D735: [669,16,632,43,600], // MATHEMATICAL BOLD ITALIC NABLA + 0x1D736: [461,12,624,44,630], // MATHEMATICAL BOLD ITALIC SMALL ALPHA + 0x1D737: [685,205,555,28,583], // MATHEMATICAL BOLD ITALIC SMALL BETA + 0x1D738: [462,203,490,44,503], // MATHEMATICAL BOLD ITALIC SMALL GAMMA + 0x1D739: [685,8,538,44,538], // MATHEMATICAL BOLD ITALIC SMALL DELTA + 0x1D73A: [462,10,495,28,451], // MATHEMATICAL BOLD ITALIC SMALL EPSILON + 0x1D73B: [685,203,472,44,522], // MATHEMATICAL BOLD ITALIC SMALL ZETA + 0x1D73C: [462,205,517,33,511], // MATHEMATICAL BOLD ITALIC SMALL ETA + 0x1D73D: [686,11,566,44,555], // MATHEMATICAL BOLD ITALIC SMALL THETA + 0x1D73E: [462,9,318,55,274], // MATHEMATICAL BOLD ITALIC SMALL IOTA + 0x1D73F: [462,0,560,55,577], // MATHEMATICAL BOLD ITALIC SMALL KAPPA + 0x1D740: [685,16,570,55,537], // MATHEMATICAL BOLD ITALIC SMALL LAMDA + 0x1D741: [449,205,636,33,603], // MATHEMATICAL BOLD ITALIC SMALL MU + 0x1D742: [459,10,523,55,534], // MATHEMATICAL BOLD ITALIC SMALL NU + 0x1D743: [685,203,476,28,487], // MATHEMATICAL BOLD ITALIC SMALL XI + 0x1D744: [462,10,561,44,539], // MATHEMATICAL BOLD ITALIC SMALL OMICRON + 0x1D745: [449,13,579,39,590], // MATHEMATICAL BOLD ITALIC SMALL PI + 0x1D746: [462,205,595,33,562], // MATHEMATICAL BOLD ITALIC SMALL RHO + 0x1D747: [462,203,480,39,508], // MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA + 0x1D748: [449,10,592,44,603], // MATHEMATICAL BOLD ITALIC SMALL SIGMA + 0x1D749: [449,7,469,33,502], // MATHEMATICAL BOLD ITALIC SMALL TAU + 0x1D74A: [462,10,552,33,535], // MATHEMATICAL BOLD ITALIC SMALL UPSILON + 0x1D74B: [462,205,706,55,667], // MATHEMATICAL BOLD ITALIC SMALL PHI + 0x1D74C: [462,204,621,33,676], // MATHEMATICAL BOLD ITALIC SMALL CHI + 0x1D74D: [462,205,701,33,756], // MATHEMATICAL BOLD ITALIC SMALL PSI + 0x1D74E: [462,10,687,22,665], // MATHEMATICAL BOLD ITALIC SMALL OMEGA + 0x1D74F: [686,10,559,44,559], // MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL + 0x1D750: [461,10,481,44,481], // MATHEMATICAL BOLD ITALIC EPSILON SYMBOL + 0x1D751: [698,13,607,33,584], // MATHEMATICAL BOLD ITALIC THETA SYMBOL + 0x1D752: [462,15,607,-12,630], // MATHEMATICAL BOLD ITALIC KAPPA SYMBOL + 0x1D753: [685,205,683,44,655], // MATHEMATICAL BOLD ITALIC PHI SYMBOL + 0x1D754: [462,205,585,44,563], // MATHEMATICAL BOLD ITALIC RHO SYMBOL + 0x1D755: [449,10,868,33,879] // MATHEMATICAL BOLD ITALIC PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/GreekBoldItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js new file mode 100644 index 0000000..3e6a448 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/GreekSSBoldItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x1D790: [690,0,690,25,665], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA + 0x1D791: [676,0,706,60,671], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL BETA + 0x1D792: [676,0,602,60,705], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL GAMMA + 0x1D793: [690,0,720,40,680], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL DELTA + 0x1D794: [676,0,683,60,708], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL EPSILON + 0x1D795: [676,0,707,25,769], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ZETA + 0x1D796: [676,0,748,60,783], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ETA + 0x1D797: [691,19,847,90,822], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA + 0x1D798: [676,0,435,50,505], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL IOTA + 0x1D799: [676,0,712,60,796], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL KAPPA + 0x1D79A: [690,0,686,20,646], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL LAMDA + 0x1D79B: [676,0,933,60,981], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL MU + 0x1D79C: [676,18,744,60,792], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL NU + 0x1D79D: [676,0,690,47,737], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL XI + 0x1D79E: [692,18,849,90,824], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMICRON + 0x1D79F: [676,0,745,60,783], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PI + 0x1D7A0: [676,0,581,60,675], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL RHO + 0x1D7A1: [691,19,847,90,822], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA SYMBOL + 0x1D7A2: [676,0,696,21,748], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL SIGMA + 0x1D7A3: [676,0,641,87,715], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL TAU + 0x1D7A4: [691,0,671,91,799], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL UPSILON + 0x1D7A5: [676,0,835,72,835], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PHI + 0x1D7A6: [676,0,740,20,833], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL CHI + 0x1D7A7: [691,0,791,125,901], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PSI + 0x1D7A8: [691,0,816,47,816], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA + 0x1D7A9: [664,30,780,120,760], // MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA + 0x1D7AA: [473,14,678,47,703], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA + 0x1D7AB: [692,205,552,-12,581], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA + 0x1D7AC: [473,204,525,84,571], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA + 0x1D7AD: [692,14,507,30,547], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA + 0x1D7AE: [473,14,504,45,508], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON + 0x1D7AF: [692,205,480,49,539], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA + 0x1D7B0: [473,205,532,38,525], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA + 0x1D7B1: [692,14,560,65,553], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA + 0x1D7B2: [462,14,325,56,302], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA + 0x1D7B3: [473,0,537,38,582], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA + 0x1D7B4: [692,14,574,18,540], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA + 0x1D7B5: [462,205,594,-12,569], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU + 0x1D7B6: [473,14,525,41,565], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU + 0x1D7B7: [692,205,481,43,525], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI + 0x1D7B8: [473,14,543,45,515], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON + 0x1D7B9: [462,14,632,45,656], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI + 0x1D7BA: [473,205,560,-33,536], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO + 0x1D7BB: [473,205,517,52,554], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA + 0x1D7BC: [462,14,614,45,639], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA + 0x1D7BD: [462,14,523,42,547], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU + 0x1D7BE: [473,14,550,61,526], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON + 0x1D7BF: [473,205,683,55,659], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI + 0x1D7C0: [473,205,575,-80,626], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI + 0x1D7C1: [473,205,703,75,751], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI + 0x1D7C2: [461,14,756,64,732], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA + 0x1D7C3: [691,14,548,45,539], // MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL + 0x1D7C4: [473,14,468,45,470], // MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL + 0x1D7C5: [692,14,579,54,579], // MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL + 0x1D7C6: [473,10,646,-10,665], // MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL + 0x1D7C7: [692,205,678,48,654], // MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL + 0x1D7C8: [473,205,544,38,520], // MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL + 0x1D7C9: [462,14,889,40,912] // MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/GreekSSBoldItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js new file mode 100644 index 0000000..b1a1052 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js @@ -0,0 +1,116 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/IPAExtensions.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x250: [473,14,512,13,492], // ?? + 0x251: [473,14,612,25,592], // ?? + 0x252: [473,14,612,25,592], // ?? + 0x253: [691,13,500,-14,449], // ?? + 0x254: [462,13,444,-5,392], // ?? + 0x255: [462,157,444,-5,406], // ?? + 0x256: [699,233,500,-21,517], // ?? + 0x257: [683,13,570,-21,653], // ?? + 0x258: [462,13,444,5,421], // ?? + 0x259: [462,13,444,5,398], // ?? + 0x25A: [462,13,626,5,626], // ?? + 0x25B: [475,14,444,5,482], // ?? + 0x25C: [475,14,480,5,469], // ?? + 0x25D: [475,14,689,5,689], // ?? + 0x25E: [475,14,486,7,475], // ?? + 0x25F: [462,207,367,-100,364], // ?? + 0x260: [683,245,720,-52,751], // ?? + 0x261: [472,245,549,-52,520], // ?? + 0x262: [462,11,561,21,544], // ?? + 0x263: [462,234,444,20,400], // ?? + 0x264: [450,10,493,10,488], // ?? + 0x265: [459,249,556,-13,498], // ?? + 0x266: [683,9,556,-13,498], // ?? + 0x267: [683,205,533,-13,475], // ?? + 0x268: [684,9,278,-10,262], // ?? + 0x269: [456,8,253,2,237], // ?? + 0x26A: [462,0,304,-32,321], // ?? + 0x26B: [699,9,320,9,368], // ?? + 0x26C: [699,9,445,17,417], // ?? + 0x26D: [699,233,291,-47,290], // ?? + 0x26E: [699,236,623,2,585], // ?? + 0x26F: [462,9,778,-14,723], // ?? + 0x270: [462,233,778,-14,723], // ?? + 0x271: [462,233,759,-14,704], // ?? + 0x272: [462,233,694,-109,632], // ?? + 0x273: [462,233,505,-6,486], // ?? + 0x274: [462,12,588,-27,614], // ?? + 0x275: [462,13,500,-3,441], // ?? + 0x276: [462,5,749,23,751], // ?? + 0x277: [477,2,685,-3,626], // ?? + 0x278: [685,231,691,-3,632], // ?? + 0x279: [462,0,427,0,410], // ?? + 0x27A: [699,0,493,0,476], // ?? + 0x27B: [462,233,436,0,417], // ?? + 0x27C: [462,233,389,-87,389], // ?? + 0x27D: [462,233,389,-47,389], // ?? + 0x27E: [484,0,360,-21,417], // ?? + 0x27F: [484,0,338,10,292], // ?? + 0x280: [464,0,498,8,515], // ?? + 0x281: [464,0,498,8,597], // ?? + 0x282: [462,218,389,-32,333], // ?? + 0x283: [683,233,424,-104,584], // ?? + 0x284: [683,207,394,-90,576], // ?? + 0x285: [470,233,415,79,344], // ?? + 0x286: [683,243,521,-40,641], // ?? + 0x287: [513,90,310,7,299], // ?? + 0x288: [594,233,311,-60,281], // ?? + 0x289: [462,9,556,-16,514], // ?? + 0x28A: [452,8,500,15,552], // ?? + 0x28B: [462,10,534,18,492], // ?? + 0x28C: [462,13,444,15,401], // ?? + 0x28D: [462,13,667,15,614], // ?? + 0x28E: [667,0,444,16,502], // ?? + 0x28F: [464,0,633,65,606], // ?? + 0x290: [449,218,440,-24,405], // ?? + 0x291: [449,97,411,-24,376], // ?? + 0x292: [450,236,499,-10,558], // ?? + 0x293: [450,307,499,-10,528], // ?? + 0x294: [685,0,530,25,520], // ?? + 0x295: [685,0,530,65,509], // ?? + 0x296: [669,14,487,25,453], // ?? + 0x297: [462,237,479,20,544], // ?? + 0x298: [680,17,723,13,734], // ?? + 0x299: [464,0,493,-10,486], // ?? + 0x29A: [475,14,465,16,504], // ?? + 0x29B: [538,11,580,29,690], // ?? + 0x29C: [464,0,582,21,676], // ?? + 0x29D: [685,233,475,-50,463], // ?? + 0x29E: [457,250,500,22,528], // ?? + 0x29F: [464,0,485,10,468], // ?? + 0x2A0: [582,205,488,1,674], // ?? + 0x2A1: [685,0,530,25,520], // ?? + 0x2A2: [685,0,530,65,507], // ?? + 0x2A3: [699,13,750,-21,735], // ?? + 0x2A4: [699,236,820,-21,813], // ?? + 0x2A5: [699,97,817,-21,743], // ?? + 0x2A6: [594,13,560,-3,524], // ?? + 0x2A7: [683,233,453,-30,670], // ?? + 0x2A8: [594,18,600,-3,618] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/IPAExtensions.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js new file mode 100644 index 0000000..61700ff --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js @@ -0,0 +1,123 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Latin1Supplement.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xA1: [494,205,389,19,320], // INVERTED EXCLAMATION MARK + 0xA2: [576,143,500,42,439], // CENT SIGN + 0xA3: [683,12,500,-32,510], // POUND SIGN + 0xA4: [542,10,500,-26,526], // CURRENCY SIGN + 0xA5: [669,0,500,33,628], // YEN SIGN + 0xA6: [685,18,220,66,154], // BROKEN BAR + 0xA7: [685,143,500,36,459], // SECTION SIGN + 0xA8: [655,-525,333,55,397], // DIAERESIS + 0xA9: [685,18,747,30,718], // COPYRIGHT SIGN + 0xAA: [685,-399,266,16,330], // FEMININE ORDINAL INDICATOR + 0xAB: [415,-32,500,12,468], // LEFT-POINTING DOUBLE ANGLE QUOTATION MARK + 0xAC: [399,-108,606,51,555], // NOT SIGN + 0xAD: [282,-166,333,2,271], // SOFT HYPHEN + 0xAE: [685,18,747,30,718], // REGISTERED SIGN + 0xAF: [623,-553,333,51,393], // MACRON + 0xB0: [688,-402,400,83,369], // DEGREE SIGN + 0xB1: [568,0,570,33,537], // PLUS-MINUS SIGN + 0xB2: [683,-274,300,2,313], // SUPERSCRIPT TWO + 0xB3: [683,-265,300,17,321], // SUPERSCRIPT THREE + 0xB4: [697,-516,333,139,379], // ACUTE ACCENT + 0xB5: [449,207,576,-60,516], // MICRO SIGN + 0xB6: [669,193,617,60,679], // PILCROW SIGN + 0xB7: [405,-257,250,51,199], // MIDDLE DOT + 0xB8: [5,218,333,-80,156], // CEDILLA + 0xB9: [683,-274,300,30,301], // SUPERSCRIPT ONE + 0xBA: [685,-400,300,56,347], // MASCULINE ORDINAL INDICATOR + 0xBB: [415,-32,500,12,468], // RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK + 0xBC: [683,14,750,7,721], // VULGAR FRACTION ONE QUARTER + 0xBD: [683,14,750,-9,723], // VULGAR FRACTION ONE HALF + 0xBE: [683,14,750,7,726], // VULGAR FRACTION THREE QUARTERS + 0xBF: [492,205,500,30,421], // INVERTED QUESTION MARK + 0xC0: [947,0,667,-68,593], // LATIN CAPITAL LETTER A WITH GRAVE + 0xC1: [947,0,667,-68,593], // LATIN CAPITAL LETTER A WITH ACUTE + 0xC2: [940,0,667,-68,593], // LATIN CAPITAL LETTER A WITH CIRCUMFLEX + 0xC3: [905,0,667,-68,612], // LATIN CAPITAL LETTER A WITH TILDE + 0xC4: [905,0,667,-68,599], // LATIN CAPITAL LETTER A WITH DIAERESIS + 0xC5: [1004,0,667,-68,593], // LATIN CAPITAL LETTER A WITH RING ABOVE + 0xC6: [669,0,944,-64,918], // LATIN CAPITAL LETTER AE + 0xC7: [685,218,667,32,677], // LATIN CAPITAL LETTER C WITH CEDILLA + 0xC8: [947,0,667,-27,653], // LATIN CAPITAL LETTER E WITH GRAVE + 0xC9: [947,0,667,-27,653], // LATIN CAPITAL LETTER E WITH ACUTE + 0xCA: [940,0,667,-27,653], // LATIN CAPITAL LETTER E WITH CIRCUMFLEX + 0xCB: [905,0,667,-27,653], // LATIN CAPITAL LETTER E WITH DIAERESIS + 0xCC: [947,0,389,-32,406], // LATIN CAPITAL LETTER I WITH GRAVE + 0xCD: [947,0,389,-32,440], // LATIN CAPITAL LETTER I WITH ACUTE + 0xCE: [940,0,389,-32,469], // LATIN CAPITAL LETTER I WITH CIRCUMFLEX + 0xCF: [905,0,389,-32,480], // LATIN CAPITAL LETTER I WITH DIAERESIS + 0xD0: [669,0,722,-31,700], // LATIN CAPITAL LETTER ETH + 0xD1: [905,15,722,-27,748], // LATIN CAPITAL LETTER N WITH TILDE + 0xD2: [947,18,722,27,691], // LATIN CAPITAL LETTER O WITH GRAVE + 0xD3: [947,18,722,27,691], // LATIN CAPITAL LETTER O WITH ACUTE + 0xD4: [940,18,722,27,691], // LATIN CAPITAL LETTER O WITH CIRCUMFLEX + 0xD5: [905,18,722,27,691], // LATIN CAPITAL LETTER O WITH TILDE + 0xD6: [905,18,722,27,691], // LATIN CAPITAL LETTER O WITH DIAERESIS + 0xD7: [490,-16,570,48,522], // MULTIPLICATION SIGN + 0xD8: [764,125,722,27,691], // LATIN CAPITAL LETTER O WITH STROKE + 0xD9: [947,18,722,67,744], // LATIN CAPITAL LETTER U WITH GRAVE + 0xDA: [947,18,722,67,744], // LATIN CAPITAL LETTER U WITH ACUTE + 0xDB: [940,18,722,67,744], // LATIN CAPITAL LETTER U WITH CIRCUMFLEX + 0xDC: [905,18,722,67,744], // LATIN CAPITAL LETTER U WITH DIAERESIS + 0xDD: [947,0,611,71,659], // LATIN CAPITAL LETTER Y WITH ACUTE + 0xDE: [669,0,611,-27,573], // LATIN CAPITAL LETTER THORN + 0xDF: [705,200,500,-200,473], // LATIN SMALL LETTER SHARP S + 0xE0: [697,14,500,-21,456], // LATIN SMALL LETTER A WITH GRAVE + 0xE1: [697,14,500,-21,456], // LATIN SMALL LETTER A WITH ACUTE + 0xE2: [690,14,500,-21,475], // LATIN SMALL LETTER A WITH CIRCUMFLEX + 0xE3: [655,14,500,-21,497], // LATIN SMALL LETTER A WITH TILDE + 0xE4: [655,14,500,-21,485], // LATIN SMALL LETTER A WITH DIAERESIS + 0xE5: [756,14,500,-21,456], // LATIN SMALL LETTER A WITH RING ABOVE + 0xE6: [462,13,722,-5,673], // LATIN SMALL LETTER AE + 0xE7: [462,218,444,-24,392], // LATIN SMALL LETTER C WITH CEDILLA + 0xE8: [697,13,444,5,398], // LATIN SMALL LETTER E WITH GRAVE + 0xE9: [697,13,444,5,419], // LATIN SMALL LETTER E WITH ACUTE + 0xEA: [690,13,444,5,462], // LATIN SMALL LETTER E WITH CIRCUMFLEX + 0xEB: [655,13,444,5,470], // LATIN SMALL LETTER E WITH DIAERESIS + 0xEC: [697,9,278,2,294], // LATIN SMALL LETTER I WITH GRAVE + 0xED: [697,9,278,2,310], // LATIN SMALL LETTER I WITH ACUTE + 0xEE: [690,9,278,2,353], // LATIN SMALL LETTER I WITH CIRCUMFLEX + 0xEF: [655,9,278,2,362], // LATIN SMALL LETTER I WITH DIAERESIS + 0xF0: [699,13,500,-3,454], // LATIN SMALL LETTER ETH + 0xF1: [655,9,556,-6,507], // LATIN SMALL LETTER N WITH TILDE + 0xF2: [697,13,500,-3,441], // LATIN SMALL LETTER O WITH GRAVE + 0xF3: [697,13,500,-3,441], // LATIN SMALL LETTER O WITH ACUTE + 0xF4: [690,13,500,-3,462], // LATIN SMALL LETTER O WITH CIRCUMFLEX + 0xF5: [655,13,500,-3,485], // LATIN SMALL LETTER O WITH TILDE + 0xF6: [655,13,500,-3,470], // LATIN SMALL LETTER O WITH DIAERESIS + 0xF7: [535,29,570,33,537], // DIVISION SIGN + 0xF8: [560,119,500,-3,441], // LATIN SMALL LETTER O WITH STROKE + 0xF9: [697,9,556,15,493], // LATIN SMALL LETTER U WITH GRAVE + 0xFA: [697,9,556,15,493], // LATIN SMALL LETTER U WITH ACUTE + 0xFB: [690,9,556,15,493], // LATIN SMALL LETTER U WITH CIRCUMFLEX + 0xFC: [655,9,556,15,493], // LATIN SMALL LETTER U WITH DIAERESIS + 0xFD: [697,205,444,-94,401], // LATIN SMALL LETTER Y WITH ACUTE + 0xFE: [699,205,500,-120,446], // LATIN SMALL LETTER THORN + 0xFF: [655,205,444,-94,460] // LATIN SMALL LETTER Y WITH DIAERESIS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/Latin1Supplement.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js new file mode 100644 index 0000000..40ffdec --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js @@ -0,0 +1,155 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x100: [793,0,667,-68,593], // LATIN CAPITAL LETTER A WITH MACRON + 0x101: [586,14,500,-21,486], // LATIN SMALL LETTER A WITH MACRON + 0x102: [885,0,667,-68,593], // LATIN CAPITAL LETTER A WITH BREVE + 0x103: [678,14,500,-21,483], // LATIN SMALL LETTER A WITH BREVE + 0x104: [683,173,667,-68,640], // LATIN CAPITAL LETTER A WITH OGONEK + 0x105: [462,173,500,-21,507], // LATIN SMALL LETTER A WITH OGONEK + 0x106: [904,18,667,32,677], // LATIN CAPITAL LETTER C WITH ACUTE + 0x107: [697,13,444,-5,392], // LATIN SMALL LETTER C WITH ACUTE + 0x108: [897,18,667,32,677], // LATIN CAPITAL LETTER C WITH CIRCUMFLEX + 0x109: [690,13,444,-5,415], // LATIN SMALL LETTER C WITH CIRCUMFLEX + 0x10A: [862,18,667,32,677], // LATIN CAPITAL LETTER C WITH DOT ABOVE + 0x10B: [655,13,444,-5,392], // LATIN SMALL LETTER C WITH DOT ABOVE + 0x10C: [897,18,667,32,677], // LATIN CAPITAL LETTER C WITH CARON + 0x10D: [690,13,444,-5,437], // LATIN SMALL LETTER C WITH CARON + 0x10E: [897,0,722,-46,685], // LATIN CAPITAL LETTER D WITH CARON + 0x10F: [710,13,658,-21,726], // LATIN SMALL LETTER D WITH CARON + 0x110: [669,0,722,-31,700], // LATIN CAPITAL LETTER D WITH STROKE + 0x111: [699,13,500,-21,541], // LATIN SMALL LETTER D WITH STROKE + 0x112: [793,0,667,-27,653], // LATIN CAPITAL LETTER E WITH MACRON + 0x113: [586,13,444,5,431], // LATIN SMALL LETTER E WITH MACRON + 0x114: [885,0,667,-27,653], // LATIN CAPITAL LETTER E WITH BREVE + 0x115: [678,13,444,5,478], // LATIN SMALL LETTER E WITH BREVE + 0x116: [862,0,667,-27,653], // LATIN CAPITAL LETTER E WITH DOT ABOVE + 0x117: [655,13,444,5,398], // LATIN SMALL LETTER E WITH DOT ABOVE + 0x118: [669,182,667,-27,653], // LATIN CAPITAL LETTER E WITH OGONEK + 0x119: [462,182,444,5,398], // LATIN SMALL LETTER E WITH OGONEK + 0x11A: [897,0,667,-27,653], // LATIN CAPITAL LETTER E WITH CARON + 0x11B: [690,13,444,5,486], // LATIN SMALL LETTER E WITH CARON + 0x11C: [897,18,722,21,705], // LATIN CAPITAL LETTER G WITH CIRCUMFLEX + 0x11D: [690,203,500,-52,477], // LATIN SMALL LETTER G WITH CIRCUMFLEX + 0x11E: [885,18,722,21,705], // LATIN CAPITAL LETTER G WITH BREVE + 0x11F: [678,203,500,-52,477], // LATIN SMALL LETTER G WITH BREVE + 0x120: [862,18,722,21,705], // LATIN CAPITAL LETTER G WITH DOT ABOVE + 0x121: [655,203,500,-52,477], // LATIN SMALL LETTER G WITH DOT ABOVE + 0x122: [685,359,722,21,705], // LATIN CAPITAL LETTER G WITH CEDILLA + 0x123: [832,203,500,-52,477], // LATIN SMALL LETTER G WITH CEDILLA + 0x124: [897,0,778,-24,799], // LATIN CAPITAL LETTER H WITH CIRCUMFLEX + 0x125: [897,9,556,-13,498], // LATIN SMALL LETTER H WITH CIRCUMFLEX + 0x126: [669,0,778,-24,800], // LATIN CAPITAL LETTER H WITH STROKE + 0x127: [699,9,556,-13,498], // LATIN SMALL LETTER H WITH STROKE + 0x128: [862,0,389,-32,470], // LATIN CAPITAL LETTER I WITH TILDE + 0x129: [655,9,278,-9,350], // LATIN SMALL LETTER I WITH TILDE + 0x12A: [793,0,389,-32,451], // LATIN CAPITAL LETTER I WITH MACRON + 0x12B: [586,9,278,-11,331], // LATIN SMALL LETTER I WITH MACRON + 0x12C: [885,0,389,-32,458], // LATIN CAPITAL LETTER I WITH BREVE + 0x12D: [678,9,278,2,328], // LATIN SMALL LETTER I WITH BREVE + 0x12E: [669,173,389,-32,406], // LATIN CAPITAL LETTER I WITH OGONEK + 0x12F: [684,173,278,2,262], // LATIN SMALL LETTER I WITH OGONEK + 0x130: [862,0,389,-32,406], // LATIN CAPITAL LETTER I WITH DOT ABOVE + 0x131: [462,9,278,2,238], // LATIN SMALL LETTER DOTLESS I + 0x132: [669,99,823,-32,913], // LATIN CAPITAL LIGATURE IJ + 0x133: [685,207,552,2,544], // LATIN SMALL LIGATURE IJ + 0x134: [897,99,500,-46,554], // LATIN CAPITAL LETTER J WITH CIRCUMFLEX + 0x135: [690,207,278,-189,314], // LATIN SMALL LETTER J WITH CIRCUMFLEX + 0x136: [669,359,667,-21,702], // LATIN CAPITAL LETTER K WITH CEDILLA + 0x137: [699,359,500,-23,483], // LATIN SMALL LETTER K WITH CEDILLA + 0x138: [470,0,600,6,689], // LATIN SMALL LETTER KRA + 0x139: [904,0,611,-22,590], // LATIN CAPITAL LETTER L WITH ACUTE + 0x13A: [904,9,278,2,344], // LATIN SMALL LETTER L WITH ACUTE + 0x13B: [669,359,611,-22,590], // LATIN CAPITAL LETTER L WITH CEDILLA + 0x13C: [699,359,278,-62,290], // LATIN SMALL LETTER L WITH CEDILLA + 0x13D: [685,0,611,-22,667], // LATIN CAPITAL LETTER L WITH CARON + 0x13E: [710,9,451,2,499], // LATIN SMALL LETTER L WITH CARON + 0x13F: [669,0,611,-22,590], // LATIN CAPITAL LETTER L WITH MIDDLE DOT + 0x140: [699,9,375,2,382], // LATIN SMALL LETTER L WITH MIDDLE DOT + 0x141: [669,0,611,-22,590], // LATIN CAPITAL LETTER L WITH STROKE + 0x142: [699,9,278,-13,301], // LATIN SMALL LETTER L WITH STROKE + 0x143: [904,15,722,-27,748], // LATIN CAPITAL LETTER N WITH ACUTE + 0x144: [697,9,556,-6,494], // LATIN SMALL LETTER N WITH ACUTE + 0x145: [669,359,722,-27,748], // LATIN CAPITAL LETTER N WITH CEDILLA + 0x146: [462,359,556,-6,494], // LATIN SMALL LETTER N WITH CEDILLA + 0x147: [897,15,722,-27,748], // LATIN CAPITAL LETTER N WITH CARON + 0x148: [690,9,556,-6,506], // LATIN SMALL LETTER N WITH CARON + 0x149: [710,9,700,42,657], // LATIN SMALL LETTER N PRECEDED BY APOSTROPHE + 0x14A: [669,203,722,-46,685], // LATIN CAPITAL LETTER ENG + 0x14B: [462,207,543,-6,474], // LATIN SMALL LETTER ENG + 0x14C: [793,18,722,27,691], // LATIN CAPITAL LETTER O WITH MACRON + 0x14D: [586,13,500,-3,461], // LATIN SMALL LETTER O WITH MACRON + 0x14E: [885,18,722,27,691], // LATIN CAPITAL LETTER O WITH BREVE + 0x14F: [678,13,500,-3,488], // LATIN SMALL LETTER O WITH BREVE + 0x150: [904,18,722,27,700], // LATIN CAPITAL LETTER O WITH DOUBLE ACUTE + 0x151: [697,13,500,-3,519], // LATIN SMALL LETTER O WITH DOUBLE ACUTE + 0x152: [677,8,944,23,946], // LATIN CAPITAL LIGATURE OE + 0x153: [462,13,722,6,674], // LATIN SMALL LIGATURE OE + 0x154: [904,0,667,-28,623], // LATIN CAPITAL LETTER R WITH ACUTE + 0x155: [697,0,389,-21,389], // LATIN SMALL LETTER R WITH ACUTE + 0x156: [669,359,667,-28,623], // LATIN CAPITAL LETTER R WITH CEDILLA + 0x157: [462,359,389,-102,389], // LATIN SMALL LETTER R WITH CEDILLA + 0x158: [897,0,667,-28,623], // LATIN CAPITAL LETTER R WITH CARON + 0x159: [690,0,389,-21,411], // LATIN SMALL LETTER R WITH CARON + 0x15A: [904,18,556,2,526], // LATIN CAPITAL LETTER S WITH ACUTE + 0x15B: [697,13,389,-19,379], // LATIN SMALL LETTER S WITH ACUTE + 0x15C: [897,18,556,2,526], // LATIN CAPITAL LETTER S WITH CIRCUMFLEX + 0x15D: [690,13,389,-19,367], // LATIN SMALL LETTER S WITH CIRCUMFLEX + 0x15E: [685,218,556,2,526], // LATIN CAPITAL LETTER S WITH CEDILLA + 0x15F: [462,218,389,-19,333], // LATIN SMALL LETTER S WITH CEDILLA + 0x160: [897,18,556,2,526], // LATIN CAPITAL LETTER S WITH CARON + 0x161: [690,13,389,-19,411], // LATIN SMALL LETTER S WITH CARON + 0x162: [669,218,611,49,650], // LATIN CAPITAL LETTER T WITH CEDILLA + 0x163: [594,218,278,-75,289], // LATIN SMALL LETTER T WITH CEDILLA + 0x164: [897,0,611,49,650], // LATIN CAPITAL LETTER T WITH CARON + 0x165: [710,9,411,-11,499], // LATIN SMALL LETTER T WITH CARON + 0x166: [669,0,611,49,650], // LATIN CAPITAL LETTER T WITH STROKE + 0x167: [594,9,278,-30,281], // LATIN SMALL LETTER T WITH STROKE + 0x168: [841,18,722,67,744], // LATIN CAPITAL LETTER U WITH TILDE + 0x169: [655,9,556,15,493], // LATIN SMALL LETTER U WITH TILDE + 0x16A: [793,18,722,67,744], // LATIN CAPITAL LETTER U WITH MACRON + 0x16B: [586,9,556,15,493], // LATIN SMALL LETTER U WITH MACRON + 0x16C: [885,18,722,67,744], // LATIN CAPITAL LETTER U WITH BREVE + 0x16D: [678,9,556,15,493], // LATIN SMALL LETTER U WITH BREVE + 0x16E: [921,18,722,67,744], // LATIN CAPITAL LETTER U WITH RING ABOVE + 0x16F: [729,9,556,15,493], // LATIN SMALL LETTER U WITH RING ABOVE + 0x170: [889,18,722,67,744], // LATIN CAPITAL LETTER U WITH DOUBLE ACUTE + 0x171: [697,9,556,15,527], // LATIN SMALL LETTER U WITH DOUBLE ACUTE + 0x172: [669,173,722,67,744], // LATIN CAPITAL LETTER U WITH OGONEK + 0x173: [462,173,556,15,531], // LATIN SMALL LETTER U WITH OGONEK + 0x174: [897,18,889,64,940], // LATIN CAPITAL LETTER W WITH CIRCUMFLEX + 0x175: [690,13,667,15,614], // LATIN SMALL LETTER W WITH CIRCUMFLEX + 0x176: [897,0,611,71,659], // LATIN CAPITAL LETTER Y WITH CIRCUMFLEX + 0x177: [690,205,444,-94,393], // LATIN SMALL LETTER Y WITH CIRCUMFLEX + 0x178: [862,0,611,71,659], // LATIN CAPITAL LETTER Y WITH DIAERESIS + 0x179: [904,0,611,-12,589], // LATIN CAPITAL LETTER Z WITH ACUTE + 0x17A: [697,78,389,-43,379], // LATIN SMALL LETTER Z WITH ACUTE + 0x17B: [862,0,611,-12,589], // LATIN CAPITAL LETTER Z WITH DOT ABOVE + 0x17C: [655,78,389,-43,368], // LATIN SMALL LETTER Z WITH DOT ABOVE + 0x17D: [897,0,611,-12,589], // LATIN CAPITAL LETTER Z WITH CARON + 0x17E: [690,78,389,-43,411], // LATIN SMALL LETTER Z WITH CARON + 0x17F: [691,0,333,14,536] // LATIN SMALL LETTER LONG S + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js new file mode 100644 index 0000000..1bb44f4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedAdditional.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x1E80: [904,18,889,64,940], // LATIN CAPITAL LETTER W WITH GRAVE + 0x1E81: [697,13,667,15,614], // LATIN SMALL LETTER W WITH GRAVE + 0x1E82: [904,18,889,64,940], // LATIN CAPITAL LETTER W WITH ACUTE + 0x1E83: [697,13,667,15,614], // LATIN SMALL LETTER W WITH ACUTE + 0x1E84: [862,18,889,64,940], // LATIN CAPITAL LETTER W WITH DIAERESIS + 0x1E85: [655,13,667,15,614], // LATIN SMALL LETTER W WITH DIAERESIS + 0x1EF2: [904,0,611,71,659], // LATIN CAPITAL LETTER Y WITH GRAVE + 0x1EF3: [697,205,444,-94,392] // LATIN SMALL LETTER Y WITH GRAVE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/LatinExtendedAdditional.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js new file mode 100644 index 0000000..1ab6f7a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LatinExtendedB.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x180: [699,13,500,-14,444], // LATIN SMALL LETTER B WITH STROKE + 0x188: [576,13,560,-5,627], // LATIN SMALL LETTER C WITH HOOK + 0x190: [686,4,512,54,676], // LATIN CAPITAL LETTER OPEN E + 0x192: [707,156,500,-87,537], // LATIN SMALL LETTER F WITH HOOK + 0x195: [699,10,735,-13,692], // LATIN SMALL LETTER HV + 0x199: [691,8,500,-23,483], // LATIN SMALL LETTER K WITH HOOK + 0x19A: [699,9,278,2,290], // LATIN SMALL LETTER L WITH BAR + 0x19B: [666,0,480,16,452], // LATIN SMALL LETTER LAMBDA WITH STROKE + 0x19E: [462,205,536,-6,474], // LATIN SMALL LETTER N WITH LONG RIGHT LEG + 0x1A0: [716,18,722,27,806], // LATIN CAPITAL LETTER O WITH HORN + 0x1A1: [507,13,537,24,595], // LATIN SMALL LETTER O WITH HORN + 0x1A5: [673,205,520,-100,466], // LATIN SMALL LETTER P WITH HOOK + 0x1AA: [684,233,400,46,380], // LATIN LETTER REVERSED ESH LOOP + 0x1AB: [594,218,286,-49,289], // LATIN SMALL LETTER T WITH PALATAL HOOK + 0x1AD: [691,9,360,-3,450], // LATIN SMALL LETTER T WITH HOOK + 0x1AF: [803,18,775,67,893], // LATIN CAPITAL LETTER U WITH HORN + 0x1B0: [583,9,556,15,656], // LATIN SMALL LETTER U WITH HORN + 0x1BA: [450,237,496,-52,458], // LATIN SMALL LETTER EZH WITH TAIL + 0x1BB: [683,0,500,-27,469], // LATIN LETTER TWO WITH STROKE + 0x1BE: [541,10,500,37,463], // LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE + 0x1C0: [740,0,208,14,278], // LATIN LETTER DENTAL CLICK + 0x1C1: [740,0,345,14,415], // LATIN LETTER LATERAL CLICK + 0x1C2: [740,0,368,14,438], // LATIN LETTER ALVEOLAR CLICK + 0x1C3: [684,13,300,45,355], // LATIN LETTER RETROFLEX CLICK + 0x1F0: [690,207,350,-104,474], // LATIN SMALL LETTER J WITH CARON + 0x1FA: [972,0,667,-68,593], // LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE + 0x1FB: [909,14,500,-21,456], // LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE + 0x1FC: [904,0,944,-64,918], // LATIN CAPITAL LETTER AE WITH ACUTE + 0x1FD: [697,13,722,-5,673], // LATIN SMALL LETTER AE WITH ACUTE + 0x1FE: [904,125,722,27,691], // LATIN CAPITAL LETTER O WITH STROKE AND ACUTE + 0x1FF: [697,119,500,-3,441], // LATIN SMALL LETTER O WITH STROKE AND ACUTE + 0x237: [462,207,278,-189,239] // LATIN SMALL LETTER DOTLESS J + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/LatinExtendedB.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js new file mode 100644 index 0000000..ecf4f81 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js @@ -0,0 +1,56 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/LetterlikeSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x2102: [685,14,713,35,704], // stix-mathematical bold oblique double-struck capital C + 0x2105: [683,14,847,52,795], // CARE OF + 0x210A: [462,224,819,27,771], // SCRIPT SMALL G + 0x210B: [699,21,1171,65,1154], // SCRIPT CAPITAL H + 0x210D: [669,0,773,21,808], // stix-mathematical bold oblique double-struck capital H + 0x2110: [699,21,997,47,977], // SCRIPT CAPITAL I + 0x2112: [699,21,1036,40,1015], // SCRIPT CAPITAL L + 0x2113: [699,14,500,43,632], // SCRIPT SMALL L + 0x2115: [669,0,760,27,783], // stix-mathematical bold oblique double-struck capital N + 0x2116: [675,15,1055,24,1031], // NUMERO SIGN + 0x2119: [669,0,497,18,715], // stix-mathematical bold oblique double-struck capital P + 0x211A: [685,74,754,35,734], // stix-mathematical bold oblique double-struck capital Q + 0x211B: [699,21,1048,55,973], // SCRIPT CAPITAL R + 0x211D: [669,0,727,18,718], // stix-mathematical bold oblique double-struck capital R + 0x2122: [676,-271,1000,24,977], // TRADE MARK SIGN + 0x2124: [669,0,807,23,837], // stix-mathematical bold oblique double-struck capital Z + 0x212C: [699,21,1060,55,985], // SCRIPT CAPITAL B + 0x212F: [462,14,726,35,648], // SCRIPT SMALL E + 0x2130: [699,21,826,95,791], // SCRIPT CAPITAL E + 0x2131: [699,21,1042,65,1025], // SCRIPT CAPITAL F + 0x2133: [699,21,1300,60,1245], // SCRIPT CAPITAL M + 0x2134: [462,14,848,35,780], // SCRIPT SMALL O + 0x213C: [449,13,730,32,715], // DOUBLE-STRUCK SMALL PI + 0x213F: [669,0,796,35,821], // DOUBLE-STRUCK CAPITAL PI + 0x2145: [669,0,748,18,733], // stix-mathematical bold double-struck capital D + 0x2146: [699,13,633,45,698], // stix-mathematical bold double-struck small letter d + 0x2147: [462,13,575,45,540], // stix-mathematical bold double-struck small letter e + 0x2148: [669,0,379,40,413], // stix-mathematical bold double-struck small letter i + 0x2149: [669,205,421,-93,455] // stix-mathematical bold double-struck small letter j + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js new file mode 100644 index 0000000..ad9bdb5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js @@ -0,0 +1,56 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'] = { + directory: 'General/BoldItalic', + family: 'STIXGeneral', + weight: 'bold', + style: 'italic', + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x250,0x2AF,"IPAExtensions"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x400,0x4FF,"Cyrillic"], + [0x1E00,0x1EFF,"LatinExtendedAdditional"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x20A0,0x20CF,"CurrencySymbols"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2200,0x22FF,"MathOperators"], + [0x2400,0x243F,"ControlPictures"], + [0x2460,0x24FF,"EnclosedAlphanum"], + [0x2500,0x257F,"BoxDrawing"], + [0xFB00,0xFB4F,"AlphaPresentForms"], + [0x1D468,0x1D49B,"MathBoldItalic"], + [0x1D4D0,0x1D503,"MathBoldScript"], + [0x1D63C,0x1D66F,"MathSSItalicBold"], + [0x1D71C,0x1D755,"GreekBoldItalic"], + [0x1D790,0x1D7C9,"GreekSSBoldItalic"] + ] + +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXGeneral-bold-italic"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js new file mode 100644 index 0000000..480cdfc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x1D468: [685,0,759,39,724], // MATHEMATICAL BOLD ITALIC CAPITAL A + 0x1D469: [669,0,726,42,715], // MATHEMATICAL BOLD ITALIC CAPITAL B + 0x1D46A: [685,12,701,55,745], // MATHEMATICAL BOLD ITALIC CAPITAL C + 0x1D46B: [669,0,818,42,790], // MATHEMATICAL BOLD ITALIC CAPITAL D + 0x1D46C: [669,0,732,42,754], // MATHEMATICAL BOLD ITALIC CAPITAL E + 0x1D46D: [669,0,635,44,750], // MATHEMATICAL BOLD ITALIC CAPITAL F + 0x1D46E: [685,12,768,55,768], // MATHEMATICAL BOLD ITALIC CAPITAL G + 0x1D46F: [669,0,891,42,946], // MATHEMATICAL BOLD ITALIC CAPITAL H + 0x1D470: [669,0,502,42,557], // MATHEMATICAL BOLD ITALIC CAPITAL I + 0x1D471: [669,12,558,66,646], // MATHEMATICAL BOLD ITALIC CAPITAL J + 0x1D472: [669,0,795,42,839], // MATHEMATICAL BOLD ITALIC CAPITAL K + 0x1D473: [669,0,744,42,700], // MATHEMATICAL BOLD ITALIC CAPITAL L + 0x1D474: [669,0,1016,42,1071], // MATHEMATICAL BOLD ITALIC CAPITAL M + 0x1D475: [669,0,869,42,924], // MATHEMATICAL BOLD ITALIC CAPITAL N + 0x1D476: [685,16,777,55,755], // MATHEMATICAL BOLD ITALIC CAPITAL O + 0x1D477: [669,0,612,42,733], // MATHEMATICAL BOLD ITALIC CAPITAL P + 0x1D478: [685,154,810,55,756], // MATHEMATICAL BOLD ITALIC CAPITAL Q + 0x1D479: [669,0,801,42,784], // MATHEMATICAL BOLD ITALIC CAPITAL R + 0x1D47A: [685,10,671,55,704], // MATHEMATICAL BOLD ITALIC CAPITAL S + 0x1D47B: [669,0,568,28,700], // MATHEMATICAL BOLD ITALIC CAPITAL T + 0x1D47C: [669,10,733,72,810], // MATHEMATICAL BOLD ITALIC CAPITAL U + 0x1D47D: [669,15,593,66,797], // MATHEMATICAL BOLD ITALIC CAPITAL V + 0x1D47E: [669,17,925,66,1129], // MATHEMATICAL BOLD ITALIC CAPITAL W + 0x1D47F: [669,0,808,28,830], // MATHEMATICAL BOLD ITALIC CAPITAL X + 0x1D480: [669,0,549,39,725], // MATHEMATICAL BOLD ITALIC CAPITAL Y + 0x1D481: [669,0,797,66,830], // MATHEMATICAL BOLD ITALIC CAPITAL Z + 0x1D482: [462,10,581,44,548], // MATHEMATICAL BOLD ITALIC SMALL A + 0x1D483: [685,8,509,50,487], // MATHEMATICAL BOLD ITALIC SMALL B + 0x1D484: [462,10,477,44,460], // MATHEMATICAL BOLD ITALIC SMALL C + 0x1D485: [685,14,595,44,589], // MATHEMATICAL BOLD ITALIC SMALL D + 0x1D486: [462,10,498,44,459], // MATHEMATICAL BOLD ITALIC SMALL E + 0x1D487: [685,207,572,44,632], // MATHEMATICAL BOLD ITALIC SMALL F + 0x1D488: [462,203,527,22,527], // MATHEMATICAL BOLD ITALIC SMALL G + 0x1D489: [685,10,576,50,543], // MATHEMATICAL BOLD ITALIC SMALL H + 0x1D48A: [620,9,357,55,300], // MATHEMATICAL BOLD ITALIC SMALL I + 0x1D48B: [620,207,431,-18,414], // MATHEMATICAL BOLD ITALIC SMALL J + 0x1D48C: [685,11,580,55,563], // MATHEMATICAL BOLD ITALIC SMALL K + 0x1D48D: [685,9,346,50,310], // MATHEMATICAL BOLD ITALIC SMALL L + 0x1D48E: [467,9,760,33,727], // MATHEMATICAL BOLD ITALIC SMALL M + 0x1D48F: [467,10,559,33,526], // MATHEMATICAL BOLD ITALIC SMALL N + 0x1D490: [462,10,561,44,539], // MATHEMATICAL BOLD ITALIC SMALL O + 0x1D491: [469,205,571,-33,554], // MATHEMATICAL BOLD ITALIC SMALL P + 0x1D492: [462,205,526,44,532], // MATHEMATICAL BOLD ITALIC SMALL Q + 0x1D493: [467,0,441,33,424], // MATHEMATICAL BOLD ITALIC SMALL R + 0x1D494: [462,11,474,55,419], // MATHEMATICAL BOLD ITALIC SMALL S + 0x1D495: [592,10,351,44,318], // MATHEMATICAL BOLD ITALIC SMALL T + 0x1D496: [463,10,535,33,502], // MATHEMATICAL BOLD ITALIC SMALL U + 0x1D497: [473,14,554,52,539], // MATHEMATICAL BOLD ITALIC SMALL V + 0x1D498: [473,14,814,52,799], // MATHEMATICAL BOLD ITALIC SMALL W + 0x1D499: [462,8,587,33,543], // MATHEMATICAL BOLD ITALIC SMALL X + 0x1D49A: [462,205,519,35,522], // MATHEMATICAL BOLD ITALIC SMALL Y + 0x1D49B: [462,19,531,35,499] // MATHEMATICAL BOLD ITALIC SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/MathBoldItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js new file mode 100644 index 0000000..54fdc48 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathBoldScript.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x1D4D0: [699,21,984,50,955], // MATHEMATICAL BOLD SCRIPT CAPITAL A + 0x1D4D1: [699,21,1060,55,985], // MATHEMATICAL BOLD SCRIPT CAPITAL B + 0x1D4D2: [699,21,912,60,877], // MATHEMATICAL BOLD SCRIPT CAPITAL C + 0x1D4D3: [699,21,991,60,906], // MATHEMATICAL BOLD SCRIPT CAPITAL D + 0x1D4D4: [699,21,826,95,791], // MATHEMATICAL BOLD SCRIPT CAPITAL E + 0x1D4D5: [699,21,1042,65,1025], // MATHEMATICAL BOLD SCRIPT CAPITAL F + 0x1D4D6: [699,21,834,82,799], // MATHEMATICAL BOLD SCRIPT CAPITAL G + 0x1D4D7: [699,21,1171,65,1154], // MATHEMATICAL BOLD SCRIPT CAPITAL H + 0x1D4D8: [699,21,997,47,977], // MATHEMATICAL BOLD SCRIPT CAPITAL I + 0x1D4D9: [699,224,906,19,886], // MATHEMATICAL BOLD SCRIPT CAPITAL J + 0x1D4DA: [699,21,1154,45,1130], // MATHEMATICAL BOLD SCRIPT CAPITAL K + 0x1D4DB: [699,21,1036,40,1015], // MATHEMATICAL BOLD SCRIPT CAPITAL L + 0x1D4DC: [699,21,1300,60,1245], // MATHEMATICAL BOLD SCRIPT CAPITAL M + 0x1D4DD: [699,21,1095,60,1078], // MATHEMATICAL BOLD SCRIPT CAPITAL N + 0x1D4DE: [699,21,809,72,749], // MATHEMATICAL BOLD SCRIPT CAPITAL O + 0x1D4DF: [699,21,1025,55,994], // MATHEMATICAL BOLD SCRIPT CAPITAL P + 0x1D4E0: [699,52,809,72,749], // MATHEMATICAL BOLD SCRIPT CAPITAL Q + 0x1D4E1: [699,21,1048,55,973], // MATHEMATICAL BOLD SCRIPT CAPITAL R + 0x1D4E2: [699,21,816,81,781], // MATHEMATICAL BOLD SCRIPT CAPITAL S + 0x1D4E3: [699,21,1030,65,1025], // MATHEMATICAL BOLD SCRIPT CAPITAL T + 0x1D4E4: [699,21,964,60,904], // MATHEMATICAL BOLD SCRIPT CAPITAL U + 0x1D4E5: [699,21,1040,60,1024], // MATHEMATICAL BOLD SCRIPT CAPITAL V + 0x1D4E6: [699,21,1320,60,1306], // MATHEMATICAL BOLD SCRIPT CAPITAL W + 0x1D4E7: [699,21,1033,64,1010], // MATHEMATICAL BOLD SCRIPT CAPITAL X + 0x1D4E8: [699,224,989,60,963], // MATHEMATICAL BOLD SCRIPT CAPITAL Y + 0x1D4E9: [699,21,996,50,976], // MATHEMATICAL BOLD SCRIPT CAPITAL Z + 0x1D4EA: [462,14,942,35,865], // MATHEMATICAL BOLD SCRIPT SMALL A + 0x1D4EB: [699,14,646,60,624], // MATHEMATICAL BOLD SCRIPT SMALL B + 0x1D4EC: [462,14,764,35,683], // MATHEMATICAL BOLD SCRIPT SMALL C + 0x1D4ED: [699,14,949,28,912], // MATHEMATICAL BOLD SCRIPT SMALL D + 0x1D4EE: [462,14,726,35,648], // MATHEMATICAL BOLD SCRIPT SMALL E + 0x1D4EF: [699,205,768,25,749], // MATHEMATICAL BOLD SCRIPT SMALL F + 0x1D4F0: [462,224,819,27,771], // MATHEMATICAL BOLD SCRIPT SMALL G + 0x1D4F1: [699,14,838,55,758], // MATHEMATICAL BOLD SCRIPT SMALL H + 0x1D4F2: [698,14,558,40,534], // MATHEMATICAL BOLD SCRIPT SMALL I + 0x1D4F3: [698,224,840,41,823], // MATHEMATICAL BOLD SCRIPT SMALL J + 0x1D4F4: [699,14,810,55,730], // MATHEMATICAL BOLD SCRIPT SMALL K + 0x1D4F5: [699,14,650,43,632], // MATHEMATICAL BOLD SCRIPT SMALL L + 0x1D4F6: [462,14,1137,45,1057], // MATHEMATICAL BOLD SCRIPT SMALL M + 0x1D4F7: [462,14,851,45,771], // MATHEMATICAL BOLD SCRIPT SMALL N + 0x1D4F8: [462,14,848,35,780], // MATHEMATICAL BOLD SCRIPT SMALL O + 0x1D4F9: [462,205,885,25,770], // MATHEMATICAL BOLD SCRIPT SMALL P + 0x1D4FA: [462,205,913,35,833], // MATHEMATICAL BOLD SCRIPT SMALL Q + 0x1D4FB: [462,0,677,40,648], // MATHEMATICAL BOLD SCRIPT SMALL R + 0x1D4FC: [557,14,562,51,449], // MATHEMATICAL BOLD SCRIPT SMALL S + 0x1D4FD: [669,14,618,47,612], // MATHEMATICAL BOLD SCRIPT SMALL T + 0x1D4FE: [449,14,842,31,762], // MATHEMATICAL BOLD SCRIPT SMALL U + 0x1D4FF: [458,14,732,40,670], // MATHEMATICAL BOLD SCRIPT SMALL V + 0x1D500: [458,14,1012,40,950], // MATHEMATICAL BOLD SCRIPT SMALL W + 0x1D501: [462,14,820,63,740], // MATHEMATICAL BOLD SCRIPT SMALL X + 0x1D502: [449,224,784,40,711], // MATHEMATICAL BOLD SCRIPT SMALL Y + 0x1D503: [493,14,782,61,702] // MATHEMATICAL BOLD SCRIPT SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/MathBoldScript.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js new file mode 100644 index 0000000..734b4e6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x2202: [686,10,559,44,559], // PARTIAL DIFFERENTIAL + 0x2212: [297,-209,606,51,555] // MINUS SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js new file mode 100644 index 0000000..d29f61e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathSSItalicBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x1D63C: [690,0,690,25,665], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A + 0x1D63D: [676,0,636,80,691], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL B + 0x1D63E: [691,19,723,119,797], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL C + 0x1D63F: [676,0,709,80,772], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL D + 0x1D640: [676,0,635,80,728], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL E + 0x1D641: [676,0,582,80,725], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL F + 0x1D642: [691,19,746,107,785], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL G + 0x1D643: [676,0,715,80,803], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL H + 0x1D644: [676,0,440,79,534], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL I + 0x1D645: [676,96,481,15,574], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL J + 0x1D646: [676,0,712,80,816], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL K + 0x1D647: [676,0,603,80,612], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL L + 0x1D648: [676,0,913,80,1001], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL M + 0x1D649: [676,18,724,80,812], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL N + 0x1D64A: [692,18,778,106,840], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL O + 0x1D64B: [676,0,581,80,695], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL P + 0x1D64C: [691,176,779,105,839], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Q + 0x1D64D: [676,0,670,80,698], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL R + 0x1D64E: [691,19,554,66,637], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL S + 0x1D64F: [676,0,641,157,785], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL T + 0x1D650: [676,19,699,123,792], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL U + 0x1D651: [676,18,690,193,833], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL V + 0x1D652: [676,15,997,198,1135], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL W + 0x1D653: [676,0,740,40,853], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL X + 0x1D654: [676,0,694,188,842], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Y + 0x1D655: [676,0,653,25,769], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z + 0x1D656: [473,14,489,48,507], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A + 0x1D657: [676,13,512,51,558], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B + 0x1D658: [473,14,462,71,524], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C + 0x1D659: [676,14,518,69,625], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D + 0x1D65A: [473,13,452,71,492], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E + 0x1D65B: [692,0,340,72,533], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F + 0x1D65C: [473,206,504,2,599], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G + 0x1D65D: [676,0,510,55,542], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H + 0x1D65E: [688,0,245,59,366], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I + 0x1D65F: [688,202,324,-90,440], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J + 0x1D660: [676,0,519,55,599], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K + 0x1D661: [676,0,235,55,348], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL L + 0x1D662: [473,0,776,55,809], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M + 0x1D663: [473,0,510,55,542], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL N + 0x1D664: [473,14,501,72,542], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O + 0x1D665: [473,205,512,3,559], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P + 0x1D666: [473,205,512,69,574], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q + 0x1D667: [473,0,411,55,519], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL R + 0x1D668: [473,13,385,37,442], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S + 0x1D669: [631,12,386,98,447], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T + 0x1D66A: [462,15,518,81,569], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U + 0x1D66B: [462,14,462,129,561], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V + 0x1D66C: [462,14,701,131,798], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W + 0x1D66D: [462,0,506,20,582], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X + 0x1D66E: [462,204,472,-27,569], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y + 0x1D66F: [462,0,441,21,530] // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/MathSSItalicBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js new file mode 100644 index 0000000..f875fe8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/SpacingModLetters.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], + { + 0x2B0: [852,-328,380,7,365], // MODIFIER LETTER SMALL H + 0x2B1: [841,-329,380,7,365], // MODIFIER LETTER SMALL H WITH HOOK + 0x2B2: [862,-176,350,24,384], // MODIFIER LETTER SMALL J + 0x2B3: [690,-344,389,21,384], // MODIFIER LETTER SMALL R + 0x2B4: [690,-344,389,2,365], // MODIFIER LETTER SMALL TURNED R + 0x2B5: [690,-171,389,2,371], // MODIFIER LETTER SMALL TURNED R WITH HOOK + 0x2B6: [684,-345,390,5,466], // MODIFIER LETTER SMALL CAPITAL INVERTED R + 0x2B7: [690,-331,450,15,467], // MODIFIER LETTER SMALL W + 0x2B8: [690,-176,350,11,386], // MODIFIER LETTER SMALL Y + 0x2BB: [685,-369,333,128,332], // MODIFIER LETTER TURNED COMMA + 0x2C0: [690,-240,343,-3,323], // MODIFIER LETTER GLOTTAL STOP + 0x2C1: [690,-240,326,20,364], // MODIFIER LETTER REVERSED GLOTTAL STOP + 0x2C6: [690,-516,333,40,367], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [690,-516,333,79,411], // CARON + 0x2D8: [678,-516,333,71,387], // BREVE + 0x2D9: [655,-525,333,163,293], // DOT ABOVE + 0x2DA: [754,-541,333,127,340], // RING ABOVE + 0x2DB: [44,173,333,-40,189], // OGONEK + 0x2DC: [655,-536,333,48,407], // SMALL TILDE + 0x2DD: [697,-516,333,69,498], // DOUBLE ACUTE ACCENT + 0x2E0: [684,-190,379,14,423], // MODIFIER LETTER SMALL GAMMA + 0x2E1: [857,-329,222,2,217], // MODIFIER LETTER SMALL L + 0x2E2: [690,-331,280,8,274], // MODIFIER LETTER SMALL S + 0x2E3: [690,-335,389,3,387], // MODIFIER LETTER SMALL X + 0x2E4: [849,-329,328,9,364], // MODIFIER LETTER SMALL REVERSED GLOTTAL STOP + 0x2EC: [70,167,314,5,309], // MODIFIER LETTER VOICING + 0x2ED: [720,-528,395,5,390], // MODIFIER LETTER UNASPIRATED + 0x2F7: [-108,227,333,-74,285] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js new file mode 100644 index 0000000..3711217 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0xFB00: [678,207,527,-147,673], // LATIN SMALL LIGATURE FF + 0xFB01: [681,207,500,-141,481], // LATIN SMALL LIGATURE FI + 0xFB02: [682,204,500,-141,518], // LATIN SMALL LIGATURE FL + 0xFB03: [681,207,744,-147,725], // LATIN SMALL LIGATURE FFI + 0xFB04: [682,207,745,-147,763] // LATIN SMALL LIGATURE FFL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/AlphaPresentForms.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js new file mode 100644 index 0000000..e00440d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js @@ -0,0 +1,67 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x2500: [340,-267,708,-11,719], // BOX DRAWINGS LIGHT HORIZONTAL + 0x2502: [910,303,708,317,390], // BOX DRAWINGS LIGHT VERTICAL + 0x250C: [340,303,708,317,720], // BOX DRAWINGS LIGHT DOWN AND RIGHT + 0x2510: [340,303,708,-11,390], // BOX DRAWINGS LIGHT DOWN AND LEFT + 0x2514: [910,-267,708,317,720], // BOX DRAWINGS LIGHT UP AND RIGHT + 0x2518: [910,-267,708,-11,390], // BOX DRAWINGS LIGHT UP AND LEFT + 0x251C: [910,303,708,317,719], // BOX DRAWINGS LIGHT VERTICAL AND RIGHT + 0x2524: [910,303,708,-11,390], // BOX DRAWINGS LIGHT VERTICAL AND LEFT + 0x252C: [340,303,708,-11,719], // BOX DRAWINGS LIGHT DOWN AND HORIZONTAL + 0x2534: [910,-267,708,-11,719], // BOX DRAWINGS LIGHT UP AND HORIZONTAL + 0x253C: [910,303,708,-11,719], // BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL + 0x2550: [433,-174,708,-11,719], // BOX DRAWINGS DOUBLE HORIZONTAL + 0x2551: [910,303,708,225,483], // BOX DRAWINGS DOUBLE VERTICAL + 0x2552: [433,303,708,317,720], // BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE + 0x2553: [340,303,708,225,720], // BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE + 0x2554: [433,303,708,225,719], // BOX DRAWINGS DOUBLE DOWN AND RIGHT + 0x2555: [433,303,708,-11,390], // BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE + 0x2556: [340,303,708,-11,483], // BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE + 0x2557: [433,303,708,-11,483], // BOX DRAWINGS DOUBLE DOWN AND LEFT + 0x2558: [910,-174,708,317,720], // BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE + 0x2559: [910,-267,708,225,720], // BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE + 0x255A: [910,-174,708,225,719], // BOX DRAWINGS DOUBLE UP AND RIGHT + 0x255B: [910,-174,708,-11,390], // BOX DRAWINGS UP SINGLE AND LEFT DOUBLE + 0x255C: [910,-267,708,-11,483], // BOX DRAWINGS UP DOUBLE AND LEFT SINGLE + 0x255D: [910,-174,708,-11,483], // BOX DRAWINGS DOUBLE UP AND LEFT + 0x255E: [910,303,708,317,720], // BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE + 0x255F: [910,303,708,225,720], // BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE + 0x2560: [910,303,708,225,720], // BOX DRAWINGS DOUBLE VERTICAL AND RIGHT + 0x2561: [910,303,708,-11,390], // BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE + 0x2562: [910,303,708,-11,483], // BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE + 0x2563: [910,303,708,-11,483], // BOX DRAWINGS DOUBLE VERTICAL AND LEFT + 0x2564: [433,303,708,-11,719], // BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE + 0x2565: [340,303,708,-11,719], // BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE + 0x2566: [433,303,708,-11,719], // BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL + 0x2567: [910,-174,708,-11,719], // BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE + 0x2568: [910,-267,708,-11,719], // BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE + 0x2569: [910,-174,708,-11,719], // BOX DRAWINGS DOUBLE UP AND HORIZONTAL + 0x256A: [910,303,708,-11,719], // BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE + 0x256B: [910,303,708,-11,719], // BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE + 0x256C: [910,303,708,-11,719] // BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/BoxDrawing.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js new file mode 100644 index 0000000..69f2012 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CombDiactForSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x20D0: [760,-627,0,-453,-17], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [760,-627,0,-426,10], // COMBINING RIGHT HARPOON ABOVE + 0x20D2: [662,156,0,-300,-234], // COMBINING LONG VERTICAL LINE OVERLAY + 0x20D6: [760,-548,0,-453,-17], // COMBINING LEFT ARROW ABOVE + 0x20D7: [760,-548,0,-453,-17], // COMBINING RIGHT ARROW ABOVE + 0x20DB: [622,-523,0,-453,44], // COMBINING THREE DOTS ABOVE + 0x20DC: [622,-523,0,-582,114], // COMBINING FOUR DOTS ABOVE + 0x20DD: [725,221,0,-723,223], // COMBINING ENCLOSING CIRCLE + 0x20E1: [760,-548,0,-453,25], // COMBINING LEFT RIGHT ARROW ABOVE + 0x20E4: [1023,155,0,-970,490], // COMBINING ENCLOSING UPWARD POINTING TRIANGLE + 0x20E5: [662,156,0,-430,-24], // COMBINING REVERSE SOLIDUS OVERLAY + 0x20E6: [662,156,0,-351,-86], // COMBINING DOUBLE VERTICAL STROKE OVERLAY + 0x20E7: [725,178,0,-595,221], // COMBINING ANNUITY SYMBOL + 0x20E8: [-119,218,0,-462,35], // COMBINING TRIPLE UNDERDOT + 0x20E9: [681,-538,0,-478,55], // COMBINING WIDE BRIDGE ABOVE + 0x20EA: [419,-87,0,-793,153], // COMBINING LEFTWARDS ARROW OVERLAY + 0x20EC: [-119,252,0,27,463], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-119,252,0,27,463], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-40,252,0,-453,-17], // COMBINING LEFT ARROW BELOW + 0x20EF: [-40,252,0,-453,-17] // COMBINING RIGHT ARROW BELOW + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/CombDiactForSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js new file mode 100644 index 0000000..6f1d61c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x2423: [16,120,500,40,460] // stix-round space indicator + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/ControlPictures.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js new file mode 100644 index 0000000..ba57a61 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js @@ -0,0 +1,31 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x20A3: [653,0,611,8,645], // FRENCH FRANC SIGN + 0x20A4: [670,8,500,10,517], // LIRA SIGN + 0x20A7: [653,13,1149,0,1126], // PESETA SIGN + 0x20AC: [664,12,500,16,538] // EURO SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/CurrencySymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js new file mode 100644 index 0000000..24ff0b6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js @@ -0,0 +1,129 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x401: [856,0,611,1,631], // CYRILLIC CAPITAL LETTER IO + 0x402: [653,208,723,70,663], // CYRILLIC CAPITAL LETTER DJE + 0x403: [914,0,569,-36,603], // CYRILLIC CAPITAL LETTER GJE + 0x404: [666,18,657,67,680], // CYRILLIC CAPITAL LETTER UKRAINIAN IE + 0x405: [667,18,500,7,498], // CYRILLIC CAPITAL LETTER DZE + 0x406: [653,0,333,-7,382], // CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I + 0x407: [856,0,333,-31,433], // CYRILLIC CAPITAL LETTER YI + 0x408: [653,18,444,-34,463], // CYRILLIC CAPITAL LETTER JE + 0x409: [653,16,961,-35,901], // CYRILLIC CAPITAL LETTER LJE + 0x40A: [653,0,966,-28,906], // CYRILLIC CAPITAL LETTER NJE + 0x40B: [653,0,786,70,701], // CYRILLIC CAPITAL LETTER TSHE + 0x40C: [914,0,621,-28,657], // CYRILLIC CAPITAL LETTER KJE + 0x40E: [887,14,656,110,716], // CYRILLIC CAPITAL LETTER SHORT U + 0x40F: [653,179,722,-25,747], // CYRILLIC CAPITAL LETTER DZHE + 0x410: [668,0,611,-49,566], // CYRILLIC CAPITAL LETTER A + 0x411: [653,0,590,-28,603], // CYRILLIC CAPITAL LETTER BE + 0x412: [653,0,597,-23,571], // CYRILLIC CAPITAL LETTER VE + 0x413: [653,0,569,-36,603], // CYRILLIC CAPITAL LETTER GHE + 0x414: [653,179,655,-103,696], // CYRILLIC CAPITAL LETTER DE + 0x415: [653,0,611,1,631], // CYRILLIC CAPITAL LETTER IE + 0x416: [661,0,956,-55,972], // CYRILLIC CAPITAL LETTER ZHE + 0x417: [668,16,564,9,548], // CYRILLIC CAPITAL LETTER ZE + 0x418: [653,0,708,-25,749], // CYRILLIC CAPITAL LETTER I + 0x419: [887,0,708,-25,749], // CYRILLIC CAPITAL LETTER SHORT I + 0x41A: [661,0,621,-28,657], // CYRILLIC CAPITAL LETTER KA + 0x41B: [653,16,699,-35,740], // CYRILLIC CAPITAL LETTER EL + 0x41C: [653,0,814,-33,855], // CYRILLIC CAPITAL LETTER EM + 0x41D: [653,0,708,-26,749], // CYRILLIC CAPITAL LETTER EN + 0x41E: [667,18,712,60,699], // CYRILLIC CAPITAL LETTER O + 0x41F: [653,0,704,-29,745], // CYRILLIC CAPITAL LETTER PE + 0x420: [653,0,568,-24,578], // CYRILLIC CAPITAL LETTER ER + 0x421: [666,18,667,67,690], // CYRILLIC CAPITAL LETTER ES + 0x422: [653,0,556,70,644], // CYRILLIC CAPITAL LETTER TE + 0x423: [653,14,656,110,716], // CYRILLIC CAPITAL LETTER U + 0x424: [653,0,772,73,758], // CYRILLIC CAPITAL LETTER EF + 0x425: [653,0,575,-67,617], // CYRILLIC CAPITAL LETTER HA + 0x426: [653,179,706,-25,747], // CYRILLIC CAPITAL LETTER TSE + 0x427: [653,0,622,54,663], // CYRILLIC CAPITAL LETTER CHE + 0x428: [653,0,936,-14,977], // CYRILLIC CAPITAL LETTER SHA + 0x429: [653,179,936,-14,977], // CYRILLIC CAPITAL LETTER SHCHA + 0x42A: [653,0,695,63,652], // CYRILLIC CAPITAL LETTER HARD SIGN + 0x42B: [653,0,852,-28,893], // CYRILLIC CAPITAL LETTER YERU + 0x42C: [653,0,597,-28,537], // CYRILLIC CAPITAL LETTER SOFT SIGN + 0x42D: [666,18,658,15,636], // CYRILLIC CAPITAL LETTER E + 0x42E: [666,18,877,-32,850], // CYRILLIC CAPITAL LETTER YU + 0x42F: [653,0,635,-49,676], // CYRILLIC CAPITAL LETTER YA + 0x430: [441,11,514,23,482], // CYRILLIC SMALL LETTER A + 0x431: [683,11,498,36,535], // CYRILLIC SMALL LETTER BE + 0x432: [441,11,442,31,423], // CYRILLIC SMALL LETTER VE + 0x433: [441,11,390,1,384], // CYRILLIC SMALL LETTER GHE + 0x434: [683,11,489,30,470], // CYRILLIC SMALL LETTER DE + 0x435: [441,11,440,34,422], // CYRILLIC SMALL LETTER IE + 0x436: [441,11,799,0,791], // CYRILLIC SMALL LETTER ZHE + 0x437: [441,11,376,-18,357], // CYRILLIC SMALL LETTER ZE + 0x438: [441,11,527,29,495], // CYRILLIC SMALL LETTER I + 0x439: [667,11,527,29,495], // CYRILLIC SMALL LETTER SHORT I + 0x43A: [441,11,491,18,485], // CYRILLIC SMALL LETTER KA + 0x43B: [441,12,474,-44,442], // CYRILLIC SMALL LETTER EL + 0x43C: [432,12,633,-45,601], // CYRILLIC SMALL LETTER EM + 0x43D: [441,9,504,20,472], // CYRILLIC SMALL LETTER EN + 0x43E: [441,11,489,29,470], // CYRILLIC SMALL LETTER O + 0x43F: [441,9,511,19,479], // CYRILLIC SMALL LETTER PE + 0x440: [441,205,483,-77,464], // CYRILLIC SMALL LETTER ER + 0x441: [441,11,441,27,422], // CYRILLIC SMALL LETTER ES + 0x442: [441,9,741,17,709], // CYRILLIC SMALL LETTER TE + 0x443: [441,206,421,-61,389], // CYRILLIC SMALL LETTER U + 0x444: [683,205,702,29,677], // CYRILLIC SMALL LETTER EF + 0x445: [441,11,444,-35,439], // CYRILLIC SMALL LETTER HA + 0x446: [441,182,527,29,495], // CYRILLIC SMALL LETTER TSE + 0x447: [441,9,482,42,450], // CYRILLIC SMALL LETTER CHE + 0x448: [441,11,785,31,753], // CYRILLIC SMALL LETTER SHA + 0x449: [441,182,785,31,753], // CYRILLIC SMALL LETTER SHCHA + 0x44A: [441,11,567,12,528], // CYRILLIC SMALL LETTER HARD SIGN + 0x44B: [441,11,689,50,657], // CYRILLIC SMALL LETTER YERU + 0x44C: [441,11,471,50,433], // CYRILLIC SMALL LETTER SOFT SIGN + 0x44D: [441,11,408,7,391], // CYRILLIC SMALL LETTER E + 0x44E: [441,11,674,21,655], // CYRILLIC SMALL LETTER YU + 0x44F: [432,9,481,-25,449], // CYRILLIC SMALL LETTER YA + 0x451: [606,11,440,34,475], // CYRILLIC SMALL LETTER IO + 0x452: [683,208,479,20,448], // CYRILLIC SMALL LETTER DJE + 0x453: [664,11,390,1,455], // CYRILLIC SMALL LETTER GJE + 0x454: [441,11,428,26,441], // CYRILLIC SMALL LETTER UKRAINIAN IE + 0x455: [442,13,389,-9,341], // CYRILLIC SMALL LETTER DZE + 0x456: [654,11,278,43,258], // CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I + 0x457: [606,11,278,43,357], // CYRILLIC SMALL LETTER YI + 0x458: [652,207,278,-172,231], // CYRILLIC SMALL LETTER JE + 0x459: [441,12,679,-44,631], // CYRILLIC SMALL LETTER LJE + 0x45A: [441,11,697,21,649], // CYRILLIC SMALL LETTER NJE + 0x45B: [683,9,511,20,479], // CYRILLIC SMALL LETTER TSHE + 0x45C: [664,11,491,18,485], // CYRILLIC SMALL LETTER KJE + 0x45E: [667,206,421,-61,417], // CYRILLIC SMALL LETTER SHORT U + 0x45F: [441,182,527,29,495], // CYRILLIC SMALL LETTER DZHE + 0x462: [653,0,681,19,621], // CYRILLIC CAPITAL LETTER YAT + 0x463: [683,11,542,13,504], // CYRILLIC SMALL LETTER YAT + 0x46A: [653,0,953,-55,893], // CYRILLIC CAPITAL LETTER BIG YUS + 0x46B: [432,11,741,0,686], // CYRILLIC SMALL LETTER BIG YUS + 0x472: [667,18,712,60,699], // CYRILLIC CAPITAL LETTER FITA + 0x473: [441,11,489,29,470], // CYRILLIC SMALL LETTER FITA + 0x474: [662,18,646,76,742], // CYRILLIC CAPITAL LETTER IZHITSA + 0x475: [441,18,464,34,528], // CYRILLIC SMALL LETTER IZHITSA + 0x490: [783,0,524,-30,622], // CYRILLIC CAPITAL LETTER GHE WITH UPTURN + 0x491: [507,11,337,42,404] // CYRILLIC SMALL LETTER GHE WITH UPTURN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/Cyrillic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js new file mode 100644 index 0000000..432f5a1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/EnclosedAlphanum.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x2460: [676,14,684,0,684], // CIRCLED DIGIT ONE + 0x2461: [676,14,684,0,684], // CIRCLED DIGIT TWO + 0x2462: [676,14,684,0,684], // CIRCLED DIGIT THREE + 0x2463: [676,14,684,0,684], // CIRCLED DIGIT FOUR + 0x2464: [676,14,684,0,684], // CIRCLED DIGIT FIVE + 0x2465: [676,14,684,0,684], // CIRCLED DIGIT SIX + 0x2466: [676,14,684,0,684], // CIRCLED DIGIT SEVEN + 0x2467: [676,14,684,0,684], // CIRCLED DIGIT EIGHT + 0x2468: [676,14,684,0,684], // CIRCLED DIGIT NINE + 0x24B6: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER A + 0x24B7: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER B + 0x24B8: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER C + 0x24B9: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER D + 0x24BA: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER E + 0x24BB: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER F + 0x24BC: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER G + 0x24BD: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER H + 0x24BE: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER I + 0x24BF: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER J + 0x24C0: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER K + 0x24C1: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER L + 0x24C2: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER M + 0x24C3: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER N + 0x24C4: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER O + 0x24C5: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER P + 0x24C6: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER Q + 0x24C7: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER R + 0x24C8: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER S + 0x24C9: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER T + 0x24CA: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER U + 0x24CB: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER V + 0x24CC: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER W + 0x24CD: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER X + 0x24CE: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER Y + 0x24CF: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER Z + 0x24D0: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER A + 0x24D1: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER B + 0x24D2: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER C + 0x24D3: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER D + 0x24D4: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER E + 0x24D5: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER F + 0x24D6: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER G + 0x24D7: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER H + 0x24D8: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER I + 0x24D9: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER J + 0x24DA: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER K + 0x24DB: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER L + 0x24DC: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER M + 0x24DD: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER N + 0x24DE: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER O + 0x24DF: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER P + 0x24E0: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER Q + 0x24E1: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER R + 0x24E2: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER S + 0x24E3: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER T + 0x24E4: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER U + 0x24E5: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER V + 0x24E6: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER W + 0x24E7: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER X + 0x24E8: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER Y + 0x24E9: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER Z + 0x24EA: [676,14,684,0,684] // CIRCLED DIGIT ZERO + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/EnclosedAlphanum.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js new file mode 100644 index 0000000..2b2442a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js @@ -0,0 +1,50 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GeneralPunctuation.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x2010: [257,-191,333,49,282], // HYPHEN + 0x2011: [257,-191,333,49,282], // NON-BREAKING HYPHEN + 0x2012: [258,-192,500,-8,508], // FIGURE DASH + 0x2013: [243,-197,500,-6,505], // EN DASH + 0x2014: [243,-197,889,-6,894], // EM DASH + 0x2018: [666,-436,333,171,310], // LEFT SINGLE QUOTATION MARK + 0x2019: [666,-436,333,151,290], // RIGHT SINGLE QUOTATION MARK + 0x201A: [101,129,333,44,183], // SINGLE LOW-9 QUOTATION MARK + 0x201B: [666,-436,333,169,290], // SINGLE HIGH-REVERSED-9 QUOTATION MARK + 0x201C: [666,-436,556,166,514], // LEFT DOUBLE QUOTATION MARK + 0x201D: [666,-436,556,151,499], // RIGHT DOUBLE QUOTATION MARK + 0x201E: [101,129,556,57,405], // DOUBLE LOW-9 QUOTATION MARK + 0x201F: [666,-436,556,169,499], // DOUBLE HIGH-REVERSED-9 QUOTATION MARK + 0x2020: [666,159,500,101,488], // DAGGER + 0x2021: [666,143,500,22,491], // DOUBLE DAGGER + 0x2022: [444,-59,523,70,455], // BULLET + 0x2026: [100,11,889,57,762], // HORIZONTAL ELLIPSIS + 0x2030: [706,19,1117,80,1067], // PER MILLE SIGN + 0x2031: [706,19,1479,80,1429], // PER TEN THOUSAND SIGN + 0x2039: [403,-37,333,51,281], // SINGLE LEFT-POINTING ANGLE QUOTATION MARK + 0x203A: [403,-37,333,52,282], // SINGLE RIGHT-POINTING ANGLE QUOTATION MARK + 0x203E: [820,-770,500,0,500], // OVERLINE + 0x2044: [676,10,167,-169,337] // FRACTION SLASH + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js new file mode 100644 index 0000000..6dcdcd8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekAndCoptic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x384: [649,-494,289,160,322], // GREEK TONOS + 0x385: [649,-494,333,70,387], // GREEK DIALYTIKA TONOS + 0x386: [678,0,611,-51,564], // GREEK CAPITAL LETTER ALPHA WITH TONOS + 0x387: [441,-330,333,150,261], // GREEK ANO TELEIA + 0x388: [678,0,630,7,679], // GREEK CAPITAL LETTER EPSILON WITH TONOS + 0x389: [678,0,740,4,821], // GREEK CAPITAL LETTER ETA WITH TONOS + 0x38A: [678,0,350,3,429], // GREEK CAPITAL LETTER IOTA WITH TONOS + 0x38C: [678,18,722,58,699], // GREEK CAPITAL LETTER OMICRON WITH TONOS + 0x38E: [678,0,580,8,725], // GREEK CAPITAL LETTER UPSILON WITH TONOS + 0x38F: [678,0,762,-6,739], // GREEK CAPITAL LETTER OMEGA WITH TONOS + 0x390: [649,11,278,49,387], // GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS + 0x391: [668,0,611,-51,564], // GREEK CAPITAL LETTER ALPHA + 0x392: [653,0,611,-8,588], // GREEK CAPITAL LETTER BETA + 0x395: [653,0,611,-1,634], // GREEK CAPITAL LETTER EPSILON + 0x396: [653,0,556,-6,606], // GREEK CAPITAL LETTER ZETA + 0x397: [653,0,722,-8,769], // GREEK CAPITAL LETTER ETA + 0x399: [653,0,333,-8,384], // GREEK CAPITAL LETTER IOTA + 0x39A: [653,0,667,7,722], // GREEK CAPITAL LETTER KAPPA + 0x39C: [653,0,833,-18,872], // GREEK CAPITAL LETTER MU + 0x39D: [653,15,667,-20,727], // GREEK CAPITAL LETTER NU + 0x39F: [667,18,722,60,699], // GREEK CAPITAL LETTER OMICRON + 0x3A1: [653,0,611,0,605], // GREEK CAPITAL LETTER RHO + 0x3A4: [653,0,556,59,633], // GREEK CAPITAL LETTER TAU + 0x3A7: [653,0,611,-29,655], // GREEK CAPITAL LETTER CHI + 0x3AA: [856,0,333,-8,460], // GREEK CAPITAL LETTER IOTA WITH DIALYTIKA + 0x3AB: [856,0,556,78,648], // GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA + 0x3AC: [649,11,552,27,549], // GREEK SMALL LETTER ALPHA WITH TONOS + 0x3AD: [649,11,444,30,425], // GREEK SMALL LETTER EPSILON WITH TONOS + 0x3AE: [649,205,474,14,442], // GREEK SMALL LETTER ETA WITH TONOS + 0x3AF: [649,11,278,49,288], // GREEK SMALL LETTER IOTA WITH TONOS + 0x3B0: [649,10,478,19,446], // GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS + 0x3CA: [606,11,278,49,359], // GREEK SMALL LETTER IOTA WITH DIALYTIKA + 0x3CB: [606,10,478,19,446], // GREEK SMALL LETTER UPSILON WITH DIALYTIKA + 0x3CC: [649,11,500,27,468], // GREEK SMALL LETTER OMICRON WITH TONOS + 0x3CD: [649,10,478,19,446], // GREEK SMALL LETTER UPSILON WITH TONOS + 0x3CE: [649,11,686,27,654], // GREEK SMALL LETTER OMEGA WITH TONOS + 0x3D0: [694,10,456,45,436], // GREEK BETA SYMBOL + 0x3D2: [668,0,596,78,693], // GREEK UPSILON WITH HOOK SYMBOL + 0x3D8: [667,205,722,60,699], // GREEK LETTER ARCHAIC KOPPA + 0x3D9: [441,205,500,27,468], // GREEK SMALL LETTER ARCHAIC KOPPA + 0x3DA: [666,207,673,55,665], // GREEK LETTER STIGMA + 0x3DB: [458,185,444,30,482], // GREEK SMALL LETTER STIGMA + 0x3DC: [653,0,557,8,645], // GREEK LETTER DIGAMMA + 0x3DD: [433,190,487,32,472], // GREEK SMALL LETTER DIGAMMA + 0x3DE: [773,18,645,19,675], // GREEK LETTER KOPPA + 0x3DF: [683,0,457,31,445], // GREEK SMALL LETTER KOPPA + 0x3E0: [666,207,708,7,668], // GREEK LETTER SAMPI + 0x3E1: [552,210,528,93,448], // GREEK SMALL LETTER SAMPI + 0x3F0: [441,13,533,-16,559], // GREEK KAPPA SYMBOL + 0x3F4: [667,18,722,60,699], // GREEK CAPITAL THETA SYMBOL + 0x3F6: [441,11,444,24,414] // GREEK REVERSED LUNATE EPSILON SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/GreekAndCoptic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js new file mode 100644 index 0000000..98d13cc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x1D6E2: [667,0,717,35,685], // MATHEMATICAL ITALIC CAPITAL ALPHA + 0x1D6E3: [653,0,696,38,686], // MATHEMATICAL ITALIC CAPITAL BETA + 0x1D6E4: [653,0,616,38,721], // MATHEMATICAL ITALIC CAPITAL GAMMA + 0x1D6E5: [667,0,596,30,556], // MATHEMATICAL ITALIC CAPITAL DELTA + 0x1D6E6: [653,0,714,38,734], // MATHEMATICAL ITALIC CAPITAL EPSILON + 0x1D6E7: [653,0,772,60,802], // MATHEMATICAL ITALIC CAPITAL ZETA + 0x1D6E8: [653,0,873,38,923], // MATHEMATICAL ITALIC CAPITAL ETA + 0x1D6E9: [669,11,737,50,712], // MATHEMATICAL ITALIC CAPITAL THETA + 0x1D6EA: [653,0,480,38,530], // MATHEMATICAL ITALIC CAPITAL IOTA + 0x1D6EB: [653,0,762,38,802], // MATHEMATICAL ITALIC CAPITAL KAPPA + 0x1D6EC: [667,0,718,35,686], // MATHEMATICAL ITALIC CAPITAL LAMDA + 0x1D6ED: [653,0,1005,38,1055], // MATHEMATICAL ITALIC CAPITAL MU + 0x1D6EE: [653,0,851,38,901], // MATHEMATICAL ITALIC CAPITAL NU + 0x1D6EF: [653,0,706,52,741], // MATHEMATICAL ITALIC CAPITAL XI + 0x1D6F0: [669,11,732,50,712], // MATHEMATICAL ITALIC CAPITAL OMICRON + 0x1D6F1: [653,0,873,38,923], // MATHEMATICAL ITALIC CAPITAL PI + 0x1D6F2: [653,0,594,38,704], // MATHEMATICAL ITALIC CAPITAL RHO + 0x1D6F3: [669,11,737,50,712], // MATHEMATICAL ITALIC CAPITAL THETA SYMBOL + 0x1D6F4: [653,0,735,58,760], // MATHEMATICAL ITALIC CAPITAL SIGMA + 0x1D6F5: [653,0,550,25,670], // MATHEMATICAL ITALIC CAPITAL TAU + 0x1D6F6: [668,0,613,28,743], // MATHEMATICAL ITALIC CAPITAL UPSILON + 0x1D6F7: [653,0,772,25,747], // MATHEMATICAL ITALIC CAPITAL PHI + 0x1D6F8: [653,0,790,25,810], // MATHEMATICAL ITALIC CAPITAL CHI + 0x1D6F9: [667,0,670,28,743], // MATHEMATICAL ITALIC CAPITAL PSI + 0x1D6FA: [666,0,800,32,777], // MATHEMATICAL ITALIC CAPITAL OMEGA + 0x1D6FB: [653,15,627,42,600], // MATHEMATICAL ITALIC NABLA + 0x1D6FC: [441,10,524,40,529], // MATHEMATICAL ITALIC SMALL ALPHA + 0x1D6FD: [668,183,493,25,518], // MATHEMATICAL ITALIC SMALL BETA + 0x1D6FE: [441,187,428,35,458], // MATHEMATICAL ITALIC SMALL GAMMA + 0x1D6FF: [668,11,463,40,451], // MATHEMATICAL ITALIC SMALL DELTA + 0x1D700: [441,11,484,25,444], // MATHEMATICAL ITALIC SMALL EPSILON + 0x1D701: [668,183,435,40,480], // MATHEMATICAL ITALIC SMALL ZETA + 0x1D702: [441,183,460,30,455], // MATHEMATICAL ITALIC SMALL ETA + 0x1D703: [668,11,484,40,474], // MATHEMATICAL ITALIC SMALL THETA + 0x1D704: [441,11,267,50,227], // MATHEMATICAL ITALIC SMALL IOTA + 0x1D705: [441,0,534,50,549], // MATHEMATICAL ITALIC SMALL KAPPA + 0x1D706: [668,16,541,50,511], // MATHEMATICAL ITALIC SMALL LAMDA + 0x1D707: [428,183,579,30,549], // MATHEMATICAL ITALIC SMALL MU + 0x1D708: [446,9,452,50,462], // MATHEMATICAL ITALIC SMALL NU + 0x1D709: [668,183,433,25,443], // MATHEMATICAL ITALIC SMALL XI + 0x1D70A: [441,11,458,40,438], // MATHEMATICAL ITALIC SMALL OMICRON + 0x1D70B: [428,13,558,35,568], // MATHEMATICAL ITALIC SMALL PI + 0x1D70C: [441,183,502,30,472], // MATHEMATICAL ITALIC SMALL RHO + 0x1D70D: [490,183,439,35,464], // MATHEMATICAL ITALIC SMALL FINAL SIGMA + 0x1D70E: [428,11,537,40,547], // MATHEMATICAL ITALIC SMALL SIGMA + 0x1D70F: [428,5,442,30,472], // MATHEMATICAL ITALIC SMALL TAU + 0x1D710: [439,11,460,30,445], // MATHEMATICAL ITALIC SMALL UPSILON + 0x1D711: [441,183,666,50,631], // MATHEMATICAL ITALIC SMALL PHI + 0x1D712: [441,202,595,30,645], // MATHEMATICAL ITALIC SMALL CHI + 0x1D713: [441,183,661,30,711], // MATHEMATICAL ITALIC SMALL PSI + 0x1D714: [441,11,681,20,661], // MATHEMATICAL ITALIC SMALL OMEGA + 0x1D715: [668,11,471,40,471], // MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL + 0x1D716: [441,11,430,40,430], // MATHEMATICAL ITALIC EPSILON SYMBOL + 0x1D717: [678,10,554,20,507], // MATHEMATICAL ITALIC THETA SYMBOL + 0x1D718: [441,13,561,12,587], // MATHEMATICAL ITALIC KAPPA SYMBOL + 0x1D719: [668,183,645,40,620], // MATHEMATICAL ITALIC PHI SYMBOL + 0x1D71A: [441,187,509,40,489], // MATHEMATICAL ITALIC RHO SYMBOL + 0x1D71B: [428,11,856,30,866] // MATHEMATICAL ITALIC PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/GreekItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js new file mode 100644 index 0000000..84268b7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js @@ -0,0 +1,116 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/IPAExtensions.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x250: [460,10,444,19,421], // ?? + 0x251: [460,10,511,17,487], // ?? + 0x252: [460,10,511,17,487], // ?? + 0x253: [683,11,500,23,488], // ?? + 0x254: [441,11,444,30,425], // ?? + 0x255: [441,160,444,-3,425], // ?? + 0x256: [683,233,500,15,527], // ?? + 0x257: [683,13,500,15,748], // ?? + 0x258: [441,11,444,31,416], // ?? + 0x259: [441,11,444,31,412], // ?? + 0x25A: [441,11,639,31,639], // ?? + 0x25B: [475,14,444,31,467], // ?? + 0x25C: [475,14,480,31,447], // ?? + 0x25D: [475,14,666,31,666], // ?? + 0x25E: [475,14,490,30,458], // ?? + 0x25F: [441,207,357,-100,340], // ?? + 0x260: [683,212,714,8,799], // ?? + 0x261: [482,212,595,8,579], // ?? + 0x262: [441,11,562,52,562], // ?? + 0x263: [441,234,444,15,426], // ?? + 0x264: [450,10,480,4,475], // ?? + 0x265: [450,242,500,19,478], // ?? + 0x266: [683,9,500,19,494], // ?? + 0x267: [683,233,500,-6,494], // ?? + 0x268: [654,11,278,16,264], // ?? + 0x269: [454,10,333,51,266], // ?? + 0x26A: [441,0,247,-8,298], // ?? + 0x26B: [683,11,278,4,331], // ?? + 0x26C: [683,11,375,12,366], // ?? + 0x26D: [683,233,252,8,279], // ?? + 0x26E: [683,233,575,41,537], // ?? + 0x26F: [441,9,722,12,704], // ?? + 0x270: [441,233,722,12,704], // ?? + 0x271: [441,233,690,12,672], // ?? + 0x272: [441,233,606,-110,580], // ?? + 0x273: [441,233,498,14,487], // ?? + 0x274: [441,8,539,-20,599], // ?? + 0x275: [441,11,500,27,468], // ?? + 0x276: [441,6,718,49,738], // ?? + 0x277: [475,4,668,30,638], // ?? + 0x278: [683,233,660,30,630], // ?? + 0x279: [441,0,402,-45,322], // ?? + 0x27A: [683,0,383,-45,384], // ?? + 0x27B: [441,233,353,-45,342], // ?? + 0x27C: [441,233,333,-20,412], // ?? + 0x27D: [441,233,390,24,412], // ?? + 0x27E: [470,0,401,45,424], // ?? + 0x27F: [470,0,338,66,293], // ?? + 0x280: [464,0,475,25,501], // ?? + 0x281: [464,0,475,25,581], // ?? + 0x282: [442,218,389,9,376], // ?? + 0x283: [683,233,415,-110,577], // ?? + 0x284: [683,233,453,-110,595], // ?? + 0x285: [470,233,339,79,355], // ?? + 0x286: [683,243,439,-62,602], // ?? + 0x287: [460,97,330,38,296], // ?? + 0x288: [546,233,278,6,308], // ?? + 0x289: [441,11,500,9,479], // ?? + 0x28A: [450,10,537,49,552], // ?? + 0x28B: [441,10,500,52,475], // ?? + 0x28C: [441,18,444,20,426], // ?? + 0x28D: [441,18,667,15,648], // ?? + 0x28E: [647,0,444,10,460], // ?? + 0x28F: [464,0,633,62,603], // ?? + 0x290: [428,218,405,17,429], // ?? + 0x291: [428,47,393,17,380], // ?? + 0x292: [450,233,413,21,517], // ?? + 0x293: [450,305,457,7,544], // ?? + 0x294: [683,0,500,55,509], // ?? + 0x295: [683,0,500,55,495], // ?? + 0x296: [662,14,393,-25,413], // ?? + 0x297: [441,238,450,24,459], // ?? + 0x298: [679,17,723,22,704], // ?? + 0x299: [464,0,460,19,505], // ?? + 0x29A: [475,14,479,20,470], // ?? + 0x29B: [515,11,570,29,650], // ?? + 0x29C: [464,0,572,25,671], // ?? + 0x29D: [652,233,403,-80,394], // ?? + 0x29E: [439,255,463,26,473], // ?? + 0x29F: [464,0,470,25,473], // ?? + 0x2A0: [582,209,480,25,666], // ?? + 0x2A1: [683,0,500,55,509], // ?? + 0x2A2: [683,0,500,55,495], // ?? + 0x2A3: [683,13,743,15,741], // ?? + 0x2A4: [683,233,743,15,780], // ?? + 0x2A5: [683,47,754,15,741], // ?? + 0x2A6: [546,11,500,38,523], // ?? + 0x2A7: [683,233,517,-32,655], // ?? + 0x2A8: [546,16,632,38,612] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/IPAExtensions.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js new file mode 100644 index 0000000..51db00e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js @@ -0,0 +1,123 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Latin1Supplement.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xA1: [474,205,389,59,321], // INVERTED EXCLAMATION MARK + 0xA2: [560,143,500,77,472], // CENT SIGN + 0xA3: [670,8,500,10,517], // POUND SIGN + 0xA4: [534,10,500,-22,522], // CURRENCY SIGN + 0xA5: [653,0,500,28,605], // YEN SIGN + 0xA6: [666,18,275,105,171], // BROKEN BAR + 0xA7: [666,162,500,53,461], // SECTION SIGN + 0xA8: [606,-508,333,107,405], // DIAERESIS + 0xA9: [666,18,760,41,719], // COPYRIGHT SIGN + 0xAA: [676,-406,276,42,352], // FEMININE ORDINAL INDICATOR + 0xAB: [403,-37,500,53,445], // LEFT-POINTING DOUBLE ANGLE QUOTATION MARK + 0xAC: [386,-108,675,86,590], // NOT SIGN + 0xAD: [255,-192,333,49,282], // SOFT HYPHEN + 0xAE: [666,18,760,41,719], // REGISTERED SIGN + 0xAF: [583,-532,333,99,411], // MACRON + 0xB0: [676,-390,400,101,387], // DEGREE SIGN + 0xB1: [568,0,675,86,590], // PLUS-MINUS SIGN + 0xB2: [676,-271,300,33,324], // SUPERSCRIPT TWO + 0xB3: [676,-268,300,43,339], // SUPERSCRIPT THREE + 0xB4: [664,-494,333,180,403], // ACUTE ACCENT + 0xB5: [428,209,500,-30,497], // MICRO SIGN + 0xB6: [653,123,559,60,621], // PILCROW SIGN + 0xB7: [310,-199,250,70,181], // MIDDLE DOT + 0xB8: [0,217,333,-30,182], // CEDILLA + 0xB9: [676,-271,300,43,284], // SUPERSCRIPT ONE + 0xBA: [676,-406,310,67,362], // MASCULINE ORDINAL INDICATOR + 0xBB: [403,-37,500,55,447], // RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK + 0xBC: [676,10,750,33,736], // VULGAR FRACTION ONE QUARTER + 0xBD: [676,10,750,34,749], // VULGAR FRACTION ONE HALF + 0xBE: [676,10,750,23,736], // VULGAR FRACTION THREE QUARTERS + 0xBF: [473,205,500,28,367], // INVERTED QUESTION MARK + 0xC0: [914,0,611,-51,564], // LATIN CAPITAL LETTER A WITH GRAVE + 0xC1: [914,0,611,-51,564], // LATIN CAPITAL LETTER A WITH ACUTE + 0xC2: [911,0,611,-51,564], // LATIN CAPITAL LETTER A WITH CIRCUMFLEX + 0xC3: [874,0,611,-51,572], // LATIN CAPITAL LETTER A WITH TILDE + 0xC4: [856,0,611,-51,564], // LATIN CAPITAL LETTER A WITH DIAERESIS + 0xC5: [957,0,611,-51,564], // LATIN CAPITAL LETTER A WITH RING ABOVE + 0xC6: [653,0,889,-27,911], // LATIN CAPITAL LETTER AE + 0xC7: [666,217,667,66,689], // LATIN CAPITAL LETTER C WITH CEDILLA + 0xC8: [914,0,611,-1,634], // LATIN CAPITAL LETTER E WITH GRAVE + 0xC9: [914,0,611,-1,634], // LATIN CAPITAL LETTER E WITH ACUTE + 0xCA: [911,0,611,-1,634], // LATIN CAPITAL LETTER E WITH CIRCUMFLEX + 0xCB: [856,0,611,-1,634], // LATIN CAPITAL LETTER E WITH DIAERESIS + 0xCC: [914,0,333,-8,398], // LATIN CAPITAL LETTER I WITH GRAVE + 0xCD: [914,0,333,-8,414], // LATIN CAPITAL LETTER I WITH ACUTE + 0xCE: [911,0,333,-8,450], // LATIN CAPITAL LETTER I WITH CIRCUMFLEX + 0xCF: [856,0,333,-8,457], // LATIN CAPITAL LETTER I WITH DIAERESIS + 0xD0: [653,0,722,-8,700], // LATIN CAPITAL LETTER ETH + 0xD1: [874,15,667,-20,727], // LATIN CAPITAL LETTER N WITH TILDE + 0xD2: [914,18,722,60,699], // LATIN CAPITAL LETTER O WITH GRAVE + 0xD3: [914,18,722,60,699], // LATIN CAPITAL LETTER O WITH ACUTE + 0xD4: [911,18,722,60,699], // LATIN CAPITAL LETTER O WITH CIRCUMFLEX + 0xD5: [874,18,722,60,699], // LATIN CAPITAL LETTER O WITH TILDE + 0xD6: [856,18,722,60,699], // LATIN CAPITAL LETTER O WITH DIAERESIS + 0xD7: [497,-8,675,93,582], // MULTIPLICATION SIGN + 0xD8: [722,105,722,60,699], // LATIN CAPITAL LETTER O WITH STROKE + 0xD9: [914,18,722,102,765], // LATIN CAPITAL LETTER U WITH GRAVE + 0xDA: [914,18,722,102,765], // LATIN CAPITAL LETTER U WITH ACUTE + 0xDB: [911,18,722,102,765], // LATIN CAPITAL LETTER U WITH CIRCUMFLEX + 0xDC: [856,18,722,102,765], // LATIN CAPITAL LETTER U WITH DIAERESIS + 0xDD: [914,0,556,78,633], // LATIN CAPITAL LETTER Y WITH ACUTE + 0xDE: [653,0,611,0,569], // LATIN CAPITAL LETTER THORN + 0xDF: [679,207,500,-168,493], // LATIN SMALL LETTER SHARP S + 0xE0: [664,11,501,17,476], // LATIN SMALL LETTER A WITH GRAVE + 0xE1: [664,11,501,17,476], // LATIN SMALL LETTER A WITH ACUTE + 0xE2: [661,11,501,17,497], // LATIN SMALL LETTER A WITH CIRCUMFLEX + 0xE3: [624,11,501,17,521], // LATIN SMALL LETTER A WITH TILDE + 0xE4: [606,11,501,17,503], // LATIN SMALL LETTER A WITH DIAERESIS + 0xE5: [709,11,501,17,476], // LATIN SMALL LETTER A WITH RING ABOVE + 0xE6: [441,11,667,23,640], // LATIN SMALL LETTER AE + 0xE7: [441,217,444,26,425], // LATIN SMALL LETTER C WITH CEDILLA + 0xE8: [664,11,444,31,414], // LATIN SMALL LETTER E WITH GRAVE + 0xE9: [664,11,444,31,431], // LATIN SMALL LETTER E WITH ACUTE + 0xEA: [661,11,444,31,466], // LATIN SMALL LETTER E WITH CIRCUMFLEX + 0xEB: [606,11,444,31,475], // LATIN SMALL LETTER E WITH DIAERESIS + 0xEC: [664,11,278,47,302], // LATIN SMALL LETTER I WITH GRAVE + 0xED: [664,11,278,47,318], // LATIN SMALL LETTER I WITH ACUTE + 0xEE: [661,11,278,47,351], // LATIN SMALL LETTER I WITH CIRCUMFLEX + 0xEF: [606,11,278,47,361], // LATIN SMALL LETTER I WITH DIAERESIS + 0xF0: [683,11,500,27,482], // LATIN SMALL LETTER ETH + 0xF1: [624,9,500,14,488], // LATIN SMALL LETTER N WITH TILDE + 0xF2: [664,11,500,27,468], // LATIN SMALL LETTER O WITH GRAVE + 0xF3: [664,11,500,27,468], // LATIN SMALL LETTER O WITH ACUTE + 0xF4: [661,11,500,27,468], // LATIN SMALL LETTER O WITH CIRCUMFLEX + 0xF5: [624,11,500,27,494], // LATIN SMALL LETTER O WITH TILDE + 0xF6: [606,11,500,27,474], // LATIN SMALL LETTER O WITH DIAERESIS + 0xF7: [517,11,675,86,590], // DIVISION SIGN + 0xF8: [554,135,500,28,469], // LATIN SMALL LETTER O WITH STROKE + 0xF9: [664,11,500,42,475], // LATIN SMALL LETTER U WITH GRAVE + 0xFA: [664,11,500,42,475], // LATIN SMALL LETTER U WITH ACUTE + 0xFB: [661,11,500,42,475], // LATIN SMALL LETTER U WITH CIRCUMFLEX + 0xFC: [606,11,500,42,475], // LATIN SMALL LETTER U WITH DIAERESIS + 0xFD: [664,206,444,-24,426], // LATIN SMALL LETTER Y WITH ACUTE + 0xFE: [683,205,500,-75,469], // LATIN SMALL LETTER THORN + 0xFF: [606,206,444,-24,442] // LATIN SMALL LETTER Y WITH DIAERESIS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/Latin1Supplement.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js new file mode 100644 index 0000000..eac13b6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js @@ -0,0 +1,154 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x100: [757,0,611,-51,564], // LATIN CAPITAL LETTER A WITH MACRON + 0x101: [543,11,501,17,481], // LATIN SMALL LETTER A WITH MACRON + 0x102: [862,0,611,-51,564], // LATIN CAPITAL LETTER A WITH BREVE + 0x103: [650,11,501,17,481], // LATIN SMALL LETTER A WITH BREVE + 0x104: [668,169,611,-51,626], // LATIN CAPITAL LETTER A WITH OGONEK + 0x105: [441,169,501,17,529], // LATIN SMALL LETTER A WITH OGONEK + 0x106: [876,18,667,66,689], // LATIN CAPITAL LETTER C WITH ACUTE + 0x107: [664,11,444,30,431], // LATIN SMALL LETTER C WITH ACUTE + 0x108: [875,18,667,66,689], // LATIN CAPITAL LETTER C WITH CIRCUMFLEX + 0x109: [661,11,444,30,427], // LATIN SMALL LETTER C WITH CIRCUMFLEX + 0x10A: [818,18,667,66,689], // LATIN CAPITAL LETTER C WITH DOT ABOVE + 0x10B: [606,11,444,30,425], // LATIN SMALL LETTER C WITH DOT ABOVE + 0x10C: [875,18,667,66,689], // LATIN CAPITAL LETTER C WITH CARON + 0x10D: [661,11,444,30,473], // LATIN SMALL LETTER C WITH CARON + 0x10E: [875,0,722,-8,700], // LATIN CAPITAL LETTER D WITH CARON + 0x10F: [691,13,609,15,697], // LATIN SMALL LETTER D WITH CARON + 0x110: [653,0,722,-8,700], // LATIN CAPITAL LETTER D WITH STROKE + 0x111: [683,13,500,15,580], // LATIN SMALL LETTER D WITH STROKE + 0x112: [757,0,611,-1,634], // LATIN CAPITAL LETTER E WITH MACRON + 0x113: [542,11,444,31,466], // LATIN SMALL LETTER E WITH MACRON + 0x114: [866,0,611,-1,634], // LATIN CAPITAL LETTER E WITH BREVE + 0x115: [650,11,444,31,471], // LATIN SMALL LETTER E WITH BREVE + 0x116: [818,0,611,-1,634], // LATIN CAPITAL LETTER E WITH DOT ABOVE + 0x117: [606,11,444,31,412], // LATIN SMALL LETTER E WITH DOT ABOVE + 0x118: [653,175,611,-1,634], // LATIN CAPITAL LETTER E WITH OGONEK + 0x119: [441,175,444,31,412], // LATIN SMALL LETTER E WITH OGONEK + 0x11A: [875,0,611,-1,634], // LATIN CAPITAL LETTER E WITH CARON + 0x11B: [661,11,444,31,502], // LATIN SMALL LETTER E WITH CARON + 0x11C: [877,18,722,52,722], // LATIN CAPITAL LETTER G WITH CIRCUMFLEX + 0x11D: [661,206,500,8,471], // LATIN SMALL LETTER G WITH CIRCUMFLEX + 0x11E: [866,18,722,52,722], // LATIN CAPITAL LETTER G WITH BREVE + 0x11F: [650,206,500,8,476], // LATIN SMALL LETTER G WITH BREVE + 0x120: [818,18,722,52,722], // LATIN CAPITAL LETTER G WITH DOT ABOVE + 0x121: [606,206,500,8,471], // LATIN SMALL LETTER G WITH DOT ABOVE + 0x122: [666,267,722,52,722], // LATIN CAPITAL LETTER G WITH CEDILLA + 0x123: [724,206,500,8,471], // LATIN SMALL LETTER G WITH CEDILLA + 0x124: [875,0,722,-8,769], // LATIN CAPITAL LETTER H WITH CIRCUMFLEX + 0x125: [875,9,500,19,478], // LATIN SMALL LETTER H WITH CIRCUMFLEX + 0x126: [653,0,722,-8,769], // LATIN CAPITAL LETTER H WITH STROKE + 0x127: [683,9,500,19,478], // LATIN SMALL LETTER H WITH STROKE + 0x128: [836,0,333,-8,444], // LATIN CAPITAL LETTER I WITH TILDE + 0x129: [624,11,278,30,357], // LATIN SMALL LETTER I WITH TILDE + 0x12A: [757,0,333,-8,439], // LATIN CAPITAL LETTER I WITH MACRON + 0x12B: [543,11,278,29,341], // LATIN SMALL LETTER I WITH MACRON + 0x12C: [866,0,333,-8,448], // LATIN CAPITAL LETTER I WITH BREVE + 0x12D: [650,11,278,46,347], // LATIN SMALL LETTER I WITH BREVE + 0x12E: [653,169,333,-8,384], // LATIN CAPITAL LETTER I WITH OGONEK + 0x12F: [654,169,278,49,303], // LATIN SMALL LETTER I WITH OGONEK + 0x130: [818,0,333,-8,384], // LATIN CAPITAL LETTER I WITH DOT ABOVE + 0x132: [653,18,750,-8,783], // LATIN CAPITAL LIGATURE IJ + 0x133: [654,207,500,49,500], // LATIN SMALL LIGATURE IJ + 0x134: [877,18,444,-6,536], // LATIN CAPITAL LETTER J WITH CIRCUMFLEX + 0x135: [661,207,278,-124,353], // LATIN SMALL LETTER J WITH CIRCUMFLEX + 0x136: [653,267,667,7,722], // LATIN CAPITAL LETTER K WITH CEDILLA + 0x137: [683,267,444,14,461], // LATIN SMALL LETTER K WITH CEDILLA + 0x138: [459,0,542,5,601], // LATIN SMALL LETTER KRA + 0x139: [876,0,556,-8,559], // LATIN CAPITAL LETTER L WITH ACUTE + 0x13A: [876,11,278,41,348], // LATIN SMALL LETTER L WITH ACUTE + 0x13B: [653,267,556,-8,559], // LATIN CAPITAL LETTER L WITH CEDILLA + 0x13C: [683,267,278,7,279], // LATIN SMALL LETTER L WITH CEDILLA + 0x13D: [666,0,556,-8,595], // LATIN CAPITAL LETTER L WITH CARON + 0x13E: [693,11,278,41,448], // LATIN SMALL LETTER L WITH CARON + 0x13F: [653,0,556,-8,559], // LATIN CAPITAL LETTER L WITH MIDDLE DOT + 0x140: [683,11,323,41,386], // LATIN SMALL LETTER L WITH MIDDLE DOT + 0x141: [653,0,556,-8,559], // LATIN CAPITAL LETTER L WITH STROKE + 0x142: [683,11,278,37,307], // LATIN SMALL LETTER L WITH STROKE + 0x143: [876,15,667,-20,727], // LATIN CAPITAL LETTER N WITH ACUTE + 0x144: [664,9,500,14,474], // LATIN SMALL LETTER N WITH ACUTE + 0x145: [653,267,667,-20,727], // LATIN CAPITAL LETTER N WITH CEDILLA + 0x146: [441,267,500,14,474], // LATIN SMALL LETTER N WITH CEDILLA + 0x147: [875,15,667,-20,727], // LATIN CAPITAL LETTER N WITH CARON + 0x148: [661,9,500,14,475], // LATIN SMALL LETTER N WITH CARON + 0x149: [691,9,577,58,540], // LATIN SMALL LETTER N PRECEDED BY APOSTROPHE + 0x14A: [666,18,722,-8,700], // LATIN CAPITAL LETTER ENG + 0x14B: [441,208,500,14,442], // LATIN SMALL LETTER ENG + 0x14C: [757,18,722,60,699], // LATIN CAPITAL LETTER O WITH MACRON + 0x14D: [543,11,500,27,511], // LATIN SMALL LETTER O WITH MACRON + 0x14E: [866,18,722,60,709], // LATIN CAPITAL LETTER O WITH BREVE + 0x14F: [650,11,500,27,533], // LATIN SMALL LETTER O WITH BREVE + 0x150: [876,18,722,60,720], // LATIN CAPITAL LETTER O WITH DOUBLE ACUTE + 0x151: [664,11,500,27,541], // LATIN SMALL LETTER O WITH DOUBLE ACUTE + 0x152: [666,8,944,49,964], // LATIN CAPITAL LIGATURE OE + 0x153: [441,12,667,20,646], // LATIN SMALL LIGATURE OE + 0x154: [876,0,611,-13,588], // LATIN CAPITAL LETTER R WITH ACUTE + 0x155: [664,0,389,45,412], // LATIN SMALL LETTER R WITH ACUTE + 0x156: [653,267,611,-13,588], // LATIN CAPITAL LETTER R WITH CEDILLA + 0x157: [441,267,389,-2,412], // LATIN SMALL LETTER R WITH CEDILLA + 0x158: [875,0,611,-13,588], // LATIN CAPITAL LETTER R WITH CARON + 0x159: [663,0,389,45,426], // LATIN SMALL LETTER R WITH CARON + 0x15A: [876,18,500,17,508], // LATIN CAPITAL LETTER S WITH ACUTE + 0x15B: [664,13,389,16,403], // LATIN SMALL LETTER S WITH ACUTE + 0x15C: [877,18,500,17,508], // LATIN CAPITAL LETTER S WITH CIRCUMFLEX + 0x15D: [661,13,389,16,385], // LATIN SMALL LETTER S WITH CIRCUMFLEX + 0x15E: [667,217,500,17,508], // LATIN CAPITAL LETTER S WITH CEDILLA + 0x15F: [442,217,389,16,366], // LATIN SMALL LETTER S WITH CEDILLA + 0x160: [875,18,500,17,532], // LATIN CAPITAL LETTER S WITH CARON + 0x161: [663,13,389,16,426], // LATIN SMALL LETTER S WITH CARON + 0x162: [653,217,556,59,633], // LATIN CAPITAL LETTER T WITH CEDILLA + 0x163: [546,217,278,-38,296], // LATIN SMALL LETTER T WITH CEDILLA + 0x164: [875,0,556,59,633], // LATIN CAPITAL LETTER T WITH CARON + 0x165: [693,11,278,38,453], // LATIN SMALL LETTER T WITH CARON + 0x166: [653,0,556,59,633], // LATIN CAPITAL LETTER T WITH STROKE + 0x167: [546,11,278,28,296], // LATIN SMALL LETTER T WITH STROKE + 0x168: [836,18,722,102,765], // LATIN CAPITAL LETTER U WITH TILDE + 0x169: [624,11,500,42,475], // LATIN SMALL LETTER U WITH TILDE + 0x16A: [757,18,722,102,765], // LATIN CAPITAL LETTER U WITH MACRON + 0x16B: [543,11,500,42,475], // LATIN SMALL LETTER U WITH MACRON + 0x16C: [866,18,722,102,765], // LATIN CAPITAL LETTER U WITH BREVE + 0x16D: [650,11,500,42,480], // LATIN SMALL LETTER U WITH BREVE + 0x16E: [907,18,722,102,765], // LATIN CAPITAL LETTER U WITH RING ABOVE + 0x16F: [691,11,500,42,475], // LATIN SMALL LETTER U WITH RING ABOVE + 0x170: [876,18,722,102,765], // LATIN CAPITAL LETTER U WITH DOUBLE ACUTE + 0x171: [664,11,500,42,511], // LATIN SMALL LETTER U WITH DOUBLE ACUTE + 0x172: [653,169,722,102,765], // LATIN CAPITAL LETTER U WITH OGONEK + 0x173: [441,169,500,42,538], // LATIN SMALL LETTER U WITH OGONEK + 0x174: [877,18,833,71,906], // LATIN CAPITAL LETTER W WITH CIRCUMFLEX + 0x175: [661,18,667,15,648], // LATIN SMALL LETTER W WITH CIRCUMFLEX + 0x176: [877,0,556,78,633], // LATIN CAPITAL LETTER Y WITH CIRCUMFLEX + 0x177: [661,206,444,-24,426], // LATIN SMALL LETTER Y WITH CIRCUMFLEX + 0x178: [818,0,556,78,633], // LATIN CAPITAL LETTER Y WITH DIAERESIS + 0x179: [876,0,556,-6,606], // LATIN CAPITAL LETTER Z WITH ACUTE + 0x17A: [664,81,389,-2,390], // LATIN SMALL LETTER Z WITH ACUTE + 0x17B: [818,0,556,-6,606], // LATIN CAPITAL LETTER Z WITH DOT ABOVE + 0x17C: [606,81,389,-2,380], // LATIN SMALL LETTER Z WITH DOT ABOVE + 0x17D: [875,0,556,-6,606], // LATIN CAPITAL LETTER Z WITH CARON + 0x17E: [663,81,389,-2,426], // LATIN SMALL LETTER Z WITH CARON + 0x17F: [683,0,383,13,513] // LATIN SMALL LETTER LONG S + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js new file mode 100644 index 0000000..cbee551 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedAdditional.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x1E80: [880,18,833,71,906], // LATIN CAPITAL LETTER W WITH GRAVE + 0x1E81: [664,18,667,15,648], // LATIN SMALL LETTER W WITH GRAVE + 0x1E82: [876,18,833,71,906], // LATIN CAPITAL LETTER W WITH ACUTE + 0x1E83: [664,18,667,15,648], // LATIN SMALL LETTER W WITH ACUTE + 0x1E84: [818,18,833,71,906], // LATIN CAPITAL LETTER W WITH DIAERESIS + 0x1E85: [606,18,667,15,648], // LATIN SMALL LETTER W WITH DIAERESIS + 0x1EF2: [880,0,556,78,633], // LATIN CAPITAL LETTER Y WITH GRAVE + 0x1EF3: [664,206,444,-24,426] // LATIN SMALL LETTER Y WITH GRAVE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/LatinExtendedAdditional.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js new file mode 100644 index 0000000..06ecded --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js @@ -0,0 +1,58 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LatinExtendedB.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x180: [683,11,500,23,473], // LATIN SMALL LETTER B WITH STROKE + 0x188: [548,11,500,30,577], // LATIN SMALL LETTER C WITH HOOK + 0x190: [684,6,667,66,671], // LATIN CAPITAL LETTER OPEN E + 0x192: [706,159,472,-62,494], // LATIN SMALL LETTER F WITH HOOK + 0x195: [683,10,672,19,654], // LATIN SMALL LETTER HV + 0x199: [683,11,500,14,490], // LATIN SMALL LETTER K WITH HOOK + 0x19A: [683,11,278,41,279], // LATIN SMALL LETTER L WITH BAR + 0x19B: [668,0,490,30,478], // LATIN SMALL LETTER LAMBDA WITH STROKE + 0x19E: [441,233,500,14,442], // LATIN SMALL LETTER N WITH LONG RIGHT LEG + 0x1A0: [691,18,722,60,783], // LATIN CAPITAL LETTER O WITH HORN + 0x1A1: [467,11,534,27,583], // LATIN SMALL LETTER O WITH HORN + 0x1A5: [669,205,504,-75,472], // LATIN SMALL LETTER P WITH HOOK + 0x1AA: [685,233,340,31,319], // LATIN LETTER REVERSED ESH LOOP + 0x1AB: [546,218,278,-54,296], // LATIN SMALL LETTER T WITH PALATAL HOOK + 0x1AD: [683,11,310,38,452], // LATIN SMALL LETTER T WITH HOOK + 0x1AF: [765,18,754,102,881], // LATIN CAPITAL LETTER U WITH HORN + 0x1B0: [543,11,573,42,607], // LATIN SMALL LETTER U WITH HORN + 0x1BA: [450,234,500,8,462], // LATIN SMALL LETTER EZH WITH TAIL + 0x1BB: [676,0,500,12,500], // LATIN LETTER TWO WITH STROKE + 0x1BE: [539,12,500,47,453], // LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE + 0x1C0: [736,0,170,15,258], // LATIN LETTER DENTAL CLICK + 0x1C1: [736,0,290,15,379], // LATIN LETTER LATERAL CLICK + 0x1C2: [736,0,340,15,429], // LATIN LETTER ALVEOLAR CLICK + 0x1C3: [667,11,333,39,304], // LATIN LETTER RETROFLEX CLICK + 0x1F0: [661,207,278,-124,397], // LATIN SMALL LETTER J WITH CARON + 0x1FA: [950,0,611,-51,564], // LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE + 0x1FB: [860,11,501,17,476], // LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE + 0x1FC: [876,0,889,-27,911], // LATIN CAPITAL LETTER AE WITH ACUTE + 0x1FD: [664,11,667,23,640], // LATIN SMALL LETTER AE WITH ACUTE + 0x1FE: [876,105,722,60,699], // LATIN CAPITAL LETTER O WITH STROKE AND ACUTE + 0x1FF: [664,135,500,28,469] // LATIN SMALL LETTER O WITH STROKE AND ACUTE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/LatinExtendedB.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js new file mode 100644 index 0000000..d2aca04 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js @@ -0,0 +1,56 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/LetterlikeSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x2102: [666,18,702,35,702], // stix-mathematical bold oblique double-struck capital C + 0x2105: [676,14,855,47,808], // CARE OF + 0x210A: [441,219,738,30,678], // SCRIPT SMALL G + 0x210B: [687,15,997,53,991], // SCRIPT CAPITAL H + 0x210D: [653,0,732,17,767], // stix-mathematical bold oblique double-struck capital H + 0x210E: [668,11,513,45,483], // PLANCK CONSTANT + 0x2110: [675,15,897,26,888], // SCRIPT CAPITAL I + 0x2112: [687,15,946,33,931], // SCRIPT CAPITAL L + 0x2115: [653,0,727,25,755], // stix-mathematical bold oblique double-struck capital N + 0x2116: [668,15,1046,19,1031], // NUMERO SIGN + 0x2119: [653,0,687,17,686], // stix-mathematical bold oblique double-struck capital P + 0x211A: [666,71,723,35,713], // stix-mathematical bold oblique double-struck capital Q + 0x211B: [687,15,944,34,876], // SCRIPT CAPITAL R + 0x211D: [653,0,687,17,686], // stix-mathematical bold oblique double-struck capital R + 0x2122: [653,-247,980,30,957], // TRADE MARK SIGN + 0x2124: [653,0,754,7,750], // stix-mathematical bold oblique double-struck capital Z + 0x212C: [687,15,950,34,902], // SCRIPT CAPITAL B + 0x212F: [441,11,627,30,554], // SCRIPT SMALL E + 0x2130: [687,15,750,100,734], // SCRIPT CAPITAL E + 0x2131: [680,0,919,43,907], // SCRIPT CAPITAL F + 0x2133: [674,15,1072,38,1056], // SCRIPT CAPITAL M + 0x2134: [441,11,697,30,680], // SCRIPT SMALL O + 0x213C: [428,12,635,40,630], // DOUBLE-STRUCK SMALL PI + 0x213F: [653,0,750,30,780], // DOUBLE-STRUCK CAPITAL PI + 0x2145: [653,0,713,17,703], // stix-mathematical bold double-struck capital D + 0x2146: [683,11,581,40,634], // stix-mathematical bold double-struck small letter d + 0x2147: [441,11,515,40,485], // stix-mathematical bold double-struck small letter e + 0x2148: [653,0,293,27,346], // stix-mathematical bold double-struck small letter i + 0x2149: [653,217,341,-104,394] // stix-mathematical bold double-struck small letter j + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js new file mode 100644 index 0000000..c2d7517 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js @@ -0,0 +1,192 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'] = { + directory: 'General/Italic', + family: 'STIXGeneral', + style: 'italic', + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x250,0x2AF,"IPAExtensions"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x400,0x4FF,"Cyrillic"], + [0x1E00,0x1EFF,"LatinExtendedAdditional"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x20A0,0x20CF,"CurrencySymbols"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2200,0x22FF,"MathOperators"], + [0x2400,0x243F,"ControlPictures"], + [0x2460,0x24FF,"EnclosedAlphanum"], + [0x2500,0x257F,"BoxDrawing"], + [0xFB00,0xFB4F,"AlphaPresentForms"], + [0x1D434,0x1D467,"MathItalic"], + [0x1D49C,0x1D4CF,"MathScript"], + [0x1D608,0x1D63B,"MathSSItalic"], + [0x1D6A4,0x1D6A5,"ij"], + [0x1D6E2,0x1D71B,"GreekItalic"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [667,11,333,39,304], // EXCLAMATION MARK + 0x22: [666,-421,420,144,432], // QUOTATION MARK + 0x23: [676,0,501,2,540], // NUMBER SIGN + 0x24: [731,89,500,32,497], // DOLLAR SIGN + 0x25: [706,19,755,80,705], // PERCENT SIGN + 0x26: [666,18,778,76,723], // AMPERSAND + 0x27: [666,-421,214,132,241], // APOSTROPHE + 0x28: [669,181,333,42,315], // LEFT PARENTHESIS + 0x29: [669,180,333,16,289], // RIGHT PARENTHESIS + 0x2A: [666,-255,500,128,492], // ASTERISK + 0x2B: [506,0,675,86,590], // PLUS SIGN + 0x2C: [101,129,250,-5,135], // COMMA + 0x2D: [255,-192,333,49,282], // HYPHEN-MINUS + 0x2E: [100,11,250,27,138], // FULL STOP + 0x2F: [666,18,278,-65,386], // SOLIDUS + 0x30: [676,7,500,32,497], // DIGIT ZERO + 0x31: [676,0,500,50,409], // DIGIT ONE + 0x32: [676,0,500,12,452], // DIGIT TWO + 0x33: [676,7,500,16,465], // DIGIT THREE + 0x34: [676,0,500,1,479], // DIGIT FOUR + 0x35: [666,7,500,15,491], // DIGIT FIVE + 0x36: [686,7,500,30,521], // DIGIT SIX + 0x37: [666,8,500,75,537], // DIGIT SEVEN + 0x38: [676,7,500,30,493], // DIGIT EIGHT + 0x39: [676,17,500,23,492], // DIGIT NINE + 0x3A: [441,11,333,50,261], // COLON + 0x3B: [441,129,333,26,261], // SEMICOLON + 0x3C: [516,10,675,84,592], // LESS-THAN SIGN + 0x3D: [386,-120,675,86,590], // EQUALS SIGN + 0x3E: [516,10,675,84,592], // GREATER-THAN SIGN + 0x3F: [664,12,500,132,472], // QUESTION MARK + 0x40: [666,18,920,118,806], // COMMERCIAL AT + 0x41: [668,0,611,-51,564], // LATIN CAPITAL LETTER A + 0x42: [653,0,611,-8,588], // LATIN CAPITAL LETTER B + 0x43: [666,18,667,66,689], // LATIN CAPITAL LETTER C + 0x44: [653,0,722,-8,700], // LATIN CAPITAL LETTER D + 0x45: [653,0,611,-1,634], // LATIN CAPITAL LETTER E + 0x46: [653,0,611,8,645], // LATIN CAPITAL LETTER F + 0x47: [666,18,722,52,722], // LATIN CAPITAL LETTER G + 0x48: [653,0,722,-8,769], // LATIN CAPITAL LETTER H + 0x49: [653,0,333,-8,384], // LATIN CAPITAL LETTER I + 0x4A: [653,18,444,-6,491], // LATIN CAPITAL LETTER J + 0x4B: [653,0,667,7,722], // LATIN CAPITAL LETTER K + 0x4C: [653,0,556,-8,559], // LATIN CAPITAL LETTER L + 0x4D: [653,0,833,-18,872], // LATIN CAPITAL LETTER M + 0x4E: [653,15,667,-20,727], // LATIN CAPITAL LETTER N + 0x4F: [667,18,722,60,699], // LATIN CAPITAL LETTER O + 0x50: [653,0,611,0,605], // LATIN CAPITAL LETTER P + 0x51: [666,182,722,59,699], // LATIN CAPITAL LETTER Q + 0x52: [653,0,611,-13,588], // LATIN CAPITAL LETTER R + 0x53: [667,18,500,17,508], // LATIN CAPITAL LETTER S + 0x54: [653,0,556,59,633], // LATIN CAPITAL LETTER T + 0x55: [653,18,722,102,765], // LATIN CAPITAL LETTER U + 0x56: [653,18,611,76,688], // LATIN CAPITAL LETTER V + 0x57: [653,18,833,71,906], // LATIN CAPITAL LETTER W + 0x58: [653,0,611,-29,655], // LATIN CAPITAL LETTER X + 0x59: [653,0,556,78,633], // LATIN CAPITAL LETTER Y + 0x5A: [653,0,556,-6,606], // LATIN CAPITAL LETTER Z + 0x5B: [663,153,389,21,391], // LEFT SQUARE BRACKET + 0x5C: [666,18,278,-41,319], // REVERSE SOLIDUS + 0x5D: [663,153,389,12,382], // RIGHT SQUARE BRACKET + 0x5E: [666,-301,422,0,422], // CIRCUMFLEX ACCENT + 0x5F: [-75,125,500,0,500], // LOW LINE + 0x60: [664,-492,333,120,311], // GRAVE ACCENT + 0x61: [441,11,501,17,476], // LATIN SMALL LETTER A + 0x62: [683,11,500,23,473], // LATIN SMALL LETTER B + 0x63: [441,11,444,30,425], // LATIN SMALL LETTER C + 0x64: [683,13,500,15,527], // LATIN SMALL LETTER D + 0x65: [441,11,444,31,412], // LATIN SMALL LETTER E + 0x66: [678,207,278,-147,424], // LATIN SMALL LETTER F + 0x67: [441,206,500,8,471], // LATIN SMALL LETTER G + 0x68: [683,9,500,19,478], // LATIN SMALL LETTER H + 0x69: [654,11,278,49,264], // LATIN SMALL LETTER I + 0x6A: [652,207,278,-124,279], // LATIN SMALL LETTER J + 0x6B: [683,11,444,14,461], // LATIN SMALL LETTER K + 0x6C: [683,11,278,41,279], // LATIN SMALL LETTER L + 0x6D: [441,9,722,12,704], // LATIN SMALL LETTER M + 0x6E: [441,9,500,14,474], // LATIN SMALL LETTER N + 0x6F: [441,11,500,27,468], // LATIN SMALL LETTER O + 0x70: [441,205,504,-75,472], // LATIN SMALL LETTER P + 0x71: [441,209,500,25,484], // LATIN SMALL LETTER Q + 0x72: [441,0,389,45,412], // LATIN SMALL LETTER R + 0x73: [442,13,389,16,366], // LATIN SMALL LETTER S + 0x74: [546,11,278,38,296], // LATIN SMALL LETTER T + 0x75: [441,11,500,42,475], // LATIN SMALL LETTER U + 0x76: [441,18,444,20,426], // LATIN SMALL LETTER V + 0x77: [441,18,667,15,648], // LATIN SMALL LETTER W + 0x78: [441,11,444,-27,447], // LATIN SMALL LETTER X + 0x79: [441,206,444,-24,426], // LATIN SMALL LETTER Y + 0x7A: [428,81,389,-2,380], // LATIN SMALL LETTER Z + 0x7B: [687,177,400,51,407], // LEFT CURLY BRACKET + 0x7C: [666,18,275,105,171], // VERTICAL LINE + 0x7D: [687,177,400,-7,349], // RIGHT CURLY BRACKET + 0x7E: [323,-183,541,40,502], // TILDE + 0x131: [441,11,278,47,235], // LATIN SMALL LETTER DOTLESS I + 0x237: [441,207,278,-124,246], // LATIN SMALL LETTER DOTLESS J + 0x393: [653,0,611,8,645], // GREEK CAPITAL LETTER GAMMA + 0x394: [668,0,611,-32,526], // GREEK CAPITAL LETTER DELTA + 0x398: [667,18,722,60,699], // GREEK CAPITAL LETTER THETA + 0x39B: [668,0,611,-51,564], // GREEK CAPITAL LETTER LAMDA + 0x39E: [653,0,651,-6,680], // GREEK CAPITAL LETTER XI + 0x3A0: [653,0,722,-8,769], // GREEK CAPITAL LETTER PI + 0x3A3: [653,0,620,-6,659], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [668,0,556,78,648], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [653,0,741,50,731], // GREEK CAPITAL LETTER PHI + 0x3A8: [667,0,675,77,778], // GREEK CAPITAL LETTER PSI + 0x3A9: [666,0,762,-6,739], // GREEK CAPITAL LETTER OMEGA + 0x3B1: [441,11,552,27,549], // GREEK SMALL LETTER ALPHA + 0x3B2: [678,205,506,-40,514], // GREEK SMALL LETTER BETA + 0x3B3: [435,206,410,19,438], // GREEK SMALL LETTER GAMMA + 0x3B4: [668,11,460,24,460], // GREEK SMALL LETTER DELTA + 0x3B5: [441,11,444,30,425], // GREEK SMALL LETTER EPSILON + 0x3B6: [683,185,454,30,475], // GREEK SMALL LETTER ZETA + 0x3B7: [441,205,474,14,442], // GREEK SMALL LETTER ETA + 0x3B8: [678,11,480,27,494], // GREEK SMALL LETTER THETA + 0x3B9: [441,11,278,49,235], // GREEK SMALL LETTER IOTA + 0x3BA: [441,13,444,14,465], // GREEK SMALL LETTER KAPPA + 0x3BB: [678,16,458,-12,431], // GREEK SMALL LETTER LAMDA + 0x3BC: [428,205,526,-33,483], // GREEK SMALL LETTER MU + 0x3BD: [441,18,470,20,459], // GREEK SMALL LETTER NU + 0x3BE: [683,185,454,30,446], // GREEK SMALL LETTER XI + 0x3BF: [441,11,500,27,468], // GREEK SMALL LETTER OMICRON + 0x3C0: [428,18,504,19,536], // GREEK SMALL LETTER PI + 0x3C1: [441,205,504,-40,471], // GREEK SMALL LETTER RHO + 0x3C2: [441,185,454,30,453], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [428,11,498,27,531], // GREEK SMALL LETTER SIGMA + 0x3C4: [428,11,410,12,426], // GREEK SMALL LETTER TAU + 0x3C5: [441,10,478,19,446], // GREEK SMALL LETTER UPSILON + 0x3C6: [441,205,622,27,590], // GREEK SMALL LETTER PHI + 0x3C7: [441,207,457,-108,498], // GREEK SMALL LETTER CHI + 0x3C8: [441,205,584,15,668], // GREEK SMALL LETTER PSI + 0x3C9: [439,11,686,27,654], // GREEK SMALL LETTER OMEGA + 0x3D1: [678,10,556,19,526], // GREEK THETA SYMBOL + 0x3D5: [683,205,627,27,595], // GREEK PHI SYMBOL + 0x3D6: [428,11,792,17,832], // GREEK PI SYMBOL + 0x3F1: [441,205,516,27,484], // GREEK RHO SYMBOL + 0x3F5: [441,11,444,30,420], // GREEK LUNATE EPSILON SYMBOL + 0x2113: [687,11,579,48,571] // SCRIPT SMALL L +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXGeneral-italic"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js new file mode 100644 index 0000000..4f1db77 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x1D434: [667,0,717,35,685], // MATHEMATICAL ITALIC CAPITAL A + 0x1D435: [653,0,696,38,686], // MATHEMATICAL ITALIC CAPITAL B + 0x1D436: [659,12,671,50,711], // MATHEMATICAL ITALIC CAPITAL C + 0x1D437: [653,0,790,38,765], // MATHEMATICAL ITALIC CAPITAL D + 0x1D438: [653,0,714,38,734], // MATHEMATICAL ITALIC CAPITAL E + 0x1D439: [653,0,618,38,723], // MATHEMATICAL ITALIC CAPITAL F + 0x1D43A: [668,12,734,50,734], // MATHEMATICAL ITALIC CAPITAL G + 0x1D43B: [653,0,873,38,923], // MATHEMATICAL ITALIC CAPITAL H + 0x1D43C: [653,0,480,38,530], // MATHEMATICAL ITALIC CAPITAL I + 0x1D43D: [653,12,540,60,620], // MATHEMATICAL ITALIC CAPITAL J + 0x1D43E: [653,0,762,38,802], // MATHEMATICAL ITALIC CAPITAL K + 0x1D43F: [653,0,708,38,668], // MATHEMATICAL ITALIC CAPITAL L + 0x1D440: [653,0,1005,38,1055], // MATHEMATICAL ITALIC CAPITAL M + 0x1D441: [653,0,851,38,901], // MATHEMATICAL ITALIC CAPITAL N + 0x1D442: [669,11,732,50,712], // MATHEMATICAL ITALIC CAPITAL O + 0x1D443: [653,0,594,38,704], // MATHEMATICAL ITALIC CAPITAL P + 0x1D444: [667,152,781,50,731], // MATHEMATICAL ITALIC CAPITAL Q + 0x1D445: [653,0,740,38,725], // MATHEMATICAL ITALIC CAPITAL R + 0x1D446: [668,10,650,50,680], // MATHEMATICAL ITALIC CAPITAL S + 0x1D447: [653,0,550,25,670], // MATHEMATICAL ITALIC CAPITAL T + 0x1D448: [653,13,705,65,775], // MATHEMATICAL ITALIC CAPITAL U + 0x1D449: [653,16,575,60,760], // MATHEMATICAL ITALIC CAPITAL V + 0x1D44A: [653,16,916,60,1101], // MATHEMATICAL ITALIC CAPITAL W + 0x1D44B: [653,0,790,25,810], // MATHEMATICAL ITALIC CAPITAL X + 0x1D44C: [653,0,535,35,695], // MATHEMATICAL ITALIC CAPITAL Y + 0x1D44D: [653,0,772,60,802], // MATHEMATICAL ITALIC CAPITAL Z + 0x1D44E: [441,10,502,40,472], // MATHEMATICAL ITALIC SMALL A + 0x1D44F: [668,11,470,45,450], // MATHEMATICAL ITALIC SMALL B + 0x1D450: [441,11,415,40,400], // MATHEMATICAL ITALIC SMALL C + 0x1D451: [668,12,532,40,527], // MATHEMATICAL ITALIC SMALL D + 0x1D452: [441,11,445,40,410], // MATHEMATICAL ITALIC SMALL E + 0x1D453: [668,187,555,40,615], // MATHEMATICAL ITALIC SMALL F + 0x1D454: [441,187,492,20,492], // MATHEMATICAL ITALIC SMALL G + 0x1D456: [616,11,311,50,257], // MATHEMATICAL ITALIC SMALL I + 0x1D457: [616,187,389,-16,372], // MATHEMATICAL ITALIC SMALL J + 0x1D458: [668,11,542,45,527], // MATHEMATICAL ITALIC SMALL K + 0x1D459: [668,10,318,45,278], // MATHEMATICAL ITALIC SMALL L + 0x1D45A: [441,8,710,30,680], // MATHEMATICAL ITALIC SMALL M + 0x1D45B: [441,8,497,30,467], // MATHEMATICAL ITALIC SMALL N + 0x1D45C: [441,11,458,40,438], // MATHEMATICAL ITALIC SMALL O + 0x1D45D: [441,183,489,-30,474], // MATHEMATICAL ITALIC SMALL P + 0x1D45E: [441,183,458,40,463], // MATHEMATICAL ITALIC SMALL Q + 0x1D45F: [441,0,408,30,393], // MATHEMATICAL ITALIC SMALL R + 0x1D460: [441,11,440,50,390], // MATHEMATICAL ITALIC SMALL S + 0x1D461: [567,9,313,40,283], // MATHEMATICAL ITALIC SMALL T + 0x1D462: [441,9,474,30,444], // MATHEMATICAL ITALIC SMALL U + 0x1D463: [458,9,506,72,479], // MATHEMATICAL ITALIC SMALL V + 0x1D464: [460,9,775,72,748], // MATHEMATICAL ITALIC SMALL W + 0x1D465: [441,9,550,30,510], // MATHEMATICAL ITALIC SMALL X + 0x1D466: [440,183,496,30,496], // MATHEMATICAL ITALIC SMALL Y + 0x1D467: [450,14,499,42,467] // MATHEMATICAL ITALIC SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/MathItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js new file mode 100644 index 0000000..c579b97 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x2202: [668,11,471,40,471], // PARTIAL DIFFERENTIAL + 0x2212: [286,-220,675,86,590] // MINUS SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js new file mode 100644 index 0000000..c3a1a1f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathSSItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x1D608: [674,0,666,31,635], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL A + 0x1D609: [662,0,604,74,641], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL B + 0x1D60A: [676,14,671,96,755], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL C + 0x1D60B: [662,0,692,74,751], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL D + 0x1D60C: [662,0,583,74,678], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL E + 0x1D60D: [662,0,535,74,679], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL F + 0x1D60E: [676,14,695,97,755], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL G + 0x1D60F: [662,0,658,74,749], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL H + 0x1D610: [662,0,401,59,512], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL I + 0x1D611: [662,14,398,22,470], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL J + 0x1D612: [662,0,634,74,729], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL K + 0x1D613: [662,0,559,74,564], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL L + 0x1D614: [662,0,843,75,933], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL M + 0x1D615: [662,14,675,74,766], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL N + 0x1D616: [676,14,714,99,779], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL O + 0x1D617: [662,0,525,74,638], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL P + 0x1D618: [676,175,716,99,779], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL Q + 0x1D619: [662,0,589,74,639], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL R + 0x1D61A: [676,14,541,62,597], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL S + 0x1D61B: [662,0,608,161,748], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL T + 0x1D61C: [662,14,661,117,757], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL U + 0x1D61D: [662,11,654,196,788], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL V + 0x1D61E: [662,11,921,194,1057], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL W + 0x1D61F: [662,0,700,31,806], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL X + 0x1D620: [662,0,630,186,774], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL Y + 0x1D621: [662,0,637,28,763], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z + 0x1D622: [463,10,448,55,467], // MATHEMATICAL SANS-SERIF ITALIC SMALL A + 0x1D623: [684,10,496,74,535], // MATHEMATICAL SANS-SERIF ITALIC SMALL B + 0x1D624: [463,10,456,67,503], // MATHEMATICAL SANS-SERIF ITALIC SMALL C + 0x1D625: [684,11,494,72,600], // MATHEMATICAL SANS-SERIF ITALIC SMALL D + 0x1D626: [463,10,444,69,487], // MATHEMATICAL SANS-SERIF ITALIC SMALL E + 0x1D627: [683,0,336,101,526], // MATHEMATICAL SANS-SERIF ITALIC SMALL F + 0x1D628: [463,216,496,-7,575], // MATHEMATICAL SANS-SERIF ITALIC SMALL G + 0x1D629: [684,0,487,63,510], // MATHEMATICAL SANS-SERIF ITALIC SMALL H + 0x1D62A: [679,0,220,69,325], // MATHEMATICAL SANS-SERIF ITALIC SMALL I + 0x1D62B: [679,216,254,-118,354], // MATHEMATICAL SANS-SERIF ITALIC SMALL J + 0x1D62C: [684,0,453,63,556], // MATHEMATICAL SANS-SERIF ITALIC SMALL K + 0x1D62D: [684,0,205,61,313], // MATHEMATICAL SANS-SERIF ITALIC SMALL L + 0x1D62E: [464,0,756,65,775], // MATHEMATICAL SANS-SERIF ITALIC SMALL M + 0x1D62F: [464,0,487,63,510], // MATHEMATICAL SANS-SERIF ITALIC SMALL N + 0x1D630: [463,10,499,76,536], // MATHEMATICAL SANS-SERIF ITALIC SMALL O + 0x1D631: [464,216,498,14,538], // MATHEMATICAL SANS-SERIF ITALIC SMALL P + 0x1D632: [464,216,498,72,549], // MATHEMATICAL SANS-SERIF ITALIC SMALL Q + 0x1D633: [464,0,336,63,439], // MATHEMATICAL SANS-SERIF ITALIC SMALL R + 0x1D634: [463,10,389,61,432], // MATHEMATICAL SANS-SERIF ITALIC SMALL S + 0x1D635: [580,10,291,96,376], // MATHEMATICAL SANS-SERIF ITALIC SMALL T + 0x1D636: [453,11,491,89,536], // MATHEMATICAL SANS-SERIF ITALIC SMALL U + 0x1D637: [453,14,474,143,555], // MATHEMATICAL SANS-SERIF ITALIC SMALL V + 0x1D638: [453,14,702,140,787], // MATHEMATICAL SANS-SERIF ITALIC SMALL W + 0x1D639: [453,0,482,30,544], // MATHEMATICAL SANS-SERIF ITALIC SMALL X + 0x1D63A: [453,216,484,-19,565], // MATHEMATICAL SANS-SERIF ITALIC SMALL Y + 0x1D63B: [453,0,447,25,517] // MATHEMATICAL SANS-SERIF ITALIC SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/MathSSItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js new file mode 100644 index 0000000..5945776 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js @@ -0,0 +1,68 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x1D49C: [674,15,855,31,846], // MATHEMATICAL SCRIPT CAPITAL A + 0x1D49E: [687,15,797,37,781], // MATHEMATICAL SCRIPT CAPITAL C + 0x1D49F: [687,15,885,36,818], // MATHEMATICAL SCRIPT CAPITAL D + 0x1D4A2: [687,15,773,83,740], // MATHEMATICAL SCRIPT CAPITAL G + 0x1D4A5: [674,177,802,9,792], // MATHEMATICAL SCRIPT CAPITAL J + 0x1D4A6: [687,15,1009,40,1004], // MATHEMATICAL SCRIPT CAPITAL K + 0x1D4A9: [687,15,970,38,956], // MATHEMATICAL SCRIPT CAPITAL N + 0x1D4AA: [680,15,692,82,663], // MATHEMATICAL SCRIPT CAPITAL O + 0x1D4AB: [687,15,910,38,886], // MATHEMATICAL SCRIPT CAPITAL P + 0x1D4AC: [680,38,692,82,663], // MATHEMATICAL SCRIPT CAPITAL Q + 0x1D4AE: [680,15,743,67,701], // MATHEMATICAL SCRIPT CAPITAL S + 0x1D4AF: [687,15,912,43,907], // MATHEMATICAL SCRIPT CAPITAL T + 0x1D4B0: [687,15,842,36,805], // MATHEMATICAL SCRIPT CAPITAL U + 0x1D4B1: [687,15,932,35,922], // MATHEMATICAL SCRIPT CAPITAL V + 0x1D4B2: [687,15,1078,35,1070], // MATHEMATICAL SCRIPT CAPITAL W + 0x1D4B3: [687,15,891,36,873], // MATHEMATICAL SCRIPT CAPITAL X + 0x1D4B4: [687,226,926,91,916], // MATHEMATICAL SCRIPT CAPITAL Y + 0x1D4B5: [687,15,932,59,912], // MATHEMATICAL SCRIPT CAPITAL Z + 0x1D4B6: [441,11,819,30,758], // MATHEMATICAL SCRIPT SMALL A + 0x1D4B7: [687,12,580,47,559], // MATHEMATICAL SCRIPT SMALL B + 0x1D4B8: [441,11,662,30,589], // MATHEMATICAL SCRIPT SMALL C + 0x1D4B9: [687,11,845,30,827], // MATHEMATICAL SCRIPT SMALL D + 0x1D4BB: [687,209,685,27,673], // MATHEMATICAL SCRIPT SMALL F + 0x1D4BD: [687,11,753,38,690], // MATHEMATICAL SCRIPT SMALL H + 0x1D4BE: [653,11,496,83,484], // MATHEMATICAL SCRIPT SMALL I + 0x1D4BF: [653,219,730,9,718], // MATHEMATICAL SCRIPT SMALL J + 0x1D4C0: [687,11,726,40,666], // MATHEMATICAL SCRIPT SMALL K + 0x1D4C1: [687,11,579,48,571], // MATHEMATICAL SCRIPT SMALL L + 0x1D4C2: [441,11,1038,49,978], // MATHEMATICAL SCRIPT SMALL M + 0x1D4C3: [441,11,761,49,701], // MATHEMATICAL SCRIPT SMALL N + 0x1D4C5: [441,209,773,23,694], // MATHEMATICAL SCRIPT SMALL P + 0x1D4C6: [441,209,780,30,743], // MATHEMATICAL SCRIPT SMALL Q + 0x1D4C7: [444,0,580,48,572], // MATHEMATICAL SCRIPT SMALL R + 0x1D4C8: [531,11,515,62,412], // MATHEMATICAL SCRIPT SMALL S + 0x1D4C9: [658,11,551,30,532], // MATHEMATICAL SCRIPT SMALL T + 0x1D4CA: [424,11,753,30,693], // MATHEMATICAL SCRIPT SMALL U + 0x1D4CB: [441,11,618,30,582], // MATHEMATICAL SCRIPT SMALL V + 0x1D4CC: [441,11,888,30,852], // MATHEMATICAL SCRIPT SMALL W + 0x1D4CD: [441,11,752,65,675], // MATHEMATICAL SCRIPT SMALL X + 0x1D4CE: [424,219,658,30,617], // MATHEMATICAL SCRIPT SMALL Y + 0x1D4CF: [478,11,691,52,617] // MATHEMATICAL SCRIPT SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/MathScript.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js new file mode 100644 index 0000000..589023d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/SpacingModLetters.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x2B0: [838,-326,378,7,391], // MODIFIER LETTER SMALL H + 0x2B1: [838,-326,378,7,414], // MODIFIER LETTER SMALL H WITH HOOK + 0x2B2: [851,-199,300,44,350], // MODIFIER LETTER SMALL J + 0x2B3: [690,-345,320,2,320], // MODIFIER LETTER SMALL R + 0x2B4: [690,-345,320,0,318], // MODIFIER LETTER SMALL TURNED R + 0x2B5: [690,-163,320,0,335], // MODIFIER LETTER SMALL TURNED R WITH HOOK + 0x2B6: [684,-345,390,6,462], // MODIFIER LETTER SMALL CAPITAL INVERTED R + 0x2B7: [690,-327,500,15,515], // MODIFIER LETTER SMALL W + 0x2B8: [693,-202,330,16,357], // MODIFIER LETTER SMALL Y + 0x2BB: [686,-443,333,79,236], // MODIFIER LETTER TURNED COMMA + 0x2C0: [690,-295,326,30,307], // MODIFIER LETTER GLOTTAL STOP + 0x2C1: [690,-295,326,23,343], // MODIFIER LETTER REVERSED GLOTTAL STOP + 0x2C6: [661,-492,333,91,385], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [661,-492,333,121,426], // CARON + 0x2D8: [650,-492,333,117,418], // BREVE + 0x2D9: [606,-508,333,207,305], // DOT ABOVE + 0x2DA: [707,-508,333,155,355], // RING ABOVE + 0x2DB: [40,169,333,-20,200], // OGONEK + 0x2DC: [624,-517,333,100,427], // SMALL TILDE + 0x2DD: [664,-494,333,93,486], // DOUBLE ACUTE ACCENT + 0x2E0: [684,-218,315,23,335], // MODIFIER LETTER SMALL GAMMA + 0x2E1: [837,-333,220,41,214], // MODIFIER LETTER SMALL L + 0x2E2: [691,-335,300,16,290], // MODIFIER LETTER SMALL S + 0x2E3: [691,-333,380,4,379], // MODIFIER LETTER SMALL X + 0x2E4: [847,-333,318,8,345], // MODIFIER LETTER SMALL REVERSED GLOTTAL STOP + 0x2EC: [70,147,320,15,305], // MODIFIER LETTER VOICING + 0x2ED: [665,-507,405,10,395], // MODIFIER LETTER UNASPIRATED + 0x2F7: [-113,220,333,-94,233] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js new file mode 100644 index 0000000..c2128b5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], + { + 0x1D6A4: [441,11,278,47,235], // MATHEMATICAL ITALIC SMALL DOTLESS I + 0x1D6A5: [441,207,278,-124,246] // MATHEMATICAL ITALIC SMALL DOTLESS J + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/ij.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js new file mode 100644 index 0000000..0f5443f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0xFB00: [683,0,605,20,655], // LATIN SMALL LIGATURE FF + 0xFB01: [683,0,558,32,523], // LATIN SMALL LIGATURE FI + 0xFB02: [683,0,556,31,522], // LATIN SMALL LIGATURE FL + 0xFB03: [683,0,832,20,797], // LATIN SMALL LIGATURE FFI + 0xFB04: [683,0,830,20,796] // LATIN SMALL LIGATURE FFL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/AlphaPresentForms.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js new file mode 100644 index 0000000..7c635fd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js @@ -0,0 +1,106 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x219A: [450,-58,926,60,866], // LEFTWARDS ARROW WITH STROKE + 0x219B: [450,-58,926,60,866], // RIGHTWARDS ARROW WITH STROKE + 0x219C: [411,-102,926,70,856], // LEFTWARDS WAVE ARROW + 0x219D: [411,-102,926,70,856], // RIGHTWARDS WAVE ARROW + 0x219E: [449,-58,926,70,856], // LEFTWARDS TWO HEADED ARROW + 0x219F: [662,154,511,60,451], // UPWARDS TWO HEADED ARROW + 0x21A0: [449,-58,926,70,856], // RIGHTWARDS TWO HEADED ARROW + 0x21A1: [662,154,511,60,451], // DOWNWARDS TWO HEADED ARROW + 0x21A2: [449,-58,926,70,856], // LEFTWARDS ARROW WITH TAIL + 0x21A3: [449,-58,926,70,856], // RIGHTWARDS ARROW WITH TAIL + 0x21A4: [450,-57,926,70,857], // LEFTWARDS ARROW FROM BAR + 0x21A5: [662,154,511,60,451], // UPWARDS ARROW FROM BAR + 0x21A7: [662,154,511,59,451], // DOWNWARDS ARROW FROM BAR + 0x21A8: [662,154,511,59,451], // UP DOWN ARROW WITH BASE + 0x21AB: [553,0,926,70,856], // LEFTWARDS ARROW WITH LOOP + 0x21AC: [553,0,926,70,856], // RIGHTWARDS ARROW WITH LOOP + 0x21AD: [449,-58,1200,49,1151], // LEFT RIGHT WAVE ARROW + 0x21AE: [450,-58,926,38,888], // LEFT RIGHT ARROW WITH STROKE + 0x21AF: [662,154,511,60,451], // DOWNWARDS ZIGZAG ARROW + 0x21B0: [662,156,463,30,424], // UPWARDS ARROW WITH TIP LEFTWARDS + 0x21B1: [662,156,463,39,433], // UPWARDS ARROW WITH TIP RIGHTWARDS + 0x21B2: [662,154,463,25,419], // DOWNWARDS ARROW WITH TIP LEFTWARDS + 0x21B3: [662,154,463,39,433], // DOWNWARDS ARROW WITH TIP RIGHTWARDS + 0x21B4: [662,154,926,70,856], // RIGHTWARDS ARROW WITH CORNER DOWNWARDS + 0x21B5: [662,156,926,70,856], // DOWNWARDS ARROW WITH CORNER LEFTWARDS + 0x21B6: [534,0,926,44,882], // ANTICLOCKWISE TOP SEMICIRCLE ARROW + 0x21B7: [534,0,926,44,882], // CLOCKWISE TOP SEMICIRCLE ARROW + 0x21B8: [732,156,926,55,872], // NORTH WEST ARROW TO LONG BAR + 0x21B9: [598,92,926,60,866], // LEFTWARDS ARROW TO BAR OVER RIGHTWARDS ARROW TO BAR + 0x21BA: [686,116,974,116,858], // ANTICLOCKWISE OPEN CIRCLE ARROW + 0x21BB: [686,116,974,116,858], // CLOCKWISE OPEN CIRCLE ARROW + 0x21BE: [662,156,511,222,441], // UPWARDS HARPOON WITH BARB RIGHTWARDS + 0x21BF: [662,156,511,69,288], // UPWARDS HARPOON WITH BARB LEFTWARDS + 0x21C2: [662,156,511,222,441], // DOWNWARDS HARPOON WITH BARB RIGHTWARDS + 0x21C3: [662,156,511,69,288], // DOWNWARDS HARPOON WITH BARB LEFTWARDS + 0x21C4: [598,92,926,71,856], // RIGHTWARDS ARROW OVER LEFTWARDS ARROW + 0x21C5: [662,156,773,31,742], // UPWARDS ARROW LEFTWARDS OF DOWNWARDS ARROW + 0x21C6: [598,92,926,71,856], // LEFTWARDS ARROW OVER RIGHTWARDS ARROW + 0x21C7: [599,92,926,70,856], // LEFTWARDS PAIRED ARROWS + 0x21C8: [662,156,773,41,732], // UPWARDS PAIRED ARROWS + 0x21C9: [599,92,926,70,856], // RIGHTWARDS PAIRED ARROWS + 0x21CA: [662,156,773,41,732], // DOWNWARDS PAIRED ARROWS + 0x21CB: [539,33,926,70,856], // LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON + 0x21CD: [551,45,926,60,866], // LEFTWARDS DOUBLE ARROW WITH STROKE + 0x21CE: [517,10,926,20,906], // LEFT RIGHT DOUBLE ARROW WITH STROKE + 0x21CF: [551,45,926,60,866], // RIGHTWARDS DOUBLE ARROW WITH STROKE + 0x21D6: [662,156,926,55,874], // NORTH WEST DOUBLE ARROW + 0x21D7: [662,156,926,55,874], // NORTH EAST DOUBLE ARROW + 0x21D8: [662,156,926,55,874], // SOUTH EAST DOUBLE ARROW + 0x21D9: [662,156,926,55,874], // SOUTH WEST DOUBLE ARROW + 0x21DA: [644,139,926,46,852], // LEFTWARDS TRIPLE ARROW + 0x21DB: [645,138,926,74,880], // RIGHTWARDS TRIPLE ARROW + 0x21DC: [449,-58,926,60,866], // LEFTWARDS SQUIGGLE ARROW + 0x21DD: [449,-58,926,60,866], // RIGHTWARDS SQUIGGLE ARROW + 0x21DE: [662,156,511,60,451], // UPWARDS ARROW WITH DOUBLE STROKE + 0x21DF: [662,156,511,60,451], // DOWNWARDS ARROW WITH DOUBLE STROKE + 0x21E0: [449,-58,926,60,866], // LEFTWARDS DASHED ARROW + 0x21E1: [662,156,511,60,451], // UPWARDS DASHED ARROW + 0x21E2: [449,-58,926,60,866], // RIGHTWARDS DASHED ARROW + 0x21E3: [662,156,511,60,451], // DOWNWARDS DASHED ARROW + 0x21E4: [450,-58,926,60,866], // LEFTWARDS ARROW TO BAR + 0x21E5: [450,-58,926,60,866], // RIGHTWARDS ARROW TO BAR + 0x21E6: [551,45,926,60,866], // LEFTWARDS WHITE ARROW + 0x21E7: [662,156,685,45,641], // UPWARDS WHITE ARROW + 0x21E8: [551,45,926,60,866], // RIGHTWARDS WHITE ARROW + 0x21E9: [662,156,685,45,641], // DOWNWARDS WHITE ARROW + 0x21EA: [690,184,685,45,641], // UPWARDS WHITE ARROW FROM BAR + 0x21F4: [448,-57,926,70,856], // RIGHT ARROW WITH SMALL CIRCLE + 0x21F5: [662,156,773,31,742], // DOWNWARDS ARROW LEFTWARDS OF UPWARDS ARROW + 0x21F6: [739,232,926,60,866], // THREE RIGHTWARDS ARROWS + 0x21F7: [450,-58,926,60,866], // LEFTWARDS ARROW WITH VERTICAL STROKE + 0x21F8: [450,-58,926,55,861], // RIGHTWARDS ARROW WITH VERTICAL STROKE + 0x21F9: [450,-58,926,48,878], // LEFT RIGHT ARROW WITH VERTICAL STROKE + 0x21FA: [450,-58,926,60,866], // LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE + 0x21FB: [450,-58,926,60,866], // RIGHTWARDS ARROW WITH DOUBLE VERTICAL STROKE + 0x21FC: [450,-58,926,38,888], // LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE + 0x21FD: [449,-57,926,60,866], // LEFTWARDS OPEN-HEADED ARROW + 0x21FE: [449,-57,926,60,866], // RIGHTWARDS OPEN-HEADED ARROW + 0x21FF: [449,-57,926,20,906] // LEFT RIGHT OPEN-HEADED ARROW + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Arrows.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js new file mode 100644 index 0000000..efa9c22 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js @@ -0,0 +1,82 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D538: [662,0,741,50,691], // MATHEMATICAL DOUBLE-STRUCK CAPITAL A + 0x1D539: [662,0,676,70,626], // MATHEMATICAL DOUBLE-STRUCK CAPITAL B + 0x1D53B: [662,0,722,70,677], // MATHEMATICAL DOUBLE-STRUCK CAPITAL D + 0x1D53C: [662,0,622,70,567], // MATHEMATICAL DOUBLE-STRUCK CAPITAL E + 0x1D53D: [662,0,469,70,567], // MATHEMATICAL DOUBLE-STRUCK CAPITAL F + 0x1D53E: [676,13,706,45,664], // MATHEMATICAL DOUBLE-STRUCK CAPITAL G + 0x1D540: [662,0,322,78,244], // MATHEMATICAL DOUBLE-STRUCK CAPITAL I + 0x1D541: [662,14,560,40,495], // MATHEMATICAL DOUBLE-STRUCK CAPITAL J + 0x1D542: [674,0,735,70,729], // MATHEMATICAL DOUBLE-STRUCK CAPITAL K + 0x1D543: [662,0,591,70,571], // MATHEMATICAL DOUBLE-STRUCK CAPITAL L + 0x1D544: [662,0,855,70,785], // MATHEMATICAL DOUBLE-STRUCK CAPITAL M + 0x1D546: [676,14,760,45,715], // MATHEMATICAL DOUBLE-STRUCK CAPITAL O + 0x1D54A: [676,14,636,35,597], // MATHEMATICAL DOUBLE-STRUCK CAPITAL S + 0x1D54B: [662,0,527,20,622], // MATHEMATICAL DOUBLE-STRUCK CAPITAL T + 0x1D54C: [662,14,698,65,633], // MATHEMATICAL DOUBLE-STRUCK CAPITAL U + 0x1D54D: [662,0,568,12,653], // MATHEMATICAL DOUBLE-STRUCK CAPITAL V + 0x1D54E: [662,0,920,12,949], // MATHEMATICAL DOUBLE-STRUCK CAPITAL W + 0x1D54F: [662,0,768,35,733], // MATHEMATICAL DOUBLE-STRUCK CAPITAL X + 0x1D550: [662,0,563,12,685], // MATHEMATICAL DOUBLE-STRUCK CAPITAL Y + 0x1D552: [460,10,561,45,506], // MATHEMATICAL DOUBLE-STRUCK SMALL A + 0x1D553: [683,10,565,50,524], // MATHEMATICAL DOUBLE-STRUCK SMALL B + 0x1D554: [460,10,520,45,475], // MATHEMATICAL DOUBLE-STRUCK SMALL C + 0x1D555: [683,10,574,45,519], // MATHEMATICAL DOUBLE-STRUCK SMALL D + 0x1D556: [460,10,523,45,478], // MATHEMATICAL DOUBLE-STRUCK SMALL E + 0x1D557: [683,0,368,25,431], // MATHEMATICAL DOUBLE-STRUCK SMALL F + 0x1D558: [460,218,574,45,519], // MATHEMATICAL DOUBLE-STRUCK SMALL G + 0x1D559: [683,0,544,55,489], // MATHEMATICAL DOUBLE-STRUCK SMALL H + 0x1D55A: [683,0,258,55,203], // MATHEMATICAL DOUBLE-STRUCK SMALL I + 0x1D55B: [683,217,305,-15,250], // MATHEMATICAL DOUBLE-STRUCK SMALL J + 0x1D55C: [683,0,551,50,539], // MATHEMATICAL DOUBLE-STRUCK SMALL K + 0x1D55D: [683,0,258,55,203], // MATHEMATICAL DOUBLE-STRUCK SMALL L + 0x1D55E: [460,0,830,55,775], // MATHEMATICAL DOUBLE-STRUCK SMALL M + 0x1D55F: [460,0,544,55,489], // MATHEMATICAL DOUBLE-STRUCK SMALL N + 0x1D560: [458,12,553,45,508], // MATHEMATICAL DOUBLE-STRUCK SMALL O + 0x1D561: [460,218,574,55,529], // MATHEMATICAL DOUBLE-STRUCK SMALL P + 0x1D562: [460,218,574,45,519], // MATHEMATICAL DOUBLE-STRUCK SMALL Q + 0x1D563: [463,0,301,55,407], // MATHEMATICAL DOUBLE-STRUCK SMALL R + 0x1D564: [460,10,519,36,483], // MATHEMATICAL DOUBLE-STRUCK SMALL S + 0x1D565: [633,10,329,20,297], // MATHEMATICAL DOUBLE-STRUCK SMALL T + 0x1D566: [450,10,544,55,489], // MATHEMATICAL DOUBLE-STRUCK SMALL U + 0x1D567: [450,0,443,20,479], // MATHEMATICAL DOUBLE-STRUCK SMALL V + 0x1D568: [450,0,676,20,695], // MATHEMATICAL DOUBLE-STRUCK SMALL W + 0x1D569: [450,0,560,30,530], // MATHEMATICAL DOUBLE-STRUCK SMALL X + 0x1D56A: [450,218,468,20,510], // MATHEMATICAL DOUBLE-STRUCK SMALL Y + 0x1D56B: [450,0,519,43,476], // MATHEMATICAL DOUBLE-STRUCK SMALL Z + 0x1D7D8: [676,14,540,28,512], // MATHEMATICAL DOUBLE-STRUCK DIGIT ZERO + 0x1D7D9: [693,0,540,91,355], // MATHEMATICAL DOUBLE-STRUCK DIGIT ONE + 0x1D7DA: [676,0,547,48,514], // MATHEMATICAL DOUBLE-STRUCK DIGIT TWO + 0x1D7DB: [676,14,540,49,478], // MATHEMATICAL DOUBLE-STRUCK DIGIT THREE + 0x1D7DC: [676,0,540,20,524], // MATHEMATICAL DOUBLE-STRUCK DIGIT FOUR + 0x1D7DD: [662,14,540,35,489], // MATHEMATICAL DOUBLE-STRUCK DIGIT FIVE + 0x1D7DE: [676,14,540,28,512], // MATHEMATICAL DOUBLE-STRUCK DIGIT SIX + 0x1D7DF: [662,0,540,24,511], // MATHEMATICAL DOUBLE-STRUCK DIGIT SEVEN + 0x1D7E0: [676,14,540,28,512], // MATHEMATICAL DOUBLE-STRUCK DIGIT EIGHT + 0x1D7E1: [676,12,540,28,512] // MATHEMATICAL DOUBLE-STRUCK DIGIT NINE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/BBBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js new file mode 100644 index 0000000..20a3938 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2580: [910,-304,1213,0,1213], // UPPER HALF BLOCK + 0x2584: [303,303,1213,0,1213], // LOWER HALF BLOCK + 0x2588: [910,303,1213,0,1213], // FULL BLOCK + 0x258C: [910,303,1212,0,606], // LEFT HALF BLOCK + 0x2590: [910,303,1212,606,1212], // RIGHT HALF BLOCK + 0x2591: [860,258,1200,0,1200], // LIGHT SHADE + 0x2592: [874,273,1200,0,1200], // MEDIUM SHADE + 0x2593: [874,273,1200,0,1200] // DARK SHADE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/BlockElements.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js new file mode 100644 index 0000000..8168e75 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoldFraktur.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D56C: [701,25,856,50,805], // MATHEMATICAL BOLD FRAKTUR CAPITAL A + 0x1D56D: [701,19,849,50,794], // MATHEMATICAL BOLD FRAKTUR CAPITAL B + 0x1D56E: [701,19,773,54,731], // MATHEMATICAL BOLD FRAKTUR CAPITAL C + 0x1D56F: [701,19,891,54,836], // MATHEMATICAL BOLD FRAKTUR CAPITAL D + 0x1D570: [701,19,788,54,731], // MATHEMATICAL BOLD FRAKTUR CAPITAL E + 0x1D571: [701,205,803,54,748], // MATHEMATICAL BOLD FRAKTUR CAPITAL F + 0x1D572: [701,19,833,54,781], // MATHEMATICAL BOLD FRAKTUR CAPITAL G + 0x1D573: [701,205,843,42,795], // MATHEMATICAL BOLD FRAKTUR CAPITAL H + 0x1D574: [701,25,790,54,735], // MATHEMATICAL BOLD FRAKTUR CAPITAL I + 0x1D575: [701,205,803,54,748], // MATHEMATICAL BOLD FRAKTUR CAPITAL J + 0x1D576: [701,25,864,42,814], // MATHEMATICAL BOLD FRAKTUR CAPITAL K + 0x1D577: [701,25,699,51,645], // MATHEMATICAL BOLD FRAKTUR CAPITAL L + 0x1D578: [701,25,1133,50,1081], // MATHEMATICAL BOLD FRAKTUR CAPITAL M + 0x1D579: [701,25,862,50,810], // MATHEMATICAL BOLD FRAKTUR CAPITAL N + 0x1D57A: [701,19,909,54,854], // MATHEMATICAL BOLD FRAKTUR CAPITAL O + 0x1D57B: [701,205,850,50,795], // MATHEMATICAL BOLD FRAKTUR CAPITAL P + 0x1D57C: [701,59,930,54,902], // MATHEMATICAL BOLD FRAKTUR CAPITAL Q + 0x1D57D: [701,25,884,50,841], // MATHEMATICAL BOLD FRAKTUR CAPITAL R + 0x1D57E: [701,19,852,54,802], // MATHEMATICAL BOLD FRAKTUR CAPITAL S + 0x1D57F: [701,25,793,54,740], // MATHEMATICAL BOLD FRAKTUR CAPITAL T + 0x1D580: [701,25,860,54,809], // MATHEMATICAL BOLD FRAKTUR CAPITAL U + 0x1D581: [701,19,855,50,800], // MATHEMATICAL BOLD FRAKTUR CAPITAL V + 0x1D582: [701,19,1121,50,1066], // MATHEMATICAL BOLD FRAKTUR CAPITAL W + 0x1D583: [701,25,819,50,775], // MATHEMATICAL BOLD FRAKTUR CAPITAL X + 0x1D584: [701,205,837,50,782], // MATHEMATICAL BOLD FRAKTUR CAPITAL Y + 0x1D585: [701,195,755,44,703], // MATHEMATICAL BOLD FRAKTUR CAPITAL Z + 0x1D586: [475,24,600,55,545], // MATHEMATICAL BOLD FRAKTUR SMALL A + 0x1D587: [695,24,559,45,504], // MATHEMATICAL BOLD FRAKTUR SMALL B + 0x1D588: [475,24,464,55,412], // MATHEMATICAL BOLD FRAKTUR SMALL C + 0x1D589: [694,25,557,48,502], // MATHEMATICAL BOLD FRAKTUR SMALL D + 0x1D58A: [475,24,476,55,427], // MATHEMATICAL BOLD FRAKTUR SMALL E + 0x1D58B: [700,214,370,33,352], // MATHEMATICAL BOLD FRAKTUR SMALL F + 0x1D58C: [475,219,566,55,506], // MATHEMATICAL BOLD FRAKTUR SMALL G + 0x1D58D: [695,219,576,45,516], // MATHEMATICAL BOLD FRAKTUR SMALL H + 0x1D58E: [697,24,429,35,379], // MATHEMATICAL BOLD FRAKTUR SMALL I + 0x1D58F: [697,219,389,40,337], // MATHEMATICAL BOLD FRAKTUR SMALL J + 0x1D590: [695,24,456,48,402], // MATHEMATICAL BOLD FRAKTUR SMALL K + 0x1D591: [695,24,433,45,379], // MATHEMATICAL BOLD FRAKTUR SMALL L + 0x1D592: [475,24,984,40,932], // MATHEMATICAL BOLD FRAKTUR SMALL M + 0x1D593: [475,24,696,40,644], // MATHEMATICAL BOLD FRAKTUR SMALL N + 0x1D594: [475,24,554,45,499], // MATHEMATICAL BOLD FRAKTUR SMALL O + 0x1D595: [593,219,640,36,585], // MATHEMATICAL BOLD FRAKTUR SMALL P + 0x1D596: [475,219,574,55,522], // MATHEMATICAL BOLD FRAKTUR SMALL Q + 0x1D597: [475,24,525,40,493], // MATHEMATICAL BOLD FRAKTUR SMALL R + 0x1D598: [643,31,557,52,505], // MATHEMATICAL BOLD FRAKTUR SMALL S + 0x1D599: [656,23,438,45,378], // MATHEMATICAL BOLD FRAKTUR SMALL T + 0x1D59A: [475,24,681,35,629], // MATHEMATICAL BOLD FRAKTUR SMALL U + 0x1D59B: [593,24,573,55,526], // MATHEMATICAL BOLD FRAKTUR SMALL V + 0x1D59C: [593,24,850,55,795], // MATHEMATICAL BOLD FRAKTUR SMALL W + 0x1D59D: [475,209,521,50,489], // MATHEMATICAL BOLD FRAKTUR SMALL X + 0x1D59E: [593,219,596,55,536], // MATHEMATICAL BOLD FRAKTUR SMALL Y + 0x1D59F: [475,219,484,36,437] // MATHEMATICAL BOLD FRAKTUR SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/BoldFraktur.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js new file mode 100644 index 0000000..2ccdea1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js @@ -0,0 +1,72 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2500: [340,-267,708,-11,719], // BOX DRAWINGS LIGHT HORIZONTAL + 0x2502: [910,303,708,317,390], // BOX DRAWINGS LIGHT VERTICAL + 0x2506: [910,303,708,317,390], // BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL + 0x2508: [340,-267,708,-11,719], // BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL + 0x250A: [910,303,708,317,390], // BOX DRAWINGS LIGHT QUADRUPLE DASH VERTICAL + 0x250C: [340,303,708,317,720], // BOX DRAWINGS LIGHT DOWN AND RIGHT + 0x2510: [340,303,708,-11,390], // BOX DRAWINGS LIGHT DOWN AND LEFT + 0x2514: [910,-267,708,317,720], // BOX DRAWINGS LIGHT UP AND RIGHT + 0x2518: [910,-267,708,-11,390], // BOX DRAWINGS LIGHT UP AND LEFT + 0x251C: [910,303,708,317,719], // BOX DRAWINGS LIGHT VERTICAL AND RIGHT + 0x2524: [910,303,708,-11,390], // BOX DRAWINGS LIGHT VERTICAL AND LEFT + 0x252C: [340,303,708,-11,719], // BOX DRAWINGS LIGHT DOWN AND HORIZONTAL + 0x2534: [910,-267,708,-11,719], // BOX DRAWINGS LIGHT UP AND HORIZONTAL + 0x253C: [910,303,708,-11,719], // BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL + 0x2550: [433,-174,708,-11,719], // BOX DRAWINGS DOUBLE HORIZONTAL + 0x2551: [910,303,708,225,483], // BOX DRAWINGS DOUBLE VERTICAL + 0x2552: [433,303,708,317,720], // BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE + 0x2553: [340,303,708,225,720], // BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE + 0x2554: [433,303,708,225,719], // BOX DRAWINGS DOUBLE DOWN AND RIGHT + 0x2555: [433,303,708,-11,390], // BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE + 0x2556: [340,303,708,-11,483], // BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE + 0x2557: [433,303,708,-11,483], // BOX DRAWINGS DOUBLE DOWN AND LEFT + 0x2558: [910,-174,708,317,720], // BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE + 0x2559: [910,-267,708,225,720], // BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE + 0x255A: [910,-174,708,225,719], // BOX DRAWINGS DOUBLE UP AND RIGHT + 0x255B: [910,-174,708,-11,390], // BOX DRAWINGS UP SINGLE AND LEFT DOUBLE + 0x255C: [910,-267,708,-11,483], // BOX DRAWINGS UP DOUBLE AND LEFT SINGLE + 0x255D: [910,-174,708,-11,483], // BOX DRAWINGS DOUBLE UP AND LEFT + 0x255E: [910,303,708,317,720], // BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE + 0x255F: [910,303,708,225,720], // BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE + 0x2560: [910,303,708,225,720], // BOX DRAWINGS DOUBLE VERTICAL AND RIGHT + 0x2561: [910,303,708,-11,390], // BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE + 0x2562: [910,303,708,-11,483], // BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE + 0x2563: [910,303,708,-11,483], // BOX DRAWINGS DOUBLE VERTICAL AND LEFT + 0x2564: [433,303,708,-11,719], // BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE + 0x2565: [340,303,708,-11,719], // BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE + 0x2566: [433,303,708,-11,719], // BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL + 0x2567: [910,-174,708,-11,719], // BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE + 0x2568: [910,-267,708,-11,719], // BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE + 0x2569: [910,-174,708,-11,719], // BOX DRAWINGS DOUBLE UP AND HORIZONTAL + 0x256A: [910,303,708,-11,719], // BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE + 0x256B: [910,303,708,-11,719], // BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE + 0x256C: [910,303,708,-11,719], // BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL + 0x2571: [910,303,708,-15,723], // BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT + 0x2572: [910,303,708,-15,723] // BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/BoxDrawing.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js new file mode 100644 index 0000000..2fba0b1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x3012: [662,0,685,10,672], // POSTAL MARK + 0x3030: [417,-93,1412,45,1367] // WAVY DASH + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/CJK.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js new file mode 100644 index 0000000..42975fb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js @@ -0,0 +1,87 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x305: [820,-770,0,-480,20], // COMBINING OVERLINE + 0x309: [751,-492,0,-307,-118], // COMBINING HOOK ABOVE + 0x30D: [700,-500,0,-250,-195], // COMBINING VERTICAL LINE ABOVE + 0x30E: [700,-500,0,-326,-133], // COMBINING DOUBLE VERTICAL LINE ABOVE + 0x30F: [678,-507,0,-401,-22], // COMBINING DOUBLE GRAVE ACCENT + 0x310: [767,-507,0,-373,-92], // COMBINING CANDRABINDU + 0x311: [664,-507,0,-373,-92], // COMBINING INVERTED BREVE + 0x312: [745,-502,0,-299,-160], // COMBINING TURNED COMMA ABOVE + 0x313: [745,-502,0,-299,-160], // COMBINING COMMA ABOVE + 0x314: [745,-502,0,-299,-160], // COMBINING REVERSED COMMA ABOVE + 0x315: [745,-502,0,-85,54], // COMBINING COMMA ABOVE RIGHT + 0x316: [-53,224,0,-351,-127], // COMBINING GRAVE ACCENT BELOW + 0x317: [-53,224,0,-371,-147], // COMBINING ACUTE ACCENT BELOW + 0x318: [-53,283,0,-397,-210], // COMBINING LEFT TACK BELOW + 0x319: [-53,283,0,-267,-80], // COMBINING RIGHT TACK BELOW + 0x31A: [735,-531,0,-380,-80], // COMBINING LEFT ANGLE ABOVE + 0x31B: [474,-345,0,-44,51], // COMBINING HORN + 0x31C: [-71,266,0,-360,-232], // COMBINING LEFT HALF RING BELOW + 0x31D: [-53,240,0,-345,-115], // COMBINING UP TACK BELOW + 0x31E: [-53,240,0,-345,-115], // COMBINING DOWN TACK BELOW + 0x31F: [-53,250,0,-326,-134], // COMBINING PLUS SIGN BELOW + 0x320: [-124,168,0,-326,-134], // COMBINING MINUS SIGN BELOW + 0x321: [75,287,0,-235,1], // COMBINING PALATALIZED HOOK BELOW + 0x322: [75,287,0,-54,182], // COMBINING RETROFLEX HOOK BELOW + 0x323: [-118,217,0,-280,-181], // COMBINING DOT BELOW + 0x324: [-119,218,0,-379,-81], // COMBINING DIAERESIS BELOW + 0x325: [-69,268,0,-329,-130], // COMBINING RING BELOW + 0x326: [-110,353,0,-299,-160], // COMBINING COMMA BELOW + 0x327: [0,215,0,-334,-125], // COMBINING CEDILLA + 0x328: [0,165,0,-322,-137], // COMBINING OGONEK + 0x329: [-102,234,0,-250,-210], // COMBINING VERTICAL LINE BELOW + 0x32A: [-98,235,0,-385,-73], // COMBINING BRIDGE BELOW + 0x32B: [-110,227,0,-380,-75], // COMBINING INVERTED DOUBLE ARCH BELOW + 0x32C: [-73,240,0,-385,-74], // COMBINING CARON BELOW + 0x32D: [-73,240,0,-385,-74], // COMBINING CIRCUMFLEX ACCENT BELOW + 0x32E: [-68,225,0,-370,-89], // COMBINING BREVE BELOW + 0x32F: [-59,216,0,-370,-89], // COMBINING INVERTED BREVE BELOW + 0x330: [-113,219,0,-395,-65], // COMBINING TILDE BELOW + 0x331: [-141,195,0,-385,-74], // COMBINING MACRON BELOW + 0x332: [-141,191,0,-480,20], // COMBINING LOW LINE + 0x333: [-141,300,0,-480,20], // COMBINING DOUBLE LOW LINE + 0x334: [320,-214,0,-401,-71], // COMBINING TILDE OVERLAY + 0x335: [274,-230,0,-384,-78], // COMBINING SHORT STROKE OVERLAY + 0x336: [274,-230,0,-480,20], // COMBINING LONG STROKE OVERLAY + 0x337: [580,74,0,-380,-41], // COMBINING SHORT SOLIDUS OVERLAY + 0x339: [-71,266,0,-280,-152], // COMBINING RIGHT HALF RING BELOW + 0x33A: [-53,190,0,-385,-73], // COMBINING INVERTED BRIDGE BELOW + 0x33B: [-53,227,0,-313,-147], // COMBINING SQUARE BELOW + 0x33C: [-65,189,0,-380,-79], // COMBINING SEAGULL BELOW + 0x33D: [715,-525,0,-326,-135], // COMBINING X ABOVE + 0x33E: [829,-499,0,-283,-177], // COMBINING VERTICAL TILDE + 0x33F: [928,-770,0,-480,20], // COMBINING DOUBLE OVERLINE + 0x346: [681,-538,0,-350,-68], // COMBINING BRIDGE ABOVE + 0x347: [-140,292,1,11,323], // ?? + 0x34C: [777,-532,0,-386,-56], // COMBINING ALMOST EQUAL TO ABOVE + 0x359: [-65,367,0,-357,-87], // COMBINING ASTERISK BELOW + 0x35C: [-76,233,0,-373,295], // COMBINING DOUBLE BREVE BELOW + 0x360: [633,-517,0,-395,365], // COMBINING DOUBLE TILDE + 0x361: [664,-507,0,-373,295], // COMBINING DOUBLE INVERTED BREVE + 0x362: [-65,270,0,-395,355] // COMBINING DOUBLE RIGHTWARDS ARROW BELOW + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js new file mode 100644 index 0000000..34f477e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js @@ -0,0 +1,50 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CombDiactForSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x20D0: [760,-627,0,-453,-17], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [760,-627,0,-453,-17], // COMBINING RIGHT HARPOON ABOVE + 0x20D2: [662,156,0,-242,-192], // COMBINING LONG VERTICAL LINE OVERLAY + 0x20D6: [760,-548,0,-453,-17], // COMBINING LEFT ARROW ABOVE + 0x20DB: [622,-523,0,-462,35], // COMBINING THREE DOTS ABOVE + 0x20DC: [622,-523,0,-600,96], // COMBINING FOUR DOTS ABOVE + 0x20DD: [725,221,0,-723,223], // COMBINING ENCLOSING CIRCLE + 0x20DE: [780,180,0,-730,230], // COMBINING ENCLOSING SQUARE + 0x20DF: [843,341,0,-840,344], // COMBINING ENCLOSING DIAMOND + 0x20E1: [760,-548,0,-453,25], // COMBINING LEFT RIGHT ARROW ABOVE + 0x20E4: [1023,155,0,-970,490], // COMBINING ENCLOSING UPWARD POINTING TRIANGLE + 0x20E5: [662,156,0,-430,-40], // COMBINING REVERSE SOLIDUS OVERLAY + 0x20E6: [662,156,0,-335,-102], // COMBINING DOUBLE VERTICAL STROKE OVERLAY + 0x20E7: [725,178,0,-650,166], // COMBINING ANNUITY SYMBOL + 0x20E8: [-119,218,0,-462,35], // COMBINING TRIPLE UNDERDOT + 0x20E9: [681,-538,0,-480,53], // COMBINING WIDE BRIDGE ABOVE + 0x20EA: [419,-87,0,-658,118], // COMBINING LEFTWARDS ARROW OVERLAY + 0x20EB: [756,217,0,-448,193], // COMBINING LONG DOUBLE SOLIDUS OVERLAY + 0x20EC: [-119,252,0,-453,-17], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-119,252,0,-453,-17], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-40,252,0,-453,-17], // COMBINING LEFT ARROW BELOW + 0x20EF: [-40,252,0,-453,-17], // COMBINING RIGHT ARROW BELOW + 0x20F0: [819,-517,0,-357,-87] // COMBINING ASTERISK ABOVE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/CombDiactForSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js new file mode 100644 index 0000000..331b955 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2423: [16,120,500,40,460] // stix-round space indicator + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/ControlPictures.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js new file mode 100644 index 0000000..f6efb96 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js @@ -0,0 +1,31 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x20A3: [662,0,556,11,546], // FRENCH FRANC SIGN + 0x20A4: [676,8,500,12,490], // LIRA SIGN + 0x20A7: [662,10,1182,16,1141], // PESETA SIGN + 0x20AC: [664,12,500,38,462] // EURO SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/CurrencySymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js new file mode 100644 index 0000000..42fdf73 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js @@ -0,0 +1,129 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x401: [872,0,629,22,607], // CYRILLIC CAPITAL LETTER IO + 0x402: [662,189,756,18,700], // CYRILLIC CAPITAL LETTER DJE + 0x403: [928,0,571,19,544], // CYRILLIC CAPITAL LETTER GJE + 0x404: [676,14,651,38,621], // CYRILLIC CAPITAL LETTER UKRAINIAN IE + 0x405: [676,14,556,62,510], // CYRILLIC CAPITAL LETTER DZE + 0x406: [662,0,333,18,315], // CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I + 0x407: [872,0,333,25,323], // CYRILLIC CAPITAL LETTER YI + 0x408: [662,14,373,-6,354], // CYRILLIC CAPITAL LETTER JE + 0x409: [662,14,988,10,954], // CYRILLIC CAPITAL LETTER LJE + 0x40A: [662,0,1017,19,983], // CYRILLIC CAPITAL LETTER NJE + 0x40B: [662,0,803,18,786], // CYRILLIC CAPITAL LETTER TSHE + 0x40C: [928,0,690,19,686], // CYRILLIC CAPITAL LETTER KJE + 0x40E: [915,15,711,15,694], // CYRILLIC CAPITAL LETTER SHORT U + 0x40F: [662,153,715,19,696], // CYRILLIC CAPITAL LETTER DZHE + 0x410: [674,0,713,9,701], // CYRILLIC CAPITAL LETTER A + 0x411: [662,0,611,19,577], // CYRILLIC CAPITAL LETTER BE + 0x412: [662,0,651,19,595], // CYRILLIC CAPITAL LETTER VE + 0x413: [662,0,571,19,544], // CYRILLIC CAPITAL LETTER GHE + 0x414: [662,153,665,14,646], // CYRILLIC CAPITAL LETTER DE + 0x415: [662,0,629,22,607], // CYRILLIC CAPITAL LETTER IE + 0x416: [676,0,1021,8,1013], // CYRILLIC CAPITAL LETTER ZHE + 0x417: [676,14,576,28,545], // CYRILLIC CAPITAL LETTER ZE + 0x418: [662,0,723,19,704], // CYRILLIC CAPITAL LETTER I + 0x419: [915,0,723,19,704], // CYRILLIC CAPITAL LETTER SHORT I + 0x41A: [676,0,690,19,686], // CYRILLIC CAPITAL LETTER KA + 0x41B: [662,14,683,9,664], // CYRILLIC CAPITAL LETTER EL + 0x41C: [662,0,893,19,871], // CYRILLIC CAPITAL LETTER EM + 0x41D: [662,0,726,19,704], // CYRILLIC CAPITAL LETTER EN + 0x41E: [676,14,729,36,690], // CYRILLIC CAPITAL LETTER O + 0x41F: [662,0,724,19,705], // CYRILLIC CAPITAL LETTER PE + 0x420: [662,0,571,19,535], // CYRILLIC CAPITAL LETTER ER + 0x421: [676,14,677,36,641], // CYRILLIC CAPITAL LETTER ES + 0x422: [662,0,618,30,592], // CYRILLIC CAPITAL LETTER TE + 0x423: [662,15,711,15,694], // CYRILLIC CAPITAL LETTER U + 0x424: [662,0,769,38,731], // CYRILLIC CAPITAL LETTER EF + 0x425: [662,0,716,9,703], // CYRILLIC CAPITAL LETTER HA + 0x426: [662,153,715,19,696], // CYRILLIC CAPITAL LETTER TSE + 0x427: [662,0,657,3,639], // CYRILLIC CAPITAL LETTER CHE + 0x428: [662,0,994,29,965], // CYRILLIC CAPITAL LETTER SHA + 0x429: [662,153,994,29,965], // CYRILLIC CAPITAL LETTER SHCHA + 0x42A: [662,0,737,13,703], // CYRILLIC CAPITAL LETTER HARD SIGN + 0x42B: [662,0,884,19,865], // CYRILLIC CAPITAL LETTER YERU + 0x42C: [662,0,612,19,578], // CYRILLIC CAPITAL LETTER SOFT SIGN + 0x42D: [676,14,651,30,613], // CYRILLIC CAPITAL LETTER E + 0x42E: [676,14,902,19,863], // CYRILLIC CAPITAL LETTER YU + 0x42F: [662,0,637,3,618], // CYRILLIC CAPITAL LETTER YA + 0x430: [460,10,450,37,446], // CYRILLIC SMALL LETTER A + 0x431: [685,10,507,39,478], // CYRILLIC SMALL LETTER BE + 0x432: [450,0,474,24,438], // CYRILLIC SMALL LETTER VE + 0x433: [450,0,394,17,387], // CYRILLIC SMALL LETTER GHE + 0x434: [450,137,462,14,439], // CYRILLIC SMALL LETTER DE + 0x435: [460,10,466,38,437], // CYRILLIC SMALL LETTER IE + 0x436: [456,0,721,14,707], // CYRILLIC SMALL LETTER ZHE + 0x437: [460,10,390,14,357], // CYRILLIC SMALL LETTER ZE + 0x438: [450,0,525,23,502], // CYRILLIC SMALL LETTER I + 0x439: [704,0,525,23,502], // CYRILLIC SMALL LETTER SHORT I + 0x43A: [456,0,503,23,495], // CYRILLIC SMALL LETTER KA + 0x43B: [450,10,499,8,476], // CYRILLIC SMALL LETTER EL + 0x43C: [450,0,617,23,594], // CYRILLIC SMALL LETTER EM + 0x43D: [450,0,525,23,502], // CYRILLIC SMALL LETTER EN + 0x43E: [460,10,512,35,476], // CYRILLIC SMALL LETTER O + 0x43F: [450,0,525,23,502], // CYRILLIC SMALL LETTER PE + 0x440: [460,217,499,-2,463], // CYRILLIC SMALL LETTER ER + 0x441: [460,10,456,41,428], // CYRILLIC SMALL LETTER ES + 0x442: [450,0,434,8,426], // CYRILLIC SMALL LETTER TE + 0x443: [450,218,491,8,483], // CYRILLIC SMALL LETTER U + 0x444: [662,217,678,43,635], // CYRILLIC SMALL LETTER EF + 0x445: [450,0,489,14,476], // CYRILLIC SMALL LETTER HA + 0x446: [450,137,525,23,502], // CYRILLIC SMALL LETTER TSE + 0x447: [450,0,512,18,489], // CYRILLIC SMALL LETTER CHE + 0x448: [450,0,768,23,745], // CYRILLIC SMALL LETTER SHA + 0x449: [450,137,768,23,745], // CYRILLIC SMALL LETTER SHCHA + 0x44A: [450,0,539,8,507], // CYRILLIC SMALL LETTER HARD SIGN + 0x44B: [450,0,670,23,646], // CYRILLIC SMALL LETTER YERU + 0x44C: [450,0,457,23,425], // CYRILLIC SMALL LETTER SOFT SIGN + 0x44D: [460,10,444,14,410], // CYRILLIC SMALL LETTER E + 0x44E: [460,10,738,23,703], // CYRILLIC SMALL LETTER YU + 0x44F: [450,0,471,4,448], // CYRILLIC SMALL LETTER YA + 0x451: [622,10,466,38,437], // CYRILLIC SMALL LETTER IO + 0x452: [683,218,512,6,439], // CYRILLIC SMALL LETTER DJE + 0x453: [679,0,394,17,387], // CYRILLIC SMALL LETTER GJE + 0x454: [460,10,444,34,430], // CYRILLIC SMALL LETTER UKRAINIAN IE + 0x455: [459,10,389,49,346], // CYRILLIC SMALL LETTER DZE + 0x456: [683,0,278,29,266], // CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I + 0x457: [622,0,278,1,299], // CYRILLIC SMALL LETTER YI + 0x458: [683,218,278,-77,187], // CYRILLIC SMALL LETTER JE + 0x459: [450,10,702,8,670], // CYRILLIC SMALL LETTER LJE + 0x45A: [450,0,721,23,689], // CYRILLIC SMALL LETTER NJE + 0x45B: [683,0,512,6,499], // CYRILLIC SMALL LETTER TSHE + 0x45C: [679,0,503,23,495], // CYRILLIC SMALL LETTER KJE + 0x45E: [704,218,491,8,483], // CYRILLIC SMALL LETTER SHORT U + 0x45F: [450,137,518,23,495], // CYRILLIC SMALL LETTER DZHE + 0x462: [662,0,746,26,713], // CYRILLIC CAPITAL LETTER YAT + 0x463: [683,0,539,8,507], // CYRILLIC SMALL LETTER YAT + 0x46A: [662,0,998,6,992], // CYRILLIC CAPITAL LETTER BIG YUS + 0x46B: [450,0,722,14,708], // CYRILLIC SMALL LETTER BIG YUS + 0x472: [676,14,729,36,690], // CYRILLIC CAPITAL LETTER FITA + 0x473: [460,10,512,35,476], // CYRILLIC SMALL LETTER FITA + 0x474: [676,11,766,16,760], // CYRILLIC CAPITAL LETTER IZHITSA + 0x475: [456,14,539,19,532], // CYRILLIC SMALL LETTER IZHITSA + 0x490: [803,0,571,19,544], // CYRILLIC CAPITAL LETTER GHE WITH UPTURN + 0x491: [558,0,394,17,387] // CYRILLIC SMALL LETTER GHE WITH UPTURN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Cyrillic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js new file mode 100644 index 0000000..8de380b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js @@ -0,0 +1,57 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2702: [612,-82,961,35,905], // BLACK SCISSORS + 0x2709: [555,-138,690,34,638], // ENVELOPE + 0x2713: [707,12,755,34,704], // CHECK MARK + 0x2720: [592,87,767,53,714], // MALTESE CROSS + 0x272A: [613,106,789,35,733], // CIRCLED WHITE STAR + 0x2736: [616,108,695,35,642], // SIX POINTED BLACK STAR + 0x273D: [612,108,682,35,626], // HEAVY TEARDROP-SPOKED ASTERISK + 0x2772: [719,213,488,188,466], // LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT + 0x2773: [719,213,488,22,300], // LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT + 0x2780: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF DIGIT ONE + 0x2781: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF DIGIT TWO + 0x2782: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF DIGIT THREE + 0x2783: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF DIGIT FOUR + 0x2784: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF DIGIT FIVE + 0x2785: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF DIGIT SIX + 0x2786: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF DIGIT SEVEN + 0x2787: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF DIGIT EIGHT + 0x2788: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF DIGIT NINE + 0x2789: [705,14,788,35,733], // DINGBAT CIRCLED SANS-SERIF NUMBER TEN + 0x278A: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT ONE + 0x278B: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT TWO + 0x278C: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT THREE + 0x278D: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FOUR + 0x278E: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT FIVE + 0x278F: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SIX + 0x2790: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT SEVEN + 0x2791: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT EIGHT + 0x2792: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF DIGIT NINE + 0x2793: [705,14,788,35,733], // DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN + 0x279B: [433,-70,918,35,861] // DRAFTING POINT RIGHTWARDS ARROW + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Dingbats.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js new file mode 100644 index 0000000..29e8cba --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/EnclosedAlphanum.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2460: [676,14,684,0,684], // CIRCLED DIGIT ONE + 0x2461: [676,14,684,0,684], // CIRCLED DIGIT TWO + 0x2462: [676,14,684,0,684], // CIRCLED DIGIT THREE + 0x2463: [676,14,684,0,684], // CIRCLED DIGIT FOUR + 0x2464: [676,14,684,0,684], // CIRCLED DIGIT FIVE + 0x2465: [676,14,684,0,684], // CIRCLED DIGIT SIX + 0x2466: [676,14,684,0,684], // CIRCLED DIGIT SEVEN + 0x2467: [676,14,684,0,684], // CIRCLED DIGIT EIGHT + 0x2468: [676,14,684,0,684], // CIRCLED DIGIT NINE + 0x24B6: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER A + 0x24B7: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER B + 0x24B8: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER C + 0x24B9: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER D + 0x24BA: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER E + 0x24BB: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER F + 0x24BC: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER G + 0x24BD: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER H + 0x24BE: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER I + 0x24BF: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER J + 0x24C0: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER K + 0x24C1: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER L + 0x24C2: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER M + 0x24C3: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER N + 0x24C4: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER O + 0x24C5: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER P + 0x24C6: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER Q + 0x24C7: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER R + 0x24C8: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER S + 0x24C9: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER T + 0x24CA: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER U + 0x24CB: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER V + 0x24CC: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER W + 0x24CD: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER X + 0x24CE: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER Y + 0x24CF: [676,14,684,0,684], // CIRCLED LATIN CAPITAL LETTER Z + 0x24D0: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER A + 0x24D1: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER B + 0x24D2: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER C + 0x24D3: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER D + 0x24D4: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER E + 0x24D5: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER F + 0x24D6: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER G + 0x24D7: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER H + 0x24D8: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER I + 0x24D9: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER J + 0x24DA: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER K + 0x24DB: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER L + 0x24DC: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER M + 0x24DD: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER N + 0x24DE: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER O + 0x24DF: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER P + 0x24E0: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER Q + 0x24E1: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER R + 0x24E2: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER S + 0x24E3: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER T + 0x24E4: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER U + 0x24E5: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER V + 0x24E6: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER W + 0x24E7: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER X + 0x24E8: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER Y + 0x24E9: [676,14,684,0,684], // CIRCLED LATIN SMALL LETTER Z + 0x24EA: [676,14,684,0,684] // CIRCLED DIGIT ZERO + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/EnclosedAlphanum.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js new file mode 100644 index 0000000..2424fb7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js @@ -0,0 +1,74 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D504: [695,22,785,47,742], // MATHEMATICAL FRAKTUR CAPITAL A + 0x1D505: [704,24,822,48,774], // MATHEMATICAL FRAKTUR CAPITAL B + 0x1D507: [695,24,868,50,817], // MATHEMATICAL FRAKTUR CAPITAL D + 0x1D508: [695,24,729,50,678], // MATHEMATICAL FRAKTUR CAPITAL E + 0x1D509: [695,204,767,50,716], // MATHEMATICAL FRAKTUR CAPITAL F + 0x1D50A: [695,24,806,50,755], // MATHEMATICAL FRAKTUR CAPITAL G + 0x1D50D: [695,204,772,50,721], // MATHEMATICAL FRAKTUR CAPITAL J + 0x1D50E: [695,22,846,50,801], // MATHEMATICAL FRAKTUR CAPITAL K + 0x1D50F: [695,24,669,47,626], // MATHEMATICAL FRAKTUR CAPITAL L + 0x1D510: [695,22,1083,50,1031], // MATHEMATICAL FRAKTUR CAPITAL M + 0x1D511: [695,22,827,50,775], // MATHEMATICAL FRAKTUR CAPITAL N + 0x1D512: [695,24,837,37,786], // MATHEMATICAL FRAKTUR CAPITAL O + 0x1D513: [695,204,823,40,773], // MATHEMATICAL FRAKTUR CAPITAL P + 0x1D514: [695,64,865,37,814], // MATHEMATICAL FRAKTUR CAPITAL Q + 0x1D516: [695,24,856,55,801], // MATHEMATICAL FRAKTUR CAPITAL S + 0x1D517: [695,24,766,47,722], // MATHEMATICAL FRAKTUR CAPITAL T + 0x1D518: [696,22,787,50,744], // MATHEMATICAL FRAKTUR CAPITAL U + 0x1D519: [695,24,831,48,781], // MATHEMATICAL FRAKTUR CAPITAL V + 0x1D51A: [695,24,1075,48,1025], // MATHEMATICAL FRAKTUR CAPITAL W + 0x1D51B: [695,31,763,46,735], // MATHEMATICAL FRAKTUR CAPITAL X + 0x1D51C: [695,204,766,47,714], // MATHEMATICAL FRAKTUR CAPITAL Y + 0x1D51E: [468,18,530,51,479], // MATHEMATICAL FRAKTUR SMALL A + 0x1D51F: [695,18,513,46,462], // MATHEMATICAL FRAKTUR SMALL B + 0x1D520: [468,18,385,57,344], // MATHEMATICAL FRAKTUR SMALL C + 0x1D521: [695,18,506,45,455], // MATHEMATICAL FRAKTUR SMALL D + 0x1D522: [468,18,420,47,379], // MATHEMATICAL FRAKTUR SMALL E + 0x1D523: [694,209,327,27,316], // MATHEMATICAL FRAKTUR SMALL F + 0x1D524: [468,209,499,51,461], // MATHEMATICAL FRAKTUR SMALL G + 0x1D525: [695,209,528,48,476], // MATHEMATICAL FRAKTUR SMALL H + 0x1D526: [694,18,384,42,338], // MATHEMATICAL FRAKTUR SMALL I + 0x1D527: [695,209,345,44,311], // MATHEMATICAL FRAKTUR SMALL J + 0x1D528: [695,18,420,48,368], // MATHEMATICAL FRAKTUR SMALL K + 0x1D529: [695,18,398,46,350], // MATHEMATICAL FRAKTUR SMALL L + 0x1D52A: [468,25,910,59,856], // MATHEMATICAL FRAKTUR SMALL M + 0x1D52B: [468,25,636,60,582], // MATHEMATICAL FRAKTUR SMALL N + 0x1D52C: [468,18,503,50,452], // MATHEMATICAL FRAKTUR SMALL O + 0x1D52D: [586,209,555,38,504], // MATHEMATICAL FRAKTUR SMALL P + 0x1D52E: [468,209,507,51,459], // MATHEMATICAL FRAKTUR SMALL Q + 0x1D52F: [468,18,463,38,426], // MATHEMATICAL FRAKTUR SMALL R + 0x1D530: [623,24,518,49,469], // MATHEMATICAL FRAKTUR SMALL S + 0x1D531: [656,18,374,38,337], // MATHEMATICAL FRAKTUR SMALL T + 0x1D532: [478,18,647,60,593], // MATHEMATICAL FRAKTUR SMALL U + 0x1D533: [586,18,515,47,464], // MATHEMATICAL FRAKTUR SMALL V + 0x1D534: [586,25,759,41,708], // MATHEMATICAL FRAKTUR SMALL W + 0x1D535: [468,189,456,45,406], // MATHEMATICAL FRAKTUR SMALL X + 0x1D536: [586,209,516,48,464], // MATHEMATICAL FRAKTUR SMALL Y + 0x1D537: [468,209,457,43,407] // MATHEMATICAL FRAKTUR SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Fraktur.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js new file mode 100644 index 0000000..4ea08b0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js @@ -0,0 +1,68 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeneralPunctuation.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2010: [259,-193,333,39,285], // HYPHEN + 0x2011: [257,-194,333,39,285], // NON-BREAKING HYPHEN + 0x2012: [259,-193,500,0,500], // FIGURE DASH + 0x2013: [250,-201,500,0,500], // EN DASH + 0x2014: [250,-201,1000,0,1000], // EM DASH + 0x2015: [250,-201,2000,0,2000], // HORIZONTAL BAR + 0x2016: [690,189,523,129,394], // DOUBLE VERTICAL LINE + 0x2017: [-141,300,500,0,500], // DOUBLE LOW LINE + 0x2018: [676,-433,333,115,254], // LEFT SINGLE QUOTATION MARK + 0x2019: [676,-433,333,79,218], // RIGHT SINGLE QUOTATION MARK + 0x201A: [102,141,333,79,218], // SINGLE LOW-9 QUOTATION MARK + 0x201B: [676,-433,333,79,218], // SINGLE HIGH-REVERSED-9 QUOTATION MARK + 0x201C: [676,-433,444,43,414], // LEFT DOUBLE QUOTATION MARK + 0x201D: [676,-433,444,30,401], // RIGHT DOUBLE QUOTATION MARK + 0x201E: [102,141,444,45,416], // DOUBLE LOW-9 QUOTATION MARK + 0x201F: [676,-433,444,30,401], // DOUBLE HIGH-REVERSED-9 QUOTATION MARK + 0x2022: [444,-59,523,70,455], // BULLET + 0x2025: [100,11,667,111,555], // TWO DOT LEADER + 0x2030: [706,19,1109,61,1048], // PER MILLE SIGN + 0x2031: [706,19,1471,61,1410], // PER TEN THOUSAND SIGN + 0x2033: [678,-401,426,75,351], // DOUBLE PRIME + 0x2034: [678,-401,563,75,488], // TRIPLE PRIME + 0x2035: [678,-402,289,75,214], // REVERSED PRIME + 0x2036: [678,-401,426,75,351], // REVERSED DOUBLE PRIME + 0x2037: [678,-401,563,75,488], // REVERSED TRIPLE PRIME + 0x2038: [102,156,511,59,454], // CARET + 0x2039: [416,-33,333,63,285], // SINGLE LEFT-POINTING ANGLE QUOTATION MARK + 0x203A: [416,-33,333,48,270], // SINGLE RIGHT-POINTING ANGLE QUOTATION MARK + 0x203B: [547,41,685,48,635], // REFERENCE MARK + 0x203C: [676,9,549,130,452], // DOUBLE EXCLAMATION MARK + 0x2040: [709,-512,798,72,726], // CHARACTER TIE + 0x2043: [332,-172,333,39,285], // HYPHEN BULLET + 0x2044: [676,14,167,-168,331], // FRACTION SLASH + 0x2047: [676,8,839,68,809], // DOUBLE QUESTION MARK + 0x204E: [240,171,500,68,433], // LOW ASTERISK + 0x204F: [459,141,278,60,199], // REVERSED SEMICOLON + 0x2050: [691,40,790,55,735], // CLOSE UP + 0x2051: [676,171,501,68,433], // TWO ASTERISKS ALIGNED VERTICALLY + 0x2052: [706,200,471,54,417], // COMMERCIAL MINUS SIGN + 0x2057: [678,-401,710,75,635], // QUADRUPLE PRIME + 0x205F: [0,0,1000,0,0] // MEDIUM MATHEMATICAL SPACE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js new file mode 100644 index 0000000..71d99c9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js @@ -0,0 +1,118 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GeometricShapes.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x25A0: [662,158,910,45,865], // BLACK SQUARE + 0x25A1: [662,158,910,45,865], // WHITE SQUARE + 0x25A2: [662,158,910,45,865], // WHITE SQUARE WITH ROUNDED CORNERS + 0x25A3: [662,158,910,45,865], // WHITE SQUARE CONTAINING BLACK SMALL SQUARE + 0x25A4: [662,158,910,45,865], // SQUARE WITH HORIZONTAL FILL + 0x25A5: [662,158,910,45,865], // SQUARE WITH VERTICAL FILL + 0x25A6: [662,158,910,45,865], // SQUARE WITH ORTHOGONAL CROSSHATCH FILL + 0x25A7: [662,158,910,45,865], // SQUARE WITH UPPER LEFT TO LOWER RIGHT FILL + 0x25A8: [662,158,910,45,865], // SQUARE WITH UPPER RIGHT TO LOWER LEFT FILL + 0x25A9: [662,158,910,45,865], // SQUARE WITH DIAGONAL CROSSHATCH FILL + 0x25AA: [460,-40,484,32,452], // BLACK SMALL SQUARE + 0x25AB: [460,-40,484,32,452], // WHITE SMALL SQUARE + 0x25AC: [469,11,1020,38,982], // BLACK RECTANGLE + 0x25AD: [469,11,1020,38,982], // WHITE RECTANGLE + 0x25AE: [724,220,560,40,520], // BLACK VERTICAL RECTANGLE + 0x25AF: [724,220,560,40,520], // WHITE VERTICAL RECTANGLE + 0x25B0: [514,11,1140,28,1112], // BLACK PARALLELOGRAM + 0x25B1: [514,11,1140,29,1111], // WHITE PARALLELOGRAM + 0x25B2: [811,127,1145,35,1110], // BLACK UP-POINTING TRIANGLE + 0x25B4: [553,-28,660,27,632], // BLACK UP-POINTING SMALL TRIANGLE + 0x25B5: [553,-28,660,27,632], // WHITE UP-POINTING SMALL TRIANGLE + 0x25B6: [790,285,1043,70,1008], // BLACK RIGHT-POINTING TRIANGLE + 0x25B7: [791,284,1043,70,1008], // WHITE RIGHT-POINTING TRIANGLE + 0x25B8: [556,49,660,80,605], // BLACK RIGHT-POINTING SMALL TRIANGLE + 0x25BA: [555,50,930,65,885], // BLACK RIGHT-POINTING POINTER + 0x25BB: [555,50,930,65,885], // WHITE RIGHT-POINTING POINTER + 0x25BC: [811,127,1145,35,1110], // BLACK DOWN-POINTING TRIANGLE + 0x25BE: [477,48,660,27,632], // BLACK DOWN-POINTING SMALL TRIANGLE + 0x25BF: [477,48,660,27,632], // WHITE DOWN-POINTING SMALL TRIANGLE + 0x25C0: [790,285,1043,35,973], // BLACK LEFT-POINTING TRIANGLE + 0x25C1: [791,284,1043,70,1008], // WHITE LEFT-POINTING TRIANGLE + 0x25C2: [555,50,660,55,580], // BLACK LEFT-POINTING SMALL TRIANGLE + 0x25C4: [555,50,930,45,865], // BLACK LEFT-POINTING POINTER + 0x25C5: [555,50,930,45,865], // WHITE LEFT-POINTING POINTER + 0x25C6: [744,242,1064,39,1025], // BLACK DIAMOND + 0x25C7: [744,242,1064,39,1025], // WHITE DIAMOND + 0x25C8: [744,242,1064,39,1025], // WHITE DIAMOND CONTAINING BLACK SMALL DIAMOND + 0x25C9: [623,119,842,50,792], // FISHEYE + 0x25CA: [795,289,790,45,745], // LOZENGE + 0x25CB: [623,119,842,50,792], // WHITE CIRCLE + 0x25CC: [680,176,910,29,881], // DOTTED CIRCLE + 0x25CD: [680,176,910,27,884], // CIRCLE WITH VERTICAL FILL + 0x25CE: [623,119,842,50,792], // BULLSEYE + 0x25CF: [623,119,842,50,792], // BLACK CIRCLE + 0x25D0: [623,119,842,50,792], // CIRCLE WITH LEFT HALF BLACK + 0x25D1: [623,119,842,50,792], // CIRCLE WITH RIGHT HALF BLACK + 0x25D2: [623,119,842,50,792], // CIRCLE WITH LOWER HALF BLACK + 0x25D3: [623,119,842,50,792], // CIRCLE WITH UPPER HALF BLACK + 0x25D4: [623,119,842,50,792], // CIRCLE WITH UPPER RIGHT QUADRANT BLACK + 0x25D5: [623,119,842,50,792], // CIRCLE WITH ALL BUT UPPER LEFT QUADRANT BLACK + 0x25D6: [680,176,580,66,494], // LEFT HALF BLACK CIRCLE + 0x25D7: [680,176,580,86,514], // RIGHT HALF BLACK CIRCLE + 0x25D8: [662,158,910,45,865], // INVERSE BULLET + 0x25D9: [662,158,910,45,865], // INVERSE WHITE CIRCLE + 0x25DA: [662,-252,910,45,865], // UPPER HALF INVERSE WHITE CIRCLE + 0x25DB: [252,158,910,45,865], // LOWER HALF INVERSE WHITE CIRCLE + 0x25DC: [680,-252,910,27,455], // UPPER LEFT QUADRANT CIRCULAR ARC + 0x25DD: [680,-252,910,455,884], // UPPER RIGHT QUADRANT CIRCULAR ARC + 0x25DE: [252,176,910,455,884], // LOWER RIGHT QUADRANT CIRCULAR ARC + 0x25DF: [252,176,910,26,455], // LOWER LEFT QUADRANT CIRCULAR ARC + 0x25E0: [680,-251,910,27,884], // UPPER HALF CIRCLE + 0x25E1: [252,176,910,27,884], // LOWER HALF CIRCLE + 0x25E2: [662,158,911,45,865], // BLACK LOWER RIGHT TRIANGLE + 0x25E3: [662,158,911,45,865], // BLACK LOWER LEFT TRIANGLE + 0x25E4: [662,158,911,45,865], // BLACK UPPER LEFT TRIANGLE + 0x25E5: [662,158,911,45,865], // BLACK UPPER RIGHT TRIANGLE + 0x25E6: [444,-59,523,70,455], // WHITE BULLET + 0x25E7: [662,157,910,45,865], // SQUARE WITH LEFT HALF BLACK + 0x25E8: [662,157,910,45,865], // SQUARE WITH RIGHT HALF BLACK + 0x25E9: [662,157,910,45,865], // SQUARE WITH UPPER LEFT DIAGONAL HALF BLACK + 0x25EA: [662,157,910,45,865], // SQUARE WITH LOWER RIGHT DIAGONAL HALF BLACK + 0x25EB: [662,157,910,45,865], // WHITE SQUARE WITH VERTICAL BISECTING LINE + 0x25EC: [811,127,1145,35,1110], // WHITE UP-POINTING TRIANGLE WITH DOT + 0x25ED: [811,127,1145,35,1110], // UP-POINTING TRIANGLE WITH LEFT HALF BLACK + 0x25EE: [811,127,1145,35,1110], // UP-POINTING TRIANGLE WITH RIGHT HALF BLACK + 0x25F0: [662,158,910,45,865], // WHITE SQUARE WITH UPPER LEFT QUADRANT + 0x25F1: [662,158,910,45,865], // WHITE SQUARE WITH LOWER LEFT QUADRANT + 0x25F2: [662,158,910,45,865], // WHITE SQUARE WITH LOWER RIGHT QUADRANT + 0x25F3: [662,158,910,45,865], // WHITE SQUARE WITH UPPER RIGHT QUADRANT + 0x25F4: [623,119,842,50,792], // WHITE CIRCLE WITH UPPER LEFT QUADRANT + 0x25F5: [623,119,842,50,792], // WHITE CIRCLE WITH LOWER LEFT QUADRANT + 0x25F6: [623,119,842,50,792], // WHITE CIRCLE WITH LOWER RIGHT QUADRANT + 0x25F7: [623,119,842,50,792], // WHITE CIRCLE WITH UPPER RIGHT QUADRANT + 0x25F8: [662,158,911,45,865], // UPPER LEFT TRIANGLE + 0x25F9: [662,158,911,45,865], // UPPER RIGHT TRIANGLE + 0x25FA: [662,158,911,45,865], // LOWER LEFT TRIANGLE + 0x25FB: [580,76,746,45,701], // WHITE MEDIUM SQUARE + 0x25FC: [580,76,746,45,701], // BLACK MEDIUM SQUARE + 0x25FD: [513,12,601,38,563], // WHITE MEDIUM SMALL SQUARE + 0x25FE: [514,11,601,38,563], // BLACK MEDIUM SMALL SQUARE + 0x25FF: [662,158,911,45,865] // LOWER RIGHT TRIANGLE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/GeometricShapes.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js new file mode 100644 index 0000000..e547bff --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js @@ -0,0 +1,109 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekAndCoptic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x37E: [459,141,278,80,219], // GREEK QUESTION MARK + 0x384: [662,-507,277,113,240], // GREEK TONOS + 0x385: [662,-507,333,18,316], // GREEK DIALYTIKA TONOS + 0x386: [683,0,722,15,707], // GREEK CAPITAL LETTER ALPHA WITH TONOS + 0x387: [459,-348,278,81,192], // GREEK ANO TELEIA + 0x388: [683,0,750,8,737], // GREEK CAPITAL LETTER EPSILON WITH TONOS + 0x389: [683,0,850,8,836], // GREEK CAPITAL LETTER ETA WITH TONOS + 0x38A: [683,0,470,8,449], // GREEK CAPITAL LETTER IOTA WITH TONOS + 0x38C: [683,14,722,8,688], // GREEK CAPITAL LETTER OMICRON WITH TONOS + 0x38E: [683,0,840,8,818], // GREEK CAPITAL LETTER UPSILON WITH TONOS + 0x38F: [683,0,744,8,715], // GREEK CAPITAL LETTER OMEGA WITH TONOS + 0x390: [662,10,340,18,316], // GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS + 0x391: [674,0,722,15,707], // GREEK CAPITAL LETTER ALPHA + 0x392: [662,0,667,17,593], // GREEK CAPITAL LETTER BETA + 0x395: [662,0,611,12,597], // GREEK CAPITAL LETTER EPSILON + 0x396: [662,0,612,10,598], // GREEK CAPITAL LETTER ZETA + 0x397: [662,0,722,18,703], // GREEK CAPITAL LETTER ETA + 0x399: [662,0,333,18,315], // GREEK CAPITAL LETTER IOTA + 0x39A: [662,0,731,33,723], // GREEK CAPITAL LETTER KAPPA + 0x39C: [662,0,889,12,864], // GREEK CAPITAL LETTER MU + 0x39D: [662,11,722,12,707], // GREEK CAPITAL LETTER NU + 0x39F: [676,14,722,34,688], // GREEK CAPITAL LETTER OMICRON + 0x3A1: [662,0,557,16,542], // GREEK CAPITAL LETTER RHO + 0x3A4: [662,0,611,17,593], // GREEK CAPITAL LETTER TAU + 0x3A7: [662,0,722,10,704], // GREEK CAPITAL LETTER CHI + 0x3AA: [873,0,333,18,316], // GREEK CAPITAL LETTER IOTA WITH DIALYTIKA + 0x3AB: [873,0,722,29,703], // GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA + 0x3AC: [662,10,543,29,529], // GREEK SMALL LETTER ALPHA WITH TONOS + 0x3AD: [662,10,439,25,407], // GREEK SMALL LETTER EPSILON WITH TONOS + 0x3AE: [662,217,512,10,452], // GREEK SMALL LETTER ETA WITH TONOS + 0x3AF: [662,10,275,20,267], // GREEK SMALL LETTER IOTA WITH TONOS + 0x3B0: [662,10,524,16,494], // GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS + 0x3B1: [460,10,543,29,529], // GREEK SMALL LETTER ALPHA + 0x3B2: [683,217,496,55,466], // GREEK SMALL LETTER BETA + 0x3B3: [457,218,474,10,444], // GREEK SMALL LETTER GAMMA + 0x3B4: [683,10,500,29,470], // GREEK SMALL LETTER DELTA + 0x3B5: [460,10,439,25,407], // GREEK SMALL LETTER EPSILON + 0x3B6: [683,218,441,35,407], // GREEK SMALL LETTER ZETA + 0x3B7: [460,217,512,10,452], // GREEK SMALL LETTER ETA + 0x3B8: [683,10,496,27,468], // GREEK SMALL LETTER THETA + 0x3B9: [460,10,275,20,267], // GREEK SMALL LETTER IOTA + 0x3BA: [460,0,500,7,503], // GREEK SMALL LETTER KAPPA + 0x3BB: [683,11,497,12,492], // GREEK SMALL LETTER LAMDA + 0x3BC: [450,217,528,55,516], // GREEK SMALL LETTER MU + 0x3BD: [460,14,455,20,443], // GREEK SMALL LETTER NU + 0x3BE: [683,218,441,35,407], // GREEK SMALL LETTER XI + 0x3BF: [460,10,505,35,473], // GREEK SMALL LETTER OMICRON + 0x3C0: [450,14,501,9,482], // GREEK SMALL LETTER PI + 0x3C1: [460,217,496,55,466], // GREEK SMALL LETTER RHO + 0x3C2: [460,218,441,35,432], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [450,10,548,29,518], // GREEK SMALL LETTER SIGMA + 0x3C4: [450,10,477,3,442], // GREEK SMALL LETTER TAU + 0x3C5: [460,10,524,16,494], // GREEK SMALL LETTER UPSILON + 0x3C6: [460,217,623,29,593], // GREEK SMALL LETTER PHI + 0x3C7: [460,220,500,11,486], // GREEK SMALL LETTER CHI + 0x3C8: [460,217,694,20,684], // GREEK SMALL LETTER PSI + 0x3C9: [460,10,625,29,595], // GREEK SMALL LETTER OMEGA + 0x3CA: [622,10,340,18,316], // GREEK SMALL LETTER IOTA WITH DIALYTIKA + 0x3CB: [622,10,524,16,494], // GREEK SMALL LETTER UPSILON WITH DIALYTIKA + 0x3CC: [662,10,505,35,473], // GREEK SMALL LETTER OMICRON WITH TONOS + 0x3CD: [662,10,524,16,494], // GREEK SMALL LETTER UPSILON WITH TONOS + 0x3CE: [662,10,625,29,595], // GREEK SMALL LETTER OMEGA WITH TONOS + 0x3D0: [693,10,450,54,411], // GREEK BETA SYMBOL + 0x3D1: [683,10,554,0,544], // GREEK THETA SYMBOL + 0x3D2: [676,0,722,29,698], // GREEK UPSILON WITH HOOK SYMBOL + 0x3D5: [683,217,623,29,593], // GREEK PHI SYMBOL + 0x3D6: [450,10,762,6,726], // GREEK PI SYMBOL + 0x3D8: [676,217,722,34,688], // GREEK LETTER ARCHAIC KOPPA + 0x3D9: [460,217,500,29,470], // GREEK SMALL LETTER ARCHAIC KOPPA + 0x3DA: [676,218,667,28,622], // GREEK LETTER STIGMA + 0x3DB: [490,218,461,35,436], // GREEK SMALL LETTER STIGMA + 0x3DC: [662,0,556,11,546], // GREEK LETTER DIGAMMA + 0x3DD: [450,190,470,80,435], // GREEK SMALL LETTER DIGAMMA + 0x3DE: [797,14,703,13,678], // GREEK LETTER KOPPA + 0x3DF: [662,0,511,64,455], // GREEK SMALL LETTER KOPPA + 0x3E0: [676,218,801,11,767], // GREEK LETTER SAMPI + 0x3E1: [573,216,528,-6,487], // GREEK SMALL LETTER SAMPI + 0x3F0: [460,10,551,42,515], // GREEK KAPPA SYMBOL + 0x3F1: [460,215,500,29,470], // GREEK RHO SYMBOL + 0x3F4: [676,14,722,34,688], // GREEK CAPITAL THETA SYMBOL + 0x3F5: [460,10,439,25,407], // GREEK LUNATE EPSILON SYMBOL + 0x3F6: [460,10,444,32,414] // GREEK REVERSED LUNATE EPSILON SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/GreekAndCoptic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js new file mode 100644 index 0000000..14ac476 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D6A8: [690,0,735,9,689], // MATHEMATICAL BOLD CAPITAL ALPHA + 0x1D6A9: [676,0,667,16,619], // MATHEMATICAL BOLD CAPITAL BETA + 0x1D6AA: [676,0,620,16,593], // MATHEMATICAL BOLD CAPITAL GAMMA + 0x1D6AB: [690,0,691,16,656], // MATHEMATICAL BOLD CAPITAL DELTA + 0x1D6AC: [676,0,679,16,641], // MATHEMATICAL BOLD CAPITAL EPSILON + 0x1D6AD: [676,0,693,28,634], // MATHEMATICAL BOLD CAPITAL ZETA + 0x1D6AE: [676,0,810,21,759], // MATHEMATICAL BOLD CAPITAL ETA + 0x1D6AF: [692,18,778,35,743], // MATHEMATICAL BOLD CAPITAL THETA + 0x1D6B0: [676,0,421,20,370], // MATHEMATICAL BOLD CAPITAL IOTA + 0x1D6B1: [676,0,820,30,769], // MATHEMATICAL BOLD CAPITAL KAPPA + 0x1D6B2: [690,0,707,9,674], // MATHEMATICAL BOLD CAPITAL LAMDA + 0x1D6B3: [676,0,972,14,921], // MATHEMATICAL BOLD CAPITAL MU + 0x1D6B4: [676,18,722,16,701], // MATHEMATICAL BOLD CAPITAL NU + 0x1D6B5: [676,0,623,28,595], // MATHEMATICAL BOLD CAPITAL XI + 0x1D6B6: [691,19,778,35,743], // MATHEMATICAL BOLD CAPITAL OMICRON + 0x1D6B7: [676,0,780,21,759], // MATHEMATICAL BOLD CAPITAL PI + 0x1D6B8: [676,0,611,16,600], // MATHEMATICAL BOLD CAPITAL RHO + 0x1D6B9: [692,18,778,35,743], // MATHEMATICAL BOLD CAPITAL THETA SYMBOL + 0x1D6BA: [676,0,665,14,627], // MATHEMATICAL BOLD CAPITAL SIGMA + 0x1D6BB: [676,0,667,31,636], // MATHEMATICAL BOLD CAPITAL TAU + 0x1D6BC: [692,0,722,3,699], // MATHEMATICAL BOLD CAPITAL UPSILON + 0x1D6BD: [676,0,836,18,818], // MATHEMATICAL BOLD CAPITAL PHI + 0x1D6BE: [676,0,747,16,699], // MATHEMATICAL BOLD CAPITAL CHI + 0x1D6BF: [692,0,800,3,785], // MATHEMATICAL BOLD CAPITAL PSI + 0x1D6C0: [692,0,778,35,723], // MATHEMATICAL BOLD CAPITAL OMEGA + 0x1D6C1: [676,14,691,16,656], // MATHEMATICAL BOLD NABLA + 0x1D6C2: [473,14,644,25,618], // MATHEMATICAL BOLD SMALL ALPHA + 0x1D6C3: [692,205,556,45,524], // MATHEMATICAL BOLD SMALL BETA + 0x1D6C4: [473,205,518,12,501], // MATHEMATICAL BOLD SMALL GAMMA + 0x1D6C5: [692,14,502,26,477], // MATHEMATICAL BOLD SMALL DELTA + 0x1D6C6: [473,14,444,28,429], // MATHEMATICAL BOLD SMALL EPSILON + 0x1D6C7: [692,205,459,23,437], // MATHEMATICAL BOLD SMALL ZETA + 0x1D6C8: [473,205,580,12,545], // MATHEMATICAL BOLD SMALL ETA + 0x1D6C9: [692,14,501,25,476], // MATHEMATICAL BOLD SMALL THETA + 0x1D6CA: [461,14,326,15,304], // MATHEMATICAL BOLD SMALL IOTA + 0x1D6CB: [473,0,581,21,559], // MATHEMATICAL BOLD SMALL KAPPA + 0x1D6CC: [692,18,546,19,527], // MATHEMATICAL BOLD SMALL LAMDA + 0x1D6CD: [461,205,610,45,588], // MATHEMATICAL BOLD SMALL MU + 0x1D6CE: [473,14,518,15,495], // MATHEMATICAL BOLD SMALL NU + 0x1D6CF: [692,205,465,23,439], // MATHEMATICAL BOLD SMALL XI + 0x1D6D0: [473,14,500,25,476], // MATHEMATICAL BOLD SMALL OMICRON + 0x1D6D1: [461,18,631,20,609], // MATHEMATICAL BOLD SMALL PI + 0x1D6D2: [473,205,547,45,515], // MATHEMATICAL BOLD SMALL RHO + 0x1D6D3: [473,203,464,23,444], // MATHEMATICAL BOLD SMALL FINAL SIGMA + 0x1D6D4: [461,14,568,25,529], // MATHEMATICAL BOLD SMALL SIGMA + 0x1D6D5: [461,14,492,18,457], // MATHEMATICAL BOLD SMALL TAU + 0x1D6D6: [473,14,576,12,551], // MATHEMATICAL BOLD SMALL UPSILON + 0x1D6D7: [473,205,653,24,629], // MATHEMATICAL BOLD SMALL PHI + 0x1D6D8: [473,205,612,21,586], // MATHEMATICAL BOLD SMALL CHI + 0x1D6D9: [473,205,763,12,751], // MATHEMATICAL BOLD SMALL PSI + 0x1D6DA: [473,14,734,26,708], // MATHEMATICAL BOLD SMALL OMEGA + 0x1D6DB: [707,14,515,25,491], // MATHEMATICAL BOLD PARTIAL DIFFERENTIAL + 0x1D6DC: [473,14,444,25,430], // MATHEMATICAL BOLD EPSILON SYMBOL + 0x1D6DD: [692,14,647,12,620], // MATHEMATICAL BOLD THETA SYMBOL + 0x1D6DE: [473,19,563,12,546], // MATHEMATICAL BOLD KAPPA SYMBOL + 0x1D6DF: [676,205,653,24,629], // MATHEMATICAL BOLD PHI SYMBOL + 0x1D6E0: [473,205,511,25,486], // MATHEMATICAL BOLD RHO SYMBOL + 0x1D6E1: [461,14,864,9,851] // MATHEMATICAL BOLD PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/GreekBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js new file mode 100644 index 0000000..c801599 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBoldItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D71C: [685,0,759,39,724], // MATHEMATICAL BOLD ITALIC CAPITAL ALPHA + 0x1D71D: [669,0,726,42,715], // MATHEMATICAL BOLD ITALIC CAPITAL BETA + 0x1D71E: [669,0,634,42,749], // MATHEMATICAL BOLD ITALIC CAPITAL GAMMA + 0x1D71F: [685,0,632,32,589], // MATHEMATICAL BOLD ITALIC CAPITAL DELTA + 0x1D720: [669,0,732,42,754], // MATHEMATICAL BOLD ITALIC CAPITAL EPSILON + 0x1D721: [669,0,797,66,830], // MATHEMATICAL BOLD ITALIC CAPITAL ZETA + 0x1D722: [669,0,891,42,946], // MATHEMATICAL BOLD ITALIC CAPITAL ETA + 0x1D723: [685,16,783,55,755], // MATHEMATICAL BOLD ITALIC CAPITAL THETA + 0x1D724: [669,0,502,42,557], // MATHEMATICAL BOLD ITALIC CAPITAL IOTA + 0x1D725: [669,0,795,42,839], // MATHEMATICAL BOLD ITALIC CAPITAL KAPPA + 0x1D726: [685,0,759,39,724], // MATHEMATICAL BOLD ITALIC CAPITAL LAMDA + 0x1D727: [669,0,1016,42,1071], // MATHEMATICAL BOLD ITALIC CAPITAL MU + 0x1D728: [669,0,869,42,924], // MATHEMATICAL BOLD ITALIC CAPITAL NU + 0x1D729: [669,0,718,57,757], // MATHEMATICAL BOLD ITALIC CAPITAL XI + 0x1D72A: [685,16,777,55,755], // MATHEMATICAL BOLD ITALIC CAPITAL OMICRON + 0x1D72B: [669,0,887,39,942], // MATHEMATICAL BOLD ITALIC CAPITAL PI + 0x1D72C: [669,0,612,42,733], // MATHEMATICAL BOLD ITALIC CAPITAL RHO + 0x1D72D: [685,16,783,55,755], // MATHEMATICAL BOLD ITALIC CAPITAL THETA SYMBOL + 0x1D72E: [669,0,759,64,787], // MATHEMATICAL BOLD ITALIC CAPITAL SIGMA + 0x1D72F: [669,0,568,28,700], // MATHEMATICAL BOLD ITALIC CAPITAL TAU + 0x1D730: [685,0,641,31,784], // MATHEMATICAL BOLD ITALIC CAPITAL UPSILON + 0x1D731: [669,0,827,28,799], // MATHEMATICAL BOLD ITALIC CAPITAL PHI + 0x1D732: [669,0,808,28,830], // MATHEMATICAL BOLD ITALIC CAPITAL CHI + 0x1D733: [685,0,694,30,781], // MATHEMATICAL BOLD ITALIC CAPITAL PSI + 0x1D734: [685,0,826,57,815], // MATHEMATICAL BOLD ITALIC CAPITAL OMEGA + 0x1D735: [669,16,632,43,600], // MATHEMATICAL BOLD ITALIC NABLA + 0x1D736: [461,12,624,44,630], // MATHEMATICAL BOLD ITALIC SMALL ALPHA + 0x1D737: [685,205,555,28,583], // MATHEMATICAL BOLD ITALIC SMALL BETA + 0x1D738: [462,202,490,44,503], // MATHEMATICAL BOLD ITALIC SMALL GAMMA + 0x1D739: [685,8,538,44,538], // MATHEMATICAL BOLD ITALIC SMALL DELTA + 0x1D73A: [462,10,495,28,451], // MATHEMATICAL BOLD ITALIC SMALL EPSILON + 0x1D73B: [685,203,472,44,522], // MATHEMATICAL BOLD ITALIC SMALL ZETA + 0x1D73C: [462,205,517,33,511], // MATHEMATICAL BOLD ITALIC SMALL ETA + 0x1D73D: [686,11,566,44,555], // MATHEMATICAL BOLD ITALIC SMALL THETA + 0x1D73E: [462,9,318,55,274], // MATHEMATICAL BOLD ITALIC SMALL IOTA + 0x1D73F: [462,0,560,55,577], // MATHEMATICAL BOLD ITALIC SMALL KAPPA + 0x1D740: [685,16,570,55,537], // MATHEMATICAL BOLD ITALIC SMALL LAMDA + 0x1D741: [450,205,636,33,603], // MATHEMATICAL BOLD ITALIC SMALL MU + 0x1D742: [459,10,523,55,534], // MATHEMATICAL BOLD ITALIC SMALL NU + 0x1D743: [685,203,476,28,487], // MATHEMATICAL BOLD ITALIC SMALL XI + 0x1D744: [462,10,561,44,539], // MATHEMATICAL BOLD ITALIC SMALL OMICRON + 0x1D745: [450,13,579,39,590], // MATHEMATICAL BOLD ITALIC SMALL PI + 0x1D746: [462,205,595,33,562], // MATHEMATICAL BOLD ITALIC SMALL RHO + 0x1D747: [462,203,480,39,508], // MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA + 0x1D748: [450,10,592,44,603], // MATHEMATICAL BOLD ITALIC SMALL SIGMA + 0x1D749: [450,7,469,33,502], // MATHEMATICAL BOLD ITALIC SMALL TAU + 0x1D74A: [462,10,552,33,535], // MATHEMATICAL BOLD ITALIC SMALL UPSILON + 0x1D74B: [462,205,706,55,667], // MATHEMATICAL BOLD ITALIC SMALL PHI + 0x1D74C: [462,204,621,33,676], // MATHEMATICAL BOLD ITALIC SMALL CHI + 0x1D74D: [462,205,701,33,756], // MATHEMATICAL BOLD ITALIC SMALL PSI + 0x1D74E: [462,10,687,22,665], // MATHEMATICAL BOLD ITALIC SMALL OMEGA + 0x1D74F: [686,10,559,44,559], // MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL + 0x1D750: [461,10,481,44,481], // MATHEMATICAL BOLD ITALIC EPSILON SYMBOL + 0x1D751: [698,13,607,33,584], // MATHEMATICAL BOLD ITALIC THETA SYMBOL + 0x1D752: [462,15,607,-12,630], // MATHEMATICAL BOLD ITALIC KAPPA SYMBOL + 0x1D753: [685,205,683,44,655], // MATHEMATICAL BOLD ITALIC PHI SYMBOL + 0x1D754: [462,205,585,44,563], // MATHEMATICAL BOLD ITALIC RHO SYMBOL + 0x1D755: [450,10,868,33,879] // MATHEMATICAL BOLD ITALIC PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/GreekBoldItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js new file mode 100644 index 0000000..bd84fc2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D6E2: [667,0,717,35,685], // MATHEMATICAL ITALIC CAPITAL ALPHA + 0x1D6E3: [653,0,696,38,686], // MATHEMATICAL ITALIC CAPITAL BETA + 0x1D6E4: [653,0,616,38,721], // MATHEMATICAL ITALIC CAPITAL GAMMA + 0x1D6E5: [667,0,596,30,556], // MATHEMATICAL ITALIC CAPITAL DELTA + 0x1D6E6: [653,0,714,38,734], // MATHEMATICAL ITALIC CAPITAL EPSILON + 0x1D6E7: [653,0,772,60,802], // MATHEMATICAL ITALIC CAPITAL ZETA + 0x1D6E8: [653,0,873,38,923], // MATHEMATICAL ITALIC CAPITAL ETA + 0x1D6E9: [669,11,737,50,712], // MATHEMATICAL ITALIC CAPITAL THETA + 0x1D6EA: [653,0,480,38,530], // MATHEMATICAL ITALIC CAPITAL IOTA + 0x1D6EB: [653,0,762,38,802], // MATHEMATICAL ITALIC CAPITAL KAPPA + 0x1D6EC: [667,0,718,35,686], // MATHEMATICAL ITALIC CAPITAL LAMDA + 0x1D6ED: [653,0,1005,38,1055], // MATHEMATICAL ITALIC CAPITAL MU + 0x1D6EE: [653,0,851,38,901], // MATHEMATICAL ITALIC CAPITAL NU + 0x1D6EF: [653,0,706,52,741], // MATHEMATICAL ITALIC CAPITAL XI + 0x1D6F0: [669,11,732,50,712], // MATHEMATICAL ITALIC CAPITAL OMICRON + 0x1D6F1: [653,0,873,38,923], // MATHEMATICAL ITALIC CAPITAL PI + 0x1D6F2: [653,0,594,38,704], // MATHEMATICAL ITALIC CAPITAL RHO + 0x1D6F3: [669,11,737,50,712], // MATHEMATICAL ITALIC CAPITAL THETA SYMBOL + 0x1D6F4: [653,0,735,58,760], // MATHEMATICAL ITALIC CAPITAL SIGMA + 0x1D6F5: [653,0,550,25,670], // MATHEMATICAL ITALIC CAPITAL TAU + 0x1D6F6: [668,0,613,28,743], // MATHEMATICAL ITALIC CAPITAL UPSILON + 0x1D6F7: [653,0,772,25,747], // MATHEMATICAL ITALIC CAPITAL PHI + 0x1D6F8: [653,0,790,25,810], // MATHEMATICAL ITALIC CAPITAL CHI + 0x1D6F9: [667,0,670,28,743], // MATHEMATICAL ITALIC CAPITAL PSI + 0x1D6FA: [666,0,800,32,777], // MATHEMATICAL ITALIC CAPITAL OMEGA + 0x1D6FB: [653,15,627,42,600], // MATHEMATICAL ITALIC NABLA + 0x1D6FC: [441,10,524,40,529], // MATHEMATICAL ITALIC SMALL ALPHA + 0x1D6FD: [668,183,493,25,518], // MATHEMATICAL ITALIC SMALL BETA + 0x1D6FE: [441,187,428,35,458], // MATHEMATICAL ITALIC SMALL GAMMA + 0x1D6FF: [668,11,463,40,451], // MATHEMATICAL ITALIC SMALL DELTA + 0x1D700: [441,11,484,25,444], // MATHEMATICAL ITALIC SMALL EPSILON + 0x1D701: [668,183,435,40,480], // MATHEMATICAL ITALIC SMALL ZETA + 0x1D702: [441,183,460,30,455], // MATHEMATICAL ITALIC SMALL ETA + 0x1D703: [668,11,484,40,474], // MATHEMATICAL ITALIC SMALL THETA + 0x1D704: [441,11,267,50,227], // MATHEMATICAL ITALIC SMALL IOTA + 0x1D705: [441,0,534,50,549], // MATHEMATICAL ITALIC SMALL KAPPA + 0x1D706: [668,16,541,50,511], // MATHEMATICAL ITALIC SMALL LAMDA + 0x1D707: [428,183,579,30,549], // MATHEMATICAL ITALIC SMALL MU + 0x1D708: [446,9,452,50,462], // MATHEMATICAL ITALIC SMALL NU + 0x1D709: [668,183,433,25,443], // MATHEMATICAL ITALIC SMALL XI + 0x1D70A: [441,11,458,40,438], // MATHEMATICAL ITALIC SMALL OMICRON + 0x1D70B: [428,13,558,35,568], // MATHEMATICAL ITALIC SMALL PI + 0x1D70C: [441,183,502,30,472], // MATHEMATICAL ITALIC SMALL RHO + 0x1D70D: [490,183,439,35,464], // MATHEMATICAL ITALIC SMALL FINAL SIGMA + 0x1D70E: [428,11,537,40,547], // MATHEMATICAL ITALIC SMALL SIGMA + 0x1D70F: [428,5,442,30,472], // MATHEMATICAL ITALIC SMALL TAU + 0x1D710: [439,11,460,30,445], // MATHEMATICAL ITALIC SMALL UPSILON + 0x1D711: [441,183,666,50,631], // MATHEMATICAL ITALIC SMALL PHI + 0x1D712: [441,202,595,30,645], // MATHEMATICAL ITALIC SMALL CHI + 0x1D713: [441,183,661,30,711], // MATHEMATICAL ITALIC SMALL PSI + 0x1D714: [441,11,681,20,661], // MATHEMATICAL ITALIC SMALL OMEGA + 0x1D715: [668,11,471,40,471], // MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL + 0x1D716: [441,11,430,40,430], // MATHEMATICAL ITALIC EPSILON SYMBOL + 0x1D717: [678,10,554,20,507], // MATHEMATICAL ITALIC THETA SYMBOL + 0x1D718: [441,13,561,12,587], // MATHEMATICAL ITALIC KAPPA SYMBOL + 0x1D719: [668,183,645,40,620], // MATHEMATICAL ITALIC PHI SYMBOL + 0x1D71A: [441,187,509,40,489], // MATHEMATICAL ITALIC RHO SYMBOL + 0x1D71B: [428,11,856,30,866] // MATHEMATICAL ITALIC PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/GreekItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js new file mode 100644 index 0000000..a8da61f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D756: [690,0,690,25,665], // MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA + 0x1D757: [676,0,636,80,594], // MATHEMATICAL SANS-SERIF BOLD CAPITAL BETA + 0x1D758: [676,0,591,80,569], // MATHEMATICAL SANS-SERIF BOLD CAPITAL GAMMA + 0x1D759: [690,0,720,40,680], // MATHEMATICAL SANS-SERIF BOLD CAPITAL DELTA + 0x1D75A: [676,0,635,80,597], // MATHEMATICAL SANS-SERIF BOLD CAPITAL EPSILON + 0x1D75B: [676,0,653,25,623], // MATHEMATICAL SANS-SERIF BOLD CAPITAL ZETA + 0x1D75C: [676,0,715,80,635], // MATHEMATICAL SANS-SERIF BOLD CAPITAL ETA + 0x1D75D: [691,19,778,35,743], // MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA + 0x1D75E: [676,0,440,65,375], // MATHEMATICAL SANS-SERIF BOLD CAPITAL IOTA + 0x1D75F: [676,0,712,80,707], // MATHEMATICAL SANS-SERIF BOLD CAPITAL KAPPA + 0x1D760: [690,0,706,40,666], // MATHEMATICAL SANS-SERIF BOLD CAPITAL LAMDA + 0x1D761: [676,0,913,80,833], // MATHEMATICAL SANS-SERIF BOLD CAPITAL MU + 0x1D762: [676,18,724,80,644], // MATHEMATICAL SANS-SERIF BOLD CAPITAL NU + 0x1D763: [676,0,640,35,605], // MATHEMATICAL SANS-SERIF BOLD CAPITAL XI + 0x1D764: [692,18,778,35,743], // MATHEMATICAL SANS-SERIF BOLD CAPITAL OMICRON + 0x1D765: [676,0,715,80,635], // MATHEMATICAL SANS-SERIF BOLD CAPITAL PI + 0x1D766: [676,0,581,80,569], // MATHEMATICAL SANS-SERIF BOLD CAPITAL RHO + 0x1D767: [691,19,778,35,743], // MATHEMATICAL SANS-SERIF BOLD CAPITAL THETA SYMBOL + 0x1D768: [676,0,674,28,632], // MATHEMATICAL SANS-SERIF BOLD CAPITAL SIGMA + 0x1D769: [676,0,641,14,627], // MATHEMATICAL SANS-SERIF BOLD CAPITAL TAU + 0x1D76A: [691,0,748,20,728], // MATHEMATICAL SANS-SERIF BOLD CAPITAL UPSILON + 0x1D76B: [676,0,800,25,775], // MATHEMATICAL SANS-SERIF BOLD CAPITAL PHI + 0x1D76C: [676,0,740,40,700], // MATHEMATICAL SANS-SERIF BOLD CAPITAL CHI + 0x1D76D: [691,0,806,15,791], // MATHEMATICAL SANS-SERIF BOLD CAPITAL PSI + 0x1D76E: [691,0,752,32,720], // MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA + 0x1D76F: [664,30,735,45,685], // MATHEMATICAL SANS-SERIF BOLD NABLA + 0x1D770: [473,14,662,40,629], // MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA + 0x1D771: [692,205,512,39,487], // MATHEMATICAL SANS-SERIF BOLD SMALL BETA + 0x1D772: [473,205,502,10,477], // MATHEMATICAL SANS-SERIF BOLD SMALL GAMMA + 0x1D773: [692,14,502,25,477], // MATHEMATICAL SANS-SERIF BOLD SMALL DELTA + 0x1D774: [473,14,451,25,434], // MATHEMATICAL SANS-SERIF BOLD SMALL EPSILON + 0x1D775: [692,205,500,28,488], // MATHEMATICAL SANS-SERIF BOLD SMALL ZETA + 0x1D776: [473,205,510,35,474], // MATHEMATICAL SANS-SERIF BOLD SMALL ETA + 0x1D777: [692,14,500,23,477], // MATHEMATICAL SANS-SERIF BOLD SMALL THETA + 0x1D778: [461,14,319,53,296], // MATHEMATICAL SANS-SERIF BOLD SMALL IOTA + 0x1D779: [473,0,527,55,512], // MATHEMATICAL SANS-SERIF BOLD SMALL KAPPA + 0x1D77A: [692,14,554,18,520], // MATHEMATICAL SANS-SERIF BOLD SMALL LAMDA + 0x1D77B: [461,205,550,39,517], // MATHEMATICAL SANS-SERIF BOLD SMALL MU + 0x1D77C: [473,14,492,55,472], // MATHEMATICAL SANS-SERIF BOLD SMALL NU + 0x1D77D: [692,205,501,28,489], // MATHEMATICAL SANS-SERIF BOLD SMALL XI + 0x1D77E: [473,14,501,25,476], // MATHEMATICAL SANS-SERIF BOLD SMALL OMICRON + 0x1D77F: [461,14,594,10,572], // MATHEMATICAL SANS-SERIF BOLD SMALL PI + 0x1D780: [473,205,511,38,486], // MATHEMATICAL SANS-SERIF BOLD SMALL RHO + 0x1D781: [473,205,498,26,486], // MATHEMATICAL SANS-SERIF BOLD SMALL FINAL SIGMA + 0x1D782: [461,14,520,25,552], // MATHEMATICAL SANS-SERIF BOLD SMALL SIGMA + 0x1D783: [461,14,479,6,472], // MATHEMATICAL SANS-SERIF BOLD SMALL TAU + 0x1D784: [473,14,514,35,489], // MATHEMATICAL SANS-SERIF BOLD SMALL UPSILON + 0x1D785: [473,205,634,25,609], // MATHEMATICAL SANS-SERIF BOLD SMALL PHI + 0x1D786: [473,205,573,9,553], // MATHEMATICAL SANS-SERIF BOLD SMALL CHI + 0x1D787: [473,205,680,25,699], // MATHEMATICAL SANS-SERIF BOLD SMALL PSI + 0x1D788: [461,14,740,42,689], // MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA + 0x1D789: [691,14,501,25,476], // MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL + 0x1D78A: [473,14,462,25,440], // MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL + 0x1D78B: [692,14,536,35,522], // MATHEMATICAL SANS-SERIF BOLD THETA SYMBOL + 0x1D78C: [473,14,570,14,554], // MATHEMATICAL SANS-SERIF BOLD KAPPA SYMBOL + 0x1D78D: [692,205,634,25,609], // MATHEMATICAL SANS-SERIF BOLD PHI SYMBOL + 0x1D78E: [473,205,494,25,469], // MATHEMATICAL SANS-SERIF BOLD RHO SYMBOL + 0x1D78F: [461,14,848,6,839] // MATHEMATICAL SANS-SERIF BOLD PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/GreekSSBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js new file mode 100644 index 0000000..03d4a50 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js @@ -0,0 +1,85 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekSSBoldItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D790: [690,0,690,25,665], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA + 0x1D791: [676,0,706,60,671], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL BETA + 0x1D792: [676,0,602,60,705], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL GAMMA + 0x1D793: [690,0,720,40,680], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL DELTA + 0x1D794: [676,0,683,60,708], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL EPSILON + 0x1D795: [676,0,707,25,769], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ZETA + 0x1D796: [676,0,748,60,783], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ETA + 0x1D797: [691,19,847,90,822], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA + 0x1D798: [676,0,435,50,505], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL IOTA + 0x1D799: [676,0,712,60,796], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL KAPPA + 0x1D79A: [690,0,686,20,646], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL LAMDA + 0x1D79B: [676,0,933,60,981], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL MU + 0x1D79C: [676,18,744,60,792], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL NU + 0x1D79D: [676,0,690,47,737], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL XI + 0x1D79E: [692,18,849,90,824], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMICRON + 0x1D79F: [676,0,745,60,783], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PI + 0x1D7A0: [676,0,581,60,675], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL RHO + 0x1D7A1: [691,19,847,90,822], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL THETA SYMBOL + 0x1D7A2: [676,0,696,21,748], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL SIGMA + 0x1D7A3: [676,0,641,87,715], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL TAU + 0x1D7A4: [691,0,671,91,799], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL UPSILON + 0x1D7A5: [676,0,835,72,835], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PHI + 0x1D7A6: [676,0,740,20,833], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL CHI + 0x1D7A7: [691,0,791,125,901], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL PSI + 0x1D7A8: [691,0,816,47,816], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA + 0x1D7A9: [664,30,780,120,760], // MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA + 0x1D7AA: [473,14,678,47,703], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA + 0x1D7AB: [692,205,552,-12,581], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL BETA + 0x1D7AC: [473,204,525,84,571], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL GAMMA + 0x1D7AD: [692,14,507,30,547], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL DELTA + 0x1D7AE: [473,14,504,45,508], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL EPSILON + 0x1D7AF: [692,205,480,49,539], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ZETA + 0x1D7B0: [473,205,532,38,525], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ETA + 0x1D7B1: [692,14,560,65,553], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL THETA + 0x1D7B2: [462,14,325,56,302], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL IOTA + 0x1D7B3: [473,0,537,38,582], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL KAPPA + 0x1D7B4: [692,14,574,18,540], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL LAMDA + 0x1D7B5: [462,205,594,-12,569], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL MU + 0x1D7B6: [473,14,525,41,565], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL NU + 0x1D7B7: [692,205,481,43,525], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL XI + 0x1D7B8: [473,14,543,45,515], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMICRON + 0x1D7B9: [462,14,632,45,656], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PI + 0x1D7BA: [473,205,560,-33,536], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL RHO + 0x1D7BB: [473,205,517,52,554], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL FINAL SIGMA + 0x1D7BC: [462,14,614,45,639], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL SIGMA + 0x1D7BD: [462,14,523,42,547], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL TAU + 0x1D7BE: [473,14,550,61,526], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL UPSILON + 0x1D7BF: [473,205,683,55,659], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PHI + 0x1D7C0: [473,205,575,-80,626], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL CHI + 0x1D7C1: [473,205,703,75,751], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL PSI + 0x1D7C2: [461,14,756,64,732], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA + 0x1D7C3: [691,14,548,45,539], // MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL + 0x1D7C4: [473,14,468,45,470], // MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL + 0x1D7C5: [692,14,579,54,579], // MATHEMATICAL SANS-SERIF BOLD ITALIC THETA SYMBOL + 0x1D7C6: [473,10,646,-10,665], // MATHEMATICAL SANS-SERIF BOLD ITALIC KAPPA SYMBOL + 0x1D7C7: [692,205,678,48,654], // MATHEMATICAL SANS-SERIF BOLD ITALIC PHI SYMBOL + 0x1D7C8: [473,205,544,38,520], // MATHEMATICAL SANS-SERIF BOLD ITALIC RHO SYMBOL + 0x1D7C9: [462,14,889,40,912] // MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/GreekSSBoldItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js new file mode 100644 index 0000000..21f9ed1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x306E: [661,41,901,37,840] // HIRAGANA LETTER NO + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Hiragana.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js new file mode 100644 index 0000000..e430d60 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js @@ -0,0 +1,118 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/IPAExtensions.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x250: [460,10,444,8,413], // ?? + 0x251: [460,10,500,27,491], // ?? + 0x252: [460,10,500,27,491], // ?? + 0x253: [683,10,500,69,468], // ?? + 0x254: [459,11,444,10,397], // ?? + 0x255: [460,160,444,25,417], // ?? + 0x256: [683,233,553,27,599], // ?? + 0x257: [683,10,587,27,602], // ?? + 0x258: [460,10,444,20,419], // ?? + 0x259: [460,10,444,14,413], // ?? + 0x25A: [460,13,657,36,651], // ?? + 0x25B: [475,14,438,20,389], // ?? + 0x25C: [475,14,438,20,389], // ?? + 0x25D: [475,14,623,20,603], // ?? + 0x25E: [475,14,479,20,430], // ?? + 0x25F: [460,218,315,-49,296], // ?? + 0x260: [683,212,594,32,634], // ?? + 0x261: [482,212,537,32,455], // ?? + 0x262: [450,11,570,30,539], // ?? + 0x263: [450,234,500,19,480], // ?? + 0x264: [450,10,500,13,486], // ?? + 0x265: [450,233,500,13,491], // ?? + 0x266: [683,0,500,9,487], // ?? + 0x267: [683,233,481,9,427], // ?? + 0x268: [683,0,278,16,253], // ?? + 0x269: [454,10,333,17,311], // ?? + 0x26A: [450,0,258,21,231], // ?? + 0x26B: [683,0,350,10,340], // ?? + 0x26C: [683,0,375,12,362], // ?? + 0x26D: [683,233,302,10,352], // ?? + 0x26E: [683,233,549,19,538], // ?? + 0x26F: [450,10,778,11,770], // ?? + 0x270: [450,233,803,11,785], // ?? + 0x271: [460,233,778,16,706], // ?? + 0x272: [460,233,529,-70,514], // ?? + 0x273: [460,233,533,16,603], // ?? + 0x274: [450,8,602,29,561], // ?? + 0x275: [460,10,500,29,470], // ?? + 0x276: [450,6,720,23,697], // ?? + 0x277: [475,4,667,37,629], // ?? + 0x278: [683,233,667,40,626], // ?? + 0x279: [450,10,370,30,360], // ?? + 0x27A: [683,10,370,30,364], // ?? + 0x27B: [450,233,418,30,468], // ?? + 0x27C: [460,233,333,5,335], // ?? + 0x27D: [460,233,370,7,339], // ?? + 0x27E: [470,0,315,10,337], // ?? + 0x27F: [470,0,350,5,332], // ?? + 0x280: [464,0,475,21,470], // ?? + 0x281: [464,0,475,21,470], // ?? + 0x282: [458,218,389,50,348], // ?? + 0x283: [683,233,322,-70,372], // ?? + 0x284: [683,218,304,-70,372], // ?? + 0x285: [470,233,400,15,457], // ?? + 0x286: [683,243,437,-23,422], // ?? + 0x287: [460,129,278,16,282], // ?? + 0x288: [579,233,270,13,283], // ?? + 0x289: [450,10,500,9,480], // ?? + 0x28A: [450,10,537,46,490], // ?? + 0x28B: [460,10,500,32,476], // ?? + 0x28C: [464,0,500,-4,454], // ?? + 0x28D: [464,0,722,21,694], // ?? + 0x28E: [668,0,444,-2,459], // ?? + 0x28F: [464,0,587,23,564], // ?? + 0x290: [450,218,528,27,569], // ?? + 0x291: [450,150,507,27,487], // ?? + 0x292: [450,233,413,12,392], // ?? + 0x293: [450,305,431,12,410], // ?? + 0x294: [683,0,450,47,400], // ?? + 0x295: [683,0,450,48,401], // ?? + 0x296: [662,14,450,47,400], // ?? + 0x297: [460,230,450,80,410], // ?? + 0x298: [679,17,723,33,690], // ?? + 0x299: [464,0,460,15,444], // ?? + 0x29A: [475,14,479,20,430], // ?? + 0x29B: [523,11,600,29,583], // ?? + 0x29C: [464,0,572,21,560], // ?? + 0x29D: [683,233,387,-23,412], // ?? + 0x29E: [450,233,519,1,499], // ?? + 0x29F: [464,0,470,21,441], // ?? + 0x2A0: [582,217,600,24,590], // ?? + 0x2A1: [683,0,450,48,401], // ?? + 0x2A2: [683,0,450,48,401], // ?? + 0x2A3: [683,10,802,27,775], // ?? + 0x2A4: [683,233,743,27,722], // ?? + 0x2A5: [683,160,864,27,844], // ?? + 0x2A6: [579,10,536,13,495], // ?? + 0x2A7: [683,233,483,13,540], // ?? + 0x2A8: [579,10,650,13,641], // ?? + 0x2AE: [469,232,619,15,612], // ?? + 0x2AF: [469,233,679,15,729] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/IPAExtensions.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js new file mode 100644 index 0000000..b8852eb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js @@ -0,0 +1,115 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Latin1Supplement.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0xA1: [468,218,330,96,202], // INVERTED EXCLAMATION MARK + 0xA2: [579,138,500,53,448], // CENT SIGN + 0xA3: [676,8,500,12,490], // POUND SIGN + 0xA4: [534,10,500,-22,522], // CURRENCY SIGN + 0xA5: [662,0,500,-53,512], // YEN SIGN + 0xA6: [676,14,200,67,133], // BROKEN BAR + 0xA7: [676,148,500,70,426], // SECTION SIGN + 0xA9: [676,14,760,38,722], // COPYRIGHT SIGN + 0xAA: [676,-394,276,4,270], // FEMININE ORDINAL INDICATOR + 0xAB: [416,-33,500,42,456], // LEFT-POINTING DOUBLE ANGLE QUOTATION MARK + 0xAD: [257,-194,333,39,285], // SOFT HYPHEN + 0xAE: [676,14,760,38,722], // REGISTERED SIGN + 0xB0: [676,-390,400,57,343], // DEGREE SIGN + 0xB2: [676,-270,300,1,296], // SUPERSCRIPT TWO + 0xB3: [676,-262,300,13,291], // SUPERSCRIPT THREE + 0xB4: [678,-507,333,93,317], // ACUTE ACCENT + 0xB5: [450,218,500,36,512], // MICRO SIGN + 0xB6: [662,154,592,60,532], // PILCROW SIGN + 0xB8: [0,215,333,52,261], // CEDILLA + 0xB9: [676,-270,300,57,248], // SUPERSCRIPT ONE + 0xBA: [676,-394,310,6,304], // MASCULINE ORDINAL INDICATOR + 0xBB: [416,-33,500,43,458], // RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK + 0xBC: [676,14,750,42,713], // VULGAR FRACTION ONE QUARTER + 0xBD: [676,14,750,36,741], // VULGAR FRACTION ONE HALF + 0xBE: [676,14,750,13,718], // VULGAR FRACTION THREE QUARTERS + 0xBF: [467,218,444,30,376], // INVERTED QUESTION MARK + 0xC0: [928,0,722,15,707], // LATIN CAPITAL LETTER A WITH GRAVE + 0xC1: [928,0,722,15,707], // LATIN CAPITAL LETTER A WITH ACUTE + 0xC2: [924,0,722,15,707], // LATIN CAPITAL LETTER A WITH CIRCUMFLEX + 0xC3: [888,0,722,15,707], // LATIN CAPITAL LETTER A WITH TILDE + 0xC4: [872,0,722,15,707], // LATIN CAPITAL LETTER A WITH DIAERESIS + 0xC5: [961,0,722,15,707], // LATIN CAPITAL LETTER A WITH RING ABOVE + 0xC6: [662,0,889,0,863], // LATIN CAPITAL LETTER AE + 0xC7: [676,215,667,28,633], // LATIN CAPITAL LETTER C WITH CEDILLA + 0xC8: [928,0,611,12,597], // LATIN CAPITAL LETTER E WITH GRAVE + 0xC9: [928,0,611,12,597], // LATIN CAPITAL LETTER E WITH ACUTE + 0xCA: [924,0,611,12,597], // LATIN CAPITAL LETTER E WITH CIRCUMFLEX + 0xCB: [872,0,611,12,597], // LATIN CAPITAL LETTER E WITH DIAERESIS + 0xCC: [928,0,333,18,315], // LATIN CAPITAL LETTER I WITH GRAVE + 0xCD: [928,0,333,18,315], // LATIN CAPITAL LETTER I WITH ACUTE + 0xCE: [924,0,333,10,321], // LATIN CAPITAL LETTER I WITH CIRCUMFLEX + 0xCF: [872,0,333,17,315], // LATIN CAPITAL LETTER I WITH DIAERESIS + 0xD0: [662,0,722,16,685], // LATIN CAPITAL LETTER ETH + 0xD1: [888,11,722,12,707], // LATIN CAPITAL LETTER N WITH TILDE + 0xD2: [928,14,722,34,688], // LATIN CAPITAL LETTER O WITH GRAVE + 0xD3: [928,14,722,34,688], // LATIN CAPITAL LETTER O WITH ACUTE + 0xD4: [924,14,722,34,688], // LATIN CAPITAL LETTER O WITH CIRCUMFLEX + 0xD5: [888,14,722,34,688], // LATIN CAPITAL LETTER O WITH TILDE + 0xD6: [872,14,722,34,688], // LATIN CAPITAL LETTER O WITH DIAERESIS + 0xD8: [734,80,722,34,688], // LATIN CAPITAL LETTER O WITH STROKE + 0xD9: [928,14,722,14,705], // LATIN CAPITAL LETTER U WITH GRAVE + 0xDA: [928,14,722,14,705], // LATIN CAPITAL LETTER U WITH ACUTE + 0xDB: [924,14,722,14,705], // LATIN CAPITAL LETTER U WITH CIRCUMFLEX + 0xDC: [872,14,722,14,705], // LATIN CAPITAL LETTER U WITH DIAERESIS + 0xDD: [928,0,722,22,703], // LATIN CAPITAL LETTER Y WITH ACUTE + 0xDE: [662,0,556,16,542], // LATIN CAPITAL LETTER THORN + 0xDF: [683,9,500,12,468], // LATIN SMALL LETTER SHARP S + 0xE0: [678,10,444,37,442], // LATIN SMALL LETTER A WITH GRAVE + 0xE1: [678,10,444,37,442], // LATIN SMALL LETTER A WITH ACUTE + 0xE2: [674,10,444,37,442], // LATIN SMALL LETTER A WITH CIRCUMFLEX + 0xE3: [638,10,444,37,442], // LATIN SMALL LETTER A WITH TILDE + 0xE4: [622,10,444,37,442], // LATIN SMALL LETTER A WITH DIAERESIS + 0xE5: [713,10,444,37,442], // LATIN SMALL LETTER A WITH RING ABOVE + 0xE6: [460,7,667,38,632], // LATIN SMALL LETTER AE + 0xE7: [460,215,444,25,412], // LATIN SMALL LETTER C WITH CEDILLA + 0xE8: [678,10,444,25,424], // LATIN SMALL LETTER E WITH GRAVE + 0xE9: [678,10,444,25,424], // LATIN SMALL LETTER E WITH ACUTE + 0xEA: [674,10,444,25,424], // LATIN SMALL LETTER E WITH CIRCUMFLEX + 0xEB: [622,10,444,25,424], // LATIN SMALL LETTER E WITH DIAERESIS + 0xEC: [678,0,278,6,243], // LATIN SMALL LETTER I WITH GRAVE + 0xED: [678,0,278,16,273], // LATIN SMALL LETTER I WITH ACUTE + 0xEE: [674,0,278,-17,294], // LATIN SMALL LETTER I WITH CIRCUMFLEX + 0xEF: [622,0,278,-10,288], // LATIN SMALL LETTER I WITH DIAERESIS + 0xF0: [686,10,500,29,471], // LATIN SMALL LETTER ETH + 0xF1: [638,0,500,16,485], // LATIN SMALL LETTER N WITH TILDE + 0xF2: [678,10,500,29,470], // LATIN SMALL LETTER O WITH GRAVE + 0xF3: [678,10,500,29,470], // LATIN SMALL LETTER O WITH ACUTE + 0xF4: [674,10,500,29,470], // LATIN SMALL LETTER O WITH CIRCUMFLEX + 0xF5: [638,10,500,29,470], // LATIN SMALL LETTER O WITH TILDE + 0xF6: [622,10,500,29,470], // LATIN SMALL LETTER O WITH DIAERESIS + 0xF8: [551,112,500,29,470], // LATIN SMALL LETTER O WITH STROKE + 0xF9: [678,10,500,9,480], // LATIN SMALL LETTER U WITH GRAVE + 0xFA: [678,10,500,9,480], // LATIN SMALL LETTER U WITH ACUTE + 0xFB: [674,10,500,9,480], // LATIN SMALL LETTER U WITH CIRCUMFLEX + 0xFC: [622,10,500,9,480], // LATIN SMALL LETTER U WITH DIAERESIS + 0xFD: [678,218,500,14,475], // LATIN SMALL LETTER Y WITH ACUTE + 0xFE: [683,217,500,5,470], // LATIN SMALL LETTER THORN + 0xFF: [622,218,500,14,475] // LATIN SMALL LETTER Y WITH DIAERESIS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Latin1Supplement.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js new file mode 100644 index 0000000..7620b28 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js @@ -0,0 +1,154 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x100: [773,0,722,15,707], // LATIN CAPITAL LETTER A WITH MACRON + 0x101: [561,10,444,37,442], // LATIN SMALL LETTER A WITH MACRON + 0x102: [876,0,722,15,707], // LATIN CAPITAL LETTER A WITH BREVE + 0x103: [664,10,444,37,442], // LATIN SMALL LETTER A WITH BREVE + 0x104: [674,165,722,15,707], // LATIN CAPITAL LETTER A WITH OGONEK + 0x105: [460,165,444,37,472], // LATIN SMALL LETTER A WITH OGONEK + 0x106: [890,14,667,28,633], // LATIN CAPITAL LETTER C WITH ACUTE + 0x107: [678,10,444,25,412], // LATIN SMALL LETTER C WITH ACUTE + 0x108: [886,14,667,28,633], // LATIN CAPITAL LETTER C WITH CIRCUMFLEX + 0x109: [674,10,444,25,412], // LATIN SMALL LETTER C WITH CIRCUMFLEX + 0x10A: [834,14,667,28,633], // LATIN CAPITAL LETTER C WITH DOT ABOVE + 0x10B: [622,10,444,25,412], // LATIN SMALL LETTER C WITH DOT ABOVE + 0x10C: [886,14,667,28,633], // LATIN CAPITAL LETTER C WITH CARON + 0x10D: [674,10,444,25,412], // LATIN SMALL LETTER C WITH CARON + 0x10E: [886,0,722,16,685], // LATIN CAPITAL LETTER D WITH CARON + 0x10F: [701,10,586,27,604], // LATIN SMALL LETTER D WITH CARON + 0x110: [662,0,722,16,685], // LATIN CAPITAL LETTER D WITH STROKE + 0x111: [683,10,500,27,507], // LATIN SMALL LETTER D WITH STROKE + 0x112: [773,0,611,12,597], // LATIN CAPITAL LETTER E WITH MACRON + 0x113: [561,10,444,25,424], // LATIN SMALL LETTER E WITH MACRON + 0x114: [876,0,611,12,597], // LATIN CAPITAL LETTER E WITH BREVE + 0x115: [664,10,444,25,424], // LATIN SMALL LETTER E WITH BREVE + 0x116: [834,0,611,12,597], // LATIN CAPITAL LETTER E WITH DOT ABOVE + 0x117: [622,10,444,25,424], // LATIN SMALL LETTER E WITH DOT ABOVE + 0x118: [662,165,611,12,597], // LATIN CAPITAL LETTER E WITH OGONEK + 0x119: [460,165,444,25,424], // LATIN SMALL LETTER E WITH OGONEK + 0x11A: [886,0,611,12,597], // LATIN CAPITAL LETTER E WITH CARON + 0x11B: [674,10,444,25,424], // LATIN SMALL LETTER E WITH CARON + 0x11C: [886,14,722,32,709], // LATIN CAPITAL LETTER G WITH CIRCUMFLEX + 0x11D: [674,218,500,28,470], // LATIN SMALL LETTER G WITH CIRCUMFLEX + 0x11E: [876,14,722,32,709], // LATIN CAPITAL LETTER G WITH BREVE + 0x11F: [664,218,500,28,470], // LATIN SMALL LETTER G WITH BREVE + 0x120: [834,14,722,32,709], // LATIN CAPITAL LETTER G WITH DOT ABOVE + 0x121: [622,218,500,28,470], // LATIN SMALL LETTER G WITH DOT ABOVE + 0x122: [676,280,722,32,709], // LATIN CAPITAL LETTER G WITH CEDILLA + 0x123: [766,218,500,28,470], // LATIN SMALL LETTER G WITH CEDILLA + 0x124: [886,0,722,18,703], // LATIN CAPITAL LETTER H WITH CIRCUMFLEX + 0x125: [886,0,500,9,487], // LATIN SMALL LETTER H WITH CIRCUMFLEX + 0x126: [662,0,723,17,702], // LATIN CAPITAL LETTER H WITH STROKE + 0x127: [683,0,500,8,487], // LATIN SMALL LETTER H WITH STROKE + 0x128: [850,0,333,1,331], // LATIN CAPITAL LETTER I WITH TILDE + 0x129: [638,0,278,-25,305], // LATIN SMALL LETTER I WITH TILDE + 0x12A: [773,0,333,11,322], // LATIN CAPITAL LETTER I WITH MACRON + 0x12B: [561,0,278,-21,290], // LATIN SMALL LETTER I WITH MACRON + 0x12C: [876,0,333,18,315], // LATIN CAPITAL LETTER I WITH BREVE + 0x12D: [664,0,278,-1,280], // LATIN SMALL LETTER I WITH BREVE + 0x12E: [662,165,333,18,315], // LATIN CAPITAL LETTER I WITH OGONEK + 0x12F: [683,165,278,16,277], // LATIN SMALL LETTER I WITH OGONEK + 0x130: [834,0,333,18,315], // LATIN CAPITAL LETTER I WITH DOT ABOVE + 0x132: [662,14,747,18,728], // LATIN CAPITAL LIGATURE IJ + 0x133: [683,218,538,16,454], // LATIN SMALL LIGATURE IJ + 0x134: [886,14,373,-6,367], // LATIN CAPITAL LETTER J WITH CIRCUMFLEX + 0x135: [674,218,278,-70,295], // LATIN SMALL LETTER J WITH CIRCUMFLEX + 0x136: [662,280,722,33,723], // LATIN CAPITAL LETTER K WITH CEDILLA + 0x137: [683,280,500,7,505], // LATIN SMALL LETTER K WITH CEDILLA + 0x138: [459,0,542,5,532], // LATIN SMALL LETTER KRA + 0x139: [890,0,611,12,598], // LATIN CAPITAL LETTER L WITH ACUTE + 0x13A: [890,0,278,19,257], // LATIN SMALL LETTER L WITH ACUTE + 0x13B: [662,280,611,12,598], // LATIN CAPITAL LETTER L WITH CEDILLA + 0x13C: [683,280,278,19,257], // LATIN SMALL LETTER L WITH CEDILLA + 0x13D: [683,0,611,12,598], // LATIN CAPITAL LETTER L WITH CARON + 0x13E: [702,0,381,19,362], // LATIN SMALL LETTER L WITH CARON + 0x13F: [662,0,620,29,615], // LATIN CAPITAL LETTER L WITH MIDDLE DOT + 0x140: [683,0,370,19,354], // LATIN SMALL LETTER L WITH MIDDLE DOT + 0x141: [662,0,611,10,597], // LATIN CAPITAL LETTER L WITH STROKE + 0x142: [683,0,278,19,259], // LATIN SMALL LETTER L WITH STROKE + 0x143: [890,11,722,12,707], // LATIN CAPITAL LETTER N WITH ACUTE + 0x144: [678,0,500,16,485], // LATIN SMALL LETTER N WITH ACUTE + 0x145: [662,280,722,12,707], // LATIN CAPITAL LETTER N WITH CEDILLA + 0x146: [460,280,500,16,485], // LATIN SMALL LETTER N WITH CEDILLA + 0x147: [886,11,722,12,707], // LATIN CAPITAL LETTER N WITH CARON + 0x148: [674,0,500,16,485], // LATIN SMALL LETTER N WITH CARON + 0x149: [702,0,590,20,566], // LATIN SMALL LETTER N PRECEDED BY APOSTROPHE + 0x14A: [678,18,710,16,673], // LATIN CAPITAL LETTER ENG + 0x14B: [460,218,504,16,424], // LATIN SMALL LETTER ENG + 0x14C: [773,14,722,34,688], // LATIN CAPITAL LETTER O WITH MACRON + 0x14D: [561,10,500,29,470], // LATIN SMALL LETTER O WITH MACRON + 0x14E: [876,14,722,34,688], // LATIN CAPITAL LETTER O WITH BREVE + 0x14F: [664,10,500,29,470], // LATIN SMALL LETTER O WITH BREVE + 0x150: [890,14,722,34,688], // LATIN CAPITAL LETTER O WITH DOUBLE ACUTE + 0x151: [678,10,500,29,470], // LATIN SMALL LETTER O WITH DOUBLE ACUTE + 0x152: [668,6,889,30,885], // LATIN CAPITAL LIGATURE OE + 0x153: [460,10,722,30,690], // LATIN SMALL LIGATURE OE + 0x154: [890,0,667,17,660], // LATIN CAPITAL LETTER R WITH ACUTE + 0x155: [678,0,333,5,335], // LATIN SMALL LETTER R WITH ACUTE + 0x156: [662,280,667,17,660], // LATIN CAPITAL LETTER R WITH CEDILLA + 0x157: [460,280,333,5,335], // LATIN SMALL LETTER R WITH CEDILLA + 0x158: [886,0,667,17,660], // LATIN CAPITAL LETTER R WITH CARON + 0x159: [674,0,333,5,335], // LATIN SMALL LETTER R WITH CARON + 0x15A: [890,14,556,43,491], // LATIN CAPITAL LETTER S WITH ACUTE + 0x15B: [678,10,389,51,348], // LATIN SMALL LETTER S WITH ACUTE + 0x15C: [886,14,556,43,491], // LATIN CAPITAL LETTER S WITH CIRCUMFLEX + 0x15D: [674,10,389,40,351], // LATIN SMALL LETTER S WITH CIRCUMFLEX + 0x15E: [676,215,556,43,491], // LATIN CAPITAL LETTER S WITH CEDILLA + 0x15F: [459,215,389,51,348], // LATIN SMALL LETTER S WITH CEDILLA + 0x160: [924,14,556,43,491], // LATIN CAPITAL LETTER S WITH CARON + 0x161: [674,10,389,38,349], // LATIN SMALL LETTER S WITH CARON + 0x162: [662,215,611,17,593], // LATIN CAPITAL LETTER T WITH CEDILLA + 0x163: [579,215,278,13,279], // LATIN SMALL LETTER T WITH CEDILLA + 0x164: [886,0,611,17,593], // LATIN CAPITAL LETTER T WITH CARON + 0x165: [701,10,315,13,333], // LATIN SMALL LETTER T WITH CARON + 0x166: [662,0,613,17,593], // LATIN CAPITAL LETTER T WITH STROKE + 0x167: [584,5,279,11,280], // LATIN SMALL LETTER T WITH STROKE + 0x168: [849,14,722,14,705], // LATIN CAPITAL LETTER U WITH TILDE + 0x169: [638,10,500,9,480], // LATIN SMALL LETTER U WITH TILDE + 0x16A: [773,14,722,14,705], // LATIN CAPITAL LETTER U WITH MACRON + 0x16B: [561,10,500,9,480], // LATIN SMALL LETTER U WITH MACRON + 0x16C: [876,14,722,14,705], // LATIN CAPITAL LETTER U WITH BREVE + 0x16D: [664,10,500,9,480], // LATIN SMALL LETTER U WITH BREVE + 0x16E: [898,14,722,14,705], // LATIN CAPITAL LETTER U WITH RING ABOVE + 0x16F: [711,10,500,9,480], // LATIN SMALL LETTER U WITH RING ABOVE + 0x170: [890,14,722,14,705], // LATIN CAPITAL LETTER U WITH DOUBLE ACUTE + 0x171: [678,10,500,9,480], // LATIN SMALL LETTER U WITH DOUBLE ACUTE + 0x172: [662,165,722,14,705], // LATIN CAPITAL LETTER U WITH OGONEK + 0x173: [450,156,500,9,480], // LATIN SMALL LETTER U WITH OGONEK + 0x174: [886,11,944,5,932], // LATIN CAPITAL LETTER W WITH CIRCUMFLEX + 0x175: [674,14,722,21,694], // LATIN SMALL LETTER W WITH CIRCUMFLEX + 0x176: [886,0,722,22,703], // LATIN CAPITAL LETTER Y WITH CIRCUMFLEX + 0x177: [674,218,500,14,475], // LATIN SMALL LETTER Y WITH CIRCUMFLEX + 0x178: [872,0,722,22,703], // LATIN CAPITAL LETTER Y WITH DIAERESIS + 0x179: [890,0,612,10,598], // LATIN CAPITAL LETTER Z WITH ACUTE + 0x17A: [678,0,444,27,418], // LATIN SMALL LETTER Z WITH ACUTE + 0x17B: [834,0,612,10,598], // LATIN CAPITAL LETTER Z WITH DOT ABOVE + 0x17C: [622,0,444,27,418], // LATIN SMALL LETTER Z WITH DOT ABOVE + 0x17D: [924,0,612,10,598], // LATIN CAPITAL LETTER Z WITH CARON + 0x17E: [674,0,444,27,418], // LATIN SMALL LETTER Z WITH CARON + 0x17F: [683,0,334,20,383] // LATIN SMALL LETTER LONG S + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js new file mode 100644 index 0000000..169b908 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedAdditional.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1E80: [890,11,944,5,932], // LATIN CAPITAL LETTER W WITH GRAVE + 0x1E81: [678,14,722,21,694], // LATIN SMALL LETTER W WITH GRAVE + 0x1E82: [890,11,944,5,932], // LATIN CAPITAL LETTER W WITH ACUTE + 0x1E83: [678,14,722,21,694], // LATIN SMALL LETTER W WITH ACUTE + 0x1E84: [834,11,944,5,932], // LATIN CAPITAL LETTER W WITH DIAERESIS + 0x1E85: [622,14,722,21,694], // LATIN SMALL LETTER W WITH DIAERESIS + 0x1EF2: [890,0,722,22,703], // LATIN CAPITAL LETTER Y WITH GRAVE + 0x1EF3: [678,218,500,14,475] // LATIN SMALL LETTER Y WITH GRAVE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/LatinExtendedAdditional.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js new file mode 100644 index 0000000..69f1e19 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js @@ -0,0 +1,63 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedB.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x180: [683,10,500,-19,472], // LATIN SMALL LETTER B WITH STROKE + 0x188: [559,10,500,25,511], // LATIN SMALL LETTER C WITH HOOK + 0x190: [684,6,580,33,562], // LATIN CAPITAL LETTER OPEN E + 0x192: [706,159,434,6,426], // LATIN SMALL LETTER F WITH HOOK + 0x195: [683,10,735,9,710], // LATIN SMALL LETTER HV + 0x199: [683,0,500,7,505], // LATIN SMALL LETTER K WITH HOOK + 0x19A: [683,0,278,19,257], // LATIN SMALL LETTER L WITH BAR + 0x19B: [668,0,520,55,516], // LATIN SMALL LETTER LAMBDA WITH STROKE + 0x19E: [460,233,500,16,485], // LATIN SMALL LETTER N WITH LONG RIGHT LEG + 0x1A0: [754,14,722,34,688], // LATIN CAPITAL LETTER O WITH HORN + 0x1A1: [474,10,545,29,531], // LATIN SMALL LETTER O WITH HORN + 0x1A5: [669,217,500,5,470], // LATIN SMALL LETTER P WITH HOOK + 0x1AA: [684,233,432,20,412], // LATIN LETTER REVERSED ESH LOOP + 0x1AB: [579,218,290,13,279], // LATIN SMALL LETTER T WITH PALATAL HOOK + 0x1AD: [683,10,310,14,333], // LATIN SMALL LETTER T WITH HOOK + 0x1AF: [774,14,766,14,810], // LATIN CAPITAL LETTER U WITH HORN + 0x1B0: [561,10,500,9,539], // LATIN SMALL LETTER U WITH HORN + 0x1B5: [662,0,612,10,598], // LATIN CAPITAL LETTER Z WITH STROKE + 0x1BA: [450,234,381,4,360], // LATIN SMALL LETTER EZH WITH TAIL + 0x1BB: [676,0,500,22,482], // LATIN LETTER TWO WITH STROKE + 0x1BE: [539,12,500,73,427], // LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE + 0x1C0: [736,0,160,54,105], // LATIN LETTER DENTAL CLICK + 0x1C1: [736,0,280,54,225], // LATIN LETTER LATERAL CLICK + 0x1C2: [736,0,435,34,400], // LATIN LETTER ALVEOLAR CLICK + 0x1C3: [676,9,333,130,236], // LATIN LETTER RETROFLEX CLICK + 0x1F0: [674,218,278,-70,294], // LATIN SMALL LETTER J WITH CARON + 0x1FA: [938,0,722,15,707], // LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE + 0x1FB: [890,10,444,37,442], // LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE + 0x1FC: [890,0,889,0,863], // LATIN CAPITAL LETTER AE WITH ACUTE + 0x1FD: [678,7,667,38,632], // LATIN SMALL LETTER AE WITH ACUTE + 0x1FE: [890,80,722,34,688], // LATIN CAPITAL LETTER O WITH STROKE AND ACUTE + 0x1FF: [678,112,500,29,470], // LATIN SMALL LETTER O WITH STROKE AND ACUTE + 0x221: [683,150,671,27,652], // LATIN SMALL LETTER D WITH CURL + 0x234: [683,150,429,19,410], // LATIN SMALL LETTER L WITH CURL + 0x235: [460,150,672,16,653], // LATIN SMALL LETTER N WITH CURL + 0x236: [580,150,401,13,382] // LATIN SMALL LETTER T WITH CURL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/LatinExtendedB.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js new file mode 100644 index 0000000..762a419 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0xA727: [683,233,481,9,427], // stix-heng (phonetic symbol) + 0xA792: [676,14,734,18,700] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/LatinExtendedD.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js new file mode 100644 index 0000000..ea4658c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js @@ -0,0 +1,83 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LetterlikeSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2102: [676,14,705,45,663], // stix-mathematical bold oblique double-struck capital C + 0x2105: [676,14,837,48,795], // CARE OF + 0x2107: [676,14,598,28,561], // EULER CONSTANT + 0x210A: [441,219,738,30,678], // SCRIPT SMALL G + 0x210B: [687,15,997,53,991], // SCRIPT CAPITAL H + 0x210C: [695,204,824,43,773], // BLACK-LETTER CAPITAL H + 0x210D: [662,0,718,70,648], // stix-mathematical bold oblique double-struck capital H + 0x210E: [683,10,577,47,545], // PLANCK CONSTANT + 0x210F: [683,10,579,47,547], // stix-/hbar - Planck's over 2pi + 0x2110: [675,15,897,26,888], // SCRIPT CAPITAL I + 0x2112: [687,15,946,33,931], // SCRIPT CAPITAL L + 0x2113: [687,11,579,48,571], // SCRIPT SMALL L + 0x2115: [662,0,698,70,628], // stix-mathematical bold oblique double-struck capital N + 0x2116: [676,14,1012,7,966], // NUMERO SIGN + 0x2117: [676,14,760,38,722], // SOUND RECORDING COPYRIGHT + 0x2119: [662,0,678,70,628], // stix-mathematical bold oblique double-struck capital P + 0x211A: [676,65,765,45,715], // stix-mathematical bold oblique double-struck capital Q + 0x211B: [687,15,944,34,876], // SCRIPT CAPITAL R + 0x211D: [662,0,747,70,712], // stix-mathematical bold oblique double-struck capital R + 0x211E: [667,101,780,69,763], // PRESCRIPTION TAKE + 0x2122: [662,-256,980,30,957], // TRADE MARK SIGN + 0x2124: [662,0,727,50,677], // stix-mathematical bold oblique double-struck capital Z + 0x2125: [662,218,424,35,391], // OUNCE SIGN + 0x2126: [676,0,744,29,715], // OHM SIGN + 0x2127: [662,14,744,29,715], // INVERTED OHM SIGN + 0x2128: [695,204,726,50,676], // BLACK-LETTER CAPITAL Z + 0x2129: [463,0,360,32,276], // TURNED GREEK SMALL LETTER IOTA + 0x212B: [871,0,722,15,707], // ANGSTROM SIGN + 0x212C: [687,15,950,34,902], // SCRIPT CAPITAL B + 0x212D: [695,24,717,47,675], // BLACK-LETTER CAPITAL C + 0x212E: [676,17,843,35,808], // ESTIMATED SYMBOL + 0x212F: [441,11,627,30,554], // SCRIPT SMALL E + 0x2130: [687,15,750,100,734], // SCRIPT CAPITAL E + 0x2131: [680,0,919,43,907], // SCRIPT CAPITAL F + 0x2132: [662,0,535,13,462], // TURNED CAPITAL F + 0x2133: [674,15,1072,38,1056], // SCRIPT CAPITAL M + 0x2134: [441,11,697,30,680], // SCRIPT SMALL O + 0x2136: [677,19,639,57,572], // BET SYMBOL + 0x2137: [677,19,505,40,463], // GIMEL SYMBOL + 0x2138: [677,19,599,52,495], // DALET SYMBOL + 0x213C: [450,12,673,25,645], // DOUBLE-STRUCK SMALL PI + 0x213D: [460,218,540,0,526], // DOUBLE-STRUCK SMALL GAMMA + 0x213E: [662,0,469,70,567], // DOUBLE-STRUCK CAPITAL GAMMA + 0x213F: [662,0,718,70,648], // DOUBLE-STRUCK CAPITAL PI + 0x2140: [763,259,923,61,882], // DOUBLE-STRUCK N-ARY SUMMATION + 0x2141: [676,14,695,68,668], // TURNED SANS-SERIF CAPITAL G + 0x2142: [662,0,559,13,485], // TURNED SANS-SERIF CAPITAL L + 0x2143: [662,0,559,13,485], // REVERSED SANS-SERIF CAPITAL L + 0x2144: [662,0,630,21,609], // TURNED SANS-SERIF CAPITAL Y + 0x2145: [653,0,713,17,703], // stix-mathematical bold double-struck capital D + 0x2146: [683,11,581,40,634], // stix-mathematical bold double-struck small letter d + 0x2147: [441,11,515,40,485], // stix-mathematical bold double-struck small letter e + 0x2148: [653,0,293,27,346], // stix-mathematical bold double-struck small letter i + 0x2149: [653,217,341,-104,394], // stix-mathematical bold double-struck small letter j + 0x214A: [692,0,664,45,602], // PROPERTY LINE + 0x214B: [676,13,778,28,736] // TURNED AMPERSAND + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js new file mode 100644 index 0000000..1c8e956 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js @@ -0,0 +1,380 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'] = { + directory: 'General/Regular', + family: 'STIXGeneral', + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x250,0x2AF,"IPAExtensions"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x400,0x4FF,"Cyrillic"], + [0x1D00,0x1DBF,"PhoneticExtensions"], + [0x1E00,0x1EFF,"LatinExtendedAdditional"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x2070,0x209F,"SuperAndSubscripts"], + [0x20A0,0x20CF,"CurrencySymbols"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2150,0x218F,"NumberForms"], + [0x2190,0x21FF,"Arrows"], + [0x2200,0x22FF,"MathOperators"], + [0x2300,0x23FF,"MiscTechnical"], + [0x2400,0x243F,"ControlPictures"], + [0x2460,0x24FF,"EnclosedAlphanum"], + [0x2500,0x257F,"BoxDrawing"], + [0x2580,0x259F,"BlockElements"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x2700,0x27BF,"Dingbats"], + [0x27C0,0x27EF,"MiscMathSymbolsA"], + [0x27F0,0x27FF,"SupplementalArrowsA"], + [0x2900,0x297F,"SupplementalArrowsB"], + [0x2980,0x29FF,"MiscMathSymbolsB"], + [0x2A00,0x2AFF,"SuppMathOperators"], + [0x2B00,0x2BFF,"MiscSymbolsAndArrows"], + [0x3000,0x303F,"CJK"], + [0x3040,0x309F,"Hiragana"], + [0xA720,0xA7FF,"LatinExtendedD"], + [0xFB00,0xFB4F,"AlphaPresentForms"], + [0xFFF0,0xFFFF,"Specials"], + [0x1D400,0x1D433,"MathBold"], + [0x1D434,0x1D467,"MathItalic"], + [0x1D468,0x1D49B,"MathBoldItalic"], + [0x1D49C,0x1D4CF,"MathScript"], + [0x1D4D0,0x1D503,"MathBoldScript"], + [0x1D504,0x1D537,"Fraktur"], + [0x1D538,0x1D56B,"BBBold"], + [0x1D56C,0x1D59F,"BoldFraktur"], + [0x1D5A0,0x1D5D3,"MathSS"], + [0x1D5D4,0x1D607,"MathSSBold"], + [0x1D608,0x1D63B,"MathSSItalic"], + [0x1D63C,0x1D66F,"MathSSItalicBold"], + [0x1D670,0x1D6A3,"MathTT"], + [0x1D6A4,0x1D6A5,"ij"], + [0x1D6A8,0x1D6E1,"GreekBold"], + [0x1D6E2,0x1D71B,"GreekItalic"], + [0x1D71C,0x1D755,"GreekBoldItalic"], + [0x1D756,0x1D78F,"GreekSSBold"], + [0x1D790,0x1D7C9,"GreekSSBoldItalic"], + [0x1D7CE,0x1D7D7,"MathBold"], + [0x1D7D8,0x1D7E1,"BBBold"], + [0x1D7E2,0x1D7EB,"MathSS"], + [0x1D7EC,0x1D7F6,"MathSSBold"], + [0x1D7F6,0x1D7FF,"MathTT"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [676,9,333,130,236], // EXCLAMATION MARK + 0x22: [676,-431,408,77,331], // QUOTATION MARK + 0x23: [662,0,500,6,495], // NUMBER SIGN + 0x24: [727,87,500,44,458], // DOLLAR SIGN + 0x25: [706,19,747,61,686], // PERCENT SIGN + 0x26: [676,13,778,42,750], // AMPERSAND + 0x27: [676,-431,180,48,133], // APOSTROPHE + 0x28: [676,177,333,48,304], // LEFT PARENTHESIS + 0x29: [676,177,333,29,285], // RIGHT PARENTHESIS + 0x2A: [676,-265,500,68,433], // ASTERISK + 0x2B: [547,41,685,48,636], // PLUS SIGN + 0x2C: [102,141,250,55,195], // COMMA + 0x2D: [257,-194,333,39,285], // HYPHEN-MINUS + 0x2E: [100,11,250,70,181], // FULL STOP + 0x2F: [676,14,278,-9,287], // SOLIDUS + 0x30: [676,14,500,24,476], // DIGIT ZERO + 0x31: [676,0,500,111,394], // DIGIT ONE + 0x32: [676,0,500,29,474], // DIGIT TWO + 0x33: [676,14,500,41,431], // DIGIT THREE + 0x34: [676,0,500,12,473], // DIGIT FOUR + 0x35: [688,14,500,31,438], // DIGIT FIVE + 0x36: [684,14,500,34,468], // DIGIT SIX + 0x37: [662,8,500,20,449], // DIGIT SEVEN + 0x38: [676,14,500,56,445], // DIGIT EIGHT + 0x39: [676,22,500,30,459], // DIGIT NINE + 0x3A: [459,11,278,81,192], // COLON + 0x3B: [459,141,278,80,219], // SEMICOLON + 0x3C: [534,24,685,56,621], // LESS-THAN SIGN + 0x3D: [386,-120,685,48,637], // EQUALS SIGN + 0x3E: [534,24,685,56,621], // GREATER-THAN SIGN + 0x3F: [676,8,444,68,414], // QUESTION MARK + 0x40: [676,14,921,116,809], // COMMERCIAL AT + 0x41: [674,0,722,15,707], // LATIN CAPITAL LETTER A + 0x42: [662,0,667,17,593], // LATIN CAPITAL LETTER B + 0x43: [676,14,667,28,633], // LATIN CAPITAL LETTER C + 0x44: [662,0,722,16,685], // LATIN CAPITAL LETTER D + 0x45: [662,0,611,12,597], // LATIN CAPITAL LETTER E + 0x46: [662,0,556,11,546], // LATIN CAPITAL LETTER F + 0x47: [676,14,722,32,709], // LATIN CAPITAL LETTER G + 0x48: [662,0,722,18,703], // LATIN CAPITAL LETTER H + 0x49: [662,0,333,18,315], // LATIN CAPITAL LETTER I + 0x4A: [662,14,373,-6,354], // LATIN CAPITAL LETTER J + 0x4B: [662,0,722,33,723], // LATIN CAPITAL LETTER K + 0x4C: [662,0,611,12,598], // LATIN CAPITAL LETTER L + 0x4D: [662,0,889,12,864], // LATIN CAPITAL LETTER M + 0x4E: [662,11,722,12,707], // LATIN CAPITAL LETTER N + 0x4F: [676,14,722,34,688], // LATIN CAPITAL LETTER O + 0x50: [662,0,557,16,542], // LATIN CAPITAL LETTER P + 0x51: [676,177,722,34,701], // LATIN CAPITAL LETTER Q + 0x52: [662,0,667,17,660], // LATIN CAPITAL LETTER R + 0x53: [676,14,556,43,491], // LATIN CAPITAL LETTER S + 0x54: [662,0,611,17,593], // LATIN CAPITAL LETTER T + 0x55: [662,14,722,14,705], // LATIN CAPITAL LETTER U + 0x56: [662,11,722,16,697], // LATIN CAPITAL LETTER V + 0x57: [662,11,944,5,932], // LATIN CAPITAL LETTER W + 0x58: [662,0,722,10,704], // LATIN CAPITAL LETTER X + 0x59: [662,0,722,22,703], // LATIN CAPITAL LETTER Y + 0x5A: [662,0,612,10,598], // LATIN CAPITAL LETTER Z + 0x5B: [662,156,333,88,299], // LEFT SQUARE BRACKET + 0x5C: [676,14,278,-9,287], // REVERSE SOLIDUS + 0x5D: [662,156,333,34,245], // RIGHT SQUARE BRACKET + 0x5E: [662,-297,469,24,446], // CIRCUMFLEX ACCENT + 0x5F: [-75,125,500,0,500], // LOW LINE + 0x60: [678,-507,333,18,242], // GRAVE ACCENT + 0x61: [460,10,444,37,442], // LATIN SMALL LETTER A + 0x62: [683,10,500,3,468], // LATIN SMALL LETTER B + 0x63: [460,10,444,25,412], // LATIN SMALL LETTER C + 0x64: [683,10,500,27,491], // LATIN SMALL LETTER D + 0x65: [460,10,444,25,424], // LATIN SMALL LETTER E + 0x66: [683,0,333,20,383], // LATIN SMALL LETTER F + 0x67: [460,218,500,28,470], // LATIN SMALL LETTER G + 0x68: [683,0,500,9,487], // LATIN SMALL LETTER H + 0x69: [683,0,278,16,253], // LATIN SMALL LETTER I + 0x6A: [683,218,278,-70,194], // LATIN SMALL LETTER J + 0x6B: [683,0,500,7,505], // LATIN SMALL LETTER K + 0x6C: [683,0,278,19,257], // LATIN SMALL LETTER L + 0x6D: [460,0,778,16,775], // LATIN SMALL LETTER M + 0x6E: [460,0,500,16,485], // LATIN SMALL LETTER N + 0x6F: [460,10,500,29,470], // LATIN SMALL LETTER O + 0x70: [460,217,500,5,470], // LATIN SMALL LETTER P + 0x71: [460,217,500,24,488], // LATIN SMALL LETTER Q + 0x72: [460,0,333,5,335], // LATIN SMALL LETTER R + 0x73: [459,10,389,51,348], // LATIN SMALL LETTER S + 0x74: [579,10,278,13,279], // LATIN SMALL LETTER T + 0x75: [450,10,500,9,480], // LATIN SMALL LETTER U + 0x76: [450,14,500,19,477], // LATIN SMALL LETTER V + 0x77: [450,14,722,21,694], // LATIN SMALL LETTER W + 0x78: [450,0,500,17,479], // LATIN SMALL LETTER X + 0x79: [450,218,500,14,475], // LATIN SMALL LETTER Y + 0x7A: [450,0,444,27,418], // LATIN SMALL LETTER Z + 0x7B: [680,181,480,100,350], // LEFT CURLY BRACKET + 0x7C: [676,14,200,67,133], // VERTICAL LINE + 0x7D: [680,181,480,130,380], // RIGHT CURLY BRACKET + 0x7E: [325,-183,541,40,502], // TILDE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xA8: [622,-523,333,18,316], // DIAERESIS + 0xAC: [393,-115,600,48,552], // NOT SIGN + 0xAF: [601,-547,333,11,322], // MACRON + 0xB1: [502,87,685,48,637], // PLUS-MINUS SIGN + 0xB7: [310,-199,250,70,181], // MIDDLE DOT + 0xD7: [529,25,640,43,597], // MULTIPLICATION SIGN + 0xF7: [516,10,564,30,534], // DIVISION SIGN + 0x131: [460,0,278,16,253], // LATIN SMALL LETTER DOTLESS I + 0x237: [460,218,278,-70,193], // LATIN SMALL LETTER DOTLESS J + 0x2C6: [674,-507,333,11,322], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [674,-507,333,11,322], // CARON + 0x2C9: [601,-547,334,11,322], // MODIFIER LETTER MACRON + 0x2CA: [679,-509,333,93,320], // MODIFIER LETTER ACUTE ACCENT + 0x2CB: [679,-509,333,22,249], // MODIFIER LETTER GRAVE ACCENT + 0x2D8: [664,-507,335,27,308], // BREVE + 0x2D9: [622,-523,333,118,217], // DOT ABOVE + 0x2DC: [638,-532,333,1,331], // SMALL TILDE + 0x300: [678,-507,0,-371,-147], // COMBINING GRAVE ACCENT + 0x301: [678,-507,0,-371,-147], // COMBINING ACUTE ACCENT + 0x302: [674,-507,0,-386,-75], // COMBINING CIRCUMFLEX ACCENT + 0x303: [638,-532,0,-395,-65], // COMBINING TILDE + 0x304: [601,-547,0,-385,-74], // COMBINING MACRON + 0x306: [664,-507,0,-373,-92], // COMBINING BREVE + 0x307: [622,-523,0,-280,-181], // COMBINING DOT ABOVE + 0x308: [622,-523,0,-379,-81], // COMBINING DIAERESIS + 0x30A: [711,-512,0,-329,-130], // COMBINING RING ABOVE + 0x30B: [678,-507,0,-401,-22], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [674,-507,0,-385,-74], // COMBINING CARON + 0x338: [662,156,0,-380,31], // COMBINING LONG SOLIDUS OVERLAY + 0x393: [662,0,587,11,577], // GREEK CAPITAL LETTER GAMMA + 0x394: [674,0,722,48,675], // GREEK CAPITAL LETTER DELTA + 0x398: [676,14,722,34,688], // GREEK CAPITAL LETTER THETA + 0x39B: [674,0,702,15,687], // GREEK CAPITAL LETTER LAMDA + 0x39E: [662,0,643,29,614], // GREEK CAPITAL LETTER XI + 0x3A0: [662,0,722,18,703], // GREEK CAPITAL LETTER PI + 0x3A3: [662,0,624,30,600], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [674,0,722,29,703], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [662,0,763,35,728], // GREEK CAPITAL LETTER PHI + 0x3A8: [690,0,746,22,724], // GREEK CAPITAL LETTER PSI + 0x3A9: [676,0,744,29,715], // GREEK CAPITAL LETTER OMEGA + 0x2020: [676,149,500,59,442], // DAGGER + 0x2021: [676,153,500,58,442], // DOUBLE DAGGER + 0x2026: [100,11,1000,111,888], // HORIZONTAL ELLIPSIS + 0x2032: [678,-402,289,75,214], // PRIME + 0x203E: [820,-770,500,0,500], // OVERLINE + 0x20D7: [760,-548,0,-453,-17], // COMBINING RIGHT ARROW ABOVE + 0x2111: [695,34,762,45,711], // BLACK-LETTER CAPITAL I + 0x2118: [547,217,826,52,799], // SCRIPT CAPITAL P + 0x211C: [704,22,874,50,829], // BLACK-LETTER CAPITAL R + 0x2135: [677,13,682,43,634], // ALEF SYMBOL + 0x2190: [449,-58,926,71,857], // LEFTWARDS ARROW + 0x2191: [662,156,511,60,451], // UPWARDS ARROW + 0x2192: [448,-57,926,70,856], // RIGHTWARDS ARROW + 0x2193: [662,156,511,60,451], // DOWNWARDS ARROW + 0x2194: [449,-57,926,38,888], // LEFT RIGHT ARROW + 0x2195: [730,224,511,60,451], // UP DOWN ARROW + 0x2196: [662,156,926,70,856], // NORTH WEST ARROW + 0x2197: [662,156,926,70,856], // NORTH EAST ARROW + 0x2198: [662,156,926,70,856], // SOUTH EAST ARROW + 0x2199: [662,156,926,70,856], // SOUTH WEST ARROW + 0x21A6: [450,-57,926,70,857], // RIGHTWARDS ARROW FROM BAR + 0x21A9: [553,-57,926,70,856], // LEFTWARDS ARROW WITH HOOK + 0x21AA: [553,-57,926,70,856], // RIGHTWARDS ARROW WITH HOOK + 0x21BC: [494,-220,955,54,901], // LEFTWARDS HARPOON WITH BARB UPWARDS + 0x21BD: [286,-12,955,54,901], // LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x21C0: [494,-220,955,54,901], // RIGHTWARDS HARPOON WITH BARB UPWARDS + 0x21C1: [286,-12,955,54,901], // RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x21CC: [539,33,926,70,856], // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21D0: [551,45,926,60,866], // LEFTWARDS DOUBLE ARROW + 0x21D1: [662,156,685,45,641], // UPWARDS DOUBLE ARROW + 0x21D2: [551,45,926,60,866], // RIGHTWARDS DOUBLE ARROW + 0x21D3: [662,156,685,45,641], // DOWNWARDS DOUBLE ARROW + 0x21D4: [517,10,926,20,906], // LEFT RIGHT DOUBLE ARROW + 0x21D5: [730,224,685,45,641], // UP DOWN DOUBLE ARROW + 0x2200: [662,0,560,2,558], // FOR ALL + 0x2202: [668,11,471,40,471], // PARTIAL DIFFERENTIAL + 0x2203: [662,0,560,73,487], // THERE EXISTS + 0x2205: [583,79,762,50,712], // EMPTY SET + 0x2207: [662,12,731,63,667], // NABLA + 0x2208: [531,27,685,60,625], // ELEMENT OF + 0x2209: [662,157,685,60,625], // stix-negated (vert) set membership, variant + 0x220B: [531,27,685,60,625], // CONTAINS AS MEMBER + 0x220F: [763,259,1000,52,948], // N-ARY PRODUCT + 0x2210: [763,259,1000,52,948], // N-ARY COPRODUCT + 0x2211: [763,259,914,58,856], // N-ARY SUMMATION + 0x2212: [286,-220,685,64,621], // MINUS SIGN + 0x2213: [502,87,685,48,637], // MINUS-OR-PLUS SIGN + 0x2215: [710,222,523,46,478], // DIVISION SLASH + 0x2216: [411,-93,428,25,403], // SET MINUS + 0x2217: [471,-33,523,67,457], // ASTERISK OPERATOR + 0x2218: [387,-117,350,40,310], // RING OPERATOR + 0x2219: [387,-117,350,40,310], // BULLET OPERATOR + 0x221A: [973,259,928,112,963], // SQUARE ROOT + 0x221D: [430,0,685,41,643], // PROPORTIONAL TO + 0x221E: [430,0,926,70,854], // INFINITY + 0x2220: [547,0,685,23,643], // ANGLE + 0x2223: [690,189,266,100,166], // DIVIDES + 0x2225: [690,189,523,129,394], // PARALLEL TO + 0x2227: [536,29,620,31,589], // LOGICAL AND + 0x2228: [536,29,620,31,589], // LOGICAL OR + 0x2229: [536,31,620,48,572], // stix-intersection, serifs + 0x222A: [536,31,620,48,572], // stix-union, serifs + 0x222B: [824,320,459,32,639], // INTEGRAL + 0x223C: [362,-148,685,48,637], // TILDE OPERATOR + 0x2240: [547,42,286,35,249], // WREATH PRODUCT + 0x2243: [445,-55,685,48,637], // ASYMPTOTICALLY EQUAL TO + 0x2245: [532,27,685,48,637], // APPROXIMATELY EQUAL TO + 0x2248: [475,-25,685,48,637], // ALMOST EQUAL TO + 0x224D: [498,-8,685,48,637], // EQUIVALENT TO + 0x2250: [611,-120,685,48,637], // APPROACHES THE LIMIT + 0x2260: [662,156,685,48,637], // stix-not (vert) equals + 0x2261: [478,-28,685,48,637], // IDENTICAL TO + 0x2264: [609,103,685,64,629], // LESS-THAN OR EQUAL TO + 0x2265: [609,103,685,64,629], // GREATER-THAN OR EQUAL TO + 0x226A: [532,26,933,25,908], // MUCH LESS-THAN + 0x226B: [532,26,933,25,908], // MUCH GREATER-THAN + 0x227A: [532,26,685,64,621], // PRECEDES + 0x227B: [532,26,685,64,621], // SUCCEEDS + 0x227C: [628,120,685,64,621], // PRECEDES OR EQUAL TO + 0x227D: [629,119,685,64,621], // SUCCEEDS OR EQUAL TO + 0x2282: [531,25,685,64,621], // SUBSET OF + 0x2283: [531,25,685,64,621], // SUPERSET OF + 0x2286: [607,103,685,64,621], // SUBSET OF OR EQUAL TO + 0x2287: [607,103,685,64,621], // SUPERSET OF OR EQUAL TO + 0x228E: [536,31,620,48,572], // MULTISET UNION + 0x2291: [607,103,685,64,621], // SQUARE IMAGE OF OR EQUAL TO + 0x2292: [607,103,685,64,621], // SQUARE ORIGINAL OF OR EQUAL TO + 0x2293: [536,31,620,48,572], // stix-square intersection, serifs + 0x2294: [536,31,620,48,572], // stix-square union, serifs + 0x2295: [623,119,842,50,792], // stix-circled plus (with rim) + 0x2296: [623,119,842,50,792], // CIRCLED MINUS + 0x2297: [623,119,842,50,792], // stix-circled times (with rim) + 0x2298: [623,119,842,50,792], // CIRCLED DIVISION SLASH + 0x2299: [583,79,762,50,712], // CIRCLED DOT OPERATOR + 0x22A2: [662,0,685,64,621], // RIGHT TACK + 0x22A3: [662,0,685,64,621], // LEFT TACK + 0x22A4: [662,0,685,48,637], // DOWN TACK + 0x22A5: [662,0,685,48,637], // UP TACK + 0x22A8: [662,0,685,64,621], // TRUE + 0x22C0: [763,259,924,54,870], // N-ARY LOGICAL AND + 0x22C1: [763,259,924,54,870], // N-ARY LOGICAL OR + 0x22C2: [778,254,924,94,830], // N-ARY INTERSECTION + 0x22C3: [768,264,924,94,830], // N-ARY UNION + 0x22C4: [488,-16,523,26,497], // DIAMOND OPERATOR + 0x22C5: [313,-193,286,83,203], // DOT OPERATOR + 0x22C6: [597,13,700,35,665], // STAR OPERATOR + 0x22C8: [582,80,810,54,756], // BOWTIE + 0x22EE: [606,104,511,192,319], // VERTICAL ELLIPSIS + 0x22EF: [316,-189,926,108,818], // MIDLINE HORIZONTAL ELLIPSIS + 0x22F1: [520,18,926,194,732], // DOWN RIGHT DIAGONAL ELLIPSIS + 0x2308: [713,213,469,188,447], // LEFT CEILING + 0x2309: [713,213,469,27,286], // RIGHT CEILING + 0x230A: [713,213,469,188,447], // LEFT FLOOR + 0x230B: [713,213,469,27,286], // RIGHT FLOOR + 0x2322: [360,-147,1019,54,965], // stix-small down curve + 0x2323: [360,-147,1019,54,965], // stix-small up curve + 0x23AF: [286,-220,315,0,315], // HORIZONTAL LINE EXTENSION + 0x23D0: [405,-101,511,222,288], // VERTICAL LINE EXTENSION (used to extend arrows) + 0x25B3: [811,127,1145,35,1110], // WHITE UP-POINTING TRIANGLE + 0x25B9: [555,50,660,80,605], // WHITE RIGHT-POINTING SMALL TRIANGLE + 0x25BD: [811,127,1145,35,1110], // WHITE DOWN-POINTING TRIANGLE + 0x25C3: [554,51,660,55,580], // WHITE LEFT-POINTING SMALL TRIANGLE + 0x25EF: [785,282,1207,70,1137], // LARGE CIRCLE + 0x2660: [609,99,685,34,651], // BLACK SPADE SUIT + 0x2661: [603,105,685,34,651], // WHITE HEART SUIT + 0x2662: [609,105,685,41,643], // WHITE DIAMOND SUIT + 0x2663: [603,99,685,34,651], // BLACK CLUB SUIT + 0x266D: [768,10,426,57,346], // MUSIC FLAT SIGN + 0x266E: [768,181,426,75,350], // MUSIC NATURAL SIGN + 0x266F: [768,181,426,41,386], // MUSIC SHARP SIGN + 0x27E8: [713,213,400,77,335], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [713,213,400,65,323], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27EE: [676,177,233,56,211], // MATHEMATICAL LEFT FLATTENED PARENTHESIS + 0x27EF: [676,177,233,22,177], // MATHEMATICAL RIGHT FLATTENED PARENTHESIS + 0x27F5: [449,-58,1574,55,1519], // LONG LEFTWARDS ARROW + 0x27F6: [449,-57,1574,55,1519], // LONG RIGHTWARDS ARROW + 0x27F7: [449,-57,1574,55,1519], // LONG LEFT RIGHT ARROW + 0x27F8: [551,45,1574,55,1519], // LONG LEFTWARDS DOUBLE ARROW + 0x27F9: [551,45,1574,55,1519], // LONG RIGHTWARDS DOUBLE ARROW + 0x27FA: [517,10,1574,55,1519], // LONG LEFT RIGHT DOUBLE ARROW + 0x27FB: [450,-57,1574,55,1519], // LONG LEFTWARDS ARROW FROM BAR + 0x27FC: [450,-57,1574,55,1519], // LONG RIGHTWARDS ARROW FROM BAR + 0x29F5: [710,222,523,46,478], // REVERSE SOLIDUS OPERATOR + 0x2A00: [763,259,1126,53,1073], // N-ARY CIRCLED DOT OPERATOR + 0x2A01: [763,259,1126,53,1073], // N-ARY CIRCLED PLUS OPERATOR + 0x2A02: [763,259,1126,53,1073], // N-ARY CIRCLED TIMES OPERATOR + 0x2A03: [768,264,924,94,830], // N-ARY UNION OPERATOR WITH DOT + 0x2A04: [768,264,924,94,830], // N-ARY UNION OPERATOR WITH PLUS + 0x2A05: [763,259,924,94,830], // N-ARY SQUARE INTERSECTION OPERATOR + 0x2A06: [763,259,924,94,830], // N-ARY SQUARE UNION OPERATOR + 0x2A3F: [662,0,694,30,664], // AMALGAMATION OR COPRODUCT + 0x2AAF: [609,103,685,64,621], // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN + 0x2AB0: [609,103,685,64,621] // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXGeneral"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js new file mode 100644 index 0000000..70b58f9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D400: [690,0,722,9,689], // MATHEMATICAL BOLD CAPITAL A + 0x1D401: [676,0,667,16,619], // MATHEMATICAL BOLD CAPITAL B + 0x1D402: [691,19,722,49,687], // MATHEMATICAL BOLD CAPITAL C + 0x1D403: [676,0,722,14,690], // MATHEMATICAL BOLD CAPITAL D + 0x1D404: [676,0,667,16,641], // MATHEMATICAL BOLD CAPITAL E + 0x1D405: [676,0,611,16,583], // MATHEMATICAL BOLD CAPITAL F + 0x1D406: [691,19,778,37,755], // MATHEMATICAL BOLD CAPITAL G + 0x1D407: [676,0,778,21,759], // MATHEMATICAL BOLD CAPITAL H + 0x1D408: [676,0,389,20,370], // MATHEMATICAL BOLD CAPITAL I + 0x1D409: [676,96,500,3,478], // MATHEMATICAL BOLD CAPITAL J + 0x1D40A: [676,0,778,30,769], // MATHEMATICAL BOLD CAPITAL K + 0x1D40B: [676,0,667,19,638], // MATHEMATICAL BOLD CAPITAL L + 0x1D40C: [676,0,944,14,921], // MATHEMATICAL BOLD CAPITAL M + 0x1D40D: [676,18,722,16,701], // MATHEMATICAL BOLD CAPITAL N + 0x1D40E: [691,19,778,35,743], // MATHEMATICAL BOLD CAPITAL O + 0x1D40F: [676,0,611,16,600], // MATHEMATICAL BOLD CAPITAL P + 0x1D410: [691,176,778,35,743], // MATHEMATICAL BOLD CAPITAL Q + 0x1D411: [676,0,722,26,716], // MATHEMATICAL BOLD CAPITAL R + 0x1D412: [692,19,556,35,513], // MATHEMATICAL BOLD CAPITAL S + 0x1D413: [676,0,667,31,636], // MATHEMATICAL BOLD CAPITAL T + 0x1D414: [676,19,722,16,701], // MATHEMATICAL BOLD CAPITAL U + 0x1D415: [676,18,722,16,701], // MATHEMATICAL BOLD CAPITAL V + 0x1D416: [676,15,1000,19,981], // MATHEMATICAL BOLD CAPITAL W + 0x1D417: [676,0,722,16,699], // MATHEMATICAL BOLD CAPITAL X + 0x1D418: [676,0,722,15,699], // MATHEMATICAL BOLD CAPITAL Y + 0x1D419: [676,0,667,28,634], // MATHEMATICAL BOLD CAPITAL Z + 0x1D41A: [473,14,500,25,488], // MATHEMATICAL BOLD SMALL A + 0x1D41B: [676,14,556,17,521], // MATHEMATICAL BOLD SMALL B + 0x1D41C: [473,14,444,25,430], // MATHEMATICAL BOLD SMALL C + 0x1D41D: [676,14,556,25,534], // MATHEMATICAL BOLD SMALL D + 0x1D41E: [473,14,444,25,427], // MATHEMATICAL BOLD SMALL E + 0x1D41F: [691,0,333,14,389], // MATHEMATICAL BOLD SMALL F + 0x1D420: [472,206,500,28,483], // MATHEMATICAL BOLD SMALL G + 0x1D421: [676,0,556,15,534], // MATHEMATICAL BOLD SMALL H + 0x1D422: [691,0,278,15,256], // MATHEMATICAL BOLD SMALL I + 0x1D423: [691,203,333,-57,263], // MATHEMATICAL BOLD SMALL J + 0x1D424: [676,0,556,22,543], // MATHEMATICAL BOLD SMALL K + 0x1D425: [676,0,278,15,256], // MATHEMATICAL BOLD SMALL L + 0x1D426: [473,0,833,15,814], // MATHEMATICAL BOLD SMALL M + 0x1D427: [473,0,556,21,539], // MATHEMATICAL BOLD SMALL N + 0x1D428: [473,14,500,25,476], // MATHEMATICAL BOLD SMALL O + 0x1D429: [473,205,556,19,524], // MATHEMATICAL BOLD SMALL P + 0x1D42A: [473,205,556,34,536], // MATHEMATICAL BOLD SMALL Q + 0x1D42B: [473,0,444,28,434], // MATHEMATICAL BOLD SMALL R + 0x1D42C: [473,14,389,25,361], // MATHEMATICAL BOLD SMALL S + 0x1D42D: [630,12,333,19,332], // MATHEMATICAL BOLD SMALL T + 0x1D42E: [461,14,556,16,538], // MATHEMATICAL BOLD SMALL U + 0x1D42F: [461,14,500,21,485], // MATHEMATICAL BOLD SMALL V + 0x1D430: [461,14,722,23,707], // MATHEMATICAL BOLD SMALL W + 0x1D431: [461,0,500,12,484], // MATHEMATICAL BOLD SMALL X + 0x1D432: [461,205,500,16,482], // MATHEMATICAL BOLD SMALL Y + 0x1D433: [461,0,444,21,420], // MATHEMATICAL BOLD SMALL Z + 0x1D7CE: [688,13,500,24,476], // MATHEMATICAL BOLD DIGIT ZERO + 0x1D7CF: [688,0,500,65,441], // MATHEMATICAL BOLD DIGIT ONE + 0x1D7D0: [688,0,500,17,478], // MATHEMATICAL BOLD DIGIT TWO + 0x1D7D1: [688,14,500,16,468], // MATHEMATICAL BOLD DIGIT THREE + 0x1D7D2: [688,0,500,19,476], // MATHEMATICAL BOLD DIGIT FOUR + 0x1D7D3: [676,8,500,22,470], // MATHEMATICAL BOLD DIGIT FIVE + 0x1D7D4: [688,13,500,28,475], // MATHEMATICAL BOLD DIGIT SIX + 0x1D7D5: [676,0,500,17,477], // MATHEMATICAL BOLD DIGIT SEVEN + 0x1D7D6: [688,13,500,28,472], // MATHEMATICAL BOLD DIGIT EIGHT + 0x1D7D7: [688,13,500,26,473] // MATHEMATICAL BOLD DIGIT NINE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js new file mode 100644 index 0000000..8abae69 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D468: [685,0,759,39,724], // MATHEMATICAL BOLD ITALIC CAPITAL A + 0x1D469: [669,0,726,42,715], // MATHEMATICAL BOLD ITALIC CAPITAL B + 0x1D46A: [685,12,701,55,745], // MATHEMATICAL BOLD ITALIC CAPITAL C + 0x1D46B: [669,0,818,42,790], // MATHEMATICAL BOLD ITALIC CAPITAL D + 0x1D46C: [669,0,732,42,754], // MATHEMATICAL BOLD ITALIC CAPITAL E + 0x1D46D: [669,0,635,44,750], // MATHEMATICAL BOLD ITALIC CAPITAL F + 0x1D46E: [685,12,768,55,768], // MATHEMATICAL BOLD ITALIC CAPITAL G + 0x1D46F: [669,0,891,42,946], // MATHEMATICAL BOLD ITALIC CAPITAL H + 0x1D470: [669,0,502,42,557], // MATHEMATICAL BOLD ITALIC CAPITAL I + 0x1D471: [669,12,558,66,646], // MATHEMATICAL BOLD ITALIC CAPITAL J + 0x1D472: [669,0,795,42,839], // MATHEMATICAL BOLD ITALIC CAPITAL K + 0x1D473: [669,0,744,42,700], // MATHEMATICAL BOLD ITALIC CAPITAL L + 0x1D474: [669,0,1016,42,1071], // MATHEMATICAL BOLD ITALIC CAPITAL M + 0x1D475: [669,0,869,42,924], // MATHEMATICAL BOLD ITALIC CAPITAL N + 0x1D476: [685,16,777,55,755], // MATHEMATICAL BOLD ITALIC CAPITAL O + 0x1D477: [669,0,612,42,733], // MATHEMATICAL BOLD ITALIC CAPITAL P + 0x1D478: [685,154,810,55,756], // MATHEMATICAL BOLD ITALIC CAPITAL Q + 0x1D479: [669,0,801,42,784], // MATHEMATICAL BOLD ITALIC CAPITAL R + 0x1D47A: [685,10,671,55,704], // MATHEMATICAL BOLD ITALIC CAPITAL S + 0x1D47B: [669,0,568,28,700], // MATHEMATICAL BOLD ITALIC CAPITAL T + 0x1D47C: [669,10,733,72,810], // MATHEMATICAL BOLD ITALIC CAPITAL U + 0x1D47D: [669,15,593,66,797], // MATHEMATICAL BOLD ITALIC CAPITAL V + 0x1D47E: [669,17,925,66,1129], // MATHEMATICAL BOLD ITALIC CAPITAL W + 0x1D47F: [669,0,808,28,830], // MATHEMATICAL BOLD ITALIC CAPITAL X + 0x1D480: [669,0,549,39,725], // MATHEMATICAL BOLD ITALIC CAPITAL Y + 0x1D481: [669,0,797,66,830], // MATHEMATICAL BOLD ITALIC CAPITAL Z + 0x1D482: [462,10,581,44,548], // MATHEMATICAL BOLD ITALIC SMALL A + 0x1D483: [685,8,509,50,487], // MATHEMATICAL BOLD ITALIC SMALL B + 0x1D484: [462,10,477,44,460], // MATHEMATICAL BOLD ITALIC SMALL C + 0x1D485: [685,14,595,44,589], // MATHEMATICAL BOLD ITALIC SMALL D + 0x1D486: [462,10,498,44,459], // MATHEMATICAL BOLD ITALIC SMALL E + 0x1D487: [685,206,572,44,632], // MATHEMATICAL BOLD ITALIC SMALL F + 0x1D488: [462,203,527,22,527], // MATHEMATICAL BOLD ITALIC SMALL G + 0x1D489: [685,10,576,50,543], // MATHEMATICAL BOLD ITALIC SMALL H + 0x1D48A: [620,9,357,55,300], // MATHEMATICAL BOLD ITALIC SMALL I + 0x1D48B: [620,207,431,-18,414], // MATHEMATICAL BOLD ITALIC SMALL J + 0x1D48C: [686,11,580,55,563], // MATHEMATICAL BOLD ITALIC SMALL K + 0x1D48D: [685,9,346,50,310], // MATHEMATICAL BOLD ITALIC SMALL L + 0x1D48E: [467,9,760,33,727], // MATHEMATICAL BOLD ITALIC SMALL M + 0x1D48F: [467,10,559,33,526], // MATHEMATICAL BOLD ITALIC SMALL N + 0x1D490: [462,10,561,44,539], // MATHEMATICAL BOLD ITALIC SMALL O + 0x1D491: [469,205,571,-33,554], // MATHEMATICAL BOLD ITALIC SMALL P + 0x1D492: [462,205,526,44,532], // MATHEMATICAL BOLD ITALIC SMALL Q + 0x1D493: [467,0,441,33,424], // MATHEMATICAL BOLD ITALIC SMALL R + 0x1D494: [462,11,474,55,419], // MATHEMATICAL BOLD ITALIC SMALL S + 0x1D495: [592,10,351,44,318], // MATHEMATICAL BOLD ITALIC SMALL T + 0x1D496: [463,10,535,33,502], // MATHEMATICAL BOLD ITALIC SMALL U + 0x1D497: [473,14,554,52,539], // MATHEMATICAL BOLD ITALIC SMALL V + 0x1D498: [473,14,814,52,799], // MATHEMATICAL BOLD ITALIC SMALL W + 0x1D499: [462,8,587,33,543], // MATHEMATICAL BOLD ITALIC SMALL X + 0x1D49A: [462,205,519,35,522], // MATHEMATICAL BOLD ITALIC SMALL Y + 0x1D49B: [461,19,531,35,499] // MATHEMATICAL BOLD ITALIC SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathBoldItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js new file mode 100644 index 0000000..37a182a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBoldScript.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D4D0: [699,21,984,50,955], // MATHEMATICAL BOLD SCRIPT CAPITAL A + 0x1D4D1: [699,21,1060,55,985], // MATHEMATICAL BOLD SCRIPT CAPITAL B + 0x1D4D2: [699,21,912,60,877], // MATHEMATICAL BOLD SCRIPT CAPITAL C + 0x1D4D3: [699,21,991,60,906], // MATHEMATICAL BOLD SCRIPT CAPITAL D + 0x1D4D4: [699,21,826,95,791], // MATHEMATICAL BOLD SCRIPT CAPITAL E + 0x1D4D5: [699,21,1042,65,1025], // MATHEMATICAL BOLD SCRIPT CAPITAL F + 0x1D4D6: [699,21,834,82,799], // MATHEMATICAL BOLD SCRIPT CAPITAL G + 0x1D4D7: [699,21,1171,65,1154], // MATHEMATICAL BOLD SCRIPT CAPITAL H + 0x1D4D8: [699,21,997,47,977], // MATHEMATICAL BOLD SCRIPT CAPITAL I + 0x1D4D9: [699,224,906,19,886], // MATHEMATICAL BOLD SCRIPT CAPITAL J + 0x1D4DA: [699,21,1154,45,1130], // MATHEMATICAL BOLD SCRIPT CAPITAL K + 0x1D4DB: [699,21,1036,40,1015], // MATHEMATICAL BOLD SCRIPT CAPITAL L + 0x1D4DC: [699,21,1300,60,1245], // MATHEMATICAL BOLD SCRIPT CAPITAL M + 0x1D4DD: [699,21,1095,60,1078], // MATHEMATICAL BOLD SCRIPT CAPITAL N + 0x1D4DE: [699,21,809,72,749], // MATHEMATICAL BOLD SCRIPT CAPITAL O + 0x1D4DF: [699,21,1025,55,994], // MATHEMATICAL BOLD SCRIPT CAPITAL P + 0x1D4E0: [699,52,809,72,749], // MATHEMATICAL BOLD SCRIPT CAPITAL Q + 0x1D4E1: [699,21,1048,55,973], // MATHEMATICAL BOLD SCRIPT CAPITAL R + 0x1D4E2: [699,21,816,81,781], // MATHEMATICAL BOLD SCRIPT CAPITAL S + 0x1D4E3: [699,21,1030,65,1025], // MATHEMATICAL BOLD SCRIPT CAPITAL T + 0x1D4E4: [699,21,964,60,904], // MATHEMATICAL BOLD SCRIPT CAPITAL U + 0x1D4E5: [699,21,1040,60,1024], // MATHEMATICAL BOLD SCRIPT CAPITAL V + 0x1D4E6: [699,21,1320,60,1306], // MATHEMATICAL BOLD SCRIPT CAPITAL W + 0x1D4E7: [699,21,1033,64,1010], // MATHEMATICAL BOLD SCRIPT CAPITAL X + 0x1D4E8: [699,224,989,60,963], // MATHEMATICAL BOLD SCRIPT CAPITAL Y + 0x1D4E9: [699,21,996,50,976], // MATHEMATICAL BOLD SCRIPT CAPITAL Z + 0x1D4EA: [462,14,942,35,865], // MATHEMATICAL BOLD SCRIPT SMALL A + 0x1D4EB: [699,14,646,60,624], // MATHEMATICAL BOLD SCRIPT SMALL B + 0x1D4EC: [462,14,764,35,683], // MATHEMATICAL BOLD SCRIPT SMALL C + 0x1D4ED: [699,14,949,28,912], // MATHEMATICAL BOLD SCRIPT SMALL D + 0x1D4EE: [462,14,726,35,648], // MATHEMATICAL BOLD SCRIPT SMALL E + 0x1D4EF: [699,205,768,25,749], // MATHEMATICAL BOLD SCRIPT SMALL F + 0x1D4F0: [462,224,819,27,771], // MATHEMATICAL BOLD SCRIPT SMALL G + 0x1D4F1: [699,14,838,55,758], // MATHEMATICAL BOLD SCRIPT SMALL H + 0x1D4F2: [698,14,558,40,534], // MATHEMATICAL BOLD SCRIPT SMALL I + 0x1D4F3: [698,223,840,41,823], // MATHEMATICAL BOLD SCRIPT SMALL J + 0x1D4F4: [699,14,810,55,730], // MATHEMATICAL BOLD SCRIPT SMALL K + 0x1D4F5: [699,14,650,43,632], // MATHEMATICAL BOLD SCRIPT SMALL L + 0x1D4F6: [462,14,1137,45,1057], // MATHEMATICAL BOLD SCRIPT SMALL M + 0x1D4F7: [462,14,851,45,771], // MATHEMATICAL BOLD SCRIPT SMALL N + 0x1D4F8: [462,14,848,35,780], // MATHEMATICAL BOLD SCRIPT SMALL O + 0x1D4F9: [462,205,885,25,770], // MATHEMATICAL BOLD SCRIPT SMALL P + 0x1D4FA: [462,205,913,35,833], // MATHEMATICAL BOLD SCRIPT SMALL Q + 0x1D4FB: [462,0,677,40,648], // MATHEMATICAL BOLD SCRIPT SMALL R + 0x1D4FC: [557,14,562,51,449], // MATHEMATICAL BOLD SCRIPT SMALL S + 0x1D4FD: [669,14,618,47,612], // MATHEMATICAL BOLD SCRIPT SMALL T + 0x1D4FE: [450,14,842,31,762], // MATHEMATICAL BOLD SCRIPT SMALL U + 0x1D4FF: [458,14,732,40,670], // MATHEMATICAL BOLD SCRIPT SMALL V + 0x1D500: [458,14,1012,40,950], // MATHEMATICAL BOLD SCRIPT SMALL W + 0x1D501: [462,14,820,63,740], // MATHEMATICAL BOLD SCRIPT SMALL X + 0x1D502: [450,224,784,40,711], // MATHEMATICAL BOLD SCRIPT SMALL Y + 0x1D503: [493,14,782,61,702] // MATHEMATICAL BOLD SCRIPT SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathBoldScript.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js new file mode 100644 index 0000000..fd8fd0a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D434: [667,0,717,35,685], // MATHEMATICAL ITALIC CAPITAL A + 0x1D435: [653,0,696,38,686], // MATHEMATICAL ITALIC CAPITAL B + 0x1D436: [659,12,671,50,711], // MATHEMATICAL ITALIC CAPITAL C + 0x1D437: [653,0,790,38,765], // MATHEMATICAL ITALIC CAPITAL D + 0x1D438: [653,0,714,38,734], // MATHEMATICAL ITALIC CAPITAL E + 0x1D439: [653,0,618,38,723], // MATHEMATICAL ITALIC CAPITAL F + 0x1D43A: [668,12,734,50,734], // MATHEMATICAL ITALIC CAPITAL G + 0x1D43B: [653,0,873,38,923], // MATHEMATICAL ITALIC CAPITAL H + 0x1D43C: [653,0,480,38,530], // MATHEMATICAL ITALIC CAPITAL I + 0x1D43D: [653,12,540,60,620], // MATHEMATICAL ITALIC CAPITAL J + 0x1D43E: [653,0,762,38,802], // MATHEMATICAL ITALIC CAPITAL K + 0x1D43F: [653,0,708,38,668], // MATHEMATICAL ITALIC CAPITAL L + 0x1D440: [653,0,1005,38,1055], // MATHEMATICAL ITALIC CAPITAL M + 0x1D441: [653,0,851,38,901], // MATHEMATICAL ITALIC CAPITAL N + 0x1D442: [669,11,732,50,712], // MATHEMATICAL ITALIC CAPITAL O + 0x1D443: [653,0,594,38,704], // MATHEMATICAL ITALIC CAPITAL P + 0x1D444: [667,152,781,50,731], // MATHEMATICAL ITALIC CAPITAL Q + 0x1D445: [653,0,740,38,725], // MATHEMATICAL ITALIC CAPITAL R + 0x1D446: [668,10,650,50,680], // MATHEMATICAL ITALIC CAPITAL S + 0x1D447: [653,0,550,25,670], // MATHEMATICAL ITALIC CAPITAL T + 0x1D448: [653,13,705,65,775], // MATHEMATICAL ITALIC CAPITAL U + 0x1D449: [653,16,575,60,760], // MATHEMATICAL ITALIC CAPITAL V + 0x1D44A: [653,16,916,60,1101], // MATHEMATICAL ITALIC CAPITAL W + 0x1D44B: [653,0,790,25,810], // MATHEMATICAL ITALIC CAPITAL X + 0x1D44C: [653,0,535,35,695], // MATHEMATICAL ITALIC CAPITAL Y + 0x1D44D: [653,0,772,60,802], // MATHEMATICAL ITALIC CAPITAL Z + 0x1D44E: [441,10,502,40,472], // MATHEMATICAL ITALIC SMALL A + 0x1D44F: [668,11,470,45,450], // MATHEMATICAL ITALIC SMALL B + 0x1D450: [441,11,415,40,400], // MATHEMATICAL ITALIC SMALL C + 0x1D451: [668,12,532,40,527], // MATHEMATICAL ITALIC SMALL D + 0x1D452: [441,11,445,40,410], // MATHEMATICAL ITALIC SMALL E + 0x1D453: [668,187,555,40,615], // MATHEMATICAL ITALIC SMALL F + 0x1D454: [441,187,492,20,492], // MATHEMATICAL ITALIC SMALL G + 0x1D456: [616,11,311,50,257], // MATHEMATICAL ITALIC SMALL I + 0x1D457: [616,187,389,-16,372], // MATHEMATICAL ITALIC SMALL J + 0x1D458: [668,11,542,45,527], // MATHEMATICAL ITALIC SMALL K + 0x1D459: [668,10,318,45,278], // MATHEMATICAL ITALIC SMALL L + 0x1D45A: [441,8,710,30,680], // MATHEMATICAL ITALIC SMALL M + 0x1D45B: [441,8,497,30,467], // MATHEMATICAL ITALIC SMALL N + 0x1D45C: [441,11,458,40,438], // MATHEMATICAL ITALIC SMALL O + 0x1D45D: [441,183,489,-30,474], // MATHEMATICAL ITALIC SMALL P + 0x1D45E: [441,183,458,40,463], // MATHEMATICAL ITALIC SMALL Q + 0x1D45F: [441,0,408,30,393], // MATHEMATICAL ITALIC SMALL R + 0x1D460: [441,11,440,50,390], // MATHEMATICAL ITALIC SMALL S + 0x1D461: [567,9,313,40,283], // MATHEMATICAL ITALIC SMALL T + 0x1D462: [441,9,474,30,444], // MATHEMATICAL ITALIC SMALL U + 0x1D463: [458,9,506,72,479], // MATHEMATICAL ITALIC SMALL V + 0x1D464: [460,9,775,72,748], // MATHEMATICAL ITALIC SMALL W + 0x1D465: [441,9,550,30,510], // MATHEMATICAL ITALIC SMALL X + 0x1D466: [440,183,496,30,496], // MATHEMATICAL ITALIC SMALL Y + 0x1D467: [450,14,499,42,467] // MATHEMATICAL ITALIC SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js new file mode 100644 index 0000000..b4eb121 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js @@ -0,0 +1,207 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2201: [760,15,463,59,404], // COMPLEMENT + 0x2204: [775,122,560,71,487], // THERE DOES NOT EXIST + 0x2206: [674,0,731,63,665], // INCREMENT + 0x220A: [459,-45,486,64,422], // SMALL ELEMENT OF + 0x220C: [662,157,685,60,625], // stix-negated (vert) contains + 0x220D: [459,-45,486,64,422], // SMALL CONTAINS AS MEMBER + 0x220E: [640,0,545,60,485], // END OF PROOF + 0x2214: [741,41,685,48,636], // DOT PLUS + 0x221B: [973,259,928,112,963], // CUBE ROOT + 0x221C: [973,259,928,112,963], // FOURTH ROOT + 0x221F: [584,0,685,50,634], // RIGHT ANGLE + 0x2221: [547,72,685,22,642], // MEASURED ANGLE + 0x2222: [519,11,685,56,653], // SPHERICAL ANGLE + 0x2224: [690,189,404,23,381], // DOES NOT DIVIDE + 0x2226: [690,189,609,23,586], // NOT PARALLEL TO + 0x222C: [824,320,701,32,881], // DOUBLE INTEGRAL + 0x222D: [824,320,943,32,1123], // TRIPLE INTEGRAL + 0x222E: [824,320,499,32,639], // CONTOUR INTEGRAL + 0x222F: [824,320,741,32,881], // SURFACE INTEGRAL + 0x2230: [824,320,982,32,1122], // VOLUME INTEGRAL + 0x2231: [824,320,499,32,639], // CLOCKWISE INTEGRAL + 0x2232: [824,320,499,32,639], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [824,320,499,32,639], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2234: [521,16,620,38,582], // THEREFORE + 0x2235: [521,16,620,38,582], // BECAUSE + 0x2236: [521,13,511,192,319], // RATIO + 0x2237: [521,13,685,82,602], // PROPORTION + 0x2238: [511,-220,685,48,637], // DOT MINUS + 0x2239: [511,5,685,48,637], // EXCESS + 0x223A: [511,5,685,48,637], // GEOMETRIC PROPORTION + 0x223B: [521,13,685,48,637], // HOMOTHETIC + 0x223D: [362,-148,685,48,637], // REVERSED TILDE + 0x223E: [413,-90,685,48,637], // stix-most positive + 0x223F: [467,-39,685,49,637], // stix-reverse sine wave + 0x2241: [424,-88,685,48,637], // stix-not, vert, similar + 0x2242: [445,-55,685,48,637], // MINUS TILDE + 0x2244: [519,35,685,48,637], // stix-not (vert) similar or equal + 0x2246: [604,107,685,47,637], // APPROXIMATELY BUT NOT ACTUALLY EQUAL TO + 0x2247: [647,202,685,48,637], // stix-not (vert) similar over two-line equals + 0x2249: [549,49,685,48,637], // stix-not, vert, approximate + 0x224A: [552,45,685,48,637], // ALMOST EQUAL OR EQUAL TO + 0x224B: [532,26,685,48,638], // TRIPLE TILDE + 0x224C: [532,27,685,48,637], // stix-all equal to (lazy S over equals) (formerly 224C; that shape changed) + 0x224E: [471,-35,685,48,637], // GEOMETRICALLY EQUIVALENT TO + 0x224F: [471,-120,685,48,637], // DIFFERENCE BETWEEN + 0x2251: [611,106,685,48,637], // GEOMETRICALLY EQUAL TO + 0x2252: [611,105,685,48,637], // APPROXIMATELY EQUAL TO OR THE IMAGE OF + 0x2253: [611,106,685,48,637], // IMAGE OF OR APPROXIMATELY EQUAL TO + 0x2254: [417,-89,824,48,776], // COLON EQUALS + 0x2255: [417,-89,824,48,776], // EQUALS COLON + 0x2256: [416,-90,685,48,637], // RING IN EQUAL TO + 0x2257: [752,-120,685,48,637], // RING EQUAL TO + 0x2258: [729,-120,685,48,637], // CORRESPONDS TO + 0x2259: [853,-120,685,48,637], // ESTIMATES + 0x225A: [853,-120,685,48,637], // EQUIANGULAR TO + 0x225B: [756,-120,685,48,637], // STAR EQUALS + 0x225C: [853,-120,685,48,637], // DELTA EQUAL TO + 0x225D: [823,-120,685,7,678], // EQUAL TO BY DEFINITION + 0x225E: [703,-120,685,48,637], // MEASURED BY + 0x225F: [863,-120,685,48,637], // QUESTIONED EQUAL TO + 0x2262: [662,156,685,48,637], // stix-not (vert) three-line equals + 0x2263: [544,38,685,48,637], // STRICTLY EQUIVALENT TO + 0x2266: [718,211,685,57,622], // LESS-THAN OVER EQUAL TO + 0x2267: [718,211,685,57,622], // GREATER-THAN OVER EQUAL TO + 0x2268: [746,260,685,56,621], // stix-less, vert, not double equals + 0x2269: [746,260,685,56,621], // stix-gt, vert, not double equals + 0x226C: [730,224,466,85,381], // BETWEEN + 0x226D: [572,66,685,48,637], // stix-not (vert) asymptotically equal to + 0x226E: [662,156,685,56,621], // stix-not, vert, less-than + 0x226F: [662,156,685,56,621], // stix-not, vert, greater-than + 0x2270: [730,229,685,56,621], // stix-not, vert, less-than-or-equal + 0x2271: [730,229,685,56,622], // stix-not, vert, greater-than-or-equal + 0x2272: [664,164,685,48,637], // stix-less-than or (contour) similar + 0x2273: [664,164,685,48,637], // stix-greater-than or (contour) similar + 0x2274: [731,228,685,48,637], // stix-not, vert, less, similar + 0x2275: [730,229,685,48,637], // stix-not, vert, greater, similar + 0x2276: [705,204,685,56,621], // LESS-THAN OR GREATER-THAN + 0x2277: [705,204,685,56,621], // GREATER-THAN OR LESS-THAN + 0x2278: [750,250,685,48,637], // stix-not, vert, less, greater + 0x2279: [750,250,685,48,637], // stix-not, vert, greater, less + 0x227E: [664,164,685,48,637], // PRECEDES OR EQUIVALENT TO + 0x227F: [664,164,685,48,637], // SUCCEEDS OR EQUIVALENT TO + 0x2280: [662,156,685,64,621], // DOES NOT PRECEDE + 0x2281: [662,156,685,64,621], // stix-not (vert) succeeds + 0x2284: [662,156,685,65,623], // stix-not subset [vertical negation] + 0x2285: [662,156,685,65,623], // stix-not superset [vertical negation] + 0x2288: [730,229,685,64,621], // stix-/nsubseteq N: not (vert) subset, equals + 0x2289: [730,229,685,64,621], // stix-/nsupseteq N: not (vert) superset, equals + 0x228A: [627,216,685,64,621], // stix-subset, not equals, variant + 0x228B: [627,216,685,64,621], // stix-superset, not equals, variant + 0x228C: [536,31,620,48,572], // MULTISET + 0x228D: [536,31,620,48,572], // MULTISET MULTIPLICATION + 0x228F: [531,25,685,64,621], // SQUARE IMAGE OF + 0x2290: [531,25,685,64,621], // SQUARE ORIGINAL OF + 0x229A: [623,119,842,50,792], // CIRCLED RING OPERATOR + 0x229B: [623,119,842,50,792], // CIRCLED ASTERISK OPERATOR + 0x229C: [623,119,842,50,792], // stix-two horizontal bars in circle + 0x229D: [623,119,842,50,792], // CIRCLED DASH + 0x229E: [662,158,910,45,865], // SQUARED PLUS + 0x229F: [662,158,910,45,865], // SQUARED MINUS + 0x22A0: [662,158,910,45,865], // SQUARED TIMES + 0x22A1: [662,157,910,45,865], // SQUARED DOT OPERATOR + 0x22A6: [662,0,497,64,433], // ASSERTION + 0x22A7: [662,0,498,64,434], // MODELS + 0x22A9: [662,0,860,57,814], // FORCES + 0x22AA: [662,0,860,45,815], // TRIPLE VERTICAL BAR RIGHT TURNSTILE + 0x22AB: [662,0,860,57,814], // DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE + 0x22AC: [662,0,786,9,723], // DOES NOT PROVE + 0x22AD: [662,0,786,9,723], // NOT TRUE + 0x22AE: [662,0,968,9,922], // DOES NOT FORCE + 0x22AF: [662,0,968,9,922], // NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE + 0x22B0: [551,45,685,64,621], // PRECEDES UNDER RELATION + 0x22B1: [551,45,685,64,621], // SUCCEEDS UNDER RELATION + 0x22B2: [531,25,685,24,631], // NORMAL SUBGROUP OF + 0x22B3: [531,25,685,54,661], // CONTAINS AS NORMAL SUBGROUP + 0x22B4: [607,103,685,24,631], // NORMAL SUBGROUP OF OR EQUAL TO + 0x22B5: [607,103,685,54,661], // CONTAINS AS NORMAL SUBGROUP OR EQUAL TO + 0x22B6: [403,-103,1145,50,1095], // ORIGINAL OF + 0x22B7: [403,-103,1145,50,1095], // IMAGE OF + 0x22B8: [403,-103,849,50,799], // MULTIMAP + 0x22B9: [547,41,685,48,636], // HERMITIAN CONJUGATE MATRIX + 0x22BA: [450,212,480,74,406], // INTERCALATE + 0x22BB: [536,139,620,32,590], // XOR + 0x22BC: [646,29,620,32,590], // NAND + 0x22BD: [646,29,620,32,590], // NOR + 0x22BE: [584,0,685,50,634], // RIGHT ANGLE WITH ARC + 0x22BF: [662,158,911,45,865], // RIGHT TRIANGLE + 0x22C7: [545,38,685,51,634], // DIVISION TIMES + 0x22C9: [582,80,810,93,716], // LEFT NORMAL FACTOR SEMIDIRECT PRODUCT + 0x22CA: [582,80,810,93,716], // RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT + 0x22CB: [582,80,810,74,736], // LEFT SEMIDIRECT PRODUCT + 0x22CC: [582,80,810,74,736], // RIGHT SEMIDIRECT PRODUCT + 0x22CD: [445,-55,685,48,637], // REVERSED TILDE EQUALS + 0x22CE: [532,25,580,31,549], // CURLY LOGICAL OR + 0x22CF: [532,25,580,31,549], // CURLY LOGICAL AND + 0x22D0: [531,25,685,64,621], // DOUBLE SUBSET + 0x22D1: [531,25,685,64,621], // DOUBLE SUPERSET + 0x22D2: [536,31,620,48,572], // DOUBLE INTERSECTION + 0x22D3: [536,31,620,48,572], // DOUBLE UNION + 0x22D4: [631,31,620,48,572], // PITCHFORK + 0x22D5: [690,189,685,48,637], // EQUAL AND PARALLEL TO + 0x22D6: [534,24,685,56,621], // LESS-THAN WITH DOT + 0x22D7: [534,24,685,56,621], // GREATER-THAN WITH DOT + 0x22D8: [534,24,1274,45,1229], // VERY MUCH LESS-THAN + 0x22D9: [534,24,1274,45,1229], // VERY MUCH GREATER-THAN + 0x22DA: [830,324,685,56,621], // stix-less, equal, slanted, greater + 0x22DB: [830,324,685,56,621], // stix-greater, equal, slanted, less + 0x22DC: [607,103,685,64,621], // EQUAL TO OR LESS-THAN + 0x22DD: [607,103,685,64,621], // EQUAL TO OR GREATER-THAN + 0x22DE: [627,121,685,64,621], // EQUAL TO OR PRECEDES + 0x22DF: [627,121,685,64,621], // EQUAL TO OR SUCCEEDS + 0x22E0: [730,229,685,64,621], // stix-not (vert) precedes or contour equals + 0x22E1: [730,229,685,64,621], // stix-not (vert) succeeds or contour equals + 0x22E2: [730,229,685,65,622], // NOT SQUARE IMAGE OF OR EQUAL TO + 0x22E3: [730,229,685,65,622], // NOT SQUARE ORIGINAL OF OR EQUAL TO + 0x22E4: [627,216,685,64,621], // SQUARE IMAGE OF OR NOT EQUAL TO + 0x22E5: [627,216,685,64,621], // SQUARE ORIGINAL OF OR NOT EQUAL TO + 0x22E6: [669,279,685,48,637], // LESS-THAN BUT NOT EQUIVALENT TO + 0x22E7: [669,279,685,48,637], // GREATER-THAN BUT NOT EQUIVALENT TO + 0x22E8: [670,279,685,48,637], // PRECEDES BUT NOT EQUIVALENT TO + 0x22E9: [670,279,685,48,637], // SUCCEEDS BUT NOT EQUIVALENT TO + 0x22EA: [662,156,635,24,581], // NOT NORMAL SUBGROUP OF + 0x22EB: [662,156,635,54,611], // DOES NOT CONTAIN AS NORMAL SUBGROUP + 0x22EC: [730,229,635,24,581], // stix-not, vert, left triangle, equals + 0x22ED: [730,229,635,54,611], // stix-not, vert, right triangle, equals + 0x22F0: [520,18,926,194,732], // UP RIGHT DIAGONAL ELLIPSIS + 0x22F2: [531,27,823,55,763], // ELEMENT OF WITH LONG HORIZONTAL STROKE + 0x22F3: [531,27,685,60,625], // ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE + 0x22F4: [459,-45,486,62,420], // SMALL ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE + 0x22F5: [716,27,685,60,625], // ELEMENT OF WITH DOT ABOVE + 0x22F6: [685,27,685,60,625], // ELEMENT OF WITH OVERBAR + 0x22F7: [613,-45,486,62,420], // SMALL ELEMENT OF WITH OVERBAR + 0x22F8: [532,180,685,60,625], // ELEMENT OF WITH UNDERBAR + 0x22F9: [531,27,685,61,625], // ELEMENT OF WITH TWO HORIZONTAL STROKES + 0x22FA: [531,27,823,55,763], // CONTAINS WITH LONG HORIZONTAL STROKE + 0x22FB: [531,27,685,59,624], // CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE + 0x22FC: [459,-45,486,62,420], // SMALL CONTAINS WITH VERTICAL BAR AT END OF HORIZONTAL STROKE + 0x22FD: [685,27,685,61,626], // CONTAINS WITH OVERBAR + 0x22FE: [613,-45,486,67,425], // SMALL CONTAINS WITH OVERBAR + 0x22FF: [662,158,910,45,865] // Z NOTATION BAG MEMBERSHIP + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js new file mode 100644 index 0000000..f2287c5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D5A0: [674,0,666,31,635], // MATHEMATICAL SANS-SERIF CAPITAL A + 0x1D5A1: [662,0,604,74,547], // MATHEMATICAL SANS-SERIF CAPITAL B + 0x1D5A2: [676,14,671,27,637], // MATHEMATICAL SANS-SERIF CAPITAL C + 0x1D5A3: [662,0,692,74,656], // MATHEMATICAL SANS-SERIF CAPITAL D + 0x1D5A4: [662,0,583,74,540], // MATHEMATICAL SANS-SERIF CAPITAL E + 0x1D5A5: [662,0,535,74,523], // MATHEMATICAL SANS-SERIF CAPITAL F + 0x1D5A6: [676,14,695,27,627], // MATHEMATICAL SANS-SERIF CAPITAL G + 0x1D5A7: [662,0,658,74,584], // MATHEMATICAL SANS-SERIF CAPITAL H + 0x1D5A8: [662,0,401,45,356], // MATHEMATICAL SANS-SERIF CAPITAL I + 0x1D5A9: [662,14,398,12,305], // MATHEMATICAL SANS-SERIF CAPITAL J + 0x1D5AA: [662,0,634,74,630], // MATHEMATICAL SANS-SERIF CAPITAL K + 0x1D5AB: [662,0,559,74,546], // MATHEMATICAL SANS-SERIF CAPITAL L + 0x1D5AC: [662,0,843,75,768], // MATHEMATICAL SANS-SERIF CAPITAL M + 0x1D5AD: [662,14,675,74,601], // MATHEMATICAL SANS-SERIF CAPITAL N + 0x1D5AE: [676,14,714,30,684], // MATHEMATICAL SANS-SERIF CAPITAL O + 0x1D5AF: [662,0,525,74,512], // MATHEMATICAL SANS-SERIF CAPITAL P + 0x1D5B0: [676,175,716,30,691], // MATHEMATICAL SANS-SERIF CAPITAL Q + 0x1D5B1: [662,0,589,74,581], // MATHEMATICAL SANS-SERIF CAPITAL R + 0x1D5B2: [676,14,541,32,481], // MATHEMATICAL SANS-SERIF CAPITAL S + 0x1D5B3: [662,0,608,15,593], // MATHEMATICAL SANS-SERIF CAPITAL T + 0x1D5B4: [662,14,661,69,592], // MATHEMATICAL SANS-SERIF CAPITAL U + 0x1D5B5: [662,11,654,31,623], // MATHEMATICAL SANS-SERIF CAPITAL V + 0x1D5B6: [662,11,921,29,892], // MATHEMATICAL SANS-SERIF CAPITAL W + 0x1D5B7: [662,0,700,31,669], // MATHEMATICAL SANS-SERIF CAPITAL X + 0x1D5B8: [662,0,630,21,609], // MATHEMATICAL SANS-SERIF CAPITAL Y + 0x1D5B9: [662,0,637,28,603], // MATHEMATICAL SANS-SERIF CAPITAL Z + 0x1D5BA: [463,10,448,35,391], // MATHEMATICAL SANS-SERIF SMALL A + 0x1D5BB: [684,10,496,63,466], // MATHEMATICAL SANS-SERIF SMALL B + 0x1D5BC: [463,10,456,23,432], // MATHEMATICAL SANS-SERIF SMALL C + 0x1D5BD: [684,11,494,28,437], // MATHEMATICAL SANS-SERIF SMALL D + 0x1D5BE: [463,10,444,23,428], // MATHEMATICAL SANS-SERIF SMALL E + 0x1D5BF: [683,0,336,20,369], // MATHEMATICAL SANS-SERIF SMALL F + 0x1D5C0: [463,216,496,21,467], // MATHEMATICAL SANS-SERIF SMALL G + 0x1D5C1: [684,0,487,63,424], // MATHEMATICAL SANS-SERIF SMALL H + 0x1D5C2: [679,0,220,64,156], // MATHEMATICAL SANS-SERIF SMALL I + 0x1D5C3: [679,216,254,-74,185], // MATHEMATICAL SANS-SERIF SMALL J + 0x1D5C4: [684,0,453,63,452], // MATHEMATICAL SANS-SERIF SMALL K + 0x1D5C5: [684,0,205,61,144], // MATHEMATICAL SANS-SERIF SMALL L + 0x1D5C6: [464,0,756,65,691], // MATHEMATICAL SANS-SERIF SMALL M + 0x1D5C7: [464,0,487,63,424], // MATHEMATICAL SANS-SERIF SMALL N + 0x1D5C8: [463,10,499,28,471], // MATHEMATICAL SANS-SERIF SMALL O + 0x1D5C9: [464,216,498,67,470], // MATHEMATICAL SANS-SERIF SMALL P + 0x1D5CA: [464,216,498,28,435], // MATHEMATICAL SANS-SERIF SMALL Q + 0x1D5CB: [464,0,336,63,328], // MATHEMATICAL SANS-SERIF SMALL R + 0x1D5CC: [463,10,389,49,350], // MATHEMATICAL SANS-SERIF SMALL S + 0x1D5CD: [580,10,291,1,287], // MATHEMATICAL SANS-SERIF SMALL T + 0x1D5CE: [453,11,491,63,430], // MATHEMATICAL SANS-SERIF SMALL U + 0x1D5CF: [453,14,474,31,443], // MATHEMATICAL SANS-SERIF SMALL V + 0x1D5D0: [453,14,702,28,675], // MATHEMATICAL SANS-SERIF SMALL W + 0x1D5D1: [453,0,482,30,452], // MATHEMATICAL SANS-SERIF SMALL X + 0x1D5D2: [453,216,484,28,453], // MATHEMATICAL SANS-SERIF SMALL Y + 0x1D5D3: [453,0,447,25,417], // MATHEMATICAL SANS-SERIF SMALL Z + 0x1D7E2: [676,14,500,23,477], // MATHEMATICAL SANS-SERIF DIGIT ZERO + 0x1D7E3: [677,0,500,108,302], // MATHEMATICAL SANS-SERIF DIGIT ONE + 0x1D7E4: [676,0,500,35,469], // MATHEMATICAL SANS-SERIF DIGIT TWO + 0x1D7E5: [676,14,500,31,441], // MATHEMATICAL SANS-SERIF DIGIT THREE + 0x1D7E6: [676,0,500,11,489], // MATHEMATICAL SANS-SERIF DIGIT FOUR + 0x1D7E7: [676,14,500,36,458], // MATHEMATICAL SANS-SERIF DIGIT FIVE + 0x1D7E8: [684,14,500,32,470], // MATHEMATICAL SANS-SERIF DIGIT SIX + 0x1D7E9: [662,8,500,38,451], // MATHEMATICAL SANS-SERIF DIGIT SEVEN + 0x1D7EA: [676,14,500,49,447], // MATHEMATICAL SANS-SERIF DIGIT EIGHT + 0x1D7EB: [676,21,500,28,466] // MATHEMATICAL SANS-SERIF DIGIT NINE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathSS.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js new file mode 100644 index 0000000..f9d23ce --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js @@ -0,0 +1,90 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D5D4: [690,0,690,25,665], // MATHEMATICAL SANS-SERIF BOLD CAPITAL A + 0x1D5D5: [676,0,636,80,594], // MATHEMATICAL SANS-SERIF BOLD CAPITAL B + 0x1D5D6: [691,19,723,49,688], // MATHEMATICAL SANS-SERIF BOLD CAPITAL C + 0x1D5D7: [676,0,709,80,674], // MATHEMATICAL SANS-SERIF BOLD CAPITAL D + 0x1D5D8: [676,0,635,80,597], // MATHEMATICAL SANS-SERIF BOLD CAPITAL E + 0x1D5D9: [676,0,582,80,570], // MATHEMATICAL SANS-SERIF BOLD CAPITAL F + 0x1D5DA: [691,19,746,37,671], // MATHEMATICAL SANS-SERIF BOLD CAPITAL G + 0x1D5DB: [676,0,715,80,635], // MATHEMATICAL SANS-SERIF BOLD CAPITAL H + 0x1D5DC: [676,0,440,65,375], // MATHEMATICAL SANS-SERIF BOLD CAPITAL I + 0x1D5DD: [676,96,481,15,406], // MATHEMATICAL SANS-SERIF BOLD CAPITAL J + 0x1D5DE: [676,0,712,80,707], // MATHEMATICAL SANS-SERIF BOLD CAPITAL K + 0x1D5DF: [676,0,603,80,587], // MATHEMATICAL SANS-SERIF BOLD CAPITAL L + 0x1D5E0: [676,0,913,80,833], // MATHEMATICAL SANS-SERIF BOLD CAPITAL M + 0x1D5E1: [676,18,724,80,644], // MATHEMATICAL SANS-SERIF BOLD CAPITAL N + 0x1D5E2: [692,18,778,35,743], // MATHEMATICAL SANS-SERIF BOLD CAPITAL O + 0x1D5E3: [676,0,581,80,569], // MATHEMATICAL SANS-SERIF BOLD CAPITAL P + 0x1D5E4: [691,176,779,35,754], // MATHEMATICAL SANS-SERIF BOLD CAPITAL Q + 0x1D5E5: [676,0,670,80,657], // MATHEMATICAL SANS-SERIF BOLD CAPITAL R + 0x1D5E6: [691,19,554,35,511], // MATHEMATICAL SANS-SERIF BOLD CAPITAL S + 0x1D5E7: [676,0,641,14,627], // MATHEMATICAL SANS-SERIF BOLD CAPITAL T + 0x1D5E8: [676,19,699,75,624], // MATHEMATICAL SANS-SERIF BOLD CAPITAL U + 0x1D5E9: [676,18,690,25,665], // MATHEMATICAL SANS-SERIF BOLD CAPITAL V + 0x1D5EA: [676,15,997,30,967], // MATHEMATICAL SANS-SERIF BOLD CAPITAL W + 0x1D5EB: [676,0,740,40,700], // MATHEMATICAL SANS-SERIF BOLD CAPITAL X + 0x1D5EC: [676,0,694,20,674], // MATHEMATICAL SANS-SERIF BOLD CAPITAL Y + 0x1D5ED: [676,0,653,25,623], // MATHEMATICAL SANS-SERIF BOLD CAPITAL Z + 0x1D5EE: [473,14,489,23,428], // MATHEMATICAL SANS-SERIF BOLD SMALL A + 0x1D5EF: [676,13,512,55,487], // MATHEMATICAL SANS-SERIF BOLD SMALL B + 0x1D5F0: [473,14,462,25,442], // MATHEMATICAL SANS-SERIF BOLD SMALL C + 0x1D5F1: [676,14,518,25,463], // MATHEMATICAL SANS-SERIF BOLD SMALL D + 0x1D5F2: [473,13,452,25,433], // MATHEMATICAL SANS-SERIF BOLD SMALL E + 0x1D5F3: [691,0,340,14,374], // MATHEMATICAL SANS-SERIF BOLD SMALL F + 0x1D5F4: [472,206,504,28,490], // MATHEMATICAL SANS-SERIF BOLD SMALL G + 0x1D5F5: [676,0,510,55,455], // MATHEMATICAL SANS-SERIF BOLD SMALL H + 0x1D5F6: [688,0,245,50,195], // MATHEMATICAL SANS-SERIF BOLD SMALL I + 0x1D5F7: [688,203,324,-57,269], // MATHEMATICAL SANS-SERIF BOLD SMALL J + 0x1D5F8: [676,0,519,55,506], // MATHEMATICAL SANS-SERIF BOLD SMALL K + 0x1D5F9: [676,0,235,55,180], // MATHEMATICAL SANS-SERIF BOLD SMALL L + 0x1D5FA: [473,0,776,55,721], // MATHEMATICAL SANS-SERIF BOLD SMALL M + 0x1D5FB: [473,0,510,55,455], // MATHEMATICAL SANS-SERIF BOLD SMALL N + 0x1D5FC: [473,14,501,25,476], // MATHEMATICAL SANS-SERIF BOLD SMALL O + 0x1D5FD: [473,205,512,55,487], // MATHEMATICAL SANS-SERIF BOLD SMALL P + 0x1D5FE: [473,205,512,25,457], // MATHEMATICAL SANS-SERIF BOLD SMALL Q + 0x1D5FF: [473,0,411,55,406], // MATHEMATICAL SANS-SERIF BOLD SMALL R + 0x1D600: [473,13,385,25,357], // MATHEMATICAL SANS-SERIF BOLD SMALL S + 0x1D601: [630,12,386,7,371], // MATHEMATICAL SANS-SERIF BOLD SMALL T + 0x1D602: [461,15,518,55,463], // MATHEMATICAL SANS-SERIF BOLD SMALL U + 0x1D603: [461,14,462,15,447], // MATHEMATICAL SANS-SERIF BOLD SMALL V + 0x1D604: [461,14,701,17,684], // MATHEMATICAL SANS-SERIF BOLD SMALL W + 0x1D605: [461,0,506,20,486], // MATHEMATICAL SANS-SERIF BOLD SMALL X + 0x1D606: [461,205,472,18,455], // MATHEMATICAL SANS-SERIF BOLD SMALL Y + 0x1D607: [461,0,441,21,417], // MATHEMATICAL SANS-SERIF BOLD SMALL Z + 0x1D7EC: [688,13,500,24,476], // MATHEMATICAL SANS-SERIF BOLD DIGIT ZERO + 0x1D7ED: [688,0,500,82,334], // MATHEMATICAL SANS-SERIF BOLD DIGIT ONE + 0x1D7EE: [688,0,500,20,474], // MATHEMATICAL SANS-SERIF BOLD DIGIT TWO + 0x1D7EF: [688,13,500,18,479], // MATHEMATICAL SANS-SERIF BOLD DIGIT THREE + 0x1D7F0: [688,0,500,19,484], // MATHEMATICAL SANS-SERIF BOLD DIGIT FOUR + 0x1D7F1: [676,13,500,13,483], // MATHEMATICAL SANS-SERIF BOLD DIGIT FIVE + 0x1D7F2: [688,13,500,26,475], // MATHEMATICAL SANS-SERIF BOLD DIGIT SIX + 0x1D7F3: [676,0,500,35,471], // MATHEMATICAL SANS-SERIF BOLD DIGIT SEVEN + 0x1D7F4: [688,13,500,28,472], // MATHEMATICAL SANS-SERIF BOLD DIGIT EIGHT + 0x1D7F5: [688,13,500,26,475], // MATHEMATICAL SANS-SERIF BOLD DIGIT NINE + 0x1D7F6: [681,11,525,55,467] // MATHEMATICAL MONOSPACE DIGIT ZERO + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathSSBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js new file mode 100644 index 0000000..581fbbc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D608: [674,0,666,31,635], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL A + 0x1D609: [662,0,604,74,641], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL B + 0x1D60A: [676,14,671,96,755], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL C + 0x1D60B: [662,0,692,74,751], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL D + 0x1D60C: [662,0,583,74,678], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL E + 0x1D60D: [662,0,535,74,679], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL F + 0x1D60E: [676,14,695,97,755], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL G + 0x1D60F: [662,0,658,74,749], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL H + 0x1D610: [662,0,401,59,512], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL I + 0x1D611: [662,14,398,22,470], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL J + 0x1D612: [662,0,634,74,729], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL K + 0x1D613: [662,0,559,74,564], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL L + 0x1D614: [662,0,843,75,933], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL M + 0x1D615: [662,14,675,74,766], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL N + 0x1D616: [676,14,714,99,779], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL O + 0x1D617: [662,0,525,74,638], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL P + 0x1D618: [676,175,716,99,779], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL Q + 0x1D619: [662,0,589,74,639], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL R + 0x1D61A: [676,14,541,62,597], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL S + 0x1D61B: [662,0,608,161,748], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL T + 0x1D61C: [662,14,661,117,757], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL U + 0x1D61D: [662,11,654,196,788], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL V + 0x1D61E: [662,11,921,194,1057], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL W + 0x1D61F: [662,0,700,31,806], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL X + 0x1D620: [662,0,630,186,774], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL Y + 0x1D621: [662,0,637,28,763], // MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z + 0x1D622: [463,10,448,55,467], // MATHEMATICAL SANS-SERIF ITALIC SMALL A + 0x1D623: [684,10,496,74,535], // MATHEMATICAL SANS-SERIF ITALIC SMALL B + 0x1D624: [463,10,456,67,503], // MATHEMATICAL SANS-SERIF ITALIC SMALL C + 0x1D625: [684,11,494,72,600], // MATHEMATICAL SANS-SERIF ITALIC SMALL D + 0x1D626: [463,10,444,69,487], // MATHEMATICAL SANS-SERIF ITALIC SMALL E + 0x1D627: [683,0,336,101,526], // MATHEMATICAL SANS-SERIF ITALIC SMALL F + 0x1D628: [463,216,496,-7,575], // MATHEMATICAL SANS-SERIF ITALIC SMALL G + 0x1D629: [684,0,487,63,510], // MATHEMATICAL SANS-SERIF ITALIC SMALL H + 0x1D62A: [679,0,220,69,325], // MATHEMATICAL SANS-SERIF ITALIC SMALL I + 0x1D62B: [679,216,254,-118,354], // MATHEMATICAL SANS-SERIF ITALIC SMALL J + 0x1D62C: [684,0,453,63,556], // MATHEMATICAL SANS-SERIF ITALIC SMALL K + 0x1D62D: [684,0,205,61,313], // MATHEMATICAL SANS-SERIF ITALIC SMALL L + 0x1D62E: [464,0,756,65,775], // MATHEMATICAL SANS-SERIF ITALIC SMALL M + 0x1D62F: [464,0,487,63,510], // MATHEMATICAL SANS-SERIF ITALIC SMALL N + 0x1D630: [463,10,499,76,536], // MATHEMATICAL SANS-SERIF ITALIC SMALL O + 0x1D631: [464,216,498,14,538], // MATHEMATICAL SANS-SERIF ITALIC SMALL P + 0x1D632: [464,216,498,72,549], // MATHEMATICAL SANS-SERIF ITALIC SMALL Q + 0x1D633: [464,0,336,63,439], // MATHEMATICAL SANS-SERIF ITALIC SMALL R + 0x1D634: [463,10,389,61,432], // MATHEMATICAL SANS-SERIF ITALIC SMALL S + 0x1D635: [580,10,291,96,376], // MATHEMATICAL SANS-SERIF ITALIC SMALL T + 0x1D636: [453,11,491,89,536], // MATHEMATICAL SANS-SERIF ITALIC SMALL U + 0x1D637: [453,14,474,143,555], // MATHEMATICAL SANS-SERIF ITALIC SMALL V + 0x1D638: [453,14,702,140,787], // MATHEMATICAL SANS-SERIF ITALIC SMALL W + 0x1D639: [453,0,482,30,544], // MATHEMATICAL SANS-SERIF ITALIC SMALL X + 0x1D63A: [453,216,484,-19,565], // MATHEMATICAL SANS-SERIF ITALIC SMALL Y + 0x1D63B: [453,0,447,25,517] // MATHEMATICAL SANS-SERIF ITALIC SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathSSItalic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js new file mode 100644 index 0000000..9e1a4ba --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSItalicBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D63C: [690,0,690,25,665], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A + 0x1D63D: [676,0,636,80,691], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL B + 0x1D63E: [691,19,723,119,797], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL C + 0x1D63F: [676,0,709,80,772], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL D + 0x1D640: [676,0,635,80,728], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL E + 0x1D641: [676,0,582,80,725], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL F + 0x1D642: [691,19,746,107,785], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL G + 0x1D643: [676,0,715,80,803], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL H + 0x1D644: [676,0,440,79,534], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL I + 0x1D645: [676,96,481,15,574], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL J + 0x1D646: [676,0,712,80,816], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL K + 0x1D647: [676,0,603,80,612], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL L + 0x1D648: [676,0,913,80,1001], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL M + 0x1D649: [676,18,724,80,812], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL N + 0x1D64A: [692,18,778,106,840], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL O + 0x1D64B: [676,0,581,80,695], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL P + 0x1D64C: [691,176,779,105,839], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Q + 0x1D64D: [676,0,670,80,698], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL R + 0x1D64E: [691,19,554,66,637], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL S + 0x1D64F: [676,0,641,157,785], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL T + 0x1D650: [676,19,699,123,792], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL U + 0x1D651: [676,18,690,193,833], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL V + 0x1D652: [676,15,997,198,1135], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL W + 0x1D653: [676,0,740,40,853], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL X + 0x1D654: [676,0,694,188,842], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Y + 0x1D655: [676,0,653,25,769], // MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z + 0x1D656: [473,14,489,48,507], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A + 0x1D657: [676,13,512,51,558], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL B + 0x1D658: [473,14,462,71,524], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL C + 0x1D659: [676,14,518,69,625], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL D + 0x1D65A: [473,13,452,71,492], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL E + 0x1D65B: [692,0,340,72,533], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL F + 0x1D65C: [472,206,504,2,599], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL G + 0x1D65D: [676,0,510,55,542], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL H + 0x1D65E: [688,0,245,59,366], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL I + 0x1D65F: [688,202,324,-90,440], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL J + 0x1D660: [676,0,519,55,599], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL K + 0x1D661: [676,0,235,55,348], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL L + 0x1D662: [473,0,776,55,809], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL M + 0x1D663: [473,0,510,55,542], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL N + 0x1D664: [473,14,501,72,542], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL O + 0x1D665: [473,205,512,3,559], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL P + 0x1D666: [473,205,512,69,574], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Q + 0x1D667: [473,0,411,55,519], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL R + 0x1D668: [473,13,385,37,442], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL S + 0x1D669: [631,12,386,98,447], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL T + 0x1D66A: [462,15,518,81,569], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL U + 0x1D66B: [462,14,462,129,561], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL V + 0x1D66C: [462,14,701,131,798], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL W + 0x1D66D: [462,0,506,20,582], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL X + 0x1D66E: [462,204,472,-27,569], // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Y + 0x1D66F: [462,0,441,21,530] // MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathSSItalicBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js new file mode 100644 index 0000000..0244b31 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js @@ -0,0 +1,68 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D49C: [674,15,855,31,846], // MATHEMATICAL SCRIPT CAPITAL A + 0x1D49E: [687,15,797,37,781], // MATHEMATICAL SCRIPT CAPITAL C + 0x1D49F: [687,15,885,36,818], // MATHEMATICAL SCRIPT CAPITAL D + 0x1D4A2: [687,15,773,83,740], // MATHEMATICAL SCRIPT CAPITAL G + 0x1D4A5: [674,177,802,9,792], // MATHEMATICAL SCRIPT CAPITAL J + 0x1D4A6: [687,15,1009,40,1004], // MATHEMATICAL SCRIPT CAPITAL K + 0x1D4A9: [687,15,970,38,956], // MATHEMATICAL SCRIPT CAPITAL N + 0x1D4AA: [680,15,692,82,663], // MATHEMATICAL SCRIPT CAPITAL O + 0x1D4AB: [687,15,910,38,886], // MATHEMATICAL SCRIPT CAPITAL P + 0x1D4AC: [680,38,692,82,663], // MATHEMATICAL SCRIPT CAPITAL Q + 0x1D4AE: [680,15,743,67,701], // MATHEMATICAL SCRIPT CAPITAL S + 0x1D4AF: [687,15,912,43,907], // MATHEMATICAL SCRIPT CAPITAL T + 0x1D4B0: [687,15,842,36,805], // MATHEMATICAL SCRIPT CAPITAL U + 0x1D4B1: [687,15,932,35,922], // MATHEMATICAL SCRIPT CAPITAL V + 0x1D4B2: [687,15,1078,35,1070], // MATHEMATICAL SCRIPT CAPITAL W + 0x1D4B3: [687,15,891,36,873], // MATHEMATICAL SCRIPT CAPITAL X + 0x1D4B4: [687,226,926,91,916], // MATHEMATICAL SCRIPT CAPITAL Y + 0x1D4B5: [687,15,932,59,912], // MATHEMATICAL SCRIPT CAPITAL Z + 0x1D4B6: [441,11,819,30,758], // MATHEMATICAL SCRIPT SMALL A + 0x1D4B7: [687,12,580,47,559], // MATHEMATICAL SCRIPT SMALL B + 0x1D4B8: [441,11,662,30,589], // MATHEMATICAL SCRIPT SMALL C + 0x1D4B9: [687,11,845,30,827], // MATHEMATICAL SCRIPT SMALL D + 0x1D4BB: [687,209,685,27,673], // MATHEMATICAL SCRIPT SMALL F + 0x1D4BD: [687,11,753,38,690], // MATHEMATICAL SCRIPT SMALL H + 0x1D4BE: [653,11,496,83,484], // MATHEMATICAL SCRIPT SMALL I + 0x1D4BF: [653,219,730,9,718], // MATHEMATICAL SCRIPT SMALL J + 0x1D4C0: [687,11,726,40,666], // MATHEMATICAL SCRIPT SMALL K + 0x1D4C1: [687,11,579,48,571], // MATHEMATICAL SCRIPT SMALL L + 0x1D4C2: [441,11,1038,49,978], // MATHEMATICAL SCRIPT SMALL M + 0x1D4C3: [441,11,761,49,701], // MATHEMATICAL SCRIPT SMALL N + 0x1D4C5: [441,209,773,23,694], // MATHEMATICAL SCRIPT SMALL P + 0x1D4C6: [441,209,780,30,743], // MATHEMATICAL SCRIPT SMALL Q + 0x1D4C7: [444,0,580,48,572], // MATHEMATICAL SCRIPT SMALL R + 0x1D4C8: [531,11,515,62,412], // MATHEMATICAL SCRIPT SMALL S + 0x1D4C9: [658,11,551,30,532], // MATHEMATICAL SCRIPT SMALL T + 0x1D4CA: [424,11,753,30,693], // MATHEMATICAL SCRIPT SMALL U + 0x1D4CB: [441,11,618,30,582], // MATHEMATICAL SCRIPT SMALL V + 0x1D4CC: [441,11,888,30,852], // MATHEMATICAL SCRIPT SMALL W + 0x1D4CD: [441,11,752,65,675], // MATHEMATICAL SCRIPT SMALL X + 0x1D4CE: [424,219,658,30,617], // MATHEMATICAL SCRIPT SMALL Y + 0x1D4CF: [478,11,691,52,617] // MATHEMATICAL SCRIPT SMALL Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathScript.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js new file mode 100644 index 0000000..1386da1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js @@ -0,0 +1,88 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D670: [673,0,525,26,496], // MATHEMATICAL MONOSPACE CAPITAL A + 0x1D671: [662,0,525,29,480], // MATHEMATICAL MONOSPACE CAPITAL B + 0x1D672: [672,11,525,40,482], // MATHEMATICAL MONOSPACE CAPITAL C + 0x1D673: [662,0,525,25,483], // MATHEMATICAL MONOSPACE CAPITAL D + 0x1D674: [662,0,525,31,500], // MATHEMATICAL MONOSPACE CAPITAL E + 0x1D675: [662,0,525,34,488], // MATHEMATICAL MONOSPACE CAPITAL F + 0x1D676: [672,11,525,37,495], // MATHEMATICAL MONOSPACE CAPITAL G + 0x1D677: [662,0,525,26,496], // MATHEMATICAL MONOSPACE CAPITAL H + 0x1D678: [662,0,525,84,438], // MATHEMATICAL MONOSPACE CAPITAL I + 0x1D679: [662,11,525,85,476], // MATHEMATICAL MONOSPACE CAPITAL J + 0x1D67A: [662,0,525,30,494], // MATHEMATICAL MONOSPACE CAPITAL K + 0x1D67B: [662,0,525,37,487], // MATHEMATICAL MONOSPACE CAPITAL L + 0x1D67C: [662,0,525,21,501], // MATHEMATICAL MONOSPACE CAPITAL M + 0x1D67D: [662,0,525,31,491], // MATHEMATICAL MONOSPACE CAPITAL N + 0x1D67E: [672,11,525,56,466], // MATHEMATICAL MONOSPACE CAPITAL O + 0x1D67F: [662,0,525,31,479], // MATHEMATICAL MONOSPACE CAPITAL P + 0x1D680: [672,139,525,56,466], // MATHEMATICAL MONOSPACE CAPITAL Q + 0x1D681: [662,11,525,26,520], // MATHEMATICAL MONOSPACE CAPITAL R + 0x1D682: [672,11,525,52,470], // MATHEMATICAL MONOSPACE CAPITAL S + 0x1D683: [662,0,525,26,496], // MATHEMATICAL MONOSPACE CAPITAL T + 0x1D684: [662,11,525,9,514], // MATHEMATICAL MONOSPACE CAPITAL U + 0x1D685: [662,8,525,17,506], // MATHEMATICAL MONOSPACE CAPITAL V + 0x1D686: [662,8,525,11,512], // MATHEMATICAL MONOSPACE CAPITAL W + 0x1D687: [662,0,525,24,497], // MATHEMATICAL MONOSPACE CAPITAL X + 0x1D688: [662,0,525,15,507], // MATHEMATICAL MONOSPACE CAPITAL Y + 0x1D689: [662,0,525,47,479], // MATHEMATICAL MONOSPACE CAPITAL Z + 0x1D68A: [459,6,525,58,516], // MATHEMATICAL MONOSPACE SMALL A + 0x1D68B: [609,6,525,17,481], // MATHEMATICAL MONOSPACE SMALL B + 0x1D68C: [459,6,525,78,464], // MATHEMATICAL MONOSPACE SMALL C + 0x1D68D: [609,6,525,41,505], // MATHEMATICAL MONOSPACE SMALL D + 0x1D68E: [459,6,525,60,462], // MATHEMATICAL MONOSPACE SMALL E + 0x1D68F: [615,0,525,42,437], // MATHEMATICAL MONOSPACE SMALL F + 0x1D690: [461,228,525,29,508], // MATHEMATICAL MONOSPACE SMALL G + 0x1D691: [609,0,525,17,505], // MATHEMATICAL MONOSPACE SMALL H + 0x1D692: [610,0,525,84,448], // MATHEMATICAL MONOSPACE SMALL I + 0x1D693: [610,227,525,47,362], // MATHEMATICAL MONOSPACE SMALL J + 0x1D694: [609,0,525,24,505], // MATHEMATICAL MONOSPACE SMALL K + 0x1D695: [609,0,525,63,459], // MATHEMATICAL MONOSPACE SMALL L + 0x1D696: [456,0,525,2,520], // MATHEMATICAL MONOSPACE SMALL M + 0x1D697: [456,0,525,17,505], // MATHEMATICAL MONOSPACE SMALL N + 0x1D698: [459,6,525,62,460], // MATHEMATICAL MONOSPACE SMALL O + 0x1D699: [456,221,525,17,481], // MATHEMATICAL MONOSPACE SMALL P + 0x1D69A: [456,221,525,45,530], // MATHEMATICAL MONOSPACE SMALL Q + 0x1D69B: [456,0,525,37,485], // MATHEMATICAL MONOSPACE SMALL R + 0x1D69C: [459,6,525,72,457], // MATHEMATICAL MONOSPACE SMALL S + 0x1D69D: [580,6,525,25,448], // MATHEMATICAL MONOSPACE SMALL T + 0x1D69E: [450,6,525,17,505], // MATHEMATICAL MONOSPACE SMALL U + 0x1D69F: [450,4,525,22,500], // MATHEMATICAL MONOSPACE SMALL V + 0x1D6A0: [450,4,525,15,508], // MATHEMATICAL MONOSPACE SMALL W + 0x1D6A1: [450,0,525,23,498], // MATHEMATICAL MONOSPACE SMALL X + 0x1D6A2: [450,227,525,24,501], // MATHEMATICAL MONOSPACE SMALL Y + 0x1D6A3: [450,0,525,32,473], // MATHEMATICAL MONOSPACE SMALL Z + 0x1D7F7: [681,0,525,110,435], // MATHEMATICAL MONOSPACE DIGIT ONE + 0x1D7F8: [681,0,525,52,470], // MATHEMATICAL MONOSPACE DIGIT TWO + 0x1D7F9: [681,11,525,43,479], // MATHEMATICAL MONOSPACE DIGIT THREE + 0x1D7FA: [682,0,525,29,493], // MATHEMATICAL MONOSPACE DIGIT FOUR + 0x1D7FB: [670,11,525,52,470], // MATHEMATICAL MONOSPACE DIGIT FIVE + 0x1D7FC: [681,11,525,58,464], // MATHEMATICAL MONOSPACE DIGIT SIX + 0x1D7FD: [686,11,525,43,479], // MATHEMATICAL MONOSPACE DIGIT SEVEN + 0x1D7FE: [681,11,525,43,479], // MATHEMATICAL MONOSPACE DIGIT EIGHT + 0x1D7FF: [681,11,525,58,464] // MATHEMATICAL MONOSPACE DIGIT NINE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MathTT.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js new file mode 100644 index 0000000..47e25fd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js @@ -0,0 +1,68 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x27C0: [584,0,685,50,634], // THREE DIMENSIONAL ANGLE + 0x27C1: [811,127,1145,35,1110], // WHITE TRIANGLE CONTAINING SMALL WHITE TRIANGLE + 0x27C2: [662,0,693,52,641], // PERPENDICULAR + 0x27C3: [529,27,685,60,625], // OPEN SUBSET + 0x27C4: [529,27,685,61,626], // OPEN SUPERSET + 0x27C5: [702,198,455,55,400], // LEFT S-SHAPED BAG DELIMITER + 0x27C6: [702,198,455,55,400], // RIGHT S-SHAPED BAG DELIMITER + 0x27C7: [536,29,620,31,589], // OR WITH DOT INSIDE + 0x27C8: [533,25,966,60,906], // REVERSE SOLIDUS PRECEDING SUBSET + 0x27C9: [533,25,966,60,906], // SUBSET PRECEDING SOLIDUS + 0x27CB: [662,156,838,0,799], // ?? + 0x27CC: [806,213,325,20,325], // LONG DIVISION + 0x27CD: [662,156,838,0,799], // ?? + 0x27D0: [744,242,1064,39,1025], // WHITE DIAMOND WITH CENTRED DOT + 0x27D1: [536,29,620,31,589], // AND WITH DOT + 0x27D2: [536,31,620,48,572], // ELEMENT OF OPENING UPWARDS + 0x27D3: [584,0,685,50,634], // LOWER RIGHT CORNER WITH DOT + 0x27D4: [584,0,685,50,634], // UPPER LEFT CORNER WITH DOT + 0x27D5: [582,80,1019,40,965], // LEFT OUTER JOIN + 0x27D6: [582,80,1019,54,979], // RIGHT OUTER JOIN + 0x27D7: [582,80,1228,40,1188], // FULL OUTER JOIN + 0x27D8: [718,213,866,50,816], // LARGE UP TACK + 0x27D9: [718,213,866,50,816], // LARGE DOWN TACK + 0x27DA: [662,0,1376,64,1312], // LEFT AND RIGHT DOUBLE TURNSTILE + 0x27DB: [662,0,1376,64,1312], // LEFT AND RIGHT TACK + 0x27DC: [403,-103,849,50,799], // LEFT MULTIMAP + 0x27DD: [450,-57,1574,55,1519], // LONG RIGHT TACK + 0x27DE: [450,-57,1574,55,1519], // LONG LEFT TACK + 0x27DF: [693,187,502,101,401], // UP TACK WITH CIRCLE ABOVE + 0x27E0: [795,289,790,45,745], // LOZENGE DIVIDED BY HORIZONTAL RULE + 0x27E1: [589,87,764,45,719], // WHITE CONCAVE-SIDED DIAMOND + 0x27E2: [589,87,803,45,758], // WHITE CONCAVE-SIDED DIAMOND WITH LEFTWARDS TICK + 0x27E3: [589,87,803,45,758], // WHITE CONCAVE-SIDED DIAMOND WITH RIGHTWARDS TICK + 0x27E4: [662,158,1182,45,1137], // WHITE SQUARE WITH LEFTWARDS TICK + 0x27E5: [662,158,1182,45,1137], // WHITE SQUARE WITH RIGHTWARDS TICK + 0x27E6: [717,213,504,188,482], // MATHEMATICAL LEFT WHITE SQUARE BRACKET + 0x27E7: [717,213,504,22,316], // MATHEMATICAL RIGHT WHITE SQUARE BRACKET + 0x27EA: [719,213,610,73,545], // MATHEMATICAL LEFT DOUBLE ANGLE BRACKET + 0x27EB: [719,213,610,65,537], // MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET + 0x27EC: [719,213,488,178,466], // MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET + 0x27ED: [719,213,488,22,310] // MATHEMATICAL RIGHT WHITE TORTOISE SHELL BRACKET + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MiscMathSymbolsA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js new file mode 100644 index 0000000..e0e43ea --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js @@ -0,0 +1,154 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscMathSymbolsB.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2980: [695,189,594,85,509], // TRIPLE VERTICAL BAR DELIMITER + 0x2981: [487,-14,565,46,519], // Z NOTATION SPOT + 0x2982: [566,59,503,110,393], // Z NOTATION TYPE COLON + 0x2983: [719,213,596,108,477], // LEFT WHITE CURLY BRACKET + 0x2984: [719,213,596,119,488], // RIGHT WHITE CURLY BRACKET + 0x2985: [719,213,463,70,393], // LEFT WHITE PARENTHESIS + 0x2986: [719,213,463,70,393], // RIGHT WHITE PARENTHESIS + 0x2987: [719,214,511,115,367], // Z NOTATION LEFT IMAGE BRACKET + 0x2988: [719,214,511,144,396], // Z NOTATION RIGHT IMAGE BRACKET + 0x2989: [719,213,511,100,352], // Z NOTATION LEFT BINDING BRACKET + 0x298A: [719,213,511,159,411], // Z NOTATION RIGHT BINDING BRACKET + 0x298B: [719,213,469,188,447], // LEFT SQUARE BRACKET WITH UNDERBAR + 0x298C: [719,213,469,22,281], // RIGHT SQUARE BRACKET WITH UNDERBAR + 0x298D: [719,213,469,188,447], // LEFT SQUARE BRACKET WITH TICK IN TOP CORNER + 0x298E: [719,213,469,22,281], // RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER + 0x298F: [719,213,469,188,447], // LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER + 0x2990: [719,213,469,22,281], // RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER + 0x2991: [719,213,400,73,357], // LEFT ANGLE BRACKET WITH DOT + 0x2992: [719,213,400,73,357], // RIGHT ANGLE BRACKET WITH DOT + 0x2993: [649,143,685,34,591], // LEFT ARC LESS-THAN BRACKET + 0x2994: [649,143,685,94,651], // RIGHT ARC GREATER-THAN BRACKET + 0x2995: [649,143,685,86,643], // DOUBLE LEFT ARC GREATER-THAN BRACKET + 0x2996: [649,143,685,42,599], // DOUBLE RIGHT ARC LESS-THAN BRACKET + 0x2997: [719,213,488,188,466], // LEFT BLACK TORTOISE SHELL BRACKET + 0x2998: [719,213,488,22,300], // RIGHT BLACK TORTOISE SHELL BRACKET + 0x2999: [661,155,211,50,161], // DOTTED FENCE + 0x299A: [662,156,511,177,334], // VERTICAL ZIGZAG LINE + 0x299B: [547,72,685,42,662], // MEASURED ANGLE OPENING LEFT + 0x299C: [584,0,685,50,634], // RIGHT ANGLE VARIANT WITH SQUARE + 0x299D: [584,0,685,50,634], // MEASURED RIGHT ANGLE WITH DOT + 0x299E: [547,0,685,11,675], // ANGLE WITH S INSIDE + 0x299F: [396,0,685,24,643], // ACUTE ANGLE + 0x29A0: [517,13,685,57,654], // SPHERICAL ANGLE OPENING LEFT + 0x29A1: [609,-12,685,77,607], // SPHERICAL ANGLE OPENING UP + 0x29A2: [547,0,685,42,662], // TURNED ANGLE + 0x29A3: [547,0,685,42,662], // REVERSED ANGLE + 0x29A4: [547,200,685,23,643], // ANGLE WITH UNDERBAR + 0x29A5: [547,200,685,42,662], // REVERSED ANGLE WITH UNDERBAR + 0x29A6: [547,0,900,40,860], // OBLIQUE ANGLE OPENING UP + 0x29A7: [547,0,900,40,860], // OBLIQUE ANGLE OPENING DOWN + 0x29A8: [574,72,685,29,649], // MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND RIGHT + 0x29A9: [574,72,685,36,656], // MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING UP AND LEFT + 0x29AA: [578,68,685,29,649], // MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND RIGHT + 0x29AB: [578,68,685,36,656], // MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING DOWN AND LEFT + 0x29AC: [562,58,706,34,680], // MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND UP + 0x29AD: [562,58,706,26,672], // MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND UP + 0x29AE: [562,58,706,34,680], // MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING RIGHT AND DOWN + 0x29AF: [562,58,708,26,672], // MEASURED ANGLE WITH OPEN ARM ENDING IN ARROW POINTING LEFT AND DOWN + 0x29B0: [583,79,762,50,712], // REVERSED EMPTY SET + 0x29B1: [717,79,762,50,712], // EMPTY SET WITH OVERBAR + 0x29B2: [819,79,762,50,712], // EMPTY SET WITH SMALL CIRCLE ABOVE + 0x29B3: [832,79,762,50,712], // EMPTY SET WITH RIGHT ARROW ABOVE + 0x29B4: [832,79,762,50,712], // EMPTY SET WITH LEFT ARROW ABOVE + 0x29B5: [623,119,910,24,886], // CIRCLE WITH HORIZONTAL BAR + 0x29B6: [623,119,842,50,792], // CIRCLED VERTICAL BAR + 0x29B7: [623,119,842,50,792], // CIRCLED PARALLEL + 0x29B8: [623,119,842,50,792], // CIRCLED REVERSE SOLIDUS + 0x29B9: [623,119,842,50,792], // CIRCLED PERPENDICULAR + 0x29BA: [623,119,842,50,792], // CIRCLE DIVIDED BY HORIZONTAL BAR AND TOP HALF DIVIDED BY VERTICAL BAR + 0x29BB: [623,119,842,50,792], // CIRCLE WITH SUPERIMPOSED X + 0x29BC: [623,119,842,50,792], // CIRCLED ANTICLOCKWISE-ROTATED DIVISION SIGN + 0x29BD: [882,179,842,50,792], // UP ARROW THROUGH CIRCLE + 0x29BE: [623,119,842,50,792], // CIRCLED WHITE BULLET + 0x29BF: [623,119,842,50,792], // CIRCLED BULLET + 0x29C0: [623,119,842,50,792], // CIRCLED LESS-THAN + 0x29C1: [623,119,842,50,792], // CIRCLED GREATER-THAN + 0x29C2: [623,119,1091,50,1056], // CIRCLE WITH SMALL CIRCLE TO THE RIGHT + 0x29C3: [623,119,1091,50,1056], // CIRCLE WITH TWO HORIZONTAL STROKES TO THE RIGHT + 0x29C4: [662,158,910,45,865], // SQUARED RISING DIAGONAL SLASH + 0x29C5: [662,158,910,45,865], // SQUARED FALLING DIAGONAL SLASH + 0x29C6: [662,158,910,45,865], // SQUARED ASTERISK + 0x29C7: [662,158,910,45,865], // SQUARED SMALL CIRCLE + 0x29C8: [662,158,910,45,865], // SQUARED SQUARE + 0x29C9: [712,207,1046,64,982], // TWO JOINED SQUARES + 0x29CA: [1003,127,1145,35,1110], // TRIANGLE WITH DOT ABOVE + 0x29CB: [811,259,1145,35,1110], // TRIANGLE WITH UNDERBAR + 0x29CC: [811,127,1145,35,1110], // S IN TRIANGLE + 0x29CD: [811,127,1165,15,1150], // TRIANGLE WITH SERIFS AT BOTTOM + 0x29CE: [698,193,780,70,710], // RIGHT TRIANGLE ABOVE LEFT TRIANGLE + 0x29CF: [531,25,857,48,777], // LEFT TRIANGLE BESIDE VERTICAL BAR + 0x29D0: [531,25,857,80,809], // VERTICAL BAR BESIDE RIGHT TRIANGLE + 0x29D1: [582,80,810,93,716], // BOWTIE WITH LEFT HALF BLACK + 0x29D2: [582,80,810,93,716], // BOWTIE WITH RIGHT HALF BLACK + 0x29D3: [582,80,810,93,716], // BLACK BOWTIE + 0x29D4: [582,80,810,94,717], // TIMES WITH LEFT HALF BLACK + 0x29D5: [582,80,810,93,716], // TIMES WITH RIGHT HALF BLACK + 0x29D6: [602,100,810,74,736], // WHITE HOURGLASS + 0x29D7: [602,100,810,74,736], // BLACK HOURGLASS + 0x29D8: [620,116,511,177,334], // LEFT WIGGLY FENCE + 0x29D9: [620,116,511,176,333], // RIGHT WIGGLY FENCE + 0x29DA: [620,116,688,177,511], // LEFT DOUBLE WIGGLY FENCE + 0x29DB: [620,116,688,177,511], // RIGHT DOUBLE WIGGLY FENCE + 0x29DC: [430,0,926,70,854], // INCOMPLETE INFINITY + 0x29DD: [653,0,926,70,854], // TIE OVER INFINITY + 0x29DE: [695,189,926,70,854], // INFINITY NEGATED WITH VERTICAL BAR + 0x29DF: [403,-103,1145,50,1095], // DOUBLE-ENDED MULTIMAP + 0x29E0: [662,157,910,45,865], // SQUARE WITH CONTOURED OUTLINE + 0x29E1: [512,8,667,24,613], // INCREASES AS + 0x29E2: [414,0,790,64,726], // SHUFFLE PRODUCT + 0x29E3: [662,156,685,47,637], // EQUALS SIGN AND SLANTED PARALLEL + 0x29E4: [842,156,685,47,637], // EQUALS SIGN AND SLANTED PARALLEL WITH TILDE ABOVE + 0x29E5: [662,156,685,48,637], // IDENTICAL TO AND SLANTED PARALLEL + 0x29E6: [584,78,798,60,738], // GLEICH STARK + 0x29E7: [695,189,628,48,580], // THERMODYNAMIC + 0x29E8: [811,127,1145,35,1110], // DOWN-POINTING TRIANGLE WITH LEFT HALF BLACK + 0x29E9: [811,127,1145,35,1110], // DOWN-POINTING TRIANGLE WITH RIGHT HALF BLACK + 0x29EA: [744,241,762,32,730], // BLACK DIAMOND WITH DOWN ARROW + 0x29EB: [795,289,790,45,745], // BLACK LOZENGE + 0x29EC: [743,241,762,50,712], // WHITE CIRCLE WITH DOWN ARROW + 0x29ED: [743,241,762,50,712], // BLACK CIRCLE WITH DOWN ARROW + 0x29EE: [747,243,762,97,665], // ERROR-BARRED WHITE SQUARE + 0x29EF: [747,243,762,97,665], // ERROR-BARRED BLACK SQUARE + 0x29F0: [747,243,762,32,730], // ERROR-BARRED WHITE DIAMOND + 0x29F1: [747,243,762,32,730], // ERROR-BARRED BLACK DIAMOND + 0x29F2: [747,243,762,65,697], // ERROR-BARRED WHITE CIRCLE + 0x29F3: [747,243,762,65,697], // ERROR-BARRED BLACK CIRCLE + 0x29F4: [521,13,926,55,871], // RULE-DELAYED + 0x29F6: [765,80,520,94,426], // SOLIDUS WITH OVERBAR + 0x29F7: [662,80,520,94,426], // REVERSE SOLIDUS WITH HORIZONTAL STROKE + 0x29F8: [695,325,602,85,517], // BIG SOLIDUS + 0x29F9: [695,325,602,85,517], // BIG REVERSE SOLIDUS + 0x29FA: [532,25,685,64,621], // DOUBLE PLUS + 0x29FB: [532,25,685,64,621], // TRIPLE PLUS + 0x29FC: [713,213,459,77,394], // LEFT-POINTING CURVED ANGLE BRACKET + 0x29FD: [713,213,459,65,382], // RIGHT-POINTING CURVED ANGLE BRACKET + 0x29FE: [540,36,762,93,669], // TINY + 0x29FF: [316,-190,762,93,669] // MINY + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MiscMathSymbolsB.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js new file mode 100644 index 0000000..b3c4ecd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2605: [655,66,870,60,810], // BLACK STAR + 0x2606: [655,66,870,60,810], // WHITE STAR + 0x2609: [583,79,762,50,712], // SUN + 0x260C: [634,131,581,54,553], // CONJUNCTION + 0x260E: [676,0,1000,32,967], // BLACK TELEPHONE + 0x2612: [662,158,910,45,865], // BALLOT BOX WITH X + 0x2621: [630,35,619,70,549], // CAUTION SIGN + 0x2639: [728,82,1150,170,980], // WHITE FROWNING FACE + 0x263A: [728,82,1150,170,980], // WHITE SMILING FACE + 0x263B: [728,82,1150,170,980], // BLACK SMILING FACE + 0x263C: [623,122,837,46,791], // WHITE SUN WITH RAYS + 0x263D: [728,82,641,40,601], // FIRST QUARTER MOON + 0x263E: [728,82,641,40,601], // LAST QUARTER MOON + 0x263F: [702,198,603,65,538], // MERCURY + 0x2640: [638,135,603,65,538], // FEMALE SIGN + 0x2641: [638,135,603,65,538], // EARTH + 0x2642: [634,131,660,54,620], // MALE SIGN + 0x2643: [732,176,970,66,904], // JUPITER + 0x2644: [793,140,970,63,866], // SATURN + 0x2646: [760,110,840,60,780], // NEPTUNE + 0x2647: [730,110,632,76,576], // PLUTO + 0x2648: [760,110,964,25,939], // ARIES + 0x2649: [644,139,781,43,738], // TAURUS + 0x2664: [609,99,685,34,651], // WHITE SPADE SUIT + 0x2665: [603,105,685,34,651], // BLACK HEART SUIT + 0x2666: [609,105,685,41,643], // BLACK DIAMOND SUIT + 0x2667: [603,99,685,34,651], // WHITE CLUB SUIT + 0x2669: [714,125,390,45,345], // QUARTER NOTE + 0x266A: [714,125,560,50,510], // EIGHTH NOTE + 0x266B: [842,125,840,40,721], // BEAMED EIGHTH NOTES + 0x267E: [775,271,1186,70,1116], // PERMANENT PAPER SIGN + 0x2680: [669,23,1032,170,862], // DIE FACE-1 + 0x2681: [669,23,1032,170,862], // DIE FACE-2 + 0x2682: [669,23,1032,170,862], // DIE FACE-3 + 0x2683: [669,23,1032,170,862], // DIE FACE-4 + 0x2684: [669,23,1032,170,862], // DIE FACE-5 + 0x2685: [669,23,1032,170,862], // DIE FACE-6 + 0x2686: [687,42,1032,152,881], // WHITE CIRCLE WITH DOT RIGHT + 0x2687: [687,42,1032,152,881], // WHITE CIRCLE WITH TWO DOTS + 0x2688: [687,42,1032,152,881], // BLACK CIRCLE WITH WHITE DOT RIGHT + 0x2689: [687,42,1032,152,881], // BLACK CIRCLE WITH TWO WHITE DOTS + 0x26A0: [1023,155,1510,25,1485], // WARNING SIGN + 0x26A5: [784,281,660,54,620], // MALE AND FEMALE SIGN + 0x26AA: [583,79,762,50,712], // MEDIUM WHITE CIRCLE + 0x26AB: [583,79,762,50,712], // MEDIUM BLACK CIRCLE + 0x26AC: [487,-14,565,46,519], // MEDIUM SMALL WHITE CIRCLE + 0x26B2: [638,135,603,65,538], // NEUTER + 0x26E2: [773,80,700,94,606] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MiscSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js new file mode 100644 index 0000000..d500765 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js @@ -0,0 +1,91 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscSymbolsAndArrows.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2B12: [662,157,910,45,865], // SQUARE WITH TOP HALF BLACK + 0x2B13: [662,157,910,45,865], // SQUARE WITH BOTTOM HALF BLACK + 0x2B14: [662,157,910,45,865], // SQUARE WITH UPPER RIGHT DIAGONAL HALF BLOCK + 0x2B15: [662,157,910,45,865], // SQUARE WITH LOWER LEFT DIAGONAL HALF BLOCK + 0x2B16: [744,242,1064,39,1025], // DIAMOND WITH LEFT HALF BLACK + 0x2B17: [744,242,1064,39,1025], // DIAMOND WITH RIGHT HALF BLACK + 0x2B18: [744,242,1064,39,1025], // DIAMOND WITH TOP HALF BLACK + 0x2B19: [744,242,1064,39,1025], // DIAMOND WITH BOTTOM HALF BLACK + 0x2B1A: [662,157,910,45,865], // DOTTED SQUARE + 0x2B1B: [780,180,1040,40,1000], // BLACK LARGE SQUARE + 0x2B1C: [780,180,1040,40,1000], // WHITE LARGE SQUARE + 0x2B1D: [332,-172,240,50,190], // BLACK VERY SMALL SQUARE + 0x2B1E: [332,-172,240,50,190], // WHITE VERY SMALL SQUARE + 0x2B1F: [690,105,910,36,874], // BLACK PENTAGON + 0x2B20: [690,105,910,36,874], // WHITE PENTAGON + 0x2B21: [680,178,910,82,828], // WHITE HEXAGON + 0x2B22: [680,178,910,82,828], // BLACK HEXAGON + 0x2B23: [633,127,926,24,902], // HORIZONTAL BLACK HEXAGON + 0x2B24: [785,282,1207,70,1137], // BLACK LARGE CIRCLE + 0x2B25: [581,96,779,45,734], // BLACK MEDIUM DIAMOND + 0x2B26: [581,96,779,45,734], // WHITE MEDIUM DIAMOND + 0x2B27: [609,105,544,40,504], // BLACK MEDIUM LOZENGE + 0x2B28: [609,105,544,40,504], // WHITE MEDIUM LOZENGE + 0x2B29: [488,-16,523,26,497], // BLACK SMALL DIAMOND + 0x2B2A: [488,-16,357,26,331], // BLACK SMALL LOZENGE + 0x2B2B: [488,-16,357,26,331], // WHITE SMALL LOZENGE + 0x2B2C: [500,-4,842,50,792], // BLACK HORIZONTAL ELLIPSE + 0x2B2D: [500,-4,842,50,792], // WHITE HORIZONTAL ELLIPSE + 0x2B2E: [623,119,596,50,546], // BLACK VERTICAL ELLIPSE + 0x2B2F: [623,119,596,50,546], // WHITE VERTICAL ELLIPSE + 0x2B30: [448,-57,926,70,856], // LEFT ARROW WITH SMALL CIRCLE + 0x2B31: [739,232,926,60,866], // THREE LEFTWARDS ARROWS + 0x2B32: [569,61,1200,52,1147], // LEFT ARROW WITH CIRCLED PLUS + 0x2B33: [449,-58,1574,55,1519], // LONG LEFTWARDS SQUIGGLE ARROW + 0x2B34: [450,-57,926,56,871], // LEFTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE + 0x2B35: [450,-57,926,55,871], // LEFTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE + 0x2B36: [450,-57,926,55,871], // LEFTWARDS TWO-HEADED ARROW FROM BAR + 0x2B37: [449,-57,1412,55,1357], // LEFTWARDS TWO-HEADED TRIPLE-DASH ARROW + 0x2B38: [449,-57,926,55,873], // LEFTWARDS ARROW WITH DOTTED STEM + 0x2B39: [450,-57,926,55,871], // LEFTWARDS ARROW WITH TAIL WITH VERTICAL STROKE + 0x2B3A: [450,-57,926,55,871], // LEFTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE + 0x2B3B: [449,-57,926,55,871], // LEFTWARDS TWO-HEADED ARROW WITH TAIL + 0x2B3C: [450,-57,926,55,871], // LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE + 0x2B3D: [450,-57,926,50,876], // LEFTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE + 0x2B3E: [449,-57,926,55,871], // LEFTWARDS ARROW THROUGH X + 0x2B3F: [449,-57,926,55,871], // WAVE ARROW POINTING DIRECTLY LEFT + 0x2B40: [565,-57,926,55,871], // EQUALS SIGN ABOVE LEFTWARDS ARROW + 0x2B41: [508,-57,926,55,871], // REVERSE TILDE OPERATOR ABOVE LEFTWARDS ARROW + 0x2B42: [449,141,926,55,871], // LEFTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO + 0x2B43: [532,26,926,45,871], // RIGHTWARDS ARROW THROUGH LESS-THAN + 0x2B44: [532,26,926,45,871], // RIGHTWARDS ARROW THROUGH SUBSET + 0x2B45: [701,195,928,55,873], // LEFTWARDS QUADRUPLE ARROW + 0x2B46: [701,195,928,55,873], // RIGHTWARDS QUADRUPLE ARROW + 0x2B47: [508,-57,926,55,871], // REVERSE TILDE OPERATOR ABOVE RIGHTWARDS ARROW + 0x2B48: [449,141,926,55,871], // RIGHTWARDS ARROW ABOVE REVERSE ALMOST EQUAL TO + 0x2B49: [508,-57,926,55,871], // TILDE OPERATOR ABOVE LEFTWARDS ARROW + 0x2B4A: [449,141,926,55,871], // LEFTWARDS ARROW ABOVE ALMOST EQUAL TO + 0x2B4B: [449,2,926,55,871], // LEFTWARDS ARROW ABOVE REVERSE TILDE OPERATOR + 0x2B4C: [449,2,926,55,871], // RIGHTWARDS ARROW ABOVE REVERSE TILDE OPERATOR + 0x2B50: [619,30,794,60,734], // WHITE MEDIUM STAR + 0x2B51: [619,30,794,60,734], // BLACK MEDIUM STAR + 0x2B52: [597,13,700,35,665], // WHITE SMALL STAR + 0x2B53: [712,126,865,45,840], // BLACK RIGHT-POINTING PENTAGON + 0x2B54: [712,127,865,45,840] // WHITE RIGHT-POINTING PENTAGON + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MiscSymbolsAndArrows.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js new file mode 100644 index 0000000..bc5ca3b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js @@ -0,0 +1,80 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MiscTechnical.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2300: [487,-14,606,25,581], // DIAMETER SIGN + 0x2302: [774,0,926,55,871], // HOUSE + 0x2305: [577,0,620,48,572], // PROJECTIVE + 0x2306: [728,0,620,48,572], // PERSPECTIVE + 0x230C: [166,215,463,52,412], // BOTTOM RIGHT CROP + 0x230D: [166,215,463,52,412], // BOTTOM LEFT CROP + 0x230E: [876,-495,463,52,412], // TOP RIGHT CROP + 0x230F: [876,-495,463,52,412], // TOP LEFT CROP + 0x2310: [393,-115,600,48,552], // REVERSED NOT SIGN + 0x2311: [439,-65,523,75,449], // SQUARE LOZENGE + 0x2312: [331,0,762,50,712], // ARC + 0x2313: [331,0,762,50,712], // SEGMENT + 0x2315: [582,189,847,26,796], // TELEPHONE RECORDER + 0x2316: [748,246,1100,53,1047], // POSITION INDICATOR + 0x2317: [749,245,1100,53,1047], // VIEWDATA SQUARE + 0x2318: [662,156,926,55,871], // PLACE OF INTEREST SIGN + 0x2319: [393,-115,600,48,552], // TURNED NOT SIGN + 0x231A: [671,69,685,64,622], // WATCH + 0x231C: [662,-281,463,51,411], // TOP LEFT CORNER + 0x231D: [662,-281,463,51,411], // TOP RIGHT CORNER + 0x231E: [164,217,463,51,411], // BOTTOM LEFT CORNER + 0x231F: [164,217,463,52,412], // BOTTOM RIGHT CORNER + 0x2329: [713,213,400,77,335], // LEFT-POINTING ANGLE BRACKET + 0x232A: [713,213,400,65,323], // RIGHT-POINTING ANGLE BRACKET + 0x232C: [692,186,926,83,843], // BENZENE RING + 0x232D: [592,88,986,55,931], // CYLINDRICITY + 0x232E: [450,140,624,-18,574], // ALL AROUND-PROFILE + 0x2332: [562,56,889,80,809], // CONICAL TAPER + 0x2336: [751,156,926,85,841], // APL FUNCTIONAL SYMBOL I-BEAM + 0x233D: [683,179,910,84,826], // APL FUNCTIONAL SYMBOL CIRCLE STILE + 0x233F: [703,176,683,60,623], // APL FUNCTIONAL SYMBOL SLASH BAR + 0x2340: [703,176,683,60,623], // APL FUNCTIONAL SYMBOL BACKSLASH BAR + 0x2353: [751,176,794,55,739], // APL FUNCTIONAL SYMBOL QUAD UP CARET + 0x2370: [751,176,794,55,739], // APL FUNCTIONAL SYMBOL QUAD QUESTION + 0x237C: [584,220,871,50,820], // RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW + 0x2393: [386,-120,913,85,841], // DIRECT CURRENT SYMBOL FORM TWO + 0x2394: [633,127,926,24,902], // SOFTWARE-FUNCTION SYMBOL + 0x23B4: [766,-574,926,55,871], // TOP SQUARE BRACKET + 0x23B5: [109,83,926,55,871], // BOTTOM SQUARE BRACKET + 0x23B6: [495,-11,926,55,871], // BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET + 0x23CE: [731,225,926,50,856], // RETURN SYMBOL + 0x23DC: [100,100,1000,0,1000], // TOP PARENTHESIS (mathematical use) + 0x23DD: [764,-564,1000,0,1000], // BOTTOM PARENTHESIS (mathematical use) + 0x23DE: [214,114,1000,0,1000], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [892,-564,1000,0,1000], // BOTTOM CURLY BRACKET (mathematical use) + 0x23E0: [100,114,1000,0,1000], // TOP TORTOISE SHELL BRACKET (mathematical use) + 0x23E1: [778,-564,1000,0,1000], // BOTTOM TORTOISE SHELL BRACKET (mathematical use) + 0x23E2: [558,53,1144,54,1090], // WHITE TRAPEZIUM + 0x23E3: [680,178,910,82,828], // BENZENE RING WITH CIRCLE + 0x23E4: [286,-220,1094,47,1047], // STRAIGHTNESS + 0x23E5: [527,20,1018,23,995], // FLATNESS + 0x23E6: [434,-72,926,55,871], // AC CURRENT + 0x23E7: [606,97,798,194,733] // ELECTRICAL INTERSECTION + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/MiscTechnical.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js new file mode 100644 index 0000000..bf00984 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js @@ -0,0 +1,39 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/NumberForms.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2153: [676,14,750,36,725], // VULGAR FRACTION ONE THIRD + 0x2154: [676,14,750,14,731], // VULGAR FRACTION TWO THIRDS + 0x2155: [676,14,750,37,715], // VULGAR FRACTION ONE FIFTH + 0x2156: [676,14,750,14,720], // VULGAR FRACTION TWO FIFTHS + 0x2157: [676,14,750,13,720], // VULGAR FRACTION THREE FIFTHS + 0x2158: [676,14,750,14,720], // VULGAR FRACTION FOUR FIFTHS + 0x2159: [676,14,750,37,717], // VULGAR FRACTION ONE SIXTH + 0x215A: [676,15,750,29,722], // VULGAR FRACTION FIVE SIXTHS + 0x215B: [676,14,750,37,722], // VULGAR FRACTION ONE EIGHTH + 0x215C: [676,14,750,13,727], // VULGAR FRACTION THREE EIGHTHS + 0x215D: [676,14,750,29,727], // VULGAR FRACTION FIVE EIGHTHS + 0x215E: [676,14,750,28,727] // VULGAR FRACTION SEVEN EIGHTHS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/NumberForms.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js new file mode 100644 index 0000000..fc2f9d2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/PhoneticExtensions.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D00: [468,0,510,15,495], // LATIN LETTER SMALL CAPITAL A + 0x1D07: [464,0,504,21,481], // LATIN LETTER SMALL CAPITAL E + 0x1D1C: [464,14,583,21,560], // LATIN LETTER SMALL CAPITAL U + 0x1D81: [683,287,528,27,491], // LATIN SMALL LETTER D WITH PALATAL HOOK + 0x1D84: [683,287,542,7,505], // LATIN SMALL LETTER K WITH PALATAL HOOK + 0x1D85: [683,287,294,19,257], // LATIN SMALL LETTER L WITH PALATAL HOOK + 0x1D8A: [459,287,389,51,348], // LATIN SMALL LETTER S WITH PALATAL HOOK + 0x1D8D: [450,287,516,17,479], // LATIN SMALL LETTER X WITH PALATAL HOOK + 0x1D8E: [450,287,453,27,416], // LATIN SMALL LETTER Z WITH PALATAL HOOK + 0x1D98: [755,-425,441,57,387], // ?? + 0x1DA3: [757,-279,480,64,398] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/PhoneticExtensions.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js new file mode 100644 index 0000000..6bac485 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js @@ -0,0 +1,80 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SpacingModLetters.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2B0: [848,-336,378,7,365], // MODIFIER LETTER SMALL H + 0x2B1: [848,-336,378,7,365], // MODIFIER LETTER SMALL H WITH HOOK + 0x2B2: [852,-169,300,44,244], // MODIFIER LETTER SMALL J + 0x2B3: [681,-336,252,5,252], // MODIFIER LETTER SMALL R + 0x2B4: [680,-335,277,10,257], // MODIFIER LETTER SMALL TURNED R + 0x2B5: [680,-168,325,10,338], // MODIFIER LETTER SMALL TURNED R WITH HOOK + 0x2B6: [680,-335,390,6,379], // MODIFIER LETTER SMALL CAPITAL INVERTED R + 0x2B7: [680,-331,520,6,512], // MODIFIER LETTER SMALL W + 0x2B8: [680,-176,370,14,361], // MODIFIER LETTER SMALL Y + 0x2B9: [684,-421,208,90,257], // MODIFIER LETTER PRIME + 0x2BA: [684,-421,305,19,324], // MODIFIER LETTER DOUBLE PRIME + 0x2BB: [686,-443,333,79,218], // MODIFIER LETTER TURNED COMMA + 0x2BC: [686,-443,333,79,218], // MODIFIER LETTER APOSTROPHE + 0x2BD: [686,-443,333,79,218], // MODIFIER LETTER REVERSED COMMA + 0x2BE: [680,-485,198,35,163], // MODIFIER LETTER RIGHT HALF RING + 0x2BF: [680,-485,198,35,163], // MODIFIER LETTER LEFT HALF RING + 0x2C0: [690,-295,326,23,303], // MODIFIER LETTER GLOTTAL STOP + 0x2C1: [690,-295,326,23,303], // MODIFIER LETTER REVERSED GLOTTAL STOP + 0x2C2: [755,-419,317,33,285], // MODIFIER LETTER LEFT ARROWHEAD + 0x2C3: [755,-419,317,33,285], // MODIFIER LETTER RIGHT ARROWHEAD + 0x2C4: [713,-461,317,-9,327], // MODIFIER LETTER UP ARROWHEAD + 0x2C5: [713,-461,317,-9,327], // MODIFIER LETTER DOWN ARROWHEAD + 0x2C8: [713,-448,278,119,159], // MODIFIER LETTER VERTICAL LINE + 0x2CC: [70,195,278,119,159], // MODIFIER LETTER LOW VERTICAL LINE + 0x2CD: [-104,159,334,11,323], // MODIFIER LETTER LOW MACRON + 0x2CE: [-21,192,333,25,249], // MODIFIER LETTER LOW GRAVE ACCENT + 0x2CF: [-21,192,333,84,308], // MODIFIER LETTER LOW ACUTE ACCENT + 0x2D0: [460,-19,333,89,244], // MODIFIER LETTER TRIANGULAR COLON + 0x2D1: [460,-299,333,89,244], // MODIFIER LETTER HALF TRIANGULAR COLON + 0x2D2: [365,-75,333,72,262], // MODIFIER LETTER CENTRED RIGHT HALF RING + 0x2D3: [365,-75,333,71,261], // MODIFIER LETTER CENTRED LEFT HALF RING + 0x2D4: [205,-18,333,51,281], // MODIFIER LETTER UP TACK + 0x2D5: [205,-18,333,51,281], // MODIFIER LETTER DOWN TACK + 0x2D6: [218,-26,333,71,263], // MODIFIER LETTER PLUS SIGN + 0x2D7: [144,-100,333,71,263], // MODIFIER LETTER MINUS SIGN + 0x2DA: [711,-512,333,67,266], // RING ABOVE + 0x2DB: [0,165,333,64,249], // OGONEK + 0x2DD: [678,-507,333,-3,376], // DOUBLE ACUTE ACCENT + 0x2DE: [443,-186,298,0,263], // MODIFIER LETTER RHOTIC HOOK + 0x2DF: [662,-425,333,48,284], // MODIFIER LETTER CROSS ACCENT + 0x2E0: [684,-219,378,24,335], // MODIFIER LETTER SMALL GAMMA + 0x2E1: [848,-336,215,19,197], // MODIFIER LETTER SMALL L + 0x2E2: [681,-331,291,36,261], // MODIFIER LETTER SMALL S + 0x2E3: [680,-336,380,5,372], // MODIFIER LETTER SMALL X + 0x2E4: [850,-336,341,45,319], // MODIFIER LETTER SMALL REVERSED GLOTTAL STOP + 0x2E5: [662,0,413,48,373], // MODIFIER LETTER EXTRA-HIGH TONE BAR + 0x2E6: [662,0,405,40,365], // MODIFIER LETTER HIGH TONE BAR + 0x2E7: [662,0,405,40,365], // MODIFIER LETTER MID TONE BAR + 0x2E8: [662,0,405,40,365], // MODIFIER LETTER LOW TONE BAR + 0x2E9: [662,0,405,40,365], // MODIFIER LETTER EXTRA-LOW TONE BAR + 0x2EC: [70,147,333,21,311], // MODIFIER LETTER VOICING + 0x2ED: [665,-507,405,10,395], // MODIFIER LETTER UNASPIRATED + 0x2F7: [-113,219,333,1,331] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js new file mode 100644 index 0000000..06f6a63 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0xFFFD: [662,217,872,55,817] // REPLACEMENT CHARACTER + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Specials.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js new file mode 100644 index 0000000..6496cf1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x207F: [676,-270,541,57,484] // SUPERSCRIPT LATIN SMALL LETTER N + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/SuperAndSubscripts.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js new file mode 100644 index 0000000..915b8b5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js @@ -0,0 +1,273 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuppMathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2A07: [763,259,1180,83,1097], // TWO LOGICAL AND OPERATOR + 0x2A08: [763,259,1180,83,1097], // TWO LOGICAL OR OPERATOR + 0x2A09: [763,259,1021,50,971], // N-ARY TIMES OPERATOR + 0x2A0A: [763,259,914,58,856], // MODULO TWO SUM + 0x2A0B: [824,320,690,33,659], // SUMMATION WITH INTEGRAL + 0x2A0C: [824,320,1184,32,1364], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [824,320,499,32,639], // FINITE PART INTEGRAL + 0x2A0E: [824,320,499,32,639], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [824,320,499,32,639], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [824,320,499,32,639], // CIRCULATION FUNCTION + 0x2A11: [824,320,499,32,639], // ANTICLOCKWISE INTEGRATION + 0x2A12: [824,320,519,32,639], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [824,320,499,32,639], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [824,320,628,32,688], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [824,320,499,32,639], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [824,320,529,32,639], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [824,320,738,32,818], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [824,320,539,32,639], // INTEGRAL WITH TIMES SIGN + 0x2A19: [824,320,559,32,639], // INTEGRAL WITH INTERSECTION + 0x2A1A: [824,320,559,32,639], // INTEGRAL WITH UNION + 0x2A1B: [947,320,459,32,639], // INTEGRAL WITH OVERBAR + 0x2A1C: [824,443,459,32,639], // INTEGRAL WITH UNDERBAR + 0x2A1D: [770,252,1270,93,1177], // JOIN + 0x2A1E: [764,258,1018,45,924], // LARGE LEFT TRIANGLE OPERATOR + 0x2A1F: [566,291,503,110,410], // Z NOTATION SCHEMA COMPOSITION + 0x2A20: [633,127,1177,98,1079], // Z NOTATION SCHEMA PIPING + 0x2A21: [805,300,547,215,472], // Z NOTATION SCHEMA PROJECTION + 0x2A22: [819,41,685,48,636], // PLUS SIGN WITH SMALL CIRCLE ABOVE + 0x2A23: [707,41,685,48,636], // PLUS SIGN WITH CIRCUMFLEX ACCENT ABOVE + 0x2A24: [704,41,685,48,636], // PLUS SIGN WITH TILDE ABOVE + 0x2A25: [547,235,685,48,636], // PLUS SIGN WITH DOT BELOW + 0x2A26: [547,198,685,48,636], // PLUS SIGN WITH TILDE BELOW + 0x2A27: [547,210,685,41,673], // PLUS SIGN WITH SUBSCRIPT TWO + 0x2A28: [547,41,685,48,636], // PLUS SIGN WITH BLACK TRIANGLE + 0x2A29: [556,-220,685,48,637], // MINUS SIGN WITH COMMA ABOVE + 0x2A2A: [286,5,685,48,637], // MINUS SIGN WITH DOT BELOW + 0x2A2B: [511,5,685,48,637], // MINUS SIGN WITH FALLING DOTS + 0x2A2C: [511,5,685,48,637], // MINUS SIGN WITH RISING DOTS + 0x2A2D: [623,119,724,50,674], // PLUS SIGN IN LEFT HALF CIRCLE + 0x2A2E: [623,119,724,50,674], // PLUS SIGN IN RIGHT HALF CIRCLE + 0x2A2F: [447,-59,490,50,439], // VECTOR OR CROSS PRODUCT + 0x2A30: [686,25,640,43,597], // MULTIPLICATION SIGN WITH DOT ABOVE + 0x2A31: [529,130,640,43,597], // MULTIPLICATION SIGN WITH UNDERBAR + 0x2A32: [529,45,640,43,597], // SEMIDIRECT PRODUCT WITH BOTTOM CLOSED + 0x2A33: [538,32,685,57,627], // SMASH PRODUCT + 0x2A34: [623,119,674,50,624], // MULTIPLICATION SIGN IN LEFT HALF CIRCLE + 0x2A35: [623,119,674,50,624], // MULTIPLICATION SIGN IN RIGHT HALF CIRCLE + 0x2A36: [810,119,842,50,792], // CIRCLED MULTIPLICATION SIGN WITH CIRCUMFLEX ACCENT + 0x2A37: [752,248,1100,50,1050], // MULTIPLICATION SIGN IN DOUBLE CIRCLE + 0x2A38: [623,119,842,50,792], // CIRCLED DIVISION SIGN + 0x2A39: [811,127,1145,35,1110], // PLUS SIGN IN TRIANGLE + 0x2A3A: [811,127,1145,35,1110], // MINUS SIGN IN TRIANGLE + 0x2A3B: [811,127,1145,35,1110], // MULTIPLICATION SIGN IN TRIANGLE + 0x2A3C: [393,-115,600,48,552], // stix-vert, low bar to left from base + 0x2A3D: [393,-115,600,48,552], // stix-vert, low bar to right from base + 0x2A3E: [488,170,300,60,230], // Z NOTATION RELATIONAL COMPOSITION + 0x2A40: [536,31,620,48,572], // INTERSECTION WITH DOT + 0x2A41: [536,31,620,48,572], // UNION WITH MINUS SIGN + 0x2A42: [668,31,620,48,572], // UNION WITH OVERBAR + 0x2A43: [668,31,620,48,572], // INTERSECTION WITH OVERBAR + 0x2A44: [536,31,620,48,572], // INTERSECTION WITH LOGICAL AND + 0x2A45: [536,31,620,48,572], // UNION WITH LOGICAL OR + 0x2A46: [914,406,620,48,572], // UNION ABOVE INTERSECTION + 0x2A47: [914,406,620,48,572], // INTERSECTION ABOVE UNION + 0x2A48: [914,406,620,48,572], // UNION ABOVE BAR ABOVE INTERSECTION + 0x2A49: [914,406,620,48,572], // INTERSECTION ABOVE BAR ABOVE UNION + 0x2A4A: [528,39,1078,48,1030], // UNION BESIDE AND JOINED WITH UNION + 0x2A4B: [527,40,1078,48,1030], // INTERSECTION BESIDE AND JOINED WITH INTERSECTION + 0x2A4C: [602,31,620,10,610], // CLOSED UNION WITH SERIFS + 0x2A4D: [536,97,620,10,610], // CLOSED INTERSECTION WITH SERIFS + 0x2A4E: [536,31,620,48,572], // DOUBLE SQUARE INTERSECTION + 0x2A4F: [536,31,620,48,572], // DOUBLE SQUARE UNION + 0x2A50: [602,31,620,10,610], // CLOSED UNION WITH SERIFS AND SMASH PRODUCT + 0x2A51: [710,29,620,31,589], // LOGICAL AND WITH DOT ABOVE + 0x2A52: [710,29,620,31,589], // LOGICAL OR WITH DOT ABOVE + 0x2A53: [536,29,620,31,589], // DOUBLE LOGICAL AND + 0x2A54: [536,29,620,31,589], // DOUBLE LOGICAL OR + 0x2A55: [536,29,780,32,748], // TWO INTERSECTING LOGICAL AND + 0x2A56: [536,29,780,32,748], // TWO INTERSECTING LOGICAL OR + 0x2A57: [536,29,706,106,683], // SLOPING LARGE OR + 0x2A58: [536,29,706,23,600], // SLOPING LARGE AND + 0x2A59: [585,77,620,31,589], // LOGICAL OR OVERLAPPING LOGICAL AND + 0x2A5A: [536,29,620,31,589], // LOGICAL AND WITH MIDDLE STEM + 0x2A5B: [536,29,620,31,589], // LOGICAL OR WITH MIDDLE STEM + 0x2A5C: [536,29,620,31,589], // LOGICAL AND WITH HORIZONTAL DASH + 0x2A5D: [536,29,620,31,589], // LOGICAL OR WITH HORIZONTAL DASH + 0x2A5E: [796,29,620,31,589], // LOGICAL AND WITH DOUBLE OVERBAR + 0x2A5F: [536,139,620,30,590], // LOGICAL AND WITH UNDERBAR + 0x2A60: [536,289,620,30,590], // LOGICAL AND WITH DOUBLE UNDERBAR + 0x2A61: [479,0,620,45,575], // SMALL VEE WITH UNDERBAR + 0x2A62: [806,29,620,30,590], // LOGICAL OR WITH DOUBLE OVERBAR + 0x2A63: [536,289,620,30,590], // LOGICAL OR WITH DOUBLE UNDERBAR + 0x2A64: [791,284,1043,70,1008], // Z NOTATION DOMAIN ANTIRESTRICTION + 0x2A65: [791,284,1043,70,1008], // Z NOTATION RANGE ANTIRESTRICTION + 0x2A66: [386,105,685,48,637], // EQUALS SIGN WITH DOT BELOW + 0x2A67: [703,-28,685,48,637], // IDENTICAL WITH DOT ABOVE + 0x2A68: [695,189,685,48,637], // TRIPLE HORIZONTAL BAR WITH DOUBLE VERTICAL STROKE + 0x2A69: [662,156,685,48,637], // TRIPLE HORIZONTAL BAR WITH TRIPLE VERTICAL STROKE + 0x2A6A: [521,-148,685,48,637], // TILDE OPERATOR WITH DOT ABOVE + 0x2A6B: [521,13,685,48,637], // TILDE OPERATOR WITH RISING DOTS + 0x2A6C: [543,38,685,48,637], // SIMILAR MINUS SIMILAR + 0x2A6D: [703,27,685,48,637], // CONGRUENT WITH DOT ABOVE + 0x2A6E: [847,-120,685,48,637], // EQUALS WITH ASTERISK + 0x2A6F: [707,-25,685,48,637], // ALMOST EQUAL TO WITH CIRCUMFLEX ACCENT + 0x2A70: [650,146,685,48,637], // APPROXIMATELY EQUAL OR EQUAL TO + 0x2A71: [648,141,685,48,637], // EQUALS SIGN ABOVE PLUS SIGN + 0x2A72: [648,141,685,48,637], // PLUS SIGN ABOVE EQUALS SIGN + 0x2A73: [532,27,685,48,637], // EQUALS SIGN ABOVE TILDE OPERATOR + 0x2A74: [417,-89,1015,48,967], // DOUBLE COLON EQUAL + 0x2A75: [386,-120,997,48,949], // TWO CONSECUTIVE EQUALS SIGNS + 0x2A76: [386,-120,1436,48,1388], // THREE CONSECUTIVE EQUALS SIGNS + 0x2A77: [611,106,685,48,637], // EQUALS SIGN WITH TWO DOTS ABOVE AND TWO DOTS BELOW + 0x2A78: [703,-28,685,38,647], // EQUIVALENT WITH FOUR DOTS ABOVE + 0x2A79: [532,26,685,44,609], // LESS-THAN WITH CIRCLE INSIDE + 0x2A7A: [532,26,685,76,641], // GREATER-THAN WITH CIRCLE INSIDE + 0x2A7B: [806,26,685,44,609], // LESS-THAN WITH QUESTION MARK ABOVE + 0x2A7C: [806,26,685,76,641], // GREATER-THAN WITH QUESTION MARK ABOVE + 0x2A7D: [625,137,685,56,621], // LESS-THAN OR SLANTED EQUAL TO + 0x2A7E: [625,137,685,56,621], // GREATER-THAN OR SLANTED EQUAL TO + 0x2A7F: [625,137,685,60,625], // LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE + 0x2A80: [625,137,685,60,625], // GREATER-THAN OR SLANTED EQUAL TO WITH DOT INSIDE + 0x2A81: [625,137,685,60,625], // LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE + 0x2A82: [625,137,685,60,625], // GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE + 0x2A83: [777,137,685,60,625], // LESS-THAN OR SLANTED EQUAL TO WITH DOT ABOVE RIGHT + 0x2A84: [777,137,685,60,625], // GREATER-THAN OR SLANTED EQUAL TO WITH DOT ABOVE LEFT + 0x2A85: [746,275,685,48,637], // LESS-THAN OR APPROXIMATE + 0x2A86: [746,275,685,48,637], // GREATER-THAN OR APPROXIMATE + 0x2A87: [628,216,685,60,625], // LESS-THAN AND SINGLE-LINE NOT EQUAL TO + 0x2A88: [628,216,687,56,621], // GREATER-THAN AND SINGLE-LINE NOT EQUAL TO + 0x2A89: [746,309,685,48,637], // LESS-THAN AND NOT APPROXIMATE + 0x2A8A: [746,309,685,48,637], // GREATER-THAN AND NOT APPROXIMATE + 0x2A8B: [930,424,685,56,621], // LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN + 0x2A8C: [930,424,685,56,621], // GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN + 0x2A8D: [746,176,685,48,637], // LESS-THAN ABOVE SIMILAR OR EQUAL + 0x2A8E: [746,176,685,48,637], // GREATER-THAN ABOVE SIMILAR OR EQUAL + 0x2A8F: [867,361,685,60,649], // LESS-THAN ABOVE SIMILAR ABOVE GREATER-THAN + 0x2A90: [867,361,685,60,649], // GREATER-THAN ABOVE SIMILAR ABOVE LESS-THAN + 0x2A91: [844,338,685,55,630], // LESS-THAN ABOVE GREATER-THAN ABOVE DOUBLE-LINE EQUAL + 0x2A92: [844,338,685,55,630], // GREATER-THAN ABOVE LESS-THAN ABOVE DOUBLE-LINE EQUAL + 0x2A93: [866,361,685,60,625], // LESS-THAN ABOVE SLANTED EQUAL ABOVE GREATER-THAN ABOVE SLANTED EQUAL + 0x2A94: [866,361,685,60,625], // GREATER-THAN ABOVE SLANTED EQUAL ABOVE LESS-THAN ABOVE SLANTED EQUAL + 0x2A95: [640,122,685,56,621], // SLANTED EQUAL TO OR LESS-THAN + 0x2A96: [640,122,685,56,621], // SLANTED EQUAL TO OR GREATER-THAN + 0x2A97: [640,122,685,56,621], // SLANTED EQUAL TO OR LESS-THAN WITH DOT INSIDE + 0x2A98: [640,122,685,56,621], // SLANTED EQUAL TO OR GREATER-THAN WITH DOT INSIDE + 0x2A99: [718,211,685,60,625], // DOUBLE-LINE EQUAL TO OR LESS-THAN + 0x2A9A: [718,211,685,60,625], // DOUBLE-LINE EQUAL TO OR GREATER-THAN + 0x2A9B: [726,220,685,60,625], // DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN + 0x2A9C: [726,220,685,60,625], // DOUBLE-LINE SLANTED EQUAL TO OR GREATER-THAN + 0x2A9D: [664,164,685,53,642], // stix-similar (conforming) or less-than + 0x2A9E: [664,164,685,43,632], // SIMILAR OR GREATER-THAN + 0x2A9F: [774,267,685,48,637], // SIMILAR ABOVE LESS-THAN ABOVE EQUALS SIGN + 0x2AA0: [774,267,685,48,637], // SIMILAR ABOVE GREATER-THAN ABOVE EQUALS SIGN + 0x2AA1: [532,26,685,44,609], // DOUBLE NESTED LESS-THAN + 0x2AA2: [532,26,685,76,641], // DOUBLE NESTED GREATER-THAN + 0x2AA3: [609,103,933,25,908], // DOUBLE NESTED LESS-THAN WITH UNDERBAR + 0x2AA4: [532,26,782,60,722], // GREATER-THAN OVERLAPPING LESS-THAN + 0x2AA5: [532,26,855,60,795], // GREATER-THAN BESIDE LESS-THAN + 0x2AA6: [532,26,685,35,625], // LESS-THAN CLOSED BY CURVE + 0x2AA7: [532,26,685,60,650], // GREATER-THAN CLOSED BY CURVE + 0x2AA8: [625,137,685,50,640], // LESS-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL + 0x2AA9: [626,137,685,45,635], // GREATER-THAN CLOSED BY CURVE ABOVE SLANTED EQUAL + 0x2AAA: [537,31,685,45,609], // SMALLER THAN + 0x2AAB: [537,31,685,76,640], // LARGER THAN + 0x2AAC: [613,103,685,60,625], // stix-smaller than or equal, slanted + 0x2AAD: [613,103,685,60,625], // stix-larger than or equal, slanted + 0x2AAE: [563,-28,685,48,637], // EQUALS SIGN WITH BUMPY ABOVE + 0x2AB1: [628,216,685,60,625], // PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO + 0x2AB2: [628,216,685,60,625], // SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO + 0x2AB3: [717,211,685,60,625], // PRECEDES ABOVE EQUALS SIGN + 0x2AB4: [717,211,685,60,625], // SUCCEEDS ABOVE EQUALS SIGN + 0x2AB5: [747,260,685,65,622], // PRECEDES ABOVE NOT EQUAL TO + 0x2AB6: [747,260,685,65,622], // SUCCEEDS ABOVE NOT EQUAL TO + 0x2AB7: [747,275,685,48,637], // PRECEDES ABOVE ALMOST EQUAL TO + 0x2AB8: [747,275,685,48,637], // SUCCEEDS ABOVE ALMOST EQUAL TO + 0x2AB9: [747,309,685,48,637], // PRECEDES ABOVE NOT ALMOST EQUAL TO + 0x2ABA: [747,309,685,48,637], // SUCCEEDS ABOVE NOT ALMOST EQUAL TO + 0x2ABB: [532,26,933,25,908], // DOUBLE PRECEDES + 0x2ABC: [532,26,933,25,908], // DOUBLE SUCCEEDS + 0x2ABD: [532,26,685,60,625], // SUBSET WITH DOT + 0x2ABE: [532,26,685,60,625], // SUPERSET WITH DOT + 0x2ABF: [607,103,685,60,625], // SUBSET WITH PLUS SIGN BELOW + 0x2AC0: [607,103,685,60,625], // SUPERSET WITH PLUS SIGN BELOW + 0x2AC1: [607,103,685,60,625], // SUBSET WITH MULTIPLICATION SIGN BELOW + 0x2AC2: [607,103,685,60,625], // SUPERSET WITH MULTIPLICATION SIGN BELOW + 0x2AC3: [709,103,685,60,625], // SUBSET OF OR EQUAL TO WITH DOT ABOVE + 0x2AC4: [709,103,685,60,625], // SUPERSET OF OR EQUAL TO WITH DOT ABOVE + 0x2AC5: [717,211,685,64,622], // SUBSET OF ABOVE EQUALS SIGN + 0x2AC6: [717,211,685,65,623], // SUPERSET OF ABOVE EQUALS SIGN + 0x2AC7: [665,164,685,60,625], // SUBSET OF ABOVE TILDE OPERATOR + 0x2AC8: [665,164,685,60,625], // SUPERSET OF ABOVE TILDE OPERATOR + 0x2AC9: [746,274,685,60,625], // SUBSET OF ABOVE ALMOST EQUAL TO + 0x2ACA: [746,274,685,60,625], // SUPERSET OF ABOVE ALMOST EQUAL TO + 0x2ACB: [717,319,685,61,619], // stix-subset not double equals, variant + 0x2ACC: [717,319,685,66,624], // SUPERSET OF ABOVE NOT EQUAL TO + 0x2ACD: [558,53,1352,64,1288], // SQUARE LEFT OPEN BOX OPERATOR + 0x2ACE: [558,53,1352,64,1288], // SQUARE RIGHT OPEN BOX OPERATOR + 0x2ACF: [532,26,685,50,615], // CLOSED SUBSET + 0x2AD0: [532,26,685,70,635], // CLOSED SUPERSET + 0x2AD1: [609,103,685,60,626], // CLOSED SUBSET OR EQUAL TO + 0x2AD2: [609,103,685,60,625], // CLOSED SUPERSET OR EQUAL TO + 0x2AD3: [715,209,685,60,625], // SUBSET ABOVE SUPERSET + 0x2AD4: [715,209,685,60,625], // SUPERSET ABOVE SUBSET + 0x2AD5: [715,209,685,60,625], // SUBSET ABOVE SUBSET + 0x2AD6: [715,209,685,60,625], // SUPERSET ABOVE SUPERSET + 0x2AD7: [532,26,1250,60,1190], // SUPERSET BESIDE SUBSET + 0x2AD8: [532,26,1250,60,1190], // SUPERSET BESIDE AND JOINED BY DASH WITH SUBSET + 0x2AD9: [536,31,620,48,572], // ELEMENT OF OPENING DOWNWARDS + 0x2ADA: [697,128,620,48,572], // PITCHFORK WITH TEE TOP + 0x2ADB: [695,97,620,48,572], // TRANSVERSAL INTERSECTION + 0x2ADC: [557,10,620,11,572], // FORKING + 0x2ADD: [557,10,620,48,572], // NONFORKING + 0x2ADE: [662,0,497,64,433], // SHORT LEFT TACK + 0x2ADF: [371,0,685,48,637], // SHORT DOWN TACK + 0x2AE0: [371,0,685,48,637], // SHORT UP TACK + 0x2AE1: [662,0,685,48,637], // PERPENDICULAR WITH S + 0x2AE2: [662,0,685,60,625], // VERTICAL BAR TRIPLE RIGHT TURNSTILE + 0x2AE3: [662,0,860,46,803], // DOUBLE VERTICAL BAR LEFT TURNSTILE + 0x2AE4: [662,0,685,60,625], // VERTICAL BAR DOUBLE LEFT TURNSTILE + 0x2AE5: [662,0,860,46,803], // DOUBLE VERTICAL BAR DOUBLE LEFT TURNSTILE + 0x2AE6: [662,0,685,57,626], // LONG DASH FROM LEFT MEMBER OF DOUBLE VERTICAL + 0x2AE7: [571,0,685,48,637], // SHORT DOWN TACK WITH OVERBAR + 0x2AE8: [571,0,685,48,637], // SHORT UP TACK WITH UNDERBAR + 0x2AE9: [691,185,685,48,637], // SHORT UP TACK ABOVE SHORT DOWN TACK + 0x2AEA: [662,0,685,48,637], // DOUBLE DOWN TACK + 0x2AEB: [662,0,685,48,637], // DOUBLE UP TACK + 0x2AEC: [489,-18,600,48,552], // DOUBLE STROKE NOT SIGN + 0x2AED: [489,-18,600,48,552], // REVERSED DOUBLE STROKE NOT SIGN + 0x2AEE: [690,189,404,23,381], // stix-short mid negated by backslash + 0x2AEF: [660,154,502,101,401], // VERTICAL LINE WITH CIRCLE ABOVE + 0x2AF0: [660,154,502,101,401], // VERTICAL LINE WITH CIRCLE BELOW + 0x2AF1: [693,187,502,101,401], // DOWN TACK WITH CIRCLE BELOW + 0x2AF2: [695,189,523,10,513], // PARALLEL WITH HORIZONTAL STROKE + 0x2AF3: [695,189,685,48,637], // PARALLEL WITH TILDE OPERATOR + 0x2AF4: [695,189,685,131,555], // TRIPLE VERTICAL BAR BINARY RELATION + 0x2AF5: [695,189,685,12,674], // TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE + 0x2AF6: [608,102,685,279,406], // TRIPLE COLON OPERATOR + 0x2AF7: [661,155,1170,58,1080], // TRIPLE NESTED LESS-THAN + 0x2AF8: [661,155,1170,90,1112], // TRIPLE NESTED GREATER-THAN + 0x2AF9: [726,220,685,60,625], // DOUBLE-LINE SLANTED LESS-THAN OR EQUAL TO + 0x2AFA: [726,220,685,60,625], // DOUBLE-LINE SLANTED GREATER-THAN OR EQUAL TO + 0x2AFB: [710,222,894,46,848], // TRIPLE SOLIDUS BINARY RELATION + 0x2AFC: [763,259,654,94,560], // LARGE TRIPLE VERTICAL BAR OPERATOR + 0x2AFD: [710,222,709,46,663], // DOUBLE SOLIDUS OPERATOR + 0x2AFE: [690,189,410,100,310], // WHITE VERTICAL BAR + 0x2AFF: [763,259,478,94,384] // N-ARY WHITE VERTICAL BAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/SuppMathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js new file mode 100644 index 0000000..065fb72 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x27F0: [662,156,1033,69,965], // UPWARDS QUADRUPLE ARROW + 0x27F1: [662,156,1033,69,965], // DOWNWARDS QUADRUPLE ARROW + 0x27F2: [626,116,974,54,882], // ANTICLOCKWISE GAPPED CIRCLE ARROW + 0x27F3: [626,116,974,92,920], // CLOCKWISE GAPPED CIRCLE ARROW + 0x27F4: [569,61,1200,52,1147], // RIGHT ARROW WITH CIRCLED PLUS + 0x27FD: [551,45,1574,55,1519], // LONG LEFTWARDS DOUBLE ARROW FROM BAR + 0x27FE: [551,45,1574,55,1519], // LONG RIGHTWARDS DOUBLE ARROW FROM BAR + 0x27FF: [449,-58,1574,55,1519] // LONG RIGHTWARDS SQUIGGLE ARROW + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/SupplementalArrowsA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js new file mode 100644 index 0000000..1310b12 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js @@ -0,0 +1,155 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SupplementalArrowsB.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x2900: [450,-57,926,56,871], // RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE + 0x2901: [450,-57,926,55,871], // RIGHTWARDS TWO-HEADED ARROW WITH DOUBLE VERTICAL STROKE + 0x2902: [551,45,926,55,871], // LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE + 0x2903: [551,45,926,55,871], // RIGHTWARDS DOUBLE ARROW WITH VERTICAL STROKE + 0x2904: [551,45,926,20,906], // LEFT RIGHT DOUBLE ARROW WITH VERTICAL STROKE + 0x2905: [450,-57,926,55,871], // RIGHTWARDS TWO-HEADED ARROW FROM BAR + 0x2906: [551,45,926,55,871], // LEFTWARDS DOUBLE ARROW FROM BAR + 0x2907: [551,45,926,55,871], // RIGHTWARDS DOUBLE ARROW FROM BAR + 0x2908: [662,156,511,59,452], // DOWNWARDS ARROW WITH HORIZONTAL STROKE + 0x2909: [662,156,511,59,452], // UPWARDS ARROW WITH HORIZONTAL STROKE + 0x290A: [662,156,926,71,854], // UPWARDS TRIPLE ARROW + 0x290B: [662,156,926,72,855], // DOWNWARDS TRIPLE ARROW + 0x290C: [449,-57,926,55,871], // LEFTWARDS DOUBLE DASH ARROW + 0x290D: [449,-57,926,55,871], // RIGHTWARDS DOUBLE DASH ARROW + 0x290E: [449,-57,926,55,871], // LEFTWARDS TRIPLE DASH ARROW + 0x290F: [449,-57,926,55,871], // RIGHTWARDS TRIPLE DASH ARROW + 0x2910: [449,-57,1412,55,1357], // RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW + 0x2911: [449,-57,926,55,873], // RIGHTWARDS ARROW WITH DOTTED STEM + 0x2912: [662,156,511,59,452], // UPWARDS ARROW TO BAR + 0x2913: [662,156,511,59,452], // DOWNWARDS ARROW TO BAR + 0x2914: [450,-57,926,55,871], // RIGHTWARDS ARROW WITH TAIL WITH VERTICAL STROKE + 0x2915: [450,-57,926,55,871], // RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE + 0x2916: [449,-57,926,55,871], // RIGHTWARDS TWO-HEADED ARROW WITH TAIL + 0x2917: [450,-57,926,55,871], // RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH VERTICAL STROKE + 0x2918: [450,-57,926,50,876], // RIGHTWARDS TWO-HEADED ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE + 0x2919: [449,-57,926,55,871], // LEFTWARDS ARROW-TAIL + 0x291A: [449,-57,926,55,871], // RIGHTWARDS ARROW-TAIL + 0x291B: [449,-57,926,55,871], // LEFTWARDS DOUBLE ARROW-TAIL + 0x291C: [449,-57,926,55,871], // RIGHTWARDS DOUBLE ARROW-TAIL + 0x291D: [449,-57,926,55,871], // LEFTWARDS ARROW TO BLACK DIAMOND + 0x291E: [449,-57,926,55,871], // RIGHTWARDS ARROW TO BLACK DIAMOND + 0x291F: [450,-57,926,55,871], // LEFTWARDS ARROW FROM BAR TO BLACK DIAMOND + 0x2920: [450,-57,926,55,871], // RIGHTWARDS ARROW FROM BAR TO BLACK DIAMOND + 0x2921: [662,156,926,55,871], // NORTH WEST AND SOUTH EAST ARROW + 0x2922: [660,156,926,55,873], // NORTH EAST AND SOUTH WEST ARROW + 0x2923: [662,156,926,55,871], // NORTH WEST ARROW WITH HOOK + 0x2924: [662,156,926,55,871], // NORTH EAST ARROW WITH HOOK + 0x2925: [662,156,926,55,871], // SOUTH EAST ARROW WITH HOOK + 0x2926: [662,156,926,55,871], // SOUTH WEST ARROW WITH HOOK + 0x2927: [662,156,926,55,873], // NORTH WEST ARROW AND NORTH EAST ARROW + 0x2928: [662,156,926,53,871], // NORTH EAST ARROW AND SOUTH EAST ARROW + 0x2929: [662,156,926,53,871], // SOUTH EAST ARROW AND SOUTH WEST ARROW + 0x292A: [662,156,926,55,873], // SOUTH WEST ARROW AND NORTH WEST ARROW + 0x292B: [662,156,926,55,871], // RISING DIAGONAL CROSSING FALLING DIAGONAL + 0x292C: [662,156,926,55,871], // FALLING DIAGONAL CROSSING RISING DIAGONAL + 0x292D: [662,156,926,55,871], // SOUTH EAST ARROW CROSSING NORTH EAST ARROW + 0x292E: [662,156,926,55,871], // NORTH EAST ARROW CROSSING SOUTH EAST ARROW + 0x292F: [662,156,926,55,871], // FALLING DIAGONAL CROSSING NORTH EAST ARROW + 0x2930: [662,154,926,55,873], // RISING DIAGONAL CROSSING SOUTH EAST ARROW + 0x2931: [662,156,926,54,870], // NORTH EAST ARROW CROSSING NORTH WEST ARROW + 0x2932: [662,156,926,55,871], // NORTH WEST ARROW CROSSING NORTH EAST ARROW + 0x2933: [449,-57,926,55,871], // WAVE ARROW POINTING DIRECTLY RIGHT + 0x2934: [562,0,926,141,797], // ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS + 0x2935: [562,0,926,141,797], // ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS + 0x2936: [493,163,784,87,649], // ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS + 0x2937: [493,163,784,135,697], // ARROW POINTING DOWNWARDS THEN CURVING RIGHTWARDS + 0x2938: [657,153,511,70,415], // RIGHT-SIDE ARC CLOCKWISE ARROW + 0x2939: [657,153,511,96,441], // LEFT-SIDE ARC ANTICLOCKWISE ARROW + 0x293A: [423,-78,926,69,866], // TOP ARC ANTICLOCKWISE ARROW + 0x293B: [423,-78,926,60,857], // BOTTOM ARC ANTICLOCKWISE ARROW + 0x293C: [423,-64,926,59,856], // TOP ARC CLOCKWISE ARROW WITH MINUS + 0x293D: [423,29,926,69,866], // TOP ARC ANTICLOCKWISE ARROW WITH PLUS + 0x293E: [563,116,926,69,856], // LOWER RIGHT SEMICIRCULAR CLOCKWISE ARROW + 0x293F: [563,116,926,69,856], // LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW + 0x2940: [788,116,926,92,834], // ANTICLOCKWISE CLOSED CIRCLE ARROW + 0x2941: [788,116,926,92,834], // CLOCKWISE CLOSED CIRCLE ARROW + 0x2942: [598,92,926,55,871], // RIGHTWARDS ARROW ABOVE SHORT LEFTWARDS ARROW + 0x2943: [598,92,926,55,871], // LEFTWARDS ARROW ABOVE SHORT RIGHTWARDS ARROW + 0x2944: [598,92,926,55,871], // SHORT RIGHTWARDS ARROW ABOVE LEFTWARDS ARROW + 0x2945: [449,69,926,55,871], // RIGHTWARDS ARROW WITH PLUS BELOW + 0x2946: [449,69,926,55,871], // LEFTWARDS ARROW WITH PLUS BELOW + 0x2947: [449,-57,926,55,871], // RIGHTWARDS ARROW THROUGH X + 0x2948: [449,-57,926,38,888], // LEFT RIGHT ARROW THROUGH SMALL CIRCLE + 0x2949: [662,154,511,60,451], // UPWARDS TWO-HEADED ARROW FROM SMALL CIRCLE + 0x294A: [439,-67,926,38,888], // LEFT BARB UP RIGHT BARB DOWN HARPOON + 0x294B: [439,-67,926,38,888], // LEFT BARB DOWN RIGHT BARB UP HARPOON + 0x294C: [662,156,511,69,441], // UP BARB RIGHT DOWN BARB LEFT HARPOON + 0x294D: [662,156,511,69,441], // UP BARB LEFT DOWN BARB RIGHT HARPOON + 0x294E: [439,-220,926,38,888], // LEFT BARB UP RIGHT BARB UP HARPOON + 0x294F: [662,156,511,222,441], // UP BARB RIGHT DOWN BARB RIGHT HARPOON + 0x2950: [286,-67,926,38,888], // LEFT BARB DOWN RIGHT BARB DOWN HARPOON + 0x2951: [662,156,511,69,288], // UP BARB LEFT DOWN BARB LEFT HARPOON + 0x2952: [448,-58,926,55,871], // LEFTWARDS HARPOON WITH BARB UP TO BAR + 0x2953: [448,-58,926,55,871], // RIGHTWARDS HARPOON WITH BARB UP TO BAR + 0x2954: [662,156,511,60,451], // UPWARDS HARPOON WITH BARB RIGHT TO BAR + 0x2955: [662,156,511,60,451], // DOWNWARDS HARPOON WITH BARB RIGHT TO BAR + 0x2956: [448,-58,926,55,871], // LEFTWARDS HARPOON WITH BARB DOWN TO BAR + 0x2957: [448,-58,926,55,871], // RIGHTWARDS HARPOON WITH BARB DOWN TO BAR + 0x2958: [662,156,511,60,451], // UPWARDS HARPOON WITH BARB LEFT TO BAR + 0x2959: [662,156,511,60,451], // DOWNWARDS HARPOON WITH BARB LEFT TO BAR + 0x295A: [448,-58,926,55,871], // LEFTWARDS HARPOON WITH BARB UP FROM BAR + 0x295B: [448,-58,926,55,871], // RIGHTWARDS HARPOON WITH BARB UP FROM BAR + 0x295C: [662,156,511,60,451], // UPWARDS HARPOON WITH BARB RIGHT FROM BAR + 0x295D: [662,156,511,60,451], // DOWNWARDS HARPOON WITH BARB RIGHT FROM BAR + 0x295E: [448,-58,926,55,871], // LEFTWARDS HARPOON WITH BARB DOWN FROM BAR + 0x295F: [448,-58,926,55,871], // RIGHTWARDS HARPOON WITH BARB DOWN FROM BAR + 0x2960: [662,156,511,59,450], // UPWARDS HARPOON WITH BARB LEFT FROM BAR + 0x2961: [662,156,511,59,450], // DOWNWARDS HARPOON WITH BARB LEFT FROM BAR + 0x2962: [539,33,926,55,871], // LEFTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB DOWN + 0x2963: [662,156,685,57,629], // UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT + 0x2964: [539,33,926,55,871], // RIGHTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB DOWN + 0x2965: [662,156,685,57,629], // DOWNWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT + 0x2966: [539,-120,926,55,871], // LEFTWARDS HARPOON WITH BARB UP ABOVE RIGHTWARDS HARPOON WITH BARB UP + 0x2967: [386,33,926,55,871], // LEFTWARDS HARPOON WITH BARB DOWN ABOVE RIGHTWARDS HARPOON WITH BARB DOWN + 0x2968: [539,-120,926,55,871], // RIGHTWARDS HARPOON WITH BARB UP ABOVE LEFTWARDS HARPOON WITH BARB UP + 0x2969: [386,33,926,55,871], // RIGHTWARDS HARPOON WITH BARB DOWN ABOVE LEFTWARDS HARPOON WITH BARB DOWN + 0x296A: [539,-120,926,55,871], // LEFTWARDS HARPOON WITH BARB UP ABOVE LONG DASH + 0x296B: [386,33,926,55,871], // LEFTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH + 0x296C: [539,-120,926,55,871], // RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH + 0x296D: [386,33,926,55,871], // RIGHTWARDS HARPOON WITH BARB DOWN BELOW LONG DASH + 0x296E: [662,156,685,57,629], // UPWARDS HARPOON WITH BARB LEFT BESIDE DOWNWARDS HARPOON WITH BARB RIGHT + 0x296F: [662,156,685,57,629], // DOWNWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT + 0x2970: [386,-120,926,55,871], // RIGHT DOUBLE ARROW WITH ROUNDED HEAD + 0x2971: [565,-57,926,55,871], // EQUALS SIGN ABOVE RIGHTWARDS ARROW + 0x2972: [508,-57,926,55,871], // TILDE OPERATOR ABOVE RIGHTWARDS ARROW + 0x2973: [449,2,926,55,871], // LEFTWARDS ARROW ABOVE TILDE OPERATOR + 0x2974: [449,2,926,55,871], // RIGHTWARDS ARROW ABOVE TILDE OPERATOR + 0x2975: [449,141,926,55,871], // RIGHTWARDS ARROW ABOVE ALMOST EQUAL TO + 0x2976: [607,283,685,64,621], // LESS-THAN ABOVE LEFTWARDS ARROW + 0x2977: [532,26,926,45,871], // LEFTWARDS ARROW THROUGH LESS-THAN + 0x2978: [608,282,685,64,621], // GREATER-THAN ABOVE RIGHTWARDS ARROW + 0x2979: [627,262,685,64,621], // SUBSET ABOVE RIGHTWARDS ARROW + 0x297A: [532,26,926,45,871], // LEFTWARDS ARROW THROUGH SUBSET + 0x297B: [627,262,685,63,620], // SUPERSET ABOVE LEFTWARDS ARROW + 0x297C: [511,5,926,135,791], // LEFT FISH TAIL + 0x297D: [511,5,926,135,791], // RIGHT FISH TAIL + 0x297E: [581,75,685,84,600], // UP FISH TAIL + 0x297F: [581,75,685,84,600] // DOWN FISH TAIL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/SupplementalArrowsB.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js new file mode 100644 index 0000000..350be14 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], + { + 0x1D6A4: [441,11,278,47,235], // MATHEMATICAL ITALIC SMALL DOTLESS I + 0x1D6A5: [441,207,278,-124,246] // MATHEMATICAL ITALIC SMALL DOTLESS J + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/ij.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js new file mode 100644 index 0000000..66fb648 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsD-bold'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222B: [2000,269,686,56,1136], // INTEGRAL + 0x222C: [2000,269,1084,56,1534], // DOUBLE INTEGRAL + 0x222D: [2000,269,1482,56,1932], // TRIPLE INTEGRAL + 0x222E: [2000,269,736,56,1136], // CONTOUR INTEGRAL + 0x222F: [2000,269,1134,56,1534], // SURFACE INTEGRAL + 0x2230: [2000,269,1532,56,1932], // VOLUME INTEGRAL + 0x2231: [2000,269,736,56,1136], // CLOCKWISE INTEGRAL + 0x2232: [2000,269,736,56,1136], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [2000,269,736,56,1136], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0C: [2000,269,1880,56,2330], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [2000,269,736,56,1136], // FINITE PART INTEGRAL + 0x2A0E: [2000,269,736,56,1136], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [2000,269,736,56,1136], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [2000,269,736,56,1136], // CIRCULATION FUNCTION + 0x2A11: [2000,269,736,56,1136], // ANTICLOCKWISE INTEGRATION + 0x2A12: [2000,269,836,56,1136], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [2000,269,736,56,1136], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [2000,269,926,56,1136], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [2000,269,736,56,1136], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [2000,269,836,56,1136], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [2000,269,911,24,1131], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [2000,269,736,56,1136], // INTEGRAL WITH TIMES SIGN + 0x2A19: [2000,269,836,56,1136], // INTEGRAL WITH INTERSECTION + 0x2A1A: [2000,269,836,56,1136], // INTEGRAL WITH UNION + 0x2A1B: [2182,269,746,56,1146], // INTEGRAL WITH OVERBAR + 0x2A1C: [2000,451,696,56,1146] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsD/Bold/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js new file mode 100644 index 0000000..b05a7ea --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js @@ -0,0 +1,54 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsD'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222C: [2000,269,895,56,1345], // DOUBLE INTEGRAL + 0x222D: [2000,269,1205,56,1655], // TRIPLE INTEGRAL + 0x222F: [2000,269,945,56,1345], // SURFACE INTEGRAL + 0x2230: [2000,269,1255,56,1655], // VOLUME INTEGRAL + 0x2231: [2000,269,635,56,1035], // CLOCKWISE INTEGRAL + 0x2232: [2000,269,635,56,1035], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [2000,269,635,56,1035], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0B: [2000,269,914,56,1035], // SUMMATION WITH INTEGRAL + 0x2A0C: [2000,269,1515,56,1965], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [2000,269,635,56,1035], // FINITE PART INTEGRAL + 0x2A0E: [2000,269,635,56,1035], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [2000,269,635,56,1035], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [2000,269,635,56,1035], // CIRCULATION FUNCTION + 0x2A11: [2000,269,635,56,1035], // ANTICLOCKWISE INTEGRATION + 0x2A12: [2000,269,735,56,1035], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [2000,269,635,56,1035], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [2000,269,844,56,1054], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [2000,269,635,56,1035], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [2000,269,735,56,1035], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [2000,269,819,24,1039], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [2000,269,635,56,1035], // INTEGRAL WITH TIMES SIGN + 0x2A19: [2000,269,735,56,1035], // INTEGRAL WITH INTERSECTION + 0x2A1A: [2000,269,735,56,1035], // INTEGRAL WITH UNION + 0x2A1B: [2157,269,636,56,1036], // INTEGRAL WITH OVERBAR + 0x2A1C: [2000,426,585,56,1035] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsD/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js new file mode 100644 index 0000000..f068b53 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsD'] = { + directory: 'IntegralsD/Regular', + family: 'STIXIntegralsD', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0x222B,0x2233,"All"], + [0x2A0B,0x2A1C,"All"] + ], + 0x222B: [2000,269,585,56,1035], // INTEGRAL + 0x222E: [2000,269,635,56,1035] // CONTOUR INTEGRAL +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsD"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsD/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js new file mode 100644 index 0000000..d1295b6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsSm-bold'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222B: [732,193,562,41,618], // INTEGRAL + 0x222C: [732,193,870,41,926], // DOUBLE INTEGRAL + 0x222D: [732,193,1179,41,1235], // TRIPLE INTEGRAL + 0x222E: [732,193,626,41,618], // CONTOUR INTEGRAL + 0x222F: [732,193,934,41,926], // SURFACE INTEGRAL + 0x2230: [732,193,1243,41,1235], // VOLUME INTEGRAL + 0x2231: [732,193,626,41,618], // CLOCKWISE INTEGRAL + 0x2232: [732,193,626,41,618], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [732,193,626,41,618], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0C: [732,193,1488,41,1544], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [732,193,578,41,618], // FINITE PART INTEGRAL + 0x2A0E: [732,193,578,41,618], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [732,193,626,41,618], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [732,193,562,41,618], // CIRCULATION FUNCTION + 0x2A11: [732,193,626,41,618], // ANTICLOCKWISE INTEGRATION + 0x2A12: [732,193,579,41,618], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [732,193,581,41,618], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [732,193,688,41,652], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [732,193,626,41,618], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [732,193,579,41,618], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [732,193,646,8,646], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [732,193,578,41,618], // INTEGRAL WITH TIMES SIGN + 0x2A19: [732,193,559,41,618], // INTEGRAL WITH INTERSECTION + 0x2A1A: [732,193,559,41,618], // INTEGRAL WITH UNION + 0x2A1B: [802,193,555,41,611], // INTEGRAL WITH OVERBAR + 0x2A1C: [732,268,556,41,612] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsSm/Bold/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js new file mode 100644 index 0000000..b82172b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js @@ -0,0 +1,54 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsSm'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222C: [690,189,726,41,782], // DOUBLE INTEGRAL + 0x222D: [690,189,956,41,1012], // TRIPLE INTEGRAL + 0x222F: [690,189,790,41,782], // SURFACE INTEGRAL + 0x2230: [690,189,1020,41,1012], // VOLUME INTEGRAL + 0x2231: [690,189,560,41,552], // CLOCKWISE INTEGRAL + 0x2232: [690,189,560,41,552], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [690,189,560,41,552], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0B: [694,190,593,41,552], // SUMMATION WITH INTEGRAL + 0x2A0C: [695,189,1152,41,1242], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [694,190,512,41,552], // FINITE PART INTEGRAL + 0x2A0E: [693,190,512,41,552], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [694,190,560,41,552], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [694,190,496,41,552], // CIRCULATION FUNCTION + 0x2A11: [695,189,560,41,552], // ANTICLOCKWISE INTEGRATION + 0x2A12: [694,191,513,41,552], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [694,190,512,41,552], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [694,190,635,41,597], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [694,190,512,43,552], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [695,189,512,41,552], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [694,190,613,13,586], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [695,189,512,41,552], // INTEGRAL WITH TIMES SIGN + 0x2A19: [694,190,512,40,551], // INTEGRAL WITH INTERSECTION + 0x2A1A: [694,190,512,40,551], // INTEGRAL WITH UNION + 0x2A1B: [784,190,462,41,552], // INTEGRAL WITH OVERBAR + 0x2A1C: [694,284,496,41,552] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsSm/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js new file mode 100644 index 0000000..dc01dce --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsSm'] = { + directory: 'IntegralsSm/Regular', + family: 'STIXIntegralsSm', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0x222B,0x2233,"All"], + [0x2A0B,0x2A1C,"All"] + ], + 0x222B: [690,189,496,41,552], // INTEGRAL + 0x222E: [690,189,560,41,552] // CONTOUR INTEGRAL +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsSm"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsSm/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js new file mode 100644 index 0000000..d0c7e29 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUp-bold'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222B: [824,320,425,59,467], // INTEGRAL + 0x222C: [824,320,715,59,757], // DOUBLE INTEGRAL + 0x222D: [824,320,1005,59,1047], // TRIPLE INTEGRAL + 0x222E: [834,310,394,35,483], // CONTOUR INTEGRAL + 0x222F: [824,320,650,35,739], // SURFACE INTEGRAL + 0x2230: [824,320,951,54,1047], // VOLUME INTEGRAL + 0x2231: [824,320,484,54,553], // CLOCKWISE INTEGRAL + 0x2232: [824,320,445,35,534], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [824,320,456,35,545], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0C: [824,320,1295,59,1337], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [824,320,511,59,553], // FINITE PART INTEGRAL + 0x2A0E: [824,320,511,59,553], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [824,320,592,59,634], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [824,320,385,35,474], // CIRCULATION FUNCTION + 0x2A11: [824,320,484,54,553], // ANTICLOCKWISE INTEGRATION + 0x2A12: [824,320,417,35,486], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [824,320,424,54,493], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [824,320,535,54,604], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [824,320,416,35,505], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [824,320,459,35,528], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [824,320,824,45,884], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [824,320,527,45,587], // INTEGRAL WITH TIMES SIGN + 0x2A19: [824,320,567,45,632], // INTEGRAL WITH INTERSECTION + 0x2A1A: [824,320,567,45,632], // INTEGRAL WITH UNION + 0x2A1B: [959,320,479,45,521], // INTEGRAL WITH OVERBAR + 0x2A1C: [824,455,411,35,511] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUp/Bold/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js new file mode 100644 index 0000000..016ce45 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js @@ -0,0 +1,54 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUp'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222C: [824,320,596,59,638], // DOUBLE INTEGRAL + 0x222D: [824,320,826,59,868], // TRIPLE INTEGRAL + 0x222F: [824,320,548,35,637], // SURFACE INTEGRAL + 0x2230: [824,320,876,54,972], // VOLUME INTEGRAL + 0x2231: [824,320,478,54,547], // CLOCKWISE INTEGRAL + 0x2232: [824,320,441,35,530], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [824,320,475,35,564], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0B: [812,332,706,43,661], // SUMMATION WITH INTEGRAL + 0x2A0C: [812,332,1093,59,1135], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [812,332,467,59,509], // FINITE PART INTEGRAL + 0x2A0E: [812,332,467,59,509], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [812,332,529,59,571], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [812,332,346,35,435], // CIRCULATION FUNCTION + 0x2A11: [812,332,478,54,547], // ANTICLOCKWISE INTEGRATION + 0x2A12: [812,332,365,35,434], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [812,332,384,54,453], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [812,332,509,54,578], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [812,332,396,35,485], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [812,332,412,31,481], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [812,332,771,45,831], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [812,332,455,45,515], // INTEGRAL WITH TIMES SIGN + 0x2A19: [812,332,504,45,569], // INTEGRAL WITH INTERSECTION + 0x2A1A: [812,332,504,45,569], // INTEGRAL WITH UNION + 0x2A1B: [935,332,453,45,495], // INTEGRAL WITH OVERBAR + 0x2A1C: [812,455,376,59,509] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUp/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js new file mode 100644 index 0000000..98a5ca4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUp'] = { + directory: 'IntegralsUp/Regular', + family: 'STIXIntegralsUp', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0x222B,0x2233,"All"], + [0x2A0B,0x2A1C,"All"] + ], + 0x222B: [824,320,366,59,408], // INTEGRAL + 0x222E: [824,320,397,35,486] // CONTOUR INTEGRAL +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUp"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUp/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js new file mode 100644 index 0000000..598b963 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUpD-bold'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222B: [2000,269,515,58,560], // INTEGRAL + 0x222C: [2000,269,875,58,920], // DOUBLE INTEGRAL + 0x222D: [2000,269,1239,59,1281], // TRIPLE INTEGRAL + 0x222E: [2000,269,626,56,695], // CONTOUR INTEGRAL + 0x222F: [2000,269,1039,39,1039], // SURFACE INTEGRAL + 0x2230: [2000,269,1384,36,1395], // VOLUME INTEGRAL + 0x2231: [2000,269,632,47,760], // CLOCKWISE INTEGRAL + 0x2232: [2000,269,639,56,769], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [2000,269,598,56,778], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0C: [2000,269,1595,58,1640], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [2000,269,552,-35,590], // FINITE PART INTEGRAL + 0x2A0E: [2000,269,642,35,680], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [2000,269,675,25,752], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [2000,269,640,56,646], // CIRCULATION FUNCTION + 0x2A11: [2000,269,632,47,760], // ANTICLOCKWISE INTEGRATION + 0x2A12: [2000,269,625,58,654], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [2000,269,557,58,626], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [2000,269,708,58,789], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [2000,269,626,56,695], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [2000,269,718,56,747], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [2000,269,963,24,1057], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [2000,269,681,62,692], // INTEGRAL WITH TIMES SIGN + 0x2A19: [2000,269,832,65,898], // INTEGRAL WITH INTERSECTION + 0x2A1A: [2000,269,832,65,898], // INTEGRAL WITH UNION + 0x2A1B: [2182,269,733,0,773], // INTEGRAL WITH OVERBAR + 0x2A1C: [2000,451,525,58,831] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUpD/Bold/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js new file mode 100644 index 0000000..d5229a2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js @@ -0,0 +1,54 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUpD'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222C: [2000,269,787,58,832], // DOUBLE INTEGRAL + 0x222D: [2000,269,1107,58,1152], // TRIPLE INTEGRAL + 0x222F: [2000,269,849,39,849], // SURFACE INTEGRAL + 0x2230: [2000,269,1161,36,1172], // VOLUME INTEGRAL + 0x2231: [2000,269,608,47,736], // CLOCKWISE INTEGRAL + 0x2232: [2000,269,616,56,746], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [2000,269,605,56,785], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0B: [2000,269,914,58,856], // SUMMATION WITH INTEGRAL + 0x2A0C: [2000,269,1397,58,1442], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [2000,269,609,35,647], // FINITE PART INTEGRAL + 0x2A0E: [1999,270,609,35,647], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [1999,270,658,25,734], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [2000,269,629,56,635], // CIRCULATION FUNCTION + 0x2A11: [2000,269,608,47,736], // ANTICLOCKWISE INTEGRATION + 0x2A12: [2000,269,568,58,597], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [2000,269,530,58,599], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [2000,269,695,58,776], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [2000,269,615,56,684], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [2000,269,653,56,682], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [2000,269,945,24,1039], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [2000,269,597,62,608], // INTEGRAL WITH TIMES SIGN + 0x2A19: [2000,269,735,65,801], // INTEGRAL WITH INTERSECTION + 0x2A1A: [2000,269,735,65,801], // INTEGRAL WITH UNION + 0x2A1B: [2157,269,701,0,741], // INTEGRAL WITH OVERBAR + 0x2A1C: [2000,426,467,58,799] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUpD/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js new file mode 100644 index 0000000..3db6809 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUpD'] = { + directory: 'IntegralsUpD/Regular', + family: 'STIXIntegralsUpD', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0x222B,0x2233,"All"], + [0x2A0B,0x2A1C,"All"] + ], + 0x222B: [2000,269,467,58,512], // INTEGRAL + 0x222E: [2000,269,616,56,685] // CONTOUR INTEGRAL +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUpD"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUpD/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js new file mode 100644 index 0000000..e5e1d28 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUpSm-bold'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222B: [732,193,396,52,414], // INTEGRAL + 0x222C: [732,193,666,52,684], // DOUBLE INTEGRAL + 0x222D: [732,193,936,52,954], // TRIPLE INTEGRAL + 0x222E: [732,193,466,52,426], // CONTOUR INTEGRAL + 0x222F: [732,193,736,52,696], // SURFACE INTEGRAL + 0x2230: [732,193,998,52,965], // VOLUME INTEGRAL + 0x2231: [732,193,501,52,468], // CLOCKWISE INTEGRAL + 0x2232: [732,193,501,52,469], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [732,193,496,52,486], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0C: [732,193,1206,52,1224], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [732,193,450,52,420], // FINITE PART INTEGRAL + 0x2A0E: [732,193,450,52,420], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [732,193,550,40,518], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [732,193,479,52,447], // CIRCULATION FUNCTION + 0x2A11: [732,193,511,52,478], // ANTICLOCKWISE INTEGRATION + 0x2A12: [732,193,489,52,449], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [732,193,487,52,447], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [732,193,572,52,534], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [732,193,520,52,480], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [732,193,523,52,483], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [732,193,600,8,646], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [733,192,505,31,467], // INTEGRAL WITH TIMES SIGN + 0x2A19: [732,193,516,52,476], // INTEGRAL WITH INTERSECTION + 0x2A1A: [732,193,516,52,476], // INTEGRAL WITH UNION + 0x2A1B: [802,193,403,40,428], // INTEGRAL WITH OVERBAR + 0x2A1C: [732,268,411,52,440] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUpSm/Bold/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js new file mode 100644 index 0000000..2551f29 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js @@ -0,0 +1,54 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUpSm'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x222C: [690,189,587,52,605], // DOUBLE INTEGRAL + 0x222D: [690,189,817,52,835], // TRIPLE INTEGRAL + 0x222F: [690,189,682,52,642], // SURFACE INTEGRAL + 0x2230: [690,189,909,52,869], // VOLUME INTEGRAL + 0x2231: [690,189,480,52,447], // CLOCKWISE INTEGRAL + 0x2232: [690,189,480,52,448], // CLOCKWISE CONTOUR INTEGRAL + 0x2233: [690,189,480,52,470], // ANTICLOCKWISE CONTOUR INTEGRAL + 0x2A0B: [694,190,556,41,515], // SUMMATION WITH INTEGRAL + 0x2A0C: [694,190,1044,68,1081], // QUADRUPLE INTEGRAL OPERATOR + 0x2A0D: [694,190,420,68,391], // FINITE PART INTEGRAL + 0x2A0E: [694,190,420,68,391], // INTEGRAL WITH DOUBLE STROKE + 0x2A0F: [694,190,520,39,482], // INTEGRAL AVERAGE WITH SLASH + 0x2A10: [694,190,324,41,380], // CIRCULATION FUNCTION + 0x2A11: [694,190,480,52,447], // ANTICLOCKWISE INTEGRATION + 0x2A12: [694,190,450,68,410], // LINE INTEGRATION WITH RECTANGULAR PATH AROUND POLE + 0x2A13: [690,189,450,68,412], // LINE INTEGRATION WITH SEMICIRCULAR PATH AROUND POLE + 0x2A14: [690,189,550,68,512], // LINE INTEGRATION NOT INCLUDING THE POLE + 0x2A15: [690,189,450,50,410], // INTEGRAL AROUND A POINT OPERATOR + 0x2A16: [694,191,450,50,410], // QUATERNION INTEGRAL OPERATOR + 0x2A17: [694,190,611,12,585], // INTEGRAL WITH LEFTWARDS ARROW WITH HOOK + 0x2A18: [694,190,450,48,412], // INTEGRAL WITH TIMES SIGN + 0x2A19: [694,190,450,59,403], // INTEGRAL WITH INTERSECTION + 0x2A1A: [694,190,450,59,403], // INTEGRAL WITH UNION + 0x2A1B: [784,189,379,68,416], // INTEGRAL WITH OVERBAR + 0x2A1C: [690,283,357,52,400] // INTEGRAL WITH UNDERBAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUpSm/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js new file mode 100644 index 0000000..c7ee860 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUpSm'] = { + directory: 'IntegralsUpSm/Regular', + family: 'STIXIntegralsUpSm', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0x222B,0x2233,"All"], + [0x2A0B,0x2A1C,"All"] + ], + 0x222B: [690,189,357,52,375], // INTEGRAL + 0x222E: [690,189,452,52,412] // CONTOUR INTEGRAL +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUpSm"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUpSm/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js new file mode 100644 index 0000000..cffbd1f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0] // NO-BREAK SPACE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Bold/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js new file mode 100644 index 0000000..055e67c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold'] = { + directory: 'NonUnicode/Bold', + family: 'STIXNonUnicode', + weight: 'bold', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0xE000,0xF8FF,"PrivateUse"] + ] + +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode-bold"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js new file mode 100644 index 0000000..9ec17f6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js @@ -0,0 +1,140 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold'], + { + 0xE000: [610,25,1184,808,912], // stix-radical symbol vertical extender + 0xE001: [704,-75,1198,808,1224], // stix-radical symbol top corner piece + 0xE00E: [819,339,750,80,670], // stix-not greater, double equals + 0xE00F: [742,235,750,80,670], // stix-not greater-or-equal, slanted + 0xE010: [742,235,750,80,670], // stix-not less-or-equal, slanted + 0xE011: [819,339,750,80,670], // stix-not less, double equals + 0xE023: [742,235,750,68,683], // stix-not congruent, dot + 0xE025: [852,345,750,67,683], // stix-not approximately equal or equal to + 0xE028: [672,166,1000,38,961], // stix-not much less than + 0xE029: [672,166,1000,38,961], // stix-not much greater than + 0xE037: [672,166,750,67,682], // stix-reverse not equal + 0xE04D: [553,47,750,68,683], // stix-not, vert, equal or similar + 0xE050: [672,166,750,87,663], // stix-not, square subset + 0xE051: [672,166,750,87,663], // stix-not, square superset + 0xE052: [574,69,750,68,683], // stix-not bumpy equals + 0xE05B: [574,-16,750,68,683], // stix-not bumpy single equals + 0xE05C: [553,31,750,68,683], // stix-not equal or similar + 0xE05E: [762,-565,0,95,425], // stix-double macron + 0xE061: [-137,437,0,0,330], // stix-triple underbar + 0xE062: [-137,552,0,0,330], // stix-quadruple underbar + 0xE064: [837,-565,333,-16,349], // stix-tilde over bar over + 0xE065: [-137,409,0,-16,349], // stix-straight over wavy underline + 0xE066: [801,-565,0,91,430], // stix-double dot over bar over + 0xE067: [-137,409,0,-16,349], // stix-wavy over straight underline + 0xE06D: [835,113,750,82,668], // stix-not equal to or member + 0xE06E: [835,113,750,82,668], // stix-not equal to or contains + 0xE06F: [835,113,750,82,668], // stix-Not (vert) equals or member + 0xE070: [835,113,750,82,668], // stix-not (vert) equals or contains + 0xE07E: [738,230,750,80,670], // stix-not (vert) less-than slanted equal + 0xE07F: [742,234,750,80,670], // stix-not (vert) greater-than slanted equal + 0xE080: [819,337,750,80,670], // stix-not (vert) less-than or two-line equal + 0xE081: [820,342,750,91,681], // stix-not (vert) greater-than or two-line equal + 0xE082: [742,235,750,80,670], // stix-not (slash) equal (slant) or less-than + 0xE083: [742,234,750,80,670], // stix-not (slash) equal (slant) or greater-than + 0xE084: [738,230,750,80,670], // stix-not (vert) equals (slant) or less-than + 0xE085: [742,234,750,80,670], // stix-not (vert) equals (slant) or greater-than + 0xE0B0: [752,-531,0,100,417], // stix-left overangle (combining) + 0xE0B1: [-50,271,0,100,417], // stix-left underangle (combining) + 0xE0B2: [-50,271,0,99,416], // stix-right underangle (combining) + 0xE0B3: [691,203,556,14,487], // stix-small fj ligature + 0xE0B4: [555,-209,282,42,239], // stix-arrow hookleft + 0xE0B5: [555,-209,282,43,240], // stix-arrow hookright + 0xE0B6: [478,-56,0,15,142], // stix-maps-to relation tail + 0xE0D8: [688,13,400,57,343], // stix-arc-degrees (degree with dot below) + 0xE0D9: [663,0,314,54,260], // stix-arc-minutes (prime with dot below) + 0xE0DA: [663,0,425,54,371], // stix-arc-seconds (double prime with dot below) + 0xE0DD: [930,0,553,76,483], // stix-days (roman d with dot below) + 0xE0DE: [926,0,549,67,482], // stix-hours (roman h with dot below) + 0xE0DF: [765,0,773,67,706], // stix-minutes (roman m with dot below) + 0xE0E0: [920,0,552,42,510], // stix-period (roman p with dot below) + 0xE0E1: [765,0,378,55,323], // stix-seconds (roman s with dot below) + 0xE0E2: [754,0,481,63,435], // stix-years (roman y with dot below) + 0xE10B: [297,-209,315,0,315], // stix-stix-extender for horizontal solid (normal) arrow + 0xE10E: [405,-101,714,211,503], // stix-extender for vertical double arrow + 0xE10F: [399,-107,315,0,315], // stix-extender for horizontal double arrow + 0xE150: [175,302,735,-40,756], // stix-horizontal brace, down left piece + 0xE151: [175,302,735,-21,775], // stix-horizontal brace, down right piece + 0xE152: [477,0,735,-40,756], // stix-horizontal brace, upper left piece + 0xE153: [477,0,735,-21,775], // stix-horizontal brace, upper right piece + 0xE263: [422,10,523,26,496], // stix-old style digit 0 + 0xE267: [425,0,523,111,420], // stix-old style digit 1 + 0xE26B: [421,0,523,53,470], // stix-old style digit 2 + 0xE26F: [424,198,523,31,478], // stix-old style digit 3 + 0xE273: [420,198,523,42,496], // stix-old style digit 4 + 0xE277: [421,198,523,49,474], // stix-old style digit 5 + 0xE27B: [614,8,523,21,502], // stix-old style digit 6 + 0xE27F: [421,198,523,8,507], // stix-old style digit 7 + 0xE283: [606,12,523,31,493], // stix-old style digit 8 + 0xE287: [421,202,523,25,499], // stix-old style digit 9 + 0xE28D: [734,-484,0,92,498], // stix-double circumflex + 0xE28F: [175,0,325,-1,326], // stix-short horizontal extender at baseline + 0xE290: [175,0,633,-1,634], // stix-long horizontal extender at baseline + 0xE2FD: [775,235,722,9,689], // stix-MATHEMATICAL BOLD CAPITAL ALPHA SLASHED + 0xE2FF: [775,235,667,16,619], // stix-MATHEMATICAL BOLD CAPITAL BETA SLASHED + 0xE301: [775,207,620,16,593], // stix-MATHEMATICAL BOLD CAPITAL GAMMA SLASHED + 0xE303: [775,207,722,33,673], // stix-MATHEMATICAL BOLD CAPITAL DELTA SLASHED + 0xE305: [775,235,667,16,641], // stix-MATHEMATICAL BOLD CAPITAL EPSILON SLASHED + 0xE307: [775,235,667,28,634], // stix-MATHEMATICAL BOLD CAPITAL ZETA SLASHED + 0xE309: [775,235,778,21,759], // stix-MATHEMATICAL BOLD CAPITAL ETA SLASHED + 0xE30B: [775,207,778,35,743], // stix-MATHEMATICAL BOLD CAPITAL THETA SLASHED + 0xE30D: [775,235,389,-36,436], // stix-MATHEMATICAL BOLD CAPITAL IOTA SLASHED + 0xE30F: [775,235,778,30,769], // stix-MATHEMATICAL BOLD CAPITAL KAPPA SLASHED + 0xE311: [775,207,707,9,674], // stix-MATHEMATICAL BOLD CAPITAL LAMBDA SLASHED + 0xE313: [775,235,944,14,921], // stix-MATHEMATICAL BOLD CAPITAL MU SLASHED + 0xE315: [775,235,722,16,701], // stix-MATHEMATICAL BOLD CAPITAL NU SLASHED + 0xE317: [775,207,647,40,607], // stix-MATHEMATICAL BOLD CAPITAL XI SLASHED + 0xE319: [775,235,778,35,743], // stix-MATHEMATICAL BOLD CAPITAL OMICRON SLASHED + 0xE31B: [775,207,778,21,759], // stix-MATHEMATICAL BOLD CAPITAL PI SLASHED + 0xE31D: [775,235,611,16,600], // stix-MATHEMATICAL BOLD CAPITAL RHO SLASHED + 0xE31F: [775,207,671,28,641], // stix-MATHEMATICAL BOLD CAPITAL SIGMA SLASHED + 0xE321: [775,235,667,31,636], // stix-MATHEMATICAL BOLD CAPITAL TAU SLASHED + 0xE323: [775,207,723,14,700], // stix-MATHEMATICAL BOLD CAPITAL UPSILON SLASHED + 0xE325: [775,207,836,18,818], // stix-MATHEMATICAL BOLD CAPITAL PHI SLASHED + 0xE327: [775,235,722,16,699], // stix-MATHEMATICAL BOLD CAPITAL CHI SLASHED + 0xE329: [775,207,804,11,793], // stix-MATHEMATICAL BOLD CAPITAL PSI SLASHED + 0xE32B: [775,207,768,28,740], // stix-MATHEMATICAL BOLD CAPITAL OMEGA SLASHED + 0xE365: [775,235,669,32,665], // stix-capital stigma, Greek slashed + 0xE369: [775,235,667,-13,670], // stix-capital digamma, Greek slashed + 0xE36D: [793,235,757,-49,758], // stix-capital koppa, Greek slashed + 0xE371: [775,235,734,27,710], // stix-capital sampi, Greek slashed + 0xE37C: [775,235,667,16,641], // stix-capital E roman bold slashed + 0xE3B7: [681,11,525,40,482], // MATHEMATICAL MONOSPACE DIGIT ZERO + 0xE3B8: [681,0,525,90,450], // MATHEMATICAL MONOSPACE DIGIT ONE + 0xE3B9: [681,0,525,52,470], // MATHEMATICAL MONOSPACE DIGIT TWO + 0xE3BA: [681,11,525,43,479], // MATHEMATICAL MONOSPACE DIGIT THREE + 0xE3BB: [682,0,525,29,493], // MATHEMATICAL MONOSPACE DIGIT FOUR + 0xE3BC: [670,11,525,52,470], // MATHEMATICAL MONOSPACE DIGIT FIVE + 0xE3BD: [681,11,525,43,479], // MATHEMATICAL MONOSPACE DIGIT SIX + 0xE3BE: [686,11,525,43,479], // MATHEMATICAL MONOSPACE DIGIT SEVEN + 0xE3BF: [681,11,525,43,479], // MATHEMATICAL MONOSPACE DIGIT EIGHT + 0xE3C0: [681,11,525,43,479], // MATHEMATICAL MONOSPACE DIGIT NINE + 0xE3C3: [747,243,750,68,683], // stix-not (vert) almost equal or equal to + 0xE3C4: [747,243,750,68,683] // stix-not almost equal or equal to + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Bold/PrivateUse.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js new file mode 100644 index 0000000..a1329e2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold-italic'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0] // NO-BREAK SPACE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/BoldItalic/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js new file mode 100644 index 0000000..fa50309 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold-italic'] = { + directory: 'NonUnicode/BoldItalic', + family: 'STIXNonUnicode', + weight: 'bold', + style: 'italic', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0xE000,0xF8FF,"PrivateUse"] + ] + +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode-bold-italic"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js new file mode 100644 index 0000000..f8f97c1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js @@ -0,0 +1,215 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/PrivateUse.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold-italic'], + { + 0xE09C: [775,235,776,40,765], // stix-capital A italic double-slashed + 0xE09D: [775,235,759,44,779], // stix-capital E italic double-slashed + 0xE09E: [775,235,658,44,771], // stix-capital F italic double-slashed + 0xE0B3: [703,205,556,-188,517], // stix-small fj ligature + 0xE1F6: [688,13,500,89,578], // stix-Mathematical sans-serif bold italic digit 0 + 0xE1F7: [688,0,500,204,505], // stix-Mathematical sans-serif bold italic digit 1 + 0xE1F8: [688,0,500,20,581], // stix-Mathematical sans-serif bold italic digit 2 + 0xE1F9: [688,13,500,32,586], // stix-Mathematical sans-serif bold italic digit 3 + 0xE1FA: [688,0,500,55,583], // stix-Mathematical sans-serif bold italic digit 4 + 0xE1FB: [676,13,500,27,651], // stix-Mathematical sans-serif bold italic digit 5 + 0xE1FC: [688,13,500,80,638], // stix-Mathematical sans-serif bold italic digit 6 + 0xE1FD: [676,0,500,120,639], // stix-Mathematical sans-serif bold italic digit 7 + 0xE1FE: [688,13,500,63,594], // stix-Mathematical sans-serif bold italic digit 8 + 0xE1FF: [688,13,500,28,588], // stix-Mathematical sans-serif bold italic digit 9 + 0xE200: [669,0,733,7,667], // stix-mathematical bold oblique double-struck capital A + 0xE201: [669,0,729,18,714], // stix-mathematical bold oblique double-struck capital B + 0xE203: [669,0,680,18,703], // stix-mathematical bold oblique double-struck capital E + 0xE204: [669,0,474,18,703], // stix-mathematical bold oblique double-struck capital F + 0xE205: [685,14,718,35,708], // stix-mathematical bold oblique double-struck capital G + 0xE206: [669,0,382,22,411], // stix-mathematical bold oblique double-struck capital I + 0xE207: [669,14,603,19,644], // stix-mathematical bold oblique double-struck capital J + 0xE208: [669,0,766,18,766], // stix-mathematical bold oblique double-struck capital K + 0xE209: [669,0,613,18,568], // stix-mathematical bold oblique double-struck capital L + 0xE20A: [669,0,912,26,943], // stix-mathematical bold oblique double-struck capital M + 0xE20B: [685,14,749,35,734], // stix-mathematical bold oblique double-struck capital O + 0xE20C: [685,14,686,30,711], // stix-mathematical bold oblique double-struck capital S + 0xE20D: [669,0,445,30,653], // stix-mathematical bold oblique double-struck capital T + 0xE20E: [669,14,709,35,755], // stix-mathematical bold oblique double-struck capital U + 0xE20F: [669,0,504,42,705], // stix-mathematical bold oblique double-struck capital V + 0xE210: [669,0,891,81,991], // stix-mathematical bold oblique double-struck capital W + 0xE211: [669,0,759,7,832], // stix-mathematical bold oblique double-struck capital X + 0xE212: [669,0,462,10,714], // stix-mathematical bold oblique double-struck capital Y + 0xE213: [462,13,634,45,589], // stix-mathematical bold oblique double-struck small letter a + 0xE214: [699,13,661,34,619], // stix-mathematical bold oblique double-struck small letter b + 0xE215: [462,13,571,45,545], // stix-mathematical bold oblique double-struck small letter c + 0xE217: [462,13,575,45,540], // ?? + 0xE218: [699,0,438,45,618], // stix-mathematical bold oblique double-struck small letter f + 0xE219: [462,205,666,28,642], // stix-mathematical bold oblique double-struck small letter g + 0xE21A: [699,0,661,34,616], // stix-mathematical bold oblique double-struck small letter h + 0xE21D: [699,0,641,34,616], // stix-mathematical bold oblique double-struck small letter k + 0xE21E: [699,0,372,34,413], // stix-mathematical bold oblique double-struck small letter l + 0xE21F: [462,0,942,35,897], // stix-mathematical bold oblique double-struck small letter m + 0xE220: [462,0,661,34,616], // stix-mathematical bold oblique double-struck small letter n + 0xE221: [462,13,586,45,551], // stix-mathematical bold oblique double-struck small letter o + 0xE222: [462,205,680,3,645], // stix-mathematical bold oblique double-struck small letter p + 0xE223: [462,205,662,45,630], // stix-mathematical bold oblique double-struck small letter q + 0xE224: [462,0,403,33,538], // stix-mathematical bold oblique double-struck small letter r + 0xE225: [462,13,533,33,519], // stix-mathematical bold oblique double-struck small letter s + 0xE226: [676,14,403,22,422], // stix-mathematical bold oblique double-struck small letter t + 0xE227: [449,13,661,45,627], // stix-mathematical bold oblique double-struck small letter u + 0xE228: [449,0,477,32,534], // stix-mathematical bold oblique double-struck small letter v + 0xE229: [449,0,733,55,763], // stix-mathematical bold oblique double-struck small letter w + 0xE22A: [449,0,562,-12,589], // stix-mathematical bold oblique double-struck small letter x + 0xE22B: [449,205,584,-9,643], // stix-mathematical bold oblique double-struck small letter y + 0xE22C: [449,0,619,35,594], // stix-mathematical bold oblique double-struck small letter z + 0xE247: [711,47,871,38,834], // stix-mathematical bold calligraphic capital A + 0xE248: [703,10,755,33,740], // stix-mathematical bold calligraphic capital B + 0xE249: [704,12,667,36,669], // stix-mathematical bold calligraphic capital C + 0xE24A: [696,0,802,30,808], // stix-mathematical bold calligraphic capital D + 0xE24B: [704,8,609,41,626], // stix-mathematical bold calligraphic capital E + 0xE24C: [696,0,645,34,738], // stix-mathematical bold calligraphic capital F + 0xE24D: [704,144,615,43,615], // stix-mathematical bold calligraphic capital G + 0xE24E: [696,24,849,22,858], // stix-mathematical bold calligraphic capital H + 0xE24F: [696,0,621,36,623], // stix-mathematical bold calligraphic capital I + 0xE250: [695,116,645,36,811], // stix-mathematical bold calligraphic capital J + 0xE251: [703,14,856,38,820], // stix-mathematical bold calligraphic capital K + 0xE252: [704,8,726,38,688], // stix-mathematical bold calligraphic capital L + 0xE253: [705,45,1186,38,1146], // stix-mathematical bold calligraphic capital M + 0xE254: [835,39,997,36,1098], // stix-mathematical bold calligraphic capital N + 0xE255: [707,10,772,43,782], // stix-mathematical bold calligraphic capital O + 0xE256: [696,0,645,36,731], // stix-mathematical bold calligraphic capital Q + 0xE257: [704,145,778,43,737], // stix-mathematical bold calligraphic capital P + 0xE258: [697,13,869,36,831], // stix-mathematical bold calligraphic capital R + 0xE259: [705,7,667,36,699], // stix-mathematical bold calligraphic capital S + 0xE25A: [783,0,547,33,747], // stix-mathematical bold calligraphic capital T + 0xE25B: [700,14,787,33,936], // stix-mathematical bold calligraphic capital U + 0xE25C: [711,31,652,36,706], // stix-mathematical bold calligraphic capital V + 0xE25D: [711,34,956,36,1010], // stix-mathematical bold calligraphic capital W + 0xE25E: [710,14,720,36,781], // stix-mathematical bold calligraphic capital X + 0xE25F: [711,144,720,36,773], // stix-mathematical bold calligraphic capital Y + 0xE260: [702,98,778,36,744], // stix-mathematical bold calligraphic capital Z + 0xE264: [473,10,600,47,554], // stix-old style digit 0 + 0xE268: [473,0,600,95,450], // stix-old style digit 1 + 0xE26C: [473,0,600,54,531], // stix-old style digit 2 + 0xE270: [463,217,600,31,547], // stix-old style digit 3 + 0xE274: [450,217,600,30,564], // stix-old style digit 4 + 0xE278: [450,218,600,25,561], // stix-old style digit 5 + 0xE27C: [670,10,600,55,545], // stix-old style digit 6 + 0xE280: [450,217,600,24,582], // stix-old style digit 7 + 0xE284: [670,10,600,41,560], // stix-old style digit 8 + 0xE288: [463,217,600,49,539], // stix-old style digit 9 + 0xE295: [775,235,776,40,739], // stix-capital A bold italic slashed + 0xE297: [775,235,762,44,747], // stix-capital B bold italic slashed + 0xE299: [775,235,711,57,753], // stix-capital C bold italic slashed + 0xE29B: [775,235,870,44,840], // stix-capital D bold italic slashed + 0xE29D: [775,235,759,44,779], // stix-capital E bold italic slashed + 0xE29F: [775,235,658,44,771], // stix-capital F bold italic slashed + 0xE2A1: [775,235,789,57,787], // stix-capital G bold italic slashed + 0xE2A3: [775,235,915,44,940], // stix-capital H bold italic slashed + 0xE2A5: [775,235,502,46,525], // stix-capital I bold italic slashed + 0xE2A7: [775,235,648,68,688], // stix-capital J bold italic slashed + 0xE2A9: [775,207,814,44,838], // stix-capital K bold italic slashed + 0xE2AB: [775,235,764,44,718], // stix-capital L bold italic slashed + 0xE2AD: [775,235,1044,44,1069], // stix-capital M bold italic slashed + 0xE2AF: [775,235,857,44,882], // stix-capital N bold italic slashed + 0xE2B1: [775,235,802,57,777], // stix-capital O bold italic slashed + 0xE2B3: [775,207,626,19,790], // stix-capital P bold italic slashed + 0xE2B5: [775,245,834,57,777], // stix-capital Q bold italic slashed + 0xE2B7: [775,235,783,44,757], // stix-capital R bold italic slashed + 0xE2B9: [775,235,589,57,621], // stix-capital S bold italic slashed + 0xE2BB: [775,235,562,30,696], // stix-capital T bold italic slashed + 0xE2BD: [775,235,745,74,813], // stix-capital U bold italic slashed + 0xE2BF: [775,235,597,66,774], // stix-capital V bold italic slashed + 0xE2C1: [775,235,980,66,1131], // stix-capital W bold italic slashed + 0xE2C3: [775,235,803,34,819], // stix-capital X bold italic slashed + 0xE2C5: [775,235,569,25,706], // stix-capital Y bold italic slashed + 0xE2C7: [775,235,720,42,701], // stix-capital Z bold italic slashed + 0xE2C9: [775,235,630,46,595], // stix-lowercase a bold italic slashed + 0xE2CB: [775,235,585,57,564], // stix-lowercase b bold italic slashed + 0xE2CD: [775,235,511,33,506], // stix-lowercase c bold italic slashed + 0xE2CF: [775,235,646,31,638], // stix-lowercase d bold italic slashed + 0xE2D1: [775,235,512,44,516], // stix-lowercase e bold italic slashed + 0xE2D3: [775,235,654,-29,762], // stix-lowercase f bold italic slashed + 0xE2D5: [775,235,601,24,599], // stix-lowercase g bold italic slashed + 0xE2D7: [775,235,611,35,577], // stix-lowercase h bold italic slashed + 0xE2D9: [775,207,373,34,488], // stix-lowercase i bold italic slashed + 0xE2DB: [775,235,600,-29,763], // stix-lowercase j bold italic slashed + 0xE2DD: [775,235,622,35,660], // stix-lowercase k bold italic slashed + 0xE2DF: [775,207,381,30,484], // stix-lowercase l bold italic slashed + 0xE2E1: [775,235,873,35,838], // stix-lowercase m bold italic slashed + 0xE2E3: [775,235,611,35,581], // stix-lowercase n bold italic slashed + 0xE2E5: [775,235,571,46,548], // stix-lowercase o bold italic slashed + 0xE2E7: [775,235,636,-25,649], // stix-lowercase p bold italic slashed + 0xE2E9: [775,207,580,46,568], // stix-lowercase q bold italic slashed + 0xE2EB: [775,235,437,35,567], // stix-lowercase r bold italic slashed + 0xE2ED: [775,235,512,42,515], // stix-lowercase s bold italic slashed + 0xE2EF: [775,207,411,32,486], // stix-lowercase t bold italic slashed + 0xE2F1: [775,235,632,60,597], // stix-lowercase u bold italic slashed + 0xE2F3: [775,207,554,52,558], // stix-lowercase v bold italic slashed + 0xE2F5: [775,207,814,17,799], // stix-lowercase w bold italic slashed + 0xE2F7: [775,235,647,35,622], // stix-lowercase x bold italic slashed + 0xE2F9: [775,207,599,20,640], // stix-lowercase y bold italic slashed + 0xE2FB: [775,235,531,35,555], // stix-lowercase z bold italic slashed + 0xE32D: [775,207,671,46,675], // stix-MATHEMATICAL BOLD ITALIC SMALL ALPHA SLASHED + 0xE32F: [775,207,664,-65,706], // stix-MATHEMATICAL BOLD ITALIC SMALL BETA SLASHED + 0xE331: [775,207,588,-100,671], // stix-MATHEMATICAL BOLD ITALIC SMALL GAMMA SLASHED + 0xE333: [775,207,571,46,547], // stix-MATHEMATICAL BOLD ITALIC SMALL DELTA SLASHED + 0xE335: [775,207,508,44,515], // stix-MATHEMATICAL BOLD ITALIC SMALL EPSILON SLASHED + 0xE337: [775,207,505,-54,629], // stix-MATHEMATICAL BOLD ITALIC SMALL ZETA SLASHED + 0xE339: [775,207,579,20,583], // stix-MATHEMATICAL BOLD ITALIC SMALL ETA SLASHED + 0xE33B: [775,207,615,46,602], // stix-MATHEMATICAL BOLD ITALIC SMALL THETA SLASHED + 0xE33D: [775,207,355,29,483], // stix-MATHEMATICAL BOLD ITALIC SMALL IOTA SLASHED + 0xE33F: [775,207,594,35,656], // stix-MATHEMATICAL BOLD ITALIC SMALL KAPPA SLASHED + 0xE341: [775,207,598,18,642], // stix-MATHEMATICAL BOLD ITALIC SMALL LAMBDA SLASHED + 0xE343: [775,207,697,-34,737], // stix-MATHEMATICAL BOLD ITALIC SMALL MU SLASHED + 0xE345: [775,207,571,35,584], // stix-MATHEMATICAL BOLD ITALIC SMALL NU SLASHED + 0xE347: [775,207,504,-54,629], // stix-MATHEMATICAL BOLD ITALIC SMALL XI SLASHED + 0xE349: [775,235,500,32,506], // stix-MATHEMATICAL BOLD ITALIC SMALL OMICRON SLASHED + 0xE34B: [775,207,652,1,772], // stix-MATHEMATICAL BOLD ITALIC SMALL PI SLASHED + 0xE34D: [775,207,636,27,652], // stix-MATHEMATICAL BOLD ITALIC SMALL RHO SLASHED + 0xE34F: [775,207,504,23,514], // stix-MATHEMATICAL BOLD ITALIC SMALL FINAL SIGMA SLASHED + 0xE351: [775,207,595,46,641], // stix-MATHEMATICAL BOLD ITALIC SMALL SIGMA SLASHED + 0xE353: [775,207,474,20,521], // stix-MATHEMATICAL BOLD ITALIC SMALL TAU SLASHED + 0xE355: [775,207,582,20,584], // stix-small upsilon, Greek slashed + 0xE357: [775,207,726,1,772], // stix-MATHEMATICAL BOLD ITALIC SMALL PHI SLASHED + 0xE359: [775,207,622,-41,730], // stix-MATHEMATICAL BOLD ITALIC SMALL CHI SLASHED + 0xE35B: [775,207,720,37,808], // stix-MATHEMATICAL BOLD ITALIC SMALL PSI SLASHED + 0xE35D: [775,207,782,24,795], // stix-MATHEMATICAL BOLD ITALIC SMALL OMEGA SLASHED + 0xE35F: [775,207,608,20,681], // stix-MATHEMATICAL BOLD ITALIC THETA SYMBOL SLASHED + 0xE361: [775,207,727,0,771], // stix-MATHEMATICAL BOLD ITALIC PHI SYMBOL SLASHED + 0xE363: [775,207,925,6,978], // stix-MATHEMATICAL BOLD ITALIC PI SYMBOL SLASHED + 0xE367: [775,235,475,-35,509], // stix-small stigma, Greek slashed + 0xE36B: [775,235,525,-68,651], // stix-small digamma, Greek slashed + 0xE36F: [775,235,485,16,466], // stix-small koppa, Greek slashed + 0xE373: [775,235,530,12,731], // stix-small sampi, Greek slashed + 0xE375: [775,235,569,-50,592], // stix-MATHEMATICAL BOLD ITALIC KAPPA SYMBOL SLASHED + 0xE377: [775,207,571,46,547], // stix-MATHEMATICAL BOLD ITALIC RHO SYMBOL SLASHED + 0xE379: [775,207,601,46,579], // stix-MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL SLASHED + 0xE37B: [775,207,525,46,543], // stix-MATHEMATICAL BOLD ITALIC EPSILON SYMBOL SLASHED + 0xE37E: [775,235,792,-40,777], // stix-capital C script slashed + 0xE380: [707,14,670,10,662], // stix-small d italic with straight bar through it + 0xE382: [707,14,622,14,598], // stix-small k italic with straight bar through it + 0xE384: [628,14,411,18,390], // stix-small t italic with straight bar through it + 0xE386: [473,14,355,15,338], // stix-small Greek iota with straight bar through it + 0xE388: [666,0,493,25,508], // stix-small Greek lambda with straight bar through it + 0xE389: [666,0,480,16,472], // LATIN SMALL LETTER LAMBDA WITH STROKE + 0xE3C5: [462,207,514,47,475], // stix-mathematical bold italic small dotless j + 0xE3C6: [462,9,357,55,274] // stix-mathematical bold italic small dotless i + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/BoldItalic/PrivateUse.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js new file mode 100644 index 0000000..d3dbf9c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-italic'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0] // NO-BREAK SPACE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Italic/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js new file mode 100644 index 0000000..5997c9b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js @@ -0,0 +1,60 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-italic'] = { + directory: 'NonUnicode/Italic', + family: 'STIXNonUnicode', + style: 'italic', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0xE000,0xF8FF,"PrivateUse"] + ], + 0xE22D: [677,45,852,43,812], // stix-mathematical calligraphic capital A + 0xE22E: [670,3,724,35,709], // stix-mathematical calligraphic capital B + 0xE22F: [671,11,569,43,586], // stix-mathematical calligraphic capital C + 0xE230: [662,0,801,34,788], // stix-mathematical calligraphic capital D + 0xE231: [670,4,553,40,599], // stix-mathematical calligraphic capital E + 0xE232: [662,0,652,43,710], // stix-mathematical calligraphic capital F + 0xE233: [671,131,580,40,580], // stix-mathematical calligraphic capital G + 0xE234: [664,21,831,41,845], // stix-mathematical calligraphic capital H + 0xE235: [662,0,575,38,591], // stix-mathematical calligraphic capital I + 0xE236: [662,120,632,31,785], // stix-mathematical calligraphic capital J + 0xE237: [670,13,809,30,783], // stix-mathematical calligraphic capital K + 0xE238: [670,7,693,30,653], // stix-mathematical calligraphic capital L + 0xE239: [671,45,1166,40,1128], // stix-mathematical calligraphic capital M + 0xE23A: [795,37,957,40,1064], // stix-mathematical calligraphic capital N + 0xE23B: [669,10,737,38,729], // stix-mathematical calligraphic capital O + 0xE23C: [662,0,667,38,709], // stix-mathematical calligraphic capital P + 0xE23D: [671,131,744,43,704], // stix-mathematical calligraphic capital Q + 0xE23E: [662,3,854,38,816], // stix-mathematical calligraphic capital R + 0xE23F: [671,0,634,38,671], // stix-mathematical calligraphic capital S + 0xE240: [721,0,509,41,730], // stix-mathematical calligraphic capital T + 0xE241: [672,13,817,37,950], // stix-mathematical calligraphic capital U + 0xE242: [677,33,638,33,680], // stix-mathematical calligraphic capital V + 0xE243: [685,32,956,33,998], // stix-mathematical calligraphic capital W + 0xE244: [672,13,692,38,739], // stix-mathematical calligraphic capital X + 0xE245: [675,131,719,34,763], // stix-mathematical calligraphic capital Y + 0xE246: [664,94,752,38,714] // stix-mathematical calligraphic capital Z +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode-italic"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js new file mode 100644 index 0000000..278fe18 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js @@ -0,0 +1,242 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/PrivateUse.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-italic'], + { + 0xE09C: [756,218,753,37,787], // stix-capital A italic double-slashed + 0xE09D: [756,218,706,42,732], // stix-capital E italic double-slashed + 0xE09E: [756,218,624,42,724], // stix-capital F italic double-slashed + 0xE0B3: [681,207,500,-141,504], // stix-small fj ligature + 0xE154: [653,0,671,3,606], // stix-oblique open face capital letter A + 0xE155: [653,0,686,17,676], // stix-oblique open face capital letter B + 0xE156: [653,0,639,17,664], // stix-oblique open face capital letter E + 0xE157: [653,0,469,18,664], // stix-oblique open face capital letter F + 0xE158: [666,18,702,35,702], // stix-oblique open face capital letter G + 0xE159: [653,0,320,21,350], // stix-oblique open face capital letter I + 0xE15A: [653,18,562,16,595], // stix-oblique open face capital letter J + 0xE15B: [653,0,700,17,730], // stix-oblique open face capital letter K + 0xE15C: [653,0,608,18,524], // stix-oblique open face capital letter L + 0xE15D: [653,0,858,25,892], // stix-oblique open face capital letter M + 0xE15E: [666,18,723,35,713], // stix-oblique open face capital letter O + 0xE15F: [666,18,624,24,669], // stix-oblique open face capital letter S + 0xE160: [653,0,463,30,682], // stix-oblique open face capital letter T + 0xE161: [653,14,648,33,716], // stix-oblique open face capital letter U + 0xE162: [653,0,492,75,678], // stix-oblique open face capital letter V + 0xE163: [653,0,810,100,963], // stix-oblique open face capital letter W + 0xE164: [653,0,650,-24,770], // stix-oblique open face capital letter X + 0xE165: [653,0,458,42,658], // stix-oblique open face capital letter Y + 0xE166: [441,11,566,40,521], // stix-oblique open face small letter a + 0xE167: [683,11,598,27,558], // stix-oblique open face small letter b + 0xE168: [441,11,504,40,480], // stix-oblique open face small letter c + 0xE169: [683,0,331,28,519], // stix-oblique open face small letter f + 0xE16A: [441,220,599,9,572], // stix-oblique open face small letter g + 0xE16B: [683,0,588,27,543], // stix-oblique open face small letter h + 0xE16C: [683,0,545,25,530], // stix-oblique open face small letter k + 0xE16D: [683,0,306,27,356], // stix-oblique open face small letter l + 0xE16E: [441,0,857,27,812], // stix-oblique open face small letter m + 0xE16F: [441,0,588,27,543], // stix-oblique open face small letter n + 0xE170: [441,11,534,40,494], // stix-oblique open face small letter o + 0xE171: [441,218,628,5,588], // stix-oblique open face small letter p + 0xE172: [441,218,604,40,574], // stix-oblique open face small letter q + 0xE173: [442,0,332,27,467], // stix-oblique open face small letter r + 0xE174: [441,11,502,34,468], // stix-oblique open face small letter s + 0xE175: [633,10,323,20,328], // stix-oblique open face small letter t + 0xE176: [428,13,588,40,556], // stix-oblique open face small letter u + 0xE177: [428,0,395,45,462], // stix-oblique open face small letter v + 0xE178: [428,0,639,56,690], // stix-oblique open face small letter w + 0xE179: [428,0,557,14,554], // stix-oblique open face small letter x + 0xE17A: [428,218,471,5,538], // stix-oblique open face small letter y + 0xE17B: [428,0,540,21,530], // stix-oblique open face small letter z + 0xE1B4: [676,14,500,86,578], // stix-Mathematical sans-serif italic digit 0 + 0xE1B5: [677,0,500,223,469], // stix-Mathematical sans-serif italic digit 1 + 0xE1B6: [676,0,500,35,574], // stix-Mathematical sans-serif italic digit 2 + 0xE1B7: [676,14,500,44,544], // stix-Mathematical sans-serif italic digit 3 + 0xE1B8: [676,0,500,52,547], // stix-Mathematical sans-serif italic digit 4 + 0xE1B9: [676,14,500,49,626], // stix-Mathematical sans-serif italic digit 5 + 0xE1BA: [684,14,500,83,617], // stix-Mathematical sans-serif italic digit 6 + 0xE1BB: [662,8,500,146,616], // stix-Mathematical sans-serif italic digit 7 + 0xE1BC: [676,14,500,81,560], // stix-Mathematical sans-serif italic digit 8 + 0xE1BD: [676,21,500,51,579], // stix-Mathematical sans-serif italic digit 9 + 0xE1BE: [683,10,536,45,527], // stix-Mathematical sans-serif italic partial differential + 0xE1BF: [674,0,660,28,632], // stix-Mathematical sans-serif italic capital alpha + 0xE1C0: [662,0,662,60,627], // stix-Mathematical sans-serif italic capital beta + 0xE1C1: [662,0,562,60,665], // stix-Mathematical sans-serif italic capital gamma + 0xE1C2: [674,0,660,28,632], // stix-Mathematical sans-serif italic capital delta + 0xE1C3: [662,0,639,60,664], // stix-Mathematical sans-serif italic capital epsilon + 0xE1C4: [662,0,698,25,760], // stix-Mathematical sans-serif italic capital zeta + 0xE1C5: [662,0,700,60,735], // stix-Mathematical sans-serif italic capital eta + 0xE1C6: [676,14,780,75,755], // stix-Mathematical sans-serif italic capital theta + 0xE1C7: [662,0,433,50,503], // stix-Mathematical sans-serif italic capital iota + 0xE1C8: [662,0,631,60,715], // stix-Mathematical sans-serif italic capital kappa + 0xE1C9: [674,0,664,20,624], // stix-Mathematical sans-serif italic capital lambda + 0xE1CA: [662,0,890,60,918], // stix-Mathematical sans-serif italic capital mu + 0xE1CB: [662,14,724,60,752], // stix-Mathematical sans-serif italic capital nu + 0xE1CC: [662,0,722,47,754], // stix-Mathematical sans-serif italic capital xi + 0xE1CD: [676,14,780,75,755], // stix-Mathematical sans-serif italic capital omicron + 0xE1CE: [662,0,700,60,735], // stix-Mathematical sans-serif italic capital pi + 0xE1CF: [662,0,538,60,624], // stix-Mathematical sans-serif italic capital rho + 0xE1D0: [676,14,780,75,755], // stix-Mathematical sans-serif italic capital THETA symbol + 0xE1D1: [662,0,654,21,706], // stix-Mathematical sans-serif italic capital sigma + 0xE1D2: [662,0,585,72,659], // stix-Mathematical sans-serif italic capital tau + 0xE1D3: [676,0,593,83,725], // stix-Mathematical sans-serif italic capital upsilon + 0xE1D4: [662,0,736,52,736], // stix-Mathematical sans-serif italic capital phi + 0xE1D5: [662,0,722,20,795], // stix-Mathematical sans-serif italic capital chi + 0xE1D6: [681,0,712,105,805], // stix-Mathematical sans-serif italic capital psi + 0xE1D7: [676,0,795,39,795], // stix-Mathematical sans-serif italic capital omega + 0xE1D8: [463,10,586,47,616], // stix-Mathematical sans-serif italic small alpha + 0xE1D9: [683,215,535,-12,559], // stix-Mathematical sans-serif italic small beta + 0xE1DA: [463,216,503,84,527], // stix-Mathematical sans-serif italic small gamma + 0xE1DB: [683,10,497,30,537], // stix-Mathematical sans-serif italic small delta + 0xE1DC: [463,10,494,35,484], // stix-Mathematical sans-serif italic small epsilon + 0xE1DD: [683,213,429,32,454], // stix-Mathematical sans-serif italic small zeta + 0xE1DE: [463,215,493,38,486], // stix-Mathematical sans-serif italic small eta + 0xE1DF: [683,10,518,65,511], // stix-Mathematical sans-serif italic small theta + 0xE1E0: [464,10,296,56,268], // stix-Mathematical sans-serif italic small iota + 0xE1E1: [464,0,472,38,517], // stix-Mathematical sans-serif italic small kappa + 0xE1E2: [683,11,536,18,502], // stix-Mathematical sans-serif italic small lambda + 0xE1E3: [453,215,561,-9,536], // stix-Mathematical sans-serif italic small mu + 0xE1E4: [464,14,376,41,416], // stix-Mathematical sans-serif italic small nu + 0xE1E5: [683,215,434,43,464], // stix-Mathematical sans-serif italic small xi + 0xE1E6: [463,10,533,45,505], // stix-Mathematical sans-serif italic small omicron + 0xE1E7: [453,10,565,45,589], // stix-Mathematical sans-serif italic small pi + 0xE1E8: [462,216,534,-33,510], // stix-Mathematical sans-serif italic small rho + 0xE1E9: [463,212,436,52,500], // stix-Mathematical sans-serif italic small FINAL sigma + 0xE1EA: [453,10,607,45,625], // stix-Mathematical sans-serif italic small sigma + 0xE1EB: [453,10,468,42,486], // stix-Mathematical sans-serif italic small tau + 0xE1EC: [463,10,514,61,490], // stix-Mathematical sans-serif italic small upsilon + 0xE1ED: [464,216,665,55,641], // stix-Mathematical sans-serif italic small phi + 0xE1EE: [463,215,514,-72,552], // stix-Mathematical sans-serif italic small chi + 0xE1EF: [461,216,654,75,705], // stix-Mathematical sans-serif italic small psi + 0xE1F0: [454,10,630,50,636], // stix-Mathematical sans-serif italic small omega + 0xE1F1: [463,10,462,45,467], // stix-Mathematical sans-serif italic epsilon symbol + 0xE1F2: [683,12,534,45,525], // stix-Mathematical sans-serif italic theta symbol + 0xE1F3: [684,216,648,48,630], // stix-Mathematical sans-serif italic phi symbol + 0xE1F4: [463,216,536,38,518], // stix-Mathematical sans-serif italic rho symbol + 0xE1F5: [453,10,795,40,811], // stix-Mathematical sans-serif italic pi symbol + 0xE262: [460,11,570,56,514], // stix-old style digit 0 + 0xE266: [460,0,570,100,415], // stix-old style digit 1 + 0xE26A: [460,0,570,59,487], // stix-old style digit 2 + 0xE26E: [461,217,570,40,513], // stix-old style digit 3 + 0xE272: [450,217,570,17,542], // stix-old style digit 4 + 0xE276: [450,218,570,23,536], // stix-old style digit 5 + 0xE27A: [668,10,570,28,553], // stix-old style digit 6 + 0xE27E: [450,217,570,40,543], // stix-old style digit 7 + 0xE282: [668,10,570,50,519], // stix-old style digit 8 + 0xE286: [460,217,570,23,526], // stix-old style digit 9 + 0xE294: [756,218,753,37,754], // stix-capital A italic slashed + 0xE296: [756,218,698,42,686], // stix-capital B italic slashed + 0xE298: [756,218,678,52,716], // stix-capital C italic slashed + 0xE29A: [756,218,830,42,793], // stix-capital D italic slashed + 0xE29C: [756,218,706,42,724], // stix-capital E italic slashed + 0xE29E: [756,217,624,42,724], // stix-capital F italic slashed + 0xE2A0: [756,217,768,52,766], // stix-capital G italic slashed + 0xE2A2: [756,218,825,42,863], // stix-capital H italic slashed + 0xE2A4: [756,218,429,-7,467], // stix-capital I italic slashed + 0xE2A6: [756,218,530,60,568], // stix-capital J italic slashed + 0xE2A8: [756,218,766,42,804], // stix-capital K italic slashed + 0xE2AA: [756,218,696,42,654], // stix-capital L italic slashed + 0xE2AC: [756,218,969,42,1007], // stix-capital M italic slashed + 0xE2AE: [756,218,799,42,837], // stix-capital N italic slashed + 0xE2B0: [756,218,764,52,739], // stix-capital O italic slashed + 0xE2B2: [756,217,581,14,710], // stix-capital P italic slashed + 0xE2B4: [756,217,764,52,739], // stix-capital Q italic slashed + 0xE2B6: [756,218,699,42,682], // stix-capital R italic slashed + 0xE2B8: [756,218,557,52,576], // stix-capital S italic slashed + 0xE2BA: [756,218,532,19,647], // stix-capital T italic slashed + 0xE2BC: [756,218,706,67,771], // stix-capital U italic slashed + 0xE2BE: [756,218,605,56,730], // stix-capital V italic slashed + 0xE2C0: [756,218,831,62,956], // stix-capital W italic slashed + 0xE2C2: [756,218,737,27,755], // stix-capital X italic slashed + 0xE2C4: [756,218,492,1,647], // stix-capital Y italic slashed + 0xE2C6: [756,218,686,62,714], // stix-capital Z italic slashed + 0xE2C8: [756,240,565,42,533], // stix-lowercase a italic slashed + 0xE2CA: [756,240,530,47,530], // stix-lowercase b italic slashed + 0xE2CC: [756,240,477,33,501], // stix-lowercase c italic slashed + 0xE2CE: [756,240,586,14,581], // stix-lowercase d italic slashed + 0xE2D0: [756,240,490,8,475], // stix-lowercase e italic slashed + 0xE2D2: [756,240,582,-4,704], // stix-lowercase f italic slashed + 0xE2D4: [756,240,515,22,513], // stix-lowercase g italic slashed + 0xE2D6: [756,240,577,47,545], // stix-lowercase h italic slashed + 0xE2D8: [756,217,326,-9,454], // stix-lowercase i italic slashed + 0xE2DA: [755,240,550,-54,653], // stix-lowercase j italic slashed + 0xE2DC: [756,240,554,57,591], // stix-lowercase k italic slashed + 0xE2DE: [756,217,335,-14,449], // stix-lowercase l italic slashed + 0xE2E0: [756,240,823,32,791], // stix-lowercase m italic slashed + 0xE2E2: [756,240,565,32,545], // stix-lowercase n italic slashed + 0xE2E4: [756,240,533,42,519], // stix-lowercase o italic slashed + 0xE2E6: [756,217,581,-24,613], // stix-lowercase p italic slashed + 0xE2E8: [756,240,521,40,523], // stix-lowercase q italic slashed + 0xE2EA: [756,240,436,32,507], // stix-lowercase r italic slashed + 0xE2EC: [756,240,466,26,494], // stix-lowercase s italic slashed + 0xE2EE: [756,217,353,-22,441], // stix-lowercase t italic slashed + 0xE2F0: [756,240,537,21,505], // stix-lowercase u italic slashed + 0xE2F2: [756,218,506,72,545], // stix-lowercase v italic slashed + 0xE2F4: [756,217,775,72,793], // stix-lowercase w italic slashed + 0xE2F6: [756,240,566,32,584], // stix-lowercase x italic slashed + 0xE2F8: [756,218,530,32,575], // stix-lowercase y italic slashed + 0xE2FA: [756,240,499,40,507], // stix-lowercase z italic slashed + 0xE32C: [756,218,613,42,612], // stix-small alpha, Greek slashed + 0xE32E: [756,218,595,-47,644], // stix-small beta, Greek slashed + 0xE330: [756,218,514,-58,634], // stix-small gamma, Greek slashed + 0xE332: [756,218,536,40,522], // stix-small delta, Greek slashed + 0xE334: [756,218,478,29,491], // stix-small epsilon, Greek slashed + 0xE336: [756,218,440,11,482], // stix-small zeta, Greek slashed + 0xE338: [756,218,512,32,536], // stix-small eta, Greek slashed + 0xE33A: [756,218,529,20,519], // stix-small theta, Greek slashed + 0xE33C: [756,217,326,-10,453], // stix-small iota, Greek slashed + 0xE33E: [756,218,546,57,558], // stix-small kappa, Greek slashed + 0xE340: [756,218,557,52,619], // stix-small lambda, Greek slashed + 0xE342: [756,217,630,0,696], // stix-small mu, Greek slashed + 0xE344: [756,218,466,32,495], // stix-small nu, Greek slashed + 0xE346: [756,218,454,9,468], // stix-small xi, Greek slashed + 0xE348: [756,240,533,27,498], // stix-small omicron, Greek slashed + 0xE34A: [756,217,591,14,710], // stix-small pi, Greek slashed + 0xE34C: [756,218,584,32,591], // stix-small rho, Greek slashed + 0xE34E: [756,218,468,1,460], // stix-terminal sigma, Greek slashed + 0xE350: [756,218,534,42,560], // stix-small sigma, Greek slashed + 0xE352: [756,218,448,32,537], // stix-small tau, Greek slashed + 0xE354: [756,218,514,32,545], // stix-small upsilon, Greek slashed + 0xE356: [756,218,663,-2,690], // stix-small phi, Greek slashed + 0xE358: [756,218,632,4,700], // stix-small chi, Greek slashed + 0xE35A: [756,218,668,32,736], // stix-small psi, Greek slashed + 0xE35C: [756,217,733,42,758], // stix-small omega, Greek slashed + 0xE35E: [756,218,602,32,590], // stix-curly or open theta, Greek slashed + 0xE360: [756,218,666,42,778], // stix-curly or open small phi, Greek slashed + 0xE362: [756,217,889,32,897], // stix-rounded small pi (pomega), Greek slashed + 0xE366: [756,240,444,7,482], // stix-small stigma, Greek slashed + 0xE36A: [756,240,528,-57,648], // stix-small digamma, Greek slashed + 0xE36E: [756,240,457,31,445], // stix-small koppa, Greek slashed + 0xE372: [756,240,528,8,715], // stix-small sampi, Greek slashed + 0xE374: [756,240,533,-16,559], // stix-rounded small kappa, Greek slashed + 0xE376: [756,218,533,42,525], // stix-rounded small rho, Greek slashed + 0xE378: [756,218,533,35,506], // stix-partial sign, slashed + 0xE37A: [756,218,477,42,539], // stix-rounded small epsilon, Greek, slashed + 0xE37D: [756,218,710,-50,694], // stix-capital C script slashed + 0xE37F: [683,10,606,10,601], // stix-small d italic with straight bar through it + 0xE381: [683,10,554,39,540], // stix-small k italic with straight bar through it + 0xE383: [579,10,353,6,323], // stix-small t italic with straight bar through it + 0xE385: [460,10,326,15,278], // stix-small Greek iota with straight bar through it + 0xE387: [668,0,490,30,502], // stix-small Greek lambda with straight bar through it + 0xE389: [668,0,490,30,478] // LATIN SMALL LETTER LAMBDA WITH STROKE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Italic/PrivateUse.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js new file mode 100644 index 0000000..3145a23 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode'], + { + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0] // NO-BREAK SPACE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..1ff3121 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js @@ -0,0 +1,57 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'STIXNonUnicode', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0xE000,0xF8FF,"PrivateUse"] + ], + 0xE000: [610,25,1184,829,895], // stix-radical symbol vertical extender + 0xE001: [667,-41,1184,829,1211], // stix-radical symbol top corner piece + 0xE138: [634,-584,480,-10,490], // stix-horizontal extender for multiple character over accent arrows, harpoons, line + 0xE139: [-127,177,480,-10,490], // stix-horizontal extender for multiple character under accent arrows, harpoons, line + 0xE13B: [955,-512,897,-25,908], // stix-left end of extensible overbrace (CMEX10 x3A rotated 90deg) + 0xE13C: [955,-512,897,-11,922], // stix-right end of extensible overbrace (CMEX10 x38 rotated 90deg) + 0xE13D: [182,261,897,-25,908], // stix-left end of extensible underbrace (CMEX10 x3B rotated 90deg) + 0xE13E: [182,261,897,-11,922], // stix-right end of extensible underbrace (CMEX10 x39 rotated 90deg) + 0xE140: [1218,-820,1844,-10,1854], // stix-center of extensible overbrace (CMEX10 x3C rotated 90deg) + 0xE141: [-126,524,1844,-10,1854], // stix-center of extensible underbrace (CMEX10 x3D rotated 90deg) + 0xE14A: [955,-820,633,-1,634], // stix-extensible horizontal for over paren or square bracket (CMEX10 x42 rotated 90deg) + 0xE14B: [-126,261,633,-1,634], // stix-extensible horizontal for under paren or square bracket (CMEX10 x43 rotated 90deg) + 0xE261: [422,10,523,41,481], // stix-old style digit 0 + 0xE265: [421,0,523,127,405], // stix-old style digit 1 + 0xE269: [421,0,523,68,455], // stix-old style digit 2 + 0xE26D: [424,198,523,47,463], // stix-old style digit 3 + 0xE271: [420,198,523,58,480], // stix-old style digit 4 + 0xE275: [421,198,523,66,457], // stix-old style digit 5 + 0xE279: [612,8,523,37,486], // stix-old style digit 6 + 0xE27D: [421,198,523,25,490], // stix-old style digit 7 + 0xE281: [606,12,523,47,477], // stix-old style digit 8 + 0xE285: [421,200,523,41,483], // stix-old style digit 9 + 0xE28F: [135,0,325,-1,326], // stix-short horizontal extender at baseline + 0xE290: [135,0,633,-1,634] // stix-long horizontal extender at baseline +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js new file mode 100644 index 0000000..db7f811 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js @@ -0,0 +1,380 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/PrivateUse.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode'], + { + 0xE002: [1022,0,1192,30,1162], // stix-"shaw": large operator with three parallel vertical lines topped by a horizontal + 0xE003: [1450,0,1311,55,1256], // stix-"shaw": large operator with three parallel vertical lines topped by a horizontal + 0xE004: [450,-59,926,55,871], // stix-not right arrow-wavy + 0xE005: [530,-57,926,55,871], // stix-not right arrow-curved + 0xE00A: [538,-55,685,48,637], // stix-reverse most positive, line below + 0xE00B: [543,37,685,48,637], // stix-most positive, two lines below + 0xE00E: [846,340,685,60,626], // stix-not greater, double equals + 0xE00F: [730,229,685,56,621], // stix-not greater-or-equal, slanted + 0xE010: [730,229,685,56,621], // stix-not less-or-equal, slanted + 0xE011: [846,340,685,61,626], // stix-not less, double equals + 0xE016: [818,311,685,53,618], // stix-not subset, double equals + 0xE018: [818,311,685,67,632], // stix-not superset, double equals + 0xE01E: [607,110,685,48,638], // stix-not approximately identical to + 0xE023: [695,189,685,48,637], // stix-not congruent, dot + 0xE025: [724,236,685,48,637], // stix-not approximately equal or equal to + 0xE026: [662,156,685,47,612], // stix-not, vert, double nested less than + 0xE027: [662,156,685,73,638], // stix-not, vert, double nested greater than + 0xE028: [663,155,933,25,908], // stix-not much less than + 0xE029: [662,156,933,25,908], // stix-not much greater than + 0xE02A: [662,156,1240,43,1184], // stix-not triple less than + 0xE02B: [662,156,1240,56,1197], // stix-not triple greater than + 0xE02F: [662,156,685,23,662], // stix-not, vert, angle + 0xE035: [602,98,486,64,422], // stix-negated contains + 0xE037: [662,156,685,48,637], // stix-reverse not equal + 0xE038: [690,189,732,50,682], // stix-not parallel, slanted + 0xE039: [662,156,685,47,636], // stix-not equal, dot + 0xE03A: [811,156,471,40,525], // stix-not partial differential + 0xE03B: [736,156,685,60,625], // stix-negated set membership, dot above + 0xE03C: [662,156,685,60,625], // stix-negated set membership, two horizontal strokes + 0xE03D: [602,98,486,64,422], // stix-negated (slash) set membership + 0xE040: [415,-92,685,48,637], // stix-congruence sign (lazy S) + 0xE043: [818,311,685,60,625], // stix-two-line slanted equal to or less-than - with vertical stroke + 0xE044: [818,311,685,60,625], // stix-two-line slanted equal to or greater-than with vertical stroke + 0xE045: [818,311,685,60,625], // stix-two-line slanted equal to or less-than - with slash + 0xE046: [818,311,685,60,625], // stix-two-line slanted equal to or greater-than with slash + 0xE04B: [745,242,685,60,625], // stix-not precedes, single equals + 0xE04C: [845,341,685,60,625], // stix-not precedes, double equals + 0xE04D: [534,19,685,48,637], // stix-not, vert, equal or similar + 0xE04E: [845,341,685,60,625], // stix-not succeeds, double equals + 0xE04F: [745,242,685,60,625], // stix-not succeeds, single equals + 0xE050: [662,156,685,65,620], // stix-not, square subset + 0xE051: [662,156,685,65,620], // stix-not, square superset + 0xE052: [561,55,685,48,637], // stix-not bumpy equals + 0xE053: [450,0,632,26,604], // stix-Latin letter small-cap K, reversed + 0xE054: [516,10,688,37,679], // stix-Latin letter small a (one-story) with rhotic hook + 0xE055: [475,14,571,20,563], // stix-Latin letter small open e with rhotic hook + 0xE056: [459,11,632,10,624], // stix-Latin letter small open o with rhotic hook + 0xE057: [459,12,624,29,595], // stix-Latin letter small omega, inverted + 0xE059: [730,224,685,48,637], // stix-not precedes, similar + 0xE05A: [730,224,685,48,637], // stix-not succeeds, similar + 0xE05B: [561,-30,685,48,637], // stix-not bumpy single equals + 0xE05C: [534,19,685,48,637], // stix-not equal or similar + 0xE05D: [459,10,452,16,436], // stix-barred ess + 0xE05E: [698,-547,0,95,406], // stix-double macron + 0xE061: [-141,390,0,11,322], // stix-triple underbar + 0xE062: [-141,486,0,11,322], // stix-quadruple underbar + 0xE063: [734,-508,0,94,485], // stix-accent caret over dot + 0xE064: [777,-547,0,95,425], // stix-tilde over bar over + 0xE065: [-141,371,0,1,331], // stix-straight over wavy underline + 0xE066: [770,-547,0,101,412], // stix-double dot over bar over + 0xE067: [-141,371,0,1,331], // stix-wavy over straight underline + 0xE068: [683,287,524,9,487], // stix-hooked h + 0xE06B: [602,98,486,64,422], // stix-small not (vert) member + 0xE06C: [602,98,486,64,422], // stix-small not (vert) contains + 0xE06D: [785,157,685,60,625], // stix-not equal to or member + 0xE06E: [785,157,685,60,625], // stix-not equal to or contains + 0xE06F: [785,129,685,60,625], // stix-Not (vert) equals or member + 0xE070: [785,129,685,60,625], // stix-not (vert) equals or contains + 0xE075: [626,119,685,48,637], // stix-not (slash) similar minus similar + 0xE076: [626,119,685,48,637], // stix-not (vert) similar minus similar + 0xE077: [725,236,685,48,637], // stix-not (vert) double similar over two-line equals + 0xE07C: [758,252,685,48,637], // stix-not (slash) four-line equals (not strictly equivalent to) + 0xE07D: [758,252,685,48,637], // stix-not (vert) four-line equals + 0xE07E: [732,227,685,56,621], // stix-not (vert) less-than slanted equal + 0xE07F: [732,227,685,56,621], // stix-not (vert) greater-than slanted equal + 0xE080: [818,311,685,57,622], // stix-not (vert) less-than or two-line equal + 0xE081: [818,311,685,57,622], // stix-not (vert) greater-than or two-line equal + 0xE082: [730,229,685,56,621], // stix-not (slash) equal (slant) or less-than + 0xE083: [730,229,685,56,621], // stix-not (slash) equal (slant) or greater-than + 0xE084: [709,201,685,56,621], // stix-not (vert) equals (slant) or less-than + 0xE085: [709,201,685,56,621], // stix-not (vert) equals (slant) or greater-than + 0xE086: [818,311,685,56,621], // stix-not (slash) two-line equal or less-than + 0xE087: [818,311,685,55,621], // stix-not (slash) two-line equal or greater-than + 0xE088: [818,311,685,56,621], // stix-not (vert) two-line equals or less-than + 0xE089: [818,311,685,55,620], // stix-not (vert) two-line equals or greater-than + 0xE092: [719,296,685,62,627], // stix-not (vert) equals (contour) or precedes + 0xE093: [719,296,685,61,626], // stix-not (vert) equals (contour) or succeeds + 0xE094: [719,240,685,62,627], // stix-not (slash) equals (contour) or precedes + 0xE095: [719,240,685,61,626], // stix-not (slash) equals (contour) or succeeds + 0xE096: [818,311,685,55,620], // stix-not (vert) subset or two-line equals + 0xE097: [818,311,685,65,630], // stix-not (vert) superset or two-line equals + 0xE098: [690,189,685,23,662], // stix-triple vertical, slash cancellation + 0xE099: [567,183,612,25,587], // stix-narrow sloped nabla + 0xE09A: [719,213,708,18,690], // stix-parentheses around thin space + 0xE09B: [719,213,708,18,690], // stix-center dot in parentheses + 0xE0A2: [460,218,561,24,539], // stix-barred open gee + 0xE0A4: [470,233,378,10,358], // stix-Latin letter small r-fishhook, reversed, with descender stem + 0xE0A5: [669,-426,397,75,338], // stix-hooktop (phonetic symbol) + 0xE0A6: [216,144,444,38,429], // stix-curly tail (phonetic symbol) + 0xE0A7: [702,-506,376,30,346], // stix-modifier letter level-rise contour tone bar + 0xE0A8: [662,156,496,114,371], // stix-modifier letter high-rise tone bar + 0xE0A9: [497,-167,647,49,619], // stix-retracted (in-line diacritic) + 0xE0AA: [702,-506,376,30,346], // stix-modifier letter fall-level contour tone bar + 0xE0AB: [662,156,496,114,371], // stix-modifier letter low-rise tone bar + 0xE0AC: [702,-506,470,30,440], // stix-modifier letter fall-rise-fall contour tone bar + 0xE0AD: [662,156,638,35,513], // stix-modifier letter rise-fall tone bar + 0xE0AE: [662,0,423,55,345], // stix-modifier letter rise tone bar + 0xE0AF: [662,0,423,55,345], // stix-modifier letter fall tone bar + 0xE0B0: [735,-531,0,100,400], // stix-left overangle (combining) + 0xE0B1: [-50,254,0,0,300], // stix-left underangle (combining) + 0xE0B2: [-50,254,0,0,300], // stix-right underangle (combining) + 0xE0B3: [683,218,541,32,457], // stix-small fj ligature + 0xE0B4: [556,-220,313,55,258], // stix-arrow hookleft + 0xE0B5: [556,-220,313,55,258], // stix-arrow hookright + 0xE0B6: [449,-57,0,30,124], // stix-maps-to relation tail + 0xE0B7: [324,-183,281,70,211], // stix-bold center dot (very small filled square) + 0xE0B8: [943,11,1344,67,1302], // stix-square root of 2 + 0xE0B9: [943,11,1344,67,1302], // stix-square root of 3 + 0xE0BB: [622,101,685,48,637], // stix-equal sign above tilde operator, vertical negation + 0xE0BC: [547,41,685,47,635], // stix-times sign with dash through it + 0xE0BD: [662,218,710,15,660], // stix-lowercase italic f with horizontal bar touching its upper edge + 0xE0BE: [757,218,1102,15,1073], // stix-lowercase italic f with horizontal bar touching its upper edge and superscr u/c italic T + 0xE0BF: [836,236,636,50,586], // stix-2 lines falling over 1 line rising + 0xE0C0: [836,236,636,50,586], // stix-1 line falling over 2 lines rising + 0xE0C1: [836,236,636,50,586], // stix-2 lines rising over 1 line falling + 0xE0C2: [836,236,636,50,586], // stix-1 line rising over 2 lines falling + 0xE0C3: [386,-120,750,50,700], // stix-dashed line over line + 0xE0C4: [478,-28,750,50,700], // stix-dashed line over two lines + 0xE0C5: [478,-28,750,50,700], // stix-two lines over dashed line + 0xE0C6: [286,-220,750,50,700], // stix-single line, medium length + 0xE0C7: [402,-120,750,50,700], // stix-dotted (3 dots) line over line + 0xE0C8: [386,-120,1000,50,950], // stix-two long horizontal lines + 0xE0C9: [478,-28,1000,50,950], // stix-three long horizontal lines + 0xE0CA: [544,38,1000,50,950], // stix-four long horizontal lines + 0xE0CB: [386,-120,750,50,700], // stix-two medium horizontal lines + 0xE0CC: [478,-28,750,50,700], // stix-three medium horizontal lines + 0xE0CD: [544,38,750,50,700], // stix-four medium horizontal lines + 0xE0CE: [836,236,636,50,586], // stix-rising line, horizontal line, falling line + 0xE0CF: [836,236,636,50,586], // stix-falling line, horizontal line, rising line + 0xE0D0: [836,236,636,50,586], // stix-rising line, falling line + 0xE0D1: [836,236,636,50,586], // stix-falling line, rising line + 0xE0D2: [692,186,926,83,843], // stix-six carbon ring, corner down, double bonds lower left etc + 0xE0D3: [633,127,926,24,902], // stix-six carbon ring, edge down, double bonds bottom edge etc + 0xE0D4: [633,127,926,24,902], // stix-six carbon ring, edge down, double bonds top edge etc + 0xE0D5: [286,-220,1000,50,950], // stix-single long chemical bond + 0xE0D6: [386,-120,750,50,700], // stix chemical bond, line over dashed line + 0xE0D7: [583,79,762,50,712], // stix-donut + 0xE0D8: [584,0,400,57,343], // stix-arc-degrees (degree with dot below) + 0xE0D9: [665,0,255,56,199], // stix-arc-minutes (prime with dot below) + 0xE0DA: [665,0,388,56,332], // stix-arc-seconds (double prime with dot below) + 0xE0DB: [610,104,1472,86,1402], // stix-boxed communication link + 0xE0DC: [354,-152,1134,65,1069], // stix-communication link + 0xE0DD: [933,0,516,73,445], // stix-days (roman d with dot below) + 0xE0DE: [933,0,500,57,439], // stix-hours (roman h with dot below) + 0xE0DF: [754,0,778,92,699], // stix-minutes (roman m with dot below) + 0xE0E0: [920,0,500,40,444], // stix-period (roman p with dot below) + 0xE0E1: [757,0,389,81,318], // stix-seconds (roman s with dot below) + 0xE0E2: [754,0,500,60,429], // stix-years (roman y with dot below) + 0xE0E3: [638,134,842,35,807], // stix-eclipse + 0xE0E5: [690,189,523,72,450], // stix-dashed solidus + 0xE0E6: [690,189,523,72,450], // stix-dashed backslash + 0xE0E7: [811,127,772,35,737], // stix-narrow down-triangle + 0xE0E8: [532,26,1077,55,1022], // stix-precedes sign followed by plus sign + 0xE0E9: [547,41,685,48,636], // stix-outline plus sign + 0xE0EA: [661,158,910,45,865], // stix-diamond with lines from corners + 0xE0EB: [567,58,716,45,671], // stix-square with lines from corners + 0xE0EC: [862,-120,685,48,637], // stix-equal with exclamation over + 0xE0ED: [819,312,511,192,319], // stix-five vertical dots + 0xE0EE: [751,156,926,85,841], // stix-I-beam shape with bullet overprinted in middle + 0xE0EF: [547,41,686,49,637], // stix-plus with bullet overprinted in middle + 0xE0F1: [66,0,390,48,342], // stix-short horizontal line + 0xE0F2: [936,157,1059,38,1033], // stix-freaked smiley + 0xE0F3: [662,156,1059,196,862], // stix-neutral smiley + 0xE0F4: [694,168,773,55,718], // stix-light bulb + 0xE0F5: [672,146,926,55,872], // stix-gray-filled circle + 0xE0F6: [747,114,909,23,886], // stix-KernelIcon + 0xE0F7: [727,102,956,22,934], // stix-MathematicaIcon + 0xE0F8: [474,89,500,163,336], // stix-AliasDelimiter + 0xE0F9: [680,0,767,88,679], // stix-ErrorIndicator + 0xE0FA: [474,89,297,62,235], // stix-AliasIndicator + 0xE0FB: [680,0,1750,88,1662], // stix-ControlKey + 0xE0FC: [680,0,1625,88,1537], // stix-ReturnKey + 0xE0FD: [680,0,1625,88,1537], // stix-EscapeKey + 0xE0FE: [680,0,1625,88,1537], // stix-CommandKey + 0xE0FF: [680,0,1625,88,1537], // stix-TabKey + 0xE100: [680,0,2032,88,1944], // stix-SpaceKey + 0xE101: [680,0,1625,88,1537], // stix-DeleteKey + 0xE102: [680,0,1608,88,1520], // stix-AltKey + 0xE103: [680,0,2296,88,2208], // stix-OptionKey + 0xE104: [409,-253,100,-64,164], // stix-KeyBar + 0xE105: [680,0,2032,88,1944], // stix-EnterKey + 0xE106: [680,0,2032,88,1944], // stix-ShiftKey + 0xE107: [680,0,1625,88,1537], // stix-Mod1Key + 0xE108: [680,0,1625,88,1537], // stix-Mod2Key + 0xE109: [781,279,327,10,286], // stix-LeftModified + 0xE10A: [781,279,250,41,178], // stix-RightModified + 0xE10C: [384,-122,400,69,330], // stix-extender for se/nw solid (normal) arrow + 0xE10D: [384,-122,400,69,330], // stix-extender for sw/ne solid (normal) arrow + 0xE10E: [405,-101,652,193,459], // stix-extender for vertical double arrow + 0xE10F: [386,-120,315,0,315], // stix-extender for horizontal double arrow + 0xE110: [432,-28,652,124,528], // stix-extender for se/nw double arrow + 0xE111: [432,-28,652,124,528], // stix-extender for sw/ne double arrow + 0xE112: [662,156,926,55,872], // stix-northeast arrow with dashed stem + 0xE113: [662,156,926,55,872], // stix-southeast arrow with dashed stem + 0xE114: [662,156,926,54,871], // stix-northwest arrow with dashed stem + 0xE115: [662,156,926,54,871], // stix-southwest arrow with dashed stem + 0xE116: [214,-107,511,223,289], // stix-extender for vertical dashed arrow + 0xE117: [286,-220,229,61,168], // stix-extender for horizontal dashed arrow + 0xE118: [271,-134,277,70,207], // stix-extender for se/nw dashed arrow + 0xE119: [271,-134,277,70,207], // stix-extender for sw/ne dashed arrow + 0xE11A: [662,156,511,59,451], // stix-up arrow with dotted stem + 0xE11B: [662,156,511,59,451], // stix-down arrow with dotted stem + 0xE11C: [662,156,926,54,872], // stix-northeast arrow with dotted stem + 0xE11D: [662,156,926,54,872], // stix-southeast arrow with dotted stem + 0xE11E: [662,156,926,54,872], // stix-northwest arrow with dotted stem + 0xE11F: [662,156,926,54,872], // stix-southwest arrow with dotted stem + 0xE120: [411,-94,511,220,293], // stix-extender for vertical dotted arrow + 0xE121: [290,-217,311,-3,314], // stix-extender for horizontal dotted arrow + 0xE122: [382,-123,367,54,313], // stix-extender for se/nw dotted arrow + 0xE123: [383,-124,367,54,313], // stix-extender for sw/ne dotted arrow + 0xE124: [662,156,511,59,451], // stix-up arrow with dot-dash stem + 0xE125: [662,156,511,59,451], // stix-down arrow with dot-dash stem + 0xE126: [449,-57,926,54,872], // stix-left arrow with dot-dash stem + 0xE127: [449,-57,926,54,872], // stix-right arrow with dot-dash stem (E238) + 0xE128: [662,155,926,54,872], // stix-northeast arrow with dot-dash stem + 0xE129: [662,156,926,55,872], // stix-southeast arrow with dot-dash stem + 0xE12A: [662,156,926,54,871], // stix-northwest arrow with dot-dash stem + 0xE12B: [661,156,926,54,872], // stix-southwest arrow with dot-dash stem + 0xE12C: [404,-101,511,220,293], // stix-extender for dot-dash up arrow + 0xE12D: [403,-100,511,220,293], // stix-extender for dot-dash down arrow + 0xE12E: [290,-217,371,14,317], // stix-extender for dot-dash left arrow + 0xE12F: [290,-217,371,54,357], // stix-extender for dot-dash right arrow + 0xE130: [373,-134,379,70,309], // stix-extender for nw dot-dash arrow + 0xE131: [373,-134,379,70,309], // stix-extender for se dot-dash arrow + 0xE132: [373,-134,379,70,309], // stix-extender for ne dot-dash arrow + 0xE133: [373,-134,379,70,309], // stix-extender for sw dot-dash arrow + 0xE134: [486,-20,315,0,315], // stix-extender for triple horizontal arrow + 0xE135: [405,-101,926,230,696], // stix-extender for triple vertical arrow + 0xE136: [541,35,315,0,315], // stix-extender for quadruple horizontal arrow + 0xE137: [405,-101,1033,229,805], // stix-extender for quadruple vertical arrow + 0xE13A: [943,11,735,67,1302], // stix-radical with horizontal (for single character under the radical) + 0xE13F: [-126,261,325,-1,326], // stix-extensible horizontal for curly over and under braces (CMEX10 x3E rotated 90deg) + 0xE142: [955,-342,1820,-25,1830], // stix-left end of extensible overparen (CMEX10 x40 rotated 90deg) + 0xE143: [955,-342,1820,-10,1845], // stix-right end of extensible overparen (CMEX10 x30 rotated 90deg) + 0xE144: [352,261,1820,-25,1830], // stix-left end of extensible underparen (CMEX10 x41 rotated 90deg) + 0xE145: [352,261,1820,-10,1845], // stix-right end of extensible underparen (CMEX10 x31 rotated 90deg) + 0xE146: [955,-554,1820,-25,1830], // stix-left end of extensible over square bracket (CMEX10 x34 rotated 90deg) + 0xE147: [955,-554,1820,-10,1845], // stix-right end of extensible over square bracket (CMEX10 x32 rotated 90deg) + 0xE148: [140,261,1820,-25,1830], // stix-left end of extensible under square bracket (CMEX10 x35 rotated 90deg) + 0xE149: [140,261,1820,-10,1845], // stix-right end of extensible under square bracket (CMEX10 x33 rotated 90deg) + 0xE14C: [660,158,857,48,777], // stix-not left triangle, vertical bar + 0xE14D: [660,158,857,80,809], // stix-not vertical bar, right triangle + 0xE14E: [661,157,685,44,609], // stix-not double less-than sign + 0xE14F: [661,157,685,76,641], // stix-not double greater-than sign + 0xE150: [135,308,735,-25,746], // stix-horizontal brace, down left piece + 0xE151: [135,308,735,-11,760], // stix-horizontal brace, down right piece + 0xE152: [444,0,735,-25,746], // stix-horizontal brace, upper left piece + 0xE153: [444,0,735,-11,760], // stix-horizontal brace, upper right piece + 0xE17C: [683,10,499,28,471], // stix-Mathematical sans-serif partial differential + 0xE17D: [674,0,666,31,635], // stix-Mathematical sans-serif capital alpha + 0xE17E: [662,0,604,74,547], // stix-Mathematical sans-serif capital beta + 0xE17F: [662,0,535,74,523], // stix-Mathematical sans-serif capital gamma + 0xE180: [674,0,666,31,635], // stix-Mathematical sans-serif capital delta + 0xE181: [662,0,583,74,540], // stix-Mathematical sans-serif capital epsilon + 0xE182: [662,0,637,28,603], // stix-Mathematical sans-serif capital zeta + 0xE183: [662,0,658,74,584], // stix-Mathematical sans-serif capital eta + 0xE184: [676,14,714,30,684], // stix-Mathematical sans-serif capital theta + 0xE185: [662,0,401,45,356], // stix-Mathematical sans-serif capital iota + 0xE186: [662,0,634,74,630], // stix-Mathematical sans-serif capital kappa + 0xE187: [674,0,666,31,635], // stix-Mathematical sans-serif capital lambda + 0xE188: [662,0,843,75,768], // stix-Mathematical sans-serif capital mu + 0xE189: [662,14,675,74,601], // stix-Mathematical sans-serif capital nu + 0xE18A: [662,0,643,28,615], // stix-Mathematical sans-serif capital xi + 0xE18B: [676,14,714,30,684], // stix-Mathematical sans-serif capital omicron + 0xE18C: [662,0,658,74,584], // stix-Mathematical sans-serif capital pi + 0xE18D: [662,0,525,74,512], // stix-Mathematical sans-serif capital rho + 0xE18E: [676,14,714,30,684], // stix-Mathematical sans-serif capital THETA symbol + 0xE18F: [662,0,624,26,594], // stix-Mathematical sans-serif capital sigma + 0xE190: [662,0,608,15,593], // stix-Mathematical sans-serif capital tau + 0xE191: [676,0,690,24,666], // stix-Mathematical sans-serif capital upsilon + 0xE192: [662,0,716,23,693], // stix-Mathematical sans-serif capital phi + 0xE193: [662,0,700,31,669], // stix-Mathematical sans-serif capital chi + 0xE194: [681,0,724,12,712], // stix-Mathematical sans-serif capital psi + 0xE195: [676,0,744,29,715], // stix-Mathematical sans-serif capital omega + 0xE196: [463,10,537,28,532], // stix-Mathematical sans-serif small alpha + 0xE197: [683,215,498,41,471], // stix-Mathematical sans-serif small beta + 0xE198: [463,216,474,27,455], // stix-Mathematical sans-serif small gamma + 0xE199: [683,10,499,28,471], // stix-Mathematical sans-serif small delta + 0xE19A: [463,10,438,22,419], // stix-Mathematical sans-serif small epsilon + 0xE19B: [683,213,416,33,408], // stix-Mathematical sans-serif small zeta + 0xE19C: [463,215,494,41,443], // stix-Mathematical sans-serif small eta + 0xE19D: [683,10,446,21,425], // stix-Mathematical sans-serif small theta + 0xE19E: [464,10,270,57,269], // stix-Mathematical sans-serif small iota + 0xE19F: [464,0,472,82,472], // stix-Mathematical sans-serif small kappa + 0xE1A0: [683,11,489,8,478], // stix-Mathematical sans-serif small lambda + 0xE1A1: [453,215,487,44,482], // stix-Mathematical sans-serif small mu + 0xE1A2: [464,14,460,30,427], // stix-Mathematical sans-serif small nu + 0xE1A3: [683,215,418,33,410], // stix-Mathematical sans-serif small xi + 0xE1A4: [463,10,499,28,471], // stix-Mathematical sans-serif small omicron + 0xE1A5: [453,10,507,7,487], // stix-Mathematical sans-serif small pi + 0xE1A6: [462,216,498,48,470], // stix-Mathematical sans-serif small rho + 0xE1A7: [463,212,416,33,414], // stix-Mathematical sans-serif small FINAL sigma + 0xE1A8: [453,10,526,28,542], // stix-Mathematical sans-serif small sigma + 0xE1A9: [453,10,426,2,410], // stix-Mathematical sans-serif small tau + 0xE1AA: [463,10,503,41,463], // stix-Mathematical sans-serif small upsilon + 0xE1AB: [464,216,632,34,600], // stix-Mathematical sans-serif small phi + 0xE1AC: [463,215,399,-20,440], // stix-Mathematical sans-serif small chi + 0xE1AD: [461,216,654,12,642], // stix-Mathematical sans-serif small psi + 0xE1AE: [454,10,624,29,595], // stix-Mathematical sans-serif small omega + 0xE1AF: [463,10,456,23,432], // stix-Mathematical sans-serif epsilon symbol + 0xE1B0: [683,12,489,42,491], // stix-Mathematical sans-serif theta symbol + 0xE1B1: [684,216,622,28,594], // stix-Mathematical sans-serif phi symbol + 0xE1B2: [463,216,491,28,463], // stix-Mathematical sans-serif rho symbol + 0xE1B3: [453,10,762,7,739], // stix-Mathematical sans-serif pi symbol + 0xE28C: [474,-227,0,53,397], // stix-slash for Polish L + 0xE28D: [734,-484,0,94,460], // stix-double circumflex + 0xE28E: [622,101,685,48,637], // stix-equals sign above tilde operator, slash negation + 0xE291: [955,-820,325,-1,326], // stix-short horizontal extender, high + 0xE292: [662,0,1388,38,1350], // stix-two summation signs next to each other + 0xE293: [763,260,1797,58,1739], // stix-two summation signs next to each other + 0xE2FC: [756,218,722,15,707], // stix-capital Alpha, Greek slashed + 0xE2FE: [756,217,667,17,593], // stix-capital Beta, Greek slashed + 0xE300: [756,217,587,11,577], // stix-capital Gamma, Greek slashed + 0xE302: [756,218,722,48,675], // stix-capital Delta, Greek slashed + 0xE304: [756,217,611,12,597], // stix-capital Epsilon, Greek slashed + 0xE306: [756,217,612,10,598], // stix-capital Zeta, Greek slashed + 0xE308: [756,217,722,18,703], // stix-capital Eta, Greek slashed + 0xE30A: [756,218,722,34,688], // stix-capital Theta, Greek slashed + 0xE30C: [756,218,333,-24,438], // stix-capital Iota, Greek slashed + 0xE30E: [756,217,731,33,723], // stix-capital Kappa, Greek slashed + 0xE310: [756,218,702,15,687], // stix-capital Lambda, Greek slashed + 0xE312: [756,217,889,12,864], // stix-capital Mu, Greek slashed + 0xE314: [756,218,722,12,707], // stix-capital Nu, Greek slashed + 0xE316: [756,217,643,29,614], // stix-capital Xi, Greek slashed + 0xE318: [756,218,722,34,688], // stix-capital Omicron, Greek slashed + 0xE31A: [756,217,722,18,703], // stix-capital Pi, Greek slashed + 0xE31C: [756,218,557,16,565], // stix-capital Rho, Greek slashed + 0xE31E: [756,217,624,30,600], // stix-capital Sigma, Greek slashed + 0xE320: [756,218,611,17,593], // stix-capital Tau, Greek slashed + 0xE322: [756,218,722,29,703], // stix-capital Upsilon, Greek slashed + 0xE324: [756,217,763,35,728], // stix-capital Phi, Greek slashed + 0xE326: [756,217,722,10,704], // stix-capital Chi, Greek slashed + 0xE328: [756,217,743,22,724], // stix-capital Psi, Greek slashed + 0xE32A: [756,217,744,29,715], // stix-capital Omega, Greek slashed + 0xE364: [756,240,673,55,665], // stix-capital stigma, Greek slashed + 0xE368: [756,218,557,8,645], // stix-capital digamma, Greek slashed + 0xE36C: [773,218,645,-72,675], // stix-capital koppa, Greek slashed + 0xE370: [756,218,708,7,668], // stix-capital sampi, Greek slashed + 0xE3C2: [662,156,685,48,637], // ?? + 0xE3C3: [627,135,685,48,637], // stix-not (vert) almost equal or equal to + 0xE3C4: [627,135,685,48,637], // stix-not almost equal or equal to + 0xE3C7: [662,156,902,0,863], // ?? + 0xE3C8: [662,156,902,0,863] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Regular/PrivateUse.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js new file mode 100644 index 0000000..c8e5e01 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js @@ -0,0 +1,51 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeFiveSym'], + { + 0x2C6: [816,-572,2328,0,2328], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [816,-572,2328,0,2328], // CARON + 0x2DC: [780,-617,2328,0,2328], // SMALL TILDE + 0x2F7: [-117,280,2328,0,2328], // ?? + 0x305: [820,-770,0,-3000,0], // COMBINING OVERLINE + 0x30C: [816,-572,0,-2485,-157], // COMBINING CARON + 0x330: [-117,280,0,-2485,-157], // COMBINING TILDE BELOW + 0x332: [-127,177,0,-3000,0], // COMBINING LOW LINE + 0x338: [960,454,0,-561,-123], // COMBINING LONG SOLIDUS OVERLAY + 0x203E: [820,-770,3000,0,3000], // OVERLINE + 0x20D0: [749,-584,0,-3000,0], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,-3000,0], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,-3000,0], // COMBINING LEFT ARROW ABOVE + 0x20D7: [735,-482,0,-3000,0], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,-3000,0], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,-3000,0], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,-3000,0], // COMBINING LEFT ARROW BELOW + 0x20EF: [-26,279,0,-3000,0], // COMBINING RIGHT ARROW BELOW + 0x23B4: [766,-544,3237,90,3147], // TOP SQUARE BRACKET + 0x23B5: [139,83,3237,90,3147], // BOTTOM SQUARE BRACKET + 0x23DC: [80,189,3237,0,3237], // TOP PARENTHESIS (mathematical use) + 0x23DD: [842,-573,3237,0,3237], // BOTTOM PARENTHESIS (mathematical use) + 0x23E0: [66,212,3164,0,3164], // TOP TORTOISE SHELL BRACKET (mathematical use) + 0x23E1: [842,-564,3164,0,3164] // BOTTOM TORTOISE SHELL BRACKET (mathematical use) + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeFiveSym/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js new file mode 100644 index 0000000..a4e1b83 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js @@ -0,0 +1,43 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeFiveSym'] = { + directory: 'SizeFiveSym/Regular', + family: 'STIXSizeFiveSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x5F: [-127,177,3000,0,3000], // LOW LINE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [816,-572,0,-2485,-157], // COMBINING CIRCUMFLEX ACCENT + 0x303: [780,-617,0,-2485,-157], // COMBINING TILDE + 0x23DE: [181,90,3238,0,3238], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [844,-573,3238,0,3238] // BOTTOM CURLY BRACKET (mathematical use) +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXSizeFiveSym"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeFiveSym/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js new file mode 100644 index 0000000..75029f7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js @@ -0,0 +1,46 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeFourSym-bold'] = { + directory: 'SizeFourSym/Bold', + family: 'STIXSizeFourSym', + weight: 'bold', + 0x20: [0,0,250,0,0], // SPACE + 0x28: [2604,471,818,115,761], // LEFT PARENTHESIS + 0x29: [2604,471,818,57,703], // RIGHT PARENTHESIS + 0x2F: [2604,471,1321,3,1318], // SOLIDUS + 0x5B: [2604,471,699,314,691], // LEFT SQUARE BRACKET + 0x5C: [2604,471,1321,3,1318], // REVERSE SOLIDUS + 0x5D: [2604,471,699,8,385], // RIGHT SQUARE BRACKET + 0x7B: [2604,471,1119,197,944], // LEFT CURLY BRACKET + 0x7D: [2604,471,1119,175,922], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x221A: [1510,345,1184,101,915], // SQUARE ROOT + 0x2308: [2604,471,720,314,712], // LEFT CEILING + 0x2309: [2604,471,720,8,406], // RIGHT CEILING + 0x230A: [2604,471,720,314,712], // LEFT FLOOR + 0x230B: [2604,471,720,8,406], // RIGHT FLOOR + 0x27E8: [2604,471,908,120,841], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [2604,471,908,67,788] // MATHEMATICAL RIGHT ANGLE BRACKET +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXSizeFourSym-bold"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeFourSym/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js new file mode 100644 index 0000000..f44d3fc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js @@ -0,0 +1,63 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeFourSym'], + { + 0x2C6: [796,-573,1886,0,1886], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [796,-573,1886,0,1886], // CARON + 0x2DC: [771,-608,1886,0,1886], // SMALL TILDE + 0x2F7: [-117,280,1886,0,1886], // ?? + 0x305: [820,-770,0,-2500,0], // COMBINING OVERLINE + 0x30C: [796,-573,0,-2040,-154], // COMBINING CARON + 0x330: [-117,280,0,-2040,-154], // COMBINING TILDE BELOW + 0x332: [-127,177,0,-2500,0], // COMBINING LOW LINE + 0x338: [731,228,0,-490,-169], // COMBINING LONG SOLIDUS OVERLAY + 0x203E: [820,-770,2500,0,2500], // OVERLINE + 0x20D0: [749,-584,0,-2193,-13], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,-2193,-13], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,-2193,-13], // COMBINING LEFT ARROW ABOVE + 0x20D7: [735,-482,0,-2193,-13], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,-2193,-13], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,-2193,-13], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,-2193,-13], // COMBINING LEFT ARROW BELOW + 0x20EF: [-26,279,0,-2193,-13], // COMBINING RIGHT ARROW BELOW + 0x221B: [1795,345,1184,112,895], // CUBE ROOT + 0x221C: [1790,345,1184,112,895], // FOURTH ROOT + 0x23B4: [766,-544,2692,84,2608], // TOP SQUARE BRACKET + 0x23B5: [139,83,2692,84,2608], // BOTTOM SQUARE BRACKET + 0x23DC: [76,168,2328,0,2328], // TOP PARENTHESIS (mathematical use) + 0x23DD: [817,-573,2328,0,2328], // BOTTOM PARENTHESIS (mathematical use) + 0x23E0: [66,212,2738,0,2738], // TOP TORTOISE SHELL BRACKET (mathematical use) + 0x23E1: [842,-564,2738,0,2738], // BOTTOM TORTOISE SHELL BRACKET (mathematical use) + 0x2772: [2566,509,1031,320,959], // LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT + 0x2773: [2566,509,1031,72,711], // LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT + 0x27E6: [2566,509,778,295,708], // MATHEMATICAL LEFT WHITE SQUARE BRACKET + 0x27E7: [2566,509,778,70,483], // MATHEMATICAL RIGHT WHITE SQUARE BRACKET + 0x27EA: [2566,509,1273,126,1133], // MATHEMATICAL LEFT DOUBLE ANGLE BRACKET + 0x27EB: [2566,509,1273,140,1147], // MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET + 0x2983: [2566,509,1225,182,1052], // LEFT WHITE CURLY BRACKET + 0x2984: [2566,509,1225,173,1043], // RIGHT WHITE CURLY BRACKET + 0x2985: [2566,509,1175,195,1050], // LEFT WHITE PARENTHESIS + 0x2986: [2566,509,1175,194,1049] // RIGHT WHITE PARENTHESIS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeFourSym/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js new file mode 100644 index 0000000..bdfe357 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js @@ -0,0 +1,62 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeFourSym'] = { + directory: 'SizeFourSym/Regular', + family: 'STIXSizeFourSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x221A,0x221C,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"], + [0x2772,0x2773,"All"], + [0x27E6,0x27EB,"All"], + [0x2983,0x2986,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x28: [2566,509,808,124,732], // LEFT PARENTHESIS + 0x29: [2566,509,808,76,684], // RIGHT PARENTHESIS + 0x2F: [2566,509,1309,16,1293], // SOLIDUS + 0x5B: [2566,509,661,295,634], // LEFT SQUARE BRACKET + 0x5C: [2566,509,1309,16,1293], // REVERSE SOLIDUS + 0x5D: [2566,509,661,27,366], // RIGHT SQUARE BRACKET + 0x5F: [-127,177,2500,0,2500], // LOW LINE + 0x7B: [2566,509,1076,173,882], // LEFT CURLY BRACKET + 0x7D: [2566,509,1076,194,903], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [796,-573,0,-2040,-154], // COMBINING CIRCUMFLEX ACCENT + 0x303: [771,-608,0,-2040,-154], // COMBINING TILDE + 0x221A: [1510,345,1184,112,895], // SQUARE ROOT + 0x2308: [2566,509,682,295,655], // LEFT CEILING + 0x2309: [2566,509,682,27,387], // RIGHT CEILING + 0x230A: [2566,509,682,295,655], // LEFT FLOOR + 0x230B: [2566,509,682,27,387], // RIGHT FLOOR + 0x23DE: [175,90,2328,0,2328], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [837,-572,2328,0,2328], // BOTTOM CURLY BRACKET (mathematical use) + 0x27E8: [2566,509,908,113,796], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [2566,509,908,112,795] // MATHEMATICAL RIGHT ANGLE BRACKET +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXSizeFourSym"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeFourSym/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js new file mode 100644 index 0000000..f9d0a34 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeOneSym-bold'], + { + 0x2140: [1500,-22,1341,60,1281] // DOUBLE-STRUCK N-ARY SUMMATION + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeOneSym/Bold/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js new file mode 100644 index 0000000..ccab205 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js @@ -0,0 +1,52 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeOneSym-bold'] = { + directory: 'SizeOneSym/Bold', + family: 'STIXSizeOneSym', + weight: 'bold', + Ranges: [ + [0x2140,0x2140,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1104,126,468,158,439], // LEFT PARENTHESIS + 0x29: [1104,126,468,29,310], // RIGHT PARENTHESIS + 0x2F: [1104,126,579,14,564], // SOLIDUS + 0x5B: [1104,126,408,186,407], // LEFT SQUARE BRACKET + 0x5C: [1104,126,579,14,564], // REVERSE SOLIDUS + 0x5D: [1104,126,408,1,222], // RIGHT SQUARE BRACKET + 0x7B: [1104,126,595,115,503], // LEFT CURLY BRACKET + 0x7D: [1104,126,595,92,480], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x220F: [1500,-49,1355,35,1321], // N-ARY PRODUCT + 0x2210: [1500,-49,1355,34,1320], // N-ARY COPRODUCT + 0x2211: [1500,-49,1292,60,1215], // N-ARY SUMMATION + 0x221A: [1588,241,1061,109,1119], // SQUARE ROOT + 0x2308: [1104,126,476,186,470], // LEFT CEILING + 0x2309: [1104,126,476,6,292], // RIGHT CEILING + 0x230A: [1104,126,476,184,470], // LEFT FLOOR + 0x230B: [1104,126,476,6,290], // RIGHT FLOOR + 0x27E8: [1104,126,579,99,481], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1104,126,579,98,480] // MATHEMATICAL RIGHT ANGLE BRACKET +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXSizeOneSym-bold"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeOneSym/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js new file mode 100644 index 0000000..252a06e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js @@ -0,0 +1,77 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeOneSym'], + { + 0x2C6: [767,-554,560,0,560], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [767,-554,560,0,560], // CARON + 0x2DC: [750,-598,558,-2,558], // SMALL TILDE + 0x2F7: [-117,269,558,-2,558], // ?? + 0x305: [820,-770,0,-1000,0], // COMBINING OVERLINE + 0x30C: [767,-554,0,-720,-160], // COMBINING CARON + 0x330: [-117,269,0,-722,-162], // COMBINING TILDE BELOW + 0x332: [-127,177,0,-1000,0], // COMBINING LOW LINE + 0x338: [532,21,0,-720,-157], // COMBINING LONG SOLIDUS OVERLAY + 0x203E: [820,-770,1000,0,1000], // OVERLINE + 0x20D0: [749,-584,0,-892,-21], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,-893,-22], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,-893,-21], // COMBINING LEFT ARROW ABOVE + 0x20D7: [736,-482,0,-893,-21], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,-893,-22], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,-892,-21], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,-893,-21], // COMBINING LEFT ARROW BELOW + 0x20EF: [-25,279,0,-893,-21], // COMBINING RIGHT ARROW BELOW + 0x2140: [1500,-50,1259,55,1204], // DOUBLE-STRUCK N-ARY SUMMATION + 0x221B: [1552,295,1057,112,1089], // CUBE ROOT + 0x221C: [1552,295,1057,112,1089], // FOURTH ROOT + 0x2320: [1066,79,688,294,574], // TOP HALF INTEGRAL + 0x2321: [1086,59,688,115,394], // BOTTOM HALF INTEGRAL + 0x23B2: [1500,5,1482,92,1292], // SUMMATION TOP + 0x23B3: [1500,5,1482,92,1366], // SUMMATION BOTTOM + 0x23B4: [766,-544,1063,69,994], // TOP SQUARE BRACKET + 0x23B5: [139,83,1063,68,993], // BOTTOM SQUARE BRACKET + 0x23DC: [60,153,926,0,926], // TOP PARENTHESIS (mathematical use) + 0x23DD: [777,-564,926,0,926], // BOTTOM PARENTHESIS (mathematical use) + 0x23E0: [66,212,1460,0,1460], // TOP TORTOISE SHELL BRACKET (mathematical use) + 0x23E1: [842,-564,1460,0,1460], // BOTTOM TORTOISE SHELL BRACKET (mathematical use) + 0x2772: [1066,164,566,205,539], // LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT + 0x2773: [1066,164,566,27,361], // LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT + 0x27E6: [1066,164,515,180,486], // MATHEMATICAL LEFT WHITE SQUARE BRACKET + 0x27E7: [1066,164,515,29,335], // MATHEMATICAL RIGHT WHITE SQUARE BRACKET + 0x27EA: [1066,164,798,116,670], // MATHEMATICAL LEFT DOUBLE ANGLE BRACKET + 0x27EB: [1066,164,798,128,682], // MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET + 0x2983: [1066,164,712,114,587], // LEFT WHITE CURLY BRACKET + 0x2984: [1066,164,712,114,587], // RIGHT WHITE CURLY BRACKET + 0x2985: [1066,164,632,135,546], // LEFT WHITE PARENTHESIS + 0x2986: [1066,164,632,86,497], // RIGHT WHITE PARENTHESIS + 0x29F8: [1566,279,806,25,781], // BIG SOLIDUS + 0x29F9: [1566,279,806,25,781], // BIG REVERSE SOLIDUS + 0x2A03: [1500,-39,1265,118,1147], // N-ARY UNION OPERATOR WITH DOT + 0x2A07: [1500,-49,1530,60,1470], // TWO LOGICAL AND OPERATOR + 0x2A08: [1500,-49,1530,60,1470], // TWO LOGICAL OR OPERATOR + 0x2A09: [1500,-49,1482,60,1422], // N-ARY TIMES OPERATOR + 0x2A0A: [1500,-50,1292,90,1202], // MODULO TWO SUM + 0x2AFC: [867,363,690,133,557], // LARGE TRIPLE VERTICAL BAR OPERATOR + 0x2AFF: [867,363,410,100,310] // N-ARY WHITE VERTICAL BAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeOneSym/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js new file mode 100644 index 0000000..fbf51f5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js @@ -0,0 +1,105 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeOneSym'] = { + directory: 'SizeOneSym/Regular', + family: 'STIXSizeOneSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x2140,0x2140,"All"], + [0x221A,0x221C,"All"], + [0x2320,0x2321,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"], + [0x2772,0x2773,"All"], + [0x27E6,0x27EB,"All"], + [0x2983,0x2986,"All"], + [0x29F8,0x29F9,"All"], + [0x2A00,0x2A0A,"All"], + [0x2AFC,0x2AFF,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1066,164,468,139,382], // LEFT PARENTHESIS + 0x29: [1066,164,468,86,329], // RIGHT PARENTHESIS + 0x2F: [1066,164,579,25,552], // SOLIDUS + 0x5B: [1066,164,383,180,363], // LEFT SQUARE BRACKET + 0x5C: [1066,164,579,27,552], // REVERSE SOLIDUS + 0x5D: [1066,164,383,20,203], // RIGHT SQUARE BRACKET + 0x5F: [-127,177,1000,0,1000], // LOW LINE + 0x7B: [1066,164,575,114,466], // LEFT CURLY BRACKET + 0x7D: [1066,164,575,109,461], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [767,-554,0,-720,-160], // COMBINING CIRCUMFLEX ACCENT + 0x303: [750,-598,0,-722,-162], // COMBINING TILDE + 0x220F: [1500,-49,1355,50,1305], // N-ARY PRODUCT + 0x2210: [1500,-49,1355,50,1305], // N-ARY COPRODUCT + 0x2211: [1499,-49,1292,90,1202], // N-ARY SUMMATION + 0x221A: [1552,295,1057,112,1089], // SQUARE ROOT + 0x22C0: [1500,-49,1265,60,1205], // N-ARY LOGICAL AND + 0x22C1: [1500,-49,1265,60,1205], // N-ARY LOGICAL OR + 0x22C2: [1510,-49,1265,118,1147], // N-ARY INTERSECTION + 0x22C3: [1500,-39,1265,118,1147], // N-ARY UNION + 0x2308: [1066,164,453,180,426], // LEFT CEILING + 0x2309: [1066,164,453,25,273], // RIGHT CEILING + 0x230A: [1066,164,453,180,428], // LEFT FLOOR + 0x230B: [1066,164,453,27,273], // RIGHT FLOOR + 0x239B: [700,305,450,50,400], // LEFT PARENTHESIS UPPER HOOK + 0x239C: [705,305,450,50,174], // LEFT PARENTHESIS EXTENSION + 0x239D: [705,300,450,50,400], // LEFT PARENTHESIS LOWER HOOK + 0x239E: [700,305,450,50,400], // RIGHT PARENTHESIS UPPER HOOK + 0x239F: [705,305,450,276,400], // RIGHT PARENTHESIS EXTENSION + 0x23A0: [705,300,450,50,400], // RIGHT PARENTHESIS LOWER HOOK + 0x23A1: [682,323,450,50,415], // LEFT SQUARE BRACKET UPPER CORNER + 0x23A2: [687,323,450,50,150], // LEFT SQUARE BRACKET EXTENSION + 0x23A3: [687,318,450,50,415], // LEFT SQUARE BRACKET LOWER CORNER + 0x23A4: [682,323,450,35,400], // RIGHT SQUARE BRACKET UPPER CORNER + 0x23A5: [687,323,450,300,400], // RIGHT SQUARE BRACKET EXTENSION + 0x23A6: [687,318,450,35,400], // RIGHT SQUARE BRACKET LOWER CORNER + 0x23A7: [700,305,640,260,600], // LEFT CURLY BRACKET UPPER HOOK + 0x23A8: [705,305,640,40,380], // LEFT CURLY BRACKET MIDDLE PIECE + 0x23A9: [705,300,640,260,600], // LEFT CURLY BRACKET LOWER HOOK + 0x23AA: [705,305,640,260,380], // CURLY BRACKET EXTENSION + 0x23AB: [700,305,640,40,380], // RIGHT CURLY BRACKET UPPER HOOK + 0x23AC: [705,305,640,260,600], // RIGHT CURLY BRACKET MIDDLE PIECE + 0x23AD: [705,300,640,40,380], // RIGHT CURLY BRACKET LOWER HOOK + 0x23AE: [610,25,688,294,394], // INTEGRAL EXTENSION + 0x23B0: [700,301,600,35,566], // UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION + 0x23B1: [700,301,600,35,566], // UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION + 0x23B7: [1510,345,1184,112,895], // RADICAL SYMBOL BOTTOM + 0x23B8: [1566,289,721,0,66], // LEFT VERTICAL BOX LINE + 0x23B9: [1566,289,721,655,721], // RIGHT VERTICAL BOX LINE + 0x23DE: [136,89,926,0,925], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [789,-564,926,0,925], // BOTTOM CURLY BRACKET (mathematical use) + 0x27E8: [1066,164,578,116,462], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1066,164,578,116,462], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x2A00: [1500,-49,1555,52,1503], // N-ARY CIRCLED DOT OPERATOR + 0x2A01: [1500,-49,1555,52,1503], // N-ARY CIRCLED PLUS OPERATOR + 0x2A02: [1500,-49,1555,52,1503], // N-ARY CIRCLED TIMES OPERATOR + 0x2A04: [1500,-39,1265,118,1147], // N-ARY UNION OPERATOR WITH PLUS + 0x2A05: [1500,-49,1153,82,1071], // N-ARY SQUARE INTERSECTION OPERATOR + 0x2A06: [1500,-49,1153,82,1071] // N-ARY SQUARE UNION OPERATOR +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXSizeOneSym"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeOneSym/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js new file mode 100644 index 0000000..7064c36 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js @@ -0,0 +1,46 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeThreeSym-bold'] = { + directory: 'SizeThreeSym/Bold', + family: 'STIXSizeThreeSym', + weight: 'bold', + 0x20: [0,0,250,0,0], // SPACE + 0x28: [2104,355,750,163,686], // LEFT PARENTHESIS + 0x29: [2104,355,750,64,587], // RIGHT PARENTHESIS + 0x2F: [2104,355,1102,11,1091], // SOLIDUS + 0x5B: [2104,355,538,236,540], // LEFT SQUARE BRACKET + 0x5C: [2104,355,1102,11,1091], // REVERSE SOLIDUS + 0x5D: [2104,355,538,-2,302], // RIGHT SQUARE BRACKET + 0x7B: [2104,355,906,124,736], // LEFT CURLY BRACKET + 0x7D: [2104,355,906,170,782], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x221A: [2604,471,1076,104,1139], // SQUARE ROOT + 0x2308: [2104,355,595,236,599], // LEFT CEILING + 0x2309: [2104,355,595,-4,359], // RIGHT CEILING + 0x230A: [2104,355,595,236,599], // LEFT FLOOR + 0x230B: [2104,355,595,-4,359], // RIGHT FLOOR + 0x27E8: [2104,355,765,108,720], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [2104,355,765,45,657] // MATHEMATICAL RIGHT ANGLE BRACKET +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXSizeThreeSym-bold"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeThreeSym/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js new file mode 100644 index 0000000..d4334c3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js @@ -0,0 +1,63 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeThreeSym'], + { + 0x2C6: [777,-564,1460,0,1460], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [777,-564,1460,0,1460], // CARON + 0x2DC: [774,-608,1458,-2,1458], // SMALL TILDE + 0x2F7: [-117,283,1458,-2,1458], // ?? + 0x305: [820,-770,0,-2000,0], // COMBINING OVERLINE + 0x30C: [777,-564,0,-1610,-150], // COMBINING CARON + 0x330: [-117,283,0,-1612,-152], // COMBINING TILDE BELOW + 0x332: [-127,177,0,-2000,0], // COMBINING LOW LINE + 0x338: [662,156,0,-543,-132], // COMBINING LONG SOLIDUS OVERLAY + 0x203E: [820,-770,2000,0,2000], // OVERLINE + 0x20D0: [749,-584,0,-1773,-29], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,-1773,-29], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,-1773,-29], // COMBINING LEFT ARROW ABOVE + 0x20D7: [735,-482,0,-1773,-29], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,-1773,-29], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,-1773,-29], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,-1773,-29], // COMBINING LEFT ARROW BELOW + 0x20EF: [-26,279,0,-1773,-29], // COMBINING RIGHT ARROW BELOW + 0x221B: [2565,510,1076,112,1110], // CUBE ROOT + 0x221C: [2565,510,1076,112,1110], // FOURTH ROOT + 0x23B4: [766,-544,2147,78,2069], // TOP SQUARE BRACKET + 0x23B5: [139,83,2147,78,2069], // BOTTOM SQUARE BRACKET + 0x23DC: [70,161,1886,0,1886], // TOP PARENTHESIS (mathematical use) + 0x23DD: [803,-572,1886,0,1886], // BOTTOM PARENTHESIS (mathematical use) + 0x23E0: [66,212,2312,0,2312], // TOP TORTOISE SHELL BRACKET (mathematical use) + 0x23E1: [842,-564,2312,0,2312], // BOTTOM TORTOISE SHELL BRACKET (mathematical use) + 0x2772: [2066,393,842,265,790], // LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT + 0x2773: [2066,393,842,52,577], // LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT + 0x27E6: [2066,394,647,225,597], // MATHEMATICAL LEFT WHITE SQUARE BRACKET + 0x27E7: [2066,394,647,50,422], // MATHEMATICAL RIGHT WHITE SQUARE BRACKET + 0x27EA: [2067,394,1091,104,955], // MATHEMATICAL LEFT DOUBLE ANGLE BRACKET + 0x27EB: [2067,394,1091,136,987], // MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET + 0x2983: [2066,394,1031,143,867], // LEFT WHITE CURLY BRACKET + 0x2984: [2066,394,1031,164,888], // RIGHT WHITE CURLY BRACKET + 0x2985: [2066,393,1029,180,914], // LEFT WHITE PARENTHESIS + 0x2986: [2066,393,1029,115,849] // RIGHT WHITE PARENTHESIS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeThreeSym/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js new file mode 100644 index 0000000..abd5146 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js @@ -0,0 +1,62 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeThreeSym'] = { + directory: 'SizeThreeSym/Regular', + family: 'STIXSizeThreeSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x221A,0x221C,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"], + [0x2772,0x2773,"All"], + [0x27E6,0x27EB,"All"], + [0x2983,0x2986,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x28: [2066,394,750,182,667], // LEFT PARENTHESIS + 0x29: [2066,394,750,83,568], // RIGHT PARENTHESIS + 0x2F: [2066,394,1101,30,1071], // SOLIDUS + 0x5B: [2066,394,508,225,491], // LEFT SQUARE BRACKET + 0x5C: [2066,394,1101,30,1071], // REVERSE SOLIDUS + 0x5D: [2066,394,508,17,283], // RIGHT SQUARE BRACKET + 0x5F: [-127,177,2000,0,2000], // LOW LINE + 0x7B: [2066,394,906,143,717], // LEFT CURLY BRACKET + 0x7D: [2066,394,906,189,763], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [777,-564,0,-1610,-150], // COMBINING CIRCUMFLEX ACCENT + 0x303: [774,-608,0,-1612,-152], // COMBINING TILDE + 0x221A: [2565,510,1076,112,1110], // SQUARE ROOT + 0x2308: [2066,394,565,225,550], // LEFT CEILING + 0x2309: [2066,394,565,15,340], // RIGHT CEILING + 0x230A: [2066,394,565,225,550], // LEFT FLOOR + 0x230B: [2066,394,565,15,340], // RIGHT FLOOR + 0x23DE: [157,86,1886,0,1886], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [815,-572,1886,0,1886], // BOTTOM CURLY BRACKET (mathematical use) + 0x27E8: [2066,394,765,96,670], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [2066,394,765,95,669] // MATHEMATICAL RIGHT ANGLE BRACKET +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXSizeThreeSym"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeThreeSym/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js new file mode 100644 index 0000000..b582312 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js @@ -0,0 +1,46 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeTwoSym-bold'] = { + directory: 'SizeTwoSym/Bold', + family: 'STIXSizeTwoSym', + weight: 'bold', + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1604,241,608,110,512], // LEFT PARENTHESIS + 0x29: [1604,241,608,96,498], // RIGHT PARENTHESIS + 0x2F: [1604,241,802,4,798], // SOLIDUS + 0x5B: [1604,241,485,197,467], // LEFT SQUARE BRACKET + 0x5C: [1604,241,802,4,798], // REVERSE SOLIDUS + 0x5D: [1604,241,485,18,288], // RIGHT SQUARE BRACKET + 0x7B: [1604,241,681,69,514], // LEFT CURLY BRACKET + 0x7D: [1604,241,681,167,612], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x221A: [2095,355,1130,106,1185], // SQUARE ROOT + 0x2308: [1604,241,538,185,510], // LEFT CEILING + 0x2309: [1604,241,538,28,355], // RIGHT CEILING + 0x230A: [1604,241,538,185,512], // LEFT FLOOR + 0x230B: [1604,241,538,28,353], // RIGHT FLOOR + 0x27E8: [1604,241,622,98,572], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1604,241,622,50,524] // MATHEMATICAL RIGHT ANGLE BRACKET +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXSizeTwoSym-bold"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeTwoSym/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js new file mode 100644 index 0000000..3eedd98 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js @@ -0,0 +1,65 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeTwoSym'], + { + 0x2C6: [777,-564,979,0,979], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [777,-564,979,0,979], // CARON + 0x2DC: [760,-608,977,-2,977], // SMALL TILDE + 0x2F7: [-117,269,977,-2,977], // ?? + 0x305: [820,-770,0,-1500,0], // COMBINING OVERLINE + 0x30C: [777,-564,0,-1150,-171], // COMBINING CARON + 0x330: [-117,269,0,-1152,-173], // COMBINING TILDE BELOW + 0x332: [-127,177,0,-1500,0], // COMBINING LOW LINE + 0x338: [662,0,0,-720,-6], // COMBINING LONG SOLIDUS OVERLAY + 0x203E: [820,-770,1500,0,1500], // OVERLINE + 0x20D0: [749,-584,0,-1323,-15], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,-1323,-15], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,-1323,-15], // COMBINING LEFT ARROW ABOVE + 0x20D7: [735,-482,0,-1323,-15], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,-1323,-15], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,-1323,-15], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,-1323,-15], // COMBINING LEFT ARROW BELOW + 0x20EF: [-26,279,0,-1323,-15], // COMBINING RIGHT ARROW BELOW + 0x221B: [2056,404,1124,110,1157], // CUBE ROOT + 0x221C: [2056,404,1124,110,1157], // FOURTH ROOT + 0x23B4: [766,-544,1606,74,1532], // TOP SQUARE BRACKET + 0x23B5: [139,83,1606,74,1532], // BOTTOM SQUARE BRACKET + 0x23DC: [66,147,1460,0,1460], // TOP PARENTHESIS (mathematical use) + 0x23DD: [785,-572,1460,0,1460], // BOTTOM PARENTHESIS (mathematical use) + 0x23E0: [66,212,1886,0,1886], // TOP TORTOISE SHELL BRACKET (mathematical use) + 0x23E1: [842,-564,1886,0,1886], // BOTTOM TORTOISE SHELL BRACKET (mathematical use) + 0x2772: [1566,279,688,230,651], // LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT + 0x2773: [1566,279,688,37,458], // LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT + 0x27E6: [1566,279,555,190,517], // MATHEMATICAL LEFT WHITE SQUARE BRACKET + 0x27E7: [1566,279,555,38,365], // MATHEMATICAL RIGHT WHITE SQUARE BRACKET + 0x27EA: [1566,279,901,93,793], // MATHEMATICAL LEFT DOUBLE ANGLE BRACKET + 0x27EB: [1566,279,901,108,808], // MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET + 0x2983: [1566,279,827,122,692], // LEFT WHITE CURLY BRACKET + 0x2984: [1565,280,827,135,705], // RIGHT WHITE CURLY BRACKET + 0x2985: [1566,282,793,155,693], // LEFT WHITE PARENTHESIS + 0x2986: [1566,282,793,100,638], // RIGHT WHITE PARENTHESIS + 0x2AFC: [1586,289,906,133,773], // LARGE TRIPLE VERTICAL BAR OPERATOR + 0x2AFF: [1586,289,636,133,503] // N-ARY WHITE VERTICAL BAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeTwoSym/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js new file mode 100644 index 0000000..238cf26 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js @@ -0,0 +1,63 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeTwoSym'] = { + directory: 'SizeTwoSym/Regular', + family: 'STIXSizeTwoSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x221A,0x221C,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"], + [0x2772,0x2773,"All"], + [0x27E6,0x27EB,"All"], + [0x2983,0x2986,"All"], + [0x2AFC,0x2AFF,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1566,279,589,139,503], // LEFT PARENTHESIS + 0x29: [1566,279,608,114,478], // RIGHT PARENTHESIS + 0x2F: [1566,279,806,25,781], // SOLIDUS + 0x5B: [1566,279,459,190,422], // LEFT SQUARE BRACKET + 0x5C: [1566,279,806,25,781], // REVERSE SOLIDUS + 0x5D: [1566,279,459,37,269], // RIGHT SQUARE BRACKET + 0x5F: [-127,177,1500,0,1500], // LOW LINE + 0x7B: [1566,279,717,124,531], // LEFT CURLY BRACKET + 0x7D: [1566,279,717,186,593], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [777,-564,0,-1150,-171], // COMBINING CIRCUMFLEX ACCENT + 0x303: [760,-608,0,-1152,-173], // COMBINING TILDE + 0x221A: [2056,404,1124,110,1157], // SQUARE ROOT + 0x2308: [1566,279,524,190,479], // LEFT CEILING + 0x2309: [1566,279,526,47,336], // RIGHT CEILING + 0x230A: [1566,279,524,190,479], // LEFT FLOOR + 0x230B: [1566,279,526,47,336], // RIGHT FLOOR + 0x23DE: [143,81,1460,0,1460], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [797,-573,1460,0,1460], // BOTTOM CURLY BRACKET (mathematical use) + 0x27E8: [1566,279,622,95,531], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1566,279,622,91,527] // MATHEMATICAL RIGHT ANGLE BRACKET +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXSizeTwoSym"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeTwoSym/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js new file mode 100644 index 0000000..9d922bd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js @@ -0,0 +1,60 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXVariants-bold'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x7C: [691,189,340,126,214], // VERTICAL LINE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x19B: [666,0,536,60,526], // LATIN SMALL LETTER LAMBDA WITH STROKE + 0x2033: [586,-12,713,44,669], // DOUBLE PRIME + 0x2034: [586,-12,1032,44,988], // TRIPLE PRIME + 0x2035: [586,-12,394,44,350], // REVERSED PRIME + 0x2036: [586,-12,713,44,669], // REVERSED DOUBLE PRIME + 0x2037: [586,-12,1032,44,988], // REVERSED TRIPLE PRIME + 0x2057: [586,-12,1351,43,1306], // QUADRUPLE PRIME + 0x2140: [691,0,780,55,725], // DOUBLE-STRUCK N-ARY SUMMATION + 0x2190: [451,-55,428,68,428], // LEFTWARDS ARROW + 0x2191: [680,15,556,80,476], // UPWARDS ARROW + 0x2192: [451,-55,428,0,360], // RIGHTWARDS ARROW + 0x2193: [680,15,556,80,476], // DOWNWARDS ARROW + 0x21D1: [600,15,714,40,674], // UPWARDS DOUBLE ARROW + 0x21D3: [600,15,714,40,674], // DOWNWARDS DOUBLE ARROW + 0x220F: [676,0,734,27,707], // N-ARY PRODUCT + 0x2210: [676,0,734,27,707], // N-ARY COPRODUCT + 0x2211: [676,0,690,39,649], // N-ARY SUMMATION + 0x221D: [431,0,750,56,687], // PROPORTIONAL TO + 0x2223: [451,19,290,89,201], // DIVIDES + 0x2244: [543,45,750,68,683], // stix-not (vert) similar or equal + 0x2247: [648,144,750,68,683], // stix-not (vert) similar over two-line equals + 0x2249: [598,64,750,68,683], // stix-not, vert, approximate + 0x2260: [687,183,750,68,682], // stix-not (vert) equals + 0x2262: [747,243,750,68,682], // stix-not (vert) three-line equals + 0x2268: [728,293,750,80,670], // stix-less, vert, not double equals + 0x2269: [728,293,750,80,670], // stix-gt, vert, not double equals + 0x226E: [672,166,750,80,670], // stix-not, vert, less-than + 0x226F: [672,166,750,80,670], // stix-not, vert, greater-than + 0x2270: [742,236,750,80,670], // stix-not, vert, less-than-or-equal + 0x2271: [742,236,750,80,670] // stix-not, vert, greater-than-or-equal + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Variants/Bold/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js new file mode 100644 index 0000000..7d92717 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXVariants-bold'] = { + directory: 'Variants/Bold', + family: 'STIXVariants', + weight: 'bold', + Ranges: [ + [0x20,0x20,"All"], + [0x77,0x7C,"All"], + [0xA0,0xA0,"All"], + [0x19B,0x19B,"All"], + [0x2032,0x2057,"All"], + [0x2140,0x2140,"All"], + [0x2190,0x2193,"All"], + [0x21D1,0x21E2,"All"], + [0x2205,0x22ED,"All"] + ], + 0x2032: [586,-12,394,44,350], // PRIME + 0x2205: [729,74,584,36,548], // EMPTY SET + 0x2216: [732,193,518,45,473], // SET MINUS + 0x221A: [943,-28,800,112,844] // SQUARE ROOT +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXVariants-bold"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Variants/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js new file mode 100644 index 0000000..e9d9483 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js @@ -0,0 +1,120 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXVariants'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x77: [80,244,515,22,493], // LATIN SMALL LETTER W + 0x7C: [690,189,320,127,193], // VERTICAL LINE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x19B: [668,0,520,55,516], // LATIN SMALL LETTER LAMBDA WITH STROKE + 0x264: [450,10,460,18,441], // ?? + 0x2033: [565,-28,605,43,561], // DOUBLE PRIME + 0x2034: [565,-28,873,43,829], // TRIPLE PRIME + 0x2035: [565,-28,340,45,296], // REVERSED PRIME + 0x2036: [565,-28,605,44,561], // REVERSED DOUBLE PRIME + 0x2037: [565,-28,873,43,829], // REVERSED TRIPLE PRIME + 0x2057: [565,-28,1139,43,1096], // QUADRUPLE PRIME + 0x2140: [662,0,718,50,668], // DOUBLE-STRUCK N-ARY SUMMATION + 0x2190: [449,-57,415,55,415], // LEFTWARDS ARROW + 0x2191: [600,15,598,82,518], // UPWARDS ARROW + 0x2192: [449,-57,415,0,360], // RIGHTWARDS ARROW + 0x2193: [600,15,598,80,516], // DOWNWARDS ARROW + 0x21D1: [600,15,794,63,729], // UPWARDS DOUBLE ARROW + 0x21D3: [600,15,794,65,731], // DOWNWARDS DOUBLE ARROW + 0x21E0: [449,-58,463,70,393], // LEFTWARDS DASHED ARROW + 0x21E2: [449,-58,463,70,393], // RIGHTWARDS DASHED ARROW + 0x2208: [516,13,402,64,338], // ELEMENT OF + 0x2209: [662,156,685,60,625], // stix-negated (vert) set membership, variant + 0x220B: [516,13,402,64,338], // CONTAINS AS MEMBER + 0x220C: [662,156,685,60,625], // stix-negated (vert) contains + 0x220F: [662,0,694,30,664], // N-ARY PRODUCT + 0x2210: [662,0,694,30,664], // N-ARY COPRODUCT + 0x2211: [662,0,694,38,656], // N-ARY SUMMATION + 0x221B: [946,-55,737,72,767], // CUBE ROOT + 0x221C: [943,-55,737,72,767], // FOURTH ROOT + 0x221D: [428,0,685,41,646], // PROPORTIONAL TO + 0x2223: [451,19,266,100,166], // DIVIDES + 0x2224: [451,19,404,23,381], // DOES NOT DIVIDE + 0x2225: [451,11,446,90,356], // PARALLEL TO + 0x2226: [451,19,609,23,586], // NOT PARALLEL TO + 0x2229: [602,31,620,10,610], // stix-intersection, serifs + 0x222A: [602,31,620,10,610], // stix-union, serifs + 0x223C: [362,-148,685,48,637], // TILDE OPERATOR + 0x223E: [344,-130,1086,55,1031], // stix-most positive + 0x223F: [461,-43,520,0,586], // stix-reverse sine wave + 0x2241: [462,-48,685,48,637], // stix-not, vert, similar + 0x2244: [529,35,685,48,637], // stix-not (vert) similar or equal + 0x2247: [606,117,685,48,637], // stix-not (vert) similar over two-line equals + 0x2248: [475,-25,685,48,637], // ALMOST EQUAL TO + 0x2249: [549,49,685,48,637], // stix-not, vert, approximate + 0x224C: [586,82,685,48,637], // stix-all equal to (lazy S over equals) (formerly 224C; that shape changed) + 0x2260: [662,156,685,48,637], // stix-not (vert) equals + 0x2262: [662,156,685,48,637], // stix-not (vert) three-line equals + 0x2268: [718,275,685,56,621], // stix-less, vert, not double equals + 0x2269: [718,275,685,56,621], // stix-gt, vert, not double equals + 0x226D: [572,66,685,48,637], // stix-not (vert) asymptotically equal to + 0x226E: [662,156,685,47,612], // stix-not, vert, less-than + 0x226F: [662,156,685,73,638], // stix-not, vert, greater-than + 0x2270: [695,189,685,56,621], // stix-not, vert, less-than-or-equal + 0x2271: [695,189,685,64,629], // stix-not, vert, greater-than-or-equal + 0x2272: [673,103,685,10,632], // stix-less-than or (contour) similar + 0x2273: [673,144,685,58,624], // stix-greater-than or (contour) similar + 0x2274: [730,227,685,48,637], // stix-not, vert, less, similar + 0x2275: [730,227,685,48,650], // stix-not, vert, greater, similar + 0x2278: [818,311,685,56,621], // stix-not, vert, less, greater + 0x2279: [818,311,685,55,620], // stix-not, vert, greater, less + 0x2280: [662,156,685,64,621], // DOES NOT PRECEDE + 0x2281: [662,156,685,64,621], // stix-not (vert) succeeds + 0x2284: [662,156,685,55,620], // stix-not subset [vertical negation] + 0x2285: [662,156,685,65,630], // stix-not superset [vertical negation] + 0x2288: [707,203,695,65,630], // stix-/nsubseteq N: not (vert) subset, equals + 0x2289: [707,203,695,65,630], // stix-/nsupseteq N: not (vert) superset, equals + 0x228A: [607,229,685,51,616], // stix-subset, not equals, variant + 0x228B: [607,229,685,69,634], // stix-superset, not equals, variant + 0x2293: [536,31,620,10,610], // stix-square intersection, serifs + 0x2294: [536,31,620,10,610], // stix-square union, serifs + 0x2295: [623,119,842,50,792], // stix-circled plus (with rim) + 0x2297: [623,119,842,50,792], // stix-circled times (with rim) + 0x229C: [623,119,842,50,792], // stix-two horizontal bars in circle + 0x22DA: [768,262,685,60,625], // stix-less, equal, slanted, greater + 0x22DB: [768,262,685,60,625], // stix-greater, equal, slanted, less + 0x22E0: [803,212,685,60,625], // stix-not (vert) precedes or contour equals + 0x22E1: [803,212,685,60,625], // stix-not (vert) succeeds or contour equals + 0x22EC: [695,189,685,54,611], // stix-not, vert, left triangle, equals + 0x22ED: [695,189,685,74,631], // stix-not, vert, right triangle, equals + 0x2322: [386,-120,685,48,637], // stix-small down curve + 0x2323: [386,-120,685,48,637], // stix-small up curve + 0x2423: [22,119,500,48,453], // stix-round space indicator + 0x25A9: [662,158,910,45,865], // SQUARE WITH DIAGONAL CROSSHATCH FILL + 0x2A3C: [633,129,463,51,411], // stix-vert, low bar to left from base + 0x2A3D: [633,129,463,51,411], // stix-vert, low bar to right from base + 0x2A9D: [647,166,685,49,627], // stix-similar (conforming) or less-than + 0x2A9E: [615,166,685,54,676], // SIMILAR OR GREATER-THAN + 0x2AAC: [625,137,685,60,625], // stix-smaller than or equal, slanted + 0x2AAD: [625,137,685,60,625], // stix-larger than or equal, slanted + 0x2ACB: [718,321,685,64,629], // stix-subset not double equals, variant + 0x2ACC: [718,321,685,74,639], // SUPERSET OF ABOVE NOT EQUAL TO + 0x2AEE: [451,19,404,23,381] // stix-short mid negated by backslash + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Variants/Regular/All.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js new file mode 100644 index 0000000..5eb2b83 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js @@ -0,0 +1,49 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXVariants'] = { + directory: 'Variants/Regular', + family: 'STIXVariants', + Ranges: [ + [0x20,0x20,"All"], + [0x77,0x7C,"All"], + [0xA0,0xA0,"All"], + [0x19B,0x19B,"All"], + [0x264,0x264,"All"], + [0x2032,0x2057,"All"], + [0x2140,0x2140,"All"], + [0x2190,0x2193,"All"], + [0x21D1,0x21E2,"All"], + [0x2205,0x22ED,"All"], + [0x2322,0x2323,"All"], + [0x2423,0x2423,"All"], + [0x25A9,0x25A9,"All"], + [0x2A3C,0x2AEE,"All"] + ], + 0x2032: [565,-28,340,44,295], // PRIME + 0x210F: [683,10,579,47,547], // stix-/hbar - Planck's over 2pi + 0x2205: [729,74,523,28,502], // EMPTY SET + 0x2216: [710,222,523,46,478], // SET MINUS + 0x221A: [943,11,737,67,767] // SQUARE ROOT +}; + +MathJax.OutputJax["HTML-CSS"].initFont("STIXVariants"); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Variants/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js new file mode 100644 index 0000000..41ad48d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js @@ -0,0 +1,213 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/font/STIX/fontdata-1.0.js + * + * Patches the STIX font data to work with version 1.0 of + * the STIX fonts (this is a delta from the v1.1 fonts). + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2012-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,HUB) { + + var UPDATE = function (file,add,remove) { + var name = "STIX"+file.replace(/\/[^\/]*$/,'').replace(/\//,'-').replace(/-Regular/,''); + name = name.replace(/-B/,'-b').replace(/-I/,'-i').replace(/-boldItalic/,'-bold-italic'); + HUB.Register.LoadHook(HTMLCSS.fontDir+"/"+file+".js",function () { + var FONT = HTMLCSS.FONTDATA.FONTS[name]; + for (var id in add) {if (add.hasOwnProperty(id)) {FONT[id] = add[id]}} + if (remove) {for (var i = 0, m = remove.length; i < m; i++) {delete FONT[remove[i]]}} + }); + }; + + HTMLCSS.FONTDATA.STIXversion = "1.0"; + + delete HTMLCSS.FONTDATA.FONTS["STIXGeneral-bold"].Ranges["LatinExtendedD"]; + delete HTMLCSS.FONTDATA.FONTS["STIXGeneral-bold"].Ranges["BBBold"]; + + HTMLCSS.FONTDATA.DELIMITERS[0x23DE].HW[0] = [.556,"STIXGeneral"]; + HTMLCSS.FONTDATA.DELIMITERS[0x23DE].HW[1] = [.926,"STIXSizeOneSym"]; + HTMLCSS.FONTDATA.DELIMITERS[0x23DF].HW[0] = [.556,"STIXGeneral"]; + HTMLCSS.FONTDATA.DELIMITERS[0x23DF].HW[1] = [.926,"STIXSizeOneSym"]; + + HUB.Register.LoadHook(HTMLCSS.fontDir+"/fontdata-extra.js",function () { + HTMLCSS.FONTDATA.DELIMITERS[0x23DC].HW[0] = [.556,"STIXGeneral"]; + HTMLCSS.FONTDATA.DELIMITERS[0x23DC].HW[1] = [.926,"STIXSizeOneSym"]; + HTMLCSS.FONTDATA.DELIMITERS[0x23DD].HW[0] = [.556,"STIXGeneral"]; + HTMLCSS.FONTDATA.DELIMITERS[0x23DD].HW[1] = [.926,"STIXSizeOneSym"]; + HTMLCSS.FONTDATA.DELIMITERS[0x23E0].HW[0][0] = .926; + HTMLCSS.FONTDATA.DELIMITERS[0x23E1].HW[0][0] = .926; + }); + + UPDATE("General/Bold/CombDiacritMarks",{},[0x347]); + + UPDATE("General/Bold/LetterlikeSymbols",{ + 0x2145: [676,0,748,75,703], // stix-mathematical bold double-struck capital D + 0x2146: [676,14,643,50,583], // stix-mathematical bold double-struck small letter d + 0x2147: [473,14,573,50,523], // stix-mathematical bold double-struck small letter e + 0x2148: [691,0,330,65,265], // stix-mathematical bold double-struck small letter i + 0x2149: [691,205,371,-20,311] // stix-mathematical bold double-struck small letter j + }); + + UPDATE("General/Bold/MathOperators",{ + 0x2219: [473,-59,584,85,499] // BULLET OPERATOR + },[0x22C0,0x22C1,0x22C2,0x22C3]); + + UPDATE("General/Bold/SpacingModLetters",{},[0x2F7]); + + UPDATE("General/BoldItalic/GeneralPunctuation",{ + 0x203E: [637,-565,500,0,500] // OVERLINE + }); + + UPDATE("General/BoldItalic/GreekBoldItalic",{ + 0x1D730: [685,0,589,31,721] // MATHEMATICAL BOLD ITALIC CAPITAL UPSILON + }); + + UPDATE("General/BoldItalic/SpacingModLetters",{ + 0x2B2: [1017,-331,350,24,384] // MODIFIER LETTER SMALL J + },[0x2F7]); + + UPDATE("General/Italic/CombDiactForSymbols",{ + 0x20EC: [681,-548,0,-453,-17], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [681,-548,0,-453,-17] // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + }); + + UPDATE("General/Italic/GeneralPunctuation",{ + 0x203E: [582,-532,500,0,500] // OVERLINE + }); + + UPDATE("General/Italic/GreekItalic",{ + 0x1D6F6: [668,0,567,28,687] // MATHEMATICAL ITALIC CAPITAL UPSILON + }); + + UPDATE("General/Italic/SpacingModLetters",{},[0x2F7]); + + UPDATE("General/Regular/CombDiacritMarks",{},[0x347]); + + UPDATE("General/Regular/GreekBoldItalic",{ + 0x1D730: [685,0,589,31,721] // MATHEMATICAL BOLD ITALIC CAPITAL UPSILON + }); + + UPDATE("General/Regular/GreekItalic",{ + 0x1D6F6: [668,0,567,28,687] // MATHEMATICAL ITALIC CAPITAL UPSILON + }); + + UPDATE("General/Regular/LatinExtendedD",{},[0xA792]); + + UPDATE("General/Regular/LetterlikeSymbols",{ + 0x2145: [662,0,722,70,677], // stix-mathematical bold double-struck capital D + 0x2146: [683,10,574,45,519], // stix-mathematical bold double-struck small letter d + 0x2147: [460,10,523,45,478], // stix-mathematical bold double-struck small letter e + 0x2148: [683,0,258,55,203], // stix-mathematical bold double-struck small letter i + 0x2149: [683,217,305,-15,250] // stix-mathematical bold double-struck small letter j + }); + + UPDATE("General/Regular/MathOperators",{ + 0x22FF: [662,0,560,73,487] // Z NOTATION BAG MEMBERSHIP + }); + + UPDATE("General/Regular/MiscMathSymbolsA",{},[0x27CB,0x27CD]); + + UPDATE("General/Regular/MiscSymbols",{},[0x26E2]); + + UPDATE("General/Regular/MiscTechnical",{ + 0x23DC: [55,152,556,-10,566], // TOP PARENTHESIS (mathematical use) + 0x23DD: [771,-564,556,-10,566], // BOTTOM PARENTHESIS (mathematical use) + 0x23DE: [117,88,556,-10,566], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [769,-564,556,-10,566], // BOTTOM CURLY BRACKET (mathematical use) + 0x23E0: [66,212,926,-3,929], // TOP TORTOISE SHELL BRACKET (mathematical use) + 0x23E1: [842,-564,926,-3,929] // BOTTOM TORTOISE SHELL BRACKET (mathematical use) + }); + + UPDATE("General/Regular/PhoneticExtensions",{},[0x1D98,0x1DA3]); + + UPDATE("General/Regular/SpacingModLetters",{},[0x2F7]); + + UPDATE("General/Regular/SuppMathOperators",{},[0x2AFC,0x2AFF]); + + UPDATE("NonUnicode/Bold/PrivateUse",{ + 0xE060: [-137,322,0,0,330], // stix-double underbar + 0xE0A1: [691,19,769,27,734], // stix-capital C with stroke + 0xE38A: [676,0,787,50,737], // stix-mathematical bold double-struck capital A + 0xE38B: [676,0,729,75,669], // stix-mathematical bold double-struck capital B + 0xE38D: [676,0,650,75,595], // stix-mathematical bold double-struck capital E + 0xE38E: [676,0,474,75,595], // stix-mathematical bold double-struck capital F + 0xE38F: [691,19,751,45,686], // stix-mathematical bold double-struck capital G + 0xE390: [676,0,380,80,300], // stix-mathematical bold double-struck capital I + 0xE391: [676,19,618,50,548], // stix-mathematical bold double-struck capital J + 0xE392: [676,0,792,75,767], // stix-mathematical bold double-struck capital K + 0xE393: [676,0,662,70,607], // stix-mathematical bold double-struck capital L + 0xE394: [676,0,914,75,839], // stix-mathematical bold double-struck capital M + 0xE395: [691,19,787,45,742], // stix-mathematical bold double-struck capital O + 0xE396: [692,19,702,45,657], // stix-mathematical bold double-struck capital S + 0xE397: [676,0,556,25,645], // stix-mathematical bold double-struck capital T + 0xE398: [676,19,738,70,668], // stix-mathematical bold double-struck capital U + 0xE399: [676,0,627,17,704], // stix-mathematical bold double-struck capital V + 0xE39A: [676,0,996,17,1015], // stix-mathematical bold double-struck capital W + 0xE39B: [676,0,794,20,769], // stix-mathematical bold double-struck capital X + 0xE39C: [676,0,652,23,739], // stix-mathematical bold double-struck capital Y + 0xE39D: [473,14,623,50,563], // stix-mathematical bold double-struck small letter a + 0xE39E: [676,14,643,60,593], // stix-mathematical bold double-struck small letter b + 0xE39F: [473,14,574,50,524], // stix-mathematical bold double-struck small letter c + 0xE3A2: [676,0,474,25,536], // stix-mathematical bold double-struck small letter f + 0xE3A3: [473,205,643,50,583], // stix-mathematical bold double-struck small letter g + 0xE3A4: [676,0,624,60,564], // stix-mathematical bold double-struck small letter h + 0xE3A7: [676,0,646,60,621], // stix-mathematical bold double-struck small letter k + 0xE3A8: [676,0,325,60,265], // stix-mathematical bold double-struck small letter l + 0xE3A9: [473,0,908,60,848], // stix-mathematical bold double-struck small letter m + 0xE3AA: [473,0,624,60,564], // stix-mathematical bold double-struck small letter n + 0xE3AB: [473,14,598,45,553], // stix-mathematical bold double-struck small letter o + 0xE3AC: [473,205,643,60,593], // stix-mathematical bold double-struck small letter p + 0xE3AD: [473,205,643,50,583], // stix-mathematical bold double-struck small letter q + 0xE3AE: [473,0,339,60,445], // stix-mathematical bold double-struck small letter r + 0xE3AF: [473,14,549,52,497], // stix-mathematical bold double-struck small letter s + 0xE3B0: [676,14,446,25,411], // stix-mathematical bold double-struck small letter t + 0xE3B1: [461,16,619,55,559], // stix-mathematical bold double-struck small letter u + 0xE3B2: [461,0,494,6,544], // stix-mathematical bold double-struck small letter v + 0xE3B3: [461,0,786,22,789], // stix-mathematical bold double-struck small letter w + 0xE3B4: [461,0,660,25,635], // stix-mathematical bold double-struck small letter x + 0xE3B5: [461,205,471,-9,537], // stix-mathematical bold double-struck small letter y + 0xE3B6: [461,0,513,40,473] // stix-mathematical bold double-struck small letter z + }); + + UPDATE("NonUnicode/BoldItalic/PrivateUse",{ + 0xE388: [707,14,598,18,563] // stix-small Greek lambda with straight bar through it + }); + + UPDATE("NonUnicode/Italic/PrivateUse",{ + 0xE387: [683,10,557,52,526] // stix-small Greek lambda with straight bar through it + }); + + UPDATE("NonUnicode/Regular/PrivateUse",{ + 0xE041: [911,-433,480,64,398], // stix-modifier letter small h turned, superscript + 0xE042: [755,-425,441,57,387], // stix-modifier letter small a (one-story) turned, superscript + 0xE060: [-140,292,1,11,323], // stix-double underbar + 0xE09F: [662,156,902,0,863], // stix-rising diagonal + 0xE0A0: [662,156,902,0,863], // stix-falling diagonal + 0xE0A1: [676,14,734,18,700], // stix-capital C with stroke + 0xE0E4: [773,80,700,94,606] // stix-Uranus + }); + + UPDATE("SizeTwoSym/Regular/All",{},[0x2AFF]); + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir+"/fontdata-1.0.js"); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.Hub); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js new file mode 100644 index 0000000..f6bfc90 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js @@ -0,0 +1,378 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/font/STIX/fontdata-beta.js + * + * Patches the STIX font data to work with the beta version of + * the STIX fonts (as opposed to the release version, assuming + * there ever is one). + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,TEX) { + + HTMLCSS.FONTDATA.STIXversion = "1.0-beta"; + + var GENERAL = "STIXGeneral", + BOLD = "STIXGeneral-bold", + ITALIC = "STIXGeneral-italic", +// NONUNI = "STIXNonUnicode", + SIZE1 = "STIXSizeOneSym", + SIZE2 = "STIXSizeTwoSym", + SIZE3 = "STIXSizeThreeSym", + SIZE4 = "STIXSizeFourSym", + SIZE5 = "STIXSizeFiveSym"; + + var REPLACE = function (name,data) { + var FONT = HTMLCSS.FONTDATA.FONTS[name]; + for (var id in data) {if (data.hasOwnProperty(id)) {FONT[id] = data[id]}} + }; + + REPLACE(GENERAL,{ + 0x300: [678,-507,0,109,333], // COMBINING GRAVE ACCENT + 0x301: [678,-507,0,109,333], // COMBINING ACUTE ACCENT + 0x302: [674,-507,0,94,405], // COMBINING CIRCUMFLEX ACCENT + 0x303: [638,-532,0,85,415], // COMBINING TILDE + 0x304: [601,-547,0,95,406], // COMBINING MACRON + 0x305: [820,-770,0,0,500], // COMBINING OVERLINE + 0x306: [664,-507,0,107,388], // COMBINING BREVE + 0x307: [622,-523,0,200,299], // COMBINING DOT ABOVE + 0x308: [622,-523,0,101,399], // COMBINING DIAERESIS + 0x309: [751,-492,0,173,362], // COMBINING HOOK ABOVE + 0x30A: [711,-512,0,151,350], // COMBINING RING ABOVE + 0x30B: [678,-507,0,79,458], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [674,-507,0,95,406], // COMBINING CARON + 0x30D: [700,-500,0,230,285], // COMBINING VERTICAL LINE ABOVE + 0x30E: [700,-500,0,154,347], // COMBINING DOUBLE VERTICAL LINE ABOVE + 0x30F: [678,-507,0,79,458], // COMBINING DOUBLE GRAVE ACCENT + 0x310: [767,-507,0,107,388], // COMBINING CANDRABINDU + 0x311: [664,-507,0,107,388], // COMBINING INVERTED BREVE + 0x312: [745,-502,0,181,320], // COMBINING TURNED COMMA ABOVE + 0x313: [745,-502,0,181,320], // COMBINING COMMA ABOVE + 0x314: [745,-502,0,181,320], // COMBINING REVERSED COMMA ABOVE + 0x315: [745,-502,0,395,534], // COMBINING COMMA ABOVE RIGHT + 0x316: [-53,224,0,109,333], // COMBINING GRAVE ACCENT BELOW + 0x317: [-53,224,0,109,333], // COMBINING ACUTE ACCENT BELOW + 0x318: [-53,283,0,83,270], // COMBINING LEFT TACK BELOW + 0x319: [-53,283,0,83,270], // COMBINING RIGHT TACK BELOW + 0x31A: [735,-531,0,100,400], // COMBINING LEFT ANGLE ABOVE + 0x31B: [474,-345,0,436,531], // COMBINING HORN + 0x31C: [-71,266,0,120,248], // COMBINING LEFT HALF RING BELOW + 0x31D: [-53,240,0,135,365], // COMBINING UP TACK BELOW + 0x31E: [-53,240,0,135,365], // COMBINING DOWN TACK BELOW + 0x31F: [-53,250,0,154,346], // COMBINING PLUS SIGN BELOW + 0x320: [-124,168,0,154,346], // COMBINING MINUS SIGN BELOW + 0x321: [75,287,0,245,481], // COMBINING PALATALIZED HOOK BELOW + 0x322: [75,287,0,426,662], // COMBINING RETROFLEX HOOK BELOW + 0x323: [-118,217,0,200,299], // COMBINING DOT BELOW + 0x324: [-119,218,0,101,399], // COMBINING DIAERESIS BELOW + 0x325: [-69,268,0,151,350], // COMBINING RING BELOW + 0x326: [-110,353,0,181,320], // COMBINING COMMA BELOW + 0x327: [0,215,0,146,355], // COMBINING CEDILLA + 0x328: [0,165,0,158,343], // COMBINING OGONEK + 0x329: [-102,234,0,230,270], // COMBINING VERTICAL LINE BELOW + 0x32A: [-98,235,0,95,407], // COMBINING BRIDGE BELOW + 0x32B: [-110,227,0,100,405], // COMBINING INVERTED DOUBLE ARCH BELOW + 0x32C: [-73,240,0,95,406], // COMBINING CARON BELOW + 0x32D: [-73,240,0,95,406], // COMBINING CIRCUMFLEX ACCENT BELOW + 0x32E: [-68,225,0,110,391], // COMBINING BREVE BELOW + 0x32F: [-59,216,0,110,391], // COMBINING INVERTED BREVE BELOW + 0x330: [-113,219,0,85,415], // COMBINING TILDE BELOW + 0x331: [-141,195,0,95,406], // COMBINING MACRON BELOW + 0x332: [-141,191,0,0,500], // COMBINING LOW LINE + 0x333: [-141,300,0,0,500], // COMBINING DOUBLE LOW LINE + 0x334: [320,-214,0,79,409], // COMBINING TILDE OVERLAY + 0x335: [274,-230,0,96,402], // COMBINING SHORT STROKE OVERLAY + 0x336: [274,-230,0,0,500], // COMBINING LONG STROKE OVERLAY + 0x337: [580,74,0,100,439], // COMBINING SHORT SOLIDUS OVERLAY + 0x338: [662,156,0,100,511], // COMBINING LONG SOLIDUS OVERLAY + 0x339: [-71,266,0,120,248], // COMBINING RIGHT HALF RING BELOW + 0x33A: [-53,190,0,95,407], // COMBINING INVERTED BRIDGE BELOW + 0x33B: [-53,227,0,167,333], // COMBINING SQUARE BELOW + 0x33C: [-65,189,0,100,401], // COMBINING SEAGULL BELOW + 0x33D: [715,-525,0,154,345], // COMBINING X ABOVE + 0x33E: [829,-499,0,197,303], // COMBINING VERTICAL TILDE + 0x33F: [928,-770,0,0,500], // COMBINING DOUBLE OVERLINE + 0x346: [681,-538,0,0,282], // COMBINING BRIDGE ABOVE + 0x34C: [777,-532,0,94,424], // COMBINING ALMOST EQUAL TO ABOVE + 0x359: [-65,367,0,123,393], // COMBINING ASTERISK BELOW + 0x35C: [-76,233,0,107,775], // COMBINING DOUBLE BREVE BELOW + 0x360: [633,-517,0,85,845], // COMBINING DOUBLE TILDE + 0x361: [664,-507,0,107,775], // COMBINING DOUBLE INVERTED BREVE + 0x362: [-65,270,0,85,835], // COMBINING DOUBLE RIGHTWARDS ARROW BELOW + + 0x20D0: [760,-627,0,27,463], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [760,-627,0,27,463], // COMBINING RIGHT HARPOON ABOVE + 0x20D2: [662,156,0,238,288], // COMBINING LONG VERTICAL LINE OVERLAY + 0x20D6: [760,-548,0,27,463], // COMBINING LEFT ARROW ABOVE + 0x20D7: [760,-548,0,27,463], // COMBINING RIGHT ARROW ABOVE + 0x20DB: [622,-523,0,18,515], // COMBINING THREE DOTS ABOVE + 0x20DC: [622,-523,0,0,696], // COMBINING FOUR DOTS ABOVE + 0x20DD: [725,221,1000,27,973], // COMBINING ENCLOSING CIRCLE + 0x20DE: [780,180,0,0,960], // COMBINING ENCLOSING SQUARE + 0x20DF: [843,341,0,0,1184], // COMBINING ENCLOSING DIAMOND + 0x20E1: [760,-548,0,27,505], // COMBINING LEFT RIGHT ARROW ABOVE + 0x20E4: [1023,155,1510,25,1485], // COMBINING ENCLOSING UPWARD POINTING TRIANGLE + 0x20E5: [662,156,0,50,440], // COMBINING REVERSE SOLIDUS OVERLAY + 0x20E6: [662,156,0,145,378], // COMBINING DOUBLE VERTICAL STROKE OVERLAY + 0x20E7: [725,178,0,0,816], // COMBINING ANNUITY SYMBOL + 0x20E8: [-119,218,0,18,515], // COMBINING TRIPLE UNDERDOT + 0x20E9: [681,-538,0,0,533], // COMBINING WIDE BRIDGE ABOVE + 0x20EA: [419,-87,0,-178,598], // COMBINING LEFTWARDS ARROW OVERLAY + 0x20EB: [756,217,0,32,673], // COMBINING LONG DOUBLE SOLIDUS OVERLAY + 0x20EC: [-119,252,0,27,463], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-119,252,0,27,463], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-40,252,0,27,463], // COMBINING LEFT ARROW BELOW + 0x20EF: [-40,252,0,27,463], // COMBINING RIGHT ARROW BELOW + 0x20F0: [819,-517,0,123,393] // COMBINING ASTERISK ABOVE + }); + + REPLACE(BOLD,{ + 0x300: [713,-528,0,141,379], // COMBINING GRAVE ACCENT + 0x301: [713,-528,0,141,379], // COMBINING ACUTE ACCENT + 0x302: [704,-528,0,92,429], // COMBINING CIRCUMFLEX ACCENT + 0x303: [674,-547,0,78,443], // COMBINING TILDE + 0x304: [637,-565,0,95,425], // COMBINING MACRON + 0x305: [838,-788,0,10,510], // COMBINING OVERLINE + 0x306: [691,-528,0,109,412], // COMBINING BREVE + 0x307: [666,-537,0,196,325], // COMBINING DOT ABOVE + 0x308: [666,-537,0,91,430], // COMBINING DIAERESIS + 0x309: [751,-491,0,174,379], // COMBINING HOOK ABOVE + 0x30A: [750,-537,0,154,367], // COMBINING RING ABOVE + 0x30B: [713,-528,0,41,479], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [704,-528,0,92,429], // COMBINING CARON + 0x30D: [730,-530,0,233,299], // COMBINING VERTICAL LINE ABOVE + 0x30E: [730,-530,0,152,368], // COMBINING DOUBLE VERTICAL LINE ABOVE + 0x30F: [713,-528,0,41,479], // COMBINING DOUBLE GRAVE ACCENT + 0x310: [828,-528,0,109,412], // COMBINING CANDRABINDU + 0x311: [691,-528,0,109,412], // COMBINING INVERTED BREVE + 0x312: [867,-532,0,168,352], // COMBINING TURNED COMMA ABOVE + 0x313: [867,-532,0,168,352], // COMBINING COMMA ABOVE + 0x314: [867,-532,0,168,352], // COMBINING REVERSED COMMA ABOVE + 0x315: [867,-532,0,394,578], // COMBINING COMMA ABOVE RIGHT + 0x316: [-70,255,0,141,379], // COMBINING GRAVE ACCENT BELOW + 0x317: [-70,255,0,141,379], // COMBINING ACUTE ACCENT BELOW + 0x318: [-58,288,0,85,287], // COMBINING LEFT TACK BELOW + 0x319: [-58,288,0,232,434], // COMBINING RIGHT TACK BELOW + 0x31A: [752,-531,0,100,417], // COMBINING LEFT ANGLE ABOVE + 0x31B: [505,-352,0,448,576], // COMBINING HORN + 0x31C: [-33,313,0,135,320], // COMBINING LEFT HALF RING BELOW + 0x31D: [-70,272,0,145,375], // COMBINING UP TACK BELOW + 0x31E: [-70,272,0,145,375], // COMBINING DOWN TACK BELOW + 0x31F: [-70,287,0,154,366], // COMBINING PLUS SIGN BELOW + 0x320: [-140,206,0,154,366], // COMBINING MINUS SIGN BELOW + 0x321: [75,287,0,269,488], // COMBINING PALATALIZED HOOK BELOW + 0x322: [75,287,0,416,635], // COMBINING RETROFLEX HOOK BELOW + 0x323: [-109,238,0,196,325], // COMBINING DOT BELOW + 0x324: [-109,238,0,91,430], // COMBINING DIAERESIS BELOW + 0x325: [-66,279,0,154,367], // COMBINING RING BELOW + 0x326: [-88,423,0,168,352], // COMBINING COMMA BELOW + 0x327: [0,218,0,147,373], // COMBINING CEDILLA + 0x328: [44,173,0,146,375], // COMBINING OGONEK + 0x329: [-107,239,0,233,288], // COMBINING VERTICAL LINE BELOW + 0x32A: [-86,260,0,85,417], // COMBINING BRIDGE BELOW + 0x32B: [-104,242,0,90,415], // COMBINING INVERTED DOUBLE ARCH BELOW + 0x32C: [-83,259,0,92,429], // COMBINING CARON BELOW + 0x32D: [-85,261,0,92,429], // COMBINING CIRCUMFLEX ACCENT BELOW + 0x32E: [-78,241,0,109,412], // COMBINING BREVE BELOW + 0x32F: [-78,241,0,109,412], // COMBINING INVERTED BREVE BELOW + 0x330: [-108,235,0,78,443], // COMBINING TILDE BELOW + 0x331: [-137,209,0,95,425], // COMBINING MACRON BELOW + 0x332: [-137,187,0,10,510], // COMBINING LOW LINE + 0x333: [-137,287,0,10,510], // COMBINING DOUBLE LOW LINE + 0x334: [316,-189,0,78,443], // COMBINING TILDE OVERLAY + 0x335: [282,-224,0,96,402], // COMBINING SHORT STROKE OVERLAY + 0x336: [282,-224,0,0,500], // COMBINING LONG STROKE OVERLAY + 0x337: [580,74,0,100,467], // COMBINING SHORT SOLIDUS OVERLAY + 0x338: [662,156,0,100,541], // COMBINING LONG SOLIDUS OVERLAY + 0x339: [-33,313,0,135,320], // COMBINING RIGHT HALF RING BELOW + 0x33A: [-71,245,0,85,417], // COMBINING INVERTED BRIDGE BELOW + 0x33B: [-70,264,0,157,343], // COMBINING SQUARE BELOW + 0x33C: [-89,234,0,100,401], // COMBINING SEAGULL BELOW + 0x33D: [719,-520,0,160,360], // COMBINING X ABOVE + 0x33E: [881,-516,0,196,323], // COMBINING VERTICAL TILDE + 0x33F: [938,-788,0,10,510], // COMBINING DOUBLE OVERLINE + 0x346: [717,-544,0,0,303], // COMBINING BRIDGE ABOVE + 0x34C: [837,-547,333,-16,349], // COMBINING ALMOST EQUAL TO ABOVE + 0x359: [-66,368,0,151,421], // COMBINING ASTERISK BELOW + 0x35C: [-79,242,0,109,810], // COMBINING DOUBLE BREVE BELOW + 0x360: [674,-529,0,78,908], // COMBINING DOUBLE TILDE + 0x361: [691,-534,0,107,775], // COMBINING DOUBLE INVERTED BREVE + 0x362: [-54,293,0,78,887], // COMBINING DOUBLE RIGHTWARDS ARROW BELOW + + 0x20D0: [846,-637,0,40,524], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [846,-637,0,40,524], // COMBINING RIGHT HARPOON ABOVE + 0x20D2: [662,156,0,232,307], // COMBINING LONG VERTICAL LINE OVERLAY + 0x20D6: [846,-508,0,40,524], // COMBINING LEFT ARROW ABOVE + 0x20D7: [846,-508,0,40,524], // COMBINING RIGHT ARROW ABOVE + 0x20DB: [666,-537,0,-2,547], // COMBINING THREE DOTS ABOVE + 0x20DC: [666,-537,0,-2,757], // COMBINING FOUR DOTS ABOVE + 0x20DD: [760,254,1073,32,1041], // COMBINING ENCLOSING CIRCLE + 0x20E1: [846,-508,0,35,629], // COMBINING LEFT RIGHT ARROW ABOVE + 0x20E4: [1055,169,1581,32,1549], // COMBINING ENCLOSING UPWARD POINTING TRIANGLE + 0x20E5: [662,155,0,40,522], // COMBINING REVERSE SOLIDUS OVERLAY + 0x20E6: [662,156,0,130,409], // COMBINING DOUBLE VERTICAL STROKE OVERLAY + 0x20E7: [760,172,0,67,910], // COMBINING ANNUITY SYMBOL + 0x20E8: [-109,238,0,-2,547], // COMBINING TRIPLE UNDERDOT + 0x20E9: [717,-544,0,0,564], // COMBINING WIDE BRIDGE ABOVE + 0x20EA: [441,-65,1073,-178,658], // COMBINING LEFTWARDS ARROW OVERLAY + 0x20EB: [775,235,0,25,738], // COMBINING LONG DOUBLE SOLIDUS OVERLAY + 0x20EC: [-166,375,0,40,524], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-166,375,0,40,524], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-35,373,0,40,524], // COMBINING LEFT ARROW BELOW + 0x20EF: [-35,373,0,40,524], // COMBINING RIGHT ARROW BELOW + 0x20F0: [845,-543,0,125,395] // COMBINING ASTERISK ABOVE + }); + + REPLACE(ITALIC,{ + 0x20D0: [760,-627,0,27,463], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [760,-627,0,54,490], // COMBINING RIGHT HARPOON ABOVE + 0x20D2: [662,156,266,100,166], // COMBINING LONG VERTICAL LINE OVERLAY + 0x20D6: [760,-548,0,27,463], // COMBINING LEFT ARROW ABOVE + 0x20D7: [760,-548,0,27,463], // COMBINING RIGHT ARROW ABOVE + 0x20DB: [622,-523,0,27,524], // COMBINING THREE DOTS ABOVE + 0x20DC: [622,-523,0,18,714], // COMBINING FOUR DOTS ABOVE + 0x20DD: [725,221,1000,27,973], // COMBINING ENCLOSING CIRCLE + 0x20E1: [760,-548,0,27,505], // COMBINING LEFT RIGHT ARROW ABOVE + 0x20E4: [1023,155,1510,25,1485], // COMBINING ENCLOSING UPWARD POINTING TRIANGLE + 0x20E5: [662,156,506,50,456], // COMBINING REVERSE SOLIDUS OVERLAY + 0x20E6: [662,156,523,129,394], // COMBINING DOUBLE VERTICAL STROKE OVERLAY + 0x20E7: [725,178,926,55,871], // COMBINING ANNUITY SYMBOL + 0x20E8: [-119,218,0,18,515], // COMBINING TRIPLE UNDERDOT + 0x20E9: [681,-538,0,2,535], // COMBINING WIDE BRIDGE ABOVE + 0x20EA: [419,-87,1000,27,973], // COMBINING LEFTWARDS ARROW OVERLAY + 0x20EC: [681,-548,0,27,463], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [681,-548,0,27,463], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-40,252,490,27,463], // COMBINING LEFT ARROW BELOW + 0x20EF: [-40,252,490,27,463] // COMBINING RIGHT ARROW BELOW + }); + + REPLACE(SIZE1,{ + 0x302: [767,-554,0,0,560], // COMBINING CIRCUMFLEX ACCENT + 0x303: [750,-598,0,-2,558], // COMBINING TILDE + 0x305: [820,-770,0,0,1000], // COMBINING OVERLINE + 0x30C: [767,-554,0,0,560], // COMBINING CARON + 0x330: [-117,269,0,-2,558], // COMBINING TILDE BELOW + 0x332: [-127,177,0,0,1000], // COMBINING LOW LINE + 0x338: [532,21,0,0,563], // COMBINING LONG SOLIDUS OVERLAY + 0x20D0: [749,-584,0,28,899], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,27,898], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,27,899], // COMBINING LEFT ARROW ABOVE + 0x20D7: [736,-482,0,27,899], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,27,898], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,28,899], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,27,899], // COMBINING LEFT ARROW BELOW + 0x20EF: [-25,279,0,27,899] // COMBINING RIGHT ARROW BELOW + }); + + REPLACE(SIZE2,{ + 0x302: [777,-564,0,0,979], // COMBINING CIRCUMFLEX ACCENT + 0x303: [760,-608,0,-2,977], // COMBINING TILDE + 0x305: [820,-770,0,0,1500], // COMBINING OVERLINE + 0x30C: [777,-564,0,0,979], // COMBINING CARON + 0x330: [-117,269,0,-2,977], // COMBINING TILDE BELOW + 0x332: [-127,177,0,0,1000], // COMBINING LOW LINE + 0x338: [662,0,0,0,714], // COMBINING LONG SOLIDUS OVERLAY + 0x20D0: [749,-584,0,27,1335], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,27,1335], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,27,1335], // COMBINING LEFT ARROW ABOVE + 0x20D7: [735,-482,0,27,1335], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,27,1335], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,27,1335], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,27,1335], // COMBINING LEFT ARROW BELOW + 0x20EF: [-26,279,0,27,1335] // COMBINING RIGHT ARROW BELOW + }); + + REPLACE(SIZE3,{ + 0x302: [777,-564,0,0,1460], // COMBINING CIRCUMFLEX ACCENT + 0x303: [774,-608,0,-2,1458], // COMBINING TILDE + 0x305: [820,-770,0,0,2000], // COMBINING OVERLINE + 0x30C: [777,-564,0,0,1460], // COMBINING CARON + 0x330: [-117,283,0,-2,1458], // COMBINING TILDE BELOW + 0x332: [-127,177,0,0,2000], // COMBINING LOW LINE + 0x338: [662,156,0,137,548], // COMBINING LONG SOLIDUS OVERLAY + 0x20D0: [749,-584,0,27,1771], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,27,1771], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,27,1771], // COMBINING LEFT ARROW ABOVE + 0x20D7: [735,-482,0,27,1771], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,27,1771], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,27,1771], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,27,1771], // COMBINING LEFT ARROW BELOW + 0x20EF: [-26,279,0,27,1771] // COMBINING RIGHT ARROW BELOW + }); + + REPLACE(SIZE4,{ + 0x302: [796,-573,0,0,1886], // COMBINING CIRCUMFLEX ACCENT + 0x303: [771,-608,0,0,1886], // COMBINING TILDE + 0x305: [820,-770,0,0,2500], // COMBINING OVERLINE + 0x30C: [796,-573,0,0,1886], // COMBINING CARON + 0x330: [-117,280,0,0,1886], // COMBINING TILDE BELOW + 0x332: [-127,177,0,0,2500], // COMBINING LOW LINE + 0x338: [731,228,0,170,491], // COMBINING LONG SOLIDUS OVERLAY + 0x20D0: [749,-584,0,27,2207], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,27,2207], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,27,2207], // COMBINING LEFT ARROW ABOVE + 0x20D7: [735,-482,0,27,2207], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,27,2207], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,27,2207], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,27,2207], // COMBINING LEFT ARROW BELOW + 0x20EF: [-26,279,0,27,2207] // COMBINING RIGHT ARROW BELOW + }); + + REPLACE(SIZE5,{ + 0x302: [816,-572,0,0,2328], // COMBINING CIRCUMFLEX ACCENT + 0x303: [780,-617,0,0,2328], // COMBINING TILDE + 0x305: [820,-770,0,0,3000], // COMBINING OVERLINE + 0x30C: [816,-572,0,0,2328], // COMBINING CARON + 0x330: [-117,280,0,0,2328], // COMBINING TILDE BELOW + 0x332: [-127,177,0,0,3000], // COMBINING LOW LINE + 0x338: [960,454,0,119,557], // COMBINING LONG SOLIDUS OVERLAY + 0x20D0: [749,-584,0,0,3000], // COMBINING LEFT HARPOON ABOVE + 0x20D1: [749,-584,0,0,3000], // COMBINING RIGHT HARPOON ABOVE + 0x20D6: [735,-482,0,0,3000], // COMBINING LEFT ARROW ABOVE + 0x20D7: [735,-482,0,0,3000], // COMBINING RIGHT ARROW ABOVE + 0x20EC: [-123,288,0,0,3000], // COMBINING RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x20ED: [-123,288,0,0,3000], // COMBINING LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x20EE: [-26,279,0,0,3000], // COMBINING LEFT ARROW BELOW + 0x20EF: [-26,279,0,0,3000] // COMBINING RIGHT ARROW BELOW + }); + + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/General/BoldItalic/CombDiactForSymbols.js", + function () { + REPLACE("STIXGeneral-bold-italic",{ + 0x20DD: [760,254,1073,32,1041] // COMBINING ENCLOSING CIRCLE + }); + } + ); + + var SIZES = [SIZE1,SIZE2,SIZE3,SIZE4]; + var CHARS = [0x2C6,0x2C7,0x2DC,0x2E7]; + + for (var i = 0; i < SIZES.length; i++) { + for (var j = 0; j < CHARS.length; j++) { + delete HTMLCSS.FONTDATA.FONTS[SIZES[i]][j]; + } + } + + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir+"/fontdata-beta.js"); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.InputJax.TeX); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js new file mode 100644 index 0000000..0e636d8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js @@ -0,0 +1,415 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js + * + * Adds extra stretchy characters to the STIX data. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS) { + var VERSION = "2.3"; + + var DELIMITERS = HTMLCSS.FONTDATA.DELIMITERS; + + var GENERAL = "STIXGeneral", + BOLD = "STIXGeneral-bold", + VARIANT = "STIXVariants", + NONUNI = "STIXNonUnicode", + SIZE1 = "STIXSizeOneSym", + SIZE2 = "STIXSizeTwoSym", + SIZE3 = "STIXSizeThreeSym", + SIZE4 = "STIXSizeFourSym", + SIZE5 = "STIXSizeFiveSym"; + var H = "H", V = "V"; + + var delim = { + 0x003D: // equal sign + { + dir: H, HW: [[.685,GENERAL]], stretch: {rep:[0x003D,GENERAL]} + }, + 0x219E: // left two-headed arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {left:[0x219E,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21A0: // right two-headed arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {right:[0x21A0,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21A4: // left arrow from bar + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x2190,VARIANT], rep:[0x2212,GENERAL], right:[0x22A3,BOLD,0,.1,.6]} + }, + 0x21A5: // up arrow from bar + { + dir: V, HW: [[.816,GENERAL]], + stretch: {bot:[0x5F,GENERAL,.05,-.01,.8], ext:[0x23D0,GENERAL], top:[0x2191,GENERAL]} + }, + 0x21A6: // right arrow from bar + { + dir: H, HW: [[1,GENERAL]], + stretch: {left:[0xE0B6,NONUNI], rep:[0x2212,GENERAL], right:[0x2192,GENERAL]} + }, + 0x21A7: // down arrow from bar + { + dir: V, HW: [[.816,GENERAL]], + stretch: {top:[0x22A4,BOLD,0.04,0,.6], ext:[0x23D0,GENERAL], bot:[0x2193,GENERAL]} + }, + 0x21B0: // up arrow with top leftwards + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x21B0,GENERAL], ext:[0x23D0,GENERAL,.152]} + }, + 0x21B1: // up arrow with top right + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x21B1,GENERAL], ext:[0x23D0,GENERAL,-.195]} + }, + 0x21BC: // left harpoon with barb up + { + dir: H, HW: [[.955,GENERAL]], stretch: {left:[0x21BC,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21BD: // left harpoon with barb down + { + dir: H, HW: [[.955,GENERAL]], stretch: {left:[0x21BD,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21BE: // up harpoon with barb right + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x21BE,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x21BF: // up harpoon with barb left + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x21BF,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x21C0: // right harpoon with barb up + { + dir: H, HW: [[.955,GENERAL]], stretch: {right:[0x21C0,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21C1: // right harpoon with barb down + { + dir: H, HW: [[.955,GENERAL]], stretch: {right:[0x21C1,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21C2: // down harpoon with barb right + { + dir: V, HW: [[.818,GENERAL]], stretch: {bot:[0x21C2,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x21C3: // down harpoon with barb left + { + dir: V, HW: [[.818,GENERAL]], stretch: {bot:[0x21C3,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x21DA: // left triple arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {left:[0x21DA,GENERAL], rep:[0x2261,GENERAL]} + }, + 0x21DB: // right triple arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {right:[0x21DB,GENERAL], rep:[0x2261,GENERAL]} + }, + 0x23B4: // top square bracket + { + dir: H, HW: [[.926,GENERAL],[1.063,SIZE1],[1.606,SIZE2],[2.147,SIZE3],[2.692,SIZE4],[3.237,SIZE5]], + stretch: {left:[0x2310,GENERAL], rep:[0x2212,GENERAL,0,.12], right:[0xAC,GENERAL]} + }, + 0x23B5: // bottom square bracket + { + dir: H, HW: [[.926,GENERAL],[1.063,SIZE1],[1.606,SIZE2],[2.147,SIZE3],[2.692,SIZE4],[3.237,SIZE5]], + stretch: {left:[0x2A3D,GENERAL,0,.12], rep:[0x2212,GENERAL,0,0,0,.12], right:[0x2A3C,GENERAL,0,.12]} + }, + 0x23DC: // top paren + { + dir: H, HW: [[.926,SIZE1],[1,GENERAL],[1.460,SIZE2],[1.886,SIZE3],[2.328,SIZE4],[3.237,SIZE5]], + stretch: {left:[0xE13B,NONUNI], right:[0xE13C,NONUNI], rep:[0xE14A,NONUNI]} + }, + 0x23DD: // bottom paren + { + dir: H, HW: [[.926,SIZE1],[1,GENERAL],[1.460,SIZE2],[1.886,SIZE3],[2.328,SIZE4],[3.237,SIZE5]], + stretch: {left:[0xE13D,NONUNI], right:[0xE13E,NONUNI], rep:[0xE14B,NONUNI]} + }, + 0x23E0: // top tortoise shell + { + dir: H, HW: [[1,GENERAL],[1.460,SIZE1],[1.886,SIZE2],[2.312,SIZE3],[2.738,SIZE4],[3.164,SIZE5]], + stretch: {left:[0xE10D,NONUNI,-.1,-.1], rep:[0x2212,GENERAL,0,.05], right:[0xE10C,NONUNI,0,-.1], fullExtenders:true} + }, + 0x23E1: // bottom tortoise shell + { + dir: H, HW: [[1,GENERAL],[1.460,SIZE1],[1.886,SIZE2],[2.312,SIZE3],[2.738,SIZE4],[3.164,SIZE5]], + stretch: {left:[0xE10C,NONUNI,-.1,.1], rep:[0x2212,GENERAL,0,-.1,0,.1], right:[0xE10D,NONUNI,0,.1], fullExtenders:true} + }, + 0x2906: // leftwards double arrow from bar + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x21D0,GENERAL], rep:[0x3D,GENERAL], right:[0x2AE4,GENERAL,0,-.09]} + }, + 0x2907: // rightwards double arrow from bar + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x22A8,GENERAL,0,-.09], rep:[0x3D,GENERAL], right:[0x21D2,GENERAL]} + }, + 0x294E: // left barb up right barb up harpoon + { + dir: H, HW: [], + stretch: {left:[0x21BC,GENERAL], rep:[0x2212,GENERAL], right:[0x21C0,GENERAL]} + }, + 0x294F: // up barb right down barb right harpoon + { + dir: V, HW: [[.818,GENERAL]], + stretch: {top:[0x21BE,GENERAL], ext:[0x23D0,GENERAL], bot:[0x21C2,GENERAL]} + }, + 0x2950: // left barb dow right barb down harpoon + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x21BD,GENERAL], rep:[0x2212,GENERAL], right:[0x21C1,GENERAL]} + }, + 0x2951: // up barb left down barb left harpoon + { + dir: V, HW: [[.818,GENERAL]], + stretch: {top:[0x21BF,GENERAL], ext:[0x23D0,GENERAL], bot:[0x21C3,GENERAL]} + }, + 0x295A: // leftwards harpoon with barb up from bar + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x21BC,GENERAL], rep:[0x2212,GENERAL], right:[0x22A3,BOLD,0,.1,.6]} + }, + 0x295B: // rightwards harpoon with barb up from bar + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0xE0B6,NONUNI], rep:[0x2212,GENERAL], right:[0x21C0,GENERAL]} + }, + 0x295C: // up harpoon with barb right from bar + { + dir: V, HW: [[.818,GENERAL]], + stretch: {bot:[0x5F,GENERAL,.05,-.01,.8], ext:[0x23D0,GENERAL], top:[0x21BE,GENERAL]} + }, + 0x295D: // down harpoon with barb right from bar + { + dir: V, HW: [[.818,GENERAL]], + stretch: {top:[0x22A4,BOLD,0.04,0,.6], ext:[0x23D0,GENERAL], bot:[0x21C2,GENERAL]} + }, + 0x295E: // leftwards harpoon with barb down from bar + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x21BD,GENERAL], rep:[0x2212,GENERAL], right:[0x22A3,BOLD,0,.1,.6]} + }, + 0x295F: // rightwards harpoon with barb down from bar + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0xE0B6,NONUNI], rep:[0x2212,GENERAL], right:[0x21C1,GENERAL]} + }, + 0x2960: // up harpoon with barb left from bar + { + dir: V, HW: [[.818,GENERAL]], + stretch: {bot:[0x5F,GENERAL,.05,-.01,.8], ext:[0x23D0,GENERAL], top:[0x21BF,GENERAL]} + }, + 0x2961: // down harpoon with barb left from bar + { + dir: V, HW: [[.818,GENERAL]], + stretch: {top:[0x22A4,BOLD,0.04,0,.6], ext:[0x23D0,GENERAL], bot:[0x21C3,GENERAL]} + }, + + 0x02C7: // caron + { + dir: H, HW: [[.333,GENERAL],[.56,SIZE1],[.979,SIZE2],[1.458,SIZE3],[1.886,SIZE4],[2.328,SIZE5]] + }, + 0x02CD: // low macron + { + dir: H, HW: [[.334,GENERAL]], stretch: {rep:[0x2CD,GENERAL]} + }, + 0x02F7: // low tilde + { + dir: H, HW: [[.558,SIZE1],[.977,SIZE2],[1.458,SIZE3],[1.886,SIZE4],[2.328,SIZE5]] + }, + 0x219F: // upwards two headed arrow + { + dir: V, HW: [[.816,GENERAL]], stretch: {ext:[0x23D0,GENERAL], top:[0x219F,GENERAL]} + }, + 0x21A1: // downwards two headed arrow + { + dir: V, HW: [[.816,GENERAL]], stretch: {ext:[0x23D0,GENERAL], bot:[0x21A1,GENERAL]} + }, + 0x21A8: // up down arrow with base + { + dir: V, HW: [[.816,GENERAL]], + stretch: {top:[0x2191,GENERAL], ext:[0x23D0,GENERAL], bot:[0x2913,GENERAL]} + }, + 0x21A9: // left hook arrow + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x2190,GENERAL], rep:[0x2212,GENERAL], right:[0xE0B5,NONUNI]} + }, + 0x21AA: // right hook arrow + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0xE0B4,NONUNI], rep:[0x2212,GENERAL], right:[0x2192,GENERAL]} + }, + 0x21B2: // down arrow with tip left + { + dir: V, HW: [[.818,GENERAL]], stretch: {bot:[0x21B2,GENERAL], ext:[0x23D0,GENERAL,.152]} + }, + 0x21B3: // down arrow with tip right + { + dir: V, HW: [[.818,GENERAL]], stretch: {bot:[0x21B3,GENERAL], ext:[0x23D0,GENERAL,-.195]} + }, + 0x21B4: // right arrow with corner down + { + dir: H, HW: [[.926,GENERAL]], stretch: {rep:[0x2212,GENERAL,0,.4], right:[0x21B4,GENERAL]} + }, + 0x21B5: // down arrow with corner left + { + dir: V, HW: [[.818,GENERAL]], stretch: {bot:[0x21B5,GENERAL], ext:[0x23D0,GENERAL,.57]} + }, + 0x21CB: // left harpoon over right harpoon + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x296A,GENERAL], rep:[0x3D,GENERAL], right:[0x296D,GENERAL]} + }, + 0x21CC: // right harpoon over left harpoon + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x296B,GENERAL], rep:[0x3D,GENERAL], right:[0x296C,GENERAL]} + }, + 0x21E0: // left dashed arrow + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x21E0,GENERAL], rep:[0xE121,NONUNI,0,0,0,0,.1], fullExtenders:true} + }, + 0x21E1: // up dashed arrow + { + dir: V, HW: [[.818,GENERAL]], + stretch: {ext:[0xE12D,NONUNI], top:[0x21E1,GENERAL], fullExtenders: true} + }, + 0x21E2: // right dashed arrow + { + dir: H, HW: [[.926,GENERAL]], + stretch: {right:[0x21E2,VARIANT], rep:[0xE12E,NONUNI,0,0,0,0,.1], fullExtenders:true} + }, + 0x21E3: // down dashed arrow + { + dir: V, HW: [[.818,GENERAL]], + stretch: {ext:[0xE12C,NONUNI], bot:[0x21E3,GENERAL], fullExtenders: true} + }, + 0x21E4: // left arrow to bar + { + dir: H, HW: [[.926,GENERAL]], stretch: {left:[0x21E4,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21E5: // right arrow to bar + { + dir: H, HW: [[.926,GENERAL]], stretch: {right:[0x21E5,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21FD: // left open-headed arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {left:[0x21FD,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21FE: // right open-headed arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {right:[0x21FE,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x21FF: // left right open-headed arrow + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x21FD,GENERAL], rep:[0x2212,GENERAL], right:[0x21FE,GENERAL]} + }, + 0x27E6: // left white square bracket + { + dir: V, HW: [[.93,GENERAL],[1.23,SIZE1],[1.845,SIZE2],[2.46,SIZE3],[3.075,SIZE4]], + stretch: {top:[0x2553,GENERAL], ext:[0x2551,GENERAL], bot:[0x2559,GENERAL]} + }, + 0x27E7: // right white square bracket + { + dir: V, HW: [[.93,GENERAL],[1.23,SIZE1],[1.845,SIZE2],[2.46,SIZE3],[3.075,SIZE4]], + stretch: {top:[0x2556,GENERAL], ext:[0x2551,GENERAL], bot:[0x255C,GENERAL]} + }, + 0x27EA: // left double angle bracket + { + dir: V, HW: [[.931,GENERAL],[1.23,SIZE1],[1.845,SIZE2],[2.461,SIZE3],[3.075,SIZE4]] + }, + 0x27EB: // right double angle bracket + { + dir: V, HW: [[.931,GENERAL],[1.23,SIZE1],[1.845,SIZE2],[2.461,SIZE3],[3.075,SIZE4]] + }, + 0x290A: // up triple arrow + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x290A,GENERAL], ext:[0xE135,NONUNI]} + }, + 0x290B: // down triple arrow + { + dir: V, HW: [[.818,GENERAL]], stretch: {bot:[0x290B,GENERAL], ext:[0xE135,NONUNI]} + }, + 0x2912: // up arrow to bar + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x2912,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x2913: // down arrow to bar + { + dir: V, HW: [[.818,GENERAL]], stretch: {bot:[0x2913,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x2952: // left harpoon with barb up to bar + { + dir: H, HW: [[.926,GENERAL]], stretch: {left:[0x2952,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x2953: // right harpoon with barb up to bar + { + dir: H, HW: [[.926,GENERAL]], stretch: {right:[0x2953,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x2954: // up harpoon with barb right to bar + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x2954,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x2955: // down harpoon with barb right to bar + { + dir: V, HW: [[.818,GENERAL]], stretch: {bot:[0x2955,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x2956: // left harpoon with barb down to bar + { + dir: H, HW: [[.926,GENERAL]], stretch: {left:[0x2956,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x2957: // right harpoon with barb down to bar + { + dir: H, HW: [[.926,GENERAL]], stretch: {right:[0x2957,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x2958: // up harpoon with barb left to bar + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x2958,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x2959: // down harpoon with barb left to bar + { + dir: V, HW: [[.818,GENERAL]], stretch: {bot:[0x2959,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x2980: // triple vertical bar + { + dir: V, HW: [[.874,GENERAL]], stretch: {ext:[0x2980,GENERAL]} + }, + 0x2997: // left black tortoise shell + { + dir: V, HW: [[.932,GENERAL]], + stretch: {top:[0xE10D,NONUNI,.1,.05], ext:[0x23D0,GENERAL,-.1], bot:[0xE10C,NONUNI,.1]} + }, + 0x2998: // right black tortoise shell + { + dir: V, HW: [[.932,GENERAL]], + stretch: {top:[0xE10C,NONUNI,-.1,.05], ext:[0x23D0,GENERAL], bot:[0xE10D,NONUNI,-.1]} + } + + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["HTML-CSS"]); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata.js new file mode 100644 index 0000000..f18ed3e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/STIX/fontdata.js @@ -0,0 +1,1587 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/font/STIX/fontdata.js + * + * Initializes the HTML-CSS OutputJax to use the STIX fonts + * for displaying mathematics. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,MML,HTML) { + var VERSION = "2.3"; + + HTMLCSS.allowWebFonts = false; + + var GENERAL = "STIXGeneral", + BOLD = "STIXGeneral-bold", + ITALIC = "STIXGeneral-italic", + BITALIC = "STIXGeneral-bold-italic", + NONUNI = "STIXNonUnicode", + NONUNII = "STIXNonUnicode-italic", + SIZE1 = "STIXSizeOneSym", + SIZE2 = "STIXSizeTwoSym", + SIZE3 = "STIXSizeThreeSym", + SIZE4 = "STIXSizeFourSym", + SIZE5 = "STIXSizeFiveSym"; + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + HTMLCSS.Augment({ + FONTDATA: { + version: VERSION, + STIXversion: "1.1", + + TeX_factor: 1.125, // TeX em's to STIX em's seem to need this + baselineskip: 1.2, + lineH: .8, lineD: .2, + + FONTS: { + "STIXGeneral": "General/Regular/Main.js", + "STIXGeneral-italic": "General/Italic/Main.js", + "STIXGeneral-bold": "General/Bold/Main.js", + "STIXGeneral-bold-italic": "General/BoldItalic/Main.js", + "STIXNonUnicode": "NonUnicode/Regular/Main.js", + "STIXNonUnicode-italic": "NonUnicode/Italic/Main.js", + "STIXNonUnicode-bold": "NonUnicode/Bold/Main.js", + "STIXNonUnicode-bold-italic": "NonUnicode/BoldItalic/Main.js", + "STIXVariants": "Variants/Regular/All.js", + "STIXSizeOneSym": "SizeOneSym/Regular/All.js", + "STIXSizeTwoSym": "SizeTwoSym/Regular/All.js", + "STIXSizeThreeSym": "SizeThreeSym/Regular/All.js", + "STIXSizeFourSym": "SizeFourSym/Regular/All.js", + "STIXSizeFiveSym": "SizeFiveSym/Regular/All.js", + "STIXIntegralsD": "IntegralsD/Regular/All.js" + }, + + VARIANT: { + "normal": {fonts: [GENERAL,NONUNI,SIZE1], + remap: {0x2205: [0x2205,"-STIX-variant"]}}, // \emptyset + "bold": {fonts: [BOLD,"STIXNonUnicode-bold","STIXSizeOneSym-bold"], bold:true}, + "italic": {fonts: [ITALIC,NONUNII,GENERAL,NONUNI,SIZE1], italic:true}, + "bold-italic": {fonts: [BITALIC,"STIXNonUnicode-bold-italic"], bold:true, italic:true}, + "double-struck": {offsetA: 0x1D538, offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, + 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124}}, + "fraktur": {offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128}}, + "bold-fraktur": {fonts: [BOLD], offsetA: 0x1D56C, bold:true}, + "script": {fonts: [ITALIC], offsetA: 0x1D49C, italic:true, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, + 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, + 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134}}, + "bold-script": {fonts: [BITALIC], offsetA: 0x1D4D0, bold:true, italic:true}, + "sans-serif": {offsetA: 0x1D5A0, offsetN: 0x1D7E2, offsetG: 0xE17D}, + "bold-sans-serif": {offsetA: 0x1D5D4, offsetG: 0x1D756, offsetN: 0x1D7EC, bold:true}, + "sans-serif-italic": {fonts: [ITALIC,NONUNII], offsetA: 0x1D608, offsetN: 0xE1B4, offsetG: 0xE1BF, italic:true}, + "sans-serif-bold-italic": {fonts: [BITALIC,"STIXNonUnicode-bold-italic"], offsetA: 0x1D63C, offsetN: 0xE1F6, offsetG: 0x1D790, bold:true, italic:true}, + "monospace": {offsetA: 0x1D670, offsetN: 0x1D7F6, + remap: {0x20: [0x20,"-STIX-variant"]}}, // use a special space for monospace (see below) + "-STIX-variant": {fonts:["STIXVariants",NONUNI,GENERAL], + remap: {0x2A87: 0xE010, 0x2A88: 0xE00F, 0x2270: 0xE011, 0x2271: 0xE00E, + 0x22E0: 0xE04B, 0x22E1: 0xE04F, 0x2288: 0xE016, 0x2289: 0xE018, + 0x25B3: 0x25B5, 0x25BD: 0x25BF, + 0x2205: [0x2205,MML.VARIANT.NORMAL]}}, // \varnothing + "-tex-caligraphic": {fonts: [ITALIC,NONUNII,NONUNI,SIZE1], offsetA: 0xE22D, noLowerCase: 1}, + "-tex-oldstyle": {offsetN: 0xE261, + remap: {0xE262: 0xE265, 0xE263: 0xE269, 0xE264: 0xE26D, 0xE265: 0xE271, + 0xE266: 0xE275, 0xE267: 0xE279, 0xE268: 0xE27D, 0xE269: 0xE281, + 0xE26A: 0xE285}}, + "-tex-mathit": {fonts: [ITALIC,NONUNII,GENERAL,NONUNI,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,"STIXIntegralsD",NONUNI,GENERAL]}, + "-smallOp": {}, + "-tex-caligraphic-bold": { + fonts:["STIXGeneral-bold-italic","STIXNonUnicode-bold-italic","STIXNonUnicode","STIXGeneral","STIXSizeOneSym"], bold:true, + offsetA: 0xE247, noLowerCase: 1 + }, + "-tex-oldstyle-bold": { + fonts:["STIXGeneral-bold","STIXNonUnicode-bold","STIXGeneral","STIXSizeOneSym"], bold:true, offsetN: 0xE263, + remap: {0xE264: 0xE267, 0xE265: 0xE26B, 0xE266: 0xE26F, + 0xE267: 0xE273, 0xE268: 0xE277, 0xE269: 0xE27B, + 0xE26A: 0xE27F, 0xE26B: 0xE283, 0xE26C: 0xE287} + } + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 53, 0x03D1: 54, 0x03F0: 55, 0x03D5: 56, 0x03F1: 57, 0x03D6: 58, 0x03F4: 17}} + ], + + RULECHAR: 0x203E, + + REMAP: { + 0x2F3: 0x2DA, 0x2F4: 0x2CA, // ring below, middle grave + 0xFE37: 0x23DE, 0xFE38: 0x23DF, // OverBrace, UnderBrace + 0x3008: 0x27E8, 0x3009: 0x27E9, // langle, rangle + 0x2758: 0x2223 // VerticalSeparator + }, + + REMAPACCENT: { + "\u2192": "\u20D7" + }, + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x0028: // ( + { + dir: V, HW: [[.844,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + stretch: {top:[0x239B,SIZE1], ext:[0x239C,SIZE1], bot:[0x239D,SIZE1]} + }, + 0x0029: // ) + { + dir: V, HW: [[.844,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + stretch: {top:[0x239E,SIZE1], ext:[0x239F,SIZE1], bot:[0x23A0,SIZE1]} + }, + 0x002F: // / + { + dir: V, HW: [[.690,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]] + }, + 0x005B: // [ + { + dir: V, HW: [[.818,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + stretch: {top:[0x23A1,SIZE1], ext:[0x23A2,SIZE1], bot:[0x23A3,SIZE1]} + }, + 0x005C: // \ + { + dir: V, HW: [[.690,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]] + }, + 0x005D: // ] + { + dir: V, HW: [[.818,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + stretch: {top:[0x23A4,SIZE1], ext:[0x23A5,SIZE1], bot:[0x23A6,SIZE1]} + }, + 0x007B: // { + { + dir: V, HW: [[.861,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + stretch: {top:[0x23A7,SIZE1], mid:[0x23A8,SIZE1], bot:[0x23A9,SIZE1], ext:[0x23AA,SIZE1]} + }, + 0x007C: // | + { + dir: V, HW: [[.69,GENERAL]], stretch: {ext:[0x2223,GENERAL]} + }, + 0x007D: // } + { + dir: V, HW: [[.861,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + stretch: {top:[0x23AB,SIZE1], mid:[0x23AC,SIZE1], bot:[0x23AD,SIZE1], ext:[0x23AA,SIZE1]} + }, + 0x02C6: // wide hat + { + dir: H, HW: [[.333,GENERAL],[.560,SIZE1],[.979,SIZE2],[1.46,SIZE3],[1.886,SIZE4],[2.328,SIZE5]] + }, + 0x02C7: // wide caron + { + dir: H, HW: [[.333,GENERAL],[.560,SIZE1],[.979,SIZE2],[1.46,SIZE3],[1.886,SIZE4],[2.328,SIZE5]] + }, + 0x02DC: // wide tilde + { + dir: H, HW: [[.333,GENERAL],[.558,SIZE1],[.978,SIZE2],[1.458,SIZE3],[1.886,SIZE4],[2.328,SIZE5]] + }, + 0x2016: // double vertical line + { + dir: V, HW: [[.879,GENERAL]], stretch: {ext:[0x2016,GENERAL]} + }, + 0x203E: // horizontal line + { + dir: H, HW: [[.5,GENERAL]], stretch: {rep:[0x203E,GENERAL]} + }, + 0x2190: // left arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {left:[0x2190,GENERAL], rep:[0x2212,GENERAL]} + }, + 0x2191: // \uparrow + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x2191,GENERAL], ext:[0x23D0,GENERAL]} + }, + 0x2192: // right arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {rep:[0x2212,GENERAL], right:[0x2192,GENERAL]} + }, + 0x2193: // \downarrow + { + dir: V, HW: [[.818,GENERAL]], stretch: {ext:[0x23D0,GENERAL], bot:[0x2193,GENERAL]} + }, + 0x2194: // left-right arrow + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x2190,GENERAL], rep:[0x2212,GENERAL], right:[0x2192,GENERAL]} + }, + 0x2195: // \updownarrow + { + dir: V, HW: [[.818,GENERAL]], + stretch: {top:[0x2191,GENERAL], ext:[0x23D0,GENERAL], bot:[0x2193,GENERAL]} + }, + 0x21D0: // left double arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {left:[0x21D0,GENERAL], rep:[0x3D,GENERAL]} + }, + 0x21D1: // \Uparrow + { + dir: V, HW: [[.818,GENERAL]], stretch: {top:[0x21D1,GENERAL], ext:[0x2225,GENERAL,.1]} + }, + 0x21D2: // right double arrow + { + dir: H, HW: [[.926,GENERAL]], stretch: {rep:[0x3D,GENERAL], right:[0x21D2,GENERAL]} + }, + 0x21D3: // \Downarrow + { + dir: V, HW: [[.818,GENERAL]], stretch: {ext:[0x2225,GENERAL,.1], bot:[0x21D3,GENERAL]} + }, + 0x21D4: // left-right double arrow + { + dir: H, HW: [[.926,GENERAL]], + stretch: {left:[0x21D0,GENERAL], rep:[0x3D,GENERAL], right:[0x21D2,GENERAL]} + }, + 0x21D5: // \Updownarrow + { + dir: V, HW: [[.818,GENERAL]], + stretch: {top:[0x21D1,GENERAL], ext:[0x2225,GENERAL,.1], bot:[0x21D3,GENERAL]} + }, + 0x221A: // \surd + { + dir: V, HW: [[.954,"STIXVariants"],[1.232,GENERAL],[1.847,SIZE1],[2.460,SIZE2],[3.075,SIZE3]], + stretch: {top: [0xE001,NONUNI], ext: [0xE000,NONUNI], bot: [0x23B7,SIZE1], fullExtenders:true} + }, + 0x2223: // \vert + { + dir: V, HW: [[.879,GENERAL]], stretch: {ext:[0x2223,GENERAL]} + }, + 0x2225: // \Vert + { + dir: V, HW: [[.879,GENERAL]], stretch: {ext:[0x2225,GENERAL]} + }, + 0x2308: // \lceil + { + dir: V, HW: [[.926,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + stretch: {top:[0x23A1,SIZE1], ext:[0x23A2,SIZE1]} + }, + 0x2309: // \rceil + { + dir: V, HW: [[.926,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + streth: {top:[0x23A4,SIZE1], ext:[0x23A5,SIZE1]} + }, + 0x230A: // \lfloor + { + dir: V, HW: [[.926,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + stretch: {ext:[0x23A2,SIZE1], bot:[0x23A3,SIZE1]} + }, + 0x230B: // \rfloor + { + dir: V, HW: [[.926,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]], + stretch: {ext:[0x23A5,SIZE1], bot:[0x23A6,SIZE1]} + }, + 0x23AA: // \bracevert + { + dir: V, HW: [[1.01,SIZE1]], + stretch: {top:[0x23AA,SIZE1], ext:[0x23AA,SIZE1], bot:[0x23AA,SIZE1]} + }, + 0x23AF: // horizontal line + { + dir: H, HW: [[.315,GENERAL]], stretch: {rep:[0x23AF,GENERAL]} + }, + 0x23B0: // \lmoustache + { + dir: V, HW: [[1.0,SIZE1]], + stretch: {top:[0x23A7,SIZE1], ext:[0x23AA,SIZE1], bot:[0x23AD,SIZE1]} + }, + 0x23B1: // \rmoustache + { + dir: V, HW: [[1.0,SIZE1]], + stretch: {top:[0x23AB,SIZE1], ext:[0x23AA,SIZE1], bot:[0x23A9,SIZE1]} + }, + 0x23D0: // vertical line extension + { + dir: V, HW: [[.304,GENERAL],[.690,GENERAL,null,0x7C],[.879,GENERAL,null,0x2223]], + stretch: {ext:[0x2223,GENERAL]} + }, + 0x23DE: // horizontal brace down + { + dir: H, HW: [[.926,SIZE1],[1,GENERAL],[1.46,SIZE2],[1.886,SIZE3],[2.328,SIZE4],[3.238,SIZE5]], + stretch: {left:[0xE13B,NONUNI], mid:[0xE140,NONUNI], right:[0xE13C,NONUNI], rep:[0xE14A,NONUNI]} + }, + 0x23DF: // horizontal brace up + { + dir: H, HW: [[.926,SIZE1],[1,GENERAL],[1.46,SIZE2],[1.886,SIZE3],[2.328,SIZE4],[3.238,SIZE5]], + stretch: {left:[0xE13D,NONUNI], mid:[0xE141,NONUNI], right:[0xE13E,NONUNI], rep:[0xE14B,NONUNI]} + }, + 0x27E8: // \langle + { + dir: V, HW: [[.926,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]] + }, + 0x27E9: // \rangle + { + dir: V, HW: [[.926,GENERAL],[1.230,SIZE1],[1.353,SIZE1,1.1],[1.845,SIZE2], + [2.048,SIZE2,1.11],[2.460,SIZE3],[2.472,SIZE3,1.005],[3.075,SIZE4]] + }, + 0x27EE: // \lgroup + { + dir: V, HW: [[.853,GENERAL]], + stretch: {top:[0x23A7,SIZE1], ext:[0x23AA,SIZE1], bot:[0x23A9,SIZE1]} + }, + 0x27EF: // \rgroup + { + dir: V, HW: [[.853,GENERAL]], + stretch: {top:[0x23AB,SIZE1], ext:[0x23AA,SIZE1], bot:[0x23AD,SIZE1]} + }, + 0x002D: {alias: 0x23AF, dir:H}, // minus + 0x005E: {alias: 0x02C6, dir:H}, // wide hat + 0x005F: {alias: 0x23AF, dir:H}, // low line + 0x007E: {alias: 0x02DC, dir:H}, // wide tilde + 0x00AF: {alias: 0x23AF, dir:H}, // macron + 0x02C9: {alias: 0x23AF, dir:H}, // macron + 0x0302: {alias: 0x02C6, dir:H}, // wide hat + 0x0303: {alias: 0x02DC, dir:H}, // wide tilde + 0x030C: {alias: 0x02C7, dir:H}, // wide caron + 0x0332: {alias: 0x23AF, dir:H}, // combining low line + 0x2015: {alias: 0x23AF, dir:H}, // horizontal line + 0x2017: {alias: 0x23AF, dir:H}, // horizontal line + 0x2212: {alias: 0x23AF, dir:H}, // minus + 0x2215: {alias: 0x002F, dir:V}, // division slash + 0x2329: {alias: 0x27E8, dir:V}, // langle + 0x232A: {alias: 0x27E9, dir:V}, // rangle + 0x2500: {alias: 0x2212, dir:H}, // horizontal line + 0x2758: {alias: 0x2223, dir:V}, // vertical separator + 0x3008: {alias: 0x27E8, dir:V}, // langle + 0x3009: {alias: 0x27E9, dir:V}, // rangle + 0xFE37: {alias: 0x23DE, dir:H}, // horizontal brace down + 0xFE38: {alias: 0x23DF, dir:H}, // horizontal brace up + + 0x003D: EXTRAH, // equal sign + 0x219E: EXTRAH, // left two-headed arrow + 0x21A0: EXTRAH, // right two-headed arrow + 0x21A4: EXTRAH, // left arrow from bar + 0x21A5: EXTRAV, // up arrow from bar + 0x21A6: EXTRAH, // right arrow from bar + 0x21A7: EXTRAV, // down arrow from bar + 0x21B0: EXTRAV, // up arrow with top leftwards + 0x21B1: EXTRAV, // up arrow with top right + 0x21BC: EXTRAH, // left harpoon with barb up + 0x21BD: EXTRAH, // left harpoon with barb down + 0x21BE: EXTRAV, // up harpoon with barb right + 0x21BF: EXTRAV, // up harpoon with barb left + 0x21C0: EXTRAH, // right harpoon with barb up + 0x21C1: EXTRAH, // right harpoon with barb down + 0x21C2: EXTRAV, // down harpoon with barb right + 0x21C3: EXTRAV, // down harpoon with barb left + 0x21DA: EXTRAH, // left triple arrow + 0x21DB: EXTRAH, // right triple arrow + 0x23B4: EXTRAH, // top square bracket + 0x23B5: EXTRAH, // bottom square bracket + 0x23DC: EXTRAH, // top paren + 0x23DD: EXTRAH, // bottom paren + 0x23E0: EXTRAH, // top tortoise shell + 0x23E1: EXTRAH, // bottom tortoise shell + 0x2906: EXTRAH, // leftwards double arrow from bar + 0x2907: EXTRAH, // rightwards double arrow from bar + 0x294E: EXTRAH, // left barb up right barb up harpoon + 0x294F: EXTRAV, // up barb right down barb right harpoon + 0x2950: EXTRAH, // left barb dow right barb down harpoon + 0x2951: EXTRAV, // up barb left down barb left harpoon + 0x295A: EXTRAH, // leftwards harpoon with barb up from bar + 0x295B: EXTRAH, // rightwards harpoon with barb up from bar + 0x295C: EXTRAV, // up harpoon with barb right from bar + 0x295D: EXTRAV, // down harpoon with barb right from bar + 0x295E: EXTRAH, // leftwards harpoon with barb down from bar + 0x295F: EXTRAH, // rightwards harpoon with barb down from bar + 0x2960: EXTRAV, // up harpoon with barb left from bar + 0x2961: EXTRAV, // down harpoon with barb left from bar + 0x27F5: {alias: 0x2190, dir:H}, // long left arrow + 0x27F6: {alias: 0x2192, dir:H}, // long right arrow + 0x27F7: {alias: 0x2194, dir:H}, // long left-right arrow + 0x27F8: {alias: 0x21D0, dir:H}, // long left double arrow + 0x27F9: {alias: 0x21D2, dir:H}, // long right double arrow + 0x27FA: {alias: 0x21D4, dir:H}, // long left-right double arrow + 0x27FB: {alias: 0x21A4, dir:H}, // long left arrow from bar + 0x27FC: {alias: 0x21A6, dir:H}, // long right arrow from bar + 0x27FD: {alias: 0x2906, dir:H}, // long left double arrow from bar + 0x27FE: {alias: 0x2907, dir:H}, // long right double arrow from bar + + 0x02C7: EXTRAH, // caron + 0x02CD: EXTRAH, // low macron + 0x02F7: EXTRAH, // low tilde + 0x219F: EXTRAV, // upwards two headed arrow + 0x21A1: EXTRAV, // downwards two headed arrow + 0x21A8: EXTRAV, // up down arrow with base + 0x21A9: EXTRAH, // left hook arrow + 0x21AA: EXTRAH, // right hook arrow + 0x21B2: EXTRAV, // down arrow with tip left + 0x21B3: EXTRAV, // down arrow with tip right + 0x21B4: EXTRAH, // right arrow with corner down + 0x21B5: EXTRAV, // down arrow with corner left + 0x21CB: EXTRAH, // left harpoon over right harpoon + 0x21CC: EXTRAH, // right harpoon over left harpoon + 0x21E0: EXTRAH, // left dashed arrow + 0x21E1: EXTRAV, // up dashed arrow + 0x21E2: EXTRAH, // right dashed arrow + 0x21E3: EXTRAV, // down dahsed arrow + 0x21E4: EXTRAH, // left arrow to bar + 0x21E5: EXTRAH, // right arrow to bar + 0x21FD: EXTRAH, // left open-headed arrow + 0x21FE: EXTRAH, // right open-headed arrow + 0x21FF: EXTRAH, // left right open-headed arrow + 0x27E6: EXTRAV, // left white square bracket + 0x27E7: EXTRAV, // right white square bracket + 0x27EA: EXTRAV, // left double angle bracket + 0x27EB: EXTRAV, // right double angle bracket + 0x290A: EXTRAV, // up triple arrow + 0x290B: EXTRAV, // down triple arrow + 0x2912: EXTRAV, // up arrow to bar + 0x2913: EXTRAV, // down arrow to bar + 0x2952: EXTRAH, // left harpoon with barb up to bar + 0x2953: EXTRAH, // right harpoon with barb up to bar + 0x2954: EXTRAV, // up harpoon with barb right to bar + 0x2955: EXTRAV, // down harpoon with barb right to bar + 0x2956: EXTRAH, // left harpoon with barb down to bar + 0x2957: EXTRAH, // right harpoon with barb down to bar + 0x2958: EXTRAV, // up harpoon with barb left to bar + 0x2959: EXTRAV, // down harpoon with barb left to bar + 0x2980: EXTRAV, // triple vertical bar + 0x2997: EXTRAV, // left balck tortoise shell + 0x2998: EXTRAV // right balck tortoise shell + } + } + }); + + HTMLCSS.FONTDATA.FONTS['STIXGeneral'] = { + directory: 'General/Regular', + family: 'STIXGeneral', + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x250,0x2AF,"IPAExtensions"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x400,0x4FF,"Cyrillic"], + [0x1D00,0x1DBF,"PhoneticExtensions"], + [0x1E00,0x1EFF,"LatinExtendedAdditional"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x2070,0x209F,"SuperAndSubscripts"], + [0x20A0,0x20CF,"CurrencySymbols"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2150,0x218F,"NumberForms"], + [0x2190,0x21FF,"Arrows"], + [0x2200,0x22FF,"MathOperators"], + [0x2300,0x23FF,"MiscTechnical"], + [0x2400,0x243F,"ControlPictures"], + [0x2460,0x24FF,"EnclosedAlphanum"], + [0x2500,0x257F,"BoxDrawing"], + [0x2580,0x259F,"BlockElements"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x2700,0x27BF,"Dingbats"], + [0x27C0,0x27EF,"MiscMathSymbolsA"], + [0x27F0,0x27FF,"SupplementalArrowsA"], + [0x2900,0x297F,"SupplementalArrowsB"], + [0x2980,0x29FF,"MiscMathSymbolsB"], + [0x2A00,0x2AFF,"SuppMathOperators"], + [0x2B00,0x2BFF,"MiscSymbolsAndArrows"], + [0x3000,0x303F,"CJK"], + [0x3040,0x309F,"Hiragana"], + [0xA720,0xA7FF,"LatinExtendedD"], + [0xFB00,0xFB4F,"AlphaPresentForms"], + [0xFFF0,0xFFFF,"Specials"], + [0x1D400,0x1D433,"MathBold"], + [0x1D434,0x1D467,"MathItalic"], + [0x1D468,0x1D49B,"MathBoldItalic"], + [0x1D49C,0x1D4CF,"MathScript"], + [0x1D4D0,0x1D503,"MathBoldScript"], + [0x1D504,0x1D537,"Fraktur"], + [0x1D538,0x1D56B,"BBBold"], + [0x1D56C,0x1D59F,"BoldFraktur"], + [0x1D5A0,0x1D5D3,"MathSS"], + [0x1D5D4,0x1D607,"MathSSBold"], + [0x1D608,0x1D63B,"MathSSItalic"], + [0x1D63C,0x1D66F,"MathSSItalicBold"], + [0x1D670,0x1D6A3,"MathTT"], + [0x1D6A4,0x1D6A5,"ij"], + [0x1D6A8,0x1D6E1,"GreekBold"], + [0x1D6E2,0x1D71B,"GreekItalic"], + [0x1D71C,0x1D755,"GreekBoldItalic"], + [0x1D756,0x1D78F,"GreekSSBold"], + [0x1D790,0x1D7C9,"GreekSSBoldItalic"], + [0x1D7CE,0x1D7D7,"MathBold"], + [0x1D7D8,0x1D7E1,"BBBold"], + [0x1D7E2,0x1D7EB,"MathSS"], + [0x1D7EC,0x1D7F6,"MathSSBold"], + [0x1D7F6,0x1D7FF,"MathTT"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [676,9,333,130,236], // EXCLAMATION MARK + 0x22: [676,-431,408,77,331], // QUOTATION MARK + 0x23: [662,0,500,6,495], // NUMBER SIGN + 0x24: [727,87,500,44,458], // DOLLAR SIGN + 0x25: [706,19,747,61,686], // PERCENT SIGN + 0x26: [676,13,778,42,750], // AMPERSAND + 0x27: [676,-431,180,48,133], // APOSTROPHE + 0x28: [676,177,333,48,304], // LEFT PARENTHESIS + 0x29: [676,177,333,29,285], // RIGHT PARENTHESIS + 0x2A: [676,-265,500,68,433], // ASTERISK + 0x2B: [547,41,685,48,636], // PLUS SIGN + 0x2C: [102,141,250,55,195], // COMMA + 0x2D: [257,-194,333,39,285], // HYPHEN-MINUS + 0x2E: [100,11,250,70,181], // FULL STOP + 0x2F: [676,14,278,-9,287], // SOLIDUS + 0x30: [676,14,500,24,476], // DIGIT ZERO + 0x31: [676,0,500,111,394], // DIGIT ONE + 0x32: [676,0,500,29,474], // DIGIT TWO + 0x33: [676,14,500,41,431], // DIGIT THREE + 0x34: [676,0,500,12,473], // DIGIT FOUR + 0x35: [688,14,500,31,438], // DIGIT FIVE + 0x36: [684,14,500,34,468], // DIGIT SIX + 0x37: [662,8,500,20,449], // DIGIT SEVEN + 0x38: [676,14,500,56,445], // DIGIT EIGHT + 0x39: [676,22,500,30,459], // DIGIT NINE + 0x3A: [459,11,278,81,192], // COLON + 0x3B: [459,141,278,80,219], // SEMICOLON + 0x3C: [534,24,685,56,621], // LESS-THAN SIGN + 0x3D: [386,-120,685,48,637], // EQUALS SIGN + 0x3E: [534,24,685,56,621], // GREATER-THAN SIGN + 0x3F: [676,8,444,68,414], // QUESTION MARK + 0x40: [676,14,921,116,809], // COMMERCIAL AT + 0x41: [674,0,722,15,707], // LATIN CAPITAL LETTER A + 0x42: [662,0,667,17,593], // LATIN CAPITAL LETTER B + 0x43: [676,14,667,28,633], // LATIN CAPITAL LETTER C + 0x44: [662,0,722,16,685], // LATIN CAPITAL LETTER D + 0x45: [662,0,611,12,597], // LATIN CAPITAL LETTER E + 0x46: [662,0,556,11,546], // LATIN CAPITAL LETTER F + 0x47: [676,14,722,32,709], // LATIN CAPITAL LETTER G + 0x48: [662,0,722,18,703], // LATIN CAPITAL LETTER H + 0x49: [662,0,333,18,315], // LATIN CAPITAL LETTER I + 0x4A: [662,14,373,-6,354], // LATIN CAPITAL LETTER J + 0x4B: [662,0,722,33,723], // LATIN CAPITAL LETTER K + 0x4C: [662,0,611,12,598], // LATIN CAPITAL LETTER L + 0x4D: [662,0,889,12,864], // LATIN CAPITAL LETTER M + 0x4E: [662,11,722,12,707], // LATIN CAPITAL LETTER N + 0x4F: [676,14,722,34,688], // LATIN CAPITAL LETTER O + 0x50: [662,0,557,16,542], // LATIN CAPITAL LETTER P + 0x51: [676,177,722,34,701], // LATIN CAPITAL LETTER Q + 0x52: [662,0,667,17,660], // LATIN CAPITAL LETTER R + 0x53: [676,14,556,43,491], // LATIN CAPITAL LETTER S + 0x54: [662,0,611,17,593], // LATIN CAPITAL LETTER T + 0x55: [662,14,722,14,705], // LATIN CAPITAL LETTER U + 0x56: [662,11,722,16,697], // LATIN CAPITAL LETTER V + 0x57: [662,11,944,5,932], // LATIN CAPITAL LETTER W + 0x58: [662,0,722,10,704], // LATIN CAPITAL LETTER X + 0x59: [662,0,722,22,703], // LATIN CAPITAL LETTER Y + 0x5A: [662,0,612,10,598], // LATIN CAPITAL LETTER Z + 0x5B: [662,156,333,88,299], // LEFT SQUARE BRACKET + 0x5C: [676,14,278,-9,287], // REVERSE SOLIDUS + 0x5D: [662,156,333,34,245], // RIGHT SQUARE BRACKET + 0x5E: [662,-297,469,24,446], // CIRCUMFLEX ACCENT + 0x5F: [-75,125,500,0,500], // LOW LINE + 0x60: [678,-507,333,18,242], // GRAVE ACCENT + 0x61: [460,10,444,37,442], // LATIN SMALL LETTER A + 0x62: [683,10,500,3,468], // LATIN SMALL LETTER B + 0x63: [460,10,444,25,412], // LATIN SMALL LETTER C + 0x64: [683,10,500,27,491], // LATIN SMALL LETTER D + 0x65: [460,10,444,25,424], // LATIN SMALL LETTER E + 0x66: [683,0,333,20,383], // LATIN SMALL LETTER F + 0x67: [460,218,500,28,470], // LATIN SMALL LETTER G + 0x68: [683,0,500,9,487], // LATIN SMALL LETTER H + 0x69: [683,0,278,16,253], // LATIN SMALL LETTER I + 0x6A: [683,218,278,-70,194], // LATIN SMALL LETTER J + 0x6B: [683,0,500,7,505], // LATIN SMALL LETTER K + 0x6C: [683,0,278,19,257], // LATIN SMALL LETTER L + 0x6D: [460,0,778,16,775], // LATIN SMALL LETTER M + 0x6E: [460,0,500,16,485], // LATIN SMALL LETTER N + 0x6F: [460,10,500,29,470], // LATIN SMALL LETTER O + 0x70: [460,217,500,5,470], // LATIN SMALL LETTER P + 0x71: [460,217,500,24,488], // LATIN SMALL LETTER Q + 0x72: [460,0,333,5,335], // LATIN SMALL LETTER R + 0x73: [459,10,389,51,348], // LATIN SMALL LETTER S + 0x74: [579,10,278,13,279], // LATIN SMALL LETTER T + 0x75: [450,10,500,9,480], // LATIN SMALL LETTER U + 0x76: [450,14,500,19,477], // LATIN SMALL LETTER V + 0x77: [450,14,722,21,694], // LATIN SMALL LETTER W + 0x78: [450,0,500,17,479], // LATIN SMALL LETTER X + 0x79: [450,218,500,14,475], // LATIN SMALL LETTER Y + 0x7A: [450,0,444,27,418], // LATIN SMALL LETTER Z + 0x7B: [680,181,480,100,350], // LEFT CURLY BRACKET + 0x7C: [676,14,200,67,133], // VERTICAL LINE + 0x7D: [680,181,480,130,380], // RIGHT CURLY BRACKET + 0x7E: [325,-183,541,40,502], // TILDE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xA8: [622,-523,333,18,316], // DIAERESIS + 0xAC: [393,-115,600,48,552], // NOT SIGN + 0xAF: [601,-547,333,11,322], // MACRON + 0xB1: [502,87,685,48,637], // PLUS-MINUS SIGN + 0xB7: [310,-199,250,70,181], // MIDDLE DOT + 0xD7: [529,25,640,43,597], // MULTIPLICATION SIGN + 0xF7: [516,10,564,30,534], // DIVISION SIGN + 0x131: [460,0,278,16,253], // LATIN SMALL LETTER DOTLESS I + 0x237: [460,218,278,-70,193], // LATIN SMALL LETTER DOTLESS J + 0x2C6: [674,-507,333,11,322], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [674,-507,333,11,322], // CARON + 0x2C9: [601,-547,334,11,322], // MODIFIER LETTER MACRON + 0x2CA: [679,-509,333,93,320], // MODIFIER LETTER ACUTE ACCENT + 0x2CB: [679,-509,333,22,249], // MODIFIER LETTER GRAVE ACCENT + 0x2D8: [664,-507,335,27,308], // BREVE + 0x2D9: [622,-523,333,118,217], // DOT ABOVE + 0x2DC: [638,-532,333,1,331], // SMALL TILDE + 0x300: [678,-507,0,-371,-147], // COMBINING GRAVE ACCENT + 0x301: [678,-507,0,-371,-147], // COMBINING ACUTE ACCENT + 0x302: [674,-507,0,-386,-75], // COMBINING CIRCUMFLEX ACCENT + 0x303: [638,-532,0,-395,-65], // COMBINING TILDE + 0x304: [601,-547,0,-385,-74], // COMBINING MACRON + 0x306: [664,-507,0,-373,-92], // COMBINING BREVE + 0x307: [622,-523,0,-280,-181], // COMBINING DOT ABOVE + 0x308: [622,-523,0,-379,-81], // COMBINING DIAERESIS + 0x30A: [711,-512,0,-329,-130], // COMBINING RING ABOVE + 0x30B: [678,-507,0,-401,-22], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [674,-507,0,-385,-74], // COMBINING CARON + 0x338: [662,156,0,-380,31], // COMBINING LONG SOLIDUS OVERLAY + 0x393: [662,0,587,11,577], // GREEK CAPITAL LETTER GAMMA + 0x394: [674,0,722,48,675], // GREEK CAPITAL LETTER DELTA + 0x398: [676,14,722,34,688], // GREEK CAPITAL LETTER THETA + 0x39B: [674,0,702,15,687], // GREEK CAPITAL LETTER LAMDA + 0x39E: [662,0,643,29,614], // GREEK CAPITAL LETTER XI + 0x3A0: [662,0,722,18,703], // GREEK CAPITAL LETTER PI + 0x3A3: [662,0,624,30,600], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [674,0,722,29,703], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [662,0,763,35,728], // GREEK CAPITAL LETTER PHI + 0x3A8: [690,0,746,22,724], // GREEK CAPITAL LETTER PSI + 0x3A9: [676,0,744,29,715], // GREEK CAPITAL LETTER OMEGA + 0x2020: [676,149,500,59,442], // DAGGER + 0x2021: [676,153,500,58,442], // DOUBLE DAGGER + 0x2026: [100,11,1000,111,888], // HORIZONTAL ELLIPSIS + 0x2032: [678,-402,289,75,214], // PRIME + 0x203E: [820,-770,500,0,500], // OVERLINE + 0x20D7: [760,-548,0,-453,-17], // COMBINING RIGHT ARROW ABOVE + 0x2111: [695,34,762,45,711], // BLACK-LETTER CAPITAL I + 0x2118: [547,217,826,52,799], // SCRIPT CAPITAL P + 0x211C: [704,22,874,50,829], // BLACK-LETTER CAPITAL R + 0x2135: [677,13,682,43,634], // ALEF SYMBOL + 0x2190: [449,-58,926,71,857], // LEFTWARDS ARROW + 0x2191: [662,156,511,60,451], // UPWARDS ARROW + 0x2192: [448,-57,926,70,856], // RIGHTWARDS ARROW + 0x2193: [662,156,511,60,451], // DOWNWARDS ARROW + 0x2194: [449,-57,926,38,888], // LEFT RIGHT ARROW + 0x2195: [730,224,511,60,451], // UP DOWN ARROW + 0x2196: [662,156,926,70,856], // NORTH WEST ARROW + 0x2197: [662,156,926,70,856], // NORTH EAST ARROW + 0x2198: [662,156,926,70,856], // SOUTH EAST ARROW + 0x2199: [662,156,926,70,856], // SOUTH WEST ARROW + 0x21A6: [450,-57,926,70,857], // RIGHTWARDS ARROW FROM BAR + 0x21A9: [553,-57,926,70,856], // LEFTWARDS ARROW WITH HOOK + 0x21AA: [553,-57,926,70,856], // RIGHTWARDS ARROW WITH HOOK + 0x21BC: [494,-220,955,54,901], // LEFTWARDS HARPOON WITH BARB UPWARDS + 0x21BD: [286,-12,955,54,901], // LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x21C0: [494,-220,955,54,901], // RIGHTWARDS HARPOON WITH BARB UPWARDS + 0x21C1: [286,-12,955,54,901], // RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x21CC: [539,33,926,70,856], // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21D0: [551,45,926,60,866], // LEFTWARDS DOUBLE ARROW + 0x21D1: [662,156,685,45,641], // UPWARDS DOUBLE ARROW + 0x21D2: [551,45,926,60,866], // RIGHTWARDS DOUBLE ARROW + 0x21D3: [662,156,685,45,641], // DOWNWARDS DOUBLE ARROW + 0x21D4: [517,10,926,20,906], // LEFT RIGHT DOUBLE ARROW + 0x21D5: [730,224,685,45,641], // UP DOWN DOUBLE ARROW + 0x2200: [662,0,560,2,558], // FOR ALL + 0x2202: [668,11,471,40,471], // PARTIAL DIFFERENTIAL + 0x2203: [662,0,560,73,487], // THERE EXISTS + 0x2205: [583,79,762,50,712], // EMPTY SET + 0x2207: [662,12,731,63,667], // NABLA + 0x2208: [531,27,685,60,625], // ELEMENT OF + 0x2209: [662,157,685,60,625], // stix-negated (vert) set membership, variant + 0x220B: [531,27,685,60,625], // CONTAINS AS MEMBER + 0x220F: [763,259,1000,52,948], // N-ARY PRODUCT + 0x2210: [763,259,1000,52,948], // N-ARY COPRODUCT + 0x2211: [763,259,914,58,856], // N-ARY SUMMATION + 0x2212: [286,-220,685,64,621], // MINUS SIGN + 0x2213: [502,87,685,48,637], // MINUS-OR-PLUS SIGN + 0x2215: [710,222,523,46,478], // DIVISION SLASH + 0x2216: [411,-93,428,25,403], // SET MINUS + 0x2217: [471,-33,523,67,457], // ASTERISK OPERATOR + 0x2218: [387,-117,350,40,310], // RING OPERATOR + 0x2219: [387,-117,350,40,310], // BULLET OPERATOR + 0x221A: [973,259,928,112,963], // SQUARE ROOT + 0x221D: [430,0,685,41,643], // PROPORTIONAL TO + 0x221E: [430,0,926,70,854], // INFINITY + 0x2220: [547,0,685,23,643], // ANGLE + 0x2223: [690,189,266,100,166], // DIVIDES + 0x2225: [690,189,523,129,394], // PARALLEL TO + 0x2227: [536,29,620,31,589], // LOGICAL AND + 0x2228: [536,29,620,31,589], // LOGICAL OR + 0x2229: [536,31,620,48,572], // stix-intersection, serifs + 0x222A: [536,31,620,48,572], // stix-union, serifs + 0x222B: [824,320,459,32,639], // INTEGRAL + 0x223C: [362,-148,685,48,637], // TILDE OPERATOR + 0x2240: [547,42,286,35,249], // WREATH PRODUCT + 0x2243: [445,-55,685,48,637], // ASYMPTOTICALLY EQUAL TO + 0x2245: [532,27,685,48,637], // APPROXIMATELY EQUAL TO + 0x2248: [475,-25,685,48,637], // ALMOST EQUAL TO + 0x224D: [498,-8,685,48,637], // EQUIVALENT TO + 0x2250: [611,-120,685,48,637], // APPROACHES THE LIMIT + 0x2260: [662,156,685,48,637], // stix-not (vert) equals + 0x2261: [478,-28,685,48,637], // IDENTICAL TO + 0x2264: [609,103,685,64,629], // LESS-THAN OR EQUAL TO + 0x2265: [609,103,685,64,629], // GREATER-THAN OR EQUAL TO + 0x226A: [532,26,933,25,908], // MUCH LESS-THAN + 0x226B: [532,26,933,25,908], // MUCH GREATER-THAN + 0x227A: [532,26,685,64,621], // PRECEDES + 0x227B: [532,26,685,64,621], // SUCCEEDS + 0x227C: [628,120,685,64,621], // PRECEDES OR EQUAL TO + 0x227D: [629,119,685,64,621], // SUCCEEDS OR EQUAL TO + 0x2282: [531,25,685,64,621], // SUBSET OF + 0x2283: [531,25,685,64,621], // SUPERSET OF + 0x2286: [607,103,685,64,621], // SUBSET OF OR EQUAL TO + 0x2287: [607,103,685,64,621], // SUPERSET OF OR EQUAL TO + 0x228E: [536,31,620,48,572], // MULTISET UNION + 0x2291: [607,103,685,64,621], // SQUARE IMAGE OF OR EQUAL TO + 0x2292: [607,103,685,64,621], // SQUARE ORIGINAL OF OR EQUAL TO + 0x2293: [536,31,620,48,572], // stix-square intersection, serifs + 0x2294: [536,31,620,48,572], // stix-square union, serifs + 0x2295: [623,119,842,50,792], // stix-circled plus (with rim) + 0x2296: [623,119,842,50,792], // CIRCLED MINUS + 0x2297: [623,119,842,50,792], // stix-circled times (with rim) + 0x2298: [623,119,842,50,792], // CIRCLED DIVISION SLASH + 0x2299: [583,79,762,50,712], // CIRCLED DOT OPERATOR + 0x22A2: [662,0,685,64,621], // RIGHT TACK + 0x22A3: [662,0,685,64,621], // LEFT TACK + 0x22A4: [662,0,685,48,637], // DOWN TACK + 0x22A5: [662,0,685,48,637], // UP TACK + 0x22A8: [662,0,685,64,621], // TRUE + 0x22C0: [763,259,924,54,870], // N-ARY LOGICAL AND + 0x22C1: [763,259,924,54,870], // N-ARY LOGICAL OR + 0x22C2: [778,254,924,94,830], // N-ARY INTERSECTION + 0x22C3: [768,264,924,94,830], // N-ARY UNION + 0x22C4: [488,-16,523,26,497], // DIAMOND OPERATOR + 0x22C5: [313,-193,286,83,203], // DOT OPERATOR + 0x22C6: [597,13,700,35,665], // STAR OPERATOR + 0x22C8: [582,80,810,54,756], // BOWTIE + 0x22EE: [606,104,511,192,319], // VERTICAL ELLIPSIS + 0x22EF: [316,-189,926,108,818], // MIDLINE HORIZONTAL ELLIPSIS + 0x22F1: [520,18,926,194,732], // DOWN RIGHT DIAGONAL ELLIPSIS + 0x2308: [713,213,469,188,447], // LEFT CEILING + 0x2309: [713,213,469,27,286], // RIGHT CEILING + 0x230A: [713,213,469,188,447], // LEFT FLOOR + 0x230B: [713,213,469,27,286], // RIGHT FLOOR + 0x2322: [360,-147,1019,54,965], // stix-small down curve + 0x2323: [360,-147,1019,54,965], // stix-small up curve + 0x23AF: [286,-220,315,0,315], // HORIZONTAL LINE EXTENSION + 0x23D0: [405,-101,511,222,288], // VERTICAL LINE EXTENSION (used to extend arrows) + 0x25B3: [811,127,1145,35,1110], // WHITE UP-POINTING TRIANGLE + 0x25B9: [555,50,660,80,605], // WHITE RIGHT-POINTING SMALL TRIANGLE + 0x25BD: [811,127,1145,35,1110], // WHITE DOWN-POINTING TRIANGLE + 0x25C3: [554,51,660,55,580], // WHITE LEFT-POINTING SMALL TRIANGLE + 0x25EF: [785,282,1207,70,1137], // LARGE CIRCLE + 0x2660: [609,99,685,34,651], // BLACK SPADE SUIT + 0x2661: [603,105,685,34,651], // WHITE HEART SUIT + 0x2662: [609,105,685,41,643], // WHITE DIAMOND SUIT + 0x2663: [603,99,685,34,651], // BLACK CLUB SUIT + 0x266D: [768,10,426,57,346], // MUSIC FLAT SIGN + 0x266E: [768,181,426,75,350], // MUSIC NATURAL SIGN + 0x266F: [768,181,426,41,386], // MUSIC SHARP SIGN + 0x27E8: [713,213,400,77,335], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [713,213,400,65,323], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27EE: [676,177,233,56,211], // MATHEMATICAL LEFT FLATTENED PARENTHESIS + 0x27EF: [676,177,233,22,177], // MATHEMATICAL RIGHT FLATTENED PARENTHESIS + 0x27F5: [449,-58,1574,55,1519], // LONG LEFTWARDS ARROW + 0x27F6: [449,-57,1574,55,1519], // LONG RIGHTWARDS ARROW + 0x27F7: [449,-57,1574,55,1519], // LONG LEFT RIGHT ARROW + 0x27F8: [551,45,1574,55,1519], // LONG LEFTWARDS DOUBLE ARROW + 0x27F9: [551,45,1574,55,1519], // LONG RIGHTWARDS DOUBLE ARROW + 0x27FA: [517,10,1574,55,1519], // LONG LEFT RIGHT DOUBLE ARROW + 0x27FB: [450,-57,1574,55,1519], // LONG LEFTWARDS ARROW FROM BAR + 0x27FC: [450,-57,1574,55,1519], // LONG RIGHTWARDS ARROW FROM BAR + 0x29F5: [710,222,523,46,478], // REVERSE SOLIDUS OPERATOR + 0x2A00: [763,259,1126,53,1073], // N-ARY CIRCLED DOT OPERATOR + 0x2A01: [763,259,1126,53,1073], // N-ARY CIRCLED PLUS OPERATOR + 0x2A02: [763,259,1126,53,1073], // N-ARY CIRCLED TIMES OPERATOR + 0x2A03: [768,264,924,94,830], // N-ARY UNION OPERATOR WITH DOT + 0x2A04: [768,264,924,94,830], // N-ARY UNION OPERATOR WITH PLUS + 0x2A05: [763,259,924,94,830], // N-ARY SQUARE INTERSECTION OPERATOR + 0x2A06: [763,259,924,94,830], // N-ARY SQUARE UNION OPERATOR + 0x2A3F: [662,0,694,30,664], // AMALGAMATION OR COPRODUCT + 0x2AAF: [609,103,685,64,621], // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN + 0x2AB0: [609,103,685,64,621] // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN + }; + + HTMLCSS.FONTDATA.FONTS['STIXGeneral-bold'] = { + directory: 'General/Bold', + family: 'STIXGeneral', + weight: 'bold', + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x250,0x2AF,"IPAExtensions"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x400,0x4FF,"Cyrillic"], + [0x1D00,0x1DBF,"PhoneticExtensions"], + [0x1E00,0x1EFF,"LatinExtendedAdditional"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x2070,0x209F,"SuperAndSubscripts"], + [0x20A0,0x20CF,"CurrencySymbols"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2150,0x218F,"NumberForms"], + [0x2190,0x21FF,"Arrows"], + [0x2200,0x22FF,"MathOperators"], + [0x2300,0x23FF,"MiscTechnical"], + [0x2400,0x243F,"ControlPictures"], + [0x2460,0x24FF,"EnclosedAlphanum"], + [0x2500,0x257F,"BoxDrawing"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x27C0,0x27EF,"MiscMathSymbolsA"], + [0x2980,0x29FF,"MiscMathSymbolsB"], + [0x2A00,0x2AFF,"SuppMathOperators"], + [0xA720,0xA7FF,"LatinExtendedD"], + [0xFB00,0xFB4F,"AlphaPresentForms"], + [0x1D400,0x1D433,"MathBold"], + [0x1D538,0x1D56B,"BBBold"], + [0x1D56C,0x1D59F,"BoldFraktur"], + [0x1D5D4,0x1D607,"MathSSBold"], + [0x1D6A8,0x1D6E1,"GreekBold"], + [0x1D756,0x1D78F,"GreekSSBold"], + [0x1D7CE,0x1D7D7,"MathBold"], + [0x1D7EC,0x1D7F6,"MathSSBold"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [691,13,333,81,251], // EXCLAMATION MARK + 0x22: [691,-404,555,83,472], // QUOTATION MARK + 0x23: [700,0,500,5,495], // NUMBER SIGN + 0x24: [750,99,500,29,472], // DOLLAR SIGN + 0x25: [706,29,749,61,688], // PERCENT SIGN + 0x26: [691,16,833,62,789], // AMPERSAND + 0x27: [691,-404,278,75,204], // APOSTROPHE + 0x28: [694,168,333,46,306], // LEFT PARENTHESIS + 0x29: [694,168,333,27,287], // RIGHT PARENTHESIS + 0x2A: [691,-255,500,56,448], // ASTERISK + 0x2B: [563,57,750,65,685], // PLUS SIGN + 0x2C: [155,180,250,39,223], // COMMA + 0x2D: [287,-171,333,44,287], // HYPHEN-MINUS + 0x2E: [156,13,250,41,210], // FULL STOP + 0x2F: [691,19,278,-24,302], // SOLIDUS + 0x30: [688,13,500,24,476], // DIGIT ZERO + 0x31: [688,0,500,65,441], // DIGIT ONE + 0x32: [688,0,500,17,478], // DIGIT TWO + 0x33: [688,14,500,16,468], // DIGIT THREE + 0x34: [688,0,500,19,476], // DIGIT FOUR + 0x35: [676,8,500,22,470], // DIGIT FIVE + 0x36: [688,13,500,28,475], // DIGIT SIX + 0x37: [676,0,500,17,477], // DIGIT SEVEN + 0x38: [688,13,500,28,472], // DIGIT EIGHT + 0x39: [688,13,500,26,473], // DIGIT NINE + 0x3A: [472,13,333,82,251], // COLON + 0x3B: [472,180,333,82,266], // SEMICOLON + 0x3C: [534,24,750,80,670], // LESS-THAN SIGN + 0x3D: [399,-107,750,68,682], // EQUALS SIGN + 0x3E: [534,24,750,80,670], // GREATER-THAN SIGN + 0x3F: [689,13,500,57,445], // QUESTION MARK + 0x40: [691,19,930,108,822], // COMMERCIAL AT + 0x41: [690,0,722,9,689], // LATIN CAPITAL LETTER A + 0x42: [676,0,667,16,619], // LATIN CAPITAL LETTER B + 0x43: [691,19,722,49,687], // LATIN CAPITAL LETTER C + 0x44: [676,0,722,14,690], // LATIN CAPITAL LETTER D + 0x45: [676,0,667,16,641], // LATIN CAPITAL LETTER E + 0x46: [676,0,611,16,583], // LATIN CAPITAL LETTER F + 0x47: [691,19,778,37,755], // LATIN CAPITAL LETTER G + 0x48: [676,0,778,21,759], // LATIN CAPITAL LETTER H + 0x49: [676,0,389,20,370], // LATIN CAPITAL LETTER I + 0x4A: [676,96,500,3,478], // LATIN CAPITAL LETTER J + 0x4B: [676,0,778,30,769], // LATIN CAPITAL LETTER K + 0x4C: [677,0,667,19,638], // LATIN CAPITAL LETTER L + 0x4D: [676,0,944,14,921], // LATIN CAPITAL LETTER M + 0x4E: [676,18,722,16,701], // LATIN CAPITAL LETTER N + 0x4F: [691,19,778,35,743], // LATIN CAPITAL LETTER O + 0x50: [676,0,611,16,600], // LATIN CAPITAL LETTER P + 0x51: [691,176,778,35,743], // LATIN CAPITAL LETTER Q + 0x52: [676,0,722,26,716], // LATIN CAPITAL LETTER R + 0x53: [692,19,556,35,513], // LATIN CAPITAL LETTER S + 0x54: [676,0,667,31,636], // LATIN CAPITAL LETTER T + 0x55: [676,19,722,16,701], // LATIN CAPITAL LETTER U + 0x56: [676,18,722,16,701], // LATIN CAPITAL LETTER V + 0x57: [676,15,1000,19,981], // LATIN CAPITAL LETTER W + 0x58: [676,0,722,16,699], // LATIN CAPITAL LETTER X + 0x59: [676,0,722,15,699], // LATIN CAPITAL LETTER Y + 0x5A: [676,0,667,28,634], // LATIN CAPITAL LETTER Z + 0x5B: [678,149,333,67,301], // LEFT SQUARE BRACKET + 0x5C: [691,19,278,-25,303], // REVERSE SOLIDUS + 0x5D: [678,149,333,32,266], // RIGHT SQUARE BRACKET + 0x5E: [676,-311,581,73,509], // CIRCUMFLEX ACCENT + 0x5F: [-75,125,500,0,500], // LOW LINE + 0x60: [713,-528,333,8,246], // GRAVE ACCENT + 0x61: [473,14,500,25,488], // LATIN SMALL LETTER A + 0x62: [676,14,556,17,521], // LATIN SMALL LETTER B + 0x63: [473,14,444,25,430], // LATIN SMALL LETTER C + 0x64: [676,14,556,25,534], // LATIN SMALL LETTER D + 0x65: [473,14,444,25,427], // LATIN SMALL LETTER E + 0x66: [691,0,333,14,389], // LATIN SMALL LETTER F + 0x67: [473,206,500,28,483], // LATIN SMALL LETTER G + 0x68: [676,0,556,15,534], // LATIN SMALL LETTER H + 0x69: [691,0,278,15,256], // LATIN SMALL LETTER I + 0x6A: [691,203,333,-57,263], // LATIN SMALL LETTER J + 0x6B: [676,0,556,22,543], // LATIN SMALL LETTER K + 0x6C: [676,0,278,15,256], // LATIN SMALL LETTER L + 0x6D: [473,0,833,15,814], // LATIN SMALL LETTER M + 0x6E: [473,0,556,21,539], // LATIN SMALL LETTER N + 0x6F: [473,14,500,25,476], // LATIN SMALL LETTER O + 0x70: [473,205,556,19,524], // LATIN SMALL LETTER P + 0x71: [473,205,556,34,536], // LATIN SMALL LETTER Q + 0x72: [473,0,444,28,434], // LATIN SMALL LETTER R + 0x73: [473,14,389,25,361], // LATIN SMALL LETTER S + 0x74: [630,12,333,19,332], // LATIN SMALL LETTER T + 0x75: [461,14,556,16,538], // LATIN SMALL LETTER U + 0x76: [461,14,500,21,485], // LATIN SMALL LETTER V + 0x77: [461,14,722,23,707], // LATIN SMALL LETTER W + 0x78: [461,0,500,12,484], // LATIN SMALL LETTER X + 0x79: [461,205,500,16,482], // LATIN SMALL LETTER Y + 0x7A: [461,0,444,21,420], // LATIN SMALL LETTER Z + 0x7B: [698,175,394,22,340], // LEFT CURLY BRACKET + 0x7C: [691,19,220,66,154], // VERTICAL LINE + 0x7D: [698,175,394,54,372], // RIGHT CURLY BRACKET + 0x7E: [333,-173,520,29,491], // TILDE + 0x393: [676,0,620,16,593], // GREEK CAPITAL LETTER GAMMA + 0x394: [690,0,722,33,673], // GREEK CAPITAL LETTER DELTA + 0x398: [692,18,778,35,743], // GREEK CAPITAL LETTER THETA + 0x39B: [690,0,707,9,674], // GREEK CAPITAL LETTER LAMDA + 0x39E: [676,0,647,40,607], // GREEK CAPITAL LETTER XI + 0x3A0: [676,0,778,21,759], // GREEK CAPITAL LETTER PI + 0x3A3: [676,0,671,28,641], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [692,0,703,7,693], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [676,0,836,18,818], // GREEK CAPITAL LETTER PHI + 0x3A8: [692,0,808,15,797], // GREEK CAPITAL LETTER PSI + 0x3A9: [692,0,768,28,740] // GREEK CAPITAL LETTER OMEGA + }; + + HTMLCSS.FONTDATA.FONTS['STIXGeneral-italic'] = { + directory: 'General/Italic', + family: 'STIXGeneral', + style: 'italic', + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x250,0x2AF,"IPAExtensions"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x400,0x4FF,"Cyrillic"], + [0x1E00,0x1EFF,"LatinExtendedAdditional"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x20A0,0x20CF,"CurrencySymbols"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2200,0x22FF,"MathOperators"], + [0x2400,0x243F,"ControlPictures"], + [0x2460,0x24FF,"EnclosedAlphanum"], + [0x2500,0x257F,"BoxDrawing"], + [0xFB00,0xFB4F,"AlphaPresentForms"], + [0x1D434,0x1D467,"MathItalic"], + [0x1D49C,0x1D4CF,"MathScript"], + [0x1D608,0x1D63B,"MathSSItalic"], + [0x1D6A4,0x1D6A5,"ij"], + [0x1D6E2,0x1D71B,"GreekItalic"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [667,11,333,39,304], // EXCLAMATION MARK + 0x22: [666,-421,420,144,432], // QUOTATION MARK + 0x23: [676,0,501,2,540], // NUMBER SIGN + 0x24: [731,89,500,32,497], // DOLLAR SIGN + 0x25: [706,19,755,80,705], // PERCENT SIGN + 0x26: [666,18,778,76,723], // AMPERSAND + 0x27: [666,-421,214,132,241], // APOSTROPHE + 0x28: [669,181,333,42,315], // LEFT PARENTHESIS + 0x29: [669,180,333,16,289], // RIGHT PARENTHESIS + 0x2A: [666,-255,500,128,492], // ASTERISK + 0x2B: [506,0,675,86,590], // PLUS SIGN + 0x2C: [101,129,250,-5,135], // COMMA + 0x2D: [255,-192,333,49,282], // HYPHEN-MINUS + 0x2E: [100,11,250,27,138], // FULL STOP + 0x2F: [666,18,278,-65,386], // SOLIDUS + 0x30: [676,7,500,32,497], // DIGIT ZERO + 0x31: [676,0,500,50,409], // DIGIT ONE + 0x32: [676,0,500,12,452], // DIGIT TWO + 0x33: [676,7,500,16,465], // DIGIT THREE + 0x34: [676,0,500,1,479], // DIGIT FOUR + 0x35: [666,7,500,15,491], // DIGIT FIVE + 0x36: [686,7,500,30,521], // DIGIT SIX + 0x37: [666,8,500,75,537], // DIGIT SEVEN + 0x38: [676,7,500,30,493], // DIGIT EIGHT + 0x39: [676,17,500,23,492], // DIGIT NINE + 0x3A: [441,11,333,50,261], // COLON + 0x3B: [441,129,333,26,261], // SEMICOLON + 0x3C: [516,10,675,84,592], // LESS-THAN SIGN + 0x3D: [386,-120,675,86,590], // EQUALS SIGN + 0x3E: [516,10,675,84,592], // GREATER-THAN SIGN + 0x3F: [664,12,500,132,472], // QUESTION MARK + 0x40: [666,18,920,118,806], // COMMERCIAL AT + 0x41: [668,0,611,-51,564], // LATIN CAPITAL LETTER A + 0x42: [653,0,611,-8,588], // LATIN CAPITAL LETTER B + 0x43: [666,18,667,66,689], // LATIN CAPITAL LETTER C + 0x44: [653,0,722,-8,700], // LATIN CAPITAL LETTER D + 0x45: [653,0,611,-1,634], // LATIN CAPITAL LETTER E + 0x46: [653,0,611,8,645], // LATIN CAPITAL LETTER F + 0x47: [666,18,722,52,722], // LATIN CAPITAL LETTER G + 0x48: [653,0,722,-8,769], // LATIN CAPITAL LETTER H + 0x49: [653,0,333,-8,384], // LATIN CAPITAL LETTER I + 0x4A: [653,18,444,-6,491], // LATIN CAPITAL LETTER J + 0x4B: [653,0,667,7,722], // LATIN CAPITAL LETTER K + 0x4C: [653,0,556,-8,559], // LATIN CAPITAL LETTER L + 0x4D: [653,0,833,-18,872], // LATIN CAPITAL LETTER M + 0x4E: [653,15,667,-20,727], // LATIN CAPITAL LETTER N + 0x4F: [667,18,722,60,699], // LATIN CAPITAL LETTER O + 0x50: [653,0,611,0,605], // LATIN CAPITAL LETTER P + 0x51: [666,182,722,59,699], // LATIN CAPITAL LETTER Q + 0x52: [653,0,611,-13,588], // LATIN CAPITAL LETTER R + 0x53: [667,18,500,17,508], // LATIN CAPITAL LETTER S + 0x54: [653,0,556,59,633], // LATIN CAPITAL LETTER T + 0x55: [653,18,722,102,765], // LATIN CAPITAL LETTER U + 0x56: [653,18,611,76,688], // LATIN CAPITAL LETTER V + 0x57: [653,18,833,71,906], // LATIN CAPITAL LETTER W + 0x58: [653,0,611,-29,655], // LATIN CAPITAL LETTER X + 0x59: [653,0,556,78,633], // LATIN CAPITAL LETTER Y + 0x5A: [653,0,556,-6,606], // LATIN CAPITAL LETTER Z + 0x5B: [663,153,389,21,391], // LEFT SQUARE BRACKET + 0x5C: [666,18,278,-41,319], // REVERSE SOLIDUS + 0x5D: [663,153,389,12,382], // RIGHT SQUARE BRACKET + 0x5E: [666,-301,422,0,422], // CIRCUMFLEX ACCENT + 0x5F: [-75,125,500,0,500], // LOW LINE + 0x60: [664,-492,333,120,311], // GRAVE ACCENT + 0x61: [441,11,501,17,476], // LATIN SMALL LETTER A + 0x62: [683,11,500,23,473], // LATIN SMALL LETTER B + 0x63: [441,11,444,30,425], // LATIN SMALL LETTER C + 0x64: [683,13,500,15,527], // LATIN SMALL LETTER D + 0x65: [441,11,444,31,412], // LATIN SMALL LETTER E + 0x66: [678,207,278,-147,424], // LATIN SMALL LETTER F + 0x67: [441,206,500,8,471], // LATIN SMALL LETTER G + 0x68: [683,9,500,19,478], // LATIN SMALL LETTER H + 0x69: [654,11,278,49,264], // LATIN SMALL LETTER I + 0x6A: [652,207,278,-124,279], // LATIN SMALL LETTER J + 0x6B: [683,11,444,14,461], // LATIN SMALL LETTER K + 0x6C: [683,11,278,41,279], // LATIN SMALL LETTER L + 0x6D: [441,9,722,12,704], // LATIN SMALL LETTER M + 0x6E: [441,9,500,14,474], // LATIN SMALL LETTER N + 0x6F: [441,11,500,27,468], // LATIN SMALL LETTER O + 0x70: [441,205,504,-75,472], // LATIN SMALL LETTER P + 0x71: [441,209,500,25,484], // LATIN SMALL LETTER Q + 0x72: [441,0,389,45,412], // LATIN SMALL LETTER R + 0x73: [442,13,389,16,366], // LATIN SMALL LETTER S + 0x74: [546,11,278,38,296], // LATIN SMALL LETTER T + 0x75: [441,11,500,42,475], // LATIN SMALL LETTER U + 0x76: [441,18,444,20,426], // LATIN SMALL LETTER V + 0x77: [441,18,667,15,648], // LATIN SMALL LETTER W + 0x78: [441,11,444,-27,447], // LATIN SMALL LETTER X + 0x79: [441,206,444,-24,426], // LATIN SMALL LETTER Y + 0x7A: [428,81,389,-2,380], // LATIN SMALL LETTER Z + 0x7B: [687,177,400,51,407], // LEFT CURLY BRACKET + 0x7C: [666,18,275,105,171], // VERTICAL LINE + 0x7D: [687,177,400,-7,349], // RIGHT CURLY BRACKET + 0x7E: [323,-183,541,40,502], // TILDE + 0x131: [441,11,278,47,235], // LATIN SMALL LETTER DOTLESS I + 0x237: [441,207,278,-124,246], // LATIN SMALL LETTER DOTLESS J + 0x393: [653,0,611,8,645], // GREEK CAPITAL LETTER GAMMA + 0x394: [668,0,611,-32,526], // GREEK CAPITAL LETTER DELTA + 0x398: [667,18,722,60,699], // GREEK CAPITAL LETTER THETA + 0x39B: [668,0,611,-51,564], // GREEK CAPITAL LETTER LAMDA + 0x39E: [653,0,651,-6,680], // GREEK CAPITAL LETTER XI + 0x3A0: [653,0,722,-8,769], // GREEK CAPITAL LETTER PI + 0x3A3: [653,0,620,-6,659], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [668,0,556,78,648], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [653,0,741,50,731], // GREEK CAPITAL LETTER PHI + 0x3A8: [667,0,675,77,778], // GREEK CAPITAL LETTER PSI + 0x3A9: [666,0,762,-6,739], // GREEK CAPITAL LETTER OMEGA + 0x3B1: [441,11,552,27,549], // GREEK SMALL LETTER ALPHA + 0x3B2: [678,205,506,-40,514], // GREEK SMALL LETTER BETA + 0x3B3: [435,206,410,19,438], // GREEK SMALL LETTER GAMMA + 0x3B4: [668,11,460,24,460], // GREEK SMALL LETTER DELTA + 0x3B5: [441,11,444,30,425], // GREEK SMALL LETTER EPSILON + 0x3B6: [683,185,454,30,475], // GREEK SMALL LETTER ZETA + 0x3B7: [441,205,474,14,442], // GREEK SMALL LETTER ETA + 0x3B8: [678,11,480,27,494], // GREEK SMALL LETTER THETA + 0x3B9: [441,11,278,49,235], // GREEK SMALL LETTER IOTA + 0x3BA: [441,13,444,14,465], // GREEK SMALL LETTER KAPPA + 0x3BB: [678,16,458,-12,431], // GREEK SMALL LETTER LAMDA + 0x3BC: [428,205,526,-33,483], // GREEK SMALL LETTER MU + 0x3BD: [441,18,470,20,459], // GREEK SMALL LETTER NU + 0x3BE: [683,185,454,30,446], // GREEK SMALL LETTER XI + 0x3BF: [441,11,500,27,468], // GREEK SMALL LETTER OMICRON + 0x3C0: [428,18,504,19,536], // GREEK SMALL LETTER PI + 0x3C1: [441,205,504,-40,471], // GREEK SMALL LETTER RHO + 0x3C2: [441,185,454,30,453], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [428,11,498,27,531], // GREEK SMALL LETTER SIGMA + 0x3C4: [428,11,410,12,426], // GREEK SMALL LETTER TAU + 0x3C5: [441,10,478,19,446], // GREEK SMALL LETTER UPSILON + 0x3C6: [441,205,622,27,590], // GREEK SMALL LETTER PHI + 0x3C7: [441,207,457,-108,498], // GREEK SMALL LETTER CHI + 0x3C8: [441,205,584,15,668], // GREEK SMALL LETTER PSI + 0x3C9: [439,11,686,27,654], // GREEK SMALL LETTER OMEGA + 0x3D1: [678,10,556,19,526], // GREEK THETA SYMBOL + 0x3D5: [683,205,627,27,595], // GREEK PHI SYMBOL + 0x3D6: [428,11,792,17,832], // GREEK PI SYMBOL + 0x3F1: [441,205,516,27,484], // GREEK RHO SYMBOL + 0x3F5: [441,11,444,30,420], // GREEK LUNATE EPSILON SYMBOL + 0x2113: [687,11,579,48,571] // SCRIPT SMALL L + }; + + HTMLCSS.FONTDATA.FONTS['STIXIntegralsD'] = { + directory: 'IntegralsD/Regular', + family: 'STIXIntegralsD', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0x222B,0x2233,"All"], + [0x2A0B,0x2A1C,"All"] + ], + 0x222B: [2000,269,585,56,1035], // INTEGRAL + 0x222E: [2000,269,635,56,1035] // CONTOUR INTEGRAL + }; + + HTMLCSS.FONTDATA.FONTS['STIXNonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'STIXNonUnicode', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0xE000,0xF8FF,"PrivateUse"] + ], + 0xE000: [610,25,1184,829,895], // stix-radical symbol vertical extender + 0xE001: [667,-41,1184,829,1211], // stix-radical symbol top corner piece + 0xE138: [634,-584,480,-10,490], // stix-horizontal extender for multiple character over accent arrows, harpoons, line + 0xE139: [-127,177,480,-10,490], // stix-horizontal extender for multiple character under accent arrows, harpoons, line + 0xE13B: [955,-512,897,-25,908], // stix-left end of extensible overbrace (CMEX10 x3A rotated 90deg) + 0xE13C: [955,-512,897,-11,922], // stix-right end of extensible overbrace (CMEX10 x38 rotated 90deg) + 0xE13D: [182,261,897,-25,908], // stix-left end of extensible underbrace (CMEX10 x3B rotated 90deg) + 0xE13E: [182,261,897,-11,922], // stix-right end of extensible underbrace (CMEX10 x39 rotated 90deg) + 0xE140: [1218,-820,1844,-10,1854], // stix-center of extensible overbrace (CMEX10 x3C rotated 90deg) + 0xE141: [-126,524,1844,-10,1854], // stix-center of extensible underbrace (CMEX10 x3D rotated 90deg) + 0xE14A: [955,-820,633,-1,634], // stix-extensible horizontal for over paren or square bracket (CMEX10 x42 rotated 90deg) + 0xE14B: [-126,261,633,-1,634], // stix-extensible horizontal for under paren or square bracket (CMEX10 x43 rotated 90deg) + 0xE261: [422,10,523,41,481], // stix-old style digit 0 + 0xE265: [421,0,523,127,405], // stix-old style digit 1 + 0xE269: [421,0,523,68,455], // stix-old style digit 2 + 0xE26D: [424,198,523,47,463], // stix-old style digit 3 + 0xE271: [420,198,523,58,480], // stix-old style digit 4 + 0xE275: [421,198,523,66,457], // stix-old style digit 5 + 0xE279: [612,8,523,37,486], // stix-old style digit 6 + 0xE27D: [421,198,523,25,490], // stix-old style digit 7 + 0xE281: [606,12,523,47,477], // stix-old style digit 8 + 0xE285: [421,200,523,41,483], // stix-old style digit 9 + 0xE28F: [135,0,325,-1,326], // stix-short horizontal extender at baseline + 0xE290: [135,0,633,-1,634] // stix-long horizontal extender at baseline + }; + + HTMLCSS.FONTDATA.FONTS['STIXNonUnicode-bold'] = { + directory: 'NonUnicode/Bold', + family: 'STIXNonUnicode', + weight: 'bold', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0xE000,0xF8FF,"PrivateUse"] + ] + + }; + + HTMLCSS.FONTDATA.FONTS['STIXNonUnicode-italic'] = { + directory: 'NonUnicode/Italic', + family: 'STIXNonUnicode', + style: 'italic', + Ranges: [ + [0x20,0x20,"All"], + [0xA0,0xA0,"All"], + [0xE000,0xF8FF,"PrivateUse"] + ], + 0xE22D: [677,45,852,43,812], // stix-mathematical calligraphic capital A + 0xE22E: [670,3,724,35,709], // stix-mathematical calligraphic capital B + 0xE22F: [671,11,569,43,586], // stix-mathematical calligraphic capital C + 0xE230: [662,0,801,34,788], // stix-mathematical calligraphic capital D + 0xE231: [670,4,553,40,599], // stix-mathematical calligraphic capital E + 0xE232: [662,0,652,43,710], // stix-mathematical calligraphic capital F + 0xE233: [671,131,580,40,580], // stix-mathematical calligraphic capital G + 0xE234: [664,21,831,41,845], // stix-mathematical calligraphic capital H + 0xE235: [662,0,575,38,591], // stix-mathematical calligraphic capital I + 0xE236: [662,120,632,31,785], // stix-mathematical calligraphic capital J + 0xE237: [670,13,809,30,783], // stix-mathematical calligraphic capital K + 0xE238: [670,7,693,30,653], // stix-mathematical calligraphic capital L + 0xE239: [671,45,1166,40,1128], // stix-mathematical calligraphic capital M + 0xE23A: [795,37,957,40,1064], // stix-mathematical calligraphic capital N + 0xE23B: [669,10,737,38,729], // stix-mathematical calligraphic capital O + 0xE23C: [662,0,667,38,709], // stix-mathematical calligraphic capital P + 0xE23D: [671,131,744,43,704], // stix-mathematical calligraphic capital Q + 0xE23E: [662,3,854,38,816], // stix-mathematical calligraphic capital R + 0xE23F: [671,0,634,38,671], // stix-mathematical calligraphic capital S + 0xE240: [721,0,509,41,730], // stix-mathematical calligraphic capital T + 0xE241: [672,13,817,37,950], // stix-mathematical calligraphic capital U + 0xE242: [677,33,638,33,680], // stix-mathematical calligraphic capital V + 0xE243: [685,32,956,33,998], // stix-mathematical calligraphic capital W + 0xE244: [672,13,692,38,739], // stix-mathematical calligraphic capital X + 0xE245: [675,131,719,34,763], // stix-mathematical calligraphic capital Y + 0xE246: [664,94,752,38,714] // stix-mathematical calligraphic capital Z + }; + + HTMLCSS.FONTDATA.FONTS['STIXSizeOneSym'] = { + directory: 'SizeOneSym/Regular', + family: 'STIXSizeOneSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x2140,0x2140,"All"], + [0x221A,0x221C,"All"], + [0x2320,0x2321,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"], + [0x2772,0x2773,"All"], + [0x27E6,0x27EB,"All"], + [0x2983,0x2986,"All"], + [0x29F8,0x29F9,"All"], + [0x2A00,0x2A0A,"All"], + [0x2AFC,0x2AFF,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1066,164,468,139,382], // LEFT PARENTHESIS + 0x29: [1066,164,468,86,329], // RIGHT PARENTHESIS + 0x2F: [1066,164,579,25,552], // SOLIDUS + 0x5B: [1066,164,383,180,363], // LEFT SQUARE BRACKET + 0x5C: [1066,164,579,27,552], // REVERSE SOLIDUS + 0x5D: [1066,164,383,20,203], // RIGHT SQUARE BRACKET + 0x5F: [-127,177,1000,0,1000], // LOW LINE + 0x7B: [1066,164,575,114,466], // LEFT CURLY BRACKET + 0x7D: [1066,164,575,109,461], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [767,-554,0,-720,-160], // COMBINING CIRCUMFLEX ACCENT + 0x303: [750,-598,0,-722,-162], // COMBINING TILDE + 0x220F: [1500,-49,1355,50,1305], // N-ARY PRODUCT + 0x2210: [1500,-49,1355,50,1305], // N-ARY COPRODUCT + 0x2211: [1499,-49,1292,90,1202], // N-ARY SUMMATION + 0x221A: [1552,295,1057,112,1089], // SQUARE ROOT + 0x22C0: [1500,-49,1265,60,1205], // N-ARY LOGICAL AND + 0x22C1: [1500,-49,1265,60,1205], // N-ARY LOGICAL OR + 0x22C2: [1510,-49,1265,118,1147], // N-ARY INTERSECTION + 0x22C3: [1500,-39,1265,118,1147], // N-ARY UNION + 0x2308: [1066,164,453,180,426], // LEFT CEILING + 0x2309: [1066,164,453,25,273], // RIGHT CEILING + 0x230A: [1066,164,453,180,428], // LEFT FLOOR + 0x230B: [1066,164,453,27,273], // RIGHT FLOOR + 0x239B: [700,305,450,50,400], // LEFT PARENTHESIS UPPER HOOK + 0x239C: [705,305,450,50,174], // LEFT PARENTHESIS EXTENSION + 0x239D: [705,300,450,50,400], // LEFT PARENTHESIS LOWER HOOK + 0x239E: [700,305,450,50,400], // RIGHT PARENTHESIS UPPER HOOK + 0x239F: [705,305,450,276,400], // RIGHT PARENTHESIS EXTENSION + 0x23A0: [705,300,450,50,400], // RIGHT PARENTHESIS LOWER HOOK + 0x23A1: [682,323,450,50,415], // LEFT SQUARE BRACKET UPPER CORNER + 0x23A2: [687,323,450,50,150], // LEFT SQUARE BRACKET EXTENSION + 0x23A3: [687,318,450,50,415], // LEFT SQUARE BRACKET LOWER CORNER + 0x23A4: [682,323,450,35,400], // RIGHT SQUARE BRACKET UPPER CORNER + 0x23A5: [687,323,450,300,400], // RIGHT SQUARE BRACKET EXTENSION + 0x23A6: [687,318,450,35,400], // RIGHT SQUARE BRACKET LOWER CORNER + 0x23A7: [700,305,640,260,600], // LEFT CURLY BRACKET UPPER HOOK + 0x23A8: [705,305,640,40,380], // LEFT CURLY BRACKET MIDDLE PIECE + 0x23A9: [705,300,640,260,600], // LEFT CURLY BRACKET LOWER HOOK + 0x23AA: [705,305,640,260,380], // CURLY BRACKET EXTENSION + 0x23AB: [700,305,640,40,380], // RIGHT CURLY BRACKET UPPER HOOK + 0x23AC: [705,305,640,260,600], // RIGHT CURLY BRACKET MIDDLE PIECE + 0x23AD: [705,300,640,40,380], // RIGHT CURLY BRACKET LOWER HOOK + 0x23AE: [610,25,688,294,394], // INTEGRAL EXTENSION + 0x23B0: [700,301,600,35,566], // UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION + 0x23B1: [700,301,600,35,566], // UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION + 0x23B7: [1510,345,1184,112,895], // RADICAL SYMBOL BOTTOM + 0x23B8: [1566,289,721,0,66], // LEFT VERTICAL BOX LINE + 0x23B9: [1566,289,721,655,721], // RIGHT VERTICAL BOX LINE + 0x23DE: [136,89,926,0,925], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [789,-564,926,0,925], // BOTTOM CURLY BRACKET (mathematical use) + 0x27E8: [1066,164,578,116,462], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1066,164,578,116,462], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x2A00: [1500,-49,1555,52,1503], // N-ARY CIRCLED DOT OPERATOR + 0x2A01: [1500,-49,1555,52,1503], // N-ARY CIRCLED PLUS OPERATOR + 0x2A02: [1500,-49,1555,52,1503], // N-ARY CIRCLED TIMES OPERATOR + 0x2A04: [1500,-39,1265,118,1147], // N-ARY UNION OPERATOR WITH PLUS + 0x2A05: [1500,-49,1153,82,1071], // N-ARY SQUARE INTERSECTION OPERATOR + 0x2A06: [1500,-49,1153,82,1071] // N-ARY SQUARE UNION OPERATOR + }; + + HTMLCSS.FONTDATA.FONTS['STIXSizeTwoSym'] = { + directory: 'SizeTwoSym/Regular', + family: 'STIXSizeTwoSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x221A,0x221C,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"], + [0x2772,0x2773,"All"], + [0x27E6,0x27EB,"All"], + [0x2983,0x2986,"All"], + [0x2AFC,0x2AFF,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1566,279,589,139,503], // LEFT PARENTHESIS + 0x29: [1566,279,608,114,478], // RIGHT PARENTHESIS + 0x2F: [1566,279,806,25,781], // SOLIDUS + 0x5B: [1566,279,459,190,422], // LEFT SQUARE BRACKET + 0x5C: [1566,279,806,25,781], // REVERSE SOLIDUS + 0x5D: [1566,279,459,37,269], // RIGHT SQUARE BRACKET + 0x5F: [-127,177,1500,0,1500], // LOW LINE + 0x7B: [1566,279,717,124,531], // LEFT CURLY BRACKET + 0x7D: [1566,279,717,186,593], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [777,-564,0,-1150,-171], // COMBINING CIRCUMFLEX ACCENT + 0x303: [760,-608,0,-1152,-173], // COMBINING TILDE + 0x221A: [2056,404,1124,110,1157], // SQUARE ROOT + 0x2308: [1566,279,524,190,479], // LEFT CEILING + 0x2309: [1566,279,526,47,336], // RIGHT CEILING + 0x230A: [1566,279,524,190,479], // LEFT FLOOR + 0x230B: [1566,279,526,47,336], // RIGHT FLOOR + 0x23DE: [143,81,1460,0,1460], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [797,-573,1460,0,1460], // BOTTOM CURLY BRACKET (mathematical use) + 0x27E8: [1566,279,622,95,531], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1566,279,622,91,527] // MATHEMATICAL RIGHT ANGLE BRACKET + }; + + HTMLCSS.FONTDATA.FONTS['STIXSizeThreeSym'] = { + directory: 'SizeThreeSym/Regular', + family: 'STIXSizeThreeSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x221A,0x221C,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"], + [0x2772,0x2773,"All"], + [0x27E6,0x27EB,"All"], + [0x2983,0x2986,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x28: [2066,394,750,182,667], // LEFT PARENTHESIS + 0x29: [2066,394,750,83,568], // RIGHT PARENTHESIS + 0x2F: [2066,394,1101,30,1071], // SOLIDUS + 0x5B: [2066,394,508,225,491], // LEFT SQUARE BRACKET + 0x5C: [2066,394,1101,30,1071], // REVERSE SOLIDUS + 0x5D: [2066,394,508,17,283], // RIGHT SQUARE BRACKET + 0x5F: [-127,177,2000,0,2000], // LOW LINE + 0x7B: [2066,394,906,143,717], // LEFT CURLY BRACKET + 0x7D: [2066,394,906,189,763], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [777,-564,0,-1610,-150], // COMBINING CIRCUMFLEX ACCENT + 0x303: [774,-608,0,-1612,-152], // COMBINING TILDE + 0x221A: [2565,510,1076,112,1110], // SQUARE ROOT + 0x2308: [2066,394,565,225,550], // LEFT CEILING + 0x2309: [2066,394,565,15,340], // RIGHT CEILING + 0x230A: [2066,394,565,225,550], // LEFT FLOOR + 0x230B: [2066,394,565,15,340], // RIGHT FLOOR + 0x23DE: [157,86,1886,0,1886], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [815,-572,1886,0,1886], // BOTTOM CURLY BRACKET (mathematical use) + 0x27E8: [2066,394,765,96,670], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [2066,394,765,95,669] // MATHEMATICAL RIGHT ANGLE BRACKET + }; + + HTMLCSS.FONTDATA.FONTS['STIXSizeFourSym'] = { + directory: 'SizeFourSym/Regular', + family: 'STIXSizeFourSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x221A,0x221C,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"], + [0x2772,0x2773,"All"], + [0x27E6,0x27EB,"All"], + [0x2983,0x2986,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x28: [2566,509,808,124,732], // LEFT PARENTHESIS + 0x29: [2566,509,808,76,684], // RIGHT PARENTHESIS + 0x2F: [2566,509,1309,16,1293], // SOLIDUS + 0x5B: [2566,509,661,295,634], // LEFT SQUARE BRACKET + 0x5C: [2566,509,1309,16,1293], // REVERSE SOLIDUS + 0x5D: [2566,509,661,27,366], // RIGHT SQUARE BRACKET + 0x5F: [-127,177,2500,0,2500], // LOW LINE + 0x7B: [2566,509,1076,173,882], // LEFT CURLY BRACKET + 0x7D: [2566,509,1076,194,903], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [796,-573,0,-2040,-154], // COMBINING CIRCUMFLEX ACCENT + 0x303: [771,-608,0,-2040,-154], // COMBINING TILDE + 0x221A: [1510,345,1184,112,895], // SQUARE ROOT + 0x2308: [2566,509,682,295,655], // LEFT CEILING + 0x2309: [2566,509,682,27,387], // RIGHT CEILING + 0x230A: [2566,509,682,295,655], // LEFT FLOOR + 0x230B: [2566,509,682,27,387], // RIGHT FLOOR + 0x23DE: [175,90,2328,0,2328], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [837,-572,2328,0,2328], // BOTTOM CURLY BRACKET (mathematical use) + 0x27E8: [2566,509,908,113,796], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [2566,509,908,112,795] // MATHEMATICAL RIGHT ANGLE BRACKET + }; + + HTMLCSS.FONTDATA.FONTS['STIXSizeFiveSym'] = { + directory: 'SizeFiveSym/Regular', + family: 'STIXSizeFiveSym', + Ranges: [ + [0x2B0,0x2FF,"All"], + [0x300,0x338,"All"], + [0x203E,0x203E,"All"], + [0x20D0,0x20EF,"All"], + [0x239B,0x23B9,"All"], + [0x23DC,0x23E1,"All"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x5F: [-127,177,3000,0,3000], // LOW LINE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x302: [816,-572,0,-2485,-157], // COMBINING CIRCUMFLEX ACCENT + 0x303: [780,-617,0,-2485,-157], // COMBINING TILDE + 0x23DE: [181,90,3238,0,3238], // TOP CURLY BRACKET (mathematical use) + 0x23DF: [844,-573,3238,0,3238] // BOTTOM CURLY BRACKET (mathematical use) + }; + + HTMLCSS.FONTDATA.FONTS['STIXVariants'] = { + directory: 'Variants/Regular', + family: 'STIXVariants', + Ranges: [ + [0x20,0x20,"All"], + [0x77,0x7C,"All"], + [0xA0,0xA0,"All"], + [0x19B,0x19B,"All"], + [0x264,0x264,"All"], + [0x2032,0x2057,"All"], + [0x2140,0x2140,"All"], + [0x2190,0x2193,"All"], + [0x21D1,0x21E2,"All"], + [0x2205,0x22ED,"All"], + [0x2322,0x2323,"All"], + [0x2423,0x2423,"All"], + [0x25A9,0x25A9,"All"], + [0x2A3C,0x2AEE,"All"] + ], + 0x2032: [565,-28,340,44,295], // PRIME + 0x210F: [683,10,579,47,547], // stix-/hbar - Planck's over 2pi + 0x2205: [729,74,523,28,502], // EMPTY SET + 0x2216: [710,222,523,46,478], // SET MINUS + 0x221A: [943,11,737,67,767] // SQUARE ROOT + }; + + HTMLCSS.FONTDATA.FONTS['STIXGeneral'][0x22EE][0] += 400; // adjust height for \vdots + HTMLCSS.FONTDATA.FONTS['STIXGeneral'][0x22F1][0] += 500; // adjust height for \ddots + HTMLCSS.FONTDATA.FONTS['STIXGeneral'][0x2212][1] += 100; // adjust depth for minus (arrow extender) + HTMLCSS.FONTDATA.FONTS['STIXGeneral'][0x003D][1] += 100; // adjust depth for = (double arrow extender) + HTMLCSS.FONTDATA.FONTS['STIXNonUnicode'][0xE14A][0] += 200; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS['STIXNonUnicode'][0xE14A][1] += 200; // adjust depth for brace extender + HTMLCSS.FONTDATA.FONTS['STIXNonUnicode'][0xE14B][0] += 200; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS['STIXNonUnicode'][0xE14B][1] += 200; // adjust depth for brace extender + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Variants/Regular/All.js",function () { + // monospace mathvariant uses space from STIXVariants, so make it the right size + HTMLCSS.FONTDATA.FONTS['STIXVariants'][0x20][2] += 275; // fix error in character width + HTMLCSS.FONTDATA.FONTS['STIXVariants'][0x20][5] = {rfix:275}; // fix error in character width + }); + + MathJax.Hub.Browser.Select({ + MSIE: function (browser) { + if (!browser.versionAtLeast("8.0") || document.documentMode < 8) { + var FONTDATA = HTMLCSS.FONTDATA; + // MSIE Can't access the Spacing Modifier positions + FONTDATA.REMAP[0x2C9] = 0xAF; // macron + FONTDATA.REMAP[0x2CA] = 0xB4; // acute + FONTDATA.REMAP[0x2CB] = 0x60; // grave + FONTDATA.REMAP[0x2DA] = 0xB0; // ring above + // MSIE can't access Greek block + FONTDATA.RANGES[5] = FONTDATA.RANGES[4]; FONTDATA.RANGES[4] = FONTDATA.RANGES[3] + FONTDATA.RANGES[3] = {name: "greek", low: 0x03B1, high: 0x03F6, offset: "GG", + remap: {0x03F5: 26, 0x03D1: 27, 0x03F0: 28, 0x03D5: 29, 0x03F1: 30, 0x03D6: 31}}; + FONTDATA.VARIANT["bold"].offsetGG = 0x1D6C2; FONTDATA.VARIANT["bold"].offsetG = 0x1D6A8; + FONTDATA.VARIANT["italic"].offsetGG = 0x1D6FC; FONTDATA.VARIANT["italic"].offsetG = 0x1D6E2; + FONTDATA.VARIANT["bold-italic"].offsetGG = 0x1D736; FONTDATA.VARIANT["bold-italic"].offsetG = 0x1D71C; + } + }, + Safari: function (browser) { + browser.STIXfontBug = browser.versionAtLeast("5.1") && browser.isMac; + }, + Chrome: function (browser) { + if (browser.isMac) { + var match = navigator.appVersion.match(/AppleWebKit\/(\d+)/); + if (match && parseInt(match[1]) > 534) {browser.STIXfontBug = true} + } + } + }); + + // + // Fix WebKit problem with STIX fonts in OS X Lion + // + if (MathJax.Hub.Browser.STIXfontBug) { + HTMLCSS.FONTDATA.FONTS["STIXGeneral"].family = "STIXGeneral-Regular"; + HTMLCSS.FONTDATA.FONTS["STIXGeneral-italic"].family = "STIXGeneral-Italic"; + delete HTMLCSS.FONTDATA.FONTS["STIXGeneral-italic"].style; + HTMLCSS.FONTDATA.FONTS["STIXNonUnicode"].family = "STIXNonUnicode-Regular"; + HTMLCSS.FONTDATA.FONTS["STIXNonUnicode-italic"].family = "STIXNonUnicode-Italic"; + delete HTMLCSS.FONTDATA.FONTS["STIXNonUnicode-italic"].style; + } + + // + // Check for STIX font version + // + var QUEUE = []; + + // + // Test for v1.1 rather than v1.0 (double-struck alphabet was moved from + // user-defined area in STIXNonUnicode to STIXGeneral math alphabet) + // + var DIV = HTMLCSS.Font.div; + HTML.addElement(DIV,"span", + {style:{display:"inline-block","font-family":"STIXNonUnicode","font-weight":"bold"}}, + ["\uE38C\uE38C\uE38C\uE38C\uE38C"] + ); + HTML.addElement(DIV,"span", + {style:{display:"inline-block","font-family":"STIXNonUnicode","font-weight":"bold"}}, + ["\uE39A\uE39A\uE39A\uE39A\uE39A"] + ); + if (DIV.lastChild.previousSibling.offsetWidth < DIV.lastChild.offsetWidth) + {QUEUE.push(["Require",MathJax.Ajax,HTMLCSS.fontDir+"/fontdata-1.0.js"])} + DIV.removeChild(DIV.lastChild); DIV.removeChild(DIV.lastChild); + + // + // Text for 1.0-beta version (U+02C56 was added in 1.0) + // + if (!HTMLCSS.Font.testFont({family:"STIXSizeOneSym",testString:"\u02C6"})) + {QUEUE.push(["Require",MathJax.Ajax,HTMLCSS.fontDir + "/fontdata-beta.js"])} + + // + // Load any patch files and then call loadComplete() + // + QUEUE.push(["loadComplete",MathJax.Ajax,HTMLCSS.fontDir + "/fontdata.js"]); + MathJax.Callback.Queue.apply(MathJax.Callback,QUEUE); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.ElementJax.mml,MathJax.HTML); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js new file mode 100644 index 0000000..571334f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js @@ -0,0 +1,65 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x2190: [437,-64,500,64,422], // LEFTWARDS ARROW + 0x2192: [437,-64,500,58,417], // RIGHTWARDS ARROW + 0x219A: [437,-60,1000,56,942], // LEFTWARDS ARROW WITH STROKE + 0x219B: [437,-60,1000,54,942], // RIGHTWARDS ARROW WITH STROKE + 0x219E: [417,-83,1000,56,944], // LEFTWARDS TWO HEADED ARROW + 0x21A0: [417,-83,1000,55,943], // RIGHTWARDS TWO HEADED ARROW + 0x21A2: [417,-83,1111,56,1031], // LEFTWARDS ARROW WITH TAIL + 0x21A3: [417,-83,1111,79,1054], // RIGHTWARDS ARROW WITH TAIL + 0x21AB: [575,41,1000,56,964], // LEFTWARDS ARROW WITH LOOP + 0x21AC: [575,41,1000,35,943], // RIGHTWARDS ARROW WITH LOOP + 0x21AD: [417,-83,1389,57,1331], // LEFT RIGHT WAVE ARROW + 0x21AE: [437,-60,1000,56,942], // LEFT RIGHT ARROW WITH STROKE + 0x21B0: [722,0,500,56,444], // UPWARDS ARROW WITH TIP LEFTWARDS + 0x21B1: [722,0,500,55,443], // UPWARDS ARROW WITH TIP RIGHTWARDS + 0x21B6: [461,1,1000,17,950], // ANTICLOCKWISE TOP SEMICIRCLE ARROW + 0x21B7: [460,1,1000,46,982], // CLOCKWISE TOP SEMICIRCLE ARROW + 0x21BA: [650,83,778,56,722], // ANTICLOCKWISE OPEN CIRCLE ARROW + 0x21BB: [650,83,778,56,721], // CLOCKWISE OPEN CIRCLE ARROW + 0x21BE: [694,194,417,188,375], // UPWARDS HARPOON WITH BARB RIGHTWARDS + 0x21BF: [694,194,417,41,228], // UPWARDS HARPOON WITH BARB LEFTWARDS + 0x21C2: [694,194,417,188,375], // DOWNWARDS HARPOON WITH BARB RIGHTWARDS + 0x21C3: [694,194,417,41,228], // DOWNWARDS HARPOON WITH BARB LEFTWARDS + 0x21C4: [667,0,1000,55,944], // RIGHTWARDS ARROW OVER LEFTWARDS ARROW + 0x21C6: [667,0,1000,55,944], // LEFTWARDS ARROW OVER RIGHTWARDS ARROW + 0x21C7: [583,83,1000,55,944], // LEFTWARDS PAIRED ARROWS + 0x21C8: [694,193,833,83,749], // UPWARDS PAIRED ARROWS + 0x21C9: [583,83,1000,55,944], // RIGHTWARDS PAIRED ARROWS + 0x21CA: [694,194,833,83,749], // DOWNWARDS PAIRED ARROWS + 0x21CB: [514,14,1000,55,944], // LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON + 0x21CC: [514,14,1000,55,944], // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21CD: [534,35,1000,54,942], // LEFTWARDS DOUBLE ARROW WITH STROKE + 0x21CE: [534,37,1000,32,965], // LEFT RIGHT DOUBLE ARROW WITH STROKE + 0x21CF: [534,35,1000,55,943], // RIGHTWARDS DOUBLE ARROW WITH STROKE + 0x21DA: [611,111,1000,76,944], // LEFTWARDS TRIPLE ARROW + 0x21DB: [611,111,1000,55,923], // RIGHTWARDS TRIPLE ARROW + 0x21DD: [417,-83,1000,56,943], // RIGHTWARDS SQUIGGLE ARROW + 0x21E0: [437,-64,1334,64,1251], // LEFTWARDS DASHED ARROW + 0x21E2: [437,-64,1334,84,1251] // RIGHTWARDS DASHED ARROW + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/Arrows.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js new file mode 100644 index 0000000..498b716 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x41: [701,1,722,17,703], // LATIN CAPITAL LETTER A + 0x42: [683,1,667,11,620], // LATIN CAPITAL LETTER B + 0x43: [702,19,722,39,684], // LATIN CAPITAL LETTER C + 0x44: [683,1,722,16,688], // LATIN CAPITAL LETTER D + 0x45: [683,1,667,12,640], // LATIN CAPITAL LETTER E + 0x46: [683,1,611,12,584], // LATIN CAPITAL LETTER F + 0x47: [702,19,778,39,749], // LATIN CAPITAL LETTER G + 0x48: [683,1,778,14,762], // LATIN CAPITAL LETTER H + 0x49: [683,1,389,20,369], // LATIN CAPITAL LETTER I + 0x4A: [683,77,500,6,478], // LATIN CAPITAL LETTER J + 0x4B: [683,1,778,22,768], // LATIN CAPITAL LETTER K + 0x4C: [683,1,667,12,640], // LATIN CAPITAL LETTER L + 0x4D: [683,1,944,17,926], // LATIN CAPITAL LETTER M + 0x4E: [683,20,722,20,702], // LATIN CAPITAL LETTER N + 0x4F: [701,19,778,34,742], // LATIN CAPITAL LETTER O + 0x50: [683,1,611,16,597], // LATIN CAPITAL LETTER P + 0x51: [701,181,778,34,742], // LATIN CAPITAL LETTER Q + 0x52: [683,1,722,16,705], // LATIN CAPITAL LETTER R + 0x53: [702,12,556,28,528], // LATIN CAPITAL LETTER S + 0x54: [683,1,667,33,635], // LATIN CAPITAL LETTER T + 0x55: [683,19,722,16,709], // LATIN CAPITAL LETTER U + 0x56: [683,20,722,0,719], // LATIN CAPITAL LETTER V + 0x57: [683,19,1000,5,994], // LATIN CAPITAL LETTER W + 0x58: [683,1,722,16,705], // LATIN CAPITAL LETTER X + 0x59: [683,1,722,16,704], // LATIN CAPITAL LETTER Y + 0x5A: [683,1,667,29,635], // LATIN CAPITAL LETTER Z + 0x6B: [683,1,556,17,534] // LATIN SMALL LETTER K + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/BBBold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js new file mode 100644 index 0000000..1176b0a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js @@ -0,0 +1,33 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x250C: [694,-306,500,55,444], // BOX DRAWINGS LIGHT DOWN AND RIGHT + 0x2510: [694,-306,500,55,444], // BOX DRAWINGS LIGHT DOWN AND LEFT + 0x2514: [366,22,500,55,444], // BOX DRAWINGS LIGHT UP AND RIGHT + 0x2518: [366,22,500,55,444], // BOX DRAWINGS LIGHT UP AND LEFT + 0x2571: [694,195,889,0,860], // BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT + 0x2572: [694,195,889,0,860] // BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/BoxDrawing.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js new file mode 100644 index 0000000..79ceb6e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x302: [845,-561,0,-2347,13], // COMBINING CIRCUMFLEX ACCENT + 0x303: [899,-628,0,-2332,-3] // COMBINING TILDE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js new file mode 100644 index 0000000..c2ae3d5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x2713: [706,34,833,84,749], // CHECK MARK + 0x2720: [716,22,833,48,786] // MALTESE CROSS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/Dingbats.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js new file mode 100644 index 0000000..52e00fe --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x24C8: [709,175,902,8,894] // CIRCLED LATIN CAPITAL LETTER S + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/EnclosedAlphanum.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js new file mode 100644 index 0000000..de0408a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x2035: [560,-43,275,12,244] // REVERSED PRIME + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js new file mode 100644 index 0000000..03cf907 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x25A0: [689,0,778,55,722], // BLACK SQUARE + 0x25A1: [689,0,778,55,722], // WHITE SQUARE + 0x25B2: [575,20,722,84,637], // BLACK UP-POINTING TRIANGLE + 0x25B3: [575,20,722,84,637], // WHITE UP-POINTING TRIANGLE + 0x25B6: [539,41,778,83,694], // BLACK RIGHT-POINTING TRIANGLE + 0x25BC: [576,19,722,84,637], // BLACK DOWN-POINTING TRIANGLE + 0x25BD: [576,19,722,84,637], // WHITE DOWN-POINTING TRIANGLE + 0x25C0: [539,41,778,83,694], // BLACK LEFT-POINTING TRIANGLE + 0x25CA: [716,132,667,56,611] // LOZENGE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/GeometricShapes.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js new file mode 100644 index 0000000..708877d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x3DD: [605,85,778,55,719], // GREEK SMALL LETTER DIGAMMA + 0x3F0: [434,6,667,37,734] // GREEK KAPPA SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/GreekAndCoptic.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js new file mode 100644 index 0000000..422e43d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js @@ -0,0 +1,31 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xA5: [683,0,750,11,738], // YEN SIGN + 0xAE: [709,175,947,32,915], // REGISTERED SIGN + 0xF0: [749,21,556,42,509] // LATIN SMALL LETTER ETH + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/Latin1Supplement.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js new file mode 100644 index 0000000..cb32f8a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x127: [695,13,540,42,562] // LATIN SMALL LETTER H WITH STROKE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js new file mode 100644 index 0000000..d7395be --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js @@ -0,0 +1,34 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x210F: [695,13,540,42,562], // stix-/hbar - Planck's over 2pi + 0x2127: [684,22,722,44,675], // INVERTED OHM SIGN + 0x2132: [695,1,556,55,497], // TURNED CAPITAL F + 0x2136: [763,21,667,-22,687], // BET SYMBOL + 0x2137: [764,43,444,-22,421], // GIMEL SYMBOL + 0x2138: [764,43,667,54,640], // DALET SYMBOL + 0x2141: [705,23,639,37,577] // TURNED SANS-SERIF CAPITAL G + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js new file mode 100644 index 0000000..e6e510f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js @@ -0,0 +1,52 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'] = { + directory: 'AMS/Regular', + family: 'MathJax_AMS', + testString: "MATHJAX AMS \u02C6", + Ranges: [ + [0x0,0x7F,"BBBold"], + [0x80,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2190,0x21FF,"Arrows"], + [0x2200,0x22FF,"MathOperators"], + [0x2300,0x23FF,"MiscTechnical"], + [0x2460,0x24FF,"EnclosedAlphanum"], + [0x2500,0x257F,"BoxDrawing"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x2700,0x27BF,"Dingbats"], + [0x2980,0x29FF,"MiscMathSymbolsB"], + [0x2A00,0x2AFF,"SuppMathOperators"], + [0xE000,0xF8FF,"PUA"] + ] + +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_AMS"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/AMS/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js new file mode 100644 index 0000000..7dfd195 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js @@ -0,0 +1,138 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x2201: [846,21,500,56,444], // COMPLEMENT + 0x2204: [860,166,556,55,497], // THERE DOES NOT EXIST + 0x2205: [587,3,778,54,720], // EMPTY SET + 0x220D: [440,1,429,102,456], // SMALL CONTAINS AS MEMBER + 0x2212: [270,-230,500,84,417], // MINUS SIGN + 0x2214: [766,93,778,57,722], // DOT PLUS + 0x2216: [430,23,778,91,685], // SET MINUS + 0x221D: [472,-28,778,56,722], // PROPORTIONAL TO + 0x2220: [694,0,722,55,666], // ANGLE + 0x2221: [714,20,722,55,666], // MEASURED ANGLE + 0x2222: [551,51,722,55,666], // SPHERICAL ANGLE + 0x2223: [430,23,222,91,131], // DIVIDES + 0x2224: [750,252,278,-21,297], // DOES NOT DIVIDE + 0x2225: [431,23,389,55,331], // PARALLEL TO + 0x2226: [750,250,500,-20,518], // NOT PARALLEL TO + 0x2234: [471,82,667,24,643], // THEREFORE + 0x2235: [471,82,667,23,643], // BECAUSE + 0x223C: [365,-132,778,55,719], // TILDE OPERATOR + 0x223D: [367,-133,778,56,722], // REVERSED TILDE + 0x2241: [467,-32,778,55,719], // stix-not, vert, similar + 0x2242: [463,-34,778,55,720], // MINUS TILDE + 0x2246: [652,155,778,54,720], // APPROXIMATELY BUT NOT ACTUALLY EQUAL TO + 0x2248: [481,-50,778,55,719], // ALMOST EQUAL TO + 0x224A: [579,39,778,51,725], // ALMOST EQUAL OR EQUAL TO + 0x224E: [492,-8,778,56,722], // GEOMETRICALLY EQUIVALENT TO + 0x224F: [492,-133,778,56,722], // DIFFERENCE BETWEEN + 0x2251: [609,108,778,56,722], // GEOMETRICALLY EQUAL TO + 0x2252: [601,101,778,15,762], // APPROXIMATELY EQUAL TO OR THE IMAGE OF + 0x2253: [601,102,778,14,762], // IMAGE OF OR APPROXIMATELY EQUAL TO + 0x2256: [367,-133,778,56,722], // RING IN EQUAL TO + 0x2257: [721,-133,778,56,722], // RING EQUAL TO + 0x225C: [859,-133,778,56,723], // DELTA EQUAL TO + 0x2266: [753,175,778,83,694], // LESS-THAN OVER EQUAL TO + 0x2267: [753,175,778,83,694], // GREATER-THAN OVER EQUAL TO + 0x2268: [752,286,778,82,693], // stix-less, vert, not double equals + 0x2269: [752,286,778,82,693], // stix-gt, vert, not double equals + 0x226C: [750,250,500,74,425], // BETWEEN + 0x226E: [708,209,778,82,693], // stix-not, vert, less-than + 0x226F: [708,209,778,82,693], // stix-not, vert, greater-than + 0x2270: [801,303,778,82,694], // stix-not, vert, less-than-or-equal + 0x2271: [801,303,778,82,694], // stix-not, vert, greater-than-or-equal + 0x2272: [732,228,778,56,722], // stix-less-than or (contour) similar + 0x2273: [732,228,778,56,722], // stix-greater-than or (contour) similar + 0x2276: [681,253,778,44,734], // LESS-THAN OR GREATER-THAN + 0x2277: [681,253,778,83,694], // GREATER-THAN OR LESS-THAN + 0x227C: [580,153,778,83,694], // PRECEDES OR EQUAL TO + 0x227D: [580,154,778,82,694], // SUCCEEDS OR EQUAL TO + 0x227E: [732,228,778,56,722], // PRECEDES OR EQUIVALENT TO + 0x227F: [732,228,778,56,722], // SUCCEEDS OR EQUIVALENT TO + 0x2280: [705,208,778,82,693], // DOES NOT PRECEDE + 0x2281: [705,208,778,82,693], // stix-not (vert) succeeds + 0x2288: [801,303,778,83,693], // stix-/nsubseteq N: not (vert) subset, equals + 0x2289: [801,303,778,82,691], // stix-/nsupseteq N: not (vert) superset, equals + 0x228A: [635,241,778,84,693], // stix-subset, not equals, variant + 0x228B: [635,241,778,82,691], // stix-superset, not equals, variant + 0x228F: [539,41,778,83,694], // SQUARE IMAGE OF + 0x2290: [539,41,778,64,714], // SQUARE ORIGINAL OF + 0x229A: [582,82,778,57,721], // CIRCLED RING OPERATOR + 0x229B: [582,82,778,57,721], // CIRCLED ASTERISK OPERATOR + 0x229D: [582,82,778,57,721], // CIRCLED DASH + 0x229E: [689,0,778,55,722], // SQUARED PLUS + 0x229F: [689,0,778,55,722], // SQUARED MINUS + 0x22A0: [689,0,778,55,722], // SQUARED TIMES + 0x22A1: [689,0,778,55,722], // SQUARED DOT OPERATOR + 0x22A8: [694,0,611,55,555], // TRUE + 0x22A9: [694,0,722,55,666], // FORCES + 0x22AA: [694,0,889,55,833], // TRIPLE VERTICAL BAR RIGHT TURNSTILE + 0x22AC: [695,1,611,-55,554], // DOES NOT PROVE + 0x22AD: [695,1,611,-55,554], // NOT TRUE + 0x22AE: [695,1,722,-55,665], // DOES NOT FORCE + 0x22AF: [695,1,722,-55,665], // NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE + 0x22B2: [539,41,778,83,694], // NORMAL SUBGROUP OF + 0x22B3: [539,41,778,83,694], // CONTAINS AS NORMAL SUBGROUP + 0x22B4: [636,138,778,83,694], // NORMAL SUBGROUP OF OR EQUAL TO + 0x22B5: [636,138,778,83,694], // CONTAINS AS NORMAL SUBGROUP OR EQUAL TO + 0x22B8: [408,-92,1111,55,1055], // MULTIMAP + 0x22BA: [431,212,556,57,500], // INTERCALATE + 0x22BB: [716,0,611,55,555], // XOR + 0x22BC: [716,0,611,55,555], // NAND + 0x22C5: [189,0,278,55,222], // DOT OPERATOR + 0x22C7: [545,44,778,55,720], // DIVISION TIMES + 0x22C9: [492,-8,778,146,628], // LEFT NORMAL FACTOR SEMIDIRECT PRODUCT + 0x22CA: [492,-8,778,146,628], // RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT + 0x22CB: [694,22,778,55,722], // LEFT SEMIDIRECT PRODUCT + 0x22CC: [694,22,778,55,722], // RIGHT SEMIDIRECT PRODUCT + 0x22CD: [464,-36,778,56,722], // REVERSED TILDE EQUALS + 0x22CE: [578,21,760,83,676], // CURLY LOGICAL OR + 0x22CF: [578,22,760,83,676], // CURLY LOGICAL AND + 0x22D0: [540,40,778,84,694], // DOUBLE SUBSET + 0x22D1: [540,40,778,83,693], // DOUBLE SUPERSET + 0x22D2: [598,22,667,55,611], // DOUBLE INTERSECTION + 0x22D3: [598,22,667,55,611], // DOUBLE UNION + 0x22D4: [736,22,667,56,611], // PITCHFORK + 0x22D6: [541,41,778,82,693], // LESS-THAN WITH DOT + 0x22D7: [541,41,778,82,693], // GREATER-THAN WITH DOT + 0x22D8: [568,67,1333,56,1277], // VERY MUCH LESS-THAN + 0x22D9: [568,67,1333,55,1277], // VERY MUCH GREATER-THAN + 0x22DA: [886,386,778,83,674], // stix-less, equal, slanted, greater + 0x22DB: [886,386,778,83,674], // stix-greater, equal, slanted, less + 0x22DE: [734,0,778,83,694], // EQUAL TO OR PRECEDES + 0x22DF: [734,0,778,82,694], // EQUAL TO OR SUCCEEDS + 0x22E0: [801,303,778,82,693], // stix-not (vert) precedes or contour equals + 0x22E1: [801,303,778,82,694], // stix-not (vert) succeeds or contour equals + 0x22E6: [730,359,778,55,719], // LESS-THAN BUT NOT EQUIVALENT TO + 0x22E7: [730,359,778,55,719], // GREATER-THAN BUT NOT EQUIVALENT TO + 0x22E8: [730,359,778,55,719], // PRECEDES BUT NOT EQUIVALENT TO + 0x22E9: [730,359,778,55,719], // SUCCEEDS BUT NOT EQUIVALENT TO + 0x22EA: [706,208,778,82,693], // NOT NORMAL SUBGROUP OF + 0x22EB: [706,208,778,82,693], // DOES NOT CONTAIN AS NORMAL SUBGROUP + 0x22EC: [802,303,778,82,693], // stix-not, vert, left triangle, equals + 0x22ED: [801,303,778,82,693] // stix-not, vert, right triangle, equals + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js new file mode 100644 index 0000000..b5190df --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x29EB: [716,132,667,56,611] // BLACK LOZENGE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MiscMathSymbolsB.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js new file mode 100644 index 0000000..cb155db --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x2605: [694,111,944,49,895] // BLACK STAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MiscSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js new file mode 100644 index 0000000..2c3865a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x2322: [378,-122,778,55,722], // stix-small down curve + 0x2323: [378,-143,778,55,722] // stix-small up curve + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MiscTechnical.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js new file mode 100644 index 0000000..faa442e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js @@ -0,0 +1,43 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0xE006: [430,23,222,-20,240], // ?? + 0xE007: [431,24,389,-20,407], // ?? + 0xE008: [605,85,778,55,719], // ?? + 0xE009: [434,6,667,37,734], // ?? + 0xE00C: [752,284,778,82,693], // ?? + 0xE00D: [752,284,778,82,693], // ?? + 0xE00E: [919,421,778,82,694], // stix-not greater, double equals + 0xE00F: [801,303,778,82,694], // stix-not greater-or-equal, slanted + 0xE010: [801,303,778,82,694], // stix-not less-or-equal, slanted + 0xE011: [919,421,778,82,694], // stix-not less, double equals + 0xE016: [828,330,778,82,694], // stix-not subset, double equals + 0xE017: [752,332,778,82,694], // ?? + 0xE018: [828,330,778,82,694], // stix-not superset, double equals + 0xE019: [752,333,778,82,693], // ?? + 0xE01A: [634,255,778,84,693], // ?? + 0xE01B: [634,254,778,82,691] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/PUA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js new file mode 100644 index 0000000..a26e494 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x2C6: [845,-561,2333,-14,2346], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2DC: [899,-628,2333,1,2330] // SMALL TILDE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js new file mode 100644 index 0000000..dc8f651 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js @@ -0,0 +1,50 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SuppMathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], + { + 0x2A5E: [813,97,611,55,555], // LOGICAL AND WITH DOUBLE OVERBAR + 0x2A7D: [636,138,778,83,694], // LESS-THAN OR SLANTED EQUAL TO + 0x2A7E: [636,138,778,83,694], // GREATER-THAN OR SLANTED EQUAL TO + 0x2A85: [762,290,778,55,722], // LESS-THAN OR APPROXIMATE + 0x2A86: [762,290,778,55,722], // GREATER-THAN OR APPROXIMATE + 0x2A87: [635,241,778,82,693], // LESS-THAN AND SINGLE-LINE NOT EQUAL TO + 0x2A88: [635,241,778,82,693], // GREATER-THAN AND SINGLE-LINE NOT EQUAL TO + 0x2A89: [761,387,778,57,718], // LESS-THAN AND NOT APPROXIMATE + 0x2A8A: [761,387,778,57,718], // GREATER-THAN AND NOT APPROXIMATE + 0x2A8B: [1003,463,778,83,694], // LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN + 0x2A8C: [1003,463,778,83,694], // GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN + 0x2A95: [636,138,778,83,694], // SLANTED EQUAL TO OR LESS-THAN + 0x2A96: [636,138,778,83,694], // SLANTED EQUAL TO OR GREATER-THAN + 0x2AB5: [752,286,778,82,693], // PRECEDES ABOVE NOT EQUAL TO + 0x2AB6: [752,286,778,82,693], // SUCCEEDS ABOVE NOT EQUAL TO + 0x2AB7: [761,294,778,57,717], // PRECEDES ABOVE ALMOST EQUAL TO + 0x2AB8: [761,294,778,57,717], // SUCCEEDS ABOVE ALMOST EQUAL TO + 0x2AB9: [761,337,778,57,718], // PRECEDES ABOVE NOT ALMOST EQUAL TO + 0x2ABA: [761,337,778,57,718], // SUCCEEDS ABOVE NOT ALMOST EQUAL TO + 0x2AC5: [753,215,778,84,694], // SUBSET OF ABOVE EQUALS SIGN + 0x2AC6: [753,215,778,83,694], // SUPERSET OF ABOVE EQUALS SIGN + 0x2ACB: [783,385,778,82,693], // stix-subset not double equals, variant + 0x2ACC: [783,385,778,82,693] // SUPERSET OF ABOVE NOT EQUAL TO + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/SuppMathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js new file mode 100644 index 0000000..5980473 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js @@ -0,0 +1,97 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Caligraphic-bold'] = { + directory: 'Caligraphic/Bold', + family: 'MathJax_Caligraphic', + weight: 'bold', + testString: "MATHJAX CALIGRAPHIC", + skew: { + 0x41: 0.224, + 0x42: 0.16, + 0x43: 0.16, + 0x44: 0.0958, + 0x45: 0.128, + 0x46: 0.128, + 0x47: 0.128, + 0x48: 0.128, + 0x49: 0.0319, + 0x4A: 0.192, + 0x4B: 0.0639, + 0x4C: 0.16, + 0x4D: 0.16, + 0x4E: 0.0958, + 0x4F: 0.128, + 0x50: 0.0958, + 0x51: 0.128, + 0x52: 0.0958, + 0x53: 0.16, + 0x54: 0.0319, + 0x55: 0.0958, + 0x56: 0.0319, + 0x57: 0.0958, + 0x58: 0.16, + 0x59: 0.0958, + 0x5A: 0.16 + }, + 0x20: [0,0,250,0,0], // SPACE + 0x30: [460,17,575,46,528], // DIGIT ZERO + 0x31: [461,0,575,80,494], // DIGIT ONE + 0x32: [460,0,575,51,517], // DIGIT TWO + 0x33: [461,211,575,48,525], // DIGIT THREE + 0x34: [469,194,575,32,542], // DIGIT FOUR + 0x35: [461,211,575,57,517], // DIGIT FIVE + 0x36: [660,17,575,48,526], // DIGIT SIX + 0x37: [476,211,575,64,558], // DIGIT SEVEN + 0x38: [661,17,575,48,526], // DIGIT EIGHT + 0x39: [461,210,575,48,526], // DIGIT NINE + 0x41: [751,49,921,39,989], // LATIN CAPITAL LETTER A + 0x42: [705,17,748,40,740], // LATIN CAPITAL LETTER B + 0x43: [703,20,613,20,599], // LATIN CAPITAL LETTER C + 0x44: [686,0,892,20,885], // LATIN CAPITAL LETTER D + 0x45: [703,16,607,37,627], // LATIN CAPITAL LETTER E + 0x46: [686,30,814,17,930], // LATIN CAPITAL LETTER F + 0x47: [703,113,682,50,671], // LATIN CAPITAL LETTER G + 0x48: [686,48,987,20,946], // LATIN CAPITAL LETTER H + 0x49: [686,0,642,-27,746], // LATIN CAPITAL LETTER I + 0x4A: [686,114,779,53,937], // LATIN CAPITAL LETTER J + 0x4B: [703,17,871,40,834], // LATIN CAPITAL LETTER K + 0x4C: [703,17,788,41,751], // LATIN CAPITAL LETTER L + 0x4D: [703,49,1378,38,1353], // LATIN CAPITAL LETTER M + 0x4E: [840,49,937,-24,1105], // LATIN CAPITAL LETTER N + 0x4F: [703,17,906,63,882], // LATIN CAPITAL LETTER O + 0x50: [686,67,810,20,846], // LATIN CAPITAL LETTER P + 0x51: [703,146,939,120,905], // LATIN CAPITAL LETTER Q + 0x52: [686,17,990,20,981], // LATIN CAPITAL LETTER R + 0x53: [703,16,696,25,721], // LATIN CAPITAL LETTER S + 0x54: [720,69,644,38,947], // LATIN CAPITAL LETTER T + 0x55: [686,24,715,-10,771], // LATIN CAPITAL LETTER U + 0x56: [686,77,737,25,774], // LATIN CAPITAL LETTER V + 0x57: [686,77,1169,25,1206], // LATIN CAPITAL LETTER W + 0x58: [686,-1,817,56,906], // LATIN CAPITAL LETTER X + 0x59: [686,164,759,36,797], // LATIN CAPITAL LETTER Y + 0x5A: [686,0,818,46,853], // LATIN CAPITAL LETTER Z + 0xA0: [0,0,250,0,0] // NO-BREAK SPACE +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Caligraphic-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Caligraphic/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js new file mode 100644 index 0000000..55c61eb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js @@ -0,0 +1,96 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Caligraphic'] = { + directory: 'Caligraphic/Regular', + family: 'MathJax_Caligraphic', + testString: "MATHJAX CALIGRAPHIC", + skew: { + 0x41: 0.194, + 0x42: 0.139, + 0x43: 0.139, + 0x44: 0.0833, + 0x45: 0.111, + 0x46: 0.111, + 0x47: 0.111, + 0x48: 0.111, + 0x49: 0.0278, + 0x4A: 0.167, + 0x4B: 0.0556, + 0x4C: 0.139, + 0x4D: 0.139, + 0x4E: 0.0833, + 0x4F: 0.111, + 0x50: 0.0833, + 0x51: 0.111, + 0x52: 0.0833, + 0x53: 0.139, + 0x54: 0.0278, + 0x55: 0.0833, + 0x56: 0.0278, + 0x57: 0.0833, + 0x58: 0.139, + 0x59: 0.0833, + 0x5A: 0.139 + }, + 0x20: [0,0,250,0,0], // SPACE + 0x30: [452,22,500,39,460], // DIGIT ZERO + 0x31: [453,0,500,86,426], // DIGIT ONE + 0x32: [453,0,500,44,449], // DIGIT TWO + 0x33: [452,216,500,42,456], // DIGIT THREE + 0x34: [464,194,500,28,471], // DIGIT FOUR + 0x35: [453,216,500,50,448], // DIGIT FIVE + 0x36: [665,22,500,42,456], // DIGIT SIX + 0x37: [463,216,500,55,485], // DIGIT SEVEN + 0x38: [666,21,500,43,456], // DIGIT EIGHT + 0x39: [453,216,500,42,457], // DIGIT NINE + 0x41: [728,50,798,30,819], // LATIN CAPITAL LETTER A + 0x42: [705,22,657,32,664], // LATIN CAPITAL LETTER B + 0x43: [705,25,527,12,533], // LATIN CAPITAL LETTER C + 0x44: [683,0,771,19,766], // LATIN CAPITAL LETTER D + 0x45: [705,22,528,30,564], // LATIN CAPITAL LETTER E + 0x46: [683,32,719,18,829], // LATIN CAPITAL LETTER F + 0x47: [704,119,595,44,599], // LATIN CAPITAL LETTER G + 0x48: [683,48,845,18,803], // LATIN CAPITAL LETTER H + 0x49: [683,0,545,-30,642], // LATIN CAPITAL LETTER I + 0x4A: [683,119,678,47,839], // LATIN CAPITAL LETTER J + 0x4B: [705,22,762,32,732], // LATIN CAPITAL LETTER K + 0x4C: [705,22,690,32,656], // LATIN CAPITAL LETTER L + 0x4D: [705,50,1201,28,1137], // LATIN CAPITAL LETTER M + 0x4E: [789,50,820,-27,979], // LATIN CAPITAL LETTER N + 0x4F: [705,22,796,58,777], // LATIN CAPITAL LETTER O + 0x50: [683,57,696,19,733], // LATIN CAPITAL LETTER P + 0x51: [705,131,817,114,787], // LATIN CAPITAL LETTER Q + 0x52: [682,22,848,19,837], // LATIN CAPITAL LETTER R + 0x53: [705,22,606,18,642], // LATIN CAPITAL LETTER S + 0x54: [717,68,545,34,833], // LATIN CAPITAL LETTER T + 0x55: [683,28,626,-17,687], // LATIN CAPITAL LETTER U + 0x56: [683,52,613,25,658], // LATIN CAPITAL LETTER V + 0x57: [683,53,988,25,1034], // LATIN CAPITAL LETTER W + 0x58: [683,0,713,52,807], // LATIN CAPITAL LETTER X + 0x59: [683,143,668,31,714], // LATIN CAPITAL LETTER Y + 0x5A: [683,0,725,37,767], // LATIN CAPITAL LETTER Z + 0xA0: [0,0,250,0,0] // NO-BREAK SPACE +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Caligraphic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Caligraphic/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js new file mode 100644 index 0000000..6c85fa7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js @@ -0,0 +1,109 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur-bold'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x21: [689,12,349,107,241], // EXCLAMATION MARK + 0x22: [695,-432,254,10,231], // QUOTATION MARK + 0x26: [696,16,871,44,839], // AMPERSAND + 0x27: [695,-436,250,80,158], // APOSTROPHE + 0x28: [737,186,459,134,347], // LEFT PARENTHESIS + 0x29: [735,187,459,105,326], // RIGHT PARENTHESIS + 0x2A: [692,-449,328,40,277], // ASTERISK + 0x2B: [598,82,893,56,837], // PLUS SIGN + 0x2C: [107,191,328,118,253], // COMMA + 0x2D: [275,-236,893,54,833], // HYPHEN-MINUS + 0x2E: [102,15,328,103,237], // FULL STOP + 0x2F: [721,182,593,41,550], // SOLIDUS + 0x30: [501,12,593,42,533], // DIGIT ZERO + 0x31: [489,0,593,54,548], // DIGIT ONE + 0x32: [491,-2,593,44,563], // DIGIT TWO + 0x33: [487,193,593,31,523], // DIGIT THREE + 0x34: [495,196,593,13,565], // DIGIT FOUR + 0x35: [481,190,593,19,518], // DIGIT FIVE + 0x36: [704,12,593,48,547], // DIGIT SIX + 0x37: [479,197,593,54,591], // DIGIT SEVEN + 0x38: [714,5,593,45,542], // DIGIT EIGHT + 0x39: [487,195,593,29,549], // DIGIT NINE + 0x3A: [457,12,255,57,197], // COLON + 0x3B: [458,190,255,56,211], // SEMICOLON + 0x3D: [343,-168,582,22,559], // EQUALS SIGN + 0x3F: [697,14,428,40,422], // QUESTION MARK + 0x41: [686,31,847,29,827], // LATIN CAPITAL LETTER A + 0x42: [684,31,1044,57,965], // LATIN CAPITAL LETTER B + 0x43: [676,32,723,72,726], // LATIN CAPITAL LETTER C + 0x44: [683,29,982,31,896], // LATIN CAPITAL LETTER D + 0x45: [686,29,783,74,728], // LATIN CAPITAL LETTER E + 0x46: [684,146,722,17,727], // LATIN CAPITAL LETTER F + 0x47: [687,29,927,74,844], // LATIN CAPITAL LETTER G + 0x48: [683,126,851,6,752], // LATIN CAPITAL LETTER H + 0x49: [681,25,655,32,623], // LATIN CAPITAL LETTER I + 0x4A: [680,141,652,-8,616], // LATIN CAPITAL LETTER J + 0x4B: [681,26,789,20,806], // LATIN CAPITAL LETTER K + 0x4C: [683,28,786,30,764], // LATIN CAPITAL LETTER L + 0x4D: [683,32,1239,27,1232], // LATIN CAPITAL LETTER M + 0x4E: [679,30,983,26,973], // LATIN CAPITAL LETTER N + 0x4F: [726,30,976,12,881], // LATIN CAPITAL LETTER O + 0x50: [688,223,977,33,943], // LATIN CAPITAL LETTER P + 0x51: [726,83,976,12,918], // LATIN CAPITAL LETTER Q + 0x52: [688,28,978,31,978], // LATIN CAPITAL LETTER R + 0x53: [685,31,978,82,905], // LATIN CAPITAL LETTER S + 0x54: [686,30,790,31,802], // LATIN CAPITAL LETTER T + 0x55: [688,39,851,18,871], // LATIN CAPITAL LETTER U + 0x56: [685,29,982,25,966], // LATIN CAPITAL LETTER V + 0x57: [683,30,1235,26,1240], // LATIN CAPITAL LETTER W + 0x58: [681,35,849,32,835], // LATIN CAPITAL LETTER X + 0x59: [688,214,984,34,878], // LATIN CAPITAL LETTER Y + 0x5A: [677,148,711,-4,624], // LATIN CAPITAL LETTER Z + 0x5B: [740,130,257,36,226], // LEFT SQUARE BRACKET + 0x5D: [738,132,257,14,208], // RIGHT SQUARE BRACKET + 0x5E: [734,-452,590,1,584], // CIRCUMFLEX ACCENT + 0x61: [472,32,603,80,586], // LATIN SMALL LETTER A + 0x62: [690,32,590,86,504], // LATIN SMALL LETTER B + 0x63: [473,26,464,87,424], // LATIN SMALL LETTER C + 0x64: [632,28,589,-1,511], // LATIN SMALL LETTER D + 0x65: [471,27,472,81,428], // LATIN SMALL LETTER E + 0x66: [687,222,388,35,372], // LATIN SMALL LETTER F + 0x67: [472,208,595,17,541], // LATIN SMALL LETTER G + 0x68: [687,207,615,89,507], // LATIN SMALL LETTER H + 0x69: [686,25,331,3,327], // LATIN SMALL LETTER I + 0x6A: [682,203,332,-19,238], // LATIN SMALL LETTER J + 0x6B: [682,25,464,34,432], // LATIN SMALL LETTER K + 0x6C: [681,24,337,100,312], // LATIN SMALL LETTER L + 0x6D: [476,31,921,16,900], // LATIN SMALL LETTER M + 0x6E: [473,28,654,5,608], // LATIN SMALL LETTER N + 0x6F: [482,34,609,107,515], // LATIN SMALL LETTER O + 0x70: [557,207,604,-1,519], // LATIN SMALL LETTER P + 0x71: [485,211,596,87,515], // LATIN SMALL LETTER Q + 0x72: [472,26,460,13,453], // LATIN SMALL LETTER R + 0x73: [479,34,523,-23,481], // LATIN SMALL LETTER S + 0x74: [648,27,393,43,407], // LATIN SMALL LETTER T + 0x75: [472,32,589,9,603], // LATIN SMALL LETTER U + 0x76: [546,27,604,56,507], // LATIN SMALL LETTER V + 0x77: [549,32,918,55,815], // LATIN SMALL LETTER W + 0x78: [471,188,459,8,441], // LATIN SMALL LETTER X + 0x79: [557,221,589,60,512], // LATIN SMALL LETTER Y + 0x7A: [471,214,461,-7,378] // LATIN SMALL LETTER Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Bold/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js new file mode 100644 index 0000000..ddd6a77 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js @@ -0,0 +1,37 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur-bold'] = { + directory: 'Fraktur/Bold', + family: 'MathJax_Fraktur', + weight: 'bold', + testString: "MathJax Fraktur", + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xDFFF,"Other"], + [0xE300,0xE310,"PUA"] + ] + +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Fraktur-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js new file mode 100644 index 0000000..516fedf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js @@ -0,0 +1,30 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur-bold'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2018: [708,-411,254,53,187], // LEFT SINGLE QUOTATION MARK + 0x2019: [692,-394,254,58,193] // RIGHT SINGLE QUOTATION MARK + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Bold/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js new file mode 100644 index 0000000..53d3825 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js @@ -0,0 +1,34 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur-bold'], + { + 0xE301: [630,27,587,64,512], // stix-MATHEMATICAL BOLD CAPITAL GAMMA SLASHED + 0xE302: [693,212,394,37,408], // stix-capital Delta, Greek slashed + 0xE303: [681,219,387,36,384], // stix-MATHEMATICAL BOLD CAPITAL DELTA SLASHED + 0xE304: [473,212,593,67,531], // stix-capital Epsilon, Greek slashed + 0xE305: [684,27,393,33,387], // stix-MATHEMATICAL BOLD CAPITAL EPSILON SLASHED + 0xE308: [679,220,981,32,875], // stix-capital Eta, Greek slashed + 0xE309: [717,137,727,17,633] // stix-MATHEMATICAL BOLD CAPITAL ETA SLASHED + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Bold/PUA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js new file mode 100644 index 0000000..2a94ee1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js @@ -0,0 +1,109 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x21: [689,12,296,91,204], // EXCLAMATION MARK + 0x22: [695,-432,215,8,196], // QUOTATION MARK + 0x26: [698,11,738,49,733], // AMPERSAND + 0x27: [695,-436,212,69,134], // APOSTROPHE + 0x28: [737,186,389,114,293], // LEFT PARENTHESIS + 0x29: [735,187,389,89,276], // RIGHT PARENTHESIS + 0x2A: [692,-449,278,33,234], // ASTERISK + 0x2B: [598,82,756,47,709], // PLUS SIGN + 0x2C: [107,191,278,99,213], // COMMA + 0x2D: [275,-236,756,46,706], // HYPHEN-MINUS + 0x2E: [102,15,278,87,200], // FULL STOP + 0x2F: [721,182,502,34,466], // SOLIDUS + 0x30: [492,13,502,42,456], // DIGIT ZERO + 0x31: [468,2,502,47,460], // DIGIT ONE + 0x32: [474,-1,502,60,484], // DIGIT TWO + 0x33: [473,182,502,39,429], // DIGIT THREE + 0x34: [476,191,502,10,481], // DIGIT FOUR + 0x35: [458,184,502,47,440], // DIGIT FIVE + 0x36: [700,13,502,45,471], // DIGIT SIX + 0x37: [468,181,502,37,498], // DIGIT SEVEN + 0x38: [705,10,502,40,461], // DIGIT EIGHT + 0x39: [469,182,502,28,466], // DIGIT NINE + 0x3A: [457,12,216,50,168], // COLON + 0x3B: [458,189,216,47,179], // SEMICOLON + 0x3D: [368,-132,756,54,725], // EQUALS SIGN + 0x3F: [693,11,362,46,357], // QUESTION MARK + 0x41: [696,26,718,22,708], // LATIN CAPITAL LETTER A + 0x42: [691,27,884,48,820], // LATIN CAPITAL LETTER B + 0x43: [685,24,613,59,607], // LATIN CAPITAL LETTER C + 0x44: [685,27,832,27,745], // LATIN CAPITAL LETTER D + 0x45: [685,24,663,86,634], // LATIN CAPITAL LETTER E + 0x46: [686,153,611,11,612], // LATIN CAPITAL LETTER F + 0x47: [690,26,785,66,710], // LATIN CAPITAL LETTER G + 0x48: [666,133,720,1,644], // LATIN CAPITAL LETTER H + 0x49: [686,26,554,30,532], // LATIN CAPITAL LETTER I + 0x4A: [686,139,552,-10,522], // LATIN CAPITAL LETTER J + 0x4B: [680,27,668,17,682], // LATIN CAPITAL LETTER K + 0x4C: [686,26,666,33,644], // LATIN CAPITAL LETTER L + 0x4D: [692,27,1050,27,1048], // LATIN CAPITAL LETTER M + 0x4E: [686,25,832,27,825], // LATIN CAPITAL LETTER N + 0x4F: [729,27,827,12,744], // LATIN CAPITAL LETTER O + 0x50: [692,218,828,28,804], // LATIN CAPITAL LETTER P + 0x51: [729,69,827,11,782], // LATIN CAPITAL LETTER Q + 0x52: [686,26,828,27,824], // LATIN CAPITAL LETTER R + 0x53: [692,27,829,66,756], // LATIN CAPITAL LETTER S + 0x54: [701,27,669,34,676], // LATIN CAPITAL LETTER T + 0x55: [697,27,646,-25,665], // LATIN CAPITAL LETTER U + 0x56: [686,26,831,26,825], // LATIN CAPITAL LETTER V + 0x57: [686,27,1046,32,1054], // LATIN CAPITAL LETTER W + 0x58: [688,27,719,28,709], // LATIN CAPITAL LETTER X + 0x59: [686,218,833,27,740], // LATIN CAPITAL LETTER Y + 0x5A: [729,139,602,11,532], // LATIN CAPITAL LETTER Z + 0x5B: [740,130,278,117,278], // LEFT SQUARE BRACKET + 0x5D: [738,131,278,-4,160], // RIGHT SQUARE BRACKET + 0x5E: [734,-452,500,0,495], // CIRCUMFLEX ACCENT + 0x61: [470,35,500,66,497], // LATIN SMALL LETTER A + 0x62: [685,31,513,87,442], // LATIN SMALL LETTER B + 0x63: [466,29,389,72,359], // LATIN SMALL LETTER C + 0x64: [609,33,499,13,428], // LATIN SMALL LETTER D + 0x65: [467,30,401,70,364], // LATIN SMALL LETTER E + 0x66: [681,221,326,30,323], // LATIN SMALL LETTER F + 0x67: [470,209,504,17,455], // LATIN SMALL LETTER G + 0x68: [688,205,521,77,434], // LATIN SMALL LETTER H + 0x69: [673,20,279,14,267], // LATIN SMALL LETTER I + 0x6A: [672,208,281,-9,196], // LATIN SMALL LETTER J + 0x6B: [689,25,389,24,362], // LATIN SMALL LETTER K + 0x6C: [685,20,280,98,276], // LATIN SMALL LETTER L + 0x6D: [475,26,767,8,753], // LATIN SMALL LETTER M + 0x6E: [475,22,527,20,514], // LATIN SMALL LETTER N + 0x6F: [480,28,489,67,412], // LATIN SMALL LETTER O + 0x70: [541,212,500,12,430], // LATIN SMALL LETTER P + 0x71: [479,219,489,60,419], // LATIN SMALL LETTER Q + 0x72: [474,21,389,17,387], // LATIN SMALL LETTER R + 0x73: [478,29,443,-18,406], // LATIN SMALL LETTER S + 0x74: [640,20,333,27,348], // LATIN SMALL LETTER T + 0x75: [474,23,517,9,513], // LATIN SMALL LETTER U + 0x76: [530,28,512,55,434], // LATIN SMALL LETTER V + 0x77: [532,28,774,45,688], // LATIN SMALL LETTER W + 0x78: [472,188,389,10,363], // LATIN SMALL LETTER X + 0x79: [528,218,499,45,431], // LATIN SMALL LETTER Y + 0x7A: [471,214,391,-7,314] // LATIN SMALL LETTER Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Regular/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js new file mode 100644 index 0000000..a778f4f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'MathJax_Fraktur', + testString: "MathJax Fraktur", + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xDFFF,"Other"], + [0xE300,0xE310,"PUA"] + ] + +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Fraktur"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Fraktur/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js new file mode 100644 index 0000000..c647a75 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js @@ -0,0 +1,30 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2018: [708,-410,215,45,158], // LEFT SINGLE QUOTATION MARK + 0x2019: [692,-395,215,49,163] // RIGHT SINGLE QUOTATION MARK + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Regular/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js new file mode 100644 index 0000000..f52542d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur'], + { + 0xE300: [683,32,497,75,430], // stix-capital Gamma, Greek slashed + 0xE301: [616,30,498,35,432], // stix-MATHEMATICAL BOLD CAPITAL GAMMA SLASHED + 0xE302: [680,215,333,29,339], // stix-capital Delta, Greek slashed + 0xE303: [679,224,329,28,318], // stix-MATHEMATICAL BOLD CAPITAL DELTA SLASHED + 0xE304: [471,214,503,52,449], // stix-capital Epsilon, Greek slashed + 0xE305: [686,20,333,26,315], // stix-MATHEMATICAL BOLD CAPITAL EPSILON SLASHED + 0xE306: [577,21,334,29,347], // stix-capital Zeta, Greek slashed + 0xE307: [475,22,501,10,514] // stix-MATHEMATICAL BOLD CAPITAL ZETA SLASHED + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Regular/PUA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js new file mode 100644 index 0000000..274b92a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Greek-bold'] = { + directory: 'Greek/Bold', + family: 'MathJax_Greek', + weight: 'bold', + testString: "\u0393 \u03A5 \u039B", + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,0,692,39,643], // GREEK CAPITAL LETTER GAMMA + 0x394: [698,0,958,56,901], // GREEK CAPITAL LETTER DELTA + 0x398: [696,10,894,64,829], // GREEK CAPITAL LETTER THETA + 0x39B: [698,0,806,40,765], // GREEK CAPITAL LETTER LAMDA + 0x39E: [675,0,767,48,718], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,900,39,860], // GREEK CAPITAL LETTER PI + 0x3A3: [686,0,831,64,766], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [697,0,894,64,829], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [686,0,831,64,766], // GREEK CAPITAL LETTER PHI + 0x3A8: [686,0,894,64,829], // GREEK CAPITAL LETTER PSI + 0x3A9: [696,1,831,51,779] // GREEK CAPITAL LETTER OMEGA +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Greek-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Greek/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js new file mode 100644 index 0000000..7e978ef --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js @@ -0,0 +1,111 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Greek-bold-italic'] = { + directory: 'Greek/BoldItalic', + family: 'MathJax_Greek', + weight: 'bold', + style: 'italic', + testString: "\u0393 \u03A5 \u039B", + skew: { + 0x393: 0.0958, + 0x394: 0.192, + 0x398: 0.0958, + 0x39B: 0.192, + 0x39E: 0.0958, + 0x3A0: 0.0639, + 0x3A3: 0.0958, + 0x3A5: 0.0639, + 0x3A6: 0.0958, + 0x3A8: 0.0639, + 0x3A9: 0.0958, + 0x3B1: 0.0319, + 0x3B2: 0.0958, + 0x3B4: 0.0639, + 0x3B5: 0.0958, + 0x3B6: 0.0958, + 0x3B7: 0.0639, + 0x3B8: 0.0958, + 0x3B9: 0.0639, + 0x3BC: 0.0319, + 0x3BD: 0.0319, + 0x3BE: 0.128, + 0x3BF: 0.0639, + 0x3C1: 0.0958, + 0x3C2: 0.0958, + 0x3C4: 0.0319, + 0x3C5: 0.0319, + 0x3C6: 0.0958, + 0x3C7: 0.0639, + 0x3C8: 0.128, + 0x3D1: 0.0958, + 0x3D5: 0.0958, + 0x3F1: 0.0958, + 0x3F5: 0.0639 + }, + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,0,657,43,777], // GREEK CAPITAL LETTER GAMMA + 0x394: [711,0,958,59,904], // GREEK CAPITAL LETTER DELTA + 0x398: [702,17,867,54,844], // GREEK CAPITAL LETTER THETA + 0x39B: [711,0,806,44,776], // GREEK CAPITAL LETTER LAMDA + 0x39E: [675,0,841,62,867], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,982,43,1026], // GREEK CAPITAL LETTER PI + 0x3A3: [686,0,885,69,902], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [703,0,671,32,802], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [686,0,767,29,737], // GREEK CAPITAL LETTER PHI + 0x3A8: [686,0,714,22,790], // GREEK CAPITAL LETTER PSI + 0x3A9: [703,0,879,93,886], // GREEK CAPITAL LETTER OMEGA + 0x3B1: [452,8,761,39,712], // GREEK SMALL LETTER ALPHA + 0x3B2: [701,194,660,28,637], // GREEK SMALL LETTER BETA + 0x3B3: [451,211,590,5,617], // GREEK SMALL LETTER GAMMA + 0x3B4: [725,8,522,39,513], // GREEK SMALL LETTER DELTA + 0x3B5: [461,17,529,36,481], // GREEK SMALL LETTER EPSILON + 0x3B6: [711,202,508,48,521], // GREEK SMALL LETTER ZETA + 0x3B7: [452,211,600,24,600], // GREEK SMALL LETTER ETA + 0x3B8: [702,8,562,40,554], // GREEK SMALL LETTER THETA + 0x3B9: [452,8,412,38,386], // GREEK SMALL LETTER IOTA + 0x3BA: [452,8,668,45,642], // GREEK SMALL LETTER KAPPA + 0x3BB: [694,13,671,40,652], // GREEK SMALL LETTER LAMDA + 0x3BC: [452,211,708,33,682], // GREEK SMALL LETTER MU + 0x3BD: [452,2,577,38,608], // GREEK SMALL LETTER NU + 0x3BE: [711,201,508,23,490], // GREEK SMALL LETTER XI + 0x3BF: [452,8,585,39,576], // GREEK SMALL LETTER OMICRON + 0x3C0: [444,8,682,23,674], // GREEK SMALL LETTER PI + 0x3C1: [451,211,612,34,603], // GREEK SMALL LETTER RHO + 0x3C2: [451,105,424,33,457], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [444,8,686,35,677], // GREEK SMALL LETTER SIGMA + 0x3C4: [444,13,521,23,610], // GREEK SMALL LETTER TAU + 0x3C5: [453,8,631,24,604], // GREEK SMALL LETTER UPSILON + 0x3C6: [452,216,747,53,703], // GREEK SMALL LETTER PHI + 0x3C7: [452,201,718,32,685], // GREEK SMALL LETTER CHI + 0x3C8: [694,202,758,24,732], // GREEK SMALL LETTER PSI + 0x3C9: [453,8,718,24,691], // GREEK SMALL LETTER OMEGA + 0x3D1: [701,8,692,24,656], // GREEK THETA SYMBOL + 0x3D5: [694,202,712,51,693], // GREEK PHI SYMBOL + 0x3D6: [444,8,975,23,961], // GREEK PI SYMBOL + 0x3F1: [451,194,612,75,603], // GREEK RHO SYMBOL + 0x3F5: [444,7,483,44,450] // GREEK LUNATE EPSILON SYMBOL +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Greek-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Greek/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js new file mode 100644 index 0000000..175fa5a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js @@ -0,0 +1,110 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Greek-italic'] = { + directory: 'Greek/Italic', + family: 'MathJax_Greek', + style: 'italic', + testString: "\u0393 \u03A5 \u039B", + skew: { + 0x393: 0.0833, + 0x394: 0.167, + 0x398: 0.0833, + 0x39B: 0.167, + 0x39E: 0.0833, + 0x3A0: 0.0556, + 0x3A3: 0.0833, + 0x3A5: 0.0556, + 0x3A6: 0.0833, + 0x3A8: 0.0556, + 0x3A9: 0.0833, + 0x3B1: 0.0278, + 0x3B2: 0.0833, + 0x3B4: 0.0556, + 0x3B5: 0.0833, + 0x3B6: 0.0833, + 0x3B7: 0.0556, + 0x3B8: 0.0833, + 0x3B9: 0.0556, + 0x3BC: 0.0278, + 0x3BD: 0.0278, + 0x3BE: 0.111, + 0x3BF: 0.0556, + 0x3C1: 0.0833, + 0x3C2: 0.0833, + 0x3C4: 0.0278, + 0x3C5: 0.0278, + 0x3C6: 0.0833, + 0x3C7: 0.0556, + 0x3C8: 0.111, + 0x3D1: 0.0833, + 0x3D5: 0.0833, + 0x3F1: 0.0833, + 0x3F5: 0.0556 + }, + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,-1,615,31,721], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,833,48,788], // GREEK CAPITAL LETTER DELTA + 0x398: [704,22,763,50,740], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,694,35,670], // GREEK CAPITAL LETTER LAMDA + 0x39E: [678,0,742,53,777], // GREEK CAPITAL LETTER XI + 0x3A0: [681,0,831,31,887], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,780,58,806], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,583,28,700], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,667,24,642], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,612,21,692], // GREEK CAPITAL LETTER PSI + 0x3A9: [704,0,772,80,786], // GREEK CAPITAL LETTER OMEGA + 0x3B1: [442,11,640,34,603], // GREEK SMALL LETTER ALPHA + 0x3B2: [705,194,566,23,573], // GREEK SMALL LETTER BETA + 0x3B3: [441,216,518,11,543], // GREEK SMALL LETTER GAMMA + 0x3B4: [717,10,444,36,451], // GREEK SMALL LETTER DELTA + 0x3B5: [452,22,466,27,428], // GREEK SMALL LETTER EPSILON + 0x3B6: [704,204,438,44,471], // GREEK SMALL LETTER ZETA + 0x3B7: [442,216,497,21,503], // GREEK SMALL LETTER ETA + 0x3B8: [705,10,469,35,462], // GREEK SMALL LETTER THETA + 0x3B9: [442,10,354,48,332], // GREEK SMALL LETTER IOTA + 0x3BA: [442,11,576,49,554], // GREEK SMALL LETTER KAPPA + 0x3BB: [694,12,583,47,556], // GREEK SMALL LETTER LAMDA + 0x3BC: [442,216,603,23,580], // GREEK SMALL LETTER MU + 0x3BD: [442,2,494,45,530], // GREEK SMALL LETTER NU + 0x3BE: [704,205,438,21,443], // GREEK SMALL LETTER XI + 0x3BF: [441,11,485,34,476], // GREEK SMALL LETTER OMICRON + 0x3C0: [431,11,570,19,573], // GREEK SMALL LETTER PI + 0x3C1: [442,216,517,23,510], // GREEK SMALL LETTER RHO + 0x3C2: [442,107,363,31,405], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [431,11,571,31,572], // GREEK SMALL LETTER SIGMA + 0x3C4: [431,13,437,18,517], // GREEK SMALL LETTER TAU + 0x3C5: [443,10,540,21,523], // GREEK SMALL LETTER UPSILON + 0x3C6: [442,218,654,50,618], // GREEK SMALL LETTER PHI + 0x3C7: [442,204,626,25,600], // GREEK SMALL LETTER CHI + 0x3C8: [694,205,651,21,634], // GREEK SMALL LETTER PSI + 0x3C9: [443,11,622,15,604], // GREEK SMALL LETTER OMEGA + 0x3D1: [705,11,591,21,563], // GREEK THETA SYMBOL + 0x3D5: [694,205,596,43,579], // GREEK PHI SYMBOL + 0x3D6: [431,10,828,19,823], // GREEK PI SYMBOL + 0x3F1: [442,194,517,67,510], // GREEK RHO SYMBOL + 0x3F5: [431,11,406,40,382] // GREEK LUNATE EPSILON SYMBOL +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Greek-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Greek/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js new file mode 100644 index 0000000..5df41bf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js @@ -0,0 +1,43 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Greek'] = { + directory: 'Greek/Regular', + family: 'MathJax_Greek', + testString: "\u0393 \u03A5 \u039B", + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,0,625,25,582], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,833,46,786], // GREEK CAPITAL LETTER DELTA + 0x398: [705,22,778,56,722], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,694,32,661], // GREEK CAPITAL LETTER LAMDA + 0x39E: [677,0,667,42,624], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,750,25,724], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,722,55,666], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,778,55,722], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,722,56,665], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,778,55,722], // GREEK CAPITAL LETTER PSI + 0x3A9: [704,0,722,44,677] // GREEK CAPITAL LETTER OMEGA +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Greek"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Greek/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js new file mode 100644 index 0000000..bfe4ca0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js @@ -0,0 +1,51 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x2190: [518,17,1150,64,1084], // LEFTWARDS ARROW + 0x2191: [694,193,575,14,561], // UPWARDS ARROW + 0x2192: [518,17,1150,65,1085], // RIGHTWARDS ARROW + 0x2193: [694,194,575,14,561], // DOWNWARDS ARROW + 0x2194: [518,17,1150,64,1085], // LEFT RIGHT ARROW + 0x2195: [767,267,575,14,561], // UP DOWN ARROW + 0x2196: [724,194,1150,64,1084], // NORTH WEST ARROW + 0x2197: [724,193,1150,64,1085], // NORTH EAST ARROW + 0x2198: [694,224,1150,65,1085], // SOUTH EAST ARROW + 0x2199: [694,224,1150,64,1085], // SOUTH WEST ARROW + 0x21A6: [518,17,1150,65,1085], // RIGHTWARDS ARROW FROM BAR + 0x21A9: [518,17,1282,64,1218], // LEFTWARDS ARROW WITH HOOK + 0x21AA: [518,17,1282,65,1217], // RIGHTWARDS ARROW WITH HOOK + 0x21BC: [518,-220,1150,64,1084], // LEFTWARDS HARPOON WITH BARB UPWARDS + 0x21BD: [281,17,1150,64,1084], // LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x21C0: [518,-220,1150,65,1085], // RIGHTWARDS HARPOON WITH BARB UPWARDS + 0x21C1: [281,17,1150,64,1085], // RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x21CC: [718,17,1150,64,1085], // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21D0: [547,46,1150,64,1085], // LEFTWARDS DOUBLE ARROW + 0x21D1: [694,193,703,30,672], // UPWARDS DOUBLE ARROW + 0x21D2: [547,46,1150,64,1084], // RIGHTWARDS DOUBLE ARROW + 0x21D3: [694,194,703,30,672], // DOWNWARDS DOUBLE ARROW + 0x21D4: [547,46,1150,47,1102], // LEFT RIGHT DOUBLE ARROW + 0x21D5: [767,267,703,30,672] // UP DOWN DOUBLE ARROW + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/Arrows.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js new file mode 100644 index 0000000..c56069f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js @@ -0,0 +1,39 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x300: [706,-503,0,-461,-237], // COMBINING GRAVE ACCENT + 0x301: [706,-503,0,-339,-115], // COMBINING ACUTE ACCENT + 0x302: [694,-520,0,-449,-127], // COMBINING CIRCUMFLEX ACCENT + 0x303: [694,-552,0,-479,-97], // COMBINING TILDE + 0x304: [607,-540,0,-495,-81], // COMBINING MACRON + 0x306: [694,-500,0,-473,-103], // COMBINING BREVE + 0x307: [695,-525,0,-373,-203], // COMBINING DOT ABOVE + 0x308: [695,-535,0,-479,-97], // COMBINING DIAERESIS + 0x30A: [702,-536,0,-415,-161], // COMBINING RING ABOVE + 0x30B: [714,-511,0,-442,-82], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [660,-515,0,-445,-131], // COMBINING CARON + 0x338: [711,210,0,-734,-161] // COMBINING LONG SOLIDUS OVERLAY + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js new file mode 100644 index 0000000..0689be0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x20D7: [723,-513,0,-542,-33] // COMBINING RIGHT ARROW ABOVE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/CombDiactForSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js new file mode 100644 index 0000000..aa48c8c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeneralPunctuation.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x2002: [0,0,500,0,0], // ?? + 0x2003: [0,0,999,0,0], // ?? + 0x2004: [0,0,333,0,0], // ?? + 0x2005: [0,0,250,0,0], // ?? + 0x2006: [0,0,167,0,0], // ?? + 0x2009: [0,0,167,0,0], // ?? + 0x200A: [0,0,83,0,0], // ?? + 0x2013: [300,-249,575,0,574], // EN DASH + 0x2014: [300,-249,1150,0,1149], // EM DASH + 0x2018: [694,-329,319,58,245], // LEFT SINGLE QUOTATION MARK + 0x2019: [694,-329,319,74,261], // RIGHT SINGLE QUOTATION MARK + 0x201C: [694,-329,603,110,564], // LEFT DOUBLE QUOTATION MARK + 0x201D: [694,-329,603,38,492], // RIGHT DOUBLE QUOTATION MARK + 0x2020: [702,211,511,64,446], // DAGGER + 0x2021: [702,202,511,64,446], // DOUBLE DAGGER + 0x2026: [171,-1,1295,74,1221], // HORIZONTAL ELLIPSIS + 0x2032: [563,-33,344,35,331] // PRIME + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js new file mode 100644 index 0000000..4c84990 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x25B3: [711,-1,1022,69,953], // WHITE UP-POINTING TRIANGLE + 0x25B9: [540,39,575,33,542], // WHITE RIGHT-POINTING SMALL TRIANGLE + 0x25BD: [500,210,1022,68,953], // WHITE DOWN-POINTING TRIANGLE + 0x25C3: [539,38,575,33,542], // WHITE LEFT-POINTING SMALL TRIANGLE + 0x25EF: [711,211,1150,65,1084] // LARGE CIRCLE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/GeometricShapes.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js new file mode 100644 index 0000000..6ab3318 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xA8: [695,-535,575,96,478], // DIAERESIS + 0xAC: [371,-61,767,64,702], // NOT SIGN + 0xAF: [607,-540,575,80,494], // MACRON + 0xB0: [702,-536,575,160,414], // DEGREE SIGN + 0xB1: [728,35,894,64,829], // PLUS-MINUS SIGN + 0xB4: [706,-503,575,236,460], // ACUTE ACCENT + 0xD7: [530,28,894,168,726], // MULTIPLICATION SIGN + 0xF7: [597,96,894,64,828] // DIVISION SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/Latin1Supplement.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js new file mode 100644 index 0000000..6745cbf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x131: [452,8,394,24,367] // LATIN SMALL LETTER DOTLESS I + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js new file mode 100644 index 0000000..6457594 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x237: [451,201,439,-12,420] // LATIN SMALL LETTER DOTLESS J + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/LatinExtendedB.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js new file mode 100644 index 0000000..4fc296c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js @@ -0,0 +1,33 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x210F: [694,8,668,45,642], // stix-/hbar - Planck's over 2pi + 0x2111: [702,8,831,64,798], // BLACK-LETTER CAPITAL I + 0x2113: [702,19,474,-1,446], // SCRIPT SMALL L + 0x2118: [461,210,740,72,726], // SCRIPT CAPITAL P + 0x211C: [711,16,831,42,824], // BLACK-LETTER CAPITAL R + 0x2135: [694,0,703,64,638] // ALEF SYMBOL + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js new file mode 100644 index 0000000..246c899 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js @@ -0,0 +1,162 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'] = { + directory: 'Main/Bold', + family: 'MathJax_Main', + weight: 'bold', + testString: "MathJax Main ^ \u210F \u2223", + skew: { + 0x131: 0.0319, + 0x237: 0.0958, + 0x210F: -0.0319, + 0x2113: 0.128, + 0x2202: 0.0958 + }, + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2190,0x21FF,"Arrows"], + [0x2200,0x22FF,"MathOperators"], + [0x2300,0x23FF,"MiscTechnical"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x27C0,0x27EF,"MiscMathSymbolsA"], + [0x27F0,0x27FF,"SupplementalArrowsA"], + [0x2A00,0x2AFF,"SuppMathOperators"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [705,-1,350,89,260], // EXCLAMATION MARK + 0x22: [694,-329,603,38,492], // QUOTATION MARK + 0x23: [694,193,958,64,893], // NUMBER SIGN + 0x24: [750,56,575,64,510], // DOLLAR SIGN + 0x25: [750,56,958,65,893], // PERCENT SIGN + 0x26: [705,11,894,48,836], // AMPERSAND + 0x27: [694,-329,319,74,261], // APOSTROPHE + 0x28: [750,249,447,103,382], // LEFT PARENTHESIS + 0x29: [750,249,447,64,343], // RIGHT PARENTHESIS + 0x2A: [750,-306,575,73,501], // ASTERISK + 0x2B: [633,131,894,64,829], // PLUS SIGN + 0x2C: [171,194,319,74,258], // COMMA + 0x2D: [278,-166,383,13,318], // HYPHEN-MINUS + 0x2E: [171,-1,319,74,245], // FULL STOP + 0x2F: [750,250,575,63,511], // SOLIDUS + 0x30: [654,10,575,45,529], // DIGIT ZERO + 0x31: [655,0,575,80,494], // DIGIT ONE + 0x32: [654,0,575,57,517], // DIGIT TWO + 0x33: [655,11,575,47,526], // DIGIT THREE + 0x34: [656,0,575,32,542], // DIGIT FOUR + 0x35: [655,11,575,57,517], // DIGIT FIVE + 0x36: [655,11,575,48,526], // DIGIT SIX + 0x37: [676,11,575,64,558], // DIGIT SEVEN + 0x38: [654,11,575,48,526], // DIGIT EIGHT + 0x39: [654,11,575,48,526], // DIGIT NINE + 0x3A: [444,-1,319,74,245], // COLON + 0x3B: [444,194,319,74,248], // SEMICOLON + 0x3C: [587,85,894,96,797], // LESS-THAN SIGN + 0x3D: [393,-109,894,64,829], // EQUALS SIGN + 0x3E: [587,85,894,96,797], // GREATER-THAN SIGN + 0x3F: [700,-1,543,65,478], // QUESTION MARK + 0x40: [699,6,894,64,829], // COMMERCIAL AT + 0x41: [698,0,869,40,828], // LATIN CAPITAL LETTER A + 0x42: [686,0,818,39,752], // LATIN CAPITAL LETTER B + 0x43: [697,11,831,64,766], // LATIN CAPITAL LETTER C + 0x44: [686,0,882,39,817], // LATIN CAPITAL LETTER D + 0x45: [680,0,756,39,723], // LATIN CAPITAL LETTER E + 0x46: [680,0,724,39,675], // LATIN CAPITAL LETTER F + 0x47: [697,10,904,64,845], // LATIN CAPITAL LETTER G + 0x48: [686,0,900,39,860], // LATIN CAPITAL LETTER H + 0x49: [686,0,436,25,410], // LATIN CAPITAL LETTER I + 0x4A: [686,11,594,8,527], // LATIN CAPITAL LETTER J + 0x4B: [686,0,901,39,852], // LATIN CAPITAL LETTER K + 0x4C: [686,0,692,39,643], // LATIN CAPITAL LETTER L + 0x4D: [686,0,1092,39,1052], // LATIN CAPITAL LETTER M + 0x4E: [686,0,900,39,860], // LATIN CAPITAL LETTER N + 0x4F: [696,10,864,64,798], // LATIN CAPITAL LETTER O + 0x50: [686,0,786,39,721], // LATIN CAPITAL LETTER P + 0x51: [696,193,864,64,805], // LATIN CAPITAL LETTER Q + 0x52: [686,11,862,39,858], // LATIN CAPITAL LETTER R + 0x53: [697,11,639,64,574], // LATIN CAPITAL LETTER S + 0x54: [675,0,800,41,758], // LATIN CAPITAL LETTER T + 0x55: [686,11,885,39,845], // LATIN CAPITAL LETTER U + 0x56: [686,7,869,25,843], // LATIN CAPITAL LETTER V + 0x57: [686,7,1189,24,1164], // LATIN CAPITAL LETTER W + 0x58: [686,0,869,33,835], // LATIN CAPITAL LETTER X + 0x59: [686,0,869,19,849], // LATIN CAPITAL LETTER Y + 0x5A: [686,0,703,64,645], // LATIN CAPITAL LETTER Z + 0x5B: [750,250,319,128,293], // LEFT SQUARE BRACKET + 0x5C: [750,250,575,63,511], // REVERSE SOLIDUS + 0x5D: [750,250,319,25,190], // RIGHT SQUARE BRACKET + 0x5E: [694,-520,575,126,448], // CIRCUMFLEX ACCENT + 0x5F: [-10,61,575,0,574], // LOW LINE + 0x60: [706,-503,575,114,338], // GRAVE ACCENT + 0x61: [453,6,559,32,558], // LATIN SMALL LETTER A + 0x62: [694,6,639,29,600], // LATIN SMALL LETTER B + 0x63: [453,6,511,39,478], // LATIN SMALL LETTER C + 0x64: [694,6,639,38,609], // LATIN SMALL LETTER D + 0x65: [452,6,527,32,494], // LATIN SMALL LETTER E + 0x66: [700,0,351,40,452], // LATIN SMALL LETTER F + 0x67: [455,201,575,30,558], // LATIN SMALL LETTER G + 0x68: [694,0,639,37,623], // LATIN SMALL LETTER H + 0x69: [695,0,319,40,294], // LATIN SMALL LETTER I + 0x6A: [695,200,351,-71,274], // LATIN SMALL LETTER J + 0x6B: [694,0,607,29,587], // LATIN SMALL LETTER K + 0x6C: [694,0,319,40,301], // LATIN SMALL LETTER L + 0x6D: [450,0,958,37,942], // LATIN SMALL LETTER M + 0x6E: [450,0,639,37,623], // LATIN SMALL LETTER N + 0x6F: [452,5,575,32,542], // LATIN SMALL LETTER O + 0x70: [450,194,639,29,600], // LATIN SMALL LETTER P + 0x71: [450,194,607,38,609], // LATIN SMALL LETTER Q + 0x72: [450,0,474,29,442], // LATIN SMALL LETTER R + 0x73: [453,6,454,38,414], // LATIN SMALL LETTER S + 0x74: [635,5,447,21,382], // LATIN SMALL LETTER T + 0x75: [450,6,639,37,623], // LATIN SMALL LETTER U + 0x76: [444,3,607,26,580], // LATIN SMALL LETTER V + 0x77: [444,4,831,25,805], // LATIN SMALL LETTER W + 0x78: [444,0,607,21,586], // LATIN SMALL LETTER X + 0x79: [444,200,607,23,580], // LATIN SMALL LETTER Y + 0x7A: [444,0,511,32,462], // LATIN SMALL LETTER Z + 0x7B: [750,250,575,70,504], // LEFT CURLY BRACKET + 0x7C: [750,249,319,129,190], // VERTICAL LINE + 0x7D: [750,250,575,70,504], // RIGHT CURLY BRACKET + 0x7E: [344,-202,575,96,478], // TILDE + 0x393: [680,0,692,39,643], // GREEK CAPITAL LETTER GAMMA + 0x394: [698,0,958,56,901], // GREEK CAPITAL LETTER DELTA + 0x398: [696,10,894,64,829], // GREEK CAPITAL LETTER THETA + 0x39B: [698,0,806,40,765], // GREEK CAPITAL LETTER LAMDA + 0x39E: [675,0,767,48,718], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,900,39,860], // GREEK CAPITAL LETTER PI + 0x3A3: [686,0,831,63,766], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [697,0,894,64,829], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [686,0,831,64,766], // GREEK CAPITAL LETTER PHI + 0x3A8: [686,0,894,64,829], // GREEK CAPITAL LETTER PSI + 0x3A9: [696,0,831,51,779] // GREEK CAPITAL LETTER OMEGA +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Main-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js new file mode 100644 index 0000000..cb86273 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js @@ -0,0 +1,94 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x2200: [694,16,639,1,640], // FOR ALL + 0x2202: [710,17,628,60,657], // PARTIAL DIFFERENTIAL + 0x2203: [694,-1,639,64,574], // THERE EXISTS + 0x2205: [767,73,575,46,528], // EMPTY SET + 0x2207: [686,24,958,56,901], // NABLA + 0x2208: [587,86,767,97,670], // ELEMENT OF + 0x2209: [711,210,767,97,670], // stix-negated (vert) set membership, variant + 0x220B: [587,86,767,96,670], // CONTAINS AS MEMBER + 0x2212: [281,-221,894,96,797], // MINUS SIGN + 0x2213: [537,227,894,64,829], // MINUS-OR-PLUS SIGN + 0x2215: [750,250,575,63,511], // DIVISION SLASH + 0x2216: [750,250,575,63,511], // SET MINUS + 0x2217: [472,-28,575,73,501], // ASTERISK OPERATOR + 0x2218: [474,-28,575,64,510], // RING OPERATOR + 0x2219: [474,-28,575,64,510], // BULLET OPERATOR + 0x221A: [820,180,958,78,988], // SQUARE ROOT + 0x221D: [451,8,894,65,830], // PROPORTIONAL TO + 0x221E: [452,8,1150,65,1084], // INFINITY + 0x2220: [714,0,722,55,676], // ANGLE + 0x2223: [750,249,319,129,190], // DIVIDES + 0x2225: [750,248,575,145,430], // PARALLEL TO + 0x2227: [604,17,767,64,702], // LOGICAL AND + 0x2228: [604,16,767,64,702], // LOGICAL OR + 0x2229: [603,16,767,64,702], // stix-intersection, serifs + 0x222A: [604,16,767,64,702], // stix-union, serifs + 0x222B: [711,211,569,64,632], // INTEGRAL + 0x223C: [391,-109,894,64,828], // TILDE OPERATOR + 0x2240: [583,82,319,64,254], // WREATH PRODUCT + 0x2243: [502,3,894,64,829], // ASYMPTOTICALLY EQUAL TO + 0x2245: [638,27,1000,64,829], // APPROXIMATELY EQUAL TO + 0x2248: [524,-32,894,64,829], // ALMOST EQUAL TO + 0x224D: [533,32,894,64,829], // EQUIVALENT TO + 0x2250: [721,-109,894,64,829], // APPROACHES THE LIMIT + 0x2260: [711,210,894,64,829], // stix-not (vert) equals + 0x2261: [505,3,894,64,829], // IDENTICAL TO + 0x2264: [697,199,894,96,797], // LESS-THAN OR EQUAL TO + 0x2265: [697,199,894,96,797], // GREATER-THAN OR EQUAL TO + 0x226A: [617,116,1150,64,1085], // MUCH LESS-THAN + 0x226B: [618,116,1150,64,1085], // MUCH GREATER-THAN + 0x227A: [585,86,894,96,797], // PRECEDES + 0x227B: [586,86,894,96,797], // SUCCEEDS + 0x2282: [587,85,894,96,797], // SUBSET OF + 0x2283: [587,86,894,96,796], // SUPERSET OF + 0x2286: [697,199,894,96,797], // SUBSET OF OR EQUAL TO + 0x2287: [697,199,894,96,796], // SUPERSET OF OR EQUAL TO + 0x228E: [604,16,767,64,702], // MULTISET UNION + 0x2291: [697,199,894,96,828], // SQUARE IMAGE OF OR EQUAL TO + 0x2292: [697,199,894,66,797], // SQUARE ORIGINAL OF OR EQUAL TO + 0x2293: [604,-1,767,70,696], // stix-square intersection, serifs + 0x2294: [604,-1,767,70,696], // stix-square union, serifs + 0x2295: [632,132,894,64,828], // stix-circled plus (with rim) + 0x2296: [632,132,894,64,828], // CIRCLED MINUS + 0x2297: [632,132,894,64,828], // stix-circled times (with rim) + 0x2298: [632,132,894,64,828], // CIRCLED DIVISION SLASH + 0x2299: [632,132,894,64,828], // CIRCLED DOT OPERATOR + 0x22A2: [693,-1,703,65,637], // RIGHT TACK + 0x22A3: [693,-1,703,64,638], // LEFT TACK + 0x22A4: [694,-1,894,64,829], // DOWN TACK + 0x22A5: [693,-1,894,65,829], // UP TACK + 0x22A8: [750,249,974,129,918], // TRUE + 0x22C4: [523,21,575,15,560], // DIAMOND OPERATOR + 0x22C5: [336,-166,319,74,245], // DOT OPERATOR + 0x22C6: [502,0,575,24,550], // STAR OPERATOR + 0x22C8: [540,39,1000,33,967], // BOWTIE + 0x22EE: [951,29,319,74,245], // VERTICAL ELLIPSIS + 0x22EF: [336,-166,1295,74,1221], // MIDLINE HORIZONTAL ELLIPSIS + 0x22F1: [871,-101,1323,129,1194] // DOWN RIGHT DIAGONAL ELLIPSIS + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js new file mode 100644 index 0000000..c45d1dd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x27E8: [750,249,447,127,382], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [750,249,447,64,319] // MATHEMATICAL RIGHT ANGLE BRACKET + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/MiscMathSymbolsA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js new file mode 100644 index 0000000..38b4d54 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js @@ -0,0 +1,34 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x2660: [719,129,894,64,829], // BLACK SPADE SUIT + 0x2661: [711,24,894,65,828], // WHITE HEART SUIT + 0x2662: [719,154,894,64,828], // WHITE DIAMOND SUIT + 0x2663: [719,129,894,32,861], // BLACK CLUB SUIT + 0x266D: [750,17,447,64,381], // MUSIC FLAT SIGN + 0x266E: [741,223,447,57,389], // MUSIC NATURAL SIGN + 0x266F: [724,224,447,63,382] // MUSIC SHARP SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/MiscSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js new file mode 100644 index 0000000..57421d3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js @@ -0,0 +1,33 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x2308: [750,248,511,194,493], // LEFT CEILING + 0x2309: [750,248,511,17,317], // RIGHT CEILING + 0x230A: [749,248,511,194,493], // LEFT FLOOR + 0x230B: [749,248,511,17,317], // RIGHT FLOOR + 0x2322: [405,-108,1150,65,1084], // stix-small down curve + 0x2323: [392,-126,1150,64,1085] // stix-small up curve + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/MiscTechnical.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js new file mode 100644 index 0000000..71ae2df --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x2C6: [694,-520,575,126,448], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [660,-515,575,130,444], // CARON + 0x2C9: [607,-540,575,80,494], // MODIFIER LETTER MACRON + 0x2CA: [706,-503,575,236,460], // MODIFIER LETTER ACUTE ACCENT + 0x2CB: [706,-503,575,114,338], // MODIFIER LETTER GRAVE ACCENT + 0x2D8: [694,-500,575,102,472], // BREVE + 0x2D9: [695,-525,575,202,372], // DOT ABOVE + 0x2DA: [702,-536,575,160,414], // RING ABOVE + 0x2DC: [694,-552,575,96,478] // SMALL TILDE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js new file mode 100644 index 0000000..cc9f55b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js @@ -0,0 +1,30 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x2A3F: [686,0,900,39,860], // AMALGAMATION OR COPRODUCT + 0x2AAF: [696,199,894,96,797], // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN + 0x2AB0: [697,199,894,96,797] // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/SuppMathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js new file mode 100644 index 0000000..3ee2451 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js @@ -0,0 +1,34 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], + { + 0x27F5: [518,17,1805,64,1741], // LONG LEFTWARDS ARROW + 0x27F6: [518,17,1833,96,1773], // LONG RIGHTWARDS ARROW + 0x27F7: [518,17,2126,64,2061], // LONG LEFT RIGHT ARROW + 0x27F8: [547,46,1868,64,1804], // LONG LEFTWARDS DOUBLE ARROW + 0x27F9: [547,46,1870,64,1804], // LONG RIGHTWARDS DOUBLE ARROW + 0x27FA: [547,46,2126,64,2060], // LONG LEFT RIGHT DOUBLE ARROW + 0x27FC: [518,17,1833,65,1773] // LONG RIGHTWARDS ARROW FROM BAR + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/SupplementalArrowsA.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js new file mode 100644 index 0000000..a25e910 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], + { + 0x300: [697,-500,0,-222,-74], // COMBINING GRAVE ACCENT + 0x301: [697,-500,0,-173,39], // COMBINING ACUTE ACCENT + 0x302: [694,-527,0,-251,17], // COMBINING CIRCUMFLEX ACCENT + 0x303: [668,-558,0,-265,60], // COMBINING TILDE + 0x304: [589,-544,0,-282,54], // COMBINING MACRON + 0x306: [694,-515,0,-237,62], // COMBINING BREVE + 0x307: [669,-548,0,-165,-41], // COMBINING DOT ABOVE + 0x308: [669,-554,0,-251,45], // COMBINING DIAERESIS + 0x30A: [716,-542,0,-199,3], // COMBINING RING ABOVE + 0x30B: [697,-503,0,-248,65], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [638,-502,0,-236,29] // COMBINING CARON + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js new file mode 100644 index 0000000..c271d77 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js @@ -0,0 +1,33 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], + { + 0x2013: [285,-248,511,91,554], // EN DASH + 0x2014: [285,-248,1022,117,1038], // EM DASH + 0x2018: [694,-379,307,197,362], // LEFT SINGLE QUOTATION MARK + 0x2019: [694,-379,307,213,377], // RIGHT SINGLE QUOTATION MARK + 0x201C: [694,-379,514,243,606], // LEFT DOUBLE QUOTATION MARK + 0x201D: [694,-379,514,176,538] // RIGHT DOUBLE QUOTATION MARK + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js new file mode 100644 index 0000000..74412e9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], + { + 0xA0: [0,0,250,0,0] // NO-BREAK SPACE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/Latin1Supplement.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js new file mode 100644 index 0000000..47b7207 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], + { + 0x210F: [695,13,540,42,562] // stix-/hbar - Planck's over 2pi + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js new file mode 100644 index 0000000..97ab4b1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js @@ -0,0 +1,138 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'] = { + directory: 'Main/Italic', + family: 'MathJax_Main', + style: 'italic', + testString: "MathJax Main ^ \u210F \u2223", + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x300,0x36F,"CombDiacritMarks"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x2100,0x214F,"LetterlikeSymbols"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [716,0,307,107,380], // EXCLAMATION MARK + 0x22: [694,-379,514,176,538], // QUOTATION MARK + 0x23: [694,194,818,115,828], // NUMBER SIGN + 0x25: [750,56,818,145,847], // PERCENT SIGN + 0x26: [716,22,767,127,802], // AMPERSAND + 0x27: [694,-379,307,213,377], // APOSTROPHE + 0x28: [750,250,409,144,517], // LEFT PARENTHESIS + 0x29: [750,250,409,17,390], // RIGHT PARENTHESIS + 0x2A: [750,-320,511,195,584], // ASTERISK + 0x2B: [557,57,767,139,753], // PLUS SIGN + 0x2C: [121,194,307,69,232], // COMMA + 0x2D: [251,-180,358,84,341], // HYPHEN-MINUS + 0x2E: [121,0,307,107,231], // FULL STOP + 0x2F: [750,250,511,19,617], // SOLIDUS + 0x30: [665,21,511,110,562], // DIGIT ZERO + 0x31: [666,0,511,110,468], // DIGIT ONE + 0x32: [666,22,511,76,551], // DIGIT TWO + 0x33: [666,22,511,96,562], // DIGIT THREE + 0x34: [666,194,511,46,478], // DIGIT FOUR + 0x35: [666,22,511,106,567], // DIGIT FIVE + 0x36: [665,22,511,120,565], // DIGIT SIX + 0x37: [666,22,511,136,634], // DIGIT SEVEN + 0x38: [666,21,511,99,553], // DIGIT EIGHT + 0x39: [666,22,511,107,553], // DIGIT NINE + 0x3A: [431,0,307,107,308], // COLON + 0x3B: [431,194,307,70,308], // SEMICOLON + 0x3D: [367,-133,767,116,776], // EQUALS SIGN + 0x3F: [716,0,511,195,551], // QUESTION MARK + 0x40: [705,11,767,152,789], // COMMERCIAL AT + 0x41: [716,0,743,58,696], // LATIN CAPITAL LETTER A + 0x42: [683,0,704,57,732], // LATIN CAPITAL LETTER B + 0x43: [705,21,716,150,812], // LATIN CAPITAL LETTER C + 0x44: [683,0,755,56,775], // LATIN CAPITAL LETTER D + 0x45: [680,0,678,54,743], // LATIN CAPITAL LETTER E + 0x46: [680,-1,653,54,731], // LATIN CAPITAL LETTER F + 0x47: [705,22,774,150,812], // LATIN CAPITAL LETTER G + 0x48: [683,0,743,54,860], // LATIN CAPITAL LETTER H + 0x49: [683,0,386,49,508], // LATIN CAPITAL LETTER I + 0x4A: [683,21,525,78,622], // LATIN CAPITAL LETTER J + 0x4B: [683,0,769,54,859], // LATIN CAPITAL LETTER K + 0x4C: [683,0,627,54,628], // LATIN CAPITAL LETTER L + 0x4D: [683,0,897,58,1010], // LATIN CAPITAL LETTER M + 0x4E: [683,0,743,54,860], // LATIN CAPITAL LETTER N + 0x4F: [704,22,767,149,788], // LATIN CAPITAL LETTER O + 0x50: [683,0,678,55,729], // LATIN CAPITAL LETTER P + 0x51: [704,194,767,149,788], // LATIN CAPITAL LETTER Q + 0x52: [683,22,729,55,723], // LATIN CAPITAL LETTER R + 0x53: [705,22,562,74,633], // LATIN CAPITAL LETTER S + 0x54: [677,0,716,171,806], // LATIN CAPITAL LETTER T + 0x55: [683,22,743,194,860], // LATIN CAPITAL LETTER U + 0x56: [683,22,743,205,868], // LATIN CAPITAL LETTER V + 0x57: [683,22,999,205,1124], // LATIN CAPITAL LETTER W + 0x58: [683,0,743,50,825], // LATIN CAPITAL LETTER X + 0x59: [683,0,743,198,875], // LATIN CAPITAL LETTER Y + 0x5A: [683,0,613,80,704], // LATIN CAPITAL LETTER Z + 0x5B: [750,250,307,73,446], // LEFT SQUARE BRACKET + 0x5D: [750,250,307,-14,359], // RIGHT SQUARE BRACKET + 0x5E: [694,-527,511,260,528], // CIRCUMFLEX ACCENT + 0x5F: [-25,62,511,91,554], // LOW LINE + 0x61: [442,11,511,101,543], // LATIN SMALL LETTER A + 0x62: [694,11,460,108,467], // LATIN SMALL LETTER B + 0x63: [441,10,460,103,469], // LATIN SMALL LETTER C + 0x64: [694,11,511,101,567], // LATIN SMALL LETTER D + 0x65: [442,10,460,107,470], // LATIN SMALL LETTER E + 0x66: [705,204,307,-23,450], // LATIN SMALL LETTER F + 0x67: [442,205,460,46,494], // LATIN SMALL LETTER G + 0x68: [694,11,511,69,544], // LATIN SMALL LETTER H + 0x69: [656,10,307,75,340], // LATIN SMALL LETTER I + 0x6A: [656,204,307,-32,364], // LATIN SMALL LETTER J + 0x6B: [694,11,460,69,498], // LATIN SMALL LETTER K + 0x6C: [694,11,256,87,312], // LATIN SMALL LETTER L + 0x6D: [442,11,818,75,851], // LATIN SMALL LETTER M + 0x6E: [442,11,562,75,595], // LATIN SMALL LETTER N + 0x6F: [442,11,511,103,517], // LATIN SMALL LETTER O + 0x70: [442,194,511,6,518], // LATIN SMALL LETTER P + 0x71: [442,194,460,101,504], // LATIN SMALL LETTER Q + 0x72: [442,11,422,75,484], // LATIN SMALL LETTER R + 0x73: [442,11,409,76,418], // LATIN SMALL LETTER S + 0x74: [626,11,332,87,373], // LATIN SMALL LETTER T + 0x75: [441,11,537,75,570], // LATIN SMALL LETTER U + 0x76: [443,10,460,75,492], // LATIN SMALL LETTER V + 0x77: [443,11,664,75,696], // LATIN SMALL LETTER W + 0x78: [442,11,464,58,513], // LATIN SMALL LETTER X + 0x79: [441,205,486,75,522], // LATIN SMALL LETTER Y + 0x7A: [442,11,409,54,466], // LATIN SMALL LETTER Z + 0x7E: [318,-208,511,246,571], // TILDE + 0xA3: [714,11,769,88,699], // POUND SIGN + 0x131: [441,10,307,75,340], // LATIN SMALL LETTER DOTLESS I + 0x237: [442,204,332,-32,327], // LATIN SMALL LETTER DOTLESS J + 0x393: [680,0,627,54,705], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,818,70,751], // GREEK CAPITAL LETTER DELTA + 0x398: [704,22,767,149,788], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,692,58,646], // GREEK CAPITAL LETTER LAMDA + 0x39E: [677,0,664,74,754], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,743,54,859], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,716,80,782], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,767,213,832], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,716,159,728], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,767,207,824], // GREEK CAPITAL LETTER PSI + 0x3A9: [705,0,716,100,759] // GREEK CAPITAL LETTER OMEGA +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Main-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js new file mode 100644 index 0000000..dbec8ce --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js @@ -0,0 +1,39 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], + { + 0x300: [699,-505,0,-394,-205], // COMBINING GRAVE ACCENT + 0x301: [699,-505,0,-297,-107], // COMBINING ACUTE ACCENT + 0x302: [694,-531,0,-388,-113], // COMBINING CIRCUMFLEX ACCENT + 0x303: [668,-565,0,-417,-84], // COMBINING TILDE + 0x304: [590,-544,0,-431,-70], // COMBINING MACRON + 0x306: [694,-515,0,-408,-93], // COMBINING BREVE + 0x307: [669,-549,0,-310,-191], // COMBINING DOT ABOVE + 0x308: [669,-554,0,-405,-96], // COMBINING DIAERESIS + 0x30A: [715,-542,0,-353,-148], // COMBINING RING ABOVE + 0x30B: [701,-510,0,-378,-80], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [644,-513,0,-386,-115], // COMBINING CARON + 0x338: [716,215,0,-639,-140] // COMBINING LONG SOLIDUS OVERLAY + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js new file mode 100644 index 0000000..f4a5129 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], + { + 0x25B3: [716,0,889,59,828], // WHITE UP-POINTING TRIANGLE + 0x25B9: [505,5,500,26,474], // WHITE RIGHT-POINTING SMALL TRIANGLE + 0x25BD: [500,215,889,59,828], // WHITE DOWN-POINTING TRIANGLE + 0x25C3: [505,5,500,26,473], // WHITE LEFT-POINTING SMALL TRIANGLE + 0x25EF: [715,215,1000,56,944] // LARGE CIRCLE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/GeometricShapes.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js new file mode 100644 index 0000000..05f12fc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js @@ -0,0 +1,305 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'] = { + directory: 'Main/Regular', + family: 'MathJax_Main', + testString: "MathJax Main ^ \u210F \u2223", + skew: { + 0x131: 0.0278, + 0x237: 0.0833, + 0x2113: 0.111, + 0x2118: 0.111, + 0x2202: 0.0833 + }, + Ranges: [ + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [716,-1,278,78,199], // EXCLAMATION MARK + 0x22: [694,-379,500,34,372], // QUOTATION MARK + 0x23: [694,194,833,56,777], // NUMBER SIGN + 0x24: [750,56,500,55,444], // DOLLAR SIGN + 0x25: [750,56,833,56,776], // PERCENT SIGN + 0x26: [716,22,778,42,727], // AMPERSAND + 0x27: [694,-379,278,78,212], // APOSTROPHE + 0x28: [750,250,389,94,333], // LEFT PARENTHESIS + 0x29: [750,250,389,55,294], // RIGHT PARENTHESIS + 0x2A: [750,-320,500,64,435], // ASTERISK + 0x2B: [583,82,778,56,722], // PLUS SIGN + 0x2C: [121,194,278,78,210], // COMMA + 0x2D: [252,-179,333,11,277], // HYPHEN-MINUS + 0x2E: [120,0,278,78,199], // FULL STOP + 0x2F: [750,250,500,56,445], // SOLIDUS + 0x30: [666,22,500,39,460], // DIGIT ZERO + 0x31: [666,0,500,83,427], // DIGIT ONE + 0x32: [666,0,500,50,449], // DIGIT TWO + 0x33: [665,22,500,42,457], // DIGIT THREE + 0x34: [677,0,500,28,471], // DIGIT FOUR + 0x35: [666,22,500,50,449], // DIGIT FIVE + 0x36: [666,22,500,42,456], // DIGIT SIX + 0x37: [676,22,500,55,485], // DIGIT SEVEN + 0x38: [666,22,500,43,457], // DIGIT EIGHT + 0x39: [666,22,500,42,456], // DIGIT NINE + 0x3A: [430,0,278,78,199], // COLON + 0x3B: [430,194,278,78,202], // SEMICOLON + 0x3C: [540,40,778,83,694], // LESS-THAN SIGN + 0x3D: [367,-133,778,56,722], // EQUALS SIGN + 0x3E: [540,40,778,83,694], // GREATER-THAN SIGN + 0x3F: [705,-1,472,55,416], // QUESTION MARK + 0x40: [705,11,778,56,722], // COMMERCIAL AT + 0x41: [716,0,750,32,717], // LATIN CAPITAL LETTER A + 0x42: [683,0,708,28,651], // LATIN CAPITAL LETTER B + 0x43: [705,21,722,56,666], // LATIN CAPITAL LETTER C + 0x44: [683,0,764,27,708], // LATIN CAPITAL LETTER D + 0x45: [680,0,681,25,652], // LATIN CAPITAL LETTER E + 0x46: [680,0,653,25,610], // LATIN CAPITAL LETTER F + 0x47: [705,22,785,56,735], // LATIN CAPITAL LETTER G + 0x48: [683,0,750,25,724], // LATIN CAPITAL LETTER H + 0x49: [683,0,361,21,339], // LATIN CAPITAL LETTER I + 0x4A: [683,22,514,25,465], // LATIN CAPITAL LETTER J + 0x4B: [683,0,778,25,736], // LATIN CAPITAL LETTER K + 0x4C: [683,0,625,25,582], // LATIN CAPITAL LETTER L + 0x4D: [683,0,917,29,887], // LATIN CAPITAL LETTER M + 0x4E: [683,0,750,25,724], // LATIN CAPITAL LETTER N + 0x4F: [705,22,778,56,722], // LATIN CAPITAL LETTER O + 0x50: [683,0,681,27,624], // LATIN CAPITAL LETTER P + 0x51: [705,193,778,56,728], // LATIN CAPITAL LETTER Q + 0x52: [683,22,736,27,732], // LATIN CAPITAL LETTER R + 0x53: [705,22,556,55,500], // LATIN CAPITAL LETTER S + 0x54: [677,0,722,36,685], // LATIN CAPITAL LETTER T + 0x55: [683,22,750,25,724], // LATIN CAPITAL LETTER U + 0x56: [683,22,750,19,730], // LATIN CAPITAL LETTER V + 0x57: [683,22,1028,18,1009], // LATIN CAPITAL LETTER W + 0x58: [683,0,750,23,726], // LATIN CAPITAL LETTER X + 0x59: [683,0,750,11,738], // LATIN CAPITAL LETTER Y + 0x5A: [683,0,611,55,560], // LATIN CAPITAL LETTER Z + 0x5B: [750,250,278,118,255], // LEFT SQUARE BRACKET + 0x5C: [750,250,500,56,444], // REVERSE SOLIDUS + 0x5D: [750,250,278,22,159], // RIGHT SQUARE BRACKET + 0x5E: [694,-531,500,112,387], // CIRCUMFLEX ACCENT + 0x5F: [-25,62,500,0,499], // LOW LINE + 0x60: [699,-505,500,106,295], // GRAVE ACCENT + 0x61: [448,11,500,34,493], // LATIN SMALL LETTER A + 0x62: [694,11,556,20,522], // LATIN SMALL LETTER B + 0x63: [448,11,444,34,415], // LATIN SMALL LETTER C + 0x64: [694,11,556,34,535], // LATIN SMALL LETTER D + 0x65: [448,11,444,28,415], // LATIN SMALL LETTER E + 0x66: [705,0,306,26,372], // LATIN SMALL LETTER F + 0x67: [453,206,500,29,485], // LATIN SMALL LETTER G + 0x68: [694,0,556,25,542], // LATIN SMALL LETTER H + 0x69: [669,0,278,26,255], // LATIN SMALL LETTER I + 0x6A: [669,205,306,-55,218], // LATIN SMALL LETTER J + 0x6B: [694,0,528,20,511], // LATIN SMALL LETTER K + 0x6C: [694,0,278,26,263], // LATIN SMALL LETTER L + 0x6D: [442,0,833,25,819], // LATIN SMALL LETTER M + 0x6E: [442,0,556,25,542], // LATIN SMALL LETTER N + 0x6F: [448,10,500,28,471], // LATIN SMALL LETTER O + 0x70: [442,194,556,20,522], // LATIN SMALL LETTER P + 0x71: [442,194,528,33,535], // LATIN SMALL LETTER Q + 0x72: [442,0,392,20,364], // LATIN SMALL LETTER R + 0x73: [448,11,394,33,359], // LATIN SMALL LETTER S + 0x74: [615,10,389,18,333], // LATIN SMALL LETTER T + 0x75: [442,11,556,25,542], // LATIN SMALL LETTER U + 0x76: [431,11,528,19,508], // LATIN SMALL LETTER V + 0x77: [431,11,722,18,703], // LATIN SMALL LETTER W + 0x78: [431,0,528,11,516], // LATIN SMALL LETTER X + 0x79: [431,204,528,19,508], // LATIN SMALL LETTER Y + 0x7A: [431,0,444,28,401], // LATIN SMALL LETTER Z + 0x7B: [750,250,500,65,434], // LEFT CURLY BRACKET + 0x7C: [750,249,278,119,159], // VERTICAL LINE + 0x7D: [750,250,500,65,434], // RIGHT CURLY BRACKET + 0x7E: [318,-215,500,83,416], // TILDE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xA8: [669,-554,500,95,404], // DIAERESIS + 0xAC: [356,-89,667,56,611], // NOT SIGN + 0xAF: [590,-544,500,69,430], // MACRON + 0xB0: [715,-542,500,147,352], // DEGREE SIGN + 0xB1: [666,0,778,56,722], // PLUS-MINUS SIGN + 0xB4: [699,-505,500,203,393], // ACUTE ACCENT + 0xD7: [491,-9,778,147,630], // MULTIPLICATION SIGN + 0xF7: [537,36,778,56,721], // DIVISION SIGN + 0x131: [442,0,278,26,255], // LATIN SMALL LETTER DOTLESS I + 0x237: [442,205,306,-55,218], // LATIN SMALL LETTER DOTLESS J + 0x2C6: [694,-531,500,112,387], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [644,-513,500,114,385], // CARON + 0x2C9: [590,-544,500,69,430], // MODIFIER LETTER MACRON + 0x2CA: [699,-505,500,203,393], // MODIFIER LETTER ACUTE ACCENT + 0x2CB: [699,-505,500,106,295], // MODIFIER LETTER GRAVE ACCENT + 0x2D8: [694,-515,500,92,407], // BREVE + 0x2D9: [669,-549,500,190,309], // DOT ABOVE + 0x2DC: [668,-565,500,83,416], // SMALL TILDE + 0x393: [680,0,625,25,582], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,833,46,786], // GREEK CAPITAL LETTER DELTA + 0x398: [705,22,778,56,722], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,694,32,661], // GREEK CAPITAL LETTER LAMDA + 0x39E: [677,0,667,42,624], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,750,25,724], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,722,55,666], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,778,55,722], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,722,56,665], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,778,55,722], // GREEK CAPITAL LETTER PSI + 0x3A9: [704,0,722,44,677], // GREEK CAPITAL LETTER OMEGA + 0x2002: [0,0,500,0,0], // ?? + 0x2003: [0,0,999,0,0], // ?? + 0x2004: [0,0,333,0,0], // ?? + 0x2005: [0,0,250,0,0], // ?? + 0x2006: [0,0,167,0,0], // ?? + 0x2009: [0,0,167,0,0], // ?? + 0x200A: [0,0,83,0,0], // ?? + 0x2013: [285,-248,500,0,499], // EN DASH + 0x2014: [285,-248,1000,0,999], // EM DASH + 0x2018: [694,-379,278,64,198], // LEFT SINGLE QUOTATION MARK + 0x2019: [694,-379,278,78,212], // RIGHT SINGLE QUOTATION MARK + 0x201C: [694,-379,500,128,466], // LEFT DOUBLE QUOTATION MARK + 0x201D: [694,-379,500,34,372], // RIGHT DOUBLE QUOTATION MARK + 0x2020: [705,216,444,55,389], // DAGGER + 0x2021: [705,205,444,55,389], // DOUBLE DAGGER + 0x2026: [120,0,1172,78,1093], // HORIZONTAL ELLIPSIS + 0x2032: [560,-43,275,30,262], // PRIME + 0x20D7: [714,-516,0,-471,-29], // COMBINING RIGHT ARROW ABOVE + 0x210F: [695,13,540,42,562], // stix-/hbar - Planck's over 2pi + 0x2111: [705,10,722,55,693], // BLACK-LETTER CAPITAL I + 0x2113: [705,20,417,6,397], // SCRIPT SMALL L + 0x2118: [453,216,636,67,625], // SCRIPT CAPITAL P + 0x211C: [716,22,722,40,715], // BLACK-LETTER CAPITAL R + 0x2135: [694,0,611,55,555], // ALEF SYMBOL + 0x2190: [511,11,1000,55,944], // LEFTWARDS ARROW + 0x2191: [694,193,500,17,483], // UPWARDS ARROW + 0x2192: [511,11,1000,56,944], // RIGHTWARDS ARROW + 0x2193: [694,194,500,17,483], // DOWNWARDS ARROW + 0x2194: [511,11,1000,55,944], // LEFT RIGHT ARROW + 0x2195: [772,272,500,17,483], // UP DOWN ARROW + 0x2196: [720,195,1000,29,944], // NORTH WEST ARROW + 0x2197: [720,195,1000,55,970], // NORTH EAST ARROW + 0x2198: [695,220,1000,55,970], // SOUTH EAST ARROW + 0x2199: [695,220,1000,29,944], // SOUTH WEST ARROW + 0x21A6: [511,11,1000,55,944], // RIGHTWARDS ARROW FROM BAR + 0x21A9: [511,11,1126,55,1070], // LEFTWARDS ARROW WITH HOOK + 0x21AA: [511,11,1126,55,1070], // RIGHTWARDS ARROW WITH HOOK + 0x21BC: [511,-230,1000,55,944], // LEFTWARDS HARPOON WITH BARB UPWARDS + 0x21BD: [270,11,1000,55,944], // LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x21C0: [511,-230,1000,56,944], // RIGHTWARDS HARPOON WITH BARB UPWARDS + 0x21C1: [270,11,1000,56,944], // RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x21CC: [671,11,1000,55,944], // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21D0: [525,24,1000,56,944], // LEFTWARDS DOUBLE ARROW + 0x21D1: [694,194,611,31,579], // UPWARDS DOUBLE ARROW + 0x21D2: [525,24,1000,56,944], // RIGHTWARDS DOUBLE ARROW + 0x21D3: [694,194,611,31,579], // DOWNWARDS DOUBLE ARROW + 0x21D4: [526,25,1000,34,966], // LEFT RIGHT DOUBLE ARROW + 0x21D5: [772,272,611,31,579], // UP DOWN DOUBLE ARROW + 0x2200: [694,22,556,0,556], // FOR ALL + 0x2202: [715,22,531,42,566], // PARTIAL DIFFERENTIAL + 0x2203: [694,0,556,56,500], // THERE EXISTS + 0x2205: [772,78,500,39,460], // EMPTY SET + 0x2207: [683,33,833,46,786], // NABLA + 0x2208: [540,40,667,84,583], // ELEMENT OF + 0x2209: [716,215,667,84,583], // stix-negated (vert) set membership, variant + 0x220B: [540,40,667,83,582], // CONTAINS AS MEMBER + 0x2212: [270,-230,778,84,694], // MINUS SIGN + 0x2213: [500,166,778,56,722], // MINUS-OR-PLUS SIGN + 0x2215: [750,250,500,56,445], // DIVISION SLASH + 0x2216: [750,250,500,56,444], // SET MINUS + 0x2217: [465,-35,500,64,435], // ASTERISK OPERATOR + 0x2218: [444,-55,500,55,444], // RING OPERATOR + 0x2219: [444,-55,500,55,444], // BULLET OPERATOR + 0x221A: [800,200,833,72,853], // SQUARE ROOT + 0x221D: [442,11,778,56,722], // PROPORTIONAL TO + 0x221E: [442,11,1000,55,944], // INFINITY + 0x2220: [694,0,722,55,666], // ANGLE + 0x2223: [750,249,278,119,159], // DIVIDES + 0x2225: [750,250,500,132,367], // PARALLEL TO + 0x2227: [598,22,667,55,611], // LOGICAL AND + 0x2228: [598,22,667,55,611], // LOGICAL OR + 0x2229: [598,22,667,55,611], // stix-intersection, serifs + 0x222A: [598,22,667,55,611], // stix-union, serifs + 0x222B: [716,216,417,55,472], // INTEGRAL + 0x223C: [367,-133,778,55,722], // TILDE OPERATOR + 0x2240: [583,83,278,55,222], // WREATH PRODUCT + 0x2243: [464,-36,778,55,722], // ASYMPTOTICALLY EQUAL TO + 0x2245: [589,-22,1000,55,722], // APPROXIMATELY EQUAL TO + 0x2248: [483,-55,778,55,722], // ALMOST EQUAL TO + 0x224D: [484,-16,778,55,722], // EQUIVALENT TO + 0x2250: [670,-133,778,56,722], // APPROACHES THE LIMIT + 0x2260: [716,215,778,56,722], // stix-not (vert) equals + 0x2261: [464,-36,778,56,722], // IDENTICAL TO + 0x2264: [636,138,778,83,694], // LESS-THAN OR EQUAL TO + 0x2265: [636,138,778,83,694], // GREATER-THAN OR EQUAL TO + 0x226A: [568,67,1000,56,944], // MUCH LESS-THAN + 0x226B: [567,67,1000,55,944], // MUCH GREATER-THAN + 0x227A: [539,41,778,84,694], // PRECEDES + 0x227B: [539,41,778,83,694], // SUCCEEDS + 0x2282: [540,40,778,84,694], // SUBSET OF + 0x2283: [540,40,778,83,693], // SUPERSET OF + 0x2286: [636,138,778,84,694], // SUBSET OF OR EQUAL TO + 0x2287: [636,138,778,83,693], // SUPERSET OF OR EQUAL TO + 0x228E: [598,22,667,55,611], // MULTISET UNION + 0x2291: [636,138,778,84,714], // SQUARE IMAGE OF OR EQUAL TO + 0x2292: [636,138,778,64,694], // SQUARE ORIGINAL OF OR EQUAL TO + 0x2293: [598,0,667,61,605], // stix-square intersection, serifs + 0x2294: [598,0,667,61,605], // stix-square union, serifs + 0x2295: [583,83,778,56,722], // stix-circled plus (with rim) + 0x2296: [583,83,778,56,722], // CIRCLED MINUS + 0x2297: [583,83,778,56,722], // stix-circled times (with rim) + 0x2298: [583,83,778,56,722], // CIRCLED DIVISION SLASH + 0x2299: [583,83,778,56,722], // CIRCLED DOT OPERATOR + 0x22A2: [694,0,611,55,555], // RIGHT TACK + 0x22A3: [694,0,611,55,555], // LEFT TACK + 0x22A4: [668,0,778,55,723], // DOWN TACK + 0x22A5: [668,0,778,55,723], // UP TACK + 0x22A8: [750,249,867,119,811], // TRUE + 0x22C4: [488,-12,500,12,488], // DIAMOND OPERATOR + 0x22C5: [310,-190,278,78,199], // DOT OPERATOR + 0x22C6: [486,-16,500,3,497], // STAR OPERATOR + 0x22C8: [505,5,900,26,873], // BOWTIE + 0x22EE: [900,30,278,78,199], // VERTICAL ELLIPSIS + 0x22EF: [310,-190,1172,78,1093], // MIDLINE HORIZONTAL ELLIPSIS + 0x22F1: [820,-100,1282,133,1148], // DOWN RIGHT DIAGONAL ELLIPSIS + 0x2308: [750,250,444,174,422], // LEFT CEILING + 0x2309: [750,250,444,21,269], // RIGHT CEILING + 0x230A: [750,250,444,174,422], // LEFT FLOOR + 0x230B: [750,250,444,21,269], // RIGHT FLOOR + 0x2322: [388,-122,1000,55,944], // stix-small down curve + 0x2323: [378,-134,1000,55,944], // stix-small up curve + 0x23B0: [744,244,412,55,357], // UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION + 0x23B1: [744,244,412,56,357], // UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION + 0x27E8: [750,250,389,110,333], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [750,250,389,55,278], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27EE: [744,244,412,173,357], // MATHEMATICAL LEFT FLATTENED PARENTHESIS + 0x27EF: [744,244,412,56,240], // MATHEMATICAL RIGHT FLATTENED PARENTHESIS + 0x27F5: [511,11,1609,55,1525], // LONG LEFTWARDS ARROW + 0x27F6: [511,11,1638,84,1553], // LONG RIGHTWARDS ARROW + 0x27F7: [511,11,1859,55,1803], // LONG LEFT RIGHT ARROW + 0x27F8: [525,24,1609,56,1553], // LONG LEFTWARDS DOUBLE ARROW + 0x27F9: [525,24,1638,56,1582], // LONG RIGHTWARDS DOUBLE ARROW + 0x27FA: [525,24,1858,56,1802], // LONG LEFT RIGHT DOUBLE ARROW + 0x27FC: [511,11,1638,55,1553], // LONG RIGHTWARDS ARROW FROM BAR + 0x2A3F: [683,0,750,28,721], // AMALGAMATION OR COPRODUCT + 0x2AAF: [636,138,778,84,694], // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN + 0x2AB0: [636,138,778,83,694] // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Main"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Main/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js new file mode 100644 index 0000000..eb99b25 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js @@ -0,0 +1,34 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], + { + 0x2660: [727,130,778,55,723], // BLACK SPADE SUIT + 0x2661: [716,33,778,55,723], // WHITE HEART SUIT + 0x2662: [727,162,778,55,723], // WHITE DIAMOND SUIT + 0x2663: [726,130,778,28,750], // BLACK CLUB SUIT + 0x266D: [750,22,389,55,332], // MUSIC FLAT SIGN + 0x266E: [734,223,389,65,324], // MUSIC NATURAL SIGN + 0x266F: [723,223,389,55,333] // MUSIC SHARP SIGN + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/MiscSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js new file mode 100644 index 0000000..76bfd51 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], + { + 0x2DA: [715,-542,500,147,352] // RING ABOVE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js new file mode 100644 index 0000000..6ef3627 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js @@ -0,0 +1,206 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Math-bold-italic'] = { + directory: 'Math/BoldItalic', + family: 'MathJax_Math', + weight: 'bold', + style: 'italic', + testString: "MathJax Math \u03A5", + skew: { + 0x41: 0.16, + 0x42: 0.0958, + 0x43: 0.0958, + 0x44: 0.0639, + 0x45: 0.0958, + 0x46: 0.0958, + 0x47: 0.0958, + 0x48: 0.0639, + 0x49: 0.128, + 0x4A: 0.192, + 0x4B: 0.0639, + 0x4C: 0.0319, + 0x4D: 0.0958, + 0x4E: 0.0958, + 0x4F: 0.0958, + 0x50: 0.0958, + 0x51: 0.0958, + 0x52: 0.0958, + 0x53: 0.0958, + 0x54: 0.0958, + 0x55: 0.0319, + 0x58: 0.0958, + 0x5A: 0.0958, + 0x63: 0.0639, + 0x64: 0.192, + 0x65: 0.0639, + 0x66: 0.192, + 0x67: 0.0319, + 0x68: -0.0319, + 0x6C: 0.0958, + 0x6F: 0.0639, + 0x70: 0.0958, + 0x71: 0.0958, + 0x72: 0.0639, + 0x73: 0.0639, + 0x74: 0.0958, + 0x75: 0.0319, + 0x76: 0.0319, + 0x77: 0.0958, + 0x78: 0.0319, + 0x79: 0.0639, + 0x7A: 0.0639, + 0x393: 0.0958, + 0x394: 0.192, + 0x398: 0.0958, + 0x39B: 0.192, + 0x39E: 0.0958, + 0x3A0: 0.0639, + 0x3A3: 0.0958, + 0x3A5: 0.0639, + 0x3A6: 0.0958, + 0x3A8: 0.0639, + 0x3A9: 0.0958, + 0x3B1: 0.0319, + 0x3B2: 0.0958, + 0x3B4: 0.0639, + 0x3B5: 0.0958, + 0x3B6: 0.0958, + 0x3B7: 0.0639, + 0x3B8: 0.0958, + 0x3B9: 0.0639, + 0x3BC: 0.0319, + 0x3BD: 0.0319, + 0x3BE: 0.128, + 0x3BF: 0.0639, + 0x3C1: 0.0958, + 0x3C2: 0.0958, + 0x3C4: 0.0319, + 0x3C5: 0.0319, + 0x3C6: 0.0958, + 0x3C7: 0.0639, + 0x3C8: 0.128, + 0x3D1: 0.0958, + 0x3D5: 0.0958, + 0x3F1: 0.0958, + 0x3F5: 0.0639 + }, + 0x20: [0,0,250,0,0], // SPACE + 0x2F: [711,210,894,160,733], // SOLIDUS + 0x41: [711,0,869,45,839], // LATIN CAPITAL LETTER A + 0x42: [686,0,866,43,853], // LATIN CAPITAL LETTER B + 0x43: [703,17,817,55,855], // LATIN CAPITAL LETTER C + 0x44: [686,0,938,43,914], // LATIN CAPITAL LETTER D + 0x45: [680,0,810,43,825], // LATIN CAPITAL LETTER E + 0x46: [680,0,689,43,809], // LATIN CAPITAL LETTER F + 0x47: [703,16,887,56,854], // LATIN CAPITAL LETTER G + 0x48: [686,0,982,43,1027], // LATIN CAPITAL LETTER H + 0x49: [686,0,511,30,573], // LATIN CAPITAL LETTER I + 0x4A: [686,17,631,42,694], // LATIN CAPITAL LETTER J + 0x4B: [686,0,971,43,1003], // LATIN CAPITAL LETTER K + 0x4C: [686,0,756,43,711], // LATIN CAPITAL LETTER L + 0x4D: [686,0,1142,43,1219], // LATIN CAPITAL LETTER M + 0x4E: [686,0,950,43,1027], // LATIN CAPITAL LETTER N + 0x4F: [703,17,837,53,815], // LATIN CAPITAL LETTER O + 0x50: [686,0,723,43,847], // LATIN CAPITAL LETTER P + 0x51: [703,194,869,53,815], // LATIN CAPITAL LETTER Q + 0x52: [686,17,872,43,881], // LATIN CAPITAL LETTER R + 0x53: [703,17,693,63,714], // LATIN CAPITAL LETTER S + 0x54: [675,0,637,22,772], // LATIN CAPITAL LETTER T + 0x55: [686,16,800,63,877], // LATIN CAPITAL LETTER U + 0x56: [686,16,678,62,886], // LATIN CAPITAL LETTER V + 0x57: [686,17,1093,61,1207], // LATIN CAPITAL LETTER W + 0x58: [686,0,947,38,953], // LATIN CAPITAL LETTER X + 0x59: [686,0,675,40,876], // LATIN CAPITAL LETTER Y + 0x5A: [686,0,773,68,805], // LATIN CAPITAL LETTER Z + 0x61: [452,8,633,38,607], // LATIN SMALL LETTER A + 0x62: [694,8,521,45,513], // LATIN SMALL LETTER B + 0x63: [451,8,513,40,509], // LATIN SMALL LETTER C + 0x64: [694,8,610,38,612], // LATIN SMALL LETTER D + 0x65: [452,8,554,42,509], // LATIN SMALL LETTER E + 0x66: [701,201,568,64,624], // LATIN SMALL LETTER F + 0x67: [452,202,545,0,540], // LATIN SMALL LETTER G + 0x68: [694,8,668,45,642], // LATIN SMALL LETTER H + 0x69: [694,8,405,24,367], // LATIN SMALL LETTER I + 0x6A: [694,202,471,-12,456], // LATIN SMALL LETTER J + 0x6B: [694,8,604,45,578], // LATIN SMALL LETTER K + 0x6C: [694,8,348,27,296], // LATIN SMALL LETTER L + 0x6D: [452,8,1032,24,1006], // LATIN SMALL LETTER M + 0x6E: [452,8,713,24,687], // LATIN SMALL LETTER N + 0x6F: [452,8,585,39,576], // LATIN SMALL LETTER O + 0x70: [452,194,601,-23,593], // LATIN SMALL LETTER P + 0x71: [452,194,542,38,550], // LATIN SMALL LETTER Q + 0x72: [452,8,529,24,500], // LATIN SMALL LETTER R + 0x73: [451,8,531,57,476], // LATIN SMALL LETTER S + 0x74: [643,7,415,21,387], // LATIN SMALL LETTER T + 0x75: [452,8,681,24,655], // LATIN SMALL LETTER U + 0x76: [453,8,567,24,540], // LATIN SMALL LETTER V + 0x77: [453,8,831,24,796], // LATIN SMALL LETTER W + 0x78: [452,8,659,43,599], // LATIN SMALL LETTER X + 0x79: [452,202,590,24,587], // LATIN SMALL LETTER Y + 0x7A: [452,8,555,34,539], // LATIN SMALL LETTER Z + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,0,657,43,777], // GREEK CAPITAL LETTER GAMMA + 0x394: [711,0,958,59,904], // GREEK CAPITAL LETTER DELTA + 0x398: [702,17,867,54,844], // GREEK CAPITAL LETTER THETA + 0x39B: [711,0,806,44,776], // GREEK CAPITAL LETTER LAMDA + 0x39E: [675,0,841,62,867], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,982,43,1026], // GREEK CAPITAL LETTER PI + 0x3A3: [686,0,885,69,902], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [703,0,671,32,802], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [686,0,767,29,737], // GREEK CAPITAL LETTER PHI + 0x3A8: [686,0,714,22,790], // GREEK CAPITAL LETTER PSI + 0x3A9: [703,0,879,93,886], // GREEK CAPITAL LETTER OMEGA + 0x3B1: [452,8,761,39,712], // GREEK SMALL LETTER ALPHA + 0x3B2: [701,194,660,28,637], // GREEK SMALL LETTER BETA + 0x3B3: [451,211,590,5,617], // GREEK SMALL LETTER GAMMA + 0x3B4: [725,8,522,39,513], // GREEK SMALL LETTER DELTA + 0x3B5: [461,17,529,36,481], // GREEK SMALL LETTER EPSILON + 0x3B6: [711,202,508,48,521], // GREEK SMALL LETTER ZETA + 0x3B7: [452,211,600,24,600], // GREEK SMALL LETTER ETA + 0x3B8: [702,8,562,40,554], // GREEK SMALL LETTER THETA + 0x3B9: [452,8,412,38,386], // GREEK SMALL LETTER IOTA + 0x3BA: [452,8,668,45,642], // GREEK SMALL LETTER KAPPA + 0x3BB: [694,13,671,40,652], // GREEK SMALL LETTER LAMDA + 0x3BC: [452,211,708,33,682], // GREEK SMALL LETTER MU + 0x3BD: [452,2,577,38,608], // GREEK SMALL LETTER NU + 0x3BE: [711,201,508,23,490], // GREEK SMALL LETTER XI + 0x3BF: [452,8,585,39,576], // GREEK SMALL LETTER OMICRON + 0x3C0: [444,8,682,23,674], // GREEK SMALL LETTER PI + 0x3C1: [451,211,612,34,603], // GREEK SMALL LETTER RHO + 0x3C2: [451,105,424,33,457], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [444,8,686,35,677], // GREEK SMALL LETTER SIGMA + 0x3C4: [444,13,521,23,610], // GREEK SMALL LETTER TAU + 0x3C5: [453,8,631,24,604], // GREEK SMALL LETTER UPSILON + 0x3C6: [452,216,747,53,703], // GREEK SMALL LETTER PHI + 0x3C7: [452,201,718,32,685], // GREEK SMALL LETTER CHI + 0x3C8: [694,202,758,24,732], // GREEK SMALL LETTER PSI + 0x3C9: [453,8,718,24,691], // GREEK SMALL LETTER OMEGA + 0x3D1: [701,8,692,24,656], // GREEK THETA SYMBOL + 0x3D5: [694,202,712,51,693], // GREEK PHI SYMBOL + 0x3D6: [444,8,975,23,961], // GREEK PI SYMBOL + 0x3F1: [451,194,612,75,603], // GREEK RHO SYMBOL + 0x3F5: [444,7,483,44,450] // GREEK LUNATE EPSILON SYMBOL +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Math-bold-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Math/BoldItalic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js new file mode 100644 index 0000000..fa76954 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js @@ -0,0 +1,205 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Math-italic'] = { + directory: 'Math/Italic', + family: 'MathJax_Math', + style: 'italic', + testString: "MathJax Math \u03A5", + skew: { + 0x41: 0.139, + 0x42: 0.0833, + 0x43: 0.0833, + 0x44: 0.0556, + 0x45: 0.0833, + 0x46: 0.0833, + 0x47: 0.0833, + 0x48: 0.0556, + 0x49: 0.111, + 0x4A: 0.167, + 0x4B: 0.0556, + 0x4C: 0.0278, + 0x4D: 0.0833, + 0x4E: 0.0833, + 0x4F: 0.0833, + 0x50: 0.0833, + 0x51: 0.0833, + 0x52: 0.0833, + 0x53: 0.0833, + 0x54: 0.0833, + 0x55: 0.0278, + 0x58: 0.0833, + 0x5A: 0.0833, + 0x63: 0.0556, + 0x64: 0.167, + 0x65: 0.0556, + 0x66: 0.167, + 0x67: 0.0278, + 0x68: -0.0278, + 0x6C: 0.0833, + 0x6F: 0.0556, + 0x70: 0.0833, + 0x71: 0.0833, + 0x72: 0.0556, + 0x73: 0.0556, + 0x74: 0.0833, + 0x75: 0.0278, + 0x76: 0.0278, + 0x77: 0.0833, + 0x78: 0.0278, + 0x79: 0.0556, + 0x7A: 0.0556, + 0x393: 0.0833, + 0x394: 0.167, + 0x398: 0.0833, + 0x39B: 0.167, + 0x39E: 0.0833, + 0x3A0: 0.0556, + 0x3A3: 0.0833, + 0x3A5: 0.0556, + 0x3A6: 0.0833, + 0x3A8: 0.0556, + 0x3A9: 0.0833, + 0x3B1: 0.0278, + 0x3B2: 0.0833, + 0x3B4: 0.0556, + 0x3B5: 0.0833, + 0x3B6: 0.0833, + 0x3B7: 0.0556, + 0x3B8: 0.0833, + 0x3B9: 0.0556, + 0x3BC: 0.0278, + 0x3BD: 0.0278, + 0x3BE: 0.111, + 0x3BF: 0.0556, + 0x3C1: 0.0833, + 0x3C2: 0.0833, + 0x3C4: 0.0278, + 0x3C5: 0.0278, + 0x3C6: 0.0833, + 0x3C7: 0.0556, + 0x3C8: 0.111, + 0x3D1: 0.0833, + 0x3D5: 0.0833, + 0x3F1: 0.0833, + 0x3F5: 0.0556 + }, + 0x20: [0,0,250,0,0], // SPACE + 0x2F: [716,215,778,139,638], // SOLIDUS + 0x41: [716,0,750,35,726], // LATIN CAPITAL LETTER A + 0x42: [683,0,759,35,756], // LATIN CAPITAL LETTER B + 0x43: [705,22,715,50,760], // LATIN CAPITAL LETTER C + 0x44: [683,0,828,33,803], // LATIN CAPITAL LETTER D + 0x45: [680,0,738,31,764], // LATIN CAPITAL LETTER E + 0x46: [680,0,643,31,749], // LATIN CAPITAL LETTER F + 0x47: [705,22,786,50,760], // LATIN CAPITAL LETTER G + 0x48: [683,0,831,31,888], // LATIN CAPITAL LETTER H + 0x49: [683,0,440,26,504], // LATIN CAPITAL LETTER I + 0x4A: [683,22,555,57,633], // LATIN CAPITAL LETTER J + 0x4B: [683,0,849,31,889], // LATIN CAPITAL LETTER K + 0x4C: [683,0,681,32,647], // LATIN CAPITAL LETTER L + 0x4D: [683,0,970,35,1051], // LATIN CAPITAL LETTER M + 0x4E: [683,0,803,31,888], // LATIN CAPITAL LETTER N + 0x4F: [704,22,763,50,740], // LATIN CAPITAL LETTER O + 0x50: [683,0,642,33,751], // LATIN CAPITAL LETTER P + 0x51: [704,194,791,50,740], // LATIN CAPITAL LETTER Q + 0x52: [683,21,759,33,755], // LATIN CAPITAL LETTER R + 0x53: [705,22,613,52,645], // LATIN CAPITAL LETTER S + 0x54: [677,0,584,21,704], // LATIN CAPITAL LETTER T + 0x55: [683,22,683,60,767], // LATIN CAPITAL LETTER U + 0x56: [683,22,583,52,769], // LATIN CAPITAL LETTER V + 0x57: [683,22,944,51,1048], // LATIN CAPITAL LETTER W + 0x58: [683,0,828,26,852], // LATIN CAPITAL LETTER X + 0x59: [683,-1,581,30,763], // LATIN CAPITAL LETTER Y + 0x5A: [683,0,683,58,723], // LATIN CAPITAL LETTER Z + 0x61: [441,10,529,33,506], // LATIN SMALL LETTER A + 0x62: [694,11,429,40,422], // LATIN SMALL LETTER B + 0x63: [442,11,433,34,429], // LATIN SMALL LETTER C + 0x64: [694,10,520,33,523], // LATIN SMALL LETTER D + 0x65: [442,11,466,39,429], // LATIN SMALL LETTER E + 0x66: [705,205,490,55,550], // LATIN SMALL LETTER F + 0x67: [442,205,477,10,480], // LATIN SMALL LETTER G + 0x68: [694,11,576,48,555], // LATIN SMALL LETTER H + 0x69: [661,11,345,21,302], // LATIN SMALL LETTER I + 0x6A: [661,204,412,-12,403], // LATIN SMALL LETTER J + 0x6B: [694,11,521,48,503], // LATIN SMALL LETTER K + 0x6C: [694,11,298,38,266], // LATIN SMALL LETTER L + 0x6D: [442,11,878,21,857], // LATIN SMALL LETTER M + 0x6E: [442,11,600,21,580], // LATIN SMALL LETTER N + 0x6F: [441,11,485,34,476], // LATIN SMALL LETTER O + 0x70: [442,194,503,-39,497], // LATIN SMALL LETTER P + 0x71: [442,194,446,33,460], // LATIN SMALL LETTER Q + 0x72: [442,11,451,21,430], // LATIN SMALL LETTER R + 0x73: [442,10,469,53,419], // LATIN SMALL LETTER S + 0x74: [626,11,361,19,330], // LATIN SMALL LETTER T + 0x75: [442,11,572,21,551], // LATIN SMALL LETTER U + 0x76: [443,11,485,21,467], // LATIN SMALL LETTER V + 0x77: [443,11,716,21,690], // LATIN SMALL LETTER W + 0x78: [442,11,572,35,522], // LATIN SMALL LETTER X + 0x79: [442,205,490,21,496], // LATIN SMALL LETTER Y + 0x7A: [442,11,465,35,468], // LATIN SMALL LETTER Z + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,-1,615,31,721], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,833,48,788], // GREEK CAPITAL LETTER DELTA + 0x398: [704,22,763,50,740], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,694,35,670], // GREEK CAPITAL LETTER LAMDA + 0x39E: [677,0,742,53,777], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,831,31,887], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,780,58,806], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,583,28,700], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,667,24,642], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,612,21,692], // GREEK CAPITAL LETTER PSI + 0x3A9: [704,0,772,80,786], // GREEK CAPITAL LETTER OMEGA + 0x3B1: [442,11,640,34,603], // GREEK SMALL LETTER ALPHA + 0x3B2: [705,194,566,23,573], // GREEK SMALL LETTER BETA + 0x3B3: [441,216,518,11,543], // GREEK SMALL LETTER GAMMA + 0x3B4: [717,10,444,36,451], // GREEK SMALL LETTER DELTA + 0x3B5: [452,22,466,27,428], // GREEK SMALL LETTER EPSILON + 0x3B6: [704,204,438,44,471], // GREEK SMALL LETTER ZETA + 0x3B7: [442,216,497,21,503], // GREEK SMALL LETTER ETA + 0x3B8: [705,10,469,35,462], // GREEK SMALL LETTER THETA + 0x3B9: [442,10,354,48,332], // GREEK SMALL LETTER IOTA + 0x3BA: [442,11,576,49,554], // GREEK SMALL LETTER KAPPA + 0x3BB: [694,12,583,47,556], // GREEK SMALL LETTER LAMDA + 0x3BC: [442,216,603,23,580], // GREEK SMALL LETTER MU + 0x3BD: [442,2,494,45,530], // GREEK SMALL LETTER NU + 0x3BE: [704,205,438,21,443], // GREEK SMALL LETTER XI + 0x3BF: [441,11,485,34,476], // GREEK SMALL LETTER OMICRON + 0x3C0: [431,11,570,19,573], // GREEK SMALL LETTER PI + 0x3C1: [442,216,517,23,510], // GREEK SMALL LETTER RHO + 0x3C2: [442,107,363,31,405], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [431,11,571,31,572], // GREEK SMALL LETTER SIGMA + 0x3C4: [431,13,437,18,517], // GREEK SMALL LETTER TAU + 0x3C5: [443,10,540,21,523], // GREEK SMALL LETTER UPSILON + 0x3C6: [442,218,654,50,618], // GREEK SMALL LETTER PHI + 0x3C7: [442,204,626,25,600], // GREEK SMALL LETTER CHI + 0x3C8: [694,205,651,21,634], // GREEK SMALL LETTER PSI + 0x3C9: [443,11,622,15,604], // GREEK SMALL LETTER OMEGA + 0x3D1: [705,11,591,21,563], // GREEK THETA SYMBOL + 0x3D5: [694,205,596,43,579], // GREEK PHI SYMBOL + 0x3D6: [431,10,828,19,823], // GREEK PI SYMBOL + 0x3F1: [442,194,517,67,510], // GREEK RHO SYMBOL + 0x3F5: [431,11,406,40,382] // GREEK LUNATE EPSILON SYMBOL +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Math-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Math/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js new file mode 100644 index 0000000..29e0504 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js @@ -0,0 +1,115 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-bold'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x21: [694,0,367,110,256], // EXCLAMATION MARK + 0x22: [694,-442,558,37,420], // QUOTATION MARK + 0x23: [694,193,917,61,855], // NUMBER SIGN + 0x24: [750,56,550,49,488], // DOLLAR SIGN + 0x25: [750,56,1029,61,966], // PERCENT SIGN + 0x26: [716,22,831,47,769], // AMPERSAND + 0x27: [694,-442,306,80,226], // APOSTROPHE + 0x28: [750,249,428,79,366], // LEFT PARENTHESIS + 0x29: [750,250,428,61,348], // RIGHT PARENTHESIS + 0x2A: [750,-293,550,67,482], // ASTERISK + 0x2B: [617,116,856,61,794], // PLUS SIGN + 0x2C: [146,106,306,80,226], // COMMA + 0x2D: [273,-186,367,12,305], // HYPHEN-MINUS + 0x2E: [146,0,306,80,226], // FULL STOP + 0x2F: [750,249,550,61,488], // SOLIDUS + 0x30: [715,22,550,43,506], // DIGIT ZERO + 0x31: [716,-1,550,76,473], // DIGIT ONE + 0x32: [716,0,550,46,495], // DIGIT TWO + 0x33: [716,22,550,46,503], // DIGIT THREE + 0x34: [694,0,550,31,518], // DIGIT FOUR + 0x35: [694,22,550,37,494], // DIGIT FIVE + 0x36: [716,22,550,46,503], // DIGIT SIX + 0x37: [695,11,550,46,503], // DIGIT SEVEN + 0x38: [715,22,550,46,503], // DIGIT EIGHT + 0x39: [716,22,550,46,503], // DIGIT NINE + 0x3A: [458,0,306,80,226], // COLON + 0x3B: [458,106,306,80,226], // SEMICOLON + 0x3D: [407,-94,856,61,794], // EQUALS SIGN + 0x3F: [705,0,519,61,457], // QUESTION MARK + 0x40: [704,11,733,61,671], // COMMERCIAL AT + 0x41: [694,0,733,42,690], // LATIN CAPITAL LETTER A + 0x42: [694,-1,733,92,671], // LATIN CAPITAL LETTER B + 0x43: [704,11,703,61,647], // LATIN CAPITAL LETTER C + 0x44: [694,-1,794,92,732], // LATIN CAPITAL LETTER D + 0x45: [691,0,642,92,595], // LATIN CAPITAL LETTER E + 0x46: [691,0,611,92,564], // LATIN CAPITAL LETTER F + 0x47: [705,11,733,61,659], // LATIN CAPITAL LETTER G + 0x48: [694,0,794,92,702], // LATIN CAPITAL LETTER H + 0x49: [694,0,331,85,246], // LATIN CAPITAL LETTER I + 0x4A: [694,22,519,46,427], // LATIN CAPITAL LETTER J + 0x4B: [694,0,764,92,701], // LATIN CAPITAL LETTER K + 0x4C: [694,0,581,92,534], // LATIN CAPITAL LETTER L + 0x4D: [694,0,978,92,886], // LATIN CAPITAL LETTER M + 0x4E: [694,0,794,92,702], // LATIN CAPITAL LETTER N + 0x4F: [716,22,794,62,731], // LATIN CAPITAL LETTER O + 0x50: [694,0,703,92,641], // LATIN CAPITAL LETTER P + 0x51: [716,106,794,62,732], // LATIN CAPITAL LETTER Q + 0x52: [694,0,703,92,654], // LATIN CAPITAL LETTER R + 0x53: [716,22,611,49,549], // LATIN CAPITAL LETTER S + 0x54: [688,0,733,40,692], // LATIN CAPITAL LETTER T + 0x55: [694,22,764,92,672], // LATIN CAPITAL LETTER U + 0x56: [694,-1,733,27,705], // LATIN CAPITAL LETTER V + 0x57: [694,0,1039,24,1014], // LATIN CAPITAL LETTER W + 0x58: [694,0,733,37,694], // LATIN CAPITAL LETTER X + 0x59: [694,0,733,24,708], // LATIN CAPITAL LETTER Y + 0x5A: [694,0,672,61,616], // LATIN CAPITAL LETTER Z + 0x5B: [750,250,343,79,318], // LEFT SQUARE BRACKET + 0x5D: [750,250,343,24,263], // RIGHT SQUARE BRACKET + 0x5E: [694,-537,550,108,441], // CIRCUMFLEX ACCENT + 0x5F: [-23,110,550,0,549], // LOW LINE + 0x61: [475,11,525,31,472], // LATIN SMALL LETTER A + 0x62: [694,10,561,54,523], // LATIN SMALL LETTER B + 0x63: [475,11,489,37,457], // LATIN SMALL LETTER C + 0x64: [694,11,561,37,507], // LATIN SMALL LETTER D + 0x65: [474,10,511,30,480], // LATIN SMALL LETTER E + 0x66: [705,0,336,29,381], // LATIN SMALL LETTER F + 0x67: [469,206,550,17,534], // LATIN SMALL LETTER G + 0x68: [694,0,561,53,508], // LATIN SMALL LETTER H + 0x69: [695,0,256,46,208], // LATIN SMALL LETTER I + 0x6A: [695,205,286,-71,232], // LATIN SMALL LETTER J + 0x6B: [694,0,531,63,496], // LATIN SMALL LETTER K + 0x6C: [694,0,256,54,201], // LATIN SMALL LETTER L + 0x6D: [469,0,867,53,815], // LATIN SMALL LETTER M + 0x6E: [468,0,561,53,508], // LATIN SMALL LETTER N + 0x6F: [474,11,550,32,518], // LATIN SMALL LETTER O + 0x70: [469,194,561,54,523], // LATIN SMALL LETTER P + 0x71: [469,194,561,37,507], // LATIN SMALL LETTER Q + 0x72: [469,0,372,54,356], // LATIN SMALL LETTER R + 0x73: [474,10,422,30,396], // LATIN SMALL LETTER S + 0x74: [589,10,404,20,373], // LATIN SMALL LETTER T + 0x75: [458,11,561,52,508], // LATIN SMALL LETTER U + 0x76: [458,0,500,26,473], // LATIN SMALL LETTER V + 0x77: [458,0,744,24,719], // LATIN SMALL LETTER W + 0x78: [458,0,500,24,475], // LATIN SMALL LETTER X + 0x79: [458,205,500,29,473], // LATIN SMALL LETTER Y + 0x7A: [458,0,476,31,442], // LATIN SMALL LETTER Z + 0x7E: [344,-198,550,92,457] // TILDE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Bold/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js new file mode 100644 index 0000000..a7a6815 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-bold'], + { + 0x300: [694,-537,0,-458,-218], // COMBINING GRAVE ACCENT + 0x301: [694,-537,0,-334,-93], // COMBINING ACUTE ACCENT + 0x302: [694,-537,0,-442,-109], // COMBINING CIRCUMFLEX ACCENT + 0x303: [694,-548,0,-458,-93], // COMBINING TILDE + 0x304: [660,-560,0,-474,-77], // COMBINING MACRON + 0x306: [694,-552,0,-470,-80], // COMBINING BREVE + 0x307: [695,-596,0,-356,-194], // COMBINING DOT ABOVE + 0x308: [695,-595,0,-459,-91], // COMBINING DIAERESIS + 0x30A: [694,-538,0,-365,-119], // COMBINING RING ABOVE + 0x30B: [694,-537,0,-440,-94], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [657,-500,0,-442,-109] // COMBINING CARON + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Bold/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js new file mode 100644 index 0000000..695900c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js @@ -0,0 +1,37 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-bold'] = { + directory: 'SansSerif/Bold', + family: 'MathJax_SansSerif', + weight: 'bold', + testString: "MathJax SansSerif ^ _", + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xFFFF,"Other"], + [0x300,0x36F,"CombDiacritMarks"] + ] + +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_SansSerif-bold"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Bold/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js new file mode 100644 index 0000000..0cbef17 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-bold'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x131: [458,0,256,54,201], // LATIN SMALL LETTER DOTLESS I + 0x237: [458,205,286,-71,232], // LATIN SMALL LETTER DOTLESS J + 0x393: [691,0,581,92,534], // GREEK CAPITAL LETTER GAMMA + 0x394: [694,0,917,60,856], // GREEK CAPITAL LETTER DELTA + 0x398: [716,22,856,62,793], // GREEK CAPITAL LETTER THETA + 0x39B: [694,0,672,41,630], // GREEK CAPITAL LETTER LAMDA + 0x39E: [688,0,733,46,686], // GREEK CAPITAL LETTER XI + 0x3A0: [691,0,794,92,702], // GREEK CAPITAL LETTER PI + 0x3A3: [694,0,794,61,732], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [715,0,856,62,793], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [694,0,794,62,732], // GREEK CAPITAL LETTER PHI + 0x3A8: [694,0,856,61,794], // GREEK CAPITAL LETTER PSI + 0x3A9: [716,0,794,49,744], // GREEK CAPITAL LETTER OMEGA + 0x2013: [327,-240,550,0,549], // EN DASH + 0x2014: [327,-240,1100,0,1099], // EM DASH + 0x2018: [694,-443,306,81,226], // LEFT SINGLE QUOTATION MARK + 0x2019: [694,-442,306,80,226], // RIGHT SINGLE QUOTATION MARK + 0x201C: [694,-443,558,138,520], // LEFT DOUBLE QUOTATION MARK + 0x201D: [694,-442,558,37,420] // RIGHT DOUBLE QUOTATION MARK + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Bold/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js new file mode 100644 index 0000000..f861d0a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js @@ -0,0 +1,115 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-italic'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x21: [694,0,319,110,355], // EXCLAMATION MARK + 0x22: [694,-471,500,133,472], // QUOTATION MARK + 0x23: [694,194,833,87,851], // NUMBER SIGN + 0x24: [750,56,500,56,565], // DOLLAR SIGN + 0x25: [750,56,833,165,815], // PERCENT SIGN + 0x26: [716,22,758,71,747], // AMPERSAND + 0x27: [694,-471,278,190,335], // APOSTROPHE + 0x28: [750,250,389,104,491], // LEFT PARENTHESIS + 0x29: [750,250,389,2,390], // RIGHT PARENTHESIS + 0x2A: [750,-306,500,156,568], // ASTERISK + 0x2B: [583,83,778,108,775], // PLUS SIGN + 0x2C: [98,125,278,63,209], // COMMA + 0x2D: [259,-186,333,51,332], // HYPHEN-MINUS + 0x2E: [98,0,278,90,209], // FULL STOP + 0x2F: [750,250,500,6,600], // SOLIDUS + 0x30: [678,22,500,88,549], // DIGIT ZERO + 0x31: [678,0,500,88,451], // DIGIT ONE + 0x32: [678,0,500,50,551], // DIGIT TWO + 0x33: [678,22,500,56,544], // DIGIT THREE + 0x34: [656,0,500,62,521], // DIGIT FOUR + 0x35: [656,22,500,50,555], // DIGIT FIVE + 0x36: [678,22,500,94,548], // DIGIT SIX + 0x37: [656,11,500,143,596], // DIGIT SEVEN + 0x38: [678,22,500,77,554], // DIGIT EIGHT + 0x39: [677,22,500,77,545], // DIGIT NINE + 0x3A: [444,0,278,90,282], // COLON + 0x3B: [444,125,278,63,282], // SEMICOLON + 0x3D: [370,-130,778,88,796], // EQUALS SIGN + 0x3F: [704,0,472,173,536], // QUESTION MARK + 0x40: [705,10,667,120,707], // COMMERCIAL AT + 0x41: [694,0,667,28,638], // LATIN CAPITAL LETTER A + 0x42: [694,0,667,90,696], // LATIN CAPITAL LETTER B + 0x43: [705,10,639,124,719], // LATIN CAPITAL LETTER C + 0x44: [694,0,722,88,747], // LATIN CAPITAL LETTER D + 0x45: [691,0,597,86,688], // LATIN CAPITAL LETTER E + 0x46: [691,0,569,86,673], // LATIN CAPITAL LETTER F + 0x47: [705,11,667,125,730], // LATIN CAPITAL LETTER G + 0x48: [694,0,708,86,768], // LATIN CAPITAL LETTER H + 0x49: [694,0,278,87,338], // LATIN CAPITAL LETTER I + 0x4A: [694,22,472,46,535], // LATIN CAPITAL LETTER J + 0x4B: [694,0,694,88,785], // LATIN CAPITAL LETTER K + 0x4C: [694,0,542,87,516], // LATIN CAPITAL LETTER L + 0x4D: [694,0,875,92,929], // LATIN CAPITAL LETTER M + 0x4E: [694,0,708,88,766], // LATIN CAPITAL LETTER N + 0x4F: [716,22,736,118,763], // LATIN CAPITAL LETTER O + 0x50: [694,0,639,88,690], // LATIN CAPITAL LETTER P + 0x51: [716,125,736,118,763], // LATIN CAPITAL LETTER Q + 0x52: [694,0,646,88,698], // LATIN CAPITAL LETTER R + 0x53: [716,22,556,54,609], // LATIN CAPITAL LETTER S + 0x54: [688,0,681,165,790], // LATIN CAPITAL LETTER T + 0x55: [694,22,688,131,747], // LATIN CAPITAL LETTER U + 0x56: [694,0,667,161,799], // LATIN CAPITAL LETTER V + 0x57: [694,0,944,161,1076], // LATIN CAPITAL LETTER W + 0x58: [694,0,667,14,758], // LATIN CAPITAL LETTER X + 0x59: [694,0,667,151,810], // LATIN CAPITAL LETTER Y + 0x5A: [694,0,611,55,702], // LATIN CAPITAL LETTER Z + 0x5B: [750,250,289,41,425], // LEFT SQUARE BRACKET + 0x5D: [750,250,289,-31,353], // RIGHT SQUARE BRACKET + 0x5E: [694,-527,500,190,533], // CIRCUMFLEX ACCENT + 0x5F: [-38,114,500,50,565], // LOW LINE + 0x61: [461,10,481,61,473], // LATIN SMALL LETTER A + 0x62: [694,11,517,75,539], // LATIN SMALL LETTER B + 0x63: [460,11,444,75,499], // LATIN SMALL LETTER C + 0x64: [694,10,517,73,588], // LATIN SMALL LETTER D + 0x65: [460,11,444,71,472], // LATIN SMALL LETTER E + 0x66: [705,0,306,94,494], // LATIN SMALL LETTER F + 0x67: [455,206,500,12,568], // LATIN SMALL LETTER G + 0x68: [694,0,517,73,513], // LATIN SMALL LETTER H + 0x69: [680,0,239,74,315], // LATIN SMALL LETTER I + 0x6A: [680,204,267,-96,336], // LATIN SMALL LETTER J + 0x6B: [694,0,489,76,543], // LATIN SMALL LETTER K + 0x6C: [694,0,239,74,311], // LATIN SMALL LETTER L + 0x6D: [455,0,794,73,790], // LATIN SMALL LETTER M + 0x6E: [454,0,517,73,513], // LATIN SMALL LETTER N + 0x6F: [461,11,500,69,523], // LATIN SMALL LETTER O + 0x70: [455,194,517,34,538], // LATIN SMALL LETTER P + 0x71: [455,194,517,72,538], // LATIN SMALL LETTER Q + 0x72: [455,0,342,74,424], // LATIN SMALL LETTER R + 0x73: [461,11,383,35,436], // LATIN SMALL LETTER S + 0x74: [571,11,361,97,410], // LATIN SMALL LETTER T + 0x75: [444,10,517,90,537], // LATIN SMALL LETTER U + 0x76: [444,0,461,108,540], // LATIN SMALL LETTER V + 0x77: [444,0,683,108,762], // LATIN SMALL LETTER W + 0x78: [444,0,461,1,537], // LATIN SMALL LETTER X + 0x79: [444,205,461,1,540], // LATIN SMALL LETTER Y + 0x7A: [444,0,435,28,494], // LATIN SMALL LETTER Z + 0x7E: [327,-193,500,199,560] // TILDE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Italic/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js new file mode 100644 index 0000000..fb798fa --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-italic'], + { + 0x300: [694,-527,0,-270,-87], // COMBINING GRAVE ACCENT + 0x301: [694,-527,0,-190,63], // COMBINING ACUTE ACCENT + 0x302: [694,-527,0,-310,33], // COMBINING CIRCUMFLEX ACCENT + 0x303: [677,-543,0,-301,60], // COMBINING TILDE + 0x304: [631,-552,0,-314,64], // COMBINING MACRON + 0x306: [694,-508,0,-284,73], // COMBINING BREVE + 0x307: [680,-576,0,-180,-54], // COMBINING DOT ABOVE + 0x308: [680,-582,0,-273,40], // COMBINING DIAERESIS + 0x30A: [693,-527,0,-227,-2], // COMBINING RING ABOVE + 0x30B: [694,-527,0,-287,63], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [654,-487,0,-283,60] // COMBINING CARON + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Italic/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js new file mode 100644 index 0000000..61bb448 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js @@ -0,0 +1,37 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-italic'] = { + directory: 'SansSerif/Italic', + family: 'MathJax_SansSerif', + style: 'italic', + testString: "MathJax SansSerif ^ _", + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xFFFF,"Other"], + [0x300,0x36F,"CombDiacritMarks"] + ] + +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_SansSerif-italic"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Italic/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js new file mode 100644 index 0000000..2d4f216 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-italic'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x131: [444,0,239,74,258], // LATIN SMALL LETTER DOTLESS I + 0x237: [444,204,267,-96,286], // LATIN SMALL LETTER DOTLESS J + 0x393: [691,0,542,87,646], // GREEK CAPITAL LETTER GAMMA + 0x394: [694,0,833,42,790], // GREEK CAPITAL LETTER DELTA + 0x398: [715,22,778,119,804], // GREEK CAPITAL LETTER THETA + 0x39B: [694,0,611,28,582], // GREEK CAPITAL LETTER LAMDA + 0x39E: [688,0,667,42,765], // GREEK CAPITAL LETTER XI + 0x3A0: [691,0,708,86,768], // GREEK CAPITAL LETTER PI + 0x3A3: [694,0,722,55,813], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [716,0,778,173,843], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [694,0,722,124,743], // GREEK CAPITAL LETTER PHI + 0x3A8: [694,0,778,171,854], // GREEK CAPITAL LETTER PSI + 0x3A9: [716,0,722,44,769], // GREEK CAPITAL LETTER OMEGA + 0x2013: [312,-236,500,50,565], // EN DASH + 0x2014: [312,-236,1000,50,1065], // EM DASH + 0x2018: [694,-471,278,190,336], // LEFT SINGLE QUOTATION MARK + 0x2019: [694,-471,278,190,335], // RIGHT SINGLE QUOTATION MARK + 0x201C: [694,-471,500,274,614], // LEFT DOUBLE QUOTATION MARK + 0x201D: [694,-471,500,133,472] // RIGHT DOUBLE QUOTATION MARK + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Italic/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js new file mode 100644 index 0000000..9207c7f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js @@ -0,0 +1,115 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/BasicLatin.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x21: [694,0,319,110,208], // EXCLAMATION MARK + 0x22: [694,-471,500,32,325], // QUOTATION MARK + 0x23: [694,194,833,56,777], // NUMBER SIGN + 0x24: [750,56,500,44,444], // DOLLAR SIGN + 0x25: [750,56,833,56,776], // PERCENT SIGN + 0x26: [716,22,758,42,702], // AMPERSAND + 0x27: [694,-471,278,89,188], // APOSTROPHE + 0x28: [750,250,389,74,333], // LEFT PARENTHESIS + 0x29: [750,250,389,55,314], // RIGHT PARENTHESIS + 0x2A: [750,-306,500,63,436], // ASTERISK + 0x2B: [583,82,778,56,722], // PLUS SIGN + 0x2C: [98,125,278,89,188], // COMMA + 0x2D: [259,-186,333,11,277], // HYPHEN-MINUS + 0x2E: [98,0,278,90,188], // FULL STOP + 0x2F: [750,250,500,56,445], // SOLIDUS + 0x30: [678,22,500,39,460], // DIGIT ZERO + 0x31: [678,0,500,83,430], // DIGIT ONE + 0x32: [677,0,500,42,449], // DIGIT TWO + 0x33: [678,22,500,42,457], // DIGIT THREE + 0x34: [656,0,500,28,471], // DIGIT FOUR + 0x35: [656,21,500,33,449], // DIGIT FIVE + 0x36: [677,22,500,42,457], // DIGIT SIX + 0x37: [656,11,500,42,457], // DIGIT SEVEN + 0x38: [678,22,500,43,456], // DIGIT EIGHT + 0x39: [677,22,500,42,457], // DIGIT NINE + 0x3A: [444,0,278,90,188], // COLON + 0x3B: [444,125,278,89,188], // SEMICOLON + 0x3D: [370,-130,778,56,722], // EQUALS SIGN + 0x3F: [704,0,472,55,416], // QUESTION MARK + 0x40: [704,11,667,56,612], // COMMERCIAL AT + 0x41: [694,0,667,28,638], // LATIN CAPITAL LETTER A + 0x42: [694,0,667,90,610], // LATIN CAPITAL LETTER B + 0x43: [705,11,639,59,587], // LATIN CAPITAL LETTER C + 0x44: [694,0,722,88,666], // LATIN CAPITAL LETTER D + 0x45: [691,0,597,86,554], // LATIN CAPITAL LETTER E + 0x46: [691,0,569,86,526], // LATIN CAPITAL LETTER F + 0x47: [704,11,667,59,599], // LATIN CAPITAL LETTER G + 0x48: [694,0,708,86,621], // LATIN CAPITAL LETTER H + 0x49: [694,0,278,87,191], // LATIN CAPITAL LETTER I + 0x4A: [694,22,472,42,388], // LATIN CAPITAL LETTER J + 0x4B: [694,0,694,88,651], // LATIN CAPITAL LETTER K + 0x4C: [694,0,542,87,499], // LATIN CAPITAL LETTER L + 0x4D: [694,0,875,92,782], // LATIN CAPITAL LETTER M + 0x4E: [694,0,708,88,619], // LATIN CAPITAL LETTER N + 0x4F: [715,22,736,55,680], // LATIN CAPITAL LETTER O + 0x50: [694,0,639,88,583], // LATIN CAPITAL LETTER P + 0x51: [715,125,736,55,680], // LATIN CAPITAL LETTER Q + 0x52: [694,0,646,88,617], // LATIN CAPITAL LETTER R + 0x53: [716,22,556,44,500], // LATIN CAPITAL LETTER S + 0x54: [688,0,681,36,644], // LATIN CAPITAL LETTER T + 0x55: [694,22,688,87,600], // LATIN CAPITAL LETTER U + 0x56: [694,0,667,14,652], // LATIN CAPITAL LETTER V + 0x57: [694,0,944,14,929], // LATIN CAPITAL LETTER W + 0x58: [694,0,667,14,652], // LATIN CAPITAL LETTER X + 0x59: [694,0,667,3,663], // LATIN CAPITAL LETTER Y + 0x5A: [694,0,611,55,560], // LATIN CAPITAL LETTER Z + 0x5B: [750,250,289,94,266], // LEFT SQUARE BRACKET + 0x5D: [750,250,289,22,194], // RIGHT SQUARE BRACKET + 0x5E: [694,-527,500,78,421], // CIRCUMFLEX ACCENT + 0x5F: [-38,114,500,0,499], // LOW LINE + 0x61: [460,10,481,38,407], // LATIN SMALL LETTER A + 0x62: [694,11,517,75,482], // LATIN SMALL LETTER B + 0x63: [460,10,444,34,415], // LATIN SMALL LETTER C + 0x64: [694,10,517,33,441], // LATIN SMALL LETTER D + 0x65: [461,10,444,28,415], // LATIN SMALL LETTER E + 0x66: [705,0,306,27,347], // LATIN SMALL LETTER F + 0x67: [455,206,500,28,485], // LATIN SMALL LETTER G + 0x68: [694,0,517,73,443], // LATIN SMALL LETTER H + 0x69: [680,0,239,67,171], // LATIN SMALL LETTER I + 0x6A: [680,205,267,-59,192], // LATIN SMALL LETTER J + 0x6B: [694,0,489,76,471], // LATIN SMALL LETTER K + 0x6C: [694,0,239,74,164], // LATIN SMALL LETTER L + 0x6D: [455,0,794,73,720], // LATIN SMALL LETTER M + 0x6E: [455,0,517,73,443], // LATIN SMALL LETTER N + 0x6F: [460,10,500,28,471], // LATIN SMALL LETTER O + 0x70: [455,194,517,75,483], // LATIN SMALL LETTER P + 0x71: [455,194,517,33,441], // LATIN SMALL LETTER Q + 0x72: [455,0,342,74,327], // LATIN SMALL LETTER R + 0x73: [460,10,383,28,360], // LATIN SMALL LETTER S + 0x74: [571,10,361,18,333], // LATIN SMALL LETTER T + 0x75: [444,10,517,73,443], // LATIN SMALL LETTER U + 0x76: [444,0,461,14,446], // LATIN SMALL LETTER V + 0x77: [444,0,683,14,668], // LATIN SMALL LETTER W + 0x78: [444,0,461,0,460], // LATIN SMALL LETTER X + 0x79: [444,204,461,14,446], // LATIN SMALL LETTER Y + 0x7A: [444,0,435,28,402], // LATIN SMALL LETTER Z + 0x7E: [327,-193,500,83,416] // TILDE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Regular/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js new file mode 100644 index 0000000..9812c6b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js @@ -0,0 +1,38 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif'], + { + 0x300: [694,-527,0,-417,-199], // COMBINING GRAVE ACCENT + 0x301: [694,-527,0,-302,-84], // COMBINING ACUTE ACCENT + 0x302: [694,-527,0,-422,-79], // COMBINING CIRCUMFLEX ACCENT + 0x303: [677,-543,0,-417,-84], // COMBINING TILDE + 0x304: [631,-552,0,-431,-70], // COMBINING MACRON + 0x306: [694,-508,0,-427,-74], // COMBINING BREVE + 0x307: [680,-576,0,-302,-198], // COMBINING DOT ABOVE + 0x308: [680,-582,0,-397,-104], // COMBINING DIAERESIS + 0x30A: [694,-527,0,-319,-99], // COMBINING RING ABOVE + 0x30B: [694,-527,0,-399,-84], // COMBINING DOUBLE ACUTE ACCENT + 0x30C: [654,-487,0,-422,-79] // COMBINING CARON + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Regular/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js new file mode 100644 index 0000000..afc1d2c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'MathJax_SansSerif', + testString: "MathJax SansSerif ^ _", + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xFFFF,"Other"], + [0x300,0x36F,"CombDiacritMarks"] + ] + +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_SansSerif"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/SansSerif/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js new file mode 100644 index 0000000..f9eb57b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x131: [444,0,239,74,164], // LATIN SMALL LETTER DOTLESS I + 0x237: [444,205,267,-59,192], // LATIN SMALL LETTER DOTLESS J + 0x393: [691,0,542,87,499], // GREEK CAPITAL LETTER GAMMA + 0x394: [694,0,833,42,790], // GREEK CAPITAL LETTER DELTA + 0x398: [716,21,778,56,722], // GREEK CAPITAL LETTER THETA + 0x39B: [694,0,611,28,582], // GREEK CAPITAL LETTER LAMDA + 0x39E: [688,0,667,42,624], // GREEK CAPITAL LETTER XI + 0x3A0: [691,0,708,86,621], // GREEK CAPITAL LETTER PI + 0x3A3: [694,0,722,55,666], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [716,0,778,55,722], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [694,0,722,55,666], // GREEK CAPITAL LETTER PHI + 0x3A8: [694,0,778,55,722], // GREEK CAPITAL LETTER PSI + 0x3A9: [716,0,722,44,677], // GREEK CAPITAL LETTER OMEGA + 0x2013: [312,-236,500,0,499], // EN DASH + 0x2014: [312,-236,1000,0,999], // EM DASH + 0x2018: [694,-471,278,90,189], // LEFT SINGLE QUOTATION MARK + 0x2019: [694,-471,278,89,188], // RIGHT SINGLE QUOTATION MARK + 0x201C: [694,-471,500,174,467], // LEFT DOUBLE QUOTATION MARK + 0x201D: [694,-471,500,32,325] // RIGHT DOUBLE QUOTATION MARK + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Regular/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js new file mode 100644 index 0000000..02e6f3a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js @@ -0,0 +1,54 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Script'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x41: [717,8,803,35,1016], // LATIN CAPITAL LETTER A + 0x42: [708,28,908,31,928], // LATIN CAPITAL LETTER B + 0x43: [728,26,666,26,819], // LATIN CAPITAL LETTER C + 0x44: [708,31,774,68,855], // LATIN CAPITAL LETTER D + 0x45: [707,8,562,46,718], // LATIN CAPITAL LETTER E + 0x46: [735,36,895,39,990], // LATIN CAPITAL LETTER F + 0x47: [717,37,610,12,738], // LATIN CAPITAL LETTER G + 0x48: [717,36,969,29,1241], // LATIN CAPITAL LETTER H + 0x49: [717,17,809,59,946], // LATIN CAPITAL LETTER I + 0x4A: [717,314,1052,92,1133], // LATIN CAPITAL LETTER J + 0x4B: [717,37,914,29,1204], // LATIN CAPITAL LETTER K + 0x4C: [717,17,874,14,1035], // LATIN CAPITAL LETTER L + 0x4D: [721,50,1080,30,1216], // LATIN CAPITAL LETTER M + 0x4E: [726,36,902,29,1208], // LATIN CAPITAL LETTER N + 0x4F: [707,8,738,96,805], // LATIN CAPITAL LETTER O + 0x50: [716,37,1013,90,1031], // LATIN CAPITAL LETTER P + 0x51: [717,17,883,54,885], // LATIN CAPITAL LETTER Q + 0x52: [717,17,850,-2,887], // LATIN CAPITAL LETTER R + 0x53: [708,36,868,29,1016], // LATIN CAPITAL LETTER S + 0x54: [735,37,747,92,996], // LATIN CAPITAL LETTER T + 0x55: [717,17,800,55,960], // LATIN CAPITAL LETTER U + 0x56: [717,17,622,56,850], // LATIN CAPITAL LETTER V + 0x57: [717,17,805,46,1026], // LATIN CAPITAL LETTER W + 0x58: [717,17,944,103,1131], // LATIN CAPITAL LETTER X + 0x59: [716,17,710,57,959], // LATIN CAPITAL LETTER Y + 0x5A: [717,16,821,83,1032] // LATIN CAPITAL LETTER Z + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Script/Regular/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js new file mode 100644 index 0000000..ebae1d1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js @@ -0,0 +1,63 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Script'] = { + directory: 'Script/Regular', + family: 'MathJax_Script', + testString: "MATHJAX SCRIPT", + skew: { + 0x41: 0.389, + 0x42: 0.194, + 0x43: 0.278, + 0x44: 0.111, + 0x45: 0.139, + 0x46: 0.222, + 0x47: 0.25, + 0x48: 0.333, + 0x49: 0.333, + 0x4A: 0.417, + 0x4B: 0.361, + 0x4C: 0.306, + 0x4D: 0.444, + 0x4E: 0.389, + 0x4F: 0.167, + 0x50: 0.222, + 0x51: 0.278, + 0x52: 0.194, + 0x53: 0.333, + 0x54: 0.222, + 0x55: 0.25, + 0x56: 0.222, + 0x57: 0.25, + 0x58: 0.278, + 0x59: 0.194, + 0x5A: 0.306 + }, + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xFFFF,"Other"] + ] + +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Script"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Script/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js new file mode 100644 index 0000000..c66543d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js @@ -0,0 +1,28 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Script'], + { + 0xA0: [0,0,250,0,0] // NO-BREAK SPACE + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Script/Regular/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js new file mode 100644 index 0000000..8aa7246 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'MathJax_Size1', + testString: "() [] {}", + 0x20: [0,0,250,0,0], // SPACE + 0x28: [850,349,458,152,422], // LEFT PARENTHESIS + 0x29: [850,349,458,35,305], // RIGHT PARENTHESIS + 0x2F: [850,349,578,55,522], // SOLIDUS + 0x5B: [850,349,417,202,394], // LEFT SQUARE BRACKET + 0x5C: [850,349,578,54,522], // REVERSE SOLIDUS + 0x5D: [850,349,417,22,214], // RIGHT SQUARE BRACKET + 0x7B: [850,349,583,105,477], // LEFT CURLY BRACKET + 0x7D: [850,349,583,105,477], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2C6: [744,-551,556,-8,564], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2DC: [722,-597,556,1,554], // SMALL TILDE + 0x302: [744,-551,0,-564,8], // COMBINING CIRCUMFLEX ACCENT + 0x303: [722,-597,0,-555,-2], // COMBINING TILDE + 0x2016: [602,0,778,257,521], // DOUBLE VERTICAL LINE + 0x2191: [600,0,667,112,555], // UPWARDS ARROW + 0x2193: [600,0,667,112,555], // DOWNWARDS ARROW + 0x21D1: [599,0,778,57,721], // UPWARDS DOUBLE ARROW + 0x21D3: [600,-1,778,57,721], // DOWNWARDS DOUBLE ARROW + 0x220F: [750,250,944,55,888], // N-ARY PRODUCT + 0x2210: [750,250,944,55,888], // N-ARY COPRODUCT + 0x2211: [750,250,1056,56,999], // N-ARY SUMMATION + 0x221A: [850,350,1000,111,1020], // SQUARE ROOT + 0x2223: [627,15,333,145,188], // DIVIDES + 0x2225: [627,15,556,145,410], // PARALLEL TO + 0x222B: [805,306,472,55,610], // INTEGRAL + 0x222C: [805,306,819,55,957], // DOUBLE INTEGRAL + 0x222D: [805,306,1166,55,1304], // TRIPLE INTEGRAL + 0x222E: [805,306,472,55,610], // CONTOUR INTEGRAL + 0x22C0: [750,249,833,55,777], // N-ARY LOGICAL AND + 0x22C1: [750,249,833,55,777], // N-ARY LOGICAL OR + 0x22C2: [750,249,833,55,777], // N-ARY INTERSECTION + 0x22C3: [750,249,833,55,777], // N-ARY UNION + 0x2308: [850,349,472,202,449], // LEFT CEILING + 0x2309: [850,349,472,22,269], // RIGHT CEILING + 0x230A: [850,349,472,202,449], // LEFT FLOOR + 0x230B: [850,349,472,22,269], // RIGHT FLOOR + 0x23D0: [602,0,667,312,355], // VERTICAL LINE EXTENSION (used to extend arrows) + 0x27E8: [850,350,472,97,394], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [850,350,472,77,374], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x2A00: [750,250,1111,56,1054], // N-ARY CIRCLED DOT OPERATOR + 0x2A01: [750,250,1111,56,1054], // N-ARY CIRCLED PLUS OPERATOR + 0x2A02: [750,250,1111,56,1054], // N-ARY CIRCLED TIMES OPERATOR + 0x2A04: [750,249,833,55,777], // N-ARY UNION OPERATOR WITH PLUS + 0x2A06: [750,249,833,55,777] // N-ARY SQUARE UNION OPERATOR +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Size1"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size1/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js new file mode 100644 index 0000000..7d262ed --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js @@ -0,0 +1,67 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'MathJax_Size2', + testString: "() [] {}", + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1150,649,597,180,561], // LEFT PARENTHESIS + 0x29: [1150,649,597,35,416], // RIGHT PARENTHESIS + 0x2F: [1150,649,811,56,754], // SOLIDUS + 0x5B: [1150,649,472,224,455], // LEFT SQUARE BRACKET + 0x5C: [1150,649,811,54,754], // REVERSE SOLIDUS + 0x5D: [1150,649,472,16,247], // RIGHT SQUARE BRACKET + 0x7B: [1150,649,667,119,547], // LEFT CURLY BRACKET + 0x7D: [1150,649,667,119,547], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2C6: [772,-565,1000,-5,1004], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2DC: [750,-611,1000,0,999], // SMALL TILDE + 0x302: [772,-565,0,-1005,4], // COMBINING CIRCUMFLEX ACCENT + 0x303: [750,-611,0,-1000,-1], // COMBINING TILDE + 0x220F: [950,450,1278,56,1221], // N-ARY PRODUCT + 0x2210: [950,450,1278,56,1221], // N-ARY COPRODUCT + 0x2211: [950,450,1444,55,1388], // N-ARY SUMMATION + 0x221A: [1150,650,1000,111,1020], // SQUARE ROOT + 0x222B: [1360,862,556,55,944], // INTEGRAL + 0x222C: [1360,862,1084,55,1472], // DOUBLE INTEGRAL + 0x222D: [1360,862,1592,55,1980], // TRIPLE INTEGRAL + 0x222E: [1360,862,556,55,944], // CONTOUR INTEGRAL + 0x22C0: [950,450,1111,55,1055], // N-ARY LOGICAL AND + 0x22C1: [950,450,1111,55,1055], // N-ARY LOGICAL OR + 0x22C2: [949,450,1111,55,1055], // N-ARY INTERSECTION + 0x22C3: [950,449,1111,55,1055], // N-ARY UNION + 0x2308: [1150,649,528,224,511], // LEFT CEILING + 0x2309: [1150,649,528,16,303], // RIGHT CEILING + 0x230A: [1150,649,528,224,511], // LEFT FLOOR + 0x230B: [1150,649,528,16,303], // RIGHT FLOOR + 0x27E8: [1150,649,611,112,524], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1150,649,611,85,498], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x2A00: [949,449,1511,56,1454], // N-ARY CIRCLED DOT OPERATOR + 0x2A01: [949,449,1511,56,1454], // N-ARY CIRCLED PLUS OPERATOR + 0x2A02: [949,449,1511,56,1454], // N-ARY CIRCLED TIMES OPERATOR + 0x2A04: [950,449,1111,55,1055], // N-ARY UNION OPERATOR WITH PLUS + 0x2A06: [950,450,1111,55,1055] // N-ARY SQUARE UNION OPERATOR +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Size2"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size2/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js new file mode 100644 index 0000000..fa83e0e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js @@ -0,0 +1,51 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'MathJax_Size3', + testString: "() [] {}", + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1450,949,736,209,701], // LEFT PARENTHESIS + 0x29: [1450,949,736,34,526], // RIGHT PARENTHESIS + 0x2F: [1450,949,1044,55,989], // SOLIDUS + 0x5B: [1450,949,528,247,516], // LEFT SQUARE BRACKET + 0x5C: [1450,949,1044,56,988], // REVERSE SOLIDUS + 0x5D: [1450,949,528,11,280], // RIGHT SQUARE BRACKET + 0x7B: [1450,949,750,130,618], // LEFT CURLY BRACKET + 0x7D: [1450,949,750,131,618], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2C6: [772,-564,1444,-4,1447], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2DC: [749,-610,1444,1,1442], // SMALL TILDE + 0x302: [772,-564,0,-1448,3], // COMBINING CIRCUMFLEX ACCENT + 0x303: [749,-610,0,-1443,-2], // COMBINING TILDE + 0x221A: [1450,950,1000,111,1020], // SQUARE ROOT + 0x2308: [1450,949,583,246,571], // LEFT CEILING + 0x2309: [1450,949,583,11,336], // RIGHT CEILING + 0x230A: [1450,949,583,246,571], // LEFT FLOOR + 0x230B: [1450,949,583,11,336], // RIGHT FLOOR + 0x27E8: [1450,950,750,126,654], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1450,949,750,94,623] // MATHEMATICAL RIGHT ANGLE BRACKET +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Size3"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size3/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js new file mode 100644 index 0000000..dc7151a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'MathJax_Size4', + testString: "() [] {}", + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1750,1249,792,237,758], // LEFT PARENTHESIS + 0x29: [1750,1249,792,33,554], // RIGHT PARENTHESIS + 0x2F: [1750,1249,1278,56,1221], // SOLIDUS + 0x5B: [1750,1249,583,269,577], // LEFT SQUARE BRACKET + 0x5C: [1750,1249,1278,56,1221], // REVERSE SOLIDUS + 0x5D: [1750,1249,583,5,313], // RIGHT SQUARE BRACKET + 0x7B: [1750,1249,806,144,661], // LEFT CURLY BRACKET + 0x7D: [1750,1249,806,144,661], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2C6: [845,-561,1889,-14,1902], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2DC: [823,-583,1889,1,1885], // SMALL TILDE + 0x302: [845,-561,0,-1903,13], // COMBINING CIRCUMFLEX ACCENT + 0x303: [823,-583,0,-1888,-4], // COMBINING TILDE + 0x221A: [1750,1250,1000,111,1020], // SQUARE ROOT + 0x2308: [1750,1249,639,269,633], // LEFT CEILING + 0x2309: [1750,1249,639,5,369], // RIGHT CEILING + 0x230A: [1750,1249,639,269,633], // LEFT FLOOR + 0x230B: [1750,1249,639,5,369], // RIGHT FLOOR + 0x239B: [1154,655,875,291,843], // LEFT PARENTHESIS UPPER HOOK + 0x239C: [610,10,875,291,417], // LEFT PARENTHESIS EXTENSION + 0x239D: [1165,644,875,291,843], // LEFT PARENTHESIS LOWER HOOK + 0x239E: [1154,655,875,31,583], // RIGHT PARENTHESIS UPPER HOOK + 0x239F: [610,10,875,457,583], // RIGHT PARENTHESIS EXTENSION + 0x23A0: [1165,644,875,31,583], // RIGHT PARENTHESIS LOWER HOOK + 0x23A1: [1154,645,667,319,666], // LEFT SQUARE BRACKET UPPER CORNER + 0x23A2: [602,0,667,319,403], // LEFT SQUARE BRACKET EXTENSION + 0x23A3: [1155,644,667,319,666], // LEFT SQUARE BRACKET LOWER CORNER + 0x23A4: [1154,645,667,0,347], // RIGHT SQUARE BRACKET UPPER CORNER + 0x23A5: [602,0,667,263,347], // RIGHT SQUARE BRACKET EXTENSION + 0x23A6: [1155,644,667,0,347], // RIGHT SQUARE BRACKET LOWER CORNER + 0x23A7: [899,10,889,384,718], // LEFT CURLY BRACKET UPPER HOOK + 0x23A8: [1160,660,889,170,504], // LEFT CURLY BRACKET MIDDLE PIECE + 0x23A9: [10,899,889,384,718], // LEFT CURLY BRACKET LOWER HOOK + 0x23AA: [310,10,889,384,504], // CURLY BRACKET EXTENSION + 0x23AB: [899,10,889,170,504], // RIGHT CURLY BRACKET UPPER HOOK + 0x23AC: [1160,660,889,384,718], // RIGHT CURLY BRACKET MIDDLE PIECE + 0x23AD: [10,899,889,170,504], // RIGHT CURLY BRACKET LOWER HOOK + 0x23B7: [935,885,1056,111,742], // RADICAL SYMBOL BOTTOM + 0x27E8: [1750,1248,806,140,703], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1750,1248,806,103,665], // MATHEMATICAL RIGHT ANGLE BRACKET + 0xE000: [625,14,1056,702,742], // stix-radical symbol vertical extender + 0xE001: [605,14,1056,702,1076], // stix-radical symbol top corner piece + 0xE150: [120,213,450,-24,460], // stix-horizontal brace, down left piece + 0xE151: [120,213,450,-10,474], // stix-horizontal brace, down right piece + 0xE152: [333,0,450,-24,460], // stix-horizontal brace, upper left piece + 0xE153: [333,0,450,-10,474], // stix-horizontal brace, upper right piece + 0xE154: [120,0,400,-10,410] // stix-oblique open face capital letter A +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Size4"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Size4/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js new file mode 100644 index 0000000..b246ed0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js @@ -0,0 +1,123 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/BasicLatin.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Typewriter'], + { + 0x20: [0,0,250,0,0], // SPACE + 0x21: [622,0,525,206,320], // EXCLAMATION MARK + 0x22: [623,-333,525,122,402], // QUOTATION MARK + 0x23: [611,0,525,36,489], // NUMBER SIGN + 0x24: [694,82,525,58,466], // DOLLAR SIGN + 0x25: [694,83,525,35,489], // PERCENT SIGN + 0x26: [622,11,525,28,490], // AMPERSAND + 0x27: [611,-287,525,175,349], // APOSTROPHE + 0x28: [694,82,525,166,437], // LEFT PARENTHESIS + 0x29: [694,82,525,87,358], // RIGHT PARENTHESIS + 0x2A: [520,-90,525,68,456], // ASTERISK + 0x2B: [531,-81,525,38,487], // PLUS SIGN + 0x2C: [140,139,525,173,353], // COMMA + 0x2D: [341,-271,525,57,468], // HYPHEN-MINUS + 0x2E: [140,-1,525,193,332], // FULL STOP + 0x2F: [694,83,525,58,466], // SOLIDUS + 0x30: [621,10,525,42,482], // DIGIT ZERO + 0x31: [622,-1,525,99,450], // DIGIT ONE + 0x32: [622,-1,525,52,472], // DIGIT TWO + 0x33: [622,11,525,44,479], // DIGIT THREE + 0x34: [624,-1,525,29,495], // DIGIT FOUR + 0x35: [611,10,525,52,472], // DIGIT FIVE + 0x36: [622,11,525,45,479], // DIGIT SIX + 0x37: [627,10,525,44,480], // DIGIT SEVEN + 0x38: [621,10,525,45,479], // DIGIT EIGHT + 0x39: [622,11,525,46,479], // DIGIT NINE + 0x3A: [431,-1,525,193,332], // COLON + 0x3B: [431,139,525,175,337], // SEMICOLON + 0x3C: [557,-55,525,57,468], // LESS-THAN SIGN + 0x3D: [417,-195,525,38,487], // EQUALS SIGN + 0x3E: [557,-55,525,57,468], // GREATER-THAN SIGN + 0x3F: [617,0,525,62,462], // QUESTION MARK + 0x40: [617,6,525,44,481], // COMMERCIAL AT + 0x41: [623,-1,525,28,496], // LATIN CAPITAL LETTER A + 0x42: [611,-1,525,17,482], // LATIN CAPITAL LETTER B + 0x43: [622,11,525,40,484], // LATIN CAPITAL LETTER C + 0x44: [611,-1,525,16,485], // LATIN CAPITAL LETTER D + 0x45: [611,-1,525,19,502], // LATIN CAPITAL LETTER E + 0x46: [611,-1,525,22,490], // LATIN CAPITAL LETTER F + 0x47: [622,11,525,38,496], // LATIN CAPITAL LETTER G + 0x48: [611,-1,525,16,508], // LATIN CAPITAL LETTER H + 0x49: [611,-1,525,72,452], // LATIN CAPITAL LETTER I + 0x4A: [611,11,525,57,479], // LATIN CAPITAL LETTER J + 0x4B: [611,-1,525,18,495], // LATIN CAPITAL LETTER K + 0x4C: [611,0,525,25,488], // LATIN CAPITAL LETTER L + 0x4D: [611,-1,525,12,512], // LATIN CAPITAL LETTER M + 0x4E: [611,0,525,20,504], // LATIN CAPITAL LETTER N + 0x4F: [621,10,525,56,468], // LATIN CAPITAL LETTER O + 0x50: [611,-1,525,19,480], // LATIN CAPITAL LETTER P + 0x51: [621,138,525,56,468], // LATIN CAPITAL LETTER Q + 0x52: [611,11,525,16,522], // LATIN CAPITAL LETTER R + 0x53: [622,11,525,52,472], // LATIN CAPITAL LETTER S + 0x54: [611,-1,525,26,498], // LATIN CAPITAL LETTER T + 0x55: [611,11,525,-3,528], // LATIN CAPITAL LETTER U + 0x56: [611,7,525,19,505], // LATIN CAPITAL LETTER V + 0x57: [611,7,525,12,512], // LATIN CAPITAL LETTER W + 0x58: [611,-1,525,28,495], // LATIN CAPITAL LETTER X + 0x59: [611,-1,525,20,505], // LATIN CAPITAL LETTER Y + 0x5A: [611,-1,525,48,481], // LATIN CAPITAL LETTER Z + 0x5B: [694,82,525,214,483], // LEFT SQUARE BRACKET + 0x5C: [694,83,525,58,466], // REVERSE SOLIDUS + 0x5D: [694,82,525,41,310], // RIGHT SQUARE BRACKET + 0x5E: [611,-460,525,96,428], // CIRCUMFLEX ACCENT + 0x5F: [-25,95,525,57,468], // LOW LINE + 0x60: [681,-357,525,176,350], // GRAVE ACCENT + 0x61: [439,6,525,48,524], // LATIN SMALL LETTER A + 0x62: [611,6,525,4,492], // LATIN SMALL LETTER B + 0x63: [440,6,525,66,466], // LATIN SMALL LETTER C + 0x64: [611,6,525,31,520], // LATIN SMALL LETTER D + 0x65: [440,6,525,48,464], // LATIN SMALL LETTER E + 0x66: [617,-1,525,35,437], // LATIN SMALL LETTER F + 0x67: [442,229,525,28,509], // LATIN SMALL LETTER G + 0x68: [611,-1,525,4,520], // LATIN SMALL LETTER H + 0x69: [612,-1,525,72,462], // LATIN SMALL LETTER I + 0x6A: [612,228,525,48,376], // LATIN SMALL LETTER J + 0x6B: [611,-1,525,13,507], // LATIN SMALL LETTER K + 0x6C: [611,-1,525,51,474], // LATIN SMALL LETTER L + 0x6D: [436,-1,525,-12,536], // LATIN SMALL LETTER M + 0x6E: [436,-1,525,4,520], // LATIN SMALL LETTER N + 0x6F: [440,6,525,52,472], // LATIN SMALL LETTER O + 0x70: [437,221,525,4,492], // LATIN SMALL LETTER P + 0x71: [437,221,525,34,545], // LATIN SMALL LETTER Q + 0x72: [437,-1,525,24,487], // LATIN SMALL LETTER R + 0x73: [440,6,525,72,458], // LATIN SMALL LETTER S + 0x74: [554,6,525,25,448], // LATIN SMALL LETTER T + 0x75: [431,5,525,4,520], // LATIN SMALL LETTER U + 0x76: [431,4,525,24,500], // LATIN SMALL LETTER V + 0x77: [431,4,525,16,508], // LATIN SMALL LETTER W + 0x78: [431,-1,525,29,495], // LATIN SMALL LETTER X + 0x79: [431,228,525,26,500], // LATIN SMALL LETTER Y + 0x7A: [431,-1,525,34,475], // LATIN SMALL LETTER Z + 0x7B: [694,83,525,50,475], // LEFT CURLY BRACKET + 0x7C: [694,82,525,228,297], // VERTICAL LINE + 0x7D: [694,83,525,49,475], // RIGHT CURLY BRACKET + 0x7E: [611,-466,525,87,437], // TILDE + 0x7F: [612,-519,525,104,421] // ?? + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Typewriter/Regular/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js new file mode 100644 index 0000000..f35ab5e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Typewriter'], + { + 0x300: [611,-485,0,-409,-195], // COMBINING GRAVE ACCENT + 0x301: [611,-485,0,-331,-117], // COMBINING ACUTE ACCENT + 0x302: [611,-460,0,-429,-97], // COMBINING CIRCUMFLEX ACCENT + 0x303: [611,-466,0,-438,-88], // COMBINING TILDE + 0x304: [577,-500,0,-452,-74], // COMBINING MACRON + 0x306: [611,-504,0,-446,-79], // COMBINING BREVE + 0x308: [612,-519,0,-421,-104], // COMBINING DIAERESIS + 0x30A: [619,-499,0,-344,-182], // COMBINING RING ABOVE + 0x30C: [577,-449,0,-427,-99] // COMBINING CARON + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Typewriter/Regular/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js new file mode 100644 index 0000000..e64a28f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js @@ -0,0 +1,36 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Typewriter'] = { + directory: 'Typewriter/Regular', + family: 'MathJax_Typewriter', + testString: "MathJax Typewriter |", + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xFFFF,"Other"], + [0x300,0x36F,"CombDiacritMarks"] + ] + +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_Typewriter"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/Typewriter/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js new file mode 100644 index 0000000..85e5892 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Typewriter'], + { + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x131: [431,-1,525,72,462], // LATIN SMALL LETTER DOTLESS I + 0x237: [431,228,525,48,376], // LATIN SMALL LETTER DOTLESS J + 0x393: [611,0,525,25,488], // GREEK CAPITAL LETTER GAMMA + 0x394: [623,0,525,35,489], // GREEK CAPITAL LETTER DELTA + 0x398: [621,10,525,56,468], // GREEK CAPITAL LETTER THETA + 0x39B: [623,-1,525,30,495], // GREEK CAPITAL LETTER LAMDA + 0x39E: [611,-1,525,33,491], // GREEK CAPITAL LETTER XI + 0x3A0: [611,-1,525,16,508], // GREEK CAPITAL LETTER PI + 0x3A3: [611,-1,525,40,484], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [622,-1,525,38,486], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [611,-1,525,41,483], // GREEK CAPITAL LETTER PHI + 0x3A8: [611,-1,525,37,487], // GREEK CAPITAL LETTER PSI + 0x3A9: [622,-1,525,32,492], // GREEK CAPITAL LETTER OMEGA + 0x7E2: [611,-287,525,175,349], // ?? + 0x7E3: [681,-357,525,176,350], // ?? + 0x2032: [623,-334,525,211,313] // PRIME + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Typewriter/Regular/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js new file mode 100644 index 0000000..39037ba --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_WinChrome'] = { + directory: 'WinChrome/Regular', + family: 'MathJax_WinChrome', + testString: "> T d \u23A6 \u2A00", + skew: { + 0x54: 0.0278, + 0xE2F0: 0.0319 + }, + 0x20: [0,0,250,0,0], // SPACE + 0x3E: [540,40,778,83,694], // GREATER-THAN SIGN + 0x54: [717,68,545,34,833], // LATIN CAPITAL LETTER T + 0x64: [694,11,511,101,567], // LATIN SMALL LETTER D + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x22C3: [750,249,833,55,777], // N-ARY UNION + 0x23A6: [1155,644,667,0,347], // RIGHT SQUARE BRACKET LOWER CORNER + 0x2A00: [949,449,1511,56,1454], // N-ARY CIRCLED DOT OPERATOR + 0xE2F0: [720,69,644,38,947], // stix-lowercase u italic slashed + 0xE2F1: [587,85,894,96,797] // stix-lowercase u bold italic slashed +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_WinChrome"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/WinChrome/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js new file mode 100644 index 0000000..cdcbd6f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js @@ -0,0 +1,56 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_WinIE6'], + { + 0xE2C0: [437,-64,500,58,417], // stix-capital W italic slashed + 0xE2C1: [437,-64,500,64,422], // stix-capital W bold italic slashed + 0xE2C2: [430,23,222,91,131], // stix-capital X italic slashed + 0xE2C3: [431,23,389,55,331], // stix-capital X bold italic slashed + 0xE2C4: [365,-132,778,55,719], // stix-capital Y italic slashed + 0xE2C5: [753,175,778,83,694], // stix-capital Y bold italic slashed + 0xE2C6: [753,175,778,83,694], // stix-capital Z italic slashed + 0xE2C7: [708,209,778,82,693], // stix-capital Z bold italic slashed + 0xE2C8: [708,209,778,82,693], // stix-lowercase a italic slashed + 0xE2CA: [694,-306,500,55,444], // stix-lowercase b italic slashed + 0xE2CB: [694,-306,500,55,444], // stix-lowercase b bold italic slashed + 0xE2CC: [366,22,500,55,444], // stix-lowercase c italic slashed + 0xE2CD: [366,22,500,55,444], // stix-lowercase c bold italic slashed + 0xE2CE: [694,195,889,0,860], // stix-lowercase d italic slashed + 0xE2CF: [694,195,889,0,860], // stix-lowercase d bold italic slashed + 0xE2D0: [689,0,778,55,722], // stix-lowercase e italic slashed + 0xE2D1: [689,0,778,55,722], // stix-lowercase e bold italic slashed + 0xE2D2: [575,20,722,84,637], // stix-lowercase f italic slashed + 0xE2D3: [575,20,722,84,637], // stix-lowercase f bold italic slashed + 0xE2D4: [539,41,778,83,694], // stix-lowercase g italic slashed + 0xE2D5: [576,19,722,84,637], // stix-lowercase g bold italic slashed + 0xE2D6: [576,19,722,84,637], // stix-lowercase h italic slashed + 0xE2D7: [539,41,778,83,694], // stix-lowercase h bold italic slashed + 0xE2D8: [716,132,667,56,611], // stix-lowercase i italic slashed + 0xE2D9: [471,82,667,24,643], // stix-lowercase i bold italic slashed + 0xE2DA: [471,82,667,23,643], // stix-lowercase j italic slashed + 0xE2DB: [601,101,778,15,762], // stix-lowercase j bold italic slashed + 0xE2DC: [694,111,944,49,895], // stix-lowercase k italic slashed + 0xE2DD: [367,-133,778,56,722] // stix-lowercase k bold italic slashed + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/WinIE6/Regular/AMS.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js new file mode 100644 index 0000000..7751192 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js @@ -0,0 +1,82 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_WinIE6'], + { + 0xE240: [518,17,1150,64,1084], // stix-mathematical calligraphic capital T + 0xE241: [694,193,575,14,561], // stix-mathematical calligraphic capital U + 0xE242: [518,17,1150,65,1085], // stix-mathematical calligraphic capital V + 0xE243: [694,194,575,14,561], // stix-mathematical calligraphic capital W + 0xE244: [518,17,1150,64,1085], // stix-mathematical calligraphic capital X + 0xE245: [767,267,575,14,561], // stix-mathematical calligraphic capital Y + 0xE246: [724,194,1150,64,1084], // stix-mathematical calligraphic capital Z + 0xE247: [724,193,1150,64,1085], // stix-mathematical bold calligraphic capital A + 0xE248: [694,224,1150,65,1085], // stix-mathematical bold calligraphic capital B + 0xE249: [694,224,1150,64,1085], // stix-mathematical bold calligraphic capital C + 0xE24A: [547,46,1150,64,1084], // stix-mathematical bold calligraphic capital D + 0xE24B: [547,46,1150,47,1102], // stix-mathematical bold calligraphic capital E + 0xE24C: [694,16,639,1,640], // stix-mathematical bold calligraphic capital F + 0xE24D: [710,17,628,60,657], // stix-mathematical bold calligraphic capital G + 0xE24E: [694,-1,639,64,574], // stix-mathematical bold calligraphic capital H + 0xE24F: [686,24,958,56,901], // stix-mathematical bold calligraphic capital I + 0xE250: [587,86,767,97,670], // stix-mathematical bold calligraphic capital J + 0xE251: [587,86,767,96,670], // stix-mathematical bold calligraphic capital K + 0xE252: [750,250,575,63,511], // stix-mathematical bold calligraphic capital L + 0xE253: [820,180,958,78,988], // stix-mathematical bold calligraphic capital M + 0xE254: [451,8,894,65,830], // stix-mathematical bold calligraphic capital N + 0xE255: [452,8,1150,65,1084], // stix-mathematical bold calligraphic capital O + 0xE256: [714,0,722,55,676], // stix-mathematical bold calligraphic capital Q + 0xE257: [750,249,319,129,190], // stix-mathematical bold calligraphic capital P + 0xE258: [750,248,575,145,430], // stix-mathematical bold calligraphic capital R + 0xE259: [604,17,767,64,702], // stix-mathematical bold calligraphic capital S + 0xE25A: [604,16,767,64,702], // stix-mathematical bold calligraphic capital T + 0xE25B: [603,16,767,64,702], // stix-mathematical bold calligraphic capital U + 0xE25C: [604,16,767,64,702], // stix-mathematical bold calligraphic capital V + 0xE25D: [711,211,569,64,632], // stix-mathematical bold calligraphic capital W + 0xE25E: [391,-109,894,64,828], // stix-mathematical bold calligraphic capital X + 0xE25F: [524,-32,894,64,829], // stix-mathematical bold calligraphic capital Y + 0xE260: [711,210,894,64,829], // stix-mathematical bold calligraphic capital Z + 0xE261: [505,3,894,64,829], // stix-old style digit 0 + 0xE262: [697,199,894,96,797], // stix-old style digit 0 + 0xE263: [697,199,894,96,797], // stix-old style digit 0 + 0xE264: [617,116,1150,64,1085], // stix-old style digit 0 + 0xE265: [618,116,1150,64,1085], // stix-old style digit 1 + 0xE266: [587,85,894,96,797], // stix-old style digit 1 + 0xE267: [587,86,894,96,796], // stix-old style digit 1 + 0xE268: [697,199,894,96,797], // stix-old style digit 1 + 0xE269: [697,199,894,96,796], // stix-old style digit 2 + 0xE26A: [632,132,894,64,828], // stix-old style digit 2 + 0xE26B: [632,132,894,64,828], // stix-old style digit 2 + 0xE26C: [693,-1,894,65,829], // stix-old style digit 2 + 0xE26D: [711,-1,1022,69,953], // stix-old style digit 3 + 0xE26E: [500,210,1022,68,953], // stix-old style digit 3 + 0xE26F: [711,211,1150,65,1084], // stix-old style digit 3 + 0xE270: [719,129,894,64,829], // stix-old style digit 3 + 0xE271: [711,24,894,65,828], // stix-old style digit 4 + 0xE272: [719,154,894,64,828], // stix-old style digit 4 + 0xE273: [719,129,894,32,861], // stix-old style digit 4 + 0xE274: [750,17,447,64,381], // stix-old style digit 4 + 0xE275: [741,223,447,57,389], // stix-old style digit 5 + 0xE276: [724,224,447,63,382] // stix-old style digit 5 + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/WinIE6/Regular/Bold.js"); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js new file mode 100644 index 0000000..8468839 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js @@ -0,0 +1,112 @@ +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_WinIE6'] = { + directory: 'WinIE6/Regular', + family: 'MathJax_WinIE6', + testString: "\uE247 \uE257 \uE2CF", + skew: { + 0xE20D: 0.0833, + 0xE24D: 0.0958 + }, + Ranges: [ + [0xE240,0xE27F,"Bold"], + [0xE2C0,0xE2DF,"AMS"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xE200: [511,11,1000,55,944], // stix-mathematical bold oblique double-struck capital A + 0xE201: [694,193,500,17,483], // stix-mathematical bold oblique double-struck capital B + 0xE202: [511,11,1000,56,944], // ?? + 0xE203: [694,194,500,17,483], // stix-mathematical bold oblique double-struck capital E + 0xE204: [511,11,1000,55,944], // stix-mathematical bold oblique double-struck capital F + 0xE205: [772,272,500,17,483], // stix-mathematical bold oblique double-struck capital G + 0xE206: [720,195,1000,29,944], // stix-mathematical bold oblique double-struck capital I + 0xE207: [720,195,1000,55,970], // stix-mathematical bold oblique double-struck capital J + 0xE208: [695,220,1000,55,970], // stix-mathematical bold oblique double-struck capital K + 0xE209: [695,220,1000,29,944], // stix-mathematical bold oblique double-struck capital L + 0xE20A: [525,24,1000,56,944], // stix-mathematical bold oblique double-struck capital M + 0xE20B: [526,25,1000,34,966], // stix-mathematical bold oblique double-struck capital O + 0xE20C: [694,22,556,0,556], // stix-mathematical bold oblique double-struck capital S + 0xE20D: [715,22,531,42,566], // stix-mathematical bold oblique double-struck capital T + 0xE20E: [694,0,556,56,500], // stix-mathematical bold oblique double-struck capital U + 0xE20F: [683,33,833,46,786], // stix-mathematical bold oblique double-struck capital V + 0xE210: [540,40,667,84,583], // stix-mathematical bold oblique double-struck capital W + 0xE211: [540,40,667,83,582], // stix-mathematical bold oblique double-struck capital X + 0xE212: [750,250,500,56,445], // stix-mathematical bold oblique double-struck capital Y + 0xE213: [800,200,833,72,853], // stix-mathematical bold oblique double-struck small letter a + 0xE214: [442,11,778,56,722], // stix-mathematical bold oblique double-struck small letter b + 0xE215: [442,11,1000,55,944], // stix-mathematical bold oblique double-struck small letter c + 0xE216: [694,0,722,55,666], // ?? + 0xE217: [750,249,278,119,159], // ?? + 0xE218: [750,250,500,132,367], // stix-mathematical bold oblique double-struck small letter f + 0xE219: [598,22,667,55,611], // stix-mathematical bold oblique double-struck small letter g + 0xE21A: [598,22,667,55,611], // stix-mathematical bold oblique double-struck small letter h + 0xE21B: [598,22,667,55,611], // ?? + 0xE21C: [598,22,667,55,611], // ?? + 0xE21D: [716,216,417,55,472], // stix-mathematical bold oblique double-struck small letter k + 0xE21E: [367,-133,778,55,722], // stix-mathematical bold oblique double-struck small letter l + 0xE21F: [483,-55,778,55,722], // stix-mathematical bold oblique double-struck small letter m + 0xE220: [716,215,778,56,722], // stix-mathematical bold oblique double-struck small letter n + 0xE221: [464,-36,778,56,722], // stix-mathematical bold oblique double-struck small letter o + 0xE222: [636,138,778,83,694], // stix-mathematical bold oblique double-struck small letter p + 0xE223: [636,138,778,83,694], // stix-mathematical bold oblique double-struck small letter q + 0xE224: [568,67,1000,56,944], // stix-mathematical bold oblique double-struck small letter r + 0xE225: [567,67,1000,55,944], // stix-mathematical bold oblique double-struck small letter s + 0xE226: [540,40,778,84,694], // stix-mathematical bold oblique double-struck small letter t + 0xE227: [540,40,778,83,693], // stix-mathematical bold oblique double-struck small letter u + 0xE228: [636,138,778,84,694], // stix-mathematical bold oblique double-struck small letter v + 0xE229: [636,138,778,83,693], // stix-mathematical bold oblique double-struck small letter w + 0xE22A: [583,83,778,56,722], // stix-mathematical bold oblique double-struck small letter x + 0xE22B: [583,83,778,56,722], // stix-mathematical bold oblique double-struck small letter y + 0xE22C: [668,0,778,55,723], // stix-mathematical bold oblique double-struck small letter z + 0xE22D: [716,0,889,59,828], // stix-mathematical calligraphic capital A + 0xE22E: [500,215,889,59,828], // stix-mathematical calligraphic capital B + 0xE22F: [715,215,1000,56,944], // stix-mathematical calligraphic capital C + 0xE230: [727,130,778,55,723], // stix-mathematical calligraphic capital D + 0xE231: [716,33,778,55,723], // stix-mathematical calligraphic capital E + 0xE232: [727,162,778,55,723], // stix-mathematical calligraphic capital F + 0xE233: [726,130,778,28,750], // stix-mathematical calligraphic capital G + 0xE234: [750,22,389,55,332], // stix-mathematical calligraphic capital H + 0xE235: [734,223,389,65,324], // stix-mathematical calligraphic capital I + 0xE236: [723,223,389,55,333], // stix-mathematical calligraphic capital J + 0xE280: [0,1000,944,55,888], // stix-old style digit 7 + 0xE281: [0,1000,1056,56,999], // stix-old style digit 8 + 0xE282: [40,1160,1000,111,1020], // stix-old style digit 8 + 0xE283: [21,621,333,145,188], // stix-old style digit 8 + 0xE284: [21,621,556,145,410], // stix-old style digit 8 + 0xE285: [0,1111,472,55,610], // stix-old style digit 9 + 0xE286: [0,1111,472,55,610], // stix-old style digit 9 + 0xE287: [0,600,667,112,555], // stix-old style digit 9 + 0xE288: [0,600,667,112,555], // stix-old style digit 9 + 0xE289: [1,601,667,312,355], // ?? + 0xE290: [0,1400,1278,56,1221], // stix-long horizontal extender at baseline + 0xE291: [0,1400,1444,55,1388], // stix-short horizontal extender, high + 0xE292: [40,1760,1000,111,1020], // stix-two summation signs next to each other + 0xE295: [0,2222,556,55,944], // stix-capital A bold italic slashed + 0xE296: [0,2222,556,55,944], // stix-capital B italic slashed + 0xE2A2: [40,2360,1000,111,1020], // stix-capital H italic slashed + 0xE2B2: [40,2960,1000,111,1020] // stix-capital P italic slashed +}; + +MathJax.Callback.Queue( + ["initFont",MathJax.OutputJax["HTML-CSS"],"MathJax_WinIE6"], + ["loadComplete",MathJax.Ajax,MathJax.OutputJax["HTML-CSS"].fontDir+"/WinIE6/Regular/Main.js"] +); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js new file mode 100644 index 0000000..e34364f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js @@ -0,0 +1,239 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js + * + * Adds extra stretchy characters to the TeX font data. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS) { + var VERSION = "2.3"; + + var DELIMITERS = HTMLCSS.FONTDATA.DELIMITERS; + + var MAIN = "MathJax_Main", + BOLD = "MathJax_Main-bold", + AMS = "MathJax_AMS", + SIZE1 = "MathJax_Size1", + SIZE4 = "MathJax_Size4"; + var H = "H", V = "V"; + + var delim = { + 0x003D: // equal sign + { + dir: H, HW: [[.767,MAIN]], stretch: {rep:[0x003D,MAIN]} + }, + 0x219E: // left two-headed arrow + { + dir: H, HW: [[1,AMS]], stretch: {left:[0x219E,AMS], rep:[0x2212,MAIN]} + }, + 0x21A0: // right two-headed arrow + { + dir: H, HW: [[1,AMS]], stretch: {right:[0x21A0,AMS], rep:[0x2212,MAIN]} + }, + 0x21A4: // left arrow from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x2190,MAIN], rep:[0x2212,MAIN], right:[0x2223,SIZE1,0,-.05,.9]} + }, + 0x21A5: // up arrow from bar + { + dir: V, HW: [], + stretch: {min:.6, bot:[0x22A5,BOLD,0,0,.75], ext:[0x23D0,SIZE1], top:[0x2191,SIZE1]} + }, + 0x21A6: // right arrow from bar + { + dir: H, HW: [[1,MAIN]], + stretch: {left:[0x2223,SIZE1,-.09,-.05,.9], rep:[0x2212,MAIN], right:[0x2192,MAIN]} + }, + 0x21A7: // down arrow from bar + { + dir: V, HW: [], + stretch: {min:.6, top:[0x22A4,BOLD,0,0,.75], ext:[0x23D0,SIZE1], bot:[0x2193,SIZE1]} + }, + 0x21B0: // up arrow with top leftwards + { + dir: V, HW: [[.722,AMS]], + stretch: {top:[0x21B0,AMS], ext:[0x23D0,SIZE1,.097]} + }, + 0x21B1: // up arrow with top right + { + dir: V, HW: [[.722,AMS]], + stretch: {top:[0x21B1,AMS,.27], ext:[0x23D0,SIZE1]} + }, + 0x21BC: // left harpoon with barb up + { + dir: H, HW: [[1,MAIN]], + stretch: {left:[0x21BC,MAIN], rep:[0x2212,MAIN]} + }, + 0x21BD: // left harpoon with barb down + { + dir: H, HW: [[1,MAIN]], + stretch: {left:[0x21BD,MAIN], rep:[0x2212,MAIN]} + }, + 0x21BE: // up harpoon with barb right + { + dir: V, HW: [[.888,AMS]], + stretch: {top:[0x21BE,AMS,.12,0,1.1], ext:[0x23D0,SIZE1]} + }, + 0x21BF: // up harpoon with barb left + { + dir: V, HW: [[.888,AMS]], + stretch: {top:[0x21BF,AMS,.12,0,1.1], ext:[0x23D0,SIZE1]} + }, + 0x21C0: // right harpoon with barb up + { + dir: H, HW: [[1,MAIN]], + stretch: {right:[0x21C0,MAIN], rep:[0x2212,MAIN]} + }, + 0x21C1: // right harpoon with barb down + { + dir: H, HW: [[1,MAIN]], + stretch: {right:[0x21C1,MAIN], rep:[0x2212,MAIN]} + }, + 0x21C2: // down harpoon with barb right + { + dir: V, HW: [[.888,AMS]], + stretch: {bot:[0x21C2,AMS,.12,0,1.1], ext:[0x23D0,SIZE1]} + }, + 0x21C3: // down harpoon with barb left + { + dir: V, HW: [[.888,AMS]], + stretch: {bot:[0x21C3,AMS,.12,0,1.1], ext:[0x23D0,SIZE1]} + }, + 0x21DA: // left triple arrow + { + dir: H, HW: [[1,AMS]], + stretch: {left:[0x21DA,AMS], rep:[0x2261,MAIN]} + }, + 0x21DB: // right triple arrow + { + dir: H, HW: [[1,AMS]], + stretch: {right:[0x21DB,AMS], rep:[0x2261,MAIN]} + }, + 0x23B4: // top square bracket + { + dir: H, HW: [], + stretch: {min:.5, left:[0x250C,AMS,0,-.1], rep:[0x2212,MAIN,0,.35], right:[0x2510,AMS,0,-.1]} + }, + 0x23B5: // bottom square bracket + { + dir: H, HW: [], + stretch: {min:.5, left:[0x2514,AMS,0,.26], rep:[0x2212,MAIN,0,0,0,.25], right:[0x2518,AMS,0,.26]} + }, + 0x23DC: // top paren + { + dir: H, HW: [[.778,AMS,0,0x2322],[1,MAIN,0,0x2322]], + stretch: {left:[0xE150,SIZE4], rep:[0xE154,SIZE4], right:[0xE151,SIZE4]} + }, + 0x23DD: // bottom paren + { + dir: H, HW: [[.778,AMS,0,0x2323],[1,MAIN,0,0x2323]], + stretch: {left:[0xE152,SIZE4], rep:[0xE154,SIZE4], right:[0xE153,SIZE4]} + }, + 0x23E0: // top tortoise shell + { + dir: H, HW: [], + stretch: {min:1.25, left:[0x2CA,MAIN,-.1], rep:[0x2C9,MAIN,0,.13], right:[0x2CB,MAIN], fullExtenders:true} + }, + 0x23E1: // bottom tortoise shell + { + dir: H, HW: [], + stretch: {min:1.5, left:[0x2CB,MAIN,-.1,.1], rep:[0x2C9,MAIN], right:[0x2CA,MAIN,-.1,.1], fullExtenders:true} + }, + 0x2906: // leftwards double arrow from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x21D0,MAIN], rep:[0x3D,MAIN], right:[0x2223,SIZE1,0,-.1]} + }, + 0x2907: // rightwards double arrow from bar + { + dir: H, HW: [], + stretch: {min:.7, left:[0x22A8,AMS,0,-.12], rep:[0x3D,MAIN], right:[0x21D2,MAIN]} + }, + 0x294E: // left barb up right barb up harpoon + { + dir: H, HW: [], + stretch: {min:.5, left:[0x21BC,MAIN], rep:[0x2212,MAIN], right:[0x21C0,MAIN]} + }, + 0x294F: // up barb right down barb right harpoon + { + dir: V, HW: [], + stretch: {min:.5, top:[0x21BE,AMS,.12,0,1.1], ext:[0x23D0,SIZE1], bot:[0x21C2,AMS,.12,0,1.1]} + }, + 0x2950: // left barb dow right barb down harpoon + { + dir: H, HW: [], + stretch: {min:.5, left:[0x21BD,MAIN], rep:[0x2212,MAIN], right:[0x21C1,MAIN]} + }, + 0x2951: // up barb left down barb left harpoon + { + dir: V, HW: [], + stretch: {min:.5, top:[0x21BF,AMS,.12,0,1.1], ext:[0x23D0,SIZE1], bot:[0x21C3,AMS,.12,0,1.1]} + }, + 0x295A: // leftwards harpoon with barb up from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x21BC,MAIN], rep:[0x2212,MAIN], right:[0x2223,SIZE1,0,-.05,.9]} + }, + 0x295B: // rightwards harpoon with barb up from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x2223,SIZE1,-.05,-.05,.9], rep:[0x2212,MAIN], right:[0x21C0,MAIN]} + }, + 0x295C: // up harpoon with barb right from bar + { + dir: V, HW: [], + stretch: {min:.7, bot:[0x22A5,BOLD,0,0,.75], ext:[0x23D0,SIZE1], top:[0x21BE,AMS,.12,0,1.1]} + }, + 0x295D: // down harpoon with barb right from bar + { + dir: V, HW: [], + stretch: {min:.7, top:[0x22A4,BOLD,0,0,.75], ext:[0x23D0,SIZE1], bot:[0x21C2,AMS,.12,0,1.1]} + }, + 0x295E: // leftwards harpoon with barb down from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x21BD,MAIN], rep:[0x2212,MAIN], right:[0x2223,SIZE1,0,-.05,.9]} + }, + 0x295F: // rightwards harpoon with barb down from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x2223,SIZE1,-.05,-.05,.9], rep:[0x2212,MAIN], right:[0x21C1,MAIN]} + }, + 0x2960: // up harpoon with barb left from bar + { + dir: V, HW: [], + stretch: {min:.7, bot:[0x22A5,BOLD,0,0,.75], ext:[0x23D0,SIZE1], top:[0x21BF,AMS,.12,0,1.1]} + }, + 0x2961: // down harpoon with barb left from bar + { + dir: V, HW: [], + stretch: {min:.7, top:[0x22A4,BOLD,0,0,.75], ext:[0x23D0,SIZE1], bot:[0x21C3,AMS,.12,0,1.1]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(HTMLCSS.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["HTML-CSS"]); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata.js new file mode 100644 index 0000000..a863bf5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/fonts/TeX/fontdata.js @@ -0,0 +1,1982 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/fonts/TeX/fontdata.js + * + * Initializes the HTML-CSS OutputJax to use the MathJax TeX fonts + * for displaying mathematics. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HTMLCSS,MML,AJAX) { + var VERSION = "2.3"; + + var MAIN = "MathJax_Main", + BOLD = "MathJax_Main-bold", + ITALIC = "MathJax_Math-italic", + AMS = "MathJax_AMS", + SIZE1 = "MathJax_Size1", + SIZE2 = "MathJax_Size2", + SIZE3 = "MathJax_Size3", + SIZE4 = "MathJax_Size4"; + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + HTMLCSS.Augment({ + FONTDATA: { + version: VERSION, + + TeX_factor: 1, // TeX em's to font em's + baselineskip: 1.2, + lineH: .8, lineD: .2, + + hasStyleChar: true, // char 0xEFFD encodes font style + + FONTS: { + "MathJax_Main": "Main/Regular/Main.js", + "MathJax_Main-bold": "Main/Bold/Main.js", + "MathJax_Main-italic": "Main/Italic/Main.js", + "MathJax_Math-italic": "Math/Italic/Main.js", + "MathJax_Math-bold-italic": "Math/BoldItalic/Main.js", + "MathJax_Caligraphic": "Caligraphic/Regular/Main.js", + "MathJax_Size1": "Size1/Regular/Main.js", + "MathJax_Size2": "Size2/Regular/Main.js", + "MathJax_Size3": "Size3/Regular/Main.js", + "MathJax_Size4": "Size4/Regular/Main.js", + "MathJax_AMS": "AMS/Regular/Main.js", + "MathJax_Fraktur": "Fraktur/Regular/Main.js", + "MathJax_Fraktur-bold": "Fraktur/Bold/Main.js", + "MathJax_SansSerif": "SansSerif/Regular/Main.js", + "MathJax_SansSerif-bold": "SansSerif/Bold/Main.js", + "MathJax_SansSerif-italic": "SansSerif/Italic/Main.js", + "MathJax_Script": "Script/Regular/Main.js", + "MathJax_Typewriter": "Typewriter/Regular/Main.js", + "MathJax_Caligraphic-bold": "Caligraphic/Bold/Main.js" + }, + + VARIANT: { + "normal": {fonts:[MAIN,SIZE1,AMS], + offsetG: 0x03B1, variantG: "italic", + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58, + 0x2216:[0x2216,"-TeX-variant"], // \smallsetminus + 0x210F:[0x210F,"-TeX-variant"], // \hbar + 0x2032:[0x27,"sans-serif-italic"], // HACK: a smaller prime + 0x29F8:[0x002F,MML.VARIANT.ITALIC]}}, + "bold": {fonts:[BOLD,SIZE1,AMS], bold:true, + offsetG: 0x03B1, variantG: "bold-italic", + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58, 0x29F8:[0x002F,"bold-italic"], + 0x219A:"\u2190\u0338", 0x219B:"\u2192\u0338", 0x21AE:"\u2194\u0338", + 0x21CD:"\u21D0\u0338", 0x21CE:"\u21D4\u0338", 0x21CF:"\u21D2\u0338", + 0x2204:"\u2203\u0338", 0x2224:"\u2223\u0338", 0x2226:"\u2225\u0338", + 0x2241:"\u223C\u0338", 0x2247:"\u2245\u0338", + 0x226E:"<\u0338", 0x226F:">\u0338", + 0x2270:"\u2264\u0338", 0x2271:"\u2265\u0338", + 0x2280:"\u227A\u0338", 0x2281:"\u227B\u0338", + 0x2288:"\u2286\u0338", 0x2289:"\u2287\u0338", + 0x22AC:"\u22A2\u0338", 0x22AD:"\u22A8\u0338", +// 0x22AE:"\u22A9\u0338", 0x22AF:"\u22AB\u0338", + 0x22E0:"\u227C\u0338", 0x22E1:"\u227D\u0338"//, +// 0x22EA:"\u22B2\u0338", 0x22EB:"\u22B3\u0338", +// 0x22EC:"\u22B4\u0338", 0x22ED:"\u22B5\u0338" + }}, + "italic": {fonts:[ITALIC,"MathJax_Main-italic",MAIN,SIZE1,AMS], italic:true, + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58}}, + "bold-italic": {fonts:["MathJax_Math-bold-italic",BOLD,SIZE1,AMS], bold:true, italic:true, + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58}}, + "double-struck": {fonts:[AMS, MAIN]}, + "fraktur": {fonts:["MathJax_Fraktur",MAIN,SIZE1,AMS]}, + "bold-fraktur": {fonts:["MathJax_Fraktur-bold",BOLD,SIZE1,AMS], bold:true}, + "script": {fonts:["MathJax_Script",MAIN,SIZE1,AMS]}, + "bold-script": {fonts:["MathJax_Script",BOLD,SIZE1,AMS], bold:true}, + "sans-serif": {fonts:["MathJax_SansSerif",MAIN,SIZE1,AMS]}, + "bold-sans-serif": {fonts:["MathJax_SansSerif-bold",BOLD,SIZE1,AMS], bold:true}, + "sans-serif-italic": {fonts:["MathJax_SansSerif-italic","MathJax_Main-italic",SIZE1,AMS], italic:true}, + "sans-serif-bold-italic": {fonts:["MathJax_SansSerif-italic","MathJax_Main-italic",SIZE1,AMS], bold:true, italic:true}, + "monospace": {fonts:["MathJax_Typewriter",MAIN,SIZE1,AMS]}, + "-tex-caligraphic": {fonts:["MathJax_Caligraphic",MAIN], offsetA: 0x41, variantA: "italic"}, + "-tex-oldstyle": {fonts:["MathJax_Caligraphic",MAIN]}, + "-tex-mathit": {fonts:["MathJax_Main-italic",ITALIC,MAIN,SIZE1,AMS], italic:true, noIC: true, + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58}}, + "-TeX-variant": {fonts:[AMS,MAIN,SIZE1], // HACK: to get larger prime for \prime + remap: { + 0x2268: 0xE00C, 0x2269: 0xE00D, 0x2270: 0xE011, 0x2271: 0xE00E, + 0x2A87: 0xE010, 0x2A88: 0xE00F, 0x2224: 0xE006, 0x2226: 0xE007, + 0x2288: 0xE016, 0x2289: 0xE018, 0x228A: 0xE01A, 0x228B: 0xE01B, + 0x2ACB: 0xE017, 0x2ACC: 0xE019, 0x03DC: 0xE008, 0x03F0: 0xE009, + 0x2216:[0x2216,MML.VARIANT.NORMAL], // \setminus + 0x210F:[0x210F,MML.VARIANT.NORMAL] // \hslash + }}, + "-largeOp": {fonts:[SIZE2,SIZE1,MAIN]}, + "-smallOp": {fonts:[SIZE1,MAIN]}, + "-tex-caligraphic-bold": {fonts:["MathJax_Caligraphic-bold","MathJax_Main-bold","MathJax_Main","MathJax_Math","MathJax_Size1"], bold:true, + offsetA: 0x41, variantA: "bold-italic"}, + "-tex-oldstyle-bold": {fonts:["MathJax_Caligraphic-bold","MathJax_Main-bold","MathJax_Main","MathJax_Math","MathJax_Size1"], bold:true} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 32}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03F6, offset: "G"} + ], + + RULECHAR: 0x2212, + + REMAP: { + 0x203E: 0x2C9, // overline + 0x20D0: 0x21BC, 0x20D1: 0x21C0, // combining left and right harpoons + 0x20D6: 0x2190, 0x20E1: 0x2194, // combining left arrow and lef-right arrow + 0x20EC: 0x21C1, 0x20ED: 0x21BD, // combining low right and left harpoons + 0x20EE: 0x2190, 0x20EF: 0x2192, // combining low left and right arrows + 0x20F0: 0x2A, // combining asterisk + 0xFE37: 0x23DE, 0xFE38: 0x23DF, // OverBrace, UnderBrace + + 0xB7: 0x22C5, // center dot + 0x2B9: 0x2032, // prime, + 0x3D2: 0x3A5, // Upsilon + 0x2015: 0x2014, 0x2017: 0x5F, // horizontal bars + 0x2022: 0x2219, 0x2044: 0x2F, // bullet, fraction slash + 0x2305: 0x22BC, 0x2306: 0x2A5E, // barwedge, doublebarwedge + 0x25AA: 0x25A0, 0x25B4: 0x25B2, // blacksquare, blacktriangle + 0x25B5: 0x25B3, 0x25B8: 0x25B6, // triangle, blacktriangleright + 0x25BE: 0x25BC, 0x25BF: 0x25BD, // blacktriangledown, triangledown + 0x25C2: 0x25C0, // blacktriangleleft + 0x2329: 0x27E8, 0x232A: 0x27E9, // langle, rangle + 0x3008: 0x27E8, 0x3009: 0x27E9, // langle, rangle + 0x2758: 0x2223, // VerticalSeparator + 0x2A2F: 0xD7, // cross product + + 0x25FB: 0x25A1, 0x25FC: 0x25A0, // square, blacksquare + + // + // Letter-like symbols (that appear elsewhere) + // + 0x2102: [0x0043,MML.VARIANT.DOUBLESTRUCK], +// 0x210A: [0x0067,MML.VARIANT.SCRIPT], + 0x210B: [0x0048,MML.VARIANT.SCRIPT], + 0x210C: [0x0048,MML.VARIANT.FRAKTUR], + 0x210D: [0x0048,MML.VARIANT.DOUBLESTRUCK], + 0x210E: [0x0068,MML.VARIANT.ITALIC], + 0x2110: [0x004A,MML.VARIANT.SCRIPT], + 0x2111: [0x0049,MML.VARIANT.FRAKTUR], + 0x2112: [0x004C,MML.VARIANT.SCRIPT], + 0x2115: [0x004E,MML.VARIANT.DOUBLESTRUCK], + 0x2119: [0x0050,MML.VARIANT.DOUBLESTRUCK], + 0x211A: [0x0051,MML.VARIANT.DOUBLESTRUCK], + 0x211B: [0x0052,MML.VARIANT.SCRIPT], + 0x211C: [0x0052,MML.VARIANT.FRAKTUR], + 0x211D: [0x0052,MML.VARIANT.DOUBLESTRUCK], + 0x2124: [0x005A,MML.VARIANT.DOUBLESTRUCK], + 0x2126: [0x03A9,MML.VARIANT.NORMAL], + 0x2128: [0x005A,MML.VARIANT.FRAKTUR], + 0x212C: [0x0042,MML.VARIANT.SCRIPT], + 0x212D: [0x0043,MML.VARIANT.FRAKTUR], +// 0x212F: [0x0065,MML.VARIANT.SCRIPT], + 0x2130: [0x0045,MML.VARIANT.SCRIPT], + 0x2131: [0x0046,MML.VARIANT.SCRIPT], + 0x2133: [0x004D,MML.VARIANT.SCRIPT], +// 0x2134: [0x006F,MML.VARIANT.SCRIPT], + + 0x2247: 0x2246, // wrong placement of this character + 0x231C: 0x250C, 0x231D:0x2510, // wrong placement of \ulcorner, \urcorner + 0x231E: 0x2514, 0x231F:0x2518, // wrong placement of \llcorner, \lrcorner + + // + // compound symbols not in these fonts + // + 0x2204: "\u2203\u0338", // \not\exists + 0x220C: "\u220B\u0338", // \not\ni + 0x2244: "\u2243\u0338", // \not\simeq + 0x2249: "\u2248\u0338", // \not\approx + 0x2262: "\u2261\u0338", // \not\equiv + 0x226D: "\u224D\u0338", // \not\asymp + 0x2274: "\u2272\u0338", // \not\lesssim + 0x2275: "\u2273\u0338", // \not\gtrsim + 0x2278: "\u2276\u0338", // \not\lessgtr + 0x2279: "\u2277\u0338", // \not\gtrless + 0x2284: "\u2282\u0338", // \not\subset + 0x2285: "\u2283\u0338", // \not\supset + 0x22E2: "\u2291\u0338", // \not\sqsubseteq + 0x22E3: "\u2292\u0338", // \not\sqsupseteq + + 0x2A0C: "\u222C\u222C", // quadruple integral + + 0x2033: "\u2032\u2032", // double prime + 0x2034: "\u2032\u2032\u2032", // triple prime + 0x2036: "\u2035\u2035", // double back prime + 0x2037: "\u2035\u2035\u2035", // trile back prime + 0x2057: "\u2032\u2032\u2032\u2032", // quadruple prime + 0x20DB: "...", // combining three dots above (only works with mover/under) + 0x20DC: "...." // combining four dots above (only works with mover/under) + }, + + REMAPACCENT: { + "\u2192":"\u20D7", + "\u2032":"'", + "\u2035":"`" + }, + REMAPACCENTUNDER: { + }, + + PLANE1MAP: [ + [0x1D400,0x1D419, 0x41, MML.VARIANT.BOLD], + [0x1D41A,0x1D433, 0x61, MML.VARIANT.BOLD], + [0x1D434,0x1D44D, 0x41, MML.VARIANT.ITALIC], + [0x1D44E,0x1D467, 0x61, MML.VARIANT.ITALIC], + [0x1D468,0x1D481, 0x41, MML.VARIANT.BOLDITALIC], + [0x1D482,0x1D49B, 0x61, MML.VARIANT.BOLDITALIC], + [0x1D49C,0x1D4B5, 0x41, MML.VARIANT.SCRIPT], +// [0x1D4B6,0x1D4CF, 0x61, MML.VARIANT.SCRIPT], +// [0x1D4D0,0x1D4E9, 0x41, MML.VARIANT.BOLDSCRIPT], +// [0x1D4EA,0x1D503, 0x61, MML.VARIANT.BOLDSCRIPT], + [0x1D504,0x1D51D, 0x41, MML.VARIANT.FRAKTUR], + [0x1D51E,0x1D537, 0x61, MML.VARIANT.FRAKTUR], + [0x1D538,0x1D551, 0x41, MML.VARIANT.DOUBLESTRUCK], +// [0x1D552,0x1D56B, 0x61, MML.VARIANT.DOUBLESTRUCK], + [0x1D56C,0x1D585, 0x41, MML.VARIANT.BOLDFRAKTUR], + [0x1D586,0x1D59F, 0x61, MML.VARIANT.BOLDFRAKTUR], + [0x1D5A0,0x1D5B9, 0x41, MML.VARIANT.SANSSERIF], + [0x1D5BA,0x1D5D3, 0x61, MML.VARIANT.SANSSERIF], + [0x1D5D4,0x1D5ED, 0x41, MML.VARIANT.BOLDSANSSERIF], + [0x1D5EE,0x1D607, 0x61, MML.VARIANT.BOLDSANSSERIF], + [0x1D608,0x1D621, 0x41, MML.VARIANT.SANSSERIFITALIC], + [0x1D622,0x1D63B, 0x61, MML.VARIANT.SANSSERIFITALIC], +// [0x1D63C,0x1D655, 0x41, MML.VARIANT.SANSSERIFBOLDITALIC], +// [0x1D656,0x1D66F, 0x61, MML.VARIANT.SANSSERIFBOLDITALIC], + [0x1D670,0x1D689, 0x41, MML.VARIANT.MONOSPACE], + [0x1D68A,0x1D6A3, 0x61, MML.VARIANT.MONOSPACE], + + [0x1D6A8,0x1D6C1, 0x391, MML.VARIANT.BOLD], +// [0x1D6C2,0x1D6E1, 0x3B1, MML.VARIANT.BOLD], + [0x1D6E2,0x1D6FA, 0x391, MML.VARIANT.ITALIC], + [0x1D6FC,0x1D71B, 0x3B1, MML.VARIANT.ITALIC], + [0x1D71C,0x1D734, 0x391, MML.VARIANT.BOLDITALIC], + [0x1D736,0x1D755, 0x3B1, MML.VARIANT.BOLDITALIC], + [0x1D756,0x1D76E, 0x391, MML.VARIANT.BOLDSANSSERIF], +// [0x1D770,0x1D78F, 0x3B1, MML.VARIANT.BOLDSANSSERIF], + [0x1D790,0x1D7A8, 0x391, MML.VARIANT.SANSSERIFBOLDITALIC], +// [0x1D7AA,0x1D7C9, 0x3B1, MML.VARIANT.SANSSERIFBOLDITALIC], + + [0x1D7CE,0x1D7D7, 0x30, MML.VARIANT.BOLD], +// [0x1D7D8,0x1D7E1, 0x30, MML.VARIANT.DOUBLESTRUCK], + [0x1D7E2,0x1D7EB, 0x30, MML.VARIANT.SANSSERIF], + [0x1D7EC,0x1D7F5, 0x30, MML.VARIANT.BOLDSANSSERIF], + [0x1D7F6,0x1D7FF, 0x30, MML.VARIANT.MONOSPACE] + ], + + REMAPGREEK: { + 0x391: 0x41, 0x392: 0x42, 0x395: 0x45, 0x396: 0x5A, + 0x397: 0x48, 0x399: 0x49, 0x39A: 0x4B, 0x39C: 0x4D, + 0x39D: 0x4E, 0x39F: 0x4F, 0x3A1: 0x50, 0x3A2: 0x398, + 0x3A4: 0x54, 0x3A7: 0x58, 0x3AA: 0x2207, + 0x3CA: 0x2202, 0x3CB: 0x3F5, 0x3CC: 0x3D1, 0x3CD: 0x3F0, + 0x3CE: 0x3D5, 0x3CF: 0x3F1, 0x3D0: 0x3D6 + }, + + RemapPlane1: function (n,variant) { + for (var i = 0, m = this.PLANE1MAP.length; i < m; i++) { + if (n < this.PLANE1MAP[i][0]) break; + if (n <= this.PLANE1MAP[i][1]) { + n = n - this.PLANE1MAP[i][0] + this.PLANE1MAP[i][2]; + if (this.REMAPGREEK[n]) {n = this.REMAPGREEK[n]} + variant = this.VARIANT[this.PLANE1MAP[i][3]]; + break; + } + } + return {n: n, variant: variant}; + }, + + DELIMITERS: { + 0x0028: // ( + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {top: [0x239B,SIZE4], ext: [0x239C,SIZE4], bot: [0x239D,SIZE4]} + }, + 0x0029: // ) + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {top:[0x239E,SIZE4], ext:[0x239F,SIZE4], bot:[0x23A0,SIZE4]} + }, + 0x002F: // / + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]] + }, + 0x005B: // [ + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {top:[0x23A1,SIZE4], ext:[0x23A2,SIZE4], bot:[0x23A3,SIZE4]} + }, + 0x005C: // \ + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]] + }, + 0x005D: // ] + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {top:[0x23A4,SIZE4], ext:[0x23A5,SIZE4], bot:[0x23A6,SIZE4]} + }, + 0x007B: // { + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {top:[0x23A7,SIZE4], mid:[0x23A8,SIZE4], bot:[0x23A9,SIZE4], ext:[0x23AA,SIZE4]} + }, + 0x007C: // | + { + dir: V, HW: [[1,MAIN]], stretch: {ext:[0x2223,MAIN]} + }, + 0x007D: // } + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {top: [0x23AB,SIZE4], mid:[0x23AC,SIZE4], bot: [0x23AD,SIZE4], ext: [0x23AA,SIZE4]} + }, + 0x00AF: // macron + { + dir: H, HW: [[.59,MAIN]], stretch: {rep:[0xAF,MAIN]} + }, + 0x02C6: // wide hat + { + dir: H, HW: [[.267+.25,MAIN],[.567+.25,SIZE1],[1.005+.33,SIZE2],[1.447+.33,SIZE3],[1.909,SIZE4]] + }, + 0x02DC: // wide tilde + { + dir: H, HW: [[.333+.25,MAIN],[.555+.25,SIZE1],[1+.33,SIZE2],[1.443+.33,SIZE3],[1.887,SIZE4]] + }, + 0x2016: // vertical arrow extension + { + dir: V, HW: [[.602,SIZE1],[1,MAIN,null,0x2225]], stretch: {ext:[0x2225,MAIN]} + }, + 0x2190: // left arrow + { + dir: H, HW: [[1,MAIN]], stretch: {left:[0x2190,MAIN],rep:[0x2212,MAIN]} + }, + 0x2191: // \uparrow + { + dir: V, HW: [[.888,MAIN]], stretch: {top:[0x2191,SIZE1], ext:[0x23D0,SIZE1]} + }, + 0x2192: // right arrow + { + dir: H, HW: [[1,MAIN]], stretch: {rep:[0x2212,MAIN], right:[0x2192,MAIN]} + }, + 0x2193: // \downarrow + { + dir: V, HW: [[.888,MAIN]], stretch: {ext:[0x23D0,SIZE1], bot:[0x2193,SIZE1]} + }, + 0x2194: // left-right arrow + { + dir: H, HW: [[1,MAIN]], + stretch: {left:[0x2190,MAIN],rep:[0x2212,MAIN], right:[0x2192,MAIN]} + }, + 0x2195: // \updownarrow + { + dir: V, HW: [[1.044,MAIN]], + stretch: {top:[0x2191,SIZE1], ext:[0x23D0,SIZE1], bot:[0x2193,SIZE1]} + }, + 0x21D0: // left double arrow + { + dir: H, HW: [[1,MAIN]], stretch: {left:[0x21D0,MAIN],rep:[0x3D,MAIN]} + }, + 0x21D1: // \Uparrow + { + dir: V, HW: [[.888,MAIN]], stretch: {top:[0x21D1,SIZE1], ext:[0x2016,SIZE1]} + }, + 0x21D2: // right double arrow + { + dir: H, HW: [[1,MAIN]], stretch: {rep:[0x3D,MAIN], right:[0x21D2,MAIN]} + }, + 0x21D3: // \Downarrow + { + dir: V, HW: [[.888,MAIN]], stretch: {ext:[0x2016,SIZE1], bot:[0x21D3,SIZE1]} + }, + 0x21D4: // left-right double arrow + { + dir: H, HW: [[1,MAIN]], + stretch: {left:[0x21D0,MAIN],rep:[0x3D,MAIN], right:[0x21D2,MAIN]} + }, + 0x21D5: // \Updownarrow + { + dir: V, HW: [[1.044,MAIN]], + stretch: {top:[0x21D1,SIZE1], ext:[0x2016,SIZE1], bot:[0x21D3,SIZE1]} + }, + 0x2212: // horizontal line + { + dir: H, HW: [[.611,MAIN]], stretch: {rep:[0x2212,MAIN]} + }, + 0x221A: // \surd + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3,SIZE4]], + stretch: {top:[0xE001,SIZE4], ext:[0xE000,SIZE4], bot:[0x23B7,SIZE4], fullExtenders:true} + }, + 0x2223: // \vert + { + dir: V, HW: [[1,MAIN]], stretch: {ext:[0x2223,MAIN]} + }, + 0x2225: // \Vert + { + dir: V, HW: [[1,MAIN]], stretch: {ext:[0x2225,MAIN]} + }, + 0x2308: // \lceil + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {top:[0x23A1,SIZE4], ext:[0x23A2,SIZE4]} + }, + 0x2309: // \rceil + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {top:[0x23A4,SIZE4], ext:[0x23A5,SIZE4]} + }, + 0x230A: // \lfloor + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {ext:[0x23A2,SIZE4], bot:[0x23A3,SIZE4]} + }, + 0x230B: // \rfloor + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]], + stretch: {ext:[0x23A5,SIZE4], bot:[0x23A6,SIZE4]} + }, + 0x23AA: // \bracevert + { + dir: V, HW: [[.32,SIZE4]], + stretch: {top:[0x23AA,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23AA,SIZE4]} + }, + 0x23B0: // \lmoustache + { + dir: V, HW: [[.989,MAIN]], + stretch: {top:[0x23A7,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23AD,SIZE4]} + }, + 0x23B1: // \rmoustache + { + dir: V, HW: [[.989,MAIN]], + stretch: {top:[0x23AB,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23A9,SIZE4]} + }, + 0x23D0: // vertical line extension + { + dir: V, HW: [[.602,SIZE1],[1,MAIN,null,0x2223]], stretch: {ext:[0x2223,MAIN]} + }, + 0x23DE: // horizontal brace down + { + dir: H, HW: [], + stretch: {min:.9, left:[0xE150,SIZE4], mid:[[0xE153,0xE152],SIZE4], right:[0xE151,SIZE4], rep:[0xE154,SIZE4]} + }, + 0x23DF: // horizontal brace up + { + dir: H, HW: [], + stretch: {min:.9, left:[0xE152,SIZE4], mid:[[0xE151,0xE150],SIZE4], right:[0xE153,SIZE4], rep:[0xE154,SIZE4]} + }, + 0x27E8: // \langle + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]] + }, + 0x27E9: // \rangle + { + dir: V, HW: [[1,MAIN],[1.2,SIZE1],[1.8,SIZE2],[2.4,SIZE3],[3.0,SIZE4]] + }, + 0x27EE: // \lgroup + { + dir: V, HW: [[.989,MAIN]], + stretch: {top:[0x23A7,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23A9,SIZE4]} + }, + 0x27EF: // \rgroup + { + dir: V, HW: [[.989,MAIN]], + stretch: {top:[0x23AB,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23AD,SIZE4]} + }, + 0x002D: {alias: 0x2212, dir:H}, // minus + 0x005E: {alias: 0x02C6, dir:H}, // wide hat + 0x005F: {alias: 0x2212, dir:H}, // low line + 0x007E: {alias: 0x02DC, dir:H}, // wide tilde + 0x02C9: {alias: 0x00AF, dir:H}, // macron + 0x0302: {alias: 0x02C6, dir:H}, // wide hat + 0x0303: {alias: 0x02DC, dir:H}, // wide tilde + 0x030C: {alias: 0x02C7, dir:H}, // wide caron + 0x0332: {alias: 0x2212, dir:H}, // combining low line + 0x2015: {alias: 0x2212, dir:H}, // horizontal line + 0x2017: {alias: 0x2212, dir:H}, // horizontal line + 0x203E: {alias: 0x00AF, dir:H}, // overline + 0x2215: {alias: 0x002F, dir:V}, // division slash + 0x2329: {alias: 0x27E8, dir:V}, // langle + 0x232A: {alias: 0x27E9, dir:V}, // rangle + 0x23AF: {alias: 0x2212, dir:H}, // horizontal line extension + 0x2500: {alias: 0x2212, dir:H}, // horizontal line + 0x2758: {alias: 0x2223, dir:V}, // vertical separator + 0x3008: {alias: 0x27E8, dir:V}, // langle + 0x3009: {alias: 0x27E9, dir:V}, // rangle + 0xFE37: {alias: 0x23DE, dir:H}, // horizontal brace down + 0xFE38: {alias: 0x23DF, dir:H}, // horizontal brace up + + 0x003D: EXTRAH, // equal sign + 0x219E: EXTRAH, // left two-headed arrow + 0x21A0: EXTRAH, // right two-headed arrow + 0x21A4: EXTRAH, // left arrow from bar + 0x21A5: EXTRAV, // up arrow from bar + 0x21A6: EXTRAH, // right arrow from bar + 0x21A7: EXTRAV, // down arrow from bar + 0x21B0: EXTRAV, // up arrow with top leftwards + 0x21B1: EXTRAV, // up arrow with top right + 0x21BC: EXTRAH, // left harpoon with barb up + 0x21BD: EXTRAH, // left harpoon with barb down + 0x21BE: EXTRAV, // up harpoon with barb right + 0x21BF: EXTRAV, // up harpoon with barb left + 0x21C0: EXTRAH, // right harpoon with barb up + 0x21C1: EXTRAH, // right harpoon with barb down + 0x21C2: EXTRAV, // down harpoon with barb right + 0x21C3: EXTRAV, // down harpoon with barb left + 0x21DA: EXTRAH, // left triple arrow + 0x21DB: EXTRAH, // right triple arrow + 0x23B4: EXTRAH, // top square bracket + 0x23B5: EXTRAH, // bottom square bracket + 0x23DC: EXTRAH, // top paren + 0x23DD: EXTRAH, // bottom paren + 0x23E0: EXTRAH, // top tortoise shell + 0x23E1: EXTRAH, // bottom tortoise shell + 0x2906: EXTRAH, // leftwards double arrow from bar + 0x2907: EXTRAH, // rightwards double arrow from bar + 0x294E: EXTRAH, // left barb up right barb up harpoon + 0x294F: EXTRAV, // up barb right down barb right harpoon + 0x2950: EXTRAH, // left barb dow right barb down harpoon + 0x2951: EXTRAV, // up barb left down barb left harpoon + 0x295A: EXTRAH, // leftwards harpoon with barb up from bar + 0x295B: EXTRAH, // rightwards harpoon with barb up from bar + 0x295C: EXTRAV, // up harpoon with barb right from bar + 0x295D: EXTRAV, // down harpoon with barb right from bar + 0x295E: EXTRAH, // leftwards harpoon with barb down from bar + 0x295F: EXTRAH, // rightwards harpoon with barb down from bar + 0x2960: EXTRAV, // up harpoon with barb left from bar + 0x2961: EXTRAV, // down harpoon with barb left from bar + 0x27F5: {alias: 0x2190, dir:H}, // long left arrow + 0x27F6: {alias: 0x2192, dir:H}, // long right arrow + 0x27F7: {alias: 0x2194, dir:H}, // long left-right arrow + 0x27F8: {alias: 0x21D0, dir:H}, // long left double arrow + 0x27F9: {alias: 0x21D2, dir:H}, // long right double arrow + 0x27FA: {alias: 0x21D4, dir:H}, // long left-right double arrow + 0x27FB: {alias: 0x21A4, dir:H}, // long left arrow from bar + 0x27FC: {alias: 0x21A6, dir:H}, // long right arrow from bar + 0x27FD: {alias: 0x2906, dir:H}, // long left double arrow from bar + 0x27FE: {alias: 0x2907, dir:H} // long right double arrow from bar + } + } + }); + + // + // Handle error with reversed glyphs for \bigcap and \bigcup in version 1 of fonts + // + HTMLCSS.Font.oldLoadComplete = HTMLCSS.Font.loadComplete; + HTMLCSS.Font.loadComplete = function (font,n,done,status) { + if (n != null) {this.oldLoadComplete(font,n,done,status)} + if (font.family === SIZE1 || font.family === SIZE2) { + if (font.version === 1) { + HTMLCSS.FONTDATA.VARIANT["-largeOp"].remap = {0x22C2: 0x22C3, 0x22C3: 0x22C2}; + HTMLCSS.FONTDATA.VARIANT["-smallOp"].remap = {0x22C2: 0x22C3, 0x22C3: 0x22C2}; + } + } + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Caligraphic'] = { + directory: 'Caligraphic/Regular', + family: 'MathJax_Caligraphic', + testString: "MATHJAX CALIGRAPHIC", + skew: { + 0x41: 0.194, + 0x42: 0.139, + 0x43: 0.139, + 0x44: 0.0833, + 0x45: 0.111, + 0x46: 0.111, + 0x47: 0.111, + 0x48: 0.111, + 0x49: 0.0278, + 0x4A: 0.167, + 0x4B: 0.0556, + 0x4C: 0.139, + 0x4D: 0.139, + 0x4E: 0.0833, + 0x4F: 0.111, + 0x50: 0.0833, + 0x51: 0.111, + 0x52: 0.0833, + 0x53: 0.139, + 0x54: 0.0278, + 0x55: 0.0833, + 0x56: 0.0278, + 0x57: 0.0833, + 0x58: 0.139, + 0x59: 0.0833, + 0x5A: 0.139 + }, + 0x20: [0,0,250,0,0], // SPACE + 0x30: [452,22,500,39,460], // DIGIT ZERO + 0x31: [453,0,500,86,426], // DIGIT ONE + 0x32: [453,0,500,44,449], // DIGIT TWO + 0x33: [452,216,500,42,456], // DIGIT THREE + 0x34: [464,194,500,28,471], // DIGIT FOUR + 0x35: [453,216,500,50,448], // DIGIT FIVE + 0x36: [665,22,500,42,456], // DIGIT SIX + 0x37: [463,216,500,55,485], // DIGIT SEVEN + 0x38: [666,21,500,43,456], // DIGIT EIGHT + 0x39: [453,216,500,42,457], // DIGIT NINE + 0x41: [728,50,798,30,819], // LATIN CAPITAL LETTER A + 0x42: [705,22,657,32,664], // LATIN CAPITAL LETTER B + 0x43: [705,25,527,12,533], // LATIN CAPITAL LETTER C + 0x44: [683,0,771,19,766], // LATIN CAPITAL LETTER D + 0x45: [705,22,528,30,564], // LATIN CAPITAL LETTER E + 0x46: [683,32,719,18,829], // LATIN CAPITAL LETTER F + 0x47: [704,119,595,44,599], // LATIN CAPITAL LETTER G + 0x48: [683,48,845,18,803], // LATIN CAPITAL LETTER H + 0x49: [683,0,545,-30,642], // LATIN CAPITAL LETTER I + 0x4A: [683,119,678,47,839], // LATIN CAPITAL LETTER J + 0x4B: [705,22,762,32,732], // LATIN CAPITAL LETTER K + 0x4C: [705,22,690,32,656], // LATIN CAPITAL LETTER L + 0x4D: [705,50,1201,28,1137], // LATIN CAPITAL LETTER M + 0x4E: [789,50,820,-27,979], // LATIN CAPITAL LETTER N + 0x4F: [705,22,796,58,777], // LATIN CAPITAL LETTER O + 0x50: [683,57,696,19,733], // LATIN CAPITAL LETTER P + 0x51: [705,131,817,114,787], // LATIN CAPITAL LETTER Q + 0x52: [682,22,848,19,837], // LATIN CAPITAL LETTER R + 0x53: [705,22,606,18,642], // LATIN CAPITAL LETTER S + 0x54: [717,68,545,34,833], // LATIN CAPITAL LETTER T + 0x55: [683,28,626,-17,687], // LATIN CAPITAL LETTER U + 0x56: [683,52,613,25,658], // LATIN CAPITAL LETTER V + 0x57: [683,53,988,25,1034], // LATIN CAPITAL LETTER W + 0x58: [683,0,713,52,807], // LATIN CAPITAL LETTER X + 0x59: [683,143,668,31,714], // LATIN CAPITAL LETTER Y + 0x5A: [683,0,725,37,767], // LATIN CAPITAL LETTER Z + 0xA0: [0,0,250,0,0] // NO-BREAK SPACE + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Main-bold'] = { + directory: 'Main/Bold', + family: 'MathJax_Main', + weight: 'bold', + testString: "MathJax Main ^ \u210F \u2223", + skew: { + 0x131: 0.0319, + 0x237: 0.0958, + 0x210F: -0.0319, + 0x2113: 0.128, + 0x2202: 0.0958 + }, + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2190,0x21FF,"Arrows"], + [0x2200,0x22FF,"MathOperators"], + [0x2300,0x23FF,"MiscTechnical"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x27C0,0x27EF,"MiscMathSymbolsA"], + [0x27F0,0x27FF,"SupplementalArrowsA"], + [0x2A00,0x2AFF,"SuppMathOperators"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [705,-1,350,89,260], // EXCLAMATION MARK + 0x22: [694,-329,603,38,492], // QUOTATION MARK + 0x23: [694,193,958,64,893], // NUMBER SIGN + 0x24: [750,56,575,64,510], // DOLLAR SIGN + 0x25: [750,56,958,65,893], // PERCENT SIGN + 0x26: [705,11,894,48,836], // AMPERSAND + 0x27: [694,-329,319,74,261], // APOSTROPHE + 0x28: [750,249,447,103,382], // LEFT PARENTHESIS + 0x29: [750,249,447,64,343], // RIGHT PARENTHESIS + 0x2A: [750,-306,575,73,501], // ASTERISK + 0x2B: [633,131,894,64,829], // PLUS SIGN + 0x2C: [171,194,319,74,258], // COMMA + 0x2D: [278,-166,383,13,318], // HYPHEN-MINUS + 0x2E: [171,-1,319,74,245], // FULL STOP + 0x2F: [750,250,575,63,511], // SOLIDUS + 0x30: [654,10,575,45,529], // DIGIT ZERO + 0x31: [655,0,575,80,494], // DIGIT ONE + 0x32: [654,0,575,57,517], // DIGIT TWO + 0x33: [655,11,575,47,526], // DIGIT THREE + 0x34: [656,0,575,32,542], // DIGIT FOUR + 0x35: [655,11,575,57,517], // DIGIT FIVE + 0x36: [655,11,575,48,526], // DIGIT SIX + 0x37: [676,11,575,64,558], // DIGIT SEVEN + 0x38: [654,11,575,48,526], // DIGIT EIGHT + 0x39: [654,11,575,48,526], // DIGIT NINE + 0x3A: [444,-1,319,74,245], // COLON + 0x3B: [444,194,319,74,248], // SEMICOLON + 0x3C: [587,85,894,96,797], // LESS-THAN SIGN + 0x3D: [393,-109,894,64,829], // EQUALS SIGN + 0x3E: [587,85,894,96,797], // GREATER-THAN SIGN + 0x3F: [700,-1,543,65,478], // QUESTION MARK + 0x40: [699,6,894,64,829], // COMMERCIAL AT + 0x41: [698,0,869,40,828], // LATIN CAPITAL LETTER A + 0x42: [686,0,818,39,752], // LATIN CAPITAL LETTER B + 0x43: [697,11,831,64,766], // LATIN CAPITAL LETTER C + 0x44: [686,0,882,39,817], // LATIN CAPITAL LETTER D + 0x45: [680,0,756,39,723], // LATIN CAPITAL LETTER E + 0x46: [680,0,724,39,675], // LATIN CAPITAL LETTER F + 0x47: [697,10,904,64,845], // LATIN CAPITAL LETTER G + 0x48: [686,0,900,39,860], // LATIN CAPITAL LETTER H + 0x49: [686,0,436,25,410], // LATIN CAPITAL LETTER I + 0x4A: [686,11,594,8,527], // LATIN CAPITAL LETTER J + 0x4B: [686,0,901,39,852], // LATIN CAPITAL LETTER K + 0x4C: [686,0,692,39,643], // LATIN CAPITAL LETTER L + 0x4D: [686,0,1092,39,1052], // LATIN CAPITAL LETTER M + 0x4E: [686,0,900,39,860], // LATIN CAPITAL LETTER N + 0x4F: [696,10,864,64,798], // LATIN CAPITAL LETTER O + 0x50: [686,0,786,39,721], // LATIN CAPITAL LETTER P + 0x51: [696,193,864,64,805], // LATIN CAPITAL LETTER Q + 0x52: [686,11,862,39,858], // LATIN CAPITAL LETTER R + 0x53: [697,11,639,64,574], // LATIN CAPITAL LETTER S + 0x54: [675,0,800,41,758], // LATIN CAPITAL LETTER T + 0x55: [686,11,885,39,845], // LATIN CAPITAL LETTER U + 0x56: [686,7,869,25,843], // LATIN CAPITAL LETTER V + 0x57: [686,7,1189,24,1164], // LATIN CAPITAL LETTER W + 0x58: [686,0,869,33,835], // LATIN CAPITAL LETTER X + 0x59: [686,0,869,19,849], // LATIN CAPITAL LETTER Y + 0x5A: [686,0,703,64,645], // LATIN CAPITAL LETTER Z + 0x5B: [750,250,319,128,293], // LEFT SQUARE BRACKET + 0x5C: [750,250,575,63,511], // REVERSE SOLIDUS + 0x5D: [750,250,319,25,190], // RIGHT SQUARE BRACKET + 0x5E: [694,-520,575,126,448], // CIRCUMFLEX ACCENT + 0x5F: [-10,61,575,0,574], // LOW LINE + 0x60: [706,-503,575,114,338], // GRAVE ACCENT + 0x61: [453,6,559,32,558], // LATIN SMALL LETTER A + 0x62: [694,6,639,29,600], // LATIN SMALL LETTER B + 0x63: [453,6,511,39,478], // LATIN SMALL LETTER C + 0x64: [694,6,639,38,609], // LATIN SMALL LETTER D + 0x65: [452,6,527,32,494], // LATIN SMALL LETTER E + 0x66: [700,0,351,40,452], // LATIN SMALL LETTER F + 0x67: [455,201,575,30,558], // LATIN SMALL LETTER G + 0x68: [694,0,639,37,623], // LATIN SMALL LETTER H + 0x69: [695,0,319,40,294], // LATIN SMALL LETTER I + 0x6A: [695,200,351,-71,274], // LATIN SMALL LETTER J + 0x6B: [694,0,607,29,587], // LATIN SMALL LETTER K + 0x6C: [694,0,319,40,301], // LATIN SMALL LETTER L + 0x6D: [450,0,958,37,942], // LATIN SMALL LETTER M + 0x6E: [450,0,639,37,623], // LATIN SMALL LETTER N + 0x6F: [452,5,575,32,542], // LATIN SMALL LETTER O + 0x70: [450,194,639,29,600], // LATIN SMALL LETTER P + 0x71: [450,194,607,38,609], // LATIN SMALL LETTER Q + 0x72: [450,0,474,29,442], // LATIN SMALL LETTER R + 0x73: [453,6,454,38,414], // LATIN SMALL LETTER S + 0x74: [635,5,447,21,382], // LATIN SMALL LETTER T + 0x75: [450,6,639,37,623], // LATIN SMALL LETTER U + 0x76: [444,3,607,26,580], // LATIN SMALL LETTER V + 0x77: [444,4,831,25,805], // LATIN SMALL LETTER W + 0x78: [444,0,607,21,586], // LATIN SMALL LETTER X + 0x79: [444,200,607,23,580], // LATIN SMALL LETTER Y + 0x7A: [444,0,511,32,462], // LATIN SMALL LETTER Z + 0x7B: [750,250,575,70,504], // LEFT CURLY BRACKET + 0x7C: [750,249,319,129,190], // VERTICAL LINE + 0x7D: [750,250,575,70,504], // RIGHT CURLY BRACKET + 0x7E: [344,-202,575,96,478], // TILDE + 0x393: [680,0,692,39,643], // GREEK CAPITAL LETTER GAMMA + 0x394: [698,0,958,56,901], // GREEK CAPITAL LETTER DELTA + 0x398: [696,10,894,64,829], // GREEK CAPITAL LETTER THETA + 0x39B: [698,0,806,40,765], // GREEK CAPITAL LETTER LAMDA + 0x39E: [675,0,767,48,718], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,900,39,860], // GREEK CAPITAL LETTER PI + 0x3A3: [686,0,831,63,766], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [697,0,894,64,829], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [686,0,831,64,766], // GREEK CAPITAL LETTER PHI + 0x3A8: [686,0,894,64,829], // GREEK CAPITAL LETTER PSI + 0x3A9: [696,0,831,51,779] // GREEK CAPITAL LETTER OMEGA + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Main-italic'] = { + directory: 'Main/Italic', + family: 'MathJax_Main', + style: 'italic', + testString: "MathJax Main ^ \u210F \u2223", + Ranges: [ + [0xA0,0xFF,"Latin1Supplement"], + [0x300,0x36F,"CombDiacritMarks"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x2100,0x214F,"LetterlikeSymbols"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [716,0,307,107,380], // EXCLAMATION MARK + 0x22: [694,-379,514,176,538], // QUOTATION MARK + 0x23: [694,194,818,115,828], // NUMBER SIGN + 0x25: [750,56,818,145,847], // PERCENT SIGN + 0x26: [716,22,767,127,802], // AMPERSAND + 0x27: [694,-379,307,213,377], // APOSTROPHE + 0x28: [750,250,409,144,517], // LEFT PARENTHESIS + 0x29: [750,250,409,17,390], // RIGHT PARENTHESIS + 0x2A: [750,-320,511,195,584], // ASTERISK + 0x2B: [557,57,767,139,753], // PLUS SIGN + 0x2C: [121,194,307,69,232], // COMMA + 0x2D: [251,-180,358,84,341], // HYPHEN-MINUS + 0x2E: [121,0,307,107,231], // FULL STOP + 0x2F: [750,250,511,19,617], // SOLIDUS + 0x30: [665,21,511,110,562], // DIGIT ZERO + 0x31: [666,0,511,110,468], // DIGIT ONE + 0x32: [666,22,511,76,551], // DIGIT TWO + 0x33: [666,22,511,96,562], // DIGIT THREE + 0x34: [666,194,511,46,478], // DIGIT FOUR + 0x35: [666,22,511,106,567], // DIGIT FIVE + 0x36: [665,22,511,120,565], // DIGIT SIX + 0x37: [666,22,511,136,634], // DIGIT SEVEN + 0x38: [666,21,511,99,553], // DIGIT EIGHT + 0x39: [666,22,511,107,553], // DIGIT NINE + 0x3A: [431,0,307,107,308], // COLON + 0x3B: [431,194,307,70,308], // SEMICOLON + 0x3D: [367,-133,767,116,776], // EQUALS SIGN + 0x3F: [716,0,511,195,551], // QUESTION MARK + 0x40: [705,11,767,152,789], // COMMERCIAL AT + 0x41: [716,0,743,58,696], // LATIN CAPITAL LETTER A + 0x42: [683,0,704,57,732], // LATIN CAPITAL LETTER B + 0x43: [705,21,716,150,812], // LATIN CAPITAL LETTER C + 0x44: [683,0,755,56,775], // LATIN CAPITAL LETTER D + 0x45: [680,0,678,54,743], // LATIN CAPITAL LETTER E + 0x46: [680,-1,653,54,731], // LATIN CAPITAL LETTER F + 0x47: [705,22,774,150,812], // LATIN CAPITAL LETTER G + 0x48: [683,0,743,54,860], // LATIN CAPITAL LETTER H + 0x49: [683,0,386,49,508], // LATIN CAPITAL LETTER I + 0x4A: [683,21,525,78,622], // LATIN CAPITAL LETTER J + 0x4B: [683,0,769,54,859], // LATIN CAPITAL LETTER K + 0x4C: [683,0,627,54,628], // LATIN CAPITAL LETTER L + 0x4D: [683,0,897,58,1010], // LATIN CAPITAL LETTER M + 0x4E: [683,0,743,54,860], // LATIN CAPITAL LETTER N + 0x4F: [704,22,767,149,788], // LATIN CAPITAL LETTER O + 0x50: [683,0,678,55,729], // LATIN CAPITAL LETTER P + 0x51: [704,194,767,149,788], // LATIN CAPITAL LETTER Q + 0x52: [683,22,729,55,723], // LATIN CAPITAL LETTER R + 0x53: [705,22,562,74,633], // LATIN CAPITAL LETTER S + 0x54: [677,0,716,171,806], // LATIN CAPITAL LETTER T + 0x55: [683,22,743,194,860], // LATIN CAPITAL LETTER U + 0x56: [683,22,743,205,868], // LATIN CAPITAL LETTER V + 0x57: [683,22,999,205,1124], // LATIN CAPITAL LETTER W + 0x58: [683,0,743,50,825], // LATIN CAPITAL LETTER X + 0x59: [683,0,743,198,875], // LATIN CAPITAL LETTER Y + 0x5A: [683,0,613,80,704], // LATIN CAPITAL LETTER Z + 0x5B: [750,250,307,73,446], // LEFT SQUARE BRACKET + 0x5D: [750,250,307,-14,359], // RIGHT SQUARE BRACKET + 0x5E: [694,-527,511,260,528], // CIRCUMFLEX ACCENT + 0x5F: [-25,62,511,91,554], // LOW LINE + 0x61: [442,11,511,101,543], // LATIN SMALL LETTER A + 0x62: [694,11,460,108,467], // LATIN SMALL LETTER B + 0x63: [441,10,460,103,469], // LATIN SMALL LETTER C + 0x64: [694,11,511,101,567], // LATIN SMALL LETTER D + 0x65: [442,10,460,107,470], // LATIN SMALL LETTER E + 0x66: [705,204,307,-23,450], // LATIN SMALL LETTER F + 0x67: [442,205,460,46,494], // LATIN SMALL LETTER G + 0x68: [694,11,511,69,544], // LATIN SMALL LETTER H + 0x69: [656,10,307,75,340], // LATIN SMALL LETTER I + 0x6A: [656,204,307,-32,364], // LATIN SMALL LETTER J + 0x6B: [694,11,460,69,498], // LATIN SMALL LETTER K + 0x6C: [694,11,256,87,312], // LATIN SMALL LETTER L + 0x6D: [442,11,818,75,851], // LATIN SMALL LETTER M + 0x6E: [442,11,562,75,595], // LATIN SMALL LETTER N + 0x6F: [442,11,511,103,517], // LATIN SMALL LETTER O + 0x70: [442,194,511,6,518], // LATIN SMALL LETTER P + 0x71: [442,194,460,101,504], // LATIN SMALL LETTER Q + 0x72: [442,11,422,75,484], // LATIN SMALL LETTER R + 0x73: [442,11,409,76,418], // LATIN SMALL LETTER S + 0x74: [626,11,332,87,373], // LATIN SMALL LETTER T + 0x75: [441,11,537,75,570], // LATIN SMALL LETTER U + 0x76: [443,10,460,75,492], // LATIN SMALL LETTER V + 0x77: [443,11,664,75,696], // LATIN SMALL LETTER W + 0x78: [442,11,464,58,513], // LATIN SMALL LETTER X + 0x79: [441,205,486,75,522], // LATIN SMALL LETTER Y + 0x7A: [442,11,409,54,466], // LATIN SMALL LETTER Z + 0x7E: [318,-208,511,246,571], // TILDE + 0xA3: [714,11,769,88,699], // POUND SIGN + 0x131: [441,10,307,75,340], // LATIN SMALL LETTER DOTLESS I + 0x237: [442,204,332,-32,327], // LATIN SMALL LETTER DOTLESS J + 0x393: [680,0,627,54,705], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,818,70,751], // GREEK CAPITAL LETTER DELTA + 0x398: [704,22,767,149,788], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,692,58,646], // GREEK CAPITAL LETTER LAMDA + 0x39E: [677,0,664,74,754], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,743,54,859], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,716,80,782], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,767,213,832], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,716,159,728], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,767,207,824], // GREEK CAPITAL LETTER PSI + 0x3A9: [705,0,716,100,759] // GREEK CAPITAL LETTER OMEGA + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Main'] = { + directory: 'Main/Regular', + family: 'MathJax_Main', + testString: "MathJax Main ^ \u210F \u2223", + skew: { + 0x131: 0.0278, + 0x237: 0.0833, + 0x2113: 0.111, + 0x2118: 0.111, + 0x2202: 0.0833 + }, + Ranges: [ + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"] + ], + 0x20: [0,0,250,0,0], // SPACE + 0x21: [716,-1,278,78,199], // EXCLAMATION MARK + 0x22: [694,-379,500,34,372], // QUOTATION MARK + 0x23: [694,194,833,56,777], // NUMBER SIGN + 0x24: [750,56,500,55,444], // DOLLAR SIGN + 0x25: [750,56,833,56,776], // PERCENT SIGN + 0x26: [716,22,778,42,727], // AMPERSAND + 0x27: [694,-379,278,78,212], // APOSTROPHE + 0x28: [750,250,389,94,333], // LEFT PARENTHESIS + 0x29: [750,250,389,55,294], // RIGHT PARENTHESIS + 0x2A: [750,-320,500,64,435], // ASTERISK + 0x2B: [583,82,778,56,722], // PLUS SIGN + 0x2C: [121,194,278,78,210], // COMMA + 0x2D: [252,-179,333,11,277], // HYPHEN-MINUS + 0x2E: [120,0,278,78,199], // FULL STOP + 0x2F: [750,250,500,56,445], // SOLIDUS + 0x30: [666,22,500,39,460], // DIGIT ZERO + 0x31: [666,0,500,83,427], // DIGIT ONE + 0x32: [666,0,500,50,449], // DIGIT TWO + 0x33: [665,22,500,42,457], // DIGIT THREE + 0x34: [677,0,500,28,471], // DIGIT FOUR + 0x35: [666,22,500,50,449], // DIGIT FIVE + 0x36: [666,22,500,42,456], // DIGIT SIX + 0x37: [676,22,500,55,485], // DIGIT SEVEN + 0x38: [666,22,500,43,457], // DIGIT EIGHT + 0x39: [666,22,500,42,456], // DIGIT NINE + 0x3A: [430,0,278,78,199], // COLON + 0x3B: [430,194,278,78,202], // SEMICOLON + 0x3C: [540,40,778,83,694], // LESS-THAN SIGN + 0x3D: [367,-133,778,56,722], // EQUALS SIGN + 0x3E: [540,40,778,83,694], // GREATER-THAN SIGN + 0x3F: [705,-1,472,55,416], // QUESTION MARK + 0x40: [705,11,778,56,722], // COMMERCIAL AT + 0x41: [716,0,750,32,717], // LATIN CAPITAL LETTER A + 0x42: [683,0,708,28,651], // LATIN CAPITAL LETTER B + 0x43: [705,21,722,56,666], // LATIN CAPITAL LETTER C + 0x44: [683,0,764,27,708], // LATIN CAPITAL LETTER D + 0x45: [680,0,681,25,652], // LATIN CAPITAL LETTER E + 0x46: [680,0,653,25,610], // LATIN CAPITAL LETTER F + 0x47: [705,22,785,56,735], // LATIN CAPITAL LETTER G + 0x48: [683,0,750,25,724], // LATIN CAPITAL LETTER H + 0x49: [683,0,361,21,339], // LATIN CAPITAL LETTER I + 0x4A: [683,22,514,25,465], // LATIN CAPITAL LETTER J + 0x4B: [683,0,778,25,736], // LATIN CAPITAL LETTER K + 0x4C: [683,0,625,25,582], // LATIN CAPITAL LETTER L + 0x4D: [683,0,917,29,887], // LATIN CAPITAL LETTER M + 0x4E: [683,0,750,25,724], // LATIN CAPITAL LETTER N + 0x4F: [705,22,778,56,722], // LATIN CAPITAL LETTER O + 0x50: [683,0,681,27,624], // LATIN CAPITAL LETTER P + 0x51: [705,193,778,56,728], // LATIN CAPITAL LETTER Q + 0x52: [683,22,736,27,732], // LATIN CAPITAL LETTER R + 0x53: [705,22,556,55,500], // LATIN CAPITAL LETTER S + 0x54: [677,0,722,36,685], // LATIN CAPITAL LETTER T + 0x55: [683,22,750,25,724], // LATIN CAPITAL LETTER U + 0x56: [683,22,750,19,730], // LATIN CAPITAL LETTER V + 0x57: [683,22,1028,18,1009], // LATIN CAPITAL LETTER W + 0x58: [683,0,750,23,726], // LATIN CAPITAL LETTER X + 0x59: [683,0,750,11,738], // LATIN CAPITAL LETTER Y + 0x5A: [683,0,611,55,560], // LATIN CAPITAL LETTER Z + 0x5B: [750,250,278,118,255], // LEFT SQUARE BRACKET + 0x5C: [750,250,500,56,444], // REVERSE SOLIDUS + 0x5D: [750,250,278,22,159], // RIGHT SQUARE BRACKET + 0x5E: [694,-531,500,112,387], // CIRCUMFLEX ACCENT + 0x5F: [-25,62,500,0,499], // LOW LINE + 0x60: [699,-505,500,106,295], // GRAVE ACCENT + 0x61: [448,11,500,34,493], // LATIN SMALL LETTER A + 0x62: [694,11,556,20,522], // LATIN SMALL LETTER B + 0x63: [448,11,444,34,415], // LATIN SMALL LETTER C + 0x64: [694,11,556,34,535], // LATIN SMALL LETTER D + 0x65: [448,11,444,28,415], // LATIN SMALL LETTER E + 0x66: [705,0,306,26,372], // LATIN SMALL LETTER F + 0x67: [453,206,500,29,485], // LATIN SMALL LETTER G + 0x68: [694,0,556,25,542], // LATIN SMALL LETTER H + 0x69: [669,0,278,26,255], // LATIN SMALL LETTER I + 0x6A: [669,205,306,-55,218], // LATIN SMALL LETTER J + 0x6B: [694,0,528,20,511], // LATIN SMALL LETTER K + 0x6C: [694,0,278,26,263], // LATIN SMALL LETTER L + 0x6D: [442,0,833,25,819], // LATIN SMALL LETTER M + 0x6E: [442,0,556,25,542], // LATIN SMALL LETTER N + 0x6F: [448,10,500,28,471], // LATIN SMALL LETTER O + 0x70: [442,194,556,20,522], // LATIN SMALL LETTER P + 0x71: [442,194,528,33,535], // LATIN SMALL LETTER Q + 0x72: [442,0,392,20,364], // LATIN SMALL LETTER R + 0x73: [448,11,394,33,359], // LATIN SMALL LETTER S + 0x74: [615,10,389,18,333], // LATIN SMALL LETTER T + 0x75: [442,11,556,25,542], // LATIN SMALL LETTER U + 0x76: [431,11,528,19,508], // LATIN SMALL LETTER V + 0x77: [431,11,722,18,703], // LATIN SMALL LETTER W + 0x78: [431,0,528,11,516], // LATIN SMALL LETTER X + 0x79: [431,204,528,19,508], // LATIN SMALL LETTER Y + 0x7A: [431,0,444,28,401], // LATIN SMALL LETTER Z + 0x7B: [750,250,500,65,434], // LEFT CURLY BRACKET + 0x7C: [750,249,278,119,159], // VERTICAL LINE + 0x7D: [750,250,500,65,434], // RIGHT CURLY BRACKET + 0x7E: [318,-215,500,83,416], // TILDE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0xA8: [669,-554,500,95,404], // DIAERESIS + 0xAC: [356,-89,667,56,611], // NOT SIGN + 0xAF: [590,-544,500,69,430], // MACRON + 0xB0: [715,-542,500,147,352], // DEGREE SIGN + 0xB1: [666,0,778,56,722], // PLUS-MINUS SIGN + 0xB4: [699,-505,500,203,393], // ACUTE ACCENT + 0xD7: [491,-9,778,147,630], // MULTIPLICATION SIGN + 0xF7: [537,36,778,56,721], // DIVISION SIGN + 0x131: [442,0,278,26,255], // LATIN SMALL LETTER DOTLESS I + 0x237: [442,205,306,-55,218], // LATIN SMALL LETTER DOTLESS J + 0x2C6: [694,-531,500,112,387], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C7: [644,-513,500,114,385], // CARON + 0x2C9: [590,-544,500,69,430], // MODIFIER LETTER MACRON + 0x2CA: [699,-505,500,203,393], // MODIFIER LETTER ACUTE ACCENT + 0x2CB: [699,-505,500,106,295], // MODIFIER LETTER GRAVE ACCENT + 0x2D8: [694,-515,500,92,407], // BREVE + 0x2D9: [669,-549,500,190,309], // DOT ABOVE + 0x2DC: [668,-565,500,83,416], // SMALL TILDE + 0x393: [680,0,625,25,582], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,833,46,786], // GREEK CAPITAL LETTER DELTA + 0x398: [705,22,778,56,722], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,694,32,661], // GREEK CAPITAL LETTER LAMDA + 0x39E: [677,0,667,42,624], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,750,25,724], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,722,55,666], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,778,55,722], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,722,56,665], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,778,55,722], // GREEK CAPITAL LETTER PSI + 0x3A9: [704,0,722,44,677], // GREEK CAPITAL LETTER OMEGA + 0x2002: [0,0,500,0,0], // ?? + 0x2003: [0,0,999,0,0], // ?? + 0x2004: [0,0,333,0,0], // ?? + 0x2005: [0,0,250,0,0], // ?? + 0x2006: [0,0,167,0,0], // ?? + 0x2009: [0,0,167,0,0], // ?? + 0x200A: [0,0,83,0,0], // ?? + 0x2013: [285,-248,500,0,499], // EN DASH + 0x2014: [285,-248,1000,0,999], // EM DASH + 0x2018: [694,-379,278,64,198], // LEFT SINGLE QUOTATION MARK + 0x2019: [694,-379,278,78,212], // RIGHT SINGLE QUOTATION MARK + 0x201C: [694,-379,500,128,466], // LEFT DOUBLE QUOTATION MARK + 0x201D: [694,-379,500,34,372], // RIGHT DOUBLE QUOTATION MARK + 0x2020: [705,216,444,55,389], // DAGGER + 0x2021: [705,205,444,55,389], // DOUBLE DAGGER + 0x2026: [120,0,1172,78,1093], // HORIZONTAL ELLIPSIS + 0x2032: [560,-43,275,30,262], // PRIME + 0x20D7: [714,-516,0,-471,-29], // COMBINING RIGHT ARROW ABOVE + 0x210F: [695,13,540,42,562], // stix-/hbar - Planck's over 2pi + 0x2111: [705,10,722,55,693], // BLACK-LETTER CAPITAL I + 0x2113: [705,20,417,6,397], // SCRIPT SMALL L + 0x2118: [453,216,636,67,625], // SCRIPT CAPITAL P + 0x211C: [716,22,722,40,715], // BLACK-LETTER CAPITAL R + 0x2135: [694,0,611,55,555], // ALEF SYMBOL + 0x2190: [511,11,1000,55,944], // LEFTWARDS ARROW + 0x2191: [694,193,500,17,483], // UPWARDS ARROW + 0x2192: [511,11,1000,56,944], // RIGHTWARDS ARROW + 0x2193: [694,194,500,17,483], // DOWNWARDS ARROW + 0x2194: [511,11,1000,55,944], // LEFT RIGHT ARROW + 0x2195: [772,272,500,17,483], // UP DOWN ARROW + 0x2196: [720,195,1000,29,944], // NORTH WEST ARROW + 0x2197: [720,195,1000,55,970], // NORTH EAST ARROW + 0x2198: [695,220,1000,55,970], // SOUTH EAST ARROW + 0x2199: [695,220,1000,29,944], // SOUTH WEST ARROW + 0x21A6: [511,11,1000,55,944], // RIGHTWARDS ARROW FROM BAR + 0x21A9: [511,11,1126,55,1070], // LEFTWARDS ARROW WITH HOOK + 0x21AA: [511,11,1126,55,1070], // RIGHTWARDS ARROW WITH HOOK + 0x21BC: [511,-230,1000,55,944], // LEFTWARDS HARPOON WITH BARB UPWARDS + 0x21BD: [270,11,1000,55,944], // LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x21C0: [511,-230,1000,56,944], // RIGHTWARDS HARPOON WITH BARB UPWARDS + 0x21C1: [270,11,1000,56,944], // RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x21CC: [671,11,1000,55,944], // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21D0: [525,24,1000,56,944], // LEFTWARDS DOUBLE ARROW + 0x21D1: [694,194,611,31,579], // UPWARDS DOUBLE ARROW + 0x21D2: [525,24,1000,56,944], // RIGHTWARDS DOUBLE ARROW + 0x21D3: [694,194,611,31,579], // DOWNWARDS DOUBLE ARROW + 0x21D4: [526,25,1000,34,966], // LEFT RIGHT DOUBLE ARROW + 0x21D5: [772,272,611,31,579], // UP DOWN DOUBLE ARROW + 0x2200: [694,22,556,0,556], // FOR ALL + 0x2202: [715,22,531,42,566], // PARTIAL DIFFERENTIAL + 0x2203: [694,0,556,56,500], // THERE EXISTS + 0x2205: [772,78,500,39,460], // EMPTY SET + 0x2207: [683,33,833,46,786], // NABLA + 0x2208: [540,40,667,84,583], // ELEMENT OF + 0x2209: [716,215,667,84,583], // stix-negated (vert) set membership, variant + 0x220B: [540,40,667,83,582], // CONTAINS AS MEMBER + 0x2212: [270,-230,778,84,694], // MINUS SIGN + 0x2213: [500,166,778,56,722], // MINUS-OR-PLUS SIGN + 0x2215: [750,250,500,56,445], // DIVISION SLASH + 0x2216: [750,250,500,56,444], // SET MINUS + 0x2217: [465,-35,500,64,435], // ASTERISK OPERATOR + 0x2218: [444,-55,500,55,444], // RING OPERATOR + 0x2219: [444,-55,500,55,444], // BULLET OPERATOR + 0x221A: [800,200,833,72,853], // SQUARE ROOT + 0x221D: [442,11,778,56,722], // PROPORTIONAL TO + 0x221E: [442,11,1000,55,944], // INFINITY + 0x2220: [694,0,722,55,666], // ANGLE + 0x2223: [750,249,278,119,159], // DIVIDES + 0x2225: [750,250,500,132,367], // PARALLEL TO + 0x2227: [598,22,667,55,611], // LOGICAL AND + 0x2228: [598,22,667,55,611], // LOGICAL OR + 0x2229: [598,22,667,55,611], // stix-intersection, serifs + 0x222A: [598,22,667,55,611], // stix-union, serifs + 0x222B: [716,216,417,55,472], // INTEGRAL + 0x223C: [367,-133,778,55,722], // TILDE OPERATOR + 0x2240: [583,83,278,55,222], // WREATH PRODUCT + 0x2243: [464,-36,778,55,722], // ASYMPTOTICALLY EQUAL TO + 0x2245: [589,-22,1000,55,722], // APPROXIMATELY EQUAL TO + 0x2248: [483,-55,778,55,722], // ALMOST EQUAL TO + 0x224D: [484,-16,778,55,722], // EQUIVALENT TO + 0x2250: [670,-133,778,56,722], // APPROACHES THE LIMIT + 0x2260: [716,215,778,56,722], // stix-not (vert) equals + 0x2261: [464,-36,778,56,722], // IDENTICAL TO + 0x2264: [636,138,778,83,694], // LESS-THAN OR EQUAL TO + 0x2265: [636,138,778,83,694], // GREATER-THAN OR EQUAL TO + 0x226A: [568,67,1000,56,944], // MUCH LESS-THAN + 0x226B: [567,67,1000,55,944], // MUCH GREATER-THAN + 0x227A: [539,41,778,84,694], // PRECEDES + 0x227B: [539,41,778,83,694], // SUCCEEDS + 0x2282: [540,40,778,84,694], // SUBSET OF + 0x2283: [540,40,778,83,693], // SUPERSET OF + 0x2286: [636,138,778,84,694], // SUBSET OF OR EQUAL TO + 0x2287: [636,138,778,83,693], // SUPERSET OF OR EQUAL TO + 0x228E: [598,22,667,55,611], // MULTISET UNION + 0x2291: [636,138,778,84,714], // SQUARE IMAGE OF OR EQUAL TO + 0x2292: [636,138,778,64,694], // SQUARE ORIGINAL OF OR EQUAL TO + 0x2293: [598,0,667,61,605], // stix-square intersection, serifs + 0x2294: [598,0,667,61,605], // stix-square union, serifs + 0x2295: [583,83,778,56,722], // stix-circled plus (with rim) + 0x2296: [583,83,778,56,722], // CIRCLED MINUS + 0x2297: [583,83,778,56,722], // stix-circled times (with rim) + 0x2298: [583,83,778,56,722], // CIRCLED DIVISION SLASH + 0x2299: [583,83,778,56,722], // CIRCLED DOT OPERATOR + 0x22A2: [694,0,611,55,555], // RIGHT TACK + 0x22A3: [694,0,611,55,555], // LEFT TACK + 0x22A4: [668,0,778,55,723], // DOWN TACK + 0x22A5: [668,0,778,55,723], // UP TACK + 0x22A8: [750,249,867,119,811], // TRUE + 0x22C4: [488,-12,500,12,488], // DIAMOND OPERATOR + 0x22C5: [310,-190,278,78,199], // DOT OPERATOR + 0x22C6: [486,-16,500,3,497], // STAR OPERATOR + 0x22C8: [505,5,900,26,873], // BOWTIE + 0x22EE: [900,30,278,78,199], // VERTICAL ELLIPSIS + 0x22EF: [310,-190,1172,78,1093], // MIDLINE HORIZONTAL ELLIPSIS + 0x22F1: [820,-100,1282,133,1148], // DOWN RIGHT DIAGONAL ELLIPSIS + 0x2308: [750,250,444,174,422], // LEFT CEILING + 0x2309: [750,250,444,21,269], // RIGHT CEILING + 0x230A: [750,250,444,174,422], // LEFT FLOOR + 0x230B: [750,250,444,21,269], // RIGHT FLOOR + 0x2322: [388,-122,1000,55,944], // stix-small down curve + 0x2323: [378,-134,1000,55,944], // stix-small up curve + 0x23B0: [744,244,412,55,357], // UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION + 0x23B1: [744,244,412,56,357], // UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION + 0x27E8: [750,250,389,110,333], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [750,250,389,55,278], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27EE: [744,244,412,173,357], // MATHEMATICAL LEFT FLATTENED PARENTHESIS + 0x27EF: [744,244,412,56,240], // MATHEMATICAL RIGHT FLATTENED PARENTHESIS + 0x27F5: [511,11,1609,55,1525], // LONG LEFTWARDS ARROW + 0x27F6: [511,11,1638,84,1553], // LONG RIGHTWARDS ARROW + 0x27F7: [511,11,1859,55,1803], // LONG LEFT RIGHT ARROW + 0x27F8: [525,24,1609,56,1553], // LONG LEFTWARDS DOUBLE ARROW + 0x27F9: [525,24,1638,56,1582], // LONG RIGHTWARDS DOUBLE ARROW + 0x27FA: [525,24,1858,56,1802], // LONG LEFT RIGHT DOUBLE ARROW + 0x27FC: [511,11,1638,55,1553], // LONG RIGHTWARDS ARROW FROM BAR + 0x2A3F: [683,0,750,28,721], // AMALGAMATION OR COPRODUCT + 0x2AAF: [636,138,778,84,694], // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN + 0x2AB0: [636,138,778,83,694] // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Math-italic'] = { + directory: 'Math/Italic', + family: 'MathJax_Math', + style: 'italic', + testString: "MathJax Math \u03A5", + skew: { + 0x41: 0.139, + 0x42: 0.0833, + 0x43: 0.0833, + 0x44: 0.0556, + 0x45: 0.0833, + 0x46: 0.0833, + 0x47: 0.0833, + 0x48: 0.0556, + 0x49: 0.111, + 0x4A: 0.167, + 0x4B: 0.0556, + 0x4C: 0.0278, + 0x4D: 0.0833, + 0x4E: 0.0833, + 0x4F: 0.0833, + 0x50: 0.0833, + 0x51: 0.0833, + 0x52: 0.0833, + 0x53: 0.0833, + 0x54: 0.0833, + 0x55: 0.0278, + 0x58: 0.0833, + 0x5A: 0.0833, + 0x63: 0.0556, + 0x64: 0.167, + 0x65: 0.0556, + 0x66: 0.167, + 0x67: 0.0278, + 0x68: -0.0278, + 0x6C: 0.0833, + 0x6F: 0.0556, + 0x70: 0.0833, + 0x71: 0.0833, + 0x72: 0.0556, + 0x73: 0.0556, + 0x74: 0.0833, + 0x75: 0.0278, + 0x76: 0.0278, + 0x77: 0.0833, + 0x78: 0.0278, + 0x79: 0.0556, + 0x7A: 0.0556, + 0x393: 0.0833, + 0x394: 0.167, + 0x398: 0.0833, + 0x39B: 0.167, + 0x39E: 0.0833, + 0x3A0: 0.0556, + 0x3A3: 0.0833, + 0x3A5: 0.0556, + 0x3A6: 0.0833, + 0x3A8: 0.0556, + 0x3A9: 0.0833, + 0x3B1: 0.0278, + 0x3B2: 0.0833, + 0x3B4: 0.0556, + 0x3B5: 0.0833, + 0x3B6: 0.0833, + 0x3B7: 0.0556, + 0x3B8: 0.0833, + 0x3B9: 0.0556, + 0x3BC: 0.0278, + 0x3BD: 0.0278, + 0x3BE: 0.111, + 0x3BF: 0.0556, + 0x3C1: 0.0833, + 0x3C2: 0.0833, + 0x3C4: 0.0278, + 0x3C5: 0.0278, + 0x3C6: 0.0833, + 0x3C7: 0.0556, + 0x3C8: 0.111, + 0x3D1: 0.0833, + 0x3D5: 0.0833, + 0x3F1: 0.0833, + 0x3F5: 0.0556 + }, + 0x20: [0,0,250,0,0], // SPACE + 0x2F: [716,215,778,139,638], // SOLIDUS + 0x41: [716,0,750,35,726], // LATIN CAPITAL LETTER A + 0x42: [683,0,759,35,756], // LATIN CAPITAL LETTER B + 0x43: [705,22,715,50,760], // LATIN CAPITAL LETTER C + 0x44: [683,0,828,33,803], // LATIN CAPITAL LETTER D + 0x45: [680,0,738,31,764], // LATIN CAPITAL LETTER E + 0x46: [680,0,643,31,749], // LATIN CAPITAL LETTER F + 0x47: [705,22,786,50,760], // LATIN CAPITAL LETTER G + 0x48: [683,0,831,31,888], // LATIN CAPITAL LETTER H + 0x49: [683,0,440,26,504], // LATIN CAPITAL LETTER I + 0x4A: [683,22,555,57,633], // LATIN CAPITAL LETTER J + 0x4B: [683,0,849,31,889], // LATIN CAPITAL LETTER K + 0x4C: [683,0,681,32,647], // LATIN CAPITAL LETTER L + 0x4D: [683,0,970,35,1051], // LATIN CAPITAL LETTER M + 0x4E: [683,0,803,31,888], // LATIN CAPITAL LETTER N + 0x4F: [704,22,763,50,740], // LATIN CAPITAL LETTER O + 0x50: [683,0,642,33,751], // LATIN CAPITAL LETTER P + 0x51: [704,194,791,50,740], // LATIN CAPITAL LETTER Q + 0x52: [683,21,759,33,755], // LATIN CAPITAL LETTER R + 0x53: [705,22,613,52,645], // LATIN CAPITAL LETTER S + 0x54: [677,0,584,21,704], // LATIN CAPITAL LETTER T + 0x55: [683,22,683,60,767], // LATIN CAPITAL LETTER U + 0x56: [683,22,583,52,769], // LATIN CAPITAL LETTER V + 0x57: [683,22,944,51,1048], // LATIN CAPITAL LETTER W + 0x58: [683,0,828,26,852], // LATIN CAPITAL LETTER X + 0x59: [683,-1,581,30,763], // LATIN CAPITAL LETTER Y + 0x5A: [683,0,683,58,723], // LATIN CAPITAL LETTER Z + 0x61: [441,10,529,33,506], // LATIN SMALL LETTER A + 0x62: [694,11,429,40,422], // LATIN SMALL LETTER B + 0x63: [442,11,433,34,429], // LATIN SMALL LETTER C + 0x64: [694,10,520,33,523], // LATIN SMALL LETTER D + 0x65: [442,11,466,39,429], // LATIN SMALL LETTER E + 0x66: [705,205,490,55,550], // LATIN SMALL LETTER F + 0x67: [442,205,477,10,480], // LATIN SMALL LETTER G + 0x68: [694,11,576,48,555], // LATIN SMALL LETTER H + 0x69: [661,11,345,21,302], // LATIN SMALL LETTER I + 0x6A: [661,204,412,-12,403], // LATIN SMALL LETTER J + 0x6B: [694,11,521,48,503], // LATIN SMALL LETTER K + 0x6C: [694,11,298,38,266], // LATIN SMALL LETTER L + 0x6D: [442,11,878,21,857], // LATIN SMALL LETTER M + 0x6E: [442,11,600,21,580], // LATIN SMALL LETTER N + 0x6F: [441,11,485,34,476], // LATIN SMALL LETTER O + 0x70: [442,194,503,-39,497], // LATIN SMALL LETTER P + 0x71: [442,194,446,33,460], // LATIN SMALL LETTER Q + 0x72: [442,11,451,21,430], // LATIN SMALL LETTER R + 0x73: [442,10,469,53,419], // LATIN SMALL LETTER S + 0x74: [626,11,361,19,330], // LATIN SMALL LETTER T + 0x75: [442,11,572,21,551], // LATIN SMALL LETTER U + 0x76: [443,11,485,21,467], // LATIN SMALL LETTER V + 0x77: [443,11,716,21,690], // LATIN SMALL LETTER W + 0x78: [442,11,572,35,522], // LATIN SMALL LETTER X + 0x79: [442,205,490,21,496], // LATIN SMALL LETTER Y + 0x7A: [442,11,465,35,468], // LATIN SMALL LETTER Z + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,-1,615,31,721], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,833,48,788], // GREEK CAPITAL LETTER DELTA + 0x398: [704,22,763,50,740], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,694,35,670], // GREEK CAPITAL LETTER LAMDA + 0x39E: [677,0,742,53,777], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,831,31,887], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,780,58,806], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,583,28,700], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,667,24,642], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,612,21,692], // GREEK CAPITAL LETTER PSI + 0x3A9: [704,0,772,80,786], // GREEK CAPITAL LETTER OMEGA + 0x3B1: [442,11,640,34,603], // GREEK SMALL LETTER ALPHA + 0x3B2: [705,194,566,23,573], // GREEK SMALL LETTER BETA + 0x3B3: [441,216,518,11,543], // GREEK SMALL LETTER GAMMA + 0x3B4: [717,10,444,36,451], // GREEK SMALL LETTER DELTA + 0x3B5: [452,22,466,27,428], // GREEK SMALL LETTER EPSILON + 0x3B6: [704,204,438,44,471], // GREEK SMALL LETTER ZETA + 0x3B7: [442,216,497,21,503], // GREEK SMALL LETTER ETA + 0x3B8: [705,10,469,35,462], // GREEK SMALL LETTER THETA + 0x3B9: [442,10,354,48,332], // GREEK SMALL LETTER IOTA + 0x3BA: [442,11,576,49,554], // GREEK SMALL LETTER KAPPA + 0x3BB: [694,12,583,47,556], // GREEK SMALL LETTER LAMDA + 0x3BC: [442,216,603,23,580], // GREEK SMALL LETTER MU + 0x3BD: [442,2,494,45,530], // GREEK SMALL LETTER NU + 0x3BE: [704,205,438,21,443], // GREEK SMALL LETTER XI + 0x3BF: [441,11,485,34,476], // GREEK SMALL LETTER OMICRON + 0x3C0: [431,11,570,19,573], // GREEK SMALL LETTER PI + 0x3C1: [442,216,517,23,510], // GREEK SMALL LETTER RHO + 0x3C2: [442,107,363,31,405], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [431,11,571,31,572], // GREEK SMALL LETTER SIGMA + 0x3C4: [431,13,437,18,517], // GREEK SMALL LETTER TAU + 0x3C5: [443,10,540,21,523], // GREEK SMALL LETTER UPSILON + 0x3C6: [442,218,654,50,618], // GREEK SMALL LETTER PHI + 0x3C7: [442,204,626,25,600], // GREEK SMALL LETTER CHI + 0x3C8: [694,205,651,21,634], // GREEK SMALL LETTER PSI + 0x3C9: [443,11,622,15,604], // GREEK SMALL LETTER OMEGA + 0x3D1: [705,11,591,21,563], // GREEK THETA SYMBOL + 0x3D5: [694,205,596,43,579], // GREEK PHI SYMBOL + 0x3D6: [431,10,828,19,823], // GREEK PI SYMBOL + 0x3F1: [442,194,517,67,510], // GREEK RHO SYMBOL + 0x3F5: [431,11,406,40,382] // GREEK LUNATE EPSILON SYMBOL + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'MathJax_Size1', + testString: "() [] {}", + 0x20: [0,0,250,0,0], // SPACE + 0x28: [850,349,458,152,422], // LEFT PARENTHESIS + 0x29: [850,349,458,35,305], // RIGHT PARENTHESIS + 0x2F: [850,349,578,55,522], // SOLIDUS + 0x5B: [850,349,417,202,394], // LEFT SQUARE BRACKET + 0x5C: [850,349,578,54,522], // REVERSE SOLIDUS + 0x5D: [850,349,417,22,214], // RIGHT SQUARE BRACKET + 0x7B: [850,349,583,105,477], // LEFT CURLY BRACKET + 0x7D: [850,349,583,105,477], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2C6: [744,-551,556,-8,564], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2DC: [722,-597,556,1,554], // SMALL TILDE + 0x302: [744,-551,0,-564,8], // COMBINING CIRCUMFLEX ACCENT + 0x303: [722,-597,0,-555,-2], // COMBINING TILDE + 0x2016: [602,0,778,257,521], // DOUBLE VERTICAL LINE + 0x2191: [600,0,667,112,555], // UPWARDS ARROW + 0x2193: [600,0,667,112,555], // DOWNWARDS ARROW + 0x21D1: [599,0,778,57,721], // UPWARDS DOUBLE ARROW + 0x21D3: [600,-1,778,57,721], // DOWNWARDS DOUBLE ARROW + 0x220F: [750,250,944,55,888], // N-ARY PRODUCT + 0x2210: [750,250,944,55,888], // N-ARY COPRODUCT + 0x2211: [750,250,1056,56,999], // N-ARY SUMMATION + 0x221A: [850,350,1000,111,1020], // SQUARE ROOT + 0x2223: [627,15,333,145,188], // DIVIDES + 0x2225: [627,15,556,145,410], // PARALLEL TO + 0x222B: [805,306,472,55,610], // INTEGRAL + 0x222C: [805,306,819,55,957], // DOUBLE INTEGRAL + 0x222D: [805,306,1166,55,1304], // TRIPLE INTEGRAL + 0x222E: [805,306,472,55,610], // CONTOUR INTEGRAL + 0x22C0: [750,249,833,55,777], // N-ARY LOGICAL AND + 0x22C1: [750,249,833,55,777], // N-ARY LOGICAL OR + 0x22C2: [750,249,833,55,777], // N-ARY INTERSECTION + 0x22C3: [750,249,833,55,777], // N-ARY UNION + 0x2308: [850,349,472,202,449], // LEFT CEILING + 0x2309: [850,349,472,22,269], // RIGHT CEILING + 0x230A: [850,349,472,202,449], // LEFT FLOOR + 0x230B: [850,349,472,22,269], // RIGHT FLOOR + 0x23D0: [602,0,667,312,355], // VERTICAL LINE EXTENSION (used to extend arrows) + 0x27E8: [850,350,472,97,394], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [850,350,472,77,374], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x2A00: [750,250,1111,56,1054], // N-ARY CIRCLED DOT OPERATOR + 0x2A01: [750,250,1111,56,1054], // N-ARY CIRCLED PLUS OPERATOR + 0x2A02: [750,250,1111,56,1054], // N-ARY CIRCLED TIMES OPERATOR + 0x2A04: [750,249,833,55,777], // N-ARY UNION OPERATOR WITH PLUS + 0x2A06: [750,249,833,55,777] // N-ARY SQUARE UNION OPERATOR + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'MathJax_Size2', + testString: "() [] {}", + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1150,649,597,180,561], // LEFT PARENTHESIS + 0x29: [1150,649,597,35,416], // RIGHT PARENTHESIS + 0x2F: [1150,649,811,56,754], // SOLIDUS + 0x5B: [1150,649,472,224,455], // LEFT SQUARE BRACKET + 0x5C: [1150,649,811,54,754], // REVERSE SOLIDUS + 0x5D: [1150,649,472,16,247], // RIGHT SQUARE BRACKET + 0x7B: [1150,649,667,119,547], // LEFT CURLY BRACKET + 0x7D: [1150,649,667,119,547], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2C6: [772,-565,1000,-5,1004], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2DC: [750,-611,1000,0,999], // SMALL TILDE + 0x302: [772,-565,0,-1005,4], // COMBINING CIRCUMFLEX ACCENT + 0x303: [750,-611,0,-1000,-1], // COMBINING TILDE + 0x220F: [950,450,1278,56,1221], // N-ARY PRODUCT + 0x2210: [950,450,1278,56,1221], // N-ARY COPRODUCT + 0x2211: [950,450,1444,55,1388], // N-ARY SUMMATION + 0x221A: [1150,650,1000,111,1020], // SQUARE ROOT + 0x222B: [1360,862,556,55,944], // INTEGRAL + 0x222C: [1360,862,1084,55,1472], // DOUBLE INTEGRAL + 0x222D: [1360,862,1592,55,1980], // TRIPLE INTEGRAL + 0x222E: [1360,862,556,55,944], // CONTOUR INTEGRAL + 0x22C0: [950,450,1111,55,1055], // N-ARY LOGICAL AND + 0x22C1: [950,450,1111,55,1055], // N-ARY LOGICAL OR + 0x22C2: [949,450,1111,55,1055], // N-ARY INTERSECTION + 0x22C3: [950,449,1111,55,1055], // N-ARY UNION + 0x2308: [1150,649,528,224,511], // LEFT CEILING + 0x2309: [1150,649,528,16,303], // RIGHT CEILING + 0x230A: [1150,649,528,224,511], // LEFT FLOOR + 0x230B: [1150,649,528,16,303], // RIGHT FLOOR + 0x27E8: [1150,649,611,112,524], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1150,649,611,85,498], // MATHEMATICAL RIGHT ANGLE BRACKET + 0x2A00: [949,449,1511,56,1454], // N-ARY CIRCLED DOT OPERATOR + 0x2A01: [949,449,1511,56,1454], // N-ARY CIRCLED PLUS OPERATOR + 0x2A02: [949,449,1511,56,1454], // N-ARY CIRCLED TIMES OPERATOR + 0x2A04: [950,449,1111,55,1055], // N-ARY UNION OPERATOR WITH PLUS + 0x2A06: [950,450,1111,55,1055] // N-ARY SQUARE UNION OPERATOR + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'MathJax_Size3', + testString: "() [] {}", + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1450,949,736,209,701], // LEFT PARENTHESIS + 0x29: [1450,949,736,34,526], // RIGHT PARENTHESIS + 0x2F: [1450,949,1044,55,989], // SOLIDUS + 0x5B: [1450,949,528,247,516], // LEFT SQUARE BRACKET + 0x5C: [1450,949,1044,56,988], // REVERSE SOLIDUS + 0x5D: [1450,949,528,11,280], // RIGHT SQUARE BRACKET + 0x7B: [1450,949,750,130,618], // LEFT CURLY BRACKET + 0x7D: [1450,949,750,131,618], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2C6: [772,-564,1444,-4,1447], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2DC: [749,-610,1444,1,1442], // SMALL TILDE + 0x302: [772,-564,0,-1448,3], // COMBINING CIRCUMFLEX ACCENT + 0x303: [749,-610,0,-1443,-2], // COMBINING TILDE + 0x221A: [1450,950,1000,111,1020], // SQUARE ROOT + 0x2308: [1450,949,583,246,571], // LEFT CEILING + 0x2309: [1450,949,583,11,336], // RIGHT CEILING + 0x230A: [1450,949,583,246,571], // LEFT FLOOR + 0x230B: [1450,949,583,11,336], // RIGHT FLOOR + 0x27E8: [1450,950,750,126,654], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1450,949,750,94,623] // MATHEMATICAL RIGHT ANGLE BRACKET + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'MathJax_Size4', + testString: "() [] {}", + 0x20: [0,0,250,0,0], // SPACE + 0x28: [1750,1249,792,237,758], // LEFT PARENTHESIS + 0x29: [1750,1249,792,33,554], // RIGHT PARENTHESIS + 0x2F: [1750,1249,1278,56,1221], // SOLIDUS + 0x5B: [1750,1249,583,269,577], // LEFT SQUARE BRACKET + 0x5C: [1750,1249,1278,56,1221], // REVERSE SOLIDUS + 0x5D: [1750,1249,583,5,313], // RIGHT SQUARE BRACKET + 0x7B: [1750,1249,806,144,661], // LEFT CURLY BRACKET + 0x7D: [1750,1249,806,144,661], // RIGHT CURLY BRACKET + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x2C6: [845,-561,1889,-14,1902], // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2DC: [823,-583,1889,1,1885], // SMALL TILDE + 0x302: [845,-561,0,-1903,13], // COMBINING CIRCUMFLEX ACCENT + 0x303: [823,-583,0,-1888,-4], // COMBINING TILDE + 0x221A: [1750,1250,1000,111,1020], // SQUARE ROOT + 0x2308: [1750,1249,639,269,633], // LEFT CEILING + 0x2309: [1750,1249,639,5,369], // RIGHT CEILING + 0x230A: [1750,1249,639,269,633], // LEFT FLOOR + 0x230B: [1750,1249,639,5,369], // RIGHT FLOOR + 0x239B: [1154,655,875,291,843], // LEFT PARENTHESIS UPPER HOOK + 0x239C: [610,10,875,291,417], // LEFT PARENTHESIS EXTENSION + 0x239D: [1165,644,875,291,843], // LEFT PARENTHESIS LOWER HOOK + 0x239E: [1154,655,875,31,583], // RIGHT PARENTHESIS UPPER HOOK + 0x239F: [610,10,875,457,583], // RIGHT PARENTHESIS EXTENSION + 0x23A0: [1165,644,875,31,583], // RIGHT PARENTHESIS LOWER HOOK + 0x23A1: [1154,645,667,319,666], // LEFT SQUARE BRACKET UPPER CORNER + 0x23A2: [602,0,667,319,403], // LEFT SQUARE BRACKET EXTENSION + 0x23A3: [1155,644,667,319,666], // LEFT SQUARE BRACKET LOWER CORNER + 0x23A4: [1154,645,667,0,347], // RIGHT SQUARE BRACKET UPPER CORNER + 0x23A5: [602,0,667,263,347], // RIGHT SQUARE BRACKET EXTENSION + 0x23A6: [1155,644,667,0,347], // RIGHT SQUARE BRACKET LOWER CORNER + 0x23A7: [899,10,889,384,718], // LEFT CURLY BRACKET UPPER HOOK + 0x23A8: [1160,660,889,170,504], // LEFT CURLY BRACKET MIDDLE PIECE + 0x23A9: [10,899,889,384,718], // LEFT CURLY BRACKET LOWER HOOK + 0x23AA: [310,10,889,384,504], // CURLY BRACKET EXTENSION + 0x23AB: [899,10,889,170,504], // RIGHT CURLY BRACKET UPPER HOOK + 0x23AC: [1160,660,889,384,718], // RIGHT CURLY BRACKET MIDDLE PIECE + 0x23AD: [10,899,889,170,504], // RIGHT CURLY BRACKET LOWER HOOK + 0x23B7: [935,885,1056,111,742], // RADICAL SYMBOL BOTTOM + 0x27E8: [1750,1248,806,140,703], // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E9: [1750,1248,806,103,665], // MATHEMATICAL RIGHT ANGLE BRACKET + 0xE000: [625,14,1056,702,742], // stix-radical symbol vertical extender + 0xE001: [605,14,1056,702,1076], // stix-radical symbol top corner piece + 0xE150: [120,213,450,-24,460], // stix-horizontal brace, down left piece + 0xE151: [120,213,450,-10,474], // stix-horizontal brace, down right piece + 0xE152: [333,0,450,-24,460], // stix-horizontal brace, upper left piece + 0xE153: [333,0,450,-10,474], // stix-horizontal brace, upper right piece + 0xE154: [120,0,400,-10,410] // stix-oblique open face capital letter A + }; + + HTMLCSS.FONTDATA.FONTS['MathJax_Main'][0x22EE][0] += 400; // adjust height for \vdots + HTMLCSS.FONTDATA.FONTS['MathJax_Main'][0x22F1][0] += 700; // adjust height for \ddots + HTMLCSS.FONTDATA.FONTS['MathJax_Size4'][0xE154][0] += 200; // adjust height for brace extender + HTMLCSS.FONTDATA.FONTS['MathJax_Size4'][0xE154][1] += 200; // adjust depth for brace extender + HTMLCSS.FONTDATA.FONTS['MathJax_Main'][0x2212][1] += 100; // adjust depth of minus (used as arrow extender) + HTMLCSS.FONTDATA.FONTS['MathJax_Main'][0x003D][1] += 100; // adjust depth of = (used as arrow extender) + HTMLCSS.FONTDATA.FONTS['MathJax_Main'][0x2245][2] -= 222; // fix error in character's right bearing + HTMLCSS.FONTDATA.FONTS['MathJax_Main'][0x2245][5] = {rfix:-222}; // fix error in character's right bearing + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Main/Bold/MathOperators.js",function () { + HTMLCSS.FONTDATA.FONTS['MathJax_Main-bold'][0x2245][2] -= 106; // fix error in character's right bearing + HTMLCSS.FONTDATA.FONTS['MathJax_Main-bold'][0x2245][5] = {rfix:-106}; // fix error in character's right bearing + }); + MathJax.Hub.Register.LoadHook(HTMLCSS.fontDir+"/Typewriter/Regular/BasicLatin.js",function () { + HTMLCSS.FONTDATA.FONTS['MathJax_Typewriter'][0x20][2] += 275; // fix error in character width + HTMLCSS.FONTDATA.FONTS['MathJax_Typewriter'][0x20][5] = {rfix:275}; // fix error in character width + }); + + // + // Add some spacing characters (more will come later) + // + MathJax.Hub.Insert(HTMLCSS.FONTDATA.FONTS['MathJax_Main'],{ + 0xEEE0: [0,0,-575,0,0,{space:1}], + 0xEEE1: [0,0,-300,0,0,{space:1}], + 0xEEE8: [0,0,25,0,0,{space:1}] + }); + + if (!HTMLCSS.imgFonts) { + MathJax.Hub.Browser.Select({ + MSIE: function (browser) { + + if (HTMLCSS.config.availableFonts && HTMLCSS.config.availableFonts.length) { + + HTMLCSS.FONTDATA.REMAP[0x2C9] = 0xAF; // macron + HTMLCSS.FONTDATA.REMAP[0x2CA] = 0xB4; // acute + HTMLCSS.FONTDATA.REMAP[0x2CB] = 0x60; // grave + HTMLCSS.FONTDATA.REMAP[0x2DA] = 0xB0; // ring above + + var testString = + String.fromCharCode(0x393)+" "+String.fromCharCode(0x3A5)+" "+String.fromCharCode(0x39B); + + HTMLCSS.FONTDATA.RANGES.push({name: "IEgreek", low: 0x03B1, high: 0x03C9, offset: "IEG", add: 32}); + HTMLCSS.FONTDATA.RANGES.push({name: "IEGreek", low: 0x0391, high: 0x03F6, offset: "IEG"}); + + if (HTMLCSS.Font.testFont({family:"MathJax_Greek", testString: testString})) { + HTMLCSS.Augment({ + FONTDATA: { + VARIANT: { + normal: {offsetIEG: 0x391, variantIEG: "-Greek"}, + "fraktur": {offsetIEG: 0x391, variantIEG: "-Greek"}, + "script": {offsetIEG: 0x391, variantIEG: "-Greek"}, + "-tex-caligraphic": {offsetIEG: 0x391, variantIEG: "-Greek"}, + "-tex-oldstyle": {offsetIEG: 0x391, variantIEG: "-Greek"}, + "-Greek": {fonts:["MathJax_Greek"]} + } + } + }); + + HTMLCSS.FONTDATA.FONTS['MathJax_Greek'] = { + directory: 'Greek/Regular', + family: 'MathJax_Greek', + testString: "\u0393 \u03A5 \u039B", + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,0,625,25,582], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,833,46,786], // GREEK CAPITAL LETTER DELTA + 0x398: [705,22,778,56,722], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,694,32,661], // GREEK CAPITAL LETTER LAMDA + 0x39E: [677,0,667,42,624], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,750,25,724], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,722,55,666], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,778,55,722], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,722,56,665], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,778,55,722], // GREEK CAPITAL LETTER PSI + 0x3A9: [704,0,722,44,677] // GREEK CAPITAL LETTER OMEGA + }; + + } + + if (HTMLCSS.Font.testFont({family:"MathJax_Greek", weight:"bold", testString: testString})) { + HTMLCSS.Augment({ + FONTDATA: { + VARIANT: { + bold: {offsetIEG: 0x391, variantIEG: "-Greek-Bold"}, + "bold-fraktur": {offsetIEG: 0x391, variantIEG: "-Greek-Bold"}, + "bold-script": {offsetIEG: 0x391, variantIEG: "-Greek-Bold"}, + "-Greek-Bold": {fonts:["MathJax_Greek-bold"]} + } + } + }); + + HTMLCSS.FONTDATA.FONTS['MathJax_Greek-bold'] = { + directory: 'Greek/Bold', + family: 'MathJax_Greek', + weight: 'bold', + testString: "\u0393 \u03A5 \u039B", + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,0,692,39,643], // GREEK CAPITAL LETTER GAMMA + 0x394: [698,0,958,56,901], // GREEK CAPITAL LETTER DELTA + 0x398: [696,10,894,64,829], // GREEK CAPITAL LETTER THETA + 0x39B: [698,0,806,40,765], // GREEK CAPITAL LETTER LAMDA + 0x39E: [675,0,767,48,718], // GREEK CAPITAL LETTER XI + 0x3A0: [680,0,900,39,860], // GREEK CAPITAL LETTER PI + 0x3A3: [686,0,831,64,766], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [697,0,894,64,829], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [686,0,831,64,766], // GREEK CAPITAL LETTER PHI + 0x3A8: [686,0,894,64,829], // GREEK CAPITAL LETTER PSI + 0x3A9: [696,1,831,51,779] // GREEK CAPITAL LETTER OMEGA + }; + + } + + if (HTMLCSS.Font.testFont({family:"MathJax_Greek", style:"italic", testString: testString})) { + HTMLCSS.Augment({ + FONTDATA: { + VARIANT: { + italic: {offsetIEG: 0x391, variantIEG: "-Greek-Italic"}, + "-Greek-Italic": {fonts:["MathJax_Greek-italic"]} + } + } + }); + + HTMLCSS.FONTDATA.FONTS['MathJax_Greek-italic'] = { + directory: 'Greek/Italic', + family: 'MathJax_Greek', + style: 'italic', + testString: "\u0393 \u03A5 \u039B", + skew: { + 0x393: 0.0833, + 0x394: 0.167, + 0x398: 0.0833, + 0x39B: 0.167, + 0x39E: 0.0833, + 0x3A0: 0.0556, + 0x3A3: 0.0833, + 0x3A5: 0.0556, + 0x3A6: 0.0833, + 0x3A8: 0.0556, + 0x3A9: 0.0833, + 0x3B1: 0.0278, + 0x3B2: 0.0833, + 0x3B4: 0.0556, + 0x3B5: 0.0833, + 0x3B6: 0.0833, + 0x3B7: 0.0556, + 0x3B8: 0.0833, + 0x3B9: 0.0556, + 0x3BC: 0.0278, + 0x3BD: 0.0278, + 0x3BE: 0.111, + 0x3BF: 0.0556, + 0x3C1: 0.0833, + 0x3C2: 0.0833, + 0x3C4: 0.0278, + 0x3C5: 0.0278, + 0x3C6: 0.0833, + 0x3C7: 0.0556, + 0x3C8: 0.111, + 0x3D1: 0.0833, + 0x3D5: 0.0833, + 0x3F1: 0.0833, + 0x3F5: 0.0556 + }, + 0x20: [0,0,250,0,0], // SPACE + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x393: [680,-1,615,31,721], // GREEK CAPITAL LETTER GAMMA + 0x394: [716,0,833,48,788], // GREEK CAPITAL LETTER DELTA + 0x398: [704,22,763,50,740], // GREEK CAPITAL LETTER THETA + 0x39B: [716,0,694,35,670], // GREEK CAPITAL LETTER LAMDA + 0x39E: [678,0,742,53,777], // GREEK CAPITAL LETTER XI + 0x3A0: [681,0,831,31,887], // GREEK CAPITAL LETTER PI + 0x3A3: [683,0,780,58,806], // GREEK CAPITAL LETTER SIGMA + 0x3A5: [705,0,583,28,700], // GREEK CAPITAL LETTER UPSILON + 0x3A6: [683,0,667,24,642], // GREEK CAPITAL LETTER PHI + 0x3A8: [683,0,612,21,692], // GREEK CAPITAL LETTER PSI + 0x3A9: [704,0,772,80,786], // GREEK CAPITAL LETTER OMEGA + 0x3B1: [442,11,640,34,603], // GREEK SMALL LETTER ALPHA + 0x3B2: [705,194,566,23,573], // GREEK SMALL LETTER BETA + 0x3B3: [441,216,518,11,543], // GREEK SMALL LETTER GAMMA + 0x3B4: [717,10,444,36,451], // GREEK SMALL LETTER DELTA + 0x3B5: [452,22,466,27,428], // GREEK SMALL LETTER EPSILON + 0x3B6: [704,204,438,44,471], // GREEK SMALL LETTER ZETA + 0x3B7: [442,216,497,21,503], // GREEK SMALL LETTER ETA + 0x3B8: [705,10,469,35,462], // GREEK SMALL LETTER THETA + 0x3B9: [442,10,354,48,332], // GREEK SMALL LETTER IOTA + 0x3BA: [442,11,576,49,554], // GREEK SMALL LETTER KAPPA + 0x3BB: [694,12,583,47,556], // GREEK SMALL LETTER LAMDA + 0x3BC: [442,216,603,23,580], // GREEK SMALL LETTER MU + 0x3BD: [442,2,494,45,530], // GREEK SMALL LETTER NU + 0x3BE: [704,205,438,21,443], // GREEK SMALL LETTER XI + 0x3BF: [441,11,485,34,476], // GREEK SMALL LETTER OMICRON + 0x3C0: [431,11,570,19,573], // GREEK SMALL LETTER PI + 0x3C1: [442,216,517,23,510], // GREEK SMALL LETTER RHO + 0x3C2: [442,107,363,31,405], // GREEK SMALL LETTER FINAL SIGMA + 0x3C3: [431,11,571,31,572], // GREEK SMALL LETTER SIGMA + 0x3C4: [431,13,437,18,517], // GREEK SMALL LETTER TAU + 0x3C5: [443,10,540,21,523], // GREEK SMALL LETTER UPSILON + 0x3C6: [442,218,654,50,618], // GREEK SMALL LETTER PHI + 0x3C7: [442,204,626,25,600], // GREEK SMALL LETTER CHI + 0x3C8: [694,205,651,21,634], // GREEK SMALL LETTER PSI + 0x3C9: [443,11,622,15,604], // GREEK SMALL LETTER OMEGA + 0x3D1: [705,11,591,21,563], // GREEK THETA SYMBOL + 0x3D5: [694,205,596,43,579], // GREEK PHI SYMBOL + 0x3D6: [431,10,828,19,823], // GREEK PI SYMBOL + 0x3F1: [442,194,517,67,510], // GREEK RHO SYMBOL + 0x3F5: [431,11,406,40,382] // GREEK LUNATE EPSILON SYMBOL + }; + + } + + if (HTMLCSS.Font.testFont({family:"MathJax_Greek", weight:"bold", style:"italic", testString: testString})) { + HTMLCSS.Augment({ + FONTDATA: { + VARIANT: { + "bold-italic": {offsetG: 0x391, + variantG: "-Greek-Bold-Italic"}, + "-Greek-Bold-Italic": {fonts:["MathJax_Greek-bold-italic"]} + }, + FONTS: {"MathJax_Greek-bold-italic": "Greek/BoldItalic/Main.js"} + } + }); + } + + } + + if (HTMLCSS.msieIE6) { + + var WinIE6 = "MathJax_WinIE6"; + HTMLCSS.FONTDATA.FONTS[WinIE6] = "WinIE6/Regular/Main.js"; + HTMLCSS.FONTDATA.RANGES.push({name: "arrows", low: 0x2190, high: 0x2199, offset: "AR"}); + + var REMAP = {variant:"-WinIE6", + 0x21D2:0xE20A, 0x21D4:0xE20B, // \Rightarrow, \Leftrightarrow + 0x2200:0xE20C, 0x2202:0xE20D, 0x2203:0xE20E, 0x2207:0xE20F, // \forall, \partial, \exists, \nabla + 0x2208:0xE210, 0x220B:0xE211, 0x2215:0xE212, 0x221A:0xE213, // \in, \ni, /, \surd + 0x221D:0xE214, 0x221E:0xE215, 0x2220:0xE216, 0x2223:0xE217, // \propto, \infty, \angle, \vert + 0x2225:0xE218, 0x2227:0xE219, 0x2228:0xE21A, 0x2229:0xE21B, // \Vert, \wedge, \vee, \cap + 0x222A:0xE21C, 0x222B:0xE21D, 0x223C:0xE21E, 0x2248:0xE21F, // \cup, \int, \sim, \approx + 0x2260:0xE220, 0x2261:0xE221, 0x2264:0xE222, 0x2265:0xE223, // \ne, \equiv, \le, \ge + 0x226A:0xE224, 0x226B:0xE225, 0x2282:0xE226, 0x2283:0xE227, // \ll, \gg, \subset, \supset + 0x2286:0xE228, 0x2287:0xE229, 0x2295:0xE22A, 0x2299:0xE22B, // \subseteq, \supseteq, \oplus, \odot + 0x22A5:0xE22C, 0x25B3:0xE22D, 0x25BD:0xE22E, 0x25EF:0xE22F, // \bot, \bigtriangleup, \bigtriangledown, \bigcirc + 0x2660:0xE230, 0x2661:0xE231, 0x2662:0xE232, 0x2663:0xE233, // \spadesuit, \heartsuit, \diamondsuit, \clubsuit + 0x266D:0xE234, 0x266E:0xE235, 0x266F:0xE236, // \flat, \naturl, \sharp + 0x2266:0xE2C5, 0x2267:0xE2C6, 0x226E:0xE2C7, 0x226F:0xE2C8, // \leqq, \geqq, \nless, \ngtr + 0x231C:0xE2CA, 0x231D:0xE2CB, 0x231E:0xE2CC, 0x231F:0xE2CD, // corners + 0x250C:0xE2CA, 0x2510:0xE2CB, 0x2514:0xE2CC, 0x2518:0xE2CD, // corners (wrong positions) + 0x2571:0xE2CE, 0x2572:0xE2CF, 0x25A0:0xE2D0, 0x25A1:0xE2D1, // \diagup, \diagdown, \blacksquare, \square + 0x25B2:0xE2D2, 0x25B6:0xE2D4, 0x25BC:0xE2D5, // \blacktriangle, \blacktriangleright, \blacktriangledown + 0x25BD:0xE2D6, 0x25C0:0xE2D7, 0x25CA:0xE2D8, // \vartriangledown, \blacktriangleleft, \lozenge + 0x2234:0xE2D9, 0x2235:0xE2DA, 0x2252:0xE2DB, 0x2605:0xE2DC, // \therefor, \because, \fallingdotseq, \bigstar + 0x223D:0xE2DD // \backsim + }; + var REMAPBOLD = {variant:"-WinIE6", + 0x21D2:0xE24A, 0x21D4:0xE24B, // \Rightarrow, \Leftrightarrow + 0x2200:0xE24C, 0x2202:0xE24D, 0x2203:0xE24E, 0x2207:0xE24F, // \forall, \partial, \exists, \nabla + 0x2208:0xE250, 0x220B:0xE251, 0x2215:0xE252, 0x221A:0xE253, // \in, \ni, /, \surd + 0x221D:0xE254, 0x221E:0xE255, 0x2220:0xE256, 0x2223:0xE257, // \propto, \infty, \angle, \vert + 0x2225:0xE258, 0x2227:0xE259, 0x2228:0xE25A, 0x2229:0xE25B, // \Vert, \wedge, \vee, \cap + 0x222A:0xE25C, 0x222B:0xE25D, 0x223C:0xE25E, 0x2248:0xE25F, // \cup, \int, \sim, \approx + 0x2260:0xE260, 0x2261:0xE261, 0x2264:0xE262, 0x2265:0xE263, // \ne, \equiv, \le, \ge + 0x226A:0xE264, 0x226B:0xE265, 0x2282:0xE266, 0x2283:0xE267, // \ll, \gg, \subset, \supset + 0x2286:0xE268, 0x2287:0xE269, 0x2295:0xE26A, 0x2299:0xE26B, // \subseteq, \supseteq, \oplus, \odot + 0x22A5:0xE26C, 0x25B3:0xE26D, 0x25BD:0xE26E, 0x25EF:0xE26F, // \bot, \bigtriangleup, \bigtriangledown, \bigcirc + 0x2660:0xE270, 0x2661:0xE271, 0x2662:0xE272, 0x2663:0xE273, // \spadesuit, \heartsuit, \diamondsuit, \clubsuit + 0x266D:0xE274, 0x266E:0xE275, 0x266F:0xE276, // \flat, \naturl, \sharp + 0x2266:0xE2C5, 0x2267:0xE2C6, 0x226E:0xE2C7, 0x226F:0xE2C8, // \leqq, \geqq, \nless, \ngtr + 0x231C:0xE2CA, 0x231D:0xE2CB, 0x231E:0xE2CC, 0x231F:0xE2CD, // corners + 0x250C:0xE2CA, 0x2510:0xE2CB, 0x2514:0xE2CC, 0x2518:0xE2CD, // corners (wrong positions) + 0x2571:0xE2CE, 0x2572:0xE2CF, 0x25A0:0xE2D0, 0x25A1:0xE2D1, // \diagup, \diagdown, \blacksquare, \square + 0x25B2:0xE2D2, 0x25B6:0xE2D4, 0x25BC:0xE2D5, // \blacktriangle, \blacktriangleright, \blacktriangledown + 0x25BD:0xE2D6, 0x25C0:0xE2D7, 0x25CA:0xE2D8, // \vartriangledown, \blacktriangleleft, \lozenge + 0x2234:0xE2D9, 0x2235:0xE2DA, 0x2252:0xE2DB, 0x2605:0xE2DC, // \therefor, \because, \fallingdotseq, \bigstar + 0x223D:0xE2DD // \backsim + }; + var VARNORMAL = {offsetAR:0xE200, variantAR:"-WinIE6", remap: REMAP}; + var VARBOLD = {offsetAR:0xE240, variantAR:"-WinIE6", remap: REMAPBOLD}; + + HTMLCSS.Augment({ + FONTDATA: { + VARIANT: { + "normal": VARNORMAL, + "bold": VARBOLD, + "italic": VARNORMAL, + "bold-italic": VARBOLD, + "-TeX-variant": {remap:{ + 0x2190:[0xE2C1,"-WinIE6"], 0x2192:[0xE2C0,"-WinIE6"], + 0x2223:[0xE2C2,"-WinIE6"], 0x2225:[0xE2C3,"-WinIE6"], + 0x223C:[0xE2C4,"-WinIE6"], 0x25B3:[0xE2D3,"-WinIE6"] + }}, + "-largeOp": {fonts:[WinIE6,SIZE2,SIZE1,MAIN], + remap: {0x220F:0xE290, 0x2211:0xE291, 0x222B:0xE295, 0x222E:0xE296}}, + "-smallOp": {fonts:[WinIE6,SIZE1,MAIN], + remap: {0x220F:0xE280, 0x2211:0xE281, 0x222B:0xE285, 0x222E:0xE286}}, + "-WinIE6": {fonts:[WinIE6]} + }, + DELIMITERS: { + 0x221A: { + HW:{ + 0:[1,WinIE6,null,0xE213], 1:[1.2,WinIE6,null,0xE282], 2:[1.8,WinIE6,null,0xE292], + 3:[2.4,WinIE6,null,0xE2A2], 4:[3,WinIE6,null,0xE2B2] + } + }, + 0x007C: {stretch:{ext:[0xE217,WinIE6]}}, + 0x2223: {HW:{0:[1,WinIE6,null,0xE217]}, stretch:{ext:[0xE217,WinIE6]}}, + 0x23D0: {HW:{1:[1,WinIE6,null,0xE217]}, stretch:{ext:[0xE217,WinIE6]}}, + 0x2225: {HW:{0:[1,WinIE6,null,0xE218]}, stretch:{ext:[0xE218,WinIE6]}}, + 0x2190: {HW:{0:[.889,WinIE6,null,0xE200]}, stretch:{left:[0xE200,WinIE6]}}, + 0x2191: {HW:{0:[.888,WinIE6,null,0xE201]}, stretch:{top:[0xE287,WinIE6],ext:[0xE289,WinIE6]}}, + 0x2192: {HW:{0:[.889,WinIE6,null,0xE202]}, stretch:{right:[0xE202,WinIE6]}}, + 0x2193: {HW:{0:[.888,WinIE6,null,0xE203]}, stretch:{bot:[0xE288,WinIE6],ext:[0xE289,WinIE6]}}, + 0x2194: {HW:{0:[1,WinIE6,null,0xE204]}, stretch:{left:[0xE200,WinIE6],right:[0xE202,WinIE6]}}, + 0x2195: {HW:{0:[1.044,WinIE6,null,0xE203]}, stretch:{top:[0xE287,WinIE6],bot:[0xE288,WinIE6], ext:[0xE289,WinIE6]}} + } + } + }); + + } + + }, + + Chrome: function (browser) { + if (browser.isPC && navigator.userAgent.match(/Windows NT (5|6.0)/)) { + // + // Chrome on XP and Vista don't seem to handle four combining characters, + // so work around them as best we can. + // + HTMLCSS.Augment({ + FONTDATA: { + REMAP: {0x338: "\uEEE0/\uEEE8"}, // combining long solidas + REMAPACCENT: { + "\u0307":".", // combining dot above + "\u030B":"\u00B4\uEEE1\u00B4", // combining double acute accent + "\u20D7":"\u2192" // combining arrow above + } + } + }); + delete HTMLCSS.FONTDATA.REMAPACCENT["\u2192"]; + } + if (browser.isPC && !MathJax.Hub.Browser.versionAtLeast("5.0")) { + var WinChrome = "-WinChrome"; + HTMLCSS.Augment({ + FONTDATA: { + VARIANT: { + normal: {remap: {0x3E: [0x3E,WinChrome]}}, + bold: {remap: {0xE2F1: [0x3E,WinChrome]}}, + italic: {remap: {0x64: [0x64,WinChrome]}}, + "-tex-caligraphic": {remap: {0x54: [0x54,WinChrome]}}, + "-tex-caligraphic-bold": {remap: {0x54: [0xE2F0,WinChrome]}}, + "-largeOp": {remap: {0x2A00: [0x2A00,WinChrome]}}, + "-smallOp": {remap: {0x22C3: [0x22C3,WinChrome]}}, + "-WinChrome": {fonts:["MathJax_WinChrome"]} + }, + DELIMITERS: { + 0x005D: {stretch:{bot:[0x23A6,"MathJax_WinChrome"]}}, + 0x230B: {stretch:{bot:[0x23A6,"MathJax_WinChrome"]}} + } + } + }); + + HTMLCSS.FONTDATA.FONTS['MathJax_WinChrome'] = { + directory: 'WinChrome/Regular', + family: 'MathJax_WinChrome', + testString: "> T d \u23A6 \u2A00", + skew: { + 0x54: 0.0278, + 0xE2F0: 0.0319 + }, + 0x20: [0,0,250,0,0], // SPACE + 0x3E: [540,40,778,83,694], // GREATER-THAN SIGN + 0x54: [717,68,545,34,833], // LATIN CAPITAL LETTER T + 0x64: [694,11,511,101,567], // LATIN SMALL LETTER D + 0xA0: [0,0,250,0,0], // NO-BREAK SPACE + 0x22C3: [750,249,833,55,777], // N-ARY UNION + 0x23A6: [1155,644,667,0,347], // RIGHT SQUARE BRACKET LOWER CORNER + 0x2A00: [949,449,1511,56,1454], // N-ARY CIRCLED DOT OPERATOR + 0xE2F0: [720,69,644,38,947], // stix-lowercase u italic slashed + 0xE2F1: [587,85,894,96,797] // stix-lowercase u bold italic slashed + }; + + } + + } + + }); + } + + // + // Create @font-face stylesheet for the declared fonts + // + (function () { + var FONTS = HTMLCSS.FONTDATA.FONTS, AVAIL = HTMLCSS.config.availableFonts; + var name, faces = []; + if (HTMLCSS.allowWebFonts) { + for (name in FONTS) { + if (FONTS[name].family) { + if (AVAIL && AVAIL.length && HTMLCSS.Font.testFont(FONTS[name])) { + FONTS[name].available = true; + HTMLCSS.Font.loadComplete(FONTS[name]); + } else { + FONTS[name].isWebFont = true; + if (HTMLCSS.FontFaceBug) {FONTS[name].family = name} + faces.push(HTMLCSS.Font.fontFace(name)); + } + } + } + if (!HTMLCSS.config.preloadWebFonts) {HTMLCSS.config.preloadWebFonts = []} + HTMLCSS.config.preloadWebFonts.push(MAIN,ITALIC,SIZE1); + if (faces.length) {HTMLCSS.config.styles["@font-face"] = faces} + } else if (AVAIL && AVAIL.length) { + for (name in FONTS) { + if (FONTS[name].family && HTMLCSS.Font.testFont(FONTS[name])) { + FONTS[name].available = true; + HTMLCSS.Font.loadComplete(FONTS[name]); + } + } + } + })(); + + AJAX.loadComplete(HTMLCSS.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax["HTML-CSS"],MathJax.ElementJax.mml,MathJax.Ajax); + diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/imageFonts.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/imageFonts.js new file mode 100644 index 0000000..240db3c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/imageFonts.js @@ -0,0 +1,199 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/imageFonts.js + * + * Implements the image fallback fonts for the HTML-CSS OutputJax. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (HUB,HTMLCSS,AJAX) { + var VERSION = "2.3"; + + HUB.Register.LoadHook(HTMLCSS.fontDir + "/fontdata.js",function () { + + HTMLCSS.Augment({ + allowWebFonts: false, + + imgDir: HTMLCSS.webfontDir+"/png", + imgPacked: (MathJax.isPacked ? "" : "/unpacked"), + imgSize: ['050','060','071','085',100,120,141,168,200,238,283,336,400,476], + imgBaseIndex: 4, // set by initImg() + imgSizeForEm: {}, // cache of indexes by em-size + imgSizeForScale: {}, // cache of indexes by scale for a given em-size + imgZoom: 1, // set by initImg for each equation + + handleImg: function (span,font,c,n,text) { + if (text.length) {this.addText(span,text)} + var orig = c[5].orig; if (!orig) {orig = c[5].orig = [c[0],c[1],c[2],c[3],c[4]]} + var bscale = this.imgZoom; if (!span.scale) {span.scale = 1} + var index = this.imgIndex(span.scale*bscale); + if (index == this.imgEmWidth.length-1 && + this.em*span.scale*bscale/this.imgEmWidth[index] > 1.1) + {bscale = this.imgEmWidth[index]/(this.em*span.scale)} + var factor = this.imgEmWidth[index]/(this.em*(span.scale||1)*bscale); + c[0] = orig[0]*factor; c[1] = orig[1]*factor; c[2] = orig[2]*factor; + c[3] = orig[3]*factor; c[4] = orig[4]*factor; + var dir = this.imgDir+"/"+font.directory+"/"+this.imgSize[index]; + var chr = n.toString(16).toUpperCase(); while (chr.length < 4) {chr = "0"+chr}; + var file = dir+"/"+chr+".png"; + var img = c[5].img[index]; + var style = {width:Math.floor(img[0]/bscale+.5)+"px", height:Math.floor(img[1]/bscale+.5)+"px"}; + if (img[2]) {style.verticalAlign = Math.floor(-img[2]/bscale+.5)+"px"} + if (c[3] < 0) {style.marginLeft = this.Em(c[3]/1000)} + if (c[4] != c[2]) {style.marginRight = this.Em((c[2]-c[4])/1000)} + if (this.msieIE6) { + style.filter = "progid:DXImageTransform.Microsoft." + + "AlphaImageLoader(src='"+AJAX.fileURL(file)+"', sizingMethod='scale')"; + file = this.directory+"/blank.gif" + } + this.addElement(span,"img",{src:AJAX.fileURL(file), style:style, isMathJax:true}); + return ""; + }, + + defineImageData: function (def) { + for (var font in def) {if (def.hasOwnProperty(font)) { + var FONT = HTMLCSS.FONTDATA.FONTS[font]; + if (FONT) { + font = def[font]; + for (var n in font) {if (font.hasOwnProperty(n) && FONT[n]) {FONT[n][5] = {img: font[n]}}} + } + }} + }, + + initImg: function (span) { + if (this.imgSizeForEm[this.em]) {this.imgBaseIndex = this.imgSizeForEm[this.em]} + for (var i = 0, m = this.imgEmWidth.length-1; i < m; i++) + {if (this.em <= this.imgEmWidth[i]) break} + if (i && this.imgEmWidth[i] - this.em > this.em - this.imgEmWidth[i-1]) {i--} + this.imgSizeForEm[this.em] = this.imgBaseIndex = i; + this.imgZoom = this.imgBrowserZoom(); + }, + + imgIndex: function (scale) { + if (!scale) {return this.imgBaseIndex} + if (!this.imgSizeForScale[this.em]) {this.imgSizeForScale[this.em] = {}} + if (this.imgSizeForScale[this.em][scale]) {return this.imgSizeForScale[this.em][scale]} + var em = this.em * scale; + for (var i = 0, m = this.imgEmWidth.length-1; i < m; i++) + {if (em <= this.imgEmWidth[i]) break} + if (i && this.imgEmWidth[i] - em > em - this.imgEmWidth[i-1]) {i--} + this.imgSizeForScale[this.em][scale] = i; + return i; + }, + + imgBrowserZoom: function () {return 1} + + }); + + HUB.Browser.Select({ + + Firefox: function (browser) { + var ZDIV = HTMLCSS.addElement(document.body,"div",{ + style: { + display:"none", visibility:"hidden", overflow:"scroll", + position:"absolute", top:0, left: 0, width:"200px", height:"200px", + padding:0, border:0, margin:0 + } + }); + + var ZFRAME = HTMLCSS.addElement(ZDIV,"div",{ + style: { + position:"absolute", left:0, top:0, right:0, bottom:0, + padding:0, border:0, margin:0 + } + }); + + HTMLCSS.Augment({ + imgSpaceBug: true, + imgSpace: "\u00A0", + + imgZoomLevel: (browser.isMac ? + {50:.3, 30:.5, 22:.67, 19:.8, 16:.9, 15:1, 13:1.1, 12:1.2, + 11:1.33, 10:1.5, 9:1.7, 7:2, 6:2.4, 5:3, 0:15} : + {56:.3, 34:.5, 25:.67, 21:.8, 19:.9, 17:1, 15:1.1, 14:1.2, + 13:1.33, 11:1.5, 10:1.7, 8:2, 7:2.4, 6:3, 0:17} + ), + + imgZoomDiv: ZDIV, + + imgBrowserZoom: function () { + var size = this.imgZoomLevel; + ZDIV.style.display = ""; + var ratio = (ZDIV.offsetWidth-ZFRAME.offsetWidth); + ratio = (size[ratio] ? size[ratio] : size[0]/ratio); + ZDIV.style.display = "none"; + return ratio; + } + }); + }, + + Safari: function (browser) { + // for iPhone and iTouch +// var webkit = (navigator.appVersion+"AppleWebKit/530").match(/AppleWebKit\/(\d+)/)[1]; + HTMLCSS.Augment({ +// imgHeightBug: (!browser.isMac || webkit > 525), +// imgDepthBug: (!browser.isMac || webkit > 525), + imgBrowserZoom: function () {return 3} + }); + }, + + Chrome: function (browser) { + HTMLCSS.Augment({ + imgHeightBug: true, + imgBrowserZoom: function () {return 3} + }); + }, + + Opera: function (browser) { + HTMLCSS.Augment({ + imgSpaceBug: true, + imgSpace: "\u00A0\u00A0", + + imgDoc: (document.compatMode == "BackCompat" ? document.body : + document.documentElement), + + imgBrowserZoom: function () { + if (browser.isMac) {return 3} // Mac Opera scales very nicely + var H = this.imgDoc.clientHeight, d = Math.floor(15*H/window.innerHeight); + if (this.imgDoc.clientWidth < this.imgDoc.scrollWidth-d) {H += d} + return parseFloat((window.innerHeight/H).toFixed(1)); + } + }); + } + }); + + var GETWIDTHS = function () { + var img = HTMLCSS.FONTDATA.FONTS["MathJax_Main"][0x2014][5].img; // em-dash + HTMLCSS.imgEmWidth = []; + for (var i = 0, m = img.length; i < m; i++) {HTMLCSS.imgEmWidth[i] = img[i][0]} + }; + + var IMGDIR = HTMLCSS.imgDir + HTMLCSS.imgPacked; + + MathJax.Callback.Queue( + ["Require",AJAX,IMGDIR+"/imagedata.js"], + GETWIDTHS, + ["loadComplete",AJAX,HTMLCSS.directory+"/imageFonts.js"] + ); + + }); + +})(MathJax.Hub,MathJax.OutputJax["HTML-CSS"],MathJax.Ajax); diff --git a/modules/MathJax/unpacked/jax/output/HTML-CSS/jax.js b/modules/MathJax/unpacked/jax/output/HTML-CSS/jax.js new file mode 100644 index 0000000..6ece947 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/HTML-CSS/jax.js @@ -0,0 +1,2913 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/HTML-CSS/jax.js + * + * Implements the HTML-CSS OutputJax that displays mathematics + * using HTML and CSS to position the characters from math fonts + * in their proper locations. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +(function (AJAX,HUB,HTMLCSS) { + var MML, isMobile = HUB.Browser.isMobile; + + var MESSAGE = function () { + var data = [].slice.call(arguments,0); + data[0][0] = ["HTML-CSS",data[0][0]]; + return MathJax.Message.Set.apply(MathJax.Message,data); + }; + + var FONTTEST = MathJax.Object.Subclass({ + timeout: (isMobile? 15:8)*1000, // timeout for loading web fonts + + FontInfo: { + STIX: {family: "STIXSizeOneSym", testString: "() {} []"}, + TeX: {family: "MathJax_Size1", testString: "() {} []"}, + "STIX-Web": {family: "STIXWeb_Size1", testString: "() {} []"}, + "Asana-Math": {family: "AsanaMath_Size1", testString: "() {} []"}, + "Gyre-Pagella": {family: "GyrePagella_Size1", testString: "() {} []"}, + "Gyre-Termes": {family: "GyreTermes_Size1", testString: "() {} []"}, + "Latin-Modern": {family: "LatinModern_Size1", testString: "() {} []"}, + "Neo-Euler": {family: "NeoEuler_Size1", testString: "() {} []"} + }, + comparisonFont: ["sans-serif","monospace","script","Times","Courier","Arial","Helvetica"], + testSize: ["40px","50px","60px","30px","20px"], + + Init: function () { + this.div = MathJax.HTML.addElement(document.body,"div",{ + id: "MathJax_Font_Test", + style: {position:"absolute", visibility:"hidden", top:0, left:0, width: "auto", + padding:0, border:0, margin:0, whiteSpace:"nowrap", + textAlign:"left", textIndent:0, textTransform:"none", + lineHeight:"normal", letterSpacing:"normal", wordSpacing:"normal", + fontSize:this.testSize[0], fontWeight:"normal", fontStyle:"normal", + fontSizeAdjust:"none"} + },[""]); + this.text = this.div.firstChild; + }, + + findFont: function (fonts,pref) { + if (pref && this.testCollection(pref)) {return pref} + for (var i = 0, m = fonts.length; i < m; i++) { + if (fonts[i] === pref) continue; + if (this.testCollection(fonts[i])) {return fonts[i]} + } + return null; + }, + + testCollection: function (name) {return this.testFont(this.FontInfo[name])}, + + testFont: function (font) { + if (font.isWebFont && HTMLCSS.FontFaceBug) { + this.div.style.fontWeight = this.div.style.fontStyle = "normal"; + } else { + this.div.style.fontWeight = (font.weight||"normal"); + this.div.style.fontStyle = (font.style||"normal"); + } + var W = this.getComparisonWidths(font.testString,font.noStyleChar); + if (W) { + this.div.style.fontFamily = "'"+font.family+"',"+this.comparisonFont[0]; + if (this.div.offsetWidth == W[0]) { + this.div.style.fontFamily = "'"+font.family+"',"+this.comparisonFont[W[2]]; + if (this.div.offsetWidth == W[1]) {return false} + } + if (this.div.offsetWidth != W[3] || this.div.offsetHeight != W[4]) { + if (font.noStyleChar || !HTMLCSS.FONTDATA || !HTMLCSS.FONTDATA.hasStyleChar) {return true} + for (var i = 0, m = this.testSize.length; i < m; i++) + {if (this.testStyleChar(font,this.testSize[i])) {return true}} + } + } + return false; + }, + + styleChar: "\uEFFD", // width encodes style + versionChar: "\uEFFE", // width encodes version + compChar: "\uEFFF", // "standard" width to compare to + + testStyleChar: function (font,size) { + var n = 3 + (font.weight ? 2 : 0) + (font.style ? 4 : 0); + var extra = "", dw = 0; + var SIZE = this.div.style.fontSize; this.div.style.fontSize = size; + if (HTMLCSS.msieItalicWidthBug && font.style === "italic") { + this.text.nodeValue = extra = this.compChar; + dw = this.div.offsetWidth; + } + if (HTMLCSS.safariTextNodeBug) {this.div.innerHTML = this.compChar+extra} + else {this.text.nodeValue = this.compChar+extra} + var W = this.div.offsetWidth-dw; + if (HTMLCSS.safariTextNodeBug) {this.div.innerHTML = this.styleChar+extra} + else {this.text.nodeValue = this.styleChar+extra} + var N = Math.floor((this.div.offsetWidth-dw)/W+.5); + if (N === n) { + if (HTMLCSS.safariTextNodeBug) {this.div.innerHTML = this.versionChar+extra} + else {this.text.nodeValue = this.versionChar+extra} + font.version = Math.floor((this.div.offsetWidth-dw)/W+1.5)/2; + } + this.div.style.fontSize = SIZE; + return (N === n); + }, + + getComparisonWidths: function (string,noStyleChar) { + if (HTMLCSS.FONTDATA && HTMLCSS.FONTDATA.hasStyleChar && !noStyleChar) + {string += this.styleChar + " " + this.compChar} + if (HTMLCSS.safariTextNodeBug) {this.div.innerHTML = string} + else {this.text.nodeValue = string} + this.div.style.fontFamily = this.comparisonFont[0]; + var W = this.div.offsetWidth; + this.div.style.fontFamily = HTMLCSS.webFontDefault; + var sW = this.div.offsetWidth, sH = this.div.offsetHeight; + for (var i = 1, m = this.comparisonFont.length; i < m; i++) { + this.div.style.fontFamily = this.comparisonFont[i]; + if (this.div.offsetWidth != W) {return [W,this.div.offsetWidth,i,sW,sH]} + } + return null; + }, + + loadWebFont: function (font) { + HUB.Startup.signal.Post("HTML-CSS Jax - Web-Font "+HTMLCSS.fontInUse+"/"+font.directory); + var n = MESSAGE(["LoadWebFont","Loading web-font %1",HTMLCSS.fontInUse+"/"+font.directory]); + var done = MathJax.Callback({}); // called when font is loaded + var callback = MathJax.Callback(["loadComplete",this,font,n,done]); + AJAX.timer.start(AJAX,[this.checkWebFont,font,callback],0,this.timeout); + return done; + }, + loadComplete: function (font,n,done,status) { + MathJax.Message.Clear(n); + if (status === AJAX.STATUS.OK) {this.webFontLoaded = true; done(); return} + this.loadError(font); + if (HUB.Browser.isFirefox && HTMLCSS.allowWebFonts) { + var host = document.location.protocol + "//" + document.location.hostname; + if (document.location.port != "") {host += ":" + document.location.port} + host += "/"; + if (AJAX.fileURL(HTMLCSS.webfontDir).substr(0,host.length) !== host) + {this.firefoxFontError(font)} + } + if (!this.webFontLoaded) {HTMLCSS.loadWebFontError(font,done)} else {done()} + }, + loadError: function (font) { + MESSAGE(["CantLoadWebFont","Can't load web font %1",HTMLCSS.fontInUse+"/"+font.directory],null,2000); + HUB.Startup.signal.Post(["HTML-CSS Jax - web font error",HTMLCSS.fontInUse+"/"+font.directory,font]); + }, + firefoxFontError: function (font) { + MESSAGE(["FirefoxCantLoadWebFont","Firefox can't load web fonts from a remote host"],null,3000); + HUB.Startup.signal.Post("HTML-CSS Jax - Firefox web fonts on remote host error"); + }, + + checkWebFont: function (check,font,callback) { + if (check.time(callback)) return; + if (HTMLCSS.Font.testFont(font)) {callback(check.STATUS.OK)} + else {setTimeout(check,check.delay)} + }, + + fontFace: function (name) { + var type = HTMLCSS.allowWebFonts; + var FONT = HTMLCSS.FONTDATA.FONTS[name]; + if (HTMLCSS.msieFontCSSBug && !FONT.family.match(/-Web$/)) {FONT.family += "-Web"} + var dir = AJAX.fileURL(HTMLCSS.webfontDir+"/"+type); + var fullname = name.replace(/-b/,"-B").replace(/-i/,"-I").replace(/-Bold-/,"-Bold"); + if (!fullname.match(/-/)) {fullname += "-Regular"} + if (type === "svg") {fullname += ".svg#"+fullname} else {fullname += "."+type} + var def = { + "font-family": FONT.family, + src: "url('"+dir+"/"+fullname+"')" + }; + if (type === "otf") { + def.src += " format('opentype')"; + dir = AJAX.fileURL(HTMLCSS.webfontDir+"/woff"); // add woff fonts as well + def.src = "url('"+dir+"/"+fullname.replace(/otf$/,"woff")+"') format('woff'), "+def.src; + } else if (type !== "eot") {def.src += " format('"+type+"')"} + if (!(HTMLCSS.FontFaceBug && FONT.isWebFont)) { + if (name.match(/-bold/)) {def["font-weight"] = "bold"} + if (name.match(/-italic/)) {def["font-style"] = "italic"} + } + return def; + } + }); + + var EVENT, TOUCH, HOVER; // filled in later + + HTMLCSS.Augment({ + config: { + styles: { + ".MathJax": { + "display": "inline", + "font-style": "normal", + "font-weight": "normal", + "line-height": "normal", + "font-size": "100%", + "font-size-adjust":"none", + "text-indent": 0, + "text-align": "left", + "text-transform": "none", + "letter-spacing": "normal", + "word-spacing": "normal", + "word-wrap": "normal", + "white-space": "nowrap", + "float": "none", + "direction": "ltr", + border: 0, padding: 0, margin: 0 + }, + + ".MathJax_Display": { + position: "relative", + display: "block", + width: "100%" + }, + + ".MathJax img, .MathJax nobr, .MathJax a": { + border: 0, padding: 0, margin: 0, "max-width": "none", "max-height": "none", + "vertical-align": 0, "line-height": "normal", + "text-decoration": "none" + }, + "img.MathJax_strut": { + border:"0 !important", padding:"0 !important", margin: "0 !important", + "vertical-align": "0 !important" + }, + + ".MathJax span": { + display: "inline", position: "static", + border: 0, padding: 0, margin: 0, + "vertical-align": 0, "line-height": "normal", + "text-decoration": "none" + }, + + ".MathJax nobr": { + "white-space": "nowrap ! important" + }, + + ".MathJax img": { + display: "inline ! important", + "float": "none ! important" + }, + + ".MathJax *": { + transition: "none", + "-webkit-transition": "none", + "-moz-transition": "none", + "-ms-transition": "none", + "-o-transition": "none" + }, + + ".MathJax_Processing": { + visibility: "hidden", position:"fixed", + width: 0, height: 0, overflow:"hidden" + }, + ".MathJax_Processed": {display:"none!important"}, + + ".MathJax_ExBox": { + display:"block", overflow:"hidden", + width:"1px", height:"60ex" + }, + ".MathJax .MathJax_EmBox": { + display:"block", overflow:"hidden", + width:"1px", height:"60em" + }, + + ".MathJax .MathJax_HitBox": { + cursor: "text", + background: "white", + opacity:0, filter:"alpha(opacity=0)" + }, + ".MathJax .MathJax_HitBox *": { + filter: "none", opacity:1, background:"transparent" // for IE + }, + + "#MathJax_Tooltip": { + position: "absolute", left: 0, top: 0, + width: "auto", height: "auto", + display: "none" + }, + "#MathJax_Tooltip *": { + filter: "none", opacity:1, background:"transparent" // for IE + }, + + // + // Used for testing web fonts against the default font used while + // web fonts are loading + // + "@font-face": { + "font-family": "MathJax_Blank", + "src": "url('about:blank')" + } + + } + }, + settings: HUB.config.menuSettings, + + hideProcessedMath: true, // use display:none until all math is processed + + Font: null, // created by Config() below + webFontDefault: "MathJax_Blank", + allowWebFonts: "otf", // assume browser can use OTF web fonts + + maxStretchyParts: 1000, // limit the number of parts allowed for + // stretchy operators. See issue 366. + + Config: function () { + if (!this.require) {this.require = []} + this.Font = FONTTEST(); + this.SUPER(arguments).Config.call(this); var settings = this.settings; + if (this.adjustAvailableFonts) {this.adjustAvailableFonts(this.config.availableFonts)} + if (settings.scale) {this.config.scale = settings.scale} + if (settings.font && settings.font !== "Auto") { + if (settings.font === "TeXLocal") {this.config.availableFonts = ["TeX"]; this.config.preferredFont = "TeX"; this.config.webFont = "TeX"} + else if (settings.font === "TeXWeb") {this.config.availableFonts = []; this.config.preferredFont = ""; this.config.webFont = "TeX"} + else if (settings.font === "TeXimage") {this.config.availableFonts = []; this.config.preferredFont = ""; this.config.webFont = ""} + else if (settings.font === "STIXlocal") {this.config.availableFonts = ["STIX"]; this.config.preferredFont = "STIX"; this.config.webFont = "STIX-Web"} + else if (settings.font === "STIXWeb") {this.config.availableFonts = []; this.config.preferredFont = ""; this.config.webFont = "STIX-Web"} + else if (settings.font === "AsanaMathWeb") {this.config.availableFonts = []; this.config.preferredFont = ""; this.config.webFont = "Asana-Math"} + else if (settings.font === "GyrePagellaWeb") {this.config.availableFonts = []; this.config.preferredFont = ""; this.config.webFont = "Gyre-Pagella"} + else if (settings.font === "GyreTermesWeb") {this.config.availableFonts = []; this.config.preferredFont = ""; this.config.webFont = "Gyre-Termes"} + else if (settings.font === "LatinModernWeb") {this.config.availableFonts = []; this.config.preferredFont = ""; this.config.webFont = "Latin-Modern"} + else if (settings.font === "NeoEulerWeb") {this.config.availableFonts = []; this.config.preferredFont = ""; this.config.webFont = "Neo-Euler"} + } + var font = this.Font.findFont(this.config.availableFonts,this.config.preferredFont); + if (!font && this.allowWebFonts) {font = this.config.webFont; if (font) {this.webFonts = true}} + if (!font && this.config.imageFont) {font = this.config.imageFont; this.imgFonts = true} + if (font) { + this.fontInUse = font; this.fontDir += "/" + font; this.webfontDir += "/" + font; + this.require.push(this.fontDir+"/fontdata.js"); + if (this.imgFonts) { + this.require.push(this.directory+"/imageFonts.js"); + HUB.Startup.signal.Post("HTML-CSS Jax - using image fonts"); + } + } else { + MESSAGE(["CantFindFontUsing","Can't find a valid font using %1", + "["+this.config.availableFonts.join(", ")+"]"],null,3000); + this.fontInUse = "generic"; + this.FONTDATA = { + TeX_factor: 1, baselineskip: 1.2, lineH: .8, lineD: .2, ffLineH: .8, + FONTS: {}, + VARIANT: { + "normal": {fonts:[]}, "-generic-variant": {fonts:[]}, + "-largeOp": {fonts:[]}, "-smallOp": {fonts:[]} + }, RANGES: [], DELIMITERS: {}, RULECHAR: 0x2D, REMAP: {} + }; + HUB.Startup.signal.Post("HTML-CSS Jax - no valid font"); + } + this.require.push(MathJax.OutputJax.extensionDir+"/MathEvents.js"); + }, + + Startup: function () { + // Set up event handling + EVENT = MathJax.Extension.MathEvents.Event; + TOUCH = MathJax.Extension.MathEvents.Touch; + HOVER = MathJax.Extension.MathEvents.Hover; + this.ContextMenu = EVENT.ContextMenu; + this.Mousedown = EVENT.AltContextMenu; + this.Mouseover = HOVER.Mouseover; + this.Mouseout = HOVER.Mouseout; + this.Mousemove = HOVER.Mousemove; + + // Make hidden div for when math is in a display:none block + this.hiddenDiv = this.Element("div",{ + style:{visibility:"hidden", overflow:"hidden", position:"absolute", top:0, + height:"1px", width: "auto", padding:0, border:0, margin:0, + textAlign:"left", textIndent:0, textTransform:"none", + lineHeight:"normal", letterSpacing:"normal", wordSpacing:"normal"} + }); + if (!document.body.firstChild) {document.body.appendChild(this.hiddenDiv)} + else {document.body.insertBefore(this.hiddenDiv,document.body.firstChild)} + this.hiddenDiv = this.addElement(this.hiddenDiv,"div",{id:"MathJax_Hidden"}); + + // Determine pixels per inch + var div = this.addElement(this.hiddenDiv,"div",{style:{width:"5in"}}); + this.pxPerInch = div.offsetWidth/5; this.hiddenDiv.removeChild(div); + + // Markers used by getW + this.startMarker = this.createStrut(this.Element("span"),10,true); + this.endMarker = this.addText(this.Element("span"),"x").parentNode; + + // Used in getHD + this.HDspan = this.Element("span"); + if (this.operaHeightBug) {this.createStrut(this.HDspan,0)} + if (this.msieInlineBlockAlignBug) { + this.HDimg = this.addElement(this.HDspan,"img",{style:{height:"0px", width:"1px"}}); + try {this.HDimg.src = "about:blank"} catch(err) {} + } else { + this.HDimg = this.createStrut(this.HDspan,0); + } + + // Used in preTranslate to get scaling factors + this.EmExSpan = this.Element("span", + {style:{position:"absolute","font-size-adjust":"none"}}, + [ + ["span",{className:"MathJax_ExBox"}], + ["span",{className:"MathJax"}, + [["span",{className:"MathJax_EmBox"}]] + ] + ] + ); + + // Used in preTranslate to get linebreak width + this.linebreakSpan = this.Element("span",null, + [["hr",{style: {width:"100%", size:1, padding:0, border:0, margin:0}}]]); + + // Set up styles and preload web fonts + return AJAX.Styles(this.config.styles,["InitializeHTML",this]); + }, + + removeSTIXfonts: function (fonts) { + // + // Opera doesn't display large chunks of the STIX fonts, and + // Safari/Windows doesn't display Plane1, + // so disable STIX for these browsers. + // + for (var i = 0, m = fonts.length; i < m; i++) + {if (fonts[i] === "STIX") {fonts.splice(i,1); m--; i--;}} + if (this.config.preferredFont === "STIX") {this.config.preferredFont = fonts[0]} + }, + + PreloadWebFonts: function () { + if (!HTMLCSS.allowWebFonts || !HTMLCSS.config.preloadWebFonts) return; + for (var i = 0, m = HTMLCSS.config.preloadWebFonts.length; i < m; i++) { + var FONT = HTMLCSS.FONTDATA.FONTS[HTMLCSS.config.preloadWebFonts[i]]; + if (!FONT.available) {HTMLCSS.Font.testFont(FONT)} + } + }, + + // + // Handle initialization that requires styles to be set up + // + InitializeHTML: function () { + this.PreloadWebFonts(); + // + // Get the default sizes (need styles in place to do this) + // + document.body.appendChild(this.EmExSpan); + document.body.appendChild(this.linebreakSpan); + this.defaultEx = this.EmExSpan.firstChild.offsetHeight/60; + this.defaultEm = this.EmExSpan.lastChild.firstChild.offsetHeight/60; + this.defaultWidth = this.linebreakSpan.firstChild.offsetWidth; + document.body.removeChild(this.linebreakSpan); + document.body.removeChild(this.EmExSpan); + }, + + preTranslate: function (state) { + var scripts = state.jax[this.id], i, m = scripts.length, + script, prev, span, div, test, jax, ex, em, scale, maxwidth, relwidth = false, + linebreak = this.config.linebreaks.automatic, width = this.config.linebreaks.width; + if (linebreak) { + relwidth = (width.match(/^\s*(\d+(\.\d*)?%\s*)?container\s*$/) != null); + if (relwidth) {width = width.replace(/\s*container\s*/,"")} + else {maxwidth = this.defaultWidth} + if (width === "") {width = "100%"} + } else {maxwidth = 100000} // a big width, so no implicit line breaks + // + // Loop through the scripts + // + for (i = 0; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; + // + // Remove any existing output + // + prev = script.previousSibling; + if (prev && String(prev.className).match(/^MathJax(_Display)?( MathJax_Processing)?$/)) + {prev.parentNode.removeChild(prev)} + // + // Add the span, and a div if in display mode, + // then set the role and mark it as being processed + // + jax = script.MathJax.elementJax; if (!jax) continue; + jax.HTMLCSS = {display: (jax.root.Get("display") === "block")} + span = div = this.Element("span",{ + className:"MathJax", id:jax.inputID+"-Frame", isMathJax:true, jaxID:this.id, + oncontextmenu:EVENT.Menu, onmousedown: EVENT.Mousedown, + onmouseover:EVENT.Mouseover, onmouseout:EVENT.Mouseout, onmousemove:EVENT.Mousemove, + onclick:EVENT.Click, ondblclick:EVENT.DblClick + }); + if (HUB.Browser.noContextMenu) { + span.ontouchstart = TOUCH.start; + span.ontouchend = TOUCH.end; + } + if (jax.HTMLCSS.display) { + div = this.Element("div",{className:"MathJax_Display"}); + div.appendChild(span); + } else if (this.msieDisappearingBug) {span.style.display = "inline-block"} + // + // Mark math for screen readers + // (screen readers don't know about role="math" yet, so use "textbox" instead) + // + div.setAttribute("role","textbox"); div.setAttribute("aria-readonly","true"); + div.className += " MathJax_Processing"; + script.parentNode.insertBefore(div,script); + // + // Add the test span for determining scales and linebreak widths + // + script.parentNode.insertBefore(this.EmExSpan.cloneNode(true),script); + if (relwidth) {div.parentNode.insertBefore(this.linebreakSpan.cloneNode(true),div)} + } + // + // Determine the scaling factors for each script + // (this only requires one reflow rather than a reflow for each equation) + // + for (i = 0; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; + test = script.previousSibling; div = test.previousSibling; + jax = script.MathJax.elementJax; if (!jax) continue; + ex = test.firstChild.offsetHeight/60; + em = test.lastChild.firstChild.offsetHeight/60; + if (relwidth) {maxwidth = div.previousSibling.firstChild.offsetWidth} + if (ex === 0 || ex === "NaN") { + // can't read width, so move to hidden div for processing + // (this will cause a reflow for each math element that is hidden) + this.hiddenDiv.appendChild(div); + jax.HTMLCSS.isHidden = true; + ex = this.defaultEx; em = this.defaultEm; + if (relwidth) {maxwidth = this.defaultWidth} + } + scale = (this.config.matchFontHeight ? ex/this.TeX.x_height/em : 1); + scale = Math.floor(Math.max(this.config.minScaleAdjust/100,scale)*this.config.scale); + jax.HTMLCSS.scale = scale/100; jax.HTMLCSS.fontSize = scale+"%"; + jax.HTMLCSS.em = jax.HTMLCSS.outerEm = em; this.em = em * scale/100; jax.HTMLCSS.ex = ex; + jax.HTMLCSS.lineWidth = (linebreak ? this.length2em(width,1,maxwidth/this.em) : 1000000); + } + // + // Remove the test spans used for determining scales and linebreak widths + // + for (i = 0; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; + test = scripts[i].previousSibling; + jax = scripts[i].MathJax.elementJax; if (!jax) continue; + if (relwidth) { + span = test.previousSibling; + if (!jax.HTMLCSS.isHidden) {span = span.previousSibling} + span.parentNode.removeChild(span); + } + test.parentNode.removeChild(test); + } + // + // Set state variables used for displaying equations in chunks + // + state.HTMLCSSeqn = state.HTMLCSSlast = 0; state.HTMLCSSi = -1; + state.HTMLCSSchunk = this.config.EqnChunk; + state.HTMLCSSdelay = false; + }, + + Translate: function (script,state) { + if (!script.parentNode) return; + + // + // If we are supposed to do a chunk delay, do it + // + if (state.HTMLCSSdelay) { + state.HTMLCSSdelay = false; + HUB.RestartAfter(MathJax.Callback.Delay(this.config.EqnChunkDelay)); + } + + // + // Get the data about the math + // + var jax = script.MathJax.elementJax, math = jax.root, + span = document.getElementById(jax.inputID+"-Frame"), + div = (jax.HTMLCSS.display ? span.parentNode : span); + // + // Set the font metrics + // + this.em = MML.mbase.prototype.em = jax.HTMLCSS.em * jax.HTMLCSS.scale; + this.outerEm = jax.HTMLCSS.em; this.scale = jax.HTMLCSS.scale; + this.linebreakWidth = jax.HTMLCSS.lineWidth; + if (this.scale !== 1) {span.style.fontSize = jax.HTMLCSS.fontSize} + // + // Typeset the math + // + this.initImg(span); + this.initHTML(math,span); + math.setTeXclass(); + try {math.toHTML(span,div)} catch (err) { + if (err.restart) {while (span.firstChild) {span.removeChild(span.firstChild)}} + throw err; + } + // + // Put it in place, and remove the processing marker + // + if (jax.HTMLCSS.isHidden) {script.parentNode.insertBefore(div,script)} + div.className = div.className.split(/ /)[0]; + // + // Check if we are hiding the math until more is processed + // + if (this.hideProcessedMath) { + // + // Hide the math and don't let its preview be removed + // + div.className += " MathJax_Processed"; + if (script.MathJax.preview) { + jax.HTMLCSS.preview = script.MathJax.preview; + delete script.MathJax.preview; + } + // + // Check if we should show this chunk of equations + // + state.HTMLCSSeqn += (state.i - state.HTMLCSSi); state.HTMLCSSi = state.i; + if (state.HTMLCSSeqn >= state.HTMLCSSlast + state.HTMLCSSchunk) { + this.postTranslate(state,true); + state.HTMLCSSchunk = Math.floor(state.HTMLCSSchunk*this.config.EqnChunkFactor); + state.HTMLCSSdelay = true; // delay if there are more scripts + } + } + }, + + postTranslate: function (state,partial) { + var scripts = state.jax[this.id]; + if (!this.hideProcessedMath) return; + // + // Reveal this chunk of math + // + for (var i = state.HTMLCSSlast, m = state.HTMLCSSeqn; i < m; i++) { + var script = scripts[i]; + if (script && script.MathJax.elementJax) { + // + // Remove the processed marker + // + script.previousSibling.className = script.previousSibling.className.split(/ /)[0]; + var data = script.MathJax.elementJax.HTMLCSS; + // + // Remove the preview, if any + // + if (data.preview) { + data.preview.innerHTML = ""; + script.MathJax.preview = data.preview; + delete data.preview; + } + } + } + if (this.forceReflow) { + // WebKit can misplace some elements that should wrap to the next line + // but gets them right on a reflow, so force reflow by toggling a stylesheet + var sheet = (document.styleSheets||[])[0]||{}; + sheet.disabled = true; sheet.disabled = false; + } + // + // Save our place so we know what is revealed + // + state.HTMLCSSlast = state.HTMLCSSeqn; + }, + + getJaxFromMath: function (math) { + if (math.parentNode.className === "MathJax_Display") {math = math.parentNode} + do {math = math.nextSibling} while (math && math.nodeName.toLowerCase() !== "script"); + return HUB.getJaxFor(math); + }, + getHoverSpan: function (jax,math) {return jax.root.HTMLspanElement()}, + getHoverBBox: function (jax,span,math) { + var bbox = span.bbox, em = jax.HTMLCSS.outerEm; + var BBOX = {w:bbox.w*em, h:bbox.h*em, d:bbox.d*em}; + if (bbox.width) {BBOX.width = bbox.width} + return BBOX; + }, + + Zoom: function (jax,span,math,Mw,Mh) { + // + // Re-render at larger size + // + span.className = "MathJax"; + span.style.fontSize = jax.HTMLCSS.fontSize; + + // + // get em sizes (taken from HTMLCSS.preTranslate) + // + var emex = span.appendChild(this.EmExSpan.cloneNode(true)); + var em = emex.lastChild.firstChild.offsetHeight/60; + this.em = MML.mbase.prototype.em = em; + this.outerEm = em / jax.HTMLCSS.scale; + emex.parentNode.removeChild(emex); + + this.idPostfix = "-zoom"; jax.root.toHTML(span,span); this.idPostfix = ""; + var width = jax.root.HTMLspanElement().bbox.width; + if (width) { + // Handle full-width displayed equations + // FIXME: this is a hack for now + span.style.width = Math.floor(Mw-1.5*HTMLCSS.em)+"px"; span.style.display="inline-block"; + var id = (jax.root.id||"MathJax-Span-"+jax.root.spanID)+"-zoom"; + var child = document.getElementById(id).firstChild; + while (child && child.style.width !== width) {child = child.nextSibling} + if (child) {child.style.width = "100%"} + } + // + // Get height and width of zoomed math and original math + // + span.style.position = "absolute"; + if (!width) {math.style.position = "absolute"} + var zW = span.offsetWidth, zH = span.offsetHeight, + mH = math.offsetHeight, mW = math.offsetWidth; + if (mW === 0) {mW = math.parentNode.offsetWidth}; // IE7 gets mW == 0? + span.style.position = math.style.position = ""; + // + return {Y:-EVENT.getBBox(span).h, mW:mW, mH:mH, zW:zW, zH:zH}; + }, + + initImg: function (span) {}, + initHTML: function (math,span) {}, + initFont: function (name) { + var FONTS = HTMLCSS.FONTDATA.FONTS, AVAIL = HTMLCSS.config.availableFonts; + if (AVAIL && AVAIL.length && HTMLCSS.Font.testFont(FONTS[name])) + {FONTS[name].available = true; return null} + if (!this.allowWebFonts) {return null} + FONTS[name].isWebFont = true; + if (HTMLCSS.FontFaceBug) { + FONTS[name].family = name; + if (HTMLCSS.msieFontCSSBug) {FONTS[name].family += "-Web"} + } + return AJAX.Styles({"@font-face":this.Font.fontFace(name)}); + }, + + Remove: function (jax) { + var span = document.getElementById(jax.inputID+"-Frame"); + if (span) { + if (jax.HTMLCSS.display) {span = span.parentNode} + span.parentNode.removeChild(span); + } + delete jax.HTMLCSS; + }, + + getHD: function (span) { + var position = span.style.position; + span.style.position = "absolute"; + this.HDimg.style.height = "0px"; + span.appendChild(this.HDspan); + var HD = {h:span.offsetHeight}; + this.HDimg.style.height = HD.h+"px"; + HD.d = span.offsetHeight - HD.h; HD.h -= HD.d; + HD.h /= this.em; HD.d /= this.em; + span.removeChild(this.HDspan); + span.style.position = position; + return HD; + }, + getW: function (span) { + var W, H, w = (span.bbox||{}).w, start = span; + if (span.bbox && span.bbox.exactW) {return w} + if ((span.bbox && w >= 0 && !this.initialSkipBug) || this.negativeBBoxes || !span.firstChild) { + W = span.offsetWidth; H = span.parentNode.offsetHeight; + } else if (span.bbox && w < 0 && this.msieNegativeBBoxBug) { + W = -span.offsetWidth, H = span.parentNode.offsetHeight; + } else { + // IE can't deal with a space at the beginning, so put something else first + if (this.initialSkipBug) { + var position = span.style.position; span.style.position = "absolute"; + start = this.startMarker; span.insertBefore(start,span.firstChild) + } + span.appendChild(this.endMarker); + W = this.endMarker.offsetLeft - start.offsetLeft; + span.removeChild(this.endMarker); + if (this.initialSkipBug) {span.removeChild(start); span.style.position = position} + } + if (H != null) {span.parentNode.HH = H/this.em} + return W/this.em; + }, + Measured: function (span,parent) { + var bbox = span.bbox; + if (bbox.width == null && bbox.w && !bbox.isMultiline) { + var w = this.getW(span); + bbox.rw += w - bbox.w; + bbox.w = w; bbox.exactW = true; + } + if (!parent) {parent = span.parentNode} + if (!parent.bbox) {parent.bbox = bbox} + return span; + }, + Remeasured: function (span,parent) { + parent.bbox = this.Measured(span,parent).bbox; + }, + MeasureSpans: function (SPANS) { + var spans = [], span, i, m, bbox, start, end, W, parent; + // + // Insert the needed markers + // + for (i = 0, m = SPANS.length; i < m; i++) { + span = SPANS[i]; if (!span) continue; + bbox = span.bbox; parent = this.parentNode(span); + if (bbox.exactW || bbox.width || bbox.w === 0 || bbox.isMultiline) { + if (!parent.bbox) {parent.bbox = bbox} + continue; + } + if (this.negativeBBoxes || !span.firstChild || (bbox.w >= 0 && !this.initialSkipBug) || + (bbox.w < 0 && this.msieNegativeBBoxBug)) { + spans.push([span]); + } else if (this.initialSkipBug) { + start = this.startMarker.cloneNode(true); end = this.endMarker.cloneNode(true); + span.insertBefore(start,span.firstChild); span.appendChild(end); + spans.push([span,start,end,span.style.position]); span.style.position = "absolute"; + } else { + end = this.endMarker.cloneNode(true); + span.appendChild(end); spans.push([span,null,end]); + } + } + // + // Read the widths and heights + // + for (i = 0, m = spans.length; i < m; i++) { + span = spans[i][0]; bbox = span.bbox; parent = this.parentNode(span); + if ((bbox.w >= 0 && !this.initialSkipBug) || this.negativeBBoxes || !span.firstChild) { + W = span.offsetWidth; parent.HH = parent.offsetHeight/this.em; + } else if (bbox.w < 0 && this.msieNegativeBBoxBug) { + W = -span.offsetWidth, parent.HH = parent.offsetHeight/this.em; + } else { + W = spans[i][2].offsetLeft - ((spans[i][1]||{}).offsetLeft||0); + } + W /= this.em; + bbox.rw += W - bbox.w; + bbox.w = W; bbox.exactW = true; + if (!parent.bbox) {parent.bbox = bbox} + } + // + // Remove markers + // + for (i = 0, m = spans.length; i < m; i++) { + span = spans[i]; + if (span[1]) {span[1].parentNode.removeChild(span[1]), span[0].style.position = span[3]} + if (span[2]) {span[2].parentNode.removeChild(span[2])} + } + }, + + Em: function (m) { + if (Math.abs(m) < .0006) {return "0em"} + return m.toFixed(3).replace(/\.?0+$/,"") + "em"; + }, + EmRounded: function (m) { + m = (Math.round(m*HTMLCSS.em)+.05)/HTMLCSS.em; + if (Math.abs(m) < .0006) {return "0em"} + return m.toFixed(3).replace(/\.?0+$/,"") + "em"; + }, + unEm: function (m) { + return parseFloat(m); + }, + Px: function (m) { + m *= this.em; var s = (m < 0? "-" : ""); + return s+Math.abs(m).toFixed(1).replace(/\.?0+$/,"") + "px"; + }, + unPx: function (m) { + return parseFloat(m)/this.em; + }, + Percent: function (m) { + return (100*m).toFixed(1).replace(/\.?0+$/,"") + "%"; + }, + length2em: function (length,mu,size) { + if (typeof(length) !== "string") {length = length.toString()} + if (length === "") {return ""} + if (length === MML.SIZE.NORMAL) {return 1} + if (length === MML.SIZE.BIG) {return 2} + if (length === MML.SIZE.SMALL) {return .71} + if (length === "infinity") {return HTMLCSS.BIGDIMEN} + var factor = this.FONTDATA.TeX_factor; + if (length.match(/mathspace$/)) {return HTMLCSS.MATHSPACE[length]*factor} + var match = length.match(/^\s*([-+]?(?:\.\d+|\d+(?:\.\d*)?))?(pt|em|ex|mu|px|pc|in|mm|cm|%)?/); + var m = parseFloat(match[1]||"1"), unit = match[2]; + if (size == null) {size = 1}; if (mu == null) {mu = 1} + if (unit === "em") {return m * factor} + if (unit === "ex") {return m * HTMLCSS.TeX.x_height * factor} + if (unit === "%") {return m / 100 * size} + if (unit === "px") {return m / HTMLCSS.em} + if (unit === "pt") {return m / 10 * factor} // 10 pt to an em + if (unit === "pc") {return m * 1.2 * factor} // 12 pt to a pc + if (unit === "in") {return m * this.pxPerInch / HTMLCSS.em} + if (unit === "cm") {return m * this.pxPerInch / HTMLCSS.em / 2.54} // 2.54 cm to an inch + if (unit === "mm") {return m * this.pxPerInch / HTMLCSS.em / 25.4} // 10 mm to a cm + if (unit === "mu") {return m / 18 * factor * mu} // 18mu to an em for the scriptlevel + return m*factor*size; // relative to given size (or 1em as default) + }, + thickness2em: function (length,mu) { + var thick = HTMLCSS.TeX.rule_thickness; + if (length === MML.LINETHICKNESS.MEDIUM) {return thick} + if (length === MML.LINETHICKNESS.THIN) {return .67*thick} + if (length === MML.LINETHICKNESS.THICK) {return 1.67*thick} + return this.length2em(length,mu,thick); + }, + + getPadding: function (span) { + var padding = {top:0, right:0, bottom:0, left:0}, has = false; + for (var id in padding) {if (padding.hasOwnProperty(id)) { + var pad = span.style["padding"+id.charAt(0).toUpperCase()+id.substr(1)]; + if (pad) {padding[id] = this.length2em(pad); has = true;} + }} + return (has ? padding : false); + }, + getBorders: function (span) { + var border = {top:0, right:0, bottom:0, left:0}, css = {}, has = false; + for (var id in border) {if (border.hasOwnProperty(id)) { + var ID = "border"+id.charAt(0).toUpperCase()+id.substr(1); + var style = span.style[ID+"Style"]; + if (style) { + has = true; + border[id] = this.length2em(span.style[ID+"Width"]); + css[ID] = [span.style[ID+"Width"],span.style[ID+"Style"],span.style[ID+"Color"]].join(" "); + } + }} + border.css = css; + return (has ? border : false); + }, + setBorders: function (span,borders) { + if (borders) { + for (var id in borders.css) {if (borders.css.hasOwnProperty(id)) { + span.style[id] = borders.css[id]; + }} + } + }, + + createStrut: function (span,h,before) { + var strut = this.Element("span",{ + isMathJax: true, + style:{display:"inline-block", overflow:"hidden", height:h+"px", + width:"1px", marginRight:"-1px"} + }); + if (before) {span.insertBefore(strut,span.firstChild)} else {span.appendChild(strut)} + return strut; + }, + createBlank: function (span,w,before) { + var blank = this.Element("span",{ + isMathJax: true, + style: {display:"inline-block", overflow:"hidden", height:"1px", width:this.Em(w)} + }); + if (before) {span.insertBefore(blank,span.firstChild)} else {span.appendChild(blank)} + return blank; + }, + createShift: function (span,w,before) { + var space = this.Element("span",{style:{marginLeft:this.Em(w)}, isMathJax:true}); + if (before) {span.insertBefore(space,span.firstChild)} else {span.appendChild(space)} + return space; + }, + createSpace: function (span,h,d,w,color,isSpace) { + if (h < -d) {d = -h} // make sure h is above d + var H = this.Em(h+d), D = this.Em(-d); + if (this.msieInlineBlockAlignBug) {D = this.Em(HTMLCSS.getHD(span.parentNode).d-d)} + if (span.isBox || isSpace) { + var scale = (span.scale == null ? 1 : span.scale); + span.bbox = {exactW: true, h: h*scale, d: d*scale, w: w*scale, rw: w*scale, lw: 0}; + span.style.height = H; span.style.verticalAlign = D; + span.HH = (h+d)*scale; + } else { + span = this.addElement(span,"span",{style: {height:H, verticalAlign:D}, isMathJax:true}); + } + if (w >= 0) { + span.style.width = this.Em(w); + span.style.display = "inline-block"; + span.style.overflow = "hidden"; // for IE in quirks mode + } else { + if (this.msieNegativeSpaceBug) {span.style.height = ""} + span.style.marginLeft = this.Em(w); + if (HTMLCSS.safariNegativeSpaceBug && span.parentNode.firstChild == span) + {this.createBlank(span,0,true)} + } + if (color && color !== MML.COLOR.TRANSPARENT) { + span.style.backgroundColor = color; + span.style.position = "relative"; // make sure it covers earlier items + } + return span; + }, + createRule: function (span,h,d,w,color) { + if (h < -d) {d = -h} // make sure h is above d + var min = HTMLCSS.TeX.min_rule_thickness, f = 1; + // If rule is very thin, make it at least min_rule_thickness so it doesn't disappear + if (w > 0 && w*this.em < min) {w = min/this.em} + if (h+d > 0 && (h+d)*this.em < min) {f = 1/(h+d)*(min/this.em); h *= f; d *= f} + if (!color) {color = "solid"} else {color = "solid "+color} + color = this.Em(w)+" "+color; + var H = (f === 1 ? this.Em(h+d) : min+"px"), D = this.Em(-d); + var rule = this.addElement(span,"span",{ + style: {borderLeft: color, display: "inline-block", overflow:"hidden", + width:0, height:H, verticalAlign:D}, + bbox: {h:h, d:d, w:w, rw:w, lw:0, exactW:true}, noAdjust:true, HH:h+d, isMathJax:true + }); + if (w > 0 && rule.offsetWidth == 0) {rule.style.width = this.Em(w)} + if (span.isBox || span.className == "mspace") {span.bbox = rule.bbox, span.HH = h+d} + return rule; + }, + createFrame: function (span,h,d,w,t,style) { + if (h < -d) {d = -h} // make sure h is above d + var T = 2*t; + if (this.msieFrameSizeBug) {if (w < T) {w = T}; if (h+d < T) {h = T-d}} + if (this.msieBorderWidthBug) {T = 0} + var H = this.Em(h+d-T), D = this.Em(-d-t), W = this.Em(w-T); + var B = this.Em(t)+" "+style; + var frame = this.addElement(span,"span",{ + style: {border: B, display:"inline-block", overflow:"hidden", width:W, height:H}, + bbox: {h:h, d:d, w:w, rw:w, lw:0, exactW:true}, noAdjust: true, HH:h+d, isMathJax:true + }); + if (D) {frame.style.verticalAlign = D} + return frame; + }, + + // + // Find parent span (skipping over tags) + // + parentNode: function (span) { + var parent = span.parentNode; + if (parent.nodeName.toLowerCase() === "a") {parent = parent.parentNode} + return parent; + }, + + createStack: function (span,nobbox,w) { + if (this.msiePaddingWidthBug) {this.createStrut(span,0)} + var relativeW = String(w).match(/%$/); + var W = (!relativeW && w != null ? w : 0); + span = this.addElement(span,"span",{ + noAdjust: true, HH: 0, isMathJax: true, + style: {display:"inline-block", position:"relative", + width:(relativeW ? "100%" : this.Em(W)), height:0} + }); + if (!nobbox) { + span.parentNode.bbox = span.bbox = { + exactW: true, + h: -this.BIGDIMEN, d: -this.BIGDIMEN, + w:W, lw: this.BIGDIMEN, rw: (!relativeW && w != null ? w : -this.BIGDIMEN) + }; + if (relativeW) {span.bbox.width = w} + } + return span; + }, + createBox: function (span,w) { + var box = this.addElement(span,"span",{style:{position:"absolute"}, isBox: true, isMathJax:true}); + if (w != null) {box.style.width = w} + return box; + }, + addBox: function (span,box) { + box.style.position = "absolute"; box.isBox = box.isMathJax = true; + return span.appendChild(box); + }, + placeBox: function (span,x,y,noclip) { + span.isMathJax = true; + var parent = HTMLCSS.parentNode(span), bbox = span.bbox, BBOX = parent.bbox; + if (this.msiePlaceBoxBug) {this.addText(span,this.NBSP)} + if (this.imgSpaceBug) {this.addText(span,this.imgSpace)} + // Place the box + var HH, dx = 0; + if (span.HH != null) {HH = span.HH} + else if (bbox) {HH = Math.max(3,bbox.h+bbox.d)} + else {HH = span.offsetHeight/this.em} + if (!span.noAdjust) { + HH += 1; + HH = Math.round(HH*this.em)/this.em; // make this an integer number of pixels (for Chrome) + if (this.msieInlineBlockAlignBug) { + this.addElement(span,"img",{ + className:"MathJax_strut", border:0, src:"about:blank", isMathJax:true, + style:{width:0,height:this.Em(HH)} + }); + } else { + this.addElement(span,"span",{ + isMathJax: true, style:{display:"inline-block",width:0,height:this.Em(HH)} + }); + if (HTMLCSS.chromeHeightBug) + {HH -= (span.lastChild.offsetHeight - Math.round(HH*this.em))/this.em} + } + } + // Clip so that bbox doesn't include extra height and depth + if (bbox) { + if (this.initialSkipBug) { + if (bbox.lw < 0) {dx = bbox.lw; HTMLCSS.createBlank(span,-dx,true)} + if (bbox.rw > bbox.w) {HTMLCSS.createBlank(span,bbox.rw-bbox.w+.1)} + } + if (!this.msieClipRectBug && !bbox.noclip && !noclip) { + var dd = 3/this.em; + var H = (bbox.H == null ? bbox.h : bbox.H), D = (bbox.D == null ? bbox.d : bbox.D); + var t = HH - H - dd, b = HH + D + dd, l = bbox.lw - 3*dd, r = 1000; + if (this.initialSkipBug && bbox.lw < 0) {l = -3*dd} + if (bbox.isFixed) {r = bbox.width-l} + span.style.clip = "rect("+this.Em(t)+" "+this.Em(r)+" "+this.Em(b)+" "+this.Em(l)+")"; + } + } + // Place the box + span.style.top = this.Em(-y-HH); + span.style.left = this.Em(x+dx); + // Update the bounding box + if (bbox && BBOX) { + if (bbox.H != null && (BBOX.H == null || bbox.H + y > BBOX.H)) {BBOX.H = bbox.H + y} + if (bbox.D != null && (BBOX.D == null || bbox.D - y > BBOX.D)) {BBOX.D = bbox.D - y} + if (bbox.h + y > BBOX.h) {BBOX.h = bbox.h + y} + if (bbox.d - y > BBOX.d) {BBOX.d = bbox.d - y} + if (BBOX.H != null && BBOX.H <= BBOX.h) {delete BBOX.H} + if (BBOX.D != null && BBOX.D <= BBOX.d) {delete BBOX.D} + if (bbox.w + x > BBOX.w) { + BBOX.w = bbox.w + x; + if (BBOX.width == null) {parent.style.width = this.Em(BBOX.w)} + } + if (bbox.rw + x > BBOX.rw) {BBOX.rw = bbox.rw + x} + if (bbox.lw + x < BBOX.lw) {BBOX.lw = bbox.lw + x} + if (bbox.width != null && !bbox.isFixed) { + if (BBOX.width == null) { + parent.style.width = BBOX.width = "100%"; + if (bbox.minWidth) {parent.style.minWidth = BBOX.minWidth = bbox.minWidth} + } + span.style.width = bbox.width; + } + } + }, + alignBox: function (span,align,y) { + this.placeBox(span,0,y); // set y position (and left aligned) + var bbox = span.bbox; if (bbox.isMultiline) return; + var isRelative = bbox.width != null && !bbox.isFixed; + var r = 0, c = -bbox.w/2, l = "50%"; + if (this.initialSkipBug) {r = bbox.w-bbox.rw-.1; c += bbox.lw} + if (this.msieMarginScaleBug) {c = (c*this.em) + "px"} else {c = this.Em(c)} + if (isRelative) {c = ""; l = (50 - parseFloat(bbox.width)/2) + "%"} + HUB.Insert(span.style,({ + right: {left:"", right: this.Em(r)}, + center: {left:l, marginLeft: c} + })[align]); + }, + setStackWidth: function (span,w) { + if (typeof(w) === "number") { + span.style.width = this.Em(Math.max(0,w)); + var bbox = span.bbox; if (bbox) {bbox.w = w; bbox.exactW = true}; + bbox = span.parentNode.bbox; if (bbox) {bbox.w = w; bbox.exactW = true}; + } else { + span.style.width = span.parentNode.style.width = "100%"; + if (span.bbox) {span.bbox.width = w} + if (span.parentNode.bbox) {span.parentNode.bbox.width = w} + } + }, + + createDelimiter: function (span,code,HW,scale,font) { + if (!code) { + span.bbox = {h:0, d:0, w:this.TeX.nulldelimiterspace, lw: 0}; + span.bbox.rw = span.bbox.w; + this.createSpace(span,span.bbox.h,span.bbox.d,span.bbox.w); + return; + } + if (!scale) {scale = 1}; + if (!(HW instanceof Array)) {HW = [HW,HW]} + var hw = HW[1]; HW = HW[0]; + var delim = {alias: code}; + while (delim.alias) { + code = delim.alias; delim = this.FONTDATA.DELIMITERS[code]; + if (!delim) {delim = {HW: [0,this.FONTDATA.VARIANT[MML.VARIANT.NORMAL]]}} + } + if (delim.load) {HUB.RestartAfter(AJAX.Require(this.fontDir+"/fontdata-"+delim.load+".js"))} + for (var i = 0, m = delim.HW.length; i < m; i++) { + if (delim.HW[i][0]*scale >= HW-.01 || (i == m-1 && !delim.stretch)) { + if (delim.HW[i][2]) {scale *= delim.HW[i][2]} + if (delim.HW[i][3]) {code = delim.HW[i][3]} + var chr = this.addElement(span,"span"); + this.createChar(chr,[code,delim.HW[i][1]],scale,font); + span.bbox = chr.bbox; + span.offset = .65 * span.bbox.w; + span.scale = scale; + return; + } + } + if (delim.stretch) {this["extendDelimiter"+delim.dir](span,hw,delim.stretch,scale,font)} + }, + extendDelimiterV: function (span,H,delim,scale,font) { + var stack = this.createStack(span,true); + var top = this.createBox(stack), bot = this.createBox(stack); + this.createChar(top,(delim.top||delim.ext),scale,font); + this.createChar(bot,(delim.bot||delim.ext),scale,font); + var ext = {bbox:{w:0,lw:0,rw:0}}, mid = ext, EXT; + var h = top.bbox.h + top.bbox.d + bot.bbox.h + bot.bbox.d; + var y = -top.bbox.h; this.placeBox(top,0,y,true); y -= top.bbox.d; + if (delim.mid) { + mid = this.createBox(stack); this.createChar(mid,delim.mid,scale,font); + h += mid.bbox.h + mid.bbox.d; + } + if (delim.min && H < h*delim.min) {H = h*delim.min} + if (H > h) { + ext = this.Element("span"); this.createChar(ext,delim.ext,scale,font); + var eH = ext.bbox.h + ext.bbox.d, eh = eH - .05, n, N, k = (delim.mid ? 2 : 1); + N = n = Math.min(Math.ceil((H-h)/(k*eh)), this.maxStretchyParts); + if (!delim.fullExtenders) {eh = (H-h)/(k*n)} + var dy = (n/(n+1))*(eH - eh); eh = eH - dy; y += dy + eh - ext.bbox.h; + while (k-- > 0) { + while (n-- > 0) { + if (!this.msieCloneNodeBug) {EXT = ext.cloneNode(true)} + else {EXT = this.Element("span"); this.createChar(EXT,delim.ext,scale,font)} + EXT.bbox = ext.bbox; + y -= eh; this.placeBox(this.addBox(stack,EXT),0,y,true); + } + y += dy - ext.bbox.d; + if (delim.mid && k) { + this.placeBox(mid,0,y-mid.bbox.h,true); n = N; + y += -(mid.bbox.h + mid.bbox.d) + dy + eh - ext.bbox.h; + } + } + } else { + y += (h - H)/2; + if (delim.mid) {this.placeBox(mid,0,y-mid.bbox.h,true); y += -(mid.bbox.h + mid.bbox.d)} + y += (h - H)/2; + } + this.placeBox(bot,0,y-bot.bbox.h,true); y -= bot.bbox.h + bot.bbox.d; + span.bbox = { + w: Math.max(top.bbox.w,ext.bbox.w,bot.bbox.w,mid.bbox.w), + lw: Math.min(top.bbox.lw,ext.bbox.lw,bot.bbox.lw,mid.bbox.lw), + rw: Math.max(top.bbox.rw,ext.bbox.rw,bot.bbox.rw,mid.bbox.rw), + h: 0, d: -y, exactW: true + } + span.scale = scale; + span.offset = .55 * span.bbox.w; + span.isMultiChar = true; + this.setStackWidth(stack,span.bbox.w); + }, + extendDelimiterH: function (span,W,delim,scale,font) { + var stack = this.createStack(span,true); + var left = this.createBox(stack), right = this.createBox(stack); + this.createChar(left,(delim.left||delim.rep),scale,font); + this.createChar(right,(delim.right||delim.rep),scale,font); + var rep = this.Element("span"); this.createChar(rep,delim.rep,scale,font); + var mid = {bbox: {h:-this.BIGDIMEN, d:-this.BIGDIMEN}}, REP; + this.placeBox(left,-left.bbox.lw,0,true); + var w = (left.bbox.rw - left.bbox.lw) + (right.bbox.rw - right.bbox.lw) - .05, + x = left.bbox.rw - left.bbox.lw - .025, dx; + if (delim.mid) { + mid = this.createBox(stack); this.createChar(mid,delim.mid,scale,font); + w += mid.bbox.w; + } + if (delim.min && W < w*delim.min) {W = w*delim.min} + if (W > w) { + var rW = rep.bbox.rw-rep.bbox.lw, rw = rW - .05, n, N, k = (delim.mid ? 2 : 1); + N = n = Math.min(Math.ceil((W-w)/(k*rw)), this.maxStretchyParts); + if (!delim.fillExtenders) {rw = (W-w)/(k*n)} + dx = (n/(n+1))*(rW - rw); rw = rW - dx; x -= rep.bbox.lw + dx; + while (k-- > 0) { + while (n-- > 0) { + if (!this.cloneNodeBug) {REP = rep.cloneNode(true)} + else {REP = this.Element("span"); this.createChar(REP,delim.rep,scale,font)} + REP.bbox = rep.bbox; + this.placeBox(this.addBox(stack,REP),x,0,true); x += rw; + } + if (delim.mid && k) {this.placeBox(mid,x,0,true); x += mid.bbox.w - dx; n = N} + } + } else { + x -= (w - W)/2; + if (delim.mid) {this.placeBox(mid,x,0,true); x += mid.bbox.w}; + x -= (w - W)/2; + } + this.placeBox(right,x,0,true); + span.bbox = { + w: x+right.bbox.rw, lw: 0, rw: x+right.bbox.rw, + H: Math.max(left.bbox.h,rep.bbox.h,right.bbox.h,mid.bbox.h), + D: Math.max(left.bbox.d,rep.bbox.d,right.bbox.d,mid.bbox.d), + h: rep.bbox.h, d: rep.bbox.d, exactW: true + } + span.scale = scale; + span.isMultiChar = true; + this.setStackWidth(stack,span.bbox.w); + }, + createChar: function (span,data,scale,font) { + span.isMathJax = true; + var SPAN = span, text = "", variant = {fonts: [data[1]], noRemap:true}; + if (font && font === MML.VARIANT.BOLD) {variant.fonts = [data[1]+"-bold",data[1]]} + if (typeof(data[1]) !== "string") {variant = data[1]} + if (data[0] instanceof Array) { + for (var i = 0, m = data[0].length; i < m; i++) {text += String.fromCharCode(data[0][i])} + } else {text = String.fromCharCode(data[0])} + if (data[4]) {scale *= data[4]} + if (scale !== 1 || data[3]) { + SPAN = this.addElement(span,"span",{style:{fontSize: this.Percent(scale)}, scale:scale, isMathJax:true}); + this.handleVariant(SPAN,variant,text); + span.bbox = SPAN.bbox; + } else {this.handleVariant(span,variant,text)} + if (data[2]) {span.style.marginLeft = this.Em(data[2])} // x offset + if (data[3]) { // y offset + span.firstChild.style.verticalAlign = this.Em(data[3]); + span.bbox.h += data[3]; if (span.bbox.h < 0) {span.bbox.h = 0} + } + if (data[5]) {span.bbox.h += data[5]} // extra height + if (data[6]) {span.bbox.d += data[6]} // extra depth + // Handle combining characters by adding a non-breaking space so it shows up + if (this.AccentBug && span.bbox.w === 0) {SPAN.firstChild.nodeValue += this.NBSP} + }, + positionDelimiter: function (span,h) { + h -= span.bbox.h; span.bbox.d -= h; span.bbox.h += h; + if (h) { + if (this.safariVerticalAlignBug || this.konquerorVerticalAlignBug || + (this.operaVerticalAlignBug && span.isMultiChar)) { + if (span.firstChild.style.display === "" && span.style.top !== "") + {span = span.firstChild; h -= HTMLCSS.unEm(span.style.top)} + span.style.position = "relative"; + span.style.top = this.Em(-h); + } else { + span.style.verticalAlign = this.Em(h); + if (HTMLCSS.ffVerticalAlignBug) {HTMLCSS.createRule(span.parentNode,span.bbox.h,0,0)} + } + } + }, + + handleVariant: function (span,variant,text) { + var newtext = "", n, c, font, VARIANT, SPAN = span, force = !!span.style.fontFamily; + if (text.length === 0) return; + if (!span.bbox) { + span.bbox = { + w: 0, h: -this.BIGDIMEN, d: -this.BIGDIMEN, + rw: -this.BIGDIMEN, lw: this.BIGDIMEN + }; + } + if (!variant) {variant = this.FONTDATA.VARIANT[MML.VARIANT.NORMAL]} + VARIANT = variant; + for (var i = 0, m = text.length; i < m; i++) { + variant = VARIANT; + n = text.charCodeAt(i); c = text.charAt(i); + if (n >= 0xD800 && n < 0xDBFF) { + i++; n = (((n-0xD800)<<10)+(text.charCodeAt(i)-0xDC00))+0x10000; + if (this.FONTDATA.RemapPlane1) { + var nv = this.FONTDATA.RemapPlane1(n,variant); + n = nv.n; variant = nv.variant; + } + } else { + var id, M, RANGES = this.FONTDATA.RANGES; + for (id = 0, M = RANGES.length; id < M; id++) { + if (RANGES[id].name === "alpha" && variant.noLowerCase) continue; + var N = variant["offset"+RANGES[id].offset]; + if (N && n >= RANGES[id].low && n <= RANGES[id].high) { + if (RANGES[id].remap && RANGES[id].remap[n]) { + n = N + RANGES[id].remap[n]; + } else { + n = n - RANGES[id].low + N; + if (RANGES[id].add) {n += RANGES[id].add} + } + if (variant["variant"+RANGES[id].offset]) + {variant = this.FONTDATA.VARIANT[variant["variant"+RANGES[id].offset]]} + break; + } + } + } + if (variant.remap && variant.remap[n]) { + if (variant.remap[n] instanceof Array) { + var remap = variant.remap[n]; + n = remap[0]; variant = this.FONTDATA.VARIANT[remap[1]]; + } else if (typeof(variant.remap[n]) === "string") { + text = variant.remap[n]+text.substr(i+1); + i = 0; m = text.length; n = text.charCodeAt(0); + } else { + n = variant.remap[n]; + if (variant.remap.variant) {variant = this.FONTDATA.VARIANT[variant.remap.variant]} + } + } + if (this.FONTDATA.REMAP[n] && !variant.noRemap) { + n = this.FONTDATA.REMAP[n]; + if (n instanceof Array) {variant = this.FONTDATA.VARIANT[n[1]]; n = n[0]} + if (typeof(n) === "string") { + text = n+text.substr(i+1); + i = 0; m = text.length; n = n.charCodeAt(0); + } + } + font = this.lookupChar(variant,n); c = font[n]; + if (force || (!this.checkFont(font,SPAN.style) && !c[5].img)) { + if (newtext.length) {this.addText(SPAN,newtext); newtext = ""}; + var addSpan = !!SPAN.style.fontFamily || !!span.style.fontStyle || + !!span.style.fontWeight || !font.directory || force; force = false; + if (SPAN !== span) {addSpan = !this.checkFont(font,span.style); SPAN = span} + if (addSpan) {SPAN = this.addElement(span,"span",{isMathJax:true, subSpan:true})} + this.handleFont(SPAN,font,SPAN !== span); + } + newtext = this.handleChar(SPAN,font,c,n,newtext); + if (!(c[5]||{}).space) { + if (c[0]/1000 > span.bbox.h) {span.bbox.h = c[0]/1000} + if (c[1]/1000 > span.bbox.d) {span.bbox.d = c[1]/1000} + } + if (span.bbox.w + c[3]/1000 < span.bbox.lw) {span.bbox.lw = span.bbox.w + c[3]/1000} + if (span.bbox.w + c[4]/1000 > span.bbox.rw) {span.bbox.rw = span.bbox.w + c[4]/1000} + span.bbox.w += c[2]/1000; + } + if (newtext.length) {this.addText(SPAN,newtext)} + if (span.scale && span.scale !== 1) { + span.bbox.h *= span.scale; span.bbox.d *= span.scale; + span.bbox.w *= span.scale; span.bbox.lw *= span.scale; span.bbox.rw *= span.scale; + } + if (text.length == 1 && font.skew && font.skew[n]) {span.bbox.skew = font.skew[n]} + }, + checkFont: function (font,style) { + var weight = (style.fontWeight||"normal"); + if (weight.match(/^\d+$/)) {weight = (parseInt(weight) >= 600 ? "bold" : "normal")} + return (font.family.replace(/'/g,"") === style.fontFamily.replace(/'/g,"") && + (font.style||"normal") === (style.fontStyle||"normal") && + (font.weight||"normal") === weight); + }, + + handleFont: function (span,font,force) { + span.style.fontFamily = font.family; + if (!font.directory) {span.style.fontSize = Math.floor(100/HTMLCSS.scale+.5) + "%"} + if (!(HTMLCSS.FontFaceBug && font.isWebFont)) { + var style = font.style || "normal", weight = font.weight || "normal"; + if (style !== "normal" || force) {span.style.fontStyle = style} + if (weight !== "normal" || force) {span.style.fontWeight = weight} + } + }, + + handleChar: function (span,font,c,n,text) { + var C = c[5]; + if (C.space) { + if (text.length) {this.addText(span,text)} + HTMLCSS.createShift(span,c[2]/1000); + return ""; + } + if (C.img) {return this.handleImg(span,font,c,n,text)} + if (C.isUnknown && this.FONTDATA.DELIMITERS[n]) { + if (text.length) {this.addText(span,text)} + var scale = span.scale; + HTMLCSS.createDelimiter(span,n,0,1,font); + if (this.FONTDATA.DELIMITERS[n].dir === "V") { + span.style.verticalAlign = this.Em(span.bbox.d); + span.bbox.h += span.bbox.d; span.bbox.d = 0; + } + span.scale = scale; + c[0] = span.bbox.h*1000; c[1] = span.bbox.d*1000; + c[2] = span.bbox.w*1000; c[3] = span.bbox.lw*1000; c[4] = span.bbox.rw*1000; + return ""; + } + if (C.c == null) { + if (n <= 0xFFFF) {C.c = String.fromCharCode(n)} else { + var N = n - 0x10000; + C.c = String.fromCharCode((N>>10)+0xD800) + + String.fromCharCode((N&0x3FF)+0xDC00); + } + } + if (C.rfix) {this.addText(span,text+C.c); HTMLCSS.createShift(span,C.rfix/1000); return ""} + if (c[2] || !this.msieAccentBug || text.length) {return text + C.c} + // Handle IE accent clipping bug + HTMLCSS.createShift(span,c[3]/1000); + HTMLCSS.createShift(span,(c[4]-c[3])/1000); + this.addText(span,C.c); + HTMLCSS.createShift(span,-c[4]/1000); + return ""; + }, + handleImg: function (span,font,c,n,text) {return text}, // replaced by imageFont extension + + lookupChar: function (variant,n) { + var i, m; + if (!variant.FONTS) { + var FONTS = this.FONTDATA.FONTS; + var fonts = (variant.fonts || this.FONTDATA.VARIANT.normal.fonts); + if (!(fonts instanceof Array)) {fonts = [fonts]} + if (variant.fonts != fonts) {variant.fonts = fonts} + variant.FONTS = []; + for (i = 0, m = fonts.length; i < m; i++) { + if (FONTS[fonts[i]]) { + variant.FONTS.push(FONTS[fonts[i]]); + FONTS[fonts[i]].name = fonts[i]; // FIXME: should really be in the font files + } + } + } + for (i = 0, m = variant.FONTS.length; i < m; i++) { + var font = variant.FONTS[i]; + if (typeof(font) === "string") { + delete variant.FONTS; this.loadFont(font); + } + if (font[n]) { + if (font[n].length === 5) {font[n][5] = {}} + if (HTMLCSS.allowWebFonts && !font.available) + {this.loadWebFont(font)} else {return font} + } else {this.findBlock(font,n)} + } + return this.unknownChar(variant,n); + }, + + unknownChar: function (variant,n) { + var unknown = (variant.defaultFont || {family:HTMLCSS.config.undefinedFamily}); + if (variant.bold) {unknown.weight = "bold"}; if (variant.italic) {unknown.style = "italic"} + if (!unknown[n]) {unknown[n] = [800,200,500,0,500,{isUnknown:true}]} // [h,d,w,lw,rw,{data}] + HUB.signal.Post(["HTML-CSS Jax - unknown char",n,variant]); + return unknown; + }, + + findBlock: function (font,c) { + if (font.Ranges) { + // FIXME: do binary search? + for (var i = 0, m = font.Ranges.length; i < m; i++) { + if (c < font.Ranges[i][0]) return; + if (c <= font.Ranges[i][1]) { + var file = font.Ranges[i][2]; + for (var j = font.Ranges.length-1; j >= 0; j--) + {if (font.Ranges[j][2] == file) {font.Ranges.splice(j,1)}} + this.loadFont(font.directory+"/"+file+".js"); + } + } + } + }, + + loadFont: function (file) { + var queue = MathJax.Callback.Queue(); + queue.Push(["Require",AJAX,this.fontDir+"/"+file]); + if (this.imgFonts) { + if (!MathJax.isPacked) {file = file.replace(/\/([^\/]*)$/,HTMLCSS.imgPacked+"/$1")} + queue.Push(["Require",AJAX,this.webfontDir+"/png/"+file]); + } + HUB.RestartAfter(queue.Push({})); + }, + + loadWebFont: function (font) { + font.available = font.isWebFont = true; + if (HTMLCSS.FontFaceBug) { + font.family = font.name; + if (HTMLCSS.msieFontCSSBug) {font.family += "-Web"} + } + HUB.RestartAfter(this.Font.loadWebFont(font)); + }, + loadWebFontError: function (font,done) { + // + // After the first web font fails to load, switch to image fonts, if possible + // otherwise, give up on web fonts all together + // + HUB.Startup.signal.Post("HTML-CSS Jax - disable web fonts"); + font.isWebFont = false; + if (this.config.imageFont && this.config.imageFont === this.fontInUse) { + this.imgFonts = true; + HUB.Startup.signal.Post("HTML-CSS Jax - switch to image fonts"); + HUB.Startup.signal.Post("HTML-CSS Jax - using image fonts"); + MESSAGE(["WebFontNotAvailable","Web-Fonts not available -- using image fonts instead"],null,3000); + AJAX.Require(this.directory+"/imageFonts.js",done); + } else { + this.allowWebFonts = false; + done(); + } + }, + + Element: MathJax.HTML.Element, + addElement: MathJax.HTML.addElement, + TextNode: MathJax.HTML.TextNode, + addText: MathJax.HTML.addText, + ucMatch: MathJax.HTML.ucMatch, + + BIGDIMEN: 10000000, + ID: 0, idPostfix: "", + GetID: function () {this.ID++; return this.ID}, + + MATHSPACE: { + veryverythinmathspace: 1/18, + verythinmathspace: 2/18, + thinmathspace: 3/18, + mediummathspace: 4/18, + thickmathspace: 5/18, + verythickmathspace: 6/18, + veryverythickmathspace: 7/18, + negativeveryverythinmathspace: -1/18, + negativeverythinmathspace: -2/18, + negativethinmathspace: -3/18, + negativemediummathspace: -4/18, + negativethickmathspace: -5/18, + negativeverythickmathspace: -6/18, + negativeveryverythickmathspace: -7/18 + }, + + TeX: { + x_height: .430554, + quad: 1, + num1: .676508, + num2: .393732, + num3: .44373, + denom1: .685951, + denom2: .344841, + sup1: .412892, + sup2: .362892, + sup3: .288888, + sub1: .15, + sub2: .247217, + sup_drop: .386108, + sub_drop: .05, + delim1: 2.39, + delim2: 1.0, + axis_height: .25, + rule_thickness: .06, + big_op_spacing1: .111111, + big_op_spacing2: .166666, + big_op_spacing3: .2, + big_op_spacing4: .6, + big_op_spacing5: .1, + + scriptspace: .1, + nulldelimiterspace: .12, + delimiterfactor: 901, + delimitershortfall: .1, // originally .3, + + min_rule_thickness: 1.25 // in pixels + }, + + NBSP: "\u00A0", + + rfuzz: 0 // adjustment to rule placements in roots + }); + + MathJax.Hub.Register.StartupHook("mml Jax Ready",function () { + + MML = MathJax.ElementJax.mml; + + MML.mbase.Augment({ + toHTML: function (span) { + span = this.HTMLcreateSpan(span); if (this.type != "mrow") {span = this.HTMLhandleSize(span)} + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {this.data[i].toHTML(span)}} + var stretchy = this.HTMLcomputeBBox(span); + var h = span.bbox.h, d = span.bbox.d; + for (i = 0, m = stretchy.length; i < m; i++) {stretchy[i].HTMLstretchV(span,h,d)} + if (stretchy.length) {this.HTMLcomputeBBox(span,true)} + if (this.HTMLlineBreaks(span)) {span = this.HTMLmultiline(span)} + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLlineBreaks: function () {return false}, + HTMLmultiline: function () {MML.mbase.HTMLautoloadFile("multiline")}, + HTMLcomputeBBox: function (span,full,i,m) { + if (i == null) {i = 0}; if (m == null) {m = this.data.length} + var BBOX = span.bbox = {exactW: true}, stretchy = []; + while (i < m) { + var core = this.data[i]; if (!core) continue; + if (!full && core.HTMLcanStretch("Vertical")) + {stretchy.push(core); core = (core.CoreMO()||core)} + this.HTMLcombineBBoxes(core,BBOX); i++; + } + this.HTMLcleanBBox(BBOX); + return stretchy; + }, + HTMLcombineBBoxes: function (core,BBOX) { + if (BBOX.w == null) {this.HTMLemptyBBox(BBOX)} + var child = (core.bbox ? core : core.HTMLspanElement()); + if (!child || !child.bbox) return; + var bbox = child.bbox; + if (bbox.d > BBOX.d) {BBOX.d = bbox.d} + if (bbox.h > BBOX.h) {BBOX.h = bbox.h} + if (bbox.D != null && bbox.D > BBOX.D) {BBOX.D = bbox.D} + if (bbox.H != null && bbox.H > BBOX.H) {BBOX.H = bbox.H} + if (child.style.paddingLeft) {BBOX.w += HTMLCSS.unEm(child.style.paddingLeft)*(child.scale||1)} + if (BBOX.w + bbox.lw < BBOX.lw) {BBOX.lw = BBOX.w + bbox.lw} + if (BBOX.w + bbox.rw > BBOX.rw) {BBOX.rw = BBOX.w + bbox.rw} + BBOX.w += bbox.w; + if (child.style.paddingRight) {BBOX.w += HTMLCSS.unEm(child.style.paddingRight)*(child.scale||1)} + if (bbox.width) {BBOX.width = bbox.width; BBOX.minWidth = bbox.minWidth} + if (bbox.ic) {BBOX.ic = bbox.ic} else {delete BBOX.ic} + if (BBOX.exactW && !bbox.exactW) {delete BBOX.exactW} + }, + HTMLemptyBBox: function (BBOX) { + BBOX.h = BBOX.d = BBOX.H = BBOX.D = BBOX.rw = -HTMLCSS.BIGDIMEN; + BBOX.w = 0; BBOX.lw = HTMLCSS.BIGDIMEN; + return BBOX; + }, + HTMLcleanBBox: function (BBOX) { + if (BBOX.h === this.BIGDIMEN) + {BBOX.h = BBOX.d = BBOX.H = BBOX.D = BBOX.w = BBOX.rw = BBOX.lw = 0} + if (BBOX.D <= BBOX.d) {delete BBOX.D}; if (BBOX.H <= BBOX.h) {delete BBOX.H} + }, + HTMLzeroBBox: function () {return {h:0, d:0, w:0, lw: 0, rw:0}}, + HTMLcanStretch: function (direction) { + if (this.isEmbellished()) { + var core = this.Core(); + if (core && core !== this) {return core.HTMLcanStretch(direction)} + } + return false; + }, + HTMLstretchH: function (box,W) {return this.HTMLspanElement()}, + HTMLstretchV: function (box,h,d) {return this.HTMLspanElement()}, + HTMLnotEmpty: function (data) { + while (data) { + if ((data.type !== "mrow" && data.type !== "texatom") || + data.data.length > 1) {return true} + data = data.data[0]; + } + return false; + }, + + HTMLmeasureChild: function (n,box) { + if (this.data[n]) {HTMLCSS.Measured(this.data[n].toHTML(box),box)} + else {box.bbox = this.HTMLzeroBBox()} + }, + HTMLboxChild: function (n,box) { + if (!this.data[n]) {this.SetData(n,MML.mrow())} + return this.data[n].toHTML(box); + }, + + HTMLcreateSpan: function (span) { + if (this.spanID) { + var SPAN = this.HTMLspanElement(); + if (SPAN && (SPAN.parentNode === span || (SPAN.parentNode||{}).parentNode === span)) { + while (SPAN.firstChild) {SPAN.removeChild(SPAN.firstChild)} + SPAN.bbox = this.HTMLzeroBBox(); + SPAN.scale = 1; SPAN.isMultChar = SPAN.HH = null; + SPAN.style.cssText = ""; + return SPAN; + } + } + if (this.href) {span = HTMLCSS.addElement(span,"a",{href:this.href, isMathJax:true})} + span = HTMLCSS.addElement(span,"span",{className: this.type, isMathJax:true}); + if (HTMLCSS.imgHeightBug) {span.style.display = "inline-block"} + if (this["class"]) {span.className += " "+this["class"]} + if (!this.spanID) {this.spanID = HTMLCSS.GetID()} + span.id = (this.id || "MathJax-Span-"+this.spanID) + HTMLCSS.idPostfix; + span.bbox = this.HTMLzeroBBox(); this.styles = {}; + if (this.style) { + span.style.cssText = this.style; + if (span.style.fontSize) {this.mathsize = span.style.fontSize; span.style.fontSize = ""} + this.styles = {border:HTMLCSS.getBorders(span), padding:HTMLCSS.getPadding(span)} + if (this.styles.border) {span.style.border = ""} // IE needs "0px none"? + if (this.styles.padding) {span.style.padding = ""} + } + if (this.href) {span.parentNode.bbox = span.bbox} + return span; + }, + HTMLspanElement: function () { + if (!this.spanID) {return null} + return document.getElementById((this.id||"MathJax-Span-"+this.spanID)+HTMLCSS.idPostfix); + }, + + HTMLhandleVariant: function (span,variant,text) {HTMLCSS.handleVariant(span,variant,text)}, + + HTMLhandleSize: function (span) { + if (!span.scale) { + span.scale = this.HTMLgetScale(); + if (span.scale !== 1) {span.style.fontSize = HTMLCSS.Percent(span.scale)} + } + return span; + }, + + HTMLhandleDir: function (span) { + var dir = this.Get("dir",true); // only get value if not the default + if (dir) {span.dir = dir} + return span; + }, + + HTMLhandleColor: function (span) { + var values = this.getValues("mathcolor","color"); + if (this.mathbackground) {values.mathbackground = this.mathbackground} + if (this.background) {values.background = this.background} + if (this.style && span.style.backgroundColor) { + values.mathbackground = span.style.backgroundColor; + span.style.backgroundColor = "transparent"; + } + var borders = (this.styles||{}).border, padding = (this.styles||{}).padding; + if (values.color && !this.mathcolor) {values.mathcolor = values.color} + if (values.background && !this.mathbackground) {values.mathbackground = values.background} + if (values.mathcolor) {span.style.color = values.mathcolor} + if ((values.mathbackground && values.mathbackground !== MML.COLOR.TRANSPARENT) || + borders || padding) { + var bbox = span.bbox, dd = (bbox.exact ? 0 : 1/HTMLCSS.em), lW = 0, rW = 0, + lpad = span.style.paddingLeft, rpad = span.style.paddingRight; + if (this.isToken) {lW = bbox.lw; rW = bbox.rw - bbox.w} + if (lpad !== "") {lW += HTMLCSS.unEm(lpad)*(span.scale||1)} + if (rpad !== "") {rW -= HTMLCSS.unEm(rpad)*(span.scale||1)} + var dw = (HTMLCSS.PaddingWidthBug || bbox.keepPadding || bbox.exactW ? 0 : rW - lW); + var W = Math.max(0,HTMLCSS.getW(span) + dw); + var H = bbox.h + bbox.d, D = -bbox.d, lp = 0, rp = 0; + if (W > 0) {W += 2*dd; lW -= dd}; if (H > 0) {H += 2*dd; D -= dd}; rW = -W-lW; + if (borders) { + rW -= borders.right; D -= borders.bottom; lp += borders.left; rp += borders.right; + bbox.h += borders.top; bbox.d += borders.bottom; + bbox.w += borders.left + borders.right; + bbox.lw -= borders.left; bbox.rw += borders.right; + } + if (padding) { + H += padding.top + padding.bottom; W += padding.left + padding.right; + rW -= padding.right; D -= padding.bottom; lp += padding.left; rp += padding.right; + bbox.h += padding.top; bbox.d += padding.bottom; + bbox.w += padding.left + padding.right; + bbox.lw -= padding.left; bbox.rw += padding.right; + } + if (rp) {span.style.paddingRight = HTMLCSS.Em(rp)} + var frame = HTMLCSS.Element("span",{ + id:"MathJax-Color-"+this.spanID+HTMLCSS.idPostfix, isMathJax: true, + style:{display:"inline-block", backgroundColor:values.mathbackground, + width: HTMLCSS.Em(W), height:HTMLCSS.Em(H), verticalAlign: HTMLCSS.Em(D), + marginLeft: HTMLCSS.Em(lW), marginRight: HTMLCSS.Em(rW)} + }); + HTMLCSS.setBorders(frame,borders); + if (bbox.width) {frame.style.width = bbox.width; frame.style.marginRight = "-"+bbox.width} + if (HTMLCSS.msieInlineBlockAlignBug) { + // FIXME: handle variable width background + frame.style.position = "relative"; frame.style.width = frame.style.height = 0; + frame.style.verticalAlign = frame.style.marginLeft = frame.style.marginRight = ""; + frame.style.border = frame.style.padding = ""; + if (borders && HTMLCSS.msieBorderWidthBug) + {H += borders.top + borders.bottom; W += borders.left + borders.right} + frame.style.width = HTMLCSS.Em(lp+dd); + HTMLCSS.placeBox(HTMLCSS.addElement(frame,"span",{ + noAdjust: true, isMathJax: true, + style: {display:"inline-block", position:"absolute", overflow:"hidden", + background:(values.mathbackground||"transparent"), + width: HTMLCSS.Em(W), height: HTMLCSS.Em(H)} + }),lW,bbox.h+dd); + HTMLCSS.setBorders(frame.firstChild,borders); + } + span.parentNode.insertBefore(frame,span); + if (HTMLCSS.msieColorPositionBug) {span.style.position = "relative"} + return frame; + } + return null; + }, + HTMLremoveColor: function () { + var color = document.getElementById("MathJax-Color-"+this.spanID+HTMLCSS.idPostfix); + if (color) {color.parentNode.removeChild(color)} + }, + + HTMLhandleSpace: function (span) { + if (this.useMMLspacing) { + if (this.type !== "mo") return; + var values = this.getValues("scriptlevel","lspace","rspace"); + if (values.scriptlevel <= 0 || this.hasValue("lspace") || this.hasValue("rspace")) { + var mu = this.HTMLgetMu(span); + values.lspace = Math.max(0,HTMLCSS.length2em(values.lspace,mu)); + values.rspace = Math.max(0,HTMLCSS.length2em(values.rspace,mu)); + var core = this, parent = this.Parent(); + while (parent && parent.isEmbellished() && parent.Core() === core) + {core = parent; parent = parent.Parent(); span = core.HTMLspanElement()} + if (values.lspace) {span.style.paddingLeft = HTMLCSS.Em(values.lspace)} + if (values.rspace) {span.style.paddingRight = HTMLCSS.Em(values.rspace)} + } + } else { + var space = this.texSpacing(); + if (space !== "") { + space = HTMLCSS.length2em(space,this.HTMLgetScale())/(span.scale||1); + if (span.style.paddingLeft) {space += HTMLCSS.unEm(span.style.paddingLeft)} + span.style.paddingLeft = HTMLCSS.Em(space); + } + } + }, + + HTMLgetScale: function () { + var scale = 1, values = this.getValues("mathsize","scriptlevel","fontsize"); + if (this.style) { + var span = this.HTMLspanElement(); + if (span.style.fontSize != "") {values.fontsize = span.style.fontSize} + } + if (values.fontsize && !this.mathsize) {values.mathsize = values.fontsize} + if (values.scriptlevel !== 0) { + if (values.scriptlevel > 2) {values.scriptlevel = 2} + scale = Math.pow(this.Get("scriptsizemultiplier"),values.scriptlevel); + values.scriptminsize = HTMLCSS.length2em(this.Get("scriptminsize")); + if (scale < values.scriptminsize) {scale = values.scriptminsize} + } + if (this.isToken) {scale *= HTMLCSS.length2em(values.mathsize)} + return scale; + }, + HTMLgetMu: function (span) { + var mu = 1, values = this.getValues("scriptlevel","scriptsizemultiplier"); + if (span.scale && span.scale !== 1) {mu = 1/span.scale} + if (values.scriptlevel !== 0) { + if (values.scriptlevel > 2) {values.scriptlevel = 2} + mu = Math.sqrt(Math.pow(values.scriptsizemultiplier,values.scriptlevel)); + } + return mu; + }, + + HTMLgetVariant: function () { + var values = this.getValues("mathvariant","fontfamily","fontweight","fontstyle"); + values.hasVariant = this.Get("mathvariant",true); // null if not explicitly specified + if (!values.hasVariant) { + values.family = values.fontfamily; + values.weight = values.fontweight; + values.style = values.fontstyle; + } + if (this.style) { + var span = this.HTMLspanElement(); + if (!values.family && span.style.fontFamily) {values.family = span.style.fontFamily} + if (!values.weight && span.style.fontWeight) {values.weight = span.style.fontWeight} + if (!values.style && span.style.fontStyle) {values.style = span.style.fontStyle} + } + if (values.weight && values.weight.match(/^\d+$/)) + {values.weight = (parseInt(values.weight) > 600 ? "bold" : "normal")} + var variant = values.mathvariant; if (this.variantForm) {variant = "-"+HTMLCSS.fontInUse+"-variant"} + if (values.family && !values.hasVariant) { + if (!values.weight && values.mathvariant.match(/bold/)) {values.weight = "bold"} + if (!values.style && values.mathvariant.match(/italic/)) {values.style = "italic"} + return {FONTS:[], fonts:[], noRemap:true, + defaultFont: {family:values.family, style:values.style, weight:values.weight}}; + } + if (values.weight === "bold") { + variant = { + normal:MML.VARIANT.BOLD, italic:MML.VARIANT.BOLDITALIC, + fraktur:MML.VARIANT.BOLDFRAKTUR, script:MML.VARIANT.BOLDSCRIPT, + "sans-serif":MML.VARIANT.BOLDSANSSERIF, + "sans-serif-italic":MML.VARIANT.SANSSERIFBOLDITALIC + }[variant]||variant; + } else if (values.weight === "normal") { + variant = { + bold:MML.VARIANT.normal, "bold-italic":MML.VARIANT.ITALIC, + "bold-fraktur":MML.VARIANT.FRAKTUR, "bold-script":MML.VARIANT.SCRIPT, + "bold-sans-serif":MML.VARIANT.SANSSERIF, + "sans-serif-bold-italic":MML.VARIANT.SANSSERIFITALIC + }[variant]||variant; + } + if (values.style === "italic") { + variant = { + normal:MML.VARIANT.ITALIC, bold:MML.VARIANT.BOLDITALIC, + "sans-serif":MML.VARIANT.SANSSERIFITALIC, + "bold-sans-serif":MML.VARIANT.SANSSERIFBOLDITALIC + }[variant]||variant; + } else if (values.style === "normal") { + variant = { + italic:MML.VARIANT.NORMAL, "bold-italic":MML.VARIANT.BOLD, + "sans-serif-italic":MML.VARIANT.SANSSERIF, + "sans-serif-bold-italic":MML.VARIANT.BOLDSANSSERIF + }[variant]||variant; + } + if (!(variant in HTMLCSS.FONTDATA.VARIANT)) { + // If the mathvariant value is invalid or not supported by this + // font, fallback to normal. See issue 363. + variant = "normal"; + } + return HTMLCSS.FONTDATA.VARIANT[variant]; + } + },{ + HTMLautoload: function () { + var file = HTMLCSS.autoloadDir+"/"+this.type+".js"; + HUB.RestartAfter(AJAX.Require(file)); + }, + HTMLautoloadFile: function (name) { + var file = HTMLCSS.autoloadDir+"/"+name+".js"; + HUB.RestartAfter(AJAX.Require(file)); + }, + + HTMLstretchH: function (box,w) { + this.HTMLremoveColor(); + return this.toHTML(box,w); + }, + + HTMLstretchV: function (box,h,d) { + this.HTMLremoveColor(); + return this.toHTML(box,h,d); + } + }); + + MML.chars.Augment({ + toHTML: function (span,variant,remap,chars) { + var text = this.data.join("").replace(/[\u2061-\u2064]/g,""); // remove invisibles + if (remap) {text = remap(text,chars)} + if (variant.fontInherit) { + var scale = Math.floor(100/HTMLCSS.scale+.5) + "%"; + HTMLCSS.addElement(span,"span",{style:{"font-size":scale}},[text]); + if (variant.bold) {span.lastChild.style.fontWeight = "bold"} + if (variant.italic) {span.lastChild.style.fontStyle = "italic"} + var HD = HTMLCSS.getHD(span), W = HTMLCSS.getW(span); + span.bbox = {h:HD.h, d:HD.d, w:W, lw:0, rw:W, exactW: true}; + } else { + this.HTMLhandleVariant(span,variant,text); + } + } + }); + MML.entity.Augment({ + toHTML: function (span,variant,remap,chars) { + var text = this.toString().replace(/[\u2061-\u2064]/g,""); // remove invisibles + if (remap) {text = remap(text,chars)} + if (variant.fontInherit) { + var scale = Math.floor(100/HTMLCSS.scale+.5) + "%"; + HTMLCSS.addElement(span,"span",{style:{"font-size":scale}},[text]); + if (variant.bold) {span.lastChild.style.fontWeight = "bold"} + if (variant.italic) {span.lastChild.style.fontStyle = "italic"} + var HD = HTMLCSS.getHD(span), W = HTMLCSS.getW(span); + span.bbox = {h:HD.h, d:HD.d, w:W, lw:0, rw:W, exactW: true}; + } else { + this.HTMLhandleVariant(span,variant,text); + } + } + }); + + MML.mi.Augment({ + toHTML: function (span) { + span = this.HTMLhandleSize(this.HTMLcreateSpan(span)); span.bbox = null; + var variant = this.HTMLgetVariant(); + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {this.data[i].toHTML(span,variant)}} + if (!span.bbox) {span.bbox = this.HTMLzeroBBox()} + var text = this.data.join(""), bbox = span.bbox; + if (bbox.skew && text.length !== 1) {delete bbox.skew} + if (bbox.rw > bbox.w && text.length === 1 && !variant.noIC) { + bbox.ic = bbox.rw - bbox.w; + HTMLCSS.createBlank(span,bbox.ic); + bbox.w = bbox.rw; + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + this.HTMLhandleDir(span); + return span; + } + }); + + MML.mn.Augment({ + toHTML: function (span) { + span = this.HTMLhandleSize(this.HTMLcreateSpan(span)); span.bbox = null; + var variant = this.HTMLgetVariant(); + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {this.data[i].toHTML(span,variant)}} + if (!span.bbox) {span.bbox = this.HTMLzeroBBox()} + if (this.data.join("").length !== 1) {delete span.bbox.skew} + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + this.HTMLhandleDir(span); + return span; + } + }); + + MML.mo.Augment({ + toHTML: function (span) { + span = this.HTMLhandleSize(this.HTMLcreateSpan(span)); + if (this.data.length == 0) {return span} else {span.bbox = null} + var text = this.data.join(""); + // + // Get the variant, and check for operator size + // + var variant = this.HTMLgetVariant(); + var values = this.getValues("largeop","displaystyle"); + if (values.largeop) + {variant = HTMLCSS.FONTDATA.VARIANT[values.displaystyle ? "-largeOp" : "-smallOp"]} + // + // Get character translation for superscript and accents + // + var parent = this.CoreParent(), + isScript = (parent && parent.isa(MML.msubsup) && this !== parent.data[parent.base]), + mapchars = (isScript?this.HTMLremapChars:null); + if (text.length === 1 && parent && parent.isa(MML.munderover) && + this.CoreText(parent.data[parent.base]).length === 1) { + var over = parent.data[parent.over], under = parent.data[parent.under]; + if (over && this === over.CoreMO() && parent.Get("accent")) {mapchars = HTMLCSS.FONTDATA.REMAPACCENT} + else if (under && this === under.CoreMO() && parent.Get("accentunder")) {mapchars = HTMLCSS.FONTDATA.REMAPACCENTUNDER} + } + // + // STIX and TeX fonts need quotes from variant font + // + if (isScript && text.match(/['`"\u00B4\u2032-\u2037\u2057]/)) + {variant = HTMLCSS.FONTDATA.VARIANT["-"+HTMLCSS.fontInUse+"-variant"]} + // + // Typeset contents + // + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {this.data[i].toHTML(span,variant,this.HTMLremap,mapchars)}} + if (!span.bbox) {span.bbox = this.HTMLzeroBBox()} + if (text.length !== 1) {delete span.bbox.skew} + // + // Handle combining characters by adding a non-breaking space and removing that width + // + if (HTMLCSS.AccentBug && span.bbox.w === 0 && text.length === 1 && span.firstChild) { + span.firstChild.nodeValue += HTMLCSS.NBSP; + HTMLCSS.createSpace(span,0,0,-span.offsetWidth/HTMLCSS.em); + } + // + // Handle large operator centering + // + if (values.largeop) { + var p = (span.bbox.h - span.bbox.d)/2 - HTMLCSS.TeX.axis_height*span.scale; + if (HTMLCSS.safariVerticalAlignBug && span.lastChild.nodeName === "IMG") { + span.lastChild.style.verticalAlign = + HTMLCSS.Em(HTMLCSS.unEm(span.lastChild.style.verticalAlign||0)/HTMLCSS.em-p/span.scale); + } else if (HTMLCSS.konquerorVerticalAlignBug && span.lastChild.nodeName === "IMG") { + span.style.position = "relative"; + span.lastChild.style.position="relative"; + span.lastChild.style.top = HTMLCSS.Em(p/span.scale); + } else { + span.style.verticalAlign = HTMLCSS.Em(-p/span.scale); + } + span.bbox.h -= p; span.bbox.d += p; + if (span.bbox.rw > span.bbox.w) { + span.bbox.ic = span.bbox.rw-span.bbox.w; + HTMLCSS.createBlank(span,span.bbox.ic); + span.bbox.w = span.bbox.rw; + } + } + // + // Finish up + // + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + this.HTMLhandleDir(span); + return span; + }, + CoreParent: function () { + var parent = this; + while (parent && parent.isEmbellished() && + parent.CoreMO() === this && !parent.isa(MML.math)) {parent = parent.Parent()} + return parent; + }, + CoreText: function (parent) { + if (!parent) {return ""} + if (parent.isEmbellished()) {return parent.CoreMO().data.join("")} + while ((parent.isa(MML.mrow) || parent.isa(MML.TeXAtom) || + parent.isa(MML.mstyle) || parent.isa(MML.mphantom)) && + parent.data.length === 1 && parent.data[0]) {parent = parent.data[0]} + if (!parent.isToken) {return ""} else {return parent.data.join("")} + }, + HTMLremapChars: { + '*':"\u2217", + '"':"\u2033", + "\u00B0":"\u2218", + "\u00B2":"2", + "\u00B3":"3", + "\u00B4":"\u2032", + "\u00B9":"1" + }, + HTMLremap: function (text,map) { + text = text.replace(/-/g,"\u2212"); + if (map) { + text = text.replace(/'/g,"\u2032").replace(/`/g,"\u2035"); + if (text.length === 1) {text = map[text]||text} + } + return text; + }, + HTMLcanStretch: function (direction) { + if (!this.Get("stretchy")) {return false} + var c = this.data.join(""); + if (c.length > 1) {return false} + var parent = this.CoreParent(); + if (parent && parent.isa(MML.munderover) && + this.CoreText(parent.data[parent.base]).length === 1) { + var over = parent.data[parent.over], under = parent.data[parent.under]; + if (over && this === over.CoreMO() && parent.Get("accent")) {c = HTMLCSS.FONTDATA.REMAPACCENT[c]||c} + else if (under && this === under.CoreMO() && parent.Get("accentunder")) {c = HTMLCSS.FONTDATA.REMAPACCENTUNDER[c]||c} + } + c = HTMLCSS.FONTDATA.DELIMITERS[c.charCodeAt(0)]; + return (c && c.dir == direction.substr(0,1)); + }, + HTMLstretchV: function (box,h,d) { + this.HTMLremoveColor(); + var values = this.getValues("symmetric","maxsize","minsize"); + var span = this.HTMLspanElement(), mu = this.HTMLgetMu(span), H; + var axis = HTMLCSS.TeX.axis_height, scale = span.scale; + if (values.symmetric) {H = 2*Math.max(h-axis,d+axis)} else {H = h + d} + values.maxsize = HTMLCSS.length2em(values.maxsize,mu,span.bbox.h+span.bbox.d); + values.minsize = HTMLCSS.length2em(values.minsize,mu,span.bbox.h+span.bbox.d); + H = Math.max(values.minsize,Math.min(values.maxsize,H)); + span = this.HTMLcreateSpan(box); // clear contents and attributes + HTMLCSS.createDelimiter(span,this.data.join("").charCodeAt(0),H,scale); + if (values.symmetric) {H = (span.bbox.h + span.bbox.d)/2 + axis} + else {H = (span.bbox.h + span.bbox.d) * h/(h + d)} + HTMLCSS.positionDelimiter(span,H); + this.HTMLhandleSpace(span); // add in lspace/rspace, if any + this.HTMLhandleColor(span); + return span; + }, + HTMLstretchH: function (box,W) { + this.HTMLremoveColor(); + var values = this.getValues("maxsize","minsize","mathvariant","fontweight"); + // FIXME: should take style="font-weight:bold" into account as well + if ((values.fontweight === "bold" || parseInt(values.fontweight) >= 600) && + !this.Get("mathvariant",true)) {values.mathvariant = MML.VARIANT.BOLD} + var span = this.HTMLspanElement(), mu = this.HTMLgetMu(span), scale = span.scale; + values.maxsize = HTMLCSS.length2em(values.maxsize,mu,span.bbox.w); + values.minsize = HTMLCSS.length2em(values.minsize,mu,span.bbox.w); + W = Math.max(values.minsize,Math.min(values.maxsize,W)); + span = this.HTMLcreateSpan(box); // clear contents and attributes + HTMLCSS.createDelimiter(span,this.data.join("").charCodeAt(0),W,scale,values.mathvariant); + this.HTMLhandleSpace(span); // add in lspace/rspace, if any + this.HTMLhandleColor(span); + return span; + } + }); + + MML.mtext.Augment({ + toHTML: function (span) { + span = this.HTMLhandleSize(this.HTMLcreateSpan(span)); + var variant = this.HTMLgetVariant(); + // Avoid setting the font style for error text or if mtextFontInherit is set + if (HTMLCSS.config.mtextFontInherit || this.Parent().type === "merror") + {variant = {bold:variant.bold, italic:variant.italic, fontInherit: true}} + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {this.data[i].toHTML(span,variant)}} + if (!span.bbox) {span.bbox = this.HTMLzeroBBox()} + if (this.data.join("").length !== 1) {delete span.bbox.skew} + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + this.HTMLhandleDir(span); + return span; + } + }); + MML.merror.Augment({ + toHTML: function (span) { + // + // Width doesn't include padding and border, so use an extra inline block + // element to capture it. + // + var SPAN = MathJax.HTML.addElement(span,"span",{style:{display:"inline-block"}}); + span = this.SUPER(arguments).toHTML.call(this,SPAN); + var HD = HTMLCSS.getHD(SPAN), W = HTMLCSS.getW(SPAN); + SPAN.bbox = {h:HD.h, d:HD.d, w:W, lw:0, rw:W, exactW: true}; + SPAN.id = span.id; span.id = null; + return SPAN; + } + }); + + MML.ms.Augment({toHTML: MML.mbase.HTMLautoload}); + + MML.mglyph.Augment({toHTML: MML.mbase.HTMLautoload}); + + MML.mspace.Augment({ + toHTML: function (span) { + span = this.HTMLcreateSpan(span); + var values = this.getValues("height","depth","width"); + var mu = this.HTMLgetMu(span); + values.mathbackground = this.mathbackground; + if (this.background && !this.mathbackground) {values.mathbackground = this.background} + var h = HTMLCSS.length2em(values.height,mu), + d = HTMLCSS.length2em(values.depth,mu), + w = HTMLCSS.length2em(values.width,mu); + HTMLCSS.createSpace(span,h,d,w,values.mathbackground,true); + return span; + } + }); + + MML.mphantom.Augment({ + toHTML: function (span,HW,D) { + span = this.HTMLcreateSpan(span); + if (this.data[0] != null) { + var box = this.data[0].toHTML(span); + if (D != null) {HTMLCSS.Remeasured(this.data[0].HTMLstretchV(span,HW,D),span)} + else if (HW != null) {HTMLCSS.Remeasured(this.data[0].HTMLstretchH(span,HW),span)} + else {box = HTMLCSS.Measured(box,span)} + span.bbox = {w: box.bbox.w, h: box.bbox.h, d: box.bbox.d, lw: 0, rw: 0, exactW: true}; + for (var i = 0, m = span.childNodes.length; i < m; i++) + {span.childNodes[i].style.visibility = "hidden"} + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLstretchH: MML.mbase.HTMLstretchH, + HTMLstretchV: MML.mbase.HTMLstretchV + }); + + MML.mpadded.Augment({ + toHTML: function (span,HW,D) { + span = this.HTMLcreateSpan(span); + if (this.data[0] != null) { + var stack = HTMLCSS.createStack(span,true); + var box = HTMLCSS.createBox(stack); + var child = this.data[0].toHTML(box); + if (D != null) {HTMLCSS.Remeasured(this.data[0].HTMLstretchV(box,HW,D),box)} + else if (HW != null) {HTMLCSS.Remeasured(this.data[0].HTMLstretchH(box,HW),box)} + else {HTMLCSS.Measured(child,box)} + var values = this.getValues("height","depth","width","lspace","voffset"), + x = 0, y = 0, mu = this.HTMLgetMu(span); + if (values.lspace) {x = this.HTMLlength2em(box,values.lspace,mu)} + if (values.voffset) {y = this.HTMLlength2em(box,values.voffset,mu)} + HTMLCSS.placeBox(box,x,y); + span.bbox = { + h: box.bbox.h, d: box.bbox.d, w: box.bbox.w, exactW: true, + lw: Math.min(0,box.bbox.lw+x), rw: Math.max(box.bbox.w,box.bbox.rw+x), + H: Math.max((box.bbox.H == null ? -HTMLCSS.BIGDIMEN : box.bbox.H),box.bbox.h+y), + D: Math.max((box.bbox.D == null ? -HTMLCSS.BIGDIMEN : box.bbox.D),box.bbox.d-y) + }; + if (values.height !== "") {span.bbox.h = this.HTMLlength2em(box,values.height,mu,"h",0)} + if (values.depth !== "") {span.bbox.d = this.HTMLlength2em(box,values.depth,mu,"d",0)} + if (values.width !== "") {span.bbox.w = this.HTMLlength2em(box,values.width,mu,"w",0)} + if (span.bbox.H <= span.bbox.h) {delete span.bbox.H} + if (span.bbox.D <= span.bbox.d) {delete span.bbox.D} + var dimen = /^\s*(\d+(\.\d*)?|\.\d+)\s*(pt|em|ex|mu|px|pc|in|mm|cm)\s*$/ + span.bbox.exact = !!((this.data[0] && this.data[0].data.length == 0) || + dimen.exec(values.height) || dimen.exec(values.width) || dimen.exec(values.depth)); + HTMLCSS.setStackWidth(stack,span.bbox.w); + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLlength2em: function (span,length,mu,d,m) { + if (m == null) {m = -HTMLCSS.BIGDIMEN} + var match = String(length).match(/width|height|depth/); + var size = (match ? span.bbox[match[0].charAt(0)] : (d ? span.bbox[d] : 0)); + var v = HTMLCSS.length2em(length,mu,size); + if (d && String(length).match(/^\s*[-+]/)) + {return Math.max(m,span.bbox[d]+v)} else {return v} + }, + HTMLstretchH: MML.mbase.HTMLstretchH, + HTMLstretchV: MML.mbase.HTMLstretchV + }); + + MML.mrow.Augment({ + HTMLlineBreaks: function (span) { + if (!this.parent.linebreakContainer) {return false} + return (HTMLCSS.config.linebreaks.automatic && + span.bbox.w > HTMLCSS.linebreakWidth) || this.hasNewline(); + }, + HTMLstretchH: function (box,w) { + this.HTMLremoveColor(); + var span = this.HTMLspanElement(); + this.data[this.core].HTMLstretchH(span,w); + this.HTMLcomputeBBox(span,true); + this.HTMLhandleColor(span); + return span; + }, + HTMLstretchV: function (box,h,d) { + this.HTMLremoveColor(); + var span = this.HTMLspanElement(); + this.data[this.core].HTMLstretchV(span,h,d); + this.HTMLcomputeBBox(span,true); + this.HTMLhandleColor(span); + return span; + } + }); + + MML.mstyle.Augment({ + toHTML: function (span,HW,D) { + span = this.HTMLcreateSpan(span); + if (this.data[0] != null) { + var SPAN = this.data[0].toHTML(span); + if (D != null) {this.data[0].HTMLstretchV(span,HW,D)} + else if (HW != null) {this.data[0].HTMLstretchH(span,HW)} + span.bbox = SPAN.bbox; + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLstretchH: MML.mbase.HTMLstretchH, + HTMLstretchV: MML.mbase.HTMLstretchV + }); + + MML.mfrac.Augment({ + toHTML: function (span) { + span = this.HTMLcreateSpan(span); + var frac = HTMLCSS.createStack(span); + var num = HTMLCSS.createBox(frac), den = HTMLCSS.createBox(frac); + HTMLCSS.MeasureSpans([this.HTMLboxChild(0,num),this.HTMLboxChild(1,den)]); + var values = this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled"); + var scale = this.HTMLgetScale(), isDisplay = values.displaystyle; + var a = HTMLCSS.TeX.axis_height * scale; + if (values.bevelled) { + var delta = (isDisplay ? .4 : .15); + var H = Math.max(num.bbox.h+num.bbox.d,den.bbox.h+den.bbox.d)+2*delta; + var bevel = HTMLCSS.createBox(frac); + HTMLCSS.createDelimiter(bevel,0x2F,H); + HTMLCSS.placeBox(num,0,(num.bbox.d-num.bbox.h)/2+a+delta); + HTMLCSS.placeBox(bevel,num.bbox.w-delta/2,(bevel.bbox.d-bevel.bbox.h)/2+a); + HTMLCSS.placeBox(den,num.bbox.w+bevel.bbox.w-delta,(den.bbox.d-den.bbox.h)/2+a-delta); + } else { + var W = Math.max(num.bbox.w,den.bbox.w); + var t = HTMLCSS.thickness2em(values.linethickness,scale), p,q, u,v; + var mt = HTMLCSS.TeX.min_rule_thickness/this.em; + if (isDisplay) {u = HTMLCSS.TeX.num1; v = HTMLCSS.TeX.denom1} + else {u = (t === 0 ? HTMLCSS.TeX.num3 : HTMLCSS.TeX.num2); v = HTMLCSS.TeX.denom2} + u *= scale; v *= scale; + if (t === 0) {// \atop + p = Math.max((isDisplay ? 7 : 3) * HTMLCSS.TeX.rule_thickness, 2*mt); // force to at least 2 px + q = (u - num.bbox.d) - (den.bbox.h - v); + if (q < p) {u += (p - q)/2; v += (p - q)/2} + } else {// \over + p = Math.max((isDisplay ? 2 : 0) * mt + t, t/2 + 1.5*mt); // force to be at least 1.5px + q = (u - num.bbox.d) - (a + t/2); if (q < p) {u += p - q} + q = (a - t/2) - (den.bbox.h - v); if (q < p) {v += p - q} + var rule = HTMLCSS.createBox(frac); + HTMLCSS.createRule(rule,t,0,W+2*t); + HTMLCSS.placeBox(rule,0,a-t/2); + } + HTMLCSS.alignBox(num,values.numalign,u); + HTMLCSS.alignBox(den,values.denomalign,-v); + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLcanStretch: function (direction) {return false}, + HTMLhandleSpace: function (span) { + if (!this.texWithDelims) { + var space = (this.useMMLspacing ? 0 : HTMLCSS.length2em(this.texSpacing()||0)) + .12; + span.style.paddingLeft = HTMLCSS.Em(space); + span.style.paddingRight = HTMLCSS.Em(.12); + } + } + }); + + MML.msqrt.Augment({ + toHTML: function (span) { + span = this.HTMLcreateSpan(span); + var sqrt = HTMLCSS.createStack(span); + var base = HTMLCSS.createBox(sqrt), + rule = HTMLCSS.createBox(sqrt), + surd = HTMLCSS.createBox(sqrt); + var scale = this.HTMLgetScale(); + var t = HTMLCSS.TeX.rule_thickness * scale, p,q, H, W; + if (this.Get("displaystyle")) {p = HTMLCSS.TeX.x_height * scale} else {p = t} + q = Math.max(t + p/4,1.5*HTMLCSS.TeX.min_rule_thickness/this.em); // force to be at least 1px + var BASE = this.HTMLboxChild(0,base); + H = BASE.bbox.h + BASE.bbox.d + q + t; + HTMLCSS.createDelimiter(surd,0x221A,H,scale); + HTMLCSS.MeasureSpans([BASE,surd]); + W = BASE.bbox.w; + var x = 0; + if (surd.isMultiChar || (HTMLCSS.AdjustSurd && HTMLCSS.imgFonts)) {surd.bbox.w *= .95} + if (surd.bbox.h + surd.bbox.d > H) {q = ((surd.bbox.h+surd.bbox.d) - (H-t))/2} + var ruleC = HTMLCSS.FONTDATA.DELIMITERS[HTMLCSS.FONTDATA.RULECHAR]; + if (!ruleC || W < ruleC.HW[0][0]*scale || scale < .75) { + HTMLCSS.createRule(rule,0,t,W); + } else { + HTMLCSS.createDelimiter(rule,HTMLCSS.FONTDATA.RULECHAR,W,scale); + } + H = BASE.bbox.h + q + t; + q = H*HTMLCSS.rfuzz; if (surd.isMultiChar) {q = HTMLCSS.rfuzz} + x = this.HTMLaddRoot(sqrt,surd,x,surd.bbox.h+surd.bbox.d-H,scale); + HTMLCSS.placeBox(surd,x,H-surd.bbox.h); + HTMLCSS.placeBox(rule,x+surd.bbox.w,H-rule.bbox.h+q); + HTMLCSS.placeBox(base,x+surd.bbox.w,0); + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLaddRoot: function (sqrt,surd,x,d,scale) {return x} + }); + + MML.mroot.Augment({ + toHTML: MML.msqrt.prototype.toHTML, + HTMLaddRoot: function (sqrt,surd,x,d,scale) { + var box = HTMLCSS.createBox(sqrt); + if (this.data[1]) { + var root = this.data[1].toHTML(box); + root.style.paddingRight = root.style.paddingLeft = ""; // remove extra padding, if any + HTMLCSS.Measured(root,box); + } else {box.bbox = this.HTMLzeroBBox()} + var h = this.HTMLrootHeight(surd.bbox.h+surd.bbox.d,scale,box)-d; + var w = Math.min(box.bbox.w,box.bbox.rw); // remove extra right-hand padding, if any + x = Math.max(w,surd.offset); + HTMLCSS.placeBox(box,x-w,h); + return x - surd.offset; + }, + HTMLrootHeight: function (d,scale,root) { + return .45*(d-.9*scale)+.6*scale + Math.max(0,root.bbox.d-.075); + } + }); + + MML.mfenced.Augment({ + toHTML: function (span) { + span = this.HTMLcreateSpan(span); + if (this.data.open) {this.data.open.toHTML(span)} + if (this.data[0] != null) {this.data[0].toHTML(span)} + for (var i = 1, m = this.data.length; i < m; i++) { + if (this.data[i]) { + if (this.data["sep"+i]) {this.data["sep"+i].toHTML(span)} + this.data[i].toHTML(span); + } + } + if (this.data.close) {this.data.close.toHTML(span)} + var stretchy = this.HTMLcomputeBBox(span); + var h = span.bbox.h, d = span.bbox.d; + for (i = 0, m = stretchy.length; i < m; i++) {stretchy[i].HTMLstretchV(span,h,d)} + if (stretchy.length) {this.HTMLcomputeBBox(span,true)} + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLcomputeBBox: function (span,full) { + var BBOX = span.bbox = {}, stretchy = []; + this.HTMLcheckStretchy(this.data.open,BBOX,stretchy,full); + this.HTMLcheckStretchy(this.data[0],BBOX,stretchy,full); + for (var i = 1, m = this.data.length; i < m; i++) { + if (this.data[i]) { + this.HTMLcheckStretchy(this.data["sep"+i],BBOX,stretchy,full); + this.HTMLcheckStretchy(this.data[i],BBOX,stretchy,full); + } + } + this.HTMLcheckStretchy(this.data.close,BBOX,stretchy,full); + this.HTMLcleanBBox(BBOX); + return stretchy; + }, + HTMLcheckStretchy: function (core,BBOX,stretchy,full) { + if (core) { + if (!full && core.HTMLcanStretch("Vertical")) + {stretchy.push(core); core = (core.CoreMO()||core)} + this.HTMLcombineBBoxes(core,BBOX); + } + } + }); + + MML.menclose.Augment({toHTML: MML.mbase.HTMLautoload}); + MML.maction.Augment({toHTML: MML.mbase.HTMLautoload}); + + MML.semantics.Augment({ + toHTML: function (span,HW,D) { + span = this.HTMLcreateSpan(span); + if (this.data[0] != null) { + var SPAN = this.data[0].toHTML(span); + if (D != null) {this.data[0].HTMLstretchV(span,HW,D)} + else if (HW != null) {this.data[0].HTMLstretchH(span,HW)} + span.bbox = SPAN.bbox; + } + this.HTMLhandleSpace(span); + return span; + }, + HTMLstretchH: MML.mbase.HTMLstretchH, + HTMLstretchV: MML.mbase.HTMLstretchV + }); + + MML.munderover.Augment({ + toHTML: function (span,HW,D) { + var values = this.getValues("displaystyle","accent","accentunder","align"); + if (!values.displaystyle && this.data[this.base] != null && + this.data[this.base].CoreMO().Get("movablelimits")) + {return MML.msubsup.prototype.toHTML.call(this,span)} + span = this.HTMLcreateSpan(span); var scale = this.HTMLgetScale(); + var stack = HTMLCSS.createStack(span); + var boxes = [], children = [], stretch = [], box, i, m; + for (i = 0, m = this.data.length; i < m; i++) { + if (this.data[i] != null) { + box = boxes[i] = HTMLCSS.createBox(stack); + children[i] = this.data[i].toHTML(box); + if (i == this.base) { + if (D != null) {this.data[this.base].HTMLstretchV(box,HW,D)} + else if (HW != null) {this.data[this.base].HTMLstretchH(box,HW)} + stretch[i] = (D == null && HW != null ? false : + this.data[i].HTMLcanStretch("Horizontal")); + } else { + stretch[i] = this.data[i].HTMLcanStretch("Horizontal"); + } + } + } + HTMLCSS.MeasureSpans(children); + var W = -HTMLCSS.BIGDIMEN, WW = W; + for (i = 0, m = this.data.length; i < m; i++) { + if (this.data[i]) { + if (boxes[i].bbox.w > WW) {WW = boxes[i].bbox.w} + if (!stretch[i] && WW > W) {W = WW} + } + } + if (D == null && HW != null) {W = HW} else if (W == -HTMLCSS.BIGDIMEN) {W = WW} + for (i = WW = 0, m = this.data.length; i < m; i++) {if (this.data[i]) { + box = boxes[i]; + if (stretch[i]) {box.bbox = this.data[i].HTMLstretchH(box,W).bbox} + if (box.bbox.w > WW) {WW = box.bbox.w} + }} + var t = HTMLCSS.TeX.rule_thickness, factor = HTMLCSS.FONTDATA.TeX_factor; + var base = boxes[this.base] || {bbox: this.HTMLzeroBBox()}; + var x, y, z1, z2, z3, dw, k, delta = 0; + if (base.bbox.ic) {delta = 1.3*base.bbox.ic + .05} // adjust faked IC to be more in line with expeted results + for (i = 0, m = this.data.length; i < m; i++) { + if (this.data[i] != null) { + box = boxes[i]; + z3 = HTMLCSS.TeX.big_op_spacing5 * scale; + var accent = (i != this.base && values[this.ACCENTS[i]]); + if (accent && box.bbox.w <= 1/HTMLCSS.em+.0001) { // images can get the width off by 1px + box.bbox.w = box.bbox.rw - box.bbox.lw; box.bbox.noclip = true; + if (box.bbox.lw) + {box.insertBefore(HTMLCSS.createSpace(box.parentNode,0,0,-box.bbox.lw),box.firstChild)} + HTMLCSS.createBlank(box,0,0,box.bbox.rw+.1); + } + dw = {left:0, center:(WW-box.bbox.w)/2, right:WW-box.bbox.w}[values.align]; + x = dw; y = 0; + if (i == this.over) { + if (accent) { + k = Math.max(t * scale * factor,2.5/this.em); z3 = 0; + if (base.bbox.skew) {x += base.bbox.skew} + } else { + z1 = HTMLCSS.TeX.big_op_spacing1 * scale * factor; + z2 = HTMLCSS.TeX.big_op_spacing3 * scale * factor; + k = Math.max(z1,z2-Math.max(0,box.bbox.d)); + } + k = Math.max(k,1.5/this.em); // force to be at least 1.5px + x += delta/2; y = base.bbox.h + box.bbox.d + k; + box.bbox.h += z3; + } else if (i == this.under) { + if (accent) { + k = 3*t * scale * factor; z3 = 0; + } else { + z1 = HTMLCSS.TeX.big_op_spacing2 * scale * factor; + z2 = HTMLCSS.TeX.big_op_spacing4 * scale * factor; + k = Math.max(z1,z2-box.bbox.h); + } + k = Math.max(k,1.5/this.em); // force to be at least 1.5px + x -= delta/2; y = -(base.bbox.d + box.bbox.h + k); + box.bbox.d += z3; + } + HTMLCSS.placeBox(box,x,y); + } + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLstretchH: MML.mbase.HTMLstretchH, + HTMLstretchV: MML.mbase.HTMLstretchV + }); + + MML.msubsup.Augment({ + toHTML: function (span,HW,D) { + span = this.HTMLcreateSpan(span); + var scale = this.HTMLgetScale(), mu = this.HTMLgetMu(span); + var stack = HTMLCSS.createStack(span), values, children = []; + var base = HTMLCSS.createBox(stack); + if (this.data[this.base]) { + children.push(this.data[this.base].toHTML(base)); + if (D != null) {this.data[this.base].HTMLstretchV(base,HW,D)} + else if (HW != null) {this.data[this.base].HTMLstretchH(base,HW)} + } else {base.bbox = this.HTMLzeroBBox()} + var x_height = HTMLCSS.TeX.x_height * scale, + s = HTMLCSS.TeX.scriptspace * scale * .75; // FIXME: .75 can be removed when IC is right? + var sup, sub; + if (this.HTMLnotEmpty(this.data[this.sup])) + {sup = HTMLCSS.createBox(stack); children.push(this.data[this.sup].toHTML(sup))} + if (this.HTMLnotEmpty(this.data[this.sub])) + {sub = HTMLCSS.createBox(stack); children.push(this.data[this.sub].toHTML(sub))} + HTMLCSS.MeasureSpans(children); + if (sup) {sup.bbox.w += s; sup.bbox.rw = Math.max(sup.bbox.w,sup.bbox.rw)} + if (sub) {sub.bbox.w += s; sub.bbox.rw = Math.max(sub.bbox.w,sub.bbox.rw)} + HTMLCSS.placeBox(base,0,0); + var sscale; + if (sup) { + sscale = this.data[this.sup].HTMLgetScale(); + } else if (sub) { + sscale = this.data[this.sub].HTMLgetScale(); + } else { + sscale = this.HTMLgetScale(); + } + var q = HTMLCSS.TeX.sup_drop * sscale, r = HTMLCSS.TeX.sub_drop * sscale; + var u = base.bbox.h - q, v = base.bbox.d + r, delta = 0, p; + if (base.bbox.ic) { + base.bbox.w -= base.bbox.ic; // remove IC (added by mo and mi) + delta = 1.3*base.bbox.ic + .05; // adjust faked IC to be more in line with expected results + } + if (this.data[this.base] && + (this.data[this.base].type === "mi" || this.data[this.base].type === "mo")) { + if (this.data[this.base].data.join("").length === 1 && base.bbox.scale === 1 && + !this.data[this.base].Get("largeop")) {u = v = 0} + } + var min = this.getValues("subscriptshift","superscriptshift"); + min.subscriptshift = (min.subscriptshift === "" ? 0 : HTMLCSS.length2em(min.subscriptshift,mu)); + min.superscriptshift = (min.superscriptshift === "" ? 0 : HTMLCSS.length2em(min.superscriptshift,mu)); + if (!sup) { + if (sub) { + v = Math.max(v,HTMLCSS.TeX.sub1*scale,sub.bbox.h-(4/5)*x_height,min.subscriptshift); + HTMLCSS.placeBox(sub,base.bbox.w,-v,sub.bbox); + } + } else { + if (!sub) { + values = this.getValues("displaystyle","texprimestyle"); + p = HTMLCSS.TeX[(values.displaystyle ? "sup1" : (values.texprimestyle ? "sup3" : "sup2"))]; + u = Math.max(u,p*scale,sup.bbox.d+(1/4)*x_height,min.superscriptshift); + HTMLCSS.placeBox(sup,base.bbox.w+delta,u,sup.bbox); + } else { + v = Math.max(v,HTMLCSS.TeX.sub2*scale); + var t = HTMLCSS.TeX.rule_thickness * scale; + if ((u - sup.bbox.d) - (sub.bbox.h - v) < 3*t) { + v = 3*t - u + sup.bbox.d + sub.bbox.h; + q = (4/5)*x_height - (u - sup.bbox.d); + if (q > 0) {u += q; v -= q} + } + HTMLCSS.placeBox(sup,base.bbox.w+delta,Math.max(u,min.superscriptshift)); + HTMLCSS.placeBox(sub,base.bbox.w,-Math.max(v,min.subscriptshift)); + } + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + }, + HTMLstretchH: MML.mbase.HTMLstretchH, + HTMLstretchV: MML.mbase.HTMLstretchV + }); + + MML.mmultiscripts.Augment({toHTML: MML.mbase.HTMLautoload}); + + MML.mtable.Augment({toHTML: MML.mbase.HTMLautoload}); + + MML["annotation-xml"].Augment({toHTML: MML.mbase.HTMLautoload}); + + MML.math.Augment({ + toHTML: function (span,node) { + var alttext = this.Get("alttext"); + if (alttext && alttext !== "") {node.setAttribute("aria-label",alttext)} + var nobr = HTMLCSS.addElement(span,"nobr",{isMathJax: true}); + span = this.HTMLcreateSpan(nobr); + var stack = HTMLCSS.createStack(span), box = HTMLCSS.createBox(stack), math; + // Move font-size from outer span to stack to avoid line separation + // problem in strict HTML mode + stack.style.fontSize = nobr.parentNode.style.fontSize; nobr.parentNode.style.fontSize = ""; + if (this.data[0] != null) { + if (HTMLCSS.msieColorBug) { + if (this.background) {this.data[0].background = this.background; delete this.background} + if (this.mathbackground) {this.data[0].mathbackground = this.mathbackground; delete this.mathbackground} + } + MML.mbase.prototype.displayAlign = HUB.config.displayAlign; + MML.mbase.prototype.displayIndent = HUB.config.displayIndent; + var html = this.data[0].toHTML(box); html.bbox.exactW = false; // force remeasure just to be sure + math = HTMLCSS.Measured(html,box); + } + HTMLCSS.placeBox(box,0,0); + // + // Get width right if minimum font size is set: + // Round to nearest pixel (plus a small amount), and convert back to outer-em's. + // Add the width to the span (outside the MathJax class, so uses outer em size, + // which makes it work even when minimum font size is in effect). + // + span.style.width = HTMLCSS.Em((Math.round(math.bbox.w*this.em)+.25)/HTMLCSS.outerEm); + span.style.display = "inline-block"; + // + // Adjust bbox to match outer em-size + // + var p = 1/HTMLCSS.em, f = HTMLCSS.em / HTMLCSS.outerEm; HTMLCSS.em /= f; + span.bbox.h *= f; span.bbox.d *= f; span.bbox.w *= f; + span.bbox.lw *= f; span.bbox.rw *= f; + if (math && math.bbox.width != null) { + span.style.minWidth = (math.bbox.minWidth || span.style.width); + span.style.width = stack.style.width = math.bbox.width; + box.style.width = "100%"; + } + // + // Add color (if any) + // + this.HTMLhandleColor(span); + // + // Make math span be the correct height and depth + // + if (math) {HTMLCSS.createRule(span,(math.bbox.h+p)*f,(math.bbox.d+p)*f,0)} + // + // Handle indentalign and indentshift for single-line display equations + // + if (!this.isMultiline && this.Get("display") === "block" && span.bbox.width == null) { + var values = this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift"); + if (values.indentalignfirst !== MML.INDENTALIGN.INDENTALIGN) {values.indentalign = values.indentalignfirst} + if (values.indentalign === MML.INDENTALIGN.AUTO) {values.indentalign = this.displayAlign} + node.style.textAlign = values.indentalign; + if (values.indentshiftfirst !== MML.INDENTSHIFT.INDENTSHIFT) {values.indentshift = values.indentshiftfirst} + if (values.indentshift === "auto") {values.indentshift = this.displayIndent} + if (values.indentshift && values.indentalign !== MML.INDENTALIGN.CENTER) { + span.style[{left:"marginLeft",right:"marginRight"}[values.indentalign]] = + HTMLCSS.Em(HTMLCSS.length2em(values.indentshift)); + } + } + return span; + }, + HTMLspanElement: MML.mbase.prototype.HTMLspanElement + }); + + MML.TeXAtom.Augment({ + toHTML: function (span) { + span = this.HTMLcreateSpan(span); + if (this.data[0] != null) { + if (this.texClass === MML.TEXCLASS.VCENTER) { + var stack = HTMLCSS.createStack(span); + var box = HTMLCSS.createBox(stack); + HTMLCSS.Measured(this.data[0].toHTML(box),box); + // FIXME: should the axis height be scaled? + HTMLCSS.placeBox(box,0,HTMLCSS.TeX.axis_height-(box.bbox.h+box.bbox.d)/2+box.bbox.d); + } else { + span.bbox = this.data[0].toHTML(span).bbox; + } + } + this.HTMLhandleSpace(span); + this.HTMLhandleColor(span); + return span; + } + }); + + // + // Loading isn't complete until the element jax is modified, + // but can't call loadComplete within the callback for "mml Jax Ready" + // (it would call HTMLCSS's Require routine, asking for the mml jax again) + // so wait until after the mml jax has finished processing. + // + // We also need to wait for the onload handler to run, since the loadComplete + // will call Config and Startup, which need to modify the body. + // + MathJax.Hub.Register.StartupHook("onLoad",function () { + setTimeout(MathJax.Callback(["loadComplete",HTMLCSS,"jax.js"]),0); + }); + }); + + HUB.Register.StartupHook("End Config",function () { + + // + // Handle browser-specific setup + // + HUB.Browser.Select({ + MSIE: function (browser) { + var mode = (document.documentMode || 0); + var isIE7 = browser.versionAtLeast("7.0"); + var isIE8 = browser.versionAtLeast("8.0") && mode > 7; + var quirks = (document.compatMode === "BackCompat"); + if (mode < 9) { + // IE doesn't do mouse events on trasparent objects, + // so give a background color, but opacity makes it transparent + HTMLCSS.config.styles[".MathJax .MathJax_HitBox"]["background-color"] = "white"; + HTMLCSS.config.styles[".MathJax .MathJax_HitBox"].opacity = 0 + HTMLCSS.config.styles[".MathJax .MathJax_HitBox"].filter = "alpha(opacity=0)"; + } + // FIXME: work out tests for these? + HTMLCSS.Augment({ + PaddingWidthBug: true, + msieAccentBug: true, + msieColorBug: true, + msieColorPositionBug: true, // needs position:relative to put color behind text + msieRelativeWidthBug: quirks, + msieDisappearingBug: (mode >= 8), // inline math disappears + msieMarginScaleBug: (mode < 8), // relative margins are not scaled properly by font-size + msiePaddingWidthBug: true, + msieBorderWidthBug: quirks, + msieFrameSizeBug: (mode <= 8), // crashes if size of box isn't big enough for border + msieInlineBlockAlignBug: (!isIE8 || quirks), + msiePlaceBoxBug: (isIE8 && !quirks), + msieClipRectBug: !isIE8, + msieNegativeSpaceBug: quirks, + cloneNodeBug: (isIE8 && browser.version === "8.0"), + initialSkipBug: (mode < 8), // confused by initial left-margin values + msieNegativeBBoxBug: (mode >= 8), // negative bboxes have positive widths + msieIE6: !isIE7, + msieItalicWidthBug: true, + FontFaceBug: true, + msieFontCSSBug: browser.isIE9, + allowWebFonts: (mode >= 9 ? "woff" : "eot") + }); + }, + + Firefox: function (browser) { + var webFonts = false; + if (browser.versionAtLeast("3.5")) { + var root = String(document.location).replace(/[^\/]*$/,""); + if (document.location.protocol !== "file:" || HUB.config.root.match(/^https?:\/\//) || + (HUB.config.root+"/").substr(0,root.length) === root) {webFonts = "otf"} + } + HTMLCSS.Augment({ + ffVerticalAlignBug: true, + AccentBug: true, + allowWebFonts: webFonts + }); + }, + + Safari: function (browser) { + var v3p0 = browser.versionAtLeast("3.0"); + var v3p1 = browser.versionAtLeast("3.1"); + var trueSafari = navigator.appVersion.match(/ Safari\/\d/) && + navigator.appVersion.match(/ Version\/\d/) && + navigator.vendor.match(/Apple/); + var android = (navigator.appVersion.match(/ Android (\d+)\.(\d+)/)); + var forceImages = (v3p1 && browser.isMobile && ( + (navigator.platform.match(/iPad|iPod|iPhone/) && !browser.versionAtLeast("5.0")) || + (android != null && (android[1] < 2 || (android[1] == 2 && android[2] < 2))) + )); + HTMLCSS.Augment({ + config: { + styles: { + ".MathJax img, .MathJax nobr, .MathJax a": { + // "none" seems to work like "0px" when width is initially 0 + "max-width": "5000em", "max-height": "5000em" + } + } + }, + rfuzz: .011, + AccentBug: true, + AdjustSurd: true, + negativeBBoxes: true, + safariNegativeSpaceBug: true, + safariVerticalAlignBug: !v3p1, + safariTextNodeBug: !v3p0, + forceReflow: true, + allowWebFonts: (v3p1 && !forceImages ? "otf" : false) + }); + if (trueSafari) { + HTMLCSS.Augment({ + webFontDefault: (browser.isMobile ? "sans-serif" : "serif") + }); + } + if (browser.isPC) { + HTMLCSS.Augment({ + adjustAvailableFonts: HTMLCSS.removeSTIXfonts, // can't access plane1 + checkWebFontsTwice: true // bug in Safari/Win that doesn't update font test div properly + }); + } + if (forceImages) { + // Force image mode for iOS prior to 4.2 and Droid prior to 2.2 + var config = HUB.config["HTML-CSS"]; + if (config) {config.availableFonts = []; config.preferredFont = null} + else {HUB.config["HTML-CSS"] = {availableFonts: [], preferredFont: null}} + } + }, + + Chrome: function (browser) { + HTMLCSS.Augment({ + Em: HTMLCSS.EmRounded, // vertical alignment needs help (since around v20) + cloneNodeBug: true, // Chrome gets heights wrong with the cloned ones + rfuzz: .011, + AccentBug: true, + AdjustSurd: true, + negativeBBoxes: true, + safariNegativeSpaceBug: true, + safariWebFontSerif: [""], + forceReflow: true, + allowWebFonts: (browser.versionAtLeast("4.0") ? "otf" : "svg") + }); + }, + + Opera: function (browser) { + browser.isMini = (navigator.appVersion.match("Opera Mini") != null); + HTMLCSS.config.styles[".MathJax .merror"]["vertical-align"] = null; + HTMLCSS.config.styles[".MathJax span"]["z-index"] = 0; + HTMLCSS.Augment({ + operaHeightBug: true, + operaVerticalAlignBug: true, + operaFontSizeBug: browser.versionAtLeast("10.61"), + initialSkipBug: true, + FontFaceBug: true, + PaddingWidthBug: true, + allowWebFonts: (browser.versionAtLeast("10.0") && !browser.isMini ? "otf" : false), + adjustAvailableFonts: HTMLCSS.removeSTIXfonts + }); + }, + + Konqueror: function (browser) { + HTMLCSS.Augment({ + konquerorVerticalAlignBug: true + }); + } + }); + + }); + + MathJax.Hub.Register.StartupHook("End Cookie", function () { + if (HUB.config.menuSettings.zoom !== "None") + {AJAX.Require("[MathJax]/extensions/MathZoom.js")} + }); + +})(MathJax.Ajax, MathJax.Hub, MathJax.OutputJax["HTML-CSS"]); diff --git a/modules/MathJax/unpacked/jax/output/NativeMML/config.js b/modules/MathJax/unpacked/jax/output/NativeMML/config.js new file mode 100644 index 0000000..3ff3775 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/NativeMML/config.js @@ -0,0 +1,52 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/NativeMML/config.js + * + * Initializes the NativeMML OutputJax (the main definition is in + * MathJax/jax/input/NativeMML/jax.js, which is loaded when needed). + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax.NativeMML = MathJax.OutputJax({ + id: "NativeMML", + version: "2.3", + directory: MathJax.OutputJax.directory + "/NativeMML", + extensionDir: MathJax.OutputJax.extensionDir + "/NativeMML", + + config: { + matchFontHeight: true, // try to match math font height to surrounding font? + scale: 100, // scaling factor for all math + minScaleAdjust: 50, // minimum scaling to adjust to surrounding text + // (since the code for that is a bit delicate) + + styles: { + "div.MathJax_MathML": { + "text-align": "center", + margin: ".75em 0px" + } + } + } +}); + +if (!MathJax.Hub.config.delayJaxRegistration) + MathJax.OutputJax.NativeMML.Register("jax/mml"); + +MathJax.OutputJax.NativeMML.loadComplete("config.js"); diff --git a/modules/MathJax/unpacked/jax/output/NativeMML/jax.js b/modules/MathJax/unpacked/jax/output/NativeMML/jax.js new file mode 100644 index 0000000..7e38c03 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/NativeMML/jax.js @@ -0,0 +1,1342 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/NativeMML/jax.js + * + * Implements the NativeMML OutputJax that displays mathematics + * using a browser's native MathML capabilities (if any). + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2010-2012 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (nMML,HUB,AJAX,HTML) { + var MML, isMSIE = HUB.Browser.isMSIE; + + var EVENT, TOUCH, HOVER, ZOOM; // filled in later + + HUB.Register.StartupHook("MathZoom Ready",function () {ZOOM = MathJax.Extension.MathZoom}); + + var NOPADDING = function (side,obj) { + var span = HTML.Element("span"); side = "padding"+side; + if (obj) { + span.style.cssText = (obj.getAttribute("style")||""); + if (span.style.padding === "" && (span.style[side]||"") === "") { + span.style[side] = "0px"; obj.setAttribute("style",span.style.cssText) + } + } + }; + + var CELLSPACING = function (obj,rowSpacing,columnSpacing) { + // + // Webkit default padding on mtd cells is simply + // + // mtd {padding: 0.5ex;} + // + // Gecko default padding on mtd cells is + // + // mtd {padding-right: 0.4em; + // padding-left: 0.4em; + // padding-bottom: 0.5ex; + // padding-top: 0.5ex;} + // mtr:first-child > mtd {padding-top: 0ex;} + // mtr:last-child > mtd {padding-bottom: 0ex;} + // mtd:first-child {padding-left: 0em;} + // mtd:last-child {padding-right: 0em;} + // + // that is the columnspacing/rowspacing is split into two adjacent cells, + // and the periphery of boundary cells is set to zero. + // + // Here, we will set the left/top padding of each cell to + // rowSpacing/columnSpacing (or 0px for the leftmost/topmost cells) and + // reset the right/bottom padding to zero. + // + if (obj) { + var span = HTML.Element("span"); + span.style.cssText = (obj.getAttribute("style")||""); + if (span.style.padding === "") { + var padding = { paddingLeft: columnSpacing, paddingTop: rowSpacing, + paddingRight: "0px", paddingBottom: "0px" }; + for (var side in padding) {if (padding.hasOwnProperty(side)) { + if ((span.style[side]||"") === "") {span.style[side] = padding[side];} + }} + } + obj.setAttribute("style",span.style.cssText); + } + }; + + nMML.Augment({ + // + // User can configure styles + // + config: { + styles: { + ".MathJax_MathML": { + "font-style": "normal", + "font-weight": "normal", + "line-height": "normal", + "font-size": "100%", + "font-size-adjust":"none", + "text-indent": 0, + "text-align": "left", + "text-transform": "none", + "letter-spacing": "normal", + "word-spacing": "normal", + "word-wrap": "normal", + "white-space": "nowrap", + "float": "none", + "direction": "ltr", + border: 0, padding: 0, margin: 0 + }, + + "span.MathJax_MathML": { + display: "inline" + }, + + "div.MathJax_MathML": { + display: "block" + }, + + ".MathJax_mmlExBox": { + display:"block", overflow:"hidden", + height:"1px", width:"60ex", + padding:0, border: 0, margin: 0 + } + } + }, + settings: HUB.config.menuSettings, + ex: 1, scale: 1, // filled in later + adjustWidths: [], // array of elements to have their widths adjusted + + Config: function () { + this.SUPER(arguments).Config.call(this); + if (this.settings.scale) {this.config.scale = this.settings.scale} + // + // Insert styling to take account of displayAlign and displayIndent + // + if (HUB.config.displayAlign !== "center") { + var align = HUB.config.displayAlign, indent = HUB.config.displayIndent; + var def = {"text-align": align+"!important"}; def["margin-"+align] = indent+"!important"; + HUB.Insert(this.config.styles,{ + "div.MathJax_MathML": def, + "div.MathJax_MathML math": {"text-align": align}, + "div.MathJax_MathContainer > span": {"text-align": align+"!important"} + }); + } + if (!this.require) {this.require = []} + this.require.push(MathJax.OutputJax.extensionDir+"/MathEvents.js"); + }, + Startup: function () { + // Set up event handling + EVENT = MathJax.Extension.MathEvents.Event; + TOUCH = MathJax.Extension.MathEvents.Touch; + HOVER = MathJax.Extension.MathEvents.Hover; + this.ContextMenu = EVENT.ContextMenu; + this.Mousedown = EVENT.AltContextMenu; + this.Mouseover = HOVER.Mouseover; + this.Mouseout = HOVER.Mouseout; + this.Mousemove = HOVER.Mousemove; + + if (!isMSIE) { + // Used in preTranslate to get scaling factors + this.EmExSpan = HTML.Element("span", + {style:{position:"absolute","font-size-adjust":"none"}}, + [ + ["div",{className:"MathJax_mmlExBox"}], + ["span",{className:"MathJax_MathML"}] + ] + ); + MML.math(MML.mspace().With({width:"60ex"})).toNativeMML(this.EmExSpan.lastChild); + } + + // Set up styles + return AJAX.Styles(this.config.styles); + }, + // + // Set up MathPlayer for IE on the first time through. + // + InitializeMML: function () { + this.initialized = true; + if (isMSIE) { + try { + // + // Insert data needed to use MathPlayer for MathML output + // + if (!HUB.Browser.mpNamespace) { + var mathplayer = document.createElement("object"); + mathplayer.id = "mathplayer"; mathplayer.classid = "clsid:32F66A20-7614-11D4-BD11-00104BD3F987"; + document.getElementsByTagName("head")[0].appendChild(mathplayer); + document.namespaces.add("m","http://www.w3.org/1998/Math/MathML"); + HUB.Browser.mpNamespace = true; + } + if (!HUB.Browser.mpImported) { + document.namespaces.m.doImport("#mathplayer"); + HUB.Browser.mpImported = true; + } + } catch (err) { + // + // If that fails, give an alert about security settings + // + alert(MathJax.Localization._(["MathML", "MathPlayer"], + "MathJax was not able to set up MathPlayer.\n\n"+ + "If MathPlayer is not installed, you need to install it first.\n"+ + "Otherwise, your security settings may be preventing ActiveX \n"+ + "controls from running. Use the Internet Options item under\n"+ + "the Tools menu and select the Security tab, then press the\n"+ + "Custom Level button. Check that the settings for\n"+ + "'Run ActiveX Controls', and 'Binary and script behaviors'\n"+ + "are enabled.\n\n"+ + "Currently you will see error messages rather than\n"+ + "typeset mathematics.")); + } + } else { + // + // Get the default sizes (need styles in place to do this) + // + document.body.appendChild(this.EmExSpan); + this.defaultEx = this.EmExSpan.firstChild.offsetWidth/60; + this.defaultMEx = this.EmExSpan.lastChild.offsetWidth/60; + document.body.removeChild(this.EmExSpan); + } + }, + + preTranslate: function (state) { + var scripts = state.jax[this.id], i, m = scripts.length, + script, prev, span, test, math, jax, ex, mex, scale; + for (i = 0; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; + if (!this.initialized) {this.InitializeMML()} + // + // Remove any existing output + // + prev = script.previousSibling; + if (prev && prev.className === "MathJax_MathML") {prev.parentNode.removeChild(prev)} + // + // Add the MathJax span + // + jax = script.MathJax.elementJax; if (!jax) continue; + math = jax.root; jax.NativeMML = {}; + var type = (math.Get("display") === "block" ? "div" : "span"); + span = HTML.Element(type,{ + className: "MathJax_MathML", id:jax.inputID+"-Frame" + },[["span",{ + className:"MathJax_MathContainer", isMathJax: true, jaxID:this.id, + style:{position:"relative", display:"inline-block", "white-space":"nowrap"} + }, [["span",{isMathJax:true, style:{display:"inline-block"}}]] // for Firefox hover and zoom + ]]); + script.parentNode.insertBefore(span,script); + // + // Add the test span for determining scales + // + if (!isMSIE) {script.parentNode.insertBefore(this.EmExSpan.cloneNode(true),script)} + } + // + // Determine the scaling factors for each script + // (this only requires one reflow rather than a reflow for each equation) + // + for (i = 0; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; + jax = script.MathJax.elementJax; if (!jax) continue; + if (!isMSIE) { + test = script.previousSibling; + ex = test.firstChild.offsetWidth/60; + mex = test.lastChild.offsetWidth/60; + if (ex === 0 || ex === "NaN") {ex = this.defaultEx; mex = this.defaultMEx} + scale = (this.config.matchFontHeight && mex > 1 ? ex/mex : 1); + scale = Math.floor(Math.max(this.config.minScaleAdjust/100,scale) * this.config.scale); + jax.NativeMML.ex = ex; jax.NativeMML.mex = mex; + } else {scale = 100} + jax.NativeMML.fontSize = scale+"%"; + jax.NativeMML.scale = scale/100; + } + // + // Remove the test spans used for determining scales + // + if (!isMSIE) { + for (i = 0; i < m; i++) { + script = scripts[i]; + if (script.parentNode && script.MathJax.elementJax) { + script.parentNode.removeChild(script.previousSibling); + } + } + } + }, + + // + // Add a SPAN to use as a container, and render the math into it + // + Translate: function (script) { + if (!script.parentNode) return; + // + // Get the jax and the container and set the size + // + var jax = script.MathJax.elementJax, math = jax.root; + var span = document.getElementById(jax.inputID+"-Frame"), + container = span.firstChild, mspan = container.firstChild; + this.ex = jax.NativeMML.ex || this.defaultEx; + this.scale = jax.NativeMML.scale || 1; + if (this.scale !== 1) {span.style.fontSize = jax.NativeMML.fontSize} + // + // Convert to MathML (if restarted, remove any partial math) + // + try {math.toNativeMML(mspan)} catch (err) { + if (err.restart) {while (mspan.firstChild) {mspan.removeChild(mspan.firstChild)}} + throw err; + } + // + // Add event handlers + // + if (isMSIE) { + if (container.addEventListener) { + for (var id in this.MSIE9events) {if (this.MSIE9events.hasOwnProperty(id)) { + container.addEventListener(id,this.MSIE9event,true); + }} + } else { + var config = (this.config.showMathMenuMSIE != null ? this : HUB).config; + if (config.showMathMenuMSIE && !this.settings.mpContext && !this.settings.mpMouse) + {this.MSIEoverlay(container)} else + {container.style.position = ""; mspan.firstChild.onmousedown = this.MSIEaltMenu} + } + } else { + container.oncontextmenu = EVENT.Menu; + container.onmouseover = EVENT.Mouseover; + container.onmouseout = EVENT.Mouseout; + container.onmousedown = EVENT.Mousedown; + container.onclick = EVENT.Click; + container.ondblclick = EVENT.DblClick; + if (HUB.Browser.noContextMenu) { + container.ontouchstart = TOUCH.start; + container.ontouchend = TOUCH.end; + } + } + }, + + postTranslate: function (state) { + if (this.forceReflow) { + // + // Firefox messes up some mtable's when they are dynamically created + // but gets them right on a reflow, so force reflow by toggling a stylesheet + // + var sheet = (document.styleSheets||[])[0]||{}; + sheet.disabled = true; sheet.disabled = false; + } + }, + + // + // Remove MathML preceeding the script + // + Remove: function (jax) { + var span = jax.SourceElement(); if (!span) return; + span = span.previousSibling; if (!span) return; + if (span.className.match(/MathJax_MathML/)) {span.parentNode.removeChild(span)} + }, + // + // The namespace to use for MML + // + MMLnamespace: "http://www.w3.org/1998/Math/MathML", + + // + // For MSIE, we must overlay the MathPlayer object to trap the events + // (since they can't be cancelled when the events are on the tag + // itself). The events we DON'T want are transferred to the math element, + // and the others are handled directly. + // + MSIEoverlay: function (span) { + var math = span.firstChild; + if (math.nodeName.toLowerCase() === "span") {math = math.firstChild} + var bbox = this.getHoverBBox(null,math,{}); + HTML.addElement(span,"span",{ + style:{display:"inline-block", width:0, height:0, position:"relative"} + },[["span",{isMathJax: true, className: "MathJax_MathPlayer_Overlay", + style:{ + display:"inline-block", position:"absolute", + left:HOVER.Px(-bbox.w), top:HOVER.Px(-bbox.h-(bbox.y||0)-1), + width:HOVER.Px(bbox.w), height:HOVER.Px(bbox.h+bbox.d), cursor:"pointer", + "background-color":"white", filter:"alpha(opacity=0)" + } + }]]); + HUB.Insert(span,{ + msieMath: math, + onmousedown: this.MSIEevent, oncontextmenu: this.MSIEevent, onclick: this.MSIEevent, + onmouseup: this.MSIEevent, onmousemove: this.MSIEevent, ondblclick: this.MSIEevent, + onmouseover: this.MSIEevent, onmouseout: this.MSIEevent + }); + }, + MSIEevents: { + mousedown:"Mousedown", contextmenu:"ContextMenu", click:"Click", + mouseup:"Mouseup", mousemove:"Mousemove", dblclick: "DblClick", + mouseover:"Mouseover", mouseout:"Mouseout" + }, + MSIEevent: function () { + var event = window.event; + var type = nMML.MSIEevents[event.type]; + if (nMML[type] && nMML[type](event,this) === false) {return false} + if (ZOOM && ZOOM.HandleEvent(event,type,this) === false) {return false} + if (event.srcElement.className === "MathJax_MathPlayer_Overlay" && this.msieMath.fireEvent) { + // + // For now, ignore all other events. This will disable MathPlayer's zoom + // feature, but also its support. + // + if (type === "ContextMenu" || type === "Mouseover" || type === "Mouseout") + {this.msieMath.fireEvent("on"+event.type,event)} + } + return EVENT.False(event); + }, + MSIEaltMenu: function () { + var container = this.parentNode.parentNode; + while (!container.jaxID) {container = container.parentNode} + EVENT.AltContextMenu(window.event,container); + }, + + MSIE9events: { + contextmenu:"Menu", click:"Click", dblclick: "DblClick", + mouseup:"False", mouseover:"Mouseover", mouseout:"Mouseout" + }, + MSIE9event: function (event) { + if (event.type === "contextmenu" && nMML.settings.mpContext) {return true} + if (event.type === "mouseup" && nMML.settings.mpMouse) {return true} + if (event.type === "click" && nMML.settings.mpContext) + {return EVENT.AltContextMenu(event,this)} + var type = nMML.MSIE9events[event.type]; + return EVENT[type].call(this,event); + }, + + getJaxFromMath: function (math) { + math = math.parentNode; + do {math = math.nextSibling} while (math && math.nodeName.toLowerCase() !== "script"); + return HUB.getJaxFor(math); + }, + getHoverSpan: function (jax,math) {return math.firstChild}, + getHoverBBox: function (jax,span,math) {return EVENT.getBBox(span.parentNode)}, + + Zoom: function (jax,span,math,Mw,Mh) { + jax.root.toNativeMML(span); + if (this.msieIE8HeightBug) {span.style.position = "absolute"} + var mW = math.offsetWidth || math.scrollWidth, + mH = math.offsetHeight || math.scrollHeight; + var zW = span.offsetWidth, zH = span.offsetHeight; + if (nMML.widthBug) { + // + // FF doesn't get width of right, so get it from + // + var W = span.firstChild.firstChild.scrollWidth; + if (W > zW) {zW = W; span.style.width = zW + "px"} + } + if (this.msieIE8HeightBug) {span.style.position = ""} + return {Y:-EVENT.getBBox(span.parentNode).h, mW:mW, mH:mH, zW:zW, zH:zH} + }, + + NAMEDSPACE: { + negativeveryverythinmathspace: "-.0556em", + negativeverythinmathspace: "-.1111em", + negativethinmathspace: "-.1667em", + negativemediummathspace: "-.2222em", + negativethickmathspace: "-.2778em", + negativeverythickmathspace: "-.3333em", + negativeveryverythickmathspace: "-.3889em", + veryverythinmathspace: ".0556em", + verythinmathspace: ".1111em", + thinmathspace: ".1667em", + mediummathspace: ".2222em", + thickmathspace: ".2778em", + verythickmathspace: ".3333em", + veryverythickmathspace: ".3889em" + } + }); + + HUB.Register.StartupHook("mml Jax Ready",function () { + + MML = MathJax.ElementJax.mml; + + MML.mbase.Augment({ + // + // Add a MathML tag of the correct type, and set its attributes + // then populate it with its children and append it to the parent + // + toNativeMML: function (parent) { + var tag = this.NativeMMLelement(this.type); + this.NativeMMLattributes(tag); + for (var i = 0, m = this.data.length; i < m; i++) { + if (this.data[i]) {this.data[i].toNativeMML(tag)} + else {tag.appendChild(this.NativeMMLelement("mrow"))} + } + parent.appendChild(tag); + }, + // + // Look for attributes that are different from the defaults + // and set those in the tag's attribute list + // + NativeMMLattributes: function (tag) { + var defaults = this.defaults; + var copy = (this.attrNames||MML.copyAttributeNames), skip = MML.skipAttributes; + if (!this.attrNames) { + if (this.type === "mstyle") {defaults = MML.math.prototype.defaults} + for (var id in defaults) {if (!skip[id] && defaults.hasOwnProperty(id)) { + if (this[id] != null) {tag.setAttribute(id,this.NativeMMLattribute(this[id]))} + }} + } + for (var i = 0, m = copy.length; i < m; i++) { + var value = (this.attr||{})[copy[i]]; if (value == null) {value = this[copy[i]]} + if (value != null) {tag.setAttribute(copy[i],this.NativeMMLattribute(value))} + } + this.NativeMMLclass(tag); + }, + NativeMMLclass: function (tag) { + var CLASS = []; if (this["class"]) {CLASS.push(this["class"])} + if (this.isa(MML.TeXAtom)) { + var TEXCLASS = ["ORD","OP","BIN","REL","OPEN","CLOSE","PUNCT","INNER","VCENTER"][this.texClass]; + if (TEXCLASS) {CLASS.push("MJX-TeXAtom-"+TEXCLASS)} + } + if (this.mathvariant && this.NativeMMLvariants[this.mathvariant]) + {CLASS.push("MJX"+this.mathvariant)} + if (this.variantForm) {CLASS.push("MJX-variant")} + if (CLASS.length) {tag.setAttribute("class",CLASS.join(" "))} + }, + NativeMMLattribute: function (value) { + value = String(value); + if (nMML.NAMEDSPACE[value]) {value = nMML.NAMEDSPACE[value]} // MP doesn't do negative spaces + else if (value.match(/^\s*(([-+])?(\d+(\.\d*)?|\.\d+))\s*mu\s*$/)) + {value = RegExp.$2+((1/18)*RegExp.$3).toFixed(3).replace(/\.?0+$/,"")+"em"} // FIXME: should take scriptlevel into account + else if (this.NativeMMLvariants[value]) {value = this.NativeMMLvariants[value]} + return value; + }, + NativeMMLvariants: { + "-tex-caligraphic": MML.VARIANT.SCRIPT, + "-tex-caligraphic-bold": MML.VARIANT.BOLDSCRIPT, + "-tex-oldstyle": MML.VARIANT.NORMAL, + "-tex-oldstyle-bold": MML.VARIANT.BOLD, + "-tex-mathit": MML.VARIANT.ITALIC + }, + // + // Create a MathML element + // + NativeMMLelement: function (type) { + var math = (isMSIE ? document.createElement("m:"+type) : + document.createElementNS(nMML.MMLnamespace,type)); + math.isMathJax = true; + return math; + } + }); + + MML.mrow.Augment({ + // + // Make inferred rows not include an mrow tag + // + toNativeMML: function (parent) { + var i, m; + if (this.inferred && this.parent.inferRow) { + for (i = 0, m = this.data.length; i < m; i++) { + if (this.data[i]) {this.data[i].toNativeMML(parent)} + else {parent.appendChild(this.NativeMMLelement("mrow"))} + } + } else if (nMML.stretchyMoBug && (this.open || this.close)) { + // + // This element contains opening and/or closing fences. Opera is not + // able to stretch operators, so let's use an element + // instead. + // + var mfenced = this.NativeMMLelement("mfenced"); + this.NativeMMLattributes(mfenced); + i = 0, m = this.data.length; + if (this.open) { mfenced.setAttribute("open", this.open); i++; } + if (this.close) { mfenced.setAttribute("close", this.close); m--; } + var tag = mfenced; + if (m - i + 1 > 1) { + // + // If there are several children, put them in an + // + tag = this.NativeMMLelement("mrow"); + parent.appendChild(mfenced); + parent = mfenced; + } + for (; i < m; i++) { + if (this.data[i]) {this.data[i].toNativeMML(tag)} + else {tag.appendChild(this.NativeMMLelement("mrow"))} + } + parent.appendChild(tag); + } else { + this.SUPER(arguments).toNativeMML.call(this,parent); + } + } + }); + + MML.msubsup.Augment({ + // + // Use proper version of msub, msup, or msubsup, depending on + // which items are present + // + toNativeMML: function (parent) { + var type = this.type; + if (this.data[this.sup] == null) {type = "msub"} + if (this.data[this.sub] == null) {type = "msup"} + var tag = this.NativeMMLelement(type); + this.NativeMMLattributes(tag); + if (this.data[0]) {delete this.data[0].inferred} + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {this.data[i].toNativeMML(tag)}} + parent.appendChild(tag); + } + }); + + MML.munderover.Augment({ + // + // Use proper version of munder, mover, or munderover, depending on + // which items are present + // + toNativeMML: function (parent) { + var type = this.type; + if (this.data[this.under] == null) {type = "mover"} + if (this.data[this.over] == null) {type = "munder"} + var tag = this.NativeMMLelement(type); + this.NativeMMLattributes(tag); + if (this.data[0]) {delete this.data[0].inferred} + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {this.data[i].toNativeMML(tag)}} + parent.appendChild(tag); + } + }); + + if (!isMSIE) { + var SPLIT = HUB.SplitList; + MML.mtable.Augment({ + toNativeMML: function (parent) { + var i, m; + if (nMML.tableSpacingBug) { + // + // Parse the rowspacing/columnspacing. For convenience, we convert + // them to a left/top padding value that will be applied to each + // cell. The leftmost/topmost cells will use "0px". + // + var values = this.getValues("rowspacing", "columnspacing"); + this.nMMLtopPadding = SPLIT("0px "+values.rowspacing); + this.nMMLleftPadding = SPLIT("0px "+values.columnspacing); + // + // Transmit the top padding to each row. + // If this.parent.nMML.topPadding does not contain enough value, + // repeat the last one. + // + var tp = this.nMMLtopPadding, M = tp.length; + for (i = 0, m = this.data.length; i < m; i++) { + if (this.data[i]) + {this.data[i].nMMLtopPadding = tp[i < M ? i : M-1]} + } + } + if (nMML.tableLabelBug) { + // + // Look for labeled rows so we know how to handle them + // + for (i = 0, m = this.data.length; i < m; i++) { + if (this.data[i] && this.data[i].isa(MML.mlabeledtr)) { + var align = HUB.config.displayAlign.charAt(0), + side = this.Get("side").charAt(0); + this.nMMLhasLabels = true; + this.nMMLlaMatch = (align === side); + this.nMMLforceWidth = + (align === "c" || !!((this.width||"").match("%"))); + break; + } + } + } + // + // Firefox < 13 doesn't handle width, so put it in styles instead + // + if (this.width && this.ffTableWidthBug) { + var styles = (this.style||"").replace(/;\s*$/,"").split(";"); + if (styles[0] === "") {styles.shift()} + styles.push("width:"+this.width); + this.style = styles.join(";"); + } + this.SUPER(arguments).toNativeMML.call(this,parent); + // + if (this.nMMLhasLabels) { + var mtable = parent.firstChild; + // + // Add column attributes on the left when extra columns where inserted + // + if (this.nMMLforceWidth || side !== "r") { + var n = (align !== "l" ? 1 : 0) + (side === "l" ? 1 : 0); + if (n) { + var attr = {columnalign:"left", columnwidth:"auto", + columnspacing:"0px", columnlines:"none"}; + for (var id in attr) {if (attr.hasOwnProperty(id) && this[id]) { + var cols = [attr[id],attr[id]].slice(2-n).join(" ")+" "; + mtable.setAttribute(id,cols+mtable.getAttribute(id)); + }} + } + } + // + // Force the table width to 100% when needed + // + if (this.nMMLforceWidth || !this.nMMLlaMatch) + {mtable.setAttribute("width","100%")} + } + } + }); + MML.mtr.Augment({ + toNativeMML: function (parent) { + this.SUPER(arguments).toNativeMML.call(this,parent); + var mtr = parent.lastChild; + if (nMML.tableSpacingBug) { + // + // Set the row/column spacing. If this.parent.nMMLleftPadding does + // not contain enough value, repeat the last one. + // + var lp = this.parent.nMMLleftPadding, M = lp.length; + for (var mtd = mtr.firstChild, i = 0; mtd; mtd = mtd.nextSibling, i++) { + CELLSPACING(mtd,this.nMMLtopPadding,lp[i < M ? i : M-1]); + } + } + + if (nMML.tableLabelBug) { + var forceWidth = this.parent.nMMLforceWidth, + side = this.parent.Get("side").charAt(0), + align = HUB.config.displayAlign.charAt(0); + + if (this.parent.nMMLhasLabels && mtr.firstChild) { + // + // If we add a label or padding column on the left of mlabeledtr, + // mirror that here and remove padding from first table mtd + // so the spacing is consistent with unlabeled equations + // + if (forceWidth || side !== "r") { + NOPADDING("Left",mtr.firstChild); + if (align !== "l") { + mtr.insertBefore(this.NativeMMLelement("mtd"),mtr.firstChild) + .setAttribute("style","padding:0"); + } + if (side === "l") { + mtr.insertBefore(this.NativeMMLelement("mtd"),mtr.firstChild) + .setAttribute("style","padding:0"); + } + } + // + // If columns were added on the right, remove mtd padding + // so that spacing is consistent with unlabled equations + // + if (forceWidth || side !== "l") {NOPADDING("Right",mtr.lastChild)} + } + } + } + }); + MML.mlabeledtr.Augment({ + toNativeMML: function (parent) { + var mtr = this.NativeMMLelement("mtr"); + this.NativeMMLattributes(mtr); + // + // Add row data + // + for (var i = 1, m = this.data.length; i < m; i++) { + if (this.data[i]) {this.data[i].toNativeMML(mtr)} + else {mtr.appendChild(this.NativeMMLelement("mtd"))} + } + + if (nMML.tableSpacingBug) { + // + // Set the row/column spacing. If this.parent.nMMLleftPadding does + // not contain enough value, repeat the last one. + // + var lp = this.parent.nMMLleftPadding, M = lp.length; i = 0; + for (var mtd = mtr.firstChild; mtd; mtd = mtd.nextSibling, i++) { + CELLSPACING(mtd,this.nMMLtopPadding,lp[i < M ? i : M-1]); + } + } + + if (nMML.tableLabelBug && this.data[0]) { + var side = this.parent.Get("side").charAt(0), + align = HUB.config.displayAlign.charAt(0), + indent = HUB.config.displayIndent; + // + // Create label and either set the column width (if label is on the + // same side as the alignment), or use mpadded to hide the label + // width + // + this.data[0].toNativeMML(mtr); + var label = mtr.lastChild, pad = label; + if (side === align) { + label.setAttribute("style","width:"+indent); + label.setAttribute("columnalign",HUB.config.displayAlign); + } else { + pad = this.NativeMMLelement("mpadded"); + pad.setAttribute("style","width:0"); + pad.setAttribute("width","0px"); + pad.appendChild(label.firstChild); + label.appendChild(pad); + } + NOPADDING("",label); mtr.removeChild(label); + // + // Get spacing to use for separation of label from main table + // + var width = 100, forceWidth = this.parent.nMMLforceWidth; + if ((this.parent.width||"").match(/%/)) { + width -= parseFloat(this.parent.width) + }; + var w = width; + // + // Add spacing (and possibly label) at the left if needed + // + if (forceWidth || side !== "r") { + NOPADDING("Left",mtr.firstChild); + if (align !== "l") { + if (align === "c") {w /= 2}; width -= w; + mtr.insertBefore(this.NativeMMLelement("mtd"),mtr.firstChild) + .setAttribute("style","padding:0;width:"+w+"%"); + } + if (side === "l") {mtr.insertBefore(label,mtr.firstChild)} + } + // + // Add spacing (and possibly label) at the right if needed + // + if (forceWidth || side !== "l") { + NOPADDING("Right",mtr.lastChild); + if (align !== "r") { + mtr.appendChild(this.NativeMMLelement("mtd")) + .setAttribute("style","padding:0;width:"+width+"%"); + } + if (side === "r") { + if (side !== align) {pad.setAttribute("lspace","-1width")} + mtr.appendChild(label); + } + } + } + // + // Add row to table + // + parent.appendChild(mtr); + } + }); + + MML.mtd.Augment({ + toNativeMML: function (parent) { + var tag = parent.appendChild(this.NativeMMLelement(this.type)); + this.NativeMMLattributes(tag); + if (nMML.mtdWidthBug) { + nMML.adjustWidths.push(tag); + tag = tag.appendChild(this.NativeMMLelement("mrow")); + } + for (var i = 0, m = this.data.length; i < m; i++) { + if (this.data[i]) {this.data[i].toNativeMML(tag)} + else {tag.appendChild(this.NativeMMLelement("mrow"))} + } + } + }); + + MML.mspace.Augment({ + toNativeMML: function (parent) { + this.SUPER(arguments).toNativeMML.call(this,parent); + if (nMML.spaceWidthBug && this.width) { + var mspace = parent.lastChild; + var width = mspace.getAttribute("width"); + var style = (mspace.getAttribute("style") || "").replace(/;?\s*/,"; "); + mspace.setAttribute("style",style+"width:"+width); + } + } + }); + + var fontDir = AJAX.fileURL(MathJax.OutputJax.fontDir+"/HTML-CSS/TeX/otf"); + + /* + * Add fix for mathvariant issues in FF + */ + nMML.Augment({ + config: { + styles: { + '[mathvariant="double-struck"]': {"font-family":"MathJax_AMS, MathJax_AMS-WEB"}, + '[mathvariant="script"]': {"font-family":"MathJax_Script, MathJax_Script-WEB"}, + '[mathvariant="fraktur"]': {"font-family":"MathJax_Fraktur, MathJax_Fraktur-WEB"}, + '[mathvariant="bold-script"]': {"font-family":"MathJax_Script, MathJax_Caligraphic-WEB", "font-weight":"bold"}, + '[mathvariant="bold-fraktur"]': {"font-family":"MathJax_Fraktur, MathJax_Fraktur-WEB", "font-weight":"bold"}, + '[mathvariant="monospace"]': {"font-family":"monospace"}, + '[mathvariant="sans-serif"]': {"font-family":"sans-serif"}, + '[mathvariant="bold-sans-serif"]': {"font-family":"sans-serif", "font-weight":"bold"}, + '[mathvariant="sans-serif-italic"]': {"font-family":"sans-serif", "font-style":"italic"}, + '[mathvariant="sans-serif-bold-italic"]': {"font-family":"sans-serif", "font-style":"italic", "font-weight":"bold"}, + '[class="MJX-tex-oldstyle"]': {"font-family":"MathJax_Caligraphic, MathJax_Caligraphic-WEB"}, + '[class="MJX-tex-oldstyle-bold"]': {"font-family":"MathJax_Caligraphic, MathJax_Caligraphic-WEB", "font-weight":"bold"}, + '[class="MJX-tex-caligraphic"]': {"font-family":"MathJax_Caligraphic, MathJax_Caligraphic-WEB"}, + '[class="MJX-tex-caligraphic-bold"]': {"font-family":"MathJax_Caligraphic, MathJax_Caligraphic-WEB", "font-weight":"bold"}, + + '@font-face /*1*/': { + "font-family": "MathJax_AMS-WEB", + "src": "url('"+fontDir+"/MathJax_AMS-Regular.otf')" + }, + '@font-face /*2*/': { + "font-family": "MathJax_Script-WEB", + "src": "url('"+fontDir+"/MathJax_Script-Regular.otf')" + }, + '@font-face /*3*/': { + "font-family": "MathJax_Fraktur-WEB", + "src": "url('"+fontDir+"/MathJax_Fraktur-Regular.otf')" + }, + '@font-face /*4*/': { + "font-family": "MathJax_Caligraphic-WEB", + "src": "url('"+fontDir+"/MathJax_Caligraphic-Regular.otf')" + }, + '@font-face /*5*/': { + "font-family": "MathJax_Fraktur-WEB", "font-weight":"bold", + "src": "url('"+fontDir+"/MathJax_Fraktur-Bold.otf')" + }, + '@font-face /*6*/': { + "font-family": "MathJax_Caligraphic-WEB", "font-weight":"bold", + "src": "url('"+fontDir+"/MathJax_Caligraphic-Bold.otf')" + } + } + } + }); + } + + MML.math.Augment({ + toNativeMML: function (parent) { + var tag = this.NativeMMLelement(this.type), math = tag, jax; + var i, m; + nMML.adjustWidths = []; + // + // Some browsers don't seem to add the xmlns attribute, so do it by hand. + // + tag.setAttribute("xmlns",nMML.MMLnamespace); + this.NativeMMLattributes(tag); + // + // Use an extra in FF so that we can get the correct width + // (the math element doesn't always have an accurate one, see below) + // + if (nMML.widthBug) {tag = tag.appendChild(this.NativeMMLelement("mrow"))} + // + // Add the children + // + for (i = 0, m = this.data.length; i < m; i++) { + if (this.data[i]) {this.data[i].toNativeMML(tag)} + else {tag.appendChild(this.NativeMMLelement("mrow"))} + } + // + // Look for a top-level mtable and if it has labels + // Make sure the containers have 100% width, when needed + // If the label is on the same side as alignment, + // override the margin set by the stylesheet. + // + var mtable = ((this.data[0]||[]).data[0]||{}); + if (mtable.nMMLhasLabels) { + if (mtable.nMMLforceWidth || !mtable.nMMLlaMatch) { + tag.setAttribute("style","width:100%") + parent.style.width = parent.parentNode.style.width="100%"; + }; + if (mtable.nMMLlaMatch) { + if (parent.parentNode.parentNode.nodeName.toLowerCase() === "div") { + parent.parentNode.parentNode.style + .setProperty("margin-"+HUB.config.displayAlign,"0px","important"); + } + } + } + // + // Add the math to the page + // + parent.appendChild(math); + // + // Firefox can't seem to get the width of elements right, so + // use an to get the actual width and set the style on the + // parent element to match. Even if we set the width properly, + // it doesn't seem to propagate up to the correctly. + // + if (nMML.widthBug && + !(mtable.nMMLhasLabels && (mtable.nMMLforceWidth || !mtable.nMMLlaMatch))) { + // + // Convert size to ex's so that it scales properly if the print media + // has a different font size. + // + parent.style.width = (math.firstChild.scrollWidth/nMML.ex/nMML.scale).toFixed(3) + "ex"; + // + // Save size for later when we check if Web fonts have arrived + // + jax = HUB.getJaxFor(parent); + if (jax) {jax.NativeMML.scrollWidth = math.firstChild.scrollWidth} + } + if (nMML.adjustWidths.length) { + // + // Firefox gets the widths of elements wrong, so run + // through them (now that the math is part of the page) and + // fix them up. Use ex's so that they print properly (see above). + // + var mtd = []; + for (i = 0, m = nMML.adjustWidths.length; i < m; i++) { + tag = nMML.adjustWidths[i]; + var style = tag.getAttribute("style") || ""; + if (!style.match(/(^|;)\s*min-width:/)) { + mtd.push(tag.scrollWidth); + var width = (tag.scrollWidth/nMML.ex).toFixed(3)+"ex"; + style = style.replace(/;?\s*$/,"; "); + tag.setAttribute("style",style+"min-width:"+width); + } + } + // + // Save the lists so that we can check them later for web font downloads + // + if (!jax) {jax = HUB.getJaxFor(parent)} + if (jax) {jax.NativeMML.mtds = mtd} + math.MathJaxMtds = nMML.adjustWidths; + nMML.adjustWidths = []; // clear it so we don't hold onto the DOM elements + } + } + }); + + MML.mfenced.Augment({ + toNativeMML: function (parent) { + if (!nMML.mfencedBug) { + this.SUPER(arguments).toNativeMML.call(this,parent); + return; + } + + // + // Some browsers do not handle very well. The MathML spec + // suggests this equivalent construction instead, so let's use it: + // open, child1, sep1, child2, ... sep(N-1), childN, close + // Opera is a bit special: it does not support stretchy , does not + // parse mfenced@open/mfenced@close very well, does not support + // mfenced@separators and only displays the first child of the + // element... For this browser, we will use this construction: + // + // child1, sep1, child2, sep2, ..., sep(N-1), childN + // + // + var isOpera = HUB.Browser.isOpera; + var i, m, operator; + + // + // parse the open, close and separators attributes. + // + var values = this.getValues("open","close","separators"); + values.open = values.open.replace(/^\s+/,"").replace(/\s+$/,""); + values.close = values.close.replace(/^\s+/,"").replace(/\s+$/,""); + values.separators = values.separators.replace(/\s+/g,"").split(""); + if (values.separators.length == 0) { + // + // No separators specified, do not use separators at all. + // + values.separators = null; + } else if (values.separators.length < this.data.length-1) { + // + // There are not enough separators, repeat the last one. + // + var s = values.separators[values.separators.length-1]; + for (i = this.data.length-1-values.separators.length; i > 0; i--) + {values.separators.push(s)} + } + + // + // Create an container and attach the attributes of the + // element to it. Note: removeAttribute does not raise any + // exception when the attributes is absent. + // + var tag = this.NativeMMLelement(isOpera ? this.type : "mrow"); + this.NativeMMLattributes(tag); + tag.removeAttribute("separators"); + if (isOpera) { + tag.setAttribute("open", values.open); + tag.setAttribute("close", values.close); + if (this.data.length > 1) { + parent.appendChild(tag); parent = tag; + tag = this.NativeMMLelement("mrow"); + } + } else { + tag.removeAttribute("open"); + tag.removeAttribute("close"); + } + + if (!isOpera) { + // + // Append the opening fence + // + operator = this.NativeMMLelement("mo"); + operator.setAttribute("fence", "true"); + operator.textContent = values.open; + tag.appendChild(operator); + } + + // + // Append the content of the + // + for (i = 0, m = this.data.length; i < m; i++) { + if (values.separators && i > 0) { + operator = this.NativeMMLelement("mo"); + operator.setAttribute("separator", "true"); + operator.textContent = values.separators[i-1]; + tag.appendChild(operator); + } + if (this.data[i]) {this.data[i].toNativeMML(tag)} + else {tag.appendChild(this.NativeMMLelement("mrow"))} + } + + if (!isOpera) { + // + // Append the closing fence + // + operator = this.NativeMMLelement("mo"); + operator.setAttribute("fence", "true"); + operator.textContent = values.close; + tag.appendChild(operator); + } + + // finally, append the new element to the parent. + parent.appendChild(tag); + } + }); + + MML.TeXAtom.Augment({ + // + // Convert TeXatom to an mrow + // + toNativeMML: function (parent) { + // FIXME: Handle spacing using mpadded? + var tag = this.NativeMMLelement("mrow"); + this.NativeMMLattributes(tag); + this.data[0].toNativeMML(tag); + parent.appendChild(tag); + } + }); + + MML.chars.Augment({ + // + // Add a text node + // + toNativeMML: function (parent) { + parent.appendChild(document.createTextNode(this.toString())); + } + }); + + MML.entity.Augment({ + // + // Add a text node + // + toNativeMML: function (parent) { + parent.appendChild(document.createTextNode(this.toString())); + } + }); + + MML.xml.Augment({ + // + // Insert the XML verbatim + // + toNativeMML: function (parent) { + for (var i = 0, m = this.data.length; i < m; i++) + {parent.appendChild(this.data[i].cloneNode(true))} + } + }); + + MML.mi.Augment({ + toNativeMML: function (parent) { + this.SUPER(arguments).toNativeMML.call(this,parent); + if (nMML.miItalicBug) { + if (this.Get("mathvariant") === MML.VARIANT.NORMAL) { + // + // When not explicitly specified, mathvariant is set to "italic" + // with single char mi and to "normal" with multiple char mi. + // Some browsers always set the default to "italic", so let's + // attach an explicit mathvariant="normal" attribute. + // + var mi = parent.lastChild; + mi.setAttribute("mathvariant",MML.VARIANT.NORMAL); + } + } + } + }); + + MML.mo.Augment({ + toNativeMML: function (parent) { + this.SUPER(arguments).toNativeMML.call(this,parent); + if (nMML.webkitMoSpacingBug) { + // + // WebKit does not support lspace/rspace values around operators + // (neither explicit nor given by the operator dictionary) and uses + // constant values instead. So let's modify the CSS properties here. + // + + var lspace = 0, rspace = 0, p = this.parent; + if (p && p.type === "mrow" && (p.inferred || !p.isEmbellished())) { + // + // Retrieve the values of lspace/rspace and convert named spaces. + // Other values (except unitless) will be parsed by the CSS engine. + // + var values = this.getValues("lspace", "rspace"); + lspace = values.lspace, rspace = values.rspace; + if (nMML.NAMEDSPACE[lspace]) {lspace = nMML.NAMEDSPACE[lspace]} + if (nMML.NAMEDSPACE[rspace]) {rspace = nMML.NAMEDSPACE[rspace]} + } + + // + // Now update -webkit-margin-start and -webkit-margin-end. + // + var mo = parent.lastChild; + var span = HTML.Element("span"); + span.style.cssText = (mo.getAttribute("style")||""); + span.style.setProperty("-webkit-margin-start", lspace); + span.style.setProperty("-webkit-margin-end", rspace); + mo.setAttribute("style",span.style.cssText); + } + } + }); + + MML.mmultiscripts.Augment({ + toNativeMML: function (parent) { + // + // Some browsers do not implement the mmultiscripts element. + // Try to emulate the support using basic script elements. + // + if (!nMML.mmultiscriptsBug || this.data.length === 0 ) { + this.SUPER(arguments).toNativeMML.call(this,parent); + return; + } + + // + // The children of the mmultiscripts will be wrapped in an mrow so that + // attributes and properties set on the original mmultiscripts will + // be reflected on this mrow element. + // + var tag = this.NativeMMLelement("mrow"); + this.NativeMMLattributes(tag); + + // + // Create the base + // + if (this.data[0]) {this.data[0].toNativeMML(tag)} + else {tag.appendChild(this.NativeMMLelement("mrow"))} + base = tag.removeChild(tag.lastChild); + + // + // Process the postscript pairs + // + var m = this.data.length, i, msubsup; + for (i = 1; i < m; i+=2) { + if (this.data[i].type === "mprescripts") break; + + msubsup = this.NativeMMLelement("msubsup"); + msubsup.appendChild(base); + + // + // append the subscript + // + if (this.data[i]) {this.data[i].toNativeMML(msubsup)} + else {msubsup.appendChild(this.NativeMMLelement("mrow"))} + + // + // append the supscript + // + if (i+1 < m && this.data[i+1]) {this.data[i+1].toNativeMML(msubsup)} + else {msubsup.appendChild(this.NativeMMLelement("mrow"))} + + base = msubsup; + } + + tag.appendChild(base); + + // + // Process the prescript pairs + // + for (i++; i < m; i+=2) { + msubsup = this.NativeMMLelement("msubsup"); + msubsup.appendChild(this.NativeMMLelement("mrow")); + + // + // append the presubscript + // + if (this.data[i]) {this.data[i].toNativeMML(msubsup)} + else {msubsup.appendChild(this.NativeMMLelement("mrow"))} + + // + // append the presupscript + // + if (i+1 < m && this.data[i+1]) {this.data[i+1].toNativeMML(msubsup)} + else {msubsup.appendChild(this.NativeMMLelement("mrow"))} + + tag.insertBefore(msubsup, base); + } + + parent.appendChild(tag); + } + }); + + HUB.Register.StartupHook("TeX mathchoice Ready",function () { + MML.TeXmathchoice.Augment({ + // + // Get the MathML for the selected choice + // + toNativeMML: function (parent) {this.Core().toNativeMML(parent)} + }); + }); + + // + // Loading isn't complete until the element jax is modified, + // but can't call loadComplete within the callback for "mml Jax Ready" + // (it would call NativeMML's Require routine, asking for the mml jax again) + // so wait until after the mml jax has finished processing. + // + setTimeout(MathJax.Callback(["loadComplete",nMML,"jax.js"]),0); + }); + + + // + // Determine browser characteristics + // + HUB.Browser.Select({ + MSIE: function (browser) { + var mode = (document.documentMode || 0); + nMML.msieIE8HeightBug = (mode === 8); + }, + Opera: function (browser) { + nMML.operaPositionBug = true; + nMML.stretchyMoBug = true; + nMML.tableLabelBug = true; + nMML.mfencedBug = true; + nMML.miBug = true; + nMML.mmultiscriptsBug = true; + }, + Firefox: function (browser) { + nMML.ffTableWidthBug = !browser.versionAtLeast("13.0"); // not implemented + nMML.forceReflow = true; // with alignments set don't display properly without a reflow + nMML.widthBug = true; // elements don't always get the correct width + + // In Firefox < 20, the intrinsic width of is not computed + // correctly and thus the element is displayed incorrectly in . + nMML.spaceWidthBug = !browser.versionAtLeast("20.0"); + + nMML.mtdWidthBug = true; // widths not properly determined + + nMML.tableSpacingBug = true; // mtable@rowspacing/mtable@columnspacing not + // supported. + nMML.tableLabelBug = true; // mlabeledtr is not implemented. + nMML.mfencedBug = true; // mfenced not displayed correctly + }, + Chrome: function (browser) { + nMML.tableSpacingBug = true; + nMML.tableLabelBug = true; + nMML.mfencedBug = true; + }, + Safari: function (browser) { + nMML.tableSpacingBug = true; + nMML.tableLabelBug = true; + nMML.mfencedBug = true; + nMML.miItalicBug = true; + nMML.webkitMoSpacingBug = true; + nMML.spaceWidthBug = true; + nMML.mmultiscriptsBug = true; + } + }); + + + HUB.Register.StartupHook("End Cookie",function () { + if (HUB.config.menuSettings.zoom !== "None") + {AJAX.Require("[MathJax]/extensions/MathZoom.js")} + }); + +})(MathJax.OutputJax.NativeMML, MathJax.Hub, MathJax.Ajax, MathJax.HTML); diff --git a/modules/MathJax/unpacked/jax/output/SVG/autoload/annotation-xml.js b/modules/MathJax/unpacked/jax/output/SVG/autoload/annotation-xml.js new file mode 100644 index 0000000..fb7a553 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/autoload/annotation-xml.js @@ -0,0 +1,92 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/autoload/annotation-xml.js + * + * Implements the SVG output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + SVG = MathJax.OutputJax.SVG; + var BBOX = SVG.BBOX; + + BBOX.FOREIGN = BBOX.Subclass({type: "foreignObject", removeable: false}); + + MML["annotation-xml"].Augment({ + toSVG: function () { + var svg = this.SVG(); this.SVGhandleSpace(svg); + var encoding = this.Get("encoding"); + for (var i = 0, m = this.data.length; i < m; i++) + {svg.Add(this.data[i].toSVG(encoding),svg.w,0)} + svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + } + }); + + MML.xml.Augment({ + toSVG: function (encoding) { + // + // Get size of xml content + // + var span = SVG.textSVG.parentNode; + SVG.mathDiv.style.width = "auto"; // Firefox returns offsetWidth = 0 without this + span.insertBefore(this.div,SVG.textSVG); + var w = this.div.offsetWidth, h = this.div.offsetHeight; + var strut = MathJax.HTML.addElement(this.div,"span",{ + style:{display:"inline-block", overflow:"hidden", height:h+"px", + width:"1px", marginRight:"-1px"} + }); + var d = this.div.offsetHeight - h; h -= d; + this.div.removeChild(strut); + span.removeChild(this.div); SVG.mathDiv.style.width = ""; + // + // Create foreignObject element for the content + // + var scale = 1000/SVG.em; + var svg = BBOX.FOREIGN({ + y:(-h)+"px", width:w+"px", height:(h+d)+"px", + transform:"scale("+scale+") matrix(1 0 0 -1 0 0)" + }); + // + // Add the children to the foreignObject + // + for (var i = 0, m = this.data.length; i < m; i++) + {svg.element.appendChild(this.data[i].cloneNode(true))} + // + // Set the scale and finish up + // + svg.w = w*scale; svg.h = h*scale; svg.d = d*scale; + svg.r = svg.w; svg.l = 0; + svg.Clean(); + this.SVGsaveData(svg); + return svg; + } + }); + + MathJax.Hub.Startup.signal.Post("SVG annotation-xml Ready"); + MathJax.Ajax.loadComplete(SVG.autoloadDir+"/annotation-xml.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/autoload/maction.js b/modules/MathJax/unpacked/jax/output/SVG/autoload/maction.js new file mode 100644 index 0000000..a331c6a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/autoload/maction.js @@ -0,0 +1,198 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/autoload/maction.js + * + * Implements the SVG output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + SVG = MathJax.OutputJax["SVG"]; + + var currentTip, hover, clear; + + // + // Add configuration for tooltips + // + var CONFIG = SVG.config.tooltip = MathJax.Hub.Insert({ + delayPost: 600, delayClear: 600, + offsetX: 10, offsetY: 5 + },SVG.config.tooltip||{}); + + + MML.maction.Augment({ + SVGtooltip: MathJax.HTML.addElement(document.body,"div",{id:"MathJax_SVG_Tooltip"}), + + toSVG: function (HW,D) { + this.SVGgetStyles(); + var svg = this.SVG(); + var selected = this.selected(); + if (selected.type == "null") {this.SVGsaveData(svg);return svg;} + svg.Add(this.SVGdataStretched(this.Get("selection")-1,HW,D)); + this.SVGhandleHitBox(svg); + this.SVGhandleSpace(svg); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + SVGhandleHitBox: function (svg) { + var frame = SVG.addElement(svg.element,"rect", + {width:svg.w, height:svg.h+svg.d, y:-svg.d, fill:"none", "pointer-events":"all"}); + var type = this.Get("actiontype"); + if (this.SVGaction[type]) {this.SVGaction[type].call(this,svg,frame,this.Get("selection"))} + }, + SVGstretchH: MML.mbase.prototype.SVGstretchH, + SVGstretchV: MML.mbase.prototype.SVGstretchV, + + // + // Implementations for the various actions + // + SVGaction: { + toggle: function (svg,frame,selection) { + this.selection = selection; + SVG.Element(frame,{cursor:"pointer"}); + frame.onclick = MathJax.Callback(["SVGclick",this]); + }, + + statusline: function (svg,frame,selection) { + frame.onmouseover = MathJax.Callback(["SVGsetStatus",this]), + frame.onmouseout = MathJax.Callback(["SVGclearStatus",this]); + frame.onmouseover.autoReset = frame.onmouseout.autoReset = true; + }, + + tooltip: function(svg,frame,selection) { + frame.onmouseover = MathJax.Callback(["SVGtooltipOver",this]), + frame.onmouseout = MathJax.Callback(["SVGtooltipOut",this]); + frame.onmouseover.autoReset = frame.onmouseout.autoReset = true; + } + }, + + // + // Handle a click on the maction element + // (remove the original rendering and rerender) + // + SVGclick: function (event) { + this.selection++; + if (this.selection > this.data.length) {this.selection = 1} + var math = this; while (math.type !== "math") {math = math.inherit} + var jax = MathJax.Hub.getJaxFor(math.inputID); //, hover = !!jax.hover; + jax.Update(); + /* + * if (hover) { + * var span = document.getElementById(jax.inputID+"-Span"); + * MathJax.Extension.MathEvents.Hover.Hover(jax,span); + * } + */ + return MathJax.Extension.MathEvents.Event.False(event); + }, + + // + // Set/Clear the window status message + // + SVGsetStatus: function (event) { + // FIXME: Do something better with non-token elements + this.messageID = MathJax.Message.Set + ((this.data[1] && this.data[1].isToken) ? + this.data[1].data.join("") : this.data[1].toString()); + }, + SVGclearStatus: function (event) { + if (this.messageID) {MathJax.Message.Clear(this.messageID,0)} + delete this.messageID; + }, + + // + // Handle tooltips + // + SVGtooltipOver: function (event) { + if (!event) {event = window.event} + if (clear) {clearTimeout(clear); clear = null} + if (hover) {clearTimeout(hover)} + var x = event.pageX; var y = event.pageY; + if (x == null) { + x = event.clientX + document.body.scrollLeft + document.documentElement.scrollLeft; + y = event.clientY + document.body.scrollTop + document.documentElement.scrollTop; + } + var callback = MathJax.Callback(["SVGtooltipPost",this,x+CONFIG.offsetX,y+CONFIG.offsetY]) + hover = setTimeout(callback,CONFIG.delayPost); + }, + SVGtooltipOut: function (event) { + if (hover) {clearTimeout(hover); hover = null} + if (clear) {clearTimeout(clear)} + var callback = MathJax.Callback(["SVGtooltipClear",this,80]); + clear = setTimeout(callback,CONFIG.delayClear); + }, + SVGtooltipPost: function (x,y) { + hover = null; if (clear) {clearTimeout(clear); clear = null} + + // + // Get the tip div and show it at the right location, then clear its contents + // + var tip = this.SVGtooltip; + tip.style.display = "block"; tip.style.opacity = ""; + if (this === currentTip) return; + tip.style.left = x+"px"; tip.style.top = y+"px"; + tip.innerHTML = ''; var span = MathJax.HTML.addElement(tip,"span"); + + // + // Get the sizes from the jax (FIXME: should calculate again?) + // + var math = this; while (math.type !== "math") {math = math.inherit} + var jax = MathJax.Hub.getJaxFor(math.inputID); + this.em = MML.mbase.prototype.em = jax.SVG.em; this.ex = jax.SVG.ex; + this.linebreakWidth = jax.SVG.lineWidth * 1000; this.cwidth = jax.SVG.cwidth; + + // + // Make a new math element and temporarily move the tooltip to it + // Display the math containing the tip, but check for errors + // Then put the tip back into the maction element + // + var mml = this.data[1]; + math = MML.math(mml); + try {math.toSVG(span,tip)} catch(err) { + this.SetData(1,mml); tip.style.display = "none"; + if (!err.restart) {throw err} + MathJax.Callback.After(["SVGtooltipPost",this,x,y],err.restart); + return; + } + this.SetData(1,mml); + + currentTip = this; + }, + SVGtooltipClear: function (n) { + var tip = this.SVGtooltip; + if (n <= 0) { + tip.style.display = "none"; + tip.style.opacity = ""; + clear = null; + } else { + tip.style.opacity = n/100; + clear = setTimeout(MathJax.Callback(["SVGtooltipClear",this,n-20]),50); + } + } + }); + + MathJax.Hub.Startup.signal.Post("SVG maction Ready"); + MathJax.Ajax.loadComplete(SVG.autoloadDir+"/maction.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/autoload/menclose.js b/modules/MathJax/unpacked/jax/output/SVG/autoload/menclose.js new file mode 100644 index 0000000..8bd15fa --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/autoload/menclose.js @@ -0,0 +1,228 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/autoload/menclose.js + * + * Implements the SVG output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + SVG = MathJax.OutputJax.SVG, + BBOX = SVG.BBOX; + + BBOX.ELLIPSE = BBOX.Subclass({ + type: "ellipse", removeable: false, + Init: function (h,d,w,t,color,def) { + if (def == null) {def = {}}; def.fill = "none"; + if (color) {def.stroke = color} + def["stroke-width"] = t.toFixed(2).replace(/\.?0+$/,""); + def.cx = Math.floor(w/2); def.cy = Math.floor((h+d)/2-d); + def.rx = Math.floor((w-t)/2); def.ry = Math.floor((h+d-t)/2); + this.SUPER(arguments).Init.call(this,def); + this.w = this.r = w; this.h = this.H = h; + this.d = this.D = d; this.l = 0; + } + }); + + BBOX.DLINE = BBOX.Subclass({ + type: "line", removeable: false, + Init: function (h,d,w,t,color,updown,def) { + if (def == null) {def = {}}; def.fill = "none"; + if (color) {def.stroke = color} + def["stroke-width"] = t.toFixed(2).replace(/\.?0+$/,""); + if (updown == "up") { + def.x1 = Math.floor(t/2); def.y1 = Math.floor(t/2-d); + def.x2 = Math.floor(w-t/2); def.y2 = Math.floor(h-t/2); + } else { + def.x1 = Math.floor(t/2); def.y1 = Math.floor(h-t/2); + def.x2 = Math.floor(w-t/2); def.y2 = Math.floor(t/2-d); + } + this.SUPER(arguments).Init.call(this,def); + this.w = this.r = w; this.h = this.H = h; + this.d = this.D = d; this.l = 0; + } + }); + + BBOX.FPOLY = BBOX.Subclass({ + type: "polygon", removeable: false, + Init: function (points,color,def) { + if (def == null) {def = {}} + if (color) {def.fill = color} + var P = [], mx = 100000000, my = mx, Mx = -mx, My = Mx; + for (var i = 0, m = points.length; i < m; i++) { + var x = points[i][0], y = points[i][1]; + if (x > Mx) {Mx = x}; if (x < mx) {mx = x} + if (y > My) {My = y}; if (y < my) {my = y} + P.push(Math.floor(x)+","+Math.floor(y)); + } + def.points = P.join(" "); + this.SUPER(arguments).Init.call(this,def); + this.w = this.r = Mx; this.h = this.H = My; + this.d = this.D = -my; this.l = -mx; + } + }); + + BBOX.PPATH = BBOX.Subclass({ + type: "path", removeable: false, + Init: function (h,d,w,p,t,color,def) { + if (def == null) {def = {}}; def.fill = "none"; + if (color) {def.stroke = color} + def["stroke-width"] = t.toFixed(2).replace(/\.?0+$/,""); + def.d = p; + this.SUPER(arguments).Init.call(this,def); + this.w = this.r = w; this.h = this.H = h+d; + this.d = this.D = this.l = 0; this.y = -d; + } + }); + + MML.menclose.Augment({ + toSVG: function (HW,DD) { + this.SVGgetStyles(); + + var svg = this.SVG(); + this.SVGhandleSpace(svg); + var base = this.SVGdataStretched(0,HW,DD); + + var values = this.getValues("notation","thickness","padding","mathcolor","color"); + if (values.color && !this.mathcolor) {values.mathcolor = values.color} + if (values.thickness == null) {values.thickness = ".075em"} + if (values.padding == null) {values.padding = ".2em"} + var mu = this.SVGgetMu(svg), scale = this.SVGgetScale(); + var p = SVG.length2em(values.padding,mu,1/SVG.em) * scale; // padding for enclosure + var t = SVG.length2em(values.thickness,mu,1/SVG.em); // thickness of lines (not scaled, see issue #414) + var H = base.h+p+t, D = base.d+p+t, W = base.w+2*(p+t); + var dx = 0, w, h, i, m, borders = [false,false,false,false]; + if (!values.mathcolor) {values.mathcolor = "black"} + + // perform some reduction e.g. eliminate duplicate notations. + var nl = MathJax.Hub.SplitList(values.notation), notation = {}; + for (i = 0, m = nl.length; i < m; i++) notation[nl[i]] = true; + if (notation[MML.NOTATION.UPDIAGONALARROW]) notation[MML.NOTATION.UPDIAGONALSTRIKE] = false; + + for (var n in notation) { + if (!notation.hasOwnProperty(n) || !notation[n]) continue; + switch (n) { + case MML.NOTATION.BOX: + borders = [true,true,true,true]; + break; + + case MML.NOTATION.ROUNDEDBOX: + svg.Add(BBOX.FRAME(H,D,W,t,"solid",values.mathcolor, + {rx:Math.floor(Math.min(H+D-t,W-t)/4)})); + break; + + case MML.NOTATION.CIRCLE: + svg.Add(BBOX.ELLIPSE(H,D,W,t,values.mathcolor)); + break; + + case MML.NOTATION.ACTUARIAL: + borders[0] = true; + case MML.NOTATION.RIGHT: + borders[1] = true; + break; + + case MML.NOTATION.LEFT: + borders[3] = true; + break; + + case MML.NOTATION.TOP: + borders[0] = true; + break; + + case MML.NOTATION.BOTTOM: + borders[2] = true; + break; + + case MML.NOTATION.VERTICALSTRIKE: + svg.Add(BBOX.VLINE(H+D,t,"solid",values.mathcolor),(W-t)/2,-D); + break; + + case MML.NOTATION.HORIZONTALSTRIKE: + svg.Add(BBOX.HLINE(W,t,"solid",values.mathcolor),0,(H+D-t)/2-D); + break; + + case MML.NOTATION.UPDIAGONALSTRIKE: + svg.Add(BBOX.DLINE(H,D,W,t,values.mathcolor,"up")); + break; + + case MML.NOTATION.UPDIAGONALARROW: + var l = Math.sqrt(W*W + (H+D)*(H+D)), f = 1/l * 10/SVG.em * t/.075; + w = W * f; h = (H+D) * f; var x = .4*h; + svg.Add(BBOX.DLINE(H-.5*h,D,W-.5*w,t,values.mathcolor,"up")); + svg.Add(BBOX.FPOLY( + [[x+w,h], [x-.4*h,.4*w], [x+.3*w,.3*h], [x+.4*h,-.4*w], [x+w,h]], + values.mathcolor),W-w-x,H-h); + break; + + case MML.NOTATION.DOWNDIAGONALSTRIKE: + svg.Add(BBOX.DLINE(H,D,W,t,values.mathcolor,"down")); + break; + + case MML.NOTATION.MADRUWB: + borders[1] = borders[2] = true; + break; + + case MML.NOTATION.RADICAL: + svg.Add(BBOX.PPATH(H,D,W, + "M "+this.SVGxy(t/2,.4*(H+D)) + + " L "+this.SVGxy(p,t/2) + + " L "+this.SVGxy(2*p,H+D-t/2) + + " L "+this.SVGxy(W,H+D-t/2), + t,values.mathcolor),0,t); + dx = p; + break; + + case MML.NOTATION.LONGDIV: + svg.Add(BBOX.PPATH(H,D,W, + "M "+this.SVGxy(t/2,t/2) + + " a "+this.SVGxy(p,(H+D)/2-2*t) + " 0 0,1 " + this.SVGxy(t/2,H+D-t) + + " L "+this.SVGxy(W,H+D-t/2), + t,values.mathcolor),0,t/2); + dx = p; + break; + } + } + var sides = [["H",W,0,H-t],["V",H+D,W-t,-D],["H",W,0,-D],["V",H+D,0,-D]]; + for (i = 0; i < 4; i++) { + if (borders[i]) { + var side = sides[i]; + svg.Add(BBOX[side[0]+"LINE"](side[1],t,"solid",values.mathcolor),side[2],side[3]); + } + } + svg.Add(base,dx+p+t,0,false,true); + svg.Clean(); + this.SVGhandleSpace(svg); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + + SVGxy: function (x,y) {return Math.floor(x)+","+Math.floor(y)} + + }); + + MathJax.Hub.Startup.signal.Post("SVG menclose Ready"); + MathJax.Ajax.loadComplete(SVG.autoloadDir+"/menclose.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/autoload/mglyph.js b/modules/MathJax/unpacked/jax/output/SVG/autoload/mglyph.js new file mode 100644 index 0000000..ed30ed4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/autoload/mglyph.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/autoload/mglyph.js + * + * Implements the SVG output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + SVG = MathJax.OutputJax.SVG, + BBOX = SVG.BBOX, + LOCALE = MathJax.Localization; + + var XLINKNS = "http://www.w3.org/1999/xlink"; + + BBOX.MGLYPH = BBOX.Subclass({ + type: "image", removeable: false, + Init: function (img,w,h,align,mu,def) { + if (def == null) {def = {}} + var W = img.width*1000/SVG.em, H = img.height*1000/SVG.em, y = 0; + if (w !== "") {W = SVG.length2em(w,mu,W)} + if (h !== "") {H = SVG.length2em(h,mu,H)} + if (align !== "" && align.match(/\d/)) {y = SVG.length2em(align,mu); def.y = -y} + def.height = Math.floor(H); def.width = Math.floor(W); + def.transform = "translate(0,"+H+") matrix(1 0 0 -1 0 0)"; + def.preserveAspectRatio = "none"; + this.SUPER(arguments).Init.call(this,def); + this.element.setAttributeNS(XLINKNS,"href",img.src); + this.w = this.r = W; this.h = this.H = H + y; + this.d = this.D = -y; this.l = 0; + } + }); + + MML.mglyph.Augment({ + toSVG: function (variant,scale) { + this.SVGgetStyles(); var svg = this.SVG(), img, err; + this.SVGhandleSpace(svg); + var values = this.getValues("src","width","height","valign","alt"); + if (values.src === "") { + values = this.getValues("index","fontfamily"); + if (values.index) { + if (!scale) {scale = this.SVGgetScale()} + var def = {}; if (values.fontfamily) {def["font-family"] = values.fontfamily} + svg.Add(BBOX.TEXT(scale,String.fromCharCode(values.index),def)); + } + } else { + if (!this.img) {this.img = MML.mglyph.GLYPH[values.src]} + if (!this.img) { + this.img = MML.mglyph.GLYPH[values.src] = {img: new Image(), status: "pending"}; + img = this.img.img; + img.onload = MathJax.Callback(["SVGimgLoaded",this]); + img.onerror = MathJax.Callback(["SVGimgError",this]); + img.src = values.src; + MathJax.Hub.RestartAfter(img.onload); + } + if (this.img.status !== "OK") { + err = MML.Error( + LOCALE._(["MathML","BadMglyph"],"Bad mglyph: %1",values.src), + {mathsize:"75%"}); + this.Append(err); svg = err.toSVG(); this.data.pop(); + } else { + var mu = this.SVGgetMu(svg); + svg.Add(BBOX.MGLYPH(this.img.img,values.width,values.height,values.valign,mu, + {src:values.src, alt:values.alt, title:values.alt})); + } + } + svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + SVGimgLoaded: function (event,status) { + if (typeof(event) === "string") {status = event} + this.img.status = (status || "OK") + }, + SVGimgError: function () {this.img.img.onload("error")} + },{ + GLYPH: {} // global list of all loaded glyphs + }); + + MathJax.Hub.Startup.signal.Post("SVG mglyph Ready"); + MathJax.Ajax.loadComplete(SVG.autoloadDir+"/mglyph.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/autoload/mmultiscripts.js b/modules/MathJax/unpacked/jax/output/SVG/autoload/mmultiscripts.js new file mode 100644 index 0000000..f7914ff --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/autoload/mmultiscripts.js @@ -0,0 +1,124 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/autoload/mmultiscripts.js + * + * Implements the SVG output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + SVG = MathJax.OutputJax.SVG; + + MML.mmultiscripts.Augment({ + toSVG: function (HW,D) { + this.SVGgetStyles(); + var svg = this.SVG(); this.SVGhandleSpace(svg); + var scale = this.SVGgetScale(); + var base = (this.data[this.base] ? this.SVGdataStretched(this.base,HW,D) : SVG.BBOX.G().Clean()); + var x_height = SVG.TeX.x_height * scale, + s = SVG.TeX.scriptspace * scale * .75; // FIXME: .75 can be removed when IC is right? + + var BOX = this.SVGgetScripts(s); + var sub = BOX[0], sup = BOX[1], presub = BOX[2], presup = BOX[3]; + + var sscale = (this.data[1]||this).SVGgetScale(); + var q = SVG.TeX.sup_drop * sscale, r = SVG.TeX.sub_drop * sscale; + var u = base.h - q, v = base.d + r, delta = 0, p; + if (base.ic) {delta = base.ic} + if (this.data[this.base] && + (this.data[this.base].type === "mi" || this.data[this.base].type === "mo")) { + if (this.data[this.base].data.join("").length === 1 && base.scale === 1 && + !base.stretched && !this.data[this.base].Get("largeop")) {u = v = 0} + } + var min = this.getValues("subscriptshift","superscriptshift"), mu = this.SVGgetMu(svg); + min.subscriptshift = (min.subscriptshift === "" ? 0 : SVG.length2em(min.subscriptshift,mu)); + min.superscriptshift = (min.superscriptshift === "" ? 0 : SVG.length2em(min.superscriptshift,mu)); + + var dx = 0; + if (presub) {dx = presub.w+delta} else if (presup) {dx = presup.w-delta} + svg.Add(base,Math.max(0,dx),0); + + if (!sup && !presup) { + v = Math.max(v,SVG.TeX.sub1*scale,min.subscriptshift); + if (sub) {v = Math.max(v,sub.h-(4/5)*x_height)} + if (presub) {v = Math.max(v,presub.h-(4/5)*x_height)} + if (sub) {svg.Add(sub,dx+base.w+s-delta,-v)} + if (presub) {svg.Add(presub,0,-v)} + } else { + if (!sub && !presub) { + var values = this.getValues("displaystyle","texprimestyle"); + p = SVG.TeX[(values.displaystyle ? "sup1" : (values.texprimestyle ? "sup3" : "sup2"))]; + u = Math.max(u,p*scale,min.superscriptshift); + if (sup) {u = Math.max(u,sup.d+(1/4)*x_height)} + if (presup) {u = Math.max(u,presup.d+(1/4)*x_height)} + if (sup) {svg.Add(sup,dx+base.w+s,u)} + if (presup) {svg.Add(presup,0,u)} + } else { + v = Math.max(v,SVG.TeX.sub2*scale); + var t = SVG.TeX.rule_thickness * scale; + var h = (sub||presub).h, d = (sup||presup).d; + if (presub) {h = Math.max(h,presub.h)} + if (presup) {d = Math.max(d,presup.d)} + if ((u - d) - (h - v) < 3*t) { + v = 3*t - u + d + h; q = (4/5)*x_height - (u - d); + if (q > 0) {u += q; v -= q} + } + u = Math.max(u,min.superscriptshift); v = Math.max(v,min.subscriptshift); + if (sup) {svg.Add(sup,dx+base.w+s,u)} + if (presup) {svg.Add(presup,dx+delta-presup.w,u)} + if (sub) {svg.Add(sub,dx+base.w+s-delta,-v)} + if (presub) {svg.Add(presub,dx-presub.w,-v)} + } + } + svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + SVGgetScripts: function (s) { + var sup, sub, BOX = []; + var i = 1, m = this.data.length, W = 0; + for (var k = 0; k < 4; k += 2) { + while (i < m && this.data[i].type !== "mprescripts") { + for (var j = k; j < k+2; j++) { + if (this.data[i] && this.data[i].type !== "none") { + if (!BOX[j]) {BOX[j] = SVG.BBOX.G()} + BOX[j].Add(this.data[i].toSVG().With({x:W})); + } + i++; + } + sub = BOX[k]||{w:0}; sup = BOX[k+1]||{w:0}; + sub.w = sup.w = W = Math.max(sub.w,sup.w); + } + i++; W = 0; + } + for (j = 0; j < 4; j++) {if (BOX[j]) {BOX[j].w += s; BOX[j].Clean()}} + return BOX; + } + }); + + MathJax.Hub.Startup.signal.Post("SVG mmultiscripts Ready"); + MathJax.Ajax.loadComplete(SVG.autoloadDir+"/mmultiscripts.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/autoload/ms.js b/modules/MathJax/unpacked/jax/output/SVG/autoload/ms.js new file mode 100644 index 0000000..1e47ca7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/autoload/ms.js @@ -0,0 +1,59 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/autoload/ms.js + * + * Implements the SVG output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + SVG = MathJax.OutputJax.SVG; + + MML.ms.Augment({ + toSVG: function () { + this.SVGgetStyles(); + var svg = this.SVG(); this.SVGhandleSpace(svg); + var values = this.getValues("lquote","rquote"); + var variant = this.SVGgetVariant(), scale = this.SVGgetScale(); + var text = this.data.join(""); // FIXME: handle mglyph? + var pattern = []; + if (values.lquote.length === 1) {pattern.push(this.SVGquoteRegExp(values.lquote))} + if (values.rquote.length === 1) {pattern.push(this.SVGquoteRegExp(values.rquote))} + if (pattern.length) {text = text.replace(RegExp("("+pattern.join("|")+")","g"),"\\$1")} + svg.Add(this.SVGhandleVariant(variant,scale,values.lquote+text+values.rquote)); + svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + SVGquoteRegExp: function (string) { + return string.replace(/([.*+?|{}()\[\]\\])/g,"\\$1"); + } + }); + MML.ms.prototype.defaults.mathvariant = 'monospace'; + + MathJax.Hub.Startup.signal.Post("SVG ms Ready"); + MathJax.Ajax.loadComplete(SVG.autoloadDir+"/ms.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/autoload/mtable.js b/modules/MathJax/unpacked/jax/output/SVG/autoload/mtable.js new file mode 100644 index 0000000..4f4662c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/autoload/mtable.js @@ -0,0 +1,374 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/autoload/mtable.js + * + * Implements the SVG output for elements. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + SVG = MathJax.OutputJax.SVG, + BBOX = SVG.BBOX; + + MML.mtable.Augment({ + toSVG: function (span) { + this.SVGgetStyles(); + var svg = this.SVG(); + if (this.data.length === 0) {this.SVGsaveData(svg);return svg} + var values = this.getValues("columnalign","rowalign","columnspacing","rowspacing", + "columnwidth","equalcolumns","equalrows", + "columnlines","rowlines","frame","framespacing", + "align","useHeight","width","side","minlabelspacing"); + // Handle relative width as fixed width in relation to container + if (values.width.match(/%$/)) + {svg.width = values.width = Math.floor(SVG.cwidth*parseFloat(values.width)/100)+"px"} + var scale = this.SVGgetScale(), mu = this.SVGgetMu(svg); + var LABEL = -1; + + var H = [], D = [], W = [], A = [], C = [], i, j, J = -1, m, M, s, row, cell, mo; + var LHD = SVG.FONTDATA.baselineskip * scale * values.useHeight, HD, + LH = SVG.FONTDATA.lineH * scale, LD = SVG.FONTDATA.lineD * scale; + + // + // Create cells and measure columns and rows + // + for (i = 0, m = this.data.length; i < m; i++) { + row = this.data[i]; s = (row.type === "mlabeledtr" ? LABEL : 0); + A[i] = []; H[i] = D[i] = 0; + for (j = s, M = row.data.length + s; j < M; j++) { + if (W[j] == null) { + if (j > J) {J = j} + C[j] = BBOX.G(); + W[j] = -SVG.BIGDIMEN; + } + cell = row.data[j-s]; + A[i][j] = cell.toSVG(); +// if (row.data[j-s].isMultiline) {A[i][j].style.width = "100%"} + if (cell.isEmbellished()) { + mo = cell.CoreMO(); + var min = mo.Get("minsize",true); + if (min) { + if (mo.SVGcanStretch("Vertical")) { + HD = mo.SVGdata.h + mo.SVGdata.d; + if (HD) { + min = SVG.length2em(min,mu,HD); + if (min*mo.SVGdata.h/HD > H[j]) {H[j] = min*mo.SVGdata.h/HD} + if (min*mo.SVGdata.d/HD > D[j]) {D[j] = min*mo.SVGdata.d/HD} + } + } else if (mo.SVGcanStretch("Horizontal")) { + min = SVG.length2em(min,mu,mo.SVGdata.w); + if (min > W[j]) {W[j] = min} + } + } + } + if (A[i][j].h > H[i]) {H[i] = A[i][j].h} + if (A[i][j].d > D[i]) {D[i] = A[i][j].d} + if (A[i][j].w > W[j]) {W[j] = A[i][j].w} + } + } + if (H[0]+D[0]) {H[0] = Math.max(H[0],LH)} + if (H[A.length-1]+D[A.length-1]) {D[A.length-1] = Math.max(D[A.length-1],LD)} + + // + // Determine spacing and alignment + // + var SPLIT = MathJax.Hub.SplitList; + var CSPACE = SPLIT(values.columnspacing), + RSPACE = SPLIT(values.rowspacing), + CALIGN = SPLIT(values.columnalign), + RALIGN = SPLIT(values.rowalign), + CLINES = SPLIT(values.columnlines), + RLINES = SPLIT(values.rowlines), + CWIDTH = SPLIT(values.columnwidth), + RCALIGN = []; + for (i = 0, m = CSPACE.length; i < m; i++) {CSPACE[i] = SVG.length2em(CSPACE[i],mu)} + for (i = 0, m = RSPACE.length; i < m; i++) {RSPACE[i] = SVG.length2em(RSPACE[i],mu)} + while (CSPACE.length < J) {CSPACE.push(CSPACE[CSPACE.length-1])} + while (CALIGN.length <= J) {CALIGN.push(CALIGN[CALIGN.length-1])} + while (CLINES.length < J) {CLINES.push(CLINES[CLINES.length-1])} + while (CWIDTH.length <= J) {CWIDTH.push(CWIDTH[CWIDTH.length-1])} + while (RSPACE.length < A.length) {RSPACE.push(RSPACE[RSPACE.length-1])} + while (RALIGN.length <= A.length) {RALIGN.push(RALIGN[RALIGN.length-1])} + while (RLINES.length < A.length) {RLINES.push(RLINES[RLINES.length-1])} + if (C[LABEL]) { + CALIGN[LABEL] = (values.side.substr(0,1) === "l" ? "left" : "right"); + CSPACE[LABEL] = -W[LABEL]; + } + // + // Override row data + // + for (i = 0, m = A.length; i < m; i++) { + row = this.data[i]; RCALIGN[i] = []; + if (row.rowalign) {RALIGN[i] = row.rowalign} + if (row.columnalign) { + RCALIGN[i] = SPLIT(row.columnalign); + while (RCALIGN[i].length <= J) {RCALIGN[i].push(RCALIGN[i][RCALIGN[i].length-1])} + } + } + + // + // Handle equal heights + // + if (values.equalrows) { + // FIXME: should really be based on row align (below is for baseline) + var Hm = Math.max.apply(Math,H), Dm = Math.max.apply(Math,D); + for (i = 0, m = A.length; i < m; i++) + {s = ((Hm + Dm) - (H[i] + D[i])) / 2; H[i] += s; D[i] += s} + } + + // FIXME: do background colors for entire cell (include half the intercolumn space?) + + // + // Determine array total height + // + HD = H[0] + D[A.length-1]; + for (i = 0, m = A.length-1; i < m; i++) + {HD += Math.max((H[i]+D[i] ? LHD : 0),D[i]+H[i+1]+RSPACE[i])} + // + // Determine frame and line sizes + // + var fx = 0, fy = 0, fW, fH = HD; + if (values.frame !== "none" || + (values.columnlines+values.rowlines).match(/solid|dashed/)) { + var frameSpacing = SPLIT(values.framespacing); + if (frameSpacing.length != 2) { + // invalid attribute value: use the default. + frameSpacing = SPLIT(this.defaults.framespacing); + } + fx = SVG.length2em(frameSpacing[0],mu); + fy = SVG.length2em(frameSpacing[1],mu); + fH = HD + 2*fy; // fW waits until svg.w is determined + } + // + // Compute alignment + // + var Y, fY, n = ""; + if (typeof(values.align) !== "string") {values.align = String(values.align)} + if (values.align.match(/(top|bottom|center|baseline|axis)( +(-?\d+))?/)) + {n = RegExp.$3; values.align = RegExp.$1} else {values.align = this.defaults.align} + if (n !== "") { + // + // Find the height of the given row + // + n = parseInt(n); + if (n < 0) {n = A.length + 1 + n} + if (n < 1) {n = 1} else if (n > A.length) {n = A.length} + Y = 0; fY = -(HD + fy) + H[0]; + for (i = 0, m = n-1; i < m; i++) { + // FIXME: Should handle values.align for final row + var dY = Math.max((H[i]+D[i] ? LHD : 0),D[i]+H[i+1]+RSPACE[i]); + Y += dY; fY += dY; + } + } else { + Y = ({ + top: -(H[0] + fy), + bottom: HD + fy - H[0], + center: HD/2 - H[0], + baseline: HD/2 - H[0], + axis: HD/2 + SVG.TeX.axis_height*scale - H[0] + })[values.align]; + fY = ({ + top: -(HD + 2*fy), + bottom: 0, + center: -(HD/2 + fy), + baseline: -(HD/2 + fy), + axis: SVG.TeX.axis_height*scale - HD/2 - fy + })[values.align]; + } + + var WW, WP = 0, Wt = 0, Wp = 0, p = 0, f = 0, P = [], F = [], Wf = 1; + // + if (values.equalcolumns && values.width !== "auto") { + // + // Handle equalcolumns for percent-width and fixed-width tables + // + + // Get total width minus column spacing + WW = SVG.length2em(values.width,mu); + for (i = 0, m = Math.min(J+1,CSPACE.length); i < m; i++) {WW -= CSPACE[i]} + // Determine individual column widths + WW /= J+1; + for (i = 0, m = Math.min(J+1,CWIDTH.length); i < m; i++) {W[i] = WW} + } else { + // + // Get column widths for fit and percentage columns + // + // Calculate the natural widths and percentage widths, + // while keeping track of the fit and percentage columns + for(i = 0, m = Math.min(J+1,CWIDTH.length); i < m; i++) { + if (CWIDTH[i] === "auto") {Wt += W[i]} + else if (CWIDTH[i] === "fit") {F[f] = i; f++; Wt += W[i]} + else if (CWIDTH[i].match(/%$/)) + {P[p] = i; p++; Wp += W[i]; WP += SVG.length2em(CWIDTH[i],mu,1)} + else {W[i] = SVG.length2em(CWIDTH[i],mu); Wt += W[i]} + } + // Get the full width (excluding inter-column spacing) + if (values.width === "auto") { + if (WP > .98) {Wf = Wp/(Wt+Wp); WW = Wt + Wp} else {WW = Wt / (1-WP)} + } else { + WW = SVG.length2em(values.width,mu); + for (i = 0, m = Math.min(J+1,CSPACE.length); i < m; i++) {WW -= CSPACE[i]} + } + // Determine the relative column widths + for (i = 0, m = P.length; i < m; i++) { + W[P[i]] = SVG.length2em(CWIDTH[P[i]],mu,WW*Wf); Wt += W[P[i]]; + } + // Stretch fit columns, if any, otherwise stretch (or shrink) everything + if (Math.abs(WW - Wt) > .01) { + if (f && WW > Wt) { + WW = (WW - Wt) / f; for (i = 0, m = F.length; i < m; i++) {W[F[i]] += WW} + } else {WW = WW/Wt; for (j = 0; j <= J; j++) {W[j] *= WW}} + } + // + // Handle equal columns + // + if (values.equalcolumns) { + var Wm = Math.max.apply(Math,W); + for (j = 0; j <= J; j++) {W[j] = Wm} + } + } + + // + // Lay out array columns + // + var y = Y, dy, align; s = (C[LABEL] ? LABEL : 0); + for (j = s; j <= J; j++) { + C[j].w = W[j]; + for (i = 0, m = A.length; i < m; i++) { + if (A[i][j]) { + s = (this.data[i].type === "mlabeledtr" ? LABEL : 0); + cell = this.data[i].data[j-s]; + if (cell.SVGcanStretch("Horizontal")) { + A[i][j] = cell.SVGstretchH(W[j]); + } else if (cell.SVGcanStretch("Vertical")) { + mo = cell.CoreMO(); + var symmetric = mo.symmetric; mo.symmetric = false; + A[i][j] = cell.SVGstretchV(H[i],D[i]); + mo.symmetric = symmetric; + } + align = cell.rowalign||this.data[i].rowalign||RALIGN[i]; + dy = ({top: H[i] - A[i][j].h, + bottom: A[i][j].d - D[i], + center: ((H[i]-D[i]) - (A[i][j].h-A[i][j].d))/2, + baseline: 0, axis: 0})[align] || 0; // FIXME: handle axis better? + align = (cell.columnalign||RCALIGN[i][j]||CALIGN[j]) + C[j].Align(A[i][j],align,0,y+dy); + } + if (i < A.length-1) {y -= Math.max((H[i]+D[i] ? LHD : 0),D[i]+H[i+1]+RSPACE[i])} + } + y = Y; + } + + // + // Place the columns and add column lines + // + var lw = 1.5*SVG.em; + var x = fx - lw/2; + for (j = 0; j <= J; j++) { + svg.Add(C[j],x,0); x += W[j] + CSPACE[j]; + if (CLINES[j] !== "none" && j < J && j !== LABEL) + {svg.Add(BBOX.VLINE(fH,lw,CLINES[j]),x-CSPACE[j]/2,fY)} + } + svg.w += fx; svg.d = -fY; svg.h = fH+fY; + fW = svg.w; + + // + // Add frame + // + if (values.frame !== "none") { + svg.Add(BBOX.HLINE(fW,lw,values.frame),0,fY+fH-lw); + svg.Add(BBOX.HLINE(fW,lw,values.frame),0,fY); + svg.Add(BBOX.VLINE(fH,lw,values.frame),0,fY); + svg.Add(BBOX.VLINE(fH,lw,values.frame),fW-lw,fY); + } + + // + // Add row lines + // + y = Y - lw/2; + for (i = 0, m = A.length-1; i < m; i++) { + dy = Math.max(LHD,D[i]+H[i+1]+RSPACE[i]); + if (RLINES[i] !== "none") + {svg.Add(BBOX.HLINE(fW,lw,RLINES[i]),0,y-D[i]-(dy-D[i]-H[i+1])/2)} + y -= dy; + } + + // + // Finish the table + // + svg.Clean(); + this.SVGhandleSpace(svg); + this.SVGhandleColor(svg); + + // + // Place the labels, if any + // + if (C[LABEL]) { + var indent = this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift"); + if (indent.indentalignfirst !== MML.INDENTALIGN.INDENTALIGN) {indent.indentalign = indent.indentalignfirst} + if (indent.indentalign === MML.INDENTALIGN.AUTO) {indent.indentalign = this.displayAlign} + if (indent.indentshiftfirst !== MML.INDENTSHIFT.INDENTSHIFT) {indent.indentshift = indent.indentshiftfirst} + if (indent.indentshift === "auto") {indent.indentshift = this.displayIndent} + var shift = (indent.indentshift ? SVG.length2em(indent.indentshift,mu) : 0); + var labelshift = SVG.length2em(values.minlabelspacing,mu); + var eqn = svg; svg = this.SVG(); + if (indent.indentalign === MML.INDENTALIGN.CENTER) { + svg.w = svg.r = SVG.length2em(SVG.cwidth+"px"); shift = 0; svg.hasIndent = true; + } else if (CALIGN[LABEL] !== indent.indentalign) { + svg.w = svg.r = SVG.length2em(SVG.cwidth+"px") - shift - labelshift; + shift = labelshift = 0; + } else { + svg.w = svg.r = eqn.w + shift; + svg.hasIndent = true; + } + svg.Align(eqn,indent.indentalign,shift,0); + svg.Align(C[LABEL],CALIGN[LABEL],labelshift,0); + } + + this.SVGsaveData(svg); + return svg; + }, + SVGhandleSpace: function (svg) { + if (!this.hasFrame && !svg.width) {svg.x = svg.X = 167} + this.SUPER(arguments).SVGhandleSpace.call(this,svg); + } + }); + + MML.mtd.Augment({ + toSVG: function (HW,D) { + var svg = this.svg = this.SVG(); + if (this.data[0]) { + svg.Add(this.SVGdataStretched(0,HW,D)); + svg.Clean(); + } + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + } + }); + + MathJax.Hub.Startup.signal.Post("SVG mtable Ready"); + MathJax.Ajax.loadComplete(SVG.autoloadDir+"/mtable.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/autoload/multiline.js b/modules/MathJax/unpacked/jax/output/SVG/autoload/multiline.js new file mode 100644 index 0000000..55a2449 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/autoload/multiline.js @@ -0,0 +1,641 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/autoload/multiline.js + * + * Implements the SVG output for 's that contain line breaks. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () { + var VERSION = "2.3"; + var MML = MathJax.ElementJax.mml, + SVG = MathJax.OutputJax.SVG, + BBOX = SVG.BBOX; + + // + // Penalties for the various line breaks + // + var PENALTY = { + newline: 0, + nobreak: 1000000, + goodbreak: [-200], + badbreak: [+200], + auto: [0], + + toobig: 800, + nestfactor: 400, + spacefactor: -100, + spaceoffset: 2, + spacelimit: 1, // spaces larger than this get a penalty boost + fence: 500, + close: 500 + }; + + var ENDVALUES = {linebreakstyle: "after"}; + + + /**************************************************************************/ + + MML.mrow.Augment({ + // + // Handle breaking an mrow into separate lines + // + SVGmultiline: function (svg) { + + // + // Find the parent element and mark it as multiline + // + var parent = this; + while (parent.inferred || (parent.parent && parent.parent.type === "mrow" && + parent.parent.data.length === 1)) {parent = parent.parent} + var isTop = ((parent.type === "math" && parent.Get("display") === "block") || + parent.type === "mtd"); + parent.isMultiline = true; + + // + // Default values for the line-breaking parameters + // + var VALUES = this.getValues( + "linebreak","linebreakstyle","lineleading","linebreakmultchar", + "indentalign","indentshift", + "indentalignfirst","indentshiftfirst", + "indentalignlast","indentshiftlast" + ); + if (VALUES.linebreakstyle === MML.LINEBREAKSTYLE.INFIXLINEBREAKSTYLE) + {VALUES.linebreakstyle = this.Get("infixlinebreakstyle")} + VALUES.lineleading = SVG.length2em(VALUES.lineleading,1,0.5); + + // + // Start with a fresh SVG element + // and make it full width if we are breaking to a specific width + // + svg = this.SVG(); + if (SVG.linebreakWidth < SVG.BIGDIMEN) {svg.w = SVG.linebreakWidth} + else {svg.w = SVG.cwidth/SVG.em * 1000} + + var state = { + n: 0, Y: 0, + scale: this.SVGgetScale(), + isTop: isTop, + values: {}, + VALUES: VALUES + }, + align = this.SVGgetAlign(state,{}), + shift = this.SVGgetShift(state,{},align), + start = [], + end = { + index:[], penalty:PENALTY.nobreak, + w:0, W:shift, shift:shift, scanW:shift, + nest: 0 + }, + broken = false; + + // + // Break the expression at its best line breaks + // + while (this.SVGbetterBreak(end,state) && + (end.scanW >= SVG.linebreakWidth || end.penalty == PENALTY.newline)) { + this.SVGaddLine(svg,start,end.index,state,end.values,broken); + start = end.index.slice(0); broken = true; + align = this.SVGgetAlign(state,end.values); + shift = this.SVGgetShift(state,end.values,align); + if (align === MML.INDENTALIGN.CENTER) {shift = 0} + end.W = end.shift = end.scanW = shift; end.penalty = PENALTY.nobreak; + } + state.isLast = true; + this.SVGaddLine(svg,start,[],state,ENDVALUES,broken); + + this.SVGhandleSpace(svg); + this.SVGhandleColor(svg); + svg.isMultiline = true; + + this.SVGsaveData(svg); + return svg; + } + }); + + /**************************************************************************/ + + MML.mbase.Augment({ + SVGlinebreakPenalty: PENALTY, + + /****************************************************************/ + // + // Locate the next linebreak that is better than the current one + // + SVGbetterBreak: function (info,state) { + if (this.isToken) {return false} // FIXME: handle breaking of token elements + if (this.isEmbellished()) { + info.embellished = this; + return this.CoreMO().SVGbetterBreak(info,state); + } + if (this.linebreakContainer) {return false} + // + // Get the current breakpoint position and other data + // + var index = info.index.slice(0), i = info.index.shift(), + m = this.data.length, W, w, scanW, broken = (info.index.length > 0), better = false; + if (i == null) {i = -1}; if (!broken) {i++; info.W += info.w; info.w = 0} + scanW = info.scanW = info.W; info.nest++; + // + // Look through the line for breakpoints, + // (as long as we are not too far past the breaking width) + // + while (i < m && info.scanW < 1.33*SVG.linebreakWidth) { + if (this.data[i]) { + if (this.data[i].SVGbetterBreak(info,state)) { + better = true; index = [i].concat(info.index); W = info.W; w = info.w; + if (info.penalty === PENALTY.newline) { + info.index = index; + if (info.nest) {info.nest--} + return true; + } + } + scanW = (broken ? info.scanW : this.SVGaddWidth(i,info,scanW)); + } + info.index = []; i++; broken = false; + } + if (info.nest) {info.nest--} + info.index = index; + if (better) {info.W = W} + return better; + }, + SVGaddWidth: function (i,info,scanW) { + if (this.data[i]) { + var svg = this.data[i].SVGdata; + scanW += svg.w + svg.x; if (svg.X) {scanW += svg.X} + info.W = info.scanW = scanW; info.w = 0; + } + return scanW; + }, + + /****************************************************************/ + // + // Create a new line and move the required elements into it + // Position it using proper alignment and indenting + // + SVGaddLine: function (svg,start,end,state,values,broken) { + // + // Create a box for the line, with empty BBox + // fill it with the proper elements, + // and clean up the bbox + // + var line = BBOX(); + state.first = broken; state.last = true; + this.SVGmoveLine(start,end,line,state,values); + line.Clean(); + // + // Get the alignment and shift values + // + var align = this.SVGgetAlign(state,values), + shift = this.SVGgetShift(state,values,align); + // + // Add in space for the shift + // + if (shift) { + if (align === MML.INDENTALIGN.LEFT) {line.x = shift} else + if (align === MML.INDENTALIGN.RIGHT) {line.w += shift; line.r = line.w} + } + // + // Set the Y offset based on previous depth, leading, and current height + // + if (state.n > 0) { + var LHD = SVG.FONTDATA.baselineskip * state.scale; + var leading = (state.values.lineleading == null ? state.VALUES : state.values).lineleading; + state.Y -= Math.max(LHD,state.d + line.h + leading); + } + // + // Place the new line + // + svg.Align(line,align,0,state.Y); + // + // Save the values needed for the future + // + state.d = line.d; state.values = values; state.n++; + }, + + /****************************************************************/ + // + // Get alignment and shift values from the given data + // + SVGgetAlign: function (state,values) { + var cur = values, prev = state.values, def = state.VALUES, align; + if (state.n === 0) {align = cur.indentalignfirst || prev.indentalignfirst || def.indentalignfirst} + else if (state.isLast) {align = prev.indentalignlast || def.indentalignlast} + else {align = prev.indentalign || def.indentalign} + if (align === MML.INDENTALIGN.INDENTALIGN) {align = prev.indentalign || def.indentalign} + if (align === MML.INDENTALIGN.AUTO) {align = (state.isTop ? this.displayAlign : MML.INDENTALIGN.LEFT)} + return align; + }, + SVGgetShift: function (state,values,align) { + if (align === MML.INDENTALIGN.CENTER) {return 0} + var cur = values, prev = state.values, def = state.VALUES, shift; + if (state.n === 0) {shift = cur.indentshiftfirst || prev.indentshiftfirst || def.indentshiftfirst} + else if (state.isLast) {shift = prev.indentshiftlast || def.indentshiftlast} + else {shift = prev.indentshift || def.indentshift} + if (shift === MML.INDENTSHIFT.INDENTSHIFT) {shift = prev.indentshift || def.indentshift} + if (shift === "auto" || shift === "") {shift = (state.isTSop ? this.displayIndent : "0")} + return SVG.length2em(shift,0); + }, + + /****************************************************************/ + // + // Move the selected elements into the new line, + // moving whole items when possible, and parts of ones + // that are split by a line break. + // + SVGmoveLine: function (start,end,svg,state,values) { + var i = start[0], j = end[0]; + if (i == null) {i = -1}; if (j == null) {j = this.data.length-1} + if (i === j && start.length > 1) { + // + // If starting and ending in the same element move the subpiece to the new line + // + this.data[i].SVGmoveSlice(start.slice(1),end.slice(1),svg,state,values,"paddingLeft"); + } else { + // + // Otherwise, move the remainder of the initial item + // and any others up to the last one + // + var last = state.last; state.last = false; + while (i < j) { + if (this.data[i]) { + if (start.length <= 1) {this.data[i].SVGmove(svg,state,values)} + else {this.data[i].SVGmoveSlice(start.slice(1),[],svg,state,values,"paddingLeft")} + } + i++; state.first = false; start = []; + } + // + // If the last item is complete, move it, + // otherwise move the first part of it up to the split + // + state.last = last; + if (this.data[i]) { + if (end.length <= 1) {this.data[i].SVGmove(svg,state,values)} + else {this.data[i].SVGmoveSlice([],end.slice(1),svg,state,values,"paddingRight")} + } + } + }, + + /****************************************************************/ + // + // Split an element and copy the selected items into the new part + // + SVGmoveSlice: function (start,end,svg,state,values,padding) { + // + // Create a new container for the slice of the element + // Move the selected portion into the slice + // + var slice = BBOX(); + this.SVGmoveLine(start,end,slice,state,values); + slice.Clean(); + this.SVGhandleColor(slice); + svg.Add(slice,svg.w,0,true); + return slice; + }, + + /****************************************************************/ + // + // Move an element from its original position to its new location in + // a split element or the new line's position + // + SVGmove: function (line,state,values) { + // FIXME: handle linebreakstyle === "duplicate" + // FIXME: handle linebreakmultchar + if (!(state.first || state.last) || + (state.first && state.values.linebreakstyle === MML.LINEBREAKSTYLE.BEFORE) || + (state.last && values.linebreakstyle === MML.LINEBREAKSTYLE.AFTER)) { + // + // Recreate output + // Remove padding (if first, remove at right, if last remove at left) + // Add to line + // + var svg = this.toSVG(this.SVGdata.HW,this.SVGdata.D); + if (state.last) {svg.x = 0} + if (state.first || state.nextIsFirst) {delete state.nextIsFirst; if (svg.X) {svg.X = 0}} + line.Add(svg,line.w,0,true); + } else if (state.first) {state.nextIsFirst = true} else {delete state.nextIsFirst} + } + }); + + /**************************************************************************/ + + MML.mfenced.Augment({ + SVGbetterBreak: function (info,state) { + // + // Get the current breakpoint position and other data + // + var index = info.index.slice(0), i = info.index.shift(), + m = this.data.length, W, w, scanW, broken = (info.index.length > 0), better = false; + if (i == null) {i = -1}; if (!broken) {i++; info.W += info.w; info.w = 0} + scanW = info.scanW = info.W; info.nest++; + // + // Create indices that include the delimiters and separators + // + if (!this.dataI) { + this.dataI = []; + if (this.data.open) {this.dataI.push("open")} + if (m) {this.dataI.push(0)} + for (var j = 1; j < m; j++) { + if (this.data["sep"+j]) {this.dataI.push("sep"+j)} + this.dataI.push(j); + } + if (this.data.close) {this.dataI.push("close")} + } + m = this.dataI.length; + // + // Look through the line for breakpoints, including the open, close, and separators + // (as long as we are not too far past the breaking width) + // + while (i < m && info.scanW < 1.33*SVG.linebreakWidth) { + var k = this.dataI[i]; + if (this.data[k]) { + if (this.data[k].SVGbetterBreak(info,state)) { + better = true; index = [i].concat(info.index); W = info.W; w = info.w; + if (info.penalty === PENALTY.newline) { + info.index = index; + if (info.nest) {info.nest--} + return true; + } + } + scanW = (broken ? info.scanW : this.SVGaddWidth(i,info,scanW)); + } + info.index = []; i++; broken = false; + } + if (info.nest) {info.nest--} + info.index = index; + if (better) {info.W = W; info.w = w} + return better; + }, + + SVGmoveLine: function (start,end,svg,state,values) { + var i = start[0], j = end[0]; + if (i == null) {i = -1}; if (j == null) {j = this.dataI.length-1} + if (i === j && start.length > 1) { + // + // If starting and ending in the same element move the subpiece to the new line + // + this.data[this.dataI[i]].SVGmoveSlice(start.slice(1),end.slice(1),svg,state,values,"paddingLeft"); + } else { + // + // Otherwise, move the remainder of the initial item + // and any others (including open and separators) up to the last one + // + var last = state.last; state.last = false; var k = this.dataI[i]; + while (i < j) { + if (this.data[k]) { + if (start.length <= 1) {this.data[k].SVGmove(svg,state,values)} + else {this.data[k].SVGmoveSlice(start.slice(1),[],svg,state,values,"paddingLeft")} + } + i++; k = this.dataI[i]; state.first = false; start = []; + } + // + // If the last item is complete, move it + // + state.last = last; + if (this.data[k]) { + if (end.length <= 1) {this.data[k].SVGmove(svg,state,values)} + else {this.data[k].SVGmoveSlice([],end.slice(1),svg,state,values,"paddingRight")} + } + } + } + + }); + + /**************************************************************************/ + + MML.msubsup.Augment({ + SVGbetterBreak: function (info,state) { + if (!this.data[this.base]) {return false} + // + // Get the current breakpoint position and other data + // + var index = info.index.slice(0), i = info.index.shift(), + W, w, scanW, broken = (info.index.length > 0), better = false; + if (!broken) {info.W += info.w; info.w = 0} + scanW = info.scanW = info.W; + // + // Record the width of the base and the super- and subscripts + // + if (i == null) {this.SVGdata.dw = this.SVGdata.w - this.data[this.base].SVGdata.w} + // + // Check if the base can be broken + // + if (this.data[this.base].SVGbetterBreak(info,state)) { + better = true; index = [this.base].concat(info.index); W = info.W; w = info.w; + if (info.penalty === PENALTY.newline) {better = broken = true} + } + // + // Add in the base if it is unbroken, and add the scripts + // + if (!broken) {this.SVGaddWidth(this.base,info,scanW)} + info.scanW += this.SVGdata.dw; info.W = info.scanW; + info.index = []; if (better) {info.W = W; info.w = w; info.index = index} + return better; + }, + + SVGmoveLine: function (start,end,svg,state,values) { + // + // Move the proper part of the base + // + if (this.data[this.base]) { + if (start.length > 1) { + this.data[this.base].SVGmoveSlice(start.slice(1),end.slice(1),svg,state,values,"paddingLeft"); + } else { + if (end.length <= 1) {this.data[this.base].SVGmove(svg,state,values)} + else {this.data[this.base].SVGmoveSlice([],end.slice(1),svg,state,values,"paddingRight")} + } + } + // + // If this is the end, check for super and subscripts, and move those + // by moving the stack tht contains them, and shifting by the amount of the + // base that has been removed. Remove the empty base box from the stack. + // + if (end.length === 0) { + var sup = this.data[this.sup], sub = this.data[this.sub], w = svg.w, data; + if (sup) {data = sup.SVGdata; svg.Add(sup.toSVG(),w+(data.dx||0),data.dy)} + if (sub) {data = sub.SVGdata; svg.Add(sub.toSVG(),w+(data.dx||0),data.dy)} + } + } + + }); + + /**************************************************************************/ + + MML.mo.Augment({ + // + // Override the method for checking line breaks to properly handle + // + SVGbetterBreak: function (info,state) { + if (info.values && info.values.last === this) {return false} + var values = this.getValues( + "linebreak","linebreakstyle","lineleading","linebreakmultchar", + "indentalign","indentshift", + "indentalignfirst","indentshiftfirst", + "indentalignlast","indentshiftlast", + "texClass", "fence" + ); + if (values.linebreakstyle === MML.LINEBREAKSTYLE.INFIXLINEBREAKSTYLE) + {values.linebreakstyle = this.Get("infixlinebreakstyle")} + // + // Adjust nesting by TeX class (helps output that does not include + // mrows for nesting, but can leave these unbalanced. + // + if (values.texClass === MML.TEXCLASS.OPEN) {info.nest++} + if (values.texClass === MML.TEXCLASS.CLOSE && info.nest) {info.nest--} + // + // Get the default penalty for this location + // + var W = info.scanW, mo = (info.embellished||this); delete info.embellished; + var svg = mo.SVGdata, w = svg.w + svg.x; + if (values.linebreakstyle === MML.LINEBREAKSTYLE.AFTER) {W += w; w = 0} + if (W - info.shift === 0) {return false} // don't break at zero width (FIXME?) + var offset = SVG.linebreakWidth - W; + // adjust offest for explicit first-line indent and align + if (state.n === 0 && (values.indentshiftfirst !== state.VALUES.indentshiftfirst || + values.indentalignfirst !== state.VALUES.indentalignfirst)) { + var align = this.SVGgetAlign(state,values), + shift = this.SVGgetShift(state,values,align); + offset += (info.shift - shift); + } + // + var penalty = Math.floor(offset / SVG.linebreakWidth * 1000); + if (penalty < 0) {penalty = PENALTY.toobig - 3*penalty} + if (values.fence) {penalty += PENALTY.fence} + if ((values.linebreakstyle === MML.LINEBREAKSTYLE.AFTER && + values.texClass === MML.TEXCLASS.OPEN) || + values.texClass === MML.TEXCLASS.CLOSE) {penalty += PENALTY.close} + penalty += info.nest * PENALTY.nestfactor; + // + // Get the penalty for this type of break and + // use it to modify the default penalty + // + var linebreak = PENALTY[values.linebreak||MML.LINEBREAK.AUTO]; + if (!(linebreak instanceof Array)) { + // for breaks past the width, don't modify penalty + if (offset >= 0) {penalty = linebreak * info.nest} + } else {penalty = Math.max(1,penalty + linebreak[0] * info.nest)} + // + // If the penalty is no better than the current one, return false + // Otherwise save the data for this breakpoint and return true + // + if (penalty >= info.penalty) {return false} + info.penalty = penalty; info.values = values; info.W = W; info.w = w; + values.lineleading = SVG.length2em(values.lineleading,state.VALUES.lineleading); + values.last = this; + return true; + } + }); + + /**************************************************************************/ + + MML.mspace.Augment({ + // + // Override the method for checking line breaks to properly handle + // + SVGbetterBreak: function (info,state) { + if (info.values && info.values.last === this) {return false} + var values = this.getValues("linebreak"); + var linebreakValue = values.linebreak; + if (!linebreakValue || this.hasDimAttr()) { + // The MathML spec says that the linebreak attribute should be ignored + // if any dimensional attribute is set. + linebreakValue = MML.LINEBREAK.AUTO; + } + // + // Get the default penalty for this location + // + var W = info.scanW, svg = this.SVGdata, w = svg.w + svg.x; + if (W - info.shift === 0) {return false} // don't break at zero width (FIXME?) + var offset = SVG.linebreakWidth - W; + // + var penalty = Math.floor(offset / SVG.linebreakWidth * 1000); + if (penalty < 0) {penalty = PENALTY.toobig - 3*penalty} + penalty += info.nest * PENALTY.nestfactor; + // + // Get the penalty for this type of break and + // use it to modify the default penalty + // + var linebreak = PENALTY[linebreakValue]; + if (linebreakValue === MML.LINEBREAK.AUTO && w >= PENALTY.spacelimit*1000) + {linebreak = [(w+PENALTY.spaceoffset)*PENALTY.spacefactor]} + if (!(linebreak instanceof Array)) { + // for breaks past the width, don't modify penalty + if (offset >= 0) {penalty = linebreak * info.nest} + } else {penalty = Math.max(1,penalty + linebreak[0] * info.nest)} + // + // If the penalty is no better than the current one, return false + // Otherwise save the data for this breakpoint and return true + // + if (penalty >= info.penalty) {return false} + info.penalty = penalty; info.values = values; info.W = W; info.w = w; + values.lineleading = state.VALUES.lineleading; + values.linebreakstyle = "before"; values.last = this; + return true; + } + }); + + // + // Hook into the mathchoice extension + // + MathJax.Hub.Register.StartupHook("TeX mathchoice Ready",function () { + MML.TeXmathchoice.Augment({ + SVGbetterBreak: function (info,state) { + return this.Core().SVGbetterBreak(info,state); + }, + SVGmoveLine: function (start,end,svg,state,values) { + return this.Core().SVGmoveSlice(start,end,svg,state,values); + } + }); + }); + + // + // Have maction process only the selected item + // + MML.maction.Augment({ + SVGbetterBreak: function (info,state) { + return this.Core().SVGbetterBreak(info,state); + }, + SVGmoveLine: function (start,end,svg,state,values) { + return this.Core().SVGmoveSlice(start,end,svg,state,values); + }, + }); + + // + // Have semantics only do the first element + // (FIXME: do we need to do anything special about annotation-xml?) + // + MML.semantics.Augment({ + SVGbetterBreak: function (info,state) { + return (this.data[0] ? this.data[0].SVGbetterBreak(info,state) : false); + }, + SVGmoveLine: function (start,end,svg,state,values) { + return (this.data[0] ? this.data[0].SVGmoveSlice(start,end,svg,state,values) : null); + } + }); + + /**************************************************************************/ + + MathJax.Hub.Startup.signal.Post("SVG multiline Ready"); + MathJax.Ajax.loadComplete(SVG.autoloadDir+"/multiline.js"); + +}); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/config.js b/modules/MathJax/unpacked/jax/output/SVG/config.js new file mode 100644 index 0000000..7e975fe --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/config.js @@ -0,0 +1,83 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/config.js + * + * Initializes the SVG OutputJax (the main definition is in + * MathJax/jax/input/SVG/jax.js, which is loaded when needed). + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax.SVG = MathJax.OutputJax({ + id: "SVG", + version: "2.3", + directory: MathJax.OutputJax.directory + "/SVG", + extensionDir: MathJax.OutputJax.extensionDir + "/SVG", + autoloadDir: MathJax.OutputJax.directory + "/SVG/autoload", + fontDir: MathJax.OutputJax.directory + "/SVG/fonts", // font name added later + + config: { + scale: 100, minScaleAdjust: 50, // global math scaling factor, and minimum adjusted scale factor + font: "TeX", // currently the only font available + blacker: 10, // stroke-width to make fonts blacker + mtextFontInherit: false, // to make be in page font rather than MathJax font + undefinedFamily: "STIXGeneral,'Arial Unicode MS',serif", // fonts to use for missing characters + + addMMLclasses: false, // keep MathML structure and use CSS classes to mark elements + + EqnChunk: (MathJax.Hub.Browser.isMobile ? 10: 50), + // number of equations to process before showing them + EqnChunkFactor: 1.5, // chunk size is multiplied by this after each chunk + EqnChunkDelay: 100, // milliseconds to delay between chunks (to let browser + // respond to other events) + + linebreaks: { + automatic: false, // when false, only process linebreak="newline", + // when true, insert line breaks automatically in long expressions. + + width: "container" // maximum width of a line for automatic line breaks (e.g. "30em"). + // use "container" to compute size from containing element, + // use "nn% container" for a portion of the container, + // use "nn%" for a portion of the window size + }, + + styles: { + ".MathJax_SVG_Display": { + "text-align": "center", + margin: "1em 0em" + }, + + "#MathJax_SVG_Tooltip": { + "background-color": "InfoBackground", color: "InfoText", + border: "1px solid black", + "box-shadow": "2px 2px 5px #AAAAAA", // Opera 10.5 + "-webkit-box-shadow": "2px 2px 5px #AAAAAA", // Safari 3 and Chrome + "-moz-box-shadow": "2px 2px 5px #AAAAAA", // Forefox 3.5 + "-khtml-box-shadow": "2px 2px 5px #AAAAAA", // Konqueror + padding: "3px 4px", + "z-index": 401 + } + } + } +}); + +if (!MathJax.Hub.config.delayJaxRegistration) {MathJax.OutputJax.SVG.Register("jax/mml")} + +MathJax.OutputJax.SVG.loadComplete("config.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Alphabets/Regular/Main.js new file mode 100644 index 0000000..7673133 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Alphabets/Regular/Main.js @@ -0,0 +1,167 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'AsanaMathJax_Alphabets', + id: 'ASANAMATHALPHABETS', + 0x20: [0,0,249,0,0,''], + 0x384: [685,-476,374,134,241,'134 482l46 196l12 7l43 -16l6 -13l-91 -180'], + 0x385: [685,-476,332,-6,339,'106 482l46 196l12 7l43 -16l6 -13l-91 -180zM-6 635c0 23 18 45 46 45c21 0 44 -17 44 -45s-22 -46 -44 -46c-25 0 -46 20 -46 46zM249 635c0 26 20 45 45 45c24 0 45 -19 45 -45c0 -25 -21 -46 -45 -46c-22 0 -45 17 -45 46'], + 0x386: [700,3,777,15,756,'135 497l45 196l12 7l44 -16l6 -13l-91 -180zM408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30 c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30l37 3c22 2 42 20 54 49l231 526l39 95h32zM240 269h253l-126 298'], + 0x387: [453,-327,216,45,172,'45 390c0 31 25 63 64 63c38 0 63 -30 63 -63c0 -36 -29 -63 -63 -63c-39 0 -64 31 -64 63'], + 0x388: [692,3,755,22,717,'22 489l46 196l12 7l43 -16l6 -13l-91 -180zM701 0c-136 -3 -136 -3 -167 -3c-69 0 -185 3 -232 3c-28 0 -57 -1 -123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c99 -2 144 -3 178 -3c47 0 139 3 232 3c44 0 75 -1 124 -3c-11 -44 -16 -92 -16 -152 h-35v65c0 23 -3 28 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c34 -2 68 -3 110 -3c66 0 94 3 112 11c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3v-280c29 -6 47 -8 99 -8 c90 0 163 5 184 12c28 10 37 104 38 113h35c-10 -52 -16 -106 -16 -164'], + 0x389: [692,3,987,22,966,'22 489l46 196l12 7l42 -16l6 -13l-90 -180zM772 120v223c-26 2 -42 2 -82 2h-234c-40 0 -56 0 -84 -2v-223c0 -79 6 -87 52 -90l48 -3v-30c-60 2 -96 3 -148 3s-86 -1 -146 -3v30l48 3c46 3 52 11 52 90v449c0 79 -6 87 -52 90l-48 3v30c72 -2 96 -3 146 -3 c52 0 74 0 148 3v-30l-48 -3c-46 -3 -52 -11 -52 -90v-178c20 -1 42 -2 84 -2h234c40 0 62 1 82 2v178c0 79 -4 87 -50 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 146 3v-30l-48 -3c-46 -3 -50 -11 -50 -90v-449c0 -79 4 -87 50 -90l48 -3v-30c-58 2 -94 3 -146 3 s-88 -1 -146 -3v30l48 3c46 3 50 11 50 90'], + 0x38A: [692,3,476,22,455,'22 489l46 196l12 7l42 -16l6 -13l-90 -180zM356 569v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90'], + 0x38C: [709,20,863,22,842,'22 506l45 196l12 7l44 -16l6 -13l-91 -180zM480 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM463 667c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315 c0 208 -101 330 -272 330'], + 0x38E: [691,4,854,3,855,'3 488l46 196l12 7l42 -16l6 -13l-90 -180zM855 564l-1 -18l-16 -9c-9 54 -40 82 -94 82c-41 0 -80 -20 -110 -46c-93 -79 -102 -231 -102 -344c0 -30 -3 -172 11 -188c11 -12 65 -13 82 -14l3 -3v-24l-3 -4c-46 2 -92 4 -140 4c-45 0 -90 -1 -136 -4l-4 4v24l4 3 c15 0 73 1 83 14c13 18 11 157 11 188v38c0 106 -57 355 -195 355c-54 0 -82 -33 -108 -75l-9 -1l-8 12c33 73 85 133 171 133c170 0 179 -254 184 -375h25c12 145 43 375 237 375c78 0 119 -52 115 -127'], + 0x38F: [709,6,904,34,871,'34 506l45 196l12 7l44 -16l6 -13l-91 -180zM871 145c-7 -50 -14 -101 -17 -151c-103 4 -208 4 -311 6v68c159 21 206 165 206 306c0 170 -56 303 -250 303c-190 0 -263 -125 -263 -300c0 -142 45 -288 206 -309v-68c-103 -3 -207 -2 -310 -6c-5 50 -11 101 -18 151l4 3 h15l3 -3c13 -52 13 -70 73 -70h129v7c-134 56 -207 172 -207 316c0 223 167 306 368 306c199 0 356 -90 356 -306c0 -145 -74 -260 -208 -316v-7h129c60 0 60 17 73 70l4 3h14'], + 0x390: [730,16,318,15,360,'127 527l46 196l12 7l43 -16l6 -13l-91 -180zM15 680c0 23 18 45 46 45c21 0 44 -17 44 -45s-22 -46 -44 -46c-25 0 -46 20 -46 46zM270 680c0 26 20 45 45 45c24 0 45 -19 45 -45c0 -25 -21 -46 -45 -46c-22 0 -45 17 -45 46zM305 83l-1 -8c-30 -30 -95 -91 -144 -91 c-36 0 -59 23 -64 59c-8 57 13 250 6 406c26 5 53 12 76 24l11 -13c-18 -81 -37 -295 -24 -375c3 -22 17 -44 42 -44c30 0 64 34 82 52l10 -2'], + 0x3AA: [819,3,388,22,367,'22 774c0 23 18 45 46 45c21 0 44 -17 44 -45s-22 -46 -44 -46c-25 0 -46 20 -46 46zM277 774c0 26 20 45 45 45c24 0 45 -19 45 -45c0 -25 -21 -46 -45 -46c-22 0 -45 17 -45 46zM244 569v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3 c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90'], + 0x3AB: [819,4,733,3,735,'194 774c0 23 19 45 46 45c22 0 44 -17 44 -45s-21 -46 -44 -46c-24 0 -46 20 -46 46zM450 774c0 26 20 45 44 45s46 -19 46 -45c0 -25 -22 -46 -46 -46c-21 0 -44 17 -44 46zM735 564l-1 -18l-16 -9c-9 54 -40 82 -94 82c-41 0 -80 -20 -110 -46 c-93 -79 -102 -231 -102 -344c0 -30 -3 -172 11 -188c11 -12 65 -13 82 -14l3 -3v-24l-3 -4c-46 2 -92 4 -140 4c-45 0 -90 -1 -136 -4l-4 4v24l4 3c15 0 73 1 83 14c13 18 11 157 11 188v38c0 106 -57 355 -195 355c-54 0 -82 -33 -108 -75l-9 -1l-8 12 c33 73 85 133 171 133c170 0 179 -254 184 -375h25c12 145 43 375 237 375c78 0 119 -52 115 -127'], + 0x3AC: [730,16,594,44,571,'273 527l45 196l12 7l44 -16l6 -13l-91 -180zM562 97c5 -3 8 -6 9 -13c-26 -30 -82 -100 -128 -100c-51 0 -62 111 -68 144l-3 3c-48 -67 -126 -147 -218 -147c-68 0 -97 49 -106 109c-24 150 73 380 241 380c112 0 114 -136 125 -213l7 -3c26 58 61 134 63 202h11 c11 -15 21 -31 30 -46c-25 -70 -60 -135 -99 -197c6 -32 22 -161 67 -161c27 0 46 24 62 42h7zM368 164l-4 28c-9 60 -30 245 -117 245c-109 0 -142 -235 -128 -322c7 -45 25 -87 78 -87c71 0 137 85 171 136'], + 0x3AD: [730,13,480,69,436,'265 527l45 196l12 7l44 -16l6 -13l-91 -180zM161 146c0 -70 58 -116 135 -116c45 0 89 14 132 42l8 -5l-15 -26c-50 -36 -103 -54 -159 -54c-102 0 -193 50 -193 145c0 65 48 106 143 123v9c-70 12 -105 45 -105 97c0 72 58 107 174 107c59 0 105 -13 138 -40 c-16 -27 -29 -49 -38 -68l-11 5c-5 55 -36 83 -92 83c-55 0 -93 -36 -93 -90c0 -44 22 -86 98 -86c22 0 44 3 68 7l5 -6c-3 -13 -6 -23 -8 -30l-10 -6c-23 6 -45 9 -66 9c-44 0 -111 -20 -111 -100'], + 0x3AE: [730,275,531,-11,464,'265 527l45 196l12 7l44 -16l6 -13l-91 -180zM149 473c28 0 17 -46 13 -104l7 -2c35 57 89 106 165 106c59 0 104 -29 113 -91c16 -105 -47 -499 17 -620l-2 -13c-25 -4 -48 -13 -70 -24l-11 9c-8 32 -16 50 -10 165c5 113 23 345 5 457c-8 46 -38 70 -83 70 c-172 0 -134 -289 -130 -408l-5 -9c-21 -6 -41 -15 -61 -25l-10 10c7 79 16 322 6 388c-2 11 -7 19 -18 19c-20 0 -56 -26 -72 -37l-6 2l-8 11l2 6c29 21 125 90 158 90'], + 0x3AF: [730,16,310,94,305,'127 527l45 196l12 7l44 -16l6 -13l-91 -180zM305 83l-1 -8c-30 -30 -95 -91 -144 -91c-36 0 -59 23 -64 59c-8 57 13 250 6 406c26 5 53 12 76 24l11 -13c-18 -81 -37 -295 -24 -375c3 -22 17 -44 42 -44c30 0 64 34 82 52l10 -2'], + 0x3B0: [730,12,547,13,490,'245 527l46 196l12 7l43 -16l6 -13l-91 -180zM133 680c0 23 18 45 46 45c21 0 44 -17 44 -45s-22 -46 -44 -46c-25 0 -46 20 -46 46zM388 680c0 26 20 45 45 45c24 0 45 -19 45 -45c0 -25 -21 -46 -45 -46c-22 0 -45 17 -45 46zM487 358c24 -148 -99 -370 -258 -370 c-63 0 -102 38 -112 100c-18 112 50 319 -28 319c-22 0 -46 -25 -62 -38l-7 2l-7 8l1 9c33 32 78 75 131 75c110 0 20 -222 43 -364c6 -39 30 -75 73 -75c114 0 179 187 163 287c-7 42 -28 95 -73 113l-3 10c21 11 39 24 58 37c45 -27 73 -64 81 -113'], + 0x3CA: [645,16,310,15,360,'15 600c0 23 18 45 46 45c21 0 44 -17 44 -45s-22 -46 -44 -46c-25 0 -46 20 -46 46zM270 600c0 26 20 45 45 45c24 0 45 -19 45 -45c0 -25 -21 -46 -45 -46c-22 0 -45 17 -45 46zM305 83l-1 -8c-30 -30 -95 -91 -144 -91c-36 0 -59 23 -64 59c-8 57 13 250 6 406 c26 5 53 12 76 24l11 -13c-18 -81 -37 -295 -24 -375c3 -22 17 -44 42 -44c30 0 64 34 82 52l10 -2'], + 0x3CB: [645,12,547,13,490,'52 600c0 23 18 45 46 45c21 0 44 -17 44 -45s-22 -46 -44 -46c-25 0 -46 20 -46 46zM307 600c0 26 20 45 45 45c24 0 45 -19 45 -45c0 -25 -21 -46 -45 -46c-22 0 -45 17 -45 46zM487 358c24 -148 -99 -370 -258 -370c-63 0 -102 38 -112 100c-18 112 50 319 -28 319 c-22 0 -46 -25 -62 -38l-7 2l-7 8l1 9c33 32 78 75 131 75c110 0 20 -222 43 -364c6 -39 30 -75 73 -75c114 0 179 187 163 287c-7 42 -28 95 -73 113l-3 10c21 11 39 24 58 37c45 -27 73 -64 81 -113'], + 0x3CC: [730,20,545,32,514,'263 527l45 196l12 7l44 -16l6 -13l-91 -180zM279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 436c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187c0 136 -68 236 -160 236'], + 0x3CD: [730,12,547,13,490,'245 527l45 196l12 7l44 -16l6 -13l-91 -180zM487 358c24 -148 -99 -370 -258 -370c-63 0 -102 38 -112 100c-18 112 50 319 -28 319c-22 0 -46 -25 -62 -38l-7 2l-7 8l1 9c33 32 78 75 131 75c110 0 20 -222 43 -364c6 -39 30 -75 73 -75c114 0 179 187 163 287 c-7 42 -28 95 -73 113l-3 10c21 11 39 24 58 37c45 -27 73 -64 81 -113'], + 0x3CE: [730,12,715,36,659,'360 527l45 196l12 7l44 -16l6 -13l-91 -180zM656 325c23 -144 -60 -337 -220 -337c-50 0 -81 15 -110 59h-5c-35 -36 -72 -59 -127 -59c-97 0 -139 62 -153 149c-26 164 75 291 223 326l11 -11l-6 -9c-129 -55 -176 -165 -152 -314c8 -48 31 -113 94 -113 c120 0 113 201 103 288c21 5 42 13 62 20l11 -9c-12 -63 -15 -130 -5 -196c7 -46 21 -102 80 -102c117 0 149 172 134 267c-9 54 -32 108 -83 139l-1 11c13 7 39 24 54 24c53 0 84 -95 90 -133'], + 0x13A0: [692,4,793,22,751,'341 -3c-43 0 -87 3 -145 3c-23 0 -23 0 -139 -3c-1 1 0 -3 0 0v23l31 16c16 8 25 30 25 59v474c0 78 -5 86 -51 90l-40 3v30c114 -2 169 -3 206 -3c70 0 157 3 174 3c211 0 349 -121 349 -307c0 -107 -44 -215 -116 -286c-70 -69 -166 -102 -294 -102zM644 359v9 c0 221 -186 278 -370 278c-22 0 -44 0 -66 -2v-595c113 0 276 9 336 58c66 54 100 140 100 252'], + 0x13A1: [692,3,667,22,669,'216 642v-522c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 78 -5 87 -51 90l-41 3v30c140 -3 140 -3 173 -3c34 0 50 3 180 3c124 0 194 -54 194 -150c0 -91 -64 -160 -195 -193l227 -296c13 -17 29 -23 61 -26v-30 c-63 3 -63 3 -72 3c-11 0 -21 0 -68 -3l-277 363l6 12c13 -1 22 -1 29 -1c116 0 189 58 189 150c0 85 -58 133 -162 133c-34 0 -64 -4 -98 -12'], + 0x13A2: [692,3,612,18,595,'379 689c43 0 22 0 216 3c-5 -57 -7 -96 -7 -161h-31l-4 79c-1 24 -12 33 -40 33h-155l-4 -523c0 -24 -1 -41 -1 -54c0 -29 5 -34 37 -36l48 -3v-30c-59 2 -80 3 -132 3s-72 -1 -131 -3v30l48 3c32 2 37 7 37 36c0 13 -1 30 -1 54l-4 523h-155c-28 0 -39 -9 -40 -33 l-4 -79h-31c0 65 -2 104 -7 161l68 -1c71 -1 125 -2 135 -2h158'], + 0x13A3: [699,-3,813,26,776,'776 272c1 -200 -227 -367 -347 -173c2 0 9 13 17 28c0 0 52 -79 91 -79c23 0 142 49 142 209c0 43 -8 95 -31 155c-47 125 -290 146 -346 17c69 -30 114 -102 114 -194c0 -135 -89 -232 -214 -232c-104 0 -176 87 -176 214c1 148 98 250 245 222c22 43 56 80 105 102v56 c0 79 -67 69 -113 72h-15v30c145 -4 278 -4 423 0v-33h-15c-59 -2 -115 12 -117 -67v-57c173 -56 237 -165 237 -270zM342 202c0 122 -55 213 -130 213c-71 0 -109 -59 -109 -167c0 -128 53 -214 132 -214c66 0 107 64 107 168'], + 0x13A4: [689,20,729,29,702,'464 301c-11 -218 -87 -321 -226 -321c-132 0 -209 98 -209 344c0 242 79 365 234 365c128 0 193 -73 201 -262c3 -17 37 -44 63 -44c76 0 109 41 109 81c0 45 -28 89 -71 89s-42 -16 -61 -57h-29c15 61 49 89 110 89c73 0 117 -36 117 -125c0 -106 -118 -161 -208 -161 c-11 0 -21 1 -30 2zM245 654c-95 0 -132 -83 -132 -294c0 -244 41 -345 138 -345c92 0 130 88 130 301c0 240 -39 338 -136 338'], + 0x13A5: [687,3,290,21,271,'104 469h75v-367c0 -63 12 -70 46 -72h46v-33c-92 2 -109 3 -125 3c-17 0 -33 -1 -125 -3v30h46c34 2 37 12 37 75v367zM142 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0x13A6: [709,20,835,26,809,'809 343h-193c34 -23 49 -65 49 -113c0 -145 -126 -250 -300 -250c-58 0 -116 13 -173 38c6 45 8 67 8 113c0 6 0 22 -1 40h32l8 -67c5 -41 83 -80 163 -80c104 0 179 65 179 155c0 158 -194 106 -309 164l-187 1c-24 -1 -43 -12 -59 -46c3 18 6 36 6 54c0 8 -1 16 -2 23 h193c-25 24 -37 56 -37 109c0 131 108 225 257 225c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-32l-6 57c-5 49 -65 84 -150 84c-88 0 -151 -60 -151 -144c0 -146 168 -106 286 -148l188 -1c36 1 51 40 65 63c-2 -15 -4 -34 -4 -52c0 -16 2 -31 4 -42'], + 0x13A7: [748,-49,647,27,617,'141 254c52 21 82 68 82 128c0 66 -25 113 -53 113c-48 0 -60 -48 -60 -102c0 -49 10 -95 31 -139zM105 680v-1c117 73 139 67 228 69c186 0 284 -179 284 -356c0 -173 -94 -343 -291 -343c-163 0 -299 175 -299 344c0 74 59 131 143 131c51 0 87 -78 87 -135 c0 -78 -37 -126 -105 -156c49 -80 115 -120 200 -120c131 0 214 156 214 268c0 155 -89 325 -231 325c-79 0 -146 -16 -198 -57c-16 15 -31 30 -32 31'], + 0x13A8: [692,3,577,22,559,'300 562c1 -179 235 -97 255 -17c24 -100 -55 -153 -140 -153c-49 0 -100 17 -129 49l-70 -110v-211c0 -79 5 -90 51 -90h48v-33c-107 4 -186 4 -293 0v30h48c46 3 51 14 51 93v449c0 79 -5 90 -51 90h-48v33c128 -5 167 -5 293 0v-30h-48c-46 -3 -51 7 -51 -72v-203'], + 0x13A9: [692,0,709,50,675,'50 692c75 -5 168 -5 244 0v-32c-37 -11 -53 -7 -60 -33c124 -206 77 -122 166 -276l147 270c-12 30 -30 31 -70 39v32c90 -4 113 -6 198 0v-32c-21 -5 -42 -8 -53 -16l-333 -613c-38 -30 -92 -42 -145 -20c-3 54 -10 102 -18 145h20c21 -40 36 -55 78 -62 c57 5 107 104 133 149l-239 391c-22 16 -32 20 -68 26v32'], + 0x13AA: [700,3,777,15,756,'245 -3c-198 4 -45 5 -230 0v30h37c22 2 41 23 54 52l270 621h32l242 -568c34 -81 46 -102 72 -102h34v-33c-213 5 -39 4 -266 0v30h47c25 1 45 14 45 25l-71 177h-288l-30 -83l36 -116h16v-33zM240 269h253l-126 298'], + 0x13AB: [692,196,509,22,487,'22 -56h26c10 -67 85 -75 141 -75c79 0 104 -5 104 114v586c0 79 -5 93 -51 93h-48v30c128 -5 167 -5 293 0v-33h-48c-46 0 -51 -11 -51 -90v-452c2 -183 -16 -332 -193 -312c-6 0 -155 16 -173 67v72'], + 0x13AC: [692,3,610,22,572,'34 27h36c47 4 51 14 51 93v449c0 79 -5 90 -51 90h-48v33c212 -9 309 5 534 -3c-11 -44 -16 -92 -16 -152h-35v65c-9 73 -226 43 -289 40v-267c66 6 148 0 230 4v82h35c-4 -185 -4 -48 0 -227h-30l-3 89c-14 10 -190 6 -232 4v-280c54 -16 263 -4 283 4 c27 11 37 104 38 113h35c-10 -52 -16 -106 -16 -164c-239 -9 -307 6 -522 -3v30'], + 0x13AD: [697,3,785,27,758,'396 448v140c0 60 -11 73 -60 76h-48v33c251 -4 63 -4 314 0v-30h-62c-49 -2 -60 -19 -60 -79v-140h278v-23l-283 -398l-79 -30v387h-108c-12 -62 -63 -100 -128 -100c-75 0 -133 57 -133 132c0 150 238 179 261 36c28 -3 49 -4 108 -4zM248 416c0 49 -40 88 -88 88 c-50 0 -89 -39 -89 -88c0 -50 39 -89 89 -89c48 0 88 39 88 89zM480 384v-287l205 287h-205'], + 0x13AE: [689,3,519,22,499,'333 689c94 0 166 -69 166 -182c1 -145 -113 -311 -283 -255v-149c0 -63 8 -73 51 -73h48v-33c-107 4 -186 4 -293 0v30h48c46 3 51 14 51 93v257c0 79 -5 90 -51 90h-48v33c128 -5 167 -5 293 0v-30h-48c-45 -3 -51 -14 -51 -93v-54c109 -67 203 55 201 166 c0 70 -38 141 -131 141c-57 0 -114 -44 -124 -90v57c27 55 100 92 171 92'], + 0x13AF: [693,0,602,20,577,'577 382c0 -143 -72 -299 -260 -382l-56 19l-12 74l10 10c22 -20 40 -26 72 -26c52 0 91 64 135 289h-222c-21 -201 -89 -355 -156 -365l-56 19l-12 74l10 10c22 -20 72 -26 72 -26c42 18 60 35 65 94c43 527 98 521 191 521c123 0 219 -146 219 -311zM466 396 c16 118 -23 253 -90 253c-70 0 -125 -80 -132 -253h222'], + 0x13B0: [692,3,505,22,483,'216 120c0 -79 5 -90 51 -90h48v-33c-108 4 -186 4 -293 0v30h48c46 3 51 14 51 93v449c0 79 -5 90 -51 90h-48v33c127 -4 166 -5 293 0v-30h-48c-46 -3 -51 -14 -51 -93v-194c61 -2 199 -3 235 1l-3 85h34c1 -187 3 -51 0 -227h-31v92c-16 3 -192 5 -235 1v-207'], + 0x13B1: [692,3,555,22,536,'520 537h-35v92c-93 25 -182 27 -269 13v-522c0 -83 8 -87 51 -90h48v-33c-104 4 -190 4 -293 0v30h48c43 3 51 12 51 93v449c0 82 -8 87 -51 90h-48v33c168 -8 352 5 514 -3c-11 -44 -16 -101 -16 -152'], + 0x13B2: [687,1,806,14,781,'95 174c-50 -51 -19 -115 67 -111c45 2 74 -5 96 57c0 14 -5 32 -20 52c-83 115 -175 515 65 515c102 0 144 -113 144 -194c-1 -127 -75 -252 -109 -349c0 -34 77 -61 147 -61c121 0 118 77 118 163v42c2 63 12 73 -77 69h-38v47c128 -5 167 -5 293 0v-46h-54 c-46 -3 -50 -4 -50 -83c0 -192 -105 -255 -204 -255c-73 0 -142 34 -166 75v-3c-37 -43 -86 -93 -161 -93c-107 0 -132 69 -132 118c1 56 29 93 67 88c10 -23 12 -27 14 -31zM385 491c0 122 -67 156 -90 156c-60 0 -88 -85 -88 -166c0 -90 31 -201 94 -311 c43 82 84 215 84 321'], + 0x13B3: [692,9,967,8,956,'523 661v31h183v-33h-30c-20 -3 -31 -18 -54 -72l-92 -213c53 -138 104 -251 105 -253c6 15 192 502 192 512c0 14 -13 29 -35 29h-52v30h216v-33h-30c-20 -3 -32 -18 -54 -72l-245 -593h-43c-15 54 -25 87 -58 162l-45 103l-33 -93c-29 -81 -45 -113 -64 -175h-42 l-254 627c-12 30 -24 44 -44 44h-36v30c204 -3 51 -5 236 0v-33h-26c-20 -2 -32 -8 -32 -20c0 -4 198 -514 199 -518c3 8 25 68 73 195l-120 302c-12 30 -24 38 -44 44h-10v30c126 -4 76 -6 184 -1v-33c-23 -6 -31 -15 -31 -29c0 -32 49 -89 76 -196c46 122 64 194 64 199 c0 15 -13 26 -35 29h-19'], + 0x13B4: [674,20,878,32,846,'626 674c142 0 213 -142 220 -314h-79c-14 106 -45 222 -141 222c-97 0 -131 -115 -145 -222c96 -175 -31 -380 -231 -380c-129 0 -218 96 -218 237c0 199 208 314 378 218c22 140 99 239 216 239zM261 436c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238 c81 0 132 72 132 187c0 136 -68 236 -160 236'], + 0x13B5: [692,3,555,22,580,'348 357c87 0 132 61 132 152c0 132 -136 168 -264 133v-522c0 -79 5 -87 51 -90h48v-33c-108 4 -186 4 -293 0v30h48c46 3 51 14 51 93v449c0 74 -8 87 -53 90h-45v33c204 -6 243 0 352 0c127 0 205 -59 205 -155c0 -120 -91 -211 -229 -213h-86c17 44 18 87 30 166h28 v-108c0 -14 8 -25 25 -25'], + 0x13B6: [710,20,730,22,692,'472 320c-12 -78 125 -43 216 -51v-238c-136 -38 -205 -51 -276 -51c-207 0 -390 121 -390 361c0 308 356 446 670 327c-14 -54 -20 -101 -20 -152h-31v53c0 78 -130 98 -217 98c-187 0 -295 -112 -295 -305c0 -208 126 -340 324 -340c66 0 132 14 143 33v144 c0 34 -22 36 -68 36c-54 0 -53 -13 -53 -51v-79h-33c4 108 4 186 0 293h30v-78'], + 0x13B7: [692,13,1004,16,985,'732 120v458l-276 -591h-20l-279 591v-458c0 -78 5 -87 51 -90h44v-33c-197 4 -45 4 -236 0v30h44c46 3 51 15 51 93v449c0 78 -5 87 -51 90h-44v33c150 -4 40 -4 190 0l264 -556l262 556c146 -5 86 -3 253 0v-30h-107c-46 -1 -51 -15 -51 -93v-449c0 -79 5 -89 51 -90 h107v-33c-111 3 -234 5 -338 0v30h34c47 4 51 14 51 93'], + 0x13B8: [725,195,572,23,538,'79 672c230 85 360 112 360 -267v-477c0 -79 5 -93 51 -93h48v-30c-126 4 -165 4 -293 0v33h48c46 0 51 11 51 90v181h-143l-57 104c-55 3 -91 4 -80 -48v-79h-30c4 108 4 186 0 293h34v-78c3 -46 -3 -49 76 -49h32l58 -104h110v366c0 84 -14 113 -54 113 c-105 28 -200 -45 -228 -102h-12l-27 72c18 21 35 67 56 75'], + 0x13B9: [692,-4,920,11,908,'785 473c-103 0 -147 -101 -273 -101c-42 0 -45 16 -109 47c-80 -4 -102 -43 -118 -108c93 -8 162 -84 162 -165c0 -82 -69 -142 -135 -142c-154 0 -221 184 -109 270c-89 5 -131 -9 -192 -50v27c101 56 134 59 213 61c29 48 49 111 70 171c0 79 -5 179 -51 179h-48v30 c128 -5 167 -5 293 0v-33h-48c-46 -3 -51 -97 -51 -176c102 -115 220 27 339 43v-1c73 8 127 8 180 -44c-3 -31 -4 -55 -5 -113h-28v23c0 46 -43 82 -90 82zM403 129c0 55 -72 103 -130 103c-135 0 -28 -158 68 -158c34 0 62 21 62 55'], + 0x13BA: [709,20,1105,22,1073,'879 345h-115c0 -221 -146 -365 -348 -365c-224 0 -394 167 -394 387c0 210 140 342 362 342c211 0 356 -127 377 -320h118v180c0 79 -5 87 -51 90h-48v33c127 -5 166 -4 293 0v-30h-48c-46 -3 -51 -14 -51 -93v-449c0 -79 5 -87 51 -90h48v-33c-108 4 -185 4 -293 0v30 h48c46 3 51 14 51 93v225zM401 667c-171 0 -272 -122 -272 -330c0 -198 92 -315 247 -315c168 0 281 142 281 356c0 185 -92 289 -256 289'], + 0x13BB: [692,3,831,22,810,'616 120v225h-400v-225c0 -79 5 -87 51 -90h48v-33c-108 4 -186 4 -293 0v30h48c46 3 51 14 51 93v449c0 79 -5 87 -51 90h-48v33c127 -4 166 -5 293 0v-30h-48c-46 -3 -51 -14 -51 -93v-180h400v180c0 79 -5 87 -51 90h-48v33c127 -4 166 -5 293 0v-30h-48 c-46 -3 -51 -14 -51 -93v-449c0 -79 5 -87 51 -90h48v-33c-108 4 -186 4 -293 0v30h48c46 3 51 14 51 93'], + 0x13BC: [692,19,525,27,493,'126 569c0 79 -5 87 -51 90h-48v33c127 -4 166 -5 293 0v-30h-48c-46 -3 -51 -14 -51 -93v-75c167 22 272 -86 272 -241c0 -178 -253 -376 -388 -210c9 36 14 77 14 123h28v-61c89 -86 257 -47 257 122c0 177 -146 269 -289 189l-10 15l21 32v106'], + 0x13BD: [692,-2,759,27,730,'150 75c0 66 33 180 -53 170h-70v35c127 -4 166 -5 293 0v-32h-51c-46 -3 -59 -41 -59 -120c0 -67 14 -63 83 -63c17 0 8 20 113 198c5 4 -238 393 -263 397v32c75 -5 36 -5 111 0c0 -10 191 -323 201 -341l147 270c-12 30 -30 31 -70 39v32c90 -4 113 -6 198 0v-32 c-21 -5 -42 -8 -53 -16l-333 -613c-16 -21 -58 -29 -99 -29c-84 0 -95 13 -95 73'], + 0x13BE: [709,20,786,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM385 667c-164 0 -256 -117 -256 -302h527c-8 191 -108 302 -271 302zM410 22c148 0 239 107 246 290h-523c21 -177 127 -290 277 -290'], + 0x13BF: [691,210,579,14,550,'329 29h-71v35c125 -5 164 -5 292 0v-32h-45c-91 -7 -20 -171 -54 -231c-69 -7 -124 -11 -170 -11c-170 0 -191 59 -191 281v311h-76v17l76 35v257c-4 -2 96 -3 95 0v-261h140v-48h-140v-399c0 -73 80 -122 136 -122c26 0 47 11 53 34c0 123 -13 134 -45 134'], + 0x13C0: [710,20,839,22,805,'412 -20c-207 0 -390 121 -390 361c0 308 356 446 670 327c-14 -54 -20 -101 -20 -152h-31v53c0 78 -130 98 -217 98c-187 0 -295 -112 -295 -305c0 -208 126 -340 324 -340c66 0 132 14 143 33v144c0 24 -9 33 -34 35h-83v37c164 -4 139 -2 326 0v-34h-106 c-11 0 -11 -7 -11 -38v-168c-136 -38 -205 -51 -276 -51'], + 0x13C1: [697,11,662,19,634,'235 222c-30 -187 -104 -297 -216 -195l32 132h20c3 -14 8 -49 36 -49c41 0 61 45 88 161l75 323c0 27 -16 48 -77 48v42c62 0 115 0 175 13l193 -600c12 -37 18 -49 34 -50h39v-44c-158 5 -83 6 -261 0v41h54c18 1 40 16 40 32s-146 460 -154 486'], + 0x13C2: [790,3,581,6,572,'88 685c0 63 -3 70 -37 72h-45v33c135 -4 113 -4 248 0v-30h-45c-34 -2 -37 -12 -37 -75v-307c71 148 323 115 322 -83v-193c0 -65 3 -70 37 -72h41v-33c-124 4 -45 4 -162 0v284c21 167 -238 151 -238 33v-212c0 -63 3 -70 37 -72h45v-33c-135 4 -113 4 -248 0v30h45 c34 2 37 12 37 75c0 185 -2 387 0 583'], + 0x13C3: [692,3,666,15,638,'424 44c153 0 167 6 174 72v57h40c-5 -55 -6 -90 -6 -176h-617v28l485 623h-228c-122 0 -149 -8 -152 -47v-71h-40c4 69 4 93 0 162h553v-29l-482 -619h273'], + 0x13C4: [700,-2,616,24,583,'392 539c1 84 -18 103 -57 103h-151c-15 0 -20 -2 -20 -16v-31c-4 -58 2 -96 52 -91h44v-33c-197 4 -45 4 -236 0v30h44c46 3 50 15 50 93v59c0 43 96 47 149 47h61c41 0 84 -3 107 -32c49 -61 49 -54 49 -175v-368c0 -79 5 -90 51 -90h48v-33c-127 5 -166 4 -293 0v30 h48c46 3 51 14 51 93v123c-226 0 -123 -1 -226 0c-60 -6 -46 16 -46 73c0 63 -7 75 -49 75h-44v33c191 -4 40 -4 236 0v-30h-44c-46 -3 -52 -16 -52 -95v-13c46 -5 178 1 225 0'], + 0x13C5: [708,21,1018,23,991,'816 563c-39 -61 -32 -164 47 -164c37 0 78 27 108 75l20 -12c-57 -91 -110 -132 -161 -132c-26 0 -53 14 -65 36c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c185 0 312 -86 349 -238v-1c8 34 19 59 44 106zM433 680 c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 250 118 250 316c0 208 -104 329 -275 329'], + 0x13C6: [689,-4,466,25,441,'282 643v-594h77c28 0 44 9 44 33v79h31c0 -65 2 -100 7 -157h-416c5 57 7 92 7 157h35v-79c1 -24 12 -33 40 -33h78v594h-78c-28 0 -44 -9 -44 -33v-79h-31c0 65 -2 101 -7 158h416c-5 -57 -7 -93 -7 -158h-35v79c-1 24 -12 33 -40 33h-77'], + 0x13C7: [691,12,715,41,671,'361 691c166 -4 310 -225 310 -442c0 -135 -85 -261 -229 -261c-50 0 -81 15 -110 59c-35 -36 -77 -59 -133 -59c-115 0 -158 91 -158 215c0 117 58 183 186 183l11 -12v-8c-92 -7 -123 -74 -123 -160c0 -43 5 -190 101 -190c114 0 131 157 120 271c22 25 57 41 89 41 l-27 -77c-9 -35 -15 -59 -15 -90c0 -40 7 -144 84 -144c112 0 148 151 131 265c-29 190 -73 317 -304 342l-17 10l15 20c24 26 45 37 69 37'], + 0x13C8: [692,4,525,29,509,'411 649c89 0 98 -87 98 -163c0 -32 -6 -63 -19 -90c0 -4 -23 -51 -27 -51c-37 8 -50 17 -104 32c15 57 20 105 21 159h33v-55c1 -42 8 -91 28 -93c56 60 55 224 -51 224c-44 0 -92 -13 -92 -13v1c27 -41 69 -630 -56 -604c-73 0 -164 133 -164 290c0 107 43 226 163 320 c-60 102 -159 -32 -200 -75c-50 77 71 161 166 161c35 0 66 -17 83 -62c1 6 71 19 121 19zM159 292c0 -132 27 -258 101 -244c28 110 25 451 -10 533c-63 -41 -91 -168 -91 -289'], + 0x13C9: [705,6,1186,22,1168,'714 668c-46 -4 -35 -74 4 -76c32 8 39 75 -4 76zM782 587c112 -3 184 118 303 118c92 0 95 -93 71 -147c-12 -13 -64 -67 -82 -72l-33 32c41 9 97 39 97 79c0 48 -89 91 -129 52c-77 -74 -137 -106 -237 -93l-251 -562h-36l-253 632l-80 -87c-31 -34 -82 -55 -130 -30 l10 120h20c16 -32 38 -46 68 -46c49 0 87 106 87 106h104l223 -565l191 438c-32 6 -78 13 -78 63c0 130 186 61 135 -38'], + 0x13CA: [652,12,715,38,671,'108 231c0 -79 12 -215 108 -215c114 0 131 157 120 271c36 35 81 55 135 30v-77h-12c-24 21 -30 23 -57 23c-9 -38 -18 -70 -18 -108c0 -42 9 -138 83 -138c112 0 148 151 131 265c-29 190 -73 278 -304 303l-17 10l15 20c24 26 45 37 69 37c166 -2 310 -186 310 -403 c0 -135 -85 -261 -229 -261c-50 0 -81 15 -110 59c-35 -36 -77 -59 -133 -59c-123 0 -161 107 -161 234c0 77 37 91 143 129l11 -12v-8c-65 -34 -84 -58 -84 -100'], + 0x13CB: [710,20,547,30,524,'30 222c0 84 83 142 142 146c-45 8 -116 50 -116 116c-2 212 252 280 423 183c-10 -54 -14 -35 -14 -88h-38c-6 55 -75 88 -136 88c-74 0 -138 -48 -138 -144c0 -139 178 -131 254 -131v-61h-39c-86 0 -231 -12 -231 -152c0 -93 52 -155 156 -155c251 0 184 173 12 218 v15c149 -19 219 -89 219 -154c0 -64 -68 -123 -194 -123c-213 0 -300 90 -300 242'], + 0x13CC: [692,20,778,12,759,'206 429v-204c0 -128 60 -183 199 -183c145 0 212 66 213 207v180h-412zM523 659v33c191 -4 41 -4 236 0v-30h-44c-46 -3 -51 -15 -51 -93v-289c-2 -214 -75 -300 -286 -300c-184 0 -267 61 -267 234v355c0 79 -5 90 -51 90h-48v33c128 -5 167 -5 293 0v-30h-48 c-46 -3 -51 -14 -51 -93v-100h413v100c-1 78 -6 87 -52 90h-44'], + 0x13CD: [698,20,839,19,814,'814 411c0 -201 -65 -421 -255 -421c-104 0 -187 34 -187 142c-42 -112 -106 -152 -167 -152c-118 0 -186 101 -186 223c0 117 58 183 186 183l11 -12v-8c-92 -7 -123 -74 -123 -160c0 -94 22 -149 87 -149c67 0 155 63 191 171c1 79 -6 65 -51 65h-48v33 c128 -5 167 -5 293 0v-30h-48c-46 -3 -51 -14 -51 -93c0 -85 27 -182 81 -182c103 -25 184 209 184 430c0 119 -77 197 -140 197c-55 0 -89 -59 -95 -156l-65 -10c24 95 64 216 159 216c105 0 224 -140 224 -287'], + 0x13CE: [698,3,563,2,534,'502 334h32c-4 -232 -4 -22 0 -252h-30v62c2 56 -10 38 -55 38c-62 0 -80 1 -85 1v-77c0 -60 11 -73 60 -76h48v-33c-251 4 -63 4 -314 0v30h62c49 2 60 19 60 79v75h-267l-11 23l283 463l85 31c-5 -41 -6 -136 -6 -314v-138c57 0 139 -13 138 40v48zM280 245v352 l-215 -352h215'], + 0x13CF: [692,3,603,22,580,'121 120v449c0 79 -5 87 -51 90h-48v33c108 -4 185 -4 293 0v-30h-48c-46 -3 -51 -14 -51 -93v-522c128 -35 264 1 264 133c0 112 -98 180 -210 143l10 36c162 32 307 -71 300 -207c-8 -157 -160 -152 -375 -152c-22 0 -22 0 -182 -3v30h45c45 3 53 19 53 93'], + 0x13D0: [692,3,526,14,507,'309 120c0 -79 5 -93 51 -93h48v-30c-107 4 -185 4 -293 0v33h48c46 3 51 11 51 90v111c-150 -40 -254 112 -169 237c36 -6 59 -8 95 -8v-21h-39c-36 0 -56 -49 -56 -90c0 -79 141 -111 169 -33v253c0 79 -5 93 -51 93h-48v30c128 -5 167 -5 293 0v-33h-48 c-46 -3 -51 -11 -51 -90v-80c154 31 246 -133 172 -262c-39 4 -63 7 -102 4v22h44c91 26 55 191 -52 191c-23 0 -45 -8 -62 -24v-300'], + 0x13D1: [693,11,549,10,514,'10 178c0 187 167 236 243 344c-55 4 -109 29 -108 88c0 31 18 83 79 83c52 -1 85 -84 52 -148c42 24 44 84 109 84c67 0 106 -60 129 -117c-20 -18 -26 -22 -26 -23c-18 59 -51 71 -118 80c-21 -86 -188 -212 -255 -286c-25 -28 -34 -66 -34 -103c0 -95 21 -157 92 -150 c113 12 67 183 -9 214h12c144 1 208 -254 18 -255c-113 0 -184 64 -184 189zM223 655c-29 0 -44 -20 -44 -45c0 -34 33 -53 71 -53c4 33 15 98 -27 98'], + 0x13D2: [692,3,696,22,674,'217 72c0 -34 4 -40 38 -42h60v-33c-108 4 -186 4 -293 0v30h48c46 3 51 14 51 93v449c0 78 -5 87 -51 90h-41v33c255 -6 100 -2 353 0c124 0 194 -54 194 -150c0 -108 -107 -175 -211 -201c75 -102 165 -184 228 -267c27 0 45 7 69 28h12v-82c-24 -14 -124 -23 -145 -23 l-312 363v-288zM217 409c117 -13 259 11 259 112c0 120 -130 139 -259 121v-233'], + 0x13D3: [692,195,509,22,487,'487 -56v-72c-13 -33 -143 -67 -170 -67c-181 0 -196 128 -196 312v452c0 79 -5 90 -51 90h-48v33c125 -5 164 -5 293 0v-30h-48c-46 -3 -51 -14 -51 -93v-586c0 -119 24 -114 104 -114c56 0 131 8 141 75h26'], + 0x13D4: [693,6,869,9,859,'165 662c-20 0 -38 -11 -38 -23c0 -4 198 -514 199 -518c3 7 28 76 79 213l-141 358c37 -3 62 -5 104 0l56 -135c55 97 72 128 72 134c12 -4 69 -2 76 0l-118 -221c55 -143 134 -343 135 -345c128 353 201 471 201 511c0 19 -15 21 -47 23h-12v30h128l-281 -695h-36 l-112 284l-106 -284h-41l-274 696l156 3v-31'], + 0x13D5: [709,20,578,24,544,'402 588c0 66 -81 79 -143 79c-88 0 -151 -60 -151 -144c0 -75 15 -119 130 -119h306v-31h-135c64 -20 95 -61 95 -163c1 -195 -292 -288 -474 -192c9 57 9 94 7 153h40v-67c0 -41 83 -80 163 -80c102 0 179 77 179 155c0 56 -18 111 -176 135c-149 22 -219 42 -219 181 c0 200 270 268 437 172c-8 -60 -45 -136 39 -130h44v-28c-195 4 -45 4 -236 0v31h54c38 0 39 -12 40 48'], + 0x13D6: [692,3,665,30,633,'37 531c0 65 -2 104 -7 161h363v-37h-74c-46 -3 -51 -7 -51 -86v-522c127 -36 274 0 280 133c6 141 -55 161 -155 129l10 36c134 28 230 -38 230 -166c0 -219 -204 -175 -558 -182v30h45c45 3 53 19 53 93v497c0 27 -6 26 -56 26c-36 0 -45 -9 -45 -33v-79h-35'], + 0x13D7: [692,11,466,10,446,'226 569c0 79 -59 74 -129 74c-36 0 -45 -9 -45 -33v-79h-35c0 65 -2 104 -7 161h436v-48h-74c-46 0 -51 4 -51 -75v-569c-12 2 -93 0 -95 0v222c-28 -190 -99 -296 -211 -195l32 132h20c3 -15 8 -49 36 -49c40 0 97 161 123 276v183'], + 0x13D8: [691,0,447,15,427,'427 48v-47h-243v49h14s60 -9 60 74v98c-31 -140 -140 -222 -202 -222c-20 0 -35 9 -41 27l32 132h20c3 -15 8 -49 36 -49c40 -1 129 161 155 276v182c0 77 -57 74 -60 74h-14v49h243v-47h-15c-5 0 -59 0 -59 -76v-444c0 -76 54 -76 59 -76h15'], + 0x13D9: [693,6,681,8,661,'542 662h-52v30c41 -1 79 -5 108 -5h63l-283 -693h-36l-254 625c-12 30 -24 44 -44 44h-36v30c205 -4 60 -4 265 0v-33h-56c-20 0 -34 -10 -34 -21l201 -517l198 509c0 14 -18 31 -40 31'], + 0x13DA: [709,19,525,24,503,'415 583c-7 56 -88 84 -157 84c-88 0 -151 -60 -151 -144c0 -77 43 -108 165 -126c164 -24 231 -35 231 -187c1 -194 -292 -288 -474 -192c8 56 10 95 8 153h32v-67c5 -41 91 -80 171 -80c140 1 232 142 141 243c-43 49 -291 47 -315 105c-115 150 24 336 215 337 c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-32v57'], + 0x13DB: [692,36,725,18,716,'18 315c0 237 159 377 385 377c19 0 37 -1 56 -2c71 15 329 -59 238 -203c-29 -25 -61 -32 -94 -32l-13 12v10c26 10 83 6 83 31c0 62 -108 121 -200 121c11 -7 67 -64 67 -120c0 -60 -68 -61 -110 -61l44 113c-18 98 -108 57 -187 55c80 -167 124 -477 -27 -652 c-100 0 -242 138 -242 351zM222 29c37 -9 52 140 52 285c0 129 -13 260 -40 293c-228 -16 -134 -550 -12 -578'], + 0x13DC: [719,33,674,25,649,'307 719c187 0 290 -240 148 -347c116 -52 194 -106 194 -243c0 -100 -36 -156 -126 -156c-188 0 -186 318 -16 329c-42 25 -61 32 -106 12c-18 -18 -130 -40 -130 -40c59 -23 93 -94 93 -162c0 -88 -47 -145 -152 -145c-103 0 -187 47 -187 159c0 234 232 167 345 227 c-13 -5 -26 -7 -39 -7c-95 0 -177 93 -177 184c0 128 59 189 153 189zM302 650c-62 0 -92 -33 -92 -99c0 -72 40 -162 193 -163c27 6 40 43 40 87c0 83 -41 175 -141 175zM91 138c0 -56 45 -110 98 -110c145 0 134 207 20 228c-86 -21 -118 -70 -118 -118zM526 261 c-119 -24 -118 -233 0 -239c98 7 60 223 0 239'], + 0x13DD: [693,0,500,12,478,'109 287v175c1 137 213 294 369 206c-9 -49 -12 -85 -9 -136h-33c0 95 -26 115 -109 115c-99 0 -135 -96 -135 -204v-89c-5 -87 -35 -196 -97 -285c94 14 215 3 313 0c19 0 29 8 29 37v52h33v-148c-19 -15 -25 -10 -50 -10h-28c-111 0 -202 15 -313 19l-45 -19h-22v50 c15 1 57 6 63 37c20 40 34 121 34 200'], + 0x13DE: [692,3,611,22,586,'565 0c-179 -8 -320 3 -500 -3v23l31 16c16 8 25 30 25 59v474c0 79 -5 90 -51 90h-48v33c128 -5 167 -5 293 0v-30h-48c-46 -3 -51 -14 -51 -93v-497c54 -16 306 -6 310 9l28 91h32c-10 -97 -14 -129 -21 -172'], + 0x13DF: [733,20,709,22,664,'589 733h31c-1 -59 -4 -71 8 -130c-46 -10 -117 64 -213 64c-172 0 -286 -122 -286 -306c0 -284 311 -411 535 -268l-22 -59c-266 -142 -620 6 -620 308c0 258 318 465 567 315v76'], + 0x13E0: [692,196,647,26,625,'431 95h-132v-211c73 -24 133 -34 132 78v133zM624 95h-99c-3 -172 -92 -291 -205 -291c-51 0 -86 53 -86 86v206h-124c-52 6 -84 63 -84 116c0 76 68 118 121 118c77 0 152 -82 152 -195h132v434c0 79 -5 93 -51 93h-48v30c128 -5 167 -5 293 0v-33h-48 c-46 -3 -51 -10 -51 -89v-436h98v-39zM227 137c16 57 -19 122 -99 122c-124 -22 -3 -165 99 -122'], + 0x13E1: [722,13,902,32,884,'762 411c36 0 52 76 52 100c0 121 -176 169 -268 94c66 -92 137 -273 137 -401c0 -130 -100 -217 -231 -217c-175 0 -273 221 -173 362l169 238c-44 58 -188 74 -222 -25c0 -79 5 -83 51 -83h48v-33c-107 4 -186 4 -293 0v30h48c71 -3 42 44 42 98c-3 135 318 194 383 71 c53 55 107 77 157 77c149 0 288 -204 190 -324c-40 -23 -82 -35 -136 -46c-13 39 -26 66 -60 126l26 15l21 -36c16 -28 40 -46 59 -46zM493 553c-55 -74 -195 -222 -195 -368c0 -209 301 -179 290 35c-6 119 -56 237 -95 333'], + 0x13E2: [692,3,604,22,580,'23 692c188 -4 154 -1 352 0c127 0 205 -59 205 -155c1 -137 -139 -239 -300 -207l-10 36c110 -37 210 30 210 143c0 134 -141 166 -264 133v-522c0 -79 5 -90 51 -90h48v-33c-107 4 -186 4 -293 0v30h48c46 3 51 14 51 93v449c0 74 -8 87 -53 90h-45v33'], + 0x13E3: [710,20,764,22,742,'535 118h-37v28c53 6 115 20 166 41v-97l-22 -56c-263 -141 -620 5 -620 308c0 302 356 446 642 326c2 -84 0 -15 0 -183c14 -17 72 -17 78 -20v-30c-187 4 -49 6 -228 0v30c15 4 29 5 41 5h22c25 0 37 6 37 70v48c0 39 -101 79 -199 79c-172 0 -286 -122 -286 -306 c0 -262 221 -395 450 -308c0 66 -4 65 -44 65'], + 0x13E4: [692,0,636,10,606,'316 2c-13 -1 -92 -2 -90 -2v569c0 70 -47 74 -106 74c-55 0 -68 -3 -68 -33v-79h-35c0 65 -2 104 -7 161h394v-48h-32c-46 0 -51 4 -51 -75v-447c6 14 232 557 232 567h53'], + 0x13E5: [692,3,680,22,658,'644 362h-32c10 96 -37 152 -79 143c-26 0 -49 -12 -49 -15c-7 -68 1 -390 0 -389c0 -61 4 -70 46 -74h28v-30c-92 4 -150 4 -243 0v33h28c43 5 51 10 51 75v356l-203 -93v-272c0 -57 5 -65 46 -69h28v-30c-92 4 -150 4 -243 0v33h28c46 5 46 11 46 90v449 c0 79 0 88 -46 93h-28v30c112 -5 134 -6 243 0v-33h-28c-46 -5 -44 -11 -44 -90v-151l163 78c127 55 183 81 302 8c-10 -54 -14 -89 -14 -142'], + 0x13E6: [692,3,726,22,692,'661 -1c-70 7 -78 3 -133 1l-157 436l-155 -144v-172c0 -79 5 -87 51 -90h48v-33c-108 4 -186 4 -293 0v30h48c46 3 51 14 51 93v449c0 79 -5 87 -51 90h-48v33c127 -4 166 -5 293 0v-30h-48c-46 -3 -51 -14 -51 -93v-198l313 287l-6 34h169v-30h-42 c-26 -1 -51 -15 -78 -40l-140 -130l146 -420c14 -41 48 -38 63 -40h20v-33'], + 0x13E7: [692,-6,491,14,469,'14 226c0 162 142 251 259 153v207c0 64 -7 73 -49 73h-48v33c128 -5 167 -5 293 0v-30h-48c-46 -3 -51 -14 -51 -93v-512c-150 -104 -356 -49 -356 169zM187 372c-91 0 -122 -36 -122 -109c0 -131 35 -209 163 -209c24 0 42 8 42 34v247c0 32 -53 37 -83 37'], + 0x13E8: [688,16,875,22,854,'643 529c-169 147 -514 78 -514 -198c0 -184 114 -306 286 -306c57 -18 140 20 177 38v125h28l52 -67l34 54l49 -54l45 52c7 -9 9 -11 9 -12l-49 -90l-47 59l-41 -55l-52 71c0 -40 0 -75 2 -128c-18 0 -8 4 -30 5c-267 -125 -570 67 -570 327c0 307 427 453 621 232 l58 79l46 -61l52 66l55 -101c0 -1 -3 -3 -11 -13l-50 58l-54 -60l-38 60'], + 0x13E9: [719,11,712,21,684,'128 338c-3 -198 46 -313 244 -313c78 0 145 52 143 89v23l1 24c4 105 -39 56 -100 76v30c179 -6 50 -5 236 0v-30c-10 -2 -46 4 -65 0v-183c35 -11 87 -26 96 28c3 -9 3 -64 -4 -59c-14 0 -69 10 -88 10c-69 -27 -138 -44 -204 -44c-201 0 -366 137 -366 368 c0 306 312 448 567 308l22 -56l-10 -97c-51 21 -103 35 -156 41v28h37c40 0 44 -1 44 65c-220 87 -392 -43 -397 -308'], + 0x13EA: [692,9,981,10,959,'959 479c0 -206 -176 -485 -420 -485c-98 0 -207 32 -252 88c-83 -65 -143 -91 -185 -91c-174 0 -49 419 -28 487c36 -9 49 -14 95 -14v-28h-33c-39 -92 -61 -191 -61 -260c0 -148 98 -128 185 -48c-35 91 -68 205 -68 290c0 147 108 241 216 241c89 0 124 -56 124 -135 c0 -151 -67 -278 -159 -361c29 -58 100 -111 176 -111c136 0 227 150 271 244c-129 23 -170 98 -170 178c0 106 75 218 117 218c132 0 192 -97 192 -213zM777 602c-97 -33 -90 -218 8 -230c115 -16 52 243 -8 230zM391 591c-85 -21 -110 -123 -110 -186 c1 -101 49 -193 66 -189c53 44 124 188 124 306c0 32 -30 69 -80 69'], + 0x13EB: [709,20,786,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM341 346c0 103 -62 93 -152 93c-26 0 -48 -1 -54 -1c-34 -211 86 -416 275 -416c109 0 180 42 217 145c-108 -27 -276 -33 -299 68c8 32 13 73 13 111z M385 667c-132 0 -213 -50 -241 -173c162 4 305 9 305 -147c0 -33 -8 -71 -24 -108c26 -64 159 -22 214 -17c64 221 -46 445 -254 445'], + 0x13EC: [694,22,922,4,908,'620 694c174 -20 288 -104 288 -258c0 -265 -234 -458 -530 -458c-191 0 -374 146 -374 379c0 176 95 304 251 304c90 0 157 -56 157 -135c0 -165 -128 -288 -257 -334c34 -111 127 -158 235 -158c210 0 475 177 475 413c0 116 -137 171 -225 171c-29 0 -49 -7 -52 -22 c15 -35 0 -2 23 -51v-13l-77 -25c-1 0 -6 5 -13 55c-12 90 39 139 99 132zM160 242c136 47 197 164 197 245c0 78 -45 140 -107 144c-114 -23 -158 -142 -158 -242c0 -79 28 -147 68 -147'], + 0x13ED: [693,0,577,20,552,'344 693c152 0 208 -168 208 -313c0 -149 -61 -380 -321 -380c-54 0 -131 10 -172 36l-39 45l26 70h14c15 -46 52 -69 133 -69c84 0 191 31 247 103c-195 0 -299 153 -299 296c0 112 65 212 203 212zM483 360c0 124 -25 280 -138 279c-72 0 -144 -86 -144 -182 c0 -91 65 -190 257 -232c15 9 25 66 25 135'], + 0x13EE: [690,20,496,28,467,'318 625c-160 -45 -169 -128 -187 -294c52 42 109 78 161 78c106 0 175 -75 175 -190c0 -136 -97 -239 -227 -239c-259 0 -259 451 -114 613c29 33 155 97 238 97c33 0 60 -10 69 -38c-10 -54 -14 -88 -14 -141h-32v57c-6 40 -39 57 -69 57zM381 184 c0 198 -259 228 -259 36c0 -134 46 -207 131 -207c77 0 128 67 128 171'], + 0x13EF: [693,20,785,20,755,'191 -20c-113 0 -171 139 -171 274c0 64 11 101 29 119h64c-37 -84 -44 -161 -10 -244c103 -99 156 -53 211 107c-14 0 -38 43 -52 51c-14 -8 -35 -43 -52 -51v18c18 25 34 54 52 54c15 0 38 -43 53 -52c16 9 34 52 52 52c19 0 39 -56 61 -56c21 0 39 56 60 56 c16 0 54 -57 54 -57v-15c-18 0 -43 53 -55 53c-19 -9 -55 -83 -93 -37c0 -85 40 -217 94 -217c110 -27 184 190 184 408c0 121 -111 200 -197 200c-75 0 -104 -58 -110 -156l-65 -10c26 102 65 216 174 216c126 0 281 -142 281 -289c0 -198 -68 -414 -255 -414 c-104 0 -162 34 -162 142c-42 -112 -96 -152 -147 -152'], + 0x13F0: [677,158,512,7,486,'113 550c20 111 322 220 323 3c0 -85 -62 -136 -142 -157v-9c100 -11 192 -105 192 -217c1 -163 -212 -239 -341 -145v-175c-8 -2 -15 -4 -33 -8v181h-105v27h106v500zM150 224c-6 -119 29 -212 124 -212c91 0 130 76 130 157c-1 111 -98 220 -229 195v42 c103 -8 193 34 194 132c0 59 -40 108 -92 108c-142 -38 -112 -134 -127 -422'], + 0x13F1: [691,-2,596,27,565,'73 152c32 -35 44 -37 65 19l165 440c0 36 -34 50 -68 50h-48v30c128 -5 168 -6 294 0v-33h-48c-46 0 -52 -64 -52 -143c106 0 184 -89 184 -224c0 -103 -83 -288 -179 -288c-92 0 -114 195 -9 198c35 0 50 -16 76 -54c31 119 22 320 -106 318c-42 0 -40 -12 -66 -52 l-156 -411c-20 51 -65 115 -98 157l20 20zM334 111c0 -30 38 -68 58 -68c24 0 38 29 38 61c0 33 -24 56 -50 61c-28 -1 -46 -26 -46 -54'], + 0x13F2: [728,3,590,23,567,'106 434v42c-8 75 90 199 100 210c35 33 196 57 269 31v-77h-12c-105 38 -273 29 -273 -108v-76c85 39 234 14 285 -43v-311c0 -63 12 -72 46 -72h46v-33c-163 4 -127 5 -237 3c-2 2 -1 28 0 30h33c34 2 37 9 37 72v211c0 66 -4 73 -44 73h-166v-284c0 -63 3 -72 37 -72 h28v-30c-124 1 -78 2 -232 -3v30h46c34 2 37 12 37 75v283h-69v18'], + 0x13F3: [759,9,840,22,814,'373 28c77 0 143 53 143 86v122c-30 0 -52 0 -100 1v30c179 -5 120 -1 306 0v-30c-39 -1 -32 0 -68 0v-203c-38 62 0 0 -68 108c1 -14 2 -78 0 -108c-273 -121 -564 18 -564 326s314 448 568 305l43 89l44 -80l48 80l27 -68l62 73c0 -19 -55 -168 -60 -173 c-18 29 -20 55 -30 57l-45 -75c-6 -1 -29 78 -36 73v1c-4 0 -18 -32 -39 -69c-10 67 -70 55 -78 61c-215 56 -391 -48 -397 -293c-5 -198 46 -313 244 -313'], + 0x13F4: [692,3,610,26,576,'298 -3c-110 0 -112 5 -233 0v23l26 10c14 5 22 28 22 65v474c0 79 -4 86 -51 90h-36v33c267 -4 45 -4 312 0h25c116 0 179 -48 179 -136c0 -78 -55 -142 -173 -166c145 -11 207 -66 207 -162c0 -94 -68 -231 -278 -231zM208 47c141 -32 265 28 265 161 c0 130 -110 169 -265 154v-315zM208 401c133 -15 241 25 235 132c17 111 -124 135 -235 111v-243'], + 0x2100: [436,72,719,29,691,'682 127h-17l-3 36c-11 16 -40 28 -66 28c-54 0 -84 -36 -84 -101c0 -79 43 -131 110 -131c22 0 41 6 63 18l6 -9l-12 -20c-6 -8 -52 -20 -83 -20c-81 0 -137 58 -137 138c0 53 22 95 64 121c36 23 69 35 98 35c25 0 46 -7 70 -22c-5 -21 -9 -45 -9 -73zM518 436 l-223 -508h-36l223 508h36zM205 204l-75 -52c-5 -2 -14 -4 -25 -4c-48 0 -76 26 -76 74c0 52 34 79 116 95l60 11c-3 55 -26 76 -82 76c-28 0 -34 -4 -47 -32l-7 -18l-16 4v39l32 19c22 14 46 20 73 20c69 0 95 -32 95 -119v-109c0 -30 2 -35 16 -36h23v-20 c-26 3 -41 3 -44 3c-7 0 -7 0 -47 -3zM205 308c-60 -9 -124 -17 -124 -79c0 -25 20 -48 44 -48s62 24 80 48v79'], + 0x2101: [436,72,719,34,686,'476 26h18v-25c0 -30 31 -50 75 -50c42 0 72 23 72 55c0 50 -45 33 -127 67c-27 12 -41 33 -41 61c0 54 44 88 113 88c24 0 46 -5 78 -16c-2 -18 -2 -32 -3 -67h-17v13c0 29 -30 50 -71 50c-36 0 -58 -17 -58 -47c0 -65 107 -35 154 -82c12 -12 17 -25 17 -44 c0 -59 -55 -101 -135 -101c-27 0 -50 5 -81 14c5 24 6 42 6 84zM517 436l-224 -508h-36l224 508h36zM209 204l-74 -52c-5 -2 -14 -4 -25 -4c-48 0 -76 26 -76 74c0 52 34 79 115 95l60 11c-2 55 -25 76 -81 76c-28 0 -34 -4 -47 -32l-7 -18l-16 4v39l31 19 c23 14 47 20 74 20c69 0 94 -32 94 -119v-109c0 -30 3 -35 17 -36h23v-20c-26 3 -41 3 -44 3c-8 0 -8 0 -47 -3zM209 308c-58 -9 -123 -16 -123 -79c0 -25 20 -48 44 -48s61 24 79 48v79'], + 0x2103: [709,20,899,27,873,'223 610c0 -56 -43 -98 -98 -98s-98 42 -98 98c0 54 43 97 98 97s98 -43 98 -97zM198 610c0 40 -33 72 -73 72c-41 0 -73 -32 -73 -72c0 -42 32 -74 73 -74c40 0 73 32 73 74zM225 342c0 240 196 367 411 367c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72 c0 39 -101 79 -199 79c-172 0 -286 -122 -286 -306c0 -197 130 -327 325 -327c76 0 145 20 207 60l9 -10l-28 -50c-69 -36 -144 -54 -227 -54c-235 0 -393 146 -393 362'], + 0x2105: [436,72,719,24,696,'554 223c83 0 142 -59 142 -139c0 -90 -66 -155 -158 -155c-78 0 -131 58 -131 143c0 89 60 151 147 151zM544 203c-53 0 -82 -39 -82 -111c0 -85 40 -142 98 -142c50 0 80 43 80 111c0 82 -41 142 -96 142zM475 436l-223 -508h-36l223 508h36zM24 280 c0 121 124 156 162 156c25 0 46 -8 70 -22c-5 -22 -9 -46 -9 -73h-17l-3 36c-11 15 -40 27 -66 27c-54 0 -84 -36 -84 -100c0 -80 43 -131 110 -131c22 0 41 6 63 18l6 -10l-12 -19c-6 -8 -52 -20 -83 -20c-81 0 -137 57 -137 138'], + 0x2106: [436,72,729,18,712,'534 -35c45 0 81 41 81 69v98c0 40 -2 43 -26 43h-23v17c32 4 64 12 94 25l6 -2v-219c0 -38 1 -42 21 -43l25 -1v-18c-99 2 -41 1 -99 0c1 28 2 37 2 55l-41 -37c-15 -16 -39 -24 -67 -24c-83 0 -84 57 -84 103v101c0 40 -2 43 -26 43h-23v17c32 4 64 12 94 25l6 -2v-178 c0 -46 10 -72 60 -72zM444 436l-223 -508h-36l223 508h36zM18 280c0 125 127 156 162 156c25 0 45 -8 69 -22c-5 -22 -8 -46 -8 -73h-17l-4 36c-10 15 -39 27 -66 27c-54 0 -84 -36 -84 -100c0 -80 44 -131 111 -131c21 0 41 6 62 18l6 -10l-12 -19c-6 -8 -51 -20 -83 -20 c-80 0 -136 57 -136 138'], + 0x2107: [719,5,549,23,527,'371 384c-153 0 -245 -118 -245 -188c0 -91 57 -162 151 -162c115 0 175 14 175 129c0 20 -6 42 -22 55c48 0 97 -36 97 -88c0 -184 -169 -127 -309 -127c-103 0 -195 25 -195 153c0 139 70 211 194 235c-58 19 -172 78 -172 157c0 135 127 171 237 171 c61 0 132 0 185 -31c20 -12 60 -41 60 -67c0 -21 -89 -78 -110 -78c-2 0 -6 1 -8 1c12 7 20 21 20 36c0 71 -79 107 -145 107c-76 0 -128 -59 -128 -133c0 -90 66 -133 150 -133l71 -15'], + 0x2109: [707,3,755,22,734,'218 610c0 -56 -43 -98 -98 -98s-98 42 -98 98c0 54 43 97 98 97s98 -43 98 -97zM193 610c0 40 -33 72 -73 72c-41 0 -73 -32 -73 -72c0 -42 32 -74 73 -74c40 0 73 32 73 74zM414 327v-207c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3 c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c147 -3 147 -3 176 -3c25 0 60 0 109 2l107 1c43 0 73 -1 122 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34c-31 8 -87 14 -135 14c-59 0 -77 -1 -107 -8v-267c34 -2 68 -3 110 -3c66 0 94 3 112 11 c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3'], + 0x2116: [692,20,1108,17,1076,'1076 287c0 -92 -58 -169 -155 -169c-86 0 -135 71 -135 152c0 87 57 169 150 169c87 0 140 -69 140 -152zM1074 0h-287v50h287v-50zM813 662l-44 -3c-42 -4 -51 -6 -51 -90v-552c0 -12 2 -25 3 -37l-90 16l-471 585h-2v-461c0 -82 8 -86 51 -90l44 -3v-30 c-44 1 -80 3 -120 3c-36 0 -76 -2 -116 -3v30l44 3c42 4 51 6 51 90v449c0 82 -8 86 -51 90l-44 3v30c44 -1 84 -3 120 -3c18 0 36 2 54 3l478 -590h3v467c0 82 -8 86 -51 90l-44 3v30c40 -1 80 -3 116 -3c40 0 76 2 120 3v-30zM1005 284c0 48 -6 128 -71 128 c-68 0 -79 -94 -79 -145c0 -48 8 -125 72 -125c71 0 78 90 78 142'], + 0x2117: [705,164,906,18,889,'889 271c0 -239 -197 -435 -436 -435s-435 196 -435 435c0 238 196 434 435 434s436 -196 436 -434zM841 271c0 212 -177 386 -388 386c-212 0 -387 -175 -387 -386c0 -212 175 -387 387 -387c211 0 388 174 388 387zM676 385c0 -88 -89 -137 -168 -137 c-15 0 -29 2 -44 4l-5 20l4 3c67 0 125 13 125 94c0 64 -39 93 -100 93c-23 0 -45 -3 -67 -8v-237c0 -31 -8 -136 20 -147c9 -4 35 -5 44 -6l4 -3v-21l-4 -4c-35 3 -70 4 -105 4s-70 -1 -105 -4l-4 4v21l4 3c9 1 36 3 44 7c27 12 20 99 20 127v130c0 29 8 121 -20 134 c-9 3 -35 5 -44 6l-4 4v20l4 4c82 -7 164 -1 247 -1c74 0 154 -18 154 -110'], + 0x211E: [692,15,667,22,669,'258 372c10 -1 20 -1 29 -1c123 0 189 65 189 145c0 108 -80 138 -158 138c-45 0 -74 -5 -102 -12v-522c0 -82 8 -88 51 -90l48 -3v-30c-52 2 -99 3 -145 3c-49 0 -96 -1 -148 -3v30l48 3c43 2 51 10 51 90v449c0 82 -8 86 -51 90l-41 3v30c53 -1 111 -3 170 -3 s126 2 184 3c153 0 193 -79 193 -150c0 -109 -98 -174 -195 -193l93 -121l26 79h46l-40 -121l102 -133c15 -20 37 -24 61 -26v-30c-26 1 -49 3 -72 3s-45 -2 -68 -3l-59 78l-30 -90h-47l44 134c-16 22 -168 220 -185 241'], + 0x2120: [668,-273,834,23,823,'823 285l-4 -3c-28 2 -57 3 -86 3c-28 0 -57 -1 -86 -3l-3 3v17l3 3c8 0 30 2 37 5c14 6 17 38 17 65c0 12 -1 207 -1 214h-5l-148 -304h-13l-143 304h-7c14 -4 1 -238 7 -246c0 -27 5 -34 53 -38l3 -3v-17l-3 -3c-24 2 -48 3 -71 3s-46 -2 -68 -3l-3 3v17l3 3 c51 4 57 10 57 41c0 5 1 233 1 238c0 45 -2 47 -58 52l-3 3v17l3 3c21 -1 43 -2 63 -2c22 0 42 1 64 2l127 -278h5l136 278c20 -1 40 -2 60 -2c19 0 39 1 59 2l4 -3v-17l-4 -3c-50 -7 -52 5 -52 -108c0 -8 -1 -133 -1 -149c0 -29 3 -63 17 -69c8 -3 28 -5 36 -5l4 -3v-17z M248 564c-8 8 13 77 -71 77c-45 0 -87 -22 -87 -72c0 -105 208 -12 208 -162c0 -91 -88 -134 -168 -134c-37 0 -73 7 -107 21c4 28 5 57 5 84l2 3h18l3 -3c0 -58 23 -79 82 -79c52 0 100 23 100 81c0 114 -202 17 -202 163c0 84 72 125 147 125c34 0 69 -8 98 -26 c-5 -25 -9 -50 -9 -76l-3 -2h-16'], + 0x2121: [692,3,1099,33,1067,'952 2c-56 0 -127 2 -141 2c-16 0 -21 0 -61 -2v15l19 10c10 5 15 19 15 38v303c0 51 -3 56 -31 58l-29 2v19c44 -1 59 -2 89 -2c32 0 45 0 89 2v-19l-29 -2c-28 -2 -31 -7 -31 -58v-334c16 -4 30 -5 52 -5c72 0 125 4 133 11c4 4 8 16 12 35c0 1 1 5 1 7l8 32h19 c-6 -62 -8 -82 -13 -110c-82 -2 -82 -2 -102 -2zM685 4c-82 -2 -82 -2 -101 -2c-42 0 -113 2 -141 2c-17 0 -35 -1 -75 -2v19l22 2c29 3 31 7 31 58v287c0 51 -3 56 -31 58l-29 2v19c60 -1 87 -2 108 -2c28 0 85 2 141 2c27 0 46 -1 75 -2c-6 -28 -10 -59 -10 -97h-21v41 c0 15 -1 18 -16 22c-19 6 -53 9 -88 9c-42 0 -52 -1 -71 -5v-171c21 -1 41 -2 67 -2c40 0 57 2 68 7c2 5 4 11 5 17l3 33h18c-2 -64 -2 -64 -2 -74c0 -12 0 -12 2 -71h-18l-3 38l-5 16c-11 5 -28 7 -73 7c-27 0 -45 0 -62 -2v-179c18 -4 28 -5 60 -5c55 0 99 3 112 8 c17 6 23 71 23 72h21c-6 -33 -10 -68 -10 -105zM252 689c27 0 14 0 132 3c-3 -57 -4 -96 -4 -161h-19l-3 79c0 24 -7 33 -24 33h-95c-2 -33 -2 -55 -2 -100v-423c0 -79 3 -87 31 -90l29 -3v-30c-35 2 -57 3 -89 3s-53 -1 -89 -3v30l29 3c28 3 31 11 31 90v423 c0 43 0 66 -2 100h-94c-17 0 -24 -9 -25 -33l-2 -79h-19c0 65 -1 104 -4 161l41 -1c43 -1 76 -2 82 -2h96'], + 0x2122: [659,-282,929,15,917,'917 285l-3 -3c-29 2 -58 3 -87 3c-28 0 -57 -1 -86 -3l-3 3v17l3 3c9 0 30 2 37 5c21 9 16 74 16 96v183h-5l-148 -304h-13l-143 304h-4l4 -208c1 -59 -12 -71 53 -76l3 -3v-17l-3 -3c-24 2 -48 3 -71 3s-45 -2 -68 -3l-3 3v17l3 3c66 5 56 14 56 76s2 125 2 188 c0 60 3 62 -58 67l-3 3v17l3 3c43 -3 84 -3 127 0l127 -278h5l136 278c40 -3 79 -3 120 0l3 -3v-17l-3 -3c-53 -6 -53 2 -53 -108v-111c0 -22 -6 -97 16 -107c8 -3 28 -5 37 -5l3 -3v-17zM371 656c-2 -30 -3 -59 -3 -90l-2 -2h-16l-3 2c-4 35 3 64 -40 64h-81l-2 -212 c0 -24 -6 -98 16 -108c8 -3 29 -5 37 -5l4 -3v-17l-4 -3c-27 2 -56 3 -84 3c-29 0 -57 -1 -85 -3l-3 3v17l3 3c9 0 30 2 37 5c22 9 16 85 16 108l-2 212h-81c-42 0 -36 -29 -40 -64l-3 -2h-15l-3 2c0 31 -1 60 -2 90l2 3c59 -3 118 -4 176 -4s116 1 175 4'], + 0x2126: [704,6,824,34,791,'791 145c-7 -50 -14 -101 -17 -151c-103 4 -208 4 -311 6v68c159 21 206 165 206 306c0 170 -56 303 -250 303c-190 0 -263 -125 -263 -300c0 -142 45 -288 206 -309v-68c-103 -3 -207 -2 -310 -6c-5 50 -11 101 -18 151l4 3h15l3 -3c13 -52 13 -70 73 -70h129v7 c-134 56 -207 172 -207 316c0 223 167 306 368 306c199 0 356 -90 356 -306c0 -145 -74 -260 -208 -316v-7h129c60 0 60 17 73 70l4 3h14'], + 0x2129: [473,16,310,94,304,'94 374l1 8c30 30 95 91 144 91c36 0 59 -23 64 -59c8 -57 -13 -250 -6 -406c-26 -5 -53 -12 -76 -24l-11 13c18 81 37 295 24 375c-3 22 -17 44 -42 44c-30 0 -64 -34 -82 -52l-10 2'], + 0x212A: [692,3,725,22,719,'216 325v-205c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-214l278 271c16 16 29 33 29 39v27 c58 -2 75 -3 89 -3c17 0 17 0 80 3v-30l-42 -2c-26 -1 -51 -14 -78 -38l-266 -240l330 -312c31 -29 47 -40 62 -41l21 -2v-30c-50 3 -52 3 -65 3c-10 0 -10 0 -80 -3l-348 335'], + 0x212B: [943,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30 l37 3c22 2 42 20 54 49l231 526l39 95h32zM240 269h253l-126 298zM392 943c53 0 98 -45 98 -100c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99zM391 907c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64s-25 64 -61 64'], + 0x212E: [535,17,599,44,561,'561 259h-404v-181c39 -39 90 -59 145 -59c87 0 151 47 193 120l35 -21c-57 -83 -122 -135 -228 -135c-160 0 -258 122 -258 276s99 276 258 276c166 0 253 -121 259 -276zM448 295v145c-40 40 -91 60 -147 60c-55 0 -105 -21 -144 -60v-145h291'], + 0x2139: [706,3,332,34,298,'217 471l10 -6v-365c0 -54 5 -62 36 -64l35 -2v-37c-67 2 -115 3 -135 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70l-45 3v36c7 1 12 2 15 2c42 5 66 9 98 19zM163 706c41 0 74 -34 74 -75s-34 -75 -75 -75c-42 0 -75 34 -75 76s33 74 76 74'], + 0x213A: [638,104,919,18,902,'746 274c12 106 86 190 86 304c0 10 -2 20 -6 60h20l56 -84c-8 -40 -14 -72 -26 -106l-46 -148c-10 -32 -14 -60 -14 -78c0 -10 2 -16 8 -28l32 -60l-32 2c-44 56 -66 90 -72 110l-6 16v-12c0 -214 -144 -354 -362 -354s-366 152 -366 376s130 366 338 366 c144 0 272 -74 342 -196c30 -52 40 -88 48 -168zM352 2c127 0 352 57 352 284c0 156 -112 244 -312 244c-210 0 -332 -100 -332 -272c0 -164 104 -256 292 -256'], + 0x213B: [692,3,1099,28,1072,'1072 17v-19c-25 1 -38 2 -41 2c-7 0 -7 0 -43 -2l-106 196c-14 -22 -20 -31 -26 -41l-91 -155c-25 2 -25 2 -29 2c-5 0 -5 0 -30 -2v19l15 2c21 3 37 36 37 36l110 163l-74 137c-19 35 -40 56 -54 57l-26 2l-1 17l82 17c11 -6 19 -17 33 -42l74 -138l106 173h59v-19 l-24 -2c-9 -1 -15 -9 -39 -44l-89 -133l102 -179c20 -35 27 -43 38 -45zM477 448l140 -364c20 -51 26 -62 41 -65l20 -2v-19c-63 2 -63 2 -74 2c-9 0 -9 0 -80 -2v19l27 2c15 1 24 6 24 13c0 6 -2 14 -12 41l-27 74h-166l-16 -43c-12 -32 -20 -60 -20 -68 c0 -10 7 -15 27 -17l22 -2v-19c-63 2 -87 2 -94 2c-9 0 19 0 -34 -2v19l29 2c13 1 13 13 20 32l132 336l22 61h19zM380 172h146l-73 191zM140 327v-207c0 -79 3 -87 29 -90l28 -3v-30c-34 2 -55 3 -85 3s-50 -1 -84 -3v30l28 3c26 3 29 11 29 90v449c0 79 -3 87 -29 90 l-28 3v30c85 -3 85 -3 102 -3c14 0 34 0 63 2l67 1c25 0 65 -1 93 -3c-6 -44 -30 -92 -30 -152h-20v65c0 23 -4 28 -17 34c-18 8 -56 14 -84 14c-34 0 -45 -1 -62 -8v-267c20 -2 39 -3 64 -3c38 0 60 3 70 11c2 8 4 17 5 26l2 52h18c-2 -100 -2 -100 -2 -116 c0 -18 0 -18 2 -111h-18l-2 59l-5 25c-10 9 -32 12 -74 12c-26 0 -44 -1 -60 -3'], + 0x2142: [694,0,540,68,473,'384 0v628c-89 0 -227 1 -316 0v66h405v-694h-89'], + 0x2143: [694,0,540,68,473,'384 694v-630c-89 0 -227 1 -316 2v-66h405v694h-89'], + 0x2144: [694,0,665,3,663,'663 0l-287 417v277h-86v-278l-287 -416h105l234 347l233 -347h88'], + 0x214B: [689,21,777,43,753,'372 70c0 90 75 151 144 202c-56 91 -115 165 -204 256c-36 -48 -48 -77 -48 -113c0 -41 12 -76 27 -80c12 -3 28 -5 87 -10l-33 -45c-50 2 -71 2 -97 2l-194 -7c9 29 12 47 12 72c39 -6 69 -9 140 -12c-4 15 -5 24 -5 39c0 63 22 111 81 177c-85 49 -123 63 -172 63 c-17 0 -31 -5 -61 -19l-6 25l87 63c6 4 16 6 34 6c48 0 123 -32 181 -77c71 55 129 77 202 77c119 0 206 -80 206 -192c0 -129 -115 -192 -155 -215c21 -53 30 -92 30 -133s-1 -82 -16 -95c-15 -31 -39 -53 -64 -62c-37 -17 -58 -13 -78 -12c-62 0 -98 33 -98 90zM583 317 c61 48 83 85 83 143c0 93 -77 173 -166 173c-40 0 -77 -14 -124 -46c113 -126 162 -189 207 -270zM532 238c-5 -4 -5 -4 -11 -8c-50 -39 -82 -89 -82 -130c0 -38 25 -67 58 -67c40 0 61 28 61 79c0 35 -7 70 -26 126'], + 0x214D: [663,56,777,39,739,'646 663l-317 -719h-51l317 719h51zM697 44c0 109 -198 21 -198 152c0 66 54 113 128 113c28 0 50 -5 90 -21c-4 -27 -6 -44 -6 -71h-16l-4 29c0 30 -42 42 -74 42c-44 0 -76 -30 -76 -72c0 -106 198 -20 198 -147c0 -72 -64 -125 -150 -125c-30 0 -58 7 -86 19 c2 23 4 34 4 57c0 3 0 11 -2 20h16l4 -34c4 -20 42 -40 82 -40c52 0 90 33 90 78zM235 663l122 -284c16 -40 22 -49 36 -51l16 -1v-15c-54 1 -54 1 -64 1c-8 0 -8 0 -68 -1v15l22 1c14 1 22 5 22 10s-2 11 -12 32l-22 58h-144l-14 -34c-10 -25 -18 -46 -18 -53 c0 -8 6 -11 24 -13l18 -1v-15c-54 1 -54 1 -60 1c-8 0 -8 0 -54 -1v15l18 1c12 1 22 10 28 25l134 310h16zM151 448h126l-62 149'], + 0x214E: [456,4,418,33,390,'33 0c7 37 10 75 10 113l3 2h23l2 -2c11 -96 4 -82 103 -82h62c5 60 3 121 4 182l-45 -1c-65 -1 -79 9 -86 -61l-3 -3h-21l-3 3c1 50 1 100 1 150l2 3h21l3 -3c8 -81 42 -59 131 -61v27c0 31 8 143 -21 155c-9 3 -34 5 -44 6l-3 3v21l3 4c36 -3 71 -4 106 -4s70 1 105 4 l4 -4v-21l-4 -3c-65 -7 -65 0 -65 -137v-124c0 -29 -7 -124 21 -137c9 -4 34 -5 44 -6l4 -4v-20l-4 -4c-61 3 -122 4 -182 4c-56 0 -113 -1 -169 -4'], + 0x10143: [700,0,671,55,630,'55 0v700h575v-252h-95v157h-385v-605h-95'], + 0x10144: [700,0,671,55,630,'239 328c24 45 99 219 116 259h9l110 -263c-37 1 -76 1 -113 1c-41 0 -80 0 -120 -1zM430 340c-25 66 -52 132 -80 197h-3c-28 -65 -54 -131 -79 -197h162zM55 0v700h575v-252h-95v157h-385v-605h-95'], + 0x10145: [700,0,671,55,630,'429 369v84c-10 1 -16 1 -31 1h-88c-15 0 -21 0 -31 -1v-84c0 -29 2 -32 19 -33l18 -2v-11c-22 1 -36 1 -55 1s-33 0 -55 -1v11l18 2c18 1 20 4 20 33v169c0 29 -2 32 -20 33l-18 2v11c27 -1 36 -1 55 -1s28 0 55 1v-11l-18 -2c-17 -1 -19 -4 -19 -33v-67 c7 0 16 -1 31 -1h88c15 0 23 1 31 1v67c0 29 -2 32 -19 33l-18 2v11c27 -1 36 -1 54 -1c20 0 28 0 56 1v-11l-18 -2c-18 -1 -20 -4 -20 -33v-169c0 -29 2 -32 20 -33l18 -2v-11c-22 1 -36 1 -56 1c-19 0 -32 0 -54 -1v11l18 2c17 1 19 4 19 33zM55 0v700h575v-252h-95v157 h-385v-605h-95'], + 0x10146: [700,0,671,55,630,'481 331v-11c-16 1 -25 1 -27 1c-4 0 -4 0 -27 -1l-70 115c-9 -14 -12 -19 -17 -24l-58 -91c-17 1 -17 1 -20 1s-3 0 -19 -1v11l10 1c12 2 23 20 24 21l71 96l-48 79c-12 21 -26 33 -35 34l-16 2l-1 9l53 10c7 -4 12 -10 21 -24l48 -81l69 101h38v-11l-15 -1 c-5 -1 -10 -6 -26 -26l-57 -78l66 -105c13 -20 18 -25 24 -26zM55 0v700h575v-252h-95v157h-385v-605h-95'], + 0x10147: [700,0,671,55,630,'442 368v172c-24 -44 -83 -171 -103 -222h-8l-104 222v-172c0 -29 1 -32 18 -34l17 -1v-11c-39 1 -39 1 -45 1s-6 0 -44 -1v11l17 1c17 2 19 5 19 34v169c0 29 -2 32 -19 33l-17 1v12c30 -1 30 -1 36 -1s6 0 36 1l98 -209l99 209c30 -1 30 -1 35 -1c7 0 7 0 36 1v-12 l-16 -1c-18 -1 -20 -4 -20 -33v-169c0 -29 2 -32 20 -34l18 -1v-11c-22 1 -36 1 -57 1c-19 0 -31 0 -48 -1v11l13 1c18 2 19 5 19 34zM55 0v700h575v-252h-95v157h-385v-605h-95'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Alphabets/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Arrows/Regular/Main.js new file mode 100644 index 0000000..2f5a076 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Arrows/Regular/Main.js @@ -0,0 +1,217 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'AsanaMathJax_Arrows', + id: 'ASANAMATHARROWS', + 0x20: [0,0,249,0,0,''], + 0x219C: [486,-55,1061,62,1062,'62 272l206 -217l33 34l-125 154h23c106 0 187 -120 313 -120c172 0 229 238 367 238c79 0 137 -79 183 -134v90c-48 54 -107 103 -182 103c-172 0 -228 -238 -367 -238c-107 0 -188 118 -313 118h-24l125 152l-33 34'], + 0x219D: [486,-55,1061,-3,997,'997 272l-206 -217l-33 34l125 154h-23c-106 0 -187 -120 -313 -120c-172 0 -229 238 -367 238c-79 0 -137 -79 -183 -134v90c48 54 107 103 182 103c172 0 228 -238 367 -238c107 0 188 118 313 118h24l-125 152l33 34'], + 0x219F: [712,172,524,47,478,'233 -172v560l-152 -126l-34 34l186 178v124l-152 -124l-34 32l214 206l217 -206l-34 -32l-152 124v-126l186 -176l-34 -34l-152 126v-560h-59'], + 0x21A1: [712,172,524,47,478,'233 712v-560l-152 126l-34 -34l186 -178v-124l-152 124l-34 -32l214 -206l217 206l-34 32l-152 -124v126l186 176l-34 34l-152 -126v560h-59'], + 0x21A4: [486,-55,1013,36,978,'920 300h-770l124 152l-32 34l-206 -217l206 -214l32 34l-124 152h770v-186h58v431h-58v-186'], + 0x21A5: [742,200,524,47,478,'292 -142v770l152 -124l34 32l-217 206l-214 -206l34 -32l152 124v-770h-186v-58h431v58h-186'], + 0x21A7: [742,200,524,47,478,'233 684v-770l-152 124l-34 -32l217 -206l214 206l-34 32l-152 -124v770h186v58h-431v-58h186'], + 0x21A8: [712,200,524,47,480,'294 -142h186v-58h-432v58h186l-187 176l33 32l153 -124v656l-152 -124l-34 32l214 206l217 -206l-34 -32l-152 124v-656l151 124l35 -32'], + 0x21AF: [476,222,524,20,504,'376 290l-42 -398l116 118l54 -32l-220 -200l-168 206l14 32l144 -124l34 317l-288 -121l40 388l56 -1l-30 -301'], + 0x21B2: [753,0,506,65,442,'442 753h-59v-507h-204l125 151l-32 35l-207 -215l207 -217l32 35l-125 152h263v566'], + 0x21B3: [753,0,506,65,442,'442 217l-206 215l-33 -35l125 -151h-204v507h-59v-566h263l-125 -152l33 -35'], + 0x21B4: [565,-140,714,24,691,'474 140l-215 206l35 33l151 -125v252h-421v59h480v-311l152 125l35 -33'], + 0x21B5: [686,-19,524,50,475,'50 236l206 215l33 -35l-125 -151h252v421h59v-480h-311l125 -152l-33 -35'], + 0x21B8: [785,172,1013,64,950,'949 -136l-35 -36l-785 785l-16 -201h-48v301h301v-48l-201 -17zM949 785h-885v-59h886'], + 0x21B9: [688,-20,899,51,849,'791 186v-166h58v385h-58v-167l-176 168l-32 -30l124 -136h-656v-53h656l-124 -134l32 -31zM109 468v-166h-58v385h58v-165l176 166l32 -29l-124 -137h656v-51h-656l124 -136l-32 -31'], + 0x21C5: [712,172,883,48,836,'262 712l216 -206l-34 -32l-152 126v-772h-58v772l-152 -126l-34 32zM650 712v-770l152 126l34 -32l-214 -208l-216 208l34 32l152 -126v770h58'], + 0x21D6: [724,246,1101,65,1037,'1037 -54l-42 -41l-758 758l-99 -9l-11 -100l758 -758l-41 -42l-723 723l-13 -126l-43 -2l9 368l366 7v-42l-126 -13'], + 0x21D7: [724,246,1101,65,1037,'1037 349l-43 2l-13 126l-723 -723l-41 42l757 758l-10 100l-99 9l-758 -758l-42 41l723 723l-126 13l-1 42l366 -7'], + 0x21D8: [724,246,1101,65,1037,'1037 129l-10 -368l-366 -7l1 43l126 12l-723 723l42 42l758 -759l99 9l10 101l-757 758l41 41l723 -722l13 125'], + 0x21D9: [724,246,1101,65,1037,'1037 532l-723 -723l126 -12v-43l-366 7l-9 368l43 -2l13 -125l723 722l41 -41l-758 -758l11 -101l99 -9l758 759'], + 0x21DC: [485,-54,1149,34,1116,'34 271l207 -217l32 34l-125 152h97c65 0 126 -110 187 -110c55 0 120 163 166 200c47 -33 116 -200 163 -200c55 0 134 207 173 207c49 0 94 -97 182 -97v59c-70 1 -127 111 -188 111c-56 0 -116 -166 -166 -202c-48 34 -115 202 -163 202c-54 0 -136 -209 -174 -209 c-43 0 -98 98 -173 98h-104l125 152l-32 34'], + 0x21DE: [712,172,524,47,478,'292 158h175v-52h-175v-278h-59v278h-163v52h163v66h-163v52h163v324l-152 -126l-34 32l214 206l217 -206l-34 -32l-152 126v-324h175v-52h-175v-66'], + 0x21DF: [712,172,524,47,478,'292 382h175v52h-175v278h-59v-278h-163v-52h163v-66h-163v-52h163v-324l-152 126l-34 -32l214 -206l217 206l-34 32l-152 -126v324h175v52h-175v66'], + 0x21E1: [737,196,524,47,478,'232 284l1 120h59v-120h-60zM233 -196v120h59v-120h-59zM233 44v120h59v-120h-59zM233 504v120l-152 -125l-34 32l217 206l214 -206l-34 -32l-152 125v-120h-59'], + 0x21E3: [737,196,524,47,478,'232 257l1 -120h59v120h-60zM233 737v-120h59v120h-59zM233 497v-120h59v120h-59zM233 37v-120l-152 125l-34 -32l217 -206l214 206l-34 32l-152 -125v120h-59'], + 0x21E4: [499,-31,899,51,849,'109 232v-201h-58v466h58v-199l176 201l32 -36l-124 -165h656v-62h-656l124 -165l-32 -37'], + 0x21E5: [500,-32,899,51,849,'791 233v-201h58v466h-58v-199l-176 201l-32 -36l124 -165h-656v-62h656l-124 -165l32 -37'], + 0x21E6: [554,12,1013,64,950,'924 162v219l-591 -1l-1 124l-232 -230l232 -240l1 128h591zM950 136h-602v-148l-284 284l284 282l-1 -146h603v-272'], + 0x21E7: [713,172,678,56,622,'230 -147h219v591l123 1l-230 233l-240 -232h128v-593zM204 -172v601h-148l284 284l282 -284h-146v-601h-272'], + 0x21E8: [554,12,1013,64,950,'90 381v-219h592v-128l232 240l-232 230v-124zM666 136h-602v272h602v146l284 -282l-284 -284v148'], + 0x21E9: [713,172,678,56,622,'449 688h-219v-592l-128 -1l240 -232l230 233h-123v592zM204 113v600h272v-601h146l-282 -284l-284 284'], + 0x21EA: [713,172,678,56,622,'204 430l-148 -1l284 284l282 -284l-146 2l-2 -391h-270v390zM230 73l220 -1l-1 372l123 1l-230 233l-240 -232l128 -2v-371zM475 -8l1 -164h-272v164h271zM450 -30l-219 -1l-2 -116h222'], + 0x21EB: [713,199,678,56,622,'162 -187h362v24h-75v608h123l-230 233l-240 -232h128l-1 -609h-67v-24zM126 -199v52h78v577l-148 -1l284 284l282 -284l-146 1v-577h78v-52h-428'], + 0x21EC: [713,199,678,56,622,'449 536h-213v-47h213v47zM162 -187h362v24h-74v608h122l-230 233l-240 -232h128v-609h-68v-24zM126 -199v52h78v577l-148 -1l284 284l282 -284l-146 1v-577h78v-52h-428'], + 0x21ED: [713,200,678,48,631,'306 -187v835h60v-835h159v24h-75v613h120l-234 228l-234 -228h120v-613h-68v-24h152zM118 -200v53h78v577l-148 -1l286 284l297 -284l-154 1v-577h78v-53h-437'], + 0x21EE: [856,172,678,56,622,'194 572h-138l284 284l282 -284h-140l140 -143l-146 2v-603h-272v602l-148 -1zM214 590l126 123l120 -123l112 -2l-230 233l-240 -232zM229 -147h222l-2 591l123 1l-230 233l-240 -232l128 -2'], + 0x21EF: [834,199,678,56,622,'482 572l85 1l-225 226l-240 -232l90 1l148 145zM503 550l119 -121l-146 1v-577h78v-52h-428v52h78v577l-148 -1l118 120h-118l284 285l282 -284h-119zM162 -187h362v24h-75v608h123l-230 233l-240 -232h128v-609h-68v-24'], + 0x21F0: [555,11,989,39,951,'51 449v-362h24v75h608v-123l233 230l-232 240v-128l-609 1v67h-24zM39 485h52v-78h577l-1 148l284 -284l-284 -282l1 146h-577v-78h-52v428'], + 0x21F1: [750,208,1019,25,988,'988 -172l-35 -36l-785 785l-16 -201h-38l1 289h290v-36l-201 -17zM25 -136v886l963 -1v-59l-901 -1v-825h-62'], + 0x21F2: [750,208,1019,25,988,'25 714l35 36l785 -785l16 201h38l-1 -289h-290v36l201 17zM988 -208v886h-62v-825l-901 -1v-59'], + 0x21F3: [713,172,678,56,622,'449 96l2 39l-2 309l123 1l-230 233l-240 -232l128 -2l-1 -309l1 -39l-128 -1l240 -232l230 233h-123zM622 112l-282 -284l-284 284l148 1v317l-148 -1l284 284l282 -284l-146 2v-319h146'], + 0x21F4: [504,-33,1089,27,1063,'245 292c0 131 104 212 235 212c128 1 229 -80 236 -212l233 -1l-125 152l33 35l206 -217l-206 -215l-33 35l125 151h-233c-5 -126 -106 -196 -233 -199c-131 1 -215 50 -239 200h-217v59h218zM484 462c-104 0 -197 -67 -206 -170h402c-9 103 -91 170 -196 170zM278 233 c9 -103 97 -165 201 -165c105 0 192 62 201 165h-402'], + 0x21F5: [712,172,883,48,836,'622 712l-216 -206l34 -32l152 126v-772h58v772l152 -126l34 32zM234 712v-770l-152 126l-34 -32l214 -208l216 208l-34 32l-152 -126v770h-58'], + 0x21F6: [845,305,1013,65,949,'836 600h-771v59h771l-125 152l32 34l206 -214l-171 -180l171 -181l-171 -180l171 -178l-206 -217l-32 35l125 151h-771v59h771l-125 147l125 152h-771v59h771l-125 142'], + 0x21F7: [487,-56,1013,65,949,'949 242h-422v-175h-55l1 175h-294l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h295v184h53v-184h422v-59'], + 0x21F8: [486,-55,1013,65,949,'65 241h422v-175h55v175h293l-125 -152l32 -34l207 214l-207 217l-32 -34l125 -152h-295v184h-53v-184h-422v-59'], + 0x21F9: [486,-55,1013,65,949,'949 272l-206 -217l-32 33l124 153h-292v-175h-53l1 175h-312l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h312v163h52v-163h292l-124 151l32 35'], + 0x21FA: [486,-55,913,72,842,'842 300h-232v163h-55v-163h-56v163h-63v-163h-250l125 152l-32 34l-207 -217l207 -214l32 34l-125 152h250v-175h61v175h56v-175h58v175h231v59'], + 0x21FB: [486,-55,913,72,842,'72 241h250v-175h61v175h56v-175h58v175h231l-124 -153l32 -33l206 217l-206 214l-32 -35l124 -151h-232v163h-55v-163h-56v163h-63v-163h-250v-59'], + 0x21FC: [488,-57,1013,65,949,'546 243h-56v-175h-61v175h-250l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h250v163h63v-163h56v163h55v-163h232l-124 151l32 35l206 -214l-206 -217l-32 33l124 153h-231v-175h-58v175'], + 0x21FD: [509,-38,1013,65,949,'249 406l-135 -134l135 -131v265zM949 243h-645v-205l-239 233l241 238l-2 -207h645v-59'], + 0x21FE: [509,-38,1013,65,949,'765 406l135 -134l-135 -131v265zM65 243h645v-205l239 233l-241 238v-207h-643v-59'], + 0x21FF: [509,-38,1013,53,961,'777 406v-265l135 131zM237 406l-135 -134l135 -131v265zM720 509l241 -238l-239 -233v205h-430v-205l-239 233l241 238v-207h427'], + 0x27F0: [713,173,1013,130,884,'602 548l95 -73v-646h59v610l98 -81l30 30l-377 325l-377 -326l31 -29l98 81v-610h59v642l82 71v-714l59 -1v757l43 44l45 -45l1 -755h55'], + 0x27F1: [713,173,1013,130,884,'602 -8l95 73v646h59v-610l98 81l30 -30l-377 -325l-377 326l31 29l98 -81v610h59v-642l82 -71v714l59 1v-757l43 -44l45 45l1 755h54v-720'], + 0x27F2: [759,0,987,73,929,'198 173l52 20c79 -76 166 -131 270 -143c311 -13 461 326 281 541c-117 138 -324 157 -463 41c-55 -46 -123 -152 -118 -225l105 42l-145 -208l-107 231l97 -59c40 348 458 463 670 211c135 -162 115 -401 -46 -537c-78 -64 -179 -93 -278 -87c-94 12 -194 45 -318 173'], + 0x27F3: [759,0,987,72,929,'804 173l-52 20c-79 -76 -166 -131 -270 -143c-311 -13 -461 326 -281 541c117 138 324 157 463 41c55 -46 123 -152 118 -225l-105 42l145 -208l107 231l-97 -59c-40 348 -458 463 -670 211c-135 -162 -115 -401 46 -537c78 -64 179 -93 278 -87c94 12 194 45 318 173'], + 0x27F4: [524,-17,1013,65,949,'676 241c-16 -125 -128 -224 -256 -224s-238 100 -254 224h-101v59h105c15 124 121 224 250 224s238 -99 253 -224h163l-125 152l32 34l206 -214l-206 -217l-32 34l125 152h-160zM628 240h-190v-184c99 8 174 88 190 184zM632 300c-13 98 -92 176 -194 185l-1 -185h195z M212 300h190v185c-100 -9 -176 -90 -190 -185zM211 241c13 -100 89 -177 190 -185l-1 184'], + 0x27FB: [486,-55,1513,36,1478,'1420 300h-1270l124 152l-32 34l-206 -217l206 -214l32 34l-124 152h1270v-186h58v431h-58v-186'], + 0x27FD: [537,-5,1513,65,1449,'1396 193h-1178l-63 76l64 78h1177v-154zM1396 42h53v428h-53v-64h-1128l80 98l-29 33l-254 -266l254 -266l29 31l-80 98h1128v-92'], + 0x27FE: [537,-5,1513,65,1449,'118 193h1178l63 76l-64 78h-1177v-154zM118 42h-53v428h53v-64h1128l-80 98l29 33l254 -266l-254 -266l-29 31l80 98h-1128v-92'], + 0x27FF: [486,-55,1513,38,1476,'38 131c54 0 134 207 172 207c50 0 96 -203 184 -203c90 0 134 203 182 203c40 0 118 -207 174 -207c46 0 116 167 162 200c46 -37 112 -200 166 -200c62 0 122 110 188 110h96l-124 -152l32 -34l206 217l-206 214l-32 -34l124 -152h-104c-74 0 -130 -98 -172 -98 c-38 0 -120 209 -174 209c-48 0 -116 -168 -164 -202c-50 36 -110 202 -166 202c-60 0 -120 -216 -190 -217c-64 17 -123 217 -188 217c-56 0 -114 -167 -166 -202v-78'], + 0x2900: [486,-55,1013,65,949,'309 241v-175h52v175h264l-125 -152l33 -34l176 186h127l-125 -152l32 -34l206 217l-206 214l-32 -34l125 -152h-124l-179 186l-33 -34l125 -152h-264v163h-52v-163h-244v-59h244'], + 0x2901: [486,-55,1013,65,949,'418 241v-175h-52v175h-53v-175h-52v175h-196v59h196v163h52v-163h53v163h52v-163h207l-125 152l33 34l179 -186h124l-125 152l32 34l206 -214l-206 -217l-32 34l125 152h-127l-176 -186l-33 34l125 152h-207'], + 0x2902: [537,-6,1013,65,949,'949 135h-380v-111h-53v111h-248l80 -98l-29 -31l-254 265l254 266l29 -32l-80 -98h248v98h53v-98h380v-59h-380v-154h380v-59zM516 348h-297l-64 -77l63 -77h298v154'], + 0x2903: [537,-6,1013,65,949,'65 135h380v-111h53v111h248l-80 -98l29 -31l254 265l-254 266l-29 -32l80 -98h-248v98h-53v-98h-380v-59h380v-154h-380v-59zM498 348h297l64 -77l-63 -77h-298v154'], + 0x2904: [537,-6,1013,59,954,'954 271l-254 -265l-29 31l80 98h-231v-129h-53v129h-205l80 -98l-29 -31l-254 265l254 266l29 -32l-80 -98h205v130h53v-130h231l-80 98l29 32zM865 271l-65 77h-280v-154h281zM467 348h-254l-64 -77l63 -77h255v154'], + 0x2905: [486,-55,1013,65,949,'123 241v-186h-58v431h58v-186h502l-125 152l33 34l179 -186h124l-125 152l32 34l206 -214l-206 -217l-32 34l125 152h-127l-176 -186l-33 34l125 152h-502'], + 0x2906: [537,-5,1013,65,949,'892 134h-624l80 -98l-29 -31l-254 266l254 266l29 -33l-80 -98h623v80h58v-431h-57v79zM892 347h-673l-64 -78l63 -76h674v154'], + 0x2907: [537,-5,1013,65,949,'122 134h624l-80 -98l29 -31l254 266l-254 266l-29 -33l80 -98h-623v80h-58v-431h57v79zM122 347h673l64 -78l-63 -76h-674v154'], + 0x2908: [712,172,559,65,495,'279 -172l216 206l-34 32l-152 -126v310h176v53l-176 -1v410h-58v-410h-164v-52h164v-310l-152 126l-34 -32'], + 0x2909: [712,172,559,65,495,'279 712l216 -206l-34 -32l-152 126v-310h176v-53l-176 1v-410h-58v410h-164v52h164v310l-152 -126l-34 32'], + 0x290A: [712,172,803,65,739,'194 -172v609l-98 -81l-31 29l338 327l336 -326l-30 -30l-98 81v-609h-59v658l-120 110v-768h-59v767l-120 -110v-657h-59'], + 0x290B: [713,171,803,65,739,'402 -171l-337 325l30 30l98 -81v610h59v-659l120 -110v769h59v-768l120 110v658h59v-610l98 81l31 -29'], + 0x290C: [486,-55,1013,65,949,'949 241h-303v59h303v-59zM475 241h-296l125 -152l-32 -34l-207 217l207 214l32 -34l-125 -152h296v-59'], + 0x290D: [486,-55,1013,65,949,'65 300h303v-59h-303v59zM539 300h296l-125 152l32 34l207 -217l-207 -214l-32 34l125 152h-296v59'], + 0x290E: [486,-55,1013,65,949,'641 241h-154v59h153zM949 241h-154v59h154v-59zM333 241h-154l125 -152l-32 -34l-207 217l207 214l32 -34l-125 -152h154v-59'], + 0x290F: [486,-55,1013,65,949,'373 241h154v59h-153zM65 241h154v59h-154v-59zM681 241h154l-125 -152l32 -34l207 217l-207 214l-32 -34l125 -152h-154v-59'], + 0x2910: [486,-55,1150,27,1124,'482 241l1 59h224v-59h-225zM755 300h45l-126 152l34 34l178 -186h124l-124 152l32 34l206 -214l-206 -217l-32 34l124 152h-126l-176 -186l-34 34l126 152h-46zM426 241h-186l-181 -186l-32 34l125 152v59l-125 152l32 34l180 -186h187v-59'], + 0x2911: [486,-55,1211,63,1147,'121 270c0 15 -13 29 -29 29s-29 -14 -29 -29s13 -29 29 -29c15 0 29 14 29 29zM220 270c0 15 -13 29 -29 29s-29 -14 -29 -29s13 -29 29 -29c15 0 29 14 29 29zM319 270c0 15 -13 29 -29 29s-29 -14 -29 -29s13 -29 29 -29c15 0 29 14 29 29zM418 270 c0 15 -13 29 -29 29s-29 -14 -29 -29s13 -29 29 -29c15 0 29 14 29 29zM536 270c0 15 -13 29 -29 29s-29 -14 -29 -29s13 -29 29 -29c15 0 29 14 29 29zM648 270c0 15 -14 29 -30 29c-15 0 -28 -14 -28 -29s14 -29 28 -29c16 0 30 14 30 29zM760 270c0 15 -14 29 -30 29 c-15 0 -28 -14 -28 -29s14 -29 28 -29c16 0 30 14 30 29zM879 270c0 15 -13 29 -29 29s-29 -14 -29 -29s13 -29 29 -29c15 0 29 14 29 29zM994 270c0 15 -14 29 -30 29c-15 0 -28 -14 -28 -29s14 -29 28 -29c16 0 30 14 30 29zM908 89l32 -34l207 217l-207 214l-32 -34 l152 -180'], + 0x2912: [667,131,559,87,473,'253 609h-166v58h385v-58h-165l166 -176l-29 -32l-137 124v-656h-51v656l-136 -124l-31 32'], + 0x2913: [667,131,559,87,473,'253 -73h-166v-58h385v58h-165l166 176l-29 32l-137 -124v656h-51v-656l-136 124l-31 -32'], + 0x2914: [489,-58,1150,28,1123,'239 244h328v-164h52v164h392l-126 -152l32 -34l206 214l-206 216l-32 -34l126 -152h-392v176h-52v-176h-328l-179 187l-32 -34l125 -152v-59l-125 -152l32 -34'], + 0x2915: [486,-55,1150,86,1066,'296 241h212v-175h62v175h56v-175h58v175h268l-124 -153l32 -33l206 217l-206 214l-32 -35l124 -151h-270v163h-54v-163h-56v163h-64v-163h-212l-178 186l-32 -34l124 -152v-59l-124 -152l32 -34'], + 0x2916: [486,-55,1150,28,1122,'238 300h560l-124 152l32 34l180 -186h124l-126 152l32 34l206 -214l-206 -217l-32 34l126 152h-128l-176 -186l-32 34l124 152h-560l-178 -186l-32 34l126 152v59l-126 152l32 34'], + 0x2917: [486,-55,1150,28,1123,'537 300h262l-125 152l33 34l179 -186h124l-125 152l32 34l206 -214l-206 -217l-32 34l125 152h-127l-176 -186l-33 34l125 152h-262v-175h-52v175h-246l-179 -186l-32 34l125 152v59l-125 152l32 34l179 -186h246v163h52v-163'], + 0x2918: [486,-55,1150,28,1123,'239 300h196v163h52v-163h53v163h52v-163h207l-125 152l33 34l179 -186h124l-125 152l32 34l206 -214l-206 -217l-32 34l125 152h-127l-176 -186l-33 34l125 152h-207v-175h-53l1 175h-53v-175h-52v175h-196l-179 -186l-32 34l125 152v59l-125 152l32 34'], + 0x2919: [486,-55,1009,57,953,'57 300h686l177 186l33 -34l-126 -152v-59l126 -152l-33 -34l-179 186h-684v59'], + 0x291A: [486,-55,1009,57,953,'953 300h-686l-177 186l-33 -34l126 -152v-59l-126 -152l33 -34l179 186h684v59'], + 0x291B: [486,-55,1059,65,996,'752 55l32 34l-124 152h124l178 -186l34 34l-126 152v59l126 152l-34 34l-176 -186h-126l124 152l-32 34l-178 -186h-509v-60h509'], + 0x291C: [486,-55,1059,65,996,'309 55l-32 34l124 152h-124l-178 -186l-34 34l126 152v59l-126 152l34 34l176 -186h126l-124 152l32 34l178 -186h509v-60h-509'], + 0x291D: [488,-57,1369,66,1304,'400 271l-167 -180l-167 180l167 179zM1304 243h-770l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h770v-59'], + 0x291E: [488,-57,1369,66,1304,'970 271l167 -180l167 180l-167 179zM66 243h770l-125 -152l32 -34l207 214l-207 217l-32 -34l125 -152h-770v-59'], + 0x291F: [490,-59,1426,66,1362,'400 273l-168 -180l-166 179l166 180zM1304 304h-770l124 152l-32 34l-206 -217l206 -214l32 34l-124 152h770v-186h58v431h-58v-186'], + 0x2920: [490,-59,1426,66,1362,'1028 273l168 -180l166 179l-166 180zM124 304h770l-124 152l32 34l206 -217l-206 -214l-32 34l124 152h-770v-186h-58v431h58v-186'], + 0x2921: [715,173,1013,63,951,'68 707l299 8v-46l-196 -21l714 -714l19 196l47 2l-5 -298l-300 -7l1 46l196 20l-714 714l-19 -195l-47 -2'], + 0x2922: [715,173,1013,63,951,'943 710l8 -299h-46l-21 196l-714 -714l196 -19l2 -47l-298 5l-7 300l46 -1l20 -196l714 714l-195 19l-2 47'], + 0x2923: [803,175,1013,76,938,'696 -125c49 -49 155 -73 204 -24c83 83 17 160 -47 225l-669 661l194 18l3 48l-299 -7l-6 -298l46 1l20 196l716 -708c30 -30 30 -63 -1 -94s-92 -10 -123 20'], + 0x2924: [803,175,1013,76,939,'319 -125c-49 -49 -155 -73 -204 -24c-83 83 -17 160 47 225l669 661l-194 18l-3 48l299 -7l6 -298l-46 1l-20 196l-716 -708c-30 -30 -30 -63 1 -94s92 -10 123 20'], + 0x2925: [802,176,1013,76,939,'319 752c-49 49 -155 73 -204 24c-83 -83 -17 -160 47 -225l669 -661l-194 -18l-3 -48l299 7l6 298l-46 -1l-20 -196l-716 708c-30 30 -30 63 1 94s92 10 123 -20'], + 0x2926: [802,176,1013,76,938,'696 752c49 49 155 73 204 24c83 -83 17 -160 -47 -225l-669 -661l194 -18l3 -48l-299 7l-6 298l46 -1l20 -196l716 708c30 30 30 63 -1 94s-92 10 -123 -20'], + 0x2927: [713,172,1013,65,949,'543 270l406 -406l-35 -36l-407 406l-406 -406l-36 36l402 408l-338 341l-16 -201h-48v301h301v-48l-201 -17l341 -342l343 342l-201 17v48h301v-301h-47l-17 201'], + 0x2928: [712,172,1013,64,950,'506 232l-406 -404l-36 36l406 406l-406 406l36 36l408 -408l342 344l-202 16v48h302v-300h-48l-18 200l-342 -342l345 -342l15 202h48v-302h-302v48l200 16'], + 0x2929: [713,172,1013,65,949,'543 271l406 406l-35 36l-407 -406l-406 406l-36 -36l407 -406l-343 -343l-16 201h-48v-301h301v48l-201 17l341 342l343 -342l-201 -17v-48h301v301h-47l-17 -201'], + 0x292A: [712,172,1013,64,950,'508 234l406 -406l36 36l-406 406l406 406l-36 36l-406 -406l-344 342l202 16v48h-302v-300h48l18 200l342 -340l-342 -344l-18 202h-48v-302h302v48l-202 16'], + 0x292B: [648,172,1013,65,949,'542 199l372 -371l35 36l-370 372zM433 308l-304 305l36 35l303 -305zM885 613l-784 -785l-36 36l784 784'], + 0x292C: [648,172,1013,65,949,'472 199l-372 -371l-35 36l370 372zM581 308l304 305l-36 35l-303 -305zM129 613l784 -785l36 36l-784 784'], + 0x292D: [713,172,1013,64,950,'850 -108l-786 786l36 35l784 -785l18 202h48v-302h-302v48zM849 648l-303 -305l35 -35l304 305l17 -201h48v300h-302v-48zM472 199l-372 -371l-35 36l370 372'], + 0x292E: [712,172,1013,65,950,'850 648l-721 -721l36 -35l719 720l18 -202h48v302h-302v-48zM849 -108l-303 305l35 35l304 -305l17 201h48v-300h-302v48zM472 341l-372 371l-35 -36l370 -372'], + 0x292F: [712,172,1013,65,950,'913 -171l-784 784l36 35l782 -783zM849 648l-303 -305l35 -35l304 305l17 -201h48v300h-302v-48zM472 199l-372 -371l-35 36l370 372'], + 0x2930: [713,172,1013,65,950,'916 713l-787 -786l36 -35l785 785zM849 -108l-303 305l35 35l304 -305l17 201h48v-300h-302v48zM472 341l-372 371l-35 -36l370 -372'], + 0x2931: [714,172,1013,64,950,'886 614l-786 -786l-36 36l786 784l-202 18v48h302v-302h-48zM130 612l304 -302l36 34l-306 304l202 18v48h-300v-302h48zM578 236l372 -372l-36 -36l-372 370'], + 0x2932: [714,172,1013,64,950,'128 614l786 -786l36 36l-786 784l202 18v48h-302v-302h48zM884 612l-304 -302l-36 34l306 304l-202 18v48h300v-302h-48zM436 236l-372 -372l36 -36l372 370'], + 0x2933: [484,-53,961,-3,902,'902 270l-206 -217l-33 34l125 154l-336 -2c-172 0 -134 122 -272 122c-79 0 -137 -79 -183 -134v75c48 54 107 118 182 118c172 0 133 -122 272 -122h337l-125 152l33 34'], + 0x2934: [585,-76,729,54,676,'428 473l-148 -126l-34 32l214 206l216 -206l-34 -32l-152 126v-224c3 -214 -216 -168 -436 -169v61c195 5 372 -51 373 107'], + 0x2935: [588,-80,729,54,676,'428 192l-148 126l-34 -32l214 -206l216 206l-34 32l-152 -126v224c3 214 -216 168 -436 169v-61c195 -5 372 51 373 -107'], + 0x2936: [622,0,729,111,622,'223 248l126 148l-32 34l-206 -214l206 -216l32 34l-126 152h224c214 -3 172 216 173 436h-61c-5 -195 47 -372 -111 -373'], + 0x2937: [622,0,729,110,619,'507 248l-126 148l32 34l206 -214l-206 -216l-32 34l126 152h-224c-214 -3 -168 216 -169 436h61c5 -195 -51 -372 107 -373'], + 0x2938: [643,117,559,105,454,'159 593c176 -47 281 -227 234 -402c-25 -94 -73 -151 -155 -202c-8 38 -8 76 -6 114l-127 -220h254l-94 63c304 188 220 613 -93 697'], + 0x2939: [643,117,559,105,455,'401 593c-176 -47 -281 -227 -234 -402c25 -94 73 -151 155 -202c8 38 8 76 6 114l127 -220h-254l94 63c-304 188 -220 613 93 697'], + 0x293A: [446,-97,869,55,815,'765 151c-47 176 -227 281 -402 234c-94 -25 -151 -73 -202 -155c38 -8 76 -8 114 -6l-220 -127v254l63 -94c188 304 613 220 697 -93'], + 0x293B: [447,-97,869,55,815,'105 393c47 -176 227 -281 402 -234c94 25 151 73 202 155c-38 8 -76 8 -114 6l220 127v-254l-63 94c-188 -304 -613 -220 -697 93'], + 0x293C: [446,-97,869,55,815,'498 187h-269v44h269v-44zM105 151c47 176 227 281 402 234c94 -25 151 -73 202 -155c-38 -8 -76 -8 -114 -6l220 -127v254l-63 -94c-188 304 -613 220 -697 -93'], + 0x293D: [446,-95,869,55,815,'615 191h-120v-96h-29v96h-120v29h120v102h29v-102h120v-29zM765 151c-47 176 -227 281 -402 234c-94 -25 -151 -73 -202 -155c38 -8 76 -8 114 -6l-220 -127v254l63 -94c188 304 613 220 697 -93'], + 0x293E: [580,62,887,63,825,'199 95l109 34l-245 66l66 -245l36 107c150 -149 399 -164 548 -15s150 388 0 538l-36 -36c129 -129 129 -337 0 -466c-128 -128 -350 -111 -478 17'], + 0x293F: [580,62,887,62,825,'689 95l-109 34l245 66l-66 -245l-36 107c-150 -149 -399 -164 -548 -15s-150 388 0 538l36 -36c-129 -129 -129 -337 0 -466c128 -128 350 -111 478 17'], + 0x2940: [698,164,987,121,885,'174 217c-15 -97 36 -172 97 -234c129 -128 337 -128 465 0c129 129 130 338 2 466c-69 68 -139 94 -235 97l52 -101l-220 127l220 126l-50 -101c351 -11 501 -417 268 -650c-149 -148 -389 -149 -538 0c-71 72 -122 156 -112 269c11 135 115 254 198 322l37 -35 c-59 -55 -162 -140 -184 -286'], + 0x2941: [702,160,987,120,883,'831 221c15 -97 -36 -172 -97 -234c-129 -128 -337 -128 -465 0c-129 129 -130 338 -2 466c69 68 139 94 235 97c-11 -37 -31 -69 -52 -101l220 127l-220 126l50 -101c-351 -11 -500 -417 -268 -650c149 -148 389 -149 538 0c71 72 122 156 112 269 c-11 135 -109 257 -192 325l-37 -35c59 -55 156 -143 178 -289'], + 0x2942: [665,124,1013,65,949,'949 451l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34zM507 62h-328l125 -151l-32 -35l-207 215l207 216l32 -34l-125 -152h328v-59'], + 0x2943: [665,124,1013,65,949,'65 451l206 -217l32 34l-125 152h771v59h-771l125 152l-32 34zM507 62h328l-125 -151l32 -35l207 215l-207 216l-32 -34l125 -152h-328v-59'], + 0x2944: [665,124,1013,65,949,'65 90l206 217l32 -34l-125 -152h771v-59h-771l125 -152l-32 -34zM507 479h328l-125 151l32 35l207 -215l-207 -216l-32 34l125 152h-328v59'], + 0x2945: [665,-98,1013,65,949,'334 194h-120v-96h-29v96h-120v29h120v102h29v-102h120v-29zM949 451l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34'], + 0x2946: [665,-98,1013,65,949,'680 194h120v-96h29v96h120v29h-120v102h-29v-102h-120v-29zM65 451l206 -217l32 34l-125 152h771v59h-771l125 152l-32 34'], + 0x2947: [486,-55,1013,65,949,'327 300l-110 109l-20 -21l88 -88h-220v-59h219l-87 -87l20 -21l109 109h16l110 -109l21 21l-89 87h452l-125 -152l32 -34l206 217l-206 214l-32 -34l125 -152h-452l89 88l-21 22l-110 -110h-15'], + 0x2948: [504,-33,1260,54,1207,'171 233l122 -153l-32 -34l-207 217l207 214l32 -34l-122 -151h218c7 124 113 212 235 212s219 -99 236 -212l233 -1l-125 152l33 35l206 -217l-206 -215l-33 35l125 151h-233c-17 -119 -109 -199 -233 -199c-115 0 -210 54 -239 200h-217zM628 445 c-101 0 -167 -53 -181 -153h354c-25 88 -75 153 -173 153zM447 233c24 -99 88 -141 176 -141c99 0 160 55 178 142'], + 0x2949: [761,219,541,56,486,'242 435l-152 -123l-34 33l186 179v124l-152 -125l-34 32l214 206l216 -206l-34 -32l-152 125v-127l186 -176l-34 -33l-151 123v-302c84 -14 147 -88 147 -174c0 -100 -78 -178 -175 -178c-98 0 -177 78 -177 178c0 86 63 160 146 174v302zM273 83 c-69 0 -125 -56 -125 -124c0 -70 56 -124 125 -124c68 0 123 54 123 124c0 68 -55 124 -123 124'], + 0x294A: [381,52,1013,65,949,'812 135l-127 -152l33 -35l231 246h-745l127 152l-33 35l-233 -246h747'], + 0x294B: [381,52,1013,65,949,'812 194l-127 152l33 35l231 -246h-745l127 -152l-33 -35l-233 246h747'], + 0x294C: [713,171,559,63,497,'251 -33l-152 126l-36 -32l246 -232v746l152 -128l36 34l-246 232v-746'], + 0x294D: [713,171,559,63,497,'309 -33l152 126l36 -32l-246 -232v746l-152 -128l-36 34l246 232v-746'], + 0x294E: [194,52,1013,65,949,'949 -52h-884l233 246l33 -35l-127 -152h608l-127 152l33 35'], + 0x294F: [713,171,459,107,353,'107 -171v884l246 -233l-35 -33l-152 127v-608l152 127l35 -33'], + 0x2950: [194,52,1013,65,949,'949 194h-884l233 -246l33 35l-127 152h608l-127 -152l33 -35'], + 0x2951: [713,171,459,107,353,'353 -171v884l-246 -233l35 -33l152 127v-608l-152 127l-35 -33'], + 0x2952: [489,-21,899,51,849,'109 226v-205h-58v466h58v-199l176 201l32 -36l-124 -165h656v-62h-740'], + 0x2953: [489,-21,899,51,849,'791 226v-205h58v466h-58v-199l-176 201l-32 -36l124 -165h-656v-62h740'], + 0x2954: [667,131,559,46,514,'251 609h-205v58h466v-58h-199l201 -176l-36 -32l-165 124v-656h-62v740'], + 0x2955: [667,131,559,46,514,'251 -73h-205v-58h466v58h-199l201 176l-36 32l-165 -124v656h-62v-740'], + 0x2956: [496,-28,899,51,849,'109 291v205h-58v-466h58v199l176 -201l32 36l-124 165h656v62h-740'], + 0x2957: [489,-21,899,51,849,'791 284v205h58v-466h-58v199l-176 -201l-32 36l124 165h-656v62h740'], + 0x2958: [667,131,559,46,514,'309 609h205v58h-466v-58h199l-201 -176l36 -32l165 124v-656h62v740'], + 0x2959: [667,131,559,46,514,'309 -73h205v-58h-466v58h199l-201 176l36 32l165 -124v656h62v-740'], + 0x295A: [486,-55,1013,29,985,'927 300h-770l124 152l-32 34l-220 -246l898 1v-186h58v431h-58v-186'], + 0x295B: [486,-55,1013,29,985,'87 300h770l-124 152l32 34l220 -246l-898 1v-186h-58v431h58v-186'], + 0x295C: [761,195,524,47,478,'292 -137v770l152 -124l34 32l-246 220l1 -898h-186v-58h431v58h-186'], + 0x295D: [761,195,524,47,478,'292 703v-770l152 124l34 -32l-246 -220l1 898h-186v58h431v-58h-186'], + 0x295E: [486,-55,1013,29,985,'927 241h-770l124 -152l-32 -34l-220 246l898 -1v186h58v-431h-58v186'], + 0x295F: [486,-55,1013,29,985,'87 241h770l-124 -152l32 -34l220 246l-898 -1v186h-58v-431h58v186'], + 0x2960: [761,195,524,47,478,'233 -137v770l-152 -124l-34 32l246 220l-1 -898h186v-58h-431v58h186'], + 0x2961: [761,195,524,47,478,'233 703v-770l-152 124l-34 -32l246 -220l-1 898h186v58h-431v-58h186'], + 0x2962: [594,52,1013,65,949,'949 348h-884l233 246l33 -35l-127 -152h745v-59zM65 194l232 -246l33 35l-127 152h746v59h-884'], + 0x2963: [713,171,759,57,703,'457 -171v884l246 -233l-35 -33l-152 127v-745h-59zM303 713l-246 -232l35 -33l152 127v-746h59v884'], + 0x2964: [594,52,1013,65,949,'65 348h884l-233 246l-33 -35l127 -152h-745v-59zM949 194l-232 -246l-33 35l127 152h-746v59h884'], + 0x2965: [713,171,759,57,703,'457 713v-884l246 233l-35 33l-152 -127v745h-59zM303 -171l-246 232l35 33l152 -127v746h59v-884'], + 0x2966: [594,52,1013,65,949,'949 348h-884l233 246l33 -35l-127 -152h745v-59zM949 -52l-232 246l-33 -35l127 -152h-746v-59h884'], + 0x2967: [560,19,1013,65,949,'949 560h-884l233 -246l33 35l-127 152h745v59zM949 227l-232 -246l-33 35l127 152h-746v59h884'], + 0x2968: [627,19,1013,65,949,'65 381h884l-233 246l-33 -35l127 -152h-745v-59zM65 -19l232 246l33 -35l-127 -152h746v-59h-884'], + 0x2969: [627,19,1013,65,949,'65 627h884l-233 -246l-33 35l127 152h-745v59zM65 227l232 -246l33 35l-127 152h746v59h-884'], + 0x296A: [594,-135,1013,65,949,'949 348h-884l233 246l33 -35l-127 -152h745v-59zM65 194v-59h884v59h-884'], + 0x296B: [594,-135,1013,65,949,'949 381h-884l233 -246l33 35l-127 152h745v59zM65 535v59h884v-59h-884'], + 0x296C: [594,-135,1013,65,949,'65 348h884l-233 246l-33 -35l127 -152h-745v-59zM949 194v-59h-884v59h884'], + 0x296D: [594,-135,1013,65,949,'65 381h884l-233 -246l-33 35l127 152h-745v59zM949 535v59h-884v-59h884'], + 0x296E: [713,171,759,57,703,'457 713v-884l246 233l-35 33l-152 -127v745h-59zM303 713l-246 -232l35 -33l152 127v-746h59v884'], + 0x296F: [713,171,759,57,703,'457 -171v884l246 -233l-35 -33l-152 127v-745h-59zM303 -171l-246 232l35 33l152 -127v746h59v-884'], + 0x2970: [407,-140,1013,51,963,'963 271c0 -140 -241 -130 -461 -130h-451v53h457c148 12 374 -35 376 77c2 108 -197 83 -376 83h-457v53h451c220 0 461 4 461 -136'], + 0x2971: [613,-41,1013,65,949,'654 569h-405v44h405v-44zM654 409h-405v44h405v-44zM949 258l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34'], + 0x2972: [486,-55,1013,65,949,'284 474c73 0 175 -72 226 -72c37 0 74 29 105 84l34 -27c-43 -78 -87 -113 -138 -113c-66 0 -168 71 -226 71c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120zM949 272l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34'], + 0x2973: [486,-55,1013,65,949,'730 67c-73 0 -175 72 -226 72c-37 0 -74 -29 -105 -84l-34 27c43 78 87 113 138 113c66 0 168 -71 226 -71c40 0 66 22 106 90l34 -27c-49 -87 -88 -120 -139 -120zM65 269l206 217l32 -34l-125 -152h771v-59h-771l125 -152l-32 -34'], + 0x2974: [486,-55,1013,65,949,'284 202c73 0 175 -72 226 -72c37 0 74 29 105 84l34 -27c-43 -78 -87 -113 -138 -113c-66 0 -168 71 -226 71c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120zM949 269l-206 217l-32 -34l125 -152h-771v-59h771l-125 -152l32 -34'], + 0x2975: [486,136,1013,65,949,'293 11c73 0 175 -72 226 -72c37 0 74 29 105 84l34 -27c-43 -78 -87 -113 -138 -113c-66 0 -168 71 -226 71c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120zM293 163c73 0 175 -72 226 -72c37 0 74 29 105 84l34 -27c-43 -78 -87 -113 -138 -113 c-66 0 -168 71 -226 71c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120zM949 272l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34'], + 0x2976: [695,154,1013,65,949,'836 167l-539 252v21l539 255v-59l-438 -205l438 -205v-59zM949 32h-770l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h770v-59'], + 0x2977: [535,-7,1013,65,960,'472 302h-293l125 152l-32 34l-207 -217l207 -214l32 34l-125 152h293l488 -236v59l-371 177h212v59h-212l371 174v59'], + 0x2978: [695,154,1013,65,949,'178 167l539 252v21l-539 255v-59l438 -205l-438 -205v-59zM65 32h770l-125 -152l32 -34l207 214l-207 217l-32 -34l125 -152h-770v-59'], + 0x2979: [723,179,1013,65,949,'656 199l-301 -1c-147 0 -259 122 -259 262s112 263 259 263h301v-53h-306c-114 0 -202 -97 -202 -209c0 -118 100 -209 202 -209h306v-53zM65 7h770l-125 -152l32 -34l207 214l-207 217l-32 -34l125 -152h-770v-59'], + 0x297A: [535,-10,1013,65,957,'447 243c15 -103 111 -180 204 -180h306v-53h-301c-136 0 -242 106 -257 233h-220l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h218c15 127 123 233 259 233h301v-53h-306c-103 0 -190 -82 -204 -180h486v-59h-486'], + 0x297B: [723,179,1013,65,949,'358 199l301 -1c147 0 259 122 259 262s-112 263 -259 263h-301v-53h306c114 0 202 -97 202 -209c0 -118 -100 -209 -202 -209h-306v-53zM949 7h-770l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h770v-59'], + 0x297C: [576,35,803,65,739,'739 241h-400c-80 0 -215 -30 -215 -133c0 -46 38 -84 84 -84c52 0 92 33 112 79l44 -26c-29 -64 -81 -112 -156 -112c-77 0 -143 66 -143 143c0 81 55 134 126 163c-71 28 -126 81 -126 162c0 78 66 143 143 143c75 0 127 -48 156 -112l-44 -26c-20 46 -60 79 -112 79 c-46 0 -84 -38 -84 -84c0 -102 135 -133 215 -133h400v-59'], + 0x297D: [576,35,803,65,739,'739 108c0 -77 -65 -143 -143 -143c-75 0 -127 48 -156 112l44 26c20 -46 60 -79 112 -79c46 0 84 38 84 84c0 103 -135 133 -215 133h-400v59h400c80 0 215 31 215 133c0 46 -38 84 -84 84c-52 0 -92 -33 -112 -79l-44 26c29 64 81 112 156 112c78 0 143 -65 143 -143 c0 -81 -55 -134 -125 -162c70 -29 125 -82 125 -163'], + 0x297E: [608,66,743,66,678,'342 -66v400c0 80 -30 214 -132 214c-46 0 -84 -38 -84 -84c0 -52 32 -92 78 -112l-26 -44c-64 30 -112 82 -112 156c0 78 66 144 144 144c80 0 134 -56 162 -126c28 70 82 126 162 126c78 0 144 -66 144 -144c0 -74 -48 -126 -112 -156l-26 44c46 20 78 60 78 112 c0 46 -38 84 -84 84c-102 0 -132 -134 -132 -214v-400h-60'], + 0x297F: [608,66,743,66,678,'342 608v-400c0 -80 -30 -214 -132 -214c-46 0 -84 38 -84 84c0 52 32 92 78 112l-26 44c-64 -30 -112 -82 -112 -156c0 -78 66 -144 144 -144c80 0 134 56 162 126c28 -70 82 -126 162 -126c78 0 144 66 144 144c0 74 -48 126 -112 156l-26 -44c46 -20 78 -60 78 -112 c0 -46 -38 -84 -84 -84c-102 0 -132 134 -132 214v400h-60'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Arrows/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..6bd78be --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/DoubleStruck/Regular/Main.js @@ -0,0 +1,99 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'AsanaMathJax_DoubleStruck', + id: 'ASANAMATHDOUBLESTRUCK', + 0x20: [0,0,249,0,0,''], + 0x2102: [709,20,708,22,669,'614 588c0 44 -122 79 -198 79c-61 0 -113 -15 -155 -40v-538c53 -36 120 -55 197 -55c71 0 157 26 203 60l8 -10l-27 -50c-58 -35 -157 -54 -218 -54c-240 0 -402 137 -402 364s184 365 411 365c93 0 183 -24 231 -41c-10 -47 -19 -100 -19 -152h-31v72zM215 127v464 c-57 -56 -86 -139 -86 -231c0 -97 31 -176 86 -233'], + 0x210D: [692,3,948,22,927,'432 -3c-52 2 -99 3 -145 3c-159 0 -265 -3 -265 -3v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30c33 -1 76 -3 117 -3h148c46 0 93 0 145 3v-30l-48 -3c-42 -4 -51 -6 -51 -90v-178c12 -2 39 -2 83 -2h233c45 0 72 0 84 2v178c0 82 -8 86 -51 90l-48 3v30 c52 -3 99 -3 148 -3c46 0 93 0 145 3v-30l-48 -3c-24 -2 -36 -5 -42 -15c-6 -11 -9 -37 -9 -75v-449c0 -84 11 -89 51 -91l48 -2v-30c-52 2 -99 3 -145 3c-49 0 -96 -1 -148 -3v30l48 2c44 2 51 12 51 91v223c-12 1 -39 2 -84 2h-233c-44 0 -71 -1 -83 -2v-223 c0 -79 7 -89 51 -91l48 -2v-30zM195 31c38 0 43 14 43 89v449c0 75 -5 89 -43 89c-27 0 -32 -15 -32 -89v-449c0 -74 5 -89 32 -89'], + 0x2115: [692,3,951,17,934,'934 662l-45 -3c-41 -4 -50 -6 -50 -90v-569h-87l-471 581h-2v-461c0 -79 7 -89 50 -91l45 -2v-30c-45 1 -80 3 -120 3c-36 0 -76 -1 -116 -1c-42 -1 -87 -1 -121 -2v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30c34 -1 79 -3 121 -3h120c18 0 36 2 54 3 l477 -590h4v467c0 82 -8 86 -51 90l-44 3v30c40 -1 80 -3 116 -3c40 0 75 2 120 3v-30zM189 31c37 4 44 9 44 89v449c0 79 -6 85 -44 89c-26 -3 -31 -15 -31 -89v-449c0 -74 5 -86 31 -89'], + 0x2119: [692,3,720,22,697,'432 -3c-52 2 -188 3 -234 3c-159 0 -176 -3 -176 -3v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30h467c98 3 208 -40 208 -153c0 -125 -108 -215 -240 -215c-20 0 -40 2 -60 5l-10 37c22 -7 44 -10 66 -10c81 0 144 64 144 149c0 104 -63 149 -162 149 c-46 0 -74 -5 -102 -12v-522c0 -79 7 -89 51 -91l48 -2v-30zM195 31c38 0 43 14 43 89v449c0 68 -6 85 -44 89c-26 -4 -31 -16 -31 -89v-449c0 -74 5 -89 32 -89'], + 0x211A: [709,176,785,22,764,'408 -20c110 -12 208 -109 356 -79v-21l-84 -56c-32 7 -64 14 -106 27l-148 45c-33 10 -57 15 -80 15c-11 0 -19 -4 -26 -8l-59 -32l2 32c48 37 90 65 109 72l11 4v2h-6c-211 0 -355 137 -355 367c0 204 144 361 376 361c214 0 366 -120 366 -342 c0 -207 -162 -378 -356 -385v-2zM657 336c0 198 -89 331 -275 331c-47 0 -87 -9 -121 -25v-575c39 -27 88 -44 148 -44c174 0 248 129 248 313zM215 109v502c-58 -51 -86 -133 -86 -230c0 -100 27 -202 86 -272'], + 0x211D: [692,3,784,22,786,'402 371c150 0 191 87 191 145c0 108 -80 138 -158 138c-46 0 -74 -5 -102 -12v-522c0 -79 7 -89 51 -91l48 -2v-30c-52 2 -150 3 -196 3c-159 0 -214 -3 -214 -3v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30h480c151 0 191 -80 191 -150 c0 -109 -98 -174 -195 -193l227 -296c15 -19 37 -24 61 -26v-30c-26 1 -49 3 -72 3s-45 -2 -68 -3l-277 363l6 12c9 -1 18 -1 27 -1zM195 31c38 0 43 14 43 89v449c0 78 -4 85 -42 89c-27 -3 -33 -15 -33 -89v-449c0 -74 5 -89 32 -89'], + 0x2124: [692,3,816,15,788,'788 173c-5 -55 -6 -119 -6 -176c-98 1 -202 3 -305 3c-104 0 -358 -2 -462 -3v28c32 39 66 77 97 117l302 387c30 39 64 80 86 119h-228c-138 0 -149 -14 -152 -47l-6 -72h-34c4 55 4 109 0 163c132 -1 265 -3 397 -3h210c52 0 44 2 96 3l4 -29l-486 -619h273 c149 0 167 4 174 72l6 57h34zM709 648h-84l-474 -604h90c27 32 55 64 81 98l302 387c30 39 64 80 85 119'], + 0x213C: [525,15,718,10,688,'76 138l-10 -5c1 -34 94 -156 151 -126c45 27 37 121 41 209v252l-36 -1c-4 -195 17 -415 -23 -436c-29 -20 -105 45 -123 107zM688 525l-16 -119c-47 26 -138 22 -138 22c2 -2 -5 -152 -5 -224c-1 -89 2 -143 35 -146s63 35 81 92l26 -8c-43 -144 -98 -157 -128 -157 s-65 14 -83 58c-20 49 -1 366 -3 383l-171 4c-2 -16 10 -338 -10 -387c-18 -44 -39 -58 -70 -58c-29 0 -116 8 -151 152l26 9c17 -59 67 -96 100 -89c38 7 27 70 28 143s-3 228 -1 228c-15 -1 -64 14 -95 -20c-23 -25 -18 -53 -21 -76c-81 0 -144 129 26 148 c91 10 415 0 462 0c19 0 72 1 72 43c2 0 36 1 36 2'], + 0x213D: [485,230,494,-10,466,'264 -200v214l-146 447c-83 -2 -90 2 -117 4v-9c31 5 78 -12 93 -52c32 -52 156 -412 156 -412c-6 -24 -22 -62 -20 -136c0 -30 5 -58 34 -56zM466 419c5 -75 -98 -199 -184 -419c12 -29 25 -73 26 -127c0 -50 -11 -103 -44 -103c-30 0 -53 28 -54 94 c-2 74 14 112 20 136c0 0 -134 362 -167 415c-23 36 -49 32 -73 32v31c13 -4 110 -8 160 3c15 -69 77 -277 122 -418c32 64 93 210 103 317c5 55 -33 83 -32 83c2 -1 25 17 55 22c8 1 64 4 68 -66'], + 0x213E: [692,3,727,22,703,'703 517c-6 55 -14 123 -21 172c-303 7 -221 0 -415 0h-85c-51 1 -115 1 -160 3v-30l44 -2c41 -2 51 -12 51 -91v-449c0 -79 -10 -87 -51 -90l-44 -3v-30c33 1 76 3 117 3h148c46 0 93 0 145 -3v30l-48 3c-42 4 -51 6 -51 90v522c28 7 56 8 84 8c82 0 204 -3 221 -19 c10 -9 16 -43 21 -64l12 -50h32zM238 594v-474c0 -75 -5 -89 -43 -89c-27 0 -32 15 -32 89v449c0 79 6 87 38 91l12 -7c17 -10 25 -32 25 -59'], + 0x213F: [692,3,899,27,873,'660 27c38 0 43 14 43 89v474c0 27 -8 49 -25 59l-12 7c-32 -4 -38 -12 -38 -91v-449c0 -74 5 -89 32 -89zM185 31c38 0 43 14 43 89v474c0 27 -8 49 -25 59l-12 7c-32 -4 -38 -12 -38 -91v-449c0 -74 5 -89 32 -89zM595 120l-1 524c-27 2 -43 2 -83 2h-122 c-40 0 -56 0 -83 -2l1 -524c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -181 3 -233 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c137 3 364 4 505 0c52 0 122 0 195 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449 c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -143 3 -195 3s-123 -1 -182 -3v30l48 3c46 3 51 11 51 90'], + 0x2140: [696,1,645,30,618,'72 9h47l245 361l-206 290h-43l213 -290zM618 194c-12 -70 -14 -101 -21 -195c0 0 -200 0 -271 1h-296l256 370c-53 73 -245 315 -252 326l551 -1c-1 -62 1 -77 11 -172h-25c-37 104 -68 106 -95 118c-25 6 -96 19 -287 19l203 -290l-193 -282c38 -1 21 1 130 -1 c107 -1 180 -1 213 17c38 19 42 61 50 90h26'], + 0x2145: [692,3,898,-39,888,'883 387c-28 -164 -147 -306 -277 -355c-129 -49 -216 -32 -349 -32h-136c-51 0 -115 -1 -160 -3l5 30l44 2c42 2 53 12 67 91l80 449c14 79 5 87 -36 90l-43 3l5 30c35 -1 82 -3 125 -3h197c65 0 130 2 174 3c206 6 339 -111 304 -305zM772 359c43 248 -91 293 -271 293 c-34 0 -86 -1 -115 -8l-105 -595c27 -7 78 -8 112 -8c50 0 109 3 167 28c121 52 188 155 212 290zM194 95l84 474c14 80 8 85 -28 89c-27 -3 -34 -15 -47 -89l-80 -449c-14 -79 -9 -87 22 -91l14 7c18 10 30 32 35 59'], + 0x2146: [694,10,667,-7,707,'189 -10c85 0 125 49 176 100l98 -90h53c29 168 108 613 109 617c7 27 31 34 78 34c3 16 6 32 4 32c-21 0 -191 11 -232 11c-6 0 -28 1 -36 -6l-57 -322c-62 117 -247 97 -345 -49c-108 -162 -4 -327 152 -327zM479 615c1 1 22 33 51 21c11 -4 24 -12 27 -21l-83 -471 c-29 -31 -77 -10 -76 8c0 2 53 302 81 463zM103 38c-37 35 -72 111 -39 214c18 68 60 112 101 136zM148 25l66 373c73 24 132 -16 158 -91l-32 -178c-67 -86 -127 -110 -192 -104'], + 0x2147: [463,20,546,24,522,'519 231h-269l-36 -205c77 -27 203 -7 260 95c4 7 8 10 15 10c20 0 12 -19 -16 -53c-151 -192 -515 -88 -438 173c66 222 345 270 452 143c32 -32 42 -108 32 -163zM283 418l-29 -165h217c48 179 -145 168 -188 165zM147 42l64 361c-180 -73 -226 -285 -64 -361'], + 0x2148: [669,0,388,-17,298,'176 616c7 43 67 73 96 37c10 -10 12 -23 10 -37c-9 -48 -71 -71 -97 -38c-10 10 -12 23 -9 38zM65 431c20 0 164 11 206 11c6 0 20 1 27 -6l-68 -387c2 -12 11 -16 45 -17h18l-6 -32c-17 4 -285 3 -304 0l6 32h22c38 2 42 4 51 18l29 157c26 153 27 159 26 170 c-1 19 -22 22 -48 22h-12c3 16 6 32 8 32zM239 363c-2 1 -34 45 -76 0c-6 -10 -28 -146 -55 -298c40 -23 55 -8 78 -3'], + 0x2149: [669,210,409,-98,353,'245 616c8 43 68 73 98 37c9 -10 12 -23 9 -37c-12 -71 -119 -69 -107 0zM327 442c6 0 19 1 25 -6l-93 -516c-26 -67 -106 -122 -187 -130c-26 -2 -151 5 -168 61c-9 29 6 61 29 71c28 15 57 -4 61 -28c5 -17 3 -37 -37 -57c15 -8 66 -29 121 -11c15 90 89 464 94 554 c-4 9 -19 19 -70 19h-13l6 32c21 0 189 11 232 11zM296 363c-6 37 -55 30 -74 0l-95 -530c41 19 73 46 91 90'], + 0x1D538: [700,3,887,15,866,'355 -3c-36 1 -143 4 -179 4c-32 0 -97 -2 -161 -4v30l37 2c24 1 43 25 54 50l178 405c31 70 65 144 92 216h142l242 -568c38 -94 57 -102 72 -103l34 -2v-30c-44 1 -88 3 -133 3c-35 0 -79 -2 -133 -3v30l47 2c22 1 41 9 41 20c0 15 -11 41 -21 65l-46 115h-288l-28 -67 c-9 -21 -36 -88 -36 -104c0 -21 18 -27 49 -29l37 -2v-30zM603 269l-126 298l-128 -298h254zM476 673h-72l-219 -511c-9 -21 -36 -88 -36 -104c0 -15 10 -22 26 -25c18 7 32 25 41 46'], + 0x1D539: [692,3,739,26,705,'705 227c0 -98 -74 -236 -293 -230c-37 1 -73 3 -109 3h-109c-52 -1 -121 -1 -168 -3v30l43 2c42 2 52 12 52 91v449c0 79 -10 87 -52 90l-43 3v30c36 -1 85 -3 129 -3h144c58 0 114 2 193 3c93 2 179 -32 179 -138c0 -91 -85 -150 -167 -163v-2c102 -3 201 -45 201 -162 zM572 534c0 95 -67 118 -151 118c-27 0 -56 -1 -84 -8v-243c18 -1 41 -2 71 -2c87 0 164 36 164 135zM602 209c0 111 -70 155 -198 155c-28 0 -49 -1 -67 -2v-315c28 -7 57 -8 84 -8c111 0 181 64 181 170zM242 116v453c0 75 -5 85 -43 89c-27 -3 -32 -16 -32 -89v-453 c0 -77 6 -85 42 -89c28 4 33 16 33 89'], + 0x1D53B: [692,3,898,22,876,'876 387c0 -164 -94 -306 -215 -355c-121 -50 -214 -32 -343 -32h-136c-51 0 -115 -1 -160 -3v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30c35 -1 82 -3 125 -3h197c65 0 130 2 174 3c205 6 358 -111 358 -305zM769 359c0 248 -142 293 -322 293 c-34 0 -86 -1 -114 -8v-595c28 -7 80 -8 114 -8c50 0 108 3 162 28c111 52 160 155 160 290zM238 95v474c0 78 -5 85 -43 89c-27 -3 -32 -15 -32 -89v-449c0 -79 6 -87 38 -91l12 7c17 10 25 32 25 59'], + 0x1D53C: [692,3,727,22,689,'673 0c-303 -7 -208 0 -415 0h-107c-44 -1 -93 -2 -129 -3v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30c33 -1 76 -3 117 -3h169c87 0 179 3 236 3c45 0 90 -1 129 -3c-11 -44 -16 -101 -16 -152h-35v65c0 13 -1 24 -9 27c-53 20 -132 20 -196 20 c-28 0 -56 0 -84 -7v-267c32 -2 68 -3 116 -3c60 0 95 4 106 11c5 4 7 13 8 26l5 52h30c-1 -41 -3 -79 -3 -116s2 -76 3 -111h-30l-5 59c-2 29 -3 36 -114 36c-48 0 -85 0 -116 -2v-280c28 -7 56 -8 84 -8c82 0 184 3 202 13c15 8 28 52 35 112h35 c-10 -48 -16 -110 -16 -164zM195 31c39 4 43 13 43 89v449c0 75 -5 89 -43 89c-27 0 -32 -15 -32 -89v-449c0 -73 5 -86 32 -89'], + 0x1D53D: [692,3,672,22,653,'432 -3c-52 2 -99 3 -145 3c-159 0 -265 -3 -265 -3v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30c33 -1 76 -3 117 -3h169c67 0 159 3 216 3c45 0 90 -1 129 -3c-11 -44 -16 -101 -16 -152h-35v65c0 13 -1 24 -9 27c-53 20 -132 20 -176 20 c-28 0 -56 0 -84 -7v-267c32 -2 68 -3 116 -3c60 0 95 4 106 11c5 4 7 13 8 26l5 52h30c-1 -41 -3 -79 -3 -116s2 -76 3 -111h-30l-5 59c-2 29 -3 36 -114 36c-48 0 -85 0 -116 -2v-207c0 -79 7 -89 51 -91l48 -2v-30zM195 31c38 0 43 14 43 89v449c0 75 -5 89 -43 89 c-27 0 -32 -15 -32 -89v-449c0 -74 5 -89 32 -89'], + 0x1D53E: [709,20,762,22,728,'728 246l-29 -10c-10 -4 -11 -8 -11 -37v-168c-86 -25 -194 -51 -263 -51c-223 0 -403 116 -403 367c0 220 181 362 422 362c124 0 202 -28 248 -41c-12 -47 -20 -100 -20 -152h-31v53c0 47 -36 64 -83 80c-32 11 -75 18 -140 18c-75 0 -136 -19 -182 -54v-518 c53 -46 126 -73 215 -73c77 0 135 17 140 35c4 12 5 16 5 41v101c0 23 -8 33 -34 35l-83 7v30c41 -2 82 -2 122 -2c41 0 82 0 123 2zM205 127v458c-50 -53 -76 -130 -76 -221c0 -95 26 -177 76 -237'], + 0x1D540: [692,3,453,22,432,'432 -3c-52 2 -99 3 -145 3c-159 0 -265 -3 -265 -3v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30c33 -1 76 -3 117 -3h148c46 0 93 0 145 3v-30l-48 -3c-42 -4 -51 -6 -51 -90v-449c0 -79 7 -89 51 -91l48 -2v-30zM195 31c38 0 43 14 43 89v449 c0 75 -5 89 -43 89c-27 0 -32 -15 -32 -89v-449c0 -74 5 -89 32 -89'], + 0x1D541: [692,194,440,-15,419,'419 662l-48 -3c-42 -4 -51 -6 -51 -90v-452c0 -65 5 -148 -62 -231c-53 -65 -80 -80 -251 -80c-7 0 -13 1 -16 2l-6 76l11 7c24 -16 45 -20 70 -20c21 0 35 38 37 45l1 653c0 79 -10 87 -51 90l-44 3v30c33 -1 76 -3 117 -3h148c46 0 93 0 145 3v-30zM225 -17v586 c0 74 -5 89 -43 89c-27 0 -33 -15 -33 -89v-700c34 0 59 7 68 35c5 17 8 53 8 79'], + 0x1D542: [692,3,842,22,836,'432 -3c-52 2 -99 3 -145 3c-159 0 -265 -3 -265 -3v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30c33 -1 76 -3 117 -3h148c46 0 93 0 145 3v-30l-48 -3c-42 -4 -51 -6 -51 -90v-214l278 271c15 15 29 32 29 39v27c32 -1 60 -3 89 -3c28 0 56 2 80 3v-30 l-42 -2c-26 -1 -52 -15 -78 -38l-266 -240l330 -313c24 -23 44 -38 62 -40l21 -2v-30c-19 1 -43 3 -67 3c-23 0 -47 -2 -78 -3l-348 335l-10 -7v-205c0 -79 7 -89 51 -91l48 -2v-30zM195 31c38 0 43 14 43 89v449c0 75 -5 89 -43 89c-27 0 -32 -15 -32 -89v-449 c0 -74 5 -89 32 -89'], + 0x1D543: [692,3,727,22,703,'703 172c-6 -55 -14 -123 -21 -172c-304 -7 -221 0 -415 0h-85c-51 -1 -115 -1 -160 -3v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30c33 -1 76 -3 117 -3h148c46 0 93 0 145 3v-30l-48 -3c-42 -4 -51 -6 -51 -90v-522c28 -7 56 -8 84 -8 c82 0 204 3 221 19c10 9 16 43 21 64l12 50h32zM238 95v474c0 75 -5 89 -43 89c-27 0 -32 -15 -32 -89v-449c0 -79 6 -87 38 -91l12 7c17 10 25 32 25 59'], + 0x1D544: [692,13,1066,16,1047,'1047 -3c-52 2 -99 3 -145 3c-49 0 -96 -1 -134 -3v30l34 2c44 2 51 12 51 91v454h-2c-15 -27 -29 -55 -42 -82l-178 -378c-19 -41 -36 -85 -54 -127h-20l-277 587h-2v-454c0 -80 8 -89 51 -91l44 -2v-30c-44 1 -80 3 -120 3c-36 0 -76 -1 -116 -1c-42 -1 -88 -1 -121 -2 v30l44 2c41 2 51 12 51 91v449c0 79 -10 87 -51 90l-44 3v30c33 -1 79 -3 121 -3h95c32 0 64 2 95 3l264 -556l262 556c32 -1 63 -3 95 -3s64 2 93 3v-30l-42 -3c-24 -2 -36 -5 -42 -15c-6 -11 -9 -37 -9 -75v-449c0 -84 11 -89 51 -91l48 -2v-30zM189 31c39 4 43 14 43 89 v449c0 78 -5 85 -43 89c-27 -3 -32 -15 -32 -89v-449c0 -74 5 -86 32 -89'], + 0x1D546: [709,20,785,22,764,'764 367c0 -215 -168 -387 -387 -387c-203 0 -355 140 -355 364c0 205 144 365 376 365c214 0 366 -120 366 -342zM657 336c0 198 -89 331 -275 331c-47 0 -87 -9 -121 -25v-575c39 -28 88 -45 148 -45c167 0 248 130 248 314zM215 109v502c-58 -51 -86 -133 -86 -230 c0 -100 27 -202 86 -272'], + 0x1D54A: [709,20,524,24,503,'211 408c85 -24 292 -5 292 -175c0 -171 -154 -253 -302 -253c-70 0 -138 22 -172 38c9 51 9 106 8 153h32l8 -67c5 -42 84 -80 163 -80c22 0 44 3 65 10v268c-102 21 -281 11 -281 181c0 155 136 226 256 226c80 0 140 -26 181 -42c-10 -51 -14 -94 -14 -141h-32l-6 57 c-3 28 -7 37 -44 60c-28 17 -70 24 -109 24c-15 0 -30 -2 -45 -6v-253zM165 425v213c-33 -23 -57 -62 -57 -117c0 -42 15 -75 57 -96zM419 178c0 56 -26 89 -68 108v-231c40 26 68 68 68 123'], + 0x1D54B: [694,3,737,18,720,'720 694c-5 -52 -7 -107 -7 -161h-31l-4 79c-1 24 -10 33 -40 33h-155c-3 -30 -4 -62 -4 -100v-423c0 -81 8 -88 50 -90l49 -3v-30c-52 2 -99 3 -145 3h-47c-3 -1 -94 -3 -101 -3c-19 0 -84 -1 -117 -2v30l44 2c41 2 51 12 51 91v449c0 42 -3 44 -9 76h-154 c-29 0 -39 -9 -40 -33l-4 -79h-31c0 54 -2 109 -7 161c71 0 269 -3 341 -3h145c72 0 144 3 216 3zM334 32c41 4 50 7 50 90v423c0 38 -1 70 -4 100h-66c-8 -31 -5 -34 -5 -76v-449c0 -67 4 -83 25 -88'], + 0x1D54C: [692,22,907,12,889,'12 692c20 -1 201 -5 201 -5c13 0 76 2 76 2s94 0 146 3v-30l-48 -3c-42 -4 -51 -6 -51 -90v-344c0 -142 73 -183 206 -183c107 0 206 41 206 207v320c0 82 -8 86 -51 90l-44 3v30c40 -1 80 -3 116 -3c40 0 76 2 120 3v-30l-44 -3c-43 -4 -51 -6 -51 -90v-289 c0 -209 -78 -298 -273 -300c-165 -1 -410 -38 -410 234v355c0 38 -3 64 -9 75c-6 10 -18 13 -42 15l-48 3v30zM208 657c-40 -5 -42 -16 -42 -88v-344c0 -147 72 -196 165 -209c-58 33 -90 95 -90 198v355c0 70 -5 83 -33 88'], + 0x1D54D: [692,9,851,8,836,'836 662l-30 -3c-21 -2 -34 -24 -54 -72l-174 -421c-24 -57 -46 -114 -64 -175h-180s-38 116 -58 165l-188 462c-13 32 -27 40 -44 41l-36 3v30c43 -1 86 -3 130 -3h51c8 -1 82 0 82 0l133 3v-30l-56 -3c-19 -1 -39 -7 -30 -31l197 -507l183 473c21 54 0 63 -26 65l-52 3 v30c36 -1 71 -3 108 -3s72 2 108 3v-30zM174 659h-6c-19 0 -39 -7 -30 -31l239 -610h79c-15 49 -33 97 -50 138l-188 462c-13 32 -27 41 -44 41'], + 0x1D54E: [700,9,1119,8,1104,'1104 662l-32 -3c-22 -2 -33 -12 -38 -29l-153 -538c-8 -29 -19 -60 -27 -101h-50c-22 79 -46 137 -71 206l-125 339l-174 -442c-13 -34 -26 -68 -36 -103h-170l-142 618c-10 43 -29 48 -50 50l-28 3v30c40 -1 79 -3 120 -3h50c7 -1 76 0 76 0l126 3v-30l-42 -3 c-26 -2 -46 -7 -33 -66l99 -446h2l123 312c31 79 63 159 90 241h32c9 -40 27 -86 41 -126l155 -434h2l131 486c6 24 -8 30 -46 33l-40 3v30c35 -1 69 -3 105 -3s70 2 105 3v-30zM343 18l-137 591c-9 39 -26 49 -45 49c-22 0 -38 -11 -26 -65l132 -575h76'], + 0x1D54F: [700,3,783,14,765,'765 -3c-24 1 -48 3 -72 3h-140c-25 0 -39 -2 -63 -3l-16 24l-138 229c-82 -90 -159 -181 -202 -253c0 0 -34 3 -51 3c-18 0 -35 -2 -52 -3v30l26 3c31 4 47 33 65 56c44 57 113 130 187 208l-156 260c-33 55 -68 88 -92 90l-45 3l-2 26l271 27c24 -12 43 -42 57 -65 l112 -189c80 87 154 172 201 243h101v-30l-41 -3c-20 -1 -47 -42 -68 -68c-33 -42 -96 -108 -168 -184l190 -304c19 -30 42 -68 66 -70l30 -3v-30zM600 28l-317 526c-33 55 -68 89 -92 90l-36 2c3 -4 5 -7 7 -11l128 -216l199 -319c19 -30 42 -69 66 -70'], + 0x1D550: [704,3,666,9,654,'654 679c-84 -97 -205 -266 -246 -355c-12 -26 -14 -51 -14 -75v-129c0 -82 8 -88 51 -90l48 -3v-30c-52 2 -99 3 -145 3c-49 0 -96 -1 -148 -3v30l48 3c43 2 51 10 51 90v142c0 16 -3 30 -9 40l-124 216c-52 90 -103 127 -128 130l-29 3v29l215 24c20 2 35 -16 52 -37 s31 -41 44 -65l97 -176l49 78c39 63 75 126 108 190h80v-15zM366 344l-100 174c-50 87 -99 124 -125 130c11 -15 20 -30 29 -46l172 -299'], + 0x1D552: [463,14,602,42,596,'42 96c0 110 195 174 386 171c0 27 -1 56 -5 69c-40 124 -247 99 -308 48c21 -5 40 -9 47 -38c10 -67 -75 -72 -90 -25c-5 14 -4 60 39 91c104 74 280 72 354 -33l34 -58v-255c1 -6 7 -39 35 -39c40 0 36 61 36 78v40h26c0 -19 0 -74 -1 -78c-7 -44 -45 -75 -87 -73 c-38 3 -68 38 -72 80c-77 -134 -295 -81 -339 -60c-55 24 -55 66 -55 82zM272 220v-208c134 44 166 50 156 228c-89 0 -154 -20 -156 -20zM196 208c-61 -20 -132 -68 -113 -133c17 -54 111 -57 114 -60c0 54 0 193 -1 193'], + 0x1D553: [694,10,667,18,649,'20 683c21 0 193 11 234 11c6 0 28 1 35 -6v-322c83 117 265 97 337 -49c80 -162 -59 -327 -210 -327c-43 0 -78 12 -109 43c-25 23 -48 55 -49 57l-114 -90h-53c0 168 0 613 -1 617c-2 27 -25 34 -72 34c0 16 0 32 2 32zM236 615c-1 1 -16 33 -47 21 c-12 -4 -26 -12 -31 -21v-471c24 -31 75 -10 77 8c1 2 1 302 1 463zM510 38c44 35 92 111 77 214c-6 68 -40 112 -77 136v-350zM463 25v373c-69 24 -135 -16 -174 -91v-178c52 -86 108 -110 174 -104'], + 0x1D554: [456,16,546,29,517,'414 339c0 8 9 42 45 50c0 1 -14 10 -20 13c-31 16 -108 31 -162 12v-389c82 -19 174 -8 212 89c5 14 7 15 16 15c13 0 16 -5 9 -21c-42 -106 -156 -124 -212 -124c-136 0 -214 76 -232 100c-100 137 -10 350 200 372c65 5 242 -9 237 -115c-5 -56 -65 -53 -85 -26 c-5 7 -7 14 -8 24zM192 42v356c-169 -79 -185 -270 0 -356'], + 0x1D555: [694,10,667,17,649,'647 683c-21 0 -193 11 -234 11c-6 0 -28 1 -35 -6v-322c-83 117 -265 97 -337 -49c-80 -162 59 -327 210 -327c43 0 78 12 109 43c25 23 48 55 49 57l114 -90h53c0 168 0 613 1 617c2 27 25 34 72 34c0 16 0 32 -2 32zM431 615c21 9 36 31 78 0v-471 c-24 -31 -75 -10 -77 8c-1 2 -1 302 -1 463zM157 38c-44 35 -92 111 -77 214c6 68 40 112 77 136v-350zM204 25v373c69 24 135 -16 174 -91v-178c-52 -86 -108 -110 -174 -104'], + 0x1D556: [462,20,546,28,518,'518 231h-270v-205c82 -27 205 -7 244 95c2 7 6 10 13 10c20 0 14 -19 -7 -53c-118 -192 -499 -88 -468 173c27 222 295 268 427 143c35 -34 61 -108 61 -163zM248 418v-165h217c17 179 -174 168 -217 165zM179 42v361c-105 -77 -133 -288 0 -361'], + 0x1D557: [720,0,448,18,456,'18 0v32h22c38 2 50 4 56 18c1 4 1 186 1 349h-75v37h75c0 53 0 125 1 132c17 91 141 167 271 150c97 -12 115 -128 44 -128c-50 0 -52 65 -19 84c-48 11 -99 6 -133 -2c1 -2 1 -170 1 -236h129v-37h-130v-342c6 -18 7 -25 75 -25h16v-32c-15 3 -310 4 -334 0zM212 659 c-63 -28 -70 -89 -70 -165v-58h71c0 63 0 223 -1 223zM214 399h-72c0 -116 0 -337 1 -339c7 -21 63 -22 70 0c1 2 1 223 1 339'], + 0x1D558: [460,214,602,38,576,'207 -174v181c-39 0 -53 -1 -58 -2c-50 -7 -71 -53 -71 -89c9 -36 45 -70 129 -90zM561 -75c0 -92 -158 -139 -276 -139c-82 0 -134 7 -191 36c-58 49 -94 150 13 201c0 9 -38 40 -38 89c0 30 14 63 37 86c-39 39 -49 76 -49 98c4 44 27 82 53 100c47 33 97 45 146 45 c98 0 135 -33 145 -35c2 0 63 54 116 54c36 0 59 -34 59 -56c0 -13 -5 -32 -32 -31c-14 0 -28 10 -28 31c0 18 12 32 9 32c-23 0 -72 -20 -104 -47c24 -25 53 -66 53 -94c0 -62 -58 -121 -156 -140c-173 -39 -218 93 -218 -23c0 -30 22 -52 36 -58c14 -8 6 -7 117 -8 c132 -1 242 -2 292 -84c10 -18 16 -38 16 -57zM389 346c-30 66 -97 72 -126 72v-245c46 -9 193 56 126 173zM208 414c-75 -15 -109 -66 -109 -117s35 -104 108 -120c0 45 1 181 1 237zM263 -181l28 -2c100 0 217 42 217 106c0 75 -139 87 -245 83v-187'], + 0x1D559: [699,0,673,24,650,'98 332c0 326 12 317 -48 319h-25c0 16 -1 32 1 32c21 0 204 16 245 16v-350c30 53 86 105 191 91c56 -9 90 -36 103 -84c7 -21 6 -13 7 -163c0 -152 -2 -150 14 -156c7 -2 21 -4 42 -5h22v-32c-13 3 -214 3 -226 0v32h22c39 2 48 4 54 18v301c-18 79 -118 69 -176 18 c-63 -55 -53 -108 -53 -206c0 -111 -2 -119 14 -126c7 -2 21 -4 42 -5h22v-32c-20 3 -306 3 -324 0v32h29c38 2 36 4 42 18c1 4 2 18 2 282zM231 642c-1 1 -31 50 -70 0c0 -187 -3 -580 -2 -582c9 -25 64 -32 71 2c1 2 1 429 1 580'], + 0x1D55A: [669,0,388,42,346,'126 616c0 43 54 73 90 37c12 -10 16 -23 16 -37c0 -48 -58 -71 -90 -38c-12 10 -16 23 -16 38zM48 431c20 0 162 11 204 11c6 0 20 1 28 -6v-387c4 -12 14 -16 48 -17h18v-32c-18 4 -286 3 -304 0v32h22c38 2 42 4 48 18c0 4 1 13 1 157c0 153 0 159 -3 170 c-5 19 -26 22 -52 22h-12c0 16 0 32 2 32zM234 363c-2 1 -42 45 -76 0c-4 -10 -2 -146 -2 -298c44 -23 56 -8 78 -3v301'], + 0x1D55B: [669,210,409,-35,316,'177 616c0 43 55 73 91 37c11 -10 16 -23 16 -37c0 -70 -107 -71 -107 0zM290 442c6 0 19 1 26 -6l-2 -516c-15 -67 -85 -122 -165 -130c-25 -2 -151 5 -178 61c-14 29 -5 61 16 71c26 15 58 -4 66 -28c8 -17 10 -37 -27 -57c17 -8 71 -29 123 -11c-1 90 7 464 -4 554 c-5 9 -22 19 -73 19h-13v32c21 0 188 11 231 11zM261 363c-12 37 -54 30 -68 0l-1 -530c38 19 59 46 69 90v440'], + 0x1D55C: [698,0,639,25,619,'27 683c20 0 203 15 243 15l1 -488l157 141c10 10 13 18 14 29c0 3 -4 14 -30 19v32c7 -1 169 -5 184 0v-32c-65 -5 -121 -50 -166 -90l-38 -34l69 -100c87 -125 92 -141 144 -143h14v-32c-12 4 -185 2 -195 0v32c41 -1 45 25 22 56c-8 12 -99 143 -100 144l-75 -66v-116 c2 -18 31 -23 77 -18v-32c-17 3 -307 3 -323 0v32c40 -7 72 -4 76 18c1 4 2 18 2 282c0 296 2 288 -7 304c-6 11 -39 14 -71 15c0 16 0 32 2 32zM212 615c-1 5 -43 43 -74 0c0 -187 -1 -553 0 -555c6 -18 57 -15 74 -6v561'], + 0x1D55D: [690,0,390,44,372,'46 683c82 1 171 13 248 5c0 -301 1 -634 2 -638c5 -14 37 -16 76 -18v-32c-20 3 -310 3 -328 0v32c38 2 70 4 76 18c1 4 2 18 2 282c0 296 1 287 -7 304c-6 12 -38 16 -71 15c0 16 0 32 2 32zM233 615c-1 8 -40 35 -71 0c-5 -10 -5 4 -5 -283c0 -187 0 -270 1 -272 c6 -20 58 -38 74 2'], + 0x1D55E: [466,0,977,25,959,'27 431c20 0 214 11 255 11c5 0 9 1 16 -6v-86c31 117 236 184 287 -5c67 172 242 141 282 32c12 -32 13 -39 14 -184c0 -152 -2 -150 14 -156c7 -2 43 -4 64 -5v-32c-13 3 -219 3 -231 0v32h22c38 2 48 4 54 18c1 4 2 12 2 137c0 132 17 231 -81 231 c-84 0 -121 -69 -132 -111c-5 -21 -5 -23 -5 -143c0 -112 -2 -120 14 -127c7 -2 43 -4 64 -5v-32c-13 3 -219 3 -231 0v32c38 -1 75 4 81 18c1 4 2 12 2 137c0 132 12 231 -86 231c-84 0 -118 -69 -129 -111c-5 -21 -5 -23 -5 -143c0 -112 -2 -120 14 -127c7 -2 35 -4 56 -5 v-32h-343v32h22c38 2 48 4 54 18c1 4 2 13 2 156c0 157 1 161 -7 178c-6 14 -36 20 -71 15c0 16 0 32 2 32zM140 62c3 -21 55 -23 85 -2c1 2 0 191 0 293c-30 23 -80 16 -85 0c0 -79 -1 -289 0 -291'], + 0x1D55F: [457,0,684,27,665,'140 62c3 -21 55 -23 85 -2c1 2 0 191 0 293c-30 23 -80 16 -85 0c0 -79 -1 -289 0 -291zM29 431c20 0 197 11 238 11c5 0 9 1 16 -6v-87c26 41 55 94 118 107c30 6 155 -4 179 -99c7 -23 6 -14 7 -164c0 -152 -2 -150 14 -156c7 -2 21 -4 42 -5h22v-32 c-12 4 -225 0 -226 0v32h22c38 2 48 4 54 18c1 4 2 12 2 136c0 113 19 238 -87 232c-86 0 -133 -68 -143 -119c-4 -17 -4 -27 -4 -136c0 -111 -2 -119 14 -126c10 -8 54 -4 64 -5v-32c-19 3 -314 3 -334 0v32c45 -1 74 3 76 18c1 4 2 13 2 156c0 157 2 161 -7 178 c-6 11 -37 16 -71 15'], + 0x1D560: [462,11,602,27,572,'140 417c169 111 424 9 432 -183c2 -54 -18 -121 -61 -163c-148 -150 -439 -82 -479 104c-18 86 25 188 108 242zM439 374c-76 74 -214 39 -200 42l-1 -393c27 -9 122 -23 193 36c71 61 85 238 8 315zM160 387c-112 -75 -119 -253 0 -332c0 100 1 332 0 332'], + 0x1D561: [442,194,681,29,666,'31 431c21 0 199 11 240 11c6 0 16 1 23 -6l1 -70c103 137 308 78 359 -79c46 -136 -45 -296 -190 -296c-36 0 -119 5 -168 73c-2 2 0 -112 0 -208c5 -14 15 -16 54 -18h22v-32c-20 3 -325 3 -343 0v32h22c38 2 48 4 54 18c1 4 2 17 2 253c0 267 3 258 -7 275 c-6 11 -39 14 -71 15c0 16 0 32 2 32zM467 28v380c-23 9 -38 11 -66 4c-80 -24 -101 -89 -106 -106v-178c30 -97 145 -100 172 -100zM513 38c18 28 26 30 46 72c46 92 27 234 -46 289v-361zM146 363v-497c1 -14 62 -29 85 2v495c-23 8 -37 30 -85 0'], + 0x1D562: [442,194,681,22,660,'658 431c-21 0 -199 11 -240 11c-6 0 -16 1 -23 -6l-1 -70c-103 137 -308 78 -359 -79c-46 -136 45 -296 190 -296c36 0 119 5 168 73c2 2 0 -112 0 -208c-5 -14 -15 -16 -54 -18h-22v-32c20 3 325 3 343 0v32h-22c-38 2 -48 4 -54 18c-1 4 -2 17 -2 253 c0 267 -3 258 7 275c6 11 39 14 71 15c0 16 0 32 -2 32zM222 28v380c23 9 38 11 66 4c80 -24 101 -89 106 -106v-178c-30 -97 -145 -100 -172 -100zM176 38c-18 28 -26 30 -46 72c-46 92 -27 234 46 289v-361zM543 363v-497c-1 -14 -62 -29 -85 2v495c23 8 37 30 85 0'], + 0x1D563: [442,0,509,27,497,'29 431c20 0 169 11 209 11c5 0 42 1 49 -6l1 -106c10 31 44 107 129 112c63 0 82 -41 80 -65c-3 -51 -81 -57 -87 -1c-2 40 37 43 12 43c-89 0 -134 -112 -134 -192v-170c6 -18 21 -25 89 -25v-32c-18 3 -333 3 -350 0v32c42 -1 70 1 72 18c1 4 2 13 2 156 c0 157 2 161 -7 178c-7 10 -35 14 -67 15c0 16 0 32 2 32zM222 363c-15 21 -55 38 -77 0v-303c14 -27 67 -28 76 2c1 2 1 219 1 301'], + 0x1D564: [454,14,496,32,463,'44 -11c-4 0 -7 0 -11 6c0 93 -3 175 3 178c2 0 8 1 11 1c9 0 10 -2 14 -17c42 -150 169 -148 201 -145v179c-4 4 -92 16 -141 34c-90 35 -106 99 -70 156c53 84 253 99 333 32c20 17 38 35 43 35c4 0 7 0 11 -6v-141c-7 -7 -5 -6 -13 -6c-10 0 -13 1 -13 17 c-7 85 -70 116 -162 116h-11v-150c58 -10 207 -40 223 -133c8 -47 -20 -93 -53 -118c-61 -45 -227 -70 -312 15l-21 -24c-18 -21 -22 -29 -32 -29zM187 425c-10 0 -75 -10 -103 -38c-16 -18 -19 -39 -7 -57c25 -34 110 -45 110 -45v140zM319 15c10 3 106 12 106 86 c0 14 -8 61 -106 83v-169'], + 0x1D565: [615,11,499,23,482,'254 615h58v-184h150v-32h-150v-384c54 0 111 25 131 66c8 16 8 19 9 62v38h30v-39c-1 -38 0 -50 -14 -76c-57 -105 -323 -109 -350 25c-2 9 -2 10 -3 159v149h-92v23c123 7 231 100 231 193zM245 20v379h-82v-143c0 -151 0 -153 5 -169c14 -51 62 -63 77 -67'], + 0x1D566: [442,11,699,23,675,'25 431c21 0 175 11 216 11c6 0 42 1 49 -6v-414c81 -13 209 7 230 112c2 8 2 12 3 114c0 137 15 148 -55 151h-19v32c8 0 34 3 148 11v-182c0 -194 -1 -201 7 -213c7 -12 39 -22 71 -15v-32l-148 -11v94c-75 -113 -292 -101 -351 -70c-34 17 -63 41 -72 80 c-1 146 -3 279 -10 290s-36 16 -71 16c0 16 0 32 2 32zM223 363c-15 33 -55 48 -82 1c-1 -7 -2 -245 0 -259c5 -52 53 -67 82 -77v335'], + 0x1D567: [441,11,669,17,653,'323 -11c-73 0 -77 -1 -81 7c-44 32 -104 460 -225 403v41c19 -4 316 -2 332 1v-42c-39 5 -62 -7 -58 -28c1 -5 126 -343 127 -342c1 0 111 297 115 309c12 39 -23 61 -47 61v41c8 -3 156 -4 167 0v-41c-43 0 -70 -20 -82 -52c-4 -13 -131 -339 -137 -351 c-9 -9 -30 -7 -111 -7zM341 50c0 5 -115 315 -117 318c-14 28 -83 23 -83 1c0 -3 112 -307 117 -317c13 -27 83 -23 83 -2'], + 0x1D568: [437,12,889,17,844,'670 437c9 -2 166 -4 174 0v-38c-70 0 -79 -38 -142 -228c-32 -95 -66 -173 -67 -175c-2 -9 -22 -12 -31 -2c-1 2 -60 190 -92 285c-38 -111 -104 -282 -106 -284c-5 -6 -31 -6 -108 -6c-78 0 -77 0 -81 6c-1 2 -30 87 -65 189c-70 213 -64 204 -77 209c-8 4 -38 5 -58 6 v38c18 -4 313 -3 330 0v-38c-18 0 -63 -4 -63 -27c0 -4 8 -41 53 -172c31 -91 55 -167 55 -168c0 0 104 284 105 288c0 0 -16 66 -34 73c-6 3 -39 5 -56 6v38c11 -4 191 -3 202 0v-38c-25 0 -54 -6 -60 -16c-5 -10 -8 -2 46 -157l42 -140c1 1 93 259 95 266 c2 28 -26 50 -62 47v38zM214 372c-12 19 -77 22 -82 -1c-4 -16 102 -318 104 -320c6 -23 83 -26 83 0c0 6 -101 314 -105 321'], + 0x1D569: [431,0,704,15,676,'15 0v32c50 0 110 24 140 47c7 6 61 58 103 99c-76 104 -161 207 -174 213c-11 5 -43 8 -69 8v32c22 -4 351 -3 368 0v-32c-33 -5 -46 -21 -40 -32c1 -3 47 -66 56 -78c21 20 71 58 75 63c7 10 18 40 -13 47v32c8 -3 182 -4 193 0v-32c-86 -6 -145 -59 -187 -99l-42 -34 l153 -208c4 -4 24 -26 85 -26h13v-32c-21 4 -354 3 -371 0v32c20 -1 44 14 37 30c-1 2 -47 67 -68 94c-2 -2 -102 -84 -90 -107c3 -6 11 -15 21 -17v-32c-8 3 -163 3 -190 0zM266 371c-16 13 -115 18 -104 -4c2 -5 226 -298 231 -304c10 -28 93 -13 109 -1 c-1 1 -51 71 -112 154c-76 104 -121 152 -124 155'], + 0x1D56A: [431,204,700,17,674,'476 431c11 -3 191 -4 198 0v-32c-11 0 -73 -4 -101 -49c-7 -11 -254 -447 -256 -450c-27 -45 -120 -104 -200 -104c-78 0 -101 83 -89 115c15 38 77 35 82 -13c2 -37 -28 -44 -39 -46c39 -31 94 -30 143 12c26 22 66 44 89 108c-54 102 -202 410 -205 414 c-11 16 -44 12 -81 13v32c18 -4 323 -3 340 0v-32c-36 4 -66 -2 -51 -25c1 -4 112 -215 113 -214c1 0 98 186 100 192c7 25 -6 46 -43 47v32zM231 373c-20 20 -83 18 -83 -3l176 -333c1 1 43 80 43 82c-51 97 -132 250 -136 254'], + 0x1D56B: [447,0,560,12,548,'262 27c194 0 243 0 260 161h26c0 -19 -16 -160 -16 -188l-514 1c-4 3 -4 2 -6 11c0 4 0 8 2 9c0 1 202 281 278 387c-222 -8 -176 1 -212 -132v-7h-26c4 13 10 172 12 178h474c8 -8 8 -31 6 -36c-4 -4 -284 -383 -284 -384zM484 407c2 1 -64 1 -106 1 c-2 -1 -282 -381 -282 -382h118c76 104 270 380 270 381'], + 0x1D7D8: [689,16,600,28,568,'139 621c168 165 421 13 429 -272c1 -81 -18 -181 -62 -243c-146 -223 -435 -122 -474 154c-17 129 25 281 107 361zM434 557c-74 110 -211 58 -198 63v-585c27 -14 121 -35 192 52c70 92 85 355 6 470zM173 577c-78 -114 -89 -379 0 -495c0 149 1 495 0 495'], + 0x1D7D9: [689,3,600,44,556,'154 543l-88 -30c-12 27 -18 46 -18 72c76 14 216 55 362 104l14 -10c-8 -115 -12 -180 -12 -262v-331c0 -30 24 -46 70 -48l74 -3v-38c-58 1 -114 2 -130 2c-14 0 -124 1 -160 0c-22 0 -150 -1 -222 -2v38l106 2c2 4 4 234 4 506zM194 557v-518h118v553'], + 0x1D7DA: [679,3,600,30,570,'541 89v-44c-14 -4 -386 -2 -406 -2l41 46h365zM399 341l-95 -76c38 23 186 347 -101 321c178 83 399 -27 196 -245zM30 -3h540c-3 25 -3 38 -3 54c0 23 -3 38 -1 66h-367l210 176c80 67 124 142 124 208c0 104 -108 178 -257 178c-72 0 -126 -18 -195 -62l-22 -170 l45 -3l22 70c9 31 64 57 117 57c80 0 110 -40 110 -110c0 -77 -27 -161 -121 -241l-202 -171v-52'], + 0x1D7DB: [679,17,600,36,564,'310 615c112 -59 131 -130 50 -224c238 170 40 242 -50 224zM348 325c36 -33 61 -79 61 -140c-1 -35 -10 -113 -51 -146c220 108 194 244 -10 286zM78 170c28 -55 75 -130 186 -130c77 0 115 62 115 137c0 77 -26 127 -117 127c-27 0 -50 -2 -74 -8l-9 5l23 76h42 c82 0 137 43 137 108c0 57 -47 93 -123 93c-75 0 -119 -33 -142 -104h-43l38 158c70 34 119 47 186 47c126 0 219 -61 219 -145c0 -63 -43 -109 -136 -150c54 -6 80 -12 110 -28c49 -28 74 -70 74 -125c0 -137 -155 -248 -348 -248c-59 0 -99 6 -149 24 c-17 82 -20 107 -31 153'], + 0x1D7DC: [689,3,600,50,550,'392 638l-52 -11l-28 -56v-536h80v603zM50 156v40l220 451l188 42l8 -12v-436h80v-85h-86v-42c0 -47 18 -73 56 -76l34 -3v-38c-134 3 -204 3 -218 3c-12 0 -32 0 -64 -1c-14 0 -60 -1 -108 -2v38l62 3c34 2 54 29 54 76v42h-226zM276 241v299l-160 -299h160'], + 0x1D7DD: [675,17,600,27,573,'286 9v8c-94 -12 -183 29 -232 117l-8 -2c15 -52 30 -88 35 -109c78 -28 155 -29 205 -14zM207 639h-76v-315c16 7 54 14 76 18v297zM264 554l-5 -159c69 27 49 35 100 35c147 0 214 -90 214 -204c0 -145 -178 -243 -371 -243c-55 0 -92 6 -136 22c-8 33 -16 59 -39 138 l38 18c41 -79 103 -119 187 -119c93 0 154 55 154 140c0 86 -64 142 -162 142c-53 0 -96 -12 -135 -41l-23 11v372l8 9c71 -4 146 -5 256 -7l214 7c-7 -23 -4 -46 -4 -66c0 -13 0 -27 2 -43l-8 -12c-102 2 -160 3 -173 3'], + 0x1D7DE: [679,17,600,29,571,'224 255l3 34c-2 -12 -3 -24 -3 -34zM312 638c-343 -178 -306 -630 -34 -628c-226 88 -200 388 34 628zM467 679l46 -28l-17 -17c-12 1 -22 1 -27 1c-87 0 -167 -34 -215 -96c-36 -47 -53 -101 -63 -204c58 63 105 86 177 86c114 0 203 -75 203 -194 c0 -146 -124 -244 -279 -244c-87 0 -157 26 -200 79c-38 47 -63 125 -63 209c0 144 63 257 184 336c77 51 140 70 254 72zM296 332c-73 0 -109 -42 -109 -128c0 -104 45 -170 117 -170c69 0 107 52 107 142c0 93 -46 156 -115 156'], + 0x1D7DF: [675,3,600,29,571,'495 625v23h-54l-323 -617h74c0 2 224 455 303 594zM571 671v-46l-315 -628c-12 0 -113 3 -169 0l-7 11l295 576l-5 6h-203c-58 0 -71 -8 -77 -53l-10 -66h-46v93c0 49 0 35 -5 102l13 9c52 -1 103 -2 120 -2c104 -4 172 -5 203 -5h34'], + 0x1D7E0: [679,17,600,38,562,'200 346c76 -33 162 -58 212 -105c16 -24 36 -60 34 -93c60 181 -144 189 -204 223c-54 30 -87 46 -101 118c-4 105 83 152 147 160l24 15c-136 2 -233 -82 -225 -175c4 -46 45 -114 113 -143zM180 329c-82 41 -118 85 -122 160c0 115 100 190 254 190 c130 0 214 -58 214 -147c0 -58 -30 -97 -114 -145c50 -18 72 -30 98 -56c34 -34 52 -74 52 -122c0 -130 -120 -226 -282 -226c-142 0 -242 73 -242 176c0 73 46 129 142 170zM302 273l-72 28c-64 -48 -84 -71 -84 -125c0 -80 64 -140 152 -140c74 0 121 50 121 118 c0 59 -24 96 -117 119zM300 424l52 -20c54 38 72 68 72 111c0 66 -50 106 -126 106c-68 0 -107 -32 -107 -87c0 -50 23 -79 109 -110'], + 0x1D7E1: [679,17,600,38,562,'325 646c94 -39 124 -129 124 -247c0 -144 -30 -256 -122 -336c256 93 252 559 -2 583zM128 -17l-46 29l11 19c17 -2 30 -3 38 -3c33 0 88 12 123 29c56 25 99 76 122 141c13 36 19 64 25 126l-76 -57c-24 -17 -48 -24 -88 -24c-127 0 -199 71 -199 196 c0 148 101 240 263 240c170 0 261 -98 261 -278c0 -181 -101 -328 -266 -390c-54 -20 -88 -25 -168 -28zM292 625c-69 0 -111 -50 -111 -136c0 -97 46 -157 122 -157c72 0 105 39 105 125c0 108 -41 168 -116 168'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/DoubleStruck/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Fraktur/Regular/Main.js new file mode 100644 index 0000000..5b8b90f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Fraktur/Regular/Main.js @@ -0,0 +1,129 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'AsanaMathJax_Fraktur', + id: 'ASANAMATHFRAKTUR', + 0x20: [0,0,249,0,0,''], + 0x210C: [719,166,697,29,657,'657 204c0 -227 -220 -272 -260 -370c-35 39 -86 83 -142 83c-32 0 -60 -18 -80 -42l-12 9c40 44 91 99 156 99c47 0 93 -35 126 -65c82 56 124 137 124 236c0 103 -73 254 -189 254c-39 0 -84 -28 -116 -49c35 -41 74 -93 74 -150c0 -100 -118 -153 -180 -215l-78 62 l-38 -30l-13 14l114 91l79 -62c24 18 46 45 46 76c0 115 -154 176 -154 316c0 125 123 180 199 258c31 -34 75 -61 122 -61c36 0 70 18 88 49l16 -5c-34 -53 -82 -108 -150 -108c-48 0 -88 30 -125 57c-45 -32 -78 -73 -78 -131c0 -54 26 -106 65 -143c61 32 121 67 172 112 c132 -41 234 -140 234 -285'], + 0x2128: [709,171,697,-7,608,'608 84c0 -171 -153 -255 -307 -255c-205 0 -172 186 -247 186c-28 0 -42 -30 -45 -53h-16c6 53 51 87 103 87c149 0 109 -198 255 -198c123 0 149 104 149 206c0 89 -6 248 -129 248c-47 0 -86 -28 -102 -72l-15 8c13 36 42 61 77 74c-32 12 -57 33 -74 64l14 10 c18 -31 50 -60 89 -60c91 0 124 85 124 162c0 105 -44 200 -162 200c-87 0 -191 -63 -191 -159c0 -17 3 -35 10 -51l-14 -7c-8 19 -13 40 -13 60c0 112 118 175 218 175c115 0 251 -66 251 -197c0 -100 -89 -165 -176 -193c120 -25 201 -108 201 -235'], + 0x212D: [719,4,645,53,629,'629 189c-43 -122 -132 -193 -263 -193c-200 0 -313 187 -313 369c0 107 41 337 181 337c49 0 83 -38 97 -82l78 99c36 -23 78 -50 122 -50c28 0 53 15 70 37l15 -8c-33 -47 -81 -94 -143 -94c-39 0 -70 16 -104 34c-16 -17 -35 -41 -35 -66c0 -88 109 -176 109 -266 c0 -68 -45 -125 -94 -167l-10 15c22 19 34 42 34 71c0 87 -99 163 -99 258c0 42 20 82 42 117c-5 39 -32 81 -75 81c-106 0 -106 -165 -106 -239c0 -159 48 -367 245 -367c91 0 192 27 233 114h16'], + 0x1D504: [721,4,697,20,675,'675 88c-47 -23 -84 -51 -117 -92c-36 63 -76 48 -82 142c-69 -39 -148 -78 -196 -142c-42 58 -111 113 -183 126v10c159 68 179 148 179 310v98c0 64 -23 157 -103 157c-47 0 -101 -43 -101 -92c0 -83 120 -96 120 -199c0 -52 -43 -103 -90 -119l-6 16c19 6 48 25 48 48 c0 77 -124 86 -124 197c0 91 87 172 177 172c120 0 179 -82 179 -196v-81c0 -149 -59 -182 -168 -266c38 -37 80 -70 124 -101c48 30 95 59 145 86v365c0 65 -18 108 -70 147l13 13c23 -18 53 -29 82 -29c50 0 113 55 172 63v-24c-100 -12 -111 -120 -111 -201v-311 c0 -36 8 -100 55 -100c16 0 35 13 47 22'], + 0x1D505: [720,7,801,60,747,'747 256c0 -156 -166 -263 -309 -263c-153 0 -219 133 -289 133c-33 0 -60 -32 -74 -60l-15 10c35 56 88 106 158 106c11 0 23 -1 35 -4c67 66 76 135 76 224c0 86 16 281 -113 281c-41 0 -102 -36 -102 -82c0 -86 113 -103 113 -194c0 -69 -36 -109 -100 -130l-4 17 c23 8 58 26 58 55c0 59 -113 79 -113 179c0 101 84 187 186 187c65 0 121 -31 149 -90c60 22 128 51 175 95c62 -40 134 -54 134 -143c0 -68 -54 -109 -105 -143c79 -30 140 -89 140 -178zM634 529c0 59 -47 116 -107 116c-39 0 -83 -21 -115 -41c20 -68 16 -142 13 -212 c75 9 209 43 209 137zM672 188c0 111 -100 188 -206 188c-14 0 -28 -1 -42 -4c-13 -111 -80 -134 -152 -203c68 -47 152 -138 239 -138s161 69 161 157'], + 0x1D507: [708,4,801,69,746,'746 325c0 -169 -108 -329 -290 -329c-127 0 -187 109 -269 109c-38 0 -66 -29 -86 -58l-15 9c35 60 93 113 166 113c17 0 34 -3 51 -9c17 22 35 48 35 78c0 65 -69 113 -69 197c0 77 65 128 114 179c-24 5 -49 6 -74 6c-68 0 -215 -25 -215 -116c0 -10 3 -20 8 -28 l-11 -7c-16 18 -22 43 -22 66c0 126 157 173 260 173c210 0 417 -163 417 -383zM719 289c0 179 -141 298 -310 322c-32 -28 -69 -62 -69 -107c0 -66 73 -108 73 -195c0 -65 -56 -109 -92 -157c66 -35 124 -95 204 -95c129 0 194 116 194 232'], + 0x1D508: [719,4,645,54,629,'629 189c-37 -122 -131 -193 -260 -193c-201 0 -315 188 -315 372c0 108 43 334 183 334c52 0 83 -39 95 -86l81 103c35 -24 79 -50 123 -50c28 0 52 15 69 37l14 -9c-34 -46 -82 -93 -144 -93c-37 0 -72 15 -103 34c-18 -18 -37 -40 -37 -67c0 -48 58 -135 83 -178 c26 34 85 98 130 98c41 0 66 -40 75 -76l-79 -56c-7 26 -24 65 -56 65c-24 0 -48 -32 -60 -50c10 -23 17 -49 17 -75c0 -65 -49 -119 -94 -161l-12 14c24 22 36 43 36 75c0 85 -100 164 -100 257c0 39 22 83 43 115c-5 38 -30 82 -73 82c-108 0 -109 -161 -109 -237 c0 -167 47 -369 253 -369c84 0 191 31 226 116'], + 0x1D509: [715,157,697,74,663,'663 388l-23 -74c-15 11 -33 20 -52 20c-55 0 -61 -69 -60 -110c31 -43 53 -97 53 -150c0 -128 -119 -231 -243 -231c-113 0 -232 96 -232 213c0 89 85 165 85 220c0 32 -38 46 -65 46l5 16h6c58 0 125 -43 125 -106c0 -93 -77 -146 -77 -226c0 -83 77 -141 156 -141 c92 0 162 61 162 155c0 140 -152 211 -152 341c0 74 32 143 74 203c-78 25 -120 78 -208 78c-56 0 -119 -34 -119 -96c0 -45 37 -89 83 -89c24 0 47 9 67 24l3 -19c-22 -15 -47 -25 -73 -25c-62 0 -104 57 -104 116c0 96 100 162 188 162c117 0 207 -95 282 -95 c43 0 70 31 68 73h17c0 -78 -62 -142 -140 -142c-16 0 -32 2 -47 7c-20 -33 -38 -69 -38 -109c0 -72 63 -149 108 -202c0 68 -1 176 93 176c24 0 46 -15 58 -35'], + 0x1D50A: [721,4,801,88,740,'740 277c0 -174 -144 -281 -309 -281c-210 0 -343 167 -343 369c0 119 74 337 220 337c47 0 84 -29 101 -71c30 28 59 58 85 90c32 -29 77 -62 122 -62c30 0 57 18 75 40l12 -12c-35 -41 -87 -92 -144 -92c-41 0 -79 23 -111 47c-28 -21 -51 -50 -51 -87 c0 -48 43 -120 68 -161c21 54 61 82 120 82c100 0 155 -111 155 -199zM642 289c0 57 1 165 -80 165c-48 0 -77 -48 -83 -90c10 -25 21 -55 21 -82c0 -87 -67 -154 -143 -186l-6 13c36 22 68 46 68 92c0 96 -95 183 -95 288c0 49 36 93 68 127c-11 38 -41 67 -83 67 c-116 0 -117 -206 -117 -287c0 -172 8 -383 234 -383c186 0 216 116 216 276'], + 0x1D50D: [719,162,645,-1,586,'580 666c-11 -70 -68 -126 -141 -126c-127 0 -183 122 -279 122c-55 0 -93 -47 -93 -100c0 -50 45 -94 95 -94c19 0 38 6 55 16l11 -15c-21 -11 -44 -18 -68 -18c-65 0 -112 52 -112 116c0 90 88 152 172 152c127 0 182 -125 263 -125c43 0 78 30 82 74zM586 98 c0 -142 -135 -260 -274 -260c-183 0 -169 182 -248 182c-29 0 -43 -34 -46 -58h-19c9 58 53 107 115 107c124 0 137 -198 254 -198c89 0 139 76 139 158c0 125 -129 215 -129 338c0 62 43 139 113 139c31 0 61 -18 78 -42l-8 -15c-16 23 -40 40 -67 40 c-29 0 -56 -24 -56 -54c0 -92 148 -223 148 -337'], + 0x1D50E: [716,4,697,2,659,'659 68c-36 -20 -70 -42 -97 -72c-89 68 -96 128 -119 231c-11 51 -36 137 -101 137c-24 0 -64 -15 -88 -22c30 -39 49 -85 49 -135c0 -103 -122 -154 -189 -211l-70 70l-35 -27l-7 18l104 83l70 -74c31 17 52 39 52 77c0 92 -136 218 -136 333c0 141 108 240 247 240 c241 0 192 -253 265 -253c12 0 23 3 35 6v-17l-192 -55c107 -60 98 -324 171 -324c14 0 30 10 41 18v-23zM548 448c-151 34 -72 243 -232 243c-87 0 -138 -74 -138 -155c0 -64 31 -124 66 -177'], + 0x1D50F: [719,4,645,37,603,'603 149c-32 -75 -122 -153 -208 -153c-110 0 -178 101 -255 101c-41 0 -71 -23 -89 -58l-14 8c35 61 94 118 167 120c16 22 29 49 29 77c0 88 -111 148 -111 254c0 114 109 221 222 221c99 0 221 -94 221 -198c0 -83 -78 -139 -78 -188c0 -22 17 -41 35 -53l-9 -14 c-46 27 -87 74 -87 129c0 68 63 117 63 184c0 75 -78 122 -146 122c-69 0 -149 -48 -149 -124c0 -108 101 -157 101 -244c0 -61 -38 -117 -71 -167c87 -20 148 -104 241 -104c57 0 104 45 122 97'], + 0x1D510: [714,4,957,11,936,'936 484c-91 -20 -112 -61 -112 -150v-145c0 -32 7 -112 51 -112c19 0 36 12 49 25l11 -13l-117 -93c-85 79 -85 113 -85 225c0 152 8 220 165 271c-181 34 -59 201 -174 201c-124 0 -95 -249 -95 -324c0 -211 -45 -254 -209 -373l-69 69l-39 -32l-12 14l114 90l69 -70 c50 35 52 132 52 187l-1 295c0 54 -8 142 -79 142c-61 0 -89 -70 -89 -122v-225c0 -200 -72 -239 -220 -348l-64 69l-38 -30l-12 14l111 87l68 -67c56 35 58 120 58 180v223c0 77 -4 219 -111 219c-53 0 -103 -45 -103 -99c0 -89 129 -96 129 -204c0 -55 -31 -110 -82 -134 l-8 13c25 13 47 33 47 64c0 68 -130 80 -130 202c0 102 76 181 178 181c74 0 142 -48 160 -119c15 69 56 118 131 118c81 0 129 -44 140 -124c5 74 48 124 125 124c216 0 75 -201 182 -212c4 0 7 1 9 1v-18'], + 0x1D511: [716,6,748,16,716,'716 95c-45 -29 -90 -59 -127 -99c-81 80 -92 120 -92 232c0 153 25 195 162 263c-99 18 -109 35 -123 132c-6 39 -19 69 -64 69c-66 0 -90 -73 -90 -128v-273c0 -191 -155 -241 -206 -297l-71 73l-41 -32l-12 14l116 91l72 -74c42 28 45 82 45 128v205 c0 82 6 289 -116 289c-54 0 -107 -43 -107 -99c0 -78 132 -89 132 -208c0 -57 -35 -110 -87 -133l-3 18c23 13 48 31 48 60c0 75 -136 90 -136 209c0 98 85 179 182 179c75 0 139 -48 168 -116c11 66 55 118 126 118c230 0 75 -222 214 -216v-17 c-118 -8 -122 -110 -122 -203c0 -48 -1 -195 70 -195c20 0 37 13 50 26'], + 0x1D512: [707,4,801,42,754,'754 346c0 -190 -123 -350 -323 -350c-148 0 -212 121 -289 121c-37 0 -70 -34 -86 -64l-14 8c24 60 78 121 147 127c18 21 34 47 34 76c0 83 -112 122 -112 225c0 86 55 165 117 218c14 -16 33 -23 54 -23c54 0 104 23 158 23c195 0 314 -181 314 -361zM727 336 c0 158 -90 275 -255 275c-55 0 -109 -22 -164 -22c-57 0 -71 45 -87 91c-28 -26 -49 -65 -49 -105c0 -91 114 -133 114 -233c0 -53 -41 -116 -75 -153c113 -24 175 -131 302 -131c147 0 214 150 214 278'], + 0x1D513: [721,163,801,37,715,'715 494c-43 0 -112 -8 -112 -65c0 -60 102 -101 102 -190c0 -106 -128 -230 -234 -230c-28 0 -56 12 -80 26c-8 -67 -18 -133 -31 -198h-24c-16 78 -29 156 -31 235c-28 20 -61 39 -96 39c-32 0 -60 -24 -80 -47l-12 12c43 61 110 104 187 93v300c0 74 -11 230 -113 230 c-48 0 -114 -45 -114 -97c0 -79 138 -104 138 -214c0 -56 -41 -103 -92 -124l-3 19c24 8 49 28 49 55c0 64 -132 81 -132 199c0 99 77 183 177 183c73 0 140 -52 168 -118c13 72 53 119 129 119c72 0 140 -43 140 -122c0 -52 0 -90 64 -87v-18zM663 507 c-69 12 -108 31 -108 108c0 41 -23 82 -69 82c-75 0 -93 -95 -93 -154v-401c34 -30 101 -80 148 -80c55 0 97 44 97 98c0 91 -106 119 -106 214c0 71 68 118 131 133'], + 0x1D514: [706,4,801,41,800,'800 69c-22 -33 -55 -68 -98 -68c-35 0 -66 28 -87 54c-53 -36 -120 -59 -186 -59c-146 0 -211 120 -288 120c-37 0 -70 -34 -86 -64l-14 8c24 61 78 121 147 127c18 21 34 47 34 76c0 83 -113 122 -113 226c0 85 56 164 118 217c14 -15 33 -23 54 -23 c54 0 104 23 158 23c195 0 314 -181 314 -361c0 -82 -21 -167 -75 -231c16 -18 43 -52 70 -52c20 0 39 15 50 31zM726 334c0 159 -89 275 -255 275c-55 0 -109 -20 -164 -20c-59 0 -70 44 -87 90c-28 -26 -49 -66 -49 -105c0 -91 114 -133 114 -233c0 -53 -40 -116 -76 -153 c114 -23 176 -131 303 -131c29 0 59 7 84 21c-18 26 -51 71 -87 71c-16 0 -32 -10 -43 -23l-13 12c27 26 66 66 106 66c44 0 76 -40 104 -69c44 57 63 128 63 199'], + 0x1D516: [706,4,801,103,757,'757 689c-36 -66 -100 -122 -179 -122c-77 0 -153 71 -258 71c-139 0 -196 -145 -196 -264c0 -221 156 -279 349 -279c101 0 262 21 262 153c0 59 -50 104 -108 104c-89 0 -149 -71 -232 -71c-62 0 -130 41 -130 110c0 22 9 43 26 57l10 -12c-9 -10 -16 -23 -16 -38 c0 -30 26 -47 53 -47c76 0 124 75 228 75c107 0 188 -83 188 -189c0 -163 -161 -241 -305 -241c-213 0 -346 172 -346 376c0 165 113 334 290 334c99 0 174 -67 254 -67c40 0 74 22 95 56'], + 0x1D517: [707,4,697,42,688,'688 152c-47 -78 -127 -156 -224 -156c-106 0 -200 103 -291 103c-47 0 -82 -35 -104 -73l-15 8c34 63 106 135 183 135c42 0 82 -14 118 -33c18 19 37 41 37 69c0 60 -68 101 -68 182c0 64 51 119 91 162c-78 34 -153 87 -241 87c-54 0 -113 -37 -113 -96 c0 -56 40 -94 96 -84l-4 -15c-7 -2 -14 -3 -22 -3c-58 0 -89 49 -89 103c0 97 102 166 192 166c146 0 218 -101 318 -101c53 0 90 35 117 77l15 -9c-44 -65 -102 -139 -188 -139c-20 0 -41 4 -61 9c-18 -16 -46 -46 -46 -72c0 -60 72 -107 72 -183c0 -66 -46 -118 -92 -161 c48 -26 111 -62 167 -62c62 0 106 45 137 94'], + 0x1D518: [720,4,697,49,683,'683 699c-117 -15 -121 -175 -121 -264v-226c0 -34 4 -124 53 -124c19 0 40 13 54 24l7 -20c-47 -24 -93 -52 -127 -93c-48 58 -75 71 -75 153c-73 -46 -148 -91 -209 -153c-30 48 -132 121 -188 130v8c126 67 102 188 102 310c0 48 0 185 -70 185c-18 0 -36 -11 -50 -22 l-10 18c47 28 89 60 130 95c82 -77 95 -137 95 -245c0 -146 20 -189 -103 -282c49 -45 101 -88 158 -119l146 100v340c0 60 -12 113 -67 146l13 19c23 -16 52 -26 80 -26c66 0 118 65 182 65v-19'], + 0x1D519: [714,4,801,48,705,'705 499l-3 -18c-37 -1 -100 -18 -100 -64c0 -63 102 -106 102 -189c0 -131 -163 -232 -282 -232c-142 0 -199 130 -273 130c-34 0 -64 -29 -83 -57l-17 8c50 64 109 119 196 107c59 35 63 112 63 174v138c0 73 -19 189 -114 189c-42 0 -99 -41 -99 -86 c0 -91 127 -83 127 -198c0 -56 -31 -103 -82 -126l-5 14c22 11 48 30 48 57c0 58 -135 85 -135 190c0 99 86 176 183 176c68 0 127 -34 154 -98c18 61 66 100 130 100c210 0 99 -207 190 -215zM665 494c-179 41 -52 195 -173 195c-84 0 -91 -98 -91 -161c0 -39 5 -77 5 -117 c0 -106 -61 -176 -142 -236c80 -34 137 -140 231 -140c64 0 134 50 134 119c0 92 -100 114 -100 206c0 73 74 116 136 134'], + 0x1D51A: [713,-2,957,25,931,'931 493c-39 0 -111 -21 -111 -70c0 -70 107 -101 107 -201c0 -102 -102 -216 -206 -216c-90 0 -127 82 -195 82c-50 0 -91 -86 -194 -86c-91 0 -135 90 -201 90c-30 0 -55 -21 -70 -46l-14 10c31 46 81 102 141 102c10 0 19 -2 28 -5c77 51 60 191 60 273 c0 78 -2 258 -114 258c-48 0 -89 -44 -89 -92c0 -85 120 -86 120 -207c0 -60 -35 -101 -87 -126l-8 16c23 11 54 31 54 61c0 72 -127 84 -127 200c0 92 83 175 176 175c63 0 121 -45 148 -100c12 65 65 101 128 101c62 0 110 -34 131 -93c9 61 64 94 121 94 c217 0 64 -210 202 -204v-16zM877 502c-177 23 -52 189 -172 189c-53 0 -82 -51 -82 -99c0 -60 6 -121 6 -183c0 -118 -21 -183 -91 -280c18 9 39 15 59 15c80 0 123 -85 189 -85c48 0 83 41 83 87c0 90 -117 122 -117 217c0 70 64 120 125 139zM534 357v135 c0 56 -5 197 -86 197c-57 0 -83 -58 -83 -108c0 -63 7 -125 7 -188c0 -115 -44 -186 -138 -249c48 -20 121 -93 168 -93c26 0 50 17 67 34c63 59 65 192 65 272'], + 0x1D51B: [719,4,645,29,629,'629 123c-49 -39 -101 -78 -140 -127c-100 69 -135 63 -180 189c-17 -83 -101 -141 -164 -189l-76 80l-29 -23l-11 14l103 88l80 -81c63 52 89 98 89 181v85h-139v46h139v19c0 80 -9 227 -119 227c-34 0 -65 -17 -90 -38l-11 15c46 27 107 68 140 110 c81 -34 141 -88 156 -178c20 83 92 132 158 178l67 -75l18 16l9 -16l-92 -77l-68 77c-51 -35 -78 -88 -78 -150v-108h150v-46h-150v-52c0 -84 42 -193 141 -193c35 0 66 22 91 44'], + 0x1D51C: [719,165,748,19,641,'406 -99c101 63 136 102 136 524c0 63 0 272 -94 272c-101 0 -74 -149 -74 -211c0 -177 -7 -209 -152 -317l115 -83c19 14 39 28 60 40l12 -13c-47 -28 -89 -64 -127 -104c-48 52 -105 92 -176 104v10c158 74 168 128 168 294v111c0 67 -23 166 -107 166 c-51 0 -102 -43 -102 -96c0 -70 123 -78 123 -194c0 -51 -34 -113 -87 -125l-5 16c22 7 47 25 47 51c0 68 -124 81 -124 194c0 101 80 178 181 178c72 0 127 -40 152 -107c10 61 46 108 111 108c174 0 178 -219 178 -344c0 -156 -8 -299 -125 -416 c-49 -48 -109 -82 -162 -124c-36 28 -78 56 -126 56c-32 0 -64 -14 -85 -38l-12 9c40 49 96 92 162 92c43 0 84 -22 113 -53'], + 0x1D51E: [504,6,478,67,469,'469 60c-32 -18 -63 -42 -92 -66c-30 24 -58 50 -58 92c-52 -25 -103 -52 -146 -91c-86 59 -106 123 -106 224c0 104 22 171 112 230c25 17 53 32 73 55c52 -38 112 -65 176 -77v-11c-30 -5 -36 -42 -36 -67v-218c0 -22 4 -69 34 -69c15 0 31 11 42 20zM319 109v267 c-26 29 -84 50 -121 63c-54 -25 -52 -162 -52 -213c0 -50 3 -163 74 -163c26 0 77 31 99 46'], + 0x1D51F: [683,9,478,23,436,'436 265c0 -241 -114 -171 -180 -274c-61 32 -124 63 -192 80v8c24 8 30 29 30 53v361c0 67 -6 113 -71 146l6 15c23 -10 48 -18 73 -18c60 0 105 39 163 47l2 -19c-76 -9 -100 -62 -100 -132v-120c51 24 104 45 149 79c88 -44 120 -133 120 -226zM356 226 c0 67 -5 199 -98 199c-22 0 -72 -20 -92 -30l1 -275c0 -21 107 -64 127 -64c62 0 62 128 62 170'], + 0x1D520: [500,4,374,85,356,'356 449c-20 -32 -51 -58 -91 -58c-29 0 -54 25 -76 43c-29 -28 -28 -123 -28 -162c0 -67 -2 -203 94 -203c31 0 61 14 88 28l9 -16c-48 -18 -98 -49 -134 -85c-117 63 -133 126 -133 252c0 160 52 155 153 252c16 -21 43 -55 71 -55c14 0 28 6 38 14'], + 0x1D521: [696,4,478,54,447,'447 254c0 -188 -63 -160 -187 -258c-60 42 -127 78 -202 82v10c30 7 43 25 43 55v277c50 9 99 22 146 41c-54 28 -193 71 -193 145c0 40 30 71 63 90l9 -13c-11 -7 -28 -22 -28 -37c0 -44 96 -82 130 -97c153 -66 219 -118 219 -295zM365 223c0 95 -1 177 -96 226 c-31 -14 -65 -22 -97 -32v-293c34 -20 104 -61 143 -61c50 0 50 125 50 160'], + 0x1D522: [503,5,426,78,392,'392 81c-52 -24 -104 -49 -148 -86c-129 70 -166 120 -166 269c0 170 65 181 203 239l99 -181l-224 -100c5 -73 55 -155 135 -155c33 0 72 20 101 36v-22zM307 312l-81 148c-64 -24 -74 -52 -74 -117c0 -34 1 -67 3 -100'], + 0x1D523: [719,162,322,27,293,'293 698c0 -40 -25 -89 -70 -89c-35 0 -63 35 -89 35c-17 0 -22 -15 -22 -29c0 -99 87 -141 175 -141v-40h-91c0 -199 -19 -398 -36 -596h-16c-16 199 -35 397 -35 596h-82v39c47 2 71 24 71 71c0 31 -9 60 -9 90c0 39 31 78 72 78c39 0 67 -33 90 -33c22 0 27 23 23 40 h17c2 -7 2 -14 2 -21'], + 0x1D524: [505,163,478,54,443,'443 403c-36 -7 -45 -26 -45 -61v-200c0 -64 44 -93 44 -149c0 -110 -119 -156 -213 -156c-56 0 -166 9 -166 87c0 14 6 29 14 40l82 -19c-6 -11 -10 -24 -10 -36c0 -44 54 -53 88 -53c65 0 134 26 134 102c0 43 -38 88 -45 135c-55 -25 -109 -53 -159 -88 c-81 47 -113 126 -113 215c0 239 114 176 185 285c50 -49 135 -80 204 -90v-12zM326 118v249c-24 33 -94 54 -131 72c-60 -27 -66 -86 -66 -144c0 -61 -4 -226 86 -226c26 0 86 35 111 49'], + 0x1D525: [696,165,478,25,438,'438 216c0 -162 -60 -294 -204 -381h-32c125 80 159 207 159 348c0 66 -8 246 -103 246c-32 0 -70 -20 -96 -35v-290c15 -18 33 -33 51 -47l50 35l6 -18c-35 -22 -68 -49 -97 -78c-31 36 -72 61 -119 68v10c31 5 38 32 38 59v379c0 62 -6 110 -66 143l8 16 c19 -11 43 -20 65 -20c58 0 105 41 162 45v-20c-75 -14 -98 -62 -98 -133v-124c51 17 116 50 159 82c96 -77 117 -166 117 -285'], + 0x1D526: [703,4,270,32,258,'199 661c0 -32 -39 -75 -57 -99c-19 21 -55 66 -55 95c0 27 27 46 52 46s60 -11 60 -42zM258 69c-38 -21 -74 -45 -107 -73c-33 28 -54 71 -54 115c0 84 6 167 6 251c0 21 -5 50 -32 50c-14 0 -28 -7 -39 -14v18c39 24 76 52 108 85c25 -30 51 -63 89 -75v-9 c-43 -5 -52 -34 -54 -73c-4 -70 -6 -141 -6 -212c0 -20 6 -64 33 -64c20 0 39 13 56 23v-22'], + 0x1D527: [705,169,270,32,229,'199 663c0 -31 -39 -75 -57 -99c-19 20 -55 67 -55 94s27 47 52 47s60 -11 60 -42zM229 421c-42 -6 -51 -49 -51 -86v-357c0 -34 4 -72 37 -89v-16c-12 3 -23 5 -35 5c-60 0 -98 -45 -140 -47l-4 17c67 20 70 111 70 169v337c0 19 2 66 -26 66c-18 0 -34 -9 -48 -19v18 c39 24 76 52 108 85c24 -30 52 -62 89 -75v-8'], + 0x1D528: [702,4,322,21,308,'308 685c-116 0 -127 -54 -127 -156c28 50 62 78 122 78v-62c-16 4 -32 7 -49 7c-63 0 -73 -35 -73 -90h121v-40h-121v-285c0 -30 17 -66 51 -66c17 0 53 26 68 36v-21c-38 -27 -75 -55 -106 -90c-37 31 -78 58 -126 67v13c44 5 47 38 47 73v273h-94v32c65 2 96 22 96 90 c0 62 -28 90 -80 117l8 13c21 -11 46 -19 70 -19c65 0 123 47 193 47v-17'], + 0x1D529: [696,5,270,42,265,'265 64c-31 -21 -64 -41 -90 -69c-29 34 -63 59 -110 60v9c41 5 43 49 43 81v364c0 55 -8 109 -66 132l7 16c19 -5 38 -11 59 -11c63 0 97 48 151 50l1 -19c-77 -8 -79 -105 -79 -164v-386c0 -21 18 -65 42 -65c14 0 29 14 38 22'], + 0x1D52A: [499,4,801,24,774,'774 57c-32 -19 -63 -40 -95 -61c-61 27 -65 112 -65 169c0 54 5 108 5 160c0 33 0 99 -46 99c-17 0 -109 -48 -131 -59v-346h-73v305c0 30 2 103 -42 103c-26 0 -106 -47 -133 -62v-346h-73v341c0 23 -1 67 -33 67c-21 0 -39 -14 -54 -26l-10 17c37 24 75 49 108 80 c45 -23 57 -65 63 -112c64 32 128 65 183 112c43 -31 62 -58 63 -112c70 31 140 65 199 113c26 -33 60 -63 101 -76v-11c-42 -1 -52 -25 -52 -63v-213c0 -25 2 -80 37 -80c16 0 29 11 42 19'], + 0x1D52B: [499,4,530,16,518,'518 57c-33 -19 -64 -40 -95 -61c-61 27 -65 109 -65 166c0 56 6 111 6 165c0 33 -1 97 -47 97c-17 0 -110 -49 -132 -60v-345h-72v341c0 23 -1 67 -33 67c-20 0 -39 -14 -54 -26l-10 17c38 24 75 49 108 80c44 -24 55 -65 61 -112c70 31 140 65 199 113 c27 -33 60 -63 101 -76l1 -11c-43 -1 -52 -24 -52 -63v-213c0 -24 1 -80 35 -80c17 0 30 11 43 19'], + 0x1D52C: [502,4,478,69,447,'447 222c0 -170 -107 -131 -173 -226c-60 37 -134 70 -205 78v11c23 2 42 16 42 41v307c80 -1 142 28 208 69c113 -66 128 -160 128 -280zM372 185c0 81 2 254 -115 254c-25 0 -55 -10 -75 -24v-292c38 -31 89 -50 135 -66c56 31 55 70 55 128'], + 0x1D52D: [505,161,530,68,496,'496 287c0 -174 -63 -170 -168 -278c-32 23 -66 44 -102 60c-8 -77 -14 -154 -30 -230h-15c-19 78 -24 159 -26 239h-10c-25 0 -49 -5 -70 -19l-4 15c25 25 51 47 84 60v240c0 28 -8 66 -43 66c-15 0 -31 -6 -44 -14v20c35 17 70 36 103 58c31 -27 46 -47 57 -88 c54 24 107 52 154 89c80 -48 114 -127 114 -218zM422 247c0 59 -4 185 -87 185c-35 0 -79 -24 -109 -41v-258c49 -14 92 -40 135 -67c64 41 61 114 61 181'], + 0x1D52E: [499,168,478,66,455,'455 402c-32 -5 -46 -27 -46 -58c0 -73 5 -147 5 -221c0 -92 -3 -202 -30 -291h-16c-23 79 -29 162 -32 243c-56 -20 -112 -44 -160 -79c-93 59 -110 135 -110 239c0 191 98 151 179 264c52 -44 142 -80 210 -87v-10zM337 98v279c-24 10 -114 55 -132 55 c-56 0 -61 -136 -61 -175c0 -57 0 -197 83 -197c39 0 75 22 110 38'], + 0x1D52F: [504,4,374,17,362,'362 429l-66 -57l-54 63c-37 -38 -57 -89 -57 -141v-190c0 -16 49 -41 63 -41s52 28 64 36l9 -14c-40 -27 -81 -53 -115 -89c-47 32 -97 64 -154 73v8c45 6 61 26 61 71v183c0 32 -9 100 -52 100c-14 0 -33 -13 -44 -19v21c31 21 60 43 87 69c53 -37 61 -65 77 -125 c25 52 65 95 113 127'], + 0x1D530: [500,6,426,56,409,'409 183c0 -98 -92 -135 -155 -189c-27 32 -66 55 -108 55c-29 0 -57 -13 -77 -35l-13 12c36 39 82 81 138 81c41 0 74 -26 102 -54c37 22 52 47 52 90c0 53 -34 103 -91 103c-32 0 -52 -37 -68 -60c-72 10 -121 61 -121 136c0 86 85 129 141 178c24 -34 56 -52 97 -52 c28 0 52 16 68 37l15 -12c-31 -35 -77 -78 -127 -78c-38 0 -71 20 -98 46c-28 -16 -43 -48 -43 -79c0 -47 42 -106 93 -106c30 0 50 37 64 59c75 -3 131 -56 131 -132'], + 0x1D531: [696,6,322,19,293,'293 72c-35 -25 -72 -49 -104 -78c-32 33 -73 63 -121 71v8c26 6 43 23 43 50v302h-92v36c121 0 128 146 129 235h34v-227h109v-44h-109v-330c9 -8 42 -36 52 -36c13 0 46 27 59 35v-22'], + 0x1D532: [501,4,530,25,513,'513 60c-33 -20 -68 -37 -99 -60c-38 27 -51 62 -50 108c-48 -24 -158 -74 -191 -112c-26 35 -64 59 -104 72v8c42 13 48 43 48 82v196c0 29 -3 80 -43 80c-15 0 -28 -9 -40 -16l-9 17c37 18 73 40 104 66c59 -25 62 -122 62 -177c0 -52 -5 -104 -5 -157 c0 -26 -2 -100 39 -100c31 0 112 47 140 64l-1 228c0 30 -4 55 -41 55v18c31 15 59 36 78 66h36v-380c0 -20 3 -57 30 -57c15 0 30 10 42 18'], + 0x1D533: [496,4,478,28,434,'434 260c0 -173 -75 -165 -180 -264c-55 41 -123 71 -192 75v12c26 9 47 24 47 54v221c0 22 -7 71 -36 71c-15 0 -30 -9 -42 -16l-3 18c34 18 67 40 96 65c27 -21 54 -50 57 -87c53 22 101 53 147 87c95 -63 106 -129 106 -236zM356 225v56c0 55 -9 147 -81 147 c-22 0 -74 -28 -94 -40v-234c0 -57 80 -78 123 -94c50 20 52 120 52 165'], + 0x1D534: [501,4,748,46,708,'708 275c0 -95 -18 -161 -99 -217c-27 -19 -55 -35 -75 -62c-29 25 -116 76 -153 76s-107 -45 -127 -76c-43 33 -113 84 -170 81v12c35 9 40 37 40 68v197c0 25 -4 83 -39 83c-14 0 -28 -10 -39 -17v21c28 18 56 36 83 55c46 -17 63 -52 66 -98c57 34 114 64 168 103 c40 -24 64 -44 76 -92c46 17 128 59 165 92c88 -43 104 -137 104 -226zM632 260c0 53 2 175 -76 175c-37 0 -79 -31 -113 -46v-236c0 -39 93 -91 128 -91c62 0 61 156 61 198zM369 173v183c0 38 -13 76 -57 76c-31 0 -90 -39 -117 -56v-240c0 -10 1 -18 7 -25 c9 -11 80 -49 94 -49c53 0 73 67 73 111'], + 0x1D535: [503,4,426,31,402,'402 441l-64 -56l-49 51c-27 -20 -38 -56 -38 -89v-61h73v-40h-73v-60c0 -44 18 -114 74 -114c27 0 50 16 69 33l4 -18c-34 -30 -69 -60 -100 -91c-50 23 -83 57 -109 104c-23 -42 -57 -77 -97 -104l-61 61l55 57l54 -50c25 24 38 58 38 93v89h-72v40h72v5 c0 49 -11 140 -77 140c-20 0 -39 -8 -55 -19l-8 12c36 25 70 50 103 79c42 -22 81 -56 99 -101c23 43 63 76 104 101'], + 0x1D536: [505,163,530,36,465,'465 208c0 -172 -58 -274 -198 -371h-35c139 95 157 200 157 358c0 68 -3 238 -100 238c-27 0 -74 -29 -97 -44v-284c9 -11 22 -23 36 -26c13 9 27 19 41 28l8 -16c-36 -24 -69 -52 -97 -84c-28 36 -62 55 -107 66v9c43 7 47 36 47 74v205c0 26 0 79 -37 79 c-17 0 -32 -8 -47 -16v18c35 18 69 39 100 63c37 -25 49 -50 56 -93c53 26 108 53 152 93c108 -77 121 -173 121 -297'], + 0x1D537: [505,165,374,39,344,'344 45c0 -88 -48 -210 -152 -210c-78 0 -125 77 -125 148c0 52 28 97 61 135l10 -7c-25 -35 -33 -85 -33 -127c0 -51 16 -131 82 -131c69 0 84 74 84 129c0 85 -25 232 -136 232c-26 0 -51 -11 -74 -22l-1 19c55 23 182 70 182 142c0 48 -38 82 -85 82 c-42 0 -81 -22 -118 -42v21c54 26 106 54 154 91c49 -21 119 -50 119 -113c0 -69 -48 -98 -104 -125c85 -34 136 -133 136 -222'], + 0x1D56C: [719,9,748,54,726,'726 698c-89 -3 -93 -155 -93 -219v-314c0 -25 2 -68 36 -68c14 0 39 23 50 32v-23c-45 -37 -88 -75 -131 -115c-86 49 -85 81 -85 173c-79 -55 -162 -104 -229 -173c-48 66 -119 124 -190 162v9c184 61 198 167 198 342c0 55 16 185 -65 185c-33 0 -60 -28 -60 -60 c0 -61 64 -106 64 -180c0 -75 -77 -134 -148 -140v12c28 7 48 27 48 57c0 39 -67 95 -67 166c0 107 87 175 189 175c145 0 188 -80 188 -214c0 -185 -25 -210 -189 -287l126 -115l137 95v374c0 46 -13 69 -47 100l11 17c20 -12 45 -15 67 -15c67 0 124 45 190 45v-21'], + 0x1D56D: [715,7,748,52,723,'723 269c0 -146 -167 -276 -306 -276s-202 113 -272 113c-27 0 -54 -18 -57 -46h-17c1 84 93 146 171 147c40 44 42 113 42 169v162c0 49 -1 144 -70 144c-36 0 -54 -37 -54 -68c0 -62 67 -113 67 -189c0 -83 -84 -120 -151 -141l-8 12c27 11 52 29 52 61 c0 56 -68 102 -68 191c0 105 120 167 212 167c64 0 122 -28 152 -87l127 87c68 -4 146 -39 146 -118c0 -75 -63 -118 -128 -139c105 -5 162 -90 162 -189zM562 533c0 46 -27 95 -78 95c-24 0 -45 -14 -62 -30c9 -66 9 -134 7 -200c64 19 133 62 133 135zM606 173 c0 73 -77 196 -157 196c-8 0 -15 -1 -22 -4c-12 -102 -81 -114 -152 -166c80 -22 183 -125 246 -125c55 0 85 49 85 99'], + 0x1D56E: [718,8,697,77,667,'645 689c-19 -56 -65 -125 -133 -125c-38 0 -76 17 -106 40c-2 -3 -6 -10 -6 -15c0 -57 118 -153 118 -269c0 -63 -56 -159 -124 -167l-13 8c11 18 19 38 19 59c0 83 -91 146 -91 246c0 90 109 190 167 252c25 -24 59 -52 96 -52c25 0 47 15 61 34zM667 239 c-9 -138 -136 -247 -272 -247c-202 0 -318 206 -318 388c0 125 55 329 211 329c41 0 73 -17 95 -53l-12 -14c-13 17 -34 31 -56 31c-92 0 -98 -145 -98 -210c0 -145 29 -347 216 -347c87 0 176 45 218 123h16'], + 0x1D56F: [715,8,697,51,668,'668 325c0 -150 -107 -333 -273 -333c-124 0 -183 105 -251 105c-35 0 -59 -17 -70 -50l-12 7c12 82 82 151 167 151c24 0 47 -6 69 -16c8 8 11 17 11 27c0 58 -63 127 -63 199c0 80 60 119 120 158c-24 5 -49 7 -74 7c-71 0 -183 -28 -183 -117c0 -32 19 -60 48 -74v-14 c-65 13 -106 76 -106 140c0 131 152 200 266 200c221 0 351 -182 351 -390zM618 283c0 143 -102 237 -229 284c-18 -11 -32 -29 -32 -52c0 -51 67 -109 67 -191c0 -72 -55 -109 -110 -142c54 -33 103 -75 170 -75c92 0 134 97 134 176'], + 0x1D570: [719,8,697,63,684,'684 489c-23 -38 -44 -80 -60 -122c-20 13 -41 28 -65 28c-77 0 -23 -167 -152 -233c-10 -5 -21 -9 -33 -10l-10 5c9 21 22 40 22 63c0 84 -91 147 -91 248c0 88 108 191 166 251c25 -24 60 -52 97 -52c25 0 46 15 61 34l12 -10c-19 -58 -66 -126 -134 -126 c-39 0 -76 17 -106 40c-3 -3 -6 -10 -6 -14c0 -39 99 -165 114 -231c13 64 30 159 114 159c26 0 51 -13 71 -30zM653 240c-9 -139 -136 -248 -273 -248c-202 0 -317 207 -317 388c0 125 54 331 211 331c42 0 72 -18 94 -54l-12 -14c-14 17 -34 31 -56 31 c-91 0 -97 -146 -97 -210c0 -146 28 -348 215 -348c87 0 177 46 219 124h16'], + 0x1D571: [719,167,645,37,633,'588 706c-1 -103 -61 -192 -171 -192c-88 0 -152 78 -226 78c-47 0 -90 -19 -90 -72c0 -58 64 -82 113 -75l6 -16c-17 -8 -35 -13 -53 -13c-70 0 -130 70 -130 138c0 108 102 165 199 165c109 0 177 -79 252 -79c40 0 81 24 88 66h12zM633 441c-22 -44 -29 -98 -32 -147 c-14 5 -27 8 -42 8c-30 0 -52 -18 -52 -49c0 -64 48 -119 48 -191c0 -129 -122 -229 -247 -229c-126 0 -251 83 -251 218c0 105 81 161 81 220c0 31 -26 53 -55 58l5 13c86 -11 171 -51 171 -150c0 -74 -70 -129 -70 -208c0 -63 56 -112 118 -112c70 0 112 60 112 125 c0 119 -110 207 -110 329c0 78 53 145 128 163l8 -5c-18 -18 -29 -43 -29 -68c0 -57 42 -117 75 -161c0 29 -10 59 -10 88c0 56 40 109 99 109c18 0 36 -4 53 -11'], + 0x1D572: [718,9,801,76,756,'756 278c0 -177 -159 -287 -324 -287c-221 0 -356 163 -356 377c0 139 76 339 241 339c31 0 64 -15 77 -46l-13 -14c-10 15 -27 32 -47 32c-101 0 -102 -203 -102 -273c0 -139 2 -378 195 -378c141 0 187 127 187 247c0 45 -7 162 -71 162c-26 0 -37 -31 -37 -52 c0 -33 13 -66 13 -100c0 -90 -72 -159 -145 -199l-12 9c17 22 27 49 27 77c0 101 -77 183 -77 284c0 95 102 189 155 262c30 -23 67 -45 106 -45c27 0 52 16 66 39l12 -8c-27 -64 -68 -137 -147 -137c-33 0 -64 12 -93 28c5 -79 46 -122 81 -189c8 50 46 90 97 90 c109 0 167 -124 167 -218'], + 0x1D573: [718,167,748,33,709,'709 252c0 -175 -111 -256 -240 -352c-27 -20 -56 -40 -80 -67c-32 36 -80 64 -130 64c-26 0 -53 -9 -70 -30l-17 9c34 62 99 137 175 137c49 0 93 -22 128 -54c63 49 91 155 91 230c0 85 -54 216 -153 216c-21 0 -44 -8 -59 -23c25 -35 49 -75 49 -119 c0 -117 -154 -186 -218 -268l-99 94l-39 -34l-14 17c47 43 92 88 136 133l96 -96c16 10 30 27 30 47c0 81 -142 184 -142 302c0 101 112 187 172 260c32 -21 70 -38 109 -38c26 0 52 9 67 32l14 -10c-29 -73 -70 -135 -156 -135c-35 0 -67 15 -95 36c-8 -16 -13 -32 -13 -50 c0 -56 48 -110 86 -147c57 40 118 77 163 131c116 -33 209 -165 209 -285'], + 0x1D574: [718,11,645,29,611,'592 700c-3 -84 -60 -173 -152 -173c-85 0 -162 74 -228 74c-39 0 -73 -26 -73 -67c0 -49 33 -68 78 -67v-21h-18c-68 0 -114 55 -114 121c0 89 92 151 174 151c108 0 189 -83 250 -83c40 0 63 27 63 65h20zM611 199c0 -139 -164 -210 -283 -210 c-180 0 -162 169 -230 169c-33 0 -50 -30 -49 -59h-20c0 77 58 137 135 137c154 0 151 -195 242 -195c41 0 70 37 70 76c0 75 -88 157 -88 252c0 70 58 130 128 130c31 0 62 -10 86 -30v-21c-11 7 -25 12 -39 12c-20 0 -32 -15 -32 -34c0 -47 80 -128 80 -227'], + 0x1D575: [719,167,645,16,609,'577 704c-5 -84 -57 -186 -152 -186c-82 0 -141 69 -214 69c-43 0 -94 -28 -94 -76c0 -59 51 -84 104 -72v-21c-12 -3 -22 -4 -34 -4c-71 0 -126 64 -126 133c0 108 95 172 195 172c110 0 169 -90 236 -90c39 0 65 39 69 75h16zM609 104c0 -152 -147 -271 -293 -271 c-162 0 -165 179 -243 179c-25 0 -37 -28 -41 -48h-15c-1 76 64 138 139 138c149 0 161 -193 253 -193c50 0 79 33 79 80c0 95 -139 202 -139 352c0 84 60 155 147 155c37 0 72 -21 87 -55l-15 -9c-10 13 -27 24 -44 24c-25 0 -40 -23 -40 -47c0 -90 125 -186 125 -305'], + 0x1D576: [718,14,748,14,732,'732 113c-47 -34 -100 -76 -136 -124c-185 33 -83 353 -212 353c-13 0 -27 -5 -40 -10c18 -29 30 -63 30 -97c0 -135 -122 -171 -206 -249l-88 80l-48 -42l-18 21l146 132l91 -94c11 8 20 21 20 35c0 70 -146 215 -146 367c0 144 117 233 254 233 c283 0 179 -255 289 -255c10 0 19 2 29 5l9 -26l-189 -58c136 -28 61 -277 149 -277c23 0 50 21 66 37v-31zM555 431c-184 37 -72 250 -212 250c-62 0 -86 -70 -86 -122c0 -72 32 -137 69 -197'], + 0x1D577: [718,11,593,32,556,'556 213c-2 -120 -65 -224 -197 -224c-94 0 -154 73 -227 73c-38 0 -73 -15 -84 -54h-16c20 148 133 155 133 230c0 87 -85 168 -85 275c0 122 117 205 231 205c108 0 220 -76 220 -192c0 -87 -70 -138 -70 -189c0 -28 18 -42 42 -52l-8 -18c-71 19 -151 56 -151 141 c0 67 58 117 58 185c0 56 -36 92 -93 92c-60 0 -94 -46 -94 -104c0 -85 66 -156 66 -239c0 -56 -67 -120 -107 -153c13 4 27 5 40 5c89 0 154 -78 224 -78c65 0 91 36 99 97h19'], + 0x1D578: [719,15,968,16,952,'952 480c-98 -9 -103 -102 -103 -180v-77c0 -31 8 -109 51 -109c21 0 39 18 51 32v-26c-46 -43 -90 -87 -130 -135c-79 66 -107 97 -107 203v109c0 121 83 164 188 189c-37 5 -124 15 -149 41c-47 49 7 144 -67 144c-51 0 -57 -71 -57 -108v-341 c0 -143 -121 -156 -205 -236l-78 79l-64 -58l-17 15l149 141l85 -86c4 14 5 27 5 41c0 49 -10 99 -10 148v295c0 35 -5 118 -54 118c-55 0 -54 -80 -54 -118v-303c0 -122 -155 -183 -217 -273l-89 92l-49 -41l-15 19l141 118l83 -87c7 21 9 43 9 66v371 c0 49 -11 155 -78 155c-30 0 -45 -31 -45 -57c0 -80 76 -136 76 -215c0 -95 -74 -129 -151 -157l-7 13c30 16 51 31 51 67c0 64 -75 114 -75 205c0 98 98 184 193 184c61 0 115 -35 152 -82c6 56 67 83 116 83c53 0 120 -25 134 -82c25 52 67 82 126 82 c202 0 81 -222 211 -218v-21'], + 0x1D579: [719,11,801,53,785,'785 487c-111 1 -114 -76 -114 -165v-109c0 -29 4 -101 45 -101c24 0 46 22 60 39l3 -24c-48 -43 -98 -85 -139 -135c-104 63 -115 126 -115 240c0 161 31 222 191 267c-40 3 -105 6 -135 38c-44 47 0 139 -68 139c-59 0 -62 -75 -62 -118v-311 c0 -147 -71 -139 -237 -258l-86 99l-60 -41l-15 18l159 115l89 -111c3 15 4 30 4 44v406c0 46 -10 163 -74 163c-36 0 -56 -31 -56 -65c0 -65 67 -117 67 -198c0 -85 -77 -124 -147 -150l-8 12c34 13 50 31 50 68c0 56 -65 112 -65 195c0 104 101 174 197 174 c74 0 132 -35 162 -103c12 76 64 104 136 104c95 0 131 -46 137 -137c5 -67 13 -74 81 -73v-22'], + 0x1D57A: [718,7,697,69,681,'681 369c0 -156 -82 -376 -268 -376c-110 0 -189 101 -261 101c-30 0 -60 -16 -67 -48l-16 10v4c0 105 116 115 116 222c0 70 -92 118 -92 213c0 94 64 173 140 223c11 -16 29 -27 49 -27c47 0 92 23 140 23c184 0 259 -188 259 -345zM641 349c0 129 -62 218 -198 218 c-37 0 -72 -13 -109 -13c-100 0 -80 64 -112 131c-21 -13 -36 -38 -36 -63c0 -91 97 -147 97 -238c0 -69 -52 -118 -91 -170c9 4 19 6 28 6c74 0 152 -97 247 -97c121 0 174 122 174 226'], + 0x1D57B: [719,167,748,47,749,'749 500l-1 -22c-49 0 -105 -10 -105 -70c0 -59 84 -93 84 -190c0 -106 -122 -226 -227 -226c-26 0 -51 14 -74 26c-9 -45 -35 -153 -65 -185h-13c-40 59 -54 164 -62 234c-30 15 -61 31 -95 31s-59 -16 -76 -46l-11 6c14 67 77 147 151 147c10 0 21 -1 31 -4v336 c0 48 -7 141 -73 141c-35 0 -51 -35 -51 -66c0 -72 64 -127 64 -199c0 -75 -93 -121 -157 -136l-5 12c28 10 48 29 48 60c0 66 -65 112 -65 191c0 104 97 174 195 174c63 0 137 -26 165 -87c14 61 77 92 136 92c98 0 128 -52 138 -141c7 -57 7 -67 68 -78zM686 492 c-43 6 -92 0 -126 34c-47 47 -4 147 -73 147c-54 0 -64 -65 -64 -107v-400c38 -32 108 -87 159 -87c29 0 47 21 47 49c0 64 -121 117 -121 217c0 95 105 123 178 147'], + 0x1D57C: [717,11,759,52,748,'748 189c-1 -67 -32 -165 -114 -165c-33 0 -59 27 -72 54c-42 -51 -100 -89 -167 -89c-110 0 -188 100 -260 100c-30 0 -61 -15 -67 -47l-16 10v4c0 108 115 113 115 222c0 69 -91 121 -91 216s64 173 140 223c11 -16 29 -28 49 -28c48 0 92 24 139 24 c184 0 260 -187 260 -345c0 -64 -13 -126 -30 -187c9 -18 28 -40 50 -40c24 0 43 27 51 48h13zM624 349c0 129 -64 217 -199 217c-37 0 -71 -13 -108 -13c-111 0 -72 69 -112 131c-19 -15 -36 -39 -36 -63c0 -90 96 -147 96 -238c0 -70 -51 -121 -91 -174c8 6 17 8 26 8 c83 0 206 -128 281 -128c22 0 42 13 57 28c-18 27 -45 60 -81 60c-13 0 -26 -5 -37 -13h-17c18 48 61 112 119 112c33 0 65 -36 80 -63c16 43 22 90 22 136'], + 0x1D57D: [719,11,801,49,782,'782 101c-49 -35 -99 -69 -144 -110c-119 66 -104 131 -104 251c0 30 -1 118 -45 118c-15 0 -31 -8 -43 -17v-45c0 -230 -104 -193 -243 -309l-85 93l-41 -31l-12 14l135 110l92 -104c7 13 7 28 7 43v353c0 56 -3 214 -83 214c-36 0 -58 -32 -58 -65 c0 -74 76 -128 76 -204c0 -83 -82 -128 -151 -150l-7 11c27 11 49 34 49 66c0 55 -76 110 -76 202c0 101 105 177 200 177c63 0 149 -33 178 -92l146 93c80 -7 154 -54 154 -141c0 -80 -68 -131 -133 -162c88 -38 82 -131 82 -212c0 -30 1 -111 45 -111c19 0 37 12 51 24z M586 529c0 46 -28 98 -79 98c-27 0 -53 -15 -73 -33c10 -72 13 -146 12 -218c71 31 140 65 140 153'], + 0x1D57E: [719,5,697,62,672,'672 248c0 -153 -133 -253 -279 -253c-222 0 -331 164 -331 372c0 178 91 352 289 352c81 0 149 -57 226 -57c31 0 55 10 63 42l13 -2c-5 -77 -51 -166 -138 -166c-81 0 -153 52 -234 52c-121 0 -182 -94 -182 -207c0 -195 144 -239 310 -239c79 0 229 15 229 121 c0 44 -50 64 -87 64c-75 0 -145 -59 -231 -59c-66 0 -128 56 -128 124c0 44 24 80 60 102l9 -16c-14 -7 -25 -22 -25 -38c0 -21 20 -40 41 -40c48 0 131 55 209 55c113 0 186 -101 186 -207'], + 0x1D57F: [716,8,645,71,632,'632 684c0 -86 -63 -172 -154 -172c-23 0 -47 5 -69 14c-13 -9 -34 -24 -34 -42c0 -32 73 -91 73 -168c0 -79 -70 -94 -121 -134c50 -22 120 -60 175 -60c58 0 94 41 103 96h17c0 -114 -90 -226 -209 -226c-90 0 -156 80 -246 80c-38 0 -64 -16 -79 -51l-12 2 c0 92 84 174 176 174c19 0 37 -3 55 -8c11 9 24 23 24 38c0 51 -72 104 -72 174c0 77 76 98 129 133c-48 21 -113 48 -166 48s-101 -27 -101 -85c0 -36 25 -61 56 -76l-4 -13c-64 11 -102 61 -102 125c0 107 106 183 206 183c104 0 189 -84 275 -84c35 0 60 20 64 55'], + 0x1D580: [718,12,697,32,676,'676 102c-50 -34 -96 -73 -140 -114c-79 51 -88 86 -87 177l-198 -177c-66 48 -131 97 -204 133c132 81 124 194 124 332c0 36 0 149 -56 149c-30 0 -58 -26 -79 -45l-4 29l163 132c120 -64 124 -157 124 -279c0 -116 -6 -178 -121 -231c49 -28 94 -63 136 -101 c40 33 79 67 115 102v306c0 59 -3 112 -62 142l9 22c20 -4 41 -10 61 -10c75 0 140 49 214 49v-24c-86 1 -91 -95 -91 -159v-361c0 -21 6 -72 35 -72c19 0 46 22 61 33v-33'], + 0x1D581: [718,9,748,43,746,'746 476c-48 0 -110 -17 -110 -76c0 -57 64 -94 64 -171c0 -150 -174 -238 -307 -238c-165 0 -171 124 -255 124c-32 0 -52 -17 -69 -42l-10 8c26 71 94 163 180 148c38 42 40 123 40 176v161c0 41 -8 118 -65 118c-33 0 -56 -29 -56 -61c0 -70 64 -121 64 -195 c0 -90 -76 -127 -151 -150l-7 13c23 11 45 32 45 60c0 54 -66 117 -66 195c0 109 103 172 203 172c65 0 129 -32 161 -89c16 72 66 89 132 89c96 0 135 -63 135 -152c0 -52 22 -67 72 -66v-24zM681 489c-73 16 -155 -1 -155 103c0 32 -2 85 -46 85c-73 0 -48 -195 -48 -243 c0 -128 -58 -149 -157 -216c68 -34 145 -149 219 -149c45 0 80 35 80 80c0 51 -81 100 -81 189c0 104 103 137 188 151'], + 0x1D582: [713,4,968,38,968,'968 479c-46 -4 -96 -28 -96 -82c0 -60 74 -100 74 -183c0 -111 -125 -218 -232 -218c-122 0 -176 84 -222 84c-56 0 -79 -84 -164 -84c-113 0 -132 97 -213 97c-22 0 -44 -14 -54 -35l-12 8c26 71 92 145 175 132c49 43 49 129 49 189c0 52 28 292 -72 292 c-32 0 -58 -30 -58 -60c0 -67 66 -119 66 -199s-82 -119 -146 -141l-7 12c28 13 49 34 49 67c0 59 -67 100 -67 187c0 95 94 168 184 168c69 0 134 -39 171 -97c2 65 50 97 111 97c60 0 108 -34 130 -89c11 58 61 89 118 89c195 0 87 -213 196 -213h20v-21zM926 487 c-47 5 -116 -4 -152 34c-46 47 -11 150 -66 150c-45 0 -57 -60 -57 -95v-228c0 -117 -95 -126 -147 -207c30 16 59 35 94 35c91 0 138 -109 199 -109c26 0 48 25 48 50c0 64 -111 128 -111 227c0 105 112 123 192 143zM513 562c0 37 -2 117 -54 117c-68 0 -50 -227 -50 -274 c0 -144 -35 -156 -154 -217c46 -19 104 -92 148 -92c102 0 109 189 109 261'], + 0x1D583: [718,6,645,32,642,'642 648l-111 -117l-89 80c-34 -45 -37 -126 -35 -180l1 -35h128v-51h-128v-21c0 -80 28 -202 128 -202c38 0 67 30 93 54l11 -20c-56 -51 -114 -101 -159 -162c-94 5 -155 70 -187 153c-28 -66 -87 -110 -142 -153l-79 94l-41 -35v32l117 112l83 -86c34 42 48 97 48 150 v84h-114v51h114v42c0 61 -25 161 -102 161c-37 0 -67 -32 -92 -55l-15 17c52 52 106 102 155 157c80 -22 141 -63 167 -146c16 68 68 109 123 146l85 -78l41 39v-31'], + 0x1D584: [718,167,748,49,705,'705 317c0 -348 -177 -370 -332 -484c-32 30 -75 50 -119 50c-26 0 -53 -7 -72 -26l-14 14c33 60 112 118 181 118c48 0 89 -25 122 -56c90 55 80 382 80 490c0 42 2 255 -63 255c-75 0 -48 -179 -48 -230c0 -137 -51 -181 -168 -248c46 -8 87 -35 117 -68l74 57l9 -24 c-58 -44 -113 -92 -163 -145c-55 48 -117 91 -182 126c116 51 162 91 162 223v183c0 46 -12 131 -72 131c-36 0 -57 -32 -57 -66c0 -75 69 -130 69 -208c0 -80 -63 -118 -129 -144l-5 11c18 12 31 31 31 53c0 64 -77 127 -77 205c0 102 99 184 198 184c67 0 127 -37 166 -89 c11 53 63 89 116 89c175 0 176 -279 176 -401'], + 0x1D585: [717,167,655,20,601,'601 96c0 -171 -117 -263 -281 -263c-55 0 -118 12 -157 54c-27 30 -45 142 -89 142c-18 0 -35 -21 -42 -35l-12 6c15 58 64 108 127 108c167 0 99 -233 212 -233c83 0 84 141 84 199c0 70 -6 226 -106 226c-55 0 -91 -46 -96 -98l-25 7c7 59 38 103 95 122 c-54 15 -82 50 -89 105l24 1c8 -48 39 -76 87 -76c87 0 105 86 105 156c0 81 -40 147 -129 147c-107 0 -158 -93 -158 -191h-33v18c0 135 102 226 235 226c123 0 229 -79 229 -209c0 -105 -70 -159 -168 -172c130 -22 187 -113 187 -240'], + 0x1D586: [537,9,499,63,489,'489 78c-37 -25 -74 -53 -104 -87c-44 33 -65 55 -73 111c-52 -28 -104 -62 -140 -110c-106 60 -109 143 -109 252c0 250 120 167 221 293c57 -40 128 -81 195 -100v-6c-31 -11 -46 -31 -46 -64v-236c0 -17 3 -45 26 -45c10 0 22 6 30 11v-19zM311 124v267 c-16 8 -98 60 -105 60c-15 0 -17 -93 -17 -109v-140c0 -33 8 -109 52 -109c26 0 50 15 70 31'], + 0x1D587: [709,17,520,43,472,'472 256c0 -211 -107 -169 -235 -273c-52 44 -116 72 -177 99v11c40 11 39 70 39 103v317c0 46 -13 114 -56 138l9 14c16 -9 36 -12 55 -12c78 0 141 56 220 56v-18c-91 0 -106 -64 -106 -142v-120c51 25 95 64 126 109c119 -78 125 -150 125 -282zM344 206v40 c0 46 -1 174 -67 174c-20 0 -39 -9 -56 -21v-262c34 -29 73 -52 114 -69c8 46 9 92 9 138'], + 0x1D588: [540,7,364,61,354,'354 500c-14 -51 -32 -120 -97 -120c-30 0 -54 45 -63 69c-9 -48 -8 -97 -8 -146c0 -54 1 -194 80 -194c28 0 52 19 72 37l14 -14c-55 -44 -107 -92 -159 -139c-105 59 -132 129 -132 246c0 239 54 166 185 301c13 -21 41 -56 68 -56c13 0 24 12 28 23'], + 0x1D589: [717,8,530,52,481,'481 232c0 -151 -122 -169 -223 -240c-56 36 -140 93 -206 102v7c37 5 46 31 46 65v253c57 10 111 30 164 55c-66 33 -203 78 -203 168c0 35 22 61 52 75h10c-3 -5 -4 -11 -4 -17c0 -31 46 -49 69 -60c224 -104 295 -145 295 -408zM349 205c0 69 -1 198 -60 244l-68 -28 v-276l118 -71c8 43 10 87 10 131'], + 0x1D58A: [541,11,416,49,411,'411 143c-63 -48 -126 -97 -182 -154c-132 57 -180 132 -180 276c0 189 83 204 231 276l124 -203l-224 -130c13 -50 49 -100 106 -100c42 0 78 28 111 52zM281 308l-93 166c-14 -17 -14 -58 -14 -79v-149'], + 0x1D58B: [718,166,374,43,348,'348 423h-86c0 -174 1 -426 -53 -589h-26c-59 189 -54 392 -63 588h-77v56c45 -1 73 17 73 65c0 26 -7 53 -7 80c0 57 33 95 92 95c43 0 73 -31 101 -31c18 0 30 12 25 30h14c0 -55 -10 -140 -83 -140c-36 0 -66 48 -90 48c-11 0 -19 -10 -19 -20 c0 -104 119 -118 199 -118v-64'], + 0x1D58C: [536,167,478,43,466,'466 423c-42 -10 -49 -44 -49 -82v-178c0 -50 30 -95 30 -145c0 -125 -147 -185 -253 -185c-48 0 -139 18 -139 80c0 41 39 64 76 64c24 0 60 -10 74 -30c-8 -11 -16 -26 -16 -40c0 -28 27 -34 49 -34c50 0 89 32 89 84c0 43 -31 79 -31 122v38 c-49 -31 -94 -68 -133 -109c-97 51 -120 137 -120 240c0 207 115 168 224 288c55 -43 132 -81 199 -101v-12zM295 147v217c0 38 -74 65 -102 82c-15 -28 -16 -94 -16 -127v-47c0 -39 3 -159 59 -159c21 0 44 21 59 34'], + 0x1D58D: [718,166,520,37,474,'474 223c0 -201 -88 -334 -285 -389l-8 17c160 54 164 256 164 396c0 50 -6 182 -77 182c-20 0 -37 -9 -53 -20v-257c0 -20 6 -40 31 -40c12 0 26 11 33 19l12 -11c-46 -39 -90 -80 -134 -121c-29 38 -65 73 -111 87v6c43 4 47 49 47 83v334c0 52 -8 122 -56 150l7 15 c17 -8 36 -12 55 -12c75 0 135 56 209 56l-3 -19c-79 -8 -91 -66 -91 -134v-129c54 22 98 68 144 102c102 -81 116 -193 116 -315'], + 0x1D58E: [719,11,312,22,302,'238 678c0 -27 -63 -89 -83 -110c-21 23 -84 80 -84 111c0 29 62 40 83 40c24 0 84 -10 84 -41zM302 113l-123 -124c-45 28 -81 55 -81 113v250c0 17 -1 68 -27 68c-15 0 -28 -12 -37 -22l-12 15c45 41 93 81 133 127c33 -41 70 -74 116 -100c-42 -14 -51 -40 -51 -81 v-212c0 -18 6 -46 28 -46c17 0 30 15 39 27'], + 0x1D58F: [718,168,322,35,289,'252 677c0 -28 -63 -88 -83 -109c-22 23 -84 79 -84 110c0 29 61 40 83 40c24 0 84 -10 84 -41zM289 -101l-8 -15c-10 3 -21 4 -32 4c-70 0 -126 -56 -192 -56c-5 0 -11 1 -16 1v25c70 0 70 86 70 136v357c0 17 -2 69 -27 69c-13 0 -27 -13 -36 -22l-13 14 c46 41 93 81 134 127c33 -43 69 -73 116 -99c-42 -15 -52 -40 -52 -82v-315c0 -51 4 -117 56 -144'], + 0x1D590: [718,8,374,52,345,'345 416h-104v-252c0 -29 10 -60 44 -60c18 0 35 13 47 25l9 -25c-46 -37 -94 -72 -137 -112c-38 36 -79 71 -130 87v10c42 9 45 46 45 80v247h-67v60h67v59c0 40 -16 104 -55 124l10 15c17 -10 35 -13 55 -13c74 0 133 57 207 57v-19c-88 -5 -95 -75 -95 -146v-28 c22 41 34 115 94 115l10 -1v-107c-12 3 -26 4 -39 4c-40 0 -65 -18 -65 -60h104v-60'], + 0x1D591: [716,9,312,52,304,'304 102c-42 -35 -81 -73 -119 -111c-38 34 -79 66 -127 84v11c45 9 48 46 48 83v357c0 40 -14 112 -54 132l9 15c17 -9 36 -11 55 -11c83 0 128 54 185 54v-19c-63 -15 -72 -75 -72 -130v-420c0 -20 4 -48 30 -48c14 0 25 8 35 17'], + 0x1D592: [537,9,822,27,800,'800 114l-122 -123c-38 23 -82 51 -82 100v286c0 31 -15 46 -42 59l-70 -50v-363h-122v351c0 22 -11 57 -38 57c-18 0 -59 -35 -75 -47v-361h-121v351c0 22 -12 55 -39 55c-16 0 -38 -18 -51 -30l-11 21c47 38 93 76 138 116c52 -32 87 -52 86 -119c53 35 100 77 147 119 c49 -30 88 -53 87 -117c54 36 107 73 152 118c41 -37 83 -73 132 -97v-5c-28 -9 -51 -29 -51 -61v-227c0 -20 5 -45 30 -45c15 0 28 16 37 26'], + 0x1D593: [539,7,541,2,542,'542 116l-122 -123c-38 23 -82 50 -82 100v284c0 32 -15 47 -43 61l-70 -49v-366h-122v349c0 22 -11 57 -38 57c-18 0 -40 -18 -52 -30l-11 21c46 38 94 76 138 116c48 -30 87 -50 87 -114c53 35 106 73 152 117c40 -37 83 -73 133 -96v-6c-29 -8 -52 -30 -52 -61v-227 c0 -20 5 -45 29 -45c16 0 29 16 38 25'], + 0x1D594: [549,8,478,40,455,'455 274c0 -219 -98 -161 -214 -282c-60 44 -128 77 -201 92v9c32 9 43 41 43 70v295c81 0 149 15 190 91c131 -72 182 -117 182 -275zM328 215c0 93 -6 224 -123 242v-299c0 -20 84 -77 104 -77c25 0 19 114 19 134'], + 0x1D595: [544,167,551,36,505,'505 265c0 -218 -78 -146 -176 -271c-24 21 -52 38 -81 51c-4 -73 -24 -144 -51 -212h-19c-25 68 -50 159 -51 231h-6c-28 0 -59 -10 -81 -28c-3 4 -4 9 -4 13c0 42 60 84 91 103v222c0 22 -4 63 -34 63c-14 0 -34 -17 -44 -26l-7 23c43 32 81 70 117 110 c50 -20 90 -44 90 -105c45 32 85 68 125 105c123 -52 131 -161 131 -279zM376 207v68c0 48 -2 159 -72 159c-19 0 -43 -14 -55 -29v-251c45 -17 86 -41 120 -75c3 43 7 85 7 128'], + 0x1D596: [549,167,488,54,458,'458 439c-27 -7 -38 -25 -38 -53c0 -69 3 -140 3 -209c0 -117 -9 -235 -55 -344h-21c-43 91 -49 193 -49 292c-43 -37 -84 -77 -120 -121c-109 56 -124 141 -124 254c0 196 68 185 200 291c66 -38 132 -76 204 -102v-8zM298 155v236c-33 27 -71 46 -107 66 c-10 -30 -11 -148 -11 -184c0 -44 1 -149 63 -149c21 0 40 17 55 31'], + 0x1D597: [545,8,416,41,414,'414 440l-88 -82l-64 79c-22 -42 -25 -97 -25 -144v-145c0 -15 38 -43 52 -43c23 0 63 38 79 53v-34c-50 -41 -97 -85 -142 -132c-43 36 -102 80 -157 94v10c39 9 46 44 46 78v199c0 22 -6 62 -35 62c-16 0 -29 -12 -39 -24v30l101 101c50 -28 80 -55 97 -110 c15 45 50 101 98 113'], + 0x1D598: [542,4,468,60,429,'429 217c0 -121 -106 -150 -178 -221c-31 28 -70 52 -113 52c-25 0 -51 -10 -71 -26l-7 6c25 47 71 118 131 118c50 0 90 -35 118 -73c11 16 15 36 15 56c0 54 -30 120 -92 120c-37 0 -68 -27 -83 -60c-48 35 -86 83 -86 144c0 127 113 131 176 209 c32 -29 61 -53 106 -53c20 0 39 6 57 15c-11 -52 -63 -102 -119 -102c-43 0 -86 37 -115 66c-4 -13 -5 -27 -5 -40c0 -66 19 -125 96 -125c34 0 72 19 84 52c46 -24 86 -84 86 -138'], + 0x1D599: [704,11,322,23,317,'317 102c-46 -37 -93 -73 -137 -113c-38 37 -79 72 -131 88v11c43 8 46 45 46 79v249h-72v45c100 43 132 145 154 243h40v-221h96v-66h-96v-255c0 -28 10 -60 44 -60c18 0 35 13 47 25'], + 0x1D59A: [543,11,530,24,529,'529 104c-42 -36 -83 -75 -123 -113c-68 53 -73 48 -73 137c-55 -42 -109 -87 -155 -139c-30 47 -78 77 -129 99v7c43 16 53 45 53 86v204c0 22 -10 52 -37 52c-9 0 -19 -4 -26 -9l-15 18c40 30 77 63 114 97c54 -31 86 -52 86 -120v-270c0 -18 23 -41 42 -41 c17 0 54 37 67 49v196c0 37 -10 61 -47 72v12c43 31 83 64 122 100h47v-389c0 -16 4 -48 25 -48c16 0 31 11 41 22'], + 0x1D59B: [536,4,520,28,477,'477 306c0 -253 -102 -169 -221 -310c-51 40 -134 90 -197 102v8c27 14 44 27 44 60v225c0 20 -1 54 -28 54c-15 0 -30 -12 -40 -22l-7 20c40 30 81 58 117 93c49 -24 77 -52 77 -110c50 34 98 70 143 110c91 -35 112 -143 112 -230zM353 296c0 39 -1 139 -58 139 c-27 0 -51 -17 -70 -34v-252c15 -9 95 -61 104 -61c23 0 22 116 22 136c0 24 2 49 2 72'], + 0x1D59C: [546,6,748,32,709,'709 288c0 -201 -109 -177 -222 -294c-29 28 -112 82 -153 82c-36 0 -95 -57 -121 -82c-45 39 -92 79 -150 93v8c28 14 44 26 44 60v230c0 19 -1 53 -28 53c-15 0 -28 -12 -40 -21l-7 19c43 31 77 72 115 110c50 -29 91 -63 81 -126c49 38 92 82 136 125 c50 -16 98 -53 98 -110c44 36 90 70 130 111c105 -69 117 -139 117 -258zM584 271c0 42 1 172 -62 172c-22 0 -42 -21 -57 -35v-259c32 -24 66 -47 101 -68c25 36 18 144 18 190zM347 269c0 32 1 167 -49 167c-25 0 -52 -32 -69 -48v-242c20 -17 46 -48 74 -48 c56 0 44 134 44 171'], + 0x1D59D: [537,8,426,21,417,'417 122l-115 -130c-68 31 -103 59 -127 132c-10 -63 -32 -96 -83 -132l-71 89l66 88l58 -72c14 22 14 67 14 94v68h-82v32h82v18c0 39 -13 116 -64 116c-24 0 -40 -23 -54 -39l-10 19l111 132c62 -29 93 -49 122 -113c21 53 30 81 82 112l66 -82l-70 -90l-53 70 c-12 -30 -13 -65 -13 -96v-47h90v-32h-90v-28c0 -43 18 -129 73 -129c25 0 51 33 68 49v-29'], + 0x1D59E: [536,166,478,25,447,'447 248c0 -224 -40 -343 -267 -414l-9 17c149 52 145 266 145 395c0 43 1 182 -65 182c-17 0 -34 -16 -46 -28v-248c0 -19 6 -48 30 -48c13 0 27 9 36 17l11 -16c-44 -32 -82 -71 -120 -110c-33 32 -85 68 -127 85l1 9c44 12 47 47 47 86v189c0 18 -1 75 -28 75 c-12 0 -23 -11 -30 -19v29l103 87c46 -28 79 -50 78 -109c41 35 81 72 121 109c108 -59 120 -178 120 -288'], + 0x1D59F: [541,168,374,36,345,'345 58c0 -101 -45 -226 -165 -226c-76 0 -133 68 -133 141c0 79 46 145 100 198l10 -8c-42 -54 -43 -129 -43 -195c0 -35 8 -117 57 -117c57 0 49 117 49 155c0 55 0 222 -82 222c-21 0 -53 -20 -70 -31l-11 21c45 26 127 81 127 139c0 34 -27 67 -62 67 c-30 0 -57 -22 -80 -40l-6 24c51 41 105 83 149 133c51 -35 124 -56 124 -129c0 -48 -41 -79 -77 -103c89 -36 113 -165 113 -251'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Latin/Regular/Main.js new file mode 100644 index 0000000..a621861 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Latin/Regular/Main.js @@ -0,0 +1,106 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'AsanaMathJax_Latin', + id: 'ASANAMATHLATIN', + 0x20: [0,0,249,0,0,''], + 0xA1: [469,225,277,81,197,'115 -225h-34v25c0 43 7 86 12 143l24 278v25l28 23l10 -5c0 -13 0 -15 2 -40l26 -305c2 -28 4 -56 7 -106zM138 469c31 0 59 -28 59 -59c0 -30 -28 -57 -60 -57c-29 0 -56 28 -56 58s27 58 57 58'], + 0xA2: [562,101,499,61,448,'347 411l-106 -353c30 -16 53 -22 85 -22c34 0 64 8 113 28l9 -11l-20 -33c-51 -24 -92 -34 -145 -34c-22 0 -37 1 -62 5l-28 -92h-41l32 104c-42 22 -62 39 -84 71c-25 37 -39 89 -39 148c0 95 34 160 102 194l80 40c18 9 44 14 82 14l27 92h40l-27 -92 c26 -1 53 -10 80 -26c-8 -49 -11 -84 -11 -130h-28l-9 66c-13 14 -25 21 -50 31zM208 84l101 335c-25 4 -32 5 -39 5c-76 0 -120 -64 -120 -173c0 -120 53 -162 58 -167'], + 0xA4: [531,-96,499,30,470,'77 531l48 -48c37 28 77 41 125 41s87 -13 125 -41l48 48l47 -47l-49 -49c30 -34 42 -70 42 -122c0 -50 -12 -85 -42 -123l49 -49l-45 -45l-48 48c-37 -30 -74 -42 -127 -42s-90 12 -127 42l-48 -48l-45 45l49 49c-30 38 -42 73 -42 123c0 52 12 88 42 122l-49 49z M253 465c-87 0 -157 -68 -157 -151c0 -85 69 -153 154 -153s154 68 154 152c0 82 -70 152 -151 152'], + 0xA6: [713,172,210,76,135,'135 344h-59v369h59v-369zM135 -172h-59v369h59v-369'], + 0xA9: [705,164,906,18,889,'889 271c0 -239 -197 -435 -436 -435s-435 196 -435 435c0 238 196 434 435 434s436 -196 436 -434zM841 271c0 212 -177 386 -388 386c-212 0 -387 -175 -387 -386c0 -212 175 -387 387 -387c211 0 388 174 388 387zM643 116l11 -11l-11 -34c-44 -38 -118 -52 -175 -52 c-146 0 -260 97 -260 249c0 160 122 239 271 239c57 0 114 -10 168 -31l2 -4c-8 -39 -10 -80 -11 -119l-3 -3h-20l-3 2c-1 94 -49 126 -142 126c-118 0 -175 -80 -175 -192c0 -128 60 -230 199 -230c56 0 111 16 149 60'], + 0xAA: [709,-422,332,24,310,'310 426c-5 0 -39 3 -49 3l-27 -1c-9 -1 -15 -1 -17 -1l-6 -1l3 51l-81 -52c-14 -2 -22 -3 -32 -3c-47 0 -77 27 -77 71c0 53 39 83 126 97l64 10c-1 54 -27 77 -88 77c-34 0 -35 -4 -50 -32l-9 -19l-17 4v39l35 20c23 13 49 20 76 20c98 0 105 -59 105 -101v-18v-102 c0 -38 3 -44 24 -44h20v-18zM214 502v79c-99 -12 -134 -33 -134 -78c0 -27 22 -47 50 -47c18 0 50 13 63 26'], + 0xAB: [428,-71,499,50,450,'130 248l119 -162l-23 -15l-176 171v12l176 174l23 -13zM331 248l119 -162l-23 -15l-176 171v12l176 174l23 -13'], + 0xB2: [686,-271,299,6,284,'282 301c0 -21 1 -23 2 -30c-77 1 -117 2 -141 2c-21 0 -32 0 -137 -2v20l103 108c67 70 92 113 92 157c0 48 -31 78 -81 78c-39 0 -59 -14 -68 -46l-9 -30h-24l11 85c31 31 61 43 106 43c78 0 126 -44 126 -113c0 -45 -18 -78 -77 -140l-104 -108c113 3 120 3 203 6 c-1 -6 -2 -12 -2 -30'], + 0xB3: [686,-261,299,5,281,'27 377c5 -13 21 -85 103 -85c54 0 89 38 89 96c0 52 -28 82 -76 82c-16 0 -29 -3 -51 -13l-7 6l8 36c16 -1 25 -2 31 -2c40 0 74 36 74 78c0 35 -30 65 -67 65c-30 0 -66 -19 -72 -38l-12 -35h-25l18 78c32 30 58 41 100 41c68 0 114 -37 114 -90c0 -35 -18 -63 -61 -97 c60 -12 88 -41 88 -91c0 -74 -84 -147 -170 -147c-23 0 -46 4 -84 16c-3 31 -9 53 -22 92'], + 0xB6: [694,150,627,39,589,'589 -150c-48 1 -115 3 -202 3c-90 0 -157 -2 -202 -3v30l42 3c41 3 53 10 53 90v372c-97 0 -241 67 -241 197c0 80 59 152 184 152h18c58 -3 116 -5 175 -5s117 2 173 5v-30l-32 -3c-48 -5 -63 -15 -63 -87v-601c0 -81 13 -87 53 -90l42 -3v-30zM280 382v273 c-4 1 -9 1 -14 1c-49 0 -116 -35 -116 -134c0 -74 60 -128 130 -140zM421 -120v775h-68v-775h68'], + 0xB8: [-10,225,332,96,304,'141 -108l42 98h34l-25 -65c10 3 17 4 27 4c52 0 85 -27 85 -70c0 -52 -48 -84 -124 -84c-27 0 -41 3 -84 16l14 31c33 -9 47 -11 65 -11c35 0 54 15 54 43c0 23 -16 39 -40 39c-13 0 -22 -2 -41 -7'], + 0xB9: [689,-271,299,32,254,'37 600l-5 31c60 21 98 37 140 58l12 -4v-352c0 -29 5 -34 36 -36l34 -2v-24c-41 1 -46 1 -56 1c-22 1 -36 1 -42 1c-7 0 -53 -1 -102 -2v24l37 2c31 1 36 7 36 36v286c0 9 0 12 -2 16l-78 -35h-10'], + 0xBA: [709,-416,332,10,323,'173 709c88 0 150 -59 150 -142c0 -84 -73 -151 -166 -151c-88 0 -147 57 -147 142c0 89 66 151 163 151zM159 689c-57 0 -89 -39 -89 -110c0 -84 42 -143 103 -143c54 0 90 46 90 115c0 78 -45 138 -104 138'], + 0xBB: [428,-71,499,50,450,'251 86l119 162l-119 167l23 13l176 -174v-12l-176 -171zM50 86l119 162l-119 167l23 13l176 -174v-12l-176 -171'], + 0xBC: [692,3,749,30,727,'595 107h-173l-5 15c9 18 12 24 27 50l158 228l49 16l9 -3c-4 -72 -5 -114 -5 -183v-77h19c3 0 7 -1 12 -1c9 0 21 1 41 3v-51c-18 2 -31 3 -70 3v-36c0 -33 14 -49 44 -49h21v-25c-44 2 -67 3 -100 3c-27 0 -53 -1 -107 -3v25h21c44 0 59 12 59 49v36zM595 153v192 l-129 -192h129zM208 0h-52l451 689h52zM268 273c-22 1 -101 3 -112 3s-85 -2 -106 -3v26h36c36 0 43 13 43 80v238c0 14 -1 18 -5 19h-3l-80 -34h-7l-4 32l161 58l10 -3c-6 -90 -8 -139 -8 -204v-106c0 -68 6 -80 42 -80h33v-26'], + 0xBD: [692,3,749,15,735,'174 0h-52l451 689h52zM253 273c-22 1 -101 3 -112 3s-85 -2 -106 -3v26h36c36 0 43 13 43 80v238c0 14 -1 18 -5 19h-3l-80 -34h-7l-4 32l161 58l10 -3c-6 -90 -8 -139 -8 -204v-106c0 -68 6 -80 42 -80h33v-26zM449 282l12 89c32 30 63 42 111 42 c83 0 138 -45 138 -112c0 -46 -24 -89 -76 -139l-115 -109h122c37 0 60 1 94 5c-2 -16 -2 -24 -2 -33c0 -10 0 -16 2 -28c-95 2 -135 3 -157 3c-23 0 -23 0 -144 -3v20l108 104c74 71 100 113 100 160c0 53 -31 83 -85 83c-37 0 -59 -15 -71 -47l-13 -35h-24'], + 0xBE: [689,3,749,15,735,'41 578l19 71c31 29 60 40 104 40c73 0 121 -35 121 -89c0 -35 -20 -62 -72 -99c70 -11 100 -38 100 -91c0 -78 -81 -144 -176 -144c-29 0 -53 4 -96 16c-3 29 -17 62 -26 94l31 8c21 -62 51 -86 106 -86c57 0 95 37 95 93c0 52 -30 80 -85 80c-20 0 -34 -4 -49 -13 l-10 4l10 43c8 0 16 0 18 -1h14c43 0 80 36 80 76c0 35 -33 63 -74 63c-43 0 -75 -25 -85 -65h-25zM217 0h-52l451 689h52zM603 107h-173l-5 15c9 18 12 24 27 50l158 228l49 16l9 -3c-4 -72 -5 -114 -5 -183v-77h19c9 -1 22 -1 53 2v-51c-18 2 -31 3 -70 3v-36 c0 -33 14 -49 44 -49h21v-25c-44 2 -67 3 -100 3c-27 0 -53 -1 -107 -3v25h21c44 0 59 12 59 49v36zM603 153v192l-129 -192h129'], + 0xBF: [469,231,443,43,395,'290 209c0 -90 -154 -163 -154 -265c0 -64 51 -109 123 -109c44 0 76 15 87 42l20 48l29 -8l-38 -113c-53 -26 -88 -35 -133 -35c-103 0 -181 67 -181 154c0 57 24 95 110 173c81 73 94 91 94 124c0 16 -6 28 -22 48l21 14c30 -19 44 -44 44 -73zM241 469 c31 0 59 -28 59 -59c0 -30 -28 -57 -60 -57c-29 0 -56 28 -56 58s27 58 57 58'], + 0xC0: [908,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30 l37 3c22 2 42 20 54 49l231 526l39 95h32zM240 269h253l-126 298zM430 737l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xC1: [908,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30 l37 3c22 2 42 20 54 49l231 526l39 95h32zM240 269h253l-126 298zM307 737l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xC2: [908,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30 l37 3c22 2 42 20 54 49l231 526l39 95h32zM240 269h253l-126 298zM359 908h62l125 -167h-35l-121 103l-121 -103h-35'], + 0xC3: [871,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30 l37 3c22 2 42 20 54 49l231 526l39 95h32zM240 269h253l-126 298zM331 866c53 0 99 -45 136 -45c28 0 44 13 59 50h29c-4 -58 -52 -105 -109 -105c-54 0 -101 45 -139 45c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100'], + 0xC4: [868,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30 l37 3c22 2 42 20 54 49l231 526l39 95h32zM240 269h253l-126 298zM291 868c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM490 868c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xC5: [943,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30 l37 3c22 2 42 20 54 49l231 526l39 95h32zM240 269h253l-126 298zM392 943c53 0 98 -45 98 -100c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99zM391 907c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64s-25 64 -61 64'], + 0xC6: [692,3,943,-10,908,'-10 27l34 5c14 2 32 21 52 55l289 512c12 21 19 39 19 47c0 7 -13 10 -54 13l-44 3v30l257 -3c17 0 34 0 186 3h40c45 0 73 -1 123 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c34 -2 68 -3 110 -3 c66 0 94 3 112 11c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c28 10 37 104 38 113h35c-10 -52 -16 -106 -16 -164c-137 -3 -137 -3 -168 -3 c-14 0 -55 1 -112 2l-135 1l-69 -3v23l28 16c19 11 26 32 26 84v122c-79 2 -106 3 -123 3c-16 0 -16 0 -121 -3l-64 -114c-23 -42 -28 -53 -28 -69s18 -26 53 -29l36 -3v-30c-77 3 -78 3 -98 3c-13 0 -13 0 -127 -3v30zM450 655l-208 -372h220v372h-12'], + 0xC7: [709,225,708,22,670,'22 342c0 237 193 367 411 367c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72c0 39 -101 79 -199 79c-172 0 -286 -122 -286 -306c0 -197 130 -327 325 -327c76 0 145 20 207 60l9 -10l-28 -50c-69 -36 -144 -54 -226 -54h-15l-21 -55c10 3 17 4 27 4 c52 0 85 -27 85 -70c0 -52 -48 -84 -124 -84c-27 0 -41 3 -84 16l14 31c33 -9 47 -11 65 -11c35 0 54 15 54 43c0 23 -16 39 -40 39c-13 0 -22 -2 -41 -7l-7 6l39 90c-218 24 -346 158 -346 360'], + 0xC8: [908,3,610,22,572,'389 -3c-70 0 -186 3 -232 3c-28 0 -57 -1 -123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c99 -2 144 -3 178 -3c46 0 139 3 232 3c44 0 75 -1 124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8 v-267c34 -2 68 -3 110 -3c66 0 94 3 112 11c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c28 10 37 104 38 113h35c-10 -52 -16 -106 -16 -164 c-136 -3 -136 -3 -167 -3zM346 737l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xC9: [908,3,610,22,572,'389 -3c-70 0 -186 3 -232 3c-28 0 -57 -1 -123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c99 -2 144 -3 178 -3c46 0 139 3 232 3c44 0 75 -1 124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8 v-267c34 -2 68 -3 110 -3c66 0 94 3 112 11c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c28 10 37 104 38 113h35c-10 -52 -16 -106 -16 -164 c-136 -3 -136 -3 -167 -3zM224 737l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xCA: [908,3,610,22,572,'389 -3c-70 0 -186 3 -232 3c-28 0 -57 -1 -123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c99 -2 144 -3 178 -3c46 0 139 3 232 3c44 0 75 -1 124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8 v-267c34 -2 68 -3 110 -3c66 0 94 3 112 11c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c28 10 37 104 38 113h35c-10 -52 -16 -106 -16 -164 c-136 -3 -136 -3 -167 -3zM276 908h62l125 -167h-35l-121 103l-121 -103h-35'], + 0xCB: [868,3,610,22,572,'389 -3c-70 0 -186 3 -232 3c-28 0 -57 -1 -123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c99 -2 144 -3 178 -3c46 0 139 3 232 3c44 0 75 -1 124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8 v-267c34 -2 68 -3 110 -3c66 0 94 3 112 11c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c28 10 37 104 38 113h35c-10 -52 -16 -106 -16 -164 c-136 -3 -136 -3 -167 -3zM207 868c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM406 868c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xCC: [908,3,336,22,315,'216 569v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90zM209 737l-144 90c-33 21 -40 29 -40 47 c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xCD: [908,3,336,22,315,'216 569v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90zM80 737l138 138c22 22 40 33 55 33 c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xCE: [908,3,336,13,325,'216 569v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90zM138 908h62l125 -167h-35l-121 103l-121 -103h-35'], + 0xCF: [868,3,336,19,318,'216 569v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90zM70 868c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50 s-50 20 -50 50s20 50 51 50zM269 868c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xD0: [692,3,773,14,751,'350 -3c-31 0 -126 3 -157 3c-20 0 -20 0 -136 -3v23l31 16c16 8 25 30 25 59v251h-99v36h99v187c0 78 -5 87 -51 90l-40 3v30c169 -3 169 -3 202 -3c40 0 102 1 167 3h13c208 0 347 -122 347 -304c0 -129 -62 -259 -155 -323c-65 -45 -149 -68 -246 -68zM208 644v-262 h184v-36h-184v-297c26 -6 57 -8 102 -8c118 0 173 16 233 66c68 58 101 141 101 255c0 112 -32 191 -95 238c-46 33 -128 52 -230 52c-50 0 -85 -3 -111 -8'], + 0xD1: [871,20,830,17,813,'137 689l54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30c99 -3 99 -3 116 -3c15 0 15 0 120 3v-30l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -11 3 -30 3 -37l-90 16l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30c-105 3 -105 3 -120 3c-17 0 -17 0 -116 -3v30l44 3 c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30c55 -2 64 -2 120 -3zM358 866c53 0 99 -45 136 -45c28 0 44 13 59 50h29c-4 -58 -52 -105 -109 -105c-54 0 -101 45 -139 45c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100'], + 0xD2: [908,20,785,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM385 667c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315c0 208 -101 330 -272 330zM434 737l-144 90c-33 21 -40 29 -40 47 c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xD3: [908,20,785,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM385 667c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315c0 208 -101 330 -272 330zM311 737l138 138c22 22 40 33 55 33 c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xD4: [908,20,785,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM385 667c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315c0 208 -101 330 -272 330zM363 908h62l125 -167h-35l-121 103 l-121 -103h-35'], + 0xD5: [871,20,785,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM385 667c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315c0 208 -101 330 -272 330zM335 866c53 0 99 -45 136 -45 c28 0 44 13 59 50h29c-4 -58 -52 -105 -109 -105c-54 0 -101 45 -139 45c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100'], + 0xD6: [868,20,785,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM385 667c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315c0 208 -101 330 -272 330zM295 868c29 0 49 -21 49 -50 c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM494 868c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xD8: [709,20,832,30,797,'395 -20c-145 0 -217 67 -241 87l-91 -85l-33 29l94 88c-19 25 -79 97 -79 243c0 221 151 367 379 367c153 0 229 -63 255 -83l86 83l32 -30l-88 -83c55 -70 78 -135 78 -226c0 -222 -169 -390 -392 -390zM641 531l-422 -400c59 -77 121 -109 212 -109 c158 0 249 116 249 318c0 80 -10 129 -39 191zM616 570c-10 12 -74 97 -213 97c-160 0 -251 -106 -251 -292c0 -83 12 -142 44 -208'], + 0xD9: [908,20,777,12,759,'378 -20c-177 0 -267 62 -267 234v355c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30c99 -3 99 -3 116 -3c15 0 15 0 120 3 v-30l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -234 -100 -300 -286 -300zM454 737l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xDA: [908,20,777,12,759,'378 -20c-177 0 -267 62 -267 234v355c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30c99 -3 99 -3 116 -3c15 0 15 0 120 3 v-30l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -234 -100 -300 -286 -300zM328 737l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xDB: [908,20,777,12,759,'378 -20c-177 0 -267 62 -267 234v355c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30c99 -3 99 -3 116 -3c15 0 15 0 120 3 v-30l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -234 -100 -300 -286 -300zM384 908h62l125 -167h-35l-121 103l-121 -103h-35'], + 0xDC: [868,20,777,12,759,'378 -20c-177 0 -267 62 -267 234v355c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30c99 -3 99 -3 116 -3c15 0 15 0 120 3 v-30l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -234 -100 -300 -286 -300zM305 868c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM504 868c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xDD: [908,3,666,9,654,'9 680l115 24c3 1 5 1 5 1h1c18 0 58 -46 90 -103l143 -261l103 163c39 62 70 116 108 190h80v-15c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v142 c0 16 -3 30 -9 40l-124 216c-42 73 -94 125 -128 130l-29 3v29zM276 737l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xDE: [692,3,603,32,574,'226 491v-371c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-27c17 -2 24 -2 46 -2s54 0 81 1h18 c124 0 203 -60 203 -154c0 -117 -98 -211 -220 -211c-21 0 -43 2 -58 6l-11 37c22 -6 44 -9 62 -9c71 0 127 65 127 147c0 96 -56 143 -170 143c-30 0 -52 -3 -78 -9'], + 0xDF: [731,9,555,23,519,'328 371c0 -81 191 -81 191 -208c0 -41 -16 -85 -37 -101l-58 -44c-23 -18 -51 -27 -79 -27c-32 0 -61 6 -93 20v-14c-97 3 -104 3 -115 3l-114 -3v30l36 3c34 3 37 9 37 72v283h-69v14l69 35v66c0 106 126 231 249 231c89 0 151 -59 151 -144c0 -57 -13 -116 -44 -196 c-30 17 -47 23 -71 23c-32 0 -53 -17 -53 -43zM429 461c4 16 11 57 11 82c0 88 -50 143 -131 143c-93 0 -129 -61 -129 -220v-359c0 -59 12 -80 46 -80h28l21 85h27v-46c27 -24 44 -32 71 -32c46 0 81 32 81 76c0 47 -25 76 -93 112c-75 39 -93 60 -93 105c0 23 6 42 19 56 l39 43c20 22 57 35 103 35'], + 0xE0: [677,12,499,32,471,'324 82l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -56 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183c0 -49 4 -57 28 -58l39 -2v-30c-44 2 -69 3 -74 3 c-13 0 -13 0 -78 -3zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM298 506l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xE1: [677,12,499,32,471,'324 82l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -56 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183c0 -49 4 -57 28 -58l39 -2v-30c-44 2 -69 3 -74 3 c-13 0 -13 0 -78 -3zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM162 506l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xE2: [677,12,499,32,471,'324 82l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -56 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183c0 -49 4 -57 28 -58l39 -2v-30c-44 2 -69 3 -74 3 c-13 0 -13 0 -78 -3zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM207 677h62l125 -167h-35l-121 103l-121 -103h-35'], + 0xE3: [640,12,499,32,471,'324 82l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -56 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183c0 -49 4 -57 28 -58l39 -2v-30c-44 2 -69 3 -74 3 c-13 0 -13 0 -78 -3zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM185 635c53 0 99 -45 136 -45c28 0 44 13 59 50h29c-4 -58 -52 -105 -109 -105c-54 0 -101 45 -139 45c-24 0 -40 -14 -53 -45h-29 c14 65 51 100 106 100'], + 0xE4: [637,12,499,32,471,'324 82l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -56 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183c0 -49 4 -57 28 -58l39 -2v-30c-44 2 -69 3 -74 3 c-13 0 -13 0 -78 -3zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM143 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM342 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50 s-50 20 -50 50s20 50 51 50'], + 0xE5: [712,12,499,32,471,'324 82l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -56 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183c0 -49 4 -57 28 -58l39 -2v-30c-44 2 -69 3 -74 3 c-13 0 -13 0 -78 -3zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM252 712c53 0 98 -45 98 -100c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99zM251 676c-38 0 -63 -25 -63 -63 c0 -40 24 -65 62 -65c37 0 62 26 62 64s-25 64 -61 64'], + 0xE6: [469,20,757,30,732,'545 469c70 0 187 -38 187 -191c0 -12 -1 -20 -2 -34c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 27 -119c29 -50 83 -78 149 -78c44 0 71 10 131 47l14 -10l-20 -34c-9 -14 -94 -56 -168 -56c-56 0 -111 19 -148 53c-17 14 -27 27 -44 56l-123 -96 c-10 -8 -31 -13 -55 -13c-83 0 -136 50 -136 127c0 44 14 77 41 98c30 22 113 45 197 54l56 6c-3 58 -9 82 -27 109c-19 26 -51 42 -86 42c-34 0 -79 -13 -91 -27c-7 -8 -18 -32 -25 -58l-26 6v62l98 53c22 12 43 17 71 17c65 0 107 -21 146 -71c65 54 104 71 161 71z M324 117v116c-78 -9 -167 -22 -190 -52c-11 -16 -18 -37 -18 -59c0 -48 31 -77 84 -77c47 0 80 19 124 72zM649 267c0 52 -6 78 -23 110c-22 41 -49 59 -87 59c-41 0 -81 -20 -104 -51c-20 -28 -28 -58 -30 -115c54 -5 80 -6 127 -6c36 0 62 1 117 3'], + 0xE7: [469,225,443,26,413,'269 -20l-21 -55c10 3 17 4 27 4c52 0 85 -27 85 -70c0 -52 -48 -84 -124 -84c-27 0 -41 3 -84 16l14 31c33 -9 47 -11 65 -11c35 0 54 15 54 43c0 23 -16 39 -40 39c-13 0 -22 -2 -41 -7l-7 6l38 89c-125 10 -209 101 -209 229c0 88 37 158 107 202c60 38 116 57 164 57 c41 0 76 -11 116 -35c-9 -36 -14 -77 -14 -123h-28l-7 61c-18 25 -66 45 -110 45c-90 0 -140 -60 -140 -167c0 -132 73 -218 184 -218c36 0 68 9 105 29l10 -15l-21 -32c-12 -14 -79 -33 -123 -34'], + 0xE8: [677,20,478,26,448,'250 -20c-88 0 -224 44 -224 239c0 104 33 166 115 213c41 24 84 37 121 37c112 0 186 -75 186 -190c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-8 -12 -89 -56 -167 -56z M359 267c-3 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6c36 0 60 1 112 3zM288 506l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xE9: [677,20,478,26,448,'250 -20c-88 0 -224 44 -224 239c0 104 33 166 115 213c41 24 84 37 121 37c112 0 186 -75 186 -190c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-8 -12 -89 -56 -167 -56z M359 267c-3 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6c36 0 60 1 112 3zM151 506l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xEA: [677,20,478,26,448,'250 -20c-88 0 -224 44 -224 239c0 104 33 166 115 213c41 24 84 37 121 37c112 0 186 -75 186 -190c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-8 -12 -89 -56 -167 -56z M359 267c-3 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6c36 0 60 1 112 3zM209 677h62l125 -167h-35l-121 103l-121 -103h-35'], + 0xEB: [637,20,478,26,448,'250 -20c-88 0 -224 44 -224 239c0 104 33 166 115 213c41 24 84 37 121 37c112 0 186 -75 186 -190c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-8 -12 -89 -56 -167 -56z M359 267c-3 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6c36 0 60 1 112 3zM141 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM340 637c29 0 49 -21 49 -50 c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xEC: [677,3,286,8,271,'188 465v-363c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41zM192 506l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xED: [677,3,286,21,279,'188 465v-363c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41zM55 506l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xEE: [677,3,286,-12,300,'188 465v-363c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41zM113 677h62l125 -167h-35l-121 103l-121 -103h-35'], + 0xEF: [657,3,286,-6,293,'188 465v-363c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41zM45 657c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM244 657 c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xF1: [640,3,581,6,572,'410 -3v284c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30c-68 2 -95 3 -124 3s-56 -1 -124 -3v30l45 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-87l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-193c0 -64 3 -70 37 -72l41 -3v-30c-69 3 -69 3 -83 3c-17 0 -18 0 -79 -3zM227 635c53 0 99 -45 136 -45c28 0 44 13 59 50h29c-4 -58 -52 -105 -109 -105c-54 0 -101 45 -139 45c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100'], + 0xF2: [677,20,545,32,514,'279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 436c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187c0 136 -68 236 -160 236zM321 506l-144 90c-33 21 -40 29 -40 47 c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xF3: [677,20,545,32,514,'279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 436c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187c0 136 -68 236 -160 236zM179 506l138 138c22 22 40 33 55 33 c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xF4: [677,20,545,32,514,'279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 436c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187c0 136 -68 236 -160 236zM236 677h62l125 -167h-35l-121 103l-121 -103 h-35'], + 0xF5: [640,20,545,32,514,'279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 436c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187c0 136 -68 236 -160 236zM209 635c53 0 99 -45 136 -45c28 0 44 13 59 50 h29c-4 -58 -52 -105 -109 -105c-54 0 -101 45 -139 45c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100'], + 0xF6: [637,20,545,32,514,'279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 436c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187c0 136 -68 236 -160 236zM167 637c29 0 49 -21 49 -50 c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM366 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xF8: [474,23,555,16,530,'16 0l67 64c-33 51 -46 93 -46 152c0 148 104 253 251 253c61 0 103 -15 153 -55l62 60l27 -25l-63 -61c38 -51 52 -92 52 -150c0 -149 -110 -258 -261 -258c-63 0 -104 15 -152 57l-62 -60zM404 327l-238 -232c34 -57 73 -82 127 -82c80 0 133 73 133 184 c0 43 -7 82 -22 130zM150 130l238 232c-33 50 -72 74 -123 74c-86 0 -135 -66 -135 -180c0 -45 6 -81 20 -126'], + 0xF9: [677,12,602,18,581,'283 49c87 0 136 77 136 115v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30c-69 3 -69 3 -83 3c-15 0 -16 0 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-136 0 -141 82 -141 171v168c0 66 -4 73 -44 73h-37 v28c53 6 105 20 156 41l9 -4v-295c0 -66 13 -121 100 -121zM350 506l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0xFA: [677,12,602,18,581,'283 49c87 0 136 77 136 115v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30c-69 3 -69 3 -83 3c-15 0 -16 0 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-136 0 -141 82 -141 171v168c0 66 -4 73 -44 73h-37 v28c53 6 105 20 156 41l9 -4v-295c0 -66 13 -121 100 -121zM213 506l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0xFB: [677,12,602,18,581,'283 49c87 0 136 77 136 115v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30c-69 3 -69 3 -83 3c-15 0 -16 0 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-136 0 -141 82 -141 171v168c0 66 -4 73 -44 73h-37 v28c53 6 105 20 156 41l9 -4v-295c0 -66 13 -121 100 -121zM271 677h62l125 -167h-35l-121 103l-121 -103h-35'], + 0xFC: [637,12,602,18,581,'283 49c87 0 136 77 136 115v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30c-69 3 -69 3 -83 3c-15 0 -16 0 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-136 0 -141 82 -141 171v168c0 66 -4 73 -44 73h-37 v28c53 6 105 20 156 41l9 -4v-295c0 -66 13 -121 100 -121zM203 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM402 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xFD: [682,283,555,12,544,'257 511l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40zM297 86l119 292c4 10 6 19 6 26c0 14 -14 23 -42 25l-26 2v28c79 -3 79 -3 95 -3s16 0 95 3v-28l-28 -2c-25 -3 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123 c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61c-18 50 -28 74 -56 142l-109 262c-15 35 -27 46 -52 49l-18 2v28c97 -3 97 -3 116 -3s19 0 116 3v-28l-38 -2c-23 -1 -34 -9 -34 -23c0 -10 4 -25 10 -42'], + 0xFE: [726,281,600,-2,544,'0 661v28c79 12 112 20 156 37l9 -8v-349l55 56c26 26 75 44 122 44c112 0 202 -90 202 -202c0 -70 -36 -154 -79 -185l-100 -72c-21 -15 -47 -22 -82 -22c-42 0 -73 7 -118 25v-189c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3 c34 2 37 9 37 72v796c0 30 -7 41 -25 41h-56zM303 404c-91 0 -138 -67 -138 -98v-208c40 -42 78 -59 135 -59c97 0 157 74 157 191c0 108 -59 174 -154 174'], + 0xFF: [637,283,555,12,544,'297 86l119 292c4 10 6 19 6 26c0 14 -14 23 -42 25l-26 2v28c79 -3 79 -3 95 -3s16 0 95 3v-28l-28 -2c-25 -3 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61 c-18 50 -28 74 -56 142l-109 262c-15 35 -27 46 -52 49l-18 2v28c97 -3 97 -3 116 -3s19 0 116 3v-28l-38 -2c-23 -1 -34 -9 -34 -23c0 -10 4 -25 10 -42l64 -168c18 -49 29 -72 51 -110zM186 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50z M385 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Latin/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Main/Regular/Main.js new file mode 100644 index 0000000..b98074c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Main/Regular/Main.js @@ -0,0 +1,541 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Main'] = { + directory: 'Main/Regular', + family: 'AsanaMathJax_Main', + id: 'ASANAMATHMAIN', + 0x20: [0,0,249,0,0,''], + 0x21: [694,5,277,81,197,'138 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM160 694h34v-25c0 -56 -10 -109 -12 -143l-24 -278v-25l-28 -23l-10 5v17l-28 328c-2 29 -4 53 -7 106'], + 0x22: [709,-469,370,52,319,'105 469h-20l-33 196v5c0 19 22 39 43 39s43 -20 43 -38c0 -2 0 -4 -1 -6zM286 469h-20l-33 196v5c0 20 21 39 43 39c21 0 43 -20 43 -39c0 -1 0 -3 -1 -5'], + 0x23: [684,0,499,4,495,'470 280v-56h-109l-31 -224h-58l31 224h-134l-33 -224h-58l33 224h-107v56h116l21 139h-110v56h118l31 209h58l-31 -209h133l30 209h58l-30 -209h97v-56h-105l-20 -139h100zM332 419h-133l-21 -139h134'], + 0x24: [731,116,499,30,471,'260 373c115 -12 211 -32 211 -166c0 -75 -34 -139 -97 -180c-33 -22 -59 -32 -114 -43l4 -100h-45c2 21 2 34 4 98c-62 1 -128 16 -193 42c6 39 9 69 12 148h32v-64c0 -24 2 -29 14 -41c28 -27 70 -42 135 -49v279c-107 12 -193 31 -193 161c0 74 31 134 88 171 c30 20 54 28 105 37l-4 65h45c-2 -19 -3 -31 -4 -62c80 -6 119 -16 166 -43c-9 -33 -13 -72 -13 -126h-32v42c0 37 -4 49 -23 62c-25 16 -52 25 -98 29v-260zM260 292v-274c80 14 132 74 132 155c0 73 -34 104 -132 119zM223 379v251c-36 -4 -52 -10 -72 -26 c-30 -24 -46 -63 -46 -110c0 -73 32 -104 118 -115'], + 0x25: [709,20,839,39,802,'203 689c87 0 152 -66 152 -154c0 -96 -69 -167 -162 -167c-89 0 -154 65 -154 154c0 97 69 167 164 167zM200 666c-55 0 -89 -54 -89 -140s30 -135 83 -135c54 0 89 56 89 142c0 82 -32 133 -83 133zM650 321c87 0 152 -66 152 -154c0 -96 -69 -167 -162 -167 c-89 0 -154 65 -154 154c0 97 69 167 164 167zM647 298c-55 0 -89 -54 -89 -140s30 -135 83 -135c54 0 89 56 89 142c0 82 -32 133 -83 133zM250 -20h-40l366 729h40'], + 0x26: [689,20,777,43,753,'424 599c0 -90 -75 -151 -144 -202c56 -91 115 -165 204 -256c36 48 48 77 48 113c0 41 -12 76 -27 80c-12 3 -28 5 -87 10l33 45c50 -2 71 -2 97 -2l194 7c-9 -29 -12 -47 -12 -72c-39 6 -69 9 -140 12c4 -15 5 -24 5 -39c0 -63 -22 -111 -81 -177 c85 -49 123 -63 172 -63c17 0 31 5 61 19l6 -25l-87 -63c-6 -4 -16 -6 -34 -6c-48 0 -123 32 -181 77c-71 -55 -129 -77 -202 -77c-119 0 -206 80 -206 192c0 129 115 192 155 215c-21 53 -30 92 -30 133s9 73 24 86c23 32 45 47 68 60c18 16 39 23 66 23 c62 0 98 -33 98 -90zM213 352c-61 -48 -83 -85 -83 -143c0 -93 77 -173 166 -173c40 0 77 14 124 46c-113 126 -162 189 -207 270zM264 431c50 39 93 97 93 138c0 38 -25 67 -58 67c-40 0 -61 -28 -61 -79c0 -35 7 -70 26 -126'], + 0x27: [709,-446,277,45,233,'104 470l-44 -24l-15 10c48 77 72 143 78 223c51 15 61 18 97 30l13 -13c-34 -86 -72 -153 -129 -226'], + 0x28: [726,215,332,60,301,'146 266c0 -281 109 -403 155 -460l-19 -21c-82 77 -114 116 -149 183c-48 90 -73 191 -73 298c0 276 165 409 222 460l19 -26c-58 -68 -155 -174 -155 -434'], + 0x29: [726,215,332,32,273,'51 726c57 -51 222 -184 222 -461c0 -288 -169 -430 -222 -480l-19 21c51 63 155 184 155 460c0 260 -100 370 -155 434'], + 0x2A: [442,-95,388,32,359,'168 267l-131 64l-3 10l44 52h10l95 -98l26 143l9 4l62 -19l3 -15l-69 -125l139 24l6 -4v-62l-9 -8l-138 20l68 -122v-10l-68 -26l-10 4l-18 142l-106 -88h-10l-36 51l5 9'], + 0x2B: [538,0,668,65,604,'604 241h-240v-241h-59v241h-240v59h240v238h59v-238h240v-59'], + 0x2C: [123,155,249,16,218,'204 123l14 -14c-28 -77 -66 -140 -147 -245l-41 -19l-14 11c58 96 83 161 90 237c53 15 71 21 98 30'], + 0x2D: [287,-215,332,18,314,'284 215h-260l-6 5l28 67h262l6 -5'], + 0x2E: [111,5,249,67,183,'124 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x2F: [714,169,286,-37,297,'297 714l-279 -883h-55l279 883h55'], + 0x30: [689,20,499,29,465,'263 689c137 0 202 -104 202 -323c0 -256 -76 -386 -227 -386c-62 0 -118 28 -153 77s-56 150 -56 267c0 242 79 365 234 365zM245 654c-95 0 -132 -83 -132 -294c0 -244 41 -345 138 -345c92 0 130 88 130 301c0 240 -39 338 -136 338'], + 0x31: [700,3,499,60,418,'418 -3c-16 0 -126 3 -157 3c-11 0 -11 0 -165 -3v30l56 3c54 3 65 14 65 66v518l-150 -66l-7 50l241 102v-604c0 -52 10 -63 65 -66l52 -3v-30'], + 0x32: [689,3,499,16,468,'16 23l170 181c113 120 155 194 155 269c0 85 -55 139 -141 139c-67 0 -103 -25 -119 -83l-13 -46h-29l17 136c49 50 98 70 170 70c127 0 205 -71 205 -186c0 -75 -30 -130 -127 -233l-182 -193c185 4 231 0 346 5v-85c-193 0 -193 3 -229 3s-36 -3 -223 -3v26'], + 0x33: [689,20,499,15,462,'462 224c0 -137 -155 -244 -278 -244c-37 0 -81 8 -134 26c-6 50 -14 86 -35 147l27 10c19 -54 32 -77 56 -99c30 -28 71 -43 117 -43c93 0 154 67 154 169c0 91 -48 144 -131 144c-27 0 -46 -5 -84 -22l-7 6l12 53l15 -1c13 -1 24 -2 32 -2c71 0 130 63 130 138 c0 63 -53 116 -118 116c-52 0 -115 -34 -126 -68l-18 -56h-31l29 124c48 48 93 67 161 67c111 0 185 -59 185 -148c0 -59 -30 -105 -110 -167c47 -8 154 -29 154 -150'], + 0x34: [697,3,499,2,472,'280 181h-278v23l283 463l80 30l-1 -452l108 3v-71c-28 3 -49 4 -108 4v-75c0 -60 11 -73 60 -76l48 -3v-30c-133 3 -133 3 -157 3s-24 0 -157 -3v30l62 3c49 2 60 16 60 76v75zM280 245v352l-215 -352h215'], + 0x35: [690,20,499,13,459,'459 253c0 -164 -158 -273 -286 -273c-43 0 -83 9 -111 24c-14 44 -26 76 -49 133l24 14l46 -82c14 -26 64 -44 118 -44c109 0 173 65 173 176c0 108 -60 176 -156 176c-49 0 -76 -14 -123 -61l-20 6v368l357 -1v-85l-305 1v-209c53 47 89 50 137 50 c114 0 195 -80 195 -193'], + 0x36: [689,20,499,32,468,'131 331c53 39 85 78 162 78c106 0 175 -75 175 -190c0 -136 -97 -239 -227 -239c-129 0 -209 102 -209 267c0 137 56 259 159 346c51 44 92 64 188 96l42 -24c-180 -54 -269 -153 -290 -334zM255 349c-48 0 -95 -24 -117 -58c-11 -17 -15 -36 -15 -71 c0 -134 46 -207 131 -207c77 0 128 67 128 171c0 99 -51 165 -127 165'], + 0x37: [689,1,499,44,497,'409 603h-267c-46 0 -53 -8 -61 -70l-7 -56h-30v212h453v-30l-340 -660h-110'], + 0x38: [689,20,499,30,464,'168 345c-88 57 -115 95 -115 163c0 105 87 181 206 181c106 0 177 -58 177 -144c0 -60 -32 -102 -123 -164c114 -52 151 -95 151 -175c0 -124 -108 -226 -238 -226c-113 0 -196 76 -196 179c0 52 20 97 58 135c22 21 39 32 80 51zM284 295l-80 36 c-74 -45 -103 -91 -103 -164c0 -93 55 -153 140 -153c81 0 144 66 144 150c0 54 -38 103 -101 131zM223 423l55 -27c65 42 90 81 90 138c0 73 -48 121 -121 121c-71 0 -119 -45 -119 -111c0 -50 32 -90 95 -121'], + 0x39: [689,20,499,20,457,'96 -20l-34 17v8c181 44 290 167 298 335l-70 -58c-18 -15 -57 -26 -91 -26c-104 0 -179 84 -179 199c0 134 96 234 224 234c132 0 213 -103 213 -272c0 -134 -51 -249 -148 -332c-54 -46 -102 -69 -213 -105zM240 656c-82 0 -134 -63 -134 -164c0 -104 54 -175 134 -175 c77 0 130 62 130 154c0 45 -12 94 -30 126c-22 40 -55 59 -100 59'], + 0x3A: [456,5,249,66,182,'123 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM123 456c31 0 59 -28 59 -59c0 -30 -28 -57 -60 -57c-29 0 -56 28 -56 58s27 58 57 58'], + 0x3B: [456,153,249,16,218,'204 125l14 -14c-28 -77 -66 -140 -147 -245l-41 -19l-14 11c58 96 83 161 90 237c53 15 71 21 98 30zM150 456c31 0 59 -28 59 -59c0 -30 -28 -57 -60 -57c-29 0 -56 28 -56 58s27 58 57 58'], + 0x3C: [528,0,668,65,604,'604 0l-539 252v21l539 255v-59l-438 -205l438 -205v-59'], + 0x3D: [406,-134,668,65,604,'604 347h-539v59h539v-59zM604 134h-539v59h539v-59'], + 0x3E: [528,0,668,65,604,'65 0v59l438 205l-438 205v59l539 -255v-21'], + 0x3F: [694,5,443,43,395,'148 254c0 90 154 162 154 265c0 64 -51 109 -123 109c-45 0 -76 -15 -87 -42l-20 -48l-29 8l38 113c53 26 88 35 132 35c103 0 182 -67 182 -154c0 -57 -25 -96 -110 -174c-81 -73 -94 -90 -94 -123c0 -16 6 -29 22 -48l-21 -14c-30 19 -44 43 -44 73zM198 111 c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x40: [694,20,746,24,724,'401 30c161 0 234 109 257 141h61c-31 -51 -47 -72 -79 -99c-69 -61 -153 -92 -246 -92c-208 0 -370 154 -370 351c0 204 161 363 369 363c186 0 331 -125 331 -285c0 -137 -117 -275 -233 -275c-44 0 -71 30 -76 84c-50 -63 -76 -79 -123 -79c-74 0 -133 62 -133 141 c0 119 104 229 217 229c48 0 76 -25 88 -80l18 70h88l-77 -279c-3 -10 -4 -19 -4 -28c0 -17 10 -29 25 -29c75 0 157 127 157 242c0 137 -117 239 -274 239c-182 0 -318 -131 -318 -307s137 -307 322 -307zM308 166c87 0 137 169 137 244c0 41 -21 70 -52 72h-5 c-78 0 -140 -151 -140 -228c0 -53 24 -88 60 -88'], + 0x41: [700,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-63 -173c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30l37 3c22 2 42 20 54 49 l270 621h32zM240 269h253l-126 298'], + 0x42: [692,3,610,26,576,'298 -3c-37 0 -99 3 -124 3c-19 0 -40 -1 -109 -3v23l26 10c14 6 22 28 22 65v474c0 79 -4 86 -51 90l-36 3v30c139 -3 139 -3 158 -3c15 0 15 0 154 3h25c116 0 179 -48 179 -136c0 -52 -25 -95 -73 -128c-28 -19 -51 -28 -100 -38c77 -6 111 -15 149 -43 c38 -27 58 -68 58 -119c0 -94 -68 -231 -278 -231zM208 362v-315c25 -6 48 -8 77 -8c119 0 188 63 188 169c0 107 -63 156 -198 156c-19 0 -28 0 -67 -2zM208 644v-243c31 -2 44 -2 61 -2c114 0 174 47 174 134c0 83 -47 119 -154 119c-32 0 -55 -2 -81 -8'], + 0x43: [709,20,708,22,670,'22 342c0 240 196 367 411 367c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72c0 39 -101 79 -199 79c-172 0 -286 -122 -286 -306c0 -197 130 -327 325 -327c76 0 145 20 207 60l9 -10l-28 -50c-69 -36 -144 -54 -227 -54c-235 0 -393 146 -393 362'], + 0x44: [692,3,793,22,751,'341 -3c-43 0 -87 3 -145 3c-23 0 -23 0 -139 -3v23l31 16c16 8 25 30 25 59v474c0 78 -5 87 -51 90l-40 3v30c114 -2 169 -3 206 -3c70 0 157 3 174 3c211 0 349 -121 349 -307c0 -107 -44 -215 -116 -286c-70 -69 -166 -102 -294 -102zM644 359v9 c0 221 -186 278 -370 278c-22 0 -44 0 -66 -2v-595c113 0 276 9 336 58c66 54 100 140 100 252'], + 0x45: [692,3,610,22,572,'556 0c-136 -3 -136 -3 -167 -3c-70 0 -186 3 -232 3c-28 0 -57 -1 -123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c99 -2 144 -3 178 -3c46 0 139 3 232 3c44 0 75 -1 124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34 c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c34 -2 68 -3 110 -3c66 0 94 3 112 11c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12 c28 10 37 104 38 113h35c-10 -52 -16 -106 -16 -164'], + 0x46: [692,3,555,22,536,'216 327v-207c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c147 -3 147 -3 176 -3c25 0 60 0 109 2l107 1c43 0 73 -1 122 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34 c-31 8 -87 14 -135 14c-59 0 -77 -1 -107 -8v-267c34 -2 68 -3 110 -3c66 0 94 3 112 11c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3'], + 0x47: [709,20,762,22,728,'412 -20c-207 0 -390 121 -390 361c0 222 170 368 428 368c80 0 131 -9 242 -41c-14 -54 -20 -101 -20 -152h-31v53c0 78 -130 98 -217 98c-187 0 -295 -112 -295 -305c0 -208 126 -340 324 -340c66 0 126 14 137 33c4 7 6 19 6 43v101c0 24 -9 33 -34 35l-83 7v30 c87 -2 93 -2 122 -2c31 0 34 0 123 2l4 -25l-29 -10c-10 -4 -11 -6 -11 -37v-168c-136 -38 -205 -51 -276 -51'], + 0x48: [692,3,831,22,810,'616 120v223h-400v-223c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-178c20 -1 42 -2 83 -2h234 c41 0 62 1 83 2v178c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90'], + 0x49: [692,3,336,22,315,'216 569v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90'], + 0x4A: [692,195,332,-15,311,'-10 -192l-5 76l11 6c23 -14 43 -20 67 -20c40 0 54 29 54 113v586c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-452c0 -121 -13 -171 -62 -231c-30 -38 -83 -81 -131 -81c-4 0 -8 0 -12 1'], + 0x4B: [692,3,725,22,719,'216 325v-205c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-214l307 310v27c58 -2 75 -3 89 -3c17 0 17 0 80 3 v-30l-42 -2c-26 -1 -51 -14 -78 -38l-266 -240l330 -312c31 -29 47 -40 62 -41l21 -2v-30c-50 3 -52 3 -65 3c-10 0 -10 0 -80 -3l-348 335'], + 0x4C: [692,3,610,22,586,'565 0c-136 -3 -136 -3 -168 -3c-93 0 -210 3 -233 3c-26 0 -33 0 -99 -3v23l31 16c16 8 25 30 25 59v474c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-522c36 -2 76 -3 115 -3c93 0 180 5 189 13 c6 5 28 86 34 115h32c-10 -97 -14 -129 -21 -172'], + 0x4D: [692,13,945,16,926,'732 120v458l-276 -591h-20l-279 591v-458c0 -78 5 -87 51 -90l44 -3v-30c-105 3 -105 3 -120 3c-17 0 -17 0 -116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30c80 -3 80 -3 95 -3s15 0 95 3l264 -556l262 556c80 -3 80 -3 95 -3c17 0 17 0 93 3v-30 l-42 -3c-46 -3 -51 -12 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -151 3c-52 0 -82 -1 -128 -3v30l34 3c47 4 51 11 51 90'], + 0x4E: [692,6,830,17,813,'137 689l54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30c99 -3 99 -3 116 -3c15 0 15 0 120 3v-30l-44 -3c-46 -3 -51 -12 -51 -90v-575l-87 2l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30c-105 3 -105 3 -120 3c-17 0 -17 0 -116 -3v30l44 3c46 3 51 12 51 90v449 c0 78 -5 87 -51 90l-44 3v30c55 -2 64 -2 120 -3'], + 0x4F: [709,20,785,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM385 667c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315c0 208 -101 330 -272 330'], + 0x50: [692,3,603,22,580,'23 692c160 -3 160 -3 182 -3c102 0 153 3 170 3c127 0 205 -59 205 -155c0 -120 -105 -213 -242 -213c-20 0 -34 1 -58 6l-10 36c26 -8 41 -10 62 -10c87 0 148 63 148 153c0 95 -58 145 -166 145c-34 0 -63 -4 -98 -12v-522c0 -79 5 -87 51 -90l48 -3v-30 c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 74 -8 87 -53 90l-45 3v30'], + 0x51: [709,176,785,22,764,'401 -19c106 -13 189 -86 304 -86c9 0 20 1 59 6v-21l-84 -56l-254 72c-31 10 -59 15 -78 15c-10 0 -75 -34 -87 -40l2 32c56 43 90 66 109 72l16 6h-11c-215 0 -355 143 -355 362c0 218 152 366 376 366s366 -131 366 -338c0 -144 -74 -273 -195 -343 c-52 -29 -89 -40 -168 -47zM129 375c0 -128 57 -352 283 -352c157 0 245 112 245 312c0 210 -100 332 -272 332c-165 0 -256 -104 -256 -292'], + 0x52: [692,3,667,22,669,'216 642v-522c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 78 -5 87 -51 90l-41 3v30c140 -3 140 -3 173 -3c34 0 50 3 180 3c124 0 194 -54 194 -150c0 -58 -28 -108 -80 -145c-33 -23 -59 -34 -115 -48l227 -296 c13 -17 29 -23 61 -26v-30c-63 3 -63 3 -72 3c-11 0 -21 0 -68 -3l-277 363l6 12c13 -1 22 -1 29 -1c116 0 189 58 189 150c0 85 -58 133 -162 133c-34 0 -64 -4 -98 -12'], + 0x53: [709,20,524,24,503,'419 179c0 220 -395 42 -395 305c0 131 108 225 257 225c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-32l-6 57c-3 29 -14 44 -47 61c-27 15 -64 23 -103 23c-88 0 -151 -60 -151 -144c0 -175 249 -88 354 -187c28 -26 41 -59 41 -106c0 -145 -126 -250 -300 -250 c-58 0 -116 13 -173 38c6 45 8 67 8 113c0 6 0 22 -1 40h32l8 -67c5 -41 83 -80 163 -80c104 0 179 65 179 155'], + 0x54: [692,3,612,18,595,'379 689c43 0 22 0 216 3c-5 -57 -7 -96 -7 -161h-31l-4 79c-1 24 -12 33 -40 33h-155l-4 -523c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90l-4 523h-155c-28 0 -39 -9 -40 -33l-4 -79h-31c0 65 -2 104 -7 161l68 -1 c71 -1 125 -2 135 -2h158'], + 0x55: [692,20,777,12,759,'378 -20c-177 0 -267 62 -267 234v355c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30c99 -3 99 -3 116 -3c15 0 15 0 120 3 v-30l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -211 -78 -300 -286 -300'], + 0x56: [692,9,721,8,706,'274 662l-56 -3c-20 -1 -32 -8 -32 -20c0 -4 198 -514 199 -518c6 15 192 502 192 512c0 15 -13 25 -35 26l-52 3v30c16 -1 33 -1 38 -1c29 -1 52 -2 70 -2l108 3v-30l-30 -3c-20 -3 -31 -18 -54 -72l-174 -421c-33 -80 -45 -113 -64 -175h-50c-15 54 -27 89 -58 165 l-188 462c-13 30 -23 39 -44 41l-36 3v30c110 -3 110 -3 133 -3s23 0 133 3v-30'], + 0x57: [700,9,1000,8,984,'734 -9h-50l-196 545l-210 -545h-50l-142 618c-9 36 -21 47 -50 50l-28 3v30c77 -2 119 -3 126 -3l126 3v-30l-42 -3c-27 -2 -37 -11 -37 -33c0 -10 101 -470 104 -482l214 556h32l197 -563l133 498c-1 16 -12 21 -47 24l-40 3v30c95 -3 95 -3 105 -3l105 3v-30l-32 -3 c-22 -2 -32 -11 -38 -29'], + 0x58: [700,3,666,14,648,'648 27v-30c-43 2 -66 3 -71 3c-12 0 -12 0 -74 -3l-184 306l-202 -306c-43 3 -43 3 -51 3s-8 0 -52 -3v30l26 3c22 3 34 14 59 48l195 263l-128 213c-33 55 -68 88 -92 90l-45 3l-2 26l141 27c19 -10 34 -27 57 -65l128 -216l185 270h101v-30l-41 -3 c-15 -2 -27 -14 -68 -68l-154 -208l176 -280c35 -54 47 -67 66 -70'], + 0x59: [705,3,666,9,654,'9 680l120 25c18 0 59 -46 91 -103l143 -261l103 163c39 62 70 116 108 190h80v-15c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v142c0 16 -3 30 -9 40 l-124 216c-42 73 -94 125 -128 130l-29 3v29'], + 0x5A: [692,3,666,15,638,'637 663l-486 -619h273c153 0 167 6 174 72l6 57h34c-5 -55 -6 -90 -6 -176l-305 3l-312 -3v28l485 623h-228c-122 0 -149 -8 -152 -47l-6 -71h-34c2 37 3 55 3 81s-1 44 -3 81l165 -1l232 -2l156 3'], + 0x5B: [726,184,332,79,288,'88 -184l-9 13c6 31 8 59 8 127v622c0 50 -4 87 -4 113c0 15 1 26 5 35l100 -3l94 3l6 -6v-26l-4 -5h-38c-27 0 -49 -6 -61 -16c-9 -9 -12 -24 -12 -57v-691c0 -33 3 -47 12 -56c12 -10 34 -16 61 -16h38l4 -5v-26l-6 -6l-100 1'], + 0x5C: [714,169,286,-9,324,'324 -169h-55l-278 883h54'], + 0x5D: [726,184,332,45,254,'245 -184h-194l-6 6v26l4 5h38c27 0 49 6 61 16c9 9 12 23 12 56v691c0 33 -3 48 -12 57c-12 10 -34 16 -61 16h-38l-4 5v26l6 6h194c4 -9 5 -20 5 -35c0 -26 -4 -63 -4 -113v-622c0 -68 2 -96 8 -127'], + 0x5E: [689,-283,605,51,554,'119 283h-68l219 406h66l218 -406h-68l-183 338'], + 0x5F: [-75,125,499,0,500,'500 -125h-500v50h500v-50'], + 0x60: [709,-446,277,45,233,'174 685l44 24l15 -10c-48 -76 -72 -144 -78 -223c-51 -15 -61 -18 -97 -30l-13 13c34 86 72 153 129 226'], + 0x61: [469,12,499,32,471,'324 82l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -56 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183c0 -49 4 -57 28 -58l39 -2v-30c-44 2 -69 3 -74 3 c-13 0 -13 0 -78 -3zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79'], + 0x62: [726,28,552,-15,508,'150 718v-349c32 77 98 116 165 116c89 0 180 -71 193 -215v-8c0 -134 -76 -290 -228 -290c-48 0 -103 16 -166 52l-40 -36l-16 6c7 70 8 97 8 159v467c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37zM284 404c-78 0 -134 -61 -134 -96v-215c0 -22 74 -54 126 -54 c85 0 145 78 145 190c0 107 -53 175 -137 175'], + 0x63: [497,20,443,25,413,'399 311h-28l-7 61c-18 25 -66 45 -110 45c-90 0 -140 -60 -140 -167c0 -132 73 -218 184 -218c36 0 68 9 105 29l10 -15l-21 -32c-10 -15 -85 -34 -137 -34c-134 0 -229 95 -229 230c0 5 -1 9 -1 14c0 137 144 273 268 273c45 0 88 -19 120 -63c-9 -36 -14 -77 -14 -123 '], + 0x64: [726,12,610,34,579,'579 -3c-9 0 -73 3 -91 3c-12 0 -28 -1 -77 -3l5 92l-111 -93c-5 -4 -28 -8 -48 -8c-65 0 -112 13 -146 42c-49 40 -77 119 -77 199c0 122 149 257 272 257c40 0 78 -14 106 -49v183c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-616c0 -63 3 -70 37 -72l46 -3 v-30zM412 350c0 16 -67 72 -146 72c-90 0 -144 -64 -144 -173c0 -119 63 -204 151 -204c47 0 96 31 124 78c13 23 15 33 15 98v129'], + 0x65: [469,20,478,26,448,'250 -20c-89 0 -224 45 -224 239c0 104 32 173 114 221c40 24 85 29 122 29c112 0 186 -75 186 -190c0 -12 -1 -21 -2 -35c-47 -10 -156 -18 -242 -18c-34 0 -64 1 -85 4c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34 c-12 -18 -102 -56 -167 -56zM359 267c-3 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c26 -6 69 -9 112 -9c51 0 102 3 126 6'], + 0x66: [737,3,332,23,341,'341 717v-77l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -28 -70 -143v-85l131 4l-7 -53h-124v-283c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v283l-69 -4v22l69 31v42v2c0 77 57 259 168 259c21 0 43 -6 67 -20'], + 0x67: [469,283,555,32,544,'55 289c0 135 146 180 221 180c49 0 85 -12 122 -42l142 4l4 -12l-25 -41h-92c8 -21 11 -34 11 -54c0 -127 -143 -174 -204 -174c-8 0 -14 1 -24 2c-17 -17 -46 -34 -46 -57c0 -27 24 -39 76 -39h160c70 0 118 -50 118 -122c0 -122 -119 -217 -270 -217 c-127 0 -216 63 -216 154c0 31 14 68 28 76l87 47c-48 14 -66 30 -66 58c0 15 5 28 15 43l79 61c-74 8 -120 59 -120 133zM240 435c-64 0 -101 -45 -101 -122s45 -129 112 -129c61 0 103 45 103 110c0 85 -46 141 -114 141zM287 -14c-69 0 -97 -2 -113 -10 c-40 -17 -66 -58 -66 -103c0 -74 60 -125 147 -125c105 0 184 64 184 150c0 65 -39 88 -152 88'], + 0x68: [726,3,581,6,572,'7 661v28c79 12 112 20 156 37l9 -8v-340c28 61 89 92 151 92c85 0 171 -58 171 -175v-193c0 -64 3 -70 37 -72l41 -3v-30c-69 3 -69 3 -83 3c-17 0 -18 0 -79 -3v284c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30 c-68 2 -95 3 -124 3s-56 -1 -124 -3v30l45 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56'], + 0x69: [687,3,290,21,271,'188 465v-363c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41zM142 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0x6A: [688,283,233,-40,167,'-10 -248c68 0 85 106 85 241v334c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-484c0 -79 -18 -143 -53 -189c-38 -50 -76 -71 -134 -75l-12 38c8 -1 24 -3 30 -3zM112 688c29 0 55 -26 55 -55c0 -30 -26 -56 -56 -56c-28 0 -55 27 -55 56c0 28 27 55 56 55'], + 0x6B: [726,12,555,21,549,'23 661v28c79 12 112 20 156 37l9 -8v-457l223 198h100v-30h-4c-32 0 -59 -12 -104 -47l-129 -101l190 -193c32 -31 61 -48 85 -48v-23l-96 -29l-265 252v-138c0 -63 3 -70 37 -72l44 -3v-30c-89 3 -94 3 -122 3c-26 0 -26 0 -126 -3v30l46 3c34 2 37 9 37 72v518 c0 30 -7 41 -25 41h-56'], + 0x6C: [726,3,290,21,271,'23 661v28c79 12 112 20 156 37l9 -8v-616c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56'], + 0x6D: [469,3,882,16,869,'18 400v28c53 6 105 20 156 41l9 -4v-85l69 64c18 16 46 25 83 25c69 0 110 -27 142 -93l76 68c18 16 47 25 82 25c92 0 150 -62 150 -161v-206c0 -63 3 -70 37 -72l47 -3v-30c-76 3 -76 3 -89 3c-17 0 -18 0 -79 -3v284c0 76 -37 127 -91 127c-60 0 -126 -49 -126 -94 v-212c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v179c0 76 -37 127 -91 127c-60 0 -126 -49 -126 -94v-212c0 -63 3 -70 37 -72l42 -3v-30c-65 2 -91 3 -119 3s-31 0 -127 -3v30l46 3c34 2 37 9 37 72v225 c0 66 -4 73 -44 73h-37'], + 0x6E: [469,3,581,6,572,'410 -3v284c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30c-68 2 -95 3 -124 3s-56 -1 -124 -3v30l45 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-87l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-193c0 -64 3 -70 37 -72l41 -3v-30c-69 3 -69 3 -83 3c-17 0 -18 0 -79 -3'], + 0x6F: [469,20,545,32,514,'279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 436c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187c0 136 -68 236 -160 236'], + 0x70: [477,281,600,8,556,'10 400v28c53 6 105 20 156 41l9 -4v-96c44 74 112 108 179 108c101 0 198 -76 200 -206c1 -10 2 -19 2 -29c0 -121 -97 -263 -248 -263c-41 0 -85 11 -133 34v-189c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v503 c0 66 -4 73 -44 73h-37zM313 404c-91 0 -138 -67 -138 -98v-208c39 -41 80 -59 135 -59c90 0 157 83 157 195c0 104 -60 170 -154 170'], + 0x71: [477,281,600,45,593,'591 428v-28h-37c-40 0 -44 -7 -44 -73v-503c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v189c-48 -23 -92 -34 -133 -34c-151 0 -248 142 -248 263c0 10 1 19 2 29c2 130 99 206 200 206c67 0 135 -34 179 -108v96l9 4 c51 -21 103 -35 156 -41zM288 404c-94 0 -154 -66 -154 -170c0 -112 67 -195 157 -195c55 0 96 18 135 59v208c0 31 -47 98 -138 98'], + 0x72: [469,3,394,21,374,'23 400v28c53 6 105 20 156 41l9 -4v-103l56 66c21 25 53 41 83 41c18 0 36 -4 47 -11l-9 -120h-21c-16 32 -37 46 -67 46c-49 0 -89 -50 -89 -110v-172c0 -66 2 -69 47 -72l52 -3v-30c-123 3 -123 3 -143 3c-25 0 -51 -1 -123 -3v30l46 3c34 2 37 9 37 72v225 c0 66 -4 73 -44 73h-37'], + 0x73: [469,20,423,30,391,'41 143h30v-41c0 -50 52 -85 125 -85c71 0 121 38 121 92c0 86 -94 60 -212 112c-46 21 -68 55 -68 103c0 90 71 145 187 145c41 0 77 -7 130 -25c-3 -31 -4 -55 -5 -113h-28v23c0 47 -51 82 -118 82c-61 0 -96 -28 -96 -78c0 -130 284 -37 284 -210 c0 -98 -93 -168 -224 -168c-46 0 -85 7 -137 24c8 40 11 70 11 139'], + 0x74: [621,12,325,22,319,'98 382l-76 -4v21l78 35v70c0 30 -1 49 -4 79c31 10 61 23 85 38l12 -11c-8 -64 -11 -100 -11 -142v-38l137 6l-9 -54h-128v-262c0 -49 16 -69 55 -69c19 0 34 5 59 19l13 -17l-48 -53c-6 -7 -30 -12 -53 -12c-77 0 -110 32 -110 106v288'], + 0x75: [469,12,602,18,581,'283 49c87 0 136 77 136 115v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30c-69 3 -69 3 -83 3c-15 0 -16 0 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-136 0 -141 82 -141 171v168c0 66 -4 73 -44 73h-37 v28c53 6 105 20 156 41l9 -4v-295c0 -76 20 -121 100 -121'], + 0x76: [459,7,564,6,539,'539 431l-31 -2c-20 -2 -34 -20 -56 -67l-159 -369h-50l-172 403c-11 25 -16 31 -31 33l-34 2v28c49 -2 97 -3 116 -3s19 0 117 3v-28l-49 -2c-16 -1 -25 -8 -25 -19s3 -24 9 -38l119 -288c38 83 92 217 104 246c12 30 19 57 19 73s-8 25 -24 26l-41 2v28 c60 -2 78 -3 94 -3s34 1 94 3v-28'], + 0x77: [469,7,833,6,808,'413 469h23c8 -27 15 -47 29 -81l115 -290l105 300c0 18 -14 30 -39 31l-34 2v28c82 -3 82 -3 98 -3s16 0 98 3v-28l-26 -2c-22 -3 -34 -20 -64 -87l-137 -349h-46l-136 342l-150 -342h-47l-102 336c-25 78 -38 98 -66 100l-28 2v28c99 -3 99 -3 119 -3s20 0 119 3v-28 l-40 -2c-25 -1 -38 -9 -38 -24c0 -8 85 -292 88 -301'], + 0x78: [469,3,515,20,496,'288 254l148 -200c11 -15 23 -23 35 -24l25 -3v-30c-52 3 -52 3 -62 3c-9 0 -9 0 -61 -3l-133 195l-134 -192h-86v27h17c10 0 23 6 30 15l149 176l-120 174c-10 14 -32 28 -50 29l-21 2l-5 26l116 20c34 -34 45 -47 60 -69l76 -116l124 175h82v-28h-14 c-17 0 -28 -4 -34 -11'], + 0x79: [459,283,555,12,544,'297 86l119 292c4 10 6 19 6 26c0 14 -14 23 -42 25l-26 2v28c79 -3 79 -3 95 -3s16 0 95 3v-28l-28 -2c-25 -3 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61 c-18 50 -28 74 -56 142l-109 262c-15 35 -27 46 -52 49l-18 2v28c97 -3 97 -3 116 -3s19 0 116 3v-28l-38 -2c-23 -1 -34 -9 -34 -23c0 -10 4 -25 10 -42l64 -168c18 -49 29 -72 51 -110'], + 0x7A: [462,3,499,16,466,'455 432l-314 -397h135c96 0 138 7 142 25l18 79h30l-6 -47c-7 -48 -9 -72 -9 -95l-276 3c-43 0 -49 0 -153 -3l-6 20l90 105l170 212c27 34 44 57 65 90h-143c-74 0 -92 -5 -96 -26l-12 -68h-30c6 69 7 81 9 132l248 -3c38 0 68 1 138 3v-30'], + 0x7B: [726,175,332,58,289,'289 -175c-113 0 -155 26 -155 158v168c0 72 -10 103 -76 122c62 19 76 54 76 119v186c0 125 55 148 155 148c-65 -19 -83 -59 -83 -131v-186c0 -74 -12 -117 -81 -135v-2c72 -19 81 -65 81 -144v-173c0 -72 20 -116 83 -130'], + 0x7C: [713,172,210,76,135,'135 -172h-59v885h59v-885'], + 0x7D: [726,175,332,44,275,'275 273c-66 -19 -76 -50 -76 -122v-168c0 -132 -42 -158 -155 -158c63 14 83 58 83 130v173c0 79 9 125 81 144v2c-69 18 -81 61 -81 135v186c0 72 -18 112 -83 131c100 0 155 -23 155 -148v-186c0 -65 14 -100 76 -119'], + 0x7E: [341,-182,605,51,555,'190 329c73 0 175 -72 226 -72c37 0 74 29 105 84l34 -27c-43 -78 -87 -113 -138 -113c-66 0 -168 71 -226 71c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120'], + 0xA3: [694,13,499,12,478,'338 647c-117 0 -146 -103 -146 -204v-89l182 6l-4 -48c-96 3 -113 4 -181 5c-5 -87 -32 -159 -94 -248c37 5 77 7 133 7c27 0 162 -7 180 -7c19 0 25 8 29 37l7 52h26v-148c-21 -17 -29 -20 -50 -20c-155 0 -180 32 -341 42l-45 -45h-22v49c33 33 48 21 62 50 c20 40 34 121 34 200v30l-96 -3l8 45c43 -1 49 -1 88 -3v106c0 65 33 120 99 168c63 45 116 65 173 65c41 0 64 -6 98 -26c-7 -35 -10 -70 -10 -102c0 -8 0 -19 1 -34h-33c-1 62 -6 115 -98 115'], + 0xA5: [701,3,499,5,496,'496 679c-44 -61 -93 -150 -130 -229l-32 -68h122v-39h-139c-8 -18 -17 -41 -17 -65v-32h156v-39h-156v-87c0 -81 5 -86 44 -90l41 -3v-30c-45 2 -85 3 -125 3c-43 0 -84 -1 -118 -3v30l41 3c41 4 44 12 44 90v87h-156v39h156v16c0 8 -1 22 -6 31l-21 50h-129v39h111 l-75 160c-20 42 -46 109 -94 109c-3 0 -5 -1 -8 -1v29l92 21c4 1 7 1 10 1c39 0 53 -59 68 -99l104 -261l70 163c28 64 53 126 77 190h70v-15'], + 0xA7: [709,219,499,26,465,'109 534c0 -146 356 -90 356 -281c0 -59 -34 -107 -78 -142c44 -21 60 -60 60 -107c0 -107 -119 -223 -243 -223c-56 0 -118 18 -160 44c6 55 10 105 12 157h32l5 -90c37 -43 77 -59 145 -59c75 0 146 39 146 121c0 163 -358 102 -358 291c0 53 37 107 83 137 c-34 23 -58 62 -58 103c0 116 103 224 227 224c46 0 93 -8 138 -36c-6 -40 -12 -99 -13 -152h-31l-5 87c-37 34 -74 49 -123 49c-73 0 -135 -44 -135 -123zM399 212c0 105 -157 112 -264 157c-29 -25 -43 -51 -43 -90c0 -91 198 -120 273 -156c20 30 34 60 34 89'], + 0xA8: [637,-537,332,17,316,'68 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM267 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0xAC: [360,-88,673,65,608,'608 88h-57v211h-486v61h543v-272'], + 0xAE: [705,164,906,18,889,'889 271c0 -239 -197 -435 -436 -435s-435 196 -435 435c0 238 196 434 435 434s436 -196 436 -434zM841 271c0 212 -177 386 -388 386c-212 0 -387 -175 -387 -386c0 -212 175 -387 387 -387c211 0 388 174 388 387zM711 40l-4 -4c-18 2 -36 4 -55 4 c-20 0 -40 -2 -60 -4l-198 237l7 9c67 0 140 9 140 94c0 60 -40 86 -96 86c-23 0 -46 -3 -68 -8v-238c0 -11 -1 -31 -1 -53c0 -39 3 -85 22 -93c8 -3 34 -5 43 -6l4 -3v-21l-4 -4c-35 3 -70 4 -105 4s-70 -1 -105 -4l-4 4v21l4 3c64 7 64 1 64 134v130c0 11 1 29 1 50 c0 35 -3 76 -21 84c-9 3 -34 5 -44 6l-4 4v20l4 4c35 -3 70 -4 105 -4c54 0 108 4 162 4c65 0 133 -25 133 -102c0 -72 -61 -110 -124 -125l141 -168c19 -22 29 -36 59 -37l4 -3v-21'], + 0xB1: [541,0,668,65,604,'604 279h-240v-192h-59v192h-240v59h240v203h59v-203h240v-59zM604 0h-539v55h539v-55'], + 0xB5: [473,286,610,89,567,'553 92c6 -2 11 -6 14 -11v-7c-29 -31 -90 -89 -139 -89c-32 0 -39 29 -39 59c0 22 4 44 5 57l-10 3c-31 -50 -86 -116 -153 -116c-36 0 -64 14 -83 47l-7 1c-2 -28 -2 -54 -2 -79c0 -90 12 -161 55 -218l-7 -12c-21 -8 -44 -12 -67 -13c-24 43 -31 88 -31 140 s7 111 12 181c4 59 11 161 11 255c0 64 -3 123 -14 163c25 4 50 9 77 14c4 -25 5 -49 5 -74c0 -61 -8 -121 -8 -182c0 -25 1 -49 5 -74c7 -47 31 -95 86 -95c57 0 109 55 123 104c10 32 13 102 13 168c0 52 -2 103 -6 131l8 11c23 3 44 9 65 17l9 -10 c-10 -46 -17 -169 -17 -267c0 -50 2 -94 6 -119c2 -14 7 -23 22 -23c26 0 49 23 67 38'], + 0xB7: [319,-203,249,67,183,'124 319c31 0 59 -28 59 -59c0 -30 -28 -57 -60 -57c-29 0 -56 28 -56 58s27 58 57 58'], + 0xD7: [547,5,668,59,611,'611 37l-43 -42l-233 234l-234 -234l-42 42l234 234l-234 234l42 42l234 -234l233 234l43 -42l-235 -234'], + 0xF0: [728,20,545,32,504,'335 614c91 -91 169 -198 169 -352c0 -168 -102 -282 -250 -282c-133 0 -222 96 -222 237c0 148 99 252 239 252c38 0 74 -8 107 -25l2 2c-28 62 -59 106 -98 142l-140 -68l-18 30l136 66c-31 29 -67 52 -122 80l34 32c73 -44 100 -62 133 -90l143 70l18 -30zM416 240 c0 170 -105 196 -155 196c-87 0 -136 -66 -136 -184c0 -140 61 -239 147 -239c109 0 144 133 144 227'], + 0xF7: [512,-10,605,51,555,'51 233v56h504v-56h-504zM304 512c31 0 58 -28 58 -59s-27 -57 -59 -57c-30 0 -57 27 -57 58c0 30 27 58 58 58zM304 126c31 0 58 -28 58 -59s-27 -57 -59 -57c-30 0 -57 27 -57 58c0 30 27 58 58 58'], + 0x131: [469,3,290,21,271,'188 465v-363c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41'], + 0x2C6: [677,-510,312,0,312,'125 677h62l125 -167h-35l-121 103l-121 -103h-35'], + 0x2C7: [677,-510,312,0,312,'156 574l122 103h34l-125 -167h-62l-125 167h35'], + 0x2C9: [591,-538,338,13,325,'325 538h-312v53h312v-53'], + 0x2D8: [699,-534,269,-4,273,'135 596c61 0 99 48 108 103h26l4 -4c-4 -90 -49 -161 -138 -161c-86 0 -136 68 -139 161l4 4h26c9 -56 47 -103 109 -103'], + 0x2D9: [676,-568,333,112,220,'220 622c0 -30 -23 -54 -54 -54s-54 24 -54 54c0 29 25 54 54 54c30 0 54 -23 54 -54'], + 0x2DA: [717,-535,267,36,231,'134 717c52 0 97 -39 97 -91s-45 -91 -97 -91c-54 0 -98 38 -98 91c0 51 46 91 98 91zM134 557c34 0 56 32 56 69c0 36 -22 69 -56 69c-35 0 -57 -32 -57 -69s22 -69 57 -69'], + 0x2DC: [682,-571,329,-5,334,'-5 575c11 49 50 105 105 105c19 0 46 -8 80 -25c35 -16 58 -25 70 -25c25 0 43 18 56 52h25l3 -3c-11 -52 -49 -108 -106 -108c-19 0 -45 9 -79 25c-34 17 -57 25 -69 25c-26 0 -45 -16 -58 -49h-24'], + 0x300: [677,-506,0,-302,-78,'-118 506l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c14 0 34 -12 55 -33l138 -138h-40'], + 0x301: [677,-506,0,-255,-31,'-255 506l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34c0 -18 -7 -26 -40 -47l-144 -90h-40'], + 0x302: [677,-510,0,-312,0,'-187 677h62l125 -167h-35l-121 103l-121 -103h-35'], + 0x303: [640,-535,0,-330,0,'-224 635c53 0 99 -45 136 -45c28 0 44 13 59 50h29c-4 -58 -52 -105 -109 -105c-54 0 -101 45 -139 45c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100'], + 0x304: [591,-538,0,-332,-20,'-20 538h-312v53h312v-53'], + 0x306: [664,-506,0,-307,-25,'-25 664c-6 -135 -91 -158 -141 -158c-53 0 -135 25 -141 158h30c3 -57 49 -98 111 -98s108 41 111 98h30'], + 0x307: [637,-537,0,-175,-75,'-124 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0x308: [637,-537,0,-318,-17,'-267 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM-66 637c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50'], + 0x30A: [718,-518,0,-235,-35,'-35 618c0 -55 -45 -100 -100 -100s-100 45 -100 100s45 100 100 100s100 -45 100 -100zM-73 618c0 39 -25 64 -62 64s-62 -25 -62 -64s25 -64 62 -64s62 25 62 64'], + 0x30C: [677,-510,0,-322,-10,'-166 574l122 103h34l-125 -167h-62l-125 167h35'], + 0x338: [714,169,0,-408,0,'0 714l-352 -883h-56l351 883h57'], + 0x382: [0,0,768,0,0,''], + 0x391: [700,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30 l37 3c22 2 42 20 54 49l231 526l39 95h32zM240 269h253l-126 298'], + 0x392: [692,3,610,26,576,'298 -3c-37 0 -99 3 -124 3c-19 0 -40 -1 -109 -3v23l26 10c14 6 22 28 22 65v474c0 79 -4 86 -51 90l-36 3v30c139 -3 139 -3 158 -3c15 0 15 0 154 3h25c116 0 179 -48 179 -136c0 -52 -25 -95 -73 -128c-28 -19 -51 -28 -100 -38c77 -6 111 -15 149 -43 c38 -27 58 -68 58 -119c0 -94 -68 -231 -278 -231zM208 362v-315c25 -6 48 -8 77 -8c119 0 188 63 188 169c0 107 -63 156 -198 156c-19 0 -28 0 -67 -2zM208 644v-243c31 -2 44 -2 61 -2c114 0 174 47 174 134c0 83 -47 119 -154 119c-32 0 -55 -2 -81 -8'], + 0x393: [692,3,555,22,536,'536 689c-11 -44 -16 -101 -16 -152h-35v65c0 13 -1 24 -9 27c-53 20 -132 21 -176 21c-27 0 -56 -1 -84 -8v-522c0 -82 8 -88 51 -90l48 -3v-30c-52 2 -99 3 -145 3c-49 0 -96 -1 -148 -3v30l48 3c43 2 51 10 51 90v449c0 82 -8 88 -51 90l-48 3v30c55 -1 112 -3 169 -3 c67 0 159 3 216 3c45 0 90 -1 129 -3'], + 0x394: [697,4,688,27,662,'27 6c65 122 267 584 310 691h25l300 -691l-6 -10c-101 3 -202 4 -303 4c-107 0 -213 0 -319 -4zM537 37c-65 178 -137 354 -212 527h-7c-76 -175 -147 -349 -213 -527h432'], + 0x395: [692,3,610,22,572,'556 0c-136 -3 -136 -3 -167 -3c-70 0 -186 3 -232 3c-28 0 -57 -1 -123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c99 -2 144 -3 178 -3c46 0 139 3 232 3c44 0 75 -1 124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34 c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c34 -2 68 -3 110 -3c66 0 94 3 112 11c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 12 -119 12c-45 0 -75 -1 -103 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12 c28 10 37 104 38 113h35c-10 -52 -16 -106 -16 -164'], + 0x396: [692,3,666,15,638,'637 663l-486 -619h273c153 0 167 6 174 72l6 57h34c-5 -55 -6 -90 -6 -176l-277 3h-28l-312 -3v28l485 623h-228c-122 0 -149 -8 -152 -47l-6 -71h-34c2 37 3 55 3 81s-1 44 -3 81l165 -1l182 -2h50l156 3'], + 0x397: [692,3,831,22,810,'616 120v223c-27 2 -43 2 -83 2h-234c-40 0 -56 0 -83 -2v-223c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90 v-178c20 -1 42 -2 83 -2h234c41 0 62 1 83 2v178c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90'], + 0x398: [709,20,785,22,764,'764 367c0 -215 -168 -387 -387 -387c-203 0 -355 140 -355 364c0 206 144 365 376 365c214 0 366 -120 366 -342zM657 336c0 198 -89 331 -275 331c-174 0 -253 -122 -253 -286c0 -175 82 -359 280 -359c167 0 248 130 248 314zM238 481c14 -19 -2 -81 66 -81h178 c55 0 54 33 63 77l4 4h14l3 -4c-1 -76 -1 -152 0 -228l-3 -4h-14l-4 4c-9 45 -8 78 -63 78h-178c-54 0 -53 -33 -63 -78l-3 -4h-15l-3 4c1 76 1 152 0 228l3 4h15'], + 0x399: [692,3,336,22,315,'216 569v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90'], + 0x39A: [692,3,725,22,719,'216 325v-205c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-214l278 271c16 16 29 33 29 39v27 c58 -2 75 -3 89 -3c17 0 17 0 80 3v-30l-42 -2c-26 -1 -51 -14 -78 -38l-266 -240l330 -312c31 -29 47 -40 62 -41l21 -2v-30c-50 3 -52 3 -65 3c-10 0 -10 0 -80 -3l-348 335'], + 0x39B: [697,4,753,17,729,'729 0l-3 -4c-40 2 -79 4 -119 4c-44 0 -88 -1 -133 -4l-3 4v25l3 4c17 0 83 -5 83 23c0 25 -54 156 -64 182l-129 325h-7c-10 -24 -199 -464 -199 -505c0 -27 55 -25 70 -25l5 -4v-25l-5 -4c-34 2 -69 4 -105 4c-34 0 -67 -2 -102 -3l-4 3v25l4 4c22 0 47 -1 64 13 c37 29 281 617 298 655h20c8 -20 242 -623 279 -656c13 -11 27 -10 44 -12l3 -4v-25'], + 0x39C: [692,13,945,16,926,'732 120v458c-18 -34 -30 -57 -44 -86l-178 -378c-18 -37 -42 -102 -54 -127h-20l-279 591v-458c0 -78 5 -87 51 -90l44 -3v-30c-105 3 -105 3 -120 3c-17 0 -17 0 -116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30c80 -3 80 -3 95 -3s15 0 95 3 l264 -556l262 556c80 -3 80 -3 95 -3c17 0 17 0 93 3v-30l-42 -3c-46 -3 -51 -12 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -151 3c-52 0 -82 -1 -128 -3v30l34 3c47 4 51 11 51 90'], + 0x39D: [692,20,830,17,813,'137 689l54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30c99 -3 99 -3 116 -3c15 0 15 0 120 3v-30l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -11 3 -30 3 -37l-90 16l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30c-105 3 -105 3 -120 3c-17 0 -17 0 -116 -3v30l44 3 c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30c55 -2 64 -2 120 -3'], + 0x39E: [689,4,692,42,651,'612 505l-4 -3l-20 -3l-4 4c-12 78 -6 112 -97 112h-283c-89 0 -83 -33 -96 -112l-5 -4l-19 3l-3 3c3 60 6 121 4 181l2 3c173 -4 346 -4 518 0l2 -3l-1 -39c-1 -47 2 -94 6 -142zM197 484c14 -18 -5 -84 66 -84h166c56 0 55 36 64 80l3 4h15l3 -4c-1 -78 -1 -155 0 -234 l-3 -3h-15c-14 14 4 84 -67 84h-166c-55 0 -55 -36 -63 -81l-3 -3h-15l-4 3c2 79 2 156 0 234l4 4h15zM651 189c-10 -62 -17 -126 -23 -189l-4 -4c-92 2 -185 4 -278 4c-92 0 -185 -2 -279 -4l-3 4c-5 63 -12 127 -22 189l4 5h20l5 -5c24 -83 23 -113 118 -113h314 c95 0 95 31 119 113l4 5h20'], + 0x39F: [709,20,785,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM385 667c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315c0 208 -101 330 -272 330'], + 0x3A0: [689,4,812,25,788,'788 0l-4 -4c-44 1 -89 4 -135 4s-93 -2 -140 -4l-4 4v24l4 3c16 1 72 2 83 14c13 16 10 145 10 173v433l-391 1v-428c0 -28 -3 -164 11 -179c12 -13 65 -13 82 -14l4 -3v-24l-4 -4c-45 1 -90 4 -135 4c-47 0 -93 -2 -141 -4l-3 4v24l3 3c17 1 71 1 83 14 c13 16 11 141 11 170v268c0 28 3 151 -13 167c-12 12 -65 12 -81 13l-3 3v24l3 3c120 -1 240 -3 360 -3c132 0 265 0 396 3l4 -3v-24l-4 -3c-17 -1 -68 0 -81 -13c-15 -14 -11 -144 -11 -171v-266c0 -26 -3 -153 11 -168c12 -12 65 -13 81 -14l4 -3v-24'], + 0x3A1: [692,3,603,22,580,'23 692c160 -3 160 -3 182 -3c102 0 153 3 170 3c127 0 205 -59 205 -155c0 -120 -105 -213 -242 -213c-20 0 -34 1 -58 6l-10 36c26 -8 41 -10 62 -10c87 0 148 63 148 153c0 95 -58 145 -166 145c-34 0 -63 -4 -98 -12v-522c0 -79 5 -87 51 -90l48 -3v-30 c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 74 -8 87 -53 90l-45 3v30'], + 0x3A3: [689,4,684,45,643,'643 193c-6 -66 -9 -131 -10 -197c-102 2 -204 4 -305 4c-94 0 -188 -2 -283 -4v19c50 54 192 260 227 325c-65 111 -134 222 -210 325v16c174 1 349 0 522 8l4 -6c-7 -47 -9 -96 -12 -143l-3 -4h-18l-6 4c-13 89 -16 104 -114 104h-253c53 -84 106 -170 165 -251 c-71 -102 -139 -209 -203 -317h358c95 0 97 35 116 117l4 3h18'], + 0x3A4: [692,3,612,18,595,'379 689c43 0 22 0 216 3c-5 -57 -7 -96 -7 -161h-31l-4 79c-1 24 -12 33 -40 33h-155c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v423c0 43 -1 66 -4 100h-155c-28 0 -39 -9 -40 -33l-4 -79 h-31c0 65 -2 104 -7 161l68 -1c71 -1 125 -2 135 -2h158'], + 0x3A5: [691,4,733,3,735,'735 564l-1 -18l-16 -9c-9 54 -40 82 -94 82c-41 0 -80 -20 -110 -46c-93 -79 -102 -231 -102 -344c0 -30 -3 -172 11 -188c11 -12 65 -13 82 -14l3 -3v-24l-3 -4c-46 2 -92 4 -140 4c-45 0 -90 -1 -136 -4l-4 4v24l4 3c15 0 73 1 83 14c13 18 11 157 11 188v38 c0 106 -57 355 -195 355c-54 0 -82 -33 -108 -75l-9 -1l-8 12c33 73 85 133 171 133c170 0 179 -254 184 -375h25c12 145 43 375 237 375c78 0 119 -52 115 -127'], + 0x3A6: [689,4,755,23,723,'723 372c0 -196 -136 -257 -311 -257c0 -21 -3 -57 7 -75c16 -11 65 -12 83 -13l5 -3v-24l-5 -4c-43 2 -86 4 -129 4c-42 0 -86 -1 -129 -4l-6 4v24l6 3c91 6 91 -6 91 88c-162 0 -312 57 -312 243c0 188 154 227 312 227c-3 84 -12 69 -91 74l-6 3v24l6 3 c43 -2 87 -3 129 -3c43 0 86 1 129 3l5 -3v-24l-5 -3c-80 -5 -88 9 -90 -74c147 0 311 -30 311 -213zM624 359c0 139 -80 199 -212 201v-422c135 4 212 86 212 221zM335 138v422c-136 -5 -213 -58 -213 -202c0 -134 78 -216 213 -220'], + 0x3A7: [700,3,666,14,648,'648 27v-30c-43 2 -66 3 -71 3c-12 0 -12 0 -74 -3l-184 306c-25 -35 -35 -49 -45 -64l-157 -242c-43 3 -43 3 -51 3s-8 0 -52 -3v30l26 3c22 3 34 14 59 48c2 3 3 3 6 8l189 255l-128 213c-33 55 -68 88 -92 90l-45 3l-2 26l141 27c19 -10 34 -27 57 -65l128 -216 l185 270h101v-30l-41 -3c-15 -2 -27 -14 -68 -68l-154 -208l176 -280c35 -54 47 -67 66 -70'], + 0x3A8: [689,4,870,18,852,'852 672l-4 -7c-50 -18 -48 -5 -60 -70c-34 -213 -48 -383 -309 -388c0 -8 -5 -153 15 -168c13 -10 62 -11 79 -12l4 -3v-24l-4 -4c-47 2 -93 4 -139 4s-91 -1 -137 -4l-3 4v24l3 3c17 1 70 1 82 14c14 15 12 145 12 166c-245 2 -279 162 -306 367c-10 85 -18 76 -63 91 l-4 7l2 12l4 5c22 -3 116 -9 131 -21c34 -27 14 -325 132 -407c30 -20 69 -25 104 -25v229c0 30 3 163 -12 180c-11 13 -65 13 -82 14l-3 3v24l3 3c46 -2 91 -3 137 -3s92 1 139 3l4 -3v-24l-4 -3c-16 -1 -72 -1 -82 -14c-14 -17 -12 -147 -12 -177v-232c35 0 74 5 103 25 c120 82 99 380 134 407c13 11 109 18 129 21l6 -5'], + 0x3A9: [704,6,824,34,791,'791 145c-7 -50 -14 -101 -17 -151c-103 4 -208 4 -311 6v68c159 21 206 165 206 306c0 170 -56 303 -250 303c-190 0 -263 -125 -263 -300c0 -142 45 -288 206 -309v-68c-103 -3 -207 -2 -310 -6c-5 50 -11 101 -18 151l4 3h15l3 -3c13 -52 13 -70 73 -70h129v7 c-134 56 -207 172 -207 316c0 223 167 306 368 306c199 0 356 -90 356 -306c0 -145 -74 -260 -208 -316v-7h129c60 0 60 17 73 70l4 3h14'], + 0x3B1: [473,16,594,44,571,'562 97c5 -3 8 -6 9 -13c-26 -30 -82 -100 -128 -100c-51 0 -62 111 -68 144l-3 3c-48 -67 -126 -147 -218 -147c-68 0 -97 49 -106 109c-24 150 73 380 241 380c112 0 114 -136 125 -213l7 -3c26 58 61 134 63 202h11c11 -15 21 -31 30 -46c-25 -70 -60 -135 -99 -197 c6 -32 22 -161 67 -161c27 0 46 24 62 42h7zM368 164l-4 28c-9 60 -30 245 -117 245c-109 0 -142 -235 -128 -322c7 -45 25 -87 78 -87c71 0 137 85 171 136'], + 0x3B2: [680,283,512,68,460,'458 205c20 -125 -76 -220 -197 -220c-44 0 -89 13 -127 44c3 -95 6 -191 17 -288c-26 -6 -50 -15 -74 -24l-9 10c11 186 6 375 5 562c0 150 -15 306 135 372c28 12 57 19 88 19c64 0 103 -36 113 -99c17 -102 -54 -181 -141 -212l1 -9c91 -2 174 -59 189 -155zM376 208 c-13 83 -70 131 -152 131c-17 0 -32 -3 -47 -10l-9 8c4 10 5 22 6 34c106 0 187 75 169 187c-7 48 -37 88 -89 88c-19 0 -37 -6 -52 -17c-80 -56 -77 -424 -61 -526c9 -58 51 -91 108 -91c106 0 142 103 127 196'], + 0x3B3: [473,273,581,-31,489,'88 473c88 0 171 -80 146 -450l6 -4c48 89 192 260 176 366c-3 16 -10 34 -16 50l4 11c16 7 47 21 64 21c16 0 18 -17 20 -29c13 -85 -61 -184 -105 -244c-54 -74 -108 -151 -156 -230c-2 -70 -12 -147 -26 -215c-19 -9 -38 -17 -58 -22c-5 8 -11 16 -16 24 c15 68 46 163 82 220c2 82 -2 165 -16 249c-11 70 -42 192 -137 192c-37 0 -54 -18 -73 -46l-6 -1c-3 3 -7 6 -8 12c25 49 54 96 119 96'], + 0x3B4: [702,16,497,56,468,'465 287c24 -148 -62 -303 -219 -303c-113 0 -168 69 -185 176c-23 144 47 266 185 298v6c-47 29 -126 75 -135 133c-13 79 102 105 163 105c25 0 50 -3 75 -8c8 -13 14 -27 19 -39l-9 -6c-33 19 -68 30 -103 30s-85 -15 -78 -57c18 -116 258 -152 287 -335zM393 269 c-13 81 -54 130 -125 179c-127 -37 -152 -153 -131 -281c11 -68 46 -155 130 -155c118 0 141 162 126 257'], + 0x3B5: [468,13,480,69,436,'161 146c0 -70 58 -116 135 -116c45 0 89 14 132 42l8 -5l-15 -26c-50 -36 -103 -54 -159 -54c-102 0 -193 50 -193 145c0 65 48 106 143 123v9c-70 12 -105 45 -105 97c0 72 58 107 174 107c59 0 105 -13 138 -40c-16 -27 -29 -49 -38 -68l-11 5c-5 55 -36 83 -92 83 c-55 0 -93 -36 -93 -90c0 -44 22 -86 98 -86c22 0 44 3 68 7l5 -6c-3 -13 -6 -23 -8 -30l-10 -6c-23 6 -45 9 -66 9c-44 0 -111 -20 -111 -100'], + 0x3B6: [712,149,504,61,509,'509 26c12 -79 -96 -162 -164 -175c-19 12 -36 28 -53 41l3 8c16 -3 31 -4 47 -4c43 0 133 33 124 86c-3 20 -28 22 -43 22c-45 0 -90 -9 -136 -9c-125 0 -200 68 -220 192c-27 173 51 344 165 451l-5 5c-22 -1 -44 -3 -66 -3c-30 0 -66 4 -94 25l2 19l30 21l12 -1 c17 -37 69 -41 101 -41c62 0 120 24 171 49l15 -7c-3 -17 -6 -33 -11 -49c-213 -13 -290 -229 -260 -424c20 -127 78 -176 204 -176c42 0 81 9 122 9c25 0 51 -9 56 -39'], + 0x3B7: [473,275,531,-11,464,'149 473c28 0 17 -46 13 -104l7 -2c35 57 89 106 165 106c59 0 104 -29 113 -91c16 -105 -47 -499 17 -620l-2 -13c-25 -4 -48 -13 -70 -24l-11 9c-8 32 -16 50 -10 165c5 113 23 345 5 457c-8 46 -38 70 -83 70c-172 0 -134 -289 -130 -408l-5 -9 c-21 -6 -41 -15 -61 -25l-10 10c7 79 16 322 6 388c-2 11 -7 19 -18 19c-20 0 -56 -26 -72 -37l-6 2l-8 11l2 6c29 21 125 90 158 90'], + 0x3B8: [702,16,613,83,555,'547 504c29 -188 -11 -520 -247 -520c-136 0 -187 96 -206 215c-34 213 2 503 262 503c127 0 173 -84 191 -198zM478 381c0 45 1 91 -6 136c-11 68 -44 159 -130 159c-129 0 -173 -191 -180 -295h316zM478 349h-316c0 -48 -1 -97 7 -146c12 -78 40 -190 142 -190 c143 0 162 224 167 336'], + 0x3B9: [473,16,310,94,305,'305 83l-1 -8c-30 -30 -95 -91 -144 -91c-36 0 -59 23 -64 59c-8 57 13 250 6 406c26 5 53 12 76 24l11 -13c-18 -81 -37 -295 -24 -375c3 -22 17 -44 42 -44c30 0 64 34 82 52l10 -2'], + 0x3BA: [473,16,571,13,553,'541 76c6 -1 8 -6 12 -9l-1 -6c-27 -29 -74 -76 -121 -76c-68 0 -179 219 -198 249c-9 -9 -30 -28 -35 -37c-13 -23 1 -151 5 -186c-20 -9 -41 -16 -60 -27l-11 10c2 94 1 190 0 286c0 114 -5 127 -25 127s-66 -33 -81 -44l-8 2l-5 8v8c28 22 116 92 154 92 c16 0 25 -10 27 -25c12 -70 1 -151 0 -219l8 -2c18 21 204 240 250 240c67 0 55 -35 52 -82l-9 -3c-11 11 -22 16 -36 16c-44 0 -180 -86 -186 -124c13 -36 134 -200 166 -220c12 -8 22 -12 34 -12c27 0 50 17 68 34'], + 0x3BB: [702,16,618,86,616,'603 88c7 0 9 -5 13 -8l-1 -6c-27 -29 -84 -90 -127 -90c-9 0 -17 3 -25 10c-21 18 -106 369 -124 431l-8 3c-71 -120 -145 -269 -162 -415c-24 -9 -48 -18 -71 -29l-12 14c66 163 137 322 240 462c-11 40 -47 193 -99 193c-16 0 -45 -11 -61 -16c-6 2 -8 6 -11 11l3 8 c30 13 100 46 137 46c10 0 19 -3 27 -13c17 -19 105 -363 139 -470c10 -31 42 -164 81 -164c21 0 46 22 61 33'], + 0x3BC: [473,286,610,89,567,'553 92c6 -2 11 -6 14 -11v-7c-29 -31 -90 -89 -139 -89c-54 0 -37 84 -34 116l-10 3c-31 -50 -86 -116 -153 -116c-36 0 -64 14 -83 47l-7 1c-7 -129 -2 -224 53 -297l-7 -12c-21 -8 -44 -12 -67 -13c-48 87 -28 182 -19 321c6 99 24 319 -3 418c25 4 50 9 77 14 c17 -111 -15 -219 2 -330c7 -47 31 -95 86 -95c57 0 109 55 123 104c17 57 16 235 7 299l8 11c23 3 44 9 65 17l9 -10c-15 -70 -24 -312 -11 -386c2 -14 7 -23 22 -23c26 0 49 23 67 38'], + 0x3BD: [473,7,497,-24,443,'228 71c108 116 189 271 114 355l2 11c20 11 41 22 63 31c17 -16 31 -33 35 -56c17 -108 -162 -303 -211 -404c-20 -3 -39 -8 -56 -15l-11 7c-34 241 -52 401 -116 401c-21 0 -43 -17 -57 -29h-9l-6 8v9c26 19 111 84 141 84c25 0 29 -15 62 -186l40 -211'], + 0x3BE: [701,148,547,65,507,'507 28c11 -71 -103 -153 -158 -176c-17 15 -38 28 -60 40l2 9c13 -2 26 -3 40 -3c41 0 136 32 128 82c-4 21 -22 26 -40 26c-54 0 -106 -13 -161 -13c-87 0 -174 39 -190 138c-21 133 116 198 220 229l-1 9c-63 19 -129 48 -140 120c-12 74 50 120 111 140l-2 7 c-18 1 -120 -9 -125 30c-3 18 25 29 36 35l8 -4c9 -39 69 -41 97 -41c56 0 110 15 155 40l11 -11c-2 -12 -5 -25 -10 -38c-90 -1 -230 -28 -211 -146c16 -97 106 -125 187 -127l4 -8c-9 -7 -16 -18 -22 -28c-13 1 -27 2 -41 2c-108 0 -223 -70 -204 -192 c14 -86 92 -93 159 -93c51 0 99 11 148 11c24 0 54 -8 59 -38'], + 0x3BF: [469,20,545,32,514,'279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 436c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187c0 136 -68 236 -160 236'], + 0x3C0: [467,15,653,27,628,'513 -15c-100 0 -147 214 -50 420h-227c-4 -131 -10 -264 -28 -392c-15 -12 -49 -19 -68 -25l-11 10c40 131 52 268 67 407h-23c-75 0 -97 -10 -129 -73l-6 -4l-9 5l-2 7c10 49 11 127 76 126c85 -1 171 -3 257 -3c71 0 141 2 211 4c-3 -15 -6 -32 -6 -49l-60 -13 c-30 -72 -43 -154 -29 -239c6 -41 25 -124 81 -124c23 0 41 14 57 25l7 -1l7 -9l-2 -6c-26 -26 -72 -66 -113 -66'], + 0x3C1: [473,284,566,83,490,'153 29c0 -177 19 -252 29 -295c-24 -11 -53 -17 -81 -18c-10 143 -7 285 -15 428c-2 44 -4 90 1 133c12 118 113 196 232 196c96 0 151 -53 166 -148c25 -157 -42 -340 -219 -340c-41 0 -79 10 -109 44h-4zM407 311c-11 69 -42 130 -121 130c-137 0 -144 -198 -128 -303 c10 -66 39 -127 117 -127c138 0 150 192 132 300'], + 0x3C2: [463,155,501,43,430,'429 34c14 -89 -93 -168 -166 -189l-46 44l5 8c14 -3 30 -5 44 -5c48 0 130 35 121 92c-2 16 -16 21 -31 21c-45 0 -88 -11 -134 -11c-289 0 -192 469 47 469h135l5 -6c-1 -16 -3 -31 -6 -44c-110 -1 -230 18 -292 -77c-71 -106 -37 -279 133 -279c47 0 92 10 139 10 c23 0 42 -8 46 -33'], + 0x3C3: [474,15,552,35,487,'487 469c-1 -20 -4 -40 -8 -58c-53 -8 -112 -4 -165 -4l-2 -3c73 -43 104 -61 117 -147c25 -157 -55 -272 -215 -272c-112 0 -156 63 -173 168c-22 141 19 208 131 269c30 17 63 30 101 35c51 6 173 -4 208 17zM360 267c-9 54 -24 105 -74 140c-14 2 -29 5 -44 5 c-131 0 -148 -120 -130 -230c11 -70 37 -169 129 -169c126 0 135 155 119 254'], + 0x3C4: [463,16,519,35,439,'47 278c-6 1 -11 3 -12 9c2 32 7 158 31 173c8 4 33 3 41 3h327l5 -6l-4 -37c-43 -9 -97 -7 -142 -8c-4 -29 -63 -379 59 -379c29 0 52 23 71 41l5 1l11 -10l-1 -6c-34 -37 -84 -75 -140 -75c-54 0 -77 38 -84 87c-17 109 8 236 32 337c-163 -6 -163 15 -193 -127'], + 0x3C5: [471,12,547,13,490,'487 358c24 -148 -99 -370 -258 -370c-63 0 -102 38 -112 100c-18 112 50 319 -28 319c-22 0 -46 -25 -62 -38l-7 2l-7 8l1 9c33 32 78 75 131 75c110 0 20 -222 43 -364c6 -39 30 -75 73 -75c114 0 179 187 163 287c-7 42 -28 95 -73 113l-3 10c21 11 39 24 58 37 c45 -27 73 -64 81 -113'], + 0x3C6: [485,277,681,8,606,'602 332c30 -190 -108 -332 -293 -336l11 -247c-21 -7 -42 -15 -63 -26l-11 8c3 87 9 175 5 263c-122 17 -219 79 -239 207c-26 162 97 261 242 284l7 -10l-4 -7c-123 -36 -185 -125 -163 -262c14 -90 58 -165 155 -189c-2 69 -10 244 9 305c26 82 114 151 199 151 c87 0 133 -61 145 -141zM534 317c-9 58 -38 123 -108 123c-121 0 -116 -173 -117 -262l-2 -163c157 17 253 141 227 302'], + 0x3C7: [479,193,608,51,548,'427 -172c-80 0 -108 109 -166 323h-8c-61 -109 -113 -223 -151 -344h-11c-16 11 -29 26 -40 41c49 120 121 235 201 335c-12 42 -57 194 -84 219c-12 10 -24 17 -37 17c-23 0 -34 -15 -47 -27l-7 -1l-8 7l2 7c25 29 57 68 103 68c11 0 24 -2 35 -9 c39 -24 71 -176 83 -221l7 -4c62 81 124 163 190 240c22 -10 42 -21 59 -35l-3 -10c-76 -18 -203 -174 -244 -218c19 -63 76 -286 131 -321c13 -8 28 -12 42 -12c21 0 38 10 52 21h6l6 -6l-1 -5c-29 -29 -63 -65 -110 -65'], + 0x3C8: [682,281,695,6,626,'19 377c-7 0 -10 4 -13 8l2 9c25 19 97 69 128 69c68 0 17 -187 38 -312c12 -77 63 -119 138 -115l21 1c3 207 8 417 -4 625c15 9 31 15 49 20l9 -6c-13 -211 -18 -425 -24 -638c138 18 221 139 198 280c-6 37 -18 76 -44 107l-2 13c14 4 48 20 63 20c28 0 42 -67 45 -86 c26 -160 -110 -348 -261 -377c5 -83 10 -166 18 -249c-18 -10 -37 -20 -56 -27l-9 10c12 85 16 175 18 263c-15 -3 -31 -4 -48 -4c-96 0 -159 27 -176 132c-16 104 31 279 -37 279c-20 0 -37 -12 -53 -22'], + 0x3C9: [463,12,715,36,659,'656 325c23 -144 -60 -337 -220 -337c-50 0 -81 15 -110 59h-5c-35 -36 -72 -59 -127 -59c-97 0 -139 62 -153 149c-26 164 75 291 223 326l11 -11l-6 -9c-129 -55 -176 -165 -152 -314c8 -48 31 -113 94 -113c120 0 113 201 103 288c21 5 42 13 62 20l11 -9 c-12 -63 -15 -130 -5 -196c7 -46 21 -102 80 -102c117 0 149 172 134 267c-9 54 -32 108 -83 139l-1 11c13 7 39 24 54 24c53 0 84 -95 90 -133'], + 0x3D0: [701,13,562,30,492,'352 701c103 0 122 -61 122 -92c0 -67 -55 -127 -131 -164c-25 -11 -53 -31 -93 -42c26 1 44 2 55 2c107 0 187 -76 187 -189c0 -118 -91 -229 -246 -229c-170 0 -216 128 -216 248c0 196 117 466 322 466zM333 677c-84 0 -168 -109 -209 -291c155 46 250 145 277 224 c0 53 -37 67 -68 67zM266 15c112 0 141 122 141 186c0 68 -31 183 -161 183c-38 0 -79 -9 -125 -30c-40 -66 -15 -280 76 -323c19 -10 42 -16 69 -16'], + 0x3D1: [702,15,620,62,583,'300 702c169 0 242 -246 227 -397c17 -3 35 -5 53 -6l3 -8c-19 -16 -40 -30 -63 -39c-22 -108 -87 -267 -220 -267c-18 0 -38 2 -54 13c-59 40 -79 241 -126 241c-17 0 -32 -19 -42 -30h-7l-8 8l-1 8c21 23 74 79 111 79c67 0 53 -271 166 -271c97 0 135 155 143 232 c-124 31 -303 115 -326 257c-15 95 48 180 144 180zM483 317c-2 18 -3 36 -6 54c-15 93 -78 293 -205 293c-53 0 -88 -42 -79 -95c19 -120 190 -206 290 -252'], + 0x3D5: [705,289,665,27,613,'609 285c31 -198 -91 -288 -271 -301c4 -82 13 -163 27 -245c-13 -13 -29 -21 -47 -28l-11 9v264c-127 8 -253 53 -276 201c-29 182 106 289 276 288l-2 211c13 9 26 16 39 21l8 -6c-11 -75 -14 -151 -17 -226c123 1 251 -45 274 -188zM528 273c-17 107 -83 174 -193 176 l2 -443c149 5 214 124 191 267zM307 449c-153 -5 -218 -113 -195 -262c18 -114 77 -173 194 -182'], + 0x3D6: [529,12,715,41,671,'667 301c25 -153 -62 -313 -225 -313c-50 0 -81 15 -110 59h-6c-35 -36 -71 -59 -127 -59c-93 0 -138 58 -152 146c-25 159 42 260 180 309l11 -12l-1 -8c-103 -54 -134 -175 -115 -294c8 -48 33 -113 94 -113c120 0 113 200 103 288c21 5 42 13 62 20l12 -9 c-13 -63 -17 -131 -6 -198c7 -45 22 -100 80 -100c117 0 146 170 131 265c-30 190 -242 214 -389 214v10l15 20c22 2 45 3 69 3c154 0 344 -38 374 -228'], + 0x3DC: [692,3,555,22,536,'216 120c0 -79 5 -87 51 -90h48v-33c-108 4 -186 4 -293 0v30h48c46 3 51 14 51 93v449c0 79 -5 87 -51 90h-48v33c242 -9 261 4 514 -3c-11 -44 -16 -92 -16 -152h-35v65c-1 43 -19 50 -269 40v-267h261c0 -18 1 -48 4 -141h-30c6 28 0 56 -13 84c-12 16 -179 13 -222 9 v-207'], + 0x3DD: [495,233,514,23,495,'190 156v-389c-56 10 -111 9 -167 1v30l46 3c34 2 38 9 37 72v622c37 -2 75 -5 116 -6l255 6c22 -19 27 -41 0 -63c-70 7 -142 8 -217 1c-57 0 -74 -39 -70 -228c79 -6 157 -7 231 0c11 -19 8 -35 -2 -49c-76 5 -153 6 -229 0'], + 0x3F0: [510,16,705,48,659,'659 72l-1 -5c-35 -39 -75 -83 -132 -83c-76 0 -92 77 -92 138c0 52 12 104 29 153l-8 6c-116 -104 -242 -209 -372 -295l-26 4c-6 15 -9 31 -9 48c0 8 1 16 2 24c102 48 181 174 181 286c0 33 -7 88 -51 88c-29 0 -57 -27 -77 -45l-7 1l-6 8l1 7c35 34 95 91 146 91 c42 0 58 -32 58 -69c0 -81 -58 -197 -104 -263l6 -6c306 205 294 260 326 301c15 18 32 34 49 49l19 -8l1 -22c1 -27 -4 -55 -10 -82c-29 -30 -60 -58 -92 -86c-6 -27 -10 -55 -10 -83c0 -63 13 -181 98 -181c28 0 49 15 70 32h5'], + 0x3F1: [474,260,478,72,461,'457 313c21 -134 -23 -328 -181 -328c-91 0 -141 69 -161 150l-12 -2c-3 -51 -5 -106 3 -157c25 -158 98 -109 214 -130c28 -5 44 -8 61 -89c-2 -5 -9 -14 -13 -17h-4c-2 9 -5 21 -11 28c-41 51 -232 -53 -273 205c-23 147 -4 501 188 501c97 0 173 -62 189 -161z M388 363c-8 49 -35 84 -88 84c-119 0 -162 -233 -147 -329c8 -48 38 -102 93 -102c126 0 157 248 142 347'], + 0x3F4: [709,20,785,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM656 375c-12 185 -111 292 -271 292c-164 0 -256 -107 -256 -292h527zM131 330c16 -187 124 -308 279 -308c153 0 245 114 247 308h-526'], + 0x3F5: [466,12,480,46,439,'439 408l-31 -53l-19 -1c-14 55 -60 68 -119 68c-98 0 -136 -86 -140 -170c76 0 151 -1 228 1l-9 -34l-5 -6c-30 1 -60 1 -89 1h-57c-22 0 -44 0 -68 -3c1 -91 76 -175 148 -175c58 0 109 20 149 52l11 -18c-50 -44 -114 -82 -189 -82c-105 0 -181 51 -199 161 c-24 158 87 317 251 317c49 0 101 -21 138 -58'], + 0x2013: [277,-219,499,0,500,'500 219h-500v58h500v-58'], + 0x2014: [277,-219,1000,0,1000,'1000 219h-1000v58h1000v-58'], + 0x2016: [713,172,420,76,345,'345 -172h-59v885h59v-885zM135 -172h-59v885h59v-885'], + 0x2018: [709,-446,277,45,233,'174 685l44 24l15 -10c-48 -77 -72 -143 -78 -223c-51 -15 -61 -18 -97 -30l-13 13c34 86 72 153 129 226'], + 0x2019: [709,-446,277,45,233,'104 470l-44 -24l-15 10c48 77 72 143 78 223c51 15 61 18 97 30l13 -13c-34 -86 -72 -153 -129 -226'], + 0x201C: [709,-446,510,45,466,'407 685l44 24l15 -10c-48 -77 -72 -143 -78 -223c-51 -15 -61 -18 -97 -30l-13 13c34 86 72 153 129 226zM174 685l44 24l15 -10c-48 -77 -72 -143 -78 -223c-51 -15 -61 -18 -97 -30l-13 13c34 86 72 153 129 226'], + 0x201D: [709,-446,510,45,466,'104 470l-44 -24l-15 10c48 77 72 143 78 223c51 15 61 18 97 30l13 -13c-34 -86 -72 -153 -129 -226zM337 470l-44 -24l-15 10c48 77 72 143 78 223c51 15 61 18 97 30l13 -13c-34 -86 -72 -153 -129 -226'], + 0x2020: [694,5,499,34,466,'466 395l-5 -5l-19 1c-32 2 -64 6 -96 6h-59v-78c0 -98 0 -196 7 -293l2 -26l-5 -5c-14 2 -29 4 -41 4s-27 -2 -41 -4l-5 5l2 26c7 97 7 195 7 293v78h-59c-32 0 -64 -4 -96 -6l-19 -1l-5 5c5 23 4 47 0 67l5 5l19 -1c32 -2 64 -6 96 -6h59v52c0 52 -6 103 -11 155l-2 22 l5 5c16 -1 31 -3 45 -3s29 2 45 3l5 -5l-2 -22c-5 -52 -11 -103 -11 -155v-52h59c32 0 64 4 96 6l19 1l5 -5c-4 -20 -5 -44 0 -67'], + 0x2021: [694,249,499,34,466,'466 -40l-5 -5c-33 2 -66 7 -99 7h-75v-47c0 -46 6 -93 11 -140l2 -19l-5 -5c-16 1 -31 3 -45 3s-29 -2 -45 -3l-5 5l2 19c5 47 11 94 11 140v47h-75c-33 0 -66 -5 -99 -7l-5 5c4 23 4 47 0 67l5 5c33 -2 66 -7 99 -7h75c0 66 -3 132 -8 198c5 66 8 131 8 197h-75 c-33 0 -66 -5 -99 -7l-5 5c4 23 4 47 0 67l5 5c33 -2 66 -7 99 -7h75v47c0 46 -6 93 -11 140l-2 19l5 5c16 -1 31 -3 45 -3s29 2 45 3l5 -5l-2 -19c-5 -47 -11 -94 -11 -140v-47h75c33 0 66 5 99 7l5 -5c-4 -20 -4 -44 0 -67l-5 -5c-33 2 -66 7 -99 7h-75 c0 -66 3 -131 8 -197c-5 -66 -8 -132 -8 -198h75c33 0 66 5 99 7l5 -5c-4 -20 -4 -44 0 -67'], + 0x2026: [111,5,746,100,647,'588 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM372 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM157 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x2032: [495,-47,364,53,313,'313 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34c-10 0 -16 13 -16 22c0 10 7 29 10 37l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62'], + 0x2033: [495,-47,599,53,548,'548 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34c-10 0 -16 13 -16 22c0 10 7 29 10 37l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62zM313 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34c-10 0 -16 13 -16 22c0 10 7 29 10 37 l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62'], + 0x2034: [495,-47,834,53,783,'783 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34c-10 0 -16 13 -16 22c0 10 7 29 10 37l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62zM548 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34c-10 0 -16 13 -16 22c0 10 7 29 10 37 l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62zM313 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34c-10 0 -16 13 -16 22c0 10 7 29 10 37l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62'], + 0x2035: [495,-47,364,53,313,'313 69c0 -9 -7 -22 -17 -22c-16 0 -34 22 -41 34l-173 273c-14 22 -29 51 -29 79c0 36 38 62 71 62c39 0 58 -38 69 -70l109 -319c3 -8 11 -27 11 -37'], + 0x203E: [1726,-1614,1024,0,1024,'0 1614v112h1024v-112h-1024'], + 0x2044: [558,279,313,0,314,'314 557l-263 -836h-51l263 837'], + 0x2057: [495,-47,1069,53,1018,'1018 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34c-10 0 -16 13 -16 22c0 10 7 29 10 37l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62zM783 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34c-10 0 -16 13 -16 22c0 10 7 29 10 37 l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62zM548 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34c-10 0 -16 13 -16 22c0 10 7 29 10 37l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62zM313 433c0 -28 -16 -57 -30 -79l-172 -273c-8 -12 -26 -34 -42 -34 c-10 0 -16 13 -16 22c0 10 7 29 10 37l110 319c11 32 29 70 68 70c34 0 72 -26 72 -62'], + 0x20D7: [790,-519,557,0,558,'486 636h-486v37h486l-79 96l21 21l130 -136l-130 -135l-21 21'], + 0x210F: [733,9,499,10,471,'471 85c-59 -44 -127 -94 -159 -94c-21 0 -31 15 -31 40c0 24 7 54 13 76l51 196c10 39 15 72 15 90c0 14 -11 21 -22 21c-42 0 -145 -97 -190 -178c-40 -72 -54 -172 -62 -229l-69 -16l-7 11c26 78 67 270 88 386l15 82l-74 -26l-14 35l95 34l20 109c2 10 2 19 2 25 c0 20 -16 23 -34 23h-48l4 21c74 6 115 20 160 42l12 -11l-39 -182l215 77l13 -35l-237 -85l-48 -222l4 -2c28 35 54 70 87 101c68 63 145 108 180 108c26 0 32 -18 32 -35c0 -24 -5 -49 -11 -75l-64 -256c-4 -15 -7 -28 -7 -40c0 -11 6 -20 13 -20c12 0 38 15 61 30l26 17'], + 0x2111: [721,4,645,12,594,'589 688c-11 -72 -68 -136 -145 -136c-115 0 -157 111 -265 111c-57 0 -103 -42 -103 -100c0 -49 41 -86 89 -86c10 0 20 1 30 4l4 -17c-12 -4 -24 -6 -36 -6c-65 0 -110 50 -110 114c0 90 88 149 172 149c128 0 193 -115 263 -115c50 0 79 47 88 90zM594 487l-11 -14 c-17 15 -38 32 -61 32c-22 0 -45 -17 -45 -40c0 -63 112 -151 112 -258c0 -136 -147 -211 -267 -211c-157 0 -171 141 -239 141c-24 0 -42 -21 -51 -41l-20 1c21 48 69 88 123 88c120 0 144 -159 258 -159c56 0 123 51 123 111c0 106 -109 176 -109 282c0 57 46 108 102 108 c33 0 63 -18 85 -40'], + 0x2113: [713,13,470,16,455,'455 632c0 -109 -157 -215 -237 -269c-17 -57 -72 -206 -72 -266c0 -38 21 -71 62 -71c64 0 114 75 140 125l19 -8c-35 -70 -100 -156 -187 -156c-67 0 -105 50 -105 114c0 62 31 133 48 191l-97 -65l-10 18l117 80c30 107 72 388 234 388c49 0 88 -31 88 -81zM425 625 c0 31 -21 49 -50 49c-59 0 -87 -78 -101 -125l-46 -154c64 46 197 143 197 230'], + 0x2118: [504,203,656,58,617,'617 327c0 -132 -128 -331 -274 -331c-61 0 -91 64 -91 118c0 31 19 69 54 69c23 0 38 -17 38 -39c0 -5 -1 -9 -1 -15h-3c-31 0 -48 -34 -48 -61c0 -30 15 -54 48 -54c3 0 5 1 8 1c114 18 173 182 173 282c0 52 -14 158 -84 158c-84 0 -222 -229 -262 -300 c36 -60 90 -168 90 -237s-43 -121 -114 -121c-64 0 -93 59 -93 115c0 55 28 128 58 175c-33 39 -57 101 -57 153c0 119 98 183 206 199l2 -17c-73 -10 -139 -66 -139 -145c0 -38 16 -69 36 -99c53 94 203 326 318 326c87 0 135 -101 135 -177zM209 -115 c0 61 -44 136 -81 183c-24 -42 -50 -107 -50 -156c0 -43 23 -99 71 -99c44 0 60 33 60 72'], + 0x211C: [717,4,748,17,702,'702 85l-113 -89c-73 41 -82 122 -82 199c0 23 1 46 1 67c0 37 -17 107 -65 107c-11 0 -52 -18 -65 -24c0 -91 -4 -177 -72 -246c-40 -42 -94 -65 -138 -103l-64 72l-35 -26l-11 15l111 86l64 -75c43 24 45 53 45 98v301c0 76 -5 222 -112 222c-49 0 -100 -38 -100 -90 c0 -93 128 -91 128 -204c0 -56 -33 -115 -89 -131l-3 17c23 10 50 28 50 57c0 69 -135 79 -135 196c0 94 79 181 175 181c69 0 153 -36 169 -110c64 32 125 70 183 112c60 -48 120 -70 120 -159c0 -73 -71 -120 -131 -147c123 -85 29 -338 114 -338c14 0 34 19 44 28z M577 524c0 56 -49 107 -105 107c-34 0 -77 -29 -106 -46c11 -47 12 -96 12 -146v-73c70 27 199 65 199 158'], + 0x2127: [704,6,824,34,791,'791 553l-4 -3h-14l-4 3c-13 53 -13 70 -73 70h-129v-7c134 -56 208 -171 208 -316c0 -216 -157 -306 -356 -306c-201 0 -368 83 -368 306c0 144 73 260 207 316v7h-129c-60 0 -60 -18 -73 -70l-3 -3h-15l-4 3c7 50 13 101 18 151c103 -4 207 -3 310 -6v-68 c-161 -21 -206 -167 -206 -309c0 -175 73 -300 263 -300c194 0 250 133 250 303c0 141 -47 285 -206 306v68c103 2 208 2 311 6c3 -50 10 -101 17 -151'], + 0x2132: [692,3,555,22,536,'342 362v207c0 79 -5 87 -51 90l-48 3v30c59 -2 95 -3 147 -3s87 1 146 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30c-147 3 -147 3 -176 3c-25 0 -60 0 -109 -2l-107 -1c-43 0 -73 1 -122 3c11 44 16 92 16 152h35v-65c0 -23 3 -28 27 -34 c31 -8 87 -14 135 -14c59 0 77 1 107 8v267c-34 2 -68 3 -110 3c-66 0 -94 -3 -112 -11c-4 -8 -7 -17 -8 -26l-5 -52h-30c3 100 3 100 3 116c0 18 0 18 -3 111h30l5 -59l8 -25c18 -9 45 -12 119 -12c45 0 75 1 103 3'], + 0x2135: [746,13,672,32,641,'641 560c0 -29 -18 -52 -38 -72c-15 17 -32 37 -57 37c-21 0 -97 -99 -97 -120c0 -60 167 -101 167 -244c0 -73 -29 -121 -76 -174l-11 5c6 9 15 32 15 43c0 66 -85 144 -132 184l-220 187c-35 -15 -74 -63 -74 -102c0 -113 89 -138 89 -225c0 -58 -20 -85 -80 -85 c-31 0 -62 1 -93 3l-2 6c24 12 61 22 61 55c0 49 -53 89 -53 147c0 82 64 174 132 217c-49 45 -125 97 -125 171c0 61 45 111 84 153l13 -8c-7 -16 -7 -33 -7 -50c0 -47 59 -94 91 -123c28 -24 134 -134 179 -134c27 0 106 102 106 128c0 24 -42 42 -42 84s17 60 47 86 c0 -83 123 -93 123 -169'], + 0x2136: [734,0,675,31,635,'635 160l-44 -160h-560l44 160h469c29 0 35 2 35 22v11l-24 319c-3 39 -29 63 -80 63h-303c-81 0 -96 38 -96 82c0 24 4 51 4 75l13 2c0 -10 25 -32 89 -32h356c38 0 83 -5 83 -60c0 -79 -39 -56 -39 -113v-11l24 -325c2 -28 3 -33 29 -33'], + 0x2137: [734,0,331,26,306,'306 54h-12c-2 12 -12 82 -28 82c-6 0 -32 -118 -37 -136h-203l38 137h182c18 0 19 18 19 32c0 26 -26 340 -26 342c-3 38 -28 64 -70 64c-81 0 -95 41 -95 85c0 25 5 52 5 72l13 2c3 -16 33 -32 82 -32h27c40 0 87 -5 87 -59c0 -61 -27 -85 -27 -135c0 -4 1 -8 1 -12'], + 0x2138: [734,0,559,36,526,'526 642c0 -68 -44 -68 -45 -68c0 -1 33 -386 33 -475c0 -30 -39 -90 -45 -99h-10v575h-327c-81 0 -96 38 -96 82c0 24 4 51 4 75l13 2c0 -10 25 -32 89 -32h301c38 0 83 -5 83 -60'], + 0x2141: [727,9,778,53,708,'708 363c0 211 -162 364 -386 364c-99 0 -176 -15 -269 -54v-284h211v51h-148v197c70 22 127 37 190 37c195 0 336 -130 336 -314c0 -179 -141 -316 -321 -316c-84 0 -170 21 -253 60v-57c110 -44 169 -56 251 -56c222 0 389 161 389 372'], + 0x2190: [486,-55,1013,65,949,'949 241h-770l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h770v-59'], + 0x2191: [713,172,524,47,478,'478 506l-35 -32l-151 125v-771h-59v771l-152 -125l-34 32l215 207'], + 0x2192: [486,-55,1013,65,949,'949 272l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34'], + 0x2193: [713,172,524,47,478,'478 35l-215 -207l-216 207l35 32l151 -125v771h59v-771l152 125'], + 0x2194: [486,-55,1013,65,949,'949 272l-206 -217l-32 33l124 153h-656l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h656l-124 151l32 35'], + 0x2195: [712,172,524,47,478,'264 -172l-217 206l33 32l153 -124v656l-152 -124l-34 32l214 206l217 -206l-34 -32l-152 124v-656l151 124l35 -32'], + 0x2196: [713,172,1013,65,949,'949 -136l-35 -36l-785 785l-16 -201h-48v301h301v-48l-201 -17'], + 0x2197: [713,172,1013,65,949,'949 412h-47l-17 201l-784 -785l-36 36l784 784l-201 17v48h301v-301'], + 0x2198: [713,172,1013,65,949,'949 -172h-301v48l201 17l-784 784l36 36l784 -785l17 201h47v-301'], + 0x2199: [713,172,1013,65,949,'949 677l-784 -784l201 -17v-48h-301v301h48l16 -201l785 785'], + 0x219A: [486,-55,1013,65,949,'949 241h-422l-47 -175h-53l48 175h-296l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h312l44 163h52l-44 -163h406v-59'], + 0x219B: [486,-55,1013,65,949,'949 272l-206 -217l-32 34l125 152h-309l-47 -175h-53l48 175h-410v59h426l44 163h52l-44 -163h293l-125 152l32 34'], + 0x219E: [486,-55,1013,65,949,'949 241h-560l126 -152l-33 -34l-179 186h-124l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h126l177 186l33 -34l-126 -152h560v-59'], + 0x21A0: [486,-55,1013,65,949,'65 241h560l-126 -152l33 -34l179 186h124l-125 -152l32 -34l207 214l-207 217l-32 -34l125 -152h-126l-177 186l-33 -34l126 -152h-560v-59'], + 0x21A2: [486,-55,1150,65,1075,'1075 89l-33 -34l-179 186h-684l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h686l177 186l33 -34l-126 -152v-59'], + 0x21A3: [486,-55,1150,76,1085,'1085 272l-206 -217l-33 34l126 152h-687l-177 -186l-32 34l125 152v59l-125 152l32 34l179 -186h685l-126 152l33 34'], + 0x21A6: [486,-55,1013,36,978,'94 300h770l-124 152l32 34l206 -217l-206 -214l-32 34l124 152h-770v-186h-58v431h58v-186'], + 0x21A9: [494,-55,1013,65,949,'788 494c69 0 161 -58 161 -127c0 -118 -101 -126 -192 -126h-578l125 -150l-32 -36l-207 216l207 215l32 -33l-125 -153h644c43 0 66 24 66 67c0 44 -58 73 -101 73v54'], + 0x21AA: [494,-55,1013,65,949,'226 494c-69 0 -161 -58 -161 -127c0 -118 101 -126 192 -126h578l-125 -150l32 -36l207 216l-207 215l-32 -33l125 -153h-644c-43 0 -66 24 -66 67c0 44 58 73 101 73v54'], + 0x21AB: [493,-55,1013,65,949,'949 367c0 -118 -101 -126 -192 -126v-119h-59v119h-519l125 -150l-32 -36l-207 216l207 215l32 -33l-125 -153h519c-1 92 8 193 125 193c69 0 126 -57 126 -126zM889 367c0 44 -23 67 -66 67s-66 -23 -66 -67v-67h66c43 0 66 24 66 67'], + 0x21AC: [493,-55,1013,65,949,'949 272l-206 -217l-32 34l125 152h-519v-119h-59v119c-92 0 -193 8 -193 126c0 69 58 126 127 126c116 0 126 -101 125 -193h519l-125 152l32 34zM258 300v67c0 44 -23 67 -66 67c-44 0 -67 -23 -67 -67c0 -43 23 -67 67 -67h66'], + 0x21AD: [486,-55,1211,34,1178,'1178 272l-206 -217l-33 34l125 152h-104c-63 0 -128 -110 -187 -110c-58 0 -118 174 -168 198c-48 -24 -107 -198 -165 -198c-59 0 -124 110 -189 110h-104l126 -152l-33 -34l-206 214l206 217l33 -34l-126 -152h104c84 0 141 -98 182 -98c40 0 109 210 172 210 c64 0 135 -210 175 -210c41 0 98 98 180 98h104l-125 152l33 34'], + 0x21AE: [486,-55,1013,65,949,'949 272l-206 -217l-32 33l124 153h-308l-47 -175h-53l48 175h-296l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h312l44 163h52l-44 -163h292l-124 151l32 35'], + 0x21B0: [753,0,506,65,442,'442 0h-59v507h-204l125 -151l-32 -35l-207 215l207 217l32 -35l-125 -152h263v-566'], + 0x21B1: [753,0,506,65,442,'442 536l-206 -215l-33 35l125 151h-204v-507h-59v566h263l-125 152l33 35'], + 0x21B6: [458,0,1124,34,1115,'1115 0h-69c-1 215 -175 389 -390 389c-169 0 -316 -120 -371 -269l164 91l35 -37l-237 -174l-213 217l33 32l148 -121c56 191 232 330 441 330c252 0 458 -205 459 -458'], + 0x21B7: [458,0,1124,34,1115,'34 0h69c1 215 175 389 390 389c169 0 316 -120 371 -269l-164 91l-35 -37l237 -174l213 217l-33 32l-148 -121c-56 191 -232 330 -441 330c-252 0 -458 -205 -459 -458'], + 0x21BA: [751,0,987,114,875,'875 380c0 -211 -170 -380 -380 -380c-211 0 -381 169 -381 380c0 101 43 197 111 269l36 -35c-59 -63 -96 -147 -96 -234c0 -182 147 -329 330 -329c181 0 329 147 329 328c0 72 -37 192 -97 235l-35 -108l-66 245l246 -66l-108 -36c68 -72 111 -168 111 -269'], + 0x21BB: [751,0,987,114,875,'875 380c0 -211 -170 -380 -380 -380c-211 0 -381 169 -381 380c0 101 43 197 111 269l-107 36l245 66l-66 -245c-8 37 -17 74 -35 108c-66 -70 -97 -138 -97 -235c0 -181 148 -328 330 -328s329 147 329 329c0 87 -37 171 -97 234l37 35c69 -72 111 -168 111 -269'], + 0x21BC: [394,-149,1013,64,950,'298 394l32 -35l-126 -151h746v-59h-886'], + 0x21BD: [394,-148,1013,64,950,'950 394v-58h-746l126 -152l-32 -36l-234 246h886'], + 0x21BE: [714,171,524,233,478,'478 481l-35 -33l-151 127v-746h-59v885'], + 0x21BF: [714,171,524,47,293,'293 -171h-59v746l-152 -127l-35 33l246 233v-885'], + 0x21C0: [394,-149,1013,64,950,'716 394l-32 -35l126 -151h-746v-59h886'], + 0x21C1: [394,-148,1013,64,950,'64 394v-58h746l-126 -152l32 -36l234 246h-886'], + 0x21C2: [714,171,524,233,478,'478 62l-35 33l-151 -127v746h-59v-885'], + 0x21C3: [714,171,524,47,293,'293 714h-59v-746l-152 127l-35 -33l246 -233v885'], + 0x21C4: [665,124,1013,65,949,'949 451l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34zM949 62h-770l125 -151l-32 -35l-207 215l207 216l32 -34l-125 -152h770v-59'], + 0x21C6: [665,124,1013,65,949,'949 420h-770l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h770v-59zM949 93l-206 -217l-32 35l125 151h-771v59h771l-125 152l32 34'], + 0x21C7: [665,124,1013,65,949,'949 62h-770l125 -151l-32 -35l-207 215l172 180l-172 177l207 217l32 -34l-125 -152h770v-59h-770l123 -149l-123 -150h770v-59'], + 0x21C8: [714,171,883,47,837,'837 507l-35 -32l-151 125v-771h-59v771l-150 -123l-149 123v-771h-59v771l-152 -125l-35 32l215 207l180 -172l178 172'], + 0x21C9: [665,124,1013,65,949,'949 93l-206 -217l-32 35l125 151h-771v59h771l-125 147l125 152h-771v59h771l-125 152l32 34l206 -214l-171 -180'], + 0x21CA: [714,171,883,47,837,'837 36l-215 -207l-180 172l-178 -172l-217 207l35 32l152 -125v771h59v-771l147 125l152 -125v771h59v-771l151 125'], + 0x21CB: [594,52,1013,65,949,'949 348h-884l233 246l33 -35l-127 -152h745v-59zM949 194l-232 -246l-33 35l127 152h-746v59h884'], + 0x21CC: [594,52,1013,65,949,'949 348h-884v59h746l-127 152l33 35zM949 135h-745l127 -152l-33 -35l-233 246h884v-59'], + 0x21CD: [537,-6,1013,65,949,'949 135h-450l-30 -111h-52l29 111h-178l80 -98l-29 -31l-254 265l254 266l29 -32l-80 -98h251l26 98h53l-26 -98h377v-59h-393l-41 -154h434v-59zM503 348h-284l-64 -77l63 -77h244'], + 0x21CE: [537,-6,1013,59,954,'954 271l-254 -265l-29 31l80 98h-258l-30 -111h-52l29 111h-178l80 -98l-29 -31l-254 265l254 266l29 -32l-80 -98h251l26 98h53l-26 -98h185l-80 98l29 32zM865 271l-65 77h-250l-41 -154h292zM497 348h-284l-64 -77l63 -77h244'], + 0x21CF: [537,-6,1013,65,949,'949 271l-253 -265l-30 31l80 98h-247l-30 -111h-52l29 111h-381v59h397l41 154h-438v59h454l26 98h53l-26 -98h174l-80 98l30 32zM860 271l-64 77h-240l-41 -154h282'], + 0x21D0: [539,-7,1013,65,949,'949 136h-681l80 -98l-29 -31l-254 266l254 266l29 -33l-80 -98h681v-59h-730l-64 -78l63 -76h731v-59'], + 0x21D1: [713,172,578,24,555,'555 459l-32 -30l-98 80v-681h-59v731l-78 64l-76 -63v-732h-59v681l-98 -80l-31 30l264 254'], + 0x21D2: [539,-7,1013,65,949,'949 273l-253 -266l-30 31l80 98h-681v59h732l63 76l-64 78h-731v59h681l-80 98l30 33'], + 0x21D3: [713,172,578,24,555,'555 82l-264 -254l-267 254l32 30l97 -80v681h59v-731l79 -64l75 63v732h59v-681l99 80'], + 0x21D4: [537,-5,1013,59,954,'954 271l-254 -266l-29 31l80 99h-489l80 -98l-29 -32l-254 264l254 268l29 -32l-80 -99h489l-80 98l29 33zM865 271l-65 77h-587l-64 -77l63 -78h589'], + 0x21D5: [718,176,578,24,556,'290 718l266 -254l-32 -28l-98 80v-490l98 80l32 -28l-264 -254l-268 254l32 28l98 -80v490l-98 -80l-32 28zM290 630l-78 -66v-586l78 -64l78 62v590'], + 0x21DA: [607,67,1013,65,949,'949 62h-609l81 -98l-29 -31l-327 338l326 336l30 -30l-81 -98h609v-59h-658l-110 -120h768v-59h-767l110 -120h657v-59'], + 0x21DB: [608,66,1013,65,949,'949 271l-325 -337l-30 30l81 98h-610v59h659l110 120h-769v59h768l-110 120h-658v59h610l-81 98l29 31'], + 0x21DD: [485,-54,1149,34,1116,'1116 271l-207 -217l-32 34l125 152h-97c-65 0 -126 -110 -187 -110c-55 0 -120 163 -166 200c-47 -33 -116 -200 -163 -200c-55 0 -134 207 -173 207c-49 0 -94 -97 -182 -97v59c70 1 127 111 188 111c56 0 116 -166 166 -202c48 34 115 202 163 202 c54 0 136 -209 174 -209c43 0 98 98 173 98h104l-125 152l32 34'], + 0x21E0: [485,-54,1063,65,998,'518 239l-120 1v59l120 -1v-59zM998 240h-120v59h120v-59zM758 240h-120v59h120v-59zM298 240h-120l125 -152l-32 -34l-206 217l206 214l32 -34l-125 -152h120v-59'], + 0x21E2: [485,-54,1063,65,998,'545 239l120 1v59l-120 -1v-59zM65 240h120v59h-120v-59zM305 240h120v59h-120v-59zM765 240h120l-125 -152l32 -34l206 217l-206 214l-32 -34l125 -152h-120v-59'], + 0x2200: [697,15,617,26,592,'592 697l-281 -712h-17l-268 712h45l109 -296h191l109 296h112zM355 359h-159l79 -214'], + 0x2201: [906,146,753,114,640,'640 117c-16 -150 -103 -263 -263 -263c-145 0 -263 118 -263 263v526c0 146 118 263 263 263c161 0 247 -112 263 -263h-76c-11 108 -72 188 -187 188c-103 0 -186 -84 -186 -188v-526c0 -102 84 -186 186 -186c114 0 176 80 187 186h76'], + 0x2202: [750,11,494,35,460,'91 666l-43 49c54 23 88 33 127 35c152 8 275 -137 285 -337c6 -116 -20 -251 -62 -321c-39 -63 -96 -99 -165 -103c-104 -5 -191 76 -197 184c-3 62 18 126 60 174c34 41 74 61 123 64c51 3 87 -11 154 -58c2 50 4 73 2 102c-9 163 -72 254 -173 249 c-34 -2 -67 -13 -111 -38zM369 318c-38 36 -70 53 -108 50c-81 -4 -143 -102 -137 -216c4 -85 41 -136 95 -133c44 2 86 38 109 92c23 52 31 95 41 207'], + 0x2203: [697,0,617,46,572,'572 0h-526v39h388c19 0 34 16 34 53v253h-332v39h332v232c0 26 -20 42 -47 42h-364v39h515v-697'], + 0x2204: [836,141,617,46,572,'572 0h-336l-37 -141h-55l38 141h-136v39h147l83 306h-140v39h150l75 274h-304v39h315l39 139h50l-39 -139h150v-697zM468 384v232c0 19 -11 42 -47 42h-9l-73 -274h129zM468 92v253h-140l-82 -306h188c19 0 34 16 34 53'], + 0x2205: [591,13,733,65,668,'668 288c0 -166 -134 -301 -301 -301c-69 0 -133 24 -184 62l-57 -62l-34 34l55 61c-51 55 -82 127 -82 206c0 168 135 303 302 303c69 0 131 -23 181 -62l56 62l35 -34l-54 -60c52 -54 83 -128 83 -209zM621 288c0 68 -25 129 -67 174l-339 -377c42 -31 94 -50 152 -50 c140 0 254 113 254 253zM517 495c-42 30 -94 48 -150 48c-141 0 -254 -114 -254 -255c0 -65 25 -125 66 -170'], + 0x2207: [697,4,688,27,662,'662 687c-65 -122 -267 -584 -310 -691h-25c-39 117 -92 231 -141 343c-50 116 -98 238 -159 348l6 10c101 -3 202 -4 303 -4c107 0 213 0 319 4zM584 656h-432c65 -178 137 -354 212 -527h7c76 175 147 349 213 527'], + 0x2208: [533,-8,563,55,509,'509 8h-195c-147 0 -259 123 -259 263s112 262 259 262h195v-53h-200c-105 0 -188 -83 -200 -183h383v-53h-383c13 -105 106 -183 200 -183h200v-53'], + 0x2209: [648,107,563,55,509,'509 8h-195c-26 0 -50 4 -72 11l-50 -126h-57l58 146c-84 44 -138 134 -138 232c0 140 112 262 259 262h75l47 115h57l-47 -115h63v-53h-84l-72 -183h139v-53h-160l-71 -177c16 -4 33 -6 48 -6h200v-53zM368 480h-59c-105 0 -188 -83 -200 -183h187zM275 244h-166 c9 -67 50 -124 104 -156'], + 0x220B: [533,-8,563,55,509,'509 271c0 -140 -112 -263 -258 -263h-196v53h200c94 0 187 78 200 183h-382v53h382c-12 100 -95 183 -200 183h-200v53h196c146 0 258 -122 258 -262'], + 0x220D: [482,3,511,65,446,'228 482c174 0 218 -109 218 -213c0 -124 -63 -272 -309 -272c-10 0 -34 2 -72 7l9 37c13 -2 33 -3 58 -3c127 0 199 67 215 178l-243 9l8 47l239 7c0 108 -51 162 -152 162c-31 0 -68 -4 -115 -13l4 39c36 10 83 15 140 15'], + 0x2212: [299,-243,605,51,555,'555 243h-504v56h504v-56'], + 0x2213: [541,0,668,65,604,'604 486h-539v55h539v-55zM604 192h-240v-192h-59v192h-240v59h240v203h59v-203h240v-59'], + 0x2214: [629,89,668,65,604,'392 571c0 -30 -27 -58 -59 -58c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58zM604 152h-240v-241h-59v241h-240v59h240v238h59v-238h240v-59'], + 0x2215: [726,119,605,87,519,'519 726l-372 -845h-60l372 845h60'], + 0x2216: [501,-50,799,101,699,'101 459l559 -409l39 42l-559 409'], + 0x2217: [446,-99,388,31,358,'358 245l-9 -8l-138 20l68 -122v-10l-68 -26l-10 4l-18 142l-106 -88h-10l-36 51l5 9l131 54l-131 64l-3 10l44 52h10l95 -98l26 143l9 4l62 -19l3 -15l-69 -125l139 24l6 -4v-62'], + 0x2218: [417,-124,388,47,342,'342 271c0 -83 -65 -147 -147 -147c-83 0 -148 64 -148 147c0 81 65 146 148 146c82 0 147 -65 147 -146zM304 271c0 60 -50 109 -109 109c-62 0 -110 -49 -110 -109c0 -62 48 -110 110 -110c59 0 109 48 109 110'], + 0x2219: [319,-203,249,67,183,'124 319c31 0 59 -28 59 -59c0 -30 -28 -57 -60 -57c-29 0 -56 28 -56 58s27 58 57 58'], + 0x221A: [1079,59,760,63,793,'793 1079l-328 -1138l-277 580l-112 -42l-13 22l202 108l207 -439l260 909h61'], + 0x221D: [466,-75,668,65,604,'604 75c-75 0 -138 39 -171 99c-34 -60 -97 -99 -171 -99c-110 0 -197 86 -197 196c0 108 87 195 197 195c74 0 137 -40 171 -99c33 59 96 99 171 99v-50c-82 0 -146 -65 -146 -145c0 -82 64 -146 146 -146v-50zM407 271c0 80 -66 145 -145 145c-82 0 -146 -65 -146 -145 c0 -82 64 -146 146 -146c79 0 145 64 145 146'], + 0x221E: [463,-65,897,55,843,'843 284c0 -105 -72 -219 -188 -219c-94 0 -170 78 -219 151c-47 -64 -140 -150 -223 -150c-104 0 -158 82 -158 178c0 108 74 219 190 219c89 0 174 -76 218 -148c53 63 137 146 224 146c105 0 156 -81 156 -177zM783 236c0 71 -43 173 -127 173 c-59 0 -143 -77 -175 -125c41 -58 113 -176 192 -176c75 0 110 58 110 128zM418 245c-31 59 -118 179 -189 179c-76 0 -112 -58 -112 -128c0 -72 42 -174 126 -174c58 0 144 76 175 123'], + 0x2220: [577,0,535,65,471,'471 0h-406l353 577h53l-327 -534h327v-43'], + 0x2221: [577,0,535,65,471,'471 0h-406l353 577h53l-219 -359c57 -38 93 -104 95 -175h124v-43zM301 43c-1 54 -28 106 -74 137l-83 -137h157'], + 0x2222: [515,-26,535,65,471,'471 26l-406 245l406 244v-54l-133 -79c21 -33 34 -71 34 -113c0 -40 -12 -77 -33 -110l132 -78v-55zM336 269c0 35 -11 68 -29 94l-153 -92l155 -94c17 27 27 59 27 92'], + 0x2223: [714,171,437,189,248,'248 -171h-59v885h59v-885'], + 0x2224: [714,171,437,0,438,'438 558l-190 -191v-538h-59v479l-106 -106h-83l189 191v321h59v-262l107 106h83'], + 0x2225: [714,171,641,186,456,'245 -171h-59v885h59v-885zM397 714h59v-885h-59v885'], + 0x2226: [714,171,641,0,642,'642 558l-186 -186v-543h-59v484l-152 -151v-333h-59v274l-118 -118h-68l186 187v542h59v-483l152 152v331h59v-272l116 116h70'], + 0x2227: [585,0,687,65,623,'623 0h-60l-218 480l-220 -480h-60l271 585h18'], + 0x2228: [585,0,687,65,623,'623 585l-269 -585h-18l-271 585h60l220 -480l218 480h60'], + 0x2229: [603,0,687,65,623,'623 0h-54v329c0 112 -97 220 -225 220c-121 0 -225 -94 -225 -220v-329h-54v325c0 157 131 278 280 278c150 0 278 -121 278 -278v-325'], + 0x222A: [603,0,687,65,623,'623 278c0 -157 -128 -278 -278 -278c-149 0 -280 121 -280 278v325h54v-329c0 -126 104 -220 225 -220c128 0 225 108 225 220v329h54v-325'], + 0x222B: [885,442,768,54,694,'694 802c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-12 -164 -20 -329 -38 -492c-15 -131 -47 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19 c8 -10 22 -13 33 -13c128 0 117 219 120 302c5 180 19 359 30 538c10 149 34 455 239 455c48 0 121 -25 121 -83'], + 0x2234: [524,6,661,65,597,'387 468c0 -31 -25 -55 -55 -55c-32 0 -56 24 -56 55s24 56 56 56c30 0 55 -25 55 -56zM597 49c0 -31 -25 -55 -56 -55c-32 0 -56 24 -56 55s24 56 56 56c31 0 56 -25 56 -56zM177 49c0 -31 -25 -55 -56 -55c-32 0 -56 24 -56 55s24 56 56 56c31 0 56 -25 56 -56'], + 0x2235: [524,6,661,65,597,'597 468c0 -31 -25 -55 -56 -55c-32 0 -56 24 -56 55s24 56 56 56c31 0 56 -25 56 -56zM177 468c0 -31 -25 -55 -56 -55c-32 0 -56 24 -56 55s24 56 56 56c31 0 56 -25 56 -56zM386 49c0 -31 -25 -55 -55 -55c-32 0 -56 24 -56 55s24 56 56 56c30 0 55 -25 55 -56'], + 0x223C: [355,-186,668,58,610,'610 344c-14 -93 -60 -158 -162 -158s-162 114 -244 114c-62 0 -100 -39 -124 -93l-22 9c24 84 74 139 166 139c94 0 164 -115 246 -115c70 0 102 53 120 114'], + 0x223D: [355,-186,668,58,610,'58 344c14 -93 60 -158 162 -158s162 114 244 114c62 0 100 -39 124 -93l22 9c-24 84 -74 139 -166 139c-94 0 -164 -115 -246 -115c-70 0 -102 53 -120 114'], + 0x2240: [593,4,277,57,221,'221 414c0 -102 -113 -179 -113 -267c0 -71 49 -109 112 -129l-9 -22c-99 17 -154 73 -154 176c0 111 110 177 110 265c0 63 -34 106 -89 134l8 22c88 -28 135 -87 135 -179'], + 0x2241: [491,-51,668,56,614,'614 341c-18 -104 -75 -155 -170 -155c-38 0 -71 15 -102 32l-66 -167h-57l78 196c-25 18 -58 37 -86 37c-48 0 -84 -22 -113 -83l-42 16c29 94 86 138 173 138c36 0 68 -14 98 -32l67 168h57l-78 -196c27 -18 61 -39 91 -39c49 0 84 27 108 102'], + 0x2242: [434,-106,668,65,604,'604 374h-537v60h537v-60zM604 245v1c-23 -85 -70 -140 -162 -140c-91 0 -162 115 -240 115c-68 0 -99 -54 -116 -114l-21 9c15 93 57 159 158 159c99 0 161 -115 239 -115c62 0 98 40 121 94'], + 0x2243: [400,-107,668,65,604,'604 389c-15 -92 -57 -158 -158 -158c-99 0 -161 114 -239 114c-62 0 -98 -39 -121 -93l-21 9c23 83 71 139 162 139c92 0 162 -115 240 -115c69 0 99 54 116 114zM604 107h-539v59h539v-59'], + 0x2245: [587,-134,668,65,604,'604 576c-15 -92 -57 -158 -158 -158c-99 0 -161 114 -239 114c-62 0 -98 -39 -121 -93l-21 9c23 83 71 139 162 139c92 0 162 -115 240 -115c69 0 99 54 116 114zM604 294h-539v59h539v-59zM604 134h-539v59h539v-59'], + 0x2246: [605,-18,668,65,604,'604 594c-15 -92 -57 -158 -158 -158c-99 0 -161 114 -239 114c-62 0 -98 -39 -121 -93l-21 9c23 83 71 139 162 139c92 0 162 -115 240 -115c69 0 99 54 116 114zM604 135h-296l-57 -116l-57 -1l58 116h-187v59h216l52 101h-268v59h296l29 56h58l-30 -55h186v-59h-215 l-53 -101h268v-59'], + 0x2248: [465,-79,668,56,614,'614 448c-17 -96 -69 -155 -170 -155c-99 0 -164 99 -233 99c-57 0 -90 -35 -113 -85l-42 16c27 88 80 139 173 139c94 0 167 -100 235 -100c62 0 91 50 108 103zM614 234v1c-17 -97 -69 -156 -170 -156c-99 0 -164 99 -233 99c-57 0 -90 -35 -113 -84l-42 15 c27 88 80 139 173 139c94 0 167 -100 235 -100c62 0 91 50 108 104'], + 0x224A: [534,-62,668,65,604,'604 523c-15 -91 -57 -158 -158 -158c-99 0 -159 114 -239 114c-61 0 -98 -40 -121 -93l-21 9c23 83 71 139 162 139c93 0 160 -115 240 -115c69 0 100 55 116 114zM604 344c-15 -92 -57 -158 -158 -158c-99 0 -161 114 -239 114c-62 0 -98 -39 -121 -93l-21 9 c23 83 71 139 162 139c92 0 162 -115 240 -115c69 0 99 54 116 114zM604 62h-539v59h539v-59'], + 0x224D: [478,-63,668,54,616,'616 468c-23 -30 -90 -160 -281 -160c-193 0 -258 129 -281 159l13 11c81 -92 187 -109 267 -109s186 16 267 109zM616 73l-15 -10c-81 91 -187 108 -267 108s-186 -16 -267 -108l-13 10c23 29 88 159 281 159c191 0 258 -129 281 -159'], + 0x224E: [479,-62,668,65,604,'604 347h-190c0 40 -33 73 -74 73c-40 0 -73 -32 -73 -73h-202v59h157c22 43 67 73 118 73c52 0 97 -30 119 -73h145v-59zM604 134h-145c-22 -43 -67 -72 -119 -72c-51 0 -96 29 -118 72h-157v59h202c0 -40 33 -72 73 -72c41 0 74 31 74 72h190v-59'], + 0x224F: [479,-134,668,65,604,'604 347h-189c0 40 -33 73 -74 73c-40 0 -73 -32 -73 -73h-203v59h158c22 43 68 73 118 73c52 0 97 -30 119 -73h144v-59zM604 134h-538v59h538v-59'], + 0x2250: [503,-38,668,65,604,'391 447c0 -31 -26 -56 -56 -56c-32 0 -56 25 -56 56s24 56 56 56c30 0 56 -25 56 -56zM604 251h-539v59h539v-59zM604 38h-539v59h539v-59'], + 0x2251: [599,58,668,65,604,'391 543c0 -31 -26 -56 -56 -56c-32 0 -56 25 -56 56s24 56 56 56c30 0 56 -25 56 -56zM604 347h-539v59h539v-59zM604 134h-539v59h539v-59zM391 -2c0 -32 -26 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56c30 0 56 -26 56 -56'], + 0x2252: [599,58,668,65,604,'604 347h-539v59h539v-59zM177 543c0 -31 -25 -56 -56 -56c-32 0 -56 25 -56 56s24 56 56 56c31 0 56 -25 56 -56zM604 -2c0 -32 -25 -56 -56 -56s-55 24 -55 56c0 30 24 56 55 56s56 -26 56 -56zM604 134h-539v59h539v-59'], + 0x2253: [599,58,668,65,604,'604 543c0 -31 -25 -56 -56 -56s-55 25 -55 56s24 56 55 56s56 -25 56 -56zM604 347h-539v59h539v-59zM604 134h-539v59h539v-59zM177 -2c0 -32 -25 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56c31 0 56 -26 56 -56'], + 0x2256: [404,-131,668,65,604,'604 131h-539v59h198c-20 19 -32 46 -32 76c0 31 12 59 33 78h-199v60h539v-60h-199c21 -19 35 -46 35 -76c0 -31 -15 -59 -35 -78h199v-59zM404 266c0 38 -30 71 -69 71c-48 0 -69 -43 -69 -68c0 -27 20 -71 68 -71c40 0 70 30 70 68'], + 0x2257: [649,-134,668,65,604,'440 544c0 -58 -47 -104 -105 -104c-60 0 -104 47 -104 104s45 105 104 105c58 0 105 -47 105 -105zM604 294h-539v55h539v-55zM604 134h-539v59h539v-59zM391 544c0 31 -25 56 -56 56c-38 0 -55 -35 -55 -55c0 -21 16 -56 54 -56c32 0 57 25 57 55'], + 0x225C: [640,-134,687,65,623,'352 640c18 -44 97 -204 124 -245c-43 1 -85 1 -128 1c-46 0 -93 3 -138 2c31 48 114 200 131 242h11zM426 420c-27 62 -53 110 -85 170c-32 -61 -57 -108 -85 -170h170zM623 189h-558v-55h558v55zM623 349h-558v-55h558v55'], + 0x2260: [596,55,668,65,604,'604 135h-296l-74 -190h-57l75 189h-187v59h211l61 154h-272v59h296l75 190h57l-75 -189h186v-59h-210l-61 -154h271v-59'], + 0x2261: [479,-62,668,65,604,'604 420h-539v59h539v-59zM604 241h-539v59h539v-59zM604 62h-539v59h539v-59'], + 0x2264: [604,61,669,65,604,'604 76l-539 252v21l539 255v-59l-438 -205l438 -205v-59zM604 -61h-539v56h539v-56'], + 0x2265: [604,61,669,65,604,'604 329l-539 -254v59l438 205l-438 205v60l539 -253v-22zM604 -61h-539v56h539v-56'], + 0x2266: [672,131,668,65,604,'604 143l-539 253v21l539 255v-59l-438 -206l438 -205v-59zM604 29h-539v56h539v-56zM604 -131h-539v56h539v-56'], + 0x2267: [672,131,668,65,604,'604 397l-539 -255v59l438 205l-438 206v60l539 -254v-21zM604 29h-539v56h539v-56zM604 -131h-539v56h539v-56'], + 0x2268: [672,183,668,65,604,'604 143l-539 253v21l539 255v-59l-438 -206l438 -205v-59zM604 -131l-338 2l-50 -54h-72l51 52h-130v55h182l102 105h-284v55h337l51 54h71l-50 -53h130v-54h-183l-102 -106h285v-56'], + 0x2269: [672,183,668,65,604,'604 397l-539 -255v59l438 205l-438 206v60l539 -254v-21zM604 -131l-338 2l-50 -54h-72l51 52h-130v55h182l102 105h-284v55h337l51 54h71l-50 -53h130v-54h-183l-102 -106h285v-56'], + 0x226A: [535,-5,965,55,912,'912 5l-545 255v21l545 254v-59l-443 -205l443 -207v-59zM599 5l-544 255v21l544 254v-59l-442 -205l442 -207v-59'], + 0x226B: [535,-5,965,55,912,'912 260l-545 -255v59l442 207l-442 205v59l545 -254v-21zM599 260l-544 -255v59l442 207l-442 205v59l544 -254v-21'], + 0x226C: [705,179,430,65,366,'366 280c0 -142 -30 -258 -126 -359c26 -34 57 -60 89 -81l-12 -19c-39 24 -73 51 -101 77c-29 -26 -62 -53 -101 -77l-13 19c33 21 63 47 90 81c-96 101 -127 217 -127 359c0 158 60 259 123 324c-23 31 -51 58 -84 83l12 18c17 -12 57 -36 100 -73c43 37 83 61 100 73 l11 -18c-32 -25 -61 -52 -84 -83c63 -65 123 -166 123 -324zM289 279c0 104 -22 203 -73 286c-52 -83 -74 -182 -74 -286c0 -151 29 -252 74 -324c45 72 73 173 73 324'], + 0x226E: [648,107,668,65,604,'604 6l-291 137l-100 -250h-57l108 273l-199 94v21l302 142l90 225h57l-77 -192l167 79v-59l-196 -92l-75 -191l271 -128v-59zM339 352l-173 -81l118 -56'], + 0x226F: [648,107,668,65,604,'604 260l-302 -142l-89 -225h-57l77 192l-168 -79v59l196 92l76 191l-272 128v59l292 -137l100 250h57l-109 -273l199 -94v-21zM503 271l-118 55l-54 -137'], + 0x2270: [712,171,668,65,604,'604 -61l-372 1l-45 -111h-56l44 110h-110v55h131l91 230l-222 104v21l336 159l81 204h57l-68 -171l133 63v-59l-162 -77l-86 -217l248 -116v-60l-268 127l-83 -207h351v-56zM373 436l-207 -96l141 -66'], + 0x2271: [712,171,668,65,604,'604 -61l-372 1l-45 -111h-56l44 110h-110v55h131l70 175l-201 -94v59l230 108l65 164l-295 138v60l315 -148l102 256h57l-111 -279l176 -82v-22l-268 -126l-83 -208h351v-56zM503 340l-95 44l-43 -109'], + 0x2272: [604,118,668,65,604,'604 76l-539 252v21l539 255v-59l-438 -205l438 -205v-59zM604 40c0 0 -11 -158 -159 -158c-114 0 -144 115 -238 115c-87 0 -121 -92 -121 -94l-21 10s28 139 162 139c105 0 148 -116 239 -116c94 0 118 112 118 115'], + 0x2273: [604,118,668,65,604,'65 76l539 252v21l-539 255v-59l438 -205l-438 -205v-59zM604 40c0 0 -11 -158 -159 -158c-114 0 -144 115 -238 115c-87 0 -121 -92 -121 -94l-21 10s28 139 162 139c105 0 148 -116 239 -116c94 0 118 112 118 115'], + 0x2276: [626,85,668,65,604,'604 216l-539 196v21l539 193v-52l-420 -152l420 -153v-53zM604 111l-539 -196v53l420 153l-420 152v52l539 -193v-21'], + 0x2277: [626,85,668,65,604,'604 412l-539 -196v53l420 153l-420 152v52l539 -193v-21zM604 -85l-539 196v21l539 193v-52l-420 -152l420 -153v-53'], + 0x227A: [553,14,668,65,604,'604 -14c0 0 -102 200 -539 270v26c437 70 539 269 539 271v-81s-103 -143 -378 -201c275 -59 378 -204 378 -204v-81'], + 0x227B: [553,14,668,65,604,'604 257c-437 -70 -539 -269 -539 -271v81s103 144 378 202c-275 59 -378 203 -378 203v81s102 -200 539 -270v-26'], + 0x227C: [632,91,668,65,604,'604 66c0 0 -102 200 -539 270v26c437 70 539 269 539 270v-80c0 -1 -103 -144 -378 -201v-2c275 -58 378 -202 378 -203v-80zM604 -91c0 0 -113 227 -539 291v53c447 -78 539 -261 539 -262v-82'], + 0x227D: [632,91,668,65,604,'604 336c-437 -70 -539 -270 -539 -270v80c0 1 103 145 378 203v2c-275 57 -378 200 -378 201v80c0 -1 102 -200 539 -270v-26zM604 200c-425 -63 -539 -289 -539 -291v82c0 1 93 183 539 262v-53'], + 0x227E: [621,118,668,65,604,'604 56c0 0 -102 200 -539 269v27c437 69 539 268 539 269v-80c0 -1 -103 -143 -378 -201v-1c275 -59 378 -202 378 -203v-80zM604 40c0 0 -11 -158 -159 -158c-114 0 -144 115 -238 115c-87 0 -121 -92 -121 -94l-21 10s28 139 162 139c105 0 148 -116 239 -116 c94 0 118 112 118 115'], + 0x227F: [621,118,668,65,604,'65 56c0 0 102 200 539 269v27c-437 69 -539 268 -539 269v-80c0 -1 103 -143 378 -201v-1c-275 -59 -378 -202 -378 -203v-80zM604 40c0 0 -11 -158 -159 -158c-114 0 -144 115 -238 115c-87 0 -121 -92 -121 -94l-21 10s28 139 162 139c105 0 148 -116 239 -116 c94 0 118 112 118 115'], + 0x2280: [648,107,668,65,604,'604 67v-80s-58 114 -275 199l-116 -293h-57l124 312c-60 20 -132 38 -215 51v26c113 19 203 45 276 75l116 291h57l-103 -259c150 78 193 164 193 164v-81s-63 -88 -222 -154l-34 -83c185 -68 256 -168 256 -168zM316 294c-28 -9 -58 -17 -90 -25c26 -6 50 -11 73 -18'], + 0x2281: [648,107,668,65,604,'604 257c-113 -19 -204 -45 -277 -75l-114 -289h-57l102 256c-150 -77 -193 -162 -193 -163v81s63 88 221 154l34 84c-183 68 -255 167 -255 167v81s58 -114 274 -200l118 295h57l-126 -313c61 -21 133 -39 216 -52v-26zM443 269c-25 7 -50 13 -72 19l-18 -43 c28 9 58 17 90 24'], + 0x2282: [533,-8,668,55,615,'615 8h-301c-147 0 -259 123 -259 263s112 262 259 262h301v-53h-306c-114 0 -202 -98 -202 -209c0 -118 100 -210 202 -210h306v-53'], + 0x2283: [533,-8,668,55,615,'615 271c0 -140 -113 -263 -259 -263h-301v53h305c102 0 202 92 202 210c0 111 -87 209 -202 209h-305v53h301c146 0 259 -122 259 -262'], + 0x2286: [602,61,668,55,615,'615 78l-301 -1c-147 0 -259 122 -259 262s112 263 259 263h301v-53h-306c-114 0 -202 -97 -202 -209c0 -118 100 -209 202 -209h306v-53zM615 -61h-534v56h534v-56'], + 0x2287: [602,61,668,55,615,'615 340c0 -140 -113 -263 -259 -263h-301v52h305c102 0 202 92 202 210c0 112 -87 209 -202 209h-305v54h301c146 0 259 -122 259 -262zM588 -61h-533v56h533v-56'], + 0x2288: [712,171,668,55,615,'615 -61l-383 1l-45 -111h-56l44 110h-94v55h115l39 95c-107 35 -180 137 -180 250c0 141 112 262 259 262h124l44 111h57l-44 -110h120v-53h-141l-167 -418h308v-53h-301c-10 0 -18 0 -28 1l-33 -84h362v-56zM417 549h-108c-114 0 -202 -97 -202 -209 c0 -97 67 -176 147 -201'], + 0x2289: [712,171,668,55,615,'615 340c0 -141 -113 -262 -259 -262h-70l-33 -83h335v-55h-356l-45 -111h-56l44 110h-120v55h141l33 83h-174v52h196l164 412c-18 5 -36 7 -55 7h-305v54h301c27 0 53 -5 78 -13l48 123h57l-57 -144c80 -45 133 -133 133 -228zM562 339c0 75 -39 144 -100 181l-155 -391 h53c102 0 202 91 202 210'], + 0x228A: [602,114,668,55,615,'615 78l-301 -1c-147 0 -259 122 -259 262s112 263 259 263h301v-53h-306c-114 0 -202 -97 -202 -209c0 -118 100 -209 202 -209h306v-53zM615 -61l-271 1l-48 -54h-72l50 53h-193v55h244l49 53h71l-49 -52h219v-56'], + 0x228B: [602,114,668,55,615,'615 340c0 -140 -113 -263 -259 -263h-301v52h305c102 0 202 92 202 210c0 112 -87 209 -202 209h-305v54h301c146 0 259 -122 259 -262zM588 -61l-244 1l-48 -54h-72l50 53h-219v55h270l49 53h71l-49 -52h192v-56'], + 0x228E: [603,0,687,65,623,'505 323h-133v-124h-54v124h-135v54h134v137h54v-137h134v-54zM623 278c0 -157 -128 -278 -278 -278c-149 0 -280 121 -280 278v325h54v-329c0 -126 104 -220 225 -220c128 0 225 108 225 220v329h54v-325'], + 0x228F: [533,-8,668,55,615,'615 8h-560v525h560v-53h-508v-417h508v-55'], + 0x2290: [533,-8,668,55,615,'615 8h-560v55h507v417h-507v53h560v-525'], + 0x2291: [602,61,668,55,615,'615 80l-560 -1v523h560v-53h-508v-414h508v-55zM615 -61h-559v56h559v-56'], + 0x2292: [602,61,668,55,615,'615 80l-560 -1v55h507v414h-507v54h560v-522zM614 -61h-559v56h559v-56'], + 0x2293: [576,0,687,65,623,'623 0h-54v522h-450v-522h-54v576h558v-576'], + 0x2294: [576,0,687,65,623,'623 0h-558v576h54v-522h450v522h54v-576'], + 0x2295: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM603 295c-11 130 -116 232 -245 244v-244h245zM312 539c-131 -12 -234 -115 -246 -244h245zM603 246l-245 1v-245c129 12 234 115 245 244zM312 2v245 h-246c12 -130 115 -233 246 -245'], + 0x2296: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM603 295c-12 138 -129 245 -268 245c-140 0 -257 -108 -269 -245h537zM603 246l-537 1c12 -138 129 -246 269 -246c139 0 256 108 268 245'], + 0x2297: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM507 477c-47 39 -107 63 -172 63c-66 0 -127 -24 -173 -63l173 -173zM604 271c0 65 -24 126 -63 172l-173 -172l173 -173c39 46 63 107 63 173zM301 271 l-173 172c-39 -46 -63 -107 -63 -172c0 -66 24 -127 63 -173zM507 64l-172 173l-173 -173c46 -39 107 -63 173 -63c65 0 125 24 172 63'], + 0x2298: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM507 477c-47 39 -107 63 -172 63c-149 0 -270 -121 -270 -269c0 -66 24 -127 63 -173zM604 271c0 65 -24 126 -63 172l-379 -379c46 -39 107 -63 173 -63 c147 0 269 121 269 270'], + 0x2299: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 121 269 270zM393 271c0 -30 -27 -58 -59 -58 c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58'], + 0x229A: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 147 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 122 269 270zM336 125c-79 0 -148 67 -148 146 c0 78 69 145 147 145c77 0 146 -68 146 -145c0 -78 -68 -146 -145 -146zM434 271c0 54 -44 98 -99 98s-100 -42 -100 -98c0 -57 45 -99 100 -99s99 43 99 99'], + 0x229B: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 121 269 270zM498 245l-9 -8l-138 20l68 -122v-10 l-68 -26l-10 4l-18 142l-106 -88h-10l-36 51l5 9l131 54l-131 64l-3 10l44 52h10l95 -98l26 143l9 4l62 -19l3 -15l-69 -125l139 24l6 -4v-62'], + 0x229D: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 121 269 270zM541 246h-413v49h413v-49'], + 0x229E: [541,0,668,64,605,'605 0h-541v541h541v-541zM546 300v182h-182v-182h182zM305 300v182h-182v-182h182zM546 59v182h-182v-182h182zM305 59v182h-182v-182h182'], + 0x229F: [541,0,668,64,605,'605 0h-541v541h541v-541zM546 300v182h-423v-182h423zM546 59v182h-423v-182h423'], + 0x22A0: [541,0,668,64,605,'605 0h-541v541h541v-541zM504 482h-339l170 -169zM546 101v339l-169 -169zM293 271l-170 169v-339zM504 59l-169 169l-170 -169h339'], + 0x22A1: [541,0,668,64,605,'605 0h-541v541h541v-541zM546 59v423h-423v-423h423zM392 271c0 -30 -27 -58 -59 -58c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58'], + 0x22A2: [599,20,748,85,664,'144 599v-280h520v-59h-520v-280h-59v619h59'], + 0x22A3: [599,20,748,85,664,'605 599v-280h-520v-59h520v-280h59v619h-59'], + 0x22A4: [579,0,748,65,684,'684 520h-280v-520h-59v520h-280v59h619v-59'], + 0x22A5: [579,0,748,65,684,'684 0h-619v59h280v520h59v-520h280v-59'], + 0x22A8: [541,0,490,65,425,'425 135h-301v-135h-59v541h59v-134h301v-59h-301v-154h301v-59'], + 0x22A9: [541,0,618,65,554,'554 241h-301v-241h-59v541h59v-241h301v-59zM124 0h-59v541h59v-541'], + 0x22AA: [541,0,746,65,682,'682 241h-301v-241h-59v541h59v-241h301v-59zM253 0h-59v541h59v-541zM124 0h-59v541h59v-541'], + 0x22AC: [541,0,490,-47,425,'425 241h-223l-78 -103v-138h-59v59l-44 -59h-68l112 151v390h59v-241h53l178 239h70l-179 -239h179v-59zM124 229l9 12h-9v-12'], + 0x22AD: [592,50,490,204,776,'530 348h-154v-154zM376 123v-123h-59l1 65l-114 -115v70l113 115v406h59v-134h214l186 185v-68l-118 -118l19 1v-59h-77l-152 -153l229 -1v-59l-287 1'], + 0x22AE: [541,0,618,-47,554,'554 241h-289l-12 -13v-228h-59v167l-70 -71v-96h-59v35l-33 -35h-79l112 117v424h59v-363l70 71v292h59v-230l220 228h81l-232 -239h232v-59'], + 0x22AF: [541,0,748,-47,684,'684 135h-431v-135h-59v167l-70 -71v-96h-59v35l-33 -35h-79l112 117v424h59v-363l70 71v292h59v-134h92l128 132h81l-128 -132h258v-59h-315l-116 -120v-34h431v-59zM288 348h-35v-37'], + 0x22B2: [535,-6,669,65,604,'604 6l-539 254v21l539 254v-529zM552 89v363l-386 -181'], + 0x22B3: [535,-6,669,65,604,'604 260l-539 -254v529l539 -254v-21zM503 271l-385 181v-363'], + 0x22B4: [604,61,669,65,604,'604 76l-539 252v21l539 255v-528zM604 -61h-539v56h539v-56zM552 159v361l-386 -180'], + 0x22B5: [604,61,669,65,604,'604 329l-539 -254v529l539 -253v-22zM604 -61h-539v56h539v-56zM503 340l-385 180v-361'], + 0x22B8: [446,-94,1016,65,952,'952 269c0 -97 -79 -175 -177 -175c-89 0 -161 63 -175 147h-535v59h536c14 83 85 146 174 146c98 0 177 -79 177 -177zM899 269c0 69 -56 125 -124 125c-70 0 -124 -56 -124 -125c0 -68 54 -123 124 -123c68 0 124 55 124 123'], + 0x22BA: [579,0,748,125,625,'625 520h-221v-520h-59v520h-220v59h500v-59'], + 0x22BB: [639,99,687,65,623,'623 639l-270 -584h-18l-270 584h60l218 -479l220 479h60zM623 -99h-558v55h558v-55'], + 0x22BC: [639,99,687,65,623,'623 584h-558v55h558v-55zM623 -99h-60l-218 479l-220 -479h-60l271 584h18'], + 0x22C4: [453,-89,273,22,253,'253 271l-116 -182l-115 182l115 182zM218 271l-81 126l-80 -126l80 -127'], + 0x22C5: [329,-213,249,67,183,'124 329c31 0 59 -28 59 -59c0 -30 -28 -57 -60 -57c-29 0 -56 28 -56 58s27 58 57 58'], + 0x22C6: [577,37,708,32,678,'678 344l-201 -147l78 -234l-199 147l-200 -147l76 231l-200 149h247l75 234l76 -233h248'], + 0x22C8: [515,-23,758,65,694,'694 23l-316 210l-313 -210v492l313 -208l316 208v-492zM629 141v260l-193 -130zM322 271l-194 130v-260'], + 0x22C9: [515,-23,758,65,694,'694 23l-316 210l-313 -210v492l313 -208l316 208v-71l-258 -173l258 -173v-75zM322 271l-194 130v-260'], + 0x22CA: [518,-26,758,65,694,'694 26l-313 208l-316 -208v71l258 174l-258 172v75l316 -210l313 210v-492zM631 140v260l-194 -129'], + 0x22CB: [714,36,858,55,804,'804 0l-36 -36l-339 339l-338 -339l-36 36l339 339l-339 339l36 36'], + 0x22CC: [714,36,858,55,804,'804 0l-36 -36l-339 339l-338 -339l-36 36l713 714l36 -36l-339 -339'], + 0x22CD: [434,-106,668,58,611,'611 295l-21 -9c-25 54 -63 93 -125 93c-82 0 -143 -114 -245 -114c-101 0 -147 65 -162 158l21 10c17 -61 51 -115 120 -115c82 0 152 116 246 116c92 0 141 -56 166 -139zM604 106h-537v59h537v-59'], + 0x22CE: [541,-2,668,52,617,'617 541c-158 -80 -246 -384 -271 -539h-26c-24 153 -112 460 -268 539h80c105 -76 176 -259 202 -378c25 119 97 302 202 378h81'], + 0x22CF: [541,-2,668,52,617,'617 2h-81c-105 76 -177 259 -202 378c-26 -119 -97 -302 -202 -378h-80c156 79 244 386 268 539h26c25 -155 113 -459 271 -539'], + 0x22D0: [533,-8,668,55,615,'615 139h-287c-74 0 -132 61 -132 132c0 69 58 131 132 131h287v-53h-288c-44 0 -78 -35 -78 -78c0 -45 38 -79 78 -79h288v-53zM615 8h-301c-147 0 -259 123 -259 263s112 262 259 262h301v-53h-306c-114 0 -202 -98 -202 -209c0 -118 100 -210 202 -210h306v-53'], + 0x22D1: [533,-8,668,55,615,'615 271c0 -140 -113 -263 -259 -263h-301v53h305c102 0 202 92 202 210c0 111 -87 209 -202 209h-305v53h301c146 0 259 -122 259 -262zM474 271c0 -70 -58 -132 -133 -132h-286v53h287c44 0 78 35 78 79s-38 76 -78 76h-287v55h286c75 0 133 -61 133 -131'], + 0x22D2: [603,0,687,65,623,'623 0h-54v329c0 126 -104 220 -225 220c-127 0 -225 -108 -225 -220v-329h-54v325c0 157 129 278 278 278c150 0 280 -121 280 -278v-325zM500 0h-53v316c0 58 -47 101 -103 101c-58 0 -103 -50 -103 -101v-316h-53v314c0 88 72 157 155 157c84 0 157 -69 157 -157v-314 '], + 0x22D3: [603,0,687,65,623,'500 289c0 -88 -72 -156 -155 -156c-84 0 -157 68 -157 156v314h53v-316c0 -58 47 -101 103 -101c58 0 103 51 103 101v316h53v-314zM623 278c0 -157 -128 -278 -278 -278c-149 0 -280 121 -280 278v325h54v-329c0 -126 104 -220 225 -220c128 0 225 108 225 220v329h54 v-325'], + 0x22D4: [771,0,687,65,623,'623 0h-54v329c0 104 -83 204 -195 218v-547h-59v547c-109 -13 -196 -103 -196 -218v-329h-54v325c0 147 113 261 249 276v170h59v-169c138 -15 250 -129 250 -277v-325'], + 0x22D6: [535,-5,668,65,604,'531 271c0 -32 -26 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 55 56 55c30 0 56 -25 56 -55zM604 5l-539 255v21l539 254v-59l-438 -205l438 -207v-59'], + 0x22D7: [535,-5,668,65,604,'604 260l-539 -255v59l438 207l-438 205v59l539 -254v-21zM251 271c0 -32 -26 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 55 56 55c30 0 56 -25 56 -55'], + 0x22D8: [536,-6,1278,55,1224,'1224 6l-544 255v21l544 254v-59l-442 -205l442 -207v-59zM912 6l-545 255v21l545 254v-59l-443 -205l443 -207v-59zM599 6l-544 255v21l544 254v-59l-442 -205l442 -207v-59'], + 0x22D9: [536,-6,1278,55,1224,'1224 261l-544 -255v59l442 207l-442 205v59l544 -254v-21zM912 261l-545 -255v59l442 207l-442 205v59l545 -254v-21zM599 261l-544 -255v59l442 207l-442 205v59l544 -254v-21'], + 0x22DA: [831,289,668,65,604,'604 420l-539 195v21l539 195v-53l-420 -152l420 -152v-54zM604 317h-539v56h539v-56zM604 158h-539v56h539v-56zM604 -94l-539 -195v53l420 153l-420 151v54l539 -194v-22'], + 0x22DB: [831,289,668,65,604,'604 616l-539 -197v54l420 152l-420 152v54l539 -194v-21zM604 317h-539v56h539v-56zM604 158h-539v56h539v-56zM604 -289l-539 195v21l539 195v-53l-420 -151l420 -153v-54'], + 0x22DE: [632,91,668,65,604,'604 551c0 -2 -92 -184 -539 -263v53c426 63 539 290 539 291v-81zM604 -91c0 2 -102 200 -539 270v26c437 70 539 270 539 270v-80c0 -1 -103 -144 -378 -203v-1c275 -58 378 -200 378 -202v-80'], + 0x22DF: [632,91,668,65,604,'604 288c-446 78 -539 261 -539 263v81s114 -227 539 -291v-53zM604 179c-437 -70 -539 -268 -539 -270v80c0 2 103 144 378 202v1c-275 59 -378 202 -378 203v80s102 -200 539 -270v-26'], + 0x22E0: [648,107,668,65,604,'604 -91c0 0 -68 136 -295 227l-96 -243h-57l104 261c-56 19 -121 34 -195 46v53c82 -15 153 -33 213 -53l29 75c-65 24 -146 45 -242 61v26c134 21 236 55 314 91l78 195h57l-63 -157c117 71 153 140 153 141v-80c0 -1 -52 -74 -183 -137l-44 -111 c163 -67 227 -157 227 -158v-80s-53 105 -247 189l-29 -73c223 -85 276 -190 276 -191v-82zM353 386c-38 -13 -79 -26 -127 -35v-2c37 -7 70 -16 101 -27'], + 0x22E1: [648,107,668,65,604,'604 200c-128 -19 -228 -54 -305 -92l-86 -215h-57l69 173c-120 -77 -160 -155 -160 -157v82c0 1 40 78 192 154l40 103c-181 -83 -232 -182 -232 -182v80c0 1 73 102 259 170l24 60c-204 66 -283 175 -283 176v80c0 -1 63 -124 301 -210l91 226h57l-97 -243 c54 -17 117 -31 187 -43v-26c-95 -15 -173 -36 -239 -60l-40 -99c73 28 164 56 279 76v-53zM443 349v2c-15 3 -29 6 -44 10l-10 -24c17 4 35 8 54 12'], + 0x22E6: [604,118,668,65,604,'604 76l-539 252v21l539 255v-59l-438 -205l438 -205v-59zM604 40c0 0 -11 -158 -159 -158c-49 0 -82 21 -112 45l-37 -41h-72l70 74c-26 20 -52 37 -87 37c-87 0 -121 -92 -121 -94l-21 10s28 139 162 139c45 0 78 -21 109 -46l38 41h71l-68 -73c26 -21 55 -38 89 -38 c94 0 118 112 118 115'], + 0x22E7: [604,118,668,65,604,'604 329l-539 -254v59l438 205l-438 205v60l539 -253v-22zM604 40c0 0 -11 -158 -159 -158c-49 0 -82 21 -112 45l-37 -41h-72l70 74c-26 20 -52 37 -87 37c-87 0 -121 -92 -121 -94l-21 10s28 139 162 139c45 0 78 -21 109 -46l38 41h71l-68 -73c26 -21 55 -38 89 -38 c94 0 118 112 118 115'], + 0x22E8: [621,118,668,65,604,'604 56c0 0 -102 200 -539 269v27c437 69 539 268 539 269v-80c0 -1 -103 -143 -378 -201v-1c275 -59 378 -202 378 -203v-80zM604 40c0 0 -11 -158 -159 -158c-49 0 -82 21 -112 45l-37 -41h-72l70 74c-26 20 -52 37 -87 37c-87 0 -121 -92 -121 -94l-21 10 s28 139 162 139c45 0 78 -21 109 -46l38 41h71l-68 -73c26 -21 55 -38 89 -38c94 0 118 112 118 115'], + 0x22E9: [621,118,668,65,604,'604 325c-437 -69 -539 -268 -539 -269v80c0 1 103 144 378 202v1c-275 59 -378 201 -378 202v80s102 -200 539 -269v-27zM604 40c0 0 -11 -158 -159 -158c-49 0 -82 21 -112 45l-37 -41h-72l70 74c-26 20 -52 37 -87 37c-87 0 -121 -92 -121 -94l-21 10s28 139 162 139 c45 0 78 -21 109 -46l38 41h71l-68 -73c26 -21 55 -38 89 -38c94 0 118 112 118 115'], + 0x22EA: [648,107,668,65,604,'604 6l-291 137l-100 -250h-57l108 273l-199 94v21l302 142l90 225h57l-77 -192l167 79v-529zM552 89v363l-144 -68l-75 -191zM339 352l-173 -81l118 -56'], + 0x22EB: [648,107,668,65,604,'604 260l-302 -142l-89 -225h-57l77 192l-168 -79v529l292 -137l100 250h57l-109 -273l199 -94v-21zM503 271l-118 55l-54 -137zM337 348l-219 104v-363l143 68'], + 0x22EC: [712,171,668,65,604,'604 -61l-372 1l-45 -111h-56l44 110h-110v55h131l70 175l-201 -94v529l315 -148l102 256h57l-111 -279l176 -82v-22l-268 -126l-83 -208h351v-56zM503 340l-95 44l-43 -109zM360 406l-242 114v-361l177 83'], + 0x22ED: [712,171,668,65,604,'604 -61l-372 1l-45 -111h-56l44 110h-110v55h131l91 230l-222 104v21l336 159l81 204h57l-68 -171l133 63v-529l-268 127l-83 -207h351v-56zM552 159v361l-110 -52l-86 -217zM373 436l-207 -96l141 -66'], + 0x22EE: [674,142,249,67,183,'124 674c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM124 329c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM124 -26c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x22EF: [329,-213,1000,109,891,'499 329c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM166 329c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM832 329c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x22F1: [568,16,774,95,680,'428 318c22 -22 22 -62 1 -83c-22 -22 -61 -21 -83 1c-21 21 -20 60 1 81s60 22 81 1zM193 553c22 -22 22 -61 1 -83c-22 -21 -61 -21 -84 2c-20 20 -20 59 2 80c21 22 60 22 81 1zM664 82c22 -22 22 -61 0 -82c-21 -22 -60 -22 -83 1c-20 20 -20 59 1 81 c22 21 61 21 82 0'], + 0x2308: [713,172,390,93,355,'355 649h-199v-821h-63v885h262v-64'], + 0x2309: [713,172,390,36,298,'298 -172h-63v821h-199v64h262v-885'], + 0x230A: [713,172,390,93,355,'355 -172h-262v885h63v-821h199v-64'], + 0x230B: [713,172,390,36,298,'298 -172h-262v64h199v821h63v-885'], + 0x2322: [333,-164,691,65,627,'627 175l-14 -11c-81 92 -188 108 -268 108s-185 -16 -266 -108l-14 11c23 29 89 158 281 158s258 -129 281 -158'], + 0x2323: [333,-164,691,65,627,'627 323c-23 -30 -89 -159 -281 -159s-258 129 -281 159l14 10c81 -92 186 -108 266 -108s187 16 268 108'], + 0x23B4: [755,-545,601,0,602,'0 745l14 10c30 -6 58 -8 126 -8h314c50 0 108 8 134 8l14 -10l-2 -100l2 -94l-6 -6h-26l-4 4v38c0 28 -6 50 -16 62c-10 8 -24 12 -58 12h-382c-34 0 -48 -4 -56 -12c-10 -12 -16 -34 -16 -62v-38l-6 -4h-26l-6 6l2 100'], + 0x23B5: [-165,375,601,0,602,'0 -365l14 -10c30 6 58 8 126 8h314c50 0 108 -8 134 -8l14 10l-2 100l2 94l-6 6h-26l-4 -4v-38c0 -28 -6 -50 -16 -62c-10 -8 -24 -12 -58 -12h-382c-34 0 -48 4 -56 12c-10 12 -16 34 -16 62v38l-6 4h-26l-6 -6l2 -100'], + 0x23DC: [786,-545,1069,64,1006,'546 700c-286 0 -407 -112 -460 -155l-22 19c78 82 116 114 184 149c90 48 190 73 298 73c276 0 409 -165 460 -222l-26 -19c-68 58 -174 155 -434 155'], + 0x23DD: [-545,786,1069,64,1006,'546 -700c-286 0 -407 112 -460 155l-22 -19c78 -82 116 -114 184 -149c90 -48 190 -73 298 -73c276 0 409 165 460 222l-26 19c-68 -58 -174 -155 -434 -155'], + 0x23DE: [776,-545,1029,64,966,'64 545c3 102 15 155 158 155h168c80 0 102 14 122 76c20 -59 48 -76 120 -76h186c138 0 145 -69 148 -155c-22 63 -52 83 -132 83h-186c-88 0 -116 18 -136 84c-20 -68 -48 -84 -144 -84h-174c-78 0 -112 -22 -130 -83'], + 0x23DF: [-545,776,1029,64,966,'64 -545c3 -102 15 -155 158 -155h168c80 0 102 -14 122 -76c20 59 48 76 120 76h186c138 0 145 69 148 155c-22 -63 -52 -83 -132 -83h-186c-88 0 -116 -18 -136 -84c-20 68 -48 84 -144 84h-174c-78 0 -112 22 -130 83'], + 0x23E0: [755,-545,1029,65,965,'266 697l-126 -152h-75l167 210h566l167 -210h-75l-125 152h-499'], + 0x23E1: [-545,755,1029,65,965,'266 -697l-126 152h-75l167 -210h566l167 210h-75l-125 -152h-499'], + 0x25A0: [541,0,669,64,605,'605 0h-541v541h541v-541'], + 0x25A1: [560,0,688,65,623,'623 560v-560h-558v560h558zM569 504h-450v-450h450v450'], + 0x25B2: [577,0,667,44,623,'623 0h-579l290 577'], + 0x25B3: [577,0,667,44,623,'623 0h-579l290 577zM551 44l-217 432l-217 -432h434'], + 0x25B6: [578,1,667,45,622,'45 -1v579l577 -290'], + 0x25BC: [577,0,667,44,623,'623 577l-289 -577l-290 577h579'], + 0x25BD: [577,0,667,44,623,'623 577l-289 -577l-290 577h579zM551 533h-434l217 -432'], + 0x25C0: [578,1,667,45,622,'622 -1v579l-577 -290'], + 0x2660: [592,0,570,44,526,'526 214c0 -36 -6 -139 -103 -139c-28 0 -99 2 -99 63h-24c0 -37 9 -90 23 -138h-76c15 48 25 101 25 138h-25c0 -61 -71 -63 -100 -63c-98 0 -103 106 -103 140v9c0 130 158 184 242 368c83 -184 240 -238 240 -368v-10'], + 0x2661: [591,7,636,44,593,'318 -7c-86 194 -274 269 -274 415c0 87 29 183 134 183c118 0 106 -86 141 -86c36 0 22 86 141 86c104 0 133 -96 133 -183c0 -144 -186 -222 -275 -415zM551 408c0 63 -13 140 -91 140c-99 0 -66 -85 -141 -85s-42 85 -141 85c-79 0 -92 -77 -92 -140 c0 -90 128 -191 182 -257c18 -22 35 -46 50 -70c16 24 32 48 50 70c55 66 183 167 183 257'], + 0x2662: [642,101,559,44,516,'516 271l-236 -372l-236 372l236 371zM444 271l-164 257l-164 -257l164 -258'], + 0x2663: [584,0,607,44,564,'564 202c0 -74 -49 -129 -119 -129c-28 0 -92 14 -92 65h-35c0 -37 9 -90 23 -138h-76c15 48 23 101 23 138h-33c0 -51 -63 -65 -93 -65c-68 0 -118 55 -118 129c0 66 36 134 101 134c33 0 55 -18 64 -29l15 32c-33 25 -52 67 -52 110c0 72 63 135 132 135 s133 -62 133 -135c0 -45 -21 -86 -53 -111l16 -31c9 12 29 29 63 29c65 0 101 -68 101 -134'], + 0x266D: [668,122,436,69,387,'387 216c0 -199 -189 -338 -293 -338c-17 0 -25 11 -25 29v749l43 12v-326c1 0 52 44 120 44c99 0 155 -65 155 -170zM296 213c0 76 -22 146 -80 146c-79 0 -104 -59 -104 -100v-326c0 -8 2 -15 19 -15c81 0 165 137 165 295'], + 0x266E: [758,216,396,63,347,'347 -204l-42 -12v249l-242 -95v807l42 13v-306l242 94v-750zM305 128v307l-200 -78v-307'], + 0x266F: [775,234,422,53,384,'384 71l-48 -19v-196l-43 -16v196l-151 -58v-196l-43 -16v195l-46 -16v92l46 18v309l-46 -18v92l46 18v229l43 16v-227l151 58v227l43 16v-226l48 19v-95l-48 -19v-307l48 19v-95zM293 131v307l-151 -58v-308'], + 0x2713: [742,7,782,44,749,'749 714c-205 -207 -357 -449 -452 -721h-85c-38 96 -94 179 -168 253l29 31c66 -65 122 -130 172 -198c119 243 277 466 475 663'], + 0x2720: [682,95,876,49,827,'827 77h-27c-81 140 -191 199 -351 206c-1 -159 74 -275 210 -354v-24h-443v23c138 79 211 195 211 355c-167 -7 -272 -69 -355 -215h-23v441h28c81 -140 190 -199 350 -205c1 159 -73 275 -209 353v25h443v-23c-138 -79 -212 -195 -212 -355c168 6 273 68 356 215h22 v-442'], + 0x27E8: [713,172,381,53,329,'329 -172h-50l-226 443l226 442h50l-204 -442'], + 0x27E9: [713,172,381,53,329,'329 271l-226 -443h-50l204 443l-204 442h50'], + 0x27EE: [726,223,245,61,213,'213 -202l-5 -21c-22 39 -147 150 -147 474s125 436 147 475l5 -21c-64 -112 -71 -274 -71 -454s7 -341 71 -453'], + 0x27EF: [726,223,245,32,184,'32 -202l5 -21c22 39 147 150 147 474s-125 436 -147 475l-5 -21c64 -112 71 -274 71 -454s-7 -341 -71 -453'], + 0x27F5: [488,-57,1513,65,1444,'1444 243h-1265l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h1265v-59'], + 0x27F6: [488,-57,1513,65,1444,'65 302h1265l-125 152l32 34l207 -214l-207 -217l-32 34l125 152h-1265v59'], + 0x27F7: [486,-55,1513,65,1449,'1449 272l-206 -217l-32 33l124 153h-1156l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h1156l-124 151l32 35'], + 0x27F8: [537,-5,1513,65,1449,'1449 134h-1181l80 -98l-29 -31l-254 266l254 266l29 -33l-80 -98h1181v-59h-1230l-64 -78l63 -76h1231v-59'], + 0x27F9: [537,-5,1513,65,1449,'65 134h1181l-80 -98l29 -31l254 266l-254 266l-29 -33l80 -98h-1181v-59h1230l64 -78l-63 -76h-1231v-59'], + 0x27FA: [537,-5,1513,59,1454,'1454 271l-254 -266l-29 31l80 99h-989l80 -98l-29 -32l-254 264l254 268l29 -32l-80 -99h989l-80 98l29 33zM1365 271l-65 77h-1087l-64 -77l63 -78h1089'], + 0x27FC: [486,-55,1513,36,1478,'94 300h1270l-124 152l32 34l206 -217l-206 -214l-32 34l124 152h-1270v-186h-58v431h58v-186'], + 0x2997: [709,191,384,87,298,'197 10l101 -126v-75l-211 167v566l210 167v-75l-100 -125v-499'], + 0x2998: [709,191,384,87,298,'188 10l-101 -126v-75l211 167v566l-210 167v-75l100 -125v-499'], + 0x29EB: [642,101,559,44,516,'516 271l-236 -372l-236 372l236 371'], + 0x29F5: [714,169,463,65,399,'399 -169h-55l-279 883h55'], + 0x29F8: [1021,510,402,0,403,'403 1021l-337 -1531h-66l337 1531h66'], + 0x29F9: [1021,510,402,0,403,'403 -510h-66l-337 1531h66'], + 0x2A3F: [617,76,812,25,788,'788 -73l-4 -3c-131 3 -264 3 -396 3c-120 0 -240 -2 -360 -3l-3 3v24l3 3c16 1 69 1 81 13c16 16 13 139 13 167v268c0 29 2 154 -11 170c-12 13 -66 13 -83 14l-3 3v24l3 4c48 -2 94 -4 141 -4c45 0 90 3 135 4l4 -4v-24l-4 -3c-17 -1 -70 -1 -82 -14 c-14 -15 -11 -151 -11 -179v-428l391 1v433c0 28 3 157 -10 173c-11 12 -67 13 -83 14l-4 3v24l4 4c47 -2 94 -4 140 -4s91 3 135 4l4 -4v-24l-4 -3c-16 -1 -69 -2 -81 -14c-14 -15 -11 -142 -11 -168v-266c0 -27 -4 -157 11 -171c13 -13 64 -12 81 -13l4 -3v-24'], + 0x2A5E: [636,262,687,65,623,'623 581h-558v55h558v-55zM623 421h-558v55h558v-55zM623 -262h-60l-218 479l-220 -479h-60l271 584h18'], + 0x2A7D: [615,74,668,65,604,'604 -15l-539 255v-59l539 -255v59zM604 615l-539 -254v-21l539 -255v59l-438 205l438 206v60'], + 0x2A7E: [615,74,668,65,604,'65 -15l539 255v-59l-539 -255v59zM65 615l539 -254v-21l-539 -255v59l438 205l-438 206v60'], + 0x2A85: [672,187,668,65,604,'604 143l-539 253v21l539 255v-59l-438 -206l438 -205v-59zM604 94c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM604 -66c0 0 -24 -121 -151 -121 c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78'], + 0x2A86: [672,187,668,65,604,'604 397l-539 -255v59l438 205l-438 206v60l539 -254v-21zM604 94c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM604 -66c0 0 -24 -121 -151 -121 c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78'], + 0x2A87: [604,114,668,65,604,'604 76l-539 252v21l539 255v-59l-438 -205l438 -205v-59zM604 -61l-260 1l-48 -54h-72l50 53h-209v55h260l49 53h71l-49 -52h208v-56'], + 0x2A88: [604,114,668,65,604,'604 329l-539 -254v59l438 205l-438 205v60l539 -253v-22zM604 -61l-260 1l-48 -54h-72l50 53h-209v55h260l49 53h71l-49 -52h208v-56'], + 0x2A89: [672,187,668,65,604,'604 143l-539 253v21l539 255v-59l-438 -206l438 -205v-59zM604 -66c0 0 -24 -121 -151 -121c-76 0 -116 49 -162 83l-75 -79h-72l100 104c-10 4 -22 6 -35 6c-88 0 -123 -91 -123 -93l-21 9s29 139 163 139c24 0 44 -6 61 -14l49 50c-41 31 -76 69 -129 69 c-88 0 -123 -91 -123 -93l-21 9s29 139 163 139c66 0 109 -44 154 -78l71 74h71l-97 -101c14 -6 30 -11 46 -11c76 0 105 76 105 78l26 -10s-24 -121 -151 -121c-29 0 -51 7 -71 16l-47 -49c44 -33 84 -74 138 -74c76 0 105 76 105 78'], + 0x2A8A: [672,187,668,65,604,'604 397l-539 -255v59l438 205l-438 206v60l539 -254v-21zM604 -66c0 0 -24 -121 -151 -121c-76 0 -116 49 -162 83l-75 -79h-72l100 104c-10 4 -22 6 -35 6c-88 0 -123 -91 -123 -93l-21 9s29 139 163 139c24 0 44 -6 61 -14l49 50c-41 31 -76 69 -129 69 c-88 0 -123 -91 -123 -93l-21 9s29 139 163 139c66 0 109 -44 154 -78l71 74h71l-97 -101c14 -6 30 -11 46 -11c76 0 105 76 105 78l26 -10s-24 -121 -151 -121c-29 0 -51 7 -71 16l-47 -49c44 -33 84 -74 138 -74c76 0 105 76 105 78'], + 0x2A8B: [831,289,668,65,604,'604 420l-539 195v21l539 195v-53l-420 -152l420 -152v-54zM604 317h-539v56h539v-56zM604 158h-539v56h539v-56zM604 -94l-539 -195v53l420 153l-420 151v54l539 -194v-22'], + 0x2A8C: [831,289,668,65,604,'604 616l-539 -197v54l420 152l-420 152v54l539 -194v-21zM604 317h-539v56h539v-56zM604 158h-539v56h539v-56zM604 -289l-539 195v21l539 195v-53l-420 -151l420 -153v-54'], + 0x2A95: [615,74,668,65,604,'604 556l-539 -255v59l539 255v-59zM604 -74l-539 254v21l539 255v-59l-438 -205l438 -206v-60'], + 0x2A96: [615,74,668,65,604,'604 302l-539 253v60l539 -254v-59zM604 180l-539 -254v59l438 206l-438 205v60l539 -254v-22'], + 0x2AAF: [623,81,668,65,604,'604 -81h-539v56h539v-56zM604 56c0 0 -102 200 -539 270v26c437 70 539 269 539 271v-81s-103 -143 -378 -201c275 -59 378 -204 378 -204v-81'], + 0x2AB0: [620,84,668,65,604,'65 -84h539v56h-539v-56zM65 53c0 0 102 200 539 270v26c-437 70 -539 269 -539 271v-81s103 -143 378 -201c-275 -59 -378 -204 -378 -204v-81'], + 0x2AB5: [680,191,668,65,604,'604 115c0 0 -102 200 -539 270v26c437 69 539 268 539 269v-80c0 -1 -103 -143 -378 -201v-1c275 -59 378 -202 378 -203v-80zM604 -139l-338 2l-50 -54h-72l51 52h-130v55h182l102 105h-284v55h337l51 54h71l-50 -53h130v-54h-183l-102 -106h285v-56'], + 0x2AB6: [680,191,668,65,604,'604 385c-437 -70 -539 -269 -539 -270v80c0 1 103 144 378 202v1c-275 59 -378 201 -378 202v80s102 -200 539 -269v-26zM604 -139l-338 2l-50 -54h-72l51 52h-130v55h182l102 105h-284v55h337l51 54h71l-50 -53h130v-54h-183l-102 -106h285v-56'], + 0x2AB7: [688,187,668,65,604,'604 123c0 0 -102 200 -539 270v26c437 69 539 268 539 269v-80c0 -1 -103 -143 -378 -201v-1c275 -59 378 -202 378 -203v-80zM604 94c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116 c75 0 105 76 105 78zM604 -66c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78'], + 0x2AB8: [688,187,668,65,604,'604 393c-437 -70 -539 -269 -539 -270v80c0 1 103 144 378 202v1c-275 59 -378 201 -378 202v80s102 -200 539 -269v-26zM604 94c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116 c75 0 105 76 105 78zM604 -66c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78'], + 0x2AB9: [688,187,668,65,604,'604 123c0 0 -102 200 -539 270v26c437 69 539 268 539 269v-80c0 -1 -103 -143 -378 -201v-1c275 -59 378 -202 378 -203v-80zM604 -66c0 0 -24 -121 -151 -121c-76 0 -116 49 -162 83l-75 -79h-72l100 104c-10 4 -22 6 -35 6c-88 0 -123 -91 -123 -93l-21 9 s29 139 163 139c24 0 44 -6 61 -14l49 50c-41 31 -76 69 -129 69c-88 0 -123 -91 -123 -93l-21 9s29 139 163 139c66 0 109 -44 154 -78l71 74h71l-97 -101c14 -6 30 -11 46 -11c76 0 105 76 105 78l26 -10s-24 -121 -151 -121c-29 0 -51 7 -71 16l-47 -49 c44 -33 84 -74 138 -74c75 0 105 76 105 78'], + 0x2ABA: [688,187,668,65,604,'604 393c-437 -70 -539 -269 -539 -270v80c0 1 103 144 378 202v1c-275 59 -378 201 -378 202v80s102 -200 539 -269v-26zM604 -66c0 0 -24 -121 -151 -121c-76 0 -116 49 -162 83l-75 -79h-72l100 104c-10 4 -22 6 -35 6c-88 0 -123 -91 -123 -93l-21 9s29 139 163 139 c24 0 44 -6 61 -14l49 50c-41 31 -76 69 -129 69c-88 0 -123 -91 -123 -93l-21 9s29 139 163 139c66 0 109 -44 154 -78l71 74h71l-97 -101c14 -6 30 -11 46 -11c76 0 105 76 105 78l26 -10s-24 -121 -151 -121c-29 0 -51 7 -71 16l-47 -49c44 -33 84 -74 138 -74 c75 0 105 76 105 78'], + 0x2AC5: [669,131,668,55,615,'615 145l-301 -1c-147 0 -259 122 -259 262s112 263 259 263h301v-52h-306c-114 0 -202 -98 -202 -210c0 -118 100 -209 202 -209h306v-53zM615 29h-534v56h534v-56zM615 -131h-534v56h534v-56'], + 0x2AC6: [669,131,668,55,615,'615 407c0 -140 -113 -263 -259 -263h-301v53h305c102 0 202 91 202 209c0 112 -87 210 -202 210h-305v53h301c146 0 259 -122 259 -262zM588 29h-533v56h533v-56zM588 -131h-533v56h533v-56'], + 0x2ACB: [669,183,668,55,615,'615 145l-301 -1c-147 0 -259 122 -259 262s112 263 259 263h301v-52h-306c-114 0 -202 -98 -202 -210c0 -118 100 -209 202 -209h306v-53zM615 -131l-349 2l-50 -54h-72l51 52h-114v55h166l102 105h-268v55h321l51 54h71l-50 -53h141v-54h-194l-102 -106h296v-56'], + 0x2ACC: [669,183,668,55,615,'615 407c0 -140 -113 -263 -259 -263h-301v53h305c102 0 202 91 202 209c0 112 -87 210 -202 210h-305v53h301c146 0 259 -122 259 -262zM588 -131l-322 2l-50 -54h-72l51 52h-140v55h192l102 105h-294v55h347l51 54h71l-50 -53h114v-54h-167l-102 -106h269v-56'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Marks/Regular/Main.js new file mode 100644 index 0000000..0ba0c1f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Marks/Regular/Main.js @@ -0,0 +1,88 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'AsanaMathJax_Marks', + id: 'ASANAMATHMARKS', + 0x20: [0,0,249,0,0,''], + 0x2DB: [0,188,333,63,269,'143 -188c-45 0 -80 36 -80 82c0 30 28 66 83 106h34c-41 -36 -61 -67 -61 -92c0 -31 17 -47 50 -47c25 0 53 13 82 37l18 -23c-47 -42 -89 -63 -126 -63'], + 0x305: [587,-542,0,-433,0,'0 542h-433v45h433v-45'], + 0x332: [-130,175,0,-433,0,'0 -175h-433v45h433v-45'], + 0x333: [-130,283,0,-433,0,'0 -283h-433v45h433v-45zM0 -175h-433v45h433v-45'], + 0x33F: [695,-542,0,-433,0,'0 650h-433v45h433v-45zM0 542h-433v45h433v-45'], + 0x342: [729,-653,0,-324,-31,'-313 653l-11 15c38 39 74 59 107 59c15 0 35 -5 61 -15c25 -9 45 -14 58 -14c15 0 35 10 58 31l9 -12c-37 -38 -69 -57 -96 -57c-14 0 -32 5 -55 15s-41 15 -56 15c-23 0 -48 -12 -75 -37'], + 0x2015: [271,-213,1000,0,1000,'0 213v58h1000v-58h-1000'], + 0x2017: [-75,225,499,0,500,'500 -225h-500v50h500v-50zM500 -125h-500v50h500v-50'], + 0x201A: [100,165,403,141,334,'156 -165l-15 12c19 28 32 52 41 71s17 40 24 66s12 55 16 87c35 8 67 18 97 29l15 -12c-41 -99 -85 -175 -132 -229'], + 0x201B: [709,-446,277,45,233,'174 470l44 -24l15 10c-48 77 -72 143 -78 223c-51 15 -61 18 -97 30l-13 -13c34 -86 72 -153 129 -226'], + 0x201E: [100,165,605,141,536,'358 -165l-15 12c19 28 32 52 41 71s17 40 24 66s12 55 16 87c35 8 67 18 97 29l15 -12c-41 -99 -85 -175 -132 -229zM156 -165l-15 12c19 28 32 52 41 71s17 40 24 66s12 55 16 87c35 8 67 18 97 29l15 -12c-41 -99 -85 -175 -132 -229'], + 0x2022: [466,-75,522,65,458,'458 271c0 -110 -87 -196 -196 -196c-110 0 -197 86 -197 196c0 108 87 195 197 195c109 0 196 -87 196 -195'], + 0x2024: [111,5,315,100,216,'157 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x2025: [111,5,530,100,431,'372 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM157 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x2030: [709,20,1143,123,1021,'266 689c76 0 134 -64 134 -148c0 -92 -62 -161 -143 -161c-78 0 -134 62 -134 148c0 94 60 161 143 161zM264 666c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134c0 81 -27 129 -72 129zM564 309c76 0 134 -64 134 -148c0 -92 -62 -161 -143 -161 c-78 0 -134 62 -134 148c0 94 60 161 143 161zM562 286c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134c0 81 -27 129 -72 129zM887 309c76 0 134 -64 134 -148c0 -92 -62 -161 -143 -161c-78 0 -134 62 -134 148c0 94 60 161 143 161zM885 286 c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134c0 81 -27 129 -72 129zM238 -20h-40l391 729h40'], + 0x2036: [495,-47,599,53,548,'53 433c0 -28 16 -57 30 -79l172 -273c8 -12 26 -34 42 -34c10 0 16 13 16 22c0 10 -7 29 -10 37l-110 319c-11 32 -29 70 -68 70c-34 0 -72 -26 -72 -62zM288 433c0 -28 16 -57 30 -79l172 -273c8 -12 26 -34 42 -34c10 0 16 13 16 22c0 10 -7 29 -10 37l-110 319 c-11 32 -29 70 -68 70c-34 0 -72 -26 -72 -62'], + 0x2037: [495,-47,834,53,783,'53 433c0 -28 16 -57 30 -79l172 -273c8 -12 26 -34 42 -34c10 0 16 13 16 22c0 10 -7 29 -10 37l-110 319c-11 32 -29 70 -68 70c-34 0 -72 -26 -72 -62zM288 433c0 -28 16 -57 30 -79l172 -273c8 -12 26 -34 42 -34c10 0 16 13 16 22c0 10 -7 29 -10 37l-110 319 c-11 32 -29 70 -68 70c-34 0 -72 -26 -72 -62zM523 433c0 -28 16 -57 30 -79l172 -273c8 -12 26 -34 42 -34c10 0 16 13 16 22c0 10 -7 29 -10 37l-110 319c-11 32 -29 70 -68 70c-34 0 -72 -26 -72 -62'], + 0x203B: [547,5,668,59,614,'556 211c-32 0 -58 28 -58 60c0 30 26 56 58 56s58 -26 58 -56c0 -32 -26 -60 -58 -60zM130 211c-32 0 -58 28 -58 60c0 30 26 56 58 56s58 -26 58 -56c0 -32 -26 -60 -58 -60zM394 483c0 -31 -27 -58 -59 -58c-31 0 -57 27 -57 58c0 32 26 58 57 58c32 0 59 -26 59 -58z M394 58c0 -32 -27 -58 -59 -58c-31 0 -57 26 -57 58c0 31 26 58 57 58c32 0 59 -27 59 -58zM611 37l-43 -42l-233 234l-234 -234l-42 42l234 234l-234 234l42 42l234 -234l233 234l43 -42l-235 -234'], + 0x203C: [694,5,973,81,394,'335 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM357 694h34v-25c0 -56 -10 -109 -12 -143l-24 -278v-25l-28 -23l-10 5v17l-28 328c-2 29 -4 53 -7 106zM138 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58 s27 58 57 58zM160 694h34v-25c0 -56 -10 -109 -12 -143l-24 -278v-25l-28 -23l-10 5v17l-28 328c-2 29 -4 53 -7 106'], + 0x203F: [96,58,834,36,798,'426 -3c-228 0 -327 69 -373 99l-17 -12c62 -53 94 -73 148 -95c72 -31 154 -47 242 -47c223 0 331 105 372 142l-21 12c-55 -37 -141 -99 -351 -99'], + 0x2040: [642,-488,834,36,798,'426 587c-228 0 -327 -69 -373 -99l-17 12c62 53 94 73 148 95c72 31 154 47 242 47c223 0 331 -105 372 -142l-21 -12c-55 37 -141 99 -351 99'], + 0x2045: [726,184,332,79,288,'173 233c12 10 35 19 62 19h49l4 6v26l-4 5h-49c-27 0 -50 6 -62 16v311c0 33 3 48 12 57c12 10 34 16 61 16h38l4 5v26l-6 6h-194c-4 -9 -5 -20 -5 -35c0 -26 4 -63 4 -113v-622c0 -68 -2 -96 -8 -127l9 -13h194l6 6v26l-4 5h-38c-27 0 -49 6 -61 16c-9 9 -12 23 -12 56 v308'], + 0x2046: [726,184,332,45,254,'160 233c-12 10 -35 19 -62 19h-49l-4 6v26l4 5h49c27 0 50 6 62 16v311c0 33 -3 48 -12 57c-12 10 -34 16 -61 16h-38l-4 5v26l6 6h194c4 -9 5 -20 5 -35c0 -26 -4 -63 -4 -113v-622c0 -68 2 -96 8 -127l-9 -13h-194l-6 6v26l4 5h38c27 0 49 6 61 16c9 9 12 23 12 56 v308'], + 0x2050: [688,0,980,43,937,'500 82c-267 0 -383 103 -437 147l-20 -18c73 -78 110 -108 174 -142c85 -45 181 -69 283 -69c262 0 388 157 437 211l-25 18c-65 -55 -165 -147 -412 -147zM500 606c-267 0 -383 -103 -437 -147l-20 18c73 78 110 108 174 141c85 46 181 70 283 70 c262 0 388 -157 437 -211l-25 -18c-65 55 -165 147 -412 147'], + 0x205D: [623,3,226,55,171,'55 565c0 30 28 58 58 58s58 -28 58 -60c0 -28 -28 -56 -58 -56s-58 28 -58 58zM55 309c0 30 28 58 58 58s58 -28 58 -60c0 -28 -28 -56 -58 -56s-58 28 -58 58zM55 53c0 32 28 60 58 60s58 -28 58 -60c0 -30 -28 -56 -58 -56s-58 26 -58 56'], + 0x205E: [630,3,226,55,171,'55 572c0 30 28 58 58 58s58 -28 58 -60c0 -28 -28 -56 -58 -56s-58 28 -58 58zM55 401c0 30 28 58 58 58s58 -28 58 -60c0 -28 -28 -56 -58 -56s-58 28 -58 58zM55 224c0 30 28 58 58 58s58 -28 58 -60c0 -28 -28 -56 -58 -56s-58 28 -58 58zM55 53c0 32 28 60 58 60 s58 -28 58 -60c0 -30 -28 -56 -58 -56s-58 26 -58 56'], + 0x20D0: [791,-636,557,0,558,'147 791l20 -22l-79 -96h470v-37h-558'], + 0x20D1: [791,-636,557,0,558,'411 791l-20 -22l79 -96h-470v-37h558'], + 0x20D2: [813,31,416,252,312,'312 -31h-59l-1 844h59'], + 0x20D3: [1014,0,987,679,738,'738 0h-59v1014h59v-1014'], + 0x20D4: [780,-492,680,0,681,'681 492h-43c-1 135 -111 245 -246 245c-107 0 -199 -76 -234 -170l103 58l22 -24l-149 -109l-134 136l21 21l93 -77c35 121 146 208 278 208c159 0 288 -129 289 -288'], + 0x20D5: [780,-492,680,0,681,'0 492h43c1 135 111 245 246 245c107 0 199 -76 234 -170l-103 58l-22 -24l149 -109l134 136l-21 21l-93 -77c-35 121 -146 208 -278 208c-159 0 -288 -129 -289 -288'], + 0x20D6: [790,-519,557,0,558,'558 636h-486l79 -96l-21 -21l-130 135l130 136l21 -21l-79 -96h486v-37'], + 0x20D8: [417,-124,388,47,342,'342 271c0 -83 -65 -147 -147 -147c-83 0 -148 64 -148 147c0 81 65 146 148 146c82 0 147 -65 147 -146zM304 271c0 60 -50 109 -109 109c-62 0 -110 -49 -110 -109c0 -62 48 -110 110 -110c59 0 109 48 109 110'], + 0x20D9: [542,-236,447,47,401,'349 409l38 34l14 -15l-52 -57c-8 -71 -65 -124 -136 -133c-74 -10 -166 51 -166 152c0 91 77 139 129 150c82 16 173 -59 173 -131zM319 403c7 60 -70 120 -145 105c-55 -10 -95 -60 -95 -118c0 -53 34 -97 81 -115c61 -22 141 15 157 91l-58 62l15 15'], + 0x20DA: [541,-235,447,47,401,'349 369l38 -34l14 15l-52 57c-8 71 -65 124 -136 133c-74 10 -166 -51 -166 -152c0 -91 77 -139 129 -150c82 -16 173 59 173 131zM319 375c7 -60 -70 -120 -145 -105c-55 10 -95 60 -95 118c0 53 34 97 81 115c61 22 141 -15 157 -91l-58 -62l15 -15'], + 0x20DB: [694,-578,519,27,493,'259 694c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM84 694c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM434 694c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x20DC: [694,-578,694,27,668,'609 694c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM259 694c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM84 694c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58z M434 694c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x20DD: [825,218,0,-1045,0,'0 304c0 -287 -236 -522 -523 -522s-522 235 -522 522c0 286 235 521 522 521s523 -235 523 -521zM-58 304c0 255 -212 463 -465 463c-255 0 -465 -210 -465 -463c0 -254 210 -464 465 -464c253 0 465 209 465 464'], + 0x20DE: [705,164,0,-870,1,'1 -164h-871v869h871v-869zM-78 -85v706h-704v-706h704'], + 0x20DF: [1114,117,0,-1230,0,'-614 -117l-616 616l614 615l616 -616zM-614 -5l499 499l-498 498l-499 -499'], + 0x20E0: [705,164,0,-872,-1,'-143 22c58 67 94 154 94 249c0 212 -177 386 -388 386c-108 0 -206 -44 -276 -115zM-180 -18l-565 521c-50 -65 -79 -146 -79 -232c0 -212 175 -387 387 -387c98 0 188 37 257 98zM-1 271c0 -239 -197 -435 -436 -435s-435 196 -435 435c0 238 196 434 435 434 s436 -196 436 -434zM-180 -18'], + 0x20E1: [790,-519,556,0,557,'557 655l-130 -136l-20 21l78 96h-413l79 -96l-21 -21l-130 135l130 136l21 -21l-79 -96h413l-78 95l20 22'], + 0x20E2: [655,55,0,-1255,0,'-1255 623c0 16 15 32 31 32h1193c16 0 31 -14 31 -30v-648c0 -16 -15 -32 -31 -32h-1193c-16 0 -31 16 -31 32v646zM-1198 585v-570c0 -15 0 -15 15 -15h1111c15 0 15 0 15 15v570c0 15 0 15 -15 15h-1111c-15 0 -15 0 -15 -15'], + 0x20E3: [960,259,0,-1219,0,'-1189 793v-883l139 -139h881l139 141v881l-139 137h-881zM-1219 816l145 144h929l145 -144v-926l-145 -149h-929l-145 145v930zM-1072 706v-706l108 -112h709l108 112v706l-108 107h-709zM-1096 724l114 113h745l114 -113v-742l-114 -118h-745l-114 114v746'], + 0x20E4: [896,62,0,-849,0,'-12 -62h-825c-7 -1 -20 0 -7 22l406 931c8 4 15 10 27 0l406 -931c10 -24 -1 -22 -7 -22zM-425 783l-330 -783h660'], + 0x20E5: [714,169,0,-333,0,'0 -169h-55l-278 883h54'], + 0x20E6: [713,172,0,-345,-76,'-76 -172h-59v885h59v-885zM-286 -172h-59v885h59v-885'], + 0x20E7: [710,15,0,-283,283,'224 660h-507v50h566v-725h-59v675'], + 0x20E8: [-142,258,519,27,493,'259 -142c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM84 -142c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM434 -142c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x20E9: [723,-514,629,0,630,'0 714l13 9c31 -6 59 -8 127 -8h342c50 0 109 8 135 8l13 -9l-2 -100l2 -94l-6 -6h-26l-5 4v38c0 27 -6 49 -16 61c-9 9 -24 12 -57 12h-411c-33 0 -47 -3 -56 -12c-10 -12 -16 -34 -16 -61v-38l-5 -4h-26l-6 6l2 100'], + 0x20EA: [486,-55,1013,65,949,'949 241h-770l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h770v-59'], + 0x20EB: [714,169,0,-609,-65,'-65 714l-278 -883h-55l279 883h54zM-275 714l-279 -883h-55l279 883h55'], + 0x20EC: [673,-518,557,0,558,'411 518l-20 22l79 96h-470v37h558'], + 0x20ED: [673,-518,557,0,558,'147 518l20 22l-79 96h470v37h-558'], + 0x20EE: [-83,354,556,0,557,'557 -237h-485l79 -96l-21 -21l-130 135l130 136l21 -21l-79 -96h485v-37'], + 0x20EF: [-83,354,556,0,557,'0 -237h485l-79 -96l21 -21l130 135l-130 136l-21 -21l79 -96h-485v-37'], + 0x3014: [709,191,384,87,298,'146 10l152 -126v-75l-211 167v566l210 167v-75l-151 -125v-499'], + 0x3015: [709,191,384,87,298,'239 10l-152 -126v-75l211 167v566l-210 167v-75l151 -125v-499'], + 0x3018: [709,191,384,87,298,'146 10l152 -126v-75l-211 167v566l210 167v-75l-151 -125v-499zM136 5v509l151 125v49l-190 -151v-556l191 -151v49'], + 0x3019: [730,212,384,77,308,'239 10l-152 -126v-75l211 167v566l-210 167v-75l151 -125v-499zM229 504l-151 125v101l230 -183v-576l-231 -183v101l152 126v489'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Marks/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Misc/Regular/Main.js new file mode 100644 index 0000000..6d1c435 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Misc/Regular/Main.js @@ -0,0 +1,109 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'AsanaMathJax_Misc', + id: 'ASANAMATHMISC', + 0x20: [0,0,249,0,0,''], + 0x2070: [696,-271,300,14,286,'160 696c86 0 126 -62 126 -194c0 -153 -48 -231 -141 -231c-40 0 -74 17 -96 46s-35 90 -35 160c0 145 50 219 146 219zM149 675c-59 0 -82 -50 -82 -176c0 -147 25 -207 85 -207c58 0 81 53 81 180c0 144 -24 203 -84 203'], + 0x2071: [685,-271,209,27,183,'131 552v-218c0 -38 2 -42 23 -43l29 -2v-18c-62 2 -62 2 -78 2s-16 0 -78 -2v18l29 2c21 1 23 5 23 43v135c0 40 -3 44 -28 44h-23v17c33 3 66 12 98 24zM103 685c17 0 34 -17 34 -34s-17 -33 -35 -33s-34 16 -34 33c0 18 16 34 35 34'], + 0x2074: [690,-271,299,2,296,'176 382h-166l-8 14l177 277l46 17l7 -3c-3 -25 -4 -77 -4 -183v-84h17c9 0 22 0 51 2v-43c-18 2 -31 3 -68 3v-45c0 -36 7 -44 37 -46l31 -2v-18c-84 2 -84 2 -98 2c-16 0 -16 0 -98 -2v18l39 2c30 1 37 10 37 46v45zM176 420v211l-134 -211h134'], + 0x2075: [696,-271,304,14,292,'292 435c0 -99 -97 -164 -179 -164c-27 0 -52 5 -68 14c-10 27 -17 46 -31 80l15 8l28 -49c10 -15 41 -26 74 -26c68 0 108 39 108 105c0 65 -37 106 -97 106c-31 0 -47 -8 -77 -37l-13 4c2 26 4 84 4 135c0 19 -1 46 -1 82l3 3c47 -2 74 -3 109 -3c34 0 62 1 109 3l3 -3 c-2 -11 -2 -15 -2 -24c0 -8 0 -12 2 -23l-3 -3c-75 0 -111 0 -191 3l-6 -126c39 23 62 30 92 30c70 0 121 -48 121 -115'], + 0x2076: [696,-271,299,14,286,'76 481c57 48 81 47 101 47c66 0 109 -45 109 -114c0 -81 -60 -143 -141 -143s-131 61 -131 160c0 82 35 155 100 208c31 26 57 38 116 57l24 -10v-5c-112 -32 -165 -91 -178 -200zM153 492c-30 0 -59 -14 -73 -35c-7 -10 -9 -21 -9 -42c0 -81 28 -124 81 -124 c49 0 80 40 80 102c0 60 -31 99 -79 99'], + 0x2077: [687,-271,299,9,290,'16 279l152 235c24 37 43 72 68 121h-167c-28 0 -32 -5 -38 -42l-4 -34h-18c1 55 1 55 1 62c0 6 0 6 -1 63l6 3c60 -3 90 -3 136 -3c51 0 73 0 139 3v-18l-113 -198c-42 -72 -72 -134 -99 -200c-24 2 -24 2 -28 2s-4 0 -29 -2'], + 0x2078: [696,-271,299,15,285,'15 378c0 74 66 103 86 112c-55 34 -72 57 -72 98c0 63 54 108 128 108c67 0 111 -35 111 -86c0 -36 -20 -61 -76 -99c70 -31 93 -57 93 -105c0 -74 -67 -135 -149 -135c-69 0 -121 45 -121 107zM173 460l-50 21c-46 -27 -65 -54 -65 -98c0 -56 35 -92 88 -92 c51 0 90 40 90 90c0 33 -24 62 -63 79zM135 537l35 -17c40 26 56 49 56 83c0 44 -30 73 -76 73c-45 0 -74 -27 -74 -67c0 -30 20 -54 59 -72'], + 0x2079: [696,-271,299,13,286,'61 271l-21 10v5c112 26 181 100 185 201l-44 -35c-10 -9 -35 -16 -56 -16c-65 0 -112 51 -112 120c0 80 60 140 140 140c82 0 133 -62 133 -163c0 -80 -32 -149 -92 -199c-35 -28 -64 -42 -133 -63zM231 565c0 41 -16 111 -81 111c-51 0 -83 -37 -83 -98 c0 -62 33 -105 83 -105c49 0 81 37 81 92'], + 0x207A: [593,-271,406,35,372,'372 415h-150v-144h-37v144h-150v36h150v142h37v-142h150v-36'], + 0x207B: [449,-415,385,35,351,'351 415h-316v34h316v-34'], + 0x207C: [513,-349,406,35,372,'372 477h-337v36h337v-36zM372 349h-337v36h337v-36'], + 0x207D: [727,-162,204,35,186,'174 162c-36 33 -139 120 -139 289c0 168 112 252 139 276l12 -16c-39 -43 -97 -104 -97 -260c0 -166 64 -237 97 -276'], + 0x207E: [727,-162,204,19,170,'31 162c37 33 139 120 139 289c0 168 -112 252 -139 276l-12 -16c39 -43 97 -104 97 -260c0 -166 -64 -237 -97 -276'], + 0x207F: [555,-271,412,30,383,'282 271v171c0 46 -27 76 -69 76c-38 0 -80 -29 -80 -56v-128c0 -37 2 -42 24 -43l28 -2v-18c-43 2 -60 2 -78 2s-35 0 -77 -2v18l28 2c21 1 23 6 23 43v135c0 40 -2 44 -27 44h-23v17c33 4 65 12 97 25l5 -3v-52l48 40c13 10 26 15 49 15c70 0 104 -35 104 -105v-116 c0 -38 2 -42 24 -43l25 -2v-18c-43 2 -43 2 -52 2c-10 0 -11 0 -49 -2'], + 0x2080: [154,271,300,14,286,'160 154c86 0 126 -62 126 -194c0 -153 -48 -231 -141 -231c-40 0 -74 17 -96 46s-35 90 -35 160c0 145 50 219 146 219zM149 133c-59 0 -82 -50 -82 -176c0 -147 25 -207 85 -207c58 0 81 53 81 180c0 144 -24 203 -84 203'], + 0x2081: [147,271,299,32,254,'37 58l-5 31c60 21 98 37 140 58l12 -4v-352c0 -29 5 -34 36 -36l34 -2v-24c-41 1 -46 1 -56 1c-22 1 -36 1 -42 1c-7 0 -53 -1 -102 -2v24l37 2c31 1 36 7 36 36v286c0 9 0 12 -2 16l-78 -35h-10'], + 0x2082: [144,271,299,6,284,'282 -241c0 -21 1 -23 2 -30c-77 1 -117 2 -141 2c-21 0 -32 0 -137 -2v20l103 108c67 70 92 113 92 157c0 48 -31 78 -81 78c-39 0 -59 -14 -68 -46l-9 -30h-24l11 85c31 31 61 43 106 43c78 0 126 -44 126 -113c0 -45 -18 -78 -77 -140l-104 -108c113 3 120 3 203 6 c-1 -6 -2 -12 -2 -30'], + 0x2083: [154,271,299,5,281,'27 -155c5 -13 21 -85 103 -85c54 0 89 38 89 96c0 52 -28 82 -76 82c-16 0 -29 -3 -51 -13l-7 6l8 36c16 -1 25 -2 31 -2c40 0 74 36 74 78c0 35 -30 65 -67 65c-30 0 -66 -19 -72 -38l-12 -35h-25l18 78c32 30 58 41 100 41c68 0 114 -37 114 -90 c0 -35 -18 -63 -61 -97c60 -12 88 -41 88 -91c0 -74 -84 -147 -170 -147c-23 0 -46 4 -84 16c-3 31 -9 53 -22 92'], + 0x2084: [148,271,299,2,296,'176 -160h-166l-8 14l177 277l46 17l7 -3c-3 -25 -4 -77 -4 -183v-84h17c9 0 22 0 51 2v-43c-18 2 -31 3 -68 3v-45c0 -36 7 -44 37 -46l31 -2v-18c-84 2 -84 2 -98 2c-16 0 -16 0 -98 -2v18l39 2c30 1 37 10 37 46v45zM176 -122v211l-134 -211h134'], + 0x2085: [154,271,304,14,292,'292 -107c0 -99 -97 -164 -179 -164c-27 0 -52 5 -68 14c-10 27 -17 46 -31 80l15 8l28 -49c10 -15 41 -26 74 -26c68 0 108 39 108 105c0 65 -37 106 -97 106c-31 0 -47 -8 -77 -37l-13 4c2 26 4 84 4 135c0 19 -1 46 -1 82l3 3c47 -2 74 -3 109 -3c34 0 62 1 109 3 l3 -3c-2 -11 -2 -15 -2 -24c0 -8 0 -12 2 -23l-3 -3c-75 0 -111 0 -191 3l-6 -126c39 23 62 30 92 30c70 0 121 -48 121 -115'], + 0x2086: [154,271,299,14,286,'76 -61c57 48 81 47 101 47c66 0 109 -45 109 -114c0 -81 -60 -143 -141 -143s-131 61 -131 160c0 82 35 155 100 208c31 26 57 38 116 57l24 -10v-5c-112 -32 -165 -91 -178 -200zM153 -50c-30 0 -59 -14 -73 -35c-7 -10 -9 -21 -9 -42c0 -81 28 -124 81 -124 c49 0 80 40 80 102c0 60 -31 99 -79 99'], + 0x2087: [145,271,299,9,290,'16 -263l152 235c24 37 43 72 68 121h-167c-28 0 -32 -5 -38 -42l-4 -34h-18c1 55 1 55 1 62c0 6 0 6 -1 63l6 3c60 -3 90 -3 136 -3c51 0 73 0 139 3v-18l-113 -198c-42 -72 -72 -134 -99 -200c-24 2 -24 2 -28 2s-4 0 -29 -2'], + 0x2088: [154,271,299,15,285,'15 -164c0 74 66 103 86 112c-55 34 -72 57 -72 98c0 63 54 108 128 108c67 0 111 -35 111 -86c0 -36 -20 -61 -76 -99c70 -31 93 -57 93 -105c0 -74 -67 -135 -149 -135c-69 0 -121 45 -121 107zM173 -82l-50 21c-46 -27 -65 -54 -65 -98c0 -56 35 -92 88 -92 c51 0 90 40 90 90c0 33 -24 62 -63 79zM135 -5l35 -17c40 26 56 49 56 83c0 44 -30 73 -76 73c-45 0 -74 -27 -74 -67c0 -30 20 -54 59 -72'], + 0x2089: [154,271,299,13,286,'61 -271l-21 10v5c112 26 181 100 185 201l-44 -35c-10 -9 -35 -16 -56 -16c-65 0 -112 51 -112 120c0 80 60 140 140 140c82 0 133 -62 133 -163c0 -80 -32 -149 -92 -199c-35 -28 -64 -42 -133 -63zM231 23c0 41 -16 111 -81 111c-51 0 -83 -37 -83 -98 c0 -62 33 -105 83 -105c49 0 81 37 81 92'], + 0x208A: [51,271,406,35,372,'372 -127h-150v-144h-37v144h-150v36h150v142h37v-142h150v-36'], + 0x208B: [-93,127,385,35,351,'351 -127h-316v34h316v-34'], + 0x208C: [-29,193,406,35,372,'372 -65h-337v36h337v-36zM372 -193h-337v36h337v-36'], + 0x208D: [197,368,204,35,186,'174 -368c-36 32 -139 120 -139 289c0 168 112 252 139 276l12 -16c-39 -43 -97 -104 -97 -260c0 -166 64 -237 97 -276'], + 0x208E: [197,368,204,19,170,'31 -368c37 32 139 120 139 289c0 168 -112 252 -139 276l-12 -16c39 -43 97 -104 97 -260c0 -166 -64 -237 -97 -276'], + 0x2090: [12,277,334,31,304,'213 -220l-78 -52c-4 -3 -15 -5 -26 -5c-49 0 -78 27 -78 74c0 52 35 80 120 95l62 11c-2 55 -26 77 -85 77c-29 0 -35 -4 -48 -32l-8 -19l-17 4v39l34 19c23 14 48 21 75 21c72 0 99 -32 99 -120v-109c0 -30 2 -35 17 -35l24 -1v-18c-27 1 -43 1 -46 1c-8 0 -8 0 -48 -1 zM213 -116c-72 -10 -129 -21 -129 -79c0 -25 22 -48 47 -48c24 0 64 23 82 48v79'], + 0x2091: [22,271,328,30,294,'170 -271c-55 0 -140 27 -140 143c0 63 21 100 72 128c26 14 53 22 76 22c69 0 116 -45 116 -114c0 -7 -1 -12 -2 -21c-43 -6 -69 -8 -113 -8h-91c2 -35 6 -52 18 -72c17 -29 51 -46 92 -46c26 0 41 5 81 28l8 -6l-13 -21c-7 -10 -63 -33 -104 -33zM238 -99 c-2 40 -6 58 -20 77c-11 17 -27 24 -48 24c-30 0 -57 -16 -70 -42c-8 -16 -10 -29 -10 -57c33 -3 50 -4 78 -4c23 0 38 1 70 2'], + 0x2092: [22,271,361,31,331,'185 22c85 0 146 -58 146 -139c0 -90 -68 -154 -164 -154c-81 0 -136 57 -136 142c0 89 63 151 154 151zM174 2c-55 0 -85 -39 -85 -111c0 -85 41 -142 102 -142c51 0 82 43 82 112c0 81 -42 141 -99 141'], + 0x2093: [11,273,359,31,329,'199 -118l92 -120c7 -9 14 -14 22 -15l16 -2v-18c-33 2 -33 2 -39 2s-6 0 -38 -2c-8 7 -13 15 -16 20l-67 97c-5 -5 -61 -78 -71 -95l-13 -20h-54v16h11c6 0 14 4 19 9l93 106l-75 104c-6 9 -20 17 -31 18l-13 1l-4 16l73 12c21 -21 28 -29 37 -42l48 -69l77 105h51v-17 h-8c-11 0 -18 -3 -22 -7'], + 0x2094: [22,271,323,30,294,'154 22c55 0 140 -27 140 -143c0 -63 -21 -100 -72 -128c-26 -14 -53 -22 -76 -22c-69 0 -116 45 -116 114c0 7 1 12 2 21c43 6 69 8 113 8h91c-2 35 -6 52 -18 72c-17 29 -51 46 -92 46c-26 0 -41 -5 -81 -28l-8 6l13 21c7 10 63 33 104 33zM86 -150c2 -40 6 -58 20 -77 c11 -17 27 -24 48 -24c30 0 57 16 70 42c8 16 10 29 10 57c-33 3 -50 4 -78 4c-23 0 -38 -1 -70 -2'], + 0x20AC: [683,0,721,0,689,'0 277l19 48h93v33h-106c-4 4 -6 6 -6 8c1 4 2 9 18 40h100c22 134 147 277 337 277c135 0 234 -89 234 -100l-33 -62c-51 49 -133 86 -203 86c-154 0 -247 -130 -257 -201c1 -1 111 -1 415 -1c0 -3 -19 -44 -21 -46c-1 -1 -243 -1 -402 -1v-32l383 -1l-18 -47l-357 -1 c27 -59 120 -211 262 -200c136 0 205 81 220 88l9 -72c-60 -43 -161 -93 -234 -93c-157 0 -300 106 -335 277h-118'], + 0x2153: [692,3,750,15,735,'463 309l19 71c31 29 60 40 104 40c73 0 121 -35 121 -89c0 -35 -20 -62 -72 -99c70 -11 100 -38 100 -91c0 -78 -81 -144 -176 -144c-29 0 -53 4 -96 16c-3 29 -17 62 -26 94l31 8c21 -62 51 -86 106 -86c57 0 95 37 95 93c0 52 -30 80 -85 80c-20 0 -34 -4 -49 -13 l-10 4l10 43c8 0 16 0 18 -1h14c43 0 80 36 80 76c0 35 -33 63 -74 63c-43 0 -75 -25 -85 -65h-25zM174 0h-52l451 689h52zM253 273c-22 1 -101 3 -112 3s-85 -2 -106 -3v26h36c36 0 43 13 43 80v238c0 14 -1 18 -5 19h-3l-80 -34h-7l-4 32l161 58l10 -3 c-6 -90 -8 -139 -8 -204v-106c0 -68 6 -80 42 -80h33v-26'], + 0x2154: [689,3,781,15,766,'30 558l12 89c32 30 63 42 111 42c83 0 138 -45 138 -112c0 -46 -24 -89 -76 -139l-115 -109h122c37 0 60 1 94 5c-2 -16 -2 -24 -2 -33c0 -10 0 -16 2 -28c-95 2 -135 3 -157 3c-23 0 -23 0 -144 -3v20l108 104c74 71 100 113 100 160c0 53 -31 83 -85 83 c-37 0 -59 -15 -71 -47l-13 -35h-24zM494 309l19 71c31 29 60 40 104 40c73 0 121 -35 121 -89c0 -35 -20 -62 -72 -99c70 -11 100 -38 100 -91c0 -78 -81 -144 -176 -144c-29 0 -53 4 -96 16c-3 29 -17 62 -26 94l31 8c21 -62 51 -86 106 -86c57 0 95 37 95 93 c0 52 -30 80 -85 80c-20 0 -34 -4 -49 -13l-10 4l10 43c8 0 16 0 18 -1h14c43 0 80 36 80 76c0 35 -33 63 -74 63c-43 0 -75 -25 -85 -65h-25zM205 0h-52l451 689h52'], + 0x2155: [692,7,766,15,751,'141 276c-11 0 -85 -2 -106 -3v26h36c36 0 43 13 43 80v238c0 14 -1 18 -5 19h-3l-80 -34h-7l-4 32l161 58l10 -3c-6 -90 -8 -139 -8 -204v-106c0 -68 6 -80 42 -80h33v-26c-22 1 -101 3 -112 3zM751 157c0 -98 -95 -164 -172 -164c-26 0 -49 5 -66 14 c-8 26 -16 46 -30 80l21 9l27 -50c8 -16 33 -20 65 -20c65 0 104 33 104 100c0 65 -36 105 -94 105c-29 0 -46 -8 -74 -36l-12 3v221h215v-52l-175 1v-119c32 28 45 30 74 30c68 0 117 -54 117 -122zM190 0h-52l451 689h52'], + 0x2156: [689,7,781,15,766,'766 157c0 -98 -95 -164 -172 -164c-26 0 -49 5 -66 14c-8 26 -16 46 -30 80l21 9l27 -50c8 -16 33 -20 65 -20c65 0 104 33 104 100c0 65 -36 105 -94 105c-29 0 -46 -8 -74 -36l-12 3v221h215v-52l-175 1v-119c32 28 45 30 74 30c68 0 117 -54 117 -122zM30 558l12 89 c32 30 63 42 111 42c83 0 138 -45 138 -112c0 -46 -24 -89 -76 -139l-115 -109h122c37 0 60 1 94 5c-2 -16 -2 -24 -2 -33c0 -10 0 -16 2 -28c-95 2 -135 3 -157 3c-23 0 -23 0 -144 -3v20l108 104c74 71 100 113 100 160c0 53 -31 83 -85 83c-37 0 -59 -15 -71 -47l-13 -35 h-24zM205 0h-52l451 689h52'], + 0x2157: [691,7,766,15,751,'41 580l19 71c31 29 60 40 104 40c73 0 121 -35 121 -89c0 -35 -20 -62 -72 -99c70 -11 100 -38 100 -91c0 -78 -81 -144 -176 -144c-29 0 -53 4 -96 16c-3 29 -17 62 -26 94l31 8c21 -62 51 -86 106 -86c57 0 95 37 95 93c0 52 -30 80 -85 80c-20 0 -34 -4 -49 -13 l-10 4l10 43c8 0 16 0 18 -1h14c43 0 80 36 80 76c0 35 -33 63 -74 63c-43 0 -75 -25 -85 -65h-25zM751 157c0 -98 -95 -164 -172 -164c-26 0 -49 5 -66 14c-8 26 -16 46 -30 80l21 9l27 -50c8 -16 33 -20 65 -20c65 0 104 33 104 100c0 65 -36 105 -94 105 c-29 0 -46 -8 -74 -36l-12 3v221h215v-52l-175 1v-119c32 28 45 30 74 30c68 0 117 -54 117 -122zM190 0h-52l451 689h52'], + 0x2158: [690,7,766,15,751,'182 380h-167v14l165 276l53 20l-1 -271l65 2v-43c-17 2 -30 2 -65 2v-45c0 -36 7 -43 36 -45l29 -2v-18c-80 2 -80 2 -94 2s-14 0 -94 -2v18l37 2c29 1 36 9 36 45v45zM183 419v211l-123 -211h123zM751 157c0 -98 -95 -164 -172 -164c-26 0 -49 5 -66 14 c-8 26 -16 46 -30 80l21 9l27 -50c8 -16 33 -20 65 -20c65 0 104 33 104 100c0 65 -36 105 -94 105c-29 0 -46 -8 -74 -36l-12 3v221h215v-52l-175 1v-119c32 28 45 30 74 30c68 0 117 -54 117 -122zM190 0h-52l451 689h52'], + 0x2159: [692,7,750,15,735,'535 208c32 23 49 46 95 46c64 0 105 -49 105 -118c0 -82 -58 -143 -136 -143c-77 0 -126 61 -126 160c0 82 34 156 96 208c31 26 54 38 112 57l26 -14c-101 -38 -149 -88 -172 -196zM607 214c-29 0 -57 -15 -70 -35c-7 -10 -9 -21 -9 -42c0 -80 27 -124 78 -124 c46 0 77 40 77 102c0 59 -30 99 -76 99zM174 0h-52l451 689h52zM253 273c-22 1 -101 3 -112 3s-85 -2 -106 -3v26h36c36 0 43 13 43 80v238c0 14 -1 18 -5 19h-3l-80 -34h-7l-4 32l161 58l10 -3c-6 -90 -8 -139 -8 -204v-106c0 -68 6 -80 42 -80h33v-26'], + 0x215A: [692,7,750,15,735,'283 430c0 -98 -95 -164 -172 -164c-26 0 -49 5 -66 14c-8 26 -16 46 -30 80l21 9l27 -50c8 -16 33 -20 65 -20c65 0 104 33 104 100c0 65 -36 105 -94 105c-29 0 -46 -8 -74 -36l-12 3v221h215v-52l-175 1v-119c32 28 45 30 74 30c68 0 117 -54 117 -122zM535 208 c32 23 49 46 95 46c64 0 105 -49 105 -118c0 -82 -58 -143 -136 -143c-77 0 -126 61 -126 160c0 82 34 156 96 208c31 26 54 38 112 57l26 -14c-101 -38 -149 -88 -172 -196zM607 214c-29 0 -57 -15 -70 -35c-7 -10 -9 -21 -9 -42c0 -80 27 -124 78 -124c46 0 77 40 77 102 c0 59 -30 99 -76 99zM174 0h-52l451 689h52'], + 0x215B: [693,1,750,14,736,'488 318c0 64 53 109 124 109c65 0 107 -35 107 -87c0 -36 -18 -62 -72 -99c67 -31 89 -57 89 -105c0 -75 -65 -136 -144 -136c-68 0 -118 45 -118 108c0 31 12 59 35 82c13 12 23 20 47 30c-52 34 -68 57 -68 98zM627 189l-48 21c-43 -27 -61 -53 -61 -97 c0 -55 33 -91 83 -91c48 0 86 40 86 89c0 31 -23 61 -60 78zM591 268l33 -17c39 25 53 49 53 82c0 43 -28 72 -72 72c-42 0 -70 -26 -70 -66c0 -30 19 -52 56 -71zM175 -1h-55l452 691h55zM35 272h-1v28h37c35 0 42 13 42 79v238c0 13 -1 17 -4 18h-3l-80 -34v0h-8l-4 34 l162 58v0l11 -3v-1c-6 -90 -8 -139 -8 -204v-106c0 -67 6 -79 41 -79h34v-28h-1c-22 1 -101 3 -112 3s-85 -2 -106 -3'], + 0x215C: [691,1,750,15,736,'41 580l19 71c31 29 60 40 104 40c73 0 121 -35 121 -89c0 -35 -20 -62 -72 -99c70 -11 100 -38 100 -91c0 -78 -81 -144 -176 -144c-29 0 -53 4 -96 16c-3 29 -17 62 -26 94l31 8c21 -62 51 -86 106 -86c57 0 95 37 95 93c0 52 -30 80 -85 80c-20 0 -34 -4 -49 -13 l-10 4l10 43c8 0 16 0 18 -1h14c43 0 80 36 80 76c0 35 -33 63 -74 63c-43 0 -75 -25 -85 -65h-25zM488 318c0 64 53 109 124 109c65 0 107 -35 107 -87c0 -36 -18 -62 -72 -99c67 -31 89 -57 89 -105c0 -75 -65 -136 -144 -136c-68 0 -118 45 -118 108c0 31 12 59 35 82 c13 12 23 20 47 30c-52 34 -68 57 -68 98zM627 189l-48 21c-43 -27 -61 -53 -61 -97c0 -55 33 -91 83 -91c48 0 86 40 86 89c0 31 -23 61 -60 78zM591 268l33 -17c39 25 53 49 53 82c0 43 -28 72 -72 72c-42 0 -70 -26 -70 -66c0 -30 19 -52 56 -71zM175 -1h-55l452 691h55'], + 0x215D: [690,1,750,15,736,'283 428c0 -98 -95 -164 -172 -164c-26 0 -49 5 -66 14c-8 26 -16 46 -30 80l21 9l27 -50c8 -16 33 -20 65 -20c65 0 104 33 104 100c0 65 -36 105 -94 105c-29 0 -46 -8 -74 -36l-12 3v221h215v-51h-175v-119c32 28 45 30 74 30c68 0 117 -54 117 -122zM488 318 c0 64 53 109 124 109c65 0 107 -35 107 -87c0 -36 -18 -62 -72 -99c67 -31 89 -57 89 -105c0 -75 -65 -136 -144 -136c-68 0 -118 45 -118 108c0 31 12 59 35 82c13 12 23 20 47 30c-52 34 -68 57 -68 98zM627 189l-48 21c-43 -27 -61 -53 -61 -97c0 -55 33 -91 83 -91 c48 0 86 40 86 89c0 31 -23 61 -60 78zM591 268l33 -17c39 25 53 49 53 82c0 43 -28 72 -72 72c-42 0 -70 -26 -70 -66c0 -30 19 -52 56 -71zM175 -1h-55l452 691h55'], + 0x215E: [691,2,677,15,662,'74 636c-27 0 -30 -5 -35 -41l-4 -34h-20v129h273v-19l-204 -397h-69l218 362h-159zM537 428c65 0 108 -35 108 -88c0 -36 -18 -62 -71 -99c66 -31 88 -57 88 -105c0 -76 -65 -137 -145 -137c-68 0 -119 45 -119 109c0 31 12 60 35 83c13 12 23 19 46 29 c-51 34 -67 57 -67 98c0 65 54 110 125 110zM552 188l-48 21c-43 -27 -60 -52 -60 -96c0 -55 33 -90 82 -90c47 0 85 40 85 88c0 31 -22 60 -59 77zM516 269l33 -17c38 25 52 49 52 81c0 43 -27 71 -71 71c-42 0 -69 -26 -69 -65c0 -28 16 -50 55 -70zM101 -2h-58l453 693 h58'], + 0x215F: [692,0,392,15,625,'174 0h-52l451 689h52zM253 273c-22 1 -101 3 -112 3s-85 -2 -106 -3v26h36c36 0 43 13 43 80v238c0 14 -1 18 -5 19h-3l-80 -34h-7l-4 32l161 58l10 -3c-6 -90 -8 -139 -8 -204v-106c0 -68 6 -80 42 -80h33v-26'], + 0x2160: [692,3,336,22,315,'216 569v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90'], + 0x2161: [692,3,646,30,618,'618 -3c-60 2 -96 3 -148 3l-148 -3c-58 2 -94 3 -146 3s-88 -1 -146 -3v30l48 3c46 3 50 11 50 90v449c0 79 -4 87 -50 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 146 3l148 -3c52 0 74 0 148 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30z M372 30c46 3 52 11 52 90v449c0 79 -6 87 -52 90l-48 3l-50 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3'], + 0x2162: [692,3,966,43,924,'583 30c32 -3 64 -3 96 0c46 3 51 11 51 90v449c0 79 -5 87 -51 90c-32 3 -64 3 -96 0c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90zM631 -3c-60 2 -95 4 -147 3l-148 -3c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3 v30c72 -2 96 -3 146 -3c52 0 74 0 147 3l148 -3h293c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3s-87 -1 -146 -3zM386 30c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3l-50 -3c-46 -3 -51 -11 -51 -90 v-449c0 -79 5 -87 51 -90l48 -3'], + 0x2163: [692,9,1015,12,1004,'256 659l50 3l36 -3c21 -2 30 -11 44 -41l188 -462c30 -76 42 -111 58 -165h50c18 62 30 95 64 175l174 421c22 54 34 69 54 72l30 3v30l-108 -3c-18 0 -42 1 -70 2c-6 0 -22 0 -38 1v-30l52 -3c22 -1 34 -11 34 -26c0 -10 -2 -24 -8 -39l-184 -473l-196 507 c-2 4 -2 7 -2 11c0 12 12 19 32 20l56 3v30c-110 -3 -110 -3 -134 -3c-22 0 -14 -3 -124 0c-74 -3 -104 0 -156 0c-50 0 -74 1 -146 3v-30l48 -3c46 -3 50 -11 50 -90v-449c0 -79 -4 -87 -50 -90l-48 -3v-30c58 2 94 3 146 3s88 -1 146 -3v30l-48 3c-46 3 -50 11 -50 90v449 c0 79 4 87 50 90'], + 0x2164: [692,9,721,8,706,'274 662l-56 -3c-20 -1 -32 -8 -32 -20c0 -4 1 -7 2 -11l197 -507l183 473c6 15 9 29 9 39c0 15 -13 25 -35 26l-52 3v30c16 -1 33 -1 38 -1c29 -1 52 -2 70 -2l108 3v-30l-30 -3c-20 -3 -31 -18 -54 -72l-174 -421c-33 -80 -45 -113 -64 -175h-50c-15 54 -27 89 -58 165 l-188 462c-13 30 -23 39 -44 41l-36 3v30c110 -3 110 -3 133 -3s23 0 133 3v-30'], + 0x2165: [692,9,1015,12,1004,'758 659l-48 3l-30 -3c-20 -2 -30 -18 -54 -72l-174 -421c-32 -80 -44 -113 -64 -175h-50c-14 54 -26 89 -58 165l-188 462c-12 30 -22 39 -44 41l-36 3v30c110 -3 110 -3 134 -3c22 0 22 0 132 3v-30l-56 -3c-20 -1 -32 -8 -32 -20c0 -4 2 -7 2 -11l198 -507l182 473 c6 15 10 29 10 39c0 15 -14 25 -36 26l-52 3v30c16 -1 34 -1 38 -1c30 -1 53 -3 70 -2l108 3c72 -2 96 -3 146 -3c52 0 74 0 148 3v-30l-48 -3c-46 -3 -52 -11 -52 -90v-449c0 -79 6 -87 52 -90l48 -3v-30c-60 2 -96 3 -148 3s-86 -1 -146 -3v30l48 3c46 3 52 11 52 90v449 c0 79 -5 87 -52 90'], + 0x2166: [692,9,1315,15,1301,'713 692c72 -2 96 -3 146 -3c52 0 74 0 147 3l148 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -147 3l-148 -3c-59 2 -95 3 -147 3s-87 -1 -146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3 l-30 -3c-20 -2 -31 -18 -54 -72l-174 -421c-33 -80 -45 -113 -64 -175h-50c-15 54 -27 89 -58 165l-188 462c-13 30 -23 39 -44 41l-36 3v30c110 -3 110 -3 133 -3s23 0 133 3v-30l-56 -3c-20 -1 -32 -8 -32 -20c0 -4 1 -7 2 -11l197 -507l183 473c6 15 9 29 9 39 c0 15 -13 25 -35 26l-52 3v30c16 -1 33 -1 38 -1c29 -1 52 -3 70 -2zM1056 30c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3l-50 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3'], + 0x2167: [692,9,1609,16,1594,'1254 30c32 -3 64 -3 96 0c46 3 50 11 50 90v449c0 79 -4 87 -50 90c-32 3 -64 3 -96 0c-46 -3 -52 -11 -52 -90v-449c0 -79 6 -87 52 -90zM1056 30c46 3 52 11 52 90v449c0 79 -6 87 -52 90l-48 3l-50 -3c-46 -3 -50 -11 -50 -90v-449c0 -79 4 -87 50 -90l48 -3z M762 659l-48 3l-30 -3c-21 -2 -32 -18 -54 -72l-174 -421c-34 -80 -46 -113 -64 -175h-50c-16 54 -28 89 -58 165l-188 462c-14 30 -24 39 -44 41l-36 3v30c110 -3 110 -3 132 -3c24 0 24 0 134 3v-30l-56 -3c-20 -1 -32 -8 -32 -20c0 -4 0 -7 2 -11l196 -507l184 473 c6 15 8 29 8 39c0 15 -12 25 -34 26l-52 3v30c16 -1 32 -1 38 -1c28 -1 52 -3 70 -2l108 3c72 -2 96 -3 146 -3c52 0 74 0 146 3l148 -3h294c52 0 74 0 146 3v-30l-48 -3c-46 -3 -50 -11 -50 -90v-449c0 -79 4 -87 50 -90l48 -3v-30c-58 2 -94 3 -146 3s-88 -1 -146 -3 c-60 2 -96 4 -148 3l-148 -3c-58 2 -94 3 -146 3s-88 -1 -146 -3v30l48 3c46 3 50 11 50 90v449c0 79 -4 87 -50 90'], + 0x2168: [700,3,979,26,954,'228 0c-52 0 -142 -1 -202 -3v30l48 3c46 3 52 11 52 90v449c0 79 -6 87 -52 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 148 3l154 8c18 -10 34 -27 56 -65l128 -216l186 270h100v-30l-40 -3c-16 -2 -28 -14 -68 -68l-154 -208l176 -280c34 -54 46 -67 66 -70l30 -3v-30 c-44 2 -66 3 -72 3c-12 0 -12 0 -74 -3l-184 306l-202 -306c-60 2 -142 3 -194 3zM272 30l48 -3l26 3c22 3 34 14 58 48c2 3 194 258 196 263l-128 213c-34 55 -69 83 -92 90l-60 18l-48 -3c-47 -3 -52 -11 -52 -90v-449c0 -79 5 -87 52 -90'], + 0x2169: [700,3,666,14,648,'648 27v-30c-43 2 -66 3 -71 3c-12 0 -12 0 -74 -3l-184 306l-202 -306c-43 3 -43 3 -51 3s-8 0 -52 -3v30l26 3c22 3 34 14 59 48c2 3 192 258 195 263l-128 213c-33 55 -68 88 -92 90l-45 3l-2 26l141 27c19 -10 34 -27 57 -65l128 -216l185 270h101v-30l-41 -3 c-15 -2 -27 -14 -68 -68l-154 -208l176 -280c35 -54 47 -67 66 -70'], + 0x216A: [700,3,954,14,940,'639 659l-41 -3c-15 -1 -27 -14 -68 -68l-154 -208l176 -280c35 -54 47 -68 66 -70l30 -3l47 3c46 3 51 11 51 90v449c0 79 -5 90 -51 90h-56zM793 689c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30c-42 2 -432 0 -437 0 l-184 306l-202 -306c-8 0 -59 3 -103 0v30l26 3c22 3 34 14 59 48c2 3 192 258 195 263l-128 213c-33 55 -68 88 -92 90l-45 3l-2 26l141 27c19 -10 34 -27 57 -65l128 -216l185 270h255'], + 0x216B: [700,3,1254,14,1236,'990 30c46 3 52 11 52 90v449c0 79 -6 87 -52 90l-48 3l-50 -3c-46 -3 -50 -11 -50 -90v-449c0 -79 4 -87 50 -90l48 -3zM639 659l-41 -3c-15 -1 -27 -14 -68 -68l-154 -208l176 -280c35 -54 47 -68 66 -70l30 -3l48 3c46 3 50 11 50 90v449c0 79 -4 90 -50 90h-57z M794 689c52 0 74 0 146 3l148 -3c52 0 74 0 148 3v-30l-48 -3c-46 -3 -52 -11 -52 -90v-449c0 -79 6 -87 52 -90l48 -3v-30c-60 2 -96 3 -148 3l-148 -3c-58 2 -94 3 -146 3c-44 2 -286 -3 -291 -3l-184 306l-202 -306c-43 3 -43 3 -51 3s-8 0 -52 -3v30l26 3 c22 3 34 14 59 48c2 3 192 258 195 263l-128 213c-33 55 -68 88 -92 90l-45 3l-2 26l141 27c19 -10 34 -27 57 -65l128 -216l185 270h256'], + 0x216C: [692,3,610,22,586,'565 0c-136 -3 -136 -3 -168 -3c-93 0 -210 3 -233 3c-26 0 -33 0 -99 -3v23l31 16c16 8 25 30 25 59v474c0 79 -5 87 -51 90l-48 3v30c72 -2 96 -3 146 -3c52 0 74 0 147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-522c26 -6 49 -8 85 -8c119 0 206 7 219 18 c6 5 13 25 19 54c1 1 2 8 3 11l12 50h32c-10 -97 -14 -129 -21 -172'], + 0x216D: [709,20,708,22,670,'22 342c0 240 196 367 411 367c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72c0 39 -101 79 -199 79c-172 0 -286 -122 -286 -306c0 -197 130 -327 325 -327c76 0 145 20 207 60l9 -10l-28 -50c-69 -36 -144 -54 -227 -54c-235 0 -393 146 -393 362'], + 0x216E: [692,3,773,22,751,'341 -3c-43 0 -87 3 -145 3c-23 0 -23 0 -139 -3v23l31 16c16 8 25 30 25 59v474c0 78 -5 87 -51 90l-40 3v30c114 -2 169 -3 206 -3c70 0 157 3 174 3c211 0 349 -121 349 -307c0 -107 -44 -215 -116 -286c-70 -69 -166 -102 -294 -102zM644 359 c0 234 -125 293 -325 293c-50 0 -85 -3 -111 -8v-595c26 -6 57 -8 103 -8c113 0 173 17 233 66c66 54 100 140 100 252'], + 0x216F: [692,13,945,16,926,'732 120v458c-18 -34 -30 -57 -44 -86l-178 -378c-18 -37 -42 -102 -54 -127h-20l-279 591v-458c0 -78 5 -87 51 -90l44 -3v-30c-105 3 -105 3 -120 3c-17 0 -17 0 -116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30c80 -3 80 -3 95 -3s15 0 95 3 l264 -556l262 556c80 -3 80 -3 95 -3c17 0 17 0 93 3v-30l-42 -3c-46 -3 -51 -12 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30c-59 2 -95 3 -151 3c-52 0 -82 -1 -128 -3v30l34 3c47 4 51 11 51 90'], + 0x2170: [687,3,290,21,271,'188 465v-363c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41zM142 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0x2171: [687,3,544,21,523,'394 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM319 30l-48 -3l-46 3c-34 2 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72l-46 -3v-30c100 3 100 3 125 3s25 0 125 -3 c100 3 102 3 127 3s25 0 125 -3v30l-46 3c-34 2 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72zM142 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0x2172: [687,3,794,21,773,'644 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM394 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM398 0c25 0 25 -3 125 -3s100 3 125 3s25 0 125 -3v30l-46 3c-34 2 -37 9 -37 72v363l-9 4 c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72l-46 -3l-46 3c-34 2 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72l-48 -3l-46 3c-34 2 -37 9 -37 72v363l-9 4 c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72l-46 -3v-30c100 3 100 3 125 3s25 0 125 -3c100 3 102 3 127 3zM142 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0x2173: [687,7,826,21,802,'802 431l-31 -2c-20 -2 -34 -20 -56 -67l-118 -260c-1 0 -14 -34 -25 -64c0 -2 -10 -28 -16 -45h-50l-172 403c-11 25 -16 31 -31 33l-34 2v28c49 -2 97 -3 116 -3s19 0 117 3v-28l-49 -2c-16 -1 -25 -8 -25 -19s3 -24 9 -38l119 -288c38 83 50 111 62 140l42 106 c12 30 19 57 19 73s-8 25 -24 26l-41 2v28c60 -2 78 -3 94 -3s34 1 94 3v-28zM188 465v-363c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41zM142 687c28 0 55 -28 55 -56 c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0x2174: [459,7,564,6,539,'539 431l-31 -2c-20 -2 -34 -20 -56 -67l-118 -260c-1 0 -14 -34 -25 -64c0 -2 -10 -28 -16 -45h-50l-172 403c-11 25 -16 31 -31 33l-34 2v28c49 -2 97 -3 116 -3s19 0 117 3v-28l-49 -2c-16 -1 -25 -8 -25 -19s3 -24 9 -38l119 -288c38 83 50 111 62 140l42 106 c12 30 19 57 19 73s-8 25 -24 26l-41 2v28c60 -2 78 -3 94 -3s34 1 94 3v-28'], + 0x2175: [687,7,834,6,813,'730 465v-363c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41zM684 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM539 431l-31 -2 c-20 -2 -34 -20 -56 -67l-118 -260c-1 0 -14 -34 -25 -64c0 -2 -10 -28 -16 -45h-50l-172 403c-11 25 -16 31 -31 33l-34 2v28c49 -2 97 -3 116 -3s19 0 117 3v-28l-49 -2c-16 -1 -25 -8 -25 -19s3 -24 9 -38l119 -288c38 83 50 111 62 140l42 106c12 30 19 57 19 73 s-8 25 -24 26l-41 2v28c60 -2 78 -3 94 -3s34 1 94 3v-28'], + 0x2176: [687,7,1094,6,1065,'936 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM861 30l-48 -3l-46 3c-34 2 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72l-46 -3v-30c100 3 100 3 125 3s25 0 125 -3 c100 3 102 3 127 3s25 0 125 -3v30l-46 3c-34 2 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72zM684 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM539 431l-31 -2 c-20 -2 -34 -20 -56 -67l-118 -260c-1 0 -14 -34 -25 -64c0 -2 -10 -28 -16 -45h-50l-172 403c-11 25 -16 31 -31 33l-34 2v28c49 -2 97 -3 116 -3s19 0 117 3v-28l-49 -2c-16 -1 -25 -8 -25 -19s3 -24 9 -38l119 -288c38 83 50 111 62 140l42 106c12 30 19 57 19 73 s-8 25 -24 26l-41 2v28c60 -2 78 -3 94 -3s34 1 94 3v-28'], + 0x2177: [687,7,1339,6,1313,'1184 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM934 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM938 0c25 0 25 -3 125 -3s100 3 125 3s25 0 125 -3v30l-46 3c-34 2 -37 9 -37 72v363l-9 4 c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72l-46 -3l-46 3c-34 2 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72l-48 -3l-46 3c-34 2 -37 9 -37 72v363l-9 4 c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72l-46 -3v-30c100 3 100 3 125 3s25 0 125 -3c100 3 102 3 127 3zM682 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM539 431l-31 -2 c-20 -2 -34 -20 -56 -67l-118 -260c-1 0 -14 -34 -25 -64c0 -2 -10 -28 -16 -45h-50l-172 403c-11 25 -16 31 -31 33l-34 2v28c49 -2 97 -3 116 -3s19 0 117 3v-28l-49 -2c-16 -1 -25 -8 -25 -19s3 -24 9 -38l119 -288c38 83 50 111 62 140l42 106c12 30 19 57 19 73 s-8 25 -24 26l-41 2v28c60 -2 78 -3 94 -3s34 1 94 3v-28'], + 0x2178: [687,3,768,21,749,'272 30h-47c-34 0 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72l-46 -3v-30c100 3 100 3 125 3s27 3 127 0h86l134 192l133 -195c52 3 52 3 61 3c10 0 10 0 62 -3v30l-25 3c-12 1 -24 9 -35 24l-148 200 l142 166c6 7 17 11 34 11h14v28h-82l-124 -175l-76 116c-15 22 -26 35 -60 69l-116 -20l5 -26l21 -2c18 -1 40 -15 50 -29l120 -174l-149 -176c-7 -9 -20 -16 -30 -15zM142 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0x2179: [469,3,515,20,496,'288 254l148 -200c11 -15 23 -23 35 -24l25 -3v-30c-52 3 -52 3 -62 3c-9 0 -9 0 -61 -3l-133 195l-134 -192h-86v27h17c10 0 23 6 30 15l149 176l-120 174c-10 14 -32 28 -50 29l-21 2l-5 26l116 20c34 -34 45 -47 60 -69l76 -116l124 175h82v-28h-14 c-17 0 -28 -4 -34 -11'], + 0x217A: [687,3,764,20,746,'617 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM542 30l-46 -3l-25 3c-12 1 -24 9 -35 24l-148 200l142 166c6 7 17 11 34 11h14v28h-82l-124 -175l-76 116c-15 22 -26 35 -60 69l-116 -20l5 -26l21 -2c18 -1 40 -15 50 -29 l120 -174l-149 -176c-7 -9 -20 -15 -30 -15h-17v-27h86l134 192l133 -195c52 3 52 3 61 3h187c25 0 25 0 125 -3v30l-46 3c-34 2 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72'], + 0x217B: [687,3,1019,20,997,'868 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56zM541 30l-45 -3l-25 3c-12 1 -24 9 -35 24l-148 200l142 166c6 7 17 11 34 11h14v28h-82l-124 -175l-76 116c-15 22 -26 35 -60 69l-116 -20l5 -26l21 -2c18 -1 40 -15 50 -29 l120 -174l-149 -176c-7 -9 -20 -15 -30 -15h-17v-27h86c26 33 130 186 134 192l133 -195c52 3 114 0 123 0c14 6 22 3 249 0c100 3 102 3 127 3s25 0 125 -3v30l-46 3c-34 2 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225 c0 -63 -3 -70 -37 -72l-48 -3l-46 3c-34 2 -37 9 -37 72v363l-9 4c-51 -21 -103 -35 -156 -41v-28h37c40 0 44 -7 44 -73v-225c0 -63 -3 -70 -37 -72zM616 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0x217C: [726,3,290,21,271,'23 661v28c79 12 112 20 156 37l9 -8v-616c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56'], + 0x217D: [469,20,443,26,413,'399 311h-28l-7 61c-18 25 -66 45 -110 45c-90 0 -140 -60 -140 -167c0 -132 73 -218 184 -218c36 0 68 9 105 29l10 -15l-21 -32c-10 -15 -85 -34 -137 -34c-134 0 -229 95 -229 230c0 88 37 158 107 202c60 38 116 57 164 57c41 0 76 -11 116 -35 c-9 -36 -14 -77 -14 -123'], + 0x217E: [726,12,610,35,579,'579 -3c-9 0 -73 3 -91 3c-12 0 -28 -1 -77 -3l5 92l-111 -93c-5 -4 -28 -8 -48 -8c-65 0 -112 13 -146 42c-49 40 -76 106 -76 186c0 85 37 158 94 188l88 46c25 13 49 19 76 19c35 0 63 -8 119 -32v183c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-616 c0 -63 3 -70 37 -72l46 -3v-30zM412 350c0 16 -67 72 -146 72c-90 0 -144 -64 -144 -173c0 -119 63 -204 151 -204c47 0 96 31 124 78c13 23 15 33 15 98v129'], + 0x217F: [469,3,882,16,869,'18 400v28c53 6 105 20 156 41l9 -4v-85l69 64c18 16 46 25 83 25c69 0 110 -27 142 -93l76 68c18 16 47 25 82 25c92 0 150 -62 150 -161v-206c0 -63 3 -70 37 -72l47 -3v-30c-76 3 -76 3 -89 3c-17 0 -18 0 -79 -3v284c0 76 -37 127 -91 127c-60 0 -126 -49 -126 -94 v-212c0 -63 3 -70 37 -72l46 -3v-30c-100 3 -100 3 -125 3s-25 0 -125 -3v30l46 3c34 2 37 9 37 72v179c0 76 -37 127 -91 127c-60 0 -126 -49 -126 -94v-212c0 -63 3 -70 37 -72l42 -3v-30c-65 2 -91 3 -119 3s-31 0 -127 -3v30l46 3c34 2 37 9 37 72v225 c0 66 -4 73 -44 73h-37'], + 0x2731: [669,-148,601,55,546,'546 368l-13 -12l-208 30l102 -184v-14l-102 -40l-14 6l-28 214l-158 -132h-16l-54 76l8 14l196 80l-196 96l-4 16l66 78h14l143 -148l39 215l14 6l92 -29l5 -22l-103 -188l208 36l9 -6v-92'], + 0x2736: [572,0,592,45,547,'309 572l41 -199l197 53l-154 -147c47 -38 151 -130 154 -140l-204 57l-46 -196c0 3 -39 187 -46 196l-206 -57l158 140l-158 147c4 5 165 -37 207 -53'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Misc/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Monospace/Regular/Main.js new file mode 100644 index 0000000..007f363 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Monospace/Regular/Main.js @@ -0,0 +1,90 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'AsanaMathJax_Monospace', + id: 'ASANAMATHMONOSPACE', + 0x20: [0,0,524,0,0,''], + 0xA0: [0,0,524,0,0,''], + 0x1D670: [623,0,524,27,497,'437 61c40 0 60 0 60 -31c0 -30 -26 -30 -43 -30h-102c-18 0 -42 0 -42 30c0 31 20 31 56 31l-23 104h-162l-23 -104c36 0 56 0 56 -31c0 -30 -24 -30 -42 -30h-102c-17 0 -43 0 -43 30c0 13 6 24 17 29c6 3 29 2 43 2l121 524c9 38 25 38 54 38c31 0 45 -1 54 -39z M262 540l-66 -314h132'], + 0x1D671: [611,0,524,23,482,'160 550v-202h103c97 0 129 66 129 107c0 33 -22 95 -107 95h-125zM353 320c81 -19 129 -84 129 -153c0 -78 -60 -167 -173 -167h-246c-14 0 -40 0 -40 30c0 31 25 31 41 31h27v489h-27c-16 0 -41 0 -41 31c0 30 26 30 40 30h226c111 0 172 -82 172 -155 c0 -62 -44 -114 -108 -136zM287 61c87 0 126 59 126 108c0 45 -30 118 -115 118h-138v-226h127'], + 0x1D672: [622,11,524,40,484,'411 574c15 29 18 48 43 48c30 0 30 -25 30 -41v-139c0 -20 0 -41 -35 -41c-30 0 -32 16 -35 33c-14 81 -69 127 -129 127c-89 0 -176 -106 -176 -255c0 -150 86 -256 177 -256c41 0 122 24 129 122c2 29 25 29 34 29c11 0 35 0 35 -33c0 -90 -86 -179 -202 -179 c-130 0 -242 134 -242 317c0 182 112 316 241 316c51 0 97 -20 130 -48'], + 0x1D673: [611,0,524,19,485,'60 611h206c133 0 219 -150 219 -310c0 -161 -88 -301 -219 -301h-206c-15 0 -41 0 -41 30c0 31 25 31 41 31h22v489h-22c-15 0 -41 0 -41 30c0 31 25 31 41 31zM151 61h96c111 0 169 123 169 240c0 116 -56 249 -169 249h-96v-489'], + 0x1D674: [611,0,524,26,502,'97 61v489h-30c-15 0 -41 0 -41 31c0 30 26 30 41 30h373c34 0 40 -10 40 -41v-73c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v53h-245v-203h131c0 41 0 57 35 57c34 0 34 -22 34 -41v-93c0 -19 0 -41 -34 -41c-35 0 -35 16 -35 57h-131v-225h267v69c0 20 0 41 35 41 c34 0 34 -22 34 -41v-89c0 -32 -7 -41 -40 -41h-395c-15 0 -41 0 -41 30c0 31 25 31 41 31h30'], + 0x1D675: [611,0,524,28,490,'171 275v-214h52c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-154c-15 0 -41 0 -41 30c0 31 25 31 41 31h33v489h-33c-15 0 -41 0 -41 30c0 31 25 31 41 31h381c34 0 40 -10 40 -41v-73c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v53h-250v-214h136c0 41 0 57 35 57 c34 0 34 -22 34 -41v-93c0 -19 0 -41 -34 -41c-35 0 -35 16 -35 57h-136'], + 0x1D676: [622,11,524,38,496,'449 209v-168c0 -19 0 -41 -34 -41c-35 0 -35 20 -35 42c-20 -23 -62 -53 -119 -53c-119 0 -223 133 -223 317c0 181 103 316 223 316c42 0 82 -15 117 -45c15 34 20 45 41 45c30 0 30 -25 30 -41v-139c0 -20 0 -41 -35 -41c-26 0 -32 12 -34 29 c-17 108 -80 131 -115 131c-78 0 -158 -103 -158 -256c0 -147 76 -255 157 -255c53 0 102 47 114 159h-42c-16 0 -40 0 -40 31c0 30 25 30 40 30h119c15 0 41 0 41 -30c0 -31 -23 -31 -47 -31'], + 0x1D677: [611,0,524,22,502,'437 550v-489h25c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-119c-16 0 -40 0 -40 31c0 30 25 30 40 30h25v226h-212v-226h25c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-119c-15 0 -40 0 -40 30c0 31 24 31 40 31h25v489h-25c-15 0 -40 0 -40 30c0 31 24 31 40 31h119 c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-25v-202h212v202h-25c-16 0 -40 0 -40 31c0 30 25 30 40 30h119c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-25'], + 0x1D678: [611,0,524,79,446,'297 550v-489h108c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-285c-15 0 -41 0 -41 31c0 30 26 30 41 30h108v489h-108c-15 0 -41 0 -41 31c0 30 26 30 41 30h285c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-108'], + 0x1D679: [611,11,524,71,478,'407 550v-416c0 -91 -81 -145 -170 -145c-100 0 -166 47 -166 110c0 32 22 47 45 47c25 0 44 -20 44 -44c0 -16 -4 -21 -8 -26c29 -26 77 -26 85 -26c19 0 101 5 101 90v410h-82c-15 0 -41 0 -41 31c0 30 26 30 41 30h181c15 0 41 0 41 -30c0 -31 -25 -31 -41 -31h-30'], + 0x1D67A: [611,0,524,26,495,'276 358l160 -285c1 -2 5 -8 7 -12c29 0 52 0 52 -31c0 -30 -26 -30 -41 -30h-75c-16 0 -41 0 -41 31c0 30 26 30 40 30l-140 250l-93 -117v-133h22c16 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-100c-16 0 -41 0 -41 31c0 30 26 30 41 30h22v489h-22c-16 0 -41 0 -41 31 c0 30 26 30 41 30h100c16 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-22v-266l211 266c-14 0 -41 0 -41 30c0 31 26 31 41 31h88c14 0 41 0 41 -30c0 -31 -21 -31 -57 -31'], + 0x1D67B: [611,0,524,32,488,'178 550v-489h241v69c0 21 0 41 35 41c34 0 34 -21 34 -41v-89c0 -32 -7 -41 -40 -41h-376c-15 0 -40 0 -40 30c0 31 24 31 40 31h37v489h-37c-15 0 -40 0 -40 30c0 31 24 31 40 31h162c15 0 41 0 41 -31c0 -30 -27 -30 -41 -30h-56'], + 0x1D67C: [611,0,524,17,507,'290 369l67 202c9 26 13 40 54 40h56c15 0 40 0 40 -30c0 -31 -21 -31 -53 -31v-489c32 0 53 0 53 -31c0 -30 -25 -30 -40 -30h-82c-15 0 -40 0 -40 30c0 31 21 31 53 31v477h-1c-12 -53 -97 -306 -100 -312c-8 -14 -22 -22 -35 -22c-12 0 -24 7 -30 15 c-14 19 -100 299 -105 319h-1v-477c32 0 53 0 53 -31c0 -30 -25 -30 -40 -30h-82c-15 0 -40 0 -40 30c0 31 21 31 53 31v489c-32 0 -53 0 -53 31c0 30 25 30 40 30h56c14 0 39 0 49 -24c2 -6 90 -265 100 -312h1c6 29 15 58 27 94'], + 0x1D67D: [611,0,524,28,496,'190 575l184 -500h1v475h-25c-15 0 -40 0 -40 30c0 31 24 31 40 31h106c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-25v-509c0 -38 -12 -41 -42 -41c-26 0 -42 1 -55 36l-184 500h-1v-475h25c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-106c-16 0 -40 0 -40 31 c0 30 25 30 40 30h25v489h-25c-16 0 -40 0 -40 31c0 30 25 30 40 30h68c27 0 42 -3 54 -36'], + 0x1D67E: [622,11,524,56,468,'468 305c0 -289 -22 -316 -206 -316c-185 0 -206 27 -206 316c0 290 21 317 206 317s206 -28 206 -317zM262 561c-127 0 -137 -31 -137 -247c0 -55 0 -142 12 -193c12 -50 37 -71 125 -71c89 0 115 21 126 77c11 54 11 125 11 187c0 219 -10 247 -137 247'], + 0x1D67F: [611,0,524,26,480,'166 245v-184h30c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-129c-15 0 -41 0 -41 30c0 31 25 31 41 31h30v489h-30c-15 0 -41 0 -41 31c0 30 26 30 41 30h224c115 0 189 -90 189 -183s-73 -183 -189 -183h-125zM166 550v-244h106c96 0 139 69 139 122s-43 122 -139 122 h-106'], + 0x1D680: [622,139,524,56,468,'391 4c18 -34 64 -117 64 -124c0 -19 -17 -19 -32 -19h-9c-16 0 -27 0 -35 12c-2 4 -55 104 -61 117c-11 -1 -43 -1 -56 -1c-185 0 -206 27 -206 316c0 290 21 317 206 317s206 -28 206 -317c0 -194 -8 -273 -77 -301zM262 561c-128 0 -137 -33 -137 -256 c0 -54 0 -122 9 -173c10 -54 30 -82 120 -82h32l-46 89c-3 5 -4 8 -4 13c0 19 18 19 32 19h11c20 0 21 -1 30 -16l48 -87c22 15 42 29 42 238c0 54 0 122 -9 173c-11 65 -39 82 -128 82'], + 0x1D681: [611,11,524,22,522,'156 550v-214h72c91 0 136 58 136 107c0 48 -44 107 -136 107h-72zM348 304c66 -52 58 -100 58 -155c0 -53 0 -99 28 -99c17 0 19 37 19 45c1 30 24 30 34 30c11 0 35 0 35 -32c0 -38 -24 -104 -87 -104c-34 0 -62 16 -79 46c-19 32 -19 62 -19 127c0 42 0 64 -22 85 c-32 28 -62 28 -81 28h-78v-214h25c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-119c-15 0 -40 0 -40 30c0 31 24 31 40 31h25v489h-25c-15 0 -40 0 -40 30c0 31 24 31 40 31h177c118 0 194 -82 194 -168c0 -41 -19 -102 -85 -139'], + 0x1D682: [622,11,524,52,472,'296 274c-14 3 -111 26 -115 27c-83 24 -129 90 -129 157c0 85 75 164 186 164c45 0 99 -12 140 -47c8 30 13 47 37 47c30 0 30 -25 30 -41v-132c0 -20 0 -41 -35 -41c-20 0 -31 6 -34 28c-6 31 -21 125 -139 125c-71 0 -120 -48 -120 -99c0 -47 38 -82 80 -94l81 -18 c78 -18 105 -25 146 -65c12 -13 48 -55 48 -119c0 -89 -72 -177 -188 -177c-64 0 -125 16 -165 46c-9 -32 -15 -46 -37 -46c-30 0 -30 25 -30 41v132c0 20 0 41 35 41c32 0 33 -18 34 -35c6 -102 109 -118 164 -118c79 0 122 59 122 111c0 87 -83 107 -111 113'], + 0x1D683: [611,0,524,26,498,'297 550v-489h52c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-173c-16 0 -40 0 -40 31c0 30 25 30 40 30h52v489h-133v-53c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v73c0 33 8 41 41 41h391c34 0 40 -10 40 -41v-73c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v53h-132'], + 0x1D684: [611,11,524,4,520,'449 550v-346c0 -123 -87 -215 -187 -215s-187 92 -187 215v346h-30c-15 0 -41 0 -41 31c0 30 26 30 41 30h129c15 0 41 0 41 -30c0 -31 -26 -31 -41 -31h-30v-341c0 -107 65 -159 118 -159c52 0 118 52 118 159v341h-30c-15 0 -41 0 -41 31c0 30 26 30 41 30h129 c15 0 41 0 41 -30c0 -31 -25 -31 -41 -31h-30'], + 0x1D685: [611,8,524,18,506,'449 550l-132 -521c-9 -37 -28 -37 -55 -37c-29 0 -45 0 -55 38l-132 520c-36 0 -57 0 -57 31c0 30 26 30 41 30h102c15 0 41 0 41 -30c0 -31 -21 -31 -56 -31l97 -389c9 -37 13 -54 18 -89h1c7 43 26 119 39 172l77 306c-35 0 -56 0 -56 31c0 30 26 30 41 30h102 c15 0 41 0 41 -30c0 -31 -21 -31 -57 -31'], + 0x1D686: [611,8,524,11,513,'475 550l-72 -523c-5 -35 -29 -35 -41 -35c-7 0 -33 0 -40 25c-1 2 -55 231 -59 276h-1c-4 -40 -58 -274 -61 -281c-10 -20 -30 -20 -39 -20c-12 0 -36 0 -41 35l-72 523h-1c-9 0 -37 0 -37 30c0 31 26 31 41 31h79c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-25l52 -396 c7 -54 8 -73 8 -78h1c5 62 52 262 55 269c10 22 30 22 40 22c9 0 32 0 41 -23c1 -6 48 -204 54 -268h1c1 28 8 80 16 141l44 333h-25c-15 0 -40 0 -40 30c0 31 24 31 40 31h79c15 0 41 0 41 -31c0 -30 -27 -30 -38 -30'], + 0x1D687: [611,0,524,27,496,'291 326l141 -265h23c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-104c-15 0 -40 0 -40 30c0 31 22 31 45 31l-99 194l-92 -194c23 0 47 0 47 -31c0 -30 -26 -30 -41 -30h-104c-15 0 -40 0 -40 30c0 31 24 31 40 31h22l133 264l-120 225h-23c-15 0 -41 0 -41 31 c0 30 26 30 41 30h104c15 0 40 0 40 -30c0 -31 -23 -31 -43 -31l77 -146l71 146c-23 0 -46 0 -46 31c0 30 25 30 40 30h104c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-22'], + 0x1D688: [611,0,524,19,505,'444 550l-147 -306v-183h25c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-119c-16 0 -40 0 -40 31c0 30 25 30 40 30h25v183l-148 306h-21c-16 0 -40 0 -40 31c0 30 25 30 40 30h104c15 0 40 0 40 -30c0 -31 -22 -31 -46 -31c10 -21 91 -185 105 -236l105 236 c-24 0 -46 0 -46 31c0 30 25 30 40 30h104c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-21'], + 0x1D689: [611,0,524,48,481,'466 546l-329 -485h275v72c0 20 0 41 35 41c34 0 34 -22 34 -41v-92c0 -32 -7 -41 -40 -41h-352c-19 0 -41 0 -41 34c0 10 0 16 10 31l329 485h-258v-53c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v73c0 33 8 41 41 41h334c19 0 41 0 41 -34c0 -10 0 -16 -10 -31'], + 0x1D68A: [440,6,524,55,524,'227 379c-55 0 -57 -2 -57 -12c-1 -37 -29 -46 -44 -46c-24 0 -45 16 -45 46c0 73 102 73 145 73c144 0 198 -84 198 -155v-216c8 -3 18 -8 60 -8c15 0 40 0 40 -30c0 -31 -22 -31 -50 -31c-38 0 -86 1 -108 32c-47 -31 -109 -38 -146 -38c-102 0 -165 65 -165 134 c0 96 123 146 300 149c0 71 -52 102 -128 102zM355 218c-145 -4 -231 -41 -231 -90c0 -39 41 -73 103 -73c8 0 53 0 89 17c39 18 39 39 39 62v84'], + 0x1D68B: [611,6,524,12,488,'166 388c34 31 79 49 127 49c106 0 195 -98 195 -221c0 -127 -97 -222 -206 -222c-32 0 -75 9 -116 51c0 -25 0 -45 -34 -45c-35 0 -35 21 -35 41v509h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-182zM166 191c0 -48 35 -136 113 -136 c70 0 140 65 140 161c0 87 -58 160 -132 160c-63 0 -121 -53 -121 -112v-73'], + 0x1D68C: [440,6,524,73,466,'466 109c0 -17 -34 -115 -173 -115c-126 0 -220 102 -220 222c0 88 60 224 232 224c45 0 149 0 149 -73c0 -29 -21 -46 -45 -46s-43 14 -44 49c0 9 -39 9 -60 9c-135 0 -163 -115 -163 -163c0 -91 72 -161 157 -161c74 0 93 47 99 60c7 20 17 22 33 22c6 0 35 0 35 -28'], + 0x1D68D: [611,6,524,36,512,'358 50c-28 -29 -70 -56 -126 -56c-106 0 -196 97 -196 221c0 127 96 222 205 222c43 0 84 -16 117 -45v158h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-509h45c14 0 40 0 40 -30c0 -31 -25 -31 -41 -31h-73c-40 0 -40 14 -40 50zM358 265 c0 55 -49 111 -113 111c-70 0 -140 -65 -140 -161c0 -89 60 -160 131 -160c77 0 122 83 122 139v71'], + 0x1D68E: [440,6,524,55,464,'424 191h-298c16 -86 91 -136 166 -136c28 0 82 9 104 60c7 19 15 22 33 22c6 0 35 0 35 -28c0 -25 -47 -115 -179 -115c-129 0 -230 101 -230 223c0 123 96 223 215 223c130 0 194 -98 194 -212c0 -37 -19 -37 -40 -37zM127 251h266c-9 103 -71 128 -123 128 c-70 0 -129 -55 -143 -128'], + 0x1D68F: [617,0,524,42,437,'253 370v-309h101c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-271c-15 0 -41 0 -41 31c0 30 26 30 41 30h101v309h-101c-15 0 -40 0 -40 30c0 31 25 31 41 31h100v53c0 87 77 133 157 133c16 0 96 0 96 -60c0 -28 -23 -44 -43 -44c-35 0 -44 39 -44 43 c-30 0 -97 0 -97 -78v-47h122c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-122'], + 0x1D690: [442,229,524,29,509,'233 176c52 0 96 44 96 101c0 53 -42 100 -96 100c-52 0 -96 -44 -96 -101c0 -53 42 -100 96 -100zM281 61c179 0 214 -86 214 -143c0 -85 -105 -147 -233 -147s-233 61 -233 147c0 11 0 79 74 124c-9 12 -23 37 -23 72c0 30 9 52 20 68c-15 19 -32 52 -32 95 c0 85 71 160 165 160c46 0 81 -19 97 -30c46 34 95 35 106 35c54 0 73 -31 73 -54c0 -29 -23 -41 -40 -41c-10 0 -33 7 -39 34c-13 -1 -37 -5 -58 -17c17 -28 26 -57 26 -87c0 -89 -73 -161 -165 -161c-49 0 -87 23 -90 25c-4 -10 -6 -24 -6 -28c0 -2 1 -22 12 -36 c12 -14 18 -14 33 -14c8 -2 21 -2 29 -2h70zM262 -169c100 0 175 43 175 87c0 86 -113 86 -202 86c-73 0 -82 0 -107 -16c-32 -20 -41 -52 -41 -70c0 -44 75 -87 175 -87'], + 0x1D691: [611,0,524,12,512,'427 293v-232h44c16 0 41 0 41 -31c0 -30 -26 -30 -40 -30h-153c-14 0 -41 0 -41 30c0 31 25 31 41 31h39v227c0 60 -14 88 -67 88c-51 0 -125 -38 -125 -138v-177h44c16 0 41 0 41 -31c0 -30 -26 -30 -40 -30h-159c-14 0 -40 0 -40 30c0 31 25 31 41 31h44v489h-45 c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-186c19 19 64 53 131 53c79 0 130 -43 130 -144'], + 0x1D692: [612,0,524,78,455,'309 390v-329h105c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-295c-15 0 -41 0 -41 30c0 31 25 31 41 31h121v309h-113c-15 0 -41 0 -41 31c0 30 26 30 41 30h142c34 0 40 -10 40 -41zM309 562c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50'], + 0x1D693: [612,228,524,48,368,'368 390v-434c0 -64 -36 -184 -181 -184c-41 0 -139 0 -139 76c0 29 22 46 45 46c21 0 44 -17 44 -45c0 -7 0 -9 -1 -12c15 -2 27 -4 56 -4c23 0 54 0 81 38c26 35 26 73 26 90v409h-130c-15 0 -40 0 -40 30c0 31 25 31 41 31h158c34 0 40 -10 40 -41zM368 562 c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50'], + 0x1D694: [611,0,524,21,508,'287 255l149 -194h31c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-118c-15 0 -40 0 -40 30c0 31 20 31 56 31l-119 155l-80 -74v-81h49c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-154c-16 0 -40 0 -40 31c0 30 25 30 40 30h49v489h-49c-16 0 -40 0 -40 31c0 30 25 30 40 30 h65c34 0 40 -10 40 -41v-352l162 152h-37c-15 0 -40 0 -40 30c0 31 24 31 40 31h154c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-35'], + 0x1D695: [611,0,524,58,467,'297 570v-509h130c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-329c-14 0 -40 0 -40 30c0 31 25 31 41 31h129v489h-130c-14 0 -40 0 -40 30c0 31 25 31 41 31h158c34 0 40 -10 40 -41'], + 0x1D696: [437,0,524,-4,516,'109 401c24 22 54 36 86 36c33 0 61 -18 76 -52c28 39 69 52 99 52c89 0 89 -114 89 -134v-242c36 0 57 0 57 -31c0 -30 -26 -30 -41 -30h-75c-14 0 -41 0 -41 30c0 31 25 31 44 31v233c0 65 -14 82 -37 82c-41 0 -82 -47 -82 -136v-179c36 0 57 0 57 -31 c0 -30 -26 -30 -41 -30h-75c-14 0 -41 0 -41 30c0 31 25 31 44 31v233c0 65 -14 82 -37 82c-41 0 -82 -47 -82 -136v-179c36 0 57 0 57 -31c0 -30 -26 -30 -41 -30h-88c-14 0 -41 0 -41 30c0 31 21 31 57 31v309c-36 0 -57 0 -57 31c0 30 26 30 41 30h32c18 0 38 0 40 -30'], + 0x1D697: [437,0,524,12,512,'166 384c19 19 64 53 131 53c79 0 130 -43 130 -144v-232h44c16 0 41 0 41 -31c0 -30 -26 -30 -40 -30h-153c-14 0 -41 0 -41 30c0 31 25 31 41 31h39v227c0 60 -14 88 -67 88c-51 0 -125 -38 -125 -138v-177h44c16 0 41 0 41 -31c0 -30 -26 -30 -40 -30h-159 c-14 0 -40 0 -40 30c0 31 25 31 41 31h44v309h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c40 0 40 -15 40 -47'], + 0x1D698: [440,6,524,57,467,'467 216c0 -126 -95 -222 -205 -222s-205 95 -205 222c0 125 93 224 205 224s205 -99 205 -224zM262 55c74 0 136 75 136 168c0 91 -64 156 -136 156c-71 0 -136 -65 -136 -156c0 -93 62 -168 136 -168'], + 0x1D699: [437,222,524,12,488,'166 264v-73c0 -48 35 -136 113 -136c70 0 140 65 140 161c0 87 -58 160 -132 160c-63 0 -121 -53 -121 -112zM166 45v-206h44c16 0 41 0 41 -31c0 -30 -26 -30 -40 -30h-159c-14 0 -40 0 -40 30c0 31 25 31 41 31h44v531h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73 c38 0 40 -14 40 -43c34 31 79 49 127 49c106 0 195 -98 195 -221c0 -127 -97 -222 -206 -222c-32 0 -75 9 -116 51'], + 0x1D69A: [437,222,524,40,537,'448 396v-557h49c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-167c-16 0 -40 0 -40 31c0 30 25 30 40 30h49v215c-21 -23 -67 -60 -135 -60c-110 0 -204 97 -204 221c0 127 102 222 214 222c57 0 98 -26 125 -55c0 38 0 55 35 55c34 0 34 -22 34 -41zM379 194v39 c0 66 -45 143 -120 143c-80 0 -150 -69 -150 -161c0 -90 65 -160 139 -160c82 0 131 82 131 139'], + 0x1D69B: [437,0,524,32,487,'222 186v-125h111c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-261c-16 0 -40 0 -40 31c0 30 25 30 40 30h81v309h-81c-16 0 -40 0 -40 31c0 30 25 30 40 30h110c34 0 40 -10 40 -41v-34c55 63 119 81 170 81c83 0 95 -42 95 -62c0 -27 -20 -43 -42 -43 c-25 0 -42 20 -43 44c-121 0 -180 -96 -180 -190'], + 0x1D69C: [440,6,524,72,459,'394 289c-70 0 18 90 -134 90c-95 0 -127 -31 -127 -57c0 -42 68 -50 165 -67c32 -5 161 -26 161 -130c0 -48 -32 -131 -190 -131c-28 0 -81 2 -130 38c-12 -37 -28 -38 -37 -38c-30 0 -30 25 -30 41v97c0 20 0 41 35 41c26 0 30 -11 35 -29c25 -78 81 -89 128 -89 c91 0 128 33 128 70c0 53 -80 66 -129 74c-92 14 -197 31 -197 123c0 36 23 118 190 118c19 0 63 0 107 -21c2 7 6 21 30 21c30 0 30 -25 30 -41v-69c0 -20 0 -41 -35 -41'], + 0x1D69D: [554,6,524,25,449,'222 370v-238c0 -25 0 -77 77 -77c23 0 80 10 81 72c0 17 1 38 34 38c35 0 35 -21 35 -39c0 -89 -81 -132 -155 -132c-73 0 -141 36 -141 132v244h-88c-15 0 -40 0 -40 30c0 31 25 31 41 31h87v82c0 20 0 41 35 41c34 0 34 -22 34 -41v-82h164c16 0 40 0 40 -31 c0 -30 -25 -30 -40 -30h-164'], + 0x1D69E: [431,6,524,12,512,'358 32c-37 -28 -78 -38 -119 -38c-73 0 -142 24 -142 120v256h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-270c0 -32 0 -65 79 -65c32 0 113 12 113 102v213h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-329h45 c14 0 40 0 40 -30c0 -31 -25 -31 -41 -31h-73c-18 0 -39 0 -40 32'], + 0x1D69F: [431,4,524,24,500,'430 370l-115 -341c-11 -33 -34 -33 -53 -33c-21 0 -41 0 -53 34l-115 340h-30c-15 0 -40 0 -40 30c0 31 24 31 40 31h117c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-28l109 -322l109 322h-28c-16 0 -40 0 -40 31c0 30 25 30 40 30h117c16 0 40 0 40 -31 c0 -30 -25 -30 -40 -30h-30'], + 0x1D6A0: [431,4,524,16,508,'457 370l-60 -336c-4 -22 -7 -38 -44 -38c-12 0 -31 0 -42 17c-5 8 -41 125 -46 177h-1c-3 -22 -4 -36 -29 -124c-18 -61 -21 -70 -61 -70s-43 15 -47 38l-60 336c-30 0 -51 0 -51 31c0 30 24 30 42 30h115c19 0 42 0 42 -31c0 -30 -24 -30 -42 -30h-49l52 -298h1 c4 20 44 158 47 165c11 22 30 22 40 22c35 0 38 -11 56 -74c12 -41 25 -87 29 -113h1l50 298h-49c-19 0 -42 0 -42 31c0 30 24 30 42 30h115c18 0 42 0 42 -30c0 -31 -21 -31 -51 -31'], + 0x1D6A1: [431,0,524,27,496,'287 222l128 -161h40c15 0 41 0 41 -31c0 -30 -27 -30 -41 -30h-117c-15 0 -40 0 -40 30c0 31 22 31 50 31l-89 123l-86 -123c31 0 52 0 52 -31c0 -30 -25 -30 -40 -30h-117c-14 0 -41 0 -41 30c0 31 26 31 41 31h40l124 161l-118 148h-40c-14 0 -41 0 -41 30 c0 31 26 31 41 31h117c15 0 40 0 40 -30c0 -31 -22 -31 -48 -31l76 -101l74 101c-27 0 -49 0 -49 31c0 30 25 30 40 30h117c15 0 41 0 41 -31c0 -30 -27 -30 -41 -30h-40'], + 0x1D6A2: [431,228,524,26,500,'430 370l-155 -455c-4 -11 -49 -143 -149 -143c-49 0 -83 40 -83 82c0 26 17 44 44 44c25 0 43 -18 43 -43c0 -13 -5 -21 -5 -22c15 1 51 3 80 58c13 25 38 107 38 109c0 1 0 3 -4 13l-142 357h-31c-15 0 -40 0 -40 30c0 31 24 31 40 31h117c16 0 40 0 40 -31 c0 -30 -25 -30 -40 -30h-25l93 -240c7 -19 16 -40 21 -59h1c7 31 13 49 26 86l72 213h-28c-16 0 -40 0 -40 31c0 30 25 30 40 30h117c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-30'], + 0x1D6A3: [431,0,524,33,475,'449 357l-312 -296h269v38c0 20 0 41 35 41c34 0 34 -22 34 -41v-58c0 -15 0 -35 -22 -41h-379c-19 0 -41 0 -41 34c0 17 1 20 22 40l312 296h-249v-26c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v46c0 33 8 41 41 41h340c19 0 41 0 41 -34c0 -17 -1 -20 -22 -40'], + 0x1D7F6: [691,12,499,48,451,'451 339c0 -202 -95 -351 -201 -351c-105 0 -202 145 -202 352c0 202 95 351 202 351c104 0 201 -145 201 -352zM250 56c74 0 136 131 136 295s-67 272 -136 272c-71 0 -137 -110 -137 -272c0 -164 62 -295 137 -295'], + 0x1D7F7: [691,0,499,100,421,'296 646v-578h87c15 0 38 0 38 -35c0 -33 -24 -33 -38 -33h-239c-14 0 -38 0 -38 33c0 35 23 35 38 35h86v469c-41 -42 -80 -49 -99 -49c-14 0 -31 5 -31 33c0 31 20 34 35 35c18 2 68 14 104 109c5 13 11 26 29 26c28 0 28 -28 28 -45'], + 0x1D7F8: [691,0,499,50,450,'450 475c0 -162 -140 -253 -293 -407h227c0 31 0 52 33 52s33 -24 33 -46v-28c0 -36 -7 -46 -39 -46h-322c-16 0 -39 0 -39 34c0 16 5 22 14 30l210 207c63 61 110 126 110 204c0 97 -74 148 -152 148c-52 0 -97 -34 -111 -85c9 -8 13 -22 13 -36c0 -31 -22 -50 -42 -50 c-16 0 -42 13 -42 54c0 94 75 185 187 185c116 0 213 -83 213 -216'], + 0x1D7F9: [691,12,499,42,457,'350 371c62 -33 107 -99 107 -178c0 -103 -81 -205 -206 -205c-117 0 -209 64 -209 163c0 36 21 52 43 52c24 0 42 -22 42 -49c0 -22 -7 -28 -12 -34c25 -52 98 -64 136 -64c87 0 140 70 140 137c0 65 -48 139 -142 139h-44c-15 0 -38 0 -38 35c0 66 87 4 157 70 c26 24 40 63 40 96c0 50 -48 90 -113 90c-8 0 -76 0 -105 -34c3 -3 8 -14 8 -30c0 -31 -22 -50 -42 -50c-19 0 -42 16 -42 52c0 77 66 130 180 130c110 0 180 -74 180 -156c0 -60 -27 -124 -80 -164'], + 0x1D7FA: [692,0,499,28,471,'36 271l217 398c13 22 17 23 40 23h27c32 0 39 -9 39 -45v-391h74c16 0 38 0 38 -35c0 -33 -23 -33 -38 -33h-74v-120h59c15 0 38 0 38 -35c0 -33 -24 -33 -38 -33h-171c-15 0 -38 0 -38 33c0 35 22 35 38 35h59v120h-240c-30 0 -38 8 -38 44c0 22 0 25 8 39zM94 256h212 v387'], + 0x1D7FB: [679,12,499,50,450,'264 432c112 0 186 -109 186 -221c0 -123 -95 -223 -214 -223c-106 0 -186 78 -186 170c0 43 28 53 42 53c20 0 42 -18 42 -50c0 -22 -7 -30 -12 -35c27 -62 88 -70 114 -70c80 0 148 66 148 155c0 72 -43 154 -121 154c-55 0 -94 -20 -120 -56c-8 -11 -12 -17 -29 -17 c-30 0 -30 26 -30 46v295c0 36 6 46 38 46h256c15 0 38 0 38 -34s-24 -34 -38 -34h-228v-211c39 25 80 32 114 32'], + 0x1D7FC: [691,12,499,50,449,'118 376c43 45 92 64 142 64c105 0 189 -99 189 -226c0 -133 -94 -226 -198 -226c-94 0 -201 81 -201 344c0 225 128 359 256 359c92 0 126 -60 126 -114c0 -34 -19 -52 -42 -52c-25 0 -42 22 -42 48c0 20 4 27 9 33c-5 5 -20 17 -52 17c-84 0 -174 -91 -187 -247z M128 202c29 -138 97 -146 123 -146c69 0 132 63 132 158c0 83 -51 157 -128 157c-72 0 -129 -55 -129 -124c0 -8 2 -27 3 -35'], + 0x1D7FD: [697,12,499,42,457,'359 611h-251c0 -31 0 -52 -34 -52c-32 0 -32 24 -32 46v46c0 21 0 46 32 46c8 0 25 0 31 -18h314c15 0 38 0 38 -34c0 -16 -2 -18 -21 -38c-58 -66 -204 -259 -208 -575c0 -32 -17 -44 -33 -44c-33 0 -33 36 -33 52c0 122 32 367 197 571'], + 0x1D7FE: [691,12,499,42,457,'250 400c69 0 128 49 128 112c0 58 -54 111 -128 111c-76 0 -129 -53 -129 -111c0 -62 59 -112 129 -112zM325 366c70 -24 132 -89 132 -173c0 -107 -87 -205 -207 -205s-208 98 -208 205c0 84 61 149 132 173c-75 29 -119 84 -119 147c0 90 80 178 195 178 c113 0 194 -86 194 -178c0 -63 -43 -117 -119 -147zM250 56c79 0 141 62 141 138c0 68 -54 138 -141 138s-142 -70 -142 -138c0 -76 62 -138 142 -138'], + 0x1D7FF: [691,12,499,50,449,'381 303c-43 -45 -92 -64 -142 -64c-105 0 -189 99 -189 226c0 134 97 226 202 226c91 0 197 -76 197 -344c0 -220 -118 -359 -243 -359c-122 0 -139 79 -139 114c0 34 19 52 43 52s41 -22 41 -48c0 -19 -4 -26 -8 -32c20 -17 54 -18 63 -18c91 0 165 110 175 247z M252 623c-68 0 -136 -62 -136 -158c0 -83 51 -157 128 -157c79 0 130 63 130 124c8 14 -21 191 -122 191'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Monospace/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..8556eb8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/NonUnicode/Regular/Main.js @@ -0,0 +1,307 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'AsanaMathJax_NonUnicode', + id: 'ASANAMATHNONUNICODE', + 0x20: [0,0,249,0,0,''], + 0xE000: [705,3,751,28,724,'567 55c0 14 -4 29 -4 31v3l-25 188h-246l-102 -175c-19 -33 -26 -47 -26 -55c0 -9 15 -18 31 -19l52 -3v-28c-86 3 -88 3 -107 3c-20 0 -20 0 -112 -3v30l20 5c34 8 52 24 88 80l373 593h46l87 -625c8 -45 9 -45 56 -52l26 -3v-28c-102 3 -102 3 -122 3s-20 0 -122 -3 v28l44 3c28 2 43 11 43 27zM496 601l-179 -288h216'], + 0xE001: [692,6,610,26,559,'543 227c0 -140 -151 -233 -266 -233c-8 0 -21 1 -40 2l-20 1l-37 1c-26 1 -52 2 -63 2c-12 0 -27 0 -54 -2l-37 -1l5 26c42 7 54 14 58 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-53 2l3 28l52 -1c49 -1 80 -2 99 -2c12 0 48 0 60 1l63 1c15 1 25 1 27 1 c100 0 158 -48 158 -130c0 -51 -23 -98 -69 -137c-31 -28 -56 -40 -113 -60c82 -12 166 -28 166 -138zM166 41c41 -3 62 -7 116 -7c100 0 173 74 173 177c0 87 -50 129 -153 129h-85zM352 655c-23 0 -64 -5 -80 -5l-49 -274h52c124 0 198 63 198 168c0 75 -40 111 -121 111'], + 0xE002: [706,18,687,45,651,'45 284c0 294 231 422 411 422c62 0 119 -12 195 -41c-14 -46 -22 -89 -27 -146h-27v84c-56 36 -108 50 -179 50c-228 0 -285 -206 -285 -344c0 -178 86 -274 243 -274c78 0 130 18 224 75l10 -7l-10 -36c-90 -62 -161 -85 -257 -85c-191 0 -298 108 -298 302'], + 0xE003: [692,3,777,28,741,'316 -3c-34 0 -105 3 -140 3h-55l-93 -3l5 26c23 6 48 8 53 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-53 2l3 28c101 -3 104 -3 113 -3h10l204 3c95 1 180 -17 226 -50c61 -43 91 -113 91 -211c0 -166 -96 -317 -252 -397c-52 -26 -101 -37 -173 -37zM384 655 c-35 0 -93 -5 -116 -5l-96 -557c-3 -18 -4 -25 -4 -37c68 -10 117 -15 161 -15c220 0 320 184 320 374c0 164 -83 240 -265 240'], + 0xE004: [692,3,610,30,570,'221 334l-50 -288c69 -6 96 -7 137 -7c54 0 127 5 147 9c22 5 31 17 41 53l16 60h27l-5 -26c-9 -49 -14 -79 -16 -99l-4 -36l-33 -1c-33 -1 -58 -2 -72 -2l-225 3c-20 0 -82 -1 -113 -2l-41 -1l5 26c44 7 56 14 60 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-54 2 l3 28l45 -1c10 0 184 -2 193 -1l120 1c24 1 35 1 38 1c18 0 48 -1 69 -3c-11 -38 -18 -88 -21 -152h-24l-8 89c-1 15 -42 24 -104 24c-22 0 -105 -3 -137 -4l-47 -270h37c78 0 138 2 219 6l4 -7l-19 -45l-132 4h-117'], + 0xE005: [692,3,555,0,548,'286 646h-17c-5 -11 -6 -16 -9 -32l-46 -271h37c78 0 138 2 219 6l4 -7l-19 -45l-26 1c-48 2 -79 3 -106 3h-117l-36 -223c-1 -4 -2 -15 -2 -21c0 -20 9 -28 36 -29l64 -3l-3 -28l-52 1c-39 1 -68 2 -86 2c-21 0 -53 -1 -93 -2l-34 -1l4 28l36 3c41 4 41 5 58 97l75 434 c5 30 9 62 9 76c0 17 -11 26 -35 27l-56 2l3 28l49 -1c38 -1 78 -2 103 -2h29l165 2l41 1c17 0 45 -1 67 -3c-11 -38 -18 -89 -21 -152h-24l-8 89c-1 15 -41 24 -103 24'], + 0xE006: [706,18,721,50,694,'434 653c-237 0 -296 -210 -296 -356c0 -177 86 -270 252 -270c54 0 93 9 138 33c5 24 25 137 25 152c0 24 -9 28 -84 32l-34 2l5 28c42 -4 78 -5 129 -5s86 1 125 5l-2 -28l-32 -6c-13 -2 -25 -12 -27 -21c-1 -3 -5 -26 -25 -182c-49 -31 -196 -58 -253 -55 c-196 0 -305 105 -305 292c0 150 62 274 179 358c72 51 145 74 237 74c69 0 126 -11 209 -41c-14 -46 -22 -89 -27 -146h-27v84c-56 36 -110 50 -187 50'], + 0xE007: [692,3,777,-3,800,'221 385h370l30 174c5 30 9 62 9 76c0 18 -11 26 -35 27l-48 2l3 28l63 -2c44 -1 65 -1 80 -1l91 3h16l-3 -28l-36 -3c-38 -4 -44 -9 -51 -48l-92 -520c-3 -17 -4 -26 -4 -35c0 -21 10 -29 36 -30l58 -3l-3 -28l-42 1c-43 1 -74 2 -90 2c-11 0 -41 -1 -85 -2l-56 -1l4 28 l50 3c22 2 33 6 37 14c5 6 12 34 21 83l40 215l-61 1c-63 1 -104 2 -123 2s-61 -1 -123 -2l-61 -1l-42 -247c-3 -19 -4 -26 -4 -35c0 -21 9 -28 36 -30l49 -3l-3 -28h-26l-97 3c-19 0 -42 -1 -90 -2l-42 -1l4 28l41 3c40 4 41 5 58 97l74 434c5 31 9 62 9 76 c0 18 -11 26 -35 27l-47 2l3 28l64 -2c43 -1 61 -1 77 -1l90 3h24l-3 -28l-42 -3c-37 -3 -44 -9 -51 -48'], + 0xE008: [692,3,332,7,354,'103 664l3 28l64 -2c43 -1 61 -1 78 -1l106 3l-3 -28l-35 -3c-39 -4 -44 -9 -51 -48l-89 -535c-1 -4 -2 -15 -2 -21c0 -20 10 -27 36 -29l52 -3l-3 -28h-32l-94 3l-94 -3h-32l3 28l36 3c40 3 43 8 58 97l72 434c3 17 9 70 9 77c0 17 -11 25 -35 26'], + 0xE009: [692,206,332,-35,358,'355 664l-42 -3c-38 -3 -45 -10 -51 -48l-85 -559c-34 -232 -139 -260 -174 -260c-12 0 -24 3 -35 10l-3 26c8 -3 17 -4 29 -4c47 0 77 50 92 153l95 643c1 5 1 8 1 13c0 18 -11 26 -35 27l-47 2l3 28l64 -2c43 -1 61 -1 77 -1l114 3'], + 0xE00A: [692,3,666,13,683,'371 664l-42 -3c-37 -3 -44 -10 -51 -48l-45 -260c64 50 233 216 277 261c28 28 38 41 38 49v29l20 -1c21 -1 37 -2 47 -2c8 0 24 1 45 2l23 1v-27h-21c-17 0 -38 -10 -54 -25l-292 -273l246 -302c21 -26 41 -38 64 -38h20v-30c-26 1 -32 2 -68 3l-69 -3 c-105 143 -128 172 -278 343l-43 -262c-1 -4 -2 -15 -2 -21c0 -20 9 -27 36 -29l49 -3l-3 -28h-26l-97 3c-19 0 -42 -1 -90 -2l-42 -1l4 28l41 3c40 4 41 5 58 97l73 434c6 33 9 62 9 76c0 18 -11 26 -35 27l-47 2l3 28l64 -2c43 -1 61 -1 77 -1l90 3h24'], + 0xE00B: [692,3,555,16,523,'349 664l-42 -3c-37 -3 -44 -10 -51 -48c0 -8 -91 -549 -94 -567c66 -6 93 -7 142 -7c67 0 131 5 144 10c9 5 18 22 27 54l17 62h31c-13 -62 -24 -140 -23 -165l-33 -1l-297 1c-20 0 -82 -1 -113 -2l-41 -1l5 26c44 7 56 14 60 32l95 580c0 18 -11 26 -35 27l-47 2l3 28 l64 -2c43 -1 61 -1 77 -1l114 3'], + 0xE00C: [698,18,953,-19,950,'937 664l-38 -2c-29 -2 -44 -12 -46 -31l-41 -531l-1 -37c0 -21 18 -32 54 -35l37 -3l-3 -28l-46 1c-41 1 -71 2 -87 2c-15 0 -45 -1 -87 -2l-47 -1l3 28l31 3c51 4 63 11 67 39l37 520l-52 -87l-239 -414l-57 -104h-23l-149 578l-124 -464c-5 -18 -7 -31 -7 -41 c0 -15 17 -25 49 -27l38 -3l-3 -28l-35 1c-35 1 -61 2 -75 2s-39 -1 -73 -2l-39 -1l3 26c55 5 70 18 86 70c2 7 148 523 148 529c0 26 -18 36 -70 40l-26 2l3 28c21 -2 144 -6 167 0l150 -578l246 422l85 156c2 9 149 7 177 3'], + 0xE00D: [692,11,777,2,802,'582 103c2 13 85 528 85 535c0 16 -10 23 -36 24l-47 2l5 28l213 -1l-3 -27l-37 -2c-37 -3 -39 -7 -60 -120l-94 -553h-50l-338 577l-80 -464c-2 -11 -3 -22 -3 -30c0 -33 9 -41 49 -44l42 -3l-5 -28c-97 3 -98 3 -110 3l-111 -3l5 28l31 3c36 4 42 12 54 74l93 504 c-1 9 -35 54 -80 56l-35 2l5 28h162'], + 0xE00E: [706,18,777,53,748,'748 425c0 -218 -153 -443 -425 -443c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM660 409c0 201 -111 255 -227 255c-234 0 -292 -239 -292 -387c0 -167 75 -253 219 -253c211 0 300 197 300 385'], + 0xE00F: [692,3,610,9,594,'105 664l3 28h304c119 3 182 -50 182 -151c0 -136 -110 -253 -239 -253c-29 0 -49 5 -86 23l-2 31c37 -14 57 -19 79 -19c88 0 160 88 160 196c0 93 -49 137 -151 137c-19 0 -35 -2 -71 -8l-98 -555c-3 -19 -4 -26 -4 -35c0 -21 10 -29 36 -30l65 -3l-3 -28l-53 1 c-40 1 -69 2 -86 2c-18 0 -49 -1 -90 -2l-42 -1l4 28l41 3c40 3 41 6 58 97l83 510c0 18 -11 26 -35 27'], + 0xE010: [706,201,777,53,748,'151 -172l-24 13c-1 8 -1 15 -1 17c0 76 51 127 125 127c23 0 41 -4 66 -14l236 -96c26 -10 45 -15 62 -15c40 0 62 25 68 79h25c-10 -97 -46 -140 -121 -140c-40 0 -58 6 -118 37l-145 76c-39 21 -67 29 -96 29c-53 0 -77 -36 -77 -113zM748 425 c0 -218 -153 -443 -425 -443c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM660 409c0 201 -111 255 -227 255c-234 0 -292 -239 -292 -387c0 -167 75 -253 219 -253c211 0 300 197 300 385'], + 0xE011: [691,3,666,9,639,'105 664l3 27h301c111 2 175 -45 175 -131c0 -61 -31 -116 -89 -158c-36 -26 -65 -38 -120 -48l184 -275c29 -42 40 -50 80 -55v-27h-13c-19 2 -33 3 -34 3l-85 -3c-75 127 -106 175 -240 370l3 11h44c104 0 182 70 182 165c0 74 -46 113 -133 113c-27 0 -47 -2 -76 -8 l-101 -555c-3 -17 -4 -26 -4 -35c0 -20 9 -28 36 -30l49 -3l-3 -28h-26l-97 3c-24 0 -43 0 -90 -2l-42 -1l4 28l41 3c40 4 42 6 58 97l75 434c5 30 9 62 9 76c0 18 -11 26 -35 27'], + 0xE012: [706,18,555,42,506,'108 471c0 143 142 235 266 235c47 0 87 -10 132 -34c-14 -43 -21 -81 -25 -135h-30v76c-30 32 -63 45 -112 45c-92 0 -159 -63 -159 -150c0 -66 30 -103 96 -117l65 -14c101 -22 144 -64 144 -143c0 -135 -133 -252 -288 -252c-53 0 -106 13 -155 38c11 52 18 97 24 152 h30v-99c44 -31 82 -43 136 -43c103 0 174 66 174 161c0 57 -27 92 -81 105l-95 23c-84 20 -122 67 -122 152'], + 0xE013: [692,3,610,53,635,'390 646l-94 -553c-3 -19 -4 -26 -4 -35c0 -21 10 -29 36 -30l59 -3l-3 -28l-44 1c-39 1 -70 2 -89 2c-16 0 -45 -1 -85 -2l-57 -1l4 28l51 3c40 3 42 6 58 97l86 521h-112c-37 0 -75 -6 -81 -13s-13 -23 -18 -45l-15 -60h-29l18 164l95 -1c86 -1 150 -2 187 -2 c35 0 103 1 191 2l91 1l-27 -164h-28l4 64c1 10 -1 29 -4 37c-3 12 -39 17 -117 17h-73'], + 0xE014: [692,19,777,88,798,'795 664l-36 -3c-38 -4 -45 -10 -51 -48l-85 -507c-5 -36 -6 -41 -6 -56c0 -13 9 -19 32 -21l60 -4l-5 -28l-32 1c-32 1 -54 2 -58 2l-62 -3h-22l-5 5c13 55 19 81 27 127c-52 -60 -84 -85 -143 -114c-48 -24 -89 -34 -133 -34c-112 0 -179 62 -179 163c0 16 2 41 6 62 l64 375c4 21 7 49 7 58c0 17 -8 22 -34 23l-52 2l3 28l32 -1c28 -1 48 -2 58 -2c11 0 31 1 58 2l31 1l-88 -477c-5 -28 -7 -44 -7 -61c0 -70 54 -115 139 -115c38 0 75 9 113 29c51 25 81 51 129 109l71 445c1 4 1 7 1 12c0 19 -11 27 -35 28l-48 2l3 28l63 -2 c44 -1 65 -1 80 -1l91 3h16'], + 0xE015: [692,8,721,75,754,'310 96l291 492c12 20 16 31 16 42c0 19 -19 29 -57 32l-26 2v28l46 -1c41 -1 68 -2 78 -2c16 0 39 1 66 2l30 1v-28l-18 -2c-29 -4 -37 -11 -62 -51l-378 -619h-49l-88 622c-7 37 -15 45 -59 48l-25 2v28l41 -1c37 -1 65 -2 83 -2s46 1 83 2l41 1v-28l-42 -2 c-40 -1 -44 -16 -42 -38'], + 0xE016: [700,8,943,71,980,'303 692v-28l-37 -2c-32 -2 -45 -16 -45 -46l31 -484l224 456c18 36 40 85 52 112h18l158 -572l147 462c6 18 9 36 9 49c0 14 -12 22 -41 23l-39 2l5 28l33 -1c30 -1 52 -2 65 -2c14 0 36 1 65 2l32 1v-28l-20 -2c-22 -2 -37 -14 -43 -31l-171 -507 c-13 -39 -21 -66 -31 -106l-7 -26h-51c-13 61 -24 110 -39 162l-112 392l-224 -444c-18 -36 -36 -75 -50 -110h-50c-1 52 -3 100 -8 166l-32 430c-4 57 -12 68 -53 74l-18 2v28l39 -1c38 -1 60 -2 72 -2c20 0 44 0 82 2'], + 0xE017: [692,3,721,20,734,'416 25l38 3l16 1c25 0 32 3 32 11c0 9 -5 22 -14 40l-119 226l-182 -231c-6 -8 -10 -17 -10 -25c0 -12 17 -18 55 -22l32 -3v-28c-43 2 -83 3 -119 3c-35 0 -76 -1 -125 -3v28l28 3c24 3 47 15 62 33l238 282l-146 270c-20 37 -32 44 -81 49l-26 2v28l45 -1 c41 -1 71 -2 88 -2c16 0 46 1 87 2l46 1v-28l-37 -2c-30 -2 -43 -8 -43 -20c0 -8 5 -20 14 -38l104 -199l161 196c18 22 23 31 23 42c0 12 -13 17 -45 19l-33 2v28c89 -3 103 -3 115 -3l114 3v-28l-28 -2c-26 -3 -35 -9 -65 -42l-221 -252l171 -307c14 -24 27 -31 68 -34 l25 -2v-28c-48 2 -93 3 -133 3c-42 0 -87 -1 -135 -3v28'], + 0xE018: [705,3,666,52,675,'52 647l15 11c23 14 61 44 64 47c92 -1 140 -89 215 -395c28 74 67 142 128 226c75 100 128 142 201 161l-6 -71c-59 -10 -101 -40 -159 -114c-74 -93 -139 -211 -148 -266l-26 -168c-1 -5 -2 -15 -2 -21c0 -20 9 -27 36 -29l49 -3l-3 -28h-26l-97 3c-16 0 -39 -1 -86 -2 l-53 -1l4 28l48 3c40 3 41 6 58 97l21 126c1 3 1 6 1 6c1 16 -38 153 -62 220c-41 112 -77 158 -124 158c-11 0 -22 -3 -45 -12'], + 0xE019: [692,3,666,20,637,'20 -3v22l502 633h-180c-86 0 -124 -3 -180 -13l-6 -20c-12 -39 -18 -64 -21 -86h-26c8 73 11 112 11 159l329 -3h26l162 3v-20l-504 -633h281c44 0 82 4 127 13l32 90l7 22h26c-13 -69 -21 -126 -23 -167l-66 1c-61 1 -178 2 -256 2c-87 0 -145 -1 -241 -3'], + 0xE01A: [482,11,443,4,406,'271 204c-116 -163 -196 -215 -233 -215c-19 0 -34 34 -34 78c0 78 31 198 75 287c25 49 58 79 120 110c27 13 47 18 75 18c27 0 44 -4 85 -19l33 18l10 -9l-92 -379c-1 -3 -1 -6 -1 -11c0 -14 6 -23 15 -23c22 0 51 27 75 47l7 -21c-82 -68 -123 -94 -146 -94 c-15 0 -24 13 -24 35c0 16 2 34 6 51zM319 414c-44 15 -62 19 -85 19c-48 0 -71 -18 -95 -73c-35 -80 -63 -197 -63 -261c0 -27 6 -40 18 -40c32 0 93 58 150 142c34 52 53 104 75 213'], + 0xE01B: [733,11,462,37,433,'235 722l-86 -398c62 79 95 109 146 136c28 14 58 22 82 22c15 0 28 -5 35 -14c12 -15 21 -54 21 -92c0 -132 -66 -269 -162 -337c-43 -31 -94 -50 -131 -50c-55 0 -103 33 -103 72c0 3 0 7 1 10l101 551c1 6 2 17 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42z M322 424c-29 0 -81 -29 -114 -63c-81 -85 -96 -226 -96 -260c0 -42 25 -65 71 -65c54 0 94 32 127 101c30 65 51 151 51 215c0 49 -13 72 -39 72'], + 0xE01C: [482,11,406,25,389,'342 330v60c0 24 -36 43 -81 43c-31 0 -55 -8 -76 -24c-49 -38 -84 -142 -84 -250c0 -79 29 -119 85 -119c35 0 73 17 145 65l15 10l8 -20l-50 -41c-55 -45 -103 -65 -157 -65c-80 0 -122 51 -122 147c0 105 39 216 93 264c57 63 130 83 175 82c37 0 72 -9 96 -24 c-9 -26 -16 -63 -24 -128h-23'], + 0xE01D: [733,11,499,17,483,'483 722l-126 -594c-7 -29 -8 -38 -8 -46c0 -14 6 -23 14 -23c9 0 25 7 39 17l44 31l10 -19l-81 -60c-34 -25 -58 -37 -75 -37s-26 12 -26 33c0 26 5 58 16 102l23 91c-67 -101 -100 -140 -154 -184c-34 -27 -71 -44 -98 -44c-29 0 -44 32 -44 97c0 84 20 179 51 237 c46 87 140 159 209 159c25 0 52 -5 82 -14l28 154c1 7 2 16 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42zM114 59c45 0 186 112 223 292l12 59c-33 17 -62 23 -106 23c-27 0 -46 -5 -59 -15c-49 -38 -95 -194 -95 -320c0 -25 9 -39 25 -39'], + 0xE01E: [483,11,388,15,374,'328 111l8 -19c-92 -75 -148 -103 -205 -103c-72 0 -116 46 -116 124c0 67 30 186 60 236c37 74 147 147 215 133c50 0 84 -31 84 -78c0 -62 -39 -108 -124 -145c-25 -11 -134 -41 -151 -45c-5 -29 -8 -56 -8 -81c0 -60 29 -97 76 -97c36 0 84 20 137 58zM113 274l-9 -37 c45 10 81 21 109 35c52 25 87 72 87 116c0 32 -19 52 -48 52c-24 0 -55 -12 -73 -28c-29 -26 -49 -69 -66 -138'], + 0xE01F: [733,276,550,-25,550,'345 437c63 0 62 2 91 9l4 -7c-6 -14 -13 -37 -17 -56h-104c-84 -401 -104 -497 -175 -581c-39 -47 -93 -78 -134 -78c-11 0 -26 3 -35 8c5 9 19 57 23 80l14 4c18 -22 29 -29 52 -29c36 0 66 31 84 90c22 69 59 255 89 450l9 56h-81l5 22c25 9 45 17 86 37l15 79 c11 57 23 87 45 109c23 24 105 85 129 96c8 4 24 7 35 7c23 0 54 -6 70 -13l-5 -15c-8 -20 -18 -51 -23 -67l-10 -4c-15 24 -42 39 -72 39c-46 0 -74 -38 -90 -124l-21 -112h16'], + 0xE020: [482,276,499,-37,498,'275 482c94 0 118 -57 118 -58c54 0 74 2 102 9l3 -6l-9 -45c-23 -3 -33 -4 -50 -4c-9 0 -17 0 -34 2c1 -4 4 -23 4 -38c0 -89 -71 -172 -169 -196c-12 -18 -27 -32 -27 -46c0 -19 13 -38 47 -65l60 -49c43 -35 64 -71 64 -107c0 -83 -113 -155 -242 -155 c-109 0 -179 46 -179 117c0 111 128 155 197 178c-14 12 -21 23 -21 33c0 14 11 32 27 47l41 38c-11 -1 -22 -1 -30 -1c-77 0 -122 46 -122 123c0 160 153 223 220 223zM176 1c-39 -12 -149 -44 -149 -146c0 -61 57 -103 139 -103c83 0 152 42 152 94c0 33 -19 60 -65 96z M250 448c-73 0 -124 -65 -124 -160c0 -79 32 -120 93 -120c70 0 118 70 118 173c0 71 -29 107 -87 107'], + 0xE021: [733,9,499,10,471,'236 722l-96 -447l4 -2c28 35 54 70 87 101c68 63 145 108 180 108c26 0 32 -18 32 -35c0 -24 -5 -49 -11 -75l-64 -256c-4 -15 -7 -28 -7 -40c0 -11 6 -20 13 -20c12 0 38 15 61 30l26 17l10 -18c-59 -44 -127 -94 -159 -94c-21 0 -31 15 -31 40c0 24 7 54 13 76l51 196 c10 39 15 72 15 90c0 14 -11 21 -22 21c-42 0 -145 -97 -190 -178c-40 -72 -54 -172 -62 -229l-69 -16l-7 11c26 78 68 270 88 386l42 234c2 10 2 19 2 25c0 20 -16 23 -34 23h-48l4 21c74 6 115 20 160 42'], + 0xE022: [712,9,277,34,264,'34 388l28 20c75 53 112 74 134 74c16 0 25 -9 25 -26c0 -8 -2 -19 -6 -36l-77 -304c-5 -21 -7 -30 -7 -40s6 -20 13 -20c9 0 32 11 61 30l26 17l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 39c0 19 5 46 13 77l66 240c4 14 8 37 8 44c0 13 -8 23 -18 23 c-7 0 -10 -2 -47 -25l-32 -21zM228 712c21 0 36 -17 36 -41c0 -38 -24 -67 -55 -67c-24 0 -39 16 -39 41c0 34 29 67 58 67'], + 0xE023: [712,276,277,-70,265,'138 351c0 5 7 31 7 40c0 13 -8 23 -18 23c-7 0 -10 -2 -47 -25l-32 -21l-7 20l28 20c75 53 112 74 134 74c16 0 25 -9 25 -25c0 -6 -2 -19 -6 -37l-76 -350c-28 -127 -42 -177 -62 -222c-36 -81 -76 -124 -116 -124c-15 0 -28 2 -38 7l8 57c21 -13 39 -19 53 -19 c18 0 36 35 47 87zM229 712c21 0 36 -17 36 -41c0 -38 -24 -67 -55 -67c-24 0 -39 16 -39 41c0 34 29 67 58 67'], + 0xE024: [733,9,468,14,455,'240 722l-107 -492c125 175 208 252 274 252c12 0 30 -3 48 -9l-17 -63c-17 4 -28 6 -36 6c-50 0 -96 -25 -157 -86l-14 -14c39 -123 61 -177 96 -241c9 -17 16 -23 26 -23c8 0 15 2 29 10l43 24l8 -19l-46 -32c-44 -31 -68 -44 -81 -44c-25 0 -57 68 -126 268 c-34 -34 -58 -79 -67 -127l-23 -124l-67 -17l-9 10c52 209 68 278 82 353l48 268c1 7 2 16 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42'], + 0xE025: [733,9,277,36,251,'251 722l-131 -618c-3 -15 -4 -22 -4 -28c0 -10 6 -20 13 -20c10 0 32 11 61 30l26 17l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 21 6 51 19 101c15 50 88 435 99 490c3 18 3 23 3 26c0 15 -10 22 -34 22h-48l4 21c72 7 108 16 160 42'], + 0xE026: [482,9,777,24,740,'730 103l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 53 16 74 56 233c22 87 25 101 25 125c0 16 -5 25 -13 25c-32 0 -82 -35 -137 -96c-44 -49 -78 -124 -94 -205l-21 -107l-69 -15l-5 11l16 67c41 175 63 289 63 324c0 13 -4 21 -11 21 c-28 0 -73 -30 -115 -76c-55 -60 -82 -119 -106 -230l-22 -102l-68 -15l-3 11c41 143 82 336 82 387c0 15 -7 25 -18 25c-7 0 -42 -23 -79 -46l-7 20l28 20c74 53 112 74 133 74c14 0 23 -12 23 -31c0 -12 -2 -27 -6 -43l-33 -133c65 88 85 109 129 143c55 42 101 64 131 64 c16 0 26 -12 26 -31c0 -7 -3 -22 -7 -42l-30 -137c49 69 84 104 147 149c61 43 99 61 128 61c16 0 26 -11 26 -28c0 -8 -3 -24 -7 -41l-75 -297c-5 -21 -7 -30 -7 -40c0 -11 6 -20 13 -20c10 0 32 11 61 30'], + 0xE027: [482,9,555,24,514,'24 388l28 20c73 52 112 74 133 74c15 0 23 -12 23 -33c0 -11 -2 -23 -6 -41l-38 -161c52 73 80 107 118 142c59 55 128 93 170 93c20 0 31 -13 31 -36c0 -17 -4 -45 -11 -74l-66 -276c-1 -4 -2 -15 -2 -20c0 -11 6 -20 13 -20c10 0 32 11 61 30l26 17l10 -18 c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 16 4 39 13 76l52 212c8 32 11 53 11 71c0 15 -6 24 -17 24c-45 0 -120 -62 -174 -146c-46 -69 -67 -134 -86 -260c-22 -4 -45 -10 -70 -17l-7 11c41 143 82 336 82 387c0 15 -7 25 -18 25c-7 0 -10 -2 -47 -25l-32 -21'], + 0xE028: [482,11,443,17,411,'17 152c0 230 157 330 261 330c83 0 133 -57 133 -151c0 -101 -44 -215 -106 -274c-45 -42 -105 -68 -160 -68c-83 0 -128 57 -128 163zM241 444c-24 0 -47 -6 -60 -17c-49 -40 -88 -163 -88 -276c0 -79 34 -124 92 -124c31 0 57 12 75 33c44 53 75 159 75 255 c0 84 -33 129 -94 129'], + 0xE029: [482,276,499,-7,465,'176 -11c-18 0 -40 7 -61 14l-42 -262c-32 -5 -52 -10 -73 -17l-7 6l8 37c20 90 39 181 49 241l58 343c2 10 4 30 4 38c0 14 -7 23 -17 23c-9 0 -20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 133 74c14 0 22 -11 22 -30c0 -12 -2 -27 -5 -44l-24 -119 c36 59 56 85 97 120c52 47 105 73 147 73c36 0 59 -44 59 -111c0 -75 -34 -185 -75 -246c-43 -63 -158 -136 -214 -136zM143 165l-18 -106c26 -16 51 -23 82 -23c41 0 73 15 93 44c53 76 93 195 93 276c0 46 -12 68 -38 68c-83 0 -190 -131 -212 -259'], + 0xE02A: [482,276,462,24,432,'385 458l33 22l14 -6c-10 -31 -16 -57 -27 -118l-86 -456c-9 -50 -15 -105 -19 -159c-24 -3 -55 -9 -86 -17l-9 14c12 13 22 33 27 57l76 414c-49 -88 -128 -158 -175 -190c-32 -22 -51 -30 -73 -30c-24 0 -36 30 -36 89c0 103 39 249 79 296c18 20 106 108 181 108 c29 0 58 -7 101 -24zM118 59c42 0 183 115 212 252l21 95c-48 21 -69 27 -97 27c-32 0 -61 -9 -73 -24c-42 -50 -85 -200 -85 -296c0 -33 8 -54 22 -54'], + 0xE02B: [482,9,388,26,384,'368 365h-14c-11 14 -21 19 -36 19c-22 0 -49 -21 -83 -65c-44 -57 -67 -110 -85 -193l-26 -120l-13 -2c-23 -5 -39 -8 -54 -13l-10 7c40 128 83 334 83 392c0 13 -7 22 -17 22c-9 0 -20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 133 74c15 0 23 -12 23 -32 c0 -12 -2 -25 -6 -42l-32 -152c16 35 55 95 94 151c36 51 67 75 98 75c5 0 9 -1 20 -6c-8 -41 -13 -73 -16 -111'], + 0xE02C: [482,11,388,9,345,'31 148h25v-84c28 -24 59 -35 94 -35c71 0 117 44 117 109c0 39 -16 57 -60 65l-63 12c-66 13 -97 45 -97 101c0 36 11 61 37 88c48 48 109 78 161 78c33 0 61 -8 100 -27c-11 -51 -15 -78 -19 -113h-23v55c-16 27 -54 45 -95 45c-57 0 -102 -41 -102 -94 c0 -41 19 -58 79 -69l43 -8c74 -14 106 -43 106 -97c0 -50 -21 -87 -72 -127s-97 -58 -146 -58c-35 0 -69 9 -107 27c11 46 17 81 22 132'], + 0xE02D: [646,9,332,41,310,'125 390h-84l2 13c18 5 44 16 88 37l25 170c31 12 58 24 78 36l11 -15c-18 -54 -29 -103 -45 -197c38 0 72 2 110 6l-11 -50h-107l-13 -62c-29 -145 -43 -226 -43 -252c0 -12 5 -20 14 -20c11 0 31 10 60 30l45 31l10 -18l-31 -25c-78 -63 -113 -83 -148 -83 c-19 0 -30 15 -30 40c0 30 12 68 13 76'], + 0xE02E: [482,11,555,32,512,'492 473c-15 -57 -90 -361 -90 -397c0 -10 5 -17 13 -17c11 0 37 11 61 27l26 17l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 15 4 42 11 66l37 142c-84 -138 -205 -250 -268 -250c-20 0 -35 18 -35 41c0 14 2 38 4 47l63 297c1 4 2 14 2 18 c0 11 -8 20 -17 20s-20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 132 74c14 0 23 -12 23 -31c0 -13 -2 -27 -5 -43l-57 -271c-5 -25 -7 -38 -7 -52c0 -17 5 -26 13 -26c40 0 118 71 177 162c31 47 56 115 71 193l10 51l68 17'], + 0xE02F: [482,11,499,21,477,'166 420c-38 0 -22 2 -55 2c-24 0 -44 -11 -51 -28l-17 -42h-22c13 55 24 91 38 118c11 5 20 7 32 7c1 0 6 0 12 -1l12 -1c29 -3 71 -5 99 -5s41 3 61 12l10 -18c-98 -122 -137 -213 -137 -318c0 -65 31 -107 80 -107c88 0 185 163 185 311c0 40 -16 63 -43 63 c-9 0 -18 -3 -27 -9l-11 19l50 47c8 8 20 12 33 12c36 0 62 -41 62 -98c0 -148 -153 -395 -291 -395c-64 0 -110 55 -110 132c0 100 42 183 153 303c-26 -3 -42 -4 -63 -4'], + 0xE030: [482,11,721,21,699,'167 420c-39 0 -22 2 -56 2c-24 0 -44 -11 -51 -28l-17 -42h-22c13 55 24 91 38 118c11 5 20 7 32 7c1 0 6 0 12 -1l12 -1c29 -3 71 -5 99 -5s41 3 61 12l10 -18c-99 -112 -140 -209 -140 -328c0 -58 23 -97 58 -97c30 0 68 41 108 116c29 54 43 94 55 156l29 149l74 22 l7 -8l-52 -184c-12 -43 -21 -109 -21 -156c0 -55 21 -95 50 -95c85 0 182 166 182 311c0 40 -16 63 -43 63c-9 0 -18 -3 -27 -9l-11 19l50 47c8 8 20 12 33 12c36 0 62 -41 62 -98c0 -146 -153 -395 -287 -395c-45 0 -74 43 -74 106c0 23 3 48 12 92 c-74 -143 -126 -198 -190 -198c-53 0 -88 55 -88 137c0 140 99 224 154 298c-25 -3 -38 -4 -59 -4'], + 0xE031: [482,11,499,9,484,'9 1c4 26 12 52 12 87l20 3l11 -28c2 -5 13 -9 28 -9c28 0 62 32 105 99l40 62l-11 62c-17 98 -39 139 -72 139c-19 0 -39 -14 -69 -48l-17 10l58 83c9 13 31 21 57 21c59 0 86 -36 98 -135l6 -48l37 55c62 92 102 128 142 128c9 0 18 -3 30 -10l-15 -85l-14 -4 c-5 15 -17 23 -33 23c-31 0 -58 -23 -105 -88l-35 -49l18 -101c5 -29 16 -66 25 -85c10 -20 23 -30 38 -30c16 0 41 15 77 45l9 -19l-49 -44c-32 -29 -64 -46 -86 -46c-36 0 -59 39 -72 124l-11 69l-76 -117c-31 -47 -70 -76 -103 -76c-12 0 -28 4 -43 12'], + 0xE032: [482,276,499,-8,490,'-7 -180l48 34l10 -4c-1 -9 -2 -17 -2 -22c0 -35 27 -62 62 -62c70 0 120 73 171 250l49 171c-75 -113 -159 -198 -196 -198c-25 0 -43 29 -43 71l1 40l17 243c1 8 1 14 1 15c0 33 -8 52 -22 52c-9 0 -20 -9 -25 -12l-50 -30l-11 18l82 56c48 33 62 40 75 40 c17 0 24 -18 24 -63c0 -28 -2 -66 -4 -97l-16 -207c-1 -25 8 -48 20 -48c22 0 71 44 106 95c33 49 68 122 80 169l35 132c22 2 45 8 74 19l11 -9l-141 -440c-59 -185 -169 -309 -275 -309c-45 0 -82 35 -82 78c0 5 0 11 1 18'], + 0xE033: [482,11,443,-1,416,'322 -11c-69 0 -160 37 -223 37c-35 0 -62 -9 -91 -32l-9 27l353 400c-33 -17 -57 -23 -93 -23c-53 0 -85 15 -126 15c-13 0 -22 -1 -39 -5l-30 -58h-21l32 122c24 7 44 10 61 10c14 0 34 -4 62 -11l18 -5c48 -13 100 -21 134 -21c14 0 24 4 34 14l23 23l9 -9l-6 -32 l-339 -382c36 15 63 21 95 21c19 0 53 -5 86 -12l18 -4c21 -5 37 -7 49 -7c21 0 33 7 39 25l22 60h22c-11 -47 -19 -81 -30 -143c-29 -8 -38 -10 -50 -10'], + 0xE034: [705,3,751,28,724,'567 55c0 14 -4 29 -4 31v3l-25 188h-246l-102 -175c-19 -33 -26 -47 -26 -55c0 -9 15 -18 31 -19l52 -3v-28c-86 3 -88 3 -107 3c-20 0 -20 0 -112 -3v30l20 5c34 8 52 24 88 80l373 593h46l87 -625c8 -45 9 -45 56 -52l26 -3v-28c-102 3 -102 3 -122 3s-20 0 -122 -3 v28l44 3c28 2 43 11 43 27zM496 601l-179 -288h216'], + 0xE035: [692,6,610,26,559,'543 227c0 -140 -151 -233 -266 -233c-8 0 -21 1 -40 2l-20 1l-37 1c-26 1 -52 2 -63 2c-12 0 -27 0 -54 -2l-37 -1l5 26c42 7 54 14 58 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-53 2l3 28l52 -1c49 -1 80 -2 99 -2c12 0 48 0 60 1l63 1c15 1 25 1 27 1 c100 0 158 -48 158 -130c0 -51 -23 -98 -69 -137c-31 -28 -56 -40 -113 -60c82 -12 166 -28 166 -138zM166 41c41 -3 62 -7 116 -7c100 0 173 74 173 177c0 87 -50 129 -153 129h-85zM352 655c-23 0 -64 -5 -80 -5l-49 -274h52c124 0 198 63 198 168c0 75 -40 111 -121 111'], + 0xE036: [706,18,687,45,651,'45 284c0 294 231 422 411 422c62 0 119 -12 195 -41c-14 -46 -22 -89 -27 -146h-27v84c-56 36 -108 50 -179 50c-228 0 -285 -206 -285 -344c0 -178 86 -274 243 -274c78 0 130 18 224 75l10 -7l-10 -36c-90 -62 -161 -85 -257 -85c-191 0 -298 108 -298 302'], + 0xE037: [692,3,777,28,741,'316 -3c-34 0 -105 3 -140 3h-55l-93 -3l5 26c23 6 48 8 53 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-53 2l3 28c101 -3 104 -3 113 -3h10l204 3c95 1 180 -17 226 -50c61 -43 91 -113 91 -211c0 -166 -96 -317 -252 -397c-52 -26 -101 -37 -173 -37zM384 655 c-35 0 -93 -5 -116 -5l-96 -557c-3 -18 -4 -25 -4 -37c68 -10 117 -15 161 -15c220 0 320 184 320 374c0 164 -83 240 -265 240'], + 0xE038: [692,3,610,30,570,'221 334l-50 -288c69 -6 96 -7 137 -7c54 0 127 5 147 9c22 5 31 17 41 53l16 60h27l-5 -26c-9 -49 -14 -79 -16 -99l-4 -36l-33 -1c-33 -1 -58 -2 -72 -2l-225 3c-20 0 -82 -1 -113 -2l-41 -1l5 26c44 7 56 14 60 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-54 2 l3 28l45 -1c10 0 184 -2 193 -1l120 1c24 1 35 1 38 1c18 0 48 -1 69 -3c-11 -38 -18 -88 -21 -152h-24l-8 89c-1 15 -42 24 -104 24c-22 0 -105 -3 -137 -4l-47 -270h37c78 0 138 2 219 6l4 -7l-19 -45l-132 4h-117'], + 0xE039: [692,3,555,0,548,'286 646h-17c-5 -11 -6 -16 -9 -32l-46 -271h37c78 0 138 2 219 6l4 -7l-19 -45l-26 1c-48 2 -79 3 -106 3h-117l-36 -223c-1 -4 -2 -15 -2 -21c0 -20 9 -28 36 -29l64 -3l-3 -28l-52 1c-39 1 -68 2 -86 2c-21 0 -53 -1 -93 -2l-34 -1l4 28l36 3c41 4 41 5 58 97l75 434 c5 30 9 62 9 76c0 17 -11 26 -35 27l-56 2l3 28l49 -1c38 -1 78 -2 103 -2h29l165 2l41 1c17 0 45 -1 67 -3c-11 -38 -18 -89 -21 -152h-24l-8 89c-1 15 -41 24 -103 24'], + 0xE03A: [706,18,721,50,694,'434 653c-237 0 -296 -210 -296 -356c0 -177 86 -270 252 -270c54 0 93 9 138 33c5 24 25 137 25 152c0 24 -9 28 -84 32l-34 2l5 28c42 -4 78 -5 129 -5s86 1 125 5l-2 -28l-32 -6c-13 -2 -25 -12 -27 -21c-1 -3 -5 -26 -25 -182c-49 -31 -196 -58 -253 -55 c-196 0 -305 105 -305 292c0 150 62 274 179 358c72 51 145 74 237 74c69 0 126 -11 209 -41c-14 -46 -22 -89 -27 -146h-27v84c-56 36 -110 50 -187 50'], + 0xE03B: [692,3,777,-3,800,'221 385h370l30 174c5 30 9 62 9 76c0 18 -11 26 -35 27l-48 2l3 28l63 -2c44 -1 65 -1 80 -1l91 3h16l-3 -28l-36 -3c-38 -4 -44 -9 -51 -48l-92 -520c-3 -17 -4 -26 -4 -35c0 -21 10 -29 36 -30l58 -3l-3 -28l-42 1c-43 1 -74 2 -90 2c-11 0 -41 -1 -85 -2l-56 -1l4 28 l50 3c22 2 33 6 37 14c5 6 12 34 21 83l40 215l-61 1c-63 1 -104 2 -123 2s-61 -1 -123 -2l-61 -1l-42 -247c-3 -19 -4 -26 -4 -35c0 -21 9 -28 36 -30l49 -3l-3 -28h-26l-97 3c-19 0 -42 -1 -90 -2l-42 -1l4 28l41 3c40 4 41 5 58 97l74 434c5 31 9 62 9 76 c0 18 -11 26 -35 27l-47 2l3 28l64 -2c43 -1 61 -1 77 -1l90 3h24l-3 -28l-42 -3c-37 -3 -44 -9 -51 -48'], + 0xE03C: [692,3,332,7,354,'103 664l3 28l64 -2c43 -1 61 -1 78 -1l106 3l-3 -28l-35 -3c-39 -4 -44 -9 -51 -48l-89 -535c-1 -4 -2 -15 -2 -21c0 -20 10 -27 36 -29l52 -3l-3 -28h-32l-94 3l-94 -3h-32l3 28l36 3c40 3 43 8 58 97l72 434c3 17 9 70 9 77c0 17 -11 25 -35 26'], + 0xE03D: [692,206,332,-35,358,'355 664l-42 -3c-38 -3 -45 -10 -51 -48l-85 -559c-34 -232 -139 -260 -174 -260c-12 0 -24 3 -35 10l-3 26c8 -3 17 -4 29 -4c47 0 77 50 92 153l95 643c1 5 1 8 1 13c0 18 -11 26 -35 27l-47 2l3 28l64 -2c43 -1 61 -1 77 -1l114 3'], + 0xE03E: [692,3,666,13,683,'371 664l-42 -3c-37 -3 -44 -10 -51 -48l-45 -260c64 50 233 216 277 261c28 28 38 41 38 49v29l20 -1c21 -1 37 -2 47 -2c8 0 24 1 45 2l23 1v-27h-21c-17 0 -38 -10 -54 -25l-292 -273l246 -302c21 -26 41 -38 64 -38h20v-30c-26 1 -32 2 -68 3l-69 -3 c-105 143 -128 172 -278 343l-43 -262c-1 -4 -2 -15 -2 -21c0 -20 9 -27 36 -29l49 -3l-3 -28h-26l-97 3c-19 0 -42 -1 -90 -2l-42 -1l4 28l41 3c40 4 41 5 58 97l73 434c6 33 9 62 9 76c0 18 -11 26 -35 27l-47 2l3 28l64 -2c43 -1 61 -1 77 -1l90 3h24'], + 0xE03F: [692,3,555,16,523,'349 664l-42 -3c-37 -3 -44 -10 -51 -48c0 -8 -91 -549 -94 -567c66 -6 93 -7 142 -7c67 0 131 5 144 10c9 5 18 22 27 54l17 62h31c-13 -62 -24 -140 -23 -165l-33 -1l-297 1c-20 0 -82 -1 -113 -2l-41 -1l5 26c44 7 56 14 60 32l95 580c0 18 -11 26 -35 27l-47 2l3 28 l64 -2c43 -1 61 -1 77 -1l114 3'], + 0xE040: [698,18,953,-19,950,'937 664l-38 -2c-29 -2 -44 -12 -46 -31l-41 -531l-1 -37c0 -21 18 -32 54 -35l37 -3l-3 -28l-46 1c-41 1 -71 2 -87 2c-15 0 -45 -1 -87 -2l-47 -1l3 28l31 3c51 4 63 11 67 39l37 520l-52 -87l-239 -414l-57 -104h-23l-149 578l-124 -464c-5 -18 -7 -31 -7 -41 c0 -15 17 -25 49 -27l38 -3l-3 -28l-35 1c-35 1 -61 2 -75 2s-39 -1 -73 -2l-39 -1l3 26c55 5 70 18 86 70c2 7 148 523 148 529c0 26 -18 36 -70 40l-26 2l3 28c21 -2 144 -6 167 0l150 -578l246 422l85 156c2 9 149 7 177 3'], + 0xE041: [692,11,777,2,802,'582 103c2 13 85 528 85 535c0 16 -10 23 -36 24l-47 2l5 28l213 -1l-3 -27l-37 -2c-37 -3 -39 -7 -60 -120l-94 -553h-50l-338 577l-80 -464c-2 -11 -3 -22 -3 -30c0 -33 9 -41 49 -44l42 -3l-5 -28c-97 3 -98 3 -110 3l-111 -3l5 28l31 3c36 4 42 12 54 74l93 504 c-1 9 -35 54 -80 56l-35 2l5 28h162'], + 0xE042: [706,18,777,53,748,'748 425c0 -218 -153 -443 -425 -443c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM660 409c0 201 -111 255 -227 255c-234 0 -292 -239 -292 -387c0 -167 75 -253 219 -253c211 0 300 197 300 385'], + 0xE043: [692,3,610,9,594,'105 664l3 28h304c119 3 182 -50 182 -151c0 -136 -110 -253 -239 -253c-29 0 -49 5 -86 23l-2 31c37 -14 57 -19 79 -19c88 0 160 88 160 196c0 93 -49 137 -151 137c-19 0 -35 -2 -71 -8l-98 -555c-3 -19 -4 -26 -4 -35c0 -21 10 -29 36 -30l65 -3l-3 -28l-53 1 c-40 1 -69 2 -86 2c-18 0 -49 -1 -90 -2l-42 -1l4 28l41 3c40 3 41 6 58 97l83 510c0 18 -11 26 -35 27'], + 0xE044: [706,201,777,53,748,'151 -172l-24 13c-1 8 -1 15 -1 17c0 76 51 127 125 127c23 0 41 -4 66 -14l236 -96c26 -10 45 -15 62 -15c40 0 62 25 68 79h25c-10 -97 -46 -140 -121 -140c-40 0 -58 6 -118 37l-145 76c-39 21 -67 29 -96 29c-53 0 -77 -36 -77 -113zM748 425 c0 -218 -153 -443 -425 -443c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM660 409c0 201 -111 255 -227 255c-234 0 -292 -239 -292 -387c0 -167 75 -253 219 -253c211 0 300 197 300 385'], + 0xE045: [691,3,666,9,639,'105 664l3 27h301c111 2 175 -45 175 -131c0 -61 -31 -116 -89 -158c-36 -26 -65 -38 -120 -48l184 -275c29 -42 40 -50 80 -55v-27h-13c-19 2 -33 3 -34 3l-85 -3c-75 127 -106 175 -240 370l3 11h44c104 0 182 70 182 165c0 74 -46 113 -133 113c-27 0 -47 -2 -76 -8 l-101 -555c-3 -17 -4 -26 -4 -35c0 -20 9 -28 36 -30l49 -3l-3 -28h-26l-97 3c-24 0 -43 0 -90 -2l-42 -1l4 28l41 3c40 4 42 6 58 97l75 434c5 30 9 62 9 76c0 18 -11 26 -35 27'], + 0xE046: [706,18,555,42,506,'108 471c0 143 142 235 266 235c47 0 87 -10 132 -34c-14 -43 -21 -81 -25 -135h-30v76c-30 32 -63 45 -112 45c-92 0 -159 -63 -159 -150c0 -66 30 -103 96 -117l65 -14c101 -22 144 -64 144 -143c0 -135 -133 -252 -288 -252c-53 0 -106 13 -155 38c11 52 18 97 24 152 h30v-99c44 -31 82 -43 136 -43c103 0 174 66 174 161c0 57 -27 92 -81 105l-95 23c-84 20 -122 67 -122 152'], + 0xE047: [692,3,610,53,635,'390 646l-94 -553c-3 -19 -4 -26 -4 -35c0 -21 10 -29 36 -30l59 -3l-3 -28l-44 1c-39 1 -70 2 -89 2c-16 0 -45 -1 -85 -2l-57 -1l4 28l51 3c40 3 42 6 58 97l86 521h-112c-37 0 -75 -6 -81 -13s-13 -23 -18 -45l-15 -60h-29l18 164l95 -1c86 -1 150 -2 187 -2 c35 0 103 1 191 2l91 1l-27 -164h-28l4 64c1 10 -1 29 -4 37c-3 12 -39 17 -117 17h-73'], + 0xE048: [692,19,777,88,798,'795 664l-36 -3c-38 -4 -45 -10 -51 -48l-85 -507c-5 -36 -6 -41 -6 -56c0 -13 9 -19 32 -21l60 -4l-5 -28l-32 1c-32 1 -54 2 -58 2l-62 -3h-22l-5 5c13 55 19 81 27 127c-52 -60 -84 -85 -143 -114c-48 -24 -89 -34 -133 -34c-112 0 -179 62 -179 163c0 16 2 41 6 62 l64 375c4 21 7 49 7 58c0 17 -8 22 -34 23l-52 2l3 28l32 -1c28 -1 48 -2 58 -2c11 0 31 1 58 2l31 1l-88 -477c-5 -28 -7 -44 -7 -61c0 -70 54 -115 139 -115c38 0 75 9 113 29c51 25 81 51 129 109l71 445c1 4 1 7 1 12c0 19 -11 27 -35 28l-48 2l3 28l63 -2 c44 -1 65 -1 80 -1l91 3h16'], + 0xE049: [692,8,721,75,754,'310 96l291 492c12 20 16 31 16 42c0 19 -19 29 -57 32l-26 2v28l46 -1c41 -1 68 -2 78 -2c16 0 39 1 66 2l30 1v-28l-18 -2c-29 -4 -37 -11 -62 -51l-378 -619h-49l-88 622c-7 37 -15 45 -59 48l-25 2v28l41 -1c37 -1 65 -2 83 -2s46 1 83 2l41 1v-28l-42 -2 c-40 -1 -44 -16 -42 -38'], + 0xE04A: [700,8,943,71,980,'303 692v-28l-37 -2c-32 -2 -45 -16 -45 -46l31 -484l224 456c18 36 40 85 52 112h18l158 -572l147 462c6 18 9 36 9 49c0 14 -12 22 -41 23l-39 2l5 28l33 -1c30 -1 52 -2 65 -2c14 0 36 1 65 2l32 1v-28l-20 -2c-22 -2 -37 -14 -43 -31l-171 -507 c-13 -39 -21 -66 -31 -106l-7 -26h-51c-13 61 -24 110 -39 162l-112 392l-224 -444c-18 -36 -36 -75 -50 -110h-50c-1 52 -3 100 -8 166l-32 430c-4 57 -12 68 -53 74l-18 2v28l39 -1c38 -1 60 -2 72 -2c20 0 44 0 82 2'], + 0xE04B: [692,3,721,20,734,'416 25l38 3l16 1c25 0 32 3 32 11c0 9 -5 22 -14 40l-119 226l-182 -231c-6 -8 -10 -17 -10 -25c0 -12 17 -18 55 -22l32 -3v-28c-43 2 -83 3 -119 3c-35 0 -76 -1 -125 -3v28l28 3c24 3 47 15 62 33l238 282l-146 270c-20 37 -32 44 -81 49l-26 2v28l45 -1 c41 -1 71 -2 88 -2c16 0 46 1 87 2l46 1v-28l-37 -2c-30 -2 -43 -8 -43 -20c0 -8 5 -20 14 -38l104 -199l161 196c18 22 23 31 23 42c0 12 -13 17 -45 19l-33 2v28c89 -3 103 -3 115 -3l114 3v-28l-28 -2c-26 -3 -35 -9 -65 -42l-221 -252l171 -307c14 -24 27 -31 68 -34 l25 -2v-28c-48 2 -93 3 -133 3c-42 0 -87 -1 -135 -3v28'], + 0xE04C: [705,3,666,52,675,'52 647l15 11c23 14 61 44 64 47c92 -1 140 -89 215 -395c28 74 67 142 128 226c75 100 128 142 201 161l-6 -71c-59 -10 -101 -40 -159 -114c-74 -93 -139 -211 -148 -266l-26 -168c-1 -5 -2 -15 -2 -21c0 -20 9 -27 36 -29l49 -3l-3 -28h-26l-97 3c-16 0 -39 -1 -86 -2 l-53 -1l4 28l48 3c40 3 41 6 58 97l21 126c1 3 1 6 1 6c1 16 -38 153 -62 220c-41 112 -77 158 -124 158c-11 0 -22 -3 -45 -12'], + 0xE04D: [692,3,666,20,637,'20 -3v22l502 633h-180c-86 0 -124 -3 -180 -13l-6 -20c-12 -39 -18 -64 -21 -86h-26c8 73 11 112 11 159l329 -3h26l162 3v-20l-504 -633h281c44 0 82 4 127 13l32 90l7 22h26c-13 -69 -21 -126 -23 -167l-66 1c-61 1 -178 2 -256 2c-87 0 -145 -1 -241 -3'], + 0xE04E: [482,11,443,4,406,'271 204c-116 -163 -196 -215 -233 -215c-19 0 -34 34 -34 78c0 78 31 198 75 287c25 49 58 79 120 110c27 13 47 18 75 18c27 0 44 -4 85 -19l33 18l10 -9l-92 -379c-1 -3 -1 -6 -1 -11c0 -14 6 -23 15 -23c22 0 51 27 75 47l7 -21c-82 -68 -123 -94 -146 -94 c-15 0 -24 13 -24 35c0 16 2 34 6 51zM319 414c-44 15 -62 19 -85 19c-48 0 -71 -18 -95 -73c-35 -80 -63 -197 -63 -261c0 -27 6 -40 18 -40c32 0 93 58 150 142c34 52 53 104 75 213'], + 0xE04F: [733,11,462,37,433,'235 722l-86 -398c62 79 95 109 146 136c28 14 58 22 82 22c15 0 28 -5 35 -14c12 -15 21 -54 21 -92c0 -132 -66 -269 -162 -337c-43 -31 -94 -50 -131 -50c-55 0 -103 33 -103 72c0 3 0 7 1 10l101 551c1 6 2 17 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42z M322 424c-29 0 -81 -29 -114 -63c-81 -85 -96 -226 -96 -260c0 -42 25 -65 71 -65c54 0 94 32 127 101c30 65 51 151 51 215c0 49 -13 72 -39 72'], + 0xE050: [482,11,406,25,389,'342 330v60c0 24 -36 43 -81 43c-31 0 -55 -8 -76 -24c-49 -38 -84 -142 -84 -250c0 -79 29 -119 85 -119c35 0 73 17 145 65l15 10l8 -20l-50 -41c-55 -45 -103 -65 -157 -65c-80 0 -122 51 -122 147c0 105 39 216 93 264c57 63 130 83 175 82c37 0 72 -9 96 -24 c-9 -26 -16 -63 -24 -128h-23'], + 0xE051: [733,11,499,17,483,'483 722l-126 -594c-7 -29 -8 -38 -8 -46c0 -14 6 -23 14 -23c9 0 25 7 39 17l44 31l10 -19l-81 -60c-34 -25 -58 -37 -75 -37s-26 12 -26 33c0 26 5 58 16 102l23 91c-67 -101 -100 -140 -154 -184c-34 -27 -71 -44 -98 -44c-29 0 -44 32 -44 97c0 84 20 179 51 237 c46 87 140 159 209 159c25 0 52 -5 82 -14l28 154c1 7 2 16 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42zM114 59c45 0 186 112 223 292l12 59c-33 17 -62 23 -106 23c-27 0 -46 -5 -59 -15c-49 -38 -95 -194 -95 -320c0 -25 9 -39 25 -39'], + 0xE052: [483,11,388,15,374,'328 111l8 -19c-92 -75 -148 -103 -205 -103c-72 0 -116 46 -116 124c0 67 30 186 60 236c37 74 147 147 215 133c50 0 84 -31 84 -78c0 -62 -39 -108 -124 -145c-25 -11 -134 -41 -151 -45c-5 -29 -8 -56 -8 -81c0 -60 29 -97 76 -97c36 0 84 20 137 58zM113 274l-9 -37 c45 10 81 21 109 35c52 25 87 72 87 116c0 32 -19 52 -48 52c-24 0 -55 -12 -73 -28c-29 -26 -49 -69 -66 -138'], + 0xE053: [733,276,550,-25,550,'345 437c63 0 62 2 91 9l4 -7c-6 -14 -13 -37 -17 -56h-104c-84 -401 -104 -497 -175 -581c-39 -47 -93 -78 -134 -78c-11 0 -26 3 -35 8c5 9 19 57 23 80l14 4c18 -22 29 -29 52 -29c36 0 66 31 84 90c22 69 59 255 89 450l9 56h-81l5 22c25 9 45 17 86 37l15 79 c11 57 23 87 45 109c23 24 105 85 129 96c8 4 24 7 35 7c23 0 54 -6 70 -13l-5 -15c-8 -20 -18 -51 -23 -67l-10 -4c-15 24 -42 39 -72 39c-46 0 -74 -38 -90 -124l-21 -112h16'], + 0xE054: [482,276,499,-37,498,'275 482c94 0 118 -57 118 -58c54 0 74 2 102 9l3 -6l-9 -45c-23 -3 -33 -4 -50 -4c-9 0 -17 0 -34 2c1 -4 4 -23 4 -38c0 -89 -71 -172 -169 -196c-12 -18 -27 -32 -27 -46c0 -19 13 -38 47 -65l60 -49c43 -35 64 -71 64 -107c0 -83 -113 -155 -242 -155 c-109 0 -179 46 -179 117c0 111 128 155 197 178c-14 12 -21 23 -21 33c0 14 11 32 27 47l41 38c-11 -1 -22 -1 -30 -1c-77 0 -122 46 -122 123c0 160 153 223 220 223zM176 1c-39 -12 -149 -44 -149 -146c0 -61 57 -103 139 -103c83 0 152 42 152 94c0 33 -19 60 -65 96z M250 448c-73 0 -124 -65 -124 -160c0 -79 32 -120 93 -120c70 0 118 70 118 173c0 71 -29 107 -87 107'], + 0xE055: [733,9,499,10,471,'236 722l-96 -447l4 -2c28 35 54 70 87 101c68 63 145 108 180 108c26 0 32 -18 32 -35c0 -24 -5 -49 -11 -75l-64 -256c-4 -15 -7 -28 -7 -40c0 -11 6 -20 13 -20c12 0 38 15 61 30l26 17l10 -18c-59 -44 -127 -94 -159 -94c-21 0 -31 15 -31 40c0 24 7 54 13 76l51 196 c10 39 15 72 15 90c0 14 -11 21 -22 21c-42 0 -145 -97 -190 -178c-40 -72 -54 -172 -62 -229l-69 -16l-7 11c26 78 68 270 88 386l42 234c2 10 2 19 2 25c0 20 -16 23 -34 23h-48l4 21c74 6 115 20 160 42'], + 0xE056: [712,9,277,34,264,'34 388l28 20c75 53 112 74 134 74c16 0 25 -9 25 -26c0 -8 -2 -19 -6 -36l-77 -304c-5 -21 -7 -30 -7 -40s6 -20 13 -20c9 0 32 11 61 30l26 17l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 39c0 19 5 46 13 77l66 240c4 14 8 37 8 44c0 13 -8 23 -18 23 c-7 0 -10 -2 -47 -25l-32 -21zM228 712c21 0 36 -17 36 -41c0 -38 -24 -67 -55 -67c-24 0 -39 16 -39 41c0 34 29 67 58 67'], + 0xE057: [712,276,277,-70,265,'138 351c0 5 7 31 7 40c0 13 -8 23 -18 23c-7 0 -10 -2 -47 -25l-32 -21l-7 20l28 20c75 53 112 74 134 74c16 0 25 -9 25 -25c0 -6 -2 -19 -6 -37l-76 -350c-28 -127 -42 -177 -62 -222c-36 -81 -76 -124 -116 -124c-15 0 -28 2 -38 7l8 57c21 -13 39 -19 53 -19 c18 0 36 35 47 87zM229 712c21 0 36 -17 36 -41c0 -38 -24 -67 -55 -67c-24 0 -39 16 -39 41c0 34 29 67 58 67'], + 0xE058: [733,9,468,14,455,'240 722l-107 -492c125 175 208 252 274 252c12 0 30 -3 48 -9l-17 -63c-17 4 -28 6 -36 6c-50 0 -96 -25 -157 -86l-14 -14c39 -123 61 -177 96 -241c9 -17 16 -23 26 -23c8 0 15 2 29 10l43 24l8 -19l-46 -32c-44 -31 -68 -44 -81 -44c-25 0 -57 68 -126 268 c-34 -34 -58 -79 -67 -127l-23 -124l-67 -17l-9 10c52 209 68 278 82 353l48 268c1 7 2 16 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42'], + 0xE059: [733,9,277,36,251,'251 722l-131 -618c-3 -15 -4 -22 -4 -28c0 -10 6 -20 13 -20c10 0 32 11 61 30l26 17l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 21 6 51 19 101c15 50 88 435 99 490c3 18 3 23 3 26c0 15 -10 22 -34 22h-48l4 21c72 7 108 16 160 42'], + 0xE05A: [482,9,777,24,740,'730 103l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 53 16 74 56 233c22 87 25 101 25 125c0 16 -5 25 -13 25c-32 0 -82 -35 -137 -96c-44 -49 -78 -124 -94 -205l-21 -107l-69 -15l-5 11l16 67c41 175 63 289 63 324c0 13 -4 21 -11 21 c-28 0 -73 -30 -115 -76c-55 -60 -82 -119 -106 -230l-22 -102l-68 -15l-3 11c41 143 82 336 82 387c0 15 -7 25 -18 25c-7 0 -42 -23 -79 -46l-7 20l28 20c74 53 112 74 133 74c14 0 23 -12 23 -31c0 -12 -2 -27 -6 -43l-33 -133c65 88 85 109 129 143c55 42 101 64 131 64 c16 0 26 -12 26 -31c0 -7 -3 -22 -7 -42l-30 -137c49 69 84 104 147 149c61 43 99 61 128 61c16 0 26 -11 26 -28c0 -8 -3 -24 -7 -41l-75 -297c-5 -21 -7 -30 -7 -40c0 -11 6 -20 13 -20c10 0 32 11 61 30'], + 0xE05B: [482,9,555,24,514,'24 388l28 20c73 52 112 74 133 74c15 0 23 -12 23 -33c0 -11 -2 -23 -6 -41l-38 -161c52 73 80 107 118 142c59 55 128 93 170 93c20 0 31 -13 31 -36c0 -17 -4 -45 -11 -74l-66 -276c-1 -4 -2 -15 -2 -20c0 -11 6 -20 13 -20c10 0 32 11 61 30l26 17l10 -18 c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 16 4 39 13 76l52 212c8 32 11 53 11 71c0 15 -6 24 -17 24c-45 0 -120 -62 -174 -146c-46 -69 -67 -134 -86 -260c-22 -4 -45 -10 -70 -17l-7 11c41 143 82 336 82 387c0 15 -7 25 -18 25c-7 0 -10 -2 -47 -25l-32 -21'], + 0xE05C: [482,11,443,17,411,'17 152c0 230 157 330 261 330c83 0 133 -57 133 -151c0 -101 -44 -215 -106 -274c-45 -42 -105 -68 -160 -68c-83 0 -128 57 -128 163zM241 444c-24 0 -47 -6 -60 -17c-49 -40 -88 -163 -88 -276c0 -79 34 -124 92 -124c31 0 57 12 75 33c44 53 75 159 75 255 c0 84 -33 129 -94 129'], + 0xE05D: [482,276,499,-7,465,'176 -11c-18 0 -40 7 -61 14l-42 -262c-32 -5 -52 -10 -73 -17l-7 6l8 37c20 90 39 181 49 241l58 343c2 10 4 30 4 38c0 14 -7 23 -17 23c-9 0 -20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 133 74c14 0 22 -11 22 -30c0 -12 -2 -27 -5 -44l-24 -119 c36 59 56 85 97 120c52 47 105 73 147 73c36 0 59 -44 59 -111c0 -75 -34 -185 -75 -246c-43 -63 -158 -136 -214 -136zM143 165l-18 -106c26 -16 51 -23 82 -23c41 0 73 15 93 44c53 76 93 195 93 276c0 46 -12 68 -38 68c-83 0 -190 -131 -212 -259'], + 0xE05E: [482,276,462,24,432,'385 458l33 22l14 -6c-10 -31 -16 -57 -27 -118l-86 -456c-9 -50 -15 -105 -19 -159c-24 -3 -55 -9 -86 -17l-9 14c12 13 22 33 27 57l76 414c-49 -88 -128 -158 -175 -190c-32 -22 -51 -30 -73 -30c-24 0 -36 30 -36 89c0 103 39 249 79 296c18 20 106 108 181 108 c29 0 58 -7 101 -24zM118 59c42 0 183 115 212 252l21 95c-48 21 -69 27 -97 27c-32 0 -61 -9 -73 -24c-42 -50 -85 -200 -85 -296c0 -33 8 -54 22 -54'], + 0xE05F: [482,9,388,26,384,'368 365h-14c-11 14 -21 19 -36 19c-22 0 -49 -21 -83 -65c-44 -57 -67 -110 -85 -193l-26 -120l-13 -2c-23 -5 -39 -8 -54 -13l-10 7c40 128 83 334 83 392c0 13 -7 22 -17 22c-9 0 -20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 133 74c15 0 23 -12 23 -32 c0 -12 -2 -25 -6 -42l-32 -152c16 35 55 95 94 151c36 51 67 75 98 75c5 0 9 -1 20 -6c-8 -41 -13 -73 -16 -111'], + 0xE060: [482,11,388,9,345,'31 148h25v-84c28 -24 59 -35 94 -35c71 0 117 44 117 109c0 39 -16 57 -60 65l-63 12c-66 13 -97 45 -97 101c0 36 11 61 37 88c48 48 109 78 161 78c33 0 61 -8 100 -27c-11 -51 -15 -78 -19 -113h-23v55c-16 27 -54 45 -95 45c-57 0 -102 -41 -102 -94 c0 -41 19 -58 79 -69l43 -8c74 -14 106 -43 106 -97c0 -50 -21 -87 -72 -127s-97 -58 -146 -58c-35 0 -69 9 -107 27c11 46 17 81 22 132'], + 0xE061: [646,9,332,41,310,'125 390h-84l2 13c18 5 44 16 88 37l25 170c31 12 58 24 78 36l11 -15c-18 -54 -29 -103 -45 -197c38 0 72 2 110 6l-11 -50h-107l-13 -62c-29 -145 -43 -226 -43 -252c0 -12 5 -20 14 -20c11 0 31 10 60 30l45 31l10 -18l-31 -25c-78 -63 -113 -83 -148 -83 c-19 0 -30 15 -30 40c0 30 12 68 13 76'], + 0xE062: [482,11,555,32,512,'492 473c-15 -57 -90 -361 -90 -397c0 -10 5 -17 13 -17c11 0 37 11 61 27l26 17l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 15 4 42 11 66l37 142c-84 -138 -205 -250 -268 -250c-20 0 -35 18 -35 41c0 14 2 38 4 47l63 297c1 4 2 14 2 18 c0 11 -8 20 -17 20s-20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 132 74c14 0 23 -12 23 -31c0 -13 -2 -27 -5 -43l-57 -271c-5 -25 -7 -38 -7 -52c0 -17 5 -26 13 -26c40 0 118 71 177 162c31 47 56 115 71 193l10 51l68 17'], + 0xE063: [482,11,499,21,477,'166 420c-38 0 -22 2 -55 2c-24 0 -44 -11 -51 -28l-17 -42h-22c13 55 24 91 38 118c11 5 20 7 32 7c1 0 6 0 12 -1l12 -1c29 -3 71 -5 99 -5s41 3 61 12l10 -18c-98 -122 -137 -213 -137 -318c0 -65 31 -107 80 -107c88 0 185 163 185 311c0 40 -16 63 -43 63 c-9 0 -18 -3 -27 -9l-11 19l50 47c8 8 20 12 33 12c36 0 62 -41 62 -98c0 -148 -153 -395 -291 -395c-64 0 -110 55 -110 132c0 100 42 183 153 303c-26 -3 -42 -4 -63 -4'], + 0xE064: [482,11,721,21,699,'167 420c-39 0 -22 2 -56 2c-24 0 -44 -11 -51 -28l-17 -42h-22c13 55 24 91 38 118c11 5 20 7 32 7c1 0 6 0 12 -1l12 -1c29 -3 71 -5 99 -5s41 3 61 12l10 -18c-99 -112 -140 -209 -140 -328c0 -58 23 -97 58 -97c30 0 68 41 108 116c29 54 43 94 55 156l29 149l74 22 l7 -8l-52 -184c-12 -43 -21 -109 -21 -156c0 -55 21 -95 50 -95c85 0 182 166 182 311c0 40 -16 63 -43 63c-9 0 -18 -3 -27 -9l-11 19l50 47c8 8 20 12 33 12c36 0 62 -41 62 -98c0 -146 -153 -395 -287 -395c-45 0 -74 43 -74 106c0 23 3 48 12 92 c-74 -143 -126 -198 -190 -198c-53 0 -88 55 -88 137c0 140 99 224 154 298c-25 -3 -38 -4 -59 -4'], + 0xE065: [482,11,499,9,484,'9 1c4 26 12 52 12 87l20 3l11 -28c2 -5 13 -9 28 -9c28 0 62 32 105 99l40 62l-11 62c-17 98 -39 139 -72 139c-19 0 -39 -14 -69 -48l-17 10l58 83c9 13 31 21 57 21c59 0 86 -36 98 -135l6 -48l37 55c62 92 102 128 142 128c9 0 18 -3 30 -10l-15 -85l-14 -4 c-5 15 -17 23 -33 23c-31 0 -58 -23 -105 -88l-35 -49l18 -101c5 -29 16 -66 25 -85c10 -20 23 -30 38 -30c16 0 41 15 77 45l9 -19l-49 -44c-32 -29 -64 -46 -86 -46c-36 0 -59 39 -72 124l-11 69l-76 -117c-31 -47 -70 -76 -103 -76c-12 0 -28 4 -43 12'], + 0xE066: [482,276,499,-8,490,'-7 -180l48 34l10 -4c-1 -9 -2 -17 -2 -22c0 -35 27 -62 62 -62c70 0 120 73 171 250l49 171c-75 -113 -159 -198 -196 -198c-25 0 -43 29 -43 71l1 40l17 243c1 8 1 14 1 15c0 33 -8 52 -22 52c-9 0 -20 -9 -25 -12l-50 -30l-11 18l82 56c48 33 62 40 75 40 c17 0 24 -18 24 -63c0 -28 -2 -66 -4 -97l-16 -207c-1 -25 8 -48 20 -48c22 0 71 44 106 95c33 49 68 122 80 169l35 132c22 2 45 8 74 19l11 -9l-141 -440c-59 -185 -169 -309 -275 -309c-45 0 -82 35 -82 78c0 5 0 11 1 18'], + 0xE067: [482,11,443,-1,416,'322 -11c-69 0 -160 37 -223 37c-35 0 -62 -9 -91 -32l-9 27l353 400c-33 -17 -57 -23 -93 -23c-53 0 -85 15 -126 15c-13 0 -22 -1 -39 -5l-30 -58h-21l32 122c24 7 44 10 61 10c14 0 34 -4 62 -11l18 -5c48 -13 100 -21 134 -21c14 0 24 4 34 14l23 23l9 -9l-6 -32 l-339 -382c36 15 63 21 95 21c19 0 53 -5 86 -12l18 -4c21 -5 37 -7 49 -7c21 0 33 7 39 25l22 60h22c-11 -47 -19 -81 -30 -143c-29 -8 -38 -10 -50 -10'], + 0xE068: [689,20,499,29,465,'263 689c137 0 202 -104 202 -323c0 -256 -76 -386 -227 -386c-62 0 -118 28 -153 77s-56 150 -56 267c0 242 79 365 234 365zM245 646c-95 0 -132 -75 -132 -286c0 -244 41 -337 138 -337c92 0 130 80 130 293c0 240 -39 330 -136 330'], + 0xE069: [694,3,499,60,418,'418 -3c-16 0 -126 3 -157 3c-11 0 -11 0 -165 -3v36l56 3c54 3 65 14 65 66v473c0 24 -2 33 -8 33l-132 -59h-10l-7 49c91 32 162 62 227 96l14 -5v-587c0 -52 10 -63 65 -66l52 -3v-36'], + 0xE06A: [689,3,499,16,468,'16 60l139 149c113 120 186 189 186 264c0 85 -55 139 -141 139c-67 0 -88 -25 -104 -83l-13 -46h-44l17 136c49 50 98 70 170 70c127 0 205 -71 205 -186c0 -75 -30 -130 -127 -233l-182 -193c185 4 231 5 346 10c0 -22 -2 -32 -2 -45c0 -14 2 -24 2 -45 c-193 0 -193 3 -229 3s-36 -3 -223 -3v63'], + 0xE06B: [689,20,499,15,462,'462 224c0 -137 -155 -244 -278 -244c-37 0 -81 8 -134 26l-35 147l34 10c19 -54 32 -77 56 -99c30 -28 64 -36 110 -36c93 0 154 60 154 162c0 91 -48 144 -131 144c-27 0 -46 -5 -84 -22l-7 6l12 61l15 -1c13 -1 24 -2 32 -2c71 0 130 55 130 130 c0 63 -53 116 -118 116c-52 0 -108 -34 -119 -68l-18 -56h-38l29 124c48 48 93 67 161 67c111 0 185 -59 185 -148c0 -59 -30 -105 -110 -167c47 -8 154 -29 154 -150'], + 0xE06C: [694,3,499,2,472,'280 181h-267l-11 23l283 463l74 27l12 -5c-5 -41 -7 -127 -7 -305v-139h27c5 0 74 3 81 3v-71c-28 3 -49 4 -108 4v-65c0 -60 11 -73 60 -76l48 -3v-40c-133 3 -133 3 -157 3s-24 0 -157 -3v40l62 3c49 2 60 16 60 76v65zM280 245v342l-205 -342h205'], + 0xE06D: [689,20,499,13,459,'459 253c0 -164 -158 -273 -286 -273c-43 0 -83 9 -111 24c-14 44 -26 76 -49 133l34 14l46 -82c14 -26 54 -39 108 -39c109 0 173 60 173 171c0 108 -60 176 -156 176c-49 0 -76 -14 -123 -61l-20 6c3 44 6 140 6 225c0 32 -1 76 -2 137l5 5c75 -4 119 -5 174 -5 c54 0 99 1 174 5l5 -5c-2 -18 -2 -26 -2 -40c0 -13 0 -21 2 -39l-5 -5c-120 0 -166 1 -295 5l-9 -209c62 37 88 50 136 50c114 0 195 -80 195 -193'], + 0xE06E: [689,20,499,32,468,'131 341c53 39 85 68 162 68c106 0 175 -75 175 -190c0 -136 -97 -239 -227 -239c-129 0 -209 102 -209 267c0 137 56 259 159 346c51 44 92 64 188 96l47 -17v-8c-180 -54 -274 -142 -295 -323zM255 349c-48 0 -95 -24 -117 -58c-11 -17 -15 -36 -15 -71 c0 -134 46 -197 131 -197c77 0 128 57 128 161c0 99 -51 165 -127 165'], + 0xE06F: [689,3,499,44,497,'56 10l234 392c38 61 69 119 109 201h-247c-46 0 -53 -8 -61 -70l-7 -56h-40c3 91 3 91 3 102c0 10 0 10 -3 105l10 5c97 -4 146 -5 219 -5c81 0 116 1 224 5v-30l-183 -329c-66 -120 -115 -224 -157 -333c-39 3 -39 3 -46 3s-7 0 -46 -3'], + 0xE070: [689,20,499,30,464,'168 345c-88 57 -115 95 -115 163c0 105 87 181 206 181c106 0 177 -58 177 -144c0 -60 -32 -102 -123 -164c114 -52 151 -95 151 -175c0 -124 -108 -226 -238 -226c-113 0 -196 76 -196 179c0 52 20 97 58 135c22 21 39 32 80 51zM284 295l-80 36 c-74 -45 -103 -91 -103 -164c0 -93 55 -145 140 -145c81 0 144 58 144 142c0 54 -38 103 -101 131zM223 423l55 -27c65 42 90 81 90 138c0 73 -48 113 -121 113c-71 0 -119 -37 -119 -103c0 -50 32 -90 95 -121'], + 0xE071: [689,20,499,20,457,'96 -20l-34 25v8c181 44 290 159 298 327l-70 -58c-18 -15 -57 -26 -91 -26c-104 0 -179 84 -179 199c0 134 96 234 224 234c132 0 213 -103 213 -272c0 -134 -51 -249 -148 -332c-54 -46 -102 -69 -213 -105zM240 656c-82 0 -134 -63 -134 -164c0 -104 54 -167 134 -167 c77 0 130 62 130 154c0 45 -12 86 -30 118c-22 40 -55 59 -100 59'], + 0xE072: [689,20,499,29,465,'263 689c137 0 202 -104 202 -323c0 -256 -76 -386 -227 -386c-62 0 -118 28 -153 77s-56 150 -56 267c0 242 79 365 234 365zM245 639c-95 0 -132 -68 -132 -279c0 -244 41 -330 138 -330c92 0 130 73 130 286c0 240 -39 323 -136 323'], + 0xE073: [694,3,499,60,418,'418 -3c-16 0 -126 3 -157 3c-11 0 -11 0 -165 -3v44l56 3c54 3 65 14 65 66v458c0 24 -2 33 -8 33l-132 -59h-10l-7 56c91 32 162 62 227 96l14 -5v-579c0 -52 10 -63 65 -66l52 -3v-44'], + 0xE074: [689,3,499,16,468,'16 77l126 132c113 120 199 189 199 264c0 85 -55 139 -141 139c-67 0 -81 -25 -97 -83l-13 -46h-51l17 136c49 50 98 70 170 70c127 0 205 -71 205 -186c0 -75 -30 -130 -127 -233l-182 -193c185 4 231 5 346 10c0 -22 -2 -32 -2 -45c0 -14 2 -24 2 -45 c-193 0 -193 3 -229 3s-36 -3 -223 -3v80'], + 0xE075: [689,20,499,15,462,'462 224c0 -137 -155 -244 -278 -244c-37 0 -81 8 -134 26l-35 147l39 10c19 -54 32 -77 56 -99c30 -28 59 -26 105 -26c93 0 154 50 154 152c0 91 -48 134 -131 134c-27 0 -46 -5 -84 -22l-7 6l12 71l15 -1c13 -1 24 -2 32 -2c71 0 130 55 130 130 c0 63 -53 116 -118 116c-52 0 -98 -34 -109 -68l-18 -56h-48l29 124c48 48 93 67 161 67c111 0 185 -59 185 -148c0 -59 -30 -105 -110 -167c47 -8 154 -29 154 -150'], + 0xE076: [694,3,499,2,472,'280 181h-267l-11 23l283 463l74 27l12 -5c-5 -41 -7 -127 -7 -305v-139h27c5 0 74 3 81 3v-71c-28 3 -49 4 -108 4v-55c0 -60 11 -73 60 -76l48 -3v-50c-133 3 -133 3 -157 3s-24 0 -157 -3v50l62 3c49 2 60 16 60 76v55zM280 245v325l-190 -325h190'], + 0xE077: [689,20,499,13,459,'459 253c0 -164 -158 -273 -286 -273c-43 0 -83 9 -111 24c-14 44 -26 76 -49 133l44 14l46 -82c14 -26 51 -32 105 -32c108 -1 166 59 166 164c0 108 -60 176 -156 176c-49 0 -76 -14 -123 -61l-20 6c3 44 6 140 6 225c0 32 -1 76 -2 137l5 5c75 -4 119 -5 174 -5 c54 0 99 1 174 5l5 -5c-2 -18 -2 -26 -2 -40c0 -13 0 -21 2 -39l-5 -5c-120 0 -156 1 -285 5l-9 -209c62 37 78 50 126 50c114 0 195 -80 195 -193'], + 0xE078: [689,20,499,32,468,'131 351c53 39 85 58 162 58c106 0 175 -75 175 -190c0 -136 -97 -239 -227 -239c-129 0 -209 102 -209 267c0 137 56 259 159 346c51 44 92 64 188 96l57 -17v-8c-180 -54 -304 -154 -305 -313zM255 349c-48 0 -95 -24 -117 -58c-11 -17 -15 -36 -15 -71 c0 -134 46 -187 131 -187c77 0 128 47 128 151c0 99 -51 165 -127 165'], + 0xE079: [689,3,499,44,497,'56 10l333 593h-227c-46 0 -53 -8 -61 -70l-7 -56h-50c3 91 3 91 3 102c0 10 0 10 -3 105l10 5c97 -4 146 -5 219 -5c81 0 116 1 224 5v-30l-183 -329c-66 -120 -115 -224 -157 -333c-39 3 -39 3 -46 3s-7 0 -46 -3'], + 0xE07A: [689,20,499,30,464,'168 345c-88 57 -115 95 -115 163c0 105 87 181 206 181c106 0 177 -58 177 -144c0 -60 -32 -102 -123 -164c114 -52 151 -95 151 -175c0 -124 -108 -226 -238 -226c-113 0 -196 76 -196 179c0 52 20 97 58 135c22 21 39 32 80 51zM284 295l-80 36 c-74 -45 -103 -91 -103 -164c0 -93 55 -140 140 -140c81 0 144 53 144 137c0 54 -38 103 -101 131zM223 423l55 -27c65 42 90 81 90 138c0 73 -48 108 -121 108c-71 0 -119 -32 -119 -98c0 -50 32 -90 95 -121'], + 0xE07B: [689,20,499,20,457,'96 -20l-34 35v8c181 44 290 149 298 317l-70 -58c-18 -15 -57 -26 -91 -26c-104 0 -179 84 -179 199c0 134 96 234 224 234c132 0 213 -103 213 -272c0 -134 -51 -249 -148 -332c-54 -46 -102 -69 -213 -105zM240 656c-82 0 -134 -63 -134 -164c0 -104 54 -162 134 -162 c77 0 130 67 130 159c0 45 -12 76 -30 108c-22 40 -55 59 -100 59'], + 0xE07C: [469,12,499,32,471,'324 82l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 123 -136 123c-46 0 -54 -2 -75 -49l-13 -31l-28 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-178c0 -49 4 -57 28 -58l39 -2v-35c-44 2 -69 3 -74 3 c-13 0 -13 0 -78 -3zM324 129v122c-76 -11 -131 -25 -156 -40c-30 -19 -50 -49 -50 -86c0 -43 35 -75 75 -75c39 0 102 38 131 79'], + 0xE07D: [726,27,552,-15,508,'150 718v-349c75 180 336 153 358 -99c4 -177 -127 -400 -394 -246l-40 -36l-16 6c7 70 8 97 8 159v459c0 30 -7 41 -25 41h-56v36c79 12 112 20 156 37zM284 404c-78 0 -134 -67 -134 -102v-203c0 -22 74 -60 126 -60c85 0 145 78 145 190c0 107 -53 175 -137 175'], + 0xE07E: [497,20,443,25,413,'399 311h-35l-7 61c-18 25 -59 45 -103 45c-90 0 -140 -60 -140 -167c0 -132 73 -212 184 -212c36 0 68 9 105 29l10 -21l-21 -32c-10 -15 -85 -34 -137 -34c-134 0 -229 95 -229 230c-14 192 267 392 387 224c-9 -36 -14 -77 -14 -123'], + 0xE07F: [726,12,610,34,579,'579 -3c-9 0 -73 3 -91 3c-12 0 -28 -1 -77 -3l5 92l-111 -93c-5 -4 -28 -8 -48 -8c-65 0 -112 13 -146 42c-49 40 -76 106 -76 186c-15 164 259 365 377 221v178c0 30 -7 41 -25 41h-56v33c79 12 112 20 156 37l9 -13v-605c0 -63 3 -70 37 -72l46 -3v-36zM412 345 c0 16 -67 77 -146 77c-90 0 -144 -64 -144 -173c0 -119 63 -194 151 -194c47 0 96 31 124 78c13 23 15 28 15 93v119'], + 0xE080: [469,20,478,26,448,'250 -20c-89 0 -224 45 -224 239c0 104 32 173 114 221c40 24 85 29 122 29c112 0 186 -75 186 -190c0 -12 -1 -31 -2 -45c-66 -14 -253 -25 -327 -14c2 -58 9 -76 28 -109c28 -49 82 -73 147 -73c43 0 56 4 120 42l23 -10l-20 -34c-12 -18 -102 -56 -167 -56zM359 267 c-3 67 -10 96 -32 129c-18 27 -44 37 -77 37c-48 0 -91 -24 -112 -68c-13 -26 -17 -48 -17 -95c56 -14 193 -8 238 -3'], + 0xE081: [737,3,332,23,341,'341 717v-77l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -28 -70 -143v-79l131 4l-7 -59h-124v-274c0 -63 3 -70 37 -72l46 -3v-39c-100 3 -100 3 -125 3s-25 0 -125 -3v39l46 3c34 2 37 9 37 72v274l-69 -4v28l69 31v42c-1 90 79 327 235 235'], + 0xE082: [469,283,555,32,544,'55 289c0 135 146 180 221 180c49 0 85 -12 122 -42l142 4l4 -12l-25 -45h-92c8 -21 11 -34 11 -54c0 -127 -138 -170 -199 -170c-8 0 -14 1 -24 2c-17 -17 -46 -34 -46 -57c0 -27 19 -39 71 -39h160c70 0 118 -50 118 -122c0 -122 -119 -217 -270 -217 c-127 0 -216 63 -216 154c0 31 14 68 28 76l87 47c-48 14 -66 30 -66 58c0 15 5 28 15 43l73 61c-74 8 -114 59 -114 133zM240 430c-64 0 -101 -40 -101 -117s45 -124 112 -124c61 0 103 40 103 105c0 85 -46 136 -114 136zM287 -14c-69 0 -92 -2 -108 -10 c-40 -17 -71 -58 -71 -103c0 -74 60 -117 147 -117c105 0 184 56 184 142c0 65 -39 88 -152 88'], + 0xE083: [726,3,581,6,572,'7 655v34c79 12 112 20 156 37l9 -14v-334c66 146 322 118 322 -83v-183c0 -64 3 -70 37 -72l41 -3v-40c-69 3 -69 3 -83 3c-17 0 -18 0 -79 -3v284c0 77 -44 120 -111 120c-61 0 -127 -49 -127 -94v-195c0 -63 3 -70 37 -72l45 -3v-40c-68 2 -95 3 -124 3 s-56 -1 -124 -3v40l45 3c34 2 37 9 37 72v502c0 30 -7 41 -25 41h-56'], + 0xE084: [687,3,290,21,271,'188 455v-343c0 -63 3 -70 37 -72l46 -3v-40c-100 3 -100 3 -125 3s-25 0 -125 -3v40l46 3c34 2 37 9 37 72v205c0 66 -4 73 -44 73h-37v38c53 6 105 20 156 41zM142 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0xE085: [688,283,233,-40,167,'-10 -238c68 0 85 96 85 231v324c0 66 -4 73 -44 73h-37v38c53 6 105 20 156 41l9 -14v-474c0 -79 -18 -143 -53 -189c-38 -50 -76 -71 -134 -75l-12 48c8 -1 24 -3 30 -3zM112 688c29 0 55 -26 55 -55c0 -30 -26 -56 -56 -56c-28 0 -55 27 -55 56c0 28 27 55 56 55'], + 0xE086: [726,12,555,21,549,'23 641v48c79 12 112 20 156 37l9 -18v-447l223 206h100v-38c-34 1 -61 -11 -108 -47l-129 -101l190 -193c32 -31 61 -48 85 -48v-30l-96 -22l-265 252v-128c0 -63 3 -70 37 -72l44 -3v-40c-89 3 -94 3 -122 3c-26 0 -26 0 -126 -3v40l46 3c34 2 37 9 37 72v488 c0 30 -7 41 -25 41h-56'], + 0xE087: [726,3,290,21,271,'23 651v38c79 12 112 20 156 37l9 -18v-596c0 -63 3 -70 37 -72l46 -3v-40c-100 3 -100 3 -125 3s-25 0 -125 -3v40l46 3c34 2 37 9 37 72v498c0 30 -7 41 -25 41h-56'], + 0xE088: [469,3,882,16,869,'18 390v38c53 6 105 20 156 41l9 -14v-75l69 64c18 16 46 25 83 25c69 0 110 -27 142 -93l76 68c18 16 47 25 82 25c92 0 150 -62 150 -161v-196c0 -63 3 -70 37 -72l47 -3v-40c-76 3 -76 3 -89 3c-17 0 -18 0 -79 -3v284c0 76 -37 127 -91 127c-60 0 -126 -59 -126 -104 v-192c0 -63 3 -70 37 -72l46 -3v-40c-100 3 -100 3 -125 3s-25 0 -125 -3v40l46 3c34 2 37 9 37 72v169c0 76 -37 127 -91 127c-60 0 -126 -59 -126 -104v-192c0 -63 3 -70 37 -72l42 -3v-40c-65 2 -91 3 -119 3s-31 0 -127 -3v40l46 3c34 2 37 9 37 72v215 c0 66 -4 63 -44 63h-37'], + 0xE089: [469,3,581,6,572,'410 -3v284c0 77 -44 127 -111 127c-61 0 -127 -59 -127 -104v-192c0 -63 3 -70 37 -72l45 -3v-40c-68 2 -95 3 -124 3s-56 -1 -124 -3v40l45 3c34 2 37 9 37 72v205c0 66 -4 73 -44 73h-37v38c53 6 105 20 156 41l9 -14v-77l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-183c0 -64 3 -70 37 -72l41 -3v-40c-69 3 -69 3 -83 3c-17 0 -18 0 -79 -3'], + 0xE08A: [469,20,545,32,514,'279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 429c-88 0 -136 -58 -136 -178c0 -142 66 -231 164 -231c81 0 132 65 132 180c0 136 -68 229 -160 229'], + 0xE08B: [476,281,600,8,556,'10 390v38c53 6 105 20 156 41l9 -14v-86c109 185 375 118 379 -98c22 -157 -139 -376 -379 -258v-179c0 -63 3 -70 37 -72l46 -3v-40c-100 3 -100 3 -125 3s-25 0 -125 -3v40l46 3c34 2 37 9 37 72v483c0 66 -4 73 -44 73h-37zM313 400c-91 0 -138 -73 -138 -104v-194 c39 -41 80 -63 135 -63c90 0 157 83 157 195c0 104 -60 166 -154 166'], + 0xE08C: [477,281,600,44,593,'591 390v38c-53 6 -105 20 -156 41l-9 -14v-86c-109 186 -375 118 -379 -98c-22 -157 139 -376 379 -258v-179c0 -63 -3 -70 -37 -72l-46 -3v-40c100 3 100 3 125 3s25 0 125 -3v40l-46 3c-34 2 -37 9 -37 72v483c0 66 4 73 44 73h37zM288 401c91 0 138 -74 138 -105 v-198c-39 -41 -80 -59 -135 -59c-90 0 -157 83 -157 195c0 104 60 167 154 167'], + 0xE08D: [469,3,394,21,374,'23 390v38c53 6 105 20 156 41l9 -14v-88l56 61c22 24 53 41 83 41c18 0 36 -4 47 -11l-9 -120h-21c-16 32 -37 46 -67 46c-49 0 -89 -50 -89 -110v-162c0 -66 2 -69 47 -72l52 -3v-40c-123 3 -123 3 -143 3c-25 0 -51 -1 -123 -3v40l46 3c34 2 37 9 37 72v205 c0 66 -4 73 -44 73h-37'], + 0xE08E: [469,20,423,30,391,'41 143h39v-41c0 -50 52 -80 125 -80c71 0 112 33 112 87c0 86 -94 60 -212 112c-46 21 -68 55 -68 103c0 90 71 145 187 145c41 0 77 -7 130 -25c-3 -31 -4 -55 -5 -113h-37v23c0 47 -51 77 -118 77c-61 0 -87 -23 -87 -73c0 -130 284 -37 284 -210 c0 -98 -93 -168 -224 -168c-46 0 -85 7 -137 24c8 40 11 70 11 139'], + 0xE08F: [621,12,325,22,319,'98 375l-76 -4v32l78 35v66c0 30 -1 49 -4 79c31 10 61 23 85 38l12 -18c-8 -64 -11 -89 -11 -131v-38l137 6l-9 -65h-128v-255c0 -49 16 -64 55 -64c19 0 34 5 59 19l13 -22l-48 -53c-6 -7 -30 -12 -53 -12c-77 0 -110 32 -110 106v281'], + 0xE090: [469,12,602,18,581,'283 54c87 0 136 72 136 110v153c0 66 -4 73 -44 73h-37v38c53 6 105 20 156 41l9 -14v-343c0 -64 3 -70 37 -72l41 -3v-40c-69 3 -69 3 -83 3c-15 0 -16 0 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-136 0 -141 82 -141 171v158c0 66 -4 73 -44 73h-37 v38c53 6 105 20 156 41l9 -14v-285c0 -76 20 -116 100 -116'], + 0xE091: [459,7,564,6,539,'539 426l-31 -2c-20 -2 -34 -20 -56 -67l-159 -364h-50l-172 398c-11 25 -16 31 -31 33l-34 2v33c49 -2 97 -3 116 -3s19 0 117 3v-33l-49 -2c-16 -1 -25 -8 -25 -19l118 -311c38 83 111 275 123 304c0 16 -8 25 -24 26l-31 2v33c60 -2 78 -3 94 -3s34 1 94 3v-33'], + 0xE092: [469,7,833,6,808,'413 469h23l144 -371l105 290c0 18 -14 30 -39 31l-34 2v38c82 -3 82 -3 98 -3s16 0 98 3v-38l-26 -2c-22 -3 -34 -10 -64 -77l-137 -349h-46l-125 342l-151 -342h-57l-102 336c-25 78 -38 88 -66 90l-28 2v38c99 -3 99 -3 119 -3s20 0 119 3v-38l-40 -2 c-25 -1 -38 -9 -38 -24c0 -8 85 -282 88 -291'], + 0xE093: [469,3,515,20,496,'298 244l138 -190c11 -15 23 -18 35 -19l25 -3v-35c-52 3 -52 3 -62 3c-9 0 -9 0 -61 -3l-123 185l-144 -182h-86v32h17c10 0 23 1 30 10l149 176l-120 172c-10 14 -32 23 -50 24l-21 2l-5 33l116 20c34 -34 45 -47 60 -69l76 -116l124 175h82v-33h-14h-13 c-10 0 -17 -1 -21 -6'], + 0xE094: [459,283,555,12,544,'416 368c4 10 6 19 6 26c0 14 -14 23 -42 25l-26 2v38c79 -3 79 -3 95 -3s16 0 95 3v-38l-28 -2c-25 -3 -44 -30 -84 -121l-203 -458c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -13 51 -13c29 -3 50 21 99 121l23 61l-155 394 c-14 35 -27 46 -52 49l-18 2v38c97 -3 97 -3 116 -3s19 0 116 3v-38l-38 -2c-23 -1 -34 -9 -34 -23c0 -10 108 -293 115 -310'], + 0xE095: [462,3,499,16,466,'455 432l-314 -387h125c96 0 138 7 142 25l18 69h40l-6 -47c-7 -48 -9 -72 -9 -95l-276 3c-43 0 -49 0 -153 -3l-6 20l325 397h-133c-74 0 -92 -5 -96 -26l-12 -58h-40c6 69 7 81 9 132l248 -3c38 0 68 1 138 3v-30'], + 0xE096: [469,12,499,32,471,'324 82l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 118 -136 118c-46 0 -49 3 -70 -44l-13 -31l-33 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-173c0 -49 4 -57 28 -58l39 -2v-40c-44 2 -69 3 -74 3 c-13 0 -13 0 -78 -3zM324 134v112c-76 -11 -131 -25 -156 -40c-30 -19 -50 -44 -50 -81c0 -43 35 -70 75 -70c39 0 102 38 131 79'], + 0xE097: [726,27,552,-15,508,'150 718v-349c75 180 336 153 358 -99c4 -177 -127 -400 -394 -246l-40 -36l-16 6c7 70 8 97 8 159v449c0 30 -7 41 -25 41h-56v46c79 12 112 20 156 37zM284 396c-78 0 -134 -77 -134 -112v-175c0 -22 74 -70 126 -70c85 0 145 78 145 190c0 107 -53 167 -137 167'], + 0xE098: [497,20,443,25,413,'399 311h-40l-7 61c-18 25 -59 45 -103 45c-86 -6 -132 -66 -135 -167c0 -132 73 -205 184 -205c36 0 68 9 105 29l10 -28l-21 -32c-10 -15 -85 -34 -137 -34c-134 0 -229 95 -229 230c-14 192 267 392 387 224c-9 -36 -14 -77 -14 -123'], + 0xE099: [726,12,610,34,579,'579 -3c-9 0 -73 3 -91 3c-12 0 -28 -1 -77 -3l5 92l-111 -93c-5 -4 -28 -8 -48 -8c-65 0 -112 13 -146 42c-49 40 -76 106 -76 186c-15 164 259 365 377 221v171c0 30 -7 41 -25 41h-56v40c79 12 112 20 156 37l9 -20v-591c0 -63 3 -70 37 -72l46 -3v-43zM412 345 c0 16 -67 77 -146 77c-72 -7 -136 -67 -144 -173c0 -119 63 -187 151 -187c47 0 96 31 124 78c13 23 15 21 15 86v119'], + 0xE09A: [469,20,478,26,448,'250 -20c-89 0 -224 45 -224 239c0 104 32 173 114 221c40 24 85 29 122 29c112 0 186 -75 186 -190c0 -12 -1 -37 -2 -51c-66 -14 -253 -25 -327 -14c2 -58 9 -70 28 -103c28 -49 82 -68 147 -68c43 0 52 -1 116 37l27 -10l-20 -34c-12 -18 -102 -56 -167 -56zM359 271 c-3 67 -10 89 -32 122c-18 27 -44 37 -77 37c-48 0 -91 -21 -112 -65c-13 -26 -17 -44 -17 -91c56 -14 193 -8 238 -3'], + 0xE09B: [737,3,332,23,341,'341 717v-77l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -28 -70 -143v-73l131 4l-7 -65h-124v-266c0 -63 3 -70 37 -72l46 -3v-47c-100 3 -100 3 -125 3s-25 0 -125 -3v47l46 3c34 2 37 9 37 72v266l-69 -4v34l69 31v36c0 90 79 327 235 235'], + 0xE09C: [469,283,555,32,544,'55 289c0 135 146 180 221 180c49 0 85 -12 122 -42l142 4l4 -12l-25 -50h-92c8 -21 11 -34 11 -54c0 -127 -134 -165 -195 -165c-8 0 -14 1 -24 2c-17 -17 -45 -34 -45 -57c0 -27 14 -39 66 -39h160c70 0 118 -50 118 -122c0 -122 -119 -217 -270 -217 c-127 0 -216 63 -216 154c0 31 14 68 28 76l87 47c-48 14 -66 30 -66 58c0 15 5 28 15 43l69 61c-74 8 -110 59 -110 133zM240 425c-64 0 -101 -35 -101 -112s45 -120 112 -120c61 0 103 36 103 101c0 85 -46 131 -114 131zM287 -14c-69 0 -92 -2 -108 -10 c-40 -17 -71 -58 -71 -103c0 -74 60 -113 147 -113c105 0 184 52 184 138c0 65 -39 88 -152 88'], + 0xE09D: [726,3,581,6,572,'7 647v42c79 12 112 20 156 37l9 -24v-324c66 146 322 118 322 -83v-173c0 -64 3 -70 37 -72l41 -3v-50c-69 3 -69 3 -83 3c-17 0 -18 0 -79 -3v284c0 77 -44 110 -111 110c-61 0 -127 -49 -127 -94v-175c0 -63 3 -70 37 -72l45 -3v-50c-68 2 -95 3 -124 3 s-56 -1 -124 -3v50l45 3c34 2 37 9 37 72v484c0 30 -7 41 -25 41h-56'], + 0xE09E: [687,3,290,21,271,'188 445v-323c0 -63 3 -70 37 -72l46 -3v-50c-100 3 -100 3 -125 3s-25 0 -125 -3v50l46 3c34 2 37 9 37 72v185c0 66 -4 73 -44 73h-37v48c53 6 105 20 156 41zM142 687c28 0 55 -28 55 -56c0 -29 -27 -55 -56 -55s-55 26 -55 55c0 30 26 56 56 56'], + 0xE09F: [688,283,233,-40,167,'-10 -228c68 0 85 86 85 221v314c0 66 -4 73 -44 73h-37v48c53 6 105 20 156 41l9 -25v-463c0 -79 -18 -143 -53 -189c-38 -50 -76 -71 -134 -75l-12 58c8 -1 24 -3 30 -3zM112 688c29 0 55 -26 55 -55c0 -30 -26 -56 -56 -56c-28 0 -55 27 -55 56c0 28 27 55 56 55'], + 0xE0A0: [726,12,555,21,549,'23 631v58c79 12 112 20 156 37l9 -28v-437l223 216h100v-48c-34 1 -63 -8 -108 -47l-129 -111l190 -183c32 -31 61 -48 85 -48v-35l-96 -17l-265 252v-118c0 -63 3 -70 37 -72l44 -3v-50c-89 3 -94 3 -122 3c-26 0 -26 0 -126 -3v50l46 3c34 2 37 9 37 72v468 c0 30 -7 41 -25 41h-56'], + 0xE0A1: [726,3,290,21,271,'23 641v48c79 12 112 20 156 37l9 -28v-576c0 -63 3 -70 37 -72l46 -3v-50c-100 3 -100 3 -125 3s-25 0 -125 -3v50l46 3c34 2 37 9 37 72v478c0 30 -7 41 -25 41h-56'], + 0xE0A2: [469,3,882,16,869,'18 380v48c53 6 105 20 156 41l9 -24v-65l69 64c18 16 46 25 83 25c69 0 110 -27 142 -93l76 68c18 16 47 25 82 25c92 0 150 -62 150 -161v-186c0 -63 3 -70 37 -72l47 -3v-50c-76 3 -76 3 -89 3c-17 0 -18 0 -79 -3v284c0 76 -37 127 -91 127c-60 0 -126 -68 -126 -113 v-173c0 -63 3 -70 37 -72l46 -3v-50c-100 3 -100 3 -125 3s-25 0 -125 -3v50l46 3c34 2 37 9 37 72v159c0 76 -37 127 -91 127c-60 0 -126 -68 -126 -113v-173c0 -63 3 -70 37 -72l42 -3v-50c-65 2 -91 3 -119 3s-31 0 -127 -3v50l46 3c34 2 37 9 37 72v195 c0 66 -4 63 -44 63h-37'], + 0xE0A3: [469,3,581,6,572,'410 -3v284c0 77 -44 127 -111 127c-61 0 -127 -68 -127 -113v-173c0 -63 3 -70 37 -72l45 -3v-50c-68 2 -95 3 -124 3s-56 -1 -124 -3v50l45 3c34 2 37 9 37 72v185c0 66 -4 73 -44 73h-37v48c53 6 105 20 156 41l9 -24v-67l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-173c0 -64 3 -70 37 -72l41 -3v-50c-69 3 -69 3 -83 3c-17 0 -18 0 -79 -3'], + 0xE0A4: [469,20,545,32,514,'279 469c137 0 235 -97 235 -232c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252zM261 422c-88 0 -136 -51 -136 -171c0 -142 66 -224 164 -224c81 0 132 58 132 173c0 136 -68 222 -160 222'], + 0xE0A5: [476,281,600,8,556,'10 380v48c53 6 105 20 156 41l9 -24v-76c109 185 375 118 379 -98c22 -157 -139 -376 -379 -258v-169c0 -63 3 -70 37 -72l46 -3v-50c-100 3 -100 3 -125 3s-25 0 -125 -3v50l46 3c34 2 37 9 37 72v463c0 66 -4 73 -44 73h-37zM313 398c-91 0 -138 -81 -138 -112v-184 c39 -41 80 -63 135 -63c90 0 157 83 157 195c0 104 -60 164 -154 164'], + 0xE0A6: [477,281,600,44,593,'591 380v48c-53 6 -105 20 -156 41l-9 -24v-76c-109 186 -375 118 -379 -98c-22 -157 139 -376 379 -258v-169c0 -63 -3 -70 -37 -72l-46 -3v-50c100 3 100 3 125 3s25 0 125 -3v50l-46 3c-34 2 -37 9 -37 72v463c0 66 4 73 44 73h37zM288 396c91 0 138 -79 138 -110 v-188c-39 -41 -80 -59 -135 -59c-90 0 -157 83 -157 195c0 104 60 162 154 162'], + 0xE0A7: [469,3,394,21,374,'23 380v48c53 6 105 20 156 41l9 -24v-72l56 55c23 23 53 41 83 41c18 0 36 -4 47 -11l-9 -120h-21c-16 32 -37 46 -67 46c-49 0 -89 -50 -89 -110v-152c0 -66 2 -69 47 -72l52 -3v-50c-123 3 -123 3 -143 3c-25 0 -51 -1 -123 -3v50l46 3c34 2 37 9 37 72v185 c0 66 -4 73 -44 73h-37'], + 0xE0A8: [469,20,423,30,391,'41 143h48v-41c0 -50 52 -75 125 -75c71 0 103 28 103 82c0 86 -94 60 -212 112c-46 21 -68 55 -68 103c0 90 71 145 187 145c41 0 77 -7 130 -25c-3 -31 -4 -55 -5 -113h-46v23c0 47 -51 71 -118 71c-61 0 -78 -17 -78 -67c0 -130 284 -37 284 -210 c0 -98 -93 -168 -224 -168c-46 0 -85 7 -137 24c8 40 11 70 11 139'], + 0xE0A9: [621,12,325,22,319,'98 371l-76 -4v39l78 35v63c0 30 -1 49 -4 79c31 10 61 23 85 38l12 -21c-8 -64 -11 -86 -11 -128v-35l137 6l-9 -72h-128v-251c0 -49 16 -60 55 -60c19 0 34 5 59 19l13 -26l-48 -53c-6 -7 -30 -12 -53 -12c-77 0 -110 32 -110 106v277'], + 0xE0AA: [469,12,602,18,581,'283 59c87 0 136 72 136 110v138c0 66 -4 73 -44 73h-37v48c53 6 105 20 156 41l9 -24v-323c0 -64 3 -70 37 -72l41 -3v-50c-69 3 -69 3 -83 3c-15 0 -16 0 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-136 0 -141 82 -141 171v148c0 66 -4 73 -44 73h-37 v48c53 6 105 20 156 41l9 -24v-275c0 -76 20 -111 100 -111'], + 0xE0AB: [459,7,564,6,539,'539 416l-31 -2c-20 -2 -34 -10 -56 -57l-159 -364h-50l-153 388c-11 25 -16 31 -31 33l-53 2v43c49 -2 97 -3 116 -3s19 0 117 3v-43l-49 -2c-16 -1 -25 -8 -25 -19l111 -294c38 83 111 258 123 287c0 16 -8 25 -24 26l-24 2v43c60 -2 78 -3 94 -3s34 1 94 3v-43'], + 0xE0AC: [469,7,833,6,808,'423 469l23 -1l134 -370l105 280c0 18 -14 30 -39 31l-34 2v48c82 -3 82 -3 98 -3s16 0 98 3v-48l-26 -2c-22 -3 -34 0 -64 -67l-137 -349h-46l-117 342l-159 -342h-57l-102 336c-25 78 -38 78 -66 80l-28 2v48c99 -3 99 -3 119 -3s20 0 119 3v-48l-40 -2 c-25 -1 -38 -9 -38 -24c0 -8 85 -272 88 -281'], + 0xE0AD: [469,3,515,20,496,'307 234l129 -180c11 -15 23 -15 35 -16l25 -3v-38c-52 3 -52 3 -62 3c-9 0 -9 0 -61 -3l-113 175l-135 -172h-105v35h17c10 0 23 -2 30 7l149 176l-120 172c-10 14 -32 20 -50 21l-21 2l-5 36l116 20c34 -34 45 -47 60 -69l76 -116l124 175h82v-33h-26'], + 0xE0AE: [459,283,555,12,544,'412 384c0 14 -4 23 -32 25l-26 2v48c79 -3 79 -3 95 -3s16 0 95 3v-48l-28 -2c-25 -3 -44 -30 -84 -121l-203 -448c-39 -86 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75l64 2c29 -3 40 6 89 106l23 61l-145 384c-13 35 -27 46 -52 49l-18 2v48c97 -3 97 -3 116 -3 s19 0 116 3v-48l-38 -2c-23 -1 -34 -9 -34 -23c0 -10 98 -283 105 -300'], + 0xE0AF: [462,3,499,16,466,'455 432l-314 -377h115c96 0 138 7 142 25l18 59h50l-6 -47c-7 -48 -9 -72 -9 -95l-276 3c-43 0 -49 0 -153 -3l-6 20l325 387h-123c-74 0 -92 -5 -96 -26l-12 -48h-50c6 69 7 81 9 132l248 -3c38 0 68 1 138 3v-30'], + 0xE0B0: [689,4,870,18,852,'852 667l-4 -7c-50 -18 -48 -5 -60 -70c-34 -213 -48 -378 -309 -383c0 -8 -5 -148 15 -163c13 -10 62 -11 79 -12l4 -3v-29l-4 -4c-47 2 -93 4 -139 4s-91 -1 -137 -4l-3 4v29l3 3c17 1 70 1 82 14c14 15 12 140 12 161c-245 2 -279 157 -306 362c-10 85 -18 76 -63 91 l-4 7l2 17l4 5c22 -3 116 -9 131 -21c34 -27 14 -320 132 -402c30 -20 69 -25 104 -25v219c0 30 3 163 -12 180c-11 13 -65 13 -82 14l-3 3v29l3 3c46 -2 91 -3 137 -3s92 1 139 3l4 -3v-29l-4 -3c-16 -1 -72 -1 -82 -14c-14 -17 -12 -147 -12 -177v-222c35 0 74 5 103 25 c120 82 99 375 134 402c13 11 109 18 129 21l6 -5'], + 0xE0B1: [704,6,824,34,791,'791 145c-7 -50 -14 -101 -17 -151c-103 4 -208 4 -311 6v68c159 21 206 165 206 306c0 170 -56 298 -250 298c-190 0 -263 -120 -263 -295c0 -142 45 -288 206 -309v-68c-103 -3 -207 -2 -310 -6c-5 50 -11 101 -18 151l4 3h20l3 -3c13 -52 13 -70 73 -70h119v7 c-134 56 -202 172 -202 316c0 223 167 306 368 306c199 0 356 -90 356 -306c0 -145 -69 -260 -203 -316v-7h119c60 0 60 17 73 70l4 3h19'], + 0xE0B2: [692,3,555,22,536,'536 689c-11 -44 -16 -106 -16 -157h-45v65c0 13 -1 24 -9 27c-53 20 -132 21 -176 21c-27 0 -46 -1 -74 -8v-512c0 -82 8 -88 51 -90l48 -3v-35c-52 2 -99 3 -145 3c-49 0 -96 -1 -148 -3v35l48 3c43 2 51 10 51 90v439c0 82 -8 88 -51 90l-48 3v35c55 -1 112 -3 169 -3 c67 0 159 3 216 3c45 0 90 -1 129 -3'], + 0xE0B3: [697,4,688,27,662,'27 6c65 122 267 584 310 691h25l300 -691l-6 -10c-101 3 -202 4 -303 4c-107 0 -213 0 -319 -4zM537 41l-204 523h-7l-213 -523h424'], + 0xE0B4: [709,20,785,22,764,'764 367c0 -215 -168 -387 -387 -387c-203 0 -355 140 -355 364c0 206 144 365 376 365c214 0 366 -120 366 -342zM657 336c0 198 -89 326 -275 326c-174 0 -253 -117 -253 -281c0 -175 82 -354 280 -354c167 0 248 125 248 309zM242 481c14 -19 -2 -81 66 -81h170 c55 0 54 33 63 77l4 4h18l3 -4c-1 -76 -1 -152 0 -228l-3 -4h-18l-4 4c-9 45 -8 78 -63 78h-170c-54 0 -53 -33 -63 -78l-3 -4h-19l-3 4c1 76 1 152 0 228l3 4h19'], + 0xE0B5: [697,4,753,17,729,'729 0l-3 -4c-40 2 -79 4 -119 4c-44 0 -88 -1 -133 -4l-3 4v30l3 4c17 0 83 -5 83 23l-188 502h-7l-204 -500c0 -27 55 -25 70 -25l5 -4v-30l-5 -4c-34 2 -69 4 -105 4c-34 0 -67 -2 -102 -3l-4 3v30l4 4c22 0 47 -1 64 13c37 29 281 612 298 650h20 c8 -20 242 -618 279 -651c13 -11 27 -10 44 -12l3 -4v-30'], + 0xE0B6: [689,4,692,42,651,'612 505l-4 -3l-24 -3l-4 4c-12 78 -6 112 -97 112h-275c-89 0 -83 -33 -96 -112l-5 -4l-23 3l-3 3c3 60 6 121 4 181l2 3c173 -4 346 -4 518 0l2 -3l-1 -39c-1 -47 2 -94 6 -142zM201 484c14 -18 -5 -84 66 -84h158c56 0 55 36 64 80l3 4h19l3 -4c-1 -78 -1 -155 0 -234 l-3 -3h-19c-14 14 4 84 -67 84h-158c-55 0 -55 -36 -63 -81l-3 -3h-19l-4 3c2 79 2 156 0 234l4 4h19zM651 189c-10 -62 -17 -126 -23 -189l-4 -4c-92 2 -185 4 -278 4c-92 0 -185 -2 -279 -4l-3 4c-5 63 -12 127 -22 189l4 5h24l5 -5c24 -83 23 -113 118 -113h306 c95 0 95 31 119 113l4 5h24'], + 0xE0B7: [689,4,812,25,788,'788 0l-4 -4c-44 1 -89 4 -135 4s-93 -2 -140 -4l-4 4v29l4 3c16 1 72 2 83 14c13 16 10 145 10 173v423h-391v-417c0 -28 -3 -164 11 -179c12 -13 65 -13 82 -14l4 -3v-29l-4 -4c-45 1 -90 4 -135 4c-47 0 -93 -2 -141 -4l-3 4v29l3 3c17 1 71 1 83 14 c13 16 11 141 11 170v263c0 28 3 145 -13 161c-12 12 -65 12 -81 13l-3 3v30l3 3c120 -1 240 -3 360 -3c132 0 265 0 396 3l4 -3v-30l-4 -3c-17 -1 -68 0 -81 -13c-15 -14 -11 -138 -11 -165v-261c0 -26 -3 -153 11 -168c12 -12 65 -13 81 -14l4 -3v-29'], + 0xE0B8: [689,4,684,45,643,'643 193c-6 -66 -9 -131 -10 -197c-102 2 -204 4 -305 4c-94 0 -188 -2 -283 -4v19c50 54 192 260 227 325c-65 111 -134 222 -210 325v16c174 1 349 0 522 8l4 -6c-7 -47 -9 -96 -12 -143l-3 -4h-22l-6 4c-13 89 -16 104 -114 104h-249c53 -84 110 -170 169 -251 l-203 -317h350c95 0 97 35 116 117l4 3h22'], + 0xE0B9: [691,4,733,3,735,'735 564l-1 -18l-20 -9c-9 54 -36 82 -90 82c-41 0 -80 -20 -110 -46c-93 -79 -102 -231 -102 -344c0 -30 -3 -168 11 -184c11 -12 65 -13 82 -14l3 -3v-28l-3 -4c-46 2 -92 4 -140 4c-45 0 -90 -1 -136 -4l-4 4v28l4 3c15 0 73 1 83 14c13 18 11 153 11 184v38 c0 106 -57 355 -195 355c-54 0 -78 -33 -104 -75l-9 -1l-12 12c33 73 85 133 171 133c170 0 179 -254 184 -375h25c12 145 43 375 237 375c78 0 119 -52 115 -127'], + 0xE0BA: [689,4,755,23,723,'723 372c0 -196 -136 -257 -311 -257c0 -21 -3 -54 7 -72c16 -11 65 -12 83 -13l5 -3v-27l-5 -4c-43 2 -86 4 -129 4c-42 0 -86 -1 -129 -4l-6 4v27l6 3c91 6 91 -9 91 85c-162 0 -312 57 -312 243c0 188 154 227 312 227c-3 84 -12 65 -91 70l-6 3v28l6 3 c43 -2 87 -3 129 -3c43 0 86 1 129 3l5 -3v-28l-5 -3c-80 -5 -88 13 -90 -70c147 0 311 -30 311 -213zM624 359c0 139 -80 194 -212 196v-412c135 4 212 81 212 216zM335 143v412c-136 -5 -213 -53 -213 -197c0 -134 78 -211 213 -215'], + 0xE0BB: [692,3,555,22,536,'536 689c-11 -44 -16 -110 -16 -161h-48v65c0 13 -1 24 -9 27c-53 20 -129 21 -173 21c-27 0 -46 -1 -74 -8v-504c0 -82 8 -88 51 -90l48 -3v-39c-52 2 -99 3 -145 3c-49 0 -96 -1 -148 -3v39l48 3c43 2 51 10 51 90v431c0 82 -8 88 -51 90l-48 3v39c55 -1 112 -3 169 -3 c67 0 159 3 216 3c45 0 90 -1 129 -3'], + 0xE0BC: [697,4,688,27,662,'27 6c65 122 267 584 310 691h25l300 -691l-6 -10c-101 3 -202 4 -303 4c-107 0 -213 0 -319 -4zM537 46l-199 518h-7l-213 -518h419'], + 0xE0BD: [709,20,785,22,764,'764 367c0 -215 -168 -387 -387 -387c-203 0 -355 140 -355 364c0 206 144 365 376 365c214 0 366 -120 366 -342zM657 336c0 198 -89 321 -275 321c-174 0 -253 -112 -253 -276c0 -175 82 -349 280 -349c167 0 248 120 248 304zM247 481c14 -19 -2 -81 66 -81h160 c55 0 54 33 63 77l4 4h23l3 -4c-1 -76 -1 -152 0 -228l-3 -4h-23l-4 4c-9 45 -8 78 -63 78h-160c-54 0 -53 -33 -63 -78l-3 -4h-24l-3 4c1 76 1 152 0 228l3 4h24'], + 0xE0BE: [697,4,753,17,729,'729 0l-3 -4c-40 2 -79 4 -119 4c-44 0 -88 -1 -133 -4l-3 4v30l3 4c17 0 83 -5 83 23l-178 502h-7l-214 -500c0 -27 55 -25 70 -25l5 -4v-30l-5 -4c-34 2 -69 4 -105 4c-34 0 -67 -2 -102 -3l-4 3v30l4 4c22 0 47 -1 64 13c37 29 281 612 298 650h20 c8 -20 242 -618 279 -651c13 -11 27 -10 44 -12l3 -4v-30'], + 0xE0BF: [689,4,692,42,651,'612 505l-4 -3l-27 -3l-4 4c-12 78 -6 112 -97 112h-269c-89 0 -83 -33 -96 -112l-5 -4l-26 3l-3 3c3 60 6 121 4 181l2 3c173 -4 346 -4 518 0l2 -3l-1 -39c-1 -47 2 -94 6 -142zM204 484c14 -18 -5 -84 66 -84h152c56 0 55 36 64 80l3 4h22l3 -4c-1 -78 -1 -155 0 -234 l-3 -3h-22c-14 14 4 84 -67 84h-152c-55 0 -55 -36 -63 -81l-3 -3h-22l-4 3c2 79 2 156 0 234l4 4h22zM651 189c-10 -62 -17 -126 -23 -189l-4 -4c-92 2 -185 4 -278 4c-92 0 -185 -2 -279 -4l-3 4c-5 63 -12 127 -22 189l4 5h27l5 -5c24 -83 23 -113 118 -113h300 c95 0 95 31 119 113l4 5h27'], + 0xE0C0: [689,4,812,25,788,'788 0l-4 -4c-44 1 -89 4 -135 4s-93 -2 -140 -4l-4 4v33l4 3c16 1 72 2 83 14c13 16 10 145 10 173v414h-391v-408c0 -28 -3 -164 11 -179c12 -13 65 -13 82 -14l4 -3v-33l-4 -4c-45 1 -90 4 -135 4c-47 0 -93 -2 -141 -4l-3 4v33l3 3c17 1 71 1 83 14 c13 16 11 141 11 170v254c0 28 3 145 -13 161c-12 12 -65 12 -81 13l-3 3v35l3 3c120 -1 240 -3 360 -3c132 0 265 0 396 3l4 -3v-35l-4 -3c-17 -1 -68 0 -81 -13c-15 -14 -11 -138 -11 -165v-252c0 -26 -3 -153 11 -168c12 -12 65 -13 81 -14l4 -3v-33'], + 0xE0C1: [689,4,684,45,643,'643 193c-6 -66 -9 -131 -10 -197c-102 2 -204 4 -305 4c-94 0 -188 -2 -283 -4v19c50 54 192 260 227 325c-65 111 -134 222 -210 325v16c174 1 349 0 522 8l4 -6c-7 -47 -9 -96 -12 -143l-3 -4h-26l-6 4c-13 89 -16 104 -114 104h-245l170 -263l-198 -305h340 c95 0 97 35 116 117l4 3h26'], + 0xE0C2: [691,4,733,3,735,'735 564l-1 -18l-24 -9c-9 54 -36 82 -90 82c-41 0 -76 -20 -106 -46c-93 -79 -102 -231 -102 -344c0 -30 -3 -164 11 -180c11 -12 65 -13 82 -14l3 -3v-32l-3 -4c-46 2 -92 4 -140 4c-45 0 -90 -1 -136 -4l-4 4v32l4 3c15 0 73 1 83 14c13 18 11 149 11 180v38 c0 106 -53 355 -191 355c-54 0 -78 -33 -104 -75l-9 -1l-16 12c33 73 85 133 171 133c170 0 179 -254 184 -375h25c12 145 43 375 237 375c78 0 119 -52 115 -127'], + 0xE0C3: [689,4,755,23,723,'723 372c0 -196 -136 -257 -311 -257c0 -21 -3 -51 7 -69c16 -11 65 -12 83 -13l5 -3v-30l-5 -4c-43 2 -86 4 -129 4c-42 0 -86 -1 -129 -4l-6 4v30l6 3c91 6 91 -12 91 82c-162 0 -312 57 -312 243c0 188 154 227 312 227c-3 84 -12 62 -91 67l-6 3v31l6 3 c43 -2 87 -3 129 -3c43 0 86 1 129 3l5 -3v-31l-5 -3c-80 -5 -88 16 -90 -67c147 0 311 -30 311 -213zM624 359c0 139 -80 189 -212 191v-402c135 4 212 76 212 211zM335 148v402c-136 -5 -213 -48 -213 -192c0 -134 78 -206 213 -210'], + 0xE0C4: [689,4,870,18,852,'852 662l-4 -7c-50 -18 -48 -5 -60 -70c-34 -213 -48 -373 -309 -378c0 -8 -5 -143 15 -158c13 -10 62 -11 79 -12l4 -3v-34l-4 -4c-47 2 -93 4 -139 4s-91 -1 -137 -4l-3 4v34l3 3c17 1 70 1 82 14c14 15 12 135 12 156c-245 2 -279 152 -306 357c-10 85 -18 76 -63 91 l-4 7l2 22l4 5c22 -3 116 -9 131 -21c34 -27 14 -315 132 -397c30 -20 69 -25 104 -25v209c0 30 3 163 -12 180c-11 13 -65 13 -82 14l-3 3v34l3 3c46 -2 91 -3 137 -3s92 1 139 3l4 -3v-34l-4 -3c-16 -1 -72 -1 -82 -14c-14 -17 -12 -147 -12 -177v-212c35 0 74 5 103 25 c120 82 99 370 134 397c13 11 109 18 129 21l6 -5'], + 0xE0C5: [704,6,824,34,791,'791 145c-7 -50 -14 -101 -17 -151c-103 4 -208 4 -311 6v68c159 21 206 165 206 306c0 170 -56 293 -250 293c-190 0 -263 -115 -263 -290c0 -142 45 -288 206 -309v-68c-103 -3 -207 -2 -310 -6c-5 50 -11 101 -18 151l9 3h20l3 -3c13 -52 13 -70 73 -70h109v7 c-134 56 -197 172 -197 316c0 223 167 306 368 306c199 0 356 -90 356 -306c0 -145 -64 -260 -198 -316v-7h109c60 0 60 17 73 70l4 3h24'], + 0xE0C6: [700,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-63 -173c0 -16 13 -23 48 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30l17 3c22 2 42 20 54 49 l270 621h52zM240 269h253l-129 298'], + 0xE0C7: [692,3,610,26,576,'298 -3c-37 0 -99 3 -124 3c-19 0 -40 -1 -109 -3v27l26 10c14 6 22 28 22 65v466c0 79 -4 86 -51 90l-36 3v34c139 -3 139 -3 158 -3c15 0 15 0 154 3h25c116 0 179 -48 179 -136c0 -52 -25 -99 -73 -132c-28 -19 -51 -28 -100 -38c77 -6 111 -15 149 -43 c38 -27 58 -64 58 -115c0 -94 -68 -231 -278 -231zM208 362v-308c25 -6 48 -8 77 -8c119 0 188 56 188 162c0 107 -63 156 -198 156c-19 0 -28 0 -67 -2zM208 637v-236c31 -2 44 -2 61 -2c114 0 174 47 174 134c0 83 -47 112 -154 112c-32 0 -55 -2 -81 -8'], + 0xE0C8: [709,20,708,22,670,'22 342c0 240 196 367 411 367c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-39v72c0 39 -93 71 -191 71c-172 0 -286 -114 -286 -298c0 -197 130 -319 325 -319c76 0 145 20 207 60l9 -18l-28 -50c-69 -36 -144 -54 -227 -54c-235 0 -393 146 -393 362'], + 0xE0C9: [692,3,773,22,751,'341 -3c-43 0 -87 3 -145 3c-23 0 -23 0 -139 -3v28l31 16c16 8 25 30 25 59v469c0 78 -5 82 -51 85l-40 3v35c114 -2 169 -3 206 -3c70 0 157 3 174 3c211 0 349 -121 349 -307c0 -107 -44 -215 -116 -286c-70 -69 -166 -102 -294 -102zM644 359 c6 256 -232 294 -436 280v-585c113 0 276 9 336 58c66 54 100 135 100 247'], + 0xE0CA: [692,3,610,22,572,'389 -3c-70 0 -186 3 -232 3c-28 0 -57 -1 -123 -3v34l36 3c47 4 51 11 51 90v441c0 79 -5 87 -51 90l-48 3v34c99 -2 144 -3 178 -3c46 0 139 3 232 3c44 0 75 -1 124 -3c-11 -44 -16 -88 -16 -148h-35v57c0 23 -3 28 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8 v-259c34 -2 68 -3 110 -3c66 0 90 3 108 11c4 8 7 17 8 26l5 48h34c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-34l-5 55l-8 25c-18 9 -41 12 -115 12c-45 0 -75 -1 -103 -3v-272c29 -6 47 -8 99 -8c90 0 163 5 184 12c28 10 37 100 38 109h35c-10 -52 -16 -106 -16 -164 c-136 -3 -136 -3 -167 -3'], + 0xE0CB: [692,3,555,22,536,'216 324v-204c0 -79 5 -84 51 -87l48 -3v-33c-59 2 -95 3 -147 3s-87 -1 -146 -3v33l48 3c46 3 51 8 51 87v443c0 79 -5 87 -51 90l-48 3v36c147 -3 147 -3 176 -3c25 0 60 0 109 2l107 1c43 0 73 -1 122 -3c-11 -44 -16 -92 -16 -152h-35v59c0 23 -3 28 -27 34 c-31 8 -87 14 -135 14c-59 0 -77 -1 -107 -8v-258c34 -2 68 -3 110 -3c66 0 94 0 112 8c4 8 7 17 8 26l5 52h30c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-30l-5 59l-8 25c-18 9 -45 9 -119 9c-45 0 -75 -1 -103 -3'], + 0xE0CC: [709,20,762,22,728,'412 -20c-207 0 -390 121 -390 361c0 222 170 368 428 368c80 0 131 -9 242 -41c-14 -54 -20 -101 -20 -152h-36v53c0 78 -125 93 -212 93c-187 0 -295 -107 -295 -300c0 -208 126 -335 324 -335c66 0 126 9 137 28c4 7 6 19 6 43v96c0 24 -9 33 -34 35l-83 7v35 c87 -2 93 -2 122 -2c31 0 34 0 123 2l4 -30l-29 -10c-10 -4 -11 -6 -11 -37v-163c-136 -38 -205 -51 -276 -51'], + 0xE0CD: [692,3,831,22,810,'616 123v217h-400v-217c0 -79 5 -87 51 -90l48 -3v-33c-59 2 -95 3 -147 3s-87 -1 -146 -3v33l48 3c46 3 51 11 51 90v443c0 79 -5 87 -51 90l-48 3v33c72 -2 96 -3 146 -3c52 0 74 0 147 3v-33l-48 -3c-46 -3 -51 -11 -51 -90v-172c20 -1 42 -2 83 -2h234 c41 0 62 1 83 2v172c0 79 -5 87 -51 90l-48 3v33c72 -2 96 -3 146 -3c52 0 74 0 147 3v-33l-48 -3c-46 -3 -51 -11 -51 -90v-443c0 -79 5 -87 51 -90l48 -3v-33c-59 2 -95 3 -147 3s-87 -1 -146 -3v33l48 3c46 3 51 11 51 90'], + 0xE0CE: [692,3,336,22,315,'216 564v-439c0 -79 5 -87 51 -90l48 -3v-35c-59 2 -95 3 -147 3s-87 -1 -146 -3v35l48 3c46 3 51 11 51 90v439c0 79 -5 87 -51 90l-48 3v35c72 -2 96 -3 146 -3c52 0 74 0 147 3v-35l-48 -3c-46 -3 -51 -11 -51 -90'], + 0xE0CF: [692,194,347,0,326,'5 -192l-5 76l11 6c23 -14 43 -15 67 -15c43 15 57 35 54 108v581c0 79 -5 87 -51 90l-48 3v35c72 -2 96 -3 146 -3c52 0 74 0 147 3v-35l-48 -3c-46 -3 -51 -11 -51 -90v-447c0 -121 -13 -171 -62 -231c-33 -41 -92 -88 -143 -80'], + 0xE0D0: [692,3,725,22,719,'216 320v-195c0 -79 5 -87 51 -90l48 -3v-35c-59 2 -95 3 -147 3s-87 -1 -146 -3v35l48 3c46 3 51 11 51 90v439c0 79 -5 87 -51 90l-48 3v35c72 -2 96 -3 146 -3c52 0 74 0 147 3v-35l-48 -3c-46 -3 -51 -11 -51 -90v-204l307 300v32c58 -2 75 -3 89 -3c17 0 17 0 80 3 v-35l-42 -2c-26 -1 -51 -14 -78 -38l-266 -240l330 -302c31 -29 47 -40 62 -41l21 -2v-35c-50 3 -52 3 -65 3c-10 0 -10 0 -80 -3l-348 330'], + 0xE0D1: [692,3,610,22,586,'565 0c-136 -3 -136 -3 -168 -3c-93 0 -210 3 -233 3c-26 0 -33 0 -99 -3v28l31 16c16 8 25 30 25 59v464c0 79 -5 87 -51 90l-48 3v35c72 -2 96 -3 146 -3c52 0 74 0 147 3v-35l-48 -3c-46 -3 -51 -11 -51 -90v-512c124 -6 286 -1 299 10c6 5 28 81 34 110h37 c-10 -97 -14 -129 -21 -172'], + 0xE0D2: [692,13,945,16,926,'732 125v445l-268 -583h-28l-277 591v-453c0 -78 5 -87 51 -90l44 -3v-35c-105 3 -107 3 -122 3c-17 0 -17 0 -116 -3v35l44 3c46 3 51 12 51 90v439c0 78 -5 87 -51 90l-44 3v35c80 -3 80 -3 95 -3s15 0 95 3l264 -556l262 556c80 -3 80 -3 95 -3c17 0 17 0 93 3v-35 l-42 -3c-46 -3 -51 -12 -51 -90v-439c0 -79 5 -87 51 -90l48 -3v-35c-59 2 -95 3 -151 3c-52 0 -82 -1 -128 -3v35l34 3c47 4 51 11 51 90'], + 0xE0D3: [692,6,830,17,813,'137 689l54 3l473 -594v461c0 78 -5 87 -51 90l-44 3v40c99 -3 99 -3 116 -3c15 0 23 0 128 3v-40l-44 -3c-46 -3 -51 -12 -51 -90v-565l-87 2l-465 587v-453c0 -78 5 -87 51 -90l44 -3v-40c-105 3 -113 3 -128 3c-17 0 -17 0 -116 -3v40l44 3c46 3 51 12 51 90v429 c0 78 -5 87 -51 90l-44 3v40c55 -2 64 -2 120 -3'], + 0xE0D4: [709,20,785,22,764,'402 709c222 0 362 -132 362 -342c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368zM385 651c-155 0 -243 -99 -243 -275c0 -203 108 -338 267 -338c147 0 235 111 235 299c0 198 -96 314 -259 314'], + 0xE0D5: [692,3,603,22,580,'23 692c160 -3 160 -3 182 -3c102 0 153 3 170 3c127 0 205 -59 205 -155c0 -120 -105 -213 -242 -213c-20 0 -34 1 -58 6l-10 44c26 -8 41 -10 62 -10c87 0 148 55 148 145c0 95 -58 137 -166 137c-34 0 -63 -4 -98 -12v-506c0 -79 5 -87 51 -90l48 -3v-38 c-59 2 -95 3 -147 3s-87 -1 -146 -3v38l48 3c46 3 51 11 51 90v433c0 74 -8 87 -53 90l-45 3v38'], + 0xE0D6: [709,176,785,22,764,'401 -19c106 -13 189 -86 304 -86c9 0 20 1 59 6v-29l-84 -48l-254 72c-31 10 -59 15 -78 15c-10 0 -75 -34 -87 -40l2 40c56 43 90 58 109 64l16 6h-11c-215 0 -355 143 -355 362c0 218 152 366 376 366s366 -131 366 -338c0 -144 -74 -273 -195 -343 c-52 -29 -89 -40 -168 -47zM129 375c0 -128 57 -344 283 -344c157 0 245 104 245 304c0 210 -100 324 -272 324c-165 0 -256 -96 -256 -284'], + 0xE0D7: [692,3,667,22,669,'216 632v-502c0 -79 5 -87 51 -90l48 -3v-40c-59 2 -95 3 -147 3s-87 -1 -146 -3v40l48 3c46 3 51 11 51 90v429c0 78 -5 87 -51 90l-41 3v40c140 -3 140 -3 173 -3c34 0 50 3 180 3c124 0 194 -54 194 -150c0 -58 -28 -108 -80 -145c-33 -23 -59 -34 -115 -48l227 -288 c13 -17 29 -23 61 -26v-38c-63 3 -63 3 -72 3c-11 0 -21 0 -68 -3l-277 373l6 12c13 -1 22 -1 29 -1c116 0 189 48 189 140c0 85 -58 123 -162 123c-34 0 -64 -4 -98 -12'], + 0xE0D8: [709,20,524,24,503,'419 179c0 220 -395 42 -395 305c0 131 108 225 257 225c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-54l-6 57c-3 29 -14 44 -47 61c-27 15 -44 10 -83 10c-88 0 -149 -47 -149 -131c0 -175 249 -88 354 -187c28 -26 41 -59 41 -106c0 -145 -126 -250 -300 -250 c-58 0 -116 13 -173 38c6 45 8 67 8 113c0 6 0 22 -1 40h47l8 -67c5 -41 68 -69 148 -69c104 0 179 54 179 144'], + 0xE0D9: [692,3,612,18,595,'379 689c43 0 22 0 216 3c-5 -57 -7 -96 -7 -161h-41l-4 79c-1 24 -12 33 -40 33h-145l-4 -513c0 -79 5 -87 51 -90l48 -3v-40c-59 2 -95 3 -147 3s-87 -1 -146 -3v40l48 3c46 3 51 11 51 90l-4 513h-145c-28 0 -39 -9 -40 -33l-4 -79h-41c0 65 -2 104 -7 161l68 -1 c71 -1 125 -2 135 -2h158'], + 0xE0DA: [692,20,777,12,759,'378 -20c-177 0 -267 62 -267 234v345c0 79 -5 87 -51 90l-48 3v40c72 -2 96 -3 146 -3c52 0 74 0 147 3v-40l-48 -3c-46 -3 -51 -11 -51 -90v-334c0 -128 60 -183 199 -183c145 0 208 66 208 207v310c0 78 -5 87 -51 90l-39 3v40c99 -3 99 -3 116 -3c15 0 15 0 120 3 v-40l-39 -3c-46 -3 -51 -12 -51 -90v-279c0 -211 -83 -300 -291 -300'], + 0xE0DB: [692,9,721,8,706,'274 652l-56 -3c-20 -1 -32 -8 -32 -20c0 -4 188 -504 189 -508c6 15 202 492 202 502c0 15 -13 25 -35 26l-52 3v40c16 -1 33 -1 38 -1c29 -1 52 -2 70 -2l108 3v-40l-30 -3c-20 -3 -31 -18 -54 -72l-174 -411c-34 -80 -45 -113 -64 -175h-50c-15 54 -26 89 -58 165 l-188 452c-13 30 -23 39 -44 41l-36 3v40c110 -3 110 -3 133 -3s23 0 133 3v-40'], + 0xE0DC: [700,9,1000,8,984,'734 -9h-50l-196 545l-210 -545h-50l-142 608c-9 36 -21 47 -50 50l-28 3v40c77 -2 119 -3 126 -3l126 3v-40l-42 -3c-27 -2 -37 -11 -37 -33c0 -10 91 -460 94 -472l224 556h32l187 -563l143 488c-1 16 -12 21 -47 24l-40 3v40c95 -3 95 -3 105 -3l105 3v-40l-32 -3 c-22 -2 -32 -11 -38 -29'], + 0xE0DD: [700,3,666,14,648,'648 32v-35c-43 2 -66 3 -71 3c-12 0 -12 0 -74 -3l-177 299l-209 -299c-43 3 -43 3 -51 3s-8 0 -52 -3v35l26 3c22 3 34 14 59 48l189 250l-122 216c-31 56 -68 88 -92 90l-45 3l-2 31l141 27c19 -10 34 -32 57 -70l128 -211l185 270h101v-35l-41 -3 c-15 -2 -29 -12 -68 -68l-148 -211l170 -267c35 -54 47 -67 66 -70'], + 0xE0DE: [705,3,666,9,654,'9 680l120 25c18 0 60 -51 91 -108l140 -256c40 61 173 279 211 353h83v-15c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-119c0 -79 5 -87 51 -90l48 -3v-40c-59 2 -95 3 -147 3s-87 -1 -146 -3v40l48 3c46 3 51 11 51 90v132c0 16 -3 30 -9 40l-124 211 c-42 73 -94 125 -128 130l-29 3v34'], + 0xE0DF: [692,3,666,15,638,'637 663l-486 -615h264c153 0 167 2 174 68l6 57h43c-5 -55 -6 -90 -6 -176l-305 3l-312 -3v28l485 619h-228c-122 0 -139 -8 -142 -47l-6 -71l-44 4c2 37 3 55 3 81s-1 44 -3 81l165 -1l232 -2l156 3'], + 0xE0E0: [700,3,777,15,756,'408 700l242 -568c35 -81 46 -98 72 -102l34 -3v-30c-108 3 -108 3 -127 3c-16 0 -16 0 -139 -3v30l47 3c25 2 31 9 31 20c0 9 -4 22 -21 64l-46 115h-268l-63 -173c0 -16 3 -23 38 -26l37 -3v-30c-108 3 -108 3 -121 3c-16 0 -16 0 -109 -3v30l17 3c22 2 42 20 54 49 l270 621h52zM250 269h233l-119 298'], + 0xE0E1: [692,3,610,26,576,'298 -3c-37 0 -99 3 -124 3c-19 0 -40 -1 -109 -3v41l26 10c14 6 22 28 22 65v439c0 79 -4 86 -51 90l-36 3v47c139 -3 139 -3 158 -3c15 0 15 0 154 3h25c116 0 179 -48 179 -136c0 -52 -25 -95 -73 -128c-28 -19 -51 -33 -100 -43c77 -6 111 -10 149 -38 c38 -27 58 -68 58 -119c0 -94 -68 -231 -278 -231zM208 349v-286c25 -6 48 -8 77 -8c119 0 188 47 188 153c0 107 -63 143 -198 143c-19 0 -28 0 -67 -2zM208 629v-220c31 -2 44 -2 61 -2c114 0 174 39 174 126c0 83 -47 104 -154 104c-32 0 -55 -2 -81 -8'], + 0xE0E2: [709,20,708,22,670,'22 342c0 240 196 367 411 367c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-49v72c0 39 -83 61 -181 61c-172 0 -286 -104 -286 -288c0 -197 130 -309 325 -309c76 0 145 20 207 60l9 -28l-28 -50c-69 -36 -144 -54 -227 -54c-235 0 -393 146 -393 362'], + 0xE0E3: [692,3,773,22,751,'341 -3c-43 0 -87 3 -145 3c-23 0 -23 0 -139 -3v32l31 16c16 8 25 30 25 59v461c0 78 -5 82 -51 85l-40 3v39c114 -2 169 -3 206 -3c70 0 157 3 174 3c211 0 349 -121 349 -307c0 -107 -44 -215 -116 -286c-70 -69 -166 -102 -294 -102zM644 359 c6 256 -232 290 -436 276v-577c113 0 276 9 336 58c66 54 100 131 100 243'], + 0xE0E4: [692,3,610,22,572,'389 -3c-70 0 -186 3 -232 3c-28 0 -57 -1 -123 -3v37l36 3c47 4 51 11 51 90v435c0 79 -5 87 -51 90l-48 3v37c99 -2 144 -3 178 -3c46 0 139 3 232 3c44 0 75 -1 124 -3c-11 -44 -16 -88 -16 -148h-35v54c0 23 -3 28 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8 v-253c34 -2 68 -3 110 -3c66 0 87 3 105 11c4 8 7 17 8 26l5 45h37c-3 -100 -3 -100 -3 -116c0 -18 0 -18 3 -111h-37l-5 52l-8 25c-18 9 -38 12 -112 12c-45 0 -75 -1 -103 -3v-266c29 -6 47 -8 99 -8c90 0 163 5 184 12c28 10 37 97 38 106h35c-10 -52 -16 -106 -16 -164 c-136 -3 -136 -3 -167 -3'], + 0xE0E5: [692,3,555,22,536,'216 321v-201c0 -79 5 -81 51 -84l48 -3v-36c-59 2 -95 3 -147 3s-87 -1 -146 -3v36l48 3c46 3 51 5 51 84v440c0 79 -5 87 -51 90l-48 3v39c147 -3 147 -3 176 -3c25 0 60 0 109 2l107 1c43 0 73 -1 122 -3c-11 -44 -16 -92 -16 -152h-35v56c0 23 -3 28 -27 34 c-31 8 -87 14 -135 14c-59 0 -77 -1 -107 -8v-252c34 -2 68 -3 110 -3c66 0 94 0 112 8c4 8 7 17 8 26l5 49h30v-227h-30l-5 56l-8 25c-18 9 -45 9 -119 9c-45 0 -75 -1 -103 -3'], + 0xE0E6: [709,20,762,22,728,'412 -20c-207 0 -390 121 -390 361c0 222 170 368 428 368c80 0 131 -9 242 -41c-14 -54 -20 -101 -20 -152h-41v53c0 78 -120 88 -207 88c-187 0 -295 -102 -295 -295c0 -208 126 -330 324 -330c66 0 126 4 137 23c4 7 6 19 6 43v91c0 24 -9 33 -34 35l-83 7v40 c87 -2 93 -2 122 -2c31 0 34 0 123 2l4 -35l-29 -10c-10 -4 -11 -6 -11 -37v-158c-136 -38 -205 -51 -276 -51'], + 0xE0E7: [692,3,831,22,810,'616 126v211h-400v-214c0 -79 5 -84 51 -87l48 -3v-36c-59 2 -95 3 -147 3s-87 -1 -146 -3v36l48 3c46 3 51 8 51 87v440c0 79 -5 87 -51 90l-48 3v36c72 -2 96 -3 146 -3c52 0 74 0 147 3v-36l-48 -3c-46 -3 -51 -11 -51 -90v-165c20 -1 42 -2 83 -2h234c41 0 62 1 83 2 v165c0 79 -5 87 -51 90l-48 3v36c72 -2 96 -3 146 -3c52 0 74 0 147 3v-36l-48 -3c-46 -3 -51 -11 -51 -90v-437c0 -79 5 -87 51 -90l48 -3v-36c-59 2 -95 3 -147 3s-87 -1 -146 -3v36l48 3c46 3 51 11 51 90'], + 0xE0E8: [692,3,336,22,315,'216 559v-429c0 -79 5 -87 51 -90l48 -3v-40c-59 2 -95 3 -147 3s-87 -1 -146 -3v40l48 3c46 3 51 11 51 90v429c0 79 -5 87 -51 90l-48 3v40c72 -2 96 -3 146 -3c52 0 74 0 147 3v-40l-48 -3c-46 -3 -51 -11 -51 -90'], + 0xE0E9: [692,194,347,0,326,'5 -192l-5 76l11 6c23 -14 43 -10 67 -10c38 23 49 42 54 103v576c0 79 -5 87 -51 90l-48 3v40c72 -2 96 -3 146 -3c52 0 74 0 147 3v-40l-48 -3c-46 -3 -51 -11 -51 -90v-442c0 -121 -13 -171 -62 -231c-33 -41 -92 -88 -143 -80'], + 0xE0EA: [692,3,725,22,719,'216 315v-185c0 -79 5 -87 51 -90l48 -3v-40c-59 2 -95 3 -147 3s-87 -1 -146 -3v40l48 3c46 3 51 11 51 90v429c0 79 -5 87 -51 90l-48 3v40c72 -2 96 -3 146 -3c52 0 74 0 147 3v-40l-48 -3c-46 -3 -51 -11 -51 -90v-194l307 290v37c58 -2 75 -3 89 -3c17 0 17 0 80 3 v-40l-42 -2c-26 -1 -51 -14 -78 -38l-266 -240l330 -292c31 -29 47 -40 62 -41l21 -2v-40c-50 3 -52 3 -65 3c-10 0 -10 0 -80 -3l-348 325'], + 0xE0EB: [692,3,610,22,586,'565 0c-136 -3 -136 -3 -168 -3c-93 0 -210 3 -233 3c-26 0 -33 0 -99 -3v33l31 16c16 8 25 30 25 59v454c0 79 -5 87 -51 90l-48 3v40c72 -2 96 -3 146 -3c52 0 74 0 147 3v-40l-48 -3c-46 -3 -51 -11 -51 -90v-502c124 -6 286 -1 299 10c6 5 28 76 34 105h37 c-10 -97 -14 -129 -21 -172'], + 0xE0EC: [692,13,945,16,926,'732 130v435l-263 -578h-33l-272 591v-448c0 -78 5 -87 51 -90l44 -3l-5 -40c-105 3 -107 3 -122 3c-17 0 -17 0 -116 -3v40l44 3c46 3 51 12 51 90v429c0 78 -5 87 -51 90l-44 3v40c80 -3 80 -3 95 -3s15 0 95 3l264 -556l262 556c80 -3 80 -3 95 -3c17 0 17 0 93 3v-40 l-42 -3c-46 -3 -51 -12 -51 -90v-429c0 -79 5 -87 51 -90l48 -3v-40c-59 2 -95 3 -151 3c-52 0 -82 -1 -128 -3v40l34 3c47 4 51 11 51 90'], + 0xE0ED: [692,6,830,17,813,'137 689l54 3l463 -594v452c0 78 -5 87 -51 90l-44 3v49c99 -3 99 -3 116 -3c15 0 33 0 138 3v-49l-44 -3c-46 -3 -51 -12 -51 -90v-556l-87 2l-455 587v-443c0 -78 5 -87 51 -90l44 -3v-50c-105 3 -123 3 -138 3c-17 0 -17 0 -116 -3v50l44 3c46 3 51 12 51 90v409 c0 78 -5 87 -51 90l-44 3v50c55 -2 64 -2 120 -3'], + 0xE0EE: [691,2,765,41,745,'402 691c210 0 343 -126 343 -325c0 -209 -161 -368 -374 -368c-192 0 -330 144 -330 343c0 209 144 350 361 350zM385 636c-147 0 -230 -94 -230 -262c0 -192 102 -321 253 -321c140 0 223 106 223 284c0 188 -91 299 -246 299'], + 0xE0EF: [692,3,603,22,580,'23 692c160 -3 160 -3 182 -3c102 0 153 3 170 3c127 0 205 -59 205 -155c0 -120 -105 -213 -242 -213c-20 0 -34 1 -58 6l-10 52c26 -8 41 -10 62 -10c87 0 148 47 148 137c0 95 -58 129 -166 129c-34 0 -63 -4 -98 -12v-490c0 -79 5 -87 51 -90l48 -3v-46 c-59 2 -95 3 -147 3s-87 -1 -146 -3v46l48 3c46 3 51 11 51 90v417c0 74 -8 87 -53 90l-45 3v46'], + 0xE0F0: [709,176,785,22,764,'401 -19c106 -13 189 -86 304 -86c9 0 20 9 59 14v-37l-84 -48l-254 72c-31 10 -59 15 -78 15c-10 0 -75 -35 -87 -41v49c56 43 92 50 111 56l16 6h-11c-215 0 -355 143 -355 362c0 218 152 366 376 366s366 -131 366 -338c0 -144 -74 -273 -195 -343 c-52 -29 -89 -40 -168 -47zM129 375c0 -128 57 -336 283 -336c157 0 245 96 245 296c0 210 -100 316 -272 316c-165 0 -256 -88 -256 -276'], + 0xE0F1: [692,3,667,22,669,'216 622v-482c0 -79 5 -87 51 -90l48 -3v-50c-59 2 -95 3 -147 3s-87 -1 -146 -3v50l48 3c46 3 51 11 51 90v409c0 78 -5 87 -51 90l-41 3v50c140 -3 140 -3 173 -3c34 0 50 3 180 3c124 0 194 -54 194 -150c0 -58 -28 -108 -80 -145c-33 -23 -59 -34 -115 -48l227 -278 c13 -17 29 -23 61 -26v-48c-63 3 -63 3 -72 3c-11 0 -21 0 -68 -3l-284 383l6 12c13 -1 22 -1 29 -1c116 0 196 38 196 130c0 85 -58 113 -162 113c-34 0 -64 -4 -98 -12'], + 0xE0F2: [709,20,524,24,503,'419 179c0 220 -395 42 -395 305c0 131 108 225 257 225c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-61l-6 57c-3 29 -68 67 -123 64c-64 8 32 -1 0 0c-88 0 -149 -40 -149 -124c0 -175 249 -88 354 -187c28 -26 41 -59 41 -106c0 -145 -126 -250 -300 -250 c-58 0 -116 13 -173 38c6 45 8 67 8 113c0 6 0 22 -1 40h54l8 -67c5 -41 61 -62 141 -62c104 0 179 47 179 137'], + 0xE0F3: [692,3,612,18,595,'379 689c43 0 22 0 216 3c-5 -57 -7 -96 -7 -161h-47l-4 74c-1 24 -12 33 -40 33h-139l-4 -502c-1 -79 5 -87 51 -90l48 -3v-46c-59 2 -95 3 -147 3s-87 -1 -146 -3v46l48 3c46 3 52 11 51 90l-4 502h-139c-28 0 -39 -9 -40 -33l-4 -74h-47c0 65 -2 104 -7 161l68 -1 c71 -1 125 -2 135 -2h158'], + 0xE0F4: [692,20,777,12,759,'378 -20c-177 0 -267 62 -267 234v340c0 79 -5 87 -51 90l-48 3v45c72 -2 96 -3 146 -3c52 0 74 0 147 3v-45l-48 -3c-46 -3 -51 -11 -51 -90v-329c0 -128 60 -178 199 -178c145 0 204 61 204 202v304c0 78 -5 87 -51 90l-35 3v46c99 -3 99 -3 116 -3c15 0 15 0 120 3 v-46l-35 -3c-46 -3 -51 -12 -51 -90v-273c0 -211 -87 -300 -295 -300'], + 0xE0F5: [692,9,721,8,706,'274 643l-56 -3c-20 -1 -32 -8 -32 -20c0 -4 179 -495 180 -499c6 15 211 483 211 493c0 15 -13 25 -35 26l-52 3v49c16 -1 33 -1 38 -1c29 -1 52 -2 70 -2l108 3v-49l-30 -3c-20 -3 -31 -18 -54 -72l-174 -402c-34 -79 -45 -113 -64 -175h-50c-15 54 -26 89 -58 165 l-188 443c-13 30 -23 39 -44 41l-36 3v49c110 -3 110 -3 133 -3s23 0 133 3v-49'], + 0xE0F6: [700,9,1000,8,984,'734 -9h-50l-196 545l-210 -545h-50l-142 600c-9 36 -21 47 -50 50l-28 3v48c77 -2 119 -3 126 -3l126 3v-48l-42 -3c-27 -2 -37 -11 -37 -33c0 -10 82 -452 85 -464l233 556h32l178 -563l152 480c-1 16 -12 21 -47 24l-40 3v48c95 -3 95 -3 105 -3l105 3v-48l-32 -3 c-22 -2 -32 -11 -38 -29'], + 0xE0F7: [700,3,666,14,648,'648 37v-40c-43 2 -66 3 -71 3c-12 0 -12 0 -74 -3l-175 287l-211 -287c-43 3 -43 3 -51 3s-8 0 -52 -3v40l26 3c22 3 34 14 59 48l189 245l-122 212c-31 56 -68 88 -92 90l-45 3l-2 35l141 27c19 -10 34 -36 57 -74l128 -207l185 270h101v-39l-41 -3 c-15 -2 -31 -11 -68 -68l-138 -211l160 -258c34 -55 47 -67 66 -70'], + 0xE0F8: [705,3,666,9,654,'9 680l120 25c18 0 60 -54 91 -111l137 -253l211 353h86v-15c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-112c0 -79 5 -87 51 -90l48 -3v-47c-59 2 -95 3 -147 3s-87 -1 -146 -3v47l48 3c46 3 51 11 51 90v125c0 16 -3 30 -9 40l-124 208 c-42 73 -94 125 -128 130l-29 3v37'], + 0xE0F9: [692,3,666,15,638,'637 663l-486 -611h259c153 0 167 -2 174 64l6 57h48c-5 -55 -6 -90 -6 -176l-305 3l-312 -3v28l485 615h-223c-122 0 -139 -8 -142 -47l-6 -67l-49 4c2 37 3 55 3 81s-1 44 -3 81l165 -1l232 -2l156 3'], + 0xE0FA: [713,15,448,19,462,'462 622c0 -101 -137 -203 -207 -249c-16 -51 -73 -209 -73 -275c0 -22 10 -40 34 -40c41 0 73 68 87 99l26 -9c-32 -74 -84 -163 -176 -163c-61 0 -102 51 -102 110c0 52 22 110 36 160l-55 -38l-13 22l81 56l53 173c32 104 66 245 200 245c56 0 109 -27 109 -91z M429 618c0 22 -12 46 -37 46c-72 0 -112 -208 -125 -251c56 40 162 131 162 205'], + 0xE0FB: [713,13,438,16,455,'455 632c0 -109 -157 -215 -237 -269c-17 -57 -72 -206 -72 -266c0 -38 21 -71 62 -71c64 0 114 75 140 125l19 -8c-35 -70 -100 -156 -187 -156c-67 0 -105 50 -105 114c0 62 31 133 48 191l-97 -65l-10 18l117 80c30 107 72 388 234 388c49 0 88 -31 88 -81zM425 625 c0 31 -21 49 -50 49c-59 0 -87 -78 -101 -125l-46 -154c64 46 197 143 197 230'], + 0xE0FC: [701,13,562,30,492,'352 701c103 0 122 -61 122 -92c0 -67 -55 -127 -131 -164c-25 -11 -53 -31 -93 -42c26 1 44 2 55 2c107 0 187 -76 187 -189c0 -118 -91 -229 -246 -229c-170 0 -216 128 -216 248c0 196 117 466 322 466zM333 677c-84 0 -168 -109 -209 -291c155 46 250 145 277 224 c0 53 -37 67 -68 67zM266 15c112 0 141 122 141 186c0 68 -31 183 -161 183c-38 0 -79 -9 -125 -30c-40 -66 -15 -280 76 -323c19 -10 42 -16 69 -16'], + 0xE0FD: [702,15,620,62,583,'300 702c169 0 242 -246 227 -397c17 -3 35 -5 53 -6l3 -8c-19 -16 -40 -30 -63 -39c-22 -108 -87 -267 -220 -267c-18 0 -38 2 -54 13c-59 40 -79 241 -126 241c-17 0 -32 -19 -42 -30h-7l-8 8l-1 8c21 23 74 79 111 79c67 0 53 -271 166 -271c97 0 135 155 143 232 c-124 31 -303 115 -326 257c-15 95 48 180 144 180zM483 317c-2 18 -3 36 -6 54c-15 93 -78 293 -205 293c-53 0 -88 -42 -79 -95c19 -120 190 -206 290 -252'], + 0xE0FE: [485,277,681,8,606,'602 332c30 -190 -108 -332 -293 -336l11 -247c-21 -7 -42 -15 -63 -26l-11 8c3 87 9 175 5 263c-122 17 -219 79 -239 207c-26 162 97 261 242 284l7 -10l-4 -7c-123 -36 -185 -125 -163 -262c14 -90 58 -165 155 -189c-2 69 -10 244 9 305c26 82 114 151 199 151 c87 0 133 -61 145 -141zM534 317c-9 58 -38 123 -108 123c-121 0 -116 -173 -117 -262l-2 -163c157 17 253 141 227 302'], + 0xE0FF: [431,0,524,78,455,'309 390v-329h105c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-295c-15 0 -41 0 -41 30c0 31 25 31 41 31h121v309h-113c-15 0 -41 0 -41 31c0 30 26 30 41 30h142c34 0 40 -10 40 -41'], + 0xE100: [431,228,524,48,368,'368 390v-434c0 -64 -36 -184 -181 -184c-41 0 -139 0 -139 76c0 29 22 46 45 46c21 0 44 -17 44 -45c0 -7 0 -9 -1 -12c15 -2 27 -4 56 -4c23 0 54 0 81 38c26 35 26 73 26 90v409h-130c-15 0 -40 0 -40 30c0 31 25 31 41 31h158c34 0 40 -10 40 -41'], + 0xE101: [451,0,401,80,370,'80 0l161 451h129l-162 -451h-128'], + 0xE102: [451,227,301,-110,305,'69 -52l109 503h127l-110 -511c-20 -94 -96 -167 -180 -167c-29 0 -80 10 -125 58l41 77c18 -18 42 -26 71 -26c17 0 33 10 47 32c15 12 18 23 20 34'], + 0xE103: [444,0,237,81,250,'81 0l94 444h75l-94 -444h-75'], + 0xE104: [444,205,265,-97,278,'2 -141c83 0 92 72 92 72l109 513h75l-108 -508c-17 -79 -83 -141 -155 -141c-26 0 -72 6 -112 34l28 61c18 -21 42 -31 71 -31'], + 0xE105: [458,0,254,61,194,'194 410v-362c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v362c0 37 12 48 48 48h37c41 0 48 -16 48 -48'], + 0xE106: [458,205,285,-71,224,'-46 -99c8 0 30 -22 75 -22c62 0 62 40 62 66v465c0 35 10 48 48 48h37c41 0 48 -16 48 -48v-442c0 -99 -39 -173 -149 -173c-63 0 -146 28 -146 47c0 3 2 11 9 33c5 19 6 26 16 26'], + 0xE107: [444,0,237,81,156,'156 444v-444h-75v444h75'], + 0xE108: [444,205,265,-61,184,'-61 -171l15 61c22 -20 48 -31 77 -31c28 0 78 9 78 73v512h75v-503c0 -94 -62 -146 -125 -146c-26 0 -72 6 -120 34'], + 0xE109: [540,11,312,22,302,'302 113l-123 -124c-45 28 -81 55 -81 113v250c0 17 -1 68 -27 68c-15 0 -28 -12 -37 -22l-12 15c45 41 93 81 133 127c33 -41 70 -74 116 -100c-42 -14 -51 -40 -51 -81v-212c0 -18 6 -46 28 -46c17 0 30 15 39 27'], + 0xE10A: [539,168,322,35,289,'289 -101l-8 -15c-10 3 -21 4 -32 4c-70 0 -126 -56 -192 -56c-5 0 -11 1 -16 1v25c70 0 70 86 70 136v357c0 17 -2 69 -27 69c-13 0 -27 -13 -36 -22l-13 14c46 41 93 81 134 127c33 -43 69 -73 116 -99c-42 -15 -52 -40 -52 -82v-315c0 -51 4 -117 56 -144'], + 0xE10B: [442,0,388,42,346,'48 431c20 0 162 11 204 11c6 0 20 1 28 -6v-387c4 -12 14 -16 48 -17h18v-32c-18 4 -286 3 -304 0v32h22c38 2 42 4 48 18c0 4 1 13 1 157c0 153 0 159 -3 170c-5 19 -26 22 -52 22h-12c0 16 0 32 2 32zM234 363c-2 1 -42 45 -76 0c-4 -10 -2 -146 -2 -298 c44 -23 56 -8 78 -3v301'], + 0xE10C: [442,210,409,-35,316,'290 442c6 0 19 1 26 -6l-2 -516c-15 -67 -85 -122 -165 -130c-25 -2 -151 5 -178 61c-14 29 -5 61 16 71c26 15 58 -4 66 -28c8 -17 10 -37 -27 -57c17 -8 71 -29 123 -11c-1 90 7 464 -4 554c-5 9 -22 19 -73 19h-13v32c21 0 188 11 231 11zM272 363 c-12 37 -60 30 -74 0l-1 -530c38 19 65 46 75 90v440'], + 0xE10D: [501,4,270,32,258,'258 69c-38 -21 -74 -45 -107 -73c-33 28 -54 71 -54 115c0 84 6 167 6 251c0 21 -5 50 -32 50c-14 0 -28 -7 -39 -14v18c39 24 76 52 108 85c25 -30 51 -63 89 -75v-9c-43 -5 -52 -34 -54 -73c-4 -70 -6 -141 -6 -212c0 -20 6 -64 33 -64c20 0 39 13 56 23v-22'], + 0xE10E: [504,169,270,32,229,'229 421c-42 -6 -51 -49 -51 -86v-357c0 -34 4 -72 37 -89v-16c-12 3 -23 5 -35 5c-60 0 -98 -45 -140 -47l-4 17c67 20 70 111 70 169v337c0 19 2 66 -26 66c-18 0 -34 -9 -48 -19v18c39 24 76 52 108 85c24 -30 52 -62 89 -75v-8'], + 0xE10F: [431,19,444,55,394,'120 -19c-42 0 -65 29 -65 71c0 38 4 69 88 188l138 185c1 2 8 6 12 6h74c13 0 17 -13 12 -22l-215 -287c-9 -9 -40 -63 -40 -69c-6 -11 0 -16 4 -16c45 0 176 117 222 160c4 5 12 6 17 3l21 -14c8 -6 9 -16 2 -23c-126 -126 -216 -182 -270 -182'], + 0xE110: [431,307,870,55,820,'127 -252c48 0 129 76 196 178c-35 -12 -214 -124 -213 -168c3 -9 10 -12 17 -10zM122 -307c-31 0 -67 15 -67 65c0 99 183 192 295 248l318 419c2 2 9 6 11 6h76c13 0 18 -13 11 -22l-257 -336c56 30 168 99 273 174c5 5 15 4 18 -1l16 -18c6 -6 6 -17 -1 -22 c-78 -62 -376 -229 -376 -229c-33 -48 -189 -284 -317 -284'], + 0xE111: [451,22,455,41,391,'99 -22c-20 0 -58 11 -58 64c0 70 52 144 96 203l156 206h82l-242 -322c-20 -38 -48 -69 -48 -96c0 -16 14 -22 22 -22c62 0 212 138 262 184l22 -17c-82 -79 -210 -200 -292 -200'], + 0xE112: [451,343,943,41,869,'105 -313c76 0 172 129 248 249h-2c-136 -65 -278 -164 -278 -223c4 -22 20 -27 32 -26zM101 -343c-38 0 -60 22 -60 56c0 53 66 141 326 265l358 473h84l-326 -428c130 64 300 180 366 227l20 -22c-52 -30 -366 -231 -422 -257c-96 -138 -234 -314 -346 -314'], + 0xE113: [469,17,332,26,293,'293 84c-109 -79 -155 -101 -194 -101c-19 0 -32 17 -32 43c0 15 3 38 6 52l59 241c6 24 8 35 8 40c0 7 -4 11 -10 11c-9 0 -50 -20 -69 -34l-22 -16l-13 26l63 47c61 46 121 76 149 76c15 0 26 -15 26 -37c0 -19 -4 -49 -9 -67l-54 -196c-13 -47 -20 -80 -20 -92 c0 -6 6 -12 12 -12c9 0 27 9 61 30l27 17'], + 0xE114: [469,271,332,-64,274,'49 320l-13 26l63 47c61 46 121 76 149 76c16 0 26 -15 26 -40c0 -18 -3 -40 -9 -64l-67 -274c-33 -135 -64 -214 -107 -276c-41 -58 -80 -86 -121 -86c-10 0 -18 1 -34 5c5 28 8 47 10 79l14 3c14 -22 28 -33 44 -33c20 0 35 24 46 78l86 408c9 45 14 73 14 88 c0 9 -3 13 -10 13c-9 0 -50 -20 -69 -34'], + 0xE115: [471,3,332,34,298,'217 471l10 -6v-365c0 -54 5 -62 36 -64l35 -2v-37c-67 2 -115 3 -135 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70l-45 3v36c7 1 12 2 15 2c42 5 66 9 98 19'], + 0xE116: [471,266,332,3,227,'7 -223h23c54 0 75 53 75 185v357c0 59 -3 68 -26 70l-45 3v36l18 2c38 5 69 11 95 19l70 22l10 -6v-367c0 -153 -13 -221 -52 -279c-36 -54 -84 -85 -130 -85c-3 0 -16 1 -32 2l-10 35'], + 0xE117: [469,283,233,-40,159,'-10 -248c68 0 85 106 85 241v334c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-484c0 -79 -18 -143 -53 -189c-38 -50 -76 -71 -134 -75l-12 38c8 -1 24 -3 30 -3'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/NonUnicode/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Normal/Regular/Main.js new file mode 100644 index 0000000..d575818 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Normal/Regular/Main.js @@ -0,0 +1,369 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'AsanaMathJax_Normal', + id: 'ASANAMATHNORMAL', + 0x20: [0,0,249,0,0,''], + 0x210E: [733,9,499,10,471,'236 722l-96 -447l4 -2c28 35 54 70 87 101c68 63 145 108 180 108c26 0 32 -18 32 -35c0 -24 -5 -49 -11 -75l-64 -256c-4 -15 -7 -28 -7 -40c0 -11 6 -20 13 -20c12 0 38 15 61 30l26 17l10 -18c-59 -44 -127 -94 -159 -94c-21 0 -31 15 -31 40c0 24 7 54 13 76l51 196 c10 39 15 72 15 90c0 14 -11 21 -22 21c-42 0 -145 -97 -190 -178c-40 -72 -54 -172 -62 -229l-69 -16l-7 11c26 78 68 270 88 386l42 234c2 10 2 19 2 25c0 20 -16 23 -34 23h-48l4 21c74 6 115 20 160 42'], + 0x1D400: [686,3,777,24,757,'250 -3c-45 2 -90 3 -113 3s-90 -2 -113 -3v37l30 3c22 2 39 21 56 60l181 438c5 11 15 37 29 76l28 75h71l259 -605c13 -29 27 -40 55 -44l24 -3v-37c-147 3 -147 3 -158 3c-12 0 -12 0 -152 -3v37l53 3c11 1 20 12 20 27c0 8 -2 18 -6 28l-45 114h-251l-42 -112 c-3 -8 -5 -18 -5 -25c0 -17 12 -31 29 -32l50 -3v-37zM342 516l-100 -254h204'], + 0x1D401: [681,3,666,39,611,'406 377c69 -5 205 -12 205 -161c0 -129 -111 -219 -271 -219c0 0 -103 3 -142 3c-28 0 -54 -1 -126 -3v23l32 18c15 8 20 23 20 57v448c0 88 -3 94 -48 98l-37 3v37l79 -2c46 -1 75 -1 89 -1c16 0 85 1 109 2l83 1c127 0 189 -44 189 -135c0 -106 -91 -137 -182 -169z M265 348v-292c17 -3 28 -4 43 -4c106 0 153 46 153 150c0 102 -50 146 -166 146h-30zM265 627v-227h30c101 0 145 37 145 124c0 74 -36 107 -117 107c-19 0 -34 -1 -58 -4'], + 0x1D402: [695,17,721,44,695,'692 87l-22 -49c-74 -41 -133 -55 -225 -55c-247 0 -401 140 -401 364c0 214 158 348 411 348c87 0 143 -11 234 -47l6 -11c-9 -38 -12 -57 -23 -153h-39l-5 86c-54 50 -103 69 -178 69c-158 0 -256 -106 -256 -278c0 -189 116 -313 291 -313c65 0 130 17 195 51'], + 0x1D403: [681,3,832,35,786,'786 376c0 -251 -201 -379 -407 -379l-59 1c-25 1 -79 2 -97 2c-19 0 -19 0 -155 -3v23l32 18c15 8 20 24 20 57v448c0 88 -3 94 -48 98l-37 3v37c149 -3 149 -3 162 -3c3 0 83 1 239 3c135 -1 215 -25 273 -83c50 -49 77 -127 77 -222zM636 348c0 170 -58 283 -312 283 c-23 0 -39 -1 -63 -4v-570c25 -4 43 -5 68 -5c180 0 307 59 307 296'], + 0x1D404: [682,4,610,39,577,'227 678c95 0 190 4 238 4c39 0 58 -1 95 -4l6 -7l-14 -142h-36l-8 75c-1 11 -44 20 -98 20c-55 0 -89 -1 -145 -4v-240c20 -2 34 -2 67 -2h66c42 0 55 5 57 21l6 57h40c-3 -95 -3 -96 -3 -107l3 -108h-40l-6 50c-3 26 -19 37 -57 37h-66c-22 0 -39 -1 -67 -3v-267 c51 -2 90 -3 131 -3c85 0 119 13 119 17l23 94h39l-11 -158l-5 -8c-58 -3 -89 -4 -141 -4c-51 0 -91 1 -192 4h-34c-23 0 -23 0 -122 -3v23l32 18c15 8 20 23 20 57v448c0 88 -3 94 -48 98l-37 3v37c110 -2 153 -3 188 -3'], + 0x1D405: [682,3,555,28,539,'206 678c93 0 186 4 232 4c39 0 57 -1 95 -4l6 -7l-14 -142h-36l-8 75c-1 12 -44 19 -111 19c-34 0 -67 -1 -116 -3v-243c20 -2 34 -2 67 -2h51c42 0 55 5 57 21l6 53h40c-3 -78 -3 -92 -3 -103l3 -108h-40l-6 50c-3 26 -19 37 -57 37h-51c-22 0 -39 -1 -67 -3v-187 c0 -88 2 -92 48 -95l47 -3v-40c-134 3 -134 3 -166 3c-34 0 -34 0 -155 -3v40l37 3c47 4 48 6 48 95v408c0 88 -3 94 -48 98l-37 3v37c149 -3 149 -3 178 -3'], + 0x1D406: [695,17,832,47,776,'776 276v-34c-37 -8 -41 -12 -41 -36v-163c-120 -45 -196 -60 -297 -60c-237 0 -391 143 -391 363c0 216 158 349 414 349c98 0 170 -13 261 -47l6 -11c-9 -38 -12 -57 -23 -153h-39l-5 86c-24 23 -33 30 -58 40c-43 19 -96 29 -147 29c-163 0 -259 -105 -259 -281 c0 -190 108 -319 269 -319c43 0 76 6 127 25v132c0 26 -15 35 -57 37l-53 2v41c81 -2 120 -3 143 -3c26 0 26 0 150 3'], + 0x1D407: [681,3,832,36,796,'262 543v-158c23 -2 43 -2 81 -2h146c38 0 57 0 81 2v158c0 89 -1 91 -48 95l-37 3v40c120 -3 121 -3 155 -3s34 0 156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-408c0 -89 1 -91 48 -95l37 -3v-40c-121 3 -122 3 -156 3s-34 0 -155 -3v40l37 3c47 4 48 6 48 95v190 c-26 1 -47 2 -81 2h-146c-34 0 -55 -1 -81 -2v-190c0 -89 1 -91 48 -95l37 -3v-40c-121 3 -122 3 -156 3s-34 0 -155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40c120 -3 121 -3 155 -3s34 0 156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95'], + 0x1D408: [681,3,388,39,350,'265 543v-408c0 -89 1 -91 48 -95l37 -3v-40c-121 3 -122 3 -156 3s-34 0 -155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40c120 -3 121 -3 155 -3s34 0 156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95'], + 0x1D409: [681,213,388,-11,350,'0 -113c26 -19 45 -35 69 -35c40 0 55 35 55 130v561c0 89 -1 91 -48 95l-37 3v40c120 -3 121 -3 155 -3s34 0 156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-406c0 -105 -6 -144 -28 -192c-42 -89 -137 -158 -218 -158c-8 0 -17 1 -30 5v89'], + 0x1D40A: [681,3,777,39,763,'265 343l197 193c2 2 65 68 68 74c21 22 26 31 26 46v25c58 -2 76 -3 91 -3s33 1 91 3v-39c-63 -5 -86 -12 -110 -34l-222 -207l266 -313c31 -36 54 -49 91 -50v-41c-17 1 -29 1 -34 1c-51 2 -60 2 -67 2l-102 -3l-208 249c-57 67 -61 71 -87 86v-197c0 -89 1 -91 48 -95 l37 -3v-40c-121 3 -122 3 -156 3s-34 0 -155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40c120 -3 121 -3 155 -3s34 0 156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-200'], + 0x1D40B: [681,4,610,39,577,'265 543v-485c52 -2 89 -3 131 -3c62 0 117 8 119 17l23 102h39l-11 -166l-5 -8c-58 -3 -89 -4 -141 -4c-51 0 -91 1 -192 4h-34c-23 0 -23 0 -122 -3v23l32 18c15 8 20 23 20 57v448c0 89 -1 91 -48 95l-37 3v40c120 -3 121 -3 155 -3s34 0 156 3v-40l-37 -3 c-47 -4 -48 -6 -48 -95'], + 0x1D40C: [681,10,1000,32,968,'742 551l-206 -429c-37 -76 -41 -86 -60 -132h-34c-18 44 -29 68 -36 83l-230 479v-417c0 -89 3 -94 48 -98l37 -3v-37c-48 2 -94 3 -114 3c-19 0 -19 0 -115 -3v37l37 3c45 4 48 10 48 98v408c0 88 -3 94 -48 98l-37 3v37c35 -1 36 -1 51 -1c30 -1 53 -2 69 -2l120 3 l75 -161l158 -330l183 378c11 23 20 44 49 113c104 -3 104 -3 115 -3s11 0 116 3v-37l-37 -3c-45 -4 -48 -10 -48 -98v-408c0 -89 1 -91 48 -95l37 -3v-40c-121 3 -122 3 -156 3s-34 0 -155 -3v40l37 3c47 4 48 6 48 95v416'], + 0x1D40D: [681,16,832,35,798,'155 678l84 3c64 -85 82 -109 103 -133l312 -364v359c0 88 -3 94 -48 98l-37 3v37c88 -3 104 -3 115 -3l114 3v-37l-37 -3c-45 -4 -48 -10 -48 -98v-454c0 -23 1 -45 3 -101l-7 -4l-82 13l-122 139l-326 392v-393c0 -89 3 -94 48 -98l37 -3v-37c-48 2 -94 3 -114 3 c-19 0 -19 0 -115 -3v37l37 3c45 4 48 10 48 98v408c0 88 -3 94 -48 98l-37 3v37c57 -2 90 -3 99 -3h21'], + 0x1D40E: [695,17,832,47,787,'430 695c226 0 357 -129 357 -349c0 -228 -141 -363 -380 -363c-229 0 -360 127 -360 349c0 229 141 363 383 363zM637 325c0 153 -58 314 -216 314c-179 0 -224 -145 -224 -284c0 -131 43 -316 217 -316c146 0 223 98 223 286'], + 0x1D40F: [681,3,610,39,594,'369 319c-23 0 -47 5 -58 7l-17 35l10 10c4 -1 7 -1 8 -1c26 -5 27 -5 35 -5c63 0 103 52 103 132c0 89 -42 134 -125 134c-27 0 -45 -3 -60 -9v-487c0 -88 2 -92 48 -95l47 -3v-40c-134 3 -134 3 -165 3c-35 0 -35 0 -156 -3v40l37 3c47 4 48 6 48 95v408 c0 88 -3 94 -48 98l-37 3v37c152 -3 152 -3 173 -3c11 0 72 1 181 3h12c126 0 189 -50 189 -150c0 -121 -96 -212 -225 -212'], + 0x1D410: [695,184,832,47,787,'787 346c0 -167 -78 -361 -392 -361c-8 -1 -10 -1 -21 -1c47 -10 72 -16 100 -26l120 -42c37 -13 81 -22 107 -22c18 0 36 5 69 19l11 4v-37l-103 -64c-26 0 -46 3 -72 10l-199 54c-59 16 -74 19 -99 19c-24 0 -49 -12 -97 -45l-11 31c73 58 108 80 161 100 c-88 11 -130 24 -179 56c-88 58 -135 158 -135 290c0 229 141 364 380 364c229 0 360 -127 360 -349zM637 325c0 153 -58 314 -216 314c-179 0 -224 -145 -224 -284c0 -131 43 -316 217 -316c146 0 223 98 223 286'], + 0x1D411: [681,3,721,39,708,'217 678c80 0 139 3 199 3c126 0 190 -50 190 -147c0 -42 -14 -79 -43 -110c-26 -30 -50 -45 -106 -68l181 -274c24 -32 34 -38 70 -45v-40c-37 2 -46 2 -97 3l-90 -3l-224 347l7 18c44 -1 69 4 94 19c41 24 66 69 66 122c0 81 -51 128 -140 128c-26 0 -45 -3 -59 -9 v-487c0 -89 1 -91 48 -95l37 -3v-40c-121 3 -122 3 -156 3s-34 0 -155 -3v40l37 3c47 4 48 6 48 95v408c0 88 -3 94 -48 98l-37 3v37c150 -3 150 -3 178 -3'], + 0x1D412: [695,17,610,57,559,'72 202h40l7 -88c31 -47 96 -77 164 -77c86 0 150 55 150 129c0 48 -27 79 -83 96l-140 42c-94 28 -146 91 -146 177c0 134 99 214 265 214c66 0 118 -10 185 -34l5 -12c-9 -29 -14 -77 -14 -142h-41l-6 82c-38 37 -83 55 -136 55c-79 0 -134 -48 -134 -117 c0 -51 32 -82 106 -101l114 -30c99 -26 151 -87 151 -176c0 -144 -115 -237 -294 -237c-75 0 -135 13 -208 46c11 57 15 98 15 173'], + 0x1D413: [681,3,666,17,650,'404 619v-484c0 -89 1 -91 48 -95l37 -3v-40c-121 3 -122 3 -156 3s-34 0 -155 -3v40l37 3c47 4 48 6 48 95v484h-117c-42 0 -58 -3 -63 -10c-3 -5 -8 -17 -8 -23l-5 -69h-40c-3 76 -5 111 -13 159l6 5c276 -3 276 -3 311 -3c34 0 34 0 310 3l6 -5 c-8 -48 -11 -83 -13 -159h-40l-5 69l-9 24c-9 7 -20 9 -62 9h-117'], + 0x1D414: [681,17,777,26,760,'428 65c160 0 188 77 188 237v241c0 88 -3 94 -48 98l-37 3v37c88 -3 104 -3 115 -3l114 3v-37l-37 -3c-45 -4 -48 -10 -48 -98v-292c0 -181 -93 -268 -284 -268c-172 0 -280 75 -280 194v366c0 88 -3 94 -48 98l-37 3v37c120 -3 121 -3 155 -3s34 0 156 3v-37l-37 -3 c-45 -4 -48 -10 -48 -98v-248c0 -146 14 -230 176 -230'], + 0x1D415: [681,3,777,20,763,'20 681c144 -3 144 -3 158 -3c16 0 130 2 162 3v-37l-50 -3c-14 -1 -26 -10 -26 -19c0 -18 1 -21 21 -72l157 -387l142 353c21 53 31 84 31 99s-14 24 -37 26l-46 3v37c11 0 92 -3 115 -3c10 0 10 0 116 3v-37l-32 -3c-21 -2 -34 -15 -47 -47l-208 -498l-38 -99h-76 l-239 572c-22 51 -37 69 -62 72l-41 3v37'], + 0x1D416: [686,3,1000,17,988,'772 681c32 -1 85 -3 106 -3c10 0 10 0 110 3v-37l-33 -3c-17 -2 -30 -23 -43 -69l-122 -432c-7 -26 -13 -52 -33 -143h-73l-38 105l-149 375l-155 -355c-9 -22 -17 -42 -47 -125h-70l-139 602c-7 28 -18 40 -37 42l-32 3v37l156 -3c12 0 12 0 134 3v-37l-42 -3 c-16 -1 -30 -13 -30 -25c0 -8 1 -17 3 -26l82 -383l150 355c10 23 19 47 29 71l22 53h45c21 -60 33 -94 49 -133l137 -343l97 378c3 11 4 20 4 30c0 14 -12 22 -35 23l-46 3v37'], + 0x1D417: [695,3,666,17,650,'22 658l183 37c29 -22 45 -42 73 -91l95 -169l165 243h111v-34l-28 -3c-20 -3 -27 -8 -48 -36l-170 -224l159 -275s26 -62 63 -69l25 -3v-37c-36 2 -46 2 -95 3l-96 -3l-149 266l-140 -201c-5 -6 -22 -36 -36 -62h-117v34l31 3c12 1 26 9 33 18l199 261l-94 166 c-26 46 -64 99 -86 123c-13 13 -25 18 -41 18c-9 0 -16 -1 -32 -6'], + 0x1D418: [695,3,666,15,660,'395 356l188 322h77v-19l-176 -261c-18 -27 -34 -57 -53 -100v-163c0 -89 1 -91 48 -95l37 -3v-40c-121 3 -122 3 -156 3s-34 0 -155 -3v40l37 3c47 4 48 6 48 95v139c-16 36 -28 58 -44 85l-101 163c-59 85 -79 100 -130 100v37l159 36c46 -27 73 -60 114 -136'], + 0x1D419: [681,3,666,24,627,'623 681v-35c-32 -39 -55 -70 -83 -110l-325 -479h276c51 0 76 12 81 39l15 78h40c-9 -50 -15 -116 -16 -177c-131 2 -192 3 -284 3c-93 0 -160 -1 -303 -3v38c49 62 76 99 104 139l306 446h-222c-71 0 -81 -5 -87 -46l-8 -55h-37v162l272 -3c19 0 19 0 271 3'], + 0x1D41A: [471,17,499,40,478,'421 329c0 -13 -3 -76 -3 -126c0 -24 1 -52 2 -84v-21c1 -47 6 -57 28 -61l30 -3v-37c-60 2 -76 3 -88 3s-29 -1 -91 -3l-5 8l5 62l-93 -72c-10 -8 -27 -12 -49 -12c-76 0 -117 43 -117 124c0 85 45 124 171 150l88 18c-3 82 -35 118 -102 118c-27 0 -55 -7 -58 -14 l-22 -50l-30 7v69l53 32c37 23 78 34 120 34c101 0 161 -53 161 -142zM299 115v118l-45 -12c-71 -19 -92 -39 -92 -88c0 -39 19 -63 51 -63c30 0 67 19 86 45'], + 0x1D41B: [720,17,610,10,556,'211 714v-331l61 49c35 28 64 39 103 39c106 0 181 -79 181 -190c0 -77 -33 -154 -83 -195c-28 -23 -74 -54 -114 -78c-29 -17 -56 -25 -87 -25c-43 0 -85 12 -131 37l-39 -32l-22 8c6 53 9 113 9 166v406c0 59 -4 69 -26 70l-53 3v36c58 6 92 12 121 21l72 22zM211 331 v-225c27 -38 59 -55 101 -55c73 0 118 66 118 170c0 100 -46 160 -123 160c-41 0 -74 -17 -96 -50'], + 0x1D41C: [471,17,443,37,414,'390 297h-36l-7 60c-3 23 -43 43 -88 43c-64 0 -98 -49 -98 -140c0 -127 61 -206 159 -206c29 0 51 5 85 19l9 -10l-21 -46c-47 -25 -84 -34 -134 -34c-143 0 -222 87 -222 246c0 87 32 137 121 190l52 31c24 14 52 21 90 21c36 0 57 -4 103 -20l7 -13 c-9 -44 -14 -77 -20 -141'], + 0x1D41D: [720,17,610,42,577,'508 714v-614c0 -54 5 -62 36 -64l33 -2v-37c-21 1 -40 1 -47 1c-28 1 -46 2 -54 2c-11 0 -30 -1 -90 -3l-5 8l5 75l-104 -85c-10 -8 -26 -12 -49 -12c-117 0 -191 91 -191 234c0 86 27 143 84 181l72 47c27 17 56 26 88 26c25 0 52 -6 80 -17l20 -8v122 c0 59 -4 69 -26 70l-53 3v36c58 6 92 12 121 21l72 22zM386 160v184c-33 43 -69 63 -112 63c-71 0 -106 -51 -106 -152c0 -108 45 -177 116 -177c55 0 102 37 102 82'], + 0x1D41E: [471,17,499,42,461,'461 295v-52c-56 -14 -101 -20 -158 -20h-131c2 -47 8 -70 24 -98c25 -43 74 -71 126 -71c40 0 70 9 117 35l12 -15l-22 -48c-64 -33 -101 -43 -158 -43c-149 0 -229 84 -229 243c0 95 29 155 95 194l47 28c27 16 53 23 88 23c114 0 189 -69 189 -176zM250 273l84 3 c-2 99 -26 139 -83 139c-58 0 -82 -40 -85 -139l32 -1c15 -1 42 -2 48 -2h4'], + 0x1D41F: [720,3,388,34,381,'298 634c-54 0 -59 -35 -59 -92v-108c41 0 66 1 131 4l4 -8l-11 -58h-124v-272c0 -24 1 -36 3 -45c3 -11 20 -18 47 -19l45 -2v-37c-145 3 -145 3 -159 3c-19 0 -19 0 -141 -3v37l41 2c37 2 42 9 42 64v272l-79 -5v24c33 16 53 27 79 45v43c0 79 7 97 55 137l74 62 c38 32 61 42 93 42c15 0 25 -2 42 -6v-97l-16 -7c-30 18 -46 24 -67 24'], + 0x1D420: [471,266,555,26,535,'457 325c0 -144 -138 -180 -218 -180c-12 0 -22 1 -40 2c-20 -12 -29 -24 -29 -39c0 -20 16 -30 47 -30c11 0 47 1 146 4h24c101 0 148 -40 148 -124c0 -133 -118 -224 -293 -224c-132 0 -216 55 -216 142c0 27 11 53 26 62l81 48c-50 13 -68 31 -68 67c0 20 7 41 17 48 l71 54c-35 12 -50 21 -69 41c-24 26 -37 59 -37 96c0 105 89 179 217 179c64 0 111 -13 152 -43c16 -1 28 -1 36 -1c22 0 41 1 82 5l-5 -64l-77 4c4 -19 5 -31 5 -47zM252 421c-54 0 -82 -38 -82 -110c0 -75 32 -120 84 -120c53 0 80 37 80 108c0 79 -29 122 -82 122z M272 -15c-49 0 -85 -4 -101 -11c-30 -15 -51 -49 -51 -86c0 -62 59 -104 148 -104s156 52 156 121c0 64 -30 80 -152 80'], + 0x1D421: [720,3,610,24,587,'209 720l8 -6v-324l80 62c16 13 40 19 70 19c49 0 90 -15 116 -42c26 -28 35 -66 35 -143v-186c0 -54 5 -62 36 -64l33 -2v-37c-87 3 -87 3 -101 3c-16 0 -33 -1 -90 -3v272c0 81 -28 116 -94 116c-44 0 -85 -33 -85 -68v-217c0 -54 5 -62 36 -64l35 -2v-37 c-67 2 -115 3 -135 3l-129 -3v37l35 2c31 2 36 10 36 64v468c0 59 -3 68 -26 70l-45 3v36c54 7 87 13 113 21'], + 0x1D422: [706,3,332,34,298,'217 471l10 -6v-365c0 -54 5 -62 36 -64l35 -2v-37c-67 2 -115 3 -135 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70l-45 3v36c7 1 12 2 15 2c42 5 66 9 98 19zM163 706c41 0 74 -34 74 -75s-34 -75 -75 -75c-42 0 -75 34 -75 76s33 74 76 74'], + 0x1D423: [706,266,332,3,241,'7 -223h23c54 0 75 53 75 185v357c0 59 -3 68 -26 70l-45 3v36l18 2c38 5 69 11 95 19l70 22l10 -6v-367c0 -153 -13 -221 -52 -279c-36 -54 -84 -85 -130 -85c-3 0 -16 1 -32 2l-10 35zM167 706c41 0 74 -34 74 -75s-34 -75 -75 -75c-42 0 -75 34 -75 76s33 74 76 74'], + 0x1D424: [720,3,610,21,597,'214 720l8 -6v-465c56 48 83 73 106 97l107 113h130v-38h-31c-15 0 -32 -6 -48 -18l-62 -45c-11 -7 -40 -34 -70 -64l-8 -8l196 -220c18 -20 34 -30 55 -32v-34h-172c-15 19 -72 89 -87 106l-106 120h-10v-126c0 -54 5 -62 36 -64l35 -2v-37c-67 2 -115 3 -135 3l-129 -3 v37l35 2c31 2 36 10 36 64v468c0 59 -4 69 -26 70l-53 3v36c58 6 92 12 121 21'], + 0x1D425: [720,3,332,24,296,'217 720l8 -6v-614c0 -54 5 -62 36 -64l35 -2v-37c-67 2 -115 3 -135 3l-129 -3v37l35 2c31 2 36 10 36 64v468c0 59 -4 69 -26 70l-53 3v36c58 6 92 12 121 21'], + 0x1D426: [471,3,888,24,864,'24 392v36c55 3 83 9 187 43l6 -6v-75l80 62c17 13 39 19 71 19c69 0 109 -24 132 -81l80 62c17 13 39 19 72 19c107 0 143 -47 143 -185v-186c0 -54 5 -62 36 -64l33 -2v-37c-41 2 -48 2 -98 3l-93 -3v272c0 78 -28 116 -86 116c-40 0 -81 -35 -81 -68v-217 c0 -54 5 -62 36 -64l35 -2v-37c-107 3 -107 3 -131 3c-25 0 -25 0 -129 -3v37l31 2c32 2 36 10 36 64v169c0 78 -28 116 -86 116c-40 0 -81 -35 -81 -68v-217c0 -54 4 -62 36 -64l27 -2v-37c-61 2 -104 3 -127 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70'], + 0x1D427: [471,3,610,24,587,'24 392v36c55 3 83 9 187 43l6 -6v-75l80 62c16 13 40 19 70 19c49 0 90 -15 116 -42c26 -28 35 -66 35 -143v-186c0 -54 5 -62 36 -64l33 -2v-37c-87 3 -87 3 -101 3c-16 0 -33 -1 -90 -3v273c0 80 -28 115 -94 115c-44 0 -85 -33 -85 -68v-217c0 -54 5 -62 36 -64 l35 -2v-37c-67 2 -115 3 -135 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70'], + 0x1D428: [471,17,555,40,517,'287 471c148 0 230 -83 230 -235c0 -162 -90 -253 -250 -253c-145 0 -227 87 -227 241c0 159 88 247 247 247zM275 423c-69 0 -99 -54 -99 -175c0 -144 37 -217 109 -217c68 0 96 52 96 174c0 147 -34 218 -106 218'], + 0x1D429: [471,258,610,29,567,'212 471l10 -6v-82l61 49c35 28 64 39 103 39c104 0 181 -79 181 -185c0 -99 -43 -181 -119 -231c-68 -54 -103 -72 -137 -72c-24 0 -40 3 -89 17v-155c0 -54 5 -63 36 -64l45 -2v-37c-130 3 -132 3 -145 3l-129 -3v37l35 2c31 2 36 10 36 64v474c0 59 -3 68 -26 70 l-45 3v36l11 1c51 7 68 10 102 20zM222 331v-225c27 -38 59 -55 101 -55c73 0 118 66 118 170c0 100 -46 160 -123 160c-41 0 -74 -17 -96 -50'], + 0x1D42A: [471,258,610,52,589,'396 75l-96 -77c-12 -10 -33 -15 -60 -15c-116 0 -188 88 -188 229c0 99 30 150 117 199c80 45 119 60 154 60c30 0 73 -13 116 -34l22 -11l52 42l21 -14c-12 -59 -16 -92 -16 -130v-479c0 -54 5 -62 36 -64l35 -2v-37c-67 2 -115 3 -135 3l-129 -3v37l35 2 c31 2 36 10 36 64v230zM396 160v184c-33 43 -69 63 -112 63c-71 0 -106 -51 -106 -152c0 -108 45 -177 116 -177c55 0 102 37 102 82'], + 0x1D42B: [471,3,388,30,389,'213 471l10 -6v-95l44 48c38 41 57 53 85 53c14 0 27 -2 37 -6l-5 -129l-24 -10c-14 24 -32 36 -57 36c-39 0 -80 -33 -80 -64v-198c0 -56 5 -62 48 -64l39 -2v-37c-135 3 -138 3 -151 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70l-45 3v36 c63 8 81 11 113 21'], + 0x1D42C: [471,17,443,39,405,'362 326h-36l-10 58c-3 20 -47 39 -87 39c-54 0 -88 -25 -88 -65c0 -31 16 -47 55 -56l82 -18c90 -20 127 -57 127 -129c0 -103 -85 -172 -211 -172c-53 0 -98 8 -155 28l7 141h39l5 -69c32 -37 65 -52 112 -52c56 0 92 30 92 77c0 35 -17 52 -63 63l-86 21 c-70 17 -106 59 -106 125c0 100 73 154 208 154c53 0 84 -6 123 -23'], + 0x1D42D: [632,17,332,22,324,'324 60l-49 -59c-9 -11 -34 -18 -65 -18c-87 0 -124 38 -124 127v259l-64 -4v22l66 43v60c0 21 -1 40 -4 92c51 19 82 31 122 50l14 -10c-9 -50 -12 -83 -12 -136v-58l114 6l-8 -65h-106v-238c0 -49 15 -65 62 -65c16 0 26 3 46 13'], + 0x1D42E: [471,17,610,25,583,'392 80l-76 -74c-15 -15 -41 -23 -70 -23c-96 0 -150 56 -150 157v179c0 59 -3 68 -26 70l-45 3v36c63 8 80 11 113 21l70 22l10 -6v-261c0 -96 21 -131 78 -131c53 0 96 41 96 90v156c0 59 -3 68 -26 70l-45 3v36c62 8 80 11 113 21l70 22l10 -6v-365 c0 -54 5 -62 36 -64l33 -2v-37c-21 1 -40 1 -47 1c-28 2 -45 2 -55 2c-11 0 -11 0 -94 -3'], + 0x1D42F: [459,3,555,11,545,'227 -3l-143 360c-18 43 -31 60 -48 62l-25 2v38c101 -3 117 -3 130 -3l129 3v-38l-41 -2c-15 -1 -23 -7 -23 -17c0 -11 4 -26 14 -51l88 -221c17 37 26 58 35 80l61 151c6 15 9 29 9 41c0 9 -9 16 -23 17l-38 2v38c37 -2 46 -2 97 -3l96 3v-38l-30 -5 c-17 -3 -27 -12 -36 -34l-128 -288c-12 -27 -22 -52 -38 -97h-86'], + 0x1D430: [471,3,832,13,820,'194 -3l-107 384c-8 27 -18 36 -41 38l-33 2v38c106 -3 122 -3 136 -3l135 3v-38l-47 -2c-11 0 -19 -9 -19 -22c0 -5 1 -15 2 -19l59 -227c6 14 27 61 28 62l116 258h50l138 -317c17 46 27 73 39 112l36 113c1 4 3 15 3 19c0 12 -12 20 -29 21l-42 2v38 c84 -3 84 -3 101 -3s17 0 101 3v-38l-34 -2c-14 -1 -24 -14 -36 -47l-92 -260c-11 -34 -21 -69 -35 -115h-81l-132 307c-76 -150 -87 -174 -137 -307h-79'], + 0x1D431: [471,3,499,20,483,'200 210l-80 136c-26 44 -44 58 -77 58c-3 0 -10 0 -15 -1l-8 36c37 7 111 23 146 32c20 -16 38 -39 62 -77l52 -85l108 150h95v-37c-37 -1 -47 -7 -78 -43l-97 -114l89 -152c35 -57 55 -76 86 -79v-37c-29 2 -37 2 -77 3l-78 -3l-100 169l-64 -88 c-12 -17 -23 -33 -52 -78h-91v34c31 2 49 12 69 36'], + 0x1D432: [459,266,555,10,546,'214 396c0 -20 17 -49 17 -53l84 -218l101 252c2 5 4 16 4 22c0 11 -11 19 -27 20l-33 2v38c59 -2 90 -3 93 -3l93 3v-38l-26 -5c-14 -3 -29 -20 -41 -47l-199 -463c-51 -118 -106 -172 -176 -172c-23 0 -46 5 -73 17l18 95l11 4c23 -26 44 -37 70 -37c34 0 69 34 92 91 l23 56l-158 404c-15 38 -27 54 -42 55l-35 2v38c104 -3 120 -3 133 -3l132 3v-38l-35 -2c-15 -1 -26 -10 -26 -23'], + 0x1D433: [459,3,499,16,464,'454 424l-268 -369h163c48 0 61 12 70 69l5 31h40c-7 -48 -12 -109 -12 -153l-5 -5l-273 3c-40 0 -40 0 -158 -3v33c65 83 83 107 104 136l170 238h-118c-56 0 -70 -11 -76 -59l-3 -25h-38l3 134l7 5c144 -4 204 -5 236 -5c45 0 80 1 153 5v-35'], + 0x1D434: [705,3,751,28,724,'567 55c0 14 -4 29 -4 31v3l-25 188h-246l-102 -175c-19 -33 -26 -47 -26 -55c0 -9 15 -18 31 -19l52 -3v-28c-86 3 -88 3 -107 3c-20 0 -20 0 -112 -3v30l20 5c34 8 52 24 88 80l373 593h46l87 -625c8 -45 9 -45 56 -52l26 -3v-28c-102 3 -102 3 -122 3s-20 0 -122 -3 v28l44 3c28 2 43 11 43 27zM496 601l-179 -288h216'], + 0x1D435: [692,6,610,26,559,'543 227c0 -140 -151 -233 -266 -233c-8 0 -21 1 -40 2l-20 1l-37 1c-26 1 -52 2 -63 2c-12 0 -27 0 -54 -2l-37 -1l5 26c42 7 54 14 58 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-53 2l3 28l52 -1c49 -1 80 -2 99 -2c12 0 48 0 60 1l63 1c15 1 25 1 27 1 c100 0 158 -48 158 -130c0 -51 -23 -98 -69 -137c-31 -28 -56 -40 -113 -60c82 -12 166 -28 166 -138zM166 41c41 -3 62 -7 116 -7c100 0 173 74 173 177c0 87 -50 129 -153 129h-85zM352 655c-23 0 -64 -5 -80 -5l-49 -274h52c124 0 198 63 198 168c0 75 -40 111 -121 111'], + 0x1D436: [706,18,687,45,651,'45 284c0 294 231 422 411 422c62 0 119 -12 195 -41c-14 -46 -22 -89 -27 -146h-27v84c-56 36 -108 50 -179 50c-228 0 -285 -206 -285 -344c0 -178 86 -274 243 -274c78 0 130 18 224 75l10 -7l-10 -36c-90 -62 -161 -85 -257 -85c-191 0 -298 108 -298 302'], + 0x1D437: [692,3,777,28,741,'316 -3c-34 0 -105 3 -140 3h-55l-93 -3l5 26c23 6 48 8 53 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-53 2l3 28c101 -3 104 -3 113 -3h10l204 3c95 1 180 -17 226 -50c61 -43 91 -113 91 -211c0 -166 -96 -317 -252 -397c-52 -26 -101 -37 -173 -37zM384 655 c-35 0 -93 -5 -116 -5l-96 -557c-3 -18 -4 -25 -4 -37c68 -10 117 -15 161 -15c220 0 320 184 320 374c0 164 -83 240 -265 240'], + 0x1D438: [692,3,610,30,570,'221 334l-50 -288c69 -6 96 -7 137 -7c54 0 127 5 147 9c22 5 31 17 41 53l16 60h27l-5 -26c-9 -49 -14 -79 -16 -99l-4 -36l-33 -1c-33 -1 -58 -2 -72 -2l-225 3c-20 0 -82 -1 -113 -2l-41 -1l5 26c44 7 56 14 60 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-54 2 l3 28l45 -1c10 0 184 -2 193 -1l120 1c24 1 35 1 38 1c18 0 48 -1 69 -3c-11 -38 -18 -88 -21 -152h-24l-8 89c-1 15 -42 24 -104 24c-22 0 -105 -3 -137 -4l-47 -270h37c78 0 138 2 219 6l4 -7l-19 -45l-132 4h-117'], + 0x1D439: [692,3,555,0,548,'286 646h-17c-5 -11 -6 -16 -9 -32l-46 -271h37c78 0 138 2 219 6l4 -7l-19 -45l-26 1c-48 2 -79 3 -106 3h-117l-36 -223c-1 -4 -2 -15 -2 -21c0 -20 9 -28 36 -29l64 -3l-3 -28l-52 1c-39 1 -68 2 -86 2c-21 0 -53 -1 -93 -2l-34 -1l4 28l36 3c41 4 41 5 58 97l75 434 c5 30 9 62 9 76c0 17 -11 26 -35 27l-56 2l3 28l49 -1c38 -1 78 -2 103 -2h29l165 2l41 1c17 0 45 -1 67 -3c-11 -38 -18 -89 -21 -152h-24l-8 89c-1 15 -41 24 -103 24'], + 0x1D43A: [706,18,721,50,694,'434 653c-237 0 -296 -210 -296 -356c0 -177 86 -270 252 -270c54 0 93 9 138 33c5 24 25 137 25 152c0 24 -9 28 -84 32l-34 2l5 28c42 -4 78 -5 129 -5s86 1 125 5l-2 -28l-32 -6c-13 -2 -25 -12 -27 -21c-1 -3 -5 -26 -25 -182c-49 -31 -196 -58 -253 -55 c-196 0 -305 105 -305 292c0 150 62 274 179 358c72 51 145 74 237 74c69 0 126 -11 209 -41c-14 -46 -22 -89 -27 -146h-27v84c-56 36 -110 50 -187 50'], + 0x1D43B: [692,3,777,-3,800,'221 385h370l30 174c5 30 9 62 9 76c0 18 -11 26 -35 27l-48 2l3 28l63 -2c44 -1 65 -1 80 -1l91 3h16l-3 -28l-36 -3c-38 -4 -44 -9 -51 -48l-92 -520c-3 -17 -4 -26 -4 -35c0 -21 10 -29 36 -30l58 -3l-3 -28l-42 1c-43 1 -74 2 -90 2c-11 0 -41 -1 -85 -2l-56 -1l4 28 l50 3c22 2 33 6 37 14c5 6 12 34 21 83l40 215l-61 1c-63 1 -104 2 -123 2s-61 -1 -123 -2l-61 -1l-42 -247c-3 -19 -4 -26 -4 -35c0 -21 9 -28 36 -30l49 -3l-3 -28h-26l-97 3c-19 0 -42 -1 -90 -2l-42 -1l4 28l41 3c40 4 41 5 58 97l74 434c5 31 9 62 9 76 c0 18 -11 26 -35 27l-47 2l3 28l64 -2c43 -1 61 -1 77 -1l90 3h24l-3 -28l-42 -3c-37 -3 -44 -9 -51 -48'], + 0x1D43C: [692,3,332,7,354,'103 664l3 28l64 -2c43 -1 61 -1 78 -1l106 3l-3 -28l-35 -3c-39 -4 -44 -9 -51 -48l-89 -535c-1 -4 -2 -15 -2 -21c0 -20 10 -27 36 -29l52 -3l-3 -28h-32l-94 3l-94 -3h-32l3 28l36 3c40 3 43 8 58 97l72 434c3 17 9 70 9 77c0 17 -11 25 -35 26'], + 0x1D43D: [692,206,332,-35,358,'355 664l-42 -3c-38 -3 -45 -10 -51 -48l-85 -559c-34 -232 -139 -260 -174 -260c-12 0 -24 3 -35 10l-3 26c8 -3 17 -4 29 -4c47 0 77 50 92 153l95 643c1 5 1 8 1 13c0 18 -11 26 -35 27l-47 2l3 28l64 -2c43 -1 61 -1 77 -1l114 3'], + 0x1D43E: [692,3,666,13,683,'371 664l-42 -3c-37 -3 -44 -10 -51 -48l-45 -260c64 50 233 216 277 261c28 28 38 41 38 49v29l20 -1c21 -1 37 -2 47 -2c8 0 24 1 45 2l23 1v-27h-21c-17 0 -38 -10 -54 -25l-292 -273l246 -302c21 -26 41 -38 64 -38h20v-30c-26 1 -32 2 -68 3l-69 -3 c-105 143 -128 172 -278 343l-43 -262c-1 -4 -2 -15 -2 -21c0 -20 9 -27 36 -29l49 -3l-3 -28h-26l-97 3c-19 0 -42 -1 -90 -2l-42 -1l4 28l41 3c40 4 41 5 58 97l73 434c6 33 9 62 9 76c0 18 -11 26 -35 27l-47 2l3 28l64 -2c43 -1 61 -1 77 -1l90 3h24'], + 0x1D43F: [692,3,555,16,523,'349 664l-42 -3c-37 -3 -44 -10 -51 -48c0 -8 -91 -549 -94 -567c66 -6 93 -7 142 -7c67 0 131 5 144 10c9 5 18 22 27 54l17 62h31c-13 -62 -24 -140 -23 -165l-33 -1l-297 1c-20 0 -82 -1 -113 -2l-41 -1l5 26c44 7 56 14 60 32l95 580c0 18 -11 26 -35 27l-47 2l3 28 l64 -2c43 -1 61 -1 77 -1l114 3'], + 0x1D440: [698,18,953,-19,950,'937 664l-38 -2c-29 -2 -44 -12 -46 -31l-41 -531l-1 -37c0 -21 18 -32 54 -35l37 -3l-3 -28l-46 1c-41 1 -71 2 -87 2c-15 0 -45 -1 -87 -2l-47 -1l3 28l31 3c51 4 63 11 67 39l37 520l-52 -87l-239 -414l-57 -104h-23l-149 578l-124 -464c-5 -18 -7 -31 -7 -41 c0 -15 17 -25 49 -27l38 -3l-3 -28l-35 1c-35 1 -61 2 -75 2s-39 -1 -73 -2l-39 -1l3 26c55 5 70 18 86 70c2 7 148 523 148 529c0 26 -18 36 -70 40l-26 2l3 28c21 -2 144 -6 167 0l150 -578l246 422l85 156c2 9 149 7 177 3'], + 0x1D441: [692,11,777,2,802,'582 103c2 13 85 528 85 535c0 16 -10 23 -36 24l-47 2l5 28l213 -1l-3 -27l-37 -2c-37 -3 -39 -7 -60 -120l-94 -553h-50l-338 577l-80 -464c-2 -11 -3 -22 -3 -30c0 -33 9 -41 49 -44l42 -3l-5 -28c-97 3 -98 3 -110 3l-111 -3l5 28l31 3c36 4 42 12 54 74l93 504 c-1 9 -35 54 -80 56l-35 2l5 28h162'], + 0x1D442: [706,18,777,53,748,'748 425c0 -218 -153 -443 -425 -443c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM660 409c0 201 -111 255 -227 255c-234 0 -292 -239 -292 -387c0 -167 75 -253 219 -253c211 0 300 197 300 385'], + 0x1D443: [692,3,610,9,594,'105 664l3 28h304c119 3 182 -50 182 -151c0 -136 -110 -253 -239 -253c-29 0 -49 5 -86 23l-2 31c37 -14 57 -19 79 -19c88 0 160 88 160 196c0 93 -49 137 -151 137c-19 0 -35 -2 -71 -8l-98 -555c-3 -19 -4 -26 -4 -35c0 -21 10 -29 36 -30l65 -3l-3 -28l-53 1 c-40 1 -69 2 -86 2c-18 0 -49 -1 -90 -2l-42 -1l4 28l41 3c40 3 41 6 58 97l83 510c0 18 -11 26 -35 27'], + 0x1D444: [706,201,777,53,748,'151 -172l-24 13c-1 8 -1 15 -1 17c0 76 51 127 125 127c23 0 41 -4 66 -14l236 -96c26 -10 45 -15 62 -15c40 0 62 25 68 79h25c-10 -97 -46 -140 -121 -140c-40 0 -58 6 -118 37l-145 76c-39 21 -67 29 -96 29c-53 0 -77 -36 -77 -113zM748 425 c0 -218 -153 -443 -425 -443c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM660 409c0 201 -111 255 -227 255c-234 0 -292 -239 -292 -387c0 -167 75 -253 219 -253c211 0 300 197 300 385'], + 0x1D445: [691,3,666,9,639,'105 664l3 27h301c111 2 175 -45 175 -131c0 -61 -31 -116 -89 -158c-36 -26 -65 -38 -120 -48l184 -275c29 -42 40 -50 80 -55v-27h-13c-19 2 -33 3 -34 3l-85 -3c-75 127 -106 175 -240 370l3 11h44c104 0 182 70 182 165c0 74 -46 113 -133 113c-27 0 -47 -2 -76 -8 l-101 -555c-3 -17 -4 -26 -4 -35c0 -20 9 -28 36 -30l49 -3l-3 -28h-26l-97 3c-24 0 -43 0 -90 -2l-42 -1l4 28l41 3c40 4 42 6 58 97l75 434c5 30 9 62 9 76c0 18 -11 26 -35 27'], + 0x1D446: [706,18,555,42,506,'108 471c0 143 142 235 266 235c47 0 87 -10 132 -34c-14 -43 -21 -81 -25 -135h-30v76c-30 32 -63 45 -112 45c-92 0 -159 -63 -159 -150c0 -66 30 -103 96 -117l65 -14c101 -22 144 -64 144 -143c0 -135 -133 -252 -288 -252c-53 0 -106 13 -155 38c11 52 18 97 24 152 h30v-99c44 -31 82 -43 136 -43c103 0 174 66 174 161c0 57 -27 92 -81 105l-95 23c-84 20 -122 67 -122 152'], + 0x1D447: [692,3,610,53,635,'390 646l-94 -553c-3 -19 -4 -26 -4 -35c0 -21 10 -29 36 -30l59 -3l-3 -28l-44 1c-39 1 -70 2 -89 2c-16 0 -45 -1 -85 -2l-57 -1l4 28l51 3c40 3 42 6 58 97l86 521h-112c-37 0 -75 -6 -81 -13s-13 -23 -18 -45l-15 -60h-29l18 164l95 -1c86 -1 150 -2 187 -2 c35 0 103 1 191 2l91 1l-27 -164h-28l4 64c1 10 -1 29 -4 37c-3 12 -39 17 -117 17h-73'], + 0x1D448: [692,19,777,88,798,'795 664l-36 -3c-38 -4 -45 -10 -51 -48l-85 -507c-5 -36 -6 -41 -6 -56c0 -13 9 -19 32 -21l60 -4l-5 -28l-32 1c-32 1 -54 2 -58 2l-62 -3h-22l-5 5c13 55 19 81 27 127c-52 -60 -84 -85 -143 -114c-48 -24 -89 -34 -133 -34c-112 0 -179 62 -179 163c0 16 2 41 6 62 l64 375c4 21 7 49 7 58c0 17 -8 22 -34 23l-52 2l3 28l32 -1c28 -1 48 -2 58 -2c11 0 31 1 58 2l31 1l-88 -477c-5 -28 -7 -44 -7 -61c0 -70 54 -115 139 -115c38 0 75 9 113 29c51 25 81 51 129 109l71 445c1 4 1 7 1 12c0 19 -11 27 -35 28l-48 2l3 28l63 -2 c44 -1 65 -1 80 -1l91 3h16'], + 0x1D449: [692,8,721,75,754,'310 96l291 492c12 20 16 31 16 42c0 19 -19 29 -57 32l-26 2v28l46 -1c41 -1 68 -2 78 -2c16 0 39 1 66 2l30 1v-28l-18 -2c-29 -4 -37 -11 -62 -51l-378 -619h-49l-88 622c-7 37 -15 45 -59 48l-25 2v28l41 -1c37 -1 65 -2 83 -2s46 1 83 2l41 1v-28l-42 -2 c-40 -1 -44 -16 -42 -38'], + 0x1D44A: [700,8,943,71,980,'303 692v-28l-37 -2c-32 -2 -45 -16 -45 -46l31 -484l224 456c18 36 40 85 52 112h18l158 -572l147 462c6 18 9 36 9 49c0 14 -12 22 -41 23l-39 2l5 28l33 -1c30 -1 52 -2 65 -2c14 0 36 1 65 2l32 1v-28l-20 -2c-22 -2 -37 -14 -43 -31l-171 -507 c-13 -39 -21 -66 -31 -106l-7 -26h-51c-13 61 -24 110 -39 162l-112 392l-224 -444c-18 -36 -36 -75 -50 -110h-50c-1 52 -3 100 -8 166l-32 430c-4 57 -12 68 -53 74l-18 2v28l39 -1c38 -1 60 -2 72 -2c20 0 44 0 82 2'], + 0x1D44B: [692,3,721,20,734,'416 25l38 3l16 1c25 0 32 3 32 11c0 9 -5 22 -14 40l-119 226l-182 -231c-6 -8 -10 -17 -10 -25c0 -12 17 -18 55 -22l32 -3v-28c-43 2 -83 3 -119 3c-35 0 -76 -1 -125 -3v28l28 3c24 3 47 15 62 33l238 282l-146 270c-20 37 -32 44 -81 49l-26 2v28l45 -1 c41 -1 71 -2 88 -2c16 0 46 1 87 2l46 1v-28l-37 -2c-30 -2 -43 -8 -43 -20c0 -8 5 -20 14 -38l104 -199l161 196c18 22 23 31 23 42c0 12 -13 17 -45 19l-33 2v28c89 -3 103 -3 115 -3l114 3v-28l-28 -2c-26 -3 -35 -9 -65 -42l-221 -252l171 -307c14 -24 27 -31 68 -34 l25 -2v-28c-48 2 -93 3 -133 3c-42 0 -87 -1 -135 -3v28'], + 0x1D44C: [705,3,666,52,675,'52 647l15 11c23 14 61 44 64 47c92 -1 140 -89 215 -395c28 74 67 142 128 226c75 100 128 142 201 161l-6 -71c-59 -10 -101 -40 -159 -114c-74 -93 -139 -211 -148 -266l-26 -168c-1 -5 -2 -15 -2 -21c0 -20 9 -27 36 -29l49 -3l-3 -28h-26l-97 3c-16 0 -39 -1 -86 -2 l-53 -1l4 28l48 3c40 3 41 6 58 97l21 126c1 3 1 6 1 6c1 16 -38 153 -62 220c-41 112 -77 158 -124 158c-11 0 -22 -3 -45 -12'], + 0x1D44D: [692,3,666,20,637,'20 -3v22l502 633h-180c-86 0 -124 -3 -180 -13l-6 -20c-12 -39 -18 -64 -21 -86h-26c8 73 11 112 11 159l329 -3h26l162 3v-20l-504 -633h281c44 0 82 4 127 13l32 90l7 22h26c-13 -69 -21 -126 -23 -167l-66 1c-61 1 -178 2 -256 2c-87 0 -145 -1 -241 -3'], + 0x1D44E: [482,11,443,4,406,'271 204c-116 -163 -196 -215 -233 -215c-19 0 -34 34 -34 78c0 78 31 198 75 287c25 49 58 79 120 110c27 13 47 18 75 18c27 0 44 -4 85 -19l33 18l10 -9l-92 -379c-1 -3 -1 -6 -1 -11c0 -14 6 -23 15 -23c22 0 51 27 75 47l7 -21c-82 -68 -123 -94 -146 -94 c-15 0 -24 13 -24 35c0 16 2 34 6 51zM319 414c-44 15 -62 19 -85 19c-48 0 -71 -18 -95 -73c-35 -80 -63 -197 -63 -261c0 -27 6 -40 18 -40c32 0 93 58 150 142c34 52 53 104 75 213'], + 0x1D44F: [733,11,462,37,433,'235 722l-86 -398c62 79 95 109 146 136c28 14 58 22 82 22c15 0 28 -5 35 -14c12 -15 21 -54 21 -92c0 -132 -66 -269 -162 -337c-43 -31 -94 -50 -131 -50c-55 0 -103 33 -103 72c0 3 0 7 1 10l101 551c1 6 2 17 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42z M322 424c-29 0 -81 -29 -114 -63c-81 -85 -96 -226 -96 -260c0 -42 25 -65 71 -65c54 0 94 32 127 101c30 65 51 151 51 215c0 49 -13 72 -39 72'], + 0x1D450: [482,11,406,25,389,'342 330v60c0 24 -36 43 -81 43c-31 0 -55 -8 -76 -24c-49 -38 -84 -142 -84 -250c0 -79 29 -119 85 -119c35 0 73 17 145 65l15 10l8 -20l-50 -41c-55 -45 -103 -65 -157 -65c-80 0 -122 51 -122 147c0 105 39 216 93 264c57 63 130 83 175 82c37 0 72 -9 96 -24 c-9 -26 -16 -63 -24 -128h-23'], + 0x1D451: [733,11,499,17,483,'483 722l-126 -594c-7 -29 -8 -38 -8 -46c0 -14 6 -23 14 -23c9 0 25 7 39 17l44 31l10 -19l-81 -60c-34 -25 -58 -37 -75 -37s-26 12 -26 33c0 26 5 58 16 102l23 91c-67 -101 -100 -140 -154 -184c-34 -27 -71 -44 -98 -44c-29 0 -44 32 -44 97c0 84 20 179 51 237 c46 87 140 159 209 159c25 0 52 -5 82 -14l28 154c1 7 2 16 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42zM114 59c45 0 186 112 223 292l12 59c-33 17 -62 23 -106 23c-27 0 -46 -5 -59 -15c-49 -38 -95 -194 -95 -320c0 -25 9 -39 25 -39'], + 0x1D452: [483,11,388,15,374,'328 111l8 -19c-92 -75 -148 -103 -205 -103c-72 0 -116 46 -116 124c0 67 30 186 60 236c37 74 147 147 215 133c50 0 84 -31 84 -78c0 -62 -39 -108 -124 -145c-25 -11 -134 -41 -151 -45c-5 -29 -8 -56 -8 -81c0 -60 29 -97 76 -97c36 0 84 20 137 58zM113 274l-9 -37 c45 10 81 21 109 35c52 25 87 72 87 116c0 32 -19 52 -48 52c-24 0 -55 -12 -73 -28c-29 -26 -49 -69 -66 -138'], + 0x1D453: [733,276,550,-25,550,'345 437c63 0 62 2 91 9l4 -7c-6 -14 -13 -37 -17 -56h-104c-84 -401 -104 -497 -175 -581c-39 -47 -93 -78 -134 -78c-11 0 -26 3 -35 8c5 9 19 57 23 80l14 4c18 -22 29 -29 52 -29c36 0 66 31 84 90c22 69 59 255 89 450l9 56h-81l5 22c25 9 45 17 86 37l15 79 c11 57 23 87 45 109c23 24 105 85 129 96c8 4 24 7 35 7c23 0 54 -6 70 -13l-5 -15c-8 -20 -18 -51 -23 -67l-10 -4c-15 24 -42 39 -72 39c-46 0 -74 -38 -90 -124l-21 -112h16'], + 0x1D454: [482,276,499,-37,498,'275 482c94 0 118 -57 118 -58c54 0 74 2 102 9l3 -6l-9 -45c-23 -3 -33 -4 -50 -4c-9 0 -17 0 -34 2c1 -4 4 -23 4 -38c0 -89 -71 -172 -169 -196c-12 -18 -27 -32 -27 -46c0 -19 13 -38 47 -65l60 -49c43 -35 64 -71 64 -107c0 -83 -113 -155 -242 -155 c-109 0 -179 46 -179 117c0 111 128 155 197 178c-14 12 -21 23 -21 33c0 14 11 32 27 47l41 38c-11 -1 -22 -1 -30 -1c-77 0 -122 46 -122 123c0 160 153 223 220 223zM176 1c-39 -12 -149 -44 -149 -146c0 -61 57 -103 139 -103c83 0 152 42 152 94c0 33 -19 60 -65 96z M250 448c-73 0 -124 -65 -124 -160c0 -79 32 -120 93 -120c70 0 118 70 118 173c0 71 -29 107 -87 107'], + 0x1D456: [712,9,277,34,264,'34 388l28 20c75 53 112 74 134 74c16 0 25 -9 25 -26c0 -8 -2 -19 -6 -36l-77 -304c-5 -21 -7 -30 -7 -40s6 -20 13 -20c9 0 32 11 61 30l26 17l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 39c0 19 5 46 13 77l66 240c4 14 8 37 8 44c0 13 -8 23 -18 23 c-7 0 -10 -2 -47 -25l-32 -21zM228 712c21 0 36 -17 36 -41c0 -38 -24 -67 -55 -67c-24 0 -39 16 -39 41c0 34 29 67 58 67'], + 0x1D457: [712,276,277,-70,265,'138 351c0 5 7 31 7 40c0 13 -8 23 -18 23c-7 0 -10 -2 -47 -25l-32 -21l-7 20l28 20c75 53 112 74 134 74c16 0 25 -9 25 -25c0 -6 -2 -19 -6 -37l-76 -350c-28 -127 -42 -177 -62 -222c-36 -81 -76 -124 -116 -124c-15 0 -28 2 -38 7l8 57c21 -13 39 -19 53 -19 c18 0 36 35 47 87zM229 712c21 0 36 -17 36 -41c0 -38 -24 -67 -55 -67c-24 0 -39 16 -39 41c0 34 29 67 58 67'], + 0x1D458: [733,9,468,14,455,'240 722l-107 -492c125 175 208 252 274 252c12 0 30 -3 48 -9l-17 -63c-17 4 -28 6 -36 6c-50 0 -96 -25 -157 -86l-14 -14c39 -123 61 -177 96 -241c9 -17 16 -23 26 -23c8 0 15 2 29 10l43 24l8 -19l-46 -32c-44 -31 -68 -44 -81 -44c-25 0 -57 68 -126 268 c-34 -34 -58 -79 -67 -127l-23 -124l-67 -17l-9 10c52 209 68 278 82 353l48 268c1 7 2 16 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42'], + 0x1D459: [733,9,277,36,251,'251 722l-131 -618c-3 -15 -4 -22 -4 -28c0 -10 6 -20 13 -20c10 0 32 11 61 30l26 17l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 21 6 51 19 101c15 50 88 435 99 490c3 18 3 23 3 26c0 15 -10 22 -34 22h-48l4 21c72 7 108 16 160 42'], + 0x1D45A: [482,9,777,24,740,'730 103l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 53 16 74 56 233c22 87 25 101 25 125c0 16 -5 25 -13 25c-32 0 -82 -35 -137 -96c-44 -49 -78 -124 -94 -205l-21 -107l-69 -15l-5 11l16 67c41 175 63 289 63 324c0 13 -4 21 -11 21 c-28 0 -73 -30 -115 -76c-55 -60 -82 -119 -106 -230l-22 -102l-68 -15l-3 11c41 143 82 336 82 387c0 15 -7 25 -18 25c-7 0 -42 -23 -79 -46l-7 20l28 20c74 53 112 74 133 74c14 0 23 -12 23 -31c0 -12 -2 -27 -6 -43l-33 -133c65 88 85 109 129 143c55 42 101 64 131 64 c16 0 26 -12 26 -31c0 -7 -3 -22 -7 -42l-30 -137c49 69 84 104 147 149c61 43 99 61 128 61c16 0 26 -11 26 -28c0 -8 -3 -24 -7 -41l-75 -297c-5 -21 -7 -30 -7 -40c0 -11 6 -20 13 -20c10 0 32 11 61 30'], + 0x1D45B: [482,9,555,24,514,'24 388l28 20c73 52 112 74 133 74c15 0 23 -12 23 -33c0 -11 -2 -23 -6 -41l-38 -161c52 73 80 107 118 142c59 55 128 93 170 93c20 0 31 -13 31 -36c0 -17 -4 -45 -11 -74l-66 -276c-1 -4 -2 -15 -2 -20c0 -11 6 -20 13 -20c10 0 32 11 61 30l26 17l10 -18 c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 16 4 39 13 76l52 212c8 32 11 53 11 71c0 15 -6 24 -17 24c-45 0 -120 -62 -174 -146c-46 -69 -67 -134 -86 -260c-22 -4 -45 -10 -70 -17l-7 11c41 143 82 336 82 387c0 15 -7 25 -18 25c-7 0 -10 -2 -47 -25l-32 -21'], + 0x1D45C: [482,11,443,17,411,'17 152c0 230 157 330 261 330c83 0 133 -57 133 -151c0 -101 -44 -215 -106 -274c-45 -42 -105 -68 -160 -68c-83 0 -128 57 -128 163zM241 444c-24 0 -47 -6 -60 -17c-49 -40 -88 -163 -88 -276c0 -79 34 -124 92 -124c31 0 57 12 75 33c44 53 75 159 75 255 c0 84 -33 129 -94 129'], + 0x1D45D: [482,276,499,-7,465,'176 -11c-18 0 -40 7 -61 14l-42 -262c-32 -5 -52 -10 -73 -17l-7 6l8 37c20 90 39 181 49 241l58 343c2 10 4 30 4 38c0 14 -7 23 -17 23c-9 0 -20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 133 74c14 0 22 -11 22 -30c0 -12 -2 -27 -5 -44l-24 -119 c36 59 56 85 97 120c52 47 105 73 147 73c36 0 59 -44 59 -111c0 -75 -34 -185 -75 -246c-43 -63 -158 -136 -214 -136zM143 165l-18 -106c26 -16 51 -23 82 -23c41 0 73 15 93 44c53 76 93 195 93 276c0 46 -12 68 -38 68c-83 0 -190 -131 -212 -259'], + 0x1D45E: [482,276,462,24,432,'385 458l33 22l14 -6c-10 -31 -16 -57 -27 -118l-86 -456c-9 -50 -15 -105 -19 -159c-24 -3 -55 -9 -86 -17l-9 14c12 13 22 33 27 57l76 414c-49 -88 -128 -158 -175 -190c-32 -22 -51 -30 -73 -30c-24 0 -36 30 -36 89c0 103 39 249 79 296c18 20 106 108 181 108 c29 0 58 -7 101 -24zM118 59c42 0 183 115 212 252l21 95c-48 21 -69 27 -97 27c-32 0 -61 -9 -73 -24c-42 -50 -85 -200 -85 -296c0 -33 8 -54 22 -54'], + 0x1D45F: [482,9,388,26,384,'368 365h-14c-11 14 -21 19 -36 19c-22 0 -49 -21 -83 -65c-44 -57 -67 -110 -85 -193l-26 -120l-13 -2c-23 -5 -39 -8 -54 -13l-10 7c40 128 83 334 83 392c0 13 -7 22 -17 22c-9 0 -20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 133 74c15 0 23 -12 23 -32 c0 -12 -2 -25 -6 -42l-32 -152c16 35 55 95 94 151c36 51 67 75 98 75c5 0 9 -1 20 -6c-8 -41 -13 -73 -16 -111'], + 0x1D460: [482,11,388,9,345,'31 148h25v-84c28 -24 59 -35 94 -35c71 0 117 44 117 109c0 39 -16 57 -60 65l-63 12c-66 13 -97 45 -97 101c0 36 11 61 37 88c48 48 109 78 161 78c33 0 61 -8 100 -27c-11 -51 -15 -78 -19 -113h-23v55c-16 27 -54 45 -95 45c-57 0 -102 -41 -102 -94 c0 -41 19 -58 79 -69l43 -8c74 -14 106 -43 106 -97c0 -50 -21 -87 -72 -127s-97 -58 -146 -58c-35 0 -69 9 -107 27c11 46 17 81 22 132'], + 0x1D461: [646,9,332,41,310,'125 390h-84l2 13c18 5 44 16 88 37l25 170c31 12 58 24 78 36l11 -15c-18 -54 -29 -103 -45 -197c38 0 72 2 110 6l-11 -50h-107l-13 -62c-29 -145 -43 -226 -43 -252c0 -12 5 -20 14 -20c11 0 31 10 60 30l45 31l10 -18l-31 -25c-78 -63 -113 -83 -148 -83 c-19 0 -30 15 -30 40c0 30 12 68 13 76'], + 0x1D462: [482,11,555,32,512,'492 473c-15 -57 -90 -361 -90 -397c0 -10 5 -17 13 -17c11 0 37 11 61 27l26 17l10 -18c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 15 4 42 11 66l37 142c-84 -138 -205 -250 -268 -250c-20 0 -35 18 -35 41c0 14 2 38 4 47l63 297c1 4 2 14 2 18 c0 11 -8 20 -17 20s-20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 132 74c14 0 23 -12 23 -31c0 -13 -2 -27 -5 -43l-57 -271c-5 -25 -7 -38 -7 -52c0 -17 5 -26 13 -26c40 0 118 71 177 162c31 47 56 115 71 193l10 51l68 17'], + 0x1D463: [482,11,499,21,477,'166 420c-38 0 -22 2 -55 2c-24 0 -44 -11 -51 -28l-17 -42h-22c13 55 24 91 38 118c11 5 20 7 32 7c1 0 6 0 12 -1l12 -1c29 -3 71 -5 99 -5s41 3 61 12l10 -18c-98 -122 -137 -213 -137 -318c0 -65 31 -107 80 -107c88 0 185 163 185 311c0 40 -16 63 -43 63 c-9 0 -18 -3 -27 -9l-11 19l50 47c8 8 20 12 33 12c36 0 62 -41 62 -98c0 -148 -153 -395 -291 -395c-64 0 -110 55 -110 132c0 100 42 183 153 303c-26 -3 -42 -4 -63 -4'], + 0x1D464: [482,11,721,21,699,'167 420c-39 0 -22 2 -56 2c-24 0 -44 -11 -51 -28l-17 -42h-22c13 55 24 91 38 118c11 5 20 7 32 7c1 0 6 0 12 -1l12 -1c29 -3 71 -5 99 -5s41 3 61 12l10 -18c-99 -112 -140 -209 -140 -328c0 -58 23 -97 58 -97c30 0 68 41 108 116c29 54 43 94 55 156l29 149l74 22 l7 -8l-52 -184c-12 -43 -21 -109 -21 -156c0 -55 21 -95 50 -95c85 0 182 166 182 311c0 40 -16 63 -43 63c-9 0 -18 -3 -27 -9l-11 19l50 47c8 8 20 12 33 12c36 0 62 -41 62 -98c0 -146 -153 -395 -287 -395c-45 0 -74 43 -74 106c0 23 3 48 12 92 c-74 -143 -126 -198 -190 -198c-53 0 -88 55 -88 137c0 140 99 224 154 298c-25 -3 -38 -4 -59 -4'], + 0x1D465: [482,11,499,9,484,'9 1c4 26 12 52 12 87l20 3l11 -28c2 -5 13 -9 28 -9c28 0 62 32 105 99l40 62l-11 62c-17 98 -39 139 -72 139c-19 0 -39 -14 -69 -48l-17 10l58 83c9 13 31 21 57 21c59 0 86 -36 98 -135l6 -48l37 55c62 92 102 128 142 128c9 0 18 -3 30 -10l-15 -85l-14 -4 c-5 15 -17 23 -33 23c-31 0 -58 -23 -105 -88l-35 -49l18 -101c5 -29 16 -66 25 -85c10 -20 23 -30 38 -30c16 0 41 15 77 45l9 -19l-49 -44c-32 -29 -64 -46 -86 -46c-36 0 -59 39 -72 124l-11 69l-76 -117c-31 -47 -70 -76 -103 -76c-12 0 -28 4 -43 12'], + 0x1D466: [482,276,499,-8,490,'-7 -180l48 34l10 -4c-1 -9 -2 -17 -2 -22c0 -35 27 -62 62 -62c70 0 120 73 171 250l49 171c-75 -113 -159 -198 -196 -198c-25 0 -43 29 -43 71l1 40l17 243c1 8 1 14 1 15c0 33 -8 52 -22 52c-9 0 -20 -9 -25 -12l-50 -30l-11 18l82 56c48 33 62 40 75 40 c17 0 24 -18 24 -63c0 -28 -2 -66 -4 -97l-16 -207c-1 -25 8 -48 20 -48c22 0 71 44 106 95c33 49 68 122 80 169l35 132c22 2 45 8 74 19l11 -9l-141 -440c-59 -185 -169 -309 -275 -309c-45 0 -82 35 -82 78c0 5 0 11 1 18'], + 0x1D467: [482,11,443,-1,416,'322 -11c-69 0 -160 37 -223 37c-35 0 -62 -9 -91 -32l-9 27l353 400c-33 -17 -57 -23 -93 -23c-53 0 -85 15 -126 15c-13 0 -22 -1 -39 -5l-30 -58h-21l32 122c24 7 44 10 61 10c14 0 34 -4 62 -11l18 -5c48 -13 100 -21 134 -21c14 0 24 4 34 14l23 23l9 -9l-6 -32 l-339 -382c36 15 63 21 95 21c19 0 53 -5 86 -12l18 -4c21 -5 37 -7 49 -7c21 0 33 7 39 25l22 60h22c-11 -47 -19 -81 -30 -143c-29 -8 -38 -10 -50 -10'], + 0x1D468: [683,3,721,-35,685,'199 -3c-11 1 -91 3 -114 3l-120 -3l5 35l34 3c18 1 33 13 47 35l363 613h96l84 -593c6 -36 22 -52 54 -55l37 -3v-35c-85 2 -121 3 -146 3c-30 0 -30 0 -155 -3v35l42 3c28 2 43 13 42 31l-25 198h-221l-86 -152c-14 -25 -19 -40 -19 -57c0 -12 14 -18 43 -20l44 -3z M400 573l-155 -266h193'], + 0x1D469: [682,3,666,8,629,'332 -3c-20 0 -75 2 -142 3c-33 0 -80 0 -182 -3l5 32l28 3c31 3 40 15 48 60l89 523c0 21 -11 29 -46 31l-46 3l5 32c131 -3 131 -3 158 -3c31 0 64 0 190 4c46 0 77 -5 105 -16c54 -22 85 -68 85 -124c0 -116 -112 -156 -202 -183c65 -6 93 -15 124 -37 c32 -24 50 -62 50 -108c0 -92 -81 -217 -269 -217zM311 635l-47 -260h43c125 0 190 55 190 160c0 39 -10 63 -33 80c-19 14 -117 20 -153 20zM469 208c0 36 -6 127 -147 127c-11 0 -48 -2 -66 -3l-45 -281c42 -6 84 -11 112 -11c91 0 146 64 146 168'], + 0x1D46A: [695,17,684,69,695,'340 -17c-130 0 -271 53 -271 267c0 247 194 445 435 445c69 0 126 -13 191 -43c-26 -92 -33 -121 -38 -168h-35l5 88c2 33 -83 64 -175 64c-149 0 -245 -142 -245 -364c0 -153 61 -224 192 -224c63 0 122 19 198 64l22 13l10 -9l-13 -39c-110 -69 -182 -94 -276 -94'], + 0x1D46B: [682,3,777,0,747,'747 422c0 -190 -134 -425 -417 -425l-72 1c-24 1 -99 2 -117 2c-36 0 -67 -1 -141 -3l5 32l28 3c30 3 40 15 48 60l89 522c0 22 -11 30 -46 32l-46 3l5 32c131 -3 131 -3 160 -3c83 0 166 4 208 4c115 0 183 -24 234 -81c40 -45 62 -107 62 -179zM303 635l-100 -584 c63 -9 83 -11 111 -11c116 0 182 33 227 111c41 74 68 185 68 283c0 87 -25 144 -76 174c-34 19 -98 29 -157 29'], + 0x1D46C: [681,3,620,11,606,'16 29l28 3c30 3 40 15 48 60l89 522c0 22 -11 30 -46 32l-46 3l5 32c131 -3 131 -3 157 -3c24 0 83 0 185 3c15 0 15 0 160 -3l10 -6c-12 -64 -17 -97 -25 -152h-32v53c0 33 -2 43 -12 46c-15 6 -112 15 -160 15c-6 0 -51 1 -59 0l-48 -256h86c51 0 85 1 140 3l5 -9 l-14 -47c-105 4 -193 5 -225 5l-48 -274c24 -5 152 -3 176 -3c83 3 95 8 108 45l22 70h36c-11 -45 -18 -80 -34 -168c-144 -3 -144 -3 -167 -3c-19 0 -43 0 -156 3h-49c-33 0 -38 0 -139 -3'], + 0x1D46D: [681,3,555,-6,593,'317 630l-50 -286h86c51 0 85 1 140 3l5 -9l-14 -47c-105 4 -138 5 -170 5h-55l-36 -196c-3 -15 -4 -26 -4 -35c0 -21 9 -29 36 -30l63 -3l-5 -35c-146 3 -146 3 -165 3c-21 0 -21 0 -154 -3l5 35l43 3c32 1 43 19 58 97l82 462c1 7 2 15 2 20c0 23 -10 30 -46 32l-50 3 l5 32c134 -3 134 -3 159 -3s25 0 157 3l174 -3l10 -6c-12 -64 -17 -97 -25 -152h-32v53c0 28 -1 39 -7 44c-12 11 -154 18 -161 17'], + 0x1D46E: [695,17,777,72,750,'72 256c0 283 242 439 451 439c73 0 130 -12 199 -43c-26 -92 -33 -121 -38 -168h-35c1 6 5 88 5 90c0 31 -80 59 -172 59c-64 0 -128 -20 -166 -53c-63 -54 -106 -185 -106 -321c0 -148 66 -229 186 -229c47 0 87 10 121 29c2 8 35 158 35 164c0 19 -12 27 -44 28l-60 2 l5 33c125 -3 125 -3 149 -3c26 0 26 0 148 3l-5 -33l-25 -2c-27 -3 -37 -13 -45 -45l-23 -158c-144 -52 -200 -65 -284 -65c-144 0 -296 55 -296 273'], + 0x1D46F: [681,3,777,-12,826,'402 646l-42 -3c-34 -1 -44 -12 -53 -55l-39 -202h294l25 155c5 31 8 59 8 76s-11 24 -38 26l-51 3l5 35c127 -3 127 -3 152 -3c22 0 22 0 163 3l-5 -35l-42 -3c-35 -2 -44 -11 -53 -55l-87 -486c-3 -14 -4 -28 -4 -38c0 -19 12 -28 38 -29l55 -3l-5 -35 c-150 3 -150 3 -168 3c-21 0 -21 0 -148 -3l5 35l49 3c34 4 38 10 54 97l37 206h-291l-41 -236c-3 -15 -4 -29 -4 -39c0 -18 11 -26 38 -28l49 -3l-5 -35c-128 3 -128 3 -150 3c-20 0 -20 0 -160 -3l5 35l49 3c34 3 38 10 54 97l72 409c5 31 8 55 8 73c0 20 -9 27 -38 29 l-51 3l5 35c136 -3 136 -3 157 -3s21 0 158 3'], + 0x1D470: [681,3,388,-1,412,'408 646l-45 -3c-33 -2 -39 -7 -46 -44l-87 -499c-2 -11 -3 -23 -3 -34c0 -21 10 -30 37 -31l59 -3l-4 -35c-148 3 -148 3 -163 3c-17 0 -17 0 -157 -3l4 35l49 3c33 2 38 12 54 97l72 409c6 34 9 58 9 72c0 19 -12 28 -38 30l-52 3l4 35c130 -3 130 -3 152 -3 s22 0 159 3'], + 0x1D471: [681,207,388,-29,417,'412 646l-46 -3c-33 -2 -39 -8 -46 -44l-98 -556c-23 -131 -118 -250 -199 -250c-13 0 -30 3 -52 10v35c14 -6 23 -8 36 -8c60 0 65 66 77 135l96 576c5 29 10 67 10 73c0 18 -12 27 -38 29l-51 3l5 35c130 -3 130 -3 153 -3c22 0 22 0 158 3'], + 0x1D472: [681,3,721,-10,746,'399 646l-45 -3c-33 -2 -39 -8 -46 -44l-47 -265l249 223c8 5 61 67 67 75c8 10 10 15 10 25v24c67 -3 67 -3 79 -3c13 0 13 0 80 3v-33h-35c-17 0 -42 -16 -82 -52l-245 -223l196 -272c40 -55 47 -61 68 -65l39 -6l-3 -33c-36 2 -58 3 -92 3c-35 0 -58 -1 -94 -3 c-15 22 -212 301 -237 331l-40 -228c-2 -12 -3 -21 -3 -30c0 -25 8 -33 37 -35l49 -3l-4 -35c-128 3 -128 3 -150 3c-20 0 -20 0 -160 -3l4 35l49 3c33 2 38 12 54 97l72 409c6 34 9 58 9 72c0 19 -12 28 -38 30l-52 3l4 35c130 -3 130 -3 152 -3s22 0 159 3'], + 0x1D473: [681,3,610,26,578,'416 646l-45 -3c-33 -2 -39 -8 -46 -44l-99 -543c25 -5 37 -6 68 -6c40 0 132 3 168 6c34 3 48 14 57 42l23 76h36c-19 -93 -26 -124 -34 -174c-142 -3 -142 -3 -172 -3c-12 0 -15 0 -114 2l-87 1c-43 0 -45 0 -145 -3l4 32l28 3c29 3 37 14 46 60l82 449c6 32 9 58 9 74 c0 17 -12 27 -38 28l-52 3l4 35c130 -3 130 -3 152 -3s22 0 159 3'], + 0x1D474: [681,17,943,-23,985,'805 110c0 -4 -7 -32 -7 -45c0 -21 10 -29 36 -30l55 -3l-5 -35c-127 3 -127 3 -152 3c-24 0 -24 0 -155 -3l5 35l49 3c34 5 35 11 44 55c1 4 2 9 2 11l82 485l-291 -478l-71 -125h-25l-143 565l-107 -440c-8 -32 -8 -33 -8 -44c0 -20 9 -28 34 -29l51 -3l-5 -35 c-45 2 -89 3 -108 3c-18 0 -18 0 -109 -3l2 35l42 3c17 2 30 20 40 56l125 461c6 22 9 43 9 61c0 21 -16 31 -53 33l-45 3l5 32c46 -2 92 -3 110 -3s18 0 111 3l127 -507c170 267 229 364 308 507c47 -2 94 -3 113 -3s19 0 114 3l-5 -32l-39 -3c-37 -3 -46 -15 -56 -69'], + 0x1D475: [681,3,777,-2,829,'620 -3h-85l-310 537l-73 -396c-5 -27 -8 -50 -8 -62c0 -26 12 -40 36 -41l51 -3l-5 -35c-93 3 -93 3 -112 3s-19 0 -116 -3l2 35l48 3c22 1 32 15 40 56l97 487c6 23 -32 65 -82 68l-39 3l3 32c45 -2 89 -3 107 -3s18 0 108 3l314 -539l74 400c3 19 6 48 6 70 c0 21 -15 32 -46 34l-42 3l5 32c98 -3 98 -3 118 -3s20 0 118 3l-6 -32l-37 -3c-42 -4 -41 -4 -64 -118'], + 0x1D476: [695,17,832,76,794,'493 695c124 0 301 -56 301 -281c0 -244 -186 -431 -429 -431c-183 0 -289 104 -289 285c0 250 173 427 417 427zM388 26c214 0 268 269 268 409c0 144 -60 217 -176 217c-86 0 -148 -36 -195 -115c-42 -70 -71 -191 -71 -298c0 -140 60 -213 174 -213'], + 0x1D477: [681,3,711,11,673,'337 635l-95 -535c-2 -11 -3 -23 -3 -34c0 -21 10 -30 37 -31l59 -3l-4 -35c-148 3 -148 3 -163 3c-17 0 -17 0 -157 -3l4 35l49 3c33 2 38 12 54 97l82 462c1 7 2 15 2 20c0 23 -10 30 -46 32l-56 3l5 32c143 -3 143 -3 168 -3l99 1c19 1 88 2 95 2 c137 0 206 -55 206 -163c0 -131 -112 -237 -251 -237c-33 0 -61 5 -97 18l-2 35c24 -8 43 -12 66 -12c87 0 152 81 152 189c0 88 -44 127 -142 127c-18 0 -35 -1 -62 -3'], + 0x1D478: [695,222,832,76,794,'493 695c124 0 301 -56 301 -281c0 -244 -186 -431 -429 -431c-183 0 -289 104 -289 285c0 250 173 427 417 427zM388 26c214 0 268 269 268 409c0 144 -60 217 -176 217c-86 0 -148 -36 -195 -115c-42 -70 -71 -191 -71 -298c0 -140 60 -213 174 -213zM174 -170l-24 16 c1 90 49 142 132 142c32 0 83 -14 138 -38l94 -41c60 -26 114 -42 143 -42c43 0 69 29 81 90l31 -10c-22 -108 -79 -169 -159 -169c-26 0 -44 6 -82 26l-199 107c-23 12 -48 19 -72 19c-47 0 -77 -39 -78 -98'], + 0x1D479: [681,3,721,4,697,'659 538c0 -153 -169 -178 -205 -185l156 -267c14 -25 39 -51 50 -52l37 -7v-30c-37 2 -47 2 -98 3l-84 -3l-145 261c-23 39 -55 86 -61 95l5 17h55c92 0 158 67 158 159c0 77 -40 109 -137 109c-19 0 -36 -1 -62 -3l-93 -535c-2 -11 -3 -23 -3 -34c0 -21 10 -30 37 -31 l59 -3l-4 -35c-148 3 -148 3 -163 3c-17 0 -17 0 -157 -3l4 35l49 3c33 2 38 12 54 97l81 462c1 7 2 15 2 20c0 23 -10 30 -46 32l-46 3l5 32c133 -3 133 -3 170 -3l100 1c26 1 72 2 83 2c132 0 199 -48 199 -143'], + 0x1D47A: [695,17,555,50,517,'495 239c0 -102 -86 -256 -285 -256c-69 0 -115 11 -160 40l21 166h27v-76c26 -49 77 -74 152 -74c90 0 139 44 139 123c0 127 -155 95 -245 182c-26 23 -40 62 -40 106c0 133 122 245 266 245c54 0 104 -15 147 -44c-14 -51 -22 -99 -22 -147h-30v85 c-41 35 -82 50 -134 50c-79 0 -135 -47 -135 -113c0 -160 299 -99 299 -287'], + 0x1D47B: [681,3,610,56,674,'436 630l-95 -530c-3 -16 -4 -26 -4 -35c0 -21 10 -29 36 -30l59 -3l-5 -35c-149 3 -149 3 -168 3c-20 0 -20 0 -156 -3l5 35l53 3c32 1 42 18 58 97l85 498h-124c-20 0 -44 -10 -57 -24c-5 -7 -10 -19 -15 -40l-14 -58h-38l25 168l6 5c256 -3 256 -3 290 -3s34 0 290 3 l7 -5l-30 -168h-38l4 84c1 26 -16 38 -57 38h-117'], + 0x1D47C: [681,17,777,83,825,'586 541c0 0 5 28 5 30c4 19 6 35 6 46c0 16 -12 25 -37 26l-51 3l5 35c130 -3 130 -3 152 -3s22 0 159 3l-5 -35l-46 -3c-35 -2 -42 -8 -49 -44l-90 -499c-3 -15 -4 -26 -4 -35c0 -21 10 -29 36 -30l59 -3l-5 -35c-102 3 -102 3 -118 3c-18 0 -18 0 -106 -3l-5 8 c9 40 14 63 27 128c-81 -86 -146 -150 -248 -150c-69 0 -177 35 -177 173c0 24 3 50 8 78l58 307l1 7c1 2 1 4 1 7c6 27 9 50 9 62c0 16 -12 25 -37 26l-51 3l5 35l54 -1c40 -1 67 -2 78 -2c26 0 40 0 87 3l6 -7l-86 -460c-2 -11 -3 -22 -3 -36c0 -28 5 -54 14 -68 c17 -29 52 -47 89 -47c86 0 190 98 194 119'], + 0x1D47D: [681,3,666,67,745,'363 646l-50 -3c-25 -2 -30 -7 -30 -36c0 -5 0 -7 1 -13l68 -462l233 435c17 32 21 42 21 54c0 14 -10 21 -33 22l-50 3l5 35c84 -3 98 -3 109 -3l108 3l-3 -35l-26 -3c-21 -2 -29 -10 -50 -45l-334 -601h-83l-95 588c-7 42 -18 56 -44 58l-43 3v35c122 -3 122 -3 148 -3 c25 0 25 0 148 3v-35'], + 0x1D47E: [689,3,1000,67,1073,'538 491l-246 -494h-84l-50 521c-1 10 -2 17 -2 21c-7 91 -10 98 -48 104l-41 3l5 35c120 -3 120 -3 145 -3c24 0 24 0 146 3v-35l-45 -3c-29 -3 -37 -15 -37 -50l35 -448l265 544h31l148 -556l169 446c10 26 11 30 11 40c0 16 -11 22 -45 24l-45 3l5 35 c90 -3 90 -3 109 -3s19 0 109 3l-5 -35l-34 -3c-18 -1 -26 -15 -62 -101l-219 -545h-84'], + 0x1D47F: [681,3,721,-9,772,'330 323l-152 291c-7 15 -31 27 -56 29l-40 3v35c132 -3 132 -3 160 -3s28 0 160 3v-35l-40 -3c-31 -2 -39 -6 -39 -17c0 -10 3 -21 9 -33l89 -175l152 172c14 14 21 27 21 34c0 11 -14 17 -39 19l-48 3l5 35c107 -3 107 -3 130 -3c22 0 22 0 130 3l-2 -35l-44 -3 c-14 1 -51 -24 -78 -53l-205 -213l151 -295c20 -38 28 -45 48 -47l47 -3l-5 -35c-128 3 -135 3 -151 3l-153 -3v35l62 2c11 0 19 7 19 16s-3 23 -7 31l-101 199l-168 -192c-10 -11 -15 -24 -15 -36c0 -10 12 -16 34 -17l55 -3l-5 -35c-105 3 -105 3 -129 3 c-22 0 -22 0 -134 -3l5 35l40 3c17 1 40 13 52 26'], + 0x1D480: [695,3,610,54,675,'675 681l-6 -88c-117 -14 -265 -282 -279 -387l-20 -106c-2 -11 -3 -22 -3 -33c0 -23 9 -31 37 -32l59 -3l-4 -35c-148 3 -148 3 -163 3c-17 0 -17 0 -157 -3l4 35l49 3c34 4 34 4 54 97l16 73c2 8 4 30 4 40c0 18 -9 60 -23 106l-32 105c-26 85 -69 141 -109 141 c-17 0 -35 -4 -45 -10l-3 33c25 17 37 26 90 70c15 4 20 5 28 5c25 0 53 -11 73 -29c36 -32 70 -109 89 -200l36 -169c90 221 223 389 305 384'], + 0x1D481: [681,3,666,1,676,'1 -3v27l495 605h-164c-69 0 -146 -7 -161 -14c-7 -3 -13 -12 -18 -29l-24 -76h-35c12 53 18 91 26 160l7 11l130 -2c58 -1 104 -1 140 -1c27 0 57 0 88 1l191 2l-5 -35l-483 -597h180c74 0 129 4 185 15c21 44 32 72 45 116h36l-39 -183c-260 3 -260 3 -306 3l-219 -3 h-69'], + 0x1D482: [470,17,555,44,519,'444 443l45 27l16 -12c-18 -49 -25 -74 -32 -105l-45 -214c-6 -29 -10 -49 -10 -50c3 -18 6 -23 14 -23s37 16 55 30l20 16l12 -30c-75 -67 -132 -99 -174 -99c-20 0 -32 17 -32 45c0 17 2 36 7 55l37 151c-93 -163 -184 -251 -259 -251c-31 0 -54 31 -54 75 c0 80 36 216 71 269c16 26 85 84 138 119c27 17 51 23 89 23c32 0 55 -6 102 -26zM377 395c-35 17 -54 22 -81 22c-43 0 -71 -30 -93 -99c-25 -77 -47 -179 -47 -216c0 -20 8 -37 18 -37c35 0 173 133 203 330'], + 0x1D483: [726,17,536,44,494,'494 353c0 -298 -242 -370 -329 -370c-75 0 -121 41 -121 110c0 16 1 27 9 72l73 431c2 12 3 22 3 31c0 17 -11 25 -34 25h-45l7 28c100 15 149 26 198 46l10 -9c-8 -34 -11 -50 -14 -65l-71 -348c40 59 62 85 99 112c48 35 95 53 141 53c48 0 74 -41 74 -116zM222 29 c113 0 158 228 158 290c0 50 -14 81 -39 84c-39 4 -118 -63 -148 -126c-24 -51 -39 -114 -39 -159c0 -55 26 -89 68 -89'], + 0x1D484: [469,17,443,32,436,'391 120l10 -30c-118 -82 -174 -107 -242 -107c-78 0 -127 53 -127 136c0 72 24 167 53 213c18 28 52 57 105 88c64 39 93 49 133 49c34 0 60 -5 113 -24c-14 -37 -19 -57 -35 -141h-33l6 56l-4 14c-32 23 -61 33 -92 33c-40 0 -72 -24 -92 -68 c-21 -47 -40 -141 -40 -199c0 -55 31 -90 79 -90c47 0 87 17 166 70'], + 0x1D485: [726,17,555,38,550,'396 460l18 112c3 21 4 27 4 38c0 29 -11 42 -38 42h-45l7 28c100 15 149 26 198 46l10 -9c-3 -13 -4 -19 -6 -24c0 -3 -2 -9 -8 -41l-107 -531c-3 -16 -5 -30 -5 -40c0 -8 6 -16 14 -16c5 0 15 6 49 28l26 17l9 -28l-36 -26c-58 -43 -114 -73 -136 -73 c-19 0 -35 18 -35 41c0 14 2 31 7 50l40 164c-65 -108 -98 -152 -145 -193c-49 -42 -85 -62 -116 -62c-36 0 -63 37 -63 87c0 98 34 227 74 278c19 25 126 121 219 121c20 0 36 -2 65 -9zM176 65c54 0 167 172 184 241l24 95c-37 14 -57 18 -85 18c-50 0 -68 -13 -91 -66 c-29 -66 -56 -194 -56 -261c0 -16 10 -27 24 -27'], + 0x1D486: [469,17,443,28,418,'377 114l10 -28c-5 -3 -10 -6 -14 -9l-15 -9c-99 -65 -149 -85 -209 -85c-75 0 -121 44 -121 117c0 68 27 173 60 231c39 69 158 138 237 138c57 0 93 -34 93 -88c0 -124 -156 -162 -271 -188c-4 -29 -5 -44 -5 -64c0 -52 27 -82 73 -82c41 0 87 19 162 67zM151 219 l41 12c81 24 132 76 132 137c0 33 -18 53 -48 53c-49 0 -89 -51 -111 -144'], + 0x1D487: [726,271,449,-25,554,'467 403h-123l-55 -235c-48 -204 -78 -279 -140 -352c-40 -47 -102 -87 -136 -87c-12 0 -29 4 -38 9c11 24 27 79 32 107l17 3c14 -31 29 -44 51 -44c34 0 48 19 84 225l71 374h-91l5 25l50 16c25 8 40 14 50 19c14 84 33 104 71 139l56 49c15 13 50 38 79 56 c25 15 36 19 57 19c14 0 25 -2 47 -8c-13 -48 -20 -78 -28 -125l-15 -3c-31 44 -47 56 -73 56c-57 0 -57 -81 -83 -192c43 1 74 3 123 8l5 -8c-6 -14 -9 -25 -16 -51'], + 0x1D488: [469,271,499,-50,529,'-50 -146c0 97 129 138 192 158c-15 11 -25 30 -26 49l4 20l92 56c-64 1 -95 9 -122 32c-25 22 -36 51 -36 97c0 60 22 105 66 138c49 36 125 65 170 65c27 0 62 -8 90 -20c18 -2 48 -3 73 -3l71 3l5 -9l-10 -50l-88 4c8 -24 11 -39 11 -59c0 -124 -102 -165 -157 -186 c-41 -15 -58 -28 -58 -46c0 -11 9 -24 23 -34l85 -60c55 -39 78 -72 78 -114c0 -96 -107 -166 -254 -166c-126 0 -209 49 -209 125zM266 425c-34 0 -61 -16 -79 -46c-17 -27 -30 -83 -30 -123c0 -52 28 -84 73 -84c62 0 104 68 104 168c0 54 -24 85 -68 85zM163 -5l-28 -13 c-66 -31 -96 -66 -96 -113c0 -62 56 -104 139 -104c74 0 131 39 131 91c0 30 -17 52 -64 84'], + 0x1D489: [726,17,555,22,522,'22 -2c41 84 128 587 128 629c0 17 -11 25 -34 25h-45l7 28c100 15 149 26 198 46l10 -9s-16 -62 -17 -65l-89 -408c84 134 198 225 283 225c23 0 38 -18 38 -44c0 -48 -24 -109 -31 -137l-38 -144c-5 -20 -8 -41 -8 -63c0 -10 4 -16 12 -16c9 0 26 8 61 30l16 10l9 -26 c-104 -71 -151 -96 -185 -96c-18 0 -31 18 -31 41c0 76 73 270 73 328c0 18 -7 29 -20 29c-44 0 -119 -79 -165 -173c-27 -55 -47 -128 -56 -204c-36 -2 -84 -10 -106 -17'], + 0x1D48A: [695,17,332,26,312,'293 84c-109 -79 -155 -101 -194 -101c-19 0 -32 17 -32 43c0 15 3 38 6 52l59 241c6 24 8 35 8 40c0 7 -4 11 -10 11c-9 0 -50 -20 -69 -34l-22 -16l-13 26l63 47c61 46 121 76 149 76c15 0 26 -15 26 -37c0 -19 -4 -49 -9 -67l-54 -196c-13 -47 -20 -80 -20 -92 c0 -6 6 -12 12 -12c9 0 27 9 61 30l27 17zM257 695c32 0 55 -25 55 -59c0 -41 -29 -72 -69 -72c-33 0 -54 22 -54 57c0 41 30 74 68 74'], + 0x1D48B: [695,271,332,-64,323,'49 320l-13 26l63 47c61 46 121 76 149 76c16 0 26 -15 26 -40c0 -18 -3 -40 -9 -64l-67 -274c-33 -135 -64 -214 -107 -276c-41 -58 -80 -86 -121 -86c-10 0 -18 1 -34 5c5 28 8 47 10 79l14 3c14 -22 28 -33 44 -33c20 0 35 24 46 78l86 408c9 45 14 73 14 88 c0 9 -3 13 -10 13c-9 0 -50 -20 -69 -34zM268 695c32 0 55 -25 55 -59c0 -41 -29 -72 -69 -72c-33 0 -54 22 -54 57c0 41 30 74 68 74'], + 0x1D48C: [726,17,555,34,528,'34 -5c38 96 126 585 126 632c0 17 -11 25 -34 25h-45l7 28c100 15 149 26 198 46l10 -9s-16 -62 -17 -65l-95 -431c40 55 89 109 147 164c63 60 107 84 154 84c12 0 28 -3 43 -9l-20 -70c-22 6 -34 8 -49 8c-52 0 -100 -26 -146 -80l65 -173c18 -47 42 -80 59 -80 c10 0 23 6 46 20l27 17l10 -29l-44 -31c-55 -39 -97 -59 -122 -59c-23 0 -39 24 -66 97l-57 155l-31 -34c-21 -25 -23 -31 -35 -91c-12 -57 -14 -73 -16 -106c-29 -2 -45 -5 -105 -18'], + 0x1D48D: [726,17,332,64,318,'277 114l14 -27c-116 -85 -152 -104 -195 -104c-21 0 -32 18 -32 53c0 34 1 44 16 110l99 450c3 12 4 22 4 31c0 16 -12 25 -35 25h-45l7 28c100 15 149 26 198 46l10 -9c-1 -3 -17 -62 -17 -65l-107 -482c-8 -34 -12 -68 -12 -91c0 -8 5 -14 12 -14c10 0 35 12 53 26'], + 0x1D48E: [469,17,832,19,803,'577 23c0 81 75 291 75 331c0 9 -7 16 -16 16c-43 0 -199 -130 -217 -366c-36 -2 -83 -10 -104 -17l-10 11c42 127 84 300 84 345c0 17 -7 27 -19 27c-37 0 -78 -37 -128 -115c-46 -71 -71 -146 -87 -251c-36 -2 -83 -10 -104 -17l-10 11c44 132 83 300 83 356 c0 10 -5 16 -13 16c-9 0 -24 -7 -41 -20l-37 -28l-14 26l84 68c39 31 84 53 110 53c15 0 24 -12 24 -30c0 -17 -4 -41 -19 -103l-29 -124c54 101 102 158 178 214c44 32 69 43 96 43c24 0 39 -17 39 -46c0 -21 -5 -47 -19 -96l-34 -120c36 77 75 131 133 181 c55 49 117 81 156 81c22 0 37 -18 37 -47c0 -21 -3 -45 -10 -69l-50 -184c-13 -47 -20 -80 -20 -92c0 -6 6 -12 11 -12c10 0 32 11 61 32l24 17l12 -25c-49 -41 -134 -106 -189 -106c-22 0 -37 16 -37 40'], + 0x1D48F: [469,17,555,17,521,'305 25c0 71 73 275 73 324c0 14 -7 21 -20 21c-43 0 -181 -120 -213 -366c-36 -2 -84 -10 -106 -17l-10 11c46 138 85 300 85 355c0 11 -4 17 -11 17c-11 0 -25 -6 -41 -17l-32 -22l-13 27l84 62c45 34 78 49 102 49c17 0 27 -11 27 -30c0 -28 -6 -57 -34 -157l-17 -60 c35 60 52 85 87 122c67 74 148 125 195 125c23 0 39 -17 39 -42c0 -13 -6 -45 -16 -83l-48 -184c-8 -32 -13 -60 -13 -78c0 -11 4 -17 11 -17c10 0 21 6 45 22l29 20l13 -27l-29 -21c-75 -56 -115 -76 -151 -76c-21 0 -36 18 -36 42'], + 0x1D490: [469,17,555,48,502,'350 469c96 0 152 -55 152 -150c0 -63 -19 -145 -46 -193c-14 -26 -104 -143 -260 -143c-98 0 -148 51 -148 152c0 41 8 88 24 137c21 65 55 108 117 147c52 33 108 50 161 50zM243 27c112 0 145 203 145 296c0 62 -32 102 -80 102c-117 0 -146 -214 -146 -295 c0 -63 31 -103 81 -103'], + 0x1D491: [469,271,555,-21,516,'-11 -271l-10 7c12 40 19 67 32 122l79 340c24 126 24 126 24 156c0 10 -4 16 -11 16c-11 0 -25 -6 -41 -17l-32 -22l-13 27l84 62c45 34 78 49 102 49c18 0 27 -11 27 -31c0 -37 -19 -111 -35 -185c47 79 73 113 117 150c54 45 101 66 148 66c37 0 56 -33 56 -99 c0 -119 -42 -232 -107 -288c-115 -97 -160 -99 -204 -99c-21 0 -35 2 -56 7c-36 -142 -44 -180 -48 -240c-45 -5 -101 -19 -112 -21zM175 121l-14 -62c33 -19 62 -27 94 -27s61 20 80 54c37 66 67 178 67 247c0 38 -10 58 -28 58c-37 0 -90 -45 -137 -117 c-34 -52 -46 -83 -62 -153'], + 0x1D492: [469,271,536,32,513,'448 443l47 26l18 -11c-14 -30 -23 -62 -41 -143l-92 -428c-3 -13 -21 -96 -21 -128c0 -1 0 -5 1 -11c-45 -3 -77 -7 -132 -19l-9 18l15 12c8 6 16 29 26 68c0 2 2 7 2 8l83 359c-108 -143 -191 -211 -262 -211c-29 0 -51 32 -51 73c0 81 36 220 71 272 c17 25 68 67 133 108c45 28 58 33 96 33c45 0 77 -7 116 -26zM374 357l8 39c-35 16 -57 21 -84 21c-36 0 -58 -11 -75 -38c-32 -53 -77 -215 -77 -281c0 -20 9 -33 22 -33c25 0 61 29 111 89c52 64 77 117 95 203'], + 0x1D493: [469,17,388,20,411,'187 219c83 168 118 250 197 250c10 0 17 -2 27 -6c-15 -66 -19 -95 -20 -137l-12 -6c-21 14 -35 19 -52 19c-46 0 -85 -48 -123 -151c-16 -45 -27 -95 -41 -186c-58 -6 -81 -10 -108 -19l-11 12c14 43 21 67 27 92l24 107c26 134 26 134 26 160c0 10 -5 16 -12 16 c-9 0 -24 -8 -42 -20l-34 -24l-13 26l81 64c45 35 81 53 108 53c16 0 25 -11 25 -32c0 -17 -8 -52 -31 -147'], + 0x1D494: [469,17,443,25,406,'76 141v-47c34 -36 80 -56 130 -56c54 0 88 28 88 72c0 36 -22 58 -68 67l-44 9c-76 15 -114 53 -114 112c0 45 18 72 63 107c68 53 105 64 153 64c46 0 81 -9 122 -31l-6 -33c-9 -48 -11 -59 -11 -83h-30l-6 48c-39 31 -70 44 -110 44c-49 0 -82 -29 -82 -73 c0 -35 19 -50 76 -63l59 -13c61 -14 98 -53 98 -105c0 -37 -13 -63 -46 -94c-59 -56 -121 -83 -186 -83c-38 0 -70 6 -137 27c13 62 17 90 21 131h30'], + 0x1D495: [636,17,388,42,409,'151 401h-109l7 27l115 32c14 77 16 96 16 122v16c22 3 38 7 57 14l66 24l10 -12c-16 -58 -24 -86 -31 -116l-13 -56l134 5l6 -5l-14 -56c-32 4 -53 5 -92 5h-47l-51 -237c-6 -28 -9 -51 -9 -72s6 -28 25 -28c17 0 31 6 53 21l56 40l13 -26l-77 -57 c-56 -41 -96 -59 -133 -59c-35 0 -54 22 -54 61c0 15 1 20 10 64'], + 0x1D496: [469,17,555,22,521,'516 454c-16 -53 -96 -333 -96 -368c0 -7 6 -12 14 -12c14 0 35 10 55 25l22 17l10 -28c-2 -1 -134 -105 -175 -105c-20 0 -34 18 -34 43c0 16 5 42 16 81l32 117c-99 -156 -192 -241 -263 -241c-26 0 -44 23 -44 57c0 48 68 256 68 314c0 10 -6 16 -17 16 c-10 0 -22 -4 -33 -10l-36 -21l-13 26l79 54c45 31 90 50 116 50c17 0 27 -13 27 -35c0 -29 -4 -48 -29 -147l-35 -137c-6 -25 -10 -49 -10 -66c0 -7 7 -13 16 -13c54 0 206 195 211 376c33 -1 67 5 110 18'], + 0x1D497: [469,17,555,19,513,'513 370c0 -134 -143 -387 -308 -387c-74 0 -118 52 -118 140c0 84 32 145 126 239l41 41c-34 -8 -70 -11 -137 -11c-28 0 -40 -2 -42 -8l-28 -60h-28l41 132c22 4 35 5 51 5c27 0 108 -6 135 -6c24 0 52 6 64 14l14 -19c-55 -66 -127 -164 -127 -303 c0 -65 23 -101 66 -101c107 0 173 200 173 288c0 32 -16 55 -39 55c-14 0 -27 -4 -36 -12l-10 21c19 14 34 30 66 67c12 3 18 4 26 4c37 0 70 -46 70 -99'], + 0x1D498: [469,17,832,27,802,'802 371c0 -137 -149 -388 -309 -388c-57 0 -94 42 -94 107c0 25 2 43 9 87c-43 -83 -75 -124 -126 -160c-33 -24 -60 -34 -90 -34c-62 0 -101 53 -101 137s33 145 130 242l41 41c-34 -8 -70 -11 -137 -11c-28 0 -40 -2 -42 -8l-28 -60h-28l41 132c22 4 35 5 51 5 c27 0 108 -6 135 -6c24 0 52 6 64 14l14 -19c-60 -70 -84 -112 -107 -181c-13 -42 -20 -83 -20 -123c0 -61 19 -100 48 -100c56 0 133 108 158 223l24 109c5 25 7 35 10 64c39 5 66 11 107 27l12 -9c-45 -161 -68 -272 -68 -333c0 -48 23 -81 57 -81c99 0 172 200 172 289 c0 33 -16 54 -42 54c-13 0 -25 -3 -36 -8l-12 23c34 23 50 37 71 61c12 3 18 4 26 4c37 0 70 -46 70 -98'], + 0x1D499: [469,17,499,-8,500,'8 98l24 2l6 -31c11 -4 19 -6 28 -6c30 0 59 20 88 61l52 73l-16 88c-11 61 -34 99 -59 99c-24 0 -57 -23 -72 -49l-23 13c28 37 53 91 59 101c41 16 56 20 76 20c90 0 103 -90 113 -147l4 -23l63 87c39 55 77 83 110 83c12 0 27 -4 39 -10c-12 -23 -16 -42 -23 -106 l-21 -5l-9 28c-10 4 -15 5 -21 5c-24 0 -62 -28 -92 -69l-38 -51l11 -64c20 -113 40 -133 64 -133c10 0 19 4 47 24l30 21l16 -23l-18 -16c-77 -65 -113 -87 -143 -87c-63 0 -74 93 -79 119l-10 58l-85 -114c-29 -39 -65 -63 -94 -63c-13 0 -24 4 -43 14c9 39 13 64 16 101'], + 0x1D49A: [469,271,555,13,541,'224 67c63 0 190 218 195 380c33 -1 67 5 110 18l12 -12c-19 -41 -41 -113 -84 -268c-51 -189 -65 -228 -116 -307c-58 -92 -143 -149 -222 -149c-35 0 -68 17 -83 44c-9 14 -12 27 -15 53l62 40l18 -6c-1 -7 -1 -16 -1 -19c0 -42 23 -66 62 -66c65 0 113 71 152 229 l41 166c-39 -69 -61 -97 -100 -131c-40 -35 -80 -56 -108 -56c-27 0 -47 37 -47 87c0 20 2 44 6 85l19 182c1 6 1 11 1 14c0 12 -7 19 -18 19c-20 0 -47 -14 -81 -41l-14 28l80 62c39 30 80 50 103 50c24 0 39 -24 39 -63c0 -24 -2 -52 -5 -80l-19 -163 c-3 -25 -4 -40 -4 -55c0 -26 6 -41 17 -41'], + 0x1D49B: [469,17,499,31,470,'365 -17c-104 0 -164 39 -241 39c-30 0 -52 -7 -77 -27l-16 30l346 354c-36 -17 -59 -23 -89 -23c-32 0 -80 4 -140 11c-6 0 -10 1 -22 2l-23 -52l-29 3l45 139c21 6 41 10 57 10c47 0 135 -37 207 -37c25 0 48 9 58 24l9 13l20 -8l-14 -50l-328 -337c48 17 72 23 98 23 c73 0 112 -16 156 -16c2 0 6 0 13 1l28 58l28 -2c-48 -131 -14 -155 -86 -155'], + 0x1D6A4: [482,9,277,34,241,'51 30c0 55 87 341 87 361c0 13 -8 23 -18 23c-7 0 -10 -2 -47 -25l-32 -21l-7 20l28 20c75 53 112 74 134 74c16 0 25 -9 25 -26c0 -8 -2 -19 -6 -36l-77 -304c-5 -21 -7 -30 -7 -40s6 -20 13 -20c9 0 32 11 61 30l26 17l10 -18c-98 -73 -134 -94 -160 -94 c-19 0 -30 15 -30 39'], + 0x1D6A5: [482,276,277,-70,228,'138 351c0 5 7 31 7 40c0 13 -8 23 -18 23c-7 0 -42 -23 -79 -46l-7 20l28 20c75 53 112 74 134 74c16 0 25 -9 25 -25c0 -6 -2 -19 -6 -37l-76 -350c-28 -127 -42 -177 -62 -222c-36 -81 -76 -124 -116 -124c-15 0 -28 2 -38 7l8 57c21 -13 39 -19 53 -19 c18 0 36 35 47 87'], + 0x1D6A8: [686,3,777,24,757,'250 -3c-93 4 -141 3 -226 0v37h30c22 2 40 24 56 63l238 589h71l259 -605c13 -29 27 -40 55 -44h24v-40c-283 4 -34 4 -310 0v37h53c11 1 24 17 24 32l-55 140h-251l-51 -136c0 -17 16 -32 33 -33h50v-40zM342 516l-100 -254h204'], + 0x1D6A9: [681,3,666,39,611,'611 216c0 -129 -111 -219 -271 -219c-72 0 -166 5 -268 0v23l32 18c15 8 20 23 20 57v448c0 88 -3 94 -48 98h-37v40h79c92 -4 110 -3 198 -1h83c127 0 189 -43 189 -134c0 -106 -91 -137 -182 -169c69 -5 205 -12 205 -161zM265 348v-292c121 -18 196 26 196 146 c0 102 -50 146 -166 146h-30zM265 400h30c101 0 145 37 145 124c0 96 -77 119 -175 103v-227'], + 0x1D6AA: [681,3,555,28,533,'489 604c-37 27 -158 19 -235 16v-485c0 -91 4 -92 48 -95h47v-43c-91 3 -234 4 -321 0v40h37c44 3 48 7 48 98v408c0 83 0 94 -48 98h-37v40c170 -9 372 7 505 -3v-149h-44v75'], + 0x1D6AB: [693,0,686,31,662,'662 15v-15h-631v15c106 221 190 451 284 678h58c95 -227 186 -455 289 -678zM488 52c-56 160 -126 316 -190 473c-63 -154 -120 -314 -173 -473h363'], + 0x1D6AC: [681,4,610,39,577,'39 681c221 -10 343 7 521 -3v-149h-44v75c-31 28 -183 20 -251 16v-240c20 -2 34 -2 67 -2h66c42 0 55 5 57 21v57h43v-215h-37v50c-3 26 -25 37 -63 37h-66c-22 0 -39 -1 -67 -3v-267c63 -6 246 -4 250 14l23 94h39l-12 -166c-138 -6 -174 -5 -337 0h-34 c-23 0 -23 0 -122 -3v23l32 18c15 8 20 23 20 57v448c0 88 -3 94 -48 98h-37v40'], + 0x1D6AD: [681,3,666,24,627,'491 57c51 0 76 12 81 39l15 78h40c-9 -50 -15 -116 -16 -177c-252 4 -328 4 -587 0l6 34l404 589h-222c-71 0 -81 -5 -87 -46v-55h-45v162h543l-6 -31l-402 -593h276'], + 0x1D6AE: [681,3,832,36,796,'262 543v-160h308v160c0 89 -1 91 -48 95h-37v43c220 -4 90 -4 311 0v-40h-37c-47 -4 -48 -9 -48 -98v-408c0 -89 1 -91 48 -95h37v-43c-221 4 -91 4 -311 0v40h37c47 4 48 9 48 98v192h-308v-192c0 -89 1 -91 48 -95h37v-43c-221 4 -91 4 -311 0v40h37c47 4 48 9 48 98 v408c0 89 -1 91 -48 95h-37v43c220 -4 90 -4 311 0v-40h-37c-47 -4 -48 -9 -48 -98'], + 0x1D6AF: [695,17,832,47,787,'787 345c0 -236 -151 -362 -380 -362c-224 0 -360 122 -360 350c0 236 151 362 380 362c224 0 360 -122 360 -350zM637 327c0 165 -69 312 -210 312c-186 0 -230 -139 -230 -289c0 -165 69 -311 210 -311c186 0 230 138 230 288zM373 304c-54 0 -50 -30 -54 -75h-28 c1 39 -3 78 -3 117v27c0 33 -2 67 -4 100h31c7 -65 14 -72 75 -70h58c62 -1 58 17 65 70h30c-4 -81 1 -162 4 -244h-28c-7 99 -40 76 -146 75'], + 0x1D6B0: [681,3,388,39,350,'265 543v-408c0 -89 1 -91 48 -95h37v-43c-221 4 -91 4 -311 0v40h37c47 4 48 9 48 98v408c0 89 -1 91 -48 95h-37v43c220 -4 90 -4 311 0v-40h-37c-47 -4 -48 -9 -48 -98'], + 0x1D6B1: [681,3,777,39,763,'556 656v25c118 -4 64 -4 182 0v-39c-63 -5 -86 -12 -110 -34l-222 -207l266 -313c31 -36 54 -49 91 -50v-38h-203l-208 246c-57 67 -61 71 -87 86v-197c0 -89 1 -91 48 -95h37v-43c-221 4 -91 4 -311 0v40h37c47 4 48 9 48 98v408c0 89 -1 91 -48 95h-37v43 c220 -4 90 -4 311 0v-40h-37c-47 -4 -48 -9 -48 -98v-200l269 263c21 22 22 35 22 50'], + 0x1D6B2: [693,3,777,29,757,'527 67l-183 454l-180 -453c0 -31 67 -28 85 -28v-43c-72 4 -146 4 -220 0v43c97 3 108 137 140 204c69 146 127 297 180 449h74l224 -545c26 -63 30 -107 110 -108v-43c-102 6 -205 4 -308 0v43c16 0 78 2 78 27'], + 0x1D6B3: [681,9,1000,32,968,'176 135c0 -89 3 -94 48 -98h37v-40c-136 4 -74 5 -229 0v37h37c45 4 48 13 48 101v408c0 88 -3 94 -48 98h-37v37h239l234 -488l237 489c197 -3 22 -2 226 2v-37h-37c-45 -4 -48 -13 -48 -101v-408c0 -89 1 -91 48 -95h37v-43c-221 4 -91 4 -311 0v40h37 c47 4 48 9 48 98v416l-269 -560l-28 1l-269 560v-417'], + 0x1D6B4: [681,16,832,35,798,'654 543c0 88 -3 94 -48 98h-37v40c88 -3 104 -3 115 -3h114v-34h-37c-45 -4 -48 -13 -48 -101v-559l-90 10l-444 534v-393c0 -89 3 -94 48 -98h37v-40c-136 4 -74 5 -229 0v37h37c45 4 48 13 48 101v408c0 88 -3 94 -48 98h-37v37l199 -4l420 -490v359'], + 0x1D6B5: [689,3,684,34,646,'472 569h-257c-82 0 -81 3 -98 -75v-6h-32c5 67 -2 133 -4 201c171 -2 347 -5 518 0c-3 -68 3 -133 6 -201h-31c-11 81 -24 81 -102 81zM404 304h-139c-53 0 -50 -30 -54 -75h-28c1 39 -3 78 -3 117v26c0 34 -2 67 -4 101h30c8 -68 18 -70 83 -70h120c61 -1 58 17 65 70 h30c-5 -81 1 -162 4 -244h-29c-7 66 -6 75 -75 75zM201 126h263c108 0 120 -7 151 105v5h31l-13 -239c-188 6 -386 4 -574 0c-4 81 -19 158 -25 239h32v-5c27 -97 34 -105 135 -105'], + 0x1D6B6: [695,17,832,47,787,'430 695c226 0 357 -129 357 -349c0 -228 -141 -363 -380 -363c-229 0 -360 127 -360 349c0 229 141 363 383 363zM637 325c0 153 -58 314 -216 314c-179 0 -224 -145 -224 -284c0 -131 43 -316 217 -316c146 0 223 98 223 286'], + 0x1D6B7: [689,3,817,36,782,'561 204v432h-304v-432c0 -27 -8 -150 22 -160c7 -2 48 -4 57 -4v-43c-100 3 -200 4 -300 0v43c9 0 50 1 58 4c29 9 22 133 22 160v278c0 27 7 149 -22 160c-8 2 -49 4 -58 4v43c249 -4 498 -5 746 0v-43c-9 0 -50 -2 -58 -4c-29 -11 -22 -133 -22 -160v-278 c0 -27 -7 -149 22 -160c9 -3 50 -4 58 -4v-43c-100 3 -201 6 -301 0v43c10 0 51 2 58 4c30 10 22 133 22 160'], + 0x1D6B8: [681,3,610,39,594,'594 531c0 -139 -130 -239 -283 -205l-17 35l10 10c20 -3 39 -7 43 -6c63 0 103 52 103 132c0 113 -85 154 -185 125v-487c0 -88 2 -92 48 -95h47v-43c-240 4 -92 4 -321 0v40h37c47 4 48 9 48 98v408c0 88 -3 94 -48 98h-37v40c274 -5 87 -3 354 0h12 c126 0 189 -50 189 -150'], + 0x1D6B9: [695,17,832,47,787,'430 695c226 0 357 -129 357 -349c0 -228 -141 -363 -380 -363c-229 0 -360 127 -360 349c0 229 141 363 383 363zM421 639c-90 0 -217 -38 -224 -265h438c-11 131 -70 265 -214 265zM414 39c140 0 217 90 223 264h-438c12 -134 71 -264 215 -264'], + 0x1D6BA: [689,3,659,25,614,'599 -3c-192 3 -385 8 -574 0v27c74 105 151 209 220 316l-179 323v26c175 -5 352 -7 528 0v-163h-28c0 20 -15 87 -29 101c-26 25 -280 15 -289 15l111 -223l-198 -287c124 -1 255 -14 372 7c29 5 38 63 46 88v5h35c-10 -78 -11 -156 -15 -235'], + 0x1D6BB: [681,3,666,17,644,'404 619v-484c0 -89 1 -91 48 -95h37v-43c-221 4 -91 4 -311 0v40h37c47 4 48 9 48 98v484h-188v-102h-45c-3 79 -6 112 -13 164c534 -4 97 -4 627 0c-7 -52 -5 -85 -7 -164h-40v69l-14 33h-179'], + 0x1D6BC: [705,0,698,6,702,'618 583c-190 0 -195 -302 -195 -471c0 -78 13 -74 84 -79v-33c-96 0 -192 2 -290 0v33c22 1 54 -2 71 11c10 20 10 77 10 100c0 123 -10 449 -189 449c-42 0 -65 -19 -83 -56l-20 16v7c19 78 56 145 146 145c187 0 200 -259 219 -393h10c10 120 41 393 206 393 c93 0 133 -111 108 -173c-17 28 -41 51 -77 51'], + 0x1D6BD: [689,3,957,46,913,'913 363c0 -218 -186 -252 -361 -252c2 -68 20 -63 77 -72v-42c-98 6 -202 6 -301 0v43c57 8 78 6 77 71c-172 0 -359 37 -359 252c0 213 196 225 360 225c-2 54 -32 55 -78 59v42c100 -5 202 -5 301 0v-42c-46 -6 -74 -3 -76 -59c161 0 360 -15 360 -225zM763 359 c0 157 -76 188 -216 188v-394c145 0 216 54 216 206zM412 154v393c-140 0 -217 -33 -217 -188c0 -150 72 -205 217 -205'], + 0x1D6BE: [695,0,666,17,650,'649 678v-34h-28c-20 -3 -27 -11 -48 -39l-170 -224l159 -275s26 -62 63 -69h25v-37h-191l-149 263l-181 -260l-112 -3v34h31c12 1 26 12 33 21l199 261l-94 166c-44 60 -62 127 -127 141c-9 0 -16 -1 -32 -6v41l178 37c29 -22 45 -42 73 -91l92 -162l168 236h111'], + 0x1D6BF: [695,5,935,6,928,'611 -5c-97 7 -189 6 -286 0v45c16 0 68 -2 69 22v145h-29c-81 -2 -165 20 -219 85c-66 79 -56 232 -74 330c-6 35 -36 33 -66 39v28c66 2 146 20 193 -13c40 -57 -41 -468 201 -427v233c0 27 7 150 -22 160c-10 3 -40 4 -51 4v43c94 -7 186 -6 280 0v-43 c-10 0 -40 -1 -48 -4c-31 -11 -23 -133 -23 -160v-233c242 -39 162 370 201 427c46 33 126 14 191 13v-28c-59 9 -72 -53 -72 -109c0 -226 -42 -351 -320 -345c3 -156 -16 -167 75 -167v-45'], + 0x1D6C0: [700,3,810,34,773,'612 407c0 129 -55 244 -198 244c-280 0 -266 -441 -66 -534v-117h-297c-5 67 -11 131 -17 200h30v-4c4 -11 25 -61 33 -68c11 -9 143 -9 169 -9v10c-123 45 -209 148 -209 282c0 200 174 289 351 289c166 0 353 -80 353 -271c0 -147 -85 -245 -217 -300v-10 c29 0 159 -3 172 9c2 4 24 63 26 68v4h31c-7 -69 -8 -136 -13 -203h-299v120c122 46 151 174 151 290'], + 0x1D6C1: [693,0,686,25,656,'656 678c-106 -221 -190 -451 -284 -678h-58c-95 227 -186 455 -289 678v15h631v-15zM562 641h-363c56 -160 126 -316 190 -473c63 154 120 314 173 473'], + 0x1D6C2: [478,21,663,68,628,'471 -21c-57 0 -64 90 -72 130c-61 -55 -137 -130 -224 -130c-88 0 -107 92 -107 161c0 158 103 338 277 338c118 0 116 -150 133 -234c40 50 74 104 94 164h11c13 -25 23 -53 34 -80c-37 -51 -82 -94 -128 -137c6 -33 14 -137 59 -137c28 0 47 23 64 41l16 -19v-8 c-39 -40 -100 -89 -157 -89zM275 427c-84 0 -108 -205 -108 -265c0 -48 14 -101 73 -101c61 0 108 59 152 95c-12 60 -35 271 -117 271'], + 0x1D6C3: [705,282,582,57,527,'527 198c1 -168 -206 -264 -352 -175c1 -91 7 -184 2 -276l-109 -29l-11 13l20 587c5 144 -6 279 143 354c107 53 294 58 294 -100c0 -96 -83 -149 -166 -174v-6c103 0 179 -96 179 -194zM324 666c-158 0 -144 -326 -144 -458c0 -69 -2 -181 96 -181c93 0 128 90 128 170 c0 79 -48 209 -152 163v52c92 0 159 54 159 151c0 55 -28 103 -87 103'], + 0x1D6C4: [480,291,632,-19,556,'556 416c0 -117 -141 -235 -267 -440c-7 -80 -13 -161 -27 -240c-26 -12 -55 -20 -83 -27c-18 10 -33 25 -43 42c13 63 61 129 88 188c5 121 -25 571 -225 425v1l-18 16v6c40 40 93 93 154 93c157 0 157 -314 160 -423c56 102 199 254 127 381v11c17 6 82 31 95 31 c27 0 39 -42 39 -64'], + 0x1D6C5: [707,22,556,75,519,'519 239c0 -147 -112 -261 -259 -261c-145 0 -185 117 -185 243c0 120 57 199 168 242v6c-45 26 -117 74 -117 132c0 100 187 116 276 102l25 -51c-60 26 -166 44 -187 -31c0 -114 279 -120 279 -382zM413 203c0 109 -41 190 -134 246c-75 -38 -94 -128 -94 -206 s15 -223 122 -223c88 0 106 118 106 183'], + 0x1D6C6: [479,21,463,67,459,'459 39c-122 -85 -392 -101 -392 90c0 68 51 109 112 124v5c-45 21 -77 59 -77 110c0 126 186 127 291 91l-16 -94h-14c4 95 -159 119 -159 12c0 -88 91 -111 170 -85v-54c-83 26 -192 9 -194 -84c-3 -135 188 -157 269 -78h10v-37'], + 0x1D6C7: [704,193,558,51,533,'533 49c0 -84 -134 -207 -206 -242l-49 27v12c61 1 161 59 161 128c0 22 -21 27 -39 27c-181 0 -349 -8 -349 181c0 171 96 332 223 440v3c-68 -9 -125 -9 -173 26l68 47c65 -85 192 -29 276 6h12l-12 -46v-5c-196 -8 -293 -236 -293 -405c0 -182 167 -146 320 -146 c31 0 61 -18 61 -53'], + 0x1D6C8: [480,282,560,-16,492,'366 -282c-36 184 0 398 0 597c0 44 -6 103 -65 103c-143 0 -127 -317 -128 -412c-35 -5 -70 -11 -102 -22l-11 10c13 103 25 209 25 312c0 20 3 69 -26 69c-22 0 -44 -16 -61 -28l-14 20v7c31 27 111 106 152 106c50 -1 43 -77 43 -112c40 63 102 112 180 112 c100 0 114 -75 114 -156c2 -193 -35 -388 19 -557v-12'], + 0x1D6C9: [701,21,645,87,587,'587 368c0 -177 -65 -389 -279 -389c-189 0 -221 190 -221 341c0 185 73 381 289 381c184 0 211 -186 211 -333zM333 659c-111 0 -127 -189 -126 -272c86 -3 173 -2 259 0c-2 82 -21 272 -133 272zM467 342c-86 4 -173 3 -260 0c1 -82 13 -324 131 -324 c108 0 127 247 129 324'], + 0x1D6CA: [481,17,272,64,275,'111 -17c-49 0 -46 50 -46 85c0 126 15 258 18 390c36 4 70 14 104 23c-14 -100 -14 -202 -13 -302c0 -17 -3 -112 21 -112c16 0 49 25 64 34l16 -15v-7c-38 -34 -111 -96 -164 -96'], + 0x1D6CB: [481,17,539,3,534,'474 362c-40 79 -141 -31 -182 -62c47 -66 130 -301 242 -197v-29c-31 -32 -78 -89 -125 -89c-71 0 -158 201 -191 259v-238c-36 -4 -75 -13 -110 -23c4 62 -1 121 -2 182c0 34 7 231 -23 231c-16 0 -48 -23 -64 -33l-16 15v7c39 35 112 96 165 96c60 0 45 -87 43 -206 c63 49 201 250 293 194c-3 -38 -10 -70 -12 -107h-18'], + 0x1D6CC: [698,6,587,54,616,'616 47c-50 -34 -150 -92 -187 -16c-45 92 -85 297 -115 407v-1c-64 -137 -123 -282 -145 -433l-105 -10l-10 12c65 167 146 329 246 477c-9 38 -43 168 -91 168c-18 0 -37 -8 -56 -13v27c58 21 124 43 186 29c59 -36 138 -635 225 -635c14 0 28 7 38 16v-1l14 -20v-7'], + 0x1D6CD: [492,302,610,69,583,'261 58c105 0 122 132 122 253c0 46 0 94 -7 141l16 19c26 4 51 12 76 21l25 -26c-22 -130 -25 -267 -9 -397c22 0 48 27 64 40h21l14 -24v-20c-35 -36 -99 -96 -151 -96c-53 0 -59 49 -59 90c-44 -66 -142 -122 -217 -57c-3 -108 -1 -184 58 -264l-14 -23 c-27 -13 -58 -16 -87 -17c-87 155 -16 385 -16 583c0 61 -2 125 -19 185c37 6 73 13 109 20c18 -86 3 -183 1 -274c0 -51 3 -154 73 -154'], + 0x1D6CE: [480,16,561,2,513,'454 480c27 0 59 -61 59 -86c0 -114 -196 -275 -241 -388c-33 -6 -66 -12 -97 -22l-10 10c-10 81 -24 161 -36 241c-4 24 -16 154 -44 154c-16 0 -52 -18 -69 -25v1l-14 18v5c40 27 134 92 180 92c19 0 28 -15 30 -32c50 -367 28 -217 49 -367c83 105 110 327 113 361 c13 7 69 38 80 38'], + 0x1D6CF: [704,193,524,59,529,'529 40c0 -82 -103 -195 -171 -233l-55 27v12c57 1 143 53 143 116c0 81 -134 31 -201 31c-100 0 -186 54 -186 163c0 113 122 185 221 205v5c-64 21 -142 61 -142 139c0 64 58 103 111 123v7h-35c-30 -1 -81 8 -97 37l53 32c12 -36 69 -37 99 -37c65 0 132 7 190 37h13 l-18 -65c-86 4 -207 -5 -207 -105c0 -96 86 -143 169 -159v-8l-12 -36c-104 15 -246 -36 -246 -147c0 -142 190 -79 303 -77c43 0 68 -24 68 -67'], + 0x1D6D0: [471,17,555,40,517,'287 471c148 0 230 -83 230 -235c0 -162 -90 -253 -250 -253c-145 0 -227 87 -227 241c0 159 88 247 247 247zM275 423c-69 0 -99 -54 -99 -175c0 -144 37 -217 109 -217c68 0 96 52 96 174c0 147 -34 218 -106 218'], + 0x1D6D1: [476,16,633,14,628,'394 179c0 158 27 149 69 199h-228v-119c0 -85 -1 -172 -7 -257c-31 -7 -64 -10 -95 -18l-11 10c34 120 58 251 59 377c-88 -3 -100 -6 -143 -84l-24 15l17 83c12 57 4 91 75 91c158 0 316 -8 474 0v-80c-99 -23 -97 -53 -97 -148c0 -47 4 -189 73 -189c22 0 42 13 62 21 v-1l10 -22v-5c-39 -29 -92 -66 -142 -66c-93 0 -92 127 -92 193'], + 0x1D6D2: [476,281,566,38,502,'502 266c0 -190 -177 -348 -358 -249c-6 -96 2 -184 15 -274l-121 -24c15 138 7 340 7 481c0 180 90 276 273 276c133 0 184 -85 184 -210zM395 214c0 73 -17 219 -115 219c-105 0 -129 -125 -129 -207c0 -80 20 -198 122 -198c99 0 122 106 122 186'], + 0x1D6D3: [477,193,515,30,502,'502 37c0 -78 -107 -194 -173 -230l-54 27v12c57 1 144 54 144 117c0 74 -120 28 -179 28c-300 4 -253 488 -15 486h200c-3 -28 -4 -60 -8 -88c-137 0 -305 33 -305 -124c0 -93 47 -177 149 -177c87 0 241 58 241 -51'], + 0x1D6D4: [492,25,570,60,554,'514 193c0 -145 -120 -218 -253 -218c-136 0 -201 83 -201 214c0 165 89 289 294 289c69 0 153 -21 200 14c-9 -28 -1 -71 -5 -101c-57 2 -120 6 -176 11v-4c93 -60 141 -80 141 -205zM406 192c0 85 -14 137 -58 210c-28 7 -57 14 -87 14c-79 0 -86 -135 -86 -190 c0 -83 16 -210 126 -210c90 0 105 106 105 176'], + 0x1D6D5: [480,17,518,37,485,'284 193c0 -47 2 -142 67 -142c28 0 50 15 71 32l17 -15v-7c-42 -42 -96 -78 -158 -78c-82 0 -87 69 -87 134c0 87 17 178 40 262c-106 8 -175 -1 -178 -103h-19c12 37 -7 220 55 204c129 3 272 -17 393 0c-30 -92 -16 -51 -30 -92c-47 -7 -95 -6 -141 -7 c-17 -61 -30 -125 -30 -188'], + 0x1D6D6: [480,18,576,5,514,'514 281c0 -147 -85 -299 -249 -299c-177 0 -158 150 -158 310c0 22 4 83 -29 83c-20 0 -42 -17 -60 -28l-13 19v8c35 31 116 106 163 106c51 0 47 -82 47 -117c0 -60 -9 -119 -9 -179c0 -55 8 -167 85 -167c96 0 128 145 128 220c0 74 -31 158 -103 190v11 c15 8 72 42 86 42c90 0 112 -129 112 -199'], + 0x1D6D7: [478,277,836,31,753,'585 478c120 0 168 -79 168 -191c0 -175 -157 -280 -318 -290v-245c-38 -7 -78 -18 -113 -29c2 77 2 155 5 270c-154 1 -296 72 -296 246c0 147 133 222 263 238v-2l14 -16v-4c-93 -40 -160 -97 -160 -204c0 -110 57 -232 181 -232c-17 239 11 459 256 459zM541 440 c-87 -66 -105 -200 -107 -417c127 17 206 113 206 241c0 58 -23 176 -99 176'], + 0x1D6D8: [480,183,583,1,551,'317 223c39 -88 65 -401 216 -302v-1l18 -15v-8c-38 -40 -86 -71 -143 -71c-92 0 -114 101 -169 301c-77 -90 -124 -202 -171 -310h-15c-20 19 -38 37 -52 60c63 106 137 206 225 294l-50 162c-5 58 -72 99 -116 46v1l-14 20v6c38 31 98 74 149 74c72 0 94 -157 109 -209 c19 25 155 206 164 206c21 0 66 -29 81 -42v-11c-74 -12 -178 -145 -232 -201'], + 0x1D6D9: [688,279,762,-3,708,'708 337c0 -156 -116 -303 -269 -336c0 -86 9 -173 19 -259c-38 -3 -74 -14 -111 -21h-11c21 82 19 186 21 270c-166 -21 -261 21 -261 194c0 46 5 91 5 136c0 22 4 87 -29 87c-18 0 -45 -11 -61 -17v1l-14 15v7c46 34 111 66 171 66c46 0 52 -27 52 -66 c0 -158 -69 -394 138 -377c5 207 16 419 6 625c29 11 59 19 89 26l13 -10c-18 -212 -21 -424 -27 -637c181 27 219 264 117 402v6c9 4 88 31 91 31c47 0 61 -109 61 -143'], + 0x1D6DA: [480,14,817,61,755,'755 282c0 -157 -103 -296 -269 -296c-55 0 -94 9 -128 58c-41 -38 -94 -58 -151 -58c-112 0 -146 107 -146 202c0 131 111 292 252 292v-1l15 -16v-4c-106 -42 -156 -123 -156 -236c0 -57 9 -191 87 -191c119 0 109 210 105 288l95 24l21 -19c-13 -48 -21 -97 -21 -147 c0 -49 5 -149 74 -149c99 0 127 139 127 216c0 80 -25 135 -91 180v10c13 8 70 45 83 45c72 0 103 -142 103 -198'], + 0x1D6DB: [740,17,537,52,482,'369 372c47 223 -131 341 -206 254c1 9 33 -33 -61 49c5 9 88 70 156 65c115 -9 179 -53 208 -193c49 -226 -3 -557 -229 -564c-260 -8 -233 436 8 436c45 0 113 -54 124 -47zM362 312c-94 116 -200 6 -200 -154c0 -164 106 -165 154 -49c20 49 31 91 46 203'], + 0x1D6DC: [470,17,528,38,477,'293 429c-94 0 -144 -82 -149 -166c81 -4 163 -3 245 -1l-13 -43c-76 -1 -156 1 -232 -4c16 -99 53 -168 163 -168c57 0 107 35 152 67l14 -28c-66 -48 -136 -103 -221 -103c-143 0 -214 71 -214 214c0 230 280 362 439 206l-52 -62h-16c-24 50 -58 88 -116 88'], + 0x1D6DD: [700,18,590,32,576,'279 -18c-129 0 -121 239 -183 252c-13 0 -35 -20 -45 -29l-19 14v7c23 30 89 107 127 107c78 0 62 -270 175 -270c75 0 94 105 99 163c-120 46 -306 161 -306 307c0 105 97 167 194 167c173 0 227 -242 202 -407c17 -7 35 -9 53 -11v-10c-20 -14 -40 -25 -63 -32 c-25 -99 -118 -258 -234 -258zM251 643c-38 0 -65 -27 -65 -64c0 -113 161 -215 249 -260c-7 97 -60 324 -184 324'], + 0x1D6DE: [439,24,666,60,712,'679 439c106 -22 -75 -105 -91 -124c-23 -27 -67 -135 -76 -209c87 -9 102 12 109 14c19 7 32 -8 27 -23c-17 -61 -73 -101 -125 -115c-49 -13 -63 -13 -67 53c-3 50 14 147 22 177c-23 -13 -357 -212 -385 -214c-105 18 76 126 87 148c39 32 129 200 79 196 c-92 -6 -98 -25 -105 -27c-17 -7 -30 7 -26 19c8 26 45 88 151 100c26 3 39 -4 39 -37c0 -72 -39 -188 -70 -217c29 18 402 259 431 259'], + 0x1D6DF: [688,279,742,47,685,'685 233c0 -181 -128 -249 -291 -251v-236l-74 -25l-15 13l11 252c-151 12 -269 86 -269 251c0 167 125 237 275 241v195l85 15v-209c166 -1 278 -60 278 -246zM563 232c0 110 -34 214 -162 216v-435c122 2 162 111 162 219zM316 447c-225 -17 -190 -393 0 -429v429'], + 0x1D6E0: [476,266,562,95,535,'269 -229c-156 0 -174 211 -174 321c0 142 38 384 224 384c296 0 279 -494 8 -494c-95 0 -159 43 -173 142c-32 -100 -37 -263 98 -263c111 0 177 -14 174 -117l-12 -10c-27 49 -98 37 -145 37zM444 324c0 52 -17 107 -78 107c-109 0 -174 -207 -174 -294 c0 -57 29 -106 91 -106c111 0 161 208 161 293'], + 0x1D6E1: [566,14,817,68,762,'762 282c0 -157 -104 -296 -268 -296c-56 0 -96 10 -129 58c-41 -38 -94 -58 -150 -58c-111 0 -147 101 -147 196c0 149 114 258 257 280v-1l17 -15v-5c-107 -38 -162 -115 -162 -227c0 -55 9 -182 85 -182c123 0 110 227 106 307l86 22l27 -17 c-11 -50 -19 -102 -19 -153s3 -162 74 -162c101 0 128 140 128 217c1 205 -178 321 -394 269v2l-12 18v4c225 76 502 -4 501 -257'], + 0x1D6E2: [705,3,721,-19,677,'520 55c0 14 -4 29 -4 31v3l-25 188h-246l-102 -175c-19 -33 -26 -47 -26 -55c0 -9 15 -18 31 -19l52 -3v-28c-86 3 -88 3 -107 3c-20 0 -20 0 -112 -3v30l20 5c34 8 52 24 88 80l373 593h46l87 -625c8 -45 9 -45 56 -52l26 -3v-28c-102 3 -102 3 -122 3s-20 0 -122 -3 v28l44 3c28 2 43 11 43 27zM449 601l-179 -288h216'], + 0x1D6E3: [692,4,610,26,559,'559 562c0 -99 -84 -170 -182 -197c82 -12 166 -28 166 -138c0 -152 -162 -231 -306 -231h-57c-59 0 -96 6 -154 2v25c42 7 59 14 63 32l100 579c0 18 -15 28 -39 28h-53v30c-52 -1 184 -2 214 -2h90c100 0 158 -46 158 -128zM282 34c100 0 173 74 173 177 c0 87 -50 129 -153 129h-85l-51 -299c41 -3 62 -7 116 -7zM352 655c-23 0 -64 -5 -80 -5l-49 -274h52c124 0 198 63 198 168c0 75 -40 111 -121 111'], + 0x1D6E4: [692,3,555,-39,597,'534 628c-89 26 -179 28 -266 14l-92 -522c-13 -77 -11 -88 36 -90h47v-33c-106 4 -194 4 -298 0v30h54c44 2 52 13 66 93l80 449c13 77 11 88 -36 90h-47v33h519c-19 -44 -34 -104 -43 -155h-35'], + 0x1D6E5: [697,4,688,-33,602,'-33 6c86 121 369 581 432 691h25c18 -117 51 -231 80 -343c30 -116 56 -238 98 -348l-8 -10c-100 3 -201 4 -302 4c-107 0 -213 0 -320 -4zM482 37c-33 178 -74 354 -119 527h-7c-107 -175 -208 -349 -306 -527h432'], + 0x1D6E6: [690,0,610,30,570,'518 36v-36h-488v23c44 7 61 14 65 32l100 579c0 18 -15 28 -39 28h-54v28h468c-11 -38 -18 -89 -21 -153h-24v89c-6 27 -187 26 -248 22l-48 -272c78 0 175 2 256 6l-15 -48h-249l-49 -287c103 -13 205 -10 283 1c22 3 31 17 41 53l16 60h27c-9 -49 -21 -105 -21 -125'], + 0x1D6E7: [692,3,666,20,637,'342 652c-86 0 -124 -3 -180 -13c-12 -39 -24 -84 -27 -106h-26c8 73 11 112 11 159h517v-20l-504 -633h281c44 0 82 4 127 13l39 110h26c-13 -69 -21 -124 -23 -165c-155 3 -400 5 -563 0v22l502 633h-180'], + 0x1D6E8: [689,3,777,-3,800,'547 662v27h253v-25h-39c-38 -4 -44 -12 -51 -51l-98 -555c0 -21 12 -30 38 -30h58v-31h-45c-97 3 -76 4 -175 1h-56v27h54c22 2 38 8 42 16l56 299c-139 3 -228 4 -368 1l-48 -283c0 -21 11 -30 38 -30h49v-31h-258v28h45c40 4 42 8 58 100l87 509c0 18 -15 28 -39 28 h-47v27h258v-25h-45c-37 -3 -44 -12 -51 -51l-42 -228h370l43 249c0 18 -15 28 -39 28h-48'], + 0x1D6E9: [706,18,777,53,748,'478 327h-166c-55 0 -61 -36 -77 -81v-3h-19c15 82 27 159 38 241h20c0 -46 -7 -84 51 -84h166c56 0 61 36 78 80v4h19c-14 -82 -27 -159 -39 -241h-19c-1 46 4 84 -52 84zM748 425c0 -218 -153 -443 -425 -443c-176 0 -270 101 -270 290c0 251 174 434 411 434 c180 0 284 -103 284 -281zM660 409c0 201 -111 255 -227 255c-234 0 -292 -239 -292 -387c0 -167 75 -253 219 -253c211 0 300 197 300 385'], + 0x1D6EA: [689,3,332,7,345,'173 57c0 -20 11 -27 37 -29h52v-31h-255v28h39c40 3 43 11 58 100l85 510c0 17 -15 26 -39 27h-47v27h242v-25h-29c-39 -4 -44 -12 -51 -51'], + 0x1D6EB: [692,3,666,13,683,'683 665h-21c-17 0 -38 -10 -54 -25l-292 -273l246 -302c21 -26 41 -38 64 -38h20v-27h-137c-105 143 -128 169 -278 340l-46 -283c0 -20 10 -29 37 -29h49v-31h-258v28h45c40 4 42 8 58 100l86 509c0 18 -15 28 -39 28h-47v27h258v-25h-45c-37 -3 -44 -13 -51 -51 l-45 -260c64 50 105 86 149 131l171 174v34c46 -3 83 -4 130 -1v-26'], + 0x1D6EC: [697,4,753,-41,670,'670 -4c-86 5 -171 6 -258 0v33c17 0 96 -3 101 25l-112 505c-14 -24 -288 -464 -295 -505c-5 -27 51 -25 66 -25v-33c-69 5 -142 5 -213 1v32c22 0 53 -1 72 13c42 29 390 617 414 655h20c4 -20 132 -623 163 -656c11 -11 25 -10 42 -12v-33'], + 0x1D6ED: [697,18,963,-19,940,'853 -3c-91 3 -81 4 -174 1h-47v27h34c51 4 65 14 67 42l36 521l-349 -605l-21 -1l-149 578l-135 -504c0 -15 21 -26 53 -28h38v-31h-38c-76 3 -72 4 -148 1h-39v25c55 5 74 18 89 70l150 528c0 26 -20 37 -72 41h-26v30h170l150 -578l335 575l163 8v-33h-41 c-29 -2 -44 -14 -46 -33l-44 -568c0 -21 20 -32 56 -35h37v-31h-49'], + 0x1D6EE: [692,11,777,2,804,'669 638c0 16 -12 23 -38 24h-47v30h220v-28h-42c-37 -3 -41 -9 -60 -122l-94 -553h-50l-338 577l-85 -494c0 -33 11 -41 51 -44h42v-31c-97 3 -103 3 -115 3h-111v25h36c36 4 42 15 54 77l94 504c0 9 -27 53 -81 56h-35v27h167l345 -586'], + 0x1D6EF: [689,4,692,6,673,'252 615c-89 0 -89 -33 -116 -112v-4h-24v6c13 61 26 122 34 184c172 -4 354 -4 527 0c-10 -48 -29 -137 -32 -187h-25c2 78 10 113 -81 113h-283zM260 327c-55 0 -61 -36 -77 -81v-3h-19c15 82 27 159 38 241h20c0 -46 -7 -84 51 -84h166c56 0 61 36 78 80v4h19 c-14 -82 -27 -159 -39 -241h-19c-1 46 4 84 -52 84h-166zM456 76c95 0 100 31 139 113v5h25v-5c-21 -62 -35 -126 -52 -189v-4c-187 5 -374 5 -562 0c6 66 8 132 9 198h25c8 -85 5 -119 102 -118h314'], + 0x1D6F0: [706,18,777,53,748,'748 425c0 -218 -153 -443 -425 -443c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM660 409c0 201 -111 255 -227 255c-234 0 -292 -239 -292 -387c0 -167 75 -253 219 -253c211 0 300 197 300 385'], + 0x1D6F1: [689,4,812,-33,845,'728 -4c-92 4 -187 6 -280 0v31c17 1 87 0 100 12l108 608h-391l-76 -427c-5 -28 -32 -164 -20 -179c10 -13 63 -13 79 -14v-31c-94 4 -187 6 -281 0v31c18 1 77 1 91 14c16 16 36 141 41 170l47 268c5 28 30 151 17 167c-10 12 -63 12 -79 13v30c253 -3 508 -5 761 0 v-30c-17 -1 -73 0 -88 -13c-18 -14 -37 -144 -42 -171l-47 -266c-4 -26 -30 -153 -18 -168c10 -12 63 -13 78 -14v-31'], + 0x1D6F2: [692,3,610,9,594,'594 541c0 -163 -165 -310 -325 -230v31c128 -64 231 39 237 177c5 121 -102 155 -226 130l-100 -591c0 -21 12 -29 38 -30h65v-31h-56c-88 3 -86 4 -176 1h-42v27h45c40 3 42 9 58 100l87 509c0 18 -15 27 -39 28h-55v30h307c119 3 182 -50 182 -151'], + 0x1D6F3: [706,18,777,53,748,'748 425c0 -218 -153 -443 -425 -443c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM659 375c16 211 -101 289 -226 289c-187 0 -261 -152 -284 -289h510zM143 330c-18 -187 56 -306 217 -306c181 0 273 146 295 306h-512'], + 0x1D6F4: [689,4,684,-16,645,'572 -4c-197 5 -391 5 -588 0v19c60 54 241 260 288 325c-46 111 -95 222 -153 325v16c174 1 352 0 526 8v-6c-15 -47 -23 -96 -34 -143v-4h-22c3 91 -1 109 -101 108h-253c38 -84 76 -170 121 -251c-89 -102 -176 -209 -259 -317h358c95 0 103 35 137 117v3h22v-3 c-18 -66 -29 -131 -42 -197'], + 0x1D6F5: [692,3,610,53,635,'290 58c0 -21 12 -29 38 -30h59v-31h-47c-86 3 -86 4 -174 1h-57v27h55c40 3 42 9 58 100l86 521h-112c-37 0 -81 -4 -87 -11l-27 -107h-29l18 164h95c191 -3 183 -4 378 -1h91l-27 -163h-28v101c-3 12 -39 17 -117 17h-73'], + 0x1D6F6: [691,4,733,41,778,'168 27c15 0 77 1 89 14c0 0 13 -15 46 226c18 106 12 355 -126 355c-54 0 -88 -33 -121 -75v-1l-15 12c46 73 108 133 194 133c170 0 134 -254 118 -375h25c38 145 109 375 303 375c78 0 110 -52 93 -127v-18h-22c2 111 -146 74 -198 27c-148 -133 -167 -325 -184 -532 c9 -12 62 -13 79 -14v-31c-92 4 -188 6 -281 0v31'], + 0x1D6F7: [689,4,745,21,732,'446 -4c-88 5 -175 6 -263 0v31c92 6 95 -6 112 88c-162 0 -302 57 -269 243c33 188 194 227 352 227c12 84 0 69 -78 74v30c89 -4 175 -4 263 0v-30c-81 -5 -92 9 -108 -74c147 0 305 -30 273 -213c-34 -196 -181 -257 -356 -257c-4 -21 -13 -57 -6 -75 c14 -11 63 -12 80 -13v-31zM627 359c24 139 -45 199 -177 201l-74 -422c136 4 227 86 251 221zM299 138l74 422c-137 -5 -223 -58 -248 -202c-24 -134 40 -216 174 -220'], + 0x1D6F8: [692,3,721,20,734,'264 28v-31c-93 4 -147 4 -244 0v28h28c24 3 47 18 62 36l238 282l-146 270c-20 37 -32 44 -81 49h-26v30c90 -3 175 -4 266 -1v-27h-37c-30 -2 -48 -12 -48 -24l123 -235l191 232c0 12 -20 25 -52 25h-33v30c89 -3 103 -3 115 -3h114v-25h-28c-26 -3 -35 -11 -65 -44 l-221 -252l171 -307c14 -24 27 -31 68 -34h25v-30c-99 4 -170 4 -268 0v28h54c25 0 38 10 38 18l-139 263l-198 -251c0 -12 23 -23 61 -27h32'], + 0x1D6F9: [689,4,870,79,906,'517 -4c-95 4 -187 6 -281 0v31c18 1 76 1 90 14c16 15 37 145 41 166c-281 -3 -237 217 -246 438c-6 10 -31 16 -42 20v24c22 -3 122 -8 133 -21c34 -37 -76 -466 160 -432l41 229c5 30 31 163 19 180c-8 13 -62 13 -79 14v30c94 -4 187 -4 281 0v-30 c-16 -1 -77 -1 -90 -14c-17 -17 -38 -147 -43 -177l-41 -232c232 -27 265 395 313 432c15 11 113 18 133 21v-24c-51 -17 -50 -4 -73 -70c-72 -213 -116 -383 -378 -388c-1 -8 -32 -153 -15 -168c12 -10 61 -11 77 -12v-31'], + 0x1D6FA: [704,6,824,-11,790,'477 677c-190 0 -285 -125 -316 -300c-25 -142 -6 -288 151 -309l-12 -68c-103 -3 -207 -2 -311 -6c4 51 7 103 9 154h20c4 -53 2 -73 63 -73h129c-124 56 -176 179 -150 323c39 223 221 306 422 306c199 0 340 -90 302 -306c-26 -145 -120 -267 -264 -323h128 c60 0 63 17 85 70v3h19v-3c-16 -50 -29 -101 -41 -151c-102 4 -207 4 -310 6l12 68c163 21 236 165 260 306c30 170 -2 303 -196 303'], + 0x1D6FB: [697,4,688,87,717,'265 -4c-48 239 -107 470 -178 691v10c209 -5 421 -6 630 0v-10c-86 -121 -364 -582 -427 -691h-25zM639 656h-432c33 -178 74 -354 119 -527c107 175 215 349 313 527'], + 0x1D6FC: [473,16,594,23,558,'400 -16c-52 1 -43 112 -43 147c-60 -67 -154 -147 -246 -147c-68 0 -88 49 -87 109c3 150 140 380 308 380c113 -1 90 -137 88 -216c36 58 91 134 105 202h11c8 -15 15 -31 22 -46c-38 -70 -84 -135 -134 -197c0 -32 -7 -161 38 -161c27 0 51 24 70 42h13v-13 c-32 -30 -99 -100 -145 -100zM284 437c-109 0 -184 -235 -185 -322c-1 -45 10 -87 63 -87c71 0 152 85 195 136c1 60 14 273 -73 273'], + 0x1D6FD: [680,283,512,-8,476,'459 205c0 -168 -220 -289 -355 -176c-14 -95 -28 -191 -34 -288c-27 -6 -52 -15 -78 -24v10c44 186 70 374 97 562c25 174 65 391 292 391c64 0 96 -36 95 -99c-1 -102 -85 -181 -178 -212v-9c91 -2 161 -59 161 -155zM216 12c106 0 158 103 162 196 c5 101 -84 154 -178 121c4 49 1 9 4 42c106 0 194 76 202 187c5 73 -69 110 -128 71c-88 -59 -152 -424 -154 -526c-1 -58 35 -91 92 -91'], + 0x1D6FE: [473,273,581,18,547,'154 473c104 0 148 -115 66 -450v-4c67 111 282 265 239 416v11c26 7 91 47 88 -8c-7 -121 -160 -239 -344 -474c-14 -70 -38 -147 -64 -215c-20 -9 -41 -17 -62 -22c-3 8 -8 16 -12 24c27 68 75 163 121 220c17 82 26 165 28 249c1 70 -8 192 -103 192 c-37 0 -57 -18 -81 -46v-1c-3 3 -12 6 -12 12c33 49 71 96 136 96'], + 0x1D6FF: [701,16,497,28,455,'183 -16c-113 0 -156 69 -154 176c2 144 94 266 237 298v6c-42 29 -117 76 -110 133c11 101 160 118 255 97c6 -13 9 -27 12 -39h-10c-57 34 -179 43 -186 -33c-11 -115 231 -152 228 -335c-2 -148 -115 -303 -272 -303zM209 12c118 0 169 162 171 257 c1 81 -31 130 -93 179c-134 -37 -179 -153 -181 -281c-1 -68 19 -155 103 -155'], + 0x1D700: [473,15,493,54,446,'224 -15c-86 0 -171 27 -169 128c1 92 73 134 156 141v8c-45 12 -83 38 -78 90c14 137 214 149 313 82l-46 -76h-15c15 59 -20 99 -76 99c-60 0 -111 -48 -113 -109c-3 -81 82 -89 150 -71c-6 -59 -1 -39 -5 -42c-94 30 -206 0 -209 -104c-3 -133 178 -128 254 -64 l11 -12c-51 -46 -105 -70 -173 -70'], + 0x1D701: [712,149,504,49,473,'223 -100c73 -17 178 15 190 82c3 20 -24 22 -39 22c-175 0 -335 -1 -324 183c10 173 112 344 245 451v5c-62 -2 -118 -12 -160 22v19l39 21h11c11 -37 62 -42 94 -42c62 0 125 24 180 49h14c-6 -17 -12 -40 -20 -56c-215 -13 -322 -230 -335 -424 c-12 -181 136 -167 297 -167c25 0 49 -9 49 -39c-2 -79 -125 -162 -195 -175c-17 12 -31 28 -46 41v8'], + 0x1D702: [473,275,531,38,497,'215 473c27 0 11 -40 -5 -104v-2c45 57 114 106 190 106c59 0 99 -29 97 -91c-2 -108 -135 -511 -92 -633c-25 -4 -55 -13 -79 -24c-23 162 98 461 95 631c0 46 -25 70 -70 70c-174 -3 -186 -292 -202 -417c-22 -6 -51 -15 -72 -25v10c21 79 64 322 66 388 c-10 47 -70 -9 -93 -18v2l-12 11v6c33 21 144 90 177 90'], + 0x1D703: [702,16,613,68,576,'237 -16c-136 0 -170 96 -168 215c3 213 90 503 350 503c127 0 159 -84 157 -198c-4 -188 -103 -520 -339 -520zM401 676c-129 0 -207 -191 -232 -295h316c21 110 51 295 -84 295zM253 13c143 0 201 224 226 336h-316c-16 -88 -61 -336 90 -336'], + 0x1D704: [473,16,310,62,275,'117 -16c-36 0 -55 23 -54 59c2 57 57 250 78 406c27 5 55 12 80 24v-13c-32 -81 -82 -295 -82 -375c0 -84 99 -23 126 8h10v-18c-35 -30 -109 -91 -158 -91'], + 0x1D705: [473,16,571,38,542,'388 -15c-68 0 -140 219 -154 249c-11 -9 -35 -28 -42 -37c-17 -23 -25 -151 -27 -186c-22 -9 -44 -16 -65 -27c7 59 53 341 55 404c-13 50 -82 -14 -105 -23h-12v16c32 22 134 92 172 92c16 0 23 -10 23 -25c0 -71 -27 -152 -39 -221c21 21 254 240 300 240 c51 0 58 -45 38 -82h-10c-58 47 -214 -72 -241 -111c35 -67 119 -327 233 -198c5 -1 8 -5 11 -9v-6c-32 -29 -90 -76 -137 -76'], + 0x1D706: [701,16,618,25,570,'209 656c42 11 138 72 174 33c16 -17 41 -363 56 -470c5 -31 13 -164 52 -164c21 0 50 22 67 33v-1h12v-13c-42 -30 -114 -116 -169 -80c-17 19 -40 371 -48 434c-92 -120 -199 -269 -242 -415c-26 -9 -51 -18 -76 -29l-10 14c95 163 194 322 322 462 c-4 40 -13 193 -65 193c-16 0 -47 -11 -64 -16c-5 2 -7 6 -9 11v8'], + 0x1D707: [473,286,610,45,565,'409 -15c-55 0 -22 80 -14 116v3c-51 -67 -191 -181 -257 -69v1c-17 -74 -57 -209 -7 -297v-12c-22 -8 -55 -12 -78 -13c-44 195 126 513 108 739c26 4 52 9 80 14c-3 -111 -53 -219 -56 -330c-1 -47 14 -95 69 -95c57 0 118 55 141 104c26 57 58 235 60 299l10 11 c23 3 46 9 68 17v-10c-27 -70 -72 -312 -72 -386c11 -52 70 -1 92 15c5 -2 9 -6 12 -11v-7c-35 -31 -107 -89 -156 -89'], + 0x1D708: [473,7,497,2,474,'159 473c23 0 29 -11 29 -186v-211h11c112 102 242 260 177 350v11c22 11 49 22 72 31c15 -16 26 -33 26 -56c-2 -108 -216 -303 -283 -404c-20 -3 -40 -8 -58 -15h-10c2 71 6 147 6 218c0 40 7 190 -51 190c-21 0 -46 -17 -62 -29h-14v17c29 19 127 84 157 84'], + 0x1D709: [701,148,547,42,501,'371 6c-143 0 -329 -40 -329 125c0 133 151 198 261 229v9c-59 19 -120 48 -119 120c2 74 72 120 136 140v7c-17 1 -122 -9 -120 30c0 18 30 29 42 35c-2 -44 68 -45 97 -45c56 0 113 15 162 40c-1 -29 -1 -50 -8 -49c-90 -1 -235 -28 -237 -146c-1 -97 85 -125 165 -127 v-8c-10 -7 -16 -18 -24 -28c-134 15 -279 -55 -279 -190c0 -139 182 -82 293 -82c24 0 52 -8 52 -38c-2 -71 -130 -153 -189 -176c-14 15 -33 28 -53 40v9c67 -14 172 18 186 79c-1 21 -18 26 -36 26'], + 0x1D70A: [482,11,443,17,411,'411 331c-1 -167 -100 -342 -266 -342c-83 0 -128 57 -128 163c0 230 157 330 261 330c83 0 133 -57 133 -151zM185 27c122 0 150 162 150 288c0 84 -33 129 -94 129c-121 0 -148 -154 -148 -293c0 -79 34 -124 92 -124'], + 0x1D70B: [467,15,653,46,613,'525 42c23 0 43 14 61 25v-1h12v-15c-30 -26 -86 -66 -127 -66c-61 0 -76 74 -76 123c2 105 43 210 100 297h-227c-28 -131 -57 -264 -98 -392c-17 -12 -52 -19 -72 -25v10c63 131 90 268 130 407h-23c-75 0 -99 -10 -142 -73v-4c-4 3 -17 4 -16 12c19 49 33 127 98 126 c155 -3 314 -5 468 1c-5 -15 -11 -32 -14 -49l-62 -13c-43 -72 -71 -154 -72 -239c-1 -41 4 -124 60 -124'], + 0x1D70C: [473,284,566,34,525,'386 473c96 0 141 -53 139 -148c-3 -157 -101 -340 -278 -340c-41 0 -78 10 -102 44c-30 -174 -29 -251 -27 -295c-26 -11 -56 -17 -84 -18c26 187 45 382 85 561c27 119 148 196 267 196zM347 441c-137 0 -179 -198 -181 -303c-2 -66 16 -127 94 -127 c138 0 184 192 185 300c1 69 -19 130 -98 130'], + 0x1D70D: [463,155,501,44,458,'166 -107c81 -12 179 17 191 91c3 16 -12 21 -27 21c-45 0 -90 -11 -136 -11c-288 0 -111 469 129 469h135c-3 -16 -4 -37 -9 -50c-111 -1 -226 18 -306 -77c-89 -106 -85 -279 84 -279c47 0 94 10 141 10c23 0 40 -8 40 -33c-2 -89 -123 -168 -199 -189'], + 0x1D70E: [474,15,552,28,524,'171 -15c-112 0 -143 63 -143 168c0 176 122 271 285 304c51 10 172 -4 211 17c-3 -23 -6 -43 -13 -63c-54 -8 -113 -4 -166 -4v-3c65 -43 91 -61 89 -147c-3 -157 -103 -272 -263 -272zM367 267c0 61 -8 145 -93 145c-131 0 -169 -120 -170 -230c-1 -70 7 -169 99 -169 c126 0 164 155 164 254'], + 0x1D70F: [463,14,519,48,476,'63 278h-15c8 32 33 170 60 185h368v-43c-45 -9 -105 -7 -150 -8c-13 -42 -128 -379 -8 -379c29 0 56 23 79 41v1l14 -10v-6c-51 -63 -228 -133 -224 12c3 109 50 236 92 337c-165 -6 -161 15 -216 -127v-3'], + 0x1D710: [471,12,547,39,509,'186 463c29 0 45 -17 45 -45c-1 -89 -65 -216 -66 -319c-1 -39 17 -75 60 -75c114 0 212 187 213 287c1 42 -11 95 -53 113v10c23 11 42 24 64 37c40 -27 61 -64 60 -113c-2 -148 -164 -370 -323 -370c-226 1 48 419 -66 419c-22 0 -50 -25 -68 -38c-7 1 -10 5 -13 10v9 c39 32 94 75 147 75'], + 0x1D711: [485,277,681,28,643,'522 473c87 0 123 -61 121 -141c-4 -190 -167 -332 -353 -336l-33 -247c-22 -7 -54 -15 -77 -26c19 87 40 183 52 271c-119 17 -205 79 -203 207c3 162 143 261 292 284v-17c-129 -36 -207 -125 -209 -262c-2 -90 29 -165 122 -189c10 69 32 244 62 305 c37 76 136 151 226 151zM485 440c-121 0 -146 -173 -163 -262l-31 -163c160 17 278 141 281 302c1 58 -17 123 -87 123'], + 0x1D712: [479,193,608,-1,601,'314 216c18 -92 13 -423 170 -312h11v-11c-34 -29 -77 -65 -124 -65c-86 0 -91 146 -109 323c-80 -109 -160 -223 -219 -344h-11c-14 11 -25 26 -33 41c70 120 162 235 260 335c-11 79 -22 319 -131 209v-1h-14v14c30 29 72 68 118 68c62 0 63 -63 78 -234 c76 81 159 163 238 240c20 -10 39 -21 53 -35v-10c-79 -18 -238 -174 -287 -218'], + 0x1D713: [682,281,695,39,653,'209 428c-4 -118 -130 -402 74 -392h21c40 207 82 418 106 626c17 9 34 15 53 20v-6c-50 -211 -85 -425 -129 -638c174 21 303 209 223 387v13c15 4 51 20 66 20c28 0 30 -67 30 -86c-2 -160 -171 -348 -327 -377c-10 -83 -20 -166 -26 -249c-20 -10 -41 -20 -61 -27v10 c27 85 40 175 57 263c-111 -13 -206 5 -201 128c4 104 80 279 12 279c-20 0 -39 -12 -57 -22v1h-11v16c28 19 112 69 143 69c20 0 27 -18 27 -35'], + 0x1D714: [463,12,715,24,673,'394 -12c-50 0 -78 15 -99 59c-82 -96 -286 -76 -270 90c15 163 127 291 281 326v-20c-138 -55 -204 -165 -206 -314c0 -48 11 -113 74 -113c120 0 149 201 154 288c22 5 44 13 65 20h10c-23 -63 -38 -139 -40 -205c-1 -46 3 -102 62 -102c117 0 180 172 181 267 c1 54 -13 108 -58 139v11c14 7 44 24 59 24c53 0 67 -95 66 -133c-2 -144 -119 -337 -279 -337'], + 0x1D715: [754,4,563,53,538,'265 678l-23 53c224 89 345 -81 279 -336c-30 -116 -102 -245 -156 -315c-111 -145 -360 -101 -303 113c16 62 54 123 108 167c90 74 178 77 253 -18c18 50 26 73 34 102c62 226 -29 313 -192 234zM409 308c-24 39 -47 59 -82 59c-75 0 -162 -90 -192 -204 c-51 -187 105 -164 173 -59c34 52 57 93 101 204'], + 0x1D716: [481,11,465,13,457,'332 222c-27 0 -215 -3 -227 -2c-16 -94 45 -181 119 -181c59 0 115 39 162 72v-19c-59 -45 -123 -103 -200 -103c-107 0 -173 53 -173 166c0 206 269 437 444 267l-41 -53h-20c-27 51 -49 69 -109 69c-100 0 -155 -89 -174 -176c78 0 155 -1 234 1c1 5 -5 -12 -15 -41'], + 0x1D717: [702,15,620,41,572,'237 -15c-128 0 -72 254 -135 254c-17 0 -36 -19 -48 -30h-13v16c25 23 88 79 125 79c67 0 5 -271 118 -271c97 0 163 155 184 232c-118 31 -283 115 -281 257c2 95 80 180 176 180c182 0 193 -269 157 -397c17 -3 34 -5 52 -6v-8c-22 -16 -44 -30 -68 -39 c-41 -108 -134 -267 -267 -267zM329 664c-53 0 -97 -42 -97 -95c-2 -120 154 -206 246 -252c13 120 -6 347 -149 347'], + 0x1D718: [439,2,666,24,746,'718 439c102 -27 -100 -102 -113 -124c-33 -27 -119 -156 -144 -238c93 -19 134 38 143 43c12 6 19 -7 13 -20c-24 -50 -84 -85 -135 -94c-47 -9 -60 -7 -58 29c4 68 83 199 117 239c-29 -17 -455 -274 -487 -276c-102 27 95 96 110 116c44 36 205 261 120 251 c-92 -10 -105 -46 -113 -50c-12 -6 -19 6 -14 17c12 27 58 90 160 102c26 3 36 -4 32 -37c-11 -78 -83 -203 -116 -235c31 19 457 277 485 277'], + 0x1D719: [705,289,665,26,622,'622 285c-4 -198 -141 -288 -323 -301c-11 -82 -16 -163 -17 -245c-15 -13 -33 -21 -53 -28l39 273c-126 8 -244 53 -241 201c3 182 157 289 327 288l35 211c15 9 29 16 43 21v-6c-25 -75 -34 -151 -50 -226c123 1 242 -45 240 -188zM539 273c2 107 -52 174 -162 176 l-76 -443c150 5 236 124 238 267zM349 449c-153 -5 -238 -113 -241 -262c-2 -114 47 -173 162 -182'], + 0x1D71A: [474,260,478,55,493,'254 -15c-91 0 -128 69 -134 150h-12c-12 -51 -24 -108 -25 -159c-3 -158 79 -109 191 -130c29 -5 41 -8 45 -89c-3 -5 -11 -14 -16 -17c-20 115 -249 -53 -247 233c1 147 85 501 277 501c97 0 162 -62 160 -161c-2 -134 -81 -328 -239 -328zM360 447 c-119 0 -203 -233 -205 -329c-1 -48 20 -102 75 -102c126 0 201 248 203 347c1 49 -20 84 -73 84'], + 0x1D71B: [528,12,715,24,674,'394 -12c-50 0 -78 15 -99 59c-81 -93 -285 -81 -270 87c14 158 88 260 235 309v-20c-113 -54 -159 -175 -161 -294c0 -48 13 -113 74 -113c120 0 149 200 154 288c22 5 44 13 66 20h10c-24 -63 -40 -140 -41 -207c-1 -45 4 -100 62 -100c117 0 176 170 178 265 c4 190 -204 214 -351 214v10l20 20c188 12 403 -11 403 -225c0 -153 -117 -313 -280 -313'], + 0x1D71C: [686,3,758,-37,703,'196 -3c-45 2 -97 3 -119 3c-23 0 -91 -2 -114 -3v37h37c23 2 43 24 67 63l346 587l67 2l152 -605c8 -29 20 -40 47 -44h24v-40c-146 3 -153 3 -164 3c-12 0 -12 0 -153 -3v37h60c12 1 33 19 24 58l-25 114h-251l-62 -112c-19 -35 -7 -56 14 -57h50v-40zM373 516 l-145 -254h204'], + 0x1D71D: [681,3,666,12,627,'280 -3c-72 0 -166 5 -268 0v23l39 18c16 8 24 23 30 57l79 448c15 88 14 94 -31 98h-36v40h85c92 -4 110 -3 198 -1h83c127 0 182 -43 165 -134c-18 -102 -105 -133 -211 -169c131 -5 192 -40 176 -161c-18 -130 -149 -219 -309 -219zM215 56c125 -17 203 29 222 146 c17 102 -24 146 -140 146h-30zM306 400c101 0 148 38 167 124c22 97 -60 119 -157 103l-40 -227h30'], + 0x1D71E: [681,3,555,-32,595,'522 604c-31 28 -146 18 -219 16l-85 -485c-15 -86 -16 -91 31 -95h47v-43c-94 3 -239 4 -328 0v40h44c47 4 49 9 65 98l72 408c15 84 16 94 -31 98h-36v40c172 -9 376 6 513 -3l-37 -149h-36v75'], + 0x1D71F: [693,0,686,-30,604,'604 15v-15h-634v15c145 221 272 451 406 678h58c55 -227 106 -455 170 -678zM436 52c-28 160 -70 316 -107 473c-90 -154 -175 -314 -256 -473h363'], + 0x1D720: [681,0,610,12,622,'550 529v75c-23 30 -173 18 -235 16l-43 -240c20 -2 34 -2 67 -2h66c42 0 56 5 61 21l16 57h40c-20 -95 -20 -96 -22 -107l-16 -108h-40v50c1 26 -10 37 -48 37h-66c-22 0 -39 -1 -67 -3l-48 -267c72 -5 226 -6 253 14l39 94h39l-40 -166h-494v20l39 18c16 8 24 23 30 57 l79 448c15 88 14 94 -31 98h-36v40c224 -10 349 7 529 -3l-36 -149h-36'], + 0x1D721: [681,3,666,-36,683,'441 57c51 0 78 12 88 39l29 78h40c-18 -50 -36 -116 -47 -177c-252 4 -328 4 -587 0v38c60 62 100 99 135 139l385 446h-222c-71 0 -83 -5 -96 -46l-17 -55h-37l28 162h543v-35c-39 -39 -73 -70 -108 -110l-410 -479h276'], + 0x1D722: [681,3,832,-24,856,'270 383h308l28 160c16 89 15 91 -31 95h-37v43c224 -4 96 -4 318 0v-40h-44c-48 -4 -49 -9 -65 -98l-72 -408c-16 -89 -15 -91 31 -95h37v-43c-224 4 -97 4 -318 0v40h44c48 4 49 9 65 98l34 192h-308l-34 -192c-16 -89 -15 -91 31 -95h37v-43c-224 4 -97 4 -318 0v40 h44c48 4 49 9 65 98l72 408c16 89 15 91 -31 95h-37v43c224 -4 96 -4 318 0v-40h-44c-48 -4 -49 -9 -65 -98'], + 0x1D723: [695,17,832,38,795,'344 -17c-224 0 -338 122 -298 350c42 236 215 362 444 362c224 0 338 -122 298 -350c-42 -236 -215 -362 -444 -362zM480 639c-186 0 -255 -139 -281 -289c-29 -165 14 -311 155 -311c186 0 254 138 281 288c29 165 -14 312 -155 312zM272 229c10 82 27 161 35 244h32 c-2 -64 0 -72 62 -70h58c60 0 60 14 77 64v6h31v-6c-18 -78 -29 -156 -38 -238h-29c8 98 -26 76 -133 75c-52 0 -54 -27 -66 -69v-6h-29'], + 0x1D724: [681,3,388,-21,411,'297 -3c-224 4 -97 4 -318 0v40h44c48 4 49 9 65 98l72 408c16 89 15 91 -31 95h-37v43c224 -4 96 -4 319 0v-40h-45c-48 -4 -49 -9 -65 -98l-72 -408c-16 -89 -15 -91 31 -95h37v-43'], + 0x1D725: [681,3,777,-21,798,'612 681c120 -4 68 -4 186 0v-39c-63 -5 -95 -12 -123 -34l-258 -207l211 -313c24 -36 45 -49 82 -50v-38h-210l-164 246c-46 67 -49 71 -72 86l-35 -197c-16 -89 -15 -91 31 -95h37v-43c-224 4 -97 4 -318 0v40h44c48 4 49 9 65 98l72 408c16 89 15 91 -31 95h-37v43 c224 -4 96 -4 318 0v-40h-44c-48 -4 -49 -9 -65 -98l-35 -200l315 263c25 22 28 35 31 50v25'], + 0x1D726: [693,3,777,-32,703,'703 2l-1 -5c-101 6 -211 4 -314 0v43c16 0 85 1 90 26l-103 455l-259 -451c-6 -31 61 -30 79 -30v-43c-72 4 -153 4 -227 0v43c33 3 55 -2 77 31c132 199 251 412 365 622h74l128 -545c15 -63 11 -107 91 -108v-38'], + 0x1D727: [681,9,1000,-28,1029,'208 -3c-139 3 -80 5 -236 0v37h44c46 4 50 13 66 101l72 408c15 88 13 94 -31 98h-37v37h247l146 -488l323 488c197 -2 23 -1 227 3v-37h-44c-46 -4 -50 -13 -65 -101l-72 -408c-16 -89 -15 -91 31 -95h36v-43c-224 4 -96 4 -318 0v40h45c48 4 49 9 65 98l73 416 l-368 -559l-27 -1l-171 561l-73 -417c-16 -89 -14 -94 30 -98h37v-40'], + 0x1D728: [681,15,832,-24,859,'211 -3c-139 3 -80 5 -235 0v37h44c46 4 50 13 65 101l72 408c16 88 14 94 -31 98h-36v40c57 -2 96 -3 105 -3l99 -4l334 -490l63 359c16 88 14 94 -31 98h-36v40c88 -3 110 -3 121 -3h114v-34h-44c-45 -4 -49 -13 -65 -101l-98 -558l-89 9l-350 534l-69 -393 c-16 -89 -13 -94 31 -98h36v-40'], + 0x1D729: [689,3,684,-2,660,'512 569h-257c-82 0 -81 3 -111 -75v-6h-33v6c16 64 22 129 30 195c171 -2 347 -5 519 0v-4c-14 -66 -22 -129 -28 -197h-32c0 80 -9 81 -88 81zM397 304h-139c-51 0 -54 -27 -66 -69v-6h-29c5 41 11 78 18 117v26c6 34 15 66 17 101h31c-2 -67 5 -70 71 -70h120 c59 0 59 14 76 64v6h31v-6c-19 -78 -28 -157 -38 -238h-30c2 66 8 75 -62 75zM163 126h263c108 0 119 -7 169 105v5h33l-56 -239c-187 6 -385 4 -574 0c7 81 11 159 16 239h33c9 -99 13 -110 116 -110'], + 0x1D72A: [695,17,832,38,795,'493 695c226 0 334 -129 295 -349c-40 -228 -205 -363 -444 -363c-229 0 -337 127 -298 349c40 229 205 363 447 363zM474 639c-88 0 -233 -36 -274 -284c-29 -175 5 -316 161 -316c146 0 240 98 274 286c28 159 -7 314 -161 314'], + 0x1D72B: [689,3,817,-25,843,'729 0l-2 -3c-99 3 -206 6 -307 0v43c10 0 59 2 66 4c32 10 46 133 50 160l76 431l-303 2l-77 -433c-4 -27 -34 -150 -6 -160c7 -2 48 -4 57 -4v-43c-99 3 -207 4 -308 0v43c9 0 58 1 66 4c31 9 46 133 50 160l50 278c4 27 33 150 6 160c-8 3 -49 4 -58 4v43 c248 -4 505 -5 754 0v-43c-9 0 -58 -2 -66 -4c-31 -11 -46 -133 -50 -160l-50 -278c-4 -27 -33 -149 -6 -160c9 -3 50 -4 58 -4v-40'], + 0x1D72C: [681,3,610,-21,631,'628 531c-25 -136 -161 -238 -319 -205l-11 35l12 10c20 -3 38 -7 42 -6c63 0 108 53 126 132c26 115 -64 154 -163 125l-86 -487c-15 -88 -14 -92 31 -95h47v-43c-243 4 -99 5 -328 0v40h44c48 4 49 9 65 98l72 408c15 88 14 94 -31 98h-36v40c278 -5 92 -3 360 0h12 c126 0 181 -50 163 -150'], + 0x1D72D: [695,17,832,38,795,'493 695c226 0 334 -129 295 -349c-40 -228 -205 -363 -444 -363c-229 0 -337 127 -298 349c40 229 205 363 447 363zM474 639c-71 0 -220 -22 -271 -265h438c13 142 -30 265 -167 265zM361 39c140 0 233 90 270 264h-439c-12 -143 31 -264 169 -264'], + 0x1D72E: [689,3,659,-36,656,'539 -3c-192 3 -385 8 -575 0v27c92 105 193 209 280 316l-131 346c174 -5 366 -4 543 3l-24 -163h-34c1 19 1 87 -11 101c-22 25 -277 15 -286 15l71 -223l-248 -287c125 -1 254 -14 373 7c30 5 49 63 62 88v5h35v-6c-24 -74 -37 -150 -55 -225v-4'], + 0x1D72F: [681,3,666,61,704,'436 -3c-224 4 -97 4 -318 0v40h44c48 4 49 9 65 98l85 484l-184 1l-27 -103h-40c11 79 15 112 15 164c534 -4 98 -4 628 0v-5c-16 -48 -20 -83 -36 -159h-40v102h-175l-85 -484c-16 -89 -15 -91 31 -95h37v-43'], + 0x1D730: [705,0,698,41,742,'214 705c187 0 154 -259 150 -393h10c31 120 110 393 275 393c92 1 106 -94 86 -168v-5h-12c-32 89 -142 40 -192 -13c-101 -108 -128 -278 -150 -407c-14 -78 0 -74 70 -79v-33c-96 0 -198 2 -296 0v33c22 1 59 -2 79 11c13 20 23 77 27 100c22 123 69 449 -110 449 c-42 0 -68 -19 -92 -56l-18 16c1 7 45 152 173 152'], + 0x1D731: [689,3,957,44,921,'382 689c102 -5 207 -5 308 0v-42c-47 -6 -82 -3 -94 -59c161 0 358 -15 321 -225c-39 -218 -231 -252 -406 -252c-10 -68 9 -63 64 -72v-42c-97 6 -208 6 -308 0v43c58 8 87 6 97 71c-172 0 -352 37 -314 252c37 213 235 225 399 225c8 54 -22 55 -67 59v42zM766 359 c28 157 -43 188 -183 188l-70 -394c145 0 226 54 253 206zM379 154l69 393c-140 0 -223 -33 -250 -188c-27 -150 36 -205 181 -205'], + 0x1D732: [695,3,666,-44,708,'146 605c-18 23 -38 22 -71 12v41l192 37c25 -22 37 -42 56 -91l66 -169l208 243h111v-34h-35c-21 -3 -28 -11 -54 -39l-210 -224l112 -278c20 -49 28 -66 50 -66h24v-40c-35 2 -52 3 -101 3h-97l-102 263l-226 -260l-113 -3v34h38c12 1 27 12 36 21l245 261l-65 166 c-18 46 -46 100 -64 123'], + 0x1D733: [695,5,935,62,989,'557 -5c-99 7 -195 6 -294 0v45c16 0 76 -2 81 22l32 145h-35c-82 -2 -162 20 -204 85c-52 79 -15 232 -16 330c0 35 -30 33 -59 39v28c66 1 151 21 195 -13c31 -57 -122 -468 126 -427l41 233c5 27 34 150 6 160c-9 3 -39 4 -50 4v43c96 -7 192 -6 288 0v-43 c-10 0 -48 -1 -57 -4c-32 -11 -46 -133 -51 -160l-41 -233c236 -39 227 370 276 427c49 32 127 15 194 13v-28c-61 -13 -66 2 -96 -109c-61 -226 -104 -351 -381 -345c-21 -132 -30 -152 -6 -163c7 -3 41 -4 51 -4v-45'], + 0x1D734: [700,3,810,-11,779,'467 651c-155 0 -231 -119 -255 -255c-18 -105 -4 -236 95 -279l-20 -117h-298c7 67 14 131 18 200h31c1 -14 12 -64 20 -72c9 -10 142 -9 168 -9v10c-115 45 -182 148 -158 282c35 200 225 289 402 289c166 0 339 -80 305 -271c-26 -147 -128 -245 -270 -300v-10 c29 0 157 -3 172 9c3 4 35 63 38 68v4h32v-4c-20 -67 -32 -133 -49 -199h-298l20 120c130 46 182 174 202 290c23 129 -12 244 -155 244'], + 0x1D735: [693,0,686,83,717,'717 678c-145 -221 -272 -451 -406 -678h-58c-55 227 -106 455 -170 678v15h634v-15zM614 641h-363c28 -160 70 -316 107 -473c90 154 175 314 256 473'], + 0x1D736: [478,21,663,46,635,'427 -21c-57 0 -48 90 -49 130c-71 -55 -160 -130 -247 -130c-88 0 -91 92 -79 161c28 158 163 338 337 338c118 0 90 -150 92 -234c49 50 92 104 123 164h10c9 -25 14 -53 21 -80c-46 -51 -99 -94 -153 -137c1 -33 -10 -137 35 -137c28 0 51 23 71 41l13 -19v-8 c-46 -40 -117 -89 -174 -89zM310 427c-84 0 -144 -205 -155 -265c-8 -48 -4 -101 55 -101c61 0 119 59 169 95c-1 60 13 271 -69 271'], + 0x1D737: [705,282,582,-21,581,'525 198c-30 -160 -230 -266 -383 -175c-15 -91 -22 -160 -47 -276l-116 -29l117 600c13 183 111 387 353 387c90 0 146 -34 129 -133c-17 -96 -110 -149 -197 -174v-6c103 0 162 -96 144 -194zM473 563c27 117 -121 131 -164 51c-59 -71 -114 -318 -130 -406 c-12 -69 -34 -181 64 -181c93 0 140 91 158 170c18 83 -17 211 -123 163v52c92 0 173 55 195 151'], + 0x1D738: [480,291,632,32,614,'289 57c69 104 237 231 194 381v11c18 6 89 31 102 31c27 0 32 -42 28 -64c-21 -117 -186 -238 -345 -440c-21 -80 -41 -161 -69 -240c-28 -12 -59 -20 -88 -27c-16 10 -29 25 -36 42c25 63 84 129 122 188c29 124 70 574 -150 425v1l-15 16v6c47 40 110 93 171 93 c157 0 102 -315 86 -423'], + 0x1D739: [707,22,556,45,505,'196 -22c-145 0 -166 117 -143 243c21 120 93 199 211 242v6c-40 26 -109 76 -93 132c28 99 202 117 294 102l15 -47h-10c-60 27 -154 31 -181 -35c-20 -114 257 -120 211 -382c-26 -147 -157 -261 -304 -261zM250 20c88 0 127 118 138 183c20 109 -7 190 -90 246 c-82 -38 -117 -128 -131 -206c-13 -78 -24 -223 83 -223'], + 0x1D73A: [479,21,463,47,436,'420 39c-124 -82 -394 -105 -371 90c8 69 71 109 134 124v5c-41 21 -70 60 -56 110c34 123 197 129 309 90l-35 -93h-13c1 48 -25 84 -74 84c-100 0 -129 -167 2 -167c22 0 46 4 69 10v-8l-10 -42v-4c-88 27 -191 6 -208 -84c-27 -140 171 -153 255 -78h10'], + 0x1D73B: [704,193,558,32,535,'355 1c-176 0 -356 -11 -317 181c35 170 155 332 301 440v3c-60 -5 -123 -16 -164 18v12l72 43c8 -35 54 -44 86 -44c64 0 129 25 191 50h11l-19 -46v-5c-197 -8 -326 -238 -365 -405c-44 -187 147 -146 294 -146c31 0 58 -18 52 -53c-15 -84 -171 -207 -249 -242l-44 27 v12c61 1 173 59 185 128c4 22 -16 27 -34 27'], + 0x1D73C: [480,279,560,31,518,'357 418c-143 0 -183 -317 -201 -412c-36 -5 -72 -11 -106 -22v10c31 103 53 209 71 312c4 20 15 69 -14 69c-22 0 -46 -16 -66 -28l-10 20v7c36 27 131 106 172 106c51 -1 28 -77 24 -112c51 63 121 112 199 112c163 0 71 -185 20 -477c-13 -71 -28 -168 -13 -236v-12 l-123 -34c-7 143 48 334 94 594c8 44 12 103 -47 103'], + 0x1D73D: [701,21,645,70,605,'244 -21c-189 0 -187 190 -161 341c33 185 141 381 357 381c184 0 178 -186 152 -333c-31 -177 -134 -389 -348 -389zM389 659c-111 0 -160 -192 -174 -272c86 -3 173 -2 259 0c13 82 27 272 -85 272zM467 342c-86 4 -173 3 -260 0c-13 -82 -44 -324 74 -324 c108 0 171 247 186 324'], + 0x1D73E: [481,17,272,30,249,'67 -17c-69 0 -25 100 1 217c20 86 37 172 55 258c37 4 72 14 108 23v-9c-33 -96 -49 -196 -66 -293c-3 -17 -23 -112 1 -112c16 0 53 25 70 34l13 -15v-7c-44 -34 -129 -96 -182 -96'], + 0x1D73F: [481,17,539,29,546,'497 362c-36 80 -147 -35 -193 -62c32 -73 91 -304 207 -197v-29c-37 -32 -99 -89 -146 -89c-71 0 -122 201 -145 259l-47 -238c-37 -4 -72 -13 -109 -23v10c14 58 20 114 30 172c6 34 48 231 18 231c-16 0 -52 -23 -70 -33l-13 15v7c45 35 130 96 183 96 c59 0 30 -82 7 -206c71 47 237 247 327 194v-7c-11 -33 -22 -65 -31 -98v-2h-18'], + 0x1D740: [698,7,587,2,565,'565 47c-53 -30 -163 -96 -192 -16c-32 90 -32 297 -43 407v-1c-88 -137 -173 -282 -221 -433l-107 -10v12c94 167 196 329 322 477c-2 38 -13 168 -61 168c-18 0 -39 -8 -59 -13v27c62 21 133 42 196 29c53 -36 26 -635 113 -635c14 0 30 7 41 16v-1l11 -20v-7'], + 0x1D741: [492,302,610,24,581,'254 58c156 0 166 243 185 394l19 19c27 4 53 12 80 21l20 -26c-48 -126 -86 -377 -79 -397c22 0 53 27 71 40h20l11 -24v-20c-42 -36 -119 -96 -171 -96c-53 0 -51 49 -43 90c-55 -60 -153 -125 -227 -57c-38 -158 -12 -224 11 -264l-18 -23c-29 -13 -61 -16 -90 -17 c-23 61 -23 96 -11 165c33 186 129 440 111 603c38 6 76 13 113 20c1 -107 -33 -195 -47 -274c-9 -51 -25 -154 45 -154'], + 0x1D742: [480,16,561,29,542,'113 389c-16 0 -55 -18 -74 -25v1l-10 18v5c44 27 151 92 197 92c19 0 23 -15 24 -32c3 -90 -13 -186 -14 -277v-90c71 73 170 165 188 263c5 32 5 67 -15 89v9c14 7 78 38 89 38c27 0 48 -61 44 -86c-21 -114 -245 -275 -310 -388c-34 -6 -68 -12 -101 -22 c4 85 -4 168 -1 251c0 24 11 154 -17 154'], + 0x1D743: [705,193,524,37,550,'359 4c-158 0 -348 -25 -318 152c20 113 155 185 258 205v5c-60 21 -131 61 -117 139c11 64 76 103 133 123v7h-34c-31 -1 -81 9 -92 38l60 32c5 -36 62 -38 92 -38c65 0 134 7 197 37h12l-28 -65c-90 4 -205 -5 -226 -105c-20 -95 61 -143 141 -159v-8l-20 -36 c-106 14 -254 -36 -272 -147c-23 -142 180 -77 290 -77c43 0 63 -24 56 -67c-15 -82 -137 -195 -212 -233l-50 27v12c57 1 154 53 165 116c5 27 -7 42 -35 42'], + 0x1D744: [471,17,555,32,523,'330 471c148 0 215 -83 188 -235c-29 -162 -134 -253 -294 -253c-145 0 -213 87 -185 241c28 159 132 247 291 247zM310 423c-69 0 -109 -54 -130 -175c-26 -144 -2 -217 70 -217c68 0 106 52 127 174c26 147 5 218 -67 218'], + 0x1D745: [476,16,633,26,624,'443 -14c-93 0 -70 127 -58 193c28 160 54 151 103 199h-228l-20 -119c-15 -85 -31 -172 -52 -257c-32 -7 -66 -10 -98 -18l-10 10c56 120 103 251 126 377c-89 -3 -101 -6 -158 -84l-22 16l32 82c22 57 20 91 91 91c158 0 316 -8 475 0l-14 -80 c-103 -23 -107 -53 -124 -148c-8 -47 -29 -189 40 -189c22 0 44 13 66 21v-28c-44 -29 -99 -66 -149 -66'], + 0x1D746: [476,279,566,-17,536,'532 266c-27 -180 -215 -348 -402 -249c-6 -27 -29 -109 -34 -274l-113 -22c39 138 55 338 80 479c32 180 139 276 322 276c133 0 166 -85 147 -210zM339 433c-105 0 -151 -125 -166 -207c-14 -80 -14 -198 88 -198c99 0 140 106 154 186c13 73 22 219 -76 219'], + 0x1D747: [477,193,515,49,484,'387 -37c6 73 -117 28 -174 28c-312 0 -115 431 69 486h202c-8 -27 -13 -59 -23 -85v-3c-149 1 -294 31 -327 -124c-20 -92 15 -177 117 -177c82 0 245 60 232 -51c-9 -78 -141 -194 -213 -230l-49 27v12c57 1 160 53 166 117'], + 0x1D748: [492,25,570,46,600,'215 -25c-136 0 -186 83 -163 214c29 165 182 289 345 289c71 0 152 -20 203 14v-12c-13 -27 -14 -58 -23 -86v-3c-57 2 -119 6 -174 11v-4c82 -60 126 -80 104 -205c-26 -145 -159 -218 -292 -218zM293 416c-79 0 -110 -135 -119 -190c-15 -83 -21 -210 89 -210 c90 0 123 106 136 176c15 85 10 137 -21 210c-27 7 -55 14 -85 14'], + 0x1D749: [480,17,518,46,529,'46 291c19 35 30 202 90 189c129 3 272 -17 393 0v-12c-17 -26 -31 -53 -46 -80c-49 -7 -96 -6 -143 -7c-27 -61 -52 -125 -63 -188c-8 -47 -23 -142 42 -142c28 0 53 15 77 32l14 -15v-7c-49 -42 -111 -78 -173 -78c-82 0 -75 69 -63 134c15 87 48 178 86 262 c-115 9 -172 -4 -196 -102v-1h-18v15'], + 0x1D74A: [480,18,576,38,529,'351 438c283 208 221 -456 -130 -456c-209 0 -127 176 -103 310c4 22 18 83 -15 83c-20 0 -45 -17 -65 -28v27c41 31 127 106 174 106c76 0 5 -186 -14 -296c-10 -55 -22 -167 55 -167c96 0 154 145 167 220c13 74 -3 158 -69 190v11'], + 0x1D74B: [478,277,836,50,791,'315 19c26 222 62 459 337 459c120 0 154 -79 134 -191c-31 -175 -206 -280 -369 -290v-29c-15 -72 -26 -144 -35 -216c-40 -7 -79 -18 -116 -29v9c16 52 19 105 28 159l18 102c-154 1 -287 72 -257 246c26 147 173 222 305 238v-2l11 -16v-4 c-101 -40 -177 -97 -196 -204c-19 -110 16 -232 140 -232zM601 440c-100 0 -130 -167 -145 -237c-19 -90 -28 -107 -36 -180c130 17 226 113 249 241c10 58 8 176 -68 176'], + 0x1D74C: [480,183,583,-47,600,'441 -99c19 0 36 7 52 20v-1l15 -15v-8c-45 -40 -100 -71 -157 -71c-92 0 -96 100 -116 301c-92 -90 -159 -202 -225 -310h-16c-16 19 -31 37 -41 60c82 106 174 206 277 294l-21 162c4 64 -65 96 -108 46v1l-10 20v6c43 31 112 74 163 74c72 0 66 -157 72 -209 c23 25 191 206 200 206c21 0 61 -29 74 -42v-11c-76 -12 -206 -145 -270 -201c29 -292 50 -322 111 -322'], + 0x1D74D: [688,279,762,33,735,'696 480c47 0 41 -109 35 -143c-27 -156 -169 -303 -328 -336c-15 -86 -21 -173 -27 -259c-42 -2 -80 -18 -124 -21c36 82 51 186 67 270c-165 -21 -265 19 -226 194c28 127 85 280 -49 206v1l-11 15v7c52 34 124 66 184 66c46 0 47 -27 40 -66 c-26 -146 -157 -377 71 -377c39 188 104 497 116 625c31 11 63 19 94 26l11 -10c-55 -212 -95 -424 -139 -637c208 36 257 291 188 402v6c10 4 95 31 98 31'], + 0x1D74E: [480,14,817,47,767,'442 -14c-55 0 -92 9 -117 58c-48 -38 -105 -58 -162 -58c-112 0 -127 107 -110 202c23 131 163 292 304 292v-1l12 -16v-4c-114 -42 -179 -123 -199 -236c-10 -57 -24 -191 54 -191c119 0 146 210 155 288l100 24l17 -19c-21 -48 -38 -97 -47 -147 c-8 -49 -21 -149 48 -149c99 0 152 139 165 216c14 80 -1 135 -59 180v10c14 8 80 45 93 45c72 0 78 -142 68 -198c-28 -157 -156 -296 -322 -296'], + 0x1D74F: [750,13,493,26,466,'466 402c0 -204 -64 -411 -252 -415c-256 -5 -247 425 7 425c51 0 87 -15 149 -63c27 172 -25 347 -150 347c-36 0 -64 -8 -114 -32l-45 56c227 103 405 -67 405 -318zM363 308c-108 126 -242 12 -246 -150c-4 -167 143 -166 195 -51c23 51 35 92 51 201'], + 0x1D750: [470,17,528,28,508,'329 429c-94 0 -159 -82 -179 -166c81 -4 163 -3 245 -1l-25 -43c-77 -1 -151 1 -228 -4c-2 -99 23 -168 133 -168c57 0 113 35 164 67v-28c-74 -48 -145 -103 -230 -103c-143 0 -196 70 -176 214c30 213 308 368 475 206l-63 -62h-16c-15 50 -42 88 -100 88'], + 0x1D751: [700,20,590,10,566,'216 -18c-127 -29 -81 238 -139 252c-13 0 -38 -20 -50 -29l-17 14v7c28 30 110 107 148 107c78 0 14 -270 127 -270c75 0 112 105 128 163c-112 46 -278 161 -252 307c18 105 126 167 223 167c178 0 180 -274 131 -407c15 -7 33 -9 51 -11v-10c-23 -14 -47 -25 -71 -32 c-42 -99 -163 -258 -279 -258zM304 643c-98 0 -147 -169 127 -324c10 97 -3 324 -127 324'], + 0x1D752: [439,24,666,-7,787,'761 439c17 0 33 -9 24 -28c-8 -16 -145 -86 -159 -96c-34 -24 -114 -135 -150 -209c84 -9 107 12 114 14c22 7 29 -7 19 -23c-39 -60 -108 -101 -165 -115c-54 -13 -68 -13 -49 53c15 50 66 147 85 177c-28 -13 -432 -212 -461 -214c-18 -1 -32 9 -24 28 c9 19 150 120 165 130c50 34 199 190 147 186c-93 -8 -107 -25 -115 -27c-19 -7 -27 6 -19 19c17 25 76 88 186 100c27 3 36 -3 26 -37c-22 -71 -105 -188 -146 -217c35 18 493 259 522 259'], + 0x1D753: [688,279,742,48,695,'690 233c-32 -181 -172 -249 -335 -251l-41 -236l-79 -25l-13 13l55 252c-148 12 -253 86 -224 251c29 167 167 237 317 241l31 195l79 15l-30 -209c166 -1 273 -60 240 -246zM568 232c19 110 4 214 -124 216l-83 -435c123 2 188 111 207 219zM365 447 c-109 -1 -181 -101 -198 -200c-16 -89 20 -215 116 -229'], + 0x1D754: [476,266,566,81,565,'305 -18c-95 0 -151 43 -148 142c-40 -74 -92 -263 52 -263c26 0 53 4 80 4c79 0 72 -56 75 -121l-15 -10c-40 76 -162 5 -221 60c-60 56 -50 213 -35 298c25 142 105 384 291 384c139 0 201 -74 176 -214c-24 -135 -96 -280 -255 -280zM423 431 c-109 0 -210 -207 -225 -294c-10 -57 10 -106 72 -106c111 0 198 208 213 293c9 52 1 107 -60 107'], + 0x1D755: [566,14,817,45,768,'443 -14c-56 0 -94 10 -119 58c-48 -38 -104 -58 -160 -58c-111 0 -130 101 -113 196c26 149 160 258 307 280v-1l14 -15v-5c-114 -38 -183 -115 -203 -227c-10 -55 -23 -182 53 -182c123 0 150 227 160 307l90 22l24 -17c-20 -50 -37 -102 -46 -153s-26 -162 45 -162 c101 0 153 140 167 217c40 207 -132 321 -347 269v24c221 76 495 -3 448 -257c-29 -157 -156 -296 -320 -296'], + 0x1D7CE: [689,18,499,33,468,'266 689c73 0 129 -31 161 -91c29 -53 41 -123 41 -235c0 -263 -70 -381 -226 -381c-146 0 -209 100 -209 333c0 128 14 209 48 271c38 70 97 103 185 103zM153 388c0 -235 23 -354 102 -354c60 0 93 81 93 229c0 140 -14 275 -34 319c-16 36 -40 55 -69 55 c-74 0 -92 -85 -92 -249'], + 0x1D7CF: [699,3,499,35,455,'189 589l-140 -68c-10 27 -14 47 -14 73c62 15 177 55 299 105l12 -10c-8 -117 -10 -183 -10 -265v-336c0 -32 19 -47 57 -49l62 -4v-38c-49 1 -95 2 -108 2c-33 1 -57 1 -69 1s-33 0 -63 -1c-18 0 -79 -1 -140 -2v38l72 4c38 2 57 18 57 49v462c0 31 -2 39 -10 40 c-1 0 -3 0 -5 -1'], + 0x1D7D0: [689,3,499,25,472,'25 -3v53l167 173c78 82 117 161 117 239c0 71 -42 117 -108 117c-44 0 -89 -26 -97 -57l-18 -71l-37 3l18 172c57 45 102 63 161 63c124 0 213 -75 213 -181c0 -66 -37 -143 -103 -210l-174 -179l2 -8l302 11l4 -5c-2 -28 -3 -42 -3 -65c0 -17 0 -30 2 -55l-230 3h-44'], + 0x1D7D1: [689,18,499,22,458,'56 172c24 -55 62 -131 154 -131c73 0 124 57 124 139c0 78 -50 129 -126 129c-22 0 -41 -2 -61 -8l-7 5l19 77h35c68 0 113 43 113 110c0 57 -39 94 -102 94c-61 0 -98 -34 -117 -106h-35l31 161c58 34 98 47 153 47c105 0 181 -62 181 -147c0 -64 -35 -111 -112 -153 c45 -5 66 -11 91 -28c40 -28 61 -71 61 -126c0 -140 -128 -253 -287 -253c-49 0 -82 7 -124 25c-13 84 -16 109 -25 156'], + 0x1D7D2: [702,3,499,12,473,'19 172l-7 41c57 148 128 282 245 460l122 29l7 -13c-5 -153 -6 -221 -6 -301v-130h88l1 -3v-83h-89v-56c0 -48 19 -74 57 -77l36 -4v-38c-139 3 -139 3 -154 3c-12 0 -33 0 -65 -1c-16 0 -62 -1 -112 -2v38l64 4c37 2 57 29 57 77v56h-244zM263 604 c-5 -7 -75 -125 -75 -128l-62 -121c-20 -38 -21 -49 -44 -97h181v346'], + 0x1D7D3: [685,18,499,42,472,'149 563l-4 -162c57 27 87 35 130 35c121 0 197 -73 197 -189c0 -147 -127 -265 -286 -265c-45 0 -76 7 -113 23c-6 34 -12 60 -31 140l30 19c35 -80 86 -121 155 -121c77 0 127 55 127 142s-52 144 -133 144c-44 0 -79 -13 -112 -42l-19 12c5 82 6 107 6 129v106 c0 36 -1 67 -6 142l7 9c58 -3 79 -4 170 -6l177 6l4 -9c-5 -23 -7 -37 -7 -58c0 -13 0 -27 1 -44l-6 -11c-85 2 -133 3 -143 3'], + 0x1D7D4: [689,18,499,37,469,'396 689l39 -28l-15 -17c-9 1 -17 1 -21 1c-72 0 -138 -35 -178 -98c-31 -48 -45 -102 -53 -207c48 64 87 87 146 87c95 0 155 -76 155 -196c0 -149 -88 -249 -217 -249c-71 0 -127 27 -163 81c-32 48 -52 127 -52 213c0 146 49 260 149 340c65 52 117 71 210 73z M254 337c-59 0 -89 -43 -89 -130c0 -106 38 -173 98 -173c56 0 88 54 88 145c0 95 -39 158 -97 158'], + 0x1D7D5: [685,3,499,46,493,'493 682v-47c-34 -57 -53 -95 -93 -180l-110 -234c-26 -57 -71 -173 -86 -224c-8 1 -16 1 -19 1c-17 1 -29 2 -36 2c-9 0 -9 0 -55 -3l-6 11l300 541l-4 6h-225c-47 0 -58 -8 -63 -54l-8 -67h-39c1 82 1 82 1 94c0 50 -1 81 -4 148l10 9c44 -1 85 -2 99 -2 c87 -3 143 -4 168 -4h29'], + 0x1D7D6: [689,18,499,34,467,'151 334c-72 44 -100 89 -100 163c0 116 83 192 209 192c108 0 177 -58 177 -149c0 -59 -25 -98 -94 -147c41 -18 59 -31 81 -57c29 -34 43 -75 43 -124c0 -132 -100 -230 -233 -230c-118 0 -200 74 -200 180c0 74 38 130 117 172zM253 287l-61 28 c-52 -48 -69 -81 -69 -136c0 -82 53 -142 125 -142c62 0 109 51 109 120c0 59 -30 96 -104 130zM250 430l44 -20c43 39 59 69 59 113c0 67 -42 112 -104 112c-57 0 -95 -37 -95 -93c0 -50 26 -81 96 -112'], + 0x1D7D7: [689,18,499,31,463,'105 -18l-38 31l9 18c14 -2 25 -3 31 -3c27 0 73 13 102 29c96 56 113 178 122 272l-63 -58c-20 -17 -40 -25 -73 -25c-105 0 -164 72 -164 200c0 150 83 243 217 243c140 0 215 -99 215 -282c0 -184 -83 -333 -220 -396c-44 -20 -72 -26 -138 -29zM241 635 c-58 0 -92 -51 -92 -138c0 -99 38 -160 101 -160c59 0 86 40 86 126c0 110 -34 172 -95 172'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Normal/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Operators/Regular/Main.js new file mode 100644 index 0000000..600dc29 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Operators/Regular/Main.js @@ -0,0 +1,347 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'AsanaMathJax_Operators', + id: 'ASANAMATHOPERATORS', + 0x20: [0,0,249,0,0,''], + 0x2206: [697,4,688,27,662,'662 6c-65 122 -267 584 -310 691h-25c-39 -117 -92 -231 -141 -343c-50 -116 -98 -238 -159 -348l6 -10c101 3 202 4 303 4c107 0 213 0 319 -4zM584 37h-432c65 178 137 354 212 527h7c76 -175 147 -349 213 -527'], + 0x220A: [482,3,511,66,446,'284 482c-143 0 -218 -72 -218 -213c0 -182 119 -272 308 -272c10 0 34 2 72 7l-8 37c-14 -2 -34 -3 -58 -3c-135 0 -198 72 -216 178l244 9l-8 47l-240 7c0 108 52 162 152 162c32 0 68 -4 116 -13l-4 39c-36 10 -84 15 -140 15'], + 0x220C: [648,107,563,55,509,'509 271c0 -140 -112 -263 -258 -263h-76l-47 -115h-56l46 115h-63v53h84l73 183h-139v53h160l70 177c-16 4 -31 6 -48 6h-200v53h196c25 0 49 -4 71 -11l51 126h56l-57 -146c83 -44 137 -134 137 -231zM455 297c-8 66 -47 125 -103 157l-63 -157h166zM455 244h-187 l-72 -183h59c94 0 187 78 200 183'], + 0x220E: [406,0,508,52,457,'457 0h-405v406h405v-406'], + 0x220F: [626,311,994,54,941,'941 -311c-17 9 -178 13 -194 13c-15 0 -167 -4 -181 -11l-1 38c46 1 83 16 111 53c25 32 21 329 21 362c0 31 2 419 2 419h-398s-6 -391 -6 -421c0 -32 -5 -328 20 -362c28 -35 67 -50 113 -51v-40c-16 9 -177 13 -195 13c-16 0 -162 -4 -178 -11l-1 38 c46 1 81 16 109 53c25 32 25 332 24 364c0 31 7 370 -19 401c-29 35 -67 39 -113 39l2 38c331 -2 474 -4 884 2v-40c-48 3 -81 -5 -110 -39c-27 -32 -24 -374 -24 -403c0 -33 -4 -330 23 -364c26 -35 66 -50 111 -51v-40'], + 0x2210: [626,311,994,54,941,'941 626c-17 -9 -178 -13 -194 -13c-15 0 -167 4 -181 11l-1 -38c46 -1 83 -16 111 -53c25 -32 21 -329 21 -362c0 -31 2 -419 2 -419h-398s-6 391 -6 421c0 32 -5 328 20 362c28 35 67 50 113 51v40c-16 -9 -177 -13 -195 -13c-16 0 -162 4 -178 11l-1 -38 c46 -1 81 -16 109 -53c25 -32 25 -332 24 -364c0 -31 7 -370 -19 -401c-29 -35 -67 -39 -113 -39l2 -38c331 2 474 4 884 -2v40c-48 -3 -81 5 -110 39c-27 32 -24 374 -24 403c0 33 -4 330 23 364c26 35 66 50 111 51v40'], + 0x2211: [620,310,850,62,788,'788 13h-42c-12 -87 -32 -145 -66 -175c-32 -28 -88 -43 -168 -43h-298l310 399l-278 384h252c74 0 128 -19 164 -56c32 -36 56 -94 70 -176h36l-14 274h-688l354 -487l-358 -443h710'], + 0x221B: [1048,59,739,63,772,'343 752c13 -41 39 -80 97 -80c53 0 87 38 87 95c0 51 -27 81 -74 81c-15 0 -25 -3 -47 -12l-4 3l7 30c7 -1 22 -1 26 -1c40 0 74 35 74 77c0 35 -30 65 -67 65c-29 0 -65 -19 -71 -38l-10 -32h-17l16 70c27 27 52 38 90 38c63 0 104 -33 104 -84c0 -33 -16 -58 -61 -93 c26 -5 86 -17 86 -84c0 -78 -87 -138 -156 -138c-21 0 -46 5 -76 15c-3 28 -7 48 -19 82zM772 994l-307 -1053l-277 580l-112 -42l-13 22l202 108l207 -439l239 824h61'], + 0x221C: [1045,59,739,63,771,'421 756h-150l-6 13l160 260l42 16l6 -3c-2 -23 -4 -72 -4 -172v-78h16c8 -1 18 -1 44 2v-40c-16 1 -26 2 -60 2v-42c0 -34 6 -41 34 -43l26 -2v-17c-74 2 -74 2 -88 2s-14 0 -88 -2v17l34 2c28 1 34 9 34 43v42zM421 792v198l-120 -198h120zM771 994l-306 -1053 l-278 580l-112 -42l-12 22l202 108l206 -439l240 824h60'], + 0x221F: [368,0,498,65,434,'434 0h-369v368h63v-305h306v-63'], + 0x222C: [885,442,1132,54,1058,'1058 802c0 -20 -6 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-8 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-12 -164 -20 -329 -38 -492c-15 -131 -46 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19 c8 -10 22 -13 33 -13c128 0 117 219 120 302c5 180 19 359 30 538c10 149 35 455 239 455c48 0 121 -25 121 -83zM694 802c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-12 -164 -20 -329 -38 -492 c-15 -131 -47 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 117 219 120 302c5 180 19 359 30 538c10 149 34 455 239 455c48 0 121 -25 121 -83'], + 0x222D: [885,442,1496,54,1422,'1422 802c0 -20 -6 -43 -30 -43c-31 0 -72 30 -72 62c0 7 1 13 4 20c-8 9 -22 12 -33 12c-140 0 -124 -332 -130 -420c-12 -164 -20 -329 -38 -492c-14 -131 -46 -383 -222 -383c-47 0 -119 24 -119 83c0 19 5 44 30 44c30 0 71 -32 71 -63c0 -6 -2 -14 -4 -19 c8 -10 22 -13 34 -13c127 0 117 219 120 302c5 180 18 359 29 538c10 149 35 455 239 455c48 0 121 -25 121 -83zM1058 802c0 -20 -6 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-8 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-12 -164 -20 -329 -38 -492 c-15 -131 -46 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 117 219 120 302c5 180 19 359 30 538c10 149 35 455 239 455c48 0 121 -25 121 -83zM694 802c0 -20 -7 -43 -31 -43 c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-12 -164 -20 -329 -38 -492c-15 -131 -47 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 117 219 120 302 c5 180 19 359 30 538c10 149 34 455 239 455c48 0 121 -25 121 -83'], + 0x222E: [885,442,768,54,694,'694 802c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-134 0 -122 -305 -126 -407c109 -27 191 -127 191 -246c0 -133 -101 -241 -230 -253v-6c-15 -131 -49 -383 -224 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63 c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 118 219 120 302c1 21 2 42 2 62c-107 30 -186 129 -186 246c0 127 93 231 215 250c10 155 43 435 238 435c48 0 121 -25 121 -83zM575 200c0 90 -60 167 -143 192c-9 -130 -16 -261 -29 -391c97 13 172 98 172 199zM332 397 c-91 -20 -159 -100 -159 -197c0 -89 56 -163 136 -191c6 130 14 258 23 388'], + 0x222F: [885,442,1132,54,1058,'1058 802c0 -20 -6 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 3 20c-7 9 -21 12 -33 12c-137 0 -122 -317 -126 -413c99 -35 171 -129 171 -240c0 -124 -91 -229 -209 -250c-14 -130 -46 -392 -225 -392c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63 c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c143 0 113 269 123 356h-274v-5c-15 -131 -49 -383 -224 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 118 219 120 302l3 68c-100 34 -170 129 -170 240 c0 121 84 222 198 247c10 154 41 438 238 438c48 0 121 -25 121 -83c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-130 0 -123 -290 -126 -400h263c10 155 44 432 238 432c48 0 121 -25 121 -83zM918 200c0 83 -51 154 -122 185 c-9 -127 -16 -254 -29 -380c87 23 151 101 151 195zM696 401h-263c-10 -134 -17 -269 -30 -402h270c6 133 14 268 23 402zM332 392c-83 -26 -143 -102 -143 -192c0 -82 50 -153 120 -184c6 125 14 250 23 376'], + 0x2230: [885,442,1496,54,1422,'760 -54c-26 -133 -47 -388 -223 -388c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c141 0 112 262 123 356h-274v-5c-15 -131 -49 -383 -224 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63 c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 118 219 120 302l3 68c-100 34 -170 129 -170 240c0 121 84 222 198 247c10 154 41 438 238 438c48 0 121 -25 121 -83c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12 c-130 0 -123 -290 -126 -400h263c12 155 44 432 238 432c48 0 121 -25 121 -83c0 -20 -6 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-8 9 -22 12 -34 12c-130 0 -125 -290 -128 -400h265c11 155 44 432 238 432c48 0 121 -25 121 -83c0 -20 -6 -43 -30 -43 c-31 0 -72 30 -72 62c0 7 1 13 3 20c-7 9 -21 12 -32 12c-137 0 -123 -317 -127 -413c99 -35 171 -129 171 -240c0 -124 -91 -229 -209 -250c-15 -130 -46 -392 -225 -392c-47 0 -119 24 -119 83c0 19 5 44 30 44c30 0 71 -32 71 -63c0 -6 -2 -14 -4 -19 c8 -10 22 -13 34 -13c138 0 116 252 122 356h-275zM1282 200c0 83 -50 154 -122 185c-8 -127 -16 -254 -28 -380c86 23 150 101 150 195zM1060 401h-265c-10 -134 -17 -269 -30 -402h272c6 133 15 268 23 402zM696 401h-263c-10 -134 -17 -269 -30 -402h270 c6 134 14 268 23 402zM332 392c-83 -26 -143 -102 -143 -192c0 -82 50 -153 120 -184c6 125 14 250 23 376'], + 0x2231: [885,442,787,54,713,'304 -108c-2 -83 8 -302 -120 -302c-11 0 -25 3 -33 13c2 5 4 13 4 19c0 31 -41 63 -72 63c-24 0 -29 -25 -29 -44c0 -59 71 -83 119 -83c175 0 209 252 224 383v6l6 54c13 130 20 261 29 391c76 -23 133 -90 142 -171l-75 67l-25 -24l122 -131l117 131l-26 24l-62 -57 c-12 106 -89 190 -189 215c4 102 -8 407 126 407c12 0 25 -3 34 -12c-3 -7 -4 -13 -4 -20c0 -32 41 -62 71 -62c24 0 31 23 31 43c0 58 -73 83 -121 83c-195 0 -228 -280 -238 -435c-122 -19 -215 -123 -215 -250h53c0 97 68 177 159 197c-9 -130 -17 -258 -23 -388 c0 -20 -4 -96 -5 -117'], + 0x2232: [885,442,787,54,713,'713 264l-88 -96c-14 -118 -109 -210 -228 -221v-6c-15 -131 -49 -383 -224 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 118 219 120 302c1 21 2 42 2 62c-107 30 -186 129 -186 246 c0 127 93 231 215 250c10 155 43 435 238 435c48 0 121 -25 121 -83c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-134 0 -122 -305 -126 -407c100 -25 177 -109 189 -215l62 57zM574 221c-9 81 -66 148 -142 171 c-9 -130 -16 -261 -29 -391c83 11 151 76 168 158l-97 105l25 24zM332 397c-91 -20 -159 -100 -159 -197c0 -89 56 -163 136 -191c6 130 14 258 23 388'], + 0x2233: [885,442,787,54,713,'713 137l-26 -25l-62 57c-13 -118 -109 -211 -228 -222v-6c-15 -131 -49 -383 -224 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 118 219 120 302c1 21 2 42 2 62c-107 30 -186 129 -186 246 c0 127 93 231 215 250c10 155 43 435 238 435c48 0 121 -25 121 -83c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-134 0 -122 -305 -126 -407c100 -25 176 -109 189 -214zM574 180l-75 -68l-25 25l97 105c-16 71 -70 129 -139 150 c-9 -130 -16 -261 -29 -391c91 13 161 87 171 179zM332 397c-91 -20 -159 -100 -159 -197c0 -89 56 -163 136 -191c6 130 14 258 23 388'], + 0x2236: [518,-23,249,66,184,'184 458c0 -40 -36 -57 -58 -57s-60 18 -60 57c0 33 28 60 60 60s58 -26 58 -60zM184 80c0 -40 -36 -57 -58 -57s-60 18 -60 57c0 33 28 60 60 60s58 -26 58 -60'], + 0x2237: [518,-23,570,76,495,'495 458c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM193 458c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM495 80c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM193 80 c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60'], + 0x2238: [538,-286,668,65,604,'391 482c0 -31 -26 -56 -56 -56c-32 0 -56 25 -56 56s24 56 56 56c30 0 56 -25 56 -56zM604 286h-539v59h539v-59'], + 0x2239: [518,-23,890,65,806,'806 458c0 -40 -35 -57 -58 -57c-22 0 -59 18 -59 57c0 33 28 60 59 60c32 0 58 -26 58 -60zM806 80c0 -40 -35 -57 -58 -57c-22 0 -59 18 -59 57c0 33 28 60 59 60c32 0 58 -26 58 -60zM604 241h-539v59h539v-59'], + 0x223A: [518,-23,668,65,604,'182 458c0 -40 -35 -57 -58 -57c-22 0 -59 18 -59 57c0 33 28 60 59 60c32 0 58 -26 58 -60zM182 80c0 -40 -35 -57 -58 -57c-22 0 -59 18 -59 57c0 33 28 60 59 60c32 0 58 -26 58 -60zM604 458c0 -40 -35 -57 -58 -57c-22 0 -59 18 -59 57c0 33 28 60 59 60 c32 0 58 -26 58 -60zM604 80c0 -40 -35 -57 -58 -57c-22 0 -59 18 -59 57c0 33 28 60 59 60c32 0 58 -26 58 -60zM604 241h-539v59h539v-59'], + 0x223B: [518,-23,668,58,610,'610 344c-14 -93 -60 -158 -162 -158s-162 114 -244 114c-62 0 -100 -39 -124 -93l-22 9c24 84 74 139 166 139c94 0 164 -115 246 -115c70 0 102 53 120 114zM414 458c0 -39 -36 -57 -58 -57s-58 17 -58 57c0 34 26 60 58 60s58 -27 58 -60zM414 80 c0 -39 -36 -57 -58 -57s-58 17 -58 57c0 34 26 60 58 60s58 -27 58 -60'], + 0x223E: [422,-123,729,32,706,'45 326c43 87 162 123 255 68c71 -41 132 -201 250 -205c32 -1 49 3 74 19c61 40 37 101 20 117c-19 18 -96 30 -114 34v63c74 -9 144 -43 166 -90c9 -18 10 -25 10 -60c0 -49 -6 -64 -38 -96c-36 -36 -82 -52 -139 -48c-162 10 -193 217 -321 232 c-53 6 -99 -14 -121 -52c-18 -31 -9 -74 20 -95c20 -14 63 -28 92 -29l7 -61c-58 10 -118 36 -146 67c-30 34 -36 92 -15 136'], + 0x223F: [587,3,784,34,750,'127 539c63 65 183 69 229 -19c21 -44 71 -247 93 -343c15 -60 42 -107 72 -117c19 -6 48 -3 66 9c46 28 99 123 120 225h43c-43 -256 -135 -302 -212 -297c-111 7 -149 146 -170 272c-7 43 -37 161 -55 196c-24 46 -52 66 -87 62c-37 -5 -64 -27 -91 -78 c-15 -27 -54 -114 -59 -151h-42c21 94 59 206 93 241'], + 0x2244: [596,55,668,65,604,'604 452c-15 -93 -57 -159 -158 -159c-23 0 -46 7 -67 18l-46 -117h269v-59h-294l-74 -190h-57l75 189h-187v59h211l58 146c-35 25 -81 68 -127 68c-62 0 -98 -40 -121 -93l-21 8c23 84 71 140 162 140c49 0 94 -34 131 -62l78 196h57l-91 -227c20 -11 42 -23 65 -23 c70 0 99 55 116 115'], + 0x2247: [596,55,668,65,604,'604 62h-324l-46 -117h-57l46 117h-158v59h181l49 120h-230v59h253l38 96c-42 26 -96 83 -149 83c-62 0 -98 -39 -121 -93l-21 9c23 83 71 139 162 139c59 0 108 -47 153 -78l56 140h57l-67 -167c13 -6 27 -10 41 -10c70 0 99 54 116 114l21 -10 c-15 -92 -57 -158 -158 -158c-14 0 -28 2 -43 8l-28 -73h229v-59h-252l-49 -120h301v-59'], + 0x2249: [596,55,668,58,611,'611 452c-15 -94 -60 -159 -161 -159c-26 0 -50 8 -72 19l-43 -110c37 -25 87 -69 135 -69c69 0 102 53 118 114l22 -9c-15 -94 -60 -159 -162 -159c-51 0 -98 32 -137 63l-78 -197h-57l90 228c-19 10 -41 21 -63 21c-62 0 -100 -39 -123 -94l-22 8c24 85 74 140 165 140 c23 0 45 -8 67 -17l43 108c-35 26 -82 68 -129 68c-62 0 -100 -39 -123 -93l-21 8c24 84 73 140 164 140c49 0 96 -33 133 -61l78 195h57l-90 -225c20 -13 44 -25 69 -25c69 0 102 54 119 115'], + 0x224B: [614,-14,668,53,614,'611 597c-17 -96 -69 -155 -170 -155c-99 0 -164 99 -233 99c-57 0 -90 -35 -113 -85l-42 16c27 88 80 139 173 139c94 0 167 -100 235 -100c62 0 91 50 108 103zM614 383c-17 -96 -69 -155 -170 -155c-99 0 -164 99 -233 99c-57 0 -90 -35 -113 -85l-42 16 c27 88 80 139 173 139c94 0 167 -100 235 -100c62 0 91 50 108 103zM614 169v1c-17 -97 -69 -156 -170 -156c-99 0 -164 99 -233 99c-57 0 -90 -35 -113 -84l-42 15c27 88 80 139 173 139c94 0 167 -100 235 -100c62 0 91 50 108 104'], + 0x224C: [587,-134,668,58,610,'58 576c14 -93 60 -158 162 -158s162 114 244 114c62 0 100 -39 124 -93l22 9c-24 84 -74 139 -166 139c-94 0 -164 -115 -246 -115c-70 0 -102 53 -120 114zM604 294h-539v59h539v-59zM604 134h-539v59h539v-59'], + 0x2254: [518,-23,890,85,826,'826 347h-539v59h539v-59zM826 134h-539v59h539v-59zM202 458c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM202 80c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60'], + 0x2255: [518,-23,890,65,806,'806 458c0 -40 -35 -57 -58 -57c-22 0 -59 18 -59 57c0 33 28 60 59 60c32 0 58 -26 58 -60zM806 80c0 -40 -35 -57 -58 -57c-22 0 -59 18 -59 57c0 33 28 60 59 60c32 0 58 -26 58 -60zM604 347h-539v59h539v-59zM604 134h-539v59h539v-59'], + 0x2258: [587,-134,668,62,604,'596 444l-15 -10c-88 83 -166 98 -252 98s-163 -15 -251 -98l-16 10c25 26 60 143 268 143s241 -117 266 -143zM604 313h-539v59h539v-59zM604 134h-539v59h539v-59'], + 0x2259: [646,-134,687,65,623,'517 402h-57l-115 178l-117 -178h-57l168 244h11zM623 189h-558v-55h558v55zM623 349h-558v-55h558v55'], + 0x225A: [646,-134,687,65,623,'517 646h-57l-115 -178l-117 178h-57l168 -244h11zM623 189h-558v-55h558v55zM623 349h-558v-55h558v55'], + 0x225B: [652,-134,687,65,623,'472 558l-81 -59l31 -95l-80 59l-82 -59l31 93l-81 60h100l30 95l31 -94h101zM623 189h-558v-55h558v55zM623 349h-558v-55h558v55'], + 0x225D: [658,-134,687,65,623,'504 442v97l-24 -1v7l24 11c-1 92 27 111 80 97c6 -4 -4 2 0 0l-4 -29c-8 8 -14 10 -23 10c-20 0 -24 -10 -24 -49v-29l45 1l-3 -18h-42v-97c0 -22 4 -26 28 -26c3 -2 -7 -1 0 0v-10c-63 1 -22 1 -86 0v10c5 1 -5 0 0 0c28 0 29 4 29 26zM340 486c-9 0 9 1 0 0 c2 -31 12 -68 60 -68c15 0 23 3 45 16l4 -3c-16 -30 -42 -31 -64 -31c-30 0 -77 15 -77 82c0 79 75 86 81 86c39 0 66 -23 63 -77c-64 -6 -72 -5 -112 -5zM385 557c-17 0 -44 -10 -44 -57c32 -3 48 -2 82 -1c-2 27 -7 58 -38 58zM109 481c0 70 66 87 88 87 c13 0 22 -3 41 -11v63c0 10 -2 14 -8 14h-19v9c27 4 42 9 57 15l-1 -216c0 -22 1 -24 13 -25l16 -1v-10c-22 0 -31 2 -58 0l2 32l-38 -32c-2 -2 -10 -3 -17 -3c-61 0 -76 41 -76 78zM191 422c26 0 47 19 47 61v44c0 6 -23 25 -50 25c-31 0 -49 -22 -49 -60 c0 -40 21 -70 52 -70zM623 189h-558v-55h558v55zM623 349h-558v-55h558v55'], + 0x225E: [632,-134,687,65,623,'138 596v14c26 3 56 12 81 22v-46l33 32c9 7 23 12 41 12c34 0 54 -13 70 -46l37 34c9 7 23 12 40 12c45 0 74 -31 74 -79v-101c0 -31 1 -34 18 -35l23 -2v-14c-37 1 -37 1 -44 1c-8 0 -9 0 -39 -1v139c0 37 -18 62 -44 62c-30 0 -62 -24 -62 -46v-104 c0 -31 2 -34 18 -35l23 -2v-14c-49 1 -49 1 -61 1c-13 0 -13 0 -62 -1v14l23 2c17 1 18 4 18 35v88c0 37 -18 62 -45 62c-29 0 -61 -24 -61 -46v-104c0 -31 1 -34 18 -35l20 -2v-14c-31 1 -44 1 -58 1s-15 0 -62 -1v14l22 2c17 1 19 4 19 35v110c0 33 -2 36 -22 36h-18z M623 189h-558v-55h558v55zM623 349h-558v-55h558v55'], + 0x225F: [751,-134,687,65,623,'344 431c0 -16 -13 -28 -28 -28c-16 0 -28 12 -28 28c0 15 12 28 28 28c15 0 28 -13 28 -28zM332 513v-27c-2 1 -33 -1 -33 0c0 21 0 101 57 150c6 6 17 15 17 38c0 42 -33 46 -56 46c-36 0 -61 -16 -73 -27l-11 31c26 18 53 27 84 27c75 0 95 -44 95 -78 c0 -36 -19 -52 -28 -60c-35 -29 -52 -66 -52 -100zM623 189h-558v-55h558v55zM623 349h-558v-55h558v55'], + 0x2262: [596,55,668,65,604,'604 62h-324l-46 -117h-57l46 117h-158v59h181l49 120h-230v59h253l48 120h-301v59h324l47 117h57l-47 -117h158v-59h-181l-48 -120h229v-59h-252l-49 -120h301v-59'], + 0x2263: [566,27,668,65,604,'604 507h-539v59h539v-59zM604 329h-539v59h539v-59zM604 151h-539v59h539v-59zM604 -27h-539v59h539v-59'], + 0x226D: [596,55,668,54,616,'616 74l-15 -11c-81 91 -187 106 -267 106h-11l-89 -224h-57l87 220c-65 -9 -138 -36 -197 -102l-13 10c21 27 78 138 235 155l33 81c-183 6 -246 129 -268 158l13 11c81 -92 187 -107 267 -107h12l90 225h57l-89 -221c67 9 138 36 197 103l15 -10 c-21 -28 -79 -139 -237 -156l-32 -81c182 -6 246 -129 269 -157'], + 0x2274: [712,171,668,65,604,'604 40c0 0 -11 -158 -159 -158c-94 0 -131 79 -194 105l-64 -158h-56l66 167c-80 -8 -111 -92 -111 -93l-21 10s27 132 154 138l68 173l-222 104v21l336 159l81 204h57l-68 -171l133 63v-59l-162 -77l-86 -217l248 -116v-60l-268 127l-63 -159c73 -25 116 -107 193 -107 c94 0 118 112 118 115l20 -10v-1zM373 436l-207 -96l141 -66'], + 0x2275: [712,171,668,65,604,'604 40c0 0 -11 -158 -159 -158c-94 0 -131 79 -194 105l-64 -158h-56l66 167c-80 -8 -111 -92 -111 -93l-21 10s27 132 154 138l47 118l-201 -94v59l230 108l65 164l-295 138v60l315 -148l102 256h57l-111 -279l176 -82v-22l-268 -126l-63 -160 c73 -25 116 -107 193 -107c94 0 118 112 118 115l20 -10v-1zM503 340l-95 44l-43 -109'], + 0x2278: [712,171,668,65,604,'604 111l-357 -130l-60 -152h-56l50 128l-116 -42v53l141 52l71 176l-212 77v52l230 -83l30 75l-260 95v21l357 128l60 151h57l-51 -128l116 42v-52l-140 -51l-70 -177l210 -77v-53l-229 83l-30 -74l259 -93v-21zM398 499l-214 -77l159 -58zM485 121l-159 57l-53 -134'], + 0x2279: [712,171,668,65,604,'604 -85l-335 121l-82 -207h-56l89 226l-155 56v21l217 77l40 99l-257 -92v53l281 103l36 88l-317 114v52l335 -120l82 206h57l-90 -224l155 -55v-21l-216 -79l-40 -99l256 91v-52l-281 -101l-35 -89l316 -115v-53zM485 422l-53 19l-19 -45zM257 147l-73 -26l55 -20'], + 0x2284: [648,107,668,55,615,'615 8h-301c-18 0 -36 3 -53 6l-48 -121h-57l55 138c-93 41 -156 135 -156 240c0 140 112 262 259 262h97l46 115h57l-47 -115h148v-53h-169l-165 -417c10 -1 19 -2 28 -2h306v-53zM389 480h-80c-114 0 -202 -98 -202 -209c0 -87 54 -159 124 -192'], + 0x2285: [648,107,668,55,615,'615 271c0 -140 -113 -263 -259 -263h-97l-46 -115h-57l46 115h-147v53h168l165 417c-8 1 -19 2 -28 2h-305v53h301c18 0 36 -2 52 -6l49 121h57l-55 -137c93 -42 156 -136 156 -240zM562 271c0 84 -49 160 -122 192l-160 -402h80c102 0 202 92 202 210'], + 0x228C: [603,0,687,65,623,'451 274h-148l112 -137l-29 -30l-186 195l186 192l29 -30l-112 -137h148v-53zM623 278c0 -157 -128 -278 -278 -278c-149 0 -280 121 -280 278v325h54v-329c0 -126 104 -220 225 -220c128 0 225 108 225 220v329h54v-325'], + 0x228D: [603,0,687,65,623,'445 370c0 -56 -44 -99 -99 -99c-56 0 -100 43 -100 99c0 54 44 98 100 98c55 0 99 -44 99 -98zM623 278c0 -157 -128 -278 -278 -278c-149 0 -280 121 -280 278v325h54v-329c0 -126 104 -220 225 -220c128 0 225 108 225 220v329h54v-325'], + 0x229C: [587,46,668,18,652,'523 324h-377v56h377v-56zM523 164h-377v56h377v-56zM652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270 c147 0 269 121 269 270'], + 0x22A6: [541,0,490,65,425,'425 241h-301v-241h-59v541h59v-241h301v-59'], + 0x22A7: [620,-1,709,85,624,'144 620v-175h480v-58h-480v-152h480v-59h-480v-175h-59v619h59'], + 0x22AB: [541,0,748,64,684,'684 135h-432v-135h-58v541h58v-134h432v-59h-432v-154h432v-59zM124 0h-60v541h60v-541'], + 0x22B0: [652,118,748,75,673,'622 76c0 0 -111 136 -386 195c275 58 386 199 386 199c42 23 68 135 40 151c-19 24 -47 35 -83 31c-30 -4 -72 -45 -97 -82l49 -14c16 20 46 54 75 39c13 -6 16 -25 8 -42c0 -2 -102 -201 -539 -271v-26c437 -70 539 -270 539 -270c8 -17 6 -37 -6 -45 c-27 -15 -63 13 -75 38l-51 -9c25 -37 69 -83 99 -86c39 -9 66 3 83 30c24 22 -3 119 -42 162'], + 0x22B1: [652,118,748,75,674,'127 76c0 0 111 136 386 195c-275 58 -386 199 -386 199c-42 23 -68 135 -40 151c19 24 47 35 83 31c30 -4 72 -45 97 -82l-49 -14c-16 20 -46 54 -75 39c-13 -6 -16 -25 -8 -42c0 -2 102 -201 539 -271v-26c-437 -70 -539 -270 -539 -270c-8 -17 -6 -37 6 -45 c27 -15 63 13 75 38l51 -9c-25 -37 -69 -83 -99 -86c-39 -9 -66 3 -83 30c-24 22 3 119 42 162'], + 0x22B6: [446,-94,1363,65,1299,'1299 269c0 -97 -79 -175 -177 -175c-88 0 -161 63 -175 147h-530c-14 -84 -88 -147 -175 -147c-99 0 -177 78 -177 175c0 98 78 177 177 177c87 0 160 -63 174 -146h532c14 83 86 146 174 146c98 0 177 -79 177 -177zM366 269c0 69 -55 125 -124 125s-124 -56 -124 -125 c0 -68 55 -123 124 -123s124 55 124 123'], + 0x22B7: [446,-94,1363,65,1299,'1299 269c0 -97 -79 -175 -177 -175c-88 0 -161 63 -175 147h-530c-14 -84 -88 -147 -175 -147c-99 0 -177 78 -177 175c0 98 78 177 177 177c87 0 160 -63 174 -146h532c14 83 86 146 174 146c98 0 177 -79 177 -177zM1246 269c0 69 -55 125 -124 125 s-124 -56 -124 -125c0 -68 55 -123 124 -123s124 55 124 123'], + 0x22B9: [505,-5,687,96,598,'424 311l174 1v-79h-174v78zM310 505h80v-165c0 -4 -80 -1 -80 -1v166zM278 311l-182 1v-81h182v80zM310 198v-193h80v193h-80'], + 0x22BD: [620,78,687,65,623,'623 506l-270 -584h-18l-270 584h60l218 -479l220 479h60zM623 566h-558v54h558v-54'], + 0x22BE: [410,0,535,63,473,'473 0h-410v410h48v-114c112 -37 190 -122 216 -249l146 1v-48zM111 261v-213h181c-27 101 -90 170 -181 213'], + 0x22BF: [368,0,498,65,434,'65 63v-63h369v368h-63zM128 62l243 243v-243h-243'], + 0x22C0: [626,313,897,86,813,'813 -313h-51l-313 819l-312 -819h-51l356 939h15'], + 0x22C1: [626,313,897,86,813,'813 626h-51l-313 -819l-312 819h-51l356 -939h15'], + 0x22C2: [626,313,897,86,812,'812 265c0 204 -168 361 -363 361c-194 0 -363 -157 -363 -360v-579h53v583c0 173 145 304 310 304c175 0 310 -150 310 -303v-584h53v578'], + 0x22C3: [626,313,897,86,812,'812 48c0 -204 -168 -361 -363 -361c-194 0 -363 157 -363 360v579h53v-583c0 -173 145 -304 310 -304c175 0 310 150 310 303v584h53v-578'], + 0x22C7: [547,5,668,59,611,'401 483c0 -31 -27 -58 -59 -58c-31 0 -57 27 -57 58c0 32 26 58 57 58c32 0 59 -26 59 -58zM611 37l-43 -42l-233 234l-234 -234l-42 42l204 204h-198v59h198l-204 205l42 42l234 -234l233 234l43 -42l-206 -205h199v-59h-199zM401 58c0 -32 -27 -58 -59 -58 c-31 0 -57 26 -57 58c0 31 26 58 57 58c32 0 59 -27 59 -58'], + 0x22D5: [714,177,641,65,604,'265 406v308h-59l-2 -308h-139v-59h141l-2 -154h-139v-58h141v-312h59v312h153l-1 -312h57l2 312h128v58h-129v154h129v59h-129l1 308h-61v-308h-150zM415 347v-154h-150v154h150'], + 0x22DC: [615,74,668,65,604,'604 556l-539 -255v59l539 255v-59zM604 -74l-539 254v21l539 255v-59l-438 -205l438 -206v-60'], + 0x22DD: [615,74,668,65,604,'604 302l-539 253v60l539 -254v-59zM604 180l-539 -254v59l438 206l-438 205v60l539 -254v-22'], + 0x22E2: [712,171,668,55,615,'615 -61l-383 1l-45 -111h-56l44 110h-119v55h140l35 85h-176v522h383l44 111h57l-44 -110h120v-53h-141l-166 -414h307v-55h-328l-34 -85h362v-56zM417 549h-310v-415h145'], + 0x22E3: [712,171,668,55,615,'615 80h-328l-34 -85h361v-55h-382l-45 -111h-56l44 110h-120v55h141l35 85h-176v55h197l165 414h-362v53h383l44 111h57l-44 -110h120v-522zM562 135v414h-88l-166 -414h254'], + 0x22E4: [602,114,668,55,615,'615 -61l-271 1l-48 -54h-72l50 53h-193v55h244l49 53h71l-49 -52h219v-56zM615 80l-560 -1v523h560v-53h-508v-414h508v-55'], + 0x22E5: [602,114,668,55,615,'615 -61l-271 1l-48 -54h-72l50 53h-193v55h244l49 53h71l-49 -52h219v-56zM615 80l-560 -1v55h507v414h-507v54h560v-522'], + 0x22F0: [570,14,774,95,680,'346 318c22 22 62 22 83 1c22 -22 21 -61 -1 -83c-21 -21 -60 -20 -81 1s-22 60 -1 81zM111 83c22 22 61 22 83 1c21 -22 21 -61 -2 -84c-20 -20 -59 -20 -80 2c-22 21 -22 60 -1 81zM582 554c22 22 61 22 82 0c22 -21 22 -60 -1 -83c-20 -20 -59 -20 -81 1 c-21 22 -21 61 0 82'], + 0x22F2: [580,-22,876,53,824,'824 580v-54h-329c-104 0 -204 -84 -218 -196h547v-58h-547c13 -110 103 -196 218 -196h329v-54h-325c-147 0 -261 112 -276 248h-170v60h169c15 138 129 250 277 250h325'], + 0x22F3: [533,-8,563,55,509,'450 122h59v297h-59v-122h-341c12 100 95 183 200 183h200v53h-195c-147 0 -259 -122 -259 -262s112 -263 259 -263h195v53h-200c-94 0 -187 78 -200 183h341v-122'], + 0x22F4: [482,3,511,66,478,'66 269c0 -182 119 -272 308 -272c10 0 34 2 72 7l-8 37c-14 -2 -34 -3 -58 -3c-135 0 -198 72 -216 178l248 9l27 -119l39 24l-61 277l-44 -20l27 -115l-240 7c0 108 52 162 152 162c32 0 68 -4 116 -13l-4 39c-36 10 -84 15 -140 15c-143 0 -218 -72 -218 -213'], + 0x22F5: [618,79,563,55,509,'369 560c0 -30 -27 -58 -59 -58c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58zM509 -79h-195c-147 0 -259 123 -259 263s112 262 259 262h195v-53h-200c-105 0 -188 -83 -200 -183h383v-53h-383c13 -105 106 -183 200 -183h200v-53'], + 0x22F6: [597,55,563,55,509,'509 537h-454v60h454v-60zM509 -55h-195c-147 0 -259 123 -259 263s112 262 259 262h195v-53h-200c-105 0 -188 -83 -200 -183h383v-53h-383c13 -105 106 -183 200 -183h200v-53'], + 0x22F7: [583,42,511,66,446,'428 523h-362v60h362v-60zM284 443c-143 0 -218 -72 -218 -213c0 -182 119 -272 308 -272c10 0 34 2 72 7l-8 37c-14 -2 -34 -3 -58 -3c-135 0 -198 72 -216 178l244 9l-8 47l-240 7c0 108 52 162 152 162c32 0 68 -4 116 -13l-4 39c-36 10 -84 15 -140 15'], + 0x22F8: [597,55,563,55,509,'509 5h-454v-60h454v60zM509 597h-195c-147 0 -259 -123 -259 -263s112 -262 259 -262h195v53h-200c-105 0 -188 83 -200 183h383v53h-383c13 105 106 183 200 183h200v53'], + 0x22F9: [533,-8,563,55,509,'109 243h383v-53h-373c27 -86 107 -129 190 -129h200v-53h-195c-147 0 -259 123 -259 263s112 262 259 262h195v-53h-200c-91 0 -161 -49 -187 -131h370v-53h-383v-53'], + 0x22FA: [580,-22,876,53,824,'53 580v-54h329c104 0 204 -84 218 -196h-547v-58h547c-13 -110 -103 -196 -218 -196h-329v-54h325c147 0 261 112 276 248h170v60h-169c-15 138 -129 250 -277 250h-325'], + 0x22FB: [533,-8,563,55,509,'114 122h-59v297h59v-122h341c-12 100 -95 183 -200 183h-200v53h195c147 0 259 -122 259 -262s-112 -263 -259 -263h-195v53h200c94 0 187 78 200 183h-341v-122'], + 0x22FC: [482,3,511,66,478,'478 269c0 -182 -119 -272 -308 -272c-10 0 -34 2 -72 7l8 37c14 -2 34 -3 58 -3c135 0 198 72 216 178l-248 9l-27 -119l-39 24l61 277l44 -20l-27 -115l240 7c0 108 -52 162 -152 162c-32 0 -68 -4 -116 -13l4 39c36 10 84 15 140 15c143 0 218 -72 218 -213'], + 0x22FD: [597,55,563,55,509,'55 537h454v60h-454v-60zM55 -55h195c147 0 259 123 259 263s-112 262 -259 262h-195v-53h200c105 0 188 -83 200 -183h-383v-53h383c-13 -105 -106 -183 -200 -183h-200v-53'], + 0x22FE: [583,42,511,66,446,'84 523h362v60h-362v-60zM228 443c143 0 218 -72 218 -213c0 -182 -119 -272 -308 -272c-10 0 -34 2 -72 7l8 37c14 -2 34 -3 58 -3c135 0 198 72 216 178l-244 9l8 47l240 7c0 108 -52 162 -152 162c-32 0 -68 -4 -116 -13l4 39c36 10 84 15 140 15'], + 0x22FF: [697,0,617,46,572,'46 0h526v39h-388c-19 0 -34 16 -34 53v253h332v39h-332v232c0 26 20 42 47 42h364v39h-515v-697'], + 0x2A00: [830,316,1320,86,1235,'1235 256c0 -315 -258 -572 -575 -572s-574 257 -574 572c0 317 257 574 574 574s575 -257 575 -574zM1181 256c0 287 -235 520 -521 520s-520 -233 -520 -520c0 -286 234 -520 520 -520s521 234 521 520zM744 271c0 -47 -38 -83 -83 -83c-46 0 -83 36 -83 83 c0 45 37 83 83 83c45 0 83 -38 83 -83'], + 0x2A01: [833,316,1320,86,1235,'1235 259c0 -315 -258 -575 -575 -575s-574 260 -574 575c0 317 257 574 574 574s575 -257 575 -574zM1180 300c-29 260 -228 454 -492 479v-479h492zM629 300v479c-262 -25 -458 -217 -488 -479h488zM1181 236h-493v-496c269 24 471 226 493 496zM629 -261v497h-489 c22 -268 220 -470 489 -497'], + 0x2A02: [833,316,1320,86,1235,'1235 259c0 -315 -258 -575 -575 -575s-574 260 -574 575c0 317 257 574 574 574s575 -257 575 -574zM1181 259c0 125 -43 238 -128 342l-349 -348l341 -341c91 103 136 220 136 347zM1008 647c-106 87 -223 132 -348 132c-128 0 -245 -45 -348 -134l346 -347zM1001 -131 l-341 340l-340 -342c104 -83 217 -131 340 -131c122 0 237 48 341 133zM614 254l-346 347c-85 -104 -128 -217 -128 -342c0 -127 45 -242 133 -348'], + 0x2A03: [741,198,897,86,812,'532 282c0 -47 -38 -83 -83 -83c-46 0 -83 36 -83 83c0 45 37 83 83 83c45 0 83 -38 83 -83zM812 163c0 -204 -168 -361 -363 -361c-194 0 -363 157 -363 360v579h53v-583c0 -173 145 -304 310 -304c175 0 310 150 310 303v584h53v-578'], + 0x2A04: [741,198,897,86,812,'660 246h-186v-172h-53v172h-188v53h188v194h53v-194h186v-53zM812 163c0 -204 -168 -361 -363 -361c-194 0 -363 157 -363 360v579h53v-583c0 -173 145 -304 310 -304c175 0 310 150 310 303v584h53v-578'], + 0x2A05: [734,192,897,86,812,'812 734h-726v-926h54v873h618v-873h54v926'], + 0x2A06: [734,192,897,86,812,'812 -192h-726v926h54v-873h618v873h54v-926'], + 0x2A07: [626,313,1035,86,950,'516 322c-77 -243 -158 -455 -242 -635h-51l268 709l-42 110l-312 -819h-51l356 939h15l60 -163l62 163h15l356 -939h-51l-313 819l-42 -110l269 -709h-51'], + 0x2A08: [626,313,1035,86,950,'516 -9c-77 243 -158 455 -242 635h-51l268 -709l-42 -110l-312 819h-51l356 -939h15l60 163l62 -163h15l356 939h-51l-313 -819l-42 110l269 709h-51'], + 0x2A09: [734,192,1098,86,1013,'1013 -148l-45 -44l-419 419l-418 -419l-45 44l419 419l-419 419l45 44l418 -419l419 419l45 -44l-419 -419'], + 0x2A0A: [882,434,1158,60,1069,'662 296c0 -95 -78 -172 -173 -172s-172 77 -172 172s77 172 172 172s173 -77 173 -172zM646 296c0 86 -71 156 -157 156c-85 0 -156 -70 -156 -156s71 -156 156 -156c86 0 157 70 157 156zM1069 -102c-10 -112 -15 -221 -17 -332c-172 3 -344 6 -514 6 c-159 0 -318 -3 -478 -6v32c84 90 324 512 383 622c-109 187 -226 448 -354 622v27c294 1 589 0 881 13l6 -10c-12 -79 -15 -162 -20 -241l-5 -7h-31l-9 7c-23 150 -28 175 -193 175h-427c90 -141 179 -360 279 -496c-120 -172 -235 -428 -343 -610h604 c160 0 164 59 196 198l7 4h30'], + 0x2A0B: [885,442,850,27,764,'667 802c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-12 -164 -20 -329 -38 -492c-15 -131 -47 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19 c8 -10 22 -13 33 -13c128 0 117 219 120 302c5 180 19 359 30 538c10 149 34 455 239 455c48 0 121 -25 121 -83zM764 -13c-7 -79 -11 -157 -12 -237c-123 3 -245 5 -367 5c-113 0 -226 -2 -340 -5v23c60 65 231 367 273 445c-78 133 -161 320 -253 444v19 c210 1 420 0 628 10l5 -8c-9 -56 -11 -115 -15 -172l-3 -4h-22l-7 4c-16 107 -19 126 -137 126h-304c63 -101 127 -258 198 -355c-85 -123 -167 -306 -244 -435h430c115 0 117 42 140 140l5 4h21'], + 0x2A0C: [885,442,1860,54,1786,'1786 802c0 -20 -6 -43 -30 -43c-31 0 -72 30 -72 62c0 7 1 13 4 20c-8 9 -22 12 -33 12c-140 0 -124 -332 -130 -420c-11 -164 -20 -329 -38 -492c-14 -131 -46 -383 -222 -383c-47 0 -119 24 -119 83c0 19 6 44 30 44c30 0 71 -32 71 -63c0 -6 -2 -14 -4 -19 c9 -10 22 -13 34 -13c127 0 117 219 120 302c6 180 18 359 29 538c10 149 35 455 239 455c49 0 121 -25 121 -83zM1422 802c0 -20 -6 -43 -30 -43c-31 0 -72 30 -72 62c0 7 1 13 4 20c-8 9 -22 12 -33 12c-140 0 -124 -332 -130 -420c-12 -164 -20 -329 -38 -492 c-14 -131 -46 -383 -222 -383c-47 0 -119 24 -119 83c0 19 5 44 30 44c30 0 71 -32 71 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 34 -13c127 0 117 219 120 302c5 180 18 359 29 538c10 149 35 455 239 455c48 0 121 -25 121 -83zM1058 802c0 -20 -6 -43 -31 -43 c-30 0 -71 30 -71 62c0 7 1 13 4 20c-8 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-12 -164 -20 -329 -38 -492c-15 -131 -46 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 117 219 120 302 c5 180 19 359 30 538c10 149 35 455 239 455c48 0 121 -25 121 -83zM694 802c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-12 -164 -20 -329 -38 -492c-15 -131 -47 -383 -222 -383c-48 0 -119 24 -119 83 c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 117 219 120 302c5 180 19 359 30 538c10 149 34 455 239 455c48 0 121 -25 121 -83'], + 0x2A0D: [885,442,768,54,694,'417 193c-6 -85 -13 -168 -22 -252c-15 -131 -47 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 117 219 120 302c3 101 8 201 15 301h-219l20 58h204c3 60 6 120 10 179 c10 149 34 455 239 455c48 0 121 -25 121 -83c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-4 -60 -7 -121 -11 -182h218l-20 -58h-203zM319 193'], + 0x2A0E: [885,442,768,54,694,'573 885c-232 0 -235 -392 -243 -541h-210l-20 -58h226l-2 -57h-204l-20 -58h219l-15 -279c-3 -83 8 -302 -120 -302c-11 0 -25 3 -33 13c2 5 4 13 4 19c0 31 -41 63 -72 63c-24 0 -29 -25 -29 -44c0 -59 71 -83 119 -83c175 0 222 251 222 383c0 91 13 146 22 230h203 l20 58h-218l1 57h197l20 58h-211c2 39 2 57 4 89c6 88 -11 420 129 420c12 0 25 -3 34 -12c-3 -7 -4 -13 -4 -20c0 -32 41 -62 71 -62c24 0 31 23 31 43c0 58 -73 83 -121 83zM326 287'], + 0x2A0F: [885,442,768,54,694,'422 303l182 186l44 -42l-227 -241c-6 -91 -16 -174 -26 -265c-15 -131 -47 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 117 219 120 302c2 74 8 148 12 222l-178 -177l-42 42l224 227 c5 75 9 149 14 224c10 149 34 455 239 455c48 0 121 -25 121 -83c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-3 -42 -8 -88 -11 -130'], + 0x2A10: [885,442,768,54,694,'466 19v-56c-22 -8 -45 -14 -69 -16v-6c-15 -131 -49 -383 -224 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 118 219 120 302c1 21 2 42 2 62c-107 30 -186 129 -186 246c0 127 93 231 215 250 c10 155 43 435 238 435c48 0 121 -25 121 -83c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-134 0 -122 -305 -126 -407c36 -13 71 -35 96 -56l-26 -41c-22 19 -46 34 -74 43c-9 -130 -16 -261 -29 -391c22 3 43 9 63 18zM332 397 c-91 -20 -159 -100 -159 -197c0 -89 56 -163 136 -191c6 130 14 258 23 388'], + 0x2A11: [885,442,810,54,736,'615 267l-123 -130l25 -25l72 66c-10 -84 -85 -152 -165 -172c25 284 20 309 23 439c5 174 38 408 135 408c13 0 24 -3 34 -12c-4 -8 -13 -21 -13 -30c0 -42 54 -81 93 -81c30 0 40 31 40 56c0 71 -85 99 -143 99c-171 0 -215 -196 -237 -435c-12 -127 -17 -316 -20 -438 c-77 29 -150 104 -150 190l-53 -1c0 -116 94 -215 201 -245c-8 -207 -45 -366 -130 -366c-12 0 -24 3 -33 13c3 9 10 29 10 39c0 41 -47 76 -85 76c-32 0 -42 -31 -42 -57c0 -72 78 -103 139 -103c192 0 215 308 226 391c109 19 208 110 222 221l64 -58l26 25'], + 0x2A12: [885,442,768,54,694,'426 203c0 -33 -28 -60 -60 -60c-34 0 -60 27 -60 60c0 35 26 63 60 63c32 0 60 -29 60 -63zM334 428v2s34 455 239 455c48 0 121 -25 121 -83c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -127 -332 -127 -420v-5h164v-461h-199 l-3 -26c-15 -131 -49 -383 -224 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 118 219 120 302l5 128h237v356h-215'], + 0x2A13: [885,442,768,54,694,'426 202c0 -32 -28 -60 -60 -60c-34 0 -60 28 -60 60c0 36 26 64 60 64c32 0 60 -30 60 -64zM308 8c0 -20 -4 -96 -4 -116c-2 -84 8 -302 -120 -302c-12 0 -26 2 -34 12c2 6 4 14 4 20c0 30 -40 62 -72 62c-24 0 -28 -24 -28 -44c0 -58 70 -82 118 -82 c176 0 210 258 224 388c130 12 230 120 230 254c0 118 -82 218 -190 246c4 102 -8 406 126 406c12 0 24 -2 34 -12c-4 -6 -4 -12 -4 -20c0 -32 40 -62 70 -62c24 0 32 24 32 44c0 58 -74 83 -122 83c-194 0 -236 -339 -246 -495c86 32 240 -35 242 -192 c3 -126 -124 -240 -260 -190'], + 0x2A14: [885,442,768,54,694,'536 180c0 -34 -28 -60 -60 -60c-34 0 -60 26 -60 60s26 62 60 62c32 0 60 -28 60 -62zM308 114c28 -68 92 -114 168 -114c98 0 178 80 178 180c0 98 -80 178 -178 178c-66 0 -122 -34 -154 -86c4 18 6 38 8 62l4 96c10 148 34 455 238 455c48 0 122 -25 122 -83 c0 -20 -8 -44 -32 -44c-30 0 -70 30 -70 62c0 8 0 14 4 20c-10 10 -22 12 -34 12c-140 0 -124 -332 -130 -420v-46c14 2 28 4 44 4c116 0 210 -94 210 -210s-94 -212 -210 -212c-32 0 -64 4 -78 16l-4 -44c-14 -130 -46 -382 -222 -382c-48 0 -118 24 -118 82 c0 20 4 44 28 44c32 0 72 -32 72 -62c0 -6 -2 -14 -4 -20c8 -10 22 -12 34 -12c128 0 118 218 120 302'], + 0x2A15: [885,442,768,54,694,'428 206c0 -34 -26 -60 -60 -60s-60 26 -60 60s26 62 60 62s60 -28 60 -62zM694 802c0 -20 -8 -44 -32 -44c-30 0 -70 30 -70 62c0 8 0 14 4 20c-10 10 -22 12 -34 12c-134 0 -122 -304 -126 -406c108 -28 190 -128 190 -246c0 -134 -100 -242 -230 -254 c-14 -130 -48 -388 -224 -388c-48 0 -118 24 -118 82c0 20 4 44 28 44c32 0 72 -32 72 -62c0 -6 -2 -14 -4 -20c8 -10 22 -12 34 -12c128 0 118 218 120 302c0 20 2 42 2 62c-108 30 -186 128 -186 246c0 126 92 230 214 250c10 154 44 435 238 435c48 0 122 -25 122 -83z M308 8c148 -44 266 68 266 192c0 116 -104 222 -242 196c-92 -16 -160 -100 -160 -196c0 -90 55 -167 136 -192'], + 0x2A16: [885,442,768,54,694,'694 802c0 -20 -7 -44 -31 -44c-30 0 -71 30 -71 62c0 8 1 14 4 20c-9 10 -22 12 -34 12c-140 0 -127 -332 -127 -420v-4h164v-462h-199l-3 -26c-15 -130 -49 -382 -224 -382c-48 0 -119 24 -119 82c0 20 5 44 29 44c31 0 72 -32 72 -62c0 -6 -2 -14 -4 -20 c8 -10 22 -12 33 -12c128 0 118 218 120 302l3 74h-169v462h196v2c0 148 34 455 239 455c48 0 121 -25 121 -83zM546 20v356h-115c-8 -120 -15 -238 -26 -356h141zM331 376h-140v-356h118c6 118 13 236 22 356'], + 0x2A17: [885,442,1005,52,936,'546 140h264c42 0 66 -24 66 -68s-58 -72 -102 -72v-54c70 0 162 58 162 126c0 118 -102 126 -192 126h-196c4 78 10 158 16 234c6 88 -10 420 130 420c12 0 24 -2 34 -12c-4 -6 -4 -12 -4 -20c0 -32 40 -62 70 -62c24 0 32 24 32 44c0 58 -74 83 -122 83 c-204 0 -230 -307 -238 -455l-14 -232h-286l124 150l-32 36l-206 -216l206 -214l32 32l-124 154h284c-4 -82 -12 -166 -14 -248c-4 -84 8 -302 -120 -302c-12 0 -26 2 -34 12c2 6 4 14 4 20c0 30 -40 62 -72 62c-24 0 -28 -24 -28 -44c0 -58 70 -82 118 -82 c176 0 208 252 222 382c8 66 14 132 20 200'], + 0x2A18: [885,442,768,54,694,'410 121c-19 -280 -47 -563 -237 -563c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 117 219 120 302c2 73 17 159 21 229l-189 -193l-42 42l226 229v13l-226 226l42 42l189 -186l9 136 c10 149 34 455 239 455c48 0 121 -25 121 -83c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-3 -44 -7 -89 -10 -134l181 181l42 -42l-228 -226v-12l228 -230l-42 -42'], + 0x2A19: [885,442,768,54,694,'422 376c72 -8 162 -93 162 -182v-278h49v276c-1 112 -92 208 -199 232c6 88 -12 428 128 428c12 0 25 -2 34 -12c-3 -6 -4 -12 -4 -20c0 -32 41 -62 71 -62c24 0 31 24 31 44c0 58 -73 83 -121 83c-205 0 -229 -313 -239 -463c-113 -22 -204 -114 -204 -230v-276h49v278 c-1 88 69 162 153 182l-28 -484c-3 -84 8 -302 -120 -302c-11 0 -25 2 -33 12c2 6 4 14 4 20c0 30 -41 62 -72 62c-24 0 -29 -24 -29 -44c0 -58 71 -82 119 -82c175 0 214 230 222 362'], + 0x2A1A: [885,442,768,54,694,'326 66c-72 9 -162 94 -162 182v279h-49v-276c1 -113 92 -208 199 -233c-6 -88 12 -428 -128 -428c-12 0 -25 3 -34 12c3 7 4 13 4 20c0 32 -41 62 -71 62c-24 0 -31 -23 -31 -43c0 -58 73 -83 121 -83c205 0 229 313 239 462c113 22 204 114 204 231v276h-49v-279 c1 -88 -69 -161 -153 -182l28 485c3 83 -8 302 120 302c11 0 25 -3 33 -13c-2 -5 -4 -13 -4 -19c0 -31 41 -63 72 -63c24 0 29 25 29 44c0 59 -71 83 -119 83c-175 0 -214 -230 -222 -362'], + 0x2A1B: [994,442,775,54,701,'701 935h-647v59h647v-59zM699 802c0 -20 -7 -43 -31 -43c-30 0 -71 30 -71 62c0 7 1 13 4 20c-9 9 -22 12 -34 12c-140 0 -123 -332 -129 -420c-12 -164 -20 -329 -38 -492c-15 -131 -47 -383 -222 -383c-48 0 -119 24 -119 83c0 19 5 44 29 44c31 0 72 -32 72 -63 c0 -6 -2 -14 -4 -19c8 -10 22 -13 33 -13c128 0 117 219 120 302c5 180 19 359 30 538c10 149 34 455 239 455c48 0 121 -25 121 -83'], + 0x2A1C: [994,442,775,54,701,'54 -383h647v-59h-647v59zM56 -250c0 20 7 43 31 43c30 0 71 -30 71 -62c0 -7 -1 -13 -4 -20c9 -9 22 -12 34 -12c140 0 123 332 129 420c12 164 20 329 38 492c15 131 47 383 222 383c48 0 119 -24 119 -83c0 -19 -5 -44 -29 -44c-31 0 -72 32 -72 63c0 6 2 14 4 19 c-8 10 -22 13 -33 13c-128 0 -117 -219 -120 -302c-5 -180 -19 -359 -30 -538c-10 -149 -34 -455 -239 -455c-48 0 -121 25 -121 83'], + 0x2A1D: [515,-23,758,65,694,'694 23l-316 210l-313 -210v492l313 -208l316 208v-492zM629 141v260l-193 -130zM322 271l-194 130v-260'], + 0x2A1E: [535,-6,668,65,604,'604 6l-539 254v21l539 254v-529zM552 89v363l-386 -181'], + 0x2A1F: [703,355,552,16,521,'421 236c-47 -16 -79 -26 -172 -53c-12 -132 -56 -246 -157 -414l24 -20l72 34c142 184 208 294 257 428zM352 659c-53 0 -100 -49 -100 -101c0 -53 47 -102 98 -102c56 0 105 48 105 100c0 54 -49 103 -103 103zM486 340l35 -35c-70 -192 -165 -350 -367 -612l-103 -48 l-35 28c145 240 208 402 225 592c133 38 177 53 245 75zM351 703c77 0 147 -70 147 -148c0 -75 -70 -142 -150 -142c-72 0 -140 70 -140 145s68 145 143 145'], + 0x2A20: [556,10,826,48,770,'269 -10v64l429 217l-429 221v64l501 -254v-58zM48 -10v64l429 217l-429 221v64l501 -254v-58'], + 0x2A21: [714,171,524,233,478,'478 481l-35 -33l-151 127v-746h-59v885'], + 0x2A22: [672,129,668,65,604,'604 112h-240v-241h-59v241h-240v59h240v238h59v-238h240v-59zM336 672c54 0 98 -45 98 -100c0 -56 -44 -100 -100 -100s-100 44 -100 101c0 55 46 99 102 99zM336 636c-38 0 -64 -25 -64 -63c0 -40 24 -65 62 -65s62 26 62 64s-24 64 -60 64'], + 0x2A23: [609,68,668,65,604,'604 173h-240v-241h-59v241h-240v59h240v238h59v-238h240v-59zM304 609h62l124 -167h-34l-122 103l-120 -103h-36'], + 0x2A24: [631,88,668,65,604,'604 153h-240v-241h-59v241h-240v59h240v238h59v-238h240v-59zM276 626c52 0 98 -45 136 -45c28 0 44 13 58 50h30c-4 -58 -52 -105 -110 -105c-54 0 -100 45 -138 45c-24 0 -40 -14 -54 -45h-28c14 65 50 100 106 100'], + 0x2A25: [538,180,668,65,604,'392 -122c0 30 -27 58 -59 58c-31 0 -57 -28 -57 -58s27 -58 57 -58c31 0 59 28 59 58zM604 297h-240v241h-59v-241h-240v-59h240v-238h59v238h240v59'], + 0x2A26: [538,178,668,65,604,'604 297h-240v241h-59v-241h-240v-59h240v-238h59v238h240v59zM394 -173c-52 0 -98 45 -136 45c-28 0 -44 -13 -58 -50h-30c4 58 52 105 110 105c54 0 100 -45 138 -45c24 0 40 14 54 45h28c-14 -65 -50 -100 -106 -100'], + 0x2A27: [538,95,668,65,604,'604 241h-240v-241h-59v241h-240v59h240v238h59v-238h240v-59zM404 -84l76 80c49 53 68 85 68 118c0 38 -24 61 -63 61c-29 0 -45 -10 -52 -37l-5 -20h-13l8 60c21 23 42 31 74 31c56 0 90 -31 90 -81c0 -34 -14 -58 -56 -103l-80 -85c81 3 102 3 153 5 c0 -6 -2 -30 0 -40c-16 0 -117 2 -200 0v11'], + 0x2A28: [538,0,668,65,604,'364 241h240v59h-240v238h-59v-238h-240v-59h240v1l-105 -186h105v-56h59v56h105'], + 0x2A29: [570,-233,605,51,555,'238 325v29c58 16 78 55 78 93c0 40 -26 60 -74 60v16c0 7 2 13 8 17c16 14 46 30 62 30c56 0 70 -54 70 -91c0 -83 -78 -148 -144 -154zM555 233h-504v56h504v-56'], + 0x2A2A: [289,-74,605,51,555,'304 174c29 0 49 -21 49 -50c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50zM555 233h-504v56h504v-56'], + 0x2A2B: [492,-30,605,51,555,'51 233v56h504v-56h-504zM109 492c31 0 58 -28 58 -59s-27 -57 -59 -57c-30 0 -57 27 -57 58c0 30 27 58 58 58zM497 146c31 0 58 -28 58 -59s-27 -57 -59 -57c-30 0 -57 27 -57 58c0 30 27 58 58 58'], + 0x2A2C: [492,-30,605,51,555,'555 233v56h-504v-56h504zM497 492c-31 0 -58 -28 -58 -59s27 -57 59 -57c30 0 57 27 57 58c0 30 -27 58 -58 58zM109 146c-31 0 -58 -28 -58 -59s27 -57 59 -57c30 0 57 27 57 58c0 30 -27 58 -58 58'], + 0x2A2D: [587,52,602,26,571,'115 247h205v-204h46v204h205v48h-205v203h-46v-203h-205v-48zM344 -52c-178 2 -318 149 -318 323c0 168 148 316 318 316v-48c-144 2 -286 -122 -270 -292c12 -130 136 -233 270 -243v-56'], + 0x2A2E: [587,52,602,26,571,'482 247h-205v-204h-46v204h-205v48h205v203h46v-203h205v-48zM253 -52c178 2 318 149 318 323c0 168 -148 316 -318 316v-48c144 2 286 -122 270 -292c-12 -130 -136 -233 -270 -243v-56'], + 0x2A2F: [489,-53,554,59,496,'496 107l-55 -54l-163 164l-165 -164l-53 54l164 164l-165 164l54 54l165 -165l163 165l54 -54l-165 -164'], + 0x2A30: [688,5,668,59,611,'334 688c-31 0 -58 -28 -58 -59s27 -57 59 -57c30 0 57 27 57 58c0 30 -27 58 -58 58zM611 37l-43 -42l-233 234l-234 -234l-42 42l234 234l-234 234l42 42l234 -234l233 234l43 -42l-235 -234'], + 0x2A31: [545,142,668,59,611,'610 -142h-550v59h550v-59zM611 35l-43 -42l-233 234l-234 -234l-42 42l234 234l-234 234l42 42l234 -234l233 234l43 -42l-235 -234'], + 0x2A32: [547,5,760,58,702,'58 -5l276 276l-234 234l42 42l234 -234l232 234l44 -42l-236 -234l286 -276h-644zM568 38l-192 191l-190 -191h382'], + 0x2A33: [554,11,671,53,619,'197 232l-100 -99l-42 42l99 99l-101 101l40 39l100 -100l101 100l-101 101l40 39l100 -100l101 100l42 -42l-100 -101l100 -100l101 100l42 -42l-100 -101l100 -100l-39 -40l-101 101l-100 -101l100 -100l-39 -39l-100 101l-100 -100l-42 42l99 100zM236 271l100 -100 l101 100l-101 101'], + 0x2A34: [587,52,603,54,550,'192 413l146 -143l-144 -144l32 -33l144 145l146 -145l34 34l-146 145l144 143l-32 33l-146 -144l-144 145zM372 -52c-178 2 -318 149 -318 323c0 168 148 316 318 316v-48c-144 2 -286 -122 -270 -292c12 -130 136 -233 270 -243v-56'], + 0x2A35: [587,52,603,54,550,'412 413l-146 -143l144 -144l-32 -33l-146 145l-144 -145l-34 34l146 145l-144 143l32 33l144 -144l146 145zM232 -52c178 2 318 149 318 323c0 168 -148 316 -318 316v-48c144 2 286 -122 270 -292c-12 -130 -136 -233 -270 -243v-56'], + 0x2A36: [634,192,668,18,652,'304 634h62l125 -167h-35l-121 103l-121 -103h-35zM515 267l-146 -143l144 -144l-32 -33l-146 145l-144 -145l-34 34l146 145l-144 143l32 33l144 -144l146 145zM652 125c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316 c174 0 317 -142 317 -316zM604 125c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 121 269 270'], + 0x2A37: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 121 269 270zM470 377l-110 -107l108 -108l-24 -25 l-109 109l-108 -109l-25 26l109 109l-108 107l24 25l108 -108l109 108zM573 271c0 -131 -107 -238 -238 -238s-238 107 -238 238c0 130 107 237 238 237s238 -107 238 -237zM527 271c0 111 -82 192 -192 192c-112 0 -192 -81 -192 -192c0 -112 80 -193 192 -193 c110 0 192 81 192 193'], + 0x2A38: [587,46,668,18,652,'386 462c0 -27 -24 -52 -53 -52c-28 0 -51 25 -51 52s24 52 51 52c28 0 53 -25 53 -52zM577 244h-485v53h485v-53zM386 79c0 -27 -24 -52 -53 -52c-28 0 -51 25 -51 52s24 52 51 52c28 0 53 -25 53 -52zM652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317 c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 121 269 270'], + 0x2A39: [559,18,666,44,623,'318 193v102h28v-102h102v-28h-102v-103h-28v103h-102v28h102zM623 -18h-579l290 577zM551 26l-217 432l-217 -432h434'], + 0x2A3A: [559,18,666,44,623,'216 193h232v-39h-232v39zM623 -18h-579l290 577zM551 26l-217 432l-217 -432h434'], + 0x2A3B: [559,18,666,44,623,'427 87l-18 -18l-75 75l-75 -75l-18 18l75 75l-75 75l18 18l75 -75l75 75l18 -18l-75 -75zM623 -18h-579l290 577zM551 26l-217 432l-217 -432h434'], + 0x2A3C: [360,-88,672,65,608,'608 360h-57v-211h-486v-61h543v272'], + 0x2A3D: [360,-88,672,65,608,'65 360h57v-211h486v-61h-543v272'], + 0x2A3E: [703,166,396,54,344,'198 659c-53 0 -100 -49 -100 -101c0 -53 47 -102 98 -102c56 0 105 48 105 100c0 54 -49 103 -103 103zM197 703c77 0 147 -70 147 -148c0 -75 -70 -142 -150 -142c-72 0 -140 70 -140 145s68 145 143 145zM198 145c17 0 19 7 36 7c10 0 20 -8 20 -21c31 4 47 17 57 34 c0 122 -87 139 -118 139c-15 0 -85 -3 -85 -84c0 -54 43 -75 90 -75zM234 124c-19 0 -26 -10 -52 -10c-66 0 -128 30 -128 106c0 116 100 120 122 120c44 0 168 -24 168 -198c0 -148 -166 -284 -234 -308l-18 40c136 86 170 180 170 220c0 18 -14 30 -28 30'], + 0x2A40: [573,30,687,65,623,'345 357c-31 0 -58 -28 -58 -59s27 -57 59 -57c30 0 57 27 57 58c0 30 -27 58 -58 58zM623 -30h-54v329c0 112 -97 220 -225 220c-121 0 -225 -94 -225 -220v-329h-54v325c0 157 131 278 280 278c150 0 278 -121 278 -278v-325'], + 0x2A41: [573,30,687,65,623,'535 203h-378v56h378v-56zM623 248c0 -157 -128 -278 -278 -278c-149 0 -280 121 -280 278v325h54v-329c0 -126 104 -220 225 -220c128 0 225 108 225 220v329h54v-325'], + 0x2A42: [634,91,687,65,623,'569 578h-450v56h450v-56zM623 187c0 -157 -128 -278 -278 -278c-149 0 -280 121 -280 278v325h54v-329c0 -126 104 -220 225 -220c128 0 225 108 225 220v329h54v-325'], + 0x2A43: [634,91,687,65,623,'569 578h-450v56h450v-56zM623 234c0 157 -128 278 -278 278c-149 0 -280 -121 -280 -278v-325h54v329c0 126 104 220 225 220c128 0 225 -108 225 -220v-329h54v325'], + 0x2A44: [578,25,687,65,623,'489 -25h-40l-105 230l-105 -230h-40l141 293h9zM623 -25h-54v329c0 112 -97 220 -225 220c-121 0 -225 -94 -225 -220v-329h-54v325c0 157 131 278 280 278c150 0 278 -121 278 -278v-325'], + 0x2A45: [578,25,687,65,623,'489 578h-40l-105 -230l-105 230h-40l141 -293h9zM623 578h-54v-329c0 -112 -97 -220 -225 -220c-121 0 -225 94 -225 220v329h-54v-325c0 -157 131 -278 280 -278c150 0 278 121 278 278v325'], + 0x2A46: [622,80,407,64,344,'344 459c0 -79 -64 -139 -140 -139c-74 0 -140 60 -140 139v163h28v-165c0 -63 52 -110 112 -110c64 0 112 54 112 110v165h28v-163zM344 -80h-28v164c0 56 -48 110 -112 110c-60 0 -112 -46 -112 -110v-164h-28v162c0 79 66 140 140 140c76 0 140 -61 140 -140v-162'], + 0x2A47: [622,80,407,64,344,'344 483c0 79 -64 139 -140 139c-74 0 -140 -60 -140 -139v-163h28v165c0 63 52 110 112 110c64 0 112 -54 112 -110v-165h28v163zM344 222h-28v-164c0 -56 -48 -110 -112 -110c-60 0 -112 46 -112 110v164h-28v-162c0 -79 66 -140 140 -140c76 0 140 61 140 140v162'], + 0x2A48: [622,80,407,64,344,'343 256h-278v30h278v-30zM344 459c0 -79 -64 -139 -140 -139c-74 0 -140 60 -140 139v163h28v-165c0 -63 52 -110 112 -110c64 0 112 54 112 110v165h28v-163zM344 -80h-28v164c0 56 -48 110 -112 110c-60 0 -112 -46 -112 -110v-164h-28v162c0 79 66 140 140 140 c76 0 140 -61 140 -140v-162'], + 0x2A49: [622,80,407,64,344,'343 256h-278v30h278v-30zM344 483c0 79 -64 139 -140 139c-74 0 -140 -60 -140 -139v-163h28v165c0 63 52 110 112 110c64 0 112 -54 112 -110v-165h28v163zM344 222h-28v-164c0 -56 -48 -110 -112 -110c-60 0 -112 46 -112 110v164h-28v-162c0 -79 66 -140 140 -140 c76 0 140 61 140 140v162'], + 0x2A4A: [422,-120,659,64,596,'316 422v-164c0 -56 -48 -110 -112 -110c-60 0 -112 46 -112 110v164h-28v-162c0 -79 66 -140 140 -140c47 0 93 25 118 65l8 14l6 -11c24 -45 81 -68 120 -68c76 0 140 61 140 140v162h-28v-164c0 -56 -48 -110 -112 -110c-60 0 -112 46 -112 110v164h-28'], + 0x2A4B: [422,-120,659,64,596,'316 120v164c0 56 -48 110 -112 110c-60 0 -112 -46 -112 -110v-164h-28v162c0 79 66 140 140 140c47 0 93 -25 118 -65l8 -14l6 11c24 45 81 68 120 68c76 0 140 -61 140 -140v-162h-28v164c0 56 -48 110 -112 110c-60 0 -112 -46 -112 -110v-164h-28'], + 0x2A4C: [601,58,779,64,716,'616 601h-450l-102 -8v-48h48v-325c0 -157 132 -278 280 -278c150 0 278 121 278 278v325c52 0 -14 1 46 -1v51zM616 545v-329c0 -112 -96 -220 -224 -220c-122 0 -226 94 -226 220v329h450'], + 0x2A4D: [601,58,779,64,716,'616 -58h-450l-102 8v48h48v325c0 157 132 278 280 278c150 0 278 -121 278 -278v-325c52 0 -14 -1 46 1v-51zM616 -2v329c0 112 -96 220 -224 220c-122 0 -226 -94 -226 -220v-329h450'], + 0x2A4E: [559,17,687,65,623,'515 -15h-54v412h-234v-412h-54v466h342v-466zM623 -17h-54v522h-450v-522h-54v576h558v-576'], + 0x2A4F: [559,17,687,65,623,'515 557h-54v-412h-234v412h-54v-466h342v466zM623 559h-54v-522h-450v522h-54v-576h558v576'], + 0x2A50: [601,58,779,64,716,'306 247l-61 -60l-25 25l60 60l-62 61l25 24l60 -61l62 61l-62 61l25 24l60 -61l61 61l26 -26l-61 -61l61 -61l61 61l26 -25l-61 -62l61 -60l-24 -25l-61 62l-61 -62l61 -60l-24 -24l-61 61l-60 -60l-26 25l60 61zM329 270l61 -60l61 60l-61 61zM616 601l100 -6v-51 c-60 2 6 1 -46 1v-325c0 -157 -128 -278 -278 -278c-148 0 -280 121 -280 278v325h-48v48l102 8h450zM616 545h-450v-329c0 -126 104 -220 226 -220c128 0 224 108 224 220v329'], + 0x2A51: [570,29,537,57,481,'269 570c-31 0 -58 -28 -58 -59s27 -57 59 -57c30 0 57 27 57 58c0 30 -27 58 -58 58zM481 -29h-46l-165 365l-167 -365h-46l206 444h14'], + 0x2A52: [570,29,537,57,481,'269 570c-31 0 -58 -28 -58 -59s27 -57 59 -57c30 0 57 27 57 58c0 30 -27 58 -58 58zM481 415h-46l-165 -365l-167 365h-46l206 -444h14'], + 0x2A53: [563,22,687,65,623,'503 -22h-36l-122 288l-129 -288h-36l161 351h8zM623 -22h-60l-218 480l-220 -480h-60l271 585h18'], + 0x2A54: [563,22,687,65,623,'503 563h-36l-122 -288l-129 288h-36l161 -351h8zM623 563h-60l-218 -480l-220 480h-60l271 -585h18'], + 0x2A55: [563,22,836,65,772,'421 297l142 -319h60l-175 381l46 99l218 -480h60l-269 585h-18l-64 -146l-67 146h-18l-271 -585h60l220 480l45 -99l-176 -381h60'], + 0x2A56: [563,22,836,65,772,'421 244l142 319h60l-175 -381l46 -99l218 480h60l-269 -585h-18l-64 146l-67 -146h-18l-271 585h60l220 -480l45 99l-176 381h60'], + 0x2A57: [598,42,670,66,605,'605 454l-58 15l-335 -407l-88 521l-58 15l110 -635l18 -5'], + 0x2A58: [598,41,669,66,604,'604 -41l-57 15l-87 520l-337 -406l-57 15l413 495l17 -5'], + 0x2A59: [621,79,687,65,623,'403 271l-58 130l-60 -130l60 -130zM434 211l-80 -175h-18l-80 175l-131 -290h-60l161 350l-161 350h60l131 -290l80 175h18l79 -175l130 290h60l-161 -350l161 -350h-60'], + 0x2A5A: [563,22,687,65,623,'375 396v-418h-60v418l-190 -418h-60l271 585h18l269 -585h-60'], + 0x2A5B: [563,22,687,65,623,'375 145v418h-60v-418l-190 418h-60l271 -585h18l269 585h-60'], + 0x2A5C: [563,22,687,65,623,'476 172l-131 286l-136 -286h267zM561 112l62 -134h-60l-60 134h-317l-61 -134h-60l62 134h-62v60h89l182 391h18l180 -391h89v-60h-62'], + 0x2A5D: [563,22,687,65,623,'476 369h-267l136 -286zM561 429h62v-60h-89l-180 -391h-18l-182 391h-89v60h62l-62 134h60l61 -134h317l60 134h60'], + 0x2A5F: [720,27,687,65,623,'623 -27h-558v55h558v-55zM623 136h-60l-218 479l-220 -479h-60l271 584h18'], + 0x2A60: [640,267,687,65,623,'623 -107h-558v55h558v-55zM623 -267h-558v55h558v-55zM623 56h-60l-218 479l-220 -479h-60l271 584h18'], + 0x2A61: [497,-45,687,65,623,'623 45h-558v59h558v-59zM503 497h-35l-123 -273l-125 273h-35l154 -333h11'], + 0x2A62: [636,262,687,65,623,'623 581h-558v55h558v-55zM623 421h-558v55h558v-55zM623 322h-60l-218 -479l-220 479h-60l271 -584h18'], + 0x2A63: [645,262,687,65,623,'623 -102h-558v55h558v-55zM623 -262h-558v55h558v-55zM623 645h-60l-218 -479l-220 479h-60l271 -584h18'], + 0x2A64: [535,-6,668,65,604,'604 6l-539 253v21l539 255v-529zM191 243l344 -154l1 154h-345zM192 296h344l-1 156'], + 0x2A65: [535,-6,668,65,604,'65 6l539 253v21l-539 255v-529zM478 243l-344 -154l-1 154h345zM477 296h-344l1 156'], + 0x2A66: [445,19,668,65,604,'604 386h-539v59h539v-59zM604 173h-539v59h539v-59zM391 37c0 -32 -25 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56c31 0 56 -26 56 -56'], + 0x2A67: [571,29,668,65,604,'391 515c0 -32 -25 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56c31 0 56 -26 56 -56zM604 329h-539v59h539v-59zM604 150h-539v59h539v-59zM604 -29h-539v59h539v-59'], + 0x2A68: [540,0,668,65,604,'294 300h80v121h-80v-121zM374 121v120h-80v-120h80zM434 62v-62h-60v62h-80v-62h-58v62h-171v59h171v120h-171v59h171v120h-171v59h171v61h58v-61h80v61h60v-61h170v-59h-170v-120h170v-59h-170v-120h170v-59h-170'], + 0x2A69: [540,0,668,65,604,'225 300h80v120h-80v-120zM363 300h80v121h-80v-121zM443 121v120h-80v-120h80zM225 62v-62h-59v62h-101v59h100v120h-100v59h101v120h-101v59h101v60h59v-60h80v61h58v-61h80v61h60v-61h101v-59h-101v-120h101v-59h-101v-120h101v-59h-101v-62h-60v62h-80v-62h-58v62 h-80zM225 121h80v120h-80v-120'], + 0x2A6A: [429,-113,668,58,611,'391 373c0 -32 -25 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56c31 0 56 -26 56 -56zM611 271c-15 -93 -61 -158 -163 -158s-163 114 -245 114c-62 0 -100 -39 -124 -93l-21 9c24 84 74 139 165 139c95 0 164 -115 247 -115c69 0 103 53 120 114'], + 0x2A6B: [500,-41,668,58,611,'560 444c0 -32 -25 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56c31 0 56 -26 56 -56zM221 97c0 -32 -25 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56c31 0 56 -26 56 -56zM611 344c-15 -93 -61 -158 -163 -158s-163 114 -245 114c-62 0 -100 -39 -124 -93 l-21 9c24 84 74 139 165 139c95 0 164 -115 247 -115c69 0 103 53 120 114'], + 0x2A6C: [514,-14,668,56,614,'614 169v1c-17 -97 -69 -156 -170 -156c-99 0 -164 99 -233 99c-57 0 -90 -35 -113 -84l-42 15c27 88 80 139 173 139c94 0 167 -100 235 -100c62 0 91 50 108 104zM614 497c-17 -96 -69 -155 -170 -155c-99 0 -164 99 -233 99c-57 0 -90 -35 -113 -85l-42 16 c27 88 80 139 173 139c94 0 167 -100 235 -100c62 0 91 50 108 103zM604 233h-539v59h539v-59'], + 0x2A6D: [581,39,668,65,604,'391 525c0 -32 -25 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56c31 0 56 -26 56 -56zM604 422c-15 -92 -57 -158 -158 -158c-99 0 -161 114 -239 114c-62 0 -98 -39 -121 -93l-21 9c23 83 71 139 162 139c92 0 162 -115 240 -115c69 0 99 54 116 114zM604 140 h-539v59h539v-59zM604 -39h-539v59h539v-59'], + 0x2A6E: [530,-12,668,65,604,'442 397l-6 -5l-91 13l45 -80v-7l-45 -17l-6 3l-12 93l-70 -58h-7l-23 34l3 6l86 36l-86 42l-2 6l29 35h7l62 -65l17 94l6 3l41 -13l2 -9l-45 -83l91 16l4 -3v-41zM604 191h-539v59h539v-59zM604 12h-539v59h539v-59'], + 0x2A6F: [649,-51,668,58,611,'304 649h62l124 -167h-34l-122 103l-120 -103h-36zM611 424c-15 -94 -60 -159 -161 -159c-103 0 -164 114 -246 114c-62 0 -100 -39 -123 -93l-21 8c24 84 73 140 164 140c95 0 164 -116 247 -116c69 0 102 54 119 115zM610 209v1c-15 -94 -60 -159 -162 -159 s-163 115 -245 115c-62 0 -100 -39 -123 -94l-22 8c24 85 74 140 165 140c95 0 164 -115 247 -115c69 0 102 53 118 114'], + 0x2A70: [596,55,668,65,604,'604 -55h-539v59h539v-59zM604 585c-15 -91 -57 -158 -158 -158c-99 0 -159 114 -239 114c-61 0 -98 -40 -121 -93l-21 9c23 83 71 139 162 139c93 0 160 -115 240 -115c69 0 100 55 116 114zM604 406c-15 -92 -57 -158 -158 -158c-99 0 -161 114 -239 114 c-62 0 -98 -39 -121 -93l-21 9c23 83 71 139 162 139c92 0 162 -115 240 -115c69 0 99 54 116 114zM604 124h-539v59h539v-59'], + 0x2A71: [667,126,668,66,604,'604 429h-538v59h538v-59zM604 608h-538v59h538v-59zM306 156v223h56v-223h224v-56h-224v-226h-56v226h-224v56h224'], + 0x2A72: [667,126,668,66,604,'604 112h-538v-59h538v59zM604 -67h-538v-59h538v59zM306 385v-223h56v223h224v56h-224v226h-56v-226h-224v-56h224'], + 0x2A73: [507,-35,668,65,604,'604 193c-15 -92 -57 -158 -158 -158c-99 0 -161 114 -239 114c-62 0 -98 -39 -121 -93l-21 9c23 83 71 139 162 139c92 0 162 -115 240 -115c69 0 99 54 116 114zM604 328h-539v-59h539v59zM604 507h-539v-59h539v59'], + 0x2A74: [518,-23,1092,85,1028,'1028 347h-539v59h539v-59zM1028 134h-539v59h539v-59zM404 458c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM202 458c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM404 80c0 -39 -37 -57 -59 -57 s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM202 80c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60'], + 0x2A75: [406,-134,1347,85,1263,'624 347h-539v59h539v-59zM624 134h-539v59h539v-59zM1263 347h-539v59h539v-59zM1263 134h-539v59h539v-59'], + 0x2A76: [406,-134,1986,85,1902,'1902 347h-539v59h539v-59zM1902 134h-539v59h539v-59zM624 347h-539v59h539v-59zM624 134h-539v59h539v-59zM1263 347h-539v59h539v-59zM1263 134h-539v59h539v-59'], + 0x2A77: [599,58,668,65,604,'507 -2c0 -32 -25 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56c31 0 56 -26 56 -56zM507 543c0 -31 -26 -56 -56 -56c-32 0 -56 25 -56 56s24 56 56 56c30 0 56 -25 56 -56zM275 -2c0 -32 -25 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 56 56 56 c31 0 56 -26 56 -56zM275 543c0 -31 -26 -56 -56 -56c-32 0 -56 25 -56 56s24 56 56 56c30 0 56 -25 56 -56zM604 347h-539v59h539v-59zM604 134h-539v59h539v-59'], + 0x2A78: [567,25,668,65,604,'604 519c0 -27 -22 -48 -48 -48c-28 0 -48 21 -48 48c0 26 20 48 48 48c26 0 48 -22 48 -48zM456 519c0 -27 -21 -48 -48 -48s-48 21 -48 48c0 26 21 48 48 48s48 -22 48 -48zM162 519c0 -27 -21 -48 -48 -48s-48 21 -48 48c0 26 21 48 48 48s48 -22 48 -48zM308 519 c0 -27 -21 -48 -48 -48s-48 21 -48 48c0 26 21 48 48 48s48 -22 48 -48zM604 333h-539v59h539v-59zM604 154h-539v59h539v-59zM604 -25h-539v59h539v-59'], + 0x2A79: [535,-5,668,65,604,'559 271c0 -48 -39 -84 -84 -84c-48 0 -84 36 -84 84c0 45 36 83 84 83c45 0 84 -38 84 -83zM531 271c0 30 -26 55 -56 55c-32 0 -56 -25 -56 -55c0 -32 24 -56 56 -56c30 0 56 24 56 56zM604 5l-539 255v21l539 254v-59l-438 -205l438 -207v-59'], + 0x2A7A: [535,-5,668,65,604,'110 271c0 -48 39 -84 84 -84c48 0 84 36 84 84c0 45 -36 83 -84 83c-45 0 -84 -38 -84 -83zM138 271c0 30 26 55 56 55c32 0 56 -25 56 -55c0 -32 -24 -56 -56 -56c-30 0 -56 24 -56 56zM65 5l539 255v21l-539 254v-59l438 -205l-438 -207v-59'], + 0x2A7B: [623,82,668,65,604,'177 303c0 -16 -13 -28 -28 -28c-16 0 -28 12 -28 28c0 15 12 28 28 28c15 0 28 -13 28 -28zM165 385v-27h-33v16c0 21 0 85 57 134c6 6 17 15 17 38c0 42 -33 46 -56 46c-36 0 -61 -16 -73 -27l-11 31c26 18 53 27 84 27c75 0 95 -44 95 -78c0 -36 -19 -52 -28 -60 c-35 -29 -52 -66 -52 -100zM604 -82l-539 255v21l539 254v-59l-438 -205l438 -207v-59'], + 0x2A7C: [623,82,668,65,604,'535 303c0 -16 -13 -28 -28 -28c-16 0 -28 12 -28 28c0 15 12 28 28 28c15 0 28 -13 28 -28zM523 385v-27h-33v16c0 21 0 85 57 134c6 6 17 15 17 38c0 42 -33 46 -56 46c-36 0 -61 -16 -73 -27l-11 31c26 18 53 27 84 27c75 0 95 -44 95 -78c0 -36 -19 -52 -28 -60 c-35 -29 -52 -66 -52 -100zM65 -82l539 255v21l-539 254v-59l438 -205l-438 -207v-59'], + 0x2A7F: [615,74,668,65,604,'531 349c0 -32 -26 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 55 56 55c30 0 56 -25 56 -55zM604 -15l-539 255v-59l539 -255v59zM604 615l-539 -254v-21l539 -255v59l-438 205l438 206v60'], + 0x2A80: [615,74,668,65,604,'138 349c0 -32 26 -56 56 -56c32 0 56 24 56 56c0 30 -24 55 -56 55c-30 0 -56 -25 -56 -55zM65 -15l539 255v-59l-539 -255v59zM65 615l539 -254v-21l-539 -255v59l438 205l-438 206v60'], + 0x2A81: [615,74,668,65,604,'244 524c0 -32 -26 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 55 56 55c30 0 56 -25 56 -55zM604 -15l-539 255v-59l539 -255v59zM604 615l-539 -254v-21l539 -255v59l-438 205l438 206v60'], + 0x2A82: [615,74,668,65,604,'425 524c0 -32 26 -56 56 -56c32 0 56 24 56 56c0 30 -24 55 -56 55c-30 0 -56 -25 -56 -55zM65 -15l539 255v-59l-539 -255v59zM65 615l539 -254v-21l-539 -255v59l438 205l-438 206v60'], + 0x2A83: [700,159,668,65,604,'603 645c0 -32 -26 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 55 56 55c30 0 56 -25 56 -55zM604 -100l-539 255v-59l539 -255v59zM604 530l-539 -254v-21l539 -255v59l-438 205l438 206v60'], + 0x2A84: [700,159,668,65,604,'66 645c0 -32 26 -56 56 -56c32 0 56 24 56 56c0 30 -24 55 -56 55c-30 0 -56 -25 -56 -55zM65 -100l539 255v-59l-539 -255v59zM65 530l539 -254v-21l-539 -255v59l438 205l-438 206v60'], + 0x2A8D: [672,186,668,65,604,'604 94c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM604 143l-539 253v21l539 255v-59l-438 -206l438 -205v-59zM602 -186h-537v60h537v-60'], + 0x2A8E: [672,186,668,65,604,'604 94c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM65 143l539 253v21l-539 255v-59l438 -206l-438 -205v-59zM602 -186h-537v60h537v-60'], + 0x2A8F: [821,279,668,65,604,'604 311c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM604 410l-539 195v21l539 195v-53l-420 -152l420 -152v-54zM604 -84l-539 -195v53l420 153l-420 151v54l539 -194 v-22'], + 0x2A90: [821,279,668,65,604,'604 311c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM65 410l539 195v21l-539 195v-53l420 -152l-420 -152v-54zM65 -84l539 -195v53l-420 153l420 151v54l-539 -194 v-22'], + 0x2A91: [755,159,668,65,604,'604 344l-539 195v21l539 195v-53l-420 -152l420 -152v-54zM604 -103h-539v-56h539v56zM604 56h-539v-56h539v56zM604 308l-539 195v-53l420 -153l-420 -151v-54l539 194v22'], + 0x2A92: [755,159,668,65,604,'604 503l-539 -195v-21l539 -195v53l-420 152l420 152v54zM604 -103h-539v-56h539v56zM604 56h-539v-56h539v56zM604 539l-539 -195v53l420 153l-420 151v54l539 -194v-22'], + 0x2A93: [944,279,668,65,604,'65 -220l539 255v-59l-539 -255v59zM65 410l539 -254v-21l-539 -255v59l438 205l-438 206v60zM604 314l-539 255v-59l539 -255v59zM604 944l-539 -254v-21l539 -255v59l-438 205l438 206v60'], + 0x2A94: [944,279,668,65,604,'604 -220l-539 255v-59l539 -255v59zM604 410l-539 -254v-21l539 -255v59l-438 205l438 206v60zM65 314l539 255v-59l-539 -255v59zM65 944l539 -254v-21l-539 -255v59l438 205l-438 206v60'], + 0x2A97: [615,74,668,65,604,'531 192c0 -32 -26 -56 -56 -56c-32 0 -56 24 -56 56c0 30 24 55 56 55c30 0 56 -25 56 -55zM604 556l-539 -255v59l539 255v-59zM604 -74l-539 254v21l539 255v-59l-438 -205l438 -206v-60'], + 0x2A98: [615,74,668,65,604,'138 192c0 -32 26 -56 56 -56c32 0 56 24 56 56c0 30 -24 55 -56 55c-30 0 -56 -25 -56 -55zM65 556l539 -255v59l-539 255v-59zM65 -74l539 254v21l-539 255v-59l438 -205l-438 -206v-60'], + 0x2A99: [672,131,668,65,604,'604 398l-539 -253v-21l539 -255v59l-438 206l438 205v59zM604 512h-539v-56h539v56zM604 672h-539v-56h539v56'], + 0x2A9A: [672,131,668,65,604,'65 398l539 -253v-21l-539 -255v59l438 206l-438 205v59zM65 512h539v-56h-539v56zM65 672h539v-56h-539v56'], + 0x2A9B: [701,147,668,66,605,'605 642l-539 -255v59l539 255v-59zM605 483l-539 -255v59l539 255v-59zM605 -147l-539 254v21l539 255v-59l-438 -205l438 -206v-60'], + 0x2A9C: [701,147,668,66,605,'66 642l539 -255v59l-539 255v-59zM66 483l539 -255v59l-539 255v-59zM66 -147l539 254v21l-539 255v-59l438 -205l-438 -206v-60'], + 0x2A9D: [605,122,668,65,604,'604 557c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM604 -122l-539 255v21l539 254v-59l-438 -205l438 -207v-59'], + 0x2A9E: [605,122,668,65,604,'604 557c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM65 -122l539 255v21l-539 254v-59l438 -205l-438 -207v-59'], + 0x2A9F: [801,193,668,65,604,'604 753c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM604 81l-539 253v21l539 255v-59l-438 -206l438 -205v-59zM604 -33h-539v56h539v-56zM604 -193h-539v56h539v-56'], + 0x2AA0: [801,193,668,65,604,'604 753c0 0 -24 -121 -151 -121c-115 0 -150 114 -244 114c-87 0 -123 -91 -123 -93l-21 9s29 139 163 139c105 0 153 -116 245 -116c75 0 105 76 105 78zM65 81l539 253v21l-539 255v-59l438 -206l-438 -205v-59zM604 -33h-539v56h539v-56zM604 -193h-539v56h539v-56'], + 0x2AA1: [535,-5,668,65,604,'603 105l-323 153v25l323 152v-41l-263 -123l263 -125v-41zM604 5l-539 255v21l539 254v-59l-438 -205l438 -207v-59'], + 0x2AA2: [535,-5,668,65,604,'66 105l323 153v25l-323 152v-41l263 -123l-263 -125v-41zM65 5l539 255v21l-539 254v-59l438 -205l-438 -207v-59'], + 0x2AA3: [606,61,965,55,912,'912 76l-545 255v21l545 254v-59l-443 -205l443 -207v-59zM599 76l-544 255v21l544 254v-59l-442 -205l442 -207v-59zM912 -61h-857v56h857v-56'], + 0x2AA4: [535,-5,768,56,713,'384 220l114 51l-114 53l-113 -53zM384 159l-328 -154v59l265 124l-152 72v21l161 72l-274 123v59l328 -155l329 155v-59l-267 -123l154 -72v-21l-154 -72l267 -124v-59'], + 0x2AA5: [535,-5,1251,55,1198,'55 5l544 255v21l-544 254v-59l442 -205l-442 -207v-59zM1198 5l-544 255v21l544 254v-59l-442 -205l442 -207v-59'], + 0x2AA6: [535,-7,725,64,661,'573 84l-408 187l408 188c44 -125 53 -250 0 -375zM603 535l-539 -255v-21l539 -252c79 170 77 347 0 528'], + 0x2AA7: [535,-7,725,64,662,'153 84l408 187l-408 188c-44 -125 -53 -250 0 -375zM123 535l539 -255v-21l-539 -252c-79 170 -77 347 0 528'], + 0x2AA8: [613,74,725,64,661,'604 -15l-539 255v-59l539 -255v59zM573 162l-408 187l408 188c44 -125 53 -250 0 -375zM603 613l-539 -255v-21l539 -252c79 170 77 347 0 528'], + 0x2AA9: [613,74,725,64,662,'122 -15l539 255v-59l-539 -255v59zM153 162l408 187l-408 188c-44 -125 -53 -250 0 -375zM123 613l539 -255v-21l-539 -252c-79 170 -77 347 0 528'], + 0x2AAA: [553,5,713,65,649,'231 305h418v-60h-418l418 -190v-60l-584 272v18l584 268v-60'], + 0x2AAB: [553,5,713,65,649,'483 305h-418v-60h418l-418 -190v-60l584 272v18l-584 268v-60'], + 0x2AAC: [635,61,713,65,649,'649 -61h-584v56h584v-56zM231 387h418v-60h-418l418 -190v-60l-584 272v18l584 268v-60'], + 0x2AAD: [635,61,713,65,649,'649 -61h-584v56h584v-56zM483 387h-418v-60h418l-418 -190v-60l584 272v18l-584 268v-60'], + 0x2AAE: [550,8,668,65,604,'604 418h-189c0 40 -33 73 -74 73c-40 0 -73 -32 -73 -73h-203v59h158c22 43 68 73 118 73c52 0 97 -30 119 -73h144v-59zM604 205h-538v59h538v-59zM604 -8h-539v59h539v-59'], + 0x2AB1: [623,134,668,65,604,'604 -81l-260 1l-48 -54h-72l50 53h-209v55h260l49 53h71l-49 -52h208v-56zM604 56c0 0 -102 200 -539 270v26c437 70 539 269 539 271v-81s-103 -143 -378 -201c275 -59 378 -204 378 -204v-81'], + 0x2AB2: [623,134,668,65,604,'604 -81l-260 1l-48 -54h-72l50 53h-209v55h260l49 53h71l-49 -52h208v-56zM65 56c0 0 102 200 539 270v26c-437 70 -539 269 -539 271v-81s103 -143 378 -201c-275 -59 -378 -204 -378 -204v-81'], + 0x2AB3: [680,139,668,65,604,'604 115c0 0 -102 200 -539 270v26c437 69 539 268 539 269v-80c0 -1 -103 -143 -378 -201v-1c275 -59 378 -202 378 -203v-80zM604 21v56h-539v-56h539zM604 -83v-56h-539v56h539'], + 0x2AB4: [680,139,668,65,604,'65 115c0 0 102 200 539 270v26c-437 69 -539 268 -539 269v-80c0 -1 103 -143 378 -201v-1c-275 -59 -378 -202 -378 -203v-80zM65 21v56h539v-56h-539zM65 -83v-56h539v56h-539'], + 0x2ABB: [553,14,1057,65,993,'993 -14c0 0 -102 200 -539 270v26c437 70 539 269 539 271v-81s-103 -143 -378 -201c275 -59 378 -204 378 -204v-81zM604 -14c0 0 -102 200 -539 270v26c437 70 539 269 539 271v-81s-103 -143 -378 -201c275 -59 378 -204 378 -204v-81'], + 0x2ABC: [553,14,1057,65,993,'65 -14c0 0 102 200 539 270v26c-437 70 -539 269 -539 271v-81s103 -143 378 -201c-275 -59 -378 -204 -378 -204v-81zM454 -14c0 0 102 200 539 270v26c-437 70 -539 269 -539 271v-81s103 -143 378 -201c-275 -59 -378 -204 -378 -204v-81'], + 0x2ABD: [533,-8,668,55,615,'425 271c0 -30 -27 -58 -59 -58c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58zM615 8h-301c-147 0 -259 123 -259 263s112 262 259 262h301v-53h-306c-114 0 -202 -98 -202 -209c0 -118 100 -210 202 -210h306v-53'], + 0x2ABE: [533,-8,668,55,615,'245 271c0 -30 27 -58 59 -58c31 0 57 28 57 58s-27 58 -57 58c-31 0 -59 -28 -59 -58zM55 8h301c147 0 259 123 259 263s-112 262 -259 262h-301v-53h306c114 0 202 -98 202 -209c0 -118 -100 -210 -202 -210h-306v-53'], + 0x2ABF: [588,46,465,65,401,'397 69h-144v-115h-36v115h-144v36h144v122h36v-122h144v-36zM401 273h-182c-88 0 -154 73 -154 157s66 158 154 158h182v-32h-184c-68 0 -122 -58 -122 -125c0 -71 60 -126 122 -126h184v-32'], + 0x2AC0: [588,46,465,65,401,'69 69h144v-115h36v115h144v36h-144v122h-36v-122h-144v-36zM65 273h182c88 0 154 73 154 157s-66 158 -154 158h-182v-32h184c68 0 122 -58 122 -125c0 -71 -60 -126 -122 -126h-184v-32'], + 0x2AC1: [623,81,465,65,401,'399 -55l-26 -26l-140 141l-140 -141l-26 26l141 140l-141 140l26 26l140 -141l140 141l26 -26l-141 -140zM401 308h-181c-88 0 -155 73 -155 157s67 158 155 158h181v-32h-184c-68 0 -121 -59 -121 -126c0 -70 60 -126 121 -126h184v-31'], + 0x2AC2: [623,81,465,65,401,'67 -55l26 -26l140 141l140 -141l26 26l-141 140l141 140l-26 26l-140 -141l-140 141l-26 -26l141 -140zM65 308h181c88 0 155 73 155 157s-67 158 -155 158h-181v-32h184c68 0 121 -59 121 -126c0 -70 -60 -126 -121 -126h-184v-31'], + 0x2AC3: [645,103,607,65,543,'394 587c0 -30 -27 -58 -59 -58c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58zM543 14h-257c-125 0 -221 104 -221 224s96 225 221 225h257v-46h-261c-98 0 -173 -82 -173 -178c0 -101 86 -179 173 -179h261v-46zM543 -103h-457v48h457v-48'], + 0x2AC4: [645,103,607,65,543,'214 587c0 -30 27 -58 59 -58c31 0 57 28 57 58s-27 58 -57 58c-31 0 -59 -28 -59 -58zM65 14h257c125 0 221 104 221 224s-96 225 -221 225h-257v-46h261c98 0 173 -82 173 -178c0 -101 -86 -179 -173 -179h-261v-46zM65 -103h457v48h-457v-48'], + 0x2AC7: [656,115,668,55,615,'604 43c-15 -92 -57 -158 -158 -158c-99 0 -161 114 -239 114c-62 0 -98 -39 -121 -93l-21 9c23 83 71 139 162 139c92 0 162 -115 240 -115c69 0 99 54 116 114zM615 131h-301c-147 0 -259 122 -259 262s112 263 259 263h301v-53h-306c-114 0 -202 -97 -202 -209 c0 -118 100 -209 202 -209h306v-54'], + 0x2AC8: [656,115,668,55,615,'604 43c-15 -92 -57 -158 -158 -158c-99 0 -161 114 -239 114c-62 0 -98 -39 -121 -93l-21 9c23 83 71 139 162 139c92 0 162 -115 240 -115c69 0 99 54 116 114zM55 131h301c147 0 259 122 259 262s-112 263 -259 263h-301v-53h306c114 0 202 -97 202 -209 c0 -118 -100 -209 -202 -209h-306v-54'], + 0x2AC9: [739,227,668,55,615,'612 146c-15 -94 -60 -159 -161 -159c-103 0 -164 114 -246 114c-62 0 -100 -39 -123 -93l-21 8c24 84 73 140 164 140c95 0 164 -116 247 -116c69 0 102 54 119 115zM611 -69v1c-15 -94 -60 -159 -162 -159s-163 115 -245 115c-62 0 -100 -39 -123 -94l-22 8 c24 85 74 140 165 140c95 0 164 -115 247 -115c69 0 102 53 118 114zM615 215l-301 -1c-147 0 -259 122 -259 262s112 263 259 263h301v-52h-306c-114 0 -202 -98 -202 -210c0 -118 100 -209 202 -209h306v-53'], + 0x2ACA: [739,227,668,55,615,'612 146c-15 -94 -60 -159 -161 -159c-103 0 -164 114 -246 114c-62 0 -100 -39 -123 -93l-21 8c24 84 73 140 164 140c95 0 164 -116 247 -116c69 0 102 54 119 115zM611 -69v1c-15 -94 -60 -159 -162 -159s-163 115 -245 115c-62 0 -100 -39 -123 -94l-22 8 c24 85 74 140 165 140c95 0 164 -115 247 -115c69 0 102 53 118 114zM55 215l301 -1c147 0 259 122 259 262s-112 263 -259 263h-301v-52h306c114 0 202 -98 202 -210c0 -118 -100 -209 -202 -209h-306v-53'], + 0x2ACD: [543,-2,1145,64,1082,'1082 542l-1018 1v-541h541v59h-482v423l959 1v57'], + 0x2ACE: [543,-2,1145,64,1082,'64 542l1018 1v-541h-541v59h482v423h-959v58'], + 0x2ACF: [533,-8,668,55,615,'615 533h-301c-146 0 -259 -122 -259 -262s113 -263 259 -263h301v525zM562 480v-419h-252c-102 0 -202 92 -202 210c0 111 87 209 202 209h252'], + 0x2AD0: [533,-8,668,55,615,'55 533h301c146 0 259 -122 259 -262s-113 -263 -259 -263h-301v525zM108 480v-419h252c102 0 202 92 202 210c0 111 -87 209 -202 209h-252'], + 0x2AD1: [603,61,668,55,615,'615 -61h-534v56h534v-56zM615 603h-301c-146 0 -259 -122 -259 -262s113 -263 259 -263h301v525zM562 550v-419h-252c-102 0 -202 92 -202 210c0 111 87 209 202 209h252'], + 0x2AD2: [603,61,668,55,615,'615 -61h-534v56h534v-56zM55 603h301c146 0 259 -122 259 -262s-113 -263 -259 -263h-301v525zM108 550v-419h252c102 0 202 92 202 210c0 111 -87 209 -202 209h-252'], + 0x2AD3: [611,69,407,53,355,'192 331c-79 0 -139 64 -139 140c0 74 60 140 139 140h163v-28h-165c-63 0 -110 -52 -110 -112c0 -64 54 -112 110 -112h165v-28h-163zM53 -69v28h164c56 0 110 48 110 112c0 60 -46 112 -110 112h-164v28h162c79 0 140 -66 140 -140c0 -76 -61 -140 -140 -140h-162'], + 0x2AD4: [611,69,407,53,355,'216 331c79 0 139 64 139 140c0 74 -60 140 -139 140h-163v-28h165c63 0 110 -52 110 -112c0 -64 -54 -112 -110 -112h-165v-28h163zM355 -69v28h-164c-56 0 -110 48 -110 112c0 60 46 112 110 112h164v28h-162c-79 0 -140 -66 -140 -140c0 -76 61 -140 140 -140h162'], + 0x2AD5: [611,69,407,53,355,'192 331c-79 0 -139 64 -139 140c0 74 60 140 139 140h163v-28h-165c-63 0 -110 -52 -110 -112c0 -64 54 -112 110 -112h165v-28h-163zM355 -69v28h-164c-56 0 -110 48 -110 112c0 60 46 112 110 112h164v28h-162c-79 0 -140 -66 -140 -140c0 -76 61 -140 140 -140h162'], + 0x2AD6: [611,69,407,53,355,'216 331c79 0 139 64 139 140c0 74 -60 140 -139 140h-163v-28h165c63 0 110 -52 110 -112c0 -64 -54 -112 -110 -112h-165v-28h163zM53 -69v28h164c56 0 110 48 110 112c0 60 -46 112 -110 112h-164v28h162c79 0 140 -66 140 -140c0 -76 -61 -140 -140 -140h-162'], + 0x2AD7: [410,-130,764,53,711,'548 130c-79 0 -139 64 -139 140c0 74 60 140 139 140h163v-28h-165c-63 0 -110 -52 -110 -112c0 -64 54 -112 110 -112h165v-28h-163zM53 130v28h164c56 0 110 48 110 112c0 60 -46 112 -110 112h-164v28h162c79 0 140 -66 140 -140c0 -76 -61 -140 -140 -140h-162'], + 0x2AD8: [410,-130,764,53,711,'442 249c9 -54 54 -91 104 -91h165v-28h-163c-72 0 -129 52 -139 119h-58c-11 -66 -64 -119 -136 -119h-162v28h164c50 0 98 38 108 91h-193v42h193c-14 49 -52 91 -108 91h-164v28h162c71 0 126 -54 136 -119h58c11 64 68 119 139 119h163v-28h-165 c-55 0 -94 -41 -104 -91h190v-42h-190'], + 0x2AD9: [498,-44,613,45,569,'45 44v194c0 148 122 260 262 260s262 -112 262 -260v-194h-52v200c0 104 -84 188 -184 200v-371h-52v371c-106 -14 -184 -106 -184 -200v-200h-52'], + 0x2ADA: [656,115,687,65,623,'523 656v-59h-150v-110c138 -15 250 -129 250 -277v-325h-54v329c0 104 -83 204 -195 218v-547h-59v547c-109 -13 -196 -103 -196 -218v-329h-54v325c0 147 113 261 249 276v111h-150v59h359'], + 0x2ADB: [771,150,687,65,623,'623 0h-54v329c0 104 -83 204 -195 218v-697h-59v697c-109 -13 -196 -103 -196 -218v-329h-54v325c0 147 113 261 249 276v170h59v-169c138 -15 250 -129 250 -277v-325'], + 0x2ADC: [648,107,687,65,623,'281 79l34 83v-88c-10 1 -25 3 -34 5zM236 99c-69 38 -117 112 -117 197h-54c0 -110 63 -200 152 -246l-60 -157h57l53 136c17 -4 31 -7 47 -9c174 -18 306 111 309 276h-54c0 -104 -83 -208 -195 -222v236l140 338h-57l-82 -198v171h-60v-316'], + 0x2ADD: [571,31,687,65,623,'623 246h-54c0 -104 -83 -208 -195 -222v547h-59v-547c-109 13 -196 107 -196 222h-54c0 -147 113 -261 249 -276c175 -19 305 112 309 276'], + 0x2ADE: [541,0,400,65,337,'337 0h-59v241h-213v59h213v241h59v-541'], + 0x2ADF: [408,-136,670,65,607,'607 408v-60h-242v-212h-58v212h-242v60h542'], + 0x2AE0: [408,-136,670,65,607,'607 136v60h-242v212h-58v-212h-242v-60h542'], + 0x2AE1: [579,0,748,65,684,'666 472l-7 -40c-19 16 -43 32 -85 32c-46 0 -73 -30 -73 -59c0 -51 61 -59 70 -61c12 -3 112 -17 112 -110c0 -55 -46 -106 -112 -106c-31 0 -71 8 -115 35l7 41c42 -36 87 -41 108 -41c45 0 73 33 73 66c0 60 -68 67 -83 71c-29 7 -51 13 -72 36c-20 20 -27 42 -27 63 c0 49 43 99 113 99c36 0 64 -9 91 -26zM684 0h-619v59h280v520h59v-520h280v-59'], + 0x2AE2: [580,39,748,85,664,'144 81h520v59h-520v101h520v59h-520v101h520v59h-520v120h-59v-619h59v120'], + 0x2AE3: [580,39,859,85,795,'605 580h59v-619h-59v280h-520v59h520v280zM736 -39v619h59v-619h-59'], + 0x2AE4: [580,39,728,85,664,'605 580h59v-619h-59v200h-520v59h520v101h-520v59h520v200'], + 0x2AE5: [580,39,859,85,795,'736 -39v619h59v-619h-59zM605 580h59v-619h-59v200h-520v59h520v101h-520v59h520v200'], + 0x2AE6: [580,39,730,87,666,'277 241h389v59h-389v280h-59v-280h-72v280h-59v-619h59v280h72v-280h59v280'], + 0x2AE7: [473,-70,670,65,607,'607 414h-541v59h541v-59zM607 342v-60h-242v-212h-58v212h-242v60h542'], + 0x2AE8: [473,-70,670,65,607,'607 129h-541v-59h541v59zM607 201v60h-242v212h-58v-212h-242v-60h542'], + 0x2AE9: [579,37,670,65,607,'607 307v60h-242v212h-58v-212h-242v-60h542zM607 235v-60h-242v-212h-58v212h-242v60h542'], + 0x2AEA: [559,20,748,65,684,'65 500v59h619v-59h-200v-520h-59v520h-101v-520h-59v520h-200'], + 0x2AEB: [559,20,748,65,684,'65 39v-59h619v59h-200v520h-59v-520h-101v520h-59v-520h-200'], + 0x2AEC: [407,-135,672,65,608,'551 210h-486v61h488l-2 75h-486v61h543v-272h-57v75'], + 0x2AED: [407,-135,672,65,608,'122 210h486v61h-488l1 75h487v61h-543v-272h57v75'], + 0x2AEE: [714,171,437,0,438,'0 558l190 -191v-538h59v479l106 -106h83l-189 191v321h-59v-262l-107 106h-83'], + 0x2AEF: [715,173,521,85,437,'263 715c96 0 174 -80 174 -178c0 -88 -62 -160 -146 -174v-536h-60v536c-82 14 -146 86 -146 174c0 98 80 178 178 178zM263 661c-70 0 -126 -56 -126 -124c0 -70 56 -124 126 -124c68 0 122 54 122 124c0 68 -54 124 -122 124'], + 0x2AF0: [714,174,521,85,437,'263 -174c96 0 174 80 174 178c0 88 -62 160 -146 174v536h-60v-536c-82 -14 -146 -86 -146 -174c0 -98 80 -178 178 -178zM263 -120c-70 0 -126 56 -126 124c0 70 56 124 126 124c68 0 122 -54 122 -124c0 -68 -54 -124 -122 -124'], + 0x2AF1: [714,174,560,65,496,'309 656h187v58h-431v-58h184v-478c-82 -14 -146 -86 -146 -174c0 -98 80 -178 178 -178c96 0 174 80 174 178c0 88 -62 160 -146 174v478zM281 -120c-70 0 -126 56 -126 124c0 70 56 124 126 124c68 0 122 -54 122 -124c0 -68 -54 -124 -122 -124'], + 0x2AF2: [714,171,644,70,575,'575 237h-116v-408h-59v408h-152v-408h-59v408h-118l-1 69h119v408h59v-408h152v408h59v-408h116v-69'], + 0x2AF3: [714,171,668,58,611,'460 227c69 0 113 53 130 114l21 -10c-15 -93 -52 -164 -154 -164l1 -338h-58l-1 355c-58 24 -101 85 -151 103v-458h-59v457c-54 -5 -88 -42 -110 -92l-21 9c19 65 77 124 132 136l-1 375h59v-372c58 0 111 -52 152 -85v457h59'], + 0x2AF4: [714,171,560,61,500,'500 -171h-59v885h59v-885zM310 -171h-59v885h59v-885zM120 -171h-59v885h59v-885'], + 0x2AF5: [714,171,691,65,627,'567 242v-413h-59v413h-131v-413h-59v413h-131v-413h-59v413h-63v58h63v414h59v-414h131v414h59v-414h131v414h59v-414h60v-58h-60'], + 0x2AF6: [709,164,286,85,202,'202 649c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM202 271c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM202 -107c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60'], + 0x2AF7: [535,-7,668,65,604,'603 192l-152 72v13l152 73v-37l-87 -42l87 -42v-37zM603 106l-335 155v17l335 159v-47l-254 -119l254 -118v-47zM604 7l-539 252v21l539 255v-59l-438 -205l438 -205v-59'], + 0x2AF8: [535,-7,668,65,604,'66 192l152 72v13l-152 73v-37l87 -42l-87 -42v-37zM66 106l335 155v17l-335 159v-47l254 -119l-254 -118v-47zM65 7l539 252v21l-539 255v-59l438 -205l-438 -205v-59'], + 0x2AF9: [695,153,668,66,605,'605 -94l-539 255v-59l539 -255v59zM605 65l-539 255v-59l539 -255v59zM605 695l-539 -254v-21l539 -255v59l-438 205l438 206v60'], + 0x2AFA: [695,153,668,66,605,'66 -94l539 255v-59l-539 -255v59zM66 65l539 255v-59l-539 -255v59zM66 695l539 -254v-21l-539 -255v59l438 205l-438 206v60'], + 0x2AFB: [714,169,885,65,821,'821 714l-278 -883h-55l279 883h54zM609 714l-278 -883h-55l279 883h54zM399 714l-279 -883h-55l279 883h55'], + 0x2AFC: [763,222,620,71,550,'550 -222h-59v985h59v-985zM340 -222h-59v985h59v-985zM130 -222h-59v985h59v-985'], + 0x2AFD: [714,169,673,65,609,'609 714l-278 -883h-55l279 883h54zM399 714l-279 -883h-55l279 883h55'], + 0x2AFE: [541,0,383,64,320,'320 0h-256v541h256v-541zM271 49v443h-158v-443h158'], + 0x2AFF: [654,112,383,64,320,'320 -112h-256v766h256v-766zM271 -63v668h-158v-668h158'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Operators/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/SansSerif/Regular/Main.js new file mode 100644 index 0000000..fa88f3c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/SansSerif/Regular/Main.js @@ -0,0 +1,373 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'AsanaMathJax_SansSerif', + id: 'ASANAMATHSANSSERIF', + 0x20: [0,0,249,0,0,''], + 0x1D5A0: [694,0,665,28,638,'377 694l261 -694h-92l-76 204h-291l-77 -204h-74l261 694h88zM448 260l-91 257c-23 66 -30 91 -32 105h-1c-7 -37 -38 -122 -59 -181l-65 -181h248'], + 0x1D5A1: [694,0,665,97,610,'97 694h237c142 0 249 -82 249 -174c0 -76 -75 -134 -166 -157c106 -17 193 -88 193 -175c0 -98 -105 -188 -249 -188h-264v694zM180 391h116c138 0 209 68 209 128c0 66 -88 119 -199 119h-126v-247zM180 56h153c108 0 196 58 196 133c0 80 -98 141 -204 141h-145v-274'], + 0x1D5A2: [716,22,637,67,588,'577 681l-15 -81c-42 27 -90 52 -169 52c-139 0 -237 -142 -237 -305c0 -153 89 -305 240 -305c69 0 114 10 186 61l6 -69c-71 -43 -110 -56 -193 -56c-195 0 -328 176 -328 369c0 196 135 369 327 369c66 0 120 -11 183 -35'], + 0x1D5A3: [694,0,721,96,665,'96 694h262c172 0 307 -159 307 -353c0 -189 -136 -341 -306 -341h-263v694zM182 56h153c140 0 244 115 244 285c0 176 -104 297 -244 297h-153v-582'], + 0x1D5A4: [691,0,596,94,554,'513 329h-330v-258h371v-71h-460v691h446v-65h-357v-236h330v-61'], + 0x1D5A5: [691,0,568,94,526,'485 315h-302v-315h-89v691h432v-65h-343v-250h302v-61'], + 0x1D5A6: [716,22,665,67,599,'599 299v-272c-31 -15 -110 -49 -208 -49c-181 0 -324 165 -324 369c0 199 138 369 326 369c94 0 144 -24 198 -49l-15 -81c-62 51 -120 66 -184 66c-136 0 -236 -139 -236 -305s100 -305 236 -305c25 0 73 3 129 20v176h-132v61h210'], + 0x1D5A7: [694,0,707,94,613,'613 694v-694h-89v330h-341v-330h-89v694h89v-303h341v303h89'], + 0x1D5A8: [694,0,276,94,183,'183 694v-694h-89v694h89'], + 0x1D5A9: [694,22,471,42,388,'388 694v-545c0 -113 -72 -171 -175 -171c-84 0 -147 30 -171 42l14 75c34 -38 86 -56 128 -56c118 0 118 96 118 113v542h86'], + 0x1D5AA: [694,0,693,96,651,'369 420l282 -420h-92l-245 364l-133 -137v-227h-85v694h85v-371l363 371h93'], + 0x1D5AB: [694,0,540,94,499,'183 694v-628c89 0 227 -1 316 0v-66h-405v694h89'], + 0x1D5AC: [694,0,874,100,774,'530 355l130 339h114v-694h-78v620l-1 1c-5 -24 -49 -145 -90 -251l-133 -348h-73l-148 389c-26 68 -66 177 -72 209h-1v-620h-78v694h113l191 -501c15 -42 27 -79 32 -100h1c11 47 58 171 93 262'], + 0x1D5AD: [694,0,707,96,611,'220 694l245 -486c6 -11 48 -96 67 -137h1v623h78v-694h-124l-245 486c-6 11 -48 96 -67 137h-1v-623h-78v694h124'], + 0x1D5AE: [716,22,735,56,679,'679 345c0 -210 -145 -367 -312 -367c-163 0 -311 155 -311 367c0 208 142 371 312 371c166 0 311 -161 311 -371zM368 43c114 0 222 122 222 317c0 179 -107 292 -223 292c-112 0 -222 -109 -222 -292c0 -192 105 -317 223 -317'], + 0x1D5AF: [694,0,637,96,582,'352 289h-167v-289h-89v694h249c138 0 237 -95 237 -202c0 -112 -106 -203 -230 -203zM323 638h-141v-291h141c115 0 178 66 178 145c0 85 -68 146 -178 146'], + 0x1D5B0: [716,125,735,56,679,'533 33l119 -158h-103l-86 121c-43 -17 -80 -18 -96 -18c-163 0 -311 155 -311 367c0 208 142 371 312 371c166 0 311 -161 311 -371c0 -105 -37 -227 -146 -312zM424 51l-101 143h89l79 -105c90 82 102 191 102 256c0 185 -106 307 -226 307c-116 0 -225 -120 -225 -307 c0 -186 108 -303 226 -303c29 0 55 9 56 9'], + 0x1D5B1: [694,0,644,96,617,'419 326l198 -326h-89l-188 317h-158v-317h-86v694h241c143 0 252 -87 252 -186c0 -81 -67 -152 -170 -182zM182 378h144c118 0 182 59 182 130s-66 130 -182 130h-144v-260'], + 0x1D5B2: [716,22,554,44,499,'465 666l-15 -80c-37 31 -85 64 -169 64c-92 0 -146 -60 -146 -119c0 -102 121 -119 139 -123c92 -23 125 -32 172 -82c22 -24 53 -72 53 -137c0 -110 -92 -211 -224 -211c-63 0 -143 14 -231 69l15 81c84 -71 174 -81 215 -81c91 0 146 66 146 132c0 43 -22 76 -42 93 c-28 25 -38 28 -123 49c-59 14 -103 26 -145 71c-40 42 -54 84 -54 127c0 99 87 197 226 197c73 0 128 -17 183 -50'], + 0x1D5B3: [688,0,679,36,644,'385 624v-624h-89v624h-90c-12 0 -24 -1 -36 -1h-134v65h608v-65h-134c-12 0 -24 1 -36 1h-89'], + 0x1D5B4: [694,22,686,94,593,'593 694v-461c0 -145 -113 -255 -247 -255c-135 0 -252 109 -252 255v461h89v-462c0 -135 82 -198 164 -198c84 0 168 66 168 198v462h78'], + 0x1D5B5: [694,0,665,14,652,'652 694l-273 -694h-92l-273 694h93l173 -448c9 -24 52 -134 60 -174h1c9 46 84 239 100 280l133 342h78'], + 0x1D5B6: [694,0,943,14,929,'929 694l-203 -694h-87l-115 401c-27 95 -51 190 -55 220h-1c-6 -52 -49 -201 -70 -274l-100 -347h-81l-203 694h86l128 -449c8 -33 35 -131 39 -171h1c5 56 55 231 77 308l90 312h81l98 -341c66 -228 72 -280 72 -281h1c5 51 53 219 79 308l91 314h72'], + 0x1D5B7: [694,0,665,14,652,'369 366l283 -366h-104l-222 306l-216 -306h-96l269 366l-255 328h104l194 -261l188 261h96'], + 0x1D5B8: [694,0,665,3,663,'663 694l-287 -417v-277h-86v278l-287 416h105l198 -290c17 -24 17 -26 36 -57l61 95c7 11 12 19 17 26l155 226h88'], + 0x1D5B9: [694,0,610,56,560,'554 653l-385 -589h32c87 0 176 2 263 2h96v-66h-504v43l385 590h-136c-12 0 -24 -1 -36 -1h-200v62h485v-41'], + 0x1D5BA: [461,11,479,44,399,'399 289v-289h-75v36c-58 -45 -152 -47 -166 -47c-87 0 -114 81 -114 124c0 88 127 130 277 132v43c0 74 -40 114 -87 114c-49 0 -99 -13 -151 -50l-6 66c47 27 92 43 157 43c92 0 165 -70 165 -172zM321 132v62c-43 -2 -205 -9 -205 -79c0 -42 45 -65 93 -65 c11 0 49 1 78 19c34 19 34 44 34 63'], + 0x1D5BB: [694,11,515,82,480,'157 694v-298c60 49 122 59 161 59c94 0 162 -108 162 -232c0 -134 -86 -234 -186 -234c-67 0 -110 35 -134 57v-46h-78v694h75zM160 335v-221c25 -46 58 -64 97 -64c61 0 145 43 145 173c0 128 -76 171 -135 171c-55 0 -91 -35 -107 -59'], + 0x1D5BC: [461,11,443,36,415,'410 418l-12 -65c-55 36 -89 44 -141 44c-106 0 -143 -96 -143 -174c0 -98 56 -170 139 -170c51 0 105 14 156 54l6 -67c-54 -37 -109 -51 -163 -51c-125 0 -216 109 -216 233c0 118 81 239 220 239c61 0 95 -9 154 -43'], + 0x1D5BD: [694,11,515,36,434,'434 694v-694h-78v52c-56 -54 -115 -63 -148 -63c-95 0 -172 102 -172 233c0 129 78 233 177 233c37 0 93 -11 146 -55v294h75zM356 139v200c-22 32 -52 55 -97 55c-59 0 -145 -41 -145 -173c0 -124 73 -171 135 -171c26 0 51 8 74 28c32 29 33 47 33 61'], + 0x1D5BE: [461,11,443,35,414,'414 219h-309c3 -98 67 -169 147 -169c23 0 89 4 152 56l6 -65c-39 -28 -96 -52 -159 -52c-120 0 -216 105 -216 237c0 129 90 235 201 235c71 0 178 -40 178 -242zM110 274h247c-13 92 -69 126 -121 126c-57 0 -110 -50 -126 -126'], + 0x1D5BF: [705,0,304,27,347,'176 386v-386h-75v386h-74v58h74v90c0 100 72 171 166 171c37 0 68 -8 80 -11v-67c-34 15 -61 17 -81 17c-26 0 -93 -7 -93 -81v-119h113v-58h-110'], + 0x1D5C0: [455,206,499,28,485,'352 391l-4 1c11 -15 33 -52 33 -100c0 -89 -70 -163 -160 -163c-37 0 -70 14 -91 29c-7 -9 -11 -25 -11 -36c0 -53 45 -53 58 -53h88c39 0 206 0 206 -139c0 -77 -99 -136 -222 -136c-122 0 -221 60 -221 135c0 26 12 72 64 103c-17 21 -26 50 -26 76c0 5 0 44 29 85 c-20 26 -33 62 -33 99c0 91 73 163 159 163c40 0 74 -15 95 -32c30 13 88 32 158 32l11 -63c-2 0 -41 3 -59 3c-24 0 -52 -4 -74 -4zM221 186c43 0 90 28 90 106s-47 106 -90 106c-37 0 -89 -23 -89 -106s52 -106 89 -106zM266 -3h-90c-78 0 -78 -65 -78 -68 c0 -47 71 -78 152 -78c82 0 151 33 151 77c0 69 -113 69 -135 69'], + 0x1D5C1: [694,0,515,81,435,'435 298v-298h-78v291c0 32 -1 103 -97 103c-76 0 -101 -83 -101 -149v-245h-78v694h75v-311c32 41 80 72 142 72c122 0 137 -91 137 -157'], + 0x1D5C2: [680,0,237,74,163,'163 680v-89h-89v89h89zM156 444v-444h-75v444h75'], + 0x1D5C3: [680,205,265,-61,184,'184 680v-89h-89v89h89zM-61 -171l15 61c22 -20 48 -31 77 -31c28 0 78 9 78 73v512h75v-503c0 -94 -62 -146 -125 -146c-26 0 -72 6 -120 34'], + 0x1D5C4: [694,0,487,84,471,'281 272l190 -272h-82l-156 224l-80 -83v-141h-69v694h72v-458l203 208h90'], + 0x1D5C5: [694,0,237,81,156,'156 694v-694h-75v694h75'], + 0x1D5C6: [455,0,793,81,713,'713 298v-298h-78v291c0 38 -5 103 -98 103c-74 0 -101 -81 -101 -149v-245h-78v291c0 38 -5 103 -98 103c-74 0 -101 -81 -101 -149v-245h-78v450h72v-72c27 36 74 77 146 77c32 0 102 -6 128 -82c37 54 89 82 149 82c121 0 137 -90 137 -157'], + 0x1D5C7: [455,0,515,81,435,'435 298v-298h-78v291c0 32 -1 103 -97 103c-76 0 -101 -83 -101 -149v-245h-78v450h72v-71c6 8 55 76 145 76c122 0 137 -91 137 -157'], + 0x1D5C8: [461,11,499,30,469,'469 220c0 -130 -100 -231 -220 -231c-117 0 -219 99 -219 231c0 131 97 241 220 241c119 0 219 -107 219 -241zM249 53c74 0 142 59 142 177s-72 170 -142 170c-65 0 -141 -49 -141 -170s72 -177 141 -177'], + 0x1D5C9: [455,194,515,82,480,'160 46v-240h-78v638h75v-49c46 39 104 60 164 60c96 0 159 -112 159 -232c0 -136 -88 -234 -185 -234c-60 0 -104 28 -135 57zM160 333v-201c0 -18 0 -20 10 -35c20 -27 47 -47 86 -47c75 0 146 70 146 173c0 92 -60 168 -136 168c-43 0 -82 -23 -106 -58'], + 0x1D5CA: [455,194,515,36,434,'434 455v-649h-78v244c-42 -38 -95 -61 -151 -61c-96 0 -169 105 -169 232c0 135 86 234 186 234c78 0 127 -55 137 -68v68h75zM359 140v140c0 40 -31 111 -100 111c-73 0 -145 -68 -145 -170c0 -93 60 -171 136 -171c36 0 73 17 99 57c10 13 10 15 10 33'], + 0x1D5CB: [455,0,340,82,327,'157 214v-214h-75v450h70v-91c31 46 86 95 175 96v-67c-98 -2 -170 -74 -170 -174'], + 0x1D5CC: [461,11,382,28,360,'360 128c0 -53 -26 -139 -164 -139c-81 0 -136 28 -168 44l12 68c18 -12 74 -49 155 -49c15 0 94 0 94 69c0 53 -58 65 -94 72c-55 11 -77 15 -108 37c-25 19 -54 51 -54 100c0 131 141 131 166 131c51 0 92 -8 144 -32l-12 -65c-57 34 -110 38 -142 38 c-13 0 -85 0 -85 -62c0 -49 46 -59 101 -70c50 -9 77 -15 116 -50c2 -3 39 -37 39 -92'], + 0x1D5CD: [571,11,360,19,332,'175 386v-250c0 -53 14 -83 51 -83c32 0 64 12 90 33l16 -59c-25 -13 -76 -38 -146 -38c-69 0 -83 70 -83 130v267h-84v58h87v127h69v-127h141v-58h-141'], + 0x1D5CE: [444,11,515,81,435,'435 444v-444h-75v48c-49 -43 -120 -59 -173 -59c-83 0 -106 48 -106 120v335h78v-331c0 -43 7 -69 78 -69c64 0 120 35 120 110v290h78'], + 0x1D5CF: [444,0,460,14,446,'446 444l-172 -444h-88l-172 444h78l139 -391h1c-4 -6 87 246 139 391h75'], + 0x1D5D0: [444,0,682,14,668,'230 0h-79l-137 444h76l106 -389h1l106 389h70l111 -390h1l110 390h73l-137 -444h-88l-105 388'], + 0x1D5D1: [444,0,460,0,460,'260 229l200 -229h-83l-150 188l-145 -188h-82l194 229l-188 215h83l138 -165l134 165h82'], + 0x1D5D2: [444,205,460,14,446,'446 444l-218 -535c-41 -102 -78 -114 -113 -114c-22 0 -50 3 -72 8l-6 65c30 -12 62 -16 78 -16c36 0 49 35 93 148l-194 444h79l145 -387l133 387h75'], + 0x1D5D3: [444,0,433,28,402,'400 405l-266 -344h268v-61h-374v41l267 345h-253v58h358v-39'], + 0x1D5D4: [694,0,732,42,690,'474 651l211 -604c5 -13 5 -15 5 -20c0 -27 -25 -27 -39 -27h-54c-48 0 -55 20 -67 55l-34 96h-277l-39 -111c-14 -40 -45 -40 -63 -40h-36c-14 0 -39 0 -39 27c0 5 0 7 5 20l211 604c15 43 44 43 64 43h88c20 0 49 0 64 -43zM249 237h217l-108 330h-1'], + 0x1D5D5: [694,0,732,91,671,'139 694h246c42 0 255 0 255 -180c0 -78 -53 -130 -145 -151c37 -6 176 -28 176 -169c0 -181 -184 -194 -258 -194h-274c-37 0 -48 12 -48 48v598c0 37 12 48 48 48zM232 397h116c25 0 156 0 156 114c0 94 -116 97 -155 97h-117v-211zM232 86h145c48 0 155 7 155 110 c0 129 -139 129 -174 129h-126v-239'], + 0x1D5D6: [716,22,701,61,647,'604 550c-20 0 -53 66 -176 66c-206 0 -220 -175 -220 -269c0 -144 42 -269 224 -269c87 0 122 16 177 56c13 11 15 11 19 11c10 0 12 -10 13 -18c1 -14 6 -66 6 -78c0 -10 -1 -11 -28 -26c-65 -35 -106 -45 -189 -45c-233 0 -369 111 -369 369c0 234 113 369 368 369 c86 0 135 -14 177 -29c28 -9 29 -10 29 -19c0 -3 0 -5 -2 -13l-15 -87c-3 -15 -8 -18 -14 -18'], + 0x1D5D7: [694,0,793,91,732,'403 694c163 0 329 -70 329 -352c0 -196 -85 -342 -329 -342h-264c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h264zM235 86h129c213 0 224 143 224 256c0 112 -9 266 -225 266h-128v-522'], + 0x1D5D8: [691,0,640,91,595,'238 311v-201h301c33 0 56 0 56 -48v-14c0 -35 -10 -48 -48 -48h-408c-37 0 -48 12 -48 48v595c0 37 12 48 48 48h393c41 0 48 -16 48 -48v-8c0 -48 -23 -48 -58 -48h-284v-182h263c35 0 48 -10 48 -47c0 -40 -17 -47 -48 -47h-263'], + 0x1D5D9: [691,0,610,91,564,'238 299v-251c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v595c0 37 12 48 48 48h377c41 0 48 -16 48 -48v-8c0 -48 -23 -48 -57 -48h-269v-194h232c35 0 48 -10 48 -47c0 -40 -17 -47 -48 -47h-232'], + 0x1D5DA: [716,22,732,61,659,'618 536c-19 0 -56 80 -190 80c-205 0 -220 -173 -220 -269c0 -108 21 -269 221 -269c28 0 66 4 94 11v141h-69c-26 0 -27 1 -27 27v40c0 26 1 27 27 27h178c26 0 27 -1 27 -27v-243c0 -18 0 -20 -3 -23c-5 -4 -99 -53 -231 -53c-240 0 -364 125 -364 369 c0 237 116 369 366 369c79 0 131 -13 193 -40c22 -10 29 -12 29 -22l-17 -100c-3 -15 -8 -18 -14 -18'], + 0x1D5DB: [694,0,793,91,702,'702 646v-598c0 -35 -10 -48 -48 -48h-51c-41 0 -48 16 -48 48v266h-317v-266c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-238h317v238c0 35 10 48 48 48h51c41 0 48 -16 48 -48'], + 0x1D5DC: [694,0,329,92,239,'239 646v-598c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48'], + 0x1D5DD: [694,22,518,46,427,'427 646v-497c0 -117 -85 -171 -192 -171c-45 0 -105 9 -164 35c-19 8 -25 11 -25 20l15 88c2 10 4 19 14 19c6 0 8 -2 16 -12c14 -18 46 -50 104 -50c88 0 88 56 88 77v491c0 35 10 48 48 48h48c41 0 48 -16 48 -48'], + 0x1D5DE: [694,0,762,91,701,'421 405l280 -376c0 -29 -14 -29 -35 -29h-60c-19 0 -34 0 -50 21l-224 300l-111 -105v-168c0 -35 -10 -48 -48 -48h-34c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h34c41 0 48 -16 48 -48v-276l322 304c21 20 41 20 58 20h61c14 0 34 0 34 -21c0 -4 0 -10 -12 -21'], + 0x1D5DF: [694,0,579,91,534,'238 105h249c46 0 47 -25 47 -48v-9c0 -35 -10 -48 -48 -48h-347c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-541'], + 0x1D5E0: [694,0,976,91,886,'687 651c17 41 42 43 67 43h84c41 0 48 -16 48 -48v-598c0 -35 -10 -48 -48 -48h-27c-41 0 -48 16 -48 48v517h-1c-7 -26 -61 -162 -71 -186l-128 -314c-18 -43 -42 -43 -76 -43s-58 0 -76 43c-24 59 -185 455 -196 500h-1v-517c0 -35 -10 -48 -48 -48h-27 c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h83c18 0 50 0 67 -41l199 -504h1c8 35 177 451 198 502'], + 0x1D5E1: [694,0,793,91,702,'303 654l275 -533h1v525c0 35 10 48 48 48h27c41 0 48 -16 48 -48v-598c0 -35 -10 -48 -48 -48h-93c-20 0 -50 0 -71 40l-275 533h-1v-525c0 -35 -10 -48 -48 -48h-27c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h93c20 0 50 0 71 -40'], + 0x1D5E2: [716,22,793,61,732,'732 342c0 -205 -78 -364 -336 -364c-270 0 -335 177 -335 364c0 183 59 374 336 374c262 0 335 -173 335 -374zM397 58c188 0 188 211 188 300c0 90 0 280 -189 280c-188 0 -188 -192 -188 -280c0 -91 0 -300 189 -300'], + 0x1D5E3: [694,0,701,91,641,'238 268v-220c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h250c154 0 252 -65 252 -216c0 -144 -94 -210 -251 -210h-152zM358 608h-123v-261h122c134 0 145 64 145 131c0 70 -13 130 -144 130'], + 0x1D5E4: [716,106,793,61,732,'562 -106c-39 0 -36 2 -94 89c-32 -5 -55 -5 -72 -5c-270 0 -335 177 -335 364c0 183 59 374 336 374c262 0 335 -173 335 -374c0 -72 -7 -237 -134 -314l65 -84c13 -18 15 -20 15 -28c0 -22 -23 -22 -36 -22h-80zM416 58c0 8 -70 96 -70 113c0 23 22 23 36 23h61 c20 0 24 0 34 -11l55 -71c56 64 56 168 56 231c0 89 0 295 -192 295c-191 0 -191 -207 -191 -295c0 -89 0 -287 191 -287c4 0 20 0 20 2'], + 0x1D5E5: [694,0,701,91,653,'483 320l170 -290c0 -30 -17 -30 -37 -30h-59c-22 0 -33 0 -47 24l-164 287h-111v-263c0 -35 -10 -48 -48 -48h-48c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h240c45 0 262 0 262 -197c0 -124 -95 -162 -158 -177zM235 383h130c123 0 137 54 137 113 c0 66 -21 112 -137 112h-130v-225'], + 0x1D5E6: [716,22,610,48,549,'481 536c-18 0 -49 77 -176 77c-34 0 -119 -2 -119 -87c0 -57 62 -80 84 -85l96 -22c100 -23 183 -107 183 -219c0 -155 -94 -222 -244 -222c-26 0 -80 2 -147 23c-5 2 -112 39 -109 59l17 100c3 15 8 18 14 18c4 0 6 0 18 -12c50 -45 123 -79 207 -79c33 0 119 3 119 97 c0 86 -94 98 -131 107c-78 18 -125 28 -176 80c-19 20 -56 66 -56 137c0 187 155 208 244 208c51 0 110 -5 181 -40c25 -13 26 -14 26 -22c-4 -33 -12 -72 -17 -100c-2 -15 -8 -18 -14 -18'], + 0x1D5E7: [688,0,732,40,692,'293 587l-201 -3c-28 0 -52 0 -52 48v8c0 37 12 48 48 48h556c41 0 48 -16 48 -48v-8c0 -48 -24 -48 -52 -48c-44 0 -156 3 -200 3v-539c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v539'], + 0x1D5E8: [694,22,762,91,672,'672 646v-417c0 -217 -174 -251 -288 -251c-127 0 -293 41 -293 252v416c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-420c0 -103 31 -162 147 -162c122 0 151 65 151 163v419c0 35 10 48 48 48h40c41 0 48 -16 48 -48'], + 0x1D5E9: [694,0,732,27,705,'700 649l-223 -605c-16 -44 -44 -44 -65 -44h-92c-20 0 -49 0 -64 42l-224 607c-4 12 -5 13 -5 18c0 27 25 27 39 27h54c21 0 49 0 65 -43l189 -526l187 525c16 44 45 44 66 44h39c14 0 39 0 39 -27c0 -5 -1 -6 -5 -18'], + 0x1D5EA: [694,0,1037,24,1014,'846 42c-11 -42 -39 -42 -60 -42h-72c-20 0 -48 0 -59 42l-138 525h-1c-2 -21 -39 -187 -137 -521c-12 -46 -40 -46 -61 -46h-66c-21 0 -49 0 -60 42l-164 604c-4 14 -4 18 -4 19c0 29 27 29 41 29h34c19 0 48 0 60 -43c17 -63 127 -471 135 -523h1l134 522 c12 44 40 44 61 44h66c29 0 49 -5 60 -44l137 -522h1l138 522c12 44 40 44 60 44h21c14 0 41 0 41 -29'], + 0x1D5EB: [694,0,732,37,694,'433 368l252 -326c4 -5 9 -13 9 -20c0 -22 -23 -22 -36 -22h-83c-19 0 -35 0 -50 22l-167 240l-161 -238c-12 -18 -16 -24 -49 -24h-75c-14 0 -36 0 -36 23c0 7 237 333 246 345l-219 284c-10 12 -10 14 -10 20c0 22 21 22 35 22h83c21 0 34 0 51 -23l135 -185l131 187 c15 21 32 21 49 21h75c14 0 36 0 36 -23c0 -7 -207 -291 -216 -303'], + 0x1D5EC: [694,0,732,24,708,'699 650l-261 -373v-230c0 -37 -13 -47 -48 -47h-48c-37 0 -48 12 -48 48v230l-261 373c-6 8 -9 13 -9 20c0 23 22 23 36 23h66c36 0 58 -8 81 -41l168 -250l169 253c27 38 58 38 79 38h49c14 0 36 0 36 -23c0 -7 -5 -16 -9 -21'], + 0x1D5ED: [694,0,671,61,616,'600 607l-360 -502c92 2 231 0 319 0c34 0 57 0 57 -48v-9c0 -35 -10 -48 -48 -48h-459c-37 0 -48 12 -48 48v8c0 20 0 22 10 35l362 505h-296c-40 0 -61 0 -61 49c0 32 6 49 48 49h438c47 0 48 -23 48 -50c0 -22 0 -24 -10 -37'], + 0x1D5EE: [475,11,524,31,464,'258 409c-113 0 -151 -73 -166 -73c-7 0 -12 5 -13 11c-1 8 -7 66 -7 73c0 11 5 14 26 23c67 28 117 32 164 32c50 0 202 -1 202 -159v-268c0 -35 -10 -48 -48 -48h-37c-41 0 -48 16 -48 48v20c-47 -69 -122 -79 -156 -79c-88 0 -144 74 -144 144c0 147 262 149 297 149 v35c0 59 -16 92 -70 92zM328 154v87c-28 -1 -167 -8 -167 -106c0 -38 27 -74 69 -74c3 0 98 0 98 93'], + 0x1D5EF: [694,11,560,61,523,'194 646v-233c9 10 59 56 141 56c188 0 188 -190 188 -238c0 -50 0 -242 -213 -242c-16 0 -67 0 -113 50c-1 -39 -31 -39 -48 -39h-40c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h37c41 0 48 -16 48 -48zM197 362v-262c11 -14 36 -39 78 -39c112 0 112 95 112 169 c0 75 0 167 -101 167c-46 0 -76 -23 -89 -35'], + 0x1D5F0: [475,11,487,37,457,'277 67c108 0 147 66 162 66c10 0 12 -10 12 -13c2 -13 6 -59 6 -70c0 -10 -1 -11 -29 -26c-67 -34 -127 -35 -154 -35c-151 0 -237 75 -237 241c0 175 93 245 242 245c70 0 100 -10 148 -32c17 -8 24 -12 24 -21c0 -5 -10 -61 -12 -69c-1 -4 -3 -13 -13 -13 c-21 0 -37 57 -146 57c-102 0 -107 -84 -107 -165c0 -64 0 -165 104 -165'], + 0x1D5F1: [694,11,560,37,499,'499 646v-598c0 -35 -10 -48 -48 -48h-40c-34 0 -48 10 -48 47c-43 -46 -86 -58 -128 -58c-198 0 -198 193 -198 239c0 49 0 241 203 241c31 0 81 -7 126 -50v227c0 35 10 48 48 48h37c41 0 48 -16 48 -48zM363 125v241c-22 21 -49 31 -78 31c-112 0 -112 -94 -112 -169 s0 -167 101 -167c12 0 35 2 60 18c29 20 29 29 29 46'], + 0x1D5F2: [475,11,510,31,479,'287 61c106 0 153 68 168 68c9 0 10 -1 14 -32c1 -8 4 -37 4 -44c0 -12 -7 -15 -29 -26c-66 -33 -123 -38 -161 -38c-157 0 -252 80 -252 244c0 152 79 242 239 242c149 0 209 -86 209 -215c0 -45 -25 -46 -48 -46h-272c3 -64 15 -153 128 -153zM160 267h208 c-3 78 -18 136 -98 136c-87 0 -107 -75 -110 -136'], + 0x1D5F3: [705,0,335,30,381,'368 595c-16 0 -23 38 -87 38c-65 0 -65 -40 -65 -66v-109h51c12 0 48 0 48 -36s-36 -36 -48 -36h-48v-338c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v338c-22 0 -56 0 -56 36s35 36 56 36v80c0 150 120 167 195 167c15 0 36 0 65 -6c34 -7 35 -8 35 -32v-46 c0 -16 0 -26 -13 -26'], + 0x1D5F4: [469,206,549,25,534,'200 92h48c135 0 276 0 276 -156c0 -142 -191 -142 -250 -142c-47 0 -114 1 -171 27c-63 29 -78 81 -78 112c0 64 52 82 67 88c-21 27 -27 60 -27 79c0 5 0 44 27 81c-38 33 -49 83 -49 123c0 165 159 165 201 165c43 0 95 -4 142 -35c38 23 88 35 119 35 c18 0 18 -2 22 -26c2 -10 7 -34 7 -38c0 -7 -5 -13 -13 -13c-3 0 -10 2 -14 4c-41 11 -76 11 -93 11c9 -11 31 -46 31 -104c0 -165 -159 -165 -201 -165c-21 0 -80 0 -127 26c-1 -6 -2 -8 -2 -15c0 -26 17 -41 21 -45c14 -12 28 -12 64 -12zM244 210c70 0 73 39 73 94 s-3 93 -73 93s-73 -39 -73 -94s3 -93 73 -93zM298 -17h-116c-23 0 -54 0 -54 -47c0 -70 107 -70 147 -70c32 0 146 0 146 67c0 36 -42 50 -123 50'], + 0x1D5F5: [694,0,560,60,500,'500 325v-277c0 -35 -10 -48 -48 -48h-40c-41 0 -48 16 -48 48v275c0 51 -10 74 -58 74c-52 0 -110 -41 -110 -128v-221c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h37c41 0 48 -16 48 -48v-274h1c14 28 60 97 160 97c102 0 146 -41 146 -144'], + 0x1D5F6: [695,0,254,54,201,'102 695h51c48 0 48 -21 48 -69c0 -47 0 -68 -48 -68h-52c-37 0 -47 13 -47 45v46c0 40 16 46 48 46zM194 410v-362c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v362c0 37 12 48 48 48h37c41 0 48 -16 48 -48'], + 0x1D5F7: [695,205,285,-71,224,'224 647v-41c0 -35 -10 -48 -48 -48h-51c-41 0 -48 16 -48 48v41c0 35 10 48 48 48h51c41 0 48 -16 48 -48zM-46 -99c8 0 30 -22 75 -22c62 0 62 40 62 66v465c0 35 10 48 48 48h37c41 0 48 -16 48 -48v-442c0 -99 -39 -173 -149 -173c-63 0 -146 28 -146 47 c0 3 2 11 9 33c5 19 6 26 16 26'], + 0x1D5F8: [694,0,529,69,497,'313 272l174 -228c10 -13 10 -20 10 -22c0 -22 -22 -22 -36 -22h-48c-29 0 -36 3 -53 25l-130 170l-47 -43v-104c0 -35 -10 -48 -48 -48h-18c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h21c41 0 48 -16 48 -48v-343l144 134c23 21 42 21 60 21h58c14 0 34 0 34 -21 c0 -8 -3 -11 -15 -22'], + 0x1D5F9: [694,0,254,61,194,'194 646v-598c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h37c41 0 48 -16 48 -48'], + 0x1D5FA: [469,0,865,60,806,'191 366c18 38 66 103 164 103c42 0 127 -3 143 -99c36 66 91 99 162 99c102 0 146 -41 146 -144v-277c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v275c0 53 -11 74 -59 74c-49 0 -110 -38 -110 -128v-221c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v275 c0 53 -11 74 -59 74c-49 0 -110 -38 -110 -128v-221c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v368c0 37 12 48 48 48h34c41 0 48 -16 48 -48v-50h1'], + 0x1D5FB: [469,0,560,60,500,'500 325v-277c0 -35 -10 -48 -48 -48h-40c-41 0 -48 16 -48 48v275c0 51 -10 74 -58 74c-52 0 -110 -41 -110 -128v-221c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v368c0 37 12 48 48 48h34c41 0 48 -16 48 -48v-50h1c13 27 58 103 163 103c102 0 146 -41 146 -144 '], + 0x1D5FC: [475,11,549,31,518,'518 225c0 -164 -87 -236 -244 -236s-243 73 -243 236c0 161 77 250 244 250c163 0 243 -86 243 -250zM275 67c107 0 107 91 107 170c0 78 0 166 -108 166c-107 0 -107 -89 -107 -166c0 -80 0 -170 108 -170'], + 0x1D5FD: [469,194,560,61,523,'197 39v-185c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v556c0 37 12 48 48 48h37c34 0 48 -10 48 -47c36 34 89 58 148 58c181 0 181 -189 181 -238c0 -50 0 -242 -212 -242c-14 0 -69 0 -114 50zM197 358v-240c0 -18 0 -23 24 -40c12 -9 30 -17 53 -17 c113 0 113 128 113 168c0 44 -1 162 -103 162c-43 0 -76 -23 -87 -33'], + 0x1D5FE: [469,194,560,37,499,'499 421v-567c0 -35 -10 -48 -48 -48h-40c-41 0 -48 16 -48 48v194c-34 -39 -71 -59 -124 -59c-186 0 -202 161 -202 239c0 80 16 241 209 241c17 0 76 0 120 -67v19c0 35 10 48 48 48h37c41 0 48 -16 48 -48zM366 115v198c0 12 0 30 -26 55c-18 19 -39 23 -55 23 c-112 0 -112 -124 -112 -164c0 -39 0 -166 102 -166c46 0 73 29 91 54'], + 0x1D5FF: [469,0,371,61,356,'194 230v-182c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v368c0 37 12 48 48 48h32c41 0 48 -16 48 -48v-65h1c47 108 120 118 148 118c18 0 18 -7 18 -27v-47c0 -26 -2 -26 -20 -27c-63 -4 -142 -43 -142 -138'], + 0x1D600: [475,11,420,31,396,'353 347c-15 0 -44 57 -145 57c-39 0 -72 -8 -72 -49c0 -39 40 -47 95 -57c42 -8 77 -14 117 -50c18 -16 48 -51 48 -107c0 -148 -126 -152 -177 -152c-17 0 -58 0 -113 17c-1 1 -75 24 -75 42l14 81c1 6 3 15 13 15c18 0 50 -77 161 -77c39 0 78 7 78 54 c0 79 -135 39 -211 108c-27 24 -49 54 -49 103c0 143 134 143 179 143c89 0 162 -29 162 -46l-12 -69c-1 -4 -3 -13 -13 -13'], + 0x1D601: [589,11,403,20,373,'373 47c0 -23 -102 -58 -180 -58c-69 0 -105 43 -105 144v253h-20c-12 0 -48 0 -48 36s37 36 48 36h23v83c0 37 12 48 48 48h31c41 0 48 -16 48 -48v-83h89c12 0 48 0 48 -36s-36 -36 -48 -36h-89v-236c0 -66 15 -83 39 -83c56 0 82 37 92 37c9 0 11 -6 16 -26 c6 -21 8 -28 8 -31'], + 0x1D602: [458,11,560,60,500,'500 410v-362c0 -35 -10 -48 -48 -48h-37c-41 0 -48 16 -48 48v26c-47 -85 -118 -85 -145 -85c-104 0 -162 30 -162 137v284c0 37 12 48 48 48h40c41 0 48 -16 48 -48v-293c0 -53 6 -67 62 -67c71 0 106 57 106 123v237c0 35 10 48 48 48h40c41 0 48 -16 48 -48'], + 0x1D603: [458,0,499,26,473,'468 411l-119 -369c-14 -42 -45 -42 -63 -42h-73c-18 0 -49 0 -63 42l-119 369c-5 14 -5 16 -5 19c0 28 25 28 40 28h24c48 0 55 -22 62 -43l99 -302l99 302c9 28 20 43 62 43h21c15 0 40 0 40 -28c0 -3 0 -5 -5 -19'], + 0x1D604: [458,0,743,24,719,'719 430l-107 -384c-10 -34 -20 -46 -63 -46h-68c-50 0 -55 19 -66 55c-13 47 -57 205 -63 262l-1 -1c-4 -52 -40 -178 -63 -261c-11 -40 -19 -55 -66 -55h-28c-25 0 -51 0 -64 46l-106 384c3 28 24 28 43 28h20c41 0 52 -11 62 -45l80 -283c35 117 79 290 88 305 c14 23 37 23 52 23c46 0 53 -23 59 -45l85 -300c15 57 59 213 81 290c14 52 26 55 73 55c31 0 49 0 52 -28'], + 0x1D605: [458,0,499,24,474,'247 328c96 130 91 130 131 130h43c15 0 35 0 35 -22c0 -5 0 -9 -10 -21l-145 -178l162 -194c7 -9 11 -13 11 -21c0 -22 -21 -22 -35 -22h-44c-21 0 -33 0 -47 20l-102 144l-86 -128c-22 -33 -24 -36 -57 -36h-43c-14 0 -36 0 -36 22c0 8 4 13 10 20l158 195l-151 180 c-7 8 -10 12 -10 19c0 22 22 22 35 22h44c23 0 34 -1 51 -22'], + 0x1D606: [458,205,499,29,473,'49 -95c11 0 30 -25 77 -25c68 0 77 68 97 120l-189 416c-2 5 -5 12 -5 16c0 26 25 26 39 26h26c50 0 57 -15 85 -78l89 -238h1l89 293c15 23 37 23 53 23h22c13 0 40 0 40 -27c0 -5 0 -7 -5 -20l-163 -474c-8 -24 -57 -142 -181 -142c-16 0 -70 2 -79 14 c-3 4 -9 73 -9 81c0 12 8 15 13 15'], + 0x1D607: [458,0,475,31,441,'426 382l-244 -307h199c29 0 60 0 60 -38c0 -37 -35 -37 -48 -37h-314c-17 0 -48 0 -48 42c0 16 2 21 12 34l244 307h-182c-27 0 -59 0 -59 37c0 38 35 38 48 38h296c17 0 48 0 48 -42c0 -16 -2 -21 -12 -34'], + 0x1D608: [694,0,665,28,638,'525 694l113 -694h-92l-33 204h-291l-120 -204h-74l408 694h89zM457 625l-201 -365h247'], + 0x1D609: [694,0,665,97,696,'245 694h237c126 0 214 -66 214 -149c0 -90 -99 -158 -202 -182c90 -14 159 -72 159 -148c0 -103 -130 -215 -292 -215h-264zM263 391h116c152 0 238 82 238 143c0 60 -76 104 -175 104h-126zM192 56h153c123 0 227 74 227 152c0 70 -78 122 -177 122h-145'], + 0x1D60A: [716,22,637,131,722,'722 681l-32 -81h-1c-51 41 -104 52 -158 52c-161 0 -310 -193 -310 -388c0 -109 52 -222 184 -222c85 0 127 18 199 61l-9 -69c-89 -50 -142 -56 -204 -56c-179 0 -260 141 -260 281c0 225 192 457 415 457c87 0 136 -19 176 -35'], + 0x1D60B: [694,0,721,96,747,'244 694h262c150 0 241 -121 241 -268c0 -222 -191 -426 -388 -426h-263zM318 638l-124 -582h153c179 0 314 182 314 370c0 115 -63 212 -191 212h-152'], + 0x1D60C: [691,0,596,94,687,'253 329l-55 -258h371l-15 -71h-460l147 691h446l-14 -65h-357l-50 -236h330l-13 -61h-330'], + 0x1D60D: [691,0,568,94,673,'250 315l-67 -315h-89l147 691h432l-14 -65h-343l-53 -250h302l-13 -61h-302'], + 0x1D60E: [716,22,665,131,733,'663 299l-58 -272c-90 -39 -165 -49 -218 -49c-160 0 -256 127 -256 281c0 227 195 457 414 457c71 0 128 -13 188 -50l-32 -80c-44 42 -91 66 -170 66c-160 0 -310 -193 -310 -388c0 -125 66 -222 180 -222c40 0 91 8 123 18c10 3 11 4 14 19l34 159h-132l12 61h211'], + 0x1D60F: [694,0,707,94,761,'761 694l-148 -694h-89l70 330h-341l-70 -330h-89l148 694h89l-65 -303h341l65 303h89'], + 0x1D610: [694,0,276,94,331,'331 694l-148 -694h-89l148 694h89'], + 0x1D611: [694,22,471,46,536,'536 694l-117 -550c-14 -68 -73 -166 -211 -166c-85 0 -138 30 -162 43l30 74c41 -54 96 -56 116 -56c28 0 120 7 142 111l116 544h86'], + 0x1D612: [694,0,693,96,785,'458 420l193 -420h-92l-167 364l-163 -137l-48 -227h-85l148 694h85l-79 -371l441 371h94'], + 0x1D613: [694,0,540,94,513,'331 694l-134 -628c89 0 227 -1 316 0l-14 -66h-405l148 694h89'], + 0x1D614: [694,0,874,100,922,'922 694l-148 -694h-78l132 620l-352 -598h-72c-12 71 -91 534 -93 597h-1l-132 -619h-78l148 694h113l96 -600h1l349 600h115'], + 0x1D615: [694,0,707,96,759,'759 694l-148 -694h-125l-179 619h-1l-132 -619h-78l148 694h124l179 -619h1l133 619h78'], + 0x1D616: [716,22,735,119,762,'762 436c0 -241 -202 -458 -399 -458c-147 0 -244 120 -244 277c0 229 196 461 401 461c135 0 242 -107 242 -280zM377 43c158 0 299 214 299 401c0 129 -73 208 -170 208c-144 0 -295 -171 -295 -389c0 -147 78 -220 166 -220'], + 0x1D617: [694,0,637,96,690,'246 289l-61 -289h-89l148 694h249c121 0 197 -74 197 -166c0 -125 -138 -239 -276 -239h-168zM318 638l-62 -291h141c138 0 212 94 212 174c0 75 -60 117 -150 117h-141'], + 0x1D618: [716,125,735,119,762,'522 -125l-60 121c-38 -14 -75 -18 -99 -18c-147 0 -244 120 -244 277c0 229 196 461 401 461c135 0 242 -107 242 -280c0 -121 -55 -290 -222 -403l85 -158h-103zM453 194l57 -105c107 78 166 221 166 346c0 146 -81 217 -170 217c-158 0 -301 -201 -301 -396 c0 -123 67 -214 172 -214c20 0 39 3 58 9l-70 143h88'], + 0x1D619: [694,0,644,96,700,'488 326l129 -326h-89l-120 317h-159l-67 -317h-86l148 694h241c127 0 215 -69 215 -158c0 -77 -71 -171 -212 -210zM318 638l-56 -260h145c141 0 212 84 212 152c0 55 -45 108 -158 108h-143'], + 0x1D61A: [716,22,554,54,607,'607 667l-32 -81c-44 46 -91 64 -156 64c-96 0 -173 -68 -173 -140s64 -89 105 -100c91 -24 118 -31 151 -68c38 -43 42 -90 42 -112c0 -121 -121 -252 -274 -252c-83 0 -164 28 -216 70l32 80c57 -59 135 -81 198 -81c103 0 177 84 177 157c0 21 -6 46 -26 70 c-47 54 -160 29 -234 107c-30 32 -39 73 -39 102c0 110 116 233 272 233c70 0 118 -15 173 -49'], + 0x1D61B: [688,0,679,155,790,'518 623l-133 -623h-89l133 623h-261c-45 5 45 0 0 0l14 65h608l-14 -65h-258'], + 0x1D61C: [694,22,686,137,741,'741 694l-100 -466c-29 -137 -164 -250 -299 -250c-120 0 -205 84 -205 201c0 27 1 32 5 49l100 466h89l-100 -466c-1 -4 -5 -30 -5 -54c0 -106 70 -140 128 -140c86 0 182 68 209 194l100 466h78'], + 0x1D61D: [694,0,665,161,800,'800 694l-421 -694h-92l-126 694h93l101 -622h1l366 622h78'], + 0x1D61E: [694,0,943,161,1077,'1077 694l-351 -694h-87l-39 618h-1l-301 -618h-81l-56 694h86l36 -618h1c5 18 254 528 298 618h81l38 -620h1l302 620h73'], + 0x1D61F: [694,0,665,14,758,'447 366l205 -366h-104l-157 306l-281 -306h-96l346 366l-185 328h105l138 -261l244 261h96'], + 0x1D620: [694,0,665,150,811,'811 694l-376 -416l-59 -278h-86l59 278l-199 416h105l160 -347l308 347h88'], + 0x1D621: [694,0,610,56,701,'701 694c-9 -43 -8 -42 -17 -51l-501 -577h391l-14 -66h-504c1 4 6 27 6 29c3 13 3 15 12 24l502 580l-373 -1l13 62h485'], + 0x1D622: [461,11,479,65,465,'462 294l-63 -294h-75c2 8 5 26 7 35c-64 -41 -149 -46 -175 -46c-87 0 -91 80 -91 96c0 136 210 156 283 159c4 0 21 1 24 2c3 2 15 60 15 77s-6 79 -68 79c-64 0 -115 -21 -161 -50c1 4 5 37 8 66c44 22 94 43 166 43c85 0 133 -58 133 -131c0 -13 0 -22 -3 -36z M349 130l13 64c-46 -2 -223 -10 -223 -90c0 -32 31 -54 81 -54c14 0 111 0 129 80'], + 0x1D623: [694,11,515,82,535,'305 694l-64 -298c49 36 115 59 173 59c84 0 121 -82 121 -163c0 -164 -124 -303 -243 -303c-56 0 -94 24 -122 57l-10 -46h-78l148 694h75zM232 336l-47 -222c12 -40 39 -64 82 -64c113 0 189 114 189 227c0 77 -47 117 -106 117c-63 0 -108 -47 -118 -58'], + 0x1D624: [461,11,443,77,499,'499 417l-26 -64c-45 33 -72 44 -132 44c-124 0 -185 -135 -185 -222c0 -71 38 -122 108 -122c73 0 129 29 168 54l-8 -67c-63 -37 -121 -51 -174 -51c-115 0 -173 89 -173 180c0 133 117 292 277 292c54 0 92 -6 145 -44'], + 0x1D625: [694,11,515,76,582,'582 694l-148 -694h-78l11 52c-69 -56 -131 -63 -161 -63c-82 0 -130 74 -130 167c0 151 114 299 234 299c45 0 97 -16 134 -55l63 294h75zM385 134l40 191c2 8 2 11 2 13s-18 56 -84 56c-108 0 -188 -108 -188 -226c0 -96 64 -118 105 -118c65 0 120 58 125 84'], + 0x1D626: [461,11,443,77,471,'333 461c63 0 138 -31 138 -154c0 -32 -6 -71 -10 -88h-310c-3 -13 -3 -24 -3 -37c0 -81 47 -132 114 -132c66 0 128 30 164 56c-2 -15 -5 -52 -7 -65c-39 -25 -103 -52 -170 -52c-106 0 -172 79 -172 182c0 146 127 290 256 290zM168 274h248c0 32 0 126 -95 126 c-55 0 -118 -46 -153 -126'], + 0x1D627: [705,0,304,101,494,'258 386l-82 -386h-75l82 386h-74l12 58h74l21 95c19 89 102 166 201 166c25 0 52 -4 77 -11l-14 -67c-33 16 -64 17 -77 17c-51 0 -100 -27 -110 -77l-26 -123h113l-12 -58h-110'], + 0x1D628: [455,206,499,11,571,'571 455c0 -61 -3 -62 -8 -62c-16 0 -36 2 -53 2c-24 0 -53 -4 -75 -4c-1 0 -4 3 -5 3c8 -14 17 -39 17 -68c0 -100 -96 -197 -197 -197c-29 0 -59 7 -87 30c-12 -14 -19 -32 -19 -50c0 -40 31 -40 48 -40h88c118 0 179 -35 179 -111c0 -111 -143 -164 -253 -164 c-118 0 -195 53 -195 117c0 37 28 90 88 121c-9 13 -13 35 -13 50c0 18 5 62 50 110c-11 20 -16 43 -16 66c0 98 94 197 198 197c27 0 60 -7 88 -32c39 15 94 32 165 32zM261 186c78 0 116 79 116 139c0 51 -33 73 -71 73c-78 0 -116 -80 -116 -139c0 -51 33 -73 71 -73z M265 -3h-90c-75 0 -93 -61 -93 -78c0 -39 59 -68 136 -68c87 0 169 37 169 87c0 48 -61 59 -122 59'], + 0x1D629: [694,0,515,81,505,'499 304l-64 -304h-78l65 307c0 2 2 18 2 21c0 50 -34 66 -81 66c-65 0 -112 -57 -136 -167l-48 -227h-78l148 694h74l-65 -311c26 27 81 72 157 72c80 0 110 -39 110 -100c0 -15 0 -23 -6 -51'], + 0x1D62A: [680,0,237,81,307,'307 680l-19 -89h-89l19 89h89zM81 0l94 444h75l-94 -444h-75'], + 0x1D62B: [680,205,265,-97,329,'329 680l-19 -89h-89l19 89h89zM2 -141c83 0 92 72 92 72l109 513h75l-108 -508c-17 -79 -83 -141 -155 -141c-26 0 -72 6 -112 34l28 61c18 -21 42 -31 71 -31'], + 0x1D62C: [694,0,487,84,543,'339 272l132 -272h-82l-108 223l-98 -81l-30 -142h-69l148 694h72l-98 -458l248 208h89'], + 0x1D62D: [694,0,237,81,304,'304 694l-148 -694h-75l148 694h75'], + 0x1D62E: [455,0,793,81,783,'777 304l-64 -304h-78l65 307c0 2 2 18 2 21c0 53 -39 66 -81 66c-76 0 -117 -75 -137 -167l-48 -227h-78l65 307c0 2 2 18 2 21c0 53 -39 66 -81 66c-76 0 -117 -75 -137 -167l-48 -227h-78l96 450h72l-15 -71c22 24 81 76 161 76c86 0 106 -43 110 -83 c24 25 80 83 167 83c81 0 111 -39 111 -100c0 -23 -2 -33 -6 -51'], + 0x1D62F: [455,0,515,81,505,'499 304l-64 -304h-78l65 307c0 2 2 18 2 21c0 50 -34 66 -81 66c-65 0 -112 -57 -136 -167l-48 -227h-78l96 450h72l-15 -71c42 45 99 76 161 76c80 0 110 -39 110 -100c0 -15 0 -23 -6 -51'], + 0x1D630: [461,11,499,71,522,'522 275c0 -154 -139 -286 -274 -286c-107 0 -177 79 -177 180c0 143 133 292 276 292c108 0 175 -85 175 -186zM261 53c114 0 185 127 185 227c0 74 -45 120 -112 120c-103 0 -183 -105 -183 -223c0 -97 63 -124 110 -124'], + 0x1D631: [455,194,515,41,535,'170 46l-51 -240h-78l135 638h75l-10 -49c47 35 115 60 177 60c79 0 117 -77 117 -162c0 -166 -125 -304 -243 -304c-71 0 -107 40 -122 57zM228 318l-40 -188c0 -2 -3 -13 -3 -14c0 -4 14 -66 82 -66c92 0 187 102 187 215c0 75 -43 126 -105 126c-20 0 -60 -5 -104 -43 c-12 -12 -13 -13 -17 -30'], + 0x1D632: [455,194,515,76,531,'531 455l-138 -649h-78l51 243c-32 -24 -93 -60 -163 -60c-80 0 -127 72 -127 166c0 162 125 300 242 300c70 0 110 -45 124 -67l14 67h75zM261 50c54 0 119 48 127 87l30 143l4 18c0 1 0 93 -80 93c-89 0 -186 -98 -186 -214c0 -68 37 -127 105 -127'], + 0x1D633: [455,0,340,82,424,'424 455l-15 -67c-110 -3 -184 -89 -202 -154c-4 -15 -24 -111 -50 -234h-75l96 450h70l-19 -88h1c2 2 76 91 194 93'], + 0x1D634: [461,11,382,36,434,'100 306c0 56 44 155 196 155c57 0 93 -10 138 -32l-25 -65h-1c-40 26 -79 38 -133 38c-100 0 -100 -71 -100 -73c0 -72 108 -39 177 -93c9 -8 38 -34 38 -82c0 -41 -31 -165 -196 -165c-96 0 -158 42 -158 45c0 4 3 10 4 13l22 54c50 -41 108 -49 144 -49 c110 0 110 79 110 80c0 79 -125 45 -183 102c-20 19 -33 42 -33 72'], + 0x1D635: [571,11,360,101,410,'257 386l-55 -262c-1 -6 -3 -14 -3 -24c0 -47 27 -47 38 -47c26 0 61 8 97 33l4 -59c-49 -23 -101 -38 -154 -38c-38 0 -62 20 -62 77c0 38 50 263 63 320h-84l12 58h87l27 127h69l-27 -127h141l-12 -58h-141'], + 0x1D636: [444,11,515,99,529,'529 444l-94 -444h-75l10 48c-55 -41 -128 -59 -185 -59c-75 0 -86 39 -86 76c0 14 1 28 4 41l72 338h78l-71 -336c-3 -14 -3 -21 -3 -24c0 -28 17 -40 68 -40c87 0 133 61 142 104l62 296h78'], + 0x1D637: [444,0,460,108,540,'540 444l-266 -444h-88l-78 444h78l56 -391l1 -1l223 392h74'], + 0x1D638: [444,0,682,108,762,'419 388c-20 -68 -171 -352 -189 -388h-79l-43 444h76l24 -386l1 -1l188 387h71l28 -389h1l192 389h73l-231 -444h-87l-24 388h-1'], + 0x1D639: [444,0,460,0,538,'309 229l151 -229h-83l-110 188l-185 -188h-82l243 229l-143 215h83l104 -165l168 165h83'], + 0x1D63A: [444,205,460,1,540,'540 444l-329 -532c-70 -113 -111 -117 -140 -117c-16 0 -43 2 -70 8l8 65c26 -12 58 -16 75 -16c25 0 41 17 70 61c8 12 54 83 54 89l-100 442h79l62 -386h1l215 386h75'], + 0x1D63B: [444,0,433,28,494,'477 396l-338 -334h276l-13 -62h-374c7 48 19 51 21 53l335 332h-260l12 59h358l-5 -28c-3 -10 -3 -11 -12 -20'], + 0x1D63C: [695,0,696,28,670,'552 695l118 -695h-155l-33 184h-241l-120 -184h-93l408 695h116zM439 544l-156 -265h187'], + 0x1D63D: [695,0,749,68,781,'217 695h265c176 0 299 -74 299 -168c0 -80 -139 -140 -283 -162c120 -13 212 -67 212 -137c0 -109 -155 -228 -349 -228h-293zM293 413h86c171 0 267 60 267 105c0 47 -89 82 -204 82h-98zM222 95h123c123 0 227 58 227 119c0 55 -78 95 -177 95h-117'], + 0x1D63E: [733,37,700,131,785,'785 688l-32 -148h-1c-51 66 -104 84 -158 84c-161 0 -310 -172 -310 -346c0 -102 52 -207 184 -207c85 0 127 17 199 57v-83c-93 -73 -148 -82 -213 -82c-222 0 -323 156 -323 310c0 226 221 460 478 460c87 0 136 -24 176 -45'], + 0x1D63F: [695,0,781,66,807,'215 695h291c187 0 301 -120 301 -266c0 -224 -221 -429 -448 -429h-293zM347 600l-123 -505h123c179 0 314 164 314 334c0 93 -63 171 -191 171h-123'], + 0x1D640: [690,0,596,63,687,'283 308l-53 -187h339l-15 -121h-491l148 690h476l-14 -110h-327l-48 -168h298l-13 -104h-300'], + 0x1D641: [690,0,568,63,673,'280 294l-67 -294h-150l148 690h462l-14 -110h-313l-51 -182h270l-13 -104h-272'], + 0x1D642: [733,37,743,131,811,'726 321l-58 -275c-90 -66 -165 -83 -218 -83c-199 0 -319 131 -319 290c0 238 225 480 477 480c77 0 138 -17 203 -67l-47 -98c-44 35 -91 56 -170 56c-160 0 -310 -181 -310 -363c0 -107 66 -190 180 -190c40 0 91 6 123 14c-9 3 -9 4 -12 21l33 111h-179l15 104h282'], + 0x1D643: [695,0,737,63,791,'791 695l-148 -695h-150l69 309h-279l-70 -309h-150l149 695h149l-63 -282h279l65 282h149'], + 0x1D644: [695,0,442,93,497,'497 695l-252 -695h-152l252 695h152'], + 0x1D645: [695,37,500,33,565,'565 695l-117 -537c-16 -80 -83 -195 -240 -195c-92 0 -149 43 -175 61l43 95c41 -51 96 -53 116 -53c22 0 96 7 113 111l116 518h144'], + 0x1D646: [695,0,707,66,799,'491 421l192 -421h-151l-155 327l-120 -97l-48 -230h-143l150 695h141l-64 -303l384 303h122'], + 0x1D647: [695,0,540,62,513,'361 695l-132 -584h284l-14 -111h-437l150 695h149'], + 0x1D648: [695,0,874,100,922,'922 695l-122 -695h-131l100 464l43 79c-30 -52 -34 -58 -119 -195l-208 -338h-101l-64 362c-11 56 -28 145 -30 196h38l-124 -568h-104l107 695h154l87 -355c10 -62 27 -152 30 -208h-30c12 31 69 122 138 235l186 328h150'], + 0x1D649: [695,0,733,69,785,'785 695l-148 -695h-178l-169 568h34l-124 -568h-131l149 695h177l170 -567h-36l126 567h130'], + 0x1D64A: [733,37,769,119,796,'796 438c0 -250 -201 -475 -398 -475c-168 0 -279 133 -279 307c0 230 198 463 405 463c152 0 272 -113 272 -295zM409 73c127 0 241 199 241 372c0 111 -59 179 -137 179c-116 0 -238 -153 -238 -347c0 -136 63 -204 134 -204'], + 0x1D64B: [695,0,694,66,747,'276 269l-61 -269h-149l149 695h278c156 0 254 -74 254 -166c0 -136 -167 -260 -333 -260h-138zM347 600l-60 -232h110c138 0 212 76 212 140c0 59 -60 92 -150 92h-112'], + 0x1D64C: [733,132,770,119,797,'489 -132l-20 70c-28 19 -56 25 -74 25c-166 0 -276 133 -276 306c0 230 197 464 404 464c153 0 274 -113 274 -295c0 -115 -55 -275 -224 -382l79 -188h-163zM461 298l72 -138c76 62 118 177 118 277c0 126 -66 187 -139 187c-130 0 -247 -180 -247 -354 c0 -114 55 -199 141 -199c3 0 6 2 9 6l-121 253'], + 0x1D64D: [695,0,701,66,757,'513 316l135 -316h-147l-118 296h-105l-67 -296h-145l149 695h270c161 0 272 -76 272 -175c0 -75 -82 -166 -244 -204zM347 600l-54 -200h114c141 0 212 64 212 115c0 43 -45 85 -158 85h-114'], + 0x1D64E: [733,37,579,36,632,'632 665l-47 -99c-54 40 -113 55 -193 55c-48 0 -87 -58 -87 -119c3 -30 75 -63 174 -127c65 -49 75 -102 75 -127c0 -137 -105 -285 -237 -285c-108 0 -213 37 -281 93l50 98c69 -54 162 -74 238 -74c52 0 89 77 89 144c7 45 -76 70 -185 138c-51 37 -66 84 -66 117 c0 120 101 254 237 254c94 0 159 -21 233 -68'], + 0x1D64F: [686,0,679,168,790,'548 575l-133 -575h-150l132 575h-229l14 111h608l-14 -111h-228'], + 0x1D650: [695,37,774,137,829,'829 695l-100 -460c-32 -149 -178 -272 -325 -272c-156 0 -267 97 -267 232c0 29 2 34 8 52l129 448h149l-126 -462c-2 -3 -9 -24 -9 -43c0 -100 70 -132 128 -132c75 0 159 66 183 189l100 448h130'], + 0x1D651: [695,0,685,129,820,'820 695l-421 -695h-143l-127 695h156l92 -522c3 9 189 307 325 522h118'], + 0x1D652: [695,0,963,131,1097,'1097 695l-351 -695h-134l-36 507l-261 -507h-127l-57 695h146l29 -497l276 497h81l63 -494l258 494h113'], + 0x1D653: [695,0,683,-19,776,'479 368l209 -368h-168l-138 268l-252 -268h-149l346 368l-180 327h161l119 -216l217 216h132'], + 0x1D654: [695,0,682,120,828,'828 695l-363 -413l-60 -282h-145l57 276l-197 419h169l141 -290l276 290h122'], + 0x1D655: [695,0,613,54,704,'704 609l-485 -497h355l-14 -112h-504l-2 90l483 500h-334l13 105h488v-86'], + 0x1D656: [480,30,479,47,484,'331 134l8 40c-136 -9 -181 -40 -181 -70c0 -22 25 -35 62 -35c20 0 97 2 111 65zM480 290l-66 -309h-114l5 19c-55 -23 -115 -30 -149 -30c-87 0 -109 72 -109 115c0 163 248 175 311 177c4 18 10 53 10 61c0 14 -4 60 -49 60c-60 0 -106 -19 -151 -46l-39 -25l11 45 c2 5 6 50 8 63l1 10l9 5c45 22 98 45 174 45c94 0 152 -66 152 -150c0 -13 0 -24 -4 -40'], + 0x1D657: [712,30,515,60,553,'268 435c51 27 104 39 146 39c99 0 139 -96 139 -182c0 -172 -129 -322 -261 -322c-47 0 -82 16 -111 39l-6 -28h-115l155 731h113zM249 327l-44 -212c9 -30 28 -46 62 -46c99 0 171 102 171 208c0 65 -38 98 -88 98c-13 0 -58 -3 -101 -48'], + 0x1D658: [480,30,443,59,521,'521 424l-39 -100l-20 14c-39 28 -63 40 -121 40c-111 0 -166 -123 -166 -203c0 -61 30 -104 89 -104c68 0 120 27 158 51l33 22l-14 -115c-55 -32 -114 -59 -191 -59c-126 0 -191 99 -191 199c0 141 123 311 295 311c59 0 100 -8 155 -48'], + 0x1D659: [712,30,515,58,605,'366 138l41 191c1 4 1 6 1 7c-3 9 -16 38 -65 39c-95 2 -169 -96 -169 -207c0 -86 55 -99 86 -99c56 0 103 51 106 69zM605 712l-156 -731h-115l6 29c-66 -39 -120 -40 -134 -40c-89 0 -148 79 -148 186c0 163 122 318 252 318c40 0 85 -12 123 -39l59 277h113'], + 0x1D65A: [480,30,443,59,490,'490 307c0 -34 -6 -74 -11 -93l-3 -13h-309v-19c0 -71 39 -113 95 -113c62 0 118 27 153 52l35 25l-6 -43c-3 -22 -3 -43 -8 -73c-48 -31 -112 -60 -187 -60c-116 0 -190 88 -190 201c0 154 133 309 274 309c77 0 157 -43 157 -173zM198 293h199c-2 37 -13 88 -76 88 c-39 0 -89 -29 -123 -88'], + 0x1D65B: [724,19,304,78,515,'273 367l-82 -386h-113l82 386h-74l20 96h74l18 80c20 96 110 181 219 181c27 0 56 -5 82 -12l16 -5l-21 -107l-22 11c-29 14 -57 15 -69 15c-46 0 -84 -24 -92 -63l-21 -100h113l-20 -96h-110'], + 0x1D65C: [474,224,499,-8,590,'265 -22h-90c-63 0 -75 -50 -75 -59c0 -29 63 -49 118 -49c89 0 150 37 150 68c0 19 -16 40 -103 40zM261 205c64 0 97 66 97 120c0 43 -28 54 -52 54c-64 0 -97 -67 -97 -120c0 -44 28 -54 52 -54zM590 455c-1 -43 2 -81 -27 -81c-18 0 -38 2 -53 2s-33 -2 -51 -3 c4 -14 7 -29 7 -47c0 -109 -104 -216 -216 -216c-29 0 -56 7 -82 23c-5 -12 -13 -41 9 -45c3 -1 7 -1 15 -1h88c143 0 198 -51 198 -129c0 -128 -159 -182 -272 -182c-124 0 -214 56 -214 135c0 42 29 95 82 129c-5 16 -6 33 -6 42c0 14 3 61 46 113c-8 18 -13 38 -13 63 c0 109 104 216 217 216c28 0 61 -7 91 -30c40 15 94 30 162 30h19v-19'], + 0x1D65D: [712,19,515,59,523,'517 300l-67 -319h-115l68 329c1 6 2 16 2 18c0 30 -14 47 -62 47c-71 0 -103 -84 -118 -152l-51 -242h-115l155 731h112l-59 -280c37 25 81 42 128 42c94 0 128 -51 128 -119c0 -11 1 -22 -6 -55'], + 0x1D65E: [698,19,237,59,330,'330 698l-27 -125h-127l27 125h127zM59 -19l101 482h113l-102 -482h-112'], + 0x1D65F: [698,223,265,-120,352,'352 698l-27 -125h-126l26 125h127zM75 -66l113 529h113l-113 -531c-18 -85 -90 -155 -173 -155c-49 0 -92 15 -122 37l-13 8l47 102l18 -22c35 -41 122 -31 130 32'], + 0x1D660: [712,19,487,62,594,'361 267l139 -286h-123l-102 213l-75 -62l-32 -151h-106l155 731h110l-92 -427l212 178h147'], + 0x1D661: [712,19,237,59,327,'327 712l-156 -731h-112l155 731h113'], + 0x1D662: [474,19,793,59,801,'795 300l-67 -319h-116l69 329c1 6 2 16 2 18c0 31 -16 47 -62 47c-24 0 -88 -7 -119 -152l-51 -242h-115l68 329c1 6 2 16 2 18c0 31 -16 47 -62 47c-24 0 -87 -7 -119 -152l-51 -242h-115l103 488h110l-9 -40c32 23 78 45 132 45c77 0 107 -33 120 -66 c32 29 85 66 157 66c95 0 129 -51 129 -119c0 -22 -2 -33 -6 -55'], + 0x1D663: [474,19,515,59,523,'517 300l-67 -319h-115l68 329c1 6 2 16 2 18c0 30 -14 47 -62 47c-71 0 -103 -84 -118 -152l-51 -242h-115l103 488h110l-9 -40c39 28 84 45 132 45c94 0 128 -51 128 -119c0 -11 1 -22 -6 -55'], + 0x1D664: [480,30,499,53,540,'248 -30c-117 0 -195 88 -195 199c0 155 143 311 294 311c119 0 193 -95 193 -205c0 -163 -146 -305 -292 -305zM261 71c104 0 166 122 166 209c0 63 -36 101 -93 101c-90 0 -164 -93 -164 -204c0 -87 54 -106 91 -106'], + 0x1D665: [474,213,515,18,553,'246 314l-39 -186c-1 -6 -2 -10 -3 -12c2 -10 12 -46 63 -47c84 -2 169 95 169 196c0 65 -35 107 -87 107c-47 0 -96 -35 -101 -49c0 -2 0 -1 -2 -9zM181 9l-47 -222h-116l143 676h113l-6 -29c41 22 94 40 150 40c82 0 135 -76 135 -181c0 -174 -130 -323 -261 -323 c-53 0 -88 20 -111 39'], + 0x1D666: [474,213,515,58,554,'554 474l-146 -687h-116l47 222c-38 -22 -85 -39 -136 -39c-87 0 -145 76 -145 185c0 170 131 319 260 319c52 0 90 -23 114 -45l9 45h113zM261 69c49 0 103 45 108 72l34 159c0 12 -5 72 -61 72c-76 0 -167 -86 -167 -195c0 -60 31 -108 86 -108'], + 0x1D667: [474,19,340,60,447,'447 474l-23 -105h-15c-99 -3 -168 -80 -185 -140l-49 -233l-3 -15h-112l103 488h108l-12 -55c36 27 93 59 165 60h23'], + 0x1D668: [480,30,382,18,458,'296 480c59 0 97 -10 146 -34l16 -8l-36 -92h-20c-43 27 -74 38 -127 37c-73 -1 -81 -38 -81 -54c0 -52 98 -20 169 -79c31 -25 45 -57 45 -96c0 -51 -38 -185 -214 -184c-94 1 -176 39 -176 64c0 8 4 18 5 20l32 77l18 -16c79 -63 221 -61 225 16v1 c0 58 -116 28 -178 88c-38 37 -39 73 -39 86c0 69 56 174 215 174'], + 0x1D669: [590,30,360,78,433,'220 120c-7 -48 5 -49 17 -49c22 0 54 7 87 30l27 19l6 -104l-11 -6c-51 -24 -106 -40 -162 -40c-46 0 -81 26 -81 96c0 30 31 177 59 301h-84l20 96h87l28 127h106l-27 -127h141l-20 -96h-141'], + 0x1D66A: [463,30,515,80,552,'552 463l-102 -482h-112l5 28c-54 -28 -115 -39 -158 -39c-83 0 -105 45 -105 95c0 14 1 30 5 45l75 353h116l-76 -359c-5 -27 -2 -33 10 -37c6 -2 19 -4 37 -4c78 0 116 54 123 89l66 311h116'], + 0x1D66B: [463,19,460,86,573,'573 463l-289 -482h-113l-85 482h116l51 -356l202 356h118'], + 0x1D66C: [463,19,682,87,792,'246 -8l-5 -11h-107l-47 482h115l20 -336l163 336h101l23 -341l168 341h115l-250 -482h-115l-21 328c-50 -111 -146 -289 -160 -317'], + 0x1D66D: [463,19,460,-47,585,'333 226l162 -245h-129l-103 177l-174 -177h-136l265 250l-152 232h128l96 -155l158 155h137'], + 0x1D66E: [463,223,460,-20,573,'226 -97c-74 -121 -122 -126 -155 -126c-17 0 -45 2 -74 8l-17 3l14 108l23 -11c24 -11 54 -14 67 -14c14 0 25 8 55 53c14 21 42 66 50 80l-105 459h119l56 -351l195 351h119'], + 0x1D66F: [463,19,433,7,516,'184 80h254l-21 -99h-410l3 22c12 68 26 64 26 64l303 299h-238l20 97h395l-9 -51c-3 -10 -4 -16 -17 -29'], + 0x1D756: [694,0,732,42,690,'98 0c-29 0 -56 -1 -56 27c0 14 199 578 223 639c14 35 61 28 101 28c49 0 81 6 101 -28c21 -63 223 -625 223 -639c0 -34 -41 -27 -67 -27c-30 1 -65 -4 -80 29l-43 121h-284l-19 -57c-31 -88 -33 -93 -99 -93zM359 569c-7 -34 -92 -276 -112 -332h223'], + 0x1D757: [694,0,732,91,671,'139 694h246c42 0 255 0 255 -180c0 -78 -53 -130 -145 -151c37 -6 176 -28 176 -169c0 -181 -184 -194 -258 -194h-274c-37 0 -48 12 -48 48v598c0 37 12 48 48 48zM232 397h116c25 0 156 0 156 114c0 94 -116 97 -155 97h-117v-211zM232 86h145c48 0 155 7 155 110 c0 129 -139 129 -174 129h-126v-239'], + 0x1D758: [690,0,579,92,537,'483 586h-251c0 -271 2 -555 0 -561c-9 -28 -32 -25 -72 -25l-41 1c-6 2 -19 12 -27 27v636c2 5 6 19 26 26c3 1 238 0 389 0c42 -10 30 -88 24 -79c-10 -29 -38 -25 -48 -25'], + 0x1D759: [694,-8,915,60,855,'392 694h133c17 -7 30 -14 41 -32c1 -3 286 -621 289 -635c0 -7 -2 -14 -8 -19h-779c-6 5 -8 12 -8 19c5 23 283 620 289 635c7 16 25 28 43 32zM653 130l-205 446l-205 -446h410'], + 0x1D75A: [691,0,640,91,595,'238 311v-201h301c33 0 56 0 56 -48v-14c0 -35 -10 -48 -48 -48h-408c-37 0 -48 12 -48 48v595c0 37 12 48 48 48h393c41 0 48 -16 48 -48v-8c0 -48 -23 -48 -58 -48h-284v-182h263c35 0 48 -10 48 -47c0 -40 -17 -47 -48 -47h-263'], + 0x1D75B: [694,0,671,61,616,'600 607l-360 -502h319c34 0 57 0 57 -48v-9c0 -35 -10 -48 -48 -48h-459c-37 0 -48 12 -48 48v8c0 20 0 22 10 35l362 505h-296c-40 0 -61 0 -61 49c0 32 6 49 48 49h438c47 0 48 -23 48 -50c0 -22 0 -24 -10 -37'], + 0x1D75C: [694,0,793,91,702,'702 646v-598c0 -35 -10 -48 -48 -48h-51c-41 0 -48 16 -48 48v266h-317v-266c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-238h317v238c0 35 10 48 48 48h51c41 0 48 -16 48 -48'], + 0x1D75D: [716,22,854,62,792,'426 716c293 0 366 -175 366 -375c0 -163 -51 -232 -90 -271c-37 -37 -110 -92 -274 -92c-275 0 -366 152 -366 362c0 301 174 376 364 376zM427 55c183 0 229 121 229 285c0 188 -44 302 -231 302c-96 0 -230 -96 -230 -302c0 -151 41 -285 232 -285zM260 348 c0 25 -4 56 26 63h282c30 -8 26 -38 26 -62c0 -25 4 -55 -26 -63c-121 0 -277 -1 -282 0c-30 8 -26 38 -26 62'], + 0x1D75E: [694,0,329,92,239,'239 646v-598c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48'], + 0x1D75F: [694,0,762,91,701,'421 405l280 -376c0 -29 -14 -29 -35 -29h-60c-19 0 -34 0 -50 21l-224 300l-111 -105v-168c0 -35 -10 -48 -48 -48h-34c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h34c41 0 48 -16 48 -48v-276l322 304c21 20 41 20 58 20h61c14 0 34 0 34 -21c0 -4 0 -10 -12 -21'], + 0x1D760: [694,0,671,41,630,'335 694c40 0 86 6 99 -29c0 0 196 -618 196 -642c-20 -28 -134 -36 -146 4l-158 542c-11 -81 -155 -543 -157 -542c-16 -31 -52 -27 -74 -27c-21 0 -44 3 -54 23c0 24 196 642 196 642c9 25 45 33 98 29'], + 0x1D761: [694,0,976,91,886,'687 651c17 41 42 43 67 43h84c41 0 48 -16 48 -48v-598c0 -35 -10 -48 -48 -48h-27c-41 0 -48 16 -48 48v517h-1l-199 -500c-18 -43 -42 -43 -76 -43s-58 0 -76 43c-24 59 -185 455 -196 500h-1v-517c0 -35 -10 -48 -48 -48h-27c-37 0 -48 12 -48 48v598 c0 37 12 48 48 48h83c18 0 50 0 67 -41l200 -504c-1 4 129 326 198 502'], + 0x1D762: [694,0,793,91,702,'303 654l275 -533h1v525c0 35 10 48 48 48h27c41 0 48 -16 48 -48v-598c0 -35 -10 -48 -48 -48h-93c-20 0 -50 0 -71 40l-275 533h-1v-525c0 -35 -10 -48 -48 -48h-27c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h93c20 0 50 0 71 -40'], + 0x1D763: [687,0,732,45,687,'64 571c-13 10 -12 39 -12 60c-4 18 4 57 27 56c3 1 349 0 575 0c32 -8 26 -48 26 -59c0 -12 5 -48 -26 -58c-3 0 -570 1 -590 1zM149 415h435c32 -8 26 -46 26 -57s6 -49 -26 -57c-232 0 -436 -5 -445 1c-22 13 -17 45 -17 58c0 20 1 62 27 55zM632 120 c13 0 42 4 52 -26c1 -10 17 -93 -24 -93h-586c-22 -8 -28 29 -28 56c0 15 -6 59 26 63h560'], + 0x1D764: [716,22,793,61,732,'732 342c0 -205 -78 -364 -336 -364c-270 0 -335 177 -335 364c0 183 59 374 336 374c262 0 335 -173 335 -374zM397 58c188 0 188 211 188 300c0 90 0 280 -189 280c-188 0 -188 -192 -188 -280c0 -91 0 -300 189 -300'], + 0x1D765: [690,2,793,92,700,'92 664c2 5 6 19 26 26c3 1 339 -1 558 -1c12 -3 21 -12 24 -23c2 -6 0 -335 0 -641c-7 -25 -31 -25 -70 -25s-62 0 -69 25l-2 571h-326l-1 -571c-9 -28 -32 -25 -72 -25c-11 -4 -67 -7 -67 21'], + 0x1D766: [694,0,701,91,641,'238 268v-220c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h250c154 0 252 -65 252 -216c0 -144 -94 -210 -251 -210h-152zM358 608h-123v-261h122c134 0 145 64 145 131c0 70 -13 130 -144 130'], + 0x1D767: [716,22,854,62,792,'426 716c293 0 366 -175 366 -375c0 -163 -51 -232 -90 -271c-37 -37 -110 -92 -274 -92c-275 0 -366 152 -366 362c0 301 174 376 364 376zM653 284h-457c17 -102 113 -229 231 -229c130 0 216 136 226 229zM191 413h462c-45 192 -134 219 -228 229 c-81 8 -217 -82 -234 -229'], + 0x1D768: [693,-1,793,61,732,'62 667c2 5 6 19 26 26c3 1 375 -1 618 -1c30 -8 26 -40 26 -50c0 -13 7 -42 -22 -49l-439 -1c96 -113 200 -229 200 -245c-2 -5 -121 -160 -186 -238c1 0 262 2 376 2c35 0 61 1 69 -24c0 -11 12 -78 -18 -86h-623c-29 10 -27 28 -27 35c2 4 152 198 238 302 c-42 45 -208 238 -238 283v46'], + 0x1D769: [688,0,732,40,692,'293 587l-201 -3c-28 0 -52 0 -52 48v8c0 37 12 48 48 48h556c41 0 48 -16 48 -48v-8c0 -48 -24 -48 -52 -48c-44 0 -156 3 -200 3v-539c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v539'], + 0x1D76A: [715,0,854,61,792,'355 441c-5 9 5 167 -98 167c-12 0 -59 -4 -62 -52c-1 -22 -12 -29 -27 -36h-79c-29 10 -27 30 -27 39c32 246 371 156 365 -37c18 82 78 193 173 193c113 0 192 -74 192 -156c0 -35 -24 -35 -26 -39h-80c-45 22 -13 34 -39 67c-14 16 -31 21 -51 21 c-107 -24 -109 -216 -106 -176c0 -190 8 -405 7 -409c-11 -28 -46 -23 -72 -23c-37 0 -83 -4 -68 28'], + 0x1D76B: [695,0,793,62,731,'463 32c-6 -39 -25 -30 -72 -32l-38 1c-7 1 -27 9 -27 27v79c-37 0 -149 20 -207 80c-40 44 -57 99 -57 160c0 62 17 116 57 160c58 59 169 81 207 81v79c8 24 28 28 45 28h41c34 0 48 -10 48 -29v-78c21 -7 271 -3 271 -241c0 -237 -250 -235 -268 -241v-74zM592 347 c0 90 -41 148 -128 166c-2 0 -2 -1 -2 -166s0 -166 2 -166c85 17 128 73 128 166zM201 346c2 -133 64 -153 124 -164v330c-79 -19 -124 -70 -124 -166'], + 0x1D76C: [694,0,732,37,694,'433 368l252 -326c4 -5 9 -13 9 -20c0 -22 -23 -22 -36 -22h-83c-19 0 -35 0 -50 22l-167 240l-161 -238c-12 -18 -16 -24 -49 -24h-75c-14 0 -36 0 -36 23c0 7 1 8 10 20l236 325l-219 284c-10 12 -10 14 -10 20c0 22 21 22 35 22h83c21 0 34 0 51 -23l135 -185l131 187 c15 21 32 21 49 21h75c14 0 36 0 36 -23c0 -7 -1 -8 -10 -20'], + 0x1D76D: [695,0,854,62,793,'62 583c0 23 15 30 27 36c36 3 118 17 143 -46c46 -115 -34 -325 124 -386l1 480c12 36 51 27 67 27c14 0 58 7 67 -25c2 -6 3 -251 3 -482c83 31 108 126 108 239c0 99 8 161 57 185c14 7 62 5 108 6c16 -4 26 -18 26 -34c0 -9 -11 -39 -41 -43c-9 -16 -13 -52 -13 -114 c0 -155 -56 -289 -246 -318c0 -27 5 -98 -26 -106c-5 -2 -49 -1 -83 -1c-6 2 -17 5 -25 20l-3 87c-223 28 -241 202 -241 317c0 91 -8 121 -21 121c-29 4 -32 29 -32 37'], + 0x1D76E: [716,0,793,48,744,'397 643c-154 0 -193 -73 -193 -179c0 -81 50 -156 68 -202c30 -77 116 -205 45 -260c-5 -2 -136 -1 -240 -1c-32 11 -28 39 -28 51c0 11 -5 47 26 55c10 -1 143 -1 179 1c-59 102 -182 242 -192 353c-15 173 161 262 334 255c130 0 187 -25 226 -48 c103 -60 109 -162 109 -207c0 -137 -129 -246 -192 -353h153c10 0 41 4 50 -24c2 -5 2 -9 2 -29c0 -11 4 -46 -26 -53l-240 -1c-4 1 -16 4 -25 21c0 165 135 286 135 442c0 106 -38 179 -191 179'], + 0x1D76F: [694,-8,915,60,855,'392 8h133c17 7 30 14 41 32c1 3 286 621 289 635c0 7 -2 14 -8 19h-779c-6 -5 -8 -12 -8 -19c5 -23 283 -620 289 -635c7 -16 25 -28 43 -32zM653 572l-205 -446l-205 446h410'], + 0x1D770: [469,13,742,47,720,'562 113c22 0 19 36 28 41h130c0 -63 -61 -165 -159 -165c-54 0 -104 30 -144 88c-17 -22 -65 -67 -126 -84c-43 -12 -241 -36 -244 236c0 72 9 138 59 188c19 19 62 52 143 52c36 0 109 -18 176 -99c3 14 32 93 34 96l3 3l134 -2c0 -17 -72 -204 -96 -256 c21 -51 47 -98 62 -98zM184 229c0 -71 0 -116 65 -116c54 0 91 77 106 97c-21 56 -49 135 -108 135c-66 0 -63 -54 -63 -116'], + 0x1D771: [733,90,549,46,503,'278 -11c-58 0 -89 32 -95 37l-1 -116c-58 0 -132 -1 -134 0c0 277 -10 668 28 737c46 83 141 86 175 86c120 0 196 -47 196 -189c0 -25 -4 -85 -67 -129c52 -25 123 -71 123 -210c0 -144 -128 -216 -225 -216zM241 638c-62 0 -58 -57 -58 -137v-54c11 2 28 3 44 8 c95 26 84 91 84 99c-3 89 -39 84 -70 84zM275 92c52 0 91 48 91 113c0 121 -109 146 -183 152c0 -57 0 -145 1 -155c3 -22 18 -110 91 -110'], + 0x1D772: [469,201,610,32,577,'390 206c0 -10 29 -104 29 -277c0 -44 -61 -146 -114 -129c-66 22 -96 74 -114 135c2 106 28 215 64 298c-16 66 -34 98 -54 98c-28 0 -32 -38 -33 -44h-136c6 100 114 182 170 182c50 0 101 -45 135 -110c56 56 164 98 240 102v-127c-105 -6 -187 -123 -187 -128'], + 0x1D773: [719,10,518,46,475,'259 -10c-111 0 -213 46 -213 228c0 130 54 191 125 215l12 4l-17 9c-21 12 -87 46 -87 127c0 87 77 146 135 146c41 0 45 -3 165 -71c93 -53 96 -54 96 -61c0 -8 -28 -54 -29 -55c-2 -1 -4 -2 -7 -3c-14 0 -175 101 -197 108c-8 3 -16 4 -24 4c-26 0 -62 -24 -62 -66 c0 -18 8 -34 22 -46c3 -3 154 -92 170 -97c77 -26 124 -91 124 -214c0 -131 -53 -210 -173 -227c-9 -1 -25 -1 -40 -1zM180 165c0 -57 11 -102 59 -102c31 0 56 19 73 47c13 26 26 67 26 161c0 74 -22 101 -59 101c-55 0 -84 -62 -92 -107c-4 -23 -7 -67 -7 -100'], + 0x1D774: [470,11,472,33,456,'34 164c0 25 -3 62 57 95c-24 28 -29 57 -29 70c0 112 125 139 164 139c66 14 112 -35 230 -124l-98 -96c-18 18 -90 84 -122 84c-22 0 -40 -10 -40 -25s16 -19 63 -21l32 -2v-70c-17 0 -62 1 -73 1c-30 0 -49 -2 -49 -25c0 -38 37 -69 76 -63c38 7 69 64 88 77l98 -90 c-36 -47 -137 -125 -196 -125c-76 0 -194 51 -201 175'], + 0x1D775: [734,265,518,46,472,'65 734h125c4 -31 38 -50 56 -50c81 0 123 58 139 48c3 -2 72 -101 75 -107c-134 -98 -277 -232 -277 -373c0 -22 4 -92 57 -112c18 -7 55 4 116 -25c36 -18 116 -74 116 -184c0 -117 -130 -192 -224 -196l-1 120c12 16 78 -10 88 77c0 15 -12 68 -79 68 c-99 0 -210 93 -210 253c0 60 13 169 128 304c-86 35 -109 117 -109 177'], + 0x1D776: [481,200,564,30,514,'150 294h-120c0 60 47 173 129 185c20 9 94 -7 117 -65c22 30 64 54 105 65c81 0 118 -74 130 -138c7 -32 2 -266 3 -541c-66 0 -130 -3 -133 2l-1 489c-6 19 -13 39 -33 39c-19 0 -27 -15 -34 -42l-1 -299l-138 -1c-1 151 1 341 -1 349c-2 11 -6 19 -9 19 c-7 0 -14 -43 -14 -62'], + 0x1D777: [733,11,549,46,503,'46 359c0 165 56 374 228 374c183 0 229 -228 229 -372s-45 -372 -228 -372c-182 0 -229 226 -229 370zM272 595c-80 22 -92 -141 -88 -168h181c8 94 -33 180 -93 168zM274 126c55 0 86 43 92 198h-183c3 -106 18 -198 91 -198'], + 0x1D778: [471,11,304,34,290,'34 471h139l-1 -357c12 -8 31 14 31 23h87c0 -31 -27 -148 -128 -148c-64 0 -111 52 -127 105'], + 0x1D779: [471,12,531,62,547,'62 471h134c6 -4 3 -73 3 -147l57 53c82 76 87 82 160 82c15 0 49 -1 65 -1c1 -18 1 -105 0 -123c-21 0 -54 10 -68 10c-5 0 -8 -1 -12 -3c-5 -2 -104 -94 -104 -95c94 -92 250 -247 250 -249c0 -4 -10 -8 -12 -10h-178l-158 162v-162h-137v483'], + 0x1D77A: [734,1,549,19,530,'31 8c0 2 117 311 162 425c0 5 -49 108 -61 128c-7 12 -7 12 -17 10c-41 -12 -52 -40 -64 -40c-8 0 -12 7 -12 8c-2 8 -20 111 -20 115c0 15 85 80 152 80c21 0 47 -38 88 -119c61 -117 271 -603 271 -603c0 -15 -15 -12 -75 -12c-44 0 -71 1 -75 10l-108 245l-103 -254 c-59 0 -138 -8 -138 7'], + 0x1D77B: [470,204,610,35,618,'170 329c-1 -111 -20 -214 62 -214c47 0 58 49 61 62c1 7 0 161 1 286c6 9 72 3 137 3l2 -300c6 -22 17 -44 41 -44c9 0 39 23 44 61c2 16 -4 22 6 30h87c3 -12 7 -61 7 -73c0 -86 -69 -163 -164 -163c-73 0 -105 47 -121 68c8 -18 -61 -73 -101 -68c-12 0 -37 1 -61 19 c-1 0 -2 -142 -2 -196c-4 -6 -65 -4 -131 -4c-6 5 -1 318 -1 674h133v-141'], + 0x1D77C: [458,0,518,-12,500,'192 0c0 1 -85 251 -116 341c-14 41 -69 92 -88 105c0 4 3 9 7 11c2 0 132 -1 180 -1l103 -290c58 70 87 123 87 171c0 18 -10 92 -17 110c0 5 7 11 7 11c65 0 124 0 128 -5c2 -4 17 -91 17 -100c0 -110 -138 -296 -179 -353h-129'], + 0x1D77D: [760,211,518,46,472,'331 480c35 0 29 2 29 -66c0 -101 3 -57 -66 -78c-50 -12 -110 -46 -110 -116c0 -44 27 -71 53 -79c20 -9 56 3 119 -26c36 -18 116 -72 116 -181c0 -118 -72 -164 -162 -139l-1 116c10 13 26 4 26 23c0 18 -12 41 -31 53c-47 28 -84 -4 -160 48c-62 41 -98 110 -98 185 c0 39 20 137 123 210c1 0 -35 43 -35 107c0 32 12 62 19 71c-3 2 -52 20 -71 52c-16 18 -33 79 -13 100h121c15 -11 1 -34 19 -41c73 -11 169 29 183 29c0 0 22 -124 22 -130c0 -7 -10 -10 -77 -22c-81 -10 -130 -23 -130 -63c0 -34 26 -53 124 -53'], + 0x1D77E: [468,10,579,46,532,'46 229c0 148 125 239 234 239c201 0 252 -188 252 -239c0 -123 -100 -239 -242 -239s-244 119 -244 239zM290 332c-42 0 -106 -27 -106 -103c0 -87 83 -103 106 -103c53 0 106 41 106 103c0 58 -50 103 -106 103'], + 0x1D77F: [458,11,641,-24,642,'642 164c-6 -97 -54 -175 -136 -175c-54 0 -109 39 -128 128c-6 27 -6 27 -7 126v91h-86v-337h-137v337c-84 -9 -99 -32 -121 -32c0 0 -51 102 -51 110c8 6 81 45 152 45l460 1c2 -3 4 -5 7 -7v-117h-87v-81c0 -99 1 -110 8 -123c5 -10 16 -11 22 -2c14 28 1 45 15 59h40 c46 0 49 3 49 -23'], + 0x1D780: [469,192,518,46,471,'46 -191c1 242 0 449 7 479c17 78 82 181 205 181c118 0 213 -101 213 -240c0 -146 -103 -240 -211 -240c-17 0 -70 9 -76 15l-1 -196c-59 0 -134 -1 -137 1zM334 229c0 113 -47 130 -79 130c-28 0 -71 -29 -71 -130c0 -96 53 -123 71 -129c60 0 79 72 79 129'], + 0x1D781: [458,172,488,46,458,'254 124c118 -5 188 -75 188 -153c0 -96 -97 -143 -163 -143c-3 0 -10 -1 -16 7v109c-1 5 58 25 40 22c9 17 -3 32 -59 34c-23 1 -38 3 -53 7c-70 21 -145 87 -145 200c0 200 261 245 412 251v-130c-53 5 -262 -6 -275 -103c0 -44 16 -101 71 -101'], + 0x1D782: [458,10,625,46,594,'511 321c19 -39 21 -77 21 -97c0 -19 6 -114 -104 -194c-47 -30 -93 -40 -138 -40c-72 0 -134 27 -178 74c-42 42 -66 96 -66 160c0 128 103 222 224 233c2 1 238 1 324 1v-137h-83zM396 224c0 73 -64 96 -104 96c-58 0 -108 -38 -108 -96c-4 -45 47 -102 106 -98 c46 -3 106 35 106 98'], + 0x1D783: [458,11,503,-44,476,'476 163c-2 -71 -62 -174 -171 -174c-70 0 -146 47 -168 140c-5 20 -5 111 -5 205c-9 -1 -36 -2 -40 -2c-45 -10 -61 -40 -74 -29c-7 7 -62 102 -62 107c0 18 85 43 138 47c2 1 259 1 356 1v-123l-181 -1c0 -81 0 -168 2 -174c7 -22 31 -38 56 -38c21 0 49 16 53 48 c0 3 1 10 8 17h81'], + 0x1D784: [458,10,549,34,503,'34 446c0 15 89 12 155 12c89 -133 52 -237 81 -302c13 -24 25 -29 41 -29c23 0 54 16 54 105c0 83 -33 161 -72 211c0 18 49 15 121 15c40 0 36 -1 42 -14c30 -64 47 -142 47 -213c0 -139 -84 -241 -192 -241c-110 0 -192 104 -192 239c0 72 -38 164 -85 217'], + 0x1D785: [469,193,641,47,594,'47 233c0 114 50 207 68 225h146c7 -3 10 -14 5 -19c-3 -5 -110 -69 -110 -209c0 -73 72 -109 96 -120v210c21 90 99 149 167 149c105 0 175 -97 175 -236c0 -43 -5 -113 -92 -185c-29 -22 -78 -42 -113 -51v-184l-7 -6h-123l-7 6v184c-87 22 -205 96 -205 236zM485 243 c-1 47 -12 116 -60 116c-22 0 -30 -17 -36 -43v-206c103 41 96 108 96 133'], + 0x1D786: [470,208,610,33,577,'577 -139c0 -65 7 -69 -42 -69c-89 0 -162 67 -233 194c-21 -28 -88 -168 -110 -190h-139c-3 2 -9 7 -7 14c1 1 135 236 184 324c-83 164 -153 199 -189 199c-3 2 -5 4 -7 7v61c0 67 -5 69 18 69c45 0 157 -15 256 -192c15 20 93 173 110 191h139c2 -2 9 -8 7 -15 c-1 -1 -133 -236 -182 -324c83 -163 151 -198 187 -198c9 -9 8 -7 8 -71'], + 0x1D787: [722,193,641,46,595,'46 281c0 67 22 158 37 177h123c5 -7 5 -6 7 -11c0 -19 -57 -60 -57 -170c0 -36 19 -122 103 -166v611h123v-611c31 14 103 60 103 166c0 102 -57 158 -57 170c2 5 7 11 7 11h123c20 -20 37 -138 37 -177c0 -161 -105 -256 -212 -285v-183l-8 -6h-109l-7 6v183 c-89 24 -213 116 -213 285'], + 0x1D788: [458,11,732,39,693,'693 201c0 -114 -83 -212 -192 -212c-48 0 -101 29 -135 66c-34 -37 -87 -66 -135 -66c-103 0 -192 89 -192 213c0 144 115 253 124 256l154 -4c2 -4 3 -10 1 -13c-80 -77 -225 -255 -87 -341c35 0 61 32 61 73v138c3 2 18 1 74 1s71 1 74 -1v-131c8 -45 40 -78 61 -80 c27 13 55 63 55 99c0 81 -75 175 -142 242c-2 3 -1 9 1 13c4 6 74 4 155 4c69 -69 123 -150 123 -257'], + 0x1D789: [636,6,453,24,430,'245 390c-27 33 -107 112 -201 170l64 76c141 -93 324 -271 322 -448c-4 -119 -94 -194 -201 -194c-200 0 -262 224 -147 345c66 69 135 56 163 51zM119 201c-2 -59 45 -110 109 -110c60 0 103 43 104 110c0 63 -43 110 -104 110c-63 0 -109 -47 -109 -110'], + 0x1D78A: [519,-2,534,59,483,'483 431l-62 -62c-24 43 -81 50 -139 50c-90 0 -127 -42 -132 -115c79 -2 141 -3 221 -2v-83c-74 0 -147 0 -221 -2c16 -87 21 -121 126 -121c57 0 123 11 168 39l17 -59c-67 -55 -121 -74 -207 -74c-143 0 -195 91 -195 233c0 163 92 284 252 284c63 0 129 -41 172 -88'], + 0x1D78B: [712,22,627,62,609,'609 159l-94 23c-26 -100 -102 -204 -221 -204c-28 0 -49 9 -72 26c-50 38 -129 243 -160 269l75 72c52 -57 71 -251 188 -251c66 0 105 59 110 116c-121 44 -335 180 -335 320c0 123 112 206 231 176c153 6 218 -251 196 -405l82 -26v-116zM463 316 c25 86 0 293 -177 293c-33 0 -67 -28 -67 -61c0 -105 154 -190 244 -232'], + 0x1D78C: [518,8,574,19,538,'414 330l-311 -316c-11 -14 -22 -28 -45 -21c-20 6 -26 33 -15 50c73 138 25 350 -24 429l79 35c28 -32 98 -145 60 -307l298 298c12 14 39 25 62 18c20 -6 26 -44 15 -60c-6 -7 -21 -19 -41 -89c-45 -194 39 -321 44 -337l-78 -29c-36 22 -95 150 -44 329'], + 0x1D78D: [603,192,565,33,536,'536 214c0 125 -75 196 -203 209v180h-93l-1 -181c-148 -8 -206 -132 -206 -206c0 -142 103 -205 206 -205l1 -203h93v204c94 -2 203 55 203 202zM432 214c0 -64 -37 -108 -100 -109c-2 73 -2 148 0 223c63 0 100 -49 100 -114zM241 106c-68 0 -102 36 -102 109 c0 75 34 113 102 114c2 -75 2 -150 0 -223'], + 0x1D78E: [444,199,463,27,431,'387 64c-86 -88 -232 -72 -261 -21c0 -42 7 -92 8 -149l185 -1v-90c-110 10 -287 -43 -287 81c0 82 -5 196 -5 342c0 133 76 218 203 218c66 0 116 -24 159 -60c55 -45 60 -259 -2 -320zM343 225c0 67 -45 117 -113 117c-69 0 -112 -36 -112 -114c0 -62 39 -139 114 -123 c66 0 111 45 111 120'], + 0x1D78F: [514,11,834,33,800,'277 404c-10 -3 -131 -58 -131 -202c0 -124 89 -213 192 -213c48 0 101 29 135 66c34 -37 87 -66 135 -66c109 0 192 98 192 212c0 124 -71 281 -157 313h-415c-21 0 -107 -10 -160 -58c-35 -32 -34 -44 -34 -54l63 -63c39 49 121 65 180 65zM593 404 c38 -57 70 -117 70 -205c0 -36 -10 -83 -37 -96c-69 0 -93 114 -93 138c0 68 0 66 -6 69c-56 0 -100 2 -103 0c-1 -38 -3 -76 -4 -80c-7 -40 -65 -127 -100 -127c-27 13 -37 61 -37 97c0 86 51 144 111 204h199'], + 0x1D790: [694,0,732,-14,634,'37 0c-29 0 -56 -1 -51 27c2 14 301 579 335 639c21 36 66 28 106 28c49 0 82 6 96 -28c10 -63 113 -625 111 -639c-6 -34 -46 -27 -72 -27c-30 1 -66 -4 -75 29l-22 121h-284l-29 -57c-46 -88 -49 -93 -115 -93zM397 569c-13 -34 -140 -276 -169 -332h223 c-38 221 -54 330 -54 332'], + 0x1D791: [694,0,732,36,672,'200 694h246c42 0 255 0 223 -180c-13 -78 -75 -130 -171 -151c36 -6 171 -28 146 -169c-32 -181 -218 -194 -292 -194h-274c-37 0 -46 12 -40 48l106 598c6 37 20 48 56 48zM241 397h116c25 0 156 0 176 114c16 94 -99 97 -138 97h-117zM186 86h145c48 0 156 7 174 110 c23 129 -116 129 -151 129h-126'], + 0x1D792: [690,0,579,36,595,'276 586c-47 -271 -97 -555 -100 -561c-14 -28 -37 -25 -77 -25l-41 1c-5 2 -17 12 -22 27l112 636c3 5 10 19 31 26c3 1 244 0 395 0c36 4 22 -104 -3 -104h-295'], + 0x1D793: [694,-8,915,2,798,'453 694h133c16 -7 27 -14 35 -32c1 -3 177 -621 177 -635c-1 -7 -4 -14 -11 -19h-779c-5 5 -6 12 -5 19c9 23 392 620 401 635c10 16 30 28 49 32zM614 130l-126 446l-284 -446h410'], + 0x1D794: [691,0,640,36,634,'232 311l-36 -201h301c33 0 56 0 48 -48l-2 -14c-7 -35 -19 -48 -57 -48h-408c-37 0 -46 12 -39 48l104 595c7 37 21 48 57 48h393c47 0 44 -22 38 -56c-8 -48 -25 -45 -60 -45h-290l-33 -185h263c35 0 47 -10 40 -47c-7 -40 -25 -47 -56 -47h-263'], + 0x1D795: [694,0,671,6,664,'646 607l-449 -507h304c46 0 72 1 62 -52c-6 -35 -18 -48 -56 -48h-459c-46 0 -45 20 -38 56c3 20 4 22 16 35l451 509h-287c-40 0 -70 -4 -61 45c5 32 14 49 56 49h438c47 0 44 -23 39 -50c-4 -22 -4 -24 -16 -37'], + 0x1D796: [694,0,793,36,756,'755 646l-106 -598c-6 -35 -18 -48 -56 -48h-51c-41 0 -45 16 -40 48l47 266h-317l-47 -266c-6 -35 -18 -48 -56 -48h-51c-37 0 -46 12 -40 48l106 598c6 37 20 48 56 48h51c41 0 45 -16 40 -48l-42 -238h317l42 238c6 35 18 48 56 48h51c41 0 45 -16 40 -48'], + 0x1D797: [716,22,854,51,801,'491 716c293 0 335 -175 300 -375c-21 -119 -86 -363 -428 -363c-275 0 -339 152 -302 362c53 301 240 376 430 376zM376 55c183 0 249 121 279 285c33 188 9 302 -178 302c-94 0 -283 -100 -283 -302c0 -153 -9 -285 182 -285zM260 348c5 25 6 56 37 63 c121 0 277 1 282 0c29 -8 20 -38 15 -62c-4 -25 -5 -55 -37 -63c-121 0 -277 -1 -282 0c-28 8 -19 38 -15 62'], + 0x1D798: [694,0,329,37,293,'291 646l-105 -598c-6 -35 -18 -48 -56 -48h-51c-37 0 -46 12 -40 48l106 598c6 37 20 48 56 48h51c41 0 45 -16 39 -48'], + 0x1D799: [694,0,762,36,753,'431 405l214 -376c-5 -29 -19 -29 -40 -29h-60c-19 0 -34 0 -46 21l-172 300l-129 -105l-30 -168c-6 -35 -18 -48 -56 -48h-34c-37 0 -46 12 -40 48l106 598c6 37 20 48 56 48h34c41 0 45 -16 40 -48l-49 -276l376 304c24 20 44 20 61 20h61c14 0 34 0 30 -21 c0 -4 -1 -10 -15 -21'], + 0x1D79A: [694,0,671,-16,573,'396 694c40 0 87 6 94 -29c0 0 87 -618 83 -642c-23 -26 -140 -38 -145 4l-63 542c-25 -81 -251 -543 -252 -542c-22 -31 -57 -27 -79 -27c-21 0 -44 3 -50 23c4 24 309 642 309 642c13 25 51 33 103 29'], + 0x1D79B: [694,0,976,36,940,'741 651c24 41 49 43 74 43h84c41 0 45 -16 40 -48l-106 -598c-6 -35 -18 -48 -56 -48h-27c-41 0 -45 16 -40 48l91 517h-1l-287 -500c-25 -43 -49 -43 -83 -43s-58 0 -69 43l-108 500h-1l-91 -517c-6 -35 -18 -48 -56 -48h-27c-37 0 -46 12 -40 48l106 598 c6 37 20 48 56 48h83c18 0 50 0 60 -41l111 -504c14 35 257 451 287 502'], + 0x1D79C: [694,0,793,36,756,'357 654l181 -533h1l93 525c6 35 18 48 56 48h27c41 0 45 -16 40 -48l-106 -598c-6 -35 -18 -48 -56 -48h-93c-20 0 -50 0 -64 40l-181 533h-1l-93 -525c-6 -35 -18 -48 -56 -48h-27c-37 0 -46 12 -40 48l106 598c6 37 20 48 56 48h93c20 0 50 0 64 -40'], + 0x1D79D: [687,0,732,-10,734,'104 571c-11 10 -5 39 -1 60c-1 18 14 57 37 56c3 1 349 0 575 0c30 -8 17 -48 15 -59c-2 -12 -3 -48 -36 -58c-3 0 -570 1 -590 1zM162 415h435c30 -8 17 -46 16 -57c-2 -11 -3 -49 -37 -57c-232 0 -436 -5 -444 1c-20 13 -14 45 -12 58c-1 20 17 62 42 55zM593 123 c13 0 42 1 47 -29c-1 -10 1 -93 -40 -93h-586c-24 -8 -28 29 -23 56c3 15 9 59 42 63c87 10 399 1 560 3'], + 0x1D79E: [716,22,793,49,742,'731 342c-36 -205 -142 -364 -400 -364c-270 0 -304 177 -271 364c32 183 125 374 402 374c262 0 305 -173 269 -374zM346 58c188 0 225 211 241 300c16 90 49 280 -140 280c-188 0 -222 -192 -237 -280c-16 -91 -53 -300 136 -300'], + 0x1D79F: [690,2,793,35,757,'148 664c3 5 10 19 31 26c3 1 339 -1 558 -1c11 -3 19 -12 20 -23c1 -6 -59 -335 -113 -641c-12 -25 -36 -25 -75 -25s-62 0 -64 25l98 571h-326l-101 -571c-14 -28 -37 -25 -77 -25c-11 -4 -68 -7 -63 21'], + 0x1D7A0: [694,0,701,36,668,'224 268l-39 -220c-6 -35 -18 -48 -56 -48h-51c-37 0 -46 12 -40 48l106 598c6 37 20 48 56 48h250c154 0 241 -65 214 -216c-25 -144 -131 -210 -288 -210h-152zM404 608h-123l-46 -261h122c134 0 156 64 168 131c12 70 10 130 -121 130'], + 0x1D7A1: [716,22,854,51,801,'491 716c293 0 335 -175 300 -375c-21 -119 -86 -363 -428 -363c-275 0 -339 152 -302 362c53 301 240 376 430 376zM642 284h-457c-1 -102 71 -229 191 -229c129 0 239 136 266 229zM203 413h462c-12 192 -94 219 -188 229c-78 8 -231 -82 -274 -229'], + 0x1D7A2: [693,-1,793,5,786,'118 667c3 5 10 19 31 26c3 1 375 -1 618 -1c28 -8 19 -40 17 -50c-2 -13 0 -42 -31 -49l-439 -1c76 -113 160 -229 157 -245c-3 -5 -149 -160 -228 -238c1 0 305 2 419 2c35 0 19 1 22 -24c-2 -11 -8 -78 -39 -86h-617c-27 10 -22 28 -21 35c3 4 187 198 291 302 c-34 45 -166 238 -188 283'], + 0x1D7A3: [688,0,732,89,746,'336 584h-202c-39 0 -51 4 -42 56c7 37 21 48 57 48h556c47 0 44 -22 38 -56c-9 -48 -33 -48 -61 -48h-199l-95 -536c-6 -35 -19 -48 -57 -48h-51c-37 0 -46 12 -39 48'], + 0x1D7A4: [715,0,854,96,829,'370 441c-4 9 34 167 -69 167c-12 0 -60 -4 -71 -52c-5 -22 -17 -29 -33 -36h-79c-28 10 -22 30 -20 39c75 246 398 156 358 -37c32 82 112 193 207 193c113 0 179 -74 165 -156c-7 -35 -31 -35 -33 -39h-80c-41 22 -7 34 -28 67c-11 16 -27 21 -47 21 c-111 -24 -147 -216 -137 -176c-33 -190 -63 -405 -65 -409c-16 -28 -50 -23 -76 -23c-37 0 -84 -4 -63 28'], + 0x1D7A5: [695,0,793,57,735,'407 32c-13 -39 -30 -30 -77 -32l-38 1c-7 1 -26 9 -22 27l14 79c-37 0 -146 20 -193 80c-58 78 -42 230 56 320c69 59 183 81 221 81l14 79c13 24 33 28 50 28h41c34 0 47 -10 43 -29l-14 -78c20 -7 271 -3 229 -241c-42 -237 -292 -235 -311 -241zM592 347 c16 90 -15 148 -99 166c-3 0 -62 -332 -58 -332c88 17 141 73 157 166zM201 346c-22 -133 37 -153 95 -164l58 330c-82 -19 -136 -70 -153 -166'], + 0x1D7A6: [694,0,732,-20,706,'437 368l194 -326c16 -26 -2 -42 -34 -42h-83c-19 0 -35 0 -46 22l-125 240l-203 -238c-15 -18 -20 -24 -53 -24h-75c-14 0 -36 0 -32 23c1 7 2 8 13 20l294 325l-169 284c-19 28 1 42 32 42h83c21 0 34 0 47 -23l103 -185l163 187c19 21 36 21 53 21h75 c14 0 36 0 32 -23c-1 -7 -2 -8 -13 -20'], + 0x1D7A7: [695,0,854,102,834,'103 583c5 23 21 30 34 36c36 3 121 17 135 -46c25 -115 -92 -325 56 -386l85 480c19 36 56 27 72 27c14 0 59 7 63 -25c1 -6 -42 -251 -82 -482c88 31 130 126 150 239c17 99 36 161 89 185c16 7 63 5 109 6c41 -11 16 -71 -28 -77c-12 -16 -22 -52 -33 -114 c-28 -155 -107 -289 -302 -318c-5 -27 -13 -98 -45 -106c-5 -2 -49 -1 -83 -1c-6 2 -16 5 -22 20l13 87c-218 28 -206 202 -185 317c16 91 13 121 0 121c-28 4 -27 29 -26 37'], + 0x1D7A8: [716,0,793,-7,754,'447 643c-154 0 -206 -73 -224 -179c-15 -81 22 -157 32 -202c17 -78 80 -205 -1 -260c-5 -2 -136 -1 -240 -1c-30 11 -21 39 -19 51c2 11 3 47 36 55c9 -1 142 -1 179 1c-41 102 -140 242 -130 353c15 173 207 262 379 255c130 0 183 -25 218 -48 c92 -60 80 -162 72 -207c-24 -137 -172 -246 -254 -353h153c10 0 42 4 46 -24c1 -5 0 -9 -4 -29c-1 -11 -4 -46 -35 -53l-240 -1c-4 1 -15 4 -21 21c29 165 185 286 213 442c18 106 -7 179 -160 179'], + 0x1D7A9: [697,-8,915,117,912,'331 8h133c18 7 33 14 47 32c2 3 395 621 401 635c1 7 0 14 -5 19c-6 7 -557 0 -779 0c-7 -5 -10 -12 -11 -19c1 -23 174 -620 177 -635c4 -16 20 -28 37 -32zM692 572l-284 -446l-126 446h410'], + 0x1D7AA: [469,13,695,40,707,'542 113c22 0 25 36 35 41h130c-11 -63 -90 -165 -188 -165c-54 0 -99 30 -128 88c-21 -22 -78 -67 -141 -84c-46 -12 -248 -36 -203 236c12 65 48 240 245 240c36 0 106 -18 158 -99l55 99l133 -2c-3 -17 -108 -204 -141 -256c12 -51 30 -98 45 -98zM184 229 c-12 -71 -20 -116 45 -116c54 0 104 77 123 97c-11 56 -25 135 -84 135c-66 0 -73 -54 -84 -116'], + 0x1D7AB: [733,90,549,-25,491,'219 -11c-58 0 -83 32 -88 37l-22 -116c-58 0 -132 -1 -134 0c49 277 108 668 158 737c61 83 157 86 191 86c120 0 187 -47 162 -189c-4 -25 -19 -85 -89 -129c47 -25 110 -71 85 -210c-25 -144 -166 -216 -263 -216zM297 638c-62 0 -68 -57 -82 -137l-10 -54 c22 4 135 10 147 107c13 89 -24 84 -55 84zM235 92c52 0 99 48 110 113c22 121 -83 146 -156 152c-10 -57 -25 -145 -26 -155c-1 -22 -1 -110 72 -110'], + 0x1D7AC: [469,201,610,59,635,'403 206c-2 -10 7 -104 -20 -277c-7 -44 -87 -146 -137 -129c-62 22 -83 74 -90 135c21 106 66 215 117 298c-5 66 -17 98 -37 98c-28 0 -39 -38 -41 -44h-136c24 100 146 182 202 182c50 0 93 -45 116 -110c66 56 181 98 258 102l-23 -127c-106 -6 -208 -123 -209 -128'], + 0x1D7AD: [719,10,518,15,516,'195 -10c-111 0 -205 46 -173 228c23 130 88 191 163 215l13 4l-16 9c-19 12 -79 46 -64 127c15 87 102 146 160 146c41 0 45 -3 153 -71c84 -53 86 -54 85 -61c-4 -6 -14 -19 -46 -58c-14 0 -157 101 -178 108c-8 3 -15 4 -23 4c-51 0 -101 -71 -60 -112 c2 -3 138 -92 153 -97c72 -26 108 -91 86 -214c-23 -131 -90 -210 -213 -227c-9 -1 -25 -1 -40 -1zM282 372c-27 0 -106 -17 -135 -207c-10 -57 -7 -102 41 -102c31 0 59 19 81 47c17 26 38 67 54 161c13 74 -4 101 -41 101'], + 0x1D7AE: [470,11,472,20,476,'22 164c5 25 8 62 74 95c-19 28 -19 57 -16 70c19 112 149 139 188 139c69 14 106 -35 208 -124l-115 -96c-15 18 -75 84 -107 84c-22 0 -42 -10 -44 -25c0 -15 12 -19 59 -21l32 -2l-13 -70c-17 0 -62 1 -73 1c-30 0 -49 -2 -53 -25c-7 -38 25 -69 65 -63 c39 7 80 64 101 77l83 -90c-45 -47 -160 -125 -218 -125c-76 0 -185 51 -171 175'], + 0x1D7AF: [734,265,518,44,529,'153 734h125c-1 -31 29 -50 47 -50c81 0 133 58 148 48c2 -2 54 -101 56 -107c-151 -98 -318 -232 -343 -373c-4 -22 -12 -92 37 -112c17 -7 56 4 112 -25c33 -18 103 -74 83 -184c-20 -117 -163 -192 -258 -196l20 120c15 16 76 -10 102 77c2 15 0 68 -67 68 c-173 0 -283 267 16 557c-80 35 -89 117 -78 177'], + 0x1D7B0: [481,200,564,57,546,'177 294h-120c11 60 78 173 162 185c21 9 93 -7 105 -65c28 30 74 54 117 65c81 0 105 -74 105 -138c2 -32 -45 -266 -92 -541c-66 0 -131 -3 -133 2l86 489c-3 19 -7 39 -27 39c-19 0 -29 -15 -41 -42l-54 -299l-138 -1c26 151 61 341 61 349c0 11 -3 19 -6 19 c-7 0 -22 -43 -25 -62'], + 0x1D7B1: [733,11,549,34,513,'46 359c29 165 122 374 294 374c183 0 188 -228 163 -372s-111 -372 -294 -372c-182 0 -189 226 -163 370zM313 595c-76 22 -117 -141 -117 -168h181c24 94 -2 180 -64 168zM233 126c55 0 93 43 126 198h-183c-15 -106 -16 -198 57 -198'], + 0x1D7B2: [471,11,304,11,274,'76 471h139l-64 -357c11 -8 34 14 35 23h88c-5 -31 -54 -148 -155 -148c-64 0 -102 52 -108 105'], + 0x1D7B3: [470,12,531,21,521,'112 470c55 0 120 0 122 -1c6 -4 -5 -71 -18 -145l66 53c95 76 101 82 174 82c15 0 49 -1 65 -1l-28 -123c-21 0 -46 10 -60 10c-22 0 -103 -62 -133 -98c8 -27 158 -192 202 -248c0 -4 -7 -9 -10 -11h-178c-23 33 -73 94 -129 162l-31 -157l-133 2'], + 0x1D7B4: [734,0,547,-37,478,'-37 0l242 433c-5 12 -31 143 -41 141l-94 -48c-1 8 -1 124 0 128c2 15 98 80 166 80c20 0 40 -38 67 -119c40 -117 175 -613 175 -613c-18 -4 -105 -1 -160 -2l-66 255l-148 -254'], + 0x1D7B5: [470,206,610,-20,620,'205 329c-20 -110 -48 -191 11 -214c49 -19 81 40 85 62c9 47 29 149 53 291l134 -1l-49 -301c2 -22 9 -44 33 -44c12 -4 57 27 63 72h85c1 -12 1 -42 -1 -54c-15 -86 -97 -163 -192 -163c-73 0 -97 47 -110 68c-11 -44 -86 -79 -112 -68c-12 0 -37 1 -58 19 c-1 0 -27 -148 -37 -202h-129l-1 2l122 674h126'], + 0x1D7B6: [458,0,518,29,523,'267 166c76 76 104 124 117 171v110c1 5 11 11 11 11l128 -1c1 -4 1 -95 0 -104c-20 -110 -191 -295 -242 -352c-62 0 -123 -5 -128 2l-57 338c-7 41 -43 76 -60 89c-9 7 -9 17 -1 27c2 0 132 -1 180 -1c8 -5 26 -120 52 -290'], + 0x1D7B7: [768,202,518,38,476,'273 768c16 -13 -9 -50 38 -50c60 0 150 12 164 12l1 -112c-3 -7 -12 -10 -81 -22c-83 -10 -134 -23 -141 -63c-6 -34 16 -53 114 -53c35 0 30 2 18 -66c-18 -101 -7 -57 -80 -78c-148 -35 -160 -170 -91 -195c19 -7 56 3 114 -26c88 -49 100 -147 76 -212 c-24 -54 -94 -99 -173 -105l14 113c12 13 27 4 30 23c3 18 -5 41 -22 53c-42 28 -84 -4 -151 48c-106 79 -87 281 94 395c1 0 -27 43 -16 107c6 32 23 62 32 71c-3 2 -49 20 -62 52c-9 18 -21 91 1 108h121'], + 0x1D7B8: [468,9,579,42,537,'46 229c26 148 167 239 276 239c201 0 215 -164 215 -203c0 -124 -122 -274 -255 -274c-179 0 -256 121 -236 238zM308 332c-41 0 -111 -27 -124 -103c-15 -87 65 -103 88 -103c53 0 113 41 124 103c10 58 -31 103 -88 103'], + 0x1D7B9: [458,11,641,13,633,'632 164c-23 -97 -86 -175 -167 -175c-54 0 -102 39 -106 128c-1 27 -1 27 15 126l16 91h-86c-32 -184 -59 -339 -66 -343l-128 2l-2 4l59 337l-126 -32s-29 111 -27 119c9 6 84 30 155 36c6 0 337 1 460 1l-13 -117l-89 -7c-17 -99 -32 -191 -27 -204 c3 -10 14 -11 21 -2c19 28 9 45 26 59h40c45 0 49 3 45 -23'], + 0x1D7BA: [469,194,518,-6,491,'487 229c-26 -146 -146 -240 -253 -240c-17 0 -69 9 -74 15l-28 -198c-59 0 -135 0 -138 2c44 242 73 450 86 480c30 78 113 181 236 181c118 0 196 -101 171 -240zM350 229c20 113 -24 130 -56 130c-88 0 -138 -230 -59 -258c62 -4 105 70 115 128'], + 0x1D7BB: [460,165,488,53,502,'412 -29c-17 -96 -137 -136 -203 -136l19 109c9 0 40 15 44 22c-12 28 -20 43 -105 41c-66 21 -130 87 -110 200c36 200 249 244 401 250c4 0 35 3 44 3l-13 -138c-1 0 -30 -1 -56 -1c-93 -2 -195 -4 -236 -96c-7 -44 -1 -101 54 -101c88 -3 176 -53 161 -153'], + 0x1D7BC: [458,10,625,42,634,'528 321c12 -39 0 -99 -6 -119c-55 -166 -178 -212 -273 -212c-217 0 -279 249 -109 393c42 38 103 68 171 74c2 1 237 1 323 1l-26 -137h-80zM396 224c15 142 -212 118 -212 0c0 -41 27 -91 65 -96c60 -22 139 24 147 96'], + 0x1D7BD: [458,11,503,-11,491,'264 -11c-70 0 -138 47 -144 140c-1 20 15 111 31 205c-9 -1 -36 -2 -40 -2c-47 -10 -68 -40 -79 -29c-6 7 -44 102 -43 107c3 18 92 43 146 47c2 1 259 1 356 1l-21 -123l-182 -1c-14 -81 -29 -168 -28 -174c3 -22 24 -38 49 -38c21 0 63 33 73 65h85 c5 -83 -82 -198 -203 -198'], + 0x1D7BE: [458,10,549,73,511,'294 127c77 0 109 198 38 316c3 18 51 15 123 15c40 0 36 -1 40 -14c18 -64 22 -142 9 -213c-24 -139 -126 -241 -234 -241c-110 0 -174 104 -150 239c13 72 -10 164 -47 217c3 15 91 12 157 12c66 -133 10 -237 28 -302c9 -24 20 -29 36 -29'], + 0x1D7BF: [469,187,641,60,616,'64 233c20 114 86 207 107 225h146c7 -3 8 -14 2 -19c-4 -5 -122 -69 -147 -209c-13 -73 53 -109 75 -120l42 222c37 90 120 137 188 137c105 0 158 -97 134 -236c-8 -43 -25 -113 -125 -185c-33 -22 -85 -42 -122 -51l-32 -184h-136l31 184c-83 22 -188 96 -163 236z M504 243c8 47 8 116 -40 116c-22 0 -32 -17 -43 -43l-37 -206c110 31 116 109 120 133'], + 0x1D7C0: [470,208,610,-11,621,'334 278c18 20 123 173 143 191h139c2 -2 8 -8 5 -15c-30 -72 -192 -269 -239 -324c54 -163 102 -199 138 -199l14 1c7 -9 6 -7 -5 -71c-11 -65 -5 -69 -54 -69c-119 0 -167 111 -199 194c-26 -28 -117 -168 -143 -190h-139c-3 2 -8 7 -5 14c1 1 175 236 240 325 c-55 163 -117 198 -153 198c-4 0 -6 1 -5 7l10 61c12 67 7 69 31 69c78 0 164 -41 222 -192'], + 0x1D7C1: [722,193,641,43,604,'49 281c12 67 50 158 68 177h123c4 -7 4 -6 5 -11c-3 -19 -67 -60 -87 -170c-6 -36 -2 -122 74 -166l107 604c3 2 5 7 8 7h109c1 -3 3 -5 5 -7l-106 -604c33 14 114 60 132 166c18 102 -29 158 -27 170c3 5 9 11 9 11h123c17 -20 13 -138 6 -177 c-29 -161 -150 -256 -262 -285l-34 -183l-8 -6h-109l-5 6l32 183c-85 24 -193 116 -163 285'], + 0x1D7C2: [458,11,732,31,693,'689 201c-20 -114 -120 -212 -229 -212c-48 0 -96 29 -124 66c-40 -37 -98 -66 -146 -66c-103 0 -177 89 -155 213c26 144 159 252 169 255c80 0 150 1 153 -5c2 -4 2 -8 -1 -11c-70 -60 -169 -155 -184 -241c-6 -36 -5 -84 20 -97c101 -22 97 171 121 207 c4 2 80 0 136 0c6 -3 6 -1 -6 -69c-4 -24 -33 -141 36 -141c59 0 66 63 73 99c15 81 -24 149 -79 216l-21 26c-1 3 1 7 3 11c5 6 75 6 156 6c57 -69 97 -150 78 -257'], + 0x1D7C3: [636,6,453,0,411,'258 390c-21 33 -87 112 -171 170l78 76c124 -93 275 -271 242 -448c-25 -119 -128 -194 -235 -194c-200 0 -222 224 -86 345c78 69 145 56 172 51zM99 201c-13 -59 26 -110 90 -110c139 0 176 220 38 220c-63 0 -117 -47 -128 -110'], + 0x1D7C4: [519,-2,534,47,513,'513 431l-73 -62c-16 43 -72 50 -130 50c-90 0 -134 -42 -152 -115c78 -2 140 -3 220 -2l-14 -83c-74 0 -147 0 -222 -2c1 -87 0 -121 105 -121c57 0 125 11 175 39l6 -59c-76 -55 -134 -74 -220 -74c-143 0 -179 91 -153 233c28 163 142 284 302 284 c63 0 121 -41 156 -88'], + 0x1D7C5: [712,22,617,49,597,'576 159l-90 23c-43 -100 -138 -204 -257 -204c-28 0 -50 6 -67 26c-46 35 -86 243 -113 269l88 72c42 -57 27 -251 144 -251c66 0 115 59 130 116c-113 44 -300 180 -278 320c19 123 148 206 262 176c154 6 173 -251 124 -405l78 -26zM458 316c40 86 51 293 -125 293 c-80 0 -177 -140 125 -293'], + 0x1D7C6: [518,24,574,-3,578,'427 330l-361 -314c-14 -14 -32 -30 -54 -23c-19 6 -20 33 -6 50c97 138 86 350 51 429l85 35c23 -32 73 -145 6 -307l351 298c14 14 43 25 65 18c19 -6 18 -44 4 -60c-7 -7 -24 -19 -56 -89c-79 -194 -18 -347 -16 -363l-67 -28c-32 22 -84 175 -2 354'], + 0x1D7C7: [603,192,565,30,541,'537 214c23 125 -40 196 -166 209l32 180h-93l-33 -181c-112 -19 -216 -61 -242 -206c-25 -142 67 -205 170 -205c-17 -93 -25 -160 -35 -203h93c12 85 28 153 36 204c94 -2 213 55 238 202zM433 214c-11 -64 -56 -108 -119 -109c11 73 24 148 40 223 c63 0 91 -49 79 -114zM223 106c-68 0 -95 36 -82 109c13 75 54 113 122 114c-11 -75 -25 -150 -40 -223'], + 0x1D7C8: [444,199,463,-11,457,'377 64c-102 -88 -245 -72 -265 -21c-7 -42 -9 -92 -18 -149l185 -1l-16 -90c-108 10 -295 -43 -273 81c14 82 30 196 55 342c24 133 115 218 242 218c66 0 111 -24 148 -60c47 -45 15 -259 -58 -320zM229 105c151 0 190 237 40 237c-69 0 -114 -37 -132 -114 c-15 -62 14 -139 92 -123'], + 0x1D7C9: [514,11,834,61,798,'304 404c-11 -3 -141 -58 -167 -202c-22 -124 52 -213 155 -213c48 0 106 29 146 66c28 -37 76 -66 124 -66c109 0 204 99 229 212c28 124 -21 281 -102 313h-415c-21 0 -108 -10 -170 -58c-41 -32 -42 -44 -43 -54l51 -63c48 49 133 65 192 65zM620 404 c28 -57 51 -117 34 -205c-7 -36 -25 -83 -54 -96c-69 0 -73 114 -69 138c12 68 12 66 6 69c-56 0 -99 2 -103 0c-7 -38 -16 -76 -18 -80c-14 -40 -87 -127 -122 -127c-25 13 -26 61 -20 97c15 86 76 144 147 204h199'], + 0x1D7CA: [682,3,556,28,539,'206 678c93 0 186 4 232 4c39 0 57 -1 95 -4l6 -7l-14 -142h-36l-8 75c-1 12 -44 19 -111 19c-34 0 -67 -1 -116 -3v-243c12 5 183 8 216 -1c-3 -78 2 -19 2 -30l3 -108h-40l-6 50c-3 26 -19 37 -57 37c-17 0 -101 -1 -118 -3v-187c0 -88 2 -92 48 -95l47 -3v-40 c-134 3 -134 3 -166 3c-34 0 -34 0 -155 -3v40l37 3c47 4 48 6 48 95v408c0 88 -3 94 -48 98l-37 3v37c149 -3 149 -3 178 -3'], + 0x1D7CB: [499,237,522,20,506,'299 157c-35 0 -70 -1 -105 -4v-390c-26 5 -53 8 -88 8c-26 0 -52 -2 -86 -7v37l49 3c29 2 34 6 34 54c0 4 -1 636 -1 641c51 -3 78 -6 120 -7l256 7c38 -3 38 -71 0 -71c-34 0 -183 5 -218 2c-54 0 -64 -22 -66 -222c40 -3 79 -4 118 -4c44 0 78 2 111 5 c37 -1 35 -57 0 -57c-40 3 -84 5 -124 5'], + 0x1D7E2: [689,22,499,42,457,'457 331c0 -108 -10 -176 -40 -242c-32 -70 -95 -111 -168 -111c-57 0 -133 27 -173 125c-30 74 -34 148 -34 228c0 82 5 166 38 240c41 91 111 118 170 118c51 0 120 -24 161 -101c42 -82 46 -176 46 -257zM250 40c32 0 85 16 111 108c18 64 18 128 18 195 c0 63 0 132 -19 188c-7 19 -33 96 -111 96c-81 0 -106 -83 -112 -103c-17 -56 -17 -117 -17 -181c0 -79 1 -134 17 -192c20 -73 61 -111 113 -111'], + 0x1D7E3: [689,0,499,89,424,'299 689v-630h125v-59h-329v59h125v528c-50 -21 -98 -23 -131 -24v59c48 2 131 5 190 67h20'], + 0x1D7E4: [689,0,499,42,449,'83 466c-24 35 -17 21 -41 56c24 88 80 167 194 167c132 0 213 -102 213 -218c0 -124 -116 -197 -188 -266c-31 -29 -107 -105 -139 -134h109c12 0 24 1 36 1h182v-72h-399v65l124 126l77 72c59 61 116 119 116 205c0 80 -51 156 -145 156c-91 0 -119 -79 -139 -158'], + 0x1D7E5: [689,22,499,42,457,'92 522l-36 55c42 71 115 112 192 112c99 0 182 -67 182 -154c0 -64 -35 -134 -111 -175c68 -22 138 -85 138 -177c0 -107 -88 -205 -210 -205c-40 0 -132 10 -205 105l11 61c44 -69 123 -104 192 -104c77 0 123 65 123 144c0 51 -22 145 -130 145h-71v62c71 6 73 6 79 7 c61 15 102 75 102 137c0 65 -49 95 -101 95c-61 0 -126 -37 -155 -108'], + 0x1D7E6: [667,0,499,28,471,'372 174v-174h-79v174h-265v62l253 431h91v-431h99v-62h-99zM106 236h193v386c0 -58 -141 -299 -193 -386'], + 0x1D7E7: [667,22,499,39,449,'153 602v-210c29 27 67 42 107 42c103 0 189 -101 189 -228c0 -128 -100 -228 -219 -228c-81 0 -150 41 -191 99l33 57c29 -55 90 -94 157 -94c9 0 131 0 131 168c0 122 -54 164 -101 164c-58 0 -95 -40 -112 -80h-66v375h335v-65h-263'], + 0x1D7E8: [689,22,499,42,457,'415 669v-60c-35 14 -67 21 -105 21c-92 0 -171 -81 -184 -245c61 76 137 84 169 84c96 0 162 -113 162 -243c0 -81 -19 -127 -64 -179c-39 -46 -82 -69 -142 -69c-85 0 -209 62 -209 349c0 219 126 362 267 362c14 0 55 0 106 -20zM127 223c3 -34 18 -183 124 -183 c57 0 83 34 100 63c24 41 24 88 24 123c0 45 -2 81 -23 118c-20 38 -48 63 -96 63c-83 0 -128 -81 -128 -156c-1 -12 -1 -14 -1 -28'], + 0x1D7E9: [667,11,499,42,457,'42 594v73h415v-66c-78 -90 -221 -307 -221 -612h-84c0 238 89 440 237 605h-347'], + 0x1D7EA: [689,22,499,42,457,'320 361c67 -24 137 -86 137 -178c0 -108 -89 -205 -208 -205c-115 0 -207 94 -207 205c0 88 65 152 137 178c-89 29 -123 96 -123 150c0 94 82 178 194 178c108 0 193 -82 193 -178c0 -54 -34 -121 -123 -150zM250 391c72 0 123 47 123 120c0 66 -45 119 -124 119 c-74 0 -123 -49 -123 -119s47 -120 124 -120zM250 40c64 0 126 45 126 144c0 105 -69 145 -127 145c-54 0 -126 -38 -126 -145c0 -96 58 -144 127 -144'], + 0x1D7EB: [689,22,499,42,457,'72 24l31 54c36 -30 69 -38 103 -38c79 0 156 78 167 241c-43 -54 -107 -84 -169 -84c-96 0 -162 114 -162 244c0 44 2 111 65 180c35 37 76 68 146 68c85 0 204 -64 204 -349c0 -221 -121 -362 -252 -362c-62 0 -99 21 -133 46zM371 418c0 49 -11 212 -118 212 c-52 0 -80 -28 -100 -58c-28 -45 -29 -86 -29 -131c0 -44 1 -81 23 -121c21 -37 49 -61 96 -61c79 0 128 75 128 159'], + 0x1D7EC: [689,21,549,43,506,'506 330c0 -134 0 -351 -232 -351c-231 0 -231 219 -231 351c0 134 0 359 232 359c231 0 231 -227 231 -359zM179 344c0 -144 -5 -296 95 -296c104 0 96 161 96 296c0 125 9 276 -96 276c-103 0 -95 -150 -95 -276'], + 0x1D7ED: [689,0,549,76,473,'355 643v-574h70c11 0 48 0 48 -34c0 -35 -37 -35 -48 -35h-285c-13 0 -48 0 -48 35c0 34 35 34 48 34h78v497c-29 -8 -64 -13 -94 -13c-13 0 -48 0 -48 35c0 28 26 35 44 35c99 2 137 37 155 53c12 11 16 13 36 13c44 0 44 -28 44 -46'], + 0x1D7EE: [689,0,549,46,494,'46 541c19 68 82 148 213 148c147 0 235 -104 235 -221c0 -86 -53 -139 -110 -189l-200 -176c20 0 282 1 289 -3c21 -9 21 -27 21 -42v-12c0 -33 -10 -46 -48 -46h-343c-37 0 -48 12 -48 46v8c0 16 0 18 10 28l191 196c60 62 98 126 98 188c0 58 -32 127 -110 127 c-64 0 -98 -41 -118 -107c-3 -12 -5 -18 -14 -18'], + 0x1D7EF: [689,21,549,46,503,'61 587c0 8 67 102 204 102c65 0 208 -13 208 -166c0 -55 -27 -118 -108 -160c90 -22 138 -81 138 -168c0 -128 -68 -216 -240 -216c-131 0 -217 78 -217 90l25 77c67 -60 155 -77 187 -77c91 0 98 64 98 128c0 74 -11 129 -102 129h-44c-26 0 -27 1 -27 26v18 c0 28 0 24 40 27c30 2 55 4 79 31c31 37 31 83 31 96c0 48 -9 79 -73 79c-13 0 -98 -10 -149 -80'], + 0x1D7F0: [668,0,549,31,518,'39 252l222 394c12 22 27 22 46 22h73c37 0 48 -12 48 -46v-384h42c35 0 48 -10 48 -46c0 -38 -17 -45 -48 -45h-42v-101c0 -33 -10 -46 -48 -46h-28c-41 0 -48 15 -48 46v101h-225c-41 0 -48 16 -48 46v24c0 18 0 21 8 35zM135 238h175v329h-1c-5 -17 -14 -46 -174 -329 '], + 0x1D7F1: [668,21,549,37,494,'213 572v-151c24 9 48 13 73 13c153 0 208 -94 208 -221c0 -156 -88 -234 -249 -234c-143 0 -208 104 -208 111s23 41 37 63c6 8 8 13 16 13c7 0 10 -6 13 -12c40 -76 108 -85 139 -85c105 0 105 73 105 148s0 148 -65 148c-42 0 -76 -20 -100 -57 c-14 -23 -23 -23 -49 -23c-27 0 -50 1 -50 44v295c0 38 16 44 48 44h278c48 0 48 -23 48 -48c0 -26 -1 -48 -48 -48h-196'], + 0x1D7F2: [689,21,549,46,503,'432 643v-36c0 -14 0 -26 -12 -26c-24 13 -65 22 -83 22c-150 0 -146 -140 -151 -228c27 56 67 86 122 86c195 0 195 -179 195 -234c0 -75 -6 -130 -58 -186c-41 -44 -89 -62 -166 -62c-233 0 -233 249 -233 348c0 85 0 362 288 362c10 0 37 0 63 -10 c35 -12 35 -13 35 -36zM278 69c85 0 85 65 85 159c0 95 0 164 -80 164c-71 0 -95 -73 -95 -153c0 -83 11 -170 90 -170'], + 0x1D7F3: [669,11,549,46,503,'128 564c-67 0 -82 1 -82 46v13c0 46 20 46 68 46c49 0 313 0 347 -1c42 -1 42 -27 42 -48c0 -18 0 -25 -8 -35c-120 -145 -207 -319 -210 -558c0 -38 -32 -38 -48 -38h-46c-41 0 -48 16 -48 47c0 49 0 291 224 529c-23 0 -216 -1 -239 -1'], + 0x1D7F4: [689,21,549,46,503,'380 360c80 -22 123 -77 123 -165c0 -144 -78 -216 -229 -216c-144 0 -228 66 -228 216c0 61 20 137 123 165c-90 29 -108 90 -108 141c0 150 105 188 214 188c119 0 213 -46 213 -188c0 -43 -12 -110 -108 -141zM275 396c84 0 85 49 85 104c0 69 -7 103 -86 103 s-85 -36 -85 -103c0 -57 2 -104 86 -104zM275 69c87 0 89 56 89 128c0 64 0 129 -90 129c-89 0 -89 -66 -89 -129c0 -74 2 -128 90 -128'], + 0x1D7F5: [689,21,549,46,503,'127 109c13 0 30 -40 100 -40c152 0 132 190 136 225c-13 -30 -48 -87 -122 -87c-64 0 -110 14 -150 64c-43 55 -45 110 -45 171c0 74 7 122 49 175c52 61 118 72 180 72c227 0 228 -243 228 -346c0 -87 0 -364 -274 -364c-98 0 -150 51 -150 59c0 5 14 27 33 58 c5 8 7 13 15 13zM266 276c96 0 96 139 96 152c0 101 -16 175 -85 175c-91 0 -91 -69 -91 -162c0 -96 0 -165 80 -165'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Script/Regular/Main.js new file mode 100644 index 0000000..e3d88ac --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Script/Regular/Main.js @@ -0,0 +1,131 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Script'] = { + directory: 'Script/Regular', + family: 'AsanaMathJax_Script', + id: 'ASANAMATHSCRIPT', + 0x20: [0,0,249,0,0,''], + 0x210A: [410,344,896,56,842,'85 -287c0 -23 19 -30 41 -30c89 0 232 160 324 280c-249 -105 -365 -199 -365 -250zM664 410c51 0 64 -29 64 -64l41 47h71l-274 -362c98 37 195 100 260 153l16 -19c-51 -47 -178 -128 -311 -175c-181 -262 -332 -334 -416 -334c-51 0 -59 27 -59 44 c0 96 186 208 421 297l103 134c-119 -117 -197 -146 -249 -146c-48 0 -62 37 -62 69c0 155 252 356 395 356zM701 347c2 26 -21 27 -35 31c-62 -2 -140 -70 -219 -157c-56 -59 -132 -148 -132 -186c0 -11 5 -25 29 -25c41 0 120 44 201 125c78 69 156 170 156 212'], + 0x210B: [732,12,961,46,1161,'1118 709c-80 0 -285 -226 -350 -298c220 88 368 229 368 280c0 12 -1 18 -18 18zM398 284c-129 -51 -291 -142 -328 -255c0 -11 6 -20 26 -20c82 0 227 176 302 274v1zM307 555c-10 81 112 166 197 161c152 -53 221 -120 354 13l19 -12c-164 -120 -276 -257 -359 -370 l158 41c157 164 354 344 443 344c38 0 42 -19 42 -33c0 -87 -192 -232 -420 -325v2c-75 -85 -236 -271 -236 -339c0 -18 11 -28 29 -28c44 0 143 74 218 142l14 -14c-108 -108 -192 -149 -239 -149s-58 31 -58 57c0 62 58 173 186 316c-16 -5 -128 -35 -161 -44 c-116 -152 -279 -329 -407 -329c-23 0 -41 14 -41 36c0 92 176 218 386 299c79 99 189 220 305 307c-103 -47 -178 47 -255 55c-129 15 -217 -189 -74 -189c30 0 88 12 152 88h14c-39 -98 -248 -174 -267 -29'], + 0x2110: [729,15,937,46,1123,'550 490c5 229 357 196 554 239c55 -17 -22 -44 -66 -44c-38 0 -187 -121 -295 -297v1c41 1 103 17 202 105v-18c-32 -35 -100 -100 -215 -114c-147 -278 -307 -377 -512 -377c-83 0 -172 24 -172 97c0 38 38 78 75 75c54 -4 51 -59 8 -66c-28 4 -48 23 -58 -13 c0 -45 66 -73 147 -73c181 0 316 140 453 360c-114 23 -121 97 -121 125zM978 682h-13c-235 -3 -385 -99 -385 -204c0 -18 8 -80 106 -90c83 127 189 230 292 292v2'], + 0x2112: [758,10,1025,46,1163,'313 36c-49 18 -205 71 -240 7c0 -11 12 -31 99 -31c65 0 130 16 141 24zM750 388c188 43 344 157 388 284c0 19 -9 40 -39 40c-71 0 -208 -100 -349 -327v3zM339 532c0 172 286 280 478 200v-16c-18 7 -107 20 -162 20c-169 0 -293 -98 -292 -206 c0 -109 162 -158 305 -158c123 174 305 361 431 361c30 0 64 -19 64 -68c0 -131 -273 -296 -430 -310c-75 -120 -162 -244 -301 -310c210 -50 196 -38 402 114l14 -15c-130 -148 -297 -186 -491 -122c-109 -38 -291 -55 -311 21c0 36 52 60 122 60c45 0 108 -7 227 -48 c65 34 150 106 260 293h-22c-164 0 -294 75 -294 184'], + 0x211B: [723,16,946,49,1090,'967 639c-339 -248 -300 -589 -772 -654c-155 -21 -197 155 -71 176c70 -9 19 -94 -25 -62c-69 -36 14 -94 97 -94c63 0 122 18 176 55c159 110 351 453 577 595c-269 160 -710 -102 -676 -262c0 -53 37 -93 101 -93c122 0 285 149 330 343h19 c-37 -205 -184 -364 -351 -364c-76 0 -123 42 -123 114c0 120 177 330 511 330c64 0 144 -6 214 -51l103 49l13 -16c-33 -18 -75 -37 -95 -53c106 -154 -25 -303 -169 -331c66 -141 -180 -266 -109 -310c40 0 118 46 200 111l16 -12c-20 -22 -133 -120 -223 -120 c-42 0 -48 36 -48 53c-3 105 176 191 133 275c-37 -13 -108 47 -46 47c24 0 55 -18 59 -21c117 34 224 180 159 295'], + 0x212C: [730,6,972,46,1116,'740 631c-40 -203 -208 -364 -373 -364c-95 0 -125 59 -125 111c0 152 245 352 527 352c76 0 160 -11 232 -65v1l49 23c17 7 38 14 60 21l6 -16l-49 -23c-16 -9 -31 -16 -44 -24c46 -53 46 -99 46 -117c0 -108 -92 -167 -186 -192c35 -37 51 -65 51 -108 c0 -120 -147 -236 -278 -236c-45 0 -82 11 -82 56c0 62 78 138 233 155l3 -16c-121 -18 -214 -82 -214 -138c0 -14 9 -36 47 -36c111 0 245 147 245 245c0 17 0 47 -36 70l-47 -3c-27 0 -45 8 -45 21s20 19 34 19c11 0 17 0 58 -10c99 17 176 112 176 198 c0 35 -14 56 -32 74c-324 -214 -361 -635 -783 -635c-142 0 -167 51 -167 84c0 41 38 79 81 79c29 0 40 -19 40 -33c0 -13 -16 -33 -36 -33c-14 0 -29 9 -35 9c-13 0 -20 -10 -20 -26c0 -45 73 -61 126 -61c70 0 132 16 186 49c172 105 317 411 589 586 c-31 27 -98 61 -210 61c-278 0 -500 -201 -500 -335c0 -53 39 -85 98 -85c67 0 135 34 206 100c74 66 123 148 150 241'], + 0x212F: [411,19,516,35,481,'427 411c42 0 54 -16 54 -40c0 -40 -69 -136 -333 -204h-2c-28 -40 -67 -90 -67 -123c0 -24 19 -34 46 -34c83 0 200 73 319 164l12 -19c-142 -124 -316 -174 -384 -174c-46 0 -36 26 -36 71c9 168 250 362 391 359zM425 385c-50 0 -142 -61 -247 -184l-2 1 c142 32 275 124 275 166c0 13 -12 17 -26 17'], + 0x2130: [746,15,680,46,824,'750 682c-117 0 -291 -104 -352 -225v1c106 1 199 24 280 69c83 42 123 84 123 121c0 21 -14 34 -51 34zM357 746c61 0 111 -11 153 -29v1l-10 -17c-48 15 -82 17 -124 17c-117 0 -211 -56 -211 -140c0 -72 75 -116 192 -119c8 117 205 247 380 247c46 0 87 -12 87 -57 s-41 -89 -125 -138c-86 -45 -186 -72 -301 -77c-3 -9 -3 -17 2 -26l17 1c45 -2 71 -10 71 -25c0 -13 -19 -17 -37 -17c-16 0 -39 4 -57 17c-179 -45 -315 -185 -315 -290c0 -52 62 -89 147 -89c79 0 148 21 212 61c66 40 96 83 96 124c0 26 -11 64 -85 64 c-109 0 -204 -83 -272 -166l-16 8c67 103 172 181 285 181c36 0 64 -7 83 -23c21 -15 31 -36 31 -63c0 -50 -33 -98 -105 -142c-67 -44 -144 -64 -227 -64c-60 0 -102 13 -137 37c-30 24 -45 60 -45 105c0 166 166 250 328 278c-9 7 -12 18 -14 30c-188 10 -223 88 -223 148 c0 97 98 163 220 163'], + 0x2131: [724,19,850,32,1110,'553 312c-94 -16 -162 -52 -228 -97l-10 17c92 63 171 91 259 111c69 92 146 191 272 281v1l9 -15c-78 -69 -135 -137 -201 -248l55 10c45 50 78 72 98 72c7 -1 8 -6 9 -10c0 -16 -29 -50 -94 -79c-9 -18 -33 -59 -33 -99l-41 -11c4 31 31 83 39 99c-7 0 -40 -10 -54 -14 c-127 -231 -284 -349 -472 -349c-47 0 -129 18 -129 88c0 44 34 71 69 71c33 0 37 -27 37 -35c0 -26 -18 -32 -30 -32c-9 0 -28 9 -33 9c-11 0 -19 -9 -19 -20c0 -43 56 -61 103 -61c159 0 268 129 394 311zM977 691c41 0 80 5 125 27l8 -15c-55 -41 -123 -53 -174 -53 c-112 0 -287 39 -385 39c-176 0 -306 -105 -306 -217c0 -63 43 -98 109 -98c120 0 240 94 299 210h22c-45 -112 -165 -233 -315 -233c-111 0 -141 71 -141 121c0 67 39 127 111 177c74 52 166 75 273 75c132 0 290 -33 374 -33'], + 0x2133: [726,5,1046,45,1186,'418 22c96 9 464 646 745 702h23l-514 -683c45 -74 185 79 225 99l14 -14c-21 -19 -134 -130 -222 -130c-27 0 -51 10 -51 52c0 129 234 389 487 642c-108 -34 -225 -157 -457 -438c-30 -36 -205 -256 -260 -256c-18 0 -30 8 -30 41c0 131 288 445 517 662 c-91 -24 -202 -134 -308 -250l-121 -132c-193 -215 -314 -322 -363 -322c-128 0 -10 196 30 99c0 -38 -59 -25 -59 -53c0 -14 9 -24 33 -24c37 0 130 81 277 245l122 135c227 243 318 329 422 329h25c-187 -212 -456 -506 -535 -704'], + 0x2134: [411,19,578,36,543,'425 411c36 0 61 -25 61 -54c0 -43 -28 -96 -67 -157c10 -11 79 -24 116 -1l8 -18c-19 -16 -50 -21 -78 -21c-16 0 -40 2 -63 19c-61 -79 -173 -198 -288 -198c-50 0 -78 29 -78 73c0 161 253 357 389 357zM381 235c0 40 38 92 72 95c3 6 3 12 3 19c0 19 -12 31 -30 31 c-101 0 -347 -262 -347 -334c0 -31 27 -39 46 -39c85 0 181 97 263 194c-5 11 -6 22 -7 34'], + 0x1D49C: [713,12,885,46,1055,'546 66c11 30 22 95 22 171l-4 69c-14 -18 -114 -124 -167 -171c32 -28 80 -62 149 -69zM379 151c18 17 83 66 180 183c-21 103 -90 161 -151 161c-66 0 -111 -60 -111 -148c0 -84 42 -148 82 -196zM581 120c141 206 292 404 431 566v1c-113 -22 -290 -207 -425 -359 c1 -9 5 -69 5 -78c0 -78 -4 -106 -11 -130zM46 60c0 46 40 81 73 81c30 0 38 -24 38 -34c0 -14 -15 -38 -37 -38c-10 0 -24 7 -28 7c-15 0 -20 -10 -20 -27c0 -25 28 -40 61 -40c45 0 119 28 228 126c-92 103 -97 197 -97 222c0 93 55 167 138 167c70 0 148 -64 176 -168 c213 234 361 357 450 357c8 0 22 -4 27 -4v1c-115 -156 -277 -377 -440 -642c44 8 88 31 124 70l14 -14c-9 -12 -62 -78 -156 -82l-28 -42h-64l30 46c-76 10 -122 44 -157 71c-55 -46 -105 -79 -143 -100c-38 -19 -77 -29 -108 -29c-36 0 -81 14 -81 72'], + 0x1D49E: [744,15,751,45,874,'791 693c-95 0 -257 -78 -468 -314v1c153 4 370 82 466 177c39 37 59 68 59 91c0 36 -25 45 -57 45zM218 361c-168 27 -173 121 -173 152c0 65 31 120 93 164c62 45 141 67 239 67c58 0 118 -11 162 -23l-6 -16c-28 5 -87 17 -143 17c-196 0 -320 -115 -320 -212 c0 -76 74 -120 171 -127c177 184 398 330 548 330c39 0 85 -12 85 -57c0 -92 -215 -282 -573 -301c-71 -77 -149 -176 -149 -262c0 -60 52 -88 120 -88c134 0 302 111 302 205c0 25 -17 64 -79 64c-104 0 -205 -103 -258 -213l-19 5c60 143 166 230 275 230 c61 0 105 -30 105 -88c0 -103 -173 -223 -321 -223c-147 0 -167 81 -167 137c0 49 14 117 108 239'], + 0x1D49F: [733,8,923,44,1050,'180 15c50 0 94 9 138 24v1c-53 20 -100 36 -164 36c-63 0 -81 -20 -81 -31c0 -25 55 -30 107 -30zM897 440c0 27 0 55 -8 89v1c-49 -48 -105 -114 -170 -202l-39 -52c-70 -92 -158 -178 -291 -238c26 -9 79 -23 131 -23c217 0 377 230 377 425zM587 733 c214 0 288 -115 310 -157v1c53 35 118 67 139 77l14 -15c-88 -48 -114 -71 -139 -92c2 -14 11 -71 11 -92c0 -213 -131 -364 -243 -423c-50 -27 -103 -37 -160 -37c-78 0 -145 22 -168 28c-61 -18 -84 -23 -138 -28c-103 -13 -173 16 -168 50c0 40 61 53 111 53 c76 0 146 -27 191 -47c176 68 325 366 529 506c-37 95 -130 149 -265 149c-227 0 -406 -163 -406 -297c0 -66 47 -116 138 -116c150 0 285 128 328 280l16 -13c-38 -156 -159 -287 -332 -287c-138 0 -183 81 -183 150c0 143 155 310 415 310'], + 0x1D4A2: [740,15,703,46,871,'793 699c-158 0 -352 -203 -396 -253c251 8 444 128 444 215c0 38 -30 38 -48 38zM408 740c22 0 69 0 135 -24v1l-10 -17c-45 12 -67 16 -111 16c-140 0 -245 -77 -245 -156c0 -88 119 -106 146 -111c173 195 373 270 468 270c69 0 80 -34 80 -57 c0 -105 -246 -240 -494 -240c-43 -48 -94 -115 -94 -160c0 -22 17 -57 80 -57c65 0 156 39 323 166l15 -14c-107 -94 -100 -227 -278 -320c-66 -37 -140 -52 -219 -52c-74 0 -158 15 -158 83c0 39 39 72 69 72c25 0 35 -14 35 -30c0 -19 -13 -33 -31 -33c-9 -4 -25 6 -29 7 c0 0 -16 -8 -16 -23c0 -34 45 -56 119 -56c153 0 266 77 381 262c-47 -34 -125 -83 -211 -83c-93 0 -113 57 -113 95c0 31 9 78 57 150c-150 23 -159 108 -159 135c0 105 120 176 260 176'], + 0x1D4A5: [724,199,944,46,1095,'115 -177c113 0 270 195 284 213v1c-87 -22 -164 -49 -227 -86c-66 -39 -95 -70 -95 -95c0 -27 24 -33 38 -33zM1004 685c-33 0 -192 -135 -298 -302v1c73 11 145 65 183 101l10 -12c-17 -24 -75 -92 -210 -122c-23 -32 -137 -212 -159 -238c38 11 91 36 171 88l9 -16 c-51 -47 -139 -85 -206 -112c-81 -102 -236 -272 -392 -272c-27 0 -66 11 -66 54c0 79 150 160 377 214c81 108 165 237 198 287c-27 5 -122 25 -122 127c0 129 156 216 385 216h71c45 0 84 25 123 25c10 2 12 -1 17 -8c0 -20 -65 -31 -91 -31zM638 379 c97 139 206 229 308 298c-219 -5 -414 -92 -413 -211c0 -54 49 -82 105 -87'], + 0x1D4A6: [721,15,1016,45,1180,'708 363c118 12 362 378 433 356c58 2 44 -53 11 -53c-16 0 -20 14 -20 27c-37 10 -133 -135 -172 -183c-94 -115 -181 -155 -232 -166c24 -31 22 -51 22 -65c28 -41 -113 -189 -138 -251c60 -56 141 39 253 123l14 -14c-77 -77 -175 -150 -248 -150c-27 0 -60 11 -60 55 c0 106 209 217 125 298c-76 -11 -48 63 12 23zM546 721c196 0 232 -161 414 -5v1l26 -10c-151 -108 -289 -251 -389 -397c-144 -211 -237 -269 -324 -305c-86 -36 -223 -30 -227 68c-3 56 90 116 115 49c3 -24 -33 -40 -62 -28c-65 -30 9 -88 68 -88c135 0 257 170 338 273 c125 158 239 275 346 350c-153 -67 -208 53 -327 64c-146 14 -266 -221 -73 -221c21 0 103 6 173 85v-9c-34 -52 -91 -99 -175 -99c-51 0 -126 19 -126 101c0 88 98 171 223 171'], + 0x1D4A9: [723,13,988,46,1173,'77 34c0 -17 17 -25 40 -25c87 0 190 125 280 245c167 231 340 440 411 468c-78 -165 -112 -438 -224 -656c82 100 149 210 224 315c152 221 256 342 311 342c25 0 54 -10 54 -51c0 -31 -20 -61 -47 -61c-15 0 -29 13 -29 27c0 29 44 27 44 44c0 4 -6 17 -29 17 c-39 0 -124 -97 -255 -291c-213 -315 -280 -393 -338 -420c93 202 114 497 227 664c-45 -31 -198 -227 -318 -396c-94 -127 -210 -269 -311 -269c-29 0 -71 12 -71 61c0 37 31 69 64 69c18 0 31 -10 31 -26c0 -35 -64 -28 -64 -57'], + 0x1D4AA: [716,15,711,46,840,'705 716c78 0 135 -27 135 -94c0 -48 -30 -95 -93 -123v1l-9 16c12 6 78 41 78 105c0 28 -22 73 -107 73c-222 0 -477 -303 -555 -425c-47 -70 -70 -126 -70 -173c0 -55 43 -91 105 -91c206 0 498 347 498 496c0 19 -5 35 -18 45c-8 11 -24 16 -47 16 c-112 0 -251 -164 -251 -224c1 -9 8 -47 40 -38c74 0 149 118 183 187l16 -5c-39 -111 -125 -208 -208 -208c-41 0 -64 32 -64 63c0 114 167 251 284 251c27 0 51 -5 65 -22c18 -15 25 -36 25 -61c0 -161 -290 -520 -525 -520c-94 0 -141 57 -141 136c0 83 43 240 252 411 c175 145 327 184 407 184'], + 0x1D4AB: [717,19,949,42,1038,'207 -19c-183 -3 -221 148 -77 173c53 -7 48 -59 4 -64c-30 13 -64 13 -64 -24c0 -46 80 -58 130 -58c166 0 275 112 413 299c25 34 169 239 319 340c-249 148 -680 -77 -680 -258c0 -52 36 -79 91 -79c131 0 269 147 342 315h20c-56 -168 -169 -343 -354 -343 c-50 0 -122 22 -122 109c0 193 448 435 724 274v1c18 7 32 23 85 47v-19c-19 -14 -47 -29 -65 -47c144 -124 -19 -373 -166 -368c-116 4 -51 121 3 136h16c-33 -28 -105 -105 -25 -113c84 -8 187 140 187 234c0 41 -8 65 -38 97c-56 -22 -305 -364 -305 -382 c-95 -139 -222 -270 -438 -270'], + 0x1D4AC: [716,33,708,46,838,'184 -15c-59 0 -138 27 -138 136c0 165 139 323 250 411c176 145 325 184 407 184c112 0 135 -55 135 -94c0 -65 -45 -100 -93 -123v1l-9 16c11 6 76 41 76 105c0 28 -21 73 -105 73c-222 0 -479 -303 -557 -425c-45 -70 -68 -126 -68 -173c0 -55 42 -91 103 -91 c50 0 84 17 122 33c4 28 -56 74 -77 74c-31 0 -78 -23 -111 -47l-8 17c62 45 106 56 133 56c56 0 88 -45 107 -77c232 161 333 352 333 440c0 19 -5 35 -17 45c-10 11 -26 16 -46 16c-115 0 -254 -164 -254 -224c0 -17 24 -47 41 -38c69 0 146 107 183 187l16 -5 c-33 -111 -125 -208 -207 -208c-43 0 -65 32 -65 63c0 114 167 251 286 251c69 0 87 -48 87 -83c0 -60 -32 -136 -97 -226c-64 -90 -146 -169 -248 -237c26 -37 67 -41 77 -41c32 0 90 22 156 93l15 -6c-72 -100 -160 -121 -200 -121c-54 0 -81 27 -93 50 c-31 -15 -85 -32 -134 -32'], + 0x1D4AE: [741,15,939,46,1168,'1095 696c-110 0 -246 -156 -351 -322c201 33 396 205 396 287c0 28 -21 35 -45 35zM338 513c0 118 124 228 316 228c13 0 107 -4 157 -23l-7 -17c-40 8 -78 18 -148 18c-183 0 -294 -103 -294 -203c0 -62 89 -153 305 -153c127 173 295 353 435 353c39 0 66 -17 66 -54 c0 -54 -44 -114 -132 -180c-86 -69 -190 -115 -309 -138c-150 -254 -298 -359 -497 -359c-91 0 -184 26 -184 104c0 41 39 82 84 82c35 0 38 -26 38 -33c0 -21 -16 -37 -35 -37c-13 0 -33 11 -40 11c-16 0 -22 -16 -22 -29c0 -45 66 -77 153 -77c171 0 306 135 428 333 c-163 -2 -314 52 -314 174'], + 0x1D4AF: [745,13,828,46,1136,'71 68c0 -32 39 -60 109 -60c137 0 233 97 343 247c27 43 178 268 340 393v1l16 -14c-206 -177 -245 -409 -444 -562c-74 -60 -156 -86 -246 -86c-63 0 -143 18 -143 86c0 40 41 81 75 81c29 0 36 -24 36 -34c0 -9 -7 -33 -33 -33c-4 0 -25 6 -31 6c-8 0 -22 -4 -22 -25z M995 716c53 0 98 13 129 28v1l12 -12c-32 -25 -106 -57 -210 -57c-105 0 -230 34 -369 34c-173 0 -298 -116 -298 -222c0 -61 47 -97 119 -97c118 0 224 86 294 215l18 1c-46 -125 -158 -240 -306 -240c-107 0 -149 67 -149 120c0 70 38 130 109 180c73 52 162 78 267 78 c139 0 316 -29 384 -29'], + 0x1D4B0: [727,6,836,46,907,'367 727c111 0 144 -62 144 -111c0 -32 -18 -84 -79 -157v1l-265 -312c-45 -55 -68 -83 -68 -106c0 -20 17 -29 35 -29c95 0 343 246 493 432l208 272h72l-466 -607c-28 -40 -43 -64 -43 -74c0 -17 10 -21 24 -21c46 0 152 70 233 139l17 -15 c-78 -69 -187 -144 -257 -144c-18 0 -31 4 -41 10c-8 8 -13 22 -13 40c0 31 13 55 77 155c-173 -161 -238 -206 -311 -206c-53 0 -62 35 -62 61c0 52 31 101 114 196l215 255c64 71 74 105 74 132c0 48 -47 69 -101 69c-72 0 -141 -22 -202 -69c-63 -47 -92 -97 -92 -147 c0 -51 34 -63 61 -63c95 0 187 95 214 231l18 -3c-12 -146 -134 -255 -233 -255c-50 0 -87 36 -87 88c0 112 153 238 321 238'], + 0x1D4B1: [727,10,784,46,1071,'489 626c71 0 152 68 177 91v1l16 -14c-88 -93 -144 -124 -270 -333c-18 -32 -147 -247 -295 -358c100 9 318 165 541 419c170 192 288 289 356 289c41 0 57 -18 57 -45c0 -20 -19 -38 -42 -38c-14 0 -28 10 -28 23c0 8 -1 11 23 28c0 4 -16 10 -18 7 c-61 0 -160 -78 -305 -247c-364 -431 -520 -467 -641 -458c57 49 133 148 207 268c15 14 107 198 297 363c-31 -18 -70 -23 -93 -23c-114 0 -122 101 -222 101c-98 0 -179 -79 -179 -146c0 -44 33 -74 87 -74c71 0 143 47 177 114l13 -14c-31 -67 -110 -123 -196 -123 c-66 0 -105 39 -105 98c0 88 102 172 219 172c79 0 137 -62 140 -62c24 -21 41 -39 84 -39'], + 0x1D4B2: [722,12,862,46,1187,'1116 665c0 17 18 24 19 26c-6 2 -11 3 -14 3c-45 0 -196 -156 -389 -393c-136 -167 -277 -310 -439 -310c194 176 245 418 568 689c-91 -36 -218 -157 -379 -360c-43 -58 -247 -332 -412 -332c-4 0 -20 1 -24 2c67 64 145 171 226 297c5 2 85 159 269 328 c-37 -17 -54 -22 -92 -22c-105 0 -126 89 -214 89s-162 -72 -162 -135c0 -48 37 -73 81 -73c70 0 132 44 157 97l15 -10c-21 -51 -88 -109 -170 -109c-60 0 -106 36 -106 94c0 41 21 79 65 113c41 35 90 51 145 51c101 0 137 -91 211 -91c56 0 120 46 174 88l14 -16 c-292 -256 -238 -409 -557 -676c170 53 375 341 411 382c98 126 256 307 370 307c11 0 22 -1 33 -8c-68 -51 -121 -105 -234 -274c-128 -199 -238 -332 -331 -407c136 44 237 142 399 346c215 265 312 361 390 361c40 0 47 -23 47 -37c0 -28 -21 -45 -43 -45 c-15 0 -28 9 -28 25'], + 0x1D4B3: [721,12,908,46,1095,'106 8c82 0 231 75 413 304v1c-307 -92 -449 -219 -449 -273c0 -22 15 -32 36 -32zM1041 721c41 0 54 -18 54 -46c0 -48 -44 -106 -138 -174c-89 -66 -205 -121 -342 -162v1c-100 -135 -160 -233 -160 -290c0 -18 7 -37 35 -37c58 0 158 80 216 131l17 -15 c-68 -63 -163 -138 -230 -138c-56 0 -70 41 -70 85c0 20 7 57 14 85c-169 -139 -265 -173 -331 -173c-45 0 -60 18 -60 46c0 97 209 227 495 312c104 141 125 191 125 248c0 47 -36 102 -143 102c-144 0 -279 -99 -279 -186c0 -43 35 -72 84 -72c113 0 191 107 215 214 l17 -14c-19 -122 -111 -223 -230 -223c-85 0 -108 56 -108 95c0 111 162 211 305 211c136 0 172 -83 172 -154l-4 -61c162 161 278 215 346 215zM1034 696c-79 0 -234 -105 -395 -325c283 87 432 240 432 300c0 18 -16 25 -37 25'], + 0x1D4B4: [723,249,908,46,1085,'70 -194c0 -27 24 -32 37 -32c61 0 175 54 301 220c-102 -26 -185 -54 -247 -90c-58 -35 -91 -67 -91 -98zM321 113c85 0 231 116 428 321v1l270 277h66c-213 -219 -401 -426 -570 -666c62 24 135 61 215 117l14 -15c-67 -57 -160 -102 -254 -135 c-58 -79 -123 -146 -194 -191c-66 -48 -128 -71 -181 -71c-41 0 -69 16 -69 54c0 84 159 166 384 217l208 274c-159 -156 -254 -206 -317 -206c-55 0 -69 38 -69 66c0 149 349 366 349 482c0 24 -17 62 -105 62c-173 0 -317 -113 -317 -201c0 -21 14 -53 65 -53 c82 0 200 77 262 211l13 -14c-51 -137 -167 -220 -278 -220c-56 0 -89 27 -89 77c0 99 160 223 343 223c99 0 138 -39 138 -99c0 -77 -45 -145 -211 -306c-89 -89 -140 -144 -140 -179c0 -10 8 -26 39 -26'], + 0x1D4B5: [719,5,978,46,1078,'149 17c47 0 89 6 138 32v1c-3 -2 -69 18 -130 18c-23 0 -83 -3 -83 -27c0 -19 31 -24 75 -24zM1029 694c-34 0 -96 -25 -169 -87v1c100 3 190 46 190 76c0 5 -12 11 -21 10zM490 719c111 0 226 -98 331 -109v1c96 78 173 104 217 104c29 0 40 -12 40 -31 c0 -54 -132 -104 -245 -104c-59 -53 -117 -135 -167 -218c37 -18 118 7 123 9l12 -10c-34 -31 -111 -44 -158 -35c-18 -31 -83 -142 -267 -264c64 -16 120 -25 188 -25c130 0 196 41 241 134l21 -4c-53 -144 -170 -172 -270 -172c-54 0 -96 1 -228 42 c-72 -32 -111 -42 -178 -42c-48 0 -104 6 -104 46c0 22 25 55 122 55c33 0 84 -5 165 -27c85 59 166 154 238 263c-55 5 -95 -20 -105 -27l-16 15c39 37 91 57 147 47c97 128 153 179 196 217c-131 14 -248 105 -338 105c-94 0 -167 -72 -167 -133c0 -29 18 -71 96 -71 s134 48 167 92l11 -16c-42 -59 -108 -99 -181 -99c-77 0 -118 43 -118 94c0 43 24 82 69 115c44 34 97 48 158 48'], + 0x1D4B6: [480,12,774,42,735,'507 480c34 0 72 -19 69 -80l43 59h85l-260 -349c-6 -10 -37 -49 -37 -69c0 -8 11 -29 25 -21c63 0 273 183 282 193l21 -20c-137 -135 -251 -202 -311 -202c-49 0 -61 26 -61 58c3 25 11 51 17 78c-119 -112 -207 -139 -260 -139c-63 0 -78 36 -78 75 c0 193 301 417 465 417zM544 411c0 22 -15 36 -37 36c-129 -7 -413 -326 -413 -406c0 -21 16 -25 31 -25c144 0 359 273 379 303c27 40 40 72 40 92'], + 0x1D4B7: [854,14,747,36,827,'782 854c21 0 45 -9 45 -40c2 -88 -223 -277 -529 -459c-10 -12 -220 -267 -220 -319c0 -11 12 -26 35 -26c109 0 245 168 274 212c10 102 68 181 115 181c0 0 16 2 16 -20c0 -36 -77 -145 -100 -173c2 -16 50 -34 84 -24l9 -22c-53 -10 -106 10 -111 25 c-147 -176 -235 -203 -294 -203c-22 0 -41 7 -53 14c-12 13 -17 28 -17 48c0 74 83 198 326 475c168 181 337 331 420 331zM770 824c-99 0 -405 -381 -438 -424c209 130 456 320 456 400c0 8 1 24 -18 24'], + 0x1D4B8: [480,20,608,42,569,'140 8c95 0 282 146 381 231v1l18 -21c-126 -115 -287 -239 -407 -239c-75 0 -90 40 -90 85c0 199 291 415 442 415c35 0 85 -13 85 -67c0 -49 -44 -91 -87 -91c-33 0 -37 24 -37 33c0 19 17 36 29 38c6 0 59 7 59 29c0 10 -10 25 -31 25c-132 0 -415 -315 -415 -396 c0 -35 28 -43 53 -43'], + 0x1D4B9: [785,10,733,36,900,'462 349c0 22 -20 29 -34 29c-107 0 -350 -277 -350 -344c-4 -7 16 -23 27 -20c69 -1 168 85 176 94l68 64c66 68 113 142 113 177zM490 339l334 446h76l-523 -691c-3 -9 -31 -42 -31 -59c3 -11 9 -20 22 -18c54 0 232 156 239 164l18 -17c-123 -118 -212 -172 -264 -172 c-41 0 -52 22 -52 50c0 21 5 34 14 66c-19 -18 -124 -118 -220 -118c-32 0 -67 13 -67 62c3 182 269 361 392 356c41 0 66 -31 62 -69'], + 0x1D4BB: [853,341,957,36,1123,'1084 853c24 0 39 -15 39 -39c0 -106 -285 -338 -563 -536l-92 -128c18 -11 134 -28 201 25l12 -18c-29 -51 -167 -58 -226 -32l-340 -466h-79l372 510c-8 20 -1 56 23 83c18 21 45 36 81 54c120 171 410 547 572 547zM1066 826c-91 0 -299 -268 -452 -479v1 c144 102 256 194 344 279c86 85 130 143 130 176c0 10 -12 23 -22 23'], + 0x1D4BD: [847,13,681,36,845,'809 847c21 0 36 -13 36 -34c1 -86 -181 -277 -462 -435l-91 -126c34 31 170 153 261 153c33 0 57 -15 57 -46c0 -50 -50 -107 -64 -125l-119 -143c-19 -20 -41 -48 -41 -60c0 -3 3 -17 20 -17c53 0 163 80 260 169l17 -18c-91 -90 -204 -178 -287 -178 c-45 0 -48 27 -48 55c0 27 17 78 63 131l125 145c10 12 28 36 28 44c0 18 -12 18 -21 18c-85 0 -266 -150 -430 -380h-77l375 504c181 235 319 343 398 343zM793 819c-76 5 -207 -176 -382 -399c214 132 402 305 402 381c1 10 -17 22 -20 18'], + 0x1D4BE: [708,22,438,42,508,'100 -22c-19 0 -58 11 -58 64c0 72 53 148 98 207l158 210h85l-247 -327c-21 -40 -49 -71 -49 -99c0 -16 13 -22 23 -22c62 0 215 141 266 188l23 -18c-84 -81 -214 -203 -299 -203zM393 636c0 36 39 70 75 70v2c21 -4 40 -22 40 -44c0 -30 -36 -67 -72 -67 c-25 0 -43 23 -43 39'], + 0x1D4BF: [708,350,872,42,986,'107 -319c78 0 175 132 253 254h-2c-139 -67 -284 -167 -284 -228c4 -22 21 -26 33 -26zM103 -350c-38 0 -61 23 -61 57c0 54 68 144 332 271l365 481h86l-333 -435c132 64 305 183 373 231l21 -23c-53 -30 -374 -235 -431 -261c-97 -141 -239 -321 -352 -321zM871 636 c0 36 37 70 75 70v2c18 -4 40 -18 40 -44c0 -30 -37 -67 -73 -67c-26 0 -42 23 -42 39'], + 0x1D4C0: [854,17,831,36,877,'841 854c22 0 36 -13 36 -35c0 -92 -176 -245 -491 -457l-77 -102c133 104 217 145 272 145c21 0 51 -8 51 -38c0 -62 -85 -128 -209 -143c18 -18 29 -38 29 -62c0 -57 -65 -107 -65 -135c3 -8 3 -13 17 -13c46 0 188 123 228 159l20 -14c-106 -110 -213 -176 -265 -176 c-20 0 -47 10 -47 49c0 70 66 122 66 152c0 23 -42 28 -51 28l16 29c120 16 221 86 221 120c3 10 -9 13 -22 13c-91 0 -284 -134 -454 -374h-80l368 480c166 214 349 374 437 374zM832 828c-79 0 -257 -198 -397 -398c206 128 416 307 416 380c0 10 -10 18 -19 18'], + 0x1D4C1: [860,17,757,36,811,'772 860c23 0 39 -11 39 -36c0 -104 -293 -345 -552 -522v1c-75 -104 -181 -241 -181 -278c0 -8 6 -18 19 -18c46 0 141 83 236 171l16 -16c-124 -135 -208 -179 -259 -179c-31 0 -54 20 -54 52c0 106 230 387 360 533c134 157 299 292 376 292zM756 832 c-90 0 -300 -256 -448 -468v2c222 153 471 374 471 445c0 12 -3 21 -23 21'], + 0x1D4C2: [477,16,1147,42,1106,'651 477c35 0 67 -11 67 -55c0 -19 -33 -89 -45 -101v1c94 78 205 155 284 155c58 0 66 -32 66 -55c0 -55 -75 -143 -78 -147c-58 -81 -156 -161 -186 -238c0 -17 12 -20 22 -20c61 0 194 93 308 198l17 -21c-109 -111 -239 -209 -338 -209c-35 -7 -55 22 -55 64 c0 32 22 94 76 154c14 15 179 213 179 223c0 23 -19 21 -26 21c-100 0 -307 -171 -508 -447h-91c115 132 321 323 321 426c0 21 -15 21 -25 21c-100 0 -313 -176 -506 -447h-91l345 459h80l-105 -145c93 79 203 163 289 163'], + 0x1D4C3: [477,15,843,42,804,'651 477c39 0 67 -18 67 -55c0 -58 -59 -126 -75 -147v1c-17 -25 -172 -203 -180 -215c-8 -15 -8 -50 15 -44c63 0 210 107 307 198l19 -21c-112 -108 -243 -209 -338 -209c-32 0 -57 19 -57 64c0 32 17 92 75 154c73 81 152 157 181 223c0 21 -16 21 -26 21 c-120 0 -349 -228 -506 -447h-91l345 459h80l-105 -145c93 79 203 163 289 163'], + 0x1D4C5: [477,401,1143,42,1104,'950 477c39 0 66 -11 66 -55c0 -58 -196 -295 -213 -315c-23 -24 -49 -56 -49 -70c0 -4 4 -20 25 -20c61 0 190 93 305 198l20 -21c-110 -106 -241 -209 -338 -209c-22 0 -56 10 -56 64c0 32 20 92 74 154l145 171c6 4 36 42 36 52c0 19 -11 21 -25 21 c-91 0 -287 -150 -450 -373l-361 -475h-87l643 860h82l-108 -145c85 65 200 163 291 163'], + 0x1D4C6: [480,401,817,42,777,'570 480c70 0 73 -48 72 -80l42 59h79l-438 -587c212 179 265 202 434 346l18 -20c-167 -154 -431 -313 -558 -484l-86 -115h-91l405 538c-43 -41 -159 -149 -262 -149c-40 0 -78 15 -78 73c0 203 307 419 463 419zM605 408c0 28 -26 37 -41 37 c-123 -8 -406 -318 -406 -401c0 -15 8 -24 31 -24c128 0 416 290 416 388'], + 0x1D4C7: [468,0,747,42,708,'636 293c-43 0 -72 17 -86 45l-380 -281l-45 -57h-83l358 459h80l-256 -330l333 255c17 27 33 50 48 65c11 18 72 24 103 17c-66 -62 -96 -103 -96 -121c-1 -16 39 -23 73 -20l-16 -25s-31 -7 -33 -7'], + 0x1D4C8: [603,15,542,42,503,'503 583c0 -21 -17 -55 -71 -100c1 -25 5 -128 5 -141c0 -107 -28 -193 -90 -259c-57 -66 -128 -98 -215 -98c-32 0 -90 12 -90 66c0 37 28 70 65 70c8 0 37 -7 37 -38c0 -45 -48 -46 -48 -59c0 -9 19 -15 29 -15c124 0 267 201 279 458c-38 -39 -201 -181 -242 -218 l-21 24c37 25 221 198 262 235c8 20 44 95 79 95c9 3 25 -8 21 -20'], + 0x1D4C9: [714,20,656,42,615,'99 -20c-25 0 -57 17 -57 60c0 83 85 196 91 208l209 284h-112l23 33h115l110 149h95l-112 -149h154l-22 -33h-155l-315 -425c-17 -28 -36 -61 -36 -78c0 -7 4 -20 27 -20c67 0 225 155 266 192l20 -16c-12 -15 -181 -205 -301 -205'], + 0x1D4CA: [459,20,745,42,705,'103 -20c-26 0 -61 12 -61 64c0 56 37 129 83 186l176 229h91l-275 -356c-9 -22 -33 -49 -33 -70c0 -18 23 -24 30 -24c99 0 323 198 493 449l93 1l-282 -368c-13 -12 -31 -47 -31 -59s14 -23 26 -23c54 0 184 110 269 192l23 -18c-108 -122 -238 -203 -298 -203 c-47 0 -59 42 -59 71c0 26 7 51 15 77c-17 -37 -206 -161 -260 -148'], + 0x1D4CB: [469,22,652,42,612,'127 5c86 0 215 119 309 254c1 117 67 210 112 210c9 0 24 -11 24 -33c0 -49 -76 -156 -105 -194c27 -39 115 -16 135 -10l10 -19c-35 -32 -141 -41 -165 9c-60 -78 -122 -139 -172 -182c-60 -40 -109 -62 -152 -62c-32 0 -81 17 -81 83c0 42 27 116 94 203l148 195h90 l-233 -306c-26 -43 -57 -82 -57 -113c0 -15 8 -35 43 -35'], + 0x1D4CC: [469,22,959,42,920,'857 469c10 0 26 -11 26 -33c0 -40 -50 -121 -106 -194v2c15 -14 27 -31 68 -31c20 0 47 9 67 19l8 -19c-14 -14 -45 -27 -78 -27c-34 0 -65 9 -84 36c-66 -83 -202 -242 -336 -242c-38 0 -72 17 -72 83c0 11 4 47 5 60c-16 -19 -73 -74 -129 -108 c-44 -22 -82 -37 -115 -37c-24 0 -69 15 -69 79c0 41 27 115 102 207l149 195h90l-235 -306c-38 -57 -60 -98 -60 -124c0 -17 19 -24 35 -24c66 0 198 105 322 259l148 195h93l-239 -306c-40 -53 -56 -92 -56 -116c0 -17 16 -34 35 -34c127 0 288 219 317 256 c11 122 69 210 114 210'], + 0x1D4CD: [479,20,817,42,777,'454 479c41 0 92 -29 70 -98c95 84 148 98 185 98s68 -21 68 -62c0 -54 -46 -98 -95 -98c-27 0 -35 28 -35 41c0 31 21 39 43 39c10 0 41 2 41 23c0 23 -14 23 -34 23c-55 0 -129 -81 -184 -152c-64 -80 -155 -201 -155 -251c0 -13 8 -35 37 -35c83 0 239 120 326 202 l22 -18c-107 -112 -259 -211 -359 -211c-58 0 -74 52 -74 94c-74 -69 -154 -94 -194 -94c-30 0 -74 12 -74 62c0 54 40 97 90 97c24 0 42 -12 42 -43c0 -27 -20 -45 -46 -45l-20 3c-12 0 -26 -6 -26 -22s14 -25 34 -25c53 0 147 76 205 147c2 4 159 210 159 259 c0 24 -26 32 -44 32c-73 0 -282 -190 -303 -209l-19 25c180 157 273 218 340 218'], + 0x1D4CE: [459,403,991,42,952,'86 -337c0 -17 5 -33 34 -33c74 0 177 84 364 319h-2c-264 -105 -396 -229 -396 -286zM351 -20c-28 0 -62 12 -62 64c0 75 54 149 85 186l174 229h92c-101 -144 -219 -248 -307 -426c0 -18 19 -24 27 -24c99 0 307 184 495 449l86 1l-327 -430c42 19 207 92 318 186 l20 -22c-103 -87 -246 -164 -370 -208c-136 -195 -327 -388 -470 -388c-51 0 -70 27 -70 52c0 104 205 244 464 339l130 170c-129 -138 -228 -178 -285 -178'], + 0x1D4CF: [498,17,781,42,741,'426 498c18 0 29 -15 29 -29c2 -24 -42 -62 -51 -65c14 -8 43 -16 88 -16c51 0 68 11 86 12c73 57 112 82 140 82c23 -5 23 -5 23 -24c0 -17 -32 -59 -140 -90l-282 -208c32 0 27 4 65 4c56 0 74 -29 74 -50c0 -28 -33 -60 -33 -80c0 -5 5 -6 11 -5c54 0 206 132 273 198 l20 -20c-93 -92 -243 -224 -341 -224c-16 0 -55 5 -55 37c0 45 59 90 59 99c0 5 -8 10 -28 10c-111 0 -247 -144 -306 -144c-5 -2 -16 6 -16 15c0 25 75 71 181 123l308 237c-70 -9 -127 6 -153 24c-77 -74 -169 -149 -189 -165l-17 25c33 25 159 139 192 167 c4 43 24 87 62 87'], + 0x1D4D0: [713,12,881,46,1051,'536 87c10 29 18 93 18 154l1 46c-17 -20 -118 -126 -139 -146c39 -31 70 -46 120 -54zM383 172c63 57 123 118 160 162c-19 91 -80 146 -132 146c-49 0 -99 -41 -99 -132c0 -71 35 -131 71 -176zM963 654c-84 -39 -193 -130 -369 -330c5 -51 4 -100 3 -150 c138 198 270 364 366 480zM579 378c222 237 347 335 432 335c18 2 31 -8 40 -14c-133 -182 -286 -393 -417 -605c14 4 55 21 89 58c3 5 10 5 14 0l14 -13c4 -4 5 -9 1 -13c-11 -16 -57 -78 -154 -85l-24 -36c0 -3 -6 -5 -8 -5h-64c-8 0 -13 9 -7 17l18 31 c-56 12 -79 25 -134 62c-125 -104 -194 -122 -244 -122c-29 0 -89 17 -89 81c0 25 15 69 69 88c36 8 63 -23 62 -41c0 -20 -20 -50 -48 -50c-7 0 -26 5 -27 7c-6 0 -9 -2 -9 -16c0 -1 3 -28 48 -28c33 0 111 27 207 115c-44 55 -89 129 -89 216c0 94 59 172 145 172 c84 0 152 -82 175 -154'], + 0x1D4D1: [732,6,994,55,1119,'610 60c0 -9 6 -23 34 -23c96 0 225 135 225 226c0 10 2 39 -25 58l-43 -3c-44 0 -46 19 -46 31c0 18 12 30 36 30c23 0 49 -12 55 -12c43 0 81 31 112 68c32 38 47 76 47 115c0 23 -4 43 -20 58c-86 -60 -168 -137 -286 -306c-27 -39 -97 -117 -230 -247 c-70 -42 -151 -61 -242 -61c-150 0 -172 55 -172 93c0 23 7 42 27 60c17 19 35 26 59 26c43 0 50 -30 50 -40c0 -21 -20 -44 -46 -44c-10 0 -33 7 -33 7c-10 0 -10 -3 -10 -13c0 -35 71 -49 114 -49c62 0 123 18 174 48c89 55 192 190 229 235v-1c117 149 225 255 331 325 c-28 21 -102 48 -185 48c-147 0 -270 -54 -367 -133h1c-86 -74 -111 -145 -111 -182c0 -18 10 -39 22 -51c16 -12 39 -21 64 -21c125 0 282 144 334 324c15 19 36 17 41 -4c-36 -199 -209 -363 -373 -363c-83 0 -131 45 -131 119c0 38 13 77 39 118v-1 c79 126 282 237 482 237c68 0 156 -10 225 -63c30 13 48 31 101 44c18 0 33 -8 26 -27c4 -14 -33 -19 -89 -51c18 -24 40 -61 40 -108c0 -105 -84 -166 -173 -194c25 -27 41 -51 41 -98c0 -40 -10 -97 -90 -166c-43 -37 -114 -75 -190 -75c-58 0 -92 16 -92 65 c0 51 52 141 236 163c6 0 11 -4 13 -10l2 -16c5 -25 -64 -5 -153 -63c-36 -26 -53 -50 -53 -73'], + 0x1D4D2: [744,15,754,46,874,'361 394c251 19 467 177 467 246c0 35 -37 32 -45 32c-172 0 -392 -245 -422 -278zM283 -15c-146 0 -173 88 -173 145c0 44 11 109 97 224c-50 8 -85 24 -114 50v-2c-31 30 -47 65 -47 108c0 66 32 121 97 167c62 45 141 67 237 67c65 0 124 -11 170 -26 c2 -14 1 -27 -18 -33c-52 11 -114 16 -138 16c-189 0 -301 -114 -301 -195c0 -67 66 -105 152 -112c228 235 428 319 535 319c38 0 94 -13 94 -65c0 -33 -20 -68 -60 -108c-48 -51 -148 -122 -327 -171c-60 -13 -118 -21 -176 -25c-109 -118 -138 -194 -138 -243 c0 -30 20 -75 105 -75c28 0 62 7 96 17v-1c145 56 188 138 188 173c0 20 -15 52 -66 52c-97 0 -196 -105 -242 -201c-21 -9 -30 2 -36 13c27 66 65 126 116 167c49 43 101 64 160 64c67 0 113 -38 113 -98c0 -109 -182 -227 -324 -227'], + 0x1D4D3: [735,8,910,46,1041,'94 55c0 -12 44 -19 94 -19c29 0 67 6 102 15c-23 9 -77 22 -127 22c-60 0 -69 -18 -69 -18zM518 36c198 0 356 210 356 402c0 17 -2 51 -2 64c-151 -154 -237 -353 -451 -452c28 -7 66 -14 97 -14zM583 735c182 0 269 -88 305 -148c57 37 131 70 131 70 c23 -4 26 -17 19 -35c-92 -49 -125 -79 -127 -83c82 -278 -162 -558 -394 -547c-66 0 -132 20 -163 30c-81 -24 -121 -27 -133 -27h-45c-66 0 -130 11 -130 60c0 19 10 35 36 46h-2c19 11 47 16 85 16c68 0 141 -24 185 -44c73 30 174 136 271 254c91 108 166 184 230 230 c-37 81 -124 129 -244 129c-222 0 -385 -156 -385 -278c0 -41 22 -102 124 -102c104 0 253 82 308 265c17 9 31 7 37 -19c-22 -86 -63 -155 -124 -208h1c-62 -54 -131 -79 -211 -79c-57 0 -105 14 -136 41h1c-35 28 -54 68 -54 116c0 152 170 313 415 313'], + 0x1D4D4: [746,15,693,46,824,'740 663c-97 0 -255 -84 -322 -195c92 4 173 23 247 64c78 41 113 78 113 108c-4 8 -20 27 -38 23zM377 699c-140 0 -195 -77 -195 -126c0 -43 33 -100 168 -105c30 139 227 239 378 239c70 0 96 -27 96 -66c0 -87 -176 -206 -415 -219v-4c30 -1 87 -5 87 -34 c0 -15 -10 -27 -46 -27c-21 4 -39 8 -57 14c-80 -20 -151 -58 -206 -112c-59 -54 -88 -108 -88 -157c0 -46 55 -75 133 -75c74 0 140 19 200 56c61 37 88 76 88 112c0 40 -33 51 -71 51c-42 0 -83 -14 -126 -38v1c-41 -27 -84 -65 -130 -119c-20 -7 -31 0 -32 20 c67 103 171 180 284 180c98 0 121 -55 121 -94c0 -105 -167 -211 -333 -211c-60 0 -104 14 -140 37c-32 28 -47 65 -47 112c0 166 159 250 311 277l-3 12c-132 6 -220 62 -220 154c0 101 99 169 226 169c75 0 134 -23 162 -34c1 -13 -2 -23 -14 -27c-14 1 -29 14 -131 14'], + 0x1D4D5: [726,19,862,45,1120,'96 79c-3 0 -6 -5 -6 -8c0 -15 6 -25 22 -34v1c18 -9 40 -16 67 -16c144 0 248 118 359 276c-34 -8 -98 -24 -191 -88c-20 2 -37 6 -24 35c90 61 167 89 253 109c83 109 127 178 252 271l35 -15c4 -5 4 -13 -1 -16c-32 -28 -64 -61 -97 -99v1c-29 -34 -58 -74 -85 -120 l28 8c14 15 69 68 100 68c7 2 26 -8 20 -20c0 -37 -73 -75 -95 -85c-11 -21 -29 -56 -29 -87c0 -4 -4 -10 -8 -11l-40 -11c-8 -3 -15 4 -13 12c2 19 12 45 28 77c-8 -1 -12 -3 -24 -4c-82 -155 -231 -342 -467 -342c-70 0 -135 31 -135 97c0 48 38 79 77 79s49 -30 49 -45 c-3 -50 -49 -47 -75 -33zM973 694c65 0 89 7 128 29c24 0 24 -10 11 -24c-15 -14 -73 -68 -179 -68c-103 0 -262 14 -365 14c-180 0 -295 -90 -295 -176c0 -56 38 -85 94 -85c115 0 227 88 282 200c1 3 7 4 10 4l20 1c10 0 14 -6 10 -15c-44 -114 -162 -233 -315 -233 c-118 0 -147 76 -147 130c0 100 117 255 384 255c112 0 288 -32 362 -32'], + 0x1D4D6: [740,15,721,46,869,'422 455c209 14 399 119 399 197c-4 21 -7 26 -38 26c-73 0 -187 -43 -361 -223zM144 557c0 110 121 183 265 183c49 -4 97 -7 145 -28l-16 -26c-6 -16 -42 10 -117 10c-126 0 -227 -66 -227 -141c0 -61 68 -83 129 -96c157 179 352 262 457 262c76 0 89 -41 89 -67 c0 -107 -235 -245 -486 -245c-65 -75 -85 -122 -85 -143c0 -17 17 -44 69 -44c61 0 160 45 306 157c3 4 9 2 14 -1l13 -13c5 -4 5 -10 0 -15c-53 -50 -89 -128 -113 -166c-37 -63 -152 -199 -378 -199c-140 0 -163 55 -163 92c0 45 44 80 78 80c33 0 44 -23 44 -40 c0 -24 -19 -43 -41 -43c-3 -3 -21 -1 -27 8c-2 -2 -4 -4 -4 -12c0 -27 45 -44 104 -44c167 0 266 108 336 209c-34 -22 -102 -57 -171 -57c-96 0 -120 57 -120 105c0 27 10 78 48 135c-142 31 -149 112 -149 139'], + 0x1D4D7: [733,12,950,45,1150,'800 440c187 84 306 204 299 249c-63 0 -222 -162 -299 -249zM91 40c0 -7 0 -11 14 -11c26 0 62 25 113 67v-2c42 41 94 97 153 168c-155 -67 -280 -173 -280 -222zM1099 733c25 0 51 -10 51 -43c0 -110 -250 -258 -414 -325c-61 -70 -223 -255 -223 -319 c0 -10 5 -17 19 -17c39 0 131 71 204 137c4 5 11 5 15 0l12 -15c4 -4 4 -11 0 -16c-86 -84 -170 -147 -239 -147c-53 0 -69 40 -69 67c0 73 69 175 161 286c5 3 -114 -29 -117 -30c-110 -143 -276 -323 -403 -323c-25 0 -51 27 -51 46c0 46 35 95 109 151 c68 56 157 103 271 148c142 177 259 269 260 269c-5 -1 -20 -1 -27 -1c-71 0 -128 64 -178 64c-86 0 -136 -71 -136 -111c0 -21 35 -49 65 -49c26 0 81 11 138 79c4 4 9 5 13 4l14 -6c4 -4 8 -9 4 -16c-28 -47 -90 -104 -173 -104c-87 0 -105 51 -105 88 c0 81 100 167 200 167c78 0 130 -69 182 -69c76 0 153 92 170 81l17 -12c7 -4 7 -13 0 -18c-163 -122 -259 -242 -326 -333c122 31 120 32 122 32c93 97 328 335 434 335'], + 0x1D4D8: [730,15,929,46,1116,'1116 706c0 -34 -73 -41 -97 -41c-29 0 -165 -108 -264 -264c36 6 89 28 168 98c6 6 17 2 18 -6l3 -19c0 -1 -1 -6 -3 -8c-45 -51 -124 -104 -213 -114c-67 -126 -144 -219 -222 -279c-81 -58 -174 -88 -282 -88c-133 0 -178 56 -178 105c0 34 52 83 84 83 c38 0 49 -32 49 -43c0 -23 -22 -41 -41 -41c-11 0 -33 7 -33 7c-2 3 -12 0 -12 -9c0 -37 64 -61 130 -61c75 0 149 29 215 79c63 52 136 140 207 252c-77 17 -111 75 -111 130c0 128 132 199 318 213c50 6 135 5 166 13c14 0 33 17 67 17c28 0 31 -22 31 -24zM929 662 c-196 -7 -342 -91 -342 -188c0 -15 9 -66 86 -76c76 112 167 203 256 264'], + 0x1D4D9: [726,194,898,46,1085,'369 23c-188 -47 -271 -122 -271 -153c0 -15 15 -20 26 -20c93 0 230 156 245 173zM988 665c-32 0 -181 -136 -265 -265c64 22 115 62 146 89c5 5 10 5 15 0l11 -11c4 -4 4 -9 1 -13c-16 -22 -73 -91 -207 -122c-26 -41 -115 -180 -129 -199c27 12 80 38 129 71 c7 3 12 1 16 -5l8 -15c2 -4 2 -10 -1 -13c-58 -49 -141 -82 -202 -109c-55 -68 -217 -267 -389 -267c-27 0 -75 13 -75 63c0 43 43 137 372 219c47 69 101 135 181 261c-59 18 -111 52 -111 131c0 132 153 220 384 220l69 1c49 0 73 25 121 25c9 1 21 -8 23 -17 c0 -34 -77 -44 -97 -44zM900 656c-204 -4 -359 -92 -359 -193c9 -45 36 -69 86 -73c79 109 164 192 273 266'], + 0x1D4DA: [722,15,982,46,1169,'1132 647c-20 0 -30 14 -31 24c-73 -41 -172 -274 -363 -333c3 -4 16 -22 16 -55c0 -71 -136 -222 -136 -245c0 -6 11 -9 13 -9c18 0 91 21 214 137c4 2 11 5 16 0l13 -15c5 -4 5 -11 0 -16c-22 -22 -148 -148 -247 -148c-20 0 -36 8 -53 18c-9 10 -17 24 -17 47 c0 98 146 188 146 265c0 4 -8 11 -9 12c-5 0 -18 4 -23 4c-29 -4 -42 15 -42 28c0 10 6 24 43 24c8 0 24 -7 31 -11c20 6 47 20 69 34c79 65 262 313 350 313c41 0 47 -27 47 -37c0 -22 -22 -37 -37 -37zM180 130c0 -25 -19 -42 -45 -42c-15 0 -15 5 -25 5 c-9 0 -14 -4 -14 -20c0 -31 47 -45 80 -45c117 0 229 149 296 231c102 130 224 265 317 339c-9 -1 -29 -4 -38 -4c-120 0 -130 78 -228 78c-41 0 -78 -11 -112 -41c-33 -24 -49 -54 -49 -85c0 -46 45 -66 89 -66c21 0 94 6 159 80c6 6 12 6 17 0l8 -10c3 -3 3 -9 0 -12 c-64 -94 -147 -103 -186 -103c-78 0 -133 39 -133 111c0 89 100 176 227 176c119 0 160 -81 234 -77c68 0 139 51 168 76l32 -14c8 -3 8 -12 1 -18c-143 -102 -270 -227 -365 -366c-42 -57 -144 -241 -326 -314c-42 -14 -82 -24 -111 -24c-70 0 -130 35 -130 97 c0 72 61 86 89 86c33 0 45 -23 45 -38'], + 0x1D4DB: [758,9,1019,46,1152,'93 54c0 -5 14 -21 87 -21c42 -1 69 4 103 13c-16 6 -92 27 -132 27c-34 0 -58 -12 -58 -19zM1107 663c0 28 -22 28 -29 28c-81 0 -216 -136 -315 -291c166 34 344 197 344 263zM332 527c0 125 136 231 313 231c33 0 150 -18 176 -23l-10 -31c-3 -5 -89 9 -162 11 c-167 0 -273 -98 -273 -188c-13 -104 148 -146 282 -143c177 245 337 349 420 349c39 0 74 -21 74 -65c0 -113 -187 -239 -290 -284c-44 -18 -88 -30 -133 -38c-116 -183 -191 -243 -267 -290c34 -6 56 -15 98 -15c97 0 183 66 254 131c4 5 10 5 15 0l16 -15 c4 -3 4 -10 0 -14c-155 -145 -239 -152 -309 -152c-36 0 -101 7 -179 28c-69 -24 -161 -28 -184 -28c-97 0 -127 24 -127 63c11 39 55 68 130 68c87 0 198 -39 219 -46c118 63 216 231 234 263c-180 -2 -297 83 -297 188'], + 0x1D4DC: [727,5,1055,45,1175,'94 51c0 -11 13 -13 23 -13c32 0 118 78 260 235l119 131c228 248 320 323 417 323l24 -3c9 -2 13 -9 8 -17c-277 -306 -508 -607 -523 -665c32 14 189 203 230 256c270 319 386 428 489 428c27 0 42 -8 31 -20c-344 -400 -496 -615 -496 -654c0 -12 2 -13 11 -13 c50 0 170 101 189 117c4 3 9 3 14 -2l14 -14c4 -5 4 -10 0 -14c-115 -107 -180 -130 -224 -130c-47 0 -59 33 -59 60c0 118 181 332 434 591c-82 -53 -142 -110 -386 -398c-24 -31 -201 -253 -261 -253c-24 0 -41 13 -41 50c0 50 56 149 137 255c80 103 195 227 328 356 c-109 -63 -264 -245 -295 -274c-181 -201 -376 -388 -425 -388c-55 0 -67 37 -67 62c0 37 28 83 70 83c15 0 36 -16 36 -38c0 -42 -57 -39 -57 -51'], + 0x1D4DD: [723,13,975,46,1162,'98 45c0 -9 13 -16 28 -16c96 0 248 215 280 258c163 226 315 407 385 435c10 0 19 -4 15 -14c-56 -119 -107 -381 -178 -554c1 2 117 172 165 243c148 218 250 326 306 326c36 0 63 -22 63 -60c0 -52 -40 -69 -56 -69c-21 0 -39 18 -39 36c0 31 34 36 41 43 c-2 0 -4 6 -15 6c-60 0 -213 -244 -260 -308c-49 -65 -208 -330 -313 -382c-10 -4 -19 5 -14 15c77 164 106 428 187 584c-48 -48 -145 -177 -227 -292c-48 -59 -204 -309 -342 -309c-28 0 -78 14 -78 69c0 40 31 79 73 79c33 0 40 -25 40 -36c0 -40 -61 -40 -61 -54'], + 0x1D4DE: [717,15,709,46,838,'400 267c-44 0 -73 29 -73 71c0 64 50 129 85 161v-3c42 41 121 97 203 97c76 0 95 -47 95 -92c0 -163 -288 -516 -519 -516c-95 0 -145 57 -145 144c0 283 417 588 649 588c41 0 79 -11 103 -26c26 -19 40 -43 40 -75c0 -26 -10 -59 -27 -73c-27 -27 -29 -28 -60 -47 c-6 -2 -13 0 -14 9l-8 14c-10 20 62 22 62 94c0 20 -12 60 -92 60c-213 0 -464 -297 -532 -406c-43 -66 -66 -119 -66 -162c0 -49 40 -79 92 -79c195 0 472 331 472 473c0 38 -25 48 -50 48c-63 0 -129 -59 -155 -81c-30 -12 -93 -105 -80 -127c1 -33 15 -27 28 -27 c52 0 122 81 169 176c2 5 7 8 11 7l16 -6c7 -1 9 -7 7 -15c-40 -117 -129 -207 -211 -207'], + 0x1D4DF: [717,15,949,46,1042,'223 391c0 163 263 326 505 326c87 0 155 -14 209 -49c13 8 62 37 79 45c17 4 34 -16 23 -26c-18 -15 -62 -44 -66 -48c31 -32 50 -70 50 -122c0 -109 -120 -245 -227 -245c-59 0 -77 34 -77 57c13 44 55 85 83 94h17c9 -4 9 -22 2 -26c-52 -51 -81 -63 -30 -81 c101 12 233 184 143 295c-190 -120 -397 -626 -721 -626c-140 0 -167 57 -167 95c0 76 139 130 139 47c0 -43 -49 -44 -78 -31c-45 -38 19 -75 100 -67c214 21 243 114 391 284c0 -1 146 217 299 325c-230 120 -629 -89 -629 -249c0 -45 32 -66 76 -66 c129 0 257 146 324 299c19 13 31 8 39 -10c-57 -163 -172 -339 -353 -339c-82 0 -131 47 -131 118'], + 0x1D4E0: [717,32,709,46,838,'616 547c-110 0 -236 -159 -236 -208c0 -21 17 -27 29 -27c48 0 120 72 169 176c16 6 28 1 35 -14c-30 -98 -119 -207 -213 -207c-40 0 -73 31 -73 71c0 64 50 129 86 161v-3c42 41 121 97 203 97c75 0 96 -47 96 -92c0 -108 -134 -322 -329 -452c11 -12 29 -27 57 -27 c59 0 122 66 144 88l29 -20c-75 -105 -168 -122 -202 -122c-7 0 -70 0 -93 45c-23 -9 -77 -28 -127 -28c-85 0 -145 49 -145 144c0 284 419 588 650 588c81 0 142 -35 142 -101c0 -52 -22 -92 -88 -122c-7 -4 -13 0 -17 7l-6 15c-10 20 64 25 64 97c0 20 -12 60 -92 60 c-213 0 -464 -297 -532 -406c-43 -66 -65 -119 -65 -162c0 -49 37 -79 92 -79c47 0 104 28 104 28c-7 17 -25 40 -25 40c-11 12 -24 16 -38 16c-30 0 -57 -16 -83 -34c-17 3 -24 12 -19 34c40 30 75 46 116 46c64 0 101 -60 108 -71c209 148 308 331 308 414 c0 38 -24 48 -49 48'], + 0x1D4E1: [724,15,951,46,1083,'838 278c0 -119 -135 -208 -135 -245c24 -18 108 51 210 105l14 -11c18 -15 -21 -39 -48 -61c-41 -28 -102 -76 -174 -76c-16 0 -32 5 -42 14c-9 15 -18 29 -18 50c0 51 54 114 54 117c13 14 85 92 85 125c3 4 0 10 -11 14c-13 -4 -61 2 -67 31 c-33 -50 -163 -230 -269 -295c-71 -41 -150 -61 -235 -61c-91 0 -156 37 -156 93s47 99 88 99c37 0 45 -29 45 -42c0 -15 -17 -44 -44 -44l-25 5c-5 0 -16 0 -16 -17c0 -31 56 -52 111 -52c60 0 114 18 166 51h-2c52 34 122 107 208 220v-2c0 2 186 249 340 351 c-28 16 -88 35 -167 35c-64 0 -128 -10 -190 -30v2c-181 -61 -271 -185 -271 -261c0 -32 17 -80 89 -80c115 0 266 141 309 325c21 16 32 7 41 -8c-38 -195 -178 -358 -351 -358c-79 0 -132 45 -132 121c0 123 177 331 506 331c54 0 143 -5 209 -49l97 43 c28 1 32 -11 22 -32c-15 -9 -69 -39 -84 -45c27 -34 33 -67 33 -102c0 -113 -94 -201 -196 -223c3 -6 6 -27 6 -38zM801 357c84 21 162 122 162 209c0 31 -5 39 -13 51c-67 -49 -140 -129 -221 -243c14 2 57 -8 72 -17'], + 0x1D4E2: [741,15,926,46,1157,'1108 652c0 20 -14 24 -33 24c-129 0 -286 -236 -319 -285c180 38 352 192 352 261zM185 144c0 -17 -14 -46 -44 -46c-13 0 -34 12 -40 12c-8 0 -8 -16 -8 -17c0 -50 88 -65 137 -65c158 0 283 123 396 302c-154 -2 -296 50 -296 180c0 125 132 231 315 231 c27 0 119 -5 166 -25c0 -12 -5 -20 -10 -27c-8 -20 -38 10 -153 10c-155 0 -274 -88 -274 -188c0 -102 160 -137 281 -137c207 280 342 343 427 343c28 0 75 -12 75 -63c0 -55 -49 -120 -133 -183c-83 -66 -185 -111 -298 -136c-147 -244 -294 -350 -491 -350 c-96 0 -189 28 -189 111c0 48 43 91 93 91c40 0 46 -30 46 -43'], + 0x1D4E3: [747,13,814,46,1126,'187 29c130 -2 224 97 324 234c41 65 167 256 327 377c16 0 24 -12 27 -29c-101 -88 -139 -159 -204 -267c-70 -118 -148 -215 -218 -271c-76 -58 -157 -86 -248 -86c-124 0 -149 58 -149 96c0 39 39 88 84 88c36 0 46 -28 46 -43c0 -25 -19 -44 -43 -44 c-11 0 -21 -2 -31 6c-8 0 -9 -7 -9 -13c0 -20 23 -48 94 -48zM606 745c149 0 298 -28 372 -28c50 0 94 16 129 30l17 -17c22 -21 -86 -73 -212 -73c-104 0 -233 33 -357 33c-156 0 -281 -102 -281 -205c0 -22 14 -46 27 -60c20 -14 47 -24 78 -24c110 0 212 82 276 204 c7 12 39 21 38 -8c-46 -128 -160 -240 -309 -240c-114 0 -154 73 -154 126c0 128 149 262 376 262'], + 0x1D4E4: [728,6,816,46,904,'141 390c-61 0 -95 41 -95 96c0 124 169 242 325 242c117 0 149 -71 149 -118c0 -64 -79 -164 -85 -164l-251 -298c-2 -3 -65 -74 -65 -96c-4 -12 14 -23 24 -18c44 0 131 67 181 113c94 85 186 172 288 303l204 263c1 3 7 5 8 5h70c10 0 14 -10 8 -17l-452 -591 c-27 -36 -39 -56 -39 -64c0 -9 4 -9 11 -9c15 0 44 12 83 33v-1c38 24 82 55 138 99c19 6 36 -18 29 -31c-82 -71 -185 -142 -256 -142c-19 0 -36 6 -49 14c-10 10 -15 24 -15 46c0 32 24 67 36 89c-88 -79 -172 -150 -253 -150c-20 0 -36 5 -52 17c-10 13 -18 32 -18 52 c0 57 26 105 113 198c78 85 288 351 277 369c3 15 -10 57 -86 57c-68 0 -134 -21 -190 -66c-58 -42 -86 -88 -86 -133c0 -42 29 -51 50 -51c79 0 172 79 197 217c1 5 7 9 12 8l19 -3c5 -1 8 -7 8 -12c-12 -137 -129 -257 -238 -257'], + 0x1D4E5: [728,12,777,46,1064,'269 728c119 0 152 -103 219 -99c49 0 123 47 171 92l23 -18c5 -4 5 -12 2 -16c-26 -25 -66 -68 -83 -83c-101 -94 -192 -260 -193 -263c0 0 -110 -191 -241 -299c92 26 221 102 407 318l70 77c166 189 284 285 353 285c31 0 67 -12 67 -55c0 -13 -4 -24 -16 -34v1 c-10 -10 -20 -15 -35 -15c-13 0 -39 7 -39 37c0 12 12 20 13 21c-60 -5 -147 -78 -284 -239c-240 -281 -441 -450 -603 -450c-7 0 -23 1 -29 3c-11 0 -15 14 -6 20c55 46 128 145 198 258c13 13 92 169 247 316c-14 -2 -25 -2 -41 -2c-113 0 -125 97 -214 97 c-90 0 -164 -74 -164 -130c0 -26 15 -62 75 -62c74 0 132 50 161 106c3 7 12 7 17 2l13 -13c17 -18 -75 -139 -198 -139c-66 0 -113 44 -113 106c0 95 113 178 223 178'], + 0x1D4E6: [723,11,887,42,1173,'90 543c0 -38 32 -61 69 -61c71 0 123 45 143 89c4 6 10 8 16 3l15 -9c22 -15 -63 -126 -172 -126c-63 0 -115 41 -115 102c0 86 102 171 216 171c72 0 117 -49 121 -49c6 -6 49 -39 83 -39c53 0 110 39 164 82c5 3 11 2 15 -1l12 -15c5 -4 5 -12 0 -17 c-42 -38 -86 -82 -125 -126v1c-125 -154 -178 -315 -351 -475c204 135 352 405 527 555c61 52 139 85 191 75c10 0 14 -17 6 -24c-94 -71 -148 -151 -223 -264v1c-103 -157 -197 -278 -275 -355c76 37 153 90 322 306c214 264 309 356 388 356c50 0 56 -33 56 -47 c0 -29 -20 -54 -52 -54c-15 0 -38 7 -38 35c0 5 0 8 2 14c-49 -21 -163 -142 -325 -337c-99 -112 -260 -343 -465 -343c-12 0 -16 13 -8 19c103 91 214 280 214 280v-1c120 183 188 240 188 254c-123 -115 -222 -254 -245 -283c-171 -212 -300 -271 -378 -271 c-25 0 -26 12 -20 20c163 147 236 367 444 571c-13 -3 -30 -4 -45 -4c-107 0 -126 87 -208 87c-36 0 -69 -11 -103 -39h1c-28 -26 -45 -53 -45 -81'], + 0x1D4E7: [722,12,898,46,1085,'90 50c0 -12 6 -21 25 -21c46 0 115 33 178 77c62 46 129 111 193 187c-265 -88 -396 -194 -396 -243zM1024 722c45 0 61 -23 61 -56c0 -48 -47 -111 -136 -177c-89 -64 -203 -120 -337 -160c-39 -56 -149 -201 -149 -270c0 -13 6 -25 25 -25c17 -2 49 14 78 29 c32 19 73 52 124 98c25 0 31 -16 33 -32c-119 -109 -187 -138 -233 -138c-52 0 -78 36 -78 93c0 19 1 38 6 55c-39 -32 -185 -151 -303 -151c-52 0 -69 22 -69 57c0 62 108 196 487 312c52 71 115 153 115 231c0 61 -60 89 -126 89c-124 0 -263 -86 -263 -171 c0 -46 47 -60 71 -60c105 0 176 101 198 199c2 10 11 13 18 7l15 -13c3 -1 5 -8 5 -11c-20 -129 -121 -226 -233 -226c-77 0 -118 47 -118 104c0 121 176 216 307 216c147 0 193 -114 179 -190c106 103 234 190 323 190zM1041 662c0 10 -12 15 -24 15 c-71 0 -221 -106 -355 -284c243 81 379 215 379 269'], + 0x1D4E8: [735,242,898,46,1075,'90 -177c0 -17 16 -21 27 -21c51 0 149 48 260 183c-214 -54 -287 -129 -287 -162zM495 680c-182 0 -299 -121 -299 -184c0 -24 22 -41 54 -41c83 0 191 82 245 199c1 8 11 8 18 3l10 -14c4 -3 5 -9 4 -13c-50 -134 -167 -219 -282 -219c-77 0 -95 47 -95 85 c0 83 111 179 213 208v-1c45 15 87 21 130 21c44 0 81 -9 106 -25c25 -20 39 -47 39 -82c0 -38 -14 -79 -44 -123v1c-81 -121 -298 -290 -298 -350c0 -5 5 -12 27 -12c83 0 218 111 407 305l3 2l262 269c13 13 78 60 80 -14c-159 -163 -379 -399 -532 -616 c61 28 107 54 172 99c26 9 45 -17 26 -33c-66 -58 -140 -90 -246 -130c-56 -76 -118 -141 -189 -186h1c-68 -47 -130 -71 -183 -71c-65 0 -78 37 -78 63c0 88 149 169 377 220l125 164c-35 -29 -66 -51 -96 -70h3c-49 -33 -94 -47 -132 -47c-60 0 -74 42 -74 74 c0 149 336 365 336 467c0 20 -17 51 -90 51'], + 0x1D4E9: [721,5,969,46,1069,'96 51c0 -8 14 -13 61 -13c21 0 66 3 102 18c-37 6 -68 10 -92 10c-23 0 -71 -7 -71 -15zM881 615c82 9 141 44 143 58c-53 11 -135 -54 -143 -58zM46 51c0 38 50 64 130 64c63 0 143 -21 158 -25c78 53 151 143 216 233c-70 0 -78 -39 -92 -23l-15 15c-5 4 -5 11 2 15 c41 35 87 49 139 49c63 81 98 122 172 192c-121 23 -226 97 -301 97c-98 0 -153 -74 -153 -118c0 -23 19 -57 82 -57c71 0 127 46 156 85c5 6 14 6 17 0l10 -16c12 -17 -73 -113 -184 -113c-73 0 -125 41 -125 101c0 85 98 171 231 171c107 0 214 -91 316 -108 c19 16 129 103 216 103c43 0 48 -27 48 -41c0 -58 -128 -111 -245 -111c-33 -35 -56 -51 -148 -195c40 -3 76 2 111 12l11 -14c14 -13 -32 -43 -86 -51c-12 -1 -58 -1 -69 -1c-22 -33 -76 -124 -238 -239c1 0 67 -20 155 -20c212 0 212 138 236 131l22 -3c6 -2 10 -8 6 -13 c-56 -148 -179 -176 -270 -176c-21 0 -94 -1 -222 39c-78 -34 -117 -39 -175 -39c-37 0 -60 2 -74 9c-26 10 -37 28 -37 47'], + 0x1D4EA: [480,13,782,55,735,'507 480c43 1 65 -17 76 -48c19 44 55 30 107 30c16 0 20 -14 12 -25l-247 -330c-18 -24 -25 -54 -26 -59c63 -1 240 181 282 176l20 -17c6 -8 6 -16 0 -21c-130 -127 -241 -194 -302 -194c-23 -11 -89 32 -69 98c-83 -77 -173 -103 -215 -103c-39 0 -90 18 -90 88 c0 189 296 405 452 405zM508 418c-100 -2 -402 -307 -360 -373c28 0 62 12 104 39v-1c85 53 275 246 275 317c0 14 -7 18 -19 18'], + 0x1D4EB: [846,15,775,51,839,'134 -15c-53 1 -83 29 -83 75c0 139 497 735 732 786c31 0 56 -18 56 -52c0 -90 -196 -258 -515 -453c-124 -156 -203 -269 -203 -293c122 -30 248 154 270 181c10 104 73 184 121 184c78 -43 -17 -119 -62 -198c3 -10 32 -15 42 -15c26 8 29 5 33 -3l10 -22 c-1 -41 -101 -27 -117 -2c-140 -160 -228 -188 -284 -188zM415 458c168 115 375 275 354 333c-66 0 -262 -221 -354 -333'], + 0x1D4EC: [480,20,633,55,578,'129 62c0 -21 23 -24 35 -24c30 0 75 19 138 56v-3c56 38 139 100 222 170l24 -31c6 -7 6 -16 0 -19c-197 -182 -314 -231 -394 -231c-47 0 -99 19 -99 97c0 195 286 403 432 403c53 0 91 -31 91 -76c0 -49 -41 -102 -94 -102c-39 0 -50 31 -50 45c0 25 43 52 53 53 c3 0 30 5 30 9c0 0 -2 9 -15 9c-110 0 -373 -282 -373 -356'], + 0x1D4ED: [779,11,951,51,906,'460 348c-101 57 -339 -249 -342 -304c-2 -6 5 -14 19 -8c36 15 88 25 158 87l61 63c62 68 104 131 104 162zM811 779h82c12 0 18 -13 11 -21l-503 -665c-17 -21 -25 -47 -25 -51c57 -1 206 157 245 153l17 -15c5 -7 5 -14 0 -18c-120 -116 -210 -169 -262 -169 c-19 -8 -79 25 -61 83c-17 -14 -34 -25 -57 -40c-45 -29 -92 -47 -129 -47s-78 15 -78 72c0 183 328 455 458 313'], + 0x1D4EE: [480,20,633,59,578,'503 480c62 0 75 -35 75 -58c0 -47 -68 -158 -375 -241c-27 -27 -67 -95 -67 -118c0 -12 13 -22 36 -22c67 0 174 49 340 175c5 6 17 4 21 -2l13 -20c4 -7 4 -17 -2 -22c-161 -142 -305 -192 -382 -192c-60 0 -103 35 -103 91c0 184 282 409 444 409zM500 422 c-78 0 -208 -140 -221 -153c121 37 234 118 234 149c-3 4 -6 4 -13 4'], + 0x1D4EF: [844,332,903,47,1117,'618 112c-45 -9 -113 -26 -153 3l-325 -447l-80 3c-10 0 -16 12 -9 23l358 483c-32 72 65 122 101 140c125 174 399 527 557 527c34 0 50 -25 50 -50c0 -149 -546 -528 -546 -528l-79 -105c18 -36 120 5 187 27l13 -16c-4 -40 -48 -46 -74 -60zM1052 791 c-28 0 -88 -39 -149 -105c-59 -63 -135 -154 -227 -276c163 121 376 315 376 381'], + 0x1D4F0: [479,379,1003,59,952,'123 -300c0 -15 10 -17 29 -17c74 0 203 131 309 258c-202 -86 -338 -193 -338 -241zM743 479c41 0 73 -17 81 -49l22 32h87c12 0 19 -15 12 -25l-268 -354c49 19 149 75 234 147c6 2 13 2 21 -4l16 -19c6 -8 6 -16 0 -21c-54 -54 -186 -138 -341 -194 c-204 -292 -373 -370 -466 -370c-41 -13 -90 41 -80 63c0 116 203 192 476 333l13 33c-17 -10 -89 -68 -172 -68c-68 0 -84 54 -84 92c0 172 282 404 449 404zM375 53c68 -41 227 100 348 253c30 38 45 73 45 90c-144 7 -400 -288 -393 -343'], + 0x1D4F1: [839,13,891,47,851,'803 839c29 0 48 -24 48 -46c0 -87 -172 -269 -449 -429l-23 -31c67 53 212 141 246 23c0 -25 -7 -58 -65 -127l-154 -183c68 -22 164 104 269 151l15 -17c6 -5 6 -12 0 -18c-98 -94 -205 -175 -284 -175c-48 0 -58 42 -58 66c0 25 21 84 64 135l118 138 c11 14 18 36 18 38c-96 0 -285 -195 -402 -364h-86c-10 0 -16 13 -9 21l359 482c119 148 223 293 393 336zM788 786c-63 0 -182 -145 -317 -319c160 107 317 258 317 319'], + 0x1D4F2: [693,20,403,59,567,'128 -20c-45 0 -69 31 -69 75c0 41 0 77 94 202l157 208l82 -3c15 0 20 -16 13 -25l-280 -375c-5 -12 7 -22 11 -22c59 -2 191 144 256 174l22 -15c10 -6 11 -18 4 -25c-136 -134 -232 -194 -290 -194zM487 560c-101 9 -43 136 32 132v1c83 -15 51 -141 -32 -133'], + 0x1D4F3: [693,329,807,59,969,'136 -271c51 0 139 82 210 192c-38 -12 -231 -134 -227 -180c1 -10 9 -12 17 -12zM131 -329c-33 0 -72 16 -72 70c0 106 196 206 316 266l347 458l86 -3c13 0 20 -15 12 -25l-276 -359c61 32 181 107 293 186c5 7 16 5 18 -1l19 -19c5 -6 6 -19 -1 -24 c-83 -67 -403 -245 -403 -245c-36 -52 -203 -304 -339 -304zM892 560c-106 10 -43 139 31 132v1c80 -10 47 -140 -31 -133'], + 0x1D4F4: [846,16,823,49,883,'401 -16c-120 0 -14 193 4 204c-14 18 -60 10 -47 35l15 29c-76 -64 -151 -153 -223 -252h-89c-10 0 -15 11 -8 21l352 461c169 217 344 364 428 364c40 0 50 -34 50 -46c0 -90 -151 -233 -478 -449l-18 -27c50 36 134 91 199 91c149 -43 -21 -197 -126 -198 c47 -49 -34 -163 -47 -179c55 -2 204 158 230 150l20 -11c5 -5 5 -15 1 -20c-112 -113 -212 -173 -263 -173zM384 258c108 14 197 77 197 98c-82 8 -195 -94 -197 -98zM826 794c-62 0 -209 -159 -328 -321c154 106 328 267 328 321'], + 0x1D4F5: [800,17,718,59,782,'147 227c85 140 434 573 586 573c39 0 49 -31 49 -47c0 -110 -323 -355 -503 -479c-40 -59 -156 -205 -156 -241c0 -3 0 -4 3 -2c42 0 139 91 204 151c6 6 12 5 18 0l15 -13c4 -7 4 -14 0 -18c-111 -123 -194 -168 -244 -168c-113 49 -42 129 28 246v-2zM720 749 c-69 0 -232 -194 -342 -346c99 72 167 126 234 192c77 74 108 132 108 154'], + 0x1D4F6: [474,15,1137,55,1084,'752 -15c-111 36 -69 136 10 231l164 196c-98 18 -296 -164 -477 -412h-94c9 133 231 275 285 414c-92 22 -299 -177 -472 -414h-98c-13 0 -19 15 -11 24l331 440l80 -2c13 0 18 -15 10 -25l-35 -50c25 54 322 166 264 -15c59 57 265 178 298 37c0 -29 -17 -83 -75 -148 l-136 -153c-30 -39 -33 -55 -25 -64c70 0 219 133 272 182c6 5 14 6 22 -2l15 -17c6 -8 5 -16 0 -21c-68 -65 -126 -116 -185 -149v1c-58 -38 -107 -53 -143 -53'], + 0x1D4F7: [473,11,848,55,799,'445 387c25 42 274 158 274 22c0 -63 -59 -129 -77 -150l-127 -152c-29 -30 -40 -44 -36 -61c83 -3 239 171 298 180l18 -19c6 -6 6 -14 0 -21c-65 -63 -130 -111 -185 -148c-86 -59 -210 -81 -210 23c0 30 22 89 77 155l165 197c-141 24 -341 -233 -473 -413h-99 c-13 0 -19 15 -11 24l331 440l80 -2c13 0 18 -15 10 -25'], + 0x1D4F8: [480,20,699,59,636,'59 75c0 174 237 405 441 405c153 0 46 -203 15 -242c6 -6 24 -7 37 -7c57 0 71 32 83 8v-21c8 -19 -16 -32 -40 -40c-64 -6 -96 -1 -116 12c-61 -93 -197 -210 -318 -210c-83 0 -102 58 -102 95zM502 416c-102 0 -366 -283 -366 -351c0 -21 20 -27 36 -27 c92 0 235 147 277 196c-4 5 -13 33 -12 38c-5 38 40 100 82 119c0 9 -4 25 -17 25'], + 0x1D4F9: [477,378,1129,55,1079,'923 477c17 0 76 2 76 -68c0 -61 -50 -117 -76 -150l-128 -152c-2 -1 -41 -46 -41 -58c74 -16 175 83 284 177c5 6 14 6 19 0l19 -19c4 -6 4 -14 0 -21c-112 -108 -236 -201 -328 -201c-44 0 -66 35 -66 76c0 30 19 95 74 155l136 159c8 16 21 25 31 43 c-69 -7 -275 -134 -423 -341l-336 -447c-2 -2 -10 -8 -12 -8h-82c-13 0 -19 14 -11 26l602 806c2 3 8 8 12 8h77c14 0 20 -15 13 -25l-38 -52c35 24 117 92 198 92'], + 0x1D4FA: [480,381,828,56,775,'566 480c40 0 70 -15 79 -48c3 4 19 30 31 30h72c15 0 21 -16 14 -25l-340 -454c81 70 196 146 312 248c7 5 15 6 21 -1l16 -19c6 -5 5 -16 0 -21c-50 -48 -149 -121 -269 -215c-113 -88 -212 -180 -253 -236l-88 -120l-91 3c-11 0 -19 14 -9 26l301 400 c-60 -47 -124 -61 -155 -61c-39 0 -91 18 -91 83c0 193 295 410 450 410zM583 399c-126 66 -384 -285 -389 -342c163 -12 372 258 389 342'], + 0x1D4FB: [469,0,759,55,707,'161 0h-91c-13 0 -19 15 -11 24l343 442l81 -4c11 0 18 -16 11 -25l-171 -221l218 169c32 45 66 84 127 84h33c8 -7 7 -20 3 -27c-19 -18 -85 -82 -85 -104c21 -6 81 6 67 -24l-17 -28c-5 -4 -37 -14 -42 -10c-34 0 -70 10 -86 33l-342 -252'], + 0x1D4FC: [596,17,576,63,520,'454 462c43 -261 -72 -479 -298 -477c-92 -29 -143 163 -20 159c47 22 67 -112 16 -106c97 0 218 149 247 376l-205 -176c-7 -7 -13 -4 -18 1l-22 22c-6 10 -2 18 2 23c55 37 163 134 244 215c5 24 97 161 120 62c0 -41 -49 -84 -66 -99'], + 0x1D4FD: [704,20,678,65,625,'127 -20c-137 0 -5 278 20 276l178 243h-76c-13 0 -19 14 -11 22l23 39h109l108 144l92 -4c13 0 21 -14 13 -24l-89 -116h116c13 0 20 -12 13 -23l-22 -38h-147l-293 -392c-7 -23 -32 -52 -32 -63c96 -11 230 182 271 170l18 -15c7 -5 7 -14 0 -22 c-130 -144 -232 -197 -291 -197'], + 0x1D4FE: [462,20,761,59,709,'131 -20c-15 0 -72 4 -72 77c0 72 46 152 76 188l167 209c4 3 12 8 13 8h88c11 0 19 -15 10 -25c-94 -131 -214 -234 -285 -391c0 -8 5 -8 13 -8c89 0 308 204 452 416c0 1 8 7 10 7l87 1c14 0 20 -15 12 -25l-268 -347c-16 -21 -23 -39 -23 -45c3 -7 7 -8 11 -7 c47 0 185 123 242 175c4 3 14 5 18 1l22 -15c7 -6 7 -18 2 -23c-108 -117 -235 -196 -292 -196c-23 0 -42 4 -52 20c-15 7 -25 55 -15 91c-32 -29 -65 -53 -98 -73c-50 -21 -88 -38 -118 -38'], + 0x1D4FF: [470,20,674,57,620,'127 51c0 -14 22 -18 25 -18c34 0 78 22 127 62h-2c49 41 101 98 148 166c4 77 50 209 121 209c15 0 37 -16 37 -46c41 -17 -161 -208 -19 -190c12 5 43 25 46 5l9 -21c9 -20 -30 -32 -41 -33c-51 -9 -108 -13 -124 14c-55 -68 -108 -120 -154 -159 c-61 -39 -109 -60 -152 -60c-57 0 -91 36 -91 91c0 43 27 116 91 200l140 183c2 3 9 8 13 8h83c15 0 20 -15 12 -25c-4 -3 -235 -309 -235 -309s-34 -53 -34 -77'], + 0x1D500: [470,20,968,49,904,'780 244c20 -43 110 20 124 -8v-20c-3 -47 -121 -55 -160 -17c-62 -75 -187 -219 -314 -219c-52 0 -84 57 -84 110c-85 -85 -168 -110 -210 -110c-156 0 -69 196 16 296l152 188l87 -2c14 0 20 -15 13 -25l-219 -288c-20 -30 -54 -83 -54 -105c0 -6 10 -14 17 -11 c26 0 70 22 127 67c59 47 115 108 163 171l147 194l92 -3c11 0 18 -14 9 -25l-221 -288c-16 -34 -39 -50 -51 -100c106 -64 299 215 303 212c9 126 72 209 121 209c86 -56 17 -110 -58 -226'], + 0x1D501: [479,20,835,60,780,'141 37c149 44 249 208 330 366c-35 29 -66 5 -124 -33c-44 -29 -105 -76 -178 -144c-6 -5 -13 -5 -21 4l-19 22c-6 5 -6 17 0 20c177 150 263 207 332 207c46 0 78 -34 78 -75c46 48 214 139 240 1c16 -82 -155 -153 -155 -53c0 20 16 52 57 52c19 0 20 -1 21 12h-16 c-65 20 -332 -349 -301 -361c86 -64 240 125 333 167l21 -15c7 -8 7 -17 4 -22c-107 -114 -249 -205 -350 -205c-53 0 -74 24 -78 73c-31 -24 -114 -73 -174 -73c-132 0 -84 181 15 181c21 0 57 -12 57 -55c0 -62 -50 -58 -89 -55c0 -1 4 -14 17 -14'], + 0x1D502: [463,378,992,59,940,'129 -301c35 -40 81 6 146 52v-3c44 42 97 100 163 182c-194 -84 -309 -185 -309 -231zM364 -20c-122 0 -72 146 8 259l174 224l89 -1c13 0 20 -15 12 -25l-256 -335c-6 -15 -36 -51 -29 -61c89 0 298 186 462 420h93c15 0 19 -14 12 -24l-273 -359l114 58 c46 32 92 62 130 94c6 2 13 2 19 -4l18 -19c5 -8 5 -17 -1 -22c-53 -50 -165 -131 -345 -196c-144 -203 -315 -367 -450 -367c-35 0 -82 3 -82 55c0 103 212 232 441 330l27 46l-37 -29c-49 -31 -91 -44 -126 -44'], + 0x1D503: [494,18,799,59,742,'90 -15c-13 -4 -31 15 -31 31c0 13 19 32 51 54c29 20 76 34 128 74l246 189c-39 0 -70 6 -93 22l-169 -145c-8 -7 -19 -3 -23 3l-14 23c-13 16 31 39 57 64c10 6 110 103 120 105c-15 53 96 141 115 49c0 -16 -15 -45 -32 -54c36 -15 105 -1 127 4c60 50 114 76 145 76 c30 -10 25 -12 25 -32l-357 -263c106 -10 110 -66 66 -128c52 14 165 111 237 182c6 5 15 6 21 0l22 -21c3 -5 3 -12 0 -19c-89 -89 -237 -216 -331 -216c-96 -21 -59 136 -17 140c-99 0 -234 -138 -293 -138'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Shapes/Regular/Main.js new file mode 100644 index 0000000..0bde3c3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Shapes/Regular/Main.js @@ -0,0 +1,111 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'AsanaMathJax_Shapes', + id: 'ASANAMATHSHAPES', + 0x20: [0,0,249,0,0,''], + 0x2422: [726,28,552,-27,508,'66 588v32c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8l-1 -103l211 77l13 -35l-223 -85v-203c32 77 98 116 165 116c89 0 180 -71 193 -215v-8c0 -134 -76 -290 -228 -290c-48 0 -103 16 -166 52l-40 -36l-16 6c7 70 8 97 8 159v394l-79 -28l-14 35zM284 404 c-78 0 -134 -61 -134 -96v-215c0 -22 74 -54 126 -54c85 0 145 78 145 190c0 107 -53 175 -137 175'], + 0x2423: [262,0,726,35,691,'100 64h527v198h64v-262h-656v262h66'], + 0x25B7: [578,1,667,45,622,'45 -1v579l577 -290zM89 71l432 217l-432 217v-434'], + 0x25BA: [515,-26,838,65,774,'65 26l709 234v21l-709 234v-489'], + 0x25BB: [515,-26,838,65,774,'65 26l709 234v21l-709 234v-489zM117 109v323l507 -161'], + 0x25C1: [578,1,667,45,622,'622 -1v579l-577 -290zM578 71l-432 217l432 217v-434'], + 0x25C4: [515,-26,838,65,774,'774 26l-709 234v21l709 234v-489'], + 0x25C5: [515,-26,838,65,774,'774 26l-709 234v21l709 234v-489zM722 109v323l-507 -161'], + 0x25CB: [705,164,906,18,889,'889 271c0 -239 -197 -435 -436 -435s-435 196 -435 435c0 238 196 434 435 434s436 -196 436 -434zM841 271c0 212 -177 386 -388 386c-212 0 -387 -175 -387 -386c0 -212 175 -387 387 -387c211 0 388 174 388 387'], + 0x25CE: [705,164,906,18,889,'759 271c0 -167 -139 -305 -306 -305s-304 138 -304 305c0 166 137 304 304 304s306 -138 306 -304zM725 271c0 148 -124 270 -272 270s-270 -122 -270 -270c0 -149 122 -271 270 -271s272 122 272 271zM889 271c0 -239 -197 -435 -436 -435s-435 196 -435 435 c0 238 196 434 435 434s436 -196 436 -434zM841 271c0 212 -177 386 -388 386c-212 0 -387 -175 -387 -386c0 -212 175 -387 387 -387c211 0 388 174 388 387'], + 0x25CF: [705,164,906,18,889,'889 271c0 -239 -197 -435 -436 -435s-435 196 -435 435c0 238 196 434 435 434s436 -196 436 -434'], + 0x25E6: [466,-75,522,65,458,'458 271c0 -110 -87 -196 -196 -196c-110 0 -197 86 -197 196c0 108 87 195 197 195c109 0 196 -87 196 -195zM407 271c0 80 -66 145 -145 145c-82 0 -146 -65 -146 -145c0 -82 64 -146 146 -146c79 0 145 64 145 146'], + 0x25E7: [560,0,688,65,623,'623 560v-560h-558v560h558zM372 504v-450h197v450h-197'], + 0x25E8: [560,0,688,65,623,'623 560v-560h-558v560h558zM318 504h-199v-450h199v450'], + 0x25EB: [560,0,688,65,623,'623 560v-560h-558v560h558zM318 504h-199v-450h199v450zM372 504v-450h197v450h-197'], + 0x25FB: [480,0,598,64,534,'534 0h-470v480h470v-480zM475 59v362h-352v-362h352'], + 0x25FC: [480,0,598,64,534,'534 0h-470v480h470v-480'], + 0x2605: [778,98,1013,46,968,'968 444l-286 -208l111 -334l-284 209l-286 -209l109 329l-286 213h353l106 334l109 -333'], + 0x2606: [778,98,1013,46,968,'853 418h-266l-81 250l-80 -250h-265l215 -160l-82 -246l214 156l214 -156l-84 250zM968 444l-286 -208l111 -334l-284 209l-286 -209l109 329l-286 213h353l106 334l109 -333'], + 0x2664: [642,21,570,23,547,'547 214c0 -80 -31 -160 -124 -160c-34 0 -70 4 -97 27c7 -35 15 -68 25 -102h-132c10 34 20 67 26 102c-26 -23 -64 -27 -98 -27c-99 0 -124 88 -124 170c0 109 111 188 174 264c38 47 64 100 89 154c49 -107 87 -155 167 -240c55 -59 94 -103 94 -188zM505 224 c0 88 -110 174 -163 238c-21 26 -40 54 -56 83c-64 -113 -221 -218 -221 -330c0 -55 15 -119 82 -119c55 0 79 4 79 63h119c0 -58 23 -63 78 -63c74 0 82 71 82 128zM296 21c-4 16 -8 33 -11 48c-2 -15 -6 -32 -10 -48h21'], + 0x2665: [591,7,636,44,593,'318 -7c-86 194 -274 269 -274 415c0 87 29 183 134 183c118 0 106 -86 141 -86c36 0 22 86 141 86c104 0 133 -96 133 -183c0 -144 -186 -222 -275 -415'], + 0x2666: [642,101,559,44,516,'516 271l-236 -372l-236 372l236 371'], + 0x2667: [605,21,607,23,585,'585 202c0 -81 -56 -150 -140 -150c-38 0 -83 15 -104 49c5 -42 17 -82 27 -122h-131c11 39 23 79 28 120c-21 -33 -66 -47 -103 -47c-84 0 -139 70 -139 150c0 72 40 155 122 155c13 0 27 -2 39 -8c-22 29 -33 65 -33 100c0 83 71 156 153 156s154 -74 154 -156 c0 -35 -12 -70 -33 -98c12 4 26 6 38 6c82 0 122 -83 122 -155zM543 202c0 47 -23 113 -80 113c-35 0 -47 -21 -67 -46l-38 74c35 29 58 59 58 106c0 59 -53 114 -112 114s-111 -55 -111 -114c0 -46 22 -76 58 -104l-36 -76c-19 23 -37 46 -70 46c-57 0 -80 -66 -80 -113 c0 -57 36 -108 97 -108c50 0 72 17 72 65h140c0 -47 23 -65 71 -65c61 0 98 50 98 108zM314 21c-5 17 -8 34 -11 51c-2 -17 -6 -34 -10 -51h21'], + 0x2669: [701,19,319,19,301,'249 701v-502c-27 14 -57 24 -89 24c-76 0 -141 -47 -141 -127c0 -73 50 -115 121 -115c114 0 161 66 161 173l-2 546'], + 0x266A: [701,19,525,19,507,'507 448h-50c0 110 -54 135 -156 135v-429c0 -107 -47 -173 -161 -173c-71 0 -121 42 -121 115c0 80 65 127 141 127c32 0 62 -10 89 -24v502h20c202 0 238 -54 238 -253'], + 0x2680: [669,23,982,145,837,'547 325c0 -30 -27 -58 -59 -58c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58zM837 -23h-692v692h692v-692zM784 30v586h-586v-586h586'], + 0x2681: [669,23,982,145,837,'378 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM714 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM837 -23h-692v692h692v-692zM784 30v586h-586v-586h586'], + 0x2682: [669,23,982,145,837,'378 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM546 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM714 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM837 -23h-692v692h692v-692zM784 30v586 h-586v-586h586'], + 0x2683: [669,23,982,145,837,'714 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM378 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM714 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM378 155c0 -31 -24 -55 -55 -55 s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM837 -23h-692v692h692v-692zM784 30v586h-586v-586h586'], + 0x2684: [669,23,982,145,837,'714 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM378 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM546 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM714 155c0 -31 -24 -55 -55 -55 s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM378 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM837 -23h-692v692h692v-692zM784 30v586h-586v-586h586'], + 0x2685: [669,23,982,145,837,'714 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM714 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM378 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM714 155c0 -31 -24 -55 -55 -55 s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM378 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM378 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM837 -23h-692v692h692v-692zM784 30v586h-586v-586h586'], + 0x2B00: [583,139,854,65,785,'101 52l155 -154l417 418l90 -87v333h-333l90 -90zM65 53l425 425l-105 105h400v-401l-103 104l-425 -425'], + 0x2B01: [583,139,854,65,785,'749 52l-155 -154l-417 418l-90 -87v333h333l-90 -90zM785 53l-425 425l105 105h-400v-401l103 104l425 -425'], + 0x2B02: [583,139,854,65,785,'101 392l155 154l417 -418l90 87v-333h-333l90 90zM65 391l425 -425l-105 -105h400v401l-103 -104l-425 425'], + 0x2B03: [583,139,854,65,785,'749 392l-155 154l-417 -418l-90 87v-333h333l-90 90zM785 391l-425 -425l105 -105h-400v401l103 -104l425 425'], + 0x2B04: [554,12,1128,64,1064,'318 165v-111l-213 213l213 211v-109l488 -1v109l213 -211l-213 -213v111zM780 136v-148l284 284l-284 282l1 -146h-434l1 146l-284 -282l284 -284v148h432'], + 0x2B05: [554,12,1013,64,950,'950 136h-602v-148l-284 284l284 282l-1 -146h603v-272'], + 0x2B06: [713,172,678,56,622,'204 -172v601h-148l284 284l282 -284h-146v-601h-272'], + 0x2B07: [713,172,678,56,622,'204 713v-600l-148 -1l284 -284l282 284h-146v601h-272'], + 0x2B08: [583,139,852,65,785,'65 53l425 425l-105 105h400v-401l-103 104l-425 -425'], + 0x2B09: [583,139,852,65,785,'785 53l-425 425l105 105h-400v-401l103 104l425 -425'], + 0x2B0A: [583,139,852,65,785,'65 391l425 -425l-105 -105h400v401l-103 -104l-425 425'], + 0x2B0B: [583,139,852,65,785,'785 391l-425 -425l105 -105h-400v401l103 -104l425 425'], + 0x2B0C: [554,12,1128,64,1064,'780 136v-148l284 284l-284 282l1 -146h-434l1 146l-284 -282l284 -284v148h432'], + 0x2B0D: [751,209,694,63,629,'211 75h-148l284 -284l282 284h-146v393l146 -1l-282 284l-284 -284h148v-392'], + 0x2B0E: [425,-48,968,65,904,'687 48l-215 206l35 33l151 -125v204h-593v59h652v-263l152 125l35 -33'], + 0x2B0F: [425,-48,968,65,904,'687 425l-215 -206l35 -33l151 125v-204h-593v-59h652v263l152 -125l35 33'], + 0x2B10: [425,-48,968,65,904,'282 48l215 206l-35 33l-151 -125v204h593v59h-652v-263l-152 125l-35 -33'], + 0x2B11: [425,-48,968,65,904,'282 425l215 -206l-35 -33l-151 125v-204h593v-59h-652v263l-152 -125l-35 33'], + 0x2B1A: [674,6,800,60,740,'540 110c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM399 110c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM258 110c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58z M680 533c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM680 392c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM680 251c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM680 110 c31 0 59 -28 59 -58c0 -31 -27 -58 -59 -58c-29 0 -57 28 -57 58s27 58 57 58zM681 674c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM540 674c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM399 674 c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM258 674c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM117 674c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM117 533 c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM117 392c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM117 251c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM117 110 c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x2B1B: [703,0,843,70,773,'773 0h-703v703h703v-703'], + 0x2B1C: [703,0,843,70,773,'735 38v627h-627v-627h627zM773 0h-703v703h703v-703'], + 0x2B30: [504,-33,1089,27,1063,'845 292c0 131 -104 212 -235 212c-128 1 -229 -80 -236 -212l-233 -1l125 152l-33 35l-206 -217l206 -215l33 35l-125 151h233c5 -126 106 -196 233 -199c131 1 215 50 239 200h217v59h-218zM606 462c104 0 197 -67 206 -170h-402c9 103 91 170 196 170zM812 233 c-9 -103 -97 -165 -201 -165c-105 0 -192 62 -201 165h402'], + 0x2B31: [845,305,1013,65,949,'178 600h771v59h-771l125 152l-32 34l-206 -214l171 -180l-171 -181l171 -180l-171 -178l206 -217l32 35l-125 151h771v59h-771l125 147l-125 152h771v59h-771l125 142'], + 0x2B32: [524,-17,1013,65,949,'338 241c16 -125 128 -224 256 -224s238 100 254 224h101v59h-105c-15 124 -121 224 -250 224s-238 -99 -253 -224h-163l125 152l-32 34l-206 -214l206 -217l32 34l-125 152h160zM386 240h190v-184c-99 8 -174 88 -190 184zM382 300c13 98 92 176 194 185l1 -185h-195z M802 300h-190v185c100 -9 176 -90 190 -185zM803 241c-13 -100 -89 -177 -190 -185l1 184'], + 0x2B33: [486,-55,1513,38,1476,'1476 131c-54 0 -134 207 -172 207c-50 0 -96 -203 -184 -203c-90 0 -134 203 -182 203c-40 0 -118 -207 -174 -207c-46 0 -116 167 -162 200c-46 -37 -112 -200 -166 -200c-62 0 -122 110 -188 110h-96l124 -152l-32 -34l-206 217l206 214l32 -34l-124 -152h104 c74 0 130 -98 172 -98c38 0 120 209 174 209c48 0 116 -168 164 -202c50 36 110 202 166 202c60 0 120 -216 190 -217c64 17 123 217 188 217c56 0 114 -167 166 -202v-78'], + 0x2B34: [486,-55,1013,65,949,'705 241v-175h-52v175h-264l125 -152l-33 -34l-176 186h-127l125 -152l-32 -34l-206 217l206 214l32 -34l-125 -152h124l179 186l33 -34l-125 -152h264v163h52v-163h244v-59h-244'], + 0x2B35: [486,-55,1013,65,949,'596 241v-175h52v175h53v-175h52v175h196v59h-196v163h-52v-163h-53v163h-52v-163h-207l125 152l-33 34l-179 -186h-124l125 152l-32 34l-206 -214l206 -217l32 34l-125 152h127l176 -186l33 34l-125 152h207'], + 0x2B36: [486,-55,1013,65,949,'891 241v-186h58v431h-58v-186h-502l125 152l-33 34l-179 -186h-124l125 152l-32 34l-206 -214l206 -217l32 34l-125 152h127l176 -186l33 34l-125 152h502'], + 0x2B37: [486,-55,1150,27,1124,'669 241l-1 59h-224v-59h225zM396 300h-45l126 152l-34 34l-178 -186h-124l124 152l-32 34l-206 -214l206 -217l32 34l-124 152h126l176 -186l34 34l-126 152h46zM725 241h186l181 -186l32 34l-125 152v59l125 152l-32 34l-180 -186h-187v-59'], + 0x2B38: [486,-55,1211,63,1147,'1089 270c0 15 13 29 29 29s29 -14 29 -29s-13 -29 -29 -29c-15 0 -29 14 -29 29zM990 270c0 15 13 29 29 29s29 -14 29 -29s-13 -29 -29 -29c-15 0 -29 14 -29 29zM891 270c0 15 13 29 29 29s29 -14 29 -29s-13 -29 -29 -29c-15 0 -29 14 -29 29zM792 270 c0 15 13 29 29 29s29 -14 29 -29s-13 -29 -29 -29c-15 0 -29 14 -29 29zM674 270c0 15 13 29 29 29s29 -14 29 -29s-13 -29 -29 -29c-15 0 -29 14 -29 29zM562 270c0 15 14 29 30 29c15 0 28 -14 28 -29s-14 -29 -28 -29c-16 0 -30 14 -30 29zM450 270c0 15 14 29 30 29 c15 0 28 -14 28 -29s-14 -29 -28 -29c-16 0 -30 14 -30 29zM331 270c0 15 13 29 29 29s29 -14 29 -29s-13 -29 -29 -29c-15 0 -29 14 -29 29zM216 270c0 15 14 29 30 29c15 0 28 -14 28 -29s-14 -29 -28 -29c-16 0 -30 14 -30 29zM302 89l-32 -34l-207 217l207 214l32 -34 l-152 -180'], + 0x2B39: [489,-58,1150,28,1123,'912 244h-328v-164h-52v164h-392l126 -152l-32 -34l-206 214l206 216l32 -34l-126 -152h392v176h52v-176h328l179 187l32 -34l-125 -152v-59l125 -152l-32 -34'], + 0x2B3A: [486,-55,1150,86,1066,'856 241h-212v-175h-62v175h-56v-175h-58v175h-268l124 -153l-32 -33l-206 217l206 214l32 -35l-124 -151h270v163h54v-163h56v163h64v-163h212l178 186l32 -34l-124 -152v-59l124 -152l-32 -34'], + 0x2B3B: [486,-55,1150,28,1122,'912 300h-560l124 152l-32 34l-180 -186h-124l126 152l-32 34l-206 -214l206 -217l32 34l-126 152h128l176 -186l32 34l-124 152h560l178 -186l32 34l-126 152v59l126 152l-32 34'], + 0x2B3C: [486,-55,1150,28,1123,'614 300h-262l125 152l-33 34l-179 -186h-124l125 152l-32 34l-206 -214l206 -217l32 34l-125 152h127l176 -186l33 34l-125 152h262v-175h52v175h246l179 -186l32 34l-125 152v59l125 152l-32 34l-179 -186h-246v163h-52v-163'], + 0x2B3D: [486,-55,1150,28,1123,'912 300h-196v163h-52v-163h-53v163h-52v-163h-207l125 152l-33 34l-179 -186h-124l125 152l-32 34l-206 -214l206 -217l32 34l-125 152h127l176 -186l33 34l-125 152h207v-175h53l-1 175h53v-175h52v175h196l179 -186l32 34l-125 152v59l125 152l-32 34'], + 0x2B3E: [486,-55,1013,65,949,'687 300l110 109l20 -21l-88 -88h220v-59h-219l87 -87l-20 -21l-109 109h-16l-110 -109l-21 21l89 87h-452l125 -152l-32 -34l-206 217l206 214l32 -34l-125 -152h452l-89 88l21 22l110 -110h15'], + 0x2B3F: [484,-53,961,-3,902,'-3 270l206 -217l33 34l-125 154l336 -2c172 0 134 122 272 122c79 0 137 -79 183 -134v75c-48 54 -107 118 -182 118c-172 0 -133 -122 -272 -122h-337l125 152l-33 34'], + 0x2B40: [613,-41,1013,65,949,'360 569h405v44h-405v-44zM360 409h405v44h-405v-44zM65 258l206 -217l32 34l-125 152h771v59h-771l125 152l-32 34'], + 0x2B41: [486,-55,1013,65,949,'730 474c-73 0 -175 -72 -226 -72c-37 0 -74 29 -105 84l-34 -27c43 -78 87 -113 138 -113c66 0 168 71 226 71c40 0 66 -22 106 -90l34 27c-49 87 -88 120 -139 120zM65 272l206 -217l32 34l-125 152h771v59h-771l125 152l-32 34'], + 0x2B42: [564,22,1013,65,949,'65 347l206 217l32 -34l-125 -152h771v-59h-771l125 -152l-32 -34zM381 294c14 -86 53 -148 148 -148c93 0 149 107 224 107c57 0 92 -38 113 -88l20 9c-21 78 -66 130 -152 130c-87 0 -150 -108 -225 -108c-64 0 -93 52 -108 107zM381 126c14 -86 53 -148 148 -148 c93 0 151 107 224 107c58 0 92 -37 113 -87l20 8c-21 78 -66 130 -152 130s-152 -108 -225 -108c-64 0 -93 51 -108 107'], + 0x2B43: [535,-7,1013,65,960,'553 302h293l-125 152l32 34l207 -217l-207 -214l-32 34l125 152h-293l-488 -236v59l371 177h-212v59h212l-371 174v59'], + 0x2B44: [535,-10,1013,65,957,'575 243c-15 -103 -111 -180 -204 -180h-306v-53h301c136 0 242 106 257 233h220l-125 -152l32 -34l207 214l-207 217l-32 -34l125 -152h-218c-15 127 -123 233 -259 233h-301v-53h306c103 0 190 -82 204 -180h-486v-59h486'], + 0x2B45: [647,107,1013,64,950,'229 365l73 95h646v59h-610l81 98l-30 30l-325 -377l326 -377l29 31l-81 98h610v59h-642l-71 82h715v59h-757l-44 43l45 45h755v55h-720'], + 0x2B46: [647,107,1013,64,950,'785 365l-73 95h-646v59h610l-81 98l30 30l325 -377l-326 -377l-29 31l81 98h-610v59h642l71 82h-715v59h757l44 43l-45 45h-755v55h720'], + 0x2B47: [486,-55,1013,65,949,'510 474c-73 0 -175 -72 -226 -72c-37 0 -74 29 -105 84l-34 -27c43 -78 87 -113 138 -113c66 0 168 71 226 71c40 0 66 -22 106 -90l34 27c-49 87 -88 120 -139 120zM949 272l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34'], + 0x2B48: [486,136,1013,65,949,'519 11c-73 0 -175 -72 -226 -72c-37 0 -74 29 -105 84l-34 -27c43 -78 87 -113 138 -113c66 0 168 71 226 71c40 0 66 -22 106 -90l34 27c-49 87 -88 120 -139 120zM519 163c-73 0 -175 -72 -226 -72c-37 0 -74 29 -105 84l-34 -27c43 -78 87 -113 138 -113 c66 0 168 71 226 71c40 0 66 -22 106 -90l34 27c-49 87 -88 120 -139 120zM949 272l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34'], + 0x2B49: [486,-55,1013,65,949,'504 474c73 0 175 -72 226 -72c37 0 74 29 105 84l34 -27c-43 -78 -87 -113 -138 -113c-66 0 -168 71 -226 71c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120zM65 272l206 -217l32 34l-125 152h771v59h-771l125 152l-32 34'], + 0x2B4A: [486,136,1013,65,949,'495 11c73 0 175 -72 226 -72c37 0 74 29 105 84l34 -27c-43 -78 -87 -113 -138 -113c-66 0 -168 71 -226 71c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120zM495 163c73 0 175 -72 226 -72c37 0 74 29 105 84l34 -27c-43 -78 -87 -113 -138 -113 c-66 0 -168 71 -226 71c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120zM65 272l206 -217l32 34l-125 152h771v59h-771l125 152l-32 34'], + 0x2B4B: [486,-55,1013,65,949,'504 67c73 0 175 72 226 72c37 0 74 -29 105 -84l34 27c-43 78 -87 113 -138 113c-66 0 -168 -71 -226 -71c-40 0 -66 22 -106 90l-34 -27c49 -87 88 -120 139 -120zM65 269l206 217l32 -34l-125 -152h771v-59h-771l125 -152l-32 -34'], + 0x2B4C: [486,-55,1013,65,949,'510 67c-73 0 -175 72 -226 72c-37 0 -74 -29 -105 -84l-34 27c43 78 87 113 138 113c66 0 168 -71 226 -71c40 0 66 22 106 90l34 -27c-49 -87 -88 -120 -139 -120zM949 269l-206 217l-32 -34l125 -152h-771v-59h771l-125 -152l32 -34'], + 0x2B50: [577,37,708,32,678,'565 318h-161l-50 152l-48 -153h-161l130 -96l-49 -151l130 96l129 -96l-51 153zM678 344l-201 -147l78 -234l-199 147l-200 -147l76 231l-200 149h247l75 234l76 -233h248'], + 0x2B51: [458,2,554,35,519,'519 284l-151 -111l59 -175l-149 110l-150 -110l57 173l-150 112h185l56 175l57 -174h186'], + 0x2B52: [458,2,554,35,519,'434 264h-120l-38 114l-36 -115h-120l97 -72l-37 -113l98 72l96 -72l-38 115zM519 284l-151 -111l59 -175l-149 110l-150 -110l57 173l-150 112h185l56 175l57 -174h186'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Shapes/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size1/Regular/Main.js new file mode 100644 index 0000000..e062ffb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size1/Regular/Main.js @@ -0,0 +1,115 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'AsanaMathJax_Size1', + id: 'ASANAMATHSIZE1', + 0x20: [0,0,249,0,0,''], + 0x28: [981,490,399,84,360,'360 -458l-12 -32c-51 61 -264 234 -264 735c0 502 213 675 264 736l12 -31c-145 -172 -184 -424 -184 -705c0 -280 39 -530 184 -703'], + 0x29: [981,490,399,40,316,'40 -458l12 -32c51 61 264 234 264 735c0 502 -213 675 -264 736l-12 -31c145 -172 184 -424 184 -705c0 -280 -39 -530 -184 -703'], + 0x5B: [984,492,350,84,321,'321 -484l-6 -8c-32 0 -78 3 -111 3c-32 0 -78 -3 -111 -3l-9 18c9 49 9 180 9 267v905c0 87 0 218 -9 267l9 19c33 0 79 -3 111 -3c33 0 79 3 111 3l6 -9v-38l-4 -7h-66c-38 0 -70 -16 -70 -50c0 -53 -4 -131 -4 -182v-905c0 -51 4 -129 4 -182c0 -34 32 -50 70 -50h66 l4 -7v-38'], + 0x5D: [984,492,350,84,321,'84 -484l6 -8c32 0 78 3 111 3c32 0 78 -3 111 -3l9 18c-9 49 -9 180 -9 267v905c0 87 0 218 9 267l-9 19c-33 0 -79 -3 -111 -3c-33 0 -79 3 -111 3l-6 -9v-38l4 -7h66c38 0 70 -16 70 -50c0 -53 4 -131 4 -182v-905c0 -51 -4 -129 -4 -182c0 -34 -32 -50 -70 -50h-66 l-4 -7v-38'], + 0x7B: [981,490,362,84,328,'328 -490c-163 0 -170 163 -170 186v406c0 77 -24 110 -74 143c50 34 74 67 74 142v406c0 25 7 188 170 188v-10c-66 0 -94 -91 -94 -155v-394c0 -111 -27 -153 -82 -177c55 -23 82 -65 82 -176v-394c0 -65 28 -155 94 -155v-10'], + 0x7C: [908,367,241,86,156,'156 -367h-70v1275h70v-1275'], + 0x7D: [981,490,362,84,328,'84 -490c163 0 170 163 170 186v406c0 77 24 110 74 143c-50 34 -74 67 -74 142v406c0 25 -7 188 -170 188v-10c66 0 94 -91 94 -155v-394c0 -111 27 -153 82 -177c-55 -23 -82 -65 -82 -176v-394c0 -65 -28 -155 -94 -155v-10'], + 0x302: [783,-627,453,0,453,'453 627l-227 93l-226 -93v47l226 109l227 -109v-47'], + 0x303: [763,-654,700,0,701,'701 763c-27 -59 -73 -107 -233 -107c-96 0 -187 46 -286 46c-104 0 -142 -22 -150 -48h-32c27 59 73 106 233 106c96 0 186 -46 286 -46c104 0 142 23 150 49h32'], + 0x305: [587,-542,510,0,511,'511 542h-511v45h511v-45'], + 0x306: [664,-506,383,0,384,'0 664h41c4 -57 67 -98 151 -98s147 41 151 98h41c-3 -44 -11 -66 -33 -93c-33 -42 -90 -65 -159 -65c-73 0 -132 25 -165 71c-17 26 -24 46 -27 87'], + 0x30C: [783,-627,736,0,737,'737 783l-369 -93l-368 93v-47l367 -109l370 109v47'], + 0x332: [-130,175,510,0,511,'511 -175h-511v45h511v-45'], + 0x333: [-130,283,510,0,511,'511 -283h-511v45h511v-45zM511 -175h-511v45h511v-45'], + 0x33F: [695,-542,510,0,511,'511 650h-511v45h511v-45zM511 542h-511v45h511v-45'], + 0x2016: [908,367,436,86,351,'351 -367h-70v1275h70v-1275zM156 -367h-70v1275h70v-1275'], + 0x2044: [742,463,382,-69,383,'383 741l-379 -1204h-73l379 1205'], + 0x2045: [943,401,353,64,303,'171 215c14 15 41 28 71 28h56l5 9v38l-5 8h-56c-30 0 -57 8 -71 23v459c0 49 4 71 14 84c14 15 39 24 70 24h43l5 7v39l-7 9h-222c-4 -14 -5 -30 -5 -52c0 -38 4 -93 4 -167v-918c0 -100 -2 -142 -9 -187l10 -20h222l7 9v39l-5 7h-43c-31 0 -56 9 -70 24 c-10 13 -14 34 -14 82v455'], + 0x2046: [943,401,358,30,269,'162 215c-14 15 -41 28 -71 28h-56l-5 9v38l5 8h56c30 0 57 8 71 23v459c0 49 -4 71 -14 84c-14 15 -39 24 -70 24h-43l-5 7v39l7 9l114 -4l108 4c4 -14 5 -30 5 -52c0 -38 -4 -93 -4 -167v-918c0 -100 2 -142 9 -187l-10 -20l-108 1l-114 -1l-7 9v39l5 7h43 c31 0 56 9 70 24c10 13 14 34 14 82v455'], + 0x20D6: [790,-519,807,0,807,'807 636h-735l79 -96l-21 -21l-130 135l130 136l21 -21l-79 -96h735v-37'], + 0x20D7: [790,-519,807,0,807,'735 636h-735v37h735l-79 96l21 21l130 -136l-130 -135l-21 21'], + 0x220F: [901,448,1431,78,1355,'1355 -448c-24 13 -256 19 -279 19c-22 0 -241 -6 -261 -16l-1 55c66 1 119 23 159 76c36 46 31 474 31 521c0 45 3 604 3 604h-574s-8 -563 -8 -607c0 -46 -7 -472 29 -521c40 -50 96 -72 162 -73v-58c-23 13 -255 19 -280 19c-24 0 -234 -6 -257 -16l-1 55 c66 1 116 23 157 76c36 46 36 478 34 524c0 45 10 533 -27 578c-42 50 -97 56 -163 56l3 55c477 -3 683 -6 1273 2v-57c-69 4 -117 -7 -158 -56c-39 -46 -35 -539 -35 -581c0 -47 -6 -475 33 -524c38 -50 95 -72 160 -73v-58'], + 0x2210: [901,448,1431,78,1355,'1355 901c-24 -13 -256 -18 -279 -18c-22 0 -241 5 -261 16l-1 -55c66 -2 119 -23 159 -76c36 -47 31 -474 31 -522c0 -44 3 -603 3 -603h-574s-8 563 -8 606c0 46 -7 472 29 521c40 51 96 72 162 74v57c-23 -13 -255 -18 -280 -18c-24 0 -234 5 -257 16l-1 -55 c66 -2 116 -23 157 -76c36 -47 36 -479 34 -525c0 -44 10 -532 -27 -577c-42 -50 -97 -56 -163 -56l3 -55c477 3 683 6 1273 -3v58c-69 -5 -117 7 -158 56c-39 46 -35 538 -35 580c0 48 -6 475 33 524c38 51 95 72 160 74v57'], + 0x2211: [893,446,1224,89,1135,'1135 19h-61c-17 -126 -46 -209 -95 -252c-46 -41 -127 -62 -242 -62h-429l447 574l-401 553h363c107 0 184 -27 236 -80c46 -52 81 -136 101 -254h52l-20 395h-991l510 -701l-516 -638h1023'], + 0x221A: [1280,0,770,63,803,'803 1280l-338 -1280l-276 580l-112 -42l-14 22l202 106l208 -438l268 1052h62'], + 0x2229: [1039,520,1292,124,1169,'1169 440c0 339 -242 599 -522 599s-523 -260 -523 -597v-962h76v968c0 287 209 505 447 505c252 0 446 -249 446 -503v-970h76v960'], + 0x222B: [1310,654,1000,54,1001,'1001 1187c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-207 0 -182 -491 -191 -621c-18 -243 -30 -487 -56 -728c-23 -194 -70 -567 -329 -567c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29 c12 -14 33 -19 49 -19c190 0 173 324 178 447c7 267 28 531 44 796c15 221 51 674 354 674c71 0 179 -37 179 -123'], + 0x222C: [1310,654,1659,54,1540,'1540 1187c0 -30 -9 -64 -46 -64c-44 0 -105 45 -105 92c0 10 1 19 6 30c-12 13 -33 17 -51 17c-207 0 -219 -544 -226 -661c-17 -219 -28 -438 -52 -655c-20 -175 -37 -600 -297 -600c-71 0 -176 35 -176 123c0 28 7 65 43 65c45 0 106 -48 106 -93c0 -9 -3 -21 -6 -29 c12 -14 33 -19 49 -19c189 0 156 376 161 487c6 240 25 478 39 716c14 199 74 714 376 714c71 0 179 -37 179 -123zM1001 1187c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-207 0 -166 -544 -174 -661c-16 -219 -27 -438 -50 -655 c-21 -175 -93 -600 -352 -600c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 210 376 214 487c7 240 26 478 40 716c14 199 19 714 322 714c71 0 179 -37 179 -123'], + 0x222D: [1310,654,2198,54,2079,'2079 1187c0 -30 -9 -64 -45 -64c-46 0 -106 45 -106 92c0 10 1 19 6 30c-12 13 -33 17 -49 17c-208 0 -194 -544 -202 -661c-16 -219 -27 -438 -51 -655c-19 -175 -64 -600 -325 -600c-69 0 -176 35 -176 123c0 28 8 65 45 65c44 0 105 -48 105 -93c0 -9 -3 -21 -6 -29 c12 -14 32 -19 50 -19c188 0 183 376 187 487c7 240 24 478 39 716c14 199 47 714 348 714c72 0 180 -37 180 -123zM1540 1187c0 -30 -9 -64 -46 -64c-44 0 -105 45 -105 92c0 10 1 19 6 30c-12 13 -33 17 -51 17c-207 0 -192 -544 -200 -661c-16 -219 -27 -438 -51 -655 c-20 -175 -64 -600 -324 -600c-71 0 -176 35 -176 123c0 28 7 65 43 65c45 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c189 0 183 376 188 487c6 240 25 478 39 716c14 199 47 714 349 714c71 0 179 -37 179 -123zM1001 1187c0 -30 -10 -64 -46 -64 c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-207 0 -192 -544 -201 -661c-16 -219 -27 -438 -50 -655c-21 -175 -66 -600 -325 -600c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19 c190 0 183 376 188 487c6 240 25 478 39 716c14 199 46 714 349 714c71 0 179 -37 179 -123'], + 0x222E: [1310,654,1120,54,1001,'1001 1187c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-199 0 -191 -507 -196 -643c146 -36 254 -169 254 -327c0 -178 -134 -322 -306 -337v-8c-20 -175 -69 -601 -328 -601c-71 0 -176 35 -176 123c0 28 7 65 43 65 c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 186 378 188 488c1 28 3 56 3 83c-142 40 -247 172 -247 328c0 169 123 308 286 333c13 206 57 685 346 685c71 0 179 -37 179 -123zM795 292c0 119 -80 222 -191 255c-11 -173 -20 -347 -38 -521 c129 18 229 132 229 266zM471 554c-120 -26 -211 -133 -211 -262c0 -119 74 -217 181 -255c8 174 19 344 30 517'], + 0x222F: [1310,654,1659,54,1540,'1540 1187c0 -30 -9 -64 -46 -64c-44 0 -105 45 -105 92c0 10 1 19 4 30c-10 13 -31 17 -49 17c-202 0 -217 -523 -223 -651c133 -46 290 -151 290 -315c0 -184 -183 -309 -340 -337l-2 -12c-20 -174 -40 -601 -300 -601c-71 0 -176 35 -176 123c0 28 7 65 43 65 c45 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c200 0 152 414 164 561h-364v-7c-21 -174 -96 -601 -355 -601c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 212 378 215 489l3 90 c-133 45 -287 160 -287 324c0 179 173 292 325 325c14 205 28 689 320 689c71 0 179 -37 179 -123c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-193 0 -165 -487 -170 -634h351c13 208 87 682 374 682c71 0 179 -37 179 -123z M1333 296c0 123 -123 201 -217 242c-12 -169 -22 -338 -39 -506c116 30 256 125 256 264zM983 559h-350c-14 -178 -23 -358 -41 -534h360c8 176 19 356 31 534zM498 548c-110 -35 -244 -119 -244 -252c0 -121 120 -208 213 -249c8 167 19 333 31 501'], + 0x2230: [1310,654,2198,54,2079,'1095 -46c-29 -104 -47 -608 -326 -608c-71 0 -176 35 -176 123c0 28 7 65 43 65c45 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c205 0 181 435 191 561h-418v-7c-21 -174 -69 -601 -328 -601c-71 0 -176 35 -176 123c0 28 7 65 43 65 c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 185 378 188 489l3 90c-133 45 -260 160 -260 324c0 179 146 292 298 325c14 205 55 689 347 689c71 0 179 -37 179 -123c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30 c-13 13 -32 17 -50 17c-193 0 -192 -487 -197 -634h405c15 208 60 682 347 682c71 0 179 -37 179 -123c0 -30 -9 -64 -46 -64c-44 0 -105 45 -105 92c0 10 1 19 6 30c-12 13 -33 17 -51 17c-192 0 -195 -487 -199 -634h407c16 208 60 682 347 682c72 0 180 -37 180 -123 c0 -30 -9 -64 -45 -64c-46 0 -106 45 -106 92c0 10 1 19 4 30c-10 13 -31 17 -47 17c-203 0 -192 -523 -198 -651c132 -46 263 -151 263 -315c0 -184 -156 -309 -314 -337l-1 -12c-20 -174 -67 -601 -328 -601c-69 0 -176 35 -176 123c0 28 8 65 45 65c44 0 105 -48 105 -93 c0 -9 -3 -21 -6 -29c12 -14 32 -19 50 -19c188 0 185 378 188 489c1 24 1 47 2 72h-420zM1871 296c0 123 -94 201 -189 242c-11 -169 -22 -338 -38 -506c115 30 227 125 227 264zM1549 559h-407c-14 -178 -24 -358 -41 -534h417c8 176 20 356 31 534zM1010 559h-404 c-14 -178 -23 -358 -41 -534h414c8 178 19 356 31 534zM471 548c-110 -35 -217 -119 -217 -252c0 -121 93 -208 186 -249c8 167 19 333 31 501'], + 0x2231: [1310,654,1120,54,1001,'441 -119c-3 -110 -5 -488 -195 -488c-16 0 -37 5 -49 19c3 8 6 20 6 29c0 45 -60 93 -106 93c-36 0 -43 -37 -43 -65c0 -88 105 -123 176 -123c259 0 314 426 335 601v8l7 71c18 174 27 348 39 521c101 -30 177 -119 190 -227l-100 89l-34 -32l162 -174l156 174l-34 32 l-83 -76c-16 141 -119 253 -252 286c6 136 -9 643 190 643c18 0 37 -4 50 -17c-4 -11 -6 -20 -6 -30c0 -47 61 -92 105 -92c36 0 46 34 46 64c0 86 -108 123 -179 123c-289 0 -326 -479 -340 -685c-163 -25 -286 -164 -286 -333h70c0 129 91 236 212 262 c-12 -173 -23 -343 -31 -517c0 -26 -5 -128 -6 -156'], + 0x2232: [1310,654,1146,80,1027,'1011 377l-117 -128c-19 -157 -145 -279 -303 -294v-8c-21 -175 -76 -601 -335 -601c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 192 378 195 488c1 28 2 56 2 83c-142 40 -247 172 -247 328 c0 169 123 308 286 333c14 206 51 685 340 685c71 0 179 -37 179 -123c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-199 0 -184 -507 -190 -643c133 -33 236 -145 252 -286l83 76zM827 320c-13 108 -89 197 -190 227 c-12 -173 -21 -347 -39 -521c111 16 202 102 224 211l-129 140l34 32zM504 554c-121 -26 -212 -133 -212 -262c0 -119 75 -217 181 -255c8 174 19 344 31 517'], + 0x2233: [1310,654,1120,54,1001,'985 208l-34 -33l-83 75c-17 -157 -145 -280 -303 -295v-8c-21 -175 -76 -601 -335 -601c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 192 378 195 488c1 28 2 56 2 83c-142 40 -247 172 -247 328 c0 169 123 308 286 333c14 206 51 685 340 685c71 0 179 -37 179 -123c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-199 0 -184 -507 -190 -643c133 -33 235 -145 252 -285zM801 265l-100 -90l-34 33l129 140 c-21 94 -93 171 -185 199c-12 -173 -21 -347 -39 -521c122 18 215 116 229 239zM478 554c-121 -26 -212 -133 -212 -262c0 -119 75 -217 181 -255c8 174 19 344 31 517'], + 0x22C0: [1040,519,1217,85,1132,'1132 -519h-74l-450 1360l-450 -1360h-73l512 1559h22'], + 0x22C1: [1040,519,1217,85,1132,'1132 1040h-74l-450 -1360l-450 1360h-73l512 -1559h22'], + 0x22C2: [1039,520,1292,124,1169,'1169 440c0 339 -242 599 -522 599s-523 -260 -523 -597v-962h76v968c0 287 209 505 447 505c252 0 446 -249 446 -503v-970h76v960'], + 0x22C3: [1039,520,1292,124,1169,'1169 80c0 -339 -242 -600 -522 -600s-523 261 -523 598v961h76v-968c0 -287 209 -505 447 -505c252 0 446 250 446 504v969h76v-959'], + 0x2308: [980,490,390,84,346,'346 980h-262v-1470h63v1380h199v90'], + 0x2309: [980,490,390,84,346,'84 980h262v-1470h-63v1380h-199v90'], + 0x230A: [980,490,390,84,346,'346 -490h-262v1470h63v-1380h199v-90'], + 0x230B: [980,490,390,84,346,'84 -490h262v1470h-63v-1380h-199v-90'], + 0x23B4: [755,-518,977,0,978,'8 518l-8 6c0 32 3 78 3 111c0 32 -3 78 -3 111l18 9c49 -9 180 -9 267 -9h407c87 0 218 0 267 9l19 -9c0 -33 -3 -79 -3 -111c0 -33 3 -79 3 -111l-9 -6h-38l-7 4v66c0 38 -16 70 -50 70c-53 0 -131 4 -182 4h-407c-51 0 -129 -4 -182 -4c-34 0 -50 -32 -50 -70v-66 l-7 -4h-38'], + 0x23B5: [-238,475,977,0,978,'8 -238l-8 -6c0 -32 3 -78 3 -111c0 -32 -3 -78 -3 -111l18 -9c49 9 180 9 267 9h407c87 0 218 0 267 -9l19 9c0 33 -3 79 -3 111c0 33 3 79 3 111l-9 6h-38l-7 -4v-66c0 -38 -16 -70 -50 -70c-53 0 -131 -4 -182 -4h-407c-51 0 -129 4 -182 4c-34 0 -50 32 -50 70v66 l-7 4h-38'], + 0x23DC: [821,-545,972,0,973,'21 545l-21 12c41 51 155 264 486 264c332 0 446 -213 487 -264l-21 -12c-114 145 -280 184 -466 184c-185 0 -350 -39 -465 -184'], + 0x23DD: [-545,821,972,0,973,'21 -545l-21 -12c41 -51 155 -264 486 -264c332 0 446 213 487 264l-21 12c-114 -145 -280 -184 -466 -184c-185 0 -350 39 -465 184'], + 0x23DE: [789,-545,1572,51,1522,'51 545c0 163 163 170 186 170h406c77 0 110 24 143 74c34 -50 67 -74 142 -74h406c25 0 188 -7 188 -170h-10c0 66 -91 94 -155 94h-394c-111 0 -153 27 -177 82c-23 -55 -65 -82 -176 -82h-394c-65 0 -155 -28 -155 -94h-10'], + 0x23DF: [-545,789,1572,51,1522,'51 -545c0 -163 163 -170 186 -170h406c77 0 110 -24 143 -74c34 50 67 74 142 74h406c25 0 188 7 188 170h-10c0 -66 -91 -94 -155 -94h-394c-111 0 -153 -27 -177 -82c-23 55 -65 82 -176 82h-394c-65 0 -155 28 -155 94h-10'], + 0x23E0: [755,-545,1359,0,1360,'304 697l-191 -152h-113l252 210h856l252 -210h-113l-189 152h-754'], + 0x23E1: [-545,755,1359,0,1360,'304 -697l-191 152h-113l252 -210h856l252 210h-113l-189 -152h-754'], + 0x27C5: [781,240,450,53,397,'397 -240c-157 0 -344 75 -344 254c0 247 218 406 218 645c0 49 -43 88 -91 88c-28 0 -56 -14 -73 -36c30 -1 50 -24 50 -52c0 -31 -23 -52 -53 -52s-51 21 -51 52c0 69 59 122 127 122s127 -53 127 -122c0 -236 -155 -411 -155 -645c0 -134 114 -221 245 -221v-33'], + 0x27C6: [781,240,450,53,397,'397 14c0 -179 -187 -254 -344 -254v33c131 0 245 87 245 221c0 234 -155 409 -155 645c0 69 59 122 127 122s127 -53 127 -122c0 -31 -21 -52 -51 -52s-53 21 -53 52c0 28 20 51 50 52c-17 22 -45 36 -73 36c-48 0 -91 -39 -91 -88c0 -239 218 -398 218 -645'], + 0x27E6: [684,341,502,84,473,'473 -335l-6 -6c-32 1 -78 2 -111 2h-39l-2 -2c-10 0 -22 1 -35 1c-12 0 -24 -1 -35 -1l-1 2h-40c-32 0 -78 -1 -111 -2l-9 13c9 34 9 125 9 185v629c0 60 0 151 -9 185l9 13c33 -1 79 -2 111 -2h40l1 2c11 0 23 -1 35 -1c13 0 25 1 35 1l2 -2h39c33 0 79 1 111 2l6 -6 v-26l-4 -5h-66c-38 0 -68 -11 -70 -35c-3 -37 -4 -91 -4 -126v-629c0 -35 1 -89 4 -126c2 -24 32 -35 70 -35h66l4 -5v-26zM245 -143v629c0 49 0 118 -5 161c-33 -2 -57 -13 -59 -35c-3 -37 -4 -91 -4 -126v-629c0 -35 1 -89 4 -126c2 -22 26 -33 59 -35c5 43 5 112 5 161'], + 0x27E7: [684,341,502,84,473,'84 -335l6 -6c32 1 78 2 111 2h39l2 -2c10 0 22 1 35 1c12 0 24 -1 35 -1l1 2h40c32 0 78 -1 111 -2l9 13c-9 34 -9 125 -9 185v629c0 60 0 151 9 185l-9 13c-33 -1 -79 -2 -111 -2h-40l-1 2c-11 0 -23 -1 -35 -1c-13 0 -25 1 -35 1l-2 -2h-39c-33 0 -79 1 -111 2l-6 -6 v-26l4 -5h66c38 0 68 -11 70 -35c3 -37 4 -91 4 -126v-629c0 -35 -1 -89 -4 -126c-2 -24 -32 -35 -70 -35h-66l-4 -5v-26zM312 -143v629c0 49 0 118 5 161c33 -2 57 -13 59 -35c3 -37 4 -91 4 -126v-629c0 -35 -1 -89 -4 -126c-2 -22 -26 -33 -59 -35c-5 43 -5 112 -5 161'], + 0x27E8: [681,340,422,53,371,'371 -340h-58l-260 509l260 512h58l-235 -511'], + 0x27E9: [681,340,422,53,371,'53 -340h58l260 509l-260 512h-58l235 -511'], + 0x27EA: [681,340,605,53,554,'554 -340h-58l-260 509l260 512h58l-235 -511zM371 -340h-58l-260 509l260 512h58l-235 -511'], + 0x27EB: [681,340,605,53,554,'53 -340h58l260 509l-260 512h-58l235 -511zM236 -340h58l260 509l-260 512h-58l235 -511'], + 0x29FC: [915,457,518,50,469,'435 -457c0 0 52 546 -385 646v67c437 100 389 656 389 659l30 -86c0 -170 -8 -424 -301 -604c283 -79 304 -594 301 -596'], + 0x29FD: [915,457,518,49,469,'84 -457c0 0 -52 546 385 646v67c-437 100 -389 656 -389 659l-30 -86c0 -170 8 -424 301 -604c-283 -79 -304 -594 -301 -596'], + 0x2A00: [1100,550,1901,124,1778,'1778 274c0 -454 -371 -824 -828 -824c-456 0 -826 370 -826 824c0 456 370 826 826 826c457 0 828 -370 828 -826zM1701 274c0 413 -339 748 -751 748c-411 0 -748 -335 -748 -748c0 -412 337 -749 748 -749c412 0 751 337 751 749zM1071 295c0 -67 -54 -119 -119 -119 c-66 0 -120 52 -120 119c0 65 54 120 120 120c65 0 119 -55 119 -120'], + 0x2A01: [1100,550,1901,124,1778,'1778 274c0 -454 -371 -824 -828 -824c-456 0 -826 370 -826 824c0 456 370 826 826 826c457 0 828 -370 828 -826zM1699 333c-42 374 -328 653 -708 689v-689h708zM906 333v689c-378 -36 -660 -312 -703 -689h703zM1701 240h-710v-714c387 35 678 326 710 714zM906 -475 v715h-704c31 -385 316 -676 704 -715'], + 0x2A02: [1100,550,1901,124,1778,'1778 274c0 -454 -371 -824 -828 -824c-456 0 -826 370 -826 824c0 456 370 826 826 826c457 0 828 -370 828 -826zM1701 274c0 180 -62 342 -185 492l-502 -501l491 -491c131 148 196 317 196 500zM1452 832c-153 126 -322 190 -502 190c-184 0 -352 -64 -501 -193 l499 -499zM1441 -288l-491 490l-489 -493c150 -119 312 -184 489 -184c176 0 342 65 491 187zM884 266l-498 500c-122 -150 -184 -312 -184 -492c0 -183 64 -349 191 -502'], + 0x2A03: [1039,520,1292,124,1169,'766 295c0 -67 -54 -119 -119 -119c-66 0 -120 52 -120 119c0 65 54 120 120 120c65 0 119 -55 119 -120zM1169 80c0 -339 -242 -600 -522 -600s-523 261 -523 598v961h76v-968c0 -287 209 -504 447 -504c252 0 446 249 446 503v969h76v-959'], + 0x2A04: [1039,520,1292,124,1169,'1016 222h-332v-326h-72v326h-323v72h323v318h72v-318h332v-72zM1169 80c0 -339 -242 -600 -522 -600s-523 261 -523 598v961h76v-968c0 -287 209 -505 447 -505c252 0 446 250 446 504v969h76v-959'], + 0x2A05: [1024,513,1292,124,1169,'1169 1024h-1045v-1537h78v1449h890v-1449h77v1537'], + 0x2A06: [1024,513,1292,124,1169,'1169 -513h-1045v1537h78v-1449h890v1449h77v-1537'], + 0x2A07: [1039,520,1415,86,1330,'705 535c-111 -404 -227 -756 -348 -1055h-74l386 1177l-60 183l-450 -1360h-73l512 1559h22l86 -270l90 270h21l513 -1559h-73l-451 1360l-61 -183l388 -1177h-74'], + 0x2A08: [1039,520,1415,86,1330,'705 -16c-111 404 -227 756 -348 1055h-74l386 -1177l-60 -183l-450 1360h-73l512 -1559h22l86 270l90 -270h21l513 1559h-73l-451 -1360l-61 183l388 1177h-74'], + 0x2A09: [888,445,1581,124,1459,'1459 -382l-65 -63l-603 603l-602 -603l-65 63l603 604l-603 603l65 63l602 -603l603 603l65 -63l-604 -603'], + 0x2A0C: [1310,654,2736,54,2617,'2617 1187c0 -30 -9 -64 -44 -64c-46 0 -107 45 -107 92c0 10 2 19 6 30c-12 13 -32 17 -49 17c-207 0 -193 -544 -201 -661c-15 -219 -27 -438 -51 -655c-19 -175 -64 -600 -325 -600c-69 0 -176 35 -176 123c0 28 9 65 44 65c45 0 106 -48 106 -93c0 -9 -3 -21 -6 -29 c13 -14 32 -19 50 -19c188 0 183 376 187 487c8 240 24 478 38 716c14 199 47 714 349 714c73 0 179 -37 179 -123zM2079 1187c0 -30 -9 -64 -45 -64c-46 0 -106 45 -106 92c0 10 1 19 6 30c-12 13 -33 17 -49 17c-208 0 -194 -544 -202 -661c-16 -219 -27 -438 -51 -655 c-19 -175 -64 -600 -325 -600c-69 0 -176 35 -176 123c0 28 8 65 45 65c44 0 105 -48 105 -93c0 -9 -3 -21 -6 -29c12 -14 32 -19 50 -19c188 0 183 376 187 487c7 240 24 478 39 716c14 199 47 714 348 714c72 0 180 -37 180 -123zM1540 1187c0 -30 -9 -64 -46 -64 c-44 0 -105 45 -105 92c0 10 1 19 6 30c-12 13 -33 17 -51 17c-207 0 -192 -544 -200 -661c-16 -219 -27 -438 -51 -655c-20 -175 -64 -600 -324 -600c-71 0 -176 35 -176 123c0 28 7 65 43 65c45 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19 c189 0 183 376 188 487c6 240 25 478 39 716c14 199 47 714 349 714c71 0 179 -37 179 -123zM1001 1187c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-207 0 -192 -544 -201 -661c-16 -219 -27 -438 -50 -655 c-21 -175 -66 -600 -325 -600c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 183 376 188 487c6 240 25 478 39 716c14 199 46 714 349 714c71 0 179 -37 179 -123'], + 0x2A0D: [1310,654,1120,54,1001,'584 281c-8 -113 -17 -224 -29 -335c-20 -175 -66 -600 -325 -600c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 183 376 188 487c3 135 11 268 20 401h-292l27 77h272c3 80 7 160 12 238 c14 199 46 714 349 714c71 0 179 -37 179 -123c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-207 0 -192 -544 -200 -661c-6 -80 -10 -161 -15 -243h290l-26 -77h-271zM454 281'], + 0x2A0E: [1310,654,1120,54,1001,'822 1310c-343 0 -343 -629 -354 -828h-279l-27 -77h301l-2 -76h-272l-27 -77h292l-20 -372c-5 -111 2 -487 -188 -487c-16 0 -37 5 -49 19c3 8 6 20 6 29c0 45 -60 93 -106 93c-36 0 -43 -37 -43 -65c0 -88 105 -123 176 -123c259 0 325 423 325 600 c0 120 17 194 29 306h271l26 77h-290l1 76h263l26 77h-281c3 52 3 76 6 119c8 117 -7 661 200 661c18 0 37 -4 50 -17c-4 -11 -6 -20 -6 -30c0 -47 61 -92 105 -92c36 0 46 34 46 64c0 86 -108 123 -179 123zM463 407'], + 0x2A0F: [1310,654,1120,54,1001,'592 431l242 249l58 -56l-302 -321c-8 -122 -22 -233 -34 -353c-21 -175 -67 -604 -326 -604c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 184 381 188 491c3 99 11 197 16 296l-237 -236l-56 56 l299 303c6 100 11 198 18 298c13 199 45 709 348 709c71 0 179 -37 179 -123c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-207 0 -192 -540 -200 -657c-5 -56 -11 -117 -14 -174'], + 0x2A10: [1310,654,1120,54,1001,'643 50v-74c-29 -11 -60 -18 -92 -21v-8c-20 -175 -62 -601 -321 -601c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 179 378 181 488c1 28 3 56 3 83c-142 40 -248 172 -248 328c0 169 124 308 287 333 c13 206 64 685 353 685c71 0 179 -37 179 -123c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-199 0 -198 -507 -203 -643c48 -17 94 -47 128 -74l-35 -54c-29 25 -61 45 -99 56c-11 -173 -20 -347 -38 -521c29 5 57 13 84 24z M464 554c-120 -26 -211 -133 -211 -262c0 -119 74 -217 181 -255c8 174 18 344 30 517'], + 0x2A11: [1310,654,1182,54,1063,'857 385l-164 -173l33 -33l97 87c-14 -111 -114 -202 -220 -228c33 378 26 411 31 585c6 231 58 639 201 639c20 0 36 -4 51 -17c-6 -12 -20 -31 -20 -45c0 -62 80 -120 138 -120c44 0 59 46 59 83c0 105 -126 147 -211 147c-253 0 -311 -362 -340 -681 c-16 -169 -22 -421 -27 -583c-102 38 -200 138 -200 253l-70 -2c0 -154 125 -286 268 -326c-11 -275 -81 -578 -207 -578c-18 0 -36 5 -49 19c5 14 15 43 15 58c0 61 -70 113 -126 113c-47 0 -62 -46 -62 -85c0 -106 115 -152 206 -152c284 0 322 505 336 616 c145 25 277 146 296 294l85 -77l35 33'], + 0x2A12: [1310,654,1120,54,1001,'608 294c0 -43 -37 -79 -79 -79c-46 0 -80 36 -80 79c0 47 34 85 80 85c42 0 79 -39 79 -85zM485 594v2s34 714 337 714c71 0 179 -37 179 -123c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-207 0 -186 -544 -186 -661v-7h219 v-614h-265l-4 -34c-21 -175 -81 -600 -340 -600c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 197 376 200 487l6 171h316v473h-286'], + 0x2A13: [1310,654,1120,54,1001,'610 294c0 -42 -37 -80 -79 -80c-46 0 -81 38 -81 80c0 48 35 86 81 86c42 0 79 -41 79 -86zM453 36c0 -27 -5 -128 -5 -155c-3 -112 -12 -488 -202 -488c-17 0 -38 3 -50 18c3 9 6 21 6 30c0 44 -59 91 -107 91c-35 0 -41 -35 -41 -65c0 -86 104 -121 175 -121 c260 0 322 434 341 607c173 16 306 160 306 338c0 158 -109 291 -253 328c6 136 -16 642 183 642c18 0 35 -3 50 -18c-6 -9 -6 -18 -6 -29c0 -48 59 -92 104 -92c35 0 47 35 47 65c0 86 -109 123 -180 123c-288 0 -331 -558 -344 -766c115 44 320 -46 323 -255 c3 -168 -166 -320 -347 -253'], + 0x2A14: [1310,654,1120,54,1001,'761 263c0 -45 -37 -79 -80 -79c-45 0 -79 34 -79 79c0 46 34 83 79 83c43 0 80 -37 80 -83zM458 176c37 -91 122 -152 223 -152c131 0 237 106 237 239c0 131 -106 238 -237 238c-87 0 -162 -45 -204 -114c4 23 7 50 9 82l6 127c13 197 27 714 329 714 c71 0 180 -37 180 -123c0 -30 -12 -65 -47 -65c-45 0 -104 44 -104 92c0 11 0 20 6 29c-15 15 -32 18 -50 18c-207 0 -176 -544 -184 -662v-61c19 3 38 5 59 5c155 0 280 -125 280 -280c0 -154 -125 -281 -280 -281c-42 0 -85 5 -104 20l-5 -58c-19 -173 -83 -598 -343 -598 c-71 0 -175 35 -175 121c0 30 6 65 41 65c48 0 107 -47 107 -91c0 -9 -3 -21 -6 -30c12 -15 33 -18 50 -18c190 0 204 375 206 487'], + 0x2A15: [1310,654,1120,54,1001,'599 300c0 -45 -34 -80 -79 -80c-46 0 -80 35 -80 80s34 83 80 83c45 0 79 -38 79 -83zM1001 1187c0 -30 -12 -65 -47 -65c-45 0 -104 44 -104 92c0 11 0 20 6 29c-15 15 -32 18 -50 18c-199 0 -191 -506 -196 -642c144 -37 253 -170 253 -327 c0 -178 -134 -322 -306 -339c-19 -173 -68 -607 -328 -607c-71 0 -175 35 -175 121c0 30 6 65 41 65c48 0 107 -47 107 -91c0 -9 -3 -21 -6 -30c12 -15 33 -18 50 -18c190 0 186 377 188 488c0 27 3 56 3 83c-144 40 -248 170 -248 328c0 167 123 306 285 333 c13 205 59 685 347 685c71 0 180 -37 180 -123zM440 36c197 -58 354 90 354 256c0 154 -138 296 -323 261c-122 -22 -212 -133 -212 -261c0 -120 73 -223 181 -256'], + 0x2A16: [1310,654,1120,54,1001,'1001 1187c0 -30 -10 -65 -46 -65c-44 0 -105 44 -105 92c0 11 2 20 6 29c-13 15 -32 18 -50 18c-207 0 -198 -544 -198 -662v-5h219v-615h-266l-3 -35c-21 -173 -69 -598 -328 -598c-71 0 -176 35 -176 121c0 30 7 65 43 65c46 0 106 -47 106 -91c0 -9 -3 -21 -6 -30 c12 -15 33 -18 49 -18c190 0 185 375 188 487l3 99h-225v615h261v2c0 197 46 714 349 714c71 0 179 -37 179 -123zM756 51v473h-153c-11 -159 -20 -316 -35 -473h188zM470 524h-187v-473h157c8 157 18 314 30 473'], + 0x2A17: [1310,654,1431,54,1362,'778 207h398c62 0 97 -35 97 -100c0 -66 -85 -107 -150 -107v-80c103 0 239 86 239 187c0 174 -151 186 -284 186h-297c5 103 13 205 22 306c8 118 -6 662 201 662c18 0 36 -3 50 -18c-5 -9 -5 -18 -5 -29c0 -48 59 -92 103 -92c36 0 47 35 47 65c0 86 -109 123 -180 123 c-302 0 -336 -517 -347 -714l-19 -303h-430l183 222l-47 53l-305 -319l305 -317l47 47l-183 228h427c-5 -109 -16 -217 -19 -327c-5 -112 3 -487 -186 -487c-18 0 -39 3 -51 18c3 9 6 21 6 30c0 44 -59 91 -106 91c-36 0 -42 -35 -42 -65c0 -86 104 -121 175 -121 c260 0 306 425 324 598c11 88 19 173 27 263'], + 0x2A18: [1310,654,1120,54,1001,'575 185c-25 -372 -64 -839 -345 -839c-71 0 -176 35 -176 123c0 28 7 65 43 65c46 0 106 -48 106 -93c0 -9 -3 -21 -6 -29c12 -14 33 -19 49 -19c190 0 183 376 188 487c2 97 22 212 27 305l-286 -292l-62 63l342 334v17l-342 341l62 62l286 -294l12 180 c14 199 46 714 349 714c71 0 179 -37 179 -123c0 -30 -10 -64 -46 -64c-44 0 -105 45 -105 92c0 10 2 19 6 30c-13 13 -32 17 -50 17c-207 0 -192 -544 -201 -661c-4 -59 -9 -119 -13 -178l276 287l62 -62l-344 -341v-17l344 -334l-62 -63'], + 0x2A19: [1310,654,1120,54,1001,'591 524c95 -10 247 -105 247 -237v-411h73v408c-2 166 -161 272 -305 305c8 117 -7 672 200 672c18 0 37 -3 50 -18c-4 -9 -6 -18 -6 -29c0 -48 61 -92 105 -92c36 0 46 35 46 65c0 86 -108 123 -179 123c-303 0 -335 -524 -349 -724c-150 -30 -307 -130 -307 -302v-408 h73v411c-2 130 120 211 231 237l-36 -645c-5 -111 2 -486 -188 -486c-16 0 -37 3 -49 18c3 9 6 21 6 30c0 44 -60 91 -106 91c-36 0 -43 -35 -43 -65c0 -86 105 -121 176 -121c259 0 314 395 325 571'], + 0x2A1A: [1310,654,1120,54,1001,'464 130c-96 12 -247 107 -247 237v413h-73v-409c2 -167 174 -271 317 -305c-9 -118 -5 -673 -212 -673c-17 0 -37 5 -50 18c4 10 6 19 6 30c0 47 -61 91 -105 91c-36 0 -46 -34 -46 -63c0 -86 108 -123 179 -123c303 0 335 524 349 723c150 29 307 129 307 302v409h-73 v-413c2 -130 -120 -209 -232 -237l37 646c5 110 -2 486 188 486c16 0 37 -4 49 -19c-3 -7 -6 -19 -6 -28c0 -46 60 -93 106 -93c36 0 43 37 43 65c0 87 -105 123 -176 123c-259 0 -314 -396 -325 -571'], + 0x2A1B: [1471,654,1130,54,1011,'1011 1384h-957v87h957v-87zM1009 1187c0 -30 -11 -64 -46 -64c-45 0 -105 45 -105 92c0 10 1 19 5 30c-13 13 -32 17 -50 17c-207 0 -192 -544 -201 -661c-16 -219 -26 -438 -50 -655c-20 -175 -66 -600 -325 -600c-71 0 -176 35 -176 123c0 28 8 65 43 65 c46 0 107 -48 107 -93c0 -9 -3 -21 -6 -29c12 -14 32 -19 49 -19c189 0 183 376 187 487c7 240 25 478 40 716c14 199 45 714 348 714c71 0 180 -37 180 -123'], + 0x2A1C: [1471,654,1156,80,1037,'80 -567h957v-87h-957v87zM83 -370c0 30 10 64 46 64c44 0 105 -45 105 -92c0 -10 -2 -19 -6 -30c13 -13 32 -17 50 -17c207 0 192 544 201 661c16 219 27 438 50 655c21 175 66 600 325 600c71 0 176 -35 176 -123c0 -28 -7 -65 -43 -65c-46 0 -106 48 -106 93 c0 9 3 21 6 29c-12 14 -33 19 -49 19c-190 0 -183 -376 -188 -487c-6 -240 -25 -479 -39 -716c-14 -199 -46 -714 -349 -714c-71 0 -179 37 -179 123'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size1/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size2/Regular/Main.js new file mode 100644 index 0000000..078df6b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size2/Regular/Main.js @@ -0,0 +1,115 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'AsanaMathJax_Size2', + id: 'ASANAMATHSIZE2', + 0x20: [0,0,249,0,0,''], + 0x28: [1266,775,427,84,388,'388 -732l-14 -43c-55 83 -290 323 -290 1020c0 698 235 938 290 1021l14 -43c-159 -240 -202 -589 -202 -978s43 -737 202 -977'], + 0x29: [1266,775,427,40,344,'40 -732l14 -43c55 83 290 323 290 1020c0 698 -235 938 -290 1021l-14 -43c159 -240 202 -589 202 -978s-43 -737 -202 -977'], + 0x5B: [1363,682,371,84,342,'342 -676l-6 -6c-32 0 -89 1 -122 1c-32 0 -88 -1 -121 -1l-9 13c9 34 9 125 9 185v1649c0 60 0 151 -9 185l9 13c33 0 89 -2 121 -2c33 0 90 2 122 2l6 -6v-26l-4 -5h-87c-38 0 -70 -11 -70 -35c0 -37 -4 -91 -4 -126v-1649c0 -35 4 -89 4 -126c0 -24 32 -35 70 -35h87 l4 -5v-26'], + 0x5D: [1363,682,371,84,342,'84 -676l6 -6c32 0 89 1 122 1c32 0 88 -1 121 -1l9 13c-9 34 -9 125 -9 185v1649c0 60 0 151 9 185l-9 13c-33 0 -89 -2 -121 -2c-33 0 -90 2 -122 2l-6 -6v-26l4 -5h87c38 0 70 -11 70 -35c0 -37 4 -91 4 -126v-1649c0 -35 -4 -89 -4 -126c0 -24 -32 -35 -70 -35h-87 l-4 -5v-26'], + 0x7B: [1357,684,468,51,419,'188 946c0 368 215 411 226 411c3 0 5 -1 5 -4c0 -7 -13 -15 -17 -17c-98 -52 -133 -174 -133 -387v-309c0 -76 -30 -245 -147 -303c117 -58 147 -227 147 -303v-310c0 -213 35 -336 133 -387c4 -2 17 -11 17 -17c0 -3 -2 -4 -5 -4c-11 0 -226 42 -226 410v305 c0 242 -136 305 -137 305c1 0 137 63 137 305v305'], + 0x7C: [1048,507,258,86,173,'173 -507h-87v1555h87v-1555'], + 0x7D: [1357,684,468,50,418,'281 946c0 368 -215 411 -226 411c-3 0 -5 -1 -5 -4c0 -7 13 -15 17 -17c98 -52 133 -174 133 -387v-309c0 -76 30 -245 147 -303c-117 -58 -147 -227 -147 -303v-310c0 -213 -35 -336 -133 -387c-4 -2 -17 -11 -17 -17c0 -3 2 -4 5 -4c11 0 226 42 226 410v305 c0 242 136 305 137 305c-1 0 -137 63 -137 305v305'], + 0x302: [783,-627,633,0,633,'633 627l-317 93l-316 -93v47l316 109l317 -109v-47'], + 0x303: [772,-642,1052,0,1053,'1053 772c-54 -99 -160 -130 -320 -130c-170 0 -331 67 -472 67c-104 0 -195 -10 -229 -67h-32c54 99 160 130 320 130c166 0 325 -67 466 -67c105 0 200 10 235 67h32'], + 0x305: [587,-542,674,0,675,'675 542h-675v45h675v-45'], + 0x306: [664,-506,541,0,542,'0 664h58c6 -57 95 -98 213 -98s207 41 213 98h58c-5 -44 -16 -66 -47 -93c-46 -42 -127 -65 -224 -65c-103 0 -186 25 -233 71c-24 26 -33 46 -38 87'], + 0x30C: [787,-627,1104,0,1105,'1105 787l-552 -97l-553 97v-47l552 -113l553 113v47'], + 0x332: [-130,175,674,0,675,'675 -175h-675v45h675v-45'], + 0x333: [-130,283,674,0,675,'675 -283h-675v45h675v-45zM675 -175h-675v45h675v-45'], + 0x33F: [695,-542,674,0,675,'675 650h-675v45h675v-45zM675 542h-675v45h675v-45'], + 0x2016: [1048,507,495,86,410,'410 -507h-87v1555h87v-1555zM173 -507h-87v1555h87v-1555'], + 0x2044: [875,596,431,-119,433,'433 873l-463 -1469h-89l463 1471'], + 0x2045: [1202,660,369,53,314,'170 193c15 21 45 39 77 39h62l5 13v52l-5 11h-62c-32 0 -62 11 -77 32v636c0 68 4 98 15 116c15 21 43 34 77 34h47l5 9v54l-7 13h-243c-5 -20 -6 -42 -6 -72c0 -53 5 -129 5 -232v-1271c0 -139 -3 -197 -10 -259l11 -28h243l7 13v54l-5 9h-47c-34 0 -62 13 -77 34 c-11 18 -15 47 -15 113v630'], + 0x2046: [1202,660,377,19,280,'163 193c-15 21 -45 39 -77 39h-62l-5 13v52l5 11h62c32 0 62 11 77 32v636c0 68 -4 98 -15 116c-15 21 -43 34 -77 34h-47l-5 9v54l7 13l125 -6l118 6c5 -20 6 -42 6 -72c0 -53 -5 -129 -5 -232v-1271c0 -139 3 -197 10 -259l-11 -28l-118 2l-125 -2l-7 13v54l5 9h47 c34 0 62 13 77 34c11 18 15 47 15 113v630'], + 0x20D6: [790,-519,1127,0,1127,'1127 636h-1055l79 -96l-21 -21l-130 135l130 136l21 -21l-79 -96h1055v-37'], + 0x20D7: [790,-519,1127,0,1127,'1055 636h-1055v37h1055l-79 96l21 21l130 -136l-130 -135l-21 21'], + 0x220F: [1297,645,2061,112,1951,'1951 -645c-34 19 -368 27 -402 27c-31 0 -347 -8 -375 -23l-2 79c95 2 172 34 229 110c52 66 45 682 45 750c0 65 4 870 4 870h-826s-12 -811 -12 -874c0 -66 -10 -680 42 -750c57 -72 138 -104 233 -106v-83c-33 19 -367 27 -403 27c-35 0 -337 -8 -370 -23l-2 79 c95 2 167 34 226 110c52 66 52 688 49 754c0 65 15 768 -39 833c-60 72 -139 80 -234 80l4 80c687 -5 984 -9 1833 2v-82c-99 6 -168 -10 -227 -80c-56 -67 -51 -776 -51 -837c0 -68 -8 -684 48 -754c55 -72 137 -104 230 -106v-83'], + 0x2210: [1297,645,2061,112,1951,'1951 1297c-34 -18 -368 -25 -402 -25c-31 0 -347 7 -375 23l-2 -80c95 -3 172 -33 229 -109c52 -68 45 -683 45 -752c0 -63 4 -868 4 -868h-826s-12 811 -12 873c0 66 -10 679 42 750c57 73 138 103 233 106v82c-33 -18 -367 -25 -403 -25c-35 0 -337 7 -370 23l-2 -80 c95 -3 167 -33 226 -109c52 -68 52 -690 49 -756c0 -63 15 -766 -39 -831c-60 -72 -139 -81 -234 -81l4 -79c687 5 984 9 1833 -4v83c-99 -7 -168 10 -227 81c-56 66 -51 775 -51 835c0 69 -8 684 48 755c55 73 137 103 230 106v82'], + 0x2211: [1286,642,1763,128,1634,'1634 27h-87c-25 -181 -67 -301 -137 -363c-66 -59 -183 -89 -349 -89h-617l643 827l-577 796h522c155 0 265 -39 340 -115c67 -75 117 -196 146 -366h75l-29 569h-1427l734 -1010l-743 -918h1473'], + 0x221A: [1912,0,866,63,899,'899 1912l-353 -1912l-350 728l-120 -49l-13 28l228 113l247 -525l301 1617h60'], + 0x2229: [1382,863,1705,100,1605,'1605 519c0 488 -349 863 -752 863s-753 -375 -753 -860v-1385h110v1394c0 413 300 727 643 727c363 0 642 -358 642 -724v-1397h110v1382'], + 0x222B: [1808,903,1360,54,1361,'1361 1638c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-286 0 -251 -678 -263 -857c-25 -336 -42 -672 -78 -1005c-31 -268 -96 -783 -454 -783c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128 c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 239 447 246 617c10 369 39 733 61 1099c20 305 70 930 488 930c98 0 247 -51 247 -170'], + 0x222C: [1808,903,2254,54,2105,'2105 1638c0 -41 -12 -88 -63 -88c-61 0 -145 62 -145 127c0 13 1 26 8 41c-17 18 -46 24 -70 24c-286 0 -303 -751 -313 -912c-22 -303 -37 -605 -71 -905c-27 -241 -51 -828 -410 -828c-98 0 -243 49 -243 170c0 39 10 90 60 90c62 0 146 -66 146 -128 c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c261 0 216 519 222 672c8 332 34 660 55 989c18 275 101 985 518 985c98 0 247 -51 247 -170zM1361 1638c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-286 0 -228 -751 -239 -912 c-23 -303 -38 -605 -70 -905c-28 -241 -128 -828 -486 -828c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 290 519 296 672c9 332 35 660 55 989c18 275 26 985 444 985c98 0 247 -51 247 -170'], + 0x222D: [1808,903,2998,54,2849,'2849 1638c0 -41 -13 -88 -62 -88c-64 0 -146 62 -146 127c0 13 1 26 8 41c-17 18 -46 24 -68 24c-287 0 -268 -751 -279 -912c-22 -303 -36 -605 -69 -905c-26 -241 -89 -828 -449 -828c-96 0 -243 49 -243 170c0 39 11 90 62 90c60 0 145 -66 145 -128 c0 -13 -4 -29 -9 -40c17 -20 45 -27 69 -27c260 0 253 519 259 672c9 332 32 660 53 989c19 275 65 985 480 985c100 0 249 -51 249 -170zM2105 1638c0 -41 -12 -88 -63 -88c-61 0 -145 62 -145 127c0 13 1 26 8 41c-17 18 -46 24 -70 24c-286 0 -266 -751 -276 -912 c-22 -303 -37 -605 -70 -905c-28 -241 -89 -828 -448 -828c-98 0 -243 49 -243 170c0 39 10 90 60 90c62 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c261 0 253 519 259 672c8 332 34 660 55 989c18 275 64 985 481 985c98 0 247 -51 247 -170z M1361 1638c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-286 0 -265 -751 -276 -912c-23 -303 -38 -605 -70 -905c-28 -241 -91 -828 -449 -828c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128 c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 253 519 259 672c9 332 35 660 55 989c18 275 63 985 481 985c98 0 247 -51 247 -170'], + 0x222E: [1808,903,1510,54,1361,'1361 1638c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-274 0 -263 -700 -271 -887c202 -50 352 -234 352 -453c0 -244 -186 -443 -423 -464v-11c-28 -241 -95 -830 -453 -830c-98 0 -243 49 -243 170c0 39 10 90 60 90 c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 257 521 260 674c1 39 4 77 4 114c-196 55 -341 238 -341 452c0 234 170 425 394 460c19 284 79 946 478 946c98 0 247 -51 247 -170zM1077 402c0 166 -110 307 -263 353c-16 -239 -29 -479 -54 -719 c179 25 317 182 317 366zM631 765c-167 -37 -293 -184 -293 -363c0 -164 104 -299 250 -351c11 239 26 474 43 714'], + 0x222F: [1808,903,2254,54,2105,'2105 1638c0 -41 -12 -88 -63 -88c-61 0 -145 62 -145 127c0 13 1 26 5 41c-14 18 -43 24 -67 24c-279 0 -300 -722 -308 -899c183 -63 400 -208 400 -435c0 -253 -253 -426 -469 -465l-3 -16c-27 -241 -55 -830 -414 -830c-98 0 -243 49 -243 170c0 39 10 90 60 90 c62 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c261 0 219 521 222 674c1 34 1 66 5 100h-503v-9c-28 -241 -132 -830 -490 -830c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27 c263 0 293 521 297 674c1 42 3 85 5 126c-184 62 -397 220 -397 446c0 248 239 403 448 450c19 282 39 950 442 950c98 0 247 -51 247 -170c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-266 0 -228 -672 -234 -874h484 c18 285 120 940 516 940c98 0 247 -51 247 -170zM1819 408c0 170 -168 278 -299 336c-16 -234 -30 -468 -54 -700c160 42 353 173 353 364zM1336 771h-483c-19 -245 -31 -494 -56 -737h496c12 243 26 492 43 737zM667 755c-152 -47 -337 -163 -337 -347 c0 -166 167 -286 295 -343c10 229 26 460 42 690'], + 0x2230: [1808,903,2998,54,2849,'1491 -64c-47 -211 -82 -839 -450 -839c-98 0 -243 49 -243 170c0 39 10 90 60 90c62 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c292 0 249 641 264 774h-578v-9c-27 -241 -94 -830 -452 -830c-98 0 -243 49 -243 170c0 39 10 90 60 90 c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 256 521 259 674c1 42 4 85 6 126c-185 62 -360 220 -360 446c0 248 201 403 411 450c19 282 76 950 479 950c98 0 247 -51 247 -170c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41 c-18 18 -44 24 -69 24c-266 0 -265 -672 -271 -874h558c22 285 83 940 479 940c98 0 247 -51 247 -170c0 -41 -12 -88 -63 -88c-61 0 -145 62 -145 127c0 13 1 26 8 41c-17 18 -46 24 -70 24c-265 0 -270 -672 -274 -874h561c21 285 82 940 478 940c100 0 249 -51 249 -170 c0 -41 -13 -88 -62 -88c-64 0 -146 62 -146 127c0 13 1 26 5 41c-14 18 -43 24 -65 24c-280 0 -265 -722 -272 -899c181 -63 362 -208 362 -435c0 -253 -216 -426 -433 -465l-1 -16c-28 -241 -93 -830 -453 -830c-96 0 -243 49 -243 170c0 39 11 90 62 90 c60 0 145 -66 145 -128c0 -13 -4 -29 -9 -40c17 -20 45 -27 69 -27c290 0 252 640 263 774h-580zM2562 408c0 170 -129 278 -262 336c-14 -234 -29 -468 -51 -700c159 42 313 173 313 364zM2117 771h-562c-18 -245 -32 -494 -55 -737h575c11 243 27 492 42 737zM1373 771 h-557c-19 -245 -31 -494 -57 -737h571c12 246 26 492 43 737zM630 755c-152 -47 -300 -163 -300 -347c0 -166 130 -286 257 -343c11 229 27 460 43 690'], + 0x2231: [1808,903,1509,54,1360,'587 -164c-4 -153 -6 -674 -269 -674c-22 0 -51 7 -67 27c4 11 8 27 8 40c0 62 -83 128 -146 128c-50 0 -59 -51 -59 -90c0 -121 144 -170 242 -170c358 0 434 589 463 830v11l10 98c24 240 37 480 53 719c140 -42 245 -165 262 -314l-138 123l-46 -43l223 -241l215 241 l-46 43l-115 -104c-22 195 -164 349 -348 395c7 187 -12 887 262 887c25 0 51 -6 69 -24c-5 -15 -8 -28 -8 -41c0 -65 84 -127 145 -127c50 0 63 47 63 88c0 119 -149 170 -247 170c-398 0 -450 -662 -468 -946c-225 -35 -395 -226 -395 -460h96c0 179 126 326 292 363 c-16 -240 -31 -475 -42 -714c0 -36 -8 -176 -9 -215'], + 0x2232: [1808,903,1566,110,1417,'1396 521l-162 -177c-26 -217 -200 -386 -419 -406v-11c-28 -241 -104 -830 -462 -830c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 265 521 269 674c1 39 4 77 4 114c-197 55 -342 238 -342 452 c0 234 171 425 395 460c19 284 70 946 469 946c98 0 247 -51 247 -170c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-274 0 -255 -700 -262 -887c184 -46 326 -200 348 -395l114 104zM1141 441c-17 149 -122 272 -262 314 c-16 -239 -29 -479 -54 -719c153 21 279 140 309 290l-177 195l46 43zM695 765c-166 -37 -292 -184 -292 -363c0 -164 103 -299 250 -351c11 239 26 474 42 714'], + 0x2233: [1808,903,1510,54,1361,'1340 287l-48 -46l-114 104c-24 -217 -200 -387 -419 -407v-11c-28 -241 -104 -830 -462 -830c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 265 521 269 674c1 39 4 77 4 114 c-197 55 -342 238 -342 452c0 234 171 425 395 460c19 284 70 946 469 946c98 0 247 -51 247 -170c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-274 0 -255 -700 -262 -887c184 -46 324 -200 348 -394zM1085 365l-138 -124l-46 46 l177 193c-29 130 -128 237 -255 275c-16 -239 -29 -479 -54 -719c168 25 297 160 316 329zM639 765c-166 -37 -292 -184 -292 -363c0 -164 103 -299 250 -351c11 239 26 474 42 714'], + 0x22C0: [1726,862,1677,85,1592,'1592 -862h-106l-648 2258l-648 -2258h-105l737 2588h32'], + 0x22C1: [1726,862,1677,85,1592,'1592 1726h-106l-648 -2258l-648 2258h-105l737 -2588h32'], + 0x22C2: [1725,863,1860,178,1684,'1684 730c0 562 -349 995 -753 995c-402 0 -753 -433 -753 -992v-1596h110v1607c0 477 301 838 643 838c363 0 643 -414 643 -835v-1610h110v1593'], + 0x22C3: [1382,863,1705,100,1605,'1605 1c0 -488 -349 -864 -752 -864s-753 376 -753 861v1384h110v-1394c0 -413 300 -727 643 -727c363 0 642 360 642 726v1395h110v-1381'], + 0x2308: [1361,680,390,84,346,'346 1361h-262v-2041h63v1978h199v63'], + 0x2309: [1361,680,390,84,346,'84 1361h262v-2041h-63v1978h-199v63'], + 0x230A: [1361,680,390,84,346,'346 -680h-262v2041h63v-1978h199v-63'], + 0x230B: [1361,680,390,84,346,'84 -680h262v2041h-63v-1978h-199v-63'], + 0x23B4: [755,-497,1352,0,1353,'6 497l-6 6c0 32 1 89 1 122c0 32 -1 88 -1 121l13 9c34 -9 125 -9 185 -9h957c60 0 151 0 185 9l13 -9c0 -33 -2 -89 -2 -121c0 -33 2 -90 2 -122l-6 -6h-26l-5 4v87c0 38 -11 70 -35 70c-37 0 -91 4 -126 4h-957c-35 0 -89 -4 -126 -4c-24 0 -35 -32 -35 -70v-87l-5 -4 h-26'], + 0x23B5: [-217,475,1352,0,1353,'6 -217l-6 -6c0 -32 1 -89 1 -122c0 -32 -1 -88 -1 -121l13 -9c34 9 125 9 185 9h957c60 0 151 0 185 -9l13 9c0 33 -2 89 -2 121c0 33 2 90 2 122l-6 6h-26l-5 -4v-87c0 -38 -11 -70 -35 -70c-37 0 -91 -4 -126 -4h-957c-35 0 -89 4 -126 4c-24 0 -35 32 -35 70v87l-5 4 h-26'], + 0x23DC: [835,-531,1348,0,1349,'28 531l-28 14c55 55 213 290 674 290c462 0 620 -235 675 -290l-28 -14c-159 159 -390 202 -647 202s-487 -43 -646 -202'], + 0x23DD: [-531,835,1348,0,1349,'28 -531l-28 -14c55 -55 213 -290 674 -290c462 0 620 235 675 290l-28 14c-159 -159 -390 -202 -647 -202s-487 43 -646 202'], + 0x23DE: [908,-540,2142,51,2092,'1681 771c369 0 411 -215 411 -226c0 -3 -1 -5 -4 -5c-7 0 -15 13 -17 17c-52 98 -174 133 -387 133h-309c-76 0 -245 30 -303 147c-58 -117 -227 -147 -303 -147h-310c-213 0 -336 -35 -387 -133c-2 -4 -11 -17 -17 -17c-3 0 -4 2 -4 5c0 10 42 226 410 226h305 c242 0 305 136 305 137c0 -1 63 -137 305 -137h305'], + 0x23DF: [-540,908,2142,51,2092,'1681 -771c369 0 411 215 411 226c0 3 -1 5 -4 5c-7 0 -15 -13 -17 -17c-52 -98 -174 -133 -387 -133h-309c-76 0 -245 -30 -303 -147c-58 117 -227 147 -303 147h-310c-213 0 -336 35 -387 133c-2 4 -11 17 -17 17c-3 0 -4 -2 -4 -5c0 -10 42 -226 410 -226h305 c242 0 305 -136 305 -137c0 1 63 137 305 137h305'], + 0x23E0: [755,-545,2055,0,2056,'459 697l-288 -152h-171l381 210h1294l381 -210h-171l-285 152h-1141'], + 0x23E1: [-545,755,2055,0,2056,'459 -697l-288 152h-171l381 -210h1294l381 210h-171l-285 -152h-1141'], + 0x27C5: [1036,495,450,53,397,'397 -495c-157 0 -344 133 -344 401c0 370 218 650 218 1008c0 49 -43 88 -91 88c-28 0 -56 -14 -73 -36c30 -1 50 -24 50 -52c0 -31 -23 -52 -53 -52s-51 21 -51 52c0 69 59 122 127 122s127 -53 127 -122c0 -353 -155 -657 -155 -1008c0 -200 114 -368 245 -368v-33'], + 0x27C6: [1003,528,450,53,397,'397 -127c0 -268 -187 -401 -344 -401v33c131 0 245 168 245 368c0 351 -155 655 -155 1008c0 69 59 122 127 122s127 -53 127 -122c0 -31 -21 -52 -51 -52s-53 21 -53 52c0 28 20 51 50 52c-17 22 -45 36 -73 36c-48 0 -91 -39 -91 -88c0 -358 218 -638 218 -1008'], + 0x27E6: [1023,512,513,84,483,'483 -506l-6 -6c-32 1 -83 2 -116 2h-34l-2 -2c-11 0 -25 1 -40 1c-14 0 -28 -1 -40 -1l-1 2h-35c-32 0 -83 -1 -116 -2l-9 13c9 34 9 125 9 185v1139c0 60 0 151 -9 185l9 13c33 -1 84 -2 116 -2h35l1 2c12 0 26 -1 40 -1c15 0 29 1 40 1l2 -2h34c33 0 84 1 116 2l6 -6 v-26l-4 -5h-76c-38 0 -68 -11 -70 -35c-3 -37 -4 -91 -4 -126v-1139c0 -35 1 -89 4 -126c2 -24 32 -35 70 -35h76l4 -5v-26zM245 -314v1139c0 49 0 118 -5 161c-33 -2 -57 -13 -59 -35c-3 -37 -4 -91 -4 -126v-1139c0 -35 1 -89 4 -126c2 -22 26 -33 59 -35 c5 43 5 112 5 161'], + 0x27E7: [1023,512,513,84,483,'84 -506l6 -6c32 1 83 2 116 2h34l2 -2c11 0 25 1 40 1c14 0 28 -1 40 -1l1 2h35c32 0 83 -1 116 -2l9 13c-9 34 -9 125 -9 185v1139c0 60 0 151 9 185l-9 13c-33 -1 -84 -2 -116 -2h-35l-1 2c-12 0 -26 -1 -40 -1c-15 0 -29 1 -40 1l-2 -2h-34c-33 0 -84 1 -116 2l-6 -6 v-26l4 -5h76c38 0 68 -11 70 -35c3 -37 4 -91 4 -126v-1139c0 -35 -1 -89 -4 -126c-2 -24 -32 -35 -70 -35h-76l-4 -5v-26zM322 -314v1139c0 49 0 118 5 161c33 -2 57 -13 59 -35c3 -37 4 -91 4 -126v-1139c0 -35 -1 -89 -4 -126c-2 -22 -26 -33 -59 -35 c-5 43 -5 112 -5 161'], + 0x27E8: [1362,680,455,53,403,'403 -680h-64l-286 1020l286 1022h64l-260 -1020'], + 0x27E9: [1362,680,455,53,403,'53 -680h64l286 1020l-286 1022h-64l260 -1020'], + 0x27EA: [1362,680,645,53,593,'593 -680h-64l-286 1020l286 1022h64l-260 -1020zM403 -680h-64l-286 1020l286 1022h64l-260 -1020'], + 0x27EB: [1362,680,645,53,593,'53 -680h64l286 1020l-286 1022h-64l260 -1020zM243 -680h64l286 1020l-286 1022h-64l260 -1020'], + 0x29FC: [1262,631,554,50,505,'473 -631c0 0 57 753 -423 891v93c480 138 423 905 423 909l32 -119c0 -234 -3 -585 -326 -833c312 -109 329 -820 326 -823'], + 0x29FD: [1262,631,554,49,505,'82 -631c0 0 -57 753 423 891v93c-480 138 -423 905 -423 909l-32 -119c0 -234 3 -585 326 -833c-312 -109 -329 -820 -326 -823'], + 0x2A00: [1584,792,2737,179,2560,'2560 395c0 -654 -534 -1187 -1192 -1187c-657 0 -1189 533 -1189 1187c0 656 532 1189 1189 1189c658 0 1192 -533 1192 -1189zM2449 395c0 594 -488 1077 -1081 1077c-592 0 -1077 -483 -1077 -1077s485 -1079 1077 -1079c593 0 1081 485 1081 1079zM1542 425 c0 -97 -78 -172 -171 -172c-95 0 -173 75 -173 172c0 93 78 173 173 173c93 0 171 -80 171 -173'], + 0x2A01: [1584,792,2737,179,2560,'2560 395c0 -654 -534 -1187 -1192 -1187c-657 0 -1189 533 -1189 1187c0 656 532 1189 1189 1189c658 0 1192 -533 1192 -1189zM2447 480c-61 538 -473 940 -1020 992v-992h1020zM1305 480v992c-545 -52 -951 -450 -1013 -992h1013zM2449 346h-1022v-1029 c557 51 976 470 1022 1029zM1305 -684v1030h-1014c45 -555 455 -974 1014 -1030'], + 0x2A02: [1584,792,2737,179,2560,'2560 395c0 -654 -534 -1187 -1192 -1187c-657 0 -1189 533 -1189 1187c0 656 532 1189 1189 1189c658 0 1192 -533 1192 -1189zM2449 395c0 259 -89 492 -266 708l-723 -721l707 -707c189 213 282 456 282 720zM2091 1198c-220 182 -464 274 -723 274 c-265 0 -507 -92 -721 -278l718 -719zM2075 -415l-707 706l-704 -710c216 -171 449 -265 704 -265c253 0 492 94 707 269zM1273 383l-717 720c-176 -216 -265 -449 -265 -708c0 -264 92 -503 275 -723'], + 0x2A03: [1725,863,1860,179,1683,'1103 461c0 -97 -78 -172 -171 -172c-95 0 -173 75 -173 172c0 93 78 173 173 173c93 0 171 -80 171 -173zM1683 133c0 -563 -348 -996 -751 -996c-404 0 -753 433 -753 992v1596h109v-1607c0 -477 301 -837 644 -837c363 0 642 414 642 835v1609h109v-1592'], + 0x2A04: [1725,863,1860,178,1684,'1378 390h-405v-398h-87v398h-395v86h395v388h87v-388h405v-86zM1684 132c0 -562 -349 -995 -753 -995c-402 0 -753 433 -753 993v1595h110v-1607c0 -476 301 -838 643 -838c363 0 643 414 643 836v1609h110v-1593'], + 0x2A05: [1700,852,1860,179,1683,'1683 1700h-1504v-2552h112v2406h1281v-2406h111v2552'], + 0x2A06: [1700,852,1860,179,1683,'1683 -852h-1504v2552h112v-2406h1281v2406h111v-2552'], + 0x2A07: [1725,863,1962,86,1877,'977 888c-160 -671 -327 -1255 -501 -1751h-106l555 1954l-86 303l-648 -2257h-105l737 2588h32l124 -448l129 448h30l739 -2588h-105l-649 2257l-88 -303l559 -1954h-107'], + 0x2A08: [1725,863,1962,86,1877,'977 -26c-160 671 -327 1255 -501 1751h-106l555 -1954l-86 -303l-648 2257h-105l737 -2588h32l124 448l129 -448h30l739 2588h-105l-649 -2257l-88 303l559 1954h-107'], + 0x2A09: [1279,641,2277,179,2101,'2101 -550l-94 -91l-868 869l-867 -869l-93 91l868 870l-868 868l93 91l867 -869l868 869l94 -91l-870 -868'], + 0x2A0C: [1808,903,3760,54,3611,'3611 1638c0 -41 -33 -88 -81 -88c-64 0 -148 62 -148 127c0 13 3 26 8 41c-16 18 -44 24 -67 24c-286 0 -267 -751 -278 -913c-20 -302 -37 -604 -70 -904c-26 -241 -88 -828 -449 -828c-95 0 -242 49 -242 170c0 39 12 90 60 90c62 0 147 -66 147 -128 c0 -13 -5 -29 -9 -40c18 -20 44 -27 69 -27c260 0 253 519 258 672c11 332 34 660 53 988c19 275 65 986 481 986c101 0 268 -51 268 -170zM2848 1638c0 -41 -12 -88 -62 -88c-64 0 -146 62 -146 127c0 13 1 26 8 41c-17 18 -46 24 -68 24c-287 0 -267 -751 -278 -913 c-23 -302 -38 -604 -71 -904c-26 -241 -88 -828 -448 -828c-96 0 -243 49 -243 170c0 39 11 90 62 90c61 0 145 -66 145 -128c0 -13 -4 -29 -8 -40c16 -20 44 -27 68 -27c260 0 253 519 259 672c9 332 33 660 53 988c20 275 65 986 481 986c99 0 248 -51 248 -170z M2104 1638c0 -41 -12 -88 -63 -88c-61 0 -145 62 -145 127c0 13 1 26 8 41c-16 18 -45 24 -70 24c-286 0 -265 -751 -276 -913c-22 -302 -38 -604 -71 -904c-27 -241 -88 -828 -447 -828c-98 0 -243 49 -243 170c0 39 10 90 60 90c62 0 146 -66 146 -128 c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c261 0 253 519 260 672c8 332 34 660 54 988c19 275 64 986 481 986c98 0 247 -51 247 -170zM1360 1638c0 -41 -13 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-285 0 -265 -751 -277 -913 c-22 -302 -37 -604 -69 -904c-29 -241 -91 -828 -449 -828c-98 0 -242 49 -242 170c0 39 9 90 59 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 253 519 260 672c8 332 34 660 54 988c19 275 63 986 481 986c98 0 247 -51 247 -170'], + 0x2A0D: [1808,903,1510,54,1361,'785 389c-10 -157 -23 -310 -39 -464c-28 -241 -91 -828 -449 -828c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 253 519 259 672c6 187 16 370 27 555h-402l38 105h374c6 111 10 221 18 329 c18 275 63 985 481 985c98 0 247 -51 247 -170c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-286 0 -265 -751 -276 -912c-8 -111 -14 -223 -21 -336h401l-36 -105h-375zM605 389'], + 0x2A0E: [1808,903,1510,54,1361,'1114 1808c-473 0 -473 -868 -489 -1143h-384l-38 -106h415l-3 -105h-374l-38 -107h402l-27 -513c-6 -153 4 -672 -259 -672c-22 0 -51 7 -67 27c4 11 8 27 8 40c0 62 -83 128 -146 128c-50 0 -60 -51 -60 -90c0 -121 145 -170 243 -170c358 0 449 584 449 828 c0 167 24 268 39 422h375l36 107h-401l2 105h363l36 106h-388c4 72 4 104 8 165c11 161 -10 912 276 912c25 0 51 -6 69 -24c-5 -15 -8 -28 -8 -41c0 -65 84 -127 145 -127c49 0 63 47 63 88c0 119 -149 170 -247 170zM618 561'], + 0x2A0F: [1808,903,1510,54,1361,'796 595l335 343l80 -76l-417 -444c-12 -168 -30 -321 -48 -487c-28 -241 -91 -834 -449 -834c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 254 525 260 678c3 137 15 272 22 409l-327 -325l-78 76 l413 418c9 138 16 272 25 411c18 275 62 979 480 979c98 0 247 -51 247 -170c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-286 0 -265 -746 -276 -907c-6 -77 -15 -162 -20 -240'], + 0x2A10: [1808,903,1510,54,1361,'867 70v-104c-40 -14 -82 -25 -127 -28v-11c-27 -241 -85 -830 -443 -830c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 247 521 251 674c0 39 3 77 3 114c-196 55 -341 238 -341 452 c0 234 170 425 394 460c19 284 89 946 488 946c98 0 247 -51 247 -170c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-274 0 -273 -700 -280 -887c67 -24 130 -65 176 -104l-47 -74c-41 35 -84 62 -137 78 c-16 -239 -28 -479 -54 -719c42 6 80 18 117 34zM621 765c-167 -37 -293 -184 -293 -363c0 -164 104 -299 250 -351c11 239 27 474 43 714'], + 0x2A11: [1808,903,1596,54,1447,'1163 531l-226 -238l46 -46l132 120c-18 -153 -157 -279 -302 -315c45 522 36 567 42 807c8 319 80 883 277 883c28 0 50 -6 71 -24c-9 -16 -28 -43 -28 -62c0 -86 110 -166 190 -166c61 0 82 64 82 115c0 145 -174 203 -291 203c-350 0 -430 -500 -469 -940 c-23 -233 -31 -582 -37 -805c-142 53 -276 191 -276 349l-97 -2c0 -213 173 -395 369 -450c-15 -380 -111 -798 -285 -798c-25 0 -50 7 -68 27c7 19 21 59 21 80c0 84 -97 156 -174 156c-65 0 -86 -64 -86 -118c0 -146 159 -210 285 -210c392 0 444 698 464 850 c199 35 382 202 408 407l116 -107l49 46'], + 0x2A12: [1808,903,1510,54,1361,'818 406c0 -60 -50 -109 -109 -109c-63 0 -110 49 -110 109c0 65 47 117 110 117c59 0 109 -54 109 -117zM650 820v3s46 985 464 985c98 0 247 -51 247 -170c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24 c-286 0 -256 -751 -256 -912v-10h302v-848h-366l-6 -47c-28 -241 -111 -828 -469 -828c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 273 519 276 672l9 236h436v654h-395'], + 0x2A13: [1808,903,1510,54,1361,'821 406c0 -58 -50 -110 -109 -110c-63 0 -111 52 -111 110c0 66 48 118 111 118c59 0 109 -56 109 -118zM605 50c0 -38 -7 -177 -7 -214c-4 -154 -16 -674 -279 -674c-23 0 -52 4 -69 25c4 13 9 29 9 42c0 60 -82 125 -148 125c-48 0 -57 -48 -57 -90 c0 -118 144 -167 242 -167c359 0 445 600 471 839c239 21 422 220 422 466c0 218 -150 401 -349 452c7 188 -22 886 252 886c25 0 48 -4 69 -25c-8 -12 -8 -25 -8 -40c0 -66 81 -127 143 -127c49 0 65 49 65 90c0 119 -150 170 -248 170c-398 0 -457 -770 -476 -1057 c160 59 442 -65 447 -353c4 -230 -229 -441 -479 -348'], + 0x2A14: [1808,903,1510,54,1361,'1030 363c0 -62 -51 -109 -110 -109c-62 0 -110 47 -110 109c0 63 48 115 110 115c59 0 110 -52 110 -115zM611 243c51 -125 169 -210 309 -210c181 0 328 147 328 330c0 180 -147 328 -328 328c-121 0 -224 -62 -283 -158c7 33 10 70 14 114l8 176 c18 272 37 985 454 985c98 0 248 -51 248 -170c0 -41 -16 -90 -65 -90c-62 0 -143 61 -143 127c0 15 0 28 8 40c-21 21 -44 25 -69 25c-286 0 -242 -750 -253 -913v-85c26 4 52 7 81 7c213 0 386 -172 386 -386c0 -212 -173 -388 -386 -388c-59 0 -117 7 -143 28l-7 -81 c-26 -238 -115 -825 -474 -825c-98 0 -242 49 -242 167c0 42 9 90 57 90c66 0 148 -65 148 -125c0 -13 -5 -29 -9 -42c17 -21 46 -25 69 -25c263 0 281 518 285 672'], + 0x2A15: [1808,903,1510,54,1361,'807 414c0 -62 -48 -111 -110 -111c-63 0 -111 49 -111 111s48 114 111 114c62 0 110 -52 110 -114zM1361 1638c0 -41 -16 -90 -65 -90c-62 0 -143 61 -143 127c0 15 0 28 8 40c-21 21 -44 25 -69 25c-274 0 -264 -698 -271 -885c199 -51 349 -235 349 -453 c0 -246 -183 -444 -422 -466c-26 -239 -93 -839 -452 -839c-98 0 -242 49 -242 167c0 42 9 90 57 90c66 0 148 -65 148 -125c0 -13 -5 -29 -9 -42c17 -21 46 -25 69 -25c263 0 257 520 260 674c0 38 4 77 4 114c-199 55 -341 235 -341 452c0 231 168 423 392 460 c18 284 81 946 479 946c98 0 248 -51 248 -170zM586 50c273 -81 490 124 490 352c0 214 -192 409 -446 361c-169 -30 -293 -185 -293 -361c0 -165 101 -306 249 -352'], + 0x2A16: [1808,903,1510,54,1361,'1361 1638c0 -41 -14 -90 -63 -90c-61 0 -145 61 -145 127c0 15 3 28 8 40c-18 21 -44 25 -69 25c-286 0 -273 -750 -273 -913v-7h302v-849h-366l-6 -49c-28 -238 -94 -825 -452 -825c-98 0 -243 49 -243 167c0 42 10 90 60 90c63 0 146 -65 146 -125 c0 -13 -4 -29 -8 -42c16 -21 45 -25 67 -25c263 0 256 518 259 672l6 137h-311v849h360v3c0 272 63 985 481 985c98 0 247 -51 247 -170zM1023 70v653h-212c-14 -219 -27 -436 -47 -653h259zM628 723h-257v-653h216c11 217 25 434 41 653'], + 0x2A17: [1808,903,1958,54,1859,'1054 286h549c85 0 133 -49 133 -138c0 -91 -117 -148 -207 -148v-110c143 0 330 118 330 258c0 240 -208 256 -392 256h-410c7 143 19 283 30 423c12 163 -7 913 278 913c25 0 50 -4 69 -25c-7 -12 -7 -25 -7 -40c0 -66 82 -127 143 -127c49 0 64 49 64 90 c0 119 -150 170 -248 170c-417 0 -464 -713 -479 -985l-26 -419h-594l253 307l-65 73l-421 -440l421 -438l65 65l-253 315h590c-7 -150 -22 -300 -26 -452c-7 -154 4 -672 -257 -672c-25 0 -54 4 -71 25c5 13 9 29 9 42c0 60 -82 125 -147 125c-49 0 -57 -48 -57 -90 c0 -118 143 -167 241 -167c359 0 423 587 448 825c14 122 26 240 37 364'], + 0x2A18: [1808,903,1510,54,1361,'774 256c-36 -514 -89 -1159 -477 -1159c-98 0 -243 49 -243 170c0 39 10 90 60 90c63 0 146 -66 146 -128c0 -13 -4 -29 -8 -40c16 -20 45 -27 67 -27c263 0 253 519 259 672c4 134 32 293 39 422l-396 -404l-85 87l472 461v23l-472 471l85 86l396 -407l16 250 c18 275 63 985 481 985c98 0 247 -51 247 -170c0 -41 -14 -88 -63 -88c-61 0 -145 62 -145 127c0 13 3 26 8 41c-18 18 -44 24 -69 24c-286 0 -265 -751 -276 -912c-6 -81 -15 -165 -19 -247l381 397l85 -86l-475 -471v-23l475 -461l-85 -87'], + 0x2A19: [1808,903,1510,54,1361,'795 723c132 -14 341 -145 341 -327v-567h101v563c-3 229 -223 376 -420 421c11 161 -11 927 275 927c25 0 51 -4 69 -25c-5 -12 -8 -25 -8 -40c0 -66 84 -127 145 -127c49 0 63 49 63 90c0 119 -149 170 -247 170c-418 0 -463 -724 -481 -1000 c-208 -40 -424 -179 -424 -416v-563h101v567c-3 179 165 291 320 327l-52 -890c-6 -153 4 -671 -259 -671c-22 0 -51 4 -67 25c4 13 8 29 8 42c0 60 -83 125 -146 125c-50 0 -60 -48 -60 -90c0 -118 145 -167 243 -167c358 0 434 546 449 789'], + 0x2A1A: [1808,903,1510,54,1361,'620 180c-131 16 -341 147 -341 326v570h-100v-564c2 -230 241 -375 439 -421c-11 -163 -9 -929 -294 -929c-24 0 -52 7 -70 25c6 14 9 26 9 42c0 64 -84 125 -145 125c-50 0 -64 -47 -64 -87c0 -118 149 -170 247 -170c419 0 463 723 482 998c207 41 424 178 424 417 v564h-101v-570c3 -179 -166 -288 -320 -326l52 891c6 152 -4 671 258 671c22 0 51 -6 68 -27c-4 -9 -8 -26 -8 -38c0 -64 82 -129 146 -129c50 0 59 51 59 90c0 120 -145 170 -243 170c-357 0 -433 -547 -449 -789'], + 0x2A1B: [2030,903,1524,54,1375,'1375 1910h-1321v120h1321v-120zM1372 1638c0 -41 -15 -88 -63 -88c-62 0 -145 62 -145 127c0 13 1 26 7 41c-18 18 -44 24 -69 24c-286 0 -265 -751 -277 -912c-23 -303 -36 -605 -69 -905c-27 -241 -92 -828 -449 -828c-98 0 -243 49 -243 170c0 39 11 90 59 90 c64 0 148 -66 148 -128c0 -13 -4 -29 -8 -40c16 -20 44 -27 67 -27c261 0 253 519 258 672c10 332 34 660 56 989c18 275 62 985 480 985c98 0 248 -51 248 -170'], + 0x2A1C: [2030,903,1524,54,1375,'54 -782h1321v-121h-1321v121zM59 -511c0 42 13 89 63 89c61 0 145 -62 145 -127c0 -14 -3 -26 -8 -42c18 -18 44 -23 69 -23c285 0 265 750 276 912c23 302 38 605 70 905c28 240 91 827 449 827c97 0 242 -48 242 -170c0 -38 -9 -89 -59 -89c-63 0 -146 66 -146 128 c0 12 4 29 8 40c-16 19 -45 26 -68 26c-262 0 -252 -519 -258 -672c-9 -331 -35 -661 -55 -988c-19 -275 -63 -985 -481 -985c-98 0 -247 51 -247 169'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size2/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size3/Regular/Main.js new file mode 100644 index 0000000..e1959a8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size3/Regular/Main.js @@ -0,0 +1,102 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'AsanaMathJax_Size3', + id: 'ASANAMATHSIZE3', + 0x20: [0,0,249,0,0,''], + 0x28: [1701,851,441,84,402,'402 -797l-15 -54c-57 105 -303 405 -303 1276c0 872 246 1172 303 1276l15 -54c-167 -300 -212 -736 -212 -1222s45 -922 212 -1222'], + 0x29: [1701,851,441,40,358,'40 -797l15 -54c57 105 303 405 303 1276c0 872 -246 1172 -303 1276l-15 -54c167 -300 212 -736 212 -1222s-45 -922 -212 -1222'], + 0x5B: [1710,846,381,84,352,'352 -840l-6 -6c-32 0 -94 2 -126 2s-94 -2 -126 -2l-10 12c10 34 10 126 10 186v2160c0 60 0 150 -10 184l10 14c32 -2 94 -2 126 -2s94 0 126 2l6 -6v-26l-4 -6h-96c-38 0 -68 -10 -70 -34c-4 -38 -4 -92 -4 -126v-2160c0 -36 0 -90 4 -126c2 -24 32 -36 70 -36h96 l4 -4v-26'], + 0x5D: [1710,846,381,84,352,'84 -840l6 -6c32 0 94 2 126 2s94 -2 126 -2l10 12c-10 34 -10 126 -10 186v2160c0 60 0 150 10 184l-10 14c-32 -2 -94 -2 -126 -2s-94 0 -126 2l-6 -6v-26l4 -6h96c38 0 68 -10 70 -34c4 -38 4 -92 4 -126v-2160c0 -36 0 -90 -4 -126c-2 -24 -32 -36 -70 -36h-96l-4 -4 v-26'], + 0x7B: [1697,855,590,51,541,'541 1693c0 -38 -199 -32 -199 -490v-446c0 -91 -21 -260 -196 -336c175 -76 196 -245 196 -336v-446c0 -214 46 -395 170 -463c12 -7 29 -16 29 -26c0 -4 -3 -5 -7 -5c-14 0 -279 57 -279 496v444c0 270 -203 336 -204 336c1 0 204 66 204 336v444 c0 433 256 496 279 496c4 0 7 -1 7 -4'], + 0x7C: [1219,678,270,86,185,'185 -678h-99v1897h99v-1897'], + 0x7D: [1697,855,590,50,540,'50 1693c0 -38 199 -32 199 -490v-446c0 -91 21 -260 196 -336c-175 -76 -196 -245 -196 -336v-446c0 -214 -46 -395 -170 -463c-12 -7 -29 -16 -29 -26c0 -4 3 -5 7 -5c14 0 279 57 279 496v444c0 270 203 336 204 336c-1 0 -204 66 -204 336v444 c0 433 -256 496 -279 496c-4 0 -7 -1 -7 -4'], + 0x302: [783,-627,1055,0,1055,'1055 627l-528 93l-527 -93v47l527 109l528 -109v-47'], + 0x303: [772,-642,1402,0,1403,'1403 772c-54 -99 -289 -130 -449 -130c-170 0 -471 67 -612 67c-104 0 -276 -10 -310 -67h-32c54 99 289 130 449 130c167 0 466 -67 607 -67c104 0 281 10 316 67h31'], + 0x305: [587,-542,1126,0,1127,'1127 542h-1127v45h1127v-45'], + 0x306: [664,-506,921,0,922,'0 664h99c10 -57 161 -98 362 -98s352 41 362 98h99c-9 -44 -28 -66 -80 -93c-78 -42 -216 -65 -381 -65c-175 0 -316 25 -396 71c-41 26 -56 46 -65 87'], + 0x30C: [792,-627,1473,0,1474,'1474 792l-737 -101l-737 101v-47l736 -118l738 118v47'], + 0x332: [-130,175,1126,0,1127,'1127 -175h-1127v45h1127v-45'], + 0x333: [-130,283,1126,0,1127,'1127 -283h-1127v45h1127v-45zM1127 -175h-1127v45h1127v-45'], + 0x33F: [695,-542,1126,0,1127,'1127 650h-1127v45h1127v-45zM1127 542h-1127v45h1127v-45'], + 0x2016: [1219,678,539,86,454,'454 -678h-99v1897h99v-1897zM185 -678h-99v1897h99v-1897'], + 0x2044: [1037,758,491,-180,494,'494 1034l-565 -1792h-109l565 1795'], + 0x2045: [1435,893,375,48,319,'170 174c15 26 46 48 79 48h65l5 17v64l-5 14h-65c-33 0 -64 14 -79 40v795c0 85 4 123 15 145c16 26 45 43 80 43h49l5 11v67l-7 17h-252c-6 -25 -7 -53 -7 -90c0 -67 6 -162 6 -290v-1589c0 -174 -4 -246 -11 -324l12 -35h252l7 17v67l-5 11h-49c-35 0 -64 17 -80 43 c-11 22 -15 59 -15 141v788'], + 0x2046: [1435,893,385,14,285,'163 174c-15 26 -46 48 -79 48h-65l-5 17v64l5 14h65c33 0 64 14 79 40v795c0 85 -4 123 -15 145c-16 26 -45 43 -80 43h-49l-5 11v67l7 17l130 -8l122 8c6 -25 7 -53 7 -90c0 -67 -6 -162 -6 -290v-1589c0 -174 4 -246 11 -324l-12 -35l-122 3l-130 -3l-7 17v67l5 11h49 c35 0 64 17 80 43c11 22 15 59 15 141v788'], + 0x20D6: [790,-520,1878,0,1878,'1878 636h-1806l79 -96l-21 -20l-130 134l130 136l21 -20l-79 -96l1806 -1v-37'], + 0x20D7: [790,-520,1878,0,1878,'1806 636h-1806v37l1806 1l-79 96l21 20l130 -136l-130 -134l-21 20'], + 0x220F: [1868,929,2968,161,2809,'2809 -929c-49 28 -529 39 -578 39c-45 0 -500 -11 -540 -33l-3 114c136 3 247 49 329 158c75 95 65 982 65 1080c0 94 6 1253 6 1253h-1189s-18 -1168 -18 -1259c0 -95 -14 -979 61 -1080c82 -103 198 -149 335 -152v-120c-47 28 -528 39 -580 39 c-50 0 -485 -11 -533 -33l-3 114c137 3 241 49 326 158c75 95 75 991 70 1086c0 93 22 1106 -56 1199c-86 104 -200 116 -337 116l6 115c989 -7 1417 -13 2639 3v-118c-142 8 -241 -15 -326 -116c-81 -96 -74 -1117 -74 -1205c0 -98 -11 -985 69 -1086 c79 -103 198 -149 331 -152v-120'], + 0x2210: [1868,929,2968,161,2809,'2809 1868c-49 -26 -529 -36 -578 -36c-45 0 -500 10 -540 33l-3 -115c136 -5 247 -48 329 -157c75 -98 65 -984 65 -1083c0 -91 6 -1250 6 -1250h-1189s-18 1168 -18 1257c0 95 -14 978 61 1080c82 105 198 148 335 153v118c-47 -26 -528 -36 -580 -36 c-50 0 -485 10 -533 33l-3 -115c137 -5 241 -48 326 -157c75 -98 75 -994 70 -1089c0 -91 22 -1103 -56 -1197c-86 -103 -200 -116 -337 -116l6 -114c989 7 1417 13 2639 -6v120c-142 -10 -241 14 -326 116c-81 95 -74 1116 -74 1203c0 99 -11 985 69 1087 c79 105 198 148 331 153v118'], + 0x2211: [1852,924,2539,184,2353,'2353 39h-125c-36 -261 -97 -434 -198 -523c-95 -85 -263 -128 -502 -128h-889l926 1191l-831 1146h752c223 0 382 -56 490 -165c96 -108 168 -283 210 -528h108l-42 820h-2055l1057 -1455l-1070 -1321h2121'], + 0x221A: [2543,0,995,63,1027,'1027 2543l-444 -2543l-376 1019l-131 -52l-13 24l241 122l270 -746l393 2176h60'], + 0x2229: [1725,863,1860,178,1684,'1684 730c0 562 -349 995 -753 995c-402 0 -753 -433 -753 -992v-1596h110v1607c0 477 301 838 643 838c363 0 643 -414 643 -835v-1610h110v1593'], + 0x222B: [2314,1156,1726,54,1727,'1727 2097c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-366 0 -321 -868 -336 -1097c-32 -430 -54 -860 -100 -1287c-40 -343 -123 -1002 -581 -1002c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164 c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 306 573 315 790c13 472 50 938 78 1407c26 390 90 1190 625 1190c125 0 316 -65 316 -217'], + 0x222C: [2314,1156,2828,54,2679,'2679 2097c0 -53 -15 -113 -81 -113c-78 0 -185 79 -185 163c0 16 1 33 10 52c-22 23 -59 31 -90 31c-366 0 -388 -962 -400 -1168c-28 -387 -48 -774 -90 -1158c-36 -309 -66 -1060 -526 -1060c-125 0 -311 63 -311 218c0 50 13 115 77 115c79 0 187 -85 187 -164 c0 -17 -5 -37 -10 -51c20 -26 57 -35 85 -35c334 0 276 665 284 861c11 425 44 844 70 1266c24 351 130 1260 664 1260c125 0 316 -65 316 -217zM1727 2097c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31 c-366 0 -292 -962 -305 -1168c-29 -387 -49 -774 -90 -1158c-36 -309 -164 -1060 -622 -1060c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 371 665 379 861c12 425 45 844 71 1266 c23 351 33 1260 568 1260c125 0 316 -65 316 -217'], + 0x222D: [2314,1156,3780,54,3631,'3631 2097c0 -53 -16 -113 -79 -113c-82 0 -187 79 -187 163c0 16 1 33 10 52c-21 23 -58 31 -87 31c-367 0 -343 -962 -357 -1168c-28 -387 -46 -774 -89 -1158c-33 -309 -113 -1060 -574 -1060c-123 0 -311 63 -311 218c0 50 14 115 80 115c76 0 185 -85 185 -164 c0 -17 -5 -37 -11 -51c21 -26 57 -35 88 -35c333 0 324 665 332 861c11 425 41 844 67 1266c25 351 83 1260 615 1260c128 0 318 -65 318 -217zM2679 2097c0 -53 -15 -113 -81 -113c-78 0 -185 79 -185 163c0 16 1 33 10 52c-22 23 -59 31 -90 31 c-366 0 -340 -962 -353 -1168c-28 -387 -48 -774 -90 -1158c-36 -309 -113 -1060 -573 -1060c-125 0 -311 63 -311 218c0 50 13 115 77 115c79 0 187 -85 187 -164c0 -17 -5 -37 -10 -51c20 -26 57 -35 85 -35c334 0 324 665 332 861c11 425 44 844 70 1266 c23 351 82 1260 616 1260c125 0 316 -65 316 -217zM1727 2097c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-366 0 -339 -962 -353 -1168c-29 -387 -48 -774 -90 -1158c-36 -309 -116 -1060 -574 -1060c-126 0 -311 63 -311 218 c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 324 665 332 861c12 425 45 844 70 1266c24 351 81 1260 616 1260c125 0 316 -65 316 -217'], + 0x222E: [2314,1156,1876,54,1727,'1727 2097c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-350 0 -337 -897 -346 -1136c258 -63 451 -300 451 -580c0 -312 -239 -567 -542 -594v-14c-36 -309 -122 -1062 -580 -1062c-126 0 -311 63 -311 218 c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 329 668 333 863c1 49 5 99 5 147c-251 70 -437 304 -437 577c0 300 218 544 505 589c24 365 101 1211 612 1211c125 0 316 -65 316 -217zM1363 514c0 213 -140 394 -336 452 c-21 -305 -37 -613 -69 -920c229 32 405 233 405 468zM792 979c-213 -47 -374 -235 -374 -465c0 -209 132 -382 320 -449c13 307 33 608 54 914'], + 0x222F: [2314,1156,2828,54,2679,'2679 2097c0 -53 -15 -113 -81 -113c-78 0 -185 79 -185 163c0 16 1 33 6 52c-18 23 -55 31 -86 31c-357 0 -336 -925 -345 -1151c233 -81 463 -266 463 -557c0 -324 -276 -545 -552 -595l-4 -21c-34 -308 -118 -1062 -578 -1062c-125 0 -311 63 -311 218 c0 50 13 115 77 115c79 0 187 -85 187 -164c0 -17 -5 -37 -10 -51c20 -26 57 -35 85 -35c334 0 328 668 332 863c1 43 1 85 7 128h-740v-12c-36 -308 -121 -1062 -579 -1062c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51 c21 -26 58 -35 86 -35c337 0 328 668 332 863c1 53 5 108 7 161c-236 81 -461 282 -461 571c0 318 258 516 527 576c24 361 97 1216 613 1216c125 0 316 -65 316 -217c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31 c-340 0 -339 -860 -347 -1119h715c23 365 106 1203 613 1203c125 0 316 -65 316 -217zM2313 522c0 218 -168 356 -335 429c-21 -298 -38 -597 -69 -894c205 54 404 221 404 465zM1742 987h-713c-24 -314 -40 -632 -73 -943h732c14 311 33 629 54 943zM791 967 c-195 -61 -384 -209 -384 -445c0 -212 166 -365 330 -439c13 294 33 588 54 884'], + 0x2230: [2314,1156,3780,54,3631,'3631 2097c0 -53 -16 -113 -79 -113c-82 0 -187 79 -187 163c0 16 1 33 7 52c-18 23 -55 31 -84 31c-358 0 -321 -830 -331 -1081c257 -90 447 -336 447 -627c0 -324 -239 -598 -548 -653l-2 -23c-39 -343 -125 -1002 -586 -1002c-123 0 -311 63 -311 218 c0 50 14 115 80 115c76 0 185 -85 185 -164c0 -17 -5 -37 -11 -51c21 -26 57 -35 88 -35c371 0 301 701 320 932h-719l-3 -13c-68 -338 -120 -1002 -580 -1002c-125 0 -311 63 -311 218c0 50 13 115 77 115c79 0 187 -85 187 -164c0 -17 -5 -37 -10 -51 c20 -26 57 -35 85 -35c376 0 296 717 322 932h-716v-13c-40 -343 -128 -1002 -586 -1002c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 310 573 315 790c1 59 5 120 8 179 c-263 89 -445 337 -445 626c0 318 219 581 518 648c26 401 106 1144 622 1144c125 0 316 -65 316 -217c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-340 0 -321 -758 -330 -1046h689c31 406 115 1130 622 1130 c125 0 316 -65 316 -217c0 -53 -15 -113 -81 -113c-78 0 -185 79 -185 163c0 16 1 33 10 52c-22 23 -59 31 -90 31c-339 0 -327 -758 -334 -1046h693c29 406 114 1130 621 1130c128 0 318 -65 318 -217zM3264 522c0 218 -131 403 -319 485c-20 -332 -42 -664 -73 -994 c226 60 392 265 392 509zM2684 1047h-692c-26 -349 -46 -703 -80 -1048h712c17 345 40 699 60 1048zM1732 1047h-686c-27 -349 -45 -703 -81 -1048h707c16 349 37 699 60 1048zM781 1024c-216 -67 -374 -266 -374 -502c0 -212 132 -398 314 -480c15 327 37 654 60 982'], + 0x2231: [2314,1156,1875,54,1726,'736 -210c-4 -195 -7 -863 -344 -863c-28 0 -65 9 -86 35c5 14 10 34 10 51c0 79 -106 164 -186 164c-64 0 -76 -65 -76 -115c0 -155 184 -218 310 -218c458 0 555 753 592 1062v14l13 126c31 307 47 615 68 920c180 -54 313 -210 335 -402l-176 158l-59 -55l286 -309 l276 309l-61 55l-146 -134c-29 250 -211 448 -446 506c9 239 -15 1136 335 1136c32 0 66 -8 89 -31c-7 -19 -11 -36 -11 -52c0 -84 108 -163 186 -163c64 0 81 60 81 113c0 152 -191 217 -316 217c-510 0 -577 -846 -600 -1211c-288 -45 -506 -289 -506 -589h124 c0 230 161 418 374 465c-21 -306 -40 -607 -54 -914c0 -46 -11 -226 -12 -275'], + 0x2232: [2314,1156,1963,141,1814,'1787 667l-208 -226c-33 -278 -256 -495 -536 -521v-14c-36 -309 -133 -1062 -591 -1062c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 340 668 344 863c1 49 5 99 5 147 c-251 70 -437 304 -437 577c0 300 218 544 505 589c24 365 90 1211 601 1211c125 0 316 -65 316 -217c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-350 0 -326 -897 -335 -1136c235 -58 418 -256 445 -506l146 134zM1460 564 c-22 192 -155 348 -335 402c-21 -305 -37 -613 -69 -920c196 27 357 180 396 372l-227 249l59 55zM890 979c-213 -47 -374 -235 -374 -465c0 -209 132 -382 320 -449c14 307 33 608 54 914'], + 0x2233: [2314,1156,1876,54,1727,'1700 367l-62 -59l-146 134c-30 -278 -256 -496 -536 -522v-14c-36 -309 -133 -1062 -591 -1062c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 340 668 344 863c1 49 5 99 5 147 c-251 70 -437 304 -437 577c0 300 218 544 505 589c24 365 90 1211 601 1211c125 0 316 -65 316 -217c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-350 0 -326 -897 -335 -1136c235 -58 415 -256 445 -505zM1373 468l-176 -160 l-59 59l227 246c-38 168 -165 305 -327 353c-21 -305 -37 -613 -69 -920c216 32 380 205 404 422zM803 979c-213 -47 -374 -235 -374 -465c0 -209 132 -382 320 -449c14 307 33 608 54 914'], + 0x22C3: [1725,863,1860,178,1684,'1684 132c0 -562 -349 -995 -753 -995c-402 0 -753 433 -753 993v1595h110v-1607c0 -476 301 -838 643 -838c363 0 643 414 643 836v1609h110v-1593'], + 0x2308: [1701,851,390,86,348,'348 1701h-262v-2552h62v2488h200v64'], + 0x2309: [1701,851,390,86,348,'86 1701h262v-2552h-62v2488h-200v64'], + 0x230A: [1701,851,390,86,348,'348 -851h-262v2552h62v-2488h200v-64'], + 0x230B: [1701,851,390,86,348,'86 -851h262v2552h-62v-2488h-200v-64'], + 0x23B4: [755,-487,1689,0,1690,'6 487l-6 6c0 32 2 94 2 126s-2 94 -2 126l12 10c34 -10 126 -10 186 -10h1294c60 0 150 0 184 10l14 -10c-2 -32 -2 -94 -2 -126s0 -94 2 -126l-6 -6h-26l-6 4v96c0 38 -10 68 -34 70c-38 4 -92 4 -126 4h-1294c-36 0 -90 0 -126 -4c-24 -2 -36 -32 -36 -70v-96l-4 -4 h-26'], + 0x23B5: [-207,475,1689,0,1690,'6 -207l-6 -6c0 -32 2 -94 2 -126s-2 -94 -2 -126l12 -10c34 10 126 10 186 10h1294c60 0 150 0 184 -10l14 10c-2 32 -2 94 -2 126s0 94 2 126l-6 6h-26l-6 -4v-96c0 -38 -10 -68 -34 -70c-38 -4 -92 -4 -126 -4h-1294c-36 0 -90 0 -126 4c-24 2 -36 32 -36 70v96l-4 4 h-26'], + 0x23DC: [848,-530,1685,0,1686,'35 530l-35 15c69 57 267 303 843 303s775 -246 843 -303l-35 -15c-199 167 -487 212 -808 212s-609 -45 -808 -212'], + 0x23DD: [-530,848,1685,0,1686,'35 -530l-35 -15c69 -57 267 -303 843 -303s775 246 843 303l-35 15c-199 -167 -487 -212 -808 -212s-609 45 -808 212'], + 0x23DE: [1035,-545,2653,51,2603,'2599 545c-37 0 -31 199 -490 199h-446c-91 0 -260 21 -336 196c-76 -175 -245 -196 -336 -196h-446c-214 0 -395 -46 -463 -170c-7 -12 -16 -29 -26 -29c-4 0 -5 3 -5 7c0 14 57 279 496 279h444c270 0 336 203 336 204c0 -1 66 -204 336 -204h444 c432 0 496 -256 496 -279c0 -4 -1 -7 -4 -7'], + 0x23DF: [-545,1035,2653,51,2603,'2599 -545c-37 0 -31 -199 -490 -199h-446c-91 0 -260 -21 -336 -196c-76 175 -245 196 -336 196h-446c-214 0 -395 46 -463 170c-7 12 -16 29 -26 29c-4 0 -5 -3 -5 -7c0 -14 57 -279 496 -279h444c270 0 336 -203 336 -204c0 1 66 204 336 204h444 c432 0 496 256 496 279c0 4 -1 7 -4 7'], + 0x23E0: [755,-545,3107,0,3108,'694 697l-436 -152h-258l576 210h1956l576 -210h-258l-431 152h-1725'], + 0x23E1: [-545,755,3107,0,3108,'694 -697l-436 152h-258l576 -210h1956l576 210h-258l-431 -152h-1725'], + 0x27C5: [1291,750,450,53,397,'397 -750c-157 0 -344 182 -344 547c0 503 218 885 218 1372c0 49 -43 88 -91 88c-28 0 -56 -14 -73 -36c30 -1 50 -24 50 -52c0 -31 -23 -52 -53 -52s-51 21 -51 52c0 69 59 122 127 122s127 -53 127 -122c0 -481 -155 -895 -155 -1372c0 -274 114 -514 245 -514v-33'], + 0x27C6: [1258,783,450,53,397,'397 -236c0 -365 -187 -547 -344 -547v33c131 0 245 240 245 514c0 477 -155 891 -155 1372c0 69 59 122 127 122s127 -53 127 -122c0 -31 -21 -52 -51 -52s-53 21 -53 52c0 28 20 51 50 52c-17 22 -45 36 -73 36c-48 0 -91 -39 -91 -88c0 -487 218 -869 218 -1372'], + 0x27E6: [1363,682,523,84,494,'494 -676l-6 -6c-32 0 -88 2 -122 2h-28l-2 -2c-12 0 -28 1 -44 1c-18 0 -34 -1 -46 -1l-2 2h-30c-32 0 -88 -2 -120 -2l-10 13c10 34 10 125 10 185v1649c0 60 0 151 -10 185l10 13c32 0 88 -2 120 -2h30l2 2c12 0 28 -1 46 -1c16 0 32 1 44 1l2 -2h28c34 0 90 2 122 2 l6 -6v-26l-4 -5h-86c-38 0 -70 -11 -70 -35c0 -37 -4 -91 -4 -126v-1649c0 -35 4 -89 4 -126c0 -24 32 -35 70 -35h86l4 -5v-26zM246 -484v1649c0 49 0 118 -6 161c-32 0 -58 -13 -58 -35c0 -37 -4 -91 -4 -126v-1649c0 -35 4 -89 4 -126c0 -22 26 -35 58 -35 c6 43 6 112 6 161'], + 0x27E7: [1363,682,523,84,494,'84 -676l6 -6c32 0 88 2 122 2h28l2 -2c12 0 28 1 44 1c18 0 34 -1 46 -1l2 2h30c32 0 88 -2 120 -2l10 13c-10 34 -10 125 -10 185v1649c0 60 0 151 10 185l-10 13c-32 0 -88 -2 -120 -2h-30l-2 2c-12 0 -28 -1 -46 -1c-16 0 -32 1 -44 1l-2 -2h-28c-34 0 -90 2 -122 2 l-6 -6v-26l4 -5h86c38 0 70 -11 70 -35c0 -37 4 -91 4 -126v-1649c0 -35 -4 -89 -4 -126c0 -24 -32 -35 -70 -35h-86l-4 -5v-26zM332 -484v1649c0 49 0 118 6 161c32 0 58 -13 58 -35c0 -37 4 -91 4 -126v-1649c0 -35 -4 -89 -4 -126c0 -22 -26 -35 -58 -35 c-6 43 -6 112 -6 161'], + 0x27E8: [1702,850,471,53,419,'419 -850h-67l-299 1276l298 1276h68l-272 -1274'], + 0x27E9: [1702,850,471,53,419,'53 -850h67l299 1276l-298 1276h-68l272 -1274'], + 0x27EA: [1702,850,665,53,613,'613 -850h-67l-299 1276l298 1276h68l-272 -1274zM419 -850h-67l-299 1276l298 1276h68l-272 -1274'], + 0x27EB: [1702,850,665,53,613,'53 -850h67l299 1276l-298 1276h-68l272 -1274zM247 -850h67l299 1276l-298 1276h-68l272 -1274'], + 0x29FC: [1577,789,589,55,535,'499 -789c0 0 60 941 -444 1114v116c504 173 443 1131 443 1136l37 -149c0 -292 -6 -731 -345 -1041c328 -136 348 -1025 345 -1029'], + 0x29FD: [1577,789,589,54,535,'91 -789c0 0 -60 941 444 1114v116c-504 173 -443 1131 -443 1136l-37 -149c0 -292 6 -731 345 -1041c-328 -136 -348 -1025 -345 -1029'], + 0x2A0C: [2314,1156,4730,54,4581,'4581 2097c0 -53 -15 -113 -77 -113c-82 0 -189 79 -189 163c0 16 4 33 10 52c-20 23 -56 31 -86 31c-366 0 -341 -962 -356 -1168c-25 -387 -48 -774 -90 -1158c-33 -309 -112 -1060 -574 -1060c-121 0 -311 63 -311 218c0 50 17 115 78 115c80 0 187 -85 187 -164 c0 -17 -5 -37 -10 -51c23 -26 56 -35 88 -35c333 0 324 665 332 861c12 425 41 844 66 1266c24 351 84 1260 616 1260c129 0 316 -65 316 -217zM3631 2097c0 -53 -16 -113 -79 -113c-82 0 -187 79 -187 163c0 16 1 33 10 52c-21 23 -58 31 -87 31 c-367 0 -343 -962 -357 -1168c-28 -387 -46 -774 -89 -1158c-33 -309 -113 -1060 -574 -1060c-123 0 -311 63 -311 218c0 50 14 115 80 115c76 0 185 -85 185 -164c0 -17 -5 -37 -11 -51c21 -26 57 -35 88 -35c333 0 324 665 332 861c11 425 41 844 67 1266 c25 351 83 1260 615 1260c128 0 318 -65 318 -217zM2679 2097c0 -53 -15 -113 -81 -113c-78 0 -185 79 -185 163c0 16 1 33 10 52c-22 23 -59 31 -90 31c-366 0 -340 -962 -353 -1168c-28 -387 -48 -774 -90 -1158c-36 -309 -113 -1060 -573 -1060c-125 0 -311 63 -311 218 c0 50 13 115 77 115c79 0 187 -85 187 -164c0 -17 -5 -37 -10 -51c20 -26 57 -35 85 -35c334 0 324 665 332 861c11 425 44 844 70 1266c23 351 82 1260 616 1260c125 0 316 -65 316 -217zM1727 2097c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52 c-23 23 -57 31 -89 31c-366 0 -339 -962 -353 -1168c-29 -387 -48 -774 -90 -1158c-36 -309 -116 -1060 -574 -1060c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 324 665 332 861 c12 425 45 844 70 1266c24 351 81 1260 616 1260c125 0 316 -65 316 -217'], + 0x2A0D: [2314,1156,1876,54,1727,'990 498c-14 -201 -30 -397 -51 -594c-36 -309 -116 -1060 -574 -1060c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 324 665 332 861c7 238 20 473 34 710h-514l48 134h479c7 142 13 284 23 422 c24 351 81 1260 616 1260c125 0 316 -65 316 -217c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-366 0 -339 -962 -353 -1168c-10 -142 -18 -284 -27 -430h513l-46 -134h-479zM759 498'], + 0x2A0E: [2314,1156,1876,54,1727,'1411 2314c-606 0 -607 -1111 -626 -1462h-492l-48 -136h531l-4 -134h-479l-48 -137h514l-34 -657c-8 -196 5 -861 -332 -861c-28 0 -65 9 -86 35c5 14 10 34 10 51c0 79 -106 164 -186 164c-64 0 -77 -65 -77 -115c0 -155 185 -218 311 -218c458 0 574 748 574 1060 c0 213 32 344 51 541h479l46 137h-513l3 134h464l46 136h-496c4 91 4 133 10 210c14 206 -13 1168 353 1168c32 0 66 -8 89 -31c-7 -19 -10 -36 -10 -52c0 -84 107 -163 185 -163c63 0 81 60 81 113c0 152 -191 217 -316 217zM776 718'], + 0x2A0F: [2314,1156,1876,54,1727,'1003 762l429 439l102 -98l-533 -568c-15 -214 -38 -411 -61 -624c-36 -309 -117 -1067 -575 -1067c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 325 673 333 868c4 176 19 348 29 523 l-420 -416l-99 98l527 535c12 176 21 349 33 526c23 351 80 1253 615 1253c125 0 316 -65 316 -217c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-366 0 -339 -954 -352 -1160c-8 -100 -20 -208 -27 -308'], + 0x2A10: [2314,1156,1876,54,1727,'1095 90v-133c-52 -19 -106 -32 -163 -37v-14c-36 -309 -109 -1062 -567 -1062c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 316 668 321 863c1 49 4 99 4 147c-251 70 -436 304 -436 577 c0 300 218 544 505 589c23 365 113 1211 624 1211c125 0 316 -65 316 -217c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-350 0 -350 -897 -359 -1136c87 -30 168 -83 226 -132l-59 -96c-53 45 -109 80 -176 100 c-20 -305 -37 -613 -69 -920c53 8 103 23 150 44zM779 979c-213 -47 -374 -235 -374 -465c0 -209 132 -382 320 -449c14 307 34 608 54 914'], + 0x2A11: [2314,1156,1986,54,1837,'1473 680l-290 -306l60 -58l169 155c-23 -197 -201 -359 -387 -405c58 668 46 727 54 1034c10 408 102 1130 355 1130c35 0 64 -8 91 -31c-12 -20 -36 -55 -36 -79c0 -110 140 -213 243 -213c78 0 105 82 105 147c0 186 -223 260 -373 260c-448 0 -550 -640 -600 -1203 c-29 -298 -40 -745 -48 -1030c-181 68 -353 244 -353 447l-124 -3c0 -272 222 -506 473 -576c-20 -486 -143 -1022 -365 -1022c-32 0 -64 9 -87 35c9 24 27 75 27 102c0 108 -125 200 -223 200c-83 0 -110 -82 -110 -151c0 -187 203 -269 365 -269c501 0 568 894 593 1088 c256 45 490 259 523 521l149 -137l62 58'], + 0x2A12: [2314,1156,1876,54,1727,'1032 520c0 -77 -64 -140 -140 -140c-80 0 -141 63 -141 140c0 82 61 149 141 149c76 0 140 -69 140 -149zM817 1050v4s59 1260 594 1260c125 0 316 -65 316 -217c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31 c-366 0 -327 -962 -327 -1168v-12h386v-1086h-468l-8 -60c-36 -309 -142 -1060 -600 -1060c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 349 665 354 861l11 301h557v837h-505'], + 0x2A13: [2314,1156,1876,54,1727,'1035 520c0 -75 -64 -142 -139 -142c-80 0 -141 67 -141 142c0 84 61 151 141 151c75 0 139 -72 139 -151zM759 64c0 -49 -9 -226 -9 -275c-4 -197 -20 -862 -357 -862c-29 0 -67 5 -88 32c5 17 11 37 11 54c0 77 -105 160 -189 160c-62 0 -73 -61 -73 -115 c0 -151 184 -214 310 -214c459 0 569 768 603 1073c305 28 540 283 540 597c0 279 -193 514 -447 580c9 239 -28 1133 322 1133c32 0 62 -5 89 -32c-10 -15 -10 -32 -10 -51c0 -84 103 -163 183 -163c62 0 83 63 83 116c0 152 -192 217 -318 217 c-509 0 -584 -986 -609 -1353c205 76 567 -83 572 -452c5 -295 -293 -564 -613 -445'], + 0x2A14: [2314,1156,1876,54,1727,'1302 465c0 -80 -63 -139 -140 -139c-79 0 -140 59 -140 139s61 146 140 146c77 0 140 -66 140 -146zM767 310c66 -160 217 -268 395 -268c231 0 419 188 419 423c0 231 -188 420 -419 420c-154 0 -287 -80 -362 -202c8 41 13 88 17 145l11 226c23 347 48 1260 581 1260 c126 0 318 -65 318 -217c0 -53 -21 -116 -83 -116c-80 0 -183 79 -183 163c0 19 0 36 10 51c-27 27 -57 32 -89 32c-366 0 -310 -960 -323 -1169v-108c33 5 66 9 103 9c274 0 494 -221 494 -494c0 -271 -220 -497 -494 -497c-75 0 -149 9 -183 36l-10 -103 c-33 -306 -146 -1057 -605 -1057c-126 0 -310 63 -310 214c0 54 11 115 73 115c84 0 189 -83 189 -160c0 -17 -6 -37 -11 -54c21 -27 59 -32 88 -32c337 0 360 663 365 861'], + 0x2A15: [2314,1156,1876,54,1727,'1018 530c0 -79 -62 -142 -141 -142c-81 0 -142 63 -142 142s61 146 142 146c79 0 141 -67 141 -146zM1727 2097c0 -53 -21 -116 -83 -116c-80 0 -183 79 -183 163c0 19 0 36 10 51c-27 27 -57 32 -89 32c-350 0 -337 -894 -346 -1133c254 -66 447 -301 447 -580 c0 -314 -235 -568 -540 -596c-34 -305 -120 -1074 -579 -1074c-126 0 -310 63 -310 214c0 54 11 115 73 115c84 0 189 -83 189 -160c0 -17 -6 -37 -11 -54c21 -27 59 -32 88 -32c337 0 329 666 333 863c0 49 5 99 5 147c-255 70 -437 300 -437 577c0 297 215 542 502 589 c24 364 104 1211 613 1211c126 0 318 -65 318 -217zM735 64c349 -103 626 159 626 450c0 275 -244 523 -569 463c-217 -39 -376 -237 -376 -463c0 -210 129 -391 319 -450'], + 0x2A16: [2314,1156,1876,54,1727,'1727 2097c0 -53 -18 -116 -81 -116c-78 0 -185 79 -185 163c0 19 3 36 10 51c-23 27 -57 32 -89 32c-366 0 -348 -960 -348 -1169v-9h386v-1086h-469l-7 -62c-36 -306 -121 -1057 -579 -1057c-126 0 -311 63 -311 214c0 54 13 115 77 115c80 0 186 -83 186 -160 c0 -17 -5 -37 -10 -54c21 -27 58 -32 86 -32c337 0 327 663 332 861l7 175h-398v1086h461v5c0 347 81 1260 616 1260c125 0 316 -65 316 -217zM1294 89v837h-271c-18 -282 -34 -559 -60 -837h331zM788 926h-329v-837h278c13 278 30 555 51 837'], + 0x2A17: [2314,1156,2463,54,2364,'1333 366h703c109 0 171 -63 171 -177c0 -116 -150 -189 -265 -189v-141c183 0 422 151 422 330c0 308 -266 328 -502 328h-524c9 183 24 363 38 541c15 209 -9 1169 356 1169c32 0 64 -5 88 -32c-9 -15 -9 -32 -9 -51c0 -84 105 -163 183 -163c63 0 82 63 82 116 c0 152 -192 217 -317 217c-534 0 -594 -913 -613 -1260l-34 -537h-760l324 393l-83 94l-539 -564l539 -560l83 83l-324 403h755c-9 -193 -29 -384 -33 -578c-9 -198 5 -861 -329 -861c-32 0 -69 5 -91 32c6 17 12 37 12 54c0 77 -105 160 -189 160c-62 0 -73 -61 -73 -115 c0 -151 183 -214 309 -214c459 0 541 751 573 1057c18 155 34 305 47 465'], + 0x2A18: [2314,1156,1876,54,1727,'975 327c-45 -658 -114 -1483 -610 -1483c-126 0 -311 63 -311 218c0 50 13 115 77 115c80 0 186 -85 186 -164c0 -17 -5 -37 -10 -51c21 -26 58 -35 86 -35c337 0 324 665 332 861c4 172 40 374 49 539l-506 -516l-109 111l604 589v30l-604 603l109 110l506 -520l21 320 c24 351 81 1260 616 1260c125 0 316 -65 316 -217c0 -53 -18 -113 -81 -113c-78 0 -185 79 -185 163c0 16 3 33 10 52c-23 23 -57 31 -89 31c-366 0 -339 -962 -353 -1168c-8 -103 -19 -210 -24 -316l488 508l108 -110l-608 -603v-29l608 -590l-108 -111'], + 0x2A19: [2314,1156,1876,54,1727,'1002 925c170 -17 437 -185 437 -418v-726h129v721c-4 293 -286 481 -538 538c14 206 -14 1187 352 1187c32 0 66 -5 89 -32c-7 -15 -10 -32 -10 -51c0 -84 107 -163 185 -163c63 0 81 63 81 116c0 152 -191 217 -316 217c-535 0 -592 -926 -616 -1280 c-266 -51 -543 -229 -543 -532v-721h129v726c-3 229 212 372 410 418l-66 -1138c-8 -197 5 -860 -332 -860c-28 0 -65 5 -86 32c5 17 10 37 10 54c0 77 -106 160 -186 160c-64 0 -77 -61 -77 -115c0 -151 185 -214 311 -214c458 0 555 699 574 1009'], + 0x2A1A: [2314,1156,1876,54,1727,'778 230c-168 21 -436 189 -436 418v729h-128v-722c2 -294 306 -479 560 -538c-15 -208 -10 -1190 -375 -1190c-30 0 -66 9 -89 32c7 18 11 34 11 54c0 82 -107 160 -185 160c-64 0 -82 -60 -82 -111c0 -151 191 -218 316 -218c536 0 593 926 617 1277 c264 52 543 228 543 534v722h-130v-729c4 -229 -212 -368 -409 -418l66 1140c8 195 -5 860 331 860c28 0 65 -8 87 -35c-6 -11 -11 -33 -11 -48c0 -82 105 -166 187 -166c64 0 76 66 76 116c0 153 -186 217 -311 217c-457 0 -555 -700 -574 -1009'], + 0x2A1B: [2598,1156,1894,54,1745,'1745 2445h-1691v153h1691v-153zM1741 2097c0 -53 -19 -113 -81 -113c-79 0 -185 79 -185 163c0 16 1 33 9 52c-23 23 -57 31 -89 31c-366 0 -340 -962 -355 -1168c-29 -387 -46 -774 -88 -1158c-35 -309 -117 -1060 -574 -1060c-126 0 -311 63 -311 218 c0 50 14 115 75 115c82 0 190 -85 190 -164c0 -17 -6 -37 -11 -51c21 -26 57 -35 86 -35c334 0 324 665 331 861c12 425 43 844 71 1266c23 351 79 1260 614 1260c126 0 318 -65 318 -217'], + 0x2A1C: [2598,1156,1894,54,1745,'54 -1001h1691v-155h-1691v155zM60 -654c0 54 17 114 81 114c78 0 185 -80 185 -163c0 -18 -3 -33 -10 -53c23 -24 57 -30 89 -30c364 0 339 961 353 1168c29 386 49 774 89 1157c37 308 117 1059 575 1059c124 0 310 -61 310 -217c0 -49 -12 -114 -76 -114 c-80 0 -187 84 -187 164c0 15 6 37 11 51c-21 24 -58 33 -87 33c-336 0 -323 -665 -331 -861c-12 -424 -45 -845 -70 -1264c-24 -351 -81 -1260 -616 -1260c-125 0 -316 65 -316 216'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size3/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size4/Regular/Main.js new file mode 100644 index 0000000..4d3047a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size4/Regular/Main.js @@ -0,0 +1,41 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'AsanaMathJax_Size4', + id: 'ASANAMATHSIZE4', + 0x20: [0,0,249,0,0,''], + 0x7C: [1428,887,272,86,187,'187 -887h-101v2315h101v-2315'], + 0x302: [783,-627,2017,0,2017,'2017 627l-1009 93l-1008 -93v47l1008 109l1009 -109v-47'], + 0x303: [772,-642,1864,0,1865,'1865 772c-71 -99 -384 -130 -597 -130c-226 0 -626 67 -814 67c-138 0 -367 -10 -412 -67h-42c71 99 384 130 597 130c222 0 619 -67 807 -67c138 0 374 10 420 67h41'], + 0x306: [664,-506,1761,0,1762,'0 664h190c19 -57 307 -98 691 -98s672 41 691 98h190c-18 -44 -54 -66 -153 -93c-149 -42 -413 -65 -728 -65c-334 0 -604 25 -756 71c-79 26 -107 46 -125 87'], + 0x30C: [792,-627,1959,0,1960,'1960 792l-980 -101l-980 101v-47l979 -118l981 118v47'], + 0x2016: [1428,887,553,86,468,'468 -887h-101v2315h101v-2315zM187 -887h-101v2315h101v-2315'], + 0x2044: [1234,955,564,-254,568,'568 1231l-689 -2186h-133l689 2189'], + 0x20D6: [790,-519,3579,0,3579,'3579 636h-3507l79 -96l-21 -21l-130 135l130 136l21 -21l-79 -96h3507v-37'], + 0x20D7: [790,-519,3579,0,3579,'3507 636h-3507v37h3507l-79 96l21 21l130 -136l-130 -135l-21 21'], + 0x221A: [3175,0,946,63,979,'979 3175l-334 -3175l-439 1372l-131 -49l-12 25l250 122l313 -1016l292 2721h61'], + 0x27C5: [1276,1276,450,53,397,'397 -1276c-157 0 -344 230 -344 692c0 638 218 1121 218 1738c0 49 -43 88 -91 88c-28 0 -56 -14 -73 -36c30 -1 50 -24 50 -52c0 -31 -23 -52 -53 -52s-51 21 -51 52c0 69 59 122 127 122s127 -53 127 -122c0 -609 -155 -1134 -155 -1738c0 -346 114 -659 245 -659v-33 '], + 0x27C6: [1276,1276,450,53,397,'397 -584c0 -462 -187 -692 -344 -692v33c131 0 245 313 245 659c0 604 -155 1129 -155 1738c0 69 59 122 127 122s127 -53 127 -122c0 -31 -21 -52 -51 -52s-53 21 -53 52c0 28 20 51 50 52c-17 22 -45 36 -73 36c-48 0 -91 -39 -91 -88c0 -617 218 -1100 218 -1738'], + 0x27E6: [1704,852,534,84,504,'504 -846l-6 -6c-32 1 -94 2 -126 2h-24l-2 -2c-12 0 -30 1 -50 1c-18 0 -36 -1 -50 -1l-2 2h-24c-32 0 -94 -1 -126 -2l-10 13c10 34 10 125 10 185v2160c0 60 0 151 -10 185l10 13c32 -1 94 -2 126 -2h24l2 2c14 0 32 -1 50 -1c20 0 38 1 50 1l2 -2h24c32 0 94 1 126 2 l6 -6v-26l-4 -5h-96c-38 0 -68 -11 -70 -35c-4 -37 -4 -91 -4 -126v-2160c0 -35 0 -89 4 -126c2 -24 32 -35 70 -35h96l4 -5v-26zM246 -654v2160c0 49 0 118 -6 161c-32 -2 -56 -13 -58 -35c-4 -37 -4 -91 -4 -126v-2160c0 -35 0 -89 4 -126c2 -22 26 -33 58 -35 c6 43 6 112 6 161'], + 0x27E7: [1704,852,534,84,504,'84 -846l6 -6c32 1 94 2 126 2h24l2 -2c12 0 30 1 50 1c18 0 36 -1 50 -1l2 2h24c32 0 94 -1 126 -2l10 13c-10 34 -10 125 -10 185v2160c0 60 0 151 10 185l-10 13c-32 -1 -94 -2 -126 -2h-24l-2 2c-14 0 -32 -1 -50 -1c-20 0 -38 1 -50 1l-2 -2h-24c-32 0 -94 1 -126 2 l-6 -6v-26l4 -5h96c38 0 68 -11 70 -35c4 -37 4 -91 4 -126v-2160c0 -35 0 -89 -4 -126c-2 -24 -32 -35 -70 -35h-96l-4 -5v-26zM342 -654v2160c0 49 0 118 6 161c32 -2 56 -13 58 -35c4 -37 4 -91 4 -126v-2160c0 -35 0 -89 -4 -126c-2 -22 -26 -33 -58 -35 c-6 43 -6 112 -6 161'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size4/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size5/Regular/Main.js new file mode 100644 index 0000000..b28e085 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size5/Regular/Main.js @@ -0,0 +1,33 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'AsanaMathJax_Size5', + id: 'ASANAMATHSIZE5', + 0x20: [0,0,249,0,0,''], + 0x7C: [1673,1039,288,85,203,'203 -1039h-118v2712h118v-2712'], + 0x302: [783,-627,3026,0,3026,'3026 627l-1514 93l-1512 -93v47l1512 109l1514 -109v-47'], + 0x303: [772,-642,2797,0,2797,'2797 772c-106 -99 -576 -130 -895 -130c-339 0 -939 67 -1221 67c-207 0 -551 -10 -618 -67h-63c106 99 576 130 895 130c333 0 929 -67 1211 -67c207 0 561 10 630 67h61'], + 0x30C: [792,-627,2940,0,2940,'2940 792v-47l-1472 -118l-1468 118v47l1470 -101'], + 0x27C5: [1260,1803,450,53,397,'397 -1803c-157 0 -344 278 -344 838c0 772 218 1356 218 2103c0 49 -43 88 -91 88c-28 0 -56 -14 -73 -36c30 -1 50 -24 50 -52c0 -31 -23 -52 -53 -52s-51 21 -51 52c0 69 59 122 127 122s127 -53 127 -122c0 -737 -155 -1372 -155 -2103c0 -419 114 -805 245 -805v-33 '], + 0x27C6: [1260,1803,450,53,397,'397 -965c0 -560 -187 -838 -344 -838v33c131 0 245 386 245 805c0 731 -155 1366 -155 2103c0 69 59 122 127 122s127 -53 127 -122c0 -31 -21 -52 -51 -52s-53 21 -53 52c0 28 20 51 50 52c-17 22 -45 36 -73 36c-48 0 -91 -39 -91 -88c0 -747 218 -1331 218 -2103'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size5/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size6/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size6/Regular/Main.js new file mode 100644 index 0000000..92b5834 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Size6/Regular/Main.js @@ -0,0 +1,76 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Size6/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Size6'] = { + directory: 'Size6/Regular', + family: 'AsanaMathJax_Size6', + id: 'ASANAMATHSIZE6', + 0x20: [0,0,249,0,0,''], + 0x7C: [1960,1217,308,85,223,'223 -1217h-138v3177h138v-3177'], + 0xE000: [1428,887,272,86,187,'187 -887h-101v2315h101v-2315'], + 0xE001: [587,-542,510,0,511,'511 542h-511v45h511v-45'], + 0xE002: [-130,175,510,0,511,'511 -175h-511v45h511v-45'], + 0xE003: [-130,283,510,0,511,'511 -283h-511v45h511v-45zM511 -175h-511v45h511v-45'], + 0xE004: [695,-542,510,0,511,'511 650h-511v45h511v-45zM511 542h-511v45h511v-45'], + 0xE005: [1428,887,553,86,468,'468 -887h-101v2315h101v-2315zM187 -887h-101v2315h101v-2315'], + 0xE006: [384,-100,375,48,314,'170 384c0 -86 -2 -124 10 -146c16 -26 44 -42 80 -42h48l6 -12v-66l-8 -18l-130 2l-122 -2c-6 26 -6 54 -6 90c0 68 11 66 11 194h111'], + 0xE007: [700,-100,375,59,170,'59 700h111v-600h-111v600'], + 0xE008: [523,-100,375,59,319,'170 100v120c15 26 46 48 79 48h65l5 17v64l-5 14h-65c-33 0 -64 14 -79 40v120h-111v-423h111'], + 0xE009: [384,-100,375,48,314,'170 100h-111c0 128 -11 126 -11 194c0 36 0 64 6 90l122 -2l130 2l8 -18v-66l-6 -12h-48c-36 0 -64 -16 -80 -42c-12 -22 -10 -60 -10 -146'], + 0xE00A: [384,-100,375,62,328,'206 384h111c0 -128 11 -126 11 -194c0 -36 0 -64 -6 -90l-122 2l-130 -2l-8 18v66l6 12h48c36 0 64 16 80 42c12 22 10 60 10 146'], + 0xE00B: [700,-100,373,206,317,'206 700h111v-600h-111v600'], + 0xE00C: [523,-100,373,57,317,'206 100v120c-15 26 -46 48 -79 48h-65l-5 17v64l5 14h65c33 0 64 14 79 40v120h111v-423h-111'], + 0xE00D: [384,-100,375,62,328,'206 100c0 86 2 124 -10 146c-16 26 -44 42 -80 42h-48l-6 12v66l8 18l130 -2l122 2c6 -26 6 -54 6 -90c0 -68 -11 -66 -11 -194h-111'], + 0xE00E: [673,-636,484,0,485,'485 636h-485v37h485v-37'], + 0xE00F: [832,-544,887,0,888,'0 544c1 36 3 101 3 133c0 31 -2 97 -3 155c87 -1 537 -4 888 -5v-115c-331 0 -741 -2 -810 -2c-26 0 -40 -34 -40 -62v-104h-38'], + 0xE010: [827,-712,687,0,688,'0 712v115h688v-115h-688'], + 0xE011: [833,-545,887,0,888,'850 545v104c0 28 -14 62 -40 62c-69 0 -479 2 -810 2v115c351 1 801 4 888 5c-1 -58 -3 -124 -3 -155c0 -32 2 -97 3 -133h-38'], + 0xE012: [-200,237,484,0,485,'485 -237h-485v37h485v-37'], + 0xE013: [486,-55,948,65,949,'949 241h-770l125 -152l-32 -34l-207 214l207 217l32 -34l-125 -152h770v-59'], + 0xE014: [300,-241,834,0,770,'0 241h770v59h-770v-59'], + 0xE015: [428,172,524,233,292,'233 428v-600h59v600h-59'], + 0xE016: [300,-241,834,65,835,'65 241h770v59h-770v-59'], + 0xE017: [486,-55,948,0,884,'884 272l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34'], + 0xE018: [486,-55,243,0,208,'0 300h150v186h58v-431h-58v186h-150v59'], + 0xE019: [486,-55,243,36,244,'244 300h-150v186h-58v-431h58v186h150v59'], + 0xE01A: [494,-241,375,0,311,'0 300h185c43 0 66 24 66 67c0 44 -58 73 -101 73v54c69 0 161 -58 161 -127c0 -118 -101 -126 -192 -126h-119v59'], + 0xE01B: [494,-241,375,65,376,'376 300h-185c-43 0 -66 24 -66 67c0 44 58 73 101 73v54c-69 0 -161 -58 -161 -127c0 -118 101 -126 192 -126h119v59'], + 0xE01C: [537,-5,948,65,949,'949 134h-681l80 -98l-29 -31l-254 266l254 266l29 -33l-80 -98h681v-59h-730l-64 -78l63 -76h731v-59'], + 0xE01D: [406,-134,638,0,639,'0 347h639v59h-639v-59zM0 193h639v-59h-639v59'], + 0xE01E: [406,-134,834,0,770,'0 347h770v59h-770v-59zM0 193h770v-59h-770v59'], + 0xE01F: [428,172,578,153,425,'425 428v-600h-59v600h59zM153 428v-600h59v600h-59'], + 0xE020: [406,-134,834,65,835,'65 347h770v59h-770v-59zM65 193h770v-59h-770v59'], + 0xE021: [537,-5,948,0,884,'884 271l-253 -266l-30 31l80 98h-681v59h732l63 76l-64 78h-731v59h681l-80 98l30 33'], + 0xE022: [494,0,915,679,988,'738 0h-59v494h309v-59h-250v-435'], + 0xE023: [-340,628,887,0,888,'0 -340c1 -36 3 -101 3 -133c0 -31 -2 -97 -3 -155c87 1 537 4 888 5v115c-331 0 -741 2 -810 2c-26 0 -40 34 -40 62v104h-38'], + 0xE024: [-513,628,687,0,688,'0 -513v-115h688v115h-688'], + 0xE025: [-345,633,887,0,888,'850 -345v-104c0 -28 -14 -62 -40 -62c-69 0 -479 -2 -810 -2v-115c351 -1 801 -4 888 -5c-1 58 -3 124 -3 155c0 32 2 97 3 133h-38'], + 0xE026: [877,-545,773,51,773,'58 545c-4 0 -7 3 -7 10c0 10 6 27 17 50c94 190 293 272 652 272h53v-136h-82c-182 0 -492 -4 -593 -152c-12 -17 -27 -44 -40 -44'], + 0xE027: [877,-741,688,0,688,'0 741v136h688v-136h-688'], + 0xE028: [877,-545,770,0,720,'714 545c-14 0 -28 28 -40 44c-102 148 -412 152 -594 152h-80v136h52c360 0 558 -82 652 -272c12 -22 16 -40 16 -50c0 -6 -2 -10 -6 -10'], + 0xE029: [-545,877,773,51,773,'58 -545c13 0 28 -27 40 -44c101 -148 411 -152 593 -152h82v-136h-53c-359 0 -558 82 -652 272c-11 23 -17 40 -17 50c0 7 3 10 7 10'], + 0xE02A: [-741,877,687,0,687,'0 -877v136h687v-136h-687'], + 0xE02B: [-545,877,770,0,720,'714 -545c4 0 6 -4 6 -10c0 -10 -4 -28 -16 -50c-94 -190 -292 -272 -652 -272h-52v136h80c182 0 492 4 594 152c12 16 26 44 40 44'], + 0xE02C: [1072,-741,758,0,758,'0 741v136h52c250 0 324 194 324 195h2c0 -1 76 -195 326 -195h54v-136h-54c-102 0 -248 54 -328 200c-76 -146 -218 -200 -324 -200h-52'], + 0xE02D: [-741,1072,758,0,758,'0 -877v136h52c106 0 248 -54 324 -200c80 146 226 200 328 200h54v-136h-54c-250 0 -326 -194 -326 -195h-2c0 1 -74 195 -324 195h-52'], + 0xE02E: [486,-55,271,0,207,'0 193h150v154h-150v59h150v80h57v-431h-57v79h-150v59'], + 0xE02F: [486,-55,271,65,272,'272 193h-150v154h150v59h-150v80h-57v-431h57v79h150v59'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size6/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Symbols/Regular/Main.js new file mode 100644 index 0000000..d489a5a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Symbols/Regular/Main.js @@ -0,0 +1,229 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'AsanaMathJax_Symbols', + id: 'ASANAMATHSYMBOLS', + 0x20: [0,0,249,0,0,''], + 0x2300: [591,13,733,65,668,'668 288c0 -166 -134 -301 -301 -301c-69 0 -133 24 -184 62l-43 -44l-34 34l41 43c-51 55 -82 127 -82 206c0 168 135 303 302 303c69 0 131 -23 181 -62l42 41l35 -34l-40 -39c52 -54 83 -128 83 -209zM621 288c0 68 -25 129 -67 174l-339 -377c42 -31 94 -50 152 -50 c140 0 254 113 254 253zM517 495c-42 30 -94 48 -150 48c-141 0 -254 -114 -254 -255c0 -65 25 -125 66 -170'], + 0x2304: [361,-18,688,65,623,'623 361h-60l-218 -238l-220 238h-60l271 -343h18'], + 0x2305: [515,-18,688,65,623,'623 460h-558v55h558v-55zM623 18h-60l-218 238l-220 -238h-60l271 343h18'], + 0x2306: [682,-18,688,65,623,'623 627h-558v55h558v-55zM623 460h-558v55h558v-55zM623 18h-60l-218 238l-220 -238h-60l271 343h18'], + 0x2310: [360,-88,672,65,608,'65 88h57v211h486v61h-543v-272'], + 0x2319: [360,-88,672,65,608,'65 360h57v-211h486v-61h-543v272'], + 0x231C: [713,-450,391,93,355,'355 649h-199v-199h-63v263h262v-64'], + 0x231D: [713,-450,391,36,298,'298 450h-63v199h-199v64h262v-263'], + 0x231E: [91,172,391,93,355,'355 -172h-262v263h63v-199h199v-64'], + 0x231F: [91,172,391,36,298,'298 -172h-262v64h199v199h63v-263'], + 0x2320: [1412,0,1371,537,1262,'537 0c15 203 26 365 48 566c30 283 50 846 435 846c96 0 242 -55 242 -170c0 -35 -10 -84 -54 -84c-56 0 -132 59 -132 120c0 34 -29 85 -76 85c-277 0 -277 -494 -283 -683c-7 -240 -14 -439 -28 -680h-152'], + 0x2321: [1412,0,1371,-36,689,'689 1412c-15 -203 -26 -365 -48 -566c-30 -283 -50 -846 -435 -846c-96 0 -242 55 -242 170c0 35 10 84 54 84c56 0 132 -59 132 -120c0 -34 29 -85 76 -85c277 0 277 494 283 683c7 240 14 439 28 680h152'], + 0x2329: [733,192,381,53,309,'309 -192h-50l-206 463l206 462h50l-184 -462'], + 0x232A: [733,192,381,53,309,'53 -192h50l206 463l-206 462h-50l184 -462'], + 0x233D: [660,119,669,18,652,'311 -119v74c-165 12 -293 150 -293 316s129 303 293 315v74h47v-74c164 -11 294 -148 294 -315c0 -166 -129 -304 -294 -316v-74h-47zM604 271c0 138 -108 255 -246 268v-537c138 12 246 129 246 269zM311 539c-138 -13 -246 -130 -246 -268c0 -140 109 -257 246 -269 v537'], + 0x239B: [885,0,442,53,412,'412 876c0 -10 -10 -28 -18 -35c-197 -158 -200 -475 -200 -762v-79h-141v52c0 500 142 709 333 826c9 5 15 7 19 7c6 0 7 -4 7 -9'], + 0x239C: [1122,0,442,53,194,'194 0h-141v1122h141v-1122'], + 0x239D: [886,0,654,53,412,'53 833v53h141v-79c0 -288 4 -604 201 -763c8 -7 17 -25 17 -34c0 -6 -2 -10 -6 -10s-10 2 -19 8c-191 117 -334 324 -334 825'], + 0x239E: [885,0,442,32,391,'391 0h-142v79c0 287 -3 604 -200 762c-8 7 -17 25 -17 35c0 5 2 9 6 9s10 -2 19 -7c191 -117 334 -326 334 -826v-52'], + 0x239F: [1122,0,442,249,391,'391 0h-142v1122h142v-1122'], + 0x23A0: [886,0,442,32,391,'391 833c0 -501 -143 -708 -334 -825c-9 -6 -15 -8 -19 -8s-6 4 -6 10c0 9 9 27 17 34c197 159 200 475 200 763v79h142v-53'], + 0x23A1: [888,0,408,86,374,'374 823h-104c-28 0 -62 -14 -62 -40c0 -69 -2 -452 -2 -783h-120v888c58 -1 124 -3 155 -3c32 0 97 2 133 3v-65'], + 0x23A2: [1132,0,408,86,206,'206 0h-120v1132h120v-1132'], + 0x23A3: [888,0,408,86,374,'374 0c-36 1 -101 3 -133 3c-31 0 -97 -2 -155 -3v888h120c0 -331 2 -714 2 -783c0 -26 34 -40 62 -40h104v-65'], + 0x23A4: [888,0,408,35,323,'323 888v-888h-120v783c0 26 -36 40 -64 40h-104v65c36 -1 101 -3 133 -3c31 0 97 2 155 3'], + 0x23A5: [1132,0,408,203,323,'323 0h-120v1132h120v-1132'], + 0x23A6: [888,0,408,35,323,'323 0c-58 1 -124 3 -155 3c-32 0 -97 -2 -133 -3v65h104c28 0 64 14 64 40v783h120c1 -351 -1 -801 0 -888'], + 0x23A7: [721,0,627,246,578,'578 715c0 -14 -27 -28 -44 -40c-148 -102 -152 -412 -152 -594v-81h-136v53c0 359 82 557 272 651c23 12 40 17 50 17c7 0 10 -2 10 -6'], + 0x23A8: [757,0,627,51,382,'382 0h-136v52c0 250 -194 323 -195 323v2c1 0 195 77 195 327v53h136v-53c0 -102 -54 -249 -200 -329c146 -76 200 -218 200 -323v-52'], + 0x23A9: [715,7,627,246,578,'578 0c0 -4 -3 -7 -10 -7c-10 0 -27 6 -50 17c-190 94 -272 293 -272 652v53h136v-82c0 -182 4 -492 152 -593c17 -12 44 -27 44 -40'], + 0x23AA: [688,0,627,246,382,'382 0h-136v688h136v-688'], + 0x23AB: [721,0,627,51,382,'382 0h-136v81c0 182 -4 492 -151 594c-18 12 -44 26 -44 40c0 4 3 6 9 6c11 0 27 -5 51 -17c189 -94 271 -292 271 -651v-53'], + 0x23AC: [757,0,627,246,578,'578 377c-1 0 -196 -75 -196 -325v-52h-136v52c0 105 54 247 200 323c-146 80 -200 227 -200 329v53h136v-53c0 -250 195 -327 196 -327'], + 0x23AD: [722,0,627,51,382,'382 669c0 -359 -82 -559 -271 -652c-24 -12 -40 -17 -51 -17c-6 0 -9 3 -9 7c0 13 26 28 44 40c147 101 151 411 151 593v82h136v-53'], + 0x23AE: [1125,0,1371,537,689,'537 0v1125h152v-1125h-152'], + 0x23AF: [300,-241,637,0,638,'638 241h-638v59h638v-59'], + 0x23B2: [981,480,1701,132,1536,'987 -480l-495 1335h504c148 0 256 -57 328 -168c64 -108 112 -282 140 -528h72l-28 822h-1376l708 -1461h147'], + 0x23B3: [886,443,1701,124,1576,'987 886l-559 -1014h596c160 0 272 45 336 129c68 90 108 264 132 525h84l-32 -969h-1420l716 1329h147'], + 0x23B7: [1388,0,987,63,738,'738 0l-531 863l-132 -25l-12 13l254 65l362 -545v1017h59v-1388'], + 0x27C0: [521,-21,564,66,514,'138 84l376 375l-54 44l-332 -330v348h-62v-500h434v63h-362'], + 0x27C1: [559,18,666,44,623,'488 56h-309l155 309zM431 99l-97 194l-98 -194h195zM623 -18h-579l290 577zM551 26l-217 432l-217 -432h434'], + 0x27C2: [621,79,748,65,684,'684 -79h-619v59h280v641h59v-641h280v-59'], + 0x27C3: [533,-8,668,55,615,'615 271c0 -69 -54 -123 -122 -123c-69 0 -123 54 -123 123c0 67 54 122 123 122c68 0 122 -55 122 -122zM583 271c0 50 -41 90 -90 90c-51 0 -91 -40 -91 -90c0 -51 40 -91 91 -91c49 0 90 40 90 91zM615 8h-301c-147 0 -259 123 -259 263s112 262 259 262h301v-53h-306 c-114 0 -202 -98 -202 -209c0 -118 100 -210 202 -210h306v-53'], + 0x27C4: [533,-8,668,55,615,'55 271c0 -69 54 -123 122 -123c69 0 123 54 123 123c0 67 -54 122 -123 122c-68 0 -122 -55 -122 -122zM87 271c0 50 41 90 90 90c51 0 91 -40 91 -90c0 -51 -40 -91 -91 -91c-49 0 -90 40 -90 91zM55 8h301c147 0 259 123 259 263s-112 262 -259 262h-301v-53h306 c114 0 202 -98 202 -209c0 -118 -100 -210 -202 -210h-306v-53'], + 0x27C5: [718,192,381,42,340,'340 -192c-135 0 -298 77 -298 232c0 211 185 367 185 572c0 40 -34 72 -74 72c-21 0 -42 -9 -56 -26c23 -3 39 -23 39 -46c0 -28 -20 -48 -48 -48c-26 0 -46 20 -46 48c0 60 52 106 111 106s111 -46 111 -106c0 -200 -132 -373 -132 -572c0 -115 97 -197 208 -198v-34'], + 0x27C6: [718,192,381,42,340,'340 40c0 -155 -163 -232 -298 -232v34c111 1 209 83 209 198c0 199 -133 372 -133 572c0 60 51 106 111 106c59 0 111 -46 111 -106c0 -28 -20 -48 -46 -48c-28 0 -48 20 -48 48c0 23 16 43 39 46c-13 17 -34 26 -56 26c-40 0 -74 -32 -74 -72c0 -205 185 -361 185 -572 '], + 0x27C7: [563,22,687,65,623,'401 389c0 -30 -27 -58 -59 -58c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58zM623 563l-269 -585h-18l-271 585h60l220 -480l218 480h60'], + 0x27C8: [714,169,987,68,920,'920 8h-300c-148 0 -260 123 -260 263s112 262 260 262h300v-53h-306c-114 0 -202 -98 -202 -209c0 -118 100 -210 202 -210h306v-53zM402 -169h-56l-278 883h54'], + 0x27C9: [714,169,987,68,920,'68 8h300c148 0 260 123 260 263s-112 262 -260 262h-300v-53h306c114 0 202 -98 202 -209c0 -118 -100 -210 -202 -210h-306v-53zM586 -169h56l278 883h-54'], + 0x27CA: [570,29,317,65,253,'187 304v266h-58v-266h-64v-59h64v-274h60v274h64v59h-66'], + 0x27CE: [540,1,668,64,605,'605 0c-180 -1 -361 -2 -541 0v540h541v-540zM342 481l204 -422v422h-204zM327 481h-204v-422zM193 59h283l-141 327'], + 0x27CF: [541,0,668,64,605,'605 540c-180 1 -361 2 -541 0v-540h541v540zM342 59l204 422v-422h-204zM327 59h-204v422zM193 481h283l-141 -327'], + 0x27D0: [630,89,761,47,715,'440 272c0 -30 -27 -58 -59 -58c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58zM715 271l-334 -360l-334 360l334 359zM636 271l-255 274l-254 -274l254 -274'], + 0x27D1: [563,22,687,65,623,'401 152c0 30 -27 58 -59 58c-31 0 -57 -28 -57 -58s27 -58 57 -58c31 0 59 28 59 58zM623 -22l-269 585h-18l-271 -585h60l220 480l218 -480h60'], + 0x27D2: [498,-44,665,70,596,'596 498v-196c0 -146 -124 -258 -264 -258s-262 112 -262 258v196h54v-200c0 -106 82 -188 182 -200v382h54v-382c104 12 182 106 182 200v200h54'], + 0x27D3: [476,-66,535,65,473,'180 286c0 -32 26 -56 56 -56c32 0 56 24 56 56c0 30 -24 55 -56 55c-30 0 -56 -25 -56 -55zM425 476v-362h-360v-48h408v410h-48'], + 0x27D4: [476,-66,535,65,473,'358 256c0 32 -26 56 -56 56c-32 0 -56 -24 -56 -56c0 -30 24 -55 56 -55c30 0 56 25 56 55zM113 66v362h360v48h-408v-410h48'], + 0x27D5: [515,-23,858,58,802,'172 100v337h-114v78h114l314 -208l316 208v-492l-316 210l-314 -210h-114v77s112 1 114 0zM736 141v260l-192 -130zM430 271l-194 130v-260'], + 0x27D6: [515,-23,858,58,802,'688 100v337h114v78h-114l-314 -208l-316 208v-492l316 210l314 -210c2 1 -4 3 114 1v76s-112 1 -114 0zM124 141v260l192 -130zM430 271l194 130v-260'], + 0x27D7: [515,-23,1009,76,934,'820 23l-316 210l-314 -210h-114v77s112 1 114 0v337h-114v78h114l314 -208l316 208h114v-78h-114v-337c2 1 114 0 114 0v-76c-118 2 -112 0 -114 -1zM754 141v260l-192 -130zM448 271l-194 130v-260'], + 0x27D8: [671,129,748,65,684,'684 -129h-619v59h280v741h59v-741h280v-59'], + 0x27D9: [671,129,748,65,684,'684 671h-619v-59h280v-741h59v741h280v59'], + 0x27DA: [541,0,1189,70,1120,'70 135h432v-135h58v541h-58v-134h-432v-59h432v-154h-432v-59zM1120 135h-432v-135h-58v541h58v-134h432v-59h-432v-154h432v-59'], + 0x27DB: [541,0,1189,70,1120,'70 241h432v-241h58v541h-58v-241h-432v-59zM1120 241h-432v-241h-58v541h58v-241h432v-59'], + 0x27DC: [446,-94,1016,65,952,'952 241h-535c-14 -84 -88 -147 -175 -147c-99 0 -177 78 -177 175c0 98 78 177 177 177c87 0 160 -63 174 -146h536v-59zM366 269c0 69 -55 125 -124 125s-124 -56 -124 -125c0 -68 55 -123 124 -123s124 55 124 123'], + 0x27DD: [579,40,969,85,885,'144 579v-280h741v-59h-741v-280h-59v619h59'], + 0x27DE: [579,40,969,85,885,'826 579v-280h-741v-59h741v-280h59v619h-59'], + 0x27DF: [671,129,748,65,684,'337 -70v318c-101 17 -177 106 -177 210c0 119 94 213 210 213c118 0 213 -94 213 -213c0 -104 -76 -192 -175 -209v-319h276v-59h-619v59h272zM370 309c83 0 150 66 150 149s-67 149 -150 149c-81 0 -147 -66 -147 -149s66 -149 147 -149'], + 0x27E0: [630,89,626,47,580,'126 297h373l-186 248zM126 251l187 -254l186 254h-373zM580 271l-267 -360l-266 360l266 359'], + 0x27E1: [578,37,558,44,515,'515 271c0 -1 -82 -83 -128 -141c-47 -61 -108 -166 -108 -167h-1c0 1 -60 105 -106 167c-45 59 -128 140 -128 141s82 82 128 141c46 61 106 165 106 166h1c0 -1 61 -105 108 -166c46 -59 128 -140 128 -141zM279 44c50 79 69 112 177 227c-91 91 -126 143 -177 225 c-48 -76 -91 -140 -176 -225c98 -104 123 -142 176 -227'], + 0x27E2: [578,37,640,53,588,'130 289c21 21 77 74 115 123c46 61 106 165 106 166h1c0 -1 61 -105 108 -166c46 -59 128 -140 128 -141s-82 -83 -128 -141c-47 -61 -108 -166 -108 -167h-1c0 1 -60 105 -106 167c-37 48 -94 101 -115 123h-77v36h77zM352 44c50 79 69 112 177 227 c-91 91 -126 143 -177 225c-48 -76 -91 -140 -176 -225c98 -104 123 -142 176 -227'], + 0x27E3: [578,37,640,53,588,'511 289h77v-36h-77c-21 -22 -78 -75 -115 -123c-46 -62 -106 -166 -106 -167h-1c0 1 -61 106 -108 167c-46 58 -128 140 -128 141s82 82 128 141c47 61 108 165 108 166h1c0 -1 60 -105 106 -166c38 -49 94 -102 115 -123zM289 44c53 85 78 123 176 227 c-85 85 -128 149 -176 225c-51 -82 -86 -134 -177 -225c108 -115 127 -148 177 -227'], + 0x27E4: [541,0,782,59,724,'184 235h-125v60h125v246h540v-541h-540v235zM666 59v423h-424v-423h424'], + 0x27E5: [541,0,782,58,724,'598 235h126l-1 60h-125v246h-540v-541h540v235zM116 59v423h424v-423h-424'], + 0x27E6: [726,184,484,79,440,'282 726c2 -2 22 -2 55 -2s65 1 97 2l6 -6v-26l-4 -5h-38c-38 0 -68 -11 -70 -35c-3 -37 -4 -91 -4 -126v-514c0 -35 1 -89 4 -126c2 -24 32 -35 70 -35h38l4 -5v-26l-6 -6c-32 1 -64 2 -97 2c-55 0 -55 -2 -55 -2l-21 1l-21 -1c-2 2 -22 2 -55 2c-32 0 -64 -1 -97 -2 l-9 13c9 34 9 125 9 185v514c0 60 0 151 -9 185l9 13c33 -1 65 -2 97 -2c55 0 55 2 55 2l21 -3zM240 14v514c0 49 0 118 -5 161c-33 -2 -57 -13 -59 -35c-3 -37 -4 -91 -4 -126v-514c0 -35 1 -89 4 -126c2 -22 26 -33 59 -35c5 43 5 112 5 161'], + 0x27E7: [726,184,484,45,406,'245 726c2 -2 22 -2 55 -2c32 0 64 1 97 2l9 -13c-9 -34 -9 -125 -9 -185v-514c0 -60 0 -151 9 -185l-9 -13c-33 1 -65 2 -97 2c-55 0 -55 -2 -55 -2l-21 1l-21 -1c-2 2 -22 2 -55 2s-65 -1 -97 -2l-6 6v26l4 5h38c38 0 68 11 70 35c3 37 4 91 4 126v514 c0 35 -1 89 -4 126c-2 24 -32 35 -70 35h-38l-4 5v26l6 6c32 -1 64 -2 97 -2c55 0 55 2 55 2l21 -5zM313 14v514c0 35 -1 89 -4 126c-2 22 -26 33 -59 35c-5 -43 -5 -112 -5 -161v-514c0 -49 0 -118 5 -161c33 2 57 13 59 35c3 37 4 91 4 126'], + 0x27EA: [713,172,581,67,515,'515 -172h-50l-226 443l226 442h50l-204 -442zM343 -172h-50l-226 443l226 442h50l-204 -442'], + 0x27EB: [713,172,581,67,515,'67 -172h50l226 443l-226 442h-50l204 -442zM239 -172h50l226 443l-226 442h-50l204 -442'], + 0x27EC: [709,191,384,87,298,'130 -1c0 -29 0 384 0 516l156 132v31l-184 -146l-1 -543l185 -150v36zM146 10l152 -126v-75l-211 167v566l210 167v-75l-151 -125v-499'], + 0x27ED: [709,191,384,87,298,'255 -1l-156 -124v-36l185 150l-1 543l-184 146v-31l156 -132c0 -132 0 -545 0 -516zM87 -116l152 126v499l-151 125v75l210 -167v-566l-211 -167v75'], + 0x2980: [713,172,620,71,550,'550 -172h-59v885h59v-885zM340 -172h-59v885h59v-885zM130 -172h-59v885h59v-885'], + 0x2981: [521,-20,620,58,563,'563 271c0 -141 -112 -251 -252 -251c-141 0 -253 110 -253 251c0 139 112 250 253 250c140 0 252 -111 252 -250'], + 0x2982: [760,0,495,72,424,'424 585c0 -99 -78 -176 -176 -176s-176 77 -176 176c0 97 78 175 176 175s176 -78 176 -175zM392 585c0 79 -66 144 -144 144c-80 0 -144 -65 -144 -144c0 -81 64 -145 144 -145c78 0 144 64 144 145zM424 176c0 -99 -78 -176 -176 -176s-176 77 -176 176 c0 97 78 175 176 175s176 -78 176 -175zM392 176c0 79 -66 144 -144 144c-80 0 -144 -65 -144 -144c0 -81 64 -145 144 -145c78 0 144 64 144 145'], + 0x2983: [726,188,554,53,502,'297 689c-33 6 -96 -39 -96 -94v-186c0 -88 -18 -116 -84 -136c68 -21 84 -48 84 -145v-173c0 -57 96 -102 96 -102l5 161v514c2 46 4 151 -5 161zM129 578c0 134 64 147 155 148c20 -1 97 -2 115 -2c33 0 65 1 97 2l6 -6v-26l-4 -5h-38c-38 0 -68 -11 -70 -35 c-3 -37 -4 -91 -4 -126v-514c0 -35 1 -89 4 -126c2 -24 32 -35 70 -35h38l4 -5v-26l-6 -6c-32 1 -66 -4 -100 -4l-112 1c-109 -14 -155 53 -155 170v168c0 80 -14 102 -76 122c59 20 76 47 76 119v186'], + 0x2984: [726,188,554,53,502,'258 689c33 6 96 -39 96 -94v-186c0 -88 18 -116 84 -136c-68 -21 -84 -48 -84 -145v-173c0 -57 -96 -102 -96 -102l-5 161v514c-2 46 -4 151 5 161zM426 578c0 134 -64 147 -155 148c-20 -1 -97 -2 -115 -2c-33 0 -65 1 -97 2l-6 -6v-26l4 -5h38c38 0 68 -11 70 -35 c3 -37 4 -91 4 -126v-514c0 -35 -1 -89 -4 -126c-2 -24 -32 -35 -70 -35h-38l-4 -5v-26l6 -6c32 1 66 -4 100 -4l112 1c109 -14 155 53 155 170v168c0 80 14 102 76 122c-59 20 -76 47 -76 119v186'], + 0x2985: [726,215,362,36,325,'191 -74c-74 107 -86 277 -86 337c0 123 34 251 86 322c-62 -65 -79 -104 -101 -172c-16 -47 -24 -97 -24 -150c0 -75 15 -146 44 -209c21 -47 32 -74 81 -128zM139 266c0 -283 132 -405 186 -460l-23 -21c-98 77 -136 116 -178 183c-58 90 -88 191 -88 298 c0 76 16 147 47 214c45 98 95 153 219 246l23 -26c-70 -68 -186 -174 -186 -434'], + 0x2986: [726,215,394,36,325,'170 -74c55 79 86 215 86 337c0 123 -34 251 -86 322c62 -65 79 -104 101 -172c16 -47 24 -97 24 -150c0 -75 -15 -146 -44 -209c-21 -47 -32 -74 -81 -128zM222 266c0 -283 -132 -405 -186 -460l23 -21c98 77 137 116 179 183c57 90 87 191 87 298c0 76 -15 147 -47 214 c-45 98 -94 153 -219 246l-23 -26c70 -68 186 -174 186 -434'], + 0x2987: [750,250,420,99,341,'99 250c0 351 209 500 222 500c6 0 20 -3 20 -10v-980c0 -7 -14 -10 -20 -10c-11 0 -222 146 -222 500zM314 720c-123 -125 -157 -296 -157 -470c0 -153 32 -342 157 -468v938'], + 0x2988: [750,250,420,80,322,'322 250c0 351 -209 500 -222 500c-6 0 -20 -3 -20 -10v-980c0 -7 14 -10 20 -10c11 0 222 146 222 500zM107 720c123 -125 157 -296 157 -470c0 -153 -32 -342 -157 -468v938'], + 0x2989: [668,111,407,40,338,'309 -6v569l-187 -292zM338 668v-779l-298 373v17'], + 0x298A: [668,111,407,70,368,'99 -6v569l187 -292zM70 668v-779l298 373v17'], + 0x298B: [726,300,332,79,288,'288 -300h-209v50h209v-50zM88 -184l-9 13c6 31 8 59 8 127v622c0 77 -2 110 -8 135l9 13c69 -2 171 0 194 0l6 -6v-26l-4 -5h-38c-27 0 -49 -6 -61 -16c-9 -9 -12 -24 -12 -57v-691c0 -33 3 -47 12 -56c12 -10 34 -16 61 -16h38l4 -5v-26l-6 -6c-24 0 -123 2 -194 0'], + 0x298C: [726,300,332,79,288,'79 -300h209v50h-209v-50zM279 -184l9 13c-6 31 -8 59 -8 127v622c0 77 2 110 8 135l-9 13c-69 -2 -171 0 -194 0l-6 -6v-26l4 -5h38c27 0 49 -6 61 -16c9 -9 12 -24 12 -57v-691c0 -33 -3 -47 -12 -56c-12 -10 -34 -16 -61 -16h-38l-4 -5v-26l6 -6c24 0 123 2 194 0'], + 0x298D: [726,184,352,79,308,'203 682c14 8 16 7 43 7h58l4 5v26l-6 6h-214c-10 -24 -1 -71 -1 -148v-622c0 -68 -2 -96 -8 -127l9 -13h214l6 6v26l-4 5h-58c-27 0 -49 6 -61 16c-9 9 -12 23 -12 56l1 717l112 -61l22 42'], + 0x298E: [726,184,352,45,274,'150 -140c-14 -8 -16 -7 -43 -7h-58l-4 -5v-26l6 -6h214c10 24 1 71 1 148v622c0 68 2 96 8 127l-9 13h-214l-6 -6v-26l4 -5h58c27 0 49 -6 61 -16c9 -9 12 -23 12 -56l-1 -717l-112 61l-22 -42'], + 0x298F: [726,184,352,79,308,'203 -140c14 -8 16 -7 43 -7h58l4 -5v-26l-6 -6h-214c-10 24 -1 71 -1 148v622c0 68 -2 96 -8 127l9 13h214l6 -6v-26l-4 -5h-58c-27 0 -49 -6 -61 -16c-9 -9 -12 -23 -12 -56l1 -717l112 61l22 -42'], + 0x2990: [726,184,352,45,274,'150 682c-14 8 -16 7 -43 7h-58l-4 5v26l6 6h214c10 -24 1 -71 1 -148v-622c0 -68 2 -96 8 -127l-9 -13h-214l-6 6v26l4 5h58c27 0 49 6 61 16c9 9 12 23 12 56l-1 717l-112 -61l-22 42'], + 0x2991: [713,172,381,53,329,'328 271c0 -30 -27 -58 -59 -58c-31 0 -57 28 -57 58s27 58 57 58c31 0 59 -28 59 -58zM329 -172h-50l-226 443l226 442h50l-204 -442'], + 0x2992: [713,172,381,53,329,'54 271c0 -30 27 -58 59 -58c31 0 57 28 57 58s-27 58 -57 58c-31 0 -59 -28 -59 -58zM53 -172h50l226 443l-226 442h-50l204 -442'], + 0x2993: [693,159,671,54,618,'252 172l-198 88v21l212 109c33 134 156 255 316 303l6 -41c-121 -32 -221 -128 -266 -246l278 129v-59l-294 -139c-10 -47 -6 -96 -4 -133l298 -140v-59l-284 135c44 -144 153 -220 302 -252v-47c-189 27 -320 118 -366 331zM156 271l92 -45c1 16 -2 55 2 92'], + 0x2994: [693,159,671,54,618,'420 172l198 88v21l-212 109c-33 134 -156 255 -316 303l-6 -41c121 -32 221 -128 266 -246l-278 129v-59l294 -139c10 -47 6 -96 4 -133l-298 -140v-59l284 135c-44 -144 -153 -220 -302 -252v-47c189 27 320 118 366 331zM516 271l-92 -45c-1 16 2 55 -2 92'], + 0x2995: [635,200,919,87,835,'835 211l-748 -257v81l576 192l-576 191v85l748 -266v-26zM805 -196c-199 20 -329 214 -329 417c0 194 143 383 329 414v-62c-139 -31 -262 -207 -262 -352c0 -153 111 -334 262 -355v-62zM479 -200c-199 20 -329 218 -329 421c0 194 143 381 329 412v-61 c-139 -32 -262 -206 -262 -351c0 -153 112 -338 262 -359v-62'], + 0x2996: [635,200,919,87,835,'87 211l748 -257v81l-576 192l576 191v85l-748 -266v-26zM117 -196c199 20 329 214 329 417c0 194 -143 383 -329 414v-62c139 -31 262 -207 262 -352c0 -153 -111 -334 -262 -355v-62zM443 -200c199 20 329 218 329 421c0 194 -143 381 -329 412v-61 c139 -32 262 -206 262 -351c0 -153 -112 -338 -262 -359v-62'], + 0x2999: [716,5,249,67,183,'124 716c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM124 315c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58zM124 516c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58z M124 111c31 0 59 -28 59 -58c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58'], + 0x299A: [609,66,269,66,204,'66 16v12l117 59l-116 70v4l116 71l-116 70v5l116 73l-116 70v4l116 71l-117 70v14l138 -82v-4l-116 -71l116 -70v-5l-115 -68l-1 -5l116 -70v-4l-116 -71l116 -70v-5l-122 -62l122 -74v-14'], + 0x299B: [501,-40,544,65,480,'321 384l-60 117l-28 -46l50 -89c-35 -18 -88 -61 -110 -97c-21 -34 -37 -102 -36 -141h-43l-29 -45h72v-43h36v41h307l-146 269l29 16l-14 31zM204 250c18 30 66 70 95 83l105 -205h-233c0 32 15 94 33 122'], + 0x299C: [541,0,668,64,605,'281 59v158h-158v-158h158zM311 59h294v-59h-541v541h59v-294h188v-188'], + 0x299D: [541,0,668,64,605,'269 151c0 -31 -25 -55 -55 -55c-32 0 -56 24 -56 55s24 56 56 56c30 0 55 -25 55 -56zM383 59c-3 155 -115 281 -260 285v-285h260zM413 59h192v-59h-541v541h59v-167c161 0 283 -128 290 -315'], + 0x299E: [474,-68,535,65,471,'460 338l-5 -24c-11 9 -25 19 -51 19c-27 0 -43 -18 -43 -36c0 -30 36 -36 41 -37c14 -4 68 -12 68 -65c0 -33 -28 -64 -67 -64c-19 0 -43 5 -70 21l5 24c25 -21 52 -24 64 -24c28 0 44 20 44 40c0 35 -40 40 -49 42c-56 13 -60 46 -60 60c0 29 26 59 68 59 c22 0 38 -5 55 -15zM471 68h-406l295 406h53l-269 -363h327v-43'], + 0x299F: [322,-73,535,65,471,'471 73h-406l331 249h74l-271 -206h272v-43'], + 0x29A0: [410,81,544,69,476,'175 344l-106 66v-54l90 -50c-21 -33 -43 -97 -43 -140c0 -40 21 -106 43 -139l-90 -54v-54l106 70l23 -37l28 19l-21 35l271 160l-271 157l16 28l-29 18zM152 167c0 35 20 94 38 120l196 -120l-198 -122c-10 16 -36 73 -36 122'], + 0x29A1: [405,2,621,65,557,'491 299l66 106h-54l-50 -90c-34 21 -98 43 -140 43c-40 0 -106 -21 -140 -43l-54 90h-54l70 -106l-36 -23l18 -28l36 21l160 -271l156 271l28 -16l18 29zM313 322c36 0 94 -20 120 -38l-120 -196l-122 198c16 10 74 36 122 36'], + 0x29A2: [559,18,535,65,471,'65 559h406l-353 -577h-53l327 534h-327v43'], + 0x29A3: [559,18,535,65,471,'65 -18h406l-353 577h-53l327 -534h-327v-43'], + 0x29A4: [615,72,535,65,471,'471 -72h-406v55h406v-55zM471 38h-406l353 577h53l-327 -534h327v-43'], + 0x29A5: [615,72,535,65,471,'65 -72h406v55h-406v-55zM65 38h406l-353 577h-53l327 -534h-327v-43'], + 0x29A6: [380,-162,722,65,658,'658 162h-319l-274 218h64l232 -175h297v-43'], + 0x29A7: [379,-161,722,65,658,'658 379h-319l-274 -218h64l232 175h297v43'], + 0x29A8: [589,41,544,65,480,'339 506l-127 -22l-9 30l205 75l40 -216l-30 -8l-45 121l-111 -201c35 -18 88 -61 110 -97c21 -34 37 -102 36 -141h43l29 -45h-72v-43h-36v41h-307l146 269l-29 16l14 31l28 -13zM341 169c-18 30 -66 70 -95 83l-105 -205h233c0 32 -15 94 -33 122'], + 0x29A9: [589,41,544,65,480,'206 506l127 -22l9 30l-205 75l-40 -216l30 -8l45 121l111 -201c-35 -18 -88 -61 -110 -97c-21 -34 -37 -102 -36 -141h-43l-29 -45h72v-43h36v41h307l-146 269l29 16l-14 31l-28 -13zM204 169c18 30 66 70 95 83l105 -205h-233c0 32 15 94 33 122'], + 0x29AA: [589,41,544,65,480,'339 42l-127 22l-9 -30l205 -75l40 216l-30 8l-45 -121l-111 201c35 18 88 61 110 97c21 34 37 102 36 141h43l29 45h-72v43h-36v-41h-307l146 -269l-29 -16l14 -31l28 13zM341 379c-18 -30 -66 -70 -95 -83l-105 205h233c0 -32 -15 -94 -33 -122'], + 0x29AB: [589,41,544,65,480,'206 42l127 22l9 -30l-205 -75l-40 216l30 8l45 -121l111 201c-35 18 -88 61 -110 97c-21 34 -37 102 -36 141h-43l-29 45h72v43h36v-41h307l-146 -269l29 -16l-14 -31l-28 13zM204 379c18 -30 66 -70 95 -83l105 205h-233c0 -32 15 -94 33 -122'], + 0x29AC: [479,-63,759,65,695,'612 337l-22 -126l30 -10l75 206l-216 40l-8 -30l121 -46l-201 -110c-18 34 -61 88 -97 110c-34 20 -102 36 -141 36v42l-45 30v-72h-43v-36h41v-308l269 146l16 -28l31 14l-13 28zM275 339c30 -18 70 -66 83 -94l-205 -106v234c32 0 94 -16 122 -34'], + 0x29AD: [479,-63,759,65,695,'148 337l22 -126l-30 -10l-75 206l216 40l8 -30l-121 -46l201 -110c18 34 61 88 97 110c34 20 102 36 141 36v42l45 30v-72h43v-36h-41v-308l-269 146l-16 -28l-31 14l13 28zM485 339c-30 -18 -70 -66 -83 -94l205 -106v234c-32 0 -94 -16 -122 -34'], + 0x29AE: [479,-63,759,65,695,'612 205l-22 126l30 10l75 -206l-216 -40l-8 30l121 46l-201 110c-18 -34 -61 -88 -97 -110c-34 -20 -102 -36 -141 -36v-42l-45 -30v72h-43v36h41v308l269 -146l16 28l31 -14l-13 -28zM275 203c30 18 70 66 83 94l-205 106v-234c32 0 94 16 122 34'], + 0x29AF: [479,-63,759,65,695,'148 205l22 126l-30 10l-75 -206l216 -40l8 30l-121 46l201 110c18 -34 61 -88 97 -110c34 -20 102 -36 141 -36v-42l45 -30v72h43v36h-41v308l-269 -146l-16 28l-31 -14l13 -28zM485 203c-30 18 -70 66 -83 94l205 106v-234c-32 0 -94 16 -122 34'], + 0x29B0: [578,26,733,65,668,'65 275c0 -166 134 -301 301 -301c69 0 133 24 184 62l57 -62l34 34l-55 61c51 55 82 127 82 206c0 168 -135 303 -302 303c-69 0 -131 -23 -181 -62l-56 62l-35 -34l54 -60c-52 -54 -83 -128 -83 -209zM112 275c0 68 25 129 67 174l339 -377c-42 -31 -94 -50 -152 -50 c-140 0 -254 113 -254 253zM216 482c42 30 94 48 150 48c141 0 254 -114 254 -255c0 -65 -25 -125 -66 -170'], + 0x29B1: [714,13,733,65,668,'668 288c0 -166 -134 -301 -301 -301c-69 0 -133 24 -184 62l-57 -62l-34 34l55 61c-51 55 -82 127 -82 206c0 168 135 303 302 303c69 0 131 -23 181 -62l56 62l35 -34l-54 -60c52 -54 83 -128 83 -209zM621 288c0 68 -25 129 -67 174l-339 -377c42 -31 94 -50 152 -50 c140 0 254 113 254 253zM517 495c-42 30 -94 48 -150 48c-141 0 -254 -114 -254 -255c0 -65 25 -125 66 -170zM668 655h-603v59h603v-59'], + 0x29B2: [852,13,733,65,668,'372 852c53 0 98 -45 98 -100c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99zM371 816c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64s-25 64 -61 64zM668 288c0 -166 -134 -301 -301 -301c-69 0 -133 24 -184 62l-57 -62l-34 34 l55 61c-51 55 -82 127 -82 206c0 168 135 303 302 303c69 0 131 -23 181 -62l56 62l35 -34l-54 -60c52 -54 83 -128 83 -209zM621 288c0 68 -25 129 -67 174l-339 -377c42 -31 94 -50 152 -50c140 0 254 113 254 253zM517 495c-42 30 -94 48 -150 48 c-141 0 -254 -114 -254 -255c0 -65 25 -125 66 -170'], + 0x29B3: [871,13,733,65,668,'211 766h184l-70 85l18 20l116 -121l-116 -122l-18 19l70 86h-184v33zM668 288c0 -166 -134 -301 -301 -301c-69 0 -133 24 -184 62l-57 -62l-34 34l55 61c-51 55 -82 127 -82 206c0 168 135 303 302 303c69 0 131 -23 181 -62l56 62l35 -34l-54 -60 c52 -54 83 -128 83 -209zM621 288c0 68 -25 129 -67 174l-339 -377c42 -31 94 -50 152 -50c140 0 254 113 254 253zM517 495c-42 30 -94 48 -150 48c-141 0 -254 -114 -254 -255c0 -65 25 -125 66 -170'], + 0x29B4: [871,13,733,65,668,'459 766h-184l70 85l-18 20l-116 -121l116 -122l18 19l-70 86h184v33zM668 288c0 -166 -134 -301 -301 -301c-69 0 -133 24 -184 62l-57 -62l-34 34l55 61c-51 55 -82 127 -82 206c0 168 135 303 302 303c69 0 131 -23 181 -62l56 62l35 -34l-54 -60 c52 -54 83 -128 83 -209zM621 288c0 68 -25 129 -67 174l-339 -377c42 -31 94 -50 152 -50c140 0 254 113 254 253zM517 495c-42 30 -94 48 -150 48c-141 0 -254 -114 -254 -255c0 -65 25 -125 66 -170'], + 0x29B5: [587,46,761,18,744,'698 246h46v49h-45c-13 163 -151 292 -317 292c-168 0 -305 -129 -317 -292h-47v-49h46c13 -163 150 -292 318 -292c166 0 303 129 316 292zM650 295h-538c12 137 128 245 270 245c138 0 256 -108 268 -245zM650 245c-13 -137 -130 -244 -268 -244 c-141 0 -258 107 -271 244h539'], + 0x29B6: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 138 -108 255 -246 268v-537c138 12 246 129 246 269zM312 539c-138 -13 -247 -130 -247 -268c0 -140 109 -257 246 -269'], + 0x29B7: [587,46,668,18,652,'376 59v432h45v-432h-45zM248 59v432h45v-432h-45zM652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270 c147 0 269 121 269 270'], + 0x29B8: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -121 269 -269 269c-66 0 -126 -24 -173 -63l379 -379c39 46 63 107 63 173zM507 64l-379 379c-39 -46 -63 -107 -63 -172 c0 -149 122 -270 270 -270c65 0 126 24 172 63'], + 0x29B9: [587,46,668,18,652,'511 127h-349v33h158v292h33v-292h158v-33zM652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270 c147 0 269 121 269 270'], + 0x29BA: [587,46,668,18,652,'344 540v-250h261c0 148 -114 250 -261 250zM327 540c-148 0 -262 -102 -263 -250h263v250zM652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM605 257h-540c0 -149 121 -256 270 -256 c147 0 269 108 270 256'], + 0x29BB: [587,46,668,18,652,'579 61l68 -67l-33 -35l-72 73c-58 -62 -116 -78 -207 -78c-86 0 -148 21 -205 76l-74 -70l-35 36l72 70c-43 46 -74 115 -75 205c4 88 24 149 74 208l-71 71l33 34l74 -74c66 53 128 76 207 77c82 -7 144 -25 205 -77l66 69l33 -33l-63 -70c55 -57 72 -118 76 -205 c0 -84 -20 -153 -73 -210zM507 477c-47 39 -107 63 -172 63c-66 0 -127 -24 -173 -63l173 -173zM604 271c0 65 -24 126 -63 172l-173 -172l173 -173c39 46 63 107 63 173zM301 271l-173 172c-39 -46 -63 -107 -63 -172c0 -66 24 -127 63 -173zM507 64l-172 173l-173 -173 c46 -39 107 -63 173 -63c65 0 125 24 172 63'], + 0x29BC: [587,46,668,18,652,'236 442c19 -19 20 -54 -1 -74c-20 -20 -54 -19 -73 1c-19 19 -20 54 -1 73c20 19 56 19 75 0zM525 423l-343 -343l-38 38l343 343zM506 172c19 -19 20 -54 0 -75c-20 -19 -54 -18 -73 1c-20 19 -20 54 -1 73c20 20 55 20 74 1zM652 271c0 -175 -143 -317 -317 -317 c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 121 269 270'], + 0x29BD: [858,96,643,18,624,'349 744l155 -127l35 32l-210 209l-221 -205l34 -32l155 123v-154c-75 -5 -145 -40 -199 -99c-172 -188 -46 -482 199 -503v-84h48l1 84c262 21 376 345 178 525c-50 47 -115 71 -178 76zM133 460c45 49 103 78 164 83v-507c-207 22 -304 270 -164 424zM346 543 c207 -26 303 -271 163 -426c-44 -47 -103 -75 -163 -80v506'], + 0x29BE: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 147 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 122 269 270zM493 271c0 -87 -71 -157 -157 -157 c-88 0 -159 69 -159 157c0 87 71 156 158 156c86 0 157 -70 157 -156h1zM445 271c0 60 -49 109 -110 109s-111 -47 -111 -109c0 -63 50 -110 111 -110s110 48 110 110'], + 0x29BF: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 147 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 122 269 270zM493 271c0 -87 -71 -157 -157 -157 c-88 0 -159 69 -159 157c0 87 71 156 158 156c86 0 157 -70 157 -156h1'], + 0x29C0: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM486 494c-44 29 -98 46 -151 46c-137 0 -253 -104 -268 -239zM604 271c0 67 -26 134 -72 184l-407 -186l404 -184c48 50 75 117 75 186zM484 46l-417 192 c16 -134 133 -237 268 -237c52 0 105 16 149 45'], + 0x29C1: [587,46,668,18,652,'652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM602 301c-15 135 -130 239 -267 239c-54 0 -108 -17 -152 -46zM544 269l-406 186c-46 -50 -73 -117 -73 -184c0 -69 28 -136 75 -186zM602 238l-417 -192 c44 -29 97 -45 150 -45c134 0 251 103 267 237'], + 0x29C2: [587,46,875,18,858,'760 370c53 0 98 -45 98 -100c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99zM759 334c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64s-25 64 -61 64zM652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317 c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270c147 0 269 121 269 270'], + 0x29C3: [587,46,942,18,925,'925 296h-269v48h269v-48zM925 196h-269v48h269v-48zM652 271c0 -175 -143 -317 -317 -317c-175 0 -317 142 -317 317c0 174 142 316 317 316c174 0 317 -142 317 -316zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270 c147 0 269 121 269 270'], + 0x29C4: [541,0,668,64,605,'64 0h541v541h-541v-541zM123 101v381h381zM165 59l381 381v-381h-381'], + 0x29C5: [541,0,668,64,605,'605 0h-541v541h541v-541zM546 101v381h-381zM504 59l-381 381v-381h381'], + 0x29C6: [541,0,668,64,605,'605 0h-541v541h541v-541zM546 59v423h-423v-423h423zM498 245l-9 -8l-138 20l68 -122v-10l-68 -26l-10 4l-18 142l-106 -88h-10l-36 51l5 9l131 54l-131 64l-3 10l44 52h10l95 -98l26 143l9 4l62 -19l3 -15l-69 -125l139 24l6 -4v-62'], + 0x29C7: [541,0,668,64,605,'493 271c0 -87 -71 -157 -157 -157c-88 0 -159 69 -159 157c0 87 71 156 158 156c86 0 157 -70 157 -156h1zM445 271c0 60 -49 109 -110 109s-111 -47 -111 -109c0 -63 50 -110 111 -110s110 48 110 110zM605 0h-541v541h541v-541zM546 59v423h-423v-423h423'], + 0x29C8: [541,0,668,64,605,'497 108h-325v325h325v-325zM438 167v207h-207v-207h207zM605 0h-541v541h541v-541zM546 59v423h-423v-423h423'], + 0x29C9: [645,147,911,64,848,'848 -147h-541v541h541v-541zM789 -88v423h-423v-423h423zM605 104h-541v541h541v-541zM546 163v423h-423v-423h423'], + 0x29CA: [633,92,660,65,596,'381 577c0 -31 -25 -55 -55 -55c-32 0 -56 24 -56 55s24 56 56 56c30 0 55 -25 55 -56zM596 -92h-531l255 544h21zM511 -41l-182 391l-182 -391h364'], + 0x29CB: [463,181,660,65,596,'596 -181h-531v59h531v-59zM596 -81h-531l255 544h21zM511 -30l-182 391l-182 -391h364'], + 0x29CC: [544,0,660,65,596,'372 268l-4 -20c-9 8 -21 16 -41 16c-23 0 -36 -15 -36 -29c0 -38 49 -21 76 -50c5 -6 13 -18 13 -33c0 -27 -23 -52 -55 -52c-15 0 -34 4 -56 17l4 20c20 -17 42 -20 52 -20c22 0 36 16 36 32c0 42 -51 25 -76 52c-9 10 -13 20 -13 31c0 24 21 48 55 48 c18 0 31 -4 45 -12zM596 0h-531l255 544h21zM511 51l-182 391l-182 -391h364'], + 0x29CD: [544,3,671,15,650,'541 0h-417c-16 0 -16 0 -109 -3v30l37 3c22 2 41 27 54 56l214 458h21l218 -465c19 -23 32 -47 54 -49l37 -3v-30c-93 3 -93 3 -109 3zM511 51l-182 391l-182 -391h364'], + 0x29CE: [670,117,833,65,769,'65 107l704 -224v469l-704 -224v-21zM165 118l550 151v-303zM769 425l-704 -224v469l704 -224v-21zM669 436l-550 151v-303'], + 0x29CF: [514,-25,953,65,889,'774 25l-709 234v21l709 234v-489zM722 108v323l-507 -161zM833 30v469h56v-469h-56'], + 0x29D0: [514,-25,953,65,889,'180 25l709 234v21l-709 234v-489zM232 108v323l507 -161zM121 30v469h-56v-469h56'], + 0x29D1: [515,-23,758,65,694,'694 23l-316 210l-313 -210v492l313 -208l316 208v-492zM629 141v260l-193 -130'], + 0x29D2: [515,-23,758,65,694,'694 23l-316 210l-313 -210v492l313 -208l316 208v-492zM322 271l-194 130v-260'], + 0x29D3: [515,-23,758,65,694,'694 23l-316 210l-313 -210v492l313 -208l316 208v-492'], + 0x29D4: [515,-23,758,65,694,'694 23l-316 210l-313 -210v492l313 -208l316 208v-71l-258 -173l258 -173v-75'], + 0x29D5: [518,-26,758,65,694,'694 26l-313 208l-316 -208v71l258 174l-258 172v75l316 -210l313 210v-492'], + 0x29D6: [584,46,620,64,556,'64 -46l210 316l-210 314h492l-208 -314l208 -316h-492zM182 20h260l-130 192zM312 326l130 194h-260'], + 0x29D7: [584,46,620,64,556,'64 -46l210 316l-210 314h492l-208 -314l208 -316h-492'], + 0x29D8: [567,26,269,66,204,'66 567l138 -82v-4l-116 -71l116 -70v-5l-115 -68l-1 -5l116 -70v-4l-116 -71l116 -70v-5l-138 -68v12l117 59l-116 70v4l116 71l-116 70v5l116 73l-116 70v4l116 71l-117 70v14'], + 0x29D9: [568,25,269,66,204,'204 568l-138 -82v-4l116 -71l-116 -70v-5l115 -68l1 -5l-116 -70v-4l116 -71l-116 -70v-5l138 -68v12l-117 59l116 70v4l-116 71l116 70v5l-116 73l116 70v4l-116 71l117 70v14'], + 0x29DA: [568,25,438,66,373,'235 568l138 -82v-4l-116 -71l116 -70v-5l-115 -68l-1 -5l116 -70v-4l-116 -71l116 -70v-5l-138 -68v12l117 59l-116 70v4l116 71l-116 70v5l116 73l-116 70v4l116 71l-117 70v14zM66 568l138 -82v-4l-116 -71l116 -70v-5l-115 -68l-1 -5l116 -70v-4l-116 -71l116 -70v-5 l-138 -68v12l117 59l-116 70v4l116 71l-116 70v5l116 73l-116 70v4l116 71l-117 70v14'], + 0x29DB: [568,25,438,66,373,'373 568l-138 -82v-4l116 -71l-116 -70v-5l115 -68l1 -5l-116 -70v-4l116 -71l-116 -70v-5l138 -68v12l-117 59l116 70v4l-116 71l116 70v5l-116 73l116 70v4l-116 71l117 70v14zM204 568l-138 -82v-4l116 -71l-116 -70v-5l115 -68l1 -5l-116 -70v-4l116 -71l-116 -70v-5 l138 -68v12l-117 59l116 70v4l-116 71l116 70v5l-116 73l116 70v4l-116 71l117 70v14'], + 0x29DC: [463,-65,897,55,835,'783 237l52 1c0 -106 -64 -173 -180 -173c-94 0 -170 78 -219 151c-47 -64 -140 -150 -223 -150c-104 0 -158 82 -158 178c0 108 74 219 190 219c89 0 174 -76 218 -148c78 -136 131 -209 210 -207c76 0 89 76 110 129zM418 245c-31 59 -118 179 -189 179 c-76 0 -112 -58 -112 -128c0 -72 42 -174 126 -174c58 0 144 76 175 123'], + 0x29DD: [570,29,897,55,843,'604 412c-6 134 -91 158 -141 158c-54 0 -135 -25 -141 -158h30c3 57 49 98 111 98s108 -41 111 -98h30zM843 190c0 -105 -72 -219 -188 -219c-94 0 -170 78 -219 151c-47 -64 -140 -150 -223 -150c-104 0 -158 82 -158 178c0 108 74 219 190 219c89 0 174 -76 218 -148 c53 63 137 146 224 146c105 0 156 -81 156 -177zM783 142c0 71 -43 173 -127 173c-59 0 -143 -77 -175 -125c41 -58 113 -176 192 -176c75 0 110 58 110 128zM418 151c-31 59 -118 179 -189 179c-76 0 -112 -58 -112 -128c0 -72 42 -174 126 -174c58 0 144 76 175 123'], + 0x29DE: [615,100,897,55,843,'481 336c53 59 129 125 206 125c105 0 156 -81 156 -177c0 -105 -72 -219 -188 -219c-69 0 -128 42 -174 94v-259h-59v298c-50 -61 -134 -132 -209 -132c-104 0 -158 82 -158 178c0 108 74 219 190 219c66 0 130 -42 177 -93v245h59v-279zM783 236c0 71 -43 173 -127 173 c-59 0 -143 -77 -175 -125c41 -58 113 -176 192 -176c75 0 110 58 110 128zM418 245c-31 59 -118 179 -189 179c-76 0 -112 -58 -112 -128c0 -72 42 -174 126 -174c58 0 144 76 175 123'], + 0x29DF: [446,-94,1363,65,1299,'1299 269c0 -97 -79 -175 -177 -175c-88 0 -161 63 -175 147h-530c-14 -84 -88 -147 -175 -147c-99 0 -177 78 -177 175c0 98 78 177 177 177c87 0 160 -63 174 -146h532c14 83 86 146 174 146c98 0 177 -79 177 -177zM1246 269c0 69 -55 125 -124 125 s-124 -56 -124 -125c0 -68 55 -123 124 -123s124 55 124 123zM366 269c0 69 -55 125 -124 125s-124 -56 -124 -125c0 -68 55 -123 124 -123s124 55 124 123'], + 0x29E0: [541,0,668,64,605,'605 0h-541v541h541v-541zM583 482h-460v-436h460v436'], + 0x29E1: [592,39,844,65,780,'780 -39h-714v56h714v-56zM65 113h714v479l-714 -458v-21zM175 164l550 335v-335h-550'], + 0x29E2: [469,-73,822,62,760,'62 73v396h40v-298c0 -18 16 -34 52 -34h254v332h38v-332h232c26 0 42 20 42 48v274h40v-386h-698'], + 0x29E3: [539,-7,673,51,623,'401 135l-68 -128h-57l67 128h-155l-68 -128l-54 1l66 127h-81v57h103l80 138h-183v56h210l75 153h63l-81 -153h154l78 153h53l-75 -153h95v-56h-120l-71 -138h191v-57h-222zM374 192l73 138h-158l-80 -138h165zM132 135'], + 0x29E4: [618,75,673,51,623,'551 610c-10 -65 -43 -111 -113 -111c-72 0 -114 80 -172 80c-43 0 -70 -27 -86 -65l-15 6c17 59 51 98 115 98c67 0 115 -81 172 -81c50 0 73 37 84 80zM401 53l-68 -128h-57l67 128h-155l-68 -128l-54 1l66 127h-81v57h103l80 138h-183v56h210l75 153h63l-81 -153h154 l78 153h53l-75 -153h95v-56h-120l-71 -138h191v-57h-222zM374 110l73 138h-158l-80 -138h165zM132 53'], + 0x29E5: [635,65,669,65,605,'422 300h-156l31 121l158 -1zM359 62l-40 -127h56l40 127h190v59h-178l35 120h143v59h-127l33 120h94v59h-79l44 156h-54l-46 -156h-153l43 156h-56l-43 -156h-196v-59h176l-31 -120h-145v-59h128l-34 -120h-94v-59h78l-34 -127h55l35 127h160zM371 121h-156l34 120h157'], + 0x29E6: [541,0,761,65,697,'124 429h514v112h59v-541h-59v142h-514v-142h-59v541h59v-112zM124 370v-169h514v169h-514'], + 0x29E7: [542,-10,605,51,555,'333 202h222v-56h-222v-136h-60v136h-222v56h222v138h-222v56h222v146h60v-146h222v-56h-222v-138'], + 0x29E8: [543,2,660,65,596,'550 514h-219v-483zM596 543l-255 -545h-21l-255 545h531'], + 0x29E9: [543,2,660,65,596,'111 514h219v-483zM65 543l255 -545h21l255 545h-531'], + 0x29EA: [739,195,761,47,715,'354 -84l-154 128l-36 -33l216 -206l216 206l-34 33l-156 -128v134l309 330l-334 359l-334 -359l307 -330v-134'], + 0x29EC: [587,281,668,18,652,'309 -44c-163 13 -291 149 -291 315c0 174 142 316 317 316c174 0 317 -142 317 -316c0 -166 -130 -301 -291 -315v-126l156 128l34 -33l-216 -206l-216 206l36 33l154 -128v126zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270 c147 0 269 121 269 270'], + 0x29ED: [587,281,668,18,652,'309 -44c-163 13 -291 149 -291 315c0 174 142 316 317 316c174 0 317 -142 317 -316c0 -166 -130 -301 -291 -315v-126l156 128l34 -33l-216 -206l-216 206l36 33l154 -128v126'], + 0x29EE: [725,183,668,64,605,'362 0v-125h169v-58h-394v58h167v125h-240v541h240v126h-167v58h394v-58h-169v-126h243v-541h-243zM546 59v423h-423v-423h423'], + 0x29EF: [725,183,668,64,605,'362 0v-125h169v-58h-394v58h167v125h-240v541h240v126h-167v58h394v-58h-169v-126h243v-541h-243'], + 0x29F0: [875,240,761,47,715,'636 332l-255 274l-254 -274l254 -274zM408 3v-185h169v-58h-394v58h167v185l-303 329l303 327v158h-167v58h394v-58h-169v-158l307 -327'], + 0x29F1: [814,301,761,47,715,'408 -58v-185h169v-58h-394v58h167v185l-303 329l303 327v158h-167v58h394v-58h-169v-158l307 -327'], + 0x29F2: [802,290,669,18,652,'304 -46c-160 16 -286 153 -286 317s124 300 286 315v158h-167v58h394v-58h-169v-158c162 -13 290 -150 290 -315c0 -166 -129 -304 -290 -317v-186h169v-58h-394v58h167v186zM604 271c0 148 -122 269 -269 269c-149 0 -270 -121 -270 -269c0 -149 121 -270 270 -270 c147 0 269 121 269 270'], + 0x29F3: [802,290,669,18,652,'304 -46c-160 16 -286 153 -286 317s124 300 286 315v158h-167v58h394v-58h-169v-158c162 -13 290 -150 290 -315c0 -166 -129 -304 -290 -317v-186h169v-58h-394v58h167v186'], + 0x29F4: [518,-23,1206,85,1142,'1142 272l-206 -217l-32 34l125 152h-771v59h771l-125 152l32 34zM202 458c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60zM202 80c0 -39 -37 -57 -59 -57s-58 17 -58 57c0 34 27 60 58 60c32 0 59 -27 59 -60'], + 0x29F6: [801,171,581,87,495,'433 752h-346v49h346v-49zM495 712l-352 -883h-56l350 883h58'], + 0x29F7: [714,169,463,59,405,'250 303l-130 411h-55l130 -411h-136v-49h150l135 -423h55l-134 423h140v49h-155'], + 0x29FA: [512,-7,605,51,555,'402 289v223h-56v-223h-87v223h-56v-223h-152v-56h152v-226h56v226h87v-226h56v226h153v56h-153'], + 0x29FB: [512,-7,605,51,555,'148 233v-226h55v226h72v-226h56v226h71v-226h56v226h97v56h-97v223h-56v-223h-71v223h-56v-223h-72v223h-55v-223h-97v-56h97'], + 0x29FC: [750,203,533,65,469,'450 -203c0 0 52 379 -385 449v46c437 70 385 456 385 458l19 -60c0 -118 7 -294 -286 -419c283 -55 289 -413 286 -414'], + 0x29FD: [750,203,533,64,469,'84 -203c0 0 -52 379 385 449v46c-437 70 -385 456 -385 458l-19 -60c0 -118 -7 -294 286 -419c-283 -55 -289 -413 -286 -414'], + 0x29FE: [560,0,678,60,619,'619 199l-260 62l66 -261h-170l65 261l-260 -67v164l260 -58l-64 260h169l-66 -260l260 64v-165'], + 0x29FF: [367,-197,678,60,619,'359 264l260 -62v165l-260 -64h-39l-260 58v-164l260 67h39'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Symbols/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Variants/Regular/Main.js new file mode 100644 index 0000000..314236a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/Variants/Regular/Main.js @@ -0,0 +1,89 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['AsanaMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'AsanaMathJax_Variants', + id: 'ASANAMATHVARIANTS', + 0x20: [0,0,249,0,0,''], + 0xE200: [475,20,499,20,471,'471 245c0 -144 -79 -265 -234 -265c-143 0 -217 96 -217 234c0 142 87 261 237 261c139 0 214 -97 214 -230zM387 232c0 90 -26 208 -139 208c-117 0 -145 -121 -145 -216c0 -93 30 -209 144 -209c120 0 140 123 140 217'], + 0xE201: [483,2,499,63,426,'426 3l-5 -5c-108 3 -217 3 -324 0l-6 4v20l5 4c144 6 126 6 126 150v100c0 25 -1 108 -6 119l-8 3c-44 -9 -85 -31 -129 -40l-7 3c-6 11 -9 22 -9 34l4 8c31 10 217 44 281 80l10 -7v-35c-19 -2 -37 -3 -47 -21s-8 -327 -8 -340c0 -67 69 -51 118 -53l5 -5v-19'], + 0xE202: [474,2,499,20,465,'465 3l-4 -5c-144 4 -289 3 -434 0l-7 8l35 60c81 42 272 147 272 250c0 63 -60 90 -114 90c-56 0 -94 -22 -134 -59l-8 -2l-16 10l-1 7c24 26 43 57 64 84c37 20 79 28 121 28c84 0 175 -35 175 -134c0 -118 -172 -206 -258 -259v-3c31 -2 63 -3 95 -3 c70 0 136 1 206 11l8 -6c-2 -26 -2 -51 0 -77'], + 0xE203: [474,240,499,9,437,'437 77c0 -176 -205 -313 -366 -317c-17 24 -37 45 -59 64l-3 8l6 9l7 2c34 -15 70 -22 106 -22c117 0 223 94 223 213c0 78 -39 126 -119 126c-29 0 -56 -6 -83 -18l-5 4l3 30c71 19 158 49 158 137c0 62 -43 92 -101 92c-53 0 -87 -24 -126 -58l-7 -2l-16 10l-1 7 c64 76 62 112 175 112c75 0 158 -33 158 -120c0 -54 -48 -110 -90 -138c79 -7 140 -55 140 -139'], + 0xE204: [480,240,499,3,467,'467 3l-4 -4c-24 2 -47 3 -71 3c-12 0 -24 0 -34 -1c-1 -22 -1 -44 -1 -67c0 -48 0 -96 4 -143c-27 -9 -54 -19 -80 -31l-14 8c5 60 10 120 10 180c0 18 -1 35 -1 53c-24 1 -48 1 -72 1c-63 0 -127 -1 -191 -4l-10 15c75 138 203 330 309 446c15 5 31 13 46 21l7 -3 c-14 -136 -5 -277 -7 -415h17c29 0 59 2 88 5l4 -5c-1 -9 -1 -19 -1 -28c0 -11 0 -20 1 -31zM277 196v39l-1 124c-71 -98 -137 -195 -201 -297l110 -1l91 1'], + 0xE205: [468,240,499,8,445,'445 463c-8 -23 -14 -46 -18 -70l-8 -7h-268c-6 -52 -9 -107 -9 -161l10 -4c29 20 66 24 101 24c94 0 173 -58 173 -158c0 -172 -193 -305 -348 -327c-22 21 -45 41 -70 59l6 18c29 -10 59 -15 89 -15c126 0 240 93 240 223c0 80 -56 133 -135 133c-33 0 -63 -9 -94 -22 l-11 6c1 25 1 52 1 77c0 75 -2 149 -9 224l7 4c60 -2 120 -4 180 -4c52 0 104 1 157 5'], + 0xE206: [699,20,499,31,468,'468 225c0 -126 -89 -245 -223 -245c-151 0 -214 128 -214 263c0 223 135 400 352 456l37 -17v-6c-168 -54 -274 -163 -292 -342c43 39 100 81 160 81c116 0 180 -76 180 -190zM381 192c0 81 -37 162 -129 162c-93 0 -131 -60 -131 -147c0 -84 30 -190 133 -190 c95 0 127 94 127 175'], + 0xE207: [469,240,499,35,489,'43 -233c13 20 281 450 359 605l-8 8c-41 1 -83 3 -125 3c-33 0 -164 5 -185 -17c-10 -25 -13 -69 -16 -97l-5 -4h-24l-4 4c5 34 4 69 4 103c0 28 2 61 -3 88l8 9c147 -5 293 -9 440 -5l5 -5v-19c-107 -185 -267 -475 -340 -675h-22c-23 0 -46 -3 -69 -5'], + 0xE208: [684,17,499,32,463,'463 203c0 -125 -114 -220 -235 -220c-106 0 -196 62 -196 175c0 86 57 149 132 184v4c-64 34 -110 80 -110 157c0 117 97 181 205 181c87 0 176 -43 176 -141c0 -77 -59 -126 -119 -162v-4c79 -38 147 -73 147 -174zM367 529c0 74 -44 123 -119 123 c-67 0 -120 -39 -120 -111c0 -85 85 -117 150 -148c53 33 89 71 89 136zM385 163c0 97 -107 134 -182 165c-64 -37 -102 -84 -102 -162c0 -86 51 -149 140 -149c86 0 144 61 144 146'], + 0xE209: [472,247,499,28,466,'466 209c0 -220 -137 -404 -351 -456l-38 18v5c169 53 274 164 291 343c-41 -40 -100 -82 -159 -82c-116 0 -181 77 -181 189c0 127 90 246 224 246c151 0 214 -128 214 -263zM376 244c0 84 -30 191 -133 191c-96 0 -126 -94 -126 -175c0 -82 36 -162 128 -162 c94 0 131 60 131 146'], + 0xE20A: [692,41,915,7,908,'176 475c0 61 209 210 356 210c81 0 162 -11 243 -11c38 0 76 3 111 18l7 -5c-71 -116 -77 -311 -77 -446c0 -33 16 -197 58 -197c11 0 24 5 34 10v-14c-25 -23 -102 -66 -135 -66c-74 0 -67 326 -62 389c-71 -37 -124 -50 -203 -47c-13 -31 -26 -61 -42 -91 c-56 -105 -193 -266 -323 -266c-72 0 -136 41 -136 119c0 29 8 61 28 84l7 -3c0 -78 55 -145 136 -145c158 0 209 184 258 303c-4 1 -10 1 -14 1c-29 0 -69 -11 -84 -40c-6 4 -12 11 -12 20c0 55 80 74 123 76c45 102 94 220 204 265c-36 1 -73 2 -109 2 c-108 0 -296 -43 -296 -181c0 -28 9 -56 23 -80l-7 -1c-30 0 -88 66 -88 96zM764 643c-107 -27 -207 -168 -236 -270c34 -2 69 -4 103 -4c29 0 57 11 84 24c12 84 27 168 49 250'], + 0xE20B: [720,23,755,7,748,'323 -23c-219 0 -203 35 -259 35c-18 0 -35 -7 -47 -20l-10 5c9 36 49 104 92 104c9 0 19 -5 28 -5c64 0 110 141 122 191c21 92 24 191 74 273c32 52 92 105 143 136c-149 0 -304 -102 -304 -264c0 -34 10 -69 35 -93l-6 -1c-56 0 -110 61 -110 116 c0 177 261 266 406 266c102 0 261 -12 261 -148c0 -94 -145 -164 -222 -186c79 -11 194 -38 194 -138c0 -147 -196 -253 -324 -268c-24 -3 -49 -3 -73 -3zM649 579c0 67 -89 112 -148 112c-73 0 -127 -230 -136 -289c21 -3 41 -5 62 -5c105 0 222 66 222 182zM604 207 c0 149 -128 158 -244 158c-31 -161 -55 -202 -201 -280c78 -32 170 -49 255 -49c97 0 190 68 190 171'], + 0xE20C: [704,52,681,7,675,'675 549c0 -53 -81 -104 -129 -108c27 22 34 57 34 90c0 65 -52 133 -120 133c-216 0 -341 -211 -341 -407c0 -122 66 -246 203 -246c104 0 212 77 200 190c35 -3 51 -42 51 -73c0 -120 -202 -180 -298 -180c-175 0 -268 137 -268 300c0 240 230 456 467 456 c87 0 201 -55 201 -155'], + 0xE20D: [707,31,904,7,898,'898 412c0 -280 -212 -443 -479 -443c-34 0 -66 2 -100 2c-90 0 -182 44 -251 44c-19 0 -37 -6 -51 -19l-10 4c12 60 75 81 129 81c102 0 128 174 145 248c34 151 57 256 199 340c-131 -3 -309 -102 -309 -249c0 -23 6 -48 28 -60c-5 -3 -11 -4 -17 -4 c-42 0 -84 62 -84 101c0 190 328 250 474 250c167 0 326 -119 326 -295zM786 384c0 145 -82 290 -242 290c-105 0 -133 -230 -151 -307c-33 -139 -72 -232 -207 -298c92 -18 182 -54 277 -54c197 0 323 186 323 369'], + 0xE20E: [719,19,654,7,647,'402 719c132 0 227 -67 227 -107c0 -21 -78 -78 -100 -78l-7 1c13 7 20 21 20 36c0 71 -73 116 -138 116c-72 0 -170 -51 -170 -133c0 -95 113 -133 191 -133c21 0 41 3 60 13l4 -5c-7 -22 -26 -43 -50 -43c-94 0 -198 -12 -264 -85c-26 -29 -47 -65 -47 -105 c0 -109 111 -180 211 -180c128 0 235 101 235 230c0 22 -6 48 -25 61c56 0 98 -42 98 -98c0 -187 -228 -228 -374 -228c-114 0 -266 31 -266 174c0 156 128 230 265 258c-66 22 -134 48 -134 128c0 136 154 178 264 178'], + 0xE20F: [742,69,703,7,897,'897 722c0 -59 -124 -99 -173 -99c-71 0 -142 19 -213 19c-62 0 -96 -181 -108 -228h99c39 0 135 0 165 21l4 -4c-8 -11 -35 -52 -48 -52h-225c-55 -178 -67 -354 -264 -435c-27 -11 -55 -13 -82 -13c-19 0 -41 7 -45 29c9 -6 20 -9 31 -9c160 0 230 301 253 424h-16 c-24 0 -49 -1 -72 -9c13 16 25 32 37 49c19 -3 38 -3 57 -3c24 100 76 184 166 236c-35 4 -68 6 -103 6c-119 0 -266 -54 -266 -195c0 -37 6 -77 35 -102c-4 -1 -8 -2 -12 -2c-35 0 -98 82 -98 114c0 119 220 216 319 232c25 4 50 5 76 5c112 0 224 -27 337 -27 c41 0 134 7 135 63c7 -4 11 -13 11 -20'], + 0xE210: [715,176,740,7,734,'734 372c-14 -38 -58 -46 -81 -75c-15 -18 -20 -42 -27 -64c-51 -174 -170 -409 -382 -409c-42 0 -237 20 -237 75c0 35 35 103 55 132l6 -4c5 -94 84 -152 174 -152c157 0 257 169 287 305c-71 -71 -192 -164 -296 -164c-136 0 -193 99 -193 223c0 255 263 476 508 476 c65 0 177 -46 177 -122c0 -52 -57 -124 -110 -124c-7 0 -12 2 -17 5c34 14 42 55 42 89c0 71 -77 111 -139 111c-181 0 -353 -269 -353 -434c0 -75 49 -152 130 -152s257 123 273 205c-24 3 -48 5 -71 5c-48 0 -103 -4 -139 -40c-3 4 -6 10 -6 16c0 73 117 90 170 90 c52 0 102 -7 154 -7c24 0 48 4 68 18'], + 0xE211: [758,36,921,7,1018,'7 485c0 52 231 236 482 236c9 0 19 -2 23 -12l-112 -352c28 32 80 62 124 62c55 0 108 -11 162 -11c26 0 55 8 70 31c20 33 46 199 85 247c27 34 126 72 170 72l7 -3c-102 -66 -129 -192 -159 -301c-29 -109 -62 -219 -62 -333c0 -34 18 -63 55 -63c7 0 14 1 21 4l3 -5 c-28 -33 -92 -69 -135 -69c-39 0 -52 95 -52 124c0 95 29 187 54 279c-25 -17 -58 -43 -90 -43c-46 0 -90 11 -135 11c-223 0 -121 -218 -231 -331c-32 -33 -105 -64 -151 -64c-10 0 -19 3 -24 12c114 7 246 587 271 699c-3 2 -7 4 -11 4c-23 0 -45 -6 -66 -14 c-108 -38 -201 -96 -201 -223c0 -30 6 -61 23 -86c-53 3 -121 76 -121 129'], + 0xE212: [734,26,683,7,677,'677 707c0 -47 -50 -58 -88 -58c-29 0 -57 6 -87 6c-71 0 -126 -454 -195 -532c-24 -28 -73 -39 -105 -59c38 -4 75 -9 113 -9c41 0 92 5 113 46c3 -4 5 -8 5 -14c0 -59 -82 -96 -133 -96c-72 0 -142 17 -214 17c-21 0 -64 -7 -66 -34c-7 4 -13 12 -13 21 c0 67 88 72 137 72c140 0 95 507 322 592c-23 2 -45 3 -68 3c-34 0 -167 -8 -170 -53c-6 9 -9 18 -9 29c0 76 126 78 179 78c75 0 148 -15 223 -15c22 0 44 6 47 33c7 -8 9 -17 9 -27'], + 0xE213: [714,157,815,-21,908,'908 699c0 -71 -91 -61 -139 -61c-32 0 -54 -29 -70 -55c-103 -168 -61 -378 -141 -554c-53 -115 -187 -186 -312 -186c-60 0 -267 24 -267 106c0 53 39 127 89 147c-7 -17 -11 -36 -11 -55c0 -85 109 -157 187 -157c342 0 194 502 369 702c22 26 71 45 103 55 c-64 11 -128 32 -193 32c-102 0 -222 -90 -222 -198c0 -30 19 -56 44 -70c-7 -10 -20 -18 -32 -18c-47 0 -98 33 -98 84c0 149 225 240 350 240c82 0 162 -29 244 -29c34 0 70 4 93 32c4 -5 6 -10 6 -15'], + 0xE214: [734,29,837,7,939,'939 653c0 -18 -2 -37 -6 -55l-12 -5c3 26 -15 47 -42 47c-87 0 -262 -155 -327 -216c25 -82 132 -384 230 -384c4 0 7 1 11 4c-7 -44 -96 -66 -133 -66c-58 0 -181 330 -202 390c-22 -8 -44 -15 -67 -23c-12 -43 -90 -289 -110 -308c-23 -22 -115 -66 -146 -66 c-13 0 -27 4 -37 11c62 5 102 117 121 166c57 153 139 366 148 526c-7 1 -13 1 -21 1c-119 0 -251 -91 -251 -219c0 -32 4 -69 29 -91c-4 -2 -8 -3 -12 -3c-59 0 -105 78 -105 131c0 102 229 191 312 213c43 12 88 20 134 20c18 0 36 -3 53 -9c-41 -109 -70 -221 -107 -331 c141 5 264 348 485 348c48 0 55 -43 55 -81'], + 0xE215: [725,91,787,7,781,'781 71c-32 -92 -74 -162 -181 -162c-178 0 -341 97 -519 97c-24 0 -50 -17 -68 -31l-6 7c15 32 68 109 107 109c29 0 58 -12 87 -12c43 0 92 112 102 147c56 201 38 499 325 499c55 0 143 -27 143 -94c0 -31 -83 -69 -108 -77v11c15 15 25 35 25 56c0 53 -40 70 -86 70 c-110 0 -122 -179 -135 -258c-25 -152 -90 -268 -205 -370c110 -28 220 -63 335 -63c67 0 134 32 179 81'], + 0xE216: [741,46,1136,7,1129,'1129 56c-10 -53 -73 -89 -124 -89l-7 5c-56 83 -58 173 -58 269c0 100 15 200 26 299c-109 -167 -297 -287 -344 -492c-33 -28 -70 -51 -114 -59c10 25 17 50 17 76c0 138 -91 347 -140 479c-26 -101 -141 -470 -204 -531c-37 -36 -82 -59 -134 -59c-14 0 -28 4 -40 13 c161 13 373 577 344 719c33 26 73 45 114 55c17 -137 73 -226 153 -537c137 143 306 278 360 478c41 22 85 40 130 51l7 -7c-60 -124 -68 -326 -68 -464c0 -43 0 -215 62 -215c8 0 15 4 20 9'], + 0xE217: [720,40,864,7,959,'959 705c-163 -122 -248 -472 -248 -668c0 -26 -84 -62 -106 -70c-6 107 -135 276 -196 367c-38 56 -73 115 -104 178c-14 -76 -98 -456 -137 -492c-29 -27 -94 -60 -134 -60c-10 0 -19 2 -27 7c134 35 256 526 256 655c0 11 -2 20 -2 31c0 34 102 59 130 63 c-4 -14 -6 -29 -6 -43c0 -170 187 -368 270 -511c20 74 121 473 156 502c41 35 97 45 148 56v-15'], + 0xE218: [753,26,739,7,733,'733 484c0 -239 -185 -510 -442 -510c-167 0 -284 90 -284 264c0 168 186 427 367 427c31 0 59 -2 87 -16c-187 -25 -338 -248 -338 -428c0 -100 56 -203 168 -203c188 0 338 316 338 478c0 135 -104 203 -229 203c-26 0 -52 -1 -77 -6c49 43 114 60 178 60 c147 0 232 -133 232 -269'], + 0xE219: [714,39,745,7,746,'746 523c0 -183 -320 -250 -461 -251c-22 -66 -48 -176 -81 -232c-24 -41 -113 -79 -160 -79c-8 0 -16 3 -22 8c66 9 169 257 169 320c0 30 -11 58 -26 84l9 4l32 -15c31 103 79 293 202 318c-115 -1 -328 -128 -328 -258c0 -31 22 -61 47 -77c-8 -5 -18 -8 -28 -8 c-58 0 -92 35 -92 92c0 52 22 100 53 140c86 111 242 145 376 145c121 0 310 -36 310 -191zM639 528c0 101 -102 150 -191 150c-53 0 -135 -287 -148 -341c32 -10 63 -15 96 -15c127 0 243 66 243 206'], + 0xE21A: [753,59,739,7,733,'733 484c0 -151 -70 -303 -182 -405c29 -26 81 -71 122 -71c19 0 36 9 44 27c2 -3 4 -8 4 -12c0 -51 -75 -82 -118 -82c-56 0 -105 36 -140 77c-52 -29 -112 -44 -172 -44c-167 0 -284 91 -284 264c0 168 186 427 367 427c29 0 60 -2 87 -16 c-187 -25 -338 -247 -338 -428c0 -100 56 -203 168 -203c47 0 92 21 129 49c-42 51 -96 107 -166 107c-22 0 -43 -6 -63 -14c29 47 85 55 135 55c63 0 118 -37 162 -79c73 92 141 241 141 360c0 138 -106 203 -233 203c-24 0 -49 -1 -73 -6c49 43 115 60 178 60 c143 0 232 -136 232 -269'], + 0xE21B: [727,23,715,7,722,'7 456c0 118 211 271 431 271c100 0 266 -22 266 -153c0 -119 -132 -196 -236 -217c34 -60 163 -315 230 -315c8 0 17 3 24 9c-6 -38 -90 -71 -125 -71c-55 0 -197 311 -244 365l-58 8c-17 -70 -57 -252 -99 -301c-29 -34 -92 -75 -137 -75c-10 0 -18 1 -25 8 c123 -3 181 522 244 620c25 40 66 69 109 87c-130 -1 -288 -96 -288 -240c0 -33 2 -69 27 -93c-4 -2 -8 -3 -13 -3c-29 0 -106 71 -106 100zM596 576c0 85 -104 116 -174 116c-50 0 -106 -249 -117 -296c19 -9 39 -13 59 -13c98 0 232 85 232 193'], + 0xE21C: [738,29,714,7,707,'707 622c0 -58 -51 -113 -109 -114c14 13 21 31 21 50c0 90 -73 139 -157 139c-58 0 -144 -28 -144 -98c0 -164 341 -199 341 -367c0 -48 -62 -123 -95 -154c-74 -71 -177 -107 -279 -107c-92 0 -278 38 -278 158c0 45 71 112 109 129l8 -2c-12 -20 -18 -43 -18 -67 c0 -100 118 -161 207 -161c82 0 231 24 231 132c0 177 -325 182 -325 375c0 143 156 203 277 203c64 0 211 -32 211 -116'], + 0xE21D: [717,29,713,7,875,'875 701c0 -73 -152 -94 -206 -94c-52 0 -104 17 -156 17c-41 0 -58 -76 -65 -106c-19 -76 -116 -427 -151 -469c-34 -39 -102 -78 -155 -78c-10 0 -20 2 -29 7c116 -1 189 467 240 562c31 58 65 62 119 89c-51 13 -104 17 -155 17c-110 0 -230 -31 -230 -164 c0 -31 13 -67 45 -79c-12 -3 -25 -5 -36 -5c-41 0 -89 28 -89 74c0 181 234 230 376 230c108 0 212 -36 319 -36c42 0 153 0 167 51c5 -4 6 -11 6 -16'], + 0xE21E: [731,34,943,7,987,'987 724c-67 -78 -196 -502 -196 -609c0 -20 -2 -62 29 -62c11 0 21 4 28 10c-7 -51 -82 -97 -131 -97c-42 0 -49 87 -49 116c0 49 14 96 28 142c-72 -84 -304 -246 -415 -246c-52 0 -70 38 -70 84c0 151 128 451 182 603c-113 -3 -289 -119 -289 -242 c0 -29 7 -59 25 -82c-5 -2 -11 -3 -17 -3c-45 0 -105 96 -105 136c0 140 367 245 479 245c11 0 20 -1 29 -7c-51 -158 -180 -468 -180 -619c0 -19 12 -26 29 -26c80 0 169 58 227 111c102 93 145 200 187 329c9 28 48 163 61 175c24 23 109 44 143 49'], + 0xE21F: [712,39,938,7,955,'955 660c0 -147 -401 -469 -419 -638c-28 -34 -71 -58 -115 -61c17 48 22 99 22 150c0 185 -67 364 -56 549c-112 -2 -286 -114 -286 -238c0 -29 16 -59 41 -75c-4 -2 -9 -3 -15 -3c-41 0 -120 84 -120 125c0 142 369 243 482 243c10 0 19 -1 29 -5 c-11 -35 -16 -73 -16 -110c0 -143 35 -283 52 -424c73 79 278 316 278 421c0 33 -12 73 -53 64l-8 6c24 25 101 45 135 45c27 0 49 -24 49 -49'], + 0xE220: [734,25,1264,7,1292,'1292 703c0 -129 -254 -377 -335 -487c-70 -95 -74 -168 -82 -181c-15 -25 -94 -52 -122 -60l-6 7c30 41 28 125 28 175c0 83 -13 166 -34 247c-95 -102 -200 -250 -239 -385c-31 -20 -65 -38 -103 -40c5 68 8 138 8 206c0 140 -45 259 -45 384c0 28 2 56 6 84 c-104 -16 -266 -117 -266 -235c0 -23 4 -47 22 -64l-10 -1c-40 0 -107 87 -107 125c0 113 391 235 487 238c-18 -48 -23 -98 -23 -148c0 -131 41 -257 51 -388c127 128 213 305 207 488c48 12 75 41 128 41c-10 -36 -16 -75 -16 -113c0 -138 34 -273 38 -410 c86 66 281 338 281 446c0 19 -3 72 -37 57l-5 9c36 18 107 36 147 36c16 0 27 -16 27 -31'], + 0xE221: [729,31,776,7,769,'769 702c0 -89 -305 -283 -305 -296c0 -53 127 -379 170 -379c8 0 17 4 24 9c-9 -54 -65 -65 -111 -65c-81 0 -156 316 -175 386c-95 -56 -249 -192 -249 -311c0 -26 15 -59 43 -63c-8 -8 -20 -14 -32 -14c-36 0 -127 22 -127 68c0 100 271 297 355 349 c-15 63 -45 287 -129 287c-9 0 -18 -4 -26 -7l-9 8c25 40 103 54 147 54c50 0 98 -241 111 -286c58 41 178 137 178 213c0 24 -35 20 -50 16l-8 10c37 37 106 48 157 48c14 0 36 -9 36 -27'], + 0xE222: [759,72,838,7,855,'855 753c-138 -172 -145 -405 -251 -593c-67 -120 -200 -232 -343 -232c-42 0 -254 34 -254 85c0 42 51 132 81 161l7 -13c-6 -13 -9 -25 -9 -39c0 -86 91 -146 171 -146c229 0 312 306 365 482c-28 -36 -253 -277 -276 -277c-14 0 -54 21 -54 38c0 73 11 144 11 217 c0 69 -10 242 -121 211l-8 9c34 24 132 48 174 48c74 0 59 -345 57 -413c80 60 271 305 276 403c39 33 117 62 168 65'], + 0xE223: [743,116,910,7,903,'666 -116c-295 0 -441 147 -602 147c-21 0 -41 -5 -57 -19c16 43 67 81 113 81c24 0 45 -14 69 -14c53 0 411 444 456 516c-100 4 -199 22 -299 22c-55 0 -155 -12 -179 -73c-5 8 -8 16 -8 25c0 88 142 133 213 133c115 0 230 -13 346 -13c63 0 128 14 179 54l6 -6 c-7 -62 -82 -137 -144 -143c-185 -134 -327 -358 -463 -540c132 -32 267 -55 404 -55c53 0 100 36 129 76l10 -11c-26 -75 -81 -180 -173 -180'], + 0xE224: [692,41,996,16,980,'184 475c0 58 205 210 356 210c88 0 176 -11 264 -11c51 0 107 0 154 18l6 -5c-71 -120 -77 -309 -77 -446c0 -33 17 -197 58 -197c12 0 24 4 35 10v-14c-34 -19 -142 -66 -178 -66c-63 0 -65 251 -65 299c0 30 1 60 3 90c-67 -36 -125 -50 -202 -47 c-14 -31 -26 -61 -42 -91c-59 -108 -213 -266 -344 -266c-73 0 -136 41 -136 119c0 29 7 61 27 84l8 -3c0 -78 54 -145 135 -145c158 0 211 184 258 303c-4 1 -9 1 -13 1c-32 0 -69 -11 -85 -40c-6 4 -11 11 -11 20c0 56 80 74 123 76c43 102 94 220 203 265 c-36 1 -73 2 -108 2c-109 0 -296 -43 -296 -181c0 -28 8 -56 22 -80c-2 0 -4 -1 -6 -1c-31 0 -89 66 -89 96zM794 643c-109 -28 -207 -167 -236 -270c34 -2 68 -4 102 -4c29 0 58 11 84 24c13 84 28 168 50 250'], + 0xE225: [720,23,847,18,822,'477 696c-203 0 -304 -149 -304 -264c0 -34 10 -69 34 -93c-2 0 -4 -1 -6 -1c-56 0 -109 61 -109 116c0 178 261 266 406 266c103 0 324 0 324 -148c0 -95 -145 -164 -222 -186c81 -11 173 -40 173 -138c0 -170 -201 -254 -346 -268c-30 -3 -60 -3 -90 -3 c-225 0 -204 35 -262 35c-18 0 -35 -8 -48 -20l-9 5c9 37 48 104 91 104c10 0 19 -5 29 -5c64 0 110 141 122 191c21 92 24 191 74 273c33 54 89 104 143 136zM681 579c0 68 -113 112 -169 112c-74 0 -108 -232 -115 -289c21 -3 41 -5 62 -5c103 0 222 67 222 182zM615 207 c0 148 -103 158 -223 158c-30 -162 -81 -206 -223 -280c83 -33 188 -49 276 -49c100 0 170 71 170 171'], + 0xE226: [704,52,635,26,694,'694 549c0 -55 -80 -101 -129 -108c27 23 34 57 34 90c0 65 -52 133 -120 133c-199 0 -299 -238 -299 -407c0 -97 40 -246 161 -246c103 0 212 78 200 190c35 -5 51 -41 51 -73c0 -120 -201 -180 -298 -180c-174 0 -268 137 -268 300c0 240 230 456 467 456 c87 0 201 -55 201 -155'], + 0xE227: [707,31,975,17,949,'328 -29c-100 0 -213 44 -250 44c-19 0 -37 -7 -52 -19l-9 4c11 59 75 81 128 81c101 0 130 174 146 248c33 149 58 257 198 340c-131 -4 -309 -101 -309 -249c0 -24 6 -47 28 -60c-5 -3 -10 -4 -16 -4c-44 0 -85 62 -85 101c0 191 329 250 474 250 c174 0 368 -100 368 -295c0 -303 -246 -443 -521 -443c-33 0 -66 2 -100 2zM796 384c0 145 -82 290 -242 290c-106 0 -114 -234 -131 -307c-32 -139 -97 -234 -227 -298c91 -20 182 -54 277 -54c195 0 323 187 323 369'], + 0xE228: [719,19,677,13,663,'407 719c170 0 238 -78 238 -107c0 -21 -89 -78 -110 -78c-2 0 -6 1 -8 1c12 7 20 21 20 36c0 71 -72 116 -138 116c-76 0 -128 -59 -128 -133c0 -90 66 -133 150 -133c21 0 41 3 60 13l4 -5c-8 -22 -27 -43 -51 -43c-90 0 -160 -14 -222 -85c-25 -29 -46 -65 -46 -105 c0 -101 63 -180 168 -180c128 0 235 102 235 230c0 22 -6 47 -24 61c53 0 108 -40 108 -98c0 -204 -229 -228 -385 -228c-114 0 -265 32 -265 174c0 154 127 231 264 258c-64 21 -134 49 -134 128c0 135 154 178 264 178'], + 0xE229: [742,69,760,13,902,'902 722c0 -42 -86 -87 -122 -94c-17 -4 -38 -33 -52 -24c-48 32 -112 38 -170 38c-61 0 -97 -181 -107 -228h109c39 0 122 1 155 21l3 -4c-7 -11 -35 -52 -47 -52c-396 74 -199 -370 -490 -435c-34 -14 -88 -13 -124 -13c-19 0 -41 8 -44 29c8 -6 20 -9 30 -9 c161 0 231 301 253 424c-24 3 -64 -1 -88 -9c13 16 37 9 48 26c19 -3 27 20 46 20c26 106 105 199 209 236c-49 5 -97 6 -146 6c-122 0 -245 -56 -245 -195c0 -37 7 -77 36 -102c-4 -1 -9 -2 -13 -2c-49 0 -119 64 -119 114c0 120 224 214 323 229c26 4 51 5 76 5 c110 18 222 -11 333 -24c41 0 135 6 136 63c6 -4 10 -13 10 -20'], + 0xE22A: [715,176,807,26,795,'59 239c0 204 212 476 508 476c70 0 188 -37 188 -122c0 -53 -69 -124 -121 -124c-7 0 -12 2 -17 5c34 15 42 55 42 89c0 71 -77 111 -139 111c-185 0 -302 -272 -302 -429c0 -63 2 -151 87 -151c82 0 248 117 264 199c-23 3 -47 5 -70 5c-48 0 -102 -4 -139 -40 c-4 4 -6 10 -6 16c0 72 115 90 170 90c52 0 102 -7 154 -7c37 0 77 1 110 18l7 -3c-15 -38 -58 -46 -81 -75c-15 -19 -20 -42 -27 -64c-63 -211 -176 -409 -424 -409c-42 0 -237 20 -237 75c0 36 35 102 55 132l6 -4c5 -93 84 -152 174 -152c158 0 257 169 287 305 c-71 -71 -192 -164 -296 -164c-135 0 -193 99 -193 223'], + 0xE22B: [761,35,1010,20,1112,'1112 758c-103 -65 -130 -192 -159 -301c-30 -109 -62 -219 -62 -333c0 -33 18 -63 54 -63c8 0 15 1 21 4l3 -5c-32 -34 -127 -71 -174 -71c-39 0 -52 95 -52 124c0 95 29 187 54 279c-25 -18 -58 -43 -91 -43c-45 0 -89 11 -134 11c-234 0 -115 -224 -227 -332 c-36 -34 -141 -63 -190 -63c-12 0 -22 1 -31 11c117 12 245 584 272 699c-3 3 -8 4 -12 4c-22 0 -44 -7 -65 -14c-108 -37 -201 -97 -201 -223c0 -30 5 -61 23 -86c-55 5 -121 75 -121 129c0 29 66 84 89 100c116 83 292 137 434 137c10 0 18 -3 22 -11l-111 -353 c29 34 78 62 124 62c55 0 107 -11 162 -11c77 0 79 58 84 83c7 33 52 173 71 195c30 36 161 72 209 74'], + 0xE22C: [734,26,614,19,731,'731 707c0 -46 -51 -58 -88 -58c-29 0 -58 6 -87 6c-70 0 -128 -455 -195 -532c-24 -27 -74 -40 -105 -59c38 -4 75 -9 112 -9c41 0 92 5 114 46c2 -4 4 -8 4 -14c0 -60 -81 -96 -132 -96c-86 0 -171 17 -256 17c-22 0 -63 -6 -66 -34c-8 4 -13 12 -13 21 c0 68 99 72 147 72c140 0 95 506 322 592c-26 2 -52 3 -79 3c-34 0 -165 -7 -169 -53c-6 9 -9 18 -9 29c0 76 126 78 178 78c89 0 177 -15 266 -15c21 0 46 7 47 33c5 -8 9 -17 9 -27'], + 0xE22D: [714,157,833,11,982,'982 699c0 -71 -91 -61 -139 -61c-32 0 -54 -29 -70 -55c-102 -169 -58 -379 -141 -554c-57 -119 -229 -186 -354 -186c-61 0 -267 23 -267 106c0 54 38 126 89 147c-7 -17 -12 -36 -12 -55c0 -85 110 -157 188 -157c337 0 199 503 368 702c22 25 85 49 117 59 c-69 6 -137 28 -206 28c-102 0 -222 -90 -222 -198c0 -30 19 -56 44 -70c-8 -10 -20 -18 -33 -18c-46 0 -98 33 -98 84c0 43 24 81 52 112c73 84 188 128 299 128c96 0 190 -29 286 -29c34 0 70 5 93 32c4 -5 6 -10 6 -15'], + 0xE22E: [734,27,887,5,974,'974 653c0 -19 -2 -37 -7 -55l-11 -5c1 26 -15 47 -42 47c-90 0 -253 -136 -318 -197c25 -82 136 -394 233 -394c5 0 8 3 11 5c-9 -45 -105 -76 -145 -76c-58 0 -181 329 -202 390c-24 -6 -48 -10 -68 -23c-17 -10 -68 -271 -109 -308c-22 -20 -157 -64 -188 -64 c-11 0 -23 3 -32 9c63 5 102 116 121 166c58 155 139 361 148 526c-7 1 -13 1 -21 1c-119 0 -251 -91 -251 -219c0 -33 4 -68 29 -91c-4 -2 -8 -3 -13 -3c-58 0 -104 78 -104 131c0 101 229 193 312 213c56 14 112 20 170 20c20 0 40 -3 59 -10c-41 -109 -75 -219 -112 -330 c151 8 262 348 485 348c46 0 55 -45 55 -81'], + 0xE22F: [725,91,841,13,828,'828 71c-30 -92 -74 -162 -181 -162c-191 0 -369 97 -561 97c-25 0 -50 -14 -68 -31l-5 7c15 33 65 109 106 109c29 0 58 -12 87 -12c45 0 92 112 102 147c59 201 35 499 326 499c52 0 184 -26 184 -94c0 -32 -82 -68 -107 -77v11c14 14 25 35 25 56c0 53 -40 70 -87 70 c-111 0 -120 -179 -134 -258c-24 -135 -99 -290 -216 -368c113 -29 227 -65 345 -65c68 0 134 32 179 81'], + 0xE230: [741,46,1265,13,1240,'1240 56c-16 -52 -115 -90 -164 -90c-1 0 -7 2 -8 2c-59 89 -60 199 -60 301c0 91 15 182 27 271c-111 -166 -297 -288 -344 -492c-44 -31 -114 -49 -167 -59c11 25 17 50 17 76c0 118 -87 370 -140 479c-25 -97 -143 -477 -204 -531c-41 -37 -89 -59 -144 -59 c-15 0 -29 4 -40 13c166 16 346 541 346 689c0 10 -1 21 -3 30c38 27 81 43 125 55c47 -125 93 -136 195 -537c138 143 306 278 360 478c57 29 121 38 183 51l6 -7c-61 -126 -67 -324 -67 -464c0 -43 -1 -215 62 -215c7 0 15 4 20 9'], + 0xE231: [720,40,924,13,1027,'1027 705c-163 -124 -248 -471 -248 -668c0 -24 -134 -63 -158 -70c-10 147 -191 324 -300 545c-15 -74 -99 -460 -137 -492c-33 -29 -101 -60 -145 -60c-10 0 -19 2 -26 7c135 40 255 522 255 655c0 11 -2 20 -2 31c0 33 154 59 182 63c-3 -14 -5 -29 -5 -43 c0 -170 185 -368 270 -511c19 72 122 476 155 502c46 35 105 45 159 56v-15'], + 0xE232: [753,26,819,26,794,'794 484c0 -246 -232 -510 -485 -510c-166 0 -283 91 -283 264c0 169 185 427 367 427c30 0 59 -4 87 -16c-193 -26 -296 -253 -296 -428c0 -89 9 -203 125 -203c190 0 339 315 339 478c0 133 -105 203 -229 203c-25 0 -52 -2 -77 -6c50 42 115 60 178 60 c167 0 274 -99 274 -269'], + 0xE233: [714,39,825,17,812,'812 523c0 -201 -343 -252 -493 -252c-13 -53 -46 -185 -78 -224c-36 -44 -130 -86 -187 -86c-9 0 -16 3 -22 8c68 15 168 254 168 320c0 30 -11 58 -25 84l8 4l33 -15c29 103 67 294 191 320c-115 -8 -318 -129 -318 -260c0 -31 22 -61 48 -77c-9 -5 -18 -8 -29 -8 c-57 0 -91 36 -91 92c0 52 22 101 52 140c86 111 235 145 369 145c125 0 374 -20 374 -191zM662 528c0 101 -114 152 -201 152c-54 0 -116 -292 -127 -344c27 -9 55 -14 85 -14c127 0 243 66 243 206'], + 0xE234: [753,59,815,26,794,'794 484c0 -155 -107 -298 -217 -397c29 -27 81 -70 122 -70c19 0 36 8 44 26c3 -3 4 -7 4 -11c0 -52 -81 -91 -125 -91c-56 0 -105 36 -140 77c-53 -29 -113 -44 -173 -44c-166 0 -283 91 -283 264c0 169 185 427 367 427c29 0 60 -3 87 -16 c-192 -25 -296 -254 -296 -428c0 -89 9 -203 125 -203c48 0 93 21 130 49c-42 51 -96 107 -166 107c-22 0 -44 -6 -64 -14c30 46 86 55 136 55c63 0 124 -28 170 -71c74 94 133 231 133 352c0 137 -107 203 -233 203c-24 0 -49 -1 -73 -6c49 43 115 60 178 60 c168 0 274 -98 274 -269'], + 0xE235: [727,8,785,18,778,'778 574c0 -120 -172 -198 -272 -218c34 -59 162 -294 231 -294c8 0 17 3 24 9c-20 -43 -108 -66 -152 -66c-46 0 -184 274 -212 324c-2 4 -10 16 -13 16c-20 0 -39 3 -58 8c-15 -66 -51 -242 -91 -287c-31 -34 -112 -74 -158 -74c-10 0 -18 2 -25 8 c110 -1 159 517 224 609c31 44 82 67 130 86c-129 -1 -297 -99 -297 -243c0 -33 3 -68 28 -93c-1 0 -3 -1 -5 -1c-29 0 -114 68 -114 98c0 101 142 196 225 229c72 29 150 42 226 42c104 0 309 -10 309 -153zM627 576c0 86 -116 119 -186 119c-50 0 -95 -253 -104 -299 c19 -9 39 -13 59 -13c98 0 231 85 231 193'], + 0xE236: [738,29,773,26,747,'747 622c0 -62 -73 -110 -130 -114c14 13 21 31 21 50c0 90 -73 139 -157 139c-60 0 -123 -31 -123 -98c0 -166 341 -198 341 -367c0 -46 -82 -125 -116 -154c-82 -71 -170 -107 -279 -107c-92 0 -278 38 -278 158c0 47 70 110 109 129l29 -2c-12 -20 -18 -43 -18 -67 c0 -96 96 -161 186 -161c83 0 210 26 210 132c0 178 -325 180 -325 375c0 144 179 203 298 203c64 0 232 -32 232 -116'], + 0xE237: [717,29,693,18,927,'927 701c0 -73 -155 -87 -208 -87c-51 0 -100 13 -151 13c-42 0 -59 -77 -67 -109c-19 -73 -118 -433 -152 -469c-38 -41 -141 -78 -196 -78c-11 0 -20 2 -30 7c119 0 183 450 235 544c32 58 86 84 143 113c-57 9 -116 11 -174 11c-115 0 -208 -30 -208 -164 c0 -31 13 -66 44 -79c-11 -3 -24 -5 -36 -5c-39 0 -109 26 -109 74c0 168 242 230 376 230c121 0 240 -36 361 -36c43 0 150 0 167 51c3 -4 5 -11 5 -16'], + 0xE238: [731,34,1028,15,1079,'1079 724c-71 -84 -197 -500 -197 -613c0 -20 0 -58 30 -58c10 0 21 4 28 10c-13 -55 -123 -97 -174 -97c-42 0 -48 87 -48 116c0 49 14 96 27 142c-92 -109 -310 -246 -457 -246c-50 0 -70 38 -70 84c0 158 126 445 182 603c-113 -3 -288 -118 -288 -242 c0 -29 7 -59 25 -82c-5 -2 -12 -3 -18 -3c-44 0 -104 96 -104 136c0 133 399 244 508 244c14 0 28 -2 41 -6c-50 -158 -168 -420 -168 -577c0 -31 10 -63 47 -63c63 0 152 64 197 106c101 94 147 201 187 329c9 28 48 162 61 175c24 23 149 44 186 49'], + 0xE239: [711,39,968,17,1027,'1027 660c0 -149 -393 -447 -413 -623c-37 -38 -132 -71 -183 -76c16 48 22 99 22 150c0 185 -68 364 -56 549c-115 -2 -265 -116 -265 -238c0 -29 15 -59 41 -75c-5 -2 -10 -3 -15 -3c-40 0 -141 83 -141 125c0 142 405 242 518 242c9 0 19 -2 28 -5 c-10 -35 -16 -73 -16 -110c0 -143 34 -283 52 -424c75 77 284 317 284 422c0 29 -12 77 -52 64l-9 6c31 27 117 45 157 45c26 0 48 -24 48 -49'], + 0xE23A: [732,32,1318,5,1382,'405 185c0 194 -45 257 -45 384c0 28 2 56 6 84c-104 -17 -266 -116 -266 -235c0 -23 4 -47 22 -64c-3 -1 -7 -1 -10 -1c-40 0 -107 87 -107 125c0 111 432 231 529 235c-18 -48 -23 -98 -23 -148c0 -131 41 -258 51 -388c129 129 171 311 165 488c67 15 131 42 199 42 c-9 -36 -15 -75 -15 -113c0 -138 33 -273 37 -410c87 65 281 338 281 445c0 24 -1 69 -36 58l-6 9c38 18 127 36 169 36c16 0 26 -16 26 -31c0 -130 -254 -377 -335 -487c-73 -101 -70 -163 -82 -181c-13 -23 -140 -56 -171 -65l-6 8c28 39 28 109 28 155 c0 91 -11 178 -34 267c-96 -101 -181 -249 -219 -382c-41 -23 -119 -34 -166 -37c5 68 8 138 8 206'], + 0xE23B: [761,41,796,11,778,'778 692c0 -89 -273 -257 -273 -271c0 -16 15 -53 20 -69c17 -50 100 -310 150 -310c8 0 17 3 24 9c-11 -54 -94 -91 -143 -91c-81 0 -157 317 -176 386c-95 -55 -248 -191 -248 -310c0 -27 14 -58 43 -63c-9 -9 -20 -14 -33 -14c-38 0 -131 41 -131 86 c0 101 270 298 354 350c-14 63 -45 286 -129 286c-9 0 -18 -2 -25 -6l-10 7c26 40 133 79 180 79c48 0 98 -241 111 -286c57 40 145 111 145 188c0 15 -14 19 -25 19c-9 0 -17 -1 -25 -3l-8 10c38 36 106 49 157 49c17 0 42 -31 42 -46'], + 0xE23C: [759,72,814,23,913,'277 -72c-101 0 -254 51 -254 85c0 42 50 132 81 161l7 -13c-6 -12 -9 -25 -9 -39c0 -86 91 -146 171 -146c230 0 289 279 338 453c-27 -33 -226 -248 -249 -248c-17 0 -115 37 -115 52c0 62 11 123 11 185c0 64 -7 215 -98 215c-7 0 -16 -1 -23 -4l-9 9 c35 23 173 60 215 60c74 0 58 -346 57 -414c79 59 271 307 276 403c42 34 177 68 231 72l6 -6c-138 -172 -144 -406 -251 -593c-70 -122 -243 -232 -385 -232'], + 0xE23D: [747,112,962,9,948,'712 -112c-272 0 -461 143 -646 143c-21 0 -40 -5 -57 -19c16 43 67 81 113 81c24 0 45 -14 70 -14c52 0 410 444 455 516c-100 4 -199 22 -299 22c-55 0 -155 -12 -179 -73c-5 8 -8 16 -8 25c0 87 142 133 213 133c115 0 230 -13 346 -13c69 0 165 15 222 58l6 -6 c-7 -62 -82 -137 -144 -143c-186 -134 -336 -357 -472 -539c135 -33 273 -56 413 -56c52 0 100 36 130 76l9 -11c-26 -74 -80 -180 -172 -180'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Variants/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/fontdata-extra.js new file mode 100644 index 0000000..69c2bb6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/fontdata-extra.js @@ -0,0 +1,429 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/fontdata-extra.js + * + * Adds extra stretchy characters to the Asana-Math fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG) { + var VERSION = "2.3"; + + var DELIMITERS = SVG.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "AsanaMathJax_Alphabets", + ARROWS = "AsanaMathJax_Arrows", + DOUBLESTRUCK = "AsanaMathJax_DoubleStruck", + FRAKTUR = "AsanaMathJax_Fraktur", + LATIN = "AsanaMathJax_Latin", + MAIN = "AsanaMathJax_Main", + MARKS = "AsanaMathJax_Marks", + MISC = "AsanaMathJax_Misc", + MONOSPACE = "AsanaMathJax_Monospace", + NONUNICODE = "AsanaMathJax_NonUnicode", + NORMAL = "AsanaMathJax_Normal", + OPERATORS = "AsanaMathJax_Operators", + SANSSERIF = "AsanaMathJax_SansSerif", + SCRIPT = "AsanaMathJax_Script", + SHAPES = "AsanaMathJax_Shapes", + SIZE1 = "AsanaMathJax_Size1", + SIZE2 = "AsanaMathJax_Size2", + SIZE3 = "AsanaMathJax_Size3", + SIZE4 = "AsanaMathJax_Size4", + SIZE5 = "AsanaMathJax_Size5", + SIZE6 = "AsanaMathJax_Size6", + SYMBOLS = "AsanaMathJax_Symbols", + VARIANTS = "AsanaMathJax_Variants"; + + var delim = { + 0x306: + { + dir: H, + HW: [[282,MAIN], [384,SIZE1], [542,SIZE2], [922,SIZE3], [1762,SIZE4]] + }, + 0x333: + { + dir: H, + HW: [[433,MARKS], [511,SIZE1], [675,SIZE2], [1127,SIZE3]], + stretch: {rep:[0xE003,SIZE6], right:[0xE003,SIZE6]} + }, + 0x33F: + { + dir: H, + HW: [[433,MARKS], [511,SIZE1], [675,SIZE2], [1127,SIZE3]], + stretch: {rep:[0xE004,SIZE6], right:[0xE004,SIZE6]} + }, + 0x2045: + { + dir: V, + HW: [[910,MARKS], [1344,SIZE1], [1862,SIZE2], [2328,SIZE3]], + stretch: {bot:[0xE006,SIZE6], ext:[0xE007,SIZE6], mid:[0xE008,SIZE6], top:[0xE009,SIZE6]} + }, + 0x2046: + { + dir: V, + HW: [[910,MARKS], [1344,SIZE1], [1862,SIZE2], [2328,SIZE3]], + stretch: {bot:[0xE00A,SIZE6], ext:[0xE00B,SIZE6], mid:[0xE00C,SIZE6], top:[0xE00D,SIZE6]} + }, + 0x20D0: + { + dir: H, + HW: [[558,MARKS]], + stretch: {left:[0x20D0,MARKS], rep:[0xE00E,SIZE6]} + }, + 0x20D1: + { + dir: H, + HW: [[558,MARKS]], + stretch: {rep:[0xE00E,SIZE6], right:[0x20D1,MARKS]} + }, + 0x20D6: + { + dir: H, + HW: [[558,MARKS], [807,SIZE1], [1127,SIZE2], [1878,SIZE3], [3579,SIZE4]], + stretch: {left:[0x20D6,MARKS], rep:[0xE00E,SIZE6]} + }, + 0x20D7: + { + dir: H, + HW: [[558,MAIN], [807,SIZE1], [1127,SIZE2], [1878,SIZE3], [3579,SIZE4]], + stretch: {rep:[0xE00E,SIZE6], right:[0x20D7,MAIN]} + }, + 0x20E1: + { + dir: H, + HW: [[557,MARKS]], + stretch: {left:[0x20D6,MARKS], rep:[0xE00E,SIZE6], right:[0x20D7,MAIN]} + }, + 0x20E9: + { + dir: H, + HW: [[630,MARKS]], + stretch: {left:[0xE00F,SIZE6], rep:[0xE010,SIZE6], right:[0xE011,SIZE6]} + }, + 0x20EE: + { + dir: H, + HW: [[557,MARKS]], + stretch: {left:[0x20EE,MARKS], rep:[0xE012,SIZE6]} + }, + 0x20EF: + { + dir: H, + HW: [[557,MARKS]], + stretch: {rep:[0xE012,SIZE6], right:[0x20EF,MARKS]} + }, + 0x21A9: + { + dir: H, + HW: [[884,MAIN]], + stretch: {left:[0xE013,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE01A,SIZE6]} + }, + 0x21AA: + { + dir: H, + HW: [[884,MAIN]], + stretch: {left:[0xE01B,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE017,SIZE6]} + }, + 0x2210: + { + dir: V, + HW: [[937,OPERATORS], [1349,SIZE1], [1942,SIZE2], [2797,SIZE3]] + }, + 0x2211: + { + dir: V, + HW: [[930,OPERATORS], [1339,SIZE1], [1928,SIZE2], [2776,SIZE3]] + }, + 0x2229: + { + dir: V, + HW: [[603,MAIN], [1559,SIZE1], [2245,SIZE2], [2588,SIZE3]] + }, + 0x222B: + { + dir: V, + HW: [[1327,MAIN], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]], + stretch: {bot:[0x2321,SYMBOLS], ext:[0x23AE,SYMBOLS], top:[0x2320,SYMBOLS]} + }, + 0x222C: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x222D: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x222E: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x222F: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2230: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2231: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2232: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2233: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x22C0: + { + dir: V, + HW: [[939,OPERATORS], [1559,SIZE1], [2588,SIZE2]] + }, + 0x22C1: + { + dir: V, + HW: [[939,OPERATORS], [1559,SIZE1], [2588,SIZE2]] + }, + 0x22C2: + { + dir: V, + HW: [[939,OPERATORS], [1559,SIZE1], [2588,SIZE2]] + }, + 0x22C3: + { + dir: V, + HW: [[939,OPERATORS], [1559,SIZE1], [2245,SIZE2], [2588,SIZE3]] + }, + 0x23B4: + { + dir: H, + HW: [[602,MAIN], [978,SIZE1], [1353,SIZE2], [1690,SIZE3]], + stretch: {left:[0xE00F,SIZE6], rep:[0xE010,SIZE6], right:[0xE011,SIZE6]} + }, + 0x23B5: + { + dir: H, + HW: [[602,MAIN], [978,SIZE1], [1353,SIZE2], [1690,SIZE3]], + stretch: {left:[0xE023,SIZE6], rep:[0xE024,SIZE6], right:[0xE025,SIZE6]} + }, + 0x23DC: + { + dir: H, + HW: [[942,MAIN], [973,SIZE1], [1349,SIZE2], [1686,SIZE3]], + stretch: {left:[0xE026,SIZE6], rep:[0xE027,SIZE6], right:[0xE028,SIZE6]} + }, + 0x23DD: + { + dir: H, + HW: [[942,MAIN], [973,SIZE1], [1349,SIZE2], [1686,SIZE3]], + stretch: {left:[0xE029,SIZE6], rep:[0xE02A,SIZE6], right:[0xE02B,SIZE6]} + }, + 0x23E0: + { + dir: H, + HW: [[900,MAIN], [1360,SIZE1], [2056,SIZE2], [3108,SIZE3]] + }, + 0x23E1: + { + dir: H, + HW: [[900,MAIN], [1360,SIZE1], [2056,SIZE2], [3108,SIZE3]] + }, + 0x27E6: + { + dir: V, + HW: [[910,SYMBOLS], [1025,SIZE1], [1535,SIZE2], [2045,SIZE3], [2556,SIZE4]] + }, + 0x27E7: + { + dir: V, + HW: [[910,SYMBOLS], [1025,SIZE1], [1535,SIZE2], [2045,SIZE3], [2556,SIZE4]] + }, + 0x27EA: + { + dir: V, + HW: [[885,SYMBOLS], [1020,SIZE1], [2041,SIZE2], [2552,SIZE3]] + }, + 0x27EB: + { + dir: V, + HW: [[885,SYMBOLS], [1020,SIZE1], [2041,SIZE2], [2552,SIZE3]] + }, + 0x29FC: + { + dir: V, + HW: [[953,SYMBOLS], [1372,SIZE1], [1893,SIZE2], [2366,SIZE3]] + }, + 0x29FD: + { + dir: V, + HW: [[953,SYMBOLS], [1372,SIZE1], [1893,SIZE2], [2366,SIZE3]] + }, + 0x2A00: + { + dir: V, + HW: [[1146,OPERATORS], [1650,SIZE1], [2376,SIZE2]] + }, + 0x2A01: + { + dir: V, + HW: [[1149,OPERATORS], [1650,SIZE1], [2376,SIZE2]] + }, + 0x2A02: + { + dir: V, + HW: [[1149,OPERATORS], [1650,SIZE1], [2376,SIZE2]] + }, + 0x2A03: + { + dir: V, + HW: [[939,OPERATORS], [1559,SIZE1], [2588,SIZE2]] + }, + 0x2A04: + { + dir: V, + HW: [[939,OPERATORS], [1559,SIZE1], [2588,SIZE2]] + }, + 0x2A05: + { + dir: V, + HW: [[926,OPERATORS], [1537,SIZE1], [2552,SIZE2]] + }, + 0x2A06: + { + dir: V, + HW: [[926,OPERATORS], [1537,SIZE1], [2552,SIZE2]] + }, + 0x2A07: + { + dir: V, + HW: [[939,OPERATORS], [1559,SIZE1], [2588,SIZE2]] + }, + 0x2A08: + { + dir: V, + HW: [[939,OPERATORS], [1559,SIZE1], [2588,SIZE2]] + }, + 0x2A09: + { + dir: V, + HW: [[926,OPERATORS], [1333,SIZE1], [1920,SIZE2]] + }, + 0x2A0C: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A0D: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A0E: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A0F: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A10: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A11: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A12: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A13: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A14: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A15: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A16: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A17: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A18: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A19: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A1A: + { + dir: V, + HW: [[1327,OPERATORS], [1964,SIZE1], [2711,SIZE2], [3470,SIZE3]] + }, + 0x2A1B: + { + dir: V, + HW: [[1436,OPERATORS], [2125,SIZE1], [2933,SIZE2], [3754,SIZE3]] + }, + 0x2A1C: + { + dir: V, + HW: [[1436,OPERATORS], [2125,SIZE1], [2933,SIZE2], [3754,SIZE3]] + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(SVG.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["SVG"]); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/fontdata.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/fontdata.js new file mode 100644 index 0000000..5052c17 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Asana-Math/fontdata.js @@ -0,0 +1,607 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Asana-Math/fontdata.js + * + * Initializes the SVG OutputJax to use the Asana-Math fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG,MML,AJAX,HUB) { + + var VERSION = "2.3"; + + var ALPHABETS = "AsanaMathJax_Alphabets", + ARROWS = "AsanaMathJax_Arrows", + DOUBLESTRUCK = "AsanaMathJax_DoubleStruck", + FRAKTUR = "AsanaMathJax_Fraktur", + LATIN = "AsanaMathJax_Latin", + MAIN = "AsanaMathJax_Main", + MARKS = "AsanaMathJax_Marks", + MISC = "AsanaMathJax_Misc", + MONOSPACE = "AsanaMathJax_Monospace", + NONUNICODE = "AsanaMathJax_NonUnicode", + NORMAL = "AsanaMathJax_Normal", + OPERATORS = "AsanaMathJax_Operators", + SANSSERIF = "AsanaMathJax_SansSerif", + SCRIPT = "AsanaMathJax_Script", + SHAPES = "AsanaMathJax_Shapes", + SIZE1 = "AsanaMathJax_Size1", + SIZE2 = "AsanaMathJax_Size2", + SIZE3 = "AsanaMathJax_Size3", + SIZE4 = "AsanaMathJax_Size4", + SIZE5 = "AsanaMathJax_Size5", + SIZE6 = "AsanaMathJax_Size6", + SYMBOLS = "AsanaMathJax_Symbols", + VARIANTS = "AsanaMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + SVG.Augment({ + FONTDATA: { + version: VERSION, + + + baselineskip: 1200, + lineH: 800, lineD: 200, + + FONTS: { + "AsanaMathJax_Alphabets": "Alphabets/Regular/Main.js", + "AsanaMathJax_Arrows": "Arrows/Regular/Main.js", + "AsanaMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "AsanaMathJax_Fraktur": "Fraktur/Regular/Main.js", + "AsanaMathJax_Latin": "Latin/Regular/Main.js", + "AsanaMathJax_Main": "Main/Regular/Main.js", + "AsanaMathJax_Marks": "Marks/Regular/Main.js", + "AsanaMathJax_Misc": "Misc/Regular/Main.js", + "AsanaMathJax_Monospace": "Monospace/Regular/Main.js", + "AsanaMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "AsanaMathJax_Normal": "Normal/Regular/Main.js", + "AsanaMathJax_Operators": "Operators/Regular/Main.js", + "AsanaMathJax_SansSerif": "SansSerif/Regular/Main.js", + "AsanaMathJax_Script": "Script/Regular/Main.js", + "AsanaMathJax_Shapes": "Shapes/Regular/Main.js", + "AsanaMathJax_Size1": "Size1/Regular/Main.js", + "AsanaMathJax_Size2": "Size2/Regular/Main.js", + "AsanaMathJax_Size3": "Size3/Regular/Main.js", + "AsanaMathJax_Size4": "Size4/Regular/Main.js", + "AsanaMathJax_Size5": "Size5/Regular/Main.js", + "AsanaMathJax_Size6": "Size6/Regular/Main.js", + "AsanaMathJax_Symbols": "Symbols/Regular/Main.js", + "AsanaMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, offsetA: 0x1D434, offsetG: 0x1D6E2, remap: {0x1D455: 0x210E}}, + "bolditalic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true, offsetA: 0x1D468, offsetG: 0x1D71C}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Asana-Math-variant": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {offsetA: 0xE20A, noLowerCase: 1, fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {offsetN: 0xE200, fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {offsetA: 0xE224, noLowerCase: 1, fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x0305, + + REMAP: { + 0x25C2: 0x25C0, + 0x25C3: 0x25C1, + 0xFE38: 0x23DF, + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x25AA: 0x25A0, + 0x00AF: 0x0304, + 0x20F0: 0x002A, + 0x2758: 0x2223, + 0x03D2: 0x03A5, + 0x25B4: 0x25B2, + 0x25B5: 0x25B3, + 0xFE37: 0x23DE, + 0x25B8: 0x25B6, + 0x02B9: 0x2032, + 0x25BE: 0x25BC, + 0x25BF: 0x25BD + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[941,MAIN], [1471,SIZE1], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[941,MAIN], [1471,SIZE1], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0x305, dir: H}, + 0x2F: {alias: 0x2044, dir: H}, + 0x3D: + { + dir: H, + HW: [[539,MAIN]], + stretch: {rep:[0x3D,MAIN]} + }, + 0x5B: + { + dir: V, + HW: [[910,MAIN], [1476,SIZE1], [2045,SIZE2], [2556,SIZE3], [2615,SIZE3,1.023]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[883,MAIN], [1270,MAIN,1.439], [1719,MAIN,1.946], [2167,MAIN,2.454], [2615,MAIN,2.961]] + }, + 0x5D: + { + dir: V, + HW: [[910,MAIN], [1476,SIZE1], [2045,SIZE2], [2556,SIZE3], [2615,SIZE3,1.023]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5E: {alias: 0x302, dir: H}, + 0x5F: {alias: 0x332, dir: H}, + 0x7B: + { + dir: V, + HW: [[901,MAIN], [1471,SIZE1], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0x23AA,SYMBOLS], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[885,MAIN], [1275,SIZE1], [1555,SIZE2], [1897,SIZE3], [2315,SIZE4], [2712,SIZE5], [3177,SIZE6]], + stretch: {ext:[0xE000,SIZE6], top:[0xE000,SIZE6]} + }, + 0x7D: + { + dir: V, + HW: [[901,MAIN], [1471,SIZE1], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0x23AA,SYMBOLS], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0x7E: {alias: 0x303, dir: H}, + 0xAF: {alias: 0x305, dir: H}, + 0x2C6: {alias: 0x302, dir: H}, + 0x2C9: {alias: 0x305, dir: H}, + 0x2DC: {alias: 0x303, dir: H}, + 0x302: + { + dir: H, + HW: [[312,MAIN], [453,SIZE1], [633,SIZE2], [1055,SIZE3], [2017,SIZE4], [3026,SIZE5]] + }, + 0x303: + { + dir: H, + HW: [[330,MAIN], [701,SIZE1], [1053,SIZE2], [1403,SIZE3], [1865,SIZE4], [2797,SIZE5]] + }, + 0x305: + { + dir: H, + HW: [[433,MARKS], [511,SIZE1], [675,SIZE2], [1127,SIZE3]], + stretch: {rep:[0xE001,SIZE6], right:[0xE001,SIZE6]} + }, + 0x306: EXTRAH, + 0x30C: + { + dir: H, + HW: [[312,MAIN], [737,SIZE1], [1105,SIZE2], [1474,SIZE3], [1960,SIZE4], [2940,SIZE5]] + }, + 0x332: + { + dir: H, + HW: [[433,MARKS], [511,SIZE1], [675,SIZE2], [1127,SIZE3]], + stretch: {rep:[0xE002,SIZE6], right:[0xE002,SIZE6]} + }, + 0x333: EXTRAH, + 0x33F: EXTRAH, + 0x2015: {alias: 0x305, dir: H}, + 0x2016: + { + dir: V, + HW: [[885,MAIN], [1275,SIZE1], [1555,SIZE2], [1897,SIZE3], [2315,SIZE4]], + stretch: {ext:[0xE005,SIZE6], top:[0xE005,SIZE6]} + }, + 0x2017: {alias: 0x305, dir: H}, + 0x203E: {alias: 0x305, dir: H}, + 0x2044: + { + dir: V, + HW: [[837,MAIN], [1205,SIZE1], [1471,SIZE2], [1795,SIZE3], [2189,SIZE4], [2615,SIZE4,1.195]] + }, + 0x2045: EXTRAV, + 0x2046: EXTRAV, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: EXTRAH, + 0x20E1: EXTRAH, + 0x20E9: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2190: + { + dir: H, + HW: [[884,MAIN]], + stretch: {left:[0xE013,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE014,SIZE6]} + }, + 0x2191: + { + dir: V, + HW: [[885,MAIN]], + stretch: {ext:[0xE015,SIZE6], top:[0x2191,MAIN]} + }, + 0x2192: + { + dir: H, + HW: [[884,MAIN]], + stretch: {left:[0xE016,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE017,SIZE6]} + }, + 0x2193: + { + dir: V, + HW: [[885,MAIN]], + stretch: {bot:[0x2193,MAIN], ext:[0xE015,SIZE6]} + }, + 0x2194: + { + dir: H, + HW: [[884,MAIN]], + stretch: {left:[0xE013,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE017,SIZE6]} + }, + 0x2195: + { + dir: V, + HW: [[884,MAIN]], + stretch: {top:[0x2191,MAIN], ext:[0xE015,SIZE6], bot:[0x2193,MAIN]} + }, + 0x21A4: + { + dir: H, + HW: [[942,ARROWS]], + stretch: {left:[0xE013,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE018,SIZE6]} + }, + 0x21A6: + { + dir: H, + HW: [[942,MAIN]], + stretch: {left:[0xE019,SIZE6], rep:[0x23AF,SYMBOLS], right:[0xE017,SIZE6]} + }, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[884,MAIN]], + stretch: {left:[0xE01C,SIZE6], rep:[0xE01D,SIZE6], right:[0xE01E,SIZE6]} + }, + 0x21D1: + { + dir: V, + HW: [[885,MAIN]], + stretch: {ext:[0xE01F,SIZE6], top:[0x21D1,MAIN]} + }, + 0x21D2: + { + dir: H, + HW: [[884,MAIN]], + stretch: {left:[0xE020,SIZE6], rep:[0xE01D,SIZE6], right:[0xE021,SIZE6]} + }, + 0x21D3: + { + dir: V, + HW: [[885,MAIN]], + stretch: {bot:[0x21D3,MAIN], ext:[0xE01F,SIZE6]} + }, + 0x21D4: + { + dir: H, + HW: [[895,MAIN]], + stretch: {left:[0xE01C,SIZE6], rep:[0xE01D,SIZE6], right:[0xE021,SIZE6]} + }, + 0x21D5: + { + dir: V, + HW: [[884,MAIN,null,0x2195]], + stretch: {top:[0x21D1,MAIN], ext:[0xE01F,SIZE6], bot:[0x21D3,MAIN]} + }, + 0x220F: + { + dir: V, + HW: [[937,OPERATORS], [1349,SIZE1], [1942,SIZE2], [2797,SIZE3]] + }, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: {alias: 0x305, dir: H}, + 0x2215: {alias: 0x2044, dir: V}, + 0x221A: + { + dir: V, + HW: [[1138,MAIN], [1280,SIZE1], [1912,SIZE2], [2543,SIZE3], [3175,SIZE4]], + stretch: {bot:[0x23B7,SYMBOLS], ext:[0x20D3,MARKS], top:[0xE022,SIZE6]} + }, + 0x2223: + { + dir: V, + HW: [[885,MAIN]], + stretch: {ext:[0x2223,MAIN], top:[0x2223,MAIN]} + }, + 0x2225: + { + dir: V, + HW: [[885,MAIN]], + stretch: {ext:[0x2225,MAIN], top:[0x2225,MAIN]} + }, + 0x2229: EXTRAV, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[885,MAIN], [1470,SIZE1], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[885,MAIN], [1470,SIZE1], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[885,MAIN], [1470,SIZE1], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[885,MAIN], [1470,SIZE1], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: {alias: 0x27E8, dir: V}, + 0x232A: {alias: 0x27E9, dir: V}, + 0x23AA: + { + dir: V, + HW: [[688,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: + { + dir: H, + HW: [[638,SYMBOLS]], + stretch: {rep:[0x23AF,SYMBOLS]} + }, + 0x23B0: {alias: 0x27C6, dir: V}, + 0x23B1: {alias: 0x27C5, dir: V}, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: + { + dir: V, + HW: [[885,MAIN,null,0x7C], [1270,MAIN,1.435,0x7C], [1719,MAIN,1.942,0x7C], [2167,MAIN,2.448,0x7C], [2615,MAIN,2.955,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[902,MAIN], [1471,SIZE1], [2041,SIZE2], [2552,SIZE3]], + stretch: {left:[0xE026,SIZE6], rep:[0xE027,SIZE6], mid:[0xE02C,SIZE6], right:[0xE028,SIZE6]} + }, + 0x23DF: + { + dir: H, + HW: [[902,MAIN], [1471,SIZE1], [2041,SIZE2], [2552,SIZE3]], + stretch: {left:[0xE029,SIZE6], rep:[0xE02A,SIZE6], mid:[0xE02D,SIZE6], right:[0xE02B,SIZE6]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x305, dir: H}, + 0x2758: {alias: 0x2223, dir: V}, + 0x27C5: + { + dir: V, + HW: [[910,SYMBOLS], [1020,SIZE1], [1531,SIZE2], [2041,SIZE3], [2552,SIZE4], [3063,SIZE5]] + }, + 0x27C6: + { + dir: V, + HW: [[910,SYMBOLS], [1020,SIZE1], [1531,SIZE2], [2041,SIZE3], [2552,SIZE4], [3063,SIZE5]] + }, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[885,MAIN], [1020,SIZE1], [1270,SIZE1,1.244], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]] + }, + 0x27E9: + { + dir: V, + HW: [[885,MAIN], [1020,SIZE1], [1270,SIZE1,1.244], [2041,SIZE2], [2552,SIZE3], [2615,SIZE3,1.025]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: {alias: 0x28, dir: V}, + 0x27EF: {alias: 0x29, dir: V}, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: + { + dir: H, + HW: [[884,ARROWS]], + stretch: {left:[0xE01C,SIZE6], rep:[0xE01D,SIZE6], right:[0xE02E,SIZE6]} + }, + 0x2907: + { + dir: H, + HW: [[884,ARROWS]], + stretch: {left:[0xE02F,SIZE6], rep:[0xE01D,SIZE6], right:[0xE021,SIZE6]} + }, + 0x29FC: EXTRAV, + 0x29FD: EXTRAV, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A07: EXTRAV, + 0x2A08: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A0D: EXTRAV, + 0x2A0E: EXTRAV, + 0x2A0F: EXTRAV, + 0x2A10: EXTRAV, + 0x2A11: EXTRAV, + 0x2A12: EXTRAV, + 0x2A13: EXTRAV, + 0x2A14: EXTRAV, + 0x2A15: EXTRAV, + 0x2A16: EXTRAV, + 0x2A17: EXTRAV, + 0x2A18: EXTRAV, + 0x2A19: EXTRAV, + 0x2A1A: EXTRAV, + 0x2A1B: EXTRAV, + 0x2A1C: EXTRAV, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(SVG.fontDir+"/Size6/Regular/Main.js",function () { + var u; + u = SVG.FONTDATA.DELIMITERS[0x23DE].stretch.rep[0]; + SVG.FONTDATA.FONTS[SIZE6][u][0] += 100; // adjust height for brace extender + SVG.FONTDATA.FONTS[SIZE6][u][1] += 100; // adjust depth for brace extender + u = SVG.FONTDATA.DELIMITERS[0x23DF].stretch.rep[0]; + SVG.FONTDATA.FONTS[SIZE6][u][0] += 100; // adjust height for brace extender + SVG.FONTDATA.FONTS[SIZE6][u][1] += 100; // adjust depth for brace extender + }); + MathJax.Hub.Register.LoadHook(SVG.fontDir+"/Size1/Regular/Main.js",function () { + var i; + SVG.FONTDATA.FONTS[SIZE1][0x222B][2] -= 300; + for (i = 0x222C; i <= 0x2233; i++) {SVG.FONTDATA.FONTS[SIZE1][i][2] -= 420} + for (i = 0x2A0C; i <= 0x2A1C; i++) {SVG.FONTDATA.FONTS[SIZE1][i][2] -= 420} + }); + AJAX.loadComplete(SVG.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax.SVG,MathJax.ElementJax.mml,MathJax.Ajax,MathJax.Hub); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Alphabets/Regular/Main.js new file mode 100644 index 0000000..9ad692e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Alphabets/Regular/Main.js @@ -0,0 +1,42 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'GyrePagellaMathJax_Alphabets', + id: 'GYREPAGELLAALPHABETS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xE3F: [775,83,611,26,576,'576 228c0 -70 -35 -138 -94 -180c-35 -25 -81 -42 -134 -48v-83h-44v80h-6c-41 0 -83 3 -124 3c-36 0 -73 -1 -109 -3v23l26 10c14 5 22 28 22 65v474c0 79 -4 86 -51 90l-36 3v30l158 -3l120 2v84h44v-83h15c121 0 179 -48 179 -136c0 -52 -25 -95 -73 -128 c-28 -19 -51 -28 -100 -38c77 -6 111 -15 149 -43c38 -27 58 -68 58 -119zM473 208c0 86 -40 134 -125 150l-1 -312c81 19 126 76 126 162zM304 40v323c-10 1 -19 1 -29 1c-19 0 -28 0 -67 -2v-315c25 -6 48 -8 77 -8c6 0 12 0 19 1zM443 533c0 66 -30 102 -95 114l-1 -238 c63 17 96 60 96 124zM304 401l-1 251h-14c-32 0 -55 -2 -81 -8v-243c31 -2 44 -2 61 -2c12 0 24 1 35 2'], + 0x2103: [709,20,1077,50,1038,'350 537c0 -80 -69 -148 -150 -148c-83 0 -150 67 -150 150s67 150 149 150c84 0 151 -68 151 -152zM310 537c0 62 -50 112 -111 112c-60 0 -109 -49 -109 -110s49 -110 110 -110c60 0 110 50 110 108zM1038 84l-28 -50c-69 -36 -144 -54 -227 -54 c-235 0 -393 146 -393 362c0 135 60 240 174 307c67 39 150 60 237 60c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72c0 39 -101 79 -199 79c-172 0 -286 -122 -286 -306c0 -197 130 -327 325 -327c76 0 145 20 207 60'], + 0x2107: [689,20,500,30,477,'477 60l-20 -34c-4 -6 -69 -45 -149 -46c-129 -2 -278 111 -278 234c0 48 20 100 56 125c25 18 48 26 98 35c-80 62 -100 108 -100 167c0 89 64 148 175 148c68 0 113 -19 161 -67l29 -124h-31l-18 56c-11 34 -74 78 -126 78c-65 0 -118 -63 -118 -126 c0 -75 59 -138 130 -138c8 0 47 3 47 3l12 -53l-7 -6c-38 17 -57 22 -84 22c-83 0 -131 -63 -131 -154c0 -102 84 -156 211 -156c43 0 66 8 130 46'], + 0x2109: [692,3,919,50,899,'350 537c0 -80 -69 -148 -150 -148c-83 0 -150 67 -150 150s67 150 149 150c84 0 151 -68 151 -152zM310 537c0 62 -50 112 -111 112c-60 0 -109 -49 -109 -110s49 -110 110 -110c60 0 110 50 110 108zM899 689c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34 c-31 8 -87 14 -135 14c-59 0 -77 -1 -107 -8v-267c44 -3 104 -4 158 -4c44 0 69 4 72 38l5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-207c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3 v30l176 -3l216 3'], + 0x2116: [692,20,1096,0,1050,'696 662l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -6 1 -14 2 -25c1 -7 1 -8 1 -12l-90 16l-373 572v-448c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30l120 -3l54 3l381 -579v456c0 78 -5 87 -51 90l-44 3v30 l116 -3l120 3v-30zM1050 289c0 -101 -88 -182 -200 -182c-105 0 -176 69 -176 171c0 107 79 181 196 181c105 0 180 -71 180 -170zM1050 0h-376v46h376v-46zM978 269c0 94 -54 166 -125 166c-69 0 -107 -47 -107 -132c0 -101 50 -172 124 -172c64 0 108 56 108 138'], + 0x2117: [668,19,747,31,718,'718 324c0 -190 -154 -343 -344 -343s-343 153 -343 343s153 344 343 344s344 -154 344 -344zM678 324c0 168 -136 304 -304 304s-303 -136 -303 -304s135 -303 303 -303s304 135 304 303zM552 427c0 -67 -65 -118 -149 -118c-12 0 -21 0 -36 3l-8 29c18 -6 27 -7 40 -7 c48 0 81 33 81 78c0 48 -32 73 -91 73c-18 0 -34 -1 -51 -5v-277c0 -37 0 -42 23 -44l30 -1v-26c-29 2 -59 3 -88 3c-30 0 -59 -1 -89 -3v26l31 1c23 2 23 7 23 44v241c0 35 -1 43 -25 44l-28 2v25c36 -2 73 -2 109 -2c34 0 67 2 101 2c78 0 127 -34 127 -88'], + 0x211E: [692,3,668,22,669,'669 -3c-24 2 -48 3 -72 3c-23 0 -45 -1 -68 -3l-41 54l-4 5l-73 -53l-20 28l73 52l-160 215c-16 22 -24 33 -46 57v16h29c116 0 189 58 189 150c0 85 -58 133 -162 133c-34 0 -64 -4 -98 -12v-522c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3 c46 3 51 11 51 90v449c0 78 -5 87 -51 90l-41 3v30l173 -3c60 0 119 3 179 3c130 0 195 -54 195 -150c0 -58 -28 -108 -80 -145c-33 -23 -59 -34 -115 -48l161 -210l76 54l20 -27l-75 -54l45 -59c13 -17 29 -23 61 -26v-30'], + 0x2120: [700,-320,938,40,898,'329 451c0 -76 -76 -131 -179 -131c-35 0 -70 7 -104 21c3 25 5 36 5 60c0 3 0 14 -1 24h26l5 -37c3 -20 46 -38 90 -38c56 0 96 32 96 75c0 19 -6 32 -20 43c-14 10 -33 16 -75 21c-58 7 -86 16 -106 32c-18 15 -26 34 -26 60c0 70 65 119 155 119c32 0 59 -6 108 -23 c-7 -31 -9 -48 -9 -79h-26l-4 33c-1 13 -7 20 -24 28c-16 7 -36 11 -58 11c-47 0 -80 -29 -80 -69c0 -37 23 -52 88 -60c68 -8 93 -16 114 -33c17 -14 25 -32 25 -57zM898 328l-89 2l-76 -2v24l21 1c18 2 23 23 23 42v214l-15 -26l-102 -193c-12 -21 -20 -43 -31 -64h-22 l-150 282v-213c0 -20 7 -41 25 -42l27 -1v-24l-71 2l-69 -2v24l28 1c18 1 25 22 25 42v229c0 20 -7 41 -25 42l-28 2v24c19 -2 38 -2 57 -2c20 0 40 0 60 2l148 -278l146 278c20 -2 39 -2 59 -2c18 0 37 0 55 2v-24l-26 -2c-18 -1 -23 -22 -23 -42v-229c0 -19 5 -41 23 -42 l30 -1v-24'], + 0x2122: [692,-326,979,40,939,'381 691c-3 -30 -4 -60 -4 -90h-26l-3 44c0 8 -9 13 -18 13h-84c-1 -16 -1 -31 -1 -47v-216c0 -19 5 -41 23 -42l29 -1v-24l-87 2l-86 -2v24l30 1c18 1 23 23 23 42v216c0 16 -1 31 -2 47h-83c-10 0 -19 -5 -19 -13l-3 -44h-26c1 30 -1 60 -4 90l121 -1h91zM939 328 l-89 2l-76 -2v24l21 1c18 2 23 23 23 42v214l-15 -26l-102 -193c-12 -21 -20 -43 -31 -64h-22l-150 282v-213c0 -20 7 -41 25 -42l27 -1v-24l-71 2l-69 -2v24l28 1c18 1 25 22 25 42v229c0 20 -7 41 -25 42l-28 2v24c19 -2 38 -2 57 -2c20 0 40 0 60 2l148 -278l146 278 c20 -2 39 -2 59 -2c18 0 37 0 55 2v-24l-26 -2c-18 -1 -23 -22 -23 -42v-229c0 -19 5 -41 23 -42l30 -1v-24'], + 0x2126: [709,3,839,38,801,'801 158c-6 -43 -7 -112 -7 -161c-21 0 -81 3 -119 3c-23 0 -98 0 -119 -3h-22v39c9 9 23 13 38 23c6 4 15 14 25 29c27 40 79 155 79 247c0 212 -79 332 -256 332s-257 -119 -257 -332c0 -92 52 -207 79 -247c10 -15 19 -25 25 -29c14 -10 29 -14 38 -23v-39h-22 c-21 3 -96 3 -119 3c-38 0 -98 -3 -119 -3c0 49 -1 118 -7 161h26l7 -52c4 -29 17 -37 36 -37h115c-63 53 -166 170 -166 302c0 207 139 338 364 338s363 -132 363 -338c0 -132 -103 -249 -166 -302h115c19 0 32 8 36 37l7 52h26'], + 0x212A: [692,3,726,22,719,'719 -3c-22 2 -43 3 -65 3c-27 0 -53 -1 -80 -3l-348 335l-10 -7v-205c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-214l278 271c16 16 29 33 29 39v27 c30 -2 59 -3 89 -3c27 0 53 1 80 3v-30l-42 -2c-26 -1 -51 -14 -78 -38l-266 -240l330 -312c31 -29 47 -40 62 -41l21 -2v-30'], + 0x212B: [939,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM493 839c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM455 839c0 38 -25 64 -61 64c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0x212E: [623,0,772,40,732,'732 302l-565 -8v-173c0 -3 2 -6 2 -6c56 -62 134 -97 217 -97c88 0 168 39 222 103h52c-64 -75 -165 -121 -274 -121c-185 0 -346 133 -346 312c0 178 161 311 346 311s346 -133 346 -311v-10zM605 330v172c0 3 -2 6 -2 6c-56 62 -134 97 -217 97s-161 -35 -217 -97 c0 0 -2 -3 -2 -6v-172c0 -5 4 -9 9 -9h420c5 0 9 4 9 9'], + 0xFEFF: [0,0,0,0,0,''] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Alphabets/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Arrows/Regular/Main.js new file mode 100644 index 0000000..ff2164e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Arrows/Regular/Main.js @@ -0,0 +1,57 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'GyrePagellaMathJax_Arrows', + id: 'GYREPAGELLAARROWS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x219F: [673,162,460,80,380,'380 268c-43 29 -83 62 -120 98v-528c-10 1 -20 3 -30 3s-20 -2 -30 -3v528c-37 -36 -77 -69 -120 -98c2 10 3 21 3 32c0 10 -1 21 -3 32c44 40 84 84 120 130v74c-37 -36 -77 -69 -120 -98c2 10 3 21 3 31c0 11 -1 22 -3 32c56 52 106 109 150 172 c44 -63 94 -120 150 -172c-2 -10 -3 -21 -3 -32c0 -10 1 -21 3 -31c-43 29 -83 62 -120 98v-74c36 -46 76 -90 120 -130c-2 -11 -3 -22 -3 -32c0 -11 1 -22 3 -32'], + 0x21A1: [662,173,460,80,380,'380 -1c-56 -52 -106 -109 -150 -172c-44 63 -94 120 -150 172c2 10 3 21 3 32c0 10 -1 21 -3 31c43 -29 83 -62 120 -98v74c-36 46 -76 90 -120 130c2 11 3 22 3 32c0 11 -1 22 -3 32c43 -29 83 -62 120 -98v528c10 -1 20 -3 30 -3s20 2 30 3v-528c37 36 77 69 120 98 c-2 -10 -3 -21 -3 -32c0 -10 1 -21 3 -32c-44 -40 -84 -84 -120 -130v-74c37 36 77 69 120 98c-2 -10 -3 -21 -3 -31c0 -11 1 -22 3 -32'], + 0x21A4: [400,-100,920,80,840,'840 100c-7 2 -15 3 -22 3c-8 0 -16 -1 -23 -3v120h-579c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h579v120c7 -2 15 -3 23 -3c7 0 15 1 22 3v-300'], + 0x21A5: [635,125,460,80,380,'380 -125h-300c2 7 3 15 3 23c0 7 -1 15 -3 22h120v579c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32c-43 30 -83 63 -120 99v-579h120c-2 -7 -3 -15 -3 -22c0 -8 1 -16 3 -23 '], + 0x21A7: [625,135,460,80,380,'380 36c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v579h-120c2 7 3 15 3 22c0 8 -1 16 -3 23h300c-2 -7 -3 -15 -3 -23c0 -7 1 -15 3 -22h-120v-579c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x21B2: [572,73,530,80,450,'450 572v-495c-6 -3 -12 -7 -17 -12s-9 -11 -13 -18l-204 1c36 -38 69 -78 99 -121c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 107 -171 150c62 44 120 95 171 150c11 -1 21 -3 32 -3s21 2 32 3c-30 -42 -63 -82 -99 -119h174v464c10 -1 20 -3 30 -3s20 2 30 3'], + 0x21B3: [572,72,530,80,450,'450 77c-62 -43 -120 -94 -171 -149c-11 1 -21 3 -32 3s-21 -2 -32 -3c30 42 63 82 99 120h-204c-4 6 -8 12 -13 17s-11 9 -17 12v495c10 -1 20 -3 30 -3s20 2 30 3v-465h174c-36 38 -69 78 -99 120c11 -1 21 -3 32 -3s21 2 32 3c51 -55 109 -106 171 -150'], + 0x21B4: [471,-19,723,80,643,'643 190c-56 -52 -107 -109 -150 -171c-44 62 -95 119 -150 171c1 10 3 21 3 32c0 10 -2 21 -3 32c42 -30 82 -63 120 -99v256h-383c2 10 3 20 3 30s-1 20 -3 30h413c3 -6 7 -12 12 -17s11 -9 17 -13v-286c38 36 78 69 121 99c-2 -11 -3 -22 -3 -32c0 -11 1 -22 3 -32'], + 0x21B5: [531,31,613,80,533,'533 119c-7 -4 -13 -8 -18 -13s-9 -11 -12 -17h-287c36 -37 69 -78 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h257v382c9 -2 19 -3 30 -3c10 0 20 1 30 3v-412'], + 0x21C5: [635,135,800,80,720,'380 400c-43 30 -83 63 -120 99v-624c-10 2 -20 3 -30 3s-20 -1 -30 -3v624c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 36c-56 -51 -106 -109 -150 -171 c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v624c10 -2 20 -3 30 -3s20 1 30 3v-624c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x21D6: [522,100,782,80,702,'702 70c-8 -6 -16 -12 -23 -19c-7 -8 -14 -15 -19 -24l-429 429c-30 1 -61 3 -91 6c3 -30 5 -61 6 -91l429 -429c-8 -5 -16 -12 -23 -19s-14 -15 -19 -23l-386 386c-1 -36 -3 -71 -7 -107c-9 12 -18 22 -28 33c-10 10 -21 19 -32 27c10 94 10 189 0 283 c94 -10 189 -10 283 0c8 -11 18 -22 28 -32s20 -19 32 -28c-35 -3 -71 -6 -106 -7'], + 0x21D7: [522,100,782,80,702,'702 239c-11 -8 -22 -17 -32 -27c-10 -11 -19 -21 -28 -33c-3 36 -6 71 -7 107l-385 -386c-6 8 -12 16 -19 23c-8 7 -15 14 -24 19l429 429c1 30 3 61 6 91c-30 -3 -61 -5 -91 -6l-429 -429c-5 9 -12 16 -19 24c-7 7 -15 13 -23 19l386 385c-36 1 -71 4 -107 7 c12 9 22 18 33 28c10 10 19 21 27 32c94 -10 189 -10 283 0c-10 -94 -10 -189 0 -283'], + 0x21D8: [600,22,782,80,702,'702 261c-10 -94 -10 -189 0 -283c-94 10 -189 10 -283 0c-8 11 -17 22 -27 32c-11 10 -21 19 -33 28c36 3 71 6 107 7l-386 385c8 6 16 12 23 19c7 8 14 15 19 24l429 -429c30 -1 61 -3 91 -6c-3 30 -5 61 -6 91l-429 429c9 5 16 12 24 19c7 7 13 15 19 23l385 -386 c1 36 4 71 7 107c9 -12 18 -22 28 -33c10 -10 21 -19 32 -27'], + 0x21D9: [600,22,782,80,702,'702 430l-385 -385c35 -1 71 -4 106 -7c-12 -9 -22 -18 -32 -28s-20 -21 -28 -32c-94 10 -189 10 -283 0c10 94 10 189 0 283c11 8 22 17 32 27c10 11 19 21 28 33c4 -36 6 -71 7 -107l386 386c5 -8 12 -16 19 -23s15 -14 23 -19l-429 -429c-1 -30 -3 -61 -6 -91 c30 3 61 5 91 6l429 429c5 -9 12 -16 19 -24c7 -7 15 -13 23 -19'], + 0x21DC: [400,-100,920,80,840,'840 220h-62c-29 0 -51 14 -69 35c-12 14 -22 32 -34 46c-6 7 -12 14 -22 14c-17 0 -22 -13 -26 -27c-7 -28 -9 -63 -16 -92c-12 -42 -35 -71 -83 -71c-49 0 -72 29 -84 71c-7 29 -9 64 -16 92c-4 14 -9 27 -25 27c-11 0 -17 -7 -23 -14c-12 -14 -22 -32 -34 -46 c-18 -21 -40 -35 -68 -35h-62c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h62c10 0 16 7 22 14c12 14 22 32 34 46c18 21 40 35 69 35 c48 0 71 -29 83 -71c7 -29 9 -64 16 -92c4 -14 9 -27 26 -27c16 0 21 13 25 27c7 28 9 63 16 92c12 42 35 71 84 71c28 0 50 -14 68 -35c12 -14 22 -32 34 -46c6 -7 12 -14 23 -14h62c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21E6: [450,-50,1047,80,967,'967 140h-635v-90c-7 2 -15 3 -23 3s-15 -1 -23 -3c-60 75 -130 141 -206 200c76 59 146 125 206 200c8 -2 15 -3 23 -3s16 1 23 3v-90h635v-220zM927 180v140h-635v75c-46 -52 -95 -100 -148 -145c53 -45 102 -93 148 -145v75h635'], + 0x21E7: [705,182,560,80,480,'480 452l-90 1v-635h-220v635h-90c2 7 3 15 3 22c0 8 -1 16 -3 23c75 61 141 131 200 207c59 -76 125 -146 200 -207c-2 -7 -3 -15 -3 -23c0 -7 1 -15 3 -23zM425 493c-52 45 -100 95 -145 148c-45 -53 -93 -103 -145 -149h75v-635l140 1v635h75'], + 0x21E8: [450,-50,1047,80,967,'967 250c-76 -59 -146 -125 -206 -200c-8 2 -15 3 -23 3s-16 -1 -23 -3v90h-635v220h635v90c7 -2 15 -3 23 -3s15 1 23 3c60 -75 130 -141 206 -200zM904 250c-54 45 -103 93 -149 145v-75h-635v-140h635v-75c46 52 95 100 149 145'], + 0x21E9: [682,205,560,80,480,'480 2c-75 -61 -141 -131 -200 -207c-59 76 -125 146 -200 207c2 7 3 15 3 23c0 7 -1 15 -3 22h90v635h220v-635l90 1c-2 -8 -3 -16 -3 -23c0 -8 1 -16 3 -23zM425 7h-75v635l-140 1v-635h-75c52 -46 100 -96 145 -149c45 53 93 103 145 148'], + 0x21F3: [705,205,560,80,480,'480 2c-75 -61 -141 -131 -200 -207c-59 76 -125 146 -200 207c2 7 3 15 3 23c0 7 -1 15 -3 23h90v405h-90c2 7 3 15 3 22c0 8 -1 16 -3 23c75 61 141 131 200 207c59 -76 125 -146 200 -207c-2 -7 -3 -15 -3 -23c0 -7 1 -15 3 -23l-90 1v-406l90 1c-2 -8 -3 -16 -3 -23 c0 -8 1 -16 3 -23zM425 8h-75v485h75c-52 45 -100 95 -145 148c-45 -53 -93 -103 -145 -149h75v-484h-75c52 -46 100 -96 145 -149c45 53 93 103 145 149'], + 0x21F5: [635,135,800,80,720,'380 36c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v624c10 -2 20 -3 30 -3s20 1 30 3v-624c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 400c-43 30 -83 63 -120 99v-624c-10 2 -20 3 -30 3 s-20 -1 -30 -3v624c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x21F6: [740,240,920,80,840,'840 -90c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-624c2 10 3 20 3 30s-1 20 -3 30h624c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM840 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3 s-21 -1 -32 -3c30 43 63 83 99 120h-624c2 10 3 20 3 30s-1 20 -3 30h624c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM840 590c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-624c2 10 3 20 3 30 s-1 20 -3 30h624c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x27F4: [568,68,1130,80,1050,'757 280c-12 128 -99 215 -227 227v-227h227zM470 280v227c-128 -12 -215 -99 -227 -227h227zM470 -7v227h-227c12 -128 99 -215 227 -227zM757 220h-227v-227c128 12 215 99 227 227zM1050 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3 c30 43 63 83 99 120h-97c-13 -174 -136 -288 -317 -288s-304 114 -317 288h-103c2 10 3 20 3 30s-1 20 -3 30h103c13 174 136 288 317 288s304 -114 317 -288h97c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x27FB: [400,-100,1370,80,1290,'1290 100c-7 2 -15 3 -22 3c-8 0 -16 -1 -23 -3v120h-1029c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1029v120c7 -2 15 -3 23 -3c7 0 15 1 22 3 v-300'], + 0x27FD: [450,-50,1445,80,1365,'1365 50c-10 2 -20 3 -30 3s-20 -1 -30 -3v80h-1010c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-60 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h1010v80c10 -2 20 -3 30 -3s20 1 30 3 v-400zM1305 310h-1071c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h1071v120'], + 0x27FE: [450,-50,1445,80,1365,'1365 250c-73 -59 -140 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-1010v-80c-10 2 -20 3 -30 3s-20 -1 -30 -3v400c10 -2 20 -3 30 -3s20 1 30 3v-80h1010c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3 c59 -73 127 -141 200 -200zM1280 250c-24 19 -47 39 -69 60h-1071v-120h1071c22 21 45 41 69 60'], + 0x27FF: [400,-100,1370,80,1290,'1290 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-99c-10 0 -16 -7 -23 -14c-12 -14 -22 -32 -34 -46c-18 -21 -39 -35 -68 -35c-49 0 -72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -8 27 -25 27c-16 0 -21 -13 -25 -27 c-8 -28 -9 -63 -17 -92c-11 -42 -34 -71 -83 -71s-72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -8 27 -25 27s-21 -13 -25 -27c-8 -28 -9 -63 -17 -92c-11 -42 -34 -71 -83 -71s-72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -8 27 -25 27c-10 0 -16 -7 -23 -14 c-12 -14 -22 -32 -34 -46c-18 -21 -39 -35 -68 -35h-100c2 10 3 20 3 30s-1 20 -3 30h100c10 0 16 7 23 14c12 14 22 32 34 46c18 21 39 35 68 35c49 0 72 -29 83 -71c8 -29 9 -64 17 -92c4 -14 8 -27 25 -27s21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71s72 -29 83 -71 c8 -29 9 -64 17 -92c4 -14 8 -27 25 -27s21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71s72 -29 83 -71c8 -29 9 -64 17 -92c4 -14 9 -27 25 -27c10 0 16 7 23 14c12 14 22 32 34 46c18 21 39 35 68 35h99c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3 c51 -56 109 -106 171 -150'], + 0x2906: [450,-50,995,80,915,'915 50c-10 2 -20 3 -30 3s-20 -1 -30 -3v80h-560c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h560v80c10 -2 20 -3 30 -3s20 1 30 3v-400z M855 310h-621c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h621v120'], + 0x2907: [450,-50,995,80,915,'915 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-560v-80c-10 2 -20 3 -30 3s-20 -1 -30 -3v400c10 -2 20 -3 30 -3s20 1 30 3v-80h560c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3 c59 -73 127 -141 200 -200zM830 250c-24 19 -47 39 -69 60h-621v-120h621c22 21 45 41 69 60'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Arrows/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..ba5c231 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js @@ -0,0 +1,100 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'GyrePagellaMathJax_DoubleStruck', + id: 'GYREPAGELLADOUBLESTRUCK', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2102: [698,12,858,80,778,'778 658l-21 -184l-44 4l4 30c5 37 -115 146 -202 146c-159 0 -254 -126 -254 -296c0 -184 106 -325 288 -325c69 0 153 34 183 83l40 -19l-21 -68c-81 -42 -150 -39 -236 -41h-10c-214 0 -425 126 -425 351c0 226 169 359 453 359c75 0 140 -6 245 -40zM730 626 c-29 9 -56 15 -81 20c29 -21 56 -47 76 -71zM341 59c-80 67 -124 174 -124 299c0 106 32 196 91 257c-117 -49 -184 -144 -184 -276c0 -141 95 -236 217 -280'], + 0x210D: [686,0,960,80,880,'880 0h-325v44l48 3c33 2 30 15 30 73v224h-306v-224v-24c0 -38 2 -47 30 -49l48 -3v-44h-325v44l48 3c33 2 30 15 30 73v446v24c0 38 -2 47 -30 49l-48 3v44h325v-44l-48 -3c-33 -2 -30 -15 -30 -73v-178h306v178v24c0 38 -2 47 -30 49l-48 3v44h325v-44l-48 -3 c-33 -2 -30 -15 -30 -73v-446v-24c0 -38 2 -47 30 -49l48 -3v-44zM764 44c-4 17 -6 41 -6 76v446c0 35 2 59 6 76h-93c4 -17 6 -41 6 -76v-446c0 -35 -2 -59 -6 -76h93zM289 44c-4 17 -6 41 -6 76v446c0 35 2 59 6 76h-93c4 -17 6 -41 6 -76v-446c0 -35 -2 -59 -6 -76h93'], + 0x2115: [686,12,887,80,807,'807 642l-44 -3c-33 -2 -40 -11 -40 -68v-583l-72 20l-443 461v-354c0 -57 8 -66 41 -68l44 -3v-44h-213v44l44 3c33 2 40 11 40 68v456c0 57 -7 66 -40 68l-44 3v44h149l450 -462v347c0 57 -7 66 -40 68l-44 3v44h212v-44zM679 49v112l-468 481h-15 c10 -11 12 -39 12 -71v-38l459 -479'], + 0x2119: [686,0,790,80,710,'710 509c0 -169 -114 -235 -271 -235c-22 0 -33 5 -40 8l-13 51c25 -10 36 -14 54 -14c75 0 96 84 96 162c0 82 -34 161 -124 161h-76v-526c0 -57 1 -67 30 -69l48 -3v-44h-325v44l48 3c28 2 30 12 30 69v455c0 53 -6 67 -32 68l-55 3v44h373c147 0 257 -63 257 -177z M666 509c0 71 -55 111 -135 126c34 -38 49 -94 49 -154c0 -55 -12 -109 -37 -149c74 24 123 79 123 177zM297 44c-4 16 -5 39 -5 72v526h-87c4 -16 6 -39 6 -71v-455c0 -33 -1 -56 -5 -72h91'], + 0x211A: [698,187,936,80,856,'856 -48l-50 -104c-44 -26 -81 -35 -112 -35c-19 0 -37 3 -52 8l-138 47c-28 9 -54 21 -71 22c-4 0 -37 -6 -65 -20l-37 23c10 35 23 74 51 100c-179 28 -302 166 -302 348c0 210 160 357 402 357c237 0 374 -126 374 -331c0 -186 -115 -323 -289 -365l41 -13 c80 -25 106 -34 130 -34c7 0 64 -1 81 20zM812 367c0 126 -61 216 -168 259c53 -61 75 -161 75 -289c0 -103 -19 -188 -57 -248c93 57 150 156 150 278zM675 337c0 192 -49 316 -207 316c-151 0 -207 -105 -207 -275c0 -199 63 -344 219 -344c136 0 195 120 195 303zM313 57 c-65 68 -96 181 -96 321c0 92 15 167 50 221c-90 -54 -143 -145 -143 -258c0 -132 74 -237 189 -284zM789 -82c-23 -5 -46 -7 -51 -7c-26 0 -55 9 -143 36c-63 19 -75 25 -116 30h-27c-39 0 -52 -14 -67 -50c24 5 45 7 45 7c21 0 53 -13 88 -24l138 -47c12 -4 24 -7 39 -7 c22 0 47 7 76 24'], + 0x211D: [686,0,907,80,827,'827 44l-10 -44h-206l-255 301l12 54h38c69 2 137 59 137 138c0 73 -29 149 -120 149h-96v-527c0 -57 2 -66 30 -68l48 -3v-44h-325v44l48 3c28 2 30 11 30 68v456c0 56 -2 66 -31 68l-41 3v44h404c132 0 227 -64 227 -172c0 -96 -49 -153 -161 -184l202 -241 c11 -14 48 -41 69 -45zM673 514c0 70 -55 112 -133 124c34 -37 47 -91 47 -145c0 -46 -18 -87 -45 -118c96 29 131 69 131 139zM742 44c-7 6 -13 12 -17 17l-222 263c-29 -6 -63 -12 -95 -13l225 -267h109zM288 44c-4 16 -5 39 -5 71v527h-86c4 -16 5 -39 5 -71v-456 c0 -32 -1 -55 -5 -71h91'], + 0x2124: [686,0,776,80,696,'696 629l-399 -585h164c136 0 187 111 187 170v17h44v-231h-612v59s82 88 103 118l237 339c28 35 60 87 74 126h-165c-106 0 -157 -104 -156 -136l1 -19l-44 -3l-17 202h583v-57zM216 645h-58l5 -57c16 21 30 38 53 57zM652 642h-114c-20 -56 -54 -112 -83 -153 l-236 -338c-20 -28 -81 -95 -92 -107h118zM651 41v58c-17 -24 -32 -40 -57 -58h57'], + 0x213C: [493,11,797,80,717,'717 61c-62 -59 -92 -72 -152 -72c-37 0 -133 14 -159 135c-6 29 -8 69 -8 110c0 43 2 89 4 123l-109 6v-165c0 -117 -54 -193 -101 -208l-84 20v44h20c21 0 49 0 68 4s62 87 62 150l1 156c-11 1 -25 1 -32 1c-51 0 -86 -11 -105 -50l-42 13c14 101 34 156 126 154 l273 -9l30 -1c18 0 39 1 62 3c40 4 75 9 101 18l28 -28c-10 -31 -19 -54 -29 -82c-27 -12 -46 -18 -70 -23c-17 -3 -29 -4 -43 -4v-167c0 -84 24 -128 81 -128c14 0 30 16 48 32zM645 441c-21 -4 -45 -8 -70 -10c-24 -2 -46 -3 -66 -3l-32 1l-273 9c-43 1 -54 -14 -66 -49 c28 14 62 20 99 20l80 -2c64 -2 133 -8 133 -8c-4 -49 -8 -111 -8 -166c0 -39 2 -74 7 -99c20 -99 108 -103 136 -103c-44 11 -71 77 -71 158v211c45 0 57 0 79 4c16 2 29 6 41 11c3 9 7 15 11 26'], + 0x213D: [482,229,723,80,643,'643 349h-20c-21 0 -49 0 -68 -4s-50 -76 -65 -153c-9 -48 -18 -91 -18 -104c0 -55 1 -74 11 -119c12 -50 58 -151 58 -151c-35 -18 -67 -24 -87 -47l-69 18l28 168c6 40 9 47 13 101c-19 104 -89 246 -173 246c-49 0 -95 1 -134 -48l-39 17c15 73 59 209 169 209 c122 0 170 -95 206 -280c28 110 57 196 104 211l84 -20v-44zM419 197c-38 166 -73 241 -170 241c-60 0 -92 -55 -112 -110c37 19 76 20 116 20c57 0 125 -55 166 -151zM483 -161c-8 19 -24 63 -31 110c-3 -53 -12 -105 -16 -128l4 -1c12 7 29 13 43 19'], + 0x213E: [686,0,690,80,610,'610 686l-20 -176l-44 4l3 31c1 4 1 9 1 13c0 74 -95 85 -168 85h-55v-511c0 -60 4 -84 31 -85l56 -3v-44h-134h-189v44l36 3c24 2 31 25 31 85v412c0 62 -2 94 -30 96l-48 3v43h530zM569 650h-45c19 -6 38 -22 40 -34zM292 44c-7 19 -9 49 -9 89v510h-93 c9 -22 12 -54 12 -98v-412c0 -40 -2 -70 -9 -89h99'], + 0x213F: [686,0,960,80,880,'880 0h-325v44l48 3c33 2 30 15 30 73v504c0 12 -5 18 -18 18h-269c-13 0 -19 -6 -19 -18v-504v-24c0 -38 2 -47 30 -49l48 -3v-44h-325v44l48 3c33 2 30 15 30 73v446c0 58 -3 71 -30 73l-48 3v44h800v-44l-48 -3c-25 -2 -30 -15 -30 -73v-446v-24c0 -38 2 -47 30 -49 l48 -3v-44zM764 44c-4 17 -6 41 -6 76v446c0 35 2 59 6 76h-87v-522c0 -35 -2 -59 -6 -76h93zM289 44c-4 17 -6 41 -6 76v522h-87c4 -17 6 -41 6 -76v-446c0 -35 -2 -59 -6 -76h93'], + 0x2140: [750,250,1054,80,974,'974 30l-41 -280h-835l-18 35l325 456l-321 475l18 34h767l21 -212l-44 -4l-3 26c-7 40 -114 146 -289 146h-259l242 -357l-307 -431h413c195 0 278 61 284 101l3 18zM835 641l-5 66h-92c43 -16 77 -46 97 -66zM483 350l-240 356h-100l289 -427zM916 -59 c-50 -35 -137 -67 -273 -67h-445l-57 -80h754'], + 0x2145: [686,0,903,63,869,'862 372c-41 -194 -178 -372 -466 -372h-26h-307l9 44l43 5c16 2 23 29 27 48l95 447c13 61 16 93 -11 95l-50 3l10 44h382c201 0 337 -114 294 -314zM818 372c31 145 -48 235 -176 262c68 -54 107 -151 78 -288c-29 -136 -105 -233 -195 -289c173 42 263 172 293 315z M676 346c41 195 -72 296 -201 296h-49l-127 -598h41c137 0 293 103 336 302zM382 642h-93c5 -22 1 -54 -8 -98l-95 -447c-4 -18 -11 -37 -21 -53h90'], + 0x2146: [695,12,723,75,694,'694 695l-23 -107l-107 -505c-6 -28 -5 -35 9 -36l39 -3l-9 -44h-218l11 36c-47 -41 -91 -48 -116 -48c-127 0 -232 49 -198 211c24 111 76 171 148 212l79 44c30 16 80 26 110 26c7 0 34 -1 67 -19l29 137c4 15 5 28 -13 25l-38 -6l3 44zM639 643l-76 -10 c0 -10 -1 -22 -4 -34l-80 -378s-35 -157 -43 -177h77c1 10 3 23 7 39zM472 396c4 17 -44 41 -73 41c-107 -1 -130 -117 -151 -217c-24 -113 -20 -187 55 -187c56 0 109 82 113 98zM255 378l-23 -13c-34 -18 -86 -75 -106 -166c-19 -91 24 -146 85 -169 c-24 33 -24 113 -7 190c11 55 27 112 51 158'], + 0x2147: [481,12,644,77,583,'573 228h-316c-22 -116 -31 -195 103 -195c31 0 74 31 108 60l32 -21l-29 -59c-43 -13 -91 -25 -146 -25c-208 0 -270 81 -240 222l2 11c18 75 35 115 127 196c75 67 163 64 196 64c138 0 201 -71 163 -253zM537 272c13 83 -14 145 -74 164c20 -30 14 -92 1 -164h73z M421 272c23 111 27 162 -33 162c-62 0 -99 -64 -123 -162h156zM300 428c-20 -9 -45 -27 -61 -41c-77 -69 -92 -103 -108 -168c-22 -88 9 -157 91 -182c-31 38 -19 151 -7 207c13 60 39 123 85 184'], + 0x2148: [715,0,442,40,401,'400 630c-10 -46 -57 -85 -103 -85s-76 39 -66 85s56 85 102 85s77 -39 67 -85zM364 489l-83 -392c-9 -41 -10 -49 5 -50l45 -3l-9 -44h-282l9 44l47 3c16 1 18 9 27 50l63 296c3 15 -1 27 -14 25l-37 -6l2 44zM356 630c5 22 -10 41 -32 41s-44 -19 -49 -41s9 -41 31 -41 s45 19 50 41zM309 437l-76 -10c1 -10 -1 -22 -3 -34l-63 -296c-5 -23 -10 -40 -15 -53h76c1 13 4 30 9 53'], + 0x2149: [715,272,446,-5,461,'460 630c-10 -46 -57 -85 -103 -85s-76 39 -66 85s56 85 102 85s77 -39 67 -85zM426 489l-110 -508c-18 -85 -66 -123 -114 -172c-55 -56 -69 -81 -204 -81l-3 61l42 21c5 -8 32 -35 46 -35c28 0 40 36 78 217l86 401c3 15 4 28 -14 25l-37 -6l2 44zM416 630 c5 22 -10 41 -32 41s-44 -19 -49 -41s9 -41 31 -41s45 19 50 41zM370 437l-76 -10c1 -10 -1 -22 -3 -34l-86 -400c-17 -77 -30 -134 -42 -168c18 21 91 71 109 156'], + 0x1D538: [694,0,920,80,840,'840 0h-308v44l47 4c11 1 21 -1 21 4c0 8 -4 19 -19 56l-56 126h-258s-24 -47 -37 -79c-14 -36 -31 -85 -31 -97c0 -8 5 -8 27 -10l37 -4v-44h-183v44l37 4c16 1 26 21 36 42l276 604h74l248 -551c30 -68 32 -93 54 -95l35 -4v-44zM750 44c-11 18 -23 44 -39 81l-236 525 h-18l-35 -77l199 -448c21 -47 23 -63 23 -73c0 -3 0 -5 -1 -8h107zM505 278l-108 241l-110 -241h218'], + 0x1D539: [686,0,784,80,704,'704 210c0 -66 -36 -106 -86 -151c-60 -54 -108 -59 -234 -59h-276v44l43 4c8 4 6 25 6 49v454v35c0 35 -3 51 -31 53l-46 3v44h369c136 0 221 -49 221 -148c0 -73 -60 -110 -121 -148c26 -7 46 -17 68 -33c43 -31 87 -89 87 -147zM626 538c0 65 -50 91 -129 101 c30 -31 44 -65 44 -114c0 -44 -17 -81 -44 -110c53 24 129 62 129 123zM497 525c0 71 -40 117 -122 117h-49v-238h29c75 0 142 46 142 121zM660 210c0 44 -36 88 -69 111c-25 19 -49 28 -87 34c43 -36 67 -90 67 -155c0 -64 -15 -110 -52 -149c27 7 141 62 141 159zM527 200 c0 94 -66 160 -166 160h-35v-316h45c117 0 156 63 156 156zM282 44v316v282h-90c7 -20 9 -49 9 -91v-454c0 -20 -3 -38 -9 -53h90'], + 0x1D53B: [686,0,903,80,823,'823 372c0 -194 -99 -372 -387 -372h-26h-307v44l42 5c15 2 16 29 16 48v447c0 61 -3 93 -31 95l-50 3v44h382c201 0 361 -114 361 -314zM779 372c0 145 -98 235 -232 262c80 -54 139 -151 139 -288c0 -136 -55 -233 -133 -289c164 42 226 172 226 315zM642 346 c0 195 -134 296 -263 296h-49v-598h41c137 0 271 103 271 302zM286 44v598h-93c9 -22 12 -54 12 -98v-447c0 -18 -3 -37 -9 -53h90'], + 0x1D53C: [686,0,723,80,643,'643 184l-18 -184h-534v44l36 3c27 2 31 25 31 85v412c0 62 -3 94 -30 96l-48 3v43h550l-20 -176l-44 4l3 31c0 4 1 7 1 11c0 76 -114 87 -188 87h-55v-282h98c21 0 44 1 49 22c4 17 4 57 4 57h44v-207h-44l-5 65c-1 17 -24 19 -48 19h-98v-273h77c94 0 184 39 192 118 l3 27zM589 650h-45c19 -6 38 -22 40 -34zM596 78c-11 -21 -30 -34 -52 -42h49zM283 44v599h-93c9 -22 12 -54 12 -98v-412c0 -40 -2 -70 -9 -89h90'], + 0x1D53D: [686,0,690,80,610,'610 686l-20 -176l-44 4l3 31c1 4 1 9 1 13c0 74 -95 85 -168 85h-55v-282h98c21 0 45 1 49 22c3 17 4 57 4 57h44v-207h-44s-2 44 -5 65c-2 17 -24 19 -48 19h-98v-185c0 -60 4 -84 31 -85l56 -3v-44h-134h-189v44l36 3c24 2 31 25 31 85v412c0 62 -2 94 -30 96l-48 3 v43h530zM569 650h-45c19 -6 38 -22 40 -34zM292 44c-7 19 -9 49 -9 89v510h-93c9 -22 12 -54 12 -98v-412c0 -40 -2 -70 -9 -89h99'], + 0x1D53E: [698,12,925,80,845,'845 249c-15 0 -32 -3 -32 -26v-186c-81 -35 -156 -49 -298 -49c-223 0 -435 122 -435 351c0 226 169 359 453 359c75 0 140 -6 245 -40l-19 -184l-44 4l3 25c5 42 -116 151 -203 151c-159 0 -254 -126 -254 -296c0 -184 96 -325 277 -325c56 2 94 17 103 33 c3 5 3 14 3 32v125c0 10 -3 21 -24 22l-73 4v44h298v-44zM732 626c-29 9 -58 15 -83 20c29 -21 58 -47 78 -71zM770 249h-85c2 -8 3 -16 3 -26v-125c0 -30 -3 -39 -10 -56c40 6 64 13 91 24v157c0 10 1 19 1 26zM328 65c-73 67 -111 171 -111 293c0 106 32 196 91 257 c-117 -49 -184 -144 -184 -276c0 -136 87 -228 204 -274'], + 0x1D540: [686,0,485,80,405,'405 0h-325v44l48 3c29 2 30 8 30 64v460c0 57 -2 66 -30 68l-48 3v44h325v-44l-48 -3c-28 -2 -30 -11 -30 -68v-460c0 -56 3 -62 30 -64l48 -3v-44zM288 642h-91c4 -16 5 -39 5 -71v-460c0 -30 -1 -52 -4 -67h89c-3 15 -4 37 -4 67v460c0 32 1 55 5 71'], + 0x1D541: [686,187,551,80,471,'471 642l-48 -3c-27 -2 -30 -11 -30 -68v-424c0 -128 -30 -181 -82 -245c-43 -54 -128 -89 -158 -89h-53l-20 115l27 19c41 -21 77 -35 96 -35c18 0 21 59 21 101v558c0 57 -2 66 -30 68l-58 3v44h335v-44zM354 642h-91c4 -16 5 -39 5 -71v-558c0 -31 -4 -72 -12 -104 c8 6 15 13 21 21c46 56 72 103 72 217v424c0 32 1 55 5 71zM198 -131c-18 4 -48 14 -70 25l7 -41h15c8 0 35 6 48 16'], + 0x1D542: [686,0,896,80,816,'816 44l-2 -44h-220l-267 275v-160c0 -57 3 -66 30 -68l48 -3v-44h-325v44l48 3c27 2 30 11 30 68v456c0 57 -3 66 -30 68l-48 3v44h325v-44l-48 -3c-27 -2 -30 -11 -30 -68v-178l180 202c33 37 54 67 58 91h143v-47h-30c-55 0 -87 -16 -108 -39l-154 -173l331 -347 c24 -24 36 -33 47 -34zM721 44l-334 350l-55 -62l280 -288h109zM288 44c-4 16 -5 39 -5 71v456c0 32 1 55 5 71h-91c4 -16 5 -39 5 -71v-456c0 -32 -1 -55 -5 -71h91'], + 0x1D543: [686,0,713,80,633,'633 184l-18 -184h-524v44l36 3c27 2 31 25 31 85v412c0 62 -3 94 -30 96l-48 3v43h325v-43l-48 -3c-27 -2 -30 -34 -30 -96v-500h67c94 0 184 39 192 118l3 27zM586 78c-11 -18 -35 -37 -57 -42h51zM295 643h-105c9 -22 12 -54 12 -98v-412c0 -40 -2 -70 -9 -89h90v501 c0 44 3 76 12 98'], + 0x1D544: [690,8,1037,80,957,'957 0h-312v44l34 3c29 3 31 11 31 68v424l-140 -391c-28 -77 -42 -123 -49 -156h-79l-244 471v-348c0 -56 4 -66 31 -68l44 -3v-44h-193v44l44 3c26 2 30 12 30 68v460v23c0 36 -2 43 -30 45l-44 3v44h196l259 -507l181 507h236v-44l-43 -3c-28 -2 -30 -12 -30 -68v-460 c0 -57 5 -66 30 -68l48 -3v-44zM840 44c-4 16 -5 39 -5 71v460c0 32 1 55 5 71h-86v-531c0 -32 -1 -55 -5 -71h91zM515 124l-267 522h-55c4 -16 5 -39 5 -71v-15l272 -524h18c8 32 13 49 27 88'], + 0x1D546: [698,12,936,80,856,'856 367c0 -225 -169 -379 -406 -379c-215 0 -370 149 -370 353c0 210 160 357 402 357c237 0 374 -126 374 -331zM812 367c0 126 -61 216 -168 259c53 -61 75 -161 75 -289c0 -103 -19 -188 -57 -248c93 57 150 156 150 278zM675 337c0 192 -49 316 -207 316 c-151 0 -207 -105 -207 -275c0 -199 63 -344 219 -344c136 0 195 120 195 303zM313 57c-65 68 -96 181 -96 321c0 92 15 167 50 221c-90 -54 -143 -145 -143 -258c0 -132 74 -237 189 -284'], + 0x1D54A: [698,12,693,80,613,'613 230c0 -173 -103 -242 -292 -242c-61 0 -142 14 -216 47l19 194l44 -8l-2 -19c-6 -60 91 -169 162 -169c89 0 117 76 117 146c0 53 -16 75 -132 97c-175 34 -233 108 -233 218c0 115 76 204 279 204c57 0 105 -10 205 -50l-29 -164l-44 8l3 17 c10 55 -72 144 -147 144s-99 -76 -99 -140c0 -42 16 -62 97 -76c238 -42 268 -131 268 -207zM519 622c-8 3 -30 10 -44 14c18 -13 37 -41 39 -54zM569 230c0 64 -32 129 -232 163c-117 20 -133 60 -133 120c0 44 11 90 34 125c-80 -24 -114 -77 -114 -144 c0 -90 52 -146 197 -174c155 -30 168 -70 168 -141c0 -46 -10 -93 -35 -128c75 26 115 82 115 179zM211 45c-21 18 -48 49 -54 71l-5 -54c18 -7 38 -13 59 -17'], + 0x1D54B: [686,0,824,80,744,'744 686l-12 -202l-44 5l2 34c3 48 -83 119 -147 119h-41c-6 -36 -11 -90 -11 -127v-400c0 -57 4 -66 30 -68l48 -3v-44h-325v44l48 3c27 2 30 11 30 68v400c0 35 -5 91 -11 127h-41c-64 0 -139 -72 -136 -120l2 -33l-44 -5l-12 202h664zM701 645h-55 c21 -17 35 -30 52 -49zM173 645h-50l3 -45c15 18 27 30 47 45zM457 642h-101c6 -45 10 -94 10 -127v-400c0 -32 -1 -55 -5 -71h91c-4 16 -5 39 -5 71v400c0 34 4 83 10 127'], + 0x1D54C: [686,12,899,80,819,'819 642l-44 -3c-29 -2 -30 -12 -30 -68v-261c0 -217 -63 -322 -288 -322c-107 0 -194 25 -237 69c-41 42 -62 102 -62 187v327c0 57 -3 66 -30 68l-48 3v44h325v-44l-48 -3c-27 -2 -30 -11 -30 -68v-376c0 -112 30 -163 137 -163c152 0 237 62 237 278v261 c0 56 -5 66 -35 68l-44 3v44h197v-44zM311 52c-20 33 -28 81 -28 143v376c0 32 1 55 5 71h-91c4 -16 5 -39 5 -71v-327c0 -71 15 -121 50 -157c14 -15 34 -26 59 -35'], + 0x1D54D: [686,8,902,80,822,'822 642l-37 -4c-16 -1 -27 -20 -36 -41l-246 -605h-76l-248 551c-30 68 -43 94 -65 96l-34 3v44h310v-44l-47 -4c-7 0 -11 -1 -11 -4c0 -8 4 -20 19 -55l178 -409l146 361c21 45 28 85 28 97c0 8 -5 10 -27 12l-37 2v44h183v-44zM506 113l-195 448c-21 45 -23 63 -23 73 c0 3 0 5 1 8h-114c13 -18 28 -45 44 -81l236 -525h20'], + 0x1D54E: [694,8,1135,80,1055,'1055 642l-32 -3c-16 -2 -28 -6 -33 -23l-197 -624h-78l-152 509l-160 -509h-78l-187 614c-6 22 -12 31 -30 33l-28 3v44h293v-44l-42 -3c-14 -1 -18 -8 -18 -17c0 -6 2 -13 4 -21l114 -372l148 465h102l140 -468l124 393c4 12 -8 19 -24 20l-40 3v44h174v-44zM798 152 l-149 498h-38l-24 -76l160 -538h14zM408 155l-133 434c-4 15 -7 29 -7 40c0 5 0 9 1 13h-96c2 -7 5 -15 7 -25l177 -581h14'], + 0x1D54F: [697,0,831,80,751,'751 0h-213l-171 270l-211 -270h-76v44s28 1 42 7c31 14 45 35 67 63l152 195l-148 234c-29 46 -40 71 -63 73l-41 1l-9 42l163 38c28 0 47 4 98 -75l110 -172l184 236h69v-44s-38 -1 -50 -9c-20 -13 -33 -37 -69 -83l-109 -139l197 -304c28 -42 41 -59 50 -60 c0 0 19 -3 28 -3v-44zM663 44c-7 10 -16 23 -26 39l-332 515c-34 52 -41 55 -58 55l-69 -16c15 -15 32 -38 53 -70l333 -523h99'], + 0x1D550: [697,0,802,80,722,'722 659c-77 -92 -130 -165 -195 -262c-53 -82 -53 -76 -53 -148v-134v-23c0 -37 2 -43 30 -45l48 -3l-1 -44h-323l-1 44l48 3c33 2 30 11 30 68v147c0 14 -2 60 -7 70l-105 211c-24 49 -43 72 -63 73l-41 1l-9 42l163 38c28 0 61 -4 99 -75l125 -237l87 131 c29 44 25 132 25 170h131zM657 645h-34v-11c0 -14 -1 -37 -4 -49c8 11 36 55 38 60zM441 342l-135 256c-23 43 -42 55 -59 55l-69 -16c15 -15 38 -40 53 -70l106 -215c6 -12 12 -72 12 -90v-147c0 -32 -1 -55 -5 -71h91c-4 16 -5 39 -5 71v134v19c0 36 1 53 11 74'], + 0x1D552: [481,12,663,80,583,'583 0h-219l5 43l-67 -43c-9 -6 -30 -12 -54 -12c-92 0 -168 42 -168 133c0 96 73 129 231 161l61 14c-1 72 7 139 -67 139c-39 0 -122 -35 -129 -84l-44 2l-2 52l64 39c41 25 85 37 132 37c130 0 200 -48 200 -211v-187c0 -28 3 -35 17 -36l40 -3v-44zM484 44l-2 226 c-1 96 -32 146 -90 165c22 -34 22 -83 24 -134v-257h68zM372 95v155c-126 -22 -132 -59 -132 -115c0 -32 13 -78 43 -78c33 0 48 14 89 38zM249 27c-36 23 -53 72 -53 108v19c0 23 3 48 31 71c-65 -22 -103 -50 -103 -104c0 -62 54 -92 125 -94'], + 0x1D553: [695,18,728,80,648,'648 270c0 -111 -47 -176 -89 -203l-91 -58c-20 -13 -67 -21 -97 -21c-10 0 -53 2 -110 42l-92 -48l-45 16c13 46 18 89 18 155v446c0 15 -1 28 -19 25l-36 -6l-7 44l220 33v-263c38 41 81 48 106 48c127 0 242 -48 242 -210zM604 270c0 91 -52 137 -117 163 c31 -38 44 -107 44 -184c0 -55 -3 -112 -18 -158l21 14c38 25 70 74 70 165zM487 249c0 113 -20 187 -95 187c-56 0 -92 -82 -92 -98v-265c0 -17 53 -41 82 -41c107 1 105 117 105 217zM256 74v569l-74 -10c3 -11 4 -23 4 -36v-444c0 -49 -4 -86 -11 -118'], + 0x1D554: [481,12,603,79,523,'523 446l-15 -142l-44 5l3 24c3 21 -66 104 -102 104c-94 0 -123 -83 -123 -177c0 -118 31 -227 131 -227c31 0 67 31 95 60l37 -21l-17 -59c-40 -13 -87 -25 -142 -25c-147 0 -270 84 -266 233c2 76 4 121 86 197c65 60 120 61 217 63c57 1 122 -26 140 -35zM478 426 c-12 6 -28 15 -47 19c20 -15 39 -36 44 -53zM256 45c-40 51 -58 129 -58 215c0 61 12 117 40 158c-13 -8 -27 -18 -42 -32c-69 -63 -70 -103 -72 -167c-3 -89 53 -149 132 -174'], + 0x1D555: [695,12,723,80,643,'643 0h-218l3 36c-38 -41 -80 -48 -105 -48c-127 0 -243 49 -243 211c0 111 39 171 103 212l69 44c27 16 75 26 105 26c7 0 34 -1 71 -19v137c0 15 -1 28 -19 25l-36 -6l-7 44l220 33v-107v-505c0 -28 3 -35 17 -36l40 -3v-44zM544 44c-1 10 -2 23 -2 39v560l-74 -10 c3 -10 4 -22 4 -34v-378s-2 -157 -5 -177h77zM428 131v265c0 17 -53 41 -82 41c-107 -1 -105 -117 -105 -217c0 -113 20 -187 95 -187c56 0 92 82 92 98zM245 30c-31 33 -48 113 -48 190c0 55 3 112 18 158l-21 -13c-30 -18 -70 -75 -70 -166s55 -146 121 -169'], + 0x1D556: [481,12,644,80,564,'564 228h-316c3 -116 11 -195 145 -195c31 0 67 31 95 60l37 -21l-17 -59c-40 -13 -86 -25 -141 -25c-208 0 -287 81 -287 222v11c2 75 10 115 85 196c61 67 150 64 183 64c138 0 216 -71 216 -253zM519 272c-5 83 -45 145 -109 164c27 -30 34 -92 36 -164h73zM403 272 c-1 111 -7 162 -67 162c-62 0 -86 -64 -89 -162h156zM254 37c-39 38 -51 151 -51 207c0 60 13 123 46 184c-18 -9 -39 -27 -52 -41c-63 -69 -71 -103 -73 -168c-3 -88 43 -157 130 -182'], + 0x1D557: [700,0,530,80,450,'450 682l-25 -129l-32 -1c-30 63 -39 74 -66 74c-17 0 -22 -37 -22 -127v-43h109v-44h-109v-315c0 -41 3 -49 16 -50l46 -3l-1 -44h-280l-1 44l46 3c14 1 16 9 16 50v315h-67v32l67 18v14c0 19 15 68 65 115l50 47c18 17 80 62 116 62c15 0 29 -3 72 -18zM406 654 c-9 4 -18 6 -29 6c-4 0 -9 0 -13 -1c13 -6 28 -23 34 -44zM279 597l-40 -39c-28 -29 -48 -64 -48 -82v-379c0 -23 -1 -40 -3 -53h76c-2 13 -3 30 -3 53v402c0 32 4 74 18 98'], + 0x1D558: [481,245,707,80,627,'627 470l-17 -65h-90c16 -23 30 -55 30 -86c0 -113 -127 -191 -226 -191c-22 0 -51 3 -81 10c-14 -11 -26 -20 -26 -26c0 -13 32 -16 93 -16h160c82 0 146 -73 146 -132c0 -133 -127 -209 -298 -209c-142 0 -238 17 -238 119c0 65 90 92 90 92c-35 18 -41 61 -41 86 c0 50 45 80 68 101c-61 23 -114 64 -114 131c0 69 53 120 116 156c44 26 99 41 147 41s95 -14 132 -38zM506 319c0 60 -52 99 -113 113c28 -35 43 -87 43 -143c0 -34 -8 -69 -24 -96c51 24 94 69 94 126zM392 289c0 72 -25 142 -82 142c-53 0 -69 -60 -69 -123 c0 -64 24 -130 80 -130c50 0 71 58 71 111zM232 184c-23 32 -35 77 -35 124c0 32 5 63 14 88c-45 -27 -84 -62 -84 -112c0 -57 51 -86 105 -100zM575 -48c0 46 -47 102 -105 102h-160c-41 0 -116 6 -128 32c-8 -8 -14 -26 -14 -33c0 -35 14 -58 56 -74c20 9 67 13 139 13 c138 0 148 -60 148 -94c0 -33 -10 -55 -31 -76c58 23 95 53 95 130zM467 -102c0 27 -13 52 -104 52c-126 0 -153 -23 -153 -74c0 -45 54 -82 115 -82c91 0 142 30 142 104zM205 -201c-23 21 -39 38 -39 77c0 25 9 47 26 62c0 0 -71 -20 -71 -64c0 -51 47 -68 84 -75'], + 0x1D559: [695,0,765,80,685,'685 44l-1 -44h-215v281c0 59 -19 156 -63 156c-30 0 -106 -81 -106 -103v-237c0 -41 1 -49 16 -50l45 -3v-44h-280v44l45 3c14 1 16 9 16 50v502c0 15 -5 27 -19 25l-36 -6l-7 44l220 33v-279l40 35c25 21 38 30 83 30c126 0 204 -54 204 -186v-198c0 -42 1 -49 16 -50z M586 44c-2 13 -3 30 -3 53v198c0 87 -48 133 -121 146c32 -12 51 -110 51 -160v-237h73zM259 44c-2 13 -3 30 -3 53v546l-74 -10c3 -10 4 -22 4 -34v-502c0 -23 -1 -40 -3 -53h76'], + 0x1D55A: [715,0,442,80,362,'306 630c0 -46 -39 -85 -85 -85s-84 39 -84 85s38 85 84 85s85 -39 85 -85zM362 0h-282v44l46 3c16 1 16 9 16 50v296c0 15 -6 27 -19 25l-36 -6l-7 44l220 33v-392c0 -41 1 -49 16 -50l46 -3v-44zM262 630c0 22 -19 41 -41 41s-40 -19 -40 -41s18 -41 40 -41 s41 19 41 41zM259 44c-2 13 -3 30 -3 53v340l-74 -10c3 -10 4 -22 4 -34v-296c0 -23 -1 -40 -3 -53h76'], + 0x1D55B: [715,272,446,80,366,'366 630c0 -46 -39 -85 -85 -85s-84 39 -84 85s38 85 84 85s85 -39 85 -85zM362 489l-2 -508c0 -85 -40 -123 -77 -172c-43 -56 -52 -81 -187 -81l-16 61l37 21c7 -8 40 -35 54 -35c28 0 32 36 32 217v401c0 15 -1 28 -19 25l-36 -6l-7 44zM322 630c0 22 -19 41 -41 41 s-40 -19 -40 -41s18 -41 40 -41s41 19 41 41zM317 437l-74 -10c3 -10 4 -22 4 -34l-1 -400c0 -77 -1 -134 -6 -168c14 21 76 71 76 156'], + 0x1D55C: [695,15,749,80,669,'669 13l-184 -28l-185 193v-81c0 -41 2 -49 16 -50l46 -3v-44h-282v44l46 3c15 1 16 9 16 50v502c0 15 -5 27 -19 25l-36 -6l-7 44l220 33v-388s24 17 37 30l127 135h124v-44l-22 -2c-23 -2 -82 0 -106 -21l-78 -87l198 -204c27 -26 74 -46 89 -50v-51zM601 49 c-17 8 -27 12 -47 33l-201 208l-49 -40v-12l197 -205zM259 44c-2 13 -3 30 -3 53v546l-74 -10c3 -10 4 -22 4 -34v-502c0 -23 -1 -40 -3 -53h76'], + 0x1D55D: [695,0,442,80,362,'362 0h-282v44l46 3c15 1 16 9 16 50v502c0 15 -5 27 -19 25l-36 -6l-7 44l220 33v-598c0 -41 2 -49 16 -50l46 -3v-44zM259 44c-2 13 -3 30 -3 53v546l-74 -10c3 -10 4 -22 4 -34v-502c0 -23 -1 -40 -3 -53h76'], + 0x1D55E: [489,0,1083,80,1003,'1003 0h-216v281c0 59 -10 155 -52 155c-4 0 -8 -1 -13 -3c-24 -10 -94 -71 -94 -99v-237c0 -41 0 -49 16 -50l45 -3v-44h-274v44l39 3c16 1 16 9 16 50v184c0 64 -41 171 -74 152c-47 -28 -95 -81 -95 -99v-237c0 -41 3 -49 16 -50l39 -3v-44h-274v44l45 3 c16 1 16 9 16 50v296c0 14 -1 26 -15 25l-41 -6l-7 44l221 33v-73l40 35c25 21 38 30 83 30c110 0 150 -26 183 -82l61 52c25 21 28 30 73 30c126 0 204 -54 204 -186v-198c0 -42 0 -49 16 -50l42 -3v-44zM904 44c-2 13 -3 30 -3 53v198c0 87 -44 128 -117 139 c30 -9 47 -103 47 -153v-237h73zM587 44c-2 13 -3 30 -3 53v237c0 3 1 6 2 10c-35 65 -76 93 -122 92c27 -13 50 -103 50 -155v-184c0 -23 -1 -40 -3 -53h76zM260 44c-2 13 -3 30 -3 53v340l-74 -10c3 -10 4 -22 4 -34v-296c0 -23 -1 -40 -3 -53h76'], + 0x1D55F: [489,0,765,80,685,'685 44l-1 -44h-215v281c0 59 -19 156 -63 156c-30 0 -106 -81 -106 -103v-237c0 -41 1 -49 16 -50l45 -3v-44h-280v44l45 3c14 1 16 9 16 50v296c0 15 -5 27 -19 25l-36 -6l-7 44l220 33v-73l40 35c25 21 38 30 83 30c126 0 204 -54 204 -186v-198c0 -42 1 -49 16 -50z M586 44c-2 13 -3 30 -3 53v198c0 87 -48 133 -121 146c32 -12 51 -110 51 -160v-237h73zM259 44c-2 13 -3 30 -3 53v340l-74 -10c3 -10 4 -22 4 -34v-296c0 -23 -1 -40 -3 -53h76'], + 0x1D560: [481,12,706,80,626,'626 242c0 -177 -129 -254 -296 -254c-142 0 -250 92 -250 234c0 190 120 259 279 259c150 0 267 -79 267 -239zM582 242c0 96 -53 160 -136 183c40 -31 57 -122 57 -220c0 -58 -11 -119 -38 -149c68 26 117 95 117 186zM459 205c0 146 -35 232 -118 232 c-77 0 -94 -76 -94 -181c0 -157 24 -224 112 -224c71 0 100 73 100 173zM248 46c-34 35 -45 114 -45 210c0 64 10 127 36 161c-74 -32 -115 -94 -115 -195c0 -82 51 -152 124 -176'], + 0x1D561: [489,240,728,80,648,'648 270c0 -111 -41 -173 -101 -211l-79 -50c-20 -12 -67 -21 -97 -21c-7 0 -34 1 -71 19v-150c0 -41 2 -49 16 -50l46 -3v-44h-282v44l46 3c13 1 16 9 16 50v536c0 15 -1 28 -19 25l-36 -6l-7 44l220 33v-57c38 42 80 49 105 49c127 0 243 -49 243 -211zM604 270 c0 91 -52 137 -117 163c31 -38 44 -107 44 -184c0 -55 -3 -112 -18 -158l21 13c36 22 70 75 70 166zM487 249c0 113 -20 187 -95 187c-56 0 -92 -82 -92 -98v-265c0 -17 53 -41 82 -41c107 1 105 117 105 217zM259 -196c-2 13 -3 30 -3 53v580l-74 -10c3 -10 4 -22 4 -34 v-536c0 -23 -1 -40 -3 -53h76'], + 0x1D562: [484,240,729,80,649,'649 -240h-282v44l46 3c16 1 16 9 16 50v180c-42 -47 -65 -49 -106 -49c-127 0 -243 49 -243 211c0 111 45 177 88 204l92 58c20 12 67 20 97 20c10 0 52 -2 107 -39l101 42l29 -24c-6 -72 -7 -103 -7 -156v-447v-12c0 -31 1 -37 16 -38l46 -3v-44zM548 430l-76 -31 l1 -542c0 -23 -1 -40 -3 -53h76c-2 13 -3 30 -3 53v447c0 51 0 87 5 126zM428 131v265c0 17 -53 41 -82 41c-107 -1 -105 -117 -105 -217c0 -113 20 -187 95 -187c56 0 92 82 92 98zM234 44c-25 39 -37 99 -37 176c0 55 2 116 26 167l-29 -18c-37 -23 -70 -79 -70 -170 s47 -136 110 -155'], + 0x1D563: [489,0,570,80,490,'490 449l-25 -143h-88c-4 25 1 106 -18 106c-6 0 -15 -6 -27 -20l-32 -38v-257c0 -41 0 -49 16 -50l46 -3l-1 -22v-22h-280v22l-1 22l46 3c15 1 16 9 16 50v296c0 15 -1 28 -19 25l-36 -6l-7 44l220 33v-66l13 15c26 31 79 43 115 43c17 0 35 -13 62 -32zM445 431 c-3 3 -11 6 -17 6c-9 0 -24 0 -33 -2c11 -11 16 -41 16 -68c0 -6 -1 -12 -1 -17h21zM259 44c-2 13 -3 30 -3 53v340l-74 -10c3 -10 4 -22 4 -34v-296c0 -23 -1 -40 -3 -53h76'], + 0x1D564: [481,12,598,80,518,'518 168c0 -108 -121 -180 -266 -180c-67 0 -125 11 -161 26l22 157l44 -6l-3 -16c-6 -41 46 -116 106 -116c58 0 110 42 110 86c0 17 -16 26 -47 33c-70 15 -114 22 -142 34c-54 24 -101 77 -101 133c0 101 99 162 229 162c82 0 137 -14 166 -23l-18 -140l-44 5l1 14 c6 39 -61 99 -116 99c-48 0 -74 -44 -74 -83c0 -22 18 -23 81 -35c94 -19 151 -43 179 -70c24 -25 34 -42 34 -80zM434 430c-12 4 -35 10 -47 14c20 -9 38 -30 42 -53zM474 168c0 24 -6 33 -22 48c-24 25 -73 43 -155 58c-101 20 -117 43 -117 79c0 22 6 44 16 64 c-44 -19 -72 -52 -72 -98c0 -40 37 -75 75 -93c26 -12 68 -17 134 -32c59 -13 81 -42 81 -75c0 -20 -7 -40 -18 -58c47 23 78 59 78 107zM183 26c-15 9 -37 23 -42 56l-6 -42c13 -5 35 -11 48 -14'], + 0x1D565: [624,12,520,80,440,'440 74c-36 -57 -49 -86 -130 -86c-91 0 -162 41 -162 128v296h-68v32l68 18v22v27c0 18 0 37 -3 68l164 45l21 -18c-22 -81 -24 -102 -24 -138v-12h100v-44h-100v-330c0 -32 8 -47 33 -47c18 0 37 34 37 84l24 6zM281 31c-16 8 -19 33 -19 51v386c0 36 1 51 12 102 c-25 -7 -60 -16 -82 -23v-20v-43v-368c0 -47 34 -72 89 -85'], + 0x1D566: [489,12,774,80,694,'694 0h-228l4 53l-41 -35c-25 -21 -38 -30 -83 -30c-126 0 -204 54 -204 186v220c0 14 -2 27 -19 24l-36 -6l-7 44l220 33v-107v-194c0 -76 18 -155 60 -155c5 0 10 1 15 3c24 10 94 71 94 99v258c0 15 -1 28 -19 25l-36 -6l-7 44l220 33v-107v-299c0 -28 3 -35 17 -36 l50 -3v-44zM585 44c-1 10 -2 23 -2 39v299v55l-74 -10c3 -10 4 -22 4 -34l1 -349h71zM303 31c-34 15 -47 98 -47 157v194v55l-73 -10c3 -10 4 -22 3 -34v-219c0 -92 50 -135 117 -143'], + 0x1D567: [466,8,672,80,592,'592 422l-31 -2c-15 -1 -48 -11 -61 -52l-119 -376h-96l-155 397c-7 19 -13 30 -26 31l-24 2v44h252v-44l-26 -2c-8 -1 -11 -7 -11 -16c0 -7 3 -15 5 -21l88 -223l65 207c3 11 6 23 6 32c0 12 -4 20 -16 21l-31 2v44h180v-44zM368 96l-112 281c-6 16 -10 32 -10 45h-82 l151 -386h34'], + 0x1D568: [474,8,867,80,787,'787 422l-26 -2c-17 -1 -29 -16 -46 -73l-108 -355h-103l-80 261l-86 -261h-95l-87 345c-19 65 -25 81 -48 83l-28 2v44h268v-44l-37 -2c-6 0 -8 -5 -8 -12c0 -3 0 -6 1 -10l52 -205l94 281h75c0 -18 90 -303 90 -303l64 209c3 9 4 17 4 23c0 10 -4 16 -15 17l-34 2v44 h153v-44zM593 96c0 0 -101 325 -101 334h-10l-34 -103l88 -291h39zM332 115l-70 273c-3 13 -4 24 -3 34h-90c10 -17 19 -41 29 -74l79 -312h29'], + 0x1D569: [486,0,670,80,590,'590 0h-194l-100 147l-104 -147h-78v44h17c14 0 40 4 52 21l86 122l-127 188c-9 13 -28 37 -40 37h-22v44l147 30c26 -3 55 -36 84 -79l56 -83l101 142h84v-44h-14c-13 0 -47 0 -67 -29l-77 -109l149 -223c6 -8 18 -17 27 -17h20v-44zM502 44l-227 339 c-23 34 -37 50 -53 58l-68 -16c10 -9 19 -19 24 -26l240 -355h84'], + 0x1D56A: [466,238,711,80,631,'631 422l-28 -2c-22 -2 -32 -30 -66 -108l-183 -411c-31 -69 -64 -139 -116 -139c-60 0 -83 29 -119 86l39 51l24 -6c0 -57 20 -84 50 -84c33 0 60 55 83 112l16 39l-199 424c-11 24 -17 34 -35 36l-17 2v44h270v-44l-33 -2c-11 -1 -16 -5 -16 -13c0 -5 2 -12 6 -21 l109 -236l113 250c7 15 -3 19 -18 20l-26 2v44h146v-44zM392 98l-126 271c-8 22 -13 39 -13 53h-91l10 -20l183 -388'], + 0x1D56B: [466,0,685,80,605,'605 188l-30 -188h-476l-19 37l267 331c19 24 26 37 26 54h-47c-70 0 -156 -97 -158 -115l-1 -9l-44 5l25 163h427l17 -36l-301 -386h90c73 0 176 120 178 135l2 15zM229 425h-46l-6 -46c16 20 31 32 52 46zM546 98c-18 -18 -40 -38 -62 -54h53zM530 422h-109 c0 -19 -15 -52 -40 -82l-240 -296h94'], + 0x1D7D8: [681,12,660,80,580,'580 366c0 -274 -97 -378 -259 -378c-134 0 -241 83 -241 336c0 260 99 357 266 357c149 0 234 -77 234 -315zM536 366c0 154 -39 232 -114 259c32 -55 44 -154 44 -309c0 -119 -9 -202 -32 -254c67 45 102 141 102 304zM422 316c0 222 -4 319 -94 319 c-87 0 -90 -83 -90 -275c0 -226 2 -326 92 -326c84 0 92 87 92 282zM233 52c-28 57 -39 157 -39 308c0 113 7 192 27 243c-64 -44 -97 -132 -97 -279c0 -154 43 -238 109 -272'], + 0x1D7D9: [686,0,560,80,480,'480 0h-354v44l56 3c36 2 44 9 44 44v498l-125 -55l-21 55c79 22 242 81 273 97h31v-595c0 -35 7 -42 44 -44l52 -3v-44zM344 44c-3 12 -4 27 -4 47v539c-21 -9 -45 -18 -71 -27c1 -4 1 -8 1 -13v-499c0 -20 -1 -35 -4 -47h78'], + 0x1D7DA: [681,0,623,80,543,'543 0h-454v86l146 128c122 86 127 169 127 239c0 45 -39 77 -109 77c-56 0 -124 -35 -126 -63l-3 -27l-22 3l-22 1l12 177c56 33 121 60 197 60c142 0 227 -97 227 -198c0 -80 -97 -168 -175 -238l-107 -93c83 1 230 7 309 24v-176zM472 483c0 81 -71 154 -183 154 c-63 0 -114 -20 -155 -43l-4 -66c36 25 78 46 123 46c102 0 153 -56 153 -121c0 -31 1 -73 -19 -115c19 19 85 91 85 145zM499 44v79c-78 -11 -230 -14 -317 -16l-49 -43v-20h366'], + 0x1D7DB: [681,12,666,80,586,'586 229c0 -161 -175 -241 -315 -241c-39 0 -95 8 -164 32l-27 200l41 12c25 -68 124 -196 181 -196c89 0 112 71 112 159c0 77 -19 140 -89 140c-25 0 -70 -7 -115 -21l10 67l73 -3c58 0 88 51 88 113c0 36 0 146 -57 146c-46 0 -166 -129 -170 -170l-3 -27l-22 3l-22 1 l11 176c51 35 137 61 192 61c145 0 232 -59 232 -145c0 -80 -31 -105 -96 -151c102 -30 140 -87 140 -156zM498 536c0 50 -38 81 -105 94c24 -45 32 -109 32 -139s-6 -58 -17 -82c65 46 90 66 90 127zM225 622c-24 -7 -47 -17 -65 -28l-3 -42c20 24 44 49 68 70zM542 229 c0 51 -30 90 -131 117c33 -32 47 -87 47 -151c0 -48 -7 -92 -23 -126c63 32 107 84 107 160zM221 36c-27 14 -65 50 -84 92l10 -75c25 -8 55 -14 74 -17'], + 0x1D7DC: [696,0,676,80,596,'596 194h-108v-103c0 -35 7 -42 44 -44l52 -3v-44h-354v44l56 3c36 2 44 9 44 44v102h-228l-22 40l274 409l134 54v-459c50 0 108 12 108 12v-55zM448 44c-3 12 -4 27 -4 47v541l-70 -29v-512c0 -20 -1 -35 -4 -47h78zM330 237v291l-194 -291h194'], + 0x1D7DD: [698,12,656,80,576,'576 237c0 -164 -175 -249 -328 -249c-47 0 -92 5 -130 28l-38 161l42 10l6 -24c7 -27 124 -128 148 -128c96 0 136 68 136 166c0 96 -14 190 -99 190c-33 0 -86 -33 -141 -103l-52 12v377h48c92 0 291 2 377 21v-176h-381v-107c29 13 122 20 165 20 c126 0 247 -49 247 -198zM501 566v79c-70 -10 -198 -12 -281 -12h-56v-67h337zM532 237c0 87 -53 122 -121 142c33 -48 45 -107 45 -178c0 -50 -15 -93 -35 -131c61 37 111 92 111 167zM204 381c-18 -4 -30 -12 -42 -16v-31c11 16 30 34 42 47zM212 26c-37 31 -48 38 -71 65 l12 -49c13 -6 37 -13 59 -16'], + 0x1D7DE: [686,12,680,80,600,'600 234c0 -164 -127 -246 -269 -246c-141 0 -251 78 -251 259c0 117 42 395 423 439l7 -44c-133 -23 -211 -132 -247 -264c37 35 79 53 120 53c119 0 217 -68 217 -197zM556 234c0 89 -63 140 -141 151c44 -37 69 -109 69 -186c0 -55 -11 -104 -32 -140 c61 31 104 89 104 175zM327 589c-178 -89 -203 -259 -203 -342c0 -105 45 -169 112 -197c-23 38 -35 95 -35 170c0 143 39 277 126 369zM440 199c0 86 -29 168 -95 168c-61 0 -100 -57 -100 -147c0 -117 25 -185 99 -185c66 0 96 74 96 164'], + 0x1D7DF: [693,0,616,80,536,'536 625l-214 -346c-71 -114 -68 -210 -68 -279h-119l-20 34c46 90 158 254 237 380l68 109h-229c-32 0 -61 0 -60 -26l1 -26l-44 -2l-8 208s372 3 456 16v-68zM494 642c-85 -6 -295 -8 -369 -9l3 -77c18 8 40 11 64 11h256zM222 125c-24 -28 -43 -60 -54 -81h45 c0 20 2 53 9 81'], + 0x1D7E0: [681,12,668,80,588,'588 206c0 -136 -138 -218 -280 -218c-127 0 -228 56 -228 171c0 80 43 133 142 184c-78 49 -129 78 -129 165c0 117 116 173 248 173c121 0 199 -48 199 -146c0 -79 -48 -104 -125 -139c102 -51 173 -113 173 -190zM497 535c0 36 -21 69 -55 85c13 -24 20 -53 20 -86 c0 -29 -9 -56 -23 -81c39 20 58 47 58 82zM418 534c0 59 -30 102 -89 102c-57 0 -87 -39 -87 -92c0 -42 17 -76 72 -101l44 -20c31 29 60 66 60 111zM544 206c0 86 -113 134 -248 197c-74 34 -98 83 -98 141c0 26 5 50 14 69c-44 -20 -75 -54 -75 -105 c0 -74 47 -91 126 -140c9 -6 113 -53 113 -53c72 -34 103 -89 103 -151c0 -35 -7 -68 -22 -95c52 29 87 74 87 137zM435 164c0 46 -25 86 -78 111l-89 41c-57 -39 -63 -87 -63 -149c0 -79 46 -133 118 -133c69 0 112 59 112 130zM195 53c-22 29 -34 68 -34 114 c0 36 3 66 14 92c-36 -30 -51 -60 -51 -100c0 -52 28 -86 71 -106'], + 0x1D7E1: [681,19,680,80,600,'600 422c0 -117 -42 -397 -423 -441l-7 44c133 23 211 134 247 266c-37 -35 -79 -53 -120 -53c-119 0 -217 68 -217 197c0 164 127 246 269 246c141 0 251 -78 251 -259zM556 422c0 105 -45 169 -112 197c23 -38 35 -95 35 -170c0 -143 -39 -277 -126 -369 c178 89 203 259 203 342zM435 449c0 117 -25 185 -99 185c-66 0 -96 -74 -96 -164c0 -86 29 -168 95 -168c61 0 100 57 100 147zM265 284c-44 37 -69 109 -69 186c0 55 11 104 32 140c-61 -31 -104 -89 -104 -175c0 -89 63 -140 141 -151'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/DoubleStruck/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Fraktur/Regular/Main.js new file mode 100644 index 0000000..36b1729 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Fraktur/Regular/Main.js @@ -0,0 +1,130 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'GyrePagellaMathJax_Fraktur', + id: 'GYREPAGELLAFRAKTUR', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210C: [667,133,720,-8,645,'645 239c0 -87 -7 -175 -43 -255c-51 -47 -127 -117 -165 -117c-26 0 -51 8 -69 26l48 64c11 -22 33 -37 58 -37c12 0 24 3 32 9c9 6 19 23 26 37c12 26 17 62 21 90c5 45 6 90 6 135c0 38 -2 75 -12 111c-7 26 -16 52 -35 70c-24 24 -58 32 -91 32 c-29 0 -59 -11 -83 -29c-29 -23 -45 -36 -72 -68c21 -52 28 -98 28 -122c0 -18 -2 -38 -10 -51c-32 -41 -106 -134 -125 -150c-15 14 -31 26 -47 36c-12 9 -27 16 -42 16c-29 0 -52 -25 -66 -40l-12 14c29 52 78 106 119 106c32 0 69 -30 89 -54c20 25 22 44 24 69 c0 25 -11 63 -24 87c-23 42 -41 85 -59 130c-11 27 -18 54 -18 83c0 42 26 77 52 109c41 50 92 90 145 127c34 -34 78 -60 128 -60c10 0 21 5 29 11c7 4 35 26 57 43l13 -15c-43 -42 -110 -108 -142 -108c-21 0 -41 5 -60 12c-29 9 -66 27 -92 40c-16 -16 -28 -31 -39 -53 c-8 -16 -10 -40 -10 -58c0 -39 30 -103 52 -149c53 55 115 100 181 138c64 0 129 -14 181 -53c16 -57 27 -116 27 -176'], + 0x2128: [729,139,602,11,533,'533 197c0 -88 -31 -172 -80 -245c-69 -57 -155 -91 -245 -91c-32 0 -64 3 -96 11c0 25 0 61 -1 74c-1 10 -2 20 -9 27s-17 11 -27 11c-11 0 -36 -14 -52 -26l-12 15c23 19 48 35 74 48c21 9 42 16 64 16c16 0 35 0 43 -16c5 -10 5 -42 5 -64c0 -17 0 -39 11 -50 s35 -16 51 -16c46 0 79 15 111 47c25 25 44 64 54 97c13 40 18 82 18 124c0 23 -2 46 -8 68c-5 16 -12 32 -24 44c-33 34 -80 48 -127 48c-32 0 -63 -7 -91 -21l-11 11l43 63c44 3 81 28 112 59c30 30 48 70 48 112c0 14 -6 27 -16 37c-16 15 -37 21 -59 21 c-23 0 -46 -3 -69 -5l-80 -5c-21 0 -43 1 -58 16c-7 7 -11 16 -11 26l69 96h16c-4 -7 -8 -16 -8 -24c0 -7 3 -14 8 -19c16 -15 49 -15 75 -15l58 2c16 0 32 3 48 3c18 0 36 -1 53 -5c12 -3 24 -8 32 -16c16 -16 27 -36 27 -59c0 -50 -23 -97 -59 -133 c-34 -34 -74 -65 -113 -89l5 -2c16 3 40 6 55 6c61 0 125 -17 160 -69c11 -37 16 -74 16 -112'], + 0x212D: [686,24,612,59,613,'613 568c-35 -17 -78 -36 -117 -41c-27 16 -57 64 -80 101c-13 -4 -24 -11 -32 -21c-16 -20 -17 -38 -17 -47c0 -18 6 -48 13 -68c5 -16 20 -62 20 -93c0 -35 -7 -71 -32 -96c-38 -37 -89 -56 -142 -64l-12 16c28 7 53 22 74 43c16 16 16 45 16 69c0 23 -11 70 -21 107 c-5 19 -9 40 -9 60c0 10 1 20 3 30c-35 -1 -68 -15 -90 -42c-36 -45 -48 -103 -48 -160c0 -84 20 -169 80 -229c59 -60 142 -87 225 -87c34 0 58 6 72 13l86 47v-20c-42 -35 -96 -71 -144 -102c-27 -6 -54 -8 -82 -8c-88 0 -176 28 -238 89c-30 30 -46 66 -59 106 c-16 48 -20 98 -20 148c0 63 15 125 43 181c51 39 106 75 165 101l32 -16c63 45 135 74 207 101l28 -81c4 -9 5 -12 10 -18c4 -4 11 -5 19 -5c16 0 38 5 50 9v-23'], + 0x1D504: [697,27,717,22,709,'709 85l-144 -112c-31 49 -47 98 -63 150l-203 -150c-14 23 -30 45 -48 64c-24 23 -64 40 -98 40c-37 0 -69 -17 -105 -40l-16 11l112 85c66 49 141 106 181 158c34 44 43 107 43 161c0 47 -14 94 -48 128c-33 33 -76 53 -123 53c-32 0 -62 -12 -85 -35 c-16 -15 -26 -38 -26 -60c0 -10 5 -19 11 -27c9 -14 20 -26 31 -37c15 -15 29 -31 40 -48c7 -12 13 -24 13 -38c0 -26 -14 -50 -31 -70c-24 -27 -54 -47 -86 -63l-16 11c18 10 34 23 47 39c10 12 17 26 17 41c0 10 -5 19 -11 27c-9 13 -20 25 -31 37c-26 26 -48 58 -48 96 c0 40 29 70 57 98c24 24 113 82 193 82c46 0 90 -13 124 -46c33 -34 52 -77 52 -124c0 -68 -18 -136 -48 -197l-178 -164c40 0 65 -21 87 -43l48 -48c12 1 94 53 144 85v325c0 42 -3 88 -5 127l127 96l16 -11c-15 -13 -36 -32 -42 -42c-7 -9 -10 -21 -11 -32 c-5 -54 -5 -156 -5 -234l5 -181c1 -11 2 -23 5 -32c12 -30 25 -61 43 -85c2 -3 6 -4 9 -4c5 0 10 2 14 3c16 7 31 14 46 22'], + 0x1D505: [691,27,904,49,815,'815 494c-37 -14 -70 -26 -103 -48l-89 -63c110 0 176 -65 176 -159c0 -43 -7 -63 -22 -101c-118 -99 -179 -150 -239 -150c-56 0 -112 21 -162 41c-45 18 -89 34 -125 34c-51 0 -101 -22 -143 -48l-12 21l124 73c125 74 144 130 147 158c3 32 6 103 7 150 c0 162 -95 226 -158 226c-40 0 -56 -7 -79 -30c-16 -15 -18 -36 -18 -57c0 -14 18 -38 38 -63c25 -29 51 -64 51 -89c0 -72 -90 -118 -123 -134l-15 11c27 15 64 48 64 81c0 12 -19 39 -44 70c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86 c58 0 117 -56 144 -111c22 23 53 46 79 64c37 24 78 42 123 42c23 0 47 -4 64 -21c10 -10 16 -37 22 -66c7 -34 14 -71 31 -88c6 -5 17 -6 25 -6c15 2 30 6 44 11v-22zM684 455c-11 5 -17 16 -22 26c-8 19 -13 39 -16 59c-4 26 -12 59 -23 70c-13 13 -35 24 -53 24 c-39 0 -60 -13 -80 -35c-18 -20 -34 -51 -42 -76c6 -25 10 -81 10 -124c0 -14 -1 -35 -2 -49l130 49c30 12 56 27 98 56zM714 175c0 42 -16 82 -46 111c-36 37 -84 55 -135 55c-27 0 -54 -5 -79 -16c-4 -41 -14 -81 -33 -118l-117 -90c59 0 115 -21 170 -43 c42 -16 99 -37 128 -37c26 0 51 9 69 27c30 29 43 70 43 111'], + 0x1D507: [690,27,831,27,746,'746 410c0 -96 -21 -174 -55 -263c-63 -69 -163 -174 -222 -174c-21 0 -79 22 -112 35c-42 17 -74 27 -117 40c-28 8 -57 16 -85 16c-21 0 -40 -10 -56 -22c-21 -15 -37 -36 -51 -58l-16 16c26 51 63 96 107 133c39 0 79 7 113 28c25 15 47 38 47 68c0 28 -14 53 -32 74 c-7 8 -54 67 -54 85c0 16 1 32 9 46c10 19 24 35 39 50c31 31 68 55 107 75l16 -11c-14 -9 -26 -20 -38 -32c-13 -13 -25 -27 -35 -42c-6 -10 -12 -21 -12 -32c0 -14 25 -51 42 -75c20 -28 48 -69 48 -90c0 -30 -17 -56 -37 -77c-29 -31 -76 -54 -111 -69 c43 -9 92 -25 134 -40c44 -16 117 -43 137 -43c21 0 42 1 58 12c19 13 43 49 59 73s25 52 31 80c8 37 11 74 11 112c0 71 -17 145 -69 197c-67 67 -162 90 -256 90c-83 0 -172 -16 -231 -76c-44 -44 -64 -110 -67 -169l-21 11c0 82 26 157 85 215c30 30 69 55 109 68 c49 16 101 29 152 29c61 0 113 -1 179 -20c43 -12 90 -45 124 -79c48 -48 70 -114 70 -181'], + 0x1D508: [686,24,662,86,641,'641 568c-36 -17 -80 -36 -119 -41c-26 15 -56 63 -79 100c-12 -4 -22 -14 -31 -23c-8 -11 -17 -24 -18 -38c0 -20 3 -41 9 -60c15 -45 23 -69 23 -137l102 62c21 -29 47 -55 77 -75v-9l-67 -38l-59 42c-5 3 -10 5 -15 5c-14 0 -27 -6 -38 -15c-6 -27 -23 -50 -42 -70 c-15 -15 -34 -25 -53 -32c-26 -11 -53 -17 -80 -21l-16 16c29 5 55 20 80 37c7 8 11 18 13 28c3 14 4 31 4 45c0 44 -11 87 -23 130c-5 19 -9 38 -9 58c0 10 1 21 4 32c-35 -1 -69 -15 -90 -42c-36 -45 -49 -103 -49 -160c0 -84 20 -169 80 -229s143 -87 226 -87 c14 0 27 1 41 2c40 14 88 40 117 58v-20c-45 -37 -94 -70 -144 -102c-27 -5 -54 -8 -82 -8c-88 0 -175 28 -233 84c-30 30 -50 67 -63 107c-16 48 -21 102 -21 152c0 63 15 125 42 181c52 39 106 75 165 101l32 -16c64 45 136 74 208 101l28 -81c4 -9 6 -13 11 -18 c4 -4 12 -5 21 -5c16 0 36 4 48 8v-22'], + 0x1D509: [686,155,611,11,621,'621 629c-23 -31 -55 -72 -83 -99c-15 -14 -32 -30 -53 -30c-23 0 -50 11 -73 25c-28 -9 -62 -29 -78 -47c-14 -15 -25 -38 -25 -63c0 -18 7 -36 15 -51c13 -24 28 -49 44 -71l122 117c23 -24 43 -49 54 -80l-43 -59c-12 21 -28 43 -53 43c-17 0 -49 -22 -71 -40l87 -112 c16 -23 21 -59 21 -88c0 -52 -22 -101 -59 -138c-55 -55 -129 -91 -207 -91c-33 0 -63 15 -85 38c-27 25 -31 79 -31 109c0 19 2 37 4 56c2 14 3 29 3 44c0 42 -6 54 -14 62c-5 6 -13 8 -21 8c-24 0 -48 -12 -59 -18l-5 21c58 39 105 54 131 54c11 0 21 -3 29 -12 c14 -17 22 -47 22 -73s0 -39 -6 -65c-5 -21 -8 -42 -8 -64c0 -54 17 -78 29 -90c17 -18 39 -35 64 -35c35 0 66 14 90 38c30 30 43 78 43 119c0 24 -10 47 -23 69c-22 36 -43 72 -67 107c-22 30 -43 61 -60 94c-10 19 -20 39 -20 60c0 33 19 61 39 85c31 37 69 66 110 91 c-35 21 -71 40 -109 55c-25 10 -51 19 -78 19c-26 0 -50 -13 -69 -32c-32 -32 -44 -78 -53 -122l-16 11c6 58 22 117 64 159c35 35 83 53 133 53c30 0 58 -10 85 -21c43 -18 83 -40 123 -64c19 -11 41 -21 64 -21c24 0 60 37 84 63'], + 0x1D50A: [692,25,785,66,711,'711 303c0 -79 -37 -152 -93 -207l-154 -104c-31 -11 -51 -17 -83 -17c-86 0 -179 33 -231 85c-68 68 -84 164 -84 259c0 37 4 70 13 106c8 28 19 52 31 77c50 36 102 70 162 99l32 -16l112 75l10 -11c-27 -23 -53 -53 -53 -90c0 -26 16 -96 26 -137l51 27 c33 22 78 57 107 86c-47 16 -94 53 -103 93l68 64c12 -24 27 -45 47 -62c16 -13 34 -23 54 -23c14 0 30 7 45 22l4 -23l-176 -154c16 2 30 3 45 3c57 0 97 -23 114 -37c33 -27 56 -70 56 -115zM624 255c0 37 -23 76 -48 99c-34 31 -76 48 -124 48c-16 0 -33 -2 -50 -6 c0 -44 -5 -93 -37 -125c-36 -35 -82 -50 -130 -58l-16 16c30 7 56 27 74 53c12 17 18 45 18 66c0 32 -4 59 -12 88c-9 33 -18 65 -18 97c0 10 1 20 3 31c-33 -2 -61 -11 -84 -36c-40 -42 -54 -103 -54 -161c0 -88 21 -177 83 -239c52 -52 113 -89 186 -89c51 0 95 7 140 44 c52 43 69 113 69 172'], + 0x1D50D: [686,139,552,-18,522,'522 591c-52 -27 -129 -65 -160 -75c-30 6 -55 24 -79 43c-27 21 -56 43 -91 43c-24 0 -47 -10 -64 -25c-25 -22 -43 -52 -59 -81l-15 10c19 48 44 93 79 131c24 26 54 49 91 49c18 0 35 -7 51 -16c24 -13 45 -30 66 -47c14 -12 29 -23 45 -32c11 -6 23 -11 35 -11 c36 0 69 16 101 32v-21zM485 522c-22 -22 -42 -44 -57 -72c-11 -19 -12 -45 -12 -67c0 -36 5 -78 12 -117c13 -60 30 -160 30 -181c0 -59 -28 -113 -69 -154c-40 -41 -92 -70 -149 -70c-36 0 -75 6 -101 32c-22 23 -28 55 -32 85c-3 28 -8 66 -16 80s-22 22 -37 22 c-20 0 -50 -9 -67 -20l-5 13c22 18 53 41 78 54c18 9 37 17 58 17c17 0 35 -4 47 -16c16 -16 16 -49 16 -75s2 -52 7 -78c4 -16 9 -35 20 -46c18 -19 44 -32 69 -32c26 0 50 8 68 27c28 27 39 74 39 113c0 53 -13 110 -27 160c-15 52 -28 113 -28 162c0 10 1 20 2 29 c39 54 86 102 138 144'], + 0x1D50E: [681,27,668,16,690,'690 60c-22 -22 -53 -50 -80 -66c-17 -11 -35 -21 -56 -21c-20 0 -40 11 -50 27c-16 25 -21 54 -25 85c-5 44 -16 102 -37 122c-16 17 -40 22 -64 22c-31 0 -62 -9 -90 -22c0 -26 -1 -53 -5 -79c-25 -38 -54 -73 -88 -102c-28 -24 -54 -40 -88 -51c-39 3 -70 27 -91 57 l57 66h10c7 -15 16 -30 28 -42c10 -11 26 -20 41 -20c21 0 36 9 44 17c20 20 23 58 23 91c0 50 -12 100 -27 149c-13 43 -32 106 -32 134c0 13 5 28 6 30c21 53 55 99 95 139c55 55 130 85 208 85c31 0 62 -5 91 -17c24 -10 45 -25 58 -47c0 -6 1 -12 1 -18 c0 -33 -7 -67 -17 -99l-16 -5c0 34 -13 67 -37 91c-36 36 -84 48 -139 48c-58 0 -98 -17 -132 -51c-19 -19 -37 -64 -37 -93c0 -34 7 -83 20 -123c35 37 71 71 114 98c28 19 60 35 94 35c16 0 31 -4 43 -16c17 -16 29 -48 39 -75c6 -16 19 -50 56 -50c5 0 15 2 21 5l6 -16 l-168 -76v-1c15 0 33 -4 46 -16c19 -18 28 -61 36 -103c5 -25 11 -60 29 -80c9 -10 21 -19 36 -19c24 0 54 9 74 24zM508 314c-22 13 -32 46 -39 69c-5 16 -21 35 -33 44c-9 6 -26 9 -33 9c-26 0 -53 -13 -73 -30c-28 -22 -45 -49 -63 -79c11 -28 17 -66 22 -97 c39 18 75 32 119 40c33 13 68 28 100 44'], + 0x1D50F: [686,27,666,32,645,'645 186c-7 -38 -15 -78 -29 -116c-9 -23 -18 -47 -35 -65c-28 -28 -69 -32 -107 -32c-40 0 -79 9 -118 20c-56 16 -110 37 -164 60c-20 9 -42 16 -64 16c-30 0 -60 -43 -84 -84l-12 15c20 47 38 88 71 127c8 9 27 14 40 16h31c16 5 48 23 61 39c13 15 18 30 18 45 c0 23 -27 76 -45 108c-13 25 -26 51 -36 78c-6 18 -12 36 -12 55c0 23 9 44 19 63c15 26 34 49 56 70c56 57 133 85 213 85c36 0 72 -6 98 -32c20 -19 26 -47 26 -83c0 -11 -1 -22 -2 -33c-2 -19 -2 -47 -2 -55c0 -7 4 -14 8 -19c10 -10 41 -12 59 -12v-18l-117 -30h-3 c-14 0 -40 21 -40 46c0 12 1 32 5 61c1 11 2 21 2 31c0 29 -5 53 -24 72c-22 22 -52 30 -82 30c-40 0 -78 -14 -106 -42c-20 -20 -30 -52 -30 -80c0 -20 4 -37 10 -55c8 -26 21 -54 33 -79c17 -35 42 -90 42 -121c0 -7 -2 -13 -5 -17c-38 -46 -90 -104 -111 -118 c45 -19 101 -40 149 -52c34 -9 70 -16 106 -16c42 0 86 6 117 37c26 26 38 61 48 96'], + 0x1D510: [692,27,1049,27,1049,'1049 554c-41 -21 -79 -48 -111 -80c-13 -26 -20 -54 -24 -82c-7 -38 -8 -77 -8 -115c0 -47 0 -107 10 -139c7 -21 9 -24 24 -40c6 -8 22 -18 30 -18c6 0 37 10 58 21v-19l-144 -109l-57 126l-1 172c0 43 7 86 16 128c22 34 49 64 80 91c-7 1 -15 9 -22 16 c-5 5 -15 35 -21 53c-7 21 -17 51 -27 58c-9 8 -20 11 -32 11c-25 0 -56 -8 -75 -25c-22 -19 -34 -31 -50 -57c6 -31 14 -79 14 -110c0 -106 -23 -211 -64 -308l-123 -150c-18 17 -50 43 -69 43c-9 0 -19 0 -26 -5c-13 -7 -21 -16 -33 -30l-13 14c25 36 67 90 88 101 c5 3 10 3 16 3c7 0 14 -1 21 -3c9 -2 42 -24 58 -35c24 24 31 53 38 83c16 64 16 145 16 218c0 43 -1 85 -8 127c-4 27 -9 53 -24 75c-15 23 -43 32 -69 32c-21 0 -44 -9 -58 -23c-15 -13 -26 -31 -35 -49c7 -28 10 -75 10 -82c0 -113 -13 -227 -72 -325l-170 -149 c-14 15 -30 28 -48 39c-11 8 -23 14 -37 14c-29 0 -52 -20 -69 -42l-11 16c17 28 37 55 61 78c16 14 34 28 56 28c15 0 29 -6 42 -14c15 -9 41 -31 55 -44c17 13 34 28 52 46c26 26 36 69 43 104c13 56 17 112 17 169v41c-1 52 -13 111 -40 148c-27 38 -71 74 -118 74 c-39 0 -59 -8 -78 -23c-13 -11 -21 -34 -21 -43c0 -33 23 -66 38 -83c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90 c0 40 23 70 51 98c24 24 97 86 183 86c46 0 89 -34 119 -71c13 -16 24 -37 33 -59c3 2 5 5 7 8c14 18 29 36 48 48c35 24 74 43 117 43c23 0 47 -5 64 -21c17 -18 28 -39 36 -62c22 26 48 48 76 67c35 25 73 48 117 48c18 0 36 -8 48 -21c11 -13 20 -38 27 -59 c5 -15 10 -32 21 -43c8 -7 19 -9 29 -9c16 0 31 4 45 9v-15'], + 0x1D511: [686,29,832,29,830,'830 76l-144 -105l-64 133l1 167c0 40 0 96 6 117c2 8 6 15 10 22c21 28 40 48 65 74c-18 4 -26 15 -32 23c-8 11 -15 33 -22 57c-5 18 -14 35 -27 48c-10 10 -23 16 -37 16c-31 0 -65 -18 -87 -39c-31 -32 -45 -51 -66 -88c7 -42 15 -107 15 -150 c0 -78 -7 -159 -43 -229c-5 -9 -13 -24 -16 -26c-42 -37 -83 -68 -131 -100c-12 -7 -35 -18 -48 -18c-35 0 -68 30 -86 58l56 65h12c5 -13 14 -29 27 -43c11 -11 29 -18 44 -18c28 0 49 20 68 39c18 18 25 44 31 69c9 39 11 78 11 118c0 121 -28 241 -59 284 c-27 38 -71 72 -118 72c-40 0 -61 -4 -83 -25c-12 -11 -17 -25 -17 -46c0 -20 24 -59 39 -76c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43 c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c16 -19 30 -50 40 -81c13 15 46 61 52 71c30 48 93 82 149 82c17 0 33 -1 49 -5c12 -3 23 -7 31 -16c13 -13 21 -34 27 -53c4 -15 13 -40 16 -43c9 -8 19 -15 32 -15c15 0 32 4 45 11v-14 c-30 -21 -61 -44 -88 -67c-10 -8 -19 -19 -21 -32c-12 -57 -16 -116 -16 -175c0 -42 3 -84 14 -125c7 -28 15 -46 36 -67c4 -4 13 -9 19 -9c22 0 46 13 63 22v-22'], + 0x1D512: [729,27,828,11,746,'746 399c0 -59 -6 -118 -24 -174c-13 -42 -33 -84 -67 -113c-44 -40 -91 -76 -144 -103c-38 -20 -79 -36 -122 -36c-55 0 -109 12 -160 32c-17 7 -35 15 -53 21c-17 6 -35 11 -53 11c-39 0 -74 -21 -96 -53l-16 16c28 37 58 73 91 106c44 15 85 51 85 101 c0 15 -5 29 -11 43c-9 19 -20 36 -32 53c-17 25 -45 63 -52 74c-6 10 -12 21 -12 33c0 35 15 67 36 95c26 35 60 63 98 86l21 -11c-19 -14 -37 -30 -51 -50c-10 -13 -19 -29 -19 -46s6 -33 13 -49c9 -24 22 -46 36 -68c20 -34 47 -77 47 -106c0 -26 -11 -49 -25 -70 c-19 -30 -49 -56 -76 -79c12 0 28 -4 39 -8c32 -10 63 -23 94 -35c51 -19 111 -33 167 -33c74 0 132 37 162 105c26 57 33 127 33 189c0 44 -4 88 -16 131c-10 32 -24 63 -48 87c-17 18 -40 28 -64 36c-31 9 -63 12 -95 12l-86 -3c-19 0 -39 3 -56 13c-12 7 -23 18 -23 33 c0 40 45 59 69 90h16c-5 -7 -10 -17 -10 -26c0 -16 20 -23 36 -27c19 -5 85 -10 128 -14c35 -3 69 -9 102 -20c25 -9 50 -22 68 -41c53 -53 70 -128 70 -202'], + 0x1D513: [692,219,823,6,804,'700 138c0 16 -8 37 -14 52c-10 21 -22 41 -36 60c-21 30 -48 67 -48 96c0 20 11 38 22 54c18 24 43 45 66 64c-13 3 -29 15 -40 26c-13 12 -15 41 -16 64c-1 22 -3 51 -16 63c-12 13 -31 16 -48 16c-24 0 -45 -5 -64 -18c-44 -30 -67 -61 -96 -106v-387h1l145 -48 c19 -5 48 -12 63 -12c24 0 47 8 63 25c14 14 18 31 18 51zM804 522c-31 -16 -60 -34 -85 -59c-11 -12 -22 -24 -31 -37c-6 -8 -12 -17 -12 -27c0 -29 20 -59 38 -85c20 -31 37 -64 37 -101c0 -69 -33 -132 -85 -176c-31 -25 -66 -48 -107 -48c-10 0 -21 3 -31 6l-118 42 c0 -62 3 -124 11 -186l-96 -70l-21 11c5 12 12 56 16 85c9 62 11 123 11 186c-33 10 -63 17 -80 17c-27 0 -51 -14 -70 -32c-19 -20 -36 -42 -53 -64l-10 21c19 38 39 76 69 107c25 25 59 42 96 42c13 0 30 -3 48 -8v250c0 54 -12 115 -40 154c-27 38 -71 72 -118 72 c-39 0 -64 -7 -84 -25c-12 -12 -18 -25 -18 -46c0 -25 26 -59 41 -76c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90 c0 40 23 70 51 98c24 24 89 86 183 86c46 0 89 -34 119 -71c17 -20 30 -47 39 -74c2 3 5 6 7 8c18 23 37 45 59 64c50 43 108 80 175 80c20 0 40 -7 54 -21c17 -18 23 -59 26 -91c1 -13 4 -30 11 -37c9 -9 20 -13 32 -13s25 4 37 8'], + 0x1D514: [729,69,828,11,783,'783 -6l-117 -63c-33 10 -65 23 -96 40c-20 11 -40 23 -57 39l-2 -1c-38 -20 -79 -36 -122 -36c-55 0 -109 12 -160 32c-17 7 -35 15 -53 21c-17 6 -35 11 -53 11c-39 0 -74 -21 -96 -53l-16 16c28 37 58 73 91 106c44 15 85 51 85 101c0 15 -5 29 -11 43 c-9 19 -20 36 -32 53c-17 25 -45 63 -52 74c-6 10 -12 21 -12 33c0 35 15 67 36 95c26 35 60 63 98 86l21 -11c-19 -14 -37 -30 -51 -50c-10 -13 -19 -29 -19 -46s6 -33 13 -49c9 -24 22 -46 36 -68c20 -34 47 -77 47 -106c0 -26 -11 -49 -25 -70c-19 -30 -52 -59 -77 -78 c12 0 29 -5 40 -9c32 -10 63 -23 94 -35c51 -19 108 -32 163 -32c74 0 139 41 169 109c26 57 30 122 30 184c0 44 -4 88 -16 131c-10 32 -24 63 -48 87c-17 18 -40 28 -64 36c-31 9 -63 12 -95 12l-86 -3c-19 0 -39 3 -56 13c-12 7 -23 18 -23 33c0 8 0 21 11 32l58 58h16 c-5 -7 -10 -17 -10 -26c0 -4 1 -7 4 -11c8 -9 21 -13 32 -16c19 -5 85 -10 128 -14c35 -3 69 -9 102 -20c25 -9 50 -22 68 -41c53 -53 70 -128 70 -202c0 -103 -22 -225 -91 -287c-17 -15 -34 -30 -52 -44c18 -20 35 -39 57 -54c15 -10 31 -20 49 -20c27 0 52 12 74 27v-27'], + 0x1D516: [689,27,828,56,756,'756 655c-8 -32 -24 -62 -47 -86c-28 -28 -65 -44 -102 -58c-31 3 -86 35 -127 58c-28 17 -57 32 -87 44c-18 8 -37 15 -57 15c-50 0 -93 -29 -128 -64c-49 -49 -69 -118 -69 -186c0 -98 31 -196 101 -266c56 -57 136 -86 215 -86c64 0 129 5 175 51c32 33 47 84 47 130 c0 37 -11 76 -38 102c-22 22 -53 32 -85 32s-75 -9 -112 -16c-38 -8 -79 -16 -117 -16c-25 0 -51 3 -69 21c-16 16 -27 36 -27 58c0 29 13 55 32 75c22 21 49 37 78 45l13 -13c-13 -4 -23 -12 -32 -21c-12 -13 -16 -31 -16 -48c0 -16 5 -32 16 -43c12 -12 30 -16 48 -16 c22 0 78 13 117 21c42 10 95 22 128 22c39 0 78 -15 106 -43c24 -24 32 -57 32 -90c0 -74 -28 -145 -80 -197c-78 -78 -189 -107 -298 -107c-76 0 -155 20 -210 75c-68 68 -107 164 -107 261s39 186 108 255c67 68 168 106 261 125c53 -28 119 -62 156 -78 c24 -10 48 -20 74 -20c22 0 39 6 55 21c15 15 22 38 27 54'], + 0x1D517: [703,27,669,24,676,'676 681l-69 -90c-21 -13 -45 -16 -69 -16c-38 0 -91 5 -128 14c-23 -18 -30 -25 -47 -51c-12 -18 -27 -52 -27 -75c0 -13 5 -25 11 -36c8 -16 19 -30 31 -44c21 -23 40 -48 56 -74c10 -17 19 -34 19 -54c0 -25 -14 -47 -29 -66c-25 -33 -56 -60 -87 -86 c43 -20 98 -45 137 -45c22 0 43 9 62 20c26 14 50 34 71 55l11 -16c-28 -32 -57 -62 -89 -89c-25 -22 -52 -41 -81 -55c-44 6 -84 27 -123 48c-28 15 -58 27 -90 27c-19 0 -37 -7 -54 -15c-25 -12 -47 -27 -69 -44l-10 16c38 40 79 77 122 112c10 1 20 1 30 1 c19 0 37 -1 55 -6c21 12 40 28 55 47c11 14 20 30 20 48c0 14 -6 26 -13 37c-10 18 -22 34 -35 49c-30 34 -69 79 -75 111c8 34 23 64 41 93c24 36 51 69 82 99c-52 18 -106 27 -160 27c-45 0 -92 -8 -124 -40c-17 -17 -26 -43 -26 -67c0 -39 29 -71 65 -85l-64 -64 c-32 25 -51 58 -51 98c0 55 41 118 82 156c49 46 110 65 177 65c57 0 114 -9 170 -21c39 -7 80 -16 117 -16c42 0 79 23 106 54v-22'], + 0x1D518: [697,27,645,-26,666,'666 80l-144 -107l-67 147l-114 -126c-17 -13 -37 -21 -58 -21c-45 0 -87 16 -128 32c-38 15 -80 32 -117 32c-9 0 -17 -6 -23 -11c-12 -9 -22 -20 -31 -32l-10 17l80 90c24 2 50 28 69 48c26 27 37 64 37 101c0 19 -6 37 -12 54c-10 26 -22 50 -36 74 c-23 40 -53 93 -53 128c0 20 10 39 21 56c16 26 37 49 59 71c24 24 50 47 80 64l10 -16c-15 -11 -29 -24 -42 -37c-25 -24 -43 -56 -43 -90c0 -32 20 -73 37 -107c14 -28 27 -57 36 -86c7 -23 12 -45 12 -68c0 -26 -4 -52 -15 -75l-101 -112c29 0 69 -14 101 -26 c33 -14 80 -32 101 -32c31 0 57 20 79 42c23 23 51 51 59 75c5 16 5 56 5 85c0 116 -2 231 -10 346l127 90l16 -10c-18 -18 -34 -39 -42 -64c-16 -48 -16 -99 -16 -149v-202c0 -22 1 -43 5 -64c8 -38 17 -77 43 -107c6 -7 15 -11 25 -11c24 0 50 15 60 22v-21'], + 0x1D519: [686,27,831,29,826,'735 548c-29 0 -55 16 -80 32c-27 18 -56 37 -90 37c-29 0 -66 -36 -66 -36c-28 -27 -50 -59 -66 -95c0 -100 -14 -182 -55 -262l-93 -73c39 -3 69 -22 131 -61c66 -41 114 -58 143 -58c26 0 51 7 70 25c14 15 19 35 23 54c7 32 9 64 9 96c0 24 -3 57 -6 86 c-2 33 -5 67 -5 101c0 23 4 47 11 69zM826 607c-16 -11 -30 -24 -43 -38c-36 -35 -58 -82 -58 -133c0 -34 5 -67 10 -101c7 -39 16 -96 16 -117c0 -31 -7 -62 -21 -90c-11 -22 -23 -42 -43 -57l-117 -85c-14 -11 -35 -13 -53 -13c-30 0 -76 9 -149 53 c-20 12 -110 64 -154 64c-49 0 -92 -27 -123 -64l-11 16c38 43 80 82 128 112c46 0 87 26 112 64c14 22 20 47 24 73c6 37 10 74 10 112c-1 52 -13 110 -40 148s-71 72 -118 72c-40 0 -65 -9 -85 -27c-10 -8 -15 -23 -15 -44c0 -24 24 -59 39 -76c11 -14 30 -37 40 -54 c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c17 -21 34 -60 43 -89c13 22 28 44 55 75 c22 25 49 46 78 63c20 12 42 22 65 22c36 0 68 -16 96 -37c38 -27 65 -32 81 -32c9 0 18 2 26 6v-16'], + 0x1D51A: [686,28,1046,21,1055,'954 548c-18 0 -51 22 -75 37c-26 17 -54 32 -85 32c-22 0 -42 -10 -58 -23c-26 -21 -43 -38 -61 -64c2 -33 4 -68 4 -103c0 -79 -8 -156 -29 -227c-14 -19 -56 -75 -79 -99c43 0 116 -33 170 -59c16 -7 34 -10 53 -10c32 0 58 15 74 42c11 18 18 45 18 112 c0 39 -3 79 -7 117c-3 29 -5 59 -5 88c0 39 4 63 10 77c3 6 7 12 11 17zM607 362c0 52 -7 104 -29 152c-16 37 -45 75 -82 91c-28 -25 -57 -51 -78 -80c1 -9 7 -38 7 -49c0 -15 -4 -87 -18 -148c-11 -48 -27 -95 -55 -137c-42 -34 -81 -59 -118 -81c45 -35 103 -68 160 -68 c59 0 114 28 155 70c25 24 35 59 43 93c12 51 15 104 15 157zM1055 628l-6 -21c-32 -24 -62 -50 -80 -85c-12 -28 -15 -54 -15 -88c0 -23 2 -45 5 -67c6 -51 10 -103 10 -154c0 -25 -2 -50 -9 -74c-6 -18 -14 -34 -28 -47c-42 -40 -89 -75 -138 -106c-20 -6 -40 -11 -60 -11 c-30 0 -61 7 -89 19c-48 21 -101 43 -149 43c-41 -19 -81 -39 -118 -64c-5 0 -11 -1 -16 -1c-45 0 -90 16 -127 39c-27 17 -62 37 -86 37c-11 0 -34 -8 -46 -16c-21 -14 -39 -26 -57 -43l-14 16c37 43 78 82 123 117h3c47 0 92 20 125 53c25 25 38 58 47 92 c12 43 16 89 16 135c-1 52 -13 111 -40 149s-71 72 -118 72c-40 0 -65 -8 -86 -27c-12 -11 -14 -20 -14 -42c0 -30 24 -61 39 -78c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39 c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c14 -17 26 -40 35 -64l12 13c42 46 89 85 138 122c53 -30 92 -96 107 -127c32 34 66 67 104 94c23 17 48 33 77 33c17 0 33 -5 48 -12c23 -9 44 -22 64 -35 c18 -12 38 -19 59 -19c12 0 25 3 37 8'], + 0x1D51B: [689,27,719,27,709,'709 585l-102 -58c-20 9 -37 22 -53 37c-15 15 -37 38 -42 52c-15 -10 -31 -23 -42 -37c-17 -23 -31 -51 -42 -79c-17 -42 -23 -87 -23 -133h176l-37 -42c-46 6 -93 7 -139 8c0 -41 2 -82 11 -115c11 -47 29 -93 64 -128c24 -24 56 -37 90 -37c39 0 74 21 106 43v-22 l-111 -90c-16 -5 -37 -11 -48 -11c-34 0 -67 14 -91 38c-38 38 -58 90 -69 143l-42 -42c-33 -33 -68 -65 -107 -91c-18 -12 -36 -23 -56 -32c-12 -5 -26 -11 -40 -11c-36 0 -66 24 -85 54l59 69c15 -31 44 -53 79 -53c38 0 73 21 99 47c41 41 55 99 67 155c4 20 5 51 5 83 c-59 0 -117 0 -176 -8l37 42h139c0 36 0 71 -5 107c-5 34 -17 62 -42 87c-17 18 -40 33 -65 33c-32 0 -57 -7 -80 -30c-17 -17 -37 -37 -49 -52l-17 15l148 159c44 -2 89 -16 120 -47c13 -13 22 -30 29 -46c11 -25 18 -51 25 -77c15 31 34 61 58 85c38 38 81 68 130 88 c12 -23 22 -47 34 -69c3 -7 7 -13 12 -19c9 -8 20 -13 32 -13c11 0 29 9 43 16v-19'], + 0x1D51C: [686,219,834,26,741,'741 341c0 -69 -5 -137 -17 -204c-9 -53 -23 -105 -48 -153c-44 -67 -106 -120 -175 -160c-43 -24 -89 -43 -139 -43c-29 0 -58 6 -84 19c-21 11 -40 28 -49 51l67 71h10c10 -50 56 -93 110 -93c61 0 96 21 135 60c25 24 46 64 62 95c20 41 29 86 35 131 c10 66 13 132 13 199c0 72 -4 144 -27 213c-26 29 -54 59 -90 74c-8 -3 -76 -35 -116 -89c3 -14 4 -30 4 -44c-2 -91 -18 -183 -70 -261l-116 -92c24 -7 52 -21 74 -32c26 -13 53 -25 80 -25c34 0 63 23 85 48l9 -16c-23 -30 -46 -59 -73 -85c-14 -12 -33 -26 -51 -26 c-30 0 -76 23 -107 41c-37 21 -76 34 -100 34c-46 0 -90 -32 -126 -58l-11 15c37 39 82 78 122 113c22 0 52 0 68 -2c18 10 45 32 67 53c25 25 40 58 51 92c13 42 19 86 19 130c0 53 -12 114 -40 154c-27 38 -71 72 -118 72c-39 0 -69 -13 -87 -27c-13 -12 -14 -24 -14 -45 s25 -58 40 -75c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 89 86 183 86c46 0 89 -34 119 -71 c17 -21 31 -49 40 -78l5 5c27 27 56 52 86 75c33 27 68 51 106 69c29 -36 68 -64 107 -90c16 -80 16 -170 16 -255'], + 0x1D51E: [471,36,500,65,497,'497 83l-123 -110l-43 73l-2 45l-175 -127c-30 32 -59 66 -87 101c-2 30 -2 61 -2 91c0 70 5 141 20 209l169 106c28 -19 60 -33 93 -40l67 34l8 -6c-10 -67 -15 -135 -15 -203l1 -137l36 -45c21 7 32 13 46 22zM329 119l-1 246c-47 0 -96 13 -142 27 c-24 -25 -30 -62 -35 -97c-4 -31 -6 -62 -6 -94c0 -27 1 -53 3 -80c13 -17 39 -44 60 -65c0 0 4 -1 7 -1c15 0 54 23 114 64'], + 0x1D51F: [686,31,513,86,444,'444 313c0 -72 -5 -145 -20 -216c-73 -47 -148 -92 -228 -128c-37 33 -86 77 -110 102c14 73 14 157 14 236l-7 361l17 4l17 -77l8 4l120 87l17 -13l-30 -26c-44 -38 -60 -91 -63 -148l-2 -134l7 -2c45 38 92 77 140 107c38 -22 77 -43 117 -61c2 -32 3 -64 3 -96z M363 227c0 41 0 72 -4 113c-9 12 -32 24 -85 46c-31 -4 -69 -33 -96 -54v-209c32 -33 80 -81 107 -81c16 0 29 11 40 22c16 17 23 39 28 61c8 34 10 68 10 102'], + 0x1D520: [466,29,389,72,359,'359 92l-172 -121c-40 34 -76 73 -110 113c-3 45 -5 89 -5 134c0 29 0 89 12 145l165 103c39 -3 75 -22 108 -44l-52 -79l-9 -3c-33 29 -83 54 -120 54c-18 -30 -21 -99 -21 -148c0 -35 2 -69 7 -99c18 -29 53 -61 84 -89c32 10 71 31 105 51'], + 0x1D521: [612,34,498,13,430,'430 328c0 -31 -1 -61 -3 -79c-4 -48 -8 -96 -26 -140l-187 -143c-50 34 -99 69 -138 115c-2 30 -3 57 -3 85l6 169c42 40 88 83 132 112l19 -4c-46 -50 -57 -77 -65 -97c-9 -23 -13 -56 -13 -92c0 -39 4 -83 7 -119c13 -16 29 -29 45 -41c23 -16 47 -30 72 -43 c3 -1 5 -2 8 -2c5 0 11 3 15 10c28 44 42 95 47 146c2 21 3 41 3 62c0 44 -4 88 -12 132c-39 41 -82 79 -131 109c-33 21 -70 38 -110 38c-8 0 -21 0 -24 -1l-46 -18l-13 16c43 24 93 48 138 69c90 -12 192 -88 276 -157'], + 0x1D522: [467,31,400,70,364,'364 358c-69 -66 -155 -146 -213 -192c0 -9 2 -18 5 -26c3 -14 60 -61 100 -79c4 1 18 1 23 3l74 39l5 -16c-54 -42 -110 -82 -169 -118c-40 37 -80 74 -114 116c-4 34 -5 69 -5 103c0 60 5 119 14 178l162 101c33 -42 74 -78 118 -109zM284 312c-38 24 -76 53 -108 84 l-2 1c-8 0 -14 -22 -16 -28c-9 -32 -10 -123 -10 -176c46 34 98 78 136 119'], + 0x1D523: [679,238,329,30,324,'324 388l-12 -37h-106l-4 -206c0 -67 0 -151 -13 -198c-10 -34 -25 -67 -43 -97l-50 -88l-19 7l26 90c7 23 12 48 14 72l3 197l-1 223h-89l15 35h73l-14 67c-6 25 -13 61 -13 75c0 44 24 81 55 112c14 14 29 27 46 39c42 0 92 -7 124 -40l-47 -92l-10 -1 c-8 17 -18 33 -31 46c-13 12 -30 23 -47 23c-13 0 -29 -3 -39 -12c-9 -10 -12 -22 -12 -35c0 -17 12 -41 21 -59l50 -95c5 -8 7 -17 9 -26h114'], + 0x1D524: [470,209,503,16,455,'455 -17c-51 -64 -104 -127 -163 -184c-12 -4 -28 -8 -36 -8c-32 0 -63 9 -92 21c-37 16 -71 38 -102 63l-35 -19l-11 13c45 31 89 68 134 107l-72 89c-2 34 -4 69 -4 103c0 67 5 134 15 200c53 37 107 70 162 102c34 -23 74 -36 114 -45l72 40l6 -6 c-14 -29 -16 -62 -18 -94c-4 -55 -4 -143 -4 -215c0 -14 2 -28 5 -41zM369 -45c0 22 -16 95 -27 142c-67 -47 -133 -99 -195 -152c23 -23 49 -45 77 -60c22 -12 46 -20 71 -20c20 0 39 10 53 24c15 16 21 45 21 66zM349 351c-58 8 -128 21 -176 43c-16 -40 -18 -90 -18 -134 c0 -45 1 -91 5 -136c15 -29 43 -60 68 -83l112 82c0 76 2 153 9 228'], + 0x1D525: [689,198,521,76,435,'435 246c0 -54 -2 -109 -7 -162c-4 -39 -9 -78 -20 -115c-45 -66 -102 -119 -164 -167l-16 14l64 55c11 8 19 19 26 31c17 34 23 72 28 109c8 60 10 121 10 182c0 28 -6 107 -10 161c-26 19 -55 36 -88 36c-31 0 -69 -29 -94 -49l-5 -215l54 -77l-82 -75l-55 91 c7 122 11 244 11 366c0 81 -1 163 -6 244l12 2l24 -76l121 88l17 -11c-83 -77 -90 -142 -90 -197l-1 -110c33 26 98 72 148 107c33 -30 74 -48 116 -61c4 -57 7 -114 7 -171'], + 0x1D526: [675,21,279,14,268,'268 83c-39 -37 -81 -72 -123 -104l-54 76c3 53 3 93 3 139l-4 173l-21 24c-11 -4 -29 -12 -42 -22l-13 13c34 28 71 61 105 93c19 -20 38 -39 60 -55c-7 -60 -8 -120 -8 -181c0 -39 1 -79 5 -111c2 -19 19 -40 32 -53c4 0 10 1 13 3c15 7 33 18 40 24zM187 616l-57 -60 c-21 19 -40 40 -58 61c20 20 42 37 60 58c18 -21 40 -47 55 -59'], + 0x1D527: [673,202,280,-9,196,'196 422l-6 -396c-1 -25 -5 -51 -22 -70c-45 -55 -98 -107 -161 -158l-16 18c29 22 58 45 83 71c13 13 21 30 26 47c16 56 18 179 18 269c0 50 0 119 -10 149c-6 17 -25 37 -32 37l-8 -3l-29 -19l-14 13l106 95c22 -16 43 -34 65 -53zM183 615l-58 -60 c-18 15 -37 40 -54 61l61 57c16 -21 32 -40 51 -58'], + 0x1D528: [686,26,389,24,363,'363 95c-43 -37 -111 -82 -168 -121l-107 95c4 19 6 40 6 58v181h-70l9 35h62c0 227 -1 262 -7 326l17 4c8 -24 18 -80 18 -80c41 32 86 68 130 93l16 -10c-26 -24 -56 -52 -67 -73c-19 -32 -26 -69 -29 -105c42 32 83 57 127 87c17 -16 32 -34 44 -54 c9 -15 16 -31 16 -48c0 -18 -10 -36 -23 -49l-86 -91h95l-14 -35h-159v-180c24 -24 54 -48 82 -68c32 16 66 29 95 50zM288 446c0 13 -6 24 -12 35c-10 14 -22 26 -35 37c-20 -10 -39 -23 -51 -42c-9 -16 -12 -34 -14 -52c-3 -25 -3 -54 -3 -81c35 0 64 13 87 40 c15 18 28 39 28 63'], + 0x1D529: [686,20,279,97,277,'277 673c-22 -19 -43 -36 -59 -60c-35 -54 -36 -106 -36 -222l2 -269c9 -14 26 -29 42 -41c14 4 29 14 40 23l10 -17l-128 -107l-51 76c6 108 8 217 8 326c0 96 -1 191 -6 286l17 4l17 -78l128 92'], + 0x1D52A: [475,26,766,7,757,'757 88l-126 -107c-10 19 -39 54 -59 79c6 42 11 75 11 214c0 26 -1 50 -3 68c-1 6 -2 12 -8 15c-28 17 -60 26 -92 34c-23 -12 -44 -24 -65 -38v-218c0 -8 0 -17 4 -22c0 0 30 -45 46 -66l-86 -73c-13 26 -36 52 -54 72c9 39 14 81 14 202c0 33 -1 66 -5 99 c-25 22 -71 35 -105 44l-61 -42v-197c0 -16 0 -40 5 -46l44 -58l-83 -70l-49 80c5 40 7 80 7 119l-4 188l-26 26l-43 -24l-12 12l111 93l50 -52v-44l127 99c38 -23 78 -43 120 -57v-39c44 30 88 61 129 95c39 -21 85 -46 121 -56c-5 -57 -3 -114 -4 -171v-121 c11 -16 23 -33 37 -47c20 7 28 10 47 26'], + 0x1D52B: [475,23,526,18,521,'521 93l-127 -112l-55 84c6 35 8 81 8 130c0 54 -2 111 -5 163c-29 15 -68 24 -101 27l-65 -44l-4 -207c0 -10 4 -24 7 -28l40 -54l-87 -75c-14 25 -30 48 -49 69c8 46 11 104 11 165l-4 154l-24 23l-35 -20l-13 12l104 90c12 -13 35 -31 54 -45v-58l144 108 c35 -24 73 -43 113 -58c-4 -43 -8 -102 -8 -164l4 -126c8 -13 16 -27 26 -40c3 -4 8 -5 13 -5c0 0 7 3 10 5l31 22'], + 0x1D52C: [481,28,488,66,413,'413 302c0 -71 -6 -141 -22 -210c-72 -46 -147 -88 -226 -120c-35 30 -71 62 -99 96c0 89 5 198 18 296c61 35 119 75 176 117c45 -30 94 -55 148 -66c3 -38 5 -75 5 -113zM334 356c-45 3 -104 25 -149 45c-13 -22 -19 -35 -27 -72c-8 -30 -11 -75 -11 -118 c0 -33 2 -64 6 -88c17 -21 36 -40 58 -55c18 -12 36 -21 57 -24c6 0 17 13 22 19c23 28 32 67 37 107c7 62 7 89 7 186'], + 0x1D52D: [538,214,500,12,430,'430 282l-2 -66c-2 -43 -6 -87 -21 -127l-134 -107c-32 26 -68 48 -108 55l4 -207l-80 -44l-11 7l9 254c-23 0 -46 -7 -64 -23l-11 14c25 23 62 57 76 67v247l-41 56c-3 4 -5 9 -5 14c0 8 3 15 7 22c21 34 47 66 76 94l14 -9c-10 -12 -18 -26 -18 -42c0 -13 5 -26 12 -38 c9 -16 21 -30 34 -43l-2 -34c49 33 95 69 142 106c35 -28 76 -48 118 -64c3 -44 5 -88 5 -132zM349 230c0 41 -3 82 -6 123c-25 13 -66 28 -96 38c-29 -11 -54 -27 -81 -44v-241c40 0 108 -30 157 -54c16 30 26 83 26 178'], + 0x1D52E: [480,224,489,59,418,'418 473c-15 -85 -19 -220 -19 -332c0 -107 0 -215 7 -320l-83 -45l-11 10l8 307c-56 -46 -113 -84 -174 -122l-84 94c-2 29 -3 57 -3 86c0 73 6 147 23 218c57 31 115 63 165 104c29 -18 60 -34 93 -41l70 48zM324 367c-51 3 -101 16 -150 31c-14 -25 -21 -54 -26 -82 c-7 -38 -10 -77 -10 -116c0 -19 0 -53 1 -56c0 -7 1 -14 6 -19c22 -22 50 -54 73 -75c24 13 70 48 101 71'], + 0x1D52F: [474,21,389,15,395,'395 413l-1 -13l-59 -55c-9 -8 -21 -10 -33 -10s-24 5 -33 11c-16 10 -36 25 -50 38c-16 -12 -31 -25 -37 -34v-198c0 -16 10 -29 19 -41c16 -19 34 -36 54 -51l89 42l2 -19l-146 -104c-37 29 -70 62 -103 96c6 59 6 109 6 170l-1 77c-1 32 -8 43 -8 43 c-9 8 -19 15 -29 22l-38 -16l-12 10l101 93c21 -21 43 -41 66 -60v-32l109 87c10 -18 22 -36 36 -52c8 -9 18 -19 30 -19c11 0 29 10 38 15'], + 0x1D530: [479,30,442,-28,407,'407 441l-92 -78c-72 4 -126 27 -152 52c-20 -19 -20 -56 -20 -79c0 -25 2 -50 12 -73c4 -9 9 -21 20 -21c6 0 12 0 17 2l123 56c22 -7 39 -22 56 -38c2 -26 3 -52 3 -77c0 -46 -4 -91 -16 -135c-54 -24 -109 -49 -160 -80c-22 21 -46 41 -73 57c-17 10 -35 20 -55 20 c-30 0 -57 -16 -89 -44l-9 9c15 16 52 55 74 76c18 17 43 23 67 23c26 0 50 -8 72 -22l81 -54l4 -1c6 0 11 5 15 14c9 30 11 61 11 92c0 25 -3 63 -13 74c-14 17 -27 22 -39 22c-14 0 -22 -3 -35 -10l-102 -58c-15 19 -31 45 -43 67c0 49 1 97 6 142l152 102l81 -46 c8 -4 16 -6 26 -6c23 0 46 13 72 30'], + 0x1D531: [641,21,333,26,349,'349 78l-137 -99l-97 83l1 289h-90l16 35h73v172l113 83l14 -14l-27 -26c-5 -5 -8 -12 -9 -19c-11 -64 -12 -131 -12 -196h108l-17 -35h-90l1 -228c20 -18 44 -39 63 -50c5 -3 11 -5 17 -5c15 0 36 9 70 32'], + 0x1D532: [474,26,517,8,514,'514 88c-42 -34 -83 -69 -122 -106l-8 2c-19 32 -39 67 -51 103c-68 -45 -153 -113 -153 -113c-26 17 -88 62 -125 74c13 22 21 51 27 79c9 45 15 91 15 137c0 28 0 55 -7 82c-6 18 -14 37 -29 50l-38 -20l-15 10l111 88c16 -19 32 -38 52 -53c0 -22 1 -43 1 -65l-2 -92 c-2 -54 -9 -108 -24 -160l101 -48l88 59c3 50 4 100 4 149l-3 160l85 44l7 -6c-10 -79 -13 -158 -13 -237c0 -32 2 -64 6 -94c2 -14 8 -28 17 -40c4 -5 10 -8 17 -8c10 0 43 15 53 20'], + 0x1D533: [533,28,511,51,439,'439 245c0 -37 -15 -119 -32 -159l-215 -114c-31 33 -67 65 -103 94c5 55 7 101 7 165l-4 114c0 8 -4 13 -9 19c-9 12 -17 18 -25 30c-4 8 -7 16 -7 24c0 6 5 20 8 26c21 32 45 62 72 89l14 -4c-9 -14 -16 -29 -16 -46c0 -10 11 -31 19 -45c5 -8 18 -20 27 -30v-34 l143 103c36 -24 74 -45 115 -61c6 -66 6 -100 6 -171zM359 243c0 38 -3 77 -8 115c-23 21 -54 32 -85 38c-28 -2 -63 -27 -91 -48l-3 -193c0 -25 14 -47 34 -62l37 -29c12 -8 27 -15 42 -15c13 0 24 9 33 19c11 11 18 25 24 40c13 40 17 99 17 135'], + 0x1D534: [533,28,773,44,693,'693 268c0 -93 -19 -133 -41 -196l-187 -100c-44 27 -89 52 -134 74c5 59 8 118 8 176c0 40 -1 80 -5 119c-23 16 -56 37 -70 44c-7 3 -16 7 -24 7c-4 0 -12 -2 -16 -5c-22 -12 -38 -25 -58 -39l-1 -190c0 -24 6 -49 20 -70c8 -14 18 -29 27 -40l-75 -75 c-17 29 -35 57 -59 79c8 51 10 103 10 155c0 46 0 92 -3 138c-1 8 -4 13 -9 19c-9 12 -17 18 -25 30c-4 8 -7 16 -7 24c0 6 5 20 8 26c21 32 45 62 72 89l14 -4c-9 -14 -16 -29 -16 -46c0 -10 11 -31 19 -45c5 -8 18 -20 27 -30v-32c43 30 86 61 123 97 c41 -26 84 -48 128 -68l-1 -37l142 103c41 -24 83 -46 126 -66c5 -28 7 -92 7 -137zM610 264c0 28 -4 53 -12 84c-29 18 -68 33 -100 38c-22 0 -63 -33 -80 -45l-2 -106c0 -26 1 -53 3 -81c1 -23 12 -44 29 -59c27 -25 59 -51 100 -51c8 0 17 7 24 14c17 17 25 45 29 69 c7 45 9 91 9 137'], + 0x1D535: [473,188,388,10,370,'370 398l-67 -59c-28 14 -47 42 -59 51c-15 -9 -42 -33 -49 -43c-4 -18 -5 -41 -5 -58c-1 -55 1 -115 5 -172c19 -20 40 -38 63 -54c4 -3 9 -4 13 -4c5 1 13 0 22 5l63 34l3 -18l-149 -105c-25 28 -54 52 -84 74c-17 -16 -33 -33 -45 -54c-9 -15 -16 -31 -16 -49 c0 -20 10 -37 24 -51c22 -22 69 -31 98 -34v-9l-64 -40c-33 8 -67 19 -92 44c-13 12 -21 29 -21 46c0 25 13 47 26 68c21 34 41 59 68 89c6 42 7 91 7 133c0 54 1 108 -3 161c-9 10 -21 23 -30 28c-3 2 -10 5 -10 5c-3 0 -8 -2 -12 -4c-9 -5 -29 -14 -29 -14l-13 9 c33 34 68 65 104 96c25 -22 63 -57 76 -66l-2 -31l109 89c17 -28 42 -48 69 -67'], + 0x1D536: [524,219,498,45,437,'437 228c0 -80 -8 -174 -30 -251c-13 -46 -117 -145 -185 -196l-38 17c34 17 67 36 94 62c22 22 36 51 46 80c11 32 16 66 19 99c5 50 7 100 7 150c0 56 -5 112 -11 167c-24 15 -53 30 -80 35c-15 0 -59 -28 -89 -51c-1 -64 -3 -81 -3 -188c0 -38 15 -66 45 -104l-75 -75 c-17 29 -39 61 -59 79c10 61 11 126 11 203c0 31 0 35 -3 81c-1 8 -4 13 -9 19c-9 12 -17 19 -25 31c-4 6 -7 14 -7 24c0 4 5 19 8 25c21 32 45 62 72 89l14 -4c-9 -14 -16 -29 -16 -46c0 -10 11 -31 19 -45c5 -8 18 -20 27 -30v-32l142 106c37 -22 74 -44 115 -59 c7 -60 11 -130 11 -186'], + 0x1D537: [471,215,390,-7,314,'314 64c0 -55 -10 -110 -24 -163l-137 -116c-45 0 -88 15 -124 41c-18 14 -32 34 -36 58c7 27 54 91 87 129c42 49 82 89 127 134c-35 16 -71 30 -110 34v11l73 67c16 15 34 33 34 56s-16 45 -34 57c-12 9 -26 16 -39 16c-7 0 -10 -2 -17 -6c-24 -14 -46 -30 -67 -47 l-11 12c45 45 93 87 146 124c24 -12 49 -25 68 -44c10 -9 19 -20 25 -31c5 -8 9 -17 9 -26c0 -13 -6 -26 -15 -36l-81 -87c37 -13 79 -29 112 -49c11 -43 14 -89 14 -134zM240 20c0 37 -4 74 -15 110c-41 -35 -81 -71 -113 -114c-20 -27 -40 -56 -40 -89 c0 -17 10 -31 22 -42c23 -24 55 -39 89 -39c10 0 16 4 23 12c10 10 18 37 22 57c7 35 12 70 12 105'], + 0x1D56C: [688,31,847,29,827,'827 77c-53 -35 -104 -73 -159 -106l-12 3l-73 150l-232 -155c-27 29 -56 57 -90 80c-21 14 -43 24 -70 24c-34 0 -93 -23 -133 -42l-22 17l200 128c27 17 52 36 76 56c69 59 100 141 100 223c0 49 -27 95 -68 129c-29 25 -70 40 -112 40c-36 0 -58 -7 -78 -24 c-17 -14 -22 -35 -22 -54c0 -12 6 -23 13 -33c11 -15 24 -28 38 -41c16 -14 32 -28 44 -45c8 -10 15 -20 15 -32c0 -30 -22 -56 -46 -77c-32 -27 -70 -50 -110 -69l-19 15c19 11 36 24 51 40c9 11 18 23 18 37c0 16 -30 48 -51 70c-16 16 -30 33 -42 52c-7 13 -14 26 -14 40 c0 28 16 56 46 83c51 47 171 102 244 102c58 0 116 -15 158 -50c38 -33 59 -77 59 -123c0 -69 -25 -136 -60 -198l-193 -158c25 0 50 -9 72 -21c31 -16 58 -37 82 -59c37 9 97 46 142 74v429l174 105l14 -13l-51 -51c-8 -49 -8 -215 -8 -323c0 -40 1 -81 4 -121l57 -101 l53 21'], + 0x1D56D: [685,31,1043,56,963,'963 491l-204 -103v-5c26 -3 46 -6 75 -14c24 -7 47 -16 65 -31c38 -32 52 -77 52 -122s-16 -79 -45 -116l-172 -111c-25 -13 -62 -20 -97 -20c-63 0 -124 16 -182 35s-118 37 -181 37c-64 0 -122 -20 -177 -50l-13 24l139 77c42 24 83 49 119 79c20 18 39 41 45 64 c9 36 13 81 13 120c0 37 0 76 -7 112c-9 44 -29 90 -67 122c-24 20 -52 38 -87 38c-23 0 -45 -9 -61 -23c-14 -12 -21 -31 -21 -48c0 -13 8 -24 16 -34c13 -18 29 -34 46 -50c14 -13 28 -27 39 -43c7 -10 14 -21 14 -33c0 -10 -3 -21 -10 -30c-9 -13 -23 -26 -35 -36 c-39 -34 -84 -60 -131 -84l-20 13c23 15 44 30 65 48c12 10 19 24 19 39c0 16 -24 40 -42 58c-18 17 -34 36 -46 57c-9 15 -16 31 -16 48c0 29 40 70 70 95c58 50 130 81 206 81c80 0 142 -49 173 -108c42 30 85 59 134 80c34 15 70 28 108 28c22 0 45 -4 61 -18 c15 -12 28 -60 36 -92c5 -18 13 -36 25 -51c8 -9 18 -19 33 -19c21 0 41 4 61 10v-24zM827 144c0 48 -13 99 -53 133c-41 35 -98 50 -154 50c-33 0 -65 -4 -96 -11c-4 -25 -14 -51 -24 -75l-145 -104c83 -2 164 -23 241 -49c50 -17 104 -34 154 -34c19 0 38 5 51 16 c23 19 26 48 26 74zM778 433c-9 5 -21 12 -27 19c-7 8 -13 17 -15 26c-1 2 -8 40 -12 60c-5 24 -11 51 -29 67c-10 8 -23 14 -36 14c-25 0 -47 -9 -66 -21c-27 -18 -51 -45 -72 -78c6 -30 7 -58 7 -101l-2 -73c83 19 174 46 252 87'], + 0x1D56E: [677,32,723,71,729,'729 553c-27 -11 -105 -40 -140 -40c-8 0 -16 1 -23 5c-10 6 -21 13 -28 22c-18 22 -35 47 -49 71c-9 -2 -17 -5 -23 -10c-13 -12 -19 -30 -19 -46c0 -17 11 -49 21 -74c11 -28 19 -61 19 -86c0 -32 -6 -66 -33 -89c-20 -17 -44 -28 -68 -40c-37 -16 -76 -30 -115 -43 l-20 14c25 7 45 22 63 37c21 18 37 41 37 67c0 32 -7 63 -16 94c-9 33 -20 71 -20 98c0 9 1 16 4 22c-24 -2 -47 -11 -64 -26c-21 -17 -33 -40 -42 -64c-11 -30 -14 -62 -14 -94c0 -88 27 -177 101 -240c63 -53 146 -86 234 -86c21 0 45 1 62 9l116 54l4 -27l-166 -103 c-28 -6 -56 -10 -85 -10c-102 0 -206 21 -279 82c-79 68 -115 162 -115 256c0 62 18 123 47 179c21 16 124 77 195 108l25 -25c82 52 173 93 274 109c8 -36 19 -72 50 -98c8 -7 19 -7 30 -7c8 0 26 3 37 6v-25'], + 0x1D56F: [685,29,981,30,896,'896 372c0 -76 -28 -160 -78 -231c-81 -68 -154 -117 -249 -170c-47 0 -101 18 -149 34c-78 26 -175 58 -239 58c-30 0 -59 -10 -80 -28c-19 -16 -37 -32 -53 -49l-17 19c42 58 98 108 155 156c33 0 65 1 97 7c20 3 40 7 54 19s20 28 20 45c0 13 -7 25 -14 36 c-12 18 -26 34 -40 49s-27 29 -38 46c-7 10 -13 21 -13 33c0 14 3 28 12 40c12 17 25 31 42 45c33 25 69 48 107 68l22 -11c-27 -22 -62 -52 -62 -75c0 -21 22 -47 45 -75c14 -16 37 -42 49 -60c8 -11 13 -25 13 -39c0 -25 -13 -48 -34 -66c-34 -29 -78 -53 -127 -71 c61 -10 179 -42 261 -64c25 -7 52 -13 79 -13c25 0 45 13 62 28c23 18 35 45 43 71c12 34 16 69 16 104c0 86 -25 174 -98 235c-35 30 -80 49 -127 62c-58 16 -119 22 -180 22c-89 0 -181 -17 -246 -71c-51 -44 -71 -100 -74 -161l-25 7c0 85 32 169 104 230 c36 31 83 49 132 61c64 16 131 22 197 22c125 0 253 -25 342 -101c66 -56 91 -134 91 -212'], + 0x1D570: [687,29,782,73,733,'733 584l-3 -27l-131 -40c-4 -1 -7 -1 -11 -1s-9 0 -12 2c-10 7 -19 14 -27 24l-59 76c-19 -12 -36 -28 -36 -48c0 -28 8 -66 19 -96s19 -66 19 -93l122 80c20 -36 45 -65 81 -89v-12l-89 -55c-12 7 -25 13 -44 26l-36 25c-4 3 -10 6 -15 6c-9 0 -16 -4 -23 -9 c-7 -15 -17 -27 -30 -38c-50 -42 -114 -69 -181 -89l-22 14c26 10 48 23 68 40c17 14 31 32 31 53c0 30 -4 63 -14 94c-9 28 -15 51 -22 79c-2 8 -3 15 -3 23c0 13 2 26 6 38c-20 -4 -37 -14 -52 -26c-52 -45 -74 -107 -74 -170c0 -87 38 -171 111 -233 c58 -49 134 -84 216 -84c71 0 138 23 195 58v-27l-155 -103c-38 -7 -77 -11 -116 -11c-94 0 -191 24 -259 81c-79 67 -114 159 -114 253c0 61 12 122 41 178c60 43 126 81 193 116l43 -18c79 47 168 80 260 106c6 -22 14 -44 24 -65c8 -15 15 -25 28 -36c7 -6 15 -9 25 -9 c13 0 33 4 46 7'], + 0x1D571: [684,147,721,17,734,'734 626c-46 -45 -117 -114 -151 -140c-40 2 -85 13 -122 24c-29 -9 -52 -19 -74 -37c-15 -13 -23 -32 -23 -50c0 -19 9 -37 19 -55c15 -25 34 -47 55 -69l150 119c31 -25 50 -57 70 -94l-68 -60c-8 12 -20 28 -28 35c-8 8 -25 14 -39 14c-21 0 -48 -17 -67 -33 c33 -34 68 -73 93 -112c16 -24 31 -49 31 -77c0 -51 -21 -101 -64 -137c-66 -57 -151 -101 -247 -101c-38 0 -79 7 -107 30c-31 27 -39 66 -39 103c0 27 4 49 9 75c3 13 5 39 5 55c0 15 -3 29 -16 40c-9 8 -23 13 -36 13c-17 0 -45 -13 -64 -23l-4 23c32 18 65 35 100 47 c26 9 53 14 80 14c19 0 31 -5 44 -15c11 -10 19 -26 19 -39c0 -22 -2 -45 -8 -69c-11 -43 -17 -87 -17 -123c0 -26 6 -53 28 -72c16 -12 37 -19 58 -19c41 0 80 16 109 41c31 26 38 65 38 101c0 39 -55 101 -95 147c-30 35 -60 70 -85 109c-14 21 -28 44 -28 69 c0 17 7 33 17 48c12 19 29 37 48 53c29 24 64 44 100 61c-69 32 -163 74 -215 74c-22 0 -46 -4 -62 -18c-36 -30 -53 -71 -63 -113l-26 16c14 58 39 115 89 157c37 32 89 46 141 46c29 0 57 -7 83 -15c41 -11 80 -27 118 -43c43 -18 105 -45 131 -45c25 0 70 36 101 61'], + 0x1D572: [692,27,927,74,844,'844 291c0 -95 -65 -179 -159 -227l-150 -82c-35 -5 -68 -9 -96 -9c-91 0 -181 25 -244 81c-82 73 -121 166 -121 264c0 36 5 73 14 108c7 25 17 46 34 70c62 39 124 72 186 100l35 -12c44 30 93 56 144 78l22 -12c-43 -18 -77 -60 -77 -100c0 -29 17 -97 31 -144l66 34 l114 86c-35 6 -64 16 -90 37c-13 12 -24 33 -29 49l112 80c8 -21 15 -43 33 -58c19 -16 46 -22 72 -22c12 0 42 8 65 19l3 -24c-72 -49 -137 -96 -204 -149c67 0 135 -13 183 -54c36 -30 56 -71 56 -113zM718 216c0 48 -17 96 -57 130c-33 28 -81 43 -127 43 c-23 0 -45 -1 -68 -9c2 -11 3 -23 3 -35c0 -24 -6 -48 -25 -65c-17 -14 -38 -25 -59 -34c-31 -13 -59 -22 -92 -32l-11 18c16 6 28 12 43 24c16 16 24 35 24 55c0 13 -11 70 -21 102c-15 50 -21 80 -21 100c0 19 1 39 13 55c-30 -2 -51 -15 -73 -33 c-42 -36 -56 -95 -56 -144c0 -96 38 -190 119 -258c59 -51 137 -84 222 -84c47 0 96 12 130 39c40 31 56 81 56 128'], + 0x1D573: [684,127,850,0,753,'753 242c0 -87 -15 -173 -51 -254l-160 -100c-14 -8 -30 -15 -47 -15c-38 0 -72 17 -97 40l59 70l16 1c6 -14 16 -28 29 -38c10 -8 22 -15 36 -15c21 0 37 8 52 20c37 31 37 150 37 227c0 34 -3 138 -45 172c-26 22 -61 38 -98 38c-23 0 -46 -2 -67 -9 c-18 -7 -43 -19 -81 -48c24 -40 46 -94 46 -126c0 -27 -7 -58 -28 -78l-166 -145c-16 15 -34 29 -53 40c-13 7 -27 14 -43 14c-33 0 -67 -30 -76 -39l-16 18c47 47 116 117 160 117c42 0 76 -29 99 -56c17 20 29 40 29 64c0 34 -41 101 -72 149c-32 48 -61 100 -61 156 c0 25 14 48 29 69c24 33 53 62 84 90c33 30 76 55 116 80c21 -18 44 -35 69 -48c17 -9 36 -17 56 -17c35 0 88 34 111 51l14 -18c-35 -32 -89 -80 -139 -111c-15 -4 -31 -7 -47 -7c-59 0 -111 27 -157 56c-20 -18 -37 -40 -37 -65c0 -23 6 -45 15 -66c14 -35 33 -71 53 -102 c57 43 125 88 187 122c64 0 148 -23 186 -45c10 -5 31 -29 34 -40c20 -58 24 -91 24 -152'], + 0x1D574: [683,25,654,31,623,'623 655c-61 -48 -133 -98 -205 -133l-110 36c-33 9 -66 18 -101 18c-32 0 -67 -12 -90 -31c-27 -23 -46 -53 -64 -82h-7l-15 14c19 37 39 73 62 108c15 22 31 44 52 61c30 24 70 37 110 37c38 0 89 -19 132 -34c36 -13 92 -33 111 -33s34 5 51 13c23 11 44 26 65 41z M607 568c-24 -17 -39 -31 -56 -53c-12 -16 -23 -40 -23 -60c0 -24 0 -54 3 -72c8 -48 15 -97 15 -145c0 -60 -24 -122 -75 -165c-65 -56 -142 -98 -236 -98c-48 0 -92 21 -128 47l-62 -38l-7 18c47 48 105 96 159 138c23 -42 37 -67 74 -97c13 -11 31 -15 49 -15 c24 0 42 8 59 21c15 13 25 38 31 56c8 25 8 51 8 77c0 10 -8 75 -12 112c-3 26 -5 52 -5 77c0 21 1 42 4 62c51 55 110 104 177 145'], + 0x1D575: [681,142,652,-8,615,'615 586c-68 -33 -148 -64 -223 -85c-28 12 -69 37 -75 41c-36 19 -74 37 -117 37c-24 0 -52 -7 -68 -21c-22 -18 -36 -40 -50 -62l-18 14c26 46 55 91 98 127c30 26 70 44 113 44c17 0 32 -7 46 -14c24 -11 46 -24 68 -38c21 -14 43 -28 66 -39c14 -6 29 -11 45 -11 c32 0 77 16 115 30v-23zM572 517c-46 -40 -82 -88 -83 -145c0 -44 7 -87 20 -129c15 -52 30 -105 30 -159c0 -56 -21 -111 -68 -151c-52 -44 -120 -75 -194 -75c-37 0 -77 3 -104 26c-30 25 -43 59 -48 94c-5 29 -12 73 -24 83c-11 9 -26 15 -42 15c-20 0 -40 -8 -58 -17 l-9 18c30 20 62 39 97 53c26 11 54 19 83 19c20 0 41 -5 56 -18c10 -8 12 -21 13 -33c1 -6 1 -67 1 -100s11 -65 38 -88c12 -10 28 -17 44 -17c26 0 50 7 68 23c26 22 32 59 32 90c0 47 -18 111 -35 165c-15 46 -25 93 -25 140c0 17 1 34 5 51c50 62 109 117 178 164'], + 0x1D576: [682,26,789,20,813,'813 69c-31 -26 -64 -51 -101 -71c-23 -12 -48 -24 -75 -24c-17 0 -36 1 -48 11c-33 29 -45 69 -51 108c-2 11 -12 72 -37 108c-8 11 -29 29 -73 29c-34 0 -70 -11 -98 -24c2 -13 3 -25 3 -37c0 -14 -2 -28 -6 -45c-43 -46 -94 -93 -151 -127c-14 -8 -27 -14 -39 -19 c-38 0 -72 14 -93 30c-3 2 -16 15 -24 24l86 85h14c8 -20 17 -39 35 -54c9 -8 21 -17 35 -17c10 0 22 2 29 8c15 14 18 33 18 53c0 34 -24 91 -41 133c-23 55 -44 111 -44 169c0 30 13 59 30 85c23 35 53 65 86 93c69 59 162 95 260 95c117 0 156 -35 183 -64 c2 -10 3 -19 3 -30c0 -22 -5 -50 -22 -98l-20 -6c-8 39 -25 58 -49 79c-46 39 -112 62 -176 62c-54 0 -108 -15 -147 -48c-27 -24 -38 -57 -38 -90c0 -43 10 -84 23 -125c41 39 85 75 137 104c36 19 76 36 119 36c22 0 44 -4 60 -17c16 -15 28 -44 37 -68 c6 -18 12 -35 22 -44c6 -6 16 -10 26 -10c12 0 24 0 46 6l6 -21l-197 -65c79 -15 95 -46 108 -126c7 -41 27 -67 45 -79c12 -8 29 -11 45 -11c25 0 47 11 67 24zM556 312c-13 9 -29 36 -35 55c-4 17 -12 35 -27 47c-11 9 -24 18 -39 18c-37 0 -72 -15 -97 -37 c-24 -20 -44 -52 -58 -81c8 -26 16 -58 23 -84c31 14 102 46 178 59'], + 0x1D577: [684,28,786,30,764,'764 200c-10 -40 -22 -81 -39 -119c-11 -24 -22 -48 -43 -66c-30 -25 -69 -43 -112 -43c-93 0 -182 23 -267 53c-49 17 -119 41 -151 41c-19 0 -38 -6 -52 -17c-12 -11 -37 -44 -54 -67l-16 13c28 59 65 115 117 161c11 6 25 9 41 9c7 0 14 0 22 -2c15 4 36 12 47 21 c15 12 20 30 20 47c0 22 -37 78 -61 115c-21 32 -38 67 -38 104c0 25 11 50 26 72c19 30 45 57 74 81c67 57 162 81 256 81c40 0 82 -5 111 -29c13 -12 17 -27 20 -43c4 -23 3 -47 0 -70c-2 -13 -3 -21 -3 -34c0 -17 9 -31 24 -42c6 -5 45 -5 63 -5v-18l-172 -49 c-10 0 -21 1 -29 7c-13 12 -21 27 -21 43c0 14 4 26 6 40c2 17 5 48 5 52c0 23 -8 46 -27 62c-25 21 -60 30 -95 30c-32 0 -65 -8 -88 -27c-24 -21 -35 -49 -35 -78c0 -40 18 -78 37 -115c14 -26 26 -53 34 -82c5 -15 8 -31 8 -47c0 -5 -1 -17 -5 -22 c-24 -29 -68 -72 -116 -104l153 -47c56 -17 116 -24 176 -24c42 0 84 11 114 37c29 24 42 58 51 92'], + 0x1D578: [686,33,1239,26,1232,'1232 548c-48 -25 -73 -41 -116 -72c-5 -4 -25 -28 -28 -39c-9 -36 -9 -61 -9 -97c0 -55 2 -110 14 -164c4 -19 10 -37 18 -55c6 -13 10 -18 21 -27c7 -6 20 -9 30 -9c9 0 41 2 61 9v-18l-179 -109l-80 111c0 105 0 237 6 289c33 48 63 77 101 103c-12 3 -18 5 -26 17 c-9 14 -22 40 -31 62c-7 18 -16 36 -29 48c-10 8 -23 15 -37 15c-24 0 -49 -5 -69 -16c-25 -14 -40 -26 -60 -45c5 -28 8 -72 8 -101c0 -107 -14 -216 -69 -313l-170 -165c-13 12 -28 24 -45 33c-11 6 -23 12 -37 12c-18 0 -36 -5 -49 -16l-16 -14l-17 15c25 28 66 71 78 82 c19 17 44 33 73 33c25 0 57 -24 77 -41c27 34 36 72 45 112c13 59 14 124 14 183c0 40 -3 80 -15 119c-9 27 -21 54 -44 74c-14 12 -32 23 -52 23c-15 0 -28 -4 -41 -10c-16 -9 -32 -21 -50 -35c8 -31 14 -62 14 -94c0 -107 -34 -221 -87 -318l-219 -155 c-13 15 -28 29 -45 39c-14 8 -29 14 -45 14c-20 0 -39 -5 -54 -17c-10 -8 -24 -20 -30 -26l-15 15c29 32 66 72 91 92c23 20 54 31 86 31c16 0 30 -7 42 -15c18 -11 35 -28 48 -44c14 10 26 19 35 28c28 25 39 60 50 95c15 51 20 104 20 157c0 46 -4 94 -18 139 c-11 32 -27 66 -55 90c-31 27 -70 46 -116 46c-21 0 -51 -1 -67 -15c-13 -11 -23 -23 -23 -39c0 -17 36 -59 61 -85c43 -43 58 -67 58 -84c0 -29 -21 -55 -45 -76c-35 -29 -74 -51 -116 -72l-18 17c21 10 38 20 53 35c10 11 20 24 20 38c0 20 -28 54 -50 76 c-26 26 -58 63 -58 89c0 18 12 35 23 51c18 24 41 45 65 65c53 45 137 67 188 67c48 0 104 -15 139 -44c24 -20 46 -47 58 -74c30 23 62 44 98 59c26 11 55 20 85 20c35 0 68 -12 93 -32c13 -12 23 -25 33 -38c36 30 76 58 121 78c36 16 74 28 115 28c15 0 31 -2 43 -12 c10 -9 25 -37 34 -55c8 -16 17 -32 31 -44c9 -9 21 -14 34 -14c16 0 31 3 46 8v-18'], + 0x1D579: [681,33,982,26,968,'968 542c-29 -13 -66 -37 -108 -66c-5 -4 -25 -28 -28 -39c-9 -36 -9 -61 -9 -97c0 -55 2 -110 14 -164c4 -19 10 -37 18 -55c6 -13 10 -18 21 -27c7 -6 20 -9 30 -9c9 0 41 2 61 9v-18l-179 -109l-80 111c0 105 0 237 6 289c33 48 63 79 101 105c-14 0 -26 7 -35 15 c-13 12 -23 27 -29 42c-10 25 -25 57 -41 71c-11 8 -24 14 -38 14c-25 0 -53 -16 -72 -30c-36 -28 -57 -50 -82 -83c16 -48 24 -113 24 -166c0 -72 -13 -144 -44 -210l-205 -143c-9 -4 -23 -10 -29 -10c-51 0 -93 27 -128 57l88 94h19c5 -14 20 -33 38 -49 c14 -11 32 -17 52 -17c25 0 46 14 64 28c15 13 19 31 23 49c7 29 9 58 9 88c0 70 -8 140 -31 208c-17 51 -43 100 -87 138c-31 26 -70 47 -115 47c-21 0 -44 -3 -60 -16c-12 -11 -19 -24 -19 -39s9 -30 17 -43c14 -20 31 -38 49 -56c14 -13 27 -27 37 -43 c7 -10 10 -21 10 -33c0 -26 -17 -46 -37 -65c-32 -31 -70 -55 -111 -78l-22 16c18 11 35 24 48 39c9 11 17 23 17 37c0 20 -19 39 -36 55c-18 18 -34 36 -46 56c-9 15 -17 30 -17 47c0 20 9 39 20 57c16 24 35 46 59 64c52 39 122 68 195 68c49 0 98 -15 133 -45 c33 -28 57 -63 70 -101c22 22 44 43 68 63c50 43 112 80 185 80c25 0 53 -3 71 -19c11 -9 24 -36 36 -64c5 -13 14 -24 25 -34c6 -7 13 -13 23 -13c18 0 36 3 52 9'], + 0x1D57A: [726,29,976,11,881,'881 378c0 -86 -29 -170 -81 -244c-57 -51 -117 -88 -185 -121c-48 -23 -100 -42 -155 -42c-64 0 -126 18 -187 37c-41 13 -90 28 -125 28c-47 0 -86 -25 -116 -54l-21 22l89 110c35 8 70 17 95 38c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -31 50 -52 76 c-26 32 -50 74 -51 104c0 44 77 117 150 157l14 -14c-26 -18 -56 -42 -56 -77c0 -16 25 -67 47 -98c24 -32 40 -59 59 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -56 -62 -88 -83c22 0 41 -2 70 -9c58 -14 117 -31 173 -50c49 -17 82 -27 147 -27 c26 0 51 15 70 29c32 25 48 66 60 101c15 49 20 100 20 150c0 40 -5 81 -18 119c-11 30 -26 59 -52 81c-24 20 -56 29 -88 36c-46 10 -74 13 -122 13c-25 0 -47 -1 -68 -3c-15 -1 -30 -1 -44 -1c-46 0 -64 26 -64 36c0 24 4 35 35 60c18 13 52 45 62 58h25 c-6 -9 -11 -19 -11 -30c0 -9 10 -15 20 -17c12 -3 69 -5 103 -7c56 -3 112 -10 165 -24c40 -12 79 -27 109 -53c29 -24 45 -55 57 -87c15 -42 20 -86 20 -130'], + 0x1D57B: [685,223,977,19,944,'944 511c-45 -20 -89 -41 -126 -69c-15 -12 -29 -27 -29 -45c0 -32 18 -61 38 -88c23 -31 54 -74 54 -104c0 -24 -5 -48 -19 -69c-24 -35 -48 -63 -83 -94c-20 -18 -42 -36 -67 -47c-19 -9 -40 -15 -61 -15c-54 0 -109 18 -157 39c0 -54 5 -106 14 -160l-138 -82l-27 14 c12 35 16 70 20 105c5 52 7 106 7 158c-27 11 -60 22 -86 22c-37 0 -67 -18 -92 -40c-18 -15 -36 -30 -51 -48l-15 19c32 47 70 104 107 135c25 21 57 37 93 37c12 0 26 -1 43 -6v196c0 43 -6 87 -21 128c-12 33 -29 64 -57 88c-24 20 -53 34 -87 34c-38 0 -58 -12 -71 -22 c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35 c0 23 11 44 24 64c18 27 42 51 67 73c45 38 104 67 181 67c54 0 97 -17 134 -48c24 -20 48 -53 60 -80c42 36 88 71 140 94c39 17 81 30 124 30c21 0 43 -2 58 -15c15 -12 21 -42 24 -65c3 -20 11 -39 25 -56c10 -11 23 -22 40 -22c13 0 30 4 41 7zM794 109 c0 15 -8 34 -16 47c-12 21 -26 40 -42 59c-27 32 -57 76 -57 100c0 19 9 37 23 52c25 28 54 53 84 76c-19 3 -39 9 -48 17c-7 6 -23 22 -23 62c0 15 -2 30 -6 44c-3 10 -7 20 -15 27c-14 12 -32 19 -51 19c-37 0 -69 -17 -95 -39c-10 -9 -35 -33 -54 -55v-376l175 -63 c26 -9 50 -17 77 -17c12 0 24 4 32 11c12 10 16 22 16 36'], + 0x1D57C: [726,82,976,11,917,'917 -3c-53 -28 -107 -55 -163 -79c-60 22 -117 48 -169 83c-36 -17 -84 -30 -125 -30c-64 0 -126 18 -187 37c-41 13 -90 28 -125 28c-47 0 -86 -25 -116 -54l-21 22l89 110c35 8 70 17 95 38c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -31 50 -52 76 c-26 32 -50 74 -51 104c0 44 77 117 150 157l14 -14c-26 -18 -56 -42 -56 -77c0 -16 25 -67 47 -98c24 -32 40 -59 59 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -56 -62 -88 -83c22 0 41 -2 70 -9c58 -14 117 -31 173 -50c49 -17 82 -27 147 -27 c26 0 51 15 70 29c32 25 48 66 60 101c15 49 20 100 20 150c0 40 -5 81 -18 119c-11 30 -26 59 -52 81c-24 20 -56 29 -88 36c-46 10 -74 13 -122 13c-25 0 -47 -1 -68 -3c-15 -1 -30 -1 -44 -1c-46 0 -64 26 -64 36c0 24 4 35 35 60c18 13 52 45 62 58h25 c-6 -9 -11 -19 -11 -30c0 -9 10 -15 20 -17c12 -3 69 -5 103 -7c56 -3 112 -10 165 -24c40 -12 79 -27 109 -53c29 -24 45 -55 57 -87c15 -42 20 -86 20 -130c0 -86 -29 -170 -81 -244c-22 -24 -56 -48 -84 -68c20 -18 39 -33 63 -47c16 -8 33 -17 52 -17c29 0 58 7 86 16 v-21'], + 0x1D57D: [689,29,977,19,977,'977 72l-170 -101c-23 46 -57 92 -89 137c0 46 0 118 -3 139c-2 18 -9 45 -24 59c-20 16 -39 29 -66 34c-15 3 -31 4 -46 4c-20 0 -40 -7 -59 -15c-11 -68 -30 -118 -67 -179l-230 -178l-51 41c-10 8 -23 15 -36 15s-24 -3 -35 -9c-16 -9 -29 -22 -41 -37l-16 16 c45 53 113 126 158 126c21 0 34 -7 44 -14c19 -13 36 -28 52 -43c13 9 26 19 38 29c29 24 38 59 45 93c13 55 16 111 16 168c0 43 -6 86 -21 128c-13 33 -34 65 -64 91c-28 24 -62 43 -107 43c-29 0 -59 -12 -72 -22c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36 c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73 c45 38 109 71 187 71c63 0 109 -19 150 -54c26 -22 50 -52 61 -81c35 35 77 72 122 98c33 18 70 33 109 33c26 0 50 -7 68 -23c21 -17 25 -48 28 -74c3 -23 6 -53 21 -66c12 -10 29 -12 45 -12c11 0 26 1 37 5l6 -13c-93 -36 -146 -62 -210 -101c34 -4 73 -22 94 -45 c0 -58 1 -127 7 -163c4 -22 12 -45 25 -63c12 -16 24 -30 39 -43c7 -6 22 -6 34 -6c14 0 29 7 43 14zM778 458c-14 0 -30 6 -41 16c-14 13 -20 41 -23 64s-9 55 -21 65c-9 8 -20 15 -33 15c-29 0 -54 -14 -74 -31c-28 -25 -44 -43 -64 -73c3 -17 3 -47 3 -64 c0 -31 -1 -59 -3 -92c43 18 104 43 156 47'], + 0x1D57E: [685,31,978,82,906,'906 261c0 -69 -44 -129 -101 -177c-94 -80 -225 -115 -356 -115c-98 0 -192 32 -261 91c-76 64 -106 151 -106 252c0 100 45 184 126 253c78 65 164 91 287 120c44 -16 85 -37 128 -55c50 -21 110 -46 156 -46c25 0 46 7 64 22c17 14 24 28 33 47l25 -14 c-12 -31 -34 -59 -61 -82c-33 -28 -75 -47 -120 -58c-18 -4 -36 -9 -55 -9c-26 0 -49 12 -71 23l-131 67c-28 14 -58 30 -89 30c-35 0 -68 -14 -92 -34c-58 -49 -81 -118 -81 -187c0 -95 31 -192 112 -260c67 -57 158 -88 253 -88c79 0 159 18 215 66c28 24 41 58 41 91 c0 32 -16 63 -43 85c-36 31 -89 39 -139 39c-44 0 -86 -8 -128 -17c-42 -8 -111 -22 -125 -22c-33 0 -66 7 -89 27c-20 17 -28 40 -28 64c0 37 23 70 54 96c28 24 67 37 103 45l13 -14c-11 -4 -21 -12 -30 -19c-17 -14 -30 -33 -30 -53c0 -16 5 -31 18 -42 c18 -15 46 -15 70 -15c48 0 94 5 140 13c45 7 88 21 133 21c43 0 87 -10 118 -36c33 -29 47 -69 47 -109'], + 0x1D57F: [691,30,789,30,798,'798 659l-121 -118c-29 -9 -60 -13 -92 -13c-42 0 -98 8 -139 15c-32 -28 -48 -49 -48 -85c0 -16 8 -36 19 -49c15 -19 32 -39 50 -56c34 -32 82 -77 82 -106c0 -35 -69 -91 -116 -127c48 -19 117 -46 155 -46c19 0 38 6 55 14c28 11 52 27 76 43l11 -24 c-55 -50 -117 -95 -181 -137c-53 0 -103 18 -150 38c-39 16 -85 34 -123 34c-18 0 -37 0 -51 -5c-36 -13 -59 -30 -88 -52l-12 18c57 51 119 97 191 132c30 0 62 -1 91 -8c18 15 29 33 29 55c0 24 -42 66 -72 94c-19 18 -37 37 -53 57c-11 14 -20 29 -25 45 c32 63 76 122 134 171c-75 14 -191 37 -224 37c-27 0 -62 -3 -81 -19c-13 -11 -18 -27 -18 -41c0 -39 35 -68 72 -89l2 -10l-83 -68c-32 25 -58 58 -58 96c0 51 31 98 73 135c63 53 144 90 234 90c37 0 124 -14 185 -25c49 -7 99 -14 150 -14c46 0 94 23 126 50v-32'], + 0x1D580: [689,39,850,16,871,'871 72l-200 -111l-71 123l-127 -105c-19 -11 -41 -13 -55 -13c-45 0 -89 14 -129 30c-52 21 -116 42 -165 42c-18 0 -44 -8 -90 -50l-18 20l106 109c32 5 71 15 87 25c18 11 51 38 61 65c3 11 4 26 4 37c0 20 -6 40 -15 60c-11 27 -27 53 -44 78c-26 39 -59 90 -59 122 c0 7 0 16 2 22c15 25 63 80 104 114c21 18 45 34 71 49l23 -16c-16 -10 -31 -22 -46 -34c-17 -14 -30 -32 -30 -53c0 -37 16 -73 35 -107c23 -40 41 -83 50 -127c4 -17 6 -34 6 -51c0 -18 -2 -35 -8 -52c-38 -42 -95 -103 -125 -121c26 -4 94 -26 136 -41 c36 -13 79 -24 113 -24c31 0 55 18 77 36c14 13 22 30 23 47c4 67 7 134 7 201c0 82 -5 164 -13 246c67 24 128 57 187 92l17 -15l-25 -24c-25 -26 -34 -60 -38 -93c-7 -58 -8 -115 -8 -173c0 -61 1 -121 5 -182c1 -18 2 -22 15 -52c9 -21 22 -44 36 -59c7 -9 19 -13 33 -13 s43 10 64 18'], + 0x1D581: [687,29,981,25,966,'966 604c-18 -10 -34 -22 -49 -35c-37 -31 -72 -69 -72 -115c0 -27 0 -58 5 -81l17 -95c4 -22 7 -45 7 -68c0 -46 -16 -88 -56 -120c-47 -39 -106 -82 -126 -93c-27 -15 -56 -26 -90 -26c-26 0 -51 8 -76 16c-40 13 -78 29 -116 46c-33 15 -66 29 -101 40 c-22 7 -44 13 -67 13s-45 -7 -65 -16c-28 -12 -54 -28 -77 -46l-13 18c50 42 109 82 166 121c30 7 55 22 77 40c20 17 29 41 35 65c10 36 13 74 13 111c0 42 -5 84 -19 124c-11 31 -27 61 -54 84c-25 21 -54 37 -93 37c-30 0 -60 -17 -73 -27c-15 -13 -22 -30 -22 -49 c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64 c18 27 42 51 67 73c45 38 109 69 187 69c52 0 93 -13 126 -41c32 -27 57 -69 66 -107c42 40 87 81 137 111c29 17 60 35 94 35c17 0 34 -5 50 -10c22 -8 43 -19 63 -31s49 -29 64 -29c21 0 41 3 61 14zM832 527c-40 0 -76 16 -109 35c-28 17 -62 36 -93 36 c-22 0 -40 -14 -55 -27c-28 -22 -50 -49 -70 -76c1 -14 2 -29 2 -43c0 -65 -12 -130 -45 -190l-117 -88c41 -1 143 -46 213 -75c47 -20 105 -44 148 -44c13 0 29 4 38 12c10 8 13 22 13 34c0 17 -2 38 -5 56l-23 129c-4 21 -4 41 -4 62c0 29 0 71 12 86c27 31 62 63 95 93'], + 0x1D582: [682,30,1235,31,1240,'1240 628l-1 -25c-36 -26 -83 -61 -112 -98c-18 -22 -24 -47 -24 -74c0 -23 10 -62 18 -93c11 -42 21 -81 21 -124c0 -22 -2 -43 -7 -65c-4 -15 -9 -29 -20 -41l-181 -123c-24 -8 -48 -13 -73 -13c-35 0 -75 14 -110 25c-58 19 -116 35 -177 42c-42 -19 -87 -42 -126 -64 c-10 -4 -22 -5 -35 -5c-52 0 -100 20 -145 43c-32 16 -67 32 -99 32c-21 0 -40 -6 -57 -15c-24 -11 -45 -27 -65 -44l-13 22c51 48 109 90 167 132c54 0 90 14 122 41c27 23 42 53 53 84c14 42 18 86 18 129c0 67 -15 136 -72 184c-27 24 -60 39 -103 39 c-29 0 -61 -10 -74 -20c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67 c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 109 64 185 64c63 0 111 -19 151 -53c24 -20 41 -46 52 -73c64 45 111 76 178 114c35 -19 60 -48 101 -110c37 32 78 65 122 91c28 15 56 31 90 31c37 0 70 -16 101 -33 c30 -16 62 -33 98 -33c11 0 30 7 40 12zM699 349c0 42 -3 85 -14 126c-8 28 -18 55 -42 76c-15 12 -32 22 -50 31c-30 -18 -53 -36 -74 -53c3 -14 4 -48 4 -62c0 -93 -22 -185 -88 -261l-135 -75c16 -5 67 -26 99 -42c36 -18 76 -34 119 -34c7 0 14 2 21 5 c31 14 67 30 87 50c27 27 48 57 58 91c15 50 15 96 15 148zM1104 527c-2 -1 -14 -1 -24 -1c-23 0 -64 20 -81 33c-21 16 -70 28 -89 28c-20 0 -42 -3 -59 -12c-21 -13 -35 -25 -51 -43c9 -36 14 -81 14 -118c0 -70 -20 -137 -50 -202c-28 -37 -50 -62 -76 -82 c48 0 138 -32 200 -54c28 -10 57 -20 88 -20c13 0 25 6 34 12c12 8 17 21 17 52c0 34 -13 96 -25 140c-12 41 -20 81 -20 120c0 19 2 42 54 86'], + 0x1D583: [682,35,849,32,835,'835 578l-131 -64c-48 17 -83 50 -109 87c-76 -58 -106 -93 -106 -235c65 0 146 0 194 4l-64 -58c-43 3 -109 3 -135 3c0 -79 20 -160 87 -217c30 -26 73 -38 116 -38c32 0 75 16 110 30v-24c-46 -27 -89 -59 -132 -91c-23 -7 -61 -10 -64 -10c-41 0 -80 14 -109 38 c-18 15 -31 34 -43 52c-16 27 -29 56 -40 84c-58 -54 -120 -106 -193 -146c-20 -11 -48 -25 -64 -25c-31 0 -82 30 -120 53l81 81c17 -15 36 -29 58 -39c15 -8 32 -14 51 -14c14 0 28 4 40 10c18 9 34 21 49 33c26 23 39 56 48 86c13 45 17 91 17 137c-70 0 -157 0 -209 -3 l65 56l146 -2c0 38 -2 77 -12 115c-7 24 -17 46 -38 64s-47 33 -77 33c-37 0 -68 -11 -93 -33l-41 -37l-18 20c53 54 112 104 173 152c51 -5 102 -17 139 -48c34 -29 60 -66 65 -107c25 30 54 57 84 83c39 33 87 57 139 74c14 -30 29 -60 56 -82c10 -9 25 -10 39 -10 s30 4 41 7v-19'], + 0x1D584: [689,214,983,32,879,'879 339c0 -123 -27 -246 -82 -360c-51 -56 -111 -105 -183 -142c-59 -30 -125 -51 -194 -51c-61 0 -121 17 -164 53l50 97l15 -2c9 -25 21 -50 43 -69c27 -23 66 -31 103 -31c60 0 119 16 162 52c49 42 72 98 89 154c25 82 31 166 31 251c0 53 -2 107 -14 159 c-7 31 -16 63 -40 86c-21 20 -49 31 -80 31c-20 0 -50 -6 -67 -17c-21 -13 -30 -20 -44 -38c4 -18 6 -48 6 -66c0 -77 -12 -151 -59 -217c-46 -34 -100 -70 -144 -96c10 -1 68 -21 98 -34c27 -12 58 -20 87 -20c17 0 32 8 46 15c24 12 45 27 66 43l6 -21 c-46 -55 -97 -107 -164 -143c-58 9 -113 32 -165 57c-27 13 -64 20 -91 20c-23 0 -46 -7 -66 -17c-27 -13 -50 -31 -72 -50l-19 19c50 50 100 100 160 142c14 3 26 4 39 4s27 -1 43 -2c18 9 40 21 58 36c23 21 30 49 37 77c10 46 13 93 13 139c0 69 -23 138 -81 187 c-23 20 -49 37 -85 37c-31 0 -58 -15 -71 -25c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41 c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 111 65 189 65c52 0 92 -17 125 -45c27 -23 45 -62 57 -96c41 32 84 62 129 91c32 20 65 40 101 56c35 -40 81 -71 131 -95c12 -85 24 -172 24 -255'], + 0x1D585: [718,137,726,17,633,'633 232c0 -55 -8 -111 -28 -164c-17 -43 -42 -84 -80 -117c-67 -56 -157 -88 -251 -88c-36 0 -81 0 -109 2c-14 2 -34 5 -34 20l1 51c0 11 -4 22 -13 29c-7 7 -17 11 -28 11c-23 0 -45 -9 -64 -20l-10 15c30 22 64 41 100 56c28 11 58 19 89 19c16 0 33 -3 44 -12 c13 -12 14 -37 14 -49c0 -11 -1 -22 -3 -32c-3 -13 -3 -28 -3 -41c0 -10 11 -16 21 -19c6 -2 14 -3 22 -3c45 0 87 16 118 43c28 23 42 60 52 92c15 42 19 87 19 131c0 29 -3 76 -27 96c-35 29 -85 37 -133 37c-36 0 -72 -8 -107 -17l-17 13l56 81c49 9 92 32 127 61 c32 27 43 64 43 101c0 9 -2 18 -10 25c-17 14 -41 18 -64 18c-30 0 -60 -2 -89 -5l-95 -11c-23 0 -45 7 -62 21c-6 5 -12 20 -15 33c27 37 67 84 92 108l18 1c-3 -6 -4 -13 -4 -20c0 -8 3 -17 11 -24c10 -8 25 -10 39 -10l177 6c36 0 74 -5 100 -27c14 -12 24 -28 24 -46 c0 -62 -43 -115 -94 -159c-26 -22 -68 -46 -100 -62c102 0 190 -4 250 -66c14 -14 23 -62 23 -78'], + 0x1D586: [472,32,602,80,587,'587 82l-145 -111c-20 30 -44 58 -72 83l-1 26l-186 -112c-39 32 -72 68 -102 105c-1 20 -1 39 -1 59c0 79 7 157 20 235c69 30 134 67 197 105c40 -16 83 -25 126 -32l66 28l8 -7c-17 -66 -17 -133 -17 -200l3 -118l52 -63c11 0 32 12 47 20zM368 110l-2 256 c-49 0 -98 11 -145 23c-16 -24 -27 -61 -27 -153c0 -32 2 -65 4 -98c25 -25 52 -52 81 -72c14 0 63 27 89 44'], + 0x1D587: [691,32,589,86,504,'504 314c0 -73 -5 -146 -19 -218c-87 -48 -175 -94 -271 -128c-46 32 -90 65 -128 103c13 112 13 227 13 340c0 85 -3 171 -13 255l20 8l25 -78c54 34 113 71 167 95l16 -13c-27 -19 -45 -36 -67 -58c-13 -13 -22 -30 -27 -47c-8 -26 -9 -52 -9 -78v-107l9 -4l142 90 c35 -17 92 -41 139 -60c2 -33 3 -67 3 -100zM386 252c0 32 -2 63 -6 95c-40 20 -65 29 -95 37c-22 -4 -55 -23 -72 -36l1 -216c21 -18 47 -40 74 -55c19 -11 39 -20 61 -23c20 40 29 83 33 126c3 25 4 49 4 72'], + 0x1D588: [473,26,463,87,424,'424 429l-78 -96h-10c-47 42 -90 57 -114 63c-13 -19 -17 -96 -17 -126c0 -38 3 -78 6 -116c32 -29 64 -57 101 -82l106 42v-21c-63 -41 -168 -104 -197 -119c-47 34 -90 73 -130 114c-3 42 -4 87 -4 130c0 53 3 104 13 148l195 107c46 -8 90 -22 129 -44'], + 0x1D589: [632,29,588,-1,511,'511 368c0 -88 -14 -176 -44 -260c-49 -40 -140 -93 -213 -137c-59 33 -115 71 -165 114c-3 18 -4 45 -4 78c0 46 2 106 7 172c47 43 111 89 165 124l22 -10c-20 -15 -46 -41 -65 -60c-10 -48 -11 -88 -11 -135c0 -35 2 -71 5 -106c39 -34 85 -62 135 -82 c24 40 50 109 50 243c0 34 -2 68 -5 102c-50 40 -103 78 -163 109c-37 20 -78 38 -122 38c-30 0 -63 -9 -90 -20l-14 19c56 30 117 53 178 75c54 -2 99 -24 146 -49c58 -31 126 -71 181 -108c5 -36 7 -72 7 -107'], + 0x1D58A: [471,28,471,80,429,'429 362c-61 -51 -160 -122 -241 -181c0 0 6 -38 18 -45c26 -20 53 -38 101 -68c31 5 75 23 110 40l9 -16c-64 -41 -129 -82 -197 -120c-53 34 -100 73 -144 114c-3 36 -5 72 -5 108c0 59 5 118 14 176l192 101c45 -38 91 -76 143 -109zM324 316c-39 24 -102 71 -117 83 c-15 -69 -21 -114 -21 -185c45 31 96 67 138 102'], + 0x1D58B: [681,242,387,37,387,'387 398l-16 -39h-121c0 -117 0 -236 -19 -347c-3 -15 -10 -32 -18 -46l-113 -208l-20 4c14 34 40 97 45 131c6 38 9 83 9 125v341h-97v8l15 38h73c-13 40 -17 75 -25 115c13 48 34 92 75 127c27 23 65 34 102 34c15 0 31 -5 43 -12c20 -10 37 -23 53 -38l-73 -82h-16 c-11 17 -20 30 -37 43c-11 9 -26 19 -41 19c-14 0 -28 -2 -39 -11c-11 -10 -17 -25 -17 -39c0 -33 26 -61 53 -85c14 -13 27 -26 37 -41c7 -11 9 -16 13 -30h134v-7'], + 0x1D58C: [473,208,594,16,541,'414 -74c0 37 -18 106 -32 157l-198 -133c55 -30 138 -75 177 -75c16 0 33 1 44 11c9 7 9 26 9 40zM541 -22c-61 -66 -128 -128 -202 -184c-10 -1 -21 -2 -31 -2c-32 0 -64 6 -94 14c-51 15 -99 39 -142 65l-38 -24l-18 15l169 115l-93 93c-3 38 -6 77 -6 115 c0 61 6 121 22 181c64 38 129 75 197 107c41 -19 90 -41 128 -47l86 39l13 -4c-15 -30 -22 -62 -27 -94c-7 -45 -9 -90 -9 -135c0 -86 32 -169 45 -254zM388 343c-57 8 -120 35 -162 57c-11 -52 -17 -112 -17 -166c0 -34 2 -68 6 -102c25 -25 55 -54 90 -70l78 49v66 c0 56 2 111 5 166'], + 0x1D58D: [687,203,615,88,507,'507 271l-3 -121c-3 -61 -7 -122 -20 -181c-49 -57 -116 -117 -192 -172l-24 14c22 15 50 39 73 61c18 17 28 44 35 68c9 33 18 87 18 175c0 74 -6 148 -12 222c-32 17 -74 35 -110 42l-54 -32c-3 -39 -5 -78 -5 -117c0 -34 1 -68 5 -102c16 -24 34 -46 54 -68 c-42 -24 -80 -54 -116 -84c-19 30 -42 59 -68 86c9 123 16 246 16 370c0 77 -3 155 -10 232l19 9l24 -76c51 31 107 65 155 90l18 -15c-12 -7 -23 -14 -34 -23c-45 -37 -56 -90 -56 -142l-2 -130c51 28 99 62 144 94c45 -23 93 -43 142 -61'], + 0x1D58E: [686,26,331,2,327,'327 87c-57 -34 -110 -74 -162 -113l-73 82c7 58 10 117 10 176c0 45 -2 89 -5 134l-38 21l-39 -17l-18 12c47 31 93 61 136 96c13 -10 54 -38 82 -56c-3 -56 -5 -112 -5 -169l3 -115c0 -10 5 -20 12 -29c8 -11 20 -27 31 -27c5 0 15 3 17 4l44 19zM242 615l-80 -75 c-32 22 -62 47 -89 73l91 73c23 -25 50 -50 78 -71'], + 0x1D58F: [683,207,331,-19,238,'238 256c0 -95 -6 -191 -25 -285c-62 -61 -142 -127 -216 -178l-16 18c34 21 70 46 95 71c27 27 37 64 40 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -4 30 -16 41c-8 7 -19 12 -31 12l-38 -17l-15 19l130 101c28 -21 55 -39 85 -58c3 -56 5 -112 5 -169zM235 614 l-81 -73c-28 22 -56 44 -80 70l81 72c10 -10 53 -46 80 -69'], + 0x1D590: [683,25,464,33,432,'432 90l-198 -115l-129 96c2 15 3 29 4 44l5 193h-81l14 38h68c0 107 0 244 -11 319l21 8l27 -76c45 34 97 62 150 86l15 -16c-26 -14 -41 -26 -57 -47c-11 -15 -20 -31 -23 -48c-6 -23 -7 -49 -7 -73c41 29 95 64 138 86c16 -19 32 -39 44 -60c8 -14 13 -25 13 -41 c0 -21 -15 -38 -30 -54l-82 -84h96l-17 -38h-166c0 -55 1 -118 7 -172l90 -68c10 0 69 25 100 41zM336 435c0 30 -20 60 -41 83c-16 -10 -32 -21 -43 -34c-12 -15 -16 -35 -18 -52c-3 -28 -4 -57 -4 -86h32c16 0 36 19 49 33c16 17 25 36 25 56'], + 0x1D591: [682,24,336,100,315,'315 86l-151 -110l-64 79c8 73 11 162 11 257l-8 349l19 4l20 -72c47 32 100 63 153 89l11 -9c-14 -10 -30 -26 -39 -35c-17 -17 -26 -34 -32 -56c-8 -31 -11 -63 -11 -95l-2 -157c0 -76 2 -151 9 -218l26 -29c9 0 32 9 49 18'], + 0x1D592: [476,31,921,16,900,'900 78c-58 -33 -112 -70 -165 -108c-22 31 -47 61 -75 89c11 34 14 92 14 154l-3 131c-30 13 -75 30 -107 38l-55 -34c-3 -39 -4 -76 -4 -115l2 -102l57 -73l-120 -86l-59 81c8 43 10 99 10 157l-2 136c-25 11 -75 24 -105 31l-61 -34v-65c0 -51 2 -102 5 -152l55 -74 l-114 -83c-21 31 -43 63 -66 90c6 45 8 95 8 146l-4 152l-36 27l-46 -19l-13 13l135 98c23 -21 49 -40 78 -56c-2 -17 -4 -51 -4 -51c54 30 104 64 150 103c45 -21 90 -43 139 -56l-3 -40l147 95c47 -21 95 -39 144 -53c-10 -56 -14 -112 -14 -168c0 -42 2 -84 5 -126 l28 -38c4 -4 11 -9 17 -9c0 0 11 3 15 5l34 18'], + 0x1D593: [474,28,653,3,608,'608 88c-52 -32 -104 -74 -153 -114c-22 32 -52 64 -80 94c9 48 12 99 12 151c0 42 -2 84 -4 126c-31 15 -74 27 -108 36l-62 -31l1 -221l61 -67l-112 -90c-24 26 -49 53 -78 76c8 25 10 69 10 120c0 64 -4 139 -7 198l-24 22l-43 -21l-18 14l130 93 c26 -18 55 -38 82 -50c-1 -16 -1 -48 -1 -48c53 29 103 62 151 98c41 -22 96 -44 147 -63c-8 -70 -11 -140 -11 -211l1 -68l47 -52c10 3 35 15 51 24'], + 0x1D594: [482,34,609,107,515,'515 337c0 -39 -1 -77 -4 -116c-3 -44 -8 -89 -21 -132c-73 -48 -153 -89 -236 -123c-52 30 -101 62 -146 99c-1 20 -1 39 -1 59c0 80 8 159 22 238c71 38 140 78 207 120c54 -33 115 -56 178 -72zM405 272c0 27 -2 55 -4 82c-51 7 -99 24 -145 43 c-15 -25 -31 -79 -31 -159c0 -35 3 -71 7 -107c42 -33 90 -62 145 -76c19 71 28 144 28 217'], + 0x1D595: [558,208,603,-2,519,'519 310c0 -85 -7 -143 -30 -226c-55 -29 -105 -65 -152 -103c-29 22 -65 36 -104 41c0 -61 4 -122 9 -183l-113 -47l-17 6l6 234c-41 0 -78 -18 -108 -41l-12 17c36 33 83 77 119 89v262c-23 21 -45 51 -52 78c30 44 68 83 108 121l20 -6c-10 -13 -19 -27 -19 -42 c0 -14 7 -26 15 -37c12 -17 27 -32 44 -45v-42l143 96l135 -57c5 -26 8 -87 8 -115zM404 202c0 50 -4 100 -10 147c-33 14 -76 32 -111 42l-50 -35v-226c54 -8 109 -25 157 -53c11 42 14 80 14 125'], + 0x1D596: [485,212,595,87,515,'515 479c-30 -103 -30 -291 -30 -438c0 -71 4 -141 9 -212l-113 -41l-19 10c12 93 14 187 14 280l-188 -108l-98 103c-2 22 -3 44 -3 67c0 77 11 155 27 232l194 106c40 -16 82 -29 125 -36l70 43zM378 358c-55 4 -114 23 -144 39c-16 -29 -28 -92 -28 -187 c0 -20 1 -41 1 -62c21 -28 48 -61 76 -83c30 11 62 29 90 45c0 83 0 173 5 248'], + 0x1D597: [473,26,459,12,453,'453 394c-28 -26 -66 -51 -102 -74c-3 -2 -6 -4 -12 -4c-15 0 -23 6 -38 18l-46 39c-5 -3 -14 -10 -18 -14c-2 -18 -4 -73 -4 -123l2 -89c1 -11 8 -21 16 -29l62 -48l89 31l1 -21l-173 -106c-38 37 -81 70 -125 102c12 43 13 111 13 146c0 44 -1 74 -4 118 c-15 15 -29 29 -47 40l-44 -12l-11 14l139 91l85 -62v-31l107 91c16 -23 32 -49 52 -66c6 -5 14 -7 22 -7c9 0 25 5 36 9v-13'], + 0x1D598: [480,35,522,-24,482,'482 442l-143 -100c-18 0 -41 9 -60 17c-29 14 -56 31 -82 49c-5 -23 -9 -46 -9 -69c0 -33 9 -70 28 -100c51 17 104 40 155 63c22 -10 43 -22 62 -36c5 -33 9 -67 9 -101c0 -41 -5 -82 -19 -121c-67 -23 -134 -48 -196 -79c-25 21 -52 41 -83 56c-22 11 -45 20 -71 20 c-32 0 -61 -15 -86 -31l-11 16l126 99c17 4 34 6 52 6c39 0 116 -55 165 -93c4 23 5 50 5 74c0 27 -2 55 -5 83c-15 15 -33 30 -57 30c-16 0 -30 -5 -44 -11l-95 -47c-15 13 -29 33 -41 51c-4 6 -5 13 -5 20v139l187 103l66 -38c17 -10 37 -14 57 -14c24 0 60 17 84 33'], + 0x1D599: [654,27,393,47,407,'407 84l-178 -111c-32 32 -67 61 -106 87c6 74 6 200 6 299h-82v8l15 38h67v148l166 101l12 -14c-20 -16 -40 -34 -47 -42c-9 -9 -14 -118 -14 -193h107v-7l-16 -39h-92c0 -75 0 -149 5 -223c1 -7 3 -14 8 -19c17 -20 47 -39 70 -44c8 1 53 20 75 31'], + 0x1D59A: [473,35,588,9,604,'604 88l-159 -120l-64 105c-62 -25 -125 -73 -163 -108c-42 32 -105 60 -151 77c16 23 27 47 35 73c10 36 17 73 17 109c0 45 -9 88 -19 132c-11 12 -23 23 -42 28l-35 -19l-14 14l134 94c3 -3 52 -40 78 -59l4 -155c0 -31 -3 -62 -9 -93c-5 -21 -12 -43 -26 -62 c33 -7 79 -26 117 -42l67 36l-4 326l121 44l14 -9c-15 -100 -17 -200 -17 -301c0 -9 14 -54 37 -74c0 0 7 -5 11 -5c0 0 10 1 12 2l50 20'], + 0x1D59B: [546,28,604,56,507,'507 316c0 -36 -1 -72 -5 -108c-5 -44 -11 -88 -33 -128l-253 -108c-35 36 -76 67 -121 94c9 37 9 97 9 146c0 46 -3 96 -6 143c-19 21 -42 47 -42 67c0 34 59 87 101 124l20 -4c-11 -12 -18 -27 -18 -42c0 -21 36 -58 62 -84l-2 -29l146 89l139 -61c2 -33 3 -66 3 -99z M389 263c0 28 -1 57 -3 86c-31 16 -87 40 -98 40c-24 0 -51 -16 -69 -28v-209c0 -6 0 -14 2 -19c3 -7 9 -13 16 -19c23 -19 58 -38 92 -55c3 -1 10 -3 14 -3c3 0 14 2 17 11c22 64 29 129 29 196'], + 0x1D59C: [549,33,917,55,815,'815 409c-1 -75 -2 -150 -13 -225c-6 -44 -15 -89 -39 -128c-71 -27 -140 -55 -206 -89c-32 20 -65 39 -99 55c-25 12 -51 22 -79 29c10 35 12 111 12 186l-1 95c-28 20 -90 50 -97 50c-13 0 -43 -11 -67 -27c-2 -28 -3 -57 -3 -85c0 -52 3 -104 7 -157l51 -63l-109 -80 c-25 32 -56 71 -82 89c11 29 19 86 19 157c0 46 -3 93 -6 140l-37 39c-8 9 -11 22 -11 33c0 4 1 8 4 11c30 38 65 80 100 110l16 -2c-10 -14 -15 -31 -15 -47c0 -21 40 -57 68 -81v-37c38 22 92 59 137 89c46 -26 95 -48 146 -67v-34l168 100c43 -23 89 -43 136 -61z M697 336c-33 17 -96 42 -106 42c-11 0 -54 -18 -77 -33c-4 -41 -6 -83 -6 -124l2 -68c1 -12 6 -25 18 -32c34 -22 70 -41 110 -57c2 -1 8 -3 11 -3c0 0 10 4 15 17c14 34 21 69 25 104c7 51 8 102 8 154'], + 0x1D59D: [471,188,458,8,449,'449 388l-79 -75c-10 2 -20 4 -28 9c-22 14 -56 43 -61 48c-3 -2 -21 -18 -25 -24c-4 -24 -6 -49 -6 -85c0 -43 0 -97 3 -129c0 0 2 -6 3 -8c4 -7 23 -20 78 -56c12 0 56 18 87 32l2 -18l-179 -111l-91 73c-19 -3 -33 -15 -46 -27c-17 -15 -24 -35 -24 -55 c0 -13 6 -26 17 -36c35 -31 86 -40 136 -48l2 -11l-93 -55c-29 7 -58 17 -84 31c-18 10 -36 23 -46 40c-5 8 -7 17 -7 26c0 10 2 20 5 30c34 46 70 92 115 131c6 43 6 92 6 138c0 44 -1 88 -5 131c0 7 -6 16 -9 18l-46 24c-9 0 -30 -10 -39 -16l-16 12c46 33 107 77 142 94 l92 -58v-36l112 91c23 -31 52 -62 84 -80'], + 0x1D59E: [559,222,589,60,515,'515 289c0 -88 -5 -170 -12 -250c0 -40 -29 -73 -57 -105c-30 -34 -62 -68 -100 -98c-28 -22 -67 -43 -97 -58l-30 25c33 16 82 41 91 48c23 19 39 39 48 66c7 19 14 43 18 63c12 67 15 134 15 202c0 52 -3 104 -7 156c-29 18 -61 34 -96 43l-59 -25v-215 c0 -11 0 -24 8 -33l44 -55l-95 -92c-26 31 -68 78 -95 99c18 57 18 196 18 295c0 4 -2 10 -4 12c-20 19 -45 44 -45 65c0 14 9 27 18 39c17 22 56 60 85 88l18 -6c-10 -15 -17 -29 -17 -46c0 -13 12 -30 22 -42c15 -17 27 -27 45 -39v-41l140 93c45 -25 92 -47 141 -66'], + 0x1D59F: [472,215,461,-8,377,'377 74c0 -60 -12 -117 -31 -177l-156 -112c-55 0 -113 6 -153 40c-20 17 -35 38 -45 60c68 98 151 188 250 264c-33 23 -89 32 -133 35l-1 10l92 65c17 12 35 27 35 47c0 17 -17 40 -33 50c-18 11 -29 15 -51 15c-13 0 -25 -5 -37 -10c-18 -8 -34 -19 -49 -30l-16 15 c53 47 112 88 173 126c28 -10 54 -22 75 -40c22 -19 41 -40 41 -67c0 -12 -18 -29 -32 -42l-64 -59c42 -13 81 -30 119 -50c11 -46 16 -93 16 -140zM259 -4c0 33 -2 74 -7 124c-61 -50 -150 -123 -150 -166c0 -20 12 -36 29 -49c51 -38 99 -39 108 -39c6 13 20 44 20 130'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Latin/Regular/Main.js new file mode 100644 index 0000000..f8e767c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Latin/Regular/Main.js @@ -0,0 +1,298 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'GyrePagellaMathJax_Latin', + id: 'GYREPAGELLALATIN', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xA1: [454,245,278,81,197,'197 396c0 -30 -27 -58 -57 -58c-31 0 -59 28 -59 58c0 31 28 58 60 58c29 0 56 -28 56 -58zM193 -207l-75 -38h-34v25c0 22 2 54 7 95l29 326v25l28 23l10 -5l2 -40'], + 0xA2: [562,101,500,61,448,'448 53l-20 -33c-51 -24 -92 -34 -145 -34c-22 0 -37 1 -62 5l-28 -92h-41l32 104c-42 22 -62 39 -84 71c-25 37 -39 89 -39 148c0 95 34 160 102 194l80 40c18 9 44 14 82 14l27 92h40l-27 -92c26 -1 53 -10 80 -26c-8 -49 -11 -84 -11 -130h-28l-9 66 c-13 14 -25 21 -50 31l-106 -353c30 -16 53 -22 85 -22c34 0 64 8 113 28zM309 419c-25 4 -32 5 -39 5c-76 0 -120 -64 -120 -173c0 -34 5 -66 14 -95c10 -32 19 -46 44 -72'], + 0xA4: [531,-96,500,30,470,'470 141l-45 -45l-48 48c-38 -30 -74 -42 -127 -42c-54 0 -90 12 -127 42l-48 -48l-45 45l49 49c-30 38 -42 72 -42 123c0 52 12 88 42 122l-49 49l47 47l48 -48c37 28 77 41 125 41s87 -13 125 -41l48 48l47 -47l-49 -49c30 -34 42 -70 42 -122c0 -50 -12 -85 -42 -123z M404 314c0 83 -70 151 -156 151c-83 0 -152 -70 -152 -152c0 -84 69 -152 154 -152s154 68 154 153'], + 0xA6: [726,184,606,275,331,'331 362h-56v364h56v-364zM331 -184h-56v364h56v-364'], + 0xA9: [668,19,747,31,718,'718 324c0 -190 -154 -343 -344 -343s-343 153 -343 343s153 344 343 344s344 -154 344 -344zM678 324c0 168 -136 304 -304 304s-303 -136 -303 -304s135 -303 303 -303s304 135 304 303zM571 185l-19 -31c-41 -20 -86 -30 -136 -30c-142 0 -239 80 -239 198 c0 74 37 131 105 168c41 22 91 33 144 33c45 0 89 -7 141 -23c-9 -39 -11 -59 -12 -89h-26v43c0 20 -58 38 -113 38c-98 0 -162 -64 -162 -159c0 -103 73 -171 185 -171c45 0 86 11 122 33'], + 0xAA: [709,-361,333,24,310,'310 426c-11 1 -22 1 -25 2c-12 1 -21 1 -24 1l-27 -1c-9 0 -17 -1 -17 -1l-6 -1l3 51l-81 -52c-14 -2 -22 -3 -32 -3c-47 0 -77 27 -77 71c0 53 39 83 126 97l64 10c-1 54 -27 77 -88 77c-28 0 -33 -3 -44 -21l-3 -5l-3 -6l-9 -19l-17 4v39l35 20c23 13 49 20 76 20 c44 0 74 -13 92 -39c10 -15 13 -28 13 -80v-102c0 -38 3 -44 24 -44h20v-18zM214 502v79c-99 -12 -134 -33 -134 -78c0 -27 22 -47 50 -47c18 0 50 13 63 26zM310 361h-286v34h286v-34'], + 0xAB: [428,-71,500,50,450,'249 86l-23 -15l-176 171v12l176 174l23 -13l-119 -167zM450 86l-23 -15l-176 171v12l176 174l23 -13l-119 -167'], + 0xB6: [695,150,628,39,589,'589 -150l-202 3l-202 -3v30l42 3c45 3 53 16 53 90v372c-73 5 -117 20 -166 57s-75 85 -75 140c0 90 73 157 178 153l59 -2l145 -4c55 0 97 1 168 5v-30l-32 -3c-52 -5 -63 -20 -63 -87v-601c0 -74 8 -87 53 -90l42 -3v-30zM280 382v273c-6 1 -12 1 -15 1 c-66 0 -115 -55 -115 -130c0 -74 46 -125 130 -144zM421 -120v775h-68v-775h68'], + 0xB8: [10,225,333,96,304,'304 -141c0 -52 -48 -84 -124 -84c-27 0 -41 3 -84 16l14 31c33 -9 47 -11 65 -11c35 0 54 15 54 43c0 23 -16 39 -40 39c-13 0 -22 -2 -41 -7l-7 6l42 118h34l-25 -85c10 3 17 4 27 4c52 0 85 -27 85 -70'], + 0xBA: [709,-355,333,10,323,'323 567c0 -84 -73 -151 -166 -151c-88 0 -147 57 -147 142c0 89 66 151 163 151c88 0 150 -59 150 -142zM263 551c0 78 -45 138 -104 138c-57 0 -89 -39 -89 -110c0 -84 42 -143 103 -143c54 0 90 46 90 115zM323 355h-313v34h313v-34'], + 0xBB: [428,-71,500,50,450,'450 242l-176 -171l-23 15l119 162l-119 167l23 13l176 -174v-12zM249 242l-176 -171l-23 15l119 162l-119 167l23 13l176 -174v-12'], + 0xBF: [454,245,444,49,401,'401 -97l-38 -113c-53 -26 -88 -35 -132 -35c-103 0 -182 67 -182 154c0 57 25 96 110 174c81 73 94 90 94 123c0 16 -6 29 -22 48l21 14c30 -19 44 -43 44 -73c0 -34 -16 -61 -77 -128c-59 -65 -77 -97 -77 -137c0 -64 51 -109 123 -109c45 0 76 15 87 42l20 48z M303 396c0 -30 -27 -58 -57 -58c-31 0 -59 28 -59 58c0 31 28 58 60 58c29 0 56 -28 56 -58'], + 0xC0: [888,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM497 749h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26'], + 0xC1: [888,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM529 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0xC2: [887,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM560 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0xC3: [872,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM558 872c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0xC4: [869,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM343 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM542 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xC5: [939,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM493 839c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM455 839c0 38 -25 64 -61 64c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0xC6: [692,3,944,-10,908,'908 164c-10 -52 -16 -106 -16 -164l-168 -3l-247 3c-23 0 -46 -1 -69 -3v23l28 16c19 11 26 32 26 84v122l-123 3l-121 -3l-64 -114c-24 -43 -28 -54 -28 -69c0 -16 18 -26 53 -29l36 -3v-30c-33 2 -65 3 -98 3l-127 -3v30l34 5c14 2 33 21 52 55l289 512 c12 21 19 39 19 47c0 7 -13 10 -54 13l-44 3v30l257 -3l226 3l123 -3c-11 -44 -16 -92 -16 -152h-35v65c0 22 -3 27 -27 34c-32 8 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 104 -4 158 -4c44 0 69 4 72 38l5 52h30l-3 -116l3 -111h-30l-5 59c-3 33 -28 37 -73 37 l-157 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c19 6 30 51 38 113h35zM462 283v372h-12l-208 -372h220'], + 0xC7: [709,225,709,22,670,'670 84l-28 -50c-69 -36 -144 -54 -227 -54h-14l-21 -55c10 3 16 4 26 4c53 0 86 -27 86 -70c0 -52 -47 -84 -124 -84c-28 0 -40 2 -84 16l14 31c32 -9 47 -11 66 -11c34 0 53 15 53 43c0 23 -16 39 -40 39c-13 0 -22 -2 -41 -7l-7 6l39 90c-218 24 -346 158 -346 360 c0 135 60 241 174 307c68 39 149 60 237 60c73 0 145 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72c0 39 -101 79 -199 79c-173 0 -286 -121 -286 -306c0 -197 129 -327 325 -327c77 0 145 20 207 60'], + 0xC8: [888,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM410 749h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26'], + 0xC9: [888,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM443 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0xCA: [887,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM474 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0xCB: [869,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM256 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM455 819 c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xCC: [888,3,337,22,315,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM274 749h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26'], + 0xCD: [888,3,337,22,315,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM306 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0xCE: [887,3,337,0,337,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM337 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0xCF: [869,3,337,20,319,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM120 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM319 819 c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xD0: [692,3,774,14,751,'751 385c0 -107 -44 -215 -116 -286c-70 -69 -166 -102 -294 -102c-48 0 -97 3 -145 3l-139 -3v23l31 16c16 8 25 30 25 59v251h-99v36h99v187c0 78 -5 87 -51 90l-40 3v30l206 -3c58 0 116 3 174 3c211 0 349 -121 349 -307zM644 359c0 100 -23 172 -71 220 c-53 53 -143 73 -254 73c-50 0 -85 -3 -111 -8v-262h184v-36h-184v-297c26 -6 57 -8 103 -8c113 0 173 17 233 66c66 54 100 140 100 252'], + 0xD1: [872,20,831,17,813,'813 662l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -10 3 -27 3 -37l-90 16l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30l120 -3c21 0 54 3 54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30l116 -3 l120 3v-30zM581 872c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0xD2: [888,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM507 749h-43l-156 73 c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26'], + 0xD3: [888,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM539 861c0 -15 -8 -22 -43 -39 l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0xD4: [887,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM570 752h-38l-131 84l-131 -84h-37 l134 135h68'], + 0xD5: [872,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM568 872c-4 -58 -52 -105 -109 -105 c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0xD6: [869,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM353 819c0 -30 -20 -50 -50 -50 s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM552 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xD8: [709,20,833,30,797,'797 679l-88 -83c55 -70 78 -135 78 -226c0 -222 -169 -390 -392 -390c-59 0 -118 13 -166 36c-24 11 -41 23 -75 51l-91 -85l-33 29l94 88c-29 38 -39 55 -51 87c-18 46 -28 102 -28 156c0 221 151 367 379 367c64 0 129 -13 180 -36c24 -11 41 -21 75 -47l86 83z M680 340c0 80 -10 129 -39 191l-422 -400c59 -77 121 -109 212 -109c158 0 249 116 249 318zM616 570c-39 44 -62 61 -109 78c-34 13 -68 19 -104 19c-160 0 -251 -106 -251 -292c0 -83 12 -142 44 -208'], + 0xD9: [888,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM517 749h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26'], + 0xDA: [888,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM549 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0xDB: [887,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM580 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0xDC: [869,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM363 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM562 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xDD: [888,3,667,9,654,'654 679c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v142c0 16 -3 30 -9 40l-124 216c-42 73 -94 126 -128 130l-29 3v29l120 25c18 0 59 -45 91 -103l143 -261l103 163 c39 62 70 116 108 190h80v-15zM484 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0xDE: [692,3,604,32,574,'574 387c0 -117 -98 -211 -220 -211c-21 0 -43 2 -58 6l-11 37c22 -6 44 -9 62 -9c71 0 127 65 127 147c0 96 -56 143 -170 143c-30 0 -52 -3 -78 -9v-371c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3 l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-27c17 -2 24 -2 46 -2c96 1 78 1 99 1c124 0 203 -60 203 -154'], + 0xDF: [731,9,556,23,519,'519 163c0 -41 -16 -85 -37 -101l-58 -44c-23 -18 -51 -27 -79 -27c-32 0 -61 6 -93 20v-14l-115 3l-114 -3v30l36 3c34 3 37 9 37 72v283h-69v14l69 35v66c0 39 12 71 46 118c50 68 130 113 203 113c89 0 151 -59 151 -144c0 -57 -13 -116 -44 -196 c-30 17 -47 23 -71 23c-32 0 -53 -17 -53 -43c0 -28 23 -50 86 -82c74 -37 105 -74 105 -126zM454 110c0 47 -25 76 -93 112c-75 39 -93 60 -93 105c0 23 6 42 19 56l39 43c20 22 57 35 103 35c6 24 11 57 11 82c0 88 -50 143 -131 143c-93 0 -129 -61 -129 -220v-359 c0 -59 12 -80 46 -80h28l21 85h27v-46c27 -24 44 -32 71 -32c46 0 81 32 81 76'], + 0xE0: [677,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM335 506h-40l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0xE1: [677,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM381 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0xE2: [676,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM402 509h-35l-121 103l-121 -103h-35l125 167h62'], + 0xE3: [645,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM411 645c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100 c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0xE4: [642,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM196 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM395 592c0 -30 -20 -50 -50 -50s-50 20 -50 50 s20 50 51 50c29 0 49 -21 49 -50'], + 0xE5: [692,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM346 592c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM308 592c0 38 -25 64 -61 64 c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0xE6: [469,20,758,30,732,'732 278c0 -12 -1 -20 -2 -34c-69 -11 -112 -14 -181 -14h-146c2 -58 8 -86 27 -119c28 -50 83 -78 149 -78c44 0 71 10 131 47l14 -10l-20 -34c-4 -6 -24 -18 -50 -29c-41 -18 -81 -27 -118 -27c-56 0 -110 20 -148 53c-16 15 -27 27 -44 56l-123 -96 c-10 -8 -31 -13 -55 -13c-83 0 -136 50 -136 127c0 44 14 77 41 98c30 22 113 45 197 54l56 6c-3 58 -8 82 -27 109c-18 26 -51 42 -86 42c-34 0 -79 -13 -91 -27c-7 -8 -18 -32 -25 -58l-26 6v62l98 53c22 12 43 17 71 17c65 0 107 -21 146 -71c65 54 104 71 161 71 c70 0 131 -33 163 -87c15 -26 24 -64 24 -104zM324 117v116c-81 -9 -91 -11 -134 -23c-33 -10 -47 -17 -56 -29c-11 -16 -18 -37 -18 -59c0 -48 31 -77 84 -77c47 0 80 19 124 72zM649 267c0 52 -6 78 -23 110c-22 41 -49 59 -87 59c-41 0 -81 -20 -104 -51 c-20 -28 -28 -58 -30 -115c54 -5 80 -7 127 -6'], + 0xE7: [469,225,444,26,413,'413 46l-21 -32c-10 -15 -80 -33 -123 -34l-21 -55c10 3 16 4 26 4c53 0 86 -27 86 -70c0 -52 -47 -84 -124 -84c-28 0 -40 2 -84 16l14 31c32 -9 47 -11 66 -11c34 0 53 15 53 43c0 23 -16 39 -40 39c-13 0 -22 -2 -41 -7l-7 6l38 89c-125 10 -209 101 -209 229 c0 90 37 159 109 204c60 37 114 55 162 55c41 0 76 -11 116 -35c-9 -36 -14 -77 -14 -123h-28l-7 61c-18 26 -65 45 -110 45c-90 0 -140 -60 -140 -167c0 -132 73 -218 184 -218c36 0 67 9 105 29'], + 0xE8: [677,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM351 506h-40l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0xE9: [677,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM397 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0xEA: [676,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM418 509h-35l-121 103l-121 -103h-35l125 167h62'], + 0xEB: [642,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM212 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM411 592 c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xEC: [677,3,287,11,271,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM235 506h-40l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0xED: [677,3,287,21,281,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM281 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0xEE: [676,3,287,-10,302,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM302 509h-35l-121 103l-121 -103h-35l125 167h62'], + 0xEF: [642,3,287,-4,295,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM96 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM295 592c0 -30 -20 -50 -50 -50 s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xF1: [645,3,582,6,572,'572 -3c-28 2 -55 3 -83 3c-26 0 -53 -1 -79 -3v284c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30l-124 3l-124 -3v30l45 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-87l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-193c0 -64 3 -70 37 -72l41 -3v-30zM456 645c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0xF2: [677,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM368 506h-40l-144 90c-33 21 -40 29 -40 47 c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0xF3: [677,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM414 643c0 -18 -7 -26 -40 -47l-144 -90h-40 l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0xF4: [676,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM435 509h-35l-121 103l-121 -103h-35l125 167 h62'], + 0xF5: [645,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM444 645c-4 -58 -52 -105 -109 -105 c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0xF6: [642,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM229 592c0 -30 -20 -50 -50 -50s-50 20 -50 50 s20 50 51 50c29 0 49 -21 49 -50zM428 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xF8: [474,23,556,16,530,'530 449l-63 -61c38 -51 52 -92 52 -150c0 -149 -110 -258 -261 -258c-63 0 -104 15 -152 57l-62 -60l-28 23l67 64c-33 51 -46 93 -46 152c0 148 104 253 251 253c61 0 103 -15 153 -55l62 60zM426 197c0 43 -7 82 -22 130l-238 -232c34 -57 73 -82 127 -82 c80 0 133 73 133 184zM388 362c-33 50 -72 74 -123 74c-86 0 -135 -66 -135 -180c0 -45 6 -81 20 -126'], + 0xF9: [677,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM390 506h-40l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0xFA: [677,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM436 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0xFB: [676,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM457 509h-35l-121 103l-121 -103h-35l125 167h62'], + 0xFC: [642,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM251 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM450 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50 c29 0 49 -21 49 -50'], + 0xFD: [677,283,556,12,544,'544 431l-28 -2c-25 -2 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61l-165 404c-14 35 -27 46 -52 49l-18 2v28l116 -3l116 3v-28l-38 -2c-39 -2 -41 -21 -24 -65l64 -168 c19 -49 29 -72 51 -110l119 292c15 36 6 48 -36 51l-26 2v28c32 -2 63 -3 95 -3s63 1 95 3v-28zM434 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0xFE: [726,281,601,-2,544,'544 267c0 -70 -36 -154 -79 -185l-100 -72c-21 -15 -47 -22 -82 -22c-42 0 -73 7 -118 25v-189c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v796c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-349l55 56c26 26 75 44 122 44 c112 0 202 -90 202 -202zM457 230c0 108 -59 174 -154 174c-50 0 -91 -19 -120 -56c-13 -17 -18 -28 -18 -42v-208c40 -42 78 -59 135 -59c97 0 157 74 157 191'], + 0xFF: [642,283,556,12,544,'544 431l-28 -2c-25 -2 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61l-165 404c-14 35 -27 46 -52 49l-18 2v28l116 -3l116 3v-28l-38 -2c-39 -2 -41 -21 -24 -65l64 -168 c19 -49 29 -72 51 -110l119 292c15 36 6 48 -36 51l-26 2v28c32 -2 63 -3 95 -3s63 1 95 3v-28zM249 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM448 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x100: [846,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM549 793h-312v53h312v-53'], + 0x101: [619,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM402 566h-312v53h312v-53'], + 0x102: [884,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM544 884c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x103: [671,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM387 671c-2 -44 -8 -66 -24 -93c-24 -42 -66 -65 -117 -65c-54 0 -97 25 -121 71c-13 26 -18 46 -20 87h30c3 -57 49 -98 111 -98 s108 41 111 98h30'], + 0x104: [700,250,778,15,756,'756 -193l-37 -32c-25 -21 -58 -25 -91 -25c-59 0 -88 49 -88 92c0 61 46 119 103 158h-14l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3 c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568c35 -81 46 -100 72 -102l34 -3v-30l-38 2c-38 1 -66 -32 -87 -65c-13 -21 -22 -44 -22 -66c0 -50 23 -72 48 -72c29 0 58 15 65 42l8 31l26 -7v-55zM493 269l-126 298l-127 -298h253'], + 0x105: [469,250,500,32,471,'471 -193l-37 -32c-25 -21 -58 -25 -91 -25c-59 0 -88 49 -88 92c0 60 45 118 102 157l-38 -2l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32 c38 23 78 34 121 34c116 0 158 -53 158 -199v-183c0 -49 4 -57 28 -58l39 -2v-30l-30 2c-34 2 -63 -22 -84 -50c-19 -25 -33 -53 -33 -81c0 -50 23 -72 48 -72c29 0 58 15 65 42l8 31l26 -7v-55zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91 c0 -43 35 -80 75 -80c39 0 102 38 131 79'], + 0x106: [888,20,709,22,670,'670 84l-28 -50c-69 -36 -144 -54 -227 -54c-235 0 -393 146 -393 362c0 135 60 240 174 307c67 39 150 60 237 60c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72c0 39 -101 79 -199 79c-172 0 -286 -122 -286 -306c0 -197 130 -327 325 -327 c76 0 145 20 207 60zM530 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x107: [677,20,444,26,413,'413 46l-21 -32c-10 -15 -85 -34 -137 -34c-134 0 -229 95 -229 230c0 88 37 158 107 202c60 38 116 57 164 57c41 0 76 -11 116 -35c-9 -36 -14 -77 -14 -123h-28l-7 61c-18 25 -66 45 -110 45c-90 0 -140 -60 -140 -167c0 -132 73 -218 184 -218c36 0 68 9 105 29z M389 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0x10C: [887,20,709,22,670,'670 84l-28 -50c-69 -36 -144 -54 -227 -54c-235 0 -393 146 -393 362c0 135 60 240 174 307c67 39 150 60 237 60c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72c0 39 -101 79 -199 79c-172 0 -286 -122 -286 -306c0 -197 130 -327 325 -327 c76 0 145 20 207 60zM561 887l-134 -135h-68l-135 135h38l131 -84l131 84h37'], + 0x10D: [676,20,444,26,413,'413 46l-21 -32c-10 -15 -85 -34 -137 -34c-134 0 -229 95 -229 230c0 88 37 158 107 202c60 38 116 57 164 57c41 0 76 -11 116 -35c-9 -36 -14 -77 -14 -123h-28l-7 61c-18 25 -66 45 -110 45c-90 0 -140 -60 -140 -167c0 -132 73 -218 184 -218c36 0 68 9 105 29z M410 676l-125 -167h-62l-125 167h35l121 -103l122 103h34'], + 0x10E: [887,3,774,22,751,'751 385c0 -107 -44 -215 -116 -286c-70 -69 -166 -102 -294 -102c-48 0 -97 3 -145 3l-139 -3v23l31 16c16 8 25 30 25 59v474c0 78 -5 87 -51 90l-40 3v30l206 -3c58 0 116 3 174 3c211 0 349 -121 349 -307zM644 359c0 100 -23 172 -71 220c-53 53 -143 73 -254 73 c-50 0 -85 -3 -111 -8v-595c26 -6 57 -8 103 -8c113 0 173 17 233 66c66 54 100 140 100 252zM509 887l-134 -135h-68l-135 135h38l131 -84l131 84h37'], + 0x10F: [726,12,611,35,678,'579 -3c-30 2 -61 3 -91 3c-26 0 -51 -1 -77 -3l5 92l-111 -93c-5 -4 -28 -8 -48 -8c-65 0 -112 13 -146 42c-49 40 -76 106 -76 186c0 85 37 158 94 188l88 46c25 13 49 19 76 19c35 0 63 -8 119 -32v183c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-616 c0 -63 3 -70 37 -72l46 -3v-30zM412 221v129c0 8 -12 21 -33 35c-35 24 -75 37 -113 37c-90 0 -144 -64 -144 -173c0 -119 63 -204 151 -204c47 0 96 31 124 78c13 23 15 33 15 98zM678 715c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x110: [692,3,774,14,751,'751 385c0 -107 -44 -215 -116 -286c-70 -69 -166 -102 -294 -102c-48 0 -97 3 -145 3l-139 -3v23l31 16c16 8 25 30 25 59v251h-99v36h99v187c0 78 -5 87 -51 90l-40 3v30l206 -3c58 0 116 3 174 3c211 0 349 -121 349 -307zM644 359c0 100 -23 172 -71 220 c-53 53 -143 73 -254 73c-50 0 -85 -3 -111 -8v-262h184v-36h-184v-297c26 -6 57 -8 103 -8c113 0 173 17 233 66c66 54 100 140 100 252'], + 0x111: [726,12,611,35,579,'579 -3c-21 1 -41 1 -48 2c-21 1 -35 1 -43 1l-77 -3l5 92l-111 -93c-5 -4 -28 -8 -48 -8c-65 0 -112 13 -146 42c-49 40 -76 106 -76 186c0 85 37 158 94 188l88 46c25 13 49 19 76 19c35 0 63 -8 119 -32v118h-145v36h145v29c0 30 -7 41 -25 41h-56v28 c79 12 112 20 156 37l9 -8v-127h83v-36h-83v-453c0 -63 3 -70 37 -72l46 -3v-30zM412 221v129c0 8 -12 21 -33 35c-35 24 -75 37 -113 37c-90 0 -144 -64 -144 -173c0 -119 63 -204 151 -204c47 0 96 31 124 78c13 23 15 33 15 98'], + 0x112: [846,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM462 793h-312v53h312v-53'], + 0x113: [619,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM418 566h-312v53h312v-53'], + 0x116: [869,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM356 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x117: [642,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM312 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x118: [692,250,611,22,572,'572 164c-10 -52 -16 -106 -16 -164h-1c-45 -1 -90 -15 -117 -51c-19 -25 -33 -53 -33 -81c0 -50 23 -72 48 -72c29 0 58 15 65 42l8 31l26 -7v-55l-37 -32c-25 -21 -58 -25 -91 -25c-59 0 -88 49 -88 92c0 60 44 117 100 156l-47 -1l-232 3l-123 -3v30l36 3 c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59 c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35'], + 0x119: [469,250,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-2 -3 -8 -8 -17 -13c-33 -19 -63 -43 -86 -74c-19 -25 -33 -53 -33 -81c0 -50 23 -72 48 -72c29 0 58 15 65 42l8 31l26 -7 v-55l-37 -32c-25 -21 -58 -25 -91 -25c-59 0 -88 49 -88 92c0 53 34 104 81 142c-15 -3 -29 -4 -43 -4c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40 c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6'], + 0x11A: [887,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM473 887l-134 -135h-68l-135 135h38l131 -84l131 84h37'], + 0x11B: [676,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM418 676l-125 -167h-62l-125 167h35l121 -103l122 103h34'], + 0x11E: [884,20,763,22,728,'728 246l-29 -10c-10 -4 -11 -6 -11 -37v-168c-136 -38 -205 -51 -276 -51c-116 0 -223 41 -293 109c-62 62 -97 151 -97 252c0 222 170 368 428 368c80 0 131 -9 242 -41c-14 -54 -20 -101 -20 -152h-31v53c0 38 -25 61 -83 80c-38 12 -82 18 -134 18 c-187 0 -295 -112 -295 -305c0 -208 126 -340 324 -340c66 0 126 14 137 33c4 7 6 19 6 43v101c0 24 -9 33 -34 35l-83 7v30l122 -3l123 3zM564 884c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x11F: [671,283,556,32,544,'544 419l-25 -41h-92c8 -21 11 -34 11 -54c0 -53 -22 -93 -67 -126c-41 -29 -94 -48 -137 -48c-8 0 -14 1 -24 2c-4 -4 -6 -6 -12 -11c-26 -22 -34 -33 -34 -46c0 -27 24 -39 76 -39h160c70 0 118 -50 118 -122c0 -122 -119 -217 -270 -217c-127 0 -216 63 -216 154 c0 31 14 68 28 76l87 47c-48 14 -66 30 -66 58c0 15 5 28 15 43l79 61c-74 8 -120 59 -120 133c0 61 29 110 85 142c41 24 92 38 136 38c49 0 85 -12 122 -42l142 4zM354 294c0 85 -46 141 -114 141c-64 0 -101 -45 -101 -122s45 -129 112 -129c61 0 103 45 103 110z M439 -102c0 65 -39 88 -152 88c-69 0 -97 -3 -113 -10c-40 -18 -66 -58 -66 -103c0 -74 60 -125 147 -125c105 0 184 64 184 150zM417 671c-2 -44 -8 -66 -24 -93c-24 -42 -66 -65 -117 -65c-54 0 -97 25 -121 71c-13 26 -18 46 -20 87h30c3 -57 49 -98 111 -98 s108 41 111 98h30'], + 0x122: [709,271,763,22,728,'728 246l-29 -10c-10 -4 -11 -6 -11 -37v-168c-136 -38 -205 -51 -276 -51c-116 0 -223 41 -293 109c-62 62 -97 151 -97 252c0 222 170 368 428 368c80 0 131 -9 242 -41c-14 -54 -20 -101 -20 -152h-31v53c0 38 -25 61 -83 80c-38 12 -82 18 -134 18 c-187 0 -295 -112 -295 -305c0 -208 126 -340 324 -340c66 0 126 14 137 33c4 7 6 19 6 43v101c0 24 -9 33 -34 35l-83 7v30l122 -3l123 3zM457 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x123: [709,283,556,32,544,'347 700c-38 -62 -47 -96 -53 -160c-42 -12 -49 -15 -79 -25l-10 11c27 70 48 103 95 164l35 19zM544 419l-25 -41h-92c8 -21 11 -34 11 -54c0 -53 -22 -93 -67 -126c-41 -29 -94 -48 -137 -48c-8 0 -14 1 -24 2c-4 -4 -6 -6 -12 -11c-26 -22 -34 -33 -34 -46 c0 -27 24 -39 76 -39h160c70 0 118 -50 118 -122c0 -122 -119 -217 -270 -217c-127 0 -216 63 -216 154c0 31 14 68 28 76l87 47c-48 14 -66 30 -66 58c0 15 5 28 15 43l79 61c-74 8 -120 59 -120 133c0 61 29 110 85 142c41 24 92 38 136 38c49 0 85 -12 122 -42l142 4z M354 294c0 85 -46 141 -114 141c-64 0 -101 -45 -101 -122s45 -129 112 -129c61 0 103 45 103 110zM439 -102c0 65 -39 88 -152 88c-69 0 -97 -3 -113 -10c-40 -18 -66 -58 -66 -103c0 -74 60 -125 147 -125c105 0 184 64 184 150'], + 0x128: [872,3,337,5,335,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM335 872c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26 c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x129: [645,3,287,-19,311,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM311 645c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29 c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x12A: [846,3,337,14,326,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM326 793h-312v53h312v-53'], + 0x12B: [619,3,287,-10,302,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM302 566h-312v53h312v-53'], + 0x12E: [692,250,337,22,315,'315 -3l-44 2c-40 1 -69 -31 -91 -65c-13 -21 -22 -44 -22 -66c0 -50 23 -72 48 -72c29 0 58 15 65 42l8 31l26 -7v-55l-37 -32c-25 -21 -58 -25 -91 -25c-59 0 -88 49 -88 92c0 61 46 119 103 158h-24l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30 l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30'], + 0x12F: [642,250,291,21,271,'271 -3l-44 2c-33 1 -60 -23 -80 -50c-19 -25 -33 -53 -33 -81c0 -50 23 -72 48 -72c29 0 58 15 65 42l8 31l26 -7v-55l-37 -32c-25 -21 -58 -25 -91 -25c-59 0 -88 49 -88 92c0 61 46 119 103 158h-2l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28 c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM175 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x130: [869,3,337,22,315,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM219 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x132: [692,195,724,40,684,'333 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM684 662l-48 -3c-46 -3 -51 -11 -51 -90v-452c0 -121 -13 -171 -62 -231 c-39 -49 -102 -85 -136 -81l-24 3l-5 76l11 6c23 -14 43 -20 67 -20c40 0 54 29 54 113v586c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30'], + 0x133: [642,283,509,40,477,'290 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM215 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM469 -19c0 -79 -18 -143 -53 -189 c-38 -50 -76 -71 -134 -75l-12 38c9 -2 22 -3 30 -3c58 0 85 75 85 241v334c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-484zM477 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x136: [692,271,726,22,719,'719 -3c-22 2 -43 3 -65 3c-27 0 -53 -1 -80 -3l-348 335l-10 -7v-205c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-214l278 271c16 16 29 33 29 39v27 c30 -2 59 -3 89 -3c27 0 53 1 80 3v-30l-42 -2c-26 -1 -51 -14 -78 -38l-266 -240l330 -312c31 -29 47 -40 62 -41l21 -2v-30zM416 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x137: [726,271,556,21,549,'549 17l-96 -29l-265 252v-138c0 -63 3 -70 37 -72l44 -3v-30l-122 3l-126 -3v30l46 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-457l73 59c39 31 86 75 150 139h100v-30c-34 0 -61 -11 -108 -47l-129 -101c17 -20 28 -33 64 -68 l126 -125c32 -31 61 -48 85 -48v-23zM314 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x139: [888,3,611,22,586,'586 172c-10 -97 -14 -129 -21 -172c-136 -3 -126 -3 -168 -3l-233 3c-33 0 -66 -1 -99 -3v23l31 16c16 8 25 30 25 59v474c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-522c26 -6 49 -8 85 -8c119 0 206 7 219 18c6 5 13 26 22 65 l12 50h32zM306 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x13A: [922,3,291,21,271,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-616c0 -63 3 -70 37 -72l46 -3v-30zM270 895c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x13B: [692,271,611,22,586,'586 172c-10 -97 -14 -129 -21 -172c-136 -3 -126 -3 -168 -3l-233 3c-33 0 -66 -1 -99 -3v23l31 16c16 8 25 30 25 59v474c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-522c26 -6 49 -8 85 -8c119 0 206 7 219 18c6 5 13 26 22 65 l12 50h32zM350 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x13C: [726,271,291,21,271,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-616c0 -63 3 -70 37 -72l46 -3v-30zM191 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x13D: [692,3,611,22,586,'586 172c-10 -97 -14 -129 -21 -172c-136 -3 -126 -3 -168 -3l-233 3c-33 0 -66 -1 -99 -3v23l31 16c16 8 25 30 25 59v474c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-522c26 -6 49 -8 85 -8c119 0 206 7 219 18c6 5 13 26 22 65 l12 50h32zM497 681c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x13E: [726,3,291,21,370,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-616c0 -63 3 -70 37 -72l46 -3v-30zM370 715c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x141: [692,3,611,22,586,'586 172c-10 -97 -14 -129 -21 -172c-136 -3 -126 -3 -168 -3l-233 3c-33 0 -66 -1 -99 -3v23l31 16c16 8 25 30 25 59v219l-50 -41l-21 29l71 58v209c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-141l141 117l20 -29l-161 -134v-335 c26 -6 49 -8 85 -8c119 0 206 7 219 18c6 5 13 26 22 65l12 50h32'], + 0x142: [726,3,291,0,296,'296 522l-108 -89v-331c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v271l-83 -68l-21 29l104 85v201c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-239l88 72'], + 0x143: [888,20,831,17,813,'813 662l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -10 3 -27 3 -37l-90 16l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30l120 -3c21 0 54 3 54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30l116 -3 l120 3v-30zM552 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x144: [677,3,582,6,572,'572 -3c-28 2 -55 3 -83 3c-26 0 -53 -1 -79 -3v284c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30l-124 3l-124 -3v30l45 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-87l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-193c0 -64 3 -70 37 -72l41 -3v-30zM426 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0x145: [692,271,831,17,813,'813 662l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -10 3 -27 3 -37l-90 16l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30l120 -3c21 0 54 3 54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30l116 -3 l120 3v-30zM460 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x146: [469,271,582,6,572,'572 -3c-28 2 -55 3 -83 3c-26 0 -53 -1 -79 -3v284c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30l-124 3l-124 -3v30l45 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-87l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-193c0 -64 3 -70 37 -72l41 -3v-30zM336 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x147: [887,20,831,17,813,'813 662l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -10 3 -27 3 -37l-90 16l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30l120 -3c21 0 54 3 54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30l116 -3 l120 3v-30zM583 887l-134 -135h-68l-135 135h38l131 -84l131 84h37'], + 0x148: [676,3,582,6,572,'572 -3c-28 2 -55 3 -83 3c-26 0 -53 -1 -79 -3v284c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30l-124 3l-124 -3v30l45 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-87l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-193c0 -64 3 -70 37 -72l41 -3v-30zM447 676l-125 -167h-62l-125 167h35l121 -103l122 103h34'], + 0x14A: [692,187,831,17,813,'813 662l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -106 -65 -204 -164 -204c-65 0 -129 22 -180 62l44 44c34 -40 84 -62 136 -62c59 0 77 71 77 139l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30 l120 -3c21 0 54 3 54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30'], + 0x14B: [469,167,582,6,494,'494 102c0 -138 -77 -269 -203 -269v34c110 0 119 144 119 272v142c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30l-124 3l-124 -3v30l45 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-87l76 66 c21 18 42 25 79 25c112 0 167 -57 167 -174v-193'], + 0x14C: [846,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM559 793h-312v53h312v-53'], + 0x14D: [619,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM435 566h-312v53h312v-53'], + 0x150: [888,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM666 861c0 -15 -8 -22 -43 -39 l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27zM506 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x151: [683,20,546,32,526,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM376 650c0 -16 -10 -29 -39 -50l-135 -98h-40 l128 148c17 20 39 33 55 33c17 0 31 -15 31 -33zM526 650c0 -16 -10 -29 -39 -50l-135 -98h-40l128 148c17 20 39 33 55 33c17 0 31 -15 31 -33'], + 0x152: [709,20,998,22,962,'962 164c-10 -52 -16 -106 -16 -164l-160 -3l-107 1c-117 1 -226 -19 -288 -18c-219 0 -369 143 -369 360c0 220 153 369 377 369c58 0 172 -20 189 -20l237 3l121 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34c-31 8 -89 14 -141 14c-65 0 -82 -1 -113 -8 v-267c48 -3 86 -4 151 -4c43 0 68 4 71 38l5 52h30l-3 -116l3 -111h-30l-5 58c-3 34 -28 38 -71 38h-54c-43 0 -71 -1 -97 -3v-280c29 -6 48 -8 97 -8c84 0 158 5 177 12c13 5 27 35 34 79l5 34h35zM519 139v399c0 38 -1 56 -5 83c-34 30 -76 44 -133 44 c-163 0 -259 -110 -259 -295c0 -203 109 -346 263 -346c46 0 104 14 129 32c4 27 5 45 5 83'], + 0x153: [469,20,827,32,800,'800 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -50 82 -78 148 -78c44 0 71 10 131 47l14 -10l-20 -34c-4 -6 -25 -18 -50 -29c-41 -17 -80 -27 -115 -27c-68 0 -114 24 -172 87c-61 -64 -108 -87 -177 -87 c-132 0 -226 104 -226 250c0 143 96 239 240 239c71 0 116 -20 173 -76c65 58 104 76 166 76c115 0 189 -74 189 -190zM403 203c0 144 -57 233 -150 233c-85 0 -128 -59 -128 -176c0 -146 63 -247 154 -247c79 0 124 69 124 190zM717 267c0 52 -6 78 -23 110 c-22 41 -49 59 -86 59c-42 0 -83 -20 -105 -51c-21 -29 -28 -58 -30 -115c54 -5 80 -7 127 -6'], + 0x154: [888,3,668,22,669,'669 -3c-24 2 -48 3 -72 3c-23 0 -45 -1 -68 -3l-41 54l-184 247c-16 22 -24 33 -46 57v16h29c116 0 189 58 189 150c0 85 -58 133 -162 133c-34 0 -64 -4 -98 -12v-522c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 78 -5 87 -51 90 l-41 3v30l173 -3c60 0 119 3 179 3c130 0 195 -54 195 -150c0 -58 -28 -108 -80 -145c-33 -23 -59 -34 -115 -48l227 -296c13 -17 29 -23 61 -26v-30zM452 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x155: [677,3,395,21,374,'374 458l-9 -120h-21c-16 32 -37 46 -67 46c-49 0 -89 -50 -89 -110v-172c0 -66 2 -69 47 -72l52 -3v-30l-143 3l-123 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-103l56 66c21 25 53 41 83 41c18 0 36 -4 47 -11zM323 643 c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0x156: [692,271,668,22,669,'669 -3c-24 2 -48 3 -72 3c-23 0 -45 -1 -68 -3l-41 54l-184 247c-16 22 -24 33 -46 57v16h29c116 0 189 58 189 150c0 85 -58 133 -162 133c-34 0 -64 -4 -98 -12v-522c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 78 -5 87 -51 90 l-41 3v30l173 -3c60 0 119 3 179 3c130 0 195 -54 195 -150c0 -58 -28 -108 -80 -145c-33 -23 -59 -34 -115 -48l227 -296c13 -17 29 -23 61 -26v-30zM360 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x157: [469,271,395,21,374,'374 458l-9 -120h-21c-16 32 -37 46 -67 46c-49 0 -89 -50 -89 -110v-172c0 -66 2 -69 47 -72l52 -3v-30l-143 3l-123 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-103l56 66c21 25 53 41 83 41c18 0 36 -4 47 -11zM199 -88 c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x158: [887,3,668,22,669,'669 -3c-24 2 -48 3 -72 3c-23 0 -45 -1 -68 -3l-41 54l-184 247c-16 22 -24 33 -46 57v16h29c116 0 189 58 189 150c0 85 -58 133 -162 133c-34 0 -64 -4 -98 -12v-522c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 78 -5 87 -51 90 l-41 3v30l173 -3c60 0 119 3 179 3c130 0 195 -54 195 -150c0 -58 -28 -108 -80 -145c-33 -23 -59 -34 -115 -48l227 -296c13 -17 29 -23 61 -26v-30zM483 887l-134 -135h-68l-135 135h38l131 -84l131 84h37'], + 0x159: [676,3,395,21,374,'374 458l-9 -120h-21c-16 32 -37 46 -67 46c-49 0 -89 -50 -89 -110v-172c0 -66 2 -69 47 -72l52 -3v-30l-143 3l-123 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-103l56 66c21 25 53 41 83 41c18 0 36 -4 47 -11zM344 676 l-125 -167h-62l-125 167h35l121 -103l122 103h34'], + 0x15A: [888,20,525,24,503,'503 230c0 -145 -126 -250 -300 -250c-58 0 -116 13 -173 38c6 45 8 67 8 113c0 6 0 22 -1 40h32l8 -67c5 -41 83 -80 163 -80c104 0 179 65 179 155c0 38 -12 66 -38 88s-61 34 -138 45c-97 13 -143 29 -177 60c-29 27 -42 63 -42 112c0 131 108 225 257 225 c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-32l-6 57c-3 29 -14 44 -47 61c-27 15 -64 23 -103 23c-88 0 -151 -60 -151 -144c0 -77 43 -110 165 -126c112 -15 154 -28 189 -61c28 -26 41 -59 41 -106zM379 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113 c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x15B: [677,20,424,30,391,'391 148c0 -98 -93 -168 -224 -168c-46 0 -85 7 -137 24c8 40 11 70 11 139h30v-41c0 -50 52 -85 125 -85c71 0 121 38 121 92c0 38 -19 59 -64 69c-68 15 -121 31 -148 43c-46 21 -68 55 -68 103c0 90 71 145 187 145c41 0 77 -7 130 -25c-3 -31 -4 -55 -5 -113h-28v23 c0 47 -51 82 -118 82c-61 0 -96 -28 -96 -78c0 -46 27 -66 109 -82c88 -17 121 -28 147 -54c20 -20 28 -43 28 -74zM331 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0x15E: [709,225,525,24,503,'503 230c0 -124 -92 -218 -227 -243l-24 -62c10 3 16 4 26 4c53 0 86 -27 86 -70c0 -52 -47 -84 -124 -84c-28 0 -40 2 -84 16l14 31c32 -9 47 -11 66 -11c34 0 53 15 53 43c0 23 -16 39 -40 39c-13 0 -22 -2 -41 -7l-7 6l38 90c-12 -2 -24 -2 -36 -2 c-59 0 -116 12 -173 38c6 44 7 76 7 153h32l8 -67c5 -42 83 -80 162 -80c105 0 180 65 180 155c0 38 -13 68 -39 89c-27 23 -61 34 -137 44c-99 14 -145 30 -178 62c-28 26 -41 61 -41 110c0 131 108 225 257 225c56 0 100 -10 180 -42c-10 -54 -14 -89 -14 -141h-32l-6 57 c-3 29 -14 44 -47 61c-27 15 -63 23 -103 23c-88 0 -151 -60 -151 -144c0 -77 43 -110 165 -126c114 -15 156 -29 191 -62c27 -27 39 -58 39 -105'], + 0x15F: [469,225,424,30,391,'391 148c0 -84 -66 -146 -166 -163l-23 -60c10 3 16 4 26 4c53 0 86 -27 86 -70c0 -52 -47 -84 -124 -84c-28 0 -40 2 -84 16l14 31c32 -9 47 -11 66 -11c34 0 53 15 53 43c0 23 -16 39 -40 39c-13 0 -22 -2 -41 -7l-7 6l38 89c-7 -1 -15 -1 -22 -1c-46 0 -84 7 -137 24 c9 40 11 70 11 139h30v-41c0 -50 52 -85 125 -85c71 0 121 38 121 92c0 39 -19 59 -64 69c-70 16 -123 32 -149 44c-46 22 -67 54 -67 102c0 90 71 145 187 145c42 0 76 -7 130 -25c-3 -31 -4 -55 -5 -113h-28v23c0 47 -50 82 -118 82c-61 0 -96 -28 -96 -78 c0 -46 27 -66 109 -82c90 -17 122 -29 148 -55c19 -19 27 -42 27 -73'], + 0x160: [887,20,525,24,503,'503 230c0 -145 -126 -250 -300 -250c-58 0 -116 13 -173 38c6 45 8 67 8 113c0 6 0 22 -1 40h32l8 -67c5 -41 83 -80 163 -80c104 0 179 65 179 155c0 38 -12 66 -38 88s-61 34 -138 45c-97 13 -143 29 -177 60c-29 27 -42 63 -42 112c0 131 108 225 257 225 c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-32l-6 57c-3 29 -14 44 -47 61c-27 15 -64 23 -103 23c-88 0 -151 -60 -151 -144c0 -77 43 -110 165 -126c112 -15 154 -28 189 -61c28 -26 41 -59 41 -106zM410 887l-134 -135h-68l-135 135h38l131 -84l131 84h37'], + 0x161: [676,20,424,30,391,'391 148c0 -98 -93 -168 -224 -168c-46 0 -85 7 -137 24c8 40 11 70 11 139h30v-41c0 -50 52 -85 125 -85c71 0 121 38 121 92c0 38 -19 59 -64 69c-68 15 -121 31 -148 43c-46 21 -68 55 -68 103c0 90 71 145 187 145c41 0 77 -7 130 -25c-3 -31 -4 -55 -5 -113h-28v23 c0 47 -51 82 -118 82c-61 0 -96 -28 -96 -78c0 -46 27 -66 109 -82c88 -17 121 -28 147 -54c20 -20 28 -43 28 -74zM352 676l-125 -167h-62l-125 167h35l121 -103l122 103h34'], + 0x162: [692,225,613,18,595,'595 692c-5 -57 -7 -96 -7 -161h-31l-4 79c-1 24 -12 33 -40 33h-155c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 51 -90l48 -3v-30l-121 3l-30 -75c10 3 16 4 26 4c53 0 86 -27 86 -70c0 -52 -47 -84 -124 -84c-28 0 -40 2 -84 16l14 31c32 -9 47 -11 66 -11 c34 0 53 15 53 43c0 23 -16 39 -40 39c-13 0 -22 -2 -41 -7l-7 6l47 108l-138 -3v30l48 3c46 3 51 11 51 90v423c0 43 -1 66 -4 100h-155c-28 0 -39 -9 -40 -33l-4 -79h-31c0 65 -2 104 -7 161l68 -1l135 -2h158l83 1'], + 0x163: [621,225,326,22,319,'319 436l-9 -54h-128v-262c0 -49 16 -69 55 -69c20 0 33 4 59 19l13 -17l-48 -53c-5 -5 -20 -9 -37 -11l-24 -64c10 3 16 4 26 4c53 0 86 -27 86 -70c0 -52 -47 -84 -124 -84c-28 0 -40 2 -84 16l14 31c32 -9 47 -11 66 -11c34 0 53 15 53 43c0 23 -16 39 -40 39 c-13 0 -22 -2 -41 -7l-7 6l41 97c-64 4 -92 37 -92 105v288l-76 -4v21l78 35v70c0 30 -1 49 -4 79c31 10 61 23 85 38l12 -11c-8 -64 -11 -100 -11 -142v-38'], + 0x164: [887,3,613,18,595,'595 692c-5 -57 -7 -96 -7 -161h-31l-4 79c-1 24 -12 33 -40 33h-155c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v423c0 43 -1 66 -4 100h-155c-28 0 -39 -9 -40 -33l-4 -79h-31c0 65 -2 104 -7 161l203 -3h158z M475 887l-134 -135h-68l-135 135h38l131 -84l131 84h37'], + 0x165: [663,12,326,22,355,'319 436l-9 -54h-128v-262c0 -49 16 -69 55 -69c19 0 34 5 59 19l13 -17l-48 -53c-6 -7 -30 -12 -53 -12c-77 0 -110 32 -110 106v288l-76 -4v21l78 35v70c0 30 -1 49 -4 79c31 10 61 23 85 38l12 -11c-8 -64 -11 -100 -11 -142v-38zM355 652c-27 -70 -48 -103 -95 -164 l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x168: [872,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM578 872c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x169: [645,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM466 645c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30 c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x16A: [846,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM569 793h-312v53h312v-53'], + 0x16B: [619,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM457 566h-312v53h312v-53'], + 0x16E: [939,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM513 839c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM475 839c0 38 -25 64 -61 64c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0x16F: [692,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM401 592c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM363 592c0 38 -25 64 -61 64c-38 0 -63 -25 -63 -63 c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0x170: [888,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM676 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27zM516 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x171: [683,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM398 650c0 -16 -10 -29 -39 -50l-135 -98h-40l128 148c17 20 39 33 55 33c17 0 31 -15 31 -33zM548 650c0 -16 -10 -29 -39 -50l-135 -98h-40l128 148 c17 20 39 33 55 33c17 0 31 -15 31 -33'], + 0x172: [692,250,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-27 -28 -63 -46 -109 -57c-35 -7 -76 -17 -94 -41c-19 -25 -33 -53 -33 -81c0 -50 23 -72 48 -72c30 0 58 15 65 42l8 31l26 -7v-55l-37 -32c-24 -21 -58 -25 -91 -25c-59 0 -88 49 -88 92 c0 51 32 100 77 138c-94 2 -162 23 -200 62s-56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30'], + 0x173: [469,250,603,18,581,'581 -193l-37 -32c-25 -21 -58 -25 -91 -25c-59 0 -88 49 -88 92c0 60 45 119 102 158l-52 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295 c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30l-33 2c-34 1 -61 -23 -81 -50c-19 -25 -33 -53 -33 -81c0 -50 23 -72 48 -72c29 0 58 15 65 42 l8 31l26 -7v-55'], + 0x178: [869,3,667,9,654,'654 679c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v142c0 16 -3 30 -9 40l-124 216c-42 73 -94 126 -128 130l-29 3v29l120 25c18 0 59 -45 91 -103l143 -261l103 163 c39 62 70 116 108 190h80v-15zM298 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM497 819c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x179: [888,3,667,15,638,'638 173c-5 -55 -6 -90 -6 -176l-305 3l-312 -3v28s83 98 97 117l302 388c37 47 61 76 86 118h-228c-122 0 -149 -8 -152 -47l-6 -71h-34c2 37 3 49 3 81s-1 44 -3 81h165c90 0 142 -3 232 -3l156 3l4 -29l-486 -619h273c153 0 167 6 174 72l6 57h34zM461 861 c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x17A: [677,3,500,16,466,'466 139l-6 -47c-6 -48 -9 -72 -9 -95l-276 3l-153 -3l-6 20l260 317c28 34 44 57 65 90h-143c-74 0 -92 -5 -96 -26l-12 -68h-30c6 69 7 81 9 132l248 -3l138 3v-30l-314 -397h135c96 0 138 7 142 25l18 79h30zM372 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138 c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0x17B: [869,3,667,15,638,'638 173c-5 -55 -6 -90 -6 -176l-305 3l-312 -3v28s83 98 97 117l302 388c37 47 61 76 86 118h-228c-122 0 -149 -8 -152 -47l-6 -71h-34c2 37 3 49 3 81s-1 44 -3 81h165c90 0 142 -3 232 -3l156 3l4 -29l-486 -619h273c153 0 167 6 174 72l6 57h34zM374 819 c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x17C: [642,3,500,16,466,'466 139l-6 -47c-6 -48 -9 -72 -9 -95l-276 3l-153 -3l-6 20l260 317c28 34 44 57 65 90h-143c-74 0 -92 -5 -96 -26l-12 -68h-30c6 69 7 81 9 132l248 -3l138 3v-30l-314 -397h135c96 0 138 7 142 25l18 79h30zM287 592c0 -30 -20 -50 -50 -50s-50 20 -50 50 s20 50 51 50c29 0 49 -21 49 -50'], + 0x17D: [887,3,667,15,638,'638 173c-5 -55 -6 -90 -6 -176l-305 3l-312 -3v28s83 98 97 117l302 388c37 47 61 76 86 118h-228c-122 0 -149 -8 -152 -47l-6 -71h-34c2 37 3 49 3 81s-1 44 -3 81h165c90 0 142 -3 232 -3l156 3l4 -29l-486 -619h273c153 0 167 6 174 72l6 57h34zM492 887l-134 -135 h-68l-135 135h38l131 -84l131 84h37'], + 0x17E: [676,3,500,16,466,'466 139l-6 -47c-6 -48 -9 -72 -9 -95l-276 3l-153 -3l-6 20l260 317c28 34 44 57 65 90h-143c-74 0 -92 -5 -96 -26l-12 -68h-30c6 69 7 81 9 132l248 -3l138 3v-30l-314 -397h135c96 0 138 7 142 25l18 79h30zM393 676l-125 -167h-62l-125 167h35l121 -103l122 103h34'], + 0x17F: [728,3,333,23,341,'341 640l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -28 -70 -143v-417c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v283l-69 -4v22l69 31v42c0 66 13 111 42 144l58 66c22 25 57 42 89 42c13 0 25 -3 46 -11v-77'], + 0x192: [706,262,500,0,473,'473 706c-8 -29 -11 -51 -14 -92l-10 -8c-3 2 -4 2 -8 6c-15 13 -26 18 -41 18c-30 0 -43 -17 -53 -72l-27 -150l105 4c-5 -29 -7 -39 -9 -54c-34 3 -60 5 -105 6l-72 -348c-38 -183 -119 -277 -239 -278c8 35 11 57 15 89l11 7c14 -14 28 -20 46 -20c37 0 53 30 73 134 l80 416l-108 -5l10 53l107 -4c42 194 121 293 239 298'], + 0x1A0: [781,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c88 0 164 -21 222 -60c31 20 37 49 37 85c0 9 -1 18 -1 28c45 9 54 12 86 19l11 -7c-8 -27 -40 -110 -99 -151c68 -59 106 -147 106 -256zM657 337c0 208 -101 330 -272 330 c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315'], + 0x1A1: [532,20,546,32,567,'567 525c-8 -27 -39 -107 -96 -149c27 -38 43 -85 43 -139c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c66 0 123 -23 164 -62c23 20 28 46 28 78c0 9 -1 18 -1 28c45 9 54 12 86 19zM421 200c0 136 -68 236 -160 236 c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187'], + 0x1AF: [781,20,778,12,801,'801 774c-9 -32 -54 -145 -137 -169v-325c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30h141v-45c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19'], + 0x1B0: [532,12,640,18,640,'640 525c-9 -32 -54 -145 -137 -169v-254c0 -64 3 -70 37 -72l41 -3v-30l-83 3l-83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91 c16 -19 44 -30 79 -30c39 0 71 14 99 42c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-67c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19'], + 0x218: [709,271,525,24,503,'503 230c0 -145 -126 -250 -300 -250c-58 0 -116 13 -173 38c6 45 8 67 8 113c0 6 0 22 -1 40h32l8 -67c5 -41 83 -80 163 -80c104 0 179 65 179 155c0 38 -12 66 -38 88s-61 34 -138 45c-97 13 -143 29 -177 60c-29 27 -42 63 -42 112c0 131 108 225 257 225 c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-32l-6 57c-3 29 -14 44 -47 61c-27 15 -64 23 -103 23c-88 0 -151 -60 -151 -144c0 -77 43 -110 165 -126c112 -15 154 -28 189 -61c28 -26 41 -59 41 -106zM287 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9 c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x219: [469,271,424,30,391,'391 148c0 -98 -93 -168 -224 -168c-46 0 -85 7 -137 24c8 40 11 70 11 139h30v-41c0 -50 52 -85 125 -85c71 0 121 38 121 92c0 38 -19 59 -64 69c-68 15 -121 31 -148 43c-46 21 -68 55 -68 103c0 90 71 145 187 145c41 0 77 -7 130 -25c-3 -31 -4 -55 -5 -113h-28v23 c0 47 -51 82 -118 82c-61 0 -96 -28 -96 -78c0 -46 27 -66 109 -82c88 -17 121 -28 147 -54c20 -20 28 -43 28 -74zM241 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x21A: [692,271,613,18,595,'595 692c-5 -57 -7 -96 -7 -161h-31l-4 79c-1 24 -12 33 -40 33h-155c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v423c0 43 -1 66 -4 100h-155c-28 0 -39 -9 -40 -33l-4 -79h-31c0 65 -2 104 -7 161l203 -3h158z M352 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x21B: [621,271,326,22,319,'319 436l-9 -54h-128v-262c0 -49 16 -69 55 -69c19 0 34 5 59 19l13 -17l-48 -53c-6 -7 -30 -12 -53 -12c-77 0 -110 32 -110 106v288l-76 -4v21l78 35v70c0 30 -1 49 -4 79c31 10 61 23 85 38l12 -11c-8 -64 -11 -100 -11 -142v-38zM208 -88c-27 -70 -48 -103 -95 -164 l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x1EA0: [700,193,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM439 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EA1: [469,193,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM296 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EA2: [946,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM479 887c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7 l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EA3: [703,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM333 644c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47 c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EA4: [1046,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM510 1019c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27zM561 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EA5: [803,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM364 776c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27zM415 509h-38l-131 84l-131 -84h-37 l134 135h68'], + 0x1EA6: [1046,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM517 907h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26zM561 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EA7: [803,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM371 664h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26zM415 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EA8: [1088,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM561 1029c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7 l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59zM561 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EA9: [845,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM415 786c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47 c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59zM415 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EAA: [1022,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM558 1022c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29z M561 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EAB: [779,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM412 779c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100 c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29zM415 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EAC: [887,193,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM560 752h-38l-131 84l-131 -84h-37l134 135h68zM439 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EAD: [676,193,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM402 509h-35l-121 103l-121 -103h-35l125 167h62zM296 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50 c29 0 49 -21 49 -50'], + 0x1EAE: [1043,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM550 1016c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27zM545 884c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x1EAF: [800,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM404 773c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27zM399 641c-6 -84 -65 -129 -153 -129 s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x1EB0: [1043,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM477 904h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26zM545 884c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x1EB1: [800,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM331 661h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26zM399 641c-6 -84 -65 -129 -153 -129 s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x1EB2: [1045,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM480 986c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7 l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59zM545 884c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x1EB3: [802,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM334 743c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47 c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59zM399 641c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x1EB4: [1015,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM558 1015c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29z M545 884c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x1EB5: [772,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM412 772c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100 c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29zM399 641c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x1EB6: [884,193,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253zM544 884c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33zM439 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EB7: [671,193,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79zM387 671c-2 -44 -8 -66 -24 -93c-24 -42 -66 -65 -117 -65c-54 0 -97 25 -121 71c-13 26 -18 46 -20 87h30c3 -57 49 -98 111 -98 s108 41 111 98h30zM296 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EB8: [692,193,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM356 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EB9: [469,193,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM312 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EBA: [946,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM393 887c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12 c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EBB: [703,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM349 644c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12 c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EBC: [872,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM471 872c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26 c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x1EBD: [645,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM427 645c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26 c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x1EBE: [1046,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM423 1019c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27z M474 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EBF: [803,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM380 776c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27z M431 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EC0: [1046,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM430 907h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26zM474 752h-38l-131 84 l-131 -84h-37l134 135h68'], + 0x1EC1: [803,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM387 664h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26zM431 509h-38l-131 84 l-131 -84h-37l134 135h68'], + 0x1EC2: [1088,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM474 1029c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12 c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59zM474 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EC3: [845,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM431 786c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12 c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59zM431 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EC4: [1022,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM471 1022c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26 c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29zM474 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EC5: [779,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM428 779c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26 c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29zM431 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1EC6: [887,193,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35zM474 752h-38l-131 84l-131 -84h-37l134 135h68zM356 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50 s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EC7: [676,193,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6zM418 509h-35l-121 103l-121 -103h-35l125 167h62zM312 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50 s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EC8: [946,3,337,22,315,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM256 887c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12 c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EC9: [703,3,287,21,271,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM233 644c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47 c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1ECA: [692,193,337,22,315,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30zM219 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1ECB: [642,193,287,21,271,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM196 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM196 -143c0 -30 -20 -50 -50 -50 s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1ECC: [709,193,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM452 -143c0 -30 -20 -50 -50 -50 s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1ECD: [469,193,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM329 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50 s20 50 51 50c29 0 49 -21 49 -50'], + 0x1ECE: [946,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM489 887c0 -21 -20 -42 -51 -62 c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1ECF: [703,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM366 644c0 -21 -20 -42 -51 -62 c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1ED0: [1046,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM520 1019c0 -15 -8 -22 -43 -39 l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27zM571 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1ED1: [803,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM397 776c0 -15 -8 -22 -43 -39l-156 -73h-43 l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27zM448 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1ED2: [1046,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM527 907h-43l-156 73 c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26zM571 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1ED3: [803,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM404 664h-43l-156 73c-35 17 -43 24 -43 39 s15 27 33 27c17 -1 37 -9 60 -26zM448 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1ED4: [1088,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM571 1029c0 -21 -20 -42 -51 -62 c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59zM571 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1ED5: [845,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM448 786c0 -21 -20 -42 -51 -62 c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59zM448 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1ED6: [1022,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM568 1022c-4 -58 -52 -105 -109 -105 c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29zM571 752h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1ED7: [779,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM445 779c-4 -58 -52 -105 -109 -105 c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29zM448 509h-38l-131 84l-131 -84h-37l134 135h68'], + 0x1ED8: [887,193,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM570 752h-38l-131 84l-131 -84h-37 l134 135h68zM452 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1ED9: [676,193,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM435 509h-35l-121 103l-121 -103h-35l125 167 h62zM329 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EDA: [888,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c88 0 164 -21 222 -60c31 20 37 49 37 85c0 9 -1 18 -1 28c45 9 54 12 86 19l11 -7c-8 -27 -40 -110 -99 -151c68 -59 106 -147 106 -256zM657 337c0 208 -101 330 -272 330 c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM539 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x1EDB: [677,20,546,32,567,'567 525c-8 -27 -39 -107 -96 -149c27 -38 43 -85 43 -139c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c66 0 123 -23 164 -62c23 20 28 46 28 78c0 9 -1 18 -1 28c45 9 54 12 86 19zM421 200c0 136 -68 236 -160 236 c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM408 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0x1EDC: [888,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c88 0 164 -21 222 -60c31 20 37 49 37 85c0 9 -1 18 -1 28c45 9 54 12 86 19l11 -7c-8 -27 -40 -110 -99 -151c68 -59 106 -147 106 -256zM657 337c0 208 -101 330 -272 330 c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM507 749h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26'], + 0x1EDD: [677,20,546,32,567,'567 525c-8 -27 -39 -107 -96 -149c27 -38 43 -85 43 -139c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c66 0 123 -23 164 -62c23 20 28 46 28 78c0 9 -1 18 -1 28c45 9 54 12 86 19zM421 200c0 136 -68 236 -160 236 c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM362 506h-40l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0x1EDE: [946,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c88 0 164 -21 222 -60c31 20 37 49 37 85c0 9 -1 18 -1 28c45 9 54 12 86 19l11 -7c-8 -27 -40 -110 -99 -151c68 -59 106 -147 106 -256zM657 337c0 208 -101 330 -272 330 c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM489 887c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21 l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EDF: [703,20,546,32,567,'567 525c-8 -27 -39 -107 -96 -149c27 -38 43 -85 43 -139c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c66 0 123 -23 164 -62c23 20 28 46 28 78c0 9 -1 18 -1 28c45 9 54 12 86 19zM421 200c0 136 -68 236 -160 236 c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM360 644c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7 l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EE0: [872,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c88 0 164 -21 222 -60c31 20 37 49 37 85c0 9 -1 18 -1 28c45 9 54 12 86 19l11 -7c-8 -27 -40 -110 -99 -151c68 -59 106 -147 106 -256zM657 337c0 208 -101 330 -272 330 c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM568 872c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50 h29'], + 0x1EE1: [645,20,546,32,567,'567 525c-8 -27 -39 -107 -96 -149c27 -38 43 -85 43 -139c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c66 0 123 -23 164 -62c23 20 28 46 28 78c0 9 -1 18 -1 28c45 9 54 12 86 19zM421 200c0 136 -68 236 -160 236 c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM438 645c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x1EE2: [781,193,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c88 0 164 -21 222 -60c31 20 37 49 37 85c0 9 -1 18 -1 28c45 9 54 12 86 19l11 -7c-8 -27 -40 -110 -99 -151c68 -59 106 -147 106 -256zM657 337c0 208 -101 330 -272 330 c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315zM452 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EE3: [532,193,546,32,567,'567 525c-8 -27 -39 -107 -96 -149c27 -38 43 -85 43 -139c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c66 0 123 -23 164 -62c23 20 28 46 28 78c0 9 -1 18 -1 28c45 9 54 12 86 19zM421 200c0 136 -68 236 -160 236 c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187zM323 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EE4: [692,193,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM462 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EE5: [469,193,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM351 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EE6: [946,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30zM499 887c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7 l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EE7: [703,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30zM388 644c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37 c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EE8: [888,20,778,12,801,'801 774c-9 -32 -54 -145 -137 -169v-325c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30h141v-45c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM549 861c0 -15 -8 -22 -43 -39l-156 -73h-43l149 113c23 17 43 25 60 26c18 0 33 -12 33 -27'], + 0x1EE9: [677,12,640,18,640,'640 525c-9 -32 -54 -145 -137 -169v-254c0 -64 3 -70 37 -72l41 -3v-30l-83 3l-83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91 c16 -19 44 -30 79 -30c39 0 71 14 99 42c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-67c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM437 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0x1EEA: [888,20,778,12,801,'801 774c-9 -32 -54 -145 -137 -169v-325c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30h141v-45c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM517 749h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26'], + 0x1EEB: [677,12,640,18,640,'640 525c-9 -32 -54 -145 -137 -169v-254c0 -64 3 -70 37 -72l41 -3v-30l-83 3l-83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91 c16 -19 44 -30 79 -30c39 0 71 14 99 42c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-67c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM390 506h-40l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0x1EEC: [946,20,778,12,801,'801 774c-9 -32 -54 -145 -137 -169v-325c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30h141v-45c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM499 887c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37 c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EED: [703,12,640,18,640,'640 525c-9 -32 -54 -145 -137 -169v-254c0 -64 3 -70 37 -72l41 -3v-30l-83 3l-83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91 c16 -19 44 -30 79 -30c39 0 71 14 99 42c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-67c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM389 644c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12 c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EEE: [872,20,778,12,801,'801 774c-9 -32 -54 -145 -137 -169v-325c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30h141v-45c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM578 872c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30 c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x1EEF: [645,12,640,18,640,'640 525c-9 -32 -54 -145 -137 -169v-254c0 -64 3 -70 37 -72l41 -3v-30l-83 3l-83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91 c16 -19 44 -30 79 -30c39 0 71 14 99 42c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-67c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM467 645c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26 c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x1EF0: [781,193,778,12,801,'801 774c-9 -32 -54 -145 -137 -169v-325c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30h141v-45c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM462 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EF1: [532,193,640,18,640,'640 525c-9 -32 -54 -145 -137 -169v-254c0 -64 3 -70 37 -72l41 -3v-30l-83 3l-83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91 c16 -19 44 -30 79 -30c39 0 71 14 99 42c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-67c34 20 41 50 41 87c0 9 -1 18 -1 28c45 9 54 12 86 19zM352 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EF2: [888,3,667,9,654,'654 679c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v142c0 16 -3 30 -9 40l-124 216c-42 73 -94 126 -128 130l-29 3v29l120 25c18 0 59 -45 91 -103l143 -261l103 163 c39 62 70 116 108 190h80v-15zM452 749h-43l-156 73c-35 17 -43 24 -43 39s15 27 33 27c17 -1 37 -9 60 -26'], + 0x1EF3: [677,283,556,12,544,'544 431l-28 -2c-25 -2 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61l-165 404c-14 35 -27 46 -52 49l-18 2v28l116 -3l116 3v-28l-38 -2c-39 -2 -41 -21 -24 -65l64 -168 c19 -49 29 -72 51 -110l119 292c15 36 6 48 -36 51l-26 2v28c32 -2 63 -3 95 -3s63 1 95 3v-28zM388 506h-40l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0x1EF4: [705,193,667,9,654,'654 679c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v142c0 16 -3 30 -9 40l-124 216c-42 73 -94 126 -128 130l-29 3v29l120 25c18 0 59 -45 91 -103l143 -261l103 163 c39 62 70 116 108 190h80v-15zM397 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EF5: [459,283,556,12,544,'544 431l-28 -2c-25 -2 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61l-165 404c-14 35 -27 46 -52 49l-18 2v28l116 -3l116 3v-28l-38 -2c-39 -2 -41 -21 -24 -65l64 -168 c19 -49 29 -72 51 -110l119 292c15 36 6 48 -36 51l-26 2v28c32 -2 63 -3 95 -3s63 1 95 3v-28zM467 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x1EF6: [946,3,667,9,654,'654 679c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v142c0 16 -3 30 -9 40l-124 216c-42 73 -94 126 -128 130l-29 3v29l120 25c18 0 59 -45 91 -103l143 -261l103 163 c39 62 70 116 108 190h80v-15zM434 887c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14 c51 0 88 -26 88 -59'], + 0x1EF7: [703,283,556,12,544,'544 431l-28 -2c-25 -2 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61l-165 404c-14 35 -27 46 -52 49l-18 2v28l116 -3l116 3v-28l-38 -2c-39 -2 -41 -21 -24 -65l64 -168 c19 -49 29 -72 51 -110l119 292c15 36 6 48 -36 51l-26 2v28c32 -2 63 -3 95 -3s63 1 95 3v-28zM386 644c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24 c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x1EF8: [872,3,667,9,654,'654 679c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v142c0 16 -3 30 -9 40l-124 216c-42 73 -94 126 -128 130l-29 3v29l120 25c18 0 59 -45 91 -103l143 -261l103 163 c39 62 70 116 108 190h80v-15zM513 872c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x1EF9: [645,283,556,12,544,'544 431l-28 -2c-25 -2 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61l-165 404c-14 35 -27 46 -52 49l-18 2v28l116 -3l116 3v-28l-38 -2c-39 -2 -41 -21 -24 -65l64 -168 c19 -49 29 -72 51 -110l119 292c15 36 6 48 -36 51l-26 2v28c32 -2 63 -3 95 -3s63 1 95 3v-28zM464 645c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15 c28 0 44 13 59 50h29'], + 0xFB00: [728,3,623,23,631,'631 640l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -27 -70 -143v-85l131 4l-7 -53h-124v-283c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v283h-206v-283c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v283l-69 -4v22 l69 31v42c0 66 13 111 42 144l58 66c23 26 57 42 88 42c15 0 27 -3 47 -11v-77l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -27 -70 -143v-85h206v42c0 66 13 111 42 144l58 66c23 26 57 42 88 42c15 0 27 -3 47 -11v-77'], + 0xFB01: [728,3,605,23,587,'341 640l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -28 -70 -143v-85c44 0 87 1 131 4l-7 -53h-124v-283c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v283l-69 -4v22l69 31v42c0 66 13 111 42 144l58 66c22 25 57 42 89 42c13 0 25 -3 46 -11 v-77zM587 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v223c0 66 -4 73 -44 73h-37v28c59 7 112 21 156 43l9 -7v-360c0 -63 3 -70 37 -72l46 -3v-30zM517 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xFB02: [728,3,608,23,590,'590 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v504c0 36 -9 55 -25 55h-42v-21l-22 -6c-30 21 -48 28 -75 28c-56 0 -69 -28 -69 -143v-85c44 0 87 1 131 4l-7 -53h-124v-283c0 -63 3 -70 37 -72l52 -3v-30l-130 3l-126 -3v30l46 3c34 2 37 9 37 72v283l-69 -4v22 l69 31v42c0 66 13 111 42 144l58 66c23 26 57 42 88 42c10 0 19 -1 40 -6c9 -2 11 -3 22 -5v-28c67 14 100 22 142 37l9 -10v-614c0 -63 3 -70 37 -72l46 -3v-30'], + 0xFB03: [728,3,897,23,876,'806 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM876 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v223c0 66 -4 73 -44 73h-37v28c59 7 112 21 156 43l9 -7v-360c0 -63 3 -70 37 -72l46 -3v-30zM630 640l-12 -6c-24 21 -42 28 -69 28 c-57 0 -70 -27 -70 -143v-85l121 4l-7 -53h-114v-283c0 -63 3 -70 37 -72l52 -3v-30l-130 3l-126 -3v30l46 3c34 2 37 9 37 72v283h-205v-283c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v283l-69 -4v22l69 31v42c0 66 13 111 42 144l58 66 c23 26 57 42 88 42c15 0 27 -3 47 -11v-77l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -27 -70 -143v-85h205v42c0 66 13 111 42 144l58 66c23 26 57 42 88 42c15 0 27 -3 47 -11v-77'], + 0xFB04: [728,3,900,23,880,'880 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v504c0 36 -9 55 -25 55h-42v-21l-22 -6c-30 21 -48 28 -75 28c-56 0 -69 -28 -69 -143v-85l131 4l-7 -53h-124v-283c0 -63 3 -70 37 -72l52 -3v-30l-130 3l-126 -3v30l46 3c34 2 37 9 37 72v283h-206v-283 c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v283l-69 -4v22l69 31v42c0 66 13 111 42 144l58 66c23 26 57 42 88 42c15 0 27 -3 47 -11v-77l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -27 -70 -143v-85h206v42c0 66 13 111 42 144l58 66 c23 26 57 42 88 42c10 0 19 -1 40 -6c9 -2 11 -3 22 -5v-28c67 14 100 22 142 37l9 -10v-614c0 -63 3 -70 37 -72l46 -3v-30'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Latin/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Main/Regular/Main.js new file mode 100644 index 0000000..5fb2dfe --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Main/Regular/Main.js @@ -0,0 +1,533 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Main'] = { + directory: 'Main/Regular', + family: 'GyrePagellaMathJax_Main', + id: 'GYREPAGELLAMAIN', + 0x20: [0,0,250,0,0,''], + 0x21: [694,5,278,81,197,'197 53c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58c31 0 59 -28 59 -58zM194 669c0 -22 -2 -54 -7 -95l-29 -326v-25l-28 -23l-10 5l-2 40l-33 411l75 38h34v-25'], + 0x22: [709,-469,371,52,318,'137 665l-32 -196h-20l-33 196v5c0 19 22 39 43 39s42 -20 42 -38v-6zM318 665l-32 -196h-20l-33 196v5c0 19 22 39 43 39s42 -20 42 -38v-6'], + 0x23: [684,0,500,4,495,'495 419h-105l-20 -139h100v-56h-109l-31 -224h-58l31 224h-134l-33 -224h-58l33 224h-107v56h116l21 139h-110v56h118l31 209h58l-31 -209h133l30 209h58l-30 -209h97v-56zM332 419h-133l-21 -139h134'], + 0x24: [731,116,500,30,471,'471 207c0 -75 -34 -139 -97 -180c-33 -22 -59 -32 -114 -43l4 -100h-45c2 21 2 34 4 98c-62 1 -128 16 -193 42c6 39 9 69 12 148h32v-64c0 -24 2 -29 14 -41c28 -27 70 -42 135 -49v279c-79 9 -114 19 -143 41c-34 25 -50 64 -50 120c0 74 31 134 88 171 c30 20 54 28 105 37l-4 65h45c-2 -19 -3 -31 -4 -62c80 -6 119 -16 166 -43c-9 -33 -13 -72 -13 -126h-32v42c0 37 -4 49 -23 62c-25 16 -52 25 -98 29v-260c87 -9 125 -20 157 -43c36 -26 54 -66 54 -123zM392 173c0 73 -34 104 -132 119v-274c80 14 132 74 132 155z M223 379v251c-36 -4 -52 -10 -72 -26c-30 -24 -46 -63 -46 -110c0 -73 32 -104 118 -115'], + 0x25: [709,20,840,39,802,'355 535c0 -96 -69 -167 -162 -167c-89 0 -154 65 -154 154c0 97 69 167 164 167c87 0 152 -66 152 -154zM283 533c0 82 -32 133 -83 133c-55 0 -89 -54 -89 -140s30 -135 83 -135c54 0 89 56 89 142zM802 167c0 -96 -69 -167 -162 -167c-89 0 -154 65 -154 154 c0 97 69 167 164 167c87 0 152 -66 152 -154zM730 165c0 82 -32 133 -83 133c-55 0 -89 -54 -89 -140s30 -135 83 -135c54 0 89 56 89 142zM616 709l-366 -729h-40l366 729h40'], + 0x26: [689,20,778,43,753,'753 49l-87 -63c-6 -4 -16 -6 -34 -6c-48 0 -123 32 -181 77c-71 -55 -129 -77 -202 -77c-119 0 -206 80 -206 192c0 50 18 96 53 137c26 29 48 47 102 78c-21 53 -30 92 -30 133s9 73 24 86l68 60c18 16 39 23 66 23c62 0 98 -33 98 -90c0 -46 -20 -89 -64 -136 c-20 -20 -38 -35 -80 -66c56 -91 115 -165 204 -256c36 48 48 77 48 113c0 41 -12 76 -27 80c-12 3 -28 5 -87 10l33 45l97 -2c76 0 194 7 194 7c-9 -29 -12 -47 -12 -72c-39 6 -69 9 -140 12c4 -15 5 -24 5 -39c0 -63 -22 -111 -81 -177c85 -49 123 -63 172 -63 c17 0 31 5 61 19zM420 82c-113 126 -162 189 -207 270c-61 -48 -83 -85 -83 -143c0 -93 77 -173 166 -173c40 0 77 14 124 46zM357 569c0 38 -25 67 -58 67c-40 0 -61 -28 -61 -79c0 -35 7 -70 26 -126c54 38 93 92 93 138'], + 0x27: [709,-469,208,61,146,'146 665l-32 -196h-20l-33 196v5c0 19 22 39 43 39s42 -20 42 -38v-6'], + 0x28: [664,164,424,120,344,'344 636c-111 -112 -164 -237 -164 -353v-66c0 -116 53 -241 164 -353c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-123 123 -196 254 -196 381v66c0 127 73 258 196 381c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x29: [664,164,424,80,304,'304 217c0 -127 -73 -258 -196 -381c-3 6 -7 11 -12 16s-10 9 -16 12c111 112 164 237 164 353v66c0 116 -53 241 -164 353c6 3 11 7 16 12s9 10 12 16c123 -123 196 -254 196 -381v-66'], + 0x2A: [702,-359,390,32,358,'358 498l-10 -8l-136 23l64 -122l-5 -12l-61 -20l-11 7l-20 136l-96 -98l-13 1l-38 52l3 12l123 61l-123 62l-3 12l38 52l13 1l96 -98l20 136l11 7l61 -20l5 -12l-64 -122l136 23l10 -9v-64'], + 0x2B: [550,50,760,80,680,'680 220h-270v-270c-10 2 -20 3 -30 3s-20 -1 -30 -3v270h-270c2 10 3 20 3 30s-1 20 -3 30h270v270c10 -2 20 -3 30 -3s20 1 30 3v-270h270c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2C: [123,155,250,16,218,'218 109c-28 -77 -66 -140 -147 -245l-41 -19l-14 11c58 96 83 161 90 237c53 15 71 21 98 30'], + 0x2D: [287,-215,333,17,312,'312 282l-30 -67h-260l-5 5l27 67h263'], + 0x2E: [111,5,250,67,183,'183 53c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58c31 0 59 -28 59 -58'], + 0x2F: [650,150,486,80,406,'406 650l-275 -800c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0x30: [689,20,500,29,465,'465 366c0 -256 -76 -386 -227 -386c-62 0 -118 28 -153 77s-56 150 -56 267c0 242 79 365 234 365c137 0 202 -104 202 -323zM381 316c0 240 -39 338 -136 338c-95 0 -132 -83 -132 -294c0 -244 41 -345 138 -345c92 0 130 88 130 301'], + 0x31: [694,3,500,60,418,'418 -3l-157 3l-165 -3v30l56 3c54 3 65 14 65 66v485c0 24 -2 33 -8 33l-3 -1l-129 -58h-10l-7 43c91 32 162 62 227 96l14 -5v-593c0 -52 10 -63 65 -66l52 -3v-30'], + 0x32: [689,3,500,16,468,'468 -3l-229 3l-223 -3v26l170 181c113 120 155 194 155 269c0 85 -55 139 -141 139c-67 0 -103 -25 -119 -83l-13 -46h-29l17 136c49 50 98 70 170 70c127 0 205 -71 205 -186c0 -75 -30 -130 -127 -233l-182 -193l346 10c-2 -22 -2 -32 -2 -45c0 -14 0 -24 2 -45'], + 0x33: [689,20,500,15,462,'462 224c0 -47 -17 -91 -51 -132c-55 -67 -147 -112 -227 -112c-37 0 -81 8 -134 26c-6 50 -14 86 -35 147l27 10c19 -54 32 -77 56 -99c30 -28 71 -43 117 -43c93 0 154 67 154 169c0 91 -48 144 -131 144c-27 0 -46 -5 -84 -22l-7 6l12 53s39 -3 47 -3 c71 0 130 63 130 138c0 63 -53 116 -118 116c-52 0 -115 -34 -126 -68l-18 -56h-31l29 124c48 48 93 67 161 67c111 0 185 -59 185 -148c0 -59 -30 -105 -110 -167c50 -9 73 -17 98 -35c36 -25 56 -67 56 -115'], + 0x34: [694,3,500,2,472,'472 -3l-153 3l-161 -3v30l62 3c49 2 60 16 60 76v75h-267l-11 23l283 463l74 27l12 -5c-5 -41 -7 -127 -7 -305v-139h27c32 0 81 3 81 3v-71c-28 3 -49 4 -108 4v-75c0 -60 11 -73 60 -76l48 -3v-30zM280 245v352l-215 -352h215'], + 0x35: [689,20,500,13,459,'459 253c0 -74 -32 -142 -93 -196c-55 -48 -126 -77 -193 -77c-43 0 -83 9 -111 24c-14 44 -26 76 -49 133l24 14l46 -82c14 -26 64 -44 118 -44c109 0 173 65 173 176c0 108 -60 176 -156 176c-49 0 -76 -14 -123 -61l-20 6c3 44 6 137 6 225l-2 137l5 5s106 -5 174 -5 s174 5 174 5l5 -5c-2 -18 -2 -24 -2 -40c0 -15 0 -21 2 -39l-5 -5l-305 5l-9 -209c62 37 98 50 146 50c114 0 195 -80 195 -193'], + 0x36: [689,20,500,32,468,'468 219c0 -136 -97 -239 -227 -239c-129 0 -209 102 -209 267c0 137 56 259 159 346c51 44 92 64 188 96l37 -17v-8c-180 -54 -264 -152 -285 -333c66 54 103 78 162 78c106 0 175 -75 175 -190zM382 184c0 99 -51 165 -127 165c-48 0 -95 -24 -117 -58 c-11 -17 -15 -36 -15 -71c0 -134 46 -207 131 -207c77 0 128 67 128 171'], + 0x37: [689,3,500,44,497,'497 659l-183 -329c-89 -159 -115 -224 -157 -333c0 0 -28 3 -46 3s-46 -3 -46 -3l-9 13l244 392c38 61 69 119 109 201h-267c-46 0 -53 -8 -61 -70l-7 -56h-30s3 62 3 102c0 41 -3 105 -3 105l10 5c97 -4 114 -5 219 -5c107 0 116 1 224 5v-30'], + 0x38: [689,20,500,30,464,'464 206c0 -124 -108 -226 -238 -226c-113 0 -196 76 -196 179c0 52 20 97 58 135c22 21 39 32 80 51c-88 57 -115 95 -115 163c0 105 87 181 206 181c106 0 177 -58 177 -144c0 -60 -32 -102 -123 -164c114 -52 151 -95 151 -175zM385 164c0 54 -38 103 -101 131l-80 36 c-74 -45 -103 -91 -103 -164c0 -93 55 -153 140 -153c81 0 144 66 144 150zM368 534c0 73 -48 121 -121 121c-71 0 -119 -45 -119 -111c0 -50 32 -90 95 -121l55 -27c65 42 90 81 90 138'], + 0x39: [689,20,500,20,457,'457 417c0 -134 -51 -249 -148 -332c-54 -46 -102 -69 -213 -105l-34 17v8c181 44 290 167 298 335l-70 -58c-18 -15 -57 -26 -91 -26c-104 0 -179 84 -179 199c0 134 96 234 224 234c132 0 213 -103 213 -272zM370 471c0 45 -12 94 -30 126c-22 40 -55 59 -100 59 c-82 0 -134 -63 -134 -164c0 -104 54 -175 134 -175c77 0 130 62 130 154'], + 0x3A: [456,5,250,66,182,'182 53c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58c31 0 59 -28 59 -58zM182 397c0 -30 -28 -57 -60 -57c-29 0 -56 28 -56 58s27 58 57 58c31 0 59 -28 59 -59'], + 0x3B: [456,153,250,16,218,'218 111c-28 -77 -66 -140 -147 -245l-41 -19l-14 11c58 96 83 161 90 237c53 15 71 21 98 30zM209 397c0 -30 -28 -57 -60 -57c-29 0 -56 28 -56 58s27 58 57 58c31 0 59 -28 59 -59'], + 0x3C: [563,63,767,80,687,'687 -63l-607 283c2 10 3 20 3 30s-1 20 -3 30l607 283c-2 -11 -3 -22 -3 -33s1 -22 3 -33l-529 -247l529 -247c-2 -11 -3 -22 -3 -33s1 -22 3 -33'], + 0x3D: [390,-110,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x3E: [563,63,767,80,687,'687 220l-607 -283c2 11 3 22 3 33s-1 22 -3 33l529 247l-529 247c2 11 3 22 3 33s-1 22 -3 33l607 -283c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x3F: [694,5,444,43,395,'395 540c0 -57 -25 -96 -110 -174c-81 -73 -94 -90 -94 -123c0 -16 6 -29 22 -48l-21 -14c-30 19 -44 43 -44 73c0 34 16 61 77 128c59 65 77 97 77 137c0 64 -51 109 -123 109c-45 0 -76 -15 -87 -42l-20 -48l-29 8l38 113c53 26 88 35 132 35c103 0 182 -67 182 -154z M257 53c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58c31 0 59 -28 59 -58'], + 0x40: [694,20,747,24,724,'724 409c0 -137 -117 -275 -233 -275c-44 0 -71 30 -76 84c-50 -63 -76 -79 -123 -79c-74 0 -133 62 -133 141c0 119 104 229 217 229c48 0 76 -25 88 -80l18 70h88l-77 -279c-8 -30 -2 -57 21 -57c75 0 157 127 157 242c0 137 -117 239 -274 239 c-182 0 -318 -131 -318 -307s137 -307 322 -307c45 0 84 8 122 25c56 25 87 51 135 116h61c-31 -51 -47 -71 -79 -99c-69 -61 -153 -92 -246 -92c-208 0 -370 154 -370 351c0 204 161 363 369 363c186 0 331 -125 331 -285zM445 410c0 41 -21 72 -52 72 c-29 0 -61 -19 -88 -58c-32 -47 -57 -121 -57 -170c0 -53 24 -88 60 -88c33 0 63 23 88 68c28 49 49 125 49 176'], + 0x41: [700,3,778,15,756,'756 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM493 269l-126 298l-127 -298h253'], + 0x42: [692,3,611,26,576,'576 228c0 -70 -35 -138 -94 -180c-45 -33 -110 -51 -184 -51c-41 0 -83 3 -124 3c-36 0 -73 -1 -109 -3v23l26 10c14 5 22 28 22 65v474c0 79 -4 86 -51 90l-36 3v30l158 -3c60 0 119 3 179 3c121 0 179 -48 179 -136c0 -52 -25 -95 -73 -128c-28 -19 -51 -28 -100 -38 c77 -6 111 -15 149 -43c38 -27 58 -68 58 -119zM473 208c0 107 -63 156 -198 156c-19 0 -28 0 -67 -2v-315c25 -6 48 -8 77 -8c119 0 188 63 188 169zM443 533c0 83 -47 119 -154 119c-32 0 -55 -2 -81 -8v-243c31 -2 44 -2 61 -2c114 0 174 47 174 134'], + 0x43: [709,20,709,22,670,'670 84l-28 -50c-69 -36 -144 -54 -227 -54c-235 0 -393 146 -393 362c0 135 60 240 174 307c67 39 150 60 237 60c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72c0 39 -101 79 -199 79c-172 0 -286 -122 -286 -306c0 -197 130 -327 325 -327 c76 0 145 20 207 60'], + 0x44: [692,3,774,22,751,'751 385c0 -107 -44 -215 -116 -286c-70 -69 -166 -102 -294 -102c-48 0 -97 3 -145 3l-139 -3v23l31 16c16 8 25 30 25 59v474c0 78 -5 87 -51 90l-40 3v30l206 -3c58 0 116 3 174 3c211 0 349 -121 349 -307zM644 359c0 100 -23 172 -71 220c-53 53 -143 73 -254 73 c-50 0 -85 -3 -111 -8v-595c26 -6 57 -8 103 -8c113 0 173 17 233 66c66 54 100 140 100 252'], + 0x45: [692,3,611,22,572,'572 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35'], + 0x46: [692,3,556,22,536,'536 689c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 28 -27 34c-31 8 -87 14 -135 14c-59 0 -77 -1 -107 -8v-267c44 -3 104 -4 158 -4c44 0 69 4 72 38l5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-207c0 -79 5 -87 51 -90l48 -3v-30l-147 3 l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l176 -3l216 3'], + 0x47: [709,20,763,22,728,'728 246l-29 -10c-10 -4 -11 -6 -11 -37v-168c-136 -38 -205 -51 -276 -51c-116 0 -223 41 -293 109c-62 62 -97 151 -97 252c0 222 170 368 428 368c80 0 131 -9 242 -41c-14 -54 -20 -101 -20 -152h-31v53c0 38 -25 61 -83 80c-38 12 -82 18 -134 18 c-187 0 -295 -112 -295 -305c0 -208 126 -340 324 -340c66 0 126 14 137 33c4 7 6 19 6 43v101c0 24 -9 33 -34 35l-83 7v30l122 -3l123 3'], + 0x48: [692,3,832,22,810,'810 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v223c-27 2 -43 2 -83 2h-234c-40 0 -56 0 -83 -2v-223c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-178 c20 -1 42 -2 83 -2h234c41 0 62 1 83 2v178c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30'], + 0x49: [692,3,337,22,315,'315 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30'], + 0x4A: [692,195,333,-15,311,'311 662l-48 -3c-46 -3 -51 -11 -51 -90v-452c0 -121 -13 -171 -62 -231c-39 -49 -102 -85 -136 -81l-24 3l-5 76l11 6c23 -14 43 -20 67 -20c40 0 54 29 54 113v586c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30'], + 0x4B: [692,3,726,22,719,'719 -3c-22 2 -43 3 -65 3c-27 0 -53 -1 -80 -3l-348 335l-10 -7v-205c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-214l278 271c16 16 29 33 29 39v27 c30 -2 59 -3 89 -3c27 0 53 1 80 3v-30l-42 -2c-26 -1 -51 -14 -78 -38l-266 -240l330 -312c31 -29 47 -40 62 -41l21 -2v-30'], + 0x4C: [692,3,611,22,586,'586 172c-10 -97 -14 -129 -21 -172c-136 -3 -126 -3 -168 -3l-233 3c-33 0 -66 -1 -99 -3v23l31 16c16 8 25 30 25 59v474c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-522c26 -6 49 -8 85 -8c119 0 206 7 219 18c6 5 13 26 22 65 l12 50h32'], + 0x4D: [692,13,946,16,926,'926 -3l-151 3l-128 -3v30l34 3c47 4 51 11 51 90v458l-44 -86l-178 -378c-21 -45 -29 -73 -54 -127h-20l-279 591v-458c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30c32 -2 63 -3 95 -3s63 1 95 3l264 -556 l262 556c32 -2 63 -3 95 -3c31 0 62 1 93 3v-30l-42 -3c-46 -3 -51 -12 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30'], + 0x4E: [692,20,831,17,813,'813 662l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -10 3 -27 3 -37l-90 16l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30l120 -3c21 0 54 3 54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30l116 -3 l120 3v-30'], + 0x4F: [709,20,786,22,764,'764 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315'], + 0x50: [692,3,604,22,580,'580 537c0 -120 -105 -213 -242 -213c-20 0 -34 1 -58 6l-10 36c26 -8 41 -10 62 -10c87 0 148 63 148 153c0 95 -58 145 -166 145c-34 0 -63 -4 -98 -12v-522c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 74 -8 87 -53 90l-45 3v30 l182 -3c57 0 113 3 170 3c127 0 205 -59 205 -155'], + 0x51: [709,176,786,22,764,'764 -120l-84 -56c-40 8 -71 15 -106 26l-148 46c-31 10 -59 15 -78 15c-10 0 -16 -2 -28 -8l-59 -32l2 32c56 43 90 69 109 76l5 2c-215 0 -355 143 -355 362c0 218 152 366 376 366s366 -131 366 -338c0 -144 -74 -274 -195 -343c-52 -30 -89 -40 -168 -47 c42 -5 59 -10 121 -37c80 -34 135 -49 183 -49c9 0 20 1 59 6v-21zM657 335c0 210 -100 332 -272 332c-165 0 -256 -104 -256 -292c0 -99 30 -195 80 -258c50 -62 118 -94 203 -94c157 0 245 112 245 312'], + 0x52: [692,3,668,22,669,'669 -3c-24 2 -48 3 -72 3c-23 0 -45 -1 -68 -3l-41 54l-184 247c-16 22 -24 33 -46 57v16h29c116 0 189 58 189 150c0 85 -58 133 -162 133c-34 0 -64 -4 -98 -12v-522c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 78 -5 87 -51 90 l-41 3v30l173 -3c60 0 119 3 179 3c130 0 195 -54 195 -150c0 -58 -28 -108 -80 -145c-33 -23 -59 -34 -115 -48l227 -296c13 -17 29 -23 61 -26v-30'], + 0x53: [709,20,525,24,503,'503 230c0 -145 -126 -250 -300 -250c-58 0 -116 13 -173 38c6 45 8 67 8 113c0 6 0 22 -1 40h32l8 -67c5 -41 83 -80 163 -80c104 0 179 65 179 155c0 38 -12 66 -38 88s-61 34 -138 45c-97 13 -143 29 -177 60c-29 27 -42 63 -42 112c0 131 108 225 257 225 c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-32l-6 57c-3 29 -14 44 -47 61c-27 15 -64 23 -103 23c-88 0 -151 -60 -151 -144c0 -77 43 -110 165 -126c112 -15 154 -28 189 -61c28 -26 41 -59 41 -106'], + 0x54: [692,3,613,18,595,'595 692c-5 -57 -7 -96 -7 -161h-31l-4 79c-1 24 -12 33 -40 33h-155c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v423c0 43 -1 66 -4 100h-155c-28 0 -39 -9 -40 -33l-4 -79h-31c0 65 -2 104 -7 161l203 -3h158'], + 0x55: [692,20,778,12,759,'759 662l-44 -3c-46 -3 -51 -12 -51 -90v-289c0 -111 -22 -186 -69 -233c-45 -46 -114 -67 -217 -67c-100 0 -171 21 -211 62c-38 39 -56 94 -56 172v355c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-344c0 -128 60 -183 199 -183 c145 0 213 66 213 207v320c0 78 -5 87 -51 90l-44 3v30l116 -3l120 3v-30'], + 0x56: [692,9,722,8,706,'706 662l-30 -3c-18 -2 -31 -17 -54 -72l-174 -421c-33 -80 -45 -113 -64 -175h-50c-15 54 -27 89 -58 165l-188 462c-12 29 -23 39 -44 41l-36 3v30l133 -3l133 3v-30l-56 -3c-27 -1 -35 -17 -30 -31l197 -507l183 473c14 35 11 63 -26 65l-52 3v30c36 -2 72 -3 108 -3 s72 1 108 3v-30'], + 0x57: [700,9,1000,8,984,'984 662l-32 -3c-22 -2 -33 -12 -38 -29l-153 -538l-27 -101h-50c-35 109 -38 117 -71 206l-125 339l-174 -442c-19 -47 -27 -71 -36 -103h-50l-142 618c-8 34 -21 47 -50 50l-28 3v30l126 -3l126 3v-30l-42 -3c-39 -3 -41 -28 -33 -66l100 -449l124 315 c53 134 69 179 90 241h32c8 -34 12 -42 33 -102l164 -461l132 489c5 20 -4 30 -46 33l-40 3v30c35 -2 70 -3 105 -3s70 1 105 3v-30'], + 0x58: [700,3,667,14,648,'648 -3c-24 2 -47 3 -71 3c-25 0 -49 -1 -74 -3l-184 306l-202 -306c-17 2 -34 3 -51 3s-35 -1 -52 -3v30l26 3c22 3 34 14 59 48l195 263l-128 213c-33 55 -68 88 -92 90l-45 3l-2 26l141 27c19 -10 34 -27 57 -65l128 -216l185 270h101v-30l-41 -3 c-15 -1 -28 -14 -68 -68l-154 -208l176 -280c33 -52 47 -68 66 -70l30 -3v-30'], + 0x59: [705,3,667,9,654,'654 679c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v142c0 16 -3 30 -9 40l-124 216c-42 73 -94 126 -128 130l-29 3v29l120 25c18 0 59 -45 91 -103l143 -261l103 163 c39 62 70 116 108 190h80v-15'], + 0x5A: [692,3,667,15,638,'638 173c-5 -55 -6 -90 -6 -176l-305 3l-312 -3v28s83 98 97 117l302 388c37 47 61 76 86 118h-228c-122 0 -149 -8 -152 -47l-6 -71h-34c2 37 3 49 3 81s-1 44 -3 81h165c90 0 142 -3 232 -3l156 3l4 -29l-486 -619h273c153 0 167 6 174 72l6 57h34'], + 0x5B: [670,170,410,120,330,'330 -130c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-210v840h210c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-150v-760h150'], + 0x5C: [650,150,486,80,406,'406 -150c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l-275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0x5D: [670,170,410,80,290,'290 -170h-210c2 6 3 13 3 20s-1 14 -3 20h150v760h-150c2 6 3 13 3 20s-1 14 -3 20h210v-840'], + 0x5E: [689,-283,606,51,554,'554 283h-68l-183 338l-184 -338h-68l219 406h66'], + 0x5F: [-75,125,500,0,500,'500 -125h-500v50h500v-50'], + 0x60: [677,-506,333,31,255,'255 506h-40l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0x61: [469,12,500,32,471,'471 -3c-25 2 -49 3 -74 3c-26 0 -52 -1 -78 -3l5 85l-124 -86c-7 -5 -24 -8 -42 -8c-79 0 -126 45 -126 123c0 87 57 134 193 159l99 18c-3 91 -42 128 -136 128c-46 0 -57 -7 -77 -54l-13 -31l-26 7v65l53 32c38 23 78 34 121 34c116 0 158 -53 158 -199v-183 c0 -49 4 -57 28 -58l39 -2v-30zM324 124v132c-76 -11 -131 -25 -156 -40c-30 -19 -50 -54 -50 -91c0 -43 35 -80 75 -80c39 0 102 38 131 79'], + 0x62: [726,12,553,-15,508,'508 270c0 -73 -35 -156 -79 -188l-100 -72c-21 -15 -47 -22 -86 -22c-53 0 -89 10 -129 36l-40 -36l-16 6c7 70 8 97 8 159v467c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-349l55 56c26 26 75 44 122 44c106 0 181 -83 181 -199zM421 229 c0 107 -53 175 -137 175c-41 0 -80 -17 -108 -46c-16 -18 -26 -36 -26 -50v-215c0 -22 74 -54 126 -54c85 0 145 78 145 190'], + 0x63: [469,20,444,26,413,'413 46l-21 -32c-10 -15 -85 -34 -137 -34c-134 0 -229 95 -229 230c0 88 37 158 107 202c60 38 116 57 164 57c41 0 76 -11 116 -35c-9 -36 -14 -77 -14 -123h-28l-7 61c-18 25 -66 45 -110 45c-90 0 -140 -60 -140 -167c0 -132 73 -218 184 -218c36 0 68 9 105 29'], + 0x64: [726,12,611,35,579,'579 -3c-30 2 -61 3 -91 3c-26 0 -51 -1 -77 -3l5 92l-111 -93c-5 -4 -28 -8 -48 -8c-65 0 -112 13 -146 42c-49 40 -76 106 -76 186c0 85 37 158 94 188l88 46c25 13 49 19 76 19c35 0 63 -8 119 -32v183c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-616 c0 -63 3 -70 37 -72l46 -3v-30zM412 221v129c0 8 -12 21 -33 35c-35 24 -75 37 -113 37c-90 0 -144 -64 -144 -173c0 -119 63 -204 151 -204c47 0 96 31 124 78c13 23 15 33 15 98'], + 0x65: [469,20,479,26,448,'448 279c0 -12 -1 -21 -2 -35c-69 -11 -112 -14 -181 -14h-146c2 -58 9 -86 28 -119c28 -49 82 -78 147 -78c43 0 66 9 130 47l13 -10l-20 -34c-4 -6 -25 -19 -52 -30c-41 -18 -78 -26 -115 -26c-75 0 -143 31 -182 84c-28 38 -42 92 -42 155c0 104 33 166 115 213 c41 24 84 37 121 37c112 0 186 -75 186 -190zM359 267c0 67 -10 96 -32 129c-18 27 -44 40 -77 40c-48 0 -91 -27 -112 -71c-13 -26 -17 -48 -17 -95c54 -5 80 -6 126 -6'], + 0x66: [728,3,333,23,341,'341 640l-12 -6c-24 21 -42 28 -69 28c-57 0 -70 -28 -70 -143v-85c44 0 87 1 131 4l-7 -53h-124v-283c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v283l-69 -4v22l69 31v42c0 66 13 111 42 144l58 66c22 25 57 42 89 42c13 0 25 -3 46 -11 v-77'], + 0x67: [469,283,556,32,544,'544 419l-25 -41h-92c8 -21 11 -34 11 -54c0 -53 -22 -93 -67 -126c-41 -29 -94 -48 -137 -48c-8 0 -14 1 -24 2c-4 -4 -6 -6 -12 -11c-26 -22 -34 -33 -34 -46c0 -27 24 -39 76 -39h160c70 0 118 -50 118 -122c0 -122 -119 -217 -270 -217c-127 0 -216 63 -216 154 c0 31 14 68 28 76l87 47c-48 14 -66 30 -66 58c0 15 5 28 15 43l79 61c-74 8 -120 59 -120 133c0 61 29 110 85 142c41 24 92 38 136 38c49 0 85 -12 122 -42l142 4zM354 294c0 85 -46 141 -114 141c-64 0 -101 -45 -101 -122s45 -129 112 -129c61 0 103 45 103 110z M439 -102c0 65 -39 88 -152 88c-69 0 -97 -3 -113 -10c-40 -18 -66 -58 -66 -103c0 -74 60 -125 147 -125c105 0 184 64 184 150'], + 0x68: [726,3,582,6,572,'572 -3c-28 2 -55 3 -83 3c-26 0 -53 -1 -79 -3v284c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30l-124 3l-124 -3v30l45 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-340l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-193c0 -64 3 -70 37 -72l41 -3v-30'], + 0x69: [642,3,291,21,271,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30zM196 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x6A: [642,283,234,-40,167,'159 -19c0 -79 -18 -143 -53 -189c-38 -50 -76 -71 -134 -75l-12 38c9 -2 22 -3 30 -3c58 0 85 75 85 241v334c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-484zM167 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x6B: [726,12,556,21,549,'549 17l-96 -29l-265 252v-138c0 -63 3 -70 37 -72l44 -3v-30l-122 3l-126 -3v30l46 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-457l73 59c39 31 86 75 150 139h100v-30c-34 0 -61 -11 -108 -47l-129 -101c17 -20 28 -33 64 -68 l126 -125c32 -31 61 -48 85 -48v-23'], + 0x6C: [726,3,291,21,271,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-616c0 -63 3 -70 37 -72l46 -3v-30'], + 0x6D: [469,3,883,16,869,'869 -3c-30 2 -59 3 -89 3c-26 0 -53 -1 -79 -3v284c0 76 -37 127 -91 127c-60 0 -126 -49 -126 -94v-212c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v179c0 76 -37 127 -91 127c-60 0 -126 -49 -126 -94v-212c0 -63 3 -70 37 -72l42 -3v-30 l-119 3l-127 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-85l69 64c18 16 46 25 83 25c69 0 110 -27 142 -93l76 68c18 16 47 25 82 25c92 0 150 -62 150 -161v-206c0 -63 3 -70 37 -72l47 -3v-30'], + 0x6E: [469,3,582,6,572,'572 -3c-28 2 -55 3 -83 3c-26 0 -53 -1 -79 -3v284c0 77 -44 127 -111 127c-61 0 -127 -49 -127 -94v-212c0 -63 3 -70 37 -72l45 -3v-30l-124 3l-124 -3v30l45 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-87l76 66c21 18 42 25 79 25 c112 0 167 -57 167 -174v-193c0 -64 3 -70 37 -72l41 -3v-30'], + 0x6F: [469,20,546,32,514,'514 237c0 -150 -110 -257 -264 -257c-129 0 -218 96 -218 237c0 149 101 252 247 252c137 0 235 -97 235 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187'], + 0x70: [469,281,601,8,554,'554 271c0 -64 -47 -167 -87 -193l-114 -74c-16 -10 -42 -16 -71 -16c-45 0 -77 7 -107 25v-189c0 -63 3 -70 37 -72l46 -3v-30l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v503c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-96l82 75c16 15 52 25 89 25 c116 0 208 -87 208 -198zM467 234c0 104 -60 170 -154 170c-50 0 -91 -19 -120 -56c-13 -17 -18 -28 -18 -42v-208c39 -41 80 -59 135 -59c90 0 157 83 157 195'], + 0x71: [469,281,560,35,560,'560 -281l-123 3l-139 -3v30l58 3c33 2 37 9 37 72v242l-104 -66c-13 -8 -30 -12 -51 -12c-124 0 -203 85 -203 216c0 87 33 153 97 194l84 54c15 9 50 17 79 17c43 0 86 -10 137 -33l49 31l19 -11c-17 -38 -23 -76 -23 -138v-494c0 -63 3 -70 37 -72l46 -3v-30zM393 120 v261c-35 29 -70 41 -119 41c-96 0 -152 -64 -152 -174c0 -121 61 -203 149 -203c24 0 47 7 71 20c27 15 51 41 51 55'], + 0x72: [469,3,395,21,374,'374 458l-9 -120h-21c-16 32 -37 46 -67 46c-49 0 -89 -50 -89 -110v-172c0 -66 2 -69 47 -72l52 -3v-30l-143 3l-123 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-103l56 66c21 25 53 41 83 41c18 0 36 -4 47 -11'], + 0x73: [469,20,424,30,391,'391 148c0 -98 -93 -168 -224 -168c-46 0 -85 7 -137 24c8 40 11 70 11 139h30v-41c0 -50 52 -85 125 -85c71 0 121 38 121 92c0 38 -19 59 -64 69c-68 15 -121 31 -148 43c-46 21 -68 55 -68 103c0 90 71 145 187 145c41 0 77 -7 130 -25c-3 -31 -4 -55 -5 -113h-28v23 c0 47 -51 82 -118 82c-61 0 -96 -28 -96 -78c0 -46 27 -66 109 -82c88 -17 121 -28 147 -54c20 -20 28 -43 28 -74'], + 0x74: [621,12,326,22,319,'319 436l-9 -54h-128v-262c0 -49 16 -69 55 -69c19 0 34 5 59 19l13 -17l-48 -53c-6 -7 -30 -12 -53 -12c-77 0 -110 32 -110 106v288l-76 -4v21l78 35v70c0 30 -1 49 -4 79c31 10 61 23 85 38l12 -11c-8 -64 -11 -100 -11 -142v-38'], + 0x75: [469,12,603,18,581,'581 -3c-28 2 -55 3 -83 3s-55 -1 -83 -3c3 47 4 63 4 92l-67 -62c-27 -25 -67 -39 -112 -39c-57 0 -95 15 -117 45c-18 25 -24 56 -24 126v168c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-295c0 -44 7 -75 21 -91c16 -19 44 -30 79 -30c39 0 71 14 99 42 c23 23 37 51 37 73v163c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -64 3 -70 37 -72l41 -3v-30'], + 0x76: [459,7,565,6,539,'539 431l-31 -2c-20 -1 -33 -16 -56 -67l-118 -260c-20 -45 -35 -76 -41 -109h-50l-172 403c-10 23 -13 32 -31 33l-34 2v28l116 -3l117 3v-28l-49 -2c-32 -1 -27 -29 -16 -57l119 -288l62 140l42 106c27 68 27 97 -5 99l-41 2v28c31 -2 63 -3 94 -3s63 1 94 3v-28'], + 0x77: [469,7,834,6,808,'808 431l-26 -2c-22 -2 -36 -16 -64 -87l-137 -349h-46l-136 342s-34 -70 -52 -112l-98 -230h-47l-102 336c-25 81 -38 98 -66 100l-28 2v28l119 -3l119 3v-28l-40 -2c-38 -2 -43 -19 -34 -49l84 -276l159 365h23c8 -27 15 -47 29 -81l115 -290l48 124l50 140 c14 40 8 65 -32 67l-34 2v28c33 -2 65 -3 98 -3s65 1 98 3v-28'], + 0x78: [469,3,516,20,496,'496 -3c-21 2 -41 3 -62 3c-20 0 -41 -1 -61 -3l-133 195l-74 -98c-53 -71 -60 -94 -60 -94h-86v27h17c10 0 23 6 30 15l149 176l-120 174c-10 14 -32 27 -50 29l-21 2l-5 26l116 20c34 -34 45 -47 60 -69l76 -116l124 175h82v-28h-14c-17 0 -28 -4 -34 -11l-142 -166 l148 -200c11 -15 23 -23 35 -24l25 -3v-30'], + 0x79: [459,283,556,12,544,'544 431l-28 -2c-25 -2 -44 -30 -84 -121l-203 -468c-38 -87 -81 -123 -148 -123c-19 0 -35 5 -54 15l24 75h13c17 -15 35 -23 51 -23c38 0 77 47 109 131l23 61l-165 404c-14 35 -27 46 -52 49l-18 2v28l116 -3l116 3v-28l-38 -2c-39 -2 -41 -21 -24 -65l64 -168 c19 -49 29 -72 51 -110l119 292c15 36 6 48 -36 51l-26 2v28c32 -2 63 -3 95 -3s63 1 95 3v-28'], + 0x7A: [462,3,500,16,466,'466 139l-6 -47c-6 -48 -9 -72 -9 -95l-276 3l-153 -3l-6 20l260 317c28 34 44 57 65 90h-143c-74 0 -92 -5 -96 -26l-12 -68h-30c6 69 7 81 9 132l248 -3l138 3v-30l-314 -397h135c96 0 138 7 142 25l18 79h30'], + 0x7B: [669,169,415,80,335,'335 -131c-3 -5 -6 -12 -8 -18c-2 -7 -2 -14 -2 -20c-95 25 -150 76 -150 152v134c0 70 -29 113 -95 113c2 6 3 13 3 20s-1 14 -3 20c66 0 95 43 95 113v134c0 76 55 127 150 152c0 -6 0 -13 2 -20c2 -6 5 -13 8 -18c-67 -18 -100 -60 -100 -114v-134 c0 -66 -23 -110 -65 -133c42 -23 65 -67 65 -133v-134c0 -54 33 -96 100 -114'], + 0x7C: [650,150,208,80,128,'128 -150c-8 2 -16 3 -24 3s-16 -1 -24 -3v800c8 -2 16 -3 24 -3s16 1 24 3v-800'], + 0x7D: [669,169,415,80,335,'335 230c-66 0 -95 -43 -95 -113v-134c0 -76 -55 -127 -150 -152c1 6 0 13 -2 20c-2 6 -4 13 -8 18c67 18 100 60 100 114v134c0 66 24 110 66 133c-42 23 -66 67 -66 133v134c0 54 -33 96 -100 114c4 5 6 12 8 18c2 7 3 14 2 20c95 -25 150 -76 150 -152v-134 c0 -70 29 -113 95 -113c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x7E: [341,-182,606,51,555,'555 314c-43 -78 -87 -113 -138 -113c-26 0 -54 9 -130 41c-63 27 -72 30 -96 30c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120c30 0 57 -8 128 -39c61 -27 79 -33 98 -33c37 0 74 29 105 84'], + 0xA0: [0,0,250,0,0,''], + 0xA3: [694,13,500,12,478,'478 668c-7 -35 -10 -70 -10 -102c0 -8 0 -19 1 -34h-33c-1 58 -7 79 -27 95c-17 13 -42 20 -71 20c-60 0 -97 -23 -122 -74c-16 -34 -24 -79 -24 -130v-89l182 6l-4 -48l-181 5c-5 -87 -32 -159 -94 -248c37 5 77 9 133 7l157 -6c10 0 17 -1 23 -1c19 0 25 8 29 37l7 52 h26v-148c-21 -17 -29 -20 -50 -20c-60 0 -123 7 -179 19c-56 13 -97 19 -162 23l-45 -45h-22v49c9 9 23 19 38 27c15 7 17 9 24 23c20 40 34 121 34 200v30l-96 -3l8 45l88 -3v106c0 65 33 120 99 168c63 45 116 65 173 65c41 0 64 -6 98 -26'], + 0xA5: [701,3,500,5,496,'496 679c-43 -60 -86 -136 -130 -229l-32 -68h122v-39h-139c-13 -29 -17 -46 -17 -65v-32h156v-39h-156v-87c0 -78 4 -87 44 -90l41 -3v-30l-130 3l-113 -3v30l41 3c40 3 44 12 44 90v87h-156v39h156v16c0 14 -1 19 -6 31l-21 50h-129v39h111l-75 160 c-43 91 -60 110 -102 108v29l92 21c3 1 6 1 10 1c26 0 39 -17 60 -76c5 -16 7 -20 8 -23l104 -261l70 163l77 190h70v-15'], + 0xA7: [709,219,500,26,465,'465 253c0 -53 -23 -95 -78 -142c42 -23 60 -54 60 -104c0 -114 -121 -226 -246 -226c-52 0 -105 15 -157 44c7 64 10 101 12 157h32l5 -90c41 -44 76 -59 138 -59c93 0 153 47 153 120c0 35 -15 61 -46 83c-24 17 -50 27 -133 54c-81 26 -111 41 -143 69 c-22 19 -36 51 -36 84c0 53 27 98 83 139c-39 29 -58 64 -58 103c0 121 107 224 232 224c49 0 88 -11 133 -36c-8 -57 -11 -95 -13 -152h-31l-5 87c-42 36 -74 49 -121 49c-80 0 -137 -50 -137 -120c0 -31 12 -52 41 -72c24 -16 46 -26 137 -55c133 -43 178 -83 178 -157z M399 213c0 31 -16 58 -46 77c-29 18 -59 29 -128 49c-52 15 -62 19 -90 30c-31 -28 -43 -53 -43 -87c0 -53 49 -87 189 -129c48 -15 59 -19 84 -30c25 39 34 63 34 90'], + 0xA8: [642,-542,333,17,316,'117 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM316 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xAC: [280,0,790,80,710,'710 0c-10 2 -20 3 -30 3s-20 -1 -30 -3v220h-570c2 10 3 20 3 30s-1 20 -3 30h600c4 -6 8 -12 13 -17s11 -9 17 -13v-250'], + 0xAE: [668,19,747,31,718,'718 324c0 -190 -154 -343 -344 -343s-343 153 -343 343s153 344 343 344s344 -154 344 -344zM678 324c0 168 -136 304 -304 304s-303 -136 -303 -304s135 -303 303 -303s304 135 304 303zM567 132c-15 2 -30 3 -45 3c-14 0 -29 -1 -43 -3l-160 195v15h21 c53 0 104 28 104 76c0 42 -43 67 -88 67c-17 0 -35 -2 -51 -5v-277c0 -20 5 -42 23 -44l30 -1v-26c-29 2 -59 3 -88 3c-30 0 -59 -1 -89 -3v26l31 1c18 2 23 24 23 44v241c0 21 -5 43 -23 44l-26 2v25c34 -2 69 -2 104 -2s70 2 105 2c62 0 122 -30 122 -85 c0 -34 -23 -63 -52 -82c-18 -11 -39 -19 -60 -24l130 -154c8 -10 20 -11 32 -12v-26'], + 0xAF: [619,-566,333,11,323,'323 566h-312v53h312v-53'], + 0xB0: [689,-389,400,50,350,'350 537c0 -80 -69 -148 -150 -148c-83 0 -150 67 -150 150s67 150 149 150c84 0 151 -68 151 -152zM310 537c0 62 -50 112 -111 112c-60 0 -109 -49 -109 -110s49 -110 110 -110c60 0 110 50 110 108'], + 0xB1: [550,170,760,80,680,'680 -170h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 220h-270v-270c-10 2 -20 3 -30 3s-20 -1 -30 -3v270h-270c2 10 3 20 3 30s-1 20 -3 30h270v270c10 -2 20 -3 30 -3s20 1 30 3v-270h270c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xB4: [677,-506,333,78,302,'302 643c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0xB5: [449,262,681,80,641,'641 112c0 -66 -30 -132 -89 -132c-54 0 -103 25 -130 64c-30 -39 -77 -64 -130 -64c-56 0 -111 15 -148 45c5 -93 18 -185 40 -275l-70 -12l-34 12c13 120 20 241 20 362v337h84v-337c0 -56 50 -98 108 -98c49 0 90 27 113 66c-2 10 -4 21 -4 32v337h84v-337 c0 -49 23 -98 67 -98c41 0 55 50 55 98h34'], + 0xB7: [310,-190,280,80,200,'200 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0xD7: [483,-17,627,80,547,'547 59c-9 -5 -17 -12 -24 -19s-13 -15 -19 -23l-191 191l-191 -191c-5 8 -12 16 -19 23s-15 14 -23 19l191 191l-191 191c8 5 16 12 23 19s14 15 19 23l191 -191l191 191c6 -8 12 -16 19 -23s15 -14 24 -19l-191 -191'], + 0xF0: [728,20,546,32,504,'504 262c0 -168 -102 -282 -250 -282c-133 0 -222 96 -222 237c0 148 99 252 239 252c38 0 74 -8 107 -25l2 2c-28 62 -59 106 -98 142l-140 -68l-18 30l136 66c-31 29 -67 52 -122 80l34 32c73 -44 100 -62 133 -90l143 70l18 -30l-131 -64c54 -54 76 -82 103 -125 c44 -73 66 -147 66 -227zM416 240c0 62 -13 109 -39 141c-29 35 -71 55 -116 55c-87 0 -136 -66 -136 -184c0 -140 61 -239 147 -239c32 0 59 11 80 32c40 41 64 113 64 195'], + 0xF7: [520,20,760,80,680,'680 220h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM440 460c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM440 40c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x131: [469,3,291,21,271,'271 -3l-125 3l-125 -3v30l46 3c34 2 37 9 37 72v225c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-363c0 -63 3 -70 37 -72l46 -3v-30'], + 0x237: [469,283,234,-40,159,'159 -19c0 -79 -18 -143 -53 -189c-38 -50 -76 -71 -134 -75l-12 38c9 -2 22 -3 30 -3c58 0 85 75 85 241v334c0 66 -4 73 -44 73h-37v28c53 6 105 20 156 41l9 -4v-484'], + 0x2C6: [676,-509,333,11,323,'323 509h-35l-121 103l-121 -103h-35l125 167h62'], + 0x2C7: [676,-509,333,11,323,'323 676l-125 -167h-62l-125 167h35l121 -103l122 103h34'], + 0x2D8: [671,-513,333,26,308,'308 671c-2 -44 -8 -66 -24 -93c-24 -42 -66 -65 -117 -65c-54 0 -97 25 -121 71c-13 26 -18 46 -20 87h30c3 -57 49 -98 111 -98s108 41 111 98h30'], + 0x2D9: [642,-542,250,75,175,'175 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x2DA: [692,-492,333,67,267,'267 592c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM229 592c0 38 -25 64 -61 64c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0x2DC: [645,-540,333,2,332,'332 645c-4 -58 -52 -105 -109 -105c-22 0 -38 4 -68 19c-37 18 -57 26 -71 26c-24 0 -40 -14 -53 -45h-29c14 65 51 100 106 100c24 0 36 -4 89 -30c24 -11 35 -15 47 -15c28 0 44 13 59 50h29'], + 0x300: [712,-541,0,-385,-161,'-161 541h-40l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0x301: [712,-541,0,-338,-114,'-114 678c0 -18 -7 -26 -40 -47l-144 -90h-40l138 138c22 22 40 33 55 33c17 0 31 -15 31 -34'], + 0x302: [700,-558,0,-424,-76,'-76 586l-16 -28l-158 86l-158 -86l-16 28c56 41 114 79 174 114c60 -35 118 -73 174 -114'], + 0x303: [682,-562,0,-421,-79,'-79 674c-13 -54 -30 -85 -66 -98c-10 -4 -20 -5 -30 -5c-30 0 -60 14 -87 30c-24 15 -50 32 -76 22c-25 -8 -43 -25 -52 -61c-4 3 -9 6 -15 7c-5 1 -11 2 -16 1c13 54 30 85 66 98c10 4 20 5 30 5c30 0 60 -14 87 -30c24 -15 50 -32 76 -22c25 8 43 25 52 61 c4 -3 9 -6 15 -7c5 -1 11 -2 16 -1'], + 0x304: [637,-584,0,-405,-93,'-93 584h-312v53h312v-53'], + 0x306: [695,-566,0,-431,-69,'-69 685c-25 -75 -101 -119 -181 -119s-156 44 -181 119l30 10c20 -59 86 -81 151 -81s131 22 151 81'], + 0x307: [660,-560,0,-300,-200,'-200 610c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x308: [660,-560,0,-399,-100,'-299 610c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM-100 610c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x30A: [710,-510,0,-349,-149,'-149 610c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM-187 610c0 38 -25 64 -61 64c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0x30B: [718,-537,0,-367,-3,'-153 685c0 -16 -10 -29 -39 -50l-135 -98h-40l128 148c17 20 39 33 55 33c17 0 31 -15 31 -33zM-3 685c0 -16 -10 -29 -39 -50l-135 -98h-40l128 148c17 20 39 33 55 33c17 0 31 -15 31 -33'], + 0x30C: [696,-554,0,-424,-76,'-76 668c-56 -41 -114 -79 -174 -114c-60 35 -118 73 -174 114l16 28l158 -86l158 86'], + 0x338: [650,150,0,-413,-87,'-87 650l-275 -800c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l275 800c8 -2 17 -3 26 -3c8 0 17 1 25 3'], + 0x391: [700,3,759,6,747,'747 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -4 22 -21 64l-46 115h-288l-28 -67c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3c-36 0 -73 -1 -109 -3v30l37 3c22 2 41 20 54 49l221 502c38 85 49 119 49 119h32l242 -568 c35 -81 46 -100 72 -102l34 -3v-30zM484 269l-126 298l-127 -298h253'], + 0x392: [692,3,637,36,586,'586 228c0 -70 -35 -138 -94 -180c-45 -33 -110 -51 -184 -51c-41 0 -83 3 -124 3c-36 0 -73 -1 -109 -3v23l26 10c14 5 22 28 22 65v474c0 79 -4 86 -51 90l-36 3v30l158 -3c60 0 119 3 179 3c121 0 179 -48 179 -136c0 -52 -25 -95 -73 -128c-28 -19 -51 -28 -100 -38 c77 -6 111 -15 149 -43c38 -27 58 -68 58 -119zM483 208c0 107 -63 156 -198 156c-19 0 -28 0 -67 -2v-315c25 -6 48 -8 77 -8c119 0 188 63 188 169zM453 533c0 83 -47 119 -154 119c-32 0 -55 -2 -81 -8v-243c31 -2 44 -2 61 -2c114 0 174 47 174 134'], + 0x393: [692,3,550,24,538,'538 689c-11 -44 -16 -92 -16 -152h-35v65c0 24 -4 28 -29 34c-30 8 -87 14 -126 14c-67 0 -82 -1 -114 -8v-522c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l24 -1l153 -2l108 2l107 1'], + 0x394: [700,3,629,6,617,'617 32l-62 -35l-294 3l-253 -3l-2 25l289 658l38 20l284 -659v-9zM503 60c0 12 -11 34 -20 55l-191 452l-172 -405c-13 -30 -35 -82 -35 -95c0 -16 12 -23 45 -26h332c25 2 41 8 41 19'], + 0x395: [692,3,628,36,586,'586 164c-10 -52 -16 -106 -16 -164l-167 -3l-232 3l-123 -3v30l36 3c47 4 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l178 -3l232 3l124 -3c-11 -44 -16 -92 -16 -152h-35v65c0 23 -3 27 -27 34c-32 9 -88 14 -145 14c-69 0 -86 -1 -117 -8v-267c44 -3 110 -4 160 -4 c43 0 62 4 70 38c5 19 5 52 5 52h30l-3 -116l3 -111h-30s-1 37 -5 59c-7 33 -26 37 -70 37l-160 -3v-280c29 -6 47 -8 99 -8c90 0 163 5 184 12c14 5 27 36 33 79l5 34h35'], + 0x396: [692,3,674,18,641,'641 173c-5 -55 -6 -90 -6 -176l-305 3l-312 -3v28s83 98 97 117l302 388c37 47 61 76 86 118h-228c-122 0 -149 -8 -152 -47l-6 -71h-34c2 37 3 49 3 81s-1 44 -3 81h165c90 0 142 -3 232 -3l156 3l4 -29l-486 -619h273c153 0 167 6 174 72l6 57h34'], + 0x397: [692,3,836,24,812,'812 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v223c-27 2 -43 2 -83 2h-234c-40 0 -56 0 -83 -2v-223c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-178 c20 -1 42 -2 83 -2h234c41 0 62 1 83 2v178c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30'], + 0x398: [709,20,850,56,798,'798 371c0 -222 -168 -391 -388 -391c-208 0 -354 148 -354 361c0 222 152 368 383 368c217 0 359 -134 359 -338zM691 337c0 211 -100 330 -276 330c-160 0 -252 -106 -252 -290c0 -213 112 -355 281 -355c156 0 247 117 247 315zM582 234h-30l-5 59l-8 25 c-18 9 -44 12 -112 12s-94 -3 -112 -12l-8 -25l-5 -59h-30l3 111l-3 116h30l5 -52c1 -9 4 -18 8 -26c18 -8 46 -11 112 -11s94 3 112 11c4 8 7 17 8 26l5 52h30l-3 -116'], + 0x399: [692,3,341,24,317,'317 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30'], + 0x39A: [692,3,712,23,720,'720 -3c-22 2 -43 3 -65 3c-27 0 -53 -1 -80 -3l-348 335l-10 -7v-205c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l146 -3l147 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-214l278 271c16 16 29 33 29 39v27 c30 -2 59 -3 89 -3c27 0 53 1 80 3v-30l-42 -2c-26 -1 -51 -14 -78 -38l-266 -240l330 -312c31 -29 47 -40 62 -41l21 -2v-30'], + 0x39B: [700,3,735,-6,735,'735 -3l-127 3l-139 -3v30l47 3c25 2 41 9 41 20c0 9 -2 23 -20 65l-191 452l-172 -405c-21 -50 -35 -93 -35 -106c0 -16 13 -23 48 -26l37 -3v-30l-121 3l-109 -3v30l37 3c22 2 42 20 54 49l264 601l38 20l242 -568c35 -81 46 -98 72 -102l34 -3v-30'], + 0x39C: [692,13,953,19,929,'929 -3l-151 3l-128 -3v30l34 3c47 4 51 11 51 90v458l-44 -86l-178 -378c-21 -45 -29 -73 -54 -127h-20l-279 591v-458c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30c32 -2 63 -3 95 -3s63 1 95 3l264 -556 l262 556c32 -2 63 -3 95 -3c31 0 62 1 93 3v-30l-42 -3c-46 -3 -51 -12 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30'], + 0x39D: [692,20,853,23,819,'819 662l-44 -3c-46 -3 -51 -12 -51 -90v-552c0 -10 3 -27 3 -37l-90 16l-473 587v-463c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v449c0 78 -5 87 -51 90l-44 3v30l120 -3c21 0 54 3 54 3l481 -594v471c0 78 -5 87 -51 90l-44 3v30l116 -3 l120 3v-30'], + 0x39E: [692,3,707,42,664,'664 213c-5 -54 -16 -130 -16 -216l-295 3l-295 -3c0 86 -11 162 -16 216h34l6 -57c7 -66 31 -72 184 -72h174c153 0 177 6 184 72l6 57h34zM613 500h-34l-6 71c-3 33 -42 37 -126 37h-190c-83 0 -121 -4 -124 -37l-6 -71h-34c2 37 3 55 3 81l-3 111l260 -3l260 3 l-3 -111c0 -26 1 -44 3 -81zM508 234h-30l-5 59l-8 25c-18 9 -44 12 -112 12s-94 -3 -112 -12l-8 -25l-5 -59h-30l3 111l-3 116h30l5 -52c1 -9 4 -18 8 -26c18 -8 46 -11 112 -11s94 3 112 11c4 8 7 17 8 26l5 52h30l-3 -116'], + 0x39F: [709,20,850,54,796,'796 367c0 -220 -170 -387 -394 -387c-202 0 -348 151 -348 361c0 220 152 368 380 368c222 0 362 -132 362 -342zM689 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315'], + 0x3A0: [692,3,836,24,812,'812 -3l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3h-202l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l394 -3l394 3v-30l-48 -3 c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30'], + 0x3A1: [692,3,604,24,582,'582 537c0 -120 -105 -213 -242 -213c-20 0 -34 1 -58 6l-10 36c26 -8 41 -10 62 -10c87 0 148 63 148 153c0 95 -58 145 -166 145c-34 0 -63 -4 -98 -12v-522c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v449c0 74 -8 87 -53 90l-45 3v30 l182 -3c57 0 113 3 170 3c127 0 205 -59 205 -155'], + 0x3A3: [692,3,710,45,668,'668 213c-5 -54 -6 -130 -6 -216l-277 3l-340 -3v28l97 117l153 196l-250 325l4 29l226 -3l327 3c-2 -37 -3 -55 -3 -81s1 -44 3 -81h-34l-6 71c-3 39 -30 47 -152 47h-228c12 -20 22 -35 34 -52l52 -66l112 -148l1 -10l-225 -288h298c153 0 167 6 174 72l6 57h34'], + 0x3A4: [692,3,614,19,596,'596 692c-5 -57 -7 -96 -7 -161h-31l-4 79c-1 24 -12 33 -40 33h-155c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v423c0 43 -1 66 -4 100h-155c-28 0 -39 -9 -40 -33l-4 -79h-31c0 65 -2 104 -7 161l203 -3h158'], + 0x3A5: [705,3,647,3,648,'648 679c-81 -97 -114 -142 -188 -253c-58 -88 -72 -122 -72 -177v-129c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v142c0 16 -3 30 -9 40l-124 216c-42 73 -94 125 -128 130l-29 3v29l115 24c3 1 6 1 6 1c19 0 59 -46 90 -103l143 -261 l103 163c40 63 70 116 108 190h80v-15'], + 0x3A6: [692,3,850,55,797,'797 359c0 -122 -145 -226 -323 -247c0 -71 6 -79 51 -82l48 -3v-30l-147 3l-146 -3v30l48 3c43 3 50 10 51 78c-177 9 -324 110 -324 235c0 124 139 220 324 236c-1 69 -7 77 -51 80l-48 3v30l146 -3l147 3v-30l-48 -3c-44 -3 -51 -11 -51 -78 c186 -11 323 -100 323 -222zM690 344c0 114 -87 179 -216 193v-386c127 10 216 79 216 193zM379 155v383c-130 -9 -217 -68 -217 -172c0 -116 92 -192 217 -211'], + 0x3A7: [700,3,656,10,644,'644 -3c-24 2 -47 3 -71 3c-25 0 -49 -1 -74 -3l-184 306l-202 -306c-17 2 -34 3 -51 3s-35 -1 -52 -3v30l26 3c22 3 34 14 59 48l195 263l-128 213c-33 55 -68 88 -92 90l-45 3l-2 26l141 27c19 -10 34 -27 57 -65l128 -216l185 270h101v-30l-41 -3 c-15 -1 -28 -14 -68 -68l-154 -208l176 -280c33 -52 47 -68 66 -70l30 -3v-30'], + 0x3A8: [692,3,783,18,765,'765 662l-44 -3c-38 -3 -52 -9 -52 -53c0 -176 -70 -297 -204 -319v-167c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v162c-176 3 -253 126 -253 282c0 89 -5 92 -51 95l-48 3v30l141 -3c14 1 29 3 43 3c9 -17 10 -44 10 -72v-45 c0 -115 48 -219 158 -230v224c0 79 -5 87 -51 90l-36 3v30l134 -3l137 3v-30l-38 -3c-46 -3 -51 -11 -51 -90v-222c104 15 158 123 158 238v44c0 25 2 48 11 63c9 0 24 -3 31 -3l100 3v-30'], + 0x3A9: [709,3,839,38,801,'801 158c-6 -43 -7 -112 -7 -161c-21 0 -81 3 -119 3c-23 0 -98 0 -119 -3h-22v39c9 9 23 13 38 23c6 4 15 14 25 29c27 40 79 155 79 247c0 212 -79 332 -256 332s-257 -119 -257 -332c0 -92 52 -207 79 -247c10 -15 19 -25 25 -29c14 -10 29 -14 38 -23v-39h-22 c-21 3 -96 3 -119 3c-38 0 -98 -3 -119 -3c0 49 -1 118 -7 161h26l7 -52c4 -29 17 -37 36 -37h115c-63 53 -166 170 -166 302c0 207 139 338 364 338s363 -132 363 -338c0 -132 -103 -249 -166 -302h115c19 0 32 8 36 37l7 52h26'], + 0x3B1: [482,11,564,45,545,'545 79l-44 -44c-30 -29 -59 -46 -82 -46c-40 0 -81 55 -111 159c-27 -35 -66 -80 -104 -116c-28 -23 -58 -43 -99 -43c-24 0 -48 44 -54 77c-14 80 -1 199 30 288c13 31 28 57 50 79c29 31 61 48 84 49c22 0 52 -4 69 -49l62 -183c9 17 22 42 25 48c28 59 37 87 47 170 c4 -2 13 -5 17 -7c8 -15 14 -24 22 -35c-2 -20 -31 -80 -42 -101c-11 -22 -34 -66 -59 -106l16 -47c10 -30 30 -72 43 -91c14 -19 27 -22 43 -22c17 0 41 8 74 39zM298 179l-55 175c-14 44 -28 62 -59 62c-23 0 -44 -29 -52 -62c-20 -83 -18 -191 -7 -255 c5 -26 13 -40 26 -40c19 0 47 9 75 35c23 21 48 51 72 85'], + 0x3B2: [711,277,611,105,553,'550 235c26 -136 -83 -246 -243 -246c-54 0 -95 9 -140 31c-3 -78 12 -191 21 -280c-29 -4 -37 -9 -62 -17l-17 8l-4 642l4 125c2 59 10 94 62 137c52 44 122 76 165 76c54 0 106 -46 117 -101c10 -55 -5 -86 -58 -164c-2 -4 -6 -10 -9 -14c-13 -21 -18 -33 -18 -46l1 -5 c52 -12 77 -21 106 -39c42 -26 65 -55 75 -107zM461 228c-16 85 -76 124 -167 124c-25 0 -42 -3 -78 -16l-8 12l10 43c11 0 16 0 24 -1c4 -1 14 -1 23 -1c43 0 59 13 84 38c42 78 53 104 45 148c-11 51 -53 86 -105 86s-91 -30 -100 -82c-3 -22 -6 -99 -9 -200l-10 -213 c1 -16 3 -26 4 -36c13 -66 70 -107 149 -107c45 0 79 14 102 43c35 41 48 101 36 162'], + 0x3B3: [482,226,600,-14,572,'572 396c-23 -40 -24 -60 -25 -69c0 -3 -2 -5 -9 -7c-22 -6 -64 -68 -82 -130c-16 -55 -31 -131 -26 -200l2 -172c-18 -10 -32 -29 -47 -44l-35 9l7 183c2 59 8 118 12 177c-16 90 -31 141 -87 230c-13 23 -53 64 -109 64c-27 0 -54 -23 -65 -35 c-31 -33 -49 -84 -55 -126l-27 -5c-14 19 -22 30 -40 49c9 35 53 93 71 109c45 46 86 53 112 53c31 0 79 -6 127 -58c29 -30 55 -67 80 -125c13 -31 23 -59 36 -122c32 127 99 229 139 239c6 0 9 -15 21 -20'], + 0x3B4: [711,11,481,56,427,'422 284c22 -79 -23 -157 -62 -207c-5 -9 -11 -17 -20 -24c-41 -43 -75 -64 -122 -64c-68 0 -123 26 -156 151c-16 55 8 114 28 153c29 55 69 104 111 149c6 5 13 12 22 18c-49 61 -74 93 -89 147c-15 60 10 104 93 104c26 0 112 -15 133 -28l4 -9c-5 -19 -2 -45 -4 -61 l-8 -5c-20 25 -57 44 -66 48c-28 11 -53 23 -84 23c-37 0 -50 -25 -44 -47c12 -44 92 -117 142 -163c48 -43 98 -94 122 -185zM366 198c2 10 3 36 -3 52c-19 72 -69 130 -112 180c-8 -5 -14 -9 -18 -13c-58 -55 -96 -123 -98 -205c-1 -18 -1 -45 4 -61 c17 -66 58 -112 110 -112c58 0 104 83 117 159'], + 0x3B5: [484,11,466,57,432,'432 77c-72 -62 -127 -88 -179 -88c-57 0 -116 12 -154 50c-18 18 -34 38 -40 73c-5 28 -2 67 28 93c30 27 54 44 77 51c-61 11 -99 38 -106 79c-7 37 27 81 55 102c38 29 74 47 121 47c36 0 89 -10 127 -28c-7 -36 -12 -62 -10 -107h-29l-9 66c-1 2 -8 17 -25 23 c-18 7 -34 11 -56 11c-60 0 -111 -45 -101 -101c9 -53 57 -80 121 -80c21 0 42 3 62 10l4 -10c-2 -7 -3 -31 -2 -37c-18 5 -41 7 -67 7c-102 0 -116 -51 -105 -113c11 -64 86 -86 138 -86c38 0 85 17 134 55'], + 0x3B6: [711,226,477,57,470,'467 9c6 -35 7 -85 -23 -130c-37 -57 -101 -105 -160 -105c-47 0 -92 35 -99 78c-1 5 -2 11 -3 18l45 34l11 -4c1 -9 1 -17 2 -22c6 -35 39 -62 76 -62c46 0 92 39 104 110c0 8 0 14 -1 21c-6 34 -27 52 -63 52c-31 0 -116 -10 -140 -10c-84 0 -137 51 -154 147 c-16 90 8 173 52 250c43 76 95 153 160 214l30 27h-5c-22 0 -50 3 -86 10c-22 4 -34 5 -49 5c-13 0 -23 -1 -40 -5l-21 -58h-22l12 122c24 7 45 10 62 10c15 0 37 -4 67 -11l20 -5c53 -13 109 -21 145 -21c14 0 24 4 33 14l20 23l11 -9l-1 -32l-29 -11 c-45 -18 -88 -45 -123 -78c-105 -102 -187 -271 -160 -422c14 -79 50 -119 109 -119c35 0 105 10 136 10c22 0 53 -2 70 -18c8 -6 12 -14 14 -23'], + 0x3B7: [482,276,552,4,478,'477 373l-24 -560c-1 -24 1 -43 5 -72c-24 -3 -56 -9 -87 -17l-12 14c6 10 13 23 15 39l29 542c1 33 0 52 -4 71c-3 16 -12 24 -23 24c-47 0 -111 -62 -152 -145c-33 -70 -41 -135 -34 -261c-23 -4 -46 -10 -70 -17l-10 11c13 144 15 335 3 387c-3 15 -12 25 -24 25 c-6 0 -13 -4 -31 -17l-42 -29l-12 20l26 20c67 53 101 74 123 74c16 0 27 -12 32 -33c3 -11 3 -22 3 -41l-6 -161c40 74 63 110 96 145c50 54 113 90 157 90c20 0 34 -13 39 -35c4 -19 6 -45 3 -74'], + 0x3B8: [711,11,517,57,459,'451 489c26 -151 -10 -316 -66 -403c-39 -60 -97 -97 -153 -97c-88 0 -135 77 -163 236c-33 184 10 335 89 420c40 45 82 66 128 66c86 0 140 -83 165 -222zM383 319c-19 8 -49 11 -121 11c-74 0 -102 -3 -123 -12c1 -32 4 -64 10 -95c21 -119 46 -196 109 -196 c31 0 56 18 72 49c24 52 47 142 53 243zM383 382c0 28 -3 57 -8 85c-22 124 -43 206 -109 206c-25 0 -48 -8 -60 -23c-30 -42 -60 -150 -66 -268c20 -7 51 -10 122 -10c70 0 102 3 121 10'], + 0x3B9: [482,9,299,88,297,'297 99l-27 -25c-68 -64 -101 -83 -138 -83c-20 0 -34 15 -40 40c-3 13 -4 26 -3 55c1 11 1 14 0 21l19 239c0 19 3 49 -4 116l68 20l16 -14c-3 -17 -5 -33 -6 -48l-16 -304c-2 -22 -1 -30 0 -40c3 -12 10 -20 19 -20c12 0 30 9 58 30l39 31'], + 0x3BA: [482,9,544,19,537,'537 67l-42 -32c-42 -31 -64 -44 -78 -44c-26 0 -71 68 -179 268c-28 -32 -47 -72 -48 -116l-2 -135l-68 -17l-10 7c19 129 28 334 18 393c-2 12 -11 21 -22 21c-9 0 -19 -5 -46 -23l-30 -21l-11 20l26 20c68 53 105 73 127 73c15 0 26 -10 29 -31c2 -12 2 -24 1 -42 l-1 -26c-3 -22 -3 -62 -4 -85l-3 -66c100 175 174 251 243 251c14 0 33 -3 52 -9l-7 -63c-18 4 -29 6 -38 6c-53 0 -97 -25 -150 -86l-12 -14c62 -123 95 -177 143 -241c12 -17 21 -23 31 -23c9 0 15 2 29 10l41 24'], + 0x3BB: [711,12,597,7,593,'593 85c-87 -72 -121 -94 -147 -94c-17 0 -31 11 -37 28l-146 397c-92 -163 -123 -255 -176 -406c-24 -8 -38 -13 -55 -22l-25 22c40 80 174 331 244 439l-34 93c-21 58 -56 103 -84 103c-9 0 -38 -12 -57 -19l-1 24c20 14 57 39 81 61c51 -6 100 -77 152 -217l130 -349 c16 -34 26 -58 36 -70c15 -19 19 -19 23 -19c9 0 32 10 59 30l24 17'], + 0x3BC: [482,276,626,36,600,'600 85c-89 -72 -123 -94 -151 -94c-20 0 -34 15 -38 40c-5 16 -6 38 -3 76l12 132c-22 -51 -40 -79 -73 -125c-56 -74 -114 -125 -145 -125c-4 0 -11 1 -25 4l32 -225c1 -13 -5 -23 -28 -32l-30 -12l-16 8l9 660c-1 11 -11 20 -21 20s-19 -5 -46 -23l-30 -21l-11 20 l26 20c68 54 103 74 125 74c15 0 25 -11 29 -32c2 -12 3 -26 3 -42l-7 -271c-2 -26 -1 -37 3 -52c3 -17 9 -26 18 -26c43 0 114 74 157 166c22 46 33 113 35 189v51l69 17l9 -9l-19 -357c-2 -16 0 -32 1 -40c2 -10 9 -17 17 -17c13 0 36 11 60 27l23 17'], + 0x3BD: [482,12,524,-1,479,'479 473c6 -35 -43 -188 -78 -277c-72 -192 -183 -207 -222 -208l-23 15c-4 19 -6 35 -8 57l-30 301c-4 29 -18 49 -33 49c-5 0 -9 -2 -20 -9l-51 -33l-15 18l77 56c46 33 56 40 71 40c18 0 29 -20 37 -62c10 -64 29 -275 33 -304c5 -27 6 -39 10 -63c42 6 96 23 133 124 c21 53 63 198 48 286c23 2 29 8 57 19'], + 0x3BE: [711,226,479,56,471,'468 9c6 -35 7 -85 -23 -130c-37 -57 -101 -105 -160 -105c-47 0 -92 35 -99 78c-1 5 -2 11 -3 18l45 34l11 -4c1 -9 1 -17 2 -22c6 -35 39 -62 76 -62c46 0 92 39 104 110c0 8 0 14 -1 21c-6 34 -27 52 -63 52c-31 0 -116 -10 -140 -10c-84 0 -137 51 -154 147 c-18 105 3 210 52 259c45 45 107 81 153 85c-13 13 -21 28 -25 47c-6 37 18 67 61 100c-25 0 -51 3 -90 10c-22 4 -34 5 -49 5c-13 0 -22 -1 -40 -5l-21 -58h-22l12 122c24 7 45 10 62 10c15 0 37 -4 68 -11l19 -5c53 -13 109 -21 145 -21c14 0 24 4 33 14l20 23l11 -9 l-1 -32l-29 -11c-41 -16 -129 -52 -119 -107c9 -50 65 -83 120 -81c2 -5 4 -8 5 -13c-6 -10 -9 -34 -8 -39c-4 -1 -30 -1 -44 -1c-9 0 -41 5 -51 8c-20 6 -41 12 -65 12c-32 0 -57 -13 -77 -29c-44 -38 -63 -142 -44 -250c14 -79 50 -119 109 -119c35 0 105 10 136 10 c22 0 53 -2 70 -18c8 -6 12 -14 14 -23'], + 0x3BF: [482,11,508,56,451,'445 331c19 -101 -7 -215 -61 -274c-39 -42 -97 -68 -155 -68c-87 0 -145 57 -165 163c-22 122 6 223 81 281c41 32 87 49 132 49c87 0 150 -57 168 -151zM368 315c-16 84 -59 129 -123 129c-25 0 -48 -6 -59 -17c-45 -40 -63 -163 -42 -276c15 -79 59 -124 120 -124 c32 0 57 12 72 33c37 53 50 159 32 255'], + 0x3C0: [493,11,711,48,688,'688 55c-56 -53 -83 -66 -137 -66c-32 0 -75 13 -97 118c-14 64 8 245 13 307l-196 7c-21 -176 -54 -328 -75 -406l-71 -26l-12 9c58 127 84 196 123 424c-22 0 -41 1 -53 1c-60 0 -101 -3 -111 -63l-8 -7l-16 8c12 87 34 120 113 120l333 -9c26 0 52 1 65 2 c34 0 79 10 106 19l10 -12c-15 -24 -19 -26 -27 -47c-15 -6 -36 -16 -55 -16c-23 -3 -47 -4 -71 -4l-2 -206c0 -29 4 -56 9 -81c13 -62 34 -91 83 -91c18 0 43 23 41 21l22 17'], + 0x3C1: [482,276,550,75,493,'488 331c18 -103 -9 -217 -66 -276c-39 -41 -97 -66 -152 -66c-53 0 -94 19 -123 57l-8 -1c2 -51 12 -127 24 -197c7 -40 15 -78 22 -107c-29 -4 -48 -9 -72 -17l-18 8c-5 104 -20 259 -19 364c0 61 4 122 20 181c7 24 15 49 27 71c15 36 39 66 71 89c41 30 84 45 129 45 c86 0 148 -57 165 -151zM411 316c-15 84 -56 128 -123 128c-25 0 -47 -6 -59 -17c-44 -40 -63 -163 -43 -276c13 -79 56 -124 119 -124c32 0 57 12 72 33c37 53 51 159 34 256'], + 0x3C2: [482,226,496,46,460,'457 9c6 -35 8 -85 -22 -130c-37 -57 -101 -105 -160 -105c-47 0 -92 35 -100 78c-1 5 -2 11 -2 18l44 34l12 -4c0 -9 1 -17 1 -22c6 -35 40 -62 77 -62c46 0 91 39 104 110c0 8 0 14 -1 21c-7 34 -28 52 -63 52c-32 0 -116 -10 -140 -10c-84 0 -138 51 -154 147 c-18 105 3 210 52 259s113 87 169 87s110 -11 139 -11c2 -5 4 -8 4 -13c-5 -10 -9 -34 -7 -39c-5 -1 -31 -1 -45 -1c-9 0 -41 5 -50 8c-20 6 -41 12 -65 12c-33 0 -58 -13 -77 -29c-45 -38 -64 -142 -45 -250c15 -79 51 -119 109 -119c35 0 106 10 137 10c22 0 52 -2 70 -18 c8 -6 12 -14 13 -23'], + 0x3C3: [494,11,611,57,605,'605 482c-16 -24 -19 -29 -27 -50c-16 -6 -37 -14 -56 -14c-23 0 -53 0 -88 2c5 -11 10 -23 12 -36c7 -42 0 -110 -17 -163c-19 -63 -54 -126 -92 -167c-42 -45 -82 -65 -128 -65c-68 0 -123 38 -145 163s9 227 88 285c41 30 83 45 129 45l95 -3l111 -1c35 0 82 7 109 16 zM383 356c-14 78 -73 88 -137 88c-25 0 -47 -6 -59 -17c-43 -39 -64 -157 -43 -276c11 -66 49 -112 100 -112c92 0 165 168 139 317'], + 0x3C4: [493,11,587,33,558,'558 481c-16 -24 -19 -26 -27 -47c-16 -6 -37 -16 -56 -16c-24 -3 -49 -4 -73 -4l-69 2l-10 -208c-2 -29 1 -56 5 -81c11 -62 31 -91 80 -91c18 0 42 21 42 21l22 17l12 -19c-57 -53 -85 -66 -139 -66c-32 0 -74 13 -93 118c-11 66 18 255 25 312l-107 4 c-60 0 -101 -3 -113 -63l-8 -7l-16 8c15 87 38 120 117 120c46 0 168 -9 227 -9c26 0 52 1 65 2c34 0 80 10 107 19'], + 0x3C5: [482,11,554,14,495,'492 384c8 -42 2 -110 -15 -163c-20 -63 -55 -126 -93 -167c-42 -45 -82 -65 -128 -65c-68 0 -125 54 -139 132c-1 8 -3 17 -3 25l9 228c0 5 0 13 -1 18c-2 11 -11 20 -21 20s-19 -5 -47 -23l-29 -21l-11 20l26 20c69 54 104 74 126 74c15 0 25 -12 29 -31 c2 -13 2 -27 2 -43l-10 -209c-2 -26 -1 -38 2 -53c11 -66 51 -107 102 -107c93 0 166 162 140 311c-7 40 -27 63 -56 63c-11 0 -19 -3 -27 -9l-15 19l44 47c8 8 18 12 33 12c39 0 72 -40 82 -98'], + 0x3C6: [482,276,670,56,612,'609 331c18 -103 -28 -217 -112 -276c-36 -26 -82 -45 -130 -56l2 -258c-33 -5 -53 -10 -74 -17l-8 6l2 37l9 223c-6 -1 -13 -1 -19 -1c-123 0 -199 56 -218 163c-21 125 30 227 145 285c30 15 67 34 90 34c3 0 8 -1 13 -12c-5 -9 -4 -9 -13 -18c-20 -3 -37 -8 -49 -14 c-73 -42 -125 -164 -106 -276c13 -72 71 -115 156 -123l1 302c0 16 4 35 13 46c21 28 63 65 99 87c21 12 46 19 70 19c29 0 84 -57 103 -87c11 -19 21 -40 26 -64zM532 315c-10 53 -46 118 -75 118c-34 0 -62 -9 -72 -24c-22 -20 -19 -182 -17 -261l-1 -119 c31 5 58 16 77 31c64 53 104 158 88 255'], + 0x3C7: [482,226,585,28,615,'615 -121l-49 -61c-32 -41 -67 -44 -93 -44c-43 0 -82 56 -124 177l-76 208c-97 -135 -138 -264 -169 -385l-25 4c-10 7 -25 17 -40 30c40 123 123 261 221 390c-50 148 -91 219 -136 219c-27 0 -52 -19 -80 -66l-16 9l49 93c9 18 33 29 62 29c80 0 128 -78 171 -221 c68 82 140 159 209 221c11 -7 24 -18 36 -27l6 -12c-101 -75 -177 -148 -238 -220l70 -193c17 -44 46 -121 63 -149c20 -28 42 -42 64 -42c23 0 47 18 83 59'], + 0x3C8: [646,276,678,5,631,'629 384c7 -42 1 -110 -16 -163c-19 -63 -42 -110 -82 -150c-44 -46 -92 -66 -131 -74v-256c-32 -5 -52 -10 -73 -17l-9 6l2 37l8 222h-9c-105 0 -194 63 -206 132c-1 8 -3 17 -3 25l5 228c0 5 0 13 -1 18c-2 11 -11 20 -22 20c-9 0 -19 -5 -46 -23l-30 -21l-11 20l26 20 c69 54 105 74 127 74c15 0 25 -12 28 -31c3 -13 3 -27 3 -43l-7 -209c0 -19 1 -38 3 -53c14 -80 89 -100 145 -105l-6 569c31 12 57 24 76 36l14 -15c-9 -54 -12 -103 -13 -197l-2 -194v-198c98 13 206 95 168 308c-7 40 -26 63 -56 63c-10 0 -18 -3 -27 -9l-14 19l44 47 c8 8 18 12 32 12c39 0 72 -40 83 -98'], + 0x3C9: [482,11,803,45,756,'754 384c7 -42 1 -110 -16 -163c-19 -63 -54 -126 -92 -167c-43 -45 -82 -65 -129 -65c-59 0 -110 41 -131 103c-32 -29 -49 -49 -86 -71c-27 -16 -64 -32 -94 -32c-39 0 -66 14 -93 40c-42 39 -54 89 -64 147c-13 76 13 163 78 230c23 24 65 57 89 76l20 -18 c-9 -11 -26 -28 -36 -38c-76 -81 -87 -162 -71 -254c6 -30 18 -66 44 -89c21 -20 49 -33 80 -33c35 0 63 16 88 40c26 25 29 67 36 101l7 122l64 26l14 -14c-4 -17 -8 -31 -9 -48l-6 -77c-2 -26 0 -39 3 -54c12 -66 51 -107 103 -107c92 0 165 162 138 311 c-7 40 -25 63 -55 63c-10 0 -18 -3 -27 -9l-14 19l44 47c8 8 18 12 32 12c39 0 72 -40 83 -98'], + 0x3D1: [711,11,581,15,549,'549 459c-1 -7 -3 -16 -6 -26l-18 -72c-12 -8 -22 -13 -32 -18c-7 -104 -37 -201 -71 -262c-34 -57 -110 -92 -165 -92c-68 0 -125 54 -139 132c-1 8 -3 17 -3 25l9 228c1 5 0 13 -1 18c-2 11 -11 20 -21 20s-19 -5 -46 -23l-30 -21l-11 20l26 20c69 54 104 74 126 74 c15 0 26 -12 29 -31c2 -13 3 -27 2 -43l-10 -209c-2 -26 -1 -38 2 -53c11 -66 51 -107 102 -107c31 0 64 22 79 53c25 52 43 131 48 232c-93 20 -190 92 -202 160c-12 70 -11 107 14 161c26 55 45 66 90 66c86 0 141 -83 165 -222c5 -26 7 -52 9 -78c5 7 10 14 14 24l16 30z M419 383c-2 27 -4 56 -9 84c-21 124 -42 206 -108 206c-19 0 -34 -28 -40 -69c-1 -14 -3 -52 4 -91c12 -69 99 -120 153 -130'], + 0x3D5: [644,274,669,57,611,'607 317c20 -103 -24 -215 -106 -270c-37 -24 -83 -41 -130 -49l6 -259c-33 -3 -53 -7 -74 -13l-8 7l2 36l5 223c-6 -1 -12 0 -18 0c-123 6 -201 66 -221 174c-24 126 25 225 139 278c29 13 58 23 89 29l-5 139c30 11 56 21 74 32l15 -15c-7 -44 -10 -85 -10 -150 c6 1 12 1 18 0c120 -6 205 -67 224 -162zM529 306c-14 77 -73 124 -164 135l1 -53l3 -225l2 -106c0 -5 -1 -16 -1 -29c31 3 57 13 77 27c63 49 101 153 82 251zM300 30l-8 413c-20 -2 -37 -6 -48 -12c-73 -38 -123 -157 -101 -270c13 -73 61 -116 157 -131'], + 0x3D6: [548,11,803,45,756,'754 384c7 -42 1 -110 -16 -163c-19 -63 -54 -126 -92 -167c-43 -45 -82 -65 -129 -65c-59 0 -110 41 -131 103c-32 -29 -49 -49 -86 -71c-27 -16 -64 -32 -94 -32c-39 0 -66 14 -93 40c-42 39 -54 89 -64 147c-13 76 13 163 78 230c23 24 65 57 89 76l20 -18 c-9 -11 -26 -28 -36 -38c-76 -81 -87 -162 -71 -254c6 -30 18 -66 44 -89c21 -20 49 -33 80 -33c35 0 63 16 88 40c26 25 29 67 36 101l7 122l64 26l14 -14c-4 -17 -8 -31 -9 -48l-6 -77c-2 -26 0 -39 3 -54c12 -66 51 -107 103 -107c92 0 165 162 138 311 c-16 94 -111 148 -238 148c-71 0 -170 -13 -146 -145c-4 -3 -13 -3 -17 -5c-11 -4 -21 -13 -32 -19c-13 73 21 140 89 182c36 22 88 37 136 37c156 0 252 -56 271 -164'], + 0x3F0: [483,17,693,37,656,'656 114l-48 -93c-9 -18 -32 -30 -61 -30c-80 0 -103 51 -103 207c0 43 8 85 17 121l-145 -179c-46 -58 -68 -90 -107 -144c-26 -2 -39 -10 -65 -13c0 0 -16 19 -24 39c19 21 31 32 49 48c19 58 36 118 36 194c0 96 -41 152 -80 153c-27 0 -45 -19 -72 -66l-16 9l48 93 c10 18 32 30 61 30c80 0 103 -51 103 -207c0 -50 -11 -102 -23 -147l151 166c27 31 98 121 136 175c25 3 13 3 39 7c0 0 15 -24 23 -44c-17 -20 -39 -40 -63 -61c-13 -48 -24 -95 -24 -162c0 -96 41 -152 80 -153c27 0 45 19 73 66'], + 0x3F1: [482,276,562,74,505,'505 -242l-45 -34l-11 4c-1 9 -1 17 -2 23c-4 23 -26 38 -44 53c-46 38 -93 25 -173 75c-35 22 -126 78 -150 215c-11 62 -3 124 13 183c6 24 15 49 26 71c16 36 40 66 72 89c41 30 83 45 129 45c86 0 148 -57 165 -151c18 -103 -9 -217 -66 -276 c-39 -41 -97 -66 -152 -66c-53 0 -94 19 -123 57l-8 -1l13 -30c81 -135 184 -158 209 -158c7 0 29 -3 45 -3c47 0 92 -35 99 -78c1 -5 2 -11 3 -18zM408 316c-15 84 -57 128 -123 128c-25 0 -47 -6 -59 -17c-44 -40 -63 -163 -44 -276c14 -79 57 -124 120 -124 c31 0 57 12 72 33c37 53 51 159 34 256'], + 0x3F4: [709,20,850,56,798,'798 371c0 -222 -168 -391 -388 -391c-208 0 -354 148 -354 361c0 222 152 368 383 368c217 0 359 -134 359 -338zM690 372c-11 189 -109 295 -275 295c-160 0 -252 -106 -252 -290v-5h527zM691 330h-526c15 -187 123 -308 279 -308c154 0 245 114 247 308'], + 0x3F5: [482,11,513,57,479,'479 92c-82 -74 -130 -103 -192 -103c-56 0 -115 12 -157 50c-34 32 -56 73 -66 116c-4 17 -7 35 -7 53c0 86 23 150 77 203c48 46 109 71 177 71c55 0 111 -23 152 -60l-31 -52l-20 -2c-11 15 -27 32 -36 39c-26 24 -62 31 -97 31c-36 0 -71 -13 -94 -37 c-37 -37 -45 -90 -43 -139l114 -1l130 2l-6 -35l-5 -6l-147 1c-7 0 -58 0 -84 -3c1 -12 2 -25 5 -37c3 -11 5 -22 11 -32c28 -64 106 -112 153 -112c38 0 85 17 131 55l21 17'], + 0x2002: [0,0,500,0,0,''], + 0x2003: [0,0,1000,0,0,''], + 0x2004: [0,0,333,0,0,''], + 0x2005: [0,0,250,0,0,''], + 0x2006: [0,0,167,0,0,''], + 0x2009: [0,0,200,0,0,''], + 0x200A: [0,0,100,0,0,''], + 0x2013: [277,-219,500,0,500,'500 219h-500v58h500v-58'], + 0x2014: [277,-219,1000,0,1000,'1000 219h-1000v58h1000v-58'], + 0x2016: [650,150,376,80,296,'128 -150c-8 2 -16 3 -24 3s-16 -1 -24 -3v800c8 -2 16 -3 24 -3s16 1 24 3v-800zM296 -150c-8 2 -16 3 -24 3s-16 -1 -24 -3v800c8 -2 16 -3 24 -3s16 1 24 3v-800'], + 0x2018: [709,-446,278,45,233,'233 699c-48 -76 -72 -144 -78 -223l-97 -30l-13 13c34 86 72 153 129 226l44 24'], + 0x2019: [709,-446,278,45,233,'233 696c-34 -86 -72 -153 -129 -226l-44 -24l-15 10c48 77 72 143 78 223l97 30'], + 0x201C: [709,-446,500,51,449,'239 699c-48 -76 -72 -144 -78 -223l-97 -30l-13 13c34 86 72 153 129 226l44 24zM449 699c-48 -76 -72 -144 -78 -223l-97 -30l-13 13c34 86 72 153 129 226l44 24'], + 0x201D: [709,-446,500,51,449,'239 696c-34 -86 -72 -153 -129 -226l-44 -24l-15 10c48 77 72 143 78 223l97 30zM449 696c-34 -86 -72 -153 -129 -226l-44 -24l-15 10c48 77 72 143 78 223l97 30'], + 0x2020: [694,5,500,34,466,'466 395l-5 -4s-80 6 -115 6h-59v-78c0 -153 9 -319 9 -319l-5 -5c-23 3 -25 4 -41 4s-17 -1 -41 -4l-5 5s9 170 9 319v78h-59l-115 -7l-5 5c2 15 3 20 3 33s-1 18 -3 34l5 5s76 -7 115 -7h59v52c0 32 -13 177 -13 177l5 5c31 -3 27 -3 45 -3s14 0 45 3l5 -5 s-13 -144 -13 -177v-52h59l115 7l5 -5c-2 -15 -3 -21 -3 -34s1 -18 3 -33'], + 0x2021: [694,249,500,34,466,'466 -40l-5 -5c-69 6 -77 7 -99 7h-75v-47c0 -36 13 -159 13 -159l-5 -5c-31 3 -27 3 -45 3s-14 0 -45 -3l-5 5s13 133 13 159v47h-75c-22 0 -28 -1 -99 -7l-5 5c2 17 3 21 3 35c0 12 -1 17 -3 32l5 5c72 -6 76 -7 99 -7h75c0 84 -8 187 -8 198c0 9 8 114 8 197h-75 c-25 0 -45 -2 -99 -7l-5 5c2 17 3 21 3 35c0 12 -1 17 -3 32l5 5c72 -6 76 -7 99 -7h75v47c0 23 -13 159 -13 159l5 5c31 -3 27 -3 45 -3s14 0 45 3l5 -5l-13 -159v-47h75c23 0 30 1 99 7l5 -5c-2 -14 -3 -20 -3 -32c0 -14 1 -19 3 -35l-5 -5c-53 5 -76 7 -99 7h-75 c0 -76 8 -188 8 -197s-8 -120 -8 -198h75c23 0 30 1 99 7l5 -5c-2 -14 -3 -20 -3 -32c0 -14 1 -19 3 -35'], + 0x2026: [120,0,860,80,780,'200 60c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM490 60c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM780 60c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2032: [779,-446,293,60,233,'233 766l-125 -303l-33 -17l-15 10l78 293l82 30'], + 0x2033: [779,-446,493,60,433,'233 766l-125 -303l-33 -17l-15 10l78 293l82 30zM433 766l-125 -303l-33 -17l-15 10l78 293l82 30'], + 0x2034: [779,-446,693,60,633,'233 766l-125 -303l-33 -17l-15 10l78 293l82 30zM433 766l-125 -303l-33 -17l-15 10l78 293l82 30zM633 766l-125 -303l-33 -17l-15 10l78 293l82 30'], + 0x2035: [779,-446,293,60,233,'233 456l-15 -10l-33 17l-125 303l13 13l82 -30'], + 0x2044: [650,150,486,80,406,'406 650l-275 -800c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0x2057: [779,-446,893,60,833,'233 766l-125 -303l-33 -17l-15 10l78 293l82 30zM433 766l-125 -303l-33 -17l-15 10l78 293l82 30zM633 766l-125 -303l-33 -17l-15 10l78 293l82 30zM833 766l-125 -303l-33 -17l-15 10l78 293l82 30'], + 0x20D7: [784,-544,0,-443,-57,'-57 664c-45 -36 -85 -76 -120 -120c-12 2 -23 3 -34 3c-12 0 -23 -1 -34 -3c28 34 58 67 91 96h-289c2 8 3 16 3 24s-1 16 -3 24h289c-33 29 -63 62 -91 96c11 -2 22 -3 34 -3c11 0 22 1 34 3c35 -44 75 -84 120 -120'], + 0x210F: [733,9,500,10,471,'471 85c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 39c0 19 4 41 13 77l51 196c9 33 15 71 15 89c0 13 -9 22 -22 22c-42 0 -146 -97 -190 -178c-29 -53 -46 -114 -62 -229l-69 -16l-7 11c21 63 61 235 88 386l6 34l-69 -42l-13 20l88 54l30 168c1 7 2 16 2 24 c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42l12 -11l-47 -219l158 97l12 -20l-177 -109l-44 -206l20 25c47 58 63 77 98 106c63 53 124 86 158 86c18 0 29 -14 29 -36c0 -17 -5 -48 -11 -74l-64 -256c-6 -22 -7 -30 -7 -40c0 -11 6 -20 13 -20c10 0 32 11 61 30l26 17'], + 0x2111: [686,27,554,28,533,'533 655c-47 -44 -98 -82 -155 -112l-129 47c-19 6 -37 11 -57 11c-30 0 -59 -10 -80 -32c-29 -29 -53 -75 -67 -113l-17 11c13 35 32 78 48 112c11 23 26 49 43 67c26 30 56 40 95 40c42 0 104 -29 154 -53c17 -8 34 -16 53 -16c15 0 35 6 47 13c22 11 39 27 54 41z M514 578c-20 -18 -39 -41 -53 -64c-9 -16 -12 -32 -12 -50c0 -22 1 -54 3 -65c7 -51 12 -106 12 -154c0 -62 -14 -126 -59 -171c-57 -57 -131 -101 -213 -101c-37 0 -69 24 -96 48l-53 -37l-5 16c32 44 109 124 114 128c27 -58 32 -68 45 -81c17 -17 45 -29 69 -29 c30 0 48 12 68 32c16 16 27 46 33 68c9 29 11 59 11 89c0 48 -5 89 -10 127c-4 33 -8 67 -8 95c0 12 1 23 2 34c40 44 89 90 140 122'], + 0x2113: [712,20,379,40,339,'339 84c0 -55 -39 -104 -92 -104c-94 0 -132 79 -147 181c-14 -10 -29 -18 -44 -26l-16 30c19 10 38 21 55 34c-4 48 -5 99 -5 149c0 171 10 364 157 364c57 0 75 -70 75 -135c0 -135 -54 -262 -146 -354c4 -110 18 -209 71 -209c35 0 58 33 58 70h34zM288 577 c0 47 0 101 -41 101c-73 0 -73 -186 -73 -330v-76c72 83 114 191 114 305'], + 0x2118: [545,186,711,80,631,'261 -61c-1 47 -30 107 -62 157c-9 15 -20 29 -30 43c-26 -64 -41 -124 -41 -164c0 -48 27 -101 75 -101c33 0 58 28 58 65zM631 316c0 -135 -62 -289 -172 -289c-16 0 -35 4 -53 14c-12 7 -43 38 -49 46c-13 18 -25 39 -35 64c35 27 53 48 78 80l49 -52 c-10 -15 -26 -32 -26 -41c0 -33 30 -67 48 -67c52 0 75 140 75 245c0 101 -12 176 -66 176c-97 0 -202 -130 -272 -266c19 -28 39 -50 56 -77c35 -57 75 -112 75 -205c0 -78 -61 -130 -136 -130c-80 0 -123 83 -123 161c0 50 22 128 58 209c-30 45 -54 92 -54 152 c0 88 75 157 141 209c3 -6 7 -11 12 -16s10 -9 16 -12c-37 -35 -93 -102 -93 -147c0 -43 1 -61 22 -103c77 136 188 263 298 263c100 0 151 -67 151 -214'], + 0x211C: [686,27,828,27,826,'676 463c-13 1 -27 6 -37 16c-7 7 -14 44 -16 69c-1 19 -7 37 -16 53c-8 16 -24 27 -42 27c-25 0 -52 -10 -69 -28c-25 -24 -44 -50 -66 -88c1 -5 5 -48 5 -61c0 -33 0 -69 -3 -103c21 11 70 33 115 40zM826 74l-133 -101l-64 117c1 31 3 60 3 89c0 98 -17 117 -29 129 c-21 21 -54 35 -83 35c-23 0 -65 -11 -92 -19c-3 -22 -7 -45 -12 -67c-12 -51 -27 -94 -56 -138c-56 -45 -113 -100 -168 -146c-22 22 -60 53 -81 53c-31 0 -55 -18 -73 -42l-11 16c16 25 34 55 61 78c16 14 33 28 56 28c12 0 34 -7 48 -17c18 -13 32 -26 46 -41 c35 24 63 52 82 90c14 28 19 59 24 90c6 46 10 92 10 139s-1 127 -40 184c-26 39 -71 72 -118 72c-40 0 -56 -7 -79 -30c-16 -15 -18 -35 -18 -57c0 -12 21 -43 36 -60c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11 c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c15 -18 27 -42 36 -67l4 5c16 20 34 41 52 59c42 42 95 74 155 74c22 0 44 -9 58 -26c15 -18 19 -45 22 -69 c2 -16 1 -33 5 -50c3 -14 8 -28 47 -28c13 0 26 2 38 4l7 -13c-29 -11 -60 -27 -87 -41c-35 -18 -88 -47 -123 -75c51 0 76 -15 102 -37c3 -66 7 -170 16 -197c7 -22 15 -43 27 -63c7 -10 14 -22 26 -22c5 0 39 13 59 21v-16'], + 0x2127: [691,21,839,38,801,'801 530h-26l-7 52c-4 29 -17 37 -36 37h-115c63 -53 166 -170 166 -302c0 -207 -139 -338 -364 -338s-363 132 -363 338c0 132 103 249 166 302h-115c-19 0 -32 -8 -36 -37l-7 -52h-26c6 43 7 112 7 161c21 0 81 -3 119 -3c23 0 98 0 119 3h22v-39 c-9 -9 -23 -13 -38 -23c-6 -4 -15 -14 -25 -29c-27 -40 -79 -155 -79 -247c0 -212 79 -332 256 -332s257 119 257 332c0 92 -52 207 -79 247c-10 15 -19 25 -25 29c-14 10 -29 14 -38 23v39h22c21 -3 96 -3 119 -3c38 0 98 3 119 3c0 -49 1 -118 7 -161'], + 0x2135: [723,19,663,40,623,'623 576c-13 -14 -53 -17 -82 -20c35 -46 49 -87 49 -124c0 -58 -47 -137 -96 -186l59 -66c23 -28 42 -53 47 -81l-56 -118c-5 28 -8 59 -32 85l-318 347c-27 -33 -36 -73 -36 -115c0 -71 33 -151 79 -206v-106c-14 19 -61 23 -94 24c-32 1 -90 -5 -103 -20v109 c14 9 50 16 84 18c-36 47 -46 93 -46 137c0 58 37 134 96 183c-43 52 -53 47 -73 87c-23 28 -42 53 -46 81l45 118c4 -27 17 -58 42 -85l328 -366c23 30 50 67 50 106c0 73 -43 144 -93 203v106c14 -19 61 -23 94 -24c32 -1 90 5 102 20v-107'], + 0x2136: [729,29,552,40,512,'512 27c-7 -22 -22 -28 -41 -28h-390c-18 0 -33 -6 -41 -28v118c8 21 23 27 41 28h353c9 72 25 177 25 265c0 80 -15 145 -49 160c-35 17 -130 26 -184 26c-58 0 -100 0 -124 11c-19 9 -24 17 -30 32v118c7 -22 19 -25 30 -32c19 -12 66 -11 124 -11c54 0 162 -7 195 -26 c59 -34 82 -110 83 -200c2 -113 -29 -246 -49 -343c35 0 49 3 57 27v-117'], + 0x2137: [740,18,489,40,448,'448 81c4 -39 -10 -62 -30 -96c-66 56 -102 187 -111 279c-22 -85 -62 -234 -117 -255c-14 -5 -20 -6 -29 -6c-15 0 -21 7 -50 8c-25 2 -54 -6 -71 -29v128c17 23 46 31 71 28c29 -1 36 -9 49 -9c5 0 16 1 30 7c60 24 92 119 112 191c-3 76 -13 172 -38 188 c-61 37 -99 6 -153 38c-19 12 -30 26 -38 49v138c8 -23 19 -48 38 -59c54 -33 114 1 162 -49c57 -57 50 -313 70 -444c7 -50 71 -114 105 -107'], + 0x2138: [719,16,522,40,482,'482 544c-8 24 -21 27 -57 27c14 -91 27 -214 27 -327c0 -112 -18 -216 -70 -260c-15 22 -39 76 -30 98c47 21 58 166 58 288l-5 202h-324c-18 0 -33 6 -41 27v120c8 -22 23 -28 41 -28h360c19 0 34 -6 41 -28v-119'], + 0x2190: [400,-100,920,80,840,'840 220h-624c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2191: [635,125,460,80,380,'380 400c-43 30 -83 63 -120 99v-624c-10 2 -20 3 -30 3s-20 -1 -30 -3v624c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x2192: [400,-100,920,80,840,'840 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-624c2 10 3 20 3 30s-1 20 -3 30h624c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x2193: [625,135,460,80,380,'380 36c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v624c10 -2 20 -3 30 -3s20 1 30 3v-624c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x2194: [400,-100,1005,80,925,'925 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-573c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h573 c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x2195: [673,172,460,80,380,'380 -1c-56 -52 -106 -109 -150 -171c-44 62 -94 119 -150 171c2 10 3 21 3 32c0 10 -1 21 -3 31c43 -29 83 -62 120 -98v572c-37 -36 -77 -69 -120 -98c2 10 3 21 3 31c0 11 -1 22 -3 32c56 52 106 109 150 172c44 -63 94 -120 150 -172c-2 -10 -3 -21 -3 -32 c0 -10 1 -21 3 -31c-43 29 -83 62 -120 98v-572c37 36 77 69 120 98c-2 -10 -3 -21 -3 -31c0 -11 1 -22 3 -32'], + 0x2196: [522,36,719,80,639,'639 6c-9 -6 -17 -12 -24 -19s-13 -15 -19 -23l-441 441c-1 -52 -6 -104 -15 -155c-6 9 -13 17 -20 25c-8 7 -16 14 -25 20c3 76 -2 152 -15 227c75 -13 151 -18 227 -15c6 -9 13 -17 21 -24c7 -8 15 -15 24 -21c-51 -9 -103 -14 -154 -15'], + 0x2197: [522,36,719,80,639,'639 522c-13 -75 -18 -151 -15 -227c-9 -6 -17 -13 -25 -20c-8 -8 -14 -16 -20 -25c-10 51 -15 103 -16 155l-441 -441c-5 8 -12 16 -19 23s-15 13 -23 19l441 441c-52 1 -104 6 -155 15c9 6 18 13 25 21c8 7 14 15 20 24c77 -3 153 2 228 15'], + 0x2198: [536,22,719,80,639,'639 -22c-75 13 -151 18 -228 15c-6 9 -12 17 -20 24c-7 8 -16 15 -25 21c51 9 103 14 155 15l-441 441c8 6 16 12 23 19s14 15 19 23l441 -441c1 52 6 104 16 155c6 -9 12 -17 20 -25c8 -7 16 -14 25 -20c-3 -76 2 -152 15 -227'], + 0x2199: [536,22,719,80,639,'639 494l-441 -441c51 -1 103 -6 154 -15c-9 -6 -17 -13 -24 -21c-8 -7 -15 -15 -21 -24c-76 3 -152 -2 -227 -15c13 75 18 151 15 227c9 6 17 13 25 20c7 8 14 16 20 25c9 -51 14 -103 15 -155l441 441c6 -8 12 -16 19 -23s15 -13 24 -19'], + 0x219A: [400,-100,920,80,840,'840 220h-275l-41 -120c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l41 120h-298c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h319l41 120c8 -2 17 -3 26 -3 c8 0 17 1 25 3l-41 -120h254c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x219B: [400,-100,920,80,840,'840 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-319l-41 -120c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l41 120h-254c2 10 3 20 3 30s-1 20 -3 30h275l41 120c8 -2 17 -3 26 -3c8 0 17 1 25 3l-41 -120h298 c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x219E: [400,-100,995,80,915,'915 220h-529c36 -37 69 -77 99 -120c-11 2 -22 3 -32 3c-11 0 -22 -1 -32 -3c-40 44 -84 84 -131 120h-74c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3 c-30 -43 -63 -83 -99 -120h74c47 36 91 76 131 120c10 -2 21 -3 32 -3c10 0 21 1 32 3c-30 -43 -63 -83 -99 -120h529c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21A0: [400,-100,995,80,915,'915 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-74c-47 -36 -91 -76 -131 -120c-10 2 -21 3 -32 3c-10 0 -21 -1 -32 -3c30 43 63 83 99 120h-529c2 10 3 20 3 30s-1 20 -3 30h529c-36 37 -69 77 -99 120c11 -2 22 -3 32 -3 c11 0 22 1 32 3c40 -44 84 -84 131 -120h74c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21A2: [400,-100,1005,80,925,'925 100c-10 2 -21 3 -32 3c-10 0 -21 -1 -32 -3l-120 120h-525c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h525l120 120c11 -2 22 -3 32 -3 c11 0 22 1 32 3l-150 -150'], + 0x21A3: [400,-100,1005,80,925,'925 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-525l-120 -120c-11 2 -22 3 -32 3c-11 0 -22 -1 -32 -3l150 150l-150 150c10 -2 21 -3 32 -3c10 0 21 1 32 3l120 -120h525c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3 s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21A6: [400,-100,920,80,840,'840 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-579v-120c-7 2 -15 3 -22 3c-8 0 -16 -1 -23 -3v300c7 -2 15 -3 23 -3c7 0 15 1 22 3v-120h579c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150 '], + 0x21A9: [490,-100,950,80,870,'870 355c0 -88 -47 -135 -135 -135h-519c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h519c49 0 75 26 75 75s-26 75 -75 75h-60c2 10 3 20 3 30 s-1 20 -3 30h60c88 0 135 -47 135 -135'], + 0x21AA: [490,-100,950,80,870,'870 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-519c-88 0 -135 47 -135 135s47 135 135 135h60c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-60c-49 0 -75 -26 -75 -75s26 -75 75 -75h519c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3 s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21AB: [490,-40,950,80,870,'870 355c0 -88 -47 -135 -135 -135h-75v-180c-10 2 -20 3 -30 3s-20 -1 -30 -3v180h-384c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h384v75 c0 88 47 135 135 135s135 -47 135 -135zM810 355c0 49 -26 75 -75 75s-75 -26 -75 -75v-75h75c49 0 75 26 75 75'], + 0x21AC: [490,-40,950,80,870,'870 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-384v-180c-10 2 -20 3 -30 3s-20 -1 -30 -3v180h-75c-88 0 -135 47 -135 135s47 135 135 135s135 -47 135 -135v-75h384c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3 c51 -56 109 -106 171 -150zM290 280v75c0 49 -26 75 -75 75s-75 -26 -75 -75s26 -75 75 -75h75'], + 0x21AD: [400,-100,1005,80,925,'925 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-36c-29 0 -51 14 -69 35c-12 14 -22 32 -34 46c-6 7 -12 14 -22 14c-17 0 -22 -13 -26 -27c-7 -28 -9 -63 -16 -92c-12 -42 -35 -71 -83 -71c-49 0 -72 29 -84 71 c-7 29 -9 64 -16 92c-4 14 -9 27 -25 27c-11 0 -17 -7 -23 -14c-12 -14 -22 -32 -34 -46c-18 -21 -40 -35 -68 -35h-37c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3 c-30 -43 -63 -83 -99 -120h37c10 0 16 7 22 14c12 14 22 32 34 46c18 21 40 35 69 35c48 0 71 -29 83 -71c7 -29 9 -64 16 -92c4 -14 9 -27 26 -27c16 0 21 13 25 27c7 28 9 63 16 92c12 42 35 71 84 71c28 0 50 -14 68 -35c12 -14 22 -32 34 -46c6 -7 12 -14 23 -14h36 c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21AE: [400,-100,1005,80,925,'925 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-271l-42 -120c-8 2 -16 3 -25 3s-17 -1 -25 -3l41 120h-251c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150 c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h271l42 120c8 -2 16 -3 25 -3s17 1 25 3l-41 -120h251c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21B0: [573,72,530,80,450,'450 -72c-10 1 -20 3 -30 3s-20 -2 -30 -3v464h-174c36 -37 69 -77 99 -119c-11 1 -21 3 -32 3s-21 -2 -32 -3c-51 55 -109 106 -171 150c62 43 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -121l204 1c4 -7 8 -13 13 -18s11 -9 17 -12v-495'], + 0x21B1: [572,72,530,80,450,'450 423c-62 -44 -120 -95 -171 -150c-11 1 -21 3 -32 3s-21 -2 -32 -3c30 42 63 82 99 120h-174v-465c-10 1 -20 3 -30 3s-20 -2 -30 -3v495c6 3 12 7 17 12s9 11 13 17h204c-36 38 -69 78 -99 120c11 -1 21 -3 32 -3s21 2 32 3c51 -55 109 -106 171 -149'], + 0x21B6: [543,-240,845,80,765,'765 250c-10 2 -20 3 -30 3s-20 -1 -30 -3c0 155 -92 233 -251 233c-108 0 -176 -43 -216 -123c47 23 96 42 147 58c-5 -10 -9 -20 -13 -30c-3 -10 -5 -20 -7 -31c-69 -32 -134 -71 -195 -117c-23 73 -53 143 -90 210c5 9 9 19 13 29c3 10 5 21 7 31 c30 -40 58 -82 81 -127c49 105 136 160 273 160c199 0 311 -99 311 -293'], + 0x21B7: [543,-240,845,80,765,'765 450c-37 -67 -67 -137 -89 -210c-61 46 -127 85 -196 117c-1 11 -4 21 -7 31s-8 20 -13 30c51 -16 100 -35 147 -58c-40 80 -108 123 -216 123c-159 0 -251 -78 -251 -233c-10 2 -20 3 -30 3s-20 -1 -30 -3c0 194 113 293 311 293c138 0 224 -55 273 -160 c24 45 51 87 82 127c1 -10 3 -21 7 -31c3 -10 7 -20 12 -29'], + 0x21BA: [568,30,720,80,640,'640 250c-2 -155 -126 -280 -280 -280c-155 0 -280 125 -280 280c0 98 53 181 133 232c-41 17 -82 36 -120 59c10 3 20 6 30 11c10 4 19 10 28 16c70 -29 143 -50 218 -64c-38 -66 -68 -136 -92 -208c-10 -3 -20 -6 -30 -11c-9 -4 -19 -10 -27 -16c10 59 25 118 47 174 c-75 -37 -127 -108 -127 -193c0 -122 98 -220 220 -220c121 0 219 99 220 220c1 93 -57 176 -144 207c5 8 9 17 12 27c4 9 6 19 7 29c112 -39 186 -145 185 -263'], + 0x21BB: [568,30,720,79,640,'640 250c0 -155 -125 -280 -280 -280c-154 0 -278 125 -280 280c-1 118 73 224 185 263c1 -10 3 -20 7 -29c3 -10 7 -19 12 -27c-87 -31 -145 -114 -144 -207c1 -121 99 -220 220 -220c122 0 220 98 220 220c0 85 -52 156 -127 193c22 -56 37 -115 47 -174 c-8 6 -17 12 -27 16c-10 5 -20 8 -30 11c-24 72 -54 142 -92 208c75 14 148 35 219 64c8 -6 17 -12 27 -16c10 -5 20 -8 30 -11c-38 -23 -78 -42 -120 -59c80 -51 133 -134 133 -232'], + 0x21BC: [400,-220,920,80,840,'840 220h-730l-30 30c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21BD: [280,-100,920,80,840,'840 220h-624c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150l30 30h730c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21BE: [635,125,340,80,260,'260 400c-43 29 -83 62 -120 98v-623c-10 2 -20 3 -30 3s-20 -1 -30 -3v730l30 30c44 -63 94 -120 150 -172c-2 -10 -3 -21 -3 -31c0 -11 1 -22 3 -32'], + 0x21BF: [635,125,340,80,260,'260 -125c-10 2 -20 3 -30 3s-20 -1 -30 -3v623c-37 -36 -77 -69 -120 -98c2 10 3 21 3 32c0 10 -1 21 -3 31c56 52 106 109 150 172l30 -30v-730'], + 0x21C0: [400,-220,920,80,840,'840 250l-30 -30h-730c2 10 3 20 3 30s-1 20 -3 30h623c-36 37 -69 77 -98 120c10 -2 21 -3 32 -3c10 0 21 1 31 3c52 -56 109 -106 172 -150'], + 0x21C1: [280,-100,920,80,840,'840 250c-63 -44 -120 -94 -172 -150c-10 2 -21 3 -31 3c-11 0 -22 -1 -32 -3c29 43 62 83 98 120h-623c2 10 3 20 3 30s-1 20 -3 30h730'], + 0x21C2: [625,135,340,80,260,'260 37c-56 -52 -106 -109 -150 -172l-30 30v730c10 -2 20 -3 30 -3s20 1 30 3v-623c37 36 77 69 120 98c-2 -10 -3 -21 -3 -32c0 -10 1 -21 3 -31'], + 0x21C3: [625,135,340,80,260,'260 625v-730l-30 -30c-44 63 -94 120 -150 172c2 10 3 21 3 31c0 11 -1 22 -3 32c43 -29 83 -62 120 -98v623c10 -2 20 -3 30 -3s20 1 30 3'], + 0x21C4: [570,70,930,80,850,'840 50h-624c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM850 420c-62 -44 -120 -94 -171 -150 c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-624c2 10 3 20 3 30s-1 20 -3 30h624c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21C6: [570,70,930,80,850,'850 80c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-624c2 10 3 20 3 30s-1 20 -3 30h624c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM840 390h-624c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3 s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21C7: [570,70,920,80,840,'840 50h-624c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM840 390h-624c36 -37 69 -77 99 -120 c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21C8: [635,125,800,80,720,'380 400c-43 30 -83 63 -120 99v-624c-10 2 -20 3 -30 3s-20 -1 -30 -3v624c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 400c-43 30 -83 63 -120 99v-624 c-10 2 -20 3 -30 3s-20 -1 -30 -3v624c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x21C9: [570,70,920,80,840,'840 80c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-624c2 10 3 20 3 30s-1 20 -3 30h624c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM840 420c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3 s-21 -1 -32 -3c30 43 63 83 99 120h-624c2 10 3 20 3 30s-1 20 -3 30h624c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21CA: [625,135,800,80,720,'380 36c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v624c10 -2 20 -3 30 -3s20 1 30 3v-624c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 36c-56 -51 -106 -109 -150 -171 c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v624c10 -2 20 -3 30 -3s20 1 30 3v-624c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x21CB: [510,10,929,80,849,'849 140c-62 -44 -119 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-623c2 10 3 20 3 30s-1 20 -3 30h730zM840 330h-730l-30 30c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30 s1 -20 3 -30'], + 0x21CC: [510,10,929,80,849,'840 110h-624c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150l30 30h730c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM849 360l-29 -30h-730c2 10 3 20 3 30s-1 20 -3 30h623c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3 c52 -56 109 -106 171 -150'], + 0x21CD: [550,50,920,80,840,'840 130h-296l-62 -180c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l62 180h-198c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h281l62 180 c8 -2 17 -3 26 -3c8 0 17 1 25 3l-62 -180h213c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-234l-41 -120h275c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM555 310h-321c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h280'], + 0x21CE: [550,50,1005,80,925,'925 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-224l-62 -180c-8 2 -16 3 -25 3s-17 -1 -25 -3l62 180h-141c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200 c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h224l62 180c8 -2 16 -3 25 -3s17 1 25 3l-62 -180h141c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -140 200 -200zM840 250c-24 19 -47 39 -69 60h-222l-42 -120 h264c22 21 45 41 69 60zM498 310h-264c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h222'], + 0x21CF: [550,50,920,80,840,'840 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-281l-62 -180c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l62 180h-213c2 10 3 20 3 30s-1 20 -3 30h234l41 120h-275c2 10 3 20 3 30s-1 20 -3 30h296l62 180 c8 -2 17 -3 26 -3c8 0 17 1 25 3l-62 -180h198c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -141 200 -200zM755 250c-24 19 -47 39 -69 60h-280l-41 -120h321c22 21 45 41 69 60'], + 0x21D0: [450,-50,920,80,840,'840 130h-545c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h545c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-606c-22 -21 -45 -41 -69 -60 c24 -19 47 -39 69 -60h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21D1: [635,125,560,80,480,'480 350c-28 22 -54 46 -80 70v-545c-10 2 -20 3 -30 3s-20 -1 -30 -3v606c-21 22 -41 45 -60 69c-19 -24 -39 -47 -60 -69v-606c-10 2 -20 3 -30 3s-20 -1 -30 -3v545c-26 -24 -52 -48 -80 -70c2 14 3 28 3 43c0 14 -1 28 -3 42c73 59 141 127 200 200 c59 -73 127 -141 200 -200c-2 -14 -3 -28 -3 -42c0 -15 1 -29 3 -43'], + 0x21D2: [450,-50,920,80,840,'840 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-545c2 10 3 20 3 30s-1 20 -3 30h606c22 21 45 41 69 60c-24 19 -47 39 -69 60h-606c2 10 3 20 3 30s-1 20 -3 30h545c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3 c14 0 28 1 42 3c59 -73 127 -141 200 -200'], + 0x21D3: [625,135,560,80,480,'480 65c-73 -59 -141 -127 -200 -200c-59 73 -127 141 -200 200c2 14 3 28 3 42c0 15 -1 29 -3 43c28 -22 54 -46 80 -70v545c10 -2 20 -3 30 -3s20 1 30 3v-606c21 -22 41 -45 60 -69c19 24 39 47 60 69v606c10 -2 20 -3 30 -3s20 1 30 3v-545c26 24 52 48 80 70 c-2 -14 -3 -28 -3 -43c0 -14 1 -28 3 -42'], + 0x21D4: [450,-50,1005,80,925,'925 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-415c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3 c-22 -28 -46 -54 -70 -80h415c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -140 200 -200zM840 250c-24 19 -47 39 -69 60h-537c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h537c22 21 45 41 69 60'], + 0x21D5: [673,172,560,80,480,'480 27c-73 -59 -141 -126 -200 -199c-59 73 -127 140 -200 199c2 15 3 29 3 43s-1 28 -3 42c28 -22 54 -45 80 -70v416c-26 -25 -52 -48 -80 -70c2 14 3 28 3 42s-1 28 -3 43c73 59 141 126 200 200c59 -74 127 -141 200 -200c-2 -15 -3 -29 -3 -43s1 -28 3 -42 c-28 22 -54 45 -80 70v-416c26 25 52 48 80 70c-2 -14 -3 -28 -3 -42s1 -28 3 -43zM340 518c-21 23 -41 46 -60 70c-19 -24 -39 -47 -60 -70v-536c21 -23 41 -46 60 -70c19 24 39 47 60 70v536'], + 0x21DA: [525,25,920,80,840,'840 40h-455l55 -65c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-82 101 -174 193 -275 275c101 82 193 174 275 275c14 -2 28 -3 42 -3c15 0 29 1 43 3l-55 -65h455c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-511c-41 -42 -83 -82 -128 -120h639c-2 -10 -3 -20 -3 -30 s1 -20 3 -30h-639c45 -38 87 -78 128 -120h511c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21DB: [525,25,920,80,840,'840 250c-101 -82 -193 -174 -275 -275c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3l55 65h-455c2 10 3 20 3 30s-1 20 -3 30h511c41 42 83 82 128 120h-639c2 10 3 20 3 30s-1 20 -3 30h639c-45 38 -87 78 -128 120h-511c2 10 3 20 3 30s-1 20 -3 30h455l-55 65 c14 -2 28 -3 43 -3c14 0 28 1 42 3c82 -101 174 -193 275 -275'], + 0x21DD: [400,-100,920,80,840,'840 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-61c-29 0 -51 14 -69 35c-12 14 -22 32 -34 46c-6 7 -12 14 -22 14c-17 0 -22 -13 -26 -27c-7 -28 -9 -63 -16 -92c-12 -42 -35 -71 -83 -71c-49 0 -72 29 -84 71 c-7 29 -9 64 -16 92c-4 14 -9 27 -25 27c-11 0 -17 -7 -23 -14c-12 -14 -22 -32 -34 -46c-18 -21 -40 -35 -68 -35h-63c2 10 3 20 3 30s-1 20 -3 30h63c10 0 16 7 22 14c12 14 22 32 34 46c18 21 40 35 69 35c48 0 71 -29 83 -71c7 -29 9 -64 16 -92c4 -14 9 -27 26 -27 c16 0 21 13 25 27c7 28 9 63 16 92c12 42 35 71 84 71c28 0 50 -14 68 -35c12 -14 22 -32 34 -46c6 -7 12 -14 23 -14h61c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x2200: [700,6,760,70,690,'690 700l-280 -706c-10 2 -20 3 -30 3s-20 -1 -30 -3l-280 706c11 -2 21 -3 32 -3s22 1 33 3l94 -237h303l94 237c10 -2 21 -3 32 -3s22 1 32 3zM508 403h-255l127 -322'], + 0x2201: [700,0,640,80,560,'560 210c0 -135 -83 -210 -240 -210s-240 75 -240 210v280c0 135 83 210 240 210s240 -75 240 -210c-10 2 -20 3 -30 3s-20 -1 -30 -3c0 99 -64 150 -180 150s-180 -51 -180 -150v-280c0 -99 64 -150 180 -150s180 51 180 150c10 -2 20 -3 30 -3s20 1 30 3'], + 0x2202: [733,9,572,51,509,'503 404c18 -123 -6 -259 -48 -326c-37 -57 -91 -87 -160 -87c-109 0 -210 86 -226 194c-7 62 11 125 50 171c33 39 73 57 125 57c53 0 94 -16 168 -66c-1 48 2 51 -1 80c-3 18 -6 34 -9 50l-21 72c-28 86 -60 113 -109 127c-7 3 -29 10 -45 10c-41 0 -93 -16 -110 -48 l-15 4l-51 60c20 26 144 31 168 31c12 0 29 -3 38 -7c8 -3 21 -11 38 -21c34 -19 91 -58 111 -75c26 -22 58 -101 62 -108c17 -38 30 -73 35 -118zM411 313c0 0 -10 9 -19 15c-40 28 -70 40 -100 40c-85 0 -142 -93 -126 -208c13 -86 53 -138 111 -138c46 0 87 33 107 86 c20 51 24 94 27 205'], + 0x2203: [700,0,640,80,560,'560 30c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-450c2 10 3 20 3 30s-1 20 -3 30h420v260h-420c2 10 3 20 3 30s-1 20 -3 30h420v260h-420c2 10 3 20 3 30s-1 20 -3 30h450c4 -6 8 -12 13 -17s11 -9 17 -13v-640'], + 0x2204: [780,80,640,80,560,'560 30c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-305l-28 -80c-8 2 -16 3 -25 3s-17 -1 -25 -3l27 80h-94c2 10 3 20 3 30s-1 20 -3 30h115l89 260h-204c2 10 3 20 3 30s-1 20 -3 30h225l89 260h-314c2 10 3 20 3 30s-1 20 -3 30h335l28 80c8 -2 16 -3 25 -3s17 1 25 3 l-27 -80h64c4 -6 8 -12 13 -17s11 -9 17 -13v-640zM500 380v260h-55l-89 -260h144zM500 60v260h-165l-89 -260h254'], + 0x2205: [810,110,640,80,560,'500 240v220c0 70 -22 120 -65 150l-186 -540c21 -7 44 -10 71 -10c117 0 180 63 180 180zM391 630c-21 7 -44 10 -71 10c-117 0 -180 -63 -180 -180v-220c0 -70 22 -120 65 -150zM560 240c0 -156 -84 -240 -240 -240c-34 0 -64 4 -91 12l-42 -122c-8 2 -17 3 -25 3 c-9 0 -18 -1 -26 -3l48 140c-68 37 -104 108 -104 210v220c0 156 84 240 240 240c34 0 64 -4 91 -12l42 122c8 -2 17 -3 26 -3c8 0 17 1 25 3l-48 -140c68 -37 104 -108 104 -210v-220'], + 0x2207: [690,13,629,6,617,'617 665l-289 -658l-38 -20l-284 659v9l62 35l294 -3l253 3zM538 620c0 16 -12 23 -45 26h-332c-25 -2 -41 -8 -41 -19c0 -12 11 -34 20 -55l191 -452l172 405c13 30 35 82 35 95'], + 0x2208: [550,50,778,80,698,'698 -50h-318c-195 0 -300 105 -300 300s105 300 300 300h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-318c-146 0 -229 -73 -239 -210h557c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-557c10 -137 93 -210 239 -210h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2209: [650,150,778,80,698,'698 -50h-318c-24 0 -46 2 -67 5l-36 -105c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l40 115c-122 35 -186 132 -186 285c0 195 105 300 300 300h87l34 100c8 -2 17 -3 26 -3c8 0 17 1 25 3l-34 -100h180c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-201l-72 -210h273 c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-294l-71 -207c15 -2 30 -3 47 -3h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM353 220h-212c8 -104 57 -171 144 -197zM446 490h-66c-146 0 -229 -73 -239 -210h233'], + 0x220B: [550,50,778,80,698,'698 250c0 -195 -105 -300 -300 -300h-318c2 10 3 20 3 30s-1 20 -3 30h318c146 0 229 73 239 210h-557c2 10 3 20 3 30s-1 20 -3 30h557c-10 137 -93 210 -239 210h-318c2 10 3 20 3 30s-1 20 -3 30h318c195 0 300 -105 300 -300'], + 0x220D: [450,-50,578,80,498,'498 250c0 -130 -70 -200 -200 -200h-218c2 10 3 20 3 30s-1 20 -3 30h218c80 0 128 38 138 110h-356c2 10 3 20 3 30s-1 20 -3 30h356c-10 72 -58 110 -138 110h-218c2 10 3 20 3 30s-1 20 -3 30h218c130 0 200 -70 200 -200'], + 0x2212: [280,-220,760,80,680,'680 220h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2213: [670,50,760,80,680,'680 610h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 220h-270v-270c-10 2 -20 3 -30 3s-20 -1 -30 -3v270h-270c2 10 3 20 3 30s-1 20 -3 30h270v270c10 -2 20 -3 30 -3s20 1 30 3v-270h270c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2214: [760,50,760,80,680,'680 220h-270v-270c-10 2 -20 3 -30 3s-20 -1 -30 -3v270h-270c2 10 3 20 3 30s-1 20 -3 30h270v270c10 -2 20 -3 30 -3s20 1 30 3v-270h270c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM440 700c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2215: [650,150,486,80,406,'406 650l-275 -800c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0x2216: [650,150,737,80,657,'657 -150c-9 2 -19 3 -28 3c-10 0 -20 -1 -29 -3l-520 800c9 -2 19 -3 29 -3c9 0 19 1 28 3'], + 0x2217: [451,-49,542,80,462,'462 215l-10 -8l-165 25l75 -149l-5 -12l-66 -22l-11 7l-27 165l-119 -118l-13 1l-41 57l3 12l149 77l-149 77l-3 12l41 57l13 1l119 -118l27 165l11 7l66 -22l5 -12l-75 -149l165 25l10 -8v-70'], + 0x2218: [410,-90,480,80,400,'400 250c0 -96 -64 -160 -160 -160s-160 64 -160 160s64 160 160 160s160 -64 160 -160zM352 250c0 67 -45 112 -112 112s-112 -45 -112 -112s45 -112 112 -112s112 45 112 112'], + 0x2219: [450,-50,560,80,480,'480 250c0 -120 -80 -200 -200 -200s-200 80 -200 200s80 200 200 200s200 -80 200 -200'], + 0x221A: [660,130,690,120,720,'720 600h-39l-276 -730c-14 2 -28 3 -42 3s-28 -1 -42 -3l-127 228h-74v60h146l110 -197l263 699h81v-60'], + 0x221D: [440,-60,798,80,718,'718 68c-20 -5 -41 -8 -62 -8c-87 0 -151 67 -201 141c-49 -73 -108 -139 -193 -139c-99 0 -182 76 -182 173c0 112 87 205 198 205c91 0 157 -70 210 -147c53 76 121 141 211 141c7 0 14 -2 19 -7c-2 -7 -3 -13 -3 -20s1 -14 3 -20h-49c-72 0 -125 -55 -167 -116 c48 -76 104 -164 185 -164c10 0 21 1 31 3c-2 -6 -3 -13 -3 -21c0 -7 1 -14 3 -21zM441 223c-49 78 -110 158 -201 158c-69 0 -127 -54 -127 -122c0 -88 77 -154 168 -154c71 0 119 56 160 118'], + 0x221E: [443,-57,943,80,863,'863 262c0 -114 -94 -205 -211 -205c-87 0 -147 71 -197 147c-49 -73 -108 -139 -193 -139c-99 0 -182 76 -182 173c0 112 87 205 198 205c91 0 157 -70 210 -147c52 74 117 139 205 139c95 0 170 -78 170 -173zM441 226c-49 78 -111 158 -201 158 c-69 0 -127 -53 -127 -122c0 -88 77 -154 168 -154c71 0 119 56 160 118zM830 238c0 86 -70 154 -155 154c-75 0 -129 -55 -173 -118c47 -75 101 -158 188 -158c73 0 140 51 140 122'], + 0x2220: [651,0,803,80,723,'723 609l-549 -549h527c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-600c-1 9 -4 18 -8 27c-3 8 -8 17 -13 24l600 600c6 -8 12 -16 19 -23s15 -14 24 -19'], + 0x2221: [651,103,803,80,723,'723 609l-297 -297c61 -70 98 -159 104 -252h171c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-171c-2 -34 -9 -69 -20 -103c-9 5 -18 9 -27 12c-10 3 -20 6 -30 7c9 28 15 56 17 84h-369c-1 9 -4 18 -8 27c-3 8 -8 17 -13 24l261 261c-22 18 -46 34 -72 48c7 8 12 16 17 25 c4 9 8 18 11 28c31 -16 60 -36 86 -58l297 296c6 -8 12 -16 19 -23s15 -14 24 -19zM470 60c-6 77 -37 151 -87 210l-209 -210h296'], + 0x2222: [529,29,737,80,657,'657 48c-5 -8 -10 -17 -14 -26c-4 -10 -7 -19 -9 -29l-158 65c-15 -31 -34 -60 -58 -87c-6 8 -13 15 -20 21c-8 7 -16 13 -25 18c19 22 35 46 48 71l-341 141c2 9 3 19 3 28s-1 19 -3 28l341 141c-13 25 -29 49 -48 71c9 5 17 11 25 18c7 6 14 13 20 21 c24 -27 43 -56 58 -87l158 65c2 -10 5 -19 9 -29c4 -9 9 -18 14 -26l-158 -66c30 -88 30 -184 0 -272zM444 137c23 73 23 153 0 226l-274 -113'], + 0x2223: [650,150,208,80,128,'128 -150c-8 2 -16 3 -24 3s-16 -1 -24 -3v800c8 -2 16 -3 24 -3s16 1 24 3v-800'], + 0x2224: [650,150,380,80,300,'300 375l-86 -132v-393c-8 2 -16 3 -24 3s-16 -1 -24 -3v319l-86 -133c2 15 3 30 3 45c0 14 -1 29 -3 44l86 132v393c8 -2 16 -3 24 -3s16 1 24 3v-319l86 133c-2 -15 -3 -30 -3 -44c0 -15 1 -30 3 -45'], + 0x2225: [650,150,376,80,296,'128 -150c-8 2 -16 3 -24 3s-16 -1 -24 -3v800c8 -2 16 -3 24 -3s16 1 24 3v-800zM296 -150c-8 2 -16 3 -24 3s-16 -1 -24 -3v800c8 -2 16 -3 24 -3s16 1 24 3v-800'], + 0x2226: [650,150,536,80,456,'456 495l-80 -123v-522c-8 2 -16 3 -24 3s-16 -1 -24 -3v448l-120 -184v-264c-8 2 -16 3 -24 3s-16 -1 -24 -3v190l-80 -124c2 15 3 30 3 45c0 14 -1 29 -3 44l80 123v522c8 -2 16 -3 24 -3s16 1 24 3v-448l120 184v264c8 -2 16 -3 24 -3s16 1 24 3v-190l80 124 c-2 -15 -3 -30 -3 -44c0 -15 1 -30 3 -45'], + 0x2227: [556,50,760,80,680,'680 -50c-11 2 -22 3 -33 3s-22 -1 -33 -3l-234 526l-234 -526c-11 2 -22 3 -33 3s-22 -1 -33 -3l270 606c10 -2 20 -3 30 -3s20 1 30 3'], + 0x2228: [550,56,760,80,680,'680 550l-270 -606c-10 2 -20 3 -30 3s-20 -1 -30 -3l-270 606c11 -2 22 -3 33 -3s22 1 33 3l234 -526l234 526c11 -2 22 -3 33 -3s22 1 33 3'], + 0x2229: [568,50,760,80,680,'680 -50c-10 2 -20 3 -30 3s-20 -1 -30 -3v318c0 156 -84 240 -240 240s-240 -84 -240 -240v-318c-10 2 -20 3 -30 3s-20 -1 -30 -3v318c0 195 105 300 300 300s300 -105 300 -300v-318'], + 0x222A: [550,68,760,80,680,'680 232c0 -195 -105 -300 -300 -300s-300 105 -300 300v318c10 -2 20 -3 30 -3s20 1 30 3v-318c0 -156 84 -240 240 -240s240 84 240 240v318c10 -2 20 -3 30 -3s20 1 30 3v-318'], + 0x222B: [796,296,634,80,554,'554 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105c-12 -67 -12 -248 -12 -372c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67 c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54c31 38 52 61 83 95c14 16 58 37 82 37c23 0 47 -8 65 -19'], + 0x2234: [447,-53,596,80,516,'358 387c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM516 113c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 113c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2235: [447,-53,596,80,516,'358 113c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM516 387c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 387c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x223C: [337,-163,758,80,678,'678 324c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62 c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x223D: [337,-163,758,80,678,'678 176c-7 0 -13 -1 -20 -3c-6 -2 -12 -5 -18 -9c-22 67 -56 97 -103 110c-8 3 -16 4 -24 4c-42 0 -81 -28 -117 -53c-47 -32 -100 -62 -154 -62c-12 0 -25 1 -38 5c-62 17 -95 67 -124 156c7 0 14 1 20 3s13 5 18 9c22 -67 56 -97 103 -110c8 -3 16 -4 24 -4 c42 0 81 28 117 53c47 32 100 62 154 62c12 0 25 -1 38 -5c62 -17 95 -67 124 -156'], + 0x2240: [549,49,351,80,271,'271 388c0 -57 -35 -110 -72 -157c-32 -40 -68 -84 -57 -135c10 -46 37 -82 101 -107c-4 -6 -8 -12 -10 -18c-3 -6 -4 -13 -5 -20c-85 34 -132 71 -145 133c-2 9 -3 19 -3 28c0 57 35 110 72 157c32 40 68 84 58 135c-10 46 -37 82 -102 107c5 6 8 12 10 18 c3 6 5 13 5 20c85 -34 132 -71 145 -133c2 -9 3 -19 3 -28'], + 0x2241: [457,-43,758,80,678,'678 324c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-46 0 -90 21 -131 47l-85 -167c-8 2 -17 3 -26 3c-10 0 -19 -1 -27 -3l98 194c-31 21 -65 41 -100 41c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 139 124 156 c13 4 26 5 38 5c46 0 90 -21 131 -47l85 167c8 -2 17 -3 27 -3c9 0 18 1 26 3l-98 -194c31 -21 65 -41 100 -41c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x2242: [390,-53,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM679 214c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-6 4 -12 7 -18 9 c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x2243: [447,-110,760,80,680,'680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM679 434c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-6 4 -12 7 -18 9 c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x2245: [517,-40,760,80,680,'679 504c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62 c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3zM680 220h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 40h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2246: [535,20,760,80,680,'679 521c-29 -88 -62 -138 -124 -156c-13 -3 -26 -5 -38 -5c-54 0 -107 30 -154 63c-36 25 -75 52 -117 52c-8 0 -16 -1 -24 -3c-47 -13 -81 -44 -103 -111c-6 4 -12 7 -18 9c-7 2 -13 4 -20 4c29 88 62 138 124 156c13 3 26 5 38 5c54 0 107 -30 154 -63 c36 -25 75 -52 117 -52c8 0 16 1 24 3c47 13 81 44 103 111c6 -4 12 -7 18 -9c7 -2 13 -4 20 -4zM680 40h-329l-31 -60c-8 2 -17 3 -26 3c-10 0 -19 -1 -27 -3l30 60h-217c2 10 3 20 3 30s-1 20 -3 30h248l61 120h-309c2 10 3 20 3 30s-1 20 -3 30h339l21 40 c8 -2 17 -3 27 -3c9 0 18 1 26 3l-20 -40h207c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-237l-62 -120h299c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2248: [447,-53,758,80,678,'678 434c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62 c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3zM678 214c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9 s-13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x224A: [517,-40,760,80,680,'679 504c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62 c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3zM679 324c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-6 4 -12 7 -18 9 c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3zM680 40h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x224D: [435,-65,760,80,680,'680 365c-91 -52 -195 -75 -300 -75s-209 23 -300 75c2 12 3 23 3 35s-1 23 -3 35c92 -53 194 -85 300 -85s208 32 300 85c-2 -12 -3 -23 -3 -35s1 -23 3 -35zM680 65c-92 53 -194 85 -300 85s-208 -32 -300 -85c2 12 3 23 3 35s-1 23 -3 35c91 52 195 75 300 75 s209 -23 300 -75c-2 -12 -3 -23 -3 -35s1 -23 3 -35'], + 0x224E: [490,-10,760,80,680,'680 330h-140h-60c0 60 -40 100 -100 100s-100 -40 -100 -100h-60h-140c2 10 3 20 3 30s-1 20 -3 30h150c21 62 76 100 150 100s129 -38 150 -100h150c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-150c-21 -62 -76 -100 -150 -100s-129 38 -150 100h-150c2 10 3 20 3 30 s-1 20 -3 30h140h60c0 -60 40 -100 100 -100s100 40 100 100h60h140c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x224F: [490,-110,760,80,680,'680 330h-140h-60c0 60 -40 100 -100 100s-100 -40 -100 -100h-60h-140c2 10 3 20 3 30s-1 20 -3 30h150c21 62 76 100 150 100s129 -38 150 -100h150c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30 '], + 0x2250: [630,-110,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM440 570c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2251: [630,130,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM440 570c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM440 -70 c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2252: [630,130,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM200 570c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM680 -70 c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2253: [630,130,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 570c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 -70 c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2256: [390,-110,760,80,680,'680 110h-600c2 10 3 20 3 30s-1 20 -3 30h158c-12 23 -18 50 -18 80s6 57 18 80h-158c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-158c12 -23 18 -50 18 -80s-6 -57 -18 -80h158c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM492 250 c0 67 -45 112 -112 112s-112 -45 -112 -112s45 -112 112 -112s112 45 112 112'], + 0x2257: [830,-110,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM540 670c0 -96 -64 -160 -160 -160s-160 64 -160 160s64 160 160 160s160 -64 160 -160zM492 670 c0 67 -45 112 -112 112s-112 -45 -112 -112s45 -112 112 -112s112 45 112 112'], + 0x225C: [867,-110,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM560 510h-360l175 357h15zM476 565l-106 226l-111 -226h217'], + 0x2260: [650,150,760,80,680,'680 110h-323l-89 -260c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l89 260h-226c2 10 3 20 3 30s-1 20 -3 30h247l55 160h-302c2 10 3 20 3 30s-1 20 -3 30h323l89 260c8 -2 17 -3 26 -3c8 0 17 1 25 3l-89 -260h226c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-247l-55 -160h302 c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2261: [500,0,760,80,680,'680 440h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 220h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 0h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2264: [623,113,766,80,686,'686 57l-606 253c2 10 3 20 3 30s-1 20 -3 30l606 253c-2 -11 -3 -22 -3 -33s1 -22 3 -33l-522 -217l522 -217c-2 -11 -3 -22 -3 -33s1 -22 3 -33zM686 -113h-606c2 10 3 20 3 30c0 11 -1 21 -3 30h606c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30'], + 0x2265: [623,113,766,80,686,'686 310l-606 -253c2 11 3 22 3 33s-1 22 -3 33l522 217l-522 217c2 11 3 22 3 33s-1 22 -3 33l606 -253c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -113h-606c2 10 3 20 3 30c0 11 -1 21 -3 30h606c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30'], + 0x2266: [697,187,766,80,686,'686 163l-606 237c2 10 3 20 3 30s-1 20 -3 30l606 237c-2 -10 -3 -21 -3 -32s1 -22 3 -32l-518 -203l518 -203c-2 -10 -3 -21 -3 -32s1 -22 3 -32zM686 -7h-606c2 10 3 20 3 30s-1 20 -3 30h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -187h-606c2 10 3 20 3 30 s-1 20 -3 30h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2267: [697,187,766,80,686,'686 400l-606 -237c2 10 3 21 3 32s-1 22 -3 32l518 203l-518 203c2 10 3 21 3 32s-1 22 -3 32l606 -237c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -7h-606c2 10 3 20 3 30s-1 20 -3 30h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -187h-606c2 10 3 20 3 30s-1 20 -3 30 h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2268: [697,267,766,80,686,'686 163l-606 237c2 10 3 20 3 30s-1 20 -3 30l606 237c-2 -10 -3 -21 -3 -32s1 -22 3 -32l-518 -203l518 -203c-2 -10 -3 -21 -3 -32s1 -22 3 -32zM686 -187h-353l-52 -80c-9 2 -19 3 -28 3c-10 0 -19 -1 -29 -3l52 80h-196c2 10 3 20 3 30s-1 20 -3 30h235l78 120h-313 c2 10 3 20 3 30s-1 20 -3 30h352l52 80c10 -2 19 -3 29 -3c9 0 19 1 28 3l-52 -80h197c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-236l-78 -120h314c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2269: [697,267,766,80,686,'686 400l-606 -237c2 10 3 21 3 32s-1 22 -3 32l518 203l-518 203c2 10 3 21 3 32s-1 22 -3 32l606 -237c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -187h-353l-52 -80c-9 2 -19 3 -28 3c-10 0 -19 -1 -29 -3l52 80h-196c2 10 3 20 3 30s-1 20 -3 30h235l78 120h-313 c2 10 3 20 3 30s-1 20 -3 30h352l52 80c10 -2 19 -3 29 -3c9 0 19 1 28 3l-52 -80h197c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-236l-78 -120h314c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x226A: [566,66,944,80,864,'529 -66l-449 286c2 10 3 20 3 30s-1 20 -3 30l449 286c-2 -12 -3 -24 -3 -36s1 -24 3 -36l-384 -244l384 -244c-2 -12 -3 -24 -3 -36s1 -24 3 -36zM864 -66l-449 286c2 10 3 20 3 30s-1 20 -3 30l449 286c-2 -12 -3 -24 -3 -36s1 -24 3 -36l-384 -244l384 -244 c-2 -12 -3 -24 -3 -36s1 -24 3 -36'], + 0x226B: [566,66,944,80,864,'864 220l-449 -286c2 12 3 24 3 36s-1 24 -3 36l384 244l-384 244c2 12 3 24 3 36s-1 24 -3 36l449 -286c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM529 220l-449 -286c2 12 3 24 3 36s-1 24 -3 36l384 244l-384 244c2 12 3 24 3 36s-1 24 -3 36l449 -286c-2 -10 -3 -20 -3 -30 s1 -20 3 -30'], + 0x226C: [668,168,459,80,379,'379 250c0 -118 -42 -219 -118 -300c33 -31 72 -59 118 -82c-5 -5 -9 -11 -12 -17s-5 -12 -6 -19c-50 25 -94 54 -132 88c-37 -34 -81 -63 -131 -88c-1 7 -3 13 -6 19s-7 12 -12 17c46 23 85 51 118 82c-76 81 -118 182 -118 300s42 219 118 300c-33 31 -72 59 -118 82 c5 5 9 11 12 17s5 12 6 19c50 -25 94 -54 131 -88c38 34 82 63 132 88c1 -7 3 -13 6 -19s7 -12 12 -17c-46 -23 -85 -51 -118 -82c76 -81 118 -182 118 -300zM319 250c0 102 -30 192 -90 265c-59 -73 -89 -163 -89 -265s30 -192 89 -265c60 73 90 163 90 265'], + 0x226E: [650,150,767,80,687,'687 -63l-280 131l-75 -218c-8 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l82 238l-283 132c2 10 3 20 3 30s-1 20 -3 30l416 194l60 176c8 -2 17 -3 25 -3c9 0 18 1 26 3l-51 -148l131 61c-2 -11 -3 -22 -3 -33s1 -22 3 -33l-158 -74l-103 -298l261 -122c-2 -11 -3 -22 -3 -33 s1 -22 3 -33zM468 395l-310 -145l225 -105'], + 0x226F: [650,150,767,80,687,'687 220l-416 -194l-60 -176c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l51 148l-131 -61c2 11 3 22 3 33s-1 22 -3 33l158 74l102 298l-260 122c2 11 3 22 3 33s-1 22 -3 33l280 -131l75 218c8 -2 17 -3 25 -3c9 0 17 1 26 3l-82 -238l283 -132c-2 -10 -3 -20 -3 -30 s1 -20 3 -30zM609 250l-225 105l-86 -250'], + 0x2270: [678,178,766,80,686,'686 -113h-342l-22 -65c-8 2 -17 3 -25 3c-9 0 -17 -1 -26 -3l23 65h-214c2 10 3 20 3 30c0 11 -1 21 -3 30h234l80 232l-314 131c2 10 3 20 3 30s-1 20 -3 30l443 185l42 123c9 -2 17 -3 26 -3c8 0 17 1 25 3l-34 -99l104 44c-2 -11 -3 -22 -3 -33s1 -22 3 -33l-130 -54 l-98 -285l228 -95c-2 -11 -3 -22 -3 -33s1 -22 3 -33l-248 104l-73 -214h321c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30zM497 479l-333 -139l249 -104'], + 0x2271: [678,178,766,80,686,'686 -113h-463l-22 -65c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l22 65h-92c2 10 3 20 3 30c0 11 -1 21 -3 30h113l63 184l-176 -74c2 11 3 22 3 33s-1 22 -3 33l202 84l80 233l-282 117c2 11 3 22 3 33s-1 22 -3 33l302 -126l62 181c8 -2 17 -3 25 -3c9 0 17 1 26 3 l-69 -200l260 -108c-2 -10 -3 -20 -3 -30s1 -20 3 -30l-371 -154l-71 -209h442c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30zM602 340l-195 81l-66 -190'], + 0x2272: [651,141,766,80,686,'686 86l-606 253c2 10 3 20 3 30s-1 20 -3 30l606 252c-2 -10 -3 -21 -3 -32s1 -22 3 -33l-522 -217l522 -218c-2 -10 -3 -21 -3 -32s1 -22 3 -33zM682 20c-29 -89 -62 -138 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 63c-36 25 -75 52 -117 52 c-8 0 -16 -1 -24 -3c-47 -14 -81 -44 -103 -111c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 6 38 6c54 0 107 -30 154 -63c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -3 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x2273: [651,141,766,80,686,'686 339l-606 -253c2 11 3 22 3 33s-1 22 -3 32l522 218l-522 217c2 11 3 22 3 33s-1 22 -3 32l606 -252c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM682 20c-29 -89 -62 -138 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 63c-36 25 -75 52 -117 52c-8 0 -16 -1 -24 -3 c-47 -14 -81 -44 -103 -111c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 6 38 6c54 0 107 -30 154 -63c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -3 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x2276: [731,231,771,80,691,'686 197l-606 237c2 10 3 20 3 30s-1 20 -3 30l606 237c-2 -10 -3 -21 -3 -32s1 -21 3 -32l-518 -203l518 -203c-2 -10 -3 -21 -3 -32s1 -21 3 -32zM691 6l-605 -237c2 10 3 21 3 32s-1 21 -3 32l517 203l-517 203c2 10 3 21 3 32s-1 21 -3 32l605 -237 c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2277: [731,231,771,80,691,'691 434l-605 -237c2 11 3 21 3 32s-1 22 -3 32l517 203l-517 203c2 11 3 21 3 32s-1 22 -3 32l605 -237c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -231l-606 237c2 10 3 20 3 30s-1 20 -3 30l606 237c-2 -11 -3 -21 -3 -32s1 -22 3 -32l-518 -203l518 -203 c-2 -11 -3 -21 -3 -32s1 -22 3 -32'], + 0x227A: [578,78,785,80,705,'705 -42c-9 -4 -18 -9 -26 -16c-8 -6 -15 -13 -22 -20c-138 180 -350 289 -577 298c2 10 3 20 3 30s-1 20 -3 30c227 9 439 118 577 298c7 -7 14 -14 22 -20c8 -7 17 -12 26 -16c-110 -143 -262 -244 -433 -292c171 -48 323 -149 433 -292'], + 0x227B: [578,78,785,80,705,'705 220c-227 -9 -439 -118 -577 -298c-7 7 -14 14 -22 20c-8 7 -17 12 -26 16c110 143 262 244 433 292c-171 48 -323 149 -433 292c9 4 18 9 26 16c8 6 15 13 22 20c138 -180 350 -289 577 -298c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x227C: [701,201,785,80,705,'705 81c-9 -5 -18 -10 -26 -16s-15 -13 -22 -21c-138 180 -350 289 -577 299c2 9 3 19 3 30c0 10 -1 20 -3 30c227 9 439 118 577 298c7 -8 14 -15 22 -21s17 -11 26 -16c-110 -142 -262 -244 -433 -291c171 -48 323 -150 433 -292zM649 -178c-10 -2 -20 -5 -29 -9 c-9 -3 -18 -8 -27 -14c-89 214 -290 352 -512 363c2 10 3 20 3 30s-1 20 -3 30c246 -12 469 -163 568 -400'], + 0x227D: [701,201,785,80,705,'705 343c-227 -10 -439 -119 -577 -299c-7 8 -14 15 -22 21s-17 11 -26 16c110 142 262 244 433 292c-171 47 -323 149 -433 291c9 5 18 10 26 16s15 13 22 21c138 -180 350 -289 577 -298c-2 -10 -3 -20 -3 -30c0 -11 1 -21 3 -30zM704 162 c-222 -11 -423 -149 -512 -363c-9 6 -18 11 -27 14c-9 4 -19 7 -29 9c99 237 322 388 568 400c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x227E: [668,158,758,80,678,'676 630c-102 -127 -240 -217 -394 -261c154 -44 292 -135 394 -261c-9 -5 -17 -11 -25 -17s-15 -13 -22 -21c-133 166 -334 264 -547 269c2 10 3 20 3 30s-1 20 -3 30c213 4 414 102 547 269c7 -8 14 -15 22 -22c8 -6 16 -11 25 -16zM678 4c-29 -89 -62 -139 -124 -156 c-13 -4 -26 -6 -38 -6c-54 0 -107 31 -154 63c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 138 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62c36 -25 75 -53 117 -53c8 0 16 1 24 3c47 14 81 44 103 111 c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x227F: [668,158,758,80,678,'676 339c-213 -5 -413 -103 -547 -269c-7 8 -14 15 -22 21s-16 12 -25 17c102 126 240 217 394 261c-154 44 -292 134 -394 261c9 5 17 10 25 16c8 7 15 14 22 22c134 -167 334 -265 547 -269c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM678 4c-29 -89 -62 -139 -124 -156 c-13 -4 -26 -6 -38 -6c-54 0 -107 31 -154 63c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 138 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62c36 -25 75 -53 117 -53c8 0 16 1 24 3c47 14 81 44 103 111 c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x2280: [650,150,785,80,705,'705 -42c-9 -4 -18 -9 -26 -16c-8 -6 -15 -13 -22 -20c-74 96 -168 172 -275 223l-102 -295c-8 2 -16 3 -25 3s-17 -1 -25 -3l108 314c-81 33 -169 52 -258 56c2 10 3 20 3 30s-1 20 -3 30c116 5 228 35 328 88l97 282c8 -2 16 -3 25 -3s17 1 25 3l-84 -244 c71 46 134 104 186 172c7 -7 14 -14 22 -20c8 -7 17 -12 26 -16c-72 -94 -162 -169 -264 -224l-40 -116c118 -55 223 -138 304 -244zM380 289c-35 -16 -71 -29 -108 -39c29 -8 57 -18 85 -29'], + 0x2281: [650,150,785,80,705,'705 220c-116 -5 -228 -35 -328 -88l-97 -282c-8 2 -16 3 -25 3s-17 -1 -25 -3l84 244c-71 -46 -134 -104 -186 -172c-7 7 -14 14 -22 20c-8 7 -17 12 -26 16c72 94 162 169 264 224l40 116c-118 55 -223 138 -304 244c9 4 18 9 26 16c8 6 15 13 22 20 c74 -96 168 -172 275 -223l102 295c8 -2 16 -3 25 -3s17 1 25 3l-108 -314c81 -33 169 -52 258 -56c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM513 250c-29 8 -57 18 -85 29l-23 -68c35 16 71 29 108 39'], + 0x2282: [550,50,778,80,698,'698 -50h-318c-195 0 -300 105 -300 300s105 300 300 300h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-318c-156 0 -240 -84 -240 -240s84 -240 240 -240h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2283: [550,50,778,80,698,'698 250c0 -195 -105 -300 -300 -300h-318c2 10 3 20 3 30s-1 20 -3 30h318c156 0 240 84 240 240s-84 240 -240 240h-318c2 10 3 20 3 30s-1 20 -3 30h318c195 0 300 -105 300 -300'], + 0x2286: [640,140,778,80,698,'698 40h-318c-195 0 -300 105 -300 300s105 300 300 300h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-318c-156 0 -240 -84 -240 -240s84 -240 240 -240h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM698 -140h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30 s1 -20 3 -30'], + 0x2287: [640,140,778,80,698,'698 340c0 -195 -105 -300 -300 -300h-318c2 10 3 20 3 30s-1 20 -3 30h318c156 0 240 84 240 240s-84 240 -240 240h-318c2 10 3 20 3 30s-1 20 -3 30h318c195 0 300 -105 300 -300zM680 -140h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2288: [690,190,778,80,698,'698 -140h-448l-17 -50c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l17 50h-101c2 10 3 20 3 30s-1 20 -3 30h122l46 135c-121 35 -186 132 -186 285c0 195 105 300 300 300h88l17 50c8 -2 17 -3 26 -3c8 0 17 1 25 3l-17 -50h179c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-200 l-164 -477c14 -2 30 -3 46 -3h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-318c-23 0 -46 2 -66 5l-43 -125h427c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM447 580h-67c-156 0 -240 -84 -240 -240c0 -121 51 -199 146 -228'], + 0x2289: [690,190,778,80,698,'698 340c0 -195 -105 -300 -300 -300h-86l-41 -120h409c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-430l-17 -50c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l17 50h-119c2 10 3 20 3 30s-1 20 -3 30h140l41 120h-181c2 10 3 20 3 30s-1 20 -3 30h202l164 477c-15 2 -31 3 -48 3h-318 c2 10 3 20 3 30s-1 20 -3 30h318c24 0 47 -2 68 -5l19 55c8 -2 17 -3 26 -3c8 0 17 1 25 3l-23 -65c121 -36 185 -133 185 -285zM638 340c0 120 -50 198 -144 227l-161 -467h65c156 0 240 84 240 240'], + 0x228A: [640,220,778,80,698,'698 40h-318c-195 0 -300 105 -300 300s105 300 300 300h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-318c-156 0 -240 -84 -240 -240s84 -240 240 -240h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM698 -140h-291l-52 -80c-9 2 -19 3 -28 3c-10 0 -20 -1 -29 -3l52 80h-252 c2 10 3 20 3 30s-1 20 -3 30h291l52 80c9 -2 19 -3 29 -3c9 0 19 1 28 3l-52 -80h252c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x228B: [640,220,778,80,698,'698 340c0 -195 -105 -300 -300 -300h-318c2 10 3 20 3 30s-1 20 -3 30h318c156 0 240 84 240 240s-84 240 -240 240h-318c2 10 3 20 3 30s-1 20 -3 30h318c195 0 300 -105 300 -300zM680 -140h-291l-52 -80c-9 2 -19 3 -28 3c-10 0 -20 -1 -29 -3l52 80h-252 c2 10 3 20 3 30s-1 20 -3 30h291l52 80c9 -2 19 -3 29 -3c9 0 19 1 28 3l-52 -80h252c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x228E: [550,68,760,80,680,'680 232c0 -195 -105 -300 -300 -300s-300 105 -300 300v318c10 -2 20 -3 30 -3s20 1 30 3v-318c0 -156 84 -240 240 -240s240 84 240 240v318c10 -2 20 -3 30 -3s20 1 30 3v-318zM560 220h-150v-150c-10 2 -20 3 -30 3s-20 -1 -30 -3v150h-150c2 10 3 20 3 30 s-1 20 -3 30h150v150c10 -2 20 -3 30 -3s20 1 30 3v-150h150c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x228F: [550,50,760,80,680,'680 -50h-570c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h570c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-540v-480h540c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2290: [550,50,760,80,680,'680 520v-540c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-570c2 10 3 20 3 30s-1 20 -3 30h540v480h-540c2 10 3 20 3 30s-1 20 -3 30h570c4 -6 8 -12 13 -17s11 -9 17 -13'], + 0x2291: [640,140,760,80,680,'680 40h-570c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h570c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-540v-480h540c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 -140h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2292: [640,140,760,80,680,'680 610v-540c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-570c2 10 3 20 3 30s-1 20 -3 30h540v480h-540c2 10 3 20 3 30s-1 20 -3 30h570c4 -6 8 -12 13 -17s11 -9 17 -13zM680 -140h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2293: [565,35,676,80,596,'596 -35c-10 2 -20 3 -30 3s-20 -1 -30 -3v540h-396v-540c-10 2 -20 3 -30 3s-20 -1 -30 -3v570c6 4 12 8 17 13s9 11 13 17h456c4 -6 8 -12 13 -17s11 -9 17 -13v-570'], + 0x2294: [535,65,676,80,596,'596 535v-570c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-456c-4 6 -8 12 -13 17s-11 9 -17 13v570c10 -2 20 -3 30 -3s20 1 30 3v-540h396v540c10 -2 20 -3 30 -3s20 1 30 3'], + 0x2295: [568,68,796,80,716,'655 280c-12 128 -99 215 -227 227v-227h227zM368 507c-128 -12 -215 -99 -227 -227h227v227zM368 -7v227h-227c12 -128 99 -215 227 -227zM655 220h-227v-227c128 12 215 99 227 227zM716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318 s318 -127 318 -318'], + 0x2296: [568,68,796,80,716,'655 280c-13 138 -112 228 -257 228s-244 -90 -257 -228h514zM655 220h-514c13 -138 112 -228 257 -228s244 90 257 228zM716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318'], + 0x2297: [568,68,796,80,716,'656 250c0 65 -18 121 -51 164l-165 -164l165 -164c33 43 51 99 51 164zM562 457c-43 33 -99 51 -164 51s-121 -18 -164 -51l164 -165zM356 250l-165 164c-33 -43 -51 -99 -51 -164s18 -121 51 -164zM562 43l-164 165l-164 -165c43 -33 99 -51 164 -51s121 18 164 51z M716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318'], + 0x2298: [568,68,796,80,716,'656 250c0 113 -55 198 -145 236l-169 -489c18 -3 37 -5 56 -5c155 0 258 103 258 258zM454 503c-18 3 -37 5 -56 5c-155 0 -258 -103 -258 -258c0 -113 55 -198 145 -236zM716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318'], + 0x2299: [568,68,796,80,716,'716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318zM656 250c0 155 -103 258 -258 258s-258 -103 -258 -258s103 -258 258 -258s258 103 258 258zM458 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x229A: [568,68,796,80,716,'716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318zM656 250c0 155 -103 258 -258 258s-258 -103 -258 -258s103 -258 258 -258s258 103 258 258zM558 250c0 -96 -64 -160 -160 -160s-160 64 -160 160s64 160 160 160 s160 -64 160 -160zM510 250c0 67 -45 112 -112 112s-112 -45 -112 -112s45 -112 112 -112s112 45 112 112'], + 0x229B: [568,68,796,80,716,'716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318zM656 250c0 155 -103 258 -258 258s-258 -103 -258 -258s103 -258 258 -258s258 103 258 258zM558 220l-10 -8l-134 26l67 -119l-5 -12l-57 -18l-11 6l-16 136l-93 -100l-13 1 l-35 48l3 13l124 57l-124 57l-3 13l35 48l13 1l93 -100l16 136l11 6l57 -18l5 -12l-67 -119l134 26l10 -8v-60'], + 0x229D: [568,68,796,80,716,'716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318zM656 250c0 155 -103 258 -258 258s-258 -103 -258 -258s103 -258 258 -258s258 103 258 258zM596 220h-396c2 10 3 20 3 30s-1 20 -3 30h396c-2 -10 -3 -20 -3 -30 s1 -20 3 -30'], + 0x229E: [550,50,760,80,680,'620 490h-210v-210h210v210zM350 490h-210v-210h210v210zM350 10v210h-210v-210h210zM620 10v210h-210v-210h210zM680 -20c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-540c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h540c4 -6 8 -12 13 -17s11 -9 17 -13 v-540'], + 0x229F: [550,50,760,80,680,'620 490h-480v-210h480v210zM620 10v210h-480v-210h480zM680 -20c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-540c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h540c4 -6 8 -12 13 -17s11 -9 17 -13v-540'], + 0x22A0: [550,50,760,80,680,'578 490h-396l198 -198zM338 250l-198 198v-396zM578 10l-198 198l-198 -198h396zM620 448l-198 -198l198 -198v396zM680 -20c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-540c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h540c4 -6 8 -12 13 -17 s11 -9 17 -13v-540'], + 0x22A1: [550,50,760,80,680,'680 -20c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-540c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h540c4 -6 8 -12 13 -17s11 -9 17 -13v-540zM620 490h-480v-480h480v480zM440 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x22A2: [650,0,760,80,680,'680 295h-540v-295c-10 2 -20 3 -30 3s-20 -1 -30 -3v650c10 -2 20 -3 30 -3s20 1 30 3v-295h540c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22A3: [650,0,760,80,680,'680 0c-10 2 -20 3 -30 3s-20 -1 -30 -3v295h-540c2 10 3 20 3 30s-1 20 -3 30h540v295c10 -2 20 -3 30 -3s20 1 30 3v-650'], + 0x22A4: [650,0,760,80,680,'680 590h-270v-590c-10 2 -20 3 -30 3s-20 -1 -30 -3v590h-270c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22A5: [650,0,760,80,680,'680 0h-600c2 10 3 20 3 30s-1 20 -3 30h270v590c10 -2 20 -3 30 -3s20 1 30 3v-590h270c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22A8: [650,150,760,80,680,'680 110h-540v-260c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-260h540c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-540v-160h540c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22A9: [650,150,770,80,690,'140 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-800zM690 220h-370v-370c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-370h370c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22AA: [650,150,950,80,870,'320 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-800zM140 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-800zM870 220h-370v-370c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-370h370 c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22AC: [650,150,737,80,657,'657 650l-240 -370h213c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-252l-118 -181v-189c-10 2 -20 3 -30 3s-20 -1 -30 -3v97l-63 -97c-9 2 -19 3 -28 3c-10 0 -20 -1 -29 -3l120 185v615c10 -2 20 -3 30 -3s20 1 30 3v-370h100l240 370c9 -2 19 -3 29 -3c9 0 19 1 28 3z M320 220h-60v-93'], + 0x22AD: [650,150,880,80,800,'800 110h-494l-46 -71v-189c-10 2 -20 3 -30 3s-20 -1 -30 -3v97l-63 -97c-9 2 -19 3 -28 3c-10 0 -20 -1 -29 -3l120 185v615c10 -2 20 -3 30 -3s20 1 30 3v-260h171l169 260c9 -2 19 -3 29 -3c9 0 19 1 28 3l-169 -260h312c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-351 l-104 -160h455c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM392 330h-132v-160h28'], + 0x22AE: [650,150,890,80,810,'810 220h-370v-370c-10 2 -20 3 -30 3s-20 -1 -30 -3v373l-120 -184v-189c-10 2 -20 3 -30 3s-20 -1 -30 -3v97l-63 -97c-9 2 -19 3 -28 3c-10 0 -20 -1 -29 -3l120 185v615c10 -2 20 -3 30 -3s20 1 30 3v-523l120 185v338c10 -2 20 -3 30 -3s20 1 30 3v-246l160 246 c9 -2 19 -3 29 -3c9 0 19 1 28 3l-217 -334v-36h370c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22AF: [650,150,890,80,810,'810 110h-370v-260c-10 2 -20 3 -30 3s-20 -1 -30 -3v373l-120 -184v-189c-10 2 -20 3 -30 3s-20 -1 -30 -3v97l-63 -97c-9 2 -19 3 -28 3c-10 0 -20 -1 -29 -3l120 185v615c10 -2 20 -3 30 -3s20 1 30 3v-523l120 185v338c10 -2 20 -3 30 -3s20 1 30 3v-246l160 246 c9 -2 19 -3 29 -3c9 0 19 1 28 3l-169 -260h322c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-361l-9 -14v-146h370c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22B2: [577,77,803,80,723,'723 -77l-643 300c2 9 3 18 3 27s-1 18 -3 27l643 300v-654zM663 483l-499 -233l499 -233v466'], + 0x22B3: [577,77,803,80,723,'723 223l-643 -300v654l643 -300c-2 -9 -3 -18 -3 -27s1 -18 3 -27zM639 250l-499 233v-466'], + 0x22B4: [630,130,802,80,722,'722 40l-642 267c2 9 3 19 3 28s-1 19 -3 28l642 267v-590zM662 130v410l-492 -205zM722 -130h-642c2 10 3 20 3 30s-1 20 -3 30h642c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22B5: [630,130,802,80,722,'722 307l-642 -267v590l642 -267c-2 -9 -3 -19 -3 -28s1 -19 3 -28zM632 335l-492 205v-410zM722 -130h-642c2 10 3 20 3 30s-1 20 -3 30h642c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22B8: [410,-90,920,80,840,'840 250c0 -96 -64 -160 -160 -160c-86 0 -146 51 -158 130h-442c2 10 3 20 3 30s-1 20 -3 30h442c12 79 72 130 158 130c96 0 160 -64 160 -160zM792 250c0 67 -45 112 -112 112s-112 -45 -112 -112s45 -112 112 -112s112 45 112 112'], + 0x22BA: [650,0,760,80,680,'680 590h-270v-590c-10 2 -20 3 -30 3s-20 -1 -30 -3v590h-270c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22BB: [580,80,760,80,680,'680 580l-270 -488c-10 2 -20 3 -30 3s-20 -1 -30 -3l-270 488c11 -2 23 -3 34 -3c12 0 23 1 35 3l231 -418l231 418c12 -2 23 -3 35 -3c11 0 23 1 34 3zM680 -80h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22BC: [580,80,760,80,680,'680 -80c-11 2 -23 3 -34 3c-12 0 -23 -1 -35 -3l-231 418l-231 -418c-12 2 -23 3 -35 3c-11 0 -23 -1 -34 -3l270 488c10 -2 20 -3 30 -3s20 1 30 3zM680 520h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22C4: [463,-37,586,80,506,'443 250l-150 150l-149 -150l149 -150zM506 229l-192 -192c-7 2 -14 3 -21 3s-14 -1 -21 -3l-192 192c2 7 3 14 3 21s-1 14 -3 21l192 192c7 -2 14 -3 21 -3s14 1 21 3l192 -192c-2 -7 -3 -14 -3 -21s1 -14 3 -21'], + 0x22C5: [310,-190,280,80,200,'200 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x22C6: [470,-66,585,80,505,'505 308l-156 -77l81 -153l-16 -12l-122 124l-121 -124l-16 12l80 153l-155 77l6 19l171 -28l25 171h20l26 -171l170 28'], + 0x22C8: [483,-17,644,80,564,'280 250l-140 140v-280zM504 390l-139 -140l139 -140v280zM564 68c-10 -7 -19 -15 -27 -24c-9 -8 -17 -17 -24 -27l-191 191l-191 -191c-7 10 -15 19 -23 27c-9 9 -18 17 -28 24v364c10 7 19 15 28 24c8 8 16 17 23 27l191 -191l191 191c7 -10 15 -19 24 -27 c8 -9 17 -17 27 -24v-364'], + 0x22C9: [483,-17,635,80,555,'555 441l-190 -191l190 -191c-8 -5 -16 -12 -23 -19s-13 -15 -19 -23l-191 191l-191 -191c-7 10 -15 19 -23 27c-9 9 -18 17 -28 24v364c10 7 19 15 28 24c8 8 16 17 23 27l191 -191l191 191c6 -8 12 -16 19 -23s15 -14 23 -19zM280 250l-140 140v-280'], + 0x22CA: [483,-17,635,80,555,'555 432v-364c-9 -7 -19 -15 -27 -24c-9 -8 -17 -17 -24 -27l-191 191l-191 -191c-5 8 -12 16 -19 23s-15 14 -23 19l191 191l-191 191c8 5 16 12 23 19s14 15 19 23l191 -191l191 191c7 -10 15 -19 24 -27c8 -9 18 -17 27 -24zM495 110v280l-139 -140'], + 0x22CB: [483,-17,627,80,547,'547 59c-9 -5 -17 -12 -24 -19s-13 -15 -19 -23l-191 191l-191 -191c-5 8 -12 16 -19 23s-15 14 -23 19l191 191l-191 191c8 5 16 12 23 19s14 15 19 23'], + 0x22CC: [483,-17,627,80,547,'547 59c-9 -5 -17 -12 -24 -19s-13 -15 -19 -23l-191 191l-191 -191c-5 8 -12 16 -19 23s-15 14 -23 19l424 424c6 -8 12 -16 19 -23s15 -14 24 -19l-191 -191'], + 0x22CD: [447,-110,760,80,680,'680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM679 286c-7 0 -13 -1 -20 -3c-6 -2 -12 -5 -18 -9c-22 67 -56 97 -103 110c-8 3 -16 4 -24 4c-42 0 -81 -28 -117 -53c-47 -32 -100 -62 -154 -62c-12 0 -25 1 -38 5 c-62 17 -95 67 -124 156c7 0 13 1 20 3c6 2 12 5 18 9c22 -67 56 -97 103 -110c8 -3 16 -4 24 -4c42 0 81 28 117 53c47 32 100 62 154 62c12 0 25 -1 38 -5c62 -17 95 -67 124 -156'], + 0x22CE: [550,49,786,80,706,'706 550c-175 -152 -287 -368 -283 -599c-10 2 -20 3 -30 3s-20 -1 -30 -3c4 231 -108 447 -283 599c15 -2 30 -3 46 -3c15 0 30 1 46 3c109 -95 183 -221 221 -359c38 138 112 264 221 359c15 -2 31 -3 46 -3s31 1 46 3'], + 0x22CF: [549,50,786,80,706,'706 -50c-15 2 -30 3 -46 3c-15 0 -30 -1 -46 -3c-109 95 -183 221 -221 359c-38 -138 -112 -264 -221 -359c-15 2 -31 3 -46 3s-31 -1 -46 -3c175 152 287 368 283 599c10 -2 20 -3 30 -3s20 1 30 3c-4 -231 108 -447 283 -599'], + 0x22D0: [550,50,778,80,698,'698 -50h-318c-195 0 -300 105 -300 300s105 300 300 300h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-318c-156 0 -240 -84 -240 -240s84 -240 240 -240h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM698 90h-318c-104 0 -160 56 -160 160s56 160 160 160h318 c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-318c-65 0 -100 -35 -100 -100s35 -100 100 -100h318c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22D1: [550,50,778,80,698,'698 250c0 -195 -105 -300 -300 -300h-318c2 10 3 20 3 30s-1 20 -3 30h318c156 0 240 84 240 240s-84 240 -240 240h-318c2 10 3 20 3 30s-1 20 -3 30h318c195 0 300 -105 300 -300zM558 250c0 -104 -56 -160 -160 -160h-318c2 10 3 20 3 30s-1 20 -3 30h318 c65 0 100 35 100 100s-35 100 -100 100h-318c2 10 3 20 3 30s-1 20 -3 30h318c104 0 160 -56 160 -160'], + 0x22D2: [568,50,760,80,680,'680 -50c-10 2 -20 3 -30 3s-20 -1 -30 -3v318c0 156 -84 240 -240 240s-240 -84 -240 -240v-318c-10 2 -20 3 -30 3s-20 -1 -30 -3v318c0 195 105 300 300 300s300 -105 300 -300v-318zM540 -50c-10 2 -20 3 -30 3s-20 -1 -30 -3v318c0 65 -35 100 -100 100 s-100 -35 -100 -100v-318c-10 2 -20 3 -30 3s-20 -1 -30 -3v318c0 104 56 160 160 160s160 -56 160 -160v-318'], + 0x22D3: [550,68,760,80,680,'680 232c0 -195 -105 -300 -300 -300s-300 105 -300 300v318c10 -2 20 -3 30 -3s20 1 30 3v-318c0 -156 84 -240 240 -240s240 84 240 240v318c10 -2 20 -3 30 -3s20 1 30 3v-318zM540 232c0 -104 -56 -160 -160 -160s-160 56 -160 160v318c10 -2 20 -3 30 -3s20 1 30 3 v-318c0 -65 35 -100 100 -100s100 35 100 100v318c10 -2 20 -3 30 -3s20 1 30 3v-318'], + 0x22D6: [563,63,767,80,687,'687 -63l-607 283c2 10 3 20 3 30s-1 20 -3 30l607 283c-2 -11 -3 -22 -3 -33s1 -22 3 -33l-529 -247l529 -247c-2 -11 -3 -22 -3 -33s1 -22 3 -33zM589 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x22D7: [563,63,767,80,687,'687 220l-607 -283c2 11 3 22 3 33s-1 22 -3 33l529 247l-529 247c2 11 3 22 3 33s-1 22 -3 33l607 -283c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM297 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x22D8: [566,66,1279,80,1199,'529 -66l-449 286c2 10 3 20 3 30s-1 20 -3 30l449 286c-2 -12 -3 -24 -3 -36s1 -24 3 -36l-384 -244l384 -244c-2 -12 -3 -24 -3 -36s1 -24 3 -36zM864 -66l-449 286c2 10 3 20 3 30s-1 20 -3 30l449 286c-2 -12 -3 -24 -3 -36s1 -24 3 -36l-384 -244l384 -244 c-2 -12 -3 -24 -3 -36s1 -24 3 -36zM1199 -66l-448 286c2 10 3 20 3 30s-1 20 -3 30l448 286c-2 -12 -3 -24 -3 -36s1 -24 3 -36l-384 -244l384 -244c-2 -12 -3 -24 -3 -36s1 -24 3 -36'], + 0x22D9: [566,66,1279,80,1199,'1199 220l-448 -286c2 12 3 24 3 36s-1 24 -3 36l384 244l-384 244c2 12 3 24 3 36s-1 24 -3 36l448 -286c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM864 220l-449 -286c2 12 3 24 3 36s-1 24 -3 36l384 244l-384 244c2 12 3 24 3 36s-1 24 -3 36l449 -286 c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM529 220l-449 -286c2 12 3 24 3 36s-1 24 -3 36l384 244l-384 244c2 12 3 24 3 36s-1 24 -3 36l449 -286c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22DA: [844,344,766,80,686,'686 310l-606 237c2 10 3 20 3 30s-1 20 -3 30l606 237c-2 -10 -3 -21 -3 -32s1 -21 3 -32l-518 -203l518 -203c-2 -10 -3 -21 -3 -32s1 -21 3 -32zM686 220h-606c2 10 3 20 3 30s-1 20 -3 30h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -107l-606 -237c2 10 3 21 3 32 s-1 21 -3 32l518 203l-518 203c2 10 3 21 3 32s-1 21 -3 32l606 -237c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22DB: [844,344,766,80,686,'686 547l-606 -237c2 11 3 21 3 32s-1 22 -3 32l518 203l-518 203c2 11 3 21 3 32s-1 22 -3 32l606 -237c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 220h-606c2 10 3 20 3 30s-1 20 -3 30h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -344l-606 237c2 10 3 20 3 30 s-1 20 -3 30l606 237c-2 -11 -3 -21 -3 -32s1 -22 3 -32l-518 -203l518 -203c-2 -11 -3 -21 -3 -32s1 -22 3 -32'], + 0x22DE: [701,201,785,80,705,'705 419c-110 -142 -262 -244 -433 -292c171 -47 323 -149 433 -291c-9 -5 -18 -10 -26 -16s-15 -13 -22 -21c-138 180 -350 289 -577 298c2 10 3 20 3 30c0 11 -1 21 -3 30c227 10 439 119 577 299c7 -8 14 -15 22 -21s17 -11 26 -16zM649 678 c-99 -237 -322 -388 -568 -400c2 10 3 20 3 30s-1 20 -3 30c222 11 423 149 512 363c9 -6 18 -11 27 -14c9 -4 19 -7 29 -9'], + 0x22DF: [701,201,785,80,705,'705 97c-227 -9 -439 -118 -577 -298c-7 8 -14 15 -22 21s-17 11 -26 16c110 142 262 244 433 291c-171 48 -323 150 -433 292c9 5 18 10 26 16s15 13 22 21c138 -180 350 -289 577 -299c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30zM704 278c-246 12 -469 163 -568 400 c10 2 20 5 29 9c9 3 18 8 27 14c89 -214 290 -352 512 -363c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22E0: [731,231,785,80,705,'705 81c-9 -5 -18 -10 -26 -16s-15 -13 -22 -21c-65 85 -147 155 -239 205l-40 -116c118 -69 214 -176 271 -311c-10 -2 -20 -5 -29 -9c-9 -3 -18 -8 -27 -14c-49 119 -133 214 -235 277l-106 -307c-8 2 -16 3 -25 3s-17 -1 -25 -3l113 331c-72 36 -151 58 -234 62 c2 10 3 20 3 30s-1 20 -3 30c89 -4 176 -27 254 -66l39 115c-91 43 -191 67 -294 72c2 9 3 19 3 30c0 10 -1 20 -3 30c137 5 268 47 381 118l72 210c8 -2 16 -3 25 -3s17 1 25 3l-55 -162c48 38 91 82 129 132c7 -8 14 -15 22 -21s17 -11 26 -16 c-59 -77 -131 -141 -211 -192l-57 -165c103 -55 195 -132 268 -226zM431 435c-51 -26 -104 -47 -159 -62c42 -12 83 -27 122 -45'], + 0x22E1: [731,231,785,80,705,'705 343c-97 -4 -191 -26 -277 -64l-59 -170c98 67 214 107 335 113c-2 -10 -3 -20 -3 -30s1 -20 3 -30c-140 -7 -270 -64 -371 -158l-81 -235c-8 2 -16 3 -25 3s-17 -1 -25 -3l46 135c-22 -33 -41 -68 -56 -105c-9 6 -18 11 -27 14c-9 4 -19 7 -29 9 c38 91 95 170 164 232l67 195c-92 -51 -174 -120 -239 -205c-7 8 -14 15 -22 21s-17 11 -26 16c84 108 192 193 314 248l26 75c-132 55 -250 144 -340 260c9 5 18 10 26 16s15 13 22 21c82 -107 190 -189 312 -240l93 270c8 -2 16 -3 25 -3s17 1 25 3l-98 -287 c70 -24 144 -38 220 -41c-2 -10 -3 -20 -3 -30c0 -11 1 -21 3 -30zM513 373c-16 4 -32 9 -48 14l-11 -34c19 8 39 14 59 20'], + 0x22E6: [651,201,766,80,686,'686 86l-606 253c2 10 3 20 3 30s-1 20 -3 30l606 252c-2 -10 -3 -21 -3 -32s1 -22 3 -33l-522 -217l522 -218c-2 -10 -3 -21 -3 -32s1 -22 3 -33zM682 20c-29 -89 -62 -138 -124 -156c-13 -4 -26 -5 -38 -5c-47 0 -92 22 -133 49l-71 -109c-10 2 -19 3 -29 3 s-19 -1 -29 -3l89 136c-31 20 -64 39 -98 39c-8 0 -16 -1 -24 -3c-47 -14 -81 -44 -103 -111c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 6 38 6c47 0 92 -22 133 -49l71 109c10 -2 19 -3 29 -3s19 1 29 3l-89 -136c31 -21 64 -40 98 -40 c8 0 16 1 24 4c47 13 81 43 103 110c6 -3 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x22E7: [651,201,766,80,686,'686 339l-606 -253c2 11 3 22 3 33s-1 22 -3 32l522 218l-522 217c2 11 3 22 3 33s-1 22 -3 32l606 -252c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM682 20c-29 -89 -62 -138 -124 -156c-13 -4 -26 -5 -38 -5c-47 0 -92 22 -133 49l-71 -109c-10 2 -19 3 -29 3s-19 -1 -29 -3 l89 136c-31 20 -64 39 -98 39c-8 0 -16 -1 -24 -3c-47 -14 -81 -44 -103 -111c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 6 38 6c47 0 92 -22 133 -49l71 109c10 -2 19 -3 29 -3s19 1 29 3l-89 -136c31 -21 64 -40 98 -40c8 0 16 1 24 4 c47 13 81 43 103 110c6 -3 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x22E8: [668,218,758,80,678,'676 630c-102 -127 -240 -217 -394 -261c154 -44 292 -135 394 -261c-9 -5 -17 -11 -25 -17s-15 -13 -22 -21c-133 166 -334 264 -547 269c2 10 3 20 3 30s-1 20 -3 30c213 4 414 102 547 269c7 -8 14 -15 22 -22c8 -6 16 -11 25 -16zM678 4c-29 -89 -62 -139 -124 -156 c-13 -4 -26 -6 -38 -6c-47 0 -92 23 -133 49l-71 -109c-10 2 -19 3 -29 3s-19 -1 -29 -3l89 136c-31 21 -64 40 -98 40c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 138 124 156c13 4 26 5 38 5c47 0 92 -22 133 -49l71 109 c10 -2 19 -3 29 -3s19 1 29 3l-89 -135c31 -21 64 -40 98 -40c8 0 16 1 24 3c47 14 81 44 103 111c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x22E9: [668,218,758,80,678,'676 339c-213 -5 -413 -103 -547 -269c-7 8 -14 15 -22 21s-16 12 -25 17c102 126 240 217 394 261c-154 44 -292 134 -394 261c9 5 17 10 25 16c8 7 15 14 22 22c134 -167 334 -265 547 -269c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM678 4c-29 -89 -62 -139 -124 -156 c-13 -4 -26 -6 -38 -6c-47 0 -92 23 -133 49l-71 -109c-10 2 -19 3 -29 3s-19 -1 -29 -3l89 136c-31 21 -64 40 -98 40c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 138 124 156c13 4 26 5 38 5c47 0 92 -22 133 -49l71 109 c10 -2 19 -3 29 -3s19 1 29 3l-89 -135c31 -21 64 -40 98 -40c8 0 16 1 24 3c47 14 81 44 103 111c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x22EA: [650,150,803,80,723,'723 -77l-297 138l-73 -211c-8 2 -16 3 -25 3c-8 0 -17 -1 -25 -3l79 232l-302 141c2 9 3 18 3 27s-1 18 -3 27l440 206l58 167c8 -2 17 -3 25 -3c9 0 17 1 25 3l-47 -139l142 66v-654zM663 483l-109 -51l-108 -314l217 -101v466zM493 404l-329 -154l238 -111'], + 0x22EB: [650,150,803,80,723,'723 223l-441 -206l-57 -167c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l48 139l-142 -66v654l297 -138l72 211c8 -2 17 -3 26 -3c8 0 17 1 25 3l-80 -232l303 -141c-2 -9 -3 -18 -3 -27s1 -18 3 -27zM639 250l-238 111l-91 -265zM357 382l-217 101v-466l109 51'], + 0x22EC: [690,190,802,80,722,'722 -130h-427l-20 -60c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l21 60h-165c2 10 3 20 3 30s-1 20 -3 30h185l91 262l-276 115c2 9 3 19 3 28s-1 19 -3 28l390 162l57 165c8 -2 17 -3 25 -3c9 0 17 1 26 3l-49 -140l193 80v-590l-322 134l-84 -244h406 c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM662 130v410l-159 -66l-83 -243zM444 449l-274 -114l205 -86'], + 0x22ED: [690,190,802,80,722,'722 -130h-427l-20 -60c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l21 60h-165c2 10 3 20 3 30s-1 20 -3 30h185l75 219l-260 -109v590l373 -155l74 215c8 -2 17 -3 25 -3c9 0 17 1 26 3l-81 -234l225 -93c-2 -9 -3 -19 -3 -28s1 -19 3 -28l-322 -134l-84 -243h406 c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM632 335l-154 64l-52 -150zM433 418l-293 122v-410l227 94'], + 0x22EE: [630,130,280,80,200,'200 -70c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 570c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x22EF: [310,-190,860,80,780,'200 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM490 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM780 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x22F1: [536,36,733,80,653,'426 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 476c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM653 24c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2308: [670,150,410,120,330,'330 670c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-150v-780c-10 2 -20 3 -30 3s-20 -1 -30 -3v820h210'], + 0x2309: [670,150,410,80,290,'290 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3v780h-150c2 6 3 13 3 20s-1 14 -3 20h210v-820'], + 0x230A: [650,170,410,120,330,'330 -130c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-210v820c10 -2 20 -3 30 -3s20 1 30 3v-780h150'], + 0x230B: [650,170,410,80,290,'290 -170h-210c2 6 3 13 3 20s-1 14 -3 20h150v780c10 -2 20 -3 30 -3s20 1 30 3v-820'], + 0x2322: [399,-101,996,80,916,'916 118c-7 -1 -13 -3 -19 -6c-7 -3 -12 -7 -17 -11c-80 159 -216 238 -382 238s-302 -79 -382 -238c-5 4 -11 8 -17 11s-12 5 -19 6c89 179 233 281 418 281s329 -102 418 -281'], + 0x2323: [399,-101,996,80,916,'916 382c-89 -179 -233 -281 -418 -281s-329 102 -418 281c7 1 13 3 19 6s12 7 17 11c80 -159 216 -238 382 -238s302 79 382 238c5 -4 10 -8 17 -11c6 -3 12 -5 19 -6'], + 0x23B4: [771,-646,367,0,367,'367 646c-6 1 -13 3 -20 3s-14 -2 -20 -3v76l-287 1v-77c-6 1 -13 3 -20 3s-14 -2 -20 -3v124l367 1v-125'], + 0x23B5: [-175,300,367,0,367,'367 -300h-367v125c6 -2 13 -4 20 -4s14 2 20 3v-76h287v77c6 -2 13 -4 20 -4s14 2 20 3v-124'], + 0x23D0: [516,0,220,80,140,'140 0h-60v516h60v-516'], + 0x23DC: [746,-629,528,0,528,'528 657c-6 -3 -11 -7 -16 -12c-5 -4 -9 -10 -12 -16c-48 48 -124 69 -215 69h-42c-91 0 -167 -21 -215 -69c-3 6 -7 12 -12 16c-5 5 -10 9 -16 12c55 55 139 89 243 89h42c104 0 188 -34 243 -89'], + 0x23DD: [-159,276,528,0,528,'528 -187c-55 -55 -139 -89 -243 -89h-42c-104 0 -188 34 -243 89c6 3 11 7 16 12c5 4 9 10 12 16c48 -48 124 -69 215 -69h42c91 0 167 21 215 69c3 -6 7 -12 12 -16c5 -5 10 -9 16 -12'], + 0x23DE: [777,-615,540,0,540,'540 619c-7 1 -14 2 -20 1c-7 -1 -14 -2 -20 -5c-3 38 -26 57 -63 57h-84c-38 0 -66 14 -83 39c-17 -25 -45 -39 -83 -39h-84c-37 0 -60 -19 -63 -57c-6 3 -13 4 -20 5s-13 0 -20 -1c6 64 41 101 103 101h84c37 0 60 19 63 57c6 -2 13 -3 20 -3s13 1 20 3 c3 -38 26 -57 63 -57h84c62 0 97 -37 103 -101'], + 0x23DF: [-145,307,540,0,540,'540 -149c-6 -64 -41 -101 -103 -101h-84c-37 0 -60 -19 -63 -57c-7 2 -13 3 -20 3s-14 -1 -20 -3c-3 38 -26 57 -63 57h-84c-62 0 -97 37 -103 101c7 -1 13 -2 20 -1s14 2 20 5c3 -38 26 -57 63 -57h84c38 0 66 -14 83 -39c17 25 45 39 83 39h84c37 0 60 19 63 57 c6 -3 13 -4 20 -5c6 -1 13 0 20 1'], + 0x23E0: [726,-577,560,0,560,'560 577c-10 2 -20 3 -30 3s-20 -1 -30 -3l-89 89h-262l-89 -89c-10 2 -20 3 -30 3s-20 -1 -30 -3l149 149h262'], + 0x23E1: [-107,256,560,0,560,'560 -107l-149 -149h-262l-149 149c10 -2 20 -3 30 -3s20 1 30 3l89 -89h262l89 89c10 -2 20 -3 30 -3s20 1 30 3'], + 0x250C: [280,150,600,270,600,'600 220h-270v-370h-60v400l30 30h300v-60'], + 0x2510: [280,150,600,0,330,'330 -150h-60v370h-270v60h300l30 -30v-400'], + 0x2514: [650,-220,600,270,600,'600 220h-300l-30 30v400h60v-370h270v-60'], + 0x2518: [650,-220,600,0,330,'330 250l-30 -30h-300v60h270v370h60v-400'], + 0x25A0: [550,50,760,80,680,'680 -20c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-540c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h540c4 -6 8 -12 13 -17s11 -9 17 -13v-540'], + 0x25A1: [550,50,760,80,680,'680 -20c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-540c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h540c4 -6 8 -12 13 -17s11 -9 17 -13v-540zM620 490h-480v-480h480v480'], + 0x25B2: [689,-8,947,80,867,'867 53c-6 -7 -11 -14 -16 -21c-4 -8 -8 -16 -10 -24h-735c-3 8 -6 16 -10 24c-5 7 -10 14 -16 21l367 636c9 -2 18 -3 26 -3c9 0 18 1 26 3'], + 0x25B3: [689,-8,947,80,867,'867 53c-6 -7 -11 -14 -16 -21c-4 -8 -8 -16 -10 -24h-735c-3 8 -6 16 -10 24c-5 7 -10 14 -16 21l367 636c9 -2 18 -3 26 -3c9 0 18 1 26 3zM789 68l-316 546l-315 -546h631'], + 0x25B6: [643,143,841,80,761,'761 224l-636 -367c-6 6 -13 11 -21 15c-8 5 -16 8 -24 11v734c8 3 16 6 24 11c8 4 15 9 21 15l636 -367c-2 -9 -3 -17 -3 -26s1 -17 3 -26'], + 0x25BC: [492,189,947,80,867,'867 447l-368 -636c-8 2 -17 3 -26 3c-8 0 -17 -1 -26 -3l-367 636c6 7 11 14 16 21c4 8 7 16 10 24h735c2 -8 6 -16 10 -24c5 -7 10 -14 16 -21'], + 0x25BD: [492,189,947,80,867,'867 447l-368 -636c-8 2 -17 3 -26 3c-8 0 -17 -1 -26 -3l-367 636c6 7 11 14 16 21c4 8 7 16 10 24h735c2 -8 6 -16 10 -24c5 -7 10 -14 16 -21zM789 432h-631l315 -546'], + 0x25C0: [643,143,841,80,761,'761 -117c-8 -3 -16 -6 -24 -11c-7 -4 -14 -9 -21 -15l-636 367c2 9 3 17 3 26s-1 17 -3 26l636 367c7 -6 14 -11 21 -15c8 -5 16 -8 24 -11v-734'], + 0x25CA: [576,76,595,80,515,'454 250l-156 254l-157 -254l157 -254zM515 234l-192 -310c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l-192 310c2 5 3 11 3 16s-1 11 -3 16l192 310c8 -2 17 -3 26 -3c8 0 17 1 26 3l191 -310c-2 -5 -3 -11 -3 -16s1 -11 3 -16'], + 0x25EF: [668,168,996,80,916,'916 250c0 -251 -167 -418 -418 -418s-418 167 -418 418s167 418 418 418s418 -167 418 -418zM856 250c0 215 -143 358 -358 358s-358 -143 -358 -358s143 -358 358 -358s358 143 358 358'], + 0x2660: [668,0,800,80,720,'720 250c0 -79 -51 -150 -125 -150c-46 0 -89 23 -116 60h-28c4 -47 23 -91 54 -127c-4 -5 -8 -10 -11 -15c-3 -6 -4 -12 -5 -18l-89 3c-30 0 -59 -1 -89 -3c-1 6 -2 12 -5 18c-3 5 -7 10 -11 15c31 36 50 80 54 127h-28c-27 -37 -70 -60 -116 -60 c-74 0 -125 71 -125 150c0 98 59 166 129 230c64 58 137 112 173 188c6 -2 12 -3 18 -3s12 1 18 3c36 -76 109 -130 173 -188c70 -64 129 -132 129 -230'], + 0x2661: [666,0,760,80,680,'680 486c0 -102 -52 -183 -115 -260c-59 -73 -128 -142 -167 -226c-6 2 -12 3 -18 3s-12 -1 -18 -3c-39 84 -108 153 -167 226c-63 77 -115 158 -115 260c0 95 61 180 150 180c64 0 121 -35 150 -89c29 54 86 89 150 89c89 0 150 -85 150 -180zM640 486 c0 72 -43 140 -110 140c-68 0 -124 -52 -130 -119c-6 2 -13 3 -20 3s-14 -1 -20 -3c-6 67 -62 119 -130 119c-67 0 -110 -68 -110 -140c0 -92 49 -165 106 -235c52 -65 112 -127 154 -199c42 72 102 134 154 199c57 70 106 143 106 235'], + 0x2662: [670,0,746,80,666,'666 341c-2 -5 -3 -11 -3 -16c-1 -5 0 -10 2 -15c-54 -43 -105 -91 -151 -143s-88 -108 -124 -167c-6 2 -11 3 -17 3s-12 -1 -17 -3c-37 59 -78 115 -124 167s-97 100 -152 143c2 5 3 10 3 15s-1 11 -3 15c55 47 106 98 152 154c46 55 88 114 124 176c5 -2 11 -3 17 -3 s11 1 17 3c36 -62 77 -121 124 -176c46 -56 97 -107 152 -153zM622 326c-50 44 -97 91 -139 142c-40 48 -77 99 -110 153c-33 -54 -70 -105 -110 -153c-43 -51 -89 -98 -139 -142c49 -41 95 -85 138 -132c40 -46 77 -95 111 -146c33 51 71 100 111 146c42 47 88 91 138 132'], + 0x2663: [668,0,842,80,762,'762 258c0 -98 -47 -150 -131 -150c-78 0 -124 45 -130 130h-30c3 -72 23 -144 58 -208c-5 -4 -9 -8 -12 -13c-4 -5 -6 -11 -8 -17c-29 2 -58 3 -88 3s-59 -1 -89 -3c-1 6 -3 12 -7 17c-3 5 -7 9 -12 13c35 64 55 136 58 208h-30c-6 -85 -52 -130 -130 -130 c-84 0 -131 52 -131 150c0 99 47 150 131 150c31 0 57 -7 78 -22l18 23c-25 25 -39 62 -39 109c0 98 53 150 153 150s153 -52 153 -150c0 -47 -14 -84 -39 -109l18 -23c21 15 47 22 78 22c84 0 131 -51 131 -150'], + 0x266D: [650,38,470,80,390,'390 250c0 -153 -162 -238 -310 -288v688c6 -2 13 -3 20 -3s14 1 20 3v-296c23 32 58 54 100 54c90 0 170 -67 170 -158zM290 250c0 47 -24 98 -70 98c-41 0 -82 -19 -100 -52v-276c97 44 170 127 170 230'], + 0x266E: [650,150,440,80,360,'360 -150c-6 2 -13 3 -20 3s-14 -1 -20 -3v221l-240 -82v661c6 -2 13 -3 20 -3s14 1 20 3v-221l240 82v-661zM320 391l-200 -68v-214l200 68v214'], + 0x266F: [684,184,560,80,480,'480 105l-80 -27v-194c-6 2 -13 3 -20 3s-14 -1 -20 -3v180l-160 -54v-194c-6 2 -13 3 -20 3s-14 -1 -20 -3v180l-80 -27c2 17 3 35 3 53c0 17 -1 35 -3 53l80 27v214l-80 -27c2 17 3 35 3 53c0 17 -1 35 -3 53l80 27v194c6 -2 13 -3 20 -3s14 1 20 3v-180l160 54v194 c6 -2 13 -3 20 -3s14 1 20 3v-180l80 27c-2 -17 -3 -35 -3 -53c0 -17 1 -35 3 -53l-80 -27v-214l80 27c-2 -17 -3 -35 -3 -53c0 -17 1 -35 3 -53zM360 384l-160 -54v-214l160 54v214'], + 0x2713: [650,0,860,80,780,'780 650c-117 -83 -221 -181 -301 -297c-74 -106 -130 -225 -164 -353c-12 2 -24 3 -36 3s-24 -1 -36 -3c-26 112 -89 210 -163 298c22 -2 43 -3 65 -3s44 1 65 3c45 -53 77 -115 101 -180c34 91 80 178 135 258c72 104 159 200 265 274c11 -2 22 -3 34 -3s24 1 35 3'], + 0x2720: [662,6,828,80,748,'748 114c-6 2 -13 3 -20 3s-14 -1 -20 -3c-22 123 -145 194 -274 194c0 -129 71 -252 194 -274c-2 -6 -3 -13 -3 -20s1 -14 3 -20c-71 4 -143 6 -214 6s-143 -2 -214 -6c2 6 3 13 3 20s-1 14 -3 20c123 22 194 145 194 274c-129 0 -252 -71 -274 -194c-6 2 -13 3 -20 3 s-14 -1 -20 -3c4 71 6 143 6 214s-2 143 -6 214c6 -2 13 -3 20 -3s14 1 20 3c22 -123 145 -194 274 -194c0 129 -71 252 -194 274c2 6 3 13 3 20s-1 14 -3 20c71 -4 143 -6 214 -6s143 2 214 6c-2 -6 -3 -13 -3 -20s1 -14 3 -20c-123 -22 -194 -145 -194 -274 c129 0 252 71 274 194c6 -2 13 -3 20 -3s14 1 20 3c-4 -71 -6 -143 -6 -214s2 -143 6 -214'], + 0x27E8: [658,158,391,80,311,'311 -142c-7 -1 -13 -2 -19 -5c-7 -3 -12 -7 -17 -11l-195 408l195 408c5 -4 10 -8 17 -11c6 -3 12 -4 19 -5l-165 -392'], + 0x27E9: [658,158,391,80,311,'311 250l-195 -408c-5 4 -10 8 -17 11c-6 3 -12 4 -19 5l165 392l-165 392c7 1 13 2 19 5c7 3 12 7 17 11'], + 0x27EE: [664,164,334,120,254,'254 636c-56 -56 -74 -181 -74 -353v-66c0 -172 18 -297 74 -353c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-61 61 -106 193 -106 381v66c0 188 45 320 106 381c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x27EF: [664,164,334,80,214,'214 217c0 -188 -44 -320 -106 -381c-3 6 -7 11 -12 16s-10 9 -16 12c56 56 74 181 74 353v66c0 172 -18 297 -74 353c6 3 11 7 16 12s9 10 12 16c62 -61 106 -193 106 -381v-66'], + 0x27F5: [400,-100,1370,80,1290,'1290 220h-1074c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x27F6: [400,-100,1370,80,1290,'1290 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1074c2 10 3 20 3 30s-1 20 -3 30h1074c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x27F7: [400,-100,1455,80,1375,'1375 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1023c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1023 c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x27F8: [450,-50,1370,80,1290,'1290 130h-995c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h995c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-1056c-22 -21 -45 -41 -69 -60 c24 -19 47 -39 69 -60h1056c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x27F9: [450,-50,1370,80,1290,'1290 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-995c2 10 3 20 3 30s-1 20 -3 30h1056c22 21 45 41 69 60c-24 19 -47 39 -69 60h-1056c2 10 3 20 3 30s-1 20 -3 30h995c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3 c14 0 28 1 42 3c59 -73 127 -141 200 -200'], + 0x27FA: [450,-50,1455,80,1375,'1375 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-865c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-60 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3 c-22 -28 -46 -54 -70 -80h865c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -140 200 -200zM1290 250c-24 19 -47 39 -69 60h-987c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h987c22 21 45 41 69 60'], + 0x27FC: [400,-100,1370,80,1290,'1290 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1029v-120c-7 2 -15 3 -23 3c-7 0 -15 -1 -22 -3v300c7 -2 15 -3 22 -3c8 0 16 1 23 3v-120h1029c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3 c51 -56 109 -106 171 -150'], + 0x2A3F: [692,3,836,24,812,'812 -3l-394 3l-394 -3v30l48 3c46 3 51 11 51 90v449c0 79 -5 87 -51 90l-48 3v30l147 -3l146 3v-30l-48 -3c-46 -3 -51 -11 -51 -90v-449c0 -64 5 -72 51 -75l48 -3h202l48 3c46 3 51 11 51 75v449c0 79 -5 87 -51 90l-48 3v30l147 -3l146 3v-30l-48 -3 c-46 -3 -51 -11 -51 -90v-449c0 -79 5 -87 51 -90l48 -3v-30'], + 0x2A7D: [662,162,767,80,687,'687 36l-607 283c2 10 3 20 3 30s-1 20 -3 30l607 283c-2 -10 -3 -22 -3 -33s1 -22 3 -33l-529 -247l529 -247c-2 -10 -3 -22 -3 -33s1 -22 3 -33zM687 -162l-600 280c2 10 3 22 3 33s-1 22 -3 33l600 -280c-2 -11 -3 -22 -3 -33s1 -23 3 -33'], + 0x2A7E: [662,162,767,80,687,'687 319l-607 -283c2 11 3 22 3 33s-1 23 -3 33l529 247l-529 247c2 11 3 22 3 33s-1 23 -3 33l607 -283c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 118l-600 -280c2 10 3 22 3 33s-1 22 -3 33l600 280c-2 -11 -3 -22 -3 -33s1 -23 3 -33'], + 0x2A85: [721,211,766,80,686,'686 186l-606 237c2 10 3 20 3 30s-1 20 -3 30l606 238c-2 -11 -3 -22 -3 -33s1 -21 3 -32l-518 -203l518 -202c-2 -11 -3 -22 -3 -33s1 -21 3 -32zM681 105c-34 -71 -70 -115 -133 -130c-12 -3 -23 -4 -35 -4c-50 0 -99 24 -145 49c-36 20 -73 41 -113 41 c-7 0 -15 -1 -23 -2c-48 -12 -85 -35 -111 -90c-5 5 -11 9 -17 12s-13 5 -19 6c34 72 70 115 132 130c12 3 24 4 36 4c50 0 99 -23 144 -49c36 -19 74 -41 113 -41c8 0 16 1 24 3c48 11 85 34 111 89c5 -5 10 -9 17 -12c6 -3 12 -5 19 -6zM681 -75 c-34 -71 -70 -115 -133 -130c-12 -3 -23 -4 -35 -4c-50 0 -99 24 -145 49c-36 20 -73 41 -113 41c-7 0 -15 -1 -23 -2c-48 -12 -85 -35 -111 -90c-5 5 -11 9 -17 12s-13 5 -19 6c34 72 70 115 132 130c12 3 24 4 36 4c50 0 99 -23 144 -49c36 -19 74 -41 113 -41 c8 0 16 1 24 3c48 11 85 34 111 89c5 -5 10 -9 17 -12c6 -3 12 -5 19 -6'], + 0x2A86: [721,211,766,80,686,'686 423l-606 -237c2 11 3 21 3 32s-1 22 -3 33l518 202l-518 203c2 11 3 21 3 32s-1 22 -3 33l606 -238c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM681 105c-34 -71 -70 -115 -133 -130c-12 -3 -23 -4 -35 -4c-50 0 -99 24 -145 49c-36 20 -73 41 -113 41c-7 0 -15 -1 -23 -2 c-48 -12 -85 -35 -111 -90c-5 5 -11 9 -17 12s-13 5 -19 6c34 72 70 115 132 130c12 3 24 4 36 4c50 0 99 -23 144 -49c36 -19 74 -41 113 -41c8 0 16 1 24 3c48 11 85 34 111 89c5 -5 10 -9 17 -12c6 -3 12 -5 19 -6zM681 -75c-34 -71 -70 -115 -133 -130 c-12 -3 -23 -4 -35 -4c-50 0 -99 24 -145 49c-36 20 -73 41 -113 41c-7 0 -15 -1 -23 -2c-48 -12 -85 -35 -111 -90c-5 5 -11 9 -17 12s-13 5 -19 6c34 72 70 115 132 130c12 3 24 4 36 4c50 0 99 -23 144 -49c36 -19 74 -41 113 -41c8 0 16 1 24 3c48 11 85 34 111 89 c5 -5 10 -9 17 -12c6 -3 12 -5 19 -6'], + 0x2A87: [658,158,766,80,686,'686 92l-606 253c2 10 3 20 3 30s-1 20 -3 30l606 253c-2 -11 -3 -22 -3 -33s1 -22 3 -33l-522 -217l522 -217c-2 -11 -3 -22 -3 -33s1 -22 3 -33zM686 -78h-288l-28 -80c-8 2 -16 3 -25 3s-17 -1 -25 -3l27 80h-267c2 10 3 20 3 30c0 11 -1 21 -3 30h288l28 80 c8 -1 16 -3 25 -3s17 2 25 3l-27 -79l267 -1c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30'], + 0x2A88: [658,158,766,80,686,'686 345l-606 -253c2 11 3 22 3 33s-1 22 -3 33l522 217l-522 217c2 11 3 22 3 33s-1 22 -3 33l606 -253c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -78h-288l-28 -80c-8 2 -16 3 -25 3s-17 -1 -25 -3l27 80h-267c2 10 3 20 3 30c0 11 -1 21 -3 30h288l28 80 c8 -1 16 -3 25 -3s17 2 25 3l-27 -79l267 -1c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30'], + 0x2A89: [721,271,766,80,686,'686 186l-606 237c2 10 3 20 3 30s-1 20 -3 30l606 238c-2 -11 -3 -22 -3 -33s1 -21 3 -32l-518 -203l518 -202c-2 -11 -3 -22 -3 -33s1 -21 3 -32zM681 -75c-34 -71 -70 -115 -133 -130c-12 -3 -23 -4 -35 -4c-50 0 -99 24 -145 49l-14 7l-60 -118c-9 2 -18 3 -27 3 s-18 -1 -27 -3l71 140c-18 7 -37 12 -56 12c-7 0 -15 -1 -23 -2c-48 -12 -85 -35 -111 -90c-5 5 -11 9 -17 12s-13 5 -19 6c34 72 70 115 132 130c12 3 24 4 36 4c29 0 57 -8 85 -19l46 89l-16 9c-36 20 -73 41 -113 41c-7 0 -15 -1 -23 -2c-48 -12 -85 -35 -111 -90 c-5 5 -11 9 -17 12s-13 5 -19 6c34 72 70 115 132 130c12 3 24 4 36 4c50 0 99 -23 144 -49l14 -7l60 118c9 -2 18 -3 27 -3s18 1 27 3l-71 -140c19 -7 37 -12 56 -12c8 0 16 1 24 3c48 11 85 34 111 89c5 -5 10 -9 17 -12c6 -3 12 -5 19 -6c-34 -71 -70 -115 -133 -130 c-12 -3 -23 -4 -35 -4c-29 0 -58 8 -86 20l-45 -90l15 -9c36 -19 74 -41 113 -41c8 0 16 1 24 3c48 11 85 34 111 89c5 -5 10 -9 17 -12c6 -3 12 -5 19 -6'], + 0x2A8A: [721,271,766,80,686,'686 423l-606 -237c2 11 3 21 3 32s-1 22 -3 33l518 202l-518 203c2 11 3 21 3 32s-1 22 -3 33l606 -238c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM681 -75c-34 -71 -70 -115 -133 -130c-12 -3 -23 -4 -35 -4c-50 0 -99 24 -145 49l-14 7l-60 -118c-9 2 -18 3 -27 3 s-18 -1 -27 -3l71 140c-18 7 -37 12 -56 12c-7 0 -15 -1 -23 -2c-48 -12 -85 -35 -111 -90c-5 5 -11 9 -17 12s-13 5 -19 6c34 72 70 115 132 130c12 3 24 4 36 4c29 0 57 -8 85 -19l46 89l-16 9c-36 20 -73 41 -113 41c-7 0 -15 -1 -23 -2c-48 -12 -85 -35 -111 -90 c-5 5 -11 9 -17 12s-13 5 -19 6c34 72 70 115 132 130c12 3 24 4 36 4c50 0 99 -23 144 -49l14 -7l60 118c9 -2 18 -3 27 -3s18 1 27 3l-71 -140c19 -7 37 -12 56 -12c8 0 16 1 24 3c48 11 85 34 111 89c5 -5 10 -9 17 -12c6 -3 12 -5 19 -6c-34 -71 -70 -115 -133 -130 c-12 -3 -23 -4 -35 -4c-29 0 -58 8 -86 20l-45 -90l15 -9c36 -19 74 -41 113 -41c8 0 16 1 24 3c48 11 85 34 111 89c5 -5 10 -9 17 -12c6 -3 12 -5 19 -6'], + 0x2A8B: [919,419,766,80,686,'686 385l-606 237c2 10 3 20 3 30s-1 20 -3 30l606 237c-2 -10 -3 -21 -3 -32s1 -21 3 -32l-518 -203l518 -203c-2 -10 -3 -21 -3 -32s1 -21 3 -32zM686 295h-606c2 10 3 20 3 30s-1 20 -3 30h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 145h-606c2 10 3 20 3 30 s-1 20 -3 30h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -182l-606 -237c2 10 3 21 3 32s-1 21 -3 32l518 203l-518 203c2 10 3 21 3 32s-1 21 -3 32l606 -237c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2A8C: [919,419,766,80,686,'686 622l-606 -237c2 11 3 21 3 32s-1 22 -3 32l518 203l-518 203c2 11 3 21 3 32s-1 22 -3 32l606 -237c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 295h-606c2 10 3 20 3 30s-1 20 -3 30h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 145h-606c2 10 3 20 3 30s-1 20 -3 30 h606c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 -419l-606 237c2 10 3 20 3 30s-1 20 -3 30l606 237c-2 -11 -3 -21 -3 -32s1 -22 3 -32l-518 -203l518 -203c-2 -11 -3 -21 -3 -32s1 -22 3 -32'], + 0x2A95: [662,162,767,80,687,'687 -162l-607 283c2 10 3 20 3 30s-1 20 -3 30l607 283c-2 -11 -3 -22 -3 -33s1 -23 3 -33l-529 -247l529 -247c-2 -11 -3 -22 -3 -33s1 -23 3 -33zM687 596l-600 -280c2 11 3 22 3 33s-1 23 -3 33l600 280c-2 -10 -3 -22 -3 -33s1 -22 3 -33'], + 0x2A96: [662,162,767,80,687,'687 121l-607 -283c2 10 3 22 3 33s-1 22 -3 33l529 247l-529 247c2 10 3 22 3 33s-1 22 -3 33l607 -283c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 316l-600 280c2 11 3 22 3 33s-1 23 -3 33l600 -280c-2 -10 -3 -22 -3 -33s1 -22 3 -33'], + 0x2AAF: [668,158,785,80,705,'705 48c-9 -4 -18 -9 -26 -16c-8 -6 -15 -13 -22 -20c-138 180 -350 289 -577 298c2 10 3 20 3 30s-1 20 -3 30c227 9 439 118 577 298c7 -7 14 -14 22 -20c8 -7 17 -12 26 -16c-110 -143 -262 -244 -433 -292c171 -48 323 -149 433 -292zM705 -158h-625c2 10 3 20 3 30 s-1 20 -3 30h625c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2AB0: [668,158,785,80,705,'705 310c-227 -9 -439 -118 -577 -298c-7 7 -14 14 -22 20c-8 7 -17 12 -26 16c110 143 262 244 433 292c-171 48 -323 149 -433 292c9 4 18 9 26 16c8 6 15 13 22 20c138 -180 350 -289 577 -298c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM705 -158h-625c2 10 3 20 3 30 s-1 20 -3 30h625c-2 -10 -3 -20 -3 -30s1 -20 3 -30'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Marks/Regular/Main.js new file mode 100644 index 0000000..371ff1f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Marks/Regular/Main.js @@ -0,0 +1,104 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'GyrePagellaMathJax_Marks', + id: 'GYREPAGELLAMARKS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2DB: [15,250,313,49,265,'265 -193l-37 -32c-25 -21 -58 -25 -91 -25c-59 0 -88 49 -88 92c0 69 59 135 127 173h41c-44 -35 -99 -91 -99 -147c0 -50 23 -72 48 -72c29 0 58 15 65 42l8 31l26 -7v-55'], + 0x2DD: [683,-502,380,73,437,'287 650c0 -16 -10 -29 -39 -50l-135 -98h-40l128 148c17 20 39 33 55 33c17 0 31 -15 31 -33zM437 650c0 -16 -10 -29 -39 -50l-135 -98h-40l128 148c17 20 39 33 55 33c17 0 31 -15 31 -33'], + 0x305: [646,-598,0,-416,-83,'-83 598h-333c1 8 3 16 3 24s-2 16 -3 24h333c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x309: [721,-540,0,-337,-162,'-162 662c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0x30F: [718,-537,0,-497,-133,'-133 537h-40l-135 98c-29 21 -39 34 -39 50c0 18 14 33 31 33c16 0 38 -13 55 -33zM-283 537h-40l-135 98c-29 21 -39 34 -39 50c0 18 14 33 31 33c16 0 38 -13 55 -33'], + 0x311: [706,-577,0,-431,-69,'-69 587l-30 -10c-20 59 -86 81 -151 81s-131 -22 -151 -81l-30 10c25 75 101 119 181 119s156 -44 181 -119'], + 0x323: [-93,193,0,-300,-200,'-200 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x326: [-77,271,0,-347,-205,'-205 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0x32C: [-60,202,0,-424,-76,'-76 -87c-56 -42 -114 -80 -174 -115c-60 35 -118 73 -174 115l16 27l158 -86l158 86'], + 0x32D: [-70,212,0,-424,-76,'-76 -184l-16 -28l-158 86l-158 -86l-16 28c56 41 114 79 174 114c60 -35 118 -73 174 -114'], + 0x32E: [-60,189,0,-431,-69,'-69 -70c-25 -75 -101 -119 -181 -119s-156 44 -181 119l30 10c20 -59 86 -81 151 -81s131 22 151 81'], + 0x32F: [-78,207,0,-431,-69,'-69 -197l-30 -10c-20 59 -86 81 -151 81s-131 -22 -151 -81l-30 10c25 75 101 119 181 119s156 -44 181 -119'], + 0x330: [-78,198,0,-421,-79,'-79 -86c-13 -54 -30 -85 -66 -98c-10 -4 -20 -5 -30 -5c-30 0 -60 14 -87 30c-24 15 -50 32 -76 22c-25 -8 -43 -24 -52 -61c-4 3 -9 6 -15 7c-5 1 -11 2 -16 1c13 54 30 86 66 99c10 3 20 5 30 5c30 0 60 -15 87 -31c24 -15 50 -32 76 -22c25 9 43 25 52 61 c4 -3 9 -5 15 -7c5 -1 11 -1 16 -1'], + 0x331: [-116,169,0,-405,-93,'-93 -169h-312v53h312v-53'], + 0x332: [-60,108,0,-416,-83,'-83 -108h-333c1 8 3 16 3 24s-2 16 -3 24h333c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x333: [-60,216,0,-416,-83,'-83 -108h-333c1 8 3 16 3 24s-2 16 -3 24h333c-2 -8 -3 -16 -3 -24s1 -16 3 -24zM-83 -216h-333c1 8 3 16 3 24s-2 16 -3 24h333c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x33F: [754,-598,0,-416,-83,'-83 598h-333c1 8 3 16 3 24s-2 16 -3 24h333c-2 -8 -3 -16 -3 -24s1 -16 3 -24zM-83 706h-333c1 8 3 16 3 24s-2 16 -3 24h333c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x2000: [0,0,500,0,0,''], + 0x2001: [0,0,1000,0,0,''], + 0x2007: [0,0,500,0,0,''], + 0x2008: [0,0,250,0,0,''], + 0x200B: [0,0,0,0,0,''], + 0x200C: [0,0,0,0,0,''], + 0x200D: [0,0,0,0,0,''], + 0x2010: [287,-215,333,17,312,'312 282l-30 -67h-260l-5 5l27 67h263'], + 0x2012: [375,-315,660,80,580,'580 315h-500c2 10 3 20 3 30s-1 20 -3 30h500c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2015: [280,-220,1160,80,1080,'1080 220h-1000c2 10 3 20 3 30s-1 20 -3 30h1000c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2017: [-60,216,493,80,413,'413 -108h-333c2 8 3 16 3 24s-1 16 -3 24h333c-2 -8 -3 -16 -3 -24s1 -16 3 -24zM413 -216h-333c2 8 3 16 3 24s-1 16 -3 24h333c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x201A: [110,153,278,22,210,'210 97c-34 -86 -72 -153 -129 -226l-44 -24l-15 10c48 77 72 144 78 223l97 30'], + 0x201E: [110,153,500,51,449,'239 97c-34 -86 -72 -153 -129 -226l-44 -24l-15 10c48 77 72 144 78 223l97 30zM449 97c-34 -86 -72 -153 -129 -226l-44 -24l-15 10c48 77 72 144 78 223l97 30'], + 0x2022: [450,-50,560,80,480,'480 250c0 -120 -80 -200 -200 -200s-200 80 -200 200s80 200 200 200s200 -80 200 -200'], + 0x202F: [0,0,200,0,0,''], + 0x2030: [709,20,1000,63,961,'340 541c0 -92 -62 -161 -143 -161c-78 0 -134 62 -134 148c0 94 60 161 143 161c76 0 134 -64 134 -148zM276 537c0 81 -27 129 -72 129c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134zM638 161c0 -92 -62 -161 -143 -161c-78 0 -134 62 -134 148 c0 94 60 161 143 161c76 0 134 -64 134 -148zM574 157c0 81 -27 129 -72 129c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134zM961 161c0 -92 -62 -161 -143 -161c-78 0 -134 62 -134 148c0 94 60 161 143 161c76 0 134 -64 134 -148zM897 157 c0 81 -27 129 -72 129c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134zM564 709l-391 -729h-40l391 729h40'], + 0x2031: [709,20,1323,63,1284,'340 541c0 -92 -62 -161 -143 -161c-78 0 -134 62 -134 148c0 94 60 161 143 161c76 0 134 -64 134 -148zM276 537c0 81 -27 129 -72 129c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134zM638 161c0 -92 -62 -161 -143 -161c-78 0 -134 62 -134 148 c0 94 60 161 143 161c76 0 134 -64 134 -148zM574 157c0 81 -27 129 -72 129c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134zM961 161c0 -92 -62 -161 -143 -161c-78 0 -134 62 -134 148c0 94 60 161 143 161c76 0 134 -64 134 -148zM897 157 c0 81 -27 129 -72 129c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134zM564 709l-391 -729h-40l391 729h40zM1284 161c0 -92 -62 -161 -143 -161c-78 0 -134 62 -134 148c0 94 60 161 143 161c76 0 134 -64 134 -148zM1220 157c0 81 -27 129 -72 129 c-49 0 -77 -50 -77 -137c0 -81 25 -126 71 -126c48 0 78 52 78 134'], + 0x2036: [779,-446,493,60,433,'233 456l-15 -10l-33 17l-125 303l13 13l82 -30zM433 456l-15 -10l-33 17l-125 303l13 13l82 -30'], + 0x2037: [779,-446,693,60,633,'233 456l-15 -10l-33 17l-125 303l13 13l82 -30zM433 456l-15 -10l-33 17l-125 303l13 13l82 -30zM633 456l-15 -10l-33 17l-125 303l13 13l82 -30'], + 0x2039: [428,-71,331,66,265,'265 86l-23 -15l-176 171v12l176 174l23 -13l-119 -167'], + 0x203A: [428,-71,331,66,265,'265 242l-176 -171l-23 15l119 162l-119 167l23 13l176 -174v-12'], + 0x203B: [534,34,606,19,587,'509 84l-40 -40l-166 166l-166 -166l-40 40l166 166l-166 166l40 40l166 -166l166 166l40 -40l-166 -166zM361 476c0 -32 -26 -58 -58 -58s-58 26 -58 58s26 58 58 58s58 -26 58 -58zM361 24c0 -32 -26 -58 -58 -58s-58 26 -58 58s26 58 58 58s58 -26 58 -58zM135 250 c0 -32 -26 -58 -58 -58s-58 26 -58 58s26 58 58 58s58 -26 58 -58zM587 250c0 -32 -26 -58 -58 -58s-58 26 -58 58s26 58 58 58s58 -26 58 -58'], + 0x203D: [734,5,444,43,395,'395 540c0 -57 -25 -96 -110 -174c-81 -73 -94 -90 -94 -123c0 -16 6 -29 22 -48l-21 -14c-30 19 -44 43 -44 73c0 21 6 40 26 68l-1 23l-27 280c-27 -6 -46 -19 -54 -39l-20 -48l-29 8l38 113c22 11 42 19 60 24l-1 13l75 38h34v-25v-18c85 -14 146 -75 146 -151z M302 519c0 43 -23 77 -60 95l-27 -243c3 4 7 7 10 11c59 65 77 97 77 137zM257 53c0 -31 -28 -58 -60 -58c-29 0 -56 28 -56 58s27 58 57 58c31 0 59 -28 59 -58'], + 0x2052: [692,0,500,34,466,'179 603c0 -41 -32 -73 -72 -73c-41 0 -73 32 -73 73c0 40 32 72 73 72c40 0 72 -32 72 -72zM466 90c0 -41 -32 -73 -72 -73c-41 0 -73 32 -73 73c0 40 32 72 73 72c40 0 72 -32 72 -72zM463 692l-388 -692h-38l388 692h38'], + 0x205F: [0,0,222,0,0,''], + 0x2060: [0,0,0,0,0,''], + 0x2061: [660,160,940,60,880,'255 -160h-95v60h95v-60zM430 -160h-95v60h95v-60zM605 -160h-95v60h95v-60zM780 -160h-95v60h95v-60zM255 600h-95v60h95v-60zM430 600h-95v60h95v-60zM605 600h-95v60h95v-60zM780 600h-95v60h95v-60zM120 -60h-60v95h60v-95zM120 115h-60v95h60v-95zM120 290h-60v95 h60v-95zM120 465h-60v95h60v-95zM880 -60h-60v95h60v-95zM880 115h-60v95h60v-95zM880 290h-60v95h60v-95zM880 465h-60v95h60v-95zM461 461l-6 -10l-10 -31l-10 -3c-8 12 -20 18 -32 18c-21 0 -32 -15 -39 -49l-8 -43h2c22 0 26 0 38 3l6 2l7 -7c-6 -9 -8 -19 -11 -29h-49 c-2 -13 -6 -25 -7 -34c-36 -153 -46 -181 -74 -212c-20 -22 -46 -35 -67 -35c-6 0 -13 1 -23 6c6 8 11 27 14 39l11 3c9 -10 14 -13 24 -13c15 0 27 13 35 36c10 29 27 108 41 191l4 19h-39l5 17c13 4 22 7 40 15l6 31c6 25 11 39 23 49c11 10 50 37 61 41c5 2 12 4 18 4 c12 0 27 -3 40 -8zM572 48l-12 -12c-70 46 -112 124 -112 207c0 84 42 162 112 208l12 -12c-49 -54 -76 -123 -76 -196c0 -72 27 -142 76 -195zM762 243c0 -83 -42 -161 -112 -207l-12 12c49 53 76 123 76 195c0 73 -27 142 -76 196l12 12c70 -46 112 -124 112 -208'], + 0x2062: [0,0,0,0,0,''], + 0x2063: [0,0,0,0,0,''], + 0x2064: [0,0,0,0,0,''], + 0x20D0: [784,-640,0,-442,-58,'-58 640h-361l-23 24c44 36 84 76 120 120c11 -2 22 -3 34 -3c11 0 22 1 34 3c-28 -34 -59 -67 -92 -96h288c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x20D1: [784,-640,0,-442,-58,'-58 664l-23 -24h-361c2 8 3 16 3 24s-1 16 -3 24h288c-33 29 -64 62 -92 96c12 -2 23 -3 34 -3c12 0 23 1 34 3c36 -44 76 -84 120 -120'], + 0x20D2: [650,150,0,-274,-226,'-226 -150c-8 2 -16 3 -24 3s-16 -1 -24 -3v800c8 -2 16 -3 24 -3s16 1 24 3v-800'], + 0x20D3: [500,0,0,-280,-220,'-220 0c-10 2 -20 3 -30 3s-20 -1 -30 -3v500c10 -2 20 -3 30 -3s20 1 30 3v-500'], + 0x20D4: [862,-639,0,-453,-47,'-47 662c-9 -1 -16 -2 -24 -5s-15 -6 -22 -11c-23 65 -84 109 -153 109c-49 0 -87 -28 -123 -61c46 1 91 -3 136 -10c-9 -6 -18 -12 -27 -20c-8 -8 -16 -16 -23 -25c-56 9 -113 11 -170 8c9 56 12 113 9 170c9 6 19 13 27 20c8 8 16 16 23 25c3 -43 1 -87 -3 -131 c44 39 92 72 151 72c89 0 169 -57 199 -141'], + 0x20D5: [862,-639,0,-453,-47,'-47 647c-57 3 -114 1 -170 -8c-7 9 -15 17 -23 25c-9 8 -18 14 -27 20c45 7 90 11 136 10c-36 33 -74 61 -123 61c-69 0 -130 -44 -153 -109c-7 5 -14 8 -22 11s-15 4 -24 5c30 84 110 141 199 141c59 0 107 -33 151 -72c-4 44 -6 88 -3 131c7 -9 15 -17 23 -25 c8 -7 18 -14 27 -20c-3 -57 0 -114 9 -170'], + 0x20D6: [784,-544,0,-443,-57,'-57 640h-289c33 -29 63 -62 91 -96c-11 2 -22 3 -34 3c-11 0 -22 -1 -34 -3c-35 44 -75 84 -120 120c45 36 85 76 121 120c11 -2 22 -3 33 -3c12 0 23 1 34 3c-28 -34 -58 -67 -91 -96h289c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x20D8: [410,-90,0,-410,-90,'-90 250c0 -96 -64 -160 -160 -160s-160 64 -160 160s64 160 160 160s160 -64 160 -160zM-138 250c0 67 -45 112 -112 112s-112 -45 -112 -112s45 -112 112 -112s112 45 112 112'], + 0x20DB: [672,-572,0,-520,20,'-420 622c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 50 50s50 -20 50 -50zM-200 622c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 50 50s50 -20 50 -50zM20 622c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 50 50s50 -20 50 -50'], + 0x20DC: [672,-572,0,-630,130,'-530 622c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 50 50s50 -20 50 -50zM-310 622c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 50 50s50 -20 50 -50zM-90 622c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 50 50s50 -20 50 -50zM130 622c0 -30 -20 -50 -50 -50 s-50 20 -50 50s20 50 50 50s50 -20 50 -50'], + 0x20DD: [668,168,0,-668,168,'168 250c0 -251 -167 -418 -418 -418s-418 167 -418 418s167 418 418 418s418 -167 418 -418zM108 250c0 215 -143 358 -358 358s-358 -143 -358 -358s143 -358 358 -358s358 143 358 358'], + 0x20DE: [650,150,0,-650,150,'150 -120c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-740c-4 6 -8 12 -13 17s-11 9 -17 13v740c6 4 12 8 17 13s9 11 13 17h740c4 -6 8 -12 13 -17s11 -9 17 -13v-740zM90 590h-680v-680h680v680'], + 0x20DF: [851,351,0,-851,351,'351 229l-580 -580c-7 2 -14 3 -21 3s-14 -1 -21 -3l-580 580c2 7 3 14 3 21s-1 14 -3 21l580 580c7 -2 14 -3 21 -3s14 1 21 3l580 -580c-2 -7 -3 -14 -3 -21s1 -14 3 -21zM287 250l-537 537l-537 -537l537 -537'], + 0x20E1: [784,-544,0,-479,-21,'-21 664c-44 -36 -85 -76 -120 -120c-11 2 -23 3 -34 3c-12 0 -23 -1 -34 -3c28 34 58 67 92 96h-266c34 -29 64 -62 92 -96c-11 2 -22 3 -34 3c-11 0 -23 -1 -34 -3c-35 44 -76 84 -120 120c44 36 85 76 120 120c11 -2 23 -3 34 -3c12 0 23 1 34 3 c-28 -34 -58 -67 -92 -96h266c-34 29 -64 62 -92 96c11 -2 22 -3 34 -3c11 0 23 1 34 3c35 -44 76 -84 120 -120'], + 0x20E4: [698,213,0,-776,276,'276 -168c-6 -6 -11 -13 -16 -21c-4 -8 -7 -16 -10 -24h-1000c-3 8 -6 16 -10 24c-5 8 -10 15 -16 21l500 866c9 -2 17 -3 26 -3s17 1 26 3zM198 -153l-448 776l-448 -776h896'], + 0x20E5: [650,150,0,-413,-87,'-87 -150c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l-275 800c8 -2 17 -3 26 -3c8 0 17 1 25 3'], + 0x20E6: [650,150,0,-358,-142,'-310 -150c-8 2 -16 3 -24 3s-16 -1 -24 -3v800c8 -2 16 -3 24 -3s16 1 24 3v-800zM-142 -150c-8 2 -16 3 -24 3s-16 -1 -24 -3v800c8 -2 16 -3 24 -3s16 1 24 3v-800'], + 0x20E8: [-60,160,0,-520,20,'-420 -110c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 50 50s50 -20 50 -50zM-200 -110c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 50 50s50 -20 50 -50zM20 -110c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 50 50s50 -20 50 -50'], + 0x20E9: [771,-646,0,-433,-66,'-66 646c-6 1 -13 3 -20 3s-14 -2 -20 -3v76l-287 1v-77c-6 1 -13 3 -20 3s-14 -2 -20 -3v124l367 1v-125'], + 0x20EA: [400,-100,0,-630,130,'130 220h-624c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x20EB: [650,150,0,-502,2,'-176 650l-275 -800c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l275 800c8 -2 17 -3 26 -3c8 0 17 1 25 3zM2 650l-275 -800c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l275 800c8 -2 17 -3 26 -3c8 0 17 1 25 3'], + 0x20EC: [-170,314,0,-442,-58,'-58 -194c-44 -36 -84 -76 -120 -120c-11 2 -22 3 -34 3c-11 0 -22 -1 -34 -3c28 34 59 67 92 96h-288c2 8 3 16 3 24s-1 16 -3 24h361'], + 0x20ED: [-170,314,0,-442,-58,'-58 -218h-288c33 -29 64 -62 92 -96c-12 2 -23 3 -34 3c-12 0 -23 -1 -34 -3c-36 44 -76 84 -120 120l23 24h361c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x20EE: [-74,314,0,-443,-57,'-57 -218h-289c33 -29 63 -62 91 -96c-11 2 -22 3 -34 3c-11 0 -22 -1 -34 -3c-35 44 -75 84 -120 120c45 36 85 76 121 120c11 -2 22 -3 33 -3c12 0 23 1 34 3c-28 -34 -58 -67 -91 -96h289c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x20EF: [-74,314,0,-443,-57,'-57 -194c-45 -36 -85 -76 -120 -120c-12 2 -23 3 -34 3c-12 0 -23 -1 -34 -3c28 34 58 67 91 96h-289c2 8 3 16 3 24s-1 16 -3 24h289c-33 29 -63 62 -91 96c11 -2 22 -3 34 -3c11 0 22 1 34 3c35 -44 75 -84 120 -120'], + 0x20F0: [769,-511,0,-367,-122,'-122 617l-10 -8l-102 19l50 -91l-4 -12l-45 -14l-10 7l-13 103l-71 -76l-13 1l-27 38l3 12l94 44l-94 44l-3 12l27 38l13 1l71 -76l13 103l10 7l45 -14l4 -12l-50 -91l102 19l10 -8v-46'], + 0x2E18: [499,240,444,49,401,'401 -52l-38 -113c-22 -11 -42 -19 -60 -24l1 -13l-75 -38h-34v25v18c-85 14 -146 75 -146 151c0 57 25 96 110 174c81 73 94 90 94 123c0 16 -6 29 -22 48l21 14c30 -19 44 -43 44 -73c0 -21 -6 -40 -26 -68l1 -23l27 -280c27 6 46 19 54 39l20 48zM303 441 c0 -30 -27 -58 -57 -58c-31 0 -59 28 -59 58c0 31 28 58 60 58c29 0 56 -28 56 -58zM229 123c-3 -4 -7 -7 -10 -11c-59 -65 -77 -97 -77 -137c0 -43 23 -77 60 -95'], + 0x3016: [670,170,474,80,394,'333 -130c-100 112 -153 233 -153 347v66c0 114 53 235 153 347h-213v-760h213zM394 -136c-4 -5 -7 -10 -10 -16c-2 -5 -3 -11 -4 -18h-300v840h300c1 -7 2 -13 4 -18c3 -6 6 -11 10 -16c-112 -113 -174 -236 -174 -353v-66c0 -117 62 -240 174 -353'], + 0x3017: [670,170,474,80,394,'354 630h-213c100 -112 153 -233 153 -347v-66c0 -114 -53 -235 -153 -347h213v760zM394 -170h-300c0 7 -2 13 -4 18c-3 6 -6 11 -10 16c113 113 174 236 174 353v66c0 117 -61 240 -174 353c4 5 7 10 10 16c2 5 4 11 4 18h300v-840'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Marks/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Misc/Regular/Main.js new file mode 100644 index 0000000..bc78b66 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Misc/Regular/Main.js @@ -0,0 +1,37 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'GyrePagellaMathJax_Misc', + id: 'GYREPAGELLAMISC', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x20A1: [775,83,709,22,670,'670 84l-28 -50c-69 -36 -144 -54 -227 -54h-21v-63h-34v66c-205 21 -338 160 -338 359c0 135 60 240 174 307c48 28 104 46 163 55l1 71h34v-67c13 1 26 1 39 1c73 0 146 -13 231 -41c-14 -66 -18 -102 -19 -152h-31v72c0 39 -101 79 -199 79c-7 0 -14 0 -22 -1l1 -628 c19 -3 39 -4 60 -4c76 0 145 20 207 60zM360 662c-141 -23 -231 -138 -231 -301s89 -280 230 -316'], + 0x20A4: [694,13,500,12,478,'478 668c-7 -35 -10 -70 -10 -102c0 -8 0 -19 1 -34h-33c-1 58 -7 79 -27 95c-17 13 -42 20 -71 20c-60 0 -97 -23 -122 -74c-16 -34 -24 -79 -24 -130v-22l182 5l-4 -48l-178 4v-77l182 6l-4 -48l-181 5c-5 -87 -32 -110 -94 -199c37 5 77 9 133 7l157 -6 c10 0 17 -1 23 -1c19 0 25 8 29 37l7 52h26v-148c-21 -17 -29 -20 -50 -20c-60 0 -123 7 -179 19c-56 13 -97 19 -162 23l-45 -45h-22v49c9 9 23 19 38 27c15 7 17 9 24 23c20 40 34 72 34 151v30l-96 -3l8 45l88 -3v75l-96 -2l8 45l88 -3v40c0 65 33 120 99 168 c63 45 116 65 173 65c41 0 64 -6 98 -26'], + 0x20A6: [692,20,831,17,813,'813 263h-95v-246c0 -10 3 -27 3 -37l-90 16l-215 267h-258v-143c0 -78 5 -87 51 -90l44 -3v-30l-120 3l-116 -3v30l44 3c46 3 51 12 51 90v143h-95v34h95v98h-95v34h95v140c0 78 -5 87 -51 90l-44 3v30l120 -3c21 0 54 3 54 3l213 -263h268v140c0 78 -5 87 -51 90l-44 3 v30l116 -3l120 3v-30l-44 -3c-46 -3 -51 -12 -51 -90v-140h95v-34h-95v-98h95v-34zM282 429l-124 154v-154h124zM388 297l-79 98h-151v-98h230zM672 297v98h-241l80 -98h161zM672 98v165h-134'], + 0x20A9: [700,9,1000,8,984,'984 263h-174l-49 -171l-27 -101h-50c-35 109 -38 117 -71 206l-24 66h-208l-67 -169c-19 -47 -27 -71 -36 -103h-50l-62 272h-158v34h150l-23 98h-127v34h119l-41 180c-8 34 -21 47 -50 50l-28 3v30l126 -3l126 3v-30l-42 -3c-39 -3 -41 -28 -33 -66l37 -164h175l12 30 c53 134 69 179 90 241h32c8 -34 12 -42 33 -102l60 -169h183l53 197c5 20 -4 30 -46 33l-40 3v30c35 -2 70 -3 105 -3s70 1 105 3v-30l-32 -3c-22 -2 -33 -12 -38 -29l-57 -201h127v-34h-137l-28 -98h165v-34zM384 395h-155l22 -98h94zM332 263h-74l27 -119zM798 395h-162 l35 -98h100zM762 263h-79l45 -126zM576 297l-36 98h-108l-38 -98h182zM527 429l-39 107l-42 -107h81'], + 0x20AB: [692,34,542,40,502,'502 72c-18 1 -35 1 -41 2c-17 1 -29 1 -36 1l-66 -3l5 79l-95 -80c-4 -3 -24 -6 -41 -6c-55 0 -95 11 -124 35c-41 34 -64 90 -64 158c0 73 31 135 80 160l74 39c22 11 42 17 65 17c30 0 54 -7 101 -28v101h-123v30h123v25c0 25 -6 35 -21 35h-48v24c68 10 96 17 133 31 l8 -7v-108h70v-30h-70v-385c0 -54 2 -60 31 -62l39 -2v-26zM502 -34h-462v34h462v-34zM360 263v109c0 7 -10 18 -28 30c-30 21 -64 32 -96 32c-76 0 -122 -55 -122 -147c0 -102 53 -174 128 -174c40 0 82 26 105 66c12 20 13 28 13 84'], + 0x20AC: [689,20,500,-2,501,'501 29c-16 -14 -60 -49 -164 -49c-178 0 -249 153 -262 296c-38 0 -63 -1 -77 -2l18 51c15 -3 25 -5 57 -5v56c-29 0 -61 0 -74 -1l18 51c14 -4 36 -6 62 -6c19 133 95 269 258 269c104 0 148 -35 164 -49c-3 -24 -16 -85 -16 -126h-31l-2 90c-19 34 -67 50 -120 50 c-79 0 -151 -90 -170 -234h171c33 0 64 2 89 6l-18 -52l-247 2c-1 -14 -1 -29 -1 -56c75 0 157 0 230 5l-18 -51l-210 2c15 -161 89 -261 174 -261c44 0 96 14 118 46l3 94h32c0 -41 13 -102 16 -126'], + 0x20B1: [692,3,604,22,580,'580 537c0 -120 -105 -213 -242 -213c-20 0 -34 1 -58 6l-10 36c26 -8 41 -10 62 -10c87 0 148 63 148 153c0 95 -58 145 -166 145c-34 0 -63 -4 -98 -12v-401l86 1v-34h-86v-88c0 -79 5 -87 51 -90l48 -3v-30l-147 3l-146 -3v30l48 3c46 3 51 11 51 90v88h-81v34h81v327 c0 74 -8 87 -53 90l-45 3v30l182 -3c57 0 113 3 170 3c127 0 205 -59 205 -155'], + 0x20B2: [775,83,763,22,728,'728 246l-29 -10c-10 -4 -11 -6 -11 -37v-168c-136 -38 -205 -51 -276 -51c-19 0 -39 1 -58 3l1 -66h-34v72c-80 15 -151 50 -202 100c-62 62 -97 151 -97 252c0 182 115 313 298 354l1 80h34v-73c30 5 62 7 95 7c80 0 131 -9 242 -41c-14 -54 -20 -101 -20 -152h-31v53 c0 38 -25 61 -83 80c-38 12 -82 18 -134 18c-25 0 -48 -2 -70 -6l1 -627c30 -8 63 -12 98 -12c66 0 126 14 137 33c4 7 6 19 6 43v101c0 24 -9 33 -34 35l-83 7v30l122 -3l123 3zM321 45v609c-123 -36 -192 -138 -192 -292c0 -157 72 -270 192 -317'], + 0x27A1: [450,-50,995,80,915,'915 250c-73 -59 -141 -127 -200 -200v110h-635v180h635v110c59 -73 127 -141 200 -200'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Misc/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Monospace/Regular/Main.js new file mode 100644 index 0000000..8fcfe26 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Monospace/Regular/Main.js @@ -0,0 +1,90 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'GyrePagellaMathJax_Monospace', + id: 'GYREPAGELLAMONOSPACE', + 0x20: [0,0,350,0,0,''], + 0xA0: [0,0,350,0,0,''], + 0x1D670: [625,0,350,14,336,'336 20c0 -20 -20 -20 -29 -20h-67c-8 0 -28 0 -28 20s19 20 41 20l-21 135h-114l-21 -135c22 0 41 0 41 -20s-20 -20 -28 -20h-68c-8 0 -28 0 -28 20s18 20 39 20l87 549c5 33 14 36 36 36c16 0 29 -3 34 -36l87 -549c20 0 39 0 39 -20zM226 216l-51 349l-51 -349h102'], + 0x1D671: [611,0,350,13,326,'326 163c0 -79 -44 -163 -119 -163h-166c-8 0 -28 0 -28 20s20 20 28 20h18v531h-18c-8 0 -28 0 -28 20s20 20 28 20h152c74 0 118 -78 118 -150c0 -70 -29 -102 -84 -140c77 -29 99 -89 99 -158zM267 460c0 39 -14 111 -76 111h-88v-232h77c62 0 87 69 87 121zM281 165 c0 37 -18 133 -93 133h-85v-258h89c66 0 89 71 89 125'], + 0x1D672: [623,12,350,23,327,'327 165c0 -88 -60 -177 -139 -177c-86 0 -165 134 -165 318c0 180 77 317 165 317c30 0 62 -15 91 -52l10 34c2 7 7 18 18 18c16 0 20 -16 20 -29v-150c0 -17 -4 -29 -23 -29c-14 0 -20 6 -22 28c-10 95 -52 140 -90 140c-66 0 -124 -116 -124 -277s58 -278 125 -278 c12 0 83 8 89 138c1 17 13 21 22 21c7 0 23 0 23 -22'], + 0x1D673: [611,0,350,10,328,'328 300c0 -159 -62 -300 -150 -300h-140c-8 0 -28 0 -28 20s20 20 28 20h14v531h-14c-8 0 -28 0 -28 20s20 20 28 20h139c91 0 151 -150 151 -311zM283 301c0 121 -35 270 -119 270h-67v-531h68c79 0 118 132 118 261'], + 0x1D674: [611,0,350,15,340,'340 33c0 -28 -8 -33 -28 -33h-269c-8 0 -28 0 -28 20s20 20 28 20h19v531h-19c-8 0 -28 0 -28 20s20 20 28 20h254c20 0 28 -6 28 -33v-68c0 -16 -4 -32 -23 -32s-22 17 -22 32v61h-173v-234h94c0 41 3 56 22 56s22 -17 22 -32v-87c0 -15 -3 -32 -22 -32s-22 15 -22 55 h-94v-257h188v76c0 16 4 33 23 33c18 0 22 -18 22 -33v-83'], + 0x1D675: [611,0,350,17,331,'331 510c0 -16 -4 -32 -23 -32c-18 0 -22 17 -22 32v61h-175v-245h97c0 41 3 56 22 56s22 -17 22 -33v-86c0 -16 -3 -33 -22 -33s-22 15 -22 56h-97v-246h34c8 0 28 0 28 -20s-20 -20 -28 -20h-100c-8 0 -28 0 -28 20s20 20 28 20h22v531h-22c-8 0 -28 0 -28 20 s20 20 28 20h258c20 0 28 -6 28 -33v-68'], + 0x1D676: [623,12,350,21,335,'335 239c0 -20 -20 -20 -32 -20v-190c0 -16 -4 -31 -22 -31c-19 0 -23 14 -23 47c-24 -39 -54 -57 -84 -57c-80 0 -153 132 -153 318c0 183 72 317 153 317c31 0 59 -18 82 -49l9 33c3 5 7 16 19 16c15 0 19 -16 19 -29v-150c0 -17 -4 -29 -23 -29c-7 0 -20 0 -22 24 c-9 104 -46 144 -80 144c-58 0 -113 -114 -113 -278c0 -160 53 -277 112 -277c58 0 77 110 81 191h-30c-8 0 -28 0 -28 20s20 20 28 20h79c8 0 28 0 28 -20'], + 0x1D677: [611,0,350,12,338,'338 20c0 -20 -19 -20 -28 -20h-76c-8 0 -28 0 -28 20s20 20 28 20h16v258h-150v-258h16c8 0 28 0 28 -20s-20 -20 -28 -20h-77c-8 0 -27 0 -27 20s19 20 27 20h16v531h-16c-8 0 -27 0 -27 20s19 20 27 20h77c8 0 28 0 28 -20s-20 -20 -28 -20h-16v-232h150v232h-16 c-8 0 -28 0 -28 20s20 20 28 20h76c9 0 28 0 28 -20s-20 -20 -28 -20h-16v-531h16c8 0 28 0 28 -20'], + 0x1D678: [611,0,350,53,297,'297 20c0 -20 -19 -20 -27 -20h-189c-8 0 -28 0 -28 20s20 20 28 20h72v531h-72c-8 0 -28 0 -28 20s20 20 28 20h189c8 0 27 0 27 -20s-19 -20 -27 -20h-73v-531h73c8 0 27 0 27 -20'], + 0x1D679: [611,12,350,48,322,'322 591c0 -20 -20 -20 -28 -20h-19v-443c0 -91 -58 -140 -115 -140c-62 0 -112 41 -112 104c0 25 15 35 29 35s27 -13 27 -32c0 -5 -3 -11 -11 -24c24 -41 59 -43 68 -43c13 0 69 9 69 107v436h-54c-9 0 -28 0 -28 20s19 20 28 20h118c8 0 28 0 28 -20'], + 0x1D67A: [611,0,350,13,334,'334 20c0 -20 -19 -20 -27 -20h-51c-8 0 -27 0 -27 20s19 20 34 20l-105 280l-64 -121v-159h14c8 0 28 0 28 -20s-20 -20 -28 -20h-67c-8 0 -28 0 -28 20s20 20 28 20h12v531h-12c-8 0 -28 0 -28 20s20 20 28 20h67c8 0 28 0 28 -20s-20 -20 -28 -20h-14v-297l158 297 c-19 0 -38 0 -38 20s19 20 27 20h59c9 0 28 0 28 -20s-18 -20 -36 -20l-112 -210l120 -321c16 0 34 0 34 -20'], + 0x1D67B: [611,0,350,19,330,'330 33c0 -28 -8 -33 -27 -33h-256c-8 0 -28 0 -28 20s20 20 28 20h24v531h-24c-8 0 -28 0 -28 20s20 20 28 20h105c9 0 28 0 28 -20s-19 -20 -28 -20h-37v-531h171v77c0 15 3 32 22 32s22 -18 22 -32v-84'], + 0x1D67C: [611,0,350,7,343,'343 20c0 -20 -20 -20 -29 -20h-53c-8 0 -28 0 -28 20s19 20 36 20v519l-66 -322c-6 -18 -20 -26 -28 -26c-20 0 -29 28 -30 36l-63 314v-521c15 0 35 0 35 -20s-20 -20 -29 -20h-53c-8 0 -28 0 -28 20s19 20 36 20v531c-17 0 -36 0 -36 20s20 20 28 20h37 c12 0 32 0 40 -24l62 -307l60 292c6 27 16 39 43 39h37c9 0 29 0 29 -20s-20 -20 -36 -20v-531c16 0 36 0 36 -20'], + 0x1D67D: [611,0,350,15,334,'334 591c0 -20 -19 -20 -27 -20h-16v-538c0 -33 -11 -33 -29 -33c-16 0 -34 0 -42 35l-122 517v-512h15c8 0 28 0 28 -20s-20 -20 -28 -20h-70c-9 0 -28 0 -28 20s20 20 28 20h16v531h-16c-8 0 -28 0 -28 20s19 20 28 20h45c15 0 33 0 42 -35l123 -517v512h-16 c-9 0 -29 0 -29 20s20 20 29 20h70c9 0 27 0 27 -20'], + 0x1D67E: [623,12,350,34,316,'316 305c0 -144 -4 -223 -23 -266c-19 -44 -55 -51 -118 -51c-64 0 -99 7 -119 51c-19 43 -22 122 -22 267c0 144 3 223 22 266c20 44 55 51 119 51c63 0 99 -7 118 -51c19 -43 23 -122 23 -267zM271 314c0 66 0 151 -8 202c-10 55 -33 67 -88 67c-58 0 -79 -14 -89 -71 c-8 -51 -8 -128 -8 -198c0 -61 0 -159 10 -213c7 -48 23 -73 87 -73c65 0 81 25 88 78c8 58 8 141 8 208'], + 0x1D67F: [611,0,350,15,325,'325 433c0 -89 -52 -177 -131 -177h-87v-216h19c9 0 29 0 29 -20s-20 -20 -29 -20h-83c-8 0 -28 0 -28 20s20 20 28 20h19v531h-19c-8 0 -28 0 -28 20s20 20 28 20h151c78 0 131 -86 131 -178zM280 434c0 57 -27 137 -98 137h-75v-275h75c69 0 98 76 98 138'], + 0x1D680: [623,143,350,34,316,'316 305c0 -37 0 -120 -4 -168c-6 -73 -15 -113 -54 -137l29 -82l20 -52c0 -9 -13 -9 -23 -9c-16 0 -21 0 -28 16l-40 116c-9 -1 -31 -1 -41 -1c-124 0 -141 25 -141 318c0 292 17 317 141 317s141 -25 141 -318zM271 306c0 57 0 140 -7 193c-8 60 -22 84 -89 84 s-82 -23 -90 -83c-7 -53 -7 -130 -7 -195c0 -57 0 -140 7 -193c7 -48 16 -84 84 -84h34l-42 115c-5 14 7 14 19 14h5c14 0 16 0 21 -14l35 -97c17 18 30 32 30 260'], + 0x1D681: [611,12,350,12,353,'353 86c0 -34 -16 -98 -60 -98c-21 0 -40 15 -51 42c-12 32 -13 60 -13 127c0 49 0 78 -16 100c-23 29 -45 29 -57 29h-56v-246h16c8 0 28 0 28 -20s-20 -20 -28 -20h-77c-8 0 -27 0 -27 20s19 20 27 20h16v531h-16c-8 0 -27 0 -27 20s19 20 27 20h120 c79 0 133 -80 133 -163c0 -52 -23 -103 -69 -143c18 -20 35 -41 44 -71c7 -23 7 -29 7 -92c0 -64 0 -114 19 -114c15 0 16 50 16 58s5 24 22 24c13 0 22 -7 22 -24zM248 448c0 54 -28 123 -96 123h-52v-245h52c68 0 96 69 96 122'], + 0x1D682: [623,12,350,31,319,'319 159c0 -88 -52 -171 -129 -171c-29 0 -77 7 -116 51c-8 -43 -10 -51 -24 -51c-16 0 -19 16 -19 29v142c0 17 3 31 22 31c20 0 22 -15 22 -29c4 -93 54 -133 115 -133c59 0 86 68 86 127c0 33 -6 62 -20 87c-17 29 -29 34 -82 51c-74 26 -86 30 -115 73 c-4 6 -28 42 -28 98c0 87 55 159 127 159c25 0 65 -7 99 -51c8 43 10 51 25 51s19 -16 19 -29v-143c0 -17 -4 -30 -23 -30s-21 13 -23 32c-9 88 -45 130 -98 130c-51 0 -84 -57 -84 -115c0 -50 22 -91 53 -108l49 -17c71 -25 84 -30 112 -72c2 -3 32 -62 32 -112'], + 0x1D683: [611,0,350,13,336,'336 510c0 -16 -3 -32 -22 -32s-22 17 -22 32v61h-95v-531h35c8 0 27 0 27 -20s-19 -20 -27 -20h-113c-9 0 -28 0 -28 20s19 20 28 20h34v531h-95v-61c0 -16 -4 -32 -23 -32c-18 0 -22 17 -22 32v68c0 29 9 33 28 33h268c20 0 27 -6 27 -33v-68'], + 0x1D684: [611,12,350,0,350,'350 591c0 -20 -20 -20 -28 -20h-20v-371c0 -121 -60 -212 -127 -212s-127 91 -127 212v371h-20c-8 0 -28 0 -28 20s20 20 28 20h84c8 0 28 0 28 -20s-20 -20 -28 -20h-20v-365c0 -117 44 -178 83 -178c38 0 82 60 82 178v365h-19c-8 0 -28 0 -28 20s20 20 28 20h84 c8 0 28 0 28 -20'], + 0x1D685: [611,9,350,8,342,'342 591c0 -20 -18 -20 -37 -20l-95 -546c-6 -34 -20 -34 -35 -34c-16 0 -30 0 -37 36l-93 544c-19 0 -37 0 -37 20s19 20 27 20h66c8 0 28 0 28 -20s-19 -20 -40 -20l86 -521l86 521c-22 0 -41 0 -41 20s20 20 29 20h65c9 0 28 0 28 -20'], + 0x1D686: [611,9,350,3,347,'347 591c0 -20 -21 -20 -25 -20l-51 -542c-2 -18 -4 -38 -27 -38c-7 0 -20 0 -27 20l-42 295l-42 -292c-6 -23 -21 -23 -28 -23c-23 0 -25 19 -27 39l-50 541c-5 0 -25 0 -25 20s20 20 28 20h52c8 0 28 0 28 -20s-20 -20 -28 -20h-17l43 -517l39 284c6 21 21 21 27 21 s24 0 28 -26l37 -279l45 517h-18c-8 0 -29 0 -29 20s21 20 29 20h52c8 0 28 0 28 -20'], + 0x1D687: [611,0,350,14,335,'335 20c0 -20 -19 -20 -28 -20h-66c-8 0 -28 0 -28 20s20 20 37 20l-79 226l-73 -226c19 0 38 0 38 -20s-20 -20 -28 -20h-67c-8 0 -27 0 -27 20s19 20 27 20h14l97 286l-89 245h-14c-8 0 -27 0 -27 20s19 20 27 20h67c8 0 27 0 27 -20s-19 -20 -36 -20l64 -179l59 179 c-17 0 -37 0 -37 20s20 20 28 20h66c8 0 28 0 28 -20s-20 -20 -28 -20h-13l-84 -246l103 -285h14c9 0 28 0 28 -20'], + 0x1D688: [611,0,350,8,342,'342 591c0 -20 -21 -20 -28 -20h-13l-104 -321v-210h16c9 0 28 0 28 -20s-19 -20 -28 -20h-76c-9 0 -28 0 -28 20s20 20 28 20h16v210l-105 321h-12c-8 0 -28 0 -28 20s20 20 28 20h66c8 0 28 0 28 -20s-20 -20 -37 -20l82 -272l82 272c-18 0 -37 0 -37 20s20 20 28 20 h66c7 0 28 0 28 -20'], + 0x1D689: [611,0,350,28,325,'325 33c0 -28 -8 -33 -27 -33h-242c-11 0 -28 0 -28 24c0 7 1 10 6 19l238 528h-192v-61c0 -16 -3 -32 -22 -32s-22 17 -22 32v68c0 29 8 33 28 33h229c12 0 29 0 29 -24c0 -7 -2 -10 -6 -19l-239 -528h204v79c0 16 3 33 22 33s22 -18 22 -33v-86'], + 0x1D68A: [435,6,350,24,345,'345 20c0 -20 -19 -20 -33 -20c-27 0 -62 2 -76 36c-37 -37 -80 -42 -103 -42c-62 0 -109 55 -109 125c0 66 47 99 80 115c43 21 84 25 126 27c0 43 0 78 -26 107c-23 26 -47 26 -63 26c-8 0 -18 0 -26 -1c-16 -2 -16 -11 -16 -15c-1 -38 -24 -38 -28 -38 c-13 0 -28 10 -28 33c0 62 69 62 97 62c91 0 134 -76 134 -152v-234c11 -7 25 -9 43 -9c8 0 28 0 28 -20zM230 126v99c-88 0 -161 -43 -161 -106c0 -45 27 -85 72 -85c0 0 35 0 60 18c29 20 29 48 29 74'], + 0x1D68B: [611,6,350,5,329,'329 213c0 -127 -67 -219 -139 -219c-40 0 -66 30 -83 58c0 -35 -3 -52 -22 -52s-23 17 -23 33v538h-29c-8 0 -28 0 -28 20s20 20 28 20h46c20 0 28 -6 28 -33v-203c7 11 39 56 90 56c71 0 132 -95 132 -218zM284 213c0 97 -39 178 -92 178c-48 0 -85 -64 -85 -126v-82 c0 -54 23 -149 79 -149c52 0 98 76 98 179'], + 0x1D68C: [435,6,350,47,314,'314 103c0 -16 -28 -109 -118 -109c-82 0 -149 97 -149 219c0 84 42 222 158 222c29 0 101 0 101 -62c0 -23 -15 -33 -28 -33c-4 0 -25 0 -28 38c0 7 -1 11 -6 13c-6 1 -21 3 -40 3c-96 0 -113 -126 -113 -181c0 -100 49 -179 111 -179c17 0 51 6 69 71c3 10 8 15 20 15 c5 0 23 0 23 -17'], + 0x1D68D: [611,6,350,21,344,'344 20c0 -20 -19 -20 -27 -20h-47c-24 0 -27 10 -27 58c-14 -24 -44 -64 -90 -64c-70 0 -132 95 -132 218c0 126 66 219 138 219c43 0 72 -35 84 -52v192h-30c-8 0 -27 0 -27 20s19 20 27 20h47c20 0 27 -6 27 -33v-538h30c8 0 27 0 27 -20zM243 186v81 c0 57 -31 124 -79 124c-53 0 -99 -75 -99 -179c0 -97 39 -178 92 -178c56 0 86 91 86 152'], + 0x1D68E: [435,6,350,34,314,'314 103c0 -26 -36 -109 -123 -109c-84 0 -157 95 -157 221c0 122 68 220 146 220c85 0 134 -92 134 -208c0 -29 -15 -29 -28 -29h-207c9 -98 55 -164 114 -164c13 0 59 5 77 65c4 16 8 23 21 23c18 0 23 -14 23 -19zM269 235c-3 70 -17 159 -89 159 c-44 0 -90 -52 -101 -159h190'], + 0x1D68F: [617,0,350,24,295,'295 568c0 -24 -17 -31 -27 -31c-23 0 -29 40 -29 40c-24 0 -72 -4 -72 -90v-62h86c8 0 27 0 27 -20s-19 -20 -27 -20h-86v-345h67c9 0 28 0 28 -20s-19 -20 -28 -20h-179c-8 0 -27 0 -27 20s19 20 27 20h68v345h-71c-8 0 -28 0 -28 20s20 20 29 20h70v66 c0 87 58 126 109 126c9 0 63 0 63 -49'], + 0x1D690: [438,236,350,15,345,'345 394c0 -26 -19 -30 -26 -30c0 0 -21 1 -25 33c-10 -1 -27 -4 -52 -23c20 -45 25 -74 25 -97c0 -85 -51 -154 -113 -154c-25 0 -48 13 -62 28c-4 -11 -5 -17 -5 -42c0 -63 31 -66 41 -66h59c23 0 147 0 147 -138c0 -84 -73 -141 -159 -141c-87 0 -160 58 -160 141 c0 37 16 88 60 123c-12 21 -25 46 -25 78c0 11 4 37 20 73c-22 42 -27 78 -27 98c0 85 51 154 112 154c20 0 44 -8 67 -32c29 34 61 39 74 39c35 0 49 -27 49 -44zM222 277c0 63 -28 116 -68 116c-36 0 -67 -51 -67 -116s30 -116 67 -116c40 0 68 53 68 116zM295 -95 c0 94 -75 100 -139 100c-49 0 -56 0 -72 -15c-29 -27 -30 -68 -30 -85c0 -50 49 -103 121 -103s120 53 120 103'], + 0x1D691: [611,0,350,5,344,'344 20c0 -20 -19 -20 -27 -20h-104c-8 0 -27 0 -27 20s19 20 27 20h30v248c0 64 -6 103 -50 103c-40 0 -86 -49 -86 -154v-197h29c8 0 28 0 28 -20s-20 -20 -28 -20h-103c-8 0 -28 0 -28 20s20 20 28 20h29v531h-29c-8 0 -28 0 -28 20s20 20 28 20h46c20 0 28 -6 28 -33 v-206c12 20 43 59 91 59c55 0 89 -42 89 -138v-253h30c8 0 27 0 27 -20'], + 0x1D692: [601,0,350,52,303,'303 20c0 -20 -19 -20 -27 -20h-195c-8 0 -29 0 -29 20s21 20 29 20h80v345h-75c-9 0 -28 0 -28 20s19 20 28 20h92c20 0 28 -5 28 -32v-353h70c8 0 27 0 27 -20zM206 564c0 -22 -16 -37 -31 -37s-31 15 -31 37s16 37 31 37s31 -15 31 -37'], + 0x1D693: [601,235,350,28,247,'247 -55c0 -74 -27 -118 -34 -128c-35 -52 -63 -52 -89 -52s-96 0 -96 64c0 25 18 34 28 34c23 0 27 -31 27 -53c12 -4 29 -5 43 -5c17 0 37 0 56 36c20 39 20 91 20 109v435h-86c-10 0 -28 0 -28 20s20 20 28 20h103c20 0 28 -5 28 -32v-448zM247 564 c0 -22 -16 -37 -31 -37s-31 15 -31 37s16 37 31 37s31 -15 31 -37'], + 0x1D694: [611,0,350,10,343,'343 20c0 -20 -20 -20 -28 -20h-78c-9 0 -29 0 -29 20s19 20 49 20l-93 183l-56 -77v-106h32c9 0 29 0 29 -20s-20 -20 -29 -20h-102c-8 0 -28 0 -28 20s20 20 28 20h30v531h-30c-8 0 -28 0 -28 20s20 20 28 20h43c20 0 27 -6 27 -33v-372l127 179h-37c-8 0 -28 0 -28 20 s20 20 28 20h102c9 0 28 0 28 -20s-19 -20 -28 -20h-21l-93 -130l110 -215h19c8 0 28 0 28 -20'], + 0x1D695: [611,0,350,39,311,'311 20c0 -20 -19 -20 -27 -20h-217c-8 0 -28 0 -28 20s20 20 28 20h86v531h-86c-8 0 -28 0 -28 20s20 20 28 20h103c20 0 27 -6 27 -33v-538h87c8 0 27 0 27 -20'], + 0x1D696: [431,0,350,1,350,'350 20c0 -20 -20 -20 -28 -20h-51c-8 0 -26 0 -26 20s18 20 29 20v257c0 53 -4 94 -26 94c-33 0 -53 -59 -53 -151v-200c20 0 36 0 36 -20s-17 -20 -26 -20h-51c-8 0 -26 0 -26 20s18 20 29 20v257c0 53 -4 94 -26 94c-33 0 -54 -59 -54 -151v-200c20 0 36 0 36 -20 s-17 -20 -25 -20h-59c-8 0 -28 0 -28 20s18 20 38 20v345c-20 0 -38 0 -38 20s20 20 28 20h21c11 0 27 0 28 -33c6 10 24 39 56 39c33 0 49 -39 53 -54c19 38 39 54 64 54c58 0 61 -107 61 -128v-263c20 0 38 0 38 -20'], + 0x1D697: [431,0,350,5,344,'344 20c0 -20 -19 -20 -27 -20h-104c-8 0 -27 0 -27 20s19 20 27 20h30v248c0 64 -6 103 -50 103c-40 0 -86 -49 -86 -154v-197h29c8 0 28 0 28 -20s-20 -20 -28 -20h-103c-8 0 -28 0 -28 20s20 20 28 20h29v345h-29c-8 0 -28 0 -28 20s20 20 28 20h46 c24 0 28 -10 28 -53c12 20 43 59 91 59c55 0 89 -42 89 -138v-253h30c8 0 27 0 27 -20'], + 0x1D698: [435,6,350,36,314,'314 213c0 -126 -66 -219 -139 -219s-139 93 -139 219c0 125 65 222 139 222c73 0 139 -97 139 -222zM269 220c0 101 -43 174 -94 174c-52 0 -95 -73 -95 -174c0 -102 42 -186 95 -186s94 83 94 186'], + 0x1D699: [431,229,350,5,329,'329 213c0 -127 -67 -219 -139 -219c-40 0 -66 30 -83 58v-241h29c8 0 28 0 28 -20s-20 -20 -28 -20h-103c-8 0 -28 0 -28 20s20 20 28 20h29v574h-29c-8 0 -28 0 -28 20s20 20 28 20h46c24 0 28 -11 28 -50c7 11 39 56 90 56c71 0 132 -95 132 -218zM284 213 c0 97 -39 178 -92 178c-48 0 -85 -64 -85 -126v-82c0 -54 23 -149 79 -149c52 0 98 76 98 179'], + 0x1D69A: [431,229,350,24,362,'362 -209c0 -20 -20 -20 -29 -20h-108c-9 0 -29 0 -29 20s20 20 29 20h32v251c-16 -24 -44 -68 -96 -68c-74 0 -137 96 -137 218c0 128 70 219 144 219c48 0 75 -41 89 -62v30c0 16 3 32 22 32s22 -17 22 -32v-588h32c9 0 29 0 29 -20zM257 187v47c0 67 -28 157 -84 157 c-57 0 -105 -78 -105 -179c0 -97 42 -178 98 -178c59 0 91 93 91 153'], + 0x1D69B: [431,0,350,19,329,'329 380c0 -19 -13 -31 -26 -31c-5 0 -25 3 -27 42h-11c-62 0 -119 -78 -119 -206v-145h74c8 0 27 0 27 -20s-19 -20 -27 -20h-173c-8 0 -28 0 -28 20s20 20 28 20h54v345h-54c-8 0 -28 0 -28 20s20 20 28 20h71c20 0 28 -5 28 -32v-51c32 58 72 89 119 89 c33 0 64 -10 64 -51'], + 0x1D69C: [435,6,350,45,309,'309 118c0 -10 -4 -124 -129 -124c-22 0 -59 3 -91 42c-10 -42 -17 -42 -25 -42c-16 0 -19 16 -19 29v107c0 16 3 30 22 30c17 0 20 -11 23 -26c15 -74 45 -100 90 -100c69 0 89 44 89 84c0 61 -55 80 -84 87c-57 14 -78 19 -100 38c-22 17 -40 42 -40 81 c0 33 19 111 129 111c14 0 46 0 75 -25c0 0 4 25 21 25c15 0 19 -17 19 -30v-78c0 -17 -4 -30 -23 -30c-8 0 -21 2 -22 21c-1 28 -4 76 -71 76c-70 0 -89 -41 -89 -70c0 -46 40 -63 105 -79c32 -7 120 -26 120 -127'], + 0x1D69D: [552,6,350,12,303,'303 117c0 -100 -71 -123 -107 -123c-48 0 -95 30 -95 121v270h-61c-8 0 -28 0 -28 20s21 20 29 20h60v95c0 15 4 32 23 32c18 0 22 -17 22 -32v-95h114c8 0 27 0 27 -20s-19 -20 -27 -20h-114v-265c0 -27 0 -86 55 -86c17 0 56 14 57 82c0 18 4 35 22 35 c19 0 23 -17 23 -34'], + 0x1D69E: [425,6,350,5,344,'344 20c0 -20 -19 -20 -27 -20h-47c-10 0 -28 0 -28 38c-15 -18 -41 -44 -84 -44c-51 0 -96 24 -96 114v277h-29c-8 0 -28 0 -28 20s20 20 28 20h46c20 0 28 -5 28 -32v-280c0 -35 0 -79 56 -79c33 0 80 27 80 117v234h-30c-8 0 -27 0 -27 20s19 20 27 20h47 c20 0 27 -5 27 -32v-353h30c8 0 27 0 27 -20'], + 0x1D69F: [425,5,350,11,339,'339 405c0 -20 -21 -20 -29 -20h-18l-81 -355c-7 -35 -23 -35 -36 -35s-29 0 -37 35l-80 355h-19c-8 0 -28 0 -28 20s20 20 28 20h78c8 0 28 0 28 -20s-20 -20 -28 -20h-23l81 -352l80 352h-22c-8 0 -28 0 -28 20s20 20 28 20h77c8 0 29 0 29 -20'], + 0x1D6A0: [425,5,350,5,344,'344 405c0 -20 -19 -20 -34 -20l-42 -353c-5 -37 -19 -37 -31 -37c-26 0 -28 9 -42 78l-19 123l-20 -122c-14 -71 -16 -79 -43 -79c-16 0 -27 3 -31 38l-43 352c-14 0 -34 0 -34 20s20 20 29 20h78c9 0 29 0 29 -20s-20 -20 -29 -20h-35l39 -335l22 120 c12 65 15 78 38 78c22 0 25 -13 37 -79l22 -119l38 335h-36c-8 0 -28 0 -28 20s20 20 28 20h79c8 0 28 0 28 -20'], + 0x1D6A1: [425,0,350,14,335,'335 20c0 -20 -19 -20 -28 -20h-77c-9 0 -28 0 -28 20s19 20 43 20l-72 150l-70 -150c26 0 44 0 44 -20s-19 -20 -28 -20h-77c-8 0 -28 0 -28 20s20 20 28 20h24l93 179l-89 166h-24c-9 0 -28 0 -28 20s19 20 28 20h78c8 0 27 0 27 -20s-19 -20 -42 -20l64 -126l62 126 c-24 0 -43 0 -43 20s20 20 28 20h78c8 0 27 0 27 -20s-19 -20 -27 -20h-25l-86 -166l96 -179h24c9 0 28 0 28 -20'], + 0x1D6A2: [425,235,350,12,339,'339 405c0 -20 -21 -20 -29 -20h-18l-110 -479c-7 -31 -36 -141 -101 -141c-32 0 -57 34 -57 70c0 20 13 32 28 32c13 0 27 -11 27 -31c0 0 -3 -10 -10 -16c0 0 1 -17 13 -17c29 0 51 53 57 82l24 105l-103 395h-19c-8 0 -29 0 -29 20s21 20 29 20h77c8 0 28 0 28 -20 s-20 -20 -28 -20h-21l84 -336l74 336h-22c-8 0 -28 0 -28 20s20 20 28 20h77c8 0 29 0 29 -20'], + 0x1D6A3: [425,0,350,17,321,'321 33c0 -28 -8 -33 -28 -33h-247c-12 0 -29 0 -29 24c0 7 2 11 5 16l243 345h-192v-34c0 -16 -3 -32 -22 -32s-22 17 -22 32v42c0 28 8 32 28 32h234c11 0 28 0 28 -24c0 -6 -2 -11 -5 -16l-243 -345h205v45c0 16 4 33 23 33c18 0 22 -18 22 -33v-52'], + 0x1D7F6: [623,12,350,30,320,'320 305c0 -184 -71 -317 -145 -317s-145 131 -145 318c0 184 70 317 145 317c74 0 145 -131 145 -318zM275 316c0 159 -47 267 -100 267s-100 -108 -100 -267c0 -158 43 -288 100 -288s100 131 100 288'], + 0x1D7F7: [623,0,350,69,298,'298 20c0 -20 -20 -20 -28 -20h-170c-8 0 -28 0 -28 20s20 20 28 20h63v463c-3 -2 -47 -46 -72 -46c-13 0 -22 6 -22 20c0 18 16 20 24 20c38 5 61 59 74 104c4 13 9 22 20 22c17 0 20 -20 20 -32v-551h63c8 0 28 0 28 -20'], + 0x1D7F8: [623,0,350,31,319,'319 33c0 -13 -3 -28 -15 -33h-245c-8 0 -28 0 -28 20c0 0 1 4 2 7l160 205c40 51 81 117 81 201c0 94 -50 150 -113 150c-40 0 -73 -36 -85 -107c5 -6 11 -13 11 -23c0 -24 -17 -33 -28 -33c-4 0 -28 0 -28 37c0 83 56 166 135 166c85 0 153 -76 153 -190 c0 -105 -70 -194 -79 -206l-144 -187h178c0 31 4 47 23 47c18 0 22 -18 22 -33v-21'], + 0x1D7F9: [623,12,350,25,325,'325 169c0 -95 -63 -181 -148 -181c-83 0 -152 59 -152 146c0 27 16 35 28 35c14 0 28 -13 28 -31c0 -10 -6 -22 -6 -22c0 -23 28 -88 102 -88c65 0 103 70 103 142c0 58 -29 141 -106 141h-32c-10 0 -26 0 -26 20c0 11 7 20 17 20h12c106 0 115 105 115 137 c0 51 -32 95 -83 95c-12 0 -69 2 -88 -53c6 -8 12 -14 12 -25c0 -23 -17 -32 -28 -32c-9 0 -28 6 -28 34c0 74 57 116 132 116c73 0 128 -60 128 -134c0 -51 -16 -108 -74 -152c73 -39 94 -118 94 -168'], + 0x1D7FA: [625,0,350,15,334,'334 194c0 -21 -19 -21 -27 -21h-53v-133h42c8 0 28 0 28 -20s-20 -20 -28 -20h-123c-8 0 -28 0 -28 20s20 20 28 20h42v133h-172c-16 0 -28 1 -28 31c0 6 1 10 2 14l163 387c9 19 12 20 29 20h16c20 0 29 -3 29 -32v-379h53c8 0 27 0 27 -20zM215 214v371h-2l-157 -371 h159'], + 0x1D7FB: [611,12,350,31,319,'319 186c0 -112 -71 -198 -153 -198c-75 0 -135 67 -135 151c0 34 23 35 28 35c10 0 28 -9 28 -32c0 -10 -6 -17 -11 -26c16 -62 53 -88 90 -88c61 0 108 71 108 158c0 77 -31 157 -89 157c-36 0 -67 -17 -88 -53c-6 -10 -9 -15 -20 -15c-17 0 -20 18 -20 30v276 c0 26 8 30 27 30h183c8 0 27 0 27 -20s-19 -20 -27 -20h-166v-218c30 24 61 30 84 30c79 0 134 -96 134 -197'], + 0x1D7FC: [623,12,350,32,317,'317 189c0 -119 -68 -201 -141 -201c-65 0 -144 69 -144 311c0 203 94 324 184 324c59 0 90 -41 90 -93c0 -20 -13 -34 -28 -34s-28 15 -28 32c0 6 4 13 11 26c-16 26 -32 29 -46 29c-70 0 -130 -105 -138 -261c31 50 71 69 107 69c70 0 133 -85 133 -202zM273 189 c0 86 -37 161 -94 161c-61 0 -96 -67 -96 -130c0 -58 20 -192 93 -192c53 0 97 67 97 161'], + 0x1D7FD: [626,12,350,25,325,'325 591c0 0 -1 -3 -2 -5c-107 -160 -166 -355 -166 -562c0 -12 -3 -36 -22 -36s-22 25 -22 36c0 66 9 308 156 547h-199c0 -31 -4 -47 -23 -47c-18 0 -22 18 -22 33v37c0 16 4 32 23 32c16 0 20 -15 20 -15h229c8 0 28 0 28 -20'], + 0x1D7FE: [623,12,350,25,325,'325 169c0 -99 -67 -181 -150 -181s-150 83 -150 181c0 55 19 120 109 162c-73 32 -99 80 -99 137c0 82 61 155 140 155s140 -73 140 -155c0 -55 -24 -104 -99 -137c90 -42 109 -108 109 -162zM270 467c0 60 -38 116 -95 116s-95 -56 -95 -116c0 -59 36 -113 95 -113 c58 0 95 54 95 113zM280 170c0 72 -43 138 -105 138c-61 0 -105 -62 -105 -139c0 -72 42 -141 105 -141c62 0 105 66 105 142'], + 0x1D7FF: [623,12,350,32,317,'317 311c0 -195 -83 -323 -174 -323c-71 0 -100 44 -100 93c0 20 13 34 29 34c15 0 27 -15 27 -32c0 -6 -3 -11 -11 -26c19 -26 38 -29 55 -29c67 0 122 104 130 261c-29 -48 -69 -69 -107 -69c-71 0 -134 84 -134 202c0 119 71 201 145 201c59 0 140 -60 140 -312z M267 392c0 121 -49 191 -90 191c-54 0 -100 -66 -100 -161c0 -86 36 -161 94 -161s96 64 96 131'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Monospace/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..072f2cf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js @@ -0,0 +1,1471 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'GyrePagellaMathJax_NonUnicode', + id: 'GYREPAGELLANONUNICODE', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xE000: [728,12,876,23,869,'869 17l-96 -29l-265 252v-138c0 -63 3 -70 37 -72l44 -3v-30l-121 3l-127 -3v30l46 3c34 2 37 9 37 72v518c0 30 -7 41 -25 41h-43v-21l-23 -6c-24 21 -46 28 -73 28c-57 0 -70 -27 -70 -143v-85c44 0 87 1 131 4l-7 -53h-124v-283c0 -63 3 -70 37 -72l46 -3v-30l-125 3 l-125 -3v30l46 3c34 2 37 9 37 72v283l-69 -4v22l69 31v42c0 66 13 111 42 144l58 66c23 26 57 42 88 42c15 0 42 -3 62 -11v-26c70 11 102 19 143 35l9 -8v-457l73 59c37 30 86 75 150 139h100v-30c-35 0 -61 -11 -108 -47l-129 -101c17 -20 29 -33 64 -68l126 -125 c32 -31 61 -48 85 -48v-23'], + 0xE001: [-77,271,333,69,211,'211 -88c-27 -70 -48 -103 -95 -164l-35 -19l-12 9c38 62 47 96 53 160c42 12 49 15 79 25'], + 0xE002: [703,-522,333,79,254,'254 644c0 -21 -20 -42 -51 -62c-32 -22 -38 -24 -38 -31c0 0 5 -6 17 -17l-25 -12c-8 3 -27 20 -27 33c0 14 7 24 35 47c25 19 32 27 32 37c0 13 -19 24 -45 24c-16 0 -27 -4 -30 -9l-12 -21l-31 7l24 49c28 9 45 14 63 14c51 0 88 -26 88 -59'], + 0xE003: [668,19,747,31,718,'718 324c0 -190 -154 -343 -344 -343s-343 153 -343 343s153 344 343 344s344 -154 344 -344zM678 324c0 168 -136 304 -304 304s-303 -136 -303 -304s135 -303 303 -303s304 135 304 303zM571 322c0 -118 -96 -198 -238 -198c-50 0 -95 10 -137 30l-19 31l10 10 c37 -22 78 -33 123 -33c111 0 185 68 185 171c0 95 -64 159 -162 159c-55 0 -113 -18 -113 -38v-43h-27c0 30 -2 50 -12 89c52 16 97 23 141 23c53 0 104 -11 144 -33c69 -37 105 -94 105 -168'], + 0xE004: [692,0,580,40,540,'540 401c-73 12 -148 18 -222 20c1 -141 8 -281 20 -421h-96c12 140 19 280 20 421c-74 -2 -149 -8 -222 -20v96c73 -12 147 -18 222 -20c-2 72 -8 144 -20 215h96c-12 -71 -18 -143 -20 -215c75 2 149 8 222 20v-96'], + 0xE005: [277,-219,750,0,750,'750 219h-750v58h750v-58'], + 0xE006: [277,-219,667,0,667,'667 219h-667v58h667v-58'], + 0xE007: [749,57,1000,21,978,'978 709c8 -409 -284 -766 -678 -766c-94 0 -188 14 -278 40c-8 409 284 766 678 766c94 0 188 -14 278 -40zM278 205v322c-122 -121 -200 -294 -211 -482zM578 433v259c-96 -20 -182 -64 -256 -125v-328zM906 682c-67 15 -137 23 -206 23c-27 0 -53 -2 -78 -5v-234z M742 186h-416l-232 -176c67 -15 137 -23 206 -23c176 0 330 77 442 199zM874 393h-276l-214 -163h396c38 49 69 104 94 163zM933 647l-277 -210h235c23 66 37 137 42 210'], + 0xE008: [683,-502,380,-57,307,'307 502h-40l-135 98c-29 21 -39 34 -39 50c0 18 14 33 31 33c16 0 38 -13 55 -33zM157 502h-40l-135 98c-29 21 -39 34 -39 50c0 18 14 33 31 33c16 0 38 -13 55 -33'], + 0xE009: [-93,193,250,75,175,'175 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xE00A: [-116,169,333,11,323,'323 -169h-312v53h312v-53'], + 0xE00B: [80,79,606,51,555,'555 53c-43 -78 -87 -113 -138 -113c-26 0 -54 9 -130 41c-63 27 -72 30 -96 30c-40 0 -66 -22 -106 -90l-34 27c49 87 88 120 139 120c30 0 57 -8 128 -39c61 -27 79 -33 98 -33c37 0 74 29 105 84'], + 0xE00C: [709,20,1102,40,1062,'519 230c0 -145 -126 -250 -300 -250c-58 0 -116 13 -173 38c6 45 8 67 8 113c0 6 0 22 -1 40h32l8 -67c5 -41 83 -80 163 -80c104 0 179 65 179 155c0 38 -12 66 -38 88s-61 34 -138 45c-97 13 -143 29 -177 60c-29 27 -42 63 -42 112c0 131 108 225 257 225 c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-32l-6 57c-3 29 -14 44 -47 61c-27 15 -64 23 -103 23c-88 0 -151 -60 -151 -144c0 -77 43 -110 165 -126c112 -15 154 -28 189 -61c28 -26 41 -59 41 -106zM1062 230c0 -145 -126 -250 -300 -250c-58 0 -116 13 -173 38 c6 45 8 67 8 113c0 6 0 22 -1 40h32l8 -67c5 -41 83 -80 163 -80c104 0 179 65 179 155c0 38 -12 66 -38 88s-61 34 -138 45c-97 13 -143 29 -177 60c-29 27 -42 63 -42 112c0 131 108 225 257 225c55 0 100 -10 180 -42c-10 -54 -14 -88 -14 -141h-32l-6 57 c-3 29 -14 44 -47 61c-27 15 -64 23 -103 23c-88 0 -151 -60 -151 -144c0 -77 43 -110 165 -126c112 -15 154 -28 189 -61c28 -26 41 -59 41 -106'], + 0xE00D: [321,0,361,7,323,'323 167c0 -96 -69 -167 -162 -167c-89 0 -154 65 -154 154c0 97 69 167 164 167c87 0 152 -66 152 -154zM251 165c0 82 -32 133 -83 133c-55 0 -89 -54 -89 -140s30 -135 83 -135c54 0 89 56 89 142'], + 0xE00E: [480,-34,500,16,484,'484 300l-179 -80l98 -170l-22 -16l-131 146l-131 -146l-22 16l98 170l-179 80l8 26l192 -41l20 195h28l20 -195l192 41'], + 0xE00F: [854,165,786,22,764,'764 367c0 -205 -148 -364 -349 -385v-147h-44v145c-203 0 -349 151 -349 361s138 354 349 367v146h44v-145c214 -5 349 -136 349 -342zM657 337c0 208 -101 330 -272 330c-164 0 -256 -104 -256 -289c0 -214 113 -356 281 -356c155 0 247 117 247 315'], + 0xE010: [614,165,546,32,514,'514 237c0 -136 -91 -237 -223 -254v-148h-36v145c-134 0 -223 96 -223 237s90 240 223 251v146h36v-145c131 -6 223 -101 223 -232zM421 200c0 136 -68 236 -160 236c-88 0 -136 -65 -136 -185c0 -142 66 -238 164 -238c81 0 132 72 132 187'], + 0xE011: [700,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275'], + 0xE012: [700,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296'], + 0xE013: [469,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79'], + 0xE014: [469,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79'], + 0xE015: [888,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM587 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE016: [888,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM639 861c0 -15 -9 -22 -50 -39l-183 -73h-50l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27'], + 0xE017: [677,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM425 643c0 -18 -7 -26 -43 -47l-157 -90h-44l151 138c24 22 43 33 59 33c19 0 34 -15 34 -34'], + 0xE018: [677,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM466 643c0 -18 -8 -26 -47 -47l-169 -90h-46l161 138c26 22 47 33 64 33c20 0 37 -15 37 -34'], + 0xE019: [884,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM603 884c-7 -84 -71 -129 -167 -129s-160 45 -165 129h34c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE01A: [884,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM656 884c-7 -84 -76 -129 -179 -129c-102 0 -172 45 -177 129h37c5 -47 62 -80 140 -80c80 0 137 33 141 80h38'], + 0xE01B: [671,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM432 671c-2 -44 -9 -66 -26 -93c-26 -42 -72 -65 -128 -65c-59 0 -106 25 -132 71c-14 26 -19 46 -22 87h33c3 -57 54 -98 121 -98 c68 0 118 41 121 98h33'], + 0xE01C: [671,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM473 671c-3 -44 -10 -66 -28 -93c-28 -42 -78 -65 -137 -65c-63 0 -114 25 -142 71c-15 26 -21 46 -23 87h35 c3 -57 57 -98 130 -98c72 0 126 41 130 98h35'], + 0xE01D: [1043,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM609 1016c0 -15 -8 -22 -46 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 35 -12 35 -27zM604 884c-6 -84 -71 -129 -167 -129s-160 45 -165 129h34c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE01E: [1043,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM663 1016c0 -15 -9 -22 -50 -39l-182 -73h-51l175 113c27 17 50 25 70 26c21 0 38 -12 38 -27zM658 884c-7 -84 -76 -129 -179 -129s-172 45 -178 129h37c5 -47 62 -80 141 -80s137 33 140 80h39'], + 0xE01F: [800,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM450 773c0 -15 -8 -22 -47 -39l-170 -73h-46l162 113c25 17 47 25 65 26c20 0 36 -12 36 -27zM445 641c-7 -84 -71 -129 -167 -129 s-160 45 -166 129h35c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE020: [800,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM493 773c0 -15 -10 -22 -51 -39l-182 -73h-50l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27zM487 641 c-7 -84 -76 -129 -179 -129s-172 45 -178 129h37c5 -47 62 -80 141 -80s137 33 140 80h39'], + 0xE021: [884,193,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM603 884c-7 -84 -71 -129 -167 -129s-160 45 -165 129h34c5 -47 58 -80 131 -80c74 0 128 33 131 80h36zM489 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE022: [884,193,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM656 884c-7 -84 -76 -129 -179 -129c-102 0 -172 45 -177 129h37c5 -47 62 -80 140 -80c80 0 137 33 141 80h38zM534 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE023: [671,193,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM432 671c-2 -44 -9 -66 -26 -93c-26 -42 -72 -65 -128 -65c-59 0 -106 25 -132 71c-14 26 -19 46 -22 87h33c3 -57 54 -98 121 -98 c68 0 118 41 121 98h33zM333 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE024: [671,193,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM473 671c-3 -44 -10 -66 -28 -93c-28 -42 -78 -65 -137 -65c-63 0 -114 25 -142 71c-15 26 -21 46 -23 87h35 c3 -57 57 -98 130 -98c72 0 126 41 130 98h35zM366 -143c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE025: [1043,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM530 904h-47l-170 73c-38 17 -47 24 -47 39s16 27 36 27c19 -1 40 -9 66 -26zM604 884c-6 -84 -71 -129 -167 -129s-160 45 -165 129h34c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE026: [1043,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM578 904h-50l-183 73c-41 17 -50 24 -50 39s17 27 39 27c19 -1 43 -9 70 -26zM658 884c-7 -84 -76 -129 -179 -129s-172 45 -178 129h37c5 -47 62 -80 141 -80s137 33 140 80h39'], + 0xE027: [800,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM371 661h-47l-170 73c-38 17 -47 24 -47 39s16 27 36 27c19 -1 40 -9 65 -26zM445 641c-7 -84 -71 -129 -167 -129s-160 45 -166 129h35 c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE028: [800,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM407 661h-50l-183 73c-41 17 -50 24 -50 39s18 27 39 27c20 -1 43 -9 70 -26zM487 641c-7 -84 -76 -129 -179 -129 s-172 45 -178 129h37c5 -47 62 -80 141 -80s137 33 140 80h39'], + 0xE029: [1045,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM533 986c0 -21 -22 -42 -55 -62c-35 -22 -42 -24 -42 -31c0 0 6 -6 19 -17l-28 -12c-8 3 -29 20 -29 33c0 14 8 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-17 0 -29 -4 -33 -9l-13 -21l-34 7l27 49c30 9 49 14 68 14 c56 0 96 -26 96 -59zM604 884c-6 -84 -71 -129 -167 -129s-160 45 -165 129h34c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE02A: [1045,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM582 986c0 -21 -24 -42 -60 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-9 3 -31 20 -31 33c0 14 8 24 40 47c30 19 38 27 38 37c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 53 14 74 14 c59 0 103 -26 103 -59zM658 884c-7 -84 -76 -129 -179 -129s-172 45 -178 129h37c5 -47 62 -80 141 -80s137 33 140 80h39'], + 0xE02B: [802,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM374 743c0 -21 -22 -42 -56 -62c-34 -22 -41 -24 -41 -31c0 0 5 -6 19 -17l-28 -12c-8 3 -29 20 -29 33c0 14 8 24 38 47 c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 50 14 69 14c56 0 96 -26 96 -59zM445 641c-7 -84 -71 -129 -167 -129s-160 45 -166 129h35c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE02C: [802,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM411 743c0 -21 -24 -42 -60 -62c-37 -22 -44 -24 -44 -31c0 0 5 -6 20 -17l-30 -12c-9 3 -31 20 -31 33c0 14 8 24 41 47 c29 19 37 27 37 37c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 53 14 74 14c59 0 103 -26 103 -59zM487 641c-7 -84 -76 -129 -179 -129s-172 45 -178 129h37c5 -47 62 -80 141 -80s137 33 140 80h39'], + 0xE02D: [1015,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM618 1015c-4 -58 -56 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-31c15 65 55 100 115 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31zM604 884c-6 -84 -71 -129 -167 -129 s-160 45 -165 129h34c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE02E: [1015,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM673 1015c-5 -58 -61 -105 -128 -105c-25 0 -44 4 -79 19c-44 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 59 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 51 13 69 50h34zM658 884c-7 -84 -76 -129 -179 -129 s-172 45 -178 129h37c5 -47 62 -80 141 -80s137 33 140 80h39'], + 0xE02F: [772,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM459 772c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100 c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32zM445 641c-7 -84 -71 -129 -167 -129s-160 45 -166 129h35c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE030: [772,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM502 772c-5 -58 -61 -105 -127 -105c-26 0 -45 4 -80 19c-43 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 60 100 124 100 c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 52 13 69 50h34zM487 641c-7 -84 -76 -129 -179 -129s-172 45 -178 129h37c5 -47 62 -80 141 -80s137 33 140 80h39'], + 0xE031: [887,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM620 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE032: [887,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM675 752h-44l-154 84l-153 -84h-43l157 135h79'], + 0xE033: [676,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM448 509h-38l-132 103l-132 -103h-38l136 167h68'], + 0xE034: [676,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM490 509h-41l-141 103l-142 -103h-41l147 167h72'], + 0xE035: [1046,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM566 1019c0 -15 -9 -22 -47 -39l-170 -73h-47l163 113c25 17 46 25 65 26c20 0 36 -12 36 -27zM621 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE036: [1046,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM617 1019c0 -15 -10 -22 -51 -39l-182 -73h-50l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27zM676 752h-44l-153 84l-154 -84h-43l157 135h79'], + 0xE037: [803,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM407 776c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27zM462 509h-41l-143 84l-143 -84h-40 l146 135h74'], + 0xE038: [803,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM446 776c0 -15 -9 -22 -50 -39l-183 -73h-50l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27zM506 509h-45l-153 84l-153 -84h-44 l157 135h80'], + 0xE039: [887,193,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM620 752h-41l-143 84l-143 -84h-40l146 135h74zM489 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE03A: [887,193,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM675 752h-44l-154 84l-153 -84h-43l157 135h79zM534 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE03B: [676,193,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM448 509h-38l-132 103l-132 -103h-38l136 167h68zM333 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE03C: [676,193,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM490 509h-41l-141 103l-142 -103h-41l147 167h72zM366 -143c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50 c34 0 57 -21 57 -50'], + 0xE03D: [1046,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM574 907h-47l-170 73c-39 17 -47 24 -47 39s16 27 36 27c18 -1 40 -9 65 -26zM621 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE03E: [1046,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM625 907h-50l-183 73c-41 17 -50 24 -50 39s17 27 38 27c20 -1 44 -9 71 -26zM676 752h-44l-153 84l-154 -84h-43l157 135h79'], + 0xE03F: [803,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM414 664h-46l-171 73c-38 17 -46 24 -46 39s16 27 36 27c18 -1 40 -9 65 -26zM462 509h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE040: [803,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM454 664h-50l-183 73c-41 17 -50 24 -50 39s17 27 39 27c19 -1 43 -9 70 -26zM506 509h-45l-153 84l-153 -84h-44l157 135h80'], + 0xE041: [1088,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM621 1029c0 -21 -21 -42 -55 -62c-35 -22 -42 -24 -42 -31c0 0 6 -6 19 -17l-27 -12c-9 3 -30 20 -30 33c0 14 8 24 38 47c28 19 35 27 35 37c0 13 -20 24 -49 24c-17 0 -29 -4 -32 -9l-13 -21l-34 7l26 49c30 9 49 14 69 14 c55 0 95 -26 95 -59zM621 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE042: [1088,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM676 1029c0 -21 -23 -42 -59 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-9 3 -32 20 -32 33c0 14 8 24 41 47c29 19 38 27 38 37c0 13 -23 24 -53 24c-19 0 -32 -4 -35 -9l-14 -21l-36 7l28 49c32 9 52 14 73 14 c60 0 103 -26 103 -59zM676 752h-44l-153 84l-154 -84h-43l157 135h79'], + 0xE043: [845,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM462 786c0 -21 -21 -42 -55 -62c-35 -22 -42 -24 -42 -31c0 0 6 -6 19 -17l-27 -12c-9 3 -30 20 -30 33c0 14 8 24 38 47 c28 19 35 27 35 37c0 13 -20 24 -49 24c-17 0 -29 -4 -33 -9l-13 -21l-33 7l26 49c30 9 49 14 68 14c56 0 96 -26 96 -59zM462 509h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE044: [845,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM506 786c0 -21 -24 -42 -60 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-9 3 -32 20 -32 33c0 14 9 24 41 47 c30 19 38 27 38 37c0 13 -22 24 -53 24c-19 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 53 14 74 14c59 0 103 -26 103 -59zM506 509h-45l-153 84l-153 -84h-44l157 135h80'], + 0xE045: [1022,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM618 1022c-4 -58 -56 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-31c15 65 55 100 115 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31zM621 752h-41l-143 84l-143 -84h-40 l146 135h74'], + 0xE046: [1022,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM673 1022c-5 -58 -61 -105 -128 -105c-25 0 -44 4 -79 19c-44 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 59 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 51 13 69 50h34zM676 752h-44l-153 84l-154 -84h-43 l157 135h79'], + 0xE047: [779,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM459 779c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100 c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32zM462 509h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE048: [779,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM502 779c-5 -58 -61 -105 -127 -105c-26 0 -45 4 -80 19c-43 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 60 100 124 100 c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 52 13 69 50h34zM506 509h-45l-153 84l-153 -84h-44l157 135h80'], + 0xE049: [677,-506,383,95,339,'339 643c0 -18 -7 -26 -43 -47l-157 -90h-44l150 138c24 22 44 33 60 33c19 0 34 -15 34 -34'], + 0xE04A: [677,-506,430,111,373,'373 643c0 -18 -8 -26 -46 -47l-169 -90h-47l162 138c25 22 47 33 64 33c20 0 36 -15 36 -34'], + 0xE04B: [869,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM384 819c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50zM601 819c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50'], + 0xE04C: [869,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM421 819c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50zM654 819c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE04D: [642,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM224 592c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50zM441 592c0 -30 -22 -50 -55 -50s-54 20 -54 50 s21 50 55 50c32 0 54 -21 54 -50'], + 0xE04E: [642,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM249 592c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50zM482 592c0 -30 -23 -50 -58 -50s-59 20 -59 50 s24 50 60 50c34 0 57 -21 57 -50'], + 0xE04F: [700,193,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM489 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE050: [700,193,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM534 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE051: [469,193,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM333 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE052: [469,193,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM366 -143c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE053: [692,3,1049,-1,1000,'1000 164c-11 -52 -18 -106 -18 -164l-183 -3l-269 3c-25 0 -50 -1 -75 -3v23l30 16c21 11 29 32 29 84v122l-134 3l-132 -3l-70 -114c-26 -43 -31 -54 -31 -69c0 -16 20 -26 58 -29l39 -3v-30c-36 2 -71 3 -106 3l-139 -3v30l37 5c15 2 36 21 57 55l315 512 c13 21 21 39 21 47c0 7 -15 10 -59 13l-48 3v30l280 -3l246 3l134 -3c-12 -44 -17 -92 -17 -152h-38v65c0 22 -4 27 -30 34c-35 8 -96 14 -158 14c-75 0 -94 -1 -127 -8v-267c48 -3 113 -4 172 -4c48 0 75 4 78 38l6 52h33c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-33 l-6 59c-3 33 -30 37 -79 37l-171 -3v-280c31 -6 51 -8 108 -8c98 0 177 5 200 12c21 6 33 51 42 113h38zM514 283v372h-14l-226 -372h240'], + 0xE054: [692,3,1144,8,1082,'1082 164c-11 -52 -18 -106 -18 -164l-197 -3l-289 3c-27 0 -54 -1 -81 -3v23l33 16c22 11 31 32 31 84v122l-144 3l-142 -3l-75 -114c-28 -43 -33 -54 -33 -69c0 -16 21 -26 62 -29l43 -3v-30l-115 3l-149 -3v30l40 5c16 2 39 21 61 55l338 512c14 21 22 39 22 47 c0 7 -15 10 -63 13l-51 3v30l300 -3l265 3l144 -3c-13 -44 -19 -92 -19 -152h-41v65c0 22 -4 27 -32 34c-37 8 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267c51 -3 122 -4 185 -4c51 0 80 4 84 38l6 52h35c-2 -39 -4 -77 -4 -116c0 -37 2 -74 4 -111h-35l-6 59 c-4 33 -33 37 -85 37l-184 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c22 6 35 51 44 113h41zM561 283v372h-15l-243 -372h258'], + 0xE055: [469,20,846,43,808,'808 278c0 -12 -1 -20 -2 -34c-76 -11 -122 -14 -198 -14h-159c2 -58 9 -86 30 -119c30 -50 90 -78 162 -78c48 0 77 10 143 47l15 -10l-22 -34c-4 -6 -26 -18 -54 -29c-45 -18 -88 -27 -129 -27c-61 0 -120 20 -161 53c-18 15 -30 27 -48 56l-134 -96 c-11 -8 -34 -13 -60 -13c-91 0 -148 50 -148 127c0 44 15 77 44 98c33 22 124 45 215 54l61 6c-3 58 -9 82 -29 109c-20 26 -56 42 -94 42c-37 0 -86 -13 -99 -27c-8 -8 -20 -32 -27 -58l-29 6v62l107 53c24 12 47 17 77 17c71 0 117 -21 160 -71c70 54 113 71 175 71 c76 0 143 -33 178 -87c16 -26 26 -64 26 -104zM363 117v116c-88 -9 -99 -11 -146 -23c-36 -10 -51 -17 -61 -29c-12 -16 -20 -37 -20 -59c0 -48 34 -77 92 -77c51 0 87 19 135 72zM717 267c0 52 -6 78 -25 110c-24 41 -53 59 -94 59c-45 0 -89 -20 -114 -51 c-22 -28 -30 -58 -33 -115c59 -5 88 -7 139 -6'], + 0xE056: [469,20,927,55,876,'876 278c0 -12 -1 -20 -2 -34c-81 -11 -131 -14 -212 -14h-170c2 -58 9 -86 31 -119c33 -50 97 -78 174 -78c52 0 83 10 154 47l16 -10l-23 -34c-5 -6 -28 -18 -59 -29c-48 -18 -95 -27 -138 -27c-65 0 -129 20 -173 53c-19 15 -32 27 -52 56l-143 -96 c-12 -8 -37 -13 -65 -13c-97 0 -159 50 -159 127c0 44 16 77 48 98c35 22 132 45 231 54l65 6c-3 58 -9 82 -32 109c-21 26 -59 42 -100 42c-40 0 -93 -13 -107 -27c-8 -8 -21 -32 -29 -58l-30 6v62l114 53c26 12 51 17 83 17c77 0 126 -21 171 -71c76 54 122 71 189 71 c82 0 153 -33 190 -87c18 -26 28 -64 28 -104zM399 117v116c-95 -9 -106 -11 -157 -23c-38 -10 -55 -17 -65 -29c-13 -16 -21 -37 -21 -59c0 -48 36 -77 98 -77c55 0 94 19 145 72zM779 267c0 52 -7 78 -27 110c-25 41 -57 59 -101 59c-48 0 -95 -20 -122 -51 c-23 -28 -33 -58 -35 -115c63 -5 93 -7 148 -6'], + 0xE057: [888,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM552 749h-47l-170 73c-38 17 -47 24 -47 39s16 27 36 27c18 -1 40 -9 65 -26'], + 0xE058: [888,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM601 749h-50l-182 73c-41 17 -51 24 -51 39s18 27 39 27c20 -1 43 -9 70 -26'], + 0xE059: [677,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM375 506h-43l-157 90c-36 21 -44 29 -44 47c0 19 15 34 34 34c16 0 36 -11 60 -33'], + 0xE05A: [677,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM412 506h-47l-168 90c-39 21 -47 29 -47 47c0 19 16 34 36 34c18 0 39 -11 64 -33'], + 0xE05B: [946,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM532 887c0 -21 -22 -42 -55 -62c-35 -22 -42 -24 -42 -31c0 0 6 -6 19 -17l-28 -12c-8 3 -29 20 -29 33c0 14 8 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l27 49c30 9 49 14 68 14 c56 0 96 -26 96 -59'], + 0xE05C: [946,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM580 887c0 -21 -23 -42 -59 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-9 3 -32 20 -32 33c0 14 9 24 41 47c30 19 38 27 38 37c0 13 -22 24 -53 24c-19 0 -32 -4 -35 -9l-14 -21l-36 7l28 49c33 9 52 14 73 14 c60 0 103 -26 103 -59'], + 0xE05D: [703,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM373 644c0 -21 -22 -42 -56 -62c-35 -22 -41 -24 -41 -31c0 0 5 -6 18 -17l-27 -12c-8 3 -29 20 -29 33c0 14 7 24 38 47 c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE05E: [703,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM410 644c0 -21 -24 -42 -60 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-9 3 -31 20 -31 33c0 14 8 24 40 47 c30 19 38 27 38 37c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 53 14 74 14c59 0 103 -26 103 -59'], + 0xE05F: [846,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM608 793h-340v53h340v-53'], + 0xE060: [846,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM662 793h-365v53h365v-53'], + 0xE061: [619,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM448 566h-340v53h340v-53'], + 0xE062: [619,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM490 566h-365v53h365v-53'], + 0xE063: [689,20,868,57,831,'831 49l-95 -63c-7 -4 -18 -6 -37 -6c-52 0 -134 32 -197 77c-78 -55 -141 -77 -221 -77c-129 0 -224 80 -224 192c0 50 19 96 58 137c28 29 52 47 111 78c-23 53 -33 92 -33 133s10 73 26 86l74 60c20 16 43 23 72 23c68 0 107 -33 107 -90c0 -46 -22 -89 -70 -136 c-21 -20 -41 -35 -87 -66c61 -91 126 -165 223 -256c39 48 52 77 52 113c0 41 -13 76 -30 80c-13 3 -30 5 -94 10l36 45l105 -2c83 0 212 7 212 7c-10 -29 -13 -47 -13 -72c-43 6 -76 9 -153 12c4 -15 6 -24 6 -39c0 -63 -24 -111 -89 -177c93 -49 134 -63 188 -63 c18 0 34 5 66 19zM468 82c-123 126 -177 189 -226 270c-66 -48 -90 -85 -90 -143c0 -93 84 -173 181 -173c43 0 84 14 135 46zM399 569c0 38 -27 67 -63 67c-44 0 -67 -28 -67 -79c0 -35 8 -70 29 -126c59 38 101 92 101 138'], + 0xE064: [689,20,950,70,901,'901 49l-102 -63c-7 -4 -19 -6 -40 -6c-56 0 -143 32 -211 77c-83 -55 -151 -77 -237 -77c-139 0 -241 80 -241 192c0 50 21 96 62 137c31 29 56 47 120 78c-25 53 -35 92 -35 133s10 73 28 86l79 60c21 16 46 23 77 23c73 0 115 -33 115 -90c0 -46 -23 -89 -75 -136 c-23 -20 -44 -35 -93 -66c65 -91 134 -165 238 -256c42 48 56 77 56 113c0 41 -14 76 -31 80c-14 3 -33 5 -102 10l39 45l113 -2c89 0 227 7 227 7c-10 -29 -14 -47 -14 -72c-46 6 -81 9 -164 12c5 -15 6 -24 6 -39c0 -63 -26 -111 -95 -177c100 -49 144 -63 202 -63 c20 0 36 5 71 19zM511 82c-132 126 -189 189 -242 270c-71 -48 -97 -85 -97 -143c0 -93 90 -173 194 -173c47 0 90 14 145 46zM438 569c0 38 -30 67 -68 67c-47 0 -72 -28 -72 -79c0 -35 9 -70 31 -126c63 38 109 92 109 138'], + 0xE065: [700,250,868,26,834,'834 -193l-40 -32c-28 -21 -64 -25 -99 -25c-65 0 -96 49 -96 92c0 61 50 119 112 158h-15l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49 l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3v-30l-41 2c-42 1 -72 -32 -95 -65c-14 -21 -24 -44 -24 -66c0 -50 25 -72 52 -72c32 0 63 15 71 42l9 31l28 -7v-55zM547 269l-137 298l-138 -298h275'], + 0xE066: [700,250,950,38,905,'905 -193l-44 -32c-29 -21 -68 -25 -106 -25c-69 0 -103 49 -103 92c0 61 54 119 120 158h-16l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3 c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3v-30l-45 2c-44 1 -77 -32 -102 -65c-15 -21 -25 -44 -25 -66c0 -50 26 -72 56 -72c34 0 68 15 76 42l9 31l31 -7v-55zM597 269l-148 298l-148 -298h296'], + 0xE067: [469,250,565,45,523,'523 -193l-40 -32c-27 -21 -63 -25 -99 -25c-64 0 -96 49 -96 92c0 60 49 118 111 157l-41 -2l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32 c42 23 85 34 132 34c127 0 172 -53 172 -199v-183c0 -49 5 -57 31 -58l42 -2v-30l-32 2c-37 2 -69 -22 -92 -50c-21 -25 -36 -53 -36 -81c0 -50 25 -72 52 -72c32 0 64 15 71 42l9 31l28 -7v-55zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91 c0 -43 38 -80 81 -80s112 38 143 79'], + 0xE068: [469,250,625,57,571,'571 -193l-43 -32c-29 -21 -68 -25 -107 -25c-69 0 -103 49 -103 92c0 60 53 118 120 157l-45 -2l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32 c45 23 92 34 142 34c136 0 185 -53 185 -199v-183c0 -49 4 -57 32 -58l46 -2v-30l-35 2c-40 2 -74 -22 -98 -50c-23 -25 -39 -53 -39 -81c0 -50 27 -72 56 -72c34 0 68 15 76 42l10 31l30 -7v-55zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91 c0 -43 41 -80 88 -80c45 0 119 38 153 79'], + 0xE069: [939,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM547 839c0 -56 -49 -100 -109 -100c-61 0 -109 44 -109 101c0 55 49 99 112 99c57 0 106 -45 106 -100zM506 839c0 38 -27 64 -67 64c-41 0 -68 -25 -68 -63c0 -40 26 -65 67 -65s68 26 68 64'], + 0xE06A: [939,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM597 839c0 -56 -53 -100 -117 -100c-66 0 -117 44 -117 101c0 55 52 99 119 99c62 0 115 -45 115 -100zM552 839c0 38 -29 64 -71 64c-44 0 -74 -25 -74 -63c0 -40 28 -65 73 -65c43 0 72 26 72 64'], + 0xE06B: [692,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM387 592c0 -56 -49 -100 -109 -100c-61 0 -109 44 -109 101c0 55 49 99 111 99c58 0 107 -45 107 -100zM346 592c0 38 -28 64 -67 64 c-41 0 -68 -25 -68 -63c0 -40 26 -65 67 -65c40 0 68 26 68 64'], + 0xE06C: [692,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM425 592c0 -56 -53 -100 -117 -100c-66 0 -117 44 -117 101c0 55 52 99 119 99c62 0 115 -45 115 -100zM380 592 c0 38 -29 64 -71 64c-44 0 -74 -25 -74 -63c0 -40 28 -65 73 -65c43 0 72 26 72 64'], + 0xE06D: [694,20,834,36,799,'799 409c0 -137 -127 -275 -254 -275c-48 0 -77 30 -83 84c-54 -63 -82 -79 -134 -79c-80 0 -145 62 -145 141c0 119 114 229 237 229c52 0 83 -25 96 -80l19 70h96l-84 -279c-8 -30 -2 -57 23 -57c82 0 171 127 171 242c0 137 -127 239 -298 239 c-199 0 -347 -131 -347 -307s149 -307 351 -307c49 0 92 8 133 25c61 25 95 51 147 116h67c-34 -51 -52 -71 -86 -99c-76 -61 -167 -92 -269 -92c-226 0 -403 154 -403 351c0 204 176 363 402 363c203 0 361 -125 361 -285zM495 410c0 41 -23 72 -57 72 c-31 0 -66 -19 -96 -58c-34 -47 -62 -121 -62 -170c0 -53 26 -88 66 -88c36 0 68 23 96 68c30 49 53 125 53 176'], + 0xE06E: [694,20,914,48,867,'867 409c0 -137 -137 -275 -273 -275c-51 0 -83 30 -88 84c-59 -63 -89 -79 -144 -79c-87 0 -156 62 -156 141c0 119 122 229 254 229c56 0 89 -25 103 -80l21 70h103l-90 -279c-10 -30 -3 -57 24 -57c88 0 184 127 184 242c0 137 -137 239 -321 239 c-212 0 -372 -131 -372 -307s161 -307 377 -307c53 0 98 8 143 25c65 25 102 51 158 116h71c-36 -51 -55 -71 -92 -99c-81 -61 -179 -92 -288 -92c-243 0 -433 154 -433 351c0 204 188 363 432 363c217 0 387 -125 387 -285zM541 410c0 41 -25 72 -61 72 c-34 0 -72 -19 -103 -58c-38 -47 -67 -121 -67 -170c0 -53 28 -88 70 -88c39 0 74 23 103 68c33 49 58 125 58 176'], + 0xE06F: [872,3,868,26,834,'834 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -39 -93 -39 -106c0 -16 15 -23 53 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 44 20 59 49l240 502c42 85 54 119 54 119h35l263 -568c39 -81 51 -100 79 -102l37 -3 v-30zM547 269l-137 298l-138 -298h275zM618 872c-4 -58 -56 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-31c15 65 55 100 115 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31'], + 0xE070: [872,3,950,38,905,'905 -3l-149 3l-163 -3v30l55 3c30 2 48 9 48 20c0 9 -4 22 -24 64l-54 115h-337l-33 -67c-24 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l44 -3v-30l-142 3l-127 -3v30l43 3c26 2 48 20 63 49l259 502c44 85 57 119 57 119h37l283 -568c41 -81 54 -100 85 -102l40 -3 v-30zM597 269l-148 298l-148 -298h296zM673 872c-5 -58 -61 -105 -128 -105c-25 0 -44 4 -79 19c-44 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 59 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 51 13 69 50h34'], + 0xE071: [645,12,565,45,523,'523 -3c-27 2 -53 3 -80 3c-29 0 -57 -1 -85 -3l5 85l-135 -86c-8 -5 -26 -8 -46 -8c-86 0 -137 45 -137 123c0 87 62 134 210 159l108 18c-3 91 -46 128 -148 128c-50 0 -62 -7 -84 -54l-14 -31l-29 7v65l58 32c42 23 85 34 132 34c127 0 172 -53 172 -199v-183 c0 -49 5 -57 31 -58l42 -2v-30zM363 124v132c-83 -11 -143 -25 -170 -40c-33 -19 -54 -54 -54 -91c0 -43 38 -80 81 -80s112 38 143 79zM458 645c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100 c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32'], + 0xE072: [645,12,625,57,571,'571 -3c-29 2 -57 3 -87 3s-60 -1 -91 -3l6 85l-145 -86c-8 -5 -28 -8 -49 -8c-93 0 -148 45 -148 123c0 87 67 134 226 159l116 18c-3 91 -49 128 -159 128c-54 0 -67 -7 -90 -54l-15 -31l-31 7v65l62 32c45 23 92 34 142 34c136 0 185 -53 185 -199v-183 c0 -49 4 -57 32 -58l46 -2v-30zM399 124v132c-89 -11 -153 -25 -182 -40c-36 -19 -59 -54 -59 -91c0 -43 41 -80 88 -80c45 0 119 38 153 79zM501 645c-5 -58 -61 -105 -128 -105c-25 0 -44 4 -79 19c-44 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 59 100 124 100 c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 51 13 69 50h34'], + 0xE073: [692,3,686,38,638,'638 228c0 -70 -38 -138 -103 -180c-49 -33 -120 -51 -200 -51c-45 0 -91 3 -135 3l-119 -3v23l28 10c15 5 24 28 24 65v474c0 79 -4 86 -55 90l-40 3v30l173 -3l195 3c132 0 195 -48 195 -136c0 -52 -27 -95 -80 -128c-30 -19 -55 -28 -109 -38c84 -6 121 -15 163 -43 c41 -27 63 -68 63 -119zM526 208c0 107 -69 156 -216 156c-21 0 -31 0 -73 -2v-315c27 -6 52 -8 84 -8c129 0 205 63 205 169zM493 533c0 83 -51 119 -168 119c-35 0 -60 -2 -88 -8v-243c34 -2 48 -2 66 -2c124 0 190 47 190 134'], + 0xE074: [692,3,755,50,694,'694 228c0 -70 -41 -138 -110 -180c-53 -33 -129 -51 -215 -51c-48 0 -97 3 -145 3l-128 -3v23l30 10c17 5 26 28 26 65v474c0 79 -4 86 -59 90l-43 3v30l185 -3l210 3c141 0 209 -48 209 -136c0 -52 -29 -95 -85 -128c-33 -19 -60 -28 -117 -38c90 -6 130 -15 174 -43 c45 -27 68 -68 68 -119zM573 208c0 107 -73 156 -231 156l-79 -2v-315c30 -6 57 -8 90 -8c140 0 220 63 220 169zM538 533c0 83 -55 119 -180 119c-37 0 -64 -2 -95 -8v-243c37 -2 52 -2 72 -2c133 0 203 47 203 134'], + 0xE075: [726,12,623,-6,564,'564 270c0 -73 -38 -156 -86 -188l-109 -72c-23 -15 -52 -22 -94 -22c-58 0 -97 10 -141 36l-43 -36l-18 6c8 70 9 97 9 159v467c0 30 -8 41 -27 41h-61v28c86 12 122 20 170 37l9 -8v-349l60 56c29 26 82 44 133 44c116 0 198 -83 198 -199zM469 229 c0 107 -58 175 -149 175c-45 0 -88 -17 -118 -46c-18 -18 -29 -36 -29 -50v-215c0 -22 81 -54 138 -54c92 0 158 78 158 190'], + 0xE076: [726,12,687,2,614,'614 270c0 -73 -41 -156 -92 -188l-117 -72c-25 -15 -55 -22 -101 -22c-62 0 -104 10 -151 36l-46 -36l-19 6c8 70 9 97 9 159v467c0 30 -8 41 -29 41h-66v28c93 12 131 20 183 37l10 -8v-349l65 56c30 26 88 44 143 44c124 0 211 -83 211 -199zM513 229 c0 107 -62 175 -161 175c-48 0 -93 -17 -126 -46c-19 -18 -31 -36 -31 -50v-215c0 -22 87 -54 148 -54c99 0 170 78 170 190'], + 0xE077: [671,-513,383,38,346,'346 671c-2 -44 -9 -66 -26 -93c-27 -42 -72 -65 -128 -65c-59 0 -106 25 -132 71c-14 26 -19 46 -22 87h33c3 -57 53 -98 121 -98s118 41 121 98h33'], + 0xE078: [671,-513,430,50,380,'380 671c-2 -44 -9 -66 -28 -93c-28 -42 -77 -65 -137 -65c-63 0 -113 25 -141 71c-15 26 -21 46 -24 87h36c3 -57 57 -98 129 -98c73 0 127 41 130 98h35'], + 0xE079: [726,184,681,310,371,'371 362h-61v364h61v-364zM371 -184h-61v364h61v-364'], + 0xE07A: [726,184,749,342,407,'407 362h-65v364h65v-364zM407 -184h-65v364h65v-364'], + 0xE07B: [709,20,793,34,740,'740 84l-30 -50c-75 -36 -157 -54 -248 -54c-256 0 -428 146 -428 362c0 135 65 240 190 307c73 39 163 60 258 60c80 0 159 -13 252 -41c-16 -66 -20 -102 -21 -152h-34v72c0 39 -110 79 -217 79c-187 0 -311 -122 -311 -306c0 -197 141 -327 354 -327 c83 0 158 20 225 60'], + 0xE07C: [709,20,870,46,804,'804 84l-33 -50c-81 -36 -168 -54 -265 -54c-275 0 -460 146 -460 362c0 135 70 240 203 307c79 39 176 60 278 60c85 0 170 -13 270 -41c-17 -66 -21 -102 -22 -152h-37v72c0 39 -118 79 -232 79c-202 0 -335 -122 -335 -306c0 -197 152 -327 380 -327 c89 0 170 20 242 60'], + 0xE07D: [469,20,504,38,460,'460 46l-23 -32c-11 -15 -92 -34 -149 -34c-146 0 -250 95 -250 230c0 88 41 158 117 202c65 38 126 57 179 57c44 0 83 -11 126 -35c-10 -36 -15 -77 -15 -123h-31l-7 61c-20 25 -72 45 -120 45c-98 0 -153 -60 -153 -167c0 -132 80 -218 201 -218c39 0 74 9 114 29'], + 0xE07E: [469,20,559,50,503,'503 46l-24 -32c-12 -15 -100 -34 -161 -34c-156 0 -268 95 -268 230c0 88 44 158 126 202c70 38 135 57 191 57c48 0 89 -11 136 -35c-10 -36 -16 -77 -16 -123h-33l-8 61c-21 25 -77 45 -129 45c-105 0 -164 -60 -164 -167c0 -132 86 -218 216 -218c42 0 79 9 123 29'], + 0xE07F: [888,20,793,34,740,'740 84l-30 -50c-75 -36 -157 -54 -248 -54c-256 0 -428 146 -428 362c0 135 65 240 190 307c73 39 163 60 258 60c80 0 159 -13 252 -41c-16 -66 -20 -102 -21 -152h-34v72c0 39 -110 79 -217 79c-187 0 -311 -122 -311 -306c0 -197 141 -327 354 -327 c83 0 158 20 225 60zM588 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE080: [888,20,870,46,804,'804 84l-33 -50c-81 -36 -168 -54 -265 -54c-275 0 -460 146 -460 362c0 135 70 240 203 307c79 39 176 60 278 60c85 0 170 -13 270 -41c-17 -66 -21 -102 -22 -152h-37v72c0 39 -118 79 -232 79c-202 0 -335 -122 -335 -306c0 -197 152 -327 380 -327 c89 0 170 20 242 60zM640 861c0 -15 -9 -22 -50 -39l-183 -73h-50l174 113c27 17 51 25 70 26c22 0 39 -12 39 -27'], + 0xE081: [677,20,504,38,460,'460 46l-23 -32c-11 -15 -92 -34 -149 -34c-146 0 -250 95 -250 230c0 88 41 158 117 202c65 38 126 57 179 57c44 0 83 -11 126 -35c-10 -36 -15 -77 -15 -123h-31l-7 61c-20 25 -72 45 -120 45c-98 0 -153 -60 -153 -167c0 -132 80 -218 201 -218c39 0 74 9 114 29z M434 643c0 -18 -8 -26 -44 -47l-157 -90h-43l150 138c24 22 44 33 60 33c19 0 34 -15 34 -34'], + 0xE082: [677,20,559,50,503,'503 46l-24 -32c-12 -15 -100 -34 -161 -34c-156 0 -268 95 -268 230c0 88 44 158 126 202c70 38 135 57 191 57c48 0 89 -11 136 -35c-10 -36 -16 -77 -16 -123h-33l-8 61c-21 25 -77 45 -129 45c-105 0 -164 -60 -164 -167c0 -132 86 -218 216 -218c42 0 79 9 123 29z M475 643c0 -18 -8 -26 -47 -47l-168 -90h-47l162 138c25 22 46 33 64 33c20 0 36 -15 36 -34'], + 0xE083: [676,-509,383,22,362,'362 676l-136 -167h-68l-136 167h38l132 -103l133 103h37'], + 0xE084: [676,-509,430,33,398,'398 676l-146 -167h-73l-146 167h41l141 -103l143 103h40'], + 0xE085: [887,20,793,34,740,'740 84l-30 -50c-75 -36 -157 -54 -248 -54c-256 0 -428 146 -428 362c0 135 65 240 190 307c73 39 163 60 258 60c80 0 159 -13 252 -41c-16 -66 -20 -102 -21 -152h-34v72c0 39 -110 79 -217 79c-187 0 -311 -122 -311 -306c0 -197 141 -327 354 -327 c83 0 158 20 225 60zM621 887l-146 -135h-74l-147 135h42l142 -84l143 84h40'], + 0xE086: [887,20,870,46,804,'804 84l-33 -50c-81 -36 -168 -54 -265 -54c-275 0 -460 146 -460 362c0 135 70 240 203 307c79 39 176 60 278 60c85 0 170 -13 270 -41c-17 -66 -21 -102 -22 -152h-37v72c0 39 -118 79 -232 79c-202 0 -335 -122 -335 -306c0 -197 152 -327 380 -327 c89 0 170 20 242 60zM676 887l-156 -135h-80l-158 135h45l153 -84l153 84h43'], + 0xE087: [676,20,504,38,460,'460 46l-23 -32c-11 -15 -92 -34 -149 -34c-146 0 -250 95 -250 230c0 88 41 158 117 202c65 38 126 57 179 57c44 0 83 -11 126 -35c-10 -36 -15 -77 -15 -123h-31l-7 61c-20 25 -72 45 -120 45c-98 0 -153 -60 -153 -167c0 -132 80 -218 201 -218c39 0 74 9 114 29z M457 676l-136 -167h-68l-136 167h38l132 -103l133 103h37'], + 0xE088: [676,20,559,50,503,'503 46l-24 -32c-12 -15 -100 -34 -161 -34c-156 0 -268 95 -268 230c0 88 44 158 126 202c70 38 135 57 191 57c48 0 89 -11 136 -35c-10 -36 -16 -77 -16 -123h-33l-8 61c-21 25 -77 45 -129 45c-105 0 -164 -60 -164 -167c0 -132 86 -218 216 -218c42 0 79 9 123 29z M500 676l-147 -167h-72l-146 167h41l141 -103l143 103h40'], + 0xE089: [709,225,793,34,740,'740 84l-30 -50c-75 -36 -157 -54 -248 -54h-15l-23 -55c11 3 18 4 29 4c57 0 93 -27 93 -70c0 -52 -51 -84 -135 -84c-30 0 -43 2 -91 16l15 31c35 -9 51 -11 72 -11c37 0 58 15 58 43c0 23 -18 39 -44 39c-14 0 -24 -2 -45 -7l-7 6l42 90c-238 24 -377 158 -377 360 c0 135 65 241 190 307c74 39 162 60 258 60c80 0 158 -13 252 -41c-16 -66 -20 -102 -21 -152h-34v72c0 39 -110 79 -217 79c-188 0 -311 -121 -311 -306c0 -197 140 -327 354 -327c84 0 158 20 225 60'], + 0xE08A: [709,225,870,46,804,'804 84l-33 -50c-81 -36 -168 -54 -265 -54h-17l-24 -55c11 3 18 4 30 4c62 0 101 -27 101 -70c0 -52 -55 -84 -145 -84c-33 0 -47 2 -99 16l17 31c37 -9 55 -11 77 -11c40 0 62 15 62 43c0 23 -19 39 -47 39c-15 0 -26 -2 -48 -7l-8 6l46 90c-256 24 -405 158 -405 360 c0 135 70 241 203 307c80 39 175 60 278 60c85 0 169 -13 270 -41c-17 -66 -21 -102 -22 -152h-37v72c0 39 -118 79 -232 79c-203 0 -335 -121 -335 -306c0 -197 151 -327 380 -327c90 0 170 20 242 60'], + 0xE08B: [469,225,504,38,460,'460 46l-23 -32c-11 -15 -87 -33 -134 -34l-23 -55c11 3 18 4 29 4c57 0 93 -27 93 -70c0 -52 -51 -84 -135 -84c-30 0 -43 2 -91 16l15 31c35 -9 51 -11 72 -11c37 0 58 15 58 43c0 23 -18 39 -44 39c-14 0 -24 -2 -45 -7l-7 6l41 89c-136 10 -228 101 -228 229 c0 90 41 159 119 204c66 37 124 55 177 55c44 0 83 -11 126 -35c-10 -36 -15 -77 -15 -123h-31l-7 61c-20 26 -71 45 -120 45c-98 0 -153 -60 -153 -167c0 -132 80 -218 201 -218c39 0 73 9 114 29'], + 0xE08C: [469,225,559,50,503,'503 46l-24 -32c-12 -15 -94 -33 -144 -34l-25 -55c12 3 19 4 31 4c62 0 100 -27 100 -70c0 -52 -55 -84 -145 -84c-33 0 -47 2 -98 16l16 31c38 -9 55 -11 77 -11c40 0 62 15 62 43c0 23 -18 39 -46 39c-16 0 -26 -2 -48 -7l-9 6l45 89c-146 10 -245 101 -245 229 c0 90 44 159 128 204c70 37 133 55 189 55c48 0 89 -11 136 -35c-10 -36 -16 -77 -16 -123h-33l-8 61c-21 26 -76 45 -129 45c-105 0 -164 -60 -164 -167c0 -132 86 -218 216 -218c42 0 78 9 123 29'], + 0xE08D: [10,225,383,115,341,'341 -141c0 -52 -52 -84 -135 -84c-29 0 -44 3 -91 16l15 31c36 -9 51 -11 71 -11c38 0 59 15 59 43c0 23 -18 39 -44 39c-14 0 -24 -2 -45 -7l-7 6l45 118h38l-28 -85c11 3 19 4 30 4c56 0 92 -27 92 -70'], + 0xE08E: [10,225,430,132,376,'376 -141c0 -52 -56 -84 -145 -84c-32 0 -48 3 -99 16l17 31c38 -9 55 -11 76 -11c41 0 63 15 63 43c0 23 -19 39 -47 39c-15 0 -26 -2 -48 -7l-8 6l49 118h40l-29 -85c11 3 20 4 31 4c61 0 100 -27 100 -70'], + 0xE08F: [562,101,565,76,498,'498 53l-21 -33c-56 -24 -101 -34 -159 -34c-24 0 -40 1 -67 5l-31 -92h-44l35 104c-46 22 -68 39 -92 71c-27 37 -43 89 -43 148c0 95 38 160 112 194l87 40c19 9 48 14 89 14l30 92h43l-29 -92c28 -1 58 -10 87 -26c-9 -49 -12 -84 -12 -130h-30l-10 66 c-14 14 -28 21 -55 31l-115 -353c32 -16 57 -22 92 -22c37 0 70 8 124 28zM347 419c-27 4 -35 5 -43 5c-83 0 -131 -64 -131 -173c0 -34 6 -66 16 -95c11 -32 20 -46 48 -72'], + 0xE090: [562,101,625,91,544,'544 53l-23 -33c-60 -24 -108 -34 -170 -34c-26 0 -43 1 -72 5l-33 -92h-48l37 104c-49 22 -72 39 -98 71c-29 37 -46 89 -46 148c0 95 40 160 120 194l93 40c21 9 52 14 96 14l32 92h47l-32 -92c30 -1 62 -10 94 -26c-10 -49 -13 -84 -13 -130h-33l-11 66 c-15 14 -29 21 -58 31l-124 -353c35 -16 62 -22 99 -22c40 0 75 8 133 28zM382 419c-30 4 -38 5 -46 5c-89 0 -141 -64 -141 -173c0 -34 6 -66 17 -95c12 -32 22 -46 51 -72'], + 0xE091: [676,-509,383,22,362,'362 509h-38l-132 103l-132 -103h-38l136 167h68'], + 0xE092: [676,-509,430,33,398,'398 509h-41l-142 103l-141 -103h-41l146 167h73'], + 0xE093: [456,5,292,82,208,'208 53c0 -31 -30 -58 -65 -58c-32 0 -61 28 -61 58s29 58 62 58c34 0 64 -28 64 -58zM208 397c0 -30 -30 -57 -65 -57c-32 0 -61 28 -61 58s29 58 62 58c34 0 64 -28 64 -59'], + 0xE094: [456,5,332,97,233,'233 53c0 -31 -33 -58 -70 -58c-34 0 -66 28 -66 58s32 58 67 58c36 0 69 -28 69 -58zM233 397c0 -30 -33 -57 -70 -57c-34 0 -66 28 -66 58s32 58 67 58c36 0 69 -28 69 -59'], + 0xE095: [123,155,292,27,248,'248 109c-31 -77 -72 -140 -161 -245l-44 -19l-16 11c64 96 91 161 99 237l106 30'], + 0xE096: [123,155,332,39,275,'275 109c-33 -77 -77 -140 -172 -245l-48 -19l-16 11c68 96 97 161 105 237l115 30'], + 0xE097: [692,3,864,34,829,'829 385c0 -107 -48 -215 -127 -286c-76 -69 -181 -102 -320 -102c-53 0 -106 3 -158 3l-152 -3v23l34 16c17 8 27 30 27 59v474c0 78 -5 87 -55 90l-44 3v30l225 -3c63 0 126 3 189 3c230 0 381 -121 381 -307zM712 359c0 100 -25 172 -77 220c-58 53 -156 73 -277 73 c-55 0 -93 -3 -121 -8v-595c28 -6 62 -8 112 -8c123 0 189 17 254 66c72 54 109 140 109 252'], + 0xE098: [692,3,946,46,899,'899 385c0 -107 -52 -215 -136 -286c-82 -69 -194 -102 -344 -102c-56 0 -114 3 -170 3l-162 -3v23l36 16c19 8 29 30 29 59v474c0 78 -6 87 -59 90l-47 3v30l241 -3l203 3c247 0 409 -121 409 -307zM773 359c0 100 -26 172 -83 220c-62 53 -167 73 -297 73 c-58 0 -99 -3 -130 -8v-595c31 -6 67 -8 121 -8c132 0 202 17 272 66c78 54 117 140 117 252'], + 0xE099: [726,12,686,48,641,'641 -3c-33 2 -66 3 -99 3c-28 0 -56 -1 -84 -3l5 92l-121 -93c-5 -4 -30 -8 -52 -8c-71 0 -122 13 -159 42c-53 40 -83 106 -83 186c0 85 40 158 103 188l96 46c27 13 53 19 82 19c39 0 69 -8 130 -32v183c0 30 -8 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-616 c0 -63 3 -70 40 -72l50 -3v-30zM459 221v129c0 8 -13 21 -36 35c-38 24 -82 37 -123 37c-98 0 -157 -64 -157 -173c0 -119 69 -204 165 -204c51 0 104 31 135 78c14 23 16 33 16 98'], + 0xE09A: [726,12,755,61,697,'697 -3c-35 2 -71 3 -106 3c-30 0 -60 -1 -90 -3l6 92l-130 -93c-6 -4 -33 -8 -56 -8c-76 0 -131 13 -171 42c-57 40 -89 106 -89 186c0 85 43 158 110 188l103 46c29 13 57 19 89 19c41 0 74 -8 139 -32v183c0 30 -8 41 -29 41h-66v28c93 12 131 20 183 37l10 -8v-616 c0 -63 4 -70 44 -72l53 -3v-30zM502 221v129c0 8 -14 21 -39 35c-41 24 -87 37 -132 37c-105 0 -168 -64 -168 -173c0 -119 73 -204 176 -204c55 0 113 31 145 78c16 23 18 33 18 98'], + 0xE09B: [887,3,864,34,829,'829 385c0 -107 -48 -215 -127 -286c-76 -69 -181 -102 -320 -102c-53 0 -106 3 -158 3l-152 -3v23l34 16c17 8 27 30 27 59v474c0 78 -5 87 -55 90l-44 3v30l225 -3c63 0 126 3 189 3c230 0 381 -121 381 -307zM712 359c0 100 -25 172 -77 220c-58 53 -156 73 -277 73 c-55 0 -93 -3 -121 -8v-595c28 -6 62 -8 112 -8c123 0 189 17 254 66c72 54 109 140 109 252zM565 887l-146 -135h-74l-148 135h42l143 -84l142 84h41'], + 0xE09C: [887,3,946,46,899,'899 385c0 -107 -52 -215 -136 -286c-82 -69 -194 -102 -344 -102c-56 0 -114 3 -170 3l-162 -3v23l36 16c19 8 29 30 29 59v474c0 78 -6 87 -59 90l-47 3v30l241 -3l203 3c247 0 409 -121 409 -307zM773 359c0 100 -26 172 -83 220c-62 53 -167 73 -297 73 c-58 0 -99 -3 -130 -8v-595c31 -6 67 -8 121 -8c132 0 202 17 272 66c78 54 117 140 117 252zM616 887l-157 -135h-80l-158 135h45l153 -84l153 84h44'], + 0xE09D: [726,12,686,48,749,'641 -3c-33 2 -66 3 -99 3c-28 0 -56 -1 -84 -3l5 92l-121 -93c-5 -4 -30 -8 -52 -8c-71 0 -122 13 -159 42c-53 40 -83 106 -83 186c0 85 40 158 103 188l96 46c27 13 53 19 82 19c39 0 69 -8 130 -32v183c0 30 -8 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-616 c0 -63 3 -70 40 -72l50 -3v-30zM459 221v129c0 8 -13 21 -36 35c-38 24 -82 37 -123 37c-98 0 -157 -64 -157 -173c0 -119 69 -204 165 -204c51 0 104 31 135 78c14 23 16 33 16 98zM749 715c-29 -70 -52 -103 -104 -164l-38 -19l-13 9c42 62 51 96 58 160 c46 12 53 15 86 25'], + 0xE09E: [726,12,755,61,813,'697 -3c-35 2 -71 3 -106 3c-30 0 -60 -1 -90 -3l6 92l-130 -93c-6 -4 -33 -8 -56 -8c-76 0 -131 13 -171 42c-57 40 -89 106 -89 186c0 85 43 158 110 188l103 46c29 13 57 19 89 19c41 0 74 -8 139 -32v183c0 30 -8 41 -29 41h-66v28c93 12 131 20 183 37l10 -8v-616 c0 -63 4 -70 44 -72l53 -3v-30zM502 221v129c0 8 -14 21 -39 35c-41 24 -87 37 -132 37c-105 0 -168 -64 -168 -173c0 -119 73 -204 176 -204c55 0 113 31 145 78c16 23 18 33 18 98zM813 715c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c45 62 55 96 62 160 c49 12 57 15 93 25'], + 0xE09F: [692,3,864,25,829,'829 385c0 -107 -48 -215 -127 -286c-76 -69 -181 -102 -320 -102c-53 0 -106 3 -158 3l-152 -3v23l34 16c17 8 27 30 27 59v251h-108v36h108v187c0 78 -5 87 -55 90l-44 3v30l225 -3c63 0 126 3 189 3c230 0 381 -121 381 -307zM712 359c0 100 -25 172 -77 220 c-58 53 -156 73 -277 73c-55 0 -93 -3 -121 -8v-262h200v-36h-200v-297c28 -6 62 -8 112 -8c123 0 189 17 254 66c72 54 109 140 109 252'], + 0xE0A0: [692,3,946,36,899,'899 385c0 -107 -52 -215 -136 -286c-82 -69 -194 -102 -344 -102c-56 0 -114 3 -170 3l-162 -3v23l36 16c19 8 29 30 29 59v251h-116v36h116v187c0 78 -6 87 -59 90l-47 3v30l241 -3l203 3c247 0 409 -121 409 -307zM773 359c0 100 -26 172 -83 220 c-62 53 -167 73 -297 73c-58 0 -99 -3 -130 -8v-262h216v-36h-216v-297c31 -6 67 -8 121 -8c132 0 202 17 272 66c78 54 117 140 117 252'], + 0xE0A1: [726,12,686,48,641,'641 -3c-23 1 -45 1 -52 2l-47 1l-84 -3l5 92l-121 -93c-5 -4 -30 -8 -52 -8c-71 0 -122 13 -159 42c-53 40 -83 106 -83 186c0 85 40 158 103 188l96 46c27 13 53 19 82 19c39 0 69 -8 130 -32v118h-158v36h158v29c0 30 -8 41 -27 41h-61v28c86 12 122 20 170 37l10 -8 v-127h90v-36h-90v-453c0 -63 3 -70 40 -72l50 -3v-30zM459 221v129c0 8 -13 21 -36 35c-38 24 -82 37 -123 37c-98 0 -157 -64 -157 -173c0 -119 69 -204 165 -204c51 0 104 31 135 78c14 23 16 33 16 98'], + 0xE0A2: [726,12,755,61,697,'697 -3c-24 1 -48 1 -56 2l-50 1l-90 -3l6 92l-130 -93c-6 -4 -33 -8 -56 -8c-76 0 -131 13 -171 42c-57 40 -89 106 -89 186c0 85 43 158 110 188l103 46c29 13 57 19 89 19c41 0 74 -8 139 -32v118h-170v36h170v29c0 30 -8 41 -29 41h-66v28c93 12 131 20 183 37l10 -8 v-127h97v-36h-97v-453c0 -63 4 -70 44 -72l53 -3v-30zM502 221v129c0 8 -14 21 -39 35c-41 24 -87 37 -132 37c-105 0 -168 -64 -168 -173c0 -119 73 -204 176 -204c55 0 113 31 145 78c16 23 18 33 18 98'], + 0xE0A3: [642,-542,383,29,354,'138 592c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50zM354 592c0 -30 -21 -50 -54 -50s-55 20 -55 50s22 50 56 50c32 0 53 -21 53 -50'], + 0xE0A4: [642,-542,430,40,390,'157 592c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 60 50c33 0 57 -21 57 -50zM390 592c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE0A5: [731,116,565,43,523,'523 207c0 -75 -37 -139 -105 -180c-36 -22 -65 -32 -125 -43l5 -100h-49c2 21 2 34 4 98c-68 1 -139 16 -210 42c6 39 10 69 13 148h35v-64c0 -24 2 -29 15 -41c30 -27 76 -42 147 -49v279c-86 9 -124 19 -156 41c-37 25 -54 64 -54 120c0 74 33 134 96 171 c32 20 58 28 114 37l-4 65h49c-2 -19 -4 -31 -5 -62c88 -6 130 -16 181 -43c-9 -33 -14 -72 -14 -126h-35v42c0 37 -4 49 -25 62c-27 16 -56 25 -107 29v-260c95 -9 137 -20 172 -43c39 -26 58 -66 58 -123zM437 173c0 73 -37 104 -144 119v-274c88 14 144 74 144 155z M253 379v251c-39 -4 -57 -10 -78 -26c-33 -24 -51 -63 -51 -110c0 -73 35 -104 129 -115'], + 0xE0A6: [731,116,625,55,571,'571 207c0 -75 -40 -139 -113 -180c-39 -22 -69 -32 -134 -43l5 -100h-53c3 21 3 34 5 98c-73 1 -150 16 -226 42c7 39 11 69 14 148h38v-64c0 -24 2 -29 16 -41c33 -27 82 -42 158 -49v279c-93 9 -133 19 -167 41c-40 25 -59 64 -59 120c0 74 36 134 103 171 c35 20 63 28 123 37l-5 65h53c-2 -19 -4 -31 -5 -62c94 -6 139 -16 194 -43c-10 -33 -15 -72 -15 -126h-37v42c0 37 -5 49 -27 62c-29 16 -61 25 -115 29v-260c102 -9 146 -20 184 -43c42 -26 63 -66 63 -123zM479 173c0 73 -40 104 -155 119v-274c94 14 155 74 155 155z M281 379v251c-42 -4 -61 -10 -84 -26c-35 -24 -54 -63 -54 -110c0 -73 37 -104 138 -115'], + 0xE0A7: [642,-542,292,92,201,'201 592c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50'], + 0xE0A8: [642,-542,332,108,225,'225 592c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE0A9: [-93,193,292,92,201,'201 -143c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50'], + 0xE0AA: [-93,193,332,108,225,'225 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE0AB: [692,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38'], + 0xE0AC: [692,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41'], + 0xE0AD: [469,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6'], + 0xE0AE: [469,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6'], + 0xE0AF: [888,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM493 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113 c26 17 47 25 66 26c20 0 36 -12 36 -27'], + 0xE0B0: [888,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM538 861c0 -15 -9 -22 -50 -39l-183 -73h-50 l174 113c27 17 51 25 71 26c21 0 38 -12 38 -27'], + 0xE0B1: [677,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM443 643c0 -18 -8 -26 -44 -47l-157 -90h-43l150 138c24 22 44 33 60 33c18 0 34 -15 34 -34'], + 0xE0B2: [677,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM484 643c0 -18 -8 -26 -46 -47l-169 -90h-47l162 138c26 22 47 33 64 33c20 0 36 -15 36 -34'], + 0xE0B3: [887,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM526 887l-146 -135h-75l-147 135h42l142 -84l143 84h41'], + 0xE0B4: [887,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM573 887l-156 -135h-80l-158 135h45l153 -84 l153 84h43'], + 0xE0B5: [676,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM466 676l-137 -167h-67l-136 167h38l132 -103l133 103h37'], + 0xE0B6: [676,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM509 676l-146 -167h-73l-146 167h41l142 -103l142 103h40'], + 0xE0B7: [887,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM527 752h-42l-143 84l-142 -84h-41l146 135h75'], + 0xE0B8: [887,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM575 752h-45l-153 84l-153 -84h-44l157 135h80'], + 0xE0B9: [676,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM466 509h-39l-131 103l-132 -103h-38l136 167h67'], + 0xE0BA: [676,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM509 509h-41l-141 103l-142 -103h-41l146 167h73'], + 0xE0BB: [1046,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM471 1019c0 -15 -9 -22 -47 -39l-170 -73h-47l163 113 c25 17 47 25 65 26c20 0 36 -12 36 -27zM527 752h-42l-143 84l-142 -84h-41l146 135h75'], + 0xE0BC: [1046,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM515 1019c0 -15 -9 -22 -50 -39l-183 -73h-50 l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27zM575 752h-45l-153 84l-153 -84h-44l157 135h80'], + 0xE0BD: [803,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM424 776c0 -15 -9 -22 -47 -39l-170 -73h-47l163 113c25 17 47 25 65 26c20 0 36 -12 36 -27z M480 509h-42l-142 84l-143 -84h-41l147 135h74'], + 0xE0BE: [803,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM465 776c0 -15 -10 -22 -51 -39l-182 -73h-51l175 113c27 17 50 25 70 26c21 0 39 -12 39 -27z M524 509h-44l-153 84l-154 -84h-43l157 135h79'], + 0xE0BF: [887,193,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM527 752h-42l-143 84l-142 -84h-41l146 135h75zM398 -143 c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE0C0: [887,193,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM575 752h-45l-153 84l-153 -84h-44l157 135h80z M437 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE0C1: [676,193,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM466 509h-39l-131 103l-132 -103h-38l136 167h67zM350 -143c0 -30 -22 -50 -54 -50 c-33 0 -55 20 -55 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE0C2: [676,193,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM509 509h-41l-141 103l-142 -103h-41l146 167h73zM385 -143c0 -30 -23 -50 -58 -50 c-36 0 -59 20 -59 50s23 50 60 50c34 0 57 -21 57 -50'], + 0xE0C3: [1046,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM479 907h-47l-170 73c-38 17 -47 24 -47 39s16 27 36 27 c18 -1 40 -9 65 -26zM527 752h-42l-143 84l-142 -84h-41l146 135h75'], + 0xE0C4: [1046,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM523 907h-50l-183 73c-41 17 -50 24 -50 39 s18 27 39 27c19 -1 43 -9 70 -26zM575 752h-45l-153 84l-153 -84h-44l157 135h80'], + 0xE0C5: [803,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM432 664h-47l-170 73c-38 17 -47 24 -47 39s16 27 36 27c19 -1 40 -9 65 -26zM480 509h-42l-142 84 l-143 -84h-41l147 135h74'], + 0xE0C6: [803,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM473 664h-51l-182 73c-41 17 -50 24 -50 39s17 27 38 27c20 -1 44 -9 70 -26zM524 509h-44l-153 84 l-154 -84h-43l157 135h79'], + 0xE0C7: [1088,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM527 1029c0 -21 -22 -42 -56 -62c-35 -22 -41 -24 -41 -31 c0 0 5 -6 18 -17l-27 -12c-9 3 -30 20 -30 33c0 14 8 24 39 47c27 19 35 27 35 37c0 13 -21 24 -50 24c-17 0 -29 -4 -32 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c55 0 96 -26 96 -59zM527 752h-42l-143 84l-142 -84h-41l146 135h75'], + 0xE0C8: [1088,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM575 1029c0 -21 -24 -42 -60 -62 c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-9 3 -32 20 -32 33c0 14 9 24 41 47c30 19 38 27 38 37c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 53 14 74 14c59 0 103 -26 103 -59zM575 752h-45l-153 84l-153 -84h-44l157 135h80'], + 0xE0C9: [845,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM480 786c0 -21 -22 -42 -56 -62c-35 -22 -41 -24 -41 -31c0 0 5 -6 18 -17l-27 -12 c-9 3 -29 20 -29 33c0 14 7 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c55 0 96 -26 96 -59zM480 509h-42l-142 84l-143 -84h-41l147 135h74'], + 0xE0CA: [845,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM524 786c0 -21 -23 -42 -59 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12 c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 38 27 38 37c0 13 -23 24 -53 24c-19 0 -32 -4 -35 -9l-14 -21l-36 7l28 49c32 9 52 14 73 14c60 0 103 -26 103 -59zM524 509h-44l-153 84l-154 -84h-43l157 135h79'], + 0xE0CB: [1022,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM523 1022c-4 -58 -56 -105 -118 -105c-24 0 -42 4 -75 19 c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-31c15 65 55 100 115 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31zM527 752h-42l-143 84l-142 -84h-41l146 135h75'], + 0xE0CC: [1022,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM571 1022c-5 -58 -61 -105 -127 -105 c-26 0 -45 4 -80 19c-43 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 60 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 52 13 69 50h34zM575 752h-45l-153 84l-153 -84h-44l157 135h80'], + 0xE0CD: [779,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM477 779c-5 -58 -57 -105 -119 -105c-24 0 -42 4 -74 19c-41 18 -63 26 -78 26 c-26 0 -43 -14 -58 -45h-31c15 65 55 100 115 100c27 0 40 -4 97 -30c27 -11 39 -15 52 -15c30 0 48 13 64 50h32zM480 509h-42l-142 84l-143 -84h-41l147 135h74'], + 0xE0CE: [779,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM521 779c-5 -58 -61 -105 -128 -105c-26 0 -44 4 -79 19c-44 18 -67 26 -83 26 c-28 0 -47 -14 -62 -45h-34c16 65 59 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 51 13 69 50h34zM524 509h-44l-153 84l-154 -84h-43l157 135h79'], + 0xE0CF: [869,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM289 819c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50 c31 0 53 -21 53 -50zM506 819c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE0D0: [869,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM320 819c0 -30 -24 -50 -59 -50s-58 20 -58 50 s23 50 59 50c34 0 58 -21 58 -50zM552 819c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE0D1: [642,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM241 592c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50c31 0 53 -21 53 -50zM458 592 c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE0D2: [642,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM268 592c0 -30 -23 -50 -58 -50c-36 0 -59 20 -59 50s23 50 60 50c34 0 57 -21 57 -50zM501 592 c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 60 50c33 0 57 -21 57 -50'], + 0xE0D3: [869,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM398 819c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50 c31 0 53 -21 53 -50'], + 0xE0D4: [869,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM437 819c0 -30 -24 -50 -59 -50s-58 20 -58 50 s23 50 59 50c34 0 58 -21 58 -50'], + 0xE0D5: [642,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM350 592c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE0D6: [642,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM385 592c0 -30 -23 -50 -58 -50c-36 0 -59 20 -59 50s23 50 60 50c34 0 57 -21 57 -50'], + 0xE0D7: [692,193,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM398 -143c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50 c31 0 53 -21 53 -50'], + 0xE0D8: [692,193,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM437 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50 s23 50 59 50c34 0 58 -21 58 -50'], + 0xE0D9: [469,193,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM350 -143c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE0DA: [469,193,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM385 -143c0 -30 -23 -50 -58 -50c-36 0 -59 20 -59 50s23 50 60 50c34 0 57 -21 57 -50'], + 0xE0DB: [888,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM457 749h-47l-170 73c-38 17 -47 24 -47 39s16 27 36 27 c19 -1 40 -9 65 -26'], + 0xE0DC: [888,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM500 749h-51l-182 73c-41 17 -50 24 -50 39 s17 27 38 27c20 -1 43 -9 70 -26'], + 0xE0DD: [677,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM393 506h-44l-157 90c-36 21 -44 29 -44 47c0 19 16 34 34 34c17 0 36 -11 60 -33'], + 0xE0DE: [677,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM431 506h-47l-169 90c-38 21 -46 29 -46 47c0 19 16 34 36 34c17 0 38 -11 64 -33'], + 0xE0DF: [946,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM438 887c0 -21 -21 -42 -55 -62c-35 -22 -42 -24 -42 -31 c0 0 6 -6 19 -17l-27 -12c-9 3 -30 20 -30 33c0 14 8 24 38 47c28 19 35 27 35 37c0 13 -20 24 -49 24c-17 0 -29 -4 -33 -9l-13 -21l-33 7l26 49c30 9 49 14 68 14c56 0 96 -26 96 -59'], + 0xE0E0: [946,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM480 887c0 -21 -24 -42 -60 -62 c-37 -22 -44 -24 -44 -31c0 0 6 -6 20 -17l-30 -12c-9 3 -31 20 -31 33c0 14 8 24 41 47c29 19 37 27 37 37c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 53 14 74 14c60 0 103 -26 103 -59'], + 0xE0E1: [703,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM390 644c0 -21 -21 -42 -55 -62c-35 -22 -42 -24 -42 -31c0 0 6 -6 19 -17l-27 -12 c-9 3 -30 20 -30 33c0 14 8 24 38 47c28 19 35 27 35 37c0 13 -20 24 -49 24c-17 0 -29 -4 -32 -9l-14 -21l-33 7l26 49c30 9 49 14 68 14c56 0 96 -26 96 -59'], + 0xE0E2: [703,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM428 644c0 -21 -23 -42 -59 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12 c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 38 27 38 37c0 13 -23 24 -53 24c-19 0 -32 -4 -35 -9l-14 -21l-36 7l28 49c32 9 52 14 73 14c60 0 103 -26 103 -59'], + 0xE0E3: [689,20,565,43,516,'516 206c0 -124 -118 -226 -260 -226c-123 0 -213 76 -213 179c0 52 21 97 63 135c24 21 42 32 87 51c-96 57 -125 95 -125 163c0 105 95 181 224 181c116 0 193 -58 193 -144c0 -60 -35 -102 -134 -164c124 -52 165 -95 165 -175zM430 164c0 54 -42 103 -110 131l-88 36 c-80 -45 -112 -91 -112 -164c0 -93 60 -153 153 -153c88 0 157 66 157 150zM411 534c0 73 -52 121 -132 121c-77 0 -129 -45 -129 -111c0 -50 34 -90 103 -121l60 -27c71 42 98 81 98 138'], + 0xE0E4: [689,20,625,55,563,'563 206c0 -124 -126 -226 -279 -226c-132 0 -229 76 -229 179c0 52 23 97 68 135c26 21 46 32 94 51c-103 57 -135 95 -135 163c0 105 102 181 241 181c124 0 207 -58 207 -144c0 -60 -37 -102 -144 -164c134 -52 177 -95 177 -175zM470 164c0 54 -44 103 -118 131 l-93 36c-87 -45 -121 -91 -121 -164c0 -93 65 -153 164 -153c95 0 168 66 168 150zM451 534c0 73 -57 121 -142 121c-83 0 -139 -45 -139 -111c0 -50 37 -90 111 -121l64 -27c76 42 106 81 106 138'], + 0xE0E5: [846,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM514 793h-341v53h341v-53'], + 0xE0E6: [846,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM561 793h-366v53h366v-53'], + 0xE0E7: [619,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM466 566h-340v53h340v-53'], + 0xE0E8: [619,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM509 566h-365v53h365v-53'], + 0xE0E9: [692,187,926,29,896,'896 662l-48 -3c-50 -3 -55 -12 -55 -90v-552c0 -106 -71 -204 -179 -204c-71 0 -141 22 -196 62l48 44c37 -40 91 -62 148 -62c64 0 84 71 84 139l-516 587v-463c0 -78 6 -87 56 -90l48 -3v-30l-131 3l-126 -3v30l47 3c51 3 56 12 56 90v449c0 78 -5 87 -56 90l-47 3v30 l130 -3c23 0 59 3 59 3l524 -594v471c0 78 -5 87 -55 90l-48 3v30l126 -3l131 3v-30'], + 0xE0EA: [692,187,1012,40,971,'971 662l-51 -3c-54 -3 -60 -12 -60 -90v-552c0 -106 -76 -204 -192 -204c-76 0 -151 22 -210 62l51 44c40 -40 98 -62 159 -62c69 0 90 71 90 139l-553 587v-463c0 -78 6 -87 60 -90l51 -3v-30l-140 3l-136 -3v30l51 3c54 3 60 12 60 90v449c0 78 -6 87 -60 90l-51 3v30 l140 -3c25 0 63 3 63 3l563 -594v471c0 78 -6 87 -59 90l-52 3v30l136 -3l140 3v-30'], + 0xE0EB: [469,167,654,17,548,'548 102c0 -138 -83 -269 -221 -269v34c120 0 130 144 130 272v142c0 77 -48 127 -121 127c-67 0 -139 -49 -139 -94v-212c0 -63 4 -70 41 -72l49 -3v-30l-135 3l-135 -3v30l49 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-87l83 66 c23 18 46 25 86 25c123 0 182 -57 182 -174v-193'], + 0xE0EC: [469,167,721,27,598,'598 102c0 -138 -90 -269 -238 -269v34c129 0 140 144 140 272v142c0 77 -52 127 -130 127c-72 0 -149 -49 -149 -94v-212c0 -63 4 -70 44 -72l52 -3v-30l-145 3l-145 -3v30l53 3c39 2 43 9 43 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-87l89 66 c25 18 49 25 93 25c131 0 195 -57 195 -174v-193'], + 0xE0ED: [692,250,686,34,633,'633 164c-10 -52 -17 -106 -17 -164h-1c-49 -1 -98 -15 -128 -51c-20 -25 -36 -53 -36 -81c0 -50 26 -72 53 -72c31 0 63 15 71 42l8 31l29 -7v-55l-41 -32c-27 -21 -63 -25 -99 -25c-64 0 -96 49 -96 92c0 60 48 117 109 156l-51 -1l-253 3l-134 -3v30l39 3 c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116 c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38'], + 0xE0EE: [692,250,755,46,689,'689 164c-11 -52 -18 -106 -18 -164h-2c-52 -1 -105 -15 -137 -51c-22 -25 -38 -53 -38 -81c0 -50 27 -72 56 -72c34 0 68 15 76 42l9 31l31 -7v-55l-43 -32c-30 -21 -68 -25 -107 -25c-69 0 -103 49 -103 92c0 60 52 117 117 156l-55 -1l-271 3l-144 -3v30l42 3 c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116 c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41'], + 0xE0EF: [469,250,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-3 -3 -9 -8 -19 -13c-36 -19 -69 -43 -94 -74c-20 -25 -36 -53 -36 -81c0 -50 25 -72 53 -72c31 0 63 15 70 42l9 31l29 -7 v-55l-41 -32c-27 -21 -63 -25 -99 -25c-64 0 -96 49 -96 92c0 53 37 104 88 142c-16 -3 -31 -4 -47 -4c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40 c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6'], + 0xE0F0: [469,250,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-2 -3 -9 -8 -20 -13c-39 -19 -74 -43 -101 -74c-22 -25 -38 -53 -38 -81c0 -50 27 -72 56 -72c34 0 68 15 76 42l9 31l31 -7 v-55l-44 -32c-29 -21 -67 -25 -106 -25c-69 0 -103 49 -103 92c0 53 40 104 95 142c-18 -3 -34 -4 -51 -4c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129 c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6'], + 0xE0F1: [692,3,864,25,829,'829 385c0 -107 -48 -215 -127 -286c-76 -69 -181 -102 -320 -102c-53 0 -106 3 -158 3l-152 -3v23l34 16c17 8 27 30 27 59v251h-108v36h108v187c0 78 -5 87 -55 90l-44 3v30l225 -3c63 0 126 3 189 3c230 0 381 -121 381 -307zM712 359c0 100 -25 172 -77 220 c-58 53 -156 73 -277 73c-55 0 -93 -3 -121 -8v-262h200v-36h-200v-297c28 -6 62 -8 112 -8c123 0 189 17 254 66c72 54 109 140 109 252'], + 0xE0F2: [692,3,946,36,899,'899 385c0 -107 -52 -215 -136 -286c-82 -69 -194 -102 -344 -102c-56 0 -114 3 -170 3l-162 -3v23l36 16c19 8 29 30 29 59v251h-116v36h116v187c0 78 -6 87 -59 90l-47 3v30l241 -3l203 3c247 0 409 -121 409 -307zM773 359c0 100 -26 172 -83 220 c-62 53 -167 73 -297 73c-58 0 -99 -3 -130 -8v-262h216v-36h-216v-297c31 -6 67 -8 121 -8c132 0 202 17 272 66c78 54 117 140 117 252'], + 0xE0F3: [728,20,615,45,559,'559 262c0 -168 -111 -282 -272 -282c-145 0 -242 96 -242 237c0 148 108 252 260 252c42 0 81 -8 117 -25l2 2c-30 62 -64 106 -107 142l-152 -68l-20 30l148 66c-33 29 -73 52 -133 80l37 32c80 -44 109 -62 145 -90l156 70l20 -30l-143 -64c59 -54 83 -82 112 -125 c48 -73 72 -147 72 -227zM463 240c0 62 -14 109 -42 141c-32 35 -77 55 -127 55c-94 0 -148 -66 -148 -184c0 -140 67 -239 160 -239c35 0 65 11 88 32c43 41 69 113 69 195'], + 0xE0F4: [728,20,679,57,610,'610 262c0 -168 -120 -282 -293 -282c-155 0 -260 96 -260 237c0 148 116 252 280 252c45 0 87 -8 125 -25l3 2c-33 62 -69 106 -115 142l-164 -68l-21 30l159 66c-36 29 -78 52 -143 80l40 32c86 -44 117 -62 156 -90l167 70l21 -30l-153 -64c63 -54 89 -82 120 -125 c52 -73 78 -147 78 -227zM507 240c0 62 -15 109 -46 141c-34 35 -83 55 -136 55c-101 0 -159 -66 -159 -184c0 -140 72 -239 172 -239c38 0 69 11 94 32c47 41 75 113 75 195'], + 0xE0F5: [872,3,686,34,633,'633 164c-10 -52 -17 -106 -17 -164l-182 -3l-253 3l-134 -3v30l39 3c52 4 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-39v65c0 23 -3 27 -29 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -128 -8v-267c48 -3 120 -4 175 -4 c47 0 67 4 76 38c6 19 6 52 6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-280c32 -6 52 -8 108 -8c98 0 178 5 201 12c15 5 29 36 36 79l5 34h38zM523 872c-4 -58 -56 -105 -118 -105c-24 0 -42 4 -75 19 c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-31c15 65 55 100 115 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31'], + 0xE0F6: [872,3,755,46,689,'689 164c-11 -52 -18 -106 -18 -164l-196 -3l-271 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l271 3l146 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -4 27 -32 34c-37 9 -103 14 -169 14c-81 0 -101 -1 -137 -8v-267 c51 -3 128 -4 187 -4c50 0 72 4 82 38c6 19 6 52 6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 190 5 215 12c16 5 31 36 38 79l6 34h41zM571 872c-5 -58 -61 -105 -127 -105 c-26 0 -45 4 -80 19c-43 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 60 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 52 13 69 50h34'], + 0xE0F7: [645,20,542,38,498,'498 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-159c2 -58 10 -86 30 -119c31 -49 90 -78 160 -78c47 0 72 9 142 47l14 -10l-21 -34c-5 -6 -28 -19 -57 -30c-45 -18 -85 -26 -126 -26c-81 0 -155 31 -198 84c-30 38 -46 92 -46 155c0 104 36 166 126 213 c44 24 91 37 132 37c122 0 202 -75 202 -190zM401 267c0 67 -11 96 -35 129c-19 27 -48 40 -84 40c-52 0 -99 -27 -122 -71c-14 -26 -18 -48 -18 -95c59 -5 87 -6 137 -6zM475 645c-4 -58 -56 -105 -118 -105c-24 0 -42 4 -75 19c-40 18 -62 26 -77 26 c-26 0 -43 -14 -58 -45h-31c15 65 55 100 115 100c26 0 40 -4 97 -30c26 -11 38 -15 52 -15c30 0 47 13 64 50h31'], + 0xE0F8: [645,20,600,50,544,'544 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c3 -58 11 -86 33 -119c33 -49 96 -78 172 -78c50 0 77 9 152 47l15 -10l-23 -34c-5 -6 -29 -19 -61 -30c-48 -18 -91 -26 -135 -26c-87 0 -167 31 -212 84c-33 38 -50 92 -50 155c0 104 39 166 135 213 c48 24 98 37 142 37c131 0 217 -75 217 -190zM440 267c0 67 -12 96 -37 129c-21 27 -52 40 -91 40c-56 0 -106 -27 -131 -71c-15 -26 -19 -48 -19 -95c63 -5 93 -6 147 -6zM520 645c-5 -58 -61 -105 -128 -105c-26 0 -44 4 -80 19c-43 18 -66 26 -83 26 c-28 0 -46 -14 -62 -45h-34c17 65 60 100 125 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c32 0 51 13 69 50h34'], + 0xE0F9: [689,20,565,8,556,'556 29c-17 -14 -65 -49 -179 -49c-194 0 -271 153 -285 296c-42 0 -69 -1 -84 -2l19 51c17 -3 28 -5 63 -5v56c-32 0 -67 0 -81 -1l20 51c15 -4 39 -6 67 -6c21 133 104 269 281 269c114 0 162 -35 179 -49c-3 -24 -17 -85 -17 -126h-34l-2 90c-21 34 -73 50 -131 50 c-86 0 -165 -90 -185 -234h186c36 0 70 2 97 6l-20 -52l-269 2c-1 -14 -1 -29 -1 -56c82 0 171 0 251 5l-20 -51l-229 2c17 -161 97 -261 190 -261c48 0 105 14 128 46l4 94h35c0 -41 14 -102 17 -126'], + 0xE0FA: [689,20,625,18,606,'606 29c-19 -14 -70 -49 -192 -49c-208 0 -291 153 -306 296c-45 0 -74 -1 -90 -2l21 51c17 -3 29 -5 66 -5v56c-34 0 -71 0 -86 -1l21 51c16 -4 42 -6 72 -6c23 133 112 269 302 269c122 0 173 -35 192 -49c-3 -24 -19 -85 -19 -126h-36l-2 90c-22 34 -79 50 -141 50 c-92 0 -176 -90 -198 -234h200c38 0 74 2 104 6l-21 -52l-289 2c-1 -14 -1 -29 -1 -56c87 0 183 0 269 5l-21 -51l-246 2c17 -161 104 -261 203 -261c52 0 113 14 138 46l4 94h37c0 -41 16 -102 19 -126'], + 0xE0FB: [694,5,323,98,225,'225 53c0 -31 -31 -58 -66 -58c-31 0 -61 28 -61 58s30 58 62 58c34 0 65 -28 65 -58zM221 669c0 -22 -2 -54 -7 -95l-32 -326v-25l-30 -23l-11 5l-2 40l-36 411l81 38h37v-25'], + 0xE0FC: [694,5,365,115,250,'250 53c0 -31 -32 -58 -70 -58c-34 0 -65 28 -65 58s31 58 66 58c37 0 69 -28 69 -58zM247 669c0 -22 -2 -54 -8 -95l-34 -326v-25l-33 -23l-12 5l-2 40l-39 411l88 38h40v-25'], + 0xE0FD: [454,245,323,98,225,'225 396c0 -30 -30 -58 -62 -58c-34 0 -65 28 -65 58c0 31 31 58 66 58c31 0 61 -28 61 -58zM220 -207l-81 -38h-37v25c0 22 2 54 7 95l32 326v25l30 23l11 -5l2 -40'], + 0xE0FE: [454,245,365,115,250,'250 396c0 -30 -31 -58 -66 -58c-36 0 -69 28 -69 58c0 31 33 58 70 58c34 0 65 -28 65 -58zM246 -207l-88 -38h-40v25c0 22 3 54 8 95l34 326v25l33 23l12 -5l2 -40'], + 0xE0FF: [692,3,626,34,594,'594 689c-12 -44 -17 -92 -17 -152h-38v65c0 23 -4 28 -30 34c-34 8 -95 14 -147 14c-64 0 -84 -1 -117 -8v-267c48 -3 114 -4 173 -4c48 0 75 4 78 38l6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32s-2 37 -6 59c-7 33 -28 37 -76 37l-175 -3v-207 c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l192 -3l235 3'], + 0xE100: [692,3,691,46,647,'647 689c-13 -44 -19 -92 -19 -152h-41v65c0 23 -3 28 -31 34c-36 8 -102 14 -158 14c-69 0 -90 -1 -125 -8v-267c51 -3 121 -4 185 -4c51 0 80 4 84 38l6 52h35c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-35s-2 37 -6 59c-8 33 -31 37 -82 37l-187 -3v-207 c0 -79 6 -87 59 -90l57 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l206 -3l252 3'], + 0xE101: [728,3,383,35,382,'382 640l-13 -6c-27 21 -46 28 -76 28c-62 0 -76 -28 -76 -143v-85c48 0 95 1 143 4l-8 -53h-135v-283c0 -63 3 -70 40 -72l51 -3v-30l-137 3l-136 -3v30l50 3c37 2 41 9 41 72v283l-76 -4v22l76 31v42c0 66 14 111 45 144l64 66c24 25 62 42 97 42c14 0 27 -3 50 -11 v-77'], + 0xE102: [728,3,430,47,419,'419 640l-14 -6c-28 21 -49 28 -81 28c-66 0 -82 -28 -82 -143v-85c52 0 102 1 154 4l-9 -53h-145v-283c0 -63 4 -70 44 -72l53 -3v-30l-146 3l-146 -3v30l54 3c40 2 43 9 43 72v283l-81 -4v22l81 31v42c0 66 15 111 49 144l68 66c26 25 67 42 104 42c15 0 29 -3 54 -11 v-77'], + 0xE103: [728,12,975,35,957,'957 17l-104 -29l-289 252v-138c0 -63 3 -70 40 -72l48 -3v-30l-132 3l-138 -3v30l50 3c37 2 40 9 40 72v518c0 30 -7 41 -27 41h-47v-21l-25 -6c-26 21 -50 28 -80 28c-62 0 -76 -27 -76 -143v-85c48 0 95 1 143 4l-8 -53h-135v-283c0 -63 3 -70 40 -72l51 -3v-30 l-137 3l-136 -3v30l50 3c37 2 41 9 41 72v283l-76 -4v22l76 31v42c0 66 14 111 45 144l64 66c25 26 62 42 95 42c17 0 46 -3 68 -11v-26c76 11 111 19 156 35l10 -8v-457l79 59c41 30 94 75 164 139h109v-30c-38 0 -67 -11 -118 -47l-141 -101c19 -20 32 -33 70 -68 l138 -125c34 -31 66 -48 92 -48v-23'], + 0xE104: [728,12,1065,47,1037,'1037 17l-113 -29l-310 252v-138c0 -63 4 -70 44 -72l51 -3v-30l-141 3l-149 -3v30l54 3c40 2 43 9 43 72v518c0 30 -8 41 -29 41h-50v-21l-27 -6c-28 21 -54 28 -86 28c-66 0 -82 -27 -82 -143v-85c52 0 102 1 154 4l-9 -53h-145v-283c0 -63 4 -70 44 -72l53 -3v-30 l-146 3l-146 -3v30l54 3c40 2 43 9 43 72v283l-81 -4v22l81 31v42c0 66 15 111 49 144l68 66c27 26 67 42 103 42c18 0 49 -3 73 -11v-26c81 11 119 19 167 35l10 -8v-457l86 59c43 30 100 75 175 139h117v-30c-41 0 -71 -11 -126 -47l-151 -101c20 -20 34 -33 75 -68 l147 -125c38 -31 72 -48 100 -48v-23'], + 0xE105: [728,3,699,35,698,'698 640l-13 -6c-26 21 -46 28 -76 28c-62 0 -76 -27 -76 -143v-85l143 4l-8 -53h-135v-283c0 -63 3 -70 41 -72l50 -3v-30l-137 3l-136 -3v30l50 3c37 2 41 9 41 72v283h-225v-283c0 -63 3 -70 40 -72l51 -3v-30l-137 3l-136 -3v30l50 3c37 2 41 9 41 72v283l-76 -4v22 l76 31v42c0 66 14 111 45 144l64 66c25 26 62 42 95 42c17 0 30 -3 52 -11v-77l-13 -6c-27 21 -46 28 -76 28c-62 0 -76 -27 -76 -143v-85h225v42c0 66 14 111 45 144l64 66c25 26 62 42 96 42c16 0 29 -3 51 -11v-77'], + 0xE106: [728,3,769,47,758,'758 640l-14 -6c-28 21 -49 28 -81 28c-66 0 -81 -27 -81 -143v-85l153 4l-8 -53h-145v-283c0 -63 3 -70 43 -72l54 -3v-30l-147 3l-146 -3v30l54 3c40 2 43 9 43 72v283h-241v-283c0 -63 4 -70 44 -72l53 -3v-30l-146 3l-146 -3v30l54 3c40 2 43 9 43 72v283l-81 -4v22 l81 31v42c0 66 15 111 49 144l68 66c27 26 67 42 103 42c18 0 32 -3 55 -11v-77l-14 -6c-28 21 -49 28 -81 28c-66 0 -82 -27 -82 -143v-85h241v42c0 66 16 111 49 144l68 66c27 26 67 42 103 42c18 0 32 -3 55 -11v-77'], + 0xE107: [728,3,998,35,965,'889 592c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50zM965 -3l-136 3l-137 -3v30l50 3c38 2 41 9 41 72v223c0 66 -5 73 -48 73h-40v28c64 7 122 21 170 43l9 -7v-360c0 -63 4 -70 41 -72l50 -3v-30zM697 640l-13 -6c-27 21 -46 28 -76 28 c-62 0 -76 -27 -76 -143v-85l132 4l-8 -53h-124v-283c0 -63 3 -70 40 -72l57 -3v-30l-142 3l-137 -3v30l50 3c37 2 41 9 41 72v283h-224v-283c0 -63 3 -70 40 -72l51 -3v-30l-137 3l-136 -3v30l50 3c37 2 41 9 41 72v283l-76 -4v22l76 31v42c0 66 14 111 45 144l64 66 c25 26 62 42 95 42c17 0 30 -3 52 -11v-77l-13 -6c-27 21 -46 28 -76 28c-62 0 -76 -27 -76 -143v-85h224v42c0 66 14 111 45 144l64 66c25 26 62 42 95 42c17 0 30 -3 52 -11v-77'], + 0xE108: [728,3,1089,47,1045,'963 592c0 -30 -23 -50 -58 -50c-36 0 -59 20 -59 50s23 50 60 50c34 0 57 -21 57 -50zM1045 -3l-146 3l-147 -3v30l54 3c40 2 44 9 44 72v223c0 66 -5 73 -52 73h-43v28c69 7 131 21 182 43l11 -7v-360c0 -63 3 -70 43 -72l54 -3v-30zM757 640l-14 -6 c-28 21 -49 28 -81 28c-66 0 -82 -27 -82 -143v-85l142 4l-8 -53h-134v-283c0 -63 4 -70 44 -72l61 -3v-30l-153 3l-147 -3v30l54 3c40 2 43 9 43 72v283h-240v-283c0 -63 4 -70 44 -72l53 -3v-30l-146 3l-146 -3v30l54 3c40 2 43 9 43 72v283l-81 -4v22l81 31v42 c0 66 15 111 49 144l68 66c27 26 67 42 103 42c18 0 32 -3 55 -11v-77l-14 -6c-28 21 -49 28 -81 28c-66 0 -82 -27 -82 -143v-85h240v42c0 66 15 111 49 144l68 66c27 26 67 42 103 42c18 0 32 -3 55 -11v-77'], + 0xE109: [728,3,1001,35,969,'969 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v504c0 36 -10 55 -27 55h-46v-21l-24 -6c-33 21 -52 28 -82 28c-61 0 -75 -28 -75 -143v-85l143 4l-8 -53h-135v-283c0 -63 3 -70 41 -72l56 -3v-30l-141 3l-138 -3v30l50 3c37 2 41 9 41 72v283h-225v-283 c0 -63 3 -70 40 -72l51 -3v-30l-137 3l-136 -3v30l50 3c37 2 41 9 41 72v283l-76 -4v22l76 31v42c0 66 14 111 45 144l64 66c25 26 62 42 95 42c17 0 30 -3 52 -11v-77l-13 -6c-27 21 -46 28 -76 28c-62 0 -76 -27 -76 -143v-85h225v42c0 66 14 111 45 144l64 66 c25 26 62 42 96 42c10 0 20 -1 43 -6c10 -2 12 -3 24 -5v-28c73 14 109 22 155 37l10 -10v-614c0 -63 3 -70 40 -72l50 -3v-30'], + 0xE10A: [728,3,1093,47,1050,'1050 -3l-147 3l-146 -3v30l54 3c40 2 43 9 43 72v504c0 36 -10 55 -29 55h-49v-21l-26 -6c-35 21 -56 28 -88 28c-65 0 -80 -28 -80 -143v-85l153 4l-8 -53h-145v-283c0 -63 3 -70 43 -72l61 -3v-30l-152 3l-148 -3v30l54 3c40 2 43 9 43 72v283h-241v-283 c0 -63 4 -70 44 -72l53 -3v-30l-146 3l-146 -3v30l54 3c40 2 43 9 43 72v283l-81 -4v22l81 31v42c0 66 15 111 49 144l68 66c27 26 67 42 103 42c18 0 32 -3 55 -11v-77l-14 -6c-28 21 -49 28 -81 28c-66 0 -82 -27 -82 -143v-85h241v42c0 66 16 111 49 144l68 66 c27 26 67 42 103 42c12 0 23 -1 47 -6c11 -2 13 -3 26 -5v-28c78 14 117 22 166 37l10 -10v-614c0 -63 4 -70 44 -72l54 -3v-30'], + 0xE10B: [728,3,679,35,650,'382 640l-13 -6c-27 21 -46 28 -76 28c-62 0 -76 -28 -76 -143v-85c48 0 95 1 143 4l-8 -53h-135v-283c0 -63 3 -70 40 -72l51 -3v-30l-137 3l-136 -3v30l50 3c37 2 41 9 41 72v283l-76 -4v22l76 31v42c0 66 14 111 45 144l64 66c24 25 62 42 97 42c14 0 27 -3 50 -11 v-77zM650 -3l-136 3l-137 -3v30l50 3c38 2 41 9 41 72v223c0 66 -5 73 -48 73h-40v28c64 7 122 21 170 43l9 -7v-360c0 -63 4 -70 41 -72l50 -3v-30zM574 592c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE10C: [728,3,748,47,707,'419 640l-14 -6c-28 21 -49 28 -81 28c-66 0 -82 -28 -82 -143v-85c52 0 102 1 154 4l-9 -53h-145v-283c0 -63 4 -70 44 -72l53 -3v-30l-146 3l-146 -3v30l54 3c40 2 43 9 43 72v283l-81 -4v22l81 31v42c0 66 15 111 49 144l68 66c26 25 67 42 104 42c15 0 29 -3 54 -11 v-77zM707 -3l-146 3l-147 -3v30l54 3c40 2 43 9 43 72v223c0 66 -4 73 -51 73h-43v28c69 7 131 21 182 43l11 -7v-360c0 -63 3 -70 43 -72l54 -3v-30zM625 592c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 60 50c33 0 57 -21 57 -50'], + 0xE10D: [689,20,565,24,510,'510 253c0 -74 -35 -142 -101 -196c-60 -48 -137 -77 -210 -77c-47 0 -91 9 -121 24c-16 44 -29 76 -54 133l26 14l50 -82c16 -26 70 -44 129 -44c119 0 189 65 189 176c0 108 -66 176 -170 176c-54 0 -83 -14 -134 -61l-22 6c3 44 6 137 6 225l-2 137l6 5l189 -5l190 5 l5 -5c-2 -18 -2 -24 -2 -40c0 -15 0 -21 2 -39l-5 -5l-333 5l-9 -209c67 37 106 50 159 50c124 0 212 -80 212 -193'], + 0xE10E: [689,20,625,35,557,'557 253c0 -74 -37 -142 -109 -196c-64 -48 -147 -77 -226 -77c-50 0 -97 9 -129 24c-17 44 -31 76 -58 133l28 14l54 -82c16 -26 75 -44 138 -44c128 0 203 65 203 176c0 108 -71 176 -183 176c-57 0 -89 -14 -144 -61l-23 6c3 44 7 137 7 225l-3 137l6 5l204 -5l203 5 l6 -5c-2 -18 -2 -24 -2 -40c0 -15 0 -21 2 -39l-6 -5l-356 5l-11 -209c73 37 115 50 171 50c133 0 228 -80 228 -193'], + 0xE10F: [728,3,683,35,653,'653 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v504c0 36 -10 55 -27 55h-46v-21l-24 -6c-33 21 -52 28 -82 28c-61 0 -75 -28 -75 -143v-85c48 0 95 1 143 4l-8 -53h-135v-283c0 -63 3 -70 40 -72l57 -3v-30l-142 3l-137 -3v30l50 3c37 2 41 9 41 72v283l-76 -4v22 l76 31v42c0 66 14 111 45 144l64 66c25 26 62 42 95 42c11 0 21 -1 44 -6c10 -2 12 -3 24 -5v-28c73 14 109 22 155 37l10 -10v-614c0 -63 3 -70 40 -72l50 -3v-30'], + 0xE110: [728,3,751,47,710,'710 -3l-146 3l-146 -3v30l54 3c39 2 43 9 43 72v504c0 36 -11 55 -29 55h-49v-21l-26 -6c-35 21 -56 28 -88 28c-65 0 -81 -28 -81 -143v-85c52 0 102 1 154 4l-9 -53h-145v-283c0 -63 4 -70 44 -72l60 -3v-30l-152 3l-147 -3v30l54 3c40 2 43 9 43 72v283l-81 -4v22 l81 31v42c0 66 15 111 49 144l68 66c27 26 67 42 103 42c12 0 22 -1 47 -6c10 -2 13 -3 26 -5v-28c78 14 117 22 166 37l10 -10v-614c0 -63 4 -70 43 -72l54 -3v-30'], + 0xE111: [694,3,565,12,524,'524 -3l-166 3l-176 -3v30l68 3c53 2 65 16 65 76v75h-291l-12 23l309 463l80 27l13 -5c-5 -41 -7 -127 -7 -305v-139h29c35 0 88 3 88 3v-71c-30 3 -53 4 -117 4v-75c0 -60 12 -73 65 -76l52 -3v-30zM315 245v352l-234 -352h234'], + 0xE112: [694,3,625,22,572,'572 -3l-179 3l-188 -3v30l72 3c58 2 71 16 71 76v75h-313l-13 23l331 463l87 27l14 -5c-6 -41 -8 -127 -8 -305v-139h31c38 0 95 3 95 3v-71c-33 3 -57 4 -126 4v-75c0 -60 13 -73 70 -76l56 -3v-30zM348 245v352l-252 -352h252'], + 0xE113: [709,20,852,34,804,'804 246l-32 -10c-11 -4 -12 -6 -12 -37v-168c-148 -38 -224 -51 -301 -51c-126 0 -243 41 -319 109c-68 62 -106 151 -106 252c0 222 185 368 466 368c88 0 143 -9 264 -41c-15 -54 -22 -101 -22 -152h-33v53c0 38 -28 61 -91 80c-41 12 -89 18 -146 18 c-204 0 -321 -112 -321 -305c0 -208 137 -340 353 -340c72 0 137 14 149 33c4 7 7 19 7 43v101c0 24 -10 33 -37 35l-91 7v30l133 -3l134 3'], + 0xE114: [709,20,933,46,872,'872 246l-34 -10c-12 -4 -13 -6 -13 -37v-168c-159 -38 -240 -51 -323 -51c-136 0 -261 41 -343 109c-72 62 -113 151 -113 252c0 222 199 368 500 368c94 0 154 -9 284 -41c-17 -54 -24 -101 -24 -152h-36v53c0 38 -29 61 -97 80c-45 12 -96 18 -157 18 c-219 0 -345 -112 -345 -305c0 -208 147 -340 379 -340c77 0 147 14 160 33c5 7 7 19 7 43v101c0 24 -10 33 -39 35l-98 7v30l143 -3l144 3'], + 0xE115: [469,283,626,45,603,'603 419l-27 -41h-101c9 -21 12 -34 12 -54c0 -53 -24 -93 -73 -126c-44 -29 -102 -48 -149 -48c-9 0 -15 1 -26 2c-4 -4 -7 -6 -13 -11c-29 -22 -37 -33 -37 -46c0 -27 26 -39 83 -39h174c76 0 129 -50 129 -122c0 -122 -130 -217 -295 -217c-138 0 -235 63 -235 154 c0 31 15 68 30 76l95 47c-52 14 -72 30 -72 58c0 15 6 28 17 43l86 61c-81 8 -131 59 -131 133c0 61 32 110 93 142c44 24 100 38 148 38c53 0 92 -12 133 -42l155 4zM396 294c0 85 -50 141 -124 141c-70 0 -110 -45 -110 -122s49 -129 122 -129c66 0 112 45 112 110z M489 -102c0 65 -43 88 -166 88c-75 0 -106 -3 -123 -10c-44 -18 -72 -58 -72 -103c0 -74 65 -125 160 -125c114 0 201 64 201 150'], + 0xE116: [469,283,691,57,656,'656 419l-29 -41h-107c9 -21 12 -34 12 -54c0 -53 -25 -93 -78 -126c-48 -29 -110 -48 -160 -48c-10 0 -17 1 -28 2c-5 -4 -7 -6 -14 -11c-31 -22 -40 -33 -40 -46c0 -27 28 -39 89 -39h187c82 0 138 -50 138 -122c0 -122 -139 -217 -316 -217c-148 0 -253 63 -253 154 c0 31 17 68 33 76l102 47c-56 14 -77 30 -77 58c0 15 6 28 17 43l93 61c-87 8 -141 59 -141 133c0 61 34 110 100 142c48 24 107 38 159 38c57 0 99 -12 143 -42l166 4zM434 294c0 85 -54 141 -133 141c-75 0 -118 -45 -118 -122s52 -129 131 -129c71 0 120 45 120 110z M534 -102c0 65 -46 88 -178 88c-81 0 -114 -3 -132 -10c-47 -18 -78 -58 -78 -103c0 -74 71 -125 172 -125c123 0 216 64 216 150'], + 0xE117: [884,20,852,34,804,'804 246l-32 -10c-11 -4 -12 -6 -12 -37v-168c-148 -38 -224 -51 -301 -51c-126 0 -243 41 -319 109c-68 62 -106 151 -106 252c0 222 185 368 466 368c88 0 143 -9 264 -41c-15 -54 -22 -101 -22 -152h-33v53c0 38 -28 61 -91 80c-41 12 -89 18 -146 18 c-204 0 -321 -112 -321 -305c0 -208 137 -340 353 -340c72 0 137 14 149 33c4 7 7 19 7 43v101c0 24 -10 33 -37 35l-91 7v30l133 -3l134 3zM625 884c-7 -84 -71 -129 -167 -129s-160 45 -166 129h35c5 -47 58 -80 131 -80c74 0 128 33 131 80h36'], + 0xE118: [884,20,933,46,872,'872 246l-34 -10c-12 -4 -13 -6 -13 -37v-168c-159 -38 -240 -51 -323 -51c-136 0 -261 41 -343 109c-72 62 -113 151 -113 252c0 222 199 368 500 368c94 0 154 -9 284 -41c-17 -54 -24 -101 -24 -152h-36v53c0 38 -29 61 -97 80c-45 12 -96 18 -157 18 c-219 0 -345 -112 -345 -305c0 -208 147 -340 379 -340c77 0 147 14 160 33c5 7 7 19 7 43v101c0 24 -10 33 -39 35l-98 7v30l143 -3l144 3zM680 884c-7 -84 -76 -129 -179 -129s-172 45 -178 129h37c5 -47 62 -80 141 -80s137 33 140 80h39'], + 0xE119: [671,283,626,45,603,'603 419l-27 -41h-101c9 -21 12 -34 12 -54c0 -53 -24 -93 -73 -126c-44 -29 -102 -48 -149 -48c-9 0 -15 1 -26 2c-4 -4 -7 -6 -13 -11c-29 -22 -37 -33 -37 -46c0 -27 26 -39 83 -39h174c76 0 129 -50 129 -122c0 -122 -130 -217 -295 -217c-138 0 -235 63 -235 154 c0 31 15 68 30 76l95 47c-52 14 -72 30 -72 58c0 15 6 28 17 43l86 61c-81 8 -131 59 -131 133c0 61 32 110 93 142c44 24 100 38 148 38c53 0 92 -12 133 -42l155 4zM396 294c0 85 -50 141 -124 141c-70 0 -110 -45 -110 -122s49 -129 122 -129c66 0 112 45 112 110z M489 -102c0 65 -43 88 -166 88c-75 0 -106 -3 -123 -10c-44 -18 -72 -58 -72 -103c0 -74 65 -125 160 -125c114 0 201 64 201 150zM465 671c-3 -44 -9 -66 -27 -93c-26 -42 -72 -65 -127 -65c-59 0 -106 25 -132 71c-14 26 -20 46 -22 87h33c3 -57 53 -98 121 -98 c67 0 118 41 121 98h33'], + 0xE11A: [671,283,691,57,656,'656 419l-29 -41h-107c9 -21 12 -34 12 -54c0 -53 -25 -93 -78 -126c-48 -29 -110 -48 -160 -48c-10 0 -17 1 -28 2c-5 -4 -7 -6 -14 -11c-31 -22 -40 -33 -40 -46c0 -27 28 -39 89 -39h187c82 0 138 -50 138 -122c0 -122 -139 -217 -316 -217c-148 0 -253 63 -253 154 c0 31 17 68 33 76l102 47c-56 14 -77 30 -77 58c0 15 6 28 17 43l93 61c-87 8 -141 59 -141 133c0 61 34 110 100 142c48 24 107 38 159 38c57 0 99 -12 143 -42l166 4zM434 294c0 85 -54 141 -133 141c-75 0 -118 -45 -118 -122s52 -129 131 -129c71 0 120 45 120 110z M534 -102c0 65 -46 88 -178 88c-81 0 -114 -3 -132 -10c-47 -18 -78 -58 -78 -103c0 -74 71 -125 172 -125c123 0 216 64 216 150zM508 671c-2 -44 -9 -66 -28 -93c-28 -42 -77 -65 -137 -65c-63 0 -114 25 -142 71c-15 26 -21 46 -23 87h35c4 -57 57 -98 130 -98 c72 0 126 41 130 98h35'], + 0xE11B: [709,271,852,34,804,'804 246l-32 -10c-11 -4 -12 -6 -12 -37v-168c-148 -38 -224 -51 -301 -51c-126 0 -243 41 -319 109c-68 62 -106 151 -106 252c0 222 185 368 466 368c88 0 143 -9 264 -41c-15 -54 -22 -101 -22 -152h-33v53c0 38 -28 61 -91 80c-41 12 -89 18 -146 18 c-204 0 -321 -112 -321 -305c0 -208 137 -340 353 -340c72 0 137 14 149 33c4 7 7 19 7 43v101c0 24 -10 33 -37 35l-91 7v30l133 -3l134 3zM508 -88c-29 -70 -52 -103 -103 -164l-39 -19l-13 9c42 62 52 96 58 160c46 12 54 15 86 25'], + 0xE11C: [709,271,933,46,872,'872 246l-34 -10c-12 -4 -13 -6 -13 -37v-168c-159 -38 -240 -51 -323 -51c-136 0 -261 41 -343 109c-72 62 -113 151 -113 252c0 222 199 368 500 368c94 0 154 -9 284 -41c-17 -54 -24 -101 -24 -152h-36v53c0 38 -29 61 -97 80c-45 12 -96 18 -157 18 c-219 0 -345 -112 -345 -305c0 -208 147 -340 379 -340c77 0 147 14 160 33c5 7 7 19 7 43v101c0 24 -10 33 -39 35l-98 7v30l143 -3l144 3zM555 -88c-32 -70 -56 -103 -111 -164l-41 -19l-14 9c44 62 55 96 62 160c49 12 57 15 92 25'], + 0xE11D: [709,283,626,45,603,'388 700c-41 -62 -51 -96 -58 -160c-45 -12 -53 -15 -86 -25l-11 11c30 70 53 103 104 164l38 19zM603 419l-27 -41h-101c9 -21 12 -34 12 -54c0 -53 -24 -93 -73 -126c-44 -29 -102 -48 -149 -48c-9 0 -15 1 -26 2c-4 -4 -7 -6 -13 -11c-29 -22 -37 -33 -37 -46 c0 -27 26 -39 83 -39h174c76 0 129 -50 129 -122c0 -122 -130 -217 -295 -217c-138 0 -235 63 -235 154c0 31 15 68 30 76l95 47c-52 14 -72 30 -72 58c0 15 6 28 17 43l86 61c-81 8 -131 59 -131 133c0 61 32 110 93 142c44 24 100 38 148 38c53 0 92 -12 133 -42l155 4z M396 294c0 85 -50 141 -124 141c-70 0 -110 -45 -110 -122s49 -129 122 -129c66 0 112 45 112 110zM489 -102c0 65 -43 88 -166 88c-75 0 -106 -3 -123 -10c-44 -18 -72 -58 -72 -103c0 -74 65 -125 160 -125c114 0 201 64 201 150'], + 0xE11E: [709,283,691,57,656,'426 700c-44 -62 -55 -96 -62 -160c-49 -12 -57 -15 -92 -25l-12 11c31 70 56 103 111 164l41 19zM656 419l-29 -41h-107c9 -21 12 -34 12 -54c0 -53 -25 -93 -78 -126c-48 -29 -110 -48 -160 -48c-10 0 -17 1 -28 2c-5 -4 -7 -6 -14 -11c-31 -22 -40 -33 -40 -46 c0 -27 28 -39 89 -39h187c82 0 138 -50 138 -122c0 -122 -139 -217 -316 -217c-148 0 -253 63 -253 154c0 31 17 68 33 76l102 47c-56 14 -77 30 -77 58c0 15 6 28 17 43l93 61c-87 8 -141 59 -141 133c0 61 34 110 100 142c48 24 107 38 159 38c57 0 99 -12 143 -42l166 4z M434 294c0 85 -54 141 -133 141c-75 0 -118 -45 -118 -122s52 -129 131 -129c71 0 120 45 120 110zM534 -102c0 65 -46 88 -178 88c-81 0 -114 -3 -132 -10c-47 -18 -78 -58 -78 -103c0 -74 71 -125 172 -125c123 0 216 64 216 150'], + 0xE11F: [709,20,1221,54,1168,'576 230c0 -145 -138 -250 -327 -250c-64 0 -127 13 -189 38c7 45 9 67 9 113c0 6 0 22 -1 40h35l8 -67c6 -41 91 -80 178 -80c113 0 195 65 195 155c0 38 -13 66 -41 88c-29 22 -67 34 -151 45c-105 13 -156 29 -193 60c-31 27 -45 63 -45 112c0 131 117 225 280 225 c60 0 109 -10 196 -42c-11 -54 -15 -88 -15 -141h-35l-7 57c-3 29 -15 44 -51 61c-29 15 -70 23 -112 23c-96 0 -165 -60 -165 -144c0 -77 47 -110 180 -126c122 -15 168 -28 206 -61c31 -26 45 -59 45 -106zM1168 230c0 -145 -138 -250 -327 -250c-64 0 -127 13 -189 38 c7 45 9 67 9 113c0 6 0 22 -1 40h35l8 -67c6 -41 91 -80 178 -80c113 0 195 65 195 155c0 38 -13 66 -41 88c-29 22 -67 34 -151 45c-106 13 -156 29 -193 60c-31 27 -46 63 -46 112c0 131 118 225 281 225c60 0 109 -10 196 -42c-11 -54 -15 -88 -15 -141h-35l-7 57 c-3 29 -15 44 -51 61c-30 15 -70 23 -112 23c-96 0 -165 -60 -165 -144c0 -77 47 -110 180 -126c122 -15 168 -28 206 -61c30 -26 45 -59 45 -106'], + 0xE120: [709,20,1329,67,1263,'627 230c0 -145 -147 -250 -351 -250c-68 0 -135 13 -202 38c7 45 9 67 9 113c0 6 0 22 -1 40h37l10 -67c6 -41 97 -80 191 -80c121 0 209 65 209 155c0 38 -14 66 -45 88c-30 22 -71 34 -161 45c-113 13 -167 29 -207 60c-34 27 -49 63 -49 112c0 131 126 225 300 225 c65 0 117 -10 211 -42c-12 -54 -16 -88 -16 -141h-38l-7 57c-3 29 -16 44 -55 61c-31 15 -75 23 -120 23c-103 0 -177 -60 -177 -144c0 -77 50 -110 193 -126c131 -15 180 -28 221 -61c33 -26 48 -59 48 -106zM1263 230c0 -145 -148 -250 -351 -250c-68 0 -136 13 -203 38 c7 45 9 67 9 113c0 6 0 22 -1 40h38l9 -67c6 -41 97 -80 191 -80c122 0 209 65 209 155c0 38 -14 66 -44 88c-31 22 -72 34 -162 45c-113 13 -167 29 -207 60c-34 27 -49 63 -49 112c0 131 126 225 301 225c64 0 117 -10 210 -42c-11 -54 -16 -88 -16 -141h-37l-7 57 c-4 29 -17 44 -55 61c-32 15 -75 23 -121 23c-103 0 -177 -60 -177 -144c0 -77 51 -110 193 -126c131 -15 181 -28 222 -61c32 -26 48 -59 48 -106'], + 0xE121: [731,9,626,35,576,'576 163c0 -41 -18 -85 -41 -101l-63 -44c-25 -18 -55 -27 -86 -27c-35 0 -66 6 -101 20v-14l-126 3l-124 -3v30l39 3c37 3 41 9 41 72v283h-76v14l76 35v66c0 39 13 71 50 118c54 68 141 113 221 113c97 0 165 -59 165 -144c0 -57 -15 -116 -48 -196 c-33 17 -52 23 -78 23c-35 0 -57 -17 -57 -43c0 -28 25 -50 93 -82c81 -37 115 -74 115 -126zM505 110c0 47 -27 76 -102 112c-81 39 -101 60 -101 105c0 23 7 42 21 56l42 43c22 22 62 35 113 35c6 24 12 57 12 82c0 88 -55 143 -143 143c-102 0 -141 -61 -141 -220v-359 c0 -59 13 -80 50 -80h31l23 85h29v-46c30 -24 48 -32 78 -32c50 0 88 32 88 76'], + 0xE122: [731,9,691,47,627,'627 163c0 -41 -18 -85 -43 -101l-68 -44c-27 -18 -60 -27 -92 -27c-38 0 -72 6 -109 20v-14l-135 3l-133 -3v30l42 3c40 3 43 9 43 72v283h-80v14l80 35v66c0 39 14 71 54 118c59 68 152 113 238 113c104 0 176 -59 176 -144c0 -57 -15 -116 -51 -196 c-35 17 -55 23 -83 23c-38 0 -62 -17 -62 -43c0 -28 27 -50 100 -82c87 -37 123 -74 123 -126zM551 110c0 47 -29 76 -109 112c-87 39 -108 60 -108 105c0 23 7 42 22 56l45 43c24 22 67 35 121 35c7 24 13 57 13 82c0 88 -59 143 -153 143c-109 0 -151 -61 -151 -220v-359 c0 -59 14 -80 53 -80h33l25 85h31v-46c32 -24 52 -32 83 -32c54 0 95 32 95 76'], + 0xE123: [677,-506,383,44,288,'288 506h-44l-157 90c-36 21 -43 29 -43 47c0 19 15 34 34 34c16 0 36 -11 60 -33'], + 0xE124: [677,-506,430,56,318,'318 506h-46l-169 90c-39 21 -47 29 -47 47c0 19 17 34 37 34c17 0 38 -11 64 -33'], + 0xE125: [428,-71,565,64,500,'281 86l-25 -15l-192 171v12l192 174l25 -13l-129 -167zM500 86l-25 -15l-191 171v12l191 174l25 -13l-129 -167'], + 0xE126: [428,-71,625,78,546,'311 86l-27 -15l-206 171v12l206 174l27 -13l-139 -167zM546 86l-26 -15l-206 171v12l206 174l26 -13l-139 -167'], + 0xE127: [428,-71,565,64,500,'500 242l-191 -171l-25 15l129 162l-129 167l25 13l191 -174v-12zM281 242l-191 -171l-26 15l130 162l-130 167l26 13l191 -174v-12'], + 0xE128: [428,-71,625,78,546,'546 242l-205 -171l-27 15l139 162l-139 167l27 13l205 -174v-12zM311 242l-206 -171l-27 15l140 162l-140 167l27 13l206 -174v-12'], + 0xE129: [428,-71,381,82,299,'299 86l-25 -15l-192 171v12l192 174l25 -13l-130 -167'], + 0xE12A: [428,-71,427,97,330,'330 86l-27 -15l-206 171v12l206 174l27 -13l-139 -167'], + 0xE12B: [428,-71,381,82,299,'299 242l-192 -171l-25 15l130 162l-130 167l25 13l192 -174v-12'], + 0xE12C: [428,-71,427,97,330,'330 242l-206 -171l-27 15l139 162l-139 167l27 13l206 -174v-12'], + 0xE12D: [692,3,927,34,893,'893 -3l-160 3l-159 -3v30l52 3c50 3 55 11 55 90v223c-29 2 -46 2 -90 2h-255c-44 0 -61 0 -91 -2v-223c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-178 l91 -2h255l90 2v178c0 79 -5 87 -55 90l-52 3v30l159 -3l160 3v-30l-52 -3c-51 -3 -56 -11 -56 -90v-449c0 -79 5 -87 56 -90l52 -3v-30'], + 0xE12E: [692,3,1013,46,968,'968 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v223c-32 2 -51 2 -97 2h-274c-47 0 -66 0 -97 -2v-223c0 -79 6 -87 59 -90l57 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-178 l97 -2h274l97 2v178c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-449c0 -79 6 -87 60 -90l56 -3v-30'], + 0xE12F: [726,3,654,17,633,'633 -3c-30 2 -59 3 -90 3c-28 0 -58 -1 -86 -3v284c0 77 -48 127 -121 127c-67 0 -139 -49 -139 -94v-212c0 -63 4 -70 41 -72l49 -3v-30l-135 3l-135 -3v30l49 3c37 2 40 9 40 72v518c0 30 -8 41 -27 41h-61v28c86 12 122 20 170 37l9 -8v-340l83 66c23 18 46 25 86 25 c123 0 182 -57 182 -174v-193c0 -64 4 -70 41 -72l44 -3v-30'], + 0xE130: [726,3,721,27,689,'689 -3c-33 2 -64 3 -97 3c-30 0 -62 -1 -92 -3v284c0 77 -52 127 -130 127c-72 0 -149 -49 -149 -94v-212c0 -63 4 -70 44 -72l52 -3v-30l-145 3l-145 -3v30l53 3c39 2 43 9 43 72v518c0 30 -8 41 -29 41h-66v28c93 12 131 20 183 37l10 -8v-340l89 66 c25 18 49 25 93 25c131 0 195 -57 195 -174v-193c0 -64 3 -70 43 -72l48 -3v-30'], + 0xE131: [703,-522,383,96,287,'287 644c0 -21 -22 -42 -56 -62c-35 -22 -41 -24 -41 -31c0 0 5 -6 18 -17l-27 -12c-9 3 -29 20 -29 33c0 14 7 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE132: [703,-522,430,112,317,'317 644c0 -21 -23 -42 -59 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 37 27 37 37c0 13 -22 24 -52 24c-19 0 -32 -4 -35 -9l-14 -21l-37 7l29 49c32 9 52 14 73 14c60 0 103 -26 103 -59'], + 0xE133: [683,-502,434,90,486,'323 650c0 -16 -11 -29 -43 -50l-147 -98h-43l139 148c19 20 43 33 60 33c19 0 34 -15 34 -33zM486 650c0 -16 -11 -29 -42 -50l-147 -98h-44l140 148c18 20 42 33 60 33s33 -15 33 -33'], + 0xE134: [683,-502,485,105,531,'356 650c0 -16 -12 -29 -46 -50l-158 -98h-47l150 148c20 20 46 33 65 33s36 -15 36 -33zM531 650c0 -16 -11 -29 -45 -50l-158 -98h-47l150 148c20 20 45 33 64 33c20 0 36 -15 36 -33'], + 0xE135: [287,-215,383,29,350,'350 282l-33 -67h-283l-5 5l29 67h287'], + 0xE136: [287,-215,430,40,385,'385 282l-35 -67h-304l-6 5l31 67h308'], + 0xE137: [692,3,387,34,353,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30'], + 0xE138: [692,3,434,46,389,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30'], + 0xE139: [642,3,337,33,305,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM224 592c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE13A: [642,3,380,45,337,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM249 592c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE13B: [888,3,387,34,353,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM344 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE13C: [888,3,434,46,389,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM378 861c0 -15 -9 -22 -50 -39l-183 -73h-50l174 113c27 17 51 25 70 26c21 0 39 -12 39 -27'], + 0xE13D: [677,3,333,33,316,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM316 643c0 -18 -7 -26 -43 -47l-157 -90h-44l151 138c24 22 43 33 59 33c19 0 34 -15 34 -34'], + 0xE13E: [677,3,376,45,349,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM349 643c0 -18 -8 -26 -47 -47l-169 -90h-46l161 138c26 22 47 33 64 33c20 0 37 -15 37 -34'], + 0xE13F: [887,3,387,10,377,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM377 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE140: [887,3,434,20,414,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM414 752h-44l-153 84l-154 -84h-43l157 135h79'], + 0xE141: [676,3,333,-1,339,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM339 509h-38l-132 103l-132 -103h-38l136 167h68'], + 0xE142: [676,3,376,8,373,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM373 509h-41l-141 103l-142 -103h-41l147 167h72'], + 0xE143: [869,3,387,32,358,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM141 819c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50zM358 819 c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50'], + 0xE144: [869,3,434,43,393,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM160 819c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50zM393 819 c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE145: [642,3,333,6,332,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM115 592c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50zM332 592c0 -30 -22 -50 -55 -50 s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE146: [642,3,376,15,365,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM132 592c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50zM365 592c0 -30 -23 -50 -58 -50 s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE147: [869,3,387,34,353,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM249 819c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50'], + 0xE148: [869,3,434,46,389,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM276 819c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE149: [692,193,387,34,353,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM249 -143c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50'], + 0xE14A: [692,193,434,46,389,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM276 -143c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE14B: [642,193,333,33,305,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM224 592c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50zM224 -143c0 -30 -22 -50 -55 -50 s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE14C: [642,193,376,45,337,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM249 592c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50zM249 -143c0 -30 -23 -50 -58 -50 s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE14D: [888,3,387,34,353,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM309 749h-47l-170 73c-38 17 -47 24 -47 39s16 27 36 27c18 -1 40 -9 65 -26'], + 0xE14E: [888,3,434,46,389,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM341 749h-51l-182 73c-41 17 -51 24 -51 39s18 27 39 27c20 -1 43 -9 70 -26'], + 0xE14F: [677,3,333,22,305,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM266 506h-43l-157 90c-36 21 -44 29 -44 47c0 19 15 34 34 34c16 0 36 -11 60 -33'], + 0xE150: [677,3,376,33,337,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM295 506h-47l-168 90c-39 21 -47 29 -47 47c0 19 16 34 36 34c18 0 39 -11 64 -33'], + 0xE151: [946,3,387,34,353,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM289 887c0 -21 -22 -42 -56 -62c-34 -22 -41 -24 -41 -31c0 0 5 -6 19 -17l-28 -12 c-8 3 -29 20 -29 33c0 14 8 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE152: [946,3,434,46,389,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM320 887c0 -21 -24 -42 -60 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12 c-9 3 -32 20 -32 33c0 14 9 24 41 47c30 19 38 27 38 37c0 13 -22 24 -53 24c-19 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 52 14 74 14c59 0 103 -26 103 -59'], + 0xE153: [703,3,333,33,305,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM264 644c0 -21 -22 -42 -56 -62c-35 -22 -41 -24 -41 -31c0 0 5 -6 18 -17l-27 -12c-8 3 -29 20 -29 33c0 14 7 24 38 47 c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE154: [703,3,376,45,337,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM293 644c0 -21 -24 -42 -60 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-9 3 -31 20 -31 33c0 14 8 24 40 47 c30 19 38 27 38 37c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 53 14 74 14c59 0 103 -26 103 -59'], + 0xE155: [692,195,809,54,756,'373 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM756 662l-53 -3c-50 -3 -55 -11 -55 -90v-452c0 -121 -15 -171 -68 -231 c-42 -49 -111 -85 -148 -81l-26 3l-6 76l12 6c25 -14 47 -20 73 -20c44 0 59 29 59 113v586c0 79 -5 87 -55 90l-53 3v30l159 -3l161 3v-30'], + 0xE156: [692,195,887,67,820,'410 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM820 662l-56 -3c-54 -3 -60 -11 -60 -90v-452c0 -121 -15 -171 -72 -231 c-46 -49 -119 -85 -159 -81l-28 3l-6 76l13 6c27 -14 50 -20 78 -20c47 0 63 29 63 113v586c0 79 -6 87 -59 90l-57 3v30l171 -3l172 3v-30'], + 0xE157: [642,283,575,54,530,'326 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 114 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM244 592c0 -30 -21 -50 -54 -50s-55 20 -55 50s22 50 56 50c32 0 53 -21 53 -50zM521 -19c0 -79 -19 -143 -58 -189 c-41 -50 -82 -71 -146 -75l-13 38c10 -2 24 -3 33 -3c63 0 93 75 93 241v334c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-484zM530 592c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE158: [642,283,636,67,578,'359 -3l-146 3l-146 -3v30l54 3c39 2 43 9 43 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-363c0 -63 4 -70 43 -72l54 -3v-30zM272 592c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50zM569 -19c0 -79 -21 -143 -62 -189 c-45 -50 -89 -71 -157 -75l-14 38c10 -2 26 -3 35 -3c68 0 99 75 99 241v334c0 66 -4 73 -51 73h-43v28c62 6 123 20 182 41l11 -4v-484zM578 592c0 -30 -23 -50 -58 -50c-36 0 -59 20 -59 50s23 50 60 50c34 0 57 -21 57 -50'], + 0xE159: [846,3,387,25,365,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM365 793h-340v53h340v-53'], + 0xE15A: [846,3,434,36,401,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM401 793h-365v53h365v-53'], + 0xE15B: [619,3,333,-1,339,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM339 566h-340v53h340v-53'], + 0xE15C: [619,3,376,8,373,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM373 566h-365v53h365v-53'], + 0xE15D: [692,250,387,34,353,'353 -3l-48 2c-43 1 -75 -31 -99 -65c-14 -21 -24 -44 -24 -66c0 -50 25 -72 53 -72c31 0 63 15 70 42l9 31l28 -7v-55l-40 -32c-27 -21 -63 -25 -99 -25c-64 0 -96 49 -96 92c0 61 50 119 112 158h-26l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30 l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30'], + 0xE15E: [692,250,434,46,389,'389 -3l-52 2c-47 1 -81 -31 -106 -65c-16 -21 -26 -44 -26 -66c0 -50 27 -72 56 -72c34 0 68 15 76 42l9 31l31 -7v-55l-43 -32c-30 -21 -68 -25 -107 -25c-69 0 -103 49 -103 92c0 61 54 119 121 158h-28l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90 l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30'], + 0xE15F: [642,250,337,33,305,'305 -3l-48 2c-36 1 -65 -23 -87 -50c-20 -25 -36 -53 -36 -81c0 -50 25 -72 53 -72c31 0 63 15 70 42l9 31l28 -7v-55l-40 -32c-27 -21 -63 -25 -99 -25c-64 0 -96 49 -96 92c0 61 50 119 112 158h-2l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28 c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM201 592c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50'], + 0xE160: [642,250,380,45,337,'337 -3l-51 2c-39 1 -71 -23 -94 -50c-22 -25 -39 -53 -39 -81c0 -50 27 -72 57 -72c33 0 67 15 76 42l9 31l30 -7v-55l-43 -32c-29 -21 -68 -25 -106 -25c-69 0 -103 49 -103 92c0 61 53 119 120 158h-2l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28 c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM225 592c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE161: [872,3,387,15,375,'353 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30zM375 872c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26 c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31'], + 0xE162: [872,3,434,26,412,'389 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-449c0 -79 6 -87 59 -90l57 -3v-30zM412 872c-5 -58 -61 -105 -128 -105c-25 0 -44 4 -79 19c-43 18 -67 26 -83 26 c-28 0 -47 -14 -62 -45h-34c16 65 60 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 51 13 69 50h34'], + 0xE163: [645,3,333,-11,349,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-363c0 -63 3 -70 40 -72l50 -3v-30zM349 645c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32 c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32'], + 0xE164: [645,3,376,-2,384,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-363c0 -63 3 -70 43 -72l54 -3v-30zM384 645c-5 -58 -61 -105 -128 -105c-25 0 -44 4 -79 19c-44 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34 c16 65 59 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 51 13 69 50h34'], + 0xE165: [692,195,383,-6,349,'349 662l-52 -3c-50 -3 -56 -11 -56 -90v-452c0 -121 -14 -171 -68 -231c-42 -49 -111 -85 -148 -81l-26 3l-5 76l12 6c25 -14 47 -20 73 -20c43 0 59 29 59 113v586c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30'], + 0xE166: [692,195,430,2,384,'384 662l-56 -3c-54 -3 -60 -11 -60 -90v-452c0 -121 -15 -171 -73 -231c-45 -49 -119 -85 -159 -81l-28 3l-6 76l13 6c27 -14 51 -20 79 -20c47 0 63 29 63 113v586c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30'], + 0xE167: [642,283,275,-34,192,'183 -19c0 -79 -19 -143 -57 -189c-42 -50 -83 -71 -147 -75l-13 38c10 -2 24 -3 33 -3c63 0 93 75 93 241v334c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-484zM192 592c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE168: [642,283,314,-27,215,'206 -19c0 -79 -21 -143 -62 -189c-44 -50 -89 -71 -157 -75l-14 38c11 -2 26 -3 35 -3c68 0 100 75 100 241v334c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-484zM215 592c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE169: [692,3,811,34,794,'794 -3c-24 2 -47 3 -71 3c-30 0 -58 -1 -87 -3l-380 335l-11 -7v-205c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-214l303 271c18 16 32 33 32 39v27 c33 -2 64 -3 97 -3c30 0 58 1 87 3v-30l-46 -2c-28 -1 -55 -14 -85 -38l-289 -240l359 -312c34 -29 51 -40 68 -41l23 -2v-30'], + 0xE16A: [692,3,889,46,861,'861 -3c-26 2 -50 3 -76 3c-31 0 -62 -1 -93 -3l-408 335l-11 -7v-205c0 -79 6 -87 59 -90l57 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-214l325 271c19 16 34 33 34 39v27 c35 -2 69 -3 104 -3c32 0 62 1 94 3v-30l-50 -2c-30 -1 -59 -14 -91 -38l-311 -240l386 -312c36 -29 55 -40 73 -41l24 -2v-30'], + 0xE16B: [726,12,626,33,608,'608 17l-104 -29l-289 252v-138c0 -63 3 -70 40 -72l48 -3v-30l-133 3l-137 -3v30l50 3c37 2 40 9 40 72v518c0 30 -7 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-457l79 59c43 31 94 75 164 139h109v-30c-37 0 -67 -11 -118 -47l-140 -101c18 -20 30 -33 69 -68 l138 -125c35 -31 66 -48 92 -48v-23'], + 0xE16C: [726,12,691,45,662,'662 17l-112 -29l-310 252v-138c0 -63 3 -70 43 -72l52 -3v-30l-143 3l-147 -3v30l53 3c40 2 44 9 44 72v518c0 30 -9 41 -30 41h-65v28c92 12 131 20 182 37l11 -8v-457l85 59c46 31 101 75 176 139h117v-30c-40 0 -72 -11 -126 -47l-151 -101c19 -20 32 -33 74 -68 l148 -125c37 -31 71 -48 99 -48v-23'], + 0xE16D: [692,271,811,34,794,'794 -3c-24 2 -47 3 -71 3c-30 0 -58 -1 -87 -3l-380 335l-11 -7v-205c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-214l303 271c18 16 32 33 32 39v27 c33 -2 64 -3 97 -3c30 0 58 1 87 3v-30l-46 -2c-28 -1 -55 -14 -85 -38l-289 -240l359 -312c34 -29 51 -40 68 -41l23 -2v-30zM463 -88c-29 -70 -52 -103 -103 -164l-38 -19l-13 9c41 62 51 96 57 160c46 12 54 15 87 25'], + 0xE16E: [692,271,889,46,861,'861 -3c-26 2 -50 3 -76 3c-31 0 -62 -1 -93 -3l-408 335l-11 -7v-205c0 -79 6 -87 59 -90l57 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-214l325 271c19 16 34 33 34 39v27 c35 -2 69 -3 104 -3c32 0 62 1 94 3v-30l-50 -2c-30 -1 -59 -14 -91 -38l-311 -240l386 -312c36 -29 55 -40 73 -41l24 -2v-30zM507 -88c-32 -70 -56 -103 -111 -164l-41 -19l-14 9c44 62 55 96 62 160c49 12 57 15 92 25'], + 0xE16F: [726,271,626,33,608,'608 17l-104 -29l-289 252v-138c0 -63 3 -70 40 -72l48 -3v-30l-133 3l-137 -3v30l50 3c37 2 40 9 40 72v518c0 30 -7 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-457l79 59c43 31 94 75 164 139h109v-30c-37 0 -67 -11 -118 -47l-140 -101c18 -20 30 -33 69 -68 l138 -125c35 -31 66 -48 92 -48v-23zM352 -88c-29 -70 -52 -103 -103 -164l-38 -19l-14 9c42 62 52 96 58 160c46 12 54 15 86 25'], + 0xE170: [726,271,691,45,662,'662 17l-112 -29l-310 252v-138c0 -63 3 -70 43 -72l52 -3v-30l-143 3l-147 -3v30l53 3c40 2 44 9 44 72v518c0 30 -9 41 -30 41h-65v28c92 12 131 20 182 37l11 -8v-457l85 59c46 31 101 75 176 139h117v-30c-40 0 -72 -11 -126 -47l-151 -101c19 -20 32 -33 74 -68 l148 -125c37 -31 71 -48 99 -48v-23zM387 -88c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c45 62 55 96 62 160c49 12 58 15 93 25'], + 0xE171: [692,3,686,34,649,'649 172c-11 -97 -16 -129 -23 -172c-148 -3 -137 -3 -183 -3l-254 3c-36 0 -72 -1 -108 -3v23l34 16c17 8 27 30 27 59v474c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-522c29 -6 54 -8 93 -8c130 0 225 7 239 18c6 5 14 26 24 65 l13 50h35'], + 0xE172: [692,3,755,46,706,'706 172c-12 -97 -17 -129 -25 -172c-159 -3 -147 -3 -197 -3l-272 3l-116 -3v23l36 16c19 8 30 30 30 59v474c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-522c30 -6 57 -8 99 -8c139 0 241 7 256 18c7 5 16 26 26 65l14 50h38'], + 0xE173: [726,3,337,33,305,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v518c0 30 -7 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-616c0 -63 3 -70 40 -72l50 -3v-30'], + 0xE174: [726,3,380,45,337,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v518c0 30 -9 41 -30 41h-65v28c92 12 131 20 182 37l11 -8v-616c0 -63 3 -70 43 -72l54 -3v-30'], + 0xE175: [888,3,686,34,649,'649 172c-11 -97 -16 -129 -23 -172c-148 -3 -137 -3 -183 -3l-254 3c-36 0 -72 -1 -108 -3v23l34 16c17 8 27 30 27 59v474c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-522c29 -6 54 -8 93 -8c130 0 225 7 239 18c6 5 14 26 24 65 l13 50h35zM344 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE176: [888,3,755,46,706,'706 172c-12 -97 -17 -129 -25 -172c-159 -3 -147 -3 -197 -3l-272 3l-116 -3v23l36 16c19 8 30 30 30 59v474c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-522c30 -6 57 -8 99 -8c139 0 241 7 256 18c7 5 16 26 26 65l14 50h38z M378 861c0 -15 -9 -22 -50 -39l-183 -73h-50l174 113c27 17 51 25 70 26c21 0 39 -12 39 -27'], + 0xE177: [922,3,337,33,305,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v518c0 30 -7 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-616c0 -63 3 -70 40 -72l50 -3v-30zM304 895c0 -15 -8 -22 -47 -39l-170 -73h-46l162 113c25 17 47 25 65 26c20 0 36 -12 36 -27'], + 0xE178: [922,3,380,45,337,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v518c0 30 -9 41 -30 41h-65v28c92 12 131 20 182 37l11 -8v-616c0 -63 3 -70 43 -72l54 -3v-30zM336 895c0 -15 -9 -22 -50 -39l-183 -73h-50l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27'], + 0xE179: [692,3,686,34,649,'649 172c-11 -97 -16 -129 -23 -172c-148 -3 -137 -3 -183 -3l-254 3c-36 0 -72 -1 -108 -3v23l34 16c17 8 27 30 27 59v474c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-522c29 -6 54 -8 93 -8c130 0 225 7 239 18c6 5 14 26 24 65 l13 50h35zM552 681c-30 -70 -53 -103 -104 -164l-38 -19l-13 9c41 62 51 96 58 160c45 12 53 15 86 25'], + 0xE17A: [692,3,755,46,706,'706 172c-12 -97 -17 -129 -25 -172c-159 -3 -147 -3 -197 -3l-272 3l-116 -3v23l36 16c19 8 30 30 30 59v474c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-522c30 -6 57 -8 99 -8c139 0 241 7 256 18c7 5 16 26 26 65l14 50h38z M601 681c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c45 62 55 96 62 160c49 12 58 15 93 25'], + 0xE17B: [726,3,337,33,413,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v518c0 30 -7 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-616c0 -63 3 -70 40 -72l50 -3v-30zM413 715c-29 -70 -52 -103 -103 -164l-38 -19l-13 9c41 62 51 96 57 160c46 12 54 15 86 25'], + 0xE17C: [726,3,380,45,453,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v518c0 30 -9 41 -30 41h-65v28c92 12 131 20 182 37l11 -8v-616c0 -63 3 -70 43 -72l54 -3v-30zM453 715c-32 -70 -56 -103 -111 -164l-41 -19l-14 9c44 62 55 96 62 160c49 12 57 15 92 25'], + 0xE17D: [692,271,686,34,649,'649 172c-11 -97 -16 -129 -23 -172c-148 -3 -137 -3 -183 -3l-254 3c-36 0 -72 -1 -108 -3v23l34 16c17 8 27 30 27 59v474c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-522c29 -6 54 -8 93 -8c130 0 225 7 239 18c6 5 14 26 24 65 l13 50h35zM391 -88c-29 -70 -52 -103 -103 -164l-38 -19l-13 9c41 62 51 96 57 160c46 12 54 15 87 25'], + 0xE17E: [692,271,755,46,706,'706 172c-12 -97 -17 -129 -25 -172c-159 -3 -147 -3 -197 -3l-272 3l-116 -3v23l36 16c19 8 30 30 30 59v474c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-522c30 -6 57 -8 99 -8c139 0 241 7 256 18c7 5 16 26 26 65l14 50h38z M429 -88c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c45 62 55 96 62 160c50 12 58 15 93 25'], + 0xE17F: [726,271,337,33,305,'305 -3l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v518c0 30 -7 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-616c0 -63 3 -70 40 -72l50 -3v-30zM218 -88c-29 -70 -52 -103 -103 -164l-39 -19l-13 9c42 62 52 96 58 160c46 12 54 15 86 25'], + 0xE180: [726,271,380,45,337,'337 -3l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v518c0 30 -9 41 -30 41h-65v28c92 12 131 20 182 37l11 -8v-616c0 -63 3 -70 43 -72l54 -3v-30zM243 -88c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c45 62 55 96 62 160c49 12 58 15 93 25'], + 0xE181: [728,3,383,35,382,'382 640l-13 -6c-27 21 -46 28 -76 28c-62 0 -76 -28 -76 -143v-417c0 -63 3 -70 40 -72l51 -3v-30l-137 3l-136 -3v30l50 3c37 2 41 9 41 72v283l-76 -4v22l76 31v42c0 66 14 111 45 144l64 66c24 25 62 42 97 42c14 0 27 -3 50 -11v-77'], + 0xE182: [728,3,430,47,419,'419 640l-14 -6c-28 21 -49 28 -81 28c-66 0 -82 -28 -82 -143v-417c0 -63 4 -70 44 -72l53 -3v-30l-146 3l-146 -3v30l54 3c40 2 43 9 43 72v283l-81 -4v22l81 31v42c0 66 15 111 49 144l68 66c26 25 67 42 104 42c15 0 29 -3 54 -11v-77'], + 0xE183: [692,3,686,34,649,'649 172c-11 -97 -16 -129 -23 -172c-148 -3 -137 -3 -183 -3l-254 3c-36 0 -72 -1 -108 -3v23l34 16c17 8 27 30 27 59v219l-55 -41l-23 29l78 58v209c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-141l154 117l22 -29l-176 -134v-335 c29 -6 54 -8 93 -8c130 0 225 7 239 18c6 5 14 26 24 65l13 50h35'], + 0xE184: [692,3,755,46,706,'706 172c-12 -97 -17 -129 -25 -172c-159 -3 -147 -3 -197 -3l-272 3l-116 -3v23l36 16c19 8 30 30 30 59v219l-59 -41l-25 29l84 58v209c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-57 -3c-53 -3 -59 -11 -59 -90v-141l165 117l23 -29l-188 -134v-335 c30 -6 57 -8 99 -8c139 0 241 7 256 18c7 5 16 26 26 65l14 50h38'], + 0xE185: [726,3,337,10,333,'333 522l-118 -89v-331c0 -63 3 -70 40 -72l50 -3v-30l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v271l-90 -68l-23 29l113 85v201c0 30 -7 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-239l96 72'], + 0xE186: [726,3,380,20,366,'366 522l-126 -89v-331c0 -63 3 -70 43 -72l54 -3v-30l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v271l-97 -68l-25 29l122 85v201c0 30 -9 41 -30 41h-65v28c92 12 131 20 182 37l11 -8v-239l103 72'], + 0xE187: [692,13,1051,27,1019,'1019 -3l-164 3l-140 -3v30l37 3c52 4 56 11 56 90v458l-48 -86l-194 -378c-23 -45 -32 -73 -59 -127h-22l-304 591v-458c0 -78 6 -87 56 -90l48 -3v-30l-131 3l-127 -3v30l48 3c51 3 56 12 56 90v449c0 78 -5 87 -56 90l-48 3v30c35 -2 69 -3 104 -3s69 1 104 3 l287 -556l286 556c35 -2 69 -3 103 -3s68 1 102 3v-30l-46 -3c-50 -3 -56 -12 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30'], + 0xE188: [692,13,1147,39,1103,'1103 -3l-176 3l-150 -3v30l40 3c55 4 59 11 59 90v458l-51 -86l-208 -378c-25 -45 -34 -73 -63 -127h-24l-326 591v-458c0 -78 6 -87 59 -90l52 -3v-30l-141 3l-135 -3v30l51 3c54 3 60 12 60 90v449c0 78 -6 87 -60 90l-51 3v30l111 -3l111 3l309 -556l306 556l112 -3 c36 0 72 1 108 3v-30l-49 -3c-54 -3 -59 -12 -59 -90v-449c0 -79 5 -87 59 -90l56 -3v-30'], + 0xE189: [469,3,982,27,957,'957 -3c-32 2 -64 3 -97 3c-28 0 -58 -1 -86 -3v284c0 76 -40 127 -99 127c-66 0 -137 -49 -137 -94v-212c0 -63 3 -70 40 -72l50 -3v-30l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v179c0 76 -40 127 -99 127c-66 0 -138 -49 -138 -94v-212c0 -63 4 -70 41 -72l46 -3v-30 l-130 3l-139 -3v30l51 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-85l76 64c19 16 50 25 90 25c75 0 120 -27 155 -93l83 68c19 16 51 25 89 25c100 0 164 -62 164 -161v-206c0 -63 3 -70 40 -72l51 -3v-30'], + 0xE18A: [469,3,1073,39,1037,'1037 -3c-35 2 -69 3 -104 3c-31 0 -62 -1 -93 -3v284c0 76 -43 127 -106 127c-71 0 -148 -49 -148 -94v-212c0 -63 4 -70 44 -72l53 -3v-30l-146 3l-146 -3v30l54 3c39 2 43 9 43 72v179c0 76 -43 127 -106 127c-71 0 -148 -49 -148 -94v-212c0 -63 4 -70 43 -72l50 -3 v-30l-140 3l-148 -3v30l54 3c39 2 43 9 43 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-85l81 64c21 16 54 25 97 25c81 0 129 -27 166 -93l89 68c21 16 55 25 96 25c108 0 175 -62 175 -161v-206c0 -63 4 -70 44 -72l55 -3v-30'], + 0xE18B: [619,-566,383,22,362,'362 566h-340v53h340v-53'], + 0xE18C: [619,-566,430,33,398,'398 566h-365v53h365v-53'], + 0xE18D: [449,262,762,97,709,'709 112c0 -66 -33 -132 -97 -132c-59 0 -113 25 -142 64c-33 -39 -84 -64 -142 -64c-61 0 -121 15 -161 45c5 -93 20 -185 44 -275l-77 -12l-37 12c14 120 22 241 22 362v337h92v-337c0 -56 54 -98 117 -98c54 0 98 27 123 66c-2 10 -4 21 -4 32v337h92v-337 c0 -49 25 -98 73 -98c44 0 60 50 60 98h37'], + 0xE18E: [449,262,837,114,770,'770 112c0 -66 -35 -132 -104 -132c-63 0 -121 25 -152 64c-35 -39 -90 -64 -152 -64c-66 0 -130 15 -174 45c6 -93 22 -185 47 -275l-82 -12l-39 12c15 120 23 241 23 362v337h98v-337c0 -56 59 -98 127 -98c57 0 105 27 132 66c-2 10 -5 21 -5 32v337h98v-337 c0 -49 27 -98 79 -98c48 0 64 50 64 98h40'], + 0xE18F: [692,20,926,29,896,'896 662l-48 -3c-50 -3 -55 -12 -55 -90v-552c0 -10 3 -27 3 -37l-98 16l-516 587v-463c0 -78 6 -87 56 -90l48 -3v-30l-131 3l-126 -3v30l47 3c51 3 56 12 56 90v449c0 78 -5 87 -56 90l-47 3v30l130 -3c23 0 59 3 59 3l524 -594v471c0 78 -5 87 -55 90l-48 3v30l126 -3 l131 3v-30'], + 0xE190: [692,20,1012,40,971,'971 662l-51 -3c-54 -3 -60 -12 -60 -90v-552c0 -10 4 -27 4 -37l-106 16l-553 587v-463c0 -78 6 -87 60 -90l51 -3v-30l-140 3l-136 -3v30l51 3c54 3 60 12 60 90v449c0 78 -6 87 -60 90l-51 3v30l140 -3c25 0 63 3 63 3l563 -594v471c0 78 -6 87 -59 90l-52 3v30 l136 -3l140 3v-30'], + 0xE191: [469,3,654,17,633,'633 -3c-30 2 -59 3 -90 3c-28 0 -58 -1 -86 -3v284c0 77 -48 127 -121 127c-67 0 -139 -49 -139 -94v-212c0 -63 4 -70 41 -72l49 -3v-30l-135 3l-135 -3v30l49 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-87l83 66c23 18 46 25 86 25 c123 0 182 -57 182 -174v-193c0 -64 4 -70 41 -72l44 -3v-30'], + 0xE192: [469,3,721,27,689,'689 -3c-33 2 -64 3 -97 3c-30 0 -62 -1 -92 -3v284c0 77 -52 127 -130 127c-72 0 -149 -49 -149 -94v-212c0 -63 4 -70 44 -72l52 -3v-30l-145 3l-145 -3v30l53 3c39 2 43 9 43 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-87l89 66c25 18 49 25 93 25 c131 0 195 -57 195 -174v-193c0 -64 3 -70 43 -72l48 -3v-30'], + 0xE193: [888,20,926,29,896,'896 662l-48 -3c-50 -3 -55 -12 -55 -90v-552c0 -10 3 -27 3 -37l-98 16l-516 587v-463c0 -78 6 -87 56 -90l48 -3v-30l-131 3l-126 -3v30l47 3c51 3 56 12 56 90v449c0 78 -5 87 -56 90l-47 3v30l130 -3c23 0 59 3 59 3l524 -594v471c0 78 -5 87 -55 90l-48 3v30l126 -3 l131 3v-30zM612 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE194: [888,20,1012,40,971,'971 662l-51 -3c-54 -3 -60 -12 -60 -90v-552c0 -10 4 -27 4 -37l-106 16l-553 587v-463c0 -78 6 -87 60 -90l51 -3v-30l-140 3l-136 -3v30l51 3c54 3 60 12 60 90v449c0 78 -6 87 -60 90l-51 3v30l140 -3c25 0 63 3 63 3l563 -594v471c0 78 -6 87 -59 90l-52 3v30 l136 -3l140 3v-30zM666 861c0 -15 -10 -22 -50 -39l-183 -73h-50l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27'], + 0xE195: [677,3,654,17,633,'633 -3c-30 2 -59 3 -90 3c-28 0 -58 -1 -86 -3v284c0 77 -48 127 -121 127c-67 0 -139 -49 -139 -94v-212c0 -63 4 -70 41 -72l49 -3v-30l-135 3l-135 -3v30l49 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-87l83 66c23 18 46 25 86 25 c123 0 182 -57 182 -174v-193c0 -64 4 -70 41 -72l44 -3v-30zM474 643c0 -18 -7 -26 -43 -47l-157 -90h-44l151 138c24 22 43 33 60 33c18 0 33 -15 33 -34'], + 0xE196: [677,3,721,27,689,'689 -3c-33 2 -64 3 -97 3c-30 0 -62 -1 -92 -3v284c0 77 -52 127 -130 127c-72 0 -149 -49 -149 -94v-212c0 -63 4 -70 44 -72l52 -3v-30l-145 3l-145 -3v30l53 3c39 2 43 9 43 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-87l89 66c25 18 49 25 93 25 c131 0 195 -57 195 -174v-193c0 -64 3 -70 43 -72l48 -3v-30zM518 643c0 -18 -8 -26 -46 -47l-169 -90h-47l162 138c26 22 47 33 64 33c20 0 36 -15 36 -34'], + 0xE197: [887,20,926,29,896,'896 662l-48 -3c-50 -3 -55 -12 -55 -90v-552c0 -10 3 -27 3 -37l-98 16l-516 587v-463c0 -78 6 -87 56 -90l48 -3v-30l-131 3l-126 -3v30l47 3c51 3 56 12 56 90v449c0 78 -5 87 -56 90l-47 3v30l130 -3c23 0 59 3 59 3l524 -594v471c0 78 -5 87 -55 90l-48 3v30l126 -3 l131 3v-30zM645 887l-146 -135h-74l-147 135h42l142 -84l143 84h40'], + 0xE198: [887,20,1012,40,971,'971 662l-51 -3c-54 -3 -60 -12 -60 -90v-552c0 -10 4 -27 4 -37l-106 16l-553 587v-463c0 -78 6 -87 60 -90l51 -3v-30l-140 3l-136 -3v30l51 3c54 3 60 12 60 90v449c0 78 -6 87 -60 90l-51 3v30l140 -3c25 0 63 3 63 3l563 -594v471c0 78 -6 87 -59 90l-52 3v30 l136 -3l140 3v-30zM702 887l-157 -135h-79l-158 135h44l154 -84l153 84h43'], + 0xE199: [676,3,654,17,633,'633 -3c-30 2 -59 3 -90 3c-28 0 -58 -1 -86 -3v284c0 77 -48 127 -121 127c-67 0 -139 -49 -139 -94v-212c0 -63 4 -70 41 -72l49 -3v-30l-135 3l-135 -3v30l49 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-87l83 66c23 18 46 25 86 25 c123 0 182 -57 182 -174v-193c0 -64 4 -70 41 -72l44 -3v-30zM497 676l-136 -167h-68l-136 167h38l132 -103l133 103h37'], + 0xE19A: [676,3,721,27,689,'689 -3c-33 2 -64 3 -97 3c-30 0 -62 -1 -92 -3v284c0 77 -52 127 -130 127c-72 0 -149 -49 -149 -94v-212c0 -63 4 -70 44 -72l52 -3v-30l-145 3l-145 -3v30l53 3c39 2 43 9 43 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-87l89 66c25 18 49 25 93 25 c131 0 195 -57 195 -174v-193c0 -64 3 -70 43 -72l48 -3v-30zM543 676l-146 -167h-73l-146 167h41l141 -103l143 103h40'], + 0xE19B: [692,271,926,29,896,'896 662l-48 -3c-50 -3 -55 -12 -55 -90v-552c0 -10 3 -27 3 -37l-98 16l-516 587v-463c0 -78 6 -87 56 -90l48 -3v-30l-131 3l-126 -3v30l47 3c51 3 56 12 56 90v449c0 78 -5 87 -56 90l-47 3v30l130 -3c23 0 59 3 59 3l524 -594v471c0 78 -5 87 -55 90l-48 3v30l126 -3 l131 3v-30zM511 -88c-29 -70 -52 -103 -103 -164l-38 -19l-13 9c41 62 51 96 57 160c46 12 54 15 86 25'], + 0xE19C: [692,271,1012,40,971,'971 662l-51 -3c-54 -3 -60 -12 -60 -90v-552c0 -10 4 -27 4 -37l-106 16l-553 587v-463c0 -78 6 -87 60 -90l51 -3v-30l-140 3l-136 -3v30l51 3c54 3 60 12 60 90v449c0 78 -6 87 -60 90l-51 3v30l140 -3c25 0 63 3 63 3l563 -594v471c0 78 -6 87 -59 90l-52 3v30 l136 -3l140 3v-30zM558 -88c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c45 62 55 96 62 160c49 12 57 15 92 25'], + 0xE19D: [469,271,654,17,633,'633 -3c-30 2 -59 3 -90 3c-28 0 -58 -1 -86 -3v284c0 77 -48 127 -121 127c-67 0 -139 -49 -139 -94v-212c0 -63 4 -70 41 -72l49 -3v-30l-135 3l-135 -3v30l49 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-87l83 66c23 18 46 25 86 25 c123 0 182 -57 182 -174v-193c0 -64 4 -70 41 -72l44 -3v-30zM376 -88c-29 -70 -52 -103 -103 -164l-38 -19l-14 9c42 62 52 96 58 160c46 12 54 15 86 25'], + 0xE19E: [469,271,721,27,689,'689 -3c-33 2 -64 3 -97 3c-30 0 -62 -1 -92 -3v284c0 77 -52 127 -130 127c-72 0 -149 -49 -149 -94v-212c0 -63 4 -70 44 -72l52 -3v-30l-145 3l-145 -3v30l53 3c39 2 43 9 43 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-87l89 66c25 18 49 25 93 25 c131 0 195 -57 195 -174v-193c0 -64 3 -70 43 -72l48 -3v-30zM413 -88c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c44 62 55 96 62 160c49 12 57 15 92 25'], + 0xE19F: [689,20,565,32,508,'508 417c0 -134 -55 -249 -161 -332c-59 -46 -111 -69 -232 -105l-37 17v8c197 44 316 167 324 335l-76 -58c-20 -15 -62 -26 -99 -26c-113 0 -195 84 -195 199c0 134 104 234 244 234c144 0 232 -103 232 -272zM413 471c0 45 -13 94 -32 126c-24 40 -60 59 -109 59 c-90 0 -146 -63 -146 -164c0 -104 58 -175 146 -175c84 0 141 62 141 154'], + 0xE1A0: [689,20,625,43,555,'555 417c0 -134 -60 -249 -173 -332c-64 -46 -120 -69 -250 -105l-39 17v8c211 44 339 167 348 335l-82 -58c-21 -15 -66 -26 -106 -26c-122 0 -210 84 -210 199c0 134 113 234 262 234c155 0 250 -103 250 -272zM453 471c0 45 -14 94 -35 126c-26 40 -65 59 -117 59 c-96 0 -157 -63 -157 -164c0 -104 63 -175 157 -175c90 0 152 62 152 154'], + 0xE1A1: [872,20,926,29,896,'896 662l-48 -3c-50 -3 -55 -12 -55 -90v-552c0 -10 3 -27 3 -37l-98 16l-516 587v-463c0 -78 6 -87 56 -90l48 -3v-30l-131 3l-126 -3v30l47 3c51 3 56 12 56 90v449c0 78 -5 87 -56 90l-47 3v30l130 -3c23 0 59 3 59 3l524 -594v471c0 78 -5 87 -55 90l-48 3v30l126 -3 l131 3v-30zM643 872c-4 -58 -56 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-31c15 65 55 100 115 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31'], + 0xE1A2: [872,20,1012,40,971,'971 662l-51 -3c-54 -3 -60 -12 -60 -90v-552c0 -10 4 -27 4 -37l-106 16l-553 587v-463c0 -78 6 -87 60 -90l51 -3v-30l-140 3l-136 -3v30l51 3c54 3 60 12 60 90v449c0 78 -6 87 -60 90l-51 3v30l140 -3c25 0 63 3 63 3l563 -594v471c0 78 -6 87 -59 90l-52 3v30 l136 -3l140 3v-30zM700 872c-5 -58 -61 -105 -128 -105c-26 0 -44 4 -79 19c-44 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 59 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 51 13 69 50h34'], + 0xE1A3: [645,3,654,17,633,'633 -3c-30 2 -59 3 -90 3c-28 0 -58 -1 -86 -3v284c0 77 -48 127 -121 127c-67 0 -139 -49 -139 -94v-212c0 -63 4 -70 41 -72l49 -3v-30l-135 3l-135 -3v30l49 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-87l83 66c23 18 46 25 86 25 c123 0 182 -57 182 -174v-193c0 -64 4 -70 41 -72l44 -3v-30zM507 645c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32'], + 0xE1A4: [645,3,721,27,689,'689 -3c-33 2 -64 3 -97 3c-30 0 -62 -1 -92 -3v284c0 77 -52 127 -130 127c-72 0 -149 -49 -149 -94v-212c0 -63 4 -70 44 -72l52 -3v-30l-145 3l-145 -3v30l53 3c39 2 43 9 43 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-87l89 66c25 18 49 25 93 25 c131 0 195 -57 195 -174v-193c0 -64 3 -70 43 -72l48 -3v-30zM554 645c-5 -58 -61 -105 -128 -105c-26 0 -44 4 -80 19c-43 18 -66 26 -83 26c-28 0 -46 -14 -62 -45h-34c17 65 60 100 124 100c29 0 43 -4 105 -30c28 -11 41 -15 55 -15c32 0 51 13 69 50h34'], + 0xE1A5: [684,0,565,14,550,'550 419h-115l-22 -139h109v-56h-119l-33 -224h-64l34 224h-146l-36 -224h-63l36 224h-117v56h127l23 139h-120v56h128l34 209h63l-33 -209h145l32 209h64l-33 -209h106v-56zM372 419h-145l-23 -139h146'], + 0xE1A6: [684,0,625,25,599,'599 419h-123l-23 -139h117v-56h-128l-36 -224h-68l37 224h-157l-39 -224h-68l39 224h-125v56h135l25 139h-129v56h138l37 209h67l-36 -209h156l35 209h68l-35 -209h113v-56zM408 419h-155l-25 -139h157'], + 0xE1A7: [709,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315'], + 0xE1A8: [709,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315'], + 0xE1A9: [469,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187'], + 0xE1AA: [469,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187'], + 0xE1AB: [888,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM598 861c0 -15 -9 -22 -47 -39 l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE1AC: [888,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM651 861c0 -15 -10 -22 -51 -39 l-182 -73h-51l175 113c27 17 50 25 70 26c21 0 39 -12 39 -27'], + 0xE1AD: [677,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM461 643c0 -18 -7 -26 -43 -47l-157 -90h-44 l151 138c23 22 43 33 59 33c19 0 34 -15 34 -34'], + 0xE1AE: [677,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM504 643c0 -18 -8 -26 -46 -47l-169 -90h-47 l162 138c25 22 47 33 64 33c20 0 36 -15 36 -34'], + 0xE1AF: [887,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM631 752h-41l-143 84l-143 -84h-40 l146 135h74'], + 0xE1B0: [887,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM687 752h-45l-153 84l-153 -84h-43 l156 135h80'], + 0xE1B1: [676,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM484 509h-38l-132 103l-132 -103h-38l136 167 h68'], + 0xE1B2: [676,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM529 509h-41l-142 103l-141 -103h-41l146 167 h73'], + 0xE1B3: [1046,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM577 1019c0 -15 -9 -22 -47 -39 l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27zM632 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE1B4: [1046,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM628 1019c0 -15 -9 -22 -50 -39 l-182 -73h-51l175 113c26 17 50 25 70 26c21 0 38 -12 38 -27zM688 752h-44l-154 84l-153 -84h-43l157 135h79'], + 0xE1B5: [803,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM443 776c0 -15 -9 -22 -47 -39l-170 -73h-47 l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27zM498 509h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE1B6: [803,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM484 776c0 -15 -9 -22 -50 -39l-182 -73h-51 l175 113c27 17 50 25 70 26c21 0 38 -12 38 -27zM544 509h-44l-154 84l-153 -84h-43l157 135h79'], + 0xE1B7: [887,193,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM631 752h-41l-143 84l-143 -84h-40 l146 135h74zM503 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE1B8: [887,193,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM687 752h-45l-153 84l-153 -84h-43 l156 135h80zM549 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 60 50c33 0 57 -21 57 -50'], + 0xE1B9: [676,193,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM484 509h-38l-132 103l-132 -103h-38l136 167 h68zM369 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE1BA: [676,193,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM529 509h-41l-142 103l-141 -103h-41l146 167 h73zM405 -143c0 -30 -23 -50 -59 -50c-35 0 -58 20 -58 50s23 50 60 50c34 0 57 -21 57 -50'], + 0xE1BB: [1046,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM584 907h-46l-170 73 c-39 17 -47 24 -47 39s16 27 36 27c18 -1 40 -9 65 -26zM632 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE1BC: [1046,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM637 907h-51l-182 73 c-41 17 -51 24 -51 39s18 27 39 27c20 -1 43 -9 70 -26zM688 752h-44l-154 84l-153 -84h-43l157 135h79'], + 0xE1BD: [803,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM450 664h-47l-170 73c-38 17 -46 24 -46 39 s16 27 36 27c18 -1 40 -9 65 -26zM498 509h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE1BE: [803,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM493 664h-51l-182 73c-41 17 -50 24 -50 39 s17 27 38 27c20 -1 43 -9 70 -26zM544 509h-44l-154 84l-153 -84h-43l157 135h79'], + 0xE1BF: [1088,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM632 1029c0 -21 -21 -42 -55 -62 c-35 -22 -42 -24 -42 -31c0 0 6 -6 19 -17l-27 -12c-9 3 -30 20 -30 33c0 14 8 24 38 47c28 19 35 27 35 37c0 13 -20 24 -49 24c-17 0 -29 -4 -32 -9l-14 -21l-33 7l26 49c30 9 49 14 68 14c56 0 96 -26 96 -59zM632 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE1C0: [1088,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM688 1029c0 -21 -23 -42 -60 -62 c-37 -22 -44 -24 -44 -31c0 0 6 -6 20 -17l-29 -12c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 37 27 37 37c0 13 -22 24 -52 24c-19 0 -32 -4 -35 -9l-14 -21l-37 7l28 49c33 9 53 14 74 14c60 0 103 -26 103 -59zM688 752h-44l-154 84l-153 -84h-43l157 135h79'], + 0xE1C1: [845,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM498 786c0 -21 -21 -42 -55 -62 c-35 -22 -42 -24 -42 -31c0 0 6 -6 19 -17l-27 -12c-9 3 -30 20 -30 33c0 14 8 24 38 47c28 19 35 27 35 37c0 13 -21 24 -49 24c-17 0 -29 -4 -33 -9l-13 -21l-33 7l26 49c30 9 49 14 68 14c56 0 96 -26 96 -59zM498 509h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE1C2: [845,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM544 786c0 -21 -23 -42 -60 -62 c-37 -22 -44 -24 -44 -31c0 0 6 -6 20 -17l-29 -12c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 37 27 37 37c0 13 -22 24 -52 24c-19 0 -32 -4 -35 -9l-14 -21l-37 7l28 49c33 9 53 14 74 14c60 0 103 -26 103 -59zM544 509h-44l-154 84l-153 -84h-43l157 135h79'], + 0xE1C3: [1022,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM629 1022c-4 -58 -57 -105 -119 -105 c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31zM632 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE1C4: [1022,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM685 1022c-5 -58 -61 -105 -128 -105 c-26 0 -44 4 -80 19c-43 18 -66 26 -83 26c-28 0 -46 -14 -62 -45h-34c17 65 60 100 124 100c29 0 43 -4 105 -30c28 -11 41 -15 55 -15c32 0 51 13 69 50h34zM688 752h-44l-154 84l-153 -84h-43l157 135h79'], + 0xE1C5: [779,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM495 779c-4 -58 -57 -105 -119 -105 c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32zM498 509h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE1C6: [779,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM541 779c-5 -58 -61 -105 -128 -105 c-26 0 -44 4 -79 19c-44 18 -67 26 -84 26c-28 0 -46 -14 -62 -45h-33c16 65 59 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c32 0 51 13 69 50h34zM544 509h-44l-154 84l-153 -84h-43l157 135h79'], + 0xE1C7: [869,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM395 819c0 -30 -22 -50 -55 -50 c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50zM612 819c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE1C8: [869,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM433 819c0 -30 -23 -50 -58 -50 c-36 0 -59 20 -59 50s23 50 60 50c34 0 57 -21 57 -50zM666 819c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 60 50c33 0 57 -21 57 -50'], + 0xE1C9: [642,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM260 592c0 -30 -22 -50 -55 -50s-54 20 -54 50 s21 50 55 50c32 0 54 -21 54 -50zM477 592c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE1CA: [642,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM288 592c0 -30 -23 -50 -59 -50 c-35 0 -58 20 -58 50s23 50 60 50c34 0 57 -21 57 -50zM521 592c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE1CB: [709,193,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM503 -143c0 -30 -22 -50 -55 -50 s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE1CC: [709,193,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM549 -143c0 -30 -24 -50 -59 -50 s-58 20 -58 50s23 50 60 50c33 0 57 -21 57 -50'], + 0xE1CD: [469,193,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM369 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50 s21 50 55 50c32 0 54 -21 54 -50'], + 0xE1CE: [469,193,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM405 -143c0 -30 -23 -50 -59 -50 c-35 0 -58 20 -58 50s23 50 60 50c34 0 57 -21 57 -50'], + 0xE1CF: [709,20,1108,34,1059,'1059 164c-11 -52 -18 -106 -18 -164l-174 -3l-117 1c-127 1 -246 -19 -314 -18c-239 0 -402 143 -402 360c0 220 167 369 411 369c63 0 187 -20 206 -20l258 3l132 -3c-12 -44 -17 -92 -17 -152h-38v65c0 23 -4 28 -30 34c-34 8 -97 14 -154 14c-70 0 -89 -1 -123 -8 v-267c53 -3 94 -4 165 -4c47 0 74 4 77 38l6 52h32c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-32l-6 58c-3 34 -30 38 -77 38h-59c-47 0 -77 -1 -106 -3v-280c32 -6 53 -8 106 -8c92 0 172 5 193 12c14 5 29 35 37 79l5 34h39zM576 139v399c0 38 -1 56 -6 83 c-37 30 -83 44 -145 44c-177 0 -282 -110 -282 -295c0 -203 119 -346 287 -346c50 0 113 14 140 32c5 27 6 45 6 83'], + 0xE1D0: [709,20,1208,46,1146,'1146 164c-12 -52 -19 -106 -19 -164l-187 -3l-126 1c-136 1 -264 -19 -337 -18c-256 0 -431 143 -431 360c0 220 179 369 441 369c68 0 201 -20 221 -20l277 3l142 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -3 28 -31 34c-37 8 -105 14 -165 14c-76 0 -96 -1 -133 -8 v-267c57 -3 101 -4 177 -4c50 0 80 4 83 38l6 52h35c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-35l-6 58c-3 34 -33 38 -83 38h-63c-50 0 -83 -1 -114 -3v-280c34 -6 57 -8 114 -8c98 0 185 5 207 12c15 5 32 35 40 79l6 34h41zM627 139v399c0 38 -1 56 -6 83 c-39 30 -89 44 -155 44c-191 0 -303 -110 -303 -295c0 -203 127 -346 307 -346c54 0 122 14 151 32c5 27 6 45 6 83'], + 0xE1D1: [469,20,921,45,882,'882 279c0 -12 -1 -21 -2 -35c-75 -11 -122 -14 -197 -14h-160c3 -58 10 -86 31 -119c30 -50 89 -78 161 -78c48 0 78 10 143 47l15 -10l-22 -34c-4 -6 -27 -18 -54 -29c-45 -17 -87 -27 -125 -27c-74 0 -125 24 -188 87c-66 -64 -118 -87 -193 -87 c-144 0 -246 104 -246 250c0 143 105 239 261 239c78 0 127 -20 189 -76c71 58 113 76 181 76c125 0 206 -74 206 -190zM449 203c0 144 -62 233 -163 233c-93 0 -140 -59 -140 -176c0 -146 69 -247 168 -247c86 0 135 69 135 190zM792 267c0 52 -7 78 -26 110 c-24 41 -53 59 -93 59c-46 0 -91 -20 -115 -51c-23 -29 -30 -58 -32 -115c58 -5 87 -7 138 -6'], + 0xE1D2: [469,20,1008,57,956,'956 279c0 -12 -1 -21 -2 -35c-81 -11 -131 -14 -212 -14h-171c2 -58 11 -86 33 -119c33 -50 96 -78 173 -78c51 0 83 10 153 47l17 -10l-24 -34c-4 -6 -29 -18 -58 -29c-48 -17 -94 -27 -135 -27c-79 0 -133 24 -201 87c-71 -64 -126 -87 -207 -87 c-155 0 -265 104 -265 250c0 143 113 239 281 239c83 0 136 -20 203 -76c76 58 121 76 194 76c134 0 221 -74 221 -190zM492 203c0 144 -67 233 -176 233c-99 0 -150 -59 -150 -176c0 -146 74 -247 180 -247c93 0 146 69 146 190zM859 267c0 52 -7 78 -27 110 c-26 41 -57 59 -101 59c-49 0 -97 -20 -122 -51c-25 -29 -33 -58 -36 -115c64 -5 94 -7 149 -6'], + 0xE1D3: [15,250,361,63,299,'299 -193l-40 -32c-28 -21 -64 -25 -100 -25c-64 0 -96 49 -96 92c0 69 65 135 139 173h45c-48 -35 -108 -91 -108 -147c0 -50 25 -72 52 -72c32 0 63 15 71 42l9 31l28 -7v-55'], + 0xE1D4: [15,250,406,77,330,'330 -193l-43 -32c-29 -21 -68 -25 -107 -25c-69 0 -103 49 -103 92c0 69 69 135 149 173h48c-52 -35 -116 -91 -116 -147c0 -50 27 -72 56 -72c34 0 68 15 76 42l10 31l30 -7v-55'], + 0xE1D5: [888,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM563 749h-47l-170 73 c-38 17 -47 24 -47 39s16 27 36 27c18 -1 40 -9 65 -26'], + 0xE1D6: [888,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM613 749h-50l-183 73 c-41 17 -50 24 -50 39s18 27 39 27c20 -1 43 -9 70 -26'], + 0xE1D7: [677,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM411 506h-43l-157 90c-36 21 -44 29 -44 47 c0 19 15 34 34 34c16 0 36 -11 60 -33'], + 0xE1D8: [677,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM451 506h-47l-169 90c-38 21 -47 29 -47 47 c0 19 17 34 37 34c17 0 38 -11 64 -33'], + 0xE1D9: [946,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM543 887c0 -21 -22 -42 -56 -62 c-34 -22 -41 -24 -41 -31c0 0 5 -6 19 -17l-28 -12c-8 3 -29 20 -29 33c0 14 7 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE1DA: [946,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM592 887c0 -21 -23 -42 -60 -62 c-37 -22 -44 -24 -44 -31c0 0 6 -6 20 -17l-29 -12c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 37 27 37 37c0 13 -22 24 -52 24c-19 0 -32 -4 -35 -9l-14 -21l-37 7l28 49c33 9 53 14 74 14c60 0 103 -26 103 -59'], + 0xE1DB: [703,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM409 644c0 -21 -22 -42 -56 -62 c-35 -22 -41 -24 -41 -31c0 0 5 -6 18 -17l-27 -12c-9 3 -29 20 -29 33c0 14 7 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE1DC: [703,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM448 644c0 -21 -23 -42 -59 -62 c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 38 27 38 37c0 13 -23 24 -53 24c-19 0 -32 -4 -35 -9l-14 -21l-37 7l29 49c32 9 52 14 73 14c60 0 103 -26 103 -59'], + 0xE1DD: [781,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c96 0 179 -21 242 -60c34 20 40 49 40 85c0 9 -1 18 -1 28c49 9 59 12 94 19l12 -7c-9 -27 -43 -110 -108 -151c74 -59 116 -147 116 -256zM726 337c0 208 -110 330 -296 330 c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315'], + 0xE1DE: [781,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c103 0 192 -21 260 -60c36 20 43 49 43 85c0 9 -1 18 -1 28c53 9 63 12 101 19l13 -7c-10 -27 -47 -110 -116 -151c79 -59 124 -147 124 -256zM789 337c0 208 -118 330 -319 330 c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315'], + 0xE1DF: [532,20,615,45,628,'628 525c-9 -27 -42 -107 -105 -149c30 -38 47 -85 47 -139c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c72 0 134 -23 179 -62c25 20 30 46 30 78c0 9 -1 18 -1 28c49 9 59 12 94 19zM469 200c0 136 -74 236 -175 236 c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187'], + 0xE1E0: [532,20,679,57,683,'683 525c-9 -27 -45 -107 -112 -149c32 -38 50 -85 50 -139c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c78 0 144 -23 192 -62c27 20 33 46 33 78c0 9 -1 18 -1 28c53 9 63 12 101 19zM513 200c0 136 -80 236 -188 236 c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187'], + 0xE1E1: [888,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c96 0 179 -21 242 -60c34 20 40 49 40 85c0 9 -1 18 -1 28c49 9 59 12 94 19l12 -7c-9 -27 -43 -110 -108 -151c74 -59 116 -147 116 -256zM726 337c0 208 -110 330 -296 330 c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM598 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE1E2: [888,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c103 0 192 -21 260 -60c36 20 43 49 43 85c0 9 -1 18 -1 28c53 9 63 12 101 19l13 -7c-10 -27 -47 -110 -116 -151c79 -59 124 -147 124 -256zM789 337c0 208 -118 330 -319 330 c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM651 861c0 -15 -10 -22 -51 -39l-182 -73h-51l175 113c27 17 50 25 70 26c21 0 39 -12 39 -27'], + 0xE1E3: [677,20,615,45,628,'628 525c-9 -27 -42 -107 -105 -149c30 -38 47 -85 47 -139c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c72 0 134 -23 179 -62c25 20 30 46 30 78c0 9 -1 18 -1 28c49 9 59 12 94 19zM469 200c0 136 -74 236 -175 236 c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM455 643c0 -18 -8 -26 -44 -47l-157 -90h-43l150 138c24 22 44 33 60 33c18 0 34 -15 34 -34'], + 0xE1E4: [677,20,679,57,683,'683 525c-9 -27 -45 -107 -112 -149c32 -38 50 -85 50 -139c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c78 0 144 -23 192 -62c27 20 33 46 33 78c0 9 -1 18 -1 28c53 9 63 12 101 19zM513 200c0 136 -80 236 -188 236 c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM497 643c0 -18 -8 -26 -46 -47l-169 -90h-47l162 138c25 22 47 33 64 33c20 0 36 -15 36 -34'], + 0xE1E5: [781,193,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c96 0 179 -21 242 -60c34 20 40 49 40 85c0 9 -1 18 -1 28c49 9 59 12 94 19l12 -7c-9 -27 -43 -110 -108 -151c74 -59 116 -147 116 -256zM726 337c0 208 -110 330 -296 330 c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM503 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE1E6: [781,193,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c103 0 192 -21 260 -60c36 20 43 49 43 85c0 9 -1 18 -1 28c53 9 63 12 101 19l13 -7c-10 -27 -47 -110 -116 -151c79 -59 124 -147 124 -256zM789 337c0 208 -118 330 -319 330 c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM549 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 60 50c33 0 57 -21 57 -50'], + 0xE1E7: [532,193,615,45,628,'628 525c-9 -27 -42 -107 -105 -149c30 -38 47 -85 47 -139c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c72 0 134 -23 179 -62c25 20 30 46 30 78c0 9 -1 18 -1 28c49 9 59 12 94 19zM469 200c0 136 -74 236 -175 236 c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM362 -143c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE1E8: [532,193,679,57,683,'683 525c-9 -27 -45 -107 -112 -149c32 -38 50 -85 50 -139c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c78 0 144 -23 192 -62c27 20 33 46 33 78c0 9 -1 18 -1 28c53 9 63 12 101 19zM513 200c0 136 -80 236 -188 236 c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM398 -143c0 -30 -23 -50 -59 -50c-35 0 -58 20 -58 50s23 50 60 50c34 0 57 -21 57 -50'], + 0xE1E9: [888,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c96 0 179 -21 242 -60c34 20 40 49 40 85c0 9 -1 18 -1 28c49 9 59 12 94 19l12 -7c-9 -27 -43 -110 -108 -151c74 -59 116 -147 116 -256zM726 337c0 208 -110 330 -296 330 c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM563 749h-47l-170 73c-38 17 -47 24 -47 39s16 27 36 27c18 -1 40 -9 65 -26'], + 0xE1EA: [888,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c103 0 192 -21 260 -60c36 20 43 49 43 85c0 9 -1 18 -1 28c53 9 63 12 101 19l13 -7c-10 -27 -47 -110 -116 -151c79 -59 124 -147 124 -256zM789 337c0 208 -118 330 -319 330 c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM613 749h-50l-183 73c-41 17 -50 24 -50 39s18 27 39 27c20 -1 43 -9 70 -26'], + 0xE1EB: [677,20,615,45,628,'628 525c-9 -27 -42 -107 -105 -149c30 -38 47 -85 47 -139c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c72 0 134 -23 179 -62c25 20 30 46 30 78c0 9 -1 18 -1 28c49 9 59 12 94 19zM469 200c0 136 -74 236 -175 236 c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM405 506h-44l-157 90c-36 21 -44 29 -44 47c0 19 16 34 34 34c17 0 36 -11 60 -33'], + 0xE1EC: [677,20,679,57,683,'683 525c-9 -27 -45 -107 -112 -149c32 -38 50 -85 50 -139c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c78 0 144 -23 192 -62c27 20 33 46 33 78c0 9 -1 18 -1 28c53 9 63 12 101 19zM513 200c0 136 -80 236 -188 236 c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM444 506h-47l-169 90c-38 21 -47 29 -47 47c0 19 17 34 37 34c17 0 38 -11 64 -33'], + 0xE1ED: [946,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c96 0 179 -21 242 -60c34 20 40 49 40 85c0 9 -1 18 -1 28c49 9 59 12 94 19l12 -7c-9 -27 -43 -110 -108 -151c74 -59 116 -147 116 -256zM726 337c0 208 -110 330 -296 330 c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM543 887c0 -21 -22 -42 -56 -62c-34 -22 -41 -24 -41 -31c0 0 5 -6 19 -17l-28 -12c-8 3 -29 20 -29 33c0 14 7 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21 l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE1EE: [946,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c103 0 192 -21 260 -60c36 20 43 49 43 85c0 9 -1 18 -1 28c53 9 63 12 101 19l13 -7c-10 -27 -47 -110 -116 -151c79 -59 124 -147 124 -256zM789 337c0 208 -118 330 -319 330 c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM592 887c0 -21 -23 -42 -60 -62c-37 -22 -44 -24 -44 -31c0 0 6 -6 20 -17l-29 -12c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 37 27 37 37c0 13 -22 24 -52 24c-19 0 -32 -4 -35 -9l-14 -21 l-37 7l28 49c33 9 53 14 74 14c60 0 103 -26 103 -59'], + 0xE1EF: [703,20,615,45,628,'628 525c-9 -27 -42 -107 -105 -149c30 -38 47 -85 47 -139c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c72 0 134 -23 179 -62c25 20 30 46 30 78c0 9 -1 18 -1 28c49 9 59 12 94 19zM469 200c0 136 -74 236 -175 236 c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM402 644c0 -21 -21 -42 -55 -62c-35 -22 -42 -24 -42 -31c0 0 6 -6 19 -17l-27 -12c-9 3 -30 20 -30 33c0 14 8 24 38 47c28 19 35 27 35 37c0 13 -20 24 -49 24c-17 0 -29 -4 -32 -9l-14 -21l-33 7 l26 49c30 9 49 14 68 14c56 0 96 -26 96 -59'], + 0xE1F0: [703,20,679,57,683,'683 525c-9 -27 -45 -107 -112 -149c32 -38 50 -85 50 -139c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c78 0 144 -23 192 -62c27 20 33 46 33 78c0 9 -1 18 -1 28c53 9 63 12 101 19zM513 200c0 136 -80 236 -188 236 c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM441 644c0 -21 -23 -42 -59 -62c-38 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 38 27 38 37c0 13 -23 24 -53 24c-19 0 -32 -4 -35 -9l-14 -21 l-37 7l29 49c32 9 52 14 73 14c60 0 103 -26 103 -59'], + 0xE1F1: [872,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c96 0 179 -21 242 -60c34 20 40 49 40 85c0 9 -1 18 -1 28c49 9 59 12 94 19l12 -7c-9 -27 -43 -110 -108 -151c74 -59 116 -147 116 -256zM726 337c0 208 -110 330 -296 330 c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM629 872c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50 h31'], + 0xE1F2: [872,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c103 0 192 -21 260 -60c36 20 43 49 43 85c0 9 -1 18 -1 28c53 9 63 12 101 19l13 -7c-10 -27 -47 -110 -116 -151c79 -59 124 -147 124 -256zM789 337c0 208 -118 330 -319 330 c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM685 872c-5 -58 -61 -105 -128 -105c-26 0 -44 4 -80 19c-43 18 -66 26 -83 26c-28 0 -46 -14 -62 -45h-34c17 65 60 100 124 100c29 0 43 -4 105 -30c28 -11 41 -15 55 -15c32 0 51 13 69 50 h34'], + 0xE1F3: [645,20,615,45,628,'628 525c-9 -27 -42 -107 -105 -149c30 -38 47 -85 47 -139c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c72 0 134 -23 179 -62c25 20 30 46 30 78c0 9 -1 18 -1 28c49 9 59 12 94 19zM469 200c0 136 -74 236 -175 236 c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM487 645c-4 -58 -56 -105 -118 -105c-24 0 -42 4 -75 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-31c15 65 55 100 115 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31'], + 0xE1F4: [645,20,679,57,683,'683 525c-9 -27 -45 -107 -112 -149c32 -38 50 -85 50 -139c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c78 0 144 -23 192 -62c27 20 33 46 33 78c0 9 -1 18 -1 28c53 9 63 12 101 19zM513 200c0 136 -80 236 -188 236 c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM532 645c-4 -58 -60 -105 -127 -105c-26 0 -45 4 -80 19c-43 18 -66 26 -83 26c-28 0 -47 -14 -62 -45h-34c17 65 60 100 124 100c28 0 42 -4 105 -30c28 -11 40 -15 54 -15c33 0 52 13 70 50h33'], + 0xE1F5: [888,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM736 861c0 -15 -9 -22 -47 -39 l-170 -73h-47l163 113c25 17 46 25 65 26c20 0 36 -12 36 -27zM562 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE1F6: [888,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM799 861c0 -15 -9 -22 -50 -39 l-183 -73h-50l174 113c27 17 51 25 71 26c21 0 38 -12 38 -27zM612 861c0 -15 -9 -22 -50 -39l-183 -73h-50l174 113c27 17 51 25 70 26c21 0 39 -12 39 -27'], + 0xE1F7: [683,20,615,45,583,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM420 650c0 -16 -11 -29 -43 -50l-147 -98h-43 l139 148c19 20 43 33 60 33c19 0 34 -15 34 -33zM583 650c0 -16 -11 -29 -42 -50l-147 -98h-44l140 148c18 20 42 33 60 33s33 -15 33 -33'], + 0xE1F8: [683,20,679,57,635,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM460 650c0 -16 -12 -29 -46 -50l-158 -98h-46 l149 148c20 20 46 33 65 33c20 0 36 -15 36 -33zM635 650c0 -16 -11 -29 -45 -50l-158 -98h-47l150 148c20 20 45 33 64 33c20 0 36 -15 36 -33'], + 0xE1F9: [846,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM619 793h-340v53h340v-53'], + 0xE1FA: [846,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM674 793h-365v53h365v-53'], + 0xE1FB: [619,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM484 566h-340v53h340v-53'], + 0xE1FC: [619,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM529 566h-365v53h365v-53'], + 0xE1FD: [694,3,565,75,466,'466 -3l-172 3l-179 -3v30l61 3c59 3 71 14 71 66v485c0 24 -3 33 -9 33l-3 -1l-141 -58h-11l-8 43c100 32 177 62 248 96l15 -5v-593c0 -52 11 -63 71 -66l57 -3v-30'], + 0xE1FE: [694,3,625,90,509,'509 -3l-184 3l-193 -3v30l66 3c63 3 76 14 76 66v485c0 24 -2 33 -9 33l-4 -1l-151 -58h-12l-8 43c107 32 190 62 266 96l16 -5v-593c0 -52 12 -63 76 -66l61 -3v-30'], + 0xE1FF: [854,165,877,34,843,'843 367c0 -205 -162 -364 -381 -385v-147h-48v145c-221 0 -380 151 -380 361s150 354 380 367v146h48v-145c234 -5 381 -136 381 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315'], + 0xE200: [854,165,960,46,914,'914 367c0 -205 -173 -364 -408 -385v-147h-52v145c-237 0 -408 151 -408 361s161 354 408 367v146h52v-145c250 -5 408 -136 408 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315'], + 0xE201: [614,165,615,45,570,'570 237c0 -136 -99 -237 -243 -254v-148h-39v145c-146 0 -243 96 -243 237s98 240 243 251v146h39v-145c143 -6 243 -101 243 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187'], + 0xE202: [614,165,679,57,621,'621 237c0 -136 -106 -237 -261 -254v-148h-42v145c-156 0 -261 96 -261 237s106 240 261 251v146h42v-145c154 -6 261 -101 261 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187'], + 0xE203: [709,20,928,43,879,'879 679l-96 -83c60 -70 85 -135 85 -226c0 -222 -184 -390 -427 -390c-65 0 -129 13 -181 36c-27 11 -45 23 -82 51l-99 -85l-36 29l102 88c-31 38 -42 55 -55 87c-20 46 -31 102 -31 156c0 221 165 367 413 367c70 0 141 -13 196 -36c27 -11 45 -21 82 -47l94 83z M751 340c0 80 -11 129 -42 191l-460 -400c64 -77 132 -109 231 -109c172 0 271 116 271 318zM681 570c-42 44 -67 61 -118 78c-37 13 -74 19 -114 19c-174 0 -273 -106 -273 -292c0 -83 13 -142 48 -208'], + 0xE204: [709,20,1015,55,952,'952 679l-102 -83c64 -70 91 -135 91 -226c0 -222 -198 -390 -459 -390c-69 0 -138 13 -194 36c-28 11 -48 23 -88 51l-106 -85l-39 29l110 88c-34 38 -46 55 -60 87c-21 46 -32 102 -32 156c0 221 176 367 443 367c75 0 151 -13 211 -36c28 -11 48 -21 87 -47l101 83z M816 340c0 80 -12 129 -46 191l-494 -400c69 -77 142 -109 248 -109c185 0 292 116 292 318zM741 570c-46 44 -73 61 -128 78c-40 13 -79 19 -121 19c-188 0 -294 -106 -294 -292c0 -83 14 -142 51 -208'], + 0xE205: [474,23,626,27,588,'588 449l-69 -61c41 -51 57 -92 57 -150c0 -149 -120 -258 -285 -258c-68 0 -113 15 -165 57l-68 -60l-31 23l73 64c-36 51 -50 93 -50 152c0 148 114 253 274 253c66 0 112 -15 167 -55l67 60zM474 197c0 43 -7 82 -24 130l-259 -232c37 -57 80 -82 138 -82 c88 0 145 73 145 184zM433 362c-36 50 -79 74 -134 74c-94 0 -147 -66 -147 -180c0 -45 6 -81 21 -126'], + 0xE206: [474,23,691,39,640,'640 449l-74 -61c45 -51 61 -92 61 -150c0 -149 -128 -258 -305 -258c-74 0 -122 15 -178 57l-73 -60l-32 23l78 64c-39 51 -54 93 -54 152c0 148 122 253 294 253c71 0 120 -15 179 -55l73 60zM518 197c0 43 -8 82 -25 130l-279 -232c40 -57 86 -82 149 -82 c93 0 155 73 155 184zM474 362c-39 50 -84 74 -144 74c-101 0 -158 -66 -158 -180c0 -45 7 -81 23 -126'], + 0xE207: [872,20,877,34,843,'843 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM726 337c0 208 -110 330 -296 330c-179 0 -279 -104 -279 -289c0 -214 123 -356 306 -356c169 0 269 117 269 315zM629 872c-4 -58 -57 -105 -119 -105 c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31'], + 0xE208: [872,20,960,46,914,'914 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 444 368c260 0 424 -132 424 -342zM789 337c0 208 -118 330 -319 330c-191 0 -299 -104 -299 -289c0 -214 132 -356 329 -356c181 0 289 117 289 315zM685 872c-5 -58 -61 -105 -128 -105 c-26 0 -44 4 -80 19c-43 18 -66 26 -83 26c-28 0 -46 -14 -62 -45h-34c17 65 60 100 124 100c29 0 43 -4 105 -30c28 -11 41 -15 55 -15c32 0 51 13 69 50h34'], + 0xE209: [645,20,615,45,570,'570 237c0 -150 -120 -257 -288 -257c-140 0 -237 96 -237 237c0 149 110 252 269 252c149 0 256 -97 256 -232zM469 200c0 136 -74 236 -175 236c-95 0 -148 -65 -148 -185c0 -142 72 -238 179 -238c88 0 144 72 144 187zM494 645c-4 -58 -57 -105 -119 -105 c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-27 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32'], + 0xE20A: [645,20,679,57,621,'621 237c0 -150 -128 -257 -309 -257c-150 0 -255 96 -255 237c0 149 119 252 289 252c161 0 275 -97 275 -232zM513 200c0 136 -80 236 -188 236c-103 0 -159 -65 -159 -185c0 -142 77 -238 192 -238c95 0 155 72 155 187zM539 645c-4 -58 -60 -105 -127 -105 c-26 0 -45 4 -80 19c-43 18 -66 26 -83 26c-28 0 -46 -14 -62 -45h-34c17 65 60 100 124 100c28 0 43 -4 105 -30c28 -11 40 -15 55 -15c32 0 51 13 69 50h33'], + 0xE20B: [692,3,678,34,642,'642 537c0 -120 -114 -213 -264 -213c-21 0 -37 1 -63 6l-11 36c29 -8 45 -10 68 -10c95 0 161 63 161 153c0 95 -63 145 -181 145c-37 0 -68 -4 -107 -12v-522c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 74 -9 87 -58 90l-49 3v30 l198 -3c63 0 124 3 186 3c138 0 223 -59 223 -155'], + 0xE20C: [692,3,747,46,699,'699 537c0 -120 -123 -213 -284 -213c-23 0 -39 1 -67 6l-12 36c30 -8 48 -10 72 -10c102 0 174 63 174 153c0 95 -68 145 -195 145c-39 0 -73 -4 -114 -12v-522c0 -79 6 -87 59 -90l57 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 74 -10 87 -62 90l-53 3v30 l213 -3l199 3c148 0 240 -59 240 -155'], + 0xE20D: [469,281,675,19,614,'614 271c0 -64 -51 -167 -95 -193l-124 -74c-18 -10 -46 -16 -78 -16c-49 0 -84 7 -116 25v-189c0 -63 3 -70 40 -72l50 -3v-30l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v503c0 66 -4 73 -48 73h-40v28c58 6 114 20 170 41l10 -4v-96l89 75c18 15 57 25 97 25 c127 0 227 -87 227 -198zM519 234c0 104 -65 170 -168 170c-54 0 -99 -19 -131 -56c-14 -17 -19 -28 -19 -42v-208c42 -41 87 -59 147 -59c98 0 171 83 171 195'], + 0xE20E: [469,281,743,29,668,'668 271c0 -64 -55 -167 -102 -193l-133 -74c-19 -10 -49 -16 -83 -16c-53 0 -90 7 -125 25v-189c0 -63 3 -70 43 -72l54 -3v-30l-146 3l-147 -3v30l54 3c40 2 43 9 43 72v503c0 66 -4 73 -51 73h-43v28c62 6 123 20 182 41l11 -4v-96l96 75c18 15 61 25 104 25 c136 0 243 -87 243 -198zM566 234c0 104 -70 170 -180 170c-58 0 -106 -19 -140 -56c-15 -17 -21 -28 -21 -42v-208c45 -41 93 -59 158 -59c105 0 183 83 183 195'], + 0xE20F: [695,150,705,53,652,'652 -150l-220 3l-220 -3v30l45 3c49 3 58 16 58 90v372c-79 5 -127 20 -181 57c-53 37 -81 85 -81 140c0 90 79 157 194 153l64 -2l158 -4c60 0 106 1 183 5v-30l-35 -3c-57 -5 -69 -20 -69 -87v-601c0 -74 9 -87 58 -90l46 -3v-30zM315 382v273c-6 1 -13 1 -16 1 c-72 0 -126 -55 -126 -130c0 -74 51 -125 142 -144zM469 -120v775h-74v-775h74'], + 0xE210: [695,150,775,66,709,'709 -150l-236 3l-237 -3v30l50 3c52 3 62 16 62 90v372c-86 5 -137 20 -195 57c-57 37 -87 85 -87 140c0 90 85 157 208 153l69 -2l170 -4l196 5v-30l-37 -3c-61 -5 -74 -20 -74 -87v-601c0 -74 9 -87 62 -90l49 -3v-30zM348 382v273c-7 1 -14 1 -18 1 c-77 0 -135 -55 -135 -130c0 -74 54 -125 153 -144zM513 -120v775h-80v-775h80'], + 0xE211: [709,20,936,53,884,'397 535c0 -96 -75 -167 -177 -167c-97 0 -167 65 -167 154c0 97 75 167 178 167c95 0 166 -66 166 -154zM318 533c0 82 -34 133 -90 133c-60 0 -97 -54 -97 -140s33 -135 90 -135c59 0 97 56 97 142zM884 167c0 -96 -75 -167 -176 -167c-97 0 -168 65 -168 154 c0 97 75 167 178 167c95 0 166 -66 166 -154zM806 165c0 82 -35 133 -91 133c-60 0 -97 -54 -97 -140s33 -135 91 -135c59 0 97 56 97 142zM681 709l-399 -729h-43l399 729h43'], + 0xE212: [709,20,1023,66,958,'435 535c0 -96 -80 -167 -189 -167c-104 0 -180 65 -180 154c0 97 80 167 192 167c101 0 177 -66 177 -154zM351 533c0 82 -37 133 -97 133c-64 0 -104 -54 -104 -140s35 -135 97 -135c63 0 104 56 104 142zM958 167c0 -96 -80 -167 -189 -167c-104 0 -180 65 -180 154 c0 97 80 167 191 167c102 0 178 -66 178 -154zM874 165c0 82 -37 133 -97 133c-64 0 -104 -54 -104 -140s35 -135 97 -135c63 0 104 56 104 142zM741 709l-429 -729h-46l428 729h47'], + 0xE213: [111,5,292,83,209,'209 53c0 -31 -30 -58 -65 -58c-32 0 -61 28 -61 58s29 58 62 58c34 0 64 -28 64 -58'], + 0xE214: [111,5,332,98,234,'234 53c0 -31 -33 -58 -70 -58c-34 0 -66 28 -66 58s32 58 67 58c36 0 69 -28 69 -58'], + 0xE215: [709,20,1462,79,1410,'381 541c0 -92 -68 -161 -156 -161c-85 0 -146 62 -146 148c0 94 65 161 156 161c82 0 146 -64 146 -148zM311 537c0 81 -30 129 -79 129c-53 0 -84 -50 -84 -137c0 -81 28 -126 78 -126c52 0 85 52 85 134zM705 161c0 -92 -67 -161 -155 -161c-85 0 -147 62 -147 148 c0 94 66 161 156 161c83 0 146 -64 146 -148zM636 157c0 81 -30 129 -79 129c-53 0 -84 -50 -84 -137c0 -81 27 -126 78 -126c52 0 85 52 85 134zM1057 161c0 -92 -67 -161 -155 -161c-85 0 -146 62 -146 148c0 94 65 161 155 161c83 0 146 -64 146 -148zM988 157 c0 81 -30 129 -79 129c-53 0 -84 -50 -84 -137c0 -81 28 -126 78 -126c52 0 85 52 85 134zM625 709l-426 -729h-44l426 729h44zM1410 161c0 -92 -68 -161 -156 -161c-85 0 -146 62 -146 148c0 94 65 161 155 161c83 0 147 -64 147 -148zM1340 157c0 81 -30 129 -79 129 c-53 0 -84 -50 -84 -137c0 -81 28 -126 78 -126c52 0 85 52 85 134'], + 0xE216: [709,20,1588,94,1522,'418 541c0 -92 -73 -161 -168 -161c-91 0 -156 62 -156 148c0 94 70 161 167 161c89 0 157 -64 157 -148zM343 537c0 81 -32 129 -84 129c-58 0 -90 -50 -90 -137c0 -81 29 -126 83 -126c56 0 91 52 91 134zM766 161c0 -92 -72 -161 -167 -161c-91 0 -157 62 -157 148 c0 94 71 161 168 161c89 0 156 -64 156 -148zM692 157c0 81 -32 129 -85 129c-57 0 -90 -50 -90 -137c0 -81 29 -126 83 -126c56 0 92 52 92 134zM1144 161c0 -92 -72 -161 -167 -161c-91 0 -157 62 -157 148c0 94 70 161 168 161c89 0 156 -64 156 -148zM1069 157 c0 81 -31 129 -84 129c-57 0 -90 -50 -90 -137c0 -81 29 -126 83 -126c56 0 91 52 91 134zM680 709l-458 -729h-46l457 729h47zM1522 161c0 -92 -72 -161 -167 -161c-91 0 -157 62 -157 148c0 94 70 161 167 161c89 0 157 -64 157 -148zM1447 157c0 81 -31 129 -84 129 c-57 0 -90 -50 -90 -137c0 -81 29 -126 83 -126c56 0 91 52 91 134'], + 0xE217: [709,20,1110,79,1057,'381 541c0 -92 -68 -161 -156 -161c-85 0 -146 62 -146 148c0 94 65 161 156 161c82 0 146 -64 146 -148zM311 537c0 81 -30 129 -79 129c-53 0 -84 -50 -84 -137c0 -81 28 -126 78 -126c52 0 85 52 85 134zM705 161c0 -92 -67 -161 -155 -161c-85 0 -147 62 -147 148 c0 94 66 161 156 161c83 0 146 -64 146 -148zM636 157c0 81 -30 129 -79 129c-53 0 -84 -50 -84 -137c0 -81 27 -126 78 -126c52 0 85 52 85 134zM1057 161c0 -92 -67 -161 -155 -161c-85 0 -146 62 -146 148c0 94 65 161 155 161c83 0 146 -64 146 -148zM988 157 c0 81 -30 129 -79 129c-53 0 -84 -50 -84 -137c0 -81 28 -126 78 -126c52 0 85 52 85 134zM625 709l-426 -729h-44l426 729h44'], + 0xE218: [709,20,1210,94,1144,'418 541c0 -92 -73 -161 -168 -161c-91 0 -156 62 -156 148c0 94 70 161 167 161c89 0 157 -64 157 -148zM343 537c0 81 -32 129 -84 129c-58 0 -90 -50 -90 -137c0 -81 29 -126 83 -126c56 0 91 52 91 134zM766 161c0 -92 -72 -161 -167 -161c-91 0 -157 62 -157 148 c0 94 71 161 168 161c89 0 156 -64 156 -148zM692 157c0 81 -32 129 -85 129c-57 0 -90 -50 -90 -137c0 -81 29 -126 83 -126c56 0 92 52 92 134zM1144 161c0 -92 -72 -161 -167 -161c-91 0 -157 62 -157 148c0 94 70 161 168 161c89 0 156 -64 156 -148zM1069 157 c0 81 -31 129 -84 129c-57 0 -90 -50 -90 -137c0 -81 29 -126 83 -126c56 0 91 52 91 134zM680 709l-458 -729h-46l457 729h47'], + 0xE219: [709,176,877,34,843,'843 -120l-92 -56c-43 8 -77 15 -115 26l-162 46c-33 10 -64 15 -85 15c-11 0 -17 -2 -30 -8l-65 -32l3 32c61 43 98 69 118 76l6 2c-234 0 -387 143 -387 362c0 218 166 366 410 366s399 -131 399 -338c0 -144 -81 -274 -213 -343c-56 -30 -97 -40 -183 -47 c46 -5 64 -10 132 -37c87 -34 147 -49 199 -49c10 0 22 1 65 6v-21zM726 335c0 210 -109 332 -296 332c-180 0 -279 -104 -279 -292c0 -99 32 -195 87 -258c54 -62 128 -94 221 -94c171 0 267 112 267 312'], + 0xE21A: [709,176,960,46,914,'914 -120l-98 -56c-47 8 -83 15 -124 26l-174 46c-36 10 -69 15 -91 15c-12 0 -19 -2 -33 -8l-69 -32l3 32c65 43 105 69 127 76l6 2c-251 0 -415 143 -415 362c0 218 178 366 440 366s428 -131 428 -338c0 -144 -87 -274 -228 -343c-61 -30 -104 -40 -197 -47 c49 -5 69 -10 142 -37c93 -34 158 -49 214 -49c10 0 23 1 69 6v-21zM789 335c0 210 -117 332 -319 332c-193 0 -299 -104 -299 -292c0 -99 35 -195 94 -258c58 -62 138 -94 237 -94c184 0 287 112 287 312'], + 0xE21B: [469,281,630,48,620,'620 -281l-134 3l-151 -3v30l63 3c36 2 40 9 40 72v242l-113 -66c-14 -8 -33 -12 -56 -12c-135 0 -221 85 -221 216c0 87 36 153 106 194l91 54c17 9 55 17 87 17c46 0 93 -10 149 -33l53 31l21 -11c-19 -38 -25 -76 -25 -138v-494c0 -63 3 -70 40 -72l50 -3v-30z M438 120v261c-38 29 -76 41 -129 41c-105 0 -166 -64 -166 -174c0 -121 66 -203 162 -203c27 0 52 7 78 20c29 15 55 41 55 55'], + 0xE21C: [469,281,695,61,675,'675 -281l-144 3l-162 -3v30l68 3c38 2 43 9 43 72v242l-122 -66c-15 -8 -35 -12 -60 -12c-145 0 -237 85 -237 216c0 87 39 153 113 194l99 54c17 9 58 17 92 17c50 0 101 -10 160 -33l58 31l22 -11c-20 -38 -27 -76 -27 -138v-494c0 -63 4 -70 43 -72l54 -3v-30z M480 120v261c-41 29 -82 41 -139 41c-113 0 -178 -64 -178 -174c0 -121 71 -203 174 -203c28 0 55 7 83 20c32 15 60 41 60 55'], + 0xE21D: [694,5,504,57,441,'441 540c0 -57 -28 -96 -120 -174c-89 -73 -103 -90 -103 -123c0 -16 7 -29 24 -48l-23 -14c-32 19 -48 43 -48 73c0 34 18 61 84 128c65 65 84 97 84 137c0 64 -55 109 -134 109c-49 0 -83 -15 -95 -42l-22 -48l-31 8l41 113c58 26 96 35 144 35c112 0 199 -67 199 -154 zM290 53c0 -31 -30 -58 -65 -58c-32 0 -61 28 -61 58s29 58 62 58c34 0 64 -28 64 -58'], + 0xE21E: [694,5,559,70,482,'482 540c0 -57 -29 -96 -129 -174c-94 -73 -110 -90 -110 -123c0 -16 7 -29 26 -48l-24 -14c-35 19 -52 43 -52 73c0 34 19 61 90 128c69 65 90 97 90 137c0 64 -59 109 -144 109c-52 0 -88 -15 -101 -42l-24 -48l-34 8l45 113c62 26 103 35 154 35 c121 0 213 -67 213 -154zM321 53c0 -31 -33 -58 -71 -58c-33 0 -65 28 -65 58s32 58 67 58c36 0 69 -28 69 -58'], + 0xE21F: [454,245,504,63,447,'447 -97l-41 -113c-58 -26 -96 -35 -144 -35c-112 0 -199 67 -199 154c0 57 28 96 120 174c89 73 103 90 103 123c0 16 -7 29 -24 48l23 14c32 -19 48 -43 48 -73c0 -34 -18 -61 -84 -128c-65 -65 -84 -97 -84 -137c0 -64 55 -109 134 -109c49 0 83 15 95 42l21 48z M340 396c0 -30 -29 -58 -62 -58c-34 0 -64 28 -64 58c0 31 30 58 65 58c32 0 61 -28 61 -58'], + 0xE220: [454,245,559,77,489,'489 -97l-44 -113c-62 -26 -103 -35 -155 -35c-120 0 -213 67 -213 154c0 57 30 96 129 174c95 73 110 90 110 123c0 16 -7 29 -26 48l25 14c35 -19 51 -43 51 -73c0 -34 -18 -61 -90 -128c-69 -65 -90 -97 -90 -137c0 -64 60 -109 144 -109c53 0 89 15 102 42l23 48z M375 396c0 -30 -32 -58 -67 -58c-36 0 -69 28 -69 58c0 31 33 58 70 58c34 0 66 -28 66 -58'], + 0xE221: [709,-469,424,67,357,'159 665l-35 -196h-21l-36 196v5c0 19 24 39 47 39c22 0 45 -20 45 -38v-6zM357 665l-35 -196h-22l-36 196v5c0 19 24 39 47 39s46 -20 46 -38v-6'], + 0xE222: [709,-469,474,81,392,'180 665l-37 -196h-24l-38 196v5c0 19 26 39 50 39c25 0 49 -20 49 -38v-6zM392 665l-37 -196h-24l-38 196v5c0 19 25 39 50 39c24 0 49 -20 49 -38v-6'], + 0xE223: [110,153,565,66,499,'271 97c-38 -86 -79 -153 -141 -226l-48 -24l-16 10c52 77 78 144 85 223l105 30zM499 97c-37 -86 -78 -153 -140 -226l-48 -24l-17 10c53 77 79 144 86 223l105 30'], + 0xE224: [110,153,625,80,545,'300 97c-40 -86 -85 -153 -151 -226l-52 -24l-17 10c56 77 84 144 91 223l113 30zM545 97c-39 -86 -84 -153 -151 -226l-51 -24l-18 10c57 77 85 144 92 223l113 30'], + 0xE225: [709,-446,565,66,499,'271 699c-53 -76 -79 -144 -86 -223l-105 -30l-14 13c37 86 78 153 140 226l48 24zM499 699c-52 -76 -78 -144 -85 -223l-105 -30l-15 13c38 86 79 153 141 226l48 24'], + 0xE226: [709,-446,625,80,545,'300 699c-57 -76 -85 -144 -92 -223l-113 -30l-15 13c39 86 84 153 151 226l51 24zM545 699c-56 -76 -84 -144 -91 -223l-113 -30l-16 13c40 86 85 153 151 226l52 24'], + 0xE227: [709,-446,565,66,499,'271 696c-38 -86 -79 -153 -141 -226l-48 -24l-16 10c52 77 78 143 85 223l105 30zM499 696c-37 -86 -78 -153 -140 -226l-48 -24l-17 10c53 77 79 143 86 223l105 30'], + 0xE228: [709,-446,625,80,545,'300 696c-40 -86 -85 -153 -151 -226l-52 -24l-17 10c56 77 84 143 91 223l113 30zM545 696c-39 -86 -84 -153 -151 -226l-51 -24l-18 10c57 77 85 143 92 223l113 30'], + 0xE229: [709,-446,323,59,264,'264 699c-52 -76 -79 -144 -85 -223l-106 -30l-14 13c37 86 79 153 141 226l48 24'], + 0xE22A: [709,-446,365,73,293,'293 699c-57 -76 -85 -144 -92 -223l-113 -30l-15 13c39 86 84 153 151 226l51 24'], + 0xE22B: [709,-446,323,59,264,'264 696c-37 -86 -79 -153 -141 -226l-48 -24l-16 10c52 77 79 143 85 223l106 30'], + 0xE22C: [709,-446,365,73,293,'293 696c-40 -86 -85 -153 -151 -226l-52 -24l-17 10c56 77 84 143 91 223l113 30'], + 0xE22D: [110,153,323,34,239,'239 97c-37 -86 -79 -153 -141 -226l-48 -24l-16 10c52 77 78 144 85 223l106 30'], + 0xE22E: [110,153,365,46,266,'266 97c-40 -86 -85 -153 -151 -226l-52 -24l-17 10c56 77 84 144 91 223l113 30'], + 0xE22F: [709,-469,247,76,169,'169 665l-35 -196h-22l-36 196v5c0 19 24 39 47 39s46 -20 46 -38v-6'], + 0xE230: [709,-469,283,91,191,'191 665l-38 -196h-23l-39 196v5c0 19 26 39 51 39c24 0 49 -20 49 -38v-6'], + 0xE231: [692,3,748,34,739,'739 -3c-26 2 -52 3 -78 3c-25 0 -49 -1 -74 -3l-45 54l-201 247c-17 22 -26 33 -50 57v16h32c126 0 206 58 206 150c0 85 -63 133 -177 133c-37 0 -70 -4 -107 -12v-522c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 78 -6 87 -56 90 l-44 3v30l188 -3l195 3c142 0 213 -54 213 -150c0 -58 -31 -108 -87 -145c-36 -23 -65 -34 -126 -48l248 -296c14 -17 31 -23 66 -26v-30'], + 0xE232: [692,3,822,46,803,'803 -3c-28 2 -56 3 -85 3c-26 0 -52 -1 -79 -3l-48 54l-215 247c-19 22 -28 33 -54 57v16h34c136 0 221 58 221 150c0 85 -68 133 -190 133c-39 0 -75 -4 -114 -12v-522c0 -79 6 -87 59 -90l57 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 78 -6 87 -60 90 l-48 3v30l202 -3l210 3c152 0 228 -54 228 -150c0 -58 -33 -108 -94 -145c-38 -23 -69 -34 -134 -48l265 -296c16 -17 34 -23 72 -26v-30'], + 0xE233: [469,3,451,33,418,'418 458l-10 -120h-23c-17 32 -40 46 -73 46c-53 0 -97 -50 -97 -110v-172c0 -66 2 -69 51 -72l57 -3v-30l-156 3l-134 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-103l61 66c23 25 58 41 90 41c20 0 40 -4 52 -11'], + 0xE234: [469,3,502,45,458,'458 458l-11 -120h-25c-18 32 -43 46 -78 46c-57 0 -104 -50 -104 -110v-172c0 -66 2 -69 55 -72l61 -3v-30l-168 3l-143 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-103l65 66c25 25 62 41 98 41c21 0 42 -4 55 -11'], + 0xE235: [888,3,748,34,739,'739 -3c-26 2 -52 3 -78 3c-25 0 -49 -1 -74 -3l-45 54l-201 247c-17 22 -26 33 -50 57v16h32c126 0 206 58 206 150c0 85 -63 133 -177 133c-37 0 -70 -4 -107 -12v-522c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 78 -6 87 -56 90 l-44 3v30l188 -3l195 3c142 0 213 -54 213 -150c0 -58 -31 -108 -87 -145c-36 -23 -65 -34 -126 -48l248 -296c14 -17 31 -23 66 -26v-30zM503 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE236: [888,3,822,46,803,'803 -3c-28 2 -56 3 -85 3c-26 0 -52 -1 -79 -3l-48 54l-215 247c-19 22 -28 33 -54 57v16h34c136 0 221 58 221 150c0 85 -68 133 -190 133c-39 0 -75 -4 -114 -12v-522c0 -79 6 -87 59 -90l57 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 78 -6 87 -60 90 l-48 3v30l202 -3l210 3c152 0 228 -54 228 -150c0 -58 -33 -108 -94 -145c-38 -23 -69 -34 -134 -48l265 -296c16 -17 34 -23 72 -26v-30zM549 861c0 -15 -10 -22 -50 -39l-183 -73h-50l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27'], + 0xE237: [677,3,451,33,418,'418 458l-10 -120h-23c-17 32 -40 46 -73 46c-53 0 -97 -50 -97 -110v-172c0 -66 2 -69 51 -72l57 -3v-30l-156 3l-134 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-103l61 66c23 25 58 41 90 41c20 0 40 -4 52 -11zM362 643 c0 -18 -8 -26 -44 -47l-156 -90h-44l150 138c24 22 44 33 60 33c19 0 34 -15 34 -34'], + 0xE238: [677,3,502,45,458,'458 458l-11 -120h-25c-18 32 -43 46 -78 46c-57 0 -104 -50 -104 -110v-172c0 -66 2 -69 55 -72l61 -3v-30l-168 3l-143 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-103l65 66c25 25 62 41 98 41c21 0 42 -4 55 -11zM398 643 c0 -18 -8 -26 -47 -47l-168 -90h-47l161 138c26 22 47 33 65 33c20 0 36 -15 36 -34'], + 0xE239: [887,3,748,34,739,'739 -3c-26 2 -52 3 -78 3c-25 0 -49 -1 -74 -3l-45 54l-201 247c-17 22 -26 33 -50 57v16h32c126 0 206 58 206 150c0 85 -63 133 -177 133c-37 0 -70 -4 -107 -12v-522c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 78 -6 87 -56 90 l-44 3v30l188 -3l195 3c142 0 213 -54 213 -150c0 -58 -31 -108 -87 -145c-36 -23 -65 -34 -126 -48l248 -296c14 -17 31 -23 66 -26v-30zM536 887l-146 -135h-74l-147 135h42l142 -84l143 84h40'], + 0xE23A: [887,3,822,46,803,'803 -3c-28 2 -56 3 -85 3c-26 0 -52 -1 -79 -3l-48 54l-215 247c-19 22 -28 33 -54 57v16h34c136 0 221 58 221 150c0 85 -68 133 -190 133c-39 0 -75 -4 -114 -12v-522c0 -79 6 -87 59 -90l57 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 78 -6 87 -60 90 l-48 3v30l202 -3l210 3c152 0 228 -54 228 -150c0 -58 -33 -108 -94 -145c-38 -23 -69 -34 -134 -48l265 -296c16 -17 34 -23 72 -26v-30zM585 887l-157 -135h-79l-158 135h44l154 -84l153 84h43'], + 0xE23B: [676,3,451,33,418,'418 458l-10 -120h-23c-17 32 -40 46 -73 46c-53 0 -97 -50 -97 -110v-172c0 -66 2 -69 51 -72l57 -3v-30l-156 3l-134 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-103l61 66c23 25 58 41 90 41c20 0 40 -4 52 -11zM385 676 l-136 -167h-68l-136 167h38l132 -103l133 103h37'], + 0xE23C: [676,3,502,45,458,'458 458l-11 -120h-25c-18 32 -43 46 -78 46c-57 0 -104 -50 -104 -110v-172c0 -66 2 -69 55 -72l61 -3v-30l-168 3l-143 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-103l65 66c25 25 62 41 98 41c21 0 42 -4 55 -11zM422 676 l-146 -167h-72l-147 167h41l142 -103l143 103h39'], + 0xE23D: [692,271,748,34,739,'739 -3c-26 2 -52 3 -78 3c-25 0 -49 -1 -74 -3l-45 54l-201 247c-17 22 -26 33 -50 57v16h32c126 0 206 58 206 150c0 85 -63 133 -177 133c-37 0 -70 -4 -107 -12v-522c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 78 -6 87 -56 90 l-44 3v30l188 -3l195 3c142 0 213 -54 213 -150c0 -58 -31 -108 -87 -145c-36 -23 -65 -34 -126 -48l248 -296c14 -17 31 -23 66 -26v-30zM402 -88c-29 -70 -52 -103 -103 -164l-38 -19l-13 9c41 62 51 96 57 160c46 12 54 15 86 25'], + 0xE23E: [692,271,822,46,803,'803 -3c-28 2 -56 3 -85 3c-26 0 -52 -1 -79 -3l-48 54l-215 247c-19 22 -28 33 -54 57v16h34c136 0 221 58 221 150c0 85 -68 133 -190 133c-39 0 -75 -4 -114 -12v-522c0 -79 6 -87 59 -90l57 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 78 -6 87 -60 90 l-48 3v30l202 -3l210 3c152 0 228 -54 228 -150c0 -58 -33 -108 -94 -145c-38 -23 -69 -34 -134 -48l265 -296c16 -17 34 -23 72 -26v-30zM441 -88c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c45 62 55 96 62 160c49 12 57 15 92 25'], + 0xE23F: [469,271,451,33,418,'418 458l-10 -120h-23c-17 32 -40 46 -73 46c-53 0 -97 -50 -97 -110v-172c0 -66 2 -69 51 -72l57 -3v-30l-156 3l-134 -3v30l50 3c37 2 40 9 40 72v225c0 66 -4 73 -48 73h-40v28c58 6 115 20 170 41l10 -4v-103l61 66c23 25 58 41 90 41c20 0 40 -4 52 -11zM227 -88 c-30 -70 -52 -103 -104 -164l-38 -19l-13 9c42 62 51 96 58 160c46 12 53 15 86 25'], + 0xE240: [469,271,502,45,458,'458 458l-11 -120h-25c-18 32 -43 46 -78 46c-57 0 -104 -50 -104 -110v-172c0 -66 2 -69 55 -72l61 -3v-30l-168 3l-143 -3v30l53 3c40 2 44 9 44 72v225c0 66 -5 73 -52 73h-43v28c62 6 123 20 182 41l11 -4v-103l65 66c25 25 62 41 98 41c21 0 42 -4 55 -11zM253 -88 c-32 -70 -56 -103 -111 -164l-41 -19l-14 9c44 62 55 96 62 160c49 12 57 15 92 25'], + 0xE241: [692,-492,383,83,301,'301 592c0 -56 -49 -100 -109 -100c-61 0 -109 44 -109 101c0 55 49 99 111 99c58 0 107 -45 107 -100zM260 592c0 38 -28 64 -67 64c-41 0 -69 -25 -69 -63c0 -40 27 -65 68 -65c40 0 68 26 68 64'], + 0xE242: [692,-492,430,98,332,'332 592c0 -56 -52 -100 -117 -100s-117 44 -117 101c0 55 53 99 120 99c62 0 114 -45 114 -100zM288 592c0 38 -29 64 -71 64c-45 0 -74 -25 -74 -63c0 -40 28 -65 72 -65s73 26 73 64'], + 0xE243: [709,20,592,36,558,'558 230c0 -145 -137 -250 -327 -250c-63 0 -126 13 -188 38c6 45 8 67 8 113c0 6 0 22 -1 40h35l9 -67c5 -41 90 -80 178 -80c113 0 195 65 195 155c0 38 -13 66 -42 88c-28 22 -66 34 -150 45c-106 13 -156 29 -193 60c-32 27 -46 63 -46 112c0 131 118 225 280 225 c60 0 109 -10 196 -42c-10 -54 -15 -88 -15 -141h-35l-6 57c-3 29 -15 44 -51 61c-30 15 -70 23 -113 23c-96 0 -164 -60 -164 -144c0 -77 47 -110 180 -126c122 -15 167 -28 206 -61c30 -26 44 -59 44 -106'], + 0xE244: [709,20,654,48,609,'609 230c0 -145 -148 -250 -351 -250c-68 0 -136 13 -203 38c7 45 9 67 9 113c0 6 0 22 -1 40h38l9 -67c6 -41 97 -80 191 -80c121 0 209 65 209 155c0 38 -14 66 -44 88c-31 22 -72 34 -162 45c-113 13 -167 29 -207 60c-34 27 -49 63 -49 112c0 131 126 225 301 225 c64 0 117 -10 210 -42c-11 -54 -16 -88 -16 -141h-37l-7 57c-4 29 -17 44 -55 61c-32 15 -75 23 -121 23c-103 0 -177 -60 -177 -144c0 -77 51 -110 193 -126c131 -15 181 -28 222 -61c32 -26 48 -59 48 -106'], + 0xE245: [469,20,482,43,436,'436 148c0 -98 -101 -168 -244 -168c-50 0 -93 7 -149 24c8 40 12 70 12 139h32v-41c0 -50 57 -85 137 -85c77 0 132 38 132 92c0 38 -21 59 -70 69c-74 15 -132 31 -162 43c-50 21 -74 55 -74 103c0 90 78 145 204 145c45 0 84 -7 142 -25c-3 -31 -5 -55 -6 -113h-30v23 c0 47 -56 82 -129 82c-66 0 -104 -28 -104 -78c0 -46 29 -66 118 -82c96 -17 132 -28 161 -54c21 -20 30 -43 30 -74'], + 0xE246: [469,20,536,55,477,'477 148c0 -98 -108 -168 -262 -168c-53 0 -99 7 -160 24c9 40 13 70 13 139h35v-41c0 -50 61 -85 146 -85c83 0 142 38 142 92c0 38 -22 59 -75 69c-80 15 -142 31 -173 43c-54 21 -80 55 -80 103c0 90 83 145 219 145c48 0 90 -7 152 -25c-3 -31 -5 -55 -6 -113h-32v23 c0 47 -60 82 -138 82c-72 0 -113 -28 -113 -78c0 -46 32 -66 128 -82c103 -17 141 -28 172 -54c23 -20 32 -43 32 -74'], + 0xE247: [888,20,592,36,558,'558 230c0 -145 -137 -250 -327 -250c-63 0 -126 13 -188 38c6 45 8 67 8 113c0 6 0 22 -1 40h35l9 -67c5 -41 90 -80 178 -80c113 0 195 65 195 155c0 38 -13 66 -42 88c-28 22 -66 34 -150 45c-106 13 -156 29 -193 60c-32 27 -46 63 -46 112c0 131 118 225 280 225 c60 0 109 -10 196 -42c-10 -54 -15 -88 -15 -141h-35l-6 57c-3 29 -15 44 -51 61c-30 15 -70 23 -113 23c-96 0 -164 -60 -164 -144c0 -77 47 -110 180 -126c122 -15 167 -28 206 -61c30 -26 44 -59 44 -106zM423 861c0 -15 -9 -22 -47 -39l-170 -73h-47l163 113 c25 17 47 25 65 26c20 0 36 -12 36 -27'], + 0xE248: [888,20,654,48,609,'609 230c0 -145 -148 -250 -351 -250c-68 0 -136 13 -203 38c7 45 9 67 9 113c0 6 0 22 -1 40h38l9 -67c6 -41 97 -80 191 -80c121 0 209 65 209 155c0 38 -14 66 -44 88c-31 22 -72 34 -162 45c-113 13 -167 29 -207 60c-34 27 -49 63 -49 112c0 131 126 225 301 225 c64 0 117 -10 210 -42c-11 -54 -16 -88 -16 -141h-37l-7 57c-4 29 -17 44 -55 61c-32 15 -75 23 -121 23c-103 0 -177 -60 -177 -144c0 -77 51 -110 193 -126c131 -15 181 -28 222 -61c32 -26 48 -59 48 -106zM463 861c0 -15 -9 -22 -50 -39l-182 -73h-51l175 113 c27 17 50 25 70 26c21 0 38 -12 38 -27'], + 0xE249: [677,20,482,43,436,'436 148c0 -98 -101 -168 -244 -168c-50 0 -93 7 -149 24c8 40 12 70 12 139h32v-41c0 -50 57 -85 137 -85c77 0 132 38 132 92c0 38 -21 59 -70 69c-74 15 -132 31 -162 43c-50 21 -74 55 -74 103c0 90 78 145 204 145c45 0 84 -7 142 -25c-3 -31 -5 -55 -6 -113h-30v23 c0 47 -56 82 -129 82c-66 0 -104 -28 -104 -78c0 -46 29 -66 118 -82c96 -17 132 -28 161 -54c21 -20 30 -43 30 -74zM371 643c0 -18 -8 -26 -44 -47l-157 -90h-43l150 138c24 22 44 33 60 33c19 0 34 -15 34 -34'], + 0xE24A: [677,20,536,55,477,'477 148c0 -98 -108 -168 -262 -168c-53 0 -99 7 -160 24c9 40 13 70 13 139h35v-41c0 -50 61 -85 146 -85c83 0 142 38 142 92c0 38 -22 59 -75 69c-80 15 -142 31 -173 43c-54 21 -80 55 -80 103c0 90 83 145 219 145c48 0 90 -7 152 -25c-3 -31 -5 -55 -6 -113h-32v23 c0 47 -60 82 -138 82c-72 0 -113 -28 -113 -78c0 -46 32 -66 128 -82c103 -17 141 -28 172 -54c23 -20 32 -43 32 -74zM407 643c0 -18 -8 -26 -47 -47l-168 -90h-47l162 138c25 22 46 33 64 33c20 0 36 -15 36 -34'], + 0xE24B: [887,20,592,36,558,'558 230c0 -145 -137 -250 -327 -250c-63 0 -126 13 -188 38c6 45 8 67 8 113c0 6 0 22 -1 40h35l9 -67c5 -41 90 -80 178 -80c113 0 195 65 195 155c0 38 -13 66 -42 88c-28 22 -66 34 -150 45c-106 13 -156 29 -193 60c-32 27 -46 63 -46 112c0 131 118 225 280 225 c60 0 109 -10 196 -42c-10 -54 -15 -88 -15 -141h-35l-6 57c-3 29 -15 44 -51 61c-30 15 -70 23 -113 23c-96 0 -164 -60 -164 -144c0 -77 47 -110 180 -126c122 -15 167 -28 206 -61c30 -26 44 -59 44 -106zM457 887l-146 -135h-74l-147 135h41l143 -84l143 84h40'], + 0xE24C: [887,20,654,48,609,'609 230c0 -145 -148 -250 -351 -250c-68 0 -136 13 -203 38c7 45 9 67 9 113c0 6 0 22 -1 40h38l9 -67c6 -41 97 -80 191 -80c121 0 209 65 209 155c0 38 -14 66 -44 88c-31 22 -72 34 -162 45c-113 13 -167 29 -207 60c-34 27 -49 63 -49 112c0 131 126 225 301 225 c64 0 117 -10 210 -42c-11 -54 -16 -88 -16 -141h-37l-7 57c-4 29 -17 44 -55 61c-32 15 -75 23 -121 23c-103 0 -177 -60 -177 -144c0 -77 51 -110 193 -126c131 -15 181 -28 222 -61c32 -26 48 -59 48 -106zM500 887l-157 -135h-80l-158 135h45l153 -84l153 84h44'], + 0xE24D: [676,20,482,43,436,'436 148c0 -98 -101 -168 -244 -168c-50 0 -93 7 -149 24c8 40 12 70 12 139h32v-41c0 -50 57 -85 137 -85c77 0 132 38 132 92c0 38 -21 59 -70 69c-74 15 -132 31 -162 43c-50 21 -74 55 -74 103c0 90 78 145 204 145c45 0 84 -7 142 -25c-3 -31 -5 -55 -6 -113h-30v23 c0 47 -56 82 -129 82c-66 0 -104 -28 -104 -78c0 -46 29 -66 118 -82c96 -17 132 -28 161 -54c21 -20 30 -43 30 -74zM394 676l-137 -167h-67l-136 167h38l132 -103l133 103h37'], + 0xE24E: [676,20,536,55,477,'477 148c0 -98 -108 -168 -262 -168c-53 0 -99 7 -160 24c9 40 13 70 13 139h35v-41c0 -50 61 -85 146 -85c83 0 142 38 142 92c0 38 -22 59 -75 69c-80 15 -142 31 -173 43c-54 21 -80 55 -80 103c0 90 83 145 219 145c48 0 90 -7 152 -25c-3 -31 -5 -55 -6 -113h-32v23 c0 47 -60 82 -138 82c-72 0 -113 -28 -113 -78c0 -46 32 -66 128 -82c103 -17 141 -28 172 -54c23 -20 32 -43 32 -74zM432 676l-146 -167h-73l-146 167h41l141 -103l143 103h40'], + 0xE24F: [709,225,592,36,558,'558 230c0 -124 -100 -218 -247 -243l-26 -62c11 3 17 4 28 4c58 0 94 -27 94 -70c0 -52 -51 -84 -135 -84c-31 0 -44 2 -92 16l15 31c35 -9 52 -11 72 -11c37 0 58 15 58 43c0 23 -17 39 -44 39c-14 0 -24 -2 -44 -7l-8 6l42 90c-14 -2 -27 -2 -40 -2 c-64 0 -126 12 -188 38c6 44 7 76 7 153h35l9 -67c5 -42 90 -80 177 -80c114 0 196 65 196 155c0 38 -14 68 -43 89c-29 23 -66 34 -149 44c-108 14 -158 30 -194 62c-31 26 -45 61 -45 110c0 131 118 225 280 225c61 0 109 -10 196 -42c-10 -54 -15 -89 -15 -141h-35l-6 57 c-3 29 -15 44 -51 61c-30 15 -69 23 -113 23c-96 0 -164 -60 -164 -144c0 -77 47 -110 180 -126c124 -15 170 -29 208 -62c29 -27 42 -58 42 -105'], + 0xE250: [709,225,654,48,609,'609 230c0 -124 -108 -218 -266 -243l-28 -62c12 3 19 4 30 4c62 0 101 -27 101 -70c0 -52 -55 -84 -145 -84c-33 0 -47 2 -98 16l16 31c37 -9 55 -11 77 -11c40 0 62 15 62 43c0 23 -19 39 -47 39c-15 0 -25 -2 -48 -7l-8 6l45 90c-14 -2 -28 -2 -42 -2 c-70 0 -136 12 -203 38c7 44 8 76 8 153h38l9 -67c6 -42 97 -80 190 -80c122 0 210 65 210 155c0 38 -15 68 -45 89c-32 23 -72 34 -161 44c-116 14 -169 30 -208 62c-33 26 -48 61 -48 110c0 131 126 225 301 225c65 0 117 -10 210 -42c-11 -54 -16 -89 -16 -141h-37l-7 57 c-4 29 -17 44 -55 61c-32 15 -74 23 -121 23c-103 0 -177 -60 -177 -144c0 -77 51 -110 193 -126c134 -15 183 -29 224 -62c31 -27 46 -58 46 -105'], + 0xE251: [469,225,482,43,436,'436 148c0 -84 -72 -146 -181 -163l-25 -60c11 3 18 4 29 4c57 0 93 -27 93 -70c0 -52 -51 -84 -135 -84c-30 0 -44 2 -91 16l15 31c35 -9 51 -11 72 -11c37 0 58 15 58 43c0 23 -18 39 -44 39c-14 0 -24 -2 -45 -7l-7 6l41 89c-8 -1 -16 -1 -24 -1c-50 0 -92 7 -149 24 c10 40 12 70 12 139h32v-41c0 -50 57 -85 137 -85c77 0 132 38 132 92c0 39 -21 59 -70 69c-77 16 -134 32 -163 44c-50 22 -73 54 -73 102c0 90 78 145 204 145c46 0 83 -7 142 -25c-3 -31 -5 -55 -6 -113h-30v23c0 47 -55 82 -129 82c-66 0 -104 -28 -104 -78 c0 -46 29 -66 118 -82c99 -17 133 -29 162 -55c20 -19 29 -42 29 -73'], + 0xE252: [469,225,536,55,477,'477 148c0 -84 -77 -146 -194 -163l-27 -60c12 3 19 4 31 4c62 0 100 -27 100 -70c0 -52 -55 -84 -145 -84c-32 0 -47 2 -98 16l16 31c38 -9 55 -11 78 -11c39 0 62 15 62 43c0 23 -19 39 -47 39c-15 0 -26 -2 -48 -7l-8 6l44 89c-8 -1 -17 -1 -26 -1 c-53 0 -98 7 -160 24c11 40 13 70 13 139h35v-41c0 -50 61 -85 146 -85c83 0 142 38 142 92c0 39 -22 59 -75 69c-82 16 -144 32 -174 44c-54 22 -79 54 -79 102c0 90 83 145 219 145c49 0 89 -7 152 -25c-3 -31 -5 -55 -6 -113h-32v23c0 47 -59 82 -138 82 c-72 0 -113 -28 -113 -78c0 -46 32 -66 128 -82c105 -17 142 -29 173 -55c22 -19 31 -42 31 -73'], + 0xE253: [709,271,592,36,558,'558 230c0 -145 -137 -250 -327 -250c-63 0 -126 13 -188 38c6 45 8 67 8 113c0 6 0 22 -1 40h35l9 -67c5 -41 90 -80 178 -80c113 0 195 65 195 155c0 38 -13 66 -42 88c-28 22 -66 34 -150 45c-106 13 -156 29 -193 60c-32 27 -46 63 -46 112c0 131 118 225 280 225 c60 0 109 -10 196 -42c-10 -54 -15 -88 -15 -141h-35l-6 57c-3 29 -15 44 -51 61c-30 15 -70 23 -113 23c-96 0 -164 -60 -164 -144c0 -77 47 -110 180 -126c122 -15 167 -28 206 -61c30 -26 44 -59 44 -106zM323 -88c-30 -70 -52 -103 -104 -164l-38 -19l-13 9 c41 62 51 96 58 160c46 12 53 15 86 25'], + 0xE254: [709,271,654,48,609,'609 230c0 -145 -148 -250 -351 -250c-68 0 -136 13 -203 38c7 45 9 67 9 113c0 6 0 22 -1 40h38l9 -67c6 -41 97 -80 191 -80c121 0 209 65 209 155c0 38 -14 66 -44 88c-31 22 -72 34 -162 45c-113 13 -167 29 -207 60c-34 27 -49 63 -49 112c0 131 126 225 301 225 c64 0 117 -10 210 -42c-11 -54 -16 -88 -16 -141h-37l-7 57c-4 29 -17 44 -55 61c-32 15 -75 23 -121 23c-103 0 -177 -60 -177 -144c0 -77 51 -110 193 -126c131 -15 181 -28 222 -61c32 -26 48 -59 48 -106zM356 -88c-32 -70 -56 -103 -111 -164l-41 -19l-14 9 c44 62 55 96 62 160c49 12 57 15 92 25'], + 0xE255: [469,271,482,43,436,'436 148c0 -98 -101 -168 -244 -168c-50 0 -93 7 -149 24c8 40 12 70 12 139h32v-41c0 -50 57 -85 137 -85c77 0 132 38 132 92c0 38 -21 59 -70 69c-74 15 -132 31 -162 43c-50 21 -74 55 -74 103c0 90 78 145 204 145c45 0 84 -7 142 -25c-3 -31 -5 -55 -6 -113h-30v23 c0 47 -56 82 -129 82c-66 0 -104 -28 -104 -78c0 -46 29 -66 118 -82c96 -17 132 -28 161 -54c21 -20 30 -43 30 -74zM273 -88c-30 -70 -53 -103 -104 -164l-38 -19l-13 9c41 62 51 96 58 160c45 12 53 15 86 25'], + 0xE256: [469,271,536,55,477,'477 148c0 -98 -108 -168 -262 -168c-53 0 -99 7 -160 24c9 40 13 70 13 139h35v-41c0 -50 61 -85 146 -85c83 0 142 38 142 92c0 38 -22 59 -75 69c-80 15 -142 31 -173 43c-54 21 -80 55 -80 103c0 90 83 145 219 145c48 0 90 -7 152 -25c-3 -31 -5 -55 -6 -113h-32v23 c0 47 -60 82 -138 82c-72 0 -113 -28 -113 -78c0 -46 32 -66 128 -82c103 -17 141 -28 172 -54c23 -20 32 -43 32 -74zM302 -88c-32 -70 -56 -103 -111 -164l-41 -19l-14 9c44 62 55 96 62 160c49 12 57 15 92 25'], + 0xE257: [709,219,565,38,517,'517 253c0 -53 -25 -95 -85 -142c46 -23 65 -54 65 -104c0 -114 -132 -226 -268 -226c-57 0 -114 15 -171 44c8 64 11 101 13 157h35l5 -90c45 -44 83 -59 151 -59c101 0 167 47 167 120c0 35 -17 61 -51 83c-26 17 -54 27 -145 54c-88 26 -121 41 -155 69 c-24 19 -40 51 -40 84c0 53 30 98 91 139c-43 29 -63 64 -63 103c0 121 116 224 252 224c54 0 96 -11 145 -36c-8 -57 -12 -95 -14 -152h-34l-5 87c-46 36 -81 49 -132 49c-87 0 -149 -50 -149 -120c0 -31 13 -52 44 -72c27 -16 51 -26 150 -55c145 -43 194 -83 194 -157z M445 213c0 31 -18 58 -50 77c-32 18 -65 29 -140 49c-56 15 -67 19 -98 30c-34 -28 -47 -53 -47 -87c0 -53 54 -87 206 -129c53 -15 65 -19 92 -30c27 39 37 63 37 90'], + 0xE258: [709,219,625,50,564,'564 253c0 -53 -27 -95 -91 -142c49 -23 70 -54 70 -104c0 -114 -142 -226 -288 -226c-61 0 -123 15 -184 44c9 64 12 101 15 157h37l6 -90c48 -44 89 -59 161 -59c109 0 179 47 179 120c0 35 -17 61 -54 83c-28 17 -58 27 -155 54c-95 26 -130 41 -167 69 c-26 19 -43 51 -43 84c0 53 32 98 98 139c-46 29 -68 64 -68 103c0 121 125 224 271 224c57 0 103 -11 156 -36c-10 -57 -13 -95 -15 -152h-37l-6 87c-49 36 -86 49 -141 49c-94 0 -160 -50 -160 -120c0 -31 14 -52 47 -72c29 -16 54 -26 161 -55c155 -43 208 -83 208 -157z M487 213c0 31 -19 58 -54 77c-34 18 -69 29 -150 49c-61 15 -72 19 -105 30c-36 -28 -50 -53 -50 -87c0 -53 57 -87 221 -129c56 -15 69 -19 98 -30c29 39 40 63 40 90'], + 0xE259: [456,153,292,27,248,'248 111c-31 -77 -72 -140 -161 -245l-44 -19l-16 11c64 96 91 161 99 237l106 30zM238 397c0 -30 -31 -57 -66 -57c-31 0 -61 28 -61 58s30 58 62 58c34 0 65 -28 65 -59'], + 0xE25A: [456,153,332,39,275,'275 111c-33 -77 -77 -140 -172 -245l-48 -19l-16 11c68 96 97 161 105 237l115 30zM265 397c0 -30 -33 -57 -71 -57c-34 0 -65 28 -65 58s31 58 66 58c37 0 70 -28 70 -59'], + 0xE25B: [689,3,565,58,552,'552 659l-200 -329c-97 -159 -125 -224 -171 -333c0 0 -30 3 -50 3s-50 -3 -50 -3l-10 13l266 392c41 61 75 119 119 201h-291c-50 0 -58 -8 -67 -70l-7 -56h-33s3 62 3 102c0 41 -3 105 -3 105l11 5l239 -5c116 0 126 1 244 5v-30'], + 0xE25C: [689,3,625,71,601,'601 659l-214 -329c-104 -159 -134 -224 -183 -333c0 0 -33 3 -54 3s-54 -3 -54 -3l-10 13l285 392c44 61 81 119 128 201h-313c-54 0 -62 -8 -71 -70l-8 -56h-36s4 62 4 102c0 41 -4 105 -4 105l12 5l256 -5l262 5v-30'], + 0xE25D: [689,20,565,45,520,'520 219c0 -136 -106 -239 -247 -239s-228 102 -228 267c0 137 61 259 173 346c56 44 100 64 205 96l40 -17v-8c-196 -54 -287 -152 -310 -333c72 54 112 78 176 78c116 0 191 -75 191 -190zM426 184c0 99 -55 165 -138 165c-52 0 -104 -24 -128 -58 c-12 -17 -16 -36 -16 -71c0 -134 50 -207 143 -207c84 0 139 67 139 171'], + 0xE25E: [689,20,625,57,568,'568 219c0 -136 -114 -239 -266 -239c-151 0 -245 102 -245 267c0 137 66 259 186 346c60 44 108 64 220 96l44 -17v-8c-211 -54 -309 -152 -334 -333c77 54 121 78 190 78c124 0 205 -75 205 -190zM467 184c0 99 -60 165 -149 165c-56 0 -111 -24 -137 -58 c-12 -17 -17 -36 -17 -71c0 -134 54 -207 153 -207c90 0 150 67 150 171'], + 0xE25F: [694,13,565,23,531,'531 668c-8 -35 -11 -70 -11 -102c0 -8 0 -19 1 -34h-36c-1 58 -7 79 -29 95c-19 13 -46 20 -78 20c-65 0 -105 -23 -133 -74c-17 -34 -26 -79 -26 -130v-89l199 6l-5 -48l-197 5c-5 -87 -35 -159 -102 -248c40 5 83 9 145 7l171 -6c11 0 18 -1 25 -1c20 0 27 8 31 37 l8 52h28v-148c-23 -17 -31 -20 -54 -20c-66 0 -134 7 -195 19c-61 13 -106 19 -177 23l-49 -45h-24v49c10 9 25 19 41 27c17 7 19 9 27 23c21 40 37 121 37 200v30l-105 -3l9 45l96 -3v106c0 65 36 120 108 168c68 45 126 65 188 65c45 0 70 -6 107 -26'], + 0xE260: [694,13,625,34,579,'579 668c-8 -35 -11 -70 -11 -102c0 -8 0 -19 1 -34h-39c-1 58 -8 79 -31 95c-20 13 -50 20 -84 20c-70 0 -113 -23 -142 -74c-19 -34 -28 -79 -28 -130v-89l213 6l-5 -48l-212 5c-6 -87 -37 -159 -110 -248c43 5 90 9 156 7l183 -6c12 0 20 -1 27 -1c23 0 30 8 34 37 l8 52h31v-148c-25 -17 -34 -20 -59 -20c-70 0 -144 7 -209 19c-66 13 -114 19 -190 23l-52 -45h-26v49c11 9 27 19 44 27c18 7 20 9 29 23c23 40 39 121 39 200v30l-112 -3l9 45l103 -3v106c0 65 39 120 116 168c74 45 136 65 203 65c48 0 74 -6 114 -26'], + 0xE261: [692,3,688,30,659,'659 692c-6 -57 -8 -96 -8 -161h-34l-4 79c-1 24 -13 33 -44 33h-169c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 55 -90l53 -3v-30l-160 3l-160 -3v30l53 3c50 3 55 11 55 90v423c0 43 -1 66 -4 100h-169c-31 0 -43 -9 -44 -33l-4 -79h-34c0 65 -2 104 -7 161l221 -3h172'], + 0xE262: [692,3,757,41,716,'716 692c-6 -57 -8 -96 -8 -161h-36l-5 79c-1 24 -14 33 -47 33h-181c-4 -33 -5 -55 -5 -100v-423c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v423c0 43 -1 66 -5 100h-181c-33 0 -46 -9 -47 -33l-4 -79h-37c0 65 -2 104 -8 161l238 -3h184'], + 0xE263: [621,12,375,34,358,'358 436l-10 -54h-140v-262c0 -49 18 -69 60 -69c21 0 37 5 65 19l14 -17l-53 -53c-6 -7 -32 -12 -57 -12c-84 0 -120 32 -120 106v288l-83 -4v21l85 35v70c0 30 -1 49 -4 79c33 10 66 23 92 38l13 -11c-8 -64 -12 -100 -12 -142v-38'], + 0xE264: [621,12,421,46,393,'393 436l-10 -54h-150v-262c0 -49 19 -69 64 -69c23 0 40 5 69 19l16 -17l-57 -53c-7 -7 -35 -12 -62 -12c-90 0 -128 32 -128 106v288l-89 -4v21l91 35v70c0 30 -1 49 -5 79c37 10 72 23 100 38l14 -11c-10 -64 -13 -100 -13 -142v-38'], + 0xE265: [887,3,688,30,659,'659 692c-6 -57 -8 -96 -8 -161h-34l-4 79c-1 24 -13 33 -44 33h-169c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 55 -90l53 -3v-30l-160 3l-160 -3v30l53 3c50 3 55 11 55 90v423c0 43 -1 66 -4 100h-169c-31 0 -43 -9 -44 -33l-4 -79h-34c0 65 -2 104 -7 161l221 -3h172z M528 887l-146 -135h-74l-148 135h42l143 -84l142 84h41'], + 0xE266: [887,3,757,41,716,'716 692c-6 -57 -8 -96 -8 -161h-36l-5 79c-1 24 -14 33 -47 33h-181c-4 -33 -5 -55 -5 -100v-423c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v423c0 43 -1 66 -5 100h-181c-33 0 -46 -9 -47 -33l-4 -79h-37c0 65 -2 104 -8 161l238 -3h184z M576 887l-157 -135h-80l-158 135h45l153 -84l153 84h44'], + 0xE267: [663,12,375,34,397,'358 436l-10 -54h-140v-262c0 -49 18 -69 60 -69c21 0 37 5 65 19l14 -17l-53 -53c-6 -7 -32 -12 -57 -12c-84 0 -120 32 -120 106v288l-83 -4v21l85 35v70c0 30 -1 49 -4 79c33 10 66 23 92 38l13 -11c-8 -64 -12 -100 -12 -142v-38zM397 652 c-29 -70 -52 -103 -104 -164l-38 -19l-13 9c42 62 51 96 58 160c46 12 53 15 86 25'], + 0xE268: [663,12,421,46,435,'393 436l-10 -54h-150v-262c0 -49 19 -69 64 -69c23 0 40 5 69 19l16 -17l-57 -53c-7 -7 -35 -12 -62 -12c-90 0 -128 32 -128 106v288l-89 -4v21l91 35v70c0 30 -1 49 -5 79c37 10 72 23 100 38l14 -11c-10 -64 -13 -100 -13 -142v-38zM435 652 c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c45 62 55 96 62 160c49 12 58 15 93 25'], + 0xE269: [692,225,688,30,659,'659 692c-6 -57 -8 -96 -8 -161h-34l-4 79c-1 24 -13 33 -44 33h-169c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 55 -90l53 -3v-30l-132 3l-33 -75c11 3 18 4 29 4c57 0 93 -27 93 -70c0 -52 -51 -84 -135 -84c-30 0 -44 2 -91 16l15 31c35 -9 51 -11 72 -11 c37 0 58 15 58 43c0 23 -18 39 -44 39c-14 0 -24 -2 -45 -7l-7 6l51 108l-151 -3v30l53 3c50 3 55 11 55 90v423c0 43 -1 66 -4 100h-169c-31 0 -43 -9 -44 -33l-4 -79h-34c0 65 -2 104 -7 161l74 -1l147 -2h172l91 1'], + 0xE26A: [692,225,757,41,716,'716 692c-6 -57 -8 -96 -8 -161h-36l-5 79c-1 24 -14 33 -47 33h-181c-4 -33 -5 -55 -5 -100v-423c0 -79 6 -87 60 -90l56 -3v-30l-142 3l-35 -75c12 3 19 4 31 4c62 0 100 -27 100 -70c0 -52 -55 -84 -145 -84c-32 0 -47 2 -98 16l16 31c38 -9 55 -11 78 -11 c39 0 62 15 62 43c0 23 -19 39 -47 39c-15 0 -26 -2 -48 -7l-8 6l55 108l-162 -3v30l56 3c54 3 60 11 60 90v423c0 43 -1 66 -5 100h-181c-33 0 -46 -9 -47 -33l-4 -79h-37c0 65 -2 104 -8 161l80 -1l158 -2h184l98 1'], + 0xE26B: [621,225,375,34,358,'358 436l-10 -54h-140v-262c0 -49 18 -69 60 -69c22 0 36 4 65 19l14 -17l-53 -53c-5 -5 -21 -9 -40 -11l-26 -64c11 3 17 4 28 4c58 0 94 -27 94 -70c0 -52 -51 -84 -135 -84c-31 0 -44 2 -92 16l16 31c34 -9 51 -11 72 -11c37 0 57 15 57 43c0 23 -17 39 -43 39 c-14 0 -24 -2 -45 -7l-8 6l45 97c-70 4 -100 37 -100 105v288l-83 -4v21l85 35v70c0 30 -1 49 -4 79c33 10 66 23 92 38l13 -11c-8 -64 -12 -100 -12 -142v-38'], + 0xE26C: [621,225,421,46,393,'393 436l-10 -54h-150v-262c0 -49 19 -69 64 -69c24 0 39 4 69 19l16 -17l-57 -53c-5 -5 -23 -9 -43 -11l-28 -64c12 3 19 4 30 4c62 0 101 -27 101 -70c0 -52 -55 -84 -145 -84c-33 0 -47 2 -98 16l16 31c37 -9 55 -11 77 -11c40 0 62 15 62 43c0 23 -18 39 -47 39 c-15 0 -25 -2 -47 -7l-9 6l48 97c-75 4 -107 37 -107 105v288l-89 -4v21l91 35v70c0 30 -1 49 -5 79c37 10 72 23 100 38l14 -11c-10 -64 -13 -100 -13 -142v-38'], + 0xE26D: [692,271,688,30,659,'659 692c-6 -57 -8 -96 -8 -161h-34l-4 79c-1 24 -13 33 -44 33h-169c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 55 -90l53 -3v-30l-160 3l-160 -3v30l53 3c50 3 55 11 55 90v423c0 43 -1 66 -4 100h-169c-31 0 -43 -9 -44 -33l-4 -79h-34c0 65 -2 104 -7 161l221 -3h172z M394 -88c-30 -70 -53 -103 -104 -164l-38 -19l-13 9c41 62 51 96 58 160c45 12 53 15 86 25'], + 0xE26E: [692,271,757,41,716,'716 692c-6 -57 -8 -96 -8 -161h-36l-5 79c-1 24 -14 33 -47 33h-181c-4 -33 -5 -55 -5 -100v-423c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v423c0 43 -1 66 -5 100h-181c-33 0 -46 -9 -47 -33l-4 -79h-37c0 65 -2 104 -8 161l238 -3h184z M432 -88c-32 -70 -56 -103 -111 -164l-41 -19l-14 9c44 62 55 96 62 160c49 12 57 15 92 25'], + 0xE26F: [621,271,375,34,358,'358 436l-10 -54h-140v-262c0 -49 18 -69 60 -69c21 0 37 5 65 19l14 -17l-53 -53c-6 -7 -32 -12 -57 -12c-84 0 -120 32 -120 106v288l-83 -4v21l85 35v70c0 30 -1 49 -4 79c33 10 66 23 92 38l13 -11c-8 -64 -12 -100 -12 -142v-38zM237 -88 c-30 -70 -53 -103 -104 -164l-38 -19l-13 9c41 62 51 96 58 160c45 12 53 15 86 25'], + 0xE270: [621,271,421,46,393,'393 436l-10 -54h-150v-262c0 -49 19 -69 64 -69c23 0 40 5 69 19l16 -17l-57 -53c-7 -7 -35 -12 -62 -12c-90 0 -128 32 -128 106v288l-89 -4v21l91 35v70c0 30 -1 49 -5 79c37 10 72 23 100 38l14 -11c-10 -64 -13 -100 -13 -142v-38zM263 -88 c-31 -70 -56 -103 -111 -164l-41 -19l-14 9c45 62 55 96 62 160c49 12 58 15 93 25'], + 0xE271: [692,3,678,45,636,'636 387c0 -117 -107 -211 -240 -211c-23 0 -47 2 -63 6l-12 37c24 -6 48 -9 67 -9c78 0 139 65 139 147c0 96 -61 143 -186 143c-32 0 -56 -3 -85 -9v-371c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3v30 l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-27c19 -2 26 -2 50 -2c105 1 85 1 108 1c136 0 222 -60 222 -154'], + 0xE272: [692,3,747,57,692,'692 387c0 -117 -115 -211 -258 -211c-24 0 -50 2 -68 6l-13 37c26 -6 52 -9 73 -9c83 0 149 65 149 147c0 96 -66 143 -199 143c-35 0 -61 -3 -92 -9v-371c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l57 3c53 3 59 11 59 90v449c0 79 -6 87 -59 90l-57 3v30 l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-27c20 -2 28 -2 54 -2c113 1 91 1 116 1c145 0 238 -60 238 -154'], + 0xE273: [726,281,675,8,603,'603 267c0 -70 -39 -154 -86 -185l-109 -72c-23 -15 -51 -22 -90 -22c-45 0 -79 7 -128 25v-189c0 -63 3 -70 40 -72l50 -3v-30l-136 3l-136 -3v30l50 3c37 2 40 9 40 72v796c0 30 -7 41 -27 41h-61v28c86 12 122 20 170 37l10 -8v-349l60 56c28 26 82 44 133 44 c122 0 220 -90 220 -202zM508 230c0 108 -64 174 -168 174c-54 0 -99 -19 -131 -56c-14 -17 -19 -28 -19 -42v-208c43 -42 85 -59 147 -59c106 0 171 74 171 191'], + 0xE274: [726,281,743,18,656,'656 267c0 -70 -42 -154 -92 -185l-117 -72c-25 -15 -55 -22 -96 -22c-49 0 -85 7 -138 25v-189c0 -63 4 -70 43 -72l54 -3v-30l-146 3l-146 -3v30l53 3c40 2 44 9 44 72v796c0 30 -8 41 -29 41h-66v28c92 12 131 20 183 37l10 -8v-349l64 56c31 26 88 44 143 44 c131 0 236 -90 236 -202zM555 230c0 108 -69 174 -180 174c-59 0 -107 -19 -141 -56c-15 -17 -21 -28 -21 -42v-208c47 -42 91 -59 158 -59c113 0 184 74 184 191'], + 0xE275: [689,20,565,26,514,'514 224c0 -47 -19 -91 -56 -132c-60 -67 -160 -112 -247 -112c-41 0 -89 8 -147 26c-6 50 -15 86 -38 147l30 10c20 -54 35 -77 61 -99c33 -28 77 -43 127 -43c102 0 168 67 168 169c0 91 -52 144 -143 144c-29 0 -50 -5 -91 -22l-8 6l13 53s43 -3 52 -3 c77 0 141 63 141 138c0 63 -58 116 -128 116c-57 0 -126 -34 -138 -68l-19 -56h-34l31 124c53 48 102 67 176 67c121 0 202 -59 202 -148c0 -59 -33 -105 -120 -167c54 -9 79 -17 107 -35c39 -25 61 -67 61 -115'], + 0xE276: [689,20,625,38,561,'561 224c0 -47 -20 -91 -60 -132c-64 -67 -172 -112 -266 -112c-43 0 -94 8 -157 26c-7 50 -16 86 -40 147l31 10c22 -54 38 -77 66 -99c35 -28 83 -43 137 -43c108 0 180 67 180 169c0 91 -56 144 -154 144c-31 0 -53 -5 -98 -22l-8 6l14 53s46 -3 55 -3 c83 0 152 63 152 138c0 63 -62 116 -138 116c-61 0 -134 -34 -147 -68l-21 -56h-37l34 124c56 48 109 67 189 67c129 0 216 -59 216 -148c0 -59 -35 -105 -129 -167c59 -9 86 -17 115 -35c42 -25 66 -67 66 -115'], + 0xE277: [645,-540,383,12,372,'372 645c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-27 0 -44 -14 -58 -45h-32c15 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c30 0 48 13 64 50h32'], + 0xE278: [645,-540,430,22,408,'408 645c-4 -58 -60 -105 -127 -105c-26 0 -45 4 -80 19c-43 18 -66 26 -83 26c-28 0 -47 -14 -62 -45h-34c17 65 60 100 124 100c28 0 42 -4 104 -30c29 -11 41 -15 55 -15c33 0 52 13 70 50h33'], + 0xE279: [80,79,681,66,615,'615 53c-47 -78 -95 -113 -150 -113c-29 0 -59 9 -142 41c-69 27 -79 30 -105 30c-43 0 -72 -22 -115 -90l-37 27c53 87 96 120 151 120c33 0 62 -8 140 -39c66 -27 86 -33 106 -33c41 0 81 29 115 84'], + 0xE27A: [80,79,749,80,669,'669 53c-50 -78 -101 -113 -161 -113c-31 0 -63 9 -152 41c-74 27 -84 30 -113 30c-46 0 -77 -22 -124 -90l-39 27c57 87 103 120 162 120c35 0 67 -8 150 -39c71 -27 92 -33 115 -33c43 0 86 29 123 84'], + 0xE27B: [689,3,565,27,520,'520 -3l-249 3l-244 -3v26l186 181c123 120 169 194 169 269c0 85 -60 139 -154 139c-73 0 -112 -25 -130 -83l-14 -46h-31l18 136c53 50 107 70 185 70c139 0 224 -71 224 -186c0 -75 -33 -130 -139 -233l-198 -193l377 10c-2 -22 -2 -32 -2 -45c0 -14 0 -24 2 -45'], + 0xE27C: [689,3,625,39,568,'568 -3l-268 3l-261 -3v26l199 181c132 120 181 194 181 269c0 85 -64 139 -165 139c-78 0 -121 -25 -139 -83l-15 -46h-34l20 136c57 50 114 70 198 70c149 0 240 -71 240 -186c0 -75 -35 -130 -148 -233l-213 -193l405 10c-3 -22 -3 -32 -3 -45c0 -14 0 -24 3 -45'], + 0xE27D: [692,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30'], + 0xE27E: [692,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30'], + 0xE27F: [469,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30'], + 0xE280: [469,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30'], + 0xE281: [888,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM608 861c0 -15 -8 -22 -46 -39l-171 -73h-46l162 113c25 17 47 25 65 26c20 0 36 -12 36 -27'], + 0xE282: [888,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM662 861c0 -15 -9 -22 -50 -39l-183 -73h-50l175 113c26 17 50 25 70 26c21 0 38 -12 38 -27'], + 0xE283: [677,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM485 643c0 -18 -7 -26 -43 -47l-157 -90h-44l150 138c24 22 44 33 60 33c19 0 34 -15 34 -34'], + 0xE284: [677,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM530 643c0 -18 -8 -26 -47 -47l-168 -90h-47l161 138c26 22 47 33 65 33c20 0 36 -15 36 -34'], + 0xE285: [887,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM642 752h-41l-143 84l-143 -84h-40l146 135h74'], + 0xE286: [887,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM699 752h-45l-153 84l-153 -84h-44l157 135h80'], + 0xE287: [676,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM508 509h-38l-132 103l-132 -103h-38l136 167h68'], + 0xE288: [676,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM555 509h-41l-142 103l-141 -103h-41l146 167h72'], + 0xE289: [869,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM406 819c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50zM623 819c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE28A: [869,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM445 819c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50zM678 819c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE28B: [642,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM284 592c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50zM500 592c0 -30 -21 -50 -54 -50s-55 20 -55 50 s22 50 56 50c32 0 53 -21 53 -50'], + 0xE28C: [642,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM314 592c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50zM546 592c0 -30 -23 -50 -58 -50s-59 20 -59 50 s24 50 60 50c34 0 57 -21 57 -50'], + 0xE28D: [692,193,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM514 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE28E: [692,193,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM561 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE28F: [469,193,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM393 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE290: [469,193,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM431 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE291: [888,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM574 749h-47l-170 73c-39 17 -47 24 -47 39s16 27 36 27c18 -1 40 -9 65 -26'], + 0xE292: [888,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM625 749h-50l-183 73c-41 17 -50 24 -50 39s17 27 38 27c20 -1 44 -9 71 -26'], + 0xE293: [677,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM435 506h-44l-156 90c-36 21 -44 29 -44 47c0 19 15 34 34 34c16 0 36 -11 60 -33'], + 0xE294: [677,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM476 506h-47l-168 90c-39 21 -47 29 -47 47c0 19 17 34 36 34c18 0 39 -11 65 -33'], + 0xE295: [946,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM554 887c0 -21 -22 -42 -56 -62c-35 -22 -41 -24 -41 -31c0 0 5 -6 18 -17l-27 -12c-9 3 -29 20 -29 33c0 14 7 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7 l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE296: [946,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM604 887c0 -21 -24 -42 -60 -62c-37 -22 -44 -24 -44 -31c0 0 6 -6 20 -17l-30 -12c-9 3 -31 20 -31 33c0 14 8 24 41 47c29 19 37 27 37 37c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21l-36 7 l28 49c33 9 53 14 74 14c60 0 103 -26 103 -59'], + 0xE297: [703,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM433 644c0 -21 -22 -42 -56 -62c-35 -22 -41 -24 -41 -31c0 0 5 -6 18 -17l-27 -12c-9 3 -29 20 -29 33c0 14 7 24 38 47 c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE298: [703,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM474 644c0 -21 -23 -42 -60 -62c-37 -22 -44 -24 -44 -31c0 0 6 -6 20 -17l-30 -12c-9 3 -31 20 -31 33c0 14 8 24 41 47 c29 19 37 27 37 37c0 13 -22 24 -52 24c-19 0 -32 -4 -35 -9l-15 -21l-36 7l28 49c33 9 53 14 74 14c60 0 103 -26 103 -59'], + 0xE299: [781,20,868,23,883,'883 774c-10 -32 -59 -145 -149 -169v-325c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30h154v-45c37 20 44 50 44 87c0 9 -1 18 -1 28c49 9 59 12 94 19'], + 0xE29A: [781,20,950,34,957,'957 774c-10 -32 -63 -145 -160 -169v-325c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30h165v-45c40 20 48 50 48 87c0 9 -1 18 -1 28c52 9 63 12 100 19'], + 0xE29B: [532,12,718,30,708,'708 525c-10 -32 -59 -145 -150 -169v-254c0 -64 4 -70 41 -72l44 -3v-30l-90 3l-91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91 c18 -19 48 -30 86 -30c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-67c37 20 45 50 45 87c0 9 -1 18 -1 28c49 9 59 12 94 19'], + 0xE29C: [532,12,789,41,769,'769 525c-11 -32 -63 -145 -160 -169v-254c0 -64 3 -70 43 -72l48 -3v-30l-97 3l-97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295 c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-67c39 20 47 50 47 87c0 9 -1 18 -1 28c53 9 63 12 101 19'], + 0xE29D: [888,20,868,23,883,'883 774c-10 -32 -59 -145 -149 -169v-325c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30h154v-45c37 20 44 50 44 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM608 861c0 -15 -8 -22 -46 -39l-171 -73h-46l162 113c25 17 47 25 65 26c20 0 36 -12 36 -27'], + 0xE29E: [888,20,950,34,957,'957 774c-10 -32 -63 -145 -160 -169v-325c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30h165v-45c40 20 48 50 48 87c0 9 -1 18 -1 28c52 9 63 12 100 19zM662 861c0 -15 -9 -22 -50 -39l-183 -73h-50l175 113c26 17 50 25 70 26c21 0 38 -12 38 -27'], + 0xE29F: [677,12,718,30,708,'708 525c-10 -32 -59 -145 -150 -169v-254c0 -64 4 -70 41 -72l44 -3v-30l-90 3l-91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91 c18 -19 48 -30 86 -30c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-67c37 20 45 50 45 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM486 643c0 -18 -7 -26 -43 -47l-157 -90h-44l151 138c24 22 43 33 60 33c18 0 33 -15 33 -34 '], + 0xE2A0: [677,12,789,41,769,'769 525c-11 -32 -63 -145 -160 -169v-254c0 -64 3 -70 43 -72l48 -3v-30l-97 3l-97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295 c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-67c39 20 47 50 47 87c0 9 -1 18 -1 28c53 9 63 12 101 19zM531 643c0 -18 -8 -26 -47 -47l-168 -90h-47l162 138 c25 22 46 33 64 33c20 0 36 -15 36 -34'], + 0xE2A1: [781,193,868,23,883,'883 774c-10 -32 -59 -145 -149 -169v-325c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30h154v-45c37 20 44 50 44 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM514 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE2A2: [781,193,950,34,957,'957 774c-10 -32 -63 -145 -160 -169v-325c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30h165v-45c40 20 48 50 48 87c0 9 -1 18 -1 28c52 9 63 12 100 19zM561 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE2A3: [532,193,718,30,708,'708 525c-10 -32 -59 -145 -150 -169v-254c0 -64 4 -70 41 -72l44 -3v-30l-90 3l-91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91 c18 -19 48 -30 86 -30c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-67c37 20 45 50 45 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM394 -143c0 -30 -22 -50 -55 -50s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE2A4: [532,193,789,41,769,'769 525c-11 -32 -63 -145 -160 -169v-254c0 -64 3 -70 43 -72l48 -3v-30l-97 3l-97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295 c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-67c39 20 47 50 47 87c0 9 -1 18 -1 28c53 9 63 12 101 19zM432 -143c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 60 50 c33 0 57 -21 57 -50'], + 0xE2A5: [888,20,868,23,883,'883 774c-10 -32 -59 -145 -149 -169v-325c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30h154v-45c37 20 44 50 44 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM574 749h-47l-170 73c-39 17 -47 24 -47 39s16 27 36 27c18 -1 40 -9 65 -26'], + 0xE2A6: [888,20,950,34,957,'957 774c-10 -32 -63 -145 -160 -169v-325c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30h165v-45c40 20 48 50 48 87c0 9 -1 18 -1 28c52 9 63 12 100 19zM625 749h-50l-183 73c-41 17 -50 24 -50 39s17 27 38 27c20 -1 44 -9 71 -26'], + 0xE2A7: [677,12,718,30,708,'708 525c-10 -32 -59 -145 -150 -169v-254c0 -64 4 -70 41 -72l44 -3v-30l-90 3l-91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91 c18 -19 48 -30 86 -30c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-67c37 20 45 50 45 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM435 506h-44l-156 90c-36 21 -44 29 -44 47c0 19 15 34 34 34c16 0 36 -11 60 -33'], + 0xE2A8: [677,12,789,41,769,'769 525c-11 -32 -63 -145 -160 -169v-254c0 -64 3 -70 43 -72l48 -3v-30l-97 3l-97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295 c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-67c39 20 47 50 47 87c0 9 -1 18 -1 28c53 9 63 12 101 19zM476 506h-47l-168 90c-39 21 -47 29 -47 47c0 19 17 34 36 34 c18 0 39 -11 65 -33'], + 0xE2A9: [946,20,868,23,883,'883 774c-10 -32 -59 -145 -149 -169v-325c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30h154v-45c37 20 44 50 44 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM554 887c0 -21 -22 -42 -56 -62c-35 -22 -41 -24 -41 -31c0 0 5 -6 18 -17l-27 -12c-9 3 -29 20 -29 33c0 14 7 24 38 47c27 19 35 27 35 37 c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE2AA: [946,20,950,34,957,'957 774c-10 -32 -63 -145 -160 -169v-325c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30h165v-45c40 20 48 50 48 87c0 9 -1 18 -1 28c52 9 63 12 100 19zM604 887c0 -21 -24 -42 -60 -62c-37 -22 -44 -24 -44 -31c0 0 6 -6 20 -17l-30 -12c-9 3 -31 20 -31 33c0 14 8 24 41 47c29 19 37 27 37 37 c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 53 14 74 14c60 0 103 -26 103 -59'], + 0xE2AB: [703,12,718,30,708,'708 525c-10 -32 -59 -145 -150 -169v-254c0 -64 4 -70 41 -72l44 -3v-30l-90 3l-91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91 c18 -19 48 -30 86 -30c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-67c37 20 45 50 45 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM434 644c0 -21 -22 -42 -56 -62c-34 -22 -41 -24 -41 -31c0 0 5 -6 19 -17l-28 -12 c-8 3 -29 20 -29 33c0 14 7 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c56 0 96 -26 96 -59'], + 0xE2AC: [703,12,789,41,769,'769 525c-11 -32 -63 -145 -160 -169v-254c0 -64 3 -70 43 -72l48 -3v-30l-97 3l-97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295 c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-67c39 20 47 50 47 87c0 9 -1 18 -1 28c53 9 63 12 101 19zM475 644c0 -21 -23 -42 -60 -62c-37 -22 -44 -24 -44 -31 c0 0 6 -6 20 -17l-29 -12c-10 3 -32 20 -32 33c0 14 8 24 41 47c29 19 37 27 37 37c0 13 -22 24 -52 24c-19 0 -32 -4 -35 -9l-14 -21l-37 7l28 49c33 9 53 14 74 14c60 0 103 -26 103 -59'], + 0xE2AD: [872,20,868,23,883,'883 774c-10 -32 -59 -145 -149 -169v-325c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30h154v-45c37 20 44 50 44 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM640 872c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30 c26 -11 38 -15 51 -15c31 0 48 13 64 50h32'], + 0xE2AE: [872,20,950,34,957,'957 774c-10 -32 -63 -145 -160 -169v-325c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30h165v-45c40 20 48 50 48 87c0 9 -1 18 -1 28c52 9 63 12 100 19zM696 872c-4 -58 -61 -105 -127 -105c-26 0 -45 4 -80 19c-43 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c17 65 60 100 124 100c28 0 42 -4 104 -30 c28 -11 41 -15 55 -15c33 0 52 13 69 50h34'], + 0xE2AF: [645,12,718,30,708,'708 525c-10 -32 -59 -145 -150 -169v-254c0 -64 4 -70 41 -72l44 -3v-30l-90 3l-91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91 c18 -19 48 -30 86 -30c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-67c37 20 45 50 45 87c0 9 -1 18 -1 28c49 9 59 12 94 19zM519 645c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26 c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32'], + 0xE2B0: [645,12,789,41,769,'769 525c-11 -32 -63 -145 -160 -169v-254c0 -64 3 -70 43 -72l48 -3v-30l-97 3l-97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295 c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-67c39 20 47 50 47 87c0 9 -1 18 -1 28c53 9 63 12 101 19zM566 645c-4 -58 -60 -105 -127 -105c-26 0 -45 4 -80 19 c-43 18 -66 26 -83 26c-28 0 -47 -14 -62 -45h-34c17 65 60 100 124 100c28 0 42 -4 104 -30c29 -11 41 -15 55 -15c33 0 52 13 69 50h34'], + 0xE2B1: [888,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM747 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c26 17 47 25 66 26c19 0 36 -12 36 -27zM572 861c0 -15 -8 -22 -46 -39l-170 -73h-47l162 113c25 17 47 25 65 26c20 0 36 -12 36 -27'], + 0xE2B2: [888,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM811 861c0 -15 -9 -22 -50 -39l-183 -73h-50l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27zM624 861c0 -15 -10 -22 -51 -39l-182 -73h-50l174 113c27 17 50 25 70 26c21 0 39 -12 39 -27'], + 0xE2B3: [683,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM444 650c0 -16 -11 -29 -43 -50l-147 -98h-43l139 148c19 20 43 33 60 33c19 0 34 -15 34 -33zM607 650c0 -16 -11 -29 -42 -50l-147 -98 h-44l140 148c18 20 42 33 60 33s33 -15 33 -33'], + 0xE2B4: [683,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM486 650c0 -16 -12 -29 -46 -50l-158 -98h-47l150 148c20 20 46 33 64 33c20 0 37 -15 37 -33zM661 650c0 -16 -12 -29 -45 -50l-158 -98 h-47l150 148c19 20 45 33 64 33c20 0 36 -15 36 -33'], + 0xE2B5: [846,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM630 793h-340v53h340v-53'], + 0xE2B6: [846,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM686 793h-365v53h365v-53'], + 0xE2B7: [619,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM508 566h-340v53h340v-53'], + 0xE2B8: [619,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM555 566h-365v53h365v-53'], + 0xE2B9: [692,250,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-30 -28 -69 -46 -119 -57c-38 -7 -83 -17 -103 -41c-20 -25 -36 -53 -36 -81c0 -50 25 -72 53 -72c32 0 63 15 70 42l9 31l29 -7v-55l-41 -32c-26 -21 -63 -25 -99 -25c-64 0 -96 49 -96 92 c0 51 35 100 84 138c-102 2 -177 23 -218 62s-61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30'], + 0xE2BA: [692,250,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-31 -28 -74 -46 -127 -57c-41 -7 -89 -17 -110 -41c-23 -25 -39 -53 -39 -81c0 -50 27 -72 56 -72c35 0 68 15 76 42l10 31l30 -7v-55l-43 -32c-28 -21 -68 -25 -107 -25c-69 0 -103 49 -103 92 c0 51 38 100 90 138c-110 2 -189 23 -234 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30'], + 0xE2BB: [469,250,677,30,643,'643 -193l-40 -32c-27 -21 -63 -25 -99 -25c-65 0 -96 49 -96 92c0 60 49 119 111 158l-57 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295 c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30l-36 2c-37 1 -66 -23 -88 -50c-21 -25 -36 -53 -36 -81c0 -50 25 -72 52 -72c32 0 64 15 71 42 l9 31l28 -7v-55'], + 0xE2BC: [469,250,746,41,700,'700 -193l-44 -32c-29 -21 -67 -25 -106 -25c-69 0 -103 49 -103 92c0 60 53 119 119 158l-60 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295 c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30l-39 2c-40 1 -71 -23 -95 -50c-22 -25 -38 -53 -38 -81c0 -50 27 -72 56 -72c34 0 68 15 76 42 l9 31l31 -7v-55'], + 0xE2BD: [939,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM569 839c0 -56 -49 -100 -109 -100c-61 0 -109 44 -109 101c0 55 49 99 111 99c58 0 107 -45 107 -100zM528 839c0 38 -28 64 -67 64c-41 0 -68 -25 -68 -63c0 -40 26 -65 67 -65c40 0 68 26 68 64'], + 0xE2BE: [939,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM620 839c0 -56 -52 -100 -117 -100s-117 44 -117 101c0 55 53 99 120 99c62 0 114 -45 114 -100zM576 839c0 38 -30 64 -72 64c-44 0 -73 -25 -73 -63c0 -40 28 -65 72 -65c43 0 73 26 73 64'], + 0xE2BF: [692,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM447 592c0 -56 -49 -100 -109 -100c-61 0 -109 44 -109 101c0 55 49 99 111 99c58 0 107 -45 107 -100zM406 592c0 38 -28 64 -67 64 c-41 0 -68 -25 -68 -63c0 -40 26 -65 67 -65c40 0 68 26 68 64'], + 0xE2C0: [692,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM489 592c0 -56 -52 -100 -117 -100s-117 44 -117 101c0 55 53 99 120 99c62 0 114 -45 114 -100zM445 592c0 38 -30 64 -72 64 c-44 0 -73 -25 -73 -63c0 -40 28 -65 72 -65c43 0 73 26 73 64'], + 0xE2C1: [872,20,868,23,837,'837 662l-48 -3c-50 -3 -55 -12 -55 -90v-289c0 -111 -24 -186 -75 -233c-50 -46 -125 -67 -237 -67c-109 0 -186 21 -230 62c-41 39 -61 94 -61 172v355c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-344c0 -128 65 -183 216 -183 c158 0 233 66 233 207v320c0 78 -6 87 -56 90l-48 3v30l127 -3l130 3v-30zM640 872c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32'], + 0xE2C2: [872,20,950,34,908,'908 662l-51 -3c-54 -3 -60 -12 -60 -90v-289c0 -111 -26 -186 -81 -233c-53 -46 -133 -67 -254 -67c-117 0 -200 21 -247 62c-44 39 -65 94 -65 172v355c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-344c0 -128 70 -183 233 -183 c169 0 249 66 249 207v320c0 78 -6 87 -60 90l-51 3v30l136 -3l140 3v-30zM696 872c-4 -58 -61 -105 -127 -105c-26 0 -45 4 -80 19c-43 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c17 65 60 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 52 13 69 50h34'], + 0xE2C3: [645,12,677,30,643,'643 -3c-30 2 -60 3 -90 3c-31 0 -60 -1 -91 -3c4 47 5 63 5 92l-73 -62c-30 -25 -73 -39 -122 -39c-63 0 -104 15 -128 45c-20 25 -26 56 -26 126v168c0 66 -4 73 -48 73h-40v28c57 6 114 20 170 41l9 -4v-295c0 -44 8 -75 23 -91c18 -19 48 -30 86 -30 c43 0 78 14 108 42c25 23 41 51 41 73v163c0 66 -5 73 -48 73h-41v28c58 6 115 20 170 41l10 -4v-363c0 -64 4 -70 41 -72l44 -3v-30zM518 645c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-27 0 -44 -14 -58 -45h-32c15 65 56 100 116 100 c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 64 50h32'], + 0xE2C4: [645,12,746,41,700,'700 -3c-33 2 -65 3 -97 3c-33 0 -65 -1 -97 -3c3 47 4 63 4 92l-78 -62c-32 -25 -79 -39 -131 -39c-67 0 -111 15 -137 45c-21 25 -28 56 -28 126v168c0 66 -5 73 -52 73h-43v28c62 6 123 20 183 41l10 -4v-295c0 -44 8 -75 25 -91c18 -19 51 -30 92 -30 c46 0 83 14 116 42c27 23 43 51 43 73v163c0 66 -4 73 -51 73h-44v28c62 6 123 20 183 41l11 -4v-363c0 -64 3 -70 43 -72l48 -3v-30zM565 645c-4 -58 -61 -105 -127 -105c-26 0 -45 4 -80 19c-43 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 60 100 124 100 c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 52 13 69 50h34'], + 0xE2C5: [692,9,807,19,780,'780 662l-33 -3c-20 -2 -34 -17 -59 -72l-190 -421c-36 -80 -49 -113 -69 -175h-55c-16 54 -29 89 -63 165l-205 462c-13 29 -25 39 -48 41l-39 3v30l145 -3l145 3v-30l-61 -3c-30 -1 -39 -17 -33 -31l215 -507l199 473c15 35 12 63 -28 65l-57 3v30l118 -3l118 3v-30'], + 0xE2C6: [692,9,885,29,846,'846 662l-35 -3c-21 -2 -36 -17 -63 -72l-204 -421c-38 -80 -52 -113 -75 -175h-58c-18 54 -32 89 -68 165l-220 462c-14 29 -27 39 -52 41l-42 3v30l156 -3l156 3v-30l-66 -3c-32 -1 -41 -17 -35 -31l230 -507l215 473c16 35 12 63 -31 65l-61 3v30l127 -3l126 3v-30'], + 0xE2C7: [459,7,636,17,598,'598 431l-34 -2c-22 -1 -36 -16 -61 -67l-129 -260c-22 -45 -38 -76 -45 -109h-54l-188 403c-11 23 -14 32 -33 33l-37 2v28l126 -3l128 3v-28l-54 -2c-35 -1 -29 -29 -17 -57l129 -288l68 140l46 106c29 68 29 97 -6 99l-44 2v28c33 -2 68 -3 102 -3s69 1 103 3v-28'], + 0xE2C8: [459,7,701,27,651,'651 431l-37 -2c-23 -1 -38 -16 -65 -67l-138 -260c-24 -45 -41 -76 -48 -109h-59l-201 403c-12 23 -15 32 -36 33l-40 2v28l136 -3l137 3v-28l-58 -2c-37 -1 -31 -29 -18 -57l139 -288l72 140l49 106c32 68 32 97 -5 99l-48 2v28c36 -2 73 -3 110 -3c36 0 73 1 110 3 v-28'], + 0xE2C9: [700,9,1110,19,1083,'1083 662l-35 -3c-24 -2 -36 -12 -42 -29l-167 -538l-29 -101h-54c-39 109 -42 117 -78 206l-136 339l-190 -442c-20 -47 -29 -71 -39 -103h-54l-155 618c-9 34 -23 47 -55 50l-30 3v30l137 -3l137 3v-30l-45 -3c-43 -3 -45 -28 -36 -66l109 -449l135 315 c58 134 75 179 98 241h35c9 -34 13 -42 36 -102l179 -461l143 489c6 20 -4 30 -50 33l-43 3v30l114 -3l115 3v-30'], + 0xE2CA: [700,9,1210,29,1171,'1171 662l-37 -3c-26 -2 -39 -12 -45 -29l-179 -538l-31 -101h-59c-41 109 -44 117 -83 206l-146 339l-204 -442c-22 -47 -31 -71 -42 -103h-58l-166 618c-10 34 -25 47 -59 50l-33 3v30l148 -3l147 3v-30l-49 -3c-46 -3 -48 -28 -39 -66l117 -449l146 315 c62 134 80 179 105 241h37c10 -34 14 -42 39 -102l192 -461l154 489c6 20 -4 30 -54 33l-46 3v30l122 -3l123 3v-30'], + 0xE2CB: [469,7,929,17,891,'891 431l-29 -2c-24 -2 -39 -16 -69 -87l-150 -349h-50l-148 342s-37 -70 -57 -112l-107 -230h-51l-111 336c-27 81 -41 98 -72 100l-30 2v28l129 -3l130 3v-28l-44 -2c-41 -2 -47 -19 -37 -49l92 -276l173 365h25c9 -27 17 -47 32 -81l125 -290l53 124l54 140 c15 40 9 65 -35 67l-37 2v28c36 -2 71 -3 107 -3s71 1 107 3v-28'], + 0xE2CC: [469,7,1016,27,965,'965 431l-30 -2c-26 -2 -42 -16 -75 -87l-160 -349h-54l-159 342s-40 -70 -61 -112l-115 -230h-55l-119 336c-29 81 -44 98 -77 100l-33 2v28l139 -3l139 3v-28l-46 -2c-45 -2 -51 -19 -40 -49l98 -276l186 365h27c9 -27 18 -47 34 -81l135 -290l56 124l58 140 c17 40 10 65 -37 67l-40 2v28l115 -3l114 3v-28'], + 0xE2CD: [700,3,747,25,716,'716 -3c-26 2 -51 3 -77 3c-27 0 -53 -1 -81 -3l-200 306l-220 -306c-19 2 -38 3 -56 3c-19 0 -38 -1 -57 -3v30l29 3c24 3 37 14 64 48l212 263l-139 213c-36 55 -74 88 -100 90l-49 3l-3 26l154 27c21 -10 37 -27 62 -65l140 -216l201 270h111v-30l-45 -3 c-17 -1 -31 -14 -74 -68l-168 -208l192 -280c36 -52 51 -68 72 -70l32 -3v-30'], + 0xE2CE: [700,3,820,36,778,'778 -3c-28 2 -55 3 -83 3c-29 0 -57 -1 -86 -3l-216 306l-236 -306c-20 2 -40 3 -60 3s-41 -1 -61 -3v30l31 3c26 3 40 14 69 48l228 263l-150 213c-38 55 -79 88 -107 90l-53 3l-2 26l165 27c22 -10 39 -27 66 -65l150 -216l216 270h119v-30l-48 -3 c-18 -1 -33 -14 -80 -68l-180 -208l206 -280c38 -52 55 -68 77 -70l35 -3v-30'], + 0xE2CF: [469,3,582,32,551,'551 -3c-23 2 -45 3 -68 3c-22 0 -45 -1 -66 -3l-145 195l-81 -98c-58 -71 -65 -94 -65 -94h-94v27h18c11 0 25 6 33 15l162 176l-130 174c-11 14 -35 27 -55 29l-23 2l-5 26l126 20c37 -34 49 -47 66 -69l82 -116l136 175h89v-28h-15c-19 0 -31 -4 -37 -11l-155 -166 l161 -200c12 -15 25 -23 38 -24l28 -3v-30'], + 0xE2D0: [469,3,644,43,600,'600 -3c-24 2 -48 3 -72 3s-48 -1 -72 -3l-155 195l-87 -98c-62 -71 -70 -94 -70 -94h-101v27h20c12 0 27 6 35 15l175 176l-141 174c-11 14 -37 27 -58 29l-25 2l-6 26l136 20c40 -34 53 -47 70 -69l89 -116l145 175h96v-28h-16c-20 0 -33 -4 -40 -11l-166 -166 l173 -200c13 -15 27 -23 41 -24l29 -3v-30'], + 0xE2D1: [705,3,747,20,723,'723 679c-88 -97 -124 -142 -205 -253c-63 -88 -79 -122 -79 -177v-129c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v142c0 16 -3 30 -10 40l-135 216c-46 73 -103 126 -140 130l-31 3v29l131 25c19 0 64 -45 99 -103l156 -261l112 163 c42 62 76 116 118 190h87v-15'], + 0xE2D2: [705,3,820,31,785,'785 679c-95 -97 -133 -142 -220 -253c-68 -88 -84 -122 -84 -177v-129c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v142c0 16 -4 30 -11 40l-145 216c-49 73 -110 126 -150 130l-33 3v29l140 25c21 0 69 -45 106 -103l168 -261l120 163 c46 62 82 116 127 190h93v-15'], + 0xE2D3: [459,283,626,23,603,'603 431l-31 -2c-27 -2 -48 -30 -91 -121l-221 -468c-42 -87 -89 -123 -162 -123c-20 0 -38 5 -59 15l27 75h14c18 -15 38 -23 55 -23c42 0 84 47 119 131l25 61l-180 404c-15 35 -29 46 -56 49l-20 2v28l127 -3l126 3v-28l-41 -2c-43 -2 -45 -21 -27 -65l70 -168 c21 -49 32 -72 56 -110l129 292c17 36 7 48 -39 51l-28 2v28c35 -2 69 -3 103 -3c35 0 69 1 104 3v-28'], + 0xE2D4: [459,283,691,34,656,'656 431l-32 -2c-30 -2 -52 -30 -99 -121l-237 -468c-45 -87 -95 -123 -173 -123c-22 0 -41 5 -63 15l28 75h15c20 -15 41 -23 60 -23c44 0 90 47 127 131l27 61l-193 404c-16 35 -32 46 -61 49l-21 2v28l136 -3l135 3v-28l-44 -2c-46 -2 -48 -21 -28 -65l75 -168 c22 -49 34 -72 59 -110l140 292c17 36 7 48 -42 51l-31 2v28l111 -3l111 3v-28'], + 0xE2D5: [888,3,747,20,723,'723 679c-88 -97 -124 -142 -205 -253c-63 -88 -79 -122 -79 -177v-129c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v142c0 16 -3 30 -10 40l-135 216c-46 73 -103 126 -140 130l-31 3v29l131 25c19 0 64 -45 99 -103l156 -261l112 163 c42 62 76 116 118 190h87v-15zM538 861c0 -15 -9 -22 -47 -39l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 36 -12 36 -27'], + 0xE2D6: [888,3,820,31,785,'785 679c-95 -97 -133 -142 -220 -253c-68 -88 -84 -122 -84 -177v-129c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v142c0 16 -4 30 -11 40l-145 216c-49 73 -110 126 -150 130l-33 3v29l140 25c21 0 69 -45 106 -103l168 -261l120 163 c46 62 82 116 127 190h93v-15zM586 861c0 -15 -9 -22 -50 -39l-183 -73h-50l174 113c27 17 51 25 71 26c21 0 38 -12 38 -27'], + 0xE2D7: [677,283,626,23,603,'603 431l-31 -2c-27 -2 -48 -30 -91 -121l-221 -468c-42 -87 -89 -123 -162 -123c-20 0 -38 5 -59 15l27 75h14c18 -15 38 -23 55 -23c42 0 84 47 119 131l25 61l-180 404c-15 35 -29 46 -56 49l-20 2v28l127 -3l126 3v-28l-41 -2c-43 -2 -45 -21 -27 -65l70 -168 c21 -49 32 -72 56 -110l129 292c17 36 7 48 -39 51l-28 2v28c35 -2 69 -3 103 -3c35 0 69 1 104 3v-28zM483 643c0 -18 -8 -26 -44 -47l-157 -90h-43l150 138c24 22 44 33 60 33c19 0 34 -15 34 -34'], + 0xE2D8: [677,283,691,34,656,'656 431l-32 -2c-30 -2 -52 -30 -99 -121l-237 -468c-45 -87 -95 -123 -173 -123c-22 0 -41 5 -63 15l28 75h15c20 -15 41 -23 60 -23c44 0 90 47 127 131l27 61l-193 404c-16 35 -32 46 -61 49l-21 2v28l136 -3l135 3v-28l-44 -2c-46 -2 -48 -21 -28 -65l75 -168 c22 -49 34 -72 59 -110l140 292c17 36 7 48 -42 51l-31 2v28l111 -3l111 3v-28zM528 643c0 -18 -8 -26 -47 -47l-169 -90h-46l161 138c26 22 47 33 65 33c19 0 36 -15 36 -34'], + 0xE2D9: [869,3,747,20,723,'723 679c-88 -97 -124 -142 -205 -253c-63 -88 -79 -122 -79 -177v-129c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v142c0 16 -3 30 -10 40l-135 216c-46 73 -103 126 -140 130l-31 3v29l131 25c19 0 64 -45 99 -103l156 -261l112 163 c42 62 76 116 118 190h87v-15zM335 819c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50zM552 819c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50'], + 0xE2DA: [869,3,820,31,785,'785 679c-95 -97 -133 -142 -220 -253c-68 -88 -84 -122 -84 -177v-129c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v142c0 16 -4 30 -11 40l-145 216c-49 73 -110 126 -150 130l-33 3v29l140 25c21 0 69 -45 106 -103l168 -261l120 163 c46 62 82 116 127 190h93v-15zM369 819c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50zM601 819c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE2DB: [642,283,626,23,603,'603 431l-31 -2c-27 -2 -48 -30 -91 -121l-221 -468c-42 -87 -89 -123 -162 -123c-20 0 -38 5 -59 15l27 75h14c18 -15 38 -23 55 -23c42 0 84 47 119 131l25 61l-180 404c-15 35 -29 46 -56 49l-20 2v28l127 -3l126 3v-28l-41 -2c-43 -2 -45 -21 -27 -65l70 -168 c21 -49 32 -72 56 -110l129 292c17 36 7 48 -39 51l-28 2v28c35 -2 69 -3 103 -3c35 0 69 1 104 3v-28zM281 592c0 -30 -21 -50 -54 -50s-55 20 -55 50s22 50 56 50c32 0 53 -21 53 -50zM498 592c0 -30 -21 -50 -54 -50s-55 20 -55 50s22 50 56 50c32 0 53 -21 53 -50'], + 0xE2DC: [642,283,691,34,656,'656 431l-32 -2c-30 -2 -52 -30 -99 -121l-237 -468c-45 -87 -95 -123 -173 -123c-22 0 -41 5 -63 15l28 75h15c20 -15 41 -23 60 -23c44 0 90 47 127 131l27 61l-193 404c-16 35 -32 46 -61 49l-21 2v28l136 -3l135 3v-28l-44 -2c-46 -2 -48 -21 -28 -65l75 -168 c22 -49 34 -72 59 -110l140 292c17 36 7 48 -42 51l-31 2v28l111 -3l111 3v-28zM311 592c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50zM544 592c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE2DD: [705,193,747,20,723,'723 679c-88 -97 -124 -142 -205 -253c-63 -88 -79 -122 -79 -177v-129c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v142c0 16 -3 30 -10 40l-135 216c-46 73 -103 126 -140 130l-31 3v29l131 25c19 0 64 -45 99 -103l156 -261l112 163 c42 62 76 116 118 190h87v-15zM443 -143c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50s22 50 55 50c32 0 54 -21 54 -50'], + 0xE2DE: [705,193,820,31,785,'785 679c-95 -97 -133 -142 -220 -253c-68 -88 -84 -122 -84 -177v-129c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v142c0 16 -4 30 -11 40l-145 216c-49 73 -110 126 -150 130l-33 3v29l140 25c21 0 69 -45 106 -103l168 -261l120 163 c46 62 82 116 127 190h93v-15zM484 -143c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE2DF: [459,283,626,23,603,'603 431l-31 -2c-27 -2 -48 -30 -91 -121l-221 -468c-42 -87 -89 -123 -162 -123c-20 0 -38 5 -59 15l27 75h14c18 -15 38 -23 55 -23c42 0 84 47 119 131l25 61l-180 404c-15 35 -29 46 -56 49l-20 2v28l127 -3l126 3v-28l-41 -2c-43 -2 -45 -21 -27 -65l70 -168 c21 -49 32 -72 56 -110l129 292c17 36 7 48 -39 51l-28 2v28c35 -2 69 -3 103 -3c35 0 69 1 104 3v-28zM519 -143c0 -30 -22 -50 -54 -50c-33 0 -55 20 -55 50s22 50 56 50c31 0 53 -21 53 -50'], + 0xE2E0: [459,283,691,34,656,'656 431l-32 -2c-30 -2 -52 -30 -99 -121l-237 -468c-45 -87 -95 -123 -173 -123c-22 0 -41 5 -63 15l28 75h15c20 -15 41 -23 60 -23c44 0 90 47 127 131l27 61l-193 404c-16 35 -32 46 -61 49l-21 2v28l136 -3l135 3v-28l-44 -2c-46 -2 -48 -21 -28 -65l75 -168 c22 -49 34 -72 59 -110l140 292c17 36 7 48 -42 51l-31 2v28l111 -3l111 3v-28zM566 -143c0 -30 -23 -50 -58 -50s-59 20 -59 50s24 50 60 50c34 0 57 -21 57 -50'], + 0xE2E1: [701,3,565,15,551,'551 679c-47 -60 -94 -136 -142 -229l-35 -68h133v-39h-151c-15 -29 -19 -46 -19 -65v-32h170v-39h-170v-87c0 -78 4 -87 48 -90l45 -3v-30l-142 3l-123 -3v30l44 3c44 3 48 12 48 90v87h-170v39h170v16c0 14 -1 19 -6 31l-23 50h-141v39h121l-81 160 c-47 91 -66 110 -112 108v29l101 21c3 1 6 1 11 1c28 0 42 -17 65 -76c5 -16 8 -20 9 -23l113 -261l76 163l84 190h77v-15'], + 0xE2E2: [701,3,625,26,600,'600 679c-50 -60 -100 -136 -152 -229l-37 -68h143v-39h-163c-15 -29 -20 -46 -20 -65v-32h183v-39h-183v-87c0 -78 5 -87 51 -90l48 -3v-30l-152 3l-132 -3v30l48 3c47 3 52 12 52 90v87h-183v39h183v16c0 14 -2 19 -7 31l-25 50h-151v39h130l-88 160 c-50 91 -70 110 -119 108v29l107 21c4 1 8 1 12 1c31 0 46 -17 70 -76c6 -16 9 -20 10 -23l121 -261l82 163l90 190h82v-15'], + 0xE2E3: [888,3,747,20,723,'723 679c-88 -97 -124 -142 -205 -253c-63 -88 -79 -122 -79 -177v-129c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v142c0 16 -3 30 -10 40l-135 216c-46 73 -103 126 -140 130l-31 3v29l131 25c19 0 64 -45 99 -103l156 -261l112 163 c42 62 76 116 118 190h87v-15zM503 749h-47l-170 73c-38 17 -47 24 -47 39s16 27 36 27c18 -1 40 -9 65 -26'], + 0xE2E4: [888,3,820,31,785,'785 679c-95 -97 -133 -142 -220 -253c-68 -88 -84 -122 -84 -177v-129c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v142c0 16 -4 30 -11 40l-145 216c-49 73 -110 126 -150 130l-33 3v29l140 25c21 0 69 -45 106 -103l168 -261l120 163 c46 62 82 116 127 190h93v-15zM549 749h-50l-183 73c-41 17 -50 24 -50 39s17 27 38 27c20 -1 44 -9 71 -26'], + 0xE2E5: [677,283,626,23,603,'603 431l-31 -2c-27 -2 -48 -30 -91 -121l-221 -468c-42 -87 -89 -123 -162 -123c-20 0 -38 5 -59 15l27 75h14c18 -15 38 -23 55 -23c42 0 84 47 119 131l25 61l-180 404c-15 35 -29 46 -56 49l-20 2v28l127 -3l126 3v-28l-41 -2c-43 -2 -45 -21 -27 -65l70 -168 c21 -49 32 -72 56 -110l129 292c17 36 7 48 -39 51l-28 2v28c35 -2 69 -3 103 -3c35 0 69 1 104 3v-28zM433 506h-44l-157 90c-36 21 -43 29 -43 47c0 19 15 34 34 34c16 0 36 -11 59 -33'], + 0xE2E6: [677,283,691,34,656,'656 431l-32 -2c-30 -2 -52 -30 -99 -121l-237 -468c-45 -87 -95 -123 -173 -123c-22 0 -41 5 -63 15l28 75h15c20 -15 41 -23 60 -23c44 0 90 47 127 131l27 61l-193 404c-16 35 -32 46 -61 49l-21 2v28l136 -3l135 3v-28l-44 -2c-46 -2 -48 -21 -28 -65l75 -168 c22 -49 34 -72 59 -110l140 292c17 36 7 48 -42 51l-31 2v28l111 -3l111 3v-28zM474 506h-47l-168 90c-39 21 -47 29 -47 47c0 19 16 34 36 34c18 0 39 -11 64 -33'], + 0xE2E7: [946,3,747,20,723,'723 679c-88 -97 -124 -142 -205 -253c-63 -88 -79 -122 -79 -177v-129c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v142c0 16 -3 30 -10 40l-135 216c-46 73 -103 126 -140 130l-31 3v29l131 25c19 0 64 -45 99 -103l156 -261l112 163 c42 62 76 116 118 190h87v-15zM483 887c0 -21 -22 -42 -56 -62c-34 -22 -41 -24 -41 -31c0 0 5 -6 19 -17l-28 -12c-8 3 -29 20 -29 33c0 14 8 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 50 14 69 14 c56 0 96 -26 96 -59'], + 0xE2E8: [946,3,820,31,785,'785 679c-95 -97 -133 -142 -220 -253c-68 -88 -84 -122 -84 -177v-129c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v142c0 16 -4 30 -11 40l-145 216c-49 73 -110 126 -150 130l-33 3v29l140 25c21 0 69 -45 106 -103l168 -261l120 163 c46 62 82 116 127 190h93v-15zM528 887c0 -21 -24 -42 -60 -62c-37 -22 -44 -24 -44 -31c0 0 5 -6 20 -17l-30 -12c-9 3 -31 20 -31 33c0 14 8 24 41 47c29 19 37 27 37 37c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21l-36 7l28 49c33 9 53 14 74 14 c59 0 103 -26 103 -59'], + 0xE2E9: [703,283,626,23,603,'603 431l-31 -2c-27 -2 -48 -30 -91 -121l-221 -468c-42 -87 -89 -123 -162 -123c-20 0 -38 5 -59 15l27 75h14c18 -15 38 -23 55 -23c42 0 84 47 119 131l25 61l-180 404c-15 35 -29 46 -56 49l-20 2v28l127 -3l126 3v-28l-41 -2c-43 -2 -45 -21 -27 -65l70 -168 c21 -49 32 -72 56 -110l129 292c17 36 7 48 -39 51l-28 2v28c35 -2 69 -3 103 -3c35 0 69 1 104 3v-28zM431 644c0 -21 -22 -42 -56 -62c-35 -22 -41 -24 -41 -31c0 0 5 -6 18 -17l-27 -12c-9 3 -29 20 -29 33c0 14 7 24 38 47c27 19 35 27 35 37c0 13 -21 24 -49 24 c-18 0 -30 -4 -33 -9l-13 -21l-34 7l26 49c31 9 49 14 69 14c55 0 96 -26 96 -59'], + 0xE2EA: [703,283,691,34,656,'656 431l-32 -2c-30 -2 -52 -30 -99 -121l-237 -468c-45 -87 -95 -123 -173 -123c-22 0 -41 5 -63 15l28 75h15c20 -15 41 -23 60 -23c44 0 90 47 127 131l27 61l-193 404c-16 35 -32 46 -61 49l-21 2v28l136 -3l135 3v-28l-44 -2c-46 -2 -48 -21 -28 -65l75 -168 c22 -49 34 -72 59 -110l140 292c17 36 7 48 -42 51l-31 2v28l111 -3l111 3v-28zM472 644c0 -21 -24 -42 -60 -62c-37 -22 -45 -24 -45 -31c0 0 6 -6 20 -17l-29 -12c-9 3 -31 20 -31 33c0 14 8 24 40 47c30 19 38 27 38 37c0 13 -22 24 -53 24c-18 0 -31 -4 -35 -9l-14 -21 l-36 7l28 49c33 9 53 14 74 14c59 0 103 -26 103 -59'], + 0xE2EB: [872,3,747,20,723,'723 679c-88 -97 -124 -142 -205 -253c-63 -88 -79 -122 -79 -177v-129c0 -79 6 -87 56 -90l52 -3v-30l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v142c0 16 -3 30 -10 40l-135 216c-46 73 -103 126 -140 130l-31 3v29l131 25c19 0 64 -45 99 -103l156 -261l112 163 c42 62 76 116 118 190h87v-15zM569 872c-4 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-40 18 -62 26 -77 26c-26 0 -44 -14 -58 -45h-32c16 65 56 100 116 100c26 0 39 -4 97 -30c26 -11 38 -15 51 -15c31 0 48 13 65 50h31'], + 0xE2EC: [872,3,820,31,785,'785 679c-95 -97 -133 -142 -220 -253c-68 -88 -84 -122 -84 -177v-129c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v142c0 16 -4 30 -11 40l-145 216c-49 73 -110 126 -150 130l-33 3v29l140 25c21 0 69 -45 106 -103l168 -261l120 163 c46 62 82 116 127 190h93v-15zM620 872c-4 -58 -61 -105 -127 -105c-26 0 -45 4 -80 19c-43 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 60 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 52 13 69 50h34'], + 0xE2ED: [645,283,626,23,603,'603 431l-31 -2c-27 -2 -48 -30 -91 -121l-221 -468c-42 -87 -89 -123 -162 -123c-20 0 -38 5 -59 15l27 75h14c18 -15 38 -23 55 -23c42 0 84 47 119 131l25 61l-180 404c-15 35 -29 46 -56 49l-20 2v28l127 -3l126 3v-28l-41 -2c-43 -2 -45 -21 -27 -65l70 -168 c21 -49 32 -72 56 -110l129 292c17 36 7 48 -39 51l-28 2v28c35 -2 69 -3 103 -3c35 0 69 1 104 3v-28zM516 645c-5 -58 -57 -105 -119 -105c-24 0 -41 4 -74 19c-41 18 -62 26 -78 26c-26 0 -43 -14 -57 -45h-32c15 65 56 100 116 100c26 0 39 -4 97 -30 c26 -11 38 -15 51 -15c30 0 48 13 64 50h32'], + 0xE2EE: [645,283,691,34,656,'656 431l-32 -2c-30 -2 -52 -30 -99 -121l-237 -468c-45 -87 -95 -123 -173 -123c-22 0 -41 5 -63 15l28 75h15c20 -15 41 -23 60 -23c44 0 90 47 127 131l27 61l-193 404c-16 35 -32 46 -61 49l-21 2v28l136 -3l135 3v-28l-44 -2c-46 -2 -48 -21 -28 -65l75 -168 c22 -49 34 -72 59 -110l140 292c17 36 7 48 -42 51l-31 2v28l111 -3l111 3v-28zM563 645c-5 -58 -61 -105 -128 -105c-25 0 -44 4 -79 19c-44 18 -67 26 -83 26c-28 0 -47 -14 -62 -45h-34c16 65 59 100 124 100c28 0 42 -4 104 -30c28 -11 41 -15 55 -15c33 0 51 13 69 50 h34'], + 0xE2EF: [692,3,747,26,705,'705 173c-5 -55 -6 -90 -6 -176l-333 3l-340 -3v28s91 98 106 117l329 388c41 47 67 76 94 118h-249c-133 0 -162 -8 -165 -47l-7 -71h-37c2 37 3 49 3 81s-1 44 -3 81h180l253 -3l170 3l4 -29l-529 -619h297c167 0 182 6 190 72l6 57h37'], + 0xE2F0: [692,3,820,38,766,'766 173c-5 -55 -7 -90 -7 -176l-356 3l-365 -3v28s97 98 113 117l353 388c44 47 72 76 101 118h-267c-143 0 -174 -8 -178 -47l-7 -71h-39c2 37 3 49 3 81s-1 44 -3 81h193l271 -3l183 3l4 -29l-568 -619h319c179 0 195 6 204 72l7 57h39'], + 0xE2F1: [462,3,565,27,518,'518 139l-7 -47c-6 -48 -9 -72 -9 -95l-301 3l-167 -3l-7 20l284 317c30 34 48 57 71 90h-156c-81 0 -100 -5 -105 -26l-13 -68h-33c7 69 8 81 10 132l271 -3l150 3v-30l-342 -397h147c104 0 150 7 155 25l19 79h33'], + 0xE2F2: [462,3,625,39,565,'565 139l-7 -47c-7 -48 -10 -72 -10 -95l-323 3l-179 -3l-7 20l304 317c33 34 51 57 76 90h-167c-87 0 -108 -5 -113 -26l-14 -68h-35c7 69 8 81 11 132l290 -3l161 3v-30l-367 -397h158c112 0 161 7 166 25l21 79h35'], + 0xE2F3: [888,3,747,26,705,'705 173c-5 -55 -6 -90 -6 -176l-333 3l-340 -3v28s91 98 106 117l329 388c41 47 67 76 94 118h-249c-133 0 -162 -8 -165 -47l-7 -71h-37c2 37 3 49 3 81s-1 44 -3 81h180l253 -3l170 3l4 -29l-529 -619h297c167 0 182 6 190 72l6 57h37zM512 861c0 -15 -8 -22 -46 -39 l-170 -73h-47l162 113c25 17 47 25 66 26c19 0 35 -12 35 -27'], + 0xE2F4: [888,3,820,38,766,'766 173c-5 -55 -7 -90 -7 -176l-356 3l-365 -3v28s97 98 113 117l353 388c44 47 72 76 101 118h-267c-143 0 -174 -8 -178 -47l-7 -71h-39c2 37 3 49 3 81s-1 44 -3 81h193l271 -3l183 3l4 -29l-568 -619h319c179 0 195 6 204 72l7 57h39zM559 861c0 -15 -9 -22 -50 -39 l-182 -73h-51l175 113c26 17 50 25 70 26c21 0 38 -12 38 -27'], + 0xE2F5: [677,3,565,27,518,'518 139l-7 -47c-6 -48 -9 -72 -9 -95l-301 3l-167 -3l-7 20l284 317c30 34 48 57 71 90h-156c-81 0 -100 -5 -105 -26l-13 -68h-33c7 69 8 81 10 132l271 -3l150 3v-30l-342 -397h147c104 0 150 7 155 25l19 79h33zM415 643c0 -18 -7 -26 -43 -47l-157 -90h-44l151 138 c24 22 43 33 60 33c18 0 33 -15 33 -34'], + 0xE2F6: [677,3,625,39,565,'565 139l-7 -47c-7 -48 -10 -72 -10 -95l-323 3l-179 -3l-7 20l304 317c33 34 51 57 76 90h-167c-87 0 -108 -5 -113 -26l-14 -68h-35c7 69 8 81 11 132l290 -3l161 3v-30l-367 -397h158c112 0 161 7 166 25l21 79h35zM455 643c0 -18 -8 -26 -47 -47l-168 -90h-47 l162 138c25 22 46 33 64 33c20 0 36 -15 36 -34'], + 0xE2F7: [887,3,747,26,705,'705 173c-5 -55 -6 -90 -6 -176l-333 3l-340 -3v28s91 98 106 117l329 388c41 47 67 76 94 118h-249c-133 0 -162 -8 -165 -47l-7 -71h-37c2 37 3 49 3 81s-1 44 -3 81h180l253 -3l170 3l4 -29l-529 -619h297c167 0 182 6 190 72l6 57h37zM546 887l-146 -135h-74 l-147 135h41l143 -84l143 84h40'], + 0xE2F8: [887,3,820,38,766,'766 173c-5 -55 -7 -90 -7 -176l-356 3l-365 -3v28s97 98 113 117l353 388c44 47 72 76 101 118h-267c-143 0 -174 -8 -178 -47l-7 -71h-39c2 37 3 49 3 81s-1 44 -3 81h193l271 -3l183 3l4 -29l-568 -619h319c179 0 195 6 204 72l7 57h39zM596 887l-157 -135h-80 l-158 135h45l153 -84l153 84h44'], + 0xE2F9: [676,3,565,27,518,'518 139l-7 -47c-6 -48 -9 -72 -9 -95l-301 3l-167 -3l-7 20l284 317c30 34 48 57 71 90h-156c-81 0 -100 -5 -105 -26l-13 -68h-33c7 69 8 81 10 132l271 -3l150 3v-30l-342 -397h147c104 0 150 7 155 25l19 79h33zM438 676l-136 -167h-67l-137 167h38l132 -103l133 103 h37'], + 0xE2FA: [676,3,625,39,565,'565 139l-7 -47c-7 -48 -10 -72 -10 -95l-323 3l-179 -3l-7 20l304 317c33 34 51 57 76 90h-167c-87 0 -108 -5 -113 -26l-14 -68h-35c7 69 8 81 11 132l290 -3l161 3v-30l-367 -397h158c112 0 161 7 166 25l21 79h35zM480 676l-146 -167h-73l-146 167h41l141 -103 l143 103h40'], + 0xE2FB: [869,3,747,26,705,'705 173c-5 -55 -6 -90 -6 -176l-333 3l-340 -3v28s91 98 106 117l329 388c41 47 67 76 94 118h-249c-133 0 -162 -8 -165 -47l-7 -71h-37c2 37 3 49 3 81s-1 44 -3 81h180l253 -3l170 3l4 -29l-529 -619h297c167 0 182 6 190 72l6 57h37zM418 819c0 -30 -22 -50 -55 -50 s-54 20 -54 50s21 50 55 50c32 0 54 -21 54 -50'], + 0xE2FC: [869,3,820,38,766,'766 173c-5 -55 -7 -90 -7 -176l-356 3l-365 -3v28s97 98 113 117l353 388c44 47 72 76 101 118h-267c-143 0 -174 -8 -178 -47l-7 -71h-39c2 37 3 49 3 81s-1 44 -3 81h193l271 -3l183 3l4 -29l-568 -619h319c179 0 195 6 204 72l7 57h39zM458 819 c0 -30 -24 -50 -59 -50s-58 20 -58 50s23 50 59 50c34 0 58 -21 58 -50'], + 0xE2FD: [642,3,565,27,518,'518 139l-7 -47c-6 -48 -9 -72 -9 -95l-301 3l-167 -3l-7 20l284 317c30 34 48 57 71 90h-156c-81 0 -100 -5 -105 -26l-13 -68h-33c7 69 8 81 10 132l271 -3l150 3v-30l-342 -397h147c104 0 150 7 155 25l19 79h33zM323 592c0 -30 -22 -50 -55 -50c-32 0 -54 20 -54 50 s22 50 55 50c32 0 54 -21 54 -50'], + 0xE2FE: [642,3,625,39,565,'565 139l-7 -47c-7 -48 -10 -72 -10 -95l-323 3l-179 -3l-7 20l304 317c33 34 51 57 76 90h-167c-87 0 -108 -5 -113 -26l-14 -68h-35c7 69 8 81 11 132l290 -3l161 3v-30l-367 -397h158c112 0 161 7 166 25l21 79h35zM356 592c0 -30 -24 -50 -59 -50s-58 20 -58 50 s23 50 59 50c34 0 58 -21 58 -50'], + 0xE2FF: [689,20,565,42,517,'517 366c0 -256 -83 -386 -248 -386c-67 0 -128 28 -166 77c-39 49 -61 150 -61 267c0 242 86 365 255 365c149 0 220 -104 220 -323zM425 316c0 240 -42 338 -148 338c-104 0 -144 -83 -144 -294c0 -244 45 -345 151 -345c100 0 141 88 141 301'], + 0xE300: [689,20,625,54,564,'564 366c0 -256 -89 -386 -266 -386c-72 0 -138 28 -179 77s-65 150 -65 267c0 242 92 365 274 365c160 0 236 -104 236 -323zM466 316c0 240 -46 338 -159 338c-112 0 -155 -83 -155 -294c0 -244 48 -345 162 -345c107 0 152 88 152 301'], + 0xE301: [705,3,807,-11,748,'748 -3l-133 3l-133 -3v28l48 3c30 2 47 11 47 27c0 5 -1 13 -2 22l-30 200h-268l-111 -175c-22 -34 -28 -47 -28 -55c0 -9 15 -18 33 -19l57 -3v-28l-117 3l-122 -3v30l22 5c37 8 58 24 96 80l407 593h50l95 -625c6 -45 9 -47 61 -52l28 -3v-28zM540 313l-41 288 l-195 -288h236'], + 0xE302: [705,3,885,-2,812,'812 -3l-143 3l-142 -3v28l51 3c33 2 50 11 50 27c0 5 -1 13 -2 22l-32 200h-287l-120 -175c-23 -34 -30 -47 -30 -55c0 -9 16 -18 36 -19l61 -3v-28l-125 3l-131 -3v30l23 5c40 8 62 24 103 80l437 593h53l102 -625c7 -45 11 -47 66 -52l30 -3v-28zM589 313l-44 288 l-209 -288h253'], + 0xE303: [482,11,504,14,453,'453 85c-90 -68 -135 -96 -160 -96c-16 0 -26 14 -26 37c0 16 2 33 7 51l31 127c-60 -78 -103 -125 -150 -162c-40 -32 -81 -53 -104 -53c-20 0 -37 34 -37 77c0 80 34 199 82 288c27 49 62 79 131 110c29 13 51 18 82 18c29 0 50 -4 92 -19l36 18l11 -9l-100 -379 c-1 -3 -1 -6 -1 -10c0 -16 5 -24 16 -24c17 0 33 9 68 36c5 4 6 5 14 11zM358 414c-47 15 -68 19 -93 19c-53 0 -80 -18 -106 -76c-38 -83 -66 -194 -66 -258c0 -27 6 -40 19 -40c36 0 105 61 165 145c36 51 57 103 81 210'], + 0xE304: [482,11,559,25,495,'495 85c-96 -68 -144 -96 -171 -96c-17 0 -28 14 -28 37c0 16 2 33 7 51l34 127c-64 -78 -111 -125 -161 -162c-44 -32 -87 -53 -112 -53c-22 0 -39 34 -39 77c0 80 36 199 87 288c30 49 67 79 141 110c31 13 55 18 88 18c31 0 53 -4 99 -19l39 18l11 -9l-107 -379 c-1 -3 -1 -6 -1 -10c0 -16 5 -24 17 -24c18 0 35 9 73 36c5 4 7 5 15 11zM393 414c-50 15 -72 19 -99 19c-58 0 -86 -18 -114 -76c-41 -83 -71 -194 -71 -258c0 -27 7 -40 21 -40c39 0 112 61 177 145c38 51 60 103 86 210'], + 0xE305: [692,3,686,38,619,'619 562c0 -51 -26 -97 -75 -137c-35 -27 -61 -40 -123 -60c75 -10 108 -19 136 -40c30 -22 45 -55 45 -98c0 -76 -48 -144 -134 -191c-51 -28 -103 -39 -155 -39c-59 0 -117 3 -175 3c-33 0 -67 -1 -100 -3l6 26c46 7 60 14 63 32l95 504c5 30 10 62 10 76 c0 18 -12 26 -39 27l-57 2l3 28l165 -3c54 0 109 3 163 3c84 0 172 -48 172 -130zM506 211c0 87 -55 129 -167 129h-92l-56 -299c17 -1 30 -2 37 -3c36 -3 68 -4 89 -4c109 0 189 74 189 177zM526 544c0 75 -44 111 -132 111c-30 0 -58 -5 -88 -5l-53 -274h57 c135 0 216 63 216 168'], + 0xE306: [692,3,755,50,674,'674 562c0 -51 -28 -97 -81 -137c-37 -27 -65 -40 -132 -60c81 -10 116 -19 146 -40c32 -22 48 -55 48 -98c0 -76 -51 -144 -144 -191c-55 -28 -110 -39 -166 -39c-63 0 -125 3 -188 3c-35 0 -71 -1 -107 -3l6 26c49 7 65 14 68 32l102 504c6 30 10 62 10 76 c0 18 -12 26 -41 27l-62 2l4 28l177 -3c58 0 117 3 175 3c90 0 185 -48 185 -130zM552 211c0 87 -58 129 -179 129h-99l-60 -299c19 -1 33 -2 40 -3c39 -3 73 -4 96 -4c117 0 202 74 202 177zM573 544c0 75 -46 111 -141 111c-32 0 -62 -5 -94 -5l-57 -274h61 c145 0 231 63 231 168'], + 0xE307: [733,11,525,50,482,'482 376c0 -132 -72 -269 -177 -337c-46 -31 -102 -50 -142 -50c-60 0 -113 33 -113 72c0 3 0 7 1 10l111 551c1 6 2 17 2 24c0 17 -11 24 -37 24h-53l5 21c78 7 117 16 174 42l13 -11l-94 -398c68 79 104 109 160 136c30 14 63 22 89 22c16 0 30 -5 38 -14 c13 -15 23 -54 23 -92zM403 352c0 49 -14 72 -42 72c-32 0 -88 -29 -124 -63c-44 -42 -70 -90 -91 -170c-10 -37 -14 -65 -14 -90c0 -42 27 -65 77 -65c59 0 103 32 139 101c33 65 55 151 55 215'], + 0xE308: [733,11,582,63,527,'527 376c0 -132 -78 -269 -190 -337c-50 -31 -110 -50 -153 -50c-65 0 -121 33 -121 72c0 3 0 7 1 10l119 551c1 6 2 17 2 24c0 17 -12 24 -40 24h-56l5 21c84 7 126 16 187 42l14 -11l-101 -398c73 79 111 109 171 136c33 14 68 22 96 22c18 0 33 -5 41 -14 c14 -15 25 -54 25 -92zM442 352c0 49 -15 72 -45 72c-34 0 -95 -29 -134 -63c-46 -42 -75 -90 -97 -170c-10 -37 -15 -65 -15 -90c0 -42 29 -65 83 -65c63 0 110 32 149 101c35 65 59 151 59 215'], + 0xE309: [706,18,747,59,720,'720 665c-16 -46 -24 -89 -30 -146h-29v84c-61 36 -117 50 -195 50c-86 0 -156 -24 -207 -72c-67 -62 -104 -160 -104 -272c0 -178 93 -274 265 -274c85 0 142 17 244 75l11 -7l-11 -36c-99 -62 -175 -85 -280 -85c-209 0 -325 108 -325 302c0 153 65 271 193 350 c76 47 166 72 255 72c68 0 129 -12 213 -41'], + 0xE30A: [706,18,820,73,782,'782 665c-17 -46 -26 -89 -32 -146h-32v84c-65 36 -125 50 -209 50c-92 0 -167 -24 -222 -72c-72 -62 -111 -160 -111 -272c0 -178 99 -274 284 -274c91 0 152 17 262 75l12 -7l-12 -36c-106 -62 -188 -85 -301 -85c-224 0 -348 108 -348 302c0 153 70 271 207 350 c82 47 178 72 274 72c72 0 138 -12 228 -41'], + 0xE30B: [482,11,464,37,434,'434 458c-10 -26 -17 -63 -26 -128h-25v60c0 24 -39 43 -89 43c-34 0 -62 -8 -85 -26c-52 -39 -89 -142 -89 -248c0 -79 32 -119 93 -119c38 0 79 17 158 65l16 10l9 -20l-55 -41c-60 -45 -112 -65 -171 -65c-87 0 -133 51 -133 147c0 107 42 211 104 261s139 85 188 85 c42 0 78 -8 105 -24'], + 0xE30C: [482,11,516,49,475,'475 458c-10 -26 -19 -63 -28 -128h-27v60c0 24 -42 43 -95 43c-37 0 -66 -8 -91 -26c-56 -39 -96 -142 -96 -248c0 -79 34 -119 100 -119c41 0 85 17 169 65l18 10l9 -20l-58 -41c-65 -45 -121 -65 -184 -65c-94 0 -143 51 -143 147c0 107 45 211 111 261 c67 50 150 85 203 85c44 0 83 -8 112 -24'], + 0xE30D: [692,3,868,41,818,'818 431c0 -166 -105 -317 -275 -397c-57 -26 -110 -37 -189 -37l-212 3c-34 0 -68 -1 -101 -3l5 26c21 5 53 9 58 32l95 504c5 30 9 62 9 76c0 18 -12 26 -38 27l-58 2l4 28l134 -3l222 3c92 0 196 -17 246 -50c67 -43 100 -113 100 -211zM717 415 c0 164 -90 240 -288 240c-43 0 -84 -5 -127 -5l-105 -557c-3 -18 -4 -25 -4 -37c74 -10 128 -15 176 -15c94 0 174 28 233 83c74 69 115 174 115 291'], + 0xE30E: [692,3,950,53,887,'887 431c0 -166 -112 -317 -295 -397c-61 -26 -118 -37 -202 -37l-228 3c-37 0 -73 -1 -109 -3l6 26c22 5 57 9 62 32l101 504c6 30 11 62 11 76c0 18 -13 26 -41 27l-62 2l3 28l144 -3l239 3c98 0 211 -17 264 -50c72 -43 107 -113 107 -211zM779 415 c0 164 -97 240 -310 240c-45 0 -90 -5 -135 -5l-113 -557c-3 -18 -4 -25 -4 -37c79 -10 136 -15 188 -15c102 0 187 28 250 83c80 69 124 174 124 291'], + 0xE30F: [733,11,565,29,536,'536 722l-137 -594c-6 -29 -9 -38 -9 -46c0 -14 7 -23 16 -23s27 7 42 17l48 31l11 -19l-88 -60c-37 -25 -63 -39 -82 -39s-28 14 -28 35c0 26 5 58 17 102l25 91c-73 -101 -109 -140 -168 -184c-37 -27 -77 -44 -107 -44c-31 0 -47 32 -47 97c0 84 21 179 55 237 c50 87 153 159 228 159c27 0 57 -5 89 -14l31 154c1 7 2 16 2 24c0 17 -11 24 -37 24h-52l4 21c78 7 118 16 174 42zM390 410c-36 17 -67 23 -115 23c-30 0 -50 -5 -64 -15c-54 -38 -104 -194 -104 -320c0 -25 10 -39 27 -39c21 0 65 24 103 57c67 59 121 147 140 235'], + 0xE310: [733,11,625,40,585,'585 722l-147 -594c-7 -29 -10 -38 -10 -46c0 -14 7 -23 17 -23s29 7 45 17l52 31l12 -19l-95 -60c-40 -25 -68 -39 -88 -39s-30 14 -30 35c0 26 5 58 18 102l27 91c-78 -101 -117 -140 -180 -184c-40 -27 -83 -44 -115 -44c-34 0 -51 32 -51 97c0 84 23 179 60 237 c53 87 163 159 244 159c29 0 61 -5 96 -14l33 154c1 7 2 16 2 24c0 17 -12 24 -40 24h-56l5 21c84 7 126 16 187 42zM428 410c-38 17 -72 23 -124 23c-31 0 -54 -5 -69 -15c-57 -38 -111 -194 -111 -320c0 -25 11 -39 29 -39c23 0 69 24 110 57c73 59 130 147 151 235'], + 0xE311: [692,3,686,43,631,'631 689c-12 -38 -19 -88 -23 -152h-26l-8 89c-2 15 -46 24 -117 24c-108 -2 -81 -2 -142 -4c-4 -8 -6 -16 -10 -32l-45 -238h40l239 6l4 -7l-21 -45c-33 1 -6 4 -144 4h-127l-47 -253c-2 -12 -2 -23 -2 -35c69 -6 98 -7 143 -7c65 0 142 5 163 10c23 5 33 17 43 52 l17 60h30c-9 -41 -18 -83 -23 -125l-5 -36c-42 -1 -20 -3 -114 -3l-245 3l-168 -3l5 26c48 7 62 14 66 32l94 504c7 32 10 62 10 77c0 17 -12 25 -38 26l-59 2l3 28l175 -3l257 3c25 0 51 -1 75 -3'], + 0xE312: [692,3,755,55,687,'687 689c-13 -38 -21 -88 -25 -152h-28l-9 89c-1 15 -49 24 -125 24c-116 -2 -87 -2 -152 -4c-5 -8 -7 -16 -11 -32l-49 -238h43l256 6l5 -7l-22 -45c-36 1 -7 4 -155 4h-136l-51 -253c-2 -12 -2 -23 -2 -35c74 -6 105 -7 153 -7c70 0 153 5 176 10c24 5 35 17 45 52 l19 60h32c-10 -41 -19 -83 -25 -125l-5 -36c-45 -1 -22 -3 -122 -3l-264 3l-180 -3l6 26c51 7 67 14 70 32l102 504c7 32 10 62 10 77c0 17 -12 25 -40 26l-64 2l4 28l187 -3l276 3c27 0 55 -1 81 -3'], + 0xE313: [482,11,444,26,418,'418 404c0 -62 -43 -107 -136 -145c-28 -11 -56 -21 -75 -25l-89 -20c-7 -29 -9 -54 -9 -80c0 -61 31 -98 83 -98c39 0 92 20 149 58l27 17l8 -19c-101 -75 -161 -103 -223 -103c-79 0 -127 46 -127 123c0 70 34 190 67 239c43 64 162 131 233 131c56 0 92 -31 92 -78z M337 388c0 32 -21 52 -52 52c-28 0 -62 -13 -83 -31c-30 -25 -51 -68 -69 -135l-10 -37c49 10 89 22 119 35c57 25 95 72 95 116'], + 0xE314: [482,11,495,38,458,'458 404c0 -62 -46 -107 -146 -145c-30 -11 -60 -21 -80 -25l-96 -20c-7 -29 -10 -54 -10 -80c0 -61 33 -98 89 -98c43 0 99 20 161 58l28 17l9 -19c-109 -75 -173 -103 -240 -103c-84 0 -135 46 -135 123c0 70 36 190 71 239c47 64 174 131 250 131c60 0 99 -31 99 -78z M371 388c0 32 -22 52 -56 52c-29 0 -67 -13 -89 -31c-32 -25 -55 -68 -74 -135l-10 -37c52 10 94 22 127 35c61 25 102 72 102 116'], + 0xE315: [692,3,626,10,607,'607 689c-12 -38 -19 -89 -23 -152h-26l-8 89c-2 15 -45 24 -113 24c-137 -5 -112 -4 -134 -4c-5 -11 -6 -16 -10 -32l-50 -271h41l238 6l5 -7l-21 -45c-34 1 -7 4 -144 4h-127l-40 -223c-1 -4 -2 -15 -2 -21c0 -20 10 -28 39 -29l70 -3l-3 -28l-151 3l-138 -3l4 28l40 3 c44 3 45 5 63 97l82 434c5 30 9 62 9 76c0 17 -12 26 -38 27l-61 2l3 28l166 -3l256 3c19 0 49 -1 73 -3'], + 0xE316: [692,3,691,20,661,'661 689c-13 -38 -21 -89 -24 -152h-28l-10 89c-1 15 -48 24 -120 24c-148 -5 -121 -4 -144 -4c-6 -11 -7 -16 -11 -32l-54 -271h44l256 6l5 -7l-23 -45c-36 1 -7 4 -154 4h-137l-42 -223c-1 -4 -2 -15 -2 -21c0 -20 10 -28 42 -29l75 -3l-4 -28l-161 3l-149 -3l5 28 l42 3c48 3 49 5 68 97l87 434c6 30 11 62 11 76c0 17 -13 26 -41 27l-66 2l4 28l178 -3l275 3c20 0 52 -1 78 -3'], + 0xE317: [733,276,323,-167,460,'460 720l-5 -15l-25 -67l-11 -4c-17 24 -46 39 -79 39c-50 0 -80 -38 -98 -124l-23 -112h18c53 0 65 0 91 7l8 2l4 -7c-6 -14 -14 -37 -18 -56h-114c-6 -33 -15 -63 -20 -88c-81 -352 -104 -421 -170 -493c-43 -47 -102 -78 -146 -78c-12 0 -29 3 -39 8c6 9 21 57 25 80 l16 4c18 -22 31 -29 56 -29c40 0 71 31 92 90c24 69 63 255 97 450l10 56h-88l5 22c27 9 49 17 94 37l16 79c12 57 25 87 49 109c25 24 115 85 141 96c8 4 26 7 38 7c26 0 58 -5 76 -13'], + 0xE318: [733,276,365,-170,503,'503 720l-6 -15l-27 -67l-11 -4c-18 24 -49 39 -84 39c-54 0 -87 -38 -106 -124l-24 -112h18c58 0 71 0 99 7l8 2l5 -7c-8 -14 -16 -37 -20 -56h-122c-7 -33 -16 -63 -22 -88c-87 -352 -111 -421 -183 -493c-45 -47 -109 -78 -157 -78c-12 0 -30 3 -41 8c6 9 23 57 27 80 l17 4c20 -22 34 -29 61 -29c42 0 76 31 98 90c26 69 68 255 104 450l11 56h-95l6 22c29 9 52 17 100 37l18 79c13 57 27 87 52 109c27 24 123 85 151 96c10 4 28 7 41 7c28 0 62 -5 82 -13'], + 0xE319: [706,18,807,64,766,'766 272l-2 -26l-35 -6c-14 -2 -27 -12 -29 -21l-25 -135c-2 -13 0 -27 2 -40l-4 -7c-14 -2 -33 -6 -61 -15c-72 -22 -139 -40 -215 -40c-214 0 -333 105 -333 292c0 150 68 274 196 358c78 51 158 74 258 74c75 0 137 -11 228 -41c-16 -46 -24 -89 -30 -146h-29v84 c-61 36 -120 50 -204 50c-90 0 -161 -24 -215 -74c-69 -64 -108 -165 -108 -282c0 -177 94 -270 275 -270c59 0 101 9 151 33l19 93c6 24 8 44 8 59c0 24 -10 28 -92 32l-37 2l6 26l140 -3'], + 0xE31A: [706,18,885,78,832,'832 272l-2 -26l-38 -6c-15 -2 -29 -12 -31 -21l-27 -135c-3 -13 0 -27 2 -40l-5 -7c-15 -2 -35 -6 -65 -15c-77 -22 -149 -40 -231 -40c-229 0 -357 105 -357 292c0 150 73 274 210 358c84 51 170 74 277 74c81 0 148 -11 245 -41c-17 -46 -26 -89 -32 -146h-31v84 c-66 36 -129 50 -219 50c-97 0 -173 -24 -231 -74c-75 -64 -116 -165 -116 -282c0 -177 101 -270 295 -270c63 0 109 9 162 33l21 93c6 24 8 44 8 59c0 24 -11 28 -98 32l-40 2l6 26l151 -3'], + 0xE31B: [482,276,565,-30,553,'553 427l-10 -45c-25 -3 -36 -4 -54 -4h-38l2 -3c3 -15 3 -24 3 -33c0 -89 -78 -172 -184 -196c-3 -3 -4 -4 -7 -8c-16 -19 -23 -29 -23 -38c0 -19 14 -38 51 -65l66 -49c47 -35 70 -71 70 -107c0 -83 -124 -155 -264 -155c-119 0 -195 46 -195 117c0 40 20 79 57 107 c41 31 75 46 157 71c-15 12 -22 23 -22 33c0 14 11 32 29 47l45 38c-12 -1 -24 -1 -33 -1c-84 0 -133 46 -133 123c0 71 32 129 93 171c48 33 102 52 147 52c23 0 50 -5 73 -13c27 -10 38 -19 55 -45c59 0 81 2 112 9zM357 -154c0 33 -21 60 -71 96l-84 59 c-56 -15 -80 -25 -108 -46c-35 -27 -55 -62 -55 -100c0 -61 63 -103 152 -103c90 0 166 42 166 94zM377 341c0 71 -31 107 -95 107c-79 0 -135 -65 -135 -160c0 -79 35 -120 102 -120c76 0 128 70 128 173'], + 0xE31C: [482,276,625,-23,603,'603 427l-11 -45c-27 -3 -38 -4 -58 -4h-40l1 -3c4 -15 4 -24 4 -33c0 -89 -84 -172 -198 -196c-3 -3 -4 -4 -7 -8c-18 -19 -25 -29 -25 -38c0 -19 15 -38 55 -65l70 -49c51 -35 75 -71 75 -107c0 -83 -132 -155 -283 -155c-127 0 -209 46 -209 117c0 40 22 79 62 107 c43 31 79 46 168 71c-16 12 -24 23 -24 33c0 14 12 32 31 47l48 38c-13 -1 -26 -1 -35 -1c-90 0 -143 46 -143 123c0 71 34 129 100 171c51 33 110 52 158 52c24 0 54 -5 78 -13c29 -10 41 -19 60 -45c63 0 86 2 119 9zM392 -154c0 33 -22 60 -76 96l-90 59 c-60 -15 -85 -25 -116 -46c-37 -27 -58 -62 -58 -100c0 -61 66 -103 162 -103c97 0 178 42 178 94zM414 341c0 71 -34 107 -102 107c-85 0 -145 -65 -145 -160c0 -79 38 -120 109 -120c82 0 138 70 138 173'], + 0xE31D: [692,3,868,7,882,'882 692l-3 -28l-40 -3c-41 -3 -47 -9 -55 -48l-100 -520c-4 -17 -5 -26 -5 -35c0 -21 11 -29 39 -30l64 -3l-4 -28l-143 3l-154 -3l4 28l55 3c24 1 36 6 40 14c6 6 13 34 23 83l44 215l-201 3l-201 -3l-45 -247c-4 -19 -5 -26 -5 -35c0 -21 10 -28 40 -30l53 -3l-3 -28 l-134 3l-144 -3l4 28l45 3c43 3 46 5 63 97l81 434c5 31 9 62 9 76c0 18 -12 26 -38 27l-51 2l3 28l154 -3l124 3l-3 -28l-46 -3c-40 -3 -48 -9 -55 -48l-46 -228h403l33 174c5 30 10 62 10 76c0 18 -12 26 -38 27l-53 2l3 28l156 -3'], + 0xE31E: [692,3,950,16,956,'956 692l-4 -28l-42 -3c-44 -3 -51 -9 -59 -48l-108 -520c-3 -17 -5 -26 -5 -35c0 -21 12 -29 42 -30l68 -3l-3 -28l-155 3l-165 -3l5 28l59 3c25 1 38 6 43 14c6 6 14 34 24 83l47 215l-215 3l-215 -3l-49 -247c-4 -19 -5 -26 -5 -35c0 -21 10 -28 42 -30l57 -3l-3 -28 l-144 3l-155 -3l5 28l48 3c47 3 49 5 68 97l87 434c5 31 10 62 10 76c0 18 -13 26 -41 27l-55 2l4 28l165 -3l133 3l-3 -28l-50 -3c-43 -3 -51 -9 -59 -48l-49 -228h432l36 174c5 30 10 62 10 76c0 18 -13 26 -41 27l-56 2l3 28l168 -3'], + 0xE31F: [733,9,565,21,523,'523 85c-106 -73 -146 -94 -174 -94c-21 0 -33 15 -33 39c0 19 5 41 14 77l56 196c10 33 16 71 16 89c0 13 -9 22 -24 22c-45 0 -159 -97 -207 -178c-31 -53 -50 -114 -67 -229l-75 -16l-8 11c23 63 66 235 96 386l46 234c1 7 2 16 2 24c0 17 -11 24 -37 24h-53l5 21 c78 7 117 16 174 42l13 -11l-107 -457l22 25c51 58 69 77 107 106c69 53 135 86 172 86c20 0 32 -14 32 -36c0 -17 -6 -48 -12 -74l-70 -256c-6 -22 -8 -30 -8 -40c0 -11 7 -20 15 -20c11 0 35 11 66 30l28 17'], + 0xE320: [733,9,625,32,571,'571 85c-115 -73 -157 -94 -187 -94c-22 0 -35 15 -35 39c0 19 4 41 15 77l60 196c10 33 17 71 17 89c0 13 -10 22 -26 22c-49 0 -170 -97 -222 -178c-34 -53 -54 -114 -72 -229l-81 -16l-8 11c24 63 71 235 103 386l49 234c1 7 2 16 2 24c0 17 -12 24 -40 24h-56l5 21 c84 7 126 16 187 42l14 -11l-115 -457l24 25c55 58 74 77 115 106c73 53 145 86 184 86c21 0 34 -14 34 -36c0 -17 -6 -48 -13 -74l-74 -256c-7 -22 -9 -30 -9 -40c0 -11 7 -20 16 -20c11 0 37 11 71 30l30 17'], + 0xE321: [692,3,383,18,396,'396 692l-3 -28l-39 -3c-42 -3 -48 -9 -55 -48l-97 -535c-1 -5 -2 -14 -2 -21c0 -20 9 -27 39 -29l57 -3l-4 -28l-137 3l-137 -3l3 28l39 3c44 3 47 8 63 97l79 434c4 22 10 68 10 77c0 17 -12 25 -39 26l-51 2l4 28l148 -3'], + 0xE322: [692,3,430,28,434,'434 692l-3 -28l-41 -3c-46 -3 -52 -9 -60 -48l-104 -535c-1 -5 -2 -14 -2 -21c0 -20 10 -27 42 -29l61 -3l-4 -28l-147 3l-148 -3l4 28l42 3c47 3 50 8 68 97l84 434c5 22 10 68 10 77c0 17 -12 25 -41 26l-54 2l3 28l159 -3'], + 0xE323: [670,9,323,47,300,'273 85c-106 -72 -146 -94 -175 -94c-20 0 -32 15 -32 39c0 20 4 45 14 77l72 240c4 15 8 36 8 44c0 12 -7 21 -18 21c-10 0 -21 -4 -52 -23l-35 -21l-8 20l31 20c82 54 122 74 146 74c18 0 27 -9 27 -26c0 -9 -2 -19 -7 -36l-84 -304c-6 -22 -7 -30 -7 -40 c0 -11 6 -20 14 -20c11 0 34 10 66 30l29 17zM300 629c0 -38 -25 -67 -59 -67c-27 0 -44 16 -44 41c0 34 31 67 64 67c23 0 39 -17 39 -41'], + 0xE324: [670,9,365,60,331,'302 85c-114 -72 -157 -94 -187 -94c-22 0 -35 15 -35 39c0 20 4 45 15 77l77 240c5 15 9 36 9 44c0 12 -8 21 -19 21s-23 -4 -57 -23l-37 -21l-8 20l33 20c88 54 131 74 156 74c20 0 30 -9 30 -26c0 -9 -3 -19 -7 -36l-91 -304c-7 -22 -8 -30 -8 -40c0 -11 7 -20 15 -20 c12 0 37 10 72 30l30 17zM331 629c0 -38 -27 -67 -63 -67c-29 0 -47 16 -47 41c0 34 33 67 68 67c25 0 42 -17 42 -41'], + 0xE325: [692,206,383,-28,400,'400 692l-3 -28l-46 -3c-41 -3 -49 -10 -55 -48l-93 -559c-10 -62 -20 -94 -37 -132c-37 -81 -94 -128 -153 -128c-13 0 -26 3 -38 10l-3 26c9 -3 18 -4 31 -4c52 0 84 50 101 153l103 643c1 5 1 8 1 13c0 18 -12 26 -38 27l-51 2l3 28l154 -3'], + 0xE326: [692,206,430,-21,439,'439 692l-4 -28l-49 -3c-44 -3 -52 -10 -59 -48l-100 -559c-10 -62 -21 -94 -40 -132c-39 -81 -100 -128 -163 -128c-15 0 -29 3 -41 10l-4 26c9 -3 20 -4 34 -4c55 0 90 50 108 153l111 643c1 5 1 8 1 13c0 18 -13 26 -41 27l-55 2l4 28l164 -3'], + 0xE327: [670,276,323,-66,308,'259 457c0 -5 -3 -20 -7 -37l-83 -350c-31 -132 -47 -181 -70 -228c-39 -78 -81 -118 -124 -118c-16 0 -30 2 -41 7l8 57c24 -13 43 -19 58 -19c20 0 39 35 51 87l109 495c4 13 8 27 8 40s-9 23 -20 23c-16 0 -36 -19 -51 -25l-35 -21l-7 20l30 20c83 54 122 74 146 74 c18 0 28 -9 28 -25zM308 629c0 -38 -26 -67 -59 -67c-28 0 -44 16 -44 41c0 34 31 67 63 67c23 0 40 -17 40 -41'], + 0xE328: [670,276,365,-62,339,'287 457c0 -5 -3 -20 -7 -37l-89 -350c-34 -132 -50 -181 -75 -228c-42 -78 -88 -118 -133 -118c-18 0 -33 2 -45 7l9 57c26 -13 46 -19 62 -19c22 0 43 35 55 87l117 495c4 13 9 27 9 40s-10 23 -21 23c-18 0 -39 -19 -55 -25l-38 -21l-8 20l33 20c89 54 131 74 157 74 c18 0 29 -9 29 -25zM339 629c0 -38 -27 -67 -63 -67c-29 0 -47 16 -47 41c0 34 33 67 68 67c25 0 42 -17 42 -41'], + 0xE329: [692,3,747,24,754,'754 665h-22c-19 0 -42 -10 -59 -25l-319 -273l269 -302c22 -26 44 -38 69 -38h22v-30c-24 2 -49 3 -74 3s-50 -1 -75 -3c-115 143 -140 172 -303 343l-47 -262c-1 -4 -2 -15 -2 -21c0 -20 10 -27 39 -29l53 -3l-3 -28l-134 3l-144 -3l5 28l44 3c44 3 46 5 63 97l80 434 c7 33 10 62 10 76c0 18 -12 26 -38 27l-52 2l4 28l153 -3l125 3l-4 -28l-45 -3c-41 -3 -48 -10 -56 -48l-49 -260c70 50 114 86 162 131l140 130c30 28 41 41 41 49v29c24 -2 48 -3 73 -3s49 1 74 3v-27'], + 0xE32A: [692,3,820,35,819,'819 665h-24c-20 0 -45 -10 -64 -25l-341 -273l288 -302c24 -26 48 -38 74 -38h24v-30c-26 2 -53 3 -80 3s-54 -1 -80 -3c-123 143 -150 172 -326 343l-50 -262c-1 -4 -2 -15 -2 -21c0 -20 10 -27 42 -29l57 -3l-3 -28l-144 3l-155 -3l5 28l48 3c47 3 49 5 68 97l85 434 c7 33 11 62 11 76c0 18 -13 26 -41 27l-55 2l3 28l165 -3l134 3l-4 -28l-49 -3c-43 -3 -52 -10 -60 -48l-52 -260c74 50 122 86 174 131l150 130c32 28 44 41 44 49v29c26 -2 52 -3 79 -3c26 0 52 1 79 3v-27'], + 0xE32B: [733,9,504,19,499,'499 473l-18 -63c-19 4 -31 6 -39 6c-55 0 -105 -25 -171 -86l-16 -14c43 -123 67 -177 105 -241c10 -17 17 -23 28 -23c9 0 17 2 32 10l47 24l8 -19l-50 -32c-48 -31 -74 -44 -88 -44c-27 0 -62 68 -137 268c-37 -34 -64 -79 -73 -127l-25 -124l-73 -17l-10 10 c56 209 75 278 89 353l52 268c2 7 3 16 3 24c0 17 -11 24 -37 24h-53l5 21c78 7 117 16 174 42l13 -11l-117 -492c137 175 227 252 299 252c13 0 33 -3 52 -9'], + 0xE32C: [733,9,559,29,545,'545 473l-20 -63c-19 4 -32 6 -42 6c-58 0 -112 -25 -183 -86l-17 -14c46 -123 72 -177 113 -241c10 -17 18 -23 30 -23c9 0 18 2 34 10l50 24l10 -19l-54 -32c-52 -31 -80 -44 -95 -44c-29 0 -67 68 -147 268c-40 -34 -68 -79 -79 -127l-27 -124l-78 -17l-11 10 c61 209 81 278 96 353l56 268c2 7 3 16 3 24c0 17 -12 24 -40 24h-56l5 21c84 7 126 16 187 42l14 -11l-125 -492c146 175 243 252 320 252c14 0 35 -3 56 -9'], + 0xE32D: [692,3,626,27,580,'580 165c-14 -62 -26 -140 -25 -165c-38 -3 -70 -3 -114 -3l-246 3l-168 -3l6 26c48 7 62 14 65 32l94 504c7 33 10 62 10 77c0 17 -12 25 -38 26l-52 2l4 28l147 -3l131 3l-4 -28l-45 -3c-41 -3 -48 -10 -56 -48l-100 -532c-2 -12 -2 -23 -2 -35c67 -6 94 -7 154 -7 c61 0 144 5 157 11c11 4 20 21 30 53l18 62h34'], + 0xE32E: [692,3,691,39,632,'632 165c-15 -62 -28 -140 -27 -165c-41 -3 -75 -3 -123 -3l-263 3l-180 -3l6 26c51 7 66 14 70 32l100 504c7 33 11 62 11 77c0 17 -13 25 -41 26l-55 2l3 28l158 -3l141 3l-4 -28l-49 -3c-43 -3 -51 -10 -59 -48l-108 -532c-2 -12 -2 -23 -2 -35c72 -6 101 -7 166 -7 s154 5 168 11c12 4 21 21 32 53l20 62h36'], + 0xE32F: [733,9,323,49,284,'284 722l-141 -609c-3 -12 -7 -24 -7 -37c0 -11 7 -20 15 -20c11 0 33 10 66 30l28 17l11 -18c-105 -72 -146 -94 -174 -94c-21 0 -33 15 -33 39c0 22 6 50 21 102l105 468c2 12 6 35 6 48c0 15 -11 22 -37 22h-52l4 21c79 7 118 16 175 42'], + 0xE330: [733,9,365,62,314,'314 722l-151 -609c-4 -12 -7 -24 -7 -37c0 -11 7 -20 15 -20c12 0 36 10 71 30l31 17l11 -18c-113 -72 -156 -94 -187 -94c-22 0 -35 15 -35 39c0 22 6 50 22 102l113 468c2 12 7 35 7 48c0 15 -12 22 -40 22h-56l4 21c85 7 127 16 188 42'], + 0xE331: [692,18,1049,-11,1035,'1035 692l-4 -28l-41 -2c-32 -2 -49 -12 -50 -31l-45 -531l-1 -37c-1 -21 20 -32 59 -35l40 -3l-3 -28l-145 3l-146 -3l3 28l34 3c56 5 71 11 73 39l40 520l-56 -87l-261 -414l-62 -104h-25l-163 578l-135 -464c-5 -18 -7 -31 -7 -41c0 -15 18 -24 53 -27l42 -3l-4 -28 l-120 3l-122 -3l4 26c60 5 77 18 93 70l158 509c3 7 4 14 4 20c0 26 -20 36 -77 40l-28 2l3 28c30 -2 60 -3 91 -3c30 0 61 1 91 3l164 -578l268 422c93 146 72 119 93 156c29 -2 60 -3 90 -3c31 0 61 1 92 3'], + 0xE332: [692,18,1144,-2,1120,'1120 692l-4 -28l-44 -2c-34 -2 -53 -12 -54 -31l-48 -531l-1 -37c-1 -21 21 -32 63 -35l43 -3l-3 -28l-156 3l-157 -3l4 28l36 3c60 5 76 11 79 39l43 520l-61 -87l-280 -414l-66 -104h-27l-175 578l-145 -464c-5 -18 -8 -31 -8 -41c0 -15 20 -24 58 -27l44 -3l-3 -28 l-129 3l-131 -3l3 26c65 5 83 18 101 70l170 509c2 7 3 14 3 20c0 26 -21 36 -82 40l-30 2l3 28c32 -2 65 -3 97 -3c33 0 66 1 99 3l175 -578l288 422c99 146 77 119 99 156c32 -2 65 -3 98 -3c32 0 65 1 98 3'], + 0xE333: [482,9,868,36,817,'817 85c-107 -73 -146 -94 -175 -94c-21 0 -33 15 -33 40c0 22 6 48 15 76l47 157c26 87 27 101 27 125c0 16 -6 25 -14 25c-35 0 -90 -35 -150 -96c-48 -49 -85 -124 -102 -205l-23 -107l-75 -15l-6 11l18 67c45 175 68 289 68 324c0 13 -4 21 -12 21 c-30 0 -79 -30 -125 -76c-60 -60 -89 -119 -115 -230l-24 -102l-75 -15l-3 11c45 143 90 336 90 387c0 15 -8 25 -20 25c-8 0 -12 -1 -51 -25l-35 -21l-8 20l31 20c80 53 122 74 145 74c15 0 25 -12 25 -31c0 -12 -2 -27 -7 -43l-36 -133c71 88 93 109 141 143 c60 42 110 64 143 64c17 0 28 -12 28 -31c0 -7 -3 -22 -8 -42l-32 -137c53 69 91 104 160 149c66 43 108 61 139 61c18 0 29 -11 29 -28c0 -8 -4 -24 -8 -41l-82 -297c-5 -21 -7 -30 -7 -40c0 -11 6 -20 14 -20c11 0 35 11 66 30l29 17'], + 0xE334: [482,9,950,48,886,'886 85c-115 -73 -157 -94 -187 -94c-23 0 -36 15 -36 40c0 22 6 48 16 76l50 157c28 87 29 101 29 125c0 16 -6 25 -15 25c-37 0 -96 -35 -160 -96c-52 -49 -91 -124 -110 -205l-25 -107l-81 -15l-5 11l18 67c49 175 74 289 74 324c0 13 -5 21 -13 21 c-33 0 -85 -30 -134 -76c-65 -60 -96 -119 -124 -230l-26 -102l-80 -15l-3 11c48 143 96 336 96 387c0 15 -8 25 -21 25c-8 0 -13 -1 -55 -25l-38 -21l-8 20l33 20c86 53 131 74 155 74c17 0 27 -12 27 -31c0 -12 -2 -27 -7 -43l-38 -133c76 88 99 109 151 143 c64 42 118 64 153 64c19 0 30 -12 30 -31c0 -7 -3 -22 -8 -42l-35 -137c57 69 98 104 172 149c71 43 116 61 150 61c19 0 30 -11 30 -28c0 -8 -3 -24 -8 -41l-88 -297c-6 -21 -8 -30 -8 -40c0 -11 7 -20 15 -20c12 0 38 11 72 30l30 17'], + 0xE335: [692,11,868,12,886,'886 692l-5 -28l-40 -2c-41 -2 -45 -7 -66 -120l-102 -553h-55l-368 577l-87 -464c-3 -11 -4 -22 -4 -30c0 -33 10 -41 54 -44l46 -3l-6 -28l-120 3l-121 -3l6 28l33 3c40 3 46 12 59 74l96 474c2 6 6 23 6 30c0 8 -17 27 -33 39c-12 9 -36 16 -55 17l-38 2l6 28 c29 -2 59 -3 88 -3s59 1 88 3l376 -589l88 489c2 13 5 39 5 46c0 16 -11 23 -39 24l-51 2l5 28l114 -3'], + 0xE336: [692,11,950,22,961,'961 692l-6 -28l-43 -2c-44 -2 -48 -7 -71 -120l-110 -553h-58l-396 577l-93 -464c-3 -11 -4 -22 -4 -30c0 -33 11 -41 58 -44l49 -3l-6 -28l-129 3l-130 -3l6 28l36 3c43 3 50 12 64 74l103 474c2 6 5 23 5 30c0 8 -17 27 -35 39c-13 9 -38 16 -58 17l-41 2l6 28 c31 -2 63 -3 95 -3c31 0 63 1 94 3l404 -589l94 489c2 13 5 39 5 46c0 16 -11 23 -42 24l-55 2l6 28l123 -3'], + 0xE337: [482,9,626,36,570,'570 85c-107 -73 -146 -94 -174 -94c-21 0 -33 15 -33 40c0 16 5 39 14 76l57 212c9 32 12 53 12 71c0 15 -7 24 -19 24c-49 0 -129 -62 -189 -146c-49 -69 -73 -134 -94 -260c-24 -4 -49 -10 -76 -17l-8 11c45 143 90 336 90 387c0 15 -8 25 -20 25c-8 0 -12 -1 -51 -25 l-35 -21l-8 20l31 20c79 52 122 74 145 74c16 0 25 -12 25 -33c0 -11 -2 -23 -7 -41l-41 -161c56 73 87 107 128 142c65 55 140 93 186 93c21 0 33 -13 33 -36c0 -17 -4 -45 -12 -74l-71 -276c-2 -4 -3 -15 -3 -20c0 -11 7 -20 15 -20c10 0 34 11 66 30l28 17'], + 0xE338: [482,9,691,48,621,'621 85c-114 -73 -156 -94 -187 -94c-22 0 -35 15 -35 40c0 16 5 39 15 76l61 212c9 32 13 53 13 71c0 15 -7 24 -20 24c-53 0 -139 -62 -203 -146c-53 -69 -79 -134 -101 -260c-26 -4 -53 -10 -82 -17l-8 11c48 143 96 336 96 387c0 15 -8 25 -21 25 c-8 0 -13 -1 -55 -25l-38 -21l-8 20l33 20c85 52 131 74 155 74c18 0 27 -12 27 -33c0 -11 -2 -23 -7 -41l-44 -161c61 73 93 107 138 142c69 55 150 93 199 93c23 0 36 -13 36 -36c0 -17 -5 -45 -13 -74l-77 -276c-1 -4 -2 -15 -2 -20c0 -11 7 -20 15 -20c12 0 37 11 71 30 l31 17'], + 0xE339: [706,18,868,68,825,'825 425c0 -158 -85 -305 -222 -383c-71 -41 -148 -60 -241 -60c-192 0 -294 101 -294 290c0 251 189 434 448 434c196 0 309 -103 309 -281zM729 409c0 110 -34 185 -105 223c-36 20 -90 32 -142 32c-83 0 -148 -23 -200 -71c-75 -69 -118 -186 -118 -316 c0 -167 81 -253 238 -253c85 0 156 26 210 76c74 70 117 183 117 309'], + 0xE33A: [706,18,950,82,895,'895 425c0 -158 -91 -305 -239 -383c-76 -41 -159 -60 -258 -60c-206 0 -316 101 -316 290c0 251 204 434 481 434c210 0 332 -103 332 -281zM792 409c0 110 -37 185 -113 223c-39 20 -96 32 -152 32c-89 0 -160 -23 -215 -71c-80 -69 -127 -186 -127 -316 c0 -167 88 -253 256 -253c91 0 168 26 225 76c79 70 126 183 126 309'], + 0xE33B: [482,11,504,29,458,'458 331c0 -101 -48 -215 -116 -274c-49 -42 -114 -68 -174 -68c-90 0 -139 57 -139 163c0 122 49 223 137 281c49 32 100 49 147 49c90 0 145 -57 145 -151zM375 315c0 84 -36 129 -102 129c-26 0 -52 -6 -66 -17c-53 -40 -96 -163 -96 -276c0 -79 37 -124 101 -124 c33 0 62 12 81 33c48 53 82 159 82 255'], + 0xE33C: [482,11,559,40,501,'501 331c0 -101 -52 -215 -124 -274c-53 -42 -123 -68 -187 -68c-97 0 -150 57 -150 163c0 122 53 223 147 281c53 32 108 49 158 49c97 0 156 -57 156 -151zM412 315c0 84 -39 129 -110 129c-28 0 -55 -6 -70 -17c-58 -40 -103 -163 -103 -276c0 -79 40 -124 107 -124 c37 0 67 12 88 33c52 53 88 159 88 255'], + 0xE33D: [692,3,686,20,657,'657 541c0 -136 -119 -253 -260 -253c-32 0 -53 5 -94 23l-2 31c40 -14 62 -19 86 -19c96 0 175 88 175 196c0 93 -54 137 -165 137c-21 0 -38 -2 -77 -8c-4 -13 -7 -23 -8 -28c-6 -19 -10 -40 -10 -40l-89 -487c-4 -19 -5 -26 -5 -35c0 -21 11 -29 40 -30l70 -3l-3 -28 l-151 3l-144 -3l4 28l45 3c43 3 46 6 63 97l81 434c5 31 10 62 10 76c0 18 -12 26 -39 27l-60 2l4 28l181 -3c50 0 100 3 150 3c95 0 198 -50 198 -151'], + 0xE33E: [692,3,755,31,715,'715 541c0 -136 -129 -253 -280 -253c-34 0 -57 5 -100 23l-3 31c44 -14 67 -19 93 -19c103 0 187 88 187 196c0 93 -57 137 -177 137c-22 0 -41 -2 -83 -8c-3 -13 -7 -23 -8 -28c-6 -19 -10 -40 -10 -40l-96 -487c-4 -19 -5 -26 -5 -35c0 -21 12 -29 42 -30l76 -3 l-3 -28l-163 3l-154 -3l4 28l48 3c47 3 49 6 68 97l87 434c5 31 10 62 10 76c0 18 -13 26 -41 27l-64 2l3 28l195 -3c53 0 107 3 161 3c102 0 213 -50 213 -151'], + 0xE33F: [482,276,565,2,517,'517 371c0 -75 -37 -185 -82 -246c-47 -63 -172 -136 -233 -136c-12 0 -29 2 -57 11l-10 3l-45 -262c-35 -5 -57 -10 -80 -17l-8 6l9 37l53 241l64 343c2 10 4 30 4 38c0 14 -8 23 -18 23s-22 -5 -53 -23l-35 -21l-7 20l30 20c81 53 122 74 145 74c15 0 24 -11 24 -30 c0 -12 -2 -27 -5 -44l-26 -119c39 59 62 84 105 120c58 46 115 73 161 73c39 0 64 -44 64 -111zM438 356c0 46 -13 68 -41 68c-91 0 -207 -131 -231 -259l-20 -106c29 -16 56 -23 90 -23c44 0 79 15 101 44c58 76 101 195 101 276'], + 0xE340: [482,276,625,12,564,'564 371c0 -75 -40 -185 -88 -246c-50 -63 -185 -136 -250 -136c-13 0 -31 2 -61 11l-10 3l-50 -262c-37 -5 -60 -10 -85 -17l-8 6l9 37l57 241l68 343c3 10 5 30 5 38c0 14 -8 23 -20 23c-10 0 -23 -5 -56 -23l-37 -21l-9 20l33 20c87 53 131 74 156 74 c16 0 25 -11 25 -30c0 -12 -2 -27 -5 -44l-28 -119c42 59 66 84 113 120c62 46 123 73 172 73c42 0 69 -44 69 -111zM480 356c0 46 -14 68 -45 68c-97 0 -222 -131 -248 -259l-21 -106c31 -16 60 -23 96 -23c48 0 86 15 109 44c62 76 109 195 109 276'], + 0xE341: [706,201,868,68,825,'782 -61c-11 -97 -50 -140 -132 -140c-44 0 -63 6 -129 37l-158 76c-42 21 -73 29 -104 29c-58 0 -84 -36 -84 -113l-27 13c-1 8 -1 17 -1 17c-4 76 56 127 137 127c25 0 44 -4 72 -14l257 -96c28 -10 49 -15 67 -15c44 0 68 25 74 79h28zM825 425 c0 -158 -85 -305 -222 -383c-71 -41 -148 -60 -241 -60c-192 0 -294 101 -294 290c0 251 189 434 448 434c196 0 309 -103 309 -281zM729 409c0 110 -34 185 -105 223c-36 20 -90 32 -142 32c-83 0 -148 -23 -200 -71c-75 -69 -118 -186 -118 -316c0 -167 81 -253 238 -253 c85 0 156 26 210 76c74 70 117 183 117 309'], + 0xE342: [706,201,950,82,895,'848 -61c-11 -97 -53 -140 -141 -140c-47 0 -68 6 -138 37l-170 76c-46 21 -78 29 -112 29c-62 0 -90 -36 -90 -113l-28 13c-2 8 -2 17 -2 17c-4 76 60 127 147 127c27 0 48 -4 77 -14l276 -96c30 -10 53 -15 73 -15c46 0 72 25 79 79h29zM895 425 c0 -158 -91 -305 -239 -383c-76 -41 -159 -60 -258 -60c-206 0 -316 101 -316 290c0 251 204 434 481 434c210 0 332 -103 332 -281zM792 409c0 110 -37 185 -113 223c-39 20 -96 32 -152 32c-89 0 -160 -23 -215 -71c-80 -69 -127 -186 -127 -316c0 -167 88 -253 256 -253 c91 0 168 26 225 76c79 70 126 183 126 309'], + 0xE343: [482,276,525,36,481,'481 474c-11 -31 -18 -57 -30 -118l-93 -456c-10 -50 -17 -105 -21 -159c-26 -3 -60 -9 -94 -17l-10 14c14 13 26 33 30 57l83 414c-41 -66 -113 -136 -182 -184l-9 -6c-34 -23 -56 -30 -80 -30c-26 0 -39 30 -39 89c0 103 43 249 86 296c24 25 72 61 111 83 c31 17 57 25 87 25c31 0 63 -7 110 -24l36 22zM393 406c-53 21 -76 27 -106 27c-35 0 -67 -9 -80 -24c-45 -50 -92 -200 -92 -296c0 -33 8 -54 24 -54c31 0 98 47 154 111c41 46 65 90 77 141'], + 0xE344: [482,276,582,48,525,'525 474c-11 -31 -18 -57 -31 -118l-101 -456c-10 -50 -17 -105 -22 -159c-28 -3 -64 -9 -101 -17l-10 14c14 13 27 33 31 57l89 414c-43 -66 -120 -136 -195 -184l-9 -6c-37 -23 -60 -30 -86 -30c-28 0 -42 30 -42 89c0 103 46 249 93 296c25 25 77 61 119 83 c33 17 61 25 92 25c34 0 68 -7 118 -24l39 22zM431 406c-56 21 -81 27 -114 27c-37 0 -71 -9 -85 -24c-49 -50 -100 -200 -100 -296c0 -33 10 -54 26 -54c34 0 105 47 166 111c43 46 69 90 82 141'], + 0xE345: [692,3,747,20,707,'707 -3c-21 2 -42 3 -64 3c-27 0 -53 -1 -80 -3c-82 127 -116 175 -262 370l3 11h48c114 0 199 70 199 165c0 74 -51 113 -145 113c-30 0 -52 -2 -83 -8l-8 -28l-10 -40l-92 -487c-4 -17 -5 -26 -5 -35c0 -20 10 -28 40 -30l53 -3l-3 -28l-134 3l-144 -3l4 28l45 3 c43 3 46 6 63 97l82 434c5 30 10 62 10 76c0 18 -12 26 -39 27l-61 2l4 28l164 -3c55 0 109 3 164 3c90 0 191 -46 191 -132c0 -61 -34 -116 -97 -158c-40 -26 -71 -38 -131 -48l200 -275c31 -42 44 -50 88 -55v-27'], + 0xE346: [692,3,820,31,768,'768 -3c-23 2 -45 3 -68 3c-29 0 -58 -1 -87 -3c-88 127 -124 175 -281 370l4 11h51c122 0 213 70 213 165c0 74 -54 113 -155 113c-32 0 -55 -2 -89 -8l-8 -28l-11 -40l-99 -487c-4 -17 -5 -26 -5 -35c0 -20 10 -28 42 -30l57 -3l-3 -28l-144 3l-154 -3l4 28l48 3 c47 3 49 6 68 97l88 434c6 30 10 62 10 76c0 18 -13 26 -41 27l-65 2l3 28l177 -3c59 0 117 3 176 3c97 0 204 -46 204 -132c0 -61 -36 -116 -104 -158c-42 -26 -76 -38 -140 -48l215 -275c33 -42 47 -50 94 -55v-27'], + 0xE347: [482,9,444,38,429,'429 476c-9 -41 -15 -73 -18 -111h-15c-12 14 -23 19 -39 19c-24 0 -54 -21 -91 -65c-48 -57 -73 -110 -93 -193l-28 -120c-25 -4 -49 -8 -73 -15l-11 7c44 128 91 334 91 392c0 13 -8 22 -19 22c-10 0 -22 -5 -52 -23l-35 -21l-8 20l31 20c81 53 122 74 145 74 c16 0 25 -12 25 -32c0 -23 -8 -46 -13 -68l-29 -126c28 54 66 102 103 151c39 51 73 75 107 75c5 0 10 -1 22 -6'], + 0xE348: [482,9,495,50,469,'469 476c-9 -41 -15 -73 -18 -111h-17c-13 14 -24 19 -42 19c-26 0 -57 -21 -97 -65c-52 -57 -78 -110 -100 -193l-30 -120c-27 -4 -53 -8 -78 -15l-12 7c47 128 97 334 97 392c0 13 -8 22 -20 22c-10 0 -23 -5 -56 -23l-37 -21l-9 20l33 20c87 53 131 74 156 74 c17 0 27 -12 27 -32c0 -23 -8 -46 -14 -68l-31 -126c29 54 70 102 110 151c42 51 79 75 115 75c6 0 10 -1 23 -6'], + 0xE349: [706,18,626,56,562,'562 672c-16 -43 -23 -81 -28 -135h-32v76c-33 32 -69 45 -122 45c-101 0 -174 -63 -174 -150c0 -66 33 -103 105 -117l71 -14c110 -22 157 -64 157 -143c0 -136 -145 -252 -314 -252c-58 0 -115 13 -169 38c12 52 19 97 26 152h33v-99c48 -31 89 -43 148 -43 c112 0 190 65 190 161c0 58 -29 92 -89 105l-103 23c-92 20 -133 67 -133 152c0 59 23 109 68 151c59 53 141 84 222 84c52 0 93 -10 144 -34'], + 0xE34A: [706,18,691,69,612,'612 672c-16 -43 -25 -81 -29 -135h-35v76c-35 32 -74 45 -131 45c-108 0 -186 -63 -186 -150c0 -66 35 -103 112 -117l76 -14c118 -22 168 -64 168 -143c0 -136 -155 -252 -337 -252c-62 0 -122 13 -181 38c13 52 21 97 28 152h35v-99c52 -31 96 -43 159 -43 c121 0 204 65 204 161c0 58 -30 92 -95 105l-111 23c-98 20 -143 67 -143 152c0 59 25 109 74 151c63 53 151 84 238 84c56 0 100 -10 154 -34'], + 0xE34B: [482,11,444,20,386,'386 455c-12 -51 -16 -78 -21 -113h-25v55c-17 27 -59 45 -103 45c-64 0 -111 -41 -111 -94c0 -41 20 -58 86 -69l47 -8c81 -14 115 -43 115 -97c0 -50 -23 -87 -78 -127c-56 -40 -106 -58 -160 -58c-38 0 -75 8 -116 27c12 46 18 81 24 132h27v-84 c31 -24 63 -35 102 -35c78 0 128 43 128 109c0 40 -17 57 -65 65l-69 12c-72 13 -106 45 -106 101c0 36 12 61 41 88c52 49 118 78 175 78c36 0 67 -8 109 -27'], + 0xE34C: [482,11,495,31,424,'424 455c-13 -51 -18 -78 -23 -113h-26v55c-19 27 -64 45 -112 45c-68 0 -119 -41 -119 -94c0 -41 22 -58 92 -69l51 -8c88 -14 124 -43 124 -97c0 -50 -25 -87 -84 -127c-60 -40 -114 -58 -171 -58c-41 0 -81 8 -125 27c12 46 19 81 25 132h30v-84 c32 -24 67 -35 109 -35c84 0 137 43 137 109c0 40 -18 57 -70 65l-74 12c-77 13 -113 45 -113 101c0 36 13 61 43 88c56 49 128 78 189 78c38 0 71 -8 117 -27'], + 0xE34D: [692,3,686,68,702,'702 692l-29 -164h-31l5 64c1 10 -2 29 -5 37c-3 12 -42 17 -127 17h-80l-102 -553c-5 -21 -5 -25 -5 -35c0 -21 11 -29 40 -30l64 -3l-3 -28l-145 3l-155 -3l4 28l56 3c43 2 47 6 63 97l94 521h-122c-41 0 -82 -6 -89 -13c-6 -7 -14 -23 -19 -45l-17 -60h-31l19 164 l308 -3'], + 0xE34E: [692,3,755,82,763,'763 692l-32 -164h-32l4 64c1 10 -1 29 -4 37c-4 12 -46 17 -137 17h-86l-110 -553c-4 -21 -4 -25 -4 -35c0 -21 11 -29 42 -30l69 -3l-4 -28l-155 3l-166 -3l4 28l60 3c47 2 50 6 68 97l100 521h-131c-43 0 -87 -6 -94 -13s-16 -23 -22 -45l-17 -60h-34l21 164l330 -3'], + 0xE34F: [646,9,383,55,348,'348 440l-12 -50h-117l-14 -62c-34 -148 -47 -226 -47 -252c0 -12 6 -20 14 -20c13 0 34 9 67 30l49 31l11 -18c-21 -15 -14 -11 -34 -25c-86 -63 -123 -83 -161 -83c-21 0 -33 15 -33 40c0 26 9 51 14 76l61 283h-91l2 13c19 5 48 16 96 37l27 170c34 12 63 24 85 36 l12 -15c-20 -54 -32 -103 -49 -197c41 0 78 2 120 6'], + 0xE350: [646,9,430,68,383,'383 440l-13 -50h-125l-16 -62c-36 -148 -50 -226 -50 -252c0 -12 6 -20 15 -20c14 0 37 9 72 30l52 31l12 -18c-22 -15 -15 -11 -36 -25c-93 -63 -132 -83 -173 -83c-23 0 -35 15 -35 40c0 26 9 51 15 76l65 283h-98l2 13c21 5 52 16 103 37l30 170c36 12 67 24 91 36 l13 -15c-21 -54 -34 -103 -53 -197c44 0 84 2 129 6'], + 0xE351: [692,19,868,106,880,'880 692l-3 -28l-40 -3c-41 -3 -49 -10 -55 -48l-93 -507c-6 -38 -6 -40 -6 -56c0 -13 9 -19 34 -21l66 -4l-6 -28c-30 2 -61 3 -92 3c-33 0 -65 -1 -97 -3l-6 5c14 55 21 81 30 127c-57 -60 -91 -84 -156 -114c-53 -24 -96 -34 -145 -34c-122 0 -195 61 -195 164 c0 16 2 39 6 61l70 375c4 23 8 48 8 58c0 17 -9 22 -37 23l-57 2l3 28c33 -2 66 -3 98 -3c33 0 65 1 97 3l-96 -477c-6 -31 -7 -42 -7 -60c0 -72 58 -116 151 -116c95 0 181 45 264 138l77 445c5 27 -4 39 -37 40l-52 2l3 28l150 -3'], + 0xE352: [692,19,950,123,954,'954 692l-4 -28l-42 -3c-44 -3 -53 -10 -60 -48l-99 -507c-7 -38 -7 -40 -7 -56c0 -13 10 -19 37 -21l71 -4l-6 -28c-33 2 -66 3 -100 3c-35 0 -69 -1 -104 -3l-6 5c15 55 22 81 32 127c-61 -60 -97 -84 -167 -114c-57 -24 -103 -34 -156 -34c-131 0 -210 61 -210 164 c0 16 3 39 8 61l74 375c5 23 9 48 9 58c0 17 -10 22 -40 23l-61 2l3 28c36 -2 71 -3 106 -3s69 1 104 3l-103 -477c-7 -31 -8 -42 -8 -60c0 -72 62 -116 162 -116c102 0 195 45 284 138l83 445c4 27 -5 39 -40 40l-56 2l3 28l160 -3'], + 0xE353: [482,11,626,45,568,'568 85c-106 -72 -146 -96 -174 -96c-21 0 -33 17 -33 42c0 16 4 41 12 66l40 142c-91 -138 -223 -250 -292 -250c-22 0 -38 18 -38 40c0 16 2 38 4 48l69 297c1 5 2 13 2 18c0 11 -7 20 -18 20c-10 0 -21 -4 -53 -23l-34 -21l-8 20l30 20c82 54 122 74 145 74 c16 0 24 -12 24 -31c0 -13 -2 -27 -5 -43l-62 -271c-6 -26 -8 -37 -8 -52c0 -17 4 -26 14 -26c45 0 132 74 197 166c31 46 57 113 74 189l11 51l74 17l7 -9l-91 -357c-4 -12 -7 -27 -7 -40c0 -10 6 -17 14 -17c13 0 40 11 67 27l28 17'], + 0xE354: [482,11,691,57,619,'619 85c-113 -72 -157 -96 -187 -96c-22 0 -35 17 -35 42c0 16 4 41 13 66l43 142c-98 -138 -240 -250 -314 -250c-23 0 -41 18 -41 40c0 16 3 38 5 48l74 297c1 5 2 13 2 18c0 11 -8 20 -20 20c-10 0 -22 -4 -56 -23l-37 -21l-9 20l33 20c88 54 131 74 156 74 c16 0 26 -12 26 -31c0 -13 -3 -27 -6 -43l-67 -271c-6 -26 -8 -37 -8 -52c0 -17 4 -26 15 -26c48 0 142 74 211 166c34 46 62 113 79 189l12 51l79 17l9 -9l-99 -357c-3 -12 -7 -27 -7 -40c0 -10 6 -17 16 -17c14 0 42 11 71 27l30 17'], + 0xE355: [692,8,807,92,832,'832 664l-20 -2c-31 -3 -40 -11 -67 -51l-412 -619h-54l-96 622c-5 37 -16 44 -64 48l-27 2v28l135 -3l135 3v-28l-46 -2c-30 -1 -50 -7 -45 -38l77 -528l317 492c13 20 18 31 18 42c0 19 -21 29 -63 32l-28 2v28l135 -3c35 0 70 1 105 3v-28'], + 0xE356: [692,8,885,108,902,'902 664l-21 -2c-34 -3 -43 -11 -72 -51l-443 -619h-57l-103 622c-6 37 -18 44 -69 48l-29 2v28l145 -3l145 3v-28l-49 -2c-33 -1 -54 -7 -49 -38l83 -528l340 492c14 20 19 31 19 42c0 19 -22 29 -67 32l-30 2v28l145 -3l112 3v-28'], + 0xE357: [482,11,565,33,530,'530 384c0 -40 -19 -107 -43 -157c-33 -69 -86 -136 -137 -179c-50 -41 -91 -59 -137 -59c-70 0 -120 55 -120 132c0 100 46 183 167 303c-29 -3 -46 -4 -69 -4c-20 0 -40 2 -60 2c-26 0 -48 -11 -56 -28l-18 -42h-24c14 55 26 91 41 118c12 5 22 8 35 7 c45 -3 90 -7 134 -7c31 0 45 3 67 12l11 -18c-107 -122 -150 -213 -150 -318c0 -65 34 -107 88 -107c95 0 201 163 201 311c0 40 -17 63 -47 63c-10 0 -19 -3 -29 -9l-12 19l54 47c9 8 22 12 36 12c40 0 68 -41 68 -98'], + 0xE358: [482,11,625,45,578,'578 384c0 -40 -20 -107 -46 -157c-36 -69 -92 -136 -147 -179c-54 -41 -98 -59 -147 -59c-75 0 -129 55 -129 132c0 100 49 183 179 303c-30 -3 -49 -4 -74 -4c-21 0 -43 2 -64 2c-28 0 -52 -11 -60 -28l-20 -42h-25c15 55 28 91 44 118c13 5 23 8 37 7 c48 -3 96 -7 144 -7c33 0 48 3 72 12l11 -18c-114 -122 -160 -213 -160 -318c0 -65 36 -107 94 -107c103 0 216 163 216 311c0 40 -19 63 -50 63c-11 0 -21 -3 -32 -9l-13 19l59 47c9 8 23 12 39 12c42 0 72 -41 72 -98'], + 0xE359: [700,8,1049,87,1078,'1078 664l-22 -2c-24 -2 -40 -14 -46 -31l-187 -507c-14 -39 -22 -66 -34 -106l-7 -26h-56c-14 61 -26 110 -42 162l-122 392l-245 -444c-19 -36 -39 -75 -54 -110h-55c-1 52 -3 100 -8 166l-35 430c-5 57 -13 69 -58 74l-20 2v28l121 -3l132 3v-28l-40 -2 c-35 -2 -51 -16 -49 -46l34 -484l244 456l57 112h19l172 -572l161 462c6 18 9 36 9 49c0 14 -13 22 -44 23l-43 2l6 28c35 -2 70 -3 106 -3c35 0 71 1 106 3v-28'], + 0xE35A: [700,8,1144,103,1167,'1167 664l-24 -2c-26 -2 -43 -14 -50 -31l-200 -507c-15 -39 -24 -66 -36 -106l-9 -26h-59c-16 61 -28 110 -46 162l-131 392l-262 -444c-21 -36 -42 -75 -59 -110h-58c-1 52 -4 100 -9 166l-38 430c-5 57 -14 69 -62 74l-21 2v28l130 -3l142 3v-28l-44 -2 c-37 -2 -55 -16 -52 -46l36 -484l262 456l61 112h21l185 -572l172 462c7 18 10 36 10 49c0 14 -14 22 -48 23l-45 2l5 28l115 -3l114 3v-28'], + 0xE35B: [482,11,807,33,772,'772 384c0 -40 -19 -107 -43 -157c-67 -137 -182 -238 -270 -238c-49 0 -81 43 -81 106c0 23 4 48 13 92c-80 -143 -137 -198 -207 -198c-57 0 -96 55 -96 137c0 85 38 157 136 262c11 12 23 23 32 36c-27 -3 -41 -4 -64 -4c-21 0 -40 2 -61 2c-26 0 -48 -11 -56 -28 l-18 -42h-24c14 55 26 91 41 118c12 5 22 8 35 7c45 -3 90 -7 134 -7c31 0 45 3 67 12l11 -18c-108 -112 -153 -209 -153 -328c0 -58 25 -97 63 -97c33 0 74 41 118 116c32 54 47 94 60 156l32 149l80 22l8 -8l-57 -184c-13 -43 -23 -109 -23 -156c0 -55 23 -95 55 -95 c92 0 198 166 198 311c0 40 -17 63 -47 63c-10 0 -19 -3 -29 -9l-12 19l54 47c9 8 22 12 36 12c40 0 68 -41 68 -98'], + 0xE35C: [482,11,885,45,838,'838 384c0 -40 -20 -107 -46 -157c-72 -137 -195 -238 -290 -238c-53 0 -87 43 -87 106c0 23 4 48 14 92c-86 -143 -147 -198 -222 -198c-62 0 -103 55 -103 137c0 85 40 157 145 262c12 12 25 23 35 36c-29 -3 -44 -4 -69 -4c-22 0 -43 2 -65 2c-28 0 -52 -11 -60 -28 l-20 -42h-25c15 55 28 91 44 118c13 5 23 8 37 7c48 -3 96 -7 144 -7c33 0 48 3 72 12l11 -18c-115 -112 -163 -209 -163 -328c0 -58 27 -97 68 -97c35 0 79 41 126 116c34 54 50 94 64 156l34 149l87 22l8 -8l-61 -184c-14 -43 -24 -109 -24 -156c0 -55 24 -95 58 -95 c99 0 213 166 213 311c0 40 -19 63 -50 63c-11 0 -21 -3 -32 -9l-13 19l59 47c9 8 23 12 38 12c42 0 73 -41 73 -98'], + 0xE35D: [692,3,807,32,810,'810 664l-30 -2c-29 -2 -40 -8 -71 -42l-241 -252l186 -307c15 -24 30 -31 74 -34l28 -2v-28l-145 3l-148 -3v28c49 4 39 3 59 4c28 2 35 3 35 11c0 9 -5 22 -15 40l-130 226l-198 -231c-7 -8 -11 -17 -11 -25c0 -12 18 -18 60 -22l35 -3v-28l-130 3l-136 -3v28l30 3 c26 3 52 15 68 33l259 282l-159 270c-22 37 -35 45 -88 49l-28 2v28l145 -3l144 3v-28l-40 -2c-33 -2 -47 -8 -47 -20c0 -8 6 -20 16 -38l113 -199l175 196c20 22 25 31 25 42c0 12 -14 17 -49 19l-36 2v28l126 -3l124 3v-28'], + 0xE35E: [692,3,885,43,879,'879 664l-33 -2c-30 -2 -42 -8 -76 -42l-259 -252l200 -307c17 -24 32 -31 80 -34l29 -2v-28l-155 3l-158 -3v28c52 4 41 3 63 4c29 2 37 3 37 11c0 9 -6 22 -16 40l-139 226l-213 -231c-7 -8 -12 -17 -12 -25c0 -12 20 -18 64 -22l38 -3v-28l-139 3l-147 -3v28l33 3 c28 3 55 15 73 33l278 282l-171 270c-23 37 -37 45 -94 49l-31 2v28l156 -3l155 3v-28l-43 -2c-35 -2 -50 -8 -50 -20c0 -8 6 -20 16 -38l122 -199l188 196c21 22 27 31 27 42c0 12 -15 17 -53 19l-38 2v28l134 -3l134 3v-28'], + 0xE35F: [482,11,565,20,538,'538 472l-17 -85l-15 -4c-6 15 -19 23 -36 23c-34 0 -63 -23 -114 -88l-39 -49l20 -101c5 -29 17 -66 27 -85c11 -20 25 -30 42 -30s44 15 84 45l9 -19l-53 -44c-35 -29 -70 -46 -94 -46c-39 0 -63 39 -78 124l-12 69l-83 -117c-34 -47 -76 -76 -112 -76 c-13 0 -31 4 -47 12c1 7 2 10 4 22c7 32 9 45 9 65l22 3l12 -28c2 -5 14 -9 30 -9c31 0 68 32 115 99l43 62l-12 62c-18 98 -42 139 -78 139c-21 0 -43 -14 -75 -48l-19 10l63 83c10 13 34 21 62 21c65 0 94 -36 107 -135l7 -48l40 55c68 92 111 128 155 128 c10 0 19 -3 33 -10'], + 0xE360: [482,11,625,31,586,'586 472l-17 -85l-17 -4c-6 15 -20 23 -38 23c-37 0 -68 -23 -123 -88l-41 -49l21 -101c6 -29 19 -66 29 -85c12 -20 27 -30 45 -30s48 15 90 45l10 -19l-57 -44c-37 -29 -75 -46 -101 -46c-42 0 -67 39 -84 124l-13 69l-89 -117c-36 -47 -82 -76 -120 -76 c-14 0 -33 4 -50 12c1 7 2 10 4 22c7 32 10 45 10 65l23 3l13 -28c2 -5 15 -9 33 -9c32 0 72 32 122 99l47 62l-13 62c-20 98 -45 139 -84 139c-22 0 -45 -14 -81 -48l-19 10l67 83c11 13 37 21 67 21c69 0 101 -36 115 -135l7 -48l43 55c73 92 119 128 166 128 c11 0 21 -3 35 -10'], + 0xE361: [705,3,747,67,746,'746 697l-7 -71c-64 -10 -110 -40 -173 -114c-81 -93 -152 -211 -161 -266l-29 -168c-1 -5 -2 -15 -2 -21c0 -20 10 -27 39 -29l54 -3l-4 -28l-134 3l-151 -3l4 28l53 3c43 3 46 6 63 97l24 132c0 16 -42 153 -68 220c-45 112 -84 158 -135 158c-12 0 -24 -3 -49 -12 l-3 24l86 58c100 -1 152 -89 234 -395c31 74 72 143 140 226c80 101 139 142 219 161'], + 0xE362: [705,3,820,81,810,'810 697l-7 -71c-69 -10 -118 -40 -186 -114c-87 -93 -163 -211 -173 -266l-31 -168c-1 -5 -2 -15 -2 -21c0 -20 10 -27 42 -29l57 -3l-3 -28l-144 3l-163 -3l5 28l56 3c47 3 50 6 68 97l26 132c0 16 -45 153 -73 220c-48 112 -90 158 -145 158c-13 0 -26 -3 -53 -12 l-3 24l92 58c108 -1 164 -89 252 -395c33 74 77 143 150 226c86 101 149 142 235 161'], + 0xE363: [482,276,565,1,544,'544 473l-154 -440c-64 -185 -184 -309 -299 -309c-49 0 -90 35 -90 78c0 5 0 11 1 18l53 34l11 -4c-2 -9 -3 -17 -3 -22c0 -35 30 -62 68 -62c76 0 131 73 186 250l54 171c-82 -113 -174 -198 -214 -198c-27 0 -48 29 -47 71l1 40l19 243c1 16 5 67 -23 67 c-8 0 -22 -8 -27 -12l-55 -30l-12 18l90 56c52 33 67 40 81 40c19 0 27 -18 27 -63c0 -28 -3 -66 -5 -97l-16 -194c-1 -13 -3 -61 21 -61s77 44 115 95c36 49 74 122 87 169l38 132c24 2 49 8 81 19'], + 0xE364: [482,276,625,11,593,'593 473l-165 -440c-69 -185 -197 -309 -321 -309c-53 0 -96 35 -96 78c0 5 0 11 1 18l56 34l12 -4c-2 -9 -3 -17 -3 -22c0 -35 32 -62 73 -62c82 0 140 73 200 250l57 171c-87 -113 -186 -198 -229 -198c-29 0 -52 29 -50 71l1 40l20 243c1 16 6 67 -25 67 c-8 0 -23 -8 -29 -12l-59 -30l-12 18l95 56c57 33 73 40 88 40c20 0 28 -18 28 -63c0 -28 -2 -66 -4 -97l-18 -194c-1 -13 -3 -61 22 -61c26 0 83 44 124 95c39 49 80 122 94 169l41 132c26 2 52 8 86 19'], + 0xE365: [692,3,747,32,704,'704 672l-549 -633h306c48 0 90 4 139 13c11 26 6 8 35 90l7 22h29c-15 -69 -23 -126 -26 -167l-351 3l-262 -3v22l547 633h-196c-94 0 -135 -3 -196 -13l-7 -20c-13 -39 -20 -64 -23 -86h-28c9 73 12 112 12 158l128 1l259 -3l176 3v-20'], + 0xE366: [692,3,820,43,765,'765 672l-589 -633h328c52 0 96 4 149 13c12 26 7 8 37 90l9 22h30c-15 -69 -25 -126 -27 -167l-377 3l-282 -3v22l588 633h-211c-100 0 -145 -3 -210 -13l-7 -20c-15 -39 -22 -64 -25 -86h-30c9 73 12 112 12 158l138 1l278 -3l189 3v-20'], + 0xE367: [482,11,504,9,463,'463 473l-6 -32l-370 -382c40 15 69 21 104 21c21 0 58 -5 94 -12c24 -5 49 -11 73 -11c23 0 35 7 42 25l24 60h24c-12 -47 -21 -81 -33 -143c-31 -8 -41 -10 -54 -10c-29 0 -63 6 -129 20c-56 13 -87 17 -114 17c-38 0 -68 -9 -99 -32l-10 27l385 400 c-36 -17 -62 -23 -102 -23c-23 0 -51 3 -88 10c-22 4 -34 5 -49 5c-14 0 -24 -1 -43 -5l-32 -58h-23l35 122c26 7 48 10 66 10c30 0 59 -9 87 -16c53 -13 109 -21 146 -21c16 0 27 4 38 14l25 23'], + 0xE368: [482,11,559,19,507,'507 473l-7 -32l-397 -382c42 15 74 21 111 21c22 0 62 -5 101 -12c26 -5 52 -11 78 -11c25 0 38 7 46 25l26 60h25c-13 -47 -22 -81 -35 -143c-34 -8 -44 -10 -58 -10c-32 0 -68 6 -138 20c-61 13 -94 17 -123 17c-41 0 -73 -9 -107 -32l-10 27l413 400 c-39 -17 -67 -23 -109 -23c-25 0 -55 3 -95 10c-23 4 -36 5 -52 5s-26 -1 -46 -5l-35 -58h-25l38 122c28 7 51 10 71 10c32 0 63 -9 94 -16c56 -13 117 -21 156 -21c17 0 29 4 40 14l27 23'], + 0xE369: [471,3,333,34,298,'298 -3l-135 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70l-45 3v36l15 2c42 6 60 9 98 19c28 7 70 22 70 22l10 -6v-365c0 -54 5 -62 36 -64l35 -2v-37'], + 0xE36A: [471,266,333,3,227,'227 98c0 -154 -13 -222 -53 -281c-36 -53 -83 -83 -130 -83c-4 0 -24 1 -31 2l-10 35l4 6h23c54 0 75 53 75 185v357c0 59 -3 68 -26 70l-45 3v36l18 2c38 4 69 11 95 19l70 22l10 -6v-367'], + 0xE36B: [469,17,333,26,293,'293 84c-11 -8 -15 -10 -28 -20c-81 -58 -128 -81 -166 -81c-19 0 -32 17 -32 43c0 16 3 38 6 52l59 241c6 25 8 34 8 41c0 6 -4 10 -10 10c-9 0 -49 -20 -69 -34l-22 -16l-13 26l63 47c62 46 121 76 150 76c15 0 25 -15 25 -37c0 -19 -4 -48 -9 -67l-54 -196 c-13 -46 -20 -80 -20 -93c0 -6 5 -11 11 -11c11 0 27 8 62 30l27 17'], + 0xE36C: [469,271,333,-64,274,'274 429c0 -19 -3 -39 -9 -64l-67 -274c-34 -137 -65 -217 -110 -279c-40 -57 -78 -83 -118 -83c-10 0 -18 1 -34 5c5 28 8 47 10 79l14 3c14 -23 28 -33 44 -33c20 0 35 24 46 78l86 408c10 47 14 73 14 88c0 9 -3 13 -10 13c-9 0 -49 -20 -69 -34l-22 -16l-13 26l63 47 c62 46 121 76 149 76c16 0 26 -15 26 -40'], + 0xE36D: [700,3,847,17,824,'824 -3l-138 3l-152 -3v30l52 3c27 2 44 9 44 20c0 9 -4 22 -23 64l-50 115h-314l-30 -67c-23 -50 -38 -93 -38 -106c0 -16 14 -23 52 -26l40 -3v-30l-132 3l-118 -3v30l40 3c24 2 45 20 59 49l241 502c41 85 53 119 53 119h35l264 -568c38 -81 50 -100 78 -102l37 -3 v-30zM538 269l-138 298l-138 -298h276'], + 0xE36E: [700,3,928,27,894,'894 -3l-149 3l-162 -3v30l55 3c29 2 48 9 48 20c0 9 -5 22 -25 64l-54 115h-337l-32 -67c-25 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l43 -3v-30l-141 3l-128 -3v30l43 3c26 2 48 20 63 49l259 502c45 85 57 119 57 119h38l283 -568c41 -81 54 -100 84 -102l40 -3 v-30zM586 269l-147 298l-149 -298h296'], + 0xE36F: [700,3,831,-28,770,'770 27l-6 -30l-135 3l-149 -3l5 30l51 3c27 2 46 9 48 20c2 9 0 22 -10 64l-27 115h-308l-43 -67c-32 -50 -55 -93 -58 -106c-3 -16 10 -23 47 -26l39 -3l-6 -30l-129 3l-117 -3l6 30l40 3c24 2 48 20 67 49l333 502c57 85 75 119 75 119h34l149 -568 c22 -81 30 -100 58 -102zM535 269l-77 298l-193 -298h270'], + 0xE370: [700,3,910,-21,835,'835 27l-6 -30l-145 3l-160 -3l6 30l55 3c29 2 49 9 51 20c2 9 0 22 -11 64l-29 115h-330l-46 -67c-35 -50 -59 -93 -62 -106c-3 -16 10 -23 50 -26l41 -3l-6 -30l-138 3l-126 -3l7 30l43 3c25 2 51 20 72 49l357 502c61 85 80 119 80 119h37l160 -568 c24 -81 33 -100 62 -102zM584 269l-83 298l-207 -298h290'], + 0xE371: [686,3,835,17,816,'816 -3l-173 3l-165 -3v37l57 3c30 2 22 39 16 55l-49 114h-274l-46 -112c-9 -22 -7 -55 26 -57l55 -3v-37l-123 3l-123 -3v37l32 3c24 2 44 21 61 60l198 438l62 151h77l282 -605c15 -29 30 -40 60 -44l27 -3v-37zM477 262l-114 254l-109 -254h223'], + 0xE372: [686,3,915,27,885,'885 -3l-185 3l-178 -3v37l62 3c32 2 23 39 16 55l-52 114h-294l-49 -112c-10 -22 -8 -55 28 -57l58 -3v-37l-132 3l-132 -3v37l35 3c26 2 47 21 66 60l211 438l67 151h83l303 -605c15 -29 32 -40 65 -44l28 -3v-37zM521 262l-122 254l-117 -254h239'], + 0xE373: [686,3,819,-28,762,'762 34l-7 -37l-168 3l-163 -3l7 37l57 3c30 2 29 39 26 55l-26 114h-268l-67 -112c-13 -22 -18 -55 15 -57l53 -3l-7 -37l-120 3l-122 -3l7 37l33 3c24 2 47 21 71 60l278 438l90 151h76l160 -605c8 -29 21 -40 50 -44zM474 262l-62 254l-156 -254h218'], + 0xE374: [686,3,898,-21,828,'828 34l-8 -37l-181 3l-175 -3l8 37l61 3c32 2 31 39 28 55l-28 114h-288l-71 -112c-14 -22 -20 -55 16 -57l56 -3l-7 -37l-129 3l-131 -3l8 37l35 3c26 2 50 21 77 60l298 438l96 151h82l172 -605c9 -29 22 -40 54 -44zM518 262l-67 254l-167 -254h234'], + 0xE375: [692,3,714,49,649,'649 228c0 -70 -38 -138 -103 -180c-49 -33 -120 -51 -200 -51c-45 0 -91 3 -135 3l-119 -3v23l28 10c15 5 24 28 24 65v474c0 79 -4 86 -56 90l-39 3v30l172 -3l196 3c131 0 195 -48 195 -136c0 -52 -28 -95 -80 -128c-30 -19 -55 -28 -109 -38c84 -6 121 -15 163 -43 c41 -27 63 -68 63 -119zM536 208c0 107 -68 156 -215 156c-21 0 -31 0 -73 -2v-315c27 -6 52 -8 84 -8c129 0 204 63 204 169zM504 533c0 83 -51 119 -168 119c-35 0 -60 -2 -88 -8v-243c33 -2 48 -2 66 -2c124 0 190 47 190 134'], + 0xE376: [692,3,785,62,706,'706 228c0 -70 -41 -138 -110 -180c-53 -33 -129 -51 -216 -51c-48 0 -97 3 -145 3l-127 -3v23l30 10c17 5 26 28 26 65v474c0 79 -5 86 -60 90l-42 3v30l185 -3l209 3c142 0 210 -48 210 -136c0 -52 -29 -95 -86 -128c-32 -19 -59 -28 -117 -38c91 -6 130 -15 175 -43 c44 -27 68 -68 68 -119zM585 208c0 107 -74 156 -232 156l-78 -2v-315c29 -6 56 -8 90 -8c139 0 220 63 220 169zM550 533c0 83 -55 119 -180 119c-38 0 -65 -2 -95 -8v-243c36 -2 52 -2 71 -2c134 0 204 47 204 134'], + 0xE377: [692,3,700,46,666,'663 556c-10 -52 -45 -95 -103 -128c-33 -19 -60 -28 -114 -38c81 -6 116 -15 151 -43c36 -27 49 -68 39 -119c-13 -70 -64 -138 -135 -180c-54 -33 -127 -51 -206 -51c-44 0 -88 3 -132 3l-117 -3l4 23l30 10c16 5 29 28 36 65l91 474c15 79 12 86 -37 90l-38 3l6 30 l168 -3c64 0 128 3 192 3c129 0 182 -48 165 -136zM522 208c21 107 -37 156 -181 156c-21 0 -30 0 -72 -2l-61 -315c26 -6 50 -8 81 -8c127 0 213 63 233 169zM553 533c16 83 -28 119 -142 119c-34 0 -59 -2 -88 -8l-47 -243c33 -2 47 -2 65 -2c122 0 195 47 212 134'], + 0xE378: [692,3,770,59,724,'721 556c-11 -52 -48 -95 -110 -128c-36 -19 -65 -28 -123 -38c87 -6 124 -15 162 -43c38 -27 53 -68 42 -119c-14 -70 -68 -138 -145 -180c-58 -33 -136 -51 -221 -51c-47 0 -95 3 -142 3l-125 -3l4 23l32 10c17 5 31 28 39 65l98 474c16 79 13 86 -40 90l-41 3l6 30 l181 -3l206 3c138 0 195 -48 177 -136zM570 208c22 107 -40 156 -195 156l-77 -2l-65 -315c27 -6 53 -8 86 -8c137 0 229 63 251 169zM603 533c17 83 -30 119 -152 119c-37 0 -64 -2 -95 -8l-50 -243c35 -2 50 -2 69 -2c131 0 210 47 228 134'], + 0xE379: [681,3,738,44,667,'667 216c0 -129 -153 -219 -295 -219l-155 3l-137 -3v23l35 18c16 8 21 23 21 57v448c0 88 -3 94 -52 98l-40 3v37l183 -3l209 3c138 0 206 -44 206 -135c0 -38 -15 -74 -41 -96c-34 -29 -66 -43 -157 -73c87 -5 124 -14 163 -39c38 -25 60 -69 60 -122zM504 202 c0 102 -55 146 -181 146h-33v-292c19 -3 31 -4 47 -4c116 0 167 46 167 150zM481 524c0 74 -39 107 -128 107c-20 0 -37 -1 -63 -4v-227h33c110 0 158 37 158 124'], + 0xE37A: [681,3,811,56,726,'726 216c0 -129 -165 -219 -318 -219l-166 3l-147 -3v23l37 18c18 8 24 23 24 57v448c0 88 -4 94 -56 98l-44 3v37l197 -3l224 3c148 0 222 -44 222 -135c0 -38 -17 -74 -45 -96c-36 -29 -70 -43 -168 -73c93 -5 133 -14 175 -39c41 -25 65 -69 65 -122zM550 202 c0 102 -58 146 -194 146h-35v-292c20 -3 32 -4 50 -4c124 0 179 46 179 150zM525 524c0 74 -42 107 -136 107c-23 0 -40 -1 -68 -4v-227h35c118 0 169 37 169 124'], + 0xE37B: [681,3,724,34,693,'691 546c-7 -38 -29 -74 -59 -96c-39 -29 -73 -43 -168 -73c84 -5 119 -14 153 -39c32 -25 45 -69 35 -122c-25 -129 -193 -219 -332 -219l-151 3l-135 -3l5 23l37 18c18 8 26 23 33 57l86 448c17 88 15 94 -33 98l-39 3l7 37l179 -3l206 3c135 0 193 -44 176 -135z M489 202c20 102 -25 146 -149 146h-32l-56 -292c17 -3 29 -4 45 -4c113 0 172 46 192 150zM529 524c14 74 -18 107 -105 107c-20 0 -36 -1 -63 -4l-43 -227h32c108 0 162 37 179 124'], + 0xE37C: [681,3,796,46,754,'751 546c-8 -38 -31 -74 -64 -96c-41 -29 -77 -43 -180 -73c91 -5 128 -14 164 -39c35 -25 49 -69 38 -122c-26 -129 -207 -219 -356 -219l-162 3l-145 -3l5 23l40 18c19 8 28 23 35 57l92 448c18 88 16 94 -35 98l-41 3l7 37l192 -3l221 3c144 0 208 -44 189 -135z M534 202c21 102 -27 146 -160 146h-34l-61 -292c19 -3 32 -4 49 -4c121 0 185 46 206 150zM577 524c15 74 -20 107 -112 107c-22 0 -40 -1 -68 -4l-47 -227h35c116 0 174 37 192 124'], + 0xE37D: [700,3,735,21,712,'712 -3c-26 2 -51 3 -77 3c-28 0 -54 -1 -81 -3l-201 306l-220 -306c-18 2 -37 3 -55 3c-19 0 -39 -1 -57 -3v30l28 3c24 3 37 14 65 48l212 263l-139 213c-36 55 -75 88 -101 90l-49 3l-2 26l154 27c20 -10 37 -27 62 -65l139 -216l202 270h110v-30l-45 -3 c-16 -1 -30 -14 -74 -68l-168 -208l192 -280c36 -52 52 -68 72 -70l33 -3v-30'], + 0xE37E: [700,3,808,32,773,'773 -3c-28 2 -55 3 -83 3c-29 0 -57 -1 -86 -3l-215 306l-237 -306c-20 2 -40 3 -59 3c-20 0 -41 -1 -61 -3v30l30 3c26 3 40 14 69 48l228 263l-149 213c-39 55 -80 88 -108 90l-53 3l-2 26l165 27c22 -10 40 -27 67 -65l149 -216l217 270h118v-30l-48 -3 c-18 -1 -33 -14 -80 -68l-180 -208l206 -280c39 -52 55 -68 77 -70l35 -3v-30'], + 0xE37F: [700,3,721,-23,777,'777 689l-6 -30l-44 -3c-16 -1 -33 -14 -86 -68l-204 -208l134 -280c25 -52 37 -68 57 -70l32 -3l-6 -30c-26 2 -50 3 -76 3s-52 -1 -79 -3l-138 306l-274 -306c-18 2 -36 3 -54 3c-19 0 -38 -1 -56 -3l5 30l29 3c24 3 39 14 72 48l259 263l-96 213c-25 55 -56 88 -81 90 l-48 3l3 26l156 27c18 -10 31 -27 49 -65l95 -216l249 270h108'], + 0xE380: [700,3,792,-16,843,'843 689l-6 -30l-47 -3c-18 -1 -35 -14 -92 -68l-220 -208l144 -280c27 -52 40 -68 61 -70l34 -3l-6 -30c-27 2 -53 3 -81 3s-56 -1 -85 -3l-148 306l-295 -306c-19 2 -38 3 -58 3c-19 0 -40 -1 -60 -3l6 30l31 3c26 3 42 14 77 48l278 263l-103 213 c-26 55 -60 88 -87 90l-51 3l3 26l168 27c19 -10 33 -27 52 -65l102 -216l268 270h115'], + 0xE381: [695,3,696,1,691,'691 -3c-35 2 -68 3 -103 3s-70 -1 -105 -3l-162 266l-153 -201c-4 -6 -24 -36 -39 -62h-128v34l34 3c13 1 28 9 36 18l217 261l-103 166c-28 46 -69 99 -93 123c-14 13 -28 18 -45 18c-10 0 -17 -1 -35 -6l-5 41l199 37c32 -22 49 -42 80 -91l103 -169l180 243h121v-34 l-30 -3c-22 -2 -30 -8 -53 -36l-185 -224c206 -327 173 -274 174 -278c31 -49 44 -63 68 -66l27 -3v-37'], + 0xE382: [695,3,765,11,751,'751 -3l-111 3l-112 -3l-175 266l-163 -201c-5 -6 -26 -36 -42 -62h-137v34l36 3c14 1 30 9 39 18l232 261l-110 166c-30 46 -75 99 -100 123c-15 13 -30 18 -48 18c-11 0 -19 -1 -38 -6l-6 41l215 37c34 -22 52 -42 85 -91l111 -169l193 243h130v-34l-33 -3 c-23 -2 -31 -8 -56 -36l-199 -224c221 -327 186 -274 187 -278c33 -49 47 -63 73 -66l29 -3v-37'], + 0xE383: [695,3,683,-42,763,'763 678l-6 -34l-31 -3c-22 -2 -30 -8 -58 -36l-225 -224c139 -327 118 -274 118 -278c20 -49 31 -63 53 -66l27 -3l-8 -37c-33 2 -66 3 -100 3c-35 0 -69 -1 -104 -3l-108 266l-188 -201c-5 -6 -30 -36 -50 -62h-125l6 34l34 3c13 1 30 9 39 18l263 261l-69 166 c-19 46 -49 99 -68 123c-12 13 -23 18 -41 18c-9 0 -17 -1 -35 -6l3 41l202 37c27 -22 40 -42 61 -91l69 -169l223 243h118'], + 0xE384: [695,3,751,-36,829,'829 678l-7 -34l-33 -3c-24 -2 -33 -8 -63 -36l-241 -224c149 -327 126 -274 126 -278c22 -49 33 -63 58 -66l28 -3l-8 -37c-36 2 -71 3 -108 3l-111 -3l-116 266l-202 -201c-6 -6 -32 -36 -54 -62h-134l7 34l36 3c14 1 32 9 42 18l282 261l-74 166 c-20 46 -53 99 -73 123c-12 13 -25 18 -43 18c-11 0 -19 -1 -38 -6l3 41l217 37c29 -22 43 -42 65 -91l74 -169l239 243h128'], + 0xE385: [700,3,706,17,683,'683 32l-68 -35l-321 3l-275 -3l-2 25l315 658l41 20l310 -659v-9zM558 60c0 12 -12 34 -22 55l-208 452l-187 -405c-14 -30 -38 -82 -38 -95c0 -16 13 -23 49 -26h362c27 2 44 8 44 19'], + 0xE386: [700,3,776,27,742,'742 32l-73 -35l-344 3l-296 -3l-2 25l338 658l45 20l332 -659v-9zM609 60c0 12 -13 34 -24 55l-223 452l-202 -405c-15 -30 -41 -82 -41 -95c0 -16 14 -23 53 -26h389c29 2 48 8 48 19'], + 0xE387: [700,3,691,-26,633,'633 41l-1 -9l-73 -35l-314 3l-271 -3l3 25l435 658l45 20zM515 60c3 12 -5 34 -11 55l-117 452l-261 -405c-20 -30 -53 -82 -56 -95c-3 -16 8 -23 43 -26h355c27 2 45 8 47 19'], + 0xE388: [700,3,761,-18,689,'689 41l-2 -9l-78 -35l-337 3l-290 -3l3 25l467 658l47 20zM562 60c3 12 -5 34 -11 55l-126 452l-281 -405c-21 -30 -57 -82 -60 -95c-3 -16 9 -23 47 -26h380c29 2 49 8 51 19'], + 0xE389: [686,3,742,37,704,'704 39l-102 -42l-343 2c-139 0 -187 0 -218 -2l-4 35c8 13 13 26 31 65l197 438l58 131l82 20l298 -633zM509 86c0 8 -2 18 -5 29l-183 401l-112 -252c-24 -56 -41 -91 -64 -148c-3 -8 -5 -18 -5 -25c0 -16 10 -29 26 -32h325c11 3 18 13 18 27'], + 0xE38A: [686,3,815,49,765,'765 39l-110 -42l-368 2l-234 -2l-4 35c8 13 14 26 33 65l212 438l62 131l88 20l320 -633zM556 86c0 8 -2 18 -6 29l-197 401l-119 -252c-26 -56 -44 -91 -69 -148c-3 -8 -6 -18 -6 -25c0 -16 11 -29 28 -32h349c12 3 20 13 20 27'], + 0xE38B: [686,3,727,-4,656,'656 53l-2 -14l-108 -42l-336 2c-136 0 -183 0 -214 -2l3 35c10 13 18 26 43 65l277 438l82 131l84 20zM472 115l-102 401l-157 -252c-35 -56 -58 -91 -92 -148c-5 -8 -9 -18 -10 -25c-3 -16 4 -29 19 -32h319c11 3 20 13 23 27c2 8 1 18 0 29'], + 0xE38C: [686,3,799,5,713,'713 53l-1 -14l-117 -42l-361 2l-229 -2l3 35c11 13 20 26 46 65l298 438l88 131l90 20zM516 115l-110 401l-169 -252c-36 -56 -62 -91 -98 -148c-5 -8 -9 -18 -11 -25c-3 -16 5 -29 21 -32h342c12 3 22 13 25 27c2 8 2 18 0 29'], + 0xE38D: [692,3,705,49,649,'649 164c-11 -52 -18 -106 -18 -164l-182 -3l-253 3l-134 -3v30l40 3c51 4 55 11 55 90v449c0 79 -5 87 -55 90l-53 3v30l194 -3l253 3l135 -3c-12 -44 -17 -92 -17 -152h-38v65c0 23 -4 27 -30 34c-35 9 -96 14 -158 14c-75 0 -94 -1 -127 -8v-267c48 -3 120 -4 174 -4 c47 0 68 4 76 38c6 19 6 52 6 52h33c-3 -39 -4 -77 -4 -116c0 -37 1 -74 4 -111h-33s-1 37 -6 59c-7 33 -28 37 -76 37l-174 -3v-280c31 -6 51 -8 108 -8c98 0 177 5 200 12c15 5 30 36 36 79l6 34h38'], + 0xE38E: [692,3,775,62,706,'706 164c-12 -52 -19 -106 -19 -164l-195 -3l-272 3l-144 -3v30l42 3c55 4 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l208 -3l272 3l145 -3c-13 -44 -19 -92 -19 -152h-41v65c0 23 -3 27 -31 34c-38 9 -103 14 -170 14c-81 0 -101 -1 -137 -8v-267 c52 -3 129 -4 187 -4c51 0 73 4 82 38c6 19 6 52 6 52h35c-2 -39 -3 -77 -3 -116c0 -37 1 -74 3 -111h-35s-1 37 -6 59c-8 33 -30 37 -82 37l-187 -3v-280c34 -6 55 -8 116 -8c105 0 191 5 215 12c17 5 32 36 39 79l6 34h41'], + 0xE38F: [692,3,690,17,708,'708 689c-21 -44 -35 -92 -47 -152h-37l12 65c5 23 2 27 -22 34c-32 9 -91 14 -152 14c-74 0 -92 -1 -127 -8l-51 -267c47 -3 117 -4 170 -4c46 0 67 4 82 38c9 19 16 52 16 52h32l-26 -116c-7 -37 -13 -74 -18 -111h-32s6 37 6 59c-1 33 -21 37 -68 37l-171 -3l-54 -280 c30 -6 49 -8 104 -8c96 0 175 5 199 12c16 5 36 36 51 79l11 34h38c-21 -52 -38 -106 -49 -164l-179 -3l-247 3l-132 -3l6 30l39 3c51 4 56 11 72 90l86 449c15 79 11 87 -37 90l-51 3l6 30l189 -3l249 3'], + 0xE390: [692,3,760,28,769,'769 689c-22 -44 -37 -92 -50 -152h-40l13 65c5 23 3 27 -23 34c-35 9 -98 14 -164 14c-79 0 -99 -1 -136 -8l-55 -267c50 -3 126 -4 183 -4c49 0 72 4 88 38c10 19 16 52 16 52h35c-10 -39 -19 -77 -28 -116c-7 -37 -14 -74 -19 -111h-34s6 37 6 59c-1 33 -22 37 -73 37 l-184 -3l-57 -280c32 -6 52 -8 111 -8c104 0 188 5 214 12c17 5 38 36 54 79l13 34h40c-22 -52 -40 -106 -52 -164l-192 -3l-266 3l-141 -3l6 30l42 3c54 4 60 11 77 90l92 449c17 79 13 87 -40 90l-54 3l6 30l204 -3l266 3'], + 0xE391: [681,3,681,44,630,'630 166l-12 -158l-5 -8c-62 -3 -93 -3 -153 -3l-246 3l-134 -3v23l35 18c16 8 21 23 21 57v448c0 88 -3 94 -52 98l-40 3v37l207 -3l257 3c40 0 63 -1 104 -3l6 -7l-15 -142h-39l-9 75c-1 11 -47 19 -107 19l-158 -3v-240c22 -2 37 -2 73 -2h72c46 0 60 5 62 21l7 57h43 c-2 -36 -3 -71 -3 -107s1 -72 3 -108h-43l-7 50c-3 26 -20 37 -62 37h-72c-24 0 -42 -1 -73 -3v-267l163 -3c50 0 107 9 110 17l25 94h42'], + 0xE392: [681,3,749,56,686,'686 166l-13 -158l-6 -8l-164 -3l-264 3l-144 -3v23l37 18c18 8 24 23 24 57v448c0 88 -4 94 -56 98l-44 3v37l223 -3l276 3l111 -3l7 -7l-17 -142h-42l-9 75c-1 11 -50 19 -115 19l-169 -3v-240c23 -2 39 -2 78 -2h77c49 0 65 5 67 21l7 57h47c-3 -36 -4 -71 -4 -107 s1 -72 4 -108h-47l-7 50c-4 26 -22 37 -67 37h-77c-26 0 -46 -1 -78 -3v-267l174 -3c54 0 116 9 118 17l27 94h46'], + 0xE393: [681,3,667,34,691,'691 671l-42 -142h-38l6 75c1 11 -43 19 -101 19l-156 -3l-46 -240c21 -2 36 -2 71 -2h71c45 0 59 5 65 21l17 57h43c-9 -36 -17 -71 -24 -107s-13 -72 -18 -108h-42l3 50c2 26 -13 37 -54 37h-70c-24 0 -42 -1 -73 -3l-51 -267l159 -3c49 0 107 9 111 17l42 94h42 l-42 -158l-7 -8c-61 -3 -91 -3 -150 -3l-241 3l-132 -3l5 23l37 18c18 8 26 23 33 57l86 448c17 88 15 94 -33 98l-39 3l7 37l203 -3l252 3c40 0 62 -1 101 -3'], + 0xE394: [681,3,735,46,751,'751 671l-45 -142h-41l6 75c1 11 -45 19 -108 19l-167 -3l-50 -240c23 -2 39 -2 77 -2h75c49 0 64 5 70 21l19 57h46c-10 -36 -19 -71 -26 -107s-14 -72 -19 -108h-46l4 50c2 26 -14 37 -58 37h-76c-25 0 -45 -1 -77 -3l-55 -267l170 -3c53 0 115 9 119 17l46 94h45 l-45 -158l-8 -8c-66 -3 -98 -3 -161 -3l-258 3l-142 -3l5 23l40 18c19 8 28 23 35 57l92 448c18 88 16 94 -35 98l-41 3l7 37l217 -3l272 3c42 0 66 -1 108 -3'], + 0xE395: [692,3,931,36,895,'895 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v223c-30 2 -47 2 -91 2h-255c-44 0 -61 0 -90 -2v-223c0 -79 5 -87 55 -90l53 -3v-30l-161 3l-159 -3v30l52 3c51 3 56 11 56 90v449c0 79 -5 87 -56 90l-52 3v30l159 -3l161 3v-30l-53 -3c-50 -3 -55 -11 -55 -90v-178 l90 -2h255l91 2v178c0 79 -6 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30'], + 0xE396: [692,3,1018,48,970,'970 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v223c-32 2 -50 2 -97 2h-274c-47 0 -65 0 -97 -2v-223c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-178 l97 -2h274l97 2v178c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-449c0 -79 6 -87 60 -90l56 -3v-30'], + 0xE397: [692,3,913,-9,967,'967 692l-6 -30l-52 -3c-50 -3 -56 -11 -72 -90l-86 -449c-15 -79 -11 -87 37 -90l51 -3l-6 -30l-156 3l-157 -3l6 30l52 3c50 3 56 11 72 90l42 223c-28 2 -45 2 -88 2h-250c-42 0 -60 0 -89 -2l-43 -223c-15 -79 -11 -87 38 -90l50 -3l-6 -30l-156 3l-157 -3l6 30l52 3 c50 3 57 11 72 90l86 449c15 79 12 87 -37 90l-51 3l6 30l155 -3l158 3l-6 -30l-52 -3c-49 -3 -56 -11 -71 -90l-35 -178c22 -1 45 -2 89 -2h250l89 2l34 178c15 79 11 87 -37 90l-51 3l6 30l155 -3'], + 0xE398: [692,3,998,0,1047,'1047 692l-6 -30l-56 -3c-53 -3 -61 -11 -77 -90l-93 -449c-16 -79 -12 -87 40 -90l55 -3l-6 -30l-168 3l-168 -3l6 30l56 3c53 3 60 11 77 90l46 223c-31 2 -49 2 -95 2h-268c-46 0 -65 0 -96 -2l-46 -223c-16 -79 -12 -87 40 -90l54 -3l-6 -30l-168 3l-168 -3l6 30 l56 3c53 3 61 11 77 90l93 449c16 79 12 87 -40 90l-55 3l6 30l167 -3l169 3l-6 -30l-55 -3c-54 -3 -61 -11 -77 -90l-37 -178l95 -2h268l95 2l37 178c16 79 12 87 -40 90l-54 3l6 30l167 -3'], + 0xE399: [681,3,916,44,872,'872 -3l-170 3l-169 -3v40l41 3c51 4 52 6 52 95v190l-88 2h-160l-88 -2v-190c0 -89 1 -91 52 -95l41 -3v-40l-170 3l-169 -3v40l40 3c51 4 52 6 52 95v408c0 89 -1 91 -52 95l-40 3v40l169 -3l170 3v-40l-41 -3c-51 -4 -52 -6 -52 -95v-158c25 -2 47 -2 88 -2h160 c41 0 62 0 88 2v158c0 89 -1 91 -52 95l-41 3v40l169 -3l170 3v-40l-40 -3c-51 -4 -52 -6 -52 -95v-408c0 -89 1 -91 52 -95l40 -3v-40'], + 0xE39A: [681,3,1002,56,945,'945 -3l-182 3l-181 -3v40l43 3c55 4 56 6 56 95v190l-95 2h-171l-94 -2v-190c0 -89 1 -91 56 -95l43 -3v-40l-182 3l-182 -3v40l44 3c55 4 56 6 56 95v408c0 89 -1 91 -56 95l-44 3v40l182 -3l182 3v-40l-43 -3c-55 -4 -56 -6 -56 -95v-158c27 -2 50 -2 94 -2h171 c45 0 67 0 95 2v158c0 89 -1 91 -56 95l-43 3v40l181 -3l182 3v-40l-43 -3c-55 -4 -56 -6 -56 -95v-408c0 -89 1 -91 56 -95l43 -3v-40'], + 0xE39B: [681,3,899,-1,942,'942 681l-7 -40l-41 -3c-51 -4 -52 -6 -69 -95l-79 -408c-17 -89 -16 -91 34 -95l38 -3l-7 -40l-166 3l-166 -3l7 40l40 3c51 4 53 6 70 95l36 190l-86 2h-156l-87 -2l-36 -190c-17 -89 -17 -91 33 -95l39 -3l-8 -40l-166 3l-166 -3l8 40l40 3c51 4 52 6 69 95l79 408 c17 89 16 91 -33 95l-39 3l7 40l165 -3l168 3l-8 -40l-40 -3c-51 -4 -53 -6 -70 -95l-30 -158c24 -2 45 -2 86 -2h156c41 0 61 0 87 2l30 158c17 89 17 91 -33 95l-39 3l8 40l165 -3'], + 0xE39C: [681,3,983,8,1021,'1021 681l-9 -40l-43 -3c-54 -4 -56 -6 -74 -95l-84 -408c-19 -89 -18 -91 35 -95l42 -3l-8 -40l-179 3l-178 -3l8 40l43 3c55 4 57 6 75 95l39 190l-92 2h-168l-93 -2l-39 -190c-19 -89 -18 -91 35 -95l42 -3l-8 -40l-179 3l-178 -3l8 40l43 3c55 4 57 6 75 95l84 408 c19 89 18 91 -35 95l-42 3l8 40l177 -3l180 3l-8 -40l-43 -3c-55 -4 -57 -6 -75 -95l-33 -158c26 -2 49 -2 93 -2h167c44 0 66 0 93 2l33 158c18 89 18 91 -35 95l-42 3l8 40l177 -3'], + 0xE39D: [692,3,619,36,596,'596 689c-12 -44 -17 -92 -17 -152h-38v65c0 24 -5 28 -32 34c-32 8 -95 14 -137 14c-73 0 -90 -1 -124 -8v-522c0 -79 5 -87 55 -90l53 -3v-30l-161 3l-159 -3v30l52 3c51 3 56 11 56 90v449c0 79 -5 87 -56 90l-52 3v30l26 -1l167 -2l118 2l116 1'], + 0xE39E: [692,3,683,48,649,'649 689c-12 -44 -18 -92 -18 -152h-41v65c0 24 -5 28 -34 34c-35 8 -102 14 -148 14c-78 0 -96 -1 -133 -8v-522c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l28 -1l179 -2l127 2l125 1'], + 0xE39F: [692,3,608,-9,674,'674 689c-21 -44 -35 -92 -47 -152h-37l12 65c5 24 1 28 -24 34c-31 8 -90 14 -132 14c-72 0 -88 -1 -123 -8l-101 -522c-15 -79 -11 -87 38 -90l50 -3l-6 -30l-156 3l-157 -3l6 30l52 3c50 3 57 11 72 90l86 449c15 79 12 87 -37 90l-51 3l6 30l25 -1l164 -2l115 2 l115 1'], + 0xE3A0: [692,3,671,0,732,'732 689c-21 -44 -37 -92 -49 -152h-41l14 65c5 24 1 28 -26 34c-33 8 -97 14 -142 14c-77 0 -94 -1 -132 -8l-108 -522c-16 -79 -12 -87 40 -90l54 -3l-6 -30l-168 3l-168 -3l6 30l56 3c53 3 61 11 77 90l93 449c16 79 12 87 -40 90l-55 3l6 30l28 -1l175 -2l124 2 l123 1'], + 0xE3A1: [681,3,633,44,601,'601 671l-15 -142h-40l-8 75c-2 12 -47 19 -121 19c-41 0 -67 0 -127 -3v-485c0 -88 2 -92 52 -95l52 -3v-40l-181 3l-169 -3v40l40 3c51 4 52 6 52 95v408c0 88 -3 94 -52 98l-40 3v37l195 -3c29 0 29 3 196 3h56c41 0 63 -1 103 -3'], + 0xE3A2: [681,3,698,56,654,'654 671l-16 -142h-42l-10 75c-1 12 -50 19 -130 19c-43 0 -71 0 -135 -3v-485c0 -88 2 -92 56 -95l55 -3v-40l-194 3l-182 -3v40l44 3c55 4 56 6 56 95v408c0 88 -4 94 -56 98l-44 3v37l210 -3c31 0 31 3 210 3h60l111 -3'], + 0xE3A3: [681,3,621,-1,674,'674 671l-42 -142h-38l5 75c2 12 -42 19 -114 19c-40 0 -66 0 -125 -3l-93 -485c-17 -88 -16 -92 33 -95l50 -3l-8 -40l-177 3l-166 -3l8 40l40 3c51 4 52 6 69 95l79 408c17 88 15 94 -33 98l-39 3l7 37l191 -3c29 0 29 3 193 3h54c41 0 62 -1 101 -3'], + 0xE3A4: [681,3,685,8,733,'733 671l-45 -142h-42l7 75c1 12 -46 19 -124 19c-42 0 -70 0 -133 -3l-100 -485c-18 -88 -17 -92 35 -95l53 -3l-8 -40l-190 3l-178 -3l8 40l43 3c55 4 57 6 75 95l84 408c18 88 16 94 -35 98l-41 3l7 37l205 -3c31 0 31 3 207 3h58c44 0 67 -1 109 -3'], + 0xE3A5: [692,3,392,36,356,'356 -3l-161 3l-159 -3v30l52 3c51 3 56 11 56 90v449c0 79 -5 87 -56 90l-52 3v30l159 -3l161 3v-30l-53 -3c-50 -3 -55 -11 -55 -90v-449c0 -79 5 -87 55 -90l53 -3v-30'], + 0xE3A6: [692,3,439,48,391,'391 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-449c0 -79 6 -87 60 -90l56 -3v-30'], + 0xE3A7: [692,3,384,-9,438,'438 692l-6 -30l-52 -3c-49 -3 -56 -11 -71 -90l-87 -449c-15 -79 -11 -87 38 -90l50 -3l-6 -30l-156 3l-157 -3l6 30l52 3c50 3 57 11 72 90l86 449c15 79 12 87 -37 90l-51 3l6 30l155 -3'], + 0xE3A8: [692,3,431,0,479,'479 692l-6 -30l-55 -3c-54 -3 -61 -11 -77 -90l-93 -449c-16 -79 -12 -87 40 -90l54 -3l-6 -30l-168 3l-168 -3l6 30l56 3c53 3 61 11 77 90l93 449c16 79 12 87 -40 90l-55 3l6 30l167 -3'], + 0xE3A9: [681,3,444,54,393,'393 -3l-170 3l-169 -3v40l40 3c51 4 52 6 52 95v408c0 89 -1 91 -52 95l-40 3v40l169 -3l170 3v-40l-41 -3c-51 -4 -52 -6 -52 -95v-408c0 -89 1 -91 52 -95l41 -3v-40'], + 0xE3AA: [681,3,495,67,431,'431 -3l-183 3l-181 -3v40l43 3c55 4 56 6 56 95v408c0 89 -1 91 -56 95l-43 3v40l181 -3l183 3v-40l-44 -3c-55 -4 -56 -6 -56 -95v-408c0 -89 1 -91 56 -95l44 -3v-40'], + 0xE3AB: [681,3,435,9,472,'472 681l-7 -40l-41 -3c-51 -4 -52 -6 -69 -95l-79 -408c-17 -89 -16 -91 34 -95l38 -3l-7 -40l-166 3l-166 -3l7 40l40 3c51 4 53 6 70 95l78 408c17 89 17 91 -33 95l-39 3l8 40l165 -3'], + 0xE3AC: [681,3,486,18,516,'516 681l-8 -40l-43 -3c-55 -4 -56 -6 -75 -95l-84 -408c-18 -89 -18 -91 35 -95l42 -3l-8 -40l-178 3l-179 -3l9 40l43 3c54 4 56 6 74 95l85 408c18 89 17 91 -36 95l-42 3l9 40l177 -3'], + 0xE3AD: [692,3,796,35,795,'795 -3c-24 2 -47 3 -71 3c-29 0 -58 -1 -87 -3l-380 335l-10 -7v-205c0 -79 5 -87 55 -90l52 -3v-30l-160 3l-159 -3v30l52 3c51 3 56 11 56 90v449c0 79 -5 87 -56 90l-52 3v30l159 -3l160 3v-30l-52 -3c-50 -3 -55 -11 -55 -90v-214l303 271c17 16 31 33 31 39v27 c33 -2 64 -3 97 -3c30 0 58 1 87 3v-30l-45 -2c-29 -1 -56 -14 -85 -38l-290 -240l359 -312c34 -29 52 -40 68 -41l23 -2v-30'], + 0xE3AE: [692,3,873,47,862,'862 -3c-25 2 -50 3 -76 3c-31 0 -62 -1 -93 -3l-407 335l-12 -7v-205c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l171 -3l172 3v-30l-56 -3c-54 -3 -60 -11 -60 -90v-214l325 271c19 16 34 33 34 39v27 c35 -2 69 -3 104 -3c32 0 62 1 94 3v-30l-49 -2c-31 -1 -60 -14 -92 -38l-311 -240l386 -312c37 -29 55 -40 73 -41l24 -2v-30'], + 0xE3AF: [692,3,781,-10,840,'840 692l-6 -30l-45 -2c-28 -1 -58 -14 -91 -38l-330 -240l292 -312c28 -29 43 -40 59 -41l22 -2l-6 -30c-23 2 -45 3 -69 3c-29 0 -57 -1 -86 -3l-307 335l-12 -7l-40 -205c-15 -79 -11 -87 37 -90l51 -3l-6 -30l-156 3l-157 -3l6 30l52 3c50 3 57 11 72 90l86 449 c15 79 11 87 -37 90l-51 3l6 30l155 -3l158 3l-6 -30l-52 -3c-49 -3 -56 -11 -71 -90l-42 -214l349 271c21 16 38 33 39 39l5 27c32 -2 63 -3 95 -3c28 0 56 1 86 3'], + 0xE3B0: [692,3,857,-1,911,'911 692l-7 -30l-48 -2c-30 -1 -62 -14 -97 -38l-355 -240l314 -312c30 -29 46 -40 63 -41l23 -2l-6 -30c-25 2 -49 3 -74 3c-31 0 -61 -1 -92 -3l-330 335l-13 -7l-42 -205c-17 -79 -12 -87 40 -90l54 -3l-6 -30l-168 3l-168 -3l6 30l56 3c53 3 61 11 77 90l92 449 c17 79 13 87 -39 90l-55 3l6 30l167 -3l169 3l-6 -30l-56 -3c-53 -3 -60 -11 -77 -90l-44 -214l375 271c22 16 40 33 41 39l6 27c34 -2 67 -3 101 -3c31 0 61 1 93 3'], + 0xE3B1: [681,3,849,44,833,'833 -3c-37 2 -73 3 -110 3l-111 -3l-227 249c-61 68 -67 71 -95 86v-197c0 -89 1 -91 52 -95l41 -3v-40l-170 3l-169 -3v40l40 3c51 4 52 6 52 95v408c0 89 -1 91 -52 95l-40 3v40l169 -3l170 3v-40l-41 -3c-51 -4 -52 -6 -52 -95v-200l215 193c15 14 102 94 102 120v25 c33 -2 67 -3 100 -3c32 0 66 1 99 3v-39c-69 -5 -94 -12 -120 -34l-242 -207l290 -313c34 -36 59 -49 99 -50v-41'], + 0xE3B2: [681,3,930,56,903,'903 -3l-118 3l-119 -3l-244 249c-65 68 -71 71 -101 86v-197c0 -89 1 -91 56 -95l43 -3v-40l-182 3l-182 -3v40l44 3c55 4 56 6 56 95v408c0 89 -1 91 -56 95l-44 3v40l182 -3l182 3v-40l-43 -3c-55 -4 -56 -6 -56 -95v-200l230 193c17 14 110 94 110 120v25 c35 -2 72 -3 107 -3s71 1 106 3v-39c-74 -5 -101 -12 -129 -34l-259 -207l311 -313c36 -36 63 -49 106 -50v-41'], + 0xE3B3: [681,3,833,-1,877,'877 681l-7 -39c-69 -5 -95 -12 -124 -34l-277 -207l224 -313c26 -36 48 -49 87 -50l-8 -41c-36 2 -71 3 -107 3s-73 -1 -110 -3l-174 249c-47 68 -51 71 -76 86l-38 -197c-17 -89 -17 -91 33 -95l39 -3l-8 -40l-166 3l-166 -3l8 40l40 3c51 4 52 6 69 95l79 408 c17 89 16 91 -33 95l-39 3l7 40l165 -3l168 3l-8 -40l-40 -3c-51 -4 -53 -6 -70 -95l-38 -200l247 193c18 14 119 94 124 120l5 25c31 -2 64 -3 96 -3s66 1 98 3'], + 0xE3B4: [681,3,913,8,951,'951 681l-8 -39c-74 -5 -101 -12 -133 -34l-298 -207l241 -313c28 -36 51 -49 94 -50l-9 -41l-115 3l-117 -3l-188 249c-50 68 -55 71 -82 86l-40 -197c-19 -89 -18 -91 35 -95l42 -3l-8 -40l-179 3l-178 -3l8 40l43 3c55 4 57 6 75 95l84 408c19 89 18 91 -35 95l-42 3 l8 40l177 -3l180 3l-8 -40l-43 -3c-55 -4 -57 -6 -75 -95l-41 -200l265 193c19 14 128 94 133 120l5 25c34 -2 69 -3 104 -3c34 0 70 1 105 3'], + 0xE3B5: [700,3,821,3,811,'811 -3l-138 3l-152 -3v30l51 3c28 2 45 9 45 20c0 9 -2 23 -22 65l-208 452l-187 -405c-23 -50 -38 -93 -38 -106c0 -16 14 -23 52 -26l40 -3v-30l-132 3l-119 -3v30l41 3c24 2 46 20 59 49l287 601l42 20l264 -568c38 -81 50 -98 78 -102l37 -3v-30'], + 0xE3B6: [700,3,900,13,880,'880 -3l-149 3l-162 -3v30l55 3c29 2 48 9 48 20c0 9 -3 23 -24 65l-223 452l-201 -405c-25 -50 -41 -93 -41 -106c0 -16 15 -23 56 -26l43 -3v-30l-141 3l-128 -3v30l43 3c26 2 49 20 63 49l309 601l45 20l283 -568c41 -81 54 -98 84 -102l40 -3v-30'], + 0xE3B7: [700,3,805,-41,757,'757 27l-6 -30l-135 3l-149 -3l6 30l50 3c27 2 46 9 48 20c2 9 2 23 -9 65l-117 452l-262 -405c-32 -50 -55 -93 -57 -106c-3 -16 9 -23 46 -26l39 -3l-6 -30l-129 3l-117 -3l6 30l40 3c24 2 49 20 67 49l398 601l44 20l150 -568c21 -81 30 -98 57 -102'], + 0xE3B8: [700,3,882,-34,822,'822 27l-7 -30l-145 3l-160 -3l7 30l54 3c29 2 49 9 51 20c2 9 3 23 -9 65l-126 452l-281 -405c-34 -50 -59 -93 -62 -106c-3 -16 10 -23 50 -26l42 -3l-7 -30l-138 3l-125 -3l6 30l43 3c26 2 52 20 72 49l427 601l47 20l161 -568c23 -81 32 -98 61 -102'], + 0xE3B9: [686,3,835,17,816,'816 -3l-173 3l-165 -3v37l57 3c12 1 22 12 22 27c0 8 -2 18 -5 29l-189 423l-111 -252l-70 -170c-3 -8 -5 -18 -5 -25c0 -17 13 -31 31 -32l55 -3v-37c-30 1 -52 1 -62 2l-61 1l-61 -1c-9 -1 -34 -1 -62 -2v37l32 3c24 2 44 21 61 60l198 438l57 131l82 20l282 -605 c15 -29 30 -40 60 -44l27 -3v-37'], + 0xE3BA: [686,3,915,27,885,'885 -3l-185 3l-178 -3v37l62 3c13 1 23 12 23 27c0 8 -2 18 -6 29l-202 423l-119 -252l-75 -170c-4 -8 -6 -18 -6 -25c0 -17 14 -31 34 -32l58 -3v-37c-31 1 -56 1 -66 2l-66 1l-65 -1c-10 -1 -37 -1 -67 -2v37l35 3c26 2 47 21 66 60l211 438l62 131l88 20l303 -605 c15 -29 32 -40 65 -44l28 -3v-37'], + 0xE3BB: [686,3,819,-28,762,'762 34l-7 -37l-168 3l-163 -3l7 37l57 3c12 1 24 12 27 27c1 8 1 18 0 29l-103 423l-158 -252l-101 -170c-5 -8 -9 -18 -10 -25c-3 -17 7 -31 25 -32l53 -3l-7 -37c-29 1 -51 1 -61 2l-59 1l-60 -1c-9 -1 -34 -1 -62 -2l7 37l33 3c24 2 47 21 71 60l278 438l82 131 l84 20l160 -605c8 -29 21 -40 50 -44'], + 0xE3BC: [686,3,898,-21,828,'828 34l-8 -37l-181 3l-175 -3l8 37l61 3c13 1 26 12 29 27c2 8 1 18 0 29l-111 423l-169 -252l-108 -170c-5 -8 -10 -18 -11 -25c-4 -17 7 -31 27 -32l56 -3l-7 -37c-31 1 -55 1 -65 2l-64 1l-65 -1c-9 -1 -36 -1 -66 -2l8 37l35 3c26 2 50 21 77 60l298 438l87 131 l91 20l172 -605c9 -29 22 -40 54 -44'], + 0xE3BD: [692,13,1059,31,1023,'1023 -3l-165 3l-140 -3v30l38 3c51 4 55 11 55 90v458l-48 -86l-194 -378c-23 -45 -31 -73 -59 -127h-21l-305 591v-458c0 -78 6 -87 56 -90l48 -3v-30l-131 3l-126 -3v30l48 3c50 3 55 12 55 90v449c0 78 -5 87 -55 90l-48 3v30c35 -2 68 -3 103 -3s69 1 104 3 l288 -556l285 556c35 -2 69 -3 104 -3c33 0 67 1 101 3v-30l-46 -3c-50 -3 -55 -12 -55 -90v-449c0 -79 5 -87 55 -90l53 -3v-30'], + 0xE3BE: [692,13,1155,42,1107,'1107 -3l-177 3l-150 -3v30l40 3c55 4 60 11 60 90v458l-52 -86l-208 -378c-24 -45 -34 -73 -63 -127h-23l-327 591v-458c0 -78 6 -87 60 -90l51 -3v-30l-140 3l-136 -3v30l52 3c54 3 59 12 59 90v449c0 78 -5 87 -59 90l-52 3v30l111 -3l112 3l308 -556l307 556l111 -3 c36 0 73 1 109 3v-30l-49 -3c-54 -3 -60 -12 -60 -90v-449c0 -79 6 -87 60 -90l56 -3v-30'], + 0xE3BF: [692,13,1038,-14,1085,'1085 692l-5 -30l-46 -3c-50 -3 -57 -12 -72 -90l-86 -449c-15 -79 -11 -87 37 -90l51 -3l-6 -30l-161 3l-137 -3l6 30l37 3c51 4 56 11 72 90l88 458l-64 -86l-263 -378c-31 -45 -45 -73 -82 -127h-21l-185 591l-88 -458c-15 -78 -11 -87 38 -90l46 -3l-6 -30l-127 3 l-125 -3l6 30l47 3c50 3 57 12 72 90l87 449c15 78 11 87 -38 90l-46 3l6 30c33 -2 66 -3 101 -3c34 0 67 1 102 3l175 -556l387 556c33 -2 66 -3 100 -3s67 1 100 3'], + 0xE3C0: [692,13,1133,-6,1174,'1174 692l-6 -30l-49 -3c-53 -3 -61 -12 -77 -90l-92 -449c-17 -79 -13 -87 40 -90l54 -3l-6 -30l-173 3l-147 -3l6 30l40 3c54 4 60 11 77 90l94 458l-68 -86l-282 -378c-33 -45 -48 -73 -88 -127h-23l-198 591l-95 -458c-16 -78 -12 -87 40 -90l50 -3l-6 -30l-137 3 l-134 -3l7 30l51 3c53 3 61 12 77 90l92 449c16 78 13 87 -40 90l-49 3l6 30c36 -2 71 -3 108 -3s72 1 110 3l188 -556l415 556c36 -2 71 -3 108 -3c36 0 71 1 107 3'], + 0xE3C1: [681,10,1120,51,1072,'1072 -3l-170 3l-169 -3v40l40 3c51 4 52 6 52 95v416l-224 -429c-41 -76 -45 -86 -66 -132h-37c-19 44 -31 68 -39 83l-251 479v-417c0 -89 4 -94 53 -98l40 -3v-37l-124 3l-126 -3v37l41 3c49 4 52 10 52 98v408c0 88 -3 94 -52 98l-41 3v37l131 -3l131 3l82 -161 l172 -330l199 378l54 113l125 -3l127 3v-37l-41 -3c-49 -4 -52 -10 -52 -98v-408c0 -89 1 -91 52 -95l41 -3v-40'], + 0xE3C2: [681,10,1221,64,1160,'1160 -3l-183 3l-181 -3v40l43 3c55 4 56 6 56 95v416l-241 -429c-43 -76 -48 -86 -70 -132h-40c-21 44 -34 68 -42 83l-269 479v-417c0 -89 3 -94 56 -98l43 -3v-37l-133 3l-135 -3v37l44 3c52 4 56 10 56 98v408c0 88 -4 94 -56 98l-44 3v37l141 -3l140 3l88 -161 l185 -330l214 378l57 113l135 -3l136 3v-37l-44 -3c-52 -4 -56 -10 -56 -98v-408c0 -89 1 -91 56 -95l44 -3v-40'], + 0xE3C3: [681,10,1098,6,1138,'1138 681l-7 -37l-41 -3c-48 -4 -53 -10 -70 -98l-78 -408c-17 -89 -16 -91 33 -95l39 -3l-8 -40l-166 3l-166 -3l8 40l40 3c51 4 52 6 69 95l80 416l-302 -429c-54 -76 -61 -86 -90 -132h-36c-11 44 -18 68 -22 83l-154 479l-80 -417c-17 -89 -15 -94 32 -98l39 -3 l-7 -37l-121 3l-124 -3l8 37l40 3c48 4 53 10 70 98l78 408c17 88 15 94 -32 98l-39 3l7 37l127 -3l129 3l49 -161l106 -330l268 378l74 113l122 -3'], + 0xE3C4: [681,10,1197,16,1230,'1230 681l-7 -37l-43 -3c-53 -4 -57 -10 -75 -98l-85 -408c-18 -89 -17 -91 36 -95l42 -3l-9 -40l-178 3l-178 -3l8 40l43 3c55 4 56 6 75 95l86 416l-325 -429c-58 -76 -65 -86 -96 -132h-39c-12 44 -19 68 -24 83l-165 479l-86 -417c-19 -89 -16 -94 35 -98l41 -3 l-7 -37l-130 3l-133 -3l8 37l43 3c52 4 57 10 75 98l84 408c18 88 16 94 -35 98l-41 3l7 37l137 -3l138 3l53 -161l113 -330l288 378l80 113l131 -3'], + 0xE3C5: [692,20,950,35,903,'903 662l-48 -3c-50 -3 -56 -12 -56 -90v-552c0 -10 3 -27 3 -37l-98 16l-515 587v-463c0 -78 5 -87 55 -90l48 -3v-30l-130 3l-127 -3v30l48 3c50 3 56 12 56 90v449c0 78 -6 87 -56 90l-48 3v30l131 -3c23 0 59 3 59 3l524 -594v471c0 78 -5 87 -56 90l-48 3v30l127 -3 l131 3v-30'], + 0xE3C6: [692,20,1038,47,978,'978 662l-51 -3c-54 -3 -60 -12 -60 -90v-552c0 -10 4 -27 4 -37l-106 16l-553 587v-463c0 -78 6 -87 60 -90l51 -3v-30l-140 3l-136 -3v30l51 3c54 3 60 12 60 90v449c0 78 -6 87 -60 90l-51 3v30l140 -3c25 0 63 3 63 3l563 -594v471c0 78 -6 87 -59 90l-52 3v30 l136 -3l140 3v-30'], + 0xE3C7: [692,20,931,-10,974,'974 692l-6 -30l-47 -3c-50 -3 -57 -12 -72 -90l-106 -552c-2 -10 -2 -27 -4 -37l-93 16l-392 587l-89 -463c-15 -78 -12 -87 37 -90l46 -3l-6 -30l-127 3l-125 -3l6 30l48 3c49 3 57 12 72 90l86 449c15 78 11 87 -37 90l-47 3l6 30l128 -3c22 0 58 3 58 3l399 -594 l91 471c15 78 11 87 -37 90l-47 3l6 30l123 -3'], + 0xE3C8: [692,20,1018,-1,1055,'1055 692l-6 -30l-51 -3c-54 -3 -61 -12 -77 -90l-114 -552c-2 -10 -2 -27 -4 -37l-100 16l-421 587l-96 -463c-16 -78 -12 -87 40 -90l50 -3l-6 -30l-137 3l-134 -3l6 30l51 3c54 3 61 12 77 90l93 449c16 78 12 87 -40 90l-50 3l6 30l137 -3c24 0 63 3 63 3l429 -594 l97 471c16 78 12 87 -40 90l-50 3l6 30l133 -3'], + 0xE3C9: [681,16,916,44,875,'875 644l-40 -3c-49 -4 -52 -10 -52 -98v-454l3 -101l-8 -4l-89 13l-133 139l-355 392v-393c0 -89 3 -94 52 -98l40 -3v-37l-124 3l-125 -3v37l40 3c49 4 52 10 52 98v408c0 88 -3 94 -52 98l-40 3v37l131 -3c30 0 61 1 91 3c70 -85 90 -109 112 -133l340 -364v359 c0 88 -3 94 -52 98l-40 3v37l125 -3l124 3v-37'], + 0xE3CA: [681,16,1002,56,949,'949 644l-43 -3c-53 -4 -56 -10 -56 -98v-454l3 -101l-8 -4l-96 13l-143 139l-381 392v-393c0 -89 3 -94 56 -98l43 -3v-37l-133 3l-135 -3v37l44 3c52 4 56 10 56 98v408c0 88 -4 94 -56 98l-44 3v37l141 -3c32 0 65 1 98 3c75 -85 96 -109 120 -133l365 -364v359 c0 88 -3 94 -56 98l-43 3v37l135 -3l133 3v-37'], + 0xE3CB: [681,16,899,-1,945,'945 681l-7 -37l-40 -3c-49 -4 -53 -10 -70 -98l-87 -454l-16 -101l-9 -4l-85 13l-103 139l-273 392l-76 -393c-17 -89 -15 -94 33 -98l39 -3l-7 -37l-122 3l-123 -3l7 37l40 3c49 4 53 10 70 98l79 408c17 88 15 94 -33 98l-39 3l7 37l128 -3c30 0 60 1 90 3 c52 -85 67 -109 85 -133l263 -364l69 359c17 88 15 94 -32 98l-39 3l7 37l122 -3'], + 0xE3CC: [681,16,983,8,1024,'1024 681l-8 -37l-43 -3c-52 -4 -57 -10 -75 -98l-94 -454l-17 -101l-9 -4l-91 13l-111 139l-293 392l-81 -393c-19 -89 -16 -94 35 -98l41 -3l-7 -37l-130 3l-133 -3l8 37l43 3c52 4 57 10 75 98l84 408c18 88 16 94 -35 98l-41 3l7 37l137 -3c32 0 65 1 97 3 c56 -85 72 -109 91 -133l282 -364l75 359c18 88 15 94 -35 98l-42 3l8 37l131 -3'], + 0xE3CD: [709,3,935,51,883,'883 158c-6 -43 -8 -112 -8 -161c-22 0 -88 3 -129 3c-25 0 -107 0 -130 -3h-24v39c10 9 25 13 41 23c7 4 17 14 28 29c29 40 86 155 86 247c0 212 -86 332 -279 332s-280 -119 -280 -332c0 -92 56 -207 86 -247c11 -15 20 -25 27 -29c15 -10 32 -14 41 -23v-39h-24 c-22 3 -104 3 -129 3c-42 0 -107 -3 -130 -3c0 49 -1 118 -8 161h29l7 -52c5 -29 19 -37 40 -37h125c-69 53 -181 170 -181 302c0 207 152 338 397 338s395 -132 395 -338c0 -132 -112 -249 -180 -302h125c21 0 35 8 39 37l8 52h28'], + 0xE3CE: [709,3,1022,64,957,'957 158c-7 -43 -8 -112 -8 -161l-139 3c-27 0 -115 0 -139 -3h-26v39c10 9 27 13 44 23c7 4 18 14 29 29c32 40 93 155 93 247c0 212 -93 332 -300 332s-300 -119 -300 -332c0 -92 61 -207 92 -247c12 -15 22 -25 29 -29c17 -10 34 -14 45 -23v-39h-26 c-24 3 -112 3 -139 3l-139 -3c0 49 -2 118 -9 161h31l8 -52c5 -29 20 -37 42 -37h135c-74 53 -194 170 -194 302c0 207 162 338 425 338c264 0 425 -132 425 -338c0 -132 -120 -249 -194 -302h134c23 0 38 8 43 37l8 52h30'], + 0xE3CF: [709,3,916,14,881,'874 371c-25 -132 -158 -249 -235 -302h123c20 0 35 8 45 37l18 52h27c-14 -43 -29 -112 -38 -161c-22 0 -86 3 -127 3c-24 0 -104 0 -127 -3h-24l8 39c11 9 27 13 45 23c7 4 18 14 32 29c37 40 114 155 132 247c41 212 -21 332 -210 332s-297 -119 -338 -332 c-18 -92 16 -207 37 -247c8 -15 15 -25 21 -29c13 -10 28 -14 36 -23l-7 -39h-24c-22 3 -102 3 -126 3c-41 0 -106 -3 -128 -3c9 49 22 118 23 161h28l-2 -52c-2 -29 11 -37 31 -37h123c-57 53 -145 170 -119 302c39 207 213 338 453 338c241 0 363 -132 323 -338'], + 0xE3D0: [709,3,1002,24,955,'948 371c-28 -132 -170 -249 -253 -302h132c22 0 38 8 49 37l18 52h30c-16 -43 -31 -112 -41 -161l-136 3c-26 0 -112 0 -137 -3h-25l8 39c12 9 29 13 48 23c8 4 20 14 35 29c39 40 122 155 141 247c44 212 -22 332 -225 332s-319 -119 -363 -332 c-19 -92 17 -207 40 -247c8 -15 16 -25 23 -29c14 -10 30 -14 38 -23l-8 -39h-25c-23 3 -109 3 -136 3l-137 -3c10 49 23 118 25 161h30l-3 -52c-1 -29 12 -37 34 -37h132c-61 53 -155 170 -128 302c43 207 229 338 487 338s389 -132 347 -338'], + 0xE3D1: [695,3,921,39,886,'886 176l-11 -179l-137 3l-144 -3l-22 43c24 13 51 31 70 52c53 72 66 148 66 255c0 203 -76 292 -246 292c-169 0 -244 -89 -244 -292c0 -107 13 -183 66 -255c19 -21 45 -39 69 -52l-21 -43l-144 3l-138 -3l-11 179h37l12 -56c5 -18 26 -34 55 -34h77 c-65 60 -165 171 -165 285c0 207 162 324 407 324c246 0 409 -117 409 -324c0 -114 -100 -225 -166 -285h78c29 0 50 16 54 34l12 56h37'], + 0xE3D2: [695,3,1008,52,961,'961 176l-12 -179l-147 3l-155 -3l-23 43c25 13 54 31 75 52c56 72 70 148 70 255c0 203 -81 292 -263 292s-263 -89 -263 -292c0 -107 15 -183 71 -255c21 -21 49 -39 75 -52l-24 -43l-154 3l-148 -3l-11 179h39l13 -56c5 -18 27 -34 59 -34h83 c-70 60 -178 171 -178 285c0 207 174 324 438 324c263 0 438 -117 438 -324c0 -114 -107 -225 -178 -285h84c31 0 53 16 58 34l13 56h40'], + 0xE3D3: [695,3,903,5,888,'882 371c-22 -114 -142 -225 -218 -285h76c29 0 52 16 60 34l23 56h36l-45 -179l-134 3l-142 -3l-13 43c26 13 55 31 79 52c65 72 92 148 113 255c39 203 -18 292 -184 292s-257 -89 -296 -292c-20 -107 -22 -183 15 -255c15 -21 38 -39 59 -52l-30 -43l-140 3l-136 -3 l24 179h36l1 -56c1 -18 18 -34 47 -34h76c-52 60 -129 171 -107 285c39 207 221 324 461 324c241 0 378 -117 339 -324'], + 0xE3D4: [695,3,988,15,963,'956 371c-24 -114 -152 -225 -234 -285h82c31 0 56 16 64 34l24 56h39l-48 -179l-144 3l-152 -3l-14 43c28 13 59 31 84 52c70 72 100 148 122 255c41 203 -19 292 -198 292c-178 0 -275 -89 -317 -292c-22 -107 -24 -183 16 -255c16 -21 40 -39 63 -52l-32 -43l-151 3 l-145 -3l25 179h39l2 -56c0 -18 19 -34 50 -34h81c-56 60 -139 171 -115 285c42 207 237 324 495 324s406 -117 364 -324'], + 0xE3D5: [709,20,946,69,878,'878 367c0 -220 -186 -387 -430 -387c-220 0 -379 151 -379 361c0 220 166 368 414 368c242 0 395 -132 395 -342zM761 337c0 208 -110 330 -296 330c-179 0 -280 -104 -280 -289c0 -214 124 -356 307 -356c169 0 269 117 269 315'], + 0xE3D6: [709,20,1034,83,951,'951 367c0 -220 -199 -387 -461 -387c-236 0 -407 151 -407 361c0 220 178 368 445 368c260 0 423 -132 423 -342zM826 337c0 208 -118 330 -318 330c-192 0 -300 -104 -300 -289c0 -214 133 -356 329 -356c181 0 289 117 289 315'], + 0xE3D7: [709,20,928,82,894,'887 367c-42 -220 -256 -387 -495 -387c-216 0 -343 151 -302 361c42 220 233 368 476 368c237 0 362 -132 321 -342zM767 337c40 208 -44 330 -227 330c-175 0 -293 -104 -329 -289c-41 -214 52 -356 232 -356c165 0 286 117 324 315'], + 0xE3D8: [709,20,1015,97,969,'962 367c-46 -220 -275 -387 -532 -387c-232 0 -368 151 -325 361c46 220 251 368 512 368c255 0 388 -132 345 -342zM833 337c43 208 -48 330 -244 330c-188 0 -315 -104 -353 -289c-44 -214 56 -356 249 -356c177 0 307 117 348 315'], + 0xE3D9: [695,17,927,60,867,'867 346c0 -228 -154 -363 -414 -363c-250 0 -393 127 -393 349c0 229 154 363 418 363c246 0 389 -129 389 -349zM703 325c0 113 -34 209 -94 263c-38 34 -83 51 -141 51c-69 0 -126 -19 -168 -57c-49 -45 -76 -125 -76 -227c0 -115 33 -211 92 -264 c40 -36 84 -52 144 -52c159 0 243 98 243 286'], + 0xE3DA: [695,17,1013,74,940,'940 346c0 -228 -165 -363 -445 -363c-268 0 -421 127 -421 349c0 229 165 363 448 363c264 0 418 -129 418 -349zM764 325c0 113 -36 209 -101 263c-40 34 -90 51 -152 51c-73 0 -134 -19 -180 -57c-52 -45 -82 -125 -82 -227c0 -115 37 -211 100 -264 c42 -36 90 -52 154 -52c171 0 261 98 261 286'], + 0xE3DB: [695,17,908,70,880,'872 346c-43 -228 -220 -363 -475 -363c-245 0 -360 127 -318 349c44 229 221 363 479 363c242 0 357 -129 314 -349zM708 325c22 113 7 209 -41 263c-31 34 -73 51 -129 51c-67 0 -127 -19 -176 -57c-56 -45 -98 -125 -118 -227c-22 -115 -7 -211 40 -264 c32 -36 72 -52 131 -52c156 0 257 98 293 286'], + 0xE3DC: [695,17,994,84,955,'946 346c-47 -228 -237 -363 -511 -363c-262 0 -386 127 -341 349c48 229 237 363 514 363c260 0 383 -129 338 -349zM769 325c24 113 8 209 -44 263c-33 34 -78 51 -138 51c-73 0 -136 -19 -189 -57c-61 -45 -106 -125 -127 -227c-24 -115 -8 -211 43 -264 c34 -36 78 -52 141 -52c167 0 276 98 314 286'], + 0xE3DD: [692,3,946,70,879,'879 359c0 -122 -158 -226 -352 -247c0 -71 6 -79 55 -82l53 -3v-30l-161 3l-159 -3v30l53 3c46 3 54 10 55 78c-193 9 -353 110 -353 235c0 124 151 220 353 236c-1 69 -8 77 -55 80l-53 3v30l159 -3l161 3v-30l-53 -3c-48 -3 -55 -11 -55 -78 c202 -11 352 -100 352 -222zM762 344c0 114 -95 179 -235 193v-386c138 10 235 79 235 193zM423 155v383c-142 -9 -236 -68 -236 -172c0 -116 100 -192 236 -211'], + 0xE3DE: [692,3,1034,84,952,'952 359c0 -122 -169 -226 -377 -247c0 -71 7 -79 59 -82l56 -3v-30l-172 3l-170 -3v30l56 3c50 3 58 10 59 78c-207 9 -379 110 -379 235c0 124 163 220 379 236c-1 69 -8 77 -59 80l-56 3v30l170 -3l172 3v-30l-56 -3c-51 -3 -59 -11 -59 -78 c217 -11 377 -100 377 -222zM827 344c0 114 -101 179 -252 193v-386c148 10 252 79 252 193zM463 155v383c-152 -9 -253 -68 -253 -172c0 -116 107 -192 253 -211'], + 0xE3DF: [692,3,928,88,889,'887 359c-24 -122 -199 -226 -393 -247c-13 -71 -9 -79 39 -82l51 -3l-6 -30l-157 3l-156 -3l6 30l52 3c46 3 55 10 69 78c-187 9 -325 110 -301 235c24 124 191 220 392 236c12 69 7 77 -40 80l-50 3l5 30l156 -3l157 3l-5 -30l-52 -3c-48 -3 -57 -11 -70 -78 c197 -11 326 -100 303 -222zM770 344c21 114 -59 179 -194 193l-74 -386c137 10 246 79 268 193zM475 538c-141 -9 -245 -68 -265 -172c-23 -116 61 -192 191 -211'], + 0xE3E0: [692,3,1015,104,963,'961 359c-25 -122 -213 -226 -421 -247c-15 -71 -10 -79 41 -82l55 -3l-6 -30l-168 3l-168 -3l6 30l55 3c50 3 60 10 75 78c-201 9 -349 110 -323 235c26 124 205 220 420 236c13 69 8 77 -42 80l-54 3l6 30l167 -3l169 3l-6 -30l-56 -3c-51 -3 -61 -11 -74 -78 c211 -11 349 -100 324 -222zM835 344c24 114 -63 179 -208 193l-79 -386c148 10 264 79 287 193zM519 538c-151 -9 -263 -68 -285 -172c-23 -116 66 -192 206 -211'], + 0xE3E1: [681,3,928,61,868,'868 344c0 -131 -120 -215 -326 -233c0 -65 6 -68 52 -71l41 -3v-40l-170 3l-169 -3v40l40 3c46 3 51 6 52 70c-209 13 -327 93 -327 225c0 131 119 214 327 232c-1 64 -7 67 -52 71l-40 3v40l169 -3l170 3v-40l-41 -3c-46 -4 -52 -8 -52 -69c207 -14 326 -95 326 -225z M388 166v346c-34 -4 -63 -11 -87 -25c-49 -29 -76 -76 -76 -137c0 -70 34 -127 92 -162c21 -13 45 -19 71 -22zM704 330c0 72 -33 126 -93 161c-21 11 -44 18 -69 21v-343c107 17 162 69 162 161'], + 0xE3E2: [681,3,1015,75,941,'941 344c0 -131 -129 -215 -350 -233c0 -65 7 -68 56 -71l43 -3v-40l-182 3l-181 -3v40l43 3c49 3 55 6 56 70c-225 13 -351 93 -351 225c0 131 128 214 351 232c-1 64 -8 67 -56 71l-43 3v40l181 -3l182 3v-40l-43 -3c-49 -4 -56 -8 -56 -69c222 -14 350 -95 350 -225z M426 166v346c-36 -4 -68 -11 -94 -25c-52 -29 -82 -76 -82 -137c0 -70 37 -127 100 -162c22 -13 48 -19 76 -22zM765 330c0 72 -36 126 -100 161c-23 11 -47 18 -74 21v-343c115 17 174 69 174 161'], + 0xE3E3: [681,3,909,77,876,'873 344c-25 -131 -159 -215 -364 -233c-12 -65 -7 -68 38 -71l39 -3l-8 -40l-166 3l-166 -3l7 40l40 3c46 3 52 6 65 70c-202 13 -302 93 -277 225c25 131 158 214 365 232c11 64 5 67 -38 71l-39 3l8 40l165 -3l167 3l-7 -40l-40 -3c-46 -4 -53 -8 -65 -69 c200 -14 301 -95 276 -225zM435 512c-33 -4 -64 -11 -90 -25c-53 -29 -89 -76 -101 -137c-13 -70 9 -127 60 -162c18 -13 40 -19 65 -22zM710 330c14 72 -9 126 -61 161c-18 11 -39 18 -63 21l-66 -343c108 17 173 69 190 161'], + 0xE3E4: [681,3,995,91,950,'947 344c-27 -131 -171 -215 -391 -233c-14 -65 -8 -68 40 -71l42 -3l-8 -40l-179 3l-178 -3l8 40l43 3c49 3 55 6 70 70c-218 13 -325 93 -298 225c27 131 169 214 392 232c12 64 6 67 -40 71l-42 3l8 40l177 -3l180 3l-9 -40l-43 -3c-49 -4 -56 -8 -69 -69 c215 -14 323 -95 297 -225zM477 512c-37 -4 -69 -11 -97 -25c-58 -29 -96 -76 -109 -137c-14 -70 10 -127 64 -162c19 -13 43 -19 70 -22zM772 330c15 72 -10 126 -66 161c-19 11 -42 18 -68 21l-70 -343c115 17 185 69 204 161'], + 0xE3E5: [692,3,931,36,895,'895 -3l-160 3l-159 -3v30l52 3c50 3 56 11 56 90v449c0 79 -6 87 -56 90l-52 3h-220l-53 -3c-50 -3 -55 -11 -55 -90v-449c0 -79 5 -87 55 -90l53 -3v-30l-161 3l-159 -3v30l52 3c51 3 56 11 56 90v449c0 79 -5 87 -56 90l-52 3v30l430 -3l429 3v-30l-52 -3 c-50 -3 -56 -11 -56 -90v-449c0 -79 6 -87 56 -90l52 -3v-30'], + 0xE3E6: [692,3,1018,48,970,'970 -3l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3h-236l-56 -3c-54 -3 -60 -11 -60 -90v-449c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 79 -6 87 -60 90l-56 3v30l461 -3l461 3v-30l-56 -3 c-54 -3 -60 -11 -60 -90v-449c0 -79 6 -87 60 -90l56 -3v-30'], + 0xE3E7: [692,3,913,-9,967,'967 692l-6 -30l-52 -3c-50 -3 -56 -11 -72 -90l-86 -449c-15 -79 -11 -87 37 -90l51 -3l-6 -30l-156 3l-157 -3l6 30l52 3c50 3 56 11 72 90l86 449c15 79 11 87 -37 90l-51 3h-216l-52 -3c-49 -3 -56 -11 -71 -90l-87 -449c-15 -79 -11 -87 38 -90l50 -3l-6 -30l-156 3 l-157 -3l6 30l52 3c50 3 57 11 72 90l86 449c15 79 12 87 -37 90l-51 3l6 30l420 -3'], + 0xE3E8: [692,3,998,0,1047,'1047 692l-6 -30l-56 -3c-53 -3 -61 -11 -77 -90l-93 -449c-16 -79 -12 -87 40 -90l55 -3l-6 -30l-168 3l-168 -3l6 30l56 3c53 3 60 11 77 90l92 449c16 79 12 87 -40 90l-54 3h-232l-55 -3c-54 -3 -61 -11 -77 -90l-93 -449c-16 -79 -12 -87 40 -90l54 -3l-6 -30 l-168 3l-168 -3l6 30l56 3c53 3 61 11 77 90l93 449c16 79 12 87 -40 90l-55 3l6 30l452 -3'], + 0xE3E9: [681,3,916,44,872,'872 -3l-170 3l-169 -3v40l41 3c51 4 52 6 52 95v408c0 89 -1 91 -52 95l-41 3h-150l-41 -3c-51 -4 -52 -6 -52 -95v-408c0 -89 1 -91 52 -95l41 -3v-40l-170 3l-169 -3v40l40 3c51 4 52 6 52 95v408c0 89 -1 91 -52 95l-40 3v40l414 -3l414 3v-40l-40 -3 c-51 -4 -52 -6 -52 -95v-408c0 -89 1 -91 52 -95l40 -3v-40'], + 0xE3EA: [681,3,1002,56,945,'945 -3l-182 3l-181 -3v40l43 3c55 4 56 6 56 95v408c0 89 -1 91 -56 95l-43 3h-162l-43 -3c-55 -4 -56 -6 -56 -95v-408c0 -89 1 -91 56 -95l43 -3v-40l-182 3l-182 -3v40l44 3c55 4 56 6 56 95v408c0 89 -1 91 -56 95l-44 3v40l445 -3l444 3v-40l-43 -3 c-55 -4 -56 -6 -56 -95v-408c0 -89 1 -91 56 -95l43 -3v-40'], + 0xE3EB: [681,3,899,-1,942,'942 681l-7 -40l-41 -3c-51 -4 -52 -6 -69 -95l-79 -408c-17 -89 -16 -91 34 -95l38 -3l-7 -40l-166 3l-166 -3l7 40l40 3c51 4 53 6 70 95l78 408c17 89 17 91 -33 95l-39 3h-147l-40 -3c-51 -4 -53 -6 -70 -95l-78 -408c-17 -89 -17 -91 33 -95l39 -3l-8 -40l-166 3 l-166 -3l8 40l40 3c51 4 52 6 69 95l79 408c17 89 16 91 -33 95l-39 3l7 40l406 -3'], + 0xE3EC: [681,3,983,8,1021,'1021 681l-9 -40l-43 -3c-54 -4 -56 -6 -74 -95l-84 -408c-19 -89 -18 -91 35 -95l42 -3l-8 -40l-179 3l-178 -3l8 40l43 3c55 4 57 6 75 95l84 408c18 89 18 91 -35 95l-42 3h-158l-43 -3c-55 -4 -57 -6 -75 -95l-84 -408c-19 -89 -18 -91 35 -95l42 -3l-8 -40l-179 3 l-178 -3l8 40l43 3c55 4 57 6 75 95l84 408c19 89 18 91 -35 95l-42 3l8 40l435 -3'], + 0xE3ED: [692,3,873,30,844,'844 662l-48 -3c-42 -3 -57 -9 -57 -53c0 -176 -76 -297 -222 -319v-167c0 -79 5 -87 55 -90l53 -3v-30l-160 3l-160 -3v30l53 3c50 3 55 11 55 90v162c-192 3 -275 126 -275 282c0 89 -6 92 -56 95l-52 3v30l153 -3c16 1 32 3 47 3c10 -17 11 -44 11 -72v-45 c0 -115 52 -219 172 -230v224c0 79 -5 87 -55 90l-40 3v30l147 -3l149 3v-30l-42 -3c-50 -3 -55 -11 -55 -90v-222c113 15 172 123 172 238v44c0 25 2 48 12 63c10 0 26 -3 34 -3l109 3v-30'], + 0xE3EE: [692,3,956,41,915,'915 662l-51 -3c-45 -3 -61 -9 -61 -53c0 -176 -82 -297 -239 -319v-167c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v162c-206 3 -296 126 -296 282c0 89 -6 92 -60 95l-56 3v30l165 -3c16 1 34 3 50 3c11 -17 12 -44 12 -72v-45 c0 -115 56 -219 185 -230v224c0 79 -6 87 -60 90l-42 3v30l157 -3l160 3v-30l-44 -3c-54 -3 -60 -11 -60 -90v-222c122 15 185 123 185 238v44c0 25 2 48 13 63c10 0 28 -3 36 -3l117 3v-30'], + 0xE3EF: [692,3,856,113,917,'917 692l-6 -30l-48 -3c-41 -3 -57 -9 -66 -53c-33 -176 -131 -297 -279 -319l-32 -167c-15 -79 -11 -87 37 -90l51 -3l-6 -30l-156 3l-157 -3l6 30l52 3c50 3 57 11 72 90l31 162c-188 3 -246 126 -216 282c17 89 12 92 -36 95l-51 3l6 30l150 -3c15 1 31 3 46 3 c7 -17 2 -44 -3 -72l-9 -45c-22 -115 10 -219 125 -230l43 224c15 79 11 87 -37 90l-38 3l6 30l142 -3l147 3l-6 -30l-41 -3c-49 -3 -56 -11 -72 -90l-42 -222c114 15 192 123 214 238l9 44c5 25 11 48 24 63c9 0 25 -3 32 -3'], + 0xE3F0: [692,3,937,130,993,'993 692l-6 -30l-51 -3c-44 -3 -62 -9 -71 -53c-36 -176 -141 -297 -299 -319l-35 -167c-16 -79 -12 -87 40 -90l54 -3l-6 -30l-168 3l-168 -3l6 30l56 3c54 3 61 11 77 90l34 162c-202 3 -264 126 -232 282c18 89 13 92 -39 95l-55 3l7 30l161 -3c16 1 34 3 50 3 c6 -17 2 -44 -4 -72l-9 -45c-24 -115 10 -219 134 -230l46 224c16 79 12 87 -40 90l-41 3l6 30l153 -3l158 3l-6 -30l-44 -3c-54 -3 -61 -11 -77 -90l-46 -222c122 15 206 123 230 238l9 44c5 25 12 48 26 63c10 0 27 -3 35 -3'], + 0xE3F1: [681,3,829,14,814,'814 644l-40 -3c-44 -4 -52 -9 -52 -69c0 -126 -65 -269 -188 -292v-145c0 -89 1 -91 53 -95l40 -3v-40l-170 3l-169 -3v40l40 3c52 4 53 6 53 95v133c-169 8 -274 121 -274 275c0 88 -3 94 -52 98l-41 3v37l158 -3c22 0 45 2 78 3c11 -20 11 -61 11 -91 c0 -123 20 -212 120 -234v187c0 89 -4 91 -49 95l-28 2v41l153 -3l154 3v-41l-28 -2c-45 -4 -49 -6 -49 -95v-186c83 19 123 123 123 238c0 28 0 66 11 86c18 -1 43 -3 49 -3c42 0 56 2 97 3v-37'], + 0xE3F2: [681,3,908,25,883,'883 644l-43 -3c-47 -4 -56 -9 -56 -69c0 -126 -69 -269 -201 -292v-145c0 -89 1 -91 56 -95l43 -3v-40l-182 3l-182 -3v40l44 3c55 4 56 6 56 95v133c-182 8 -294 121 -294 275c0 88 -3 94 -56 98l-43 3v37l169 -3c24 0 48 2 83 3c12 -20 12 -61 12 -91 c0 -123 22 -212 129 -234v187c0 89 -4 91 -53 95l-29 2v41l164 -3l165 3v-41l-30 -2c-49 -4 -52 -6 -52 -95v-186c89 19 132 123 132 238c0 28 0 66 12 86c18 -1 45 -3 52 -3c45 0 60 2 104 3v-37'], + 0xE3F3: [681,3,812,94,886,'886 681l-7 -37l-41 -3c-43 -4 -53 -9 -64 -69c-24 -126 -115 -269 -240 -292l-28 -145c-17 -89 -16 -91 33 -95l39 -3l-8 -40l-166 3l-166 -3l8 40l40 3c51 4 52 6 70 95l25 133c-164 8 -245 121 -215 275c17 88 15 94 -33 98l-39 3l8 37l154 -3c21 0 44 2 76 3 c7 -20 -1 -61 -7 -91c-23 -123 -20 -212 73 -234l36 187c17 89 14 91 -30 95l-26 2l8 41l149 -3l151 3l-8 -41l-27 -2c-46 -4 -49 -6 -66 -95l-36 -186c85 19 144 123 166 238c6 28 13 66 27 86c17 -1 42 -3 48 -3c41 0 55 2 96 3'], + 0xE3F4: [681,3,891,111,960,'960 681l-8 -37l-43 -3c-46 -4 -57 -9 -69 -69c-26 -126 -123 -269 -258 -292l-29 -145c-19 -89 -18 -91 35 -95l42 -3l-8 -40l-179 3l-178 -3l8 40l43 3c55 4 57 6 75 95l27 133c-176 8 -262 121 -231 275c18 88 16 94 -35 98l-41 3l7 37l166 -3c23 0 47 2 82 3 c7 -20 -1 -61 -7 -91c-26 -123 -22 -212 77 -234l39 187c18 89 15 91 -32 95l-28 2l8 41l160 -3l162 3l-8 -41l-29 -2c-49 -4 -53 -6 -71 -95l-39 -186c91 19 155 123 179 238c6 28 14 66 29 86c18 -1 44 -3 51 -3c44 0 59 2 103 3'], + 0xE3F5: [692,3,678,36,644,'644 537c0 -120 -114 -213 -263 -213c-22 0 -37 1 -64 6l-11 36c29 -8 45 -10 68 -10c95 0 161 63 161 153c0 95 -63 145 -181 145c-37 0 -68 -4 -106 -12v-522c0 -79 5 -87 55 -90l53 -3v-30l-161 3l-159 -3v30l52 3c51 3 56 11 56 90v449c0 74 -9 87 -58 90l-49 3v30 l199 -3c62 0 123 3 185 3c138 0 223 -59 223 -155'], + 0xE3F6: [692,3,747,48,701,'701 537c0 -120 -123 -213 -283 -213c-24 0 -40 1 -68 6l-12 36c31 -8 48 -10 73 -10c102 0 173 63 173 153c0 95 -68 145 -194 145c-40 0 -74 -4 -115 -12v-522c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v449c0 74 -9 87 -62 90l-53 3v30 l213 -3l199 3c149 0 240 -59 240 -155'], + 0xE3F7: [692,3,665,-9,694,'691 537c-23 -120 -153 -213 -299 -213c-22 0 -36 1 -61 6l-4 36c27 -8 42 -10 65 -10c93 0 170 63 187 153c18 95 -34 145 -149 145c-37 0 -68 -4 -107 -12l-101 -522c-15 -79 -11 -87 38 -90l50 -3l-6 -30l-156 3l-157 -3l6 30l52 3c50 3 57 11 72 90l86 449 c14 74 8 87 -39 90l-48 3l6 30l194 -3c61 0 121 3 182 3c136 0 208 -59 189 -155'], + 0xE3F8: [692,3,733,0,754,'751 537c-24 -120 -164 -213 -321 -213c-23 0 -39 1 -65 6l-4 36c28 -8 45 -10 69 -10c99 0 182 63 201 153c19 95 -37 145 -161 145c-39 0 -73 -4 -114 -12l-108 -522c-16 -79 -12 -87 40 -90l54 -3l-6 -30l-168 3l-168 -3l6 30l56 3c53 3 61 11 77 90l93 449 c15 74 8 87 -43 90l-51 3l7 30l208 -3l195 3c146 0 223 -59 203 -155'], + 0xE3F9: [681,3,686,44,649,'649 531c0 -121 -105 -212 -246 -212c-21 0 -42 4 -63 7v39h20h20c68 0 112 52 112 132c0 89 -46 134 -136 134c-30 0 -50 -3 -66 -9v-487c0 -88 2 -92 52 -95l52 -3v-40l-180 3l-170 -3v40l40 3c51 4 52 6 52 95v408c0 88 -3 94 -52 98l-40 3v37l188 -3l211 3 c92 0 206 -50 206 -150'], + 0xE3FA: [681,3,755,56,706,'706 531c0 -121 -113 -212 -264 -212c-23 0 -45 4 -67 7v39h21h21c73 0 120 52 120 132c0 89 -49 134 -146 134c-32 0 -53 -3 -70 -9v-487c0 -88 2 -92 56 -95l55 -3v-40l-193 3l-183 -3v40l44 3c55 4 56 6 56 95v408c0 88 -4 94 -56 98l-44 3v37l203 -3l225 3 c100 0 222 -50 222 -150'], + 0xE3FB: [681,3,673,-1,696,'694 531c-23 -121 -143 -212 -281 -212c-21 0 -41 4 -60 7l7 39h19h20c67 0 120 52 135 132c17 89 -19 134 -108 134c-29 0 -48 -3 -66 -9l-93 -487c-17 -88 -16 -92 33 -95l50 -3l-8 -40l-176 3l-167 -3l8 40l40 3c51 4 52 6 69 95l79 408c17 88 15 94 -33 98l-39 3 l7 37l185 -3l206 3c91 0 193 -50 173 -150'], + 0xE3FC: [681,3,741,8,757,'755 531c-25 -121 -154 -212 -302 -212c-23 0 -44 4 -65 7l8 39h21h20c72 0 129 52 146 132c18 89 -21 134 -116 134c-31 0 -52 -3 -71 -9l-100 -487c-18 -88 -17 -92 35 -95l53 -3l-8 -40l-188 3l-180 -3l8 40l43 3c55 4 57 6 75 95l84 408c18 88 16 94 -35 98l-41 3 l7 37l198 -3l222 3c97 0 206 -50 186 -150'], + 0xE3FD: [692,3,794,59,738,'738 213c-5 -54 -6 -130 -6 -216l-302 3l-371 -3v28l106 117l167 196l-273 325l4 29l247 -3l356 3c-2 -37 -3 -55 -3 -81s1 -44 3 -81h-37l-6 71c-4 39 -33 47 -166 47h-249c13 -20 24 -35 37 -52l57 -66l122 -148l1 -10l-245 -288h325c167 0 182 6 190 72l6 57h37'], + 0xE3FE: [692,3,871,73,802,'802 213c-6 -54 -7 -130 -7 -216l-325 3l-397 -3v28l113 117l179 196l-292 325l4 29l265 -3l382 3c-2 -37 -3 -55 -3 -81s1 -44 3 -81h-39l-7 71c-4 39 -36 47 -178 47h-267c14 -20 26 -35 40 -52l61 -66l131 -148l1 -10l-263 -288h348c179 0 196 6 204 72l7 57h40'], + 0xE3FF: [692,3,779,14,742,'742 692c-9 -37 -13 -55 -18 -81s-8 -44 -13 -81h-36l7 71c5 39 -23 47 -153 47h-244c9 -20 17 -35 27 -52l43 -66l91 -148l-1 -10l-296 -288h319c163 0 179 6 199 72l18 57h36c-16 -54 -32 -130 -48 -216l-295 3l-364 -3l5 28l126 117l201 196l-204 325l10 29l241 -3'], + 0xE400: [692,3,854,24,806,'806 692c-10 -37 -15 -55 -20 -81s-8 -44 -13 -81h-39l8 71c4 39 -25 47 -165 47h-261c9 -20 18 -35 28 -52l46 -66l98 -148l-1 -10l-318 -288h342c176 0 193 6 214 72l19 57h39c-17 -54 -34 -130 -51 -216l-317 3l-391 -3l6 28l135 117l216 196l-219 325l10 29l259 -3'], + 0xE401: [681,3,749,37,695,'695 238c-10 -50 -17 -180 -18 -241l-309 3l-331 -3v38c54 62 83 98 114 139l124 167l-144 195c-32 42 -56 71 -90 110v35l295 -3l296 3v-162h-40l-9 55c-6 41 -17 46 -94 46h-242l151 -203v-15l-207 -281h355c56 0 83 12 89 39l16 78h44'], + 0xE402: [681,3,823,49,755,'755 238c-11 -50 -18 -180 -19 -241l-332 3l-355 -3v38c58 62 89 98 122 139l133 167l-154 195c-34 42 -60 71 -97 110v35l317 -3l318 3v-162h-43l-10 55c-7 41 -18 46 -101 46h-260l163 -203v-15l-223 -281h382c59 0 89 12 94 39l18 78h47'], + 0xE403: [681,3,735,-7,707,'707 681l-31 -162h-39l2 55c1 41 -9 46 -84 46h-238l110 -203l-3 -15l-257 -281h348c55 0 84 12 94 39l31 78h43c-19 -50 -51 -180 -63 -241l-303 3l-324 -3l7 38c64 62 100 98 138 139l154 167l-104 195c-23 42 -41 71 -68 110l7 35l289 -3'], + 0xE404: [681,3,808,1,768,'768 681l-33 -162h-42l2 55c1 41 -9 46 -91 46h-254l117 -203l-3 -15l-276 -281h374c59 0 90 12 101 39l33 78h46c-20 -50 -54 -180 -68 -241l-325 3l-348 -3l8 38c69 62 107 98 148 139l165 167l-111 195c-25 42 -44 71 -72 110l7 35l310 -3'], + 0xE405: [692,3,689,31,660,'660 692c-6 -57 -8 -96 -8 -161h-34l-4 79c-1 24 -13 33 -44 33h-169c-3 -33 -4 -55 -4 -100v-423c0 -79 5 -87 56 -90l52 -3v-30l-160 3l-160 -3v30l53 3c50 3 55 11 55 90v423c0 43 -1 66 -4 100h-169c-30 0 -42 -9 -44 -33l-4 -79h-34c0 65 -2 104 -7 161l221 -3h172'], + 0xE406: [692,3,758,42,717,'717 692c-6 -57 -8 -96 -8 -161h-36l-5 79c-1 24 -14 33 -47 33h-181c-3 -33 -5 -55 -5 -100v-423c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l57 3c53 3 59 11 59 90v423c0 43 -1 66 -4 100h-182c-33 0 -45 -9 -47 -33l-4 -79h-37c0 65 -2 104 -8 161l238 -3h185'], + 0xE407: [692,3,676,96,736,'736 692c-16 -57 -26 -96 -38 -161h-33l10 79c4 24 -6 33 -36 33h-166c-9 -33 -14 -55 -23 -100l-81 -423c-16 -79 -12 -87 37 -90l51 -3l-6 -30l-157 3l-156 -3l6 30l51 3c50 3 57 11 72 90l81 423c9 43 12 66 15 100h-165c-30 0 -44 -9 -49 -33l-20 -79h-33 c13 65 18 104 24 161l216 -3h169'], + 0xE408: [692,3,744,113,799,'799 692c-17 -57 -27 -96 -41 -161h-35l11 79c4 24 -7 33 -39 33h-178c-10 -33 -15 -55 -25 -100l-87 -423c-16 -79 -12 -87 40 -90l54 -3l-6 -30l-168 3l-168 -3l6 30l56 3c53 3 61 11 77 90l87 423c9 43 13 66 16 100h-177c-32 0 -47 -9 -53 -33l-21 -79h-35 c13 65 19 104 25 161l232 -3h181'], + 0xE409: [681,3,754,32,722,'722 676c-9 -48 -12 -83 -14 -159h-44l-5 69c-17 40 -24 33 -78 33h-127v-484c0 -89 1 -91 52 -95l40 -3v-40l-170 3l-169 -3v40l41 3c51 4 52 6 52 95v484h-128c-33 0 -74 7 -77 -33l-5 -69h-44c-3 76 -5 111 -14 159l6 5l339 -3l338 3'], + 0xE40A: [681,3,827,43,784,'784 676c-9 -48 -13 -83 -15 -159h-47l-6 69c-17 40 -26 33 -83 33h-137v-484c0 -89 1 -91 56 -95l44 -3v-40l-183 3l-181 -3v40l43 3c55 4 56 6 56 95v484h-137c-36 0 -79 7 -83 -33l-6 -69h-46c-4 76 -6 111 -16 159l7 5l364 -3l363 3'], + 0xE40B: [681,3,739,101,794,'794 676c-18 -48 -28 -83 -45 -159h-42l8 69c-9 40 -18 33 -70 33h-125l-93 -484c-17 -89 -16 -91 33 -95l39 -3l-8 -40l-166 3l-166 -3l8 40l40 3c51 4 52 6 69 95l94 484h-125c-34 0 -72 7 -83 -33l-18 -69h-43c11 76 16 111 17 159l7 5l332 -3l331 3'], + 0xE40C: [681,3,812,118,861,'861 676c-19 -48 -29 -83 -47 -159h-46l8 69c-9 40 -18 33 -74 33h-134l-100 -484c-19 -89 -18 -91 35 -95l42 -3l-8 -40l-179 3l-178 -3l8 40l43 3c55 4 57 6 75 95l100 484h-134c-36 0 -77 7 -88 -33l-20 -69h-46c12 76 17 111 18 159l8 5l355 -3l357 3'], + 0xE40D: [709,20,946,71,880,'880 371c0 -222 -183 -391 -423 -391c-227 0 -386 148 -386 361c0 222 166 368 418 368c236 0 391 -134 391 -338zM763 337c0 211 -109 330 -301 330c-174 0 -274 -106 -274 -290c0 -213 122 -355 306 -355c170 0 269 117 269 315zM644 234h-32l-6 59l-8 25 c-20 9 -48 12 -123 12c-74 0 -102 -3 -122 -12l-8 -25l-6 -59h-33l4 111l-4 116h33l6 -52c1 -9 4 -18 8 -26c20 -8 50 -11 122 -11s103 3 123 11c4 8 7 17 8 26l6 52h32l-3 -116'], + 0xE40E: [709,20,1034,86,954,'954 371c0 -222 -197 -391 -454 -391c-244 0 -414 148 -414 361c0 222 177 368 448 368c254 0 420 -134 420 -338zM828 337c0 211 -117 330 -322 330c-188 0 -295 -106 -295 -290c0 -213 131 -355 328 -355c183 0 289 117 289 315zM701 234h-35l-6 59l-9 25 c-21 9 -52 12 -131 12c-80 0 -110 -3 -131 -12l-10 -25l-6 -59h-35l4 111l-4 116h35l6 -52c1 -9 5 -18 10 -26c21 -8 53 -11 131 -11c77 0 110 3 131 11c4 8 8 17 9 26l6 52h35l-4 -116'], + 0xE40F: [709,20,928,84,897,'890 371c-43 -222 -254 -391 -489 -391c-223 0 -350 148 -309 361c42 222 233 368 480 368c231 0 357 -134 318 -338zM769 337c41 211 -43 330 -231 330c-171 0 -290 -106 -325 -290c-41 -213 51 -355 232 -355c167 0 286 117 324 315zM677 461l-26 -116l-18 -111h-32 l6 59l-4 25c-17 9 -44 12 -117 12s-101 -3 -122 -12l-13 -25l-17 -59h-32l24 111l20 116h32l-5 -52c-1 -9 1 -18 3 -26c18 -8 48 -11 118 -11c71 0 101 3 122 11c6 8 11 17 13 26l16 52h32'], + 0xE410: [709,20,1015,99,972,'965 371c-46 -222 -274 -391 -526 -391c-238 0 -375 148 -331 361c46 222 250 368 515 368c249 0 384 -134 342 -338zM835 337c44 211 -47 330 -248 330c-184 0 -311 -106 -349 -290c-44 -213 55 -355 249 -355c179 0 307 117 348 315zM736 461l-28 -116l-19 -111h-35 l7 59l-4 25c-19 9 -48 12 -126 12s-109 -3 -131 -12l-14 -25l-18 -59h-35l27 111l20 116h35l-5 -52c-1 -9 0 -18 3 -26c19 -8 51 -11 127 -11c75 0 108 3 130 11c6 8 12 17 15 26l16 52h35'], + 0xE411: [695,17,926,61,868,'868 346c0 -228 -154 -363 -414 -363c-250 0 -393 127 -393 349c0 230 154 363 419 363c245 0 388 -129 388 -349zM704 324c0 115 -33 209 -93 264c-40 35 -83 51 -146 51c-65 0 -124 -20 -164 -57c-50 -45 -76 -124 -76 -227c0 -116 32 -210 92 -264 c40 -36 84 -52 144 -52c159 0 243 98 243 285zM633 241h-43l-7 50c-3 26 -20 37 -62 37h-113c-42 0 -59 -11 -62 -37l-7 -50h-43l3 108l-3 107h43l7 -57c2 -16 16 -21 62 -21h113c46 0 60 5 62 21l7 57h43l-3 -107'], + 0xE412: [695,17,1012,75,941,'941 346c0 -228 -165 -363 -445 -363c-268 0 -421 127 -421 349c0 230 165 363 449 363c264 0 417 -129 417 -349zM765 324c0 115 -36 209 -100 264c-42 35 -89 51 -157 51c-69 0 -132 -20 -176 -57c-53 -45 -82 -124 -82 -227c0 -116 36 -210 100 -264 c42 -36 90 -52 154 -52c171 0 261 98 261 285zM689 241h-47l-7 50c-3 26 -22 37 -66 37h-122c-44 0 -63 -11 -67 -37l-7 -50h-46l3 108l-3 107h46l7 -57c3 -16 18 -21 67 -21h122c49 0 64 5 66 21l7 57h47l-3 -107'], + 0xE413: [695,17,907,71,882,'874 346c-44 -228 -221 -363 -476 -363c-245 0 -360 127 -318 349c45 230 221 363 480 363c241 0 356 -129 314 -349zM709 324c22 115 7 209 -41 264c-32 35 -71 51 -133 51c-63 0 -125 -20 -172 -57c-57 -45 -98 -124 -118 -227c-22 -116 -8 -210 40 -264 c32 -36 72 -52 131 -52c156 0 257 98 293 285zM665 456l-24 -107l-17 -108h-43l3 50c2 26 -13 37 -54 37h-111c-40 0 -59 -11 -68 -37l-16 -50h-42l24 108l17 107h43l-5 -57c-1 -16 12 -21 57 -21h111c45 0 60 5 65 21l17 57h43'], + 0xE414: [695,17,992,86,956,'947 346c-47 -228 -237 -363 -511 -363c-262 0 -386 127 -340 349c47 230 236 363 515 363c258 0 381 -129 336 -349zM770 324c24 115 8 209 -44 264c-34 35 -76 51 -143 51s-134 -20 -184 -57c-62 -45 -105 -124 -127 -227c-24 -116 -9 -210 43 -264 c34 -36 78 -52 141 -52c167 0 276 98 314 285zM723 456l-25 -107l-19 -108h-46l3 50c2 26 -14 37 -57 37h-120c-43 0 -64 -11 -73 -37l-17 -50h-46l26 108l19 107h46l-5 -57c-1 -16 13 -21 61 -21h119c48 0 64 5 70 21l18 57h46'], + 0xE415: [705,3,725,13,716,'716 679c-88 -97 -124 -142 -205 -253c-63 -88 -78 -122 -78 -177v-129c0 -79 5 -87 56 -90l52 -3v-30l-160 3l-160 -3v30l53 3c50 3 55 11 55 90v142c0 16 -3 30 -9 40l-136 216c-45 73 -102 125 -139 130l-32 3v29l126 24c3 1 6 1 6 1c21 0 64 -46 98 -103l156 -261 l112 163c44 63 77 116 118 190h87v-15'], + 0xE416: [705,3,797,24,778,'778 679c-95 -97 -133 -142 -220 -253c-68 -88 -84 -122 -84 -177v-129c0 -79 6 -87 60 -90l56 -3v-30l-172 3l-171 -3v30l56 3c54 3 60 11 60 90v142c0 16 -4 30 -11 40l-145 216c-49 73 -110 125 -150 130l-33 3v29l134 24c4 1 7 1 7 1c22 0 69 -46 105 -103l168 -261 l120 163c47 63 82 116 127 190h93v-15'], + 0xE417: [705,3,711,95,792,'792 694l-3 -15c-105 -97 -149 -142 -249 -253c-79 -88 -101 -122 -111 -177l-25 -129c-15 -79 -11 -87 37 -90l51 -3l-6 -30l-156 3l-157 -3l6 30l52 3c49 3 56 11 71 90l28 142c3 16 2 30 -2 40l-91 216c-31 73 -77 125 -112 130l-30 3l5 29l128 24c3 1 6 1 6 1 c21 0 55 -46 77 -103l102 -261l142 163c54 63 97 116 152 190h85'], + 0xE418: [705,3,782,111,859,'859 694l-3 -15c-113 -97 -160 -142 -267 -253c-85 -88 -108 -122 -120 -177l-26 -129c-16 -79 -12 -87 40 -90l54 -3l-6 -30l-168 3l-168 -3l6 30l56 3c53 3 61 11 77 90l29 142c4 16 3 30 -2 40l-97 216c-34 73 -82 125 -120 130l-33 3l6 29l137 24c3 1 7 1 7 1 c22 0 58 -46 82 -103l110 -261l152 163c58 63 104 116 163 190h91'], + 0xE419: [695,3,756,26,729,'729 659l-191 -261c-20 -26 -38 -57 -58 -100v-163c0 -89 1 -91 52 -95l40 -3v-40l-170 3l-169 -3v40l41 3c51 4 52 6 52 95v139c-17 36 -29 58 -48 85l-111 162c-60 87 -85 101 -141 101v37l174 36c50 -27 79 -60 124 -136l117 -203l204 322h84v-19'], + 0xE41A: [695,3,830,38,792,'792 659l-206 -261c-21 -26 -40 -57 -62 -100v-163c0 -89 1 -91 56 -95l44 -3v-40l-183 3l-181 -3v40l43 3c55 4 56 6 56 95v139c-18 36 -31 58 -51 85l-120 162c-64 87 -91 101 -150 101v37l186 36c53 -27 85 -60 133 -136l125 -203l220 322h90v-19'], + 0xE41B: [695,3,740,102,802,'802 678l-4 -19l-238 -261c-24 -26 -47 -57 -76 -100l-31 -163c-17 -89 -17 -91 33 -95l39 -3l-8 -40l-166 3l-166 -3l7 40l41 3c51 4 52 6 69 95l27 139c-10 36 -18 58 -31 85l-78 162c-42 87 -64 101 -118 101l7 37l177 36c44 -27 66 -60 95 -136l76 -203l262 322h83'], + 0xE41C: [695,3,813,119,870,'870 678l-4 -19l-256 -261c-26 -26 -50 -57 -81 -100l-34 -163c-18 -89 -17 -91 36 -95l41 -3l-8 -40l-178 3l-178 -3l8 40l43 3c55 4 56 6 75 95l28 139c-11 36 -19 58 -33 85l-83 162c-45 87 -69 101 -127 101l7 37l190 36c47 -27 71 -60 103 -136l81 -203l282 322h88'], + 0xE41D: [692,3,791,56,734,'734 213c-6 -54 -18 -130 -18 -216l-321 3l-322 -3c0 86 -12 162 -17 216h37l6 -57c8 -66 34 -72 201 -72h190c166 0 193 6 200 72l7 57h37zM678 500h-37l-6 71c-4 33 -46 37 -138 37h-207c-90 0 -132 -4 -135 -37l-7 -71h-37c3 37 4 55 4 81s-1 74 -4 111l284 -3l283 3 c-2 -37 -3 -85 -3 -111s1 -44 3 -81zM564 234h-33l-5 59l-9 25c-20 9 -48 12 -122 12s-103 -3 -122 -12l-9 -25l-5 -59h-33l3 111l-3 116h33l5 -52c1 -9 4 -18 9 -26c19 -8 50 -11 122 -11s102 3 122 11c4 8 7 17 9 26l5 52h33l-4 -116'], + 0xE41E: [692,3,867,69,797,'797 213c-6 -54 -19 -130 -19 -216l-345 3l-345 -3c0 86 -13 162 -19 216h40l7 -57c8 -66 36 -72 215 -72h204c179 0 207 6 215 72l7 57h40zM737 500h-40l-7 71c-3 33 -49 37 -147 37h-222c-97 0 -142 -4 -145 -37l-7 -71h-40c2 37 3 55 3 81s-1 74 -3 111l304 -3l304 3 c-2 -37 -3 -85 -3 -111s1 -44 3 -81zM614 234h-35l-6 59l-9 25c-21 9 -51 12 -131 12s-110 -3 -131 -12l-9 -25l-6 -59h-35l3 111l-3 116h35l6 -52c1 -9 4 -18 9 -26c21 -8 54 -11 131 -11s110 3 131 11c5 8 8 17 9 26l6 52h35l-3 -116'], + 0xE41F: [692,3,775,28,754,'717 213c-16 -54 -42 -130 -59 -216l-315 3l-315 -3c16 86 19 162 24 216h37l-5 -57c-5 -66 19 -72 183 -72h186c163 0 190 6 210 72l17 57h37zM754 692l-24 -111c-5 -26 -8 -44 -13 -81h-36l7 71c3 33 -38 37 -127 37h-203c-89 0 -130 -4 -140 -37l-20 -71h-36 c9 37 14 55 19 81l18 111l277 -3zM598 461l-26 -116l-18 -111h-32l6 59l-4 25c-17 9 -44 12 -117 12s-101 -3 -122 -12l-13 -25l-17 -59h-32l24 111l20 116h32l-5 -52c-1 -9 1 -18 3 -26c18 -8 47 -11 118 -11c70 0 101 3 122 11c6 8 10 17 13 26l16 52h32'], + 0xE420: [692,3,851,39,819,'778 213c-16 -54 -45 -130 -62 -216l-338 3l-339 -3c18 86 21 162 26 216h39l-5 -57c-5 -66 21 -72 197 -72h199c175 0 204 6 226 72l18 57h39zM819 692c-10 -37 -21 -85 -27 -111c-5 -26 -7 -44 -13 -81h-39l8 71c3 33 -41 37 -137 37h-218c-95 0 -139 -4 -150 -37 l-21 -71h-39c10 37 15 55 20 81c6 26 14 74 20 111l297 -3zM651 461l-28 -116l-19 -111h-34l6 59l-4 25c-19 9 -48 12 -126 12s-108 -3 -131 -12l-14 -25l-18 -59h-34l26 111l20 116h35l-5 -52c-1 -9 1 -18 4 -26c19 -8 50 -11 126 -11c75 0 108 3 130 11c7 8 12 17 15 26 l16 52h35'], + 0xE421: [681,3,804,56,747,'747 238c-10 -50 -23 -180 -24 -241l-322 3l-321 -3c-1 61 -14 191 -24 241h43l17 -78c5 -27 39 -39 95 -39h381c56 0 89 12 95 39l16 78h44zM691 459h-40l-9 55c-6 41 -17 46 -95 46h-292c-77 0 -88 -5 -95 -46l-8 -55h-41v222l290 -3l290 3v-222zM570 241h-43l-7 50 c-3 26 -21 37 -62 37h-113c-42 0 -59 -11 -63 -37l-6 -50h-44l4 108l-4 107h44l6 -57c3 -16 17 -21 63 -21h113c46 0 60 5 62 21l7 57h43l-3 -107'], + 0xE422: [681,3,881,69,811,'811 238c-11 -50 -25 -180 -26 -241l-345 3l-345 -3c-1 61 -15 191 -26 241h47l17 -78c6 -27 43 -39 102 -39h410c59 0 96 12 102 39l17 78h47zM751 459h-43l-9 55c-7 41 -19 46 -102 46h-314c-83 0 -95 -5 -102 -46l-9 -55h-43v222l311 -3l311 3v-222zM621 241h-46 l-7 50c-4 26 -23 37 -67 37h-122c-44 0 -63 -11 -67 -37l-7 -50h-46l3 108l-3 107h46l7 -57c3 -16 18 -21 67 -21h122c49 0 64 5 67 21l7 57h46l-3 -107'], + 0xE423: [681,3,788,34,765,'734 238c-19 -50 -57 -180 -70 -241l-314 3l-316 -3c11 61 23 191 23 241h43l1 -78c0 -27 31 -39 85 -39h374c55 0 90 12 100 39l32 78h42zM765 681l-43 -222h-39l2 55c1 41 -9 46 -84 46h-287c-75 0 -87 -5 -101 -46l-20 -55h-39l43 222l283 -3zM603 456l-24 -107 l-17 -108h-43l3 50c2 26 -13 37 -54 37h-111c-40 0 -59 -11 -68 -37l-16 -50h-42l24 108l17 107h43l-5 -57c-1 -16 12 -21 57 -21h111c45 0 60 5 65 21l17 57h43'], + 0xE424: [681,3,865,46,830,'797 238c-20 -50 -61 -180 -75 -241l-337 3l-339 -3c11 61 24 191 24 241h46l1 -78c1 -27 34 -39 92 -39h401c59 0 97 12 108 39l34 78h45zM830 681l-45 -222h-43l2 55c2 41 -9 46 -90 46h-307c-82 0 -94 -5 -110 -46l-20 -55h-42l45 222l305 -3zM657 456l-26 -107 l-19 -108h-46l4 50c2 26 -14 37 -58 37h-119c-44 0 -64 -11 -73 -37l-17 -50h-46l26 108l18 107h46l-5 -57c-1 -16 13 -21 61 -21h119c49 0 65 5 70 21l19 57h46'], + 0xE425: [692,3,755,30,709,'709 173c-6 -55 -7 -90 -7 -176l-332 3l-340 -3v28s90 98 105 117l330 388c40 47 66 76 93 118h-248c-133 0 -163 -8 -166 -47l-6 -71h-38c3 37 4 49 4 81s-1 44 -4 81h180l253 -3l170 3l5 -29l-530 -619h297c167 0 182 6 190 72l7 57h37'], + 0xE426: [692,3,829,41,770,'770 173c-6 -55 -7 -90 -7 -176l-357 3l-365 -3v28s97 98 114 117l353 388c43 47 71 76 101 118h-267c-143 0 -175 -8 -178 -47l-7 -71h-40c2 37 4 49 4 81s-2 44 -4 81h193l272 -3l182 3l5 -29l-569 -619h320c179 0 195 6 203 72l7 57h40'], + 0xE427: [692,3,740,-15,779,'779 692l-2 -29l-638 -619h292c163 0 180 6 200 72l17 57h36c-16 -55 -23 -90 -40 -176l-325 3l-334 -3l5 28l127 117l397 388c48 47 79 76 114 118h-243c-131 0 -161 -8 -172 -47l-20 -71h-36c9 37 13 49 19 81s7 44 12 81h176c96 0 151 -3 248 -3'], + 0xE428: [692,3,813,-7,845,'845 692l-1 -29l-685 -619h313c175 0 193 6 214 72l19 57h39c-17 -55 -26 -90 -43 -176l-349 3l-359 -3l6 28l135 117l427 388c52 47 85 76 123 118h-262c-140 0 -172 -8 -184 -47l-21 -71h-39c10 37 13 49 20 81c6 32 8 44 13 81h189l266 -3'], + 0xE429: [681,3,750,37,695,'695 174c-10 -50 -17 -116 -18 -177l-309 3l-331 -3v38c54 62 83 99 114 139l333 446h-242c-77 0 -88 -5 -95 -46l-8 -55h-41v162l297 -3l295 3v-35c-35 -39 -61 -70 -90 -110l-355 -479h301c56 0 83 12 89 39l16 78h44'], + 0xE42A: [681,3,824,49,755,'755 174c-11 -50 -18 -116 -19 -177l-332 3l-355 -3v38c58 62 89 99 122 139l358 446h-260c-83 0 -95 -5 -102 -46l-9 -55h-43v162l318 -3l317 3v-35c-37 -39 -65 -70 -97 -110l-380 -479h323c59 0 89 12 94 39l18 78h47'], + 0xE42B: [681,3,736,-7,764,'764 681l-7 -35c-42 -39 -73 -70 -110 -110l-439 -479h295c54 0 83 12 94 39l31 78h43c-20 -50 -39 -116 -51 -177l-303 3l-324 -3l7 38l138 139l412 446h-237c-76 0 -87 -5 -102 -46l-19 -55h-39l31 162l290 -3'], + 0xE42C: [681,3,809,1,829,'829 681l-7 -35c-45 -39 -79 -70 -118 -110l-471 -479h316c59 0 90 12 101 39l33 78h46c-20 -50 -41 -116 -55 -177l-325 3l-348 -3l8 38l148 139l443 446h-255c-81 0 -94 -5 -109 -46l-20 -55h-43l34 162l311 -3'], + 0xE42D: [690,13,706,17,683,'683 665l-315 -658l-42 -20l-309 659v9l67 35l321 -3l275 3zM596 620c0 16 -13 23 -49 26h-362c-27 -2 -44 -8 -44 -19c0 -12 12 -34 22 -55l208 -452l187 405c14 30 38 82 38 95'], + 0xE42E: [690,13,776,27,742,'742 665l-338 -658l-45 -20l-332 659v9l73 35l344 -3l296 3zM649 620c0 16 -14 23 -52 26h-389c-29 -2 -48 -8 -48 -19c0 -12 13 -34 24 -55l223 -452l202 405c15 30 40 82 40 95'], + 0xE42F: [690,13,691,97,756,'756 690l-3 -25l-435 -658l-44 -20l-177 659l2 9l73 35l313 -3zM660 620c3 16 -8 23 -43 26h-354c-28 -2 -46 -8 -48 -19c-2 -12 5 -34 11 -55l117 -452l262 405c19 30 53 82 55 95'], + 0xE430: [690,13,761,113,821,'821 690l-3 -25l-467 -658l-48 -20l-190 659l2 9l79 35l336 -3zM718 620c3 16 -9 23 -46 26h-381c-29 -2 -49 -8 -51 -19c-2 -12 6 -34 12 -55l125 -452l281 405c21 30 57 82 60 95'], + 0xE431: [676,13,742,37,704,'704 641c-7 -13 -13 -26 -30 -65l-197 -438l-58 -131l-82 -20l-299 633l-1 14l103 42l343 -2c138 0 186 0 218 2zM602 582c0 16 -10 29 -26 32h-325c-11 -3 -19 -13 -19 -27c0 -8 3 -18 6 -29l183 -401l111 252c24 56 42 91 64 148c4 8 6 18 6 25'], + 0xE432: [676,13,815,49,765,'765 641c-8 -13 -14 -26 -32 -65l-212 -438l-62 -131l-88 -20l-321 633l-1 14l110 42l369 -2l234 2zM655 582c0 16 -10 29 -28 32h-348c-12 -3 -20 -13 -20 -27c0 -8 2 -18 6 -29l196 -401l119 252c26 56 45 91 69 148c4 8 6 18 6 25'], + 0xE433: [676,13,727,113,774,'774 676l-4 -35c-10 -13 -18 -26 -42 -65l-278 -438l-82 -131l-84 -20l-171 633l2 14l108 42l337 -2c135 0 182 0 214 2zM658 582c3 16 -4 29 -19 32h-319c-11 -3 -20 -13 -23 -27c-1 -8 -1 -18 0 -29l102 -401l158 252c34 56 58 91 91 148c5 8 9 18 10 25'], + 0xE434: [676,13,799,131,840,'840 676l-4 -35c-11 -13 -19 -26 -46 -65l-298 -438l-87 -131l-91 -20l-183 633l2 14l116 42l361 -2zM716 582c3 16 -4 29 -21 32h-342c-12 -3 -22 -13 -25 -27c-1 -8 -1 -18 0 -29l110 -401l169 252c37 56 62 91 98 148c5 8 9 18 11 25'], + 0xE435: [482,11,635,59,604,'604 79l-48 -44c-32 -29 -64 -46 -90 -46c-43 0 -88 55 -120 159c-29 -35 -72 -80 -113 -116c-31 -23 -64 -43 -109 -43c-26 0 -52 44 -58 77c-15 80 -1 199 32 288c15 31 31 57 55 79c31 31 66 48 91 49c24 0 57 -4 76 -49l67 -183c10 17 24 42 27 48 c31 59 41 87 51 170c5 -2 15 -5 19 -7c9 -15 16 -24 25 -35c-3 -20 -34 -80 -46 -101c-13 -22 -38 -66 -65 -106l17 -47c12 -30 34 -72 48 -91c15 -19 29 -22 46 -22c18 0 44 8 81 39zM335 179l-60 175c-15 44 -31 62 -64 62c-25 0 -49 -29 -57 -62 c-22 -83 -20 -191 -7 -255c5 -26 13 -40 28 -40c21 0 51 9 81 35c25 21 52 51 79 85'], + 0xE436: [482,11,700,73,657,'657 79l-51 -44c-34 -29 -69 -46 -96 -46c-47 0 -95 55 -130 159c-31 -35 -77 -80 -121 -116c-33 -23 -68 -43 -116 -43c-29 0 -56 44 -63 77c-16 80 -1 199 34 288c16 31 34 57 59 79c34 31 71 48 98 49c26 0 61 -4 81 -49l72 -183c12 17 26 42 30 48 c33 59 43 87 55 170c5 -2 15 -5 19 -7c11 -15 18 -24 27 -35c-3 -20 -36 -80 -49 -101c-14 -22 -40 -66 -69 -106c5 -15 11 -30 18 -47c12 -30 36 -72 51 -91c16 -19 31 -22 50 -22s47 8 86 39zM369 179l-64 175c-17 44 -34 62 -70 62c-27 0 -51 -29 -61 -62 c-23 -83 -20 -191 -7 -255c5 -26 14 -40 30 -40c22 0 55 9 87 35c27 21 56 51 85 85'], + 0xE437: [482,11,605,34,550,'550 79l-55 -44c-38 -29 -72 -46 -96 -46c-42 0 -72 55 -79 159c-35 -35 -86 -80 -134 -116c-35 -23 -71 -43 -113 -43c-25 0 -40 44 -38 77c4 80 45 199 97 288c21 31 43 57 70 79c38 31 75 48 99 49c23 0 53 -4 61 -49l21 -183l37 48c44 59 59 87 88 170 c5 -2 13 -5 16 -7c6 -15 10 -24 16 -35c-8 -20 -51 -80 -67 -101c-18 -22 -51 -66 -86 -106c1 -15 3 -30 5 -47c4 -30 15 -72 24 -91c10 -19 23 -22 39 -22c18 0 44 8 86 39zM317 179l-16 175c-4 44 -15 62 -47 62c-24 0 -53 -29 -69 -62c-40 -83 -62 -191 -65 -255 c-2 -26 3 -40 17 -40c20 0 51 9 86 35c28 21 61 51 94 85'], + 0xE438: [482,11,668,46,600,'600 79l-60 -44c-40 -29 -77 -46 -103 -46c-44 0 -77 55 -84 159c-38 -35 -93 -80 -144 -116c-38 -23 -76 -43 -122 -43c-27 0 -42 44 -40 77c4 80 48 199 104 288c23 31 46 57 76 79c40 31 79 48 105 49c25 0 57 -4 65 -49l23 -183l40 48c47 59 64 87 95 170 c4 -2 14 -5 17 -7c6 -15 10 -24 17 -35c-8 -20 -55 -80 -72 -101c-19 -22 -55 -66 -92 -106c1 -15 3 -30 5 -47c5 -30 16 -72 26 -91c11 -19 25 -22 42 -22c19 0 47 8 92 39zM350 179l-18 175c-4 44 -16 62 -50 62c-26 0 -57 -29 -74 -62c-43 -83 -67 -191 -70 -255 c-2 -26 3 -40 19 -40c21 0 54 9 91 35c31 21 66 51 102 85'], + 0xE439: [469,17,634,57,623,'623 86l-17 -16c-75 -65 -112 -87 -146 -87c-51 0 -81 38 -118 123c-24 -26 -58 -59 -83 -81c-30 -22 -62 -42 -114 -42c-37 0 -70 31 -79 75c-19 97 -3 205 26 296c15 32 31 58 52 79c32 30 47 36 68 36c36 0 71 -13 95 -36c22 -21 41 -52 63 -110l27 -70 c8 14 15 27 18 32c20 40 50 85 70 165l18 -9c9 -13 11 -25 22 -39c-2 -14 -33 -75 -45 -96c-19 -33 -39 -67 -63 -102c18 -45 45 -96 64 -120c10 -12 25 -19 40 -19c13 0 20 3 49 23l31 21zM325 153l-69 189c-10 30 -19 39 -35 39c-14 0 -30 -17 -36 -42 c-9 -37 -13 -79 -14 -119c3 -50 12 -96 17 -118c4 -20 16 -37 26 -37c19 0 43 18 65 38c11 10 27 27 46 50'], + 0xE43A: [469,17,699,70,678,'678 86l-18 -16c-81 -65 -120 -87 -157 -87c-54 0 -87 38 -126 123c-26 -26 -62 -59 -90 -81c-32 -22 -67 -42 -122 -42c-39 0 -76 31 -85 75c-21 97 -3 205 27 296c17 32 35 58 57 79c34 30 50 36 72 36c40 0 77 -13 103 -36c24 -21 44 -52 68 -110l28 -70 c9 14 16 27 20 32c21 40 53 85 75 165l20 -9c8 -13 11 -25 23 -39c-2 -14 -36 -75 -49 -96c-20 -33 -42 -67 -67 -102c19 -45 48 -96 68 -120c11 -12 28 -19 44 -19c13 0 21 3 53 23l32 21zM358 153l-73 189c-12 30 -21 39 -38 39c-15 0 -32 -17 -39 -42 c-10 -37 -14 -79 -15 -119c3 -50 13 -96 18 -118c4 -20 17 -37 28 -37c20 0 46 18 70 38c11 10 28 27 49 50'], + 0xE43B: [469,17,604,32,571,'571 86l-21 -16c-86 -65 -127 -87 -159 -87c-48 0 -68 38 -83 123c-30 -26 -69 -59 -99 -81c-33 -22 -69 -42 -118 -42c-35 0 -60 31 -58 75c4 97 45 205 93 296c22 32 44 58 69 79c37 30 52 36 72 36c35 0 65 -13 82 -36c17 -21 28 -52 35 -110l9 -70c12 14 21 27 26 32 c27 40 66 85 105 165l14 -9c5 -13 5 -25 12 -39c-5 -14 -49 -75 -65 -96c-26 -33 -53 -67 -84 -102c7 -45 21 -96 33 -120c7 -12 20 -19 34 -19c12 0 20 3 52 23l34 21zM302 153l-22 189c-3 30 -9 39 -24 39c-13 0 -33 -17 -44 -42c-17 -37 -31 -79 -41 -119 c-9 -50 -11 -96 -12 -118c-1 -20 7 -37 17 -37c18 0 45 18 70 38c13 10 32 27 56 50'], + 0xE43C: [469,17,667,44,622,'622 86l-22 -16c-93 -65 -136 -87 -171 -87c-52 0 -73 38 -90 123c-31 -26 -74 -59 -105 -81c-36 -22 -74 -42 -127 -42c-37 0 -64 31 -62 75c4 97 48 205 100 296c23 32 47 58 73 79c40 30 57 36 78 36c37 0 70 -13 88 -36c18 -21 30 -52 38 -110l9 -70 c13 14 23 27 28 32c29 40 71 85 112 165l16 -9c5 -13 5 -25 12 -39c-5 -14 -52 -75 -69 -96c-28 -33 -57 -67 -90 -102c7 -45 22 -96 35 -120c8 -12 22 -19 37 -19c13 0 21 3 56 23l36 21zM333 153l-23 189c-3 30 -10 39 -26 39c-14 0 -35 -17 -48 -42 c-18 -37 -32 -79 -44 -119c-9 -50 -11 -96 -12 -118c-1 -20 8 -37 18 -37c19 0 48 18 76 38c13 10 34 27 59 50'], + 0xE43D: [711,277,686,124,614,'610 235c28 -136 -91 -246 -266 -246c-58 0 -103 9 -152 31c-3 -78 13 -191 23 -280c-32 -4 -40 -9 -68 -17l-18 8l-5 642l5 125c2 59 10 94 68 137c56 44 132 76 179 76c59 0 116 -46 127 -101c12 -55 -4 -86 -63 -164c-2 -4 -7 -10 -9 -14c-15 -21 -20 -33 -20 -46 l1 -5c57 -12 84 -21 115 -39c46 -26 71 -55 83 -107zM512 228c-17 85 -82 124 -182 124c-27 0 -45 -3 -84 -16l-9 12l11 43c12 0 17 0 25 -1c5 -1 16 -1 25 -1c47 0 66 13 92 38c46 78 58 104 49 148c-11 51 -57 86 -114 86c-56 0 -99 -30 -109 -82c-3 -22 -7 -99 -10 -200 l-11 -213c2 -16 4 -26 5 -36c14 -66 76 -107 163 -107c48 0 85 14 111 43c37 41 51 101 38 162'], + 0xE43E: [711,277,755,143,668,'664 235c30 -136 -97 -246 -285 -246c-63 0 -111 9 -164 31c-3 -78 14 -191 25 -280c-34 -4 -43 -9 -73 -17l-19 8l-5 642l5 125c2 59 11 94 72 137c60 44 143 76 193 76c63 0 124 -46 136 -101c13 -55 -4 -86 -67 -164c-3 -4 -7 -10 -10 -14c-16 -21 -22 -33 -22 -46 l1 -5c62 -12 91 -21 124 -39c49 -26 76 -55 89 -107zM559 228c-18 85 -88 124 -195 124c-30 0 -49 -3 -91 -16l-10 12l13 43c12 0 18 0 27 -1c4 -1 17 -1 27 -1c50 0 70 13 98 38c49 78 63 104 53 148c-13 51 -62 86 -123 86c-60 0 -106 -30 -117 -82 c-4 -22 -7 -99 -11 -200l-11 -213c1 -16 4 -26 5 -36c15 -66 81 -107 174 -107c52 0 93 14 120 43c40 41 55 101 41 162'], + 0xE43F: [711,277,654,17,592,'592 235c-4 -136 -143 -246 -310 -246c-55 0 -96 9 -138 31c-21 -78 -32 -191 -43 -280c-31 -4 -40 -9 -68 -17l-16 8l145 642l33 125c16 59 32 94 96 137c64 44 144 76 189 76c56 0 99 -46 98 -101c-2 -55 -25 -86 -98 -164c-4 -4 -9 -10 -12 -14 c-19 -21 -28 -33 -31 -46v-5c52 -12 76 -21 101 -39c38 -26 55 -55 54 -107zM508 575c1 51 -34 86 -89 86c-53 0 -100 -30 -122 -82c-9 -22 -30 -99 -56 -200l-60 -213c-2 -16 -2 -26 -4 -36c-2 -66 48 -107 130 -107c46 0 85 14 116 43c46 41 73 101 75 162 c3 85 -50 124 -145 124c-26 0 -44 -3 -84 -16l-6 12l21 43c11 0 16 0 23 -1c5 -1 15 -1 24 -1c45 0 65 13 96 38c62 78 80 104 81 148'], + 0xE440: [711,277,721,28,645,'645 235c-5 -136 -154 -246 -333 -246c-60 0 -103 9 -148 31c-23 -78 -34 -191 -46 -280c-34 -4 -43 -9 -73 -17l-17 8l155 642l36 125c17 59 34 94 103 137c68 44 154 76 202 76c60 0 107 -46 105 -101s-26 -86 -105 -164c-3 -4 -9 -10 -13 -14c-20 -21 -29 -33 -32 -46 v-5c55 -12 81 -21 108 -39c40 -26 59 -55 58 -107zM555 575c1 51 -37 86 -96 86c-57 0 -108 -30 -131 -82c-9 -22 -32 -99 -60 -200l-64 -213c-3 -16 -3 -26 -4 -36c-3 -66 50 -107 139 -107c49 0 92 14 124 43c49 41 78 101 81 162c3 85 -54 124 -156 124 c-28 0 -47 -3 -90 -16l-7 12l23 43c11 0 17 0 25 -1c5 -1 16 -1 26 -1c48 0 70 13 103 38c66 78 85 104 87 148'], + 0xE441: [718,272,693,88,638,'633 221c33 -134 -81 -238 -260 -238c-60 0 -108 9 -174 32c0 -9 -2 -18 -2 -26l20 -240c-20 -2 -26 -5 -74 -14c-16 -4 -21 -5 -36 -7l-11 7l-5 249l-2 471c-1 87 5 109 67 161c99 81 141 102 204 102c81 0 143 -41 158 -105c13 -50 -15 -105 -69 -179 c-3 -4 -8 -10 -10 -14c-11 -19 -17 -29 -18 -42v-7c122 -13 191 -62 212 -150zM490 211c-20 82 -75 128 -153 128c-21 0 -41 -3 -83 -14l-9 6l6 51c11 -3 17 -4 33 -4c51 0 69 18 84 39c28 36 40 59 46 71c10 28 15 63 7 96c-12 46 -54 76 -110 76c-61 0 -88 -36 -89 -119 l-9 -331v-27c0 -19 3 -40 6 -55c16 -64 77 -108 150 -108c56 0 93 24 115 73c14 34 16 75 6 118'], + 0xE442: [718,272,762,104,694,'688 221c36 -134 -86 -238 -279 -238c-63 0 -115 9 -186 32c0 -9 -3 -18 -3 -26l22 -240c-22 -2 -28 -5 -79 -14c-18 -4 -23 -5 -39 -7l-12 7l-5 249l-2 471c-1 87 5 109 72 161c106 81 151 102 219 102c87 0 153 -41 169 -105c14 -50 -16 -105 -73 -179 c-4 -4 -9 -10 -11 -14c-13 -19 -19 -29 -20 -42v-7c131 -13 205 -62 227 -150zM535 211c-21 82 -80 128 -164 128c-23 0 -44 -3 -89 -14l-10 6l7 51c11 -3 17 -4 35 -4c55 0 75 18 91 39c29 36 43 59 49 71c11 28 16 63 7 96c-12 46 -58 76 -118 76c-65 0 -94 -36 -96 -119 l-10 -331v-27c0 -19 4 -40 8 -55c17 -64 82 -108 161 -108c60 0 99 24 123 73c14 34 17 75 6 118'], + 0xE443: [718,272,661,-13,611,'611 221c0 -134 -132 -238 -303 -238c-57 0 -100 9 -158 32c-2 -9 -7 -18 -8 -26l-36 -240c-21 -2 -27 -5 -75 -14c-16 -4 -20 -5 -35 -7l-9 7l53 249l107 471c19 87 30 109 102 161c112 81 157 102 217 102c78 0 127 -41 126 -105c1 -50 -38 -105 -106 -179 c-5 -4 -10 -10 -14 -14c-15 -19 -23 -29 -27 -42l-1 -7c113 -13 167 -62 167 -150zM493 584c0 46 -34 76 -87 76c-58 0 -92 -36 -113 -119l-85 -331l-6 -27c-5 -19 -6 -40 -6 -55c0 -64 48 -108 117 -108c54 0 94 24 126 73c21 34 33 75 33 118c0 82 -41 128 -115 128 c-21 0 -40 -3 -83 -14l-7 6l18 51c9 -3 14 -4 29 -4c50 0 71 18 90 39c35 36 52 59 60 71c17 28 29 63 29 96'], + 0xE444: [718,272,728,-5,665,'665 221c0 -134 -141 -238 -325 -238c-61 0 -108 9 -170 32c-2 -9 -7 -18 -9 -26l-38 -240c-22 -2 -29 -5 -80 -14c-17 -4 -22 -5 -38 -7l-10 7l57 249l115 471c21 87 32 109 109 161c121 81 169 102 234 102c83 0 136 -41 135 -105c1 -50 -41 -105 -115 -179l-14 -14 c-16 -19 -24 -29 -29 -42l-2 -7c122 -13 180 -62 180 -150zM538 584c0 46 -36 76 -93 76c-62 0 -99 -36 -121 -119l-91 -331l-7 -27c-5 -19 -7 -40 -7 -55c1 -64 52 -108 127 -108c57 0 100 24 135 73c22 34 35 75 35 118c0 82 -44 128 -124 128c-22 0 -43 -3 -89 -14l-8 6 l20 51c10 -3 15 -4 32 -4c52 0 76 18 96 39c37 36 56 59 65 71c17 28 30 63 30 96'], + 0xE445: [482,226,658,41,680,'680 -121l-53 -61c-35 -41 -74 -44 -101 -44c-47 0 -90 56 -136 177l-82 208c-106 -135 -151 -264 -185 -385l-27 4c-10 7 -27 17 -44 30c44 123 135 261 242 390c-55 148 -99 219 -149 219c-29 0 -57 -19 -87 -66l-17 9l53 93c10 18 35 29 67 29c87 0 140 -78 187 -221 c74 82 153 159 228 221c11 -7 26 -18 39 -27l6 -12c-109 -75 -193 -148 -259 -220l76 -193c19 -44 51 -121 69 -149c22 -28 45 -42 69 -42c26 0 52 18 91 59'], + 0xE446: [482,226,724,53,739,'739 -121l-56 -61c-39 -41 -80 -44 -109 -44c-51 0 -96 56 -146 177l-88 208c-114 -135 -162 -264 -199 -385l-29 4c-11 7 -29 17 -46 30c47 123 144 261 259 390c-59 148 -107 219 -160 219c-32 0 -61 -19 -93 -66l-19 9l57 93c11 18 38 29 73 29c93 0 150 -78 200 -221 c79 82 164 159 244 221c13 -7 29 -18 43 -27l6 -12c-117 -75 -207 -148 -278 -220l81 -193c21 -44 55 -121 74 -149c24 -28 49 -42 75 -42c27 0 55 18 97 59'], + 0xE447: [482,226,627,-38,651,'651 443c-121 -75 -218 -148 -298 -220l28 -193c8 -44 20 -121 31 -149c15 -28 34 -42 57 -42c24 0 53 18 100 59l7 -19l-64 -61c-43 -41 -80 -44 -107 -44c-44 0 -72 56 -88 177l-30 208c-132 -135 -205 -264 -265 -385l-25 4c-8 7 -22 17 -35 30 c71 123 189 261 320 390c-17 148 -43 219 -90 219c-28 0 -59 -19 -98 -66l-15 9l72 93c14 18 41 29 71 29c83 0 115 -78 127 -221c89 82 182 159 268 221c9 -7 21 -18 31 -27'], + 0xE448: [482,226,692,-31,708,'708 443c-130 -75 -234 -148 -319 -220l29 -193c8 -44 22 -121 33 -149c16 -28 37 -42 61 -42c26 0 57 18 107 59l9 -19l-69 -61c-47 -41 -86 -44 -115 -44c-48 0 -77 56 -94 177l-33 208c-141 -135 -219 -264 -284 -385l-27 4c-9 7 -24 17 -37 30 c75 123 202 261 343 390c-19 148 -46 219 -97 219c-30 0 -63 -19 -105 -66l-16 9l77 93c15 18 44 29 77 29c89 0 123 -78 136 -221c95 82 195 159 287 221c11 -7 23 -18 34 -27'], + 0xE449: [469,232,733,34,725,'725 -113l-18 -21c-84 -94 -132 -98 -172 -98c-55 0 -89 47 -137 168l-78 191c-79 -104 -137 -220 -164 -359c-16 0 -31 7 -48 11l-55 32c46 129 139 252 245 371c-67 174 -113 202 -152 202c-38 0 -76 -31 -88 -69l-24 13l49 96c4 8 12 14 17 20c22 23 56 25 82 25 c42 0 81 -18 114 -51c19 -21 39 -61 77 -152l184 203c16 -12 37 -23 54 -35l9 -17c-82 -65 -159 -131 -225 -202l47 -109c39 -93 81 -192 104 -224c15 -18 43 -34 64 -34c19 0 36 9 65 38l26 27'], + 0xE44A: [469,232,805,45,787,'787 -113l-18 -21c-91 -94 -143 -98 -186 -98c-59 0 -95 47 -146 168l-84 191c-85 -104 -147 -220 -176 -359c-18 0 -34 7 -52 11l-58 32c48 129 148 252 262 371c-72 174 -121 202 -163 202c-40 0 -82 -31 -94 -69l-27 13l54 96c4 8 13 14 17 20c24 23 60 25 88 25 c46 0 88 -18 123 -51c21 -21 42 -61 83 -152l197 203c18 -12 40 -23 58 -35l10 -17c-88 -65 -171 -131 -242 -202l51 -109c42 -93 86 -192 112 -224c16 -18 45 -34 68 -34c20 0 39 9 70 38l28 27'], + 0xE44B: [469,232,699,-36,644,'644 417c-93 -65 -182 -131 -261 -202l19 -109c16 -93 33 -192 48 -224c10 -18 32 -34 53 -34c17 0 36 9 70 38l32 27l16 -26l-21 -21c-102 -94 -149 -98 -188 -98c-52 0 -73 47 -91 168l-30 191c-99 -104 -181 -220 -239 -359c-16 0 -28 7 -44 11l-44 32 c73 129 190 252 318 371c-23 174 -60 202 -97 202c-36 0 -80 -31 -100 -69l-20 13l69 96c6 8 15 14 21 20c26 23 59 25 84 25c40 0 73 -18 97 -51c13 -21 22 -61 38 -152l222 203c13 -12 30 -23 43 -35'], + 0xE44C: [469,232,769,-29,701,'701 417c-100 -65 -196 -131 -281 -202l21 -109c17 -93 35 -192 51 -224c11 -18 35 -34 57 -34c19 0 39 9 76 38l33 27l18 -26l-23 -21c-110 -94 -160 -98 -201 -98c-56 0 -79 47 -98 168l-32 191c-107 -104 -195 -220 -257 -359c-17 0 -30 7 -47 11l-47 32 c78 129 204 252 341 371c-25 174 -64 202 -104 202c-39 0 -86 -31 -107 -69l-22 13l75 96c6 8 15 14 21 20c28 23 64 25 91 25c43 0 78 -18 104 -51c14 -21 24 -61 41 -152l238 203c14 -12 32 -23 47 -35'], + 0xE44D: [711,11,544,72,476,'470 284c24 -79 -25 -157 -67 -207c-6 -9 -13 -17 -22 -24c-45 -43 -83 -64 -133 -64c-74 0 -135 26 -170 151c-18 55 9 114 30 153c31 55 75 104 121 149c6 5 14 12 24 18c-53 61 -80 93 -97 147c-17 60 11 104 101 104c29 0 123 -15 146 -28l4 -9c-6 -19 -2 -45 -4 -61 l-10 -5c-21 25 -61 44 -72 48c-29 11 -57 23 -91 23c-40 0 -54 -25 -48 -47c13 -44 100 -117 155 -163c52 -43 107 -94 133 -185zM409 198c2 10 3 36 -3 52c-21 72 -76 130 -122 180c-10 -5 -15 -9 -20 -13c-63 -55 -105 -123 -106 -205c-2 -18 -2 -45 3 -61 c20 -66 64 -112 120 -112c63 0 114 83 128 159'], + 0xE44E: [711,11,603,86,520,'514 284c26 -79 -27 -157 -73 -207c-6 -9 -13 -17 -23 -24c-48 -43 -88 -64 -142 -64c-80 0 -145 26 -184 151c-18 55 10 114 34 153c33 55 80 104 129 149c7 5 16 12 25 18c-56 61 -86 93 -103 147c-18 60 11 104 108 104c31 0 132 -15 156 -28l5 -9 c-6 -19 -2 -45 -5 -61l-9 -5c-24 25 -67 44 -78 48c-32 11 -61 23 -98 23c-43 0 -58 -25 -52 -47c15 -44 108 -117 167 -163c56 -43 115 -94 143 -185zM449 198c1 10 2 36 -4 52c-22 72 -81 130 -131 180c-10 -5 -16 -9 -21 -13c-68 -55 -113 -123 -115 -205 c-1 -18 -1 -45 4 -61c21 -66 69 -112 129 -112c68 0 122 83 138 159'], + 0xE44F: [711,11,519,62,501,'501 674c-10 -19 -13 -45 -19 -61l-10 -5c-15 25 -48 44 -57 48c-26 11 -49 23 -82 23c-38 0 -57 -25 -57 -47c3 -44 69 -117 111 -163c39 -43 79 -94 83 -185c5 -79 -60 -157 -112 -207c-7 -9 -16 -17 -26 -24c-53 -43 -93 -64 -141 -64c-71 0 -123 26 -128 151 c-3 55 35 114 65 153c42 55 95 104 149 149c8 5 17 12 27 18c-36 61 -55 93 -57 147c-3 60 33 104 120 104c27 0 113 -15 132 -28zM401 250c-2 72 -41 130 -74 180c-10 -5 -17 -9 -22 -13c-73 -55 -129 -123 -149 -205c-5 -18 -11 -45 -11 -61c4 -66 35 -112 89 -112 c60 0 127 83 159 159c3 10 10 36 8 52'], + 0xE450: [711,11,576,76,547,'547 674c-11 -19 -14 -45 -20 -61l-11 -5c-16 25 -52 44 -61 48c-28 11 -53 23 -88 23c-41 0 -62 -25 -61 -47c3 -44 74 -117 118 -163c42 -43 86 -94 90 -185c5 -79 -65 -157 -120 -207c-8 -9 -17 -17 -29 -24c-56 -43 -100 -64 -151 -64c-76 0 -132 26 -137 151 c-4 55 38 114 70 153c45 55 102 104 160 149c8 5 18 12 29 18c-39 61 -59 93 -62 147c-3 60 36 104 129 104c29 0 121 -15 141 -28zM440 250c-3 72 -45 130 -80 180c-11 -5 -18 -9 -23 -13c-78 -55 -139 -123 -160 -205c-6 -18 -13 -45 -12 -61c4 -66 38 -112 95 -112 c65 0 137 83 171 159c3 10 11 36 9 52'], + 0xE451: [718,17,545,55,489,'480 309c26 -78 -1 -161 -71 -246c-41 -50 -98 -80 -162 -80c-84 0 -151 47 -182 142c-39 120 54 218 151 286c13 8 32 19 48 26c-39 41 -108 115 -126 171c-23 72 33 110 95 110c30 0 100 -12 127 -17c57 -11 65 -16 71 -17c9 -7 7 -5 14 -12c0 -47 0 -45 6 -92l-16 -3 c-51 32 -68 42 -117 65c-24 11 -58 29 -96 29c-43 0 -45 -27 -45 -32c13 -35 115 -115 175 -160c57 -42 99 -80 128 -170zM411 252c-31 95 -73 116 -115 155c-19 -6 -33 -13 -46 -22c-58 -34 -67 -87 -74 -149c-2 -30 10 -83 19 -111c16 -48 56 -78 99 -78 c49 0 77 29 103 88c6 10 28 70 14 117'], + 0xE452: [718,17,604,69,535,'525 309c27 -78 -1 -161 -76 -246c-44 -50 -106 -80 -175 -80c-89 0 -162 47 -195 142c-42 120 58 218 162 286c14 8 35 19 52 26c-42 41 -116 115 -135 171c-25 72 35 110 102 110c31 0 106 -12 136 -17c61 -11 70 -16 76 -17c10 -7 7 -5 15 -12c0 -47 0 -45 6 -92 l-17 -3c-54 32 -73 42 -126 65c-25 11 -62 29 -103 29c-45 0 -48 -27 -48 -32c14 -35 123 -115 188 -160c62 -42 106 -80 138 -170zM450 252c-33 95 -77 116 -123 155c-21 -6 -36 -13 -49 -22c-63 -34 -72 -87 -80 -149c-2 -30 11 -83 21 -111c17 -48 60 -78 106 -78 c52 0 82 29 110 88c6 10 31 70 15 117'], + 0xE453: [718,17,520,47,536,'536 672c-11 -47 -10 -45 -16 -92l-16 -3c-40 32 -54 42 -96 65c-20 11 -49 29 -84 29c-41 0 -49 -27 -50 -32c3 -35 82 -115 129 -160c45 -42 75 -80 83 -170c6 -78 -38 -161 -125 -246c-50 -50 -112 -80 -173 -80c-79 0 -133 47 -140 142c-10 120 101 218 210 286 c14 8 35 19 52 26c-28 41 -76 115 -81 171c-5 72 57 110 116 110c29 0 92 -12 117 -17c52 -11 59 -16 64 -17c7 -7 5 -5 10 -12zM406 252c-7 95 -42 116 -73 155c-20 -6 -34 -13 -49 -22c-63 -34 -84 -87 -105 -149c-9 -30 -9 -83 -7 -111c4 -48 35 -78 76 -78 c46 0 79 29 118 88c8 10 44 70 40 117'], + 0xE454: [718,17,577,59,585,'585 672c-12 -47 -11 -45 -17 -92l-17 -3c-44 32 -59 42 -103 65c-22 11 -53 29 -91 29c-44 0 -53 -27 -54 -32c4 -35 88 -115 139 -160c48 -42 81 -80 89 -170c6 -78 -41 -161 -134 -246c-54 -50 -120 -80 -186 -80c-85 0 -143 47 -151 142c-9 120 110 218 226 286 c15 8 37 19 56 26c-30 41 -82 115 -87 171c-5 72 62 110 125 110c30 0 99 -12 126 -17c55 -11 62 -16 68 -17c7 -7 6 -5 11 -12zM445 252c-8 95 -44 116 -78 155c-21 -6 -37 -13 -52 -22c-68 -34 -91 -87 -113 -149c-10 -30 -11 -83 -8 -111c4 -48 38 -78 81 -78 c50 0 86 29 127 88c9 10 47 70 43 117'], + 0xE455: [484,11,528,72,481,'481 77c-79 -62 -138 -88 -195 -88c-62 0 -126 12 -168 50c-19 18 -37 38 -44 73c-5 28 -2 67 31 93c32 27 59 44 84 51c-66 11 -108 38 -116 79c-7 37 30 81 60 102c42 29 81 47 132 47c39 0 97 -10 138 -28c-8 -36 -13 -62 -10 -107h-32l-9 66c-2 2 -9 17 -28 23 c-19 7 -37 11 -61 11c-65 0 -121 -45 -110 -101c10 -53 62 -80 132 -80c23 0 45 3 68 10l4 -10c-2 -7 -3 -31 -2 -37c-21 5 -45 7 -74 7c-111 0 -126 -51 -114 -113c12 -64 94 -86 150 -86c41 0 93 17 147 55'], + 0xE456: [484,11,585,86,525,'525 77c-84 -62 -148 -88 -209 -88c-66 0 -135 12 -180 50c-21 18 -40 38 -47 73c-6 28 -3 67 33 93c35 27 63 44 90 51c-71 11 -116 38 -125 79c-7 37 33 81 66 102c44 29 86 47 141 47c42 0 104 -10 148 -28c-8 -36 -14 -62 -11 -107h-34l-10 66c-2 2 -10 17 -30 23 c-21 7 -40 11 -66 11c-70 0 -129 -45 -118 -101c11 -53 67 -80 142 -80c25 0 49 3 73 10l4 -10c-2 -7 -3 -31 -2 -37c-22 5 -48 7 -79 7c-119 0 -135 -51 -123 -113c14 -64 102 -86 162 -86c44 0 100 17 157 55'], + 0xE457: [484,11,504,53,447,'447 456c-16 -36 -27 -62 -35 -107h-31l7 66c-1 2 -5 17 -21 23c-17 7 -33 11 -56 11c-62 0 -125 -45 -128 -101c-3 -53 41 -80 107 -80c22 0 44 3 67 10l2 -10c-4 -7 -10 -31 -11 -37c-18 5 -41 7 -68 7c-106 0 -132 -51 -135 -113c-3 -64 70 -86 123 -86 c39 0 92 17 152 55l12 -17c-89 -62 -151 -88 -206 -88c-58 0 -117 12 -148 50c-14 18 -26 38 -24 73c1 28 13 67 50 93c37 27 67 44 92 51c-61 11 -94 38 -92 79c2 37 47 81 81 102c46 29 88 47 137 47c37 0 90 -10 125 -28'], + 0xE458: [484,11,559,66,489,'489 456c-17 -36 -29 -62 -38 -107h-32l7 66c-1 2 -5 17 -22 23c-19 7 -36 11 -61 11c-66 0 -134 -45 -137 -101c-3 -53 43 -80 115 -80c23 0 47 3 72 10l2 -10c-4 -7 -11 -31 -12 -37c-19 5 -44 7 -73 7c-114 0 -142 -51 -145 -113c-4 -64 75 -86 132 -86 c42 0 99 17 163 55l13 -17c-95 -62 -162 -88 -221 -88c-63 0 -125 12 -159 50c-15 18 -28 38 -26 73c1 28 14 67 54 93c40 27 71 44 99 51c-65 11 -101 38 -99 79c2 37 51 81 87 102c50 29 94 47 146 47c40 0 97 -10 135 -28'], + 0xE459: [471,17,555,55,519,'519 75c-101 -65 -158 -92 -227 -92c-91 0 -144 18 -183 51c-29 24 -44 42 -52 81c-12 58 35 106 154 133c-55 13 -66 28 -83 38c-26 15 -36 37 -39 54c-7 34 18 64 51 87c42 29 104 44 157 44s106 -9 159 -27c-13 -68 -12 -84 -10 -121h-40l-8 66c-2 4 -5 7 -8 11 c-17 22 -46 27 -88 27c-64 0 -111 -36 -101 -87s70 -79 144 -79c17 0 35 2 56 6c1 -3 3 -6 5 -11v-38c-29 5 -50 6 -70 6c-45 0 -83 -9 -114 -26s-43 -43 -36 -74c3 -15 13 -32 21 -40c16 -14 51 -37 147 -37c46 0 87 15 150 53c6 -10 10 -16 15 -25'], + 0xE45A: [471,17,614,68,567,'567 75c-109 -65 -170 -92 -245 -92c-97 0 -154 18 -196 51c-31 24 -47 42 -56 81c-12 58 38 106 166 133c-59 13 -71 28 -89 38c-28 15 -39 37 -43 54c-7 34 20 64 55 87c46 29 113 44 169 44c57 0 114 -9 171 -27c-14 -68 -13 -84 -11 -121h-43l-8 66c-2 4 -6 7 -9 11 c-18 22 -50 27 -94 27c-69 0 -120 -36 -109 -87s76 -79 154 -79c19 0 38 2 60 6c2 -3 4 -6 6 -11v-38c-31 5 -54 6 -75 6c-48 0 -89 -9 -122 -26s-46 -43 -40 -74c4 -15 15 -32 24 -40c16 -14 54 -37 158 -37c49 0 92 15 160 53c7 -10 11 -16 17 -25'], + 0xE45B: [471,17,530,37,494,'494 444c-28 -68 -31 -84 -38 -121h-38l8 66c-1 4 -3 7 -5 11c-11 22 -38 27 -77 27c-61 0 -115 -36 -117 -87s49 -79 119 -79c16 0 34 2 54 6c1 -3 2 -6 3 -11l-9 -38c-26 5 -47 6 -65 6c-43 0 -81 -9 -115 -26c-33 -17 -50 -43 -52 -74c0 -15 5 -32 12 -40 c11 -14 40 -37 131 -37c44 0 86 15 155 53c4 -10 6 -16 9 -25c-112 -65 -172 -92 -238 -92c-87 0 -133 18 -163 51c-22 24 -32 42 -30 81c2 58 57 106 177 133c-49 13 -56 28 -70 38c-21 15 -26 37 -25 54c1 34 32 64 69 87c47 29 110 44 160 44s99 -9 145 -27'], + 0xE45C: [471,17,588,49,539,'539 444c-30 -68 -33 -84 -40 -121h-41l9 66c-1 4 -3 7 -6 11c-12 22 -41 27 -83 27c-65 0 -123 -36 -125 -87c-3 -51 52 -79 127 -79c18 0 37 2 59 6c1 -3 2 -6 3 -11l-10 -38c-28 5 -50 6 -70 6c-45 0 -87 -9 -123 -26c-35 -17 -54 -43 -56 -74c0 -15 6 -32 13 -40 c12 -14 43 -37 141 -37c47 0 92 15 166 53c4 -10 6 -16 9 -25c-120 -65 -184 -92 -255 -92c-93 0 -142 18 -175 51c-23 24 -34 42 -32 81c2 58 62 106 190 133c-53 13 -60 28 -75 38c-23 15 -28 37 -27 54c2 34 35 64 74 87c51 29 118 44 172 44s106 -9 155 -27'], + 0xE45D: [482,11,579,72,532,'532 92c-89 -74 -142 -103 -210 -103c-60 0 -124 12 -170 50c-38 32 -62 73 -72 116c-5 17 -8 35 -8 53c0 86 25 150 84 203c52 46 118 71 193 71c60 0 121 -23 166 -60l-35 -52l-21 -2c-12 15 -29 32 -39 39c-29 24 -68 31 -106 31c-40 0 -77 -13 -103 -37 c-40 -37 -49 -90 -46 -139l124 -1l142 2l-7 -35l-5 -6l-161 1c-8 0 -63 0 -91 -3c1 -12 2 -25 6 -37c3 -11 5 -22 11 -32c31 -64 116 -112 167 -112c41 0 93 17 143 55l23 17'], + 0xE45E: [482,11,640,86,580,'580 92c-96 -74 -152 -103 -225 -103c-65 0 -134 12 -183 50c-40 32 -66 73 -77 116c-5 17 -9 35 -9 53c0 86 27 150 91 203c56 46 127 71 207 71c65 0 130 -23 178 -60l-37 -52l-23 -2c-13 15 -31 32 -42 39c-31 24 -73 31 -113 31c-43 0 -84 -13 -111 -37 c-43 -37 -53 -90 -50 -139l134 -1l152 2l-7 -35l-6 -6l-172 1c-9 0 -68 0 -99 -3c2 -12 3 -25 6 -37c4 -11 7 -22 13 -32c33 -64 124 -112 179 -112c44 0 100 17 154 55l24 17'], + 0xE45F: [482,11,553,68,545,'545 422l-45 -52l-21 -2c-7 15 -20 32 -28 39c-22 24 -57 31 -93 31c-38 0 -77 -13 -107 -37c-47 -37 -68 -90 -77 -139l119 -1l135 2l-14 -35l-7 -6l-152 1c-8 0 -60 0 -88 -3c-2 -12 -4 -25 -3 -37c0 -11 0 -22 3 -32c15 -64 84 -112 133 -112c39 0 92 17 149 55l26 17 l10 -19c-102 -74 -159 -103 -224 -103c-57 0 -116 12 -150 50c-29 32 -42 73 -42 116c-1 17 0 35 4 53c20 86 59 150 128 203c60 46 129 71 200 71c57 0 110 -23 144 -60'], + 0xE460: [482,11,612,83,594,'594 422l-48 -52l-23 -2c-8 15 -21 32 -30 39c-23 24 -61 31 -100 31c-41 0 -82 -13 -114 -37c-50 -37 -73 -90 -83 -139l128 -1l145 2l-16 -35l-7 -6l-163 1c-9 0 -65 0 -95 -3c-2 -12 -4 -25 -3 -37c1 -11 0 -22 4 -32c15 -64 90 -112 143 -112c42 0 99 17 159 55 l28 17l11 -19c-110 -74 -171 -103 -240 -103c-62 0 -125 12 -162 50c-31 32 -45 73 -45 116c0 17 1 35 5 53c21 86 63 150 137 203c64 46 138 71 214 71c62 0 119 -23 155 -60'], + 0xE461: [471,17,648,86,594,'594 86l-29 -18c-98 -65 -148 -85 -217 -85c-91 1 -146 16 -185 51c-34 30 -58 69 -68 108c-6 22 -9 44 -9 64c0 73 14 144 80 196c56 45 132 69 211 69c75 0 146 -25 196 -68l-56 -62l-18 1c-14 22 -32 44 -54 61c-23 18 -54 26 -86 26c-37 0 -73 -11 -98 -32 c-43 -34 -59 -87 -59 -134l134 -3l148 2l-12 -37l-6 -6l-176 -1l-84 -3c18 -67 31 -86 45 -104c13 -16 60 -64 156 -64c52 0 94 19 167 67'], + 0xE462: [471,17,714,101,647,'647 86l-31 -18c-106 -65 -159 -85 -234 -85c-97 1 -156 16 -197 51c-37 30 -63 69 -74 108c-6 22 -10 44 -10 64c0 73 16 144 86 196c60 45 143 69 227 69c80 0 156 -25 210 -68l-60 -62l-19 1c-15 22 -35 44 -58 61c-25 18 -58 26 -92 26c-40 0 -79 -11 -106 -32 c-45 -34 -63 -87 -63 -134l144 -3l159 2l-13 -37l-7 -6l-188 -1l-91 -3c20 -67 33 -86 49 -104c14 -16 64 -64 167 -64c56 0 101 19 180 67'], + 0xE463: [471,17,618,80,596,'596 403l-68 -62l-17 1c-8 22 -20 44 -37 61c-18 18 -45 26 -76 26c-35 0 -72 -11 -101 -32c-48 -34 -76 -87 -87 -134l127 -3l141 2l-19 -37l-8 -6l-167 -1l-81 -3c2 -67 9 -86 19 -104c8 -16 42 -64 134 -64c49 0 93 19 174 67l12 -28l-31 -18 c-109 -65 -160 -85 -227 -85c-86 1 -135 16 -164 51c-25 30 -39 69 -40 108c0 22 1 44 6 64c17 73 48 144 122 196c64 45 142 69 217 69c71 0 133 -25 171 -68'], + 0xE464: [471,17,682,95,649,'649 403l-73 -62l-18 1c-9 22 -22 44 -40 61c-19 18 -49 26 -81 26c-38 0 -78 -11 -109 -32c-52 -34 -81 -87 -93 -134l136 -3l152 2l-21 -37l-9 -6l-179 -1l-87 -3c2 -67 10 -86 21 -104c9 -16 45 -64 143 -64c53 0 101 19 187 67l13 -28l-33 -18 c-117 -65 -173 -85 -244 -85c-92 1 -144 16 -176 51c-27 30 -42 69 -43 108c0 22 2 44 7 64c18 73 51 144 130 196c69 45 153 69 234 69c76 0 142 -25 183 -68'], + 0xE465: [482,276,622,15,531,'530 373l-27 -560c-1 -24 1 -43 6 -72c-26 -3 -61 -9 -95 -17l-13 14c7 10 14 23 16 39l32 542c2 33 0 52 -4 71c-4 16 -13 24 -25 24c-52 0 -122 -62 -166 -145c-36 -70 -45 -135 -37 -261c-25 -4 -50 -10 -77 -17l-10 11c14 144 16 335 4 387c-4 15 -14 25 -27 25 c-7 0 -15 -4 -34 -17l-46 -29l-12 20l28 20c72 53 110 74 134 74c17 0 29 -12 34 -33c4 -11 4 -22 4 -41l-7 -161c43 74 69 110 105 145c54 54 123 90 171 90c22 0 38 -13 42 -35c5 -19 7 -45 4 -74'], + 0xE466: [482,276,686,25,579,'578 373l-29 -560c-1 -24 2 -43 7 -72c-29 -3 -65 -9 -102 -17l-14 14c8 10 15 23 17 39l35 542c1 33 0 52 -5 71c-4 16 -14 24 -27 24c-55 0 -130 -62 -178 -145c-38 -70 -48 -135 -40 -261c-27 -4 -54 -10 -82 -17l-11 11c15 144 17 335 4 387c-4 15 -15 25 -29 25 c-7 0 -16 -4 -36 -17l-50 -29l-13 20l31 20c77 53 118 74 143 74c19 0 31 -12 37 -33c4 -11 4 -22 4 -41l-7 -161c46 74 73 110 113 145c57 54 131 90 183 90c23 0 40 -13 45 -35c5 -19 7 -45 4 -74'], + 0xE467: [482,276,593,61,562,'562 447c0 -19 -4 -45 -14 -74l-155 -560c-7 -24 -9 -43 -11 -72c-26 -3 -60 -9 -95 -17l-9 14c9 10 19 23 25 39l156 542c9 33 12 52 12 71c0 16 -6 24 -18 24c-50 0 -130 -62 -192 -145c-50 -70 -74 -135 -95 -261c-25 -4 -51 -10 -77 -17l-8 11c47 144 93 335 93 387 c0 15 -7 25 -19 25c-7 0 -15 -4 -37 -17l-50 -29l-7 20l32 20c80 53 121 74 144 74c17 0 25 -12 25 -33c1 -11 -2 -22 -6 -41l-44 -161c59 74 91 110 134 145c64 54 138 90 183 90c21 0 33 -13 33 -35'], + 0xE468: [482,276,655,74,612,'612 447c0 -19 -4 -45 -15 -74l-166 -560c-7 -24 -10 -43 -12 -72c-28 -3 -64 -9 -101 -17l-10 14c10 10 20 23 26 39l168 542c9 33 13 52 13 71c0 16 -7 24 -20 24c-53 0 -139 -62 -206 -145c-53 -70 -79 -135 -102 -261c-27 -4 -54 -10 -83 -17l-7 11 c49 144 99 335 99 387c1 15 -8 25 -20 25c-7 0 -17 -4 -40 -17l-54 -29l-8 20l35 20c86 53 130 74 155 74c17 0 26 -12 27 -33c1 -11 -2 -22 -7 -41l-47 -161c63 74 98 110 144 145c68 54 147 90 196 90c23 0 36 -13 35 -35'], + 0xE469: [469,271,640,16,554,'554 344l-19 -468c-2 -55 5 -94 11 -117c0 0 1 -5 3 -11c-49 -3 -86 -7 -146 -19l-15 18l15 12c5 5 9 22 11 49l1 26l17 403c0 53 4 95 -1 112c-3 14 -14 21 -28 21c-55 0 -129 -110 -147 -216c-6 -34 -7 -104 -2 -150c-41 -2 -94 -10 -117 -17l-15 11 c17 139 21 300 6 355c-4 12 -8 17 -17 17c-13 0 -28 -6 -43 -17l-31 -22l-21 27l80 62c43 34 75 49 104 49c19 0 33 -11 38 -30c8 -29 8 -55 2 -157l-3 -60c24 60 36 85 67 122c59 74 137 125 191 125c27 0 48 -17 55 -42c5 -14 5 -44 4 -83'], + 0xE46A: [469,271,706,26,604,'604 344l-20 -468c-3 -55 5 -94 11 -117c0 0 1 -5 4 -11c-53 -3 -93 -7 -158 -19l-16 18l16 12c7 5 10 22 13 49l1 26l18 403c0 53 4 95 -1 112c-4 14 -15 21 -31 21c-59 0 -137 -110 -157 -216c-6 -34 -7 -104 -2 -150c-45 -2 -101 -10 -126 -17l-16 11 c19 139 23 300 7 355c-4 12 -9 17 -19 17c-13 0 -29 -6 -45 -17l-34 -22l-23 27l86 62c47 34 81 49 112 49c21 0 36 -11 40 -30c9 -29 9 -55 3 -157l-4 -60c26 60 40 85 73 122c62 74 147 125 205 125c28 0 51 -17 59 -42c5 -14 5 -44 4 -83'], + 0xE46B: [469,271,611,55,580,'580 427c1 -14 -6 -44 -16 -83l-126 -468c-15 -55 -17 -94 -17 -117v-11c-47 -3 -83 -7 -144 -19l-10 18l17 12c7 5 14 22 23 49l7 26l110 403c12 53 25 95 24 112c0 14 -8 21 -22 21c-52 0 -148 -110 -190 -216c-13 -34 -30 -104 -37 -150c-39 -2 -91 -10 -115 -17 l-11 11c48 139 89 300 87 355c0 12 -3 17 -12 17c-12 0 -28 -6 -44 -17l-35 -22l-14 27l90 62c50 34 84 49 111 49c19 0 29 -11 29 -30c1 -29 -5 -55 -34 -157l-17 -60c36 60 54 85 92 122c73 74 160 125 211 125c25 0 42 -17 43 -42'], + 0xE46C: [469,271,674,68,632,'632 427c1 -14 -7 -44 -18 -83l-135 -468c-16 -55 -18 -94 -18 -117c0 0 0 -5 1 -11c-51 -3 -90 -7 -155 -19l-11 18l19 12c7 5 14 22 23 49l8 26l118 403c13 53 27 95 27 112c0 14 -9 21 -24 21c-57 0 -159 -110 -204 -216c-14 -34 -33 -104 -40 -150 c-42 -2 -98 -10 -123 -17l-13 11c52 139 96 300 94 355c0 12 -3 17 -13 17c-13 0 -29 -6 -47 -17l-37 -22l-16 27l97 62c53 34 90 49 119 49c20 0 31 -11 31 -30c1 -29 -5 -55 -37 -157l-18 -60c40 60 59 85 99 122c79 74 172 125 227 125c27 0 45 -17 46 -42'], + 0xE46D: [482,226,674,-6,633,'633 396c-25 -40 -26 -60 -26 -69c-1 -3 -3 -5 -11 -7c-24 -6 -69 -68 -89 -130c-17 -55 -33 -131 -28 -200l2 -172c-20 -10 -35 -29 -51 -44l-39 9l8 183c2 59 9 118 13 177c-17 90 -34 141 -95 230c-14 23 -58 64 -118 64c-30 0 -59 -23 -71 -35 c-34 -33 -54 -84 -60 -126l-30 -5c-15 19 -24 30 -44 49c11 35 58 93 78 109c50 46 94 53 123 53c33 0 85 -6 138 -58c31 -30 60 -67 87 -125c14 -31 25 -59 39 -122c35 127 108 229 151 239c7 0 10 -15 23 -20'], + 0xE46E: [482,226,742,3,689,'689 396c-27 -40 -28 -60 -29 -69c0 -3 -2 -5 -10 -7c-26 -6 -75 -68 -97 -130c-18 -55 -35 -131 -30 -200l2 -172c-21 -10 -37 -29 -54 -44l-42 9l8 183c3 59 10 118 14 177c-18 90 -36 141 -101 230c-16 23 -62 64 -127 64c-32 0 -63 -23 -77 -35 c-36 -33 -57 -84 -64 -126l-32 -5c-16 19 -26 30 -47 49c12 35 62 93 84 109c53 46 100 53 131 53c36 0 92 -6 148 -58c34 -30 65 -67 94 -125c15 -31 27 -59 42 -122c38 127 116 229 162 239c8 0 11 -15 25 -20'], + 0xE46F: [482,226,642,26,652,'652 396c-34 -40 -39 -60 -42 -69c-1 -3 -3 -5 -11 -7c-24 -6 -82 -68 -115 -130c-29 -55 -62 -131 -73 -200l-38 -172c-21 -10 -40 -29 -59 -44l-35 9l50 183c16 59 36 118 53 177c5 90 1 141 -36 230c-9 23 -41 64 -99 64c-28 0 -61 -23 -75 -35 c-40 -33 -71 -84 -86 -126l-30 -5c-10 19 -16 30 -30 49c18 35 76 93 99 109c58 46 102 53 129 53c32 0 80 -6 118 -58c23 -30 41 -67 54 -125c6 -31 10 -59 9 -122c63 127 156 229 199 239c7 0 6 -15 18 -20'], + 0xE470: [482,226,708,37,709,'709 396c-36 -40 -42 -60 -45 -69c-1 -3 -3 -5 -12 -7c-26 -6 -87 -68 -124 -130c-31 -55 -66 -131 -78 -200l-41 -172c-22 -10 -42 -29 -63 -44l-37 9l53 183c17 59 39 118 58 177c4 90 0 141 -40 230c-9 23 -43 64 -105 64c-31 0 -66 -23 -82 -35 c-42 -33 -75 -84 -92 -126l-32 -5c-10 19 -17 30 -32 49c19 35 82 93 106 109c62 46 110 53 139 53c34 0 86 -6 127 -58c24 -30 44 -67 57 -125c7 -31 11 -59 10 -122c68 127 168 229 214 239c7 0 6 -15 19 -20'], + 0xE471: [469,232,642,-5,633,'633 381c-21 -35 -24 -61 -25 -70c-34 -13 -71 -91 -97 -168c-17 -51 -16 -94 -15 -163l4 -163c-26 -13 -41 -31 -61 -49l-64 13l8 177c3 49 4 96 4 156c0 29 -2 54 -7 78c-10 52 -33 99 -73 160c-13 21 -52 59 -102 59c-24 0 -50 -22 -60 -33c-29 -30 -48 -79 -53 -123 l-48 -7c-22 22 -31 35 -49 56c12 36 59 95 76 112c49 47 97 53 127 53c40 0 97 -18 144 -70c30 -33 48 -63 74 -120c11 -17 38 -96 45 -125c36 106 94 240 133 250c13 0 27 -12 39 -23'], + 0xE472: [469,232,708,4,689,'689 381c-23 -35 -26 -61 -27 -70c-36 -13 -76 -91 -104 -168c-18 -51 -18 -94 -17 -163l5 -163c-28 -13 -44 -31 -66 -49l-68 13l9 177c3 49 4 96 3 156c0 29 -1 54 -7 78c-11 52 -36 99 -78 160c-14 21 -56 59 -110 59c-26 0 -53 -22 -64 -33c-32 -30 -52 -79 -57 -123 l-51 -7c-24 22 -34 35 -53 56c13 36 63 95 82 112c52 47 104 53 136 53c43 0 104 -18 155 -70c31 -33 51 -63 78 -120c13 -17 42 -96 49 -125c39 106 101 240 143 250c14 0 29 -12 42 -23'], + 0xE473: [469,232,613,23,648,'648 381c-29 -35 -37 -61 -40 -70c-35 -13 -89 -91 -131 -168c-28 -51 -38 -94 -53 -163l-34 -163c-27 -13 -46 -31 -69 -49l-57 13l48 177c14 49 26 96 40 156c6 29 10 54 11 78c3 52 -8 99 -32 160c-8 21 -36 59 -84 59c-23 0 -52 -22 -64 -33 c-35 -30 -65 -79 -80 -123l-47 -7c-15 22 -21 35 -33 56c20 36 78 95 98 112c58 47 105 53 133 53c38 0 89 -18 121 -70c21 -33 32 -63 42 -120c7 -17 15 -96 15 -125c59 106 145 240 184 250c12 0 23 -12 32 -23'], + 0xE474: [469,232,676,34,705,'705 381c-31 -35 -40 -61 -43 -70c-38 -13 -95 -91 -141 -168c-30 -51 -40 -94 -56 -163l-37 -163c-29 -13 -49 -31 -74 -49l-62 13l53 177c15 49 27 96 42 156c7 29 11 54 12 78c3 52 -9 99 -35 160c-8 21 -38 59 -89 59c-25 0 -56 -22 -70 -33 c-37 -30 -69 -79 -85 -123l-50 -7c-17 22 -23 35 -36 56c21 36 83 95 105 112c62 47 112 53 143 53c41 0 95 -18 130 -70c22 -33 34 -63 45 -120c8 -17 16 -96 16 -125c63 106 155 240 198 250c13 0 24 -12 34 -23'], + 0xE475: [482,9,346,106,334,'334 99l-30 -25c-74 -64 -110 -83 -150 -83c-22 0 -38 15 -43 40c-4 13 -5 26 -4 55c1 11 1 14 0 21l21 239c0 19 3 49 -5 116l75 20l17 -14c-4 -17 -6 -33 -7 -48l-17 -304c-2 -22 -1 -30 0 -40c3 -12 11 -20 20 -20c14 0 34 9 63 30l44 31'], + 0xE476: [482,9,390,123,368,'368 99l-32 -25c-80 -64 -118 -83 -161 -83c-24 0 -41 15 -47 40c-4 13 -5 26 -4 55c2 11 2 14 0 21l23 239c0 19 3 49 -5 116l79 20l19 -14c-4 -17 -6 -33 -7 -48l-19 -304c-2 -22 -1 -30 0 -40c4 -12 12 -20 22 -20c15 0 36 9 68 30l46 31'], + 0xE477: [482,9,331,69,298,'298 99l-34 -25c-86 -64 -124 -83 -162 -83c-21 0 -33 15 -32 40c-1 13 1 26 9 55c4 11 4 14 5 21l75 239c4 19 14 49 22 116l76 20l13 -14c-7 -17 -13 -33 -18 -48l-87 -304c-7 -22 -8 -30 -9 -40c1 -12 6 -20 15 -20c13 0 34 9 67 30l49 31'], + 0xE478: [482,9,373,84,329,'329 99l-37 -25c-92 -64 -133 -83 -174 -83c-22 0 -34 15 -34 40c0 13 2 26 10 55c4 11 5 14 5 21l81 239c4 19 15 49 24 116l81 20l14 -14c-8 -17 -14 -33 -19 -48l-93 -304c-8 -22 -9 -30 -10 -40c0 -12 7 -20 16 -20c14 0 36 9 72 30l52 31'], + 0xE479: [469,17,411,96,390,'390 99l-74 -57c-55 -41 -97 -59 -139 -59c-40 0 -67 21 -75 60c-5 17 -6 20 -5 65l5 139c1 48 10 139 -4 202c38 0 78 7 124 20l20 -12c-4 -38 -5 -60 -8 -91l-12 -197c-1 -13 -4 -57 1 -77c6 -21 14 -28 34 -28c22 0 36 5 57 21l54 40'], + 0xE47A: [469,17,460,112,428,'428 99l-80 -57c-59 -41 -103 -59 -149 -59c-43 0 -72 21 -81 60c-5 17 -6 20 -5 65l5 139c2 48 11 139 -3 202c40 0 83 7 132 20l22 -12c-5 -38 -6 -60 -8 -91l-14 -197c-1 -13 -3 -57 2 -77c6 -21 14 -28 36 -28c24 0 38 5 62 21l58 40'], + 0xE47B: [469,17,393,63,351,'351 99l-84 -57c-62 -41 -105 -59 -145 -59c-39 0 -60 21 -58 60c-1 17 -1 20 10 65l37 139c12 48 42 139 43 202c36 0 76 7 123 20l17 -12c-14 -38 -20 -60 -29 -91l-58 -197c-4 -13 -16 -57 -17 -77c1 -21 7 -28 27 -28s35 5 59 21l61 40'], + 0xE47C: [469,17,440,76,386,'386 99l-90 -57c-66 -41 -113 -59 -156 -59c-41 0 -64 21 -63 60c0 17 0 20 12 65l39 139c13 48 45 139 47 202c39 0 81 7 131 20l18 -12c-14 -38 -20 -60 -30 -91l-62 -197c-5 -13 -18 -57 -18 -77c0 -21 7 -28 28 -28c22 0 37 5 64 21l64 40'], + 0xE47D: [482,9,613,31,596,'596 67l-47 -32c-45 -31 -69 -44 -84 -44c-29 0 -78 68 -196 268c-30 -32 -51 -72 -52 -116l-3 -135l-73 -17l-12 7c21 129 31 334 20 393c-2 12 -12 21 -23 21s-21 -5 -51 -23l-32 -21l-12 20l28 20c74 53 114 73 138 73c17 0 28 -10 32 -31c3 -12 3 -24 2 -42l-2 -26 c-3 -22 -3 -62 -5 -85l-3 -66c110 175 190 251 266 251c14 0 36 -3 56 -9l-7 -63c-20 4 -32 6 -43 6c-57 0 -105 -25 -163 -86l-13 -14c68 -123 104 -177 156 -241c13 -17 23 -23 34 -23c10 0 17 2 31 10l45 24'], + 0xE47E: [482,9,676,42,649,'649 67l-50 -32c-49 -31 -75 -44 -91 -44c-30 0 -84 68 -210 268c-32 -32 -55 -72 -56 -116l-3 -135l-78 -17l-13 7c23 129 33 334 21 393c-2 12 -13 21 -25 21c-11 0 -22 -5 -54 -23l-35 -21l-13 20l30 20c81 53 123 73 149 73c18 0 30 -10 35 -31c2 -12 2 -24 1 -42 l-2 -26c-3 -22 -3 -62 -5 -85l-4 -66c118 175 204 251 285 251c16 0 39 -3 61 -9l-8 -63c-21 4 -34 6 -45 6c-62 0 -113 -25 -175 -86l-15 -14c74 -123 112 -177 168 -241c14 -17 24 -23 37 -23c11 0 18 2 33 10l48 24'], + 0xE47F: [482,9,585,76,584,'584 473l-22 -63c-18 4 -29 6 -39 6c-54 0 -106 -25 -175 -86l-16 -14c36 -123 58 -177 93 -241c9 -17 16 -23 27 -23c10 0 16 2 32 10l48 24l8 -19l-52 -32c-51 -31 -76 -44 -90 -44c-28 0 -59 68 -125 268c-36 -32 -65 -72 -76 -116l-34 -135l-74 -17l-9 7 c50 129 107 334 109 393c1 12 -6 21 -17 21c-10 0 -21 -5 -53 -23l-36 -21l-7 20l31 20c84 53 126 73 149 73c16 0 25 -10 24 -31c-1 -12 -4 -24 -9 -42l-8 -26c-7 -22 -17 -62 -24 -85l-18 -66c145 175 239 251 311 251c14 0 34 -3 52 -9'], + 0xE480: [482,9,646,91,636,'636 473l-23 -63c-20 4 -32 6 -42 6c-59 0 -114 -25 -188 -86l-18 -14c40 -123 62 -177 100 -241c10 -17 18 -23 29 -23s18 2 35 10l51 24l9 -19l-56 -32c-54 -31 -82 -44 -97 -44c-29 0 -63 68 -133 268c-39 -32 -71 -72 -82 -116l-37 -135l-79 -17l-10 7 c53 129 115 334 118 393c0 12 -7 21 -19 21c-11 0 -23 -5 -57 -23l-39 -21l-7 20l34 20c89 53 135 73 159 73c18 0 27 -10 25 -31c0 -12 -3 -24 -9 -42l-8 -26c-8 -22 -19 -62 -26 -85l-20 -66c156 175 257 251 334 251c15 0 36 -3 56 -9'], + 0xE481: [469,17,699,34,665,'665 73l-44 -31c-55 -39 -99 -59 -128 -59c-26 0 -49 23 -95 97l-96 155l-29 -34c-18 -26 -20 -31 -22 -97c-1 -54 -1 -69 3 -101c-30 -2 -47 -3 -101 -14l-17 -3l-4 9c8 43 11 67 13 92l6 107c6 109 1 142 -2 160c-2 10 -9 16 -17 16c-11 0 -26 -7 -44 -20l-34 -24 l-20 26l79 64c45 36 83 53 113 53c19 0 31 -11 35 -32c3 -15 3 -36 0 -78l-1 -2c-2 -18 -2 -33 -5 -67l-4 -68c36 57 89 119 143 171c58 54 100 76 152 76c14 0 31 -3 51 -9l-9 -70c-26 6 -41 8 -58 8c-60 0 -109 -26 -151 -80l109 -173c30 -48 64 -80 84 -80 c12 0 25 5 48 20l28 17'], + 0xE482: [469,17,769,45,723,'723 73l-47 -31c-60 -39 -107 -59 -138 -59c-28 0 -52 23 -101 97l-104 155l-31 -34c-19 -26 -21 -31 -23 -97c-2 -54 -1 -69 3 -101c-32 -2 -51 -3 -109 -14l-17 -3l-5 9c8 43 12 67 14 92l6 107c6 109 2 142 -2 160c-2 10 -10 16 -18 16c-11 0 -28 -7 -48 -20l-36 -24 l-22 26l86 64c48 36 88 53 121 53c20 0 33 -11 38 -32c3 -15 3 -36 -1 -78v-2c-3 -18 -3 -33 -6 -67l-5 -68c40 57 96 119 154 171c62 54 108 76 163 76c15 0 34 -3 55 -9l-10 -70c-28 6 -43 8 -62 8c-65 0 -117 -26 -162 -80l117 -173c33 -48 69 -80 90 -80 c13 0 27 5 52 20l30 17'], + 0xE483: [469,17,666,70,632,'632 460l-25 -70c-24 6 -37 8 -53 8c-58 0 -110 -26 -162 -80l63 -173c18 -48 43 -80 61 -80c12 0 26 5 51 20l30 17l10 -29l-49 -31c-62 -39 -108 -59 -136 -59c-25 0 -41 23 -68 97l-55 155l-35 -34c-23 -26 -27 -31 -44 -97c-14 -54 -17 -69 -20 -101 c-30 -2 -46 -3 -100 -14l-16 -3l-2 9c17 43 25 67 33 92l31 107c30 109 34 142 35 160c0 10 -5 16 -13 16c-10 0 -26 -7 -46 -20l-39 -24l-13 26l91 64c51 36 91 53 120 53c18 0 27 -11 26 -32c0 -15 -6 -36 -18 -78l-2 -2c-6 -18 -10 -33 -20 -67l-20 -68 c48 57 113 119 176 171c68 54 113 76 162 76c13 0 30 -3 47 -9'], + 0xE484: [469,17,734,85,687,'687 460l-26 -70c-26 6 -39 8 -57 8c-62 0 -118 -26 -174 -80l68 -173c19 -48 46 -80 65 -80c13 0 28 5 55 20l32 17l11 -29l-53 -31c-66 -39 -116 -59 -145 -59c-27 0 -45 23 -73 97l-60 155l-38 -34c-24 -26 -28 -31 -46 -97c-16 -54 -19 -69 -22 -101 c-32 -2 -50 -3 -107 -14l-18 -3l-2 9c18 43 28 67 36 92l33 107c32 109 36 142 37 160c1 10 -5 16 -13 16c-11 0 -29 -7 -50 -20l-41 -24l-14 26l97 64c55 36 98 53 129 53c19 0 29 -11 28 -32c-1 -15 -6 -36 -20 -78l-1 -2c-7 -18 -11 -33 -22 -67l-22 -68 c52 57 122 119 189 171c73 54 122 76 175 76c14 0 31 -3 49 -9'], + 0xE485: [483,17,775,50,725,'725 114l-52 -93c-11 -18 -35 -30 -67 -30c-87 0 -112 51 -112 207c0 43 8 85 18 121l-158 -179c-50 -58 -74 -90 -116 -144c-29 -2 -43 -10 -71 -13c0 0 -17 19 -27 39c21 21 35 32 54 48c21 58 39 118 39 194c0 96 -44 152 -87 153c-30 0 -49 -19 -79 -66l-17 9l53 93 c10 18 34 30 66 30c87 0 112 -51 112 -207c0 -50 -11 -102 -25 -147l165 166c30 31 106 121 149 175c26 3 13 3 42 7c0 0 16 -24 25 -44c-19 -20 -43 -40 -68 -61c-15 -48 -27 -95 -27 -162c0 -96 45 -152 87 -153c30 0 49 19 79 66'], + 0xE486: [483,17,851,63,788,'788 114l-57 -93c-11 -18 -37 -30 -71 -30c-93 0 -120 51 -120 207c0 43 8 85 19 121l-169 -179c-54 -58 -80 -90 -126 -144c-30 -2 -45 -10 -76 -13c0 0 -18 19 -28 39c22 21 37 32 58 48c22 58 42 118 42 194c0 96 -48 152 -94 153c-32 0 -53 -19 -85 -66l-18 9l57 93 c11 18 36 30 71 30c93 0 120 -51 120 -207c0 -50 -12 -102 -27 -147l177 166c32 31 114 121 160 175c28 3 14 3 45 7c0 0 17 -24 27 -44c-21 -20 -46 -40 -73 -61c-16 -48 -29 -95 -29 -162c0 -96 48 -152 94 -153c32 0 52 19 84 66'], + 0xE487: [483,17,739,88,674,'674 114l-72 -93c-14 -18 -39 -30 -70 -30c-83 0 -95 51 -59 207c10 43 28 85 46 121l-192 -179c-61 -58 -92 -90 -145 -144c-27 -2 -42 -10 -70 -13c0 0 -12 19 -16 39c24 21 40 32 62 48c33 58 65 118 82 194c22 96 -7 152 -47 153c-29 0 -52 -19 -91 -66l-14 9l72 93 c14 18 39 30 70 30c83 0 95 -51 59 -207c-12 -50 -35 -102 -58 -147l195 166c36 31 129 121 182 175c26 3 14 3 42 7c0 0 10 -24 14 -44c-23 -20 -51 -40 -79 -61c-26 -48 -48 -95 -63 -162c-22 -96 7 -152 47 -153c29 0 52 19 91 66'], + 0xE488: [483,17,812,104,733,'733 114l-77 -93c-15 -18 -43 -30 -75 -30c-89 0 -102 51 -64 207c11 43 30 85 49 121l-206 -179c-66 -58 -98 -90 -155 -144c-30 -2 -46 -10 -76 -13c0 0 -13 19 -17 39c26 21 43 32 67 48c35 58 69 118 88 194c24 96 -8 152 -51 153c-30 0 -55 -19 -97 -66l-15 9l77 93 c15 18 42 30 75 30c89 0 102 -51 63 -207c-12 -50 -37 -102 -62 -147l210 166c38 31 138 121 195 175c28 3 15 3 45 7c0 0 11 -24 15 -44c-25 -20 -54 -40 -85 -61c-27 -48 -51 -95 -68 -162c-23 -96 8 -152 51 -153c31 0 55 19 97 66'], + 0xE489: [469,17,775,52,723,'723 124l-54 -96c-11 -20 -55 -45 -94 -45c-68 0 -91 49 -91 205c0 27 3 55 9 82l-106 -121c-51 -58 -71 -94 -111 -154c-29 -2 -57 -5 -95 -10c-22 15 -33 27 -46 39c32 33 40 43 71 75c13 50 23 101 23 153c0 71 -21 132 -64 132c-38 0 -70 -37 -89 -69l-24 13l54 96 c12 20 55 45 94 45c69 0 92 -49 92 -205c0 -28 -4 -57 -11 -84c36 39 61 72 106 119c29 31 77 98 120 152c28 2 48 9 76 12c0 0 47 -32 56 -52c-24 -25 -45 -41 -70 -63c-14 -49 -22 -98 -22 -148c0 -71 20 -132 64 -132c38 0 70 37 88 69'], + 0xE48A: [469,17,851,65,785,'785 124l-57 -96c-13 -20 -59 -45 -101 -45c-74 0 -98 49 -98 205c0 27 3 55 9 82l-114 -121c-54 -58 -76 -94 -119 -154c-31 -2 -60 -5 -102 -10c-23 15 -34 27 -49 39c34 33 43 43 76 75c15 50 25 101 25 153c0 71 -22 132 -69 132c-41 0 -75 -37 -95 -69l-26 13l58 96 c12 20 59 45 101 45c74 0 98 -49 98 -205c0 -28 -3 -57 -11 -84c38 39 65 72 113 119c32 31 84 98 129 152c31 2 52 9 82 12c0 0 51 -32 61 -52c-26 -25 -49 -41 -76 -63c-15 -49 -24 -98 -24 -148c0 -71 22 -132 69 -132c41 0 75 37 95 69'], + 0xE48B: [469,17,739,83,674,'674 124l-73 -96c-16 -20 -63 -45 -100 -45c-65 0 -76 49 -40 205c6 27 16 55 28 82l-129 -121c-62 -58 -90 -94 -142 -154c-28 -2 -54 -5 -93 -10c-17 15 -24 27 -34 39c38 33 48 43 85 75c24 50 45 101 57 153c16 71 11 132 -30 132c-36 0 -76 -37 -100 -69l-20 13 l73 96c16 20 63 45 100 45c65 0 76 -49 40 -205c-7 -28 -17 -57 -30 -84c43 39 75 72 128 119c36 31 97 98 150 152c28 2 48 9 76 12c0 0 37 -32 41 -52c-29 -25 -53 -41 -82 -63c-24 -49 -43 -98 -55 -148c-17 -71 -11 -132 30 -132c36 0 75 37 100 69'], + 0xE48C: [469,17,812,98,733,'733 124l-79 -96c-17 -20 -67 -45 -107 -45c-70 0 -81 49 -43 205c7 27 18 55 30 82l-139 -121c-66 -58 -96 -94 -152 -154c-29 -2 -58 -5 -99 -10c-19 15 -26 27 -37 39c41 33 51 43 91 75c26 50 48 101 61 153c18 71 12 132 -32 132c-39 0 -81 -37 -108 -69l-21 13 l79 96c17 20 67 45 107 45c70 0 81 -49 43 -205c-7 -28 -18 -57 -32 -84c46 39 80 72 137 119c39 31 104 98 161 152c30 2 52 9 82 12c0 0 40 -32 44 -52c-31 -25 -57 -41 -88 -63c-27 -49 -47 -98 -59 -148c-18 -71 -12 -132 32 -132c39 0 81 37 108 69'], + 0xE48D: [711,12,671,17,656,'656 85c-95 -72 -132 -94 -160 -94c-18 0 -33 11 -40 28l-159 397c-101 -163 -135 -255 -192 -406c-27 -8 -42 -13 -61 -22l-27 22c44 80 190 331 266 439l-37 93c-22 58 -61 103 -91 103c-10 0 -42 -12 -62 -19l-1 24c22 14 62 39 89 61c54 -6 108 -77 165 -217 l141 -349c18 -34 28 -58 40 -70c16 -19 20 -19 25 -19c9 0 35 10 64 30l27 17'], + 0xE48E: [711,12,738,28,714,'714 85c-102 -72 -142 -94 -172 -94c-20 0 -36 11 -43 28l-171 397c-108 -163 -145 -255 -206 -406c-29 -8 -45 -13 -65 -22l-29 22c47 80 203 331 285 439l-40 93c-24 58 -65 103 -97 103c-11 0 -45 -12 -67 -19l-1 24c24 14 66 39 95 61c59 -6 117 -77 177 -217 l152 -349c19 -34 30 -58 43 -70c17 -19 22 -19 27 -19c10 0 37 10 69 30l28 17'], + 0xE48F: [711,12,640,-24,602,'602 85c-107 -72 -148 -94 -175 -94c-17 0 -29 11 -31 28l-60 397c-134 -163 -187 -255 -276 -406c-28 -8 -44 -13 -64 -22l-20 22c60 80 257 331 355 439l-14 93c-8 58 -34 103 -63 103c-9 0 -43 -12 -64 -19l5 24c24 14 68 39 99 61c50 -6 85 -77 107 -217l53 -349 c9 -34 14 -58 22 -70c11 -19 15 -19 20 -19c8 0 35 10 68 30l29 17'], + 0xE490: [711,12,706,-17,655,'655 85c-115 -72 -158 -94 -187 -94c-19 0 -31 11 -34 28l-64 397c-144 -163 -201 -255 -297 -406c-29 -8 -46 -13 -68 -22l-22 22c65 80 276 331 381 439l-15 93c-8 58 -36 103 -67 103c-10 0 -46 -12 -69 -19l5 24c27 14 74 39 106 61c55 -6 92 -77 115 -217l58 -349 c10 -34 14 -58 23 -70c12 -19 17 -19 21 -19c10 0 38 10 73 30l32 17'], + 0xE491: [718,19,688,21,667,'667 84c-11 -8 -15 -10 -28 -20c-81 -58 -130 -81 -174 -81c-21 0 -33 18 -45 42l-141 353c-64 -119 -109 -244 -157 -369c-32 -9 -43 -17 -69 -28l-32 27c73 157 138 252 238 419l-49 126c-18 45 -54 72 -78 76c-5 1 -10 1 -14 1c-13 0 -48 -14 -55 -17l-3 32 c23 14 65 39 108 71c11 1 22 2 27 2c34 0 71 -32 98 -77c22 -35 47 -105 70 -161l138 -342c16 -30 26 -52 38 -66c3 -4 11 -9 17 -9c13 0 29 10 64 32l28 17'], + 0xE492: [718,19,757,32,726,'726 84c-12 -8 -17 -10 -31 -20c-87 -58 -139 -81 -186 -81c-23 0 -36 18 -48 42l-152 353c-69 -119 -117 -244 -169 -369c-34 -9 -46 -17 -74 -28l-34 27c78 157 148 252 255 419l-53 126c-19 45 -57 72 -84 76c-5 1 -10 1 -14 1c-14 0 -52 -14 -59 -17l-4 32 c26 14 71 39 117 71c12 1 24 2 29 2c36 0 75 -32 105 -77c23 -35 50 -105 75 -161l148 -342c17 -30 28 -52 41 -66c3 -4 12 -9 18 -9c14 0 31 10 69 32l30 17'], + 0xE493: [718,19,657,-21,612,'612 84c-12 -8 -17 -10 -31 -20c-91 -58 -143 -81 -185 -81c-20 0 -27 18 -33 42l-53 353c-89 -119 -160 -244 -235 -369c-32 -9 -45 -17 -72 -28l-24 27c105 157 190 252 323 419l-17 126c-7 45 -34 72 -57 76c-4 1 -9 1 -13 1c-12 0 -49 -14 -56 -17l4 32 c26 14 72 39 120 71c11 1 22 2 26 2c33 0 60 -32 75 -77c13 -35 21 -105 30 -161l52 -342c8 -30 13 -52 21 -66c2 -4 8 -9 14 -9c12 0 30 10 69 32l30 17'], + 0xE494: [718,19,723,-14,666,'666 84c-13 -8 -18 -10 -34 -20c-97 -58 -153 -81 -197 -81c-23 0 -30 18 -36 42l-57 353c-95 -119 -172 -244 -253 -369c-34 -9 -47 -17 -77 -28l-26 27c114 157 205 252 348 419l-19 126c-7 45 -37 72 -61 76c-5 1 -9 1 -14 1c-13 0 -52 -14 -61 -17l5 32 c28 14 77 39 129 71c12 1 23 2 28 2c35 0 64 -32 81 -77c13 -35 22 -105 31 -161l56 -342c10 -30 14 -52 23 -66c2 -4 9 -9 15 -9c13 0 32 10 74 32l32 17'], + 0xE495: [482,276,702,49,664,'664 85c-97 -72 -134 -94 -164 -94c-22 0 -38 15 -43 40c-4 16 -5 38 -2 76l13 132c-24 -51 -44 -79 -80 -125c-61 -74 -124 -125 -158 -125c-4 0 -12 1 -27 4l35 -225c1 -13 -6 -23 -31 -32l-32 -12l-17 8l9 660c-1 11 -12 20 -23 20c-10 0 -21 -5 -50 -23l-32 -21 l-13 20l29 20c74 54 112 74 136 74c16 0 27 -11 32 -32c2 -12 3 -26 3 -42l-8 -271c-2 -26 -1 -37 4 -52c3 -17 9 -26 19 -26c47 0 124 74 171 166c24 46 36 113 39 189v51l74 17l10 -9l-20 -357c-3 -16 0 -32 1 -40c2 -10 9 -17 18 -17c14 0 39 11 65 27l25 17'], + 0xE496: [482,276,772,62,721,'721 85c-103 -72 -143 -94 -175 -94c-24 0 -41 15 -46 40c-5 16 -6 38 -2 76l13 132c-25 -51 -46 -79 -86 -125c-65 -74 -132 -125 -169 -125c-4 0 -12 1 -28 4l36 -225c2 -13 -6 -23 -33 -32l-34 -12l-19 8l10 660c-1 11 -12 20 -24 20c-11 0 -22 -5 -54 -23l-35 -21 l-13 20l30 20c80 54 121 74 147 74c17 0 29 -11 34 -32c3 -12 4 -26 4 -42l-9 -271c-2 -26 -1 -37 4 -52c4 -17 10 -26 21 -26c50 0 132 74 183 166c26 46 39 113 42 189v51l79 17l11 -9l-22 -357c-2 -16 0 -32 2 -40c2 -10 9 -17 19 -17c15 0 42 11 70 27l27 17'], + 0xE497: [482,276,670,45,608,'608 85c-108 -72 -149 -94 -177 -94c-21 0 -33 15 -31 40c-1 16 3 38 15 76l43 132c-35 -51 -60 -79 -105 -125c-75 -74 -147 -125 -180 -125c-3 0 -11 1 -24 4l-19 -225c-2 -13 -11 -23 -37 -32l-34 -12l-14 8l162 660c1 11 -7 20 -18 20c-9 0 -20 -5 -53 -23l-35 -21 l-8 20l32 20c84 54 124 74 147 74c15 0 24 -11 23 -32c0 -12 -3 -26 -6 -42l-71 -271c-8 -26 -9 -37 -8 -52c-1 -17 2 -26 12 -26c45 0 135 74 201 166c33 46 61 113 81 189l12 51l74 17l8 -9l-102 -357c-6 -16 -8 -32 -8 -40c-1 -10 4 -17 13 -17c13 0 40 11 68 27l28 17'], + 0xE498: [482,276,737,57,662,'662 85c-116 -72 -160 -94 -190 -94c-23 0 -35 15 -34 40c0 16 4 38 17 76l46 132c-38 -51 -64 -79 -113 -125c-81 -74 -158 -125 -193 -125c-3 0 -11 1 -26 4l-21 -225c-2 -13 -11 -23 -39 -32l-36 -12l-16 8l174 660c2 11 -7 20 -18 20s-23 -5 -58 -23l-38 -21l-8 20 l35 20c89 54 133 74 157 74c17 0 26 -11 25 -32c-1 -12 -3 -26 -7 -42l-75 -271c-9 -26 -11 -37 -10 -52c-1 -17 3 -26 14 -26c48 0 144 74 215 166c36 46 66 113 87 189l13 51l80 17l8 -9l-110 -357c-6 -16 -8 -32 -8 -40c-1 -10 5 -17 14 -17c14 0 43 11 74 27l30 17'], + 0xE499: [469,271,683,27,665,'665 88l-35 -26c-57 -46 -116 -79 -140 -79c-23 0 -44 17 -51 43c-2 16 -3 41 0 81l8 117c-68 -153 -142 -224 -244 -242l20 -205c2 -19 -26 -35 -87 -48l-13 9l16 398c1 15 1 29 1 42c7 99 8 156 3 175c-3 12 -14 23 -23 23c-5 0 -22 -8 -36 -16l-36 -21l-21 26l78 54 c45 31 89 50 120 50c20 0 33 -13 39 -35c7 -30 8 -47 2 -147l-6 -137c-3 -26 0 -49 3 -66c3 -8 13 -13 23 -13c33 0 80 53 118 131c36 78 48 169 33 245c38 0 74 5 121 18l13 -11l-16 -181c-5 -167 -7 -183 -6 -187c2 -7 9 -12 20 -12c16 0 37 9 57 25l20 17'], + 0xE49A: [469,271,751,38,723,'723 88l-37 -26c-62 -46 -125 -79 -151 -79c-25 0 -47 17 -54 43c-3 16 -4 41 0 81l8 117c-73 -153 -152 -224 -261 -242l21 -205c2 -19 -29 -35 -94 -48l-13 9l17 398c1 15 1 29 1 42c7 99 9 156 3 175c-3 12 -15 23 -25 23c-5 0 -23 -8 -38 -16l-39 -21l-23 26l84 54 c48 31 96 50 129 50c21 0 36 -13 42 -35c7 -30 8 -47 2 -147l-7 -137c-3 -26 0 -49 3 -66c4 -8 14 -13 25 -13c36 0 86 53 127 131c39 78 51 169 35 245c41 0 80 5 130 18l14 -11l-17 -181c-5 -167 -8 -183 -6 -187c2 -7 9 -12 21 -12c17 0 40 9 61 25l22 17'], + 0xE49B: [469,271,651,14,610,'610 88l-38 -26c-66 -46 -130 -79 -153 -79c-22 0 -37 17 -38 43c2 16 6 41 19 81l35 117c-101 -153 -187 -224 -289 -242l-29 -205c-2 -19 -33 -35 -93 -48l-10 9l107 398c5 15 8 29 11 42c29 99 44 156 43 175c0 12 -8 23 -17 23c-4 0 -22 -8 -37 -16l-40 -21l-14 26 l87 54c50 31 97 50 126 50c19 0 29 -13 29 -35c0 -30 -3 -47 -32 -147l-38 -137c-8 -26 -12 -49 -12 -66c1 -8 9 -13 19 -13c31 0 88 53 142 131c53 78 85 169 89 245c36 0 72 5 119 18l10 -11l-58 -181c-43 -167 -48 -183 -48 -187c0 -7 6 -12 15 -12c16 0 39 9 61 25 l23 17'], + 0xE49C: [469,271,717,24,664,'664 88l-41 -26c-70 -46 -139 -79 -164 -79c-23 0 -40 17 -41 43c2 16 7 41 21 81l37 117c-108 -153 -201 -224 -310 -242l-31 -205c-2 -19 -35 -35 -100 -48l-11 9l115 398c5 15 9 29 12 42c31 99 47 156 46 175c0 12 -9 23 -18 23c-5 0 -24 -8 -40 -16l-43 -21l-14 26 l93 54c53 31 103 50 135 50c20 0 30 -13 31 -35c-1 -30 -4 -47 -34 -147l-41 -137c-9 -26 -13 -49 -13 -66c1 -8 9 -13 20 -13c34 0 95 53 153 131c57 78 91 169 95 245c38 0 77 5 128 18l10 -11l-61 -181c-46 -167 -53 -183 -52 -187c0 -7 6 -12 17 -12c16 0 40 9 64 25 l26 17'], + 0xE49D: [482,12,591,9,532,'532 473c7 -35 -47 -188 -85 -277c-79 -192 -199 -207 -242 -208l-24 15c-5 19 -7 35 -10 57l-33 301c-3 29 -19 49 -35 49c-6 0 -11 -2 -22 -9l-56 -33l-16 18l83 56c51 33 62 40 78 40c20 0 32 -20 40 -62c12 -64 32 -275 37 -304c4 -27 6 -39 10 -63 c46 6 106 23 146 124c22 53 68 198 52 286c24 2 31 8 62 19'], + 0xE49E: [482,12,653,19,580,'580 473c8 -35 -50 -188 -91 -277c-84 -192 -213 -207 -260 -208l-26 15c-5 19 -7 35 -10 57l-35 301c-4 29 -21 49 -38 49c-7 0 -12 -2 -24 -9l-60 -33l-17 18l89 56c55 33 67 40 84 40c21 0 34 -20 43 -62c12 -64 34 -275 39 -304c5 -27 6 -39 11 -63 c49 6 113 23 156 124c25 53 74 198 57 286c26 2 33 8 66 19'], + 0xE49F: [482,12,564,55,573,'573 473c-2 -35 -88 -188 -145 -277c-120 -192 -237 -207 -279 -208l-19 15c0 19 1 35 4 57l38 301c4 29 -7 49 -22 49c-6 0 -11 -2 -23 -9l-61 -33l-11 18l92 56c56 33 68 40 84 40c18 0 26 -20 23 -62c-3 -64 -33 -275 -35 -304c-2 -27 -4 -39 -5 -63 c45 6 106 23 167 124c34 53 112 198 117 286c23 2 31 8 63 19'], + 0xE4A0: [482,12,624,68,624,'624 473c-1 -35 -94 -188 -155 -277c-129 -192 -255 -207 -300 -208l-21 15c0 19 2 35 5 57l41 301c4 29 -8 49 -24 49c-6 0 -11 -2 -25 -9l-65 -33l-12 18l99 56c60 33 73 40 90 40c20 0 28 -20 25 -62c-4 -64 -35 -275 -38 -304c-2 -27 -4 -39 -5 -63 c48 6 113 23 180 124c36 53 119 198 124 286c26 2 34 8 68 19'], + 0xE4A1: [469,17,601,0,548,'548 457c-7 -43 -30 -111 -66 -214c-20 -53 -76 -156 -125 -201c-54 -50 -100 -57 -162 -59l-21 12c-12 45 -22 98 -28 160l-16 197c-1 11 -12 18 -25 18c-23 0 -50 -13 -84 -41l-21 28l79 62c39 30 81 50 107 50c28 0 49 -24 57 -63c5 -24 8 -52 11 -80l11 -163 c4 -34 6 -64 13 -100c52 4 102 47 139 142c31 77 40 175 29 242c38 2 39 7 86 20'], + 0xE4A2: [469,17,664,9,597,'597 457c-7 -43 -32 -111 -71 -214c-21 -53 -81 -156 -134 -201c-58 -50 -107 -57 -173 -59l-23 12c-13 45 -24 98 -30 160l-17 197c-1 11 -14 18 -27 18c-25 0 -54 -13 -90 -41l-23 28l85 62c41 30 87 50 115 50c30 0 53 -24 62 -63c5 -24 8 -52 11 -80l12 -163 c4 -34 6 -64 13 -100c57 4 110 47 150 142c34 77 43 175 31 242c41 2 42 7 92 20'], + 0xE4A3: [469,17,574,39,585,'585 457c-17 -43 -54 -111 -113 -214c-31 -53 -108 -156 -166 -201c-62 -50 -108 -57 -167 -59l-18 12c0 45 2 98 11 160l30 197c2 11 -7 18 -19 18c-22 0 -51 -13 -89 -41l-15 28l90 62c44 30 89 50 114 50c26 0 41 -24 40 -63c-1 -24 -5 -52 -9 -80l-27 -163 c-4 -34 -9 -64 -11 -100c51 4 108 47 166 142c47 77 79 175 83 242c37 2 39 7 87 20'], + 0xE4A4: [469,17,634,51,637,'637 457c-18 -43 -58 -111 -121 -214c-33 -53 -116 -156 -178 -201c-67 -50 -116 -57 -179 -59l-20 12c0 45 2 98 12 160l33 197c1 11 -9 18 -22 18c-23 0 -54 -13 -95 -41l-16 28l97 62c47 30 95 50 122 50c28 0 44 -24 43 -63c-1 -24 -5 -52 -10 -80l-28 -163 c-5 -34 -10 -64 -12 -100c54 4 115 47 178 142c50 77 84 175 89 242c39 2 42 7 93 20'], + 0xE4A5: [482,11,895,59,834,'831 384c8 -42 2 -110 -16 -163c-22 -63 -60 -126 -101 -167c-46 -45 -90 -65 -140 -65c-65 0 -120 41 -143 103c-35 -29 -54 -49 -94 -71c-29 -16 -70 -32 -103 -32c-42 0 -71 14 -101 40c-46 39 -59 89 -70 147c-14 76 15 163 86 230c25 24 70 57 96 76l22 -18 c-10 -11 -28 -28 -39 -38c-83 -81 -95 -162 -77 -254c6 -30 20 -66 48 -89c22 -20 53 -33 86 -33c39 0 69 16 97 40c28 25 32 67 39 101l7 122l70 26l15 -14c-3 -17 -8 -31 -9 -48l-7 -77c-2 -26 1 -39 3 -54c13 -66 56 -107 113 -107c100 0 179 162 151 311 c-8 40 -29 63 -61 63c-11 0 -20 -3 -29 -9l-16 19l48 47c9 8 20 12 36 12c42 0 78 -40 89 -98'], + 0xE4A6: [482,11,980,73,905,'902 384c8 -42 1 -110 -18 -163c-23 -63 -64 -126 -109 -167c-49 -45 -95 -65 -150 -65c-70 0 -128 41 -153 103c-37 -29 -58 -49 -101 -71c-31 -16 -75 -32 -110 -32c-46 0 -77 14 -109 40c-49 39 -63 89 -75 147c-15 76 16 163 92 230c27 24 75 57 103 76l24 -18 c-10 -11 -30 -28 -42 -38c-89 -81 -102 -162 -83 -254c7 -30 21 -66 52 -89c24 -20 57 -33 93 -33c41 0 74 16 103 40c31 25 34 67 42 101l8 122l75 26l16 -14c-4 -17 -8 -31 -10 -48l-7 -77c-2 -26 0 -39 3 -54c14 -66 61 -107 121 -107c108 0 193 162 162 311 c-8 40 -30 63 -65 63c-12 0 -21 -3 -31 -9l-17 19l51 47c10 8 21 12 38 12c46 0 85 -40 97 -98'], + 0xE4A7: [482,11,854,56,838,'838 384c-2 -42 -24 -110 -54 -163c-35 -63 -86 -126 -135 -167c-54 -45 -100 -65 -148 -65c-62 0 -105 41 -113 103c-39 -29 -62 -49 -106 -71c-31 -16 -73 -32 -105 -32c-40 0 -64 14 -87 40c-34 39 -35 89 -32 147c4 76 52 163 134 230c30 24 81 57 110 76l16 -18 c-11 -11 -33 -28 -45 -38c-98 -81 -128 -162 -132 -254c-2 -30 3 -66 25 -89c16 -20 43 -33 74 -33c37 0 70 16 101 40c33 25 46 67 61 101l35 122l73 26l11 -14c-8 -17 -15 -31 -20 -48l-24 -77c-8 -26 -9 -39 -10 -54c-3 -66 29 -107 82 -107c96 0 209 162 216 311 c2 40 -12 63 -42 63c-11 0 -20 -3 -30 -9l-11 19l56 47c11 8 22 12 37 12c40 0 66 -40 63 -98'], + 0xE4A8: [482,11,935,69,908,'908 384c-2 -42 -25 -110 -57 -163c-38 -63 -92 -126 -145 -167c-58 -45 -107 -65 -159 -65c-67 0 -112 41 -121 103c-42 -29 -67 -49 -114 -71c-33 -16 -78 -32 -112 -32c-44 0 -70 14 -94 40c-37 39 -38 89 -35 147c4 76 56 163 145 230c31 24 86 57 117 76l18 -18 c-12 -11 -35 -28 -49 -38c-105 -81 -137 -162 -142 -254c-1 -30 4 -66 27 -89c18 -20 46 -33 80 -33c40 0 75 16 109 40c35 25 49 67 65 101l38 122l77 26l12 -14c-8 -17 -15 -31 -21 -48l-26 -77c-9 -26 -9 -39 -10 -54c-4 -66 31 -107 88 -107c103 0 224 162 232 311 c2 40 -13 63 -46 63c-12 0 -21 -3 -32 -9l-12 19l61 47c11 8 23 12 39 12c43 0 71 -40 67 -98'], + 0xE4A9: [469,17,894,54,839,'835 370c18 -91 -26 -221 -105 -307c-46 -51 -108 -80 -172 -80c-70 0 -122 35 -149 97c-30 -26 -40 -47 -74 -68c-29 -18 -58 -29 -93 -29c-42 0 -82 13 -110 39c-33 29 -61 85 -69 124c-28 140 22 196 66 249c26 30 69 57 97 74l43 -24c-15 -11 -31 -28 -44 -44 c-56 -68 -59 -140 -40 -235c9 -43 57 -109 113 -109c29 0 50 20 68 40c14 16 29 59 32 96c4 47 5 88 8 118c46 10 75 15 107 28l20 -12c-12 -59 -24 -139 -15 -181c13 -66 46 -100 95 -100s87 30 114 89c27 60 38 143 26 200c-6 31 -29 54 -55 54c-17 0 -30 -4 -39 -12 l-15 21c18 14 32 30 62 67c13 3 19 4 29 4c43 0 89 -46 100 -99'], + 0xE4AA: [469,17,978,68,909,'905 370c20 -91 -28 -221 -112 -307c-50 -51 -116 -80 -185 -80c-75 0 -131 35 -159 97c-33 -26 -44 -47 -80 -68c-31 -18 -63 -29 -100 -29c-45 0 -88 13 -119 39c-34 29 -64 85 -73 124c-30 140 23 196 71 249c28 30 74 57 104 74l46 -24c-16 -11 -33 -28 -47 -44 c-60 -68 -63 -140 -43 -235c9 -43 61 -109 122 -109c30 0 53 20 72 40c15 16 32 59 35 96c3 47 4 88 8 118c49 10 80 15 115 28l21 -12c-13 -59 -25 -139 -16 -181c14 -66 50 -100 102 -100c53 0 93 30 123 89c28 60 40 143 28 200c-7 31 -31 54 -60 54 c-18 0 -32 -4 -41 -12l-17 21c20 14 35 30 67 67c14 3 21 4 31 4c47 0 96 -46 107 -99'], + 0xE4AB: [469,17,853,50,837,'837 370c-3 -91 -75 -221 -170 -307c-56 -51 -121 -80 -182 -80c-67 0 -109 35 -120 97c-34 -26 -50 -47 -86 -68c-32 -18 -63 -29 -95 -29c-41 0 -76 13 -97 39c-24 29 -38 85 -36 124c6 140 66 196 120 249c32 30 79 57 110 74l35 -24c-17 -11 -36 -28 -52 -44 c-69 -68 -88 -140 -92 -235c-2 -43 29 -109 82 -109c28 0 52 20 74 40c17 16 42 59 53 96c14 47 24 88 34 118c46 10 75 15 109 28l16 -12c-25 -59 -55 -139 -56 -181c-3 -66 21 -100 67 -100c47 0 90 30 129 89c40 60 70 143 72 200c1 31 -15 54 -40 54 c-17 0 -30 -4 -40 -12l-10 21c21 14 38 30 75 67c13 3 19 4 28 4c42 0 75 -46 72 -99'], + 0xE4AC: [469,17,934,63,908,'908 370c-4 -91 -81 -221 -183 -307c-60 -51 -130 -80 -196 -80c-71 0 -116 35 -128 97c-37 -26 -53 -47 -93 -68c-33 -18 -66 -29 -102 -29c-43 0 -81 13 -103 39c-26 29 -41 85 -39 124c6 140 71 196 129 249c34 30 85 57 118 74l38 -24c-18 -11 -39 -28 -56 -44 c-74 -68 -95 -140 -99 -235c-2 -43 31 -109 88 -109c30 0 56 20 79 40c19 16 45 59 57 96c15 47 26 88 37 118c50 10 80 15 117 28l17 -12c-27 -59 -59 -139 -61 -181c-3 -66 23 -100 73 -100c51 0 96 30 139 89c42 60 74 143 76 200c2 31 -16 54 -43 54 c-17 0 -32 -4 -42 -12l-11 21c23 14 41 30 80 67c14 3 21 4 31 4c44 0 79 -46 77 -99'], + 0xE4AD: [482,11,574,71,501,'495 331c20 -101 -7 -215 -66 -274c-43 -42 -107 -68 -170 -68c-95 0 -158 57 -179 163c-25 122 7 223 88 281c45 32 95 49 144 49c95 0 164 -57 183 -151zM411 315c-17 84 -64 129 -134 129c-27 0 -52 -6 -65 -17c-48 -40 -68 -163 -45 -276c16 -79 64 -124 131 -124 c35 0 62 12 79 33c39 53 53 159 34 255'], + 0xE4AE: [482,11,634,86,547,'540 331c22 -101 -7 -215 -70 -274c-47 -42 -115 -68 -182 -68c-102 0 -170 57 -193 163c-26 122 7 223 94 281c48 32 103 49 155 49c102 0 176 -57 196 -151zM451 315c-19 84 -69 129 -144 129c-29 0 -56 -6 -70 -17c-51 -40 -73 -163 -48 -276c17 -79 68 -124 140 -124 c38 0 67 12 85 33c42 53 57 159 37 255'], + 0xE4AF: [482,11,548,67,505,'505 331c-4 -101 -57 -215 -127 -274c-50 -42 -117 -68 -177 -68c-90 0 -137 57 -133 163c5 122 58 223 149 281c50 32 102 49 149 49c90 0 143 -57 139 -151zM421 315c4 84 -30 129 -97 129c-26 0 -51 -6 -66 -17c-55 -40 -102 -163 -107 -276c-3 -79 32 -124 96 -124 c33 0 62 12 83 33c50 53 88 159 91 255'], + 0xE4B0: [482,11,606,82,551,'551 331c-4 -101 -60 -215 -135 -274c-55 -42 -126 -68 -191 -68c-97 0 -147 57 -142 163c5 122 62 223 159 281c54 32 110 49 160 49c97 0 153 -57 149 -151zM462 315c3 84 -34 129 -105 129c-28 0 -55 -6 -71 -17c-59 -40 -110 -163 -115 -276c-3 -79 35 -124 103 -124 c36 0 67 12 89 33c54 53 94 159 99 255'], + 0xE4B1: [469,17,608,55,551,'544 319c13 -63 8 -145 -14 -193c-17 -40 -72 -90 -131 -116c-42 -19 -85 -27 -137 -27c-112 0 -180 51 -200 152c-9 41 -9 88 0 137c10 65 41 108 104 147c53 33 113 50 174 50c110 0 185 -55 204 -150zM413 323c-13 62 -57 102 -112 102c-38 0 -67 -17 -87 -51 c-30 -50 -39 -154 -21 -244c13 -63 56 -103 114 -103c36 0 65 17 86 51c30 50 38 155 20 245'], + 0xE4B2: [469,17,671,68,600,'593 319c14 -63 8 -145 -14 -193c-19 -40 -78 -90 -141 -116c-45 -19 -91 -27 -148 -27c-120 0 -193 51 -214 152c-9 41 -10 88 -1 137c12 65 45 108 112 147c57 33 122 50 187 50c118 0 199 -55 219 -150zM452 323c-13 62 -61 102 -120 102c-40 0 -71 -17 -93 -51 c-32 -50 -42 -154 -22 -244c13 -63 60 -103 121 -103c40 0 71 17 93 51c32 50 41 155 21 245'], + 0xE4B3: [469,17,579,46,549,'549 319c-2 -63 -26 -145 -58 -193c-25 -40 -89 -90 -151 -116c-45 -19 -88 -27 -138 -27c-107 0 -159 51 -155 152c2 41 12 88 32 137c25 65 64 108 133 147c58 33 120 50 177 50c105 0 164 -55 160 -150zM425 323c2 62 -31 102 -83 102c-36 0 -67 -17 -95 -51 c-40 -50 -72 -154 -76 -244c-2 -63 30 -103 84 -103c35 0 66 17 94 51c40 50 72 155 76 245'], + 0xE4B4: [469,17,640,59,599,'599 319c-3 -63 -29 -145 -62 -193c-28 -40 -97 -90 -163 -116c-48 -19 -94 -27 -148 -27c-114 0 -171 51 -166 152c1 41 13 88 34 137c27 65 68 108 143 147c62 33 128 50 190 50c112 0 176 -55 172 -150zM465 323c3 62 -33 102 -89 102c-38 0 -72 -17 -101 -51 c-44 -50 -78 -154 -82 -244c-3 -63 32 -103 90 -103c38 0 71 17 101 51c43 50 78 155 81 245'], + 0xE4B5: [482,276,750,71,677,'673 331c20 -103 -30 -217 -121 -276c-39 -26 -90 -45 -142 -56l2 -258c-36 -5 -57 -10 -80 -17l-9 6l2 37l10 223c-7 -1 -14 -1 -21 -1c-134 0 -216 56 -237 163c-24 125 32 227 157 285c33 15 74 34 99 34c3 0 8 -1 14 -12c-5 -9 -4 -9 -14 -18c-22 -3 -41 -8 -53 -14 c-81 -42 -137 -164 -116 -276c14 -72 77 -115 170 -123l1 302c0 16 5 35 14 46c23 28 69 65 108 87c23 12 50 19 76 19c31 0 91 -57 112 -87c13 -19 24 -40 28 -64zM589 315c-10 53 -50 118 -81 118c-37 0 -68 -9 -78 -24c-24 -20 -21 -182 -19 -261l-1 -119 c34 5 63 16 84 31c70 53 113 158 95 255'], + 0xE4B6: [482,276,824,86,736,'732 331c21 -103 -33 -217 -130 -276c-43 -26 -96 -45 -153 -56l3 -258c-39 -5 -62 -10 -87 -17l-9 6l2 37l10 223c-7 -1 -14 -1 -21 -1c-144 0 -233 56 -255 163c-26 125 34 227 169 285c35 15 79 34 106 34c3 0 8 -1 14 -12c-5 -9 -4 -9 -14 -18c-24 -3 -44 -8 -58 -14 c-86 -42 -147 -164 -123 -276c14 -72 82 -115 182 -123l1 302c0 16 5 35 15 46c25 28 74 65 116 87c24 12 54 19 82 19c33 0 98 -57 120 -87c13 -19 25 -40 30 -64zM642 315c-11 53 -54 118 -87 118c-40 0 -73 -9 -85 -24c-25 -20 -21 -182 -20 -261l-1 -119 c37 5 68 16 91 31c75 53 121 158 102 255'], + 0xE4B7: [482,276,715,64,675,'675 331c-5 -103 -80 -217 -179 -276c-44 -26 -96 -45 -149 -56l-58 -258c-35 -5 -57 -10 -80 -17l-7 6l10 37l61 223c-6 -1 -13 -1 -19 -1c-128 0 -194 56 -189 163c7 125 84 227 216 285c35 15 78 34 102 34c3 0 8 -1 10 -12c-7 -9 -5 -9 -17 -18 c-22 -3 -41 -8 -54 -14c-86 -42 -168 -164 -174 -276c-3 -72 47 -115 134 -123l70 302c4 16 13 35 24 46c29 28 81 65 123 87c25 12 53 19 78 19c29 0 73 -57 86 -87c8 -19 13 -40 12 -64zM591 315c3 53 -20 118 -50 118c-36 0 -66 -9 -80 -24c-27 -20 -62 -182 -79 -261 l-28 -119c34 5 64 16 87 31c79 53 144 158 150 255'], + 0xE4B8: [482,276,786,79,734,'734 331c-6 -103 -86 -217 -193 -276c-47 -26 -103 -45 -160 -56l-61 -258c-38 -5 -62 -10 -86 -17l-8 6l11 37l66 223c-7 -1 -14 -1 -22 -1c-136 0 -207 56 -201 163c6 125 89 227 231 285c37 15 84 34 109 34c4 0 9 -1 12 -12c-8 -9 -7 -9 -19 -18 c-24 -3 -44 -8 -58 -14c-92 -42 -181 -164 -187 -276c-3 -72 50 -115 144 -123l75 302c5 16 14 35 26 46c31 28 87 65 132 87c27 12 56 19 83 19c32 0 79 -57 93 -87c8 -19 14 -40 13 -64zM644 315c3 53 -22 118 -54 118c-38 0 -71 -9 -86 -24c-29 -20 -66 -182 -84 -261 l-31 -119c36 5 69 16 94 31c85 53 155 158 161 255'], + 0xE4B9: [469,271,812,55,755,'751 317c13 -64 -4 -141 -34 -190c-24 -38 -99 -84 -178 -112c-28 -9 -57 -16 -87 -22l1 -3c-10 -143 -12 -179 -4 -240c-20 -2 -41 -5 -89 -14c-16 -4 -20 -5 -35 -7l-13 7c6 41 9 66 12 122l9 125c-164 0 -253 50 -273 152c-8 39 -5 83 9 131c20 66 59 106 146 146 c44 21 92 36 143 46c3 -3 7 -6 10 -10c-2 -12 -9 -26 -12 -32c-32 -9 -62 -23 -85 -44c-56 -51 -97 -154 -80 -242c11 -53 63 -89 145 -100l14 251c-1 9 2 36 2 40c19 41 55 65 118 107c56 36 71 41 117 41c62 0 144 -55 164 -152zM618 325c-9 46 -29 92 -60 92 c-42 0 -65 -11 -78 -39c-9 -21 -15 -188 -19 -257l-6 -86c35 8 65 23 91 45c57 50 90 157 72 245'], + 0xE4BA: [469,271,891,68,820,'816 317c13 -64 -5 -141 -37 -190c-26 -38 -106 -84 -191 -112c-30 -9 -62 -16 -94 -22l1 -3c-10 -143 -12 -179 -4 -240c-21 -2 -44 -5 -95 -14c-18 -4 -22 -5 -38 -7l-14 7c6 41 10 66 14 122l8 125c-175 0 -271 50 -293 152c-8 39 -5 83 10 131c22 66 64 106 157 146 c47 21 99 36 154 46c3 -3 7 -6 10 -10c-2 -12 -9 -26 -13 -32c-34 -9 -66 -23 -91 -44c-60 -51 -104 -154 -86 -242c12 -53 67 -89 156 -100l15 251c-1 9 2 36 2 40c21 41 59 65 127 107c60 36 76 41 125 41c67 0 155 -55 177 -152zM673 325c-10 46 -31 92 -64 92 c-46 0 -70 -11 -84 -39c-10 -21 -16 -188 -21 -257l-6 -86c37 8 70 23 97 45c62 50 97 157 78 245'], + 0xE4BB: [469,271,774,44,746,'746 317c-3 -64 -37 -141 -77 -190c-32 -38 -113 -84 -195 -112c-29 -9 -59 -16 -88 -22v-3c-42 -143 -52 -179 -59 -240c-20 -2 -41 -5 -88 -14c-17 -4 -21 -5 -35 -7l-11 7c15 41 24 66 40 122l37 125c-156 0 -229 50 -225 152c2 39 14 83 39 131c35 66 81 106 173 146 c47 21 96 36 147 46c2 -3 5 -6 7 -10c-5 -12 -14 -26 -19 -32c-33 -9 -64 -23 -91 -44c-65 -51 -128 -154 -132 -242c-2 -53 39 -89 115 -100l71 251c2 9 10 36 12 40c28 41 67 65 137 107c62 36 77 41 121 41c58 0 124 -55 121 -152zM621 325c2 46 -6 92 -36 92 c-40 0 -64 -11 -83 -39c-14 -21 -58 -188 -78 -257l-26 -86c36 8 68 23 97 45c66 50 122 157 126 245'], + 0xE4BC: [469,271,850,57,810,'810 317c-3 -64 -39 -141 -82 -190c-35 -38 -122 -84 -210 -112c-31 -9 -63 -16 -95 -22v-3c-45 -143 -56 -179 -63 -240c-21 -2 -44 -5 -94 -14c-18 -4 -23 -5 -38 -7l-11 7c15 41 25 66 42 122l40 125c-167 0 -246 50 -241 152c1 39 15 83 42 131c37 66 86 106 185 146 c50 21 104 36 158 46c2 -3 5 -6 8 -10c-6 -12 -16 -26 -21 -32c-35 -9 -68 -23 -97 -44c-71 -51 -138 -154 -142 -242c-3 -53 41 -89 123 -100l77 251c1 9 10 36 12 40c30 41 72 65 147 107c66 36 83 41 130 41c63 0 133 -55 130 -152zM676 325c2 46 -7 92 -38 92 c-44 0 -70 -11 -90 -39c-15 -21 -62 -188 -84 -257l-27 -86c38 8 72 23 104 45c71 50 131 157 135 245'], + 0xE4BD: [644,274,749,72,676,'672 317c21 -103 -27 -215 -116 -270c-40 -24 -90 -41 -142 -49l7 -259c-36 -3 -57 -7 -80 -13l-9 7l2 36l6 223c-7 -1 -14 0 -21 0c-134 6 -219 66 -240 174c-27 126 27 225 151 278c32 13 64 23 97 29l-6 139c33 11 62 21 82 32l16 -15c-8 -44 -11 -85 -11 -150 c6 1 13 1 20 0c130 -6 223 -67 244 -162zM587 306c-16 77 -80 124 -179 135l1 -53l3 -225l2 -106c0 -5 -1 -16 -1 -29c34 3 63 13 85 27c68 49 109 153 89 251zM337 30l-9 413c-22 -2 -40 -6 -52 -12c-79 -38 -134 -157 -110 -270c15 -73 66 -116 171 -131'], + 0xE4BE: [644,274,823,86,735,'730 317c23 -103 -28 -215 -124 -270c-43 -24 -97 -41 -152 -49l7 -259c-38 -3 -61 -7 -86 -13l-10 7l3 36l6 223c-8 -1 -15 0 -22 0c-144 6 -235 66 -258 174c-29 126 29 225 162 278c34 13 69 23 104 29l-6 139c36 11 66 21 87 32l18 -15c-9 -44 -11 -85 -11 -150 c6 1 13 1 20 0c140 -6 240 -67 262 -162zM639 306c-17 77 -86 124 -191 135l1 -53l2 -225l3 -106c0 -5 -2 -16 -2 -29c37 3 68 13 91 27c74 49 118 153 96 251zM371 30l-9 413c-24 -2 -43 -6 -57 -12c-85 -38 -144 -157 -118 -270c16 -73 71 -116 184 -131'], + 0xE4BF: [644,274,714,69,670,'670 317c-3 -103 -75 -215 -173 -270c-43 -24 -95 -41 -146 -49l-54 -259c-34 -3 -56 -7 -79 -13l-7 7l10 36l57 223c-6 -1 -13 0 -19 0c-126 6 -193 66 -189 174c4 126 79 225 209 278c33 13 66 23 99 29l27 139c34 11 63 21 84 32l12 -15c-18 -44 -29 -85 -44 -150 c5 1 12 1 18 0c123 -6 197 -67 195 -162zM587 306c2 77 -48 124 -139 135l-11 -53l-50 -225l-23 -106c-1 -5 -4 -16 -7 -29c33 3 63 13 86 27c77 49 141 153 144 251zM372 443c-21 -2 -39 -6 -53 -12c-84 -38 -164 -157 -167 -270c-3 -73 36 -116 133 -131'], + 0xE4C0: [644,274,785,84,728,'728 317c-3 -103 -80 -215 -185 -270c-47 -24 -103 -41 -157 -49l-58 -259c-37 -3 -60 -7 -85 -13l-7 7l11 36l61 223c-7 -1 -14 0 -21 0c-135 6 -207 66 -202 174c4 126 84 225 223 278c36 13 71 23 107 29l29 139c36 11 68 21 91 32l12 -15c-19 -44 -31 -85 -48 -150 c7 1 14 1 20 0c132 -6 212 -67 209 -162zM639 306c3 77 -51 124 -149 135l-12 -53l-54 -225l-24 -106c-1 -5 -5 -16 -8 -29c36 3 68 13 93 27c83 49 151 153 154 251zM409 443c-23 -2 -43 -6 -57 -12c-90 -38 -176 -157 -180 -270c-3 -73 39 -116 143 -131'], + 0xE4C1: [633,268,807,55,751,'745 304c15 -64 3 -143 -25 -192c-24 -36 -95 -79 -174 -104c-28 -7 -58 -13 -87 -18l2 -3c-4 -143 -5 -178 6 -240c-21 -1 -42 -3 -90 -10c-14 -3 -19 -4 -34 -5l-14 7c5 41 7 66 8 122l4 125c-164 7 -255 62 -279 165c-10 39 -9 83 4 130c17 66 54 104 140 140 c42 19 91 32 140 40c-2 78 -3 98 -10 124l-3 16c24 2 41 5 62 11l69 21l14 -12l-8 -116v-39c149 -7 253 -68 275 -162zM346 419c-32 -8 -60 -21 -83 -41c-54 -48 -90 -149 -70 -238c14 -54 68 -93 149 -107zM613 312c-12 54 -67 92 -145 107l-4 -253c-1 -14 -1 -30 -1 -48 l-2 -86c35 7 64 20 88 41c56 48 85 150 64 239'], + 0xE4C2: [633,268,885,68,815,'809 304c16 -64 3 -143 -27 -192c-26 -36 -102 -79 -187 -104c-30 -7 -61 -13 -93 -18l2 -3c-4 -143 -5 -178 6 -240c-22 -1 -44 -3 -96 -10c-16 -3 -21 -4 -37 -5l-14 7c5 41 7 66 8 122l4 125c-176 7 -274 62 -300 165c-10 39 -8 83 5 130c19 66 58 104 150 140 c46 19 98 32 151 40c-2 78 -4 98 -11 124l-4 16c26 2 45 5 67 11l75 21l14 -12l-8 -116v-39c160 -7 271 -68 295 -162zM381 419c-34 -8 -65 -21 -90 -41c-57 -48 -97 -149 -74 -238c14 -54 72 -93 159 -107zM667 312c-13 54 -72 92 -156 107l-3 -253c-2 -14 -2 -30 -2 -48 l-2 -86c38 7 69 20 95 41c60 48 91 150 68 239'], + 0xE4C3: [633,268,770,49,737,'737 304c-1 -64 -30 -143 -69 -192c-31 -36 -109 -79 -190 -104c-27 -7 -57 -13 -87 -18l2 -3c-37 -143 -46 -178 -50 -240c-20 -1 -40 -3 -88 -10c-15 -3 -19 -4 -34 -5l-11 7c14 41 22 66 36 122l32 125c-154 7 -229 62 -228 165c1 39 12 83 35 130 c32 66 75 104 165 140c45 19 95 32 144 40c16 78 19 98 19 124v16c23 2 40 5 61 11l72 21l10 -12l-34 -116l-9 -39c140 -7 225 -68 224 -162zM384 419c-32 -8 -63 -21 -89 -41c-62 -48 -121 -149 -122 -238c1 -54 43 -93 117 -107zM613 312c1 54 -43 92 -114 107l-61 -253 c-5 -14 -8 -30 -13 -48l-22 -86c36 7 66 20 94 41c64 48 115 150 116 239'], + 0xE4C4: [633,268,845,62,800,'800 304c-1 -64 -32 -143 -74 -192c-33 -36 -116 -79 -203 -104c-30 -7 -62 -13 -94 -18l2 -3c-39 -143 -49 -178 -54 -240c-21 -1 -43 -3 -94 -10c-16 -3 -21 -4 -36 -5l-12 7c15 41 23 66 38 122l35 125c-166 7 -246 62 -245 165c1 39 13 83 37 130 c34 66 81 104 178 140c48 19 102 32 154 40c17 78 21 98 20 124l1 16c25 2 43 5 66 11l76 21l11 -12l-37 -116l-10 -39c151 -7 242 -68 241 -162zM421 419c-34 -8 -67 -21 -95 -41c-67 -48 -130 -149 -131 -238c1 -54 46 -93 126 -107zM667 312c1 54 -46 92 -122 107 l-66 -253c-5 -14 -9 -30 -13 -48l-24 -86c38 7 71 20 100 41c70 48 124 150 125 239'], + 0xE4C5: [493,11,795,63,760,'760 55c-61 -53 -91 -66 -149 -66c-36 0 -83 13 -107 118c-14 64 10 245 15 307l-214 7c-23 -176 -58 -328 -81 -406l-78 -26l-12 9c63 127 91 196 134 424c-25 0 -45 1 -59 1c-65 0 -110 -3 -120 -63l-9 -7l-17 8c12 87 36 120 122 120l363 -9c29 0 57 1 71 2 c38 0 87 10 115 19l12 -12c-16 -24 -21 -26 -30 -47c-16 -6 -39 -16 -59 -16c-26 -3 -52 -4 -78 -4l-2 -206c0 -29 4 -56 10 -81c14 -62 36 -91 90 -91c20 0 47 23 45 21l24 17'], + 0xE4C6: [493,11,872,77,825,'825 55c-65 -53 -97 -66 -160 -66c-38 0 -88 13 -114 118c-16 64 10 245 16 307l-230 7c-25 -176 -63 -328 -87 -406l-84 -26l-13 9c67 127 98 196 143 424l-62 1c-70 0 -118 -3 -129 -63l-10 -7l-18 8c13 87 39 120 131 120l389 -9c31 0 62 1 77 2c40 0 93 10 124 19 l12 -12c-17 -24 -22 -26 -32 -47c-17 -6 -42 -16 -64 -16c-27 -3 -55 -4 -83 -4l-3 -206c0 -29 5 -56 11 -81c15 -62 39 -91 97 -91c21 0 51 23 48 21l26 17'], + 0xE4C7: [493,11,758,84,779,'779 481c-21 -24 -26 -26 -40 -47c-16 -6 -40 -16 -60 -16c-25 -3 -50 -4 -75 -4l-50 -206c-7 -29 -8 -56 -9 -81c-1 -62 14 -91 65 -91c19 0 50 23 48 21l26 17l9 -19c-70 -53 -101 -66 -157 -66c-34 0 -75 13 -74 118c1 64 66 245 85 307l-202 7 c-62 -176 -131 -328 -171 -406l-80 -26l-10 9c89 127 132 196 225 424c-22 0 -42 1 -55 1c-62 0 -105 -3 -129 -63l-10 -7l-15 8c32 87 63 120 145 120l343 -9c27 0 55 1 68 2c36 0 85 10 115 19'], + 0xE4C8: [493,11,832,99,845,'845 481c-22 -24 -27 -26 -42 -47c-18 -6 -44 -16 -65 -16c-26 -3 -53 -4 -80 -4l-54 -206c-7 -29 -9 -56 -10 -81c-1 -62 15 -91 70 -91c20 0 54 23 51 21l29 17l9 -19c-75 -53 -109 -66 -168 -66c-37 0 -81 13 -80 118c1 64 71 245 92 307l-217 7 c-67 -176 -141 -328 -184 -406l-86 -26l-11 9c96 127 142 196 242 424c-24 0 -45 1 -59 1c-67 0 -113 -3 -139 -63l-11 -7l-15 8c34 87 67 120 155 120l368 -9c30 0 59 1 74 2c38 0 91 10 122 19'], + 0xE4C9: [493,17,867,70,832,'832 469c-16 -24 -20 -29 -28 -55c-19 -10 -48 -22 -70 -27c-21 -6 -40 -8 -97 -8h-14c-4 -74 -17 -167 3 -250c13 -52 35 -82 88 -82c19 0 48 29 58 39l19 -30c-21 -20 -69 -73 -122 -73c-86 0 -150 44 -166 117c-15 62 3 210 24 279l-194 3c-21 -116 -41 -258 -75 -366 l-13 -6l-103 -27l-14 9c74 122 113 239 144 390l-65 1c-51 0 -61 0 -86 -48l-21 -4l-30 24c11 109 59 114 120 114l368 -4c39 0 101 5 142 8c36 2 80 11 111 20'], + 0xE4CA: [493,17,949,84,902,'902 469c-17 -24 -21 -29 -29 -55c-21 -10 -52 -22 -75 -27c-24 -6 -43 -8 -105 -8h-15c-4 -74 -18 -167 3 -250c15 -52 38 -82 95 -82c20 0 51 29 62 39l20 -30c-22 -20 -74 -73 -130 -73c-93 0 -161 44 -179 117c-15 62 3 210 26 279l-209 3 c-22 -116 -44 -258 -79 -366l-15 -6l-111 -27l-14 9c79 122 121 239 154 390l-70 1c-54 0 -65 0 -92 -48l-22 -4l-33 24c12 109 64 114 129 114l395 -4c42 0 109 5 153 8c38 2 86 11 119 20'], + 0xE4CB: [493,17,827,77,858,'858 469c-21 -24 -26 -29 -39 -55c-21 -10 -51 -22 -73 -27c-22 -6 -40 -8 -94 -8h-14c-21 -74 -55 -167 -55 -250c1 -52 14 -82 65 -82c18 0 52 29 64 39l11 -30c-25 -20 -83 -73 -133 -73c-81 0 -132 44 -131 117c1 62 51 210 88 279l-185 3 c-46 -116 -99 -258 -155 -366l-15 -6l-104 -27l-11 9c99 122 163 239 228 390l-62 1c-48 0 -58 0 -93 -48l-21 -4l-24 24c36 109 83 114 141 114l350 -4c37 0 97 5 137 8c35 2 79 11 111 20'], + 0xE4CC: [493,17,906,92,930,'930 469c-22 -24 -27 -29 -42 -55c-22 -10 -54 -22 -78 -27c-24 -6 -43 -8 -101 -8h-14c-24 -74 -60 -167 -60 -250c1 -52 16 -82 69 -82c20 0 57 29 70 39l11 -30c-26 -20 -88 -73 -142 -73c-88 0 -142 44 -141 117c1 62 55 210 94 279l-198 3 c-50 -116 -106 -258 -167 -366l-15 -6l-112 -27l-12 9c106 122 175 239 244 390l-66 1c-52 0 -62 0 -100 -48l-22 -4l-26 24c39 109 90 114 152 114l375 -4c40 0 104 5 147 8c37 2 85 11 119 20'], + 0xE4CD: [548,11,895,59,834,'831 384c8 -42 2 -110 -16 -163c-22 -63 -60 -126 -101 -167c-46 -45 -90 -65 -140 -65c-65 0 -120 41 -143 103c-35 -29 -54 -49 -94 -71c-29 -16 -70 -32 -103 -32c-42 0 -71 14 -101 40c-46 39 -59 89 -70 147c-14 76 15 163 86 230c25 24 70 57 96 76l22 -18 c-10 -11 -28 -28 -39 -38c-83 -81 -95 -162 -77 -254c6 -30 20 -66 48 -89c22 -20 53 -33 86 -33c39 0 69 16 97 40c28 25 32 67 39 101l7 122l70 26l15 -14c-3 -17 -8 -31 -9 -48l-7 -77c-2 -26 1 -39 3 -54c13 -66 56 -107 113 -107c100 0 179 162 151 311 c-18 94 -121 148 -260 148c-78 0 -185 -13 -160 -145c-4 -3 -13 -3 -18 -5c-12 -4 -23 -13 -35 -19c-13 73 23 140 97 182c40 22 96 37 149 37c169 0 274 -56 294 -164'], + 0xE4CE: [548,11,980,73,905,'902 384c8 -42 1 -110 -18 -163c-23 -63 -64 -126 -109 -167c-49 -45 -95 -65 -150 -65c-70 0 -128 41 -153 103c-37 -29 -58 -49 -101 -71c-31 -16 -75 -32 -110 -32c-46 0 -77 14 -109 40c-49 39 -63 89 -75 147c-15 76 16 163 92 230c27 24 75 57 103 76l24 -18 c-10 -11 -30 -28 -42 -38c-89 -81 -102 -162 -83 -254c7 -30 21 -66 52 -89c24 -20 57 -33 93 -33c41 0 74 16 103 40c31 25 34 67 42 101l8 122l75 26l16 -14c-4 -17 -8 -31 -10 -48l-7 -77c-2 -26 0 -39 3 -54c14 -66 61 -107 121 -107c108 0 193 162 162 311 c-19 94 -130 148 -279 148c-83 0 -199 -13 -171 -145c-5 -3 -14 -3 -20 -5c-13 -4 -25 -13 -37 -19c-15 73 24 140 104 182c42 22 103 37 159 37c182 0 295 -56 317 -164'], + 0xE4CF: [548,11,854,56,838,'838 384c-2 -42 -24 -110 -54 -163c-35 -63 -86 -126 -135 -167c-54 -45 -100 -65 -148 -65c-62 0 -105 41 -113 103c-39 -29 -62 -49 -106 -71c-31 -16 -73 -32 -105 -32c-40 0 -64 14 -87 40c-34 39 -35 89 -32 147c4 76 52 163 134 230c30 24 81 57 110 76l16 -18 c-11 -11 -33 -28 -45 -38c-98 -81 -128 -162 -132 -254c-2 -30 3 -66 25 -89c16 -20 43 -33 74 -33c37 0 70 16 101 40c33 25 46 67 61 101l35 122l73 26l11 -14c-8 -17 -15 -31 -20 -48l-24 -77c-8 -26 -9 -39 -10 -54c-3 -66 29 -107 82 -107c96 0 209 162 216 311 c5 94 -81 148 -213 148c-74 0 -179 -13 -186 -145c-4 -3 -13 -3 -18 -5c-13 -4 -25 -13 -37 -19c3 73 53 140 134 182c43 22 100 37 150 37c161 0 248 -56 243 -164'], + 0xE4D0: [548,11,935,69,908,'908 384c-2 -42 -25 -110 -57 -163c-38 -63 -92 -126 -145 -167c-58 -45 -107 -65 -159 -65c-67 0 -112 41 -121 103c-42 -29 -67 -49 -114 -71c-33 -16 -78 -32 -112 -32c-44 0 -70 14 -94 40c-37 39 -38 89 -35 147c4 76 56 163 145 230c31 24 86 57 117 76l18 -18 c-12 -11 -35 -28 -49 -38c-105 -81 -137 -162 -142 -254c-1 -30 4 -66 27 -89c18 -20 46 -33 80 -33c40 0 75 16 109 40c35 25 49 67 65 101l38 122l77 26l12 -14c-8 -17 -15 -31 -21 -48l-26 -77c-9 -26 -9 -39 -10 -54c-4 -66 31 -107 88 -107c103 0 224 162 232 311 c5 94 -87 148 -229 148c-79 0 -192 -13 -199 -145c-5 -3 -15 -3 -21 -5c-13 -4 -26 -13 -39 -19c4 73 57 140 144 182c46 22 107 37 161 37c173 0 266 -56 260 -164'], + 0xE4D1: [559,17,895,54,839,'836 370c18 -91 -27 -221 -106 -307c-46 -51 -108 -80 -172 -80c-73 0 -123 36 -149 97c-30 -26 -40 -47 -74 -68c-29 -18 -58 -29 -93 -29c-42 0 -82 13 -110 39c-33 29 -61 85 -69 124c-28 140 22 196 66 249c26 30 69 57 97 74l43 -24c-15 -11 -31 -28 -44 -44 c-56 -68 -59 -140 -40 -235c9 -43 57 -109 113 -109c29 0 50 20 68 40c14 16 29 59 32 96c4 47 5 88 8 118c46 10 75 15 107 28l20 -12c-12 -59 -24 -139 -15 -181c13 -66 47 -105 96 -105s86 35 113 94c27 60 39 143 28 200c-19 91 -120 161 -250 161 c-115 0 -180 -22 -154 -153c-6 -8 -15 -4 -27 -8c-23 -8 -38 -23 -58 -34c-17 82 33 166 97 206c38 23 89 52 184 52c148 0 265 -69 289 -189'], + 0xE4D2: [559,17,980,68,910,'906 370c20 -91 -29 -221 -113 -307c-50 -51 -116 -80 -185 -80c-78 0 -131 36 -159 97c-33 -26 -44 -47 -80 -68c-31 -18 -63 -29 -100 -29c-45 0 -88 13 -119 39c-34 29 -64 85 -73 124c-30 140 23 196 71 249c28 30 74 57 104 74l46 -24c-16 -11 -33 -28 -47 -44 c-60 -68 -63 -140 -43 -235c9 -43 61 -109 122 -109c30 0 53 20 72 40c15 16 32 59 35 96c3 47 4 88 8 118c49 10 80 15 115 28l21 -12c-13 -59 -25 -139 -16 -181c14 -66 51 -105 103 -105c53 0 92 35 122 94c28 60 41 143 29 200c-19 91 -128 161 -268 161 c-123 0 -193 -22 -165 -153c-7 -8 -16 -4 -29 -8c-25 -8 -40 -23 -62 -34c-18 82 35 166 104 206c41 23 96 52 198 52c158 0 284 -69 309 -189'], + 0xE4D3: [559,17,854,50,838,'838 370c-3 -91 -76 -221 -171 -307c-56 -51 -121 -80 -182 -80c-70 0 -109 36 -120 97c-34 -26 -50 -47 -86 -68c-32 -18 -63 -29 -95 -29c-41 0 -76 13 -97 39c-24 29 -38 85 -36 124c6 140 66 196 120 249c32 30 79 57 110 74l35 -24c-17 -11 -36 -28 -52 -44 c-69 -68 -88 -140 -92 -235c-2 -43 29 -109 82 -109c28 0 52 20 74 40c17 16 42 59 53 96c14 47 24 88 34 118c46 10 75 15 109 28l16 -12c-25 -59 -55 -139 -56 -181c-3 -66 20 -105 67 -105s90 35 129 94c40 60 71 143 73 200c4 91 -76 161 -200 161 c-109 0 -177 -22 -182 -153c-8 -8 -16 -4 -28 -8c-24 -8 -41 -23 -63 -34c3 82 70 166 140 206c41 23 97 52 188 52c140 0 235 -69 230 -189'], + 0xE4D4: [559,17,935,63,909,'909 370c-4 -91 -82 -221 -184 -307c-60 -51 -130 -80 -196 -80c-75 0 -116 36 -128 97c-37 -26 -53 -47 -93 -68c-33 -18 -66 -29 -102 -29c-43 0 -81 13 -103 39c-26 29 -41 85 -39 124c6 140 71 196 129 249c34 30 85 57 118 74l38 -24c-18 -11 -39 -28 -56 -44 c-74 -68 -95 -140 -99 -235c-2 -43 31 -109 88 -109c30 0 56 20 79 40c19 16 45 59 57 96c15 47 26 88 37 118c50 10 80 15 117 28l17 -12c-27 -59 -59 -139 -61 -181c-3 -66 23 -105 73 -105s96 35 139 94c42 60 75 143 78 200c4 91 -82 161 -216 161 c-117 0 -189 -22 -195 -153c-8 -8 -16 -4 -29 -8c-26 -8 -45 -23 -68 -34c3 82 75 166 150 206c45 23 104 52 201 52c151 0 254 -69 248 -189'], + 0xE4D5: [646,276,759,16,698,'695 384c8 -42 2 -110 -17 -163c-21 -63 -46 -110 -89 -150c-48 -46 -100 -66 -144 -74l1 -256c-35 -5 -57 -10 -80 -17l-9 6l2 37l9 222h-10c-115 0 -211 63 -225 132c-1 8 -3 17 -3 25l5 228c0 5 0 13 -1 18c-2 11 -12 20 -23 20s-21 -5 -51 -23l-32 -21l-12 20l28 20 c76 54 114 74 138 74c16 0 28 -12 31 -31c3 -13 3 -27 3 -43l-7 -209c-1 -19 0 -38 3 -53c15 -80 97 -100 158 -105l-6 569c33 12 61 24 82 36l15 -15c-10 -54 -13 -103 -13 -197l-3 -194v-198c107 13 224 95 184 308c-8 40 -30 63 -62 63c-11 0 -20 -3 -29 -9l-16 19l48 47 c9 8 20 12 36 12c42 0 78 -40 89 -98'], + 0xE4D6: [646,276,833,26,759,'756 384c8 -42 1 -110 -19 -163c-22 -63 -49 -110 -95 -150c-52 -46 -108 -66 -155 -74l1 -256c-38 -5 -61 -10 -86 -17l-10 6l3 37l9 222h-11c-123 0 -226 63 -241 132c-1 8 -3 17 -4 25l6 228c1 5 0 13 -1 18c-2 11 -13 20 -25 20c-11 0 -22 -5 -54 -23l-35 -21l-13 20 l31 20c81 54 122 74 148 74c17 0 29 -12 33 -31c3 -13 3 -27 3 -43l-8 -209c-1 -19 1 -38 4 -53c16 -80 104 -100 169 -105l-6 569c35 12 66 24 88 36l17 -15c-11 -54 -15 -103 -15 -197l-3 -194v-198c115 13 241 95 197 308c-8 40 -31 63 -66 63c-12 0 -21 -3 -31 -9 l-18 19l52 47c10 8 21 12 38 12c46 0 85 -40 97 -98'], + 0xE4D7: [646,276,724,62,708,'708 384c-2 -42 -24 -110 -54 -163c-35 -63 -70 -110 -119 -150c-57 -46 -112 -66 -155 -74l-58 -256c-35 -5 -57 -10 -80 -17l-8 6l11 37l60 222h-10c-109 0 -187 63 -183 132c0 8 1 17 2 25l58 228c2 5 3 13 3 18c1 11 -6 20 -17 20c-10 0 -21 -5 -54 -23l-36 -21 l-6 20l31 20c85 54 126 74 149 74c15 0 23 -12 22 -31c0 -13 -3 -27 -7 -43l-55 -209c-5 -19 -9 -38 -9 -53c-4 -80 69 -100 125 -105l126 569c35 12 65 24 87 36l11 -15c-22 -54 -36 -103 -58 -197l-48 -194l-46 -198c106 13 236 95 247 308c2 40 -14 63 -44 63 c-11 0 -20 -3 -30 -9l-11 19l57 47c10 8 21 12 36 12c41 0 66 -40 63 -98'], + 0xE4D8: [646,276,796,76,769,'769 384c-2 -42 -25 -110 -58 -163c-37 -63 -74 -110 -128 -150c-61 -46 -119 -66 -165 -74l-63 -256c-38 -5 -61 -10 -86 -17l-8 6l11 37l64 222h-10c-117 0 -200 63 -197 132c1 8 1 17 3 25l62 228c2 5 3 13 4 18c0 11 -8 20 -19 20s-23 -5 -58 -23l-38 -21l-7 20 l33 20c91 54 135 74 160 74c16 0 25 -12 24 -31c-1 -13 -4 -27 -8 -43l-59 -209c-6 -19 -9 -38 -10 -53c-4 -80 74 -100 135 -105l135 569c37 12 69 24 94 36l12 -15c-24 -54 -40 -103 -63 -197l-52 -194l-49 -198c113 13 253 95 265 308c2 40 -15 63 -47 63 c-12 0 -22 -3 -33 -9l-11 19l61 47c11 8 22 12 39 12c43 0 70 -40 67 -98'], + 0xE4D9: [636,271,814,5,759,'756 370c18 -91 -30 -219 -118 -290c-38 -38 -92 -69 -155 -84c-2 -104 -9 -222 -5 -246c-21 -2 -42 -5 -89 -14c-16 -4 -21 -5 -35 -7l-13 7c5 41 9 65 12 121c3 43 8 85 10 129c-81 3 -228 22 -251 137c-4 21 1 56 1 70c8 89 11 140 7 161c-2 10 -10 16 -23 16 c-11 0 -24 -3 -35 -10l-37 -21l-20 26l79 54c47 31 92 50 123 50c19 0 34 -13 38 -35c6 -29 5 -48 -5 -147c-10 -94 -10 -124 -6 -141c11 -57 73 -87 133 -100l20 414c3 75 -1 96 -6 122l-3 16c25 3 42 7 63 14l70 24l14 -12c-7 -58 -11 -86 -13 -116l-19 -340l-7 -125 c57 10 104 40 147 93c42 52 53 142 41 199c-6 31 -29 54 -55 54c-17 0 -30 -4 -39 -12l-15 21c18 14 32 30 62 67c13 3 20 4 29 4c43 0 89 -46 100 -99'], + 0xE4DA: [636,271,892,14,824,'820 370c20 -91 -31 -219 -126 -290c-40 -38 -99 -69 -166 -84c-2 -104 -10 -222 -6 -246c-22 -2 -44 -5 -95 -14c-18 -4 -23 -5 -38 -7l-14 7c6 41 10 65 14 121c3 43 8 85 10 129c-87 3 -244 22 -269 137c-5 21 0 56 1 70c8 89 12 140 7 161c-2 10 -11 16 -24 16 c-12 0 -26 -3 -39 -10l-39 -21l-22 26l86 54c50 31 98 50 131 50c21 0 36 -13 41 -35c6 -29 6 -48 -5 -147c-11 -94 -10 -124 -7 -141c12 -57 79 -87 143 -100l22 414c2 75 -1 96 -6 122l-4 16c27 3 45 7 67 14l76 24l15 -12c-7 -58 -12 -86 -14 -116l-21 -340l-8 -125 c62 10 112 40 159 93c45 52 56 142 44 199c-6 31 -31 54 -59 54c-19 0 -33 -4 -42 -12l-17 21c21 14 36 30 67 67c14 3 21 4 31 4c47 0 96 -46 107 -99'], + 0xE4DB: [636,271,775,46,762,'762 370c-4 -91 -79 -219 -179 -290c-45 -38 -104 -69 -167 -84c-26 -104 -60 -222 -62 -246c-20 -2 -41 -5 -88 -14c-16 -4 -21 -5 -35 -7l-11 7c15 41 24 65 40 121c13 43 28 85 39 129c-76 3 -211 22 -207 137c1 21 14 56 18 70c27 89 42 140 43 161 c1 10 -6 16 -18 16c-10 0 -24 -3 -36 -10l-40 -21l-13 26l88 54c52 31 99 50 129 50c18 0 29 -13 28 -35c-2 -29 -7 -48 -39 -147c-31 -94 -38 -124 -39 -141c-2 -57 50 -87 104 -100l115 414c20 75 22 96 23 122l1 16c24 3 41 7 62 14l73 24l11 -12 c-20 -58 -31 -86 -40 -116l-97 -340l-36 -125c57 10 109 40 162 93c52 52 83 142 86 199c1 31 -15 54 -40 54c-17 0 -30 -4 -40 -12l-10 21c21 14 38 30 74 67c14 3 20 4 29 4c41 0 74 -46 72 -99'], + 0xE4DC: [636,271,851,58,827,'827 370c-4 -91 -84 -219 -192 -290c-48 -38 -111 -69 -179 -84c-28 -104 -65 -222 -67 -246c-21 -2 -43 -5 -94 -14c-18 -4 -23 -5 -38 -7l-11 7c16 41 25 65 43 121c13 43 29 85 42 129c-82 3 -228 22 -222 137c0 21 14 56 18 70c30 89 46 140 47 161 c0 10 -7 16 -19 16s-26 -3 -39 -10l-43 -21l-15 26l95 54c55 31 107 50 138 50c20 0 31 -13 30 -35c-1 -29 -7 -48 -41 -147c-34 -94 -41 -124 -42 -141c-2 -57 54 -87 112 -100l123 414c21 75 23 96 25 122v16c26 3 45 7 68 14l78 24l11 -12c-21 -58 -33 -86 -43 -116 l-104 -340l-38 -125c61 10 116 40 174 93c56 52 89 142 92 199c1 31 -17 54 -43 54c-18 0 -32 -4 -43 -12l-11 21c23 14 41 30 80 67c14 3 22 4 31 4c44 0 80 -46 77 -99'], + 0xE4DD: [482,276,619,92,547,'542 331c19 -103 -10 -217 -72 -276c-43 -41 -105 -66 -166 -66c-57 0 -102 19 -133 57l-9 -1c1 -51 12 -127 26 -197c8 -40 16 -78 24 -107c-31 -4 -52 -9 -79 -17l-19 8c-6 104 -22 259 -22 364c1 61 6 122 23 181c7 24 16 49 29 71c17 36 43 66 78 89 c44 30 91 45 140 45c94 0 162 -57 180 -151zM458 316c-16 84 -62 128 -134 128c-27 0 -51 -6 -64 -17c-48 -40 -69 -163 -48 -276c15 -79 62 -124 130 -124c35 0 62 12 79 33c40 53 55 159 37 256'], + 0xE4DE: [482,276,683,108,597,'591 331c21 -103 -11 -217 -77 -276c-46 -41 -113 -66 -178 -66c-62 0 -110 19 -144 57l-9 -1c2 -51 14 -127 28 -197c8 -40 17 -78 26 -107c-34 -4 -56 -9 -85 -17l-20 8c-7 104 -24 259 -24 364c1 61 6 122 25 181c7 24 17 49 30 71c19 36 47 66 84 89 c48 30 98 45 151 45c100 0 173 -57 193 -151zM500 316c-17 84 -65 128 -143 128c-29 0 -55 -6 -69 -17c-51 -40 -74 -163 -51 -276c16 -79 66 -124 140 -124c37 0 66 12 84 33c43 53 59 159 39 256'], + 0xE4DF: [482,276,591,3,550,'550 331c-6 -103 -60 -217 -133 -276c-50 -41 -115 -66 -173 -66c-55 0 -93 19 -114 57l-9 -1c-10 -51 -17 -127 -20 -197c-2 -40 -3 -78 -2 -107c-31 -4 -52 -9 -80 -17l-16 8c19 104 39 259 64 364c15 61 33 122 63 181c13 24 27 49 44 71c25 36 57 66 95 89 c50 30 97 45 144 45c89 0 141 -57 137 -151zM466 316c4 84 -29 128 -97 128c-26 0 -51 -6 -65 -17c-56 -40 -104 -163 -110 -276c-4 -79 30 -124 95 -124c33 0 62 12 83 33c50 53 89 159 94 256'], + 0xE4E0: [482,276,653,13,599,'599 331c-5 -103 -64 -217 -142 -276c-54 -41 -124 -66 -186 -66c-59 0 -100 19 -122 57l-10 -1c-11 -51 -18 -127 -22 -197c-2 -40 -3 -78 -2 -107c-33 -4 -55 -9 -85 -17l-17 8c19 104 42 259 68 364c16 61 36 122 68 181c13 24 29 49 47 71c27 36 61 66 102 89 c53 30 104 45 155 45c96 0 151 -57 146 -151zM509 316c5 84 -30 128 -104 128c-28 0 -54 -6 -70 -17c-59 -40 -111 -163 -117 -276c-5 -79 32 -124 102 -124c35 0 66 12 88 33c54 53 96 159 101 256'], + 0xE4E1: [469,271,641,85,586,'580 320c13 -64 7 -143 -13 -193c-15 -38 -65 -84 -121 -112c-43 -21 -92 -32 -145 -32c-44 0 -81 7 -110 20c4 -41 13 -91 22 -137c8 -38 20 -91 28 -118c-20 -2 -42 -3 -89 -12c-16 -4 -21 -5 -35 -7l-12 7l-9 127c-7 81 -9 166 -10 234c-1 58 6 99 22 159 c15 59 42 109 93 152c54 38 109 61 179 61c106 0 182 -56 200 -149zM449 322c-13 64 -56 103 -114 103c-37 0 -66 -18 -87 -53c-29 -51 -37 -154 -19 -242c13 -63 56 -103 113 -103c38 0 68 18 88 53c29 50 37 154 19 242'], + 0xE4E2: [469,271,707,101,639,'632 320c14 -64 7 -143 -14 -193c-16 -38 -70 -84 -129 -112c-48 -21 -99 -32 -157 -32c-47 0 -86 7 -117 20c4 -41 13 -91 23 -137c8 -38 22 -91 30 -118c-22 -2 -45 -3 -96 -12c-17 -4 -22 -5 -37 -7l-13 7l-10 127c-8 81 -10 166 -11 234c0 58 7 99 24 159 c17 59 45 109 100 152c58 38 117 61 192 61c114 0 195 -56 215 -149zM491 322c-13 64 -60 103 -122 103c-40 0 -71 -18 -93 -53c-31 -51 -40 -154 -21 -242c14 -63 60 -103 122 -103c40 0 72 18 94 53c31 50 39 154 20 242'], + 0xE4E3: [469,271,612,-4,584,'584 320c-3 -64 -27 -143 -58 -193c-23 -38 -81 -84 -140 -112c-47 -21 -95 -32 -147 -32c-41 0 -75 7 -99 20c-6 -41 -9 -91 -11 -137c-2 -38 -2 -91 -1 -118c-20 -2 -40 -3 -88 -12c-16 -4 -20 -5 -35 -7l-9 7l20 127c12 81 30 166 45 234c13 58 29 99 58 159 c28 59 65 109 124 152c60 38 118 61 184 61c102 0 160 -56 157 -149zM459 322c3 64 -29 103 -85 103c-35 0 -67 -18 -95 -53c-39 -51 -70 -154 -74 -242c-3 -63 30 -103 84 -103c36 0 68 18 96 53c39 50 71 154 74 242'], + 0xE4E4: [469,271,675,5,636,'636 320c-3 -64 -29 -143 -62 -193c-25 -38 -88 -84 -151 -112c-50 -21 -102 -32 -157 -32c-44 0 -80 7 -107 20c-6 -41 -10 -91 -12 -137c-1 -38 -1 -91 0 -118c-21 -2 -44 -3 -94 -12c-18 -4 -23 -5 -38 -7l-10 7l22 127c13 81 32 166 48 234c14 58 31 99 62 159 c30 59 70 109 133 152c65 38 127 61 198 61c109 0 172 -56 168 -149zM502 322c3 64 -31 103 -91 103c-37 0 -72 -18 -102 -53c-42 -51 -76 -154 -80 -242c-2 -63 32 -103 91 -103c38 0 73 18 103 53c42 50 75 154 79 242'], + 0xE4E5: [482,276,633,91,560,'560 -242l-48 -34l-13 4c0 9 -1 17 -2 23c-4 23 -28 38 -48 53c-49 38 -101 25 -188 75c-39 22 -137 78 -164 215c-12 62 -3 124 14 183c7 24 16 49 29 71c17 36 44 66 78 89c45 30 91 45 140 45c94 0 162 -57 180 -151c20 -103 -10 -217 -72 -276 c-42 -41 -105 -66 -165 -66c-58 0 -103 19 -134 57l-9 -1l14 -30c89 -135 201 -158 228 -158c8 0 32 -3 49 -3c51 0 100 -35 109 -78c1 -5 2 -11 2 -18zM454 316c-16 84 -61 128 -133 128c-28 0 -52 -6 -64 -17c-49 -40 -70 -163 -48 -276c15 -79 61 -124 130 -124 c34 0 62 12 78 33c41 53 56 159 37 256'], + 0xE4E6: [482,276,698,107,610,'610 -242l-52 -34l-13 4c0 9 -1 17 -2 23c-5 23 -30 38 -52 53c-53 38 -108 25 -202 75c-41 22 -147 78 -175 215c-13 62 -4 124 15 183c7 24 17 49 31 71c18 36 46 66 83 89c48 30 98 45 151 45c101 0 174 -57 193 -151c21 -103 -11 -217 -77 -276 c-46 -41 -113 -66 -178 -66c-62 0 -110 19 -143 57l-10 -1l15 -30c95 -135 215 -158 245 -158c8 0 34 -3 52 -3c55 0 108 -35 117 -78c1 -5 2 -11 2 -18zM497 316c-17 84 -66 128 -143 128c-30 0 -55 -6 -69 -17c-52 -40 -75 -163 -52 -276c17 -79 66 -124 140 -124 c37 0 66 12 84 33c43 53 60 159 40 256'], + 0xE4E7: [482,276,603,70,546,'546 331c-5 -103 -60 -217 -132 -276c-50 -41 -116 -66 -173 -66c-55 0 -93 19 -114 57l-9 -1l6 -30c53 -135 155 -158 181 -158c8 0 29 -3 46 -3c49 0 87 -35 85 -78c0 -5 0 -11 -2 -18l-54 -34l-11 4c2 9 3 17 4 23c1 23 -18 38 -34 53c-38 38 -90 25 -162 75 c-31 22 -112 78 -106 215c3 62 26 124 56 183c12 24 27 49 44 71c25 36 57 66 95 89c49 30 97 45 144 45c89 0 141 -57 136 -151zM463 316c4 84 -29 128 -98 128c-26 0 -50 -6 -65 -17c-55 -40 -104 -163 -109 -276c-4 -79 30 -124 95 -124c33 0 62 12 82 33 c51 53 90 159 95 256'], + 0xE4E8: [482,276,666,85,596,'596 331c-6 -103 -65 -217 -143 -276c-53 -41 -124 -66 -186 -66c-58 0 -99 19 -122 57l-9 -1l6 -30c58 -135 166 -158 195 -158c8 0 31 -3 49 -3c52 0 94 -35 91 -78c0 -5 0 -11 -2 -18l-58 -34l-11 4c1 9 3 17 3 23c2 23 -19 38 -35 53c-42 38 -97 25 -174 75 c-34 22 -121 78 -114 215c3 62 27 124 60 183c13 24 28 49 47 71c26 36 61 66 102 89c53 30 104 45 154 45c96 0 152 -57 147 -151zM506 316c4 84 -31 128 -104 128c-29 0 -55 -6 -70 -17c-60 -40 -112 -163 -118 -276c-4 -79 32 -124 102 -124c35 0 66 12 89 33 c54 53 96 159 101 256'], + 0xE4E9: [469,271,631,86,576,'570 320c13 -64 7 -143 -13 -193c-15 -38 -66 -84 -121 -112c-44 -21 -82 -32 -146 -32c-13 0 -53 0 -68 5c69 -84 129 -90 148 -92c15 -2 30 -3 44 -3c57 0 114 -41 125 -93c1 -5 1 -9 3 -29l-60 -42l-36 12l-3 18c-1 7 -1 14 -1 17c-3 14 -16 26 -30 32l-6 5 c-17 11 -41 19 -59 24c-34 9 -73 20 -112 45c-34 22 -113 78 -141 221c-12 59 -10 101 6 161c24 66 41 101 91 144c54 37 109 61 179 61c106 0 181 -56 200 -149zM439 322c-13 64 -56 103 -114 103c-37 0 -67 -18 -87 -53c-29 -51 -37 -154 -19 -242 c12 -63 56 -103 113 -103c38 0 67 18 88 53c29 50 37 154 19 242'], + 0xE4EA: [469,271,696,101,628,'621 320c14 -64 7 -143 -14 -193c-16 -38 -70 -84 -130 -112c-47 -21 -87 -32 -156 -32c-15 0 -58 0 -74 5c75 -84 139 -90 159 -92c16 -2 33 -3 47 -3c62 0 123 -41 134 -93c2 -5 2 -9 4 -29l-64 -42l-39 12l-4 18c0 7 0 14 -1 17c-3 14 -16 26 -31 32l-7 5 c-19 11 -44 19 -63 24c-37 9 -78 20 -120 45c-37 22 -122 78 -152 221c-13 59 -11 101 7 161c25 66 43 101 97 144c58 37 117 61 192 61c114 0 195 -56 215 -149zM480 322c-13 64 -60 103 -122 103c-40 0 -71 -18 -93 -53c-31 -51 -40 -154 -21 -242 c13 -63 60 -103 122 -103c40 0 72 18 94 53c31 50 39 154 20 242'], + 0xE4EB: [469,271,602,69,574,'574 320c-3 -64 -27 -143 -57 -193c-24 -38 -82 -84 -141 -112c-47 -21 -85 -32 -147 -32c-13 0 -51 0 -64 5c47 -84 102 -90 120 -92c14 -2 28 -3 41 -3c55 0 100 -41 98 -93c-1 -5 -1 -9 -4 -29l-67 -42l-31 12l1 18c1 7 2 14 3 17c0 14 -9 26 -21 32l-5 5 c-14 11 -34 19 -50 24c-31 9 -65 20 -97 45c-27 22 -89 78 -83 221c2 59 14 101 44 161c37 66 62 101 119 144c60 37 118 61 184 61c102 0 161 -56 157 -149zM450 322c2 64 -30 103 -86 103c-34 0 -67 -18 -94 -53c-40 -51 -71 -154 -75 -242c-2 -63 30 -103 84 -103 c36 0 69 18 96 53c39 50 71 154 75 242'], + 0xE4EC: [469,271,665,83,625,'625 320c-3 -64 -29 -143 -61 -193c-25 -38 -88 -84 -151 -112c-50 -21 -92 -32 -157 -32c-14 0 -55 0 -69 5c50 -84 109 -90 128 -92c15 -2 30 -3 44 -3c59 0 107 -41 105 -93c0 -5 -1 -9 -4 -29l-72 -42l-33 12l1 18c1 7 3 14 3 17c0 14 -10 26 -22 32l-6 5 c-15 11 -37 19 -54 24c-32 9 -69 20 -103 45c-30 22 -96 78 -90 221c3 59 15 101 47 161c41 66 67 101 128 144c65 37 127 61 198 61c109 0 172 -56 168 -149zM492 322c3 64 -32 103 -92 103c-37 0 -72 -18 -101 -53c-42 -51 -76 -154 -80 -242c-3 -63 32 -103 90 -103 c39 0 73 18 103 53c42 50 76 154 80 242'], + 0xE4ED: [494,11,686,71,670,'670 482c-18 -24 -21 -29 -30 -50c-17 -6 -41 -14 -61 -14c-25 0 -57 0 -95 2c5 -11 10 -23 12 -36c8 -42 1 -110 -18 -163c-21 -63 -59 -126 -101 -167c-46 -45 -89 -65 -139 -65c-75 0 -135 38 -159 163s11 227 97 285c44 30 90 45 140 45l104 -3l121 -1 c38 0 89 7 118 16zM427 356c-15 78 -79 88 -148 88c-28 0 -52 -6 -65 -17c-47 -39 -70 -157 -48 -276c13 -66 54 -112 110 -112c101 0 180 168 151 317'], + 0xE4EE: [494,11,755,86,728,'728 482c-18 -24 -22 -29 -31 -50c-19 -6 -44 -14 -66 -14c-27 0 -62 0 -103 2c6 -11 11 -23 14 -36c8 -42 0 -110 -20 -163c-22 -63 -63 -126 -108 -167c-49 -45 -96 -65 -150 -65c-80 0 -144 38 -170 163c-25 125 11 227 104 285c48 30 96 45 150 45l112 -3l130 -1 c41 0 96 7 127 16zM468 356c-16 78 -85 88 -160 88c-29 0 -55 -6 -69 -17c-51 -39 -75 -157 -51 -276c14 -66 57 -112 118 -112c108 0 192 168 162 317'], + 0xE4EF: [494,11,654,67,706,'706 482c-22 -24 -26 -29 -39 -50c-18 -6 -42 -14 -62 -14c-24 0 -54 0 -90 2c2 -11 4 -23 3 -36c-2 -42 -25 -110 -55 -163c-34 -63 -85 -126 -134 -167c-55 -45 -100 -65 -148 -65c-71 0 -120 38 -113 163c6 125 62 227 158 285c49 30 96 45 143 45l98 -3l116 -1 c36 0 86 7 116 16zM446 356c4 78 -54 88 -121 88c-26 0 -50 -6 -65 -17c-54 -39 -104 -157 -110 -276c-3 -66 25 -112 79 -112c96 0 210 168 217 317'], + 0xE4F0: [494,11,721,81,767,'767 482c-23 -24 -28 -29 -42 -50c-19 -6 -45 -14 -66 -14c-26 0 -59 0 -97 2c3 -11 4 -23 4 -36c-3 -42 -27 -110 -59 -163c-38 -63 -92 -126 -145 -167c-58 -45 -107 -65 -159 -65c-76 0 -128 38 -121 163c6 125 67 227 169 285c53 30 103 45 155 45l105 -3l124 -1 c39 0 93 7 125 16zM488 356c4 78 -58 88 -130 88c-28 0 -54 -6 -70 -17c-58 -39 -111 -157 -117 -276c-4 -66 27 -112 84 -112c103 0 225 168 233 317'], + 0xE4F1: [482,17,739,68,705,'705 458c-16 -24 -20 -29 -28 -55c-20 -6 -46 -15 -67 -15c-12 0 -28 -2 -47 -2c-20 0 -43 2 -57 3c2 -7 5 -14 5 -19c22 -91 -16 -221 -91 -307c-44 -51 -104 -80 -169 -80c-83 0 -152 57 -176 152c-8 39 -8 83 -2 131c8 66 31 106 89 146c49 36 109 57 186 57 c10 0 23 -1 39 -2c0 0 17 -2 61 -2h118c36 0 87 8 118 17zM432 334c-15 64 -69 91 -128 91c-36 0 -65 -18 -85 -53c-26 -51 -30 -159 -10 -247c12 -48 53 -78 95 -78c49 0 85 29 109 88c25 59 33 142 19 199'], + 0xE4F2: [482,17,812,82,766,'766 458c-17 -24 -21 -29 -30 -55c-22 -6 -49 -15 -72 -15c-13 0 -30 -2 -51 -2s-45 2 -61 3c2 -7 6 -14 6 -19c23 -91 -17 -221 -98 -307c-47 -51 -112 -80 -181 -80c-89 0 -163 57 -189 152c-9 39 -9 83 -2 131c8 66 33 106 95 146c53 36 117 57 199 57 c11 0 25 -1 42 -2c0 0 19 -2 67 -2h126c38 0 93 8 127 17zM473 334c-16 64 -75 91 -137 91c-40 0 -70 -18 -91 -53c-28 -51 -33 -159 -11 -247c12 -48 56 -78 102 -78c53 0 91 29 116 88c27 59 36 142 21 199'], + 0xE4F3: [482,17,706,60,734,'734 458c-21 -24 -25 -29 -39 -55c-21 -6 -47 -15 -68 -15c-10 0 -26 -2 -45 -2c-18 0 -40 2 -54 3c1 -7 3 -14 2 -19c-1 -91 -67 -221 -159 -307c-53 -51 -118 -80 -179 -80c-79 0 -131 57 -132 152c1 39 11 83 28 131c23 66 54 106 119 146c55 36 117 57 190 57 c9 0 21 -1 36 -2c0 0 16 -2 59 -2h112c34 0 85 8 116 17zM446 334c1 64 -45 91 -101 91c-35 0 -66 -18 -93 -53c-37 -51 -66 -159 -67 -247c0 -48 32 -78 72 -78c47 0 88 29 124 88c38 59 65 142 65 199'], + 0xE4F4: [482,17,776,73,797,'797 458c-22 -24 -27 -29 -41 -55c-23 -6 -51 -15 -73 -15c-12 0 -29 -2 -49 -2s-42 2 -57 3c0 -7 2 -14 1 -19c-1 -91 -72 -221 -170 -307c-57 -51 -127 -80 -192 -80c-86 0 -142 57 -143 152c2 39 13 83 31 131c24 66 58 106 127 146c60 36 126 57 204 57 c11 0 23 -1 39 -2c0 0 17 -2 63 -2h120c37 0 91 8 125 17zM488 334c1 64 -49 91 -108 91c-38 0 -72 -18 -100 -53c-40 -51 -71 -159 -72 -247c0 -48 34 -78 78 -78c50 0 93 29 133 88s69 142 69 199'], + 0xE4F5: [482,226,561,60,512,'508 9c7 -35 9 -85 -24 -130c-40 -57 -110 -105 -174 -105c-52 0 -101 35 -109 78c-1 5 -2 11 -2 18l48 34l13 -4c0 -9 1 -17 1 -22c7 -35 43 -62 83 -62c51 0 100 39 113 110c0 8 0 14 -1 21c-7 34 -29 52 -68 52c-35 0 -126 -10 -153 -10c-91 0 -149 51 -168 147 c-19 105 4 210 57 259c54 49 124 87 185 87c60 0 120 -11 151 -11c2 -5 4 -8 4 -13c-5 -10 -9 -34 -8 -39c-4 -1 -33 -1 -48 -1c-10 0 -44 5 -55 8c-21 6 -44 12 -71 12c-35 0 -63 -13 -83 -29c-49 -38 -70 -142 -49 -250c16 -79 55 -119 119 -119c37 0 115 10 148 10 c24 0 58 -2 77 -18c8 -6 13 -14 14 -23'], + 0xE4F6: [482,226,620,74,558,'554 9c8 -35 10 -85 -25 -130c-43 -57 -118 -105 -187 -105c-55 0 -108 35 -117 78c-1 5 -2 11 -2 18l51 34l14 -4c0 -9 1 -17 1 -22c7 -35 47 -62 90 -62c54 0 107 39 121 110c0 8 0 14 -1 21c-7 34 -32 52 -74 52c-36 0 -135 -10 -163 -10c-98 0 -161 51 -181 147 c-20 105 4 210 62 259s133 87 198 87s129 -11 162 -11c2 -5 5 -8 5 -13c-6 -10 -10 -34 -9 -39c-5 -1 -36 -1 -51 -1c-12 0 -48 5 -59 8c-24 6 -48 12 -77 12c-38 0 -67 -13 -89 -29c-53 -38 -75 -142 -53 -250c17 -79 59 -119 128 -119c40 0 124 10 159 10 c26 0 62 -2 83 -18c8 -6 13 -14 14 -23'], + 0xE4F7: [482,226,534,51,505,'505 458c-8 -10 -16 -34 -16 -39c-5 -1 -32 -1 -46 -1c-10 0 -42 5 -51 8c-19 6 -40 12 -65 12c-33 0 -63 -13 -86 -29c-56 -38 -99 -142 -105 -250c-3 -79 25 -119 86 -119c36 0 112 10 144 10c23 0 54 -2 69 -18c6 -6 9 -14 8 -23c-2 -35 -11 -85 -53 -130 c-52 -57 -129 -105 -190 -105c-49 0 -88 35 -86 78c0 5 1 11 2 18l54 34l11 -4c-2 -9 -3 -17 -4 -22c-2 -35 27 -62 65 -62c48 0 104 39 133 110c2 8 4 14 4 21c2 34 -16 52 -53 52c-33 0 -122 -10 -147 -10c-88 0 -131 51 -127 147c6 105 52 210 115 259 c62 49 138 87 196 87c57 0 111 -11 141 -11c1 -5 2 -8 1 -13'], + 0xE4F8: [482,226,592,65,552,'552 458c-9 -10 -18 -34 -18 -39c-5 -1 -34 -1 -50 -1c-10 0 -44 5 -54 8c-21 6 -43 12 -69 12c-37 0 -68 -13 -93 -29c-60 -38 -107 -142 -113 -250c-3 -79 27 -119 93 -119c38 0 120 10 154 10c25 0 58 -2 74 -18c7 -6 9 -14 8 -23c-1 -35 -11 -85 -57 -130 c-55 -57 -138 -105 -203 -105c-53 0 -95 35 -92 78c0 5 0 11 2 18l58 34l11 -4c-2 -9 -3 -17 -4 -22c-2 -35 29 -62 70 -62c52 0 112 39 143 110c2 8 4 14 4 21c2 34 -17 52 -57 52c-35 0 -131 -10 -158 -10c-94 0 -141 51 -135 147c6 105 55 210 122 259 c68 49 148 87 210 87s121 -11 152 -11c1 -5 3 -8 2 -13'], + 0xE4F9: [469,232,550,63,516,'512 9c8 -35 7 -66 -18 -117c-30 -60 -96 -124 -173 -124c-40 0 -80 17 -103 44c-13 14 -19 27 -27 53l63 40l22 -6c0 -7 1 -16 2 -19c8 -42 26 -66 71 -66c41 0 98 56 82 134c-6 29 -24 45 -47 45c-32 0 -112 -10 -147 -10c-86 0 -150 54 -167 136c-14 72 -6 167 18 213 c15 28 48 57 103 88c65 39 96 49 142 49c34 0 36 -6 64 -8c18 -1 27 -4 63 -4l6 -18c-6 -10 -7 -38 -6 -44c-16 -4 -47 -4 -62 -4c-11 0 -48 5 -58 8c-19 5 -37 7 -53 8c-42 -3 -71 -26 -85 -68c-15 -47 -18 -141 -5 -199c10 -55 52 -90 107 -90c26 0 71 10 103 10 c28 0 67 -7 87 -25c9 -9 17 -18 18 -26'], + 0xE4FA: [469,232,609,76,564,'559 9c9 -35 8 -66 -19 -117c-32 -60 -104 -124 -186 -124c-43 0 -86 17 -110 44c-15 14 -21 27 -30 53l68 40l23 -6c0 -7 1 -16 2 -19c9 -42 29 -66 77 -66c44 0 105 56 88 134c-6 29 -26 45 -50 45c-35 0 -121 -10 -159 -10c-92 0 -161 54 -179 136 c-15 72 -6 167 20 213c16 28 51 57 110 88c70 39 103 49 152 49c37 0 40 -6 69 -8c20 -1 30 -4 68 -4l6 -18c-6 -10 -7 -38 -6 -44c-17 -4 -51 -4 -67 -4c-12 0 -51 5 -62 8c-20 5 -40 7 -57 8c-45 -3 -76 -26 -91 -68c-16 -47 -19 -141 -6 -199c11 -55 57 -90 116 -90 c28 0 76 10 110 10c30 0 72 -7 94 -25c9 -9 18 -18 19 -26'], + 0xE4FB: [469,232,525,50,502,'502 439c-8 -10 -15 -38 -16 -44c-16 -4 -45 -4 -60 -4c-10 0 -44 5 -53 8c-17 5 -33 7 -49 8c-41 -3 -73 -26 -96 -68c-25 -47 -50 -141 -51 -199c-3 -55 29 -90 81 -90c25 0 70 10 101 10c26 0 61 -7 77 -25c6 -9 12 -18 11 -26c0 -35 -9 -66 -45 -117 c-42 -60 -120 -124 -193 -124c-38 0 -72 17 -88 44c-10 14 -12 27 -14 53l70 40l19 -6c-2 -7 -3 -16 -2 -19c-2 -42 9 -66 52 -66c39 0 107 56 109 134c2 29 -12 45 -34 45c-30 0 -109 -10 -143 -10c-81 0 -130 54 -127 136c3 72 33 167 66 213c21 28 59 57 119 88 c71 39 103 49 146 49c33 0 34 -6 60 -8c17 -1 25 -4 59 -4'], + 0xE4FC: [469,232,582,63,548,'548 439c-8 -10 -16 -38 -17 -44c-17 -4 -49 -4 -64 -4c-12 0 -48 5 -58 8c-17 5 -35 7 -51 8c-44 -3 -79 -26 -104 -68c-27 -47 -54 -141 -55 -199c-3 -55 31 -90 87 -90c27 0 75 10 108 10c28 0 66 -7 83 -25c7 -9 13 -18 12 -26c0 -35 -9 -66 -48 -117 c-45 -60 -129 -124 -207 -124c-41 0 -78 17 -95 44c-10 14 -13 27 -15 53l75 40l21 -6c-2 -7 -3 -16 -3 -19c-2 -42 11 -66 56 -66c42 0 115 56 118 134c1 29 -14 45 -37 45c-33 0 -117 -10 -153 -10c-88 0 -140 54 -137 136c3 72 35 167 71 213c22 28 64 57 128 88 c76 39 110 49 157 49c35 0 36 -6 63 -8c19 -1 27 -4 64 -4'], + 0xE4FD: [493,11,660,46,618,'618 481c-17 -24 -21 -26 -30 -47c-17 -6 -40 -16 -61 -16c-25 -3 -53 -4 -79 -4l-75 2l-11 -208c-2 -29 1 -56 6 -81c12 -62 33 -91 87 -91c20 0 45 21 45 21l25 17l12 -19c-62 -53 -92 -66 -151 -66c-35 0 -81 13 -101 118c-13 66 20 255 27 312l-116 4 c-66 0 -111 -3 -123 -63l-9 -7l-18 8c17 87 41 120 127 120c50 0 184 -9 248 -9c28 0 57 1 70 2c38 0 88 10 117 19'], + 0xE4FE: [493,11,727,59,673,'673 481c-18 -24 -23 -26 -32 -47c-19 -6 -44 -16 -66 -16c-27 -3 -57 -4 -85 -4l-80 2l-13 -208c-1 -29 2 -56 7 -81c13 -62 36 -91 94 -91c21 0 48 21 48 21l26 17l14 -19c-66 -53 -99 -66 -162 -66c-38 0 -87 13 -109 118c-14 66 21 255 29 312l-125 4 c-70 0 -118 -3 -132 -63l-9 -7l-19 8c18 87 44 120 136 120c54 0 197 -9 266 -9c31 0 61 1 76 2c40 0 94 10 125 19'], + 0xE4FF: [493,11,629,84,657,'657 481c-22 -24 -26 -26 -39 -47c-18 -6 -42 -16 -62 -16c-25 -3 -51 -4 -77 -4l-70 2l-60 -208c-8 -29 -11 -56 -12 -81c-3 -62 10 -91 62 -91c18 0 48 21 48 21l27 17l7 -19c-71 -53 -103 -66 -159 -66c-34 0 -74 13 -69 118c3 66 78 255 98 312l-110 4 c-62 0 -106 -3 -132 -63l-10 -7l-15 8c36 87 67 120 149 120c48 0 173 -9 234 -9c27 0 55 1 68 2c36 0 85 10 115 19'], + 0xE500: [493,11,694,100,715,'715 481c-24 -24 -29 -26 -43 -47c-19 -6 -45 -16 -66 -16c-27 -3 -55 -4 -82 -4l-76 2l-64 -208c-8 -29 -12 -56 -13 -81c-4 -62 11 -91 66 -91c20 0 52 21 52 21l29 17l8 -19c-76 -53 -111 -66 -171 -66c-36 0 -80 13 -74 118c3 66 83 255 105 312l-118 4 c-67 0 -113 -3 -141 -63l-11 -7l-16 8c38 87 72 120 160 120c51 0 185 -9 251 -9c29 0 58 1 72 2c39 0 92 10 124 19'], + 0xE501: [493,17,694,44,658,'658 469c-17 -24 -21 -29 -30 -55c-19 -10 -50 -22 -70 -27c-23 -6 -41 -8 -98 -8h-54c-9 -74 -25 -167 -9 -250c11 -52 32 -82 84 -82c20 0 49 29 61 39l18 -30c-23 -20 -73 -73 -125 -73c-86 0 -148 44 -162 117c-13 63 12 213 36 281l-126 2c-50 0 -61 0 -89 -48 l-17 -6l-33 26c16 109 65 114 125 114l215 -4c39 0 101 5 143 8c35 2 80 11 111 20'], + 0xE502: [493,17,763,57,716,'716 469c-19 -24 -23 -29 -33 -55c-20 -10 -53 -22 -75 -27c-25 -6 -44 -8 -105 -8h-58c-10 -74 -27 -167 -9 -250c11 -52 33 -82 90 -82c21 0 53 29 65 39l19 -30c-24 -20 -78 -73 -134 -73c-92 0 -158 44 -174 117c-14 63 13 213 39 281l-135 2c-54 0 -65 0 -96 -48 l-18 -6l-35 26c17 109 69 114 134 114l231 -4c41 0 108 5 153 8c37 2 86 11 119 20'], + 0xE503: [493,17,662,81,692,'692 469c-22 -24 -26 -29 -41 -55c-20 -10 -52 -22 -73 -27c-24 -6 -41 -8 -96 -8h-51c-26 -74 -62 -167 -66 -250c-2 -52 11 -82 61 -82c19 0 54 29 67 39l10 -30c-26 -20 -86 -73 -136 -73c-82 0 -130 44 -127 117c2 63 61 213 100 281l-120 2c-48 0 -58 0 -96 -48 l-18 -6l-25 26c41 109 88 114 146 114l203 -4c37 0 98 5 138 8c34 2 79 11 111 20'], + 0xE504: [493,17,729,97,752,'752 469c-23 -24 -28 -29 -44 -55c-22 -10 -56 -22 -79 -27c-25 -6 -43 -8 -102 -8h-55c-28 -74 -67 -167 -71 -250c-2 -52 12 -82 66 -82c20 0 57 29 72 39l10 -30c-28 -20 -92 -73 -146 -73c-88 0 -140 44 -136 117c2 63 65 213 107 281l-129 2c-51 0 -62 0 -102 -48 l-19 -6l-27 26c43 109 94 114 156 114l218 -4c40 0 105 5 148 8c36 2 85 11 119 20'], + 0xE505: [711,11,584,73,510,'501 489c29 -151 -10 -316 -71 -403c-43 -60 -107 -97 -167 -97c-96 0 -148 77 -178 236c-35 184 11 335 97 420c44 45 90 66 139 66c94 0 154 -83 180 -222zM427 319c-21 8 -53 11 -131 11c-81 0 -112 -3 -134 -12c0 -32 4 -64 10 -95c23 -119 50 -196 119 -196 c34 0 62 18 79 49c26 52 51 142 57 243zM428 382c-1 28 -4 57 -10 85c-23 124 -46 206 -118 206c-27 0 -52 -8 -65 -23c-34 -42 -66 -150 -73 -268c22 -7 56 -10 134 -10c75 0 110 3 132 10'], + 0xE506: [711,11,645,87,557,'547 489c31 -151 -11 -316 -77 -403c-45 -60 -114 -97 -179 -97c-103 0 -158 77 -191 236c-38 184 12 335 104 420c48 45 97 66 150 66c101 0 165 -83 193 -222zM468 319c-23 8 -58 11 -141 11c-87 0 -120 -3 -144 -12c1 -32 5 -64 11 -95c25 -119 54 -196 128 -196 c36 0 66 18 84 49c29 52 56 142 62 243zM469 382c-1 28 -5 57 -11 85c-25 124 -49 206 -127 206c-29 0 -56 -8 -70 -23c-36 -42 -70 -150 -78 -268c24 -7 60 -10 144 -10c81 0 118 3 142 10'], + 0xE507: [711,11,556,88,547,'547 489c-7 -151 -83 -316 -161 -403c-54 -60 -124 -97 -181 -97c-92 0 -123 77 -115 236c9 184 88 335 189 420c53 45 102 66 149 66c89 0 126 -83 119 -222zM438 319c-18 8 -49 11 -123 11c-77 0 -107 -3 -130 -12c-7 -32 -11 -64 -13 -95c-5 -119 3 -196 68 -196 c33 0 63 18 87 49c37 52 82 142 111 243zM464 467c6 124 3 206 -65 206c-27 0 -52 -8 -68 -23c-41 -42 -97 -150 -131 -268c19 -7 51 -10 125 -10c72 0 106 3 128 10c6 28 9 57 11 85'], + 0xE508: [711,11,616,104,597,'597 489c-8 -151 -89 -316 -173 -403c-59 -60 -133 -97 -195 -97c-98 0 -132 77 -123 236c9 184 95 335 203 420c56 45 109 66 159 66c96 0 136 -83 129 -222zM479 319c-19 8 -52 11 -131 11c-84 0 -115 -3 -140 -12c-8 -32 -12 -64 -14 -95c-6 -119 3 -196 73 -196 c35 0 68 18 93 49c40 52 88 142 119 243zM507 467c6 124 4 206 -70 206c-28 0 -55 -8 -73 -23c-44 -42 -103 -150 -140 -268c21 -7 54 -10 134 -10c77 0 114 3 137 10c6 28 10 57 12 85'], + 0xE509: [695,17,619,63,558,'548 188c-12 -56 -59 -116 -113 -157c-40 -32 -87 -48 -141 -48c-117 0 -186 66 -216 217c-12 58 -17 123 -14 194c5 98 26 157 81 217c51 56 113 84 183 84c106 0 187 -83 215 -221c18 -95 20 -212 5 -286zM430 309c-9 13 -28 19 -59 19h-119c-32 0 -50 -6 -59 -19 c4 -40 9 -80 17 -116c18 -94 61 -166 119 -166c37 0 65 27 82 79c14 44 23 117 19 203zM424 383c-3 33 -7 64 -13 94c-19 95 -63 174 -121 174c-37 0 -65 -27 -82 -79c-13 -39 -19 -106 -18 -179c6 -8 24 -15 63 -15h120c25 0 42 1 51 5'], + 0xE50A: [695,17,683,77,608,'598 188c-13 -56 -64 -116 -122 -157c-43 -32 -94 -48 -151 -48c-126 0 -200 66 -232 217c-13 58 -18 123 -15 194c5 98 28 157 87 217c55 56 121 84 196 84c114 0 201 -83 231 -221c20 -95 22 -212 6 -286zM471 309c-10 13 -30 19 -63 19h-128c-34 0 -54 -6 -63 -19 c3 -40 9 -80 17 -116c20 -94 66 -166 128 -166c40 0 70 27 89 79c15 44 24 117 20 203zM465 383c-3 33 -8 64 -14 94c-20 95 -68 174 -131 174c-39 0 -69 -27 -87 -79c-14 -39 -21 -106 -20 -179c7 -8 26 -15 67 -15h129c27 0 46 1 56 5'], + 0xE50B: [695,17,591,76,583,'583 474c-4 -95 -29 -212 -61 -286c-24 -56 -83 -116 -143 -157c-46 -32 -95 -48 -146 -48c-111 0 -162 66 -156 217c3 58 13 123 32 194c27 98 61 157 128 217c61 56 127 84 193 84c101 0 159 -83 153 -221zM438 309c-6 13 -22 19 -51 19h-114c-30 0 -49 -6 -61 -19 c-6 -40 -9 -80 -11 -116c-4 -94 20 -166 75 -166c36 0 69 27 97 79c24 44 48 117 65 203zM459 477c4 95 -20 174 -75 174c-35 0 -68 -27 -96 -79c-22 -39 -43 -106 -59 -179c4 -8 19 -15 56 -15h115c24 0 40 1 50 5c5 33 8 64 9 94'], + 0xE50C: [695,17,653,91,635,'635 474c-4 -95 -31 -212 -65 -286c-26 -56 -89 -116 -154 -157c-50 -32 -102 -48 -157 -48c-119 0 -174 66 -167 217c3 58 14 123 34 194c29 98 66 157 138 217c65 56 136 84 207 84c109 0 171 -83 164 -221zM480 309c-7 13 -24 19 -56 19h-121c-33 0 -53 -6 -66 -19 c-6 -40 -10 -80 -12 -116c-4 -94 22 -166 81 -166c38 0 73 27 104 79c25 44 52 117 70 203zM502 477c4 95 -21 174 -81 174c-37 0 -73 -27 -103 -79c-23 -39 -46 -106 -63 -179c4 -8 20 -15 60 -15h123c26 0 43 1 54 5c5 33 9 64 10 94'], + 0xE50D: [711,11,653,26,609,'609 459c-1 -7 -4 -16 -7 -26l-20 -72c-12 -8 -24 -13 -35 -18c-7 -104 -40 -201 -78 -262c-36 -57 -119 -92 -179 -92c-74 0 -136 54 -151 132c-1 8 -3 17 -4 25l11 228c0 5 -1 13 -2 18c-2 11 -11 20 -23 20c-10 0 -21 -5 -50 -23l-33 -21l-12 20l28 20 c76 54 114 74 138 74c16 0 28 -12 31 -31c3 -13 3 -27 3 -43l-11 -209c-2 -26 -1 -38 2 -53c12 -66 56 -107 112 -107c33 0 69 22 86 53c26 52 47 131 51 232c-101 20 -206 92 -219 160c-13 70 -13 107 15 161c28 55 49 66 98 66c94 0 153 -83 180 -222c5 -26 8 -52 9 -78 c6 7 11 14 16 24l17 30zM467 383c-2 27 -4 56 -10 84c-23 124 -46 206 -118 206c-21 0 -37 -28 -43 -69c-2 -14 -4 -52 4 -91c13 -69 107 -120 167 -130'], + 0xE50E: [711,11,720,37,663,'663 459c-1 -7 -4 -16 -7 -26l-22 -72c-13 -8 -26 -13 -37 -18c-8 -104 -44 -201 -84 -262c-38 -57 -128 -92 -192 -92c-80 0 -146 54 -162 132c-2 8 -4 17 -4 25l10 228c1 5 0 13 -1 18c-2 11 -12 20 -25 20c-11 0 -22 -5 -54 -23l-35 -21l-13 20l31 20 c81 54 122 74 148 74c17 0 29 -12 33 -31c3 -13 3 -27 3 -43l-12 -209c-2 -26 -1 -38 2 -53c13 -66 60 -107 120 -107c36 0 74 22 92 53c29 52 51 131 56 232c-109 20 -222 92 -236 160c-14 70 -13 107 16 161c31 55 53 66 106 66c101 0 164 -83 193 -222 c5 -26 8 -52 10 -78c6 7 12 14 17 24l18 30zM510 383c-2 27 -4 56 -10 84c-25 124 -50 206 -127 206c-22 0 -40 -28 -46 -69c-2 -14 -4 -52 4 -91c14 -69 116 -120 179 -130'], + 0xE50F: [711,11,623,72,643,'643 459c-3 -7 -7 -16 -12 -26l-36 -72c-14 -8 -26 -13 -37 -18c-32 -104 -85 -201 -135 -262c-48 -57 -136 -92 -192 -92c-71 0 -118 54 -114 132c1 8 1 17 3 25l62 228c1 5 3 13 3 18c1 11 -6 20 -17 20c-10 0 -21 -5 -54 -23l-36 -21l-6 20l31 20c85 54 126 74 149 74 c15 0 23 -12 22 -31c0 -13 -3 -27 -7 -43l-60 -209c-8 -26 -9 -38 -10 -53c-3 -66 29 -107 82 -107c32 0 71 22 94 53c38 52 75 131 103 232c-92 20 -175 92 -172 160c4 70 13 107 52 161c39 55 62 66 109 66c89 0 126 -83 120 -222c-2 -26 -5 -52 -10 -78c7 7 14 14 21 24 l23 30zM501 467c6 124 3 206 -65 206c-20 0 -42 -28 -57 -69c-5 -14 -16 -52 -18 -91c-3 -69 75 -120 129 -130c5 27 9 56 11 84'], + 0xE510: [711,11,687,86,699,'699 459c-2 -7 -7 -16 -13 -26l-39 -72c-14 -8 -27 -13 -39 -18c-34 -104 -91 -201 -145 -262c-51 -57 -145 -92 -206 -92c-76 0 -126 54 -122 132c1 8 1 17 3 25l67 228c1 5 3 13 3 18c1 11 -7 20 -19 20c-10 0 -22 -5 -57 -23l-39 -21l-7 20l34 20c91 54 135 74 159 74 c17 0 26 -12 25 -31c-1 -13 -4 -27 -9 -43l-63 -209c-9 -26 -10 -38 -11 -53c-4 -66 30 -107 88 -107c34 0 76 22 101 53c40 52 80 131 110 232c-98 20 -188 92 -184 160c3 70 14 107 55 161c43 55 67 66 117 66c96 0 136 -83 129 -222c-2 -26 -5 -52 -10 -78 c7 7 15 14 22 24l25 30zM547 467c6 124 4 206 -70 206c-21 0 -45 -28 -61 -69c-6 -14 -17 -52 -19 -91c-4 -69 80 -120 138 -130c5 27 10 56 12 84'], + 0xE511: [695,17,676,34,642,'642 495c-14 -44 -20 -75 -24 -126c-17 -10 -32 -17 -45 -23c2 -59 0 -116 -9 -158c-12 -56 -57 -124 -111 -165c-41 -32 -91 -40 -143 -40c-84 0 -144 51 -162 140c-4 21 0 56 2 70c9 91 4 140 0 161c-2 10 -10 16 -23 16c-11 0 -24 -3 -36 -10l-37 -21l-20 26l80 54 c46 31 77 50 108 50c19 0 33 -13 38 -35c6 -29 11 -56 10 -147c-8 -97 -4 -124 -1 -141c13 -66 47 -100 96 -100c36 0 57 27 74 79c14 45 11 117 6 202c-106 37 -169 108 -187 194c-9 47 2 94 10 111c16 34 31 63 99 63c106 0 164 -83 192 -221c3 -16 5 -33 7 -50 c15 10 25 26 33 58l5 17zM437 414c-6 42 -11 94 -19 133c-12 61 -30 104 -73 104c-20 0 -23 -20 -25 -33c-3 -23 1 -77 7 -110c7 -35 58 -80 110 -94'], + 0xE512: [695,17,744,46,699,'699 495c-15 -44 -22 -75 -26 -126c-19 -10 -34 -17 -49 -23c3 -59 0 -116 -9 -158c-13 -56 -62 -124 -120 -165c-43 -32 -97 -40 -153 -40c-90 0 -155 51 -174 140c-4 21 0 56 2 70c10 91 5 140 0 161c-2 10 -11 16 -24 16c-12 0 -27 -3 -39 -10l-39 -21l-22 26l86 54 c49 31 82 50 115 50c21 0 36 -13 41 -35c6 -29 12 -56 11 -147c-9 -97 -4 -124 -1 -141c14 -66 50 -100 103 -100c39 0 62 27 80 79c15 45 12 117 6 202c-114 37 -182 108 -200 194c-10 47 2 94 10 111c18 34 33 63 106 63c114 0 176 -83 206 -221c3 -16 6 -33 8 -50 c16 10 26 26 36 58l4 17zM478 414c-7 42 -12 94 -20 133c-13 61 -32 104 -79 104c-21 0 -24 -20 -26 -33c-4 -23 1 -77 8 -110c7 -35 61 -80 117 -94'], + 0xE513: [695,17,645,74,683,'683 495c-23 -44 -36 -75 -52 -126c-19 -10 -34 -17 -49 -23c-11 -59 -26 -116 -44 -158c-24 -56 -84 -124 -144 -165c-46 -32 -96 -40 -146 -40c-80 0 -125 51 -122 140c1 21 13 56 18 70c30 91 37 140 38 161c0 10 -6 16 -18 16c-11 0 -24 -3 -37 -10l-40 -21l-13 26 l89 54c51 31 84 50 114 50c18 0 29 -13 28 -35c-1 -29 -2 -56 -25 -147c-30 -97 -32 -124 -33 -141c-3 -66 21 -100 68 -100c35 0 61 27 89 79c24 45 38 117 52 202c-92 37 -136 108 -132 194c2 47 23 94 35 111c23 34 44 63 108 63c102 0 137 -83 132 -221 c-1 -16 -3 -33 -5 -50c17 10 30 26 45 58l9 17zM482 547c2 61 -5 104 -46 104c-19 0 -26 -20 -31 -33c-8 -23 -17 -77 -19 -110c-1 -35 36 -80 83 -94c4 42 11 94 13 133'], + 0xE514: [695,17,710,89,743,'743 495c-26 -44 -40 -75 -56 -126c-20 -10 -37 -17 -53 -23c-12 -59 -28 -116 -48 -158c-25 -56 -89 -124 -154 -165c-50 -32 -103 -40 -157 -40c-85 0 -134 51 -130 140c1 21 14 56 19 70c32 91 39 140 40 161c1 10 -6 16 -19 16c-12 0 -26 -3 -39 -10l-43 -21l-14 26 l95 54c55 31 91 50 122 50c20 0 31 -13 30 -35c-1 -29 -2 -56 -26 -147c-32 -97 -35 -124 -35 -141c-3 -66 22 -100 72 -100c38 0 66 27 96 79c26 45 41 117 56 202c-99 37 -146 108 -142 194c2 47 25 94 37 111c25 34 48 63 117 63c109 0 147 -83 141 -221 c-1 -16 -3 -33 -5 -50c18 10 32 26 48 58l9 17zM526 547c3 61 -4 104 -49 104c-20 0 -28 -20 -33 -33c-9 -23 -19 -77 -20 -110c-2 -35 39 -80 88 -94c4 42 13 94 14 133'], + 0xE515: [482,11,624,25,549,'546 384c9 -42 2 -110 -16 -163c-22 -63 -60 -126 -101 -167c-46 -45 -90 -65 -140 -65c-74 0 -136 54 -151 132c-2 8 -3 17 -4 25l10 228c1 5 0 13 -1 18c-2 11 -12 20 -23 20c-10 0 -21 -5 -51 -23l-32 -21l-12 20l28 20c76 54 114 74 138 74c16 0 28 -12 31 -31 c3 -13 3 -27 3 -43l-12 -209c-2 -26 0 -38 3 -53c12 -66 55 -107 112 -107c100 0 180 162 152 311c-8 40 -29 63 -62 63c-11 0 -20 -3 -29 -9l-16 19l48 47c9 8 20 12 36 12c42 0 78 -40 89 -98'], + 0xE516: [482,11,688,36,599,'596 384c8 -42 2 -110 -18 -163c-23 -63 -64 -126 -108 -167c-50 -45 -96 -65 -150 -65c-80 0 -147 54 -163 132c-1 8 -3 17 -4 25l11 228c0 5 0 13 -1 18c-2 11 -13 20 -25 20c-11 0 -22 -5 -54 -23l-35 -21l-13 20l30 20c81 54 123 74 149 74c17 0 29 -12 33 -31 c3 -13 3 -27 3 -43l-13 -209c-2 -26 0 -38 3 -53c13 -66 60 -107 120 -107c108 0 194 162 163 311c-8 40 -31 63 -66 63c-12 0 -21 -3 -31 -9l-17 19l51 47c10 8 21 12 39 12c45 0 84 -40 96 -98'], + 0xE517: [482,11,596,71,566,'566 384c-2 -42 -24 -110 -54 -163c-34 -63 -85 -126 -134 -167c-55 -45 -100 -65 -148 -65c-71 0 -118 54 -114 132c1 8 1 17 3 25l62 228c1 5 3 13 3 18c1 11 -7 20 -17 20s-21 -5 -54 -23l-36 -21l-6 20l31 20c84 54 126 74 149 74c15 0 23 -12 22 -31 c-1 -13 -3 -27 -7 -43l-60 -209c-8 -26 -9 -38 -10 -53c-3 -66 28 -107 82 -107c96 0 210 162 217 311c2 40 -13 63 -44 63c-11 0 -20 -3 -30 -9l-11 19l57 47c10 8 21 12 37 12c40 0 65 -40 62 -98'], + 0xE518: [482,11,658,85,617,'617 384c-2 -42 -26 -110 -58 -163c-37 -63 -92 -126 -144 -167c-59 -45 -108 -65 -159 -65c-76 0 -126 54 -122 132c0 8 1 17 3 25l67 228c1 5 3 13 3 18c0 11 -7 20 -19 20c-10 0 -22 -5 -57 -23l-39 -21l-7 20l34 20c90 54 135 74 159 74c17 0 25 -12 24 -31 c0 -13 -3 -27 -8 -43l-63 -209c-9 -26 -11 -38 -11 -53c-4 -66 30 -107 88 -107c102 0 225 162 232 311c3 40 -14 63 -47 63c-11 0 -21 -3 -32 -9l-11 19l61 47c10 8 22 12 39 12c43 0 70 -40 67 -98'], + 0xE519: [469,17,606,5,550,'546 370c18 -91 -26 -221 -105 -307c-45 -51 -107 -80 -171 -80c-84 0 -144 51 -162 140c-4 21 0 56 2 70c9 91 14 140 10 161c-2 10 -10 16 -23 16c-11 0 -24 -3 -35 -10l-37 -21l-20 26l79 54c47 31 92 50 123 50c19 0 34 -13 38 -35c6 -29 5 -48 -5 -147 c-13 -117 -14 -124 -11 -141c13 -66 46 -99 96 -99c49 0 86 29 114 88c26 60 37 143 26 200c-6 31 -29 54 -55 54c-18 0 -31 -4 -39 -12l-16 21c19 14 33 30 62 67c13 3 20 4 29 4c44 0 90 -46 100 -99'], + 0xE51A: [469,17,669,14,599,'595 370c20 -91 -27 -221 -112 -307c-49 -51 -115 -80 -184 -80c-90 0 -155 51 -174 140c-4 21 0 56 2 70c10 91 16 140 11 161c-2 10 -11 16 -24 16c-12 0 -26 -3 -39 -10l-39 -21l-22 26l86 54c50 31 98 50 131 50c21 0 36 -13 41 -35c6 -29 6 -48 -5 -147 c-14 -117 -15 -124 -12 -141c14 -66 50 -99 103 -99c52 0 93 29 122 88c29 60 41 143 28 200c-6 31 -31 54 -59 54c-19 0 -32 -4 -42 -12l-17 21c21 14 36 30 67 67c14 3 21 4 31 4c47 0 96 -46 107 -99'], + 0xE51B: [469,17,578,46,563,'563 370c-4 -91 -76 -221 -171 -307c-56 -51 -121 -80 -182 -80c-80 0 -126 51 -122 140c1 21 13 56 18 70c30 91 46 140 47 161c1 10 -6 16 -18 16c-10 0 -24 -3 -36 -10l-40 -21l-13 26l88 54c52 31 99 50 129 50c18 0 29 -13 28 -35c-2 -29 -7 -48 -39 -147 c-40 -117 -42 -124 -43 -141c-3 -66 21 -99 68 -99s89 29 129 88c39 60 69 143 71 200c2 31 -15 54 -40 54c-16 0 -30 -4 -40 -12l-10 21c22 14 39 30 75 67c13 3 20 4 29 4c41 0 74 -46 72 -99'], + 0xE51C: [469,17,639,58,613,'613 370c-4 -91 -81 -221 -183 -307c-60 -51 -130 -80 -195 -80c-86 0 -135 51 -131 140c1 21 14 56 19 70c32 91 50 140 51 161c0 10 -7 16 -19 16s-26 -3 -39 -10l-43 -21l-15 26l95 54c55 31 107 50 138 50c20 0 31 -13 30 -35c-1 -29 -7 -48 -41 -147 c-43 -117 -46 -124 -46 -141c-3 -66 22 -99 72 -99c51 0 96 29 139 88c42 60 74 143 77 200c1 31 -17 54 -44 54c-17 0 -31 -4 -42 -12l-11 21c23 14 41 30 80 67c14 3 21 4 31 4c44 0 80 -46 77 -99'], + 0xE51D: [711,226,542,71,524,'520 9c7 -35 8 -85 -24 -130c-41 -57 -111 -105 -175 -105c-51 0 -100 35 -109 78c-1 5 -2 11 -2 18l48 34l13 -4c0 -9 1 -17 2 -22c6 -35 42 -62 82 -62c51 0 101 39 114 110c0 8 0 14 -1 21c-7 34 -30 52 -69 52c-34 0 -126 -10 -152 -10c-92 0 -150 51 -168 147 c-20 105 3 210 57 259c48 45 116 81 167 85c-15 13 -24 28 -28 47c-7 37 20 67 66 100c-26 0 -56 3 -98 10c-24 4 -37 5 -53 5c-15 0 -25 -1 -43 -5l-24 -58h-24l14 122c26 7 48 10 68 10c16 0 39 -4 73 -11l21 -5c58 -13 119 -21 158 -21c16 0 26 4 36 14l22 23l12 -9 l-1 -32l-32 -11c-45 -16 -140 -52 -130 -107c10 -50 71 -83 131 -81c3 -5 4 -8 5 -13c-6 -10 -9 -34 -8 -39c-5 -1 -33 -1 -48 -1c-11 0 -45 5 -56 8c-21 6 -44 12 -71 12c-35 0 -62 -13 -83 -29c-49 -38 -69 -142 -48 -250c15 -79 54 -119 118 -119c38 0 115 10 148 10 c24 0 58 -2 77 -18c8 -6 13 -14 15 -23'], + 0xE51E: [711,226,600,86,571,'567 9c7 -35 9 -85 -26 -130c-43 -57 -118 -105 -187 -105c-55 0 -108 35 -117 78c-1 5 -2 11 -2 18l52 34l13 -4c0 -9 1 -17 2 -22c7 -35 46 -62 89 -62c54 0 107 39 122 110c0 8 0 14 -2 21c-7 34 -31 52 -73 52c-37 0 -136 -10 -164 -10c-98 0 -160 51 -180 147 c-22 105 4 210 61 259c52 45 125 81 179 85c-16 13 -25 28 -29 47c-8 37 20 67 70 100c-28 0 -59 3 -105 10c-26 4 -39 5 -56 5c-16 0 -27 -1 -47 -5l-25 -58h-26l14 122c28 7 52 10 73 10c17 0 43 -4 78 -11l24 -5c61 -13 127 -21 169 -21c17 0 28 4 38 14l24 23l13 -9 l-1 -32l-34 -11c-49 -16 -151 -52 -139 -107c10 -50 76 -83 140 -81c3 -5 4 -8 5 -13c-6 -10 -10 -34 -9 -39c-4 -1 -35 -1 -51 -1c-11 0 -48 5 -60 8c-23 6 -47 12 -76 12c-38 0 -67 -13 -90 -29c-52 -38 -74 -142 -51 -250c16 -79 59 -119 127 -119c41 0 124 10 159 10 c26 0 62 -2 83 -18c8 -6 13 -14 15 -23'], + 0xE51F: [711,226,517,63,598,'598 702l-8 -32l-33 -11c-47 -16 -145 -52 -148 -107c-3 -50 48 -83 106 -81c1 -5 2 -8 2 -13c-9 -10 -17 -34 -18 -39c-4 -1 -31 -1 -45 -1c-10 0 -42 5 -51 8c-20 6 -40 12 -65 12c-34 0 -63 -13 -87 -29c-55 -38 -98 -142 -103 -250c-4 -79 24 -119 85 -119 c36 0 112 10 144 10c22 0 54 -2 68 -18c7 -6 10 -14 9 -23c-2 -35 -12 -85 -53 -130c-52 -57 -130 -105 -191 -105c-49 0 -87 35 -85 78c0 5 0 11 2 18l54 34l10 -4c-1 -9 -3 -17 -3 -22c-2 -35 27 -62 65 -62c48 0 104 39 134 110c1 8 3 14 3 21c2 34 -16 52 -53 52 c-33 0 -123 -10 -148 -10c-87 0 -130 51 -125 147c5 105 51 210 114 259c56 45 129 81 178 85c-11 13 -16 28 -15 47c2 37 34 67 86 100c-25 0 -52 3 -91 10c-22 4 -34 5 -49 5c-14 0 -24 -1 -43 -5l-35 -58h-23l41 122c26 7 48 10 67 10c15 0 36 -4 67 -11l19 -5 c52 -13 108 -21 145 -21c15 0 26 4 38 14l26 23'], + 0xE520: [711,226,574,77,651,'651 702l-8 -32l-36 -11c-50 -16 -156 -52 -159 -107c-2 -50 52 -83 114 -81c1 -5 2 -8 2 -13c-9 -10 -18 -34 -19 -39c-4 -1 -34 -1 -49 -1c-10 0 -44 5 -54 8c-21 6 -43 12 -70 12c-36 0 -67 -13 -93 -29c-59 -38 -106 -142 -111 -250c-5 -79 26 -119 92 -119 c38 0 119 10 153 10c25 0 59 -2 74 -18c7 -6 10 -14 10 -23c-2 -35 -13 -85 -58 -130c-55 -57 -138 -105 -204 -105c-53 0 -94 35 -92 78c0 5 1 11 2 18l58 34l12 -4c-2 -9 -3 -17 -4 -22c-2 -35 29 -62 70 -62c51 0 112 39 143 110c2 8 3 14 4 21c2 34 -17 52 -57 52 c-35 0 -132 -10 -159 -10c-93 0 -140 51 -134 147c5 105 55 210 122 259c61 45 139 81 192 85c-12 13 -18 28 -17 47c2 37 37 67 92 100c-27 0 -56 3 -97 10c-24 4 -36 5 -53 5c-15 0 -26 -1 -46 -5l-38 -58h-24l43 122c29 7 52 10 72 10c17 0 40 -4 72 -11l21 -5 c56 -13 116 -21 156 -21c16 0 28 4 40 14l28 23'], + 0xE521: [718,232,539,69,530,'527 9c7 -35 6 -66 -19 -117c-30 -60 -96 -124 -172 -124c-40 0 -82 17 -104 44c-13 14 -19 27 -28 53l63 40l22 -6c0 -7 2 -16 2 -19c9 -42 27 -66 72 -66c41 0 98 56 82 134c-6 29 -24 45 -47 45c-32 0 -112 -10 -148 -10c-86 0 -150 54 -166 136c-15 72 -6 167 18 213 c15 28 48 57 102 88c32 19 56 31 77 38c-14 15 -24 31 -28 48c-5 26 4 67 30 99c-36 1 -82 5 -139 11c-6 0 -11 1 -25 2l-16 -52l-34 3l24 139c23 6 45 10 63 10c20 0 49 -5 113 -19c59 -13 98 -18 131 -18c29 0 54 9 62 24l8 13l24 -8l-6 -50l-60 -27 c-38 -21 -87 -60 -79 -102c7 -36 39 -63 75 -71c8 -1 18 -3 33 -3h17l6 -18c-6 -10 -8 -38 -6 -44c-17 -4 -48 -4 -63 -4c-11 0 -47 5 -57 8c-18 5 -37 7 -53 8c-42 -3 -72 -26 -85 -68c-15 -47 -18 -141 -6 -199c11 -55 53 -90 108 -90c27 0 70 10 102 10 c28 0 67 -7 88 -25c10 -9 17 -18 19 -26'], + 0xE522: [718,232,597,84,578,'575 9c7 -35 6 -66 -21 -117c-31 -60 -102 -124 -185 -124c-43 0 -87 17 -111 44c-14 14 -20 27 -30 53l68 40l23 -6c1 -7 2 -16 3 -19c9 -42 29 -66 77 -66c44 0 105 56 88 134c-6 29 -26 45 -50 45c-35 0 -121 -10 -159 -10c-92 0 -162 54 -179 136 c-16 72 -6 167 19 213c16 28 52 57 110 88c34 19 60 31 83 38c-15 15 -26 31 -30 48c-5 26 4 67 32 99c-38 1 -88 5 -149 11c-7 0 -12 1 -27 2l-17 -52l-36 3l25 139c25 6 48 10 68 10c21 0 53 -5 121 -19c64 -13 105 -18 141 -18c31 0 57 9 66 24l8 13l27 -8l-7 -50 l-64 -27c-41 -21 -94 -60 -85 -102c8 -36 42 -63 80 -71c9 -1 19 -3 35 -3h19l6 -18c-6 -10 -8 -38 -6 -44c-18 -4 -51 -4 -67 -4c-12 0 -52 5 -62 8c-20 5 -40 7 -57 8c-45 -3 -77 -26 -91 -68c-16 -47 -19 -141 -7 -199c12 -55 58 -90 117 -90c28 0 75 10 109 10 c30 0 72 -7 94 -25c11 -9 19 -18 21 -26'], + 0xE523: [718,232,514,63,592,'592 710l-17 -50l-64 -27c-41 -21 -97 -60 -99 -102c-1 -36 23 -63 55 -71c8 -1 16 -3 31 -3h16l1 -18c-8 -10 -15 -38 -16 -44c-16 -4 -46 -4 -60 -4c-11 0 -44 5 -53 8c-16 5 -33 7 -48 8c-41 -3 -75 -26 -97 -68c-25 -47 -49 -141 -52 -199c-2 -55 30 -90 82 -90 c26 0 70 10 100 10c26 0 62 -7 78 -25c7 -9 12 -18 12 -26c-2 -35 -10 -66 -46 -117c-41 -60 -119 -124 -192 -124c-38 0 -74 17 -89 44c-9 14 -12 27 -14 53l69 40l20 -6c-2 -7 -2 -16 -2 -19c-2 -42 10 -66 53 -66c39 0 105 56 109 134c1 29 -13 45 -34 45 c-31 0 -110 -10 -144 -10c-81 0 -130 54 -127 136c3 72 33 167 67 213c20 28 59 57 118 88c34 19 60 31 82 38c-10 15 -16 31 -16 48c2 26 20 67 51 99c-33 1 -77 5 -129 11c-6 0 -11 1 -24 2l-27 -52l-31 3l54 139c24 6 45 10 63 10s46 -5 103 -19c54 -13 89 -18 121 -18 c27 0 53 9 64 24l11 13'], + 0xE524: [718,232,570,77,645,'645 710l-19 -50l-68 -27c-44 -21 -104 -60 -106 -102c-2 -36 24 -63 59 -71c8 -1 17 -3 32 -3h18l2 -18c-9 -10 -17 -38 -18 -44c-17 -4 -49 -4 -64 -4c-12 0 -48 5 -57 8c-17 5 -36 7 -52 8c-44 -3 -80 -26 -104 -68c-27 -47 -53 -141 -56 -199c-2 -55 33 -90 89 -90 c27 0 74 10 107 10c28 0 66 -7 83 -25c8 -9 13 -18 13 -26c-2 -35 -10 -66 -49 -117c-45 -60 -128 -124 -207 -124c-41 0 -78 17 -95 44c-10 14 -13 27 -15 53l74 40l21 -6c-1 -7 -2 -16 -2 -19c-2 -42 11 -66 57 -66c42 0 113 56 117 134c1 29 -13 45 -37 45 c-32 0 -117 -10 -153 -10c-88 0 -141 54 -137 136c3 72 35 167 71 213c23 28 64 57 127 88c37 19 65 31 88 38c-11 15 -17 31 -16 48c1 26 20 67 55 99c-37 1 -83 5 -139 11c-7 0 -12 1 -26 2l-29 -52l-34 3l59 139c25 6 48 10 67 10c20 0 49 -5 110 -19 c58 -13 97 -18 131 -18c29 0 56 9 69 24l11 13'], + 0xE525: [711,226,540,72,522,'519 9c6 -35 8 -85 -25 -130c-40 -57 -110 -105 -174 -105c-52 0 -101 35 -109 78c-1 5 -2 11 -2 18l48 34l12 -4c1 -9 1 -17 2 -22c7 -35 43 -62 83 -62c51 0 100 39 114 110c0 8 0 14 -1 21c-7 34 -30 52 -69 52c-34 0 -126 -10 -152 -10c-92 0 -150 51 -168 147 c-17 90 8 173 56 250c47 76 104 153 174 214l33 27h-5c-24 0 -54 3 -94 10c-24 4 -37 5 -53 5c-15 0 -25 -1 -43 -5l-24 -58h-24l14 122c26 7 48 10 67 10c16 0 40 -4 73 -11l22 -5c57 -13 119 -21 157 -21c16 0 27 4 37 14l22 23l12 -9l-1 -32l-32 -11 c-50 -18 -96 -45 -134 -78c-115 -102 -204 -271 -175 -422c16 -79 55 -119 119 -119c38 0 115 10 148 10c24 0 58 -2 77 -18c8 -6 13 -14 15 -23'], + 0xE526: [711,226,598,86,570,'566 9c7 -35 9 -85 -26 -130c-44 -57 -119 -105 -187 -105c-56 0 -108 35 -117 78c-1 5 -2 11 -3 18l52 34l14 -4c0 -9 1 -17 2 -22c7 -35 46 -62 89 -62c54 0 107 39 122 110c-1 8 -1 14 -2 21c-7 34 -32 52 -73 52c-37 0 -136 -10 -164 -10c-98 0 -160 51 -180 147 c-19 90 8 173 60 250c51 76 111 153 187 214l35 27h-5c-26 0 -58 3 -101 10c-26 4 -39 5 -57 5c-16 0 -26 -1 -47 -5l-24 -58h-26l14 122c28 7 52 10 73 10c17 0 42 -4 78 -11l23 -5c62 -13 128 -21 169 -21c18 0 29 4 39 14l24 23l13 -9l-1 -32l-35 -11 c-53 -18 -102 -45 -143 -78c-123 -102 -219 -271 -188 -422c17 -79 59 -119 128 -119c41 0 123 10 159 10c26 0 62 -2 82 -18c9 -6 14 -14 16 -23'], + 0xE527: [711,226,515,61,597,'597 702l-8 -32l-33 -11c-51 -18 -102 -45 -146 -78c-132 -102 -256 -271 -264 -422c-3 -79 25 -119 86 -119c36 0 112 10 143 10c23 0 55 -2 69 -18c7 -6 9 -14 9 -23c-2 -35 -12 -85 -53 -130c-52 -57 -130 -105 -191 -105c-49 0 -87 35 -85 78c0 5 0 11 2 18l54 34 l10 -4c-1 -9 -3 -17 -3 -22c-2 -35 26 -62 65 -62c48 0 104 39 134 110c1 8 3 14 3 21c2 34 -16 52 -53 52c-33 0 -123 -10 -148 -10c-87 0 -130 51 -126 147c5 90 48 173 112 250c63 76 134 153 215 214l38 27h-5c-22 0 -51 3 -87 10c-22 4 -34 5 -49 5 c-14 0 -24 -1 -43 -5l-36 -58h-22l40 122c27 7 49 10 67 10c16 0 37 -4 68 -11l19 -5c52 -13 108 -21 145 -21c15 0 26 4 38 14l26 23'], + 0xE528: [711,226,571,75,650,'650 702l-8 -32l-36 -11c-55 -18 -109 -45 -156 -78c-143 -102 -276 -271 -284 -422c-4 -79 27 -119 92 -119c39 0 120 10 154 10c25 0 59 -2 74 -18c7 -6 10 -14 9 -23c-1 -35 -12 -85 -57 -130c-55 -57 -139 -105 -204 -105c-53 0 -94 35 -92 78c0 5 1 11 2 18l58 34 l12 -4c-2 -9 -4 -17 -4 -22c-2 -35 28 -62 69 -62c52 0 112 39 144 110c2 8 3 14 4 21c1 34 -17 52 -57 52c-35 0 -132 -10 -159 -10c-93 0 -140 51 -135 147c5 90 52 173 120 250c67 76 144 153 231 214l40 27h-4c-25 0 -55 3 -95 10c-23 4 -36 5 -52 5 c-15 0 -26 -1 -46 -5l-38 -58h-25l44 122c29 7 52 10 72 10c17 0 40 -4 72 -11l21 -5c55 -13 116 -21 156 -21c16 0 28 4 40 14l28 23'], + 0xE529: [718,232,555,59,519,'516 9c7 -35 7 -66 -19 -117c-29 -60 -95 -124 -172 -124c-40 0 -81 17 -103 44c-14 14 -20 27 -28 53l63 40l22 -6c0 -7 2 -16 2 -19c9 -42 27 -66 72 -66c41 0 97 56 82 134c-6 29 -24 45 -47 45c-32 0 -113 -10 -148 -10c-86 0 -150 54 -167 136c-17 86 -4 193 40 271 c42 72 97 152 162 215c-36 1 -84 5 -141 11c-7 0 -11 1 -25 2l-16 -52l-34 3l24 139c22 6 45 10 63 10c19 0 49 -5 112 -19c60 -13 99 -18 132 -18c29 0 53 9 62 24l7 13l25 -8l-6 -50c-45 -18 -114 -52 -153 -85c-101 -98 -155 -286 -126 -435c11 -55 54 -90 109 -90 c26 0 70 10 102 10c28 0 67 -7 87 -25c10 -9 18 -18 19 -26'], + 0xE52A: [718,232,614,72,567,'564 9c7 -35 6 -66 -21 -117c-31 -60 -102 -124 -185 -124c-43 0 -87 17 -111 44c-14 14 -20 27 -30 53l68 40l23 -6c1 -7 2 -16 3 -19c9 -42 29 -66 77 -66c44 0 105 56 88 134c-6 29 -26 45 -50 45c-35 0 -121 -10 -159 -10c-92 0 -162 54 -179 136 c-19 86 -5 193 42 271c45 72 104 152 174 215c-38 1 -89 5 -151 11c-7 0 -12 1 -27 2l-17 -52l-37 3l26 139c24 6 48 10 68 10c21 0 52 -5 121 -19c64 -13 105 -18 141 -18c31 0 57 9 66 24l8 13l27 -8l-7 -50c-48 -18 -123 -52 -163 -85c-110 -98 -168 -286 -136 -435 c12 -55 58 -90 117 -90c28 0 75 10 109 10c30 0 72 -7 94 -25c11 -9 19 -18 21 -26'], + 0xE52B: [718,232,530,53,582,'582 710l-17 -50c-47 -18 -121 -52 -165 -85c-120 -98 -215 -286 -221 -435c-2 -55 30 -90 83 -90c25 0 69 10 99 10c26 0 62 -7 78 -25c7 -9 12 -18 12 -26c-2 -35 -10 -66 -45 -117c-42 -60 -120 -124 -193 -124c-38 0 -73 17 -89 44c-9 14 -12 27 -14 53l69 40l20 -6 c-2 -7 -2 -16 -2 -19c-2 -42 10 -66 53 -66c39 0 106 56 109 134c1 29 -12 45 -34 45c-31 0 -110 -10 -143 -10c-82 0 -131 54 -128 136c4 86 41 193 101 271c56 72 127 152 204 215c-34 1 -78 5 -132 11c-6 0 -10 1 -24 2l-27 -52l-31 3l55 139c23 6 45 10 62 10 c19 0 46 -5 103 -19c54 -13 90 -18 121 -18c27 0 53 9 64 24l11 13'], + 0xE52C: [718,232,588,66,634,'634 710l-18 -50c-50 -18 -130 -52 -177 -85c-129 -98 -231 -286 -237 -435c-3 -55 32 -90 88 -90c27 0 74 10 107 10c28 0 66 -7 83 -25c8 -9 13 -18 13 -26c-1 -35 -10 -66 -48 -117c-45 -60 -129 -124 -207 -124c-41 0 -79 17 -95 44c-10 14 -13 27 -16 53l75 40 l21 -6c-2 -7 -2 -16 -2 -19c-2 -42 11 -66 56 -66c42 0 114 56 117 134c2 29 -13 45 -36 45c-33 0 -118 -10 -154 -10c-88 0 -140 54 -137 136c4 86 44 193 108 271c61 72 137 152 219 215c-36 1 -84 5 -141 11c-7 0 -11 1 -25 2l-30 -52l-33 3l58 139c25 6 49 10 68 10 c20 0 49 -5 110 -19c58 -13 96 -18 130 -18c29 0 57 9 69 24l11 13'], + 0xE52D: [733,9,643,66,564,'558 404c20 -123 -7 -259 -52 -326c-40 -57 -99 -87 -174 -87c-119 0 -229 86 -246 194c-8 62 11 125 53 171c37 39 80 57 137 57c58 0 103 -16 183 -66c-2 48 2 51 -2 80c-2 18 -5 34 -9 50l-23 72c-30 86 -65 113 -119 127c-8 3 -32 10 -49 10c-44 0 -101 -16 -120 -48 l-16 4l-55 60c22 26 157 31 183 31c13 0 31 -3 41 -7c8 -3 23 -11 42 -21c36 -19 99 -58 121 -75c27 -22 63 -101 67 -108c19 -38 32 -73 38 -118zM457 313c0 0 -10 9 -20 15c-44 28 -76 40 -109 40c-93 0 -154 -93 -137 -208c14 -86 58 -138 121 -138c51 0 95 33 117 86 c22 51 26 94 28 205'], + 0xE52E: [733,9,709,80,615,'608 404c21 -123 -7 -259 -56 -326c-43 -57 -106 -87 -187 -87c-128 0 -245 86 -264 194c-9 62 12 125 58 171c39 39 86 57 146 57c63 0 111 -16 197 -66c-2 48 2 51 -2 80c-2 18 -6 34 -9 50l-25 72c-33 86 -70 113 -128 127c-8 3 -34 10 -53 10 c-48 0 -108 -16 -129 -48l-17 4l-59 60c24 26 169 31 197 31c13 0 33 -3 44 -7c9 -3 25 -11 44 -21c40 -19 107 -58 130 -75c30 -22 68 -101 73 -108c20 -38 34 -73 40 -118zM500 313c0 0 -11 9 -22 15c-46 28 -81 40 -116 40c-100 0 -166 -93 -148 -208 c15 -86 63 -138 130 -138c54 0 102 33 126 86c23 51 28 94 30 205'], + 0xE52F: [733,9,614,80,583,'582 404c-10 -123 -66 -259 -126 -326c-51 -57 -113 -87 -185 -87c-114 0 -198 86 -190 194c7 62 40 125 91 171c44 39 90 57 143 57c56 0 94 -16 159 -66c10 48 14 51 18 80c2 18 2 34 2 50l-5 72c-9 86 -36 113 -84 127c-7 3 -28 10 -44 10c-43 0 -100 -16 -126 -48 l-14 4l-39 60c27 26 157 31 182 31c12 0 29 -3 38 -7c7 -3 19 -11 34 -21c31 -19 81 -58 98 -75c21 -22 37 -101 39 -108c9 -38 14 -73 9 -118zM465 313c0 0 -8 9 -16 15c-35 28 -63 40 -94 40c-89 0 -169 -93 -179 -208c-7 -86 23 -138 83 -138c48 0 98 33 131 86 c33 51 47 94 75 205'], + 0xE530: [733,9,678,95,635,'634 404c-11 -123 -71 -259 -135 -326c-55 -57 -122 -87 -199 -87c-122 0 -213 86 -204 194c8 62 43 125 98 171c47 39 96 57 153 57c60 0 102 -16 171 -66c11 48 15 51 19 80c2 18 2 34 3 50l-6 72c-10 86 -38 113 -90 127c-7 3 -30 10 -47 10c-46 0 -107 -16 -135 -48 l-16 4l-41 60c29 26 168 31 195 31c13 0 31 -3 40 -7c8 -3 21 -11 37 -21c33 -19 88 -58 106 -75c22 -22 39 -101 42 -108c9 -38 14 -73 9 -118zM509 313c0 0 -9 9 -18 15c-37 28 -67 40 -101 40c-95 0 -181 -93 -192 -208c-7 -86 25 -138 90 -138c51 0 105 33 140 86 c35 51 51 94 81 205'], + 0xE531: [740,17,642,62,568,'562 403c19 -122 -4 -260 -48 -331c-35 -58 -94 -89 -173 -89c-120 0 -231 89 -249 201c-9 61 10 126 51 175c33 41 78 60 138 60c52 0 91 -13 149 -47c2 22 2 32 -1 55c-2 18 -5 34 -8 50l-23 71c-31 86 -58 112 -102 124c-6 3 -24 9 -35 9c-36 0 -82 -18 -101 -55 l-39 14l-59 63c25 31 162 37 188 37c14 0 35 -2 45 -7c11 -5 26 -13 42 -21c38 -22 92 -61 112 -77c26 -19 38 -30 76 -110c21 -41 30 -78 37 -122zM432 312c-2 2 -8 8 -10 11c-40 26 -65 38 -89 38c-76 0 -124 -89 -107 -203c15 -81 50 -132 95 -132c38 0 72 32 91 83 c17 48 20 91 20 203'], + 0xE532: [740,17,708,75,619,'612 403c21 -122 -4 -260 -51 -331c-37 -58 -101 -89 -186 -89c-129 0 -248 89 -267 201c-9 61 10 126 55 175c35 41 83 60 148 60c55 0 97 -13 160 -47c2 22 2 32 -1 55c-3 18 -5 34 -9 50l-25 71c-33 86 -62 112 -109 124c-6 3 -26 9 -38 9c-38 0 -87 -18 -108 -55 l-42 14l-64 63c27 31 175 37 203 37c15 0 37 -2 48 -7c12 -5 28 -13 45 -21c41 -22 99 -61 121 -77c27 -19 40 -30 81 -110c22 -41 32 -78 39 -122zM473 312l-11 11c-43 26 -70 38 -96 38c-81 0 -132 -89 -114 -203c16 -81 53 -132 102 -132c41 0 78 32 97 83 c19 48 22 91 22 203'], + 0xE533: [740,17,613,87,587,'585 403c-10 -122 -63 -260 -122 -331c-46 -58 -110 -89 -186 -89c-114 0 -199 89 -189 201c5 61 37 126 88 175c41 41 88 60 146 60c49 0 83 -13 131 -47c7 22 9 32 11 55c2 18 4 34 4 50l-5 71c-10 86 -30 112 -68 124c-5 3 -21 9 -32 9c-34 0 -82 -18 -109 -55l-34 14 l-42 63c31 31 164 37 189 37c13 0 32 -2 41 -7s22 -13 35 -21c31 -22 73 -61 89 -77c20 -19 29 -30 47 -110c10 -41 10 -78 6 -122zM441 312c-2 2 -6 8 -7 11c-32 26 -54 38 -77 38c-72 0 -138 -89 -148 -203c-5 -81 16 -132 60 -132c36 0 76 32 105 83c28 48 41 91 67 203'], + 0xE534: [740,17,676,102,639,'637 403c-10 -122 -68 -260 -131 -331c-50 -58 -118 -89 -199 -89c-123 0 -214 89 -204 201c6 61 41 126 95 175c44 41 95 60 157 60c52 0 89 -13 140 -47c8 22 10 32 13 55c2 18 3 34 4 50l-6 71c-10 86 -32 112 -73 124c-5 3 -23 9 -34 9c-36 0 -88 -18 -117 -55 l-36 14l-45 63c33 31 175 37 202 37c14 0 35 -2 44 -7c10 -5 23 -13 38 -21c33 -22 78 -61 95 -77c21 -19 32 -30 50 -110c11 -41 11 -78 7 -122zM483 312c-2 2 -7 8 -8 11c-35 26 -58 38 -82 38c-77 0 -149 -89 -159 -203c-5 -81 17 -132 64 -132c39 0 82 32 113 83 c29 48 44 91 72 203'], + 0xE535: [709,20,946,71,880,'880 371c0 -222 -183 -391 -423 -391c-227 0 -386 148 -386 361c0 222 166 368 418 368c236 0 391 -134 391 -338zM762 372c-11 189 -119 295 -300 295c-174 0 -274 -106 -274 -290v-5h574zM763 330h-573c16 -187 134 -308 304 -308c168 0 267 114 269 308'], + 0xE536: [709,20,1034,86,954,'954 371c0 -222 -197 -391 -454 -391c-244 0 -414 148 -414 361c0 222 177 368 448 368c254 0 420 -134 420 -338zM827 372c-12 189 -127 295 -321 295c-188 0 -295 -106 -295 -290v-5h616zM828 330h-615c18 -187 144 -308 326 -308c181 0 287 114 289 308'], + 0xE537: [695,17,926,61,868,'868 346c0 -228 -154 -363 -414 -363c-250 0 -393 127 -393 349c0 230 154 363 419 363c245 0 388 -129 388 -349zM704 324v4h-479c5 -104 37 -187 92 -237c40 -36 84 -52 144 -52c159 0 243 98 243 285zM702 378c-9 90 -41 164 -91 210c-40 35 -83 51 -146 51 c-65 0 -124 -20 -164 -57c-46 -42 -72 -112 -76 -204h477'], + 0xE538: [695,17,1012,75,941,'941 346c0 -228 -165 -363 -445 -363c-268 0 -421 127 -421 349c0 230 165 363 449 363c264 0 417 -129 417 -349zM765 324v4h-514c5 -104 40 -187 99 -237c42 -36 90 -52 154 -52c171 0 261 98 261 285zM762 378c-9 90 -43 164 -97 210c-42 35 -89 51 -157 51 c-69 0 -132 -20 -176 -57c-49 -42 -77 -112 -81 -204h511'], + 0xE539: [709,20,928,84,897,'890 371c-43 -222 -254 -391 -489 -391c-223 0 -350 148 -309 361c42 222 233 368 480 368c231 0 357 -134 318 -338zM775 372c25 189 -60 295 -237 295c-171 0 -290 -106 -325 -290l-1 -5h563zM768 330h-562c-20 -187 72 -308 239 -308c165 0 283 114 323 308'], + 0xE53A: [709,20,1015,99,972,'965 371c-46 -222 -274 -391 -526 -391c-238 0 -375 148 -331 361c46 222 250 368 515 368c249 0 384 -134 342 -338zM841 372c27 189 -64 295 -254 295c-184 0 -311 -106 -349 -290l-1 -5h604zM834 330h-604c-21 -187 78 -308 257 -308c177 0 304 114 347 308'], + 0xE53B: [695,17,907,71,882,'874 346c-44 -228 -221 -363 -476 -363c-245 0 -360 127 -318 349c45 230 221 363 480 363c241 0 356 -129 314 -349zM710 328h-470c-15 -104 1 -187 45 -237c32 -36 72 -52 131 -52c156 0 257 98 293 285zM717 378c8 90 -9 164 -49 210c-32 35 -71 51 -133 51 c-63 0 -125 -20 -172 -57c-53 -42 -92 -112 -113 -204h467'], + 0xE53C: [695,17,992,86,956,'947 346c-47 -228 -237 -363 -511 -363c-262 0 -386 127 -340 349c47 230 236 363 515 363c258 0 381 -129 336 -349zM771 328h-504c-16 -104 0 -187 48 -237c34 -36 78 -52 141 -52c167 0 276 98 314 285zM779 378c9 90 -9 164 -53 210c-34 35 -76 51 -143 51 s-134 -20 -184 -57c-57 -42 -99 -112 -121 -204h501'], + 0xE53D: [723,19,743,54,689,'689 576c-14 -14 -58 -17 -89 -20c38 -46 53 -87 53 -124c0 -58 -51 -137 -105 -186l65 -66c25 -28 46 -53 51 -81l-61 -118c-5 28 -9 59 -35 85l-347 347c-29 -33 -39 -73 -39 -115c0 -71 36 -151 86 -206v-106c-15 19 -66 23 -102 24c-35 1 -98 -5 -112 -20v109 c15 9 54 16 91 18c-39 47 -50 93 -50 137c0 58 40 134 105 183c-47 52 -58 47 -80 87c-25 28 -46 53 -50 81l49 118c4 -27 19 -58 46 -85l357 -366c25 30 55 67 55 106c0 73 -47 144 -102 203v106c16 -19 67 -23 103 -24c35 -1 98 5 111 20v-107'], + 0xE53E: [723,19,816,67,749,'749 576c-15 -14 -62 -17 -96 -20c41 -46 57 -87 57 -124c0 -58 -55 -137 -112 -186l69 -66c27 -28 49 -53 55 -81l-66 -118c-5 28 -9 59 -37 85l-372 347c-32 -33 -42 -73 -42 -115c0 -71 38 -151 92 -206c1 -42 0 -106 0 -106c-16 19 -71 23 -110 24 c-37 1 -105 -5 -120 -20v109c16 9 58 16 98 18c-42 47 -54 93 -54 137c0 58 44 134 113 183c-51 52 -62 47 -86 87c-27 28 -49 53 -54 81l53 118c5 -27 20 -58 49 -85l384 -366c27 30 58 67 58 106c0 73 -50 144 -108 203c-2 42 0 106 0 106c16 -19 71 -23 110 -24 c37 -1 105 5 119 20v-107'], + 0xE53F: [729,29,622,54,568,'568 27c-8 -22 -24 -28 -45 -28h-425c-19 0 -36 -6 -44 -28v118c8 21 25 27 44 28h385c10 72 27 177 27 265c0 80 -16 145 -53 160c-38 17 -142 26 -201 26c-63 0 -109 0 -135 11c-21 9 -26 17 -33 32v118c8 -22 21 -25 33 -32c21 -12 72 -11 135 -11 c59 0 177 -7 213 -26c64 -34 89 -110 90 -200c3 -113 -31 -246 -53 -343c38 0 53 3 62 27v-117'], + 0xE540: [729,29,686,67,619,'619 27c-8 -22 -26 -28 -48 -28h-456c-21 0 -39 -6 -48 -28v118c9 21 27 27 48 28h413c10 72 29 177 29 265c0 80 -18 145 -57 160c-41 17 -152 26 -216 26c-67 0 -117 0 -145 11c-22 9 -28 17 -35 32v118c8 -22 22 -25 35 -32c23 -12 78 -11 145 -11 c64 0 190 -7 229 -26c69 -34 96 -110 97 -200c2 -113 -34 -246 -58 -343c41 0 58 3 67 27v-117'], + 0xE541: [740,18,553,54,498,'498 81c5 -39 -11 -62 -32 -96c-72 56 -112 187 -121 279c-24 -85 -68 -234 -128 -255c-15 -5 -22 -6 -32 -6c-16 0 -22 7 -54 8c-27 2 -59 -6 -77 -29v128c18 23 50 31 77 28c32 -1 39 -9 53 -9c6 0 18 1 33 7c65 24 100 119 122 191c-3 76 -14 172 -41 188 c-67 37 -108 6 -167 38c-21 12 -33 26 -41 49v138c8 -23 20 -48 41 -59c59 -33 124 1 177 -49c62 -57 54 -313 76 -444c7 -50 77 -114 114 -107'], + 0xE542: [740,18,612,67,544,'544 81c5 -39 -12 -62 -35 -96c-77 56 -119 187 -130 279c-26 -85 -72 -234 -137 -255c-16 -5 -23 -6 -34 -6c-17 0 -24 7 -58 8c-29 2 -63 -6 -83 -29v128c20 23 54 31 83 28c34 -1 42 -9 57 -9c6 0 19 1 35 7c70 24 108 119 131 191c-3 76 -15 172 -44 188 c-71 37 -116 6 -179 38c-22 12 -35 26 -45 49v138c10 -23 23 -48 45 -59c63 -33 133 1 189 -49c67 -57 59 -313 82 -444c8 -50 83 -114 123 -107'], + 0xE543: [719,16,589,54,535,'535 544c-8 24 -23 27 -62 27c16 -91 30 -214 30 -327c0 -112 -20 -216 -77 -260c-16 22 -42 76 -32 98c51 21 63 166 63 288l-6 202h-353c-19 0 -36 6 -44 27v120c8 -22 25 -28 44 -28h393c20 0 37 -6 44 -28v-119'], + 0xE544: [719,16,651,67,584,'584 544c-9 24 -25 27 -67 27c17 -91 32 -214 32 -327c0 -112 -21 -216 -82 -260c-18 22 -46 76 -35 98c55 21 68 166 68 288c0 74 -4 147 -6 202h-379c-21 0 -39 6 -48 27v120c9 -22 27 -28 48 -28h421c22 0 40 -6 48 -28v-119'], + 0xE545: [503,0,268,94,175,'175 0h-81v503h81v-503'], + 0xE546: [503,191,257,-18,164,'164 -9c0 -65 -12 -111 -35 -139c-25 -29 -63 -43 -116 -43h-31v70h22c30 0 51 7 63 22c10 14 16 44 16 90v512h81v-512'], + 0xE547: [503,0,253,35,212,'212 503l-96 -503h-81l96 503h81'], + 0xE548: [503,191,238,-113,200,'200 503l-97 -512l-1 -2c-11 -57 -22 -97 -37 -118c-13 -20 -32 -36 -57 -46c-26 -11 -56 -16 -90 -16h-31l13 70h21c32 0 54 6 68 20c13 14 24 44 33 92l97 512h81'], + 0xE549: [503,0,324,84,241,'241 0h-157v503h157v-503'], + 0xE54A: [503,199,313,-33,230,'230 9c0 -67 -16 -118 -48 -154c-31 -35 -77 -54 -138 -54h-77v106h27c30 0 50 7 61 20c12 15 17 42 17 82v494h158v-494'], + 0xE54B: [503,0,310,31,285,'285 503l-97 -503h-157l95 503h159'], + 0xE54C: [503,199,294,-128,269,'269 503l-95 -494c-13 -71 -38 -123 -75 -156c-37 -34 -87 -52 -149 -52h-78l20 106h28c29 0 51 7 64 20c14 14 25 41 32 82l94 494h159'], + 0xE54D: [489,0,442,80,362,'362 0h-282v44l46 3c16 1 16 9 16 50v296c0 15 -6 27 -19 25l-36 -6l-7 44l220 33v-392c0 -41 1 -49 16 -50l46 -3v-44zM259 44c-2 13 -3 30 -3 53v340l-74 -10c3 -10 4 -22 4 -34v-296c0 -23 -1 -40 -3 -53h76'], + 0xE54E: [489,272,446,80,362,'362 489l-2 -508c0 -85 -40 -123 -77 -172c-43 -56 -52 -81 -187 -81l-16 61l37 21c7 -8 40 -35 54 -35c28 0 32 36 32 217v401c0 15 -1 28 -19 25l-36 -6l-7 44zM317 437l-74 -10c3 -10 4 -22 4 -34l-1 -400c0 -77 -1 -134 -6 -168c14 21 76 71 76 156'], + 0xE54F: [390,8,244,30,298,'298 215l-38 -75c-47 -89 -101 -148 -174 -148c-44 0 -56 34 -56 76c0 30 5 59 23 147l-14 7c29 58 52 117 57 152h-23l2 16h81c9 0 16 -4 16 -9c-30 -100 -69 -303 -69 -332c0 -18 5 -26 19 -26c21 0 74 28 124 125l37 74'], + 0xE550: [390,398,215,-309,268,'268 215c-53 -89 -113 -153 -174 -201l-52 -266c-26 -135 -162 -146 -198 -146c-120 0 -153 99 -153 141c0 120 152 136 317 234l45 238l-14 7c29 58 48 117 53 152h-19l2 16h81c9 0 16 -4 16 -9c-17 -56 -12 -22 -38 -153l-36 -189c55 46 110 104 157 183zM4 -46 c-154 -88 -290 -106 -290 -211c0 -26 21 -117 130 -117c31 0 97 3 114 93'], + 0xE551: [393,10,270,34,328,'328 216l-39 -77c-47 -90 -103 -149 -177 -149c-60 0 -78 59 -78 117c0 18 2 36 5 53l12 53l-16 8l1 3c29 54 51 113 58 148h-37l3 21h122c9 0 18 -4 18 -12c-17 -57 -26 -94 -52 -225c-10 -52 -17 -86 -17 -107c0 -19 7 -23 17 -23c20 0 72 25 121 124l39 76'], + 0xE552: [393,400,228,-312,285,'285 216l-2 -3c-48 -80 -104 -139 -159 -186l-54 -279c-26 -138 -166 -148 -226 -148c-121 0 -156 100 -156 143c0 120 152 139 316 230l47 240l-16 8l1 3c29 54 49 113 54 148h-20l3 21h109c9 0 18 -4 18 -12v-1c-17 -56 -11 -21 -37 -152l-33 -168c48 41 95 95 135 164 l2 2zM-1 -56c-151 -82 -282 -101 -282 -201c0 -25 19 -115 127 -115c30 0 95 3 112 91'], + 0xE553: [475,21,279,14,268,'268 83c-39 -37 -81 -72 -123 -104l-54 76c3 53 3 93 3 139l-4 173l-21 24c-11 -4 -29 -12 -42 -22l-13 13c34 28 71 61 105 93c19 -20 38 -39 60 -55c-7 -60 -8 -120 -8 -181c0 -39 1 -79 5 -111c2 -19 19 -40 32 -53c4 0 10 1 13 3c15 7 33 18 40 24'], + 0xE554: [475,202,280,-9,196,'196 422l-6 -396c-1 -25 -5 -51 -22 -70c-45 -55 -98 -107 -161 -158l-16 18c29 22 58 45 83 71c13 13 21 30 26 47c16 56 18 179 18 269c0 50 0 119 -10 149c-6 17 -25 37 -32 37l-8 -3l-29 -19l-14 13l106 95c22 -16 43 -34 65 -53'], + 0xE555: [478,26,331,2,327,'327 87c-57 -34 -110 -74 -162 -113l-73 82c7 58 10 117 10 176c0 45 -2 89 -5 134l-38 21l-39 -17l-18 12c47 31 93 61 136 96c13 -10 54 -38 82 -56c-3 -56 -5 -112 -5 -169l3 -115c0 -10 5 -20 12 -29c8 -11 20 -27 31 -27c5 0 15 3 17 4l44 19'], + 0xE556: [483,207,331,-19,238,'238 256c0 -95 -6 -191 -25 -285c-62 -61 -142 -127 -216 -178l-16 18c34 21 70 46 95 71c27 27 37 64 40 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -4 30 -16 41c-8 7 -19 12 -31 12l-38 -17l-15 19l130 101c28 -21 55 -39 85 -58c3 -56 5 -112 5 -169'], + 0xE557: [425,0,350,52,303,'303 20c0 -20 -19 -20 -27 -20h-195c-8 0 -29 0 -29 20s21 20 29 20h80v345h-75c-9 0 -28 0 -28 20s19 20 28 20h92c20 0 28 -5 28 -32v-353h70c8 0 27 0 27 -20'], + 0xE558: [425,235,350,28,247,'247 -55c0 -74 -27 -118 -34 -128c-35 -52 -63 -52 -89 -52s-96 0 -96 64c0 25 18 34 28 34c23 0 27 -31 27 -53c12 -4 29 -5 43 -5c17 0 37 0 56 36c20 39 20 91 20 109v435h-86c-10 0 -28 0 -28 20s20 20 28 20h103c20 0 28 -5 28 -32v-448'], + 0xE559: [650,150,486,80,406,'406 650l-275 -800c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0xE55A: [650,150,740,80,660,'660 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3l-520 800c10 -2 20 -3 30 -3s20 1 30 3'], + 0xE55B: [650,150,486,80,406,'406 650l-275 -800c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0xE55C: [650,150,743,80,663,'663 -150c-10 2 -21 3 -31 3c-11 0 -22 -1 -32 -3l-520 800c10 -2 21 -3 32 -3c10 0 21 1 31 3'], + 0xE55D: [650,150,486,80,406,'406 650l-275 -800c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0xE55E: [650,150,747,80,667,'667 -150c-11 2 -22 3 -34 3c-11 0 -22 -1 -33 -3l-520 800c11 -2 22 -3 33 -3c12 0 23 1 34 3'], + 0xE55F: [650,150,486,80,406,'406 650l-275 -800c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0xE560: [650,150,749,80,669,'669 -150c-11 2 -23 3 -34 3c-12 0 -24 -1 -35 -3l-520 800c11 -2 23 -3 35 -3c11 0 23 1 34 3'], + 0xE561: [650,150,486,80,406,'406 650l-275 -800c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0xE562: [650,150,753,80,673,'673 -150c-12 2 -24 3 -37 3c-12 0 -24 -1 -36 -3l-520 800c12 -2 24 -3 36 -3c13 0 25 1 37 3'], + 0xE563: [650,150,486,80,406,'406 650l-275 -800c-9 2 -17 3 -26 3c-8 0 -17 -1 -25 -3l275 800c8 -2 17 -3 25 -3c9 0 17 1 26 3'], + 0xE564: [650,150,756,80,676,'676 -150c-12 2 -25 3 -38 3s-25 -1 -38 -3l-520 800c13 -2 25 -3 38 -3s26 1 38 3'], + 0xE565: [540,-103,379,70,309,'309 523l-163 -398l-55 -22l-21 14l103 384l117 39'], + 0xE566: [540,-103,379,70,309,'309 117l-21 -14l-55 22l-163 398l19 17l117 -39'], + 0xE567: [540,-103,679,70,609,'309 523l-163 -398l-55 -22l-21 14l103 384l117 39zM609 523l-163 -398l-55 -22l-21 14l103 384l117 39'], + 0xE568: [540,-103,679,70,609,'309 117l-21 -14l-55 22l-163 398l19 17l117 -39zM609 117l-21 -14l-55 22l-163 398l19 17l117 -39'], + 0xE569: [540,-103,979,70,909,'309 523l-163 -398l-55 -22l-21 14l103 384l117 39zM609 523l-163 -398l-55 -22l-21 14l103 384l117 39zM909 523l-163 -398l-55 -22l-21 14l103 384l117 39'], + 0xE56A: [540,-103,979,70,909,'309 117l-21 -14l-55 22l-163 398l19 17l117 -39zM609 117l-21 -14l-55 22l-163 398l19 17l117 -39zM909 117l-21 -14l-55 22l-163 398l19 17l117 -39'], + 0xE56B: [540,-103,1279,70,1209,'309 523l-163 -398l-55 -22l-21 14l103 384l117 39zM609 523l-163 -398l-55 -22l-21 14l103 384l117 39zM909 523l-163 -398l-55 -22l-21 14l103 384l117 39zM1209 523l-163 -398l-55 -22l-21 14l103 384l117 39'], + 0xE56C: [844,344,653,80,573,'573 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39c-24 0 -49 9 -68 19c6 28 13 71 10 123h65 c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98c15 17 60 39 85 39c24 0 49 -9 68 -19'], + 0xE56D: [844,344,984,80,904,'573 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39c-24 0 -49 9 -68 19c6 28 13 71 10 123h65 c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98c15 17 60 39 85 39c24 0 49 -9 68 -19zM904 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413 c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39c-24 0 -49 9 -68 19c6 28 13 71 10 123h65c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98 c15 17 60 39 85 39c24 0 49 -9 68 -19'], + 0xE56E: [844,344,1315,80,1235,'573 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39c-24 0 -49 9 -68 19c6 28 13 71 10 123h65 c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98c15 17 60 39 85 39c24 0 49 -9 68 -19zM904 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413 c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39c-24 0 -49 9 -68 19c6 28 13 71 10 123h65c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98 c15 17 60 39 85 39c24 0 49 -9 68 -19zM1235 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39 c-24 0 -49 9 -68 19c6 28 13 71 10 123h65c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98c15 17 60 39 85 39c24 0 49 -9 68 -19'], + 0xE56F: [844,344,1646,80,1566,'573 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39c-24 0 -49 9 -68 19c6 28 13 71 10 123h65 c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98c15 17 60 39 85 39c24 0 49 -9 68 -19zM904 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413 c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39c-24 0 -49 9 -68 19c6 28 13 71 10 123h65c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98 c15 17 60 39 85 39c24 0 49 -9 68 -19zM1235 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39 c-24 0 -49 9 -68 19c6 28 13 71 10 123h65c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98c15 17 60 39 85 39c24 0 49 -9 68 -19zM1566 825c-6 -28 -13 -71 -10 -123h-64c-3 41 -4 70 -25 71 c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413c0 -135 0 -296 -30 -400c-7 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-16 -17 -61 -39 -86 -39c-24 0 -49 9 -68 19c6 28 13 71 10 123h65c2 -41 3 -70 25 -71c49 -2 76 32 90 110c13 67 13 275 13 413 c0 135 0 296 30 400c6 23 10 43 21 57c32 40 54 63 86 98c15 17 60 39 85 39c24 0 49 -9 68 -19'], + 0xE570: [844,344,706,80,626,'626 250c0 -165 -83 -259 -237 -272c-4 -47 -11 -91 -22 -128c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19c7 28 13 71 10 123h65c2 -41 3 -70 25 -71c50 -2 77 32 91 110c5 28 8 81 10 142c-148 16 -227 110 -227 271 c0 165 83 259 237 272c4 47 11 91 22 128c6 23 11 43 22 57c31 40 54 63 85 98c15 17 61 39 85 39s49 -9 69 -19c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71c-50 2 -77 -32 -91 -110c-5 -28 -8 -81 -10 -142c148 -16 227 -110 227 -271zM574 250 c0 128 -61 203 -176 218l-1 -218c0 -70 0 -146 -4 -219c118 14 181 89 181 219zM313 469c-118 -14 -181 -89 -181 -219c0 -128 61 -203 176 -218l1 218c0 70 0 146 4 219'], + 0xE571: [844,344,1037,80,957,'957 250c0 -126 -80 -213 -235 -252c-5 -55 -12 -106 -24 -148c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19c7 28 13 71 10 123h65c2 -41 3 -70 25 -71c50 -2 77 32 91 110c5 29 8 83 10 147c-37 -5 -77 -7 -119 -7 c-47 0 -90 3 -129 8c-5 -50 -12 -97 -23 -135c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19c7 28 13 71 10 123h65c2 -41 3 -70 25 -71c50 -2 77 32 91 110c5 31 8 93 10 164c-150 39 -227 125 -227 249c0 126 80 213 235 252 c5 55 12 106 24 148c6 23 11 43 22 57c31 40 54 63 85 98c15 17 61 39 85 39s49 -9 69 -19c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71c-50 2 -77 -32 -91 -110c-5 -29 -8 -83 -10 -147c37 5 77 7 120 7c46 0 89 -3 128 -8c5 50 12 97 23 135c6 23 11 43 22 57 c31 40 54 63 85 98c15 17 61 39 85 39s49 -9 69 -19c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71c-50 2 -77 -32 -91 -110c-5 -31 -8 -93 -10 -164c150 -39 227 -125 227 -249zM905 250c0 99 -61 164 -176 197l-1 -197l-3 -198c117 32 180 98 180 198zM312 448 c-117 -32 -180 -98 -180 -198c0 -99 61 -164 176 -197l1 197zM644 464c-38 5 -80 7 -125 7c-44 0 -84 -2 -121 -7l-1 -214c0 -68 0 -143 -4 -214c38 -5 80 -7 126 -7c43 0 83 2 120 7l1 214c0 68 0 143 4 214'], + 0xE572: [844,344,1368,80,1288,'1288 250c0 -90 -55 -161 -164 -208c-21 -9 -44 -17 -70 -24c-4 -63 -11 -121 -25 -168c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19c7 28 13 71 10 123h65c2 -41 3 -70 25 -71c50 -2 77 32 91 110c5 31 8 92 10 162 c-71 -13 -154 -20 -249 -22c-5 -47 -11 -91 -22 -127c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19c7 28 13 71 10 123h65c2 -41 3 -70 25 -71c50 -2 77 32 91 110c5 28 8 79 10 140c-94 2 -177 10 -247 23 c-5 -56 -12 -108 -24 -150c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19c7 28 13 71 10 123h65c2 -41 3 -70 25 -71c50 -2 77 32 91 110c6 34 9 104 11 183c-23 7 -45 14 -64 22c-109 47 -164 118 -164 208s55 161 164 208 c21 9 44 17 70 24c4 63 11 121 25 168c6 23 11 43 22 57c31 40 54 63 85 98c15 17 61 39 85 39s49 -9 69 -19c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71c-50 2 -77 -32 -91 -110c-5 -31 -8 -92 -10 -162c71 13 154 20 249 22c5 47 11 91 22 127c6 23 11 43 22 57 c31 40 54 63 85 98c15 17 61 39 85 39s49 -9 69 -19c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71c-50 2 -77 -32 -91 -110c-5 -28 -8 -79 -10 -140c94 -2 177 -10 247 -23c5 56 12 108 24 150c6 23 11 43 22 57c31 40 54 63 85 98c15 17 61 39 85 39s49 -9 69 -19 c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71c-50 2 -77 -32 -91 -110c-6 -34 -9 -104 -11 -183c23 -7 45 -14 64 -22c109 -47 164 -118 164 -208zM1236 250c0 71 -47 123 -132 160c-14 6 -29 11 -44 16l-1 -176l-2 -177c16 5 32 11 47 17c85 37 132 89 132 160z M311 427c-16 -5 -32 -11 -47 -17c-85 -37 -132 -89 -132 -160s47 -123 132 -160c14 -6 29 -11 44 -16l1 176zM644 471c-94 -2 -176 -9 -246 -23l-1 -198l-3 -198c69 -13 151 -21 245 -23l1 221c0 70 0 148 4 221zM974 448c-69 13 -151 21 -245 23l-1 -221 c0 -70 0 -148 -4 -221c94 2 176 9 246 23l1 198'], + 0xE573: [844,344,747,80,707,'707 354c-37 -43 -70 -89 -97 -139c-43 37 -89 70 -139 97c0 12 -1 23 -3 34s-5 22 -9 33c39 -21 76 -46 111 -74c-16 95 -75 150 -172 163l-1 -218c0 -135 0 -296 -30 -400c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19 c7 28 13 71 10 123h65c2 -41 3 -70 25 -71c50 -2 77 32 91 110c12 67 12 275 12 413c0 70 0 146 4 219c-118 -14 -181 -89 -181 -219c-9 2 -17 3 -26 3s-17 -1 -26 -3c0 165 83 259 237 272c4 47 11 91 22 128c6 23 11 43 22 57c31 40 54 63 85 98c15 17 61 39 85 39 s49 -9 69 -19c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71c-50 2 -77 -32 -91 -110c-5 -28 -8 -81 -10 -142c125 -14 201 -83 221 -202c23 36 48 70 76 102c0 -12 0 -23 2 -34s5 -22 9 -33'], + 0xE574: [844,344,747,80,707,'707 146c-4 -11 -7 -22 -9 -33s-2 -22 -2 -34c-28 32 -53 66 -76 102c-21 -122 -100 -192 -231 -203c-4 -47 -11 -91 -22 -128c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19c7 28 13 71 10 123h65c2 -41 3 -70 25 -71 c50 -2 77 32 91 110c5 28 8 81 10 142c-148 16 -227 110 -227 271c9 -2 17 -3 26 -3s17 1 26 3c0 -128 61 -203 176 -218l1 218c0 135 0 296 30 400c6 23 11 43 22 57c31 40 54 63 85 98c15 17 61 39 85 39s49 -9 69 -19c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71 c-50 2 -77 -32 -91 -110c-12 -67 -12 -275 -12 -413c0 -70 0 -146 -4 -219c100 11 161 67 177 164c-35 -28 -72 -53 -111 -74c4 11 7 22 9 33s3 22 3 34c50 27 96 60 139 97c27 -50 60 -96 97 -139'], + 0xE575: [844,344,765,80,725,'725 355c-42 7 -84 18 -125 32c17 -38 26 -84 26 -137c0 -165 -83 -259 -237 -272c-4 -47 -11 -91 -22 -128c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19c7 28 13 71 10 123h65c2 -41 3 -70 25 -71c50 -2 77 32 91 110 c5 28 8 81 10 142c-148 16 -227 110 -227 271c0 165 83 259 237 272c4 47 11 91 22 128c6 23 11 43 22 57c31 40 54 63 85 98c15 17 61 39 85 39s49 -9 69 -19c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71c-50 2 -77 -32 -91 -110c-5 -28 -8 -81 -10 -142 c35 -4 66 -13 92 -25c-5 -7 -9 -14 -13 -22s-7 -17 -8 -25c-21 10 -45 16 -72 19l-1 -218c0 -70 0 -146 -4 -219c118 14 181 89 181 219c0 43 -7 80 -20 111c-9 -42 -22 -83 -38 -123c-4 11 -9 21 -14 31c-6 10 -12 19 -19 28c21 53 36 108 46 163c53 -21 107 -36 163 -46 c4 -11 9 -21 14 -31c6 -10 12 -20 19 -28zM313 469c-118 -14 -181 -89 -181 -219c0 -128 61 -203 176 -218l1 218c0 70 0 146 4 219'], + 0xE576: [844,344,710,80,670,'670 458c-26 -50 -46 -103 -61 -158c-50 25 -103 46 -158 60c-3 11 -7 22 -11 33c-5 10 -11 20 -17 29c42 -11 83 -25 123 -43c-29 51 -79 80 -148 89l-1 -218c0 -70 0 -146 -4 -219c118 14 181 89 181 219c9 -2 17 -3 26 -3s17 1 26 3c0 -165 -83 -259 -237 -272 c-4 -47 -11 -91 -22 -128c-6 -23 -11 -43 -22 -57c-31 -40 -54 -63 -85 -98c-15 -17 -61 -39 -85 -39s-49 9 -69 19c7 28 13 71 10 123h65c2 -41 3 -70 25 -71c50 -2 77 32 91 110c5 28 8 81 10 142c-148 16 -227 110 -227 271c0 165 83 259 237 272c4 47 11 91 22 128 c6 23 11 43 22 57c31 40 54 63 85 98c15 17 61 39 85 39s49 -9 69 -19c-7 -28 -13 -71 -10 -123h-65c-2 41 -3 70 -25 71c-50 2 -77 -32 -91 -110c-5 -28 -8 -81 -10 -142c93 -11 158 -52 194 -120c13 41 30 81 49 119c3 -11 7 -22 11 -32c5 -10 10 -20 17 -30zM313 469 c-118 -14 -181 -89 -181 -219c0 -128 61 -203 176 -218l1 218c0 70 0 146 4 219'], + 0xE577: [959,459,673,80,593,'593 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40c-25 0 -51 9 -71 20c7 28 13 73 10 127h68 c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103c16 18 63 40 89 40c25 0 51 -9 71 -20'], + 0xE578: [959,459,1017,80,937,'593 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40c-25 0 -51 9 -71 20c7 28 13 73 10 127h68 c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103c16 18 63 40 89 40c25 0 51 -9 71 -20zM937 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521 c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40c-25 0 -51 9 -71 20c7 28 13 73 10 127h68c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103 c16 18 63 40 89 40c25 0 51 -9 71 -20'], + 0xE579: [959,459,1361,80,1281,'593 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40c-25 0 -51 9 -71 20c7 28 13 73 10 127h68 c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103c16 18 63 40 89 40c25 0 51 -9 71 -20zM937 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521 c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40c-25 0 -51 9 -71 20c7 28 13 73 10 127h68c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103 c16 18 63 40 89 40c25 0 51 -9 71 -20zM1281 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40 c-25 0 -51 9 -71 20c7 28 13 73 10 127h68c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103c16 18 63 40 89 40c25 0 51 -9 71 -20'], + 0xE57A: [959,459,1705,80,1625,'593 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40c-25 0 -51 9 -71 20c7 28 13 73 10 127h68 c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103c16 18 63 40 89 40c25 0 51 -9 71 -20zM937 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521 c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40c-25 0 -51 9 -71 20c7 28 13 73 10 127h68c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103 c16 18 63 40 89 40c25 0 51 -9 71 -20zM1281 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40 c-25 0 -51 9 -71 20c7 28 13 73 10 127h68c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103c16 18 63 40 89 40c25 0 51 -9 71 -20zM1625 939c-7 -28 -14 -73 -10 -127h-68c-2 42 -3 72 -26 73 c-51 2 -79 -33 -94 -114c-15 -80 -15 -347 -15 -521c0 -170 0 -405 -29 -508c-7 -23 -11 -44 -22 -58c-33 -42 -57 -67 -89 -103c-16 -18 -63 -40 -89 -40c-25 0 -51 9 -71 20c7 28 13 73 10 127h68c2 -42 3 -72 25 -73c52 -2 80 33 95 114c14 80 14 347 14 521 c0 170 0 405 30 508c7 23 11 44 22 58c33 42 57 67 89 103c16 18 63 40 89 40c25 0 51 -9 71 -20'], + 0xE57B: [959,459,726,80,646,'646 250c0 -170 -85 -268 -243 -281c-3 -92 -11 -176 -25 -227c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73c52 -2 80 33 95 114c7 42 11 136 12 240 c-154 16 -237 113 -237 281c0 170 85 268 243 281c3 92 11 176 25 227c7 23 12 44 23 58c32 42 56 67 89 103c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114c-7 -42 -11 -136 -12 -240 c154 -16 237 -113 237 -281zM592 250c0 133 -64 211 -184 226l-1 -226l-2 -227c122 14 187 93 187 227zM321 477c-122 -14 -187 -93 -187 -227c0 -133 64 -211 184 -226l1 226'], + 0xE57C: [959,459,1070,80,990,'990 250c0 -130 -82 -220 -242 -260c-3 -100 -11 -193 -26 -248c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73c52 -2 80 33 95 114c7 43 11 139 13 245c-39 -5 -82 -7 -127 -7 c-47 0 -91 3 -132 8c-3 -95 -10 -181 -25 -233c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73c52 -2 80 33 95 114c8 45 11 149 13 262c-157 40 -238 130 -238 259 c0 130 82 220 242 260c3 100 11 193 26 248c7 23 12 44 23 58c32 42 56 67 89 103c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114c-7 -43 -11 -139 -13 -245c39 5 82 7 127 7c47 0 91 -3 132 -8 c3 95 10 181 25 233c7 23 12 44 23 58c32 42 56 67 89 103c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114c-8 -45 -11 -149 -13 -262c157 -40 238 -130 238 -259zM936 250c0 103 -64 171 -184 204l-1 -204 l-1 -205c121 33 186 101 186 205zM320 455c-121 -33 -186 -101 -186 -205c0 -103 64 -171 184 -204l1 204zM665 471c-39 5 -83 8 -130 8c-46 0 -89 -2 -127 -7l-1 -222l-2 -221c39 -5 83 -8 130 -8c46 0 89 2 127 7l1 222'], + 0xE57D: [959,459,1414,80,1334,'1334 250c0 -93 -57 -167 -170 -215c-22 -9 -45 -18 -71 -25c-3 -108 -11 -209 -27 -268c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73c52 -2 80 33 95 114 c8 45 11 148 13 261c-74 -13 -160 -21 -259 -23c-4 -91 -11 -174 -25 -225c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73c52 -2 80 33 95 114c7 42 11 135 12 238 c-98 2 -184 10 -257 24c-3 -101 -11 -194 -26 -249c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73c52 -2 80 33 95 114c8 48 12 161 13 282c-25 7 -47 15 -68 24 c-113 48 -170 122 -170 215s57 167 170 215c22 9 45 18 71 25c3 108 11 209 27 268c7 23 12 44 23 58c32 42 56 67 89 103c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114c-8 -45 -11 -148 -13 -261 c74 13 160 21 259 23c4 91 11 174 25 225c7 23 12 44 23 58c32 42 56 67 89 103c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114c-7 -42 -11 -135 -12 -238c98 -2 184 -10 257 -24c3 101 11 194 26 249 c7 23 12 44 23 58c32 42 56 67 89 103c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114c-8 -48 -12 -161 -13 -282c25 -7 47 -15 68 -24c113 -48 170 -122 170 -215zM1280 250c0 73 -48 128 -137 166 c-15 6 -31 12 -48 17v-183l-1 -183c17 5 34 11 49 17c89 38 137 93 137 166zM320 433c-17 -5 -34 -11 -49 -17c-89 -38 -137 -93 -137 -166s48 -128 137 -166c15 -6 31 -12 48 -17v183zM665 479c-99 -2 -185 -10 -257 -24l-1 -205l-1 -205c72 -14 158 -22 256 -24l1 229z M1008 455c-72 14 -158 22 -256 24l-1 -229l-2 -229c99 2 185 10 257 24l1 205'], + 0xE57E: [959,459,767,80,727,'727 353c-38 -43 -70 -89 -98 -139c-43 37 -89 70 -139 97c0 12 -1 23 -3 34s-5 22 -9 33c39 -21 76 -46 110 -73c-16 100 -78 159 -180 171l-1 -226c0 -170 0 -405 -29 -508c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40 c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73c52 -2 80 33 95 114c14 80 14 347 14 521l2 227c-122 -14 -187 -93 -187 -227c-9 2 -18 3 -27 3s-18 -1 -27 -3c0 170 85 268 243 281c3 92 11 176 25 227c7 23 12 44 23 58c32 42 56 67 89 103 c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114c-7 -42 -11 -136 -12 -240c131 -13 211 -86 232 -211c22 35 47 68 74 100c0 -12 1 -23 3 -34s5 -22 9 -33'], + 0xE57F: [959,459,767,80,727,'727 147c-4 -11 -7 -22 -9 -33s-3 -22 -3 -34c-27 32 -52 65 -74 100c-22 -126 -103 -199 -238 -211c-3 -92 -11 -176 -25 -227c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73 c52 -2 80 33 95 114c7 42 11 136 12 240c-154 16 -237 113 -237 281c9 -2 18 -3 27 -3s18 1 27 3c0 -133 64 -211 184 -226l1 226c0 170 0 405 29 508c7 23 12 44 23 58c32 42 56 67 89 103c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67 c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114c-14 -80 -14 -347 -14 -521l-2 -227c104 12 167 71 183 172c-34 -27 -71 -52 -110 -73c4 11 7 22 9 33s3 22 3 34c50 27 96 60 139 97c28 -50 60 -96 98 -139'], + 0xE580: [959,459,782,80,742,'742 362c-42 7 -84 18 -124 32c18 -40 28 -88 28 -144c0 -170 -85 -268 -243 -281c-3 -92 -11 -176 -25 -227c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73 c52 -2 80 33 95 114c7 42 11 136 12 240c-154 16 -237 113 -237 281c0 170 85 268 243 281c3 92 11 176 25 227c7 23 12 44 23 58c32 42 56 67 89 103c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114 c-7 -42 -11 -136 -12 -240c36 -4 69 -13 98 -26c-6 -7 -11 -15 -14 -23c-4 -8 -7 -17 -9 -26c-22 10 -48 17 -76 20l-1 -226l-2 -227c122 14 187 93 187 227c0 46 -7 85 -22 118c-9 -42 -22 -83 -38 -123c-4 11 -8 22 -14 32c-5 9 -12 19 -19 28c21 52 37 107 47 163 c52 -21 107 -37 163 -47c4 -10 8 -21 14 -31c5 -10 12 -19 19 -28zM321 477c-122 -14 -187 -93 -187 -227c0 -133 64 -211 184 -226l1 226'], + 0xE581: [959,459,729,80,689,'689 460c-26 -50 -46 -103 -60 -158c-51 25 -104 46 -159 60c-3 11 -6 22 -11 33c-5 10 -10 20 -17 29c42 -11 82 -25 122 -43c-30 55 -83 87 -156 95l-1 -226l-2 -227c122 14 187 93 187 227c9 -2 18 -3 27 -3s18 1 27 3c0 -170 -85 -268 -243 -281 c-3 -92 -11 -176 -25 -227c-7 -23 -12 -44 -23 -58c-32 -42 -56 -67 -89 -103c-15 -18 -63 -40 -89 -40c-24 0 -50 9 -70 20c6 28 13 73 10 127h67c2 -42 4 -72 26 -73c52 -2 80 33 95 114c7 42 11 136 12 240c-154 16 -237 113 -237 281c0 170 85 268 243 281 c3 92 11 176 25 227c7 23 12 44 23 58c32 42 56 67 89 103c15 18 63 40 89 40c24 0 50 -9 70 -20c-6 -28 -13 -73 -10 -127h-67c-2 42 -4 72 -26 73c-52 2 -80 -33 -95 -114c-7 -42 -11 -136 -12 -240c97 -10 166 -54 204 -127c13 41 29 80 48 118c3 -11 7 -22 12 -32 c4 -10 10 -20 16 -30zM321 477c-122 -14 -187 -93 -187 -227c0 -133 64 -211 184 -226l1 226'], + 0xE582: [1097,597,693,80,613,'613 1076c-7 -29 -14 -76 -10 -132h-70c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70 c2 -44 3 -75 27 -76c53 -2 83 34 98 118c15 82 15 434 15 652c0 214 0 530 31 638c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21'], + 0xE583: [1097,597,1051,80,971,'613 1076c-7 -29 -14 -76 -10 -132h-70c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70 c2 -44 3 -75 27 -76c53 -2 83 34 98 118c15 82 15 434 15 652c0 214 0 530 31 638c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21zM971 1076c-7 -29 -14 -76 -10 -132h-70c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118 c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 3 -75 27 -76c53 -2 83 34 98 118c15 82 15 434 15 652c0 214 0 530 31 638 c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21'], + 0xE584: [1097,597,1409,80,1329,'613 1076c-7 -29 -14 -76 -10 -132h-70c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70 c2 -44 3 -75 27 -76c53 -2 83 34 98 118c15 82 15 434 15 652c0 214 0 530 31 638c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21zM971 1076c-7 -29 -14 -76 -10 -132h-70c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118 c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 3 -75 27 -76c53 -2 83 34 98 118c15 82 15 434 15 652c0 214 0 530 31 638 c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21zM1329 1076c-7 -29 -14 -76 -10 -132h-70c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107 c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 3 -75 27 -76c53 -2 83 34 98 118c15 82 15 434 15 652c0 214 0 530 31 638c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21'], + 0xE585: [1097,597,1767,80,1687,'613 1076c-7 -29 -14 -76 -10 -132h-70c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70 c2 -44 3 -75 27 -76c53 -2 83 34 98 118c15 82 15 434 15 652c0 214 0 530 31 638c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21zM971 1076c-7 -29 -14 -76 -10 -132h-70c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118 c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 3 -75 27 -76c53 -2 83 34 98 118c15 82 15 434 15 652c0 214 0 530 31 638 c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21zM1329 1076c-7 -29 -14 -76 -10 -132h-70c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107 c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 3 -75 27 -76c53 -2 83 34 98 118c15 82 15 434 15 652c0 214 0 530 31 638c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21zM1687 1076c-7 -29 -14 -76 -10 -132h-70 c-3 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-15 -82 -15 -434 -15 -652c0 -214 0 -530 -31 -638c-7 -24 -12 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 3 -75 27 -76c53 -2 83 34 98 118 c15 82 15 434 15 652c0 214 0 530 31 638c7 24 11 45 23 60c34 44 58 69 92 107c17 19 66 42 93 42c25 0 52 -9 73 -21'], + 0xE586: [1097,597,750,80,670,'670 250c0 -177 -88 -278 -251 -293c-3 -145 -11 -281 -29 -345c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 4 -75 27 -76c54 -2 83 34 98 118c9 50 13 200 14 359 c-162 16 -248 118 -248 293c0 177 88 278 251 293c3 145 11 281 29 345c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-9 -50 -13 -200 -14 -359 c162 -16 248 -118 248 -293zM614 250c0 139 -67 221 -193 236v-236l-1 -236c126 15 194 96 194 236zM330 486c-126 -15 -194 -96 -194 -236c0 -139 67 -221 193 -236v236'], + 0xE587: [1097,597,1108,80,1028,'1028 250c0 -135 -85 -229 -251 -271c-2 -153 -10 -300 -29 -367c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 4 -75 27 -76c54 -2 83 34 98 118c9 51 13 204 14 364 c-40 -4 -84 -7 -132 -7c-49 0 -94 3 -135 8c-3 -147 -10 -286 -29 -351c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 4 -75 27 -76c54 -2 83 34 98 118c10 53 13 215 14 382 c-163 42 -248 136 -248 270c0 135 85 229 251 271c2 153 10 300 29 367c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-9 -51 -13 -204 -14 -364c40 4 84 7 132 7 c49 0 94 -3 135 -8c3 147 10 286 29 351c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-10 -53 -13 -215 -14 -382c163 -42 248 -136 248 -270zM972 250 c0 108 -67 179 -193 213v-213l-1 -214c126 35 194 106 194 214zM330 464c-126 -35 -194 -106 -194 -214s67 -179 193 -213v213zM688 481c-41 5 -85 8 -134 8c-48 0 -92 -3 -133 -8v-231l-1 -231c41 -5 85 -8 134 -8c48 0 92 3 133 8v231'], + 0xE588: [1097,597,1466,80,1386,'1386 250c0 -97 -59 -174 -177 -224c-22 -10 -47 -18 -73 -26c-3 -160 -10 -318 -30 -388c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 4 -75 27 -76c54 -2 83 34 98 118 c10 53 13 214 14 381c-76 -14 -165 -22 -267 -24c-3 -144 -11 -279 -29 -343c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 4 -75 27 -76c54 -2 83 34 98 118c9 50 13 199 14 357 c-101 2 -190 10 -267 24c-2 -153 -10 -300 -29 -367c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 4 -75 27 -76c54 -2 83 34 98 118c10 55 13 228 14 403c-25 7 -49 15 -71 25 c-118 50 -177 127 -177 224s59 174 177 224c22 10 47 18 73 26c3 160 10 318 30 388c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-10 -53 -13 -214 -14 -381 c76 14 165 22 267 24c3 144 11 279 29 343c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-9 -50 -13 -199 -14 -357c101 -2 190 -10 267 -24c2 153 10 300 29 367 c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-10 -55 -13 -228 -14 -403c25 -7 49 -15 71 -25c118 -50 177 -127 177 -224zM1330 250c0 76 -50 133 -143 173 c-16 6 -32 13 -50 18v-191l-1 -191c18 5 35 11 51 18c93 40 143 97 143 173zM330 441c-18 -5 -35 -11 -51 -18c-93 -40 -143 -97 -143 -173s50 -133 143 -173c16 -6 32 -13 50 -18v191zM688 489c-102 -2 -191 -10 -267 -25v-214l-1 -214c75 -14 164 -23 267 -25v239z M1046 464c-75 14 -164 23 -267 25v-239l-1 -239c102 2 191 10 267 25v214'], + 0xE589: [1097,597,790,80,750,'750 352c-37 -43 -70 -89 -97 -139c-43 37 -90 70 -139 97c0 12 -1 23 -3 34s-5 22 -9 33c38 -21 74 -45 108 -72c-16 106 -81 168 -189 181v-236c0 -214 0 -530 -31 -638c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21 c7 29 14 76 11 132h70c2 -44 4 -75 27 -76c54 -2 83 34 98 118c15 82 15 434 15 652l1 236c-126 -15 -194 -96 -194 -236c-9 2 -19 3 -28 3s-19 -1 -28 -3c0 177 88 278 251 293c3 145 11 281 29 345c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42 c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-9 -50 -13 -200 -14 -359c139 -14 222 -91 243 -223c22 35 46 68 73 99c0 -12 1 -23 3 -34s5 -22 9 -33'], + 0xE58A: [1097,597,790,80,750,'750 148c-4 -11 -7 -22 -9 -33s-3 -22 -3 -34c-27 31 -51 64 -73 99c-22 -133 -106 -210 -246 -223c-3 -145 -11 -281 -29 -345c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 4 -75 27 -76 c54 -2 83 34 98 118c9 50 13 200 14 359c-162 16 -248 118 -248 293c9 -2 19 -3 28 -3s19 1 28 3c0 -139 67 -221 193 -236v236c0 214 0 530 31 638c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70 c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-15 -82 -15 -434 -15 -652l-1 -236c109 12 174 74 190 181c-34 -27 -70 -51 -108 -72c4 11 7 22 9 33s3 22 3 34c49 27 96 60 139 97c27 -50 60 -96 97 -139'], + 0xE58B: [1097,597,802,80,762,'762 371c-41 7 -82 18 -122 31c20 -42 30 -92 30 -152c0 -177 -88 -278 -251 -293c-3 -145 -11 -281 -29 -345c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 4 -75 27 -76 c54 -2 83 34 98 118c9 50 13 200 14 359c-162 16 -248 118 -248 293c0 177 88 278 251 293c3 145 11 281 29 345c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118 c-9 -50 -13 -200 -14 -359c39 -4 73 -13 103 -27c-6 -8 -11 -16 -15 -24c-4 -9 -7 -18 -9 -27c-23 11 -50 18 -80 21v-236l-1 -236c126 15 194 96 194 236c0 49 -8 91 -24 125c-9 -41 -22 -82 -38 -121c-3 11 -8 21 -14 31c-5 10 -11 20 -19 28c22 53 37 108 47 164 c53 -22 107 -37 163 -47c4 -11 8 -21 14 -31s12 -19 19 -28zM330 486c-126 -15 -194 -96 -194 -236c0 -139 67 -221 193 -236v236'], + 0xE58C: [1097,597,752,80,712,'712 463c-25 -50 -46 -104 -60 -158c-51 25 -104 46 -159 60c-3 11 -6 22 -11 32c-5 11 -10 21 -17 30c42 -11 82 -25 121 -42c-31 58 -87 92 -165 101v-236l-1 -236c126 15 194 96 194 236c9 -2 19 -3 28 -3s19 1 28 3c0 -177 -88 -278 -251 -293 c-3 -145 -11 -281 -29 -345c-7 -24 -11 -45 -23 -60c-34 -44 -59 -69 -93 -107c-16 -19 -65 -42 -92 -42c-26 0 -53 9 -74 21c7 29 14 76 11 132h70c2 -44 4 -75 27 -76c54 -2 83 34 98 118c9 50 13 200 14 359c-162 16 -248 118 -248 293c0 177 88 278 251 293 c3 145 11 281 29 345c7 24 11 45 23 60c34 44 59 69 93 107c16 19 65 42 92 42c26 0 53 -9 74 -21c-7 -29 -14 -76 -11 -132h-70c-2 44 -4 75 -27 76c-54 2 -83 -34 -98 -118c-9 -50 -13 -200 -14 -359c103 -11 175 -57 214 -134c13 40 29 79 49 116c2 -11 6 -22 11 -32 c4 -10 10 -20 16 -30zM330 486c-126 -15 -194 -96 -194 -236c0 -139 67 -221 193 -236v236'], + 0xE58D: [1462,962,737,80,657,'657 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76 c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23'], + 0xE58E: [1462,962,1124,80,1044,'657 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76 c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23zM1044 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127 c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986 c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23'], + 0xE58F: [1462,962,1511,80,1431,'657 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76 c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23zM1044 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127 c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986 c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23zM1431 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65 c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23'], + 0xE590: [1462,962,1898,80,1818,'657 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76 c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23zM1044 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127 c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986 c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23zM1431 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65 c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23z M1818 1439c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127c-16 -88 -16 -667 -16 -1001c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76 c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001c0 331 0 868 34 986c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23'], + 0xE591: [1462,962,796,80,716,'716 250c0 -190 -94 -299 -269 -316c-2 -285 -8 -585 -33 -670c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -79 23c7 31 15 82 11 143h76c2 -48 4 -81 29 -82c58 -3 90 36 106 127c12 64 15 386 16 685 c-175 17 -268 127 -268 316c0 190 94 299 269 316c2 285 8 585 33 670c7 26 12 49 25 65c37 47 63 75 100 115c18 21 71 46 100 46c28 0 57 -10 79 -23c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127c-12 -64 -15 -386 -16 -685 c175 -17 268 -127 268 -316zM656 250c0 150 -72 238 -208 255v-255v-255c135 17 208 105 208 255zM348 505c-135 -17 -208 -105 -208 -255s72 -238 208 -255v255v255'], + 0xE592: [1462,962,1183,80,1103,'1103 250c0 -145 -91 -246 -269 -292c-1 -292 -8 -607 -33 -694c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -79 23c7 31 15 82 11 143h76c2 -48 4 -81 29 -82c58 -3 90 36 106 127c12 64 15 390 16 691 c-44 -5 -92 -8 -143 -8c-52 0 -101 3 -145 8c-2 -287 -8 -591 -33 -676c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -79 23c7 31 15 82 11 143h76c2 -48 4 -81 29 -82c58 -3 90 36 106 127c12 65 15 403 16 710 c-177 45 -268 146 -268 291s91 246 269 292c1 292 8 607 33 694c7 26 12 49 25 65c37 47 63 75 100 115c18 21 71 46 100 46c28 0 57 -10 79 -23c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127c-12 -64 -15 -390 -16 -691c44 5 92 8 144 8 c51 0 100 -3 144 -8c2 287 8 591 33 676c7 26 12 49 25 65c37 47 63 75 100 115c18 21 71 46 100 46c28 0 57 -10 79 -23c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127c-12 -65 -15 -403 -16 -710c177 -45 268 -146 268 -291zM1043 250 c0 116 -73 193 -208 230v-230v-230c135 37 208 114 208 230zM348 480c-135 -37 -208 -114 -208 -230s73 -193 208 -230v230v230zM735 500c-43 5 -91 8 -143 8s-100 -3 -144 -8v-250v-250c43 -5 91 -8 144 -8c51 0 99 3 143 8v250v250'], + 0xE593: [1462,962,1570,80,1490,'1490 250c0 -105 -64 -187 -191 -242c-24 -10 -49 -19 -77 -27c-2 -298 -8 -628 -34 -717c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -79 23c7 31 15 82 11 143h76c2 -48 4 -81 29 -82c58 -3 90 36 106 127 c12 65 15 403 16 709c-82 -15 -178 -24 -288 -26c-2 -284 -9 -583 -33 -668c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -79 23c7 31 15 82 11 143h76c2 -48 4 -81 29 -82c58 -3 90 36 106 127c12 64 15 384 16 683 c-110 2 -205 11 -288 26c-1 -292 -8 -607 -33 -694c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -79 23c7 31 15 82 11 143h76c2 -48 4 -81 29 -82c58 -3 90 36 106 127c12 67 15 420 16 732c-28 8 -53 17 -77 27 c-127 55 -191 137 -191 242s64 187 191 242c24 10 49 19 77 27c2 298 8 628 34 717c7 26 12 49 25 65c37 47 63 75 100 115c18 21 71 46 100 46c28 0 57 -10 79 -23c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127c-12 -65 -15 -403 -16 -709 c82 15 178 24 288 26c2 284 9 583 33 668c7 26 12 49 25 65c37 47 63 75 100 115c18 21 71 46 100 46c28 0 57 -10 79 -23c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127c-12 -64 -15 -384 -16 -683c110 -2 205 -11 288 -26c1 292 8 607 33 694 c7 26 12 49 25 65c37 47 63 75 100 115c18 21 71 46 100 46c28 0 57 -10 79 -23c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127c-12 -67 -15 -420 -16 -732c28 -8 53 -17 77 -27c127 -55 191 -137 191 -242zM1430 250c0 82 -54 144 -155 187 c-16 7 -34 13 -53 19v-206v-206c19 6 37 12 53 19c101 43 155 105 155 187zM348 456c-19 -6 -37 -12 -53 -19c-101 -43 -155 -105 -155 -187s54 -144 155 -187c16 -7 34 -13 53 -19v206v206zM735 508c-110 -2 -206 -11 -287 -27v-231v-231c81 -16 177 -25 287 -27v258v258z M1122 481c-81 16 -177 25 -287 27v-258v-258c110 2 206 11 287 27v231v231'], + 0xE594: [1462,962,835,80,795,'795 350c-38 -43 -70 -89 -98 -139c-43 37 -89 70 -139 97c0 12 -1 23 -3 34c-2 12 -5 23 -9 33c38 -20 73 -44 107 -70c-16 117 -87 185 -205 200v-255c0 -331 0 -868 -34 -986c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46 c-28 0 -57 10 -79 23c7 31 15 82 11 143h76c2 -48 4 -81 29 -82c58 -3 90 36 106 127c16 88 16 667 16 1001v255c-135 -17 -208 -105 -208 -255c-10 2 -20 3 -30 3s-20 -1 -30 -3c0 190 94 299 269 316c2 285 8 585 33 670c7 26 12 49 25 65c37 47 63 75 100 115 c18 21 71 46 100 46c28 0 57 -10 79 -23c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127c-12 -64 -15 -386 -16 -685c152 -15 242 -100 263 -245c22 34 46 66 72 96c0 -11 1 -23 3 -34s5 -22 9 -33'], + 0xE595: [1462,962,835,80,795,'795 150c-4 -11 -7 -22 -9 -33s-3 -23 -3 -34c-26 30 -50 62 -72 96c-22 -146 -112 -230 -264 -245c-2 -285 -8 -585 -33 -670c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -79 23c7 31 15 82 11 143h76 c2 -48 4 -81 29 -82c58 -3 90 36 106 127c12 64 15 386 16 685c-175 17 -268 127 -268 316c10 -2 20 -3 30 -3s20 1 30 3c0 -150 72 -238 208 -255v255c0 331 0 868 34 986c7 26 12 49 25 65c37 47 63 75 100 115c18 21 71 46 100 46c28 0 57 -10 79 -23 c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127c-16 -88 -16 -667 -16 -1001v-255c118 14 189 83 205 200c-34 -26 -69 -50 -107 -70c4 10 7 21 9 33c2 11 3 22 3 34c50 27 96 60 139 97c28 -50 60 -96 98 -139'], + 0xE596: [1462,962,841,80,801,'801 388c-41 7 -81 17 -120 30c23 -46 35 -102 35 -168c0 -190 -94 -299 -269 -316c-2 -285 -8 -585 -33 -670c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -79 23c7 31 15 82 11 143h76c2 -48 4 -81 29 -82 c58 -3 90 36 106 127c12 64 15 386 16 685c-175 17 -268 127 -268 316c0 190 94 299 269 316c2 285 8 585 33 670c7 26 12 49 25 65c37 47 63 75 100 115c18 21 71 46 100 46c28 0 57 -10 79 -23c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127 c-12 -64 -15 -386 -16 -685c42 -5 79 -15 111 -29c-6 -9 -11 -17 -15 -26c-4 -10 -7 -19 -10 -29c-25 12 -54 19 -86 23v-255v-255c135 17 208 105 208 255c0 55 -9 102 -28 140c-9 -41 -21 -80 -37 -119c-4 11 -8 21 -14 31c-5 10 -12 19 -19 28c21 53 37 108 47 163 c52 -21 107 -36 163 -46c3 -11 8 -21 14 -31c5 -10 12 -20 19 -28zM348 505c-135 -17 -208 -105 -208 -255s72 -238 208 -255v255v255'], + 0xE597: [1462,962,796,80,756,'756 469c-25 -51 -46 -104 -60 -159c-51 26 -104 46 -159 61c-2 11 -6 21 -11 32c-4 10 -10 20 -16 30c40 -11 79 -25 118 -42c-33 66 -94 104 -180 114v-255v-255c135 17 208 105 208 255c10 -2 20 -3 30 -3s20 1 30 3c0 -190 -94 -299 -269 -316 c-2 -285 -8 -585 -33 -670c-7 -26 -12 -49 -25 -65c-37 -47 -63 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -79 23c7 31 15 82 11 143h76c2 -48 4 -81 29 -82c58 -3 90 36 106 127c12 64 15 386 16 685c-175 17 -268 127 -268 316c0 190 94 299 269 316 c2 285 8 585 33 670c7 26 12 49 25 65c37 47 63 75 100 115c18 21 71 46 100 46c28 0 57 -10 79 -23c-7 -31 -15 -82 -11 -143h-76c-2 48 -4 81 -29 82c-58 3 -90 -36 -106 -127c-12 -64 -15 -386 -16 -685c114 -12 192 -63 234 -148c13 38 28 76 47 113c3 -11 6 -22 11 -33 c5 -10 10 -20 16 -29zM348 505c-135 -17 -208 -105 -208 -255s72 -238 208 -255v255v255'], + 0xE598: [1701,1201,760,80,680,'680 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79 c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24'], + 0xE599: [1701,1201,1163,80,1083,'680 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79 c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1083 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133 c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915 c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24'], + 0xE59A: [1701,1201,1566,80,1486,'680 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79 c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1083 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133 c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915 c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1486 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69 c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24'], + 0xE59B: [1701,1201,1969,80,1889,'680 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79 c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1083 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133 c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915 c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1486 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69 c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24z M1889 1677c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-600c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79 c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v600c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24'], + 0xE59C: [1701,1201,824,80,744,'744 250c0 -198 -98 -312 -280 -330c0 -307 -1 -767 -35 -885c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c15 88 16 587 16 901 c-182 18 -280 132 -280 330s98 312 280 330c0 307 1 767 35 885c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-15 -88 -16 -587 -16 -901 c182 -18 280 -132 280 -330zM680 250c0 156 -75 248 -216 265v-530c141 17 216 109 216 265zM360 -15v530c-141 -17 -216 -109 -216 -265s75 -248 216 -265'], + 0xE59D: [1701,1201,1227,80,1147,'1147 250c0 -151 -95 -257 -280 -304c0 -308 0 -790 -35 -911c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 88 16 594 16 908 c-46 -6 -96 -9 -149 -9c-54 0 -104 3 -150 9c0 -308 -1 -773 -35 -892c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 90 16 615 16 927 c-185 47 -280 153 -280 304s95 257 280 304c0 308 0 790 35 911c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -88 -16 -594 -16 -908c46 6 96 9 150 9 c53 0 103 -3 149 -9c0 308 1 773 35 892c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -90 -16 -615 -16 -927c185 -47 280 -153 280 -304zM1083 250 c0 121 -75 200 -216 239v-478c141 39 216 118 216 239zM360 11v478c-141 -39 -216 -118 -216 -239s75 -200 216 -239zM763 -9v518c-45 6 -95 9 -149 9c-55 0 -105 -3 -150 -9v-518c45 -6 95 -9 150 -9c54 0 104 3 149 9'], + 0xE59E: [1701,1201,1630,80,1550,'1550 250c0 -109 -66 -196 -200 -253c-24 -10 -51 -19 -80 -28v-19c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133 c16 90 16 614 16 926c-86 -15 -185 -24 -299 -27c0 -307 -1 -765 -35 -883c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c15 88 16 585 16 899 c-114 3 -213 12 -299 27c0 -307 0 -789 -35 -910c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v19c-29 9 -56 18 -80 28 c-134 57 -200 144 -200 253s66 196 200 253c24 10 51 19 80 28v19c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -90 -16 -614 -16 -926 c86 15 185 24 299 27c0 307 1 765 35 883c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-15 -88 -16 -585 -16 -899c114 -3 213 -12 299 -27c0 307 0 789 35 910 c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-19c29 -9 56 -18 80 -28c134 -57 200 -144 200 -253zM1486 250c0 86 -57 149 -161 194 c-17 7 -35 14 -55 20v-428c20 6 38 13 55 20c104 45 161 108 161 194zM360 36v428c-20 -6 -38 -13 -55 -20c-104 -45 -161 -108 -161 -194s57 -149 161 -194c17 -7 35 -14 55 -20zM763 518c-115 -3 -215 -12 -299 -28v-480c84 -16 184 -25 299 -28v536zM1166 490 c-84 16 -184 25 -299 28v-536c115 3 215 12 299 28v480'], + 0xE59F: [1701,1201,861,80,821,'821 348c-37 -43 -70 -89 -97 -139c-43 37 -90 70 -139 97c0 12 -1 23 -3 34c-2 12 -5 23 -9 33c36 -20 71 -43 104 -68c-16 123 -90 195 -213 210v-565c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47 c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v565c-141 -17 -216 -109 -216 -265c-11 2 -21 3 -32 3s-21 -1 -32 -3c0 198 98 312 280 330c0 307 1 767 35 885c8 28 13 52 26 69c38 49 66 78 104 120 c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-15 -88 -16 -587 -16 -901c159 -16 253 -105 275 -259c21 33 45 64 70 94c0 -11 1 -23 3 -34s5 -22 9 -33'], + 0xE5A0: [1701,1201,861,80,821,'821 152c-4 -11 -7 -22 -9 -33s-3 -23 -3 -34c-25 30 -49 61 -70 94c-22 -154 -116 -243 -275 -259c0 -307 -1 -767 -35 -885c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85 c61 -3 93 38 111 133c15 88 16 587 16 901c-182 18 -280 132 -280 330c11 -2 21 -3 32 -3s21 1 32 3c0 -156 75 -248 216 -265v565c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79 c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-565c123 15 197 87 213 210c-33 -25 -68 -48 -104 -68c4 10 7 21 9 33c2 11 3 22 3 34c49 27 96 60 139 97c27 -50 60 -96 97 -139'], + 0xE5A1: [1701,1201,863,80,823,'823 399c-40 7 -78 16 -116 29c24 -48 37 -108 37 -178c0 -198 -98 -312 -280 -330c0 -307 -1 -767 -35 -885c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85 c61 -3 93 38 111 133c15 88 16 587 16 901c-182 18 -280 132 -280 330s98 312 280 330c0 307 1 767 35 885c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133 c-15 -88 -16 -587 -16 -902c44 -4 83 -14 116 -30c-6 -9 -11 -18 -16 -28c-4 -9 -8 -19 -10 -30c-27 12 -56 20 -90 24v-530c141 17 216 109 216 265c0 58 -10 108 -30 148c-9 -39 -22 -78 -37 -116c-4 11 -8 21 -14 31c-5 10 -12 19 -19 28c21 53 37 108 47 164 c52 -22 107 -37 163 -47c3 -11 8 -21 14 -31c5 -10 12 -20 19 -28zM360 515c-141 -17 -216 -109 -216 -265s75 -248 216 -265v530'], + 0xE5A2: [1701,1201,823,80,783,'783 470c-25 -50 -46 -104 -60 -158c-51 25 -104 46 -159 60c-3 11 -6 22 -11 32c-5 11 -10 21 -16 30c39 -10 78 -24 115 -40c-34 70 -97 110 -188 121v-530c141 17 216 109 216 265c11 -2 21 -3 32 -3s21 1 32 3c0 -198 -98 -312 -280 -330c0 -307 -1 -767 -35 -885 c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c15 88 16 587 16 901c-182 18 -280 132 -280 330s98 312 280 330c0 307 1 767 35 885c8 28 13 52 26 69 c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-15 -88 -16 -587 -16 -901c120 -12 202 -67 246 -158c12 38 28 75 46 110c2 -11 6 -22 11 -32c4 -11 10 -20 16 -30zM360 515 c-141 -17 -216 -109 -216 -265s75 -248 216 -265v530'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/NonUnicode/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Normal/Regular/Main.js new file mode 100644 index 0000000..c1c4d67 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Normal/Regular/Main.js @@ -0,0 +1,370 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'GyrePagellaMathJax_Normal', + id: 'GYREPAGELLANORMAL', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210E: [733,9,500,10,471,'471 85c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 39c0 19 4 41 13 77l51 196c9 33 15 71 15 89c0 13 -9 22 -22 22c-42 0 -146 -97 -190 -178c-29 -53 -46 -114 -62 -229l-69 -16l-7 11c21 63 61 235 88 386l42 234c1 7 2 16 2 24c0 17 -10 24 -34 24h-48l4 21 c72 7 108 16 160 42l12 -11l-98 -457l20 25c47 58 63 77 98 106c63 53 124 86 158 86c18 0 29 -14 29 -36c0 -17 -5 -48 -11 -74l-64 -256c-6 -22 -7 -30 -7 -40c0 -11 6 -20 13 -20c10 0 32 11 61 30l26 17'], + 0x1D400: [686,3,778,24,757,'757 -3l-158 3l-152 -3v37l53 3c27 2 20 39 14 55l-45 114h-251l-42 -112c-8 -22 -7 -55 24 -57l50 -3v-37l-113 3l-113 -3v37l30 3c22 2 40 21 56 60l181 438l57 151h71l259 -605c13 -29 27 -40 55 -44l24 -3v-37zM446 262l-104 254l-100 -254h204'], + 0x1D401: [681,3,667,39,611,'611 216c0 -129 -141 -219 -271 -219l-142 3l-126 -3v23l32 18c15 8 20 23 20 57v448c0 88 -3 94 -48 98l-37 3v37l168 -3l192 3c126 0 189 -44 189 -135c0 -38 -14 -74 -38 -96c-31 -29 -60 -43 -144 -73c80 -5 114 -14 150 -39c35 -25 55 -69 55 -122zM461 202 c0 102 -50 146 -166 146h-30v-292c17 -3 28 -4 43 -4c106 0 153 46 153 150zM440 524c0 74 -36 107 -117 107c-19 0 -34 -1 -58 -4v-227h30c101 0 145 37 145 124'], + 0x1D402: [695,17,722,44,695,'695 637c-9 -38 -12 -57 -23 -153h-39l-5 86c-54 50 -102 69 -178 69c-159 0 -256 -106 -256 -278c0 -189 115 -313 291 -313c66 0 130 17 195 51l12 -12l-22 -49c-74 -41 -133 -55 -225 -55c-247 0 -401 140 -401 364c0 214 158 348 411 348c87 0 143 -11 234 -47'], + 0x1D403: [681,3,833,35,786,'786 376c0 -107 -35 -196 -104 -263c-75 -74 -184 -116 -303 -116c-52 0 -104 3 -156 3l-155 -3v23l32 18c15 8 20 24 20 57v448c0 88 -3 94 -48 98l-37 3v37l162 -3l239 3c135 0 215 -25 273 -83c50 -49 77 -127 77 -222zM636 348c0 99 -21 167 -66 211 c-49 48 -129 72 -246 72c-23 0 -39 -1 -63 -4v-570c25 -4 43 -5 68 -5c113 0 184 22 234 71c48 48 73 124 73 225'], + 0x1D404: [681,3,611,39,577,'577 166l-11 -158l-5 -8c-57 -3 -85 -3 -140 -3l-226 3l-123 -3v23l32 18c15 8 20 23 20 57v448c0 88 -3 94 -48 98l-37 3v37l190 -3l236 3c37 0 58 -1 95 -3l6 -7l-14 -142h-36l-8 75c-1 11 -43 19 -98 19l-145 -3v-240c20 -2 34 -2 67 -2h66c42 0 55 5 57 21l6 57h40 c-2 -36 -3 -71 -3 -107s1 -72 3 -108h-40l-6 50c-3 26 -19 37 -57 37h-66c-22 0 -39 -1 -67 -3v-267l149 -3c46 0 99 9 101 17l23 94h39'], + 0x1D405: [681,3,556,28,539,'539 671l-14 -142h-36l-8 75c-1 12 -44 19 -111 19l-116 -3v-243c20 -2 34 -2 67 -2h51c42 0 55 5 57 21l6 53h40c-2 -34 -3 -69 -3 -103c0 -36 1 -72 3 -108h-40l-6 50c-3 26 -19 37 -57 37h-51c-22 0 -39 -1 -67 -3v-187c0 -88 2 -92 48 -95l47 -3v-40l-166 3l-155 -3 v40l37 3c47 4 48 6 48 95v408c0 88 -3 94 -48 98l-37 3v37l178 -3l232 3c37 0 57 0 95 -3'], + 0x1D406: [695,17,833,47,776,'776 242c-37 -8 -41 -12 -41 -36v-163c-120 -45 -196 -60 -297 -60c-237 0 -391 143 -391 363c0 216 158 349 414 349c98 0 170 -13 261 -47l6 -11c-9 -38 -12 -57 -23 -153h-39l-5 86c-54 52 -131 69 -205 69c-163 0 -259 -105 -259 -281c0 -190 108 -319 269 -319 c43 0 76 6 127 25v132c0 26 -15 35 -57 37l-53 2v41l143 -3l150 3v-34'], + 0x1D407: [681,3,833,36,796,'796 -3l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v190l-81 2h-146l-81 -2v-190c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-158c23 -2 43 -2 81 -2h146 c38 0 57 0 81 2v158c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-408c0 -89 1 -91 48 -95l37 -3v-40'], + 0x1D408: [681,3,389,39,350,'350 -3l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-408c0 -89 1 -91 48 -95l37 -3v-40'], + 0x1D409: [681,213,389,-11,350,'350 641l-37 -3c-47 -4 -48 -6 -48 -95v-406c0 -105 -6 -144 -28 -192c-42 -89 -137 -158 -218 -158c-8 0 -17 1 -30 5v89l11 6c4 -3 5 -3 11 -8c26 -20 41 -27 58 -27c40 0 55 35 55 130v561c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40'], + 0x1D40A: [681,3,778,39,763,'763 -3c-34 2 -67 3 -101 3s-68 -1 -102 -3l-208 249c-56 68 -61 71 -87 86v-197c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-200l197 193 c14 14 94 94 94 120v25c30 -2 61 -3 91 -3s61 1 91 3v-39c-63 -5 -86 -12 -110 -34l-222 -207l266 -313c31 -36 54 -49 91 -50v-41'], + 0x1D40B: [681,3,611,39,577,'577 174l-11 -166l-5 -8c-57 -3 -85 -3 -140 -3l-226 3l-123 -3v23l32 18c15 8 20 23 20 57v448c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-485l153 -3c43 0 95 9 97 17l23 102h39'], + 0x1D40C: [681,10,1000,32,968,'968 -3l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v416l-206 -429c-37 -76 -41 -86 -60 -132h-34c-18 44 -29 68 -36 83l-230 479v-417c0 -89 3 -94 48 -98l37 -3v-37l-114 3l-115 -3v37l37 3c45 4 48 10 48 98v408c0 88 -3 94 -48 98l-37 3v37l120 -3l120 3l75 -161 l158 -330l183 378l49 113l115 -3l116 3v-37l-37 -3c-45 -4 -48 -10 -48 -98v-408c0 -89 1 -91 48 -95l37 -3v-40'], + 0x1D40D: [681,16,833,35,798,'798 644l-37 -3c-45 -4 -48 -10 -48 -98v-454l3 -101l-7 -4l-82 13l-122 139l-326 392v-393c0 -89 3 -94 48 -98l37 -3v-37l-114 3l-115 -3v37l37 3c45 4 48 10 48 98v408c0 88 -3 94 -48 98l-37 3v37l120 -3c28 0 56 1 84 3c64 -85 82 -109 103 -133l312 -364v359 c0 88 -3 94 -48 98l-37 3v37l115 -3l114 3v-37'], + 0x1D40E: [695,17,833,47,787,'787 346c0 -228 -141 -363 -380 -363c-229 0 -360 127 -360 349c0 229 141 363 383 363c226 0 357 -129 357 -349zM637 325c0 113 -31 209 -86 263c-35 34 -77 51 -130 51c-63 0 -115 -19 -154 -57c-45 -45 -70 -125 -70 -227c0 -115 31 -211 85 -264 c36 -36 77 -52 132 -52c146 0 223 98 223 286'], + 0x1D40F: [681,3,611,39,594,'594 531c0 -121 -96 -212 -225 -212c-20 0 -39 4 -58 7v39h18h18c63 0 103 52 103 132c0 89 -42 134 -125 134c-27 0 -45 -3 -60 -9v-487c0 -88 2 -92 48 -95l47 -3v-40l-165 3l-156 -3v40l37 3c47 4 48 6 48 95v408c0 88 -3 94 -48 98l-37 3v37l173 -3l193 3 c85 0 189 -50 189 -150'], + 0x1D410: [695,184,833,47,787,'787 346c0 -129 -45 -228 -132 -292c-60 -45 -150 -69 -260 -69c-8 -1 -10 -1 -21 -1c47 -10 72 -16 100 -26l120 -42c37 -13 81 -22 107 -22c18 0 35 7 69 19l11 4v-37l-103 -64c-26 0 -46 3 -72 10l-199 54c-59 16 -74 19 -99 19c-24 0 -49 -12 -97 -45l-11 31 c73 58 108 80 161 100c-88 11 -130 24 -179 56c-88 58 -135 158 -135 290c0 229 141 364 380 364c229 0 360 -127 360 -349zM637 325c0 113 -31 209 -86 263c-35 34 -77 51 -130 51c-63 0 -115 -19 -154 -57c-45 -45 -70 -125 -70 -227c0 -115 31 -211 85 -264 c36 -36 77 -52 132 -52c146 0 223 98 223 286'], + 0x1D411: [681,3,722,39,708,'708 -3c-32 2 -65 3 -97 3c-30 0 -60 -1 -90 -3l-210 342v23c37 0 62 4 87 19c41 24 66 69 66 122c0 81 -51 128 -140 128c-26 0 -45 -3 -59 -9v-487c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 88 -3 94 -48 98l-37 3v37l178 -3l199 3 c126 0 190 -50 190 -147c0 -42 -15 -78 -43 -110c-27 -29 -50 -45 -106 -68l181 -274c22 -33 34 -38 70 -45v-40'], + 0x1D412: [695,17,611,57,559,'559 220c0 -145 -115 -237 -294 -237c-76 0 -134 13 -208 46c11 57 15 98 15 173h40l7 -88c32 -47 96 -77 164 -77c86 0 150 55 150 129c0 48 -27 79 -83 96l-140 42c-95 28 -146 91 -146 176c0 135 98 215 265 215c66 0 118 -9 185 -34l5 -12c-9 -29 -14 -77 -14 -142 h-41l-6 82c-38 37 -83 55 -136 55c-80 0 -134 -47 -134 -117c0 -51 32 -81 106 -101l114 -30c99 -26 151 -86 151 -176'], + 0x1D413: [681,3,667,17,650,'650 676c-8 -48 -11 -83 -13 -159h-40l-5 69c-15 40 -22 33 -71 33h-117v-484c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v484h-117c-31 0 -68 7 -71 -33l-5 -69h-40c-3 76 -5 111 -13 159l6 5l311 -3l310 3'], + 0x1D414: [681,17,778,26,760,'760 644l-37 -3c-45 -4 -48 -10 -48 -98v-292c0 -181 -92 -268 -284 -268c-172 0 -280 75 -280 194v366c0 88 -3 94 -48 98l-37 3v37l155 -3l156 3v-37l-37 -3c-45 -4 -48 -10 -48 -98v-248c0 -104 9 -151 36 -183s72 -47 140 -47c67 0 113 14 141 43c34 35 47 88 47 194 v241c0 88 -3 94 -48 98l-37 3v37l115 -3l114 3v-37'], + 0x1D415: [681,3,778,20,763,'763 644l-32 -3c-21 -2 -34 -15 -47 -47l-208 -498c-14 -32 -25 -66 -38 -99h-76l-239 572c-21 51 -37 70 -62 72l-41 3v37l158 -3l162 3v-37l-50 -3c-14 -1 -26 -10 -26 -19c0 -18 0 -21 21 -72l157 -387l142 353c21 53 31 84 31 99s-14 24 -37 26l-46 3v37l115 -3 l116 3v-37'], + 0x1D416: [686,3,1000,17,988,'988 644l-33 -3c-17 -2 -30 -23 -43 -69l-122 -432l-33 -143h-73c-13 35 -24 70 -38 105l-149 375l-155 -355l-47 -125h-70l-139 602c-6 28 -18 40 -37 42l-32 3v37l156 -3l134 3v-37l-42 -3c-16 -1 -30 -13 -30 -25c0 -8 1 -17 3 -26l82 -383l150 355 c35 84 25 61 51 124h45c21 -60 33 -94 49 -133l137 -343l97 378c3 11 4 20 4 30c0 14 -12 22 -35 23l-46 3v37c35 -2 71 -3 106 -3c37 0 73 1 110 3v-37'], + 0x1D417: [695,3,667,17,650,'650 -3c-32 2 -63 3 -95 3s-64 -1 -96 -3l-149 266l-140 -201c-4 -6 -22 -36 -36 -62h-117v34l31 3c12 1 26 9 33 18l199 261l-94 166c-26 46 -64 99 -86 123c-13 13 -25 18 -41 18c-9 0 -16 -1 -32 -6l-5 41l183 37c29 -22 45 -42 73 -91l95 -169l165 243h111v-34 l-28 -3c-20 -2 -27 -8 -48 -36l-170 -224c189 -327 159 -274 160 -278c28 -49 40 -63 62 -66l25 -3v-37'], + 0x1D418: [695,3,667,15,660,'660 659l-176 -261c-18 -27 -34 -57 -53 -100v-163c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v139c-16 36 -27 58 -44 85l-101 163c-54 88 -79 100 -130 100v37l159 36c46 -27 74 -60 114 -136l107 -203l188 322h77v-19'], + 0x1D419: [681,3,667,24,627,'627 174c-9 -50 -15 -116 -16 -177l-284 3l-303 -3v38c49 62 76 99 104 139l306 446h-222c-71 0 -81 -5 -87 -46l-8 -55h-37v162l272 -3l271 3v-35c-32 -39 -56 -70 -83 -110l-325 -479h276c51 0 76 12 81 39l15 78h40'], + 0x1D41A: [471,17,500,40,478,'478 -3c-29 2 -59 3 -88 3c-30 0 -61 -1 -91 -3l-5 8l5 62l-93 -72c-10 -8 -26 -12 -49 -12c-76 0 -117 43 -117 124c0 85 45 124 171 150l88 18c-3 82 -35 118 -102 118c-27 0 -55 -7 -58 -14l-22 -50l-30 7v69l53 32c38 23 77 34 120 34c101 0 160 -53 160 -141v-232 c0 -47 5 -59 28 -61l30 -3v-37zM299 115v118l-45 -12c-71 -19 -92 -39 -92 -88c0 -39 19 -63 51 -63c30 0 66 19 86 45'], + 0x1D41B: [720,17,611,10,556,'556 281c0 -77 -33 -154 -83 -195c-28 -23 -74 -54 -114 -78c-29 -17 -56 -25 -87 -25c-43 0 -85 12 -131 37l-39 -32l-22 8c6 53 9 113 9 166v406c0 59 -4 69 -26 70l-53 3v36c58 6 92 12 121 21l72 22l8 -6v-331l61 49c35 28 64 39 103 39c106 0 181 -79 181 -190z M430 221c0 100 -46 160 -123 160c-41 0 -74 -17 -96 -50v-225c27 -38 59 -55 101 -55c73 0 118 66 118 170'], + 0x1D41C: [471,17,444,37,414,'414 63l-21 -46c-47 -25 -84 -34 -134 -34c-144 0 -222 87 -222 246c0 87 32 137 121 190l52 31c24 14 52 21 90 21c36 0 57 -4 103 -20l7 -13c-9 -44 -14 -77 -20 -141h-36l-7 60c-3 23 -42 43 -88 43c-64 0 -98 -48 -98 -139c0 -128 60 -207 159 -207c29 0 51 5 85 19'], + 0x1D41D: [720,17,611,42,577,'577 -3c-34 2 -67 3 -101 3c-30 0 -60 -1 -90 -3l-5 8l5 75l-104 -85c-10 -8 -26 -12 -49 -12c-117 0 -191 91 -191 234c0 86 27 144 84 181l72 47c27 17 56 26 88 26c25 0 52 -6 80 -17l20 -8v122c0 59 -4 69 -26 70l-53 3v36c58 6 92 12 121 21l72 22l8 -6v-614 c0 -54 5 -62 36 -64l33 -2v-37zM386 160v184c-33 43 -69 63 -112 63c-71 0 -106 -51 -106 -152c0 -108 45 -177 116 -177c55 0 102 37 102 82'], + 0x1D41E: [471,17,500,42,461,'461 243c-57 -14 -101 -20 -158 -20h-131c2 -48 8 -72 25 -100c25 -42 74 -69 124 -69c41 0 71 9 118 35l12 -15l-22 -48c-65 -33 -100 -43 -158 -43c-150 0 -229 84 -229 243c0 96 29 155 95 194l47 28c27 16 53 23 87 23c116 0 190 -69 190 -176v-52zM334 276 c0 99 -26 139 -83 139c-58 0 -85 -40 -85 -139l32 -1c57 -2 32 -2 52 -2c33 0 84 3 84 3'], + 0x1D41F: [720,3,389,34,381,'381 617l-16 -7c-31 19 -46 24 -67 24c-46 0 -59 -21 -59 -92v-108c44 0 87 1 131 4l4 -8l-11 -58h-124v-272c0 -24 1 -37 3 -46c3 -10 21 -17 47 -18l45 -2v-37l-160 3l-140 -3v37l41 2c37 2 42 9 42 64v272l-79 -5v24c33 16 53 27 79 45v43c0 80 7 97 55 137l74 62 c38 32 61 42 93 42c15 0 25 -2 42 -6v-97'], + 0x1D420: [471,266,556,26,535,'535 -42c0 -133 -118 -224 -293 -224c-132 0 -216 55 -216 142c0 27 11 53 26 62l81 48c-50 13 -68 31 -68 67c0 20 7 41 17 48l71 54c-35 12 -50 21 -69 41c-24 26 -37 59 -37 96c0 105 89 179 217 179c64 0 111 -13 152 -43c16 -1 28 -1 36 -1c22 0 41 1 82 5l-5 -64 l-77 4c4 -19 5 -31 5 -47c0 -50 -13 -85 -44 -116c-41 -41 -105 -64 -174 -64c-12 0 -22 1 -40 2c-20 -12 -29 -24 -29 -39c0 -20 16 -31 47 -30l146 4h24c101 0 148 -40 148 -124zM334 299c0 79 -29 122 -82 122c-54 0 -82 -38 -82 -110c0 -75 32 -120 84 -120 c53 0 80 37 80 108zM424 -95c0 64 -30 80 -152 80c-49 0 -85 -3 -101 -11c-30 -14 -51 -49 -51 -86c0 -62 59 -104 148 -104s156 52 156 121'], + 0x1D421: [720,3,611,24,587,'587 -3c-34 2 -67 3 -101 3c-30 0 -60 -1 -90 -3v272c0 81 -28 116 -94 116c-44 0 -85 -33 -85 -68v-217c0 -54 5 -62 36 -64l35 -2v-37l-135 3l-129 -3v37l35 2c31 2 36 10 36 64v468c0 59 -3 68 -26 70l-45 3v36c54 7 87 13 113 21l72 22l8 -6v-324l80 62 c16 13 40 19 70 19c49 0 90 -15 116 -42c26 -28 35 -66 35 -143v-186c0 -54 5 -62 36 -64l33 -2v-37'], + 0x1D422: [666,3,333,34,298,'298 -3l-135 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70l-45 3v36l15 2c42 6 60 9 98 19c28 7 70 22 70 22l10 -6v-365c0 -54 5 -62 36 -64l35 -2v-37zM233 599c0 -37 -30 -67 -67 -67s-67 30 -67 68c0 36 30 66 68 66c36 0 66 -31 66 -67'], + 0x1D423: [666,266,333,3,233,'227 98c0 -154 -13 -222 -53 -281c-36 -53 -83 -83 -130 -83c-4 0 -24 1 -31 2l-10 35l4 6h23c54 0 75 53 75 185v357c0 59 -3 68 -26 70l-45 3v36l18 2c38 4 69 11 95 19l70 22l10 -6v-367zM233 599c0 -37 -30 -67 -67 -67s-67 30 -67 68c0 36 30 66 68 66 c36 0 66 -31 66 -67'], + 0x1D424: [720,3,611,21,597,'597 0h-172c-103 126 -67 83 -193 226h-10v-126c0 -54 5 -62 36 -64l35 -2v-37l-135 3l-129 -3v37l35 2c31 2 36 10 36 64v468c0 59 -4 69 -26 70l-53 3v36c58 6 92 12 121 21l72 22l8 -6v-465c56 48 83 73 106 97l107 113h130v-38h-31c-15 0 -32 -6 -48 -18 c-63 -46 -140 -117 -140 -117l196 -220c18 -20 34 -30 55 -32v-34'], + 0x1D425: [720,3,333,24,296,'296 -3l-135 3l-129 -3v37l35 2c31 2 36 10 36 64v468c0 59 -4 69 -26 70l-53 3v36c58 6 92 12 121 21l72 22l8 -6v-614c0 -54 5 -62 36 -64l35 -2v-37'], + 0x1D426: [471,3,889,24,864,'864 -3c-33 2 -65 3 -98 3c-31 0 -62 -1 -93 -3v272c0 78 -28 116 -86 116c-40 0 -81 -35 -81 -68v-217c0 -54 5 -62 36 -64l35 -2v-37l-131 3l-129 -3v37l31 2c32 2 36 10 36 64v169c0 78 -28 116 -86 116c-40 0 -81 -35 -81 -68v-217c0 -54 4 -62 36 -64l27 -2v-37 l-127 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70l-45 3v36c55 3 83 9 187 43l6 -6v-75l80 62c17 13 39 19 71 19c69 0 109 -24 132 -81l80 62c17 13 39 19 72 19c107 0 143 -47 143 -185v-186c0 -54 5 -62 36 -64l33 -2v-37'], + 0x1D427: [471,3,611,24,587,'587 -3c-34 2 -67 3 -101 3c-30 0 -60 -1 -90 -3v273c0 80 -28 115 -94 115c-44 0 -85 -33 -85 -68v-217c0 -54 5 -62 36 -64l35 -2v-37l-135 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70l-45 3v36c55 3 83 9 187 43l6 -6v-75l80 62c16 13 40 19 70 19 c49 0 90 -15 116 -42c26 -28 35 -66 35 -143v-186c0 -54 5 -62 36 -64l33 -2v-37'], + 0x1D428: [471,17,556,40,517,'517 236c0 -162 -90 -253 -250 -253c-145 0 -227 87 -227 241c0 159 88 247 247 247c148 0 230 -83 230 -235zM381 205c0 147 -34 218 -106 218c-69 0 -99 -54 -99 -175c0 -144 37 -217 109 -217c68 0 96 52 96 174'], + 0x1D429: [471,258,611,29,567,'567 286c0 -90 -36 -168 -102 -218c-5 -4 -11 -9 -17 -13c-68 -54 -103 -72 -137 -72c-24 0 -40 3 -89 17v-155c0 -54 5 -63 36 -64l45 -2v-37l-145 3l-129 -3v37l35 2c31 2 36 10 36 64v474c0 59 -3 68 -26 70l-45 3v36l11 1c51 5 68 9 102 20l70 22l10 -6v-82l61 49 c35 28 64 39 103 39c104 0 181 -79 181 -185zM441 221c0 100 -46 160 -123 160c-41 0 -74 -17 -96 -50v-225c27 -38 59 -55 101 -55c73 0 118 66 118 170'], + 0x1D42A: [471,258,611,52,589,'589 -258l-135 3l-129 -3v37l35 2c31 2 36 10 36 64v230l-96 -77c-12 -10 -33 -15 -60 -15c-116 0 -188 88 -188 229c0 99 30 150 117 199c80 45 119 60 154 60c30 0 73 -13 116 -34l22 -11l52 42l21 -14c-12 -59 -16 -92 -16 -130v-479c0 -54 5 -62 36 -64l35 -2v-37z M396 160v184c-33 43 -69 63 -112 63c-71 0 -106 -51 -106 -152c0 -108 45 -177 116 -177c55 0 102 37 102 82'], + 0x1D42B: [471,3,389,30,389,'389 465l-5 -129l-24 -10c-14 24 -32 36 -57 36c-39 0 -80 -33 -80 -64v-198c0 -56 5 -62 48 -64l39 -2v-37l-151 3l-129 -3v37l35 2c31 2 36 10 36 64v219c0 59 -3 68 -26 70l-45 3v36c63 8 81 11 113 21l70 22l10 -6v-95l44 48c38 41 57 53 85 53c14 0 27 -2 37 -6'], + 0x1D42C: [471,17,444,39,405,'405 155c0 -103 -85 -172 -211 -172c-53 0 -97 8 -155 28l7 141h39l5 -69c31 -37 65 -52 112 -52c57 0 92 30 92 77c0 35 -17 52 -63 63l-86 21c-70 17 -106 59 -106 125c0 100 73 154 208 154c53 0 84 -6 123 -23l-8 -122h-36l-10 58c-3 20 -46 39 -87 39 c-55 0 -88 -25 -88 -65c0 -32 16 -47 55 -56l82 -18c90 -20 127 -57 127 -129'], + 0x1D42D: [632,17,333,22,324,'324 60l-49 -59c-9 -11 -34 -18 -65 -18c-87 0 -124 38 -124 127v259l-64 -4v22l66 43v60c0 21 -1 39 -4 92c51 19 82 31 122 50l14 -10c-9 -50 -12 -83 -12 -136v-58c38 0 76 2 114 6l-8 -65h-106v-238c0 -49 15 -65 62 -65c16 0 25 3 46 13'], + 0x1D42E: [471,17,611,25,583,'583 -3c-34 2 -67 3 -101 3c-32 0 -63 -1 -95 -3l5 83l-76 -74c-15 -15 -40 -23 -69 -23c-97 0 -151 56 -151 157v179c0 59 -3 68 -26 70l-45 3v36c63 8 80 11 113 21l70 22l10 -6v-261c0 -96 21 -131 78 -131c53 0 96 40 96 90v156c0 59 -3 68 -26 70l-45 3v36 c62 8 80 11 113 21l70 22l10 -6v-365c0 -54 4 -62 36 -64l33 -2v-37'], + 0x1D42F: [459,3,556,11,545,'545 421l-30 -5c-17 -3 -26 -12 -36 -34l-128 -288c-12 -27 -22 -52 -38 -97h-86l-143 360c-17 43 -31 61 -48 62l-25 2v38l130 -3l129 3v-38l-41 -2c-15 -1 -23 -7 -23 -17c0 -11 4 -26 14 -51l88 -221l35 80l61 151c6 15 9 29 9 41c0 9 -9 16 -23 17l-38 2v38 c32 -2 65 -3 97 -3s64 1 96 3v-38'], + 0x1D430: [471,3,833,13,820,'820 421l-34 -2c-14 -1 -24 -14 -36 -47l-92 -260c-28 -80 -35 -115 -35 -115h-81l-132 307c-76 -150 -87 -174 -137 -307h-79l-107 384c-8 27 -18 37 -41 38l-33 2v38l136 -3l135 3v-38l-47 -2c-11 0 -19 -9 -19 -22c0 -5 1 -15 2 -19l59 -227l57 125l87 195h50 l138 -317c17 46 27 73 39 112l36 113c1 4 3 15 3 19c0 12 -12 20 -29 21l-42 2v38c34 -2 67 -3 101 -3s67 1 101 3v-38'], + 0x1D431: [471,3,500,20,483,'483 -3c-26 2 -51 3 -77 3s-52 -1 -78 -3l-100 169l-64 -88l-52 -78h-91v34c31 2 50 11 69 36l110 140l-80 136c-26 44 -44 58 -77 58c-3 0 -10 0 -15 -1l-8 36c37 7 111 23 146 32c20 -16 39 -39 62 -77l52 -85l108 150h95v-37c-37 -1 -47 -7 -78 -43l-97 -114l89 -152 c34 -58 55 -76 86 -79v-37'], + 0x1D432: [459,266,556,10,546,'546 421l-26 -5c-14 -3 -29 -20 -41 -47l-199 -463c-51 -118 -106 -172 -176 -172c-23 0 -46 5 -73 17l18 95l11 4c23 -26 44 -37 70 -37c34 0 69 34 92 91l23 56l-158 404c-15 38 -27 54 -42 55l-35 2v38l133 -3l132 3v-38l-35 -2c-15 -1 -26 -10 -26 -23 c0 -17 11 -37 17 -53l84 -218l101 252c2 5 4 16 4 22c0 11 -11 19 -27 20l-33 2v38c31 -2 62 -3 93 -3s62 1 93 3v-38'], + 0x1D433: [457,3,500,16,464,'464 155c-7 -48 -12 -109 -12 -153l-5 -5l-273 3l-158 -3v33l104 136l170 238h-118c-56 0 -70 -11 -76 -59l-3 -25h-38l3 134l7 3l236 -3l153 3v-33l-268 -369h163c48 0 61 12 70 69l5 31h40'], + 0x1D434: [705,3,722,-19,677,'677 -3l-122 3l-122 -3v28l44 3c28 2 43 11 43 27c0 5 -1 13 -2 22l-27 200h-246l-102 -175c-20 -34 -26 -47 -26 -55c0 -9 14 -18 31 -19l52 -3v-28c-35 2 -71 3 -107 3l-112 -3v30l20 5c34 8 53 24 88 80l373 593h46l87 -625c6 -45 9 -47 56 -52l26 -3v-28zM486 313 l-37 288l-179 -288h216'], + 0x1D435: [692,3,611,26,559,'559 562c0 -51 -24 -97 -69 -137c-32 -27 -56 -40 -113 -60c69 -10 99 -19 125 -40c27 -22 41 -55 41 -98c0 -76 -44 -144 -123 -191c-47 -28 -94 -39 -142 -39c-54 0 -107 3 -161 3c-30 0 -61 -1 -91 -3l5 26c42 7 55 14 58 32l87 504c5 30 9 62 9 76 c0 18 -11 26 -35 27l-53 2l3 28l151 -3c50 0 100 3 150 3c77 0 158 -48 158 -130zM455 211c0 87 -50 129 -153 129h-85l-51 -299c16 -1 28 -2 34 -3c33 -3 62 -4 82 -4c100 0 173 74 173 177zM473 544c0 75 -40 111 -121 111c-27 0 -53 -5 -80 -5l-49 -274h52 c124 0 198 63 198 168'], + 0x1D436: [706,18,667,45,651,'651 665c-14 -46 -22 -89 -27 -146h-27v84c-56 36 -107 50 -179 50c-79 0 -143 -24 -190 -72c-61 -62 -95 -160 -95 -272c0 -178 85 -274 243 -274c78 0 130 17 224 75l10 -7l-10 -36c-91 -62 -161 -85 -257 -85c-192 0 -298 108 -298 302c0 153 60 271 177 350 c70 47 152 72 234 72c62 0 118 -12 195 -41'], + 0x1D437: [692,3,778,28,741,'741 431c0 -166 -96 -317 -252 -397c-52 -26 -101 -37 -173 -37l-195 3c-31 0 -62 -1 -93 -3l5 26c19 5 49 9 53 32l87 504c5 30 9 62 9 76c0 18 -11 26 -35 27l-53 2l3 28l123 -3l204 3c84 0 180 -17 226 -50c61 -43 91 -113 91 -211zM649 415c0 164 -83 240 -265 240 c-39 0 -77 -5 -116 -5l-96 -557c-3 -18 -4 -25 -4 -37c68 -10 117 -15 161 -15c87 0 160 28 214 83c68 69 106 174 106 291'], + 0x1D438: [692,3,611,30,570,'570 689c-11 -38 -18 -88 -21 -152h-24l-8 89c-1 15 -42 24 -107 24c-99 -2 -74 -2 -130 -4c-4 -8 -6 -16 -9 -32l-42 -238h37l219 6l4 -7l-19 -45c-31 1 -6 4 -132 4h-117l-43 -253c-2 -12 -2 -23 -2 -35c63 -6 90 -7 131 -7c60 0 131 5 150 10c21 5 30 17 39 52l16 60 h27c-8 -41 -16 -83 -21 -125l-4 -36c-39 -1 -19 -3 -105 -3l-225 3l-154 -3l5 26c44 7 57 14 60 32l87 504c6 32 9 62 9 77c0 17 -11 25 -35 26l-54 2l3 28l160 -3l236 3c23 0 47 -1 69 -3'], + 0x1D439: [692,3,556,0,548,'548 689c-11 -38 -18 -89 -21 -152h-24l-8 89c-1 15 -41 24 -103 24c-126 -5 -103 -4 -123 -4c-5 -11 -6 -16 -9 -32l-46 -271h37l219 6l4 -7l-19 -45c-31 1 -6 4 -132 4h-117l-36 -223c-1 -4 -2 -15 -2 -21c0 -20 9 -28 36 -29l64 -3l-3 -28l-138 3l-127 -3l4 28l36 3 c41 3 42 5 58 97l75 434c5 30 9 62 9 76c0 17 -11 26 -35 27l-56 2l3 28l152 -3l235 3c17 0 45 -1 67 -3'], + 0x1D43A: [706,18,722,50,694,'694 272l-2 -26l-32 -6c-13 -2 -25 -12 -27 -21l-23 -135c-2 -13 0 -27 2 -40l-4 -7c-13 -2 -30 -6 -56 -15c-66 -22 -127 -40 -197 -40c-196 0 -305 105 -305 292c0 150 62 274 179 358c72 51 145 74 237 74c69 0 126 -11 209 -41c-14 -46 -22 -89 -27 -146h-27v84 c-56 36 -110 50 -187 50c-83 0 -148 -24 -197 -74c-64 -64 -99 -165 -99 -282c0 -177 86 -270 252 -270c54 0 93 9 138 33l18 93c5 24 7 44 7 59c0 24 -9 28 -84 32l-34 2l5 26l129 -3'], + 0x1D43B: [692,3,778,-3,800,'800 692l-3 -28l-36 -3c-38 -3 -44 -9 -51 -48l-92 -520c-3 -17 -4 -26 -4 -35c0 -21 10 -29 36 -30l58 -3l-3 -28l-132 3l-141 -3l4 28l50 3c22 1 33 6 37 14c5 6 12 34 21 83l40 215l-184 3l-184 -3l-42 -247c-3 -19 -4 -26 -4 -35c0 -21 9 -28 36 -30l49 -3l-3 -28 l-123 3l-132 -3l4 28l41 3c40 3 42 5 58 97l74 434c5 31 9 62 9 76c0 18 -11 26 -35 27l-47 2l3 28l141 -3l114 3l-3 -28l-42 -3c-37 -3 -44 -9 -51 -48l-42 -228h370l30 174c5 30 9 62 9 76c0 18 -11 26 -35 27l-48 2l3 28l143 -3c36 0 71 1 107 3'], + 0x1D43C: [692,3,333,7,354,'354 692l-3 -28l-35 -3c-39 -3 -44 -9 -51 -48l-89 -535c-1 -5 -2 -14 -2 -21c0 -20 9 -27 36 -29l52 -3l-3 -28l-126 3l-126 -3l3 28l36 3c40 3 43 8 58 97l72 434c4 22 9 68 9 77c0 17 -11 25 -35 26l-47 2l3 28l136 -3'], + 0x1D43D: [692,206,333,-35,358,'358 692l-3 -28l-42 -3c-38 -3 -45 -10 -51 -48l-85 -559c-9 -62 -18 -94 -34 -132c-34 -81 -86 -128 -140 -128c-12 0 -24 3 -35 10l-3 26c8 -3 17 -4 29 -4c47 0 77 50 92 153l95 643c1 5 1 8 1 13c0 18 -11 26 -35 27l-47 2l3 28l141 -3'], + 0x1D43E: [692,3,667,13,683,'683 665h-21c-17 0 -38 -10 -54 -25l-292 -273l246 -302c21 -26 41 -38 64 -38h20v-30c-22 2 -45 3 -68 3s-46 -1 -69 -3c-105 143 -128 172 -278 343l-43 -262c-1 -4 -2 -15 -2 -21c0 -20 9 -27 36 -29l49 -3l-3 -28l-123 3l-132 -3l4 28l41 3c40 3 42 5 58 97l73 434 c6 33 9 62 9 76c0 18 -11 26 -35 27l-47 2l3 28l141 -3l114 3l-3 -28l-42 -3c-37 -3 -44 -10 -51 -48l-45 -260c64 50 105 86 149 131l128 130c28 28 38 41 38 49v29c22 -2 44 -3 67 -3s45 1 68 3v-27'], + 0x1D43F: [692,3,556,16,523,'523 165c-13 -62 -24 -140 -23 -165c-35 -3 -64 -3 -105 -3l-225 3l-154 -3l5 26c44 7 57 14 60 32l86 504c6 33 9 62 9 77c0 17 -11 25 -35 26l-47 2l3 28l135 -3l120 3l-3 -28l-42 -3c-37 -3 -44 -10 -51 -48l-92 -532c-2 -12 -2 -23 -2 -35c62 -6 87 -7 142 -7 c56 0 132 5 144 11c10 4 18 21 27 53l17 62h31'], + 0x1D440: [692,18,944,-19,940,'940 692l-3 -28l-38 -2c-29 -2 -45 -12 -46 -31l-41 -531l-1 -37c-1 -21 18 -32 54 -35l37 -3l-3 -28l-133 3l-134 -3l3 28l31 3c51 5 65 11 67 39l37 520l-52 -87l-239 -414l-57 -104h-23l-149 578l-124 -464c-5 -18 -7 -31 -7 -41c0 -15 17 -24 49 -27l38 -3l-3 -28 c-36 2 -73 3 -110 3l-112 -3l3 26c55 5 71 18 86 70l145 509c2 7 3 14 3 20c0 26 -18 36 -70 40l-26 2l3 28c27 -2 55 -3 83 -3s56 1 84 3l150 -578l246 422c85 146 66 119 85 156c27 -2 55 -3 83 -3s56 1 84 3'], + 0x1D441: [692,11,778,2,804,'804 692l-5 -28l-37 -2c-37 -2 -41 -7 -60 -120l-94 -553h-50l-338 577l-80 -464c-2 -11 -3 -22 -3 -30c0 -33 9 -41 49 -44l42 -3l-5 -28c-36 2 -73 3 -110 3l-111 -3l5 28l31 3c36 3 42 12 54 74l88 474c2 6 5 23 5 30c0 8 -15 27 -30 39c-11 9 -33 16 -50 17l-35 2 l5 28c27 -2 54 -3 81 -3s54 1 81 3l345 -589l80 489c2 13 5 39 5 46c0 16 -10 23 -36 24l-47 2l5 28c35 -2 70 -3 105 -3c37 0 73 1 110 3'], + 0x1D442: [706,18,778,53,748,'748 425c0 -158 -78 -305 -204 -383c-65 -41 -136 -60 -221 -60c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM660 409c0 110 -32 185 -97 223c-33 20 -82 32 -130 32c-76 0 -136 -23 -183 -71c-69 -69 -109 -186 -109 -316 c0 -167 75 -253 219 -253c78 0 143 26 192 76c68 70 108 183 108 309'], + 0x1D443: [692,3,611,9,594,'594 541c0 -136 -110 -253 -239 -253c-29 0 -49 5 -86 23l-2 31c37 -14 57 -19 79 -19c88 0 160 88 160 196c0 93 -49 137 -151 137c-19 0 -35 -2 -71 -8c-3 -13 -6 -23 -7 -28c-5 -19 -9 -40 -9 -40l-82 -487c-3 -19 -4 -26 -4 -35c0 -21 10 -29 36 -30l65 -3l-3 -28 l-139 3l-132 -3l4 28l41 3c40 3 42 6 58 97l74 434c5 31 9 62 9 76c0 18 -11 26 -35 27l-55 2l3 28l166 -3c46 0 92 3 138 3c87 0 182 -50 182 -151'], + 0x1D444: [706,201,778,53,748,'708 -61c-10 -97 -46 -140 -121 -140c-40 0 -58 6 -118 37l-145 76c-39 21 -67 29 -96 29c-53 0 -77 -36 -77 -113l-24 13c-1 8 -1 17 -1 17c-4 76 51 127 125 127c23 0 41 -4 66 -14l236 -96c26 -10 45 -15 62 -15c40 0 62 25 68 79h25zM748 425 c0 -158 -78 -305 -204 -383c-65 -41 -136 -60 -221 -60c-176 0 -270 101 -270 290c0 251 174 434 411 434c180 0 284 -103 284 -281zM660 409c0 110 -32 185 -97 223c-33 20 -82 32 -130 32c-76 0 -136 -23 -183 -71c-69 -69 -109 -186 -109 -316c0 -167 75 -253 219 -253 c78 0 143 26 192 76c68 70 108 183 108 309'], + 0x1D445: [692,3,667,9,639,'639 -3c-19 2 -38 3 -58 3c-25 0 -49 -1 -74 -3c-75 127 -106 175 -240 370l3 11h44c104 0 182 70 182 165c0 74 -46 113 -133 113c-27 0 -47 -2 -76 -8l-7 -28l-9 -40l-85 -487c-3 -17 -4 -26 -4 -35c0 -20 9 -28 36 -30l49 -3l-3 -28l-123 3l-132 -3l4 28l41 3 c40 3 42 6 58 97l75 434c5 30 9 62 9 76c0 18 -11 26 -35 27l-56 2l3 28l151 -3c50 0 100 3 150 3c83 0 175 -46 175 -132c0 -61 -31 -116 -89 -158c-36 -26 -65 -38 -120 -48l184 -275c28 -42 40 -50 80 -55v-27'], + 0x1D446: [706,18,556,42,506,'506 672c-14 -43 -21 -81 -25 -135h-30v76c-30 32 -63 45 -112 45c-92 0 -159 -63 -159 -150c0 -66 30 -103 96 -117l65 -14c101 -22 144 -64 144 -143c0 -136 -133 -252 -288 -252c-53 0 -105 13 -155 38c11 52 18 97 24 152h30v-99c44 -31 82 -43 136 -43 c103 0 174 65 174 161c0 58 -26 92 -81 105l-95 23c-84 20 -122 67 -122 152c0 59 21 109 63 151c54 53 129 84 203 84c48 0 86 -10 132 -34'], + 0x1D447: [692,3,611,53,635,'635 692l-27 -164h-28l4 64c1 10 -1 29 -4 37c-3 12 -39 17 -117 17h-73l-94 -553c-4 -21 -4 -25 -4 -35c0 -21 10 -29 36 -30l59 -3l-3 -28l-133 3l-142 -3l4 28l51 3c40 2 43 6 58 97l86 521h-112c-37 0 -75 -6 -81 -13s-13 -23 -18 -45l-15 -60h-29l18 164l282 -3'], + 0x1D448: [692,19,778,88,798,'798 692l-3 -28l-36 -3c-38 -3 -45 -10 -51 -48l-85 -507c-6 -38 -6 -40 -6 -56c0 -13 9 -19 32 -21l60 -4l-5 -28c-28 2 -56 3 -85 3c-30 0 -59 -1 -89 -3l-5 5c13 55 19 81 27 127c-52 -60 -83 -84 -143 -114c-48 -24 -88 -34 -133 -34c-112 0 -179 61 -179 164 c0 16 2 39 6 61l64 375c4 23 7 48 7 58c0 17 -8 22 -34 23l-52 2l3 28c30 -2 60 -3 90 -3s59 1 89 3l-88 -477c-6 -31 -7 -42 -7 -60c0 -72 53 -116 139 -116c87 0 166 45 242 138l71 445c4 27 -4 39 -34 40l-48 2l3 28l137 -3'], + 0x1D449: [692,8,722,75,754,'754 664l-18 -2c-29 -3 -37 -11 -62 -51l-378 -619h-49l-88 622c-5 37 -15 44 -59 48l-25 2v28l124 -3l124 3v-28l-42 -2c-28 -1 -46 -7 -42 -38l71 -528l291 492c12 20 16 31 16 42c0 19 -19 29 -57 32l-26 2v28l124 -3c32 0 64 1 96 3v-28'], + 0x1D44A: [700,8,944,71,980,'980 664l-20 -2c-22 -2 -37 -14 -43 -31l-171 -507c-13 -39 -20 -66 -31 -106l-7 -26h-51c-13 61 -24 110 -39 162l-112 392l-224 -444c-18 -36 -36 -75 -50 -110h-50c-1 52 -3 100 -8 166l-32 430c-4 57 -12 69 -53 74l-18 2v28l111 -3l121 3v-28l-37 -2 c-32 -2 -47 -16 -45 -46l31 -484l224 456l52 112h18l158 -572l147 462c6 18 9 36 9 49c0 14 -12 22 -41 23l-39 2l5 28c32 -2 65 -3 98 -3c32 0 65 1 97 3v-28'], + 0x1D44B: [692,3,722,20,734,'734 664l-28 -2c-26 -2 -36 -8 -65 -42l-221 -252l171 -307c14 -24 27 -31 68 -34l25 -2v-28l-133 3l-135 -3v28c45 4 35 3 54 4c25 2 32 3 32 11c0 9 -5 22 -14 40l-119 226l-182 -231c-6 -8 -10 -17 -10 -25c0 -12 17 -18 55 -22l32 -3v-28l-119 3l-125 -3v28l28 3 c24 3 47 15 62 33l238 282l-146 270c-20 37 -32 45 -81 49l-26 2v28l133 -3l133 3v-28l-37 -2c-30 -2 -43 -8 -43 -20c0 -8 5 -20 14 -38l104 -199l161 196c18 22 23 31 23 42c0 12 -13 17 -45 19l-33 2v28l115 -3l114 3v-28'], + 0x1D44C: [705,3,667,52,675,'675 697l-6 -71c-59 -10 -101 -40 -159 -114c-74 -93 -139 -211 -148 -266l-26 -168c-1 -5 -2 -15 -2 -21c0 -20 9 -27 36 -29l49 -3l-3 -28l-123 3l-139 -3l4 28l48 3c40 3 43 6 58 97l22 132c0 16 -38 153 -62 220c-41 112 -77 158 -124 158c-11 0 -22 -3 -45 -12 l-3 24l79 58c92 -1 140 -89 215 -395c28 74 66 143 128 226c74 101 128 142 201 161'], + 0x1D44D: [692,3,667,20,637,'637 672l-504 -633h281c44 0 82 4 127 13c10 26 6 8 32 90l7 22h26c-13 -69 -21 -126 -23 -167l-322 3l-241 -3v22l502 633h-180c-86 0 -124 -3 -180 -13l-6 -20c-12 -39 -18 -64 -21 -86h-26c8 73 11 112 11 158l118 1l237 -3l162 3v-20'], + 0x1D44E: [482,11,444,4,406,'406 85c-82 -68 -123 -96 -146 -96c-15 0 -24 14 -24 37c0 16 2 33 6 51l29 127c-55 -78 -95 -125 -138 -162c-37 -32 -74 -53 -95 -53c-19 0 -34 34 -34 77c0 80 31 199 75 288c25 49 57 79 120 110c27 13 47 18 75 18c27 0 46 -4 85 -19l33 18l10 -9l-92 -379 c-1 -3 -1 -6 -1 -10c0 -16 5 -24 15 -24c15 0 30 9 62 36c5 4 6 5 13 11zM319 414c-43 15 -62 19 -85 19c-49 0 -73 -18 -97 -76c-35 -83 -61 -194 -61 -258c0 -27 6 -40 18 -40c33 0 96 61 151 145c33 51 52 103 74 210'], + 0x1D44F: [733,11,463,37,433,'433 376c0 -132 -66 -269 -162 -337c-43 -31 -94 -50 -131 -50c-55 0 -103 33 -103 72c0 3 0 7 1 10l101 551c1 6 2 17 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42l12 -11l-86 -398c62 79 95 109 146 136c28 14 58 22 82 22c15 0 28 -5 35 -14 c12 -15 21 -54 21 -92zM361 352c0 49 -13 72 -39 72c-29 0 -81 -29 -114 -63c-40 -42 -64 -90 -83 -170c-9 -37 -13 -65 -13 -90c0 -42 25 -65 71 -65c54 0 94 32 127 101c30 65 51 151 51 215'], + 0x1D450: [482,11,407,25,389,'389 458c-9 -26 -16 -63 -24 -128h-23v60c0 24 -36 43 -81 43c-32 0 -57 -8 -78 -26c-48 -39 -82 -142 -82 -248c0 -79 29 -119 85 -119c35 0 73 17 145 65l15 10l8 -20l-50 -41c-55 -45 -103 -65 -157 -65c-80 0 -122 51 -122 147c0 107 38 211 95 261s128 85 173 85 c38 0 71 -8 96 -24'], + 0x1D451: [733,11,500,17,483,'483 722l-126 -594c-6 -29 -8 -38 -8 -46c0 -14 6 -23 14 -23c9 0 25 7 39 17l44 31l10 -19l-81 -60c-34 -25 -58 -39 -75 -39s-26 14 -26 35c0 26 5 58 16 102l23 91c-67 -101 -100 -140 -154 -184c-34 -27 -71 -44 -98 -44c-29 0 -44 32 -44 97c0 84 20 179 51 237 c46 87 140 159 209 159c25 0 52 -5 82 -14l28 154c1 7 2 16 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42zM349 410c-33 17 -62 23 -106 23c-27 0 -46 -5 -59 -15c-49 -38 -95 -194 -95 -320c0 -25 9 -39 25 -39c19 0 59 24 94 57c62 59 111 147 129 235'], + 0x1D452: [482,11,389,15,374,'374 404c0 -62 -39 -107 -124 -145c-26 -11 -52 -21 -69 -25l-82 -20c-6 -29 -8 -54 -8 -80c0 -61 28 -98 76 -98c36 0 84 20 137 58l24 17l8 -19c-93 -75 -148 -103 -205 -103c-72 0 -116 46 -116 123c0 70 31 190 61 239c40 64 149 131 214 131c51 0 84 -31 84 -78z M300 388c0 32 -19 52 -48 52c-25 0 -57 -13 -76 -31c-27 -25 -47 -68 -63 -135l-9 -37c45 10 81 22 109 35c52 25 87 72 87 116'], + 0x1D453: [733,276,278,-162,413,'413 720l-5 -15l-23 -67l-10 -4c-15 24 -42 39 -72 39c-46 0 -74 -38 -90 -124l-21 -112h16c49 0 60 0 84 7l7 2l4 -7c-6 -14 -13 -37 -17 -56h-104c-6 -33 -14 -63 -19 -88c-74 -352 -95 -421 -156 -493c-39 -47 -93 -78 -134 -78c-11 0 -26 3 -35 8c5 9 19 57 23 80 l14 4c17 -22 29 -29 52 -29c36 0 65 31 84 90c22 69 58 255 89 450l9 56h-81l5 22c25 9 45 17 86 37l15 79c11 57 23 87 45 109c23 24 105 85 129 96c8 4 24 7 35 7c24 0 53 -5 70 -13'], + 0x1D454: [482,276,500,-37,498,'498 427l-9 -45c-23 -3 -33 -4 -50 -4h-34l1 -3c3 -15 3 -24 3 -33c0 -89 -71 -172 -169 -196c-2 -3 -3 -4 -6 -8c-15 -19 -21 -29 -21 -38c0 -19 13 -38 47 -65l60 -49c43 -35 64 -71 64 -107c0 -83 -113 -155 -242 -155c-109 0 -179 46 -179 117c0 40 19 79 53 107 c37 31 68 46 144 71c-14 12 -21 23 -21 33c0 14 11 32 27 47l41 38c-11 -1 -22 -1 -30 -1c-77 0 -122 46 -122 123c0 71 29 129 85 171c44 33 94 52 135 52c21 0 46 -5 67 -13c25 -10 35 -19 51 -45c54 0 74 2 102 9zM318 -154c0 33 -19 60 -65 96l-77 59 c-51 -15 -73 -25 -99 -46c-32 -27 -50 -62 -50 -100c0 -61 57 -103 139 -103c83 0 152 42 152 94zM337 341c0 71 -29 107 -87 107c-73 0 -124 -65 -124 -160c0 -79 32 -120 93 -120c70 0 118 70 118 173'], + 0x1D456: [670,9,278,34,266,'241 85c-97 -72 -134 -94 -160 -94c-19 0 -30 15 -30 39c0 20 4 45 13 77l66 240c4 15 8 36 8 44c0 12 -7 21 -17 21c-9 0 -19 -4 -48 -23l-32 -21l-7 20l28 20c76 54 112 74 134 74c17 0 25 -9 25 -26c0 -9 -2 -19 -6 -36l-77 -304c-6 -22 -7 -30 -7 -40 c0 -11 6 -20 13 -20c10 0 31 10 61 30l26 17zM266 629c0 -38 -23 -67 -54 -67c-25 0 -40 16 -40 41c0 34 28 67 58 67c21 0 36 -17 36 -41'], + 0x1D457: [670,276,278,-70,273,'228 457c0 -5 -2 -20 -6 -37l-76 -350c-29 -132 -43 -181 -64 -228c-36 -78 -75 -118 -114 -118c-15 0 -28 2 -38 7l8 57c22 -13 39 -19 53 -19c18 0 36 35 47 87l100 495c3 13 7 27 7 40s-8 23 -18 23c-15 0 -33 -19 -47 -25l-32 -21l-7 20l28 20c76 54 112 74 134 74 c16 0 25 -9 25 -25zM273 629c0 -38 -23 -67 -54 -67c-25 0 -40 16 -40 41c0 34 28 67 58 67c21 0 36 -17 36 -41'], + 0x1D458: [733,9,444,8,449,'449 473l-17 -63c-17 4 -28 6 -36 6c-50 0 -96 -25 -157 -86l-14 -14c39 -123 61 -177 96 -241c9 -17 16 -23 26 -23c8 0 15 2 29 10l43 24l8 -19l-46 -32c-44 -31 -68 -44 -81 -44c-25 0 -57 68 -126 268c-34 -34 -58 -79 -67 -127l-23 -124l-67 -17l-9 10 c52 209 69 278 82 353l48 268c1 7 2 16 2 24c0 17 -10 24 -34 24h-48l4 21c72 7 108 16 160 42l12 -11l-107 -492c125 175 208 252 274 252c12 0 30 -3 48 -9'], + 0x1D459: [733,9,278,36,251,'251 722l-129 -609c-3 -12 -6 -24 -6 -37c0 -11 6 -20 13 -20c10 0 31 10 61 30l26 17l10 -18c-97 -72 -134 -94 -160 -94c-19 0 -30 15 -30 39c0 22 5 50 19 102l96 468c2 12 6 35 6 48c0 15 -10 22 -34 22h-48l4 21c72 7 108 16 160 42'], + 0x1D45A: [482,9,778,24,740,'740 85c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 22 5 48 13 76l43 157c24 87 25 101 25 125c0 16 -5 25 -13 25c-32 0 -82 -35 -137 -96c-44 -49 -78 -124 -94 -205l-21 -107l-69 -15l-5 11l16 67c42 175 63 289 63 324c0 13 -4 21 -11 21 c-28 0 -73 -30 -115 -76c-55 -60 -82 -119 -106 -230l-22 -102l-68 -15l-3 11c41 143 82 336 82 387c0 15 -7 25 -18 25c-7 0 -11 -1 -47 -25l-32 -21l-7 20l28 20c74 53 112 74 133 74c14 0 23 -12 23 -31c0 -12 -2 -27 -6 -43l-33 -133c65 88 85 109 129 143 c55 42 101 64 131 64c16 0 26 -12 26 -31c0 -7 -3 -22 -7 -42l-30 -137c49 69 84 104 147 149c61 43 99 61 128 61c16 0 26 -11 26 -28c0 -8 -3 -24 -7 -41l-75 -297c-5 -21 -7 -30 -7 -40c0 -11 6 -20 13 -20c10 0 32 11 61 30l26 17'], + 0x1D45B: [482,9,556,24,514,'514 85c-98 -73 -134 -94 -160 -94c-19 0 -30 15 -30 40c0 16 4 39 13 76l52 212c8 32 11 53 11 71c0 15 -6 24 -17 24c-45 0 -119 -62 -174 -146c-45 -69 -67 -134 -86 -260c-22 -4 -45 -10 -70 -17l-7 11c41 143 82 336 82 387c0 15 -7 25 -18 25c-7 0 -11 -1 -47 -25 l-32 -21l-7 20l28 20c73 52 112 74 133 74c15 0 23 -12 23 -33c0 -11 -2 -23 -6 -41l-38 -161c52 73 80 107 118 142c59 55 128 93 170 93c20 0 31 -13 31 -36c0 -17 -4 -45 -11 -74l-66 -276c-1 -4 -2 -15 -2 -20c0 -11 6 -20 13 -20c10 0 32 11 61 30l26 17'], + 0x1D45C: [482,11,444,17,411,'411 331c0 -101 -44 -215 -106 -274c-45 -42 -105 -68 -160 -68c-83 0 -128 57 -128 163c0 122 45 223 126 281c45 32 92 49 135 49c83 0 133 -57 133 -151zM335 315c0 84 -33 129 -94 129c-24 0 -47 -6 -60 -17c-49 -40 -88 -163 -88 -276c0 -79 34 -124 92 -124 c31 0 57 12 75 33c44 53 75 159 75 255'], + 0x1D45D: [482,276,500,-7,465,'465 371c0 -75 -34 -185 -75 -246c-43 -63 -158 -136 -214 -136c-11 0 -26 2 -52 11l-9 3l-42 -262c-32 -5 -52 -10 -73 -17l-7 6l8 37l49 241l58 343c2 10 4 30 4 38c0 14 -7 23 -17 23c-9 0 -20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 133 74 c14 0 22 -11 22 -30c0 -12 -2 -27 -5 -44l-24 -119c36 59 57 84 97 120c53 46 105 73 147 73c36 0 59 -44 59 -111zM393 356c0 46 -12 68 -38 68c-83 0 -190 -131 -212 -259l-18 -106c26 -16 51 -23 82 -23c41 0 73 15 93 44c53 76 93 195 93 276'], + 0x1D45E: [482,276,463,24,432,'432 474c-10 -31 -16 -57 -27 -118l-86 -456c-9 -50 -15 -105 -19 -159c-24 -3 -55 -9 -86 -17l-9 14c12 13 23 33 27 57l76 414c-37 -66 -103 -136 -167 -184l-8 -6c-31 -23 -51 -30 -73 -30c-24 0 -36 30 -36 89c0 103 39 249 79 296c22 25 66 61 102 83 c28 17 52 25 79 25c29 0 58 -7 101 -24l33 22zM351 406c-48 21 -69 27 -97 27c-32 0 -61 -9 -73 -24c-42 -50 -85 -200 -85 -296c0 -33 8 -54 22 -54c29 0 90 47 142 111c37 46 59 90 70 141'], + 0x1D45F: [482,9,389,26,384,'384 476c-8 -41 -13 -73 -16 -111h-14c-11 14 -21 19 -36 19c-22 0 -49 -21 -83 -65c-44 -57 -67 -110 -85 -193l-26 -120c-23 -4 -45 -8 -67 -15l-10 7c40 128 83 334 83 392c0 13 -7 22 -17 22c-9 0 -20 -5 -48 -23l-32 -21l-7 20l28 20c74 53 112 74 133 74 c15 0 23 -12 23 -32c0 -23 -7 -46 -12 -68l-26 -126c25 54 60 102 94 151c36 51 67 75 98 75c5 0 9 -1 20 -6'], + 0x1D460: [482,11,389,9,345,'345 455c-11 -51 -15 -78 -19 -113h-23v55c-16 27 -54 45 -95 45c-58 0 -102 -41 -102 -94c0 -41 19 -58 79 -69l43 -8c75 -14 106 -43 106 -97c0 -50 -21 -87 -72 -127s-97 -58 -146 -58c-35 0 -69 8 -107 27c11 46 17 81 22 132h25v-84c28 -24 58 -35 94 -35 c71 0 117 43 117 109c0 40 -16 57 -60 65l-63 12c-66 13 -97 45 -97 101c0 36 11 61 37 88c48 49 109 78 161 78c33 0 61 -8 100 -27'], + 0x1D461: [646,9,333,41,310,'310 440l-11 -50h-107l-13 -62c-31 -148 -43 -226 -43 -252c0 -12 5 -20 13 -20c12 0 31 9 61 30l45 31l10 -18c-19 -15 -13 -11 -31 -25c-79 -63 -113 -83 -148 -83c-19 0 -30 15 -30 40c0 26 8 51 13 76l56 283h-84l2 13c18 5 44 16 88 37l25 170c31 12 58 24 78 36 l11 -15c-18 -54 -29 -103 -45 -197c38 0 72 2 110 6'], + 0x1D462: [482,11,556,32,512,'512 85c-97 -72 -134 -96 -160 -96c-19 0 -30 17 -30 42c0 16 4 41 11 66l37 142c-84 -138 -205 -250 -268 -250c-20 0 -35 18 -35 40c0 16 2 38 4 48l63 297c1 5 2 13 2 18c0 11 -7 20 -17 20c-9 0 -19 -4 -48 -23l-32 -21l-7 20l28 20c75 54 112 74 133 74 c14 0 22 -12 22 -31c0 -13 -2 -27 -5 -43l-57 -271c-5 -26 -7 -37 -7 -52c0 -17 4 -26 13 -26c41 0 121 74 180 166c29 46 53 113 68 189l10 51l68 17l7 -9l-84 -357c-3 -12 -6 -27 -6 -40c0 -10 5 -17 13 -17c12 0 36 11 61 27l26 17'], + 0x1D463: [482,11,500,21,477,'477 384c0 -40 -17 -107 -39 -157c-31 -69 -79 -136 -126 -179c-46 -41 -84 -59 -126 -59c-64 0 -110 55 -110 132c0 100 42 183 153 303c-26 -3 -42 -4 -63 -4c-18 0 -37 2 -55 2c-24 0 -44 -11 -51 -28l-17 -42h-22c13 55 24 91 38 118c11 5 20 8 32 7 c41 -3 82 -7 123 -7c28 0 41 3 61 12l10 -18c-98 -122 -137 -213 -137 -318c0 -65 31 -107 80 -107c88 0 185 163 185 311c0 40 -16 63 -43 63c-9 0 -18 -3 -27 -9l-11 19l50 47c8 8 20 12 33 12c36 0 62 -41 62 -98'], + 0x1D464: [482,11,722,21,699,'699 384c0 -40 -17 -107 -39 -157c-62 -137 -167 -238 -248 -238c-45 0 -74 43 -74 106c0 23 3 48 12 92c-74 -143 -126 -198 -190 -198c-53 0 -88 55 -88 137c0 85 34 157 124 262c10 12 21 23 30 36c-25 -3 -38 -4 -59 -4c-19 0 -37 2 -56 2c-24 0 -44 -11 -51 -28 l-17 -42h-22c13 55 24 91 38 118c11 5 20 8 32 7c41 -3 82 -7 123 -7c28 0 41 3 61 12l10 -18c-99 -112 -140 -209 -140 -328c0 -58 23 -97 58 -97c30 0 68 41 108 116c29 54 43 94 55 156l29 149l74 22l7 -8l-52 -184c-12 -43 -21 -109 -21 -156c0 -55 21 -95 50 -95 c85 0 182 166 182 311c0 40 -16 63 -43 63c-9 0 -18 -3 -27 -9l-11 19l50 47c8 8 20 12 33 12c36 0 62 -41 62 -98'], + 0x1D465: [482,11,500,9,484,'484 472l-15 -85l-14 -4c-5 15 -17 23 -33 23c-31 0 -58 -23 -105 -88l-35 -49l18 -101c5 -29 16 -66 25 -85c10 -20 23 -30 38 -30c16 0 41 15 77 45l9 -19l-49 -44c-32 -29 -64 -46 -86 -46c-36 0 -58 39 -72 124l-11 69l-76 -117c-31 -47 -70 -76 -103 -76 c-12 0 -28 4 -43 12c1 7 2 10 4 22c6 32 8 45 8 65l20 3l11 -28c2 -5 13 -9 28 -9c28 0 62 32 105 99l40 62l-11 62c-17 98 -39 139 -72 139c-19 0 -39 -14 -69 -48l-17 10l58 83c9 13 31 21 57 21c59 0 86 -36 98 -135l6 -48l37 55c62 92 102 128 142 128c9 0 18 -3 30 -10 '], + 0x1D466: [482,276,500,-8,490,'490 473l-141 -440c-59 -185 -169 -309 -275 -309c-45 0 -82 35 -82 78c0 5 0 11 1 18l48 34l10 -4c-1 -9 -2 -17 -2 -22c0 -35 27 -62 62 -62c70 0 120 73 171 250l49 171c-75 -113 -159 -198 -196 -198c-25 0 -44 29 -43 71l1 40l17 243c1 16 5 67 -21 67 c-7 0 -20 -8 -25 -12l-50 -30l-11 18l82 56c48 33 62 40 75 40c17 0 24 -18 24 -63c0 -28 -2 -66 -4 -97l-15 -194c-1 -13 -3 -61 19 -61s71 44 106 95c33 49 68 122 80 169l35 132c22 2 45 8 74 19'], + 0x1D467: [482,11,444,-1,416,'416 473l-6 -32l-339 -382c36 15 63 21 95 21c19 0 53 -5 86 -12c22 -5 45 -11 67 -11c21 0 32 7 39 25l22 60h22c-11 -47 -19 -81 -30 -143c-29 -8 -38 -10 -50 -10c-27 0 -58 6 -118 20c-52 13 -80 17 -105 17c-35 0 -62 -9 -91 -32l-9 27l353 400 c-33 -17 -57 -23 -93 -23c-21 0 -47 3 -81 10c-20 4 -31 5 -45 5c-13 0 -22 -1 -39 -5l-30 -58h-21l32 122c24 7 44 10 61 10c27 0 54 -9 80 -16c48 -13 100 -21 134 -21c14 0 24 4 34 14l23 23'], + 0x1D468: [683,3,722,-35,685,'685 -3l-146 3l-155 -3v35l42 3c28 2 44 13 42 31l-25 198c-37 1 -67 3 -110 3l-111 -3l-86 -152c-14 -25 -19 -40 -19 -57c0 -12 13 -18 43 -20l44 -3l-5 -35l-124 3l-110 -3l5 35l34 3c18 2 34 13 47 35l363 613h96c3 -23 5 -48 8 -71l76 -522c5 -36 22 -52 54 -55 l37 -3v-35zM438 307l-38 266l-155 -266h193'], + 0x1D469: [682,3,667,8,629,'629 542c0 -40 -18 -82 -47 -108c-37 -33 -69 -49 -155 -75c65 -6 93 -15 124 -37c32 -24 50 -62 50 -108c0 -83 -57 -159 -147 -196c-36 -15 -74 -22 -122 -21l-186 3l-138 -3l5 32l28 3c31 3 40 15 48 60l87 502c1 7 2 15 2 21c0 21 -11 29 -46 31l-46 3l5 32l158 -3 c74 0 116 4 190 4c41 0 77 -5 105 -16c54 -22 85 -68 85 -124zM497 535c0 39 -10 63 -33 80c-19 14 -61 26 -97 24c0 0 -10 0 -17 -1l-39 -3l-47 -260h43c125 0 190 55 190 160zM469 208c0 41 -9 68 -30 88c-25 25 -67 39 -117 39c-22 0 -44 -2 -66 -3l-45 -281 c37 -6 75 -11 112 -11c91 0 146 64 146 168'], + 0x1D46A: [695,17,685,69,695,'695 652c-26 -92 -33 -121 -38 -168h-35l5 88c2 33 -82 64 -174 64c-151 0 -246 -141 -246 -364c0 -153 61 -224 192 -224c63 0 122 19 198 64l22 13l10 -9l-13 -39c-110 -69 -182 -94 -276 -94c-78 0 -146 21 -191 58c-53 45 -80 114 -80 209c0 247 194 445 435 445 c69 0 126 -13 191 -43'], + 0x1D46B: [682,3,778,0,747,'747 422c0 -122 -52 -243 -139 -322c-73 -67 -178 -106 -278 -103l-189 3l-141 -3l5 32l28 3c30 3 40 15 48 60l87 502c1 7 2 15 2 20c0 22 -11 30 -46 32l-46 3l5 32l160 -3c81 0 103 4 208 4c116 0 183 -24 234 -81c40 -45 62 -107 62 -179zM609 434 c0 87 -25 144 -76 174c-34 19 -71 32 -157 32c-5 0 -19 -1 -34 -2l-39 -3l-100 -584c63 -9 83 -11 111 -11c116 0 183 33 227 111c42 74 68 185 68 283'], + 0x1D46C: [681,3,611,11,606,'606 672l-25 -152h-32v53c0 34 -3 43 -12 47c-16 5 -111 14 -156 14c-9 0 -18 0 -27 -1l-39 -3l-45 -252h86l140 3l5 -9l-14 -47l-170 5h-55l-48 -274c35 -7 60 -7 98 -6c75 1 166 -15 186 48l22 70h36c-11 -45 -18 -79 -34 -168l-167 -3c-79 0 -124 4 -203 3l-141 -3 l5 32l28 3c30 3 40 15 48 60l87 502c1 7 2 15 2 21c0 21 -11 29 -46 31l-46 3l5 32l157 -3c71 0 112 3 183 3l162 -3'], + 0x1D46D: [681,3,556,-6,593,'593 672l-25 -152h-32v53c0 28 -2 38 -7 44c-11 9 -93 15 -119 15c-32 0 -60 1 -93 -2l-50 -286h86l140 3l5 -9l-14 -47l-170 5h-55l-36 -196c-3 -15 -4 -26 -4 -35c0 -21 9 -29 36 -30l63 -3l-5 -35l-165 3l-154 -3l5 35l43 3c32 2 44 19 58 97l82 462c1 7 2 15 2 20 c0 23 -10 30 -46 32l-50 3l5 32l159 -3c61 0 96 3 157 3l174 -3'], + 0x1D46E: [695,17,778,72,750,'750 286l-5 -33l-25 -2c-27 -2 -38 -13 -45 -45l-20 -96c-5 -24 -8 -38 -3 -62c-144 -52 -200 -65 -284 -65c-99 0 -177 26 -228 77c-46 45 -68 110 -68 196c0 184 105 336 280 405c59 23 114 34 171 34c73 0 130 -12 199 -43c-26 -92 -33 -121 -38 -168h-35l5 90 c1 31 -80 59 -172 59c-64 0 -128 -20 -166 -53c-63 -54 -106 -185 -106 -321c0 -148 66 -229 186 -229c47 0 87 10 121 29l32 141c2 8 3 17 3 23c0 19 -12 27 -44 28l-60 2l5 33l149 -3'], + 0x1D46F: [681,3,778,-12,826,'826 681l-5 -35l-42 -3c-35 -2 -45 -11 -53 -55l-87 -486c-3 -14 -4 -28 -4 -38c0 -19 12 -28 38 -29l55 -3l-5 -35l-168 3l-148 -3l5 35l49 3c34 2 38 10 54 97l37 206h-291l-41 -236c-3 -15 -4 -29 -4 -39c0 -18 11 -26 38 -28l49 -3l-5 -35l-150 3l-160 -3l5 35l49 3 c34 2 39 10 54 97l72 409c5 31 8 55 8 73c0 20 -9 27 -38 29l-51 3l5 35l157 -3l158 3l-5 -35l-42 -3c-34 -2 -45 -12 -53 -55l-39 -202h294l25 155c5 31 8 59 8 76s-11 24 -38 26l-51 3l5 35l152 -3'], + 0x1D470: [681,3,389,-1,412,'412 681l-4 -35l-45 -3c-33 -2 -40 -7 -46 -44l-87 -499c-2 -11 -3 -23 -3 -34c0 -22 10 -30 37 -31l59 -3l-4 -35l-163 3l-157 -3l4 35l49 3c33 2 39 12 54 97l72 409c6 36 9 57 9 72c0 19 -12 28 -38 30l-52 3l4 35l152 -3'], + 0x1D471: [681,207,389,-29,417,'417 681l-5 -35l-46 -3c-33 -2 -40 -8 -46 -44l-98 -556c-23 -131 -118 -250 -199 -250c-13 0 -30 3 -52 10v35c14 -6 23 -8 36 -8c25 0 44 13 56 39c8 17 10 30 21 96l96 576c5 29 10 67 10 73c0 18 -12 27 -38 29l-51 3l5 35l153 -3'], + 0x1D472: [681,3,722,-10,746,'746 648h-35c-17 0 -42 -16 -82 -52l-245 -223l196 -272c40 -55 47 -62 68 -65l39 -6l-3 -33s-56 3 -92 3c-37 0 -94 -3 -94 -3c-8 14 -10 17 -49 73l-129 183c-15 22 -34 45 -59 75l-40 -228c-2 -12 -3 -21 -3 -30c0 -25 8 -33 37 -35l49 -3l-4 -35l-150 3l-160 -3l4 35 l49 3c33 2 39 12 54 97l72 409c6 34 9 58 9 72c0 19 -12 28 -38 30l-52 3l4 35l152 -3l159 3l-4 -35l-45 -3c-33 -2 -40 -8 -46 -44l-47 -265c20 11 39 27 109 92l140 131c16 11 51 59 67 75c14 17 10 26 10 49c0 0 48 -3 79 -3s80 3 80 3v-33'], + 0x1D473: [681,3,611,26,578,'578 174c-19 -93 -26 -124 -34 -174l-172 -3c-78 0 -123 3 -201 3l-145 -3l4 32l28 3c29 3 38 14 46 60l82 449c6 32 9 58 9 74c0 17 -12 27 -38 28l-52 3l4 35l152 -3l159 3l-4 -35l-45 -3c-33 -2 -39 -8 -46 -44l-99 -543c24 -5 35 -6 62 -6c49 0 135 3 174 6 c34 3 48 14 57 42l23 76h36'], + 0x1D474: [681,17,944,-23,985,'985 681l-5 -32l-39 -3c-37 -3 -47 -15 -56 -69l-80 -467l-2 -8c-3 -19 -5 -30 -5 -37c0 -21 10 -29 36 -30l55 -3l-5 -35l-152 3l-155 -3l5 35l49 3c31 5 34 9 42 46l2 9c1 4 2 11 2 11l82 485l-291 -478l-71 -125h-25l-143 565l-107 -440c-8 -32 -8 -33 -8 -44 c0 -20 9 -28 34 -29l51 -3l-5 -35s-66 3 -108 3c-43 0 -109 -3 -109 -3l2 35l42 3c17 1 30 20 40 56l125 461c6 22 9 43 9 61c0 21 -16 31 -53 33l-45 3l5 32l110 -3l111 3l127 -507c170 267 229 364 308 507l113 -3'], + 0x1D475: [681,3,778,-2,829,'829 681l-6 -32l-37 -3c-19 -2 -26 -4 -34 -10c-8 -7 -13 -24 -30 -108l-86 -428c-7 -33 -11 -63 -16 -103h-85l-310 537l-73 -396c-5 -27 -8 -50 -8 -62c0 -26 12 -40 36 -41l51 -3l-5 -35l-112 3l-116 -3l2 35l48 3c22 1 32 15 40 56l98 491c2 10 -15 35 -33 47 c-14 9 -34 16 -50 17l-39 3l3 32s65 -3 107 -3s108 3 108 3l314 -539l74 400c3 19 6 48 6 70c0 21 -15 32 -46 34l-42 3l5 32l118 -3'], + 0x1D476: [695,17,833,76,794,'794 414c0 -244 -186 -431 -429 -431c-183 0 -289 104 -289 285c0 250 173 427 417 427c95 0 174 -29 228 -83c49 -49 73 -113 73 -198zM656 435c0 144 -60 217 -176 217c-86 0 -148 -36 -195 -115c-42 -70 -71 -191 -71 -298c0 -140 60 -213 174 -213 c85 0 153 43 201 127c42 73 67 179 67 282'], + 0x1D477: [681,3,667,11,673,'673 518c0 -131 -112 -237 -251 -237c-33 0 -61 5 -97 18l-2 35c24 -8 43 -12 66 -12c87 0 152 81 152 189c0 88 -44 127 -142 127c-18 0 -35 -1 -62 -3l-95 -535c-2 -11 -3 -23 -3 -34c0 -21 10 -30 37 -31l59 -3l-4 -35l-163 3l-157 -3l4 35l49 3c33 2 39 12 54 97 l82 462c1 7 2 15 2 20c0 23 -10 30 -46 32l-56 3l5 32l168 -3c76 0 118 3 194 3c97 0 206 -55 206 -163'], + 0x1D478: [695,222,833,76,794,'794 414c0 -244 -186 -431 -429 -431c-183 0 -289 104 -289 285c0 250 173 427 417 427c95 0 174 -29 228 -83c49 -49 73 -113 73 -198zM656 435c0 144 -60 217 -176 217c-86 0 -148 -36 -195 -115c-42 -70 -71 -191 -71 -298c0 -140 60 -213 174 -213 c85 0 153 43 201 127c42 73 67 179 67 282zM769 -53c-22 -108 -79 -169 -159 -169c-26 0 -44 6 -82 26l-199 107c-23 12 -48 19 -72 19c-47 0 -77 -39 -78 -98l-5 -2l-24 16c1 90 49 142 132 142c32 0 83 -14 138 -38l94 -41c60 -26 114 -42 143 -42c43 0 69 29 81 90'], + 0x1D479: [681,3,722,4,697,'697 -3c0 0 -60 3 -98 3c-33 0 -84 -3 -84 -3l-145 261c-19 34 -40 63 -61 95l5 17h55c92 0 158 67 158 159c0 77 -40 109 -137 109c-19 0 -36 -1 -62 -3l-93 -535c-2 -11 -3 -23 -3 -34c0 -21 10 -30 37 -31l59 -3l-4 -35l-163 3l-157 -3l4 35l49 3c33 2 39 12 54 97 l81 462c1 7 2 15 2 20c0 23 -10 30 -46 32l-46 3l5 32l170 -3c71 0 112 3 183 3c90 0 199 -48 199 -143c0 -58 -27 -108 -77 -140c-34 -22 -64 -33 -128 -45l156 -267c14 -25 39 -51 50 -52l37 -7v-30'], + 0x1D47A: [695,17,556,50,517,'517 651c-14 -51 -22 -99 -22 -147h-30v85c-41 35 -82 50 -134 50c-79 0 -135 -47 -135 -113c0 -59 31 -89 128 -125c83 -31 104 -42 133 -68c23 -21 38 -59 38 -94c0 -78 -44 -157 -114 -207c-49 -34 -102 -49 -171 -49c-70 0 -114 11 -160 40l21 166h27v-76 c26 -49 77 -74 152 -74c90 0 139 44 139 123c0 30 -9 56 -25 70c-19 18 -30 23 -98 48c-125 45 -162 84 -162 170c0 133 121 245 266 245c54 0 104 -15 147 -44'], + 0x1D47B: [681,3,611,56,674,'674 676l-30 -168h-38l4 84c1 26 -16 38 -57 38h-117l-95 -530c-3 -17 -4 -25 -4 -35c0 -21 9 -29 36 -30l59 -3l-5 -35l-168 3l-156 -3l5 35l53 3c32 2 44 18 58 97l85 498h-124c-20 0 -44 -10 -57 -24c-5 -7 -10 -19 -15 -40l-14 -58h-38l25 168l6 5l290 -3l290 3'], + 0x1D47C: [681,17,778,83,825,'825 681l-5 -35l-46 -3c-35 -2 -42 -8 -49 -44l-90 -499c-3 -17 -4 -25 -4 -35c0 -21 9 -29 36 -30l59 -3l-5 -35l-118 3c-41 0 -106 -3 -106 -3l-5 8l27 128c-58 -62 -81 -82 -116 -107c-38 -27 -85 -43 -132 -43c-63 0 -118 26 -149 70c-19 26 -28 60 -28 103 c0 24 3 49 8 78l58 307c8 44 11 51 11 76c0 16 -12 25 -37 26l-51 3l5 35s81 -4 132 -3c34 0 87 3 87 3l6 -7l-86 -460c-2 -11 -3 -22 -3 -35c0 -29 5 -54 14 -69c16 -28 52 -47 89 -47c29 0 58 9 94 30c48 27 97 71 100 89l65 359c9 49 11 65 11 76c0 16 -12 25 -37 26 l-51 3l5 35l152 -3'], + 0x1D47D: [681,3,667,67,745,'745 681l-3 -35l-26 -3c-21 -2 -30 -9 -50 -45l-334 -601h-83l-95 588c-7 42 -18 56 -44 58l-43 3v35l148 -3l148 3v-35l-50 -3c-25 -2 -30 -7 -30 -36c0 -5 0 -7 1 -13l68 -462l233 435c17 32 21 42 21 54c0 14 -10 21 -33 22l-50 3l5 35s66 -3 109 -3c42 0 108 3 108 3 '], + 0x1D47E: [689,3,1000,67,1073,'1073 681l-5 -35l-34 -3c-18 -2 -27 -14 -62 -101l-219 -545h-84l-131 494l-246 -494h-84l-52 542c-7 91 -10 101 -48 104l-41 3l5 35l145 -3l146 3v-35l-45 -3c-29 -2 -40 -15 -37 -50l35 -448l265 544h31l148 -556l169 446c10 26 11 30 11 40c0 16 -11 22 -45 24l-45 3 l5 35s66 -3 109 -3s109 3 109 3'], + 0x1D47F: [681,3,722,-9,772,'772 681l-2 -35l-44 -3c-14 1 -51 -24 -78 -53l-205 -213l151 -295c20 -38 28 -46 48 -47l47 -3l-5 -35l-151 3l-153 -3v35l62 2c11 0 19 7 19 16s-3 23 -7 31l-101 199l-168 -192c-10 -11 -15 -24 -15 -36c0 -10 12 -16 34 -17l55 -3l-5 -35l-129 3l-134 -3l5 35l40 3 c17 1 40 13 52 26l242 262l-152 291c-8 15 -31 27 -56 29l-40 3v35l160 -3l160 3v-35l-40 -3c-31 -2 -39 -6 -39 -17c0 -10 3 -21 9 -33l89 -175l152 172l1 1c15 15 20 25 20 33c0 11 -14 17 -39 19l-48 3l5 35l130 -3'], + 0x1D480: [695,3,611,54,675,'675 681l-6 -88c-34 -4 -80 -36 -116 -76c-66 -75 -150 -234 -161 -300c-2 -9 -2 -11 -22 -117c-2 -11 -3 -22 -3 -33c0 -23 9 -31 37 -32l59 -3l-4 -35l-163 3l-157 -3l4 35l49 3c34 2 34 4 54 97c7 31 20 77 20 113c0 44 -47 184 -55 211c-26 85 -69 141 -109 141 c-17 0 -35 -4 -45 -10l-3 33c25 17 37 26 90 70c15 4 20 5 28 5c25 0 53 -11 73 -29c36 -32 70 -109 89 -200l36 -169c90 221 223 389 305 384'], + 0x1D481: [681,3,667,1,676,'676 681l-5 -35l-483 -597h180c74 0 129 4 185 15c21 44 32 72 45 116h36l-39 -183l-306 3l-288 -3v27l495 605h-164c-69 0 -146 -7 -161 -14c-7 -3 -13 -12 -18 -29l-24 -76h-35c12 53 18 91 26 160l7 11l270 -3'], + 0x1D482: [470,17,556,44,519,'519 82c-76 -67 -132 -99 -174 -99c-20 0 -32 17 -32 44c0 18 2 37 7 56l37 151c-93 -163 -183 -251 -259 -251c-32 0 -54 31 -54 75c0 79 35 213 70 268c16 25 78 79 134 116c31 21 53 27 94 27c33 0 55 -6 102 -26l45 27l16 -12c-18 -50 -25 -73 -32 -105l-45 -214 l-10 -49c2 -18 5 -25 14 -25c11 0 33 14 55 31l20 16zM377 395c-34 16 -55 22 -82 22c-42 0 -70 -29 -92 -99c-25 -78 -47 -179 -47 -216c0 -20 8 -37 17 -37c22 0 60 34 101 88c56 75 89 152 103 242'], + 0x1D483: [726,17,537,44,494,'494 353c0 -147 -58 -257 -170 -322c-52 -30 -112 -48 -159 -48c-75 0 -121 41 -121 110c0 16 1 27 9 72l73 431c2 12 3 22 3 31c0 17 -11 25 -34 25h-45l7 28c100 15 149 26 198 46l10 -9l-14 -65l-71 -348c40 59 62 85 99 112c48 35 95 53 141 53c48 0 74 -41 74 -116z M380 319c0 50 -13 84 -39 84c-40 0 -118 -63 -148 -126c-24 -51 -39 -114 -39 -159c0 -55 26 -89 68 -89c41 0 79 32 109 92c25 51 49 147 49 198'], + 0x1D484: [469,17,444,32,436,'436 445c-14 -37 -19 -57 -35 -141h-33l6 56l-4 14c-32 23 -61 33 -92 33c-41 0 -73 -24 -93 -70c-21 -48 -39 -139 -39 -197c0 -55 31 -90 79 -90s87 17 166 70l10 -30c-118 -82 -174 -107 -243 -107c-77 0 -126 53 -126 136c0 72 23 166 52 212c18 27 52 56 101 86 c67 41 96 52 137 52c36 0 60 -5 114 -24'], + 0x1D485: [726,17,556,38,550,'550 717c-5 -22 -10 -43 -14 -65l-107 -531c-3 -16 -5 -30 -5 -40c0 -8 6 -16 14 -16c5 0 15 6 49 28l26 17l9 -28l-36 -26c-59 -42 -114 -73 -136 -73c-19 0 -35 18 -35 41c0 14 2 31 7 50l40 164c-65 -108 -98 -152 -145 -193c-49 -42 -85 -62 -116 -62 c-36 0 -63 37 -63 87c0 98 34 227 74 278c25 33 87 78 144 104c26 12 48 17 75 17c20 0 36 -2 65 -9l18 112c3 21 4 27 4 38c0 29 -11 42 -38 42h-45l7 28c100 15 149 26 198 46zM384 401c-37 14 -57 18 -85 18c-50 0 -68 -13 -91 -66c-29 -66 -56 -194 -56 -261 c0 -16 10 -27 24 -27c19 0 49 22 78 59c53 66 95 138 106 182'], + 0x1D486: [469,17,444,28,418,'418 382c0 -59 -35 -105 -107 -139c-42 -20 -78 -31 -164 -50c-4 -29 -5 -44 -5 -64c0 -52 26 -82 73 -82c41 0 87 19 162 67l10 -28c-12 -8 -17 -10 -29 -18c-100 -64 -148 -85 -209 -85c-75 0 -121 44 -121 115s27 174 60 233c39 69 158 138 237 138 c57 0 93 -34 93 -87zM324 368c0 33 -18 53 -48 53c-49 0 -89 -51 -111 -144l-14 -58l41 12c82 24 132 76 132 137'], + 0x1D487: [726,271,333,-130,449,'449 718c-13 -47 -20 -78 -28 -125l-15 -3c-31 44 -47 56 -73 56c-39 0 -50 -31 -77 -163l-6 -29c43 0 74 3 123 8l5 -8c-6 -14 -9 -25 -16 -51h-123l-55 -235c-48 -205 -78 -281 -140 -353c-41 -47 -102 -86 -136 -86c-13 0 -29 4 -38 9c11 24 27 79 32 107l17 3 c14 -31 29 -44 51 -44c36 0 47 28 76 182l79 417h-91l5 25l50 16c25 8 39 14 50 19c1 6 2 9 4 20c12 59 22 79 67 119l56 49c16 14 53 40 84 59c21 13 32 16 52 16c14 0 26 -2 47 -8'], + 0x1D488: [469,271,500,-50,529,'529 440l-10 -50l-88 4c8 -24 11 -39 11 -59c0 -63 -29 -116 -82 -150c-18 -12 -39 -22 -75 -36c-41 -15 -58 -28 -58 -46c0 -11 9 -24 23 -34l85 -60c55 -39 78 -72 78 -114c0 -96 -107 -166 -254 -166c-126 0 -209 49 -209 125c0 37 20 71 59 99c30 22 64 37 133 59 c-15 11 -25 30 -26 49l4 20l92 56c-64 1 -95 9 -122 32c-25 22 -36 51 -36 97c0 60 22 105 66 138c49 36 125 65 170 65c27 0 62 -8 90 -20c18 -2 48 -4 73 -3l71 3zM334 340c0 54 -24 85 -68 85c-34 0 -61 -16 -79 -46c-17 -27 -30 -83 -30 -123c0 -52 28 -84 73 -84 c62 0 104 68 104 168zM309 -144c0 30 -17 52 -64 84l-82 55l-28 -13c-66 -31 -96 -66 -96 -113c0 -62 56 -104 139 -104c74 0 131 39 131 91'], + 0x1D489: [726,17,556,22,522,'522 79c-104 -71 -151 -96 -185 -96c-18 0 -31 18 -31 41c0 31 14 93 48 213c17 58 25 96 25 115c0 18 -7 29 -20 29c-44 0 -119 -79 -165 -173c-27 -55 -47 -128 -56 -204c-36 -2 -84 -10 -106 -17l-10 11c18 37 47 160 80 336c29 154 48 270 48 293c0 17 -11 25 -34 25 h-45l7 28c100 15 149 26 198 46l10 -9c-5 -21 -12 -43 -17 -65l-89 -408c84 134 198 225 283 225c23 0 38 -18 38 -44c0 -47 -19 -92 -31 -137l-38 -144c-5 -20 -8 -41 -8 -63c0 -10 4 -16 12 -16c9 0 26 8 61 30l16 10'], + 0x1D48A: [675,17,333,26,301,'293 84c-11 -8 -15 -10 -28 -20c-81 -58 -128 -81 -166 -81c-19 0 -32 17 -32 43c0 16 3 38 6 52l59 241c6 25 8 34 8 41c0 6 -4 10 -10 10c-9 0 -49 -20 -69 -34l-22 -16l-13 26l63 47c62 46 121 76 150 76c15 0 25 -15 25 -37c0 -19 -4 -48 -9 -67l-54 -196 c-13 -46 -20 -80 -20 -93c0 -6 5 -11 11 -11c11 0 27 8 62 30l27 17zM301 615c0 -41 -29 -71 -69 -71c-33 0 -54 22 -54 57c0 41 30 74 67 74c33 0 56 -25 56 -60'], + 0x1D48B: [675,271,333,-64,311,'274 429c0 -19 -3 -39 -9 -64l-67 -274c-34 -137 -65 -217 -110 -279c-40 -57 -78 -83 -118 -83c-10 0 -18 1 -34 5c5 28 8 47 10 79l14 3c14 -23 28 -33 44 -33c20 0 35 24 46 78l86 408c10 47 14 73 14 88c0 9 -3 13 -10 13c-9 0 -49 -20 -69 -34l-22 -16l-13 26l63 47 c62 46 121 76 149 76c16 0 26 -15 26 -40zM311 615c0 -41 -29 -71 -69 -71c-33 0 -54 22 -54 57c0 41 30 74 67 74c33 0 56 -25 56 -60'], + 0x1D48C: [726,17,556,34,528,'528 460l-20 -70c-22 6 -34 8 -49 8c-52 0 -100 -26 -146 -80l65 -173c18 -47 42 -80 59 -80c10 0 23 6 46 20l27 17l10 -29l-44 -31c-55 -39 -97 -59 -122 -59c-23 0 -39 24 -66 97l-57 155l-31 -34c-22 -24 -23 -31 -35 -91c-12 -57 -14 -73 -16 -106 c-29 -2 -45 -5 -105 -18l-10 9c17 43 47 174 78 339c29 154 48 270 48 293c0 17 -11 25 -34 25h-45l7 28c100 15 149 26 198 46l10 -9c-6 -21 -12 -43 -17 -65l-95 -431c40 55 89 109 147 164c63 60 107 84 154 84c12 0 28 -3 43 -9'], + 0x1D48D: [726,17,333,64,318,'318 717c-5 -21 -10 -44 -17 -65l-107 -482c-8 -35 -12 -67 -12 -91c0 -9 5 -14 12 -14c11 0 34 11 53 26l30 23l14 -27c-117 -85 -152 -104 -195 -104c-21 0 -32 17 -32 52s1 43 16 111l99 450c3 12 4 22 4 31c0 16 -12 25 -35 25h-45l7 28c100 15 149 26 198 46'], + 0x1D48E: [469,17,833,19,803,'803 89c-53 -44 -74 -58 -108 -77c-37 -20 -60 -29 -81 -29c-22 0 -37 16 -37 40c0 38 13 98 54 240c12 43 21 79 21 91c0 9 -7 16 -16 16c-37 0 -110 -71 -154 -150c-36 -64 -57 -135 -63 -216c-36 -2 -83 -10 -104 -17l-10 11c42 127 84 300 84 345c0 17 -7 27 -19 27 c-37 0 -78 -37 -128 -115c-46 -71 -71 -146 -87 -251c-36 -2 -83 -10 -104 -17l-10 11c44 132 83 300 83 356c0 10 -5 16 -13 16c-9 0 -24 -7 -41 -20l-37 -28l-14 26l84 68c39 31 84 53 110 53c15 0 24 -12 24 -30c0 -17 -4 -41 -19 -103l-29 -124c54 101 102 158 178 214 c44 32 69 43 96 43c24 0 39 -17 39 -46c0 -21 -5 -47 -19 -96l-34 -120c36 77 75 131 133 181c55 49 117 81 156 81c22 0 37 -18 37 -47c0 -21 -3 -45 -10 -69l-50 -184c-13 -47 -20 -80 -20 -92c0 -6 6 -12 11 -12c10 0 32 11 61 32l24 17'], + 0x1D48F: [469,17,556,17,521,'521 80c-10 -7 -15 -11 -29 -21c-75 -56 -115 -76 -151 -76c-21 0 -36 18 -36 42c0 29 16 100 48 212c15 51 25 96 25 112c0 14 -7 21 -20 21c-48 0 -138 -110 -177 -216c-12 -34 -30 -104 -36 -150c-36 -2 -84 -10 -106 -17l-10 11c46 138 85 300 85 355 c0 11 -4 17 -11 17c-11 0 -25 -6 -41 -17l-32 -22l-13 27l84 62c45 33 78 49 102 49c17 0 27 -11 27 -30c0 -28 -6 -57 -34 -157l-17 -60c35 60 53 84 87 122c68 74 148 125 195 125c23 0 39 -17 39 -42c0 -13 -6 -45 -16 -83l-48 -184c-8 -32 -13 -60 -13 -78 c0 -11 4 -17 11 -17c10 0 21 6 45 22l29 20'], + 0x1D490: [469,17,556,48,502,'502 319c0 -63 -19 -145 -46 -193c-22 -40 -79 -90 -135 -116c-40 -19 -79 -27 -125 -27c-98 0 -148 51 -148 152c0 41 8 88 24 137c21 65 55 108 117 147c52 33 108 50 161 50c96 0 152 -55 152 -150zM388 323c0 62 -32 102 -80 102c-33 0 -61 -17 -85 -51 c-35 -50 -61 -154 -61 -244c0 -63 31 -103 81 -103c32 0 60 17 84 51c35 50 61 155 61 245'], + 0x1D491: [469,271,556,-21,516,'516 370c0 -119 -42 -232 -107 -288c-38 -32 -91 -69 -118 -82c-25 -11 -53 -17 -86 -17c-21 0 -35 2 -56 7c-36 -142 -44 -180 -48 -240c-18 -2 -37 -4 -80 -14c-15 -3 -19 -5 -32 -7l-10 7c12 40 19 67 32 122l79 340c29 125 24 126 24 156c0 10 -4 16 -11 16 c-11 0 -25 -6 -41 -17l-32 -22l-13 27l84 62c45 33 78 49 102 49c18 0 27 -11 27 -31c0 -21 -7 -57 -20 -117l-15 -68c47 79 73 113 117 150c54 45 101 66 148 66c37 0 56 -33 56 -99zM402 333c0 38 -10 58 -28 58c-37 0 -90 -45 -137 -117c-34 -52 -46 -83 -62 -153 l-14 -62c33 -19 62 -27 94 -27s61 20 80 54c37 66 67 178 67 247'], + 0x1D492: [469,271,537,32,513,'513 458c-14 -30 -24 -62 -41 -143l-92 -428c-9 -41 -21 -86 -21 -128c0 0 0 -5 1 -11c-45 -3 -77 -7 -132 -19l-9 18l15 12c12 10 24 59 28 76l83 359c-108 -143 -191 -211 -262 -211c-29 0 -51 32 -51 73c0 81 36 220 71 272c17 25 68 67 133 108c45 28 58 33 96 33 c45 0 77 -7 116 -26l47 26zM382 396c-35 16 -57 21 -84 21c-36 0 -58 -11 -75 -38c-32 -53 -77 -215 -77 -281c0 -20 9 -33 22 -33c25 0 61 29 111 89c52 64 77 117 95 203'], + 0x1D493: [469,17,389,20,411,'411 463c-15 -66 -19 -95 -20 -137l-12 -6c-21 14 -35 19 -52 19c-46 0 -85 -48 -123 -151c-16 -45 -27 -95 -41 -186c-58 -6 -81 -10 -108 -19l-11 12c14 43 21 67 27 92l24 107c30 133 26 134 26 160c0 10 -5 16 -12 16c-9 0 -24 -8 -42 -20l-34 -24l-13 26l81 64 c45 35 81 53 108 53c16 0 25 -11 25 -32c0 -14 -5 -36 -15 -78c-19 -82 -13 -56 -32 -140c77 156 93 185 120 213c24 25 49 37 77 37c10 0 17 -2 27 -6'], + 0x1D494: [469,17,444,25,406,'406 438l-6 -33c-9 -48 -11 -59 -11 -83h-30l-6 48c-39 32 -70 44 -110 44c-49 0 -82 -29 -82 -73c0 -35 19 -50 76 -63l59 -13c61 -13 98 -53 98 -105c0 -38 -13 -64 -49 -97c-59 -54 -118 -80 -183 -80c-38 0 -70 6 -137 27c13 63 17 90 21 131h30v-47 c34 -36 80 -56 130 -56c54 0 88 28 88 72c0 36 -22 58 -68 67l-44 9c-76 16 -114 53 -114 112c0 45 17 74 63 107c67 48 105 64 153 64c47 0 81 -9 122 -31'], + 0x1D495: [636,17,389,42,409,'409 452l-14 -56c-32 4 -52 5 -92 5h-47l-51 -237c-6 -29 -9 -51 -9 -72s6 -28 24 -28c19 0 32 5 54 21l56 40l13 -26l-77 -57c-56 -41 -96 -59 -133 -59c-35 0 -54 21 -54 60c0 17 0 20 10 65l62 293h-109l7 27l115 32c14 78 16 96 16 122v16c22 3 38 7 57 14l66 24 l10 -12l-31 -116l-13 -56l134 5'], + 0x1D496: [469,17,556,22,521,'521 88c-27 -20 -21 -15 -35 -26c-60 -45 -119 -79 -140 -79c-20 0 -34 17 -34 43c0 16 5 41 16 81l32 117c-99 -156 -192 -241 -263 -241c-26 0 -44 23 -44 57c0 17 4 40 13 74c7 26 3 11 21 79c24 91 34 140 34 161c0 10 -6 16 -17 16c-10 0 -22 -3 -33 -10l-36 -21 l-13 26l79 54c46 31 89 50 116 50c17 0 27 -13 27 -35c0 -29 -4 -48 -29 -147l-35 -137c-6 -25 -10 -49 -10 -66c0 -8 7 -13 16 -13c29 0 82 53 131 131c48 78 78 169 80 245c33 -1 67 5 110 18l9 -11l-42 -141l-40 -155c-10 -33 -14 -60 -14 -72c0 -7 6 -12 14 -12 c14 0 35 9 55 25l22 17'], + 0x1D497: [469,17,556,19,513,'513 370c0 -91 -61 -221 -145 -307c-49 -51 -108 -80 -163 -80c-74 0 -118 52 -118 140c0 84 32 145 126 239l41 41c-34 -8 -70 -11 -137 -11c-28 0 -40 -2 -42 -8l-28 -60h-28l41 132c22 4 35 6 51 5c24 -1 92 -6 135 -6c24 0 52 6 64 14l14 -19 c-59 -70 -85 -112 -107 -181c-14 -42 -20 -82 -20 -122c0 -65 23 -101 66 -101s81 30 115 89c34 60 58 143 58 199c0 32 -16 55 -39 55c-14 0 -27 -4 -36 -12l-10 21c19 14 34 30 66 67c12 3 18 4 26 4c37 0 70 -46 70 -99'], + 0x1D498: [469,17,833,27,802,'802 371c0 -90 -61 -219 -145 -306c-51 -52 -111 -82 -164 -82c-57 0 -94 42 -94 107c0 25 2 43 9 87c-43 -83 -75 -124 -126 -160c-33 -24 -60 -34 -90 -34c-62 0 -101 53 -101 137s33 145 130 242l41 41c-34 -8 -70 -11 -137 -11c-28 0 -40 -2 -42 -8l-28 -60h-28 l41 132c22 4 35 6 51 5c24 -1 92 -6 135 -6c24 0 52 6 64 14l14 -19c-60 -70 -85 -112 -107 -181c-14 -42 -20 -83 -20 -123c0 -61 19 -100 48 -100c56 0 133 108 158 223l24 109c5 25 7 35 10 64c39 5 66 11 107 27l12 -9c-45 -161 -68 -272 -68 -333c0 -48 23 -81 57 -81 c40 0 78 31 112 91c35 61 60 145 60 198c0 33 -16 54 -42 54c-13 0 -25 -3 -36 -8l-12 23c34 23 50 37 71 61c12 3 18 4 26 4c37 0 70 -46 70 -98'], + 0x1D499: [469,17,500,-8,500,'500 459c-12 -23 -16 -42 -23 -106l-21 -5l-9 28c-10 4 -15 5 -21 5c-24 0 -62 -28 -92 -69l-38 -51l11 -64c8 -45 20 -90 32 -113c6 -12 19 -20 32 -20c10 0 19 4 47 24l30 21l16 -23l-18 -16c-75 -67 -113 -87 -143 -87c-18 0 -37 10 -49 27c-14 18 -22 43 -30 92 l-10 58l-85 -114c-29 -39 -65 -63 -94 -63c-13 0 -24 4 -43 14c9 39 13 64 16 101l24 2l6 -31c11 -4 19 -6 28 -6c30 0 59 20 88 61l52 73l-16 88c-11 61 -34 99 -59 99c-24 0 -57 -23 -72 -49l-23 13c14 18 28 41 49 81c5 10 5 11 10 20c41 16 56 20 76 20 c32 0 60 -13 77 -36c16 -21 26 -52 36 -111l4 -23l63 87c40 55 77 83 110 83c12 0 27 -4 39 -10'], + 0x1D49A: [469,271,556,13,541,'541 453c-19 -41 -42 -113 -84 -268c-52 -189 -65 -228 -116 -307c-58 -92 -143 -149 -222 -149c-35 0 -67 17 -83 44c-8 14 -12 27 -15 53l62 40l18 -6c-1 -7 -1 -16 -1 -19c0 -42 23 -66 62 -66c65 0 113 71 152 229l41 166c-39 -69 -61 -97 -100 -131 c-40 -35 -80 -56 -108 -56c-27 0 -47 37 -47 87c0 20 2 44 6 85l19 182c1 6 1 11 1 14c0 12 -7 19 -18 19c-20 0 -47 -14 -81 -41l-14 28l80 62c39 30 80 50 103 50c24 0 39 -24 39 -63c0 -24 -2 -52 -5 -80l-19 -163c-3 -25 -4 -40 -4 -55c0 -26 6 -41 17 -41 c30 0 81 56 123 135c41 77 70 176 72 245c33 -1 67 5 110 18'], + 0x1D49B: [469,17,500,31,470,'470 461l-14 -50l-328 -337c48 17 72 23 98 23c30 0 63 -3 102 -10c23 -4 39 -7 54 -6c0 0 6 0 13 1l28 58l28 -2c-11 -30 -27 -87 -29 -105c-6 -41 -15 -50 -57 -50c-44 0 -92 8 -168 29c-24 7 -48 10 -73 10c-30 0 -52 -7 -77 -27l-16 30l346 354 c-36 -17 -59 -23 -89 -23c-32 0 -80 6 -140 11c-6 0 -10 1 -22 2l-23 -52l-29 3l45 139c21 6 41 10 57 10c17 0 42 -5 95 -19c50 -13 83 -18 112 -18c25 0 48 9 58 24l9 13'], + 0x1D6A4: [482,9,278,34,241,'241 85c-97 -72 -134 -94 -160 -94c-19 0 -30 15 -30 39c0 20 4 45 13 77l66 240c4 15 8 36 8 44c0 12 -7 21 -17 21c-9 0 -19 -4 -48 -23l-32 -21l-7 20l28 20c76 54 112 74 134 74c17 0 25 -9 25 -26c0 -9 -2 -19 -6 -36l-77 -304c-6 -22 -7 -30 -7 -40 c0 -11 6 -20 13 -20c10 0 31 10 61 30l26 17'], + 0x1D6A5: [482,276,278,-70,228,'228 457c0 -5 -2 -20 -6 -37l-76 -350c-29 -132 -43 -181 -64 -228c-36 -78 -75 -118 -114 -118c-15 0 -28 2 -38 7l8 57c22 -13 39 -19 53 -19c18 0 36 35 47 87l100 495c3 13 7 27 7 40s-8 23 -18 23c-15 0 -33 -19 -47 -25l-32 -21l-7 20l28 20c76 54 112 74 134 74 c16 0 25 -9 25 -25'], + 0x1D6A8: [686,3,748,6,739,'739 -3l-158 3l-152 -3v37l53 3c27 2 20 39 14 55l-45 114h-251l-42 -112c-8 -22 -7 -55 24 -57l50 -3v-37l-113 3l-113 -3v37l30 3c22 2 40 21 56 60l181 438l57 151h71l259 -605c13 -29 27 -40 55 -44l24 -3v-37zM428 262l-104 254l-100 -254h204'], + 0x1D6A9: [681,3,659,31,603,'603 216c0 -129 -141 -219 -271 -219l-142 3l-126 -3v23l32 18c15 8 20 23 20 57v448c0 88 -3 94 -48 98l-37 3v37l168 -3l192 3c126 0 189 -44 189 -135c0 -38 -14 -74 -38 -96c-31 -29 -60 -43 -144 -73c80 -5 114 -14 150 -39c35 -25 55 -69 55 -122zM453 202 c0 102 -50 146 -166 146h-30v-292c17 -3 28 -4 43 -4c106 0 153 46 153 150zM432 524c0 74 -36 107 -117 107c-19 0 -34 -1 -58 -4v-227h30c101 0 145 37 145 124'], + 0x1D6AA: [681,3,562,31,542,'542 671l-14 -142h-36l-8 75c-1 12 -43 19 -111 19c-37 0 -61 0 -116 -3v-485c0 -88 2 -92 48 -95l47 -3v-40l-166 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 88 -3 94 -48 98l-37 3v37l179 -3c27 0 27 3 180 3h51c38 0 58 -1 95 -3'], + 0x1D6AB: [686,3,662,25,637,'637 39l-94 -42l-315 2c-127 0 -171 0 -200 -2l-3 35c7 13 12 26 28 65l181 438l53 131l75 20l274 -633zM458 86c0 8 -2 18 -5 29l-168 401l-102 -252c-22 -56 -38 -91 -59 -148c-3 -8 -5 -18 -5 -25c0 -16 9 -29 24 -32h298c10 3 17 13 17 27'], + 0x1D6AC: [681,3,606,31,569,'569 166l-11 -158l-5 -8c-57 -3 -85 -3 -140 -3l-226 3l-123 -3v23l32 18c15 8 20 23 20 57v448c0 88 -3 94 -48 98l-37 3v37l190 -3l236 3c37 0 58 -1 95 -3l6 -7l-14 -142h-36l-8 75c-1 11 -43 19 -98 19l-145 -3v-240c20 -2 34 -2 67 -2h66c42 0 55 5 57 21l6 57h40 c-2 -36 -3 -71 -3 -107s1 -72 3 -108h-40l-6 50c-3 26 -19 37 -57 37h-66c-22 0 -39 -1 -67 -3v-267l149 -3c46 0 99 9 101 17l23 94h39'], + 0x1D6AD: [681,3,670,25,628,'628 174c-9 -50 -15 -116 -16 -177l-284 3l-303 -3v38c49 62 76 99 104 139l306 446h-222c-71 0 -81 -5 -87 -46l-8 -55h-37v162l272 -3l271 3v-35c-32 -39 -56 -70 -83 -110l-325 -479h276c51 0 76 12 81 39l15 78h40'], + 0x1D6AE: [681,3,822,31,791,'791 -3l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v190l-81 2h-146l-81 -2v-190c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-158c23 -2 43 -2 81 -2h146 c38 0 57 0 81 2v158c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-408c0 -89 1 -91 48 -95l37 -3v-40'], + 0x1D6AF: [695,17,831,47,787,'787 346c0 -228 -141 -363 -380 -363c-229 0 -360 127 -360 349c0 230 141 363 384 363c225 0 356 -129 356 -349zM637 324c0 115 -31 209 -86 264c-36 35 -76 51 -134 51c-59 0 -113 -20 -150 -57c-46 -45 -70 -124 -70 -227c0 -116 30 -210 85 -264 c36 -36 77 -52 132 -52c146 0 223 98 223 285zM572 241h-40l-6 50c-3 26 -19 37 -57 37h-104c-38 0 -54 -11 -57 -37l-6 -50h-40l3 108l-3 107h40l6 -57c2 -16 15 -21 57 -21h104c42 0 55 5 57 21l6 57h40l-3 -107'], + 0x1D6B0: [681,3,389,40,351,'351 -3l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-408c0 -89 1 -91 48 -95l37 -3v-40'], + 0x1D6B1: [681,3,761,31,755,'755 -3c-34 2 -67 3 -101 3s-68 -1 -102 -3l-208 249c-56 68 -61 71 -87 86v-197c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40l155 -3l156 3v-40l-37 -3c-47 -4 -48 -6 -48 -95v-200l197 193 c14 14 94 94 94 120v25c30 -2 61 -3 91 -3s61 1 91 3v-39c-63 -5 -86 -12 -110 -34l-222 -207l266 -313c31 -36 54 -49 91 -50v-41'], + 0x1D6B2: [686,3,748,6,739,'739 -3l-158 3l-152 -3v37l53 3c11 1 20 12 20 27c0 8 -2 18 -5 29l-173 423l-102 -252l-64 -170c-3 -8 -5 -18 -5 -25c0 -17 12 -31 29 -32l50 -3v-37c-27 1 -48 1 -57 2l-56 1l-56 -1c-8 -1 -31 -1 -57 -2v37l30 3c22 2 40 21 56 60l181 438l53 131l75 20l259 -605 c13 -29 27 -40 55 -44l24 -3v-37'], + 0x1D6B3: [681,10,1009,38,974,'974 -3l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v416l-206 -429c-37 -76 -41 -86 -60 -132h-34c-18 44 -29 68 -36 83l-230 479v-417c0 -89 3 -94 48 -98l37 -3v-37l-114 3l-115 -3v37l37 3c45 4 48 10 48 98v408c0 88 -3 94 -48 98l-37 3v37l120 -3l120 3l75 -161 l158 -330l183 378l49 113l115 -3l116 3v-37l-37 -3c-45 -4 -48 -10 -48 -98v-408c0 -89 1 -91 48 -95l37 -3v-40'], + 0x1D6B4: [681,16,822,31,794,'794 644l-37 -3c-45 -4 -48 -10 -48 -98v-454l3 -101l-7 -4l-82 13l-122 139l-326 392v-393c0 -89 3 -94 48 -98l37 -3v-37l-114 3l-115 -3v37l37 3c45 4 48 10 48 98v408c0 88 -3 94 -48 98l-37 3v37l120 -3c28 0 56 1 84 3c64 -85 82 -109 103 -133l312 -364v359 c0 88 -3 94 -48 98l-37 3v37l115 -3l114 3v-37'], + 0x1D6B5: [681,3,719,42,676,'676 238c-9 -50 -21 -180 -22 -241l-295 3l-295 -3c-1 61 -13 191 -22 241h40l15 -78c5 -27 36 -39 87 -39h350c51 0 82 12 87 39l15 78h40zM625 459h-37l-8 55c-6 41 -16 46 -87 46h-268c-71 0 -81 -5 -87 -46l-8 -55h-37v222l266 -3l266 3v-222zM514 241h-40l-6 50 c-3 26 -19 37 -57 37h-104c-38 0 -54 -11 -57 -37l-6 -50h-40l3 108l-3 107h40l6 -57c2 -16 15 -21 57 -21h104c42 0 55 5 57 21l6 57h40l-3 -107'], + 0x1D6B6: [695,17,832,46,786,'786 346c0 -228 -141 -363 -380 -363c-229 0 -360 127 -360 349c0 229 141 363 383 363c226 0 357 -129 357 -349zM636 325c0 113 -31 209 -86 263c-35 34 -77 51 -130 51c-63 0 -115 -19 -154 -57c-45 -45 -70 -125 -70 -227c0 -115 31 -211 85 -264 c36 -36 77 -52 132 -52c146 0 223 98 223 286'], + 0x1D6B7: [681,3,822,31,791,'791 -3l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3h-138l-37 -3c-47 -4 -48 -6 -48 -95v-408c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v408c0 89 -1 91 -48 95l-37 3v40l380 -3l380 3v-40l-37 -3 c-47 -4 -48 -6 -48 -95v-408c0 -89 1 -91 48 -95l37 -3v-40'], + 0x1D6B8: [681,3,611,31,586,'586 531c0 -121 -96 -212 -225 -212c-20 0 -39 4 -58 7v39h18h18c63 0 103 52 103 132c0 89 -42 134 -125 134c-27 0 -45 -3 -60 -9v-487c0 -88 2 -92 48 -95l47 -3v-40l-165 3l-156 -3v40l37 3c47 4 48 6 48 95v408c0 88 -3 94 -48 98l-37 3v37l173 -3l193 3 c85 0 189 -50 189 -150'], + 0x1D6B9: [695,17,831,47,787,'787 346c0 -228 -141 -363 -380 -363c-229 0 -360 127 -360 349c0 230 141 363 384 363c225 0 356 -129 356 -349zM637 324v4h-439c4 -104 33 -187 84 -237c36 -36 77 -52 132 -52c146 0 223 98 223 285zM635 378c-9 90 -38 164 -84 210c-36 35 -76 51 -134 51 c-59 0 -113 -20 -150 -57c-43 -42 -66 -112 -70 -204h438'], + 0x1D6BA: [681,3,669,25,628,'628 238c-9 -50 -15 -180 -16 -241l-284 3l-303 -3v38c49 62 76 98 104 139l114 167l-132 195c-29 42 -51 71 -83 110v35l271 -3l272 3v-162h-37l-8 55c-6 41 -16 46 -87 46h-222l139 -203v-15l-190 -281h326c51 0 76 12 81 39l15 78h40'], + 0x1D6BB: [681,3,673,20,653,'653 676c-8 -48 -11 -83 -13 -159h-40l-5 69c-15 40 -22 33 -71 33h-117v-484c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v484h-117c-31 0 -68 7 -71 -33l-5 -69h-40c-3 76 -5 111 -13 159l6 5l311 -3l310 3'], + 0x1D6BC: [695,3,675,15,660,'660 659l-176 -261c-18 -26 -34 -57 -53 -100v-163c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v139c-16 36 -27 58 -44 85l-102 162c-55 87 -78 101 -129 101v37l159 36c46 -27 73 -60 114 -136l107 -203l188 322h77v-19'], + 0x1D6BD: [681,3,833,47,787,'787 344c0 -131 -110 -215 -299 -233c0 -65 6 -68 48 -71l37 -3v-40l-156 3l-155 -3v40l37 3c42 3 47 6 48 70c-192 13 -300 93 -300 225c0 131 109 214 300 232c-1 64 -7 67 -48 71l-37 3v40l155 -3l156 3v-40l-37 -3c-42 -4 -48 -8 -48 -69c190 -14 299 -95 299 -225z M347 166v346c-31 -4 -58 -11 -80 -25c-45 -29 -70 -76 -70 -137c0 -70 31 -127 85 -162c19 -13 41 -19 65 -22zM637 330c0 72 -31 126 -86 161c-19 11 -40 18 -63 21v-343c98 17 149 69 149 161'], + 0x1D6BE: [695,3,620,-8,625,'625 -3c-32 2 -63 3 -95 3s-64 -1 -96 -3l-149 266l-140 -201c-4 -6 -22 -36 -36 -62h-117v34l31 3c12 1 26 9 33 18l199 261l-94 166c-26 46 -64 99 -86 123c-13 13 -25 18 -41 18c-9 0 -16 -1 -32 -6l-5 41l183 37c29 -22 45 -42 73 -91l95 -169l165 243h111v-34 l-28 -3c-20 -2 -27 -8 -48 -36l-170 -224c189 -327 159 -274 160 -278c28 -49 40 -63 62 -66l25 -3v-37'], + 0x1D6BF: [681,3,742,4,738,'738 644l-37 -3c-40 -4 -48 -9 -48 -69c0 -126 -59 -269 -172 -292v-145c0 -89 1 -91 48 -95l37 -3v-40l-156 3l-155 -3v40l37 3c47 4 48 6 48 95v133c-155 8 -251 121 -251 275c0 88 -3 94 -48 98l-37 3v37l145 -3c20 0 41 2 71 3c10 -20 10 -61 10 -91 c0 -123 19 -212 110 -234v187c0 89 -3 91 -45 95l-25 2v41l140 -3l141 3v-41l-25 -2c-42 -4 -45 -6 -45 -95v-186c76 19 113 123 113 238c0 28 0 66 10 86c16 -1 39 -3 45 -3c38 0 51 2 89 3v-37'], + 0x1D6C0: [695,3,827,27,804,'804 176l-10 -179l-126 3l-132 -3l-20 43c22 13 46 31 64 52c48 72 60 148 60 255c0 203 -69 292 -225 292c-155 0 -224 -89 -224 -292c0 -107 12 -183 60 -255c18 -21 42 -39 64 -52l-20 -43l-132 3l-126 -3l-10 179h34l11 -56c4 -18 23 -34 50 -34h71 c-60 60 -152 171 -152 285c0 207 149 324 374 324s375 -117 375 -324c0 -114 -92 -225 -152 -285h71c27 0 46 16 50 34l11 56h34'], + 0x1D6C1: [676,13,662,25,637,'637 641c-7 -13 -12 -26 -28 -65l-181 -438l-53 -131l-75 -20l-274 633l-1 14l94 42l315 -2c127 0 171 0 200 2zM543 582c0 16 -9 29 -24 32h-298c-10 -3 -17 -13 -17 -27c0 -8 2 -18 5 -29l168 -401l102 252c22 56 38 91 59 148c3 8 5 18 5 25'], + 0x1D6C2: [469,17,563,43,563,'563 86l-16 -16c-69 -65 -103 -87 -134 -87c-47 0 -75 38 -108 123c-23 -26 -53 -59 -76 -81c-28 -22 -58 -42 -105 -42c-34 0 -65 31 -73 75c-17 97 -3 205 24 296c14 32 29 58 48 79c29 30 43 36 62 36c34 0 65 -13 87 -36c21 -21 38 -52 58 -110l25 -70 c8 14 14 27 17 32c18 40 45 85 64 165l17 -9c7 -13 9 -25 19 -39c-1 -14 -30 -75 -41 -96c-17 -33 -36 -67 -58 -102c17 -45 42 -96 59 -120c9 -12 23 -19 37 -19c12 0 18 3 45 23l28 21zM289 153l-63 189c-10 30 -18 39 -32 39c-13 0 -28 -17 -34 -42 c-7 -37 -11 -79 -12 -119c2 -50 11 -96 15 -118c4 -20 15 -37 25 -37c16 0 38 18 59 38c9 10 24 27 42 50'], + 0x1D6C3: [718,272,617,71,576,'571 221c31 -134 -73 -238 -238 -238c-55 0 -99 9 -160 32c0 -9 -2 -18 -2 -26l19 -240c-19 -2 -24 -5 -68 -14c-15 -4 -19 -5 -33 -7l-10 7l-4 249l-3 471c-1 87 5 109 62 161c91 81 130 102 187 102c75 0 132 -41 145 -105c12 -50 -13 -105 -63 -179 c-3 -4 -7 -10 -9 -14c-11 -19 -16 -29 -17 -42v-7c112 -13 175 -62 194 -150zM440 211c-18 82 -68 128 -140 128c-20 0 -37 -3 -76 -14l-9 6l7 51c9 -3 14 -4 29 -4c47 0 64 18 78 39c25 36 36 59 42 71c9 28 13 63 6 96c-11 46 -49 76 -101 76c-55 0 -81 -36 -82 -119 l-8 -331v-27c0 -19 3 -40 6 -55c15 -64 71 -108 138 -108c51 0 85 24 105 73c12 34 14 75 5 118'], + 0x1D6C4: [469,232,571,-14,572,'572 381c-20 -35 -23 -61 -23 -70c-31 -13 -65 -91 -89 -168c-16 -51 -15 -94 -14 -163l3 -163c-24 -13 -37 -31 -56 -49l-58 13l8 177c2 49 3 96 3 156c-1 29 -2 54 -6 78c-10 52 -31 99 -67 160c-13 21 -48 59 -94 59c-22 0 -46 -22 -55 -33c-27 -30 -44 -79 -49 -123 l-44 -7c-20 22 -28 35 -45 56c12 36 54 95 70 112c45 47 89 53 116 53c37 0 90 -18 133 -70c27 -33 44 -63 67 -120c10 -17 35 -96 42 -125c33 106 86 240 122 250c12 0 24 -12 36 -23'], + 0x1D6C5: [718,17,482,41,440,'432 309c23 -78 -1 -161 -66 -246c-37 -50 -90 -80 -149 -80c-76 0 -138 47 -167 142c-35 120 50 218 139 286c12 8 29 19 44 26c-36 41 -99 115 -115 171c-21 72 30 110 87 110c27 0 91 -12 116 -17c53 -11 60 -16 65 -17c9 -7 7 -5 13 -12c0 -47 0 -45 5 -92l-14 -3 c-47 32 -62 42 -108 65c-22 11 -53 29 -88 29c-39 0 -41 -27 -41 -32c12 -35 105 -115 161 -160c52 -42 90 -80 118 -170zM368 252c-29 95 -67 116 -105 155c-18 -6 -31 -13 -42 -22c-54 -34 -62 -87 -69 -149c-2 -30 10 -83 18 -111c15 -48 52 -78 90 -78c46 0 71 29 95 88 c5 10 26 70 13 117'], + 0x1D6C6: [471,17,491,41,467,'467 75c-93 -65 -145 -92 -209 -92c-83 0 -131 18 -168 51c-26 24 -40 42 -47 81c-11 58 32 106 142 133c-51 13 -61 28 -77 38c-24 15 -33 37 -36 54c-6 34 17 64 47 87c39 29 96 44 144 44c49 0 98 -9 146 -27c-12 -68 -11 -84 -9 -121h-37l-7 66c-2 4 -4 7 -7 11 c-16 22 -43 27 -81 27c-59 0 -102 -36 -93 -87s65 -79 132 -79c16 0 32 2 51 6c2 -3 4 -6 6 -11l-1 -38c-26 5 -46 6 -64 6c-41 0 -76 -9 -104 -26c-29 -17 -40 -43 -34 -74c3 -15 12 -32 20 -40c14 -14 47 -37 135 -37c42 0 79 15 137 53c6 -10 9 -16 14 -25'], + 0x1D6C7: [718,232,491,45,468,'465 9c6 -35 5 -66 -18 -117c-27 -60 -87 -124 -158 -124c-36 0 -74 17 -95 44c-12 14 -17 27 -25 53l57 40l20 -6c1 -7 2 -16 3 -19c7 -42 24 -66 65 -66c38 0 90 56 76 134c-6 29 -22 45 -43 45c-30 0 -103 -10 -136 -10c-79 0 -138 54 -153 136c-16 86 -4 193 36 271 c39 72 89 152 149 215c-33 1 -77 5 -129 11c-6 0 -11 1 -24 2l-14 -52l-31 3l22 139c21 6 41 10 58 10s45 -5 103 -19c55 -13 90 -18 121 -18c26 0 49 9 56 24l7 13l23 -8l-6 -50c-41 -18 -105 -52 -140 -85c-93 -98 -142 -286 -115 -435c10 -55 49 -90 99 -90 c24 0 65 10 94 10c25 0 61 -7 80 -25c9 -9 16 -18 18 -26'], + 0x1D6C8: [469,271,569,5,499,'499 344l-17 -468c-2 -55 4 -94 9 -117c0 0 1 -5 4 -11c-46 -3 -79 -7 -135 -19l-13 18l13 12c5 5 9 22 11 49l1 26l15 403c0 53 4 95 -1 112c-3 14 -12 21 -26 21c-50 0 -117 -110 -134 -216c-5 -34 -7 -104 -2 -150c-38 -2 -86 -10 -107 -17l-14 11 c16 139 19 300 5 355c-3 12 -7 17 -16 17c-11 0 -25 -6 -38 -17l-29 -22l-20 27l74 62c40 34 69 49 95 49c18 0 31 -11 35 -30c7 -29 7 -55 2 -157l-3 -60c22 60 34 85 62 122c53 74 126 125 175 125c24 0 44 -17 51 -42c4 -14 4 -44 3 -83'], + 0x1D6C9: [695,17,550,49,502,'494 188c-11 -56 -55 -116 -104 -157c-37 -32 -80 -48 -130 -48c-107 0 -170 66 -198 217c-11 58 -15 123 -12 194c4 98 23 157 74 217c47 56 104 84 168 84c97 0 171 -83 197 -221c17 -95 18 -212 5 -286zM385 309c-8 13 -25 19 -53 19h-110c-29 0 -46 -6 -54 -19 c3 -40 8 -80 15 -116c17 -94 57 -166 109 -166c35 0 60 27 76 79c13 44 21 117 17 203zM380 383c-3 33 -6 64 -12 94c-17 95 -58 174 -111 174c-34 0 -60 -27 -75 -79c-12 -39 -17 -106 -17 -179c6 -8 22 -15 58 -15h110c23 0 39 1 47 5'], + 0x1D6CA: [469,17,359,79,349,'349 99l-69 -57c-50 -41 -88 -59 -127 -59c-36 0 -62 21 -69 60c-4 17 -5 20 -4 65l4 139c1 48 9 139 -3 202c35 0 71 7 113 20l19 -12c-4 -38 -5 -60 -7 -91l-12 -197c-1 -13 -3 -57 1 -77c6 -21 13 -28 32 -28c20 0 32 5 52 21l50 40'], + 0x1D6CB: [469,17,623,22,601,'601 73l-41 -31c-50 -39 -91 -59 -117 -59c-24 0 -45 23 -87 97l-88 155l-27 -34c-16 -26 -18 -31 -20 -97c-1 -54 -1 -69 3 -101c-28 -2 -43 -3 -93 -14l-15 -3l-4 9c7 43 10 67 12 92l5 107c6 109 2 142 -2 160c-2 10 -8 16 -15 16c-10 0 -24 -7 -41 -20l-31 -24 l-18 26l73 64c41 36 75 53 104 53c16 0 28 -11 32 -32c2 -15 2 -36 -1 -78v-2c-2 -18 -3 -33 -5 -67l-4 -68c33 57 82 119 131 171c53 54 92 76 140 76c12 0 28 -3 46 -9l-8 -70c-24 6 -37 8 -53 8c-55 0 -100 -26 -138 -80l100 -173c27 -48 58 -80 76 -80c12 0 23 5 45 20 l25 17'], + 0x1D6CC: [718,19,613,10,603,'603 84c-10 -8 -14 -10 -26 -20c-74 -58 -119 -81 -159 -81c-20 0 -31 18 -41 42l-130 353c-59 -119 -100 -244 -145 -369c-28 -9 -39 -17 -63 -28l-29 27c67 157 127 252 218 419l-45 126c-16 45 -49 72 -71 76c-5 1 -9 1 -13 1c-12 0 -44 -14 -51 -17l-2 32 c21 14 60 39 99 71c10 1 21 2 25 2c31 0 64 -32 89 -77c21 -35 44 -105 65 -161l126 -342c15 -30 25 -52 36 -66c2 -4 10 -9 15 -9c11 0 26 10 59 32l25 17'], + 0x1D6CD: [469,271,608,16,601,'601 88l-32 -26c-52 -46 -107 -79 -129 -79c-21 0 -40 17 -46 43c-2 16 -3 41 0 81l7 117c-63 -153 -130 -224 -224 -242l18 -205c2 -19 -24 -35 -79 -48l-12 9l15 398c1 15 1 29 1 42c6 99 7 156 2 175c-2 12 -13 23 -21 23c-4 0 -20 -8 -33 -16l-33 -21l-19 26l71 54 c41 31 82 50 110 50c18 0 31 -13 36 -35c6 -30 7 -47 2 -147l-6 -137c-2 -26 0 -49 3 -66c3 -8 12 -13 21 -13c31 0 74 53 108 131s44 169 31 245c34 0 68 5 111 18l12 -11l-15 -181c-4 -167 -6 -183 -5 -187c2 -7 8 -12 17 -12c15 0 35 9 53 25l19 17'], + 0x1D6CE: [469,17,533,-9,494,'494 457c-7 -43 -28 -111 -61 -214c-18 -53 -70 -156 -115 -201c-49 -50 -91 -57 -148 -59l-20 12c-10 45 -20 98 -25 160l-15 197c-1 11 -11 18 -23 18c-21 0 -46 -13 -76 -41l-20 28l72 62c36 30 75 50 99 50c25 0 45 -24 52 -63c4 -24 8 -52 10 -80l10 -163 c3 -34 5 -64 12 -100c48 4 93 47 128 142c28 77 37 175 26 242c35 2 36 7 79 20'], + 0x1D6CF: [718,232,476,54,477,'474 9c6 -35 6 -66 -17 -117c-27 -60 -88 -124 -158 -124c-37 0 -75 17 -95 44c-13 14 -18 27 -26 53l58 40l20 -6c0 -7 2 -16 2 -19c8 -42 25 -66 66 -66c38 0 89 56 75 134c-5 29 -22 45 -43 45c-29 0 -103 -10 -136 -10c-78 0 -138 54 -153 136c-13 72 -5 167 17 213 c14 28 44 57 94 88c29 19 51 31 71 38c-13 15 -23 31 -26 48c-4 26 4 67 27 99c-32 1 -75 5 -127 11c-6 0 -10 1 -23 2l-15 -52l-31 3l22 139c21 6 41 10 58 10c18 0 45 -5 103 -19c55 -13 91 -18 121 -18c26 0 49 9 57 24l7 13l22 -8l-5 -50l-55 -27 c-35 -21 -81 -60 -73 -102c7 -36 36 -63 69 -71c7 -1 16 -3 30 -3h16l5 -18c-6 -10 -7 -38 -6 -44c-15 -4 -43 -4 -57 -4c-10 0 -44 5 -53 8c-16 5 -33 7 -48 8c-39 -3 -66 -26 -78 -68c-14 -47 -16 -141 -6 -199c10 -55 49 -90 100 -90c24 0 64 10 93 10c26 0 62 -7 81 -25 c9 -9 16 -18 17 -26'], + 0x1D6D0: [469,17,539,41,496,'490 319c12 -63 7 -145 -12 -193c-16 -40 -67 -90 -121 -116c-38 -19 -78 -27 -126 -27c-103 0 -165 51 -184 152c-7 41 -7 88 0 137c10 65 38 108 96 147c48 33 104 50 160 50c101 0 170 -55 187 -150zM370 323c-12 62 -53 102 -103 102c-35 0 -61 -17 -80 -51 c-28 -50 -36 -154 -19 -244c12 -63 52 -103 104 -103c34 0 60 17 79 51c27 50 35 155 19 245'], + 0x1D6D1: [493,17,777,55,754,'754 469c-15 -24 -18 -29 -25 -55c-18 -10 -44 -22 -64 -27c-20 -6 -37 -8 -90 -8h-12c-4 -74 -16 -167 2 -250c13 -52 32 -82 81 -82c18 0 44 29 53 39l17 -30c-19 -20 -63 -73 -111 -73c-79 0 -138 44 -152 117c-14 62 2 210 22 279l-179 3c-19 -116 -38 -258 -68 -366 l-13 -6l-94 -27l-13 9c68 122 104 239 132 390l-59 1c-47 0 -56 0 -79 -48l-19 -4l-28 24c10 109 54 114 110 114l338 -4c36 0 92 5 130 8c33 2 74 11 102 20'], + 0x1D6D2: [469,271,570,69,529,'523 320c12 -64 6 -143 -12 -193c-14 -38 -60 -84 -111 -112c-40 -21 -84 -32 -133 -32c-40 0 -74 7 -101 20c4 -41 12 -91 20 -137c7 -38 19 -91 26 -118c-18 -2 -38 -3 -82 -12c-15 -4 -19 -5 -32 -7l-11 7l-8 127c-7 81 -9 166 -10 234c0 58 6 99 21 159 c14 59 38 109 85 152c50 38 100 61 164 61c98 0 167 -56 184 -149zM403 322c-12 64 -51 103 -105 103c-34 0 -61 -18 -80 -53c-26 -51 -33 -154 -17 -242c11 -63 51 -103 104 -103c34 0 62 18 80 53c27 50 34 154 18 242'], + 0x1D6D3: [469,232,486,48,464,'461 9c7 -35 6 -66 -17 -117c-27 -60 -88 -124 -158 -124c-37 0 -74 17 -95 44c-12 14 -18 27 -25 53l58 40l20 -6c0 -7 1 -16 2 -19c7 -42 24 -66 65 -66c38 0 90 56 75 134c-5 29 -22 45 -43 45c-29 0 -103 -10 -135 -10c-79 0 -138 54 -153 136c-13 72 -6 167 16 213 c14 28 45 57 95 88c60 39 88 49 130 49c32 0 34 -6 59 -8c17 -1 25 -4 58 -4l5 -18c-5 -10 -6 -38 -5 -44c-15 -4 -43 -4 -57 -4c-11 0 -44 5 -54 8c-16 5 -33 7 -48 8c-39 -3 -65 -26 -78 -68c-13 -47 -16 -141 -5 -199c10 -55 48 -90 99 -90c24 0 65 10 94 10 c26 0 61 -7 80 -25c9 -9 16 -18 17 -26'], + 0x1D6D4: [482,17,660,54,637,'637 458c-14 -24 -17 -29 -25 -55c-19 -6 -42 -15 -62 -15c-10 0 -25 -2 -43 -2s-39 2 -52 3c2 -7 5 -14 5 -19c20 -91 -15 -221 -84 -307c-40 -51 -96 -80 -154 -80c-77 0 -140 57 -162 152c-7 39 -7 83 -2 131c7 66 28 106 82 146c45 36 99 57 170 57c9 0 21 -1 35 -2 c0 0 16 -2 57 -2h108c33 0 80 8 108 17zM387 334c-13 64 -64 91 -117 91c-34 0 -60 -18 -78 -53c-24 -51 -28 -159 -9 -247c10 -48 48 -78 87 -78c45 0 78 29 100 88c23 59 30 142 17 199'], + 0x1D6D5: [493,17,618,32,594,'594 469c-15 -24 -18 -29 -27 -55c-17 -10 -46 -22 -65 -27c-21 -6 -37 -8 -90 -8h-49c-8 -74 -23 -167 -8 -250c10 -52 29 -82 77 -82c18 0 45 29 56 39l16 -30c-20 -20 -66 -73 -114 -73c-79 0 -136 44 -149 117c-12 63 11 213 34 281l-116 2c-46 0 -56 0 -82 -48 l-15 -6l-30 26c14 109 58 114 114 114l197 -4c36 0 93 5 131 8c32 2 74 11 102 20'], + 0x1D6D6: [469,17,538,-5,495,'492 370c17 -91 -24 -221 -96 -307c-42 -51 -99 -80 -158 -80c-76 0 -132 51 -148 140c-4 21 0 56 2 70c8 91 13 140 9 161c-2 10 -9 16 -21 16c-10 0 -22 -3 -33 -10l-34 -21l-18 26l73 54c43 31 84 50 113 50c18 0 30 -13 35 -35c5 -29 4 -48 -5 -147 c-12 -117 -13 -124 -10 -141c12 -66 42 -99 88 -99c45 0 79 29 104 88c25 60 35 143 24 200c-5 31 -26 54 -50 54c-16 0 -28 -4 -36 -12l-14 21c17 14 30 30 57 67c12 3 18 4 26 4c40 0 82 -46 92 -99'], + 0x1D6D7: [469,271,727,41,684,'680 317c12 -64 -4 -141 -31 -190c-23 -38 -91 -84 -163 -112c-26 -9 -53 -16 -80 -22v-3c-8 -143 -10 -179 -3 -240c-19 -2 -38 -5 -82 -14c-15 -4 -19 -5 -32 -7l-12 7c5 41 8 66 12 122l7 125c-150 0 -232 50 -250 152c-8 39 -5 83 8 131c19 66 54 106 134 146 c40 21 85 36 131 46c3 -3 7 -6 9 -10c-2 -12 -7 -26 -10 -32c-30 -9 -57 -23 -79 -44c-51 -51 -89 -154 -73 -242c10 -53 57 -89 133 -100l13 251c-1 9 2 36 2 40c18 41 50 65 108 107c52 36 65 41 107 41c57 0 132 -55 151 -152zM558 325c-9 46 -26 92 -55 92 c-39 0 -60 -11 -71 -39c-9 -21 -14 -188 -18 -257l-6 -86c32 8 60 23 83 45c53 50 83 157 67 245'], + 0x1D6D8: [469,232,654,22,656,'656 -113l-16 -21c-77 -94 -122 -98 -159 -98c-50 0 -81 47 -125 168l-72 191c-72 -104 -125 -220 -150 -359c-15 0 -29 7 -44 11l-50 32c41 129 127 252 224 371c-61 174 -103 202 -139 202c-35 0 -70 -31 -81 -69l-22 13l45 96c4 8 11 14 15 20c20 23 52 25 76 25 c39 0 74 -18 105 -51c17 -21 35 -61 70 -152l169 203c15 -12 34 -23 50 -35l8 -17c-75 -65 -146 -131 -207 -202l43 -109c36 -93 74 -192 96 -224c14 -18 39 -34 59 -34c17 0 33 9 59 38l24 27'], + 0x1D6D9: [636,271,728,-5,687,'684 370c17 -91 -27 -219 -108 -290c-35 -38 -85 -69 -142 -84c-2 -104 -8 -222 -5 -246c-18 -2 -38 -5 -81 -14c-15 -4 -19 -5 -33 -7l-11 7c5 41 8 65 11 121c3 43 7 85 9 129c-74 3 -209 22 -230 137c-4 21 0 56 1 70c7 89 10 140 6 161c-2 10 -9 16 -21 16 c-10 0 -22 -3 -33 -10l-34 -21l-18 26l73 54c43 31 84 50 113 50c18 0 30 -13 35 -35c5 -29 4 -48 -5 -147c-9 -94 -9 -124 -6 -141c11 -57 68 -87 123 -100l18 414c2 75 -1 96 -5 122l-3 16c22 3 38 7 57 14l65 24l13 -12c-7 -58 -11 -86 -13 -116l-17 -340l-7 -125 c53 10 96 40 135 93c39 52 49 142 39 199c-6 31 -27 54 -51 54c-16 0 -28 -4 -36 -12l-14 21c17 14 30 30 57 67c12 3 18 4 26 4c40 0 82 -46 92 -99'], + 0x1D6DA: [469,17,802,41,759,'756 370c17 -91 -23 -221 -96 -307c-42 -51 -98 -80 -157 -80c-64 0 -113 35 -137 97c-27 -26 -37 -47 -68 -68c-26 -18 -53 -29 -85 -29c-39 0 -76 13 -102 39c-29 29 -55 85 -62 124c-26 140 20 196 60 249c24 30 63 57 90 74l39 -24c-14 -11 -29 -28 -41 -44 c-51 -68 -54 -140 -36 -235c8 -43 52 -109 104 -109c26 0 45 20 62 40c12 16 27 59 29 96c3 47 4 88 7 118c42 10 69 15 99 28l18 -12c-11 -59 -22 -139 -14 -181c12 -66 42 -100 87 -100s80 30 105 89c24 60 34 143 24 200c-6 31 -27 54 -51 54c-16 0 -27 -4 -35 -12 l-15 21c18 14 30 30 57 67c12 3 18 4 27 4c40 0 82 -46 91 -99'], + 0x1D6DB: [740,17,571,47,512,'506 403c18 -122 -3 -260 -44 -331c-31 -58 -86 -89 -159 -89c-110 0 -212 89 -227 201c-9 61 8 126 46 175c30 41 71 60 127 60c47 0 83 -13 136 -47c2 22 2 32 -1 55c-2 18 -4 34 -7 50l-21 71c-28 86 -54 112 -93 124c-6 3 -23 9 -33 9c-33 0 -75 -18 -92 -55l-36 14 l-55 63c23 31 149 37 174 37c12 0 31 -2 40 -7c11 -5 25 -13 39 -21c35 -22 84 -61 103 -77c23 -19 35 -30 70 -110c18 -41 27 -78 33 -122zM387 312c-2 2 -7 8 -9 11c-37 26 -60 38 -82 38c-69 0 -113 -89 -98 -203c14 -81 46 -132 88 -132c34 0 66 32 83 83 c15 48 18 91 18 203'], + 0x1D6DC: [471,17,576,69,536,'536 86l-27 -18c-90 -65 -135 -85 -199 -85c-83 1 -134 16 -169 51c-32 30 -54 69 -63 108c-6 22 -9 44 -9 64c0 73 14 144 74 196c51 45 122 69 194 69c68 0 133 -25 180 -68l-52 -62l-17 1c-12 22 -29 44 -49 61c-21 18 -49 26 -79 26c-33 0 -67 -11 -90 -32 c-39 -34 -54 -87 -54 -134l123 -3l136 2l-11 -37l-6 -6l-161 -1l-77 -3c16 -67 28 -86 42 -104c11 -16 54 -64 142 -64c48 0 86 19 154 67'], + 0x1D6DD: [695,17,602,22,580,'580 495c-13 -44 -19 -75 -22 -126c-16 -10 -29 -17 -42 -23c3 -59 0 -116 -8 -158c-10 -56 -52 -124 -102 -165c-37 -32 -83 -40 -131 -40c-77 0 -132 51 -148 140c-4 21 0 56 1 70c9 91 4 140 0 161c-2 10 -9 16 -20 16s-23 -3 -33 -10l-34 -21l-19 26l73 54 c43 31 71 50 99 50c18 0 31 -13 35 -35c5 -29 10 -56 9 -147c-7 -97 -3 -124 0 -141c12 -66 42 -100 87 -100c34 0 53 27 69 79c13 45 10 117 5 202c-97 37 -155 108 -171 194c-9 47 2 94 9 111c15 34 28 63 90 63c98 0 151 -83 176 -221c3 -16 5 -33 7 -50 c14 10 23 26 31 58l4 17zM391 414c-5 42 -9 94 -17 133c-11 61 -27 104 -67 104c-18 0 -20 -20 -22 -33c-3 -23 0 -77 6 -110c7 -35 53 -80 100 -94'], + 0x1D6DE: [469,17,693,39,654,'654 124l-49 -96c-11 -20 -51 -45 -86 -45c-63 0 -84 49 -84 205c0 27 3 55 8 82l-98 -121c-46 -58 -65 -94 -101 -154c-27 -2 -52 -5 -88 -10c-19 15 -29 27 -42 39c30 33 37 43 66 75c12 50 21 101 21 153c0 71 -19 132 -59 132c-35 0 -64 -37 -81 -69l-22 13l49 96 c11 20 51 45 86 45c63 0 84 -49 84 -205c0 -28 -3 -57 -9 -84c32 39 56 72 96 119c28 31 72 98 111 152c26 2 44 9 70 12c0 0 43 -32 52 -52c-23 -25 -42 -41 -66 -63c-12 -49 -20 -98 -20 -148c0 -71 19 -132 59 -132c35 0 64 37 81 69'], + 0x1D6DF: [633,268,722,41,680,'674 304c14 -64 3 -143 -23 -192c-22 -36 -87 -79 -160 -104c-25 -7 -52 -13 -79 -18l2 -3c-3 -143 -4 -178 5 -240c-19 -1 -38 -3 -82 -10c-14 -3 -18 -4 -31 -5l-13 7c4 41 6 66 7 122l3 125c-150 7 -234 62 -256 165c-8 39 -7 83 4 130c16 66 50 104 129 140 c38 19 84 32 129 40c-2 78 -3 98 -10 124l-3 16c22 2 38 5 57 11l64 21l12 -12l-7 -116v-39c137 -7 232 -68 252 -162zM309 419c-30 -8 -56 -21 -77 -41c-49 -48 -83 -149 -64 -238c13 -54 62 -93 137 -107zM553 312c-11 54 -62 92 -133 107l-3 -253c-1 -14 -1 -30 -1 -48 l-2 -86c32 7 59 20 81 41c51 48 77 150 58 239'], + 0x1D6E0: [469,271,561,70,519,'514 320c11 -64 6 -143 -12 -193c-14 -38 -60 -84 -111 -112c-40 -21 -75 -32 -134 -32c-12 0 -49 0 -63 5c64 -84 119 -90 136 -92c14 -2 28 -3 40 -3c53 0 105 -41 115 -93c1 -5 2 -9 3 -29l-55 -42l-33 12l-3 18c0 7 0 14 -1 17c-3 14 -14 26 -27 32l-6 5 c-16 11 -37 19 -54 24c-31 9 -66 20 -103 45c-31 22 -103 78 -129 221c-11 59 -9 101 6 161c21 66 37 101 83 144c50 37 100 61 164 61c98 0 167 -56 184 -149zM394 322c-12 64 -52 103 -105 103c-34 0 -61 -18 -80 -53c-26 -51 -34 -154 -18 -242c12 -63 52 -103 104 -103 c35 0 62 18 81 53c26 50 34 154 18 242'], + 0x1D6E1: [559,17,803,41,760,'757 370c17 -91 -24 -221 -97 -307c-42 -51 -98 -80 -157 -80c-67 0 -113 36 -137 97c-27 -26 -37 -47 -68 -68c-26 -18 -53 -29 -85 -29c-39 0 -76 13 -102 39c-29 29 -55 85 -62 124c-26 140 20 196 60 249c24 30 63 57 90 74l39 -24c-14 -11 -29 -28 -41 -44 c-51 -68 -54 -140 -36 -235c8 -43 52 -109 104 -109c26 0 45 20 62 40c12 16 27 59 29 96c3 47 4 88 7 118c42 10 69 15 99 28l18 -12c-11 -59 -22 -139 -14 -181c12 -66 43 -105 88 -105s79 35 104 94c24 60 36 143 25 200c-17 91 -109 161 -229 161 c-105 0 -165 -22 -141 -153c-6 -8 -14 -4 -25 -8c-21 -8 -34 -23 -53 -34c-15 82 30 166 89 206c35 23 82 52 169 52c135 0 243 -69 264 -189'], + 0x1D6E2: [700,3,744,-35,697,'697 27l-5 -30l-124 3l-137 -3l5 30l47 3c25 2 41 9 43 20c2 9 0 22 -9 64l-25 115h-282l-39 -67c-30 -50 -51 -93 -53 -106c-3 -16 9 -23 42 -26l36 -3l-5 -30l-118 3c-36 0 -72 -1 -108 -3l6 30l36 3c22 2 44 20 62 49l305 502c52 85 69 119 69 119h31l137 -568 c20 -81 28 -100 53 -102zM482 269l-71 298l-177 -298h248'], + 0x1D6E3: [692,3,624,33,601,'599 556c-9 -52 -41 -95 -94 -128c-31 -19 -55 -28 -105 -38c75 -6 106 -15 139 -43c32 -27 44 -68 35 -119c-12 -70 -58 -138 -123 -180c-50 -33 -117 -51 -190 -51c-40 0 -81 3 -121 3c-35 0 -71 -1 -107 -3l4 23l27 10c15 5 27 28 33 65l84 474c14 79 11 86 -34 90 l-35 3l5 30l155 -3c58 0 117 3 176 3c118 0 167 -48 151 -136zM470 208c19 107 -34 156 -167 156c-18 0 -27 0 -66 -2l-55 -315c23 -6 46 -8 74 -8c117 0 195 63 214 169zM498 533c15 83 -25 119 -130 119c-31 0 -54 -2 -81 -8l-43 -243c30 -2 43 -2 60 -2 c111 0 179 47 194 134'], + 0x1D6E4: [692,3,539,-17,609,'609 689c-19 -44 -32 -92 -43 -152h-34l11 65c5 24 1 28 -22 34c-28 8 -83 14 -121 14c-66 0 -81 -1 -113 -8l-92 -522c-14 -79 -11 -87 34 -90l46 -3l-5 -30l-143 3l-144 -3l5 30l48 3c45 3 52 11 66 90l79 449c14 79 10 87 -34 90l-47 3l6 30l23 -1l149 -2l107 2l105 1 '], + 0x1D6E5: [700,3,616,-33,572,'572 41l-2 -9l-67 -35l-287 3l-249 -3l3 25l399 658l41 20zM464 60c2 12 -5 34 -10 55l-108 452l-240 -405c-18 -30 -49 -82 -51 -95c-3 -16 8 -23 40 -26h325c25 2 42 8 44 19'], + 0x1D6E6: [692,3,615,7,640,'640 689c-18 -44 -32 -92 -42 -152h-35l12 65c4 23 2 27 -21 34c-29 9 -83 14 -139 14c-68 0 -85 -1 -116 -8l-47 -267c42 -3 107 -4 156 -4c42 0 61 4 75 38c8 19 14 52 14 52h29l-23 -116l-17 -111h-29s6 37 5 59c-1 33 -18 37 -62 37l-157 -3l-49 -280 c27 -6 44 -8 95 -8c88 0 161 5 183 12c14 5 33 36 46 79l11 34h34c-19 -52 -34 -106 -44 -164l-165 -3l-226 3l-121 -3l5 30l36 3c46 4 52 11 65 90l80 449c14 79 10 87 -34 90l-47 3l5 30l174 -3l228 3'], + 0x1D6E7: [692,3,661,-23,705,'705 692l-1 -29l-585 -619h267c150 0 165 6 183 72l16 57h34c-15 -55 -22 -90 -37 -176l-299 3l-306 -3l5 28l116 117l364 388c45 47 73 76 105 118h-223c-120 0 -148 -8 -157 -47l-19 -71h-33c8 37 11 49 17 81s7 44 11 81h162c88 0 139 -3 227 -3'], + 0x1D6E8: [692,3,819,-17,878,'878 692l-6 -30l-47 -3c-46 -3 -52 -11 -66 -90l-79 -449c-14 -79 -11 -87 34 -90l47 -3l-6 -30l-143 3l-144 -3l5 30l48 3c46 3 52 11 66 90l39 223c-26 2 -42 2 -81 2h-229c-39 0 -55 0 -82 -2l-39 -223c-14 -79 -11 -87 34 -90l46 -3l-5 -30l-143 3l-144 -3l5 30l48 3 c45 3 52 11 66 90l79 449c14 79 10 87 -34 90l-47 3l6 30l142 -3l145 3l-6 -30l-47 -3c-46 -3 -52 -11 -66 -90l-31 -178c19 -1 40 -2 81 -2h229c40 0 61 1 82 2l31 178c14 79 10 87 -34 90l-47 3l6 30l142 -3'], + 0x1D6E9: [709,20,833,67,813,'807 371c-39 -222 -233 -391 -449 -391c-204 0 -321 148 -283 361c39 222 214 368 440 368c213 0 328 -134 292 -338zM697 337c37 211 -40 330 -213 330c-156 0 -265 -106 -298 -290c-37 -213 47 -355 213 -355c153 0 263 117 298 315zM612 461l-24 -116l-16 -111h-30 l6 59l-4 25c-16 9 -41 12 -107 12c-67 0 -93 -3 -112 -12l-12 -25l-16 -59h-29l22 111l18 116h29l-4 -52c-1 -9 1 -18 3 -26c16 -8 43 -11 108 -11s93 3 112 11c5 8 10 17 12 26l14 52h30'], + 0x1D6EA: [692,3,334,-17,393,'393 692l-6 -30l-47 -3c-46 -3 -52 -11 -66 -90l-79 -449c-14 -79 -11 -87 34 -90l46 -3l-5 -30l-143 3l-144 -3l5 30l48 3c45 3 52 11 66 90l79 449c14 79 10 87 -34 90l-47 3l6 30l142 -3'], + 0x1D6EB: [692,3,698,-18,761,'761 692l-5 -30l-42 -2c-25 -1 -52 -14 -83 -38l-303 -240l269 -312c25 -29 39 -40 53 -41l20 -2l-5 -30c-21 2 -42 3 -63 3c-27 0 -52 -1 -79 -3l-282 335l-11 -7l-36 -205c-14 -79 -11 -87 34 -90l46 -3l-5 -30l-143 3l-144 -3l5 30l48 3c45 3 52 11 66 90l79 449 c14 79 10 87 -34 90l-47 3l6 30l142 -3l145 3l-6 -30l-47 -3c-46 -3 -52 -11 -66 -90l-38 -214l320 271c19 16 35 33 36 39l5 27c29 -2 57 -3 86 -3c27 0 52 1 79 3'], + 0x1D6EC: [700,3,720,-46,685,'685 27l-5 -30l-124 3l-137 -3l5 30l47 3c25 2 42 9 44 20c1 9 2 23 -8 65l-108 452l-240 -405c-29 -50 -51 -93 -53 -106c-3 -16 9 -23 43 -26l35 -3l-5 -30l-118 3l-107 -3l5 30l37 3c22 2 44 20 61 49l365 601l41 20l137 -568c20 -81 27 -98 52 -102'], + 0x1D6ED: [692,13,934,-22,987,'987 692l-6 -30l-41 -3c-46 -3 -53 -12 -66 -90l-79 -449c-14 -79 -11 -87 34 -90l46 -3l-5 -30l-148 3l-126 -3l6 30l34 3c46 4 52 11 65 90l81 458l-58 -86l-241 -378c-29 -45 -41 -73 -75 -127h-20l-169 591l-81 -458c-14 -78 -10 -87 34 -90l43 -3l-6 -30l-117 3 l-114 -3l5 30l44 3c46 3 52 12 66 90l79 449c14 78 10 87 -34 90l-43 3l6 30c31 -2 61 -3 92 -3c32 0 62 1 94 3l161 -556l354 556c31 -2 62 -3 93 -3c30 0 61 1 92 3'], + 0x1D6EE: [692,20,836,-18,885,'885 692l-6 -30l-43 -3c-46 -3 -52 -12 -66 -90l-97 -552c-2 -10 -2 -27 -4 -37l-85 16l-360 587l-82 -463c-14 -78 -11 -87 34 -90l43 -3l-6 -30l-117 3l-114 -3l5 30l44 3c46 3 52 12 66 90l79 449c14 78 10 87 -34 90l-43 3l6 30l117 -3c20 0 53 3 53 3l367 -594 l83 471c14 78 10 87 -34 90l-43 3l5 30l114 -3'], + 0x1D6EF: [692,3,693,16,683,'648 213c-14 -54 -38 -130 -53 -216l-289 3l-290 -3c15 86 18 162 23 216h33l-4 -57c-5 -66 18 -72 167 -72h171c150 0 175 6 193 72l16 57h33zM683 692l-23 -111c-4 -26 -7 -44 -11 -81h-33l6 71c3 33 -34 37 -117 37h-186c-81 0 -119 -4 -128 -37l-18 -71h-34 c9 37 13 55 18 81l16 111l254 -3zM539 461l-23 -116l-17 -111h-29l5 59l-3 25c-16 9 -41 12 -108 12s-93 -3 -112 -12l-12 -25l-15 -59h-30l23 111l17 116h30l-5 -52c0 -9 1 -18 4 -26c16 -8 43 -11 108 -11c64 0 92 3 111 11c6 8 10 17 13 26l14 52h29'], + 0x1D6F0: [709,20,833,66,811,'805 367c-39 -220 -235 -387 -455 -387c-198 0 -314 151 -277 361c39 220 214 368 437 368c218 0 332 -132 295 -342zM695 337c36 208 -41 330 -209 330c-160 0 -269 -104 -302 -289c-37 -214 48 -356 213 -356c152 0 263 117 298 315'], + 0x1D6F1: [692,3,819,-17,878,'878 692l-6 -30l-47 -3c-46 -3 -52 -11 -66 -90l-79 -449c-14 -79 -11 -87 34 -90l47 -3l-6 -30l-143 3l-144 -3l5 30l48 3c46 3 52 11 66 90l79 449c14 79 10 87 -34 90l-47 3h-198l-47 -3c-46 -3 -52 -11 -66 -90l-79 -449c-14 -79 -11 -87 34 -90l46 -3l-5 -30l-143 3 l-144 -3l5 30l48 3c45 3 52 11 66 90l79 449c14 79 10 87 -34 90l-47 3l6 30l385 -3'], + 0x1D6F2: [692,3,592,-17,627,'625 537c-21 -120 -140 -213 -275 -213c-19 0 -33 1 -55 6l-4 36c24 -8 39 -10 59 -10c85 0 156 63 172 153c17 95 -31 145 -137 145c-33 0 -62 -4 -98 -12l-92 -522c-14 -79 -11 -87 34 -90l46 -3l-5 -30l-143 3l-144 -3l5 30l48 3c45 3 52 11 66 90l79 449 c13 74 7 87 -36 90l-44 3l6 30l177 -3c56 0 112 3 167 3c125 0 191 -59 174 -155'], + 0x1D6F3: [709,20,833,67,813,'807 371c-39 -222 -233 -391 -449 -391c-204 0 -321 148 -283 361c39 222 214 368 440 368c213 0 328 -134 292 -338zM702 372c23 189 -55 295 -218 295c-156 0 -265 -106 -298 -290l-1 -5h517zM695 330h-515c-18 -187 66 -308 219 -308c151 0 260 114 296 308'], + 0x1D6F4: [692,3,696,4,672,'672 692c-9 -37 -13 -55 -17 -81c-5 -26 -7 -44 -12 -81h-33l7 71c4 39 -21 47 -141 47h-223c8 -20 15 -35 24 -52l39 -66l84 -148l-1 -10l-271 -288h292c150 0 164 6 183 72l16 57h33c-14 -54 -29 -130 -44 -216l-271 3l-333 -3l5 28l115 117l185 196l-188 325l9 29 l221 -3'], + 0x1D6F5: [692,3,602,79,666,'666 692c-15 -57 -24 -96 -35 -161h-31l10 79c4 24 -5 33 -33 33h-152c-9 -33 -13 -55 -21 -100l-75 -423c-14 -79 -10 -87 34 -90l47 -3l-6 -30l-143 3l-144 -3l6 30l47 3c46 3 52 11 66 90l75 423c7 43 10 66 13 100h-152c-27 0 -39 -9 -45 -33l-18 -79h-30 c12 65 16 104 22 161l198 -3h155'], + 0x1D6F6: [705,3,634,78,717,'717 694l-2 -15c-97 -97 -137 -142 -229 -253c-72 -88 -92 -122 -102 -177l-23 -129c-14 -79 -10 -87 35 -90l46 -3l-5 -30l-144 3l-143 -3l5 30l47 3c46 3 52 11 66 90l25 142c3 16 3 30 -1 40l-84 216c-28 73 -70 125 -102 130l-28 3l5 29l117 24c3 1 6 1 6 1 c18 0 50 -46 70 -103l94 -261l130 163c50 63 89 116 139 190h78'], + 0x1D6F7: [692,3,833,71,806,'804 359c-21 -122 -182 -226 -360 -247c-12 -71 -8 -79 36 -82l46 -3l-5 -30l-144 3l-143 -3l5 30l48 3c42 3 50 10 63 78c-171 9 -298 110 -276 235c22 124 175 220 360 236c11 69 6 77 -36 80l-47 3l5 30l143 -3l145 3l-6 -30l-47 -3c-44 -3 -52 -11 -64 -78 c180 -11 299 -100 277 -222zM697 344c20 114 -54 179 -178 193l-68 -386c126 10 226 79 246 193zM426 538c-129 -9 -224 -68 -243 -172c-20 -116 57 -192 176 -211'], + 0x1D6F8: [700,3,643,-31,704,'704 689l-6 -30l-40 -3c-15 -1 -30 -14 -79 -68l-187 -208l123 -280c23 -52 34 -68 52 -70l29 -3l-5 -30c-24 2 -46 3 -69 3c-25 0 -49 -1 -74 -3l-126 306l-252 -306c-16 2 -33 3 -49 3c-17 0 -35 -1 -52 -3l6 30l26 3c22 3 35 14 66 48l237 263l-88 213 c-22 55 -51 88 -74 90l-43 3l2 26l143 27c17 -10 29 -27 45 -65l87 -216l229 270h99'], + 0x1D6F9: [692,3,767,94,832,'832 692l-6 -30l-43 -3c-38 -3 -53 -9 -61 -53c-31 -176 -120 -297 -256 -319l-29 -167c-14 -79 -11 -87 34 -90l46 -3l-5 -30l-143 3l-144 -3l5 30l48 3c46 3 52 11 66 90l28 162c-172 3 -225 126 -198 282c16 89 11 92 -33 95l-47 3l6 30l137 -3c14 1 29 3 43 3 c6 -17 2 -44 -3 -72l-8 -45c-20 -115 9 -219 114 -230l40 224c14 79 10 87 -34 90l-35 3l5 30l131 -3l135 3l-5 -30l-38 -3c-46 -3 -52 -11 -66 -90l-39 -222c104 15 176 123 197 238l7 44c5 25 11 48 22 63c9 0 23 -3 30 -3'], + 0x1D6FA: [709,3,822,4,799,'793 371c-24 -132 -145 -249 -216 -302h113c18 0 32 8 41 37l16 52h26c-14 -43 -27 -112 -35 -161c-21 0 -79 3 -117 3c-22 0 -96 0 -117 -3h-21l7 39c10 9 24 13 41 23c7 4 17 14 30 29c33 40 104 155 121 247c37 212 -19 332 -193 332c-173 0 -273 -119 -310 -332 c-16 -92 14 -207 34 -247c7 -15 14 -25 19 -29c12 -10 26 -14 33 -23l-7 -39h-21c-20 3 -94 3 -116 3c-38 0 -97 -3 -117 -3c8 49 19 118 21 161h26l-3 -52c-1 -29 10 -37 29 -37h113c-53 53 -133 170 -110 302c37 207 196 338 417 338c220 0 332 -132 296 -338'], + 0x1D6FB: [690,13,616,80,684,'684 690l-2 -25l-399 -658l-41 -20l-162 659l1 9l67 35l288 -3zM597 620c2 16 -8 23 -40 26h-325c-25 -2 -42 -8 -44 -19c-2 -12 5 -34 10 -55l108 -452l240 405c18 30 48 82 51 95'], + 0x1D6FC: [482,11,537,22,496,'496 79l-51 -44c-35 -29 -66 -46 -88 -46c-38 0 -66 55 -72 159c-33 -35 -80 -80 -124 -116c-32 -23 -64 -43 -103 -43c-23 0 -37 44 -35 77c4 80 41 199 89 288c19 31 40 57 65 79c34 31 68 48 90 49c21 0 49 -4 56 -49l19 -183l34 48c40 59 54 87 81 170 c4 -2 12 -5 15 -7c5 -15 9 -24 14 -35c-7 -20 -46 -80 -61 -101c-16 -22 -47 -66 -79 -106l5 -47c3 -30 14 -72 22 -91c9 -19 21 -22 36 -22c16 0 40 8 78 39zM282 179l-15 175c-4 44 -14 62 -43 62c-22 0 -49 -29 -63 -62c-37 -83 -58 -191 -61 -255c-1 -26 4 -40 17 -40 c18 0 46 9 78 35c26 21 57 51 87 85'], + 0x1D6FD: [711,277,582,7,534,'534 235c-4 -136 -131 -246 -284 -246c-51 0 -88 9 -127 31c-19 -78 -29 -191 -39 -280c-29 -4 -37 -9 -63 -17l-14 8l132 642l31 125c14 59 29 94 88 137c58 44 132 76 173 76c51 0 91 -46 90 -101c-2 -55 -23 -86 -90 -164c-3 -4 -8 -10 -11 -14 c-18 -21 -25 -33 -28 -46v-5c47 -12 70 -21 93 -39c34 -26 50 -55 49 -107zM457 575c1 51 -32 86 -82 86c-49 0 -92 -30 -112 -82c-8 -22 -27 -99 -51 -200l-55 -213c-2 -16 -2 -26 -3 -36c-2 -66 43 -107 119 -107c42 0 78 14 106 43c42 41 66 101 68 162 c4 85 -45 124 -132 124c-24 0 -41 -3 -78 -16l-5 12l19 43c10 0 15 0 22 -1c4 -1 14 -1 22 -1c41 0 59 13 88 38c56 78 73 104 74 148'], + 0x1D6FE: [482,226,571,14,589,'589 396c-31 -40 -36 -60 -38 -69c-1 -3 -3 -5 -11 -7c-22 -6 -75 -68 -105 -130c-27 -55 -57 -131 -67 -200l-35 -172c-20 -10 -37 -29 -54 -44l-32 9l45 183c15 59 34 118 49 177c5 90 1 141 -33 230c-8 23 -37 64 -90 64c-26 0 -56 -23 -70 -35 c-36 -33 -65 -84 -79 -126l-27 -5c-9 19 -14 30 -28 49c17 35 71 93 91 109c53 46 94 53 119 53c29 0 74 -6 108 -58c21 -30 38 -67 50 -125c5 -31 9 -59 8 -122c58 127 143 229 183 239c6 0 5 -15 16 -20'], + 0x1D6FF: [711,11,458,48,450,'450 674c-9 -19 -11 -45 -17 -61l-9 -5c-13 25 -44 44 -53 48c-23 11 -45 23 -75 23c-35 0 -52 -25 -52 -47c3 -44 63 -117 102 -163c36 -43 73 -94 76 -185c5 -79 -55 -157 -103 -207c-7 -9 -14 -17 -24 -24c-48 -43 -85 -64 -129 -64c-65 0 -113 26 -117 151 c-4 55 32 114 59 153c39 55 87 104 137 149c7 5 15 12 25 18c-33 61 -50 93 -53 147c-2 60 31 104 110 104c25 0 104 -15 121 -28zM359 250c-3 72 -38 130 -69 180c-9 -5 -15 -9 -19 -13c-67 -55 -119 -123 -137 -205c-5 -18 -11 -45 -10 -61c3 -66 32 -112 81 -112 c55 0 117 83 146 159c3 10 10 36 8 52'], + 0x1D700: [484,11,444,39,401,'401 456c-15 -36 -25 -62 -32 -107h-28l6 66c-1 2 -4 17 -19 23c-16 7 -31 11 -52 11c-57 0 -115 -45 -117 -101c-3 -53 37 -80 98 -80c20 0 40 3 62 10l1 -10c-3 -7 -9 -31 -10 -37c-16 5 -37 7 -62 7c-97 0 -122 -51 -124 -113c-3 -64 64 -86 113 -86 c36 0 85 17 139 55l11 -17c-81 -62 -138 -88 -188 -88c-54 0 -108 12 -136 50c-13 18 -25 38 -23 73c1 28 12 67 46 93c34 27 61 44 85 51c-56 11 -87 38 -85 79c2 37 44 81 75 102c42 29 80 47 125 47c34 0 82 -10 115 -28'], + 0x1D701: [711,226,454,47,539,'539 702l-8 -32l-30 -11c-47 -18 -93 -45 -134 -78c-121 -102 -235 -271 -242 -422c-3 -79 23 -119 79 -119c33 0 102 10 131 10c21 0 50 -2 63 -18c6 -6 9 -14 8 -23c-1 -35 -10 -85 -48 -130c-48 -57 -119 -105 -175 -105c-45 0 -81 35 -79 78c1 5 1 11 2 18l50 34 l9 -4c-1 -9 -2 -17 -3 -22c-1 -35 25 -62 60 -62c44 0 95 39 123 110c1 8 2 14 3 21c1 34 -15 52 -49 52c-30 0 -112 -10 -135 -10c-80 0 -120 51 -116 147c4 90 44 173 102 250c58 76 123 153 198 214l34 27h-4c-21 0 -47 3 -80 10c-20 4 -31 5 -45 5c-13 0 -22 -1 -39 -5 l-33 -58h-21l38 122c24 7 44 10 61 10c14 0 34 -4 62 -11l17 -5c48 -13 99 -21 133 -21c14 0 25 4 35 14l24 23'], + 0x1D702: [482,276,526,46,506,'506 447c0 -19 -4 -45 -13 -74l-142 -560c-6 -24 -8 -43 -10 -72c-24 -3 -55 -9 -87 -17l-8 14c8 10 17 23 23 39l143 542c8 33 11 52 11 71c0 16 -6 24 -17 24c-45 0 -119 -62 -176 -145c-46 -70 -68 -135 -87 -261c-23 -4 -46 -10 -71 -17l-7 11c43 144 86 335 86 387 c0 15 -7 25 -18 25c-6 0 -14 -4 -34 -17l-46 -29l-7 20l30 20c74 53 111 74 132 74c15 0 23 -12 23 -33c1 -11 -1 -22 -5 -41l-40 -161c53 74 83 110 122 145c59 54 126 90 168 90c19 0 31 -13 30 -35'], + 0x1D703: [711,11,492,71,493,'493 489c-7 -151 -76 -316 -148 -403c-50 -60 -113 -97 -166 -97c-84 0 -113 77 -106 236c8 184 81 335 174 420c48 45 93 66 136 66c82 0 116 -83 110 -222zM392 319c-16 8 -44 11 -112 11c-71 0 -98 -3 -120 -12c-6 -32 -10 -64 -11 -95c-5 -119 2 -196 62 -196 c30 0 58 18 79 49c35 52 76 142 102 243zM416 467c6 124 3 206 -60 206c-24 0 -47 -8 -62 -23c-38 -42 -88 -150 -120 -268c18 -7 47 -10 115 -10c66 0 97 3 117 10c6 28 9 57 10 85'], + 0x1D704: [482,9,285,54,264,'264 99l-31 -25c-79 -64 -114 -83 -149 -83c-19 0 -30 15 -29 40c-1 13 1 26 8 55c4 11 4 14 5 21l69 239c4 19 13 49 20 116l69 20l12 -14c-6 -17 -12 -33 -16 -48l-79 -304c-7 -22 -8 -30 -9 -40c1 -12 6 -20 14 -20c12 0 31 9 61 30l45 31'], + 0x1D705: [482,9,518,61,526,'526 473l-19 -63c-17 4 -27 6 -36 6c-50 0 -97 -25 -161 -86l-15 -14c34 -123 53 -177 85 -241c9 -17 15 -23 25 -23c9 0 15 2 30 10l44 24l7 -19l-47 -32c-47 -31 -70 -44 -83 -44c-25 0 -54 68 -114 268c-34 -32 -61 -72 -71 -116l-31 -135l-67 -17l-9 7 c46 129 98 334 101 393c0 12 -6 21 -16 21c-9 0 -20 -5 -49 -23l-33 -21l-6 20l28 20c77 53 116 73 137 73c15 0 22 -10 21 -31c0 -12 -3 -24 -8 -42l-7 -26c-7 -22 -16 -62 -22 -85l-17 -66c133 175 220 251 286 251c13 0 31 -3 47 -9'], + 0x1D706: [711,12,569,-32,543,'543 85c-98 -72 -135 -94 -160 -94c-16 0 -27 11 -29 28l-55 397c-123 -163 -172 -255 -254 -406c-25 -8 -39 -13 -58 -22l-19 22c56 80 236 331 326 439l-12 93c-8 58 -32 103 -58 103c-9 0 -39 -12 -59 -19l4 24c23 14 63 39 91 61c47 -6 79 -77 98 -217l50 -349 c8 -34 12 -58 19 -70c11 -19 15 -19 19 -19c8 0 32 10 62 30l27 17'], + 0x1D707: [482,276,596,32,549,'549 85c-99 -72 -137 -94 -163 -94c-19 0 -30 15 -28 40c-1 16 3 38 14 76l39 132c-32 -51 -55 -79 -97 -125c-68 -74 -134 -125 -164 -125c-3 0 -10 1 -22 4l-18 -225c-2 -13 -10 -23 -34 -32l-31 -12l-13 8l148 660c2 11 -5 20 -15 20c-9 0 -19 -5 -49 -23l-33 -21 l-7 20l30 20c76 54 113 74 134 74c14 0 22 -11 22 -32c-1 -12 -3 -26 -6 -42l-65 -271c-7 -26 -9 -37 -8 -52c-1 -17 3 -26 12 -26c41 0 123 74 184 166c31 46 56 113 74 189l11 51l68 17l8 -9l-94 -357c-6 -16 -7 -32 -8 -40c0 -10 5 -17 13 -17c12 0 36 11 62 27l26 17'], + 0x1D708: [482,12,499,41,517,'517 473c-2 -35 -81 -188 -133 -277c-110 -192 -218 -207 -257 -208l-17 15c0 19 1 35 4 57l35 301c3 29 -7 49 -21 49c-5 0 -9 -2 -21 -9l-56 -33l-10 18l85 56c51 33 62 40 76 40c17 0 24 -20 22 -62c-3 -64 -30 -275 -32 -304c-2 -27 -4 -39 -5 -63 c42 6 97 23 154 124c31 53 102 198 106 286c22 2 29 8 58 19'], + 0x1D709: [711,226,456,48,540,'540 702l-8 -32l-30 -11c-43 -16 -134 -52 -136 -107c-2 -50 44 -83 97 -81c1 -5 2 -8 2 -13c-8 -10 -16 -34 -16 -39c-4 -1 -29 -1 -42 -1c-9 0 -38 5 -47 8c-17 6 -36 12 -59 12c-31 0 -58 -13 -80 -29c-50 -38 -90 -142 -95 -250c-3 -79 23 -119 79 -119 c33 0 102 10 131 10c21 0 50 -2 63 -18c6 -6 9 -14 8 -23c-1 -35 -10 -85 -48 -130c-48 -57 -119 -105 -175 -105c-45 0 -81 35 -79 78c1 5 1 11 2 18l50 34l9 -4c-1 -9 -2 -17 -3 -22c-1 -35 25 -62 60 -62c44 0 95 39 123 110c1 8 2 14 3 21c1 34 -15 52 -49 52 c-30 0 -112 -10 -135 -10c-80 0 -120 51 -116 147c5 105 48 210 105 259c52 45 119 81 164 85c-11 13 -15 28 -14 47c2 37 31 67 78 100c-23 0 -48 3 -83 10c-20 4 -31 5 -45 5c-13 0 -22 -1 -39 -5l-33 -58h-21l38 122c24 7 44 10 61 10c14 0 34 -4 62 -11l17 -5 c48 -13 99 -21 133 -21c14 0 25 4 35 14l24 23'], + 0x1D70A: [482,11,484,53,454,'454 331c-4 -101 -52 -215 -116 -274c-46 -42 -107 -68 -162 -68c-83 0 -126 57 -122 163c4 122 53 223 136 281c46 32 93 49 136 49c83 0 131 -57 128 -151zM377 315c3 84 -28 129 -89 129c-24 0 -47 -6 -61 -17c-50 -40 -93 -163 -98 -276c-2 -79 30 -124 88 -124 c31 0 57 12 76 33c46 53 81 159 84 255'], + 0x1D70B: [493,11,677,68,705,'705 481c-19 -24 -23 -26 -36 -47c-15 -6 -37 -16 -55 -16c-23 -3 -46 -4 -69 -4l-46 -206c-6 -29 -8 -56 -8 -81c-1 -62 13 -91 60 -91c17 0 46 23 43 21l25 17l8 -19c-65 -53 -93 -66 -144 -66c-31 0 -70 13 -68 118c0 64 60 245 78 307l-186 7 c-57 -176 -120 -328 -157 -406l-73 -26l-9 9c82 127 121 196 207 424c-21 0 -39 1 -51 1c-57 0 -97 -3 -118 -63l-10 -7l-13 8c29 87 57 120 132 120l315 -9c25 0 51 1 63 2c33 0 78 10 105 19'], + 0x1D70C: [482,276,524,-6,495,'495 331c-5 -103 -55 -217 -122 -276c-45 -41 -105 -66 -158 -66c-50 0 -86 19 -105 57l-8 -1c-9 -51 -16 -127 -19 -197c-2 -40 -2 -78 -2 -107c-28 -4 -47 -9 -72 -17l-15 8c17 104 36 259 58 364c14 61 31 122 59 181c11 24 24 49 40 71c22 36 52 66 87 89 c45 30 89 45 132 45c82 0 129 -57 125 -151zM418 316c4 84 -26 128 -89 128c-24 0 -46 -6 -60 -17c-51 -40 -95 -163 -100 -276c-4 -79 27 -124 87 -124c30 0 57 12 76 33c46 53 82 159 86 256'], + 0x1D70D: [482,226,472,38,454,'454 458c-7 -10 -15 -34 -15 -39c-4 -1 -29 -1 -42 -1c-9 0 -38 5 -46 8c-18 6 -37 12 -60 12c-31 0 -58 -13 -79 -29c-51 -38 -91 -142 -96 -250c-3 -79 23 -119 79 -119c33 0 103 10 132 10c21 0 49 -2 63 -18c6 -6 8 -14 7 -23c-2 -35 -10 -85 -49 -130 c-47 -57 -118 -105 -174 -105c-45 0 -81 35 -78 78c0 5 0 11 1 18l50 34l10 -4c-2 -9 -3 -17 -4 -22c-1 -35 25 -62 60 -62c44 0 95 39 122 110c2 8 3 14 4 21c1 34 -15 52 -49 52c-30 0 -112 -10 -135 -10c-80 0 -120 51 -116 147c5 105 48 210 105 259s126 87 179 87 s103 -11 130 -11c1 -5 2 -8 1 -13'], + 0x1D70E: [494,11,582,52,639,'639 482c-20 -24 -25 -29 -36 -50c-17 -6 -39 -14 -57 -14c-22 0 -50 0 -83 2c2 -11 4 -23 3 -36c-2 -42 -23 -110 -50 -163c-32 -63 -79 -126 -124 -167c-50 -45 -91 -65 -135 -65c-65 0 -110 38 -104 163s57 227 145 285c45 30 88 45 132 45c24 0 59 -2 90 -3l106 -1 c33 0 79 7 106 16zM400 356c4 78 -50 88 -111 88c-24 0 -46 -6 -60 -17c-49 -39 -95 -157 -100 -276c-3 -66 23 -112 72 -112c88 0 192 168 199 317'], + 0x1D70F: [493,11,559,68,594,'594 481c-20 -24 -24 -26 -36 -47c-17 -6 -39 -16 -57 -16c-23 -3 -47 -4 -70 -4l-65 2l-55 -208c-7 -29 -10 -56 -11 -81c-3 -62 10 -91 57 -91c17 0 44 21 44 21l24 17l7 -19c-65 -53 -94 -66 -145 -66c-31 0 -69 13 -64 118c3 66 71 255 90 312c-38 2 -77 4 -101 4 c-57 0 -97 -3 -121 -63l-9 -7l-14 8c33 87 62 120 137 120c44 0 158 -9 214 -9c25 0 50 1 62 2c33 0 79 10 106 19'], + 0x1D710: [482,11,528,56,510,'510 384c-2 -42 -22 -110 -49 -163c-32 -63 -79 -126 -124 -167c-50 -45 -91 -65 -135 -65c-65 0 -108 54 -105 132c1 8 1 17 3 25l57 228c1 5 2 13 3 18c0 11 -6 20 -16 20c-9 0 -20 -5 -49 -23l-33 -21l-6 20l28 20c78 54 116 74 137 74c14 0 21 -12 20 -31 c0 -13 -3 -27 -7 -43l-54 -209c-7 -26 -9 -38 -9 -53c-3 -66 26 -107 75 -107c88 0 192 162 199 311c2 40 -12 63 -40 63c-10 0 -18 -3 -28 -9l-10 19l52 47c10 8 20 12 34 12c37 0 60 -40 57 -98'], + 0x1D711: [482,276,638,50,610,'610 331c-5 -103 -73 -217 -165 -276c-40 -26 -88 -45 -136 -56l-53 -258c-32 -5 -52 -10 -73 -17l-7 6l9 37l57 223c-6 -1 -12 -1 -18 -1c-117 0 -178 56 -173 163c6 125 76 227 198 285c31 15 71 34 93 34c3 0 7 -1 10 -12c-7 -9 -6 -9 -16 -18c-20 -3 -37 -8 -50 -14 c-79 -42 -154 -164 -159 -276c-3 -72 43 -115 122 -123l65 302c4 16 12 35 22 46c26 28 74 65 113 87c22 12 48 19 71 19c27 0 67 -57 79 -87c7 -19 12 -40 11 -64zM533 315c3 53 -18 118 -45 118c-33 0 -62 -9 -75 -24c-24 -20 -56 -182 -71 -261l-27 -119 c32 5 59 16 81 31c72 53 132 158 137 255'], + 0x1D712: [482,226,557,-44,588,'588 443c-111 -75 -200 -148 -273 -220l25 -193c7 -44 19 -121 29 -149c13 -28 31 -42 52 -42c22 0 49 18 91 59l8 -19l-59 -61c-40 -41 -74 -44 -98 -44c-41 0 -67 56 -81 177l-28 208c-121 -135 -188 -264 -243 -385l-23 4c-8 7 -20 17 -32 30c65 123 173 261 294 390 c-16 148 -40 219 -83 219c-26 0 -54 -19 -90 -66l-14 9l66 93c13 18 38 29 66 29c76 0 105 -78 116 -221c82 82 167 159 246 221c8 -7 19 -18 29 -27'], + 0x1D713: [646,276,646,48,640,'640 384c-2 -42 -22 -110 -49 -163c-32 -63 -64 -110 -110 -150c-52 -46 -102 -66 -141 -74l-54 -256c-32 -5 -52 -10 -73 -17l-7 6l9 37l56 222h-9c-100 0 -172 63 -169 132c1 8 1 17 3 25l53 228c1 5 2 13 3 18c0 11 -6 20 -16 20c-9 0 -20 -5 -49 -23l-33 -21l-6 20 l28 20c78 54 116 74 137 74c14 0 21 -12 20 -31c0 -13 -3 -27 -7 -43l-50 -209c-5 -19 -8 -38 -8 -53c-4 -80 63 -100 115 -105l116 569c31 12 59 24 79 36l11 -15c-21 -54 -34 -103 -54 -197l-44 -194l-42 -198c96 13 216 95 226 308c2 40 -12 63 -40 63 c-10 0 -18 -3 -28 -9l-10 19l52 47c10 8 20 12 34 12c37 0 60 -40 57 -98'], + 0x1D714: [482,11,765,42,759,'759 384c-2 -42 -22 -110 -49 -163c-32 -63 -79 -126 -124 -167c-50 -45 -91 -65 -135 -65c-57 0 -97 41 -104 103c-36 -29 -57 -49 -97 -71c-29 -16 -67 -32 -96 -32c-37 0 -60 14 -81 40c-31 39 -32 89 -29 147c3 76 47 163 123 230c27 24 74 57 101 76l15 -18 c-11 -11 -30 -28 -42 -38c-89 -81 -117 -162 -121 -254c-2 -30 3 -66 23 -89c15 -20 39 -33 68 -33c34 0 64 16 93 40c30 25 42 67 56 101l32 122l66 26l11 -14c-7 -17 -14 -31 -18 -48l-23 -77c-7 -26 -8 -39 -8 -54c-3 -66 26 -107 75 -107c88 0 191 162 198 311 c2 40 -11 63 -39 63c-10 0 -18 -3 -28 -9l-10 19l52 47c10 8 20 12 34 12c37 0 60 -40 57 -98'], + 0x1D715: [733,9,545,64,526,'525 404c-9 -123 -61 -259 -115 -326c-48 -57 -105 -87 -171 -87c-104 0 -182 86 -174 194c7 62 37 125 84 171c40 39 82 57 131 57c51 0 86 -16 146 -66c9 48 13 51 16 80c2 18 2 34 2 50l-4 72c-9 86 -33 113 -77 127c-7 3 -26 10 -41 10c-39 0 -92 -16 -115 -48l-14 4 l-35 60c25 26 144 31 167 31c11 0 26 -3 34 -7c7 -3 18 -11 32 -21c28 -19 75 -58 90 -75c19 -22 33 -101 36 -108c8 -38 12 -73 8 -118zM418 313c0 0 -8 9 -15 15c-32 28 -58 40 -87 40c-81 0 -155 -93 -164 -208c-6 -86 22 -138 77 -138c44 0 90 33 120 86 c30 51 43 94 69 205'], + 0x1D716: [482,11,489,54,491,'491 422l-41 -52l-20 -2c-7 15 -18 32 -25 39c-20 24 -53 31 -86 31c-35 0 -71 -13 -98 -37c-43 -37 -62 -90 -70 -139l108 -1l125 2l-14 -35l-6 -6l-140 1c-7 0 -55 0 -80 -3c-2 -12 -4 -25 -3 -37c1 -11 0 -22 3 -32c13 -64 77 -112 122 -112c36 0 85 17 137 55l24 17 l9 -19c-94 -74 -146 -103 -205 -103c-53 0 -107 12 -139 50c-26 32 -38 73 -38 116c0 17 0 35 4 53c18 86 54 150 117 203c55 46 118 71 183 71c53 0 102 -23 133 -60'], + 0x1D717: [711,11,553,57,581,'581 459c-3 -7 -7 -16 -11 -26l-34 -72c-12 -8 -23 -13 -33 -18c-29 -104 -79 -201 -124 -262c-44 -57 -124 -92 -176 -92c-65 0 -108 54 -105 132c1 8 1 17 3 25l57 228c1 5 2 13 3 18c0 11 -6 20 -16 20c-9 0 -20 -5 -49 -23l-33 -21l-6 20l28 20c78 54 116 74 137 74 c14 0 21 -12 20 -31c0 -13 -3 -27 -7 -43l-54 -209c-7 -26 -9 -38 -9 -53c-3 -66 26 -107 75 -107c29 0 65 22 86 53c35 52 69 131 95 232c-84 20 -161 92 -158 160c3 70 12 107 47 161c37 55 57 66 100 66c82 0 116 -83 110 -222c-1 -26 -4 -52 -8 -78c6 7 12 14 19 24 l21 30zM450 467c6 124 3 206 -60 206c-18 0 -38 -28 -52 -69c-4 -14 -14 -52 -16 -91c-3 -69 69 -120 118 -130c5 27 9 56 10 84'], + 0x1D718: [483,17,660,72,609,'609 114l-66 -93c-12 -18 -36 -30 -64 -30c-76 0 -87 51 -54 207c9 43 25 85 42 121l-176 -179c-57 -58 -84 -90 -133 -144c-25 -2 -39 -10 -65 -13c0 0 -11 19 -14 39c22 21 36 32 57 48c30 58 59 118 75 194c21 96 -7 152 -43 153c-26 0 -47 -19 -83 -66l-13 9l65 93 c13 18 37 30 65 30c76 0 87 -51 54 -207c-11 -50 -32 -102 -54 -147l180 166c32 31 118 121 167 175c24 3 13 3 38 7c0 0 9 -24 13 -44c-21 -20 -46 -40 -73 -61c-23 -48 -43 -95 -57 -162c-21 -96 6 -152 43 -153c26 0 47 19 83 66'], + 0x1D719: [644,274,637,54,605,'605 317c-3 -103 -68 -215 -158 -270c-40 -24 -88 -41 -134 -49l-49 -259c-32 -3 -52 -7 -73 -13l-7 7l10 36l52 223c-6 -1 -12 0 -18 0c-115 6 -177 66 -173 174c4 126 72 225 191 278c31 13 61 23 92 29l24 139c31 11 59 21 78 32l11 -15c-17 -44 -27 -85 -41 -150 c5 1 11 1 17 0c113 -6 181 -67 178 -162zM529 306c2 77 -44 124 -127 135l-11 -53l-45 -225l-21 -106c-1 -5 -4 -16 -7 -29c31 3 58 13 80 27c70 49 128 153 131 251zM332 443c-19 -2 -36 -6 -48 -12c-77 -38 -151 -157 -154 -270c-2 -73 34 -116 122 -131'], + 0x1D71A: [482,276,535,55,492,'492 331c-5 -103 -55 -217 -122 -276c-45 -41 -105 -66 -158 -66c-50 0 -86 19 -105 57l-8 -1l6 -30c49 -135 142 -158 166 -158c7 0 26 -3 41 -3c45 0 81 -35 79 -78c0 -5 -1 -11 -2 -18l-49 -34l-10 4c1 9 2 17 3 23c1 23 -17 38 -31 53c-35 38 -83 25 -148 75 c-29 22 -104 78 -98 215c3 62 24 124 52 183c11 24 24 49 40 71c22 36 52 66 87 89c45 30 89 45 132 45c82 0 129 -57 125 -151zM415 316c4 84 -26 128 -89 128c-24 0 -46 -6 -60 -17c-51 -40 -95 -163 -100 -276c-4 -79 27 -124 87 -124c30 0 57 12 76 33 c46 53 82 159 86 256'], + 0x1D71B: [548,11,765,42,759,'759 384c-2 -42 -22 -110 -49 -163c-32 -63 -79 -126 -124 -167c-50 -45 -91 -65 -135 -65c-57 0 -97 41 -104 103c-36 -29 -57 -49 -97 -71c-29 -16 -67 -32 -96 -32c-37 0 -60 14 -81 40c-31 39 -32 89 -29 147c3 76 47 163 123 230c27 24 74 57 101 76l15 -18 c-11 -11 -30 -28 -42 -38c-89 -81 -117 -162 -121 -254c-2 -30 3 -66 23 -89c15 -20 39 -33 68 -33c34 0 64 16 93 40c30 25 42 67 56 101l32 122l66 26l11 -14c-7 -17 -14 -31 -18 -48l-23 -77c-7 -26 -8 -39 -8 -54c-3 -66 26 -107 75 -107c88 0 191 162 198 311 c4 94 -74 148 -195 148c-68 0 -165 -13 -171 -145c-4 -3 -12 -3 -17 -5c-11 -4 -23 -13 -34 -19c3 73 49 140 123 182c39 22 92 37 138 37c148 0 227 -56 222 -164'], + 0x1D71C: [686,3,733,-35,690,'690 34l-6 -37l-155 3l-149 -3l6 37l53 3c27 2 26 39 23 55l-24 114h-246l-61 -112c-11 -22 -16 -55 14 -57l48 -3l-6 -37c-37 2 -73 3 -110 3l-112 -3l7 37l30 3c22 2 43 21 65 60l255 438l82 151h70l147 -605c8 -29 19 -40 46 -44zM426 262l-57 254l-143 -254h200'], + 0x1D71D: [681,3,646,22,627,'625 546c-7 -38 -27 -74 -54 -96c-36 -29 -67 -43 -154 -73c77 -5 109 -14 140 -39c30 -25 41 -69 32 -122c-23 -129 -177 -219 -304 -219l-139 3l-124 -3l4 23l35 18c16 8 23 23 29 57l79 448c16 88 14 94 -29 98l-36 3l6 37l165 -3c62 0 126 3 188 3 c124 0 178 -44 162 -135zM440 202c18 102 -24 146 -137 146h-30l-51 -292c16 -3 26 -4 41 -4c104 0 158 46 177 150zM476 524c13 74 -17 107 -96 107c-19 0 -34 -1 -58 -4l-40 -227h30c99 0 148 37 164 124'], + 0x1D71E: [681,3,551,-10,609,'609 671l-38 -142h-36l6 75c1 12 -39 19 -106 19c-36 0 -59 0 -114 -3l-85 -485c-16 -88 -15 -92 30 -95l45 -3l-7 -40l-162 3l-152 -3l7 40l37 3c46 4 48 6 63 95l72 408c16 88 14 94 -29 98l-36 3l6 37l175 -3c27 0 27 3 177 3h50c37 0 57 -1 93 -3'], + 0x1D71F: [686,3,649,-13,593,'593 53l-2 -14l-99 -42l-309 2c-124 0 -167 0 -196 -2l3 35c9 13 16 26 39 65l255 438l75 131l77 20zM424 115l-94 401l-144 -252c-32 -56 -53 -91 -84 -148c-4 -8 -8 -18 -9 -25c-3 -16 3 -29 18 -32h292c10 3 19 13 21 27c1 8 1 18 0 29'], + 0x1D720: [681,3,594,22,625,'625 671l-39 -142h-35l6 75c0 11 -39 19 -93 19l-143 -3l-42 -240c19 -2 33 -2 65 -2h65c41 0 55 5 59 21l16 57h40l-22 -107l-16 -108h-40l3 50c2 26 -12 37 -49 37h-65c-21 0 -38 -1 -66 -3l-47 -267l146 -3c45 0 98 9 102 17l39 94h38l-39 -158l-6 -8 c-56 -3 -84 -3 -138 -3l-221 3l-121 -3l4 23l35 18c16 8 23 23 29 57l79 448c16 88 14 94 -29 98l-36 3l6 37l186 -3l232 3c36 0 57 -1 93 -3'], + 0x1D721: [681,3,657,-16,692,'692 681l-7 -35c-38 -39 -67 -70 -100 -110l-403 -479h270c50 0 77 12 86 39l29 78h39c-18 -50 -35 -116 -47 -177l-278 3l-297 -3l7 38l126 139l379 446h-218c-70 0 -80 -5 -93 -46l-18 -55h-36l28 162l266 -3'], + 0x1D722: [681,3,806,-10,855,'855 681l-7 -40l-37 -3c-46 -4 -48 -6 -63 -95l-72 -408c-16 -89 -15 -91 30 -95l36 -3l-7 -40l-153 3l-152 -3l7 40l37 3c46 4 48 6 64 95l33 190l-79 2h-143l-80 -2l-33 -190c-16 -89 -15 -91 30 -95l36 -3l-7 -40l-153 3l-152 -3l7 40l37 3c46 4 48 6 63 95l72 408 c16 89 15 91 -30 95l-36 3l7 40l152 -3l153 3l-7 -40l-37 -3c-46 -4 -48 -6 -63 -95l-28 -158c22 -2 42 -2 79 -2h143c37 0 56 0 80 2l27 158c16 89 16 91 -30 95l-36 3l7 40l152 -3'], + 0x1D723: [695,17,814,56,799,'792 346c-40 -228 -202 -363 -436 -363c-225 0 -331 127 -291 349c40 230 202 363 440 363c220 0 326 -129 287 -349zM641 324c21 115 7 209 -37 264c-29 35 -66 51 -123 51s-114 -20 -157 -57c-53 -45 -90 -124 -108 -227c-21 -116 -8 -210 36 -264 c29 -36 67 -52 121 -52c143 0 235 98 268 285zM601 456l-22 -107l-16 -108h-39l3 50c1 26 -12 37 -50 37h-101c-38 0 -55 -11 -63 -37l-15 -50h-39l22 108l16 107h39l-4 -57c-1 -16 11 -21 52 -21h102c41 0 55 5 60 21l16 57h39'], + 0x1D724: [681,3,381,-1,424,'424 681l-7 -40l-37 -3c-47 -4 -48 -6 -64 -95l-72 -408c-15 -89 -15 -91 31 -95l36 -3l-8 -40l-152 3l-152 -3l7 40l37 3c46 4 48 6 63 95l72 408c16 89 15 91 -30 95l-36 3l7 40l152 -3'], + 0x1D725: [681,3,746,-10,795,'795 681l-6 -39c-63 -5 -87 -12 -114 -34l-254 -207l205 -313c24 -36 45 -49 81 -50l-8 -41c-33 2 -65 3 -98 3s-67 -1 -101 -3l-160 249c-42 68 -47 71 -70 86l-34 -197c-16 -89 -15 -91 30 -95l36 -3l-7 -40l-153 3l-152 -3l7 40l37 3c46 4 48 6 63 95l72 408 c16 89 15 91 -30 95l-36 3l7 40l152 -3l153 3l-7 -40l-37 -3c-46 -4 -48 -6 -63 -95l-36 -200l227 193c17 14 109 94 114 120l4 25c29 -2 59 -3 89 -3c29 0 60 1 89 3'], + 0x1D726: [686,3,733,-35,690,'690 34l-6 -37l-155 3l-149 -3l6 37l53 3c11 1 22 12 24 27c2 8 1 18 0 29l-94 423l-145 -252l-93 -170c-4 -8 -8 -18 -9 -25c-3 -17 6 -31 23 -32l48 -3l-6 -37c-26 1 -47 1 -56 2l-54 1l-55 -1c-8 -1 -31 -1 -57 -2l7 37l30 3c22 2 43 21 65 60l255 438l75 131l77 20 l147 -605c8 -29 19 -40 46 -44'], + 0x1D727: [681,10,989,-3,1035,'1035 681l-7 -37l-37 -3c-45 -4 -49 -10 -64 -98l-72 -408c-16 -89 -15 -91 30 -95l36 -3l-7 -40l-152 3l-153 -3l7 40l37 3c47 4 48 6 64 95l73 416l-277 -429c-50 -76 -56 -86 -82 -132h-34c-10 44 -16 68 -20 83l-141 479l-74 -417c-16 -89 -13 -94 30 -98l36 -3 l-7 -37c-37 2 -74 3 -111 3l-113 -3l6 37l37 3c45 4 49 10 64 98l72 408c16 88 14 94 -29 98l-36 3l6 37l117 -3l119 3l45 -161l96 -330l246 378l68 113l112 -3'], + 0x1D728: [681,16,806,-10,858,'858 681l-6 -37l-37 -3c-45 -4 -49 -10 -64 -98l-80 -454l-15 -101l-8 -4l-78 13l-95 139l-250 392l-70 -393c-15 -89 -13 -94 30 -98l36 -3l-7 -37c-37 2 -74 3 -111 3l-113 -3l6 37l37 3c45 4 49 10 64 98l72 408c16 88 14 94 -29 98l-36 3l6 37l118 -3c27 0 55 1 82 3 c48 -85 62 -109 78 -133l241 -364l64 359c15 88 13 94 -30 98l-36 3l7 37l112 -3'], + 0x1D729: [681,3,705,22,693,'664 238c-17 -50 -52 -180 -64 -241l-288 3l-290 -3c10 61 21 191 21 241h39l1 -78c0 -27 29 -39 79 -39h343c50 0 82 12 92 39l28 78h39zM693 681l-40 -222h-36l2 55c1 41 -8 46 -77 46h-263c-69 0 -80 -5 -93 -46l-18 -55h-36l39 222l260 -3zM544 456l-22 -107 l-16 -108h-39l3 50c2 26 -12 37 -49 37h-102c-38 0 -55 -11 -63 -37l-14 -50h-40l22 108l16 107h40l-5 -57c-1 -16 11 -21 53 -21h101c42 0 55 5 60 21l16 57h39'], + 0x1D72A: [695,17,815,55,798,'791 346c-40 -228 -202 -363 -436 -363c-225 0 -331 127 -291 349c40 229 202 363 439 363c221 0 327 -129 288 -349zM641 325c20 113 6 209 -38 263c-29 34 -67 51 -119 51c-61 0 -116 -19 -161 -57c-52 -45 -90 -125 -108 -227c-21 -115 -7 -211 36 -264 c29 -36 67 -52 121 -52c143 0 235 98 269 286'], + 0x1D72B: [681,3,806,-10,855,'855 681l-7 -40l-37 -3c-46 -4 -48 -6 -63 -95l-72 -408c-16 -89 -15 -91 30 -95l36 -3l-7 -40l-153 3l-152 -3l7 40l37 3c46 4 48 6 64 95l71 408c16 89 16 91 -30 95l-36 3h-135l-37 -3c-46 -4 -48 -6 -63 -95l-72 -408c-16 -89 -15 -91 30 -95l36 -3l-7 -40l-153 3 l-152 -3l7 40l37 3c46 4 48 6 63 95l72 408c16 89 15 91 -30 95l-36 3l7 40l372 -3'], + 0x1D72C: [681,3,599,-10,630,'628 531c-21 -121 -132 -212 -258 -212c-20 0 -37 4 -56 7l7 39h18h18c61 0 110 52 124 132c15 89 -18 134 -99 134c-27 0 -45 -3 -60 -9l-86 -487c-16 -88 -15 -92 30 -95l45 -3l-7 -40l-161 3l-153 -3l7 40l37 3c46 4 48 6 63 95l72 408c16 88 14 94 -29 98l-36 3l6 37 l169 -3l190 3c83 0 177 -50 159 -150'], + 0x1D72D: [695,17,814,56,799,'792 346c-40 -228 -202 -363 -436 -363c-225 0 -331 127 -291 349c40 230 202 363 440 363c220 0 326 -129 287 -349zM642 328h-431c-14 -104 1 -187 41 -237c29 -36 67 -52 121 -52c143 0 235 98 268 285zM649 378c7 90 -8 164 -45 210c-29 35 -66 51 -123 51 s-114 -20 -157 -57c-49 -42 -84 -112 -104 -204h429'], + 0x1D72E: [681,3,656,-16,640,'640 681l-29 -162h-36l2 55c1 41 -8 46 -77 46h-218l100 -203l-2 -15l-236 -281h319c50 0 77 12 87 39l28 78h39c-17 -50 -46 -180 -58 -241l-278 3l-297 -3l7 38c59 62 91 98 126 139l141 167l-95 195c-21 42 -37 71 -62 110l7 35l265 -3'], + 0x1D72F: [681,3,660,84,719,'719 676c-16 -48 -25 -83 -41 -159h-39l7 69c-7 40 -15 33 -63 33h-115l-85 -484c-16 -89 -15 -91 30 -95l36 -3l-7 -40l-153 3l-152 -3l7 40l37 3c46 4 48 6 63 95l86 484h-115c-30 0 -65 7 -75 -33l-17 -69h-39c10 76 14 111 15 159l7 5l304 -3l304 3'], + 0x1D730: [695,3,661,84,726,'726 678l-3 -19l-219 -261c-22 -26 -43 -57 -69 -100l-29 -163c-16 -89 -15 -91 30 -95l36 -3l-7 -40l-152 3l-153 -3l7 40l37 3c47 4 48 6 64 95l25 139c-10 36 -17 58 -29 85l-71 162c-39 87 -59 101 -109 101l7 37l162 36c40 -27 61 -60 88 -136l69 -203l241 322h75'], + 0x1D731: [681,3,816,61,795,'792 344c-23 -131 -146 -215 -334 -233c-12 -65 -6 -68 34 -71l36 -3l-7 -40l-152 3l-153 -3l7 40l37 3c42 3 47 6 59 70c-185 13 -277 93 -254 225c23 131 145 214 335 232c10 64 5 67 -34 71l-36 3l7 40l151 -3l154 3l-7 -40l-37 -3c-42 -4 -49 -8 -59 -69 c183 -14 276 -95 253 -225zM390 512c-31 -4 -58 -11 -82 -25c-50 -29 -82 -76 -93 -137c-13 -70 8 -127 55 -162c16 -13 36 -19 59 -22zM642 330c13 72 -8 126 -55 161c-17 11 -36 18 -58 21l-61 -343c99 17 158 69 174 161'], + 0x1D732: [695,3,608,-48,691,'691 678l-6 -34l-28 -3c-20 -2 -28 -8 -53 -36l-206 -224c127 -327 107 -274 107 -278c19 -49 28 -63 50 -66l23 -3l-6 -37c-31 2 -61 3 -93 3c-31 0 -62 -1 -94 -3l-99 266l-173 -201c-5 -6 -28 -36 -46 -62h-115l6 34l31 3c12 1 27 9 36 18l241 261l-63 166 c-18 46 -45 99 -63 123c-10 13 -21 18 -37 18c-9 0 -16 -1 -32 -6l2 41l186 37c24 -22 37 -42 55 -91l64 -169l204 243h109'], + 0x1D733: [681,3,727,77,803,'803 681l-6 -37l-37 -3c-40 -4 -49 -9 -59 -69c-22 -126 -105 -269 -220 -292l-26 -145c-16 -89 -15 -91 30 -95l36 -3l-7 -40l-152 3l-153 -3l7 40l37 3c47 4 48 6 64 95l23 133c-150 8 -224 121 -197 275c15 88 14 94 -30 98l-36 3l7 37l142 -3c19 0 40 2 70 3 c6 -20 -1 -61 -7 -91c-21 -123 -18 -212 67 -234l33 187c16 89 13 91 -27 95l-25 2l8 41l136 -3l139 3l-7 -41l-25 -2c-42 -4 -45 -6 -61 -95l-33 -186c78 19 133 123 153 238c5 28 12 66 25 86c16 -1 38 -3 44 -3c37 0 50 2 87 3'], + 0x1D734: [695,3,810,-4,806,'800 371c-20 -114 -130 -225 -200 -285h70c26 0 48 16 55 34l21 56h33l-41 -179l-123 3l-130 -3l-12 43c24 13 50 31 72 52c59 72 85 148 103 255c36 203 -16 292 -169 292c-152 0 -235 -89 -271 -292c-19 -107 -20 -183 14 -255c14 -21 34 -39 54 -52l-27 -43l-129 3 l-124 -3l21 179h34l1 -56c0 -18 16 -34 43 -34h69c-48 60 -119 171 -98 285c36 207 203 324 423 324c221 0 347 -117 311 -324'], + 0x1D735: [676,13,649,95,701,'701 676l-4 -35c-9 -13 -16 -26 -39 -65l-254 -438l-75 -131l-77 -20l-157 633l1 14l100 42l308 -2c125 0 168 0 197 2zM595 582c3 16 -4 29 -18 32h-292c-10 -3 -19 -13 -22 -27c-1 -8 -1 -18 0 -29l94 -401l145 252c31 56 53 91 83 148c5 8 9 18 10 25'], + 0x1D736: [469,17,536,20,514,'514 86l-18 -16c-80 -65 -117 -87 -147 -87c-44 0 -62 38 -76 123c-27 -26 -63 -59 -90 -81c-31 -22 -64 -42 -109 -42c-32 0 -54 31 -53 75c4 97 41 205 85 296c21 32 41 58 63 79c35 30 49 36 67 36c32 0 59 -13 75 -36c16 -21 25 -52 32 -110l9 -70c10 14 19 27 23 32 c25 40 61 85 96 165l14 -9c4 -13 4 -25 10 -39c-4 -14 -45 -75 -59 -96c-24 -33 -49 -67 -77 -102c6 -45 19 -96 30 -120c7 -12 18 -19 31 -19c11 0 19 3 48 23l31 21zM268 153l-20 189c-3 30 -9 39 -23 39c-12 0 -29 -17 -40 -42c-16 -37 -28 -79 -38 -119 c-8 -50 -9 -96 -10 -118c-1 -20 6 -37 15 -37c16 0 41 18 65 38c11 10 29 27 51 50'], + 0x1D737: [718,272,588,-21,551,'551 221c0 -134 -121 -238 -278 -238c-52 0 -92 9 -145 32c-2 -9 -6 -18 -7 -26l-33 -240c-19 -2 -24 -5 -68 -14c-15 -4 -19 -5 -33 -7l-8 7l49 249l98 471c17 87 27 109 93 161c103 81 145 102 200 102c71 0 116 -41 115 -105c1 -50 -35 -105 -98 -179 c-4 -4 -9 -10 -12 -14c-14 -19 -21 -29 -25 -42l-1 -7c104 -13 154 -62 153 -150zM443 584c0 46 -31 76 -80 76c-53 0 -84 -36 -103 -119l-78 -331l-6 -27c-4 -19 -6 -40 -6 -55c1 -64 44 -108 108 -108c49 0 86 24 116 73c19 34 30 75 30 118c0 82 -38 128 -106 128 c-19 0 -37 -3 -76 -14l-7 6l17 51c9 -3 13 -4 27 -4c45 0 65 18 83 39c31 36 47 59 55 71c15 28 26 63 26 96'], + 0x1D738: [469,232,544,12,585,'585 381c-26 -35 -34 -61 -36 -70c-33 -13 -82 -91 -121 -168c-26 -51 -34 -94 -48 -163l-31 -163c-25 -13 -42 -31 -64 -49l-52 13l44 177c13 49 24 96 36 156c6 29 10 54 11 78c2 52 -8 99 -30 160c-7 21 -32 59 -76 59c-21 0 -48 -22 -60 -33 c-32 -30 -59 -79 -72 -123l-44 -7c-14 22 -19 35 -30 56c18 36 71 95 90 112c53 47 96 53 122 53c35 0 81 -18 111 -70c19 -33 29 -63 39 -120c6 -17 13 -96 13 -125c54 106 133 240 169 250c11 0 21 -12 29 -23'], + 0x1D739: [718,17,459,34,483,'483 672c-10 -47 -10 -45 -15 -92l-14 -3c-38 32 -50 42 -89 65c-18 11 -44 29 -77 29c-37 0 -45 -27 -46 -32c3 -35 75 -115 119 -160c41 -42 69 -80 76 -170c5 -78 -36 -161 -115 -246c-46 -50 -103 -80 -159 -80c-73 0 -122 47 -128 142c-9 120 93 218 192 286 c13 8 32 19 48 26c-25 41 -70 115 -74 171c-4 72 53 110 107 110c26 0 84 -12 107 -17c48 -11 54 -16 58 -17c7 -7 5 -5 10 -12zM364 252c-7 95 -39 116 -67 155c-19 -6 -32 -13 -45 -22c-58 -34 -78 -87 -97 -149c-8 -30 -8 -83 -6 -111c3 -48 32 -78 69 -78 c43 0 73 29 109 88c7 10 40 70 37 117'], + 0x1D73A: [471,17,468,24,444,'444 444c-26 -68 -28 -84 -35 -121h-35l8 66c-1 4 -3 7 -5 11c-10 22 -35 27 -71 27c-56 0 -105 -36 -107 -87s45 -79 109 -79c15 0 31 2 50 6c1 -3 2 -6 3 -11l-9 -38c-24 5 -42 6 -59 6c-39 0 -75 -9 -105 -26c-31 -17 -47 -43 -48 -74c-1 -15 4 -32 10 -40 c11 -14 37 -37 121 -37c40 0 78 15 142 53c3 -10 5 -16 8 -25c-103 -65 -158 -92 -219 -92c-79 0 -121 18 -149 51c-20 24 -29 42 -28 81c3 58 53 106 163 133c-45 13 -52 28 -64 38c-20 15 -24 37 -23 54c1 34 29 64 63 87c43 29 101 44 147 44s91 -9 133 -27'], + 0x1D73B: [718,232,468,40,525,'525 710l-16 -50c-43 -18 -111 -52 -151 -85c-110 -98 -197 -286 -203 -435c-2 -55 28 -90 76 -90c23 0 63 10 91 10c24 0 57 -7 71 -25c7 -9 12 -18 11 -26c-1 -35 -8 -66 -41 -117c-38 -60 -110 -124 -177 -124c-35 0 -67 17 -81 44c-9 14 -11 27 -13 53l63 40l18 -6 c-1 -7 -1 -16 -2 -19c-1 -42 10 -66 49 -66c36 0 97 56 100 134c1 29 -11 45 -31 45c-28 0 -101 -10 -132 -10c-75 0 -120 54 -116 136c3 86 37 193 92 271c52 72 117 152 187 215c-31 1 -72 5 -121 11c-6 0 -10 1 -22 2l-24 -52l-29 3l50 139c21 6 41 10 57 10 c17 0 42 -5 95 -19c49 -13 82 -18 111 -18c25 0 48 9 59 24l9 13'], + 0x1D73C: [469,271,542,41,523,'523 427c1 -14 -6 -44 -15 -83l-115 -468c-14 -55 -16 -94 -16 -117v-11c-43 -3 -76 -7 -132 -19l-9 18l16 12c6 5 12 22 20 49l7 26l100 403c12 53 24 95 23 112c0 14 -7 21 -20 21c-48 0 -136 -110 -174 -216c-12 -34 -28 -104 -34 -150c-37 -2 -84 -10 -106 -17 l-10 11c44 139 81 300 80 355c0 12 -3 17 -11 17c-11 0 -26 -6 -41 -17l-32 -22l-13 27l83 62c45 34 77 49 102 49c17 0 26 -11 26 -30c1 -29 -4 -55 -31 -157l-16 -60c34 60 50 85 85 122c67 74 147 125 194 125c23 0 38 -17 39 -42'], + 0x1D73D: [695,17,524,61,526,'526 474c-4 -95 -27 -212 -56 -286c-22 -56 -76 -116 -132 -157c-42 -32 -87 -48 -134 -48c-102 0 -148 66 -142 217c2 58 11 123 29 194c25 98 56 157 117 217c56 56 116 84 177 84c93 0 146 -83 141 -221zM393 309c-6 13 -21 19 -48 19h-104c-28 0 -45 -6 -55 -19 c-6 -40 -9 -80 -11 -116c-3 -94 19 -166 69 -166c33 0 63 27 89 79c22 44 44 117 60 203zM412 477c4 95 -18 174 -69 174c-32 0 -62 -27 -88 -79c-20 -39 -39 -106 -54 -179c4 -8 17 -15 51 -15h105c22 0 37 1 47 5c4 33 7 64 8 94'], + 0x1D73E: [469,17,342,48,313,'313 99l-77 -57c-57 -41 -97 -59 -134 -59c-35 0 -54 21 -53 60c0 17 -1 20 10 65l34 139c11 48 38 139 39 202c33 0 70 7 113 20l15 -12c-12 -38 -18 -60 -26 -91l-53 -197c-4 -13 -15 -57 -15 -77c0 -21 6 -28 24 -28c19 0 32 5 54 21l56 40'], + 0x1D73F: [469,17,593,55,570,'570 460l-22 -70c-22 6 -34 8 -49 8c-53 0 -101 -26 -149 -80l59 -173c16 -48 38 -80 55 -80c11 0 24 5 47 20l28 17l9 -29l-45 -31c-57 -39 -100 -59 -125 -59c-23 0 -38 23 -62 97l-51 155l-32 -34c-21 -26 -25 -31 -40 -97c-13 -54 -16 -69 -19 -101 c-27 -2 -42 -3 -91 -14l-16 -3l-1 9c15 43 23 67 30 92l28 107c29 109 32 142 32 160c1 10 -4 16 -11 16c-9 0 -24 -7 -43 -20l-35 -24l-12 26l84 64c46 36 83 53 110 53c16 0 24 -11 24 -32c-1 -15 -6 -36 -17 -78l-1 -2c-6 -18 -10 -33 -19 -67l-19 -68 c45 57 104 119 162 171c62 54 104 76 149 76c12 0 27 -3 42 -9'], + 0x1D740: [718,19,584,-29,552,'552 84c-11 -8 -15 -10 -29 -20c-83 -58 -131 -81 -169 -81c-19 0 -25 18 -30 42l-49 353c-81 -119 -147 -244 -216 -369c-29 -9 -40 -17 -66 -28l-22 27c97 157 175 252 297 419l-16 126c-6 45 -31 72 -52 76c-4 1 -8 1 -12 1c-11 0 -45 -14 -52 -17l5 32 c23 14 65 39 109 71c10 1 20 2 24 2c30 0 55 -32 69 -77c12 -35 19 -105 27 -161l48 -342c8 -30 12 -52 20 -66c2 -4 7 -9 12 -9c11 0 28 10 64 32l27 17'], + 0x1D741: [469,271,579,3,551,'551 88l-36 -26c-60 -46 -119 -79 -140 -79c-20 0 -34 17 -34 43c1 16 5 41 17 81l32 117c-93 -153 -172 -224 -265 -242l-26 -205c-2 -19 -31 -35 -87 -48l-9 9l99 398c4 15 7 29 10 42c27 99 40 156 39 175c1 12 -7 23 -15 23c-4 0 -21 -8 -34 -16l-37 -21l-12 26 l79 54c46 31 89 50 116 50c17 0 26 -13 26 -35c0 -30 -3 -47 -29 -147l-35 -137c-8 -26 -11 -49 -11 -66c1 -8 8 -13 17 -13c29 0 81 53 131 131c49 78 78 169 81 245c33 0 66 5 110 18l8 -11l-52 -181c-39 -167 -45 -183 -45 -187c1 -7 6 -12 15 -12c14 0 35 9 55 25l22 17 '], + 0x1D742: [469,17,508,27,527,'527 457c-15 -43 -49 -111 -103 -214c-29 -53 -100 -156 -152 -201c-58 -50 -99 -57 -154 -59l-16 12c0 45 2 98 10 160l28 197c1 11 -7 18 -18 18c-20 0 -47 -13 -82 -41l-13 28l82 62c40 30 82 50 105 50c24 0 38 -24 36 -63c-1 -24 -4 -52 -8 -80l-24 -163 c-5 -34 -9 -64 -11 -100c47 4 99 47 153 142c43 77 72 175 76 242c33 2 35 7 79 20'], + 0x1D743: [718,232,453,49,534,'534 710l-16 -50l-58 -27c-38 -21 -89 -60 -91 -102c-1 -36 21 -63 50 -71c7 -1 15 -3 28 -3h15l2 -18c-8 -10 -15 -38 -15 -44c-15 -4 -42 -4 -55 -4c-10 0 -41 5 -49 8c-15 5 -31 7 -45 8c-37 -3 -68 -26 -88 -68c-23 -47 -45 -141 -48 -199c-2 -55 28 -90 76 -90 c23 0 63 10 91 10c24 0 57 -7 71 -25c7 -9 12 -18 11 -26c-1 -35 -8 -66 -41 -117c-38 -60 -110 -124 -177 -124c-35 0 -67 17 -81 44c-9 14 -11 27 -13 53l63 40l18 -6c-1 -7 -1 -16 -2 -19c-1 -42 10 -66 49 -66c36 0 97 56 100 134c1 29 -11 45 -31 45 c-28 0 -101 -10 -132 -10c-75 0 -120 54 -116 136c2 72 30 167 61 213c19 28 54 57 108 88c32 19 55 31 75 38c-9 15 -14 31 -14 48c1 26 18 67 47 99c-31 1 -71 5 -119 11c-6 0 -10 1 -22 2l-24 -52l-29 3l50 139c21 6 41 10 57 10c17 0 42 -5 95 -19 c49 -13 82 -18 111 -18c25 0 48 9 59 24l9 13'], + 0x1D744: [469,17,513,33,495,'495 319c-3 -63 -25 -145 -53 -193c-24 -40 -83 -90 -140 -116c-40 -19 -80 -27 -126 -27c-98 0 -146 51 -142 152c1 41 11 88 29 137c23 65 59 108 122 147c53 33 110 50 163 50c96 0 150 -55 147 -150zM381 323c2 62 -29 102 -77 102c-33 0 -61 -17 -86 -51 c-37 -50 -67 -154 -70 -244c-3 -63 27 -103 77 -103c32 0 61 17 86 51c37 50 66 155 70 245'], + 0x1D745: [493,17,740,61,778,'778 469c-19 -24 -23 -29 -36 -55c-19 -10 -47 -22 -67 -27c-20 -6 -36 -8 -86 -8h-12c-20 -74 -51 -167 -52 -250c1 -52 14 -82 60 -82c17 0 48 29 59 39l10 -30c-22 -20 -76 -73 -122 -73c-75 0 -121 44 -120 117c0 62 47 210 81 279c-48 0 -114 3 -170 3 c-42 -116 -91 -258 -143 -366l-13 -6l-96 -27l-10 9c91 122 150 239 209 390l-57 1c-44 0 -53 0 -85 -48l-19 -4l-22 24c34 109 77 114 130 114l321 -4c34 0 89 5 126 8c31 2 72 11 101 20'], + 0x1D746: [469,271,543,-13,526,'526 320c-2 -64 -24 -143 -52 -193c-22 -38 -75 -84 -129 -112c-43 -21 -88 -32 -135 -32c-38 0 -68 7 -91 20c-5 -41 -8 -91 -10 -137c-2 -38 -2 -91 -1 -118c-18 -2 -37 -3 -80 -12c-15 -4 -19 -5 -32 -7l-9 7l19 127c11 81 27 166 41 234c12 58 26 99 53 159 c26 59 60 109 114 152c55 38 108 61 169 61c93 0 147 -56 143 -149zM412 322c3 64 -27 103 -78 103c-32 0 -62 -18 -87 -53c-36 -51 -65 -154 -68 -242c-2 -63 27 -103 77 -103c33 0 63 18 88 53c36 50 65 154 68 242'], + 0x1D747: [469,232,463,36,451,'451 439c-7 -10 -14 -38 -14 -44c-15 -4 -42 -4 -55 -4c-10 0 -41 5 -49 8c-15 5 -31 7 -44 8c-38 -3 -68 -26 -89 -68c-23 -47 -46 -141 -47 -199c-3 -55 27 -90 75 -90c23 0 64 10 92 10c24 0 56 -7 70 -25c7 -9 12 -18 11 -26c-1 -35 -8 -66 -41 -117 c-39 -60 -110 -124 -177 -124c-35 0 -67 17 -81 44c-9 14 -11 27 -13 53l64 40l18 -6c-2 -7 -3 -16 -3 -19c-1 -42 9 -66 48 -66c36 0 98 56 101 134c1 29 -11 45 -31 45c-28 0 -101 -10 -132 -10c-75 0 -119 54 -117 136c4 72 31 167 62 213c19 28 54 57 108 88 c66 39 95 49 135 49c30 0 30 -6 54 -8c16 -1 23 -4 54 -4'], + 0x1D748: [482,17,629,46,664,'664 458c-19 -24 -23 -29 -35 -55c-20 -6 -44 -15 -63 -15c-10 0 -24 -2 -41 -2s-37 2 -49 3c0 -7 2 -14 1 -19c-1 -91 -61 -221 -146 -307c-48 -51 -108 -80 -164 -80c-73 0 -120 57 -121 152c1 39 10 83 26 131c21 66 49 106 109 146c50 36 107 57 174 57 c9 0 19 -1 33 -2c0 0 15 -2 54 -2h103c31 0 78 8 106 17zM400 334c1 64 -42 91 -93 91c-32 0 -60 -18 -85 -53c-34 -51 -61 -159 -61 -247c-1 -48 29 -78 66 -78c43 0 80 29 114 88s59 142 59 199'], + 0x1D749: [493,17,589,65,626,'626 469c-20 -24 -24 -29 -38 -55c-19 -10 -48 -22 -67 -27c-22 -6 -38 -8 -88 -8h-47c-23 -74 -57 -167 -60 -250c-2 -52 10 -82 56 -82c17 0 49 29 61 39l9 -30c-24 -20 -79 -73 -125 -73c-75 0 -119 44 -116 117c2 63 56 213 91 281l-109 2c-44 0 -53 0 -88 -48 l-16 -6l-24 26c38 109 81 114 134 114l187 -4c34 0 89 5 126 8c31 2 72 11 102 20'], + 0x1D74A: [469,17,512,33,507,'507 370c-3 -91 -69 -221 -157 -307c-51 -51 -111 -80 -167 -80c-73 0 -115 51 -111 140c0 21 12 56 16 70c28 91 43 140 43 161c1 10 -5 16 -16 16c-10 0 -22 -3 -33 -10l-37 -21l-12 26l81 54c47 31 91 50 118 50c17 0 26 -13 25 -35c-1 -29 -5 -48 -35 -147 c-37 -117 -39 -124 -39 -141c-3 -66 19 -99 62 -99s82 29 118 88c36 60 64 143 66 200c1 31 -14 54 -37 54c-15 0 -27 -4 -37 -12l-9 21c20 14 35 30 69 67c12 3 18 4 26 4c38 0 68 -46 66 -99'], + 0x1D74B: [469,271,692,31,675,'675 317c-2 -64 -33 -141 -70 -190c-30 -38 -104 -84 -179 -112c-27 -9 -54 -16 -81 -22v-3c-39 -143 -48 -179 -55 -240c-18 -2 -37 -5 -80 -14c-15 -4 -19 -5 -32 -7l-10 7c14 41 21 66 37 122l33 125c-143 0 -210 50 -206 152c2 39 13 83 36 131c32 66 74 106 159 146 c42 21 88 36 134 46c2 -3 5 -6 7 -10c-4 -12 -13 -26 -17 -32c-31 -9 -59 -23 -84 -44c-60 -51 -118 -154 -121 -242c-2 -53 36 -89 105 -100l66 251c1 9 9 36 10 40c26 41 62 65 126 107c57 36 71 41 111 41c54 0 114 -55 111 -152zM560 325c2 46 -5 92 -32 92 c-37 0 -60 -11 -77 -39c-12 -21 -53 -188 -71 -257l-24 -86c33 8 62 23 89 45c61 50 112 157 115 245'], + 0x1D74C: [469,232,623,-42,582,'582 417c-86 -65 -167 -131 -240 -202l18 -109c14 -93 30 -192 44 -224c9 -18 29 -34 48 -34c16 0 34 9 65 38l29 27l15 -26l-20 -21c-94 -94 -137 -98 -172 -98c-48 0 -67 47 -83 168l-28 191c-91 -104 -167 -220 -220 -359c-14 0 -26 7 -39 11l-41 32 c67 129 174 252 292 371c-21 174 -55 202 -89 202c-33 0 -74 -31 -92 -69l-19 13l64 96c5 8 14 14 19 20c24 23 54 25 77 25c37 0 67 -18 89 -51c12 -21 21 -61 35 -152l204 203c11 -12 27 -23 39 -35'], + 0x1D74D: [636,271,693,33,690,'690 370c-3 -91 -72 -219 -164 -290c-41 -38 -96 -69 -153 -84c-24 -104 -56 -222 -58 -246c-18 -2 -37 -5 -80 -14c-15 -4 -19 -5 -32 -7l-10 7c14 41 21 65 37 121c11 43 25 85 35 129c-69 3 -194 22 -189 137c0 21 12 56 15 70c26 89 40 140 40 161c1 10 -5 16 -16 16 c-10 0 -22 -3 -33 -10l-37 -21l-12 26l81 54c47 31 91 50 118 50c17 0 26 -13 25 -35c-1 -29 -5 -48 -35 -147c-29 -94 -35 -124 -35 -141c-3 -57 45 -87 95 -100l105 414c18 75 20 96 21 122l1 16c22 3 38 7 57 14l67 24l10 -12c-18 -58 -29 -86 -37 -116l-89 -340 l-32 -125c52 10 99 40 148 93c48 52 77 142 79 199c1 31 -14 54 -37 54c-15 0 -27 -4 -37 -12l-9 21c20 14 35 30 69 67c12 3 18 4 26 4c38 0 68 -46 66 -99'], + 0x1D74E: [469,17,764,37,759,'759 370c-3 -91 -69 -221 -157 -307c-51 -51 -111 -80 -167 -80c-61 0 -99 35 -109 97c-32 -26 -46 -47 -80 -68c-28 -18 -57 -29 -87 -29c-37 0 -69 13 -88 39c-22 29 -35 85 -33 124c5 140 60 196 110 249c29 30 72 57 101 74l32 -24c-16 -11 -33 -28 -48 -44 c-63 -68 -81 -140 -85 -235c-1 -43 27 -109 76 -109c25 0 48 20 68 40c15 16 38 59 48 96c13 47 23 88 32 118c42 10 68 15 100 28l14 -12c-23 -59 -50 -139 -51 -181c-3 -66 19 -100 62 -100s82 30 118 89c36 60 64 143 66 200c1 31 -14 54 -37 54c-15 0 -27 -4 -37 -12 l-9 21c20 14 35 30 69 67c12 3 18 4 26 4c38 0 68 -46 66 -99'], + 0x1D74F: [740,17,544,70,529,'528 403c-9 -122 -59 -260 -113 -331c-42 -58 -101 -89 -170 -89c-105 0 -183 89 -174 201c5 61 35 126 81 175c38 41 81 60 134 60c45 0 76 -13 120 -47c7 22 9 32 11 55c2 18 3 34 3 50l-5 71c-8 86 -27 112 -62 124c-5 3 -19 9 -29 9c-31 0 -75 -18 -100 -55l-31 14 l-39 63c29 31 150 37 173 37c12 0 30 -2 38 -7c9 -5 20 -13 32 -21c29 -22 67 -61 82 -77c18 -19 27 -30 43 -110c9 -41 9 -78 6 -122zM395 312c-1 2 -5 8 -6 11c-30 26 -49 38 -70 38c-66 0 -127 -89 -136 -203c-5 -81 15 -132 55 -132c33 0 69 32 96 83 c25 48 38 91 61 203'], + 0x1D750: [471,17,549,64,538,'538 403l-63 -62l-15 1c-8 22 -19 44 -34 61c-17 18 -42 26 -70 26c-32 0 -66 -11 -93 -32c-44 -34 -69 -87 -79 -134l116 -3l130 2l-18 -37l-7 -6l-154 -1s-45 -1 -74 -3c1 -67 8 -86 18 -104c7 -16 38 -64 122 -64c45 0 86 19 160 67l11 -28l-29 -18 c-99 -65 -147 -85 -208 -85c-78 1 -123 16 -150 51c-23 30 -36 69 -37 108c0 22 2 44 6 64c15 73 43 144 111 196c59 45 131 69 200 69c65 0 122 -25 157 -68'], + 0x1D751: [695,17,573,59,618,'618 495c-22 -44 -34 -75 -48 -126c-17 -10 -32 -17 -45 -23c-10 -59 -24 -116 -41 -158c-22 -56 -77 -124 -132 -165c-42 -32 -88 -40 -134 -40c-73 0 -115 51 -111 140c0 21 12 56 16 70c28 91 34 140 34 161c1 10 -5 16 -16 16c-10 0 -22 -3 -33 -10l-37 -21l-12 26 l81 54c47 31 78 50 105 50c17 0 26 -13 25 -35c-1 -29 -2 -56 -22 -147c-28 -97 -30 -124 -30 -141c-3 -66 19 -100 62 -100c32 0 56 27 82 79c21 45 34 117 47 202c-84 37 -124 108 -121 194c2 47 21 94 32 111c21 34 40 63 99 63c93 0 126 -83 121 -221 c-1 -16 -2 -33 -4 -50c15 10 27 26 41 58l8 17zM433 547c2 61 -4 104 -42 104c-17 0 -24 -20 -29 -33c-7 -23 -15 -77 -17 -110c-1 -35 33 -80 76 -94c3 42 10 94 12 133'], + 0x1D752: [469,17,660,67,609,'609 124l-67 -96c-14 -20 -58 -45 -92 -45c-60 0 -69 49 -36 205c6 27 15 55 25 82l-118 -121c-57 -58 -82 -94 -130 -154c-25 -2 -50 -5 -85 -10c-16 15 -22 27 -32 39c35 33 44 43 78 75c23 50 42 101 53 153c15 71 10 132 -28 132c-33 0 -69 -37 -92 -69l-18 13l67 96 c14 20 58 45 92 45c60 0 69 -49 36 -205c-6 -28 -15 -57 -27 -84c40 39 69 72 118 119c32 31 88 98 137 152c25 2 44 9 69 12c0 0 35 -32 38 -52c-26 -25 -48 -41 -75 -63c-22 -49 -40 -98 -50 -148c-16 -71 -11 -132 27 -132c33 0 69 37 92 69'], + 0x1D753: [633,268,688,36,667,'667 304c-1 -64 -28 -143 -63 -192c-29 -36 -100 -79 -174 -104c-26 -7 -53 -13 -80 -18l1 -3c-33 -143 -42 -178 -46 -240c-18 -1 -36 -3 -80 -10c-14 -3 -18 -4 -31 -5l-10 7c12 41 20 66 32 122l30 125c-141 7 -210 62 -209 165c0 39 11 83 32 130 c29 66 69 104 151 140c42 19 87 32 132 40c15 78 18 98 17 124l1 16c21 2 37 5 56 11l66 21l9 -12l-32 -116l-8 -39c129 -7 207 -68 206 -162zM343 419c-30 -8 -57 -21 -82 -41c-57 -48 -110 -149 -111 -238c0 -54 39 -93 107 -107zM553 312c1 54 -39 92 -104 107l-57 -253 c-4 -14 -7 -30 -11 -48l-20 -86c32 7 60 20 86 41c59 48 105 150 106 239'], + 0x1D754: [469,271,534,54,517,'517 320c-2 -64 -24 -143 -52 -193c-22 -38 -75 -84 -129 -112c-43 -21 -79 -32 -135 -32c-12 0 -47 0 -58 5c42 -84 93 -90 109 -92c13 -2 26 -3 38 -3c50 0 91 -41 89 -93c0 -5 0 -9 -3 -29l-61 -42l-29 12l1 18c1 7 2 14 2 17c1 14 -8 26 -18 32l-5 5 c-13 11 -31 19 -46 24c-28 9 -59 20 -88 45c-26 22 -83 78 -77 221c2 59 13 101 40 161c35 66 57 101 110 144c55 37 108 61 169 61c93 0 147 -56 143 -149zM403 322c3 64 -27 103 -78 103c-32 0 -62 -18 -87 -53c-36 -51 -65 -154 -68 -242c-2 -63 27 -103 77 -103 c33 0 63 18 88 53c36 50 65 154 68 242'], + 0x1D755: [559,17,765,37,760,'760 370c-3 -91 -70 -221 -158 -307c-51 -51 -111 -80 -167 -80c-64 0 -99 36 -109 97c-32 -26 -46 -47 -80 -68c-28 -18 -57 -29 -87 -29c-37 0 -69 13 -88 39c-22 29 -35 85 -33 124c5 140 60 196 110 249c29 30 72 57 101 74l32 -24c-16 -11 -33 -28 -48 -44 c-63 -68 -81 -140 -85 -235c-1 -43 27 -109 76 -109c25 0 48 20 68 40c15 16 38 59 48 96c13 47 23 88 32 118c42 10 68 15 100 28l14 -12c-23 -59 -50 -139 -51 -181c-3 -66 19 -105 62 -105s82 35 118 94c36 60 65 143 67 200c3 91 -70 161 -184 161 c-100 0 -162 -22 -167 -153c-7 -8 -14 -4 -25 -8c-23 -8 -38 -23 -59 -34c4 82 65 166 129 206c38 23 89 52 172 52c129 0 217 -69 212 -189'], + 0x1D7CE: [660,17,500,33,468,'468 348c0 -252 -70 -365 -226 -365c-146 0 -209 96 -209 319c0 122 14 200 48 259c38 67 97 99 185 99c73 0 129 -30 161 -87c29 -51 41 -118 41 -225zM348 252c0 134 -14 263 -34 306c-16 34 -40 52 -69 52c-28 0 -50 -13 -65 -40c-20 -37 -27 -88 -27 -198 c0 -134 12 -244 32 -287c16 -34 40 -52 70 -52c60 0 93 77 93 219'], + 0x1D7CF: [670,3,500,35,455,'455 -3l-177 3l-203 -3v37l72 3c38 2 57 18 57 47v443c0 22 3 45 -15 37l-140 -65c-10 26 -14 45 -14 70c62 14 177 53 299 101l12 -10c-8 -112 -10 -175 -10 -254v-322c0 -30 19 -45 57 -47l62 -3v-37'], + 0x1D7D0: [660,3,500,25,472,'472 112c-2 -27 -3 -40 -3 -62c0 -16 0 -29 2 -53l-230 3l-216 -3v51l167 166c78 78 117 154 117 229c0 68 -42 112 -108 112c-44 0 -89 -25 -97 -55l-18 -68l-37 3l18 165c57 43 102 60 161 60c124 0 213 -72 213 -173c0 -64 -37 -137 -103 -202l-174 -171l2 -8l302 11'], + 0x1D7D1: [660,17,500,22,458,'458 225c0 -134 -128 -242 -287 -242c-49 0 -82 6 -124 24c-13 80 -16 104 -25 149l34 9c22 -49 36 -70 59 -91c26 -22 60 -35 95 -35c73 0 124 55 124 133c0 75 -50 124 -126 124c-22 0 -41 -2 -61 -8l-7 5l19 74h35c68 0 113 41 113 105c0 55 -39 90 -102 90 c-61 0 -98 -32 -117 -101h-35l31 154c58 33 98 45 153 45c105 0 181 -59 181 -141c0 -61 -35 -106 -112 -146c45 -5 66 -11 91 -27c40 -27 61 -68 61 -121'], + 0x1D7D2: [672,3,500,12,473,'473 -3l-154 3l-177 -3v37l64 3c37 2 57 28 57 74v54h-244l-7 39c57 142 128 270 245 441l122 27l7 -12l-6 -288v-125h88l1 -3v-79h-89v-54c0 -46 19 -71 57 -74l36 -3v-37zM263 247v332c-39 -63 -29 -38 -75 -123l-62 -116c-16 -30 -30 -62 -44 -93h181'], + 0x1D7D3: [656,17,500,42,472,'472 237c0 -141 -127 -254 -286 -254c-45 0 -76 6 -113 22c-6 32 -12 57 -31 134l30 18c35 -77 86 -116 155 -116c77 0 127 53 127 136c0 84 -52 138 -133 138c-44 0 -79 -12 -112 -40l-19 11c5 79 6 103 6 124v102c0 34 -1 64 -6 136l7 8s104 -6 170 -6 c69 0 177 6 177 6l4 -8c-5 -22 -7 -36 -7 -56c0 -12 0 -26 1 -42l-6 -11l-143 3l-144 -3l-4 -155c57 26 87 34 130 34c121 0 197 -70 197 -181'], + 0x1D7D4: [660,17,500,37,469,'469 221c0 -142 -88 -238 -217 -238c-71 0 -127 26 -163 77c-32 46 -52 122 -52 204c0 140 49 249 149 326c65 50 117 68 210 70l39 -27l-15 -16c-9 1 -17 1 -21 1c-72 0 -138 -34 -178 -94c-31 -46 -45 -98 -53 -198c48 61 87 83 146 83c95 0 155 -73 155 -188zM351 171 c0 91 -39 152 -97 152c-59 0 -89 -41 -89 -125c0 -101 38 -165 98 -165c56 0 88 51 88 138'], + 0x1D7D5: [656,3,500,46,493,'493 608c-34 -54 -53 -91 -93 -172l-110 -224c-27 -55 -71 -166 -86 -215c-18 2 -37 3 -55 3s-37 -1 -55 -3l-6 11l300 518l-4 6h-225c-47 0 -58 -8 -63 -52l-8 -64h-39l1 90c0 55 -4 142 -4 142l10 8l99 -2c199 -4 120 -4 197 -4l141 3v-45'], + 0x1D7D6: [660,17,500,34,467,'467 203c0 -126 -100 -220 -233 -220c-118 0 -200 71 -200 172c0 71 38 125 117 165c-72 42 -100 85 -100 156c0 111 83 184 209 184c108 0 177 -56 177 -143c0 -56 -25 -94 -94 -141c41 -17 59 -29 81 -54c29 -33 43 -72 43 -119zM357 150c0 57 -30 92 -104 125l-61 27 c-52 -46 -69 -78 -69 -131c0 -78 53 -136 125 -136c62 0 109 49 109 115zM353 501c0 64 -42 107 -104 107c-57 0 -95 -35 -95 -89c0 -48 26 -77 96 -107l44 -19c43 37 59 66 59 108'], + 0x1D7D7: [660,17,500,31,463,'463 390c0 -176 -83 -319 -220 -379c-44 -20 -72 -25 -138 -28l-38 29l9 18c14 -2 25 -3 31 -3c27 0 73 12 102 28c46 25 82 74 101 138c11 35 15 62 21 122l-63 -55c-20 -17 -40 -24 -73 -24c-105 0 -164 69 -164 191c0 144 83 233 217 233c140 0 215 -95 215 -270z M336 444c0 105 -34 164 -95 164c-58 0 -92 -49 -92 -132c0 -95 38 -153 101 -153c59 0 86 38 86 121'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Normal/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Operators/Regular/Main.js new file mode 100644 index 0000000..f381255 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Operators/Regular/Main.js @@ -0,0 +1,111 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'GyrePagellaMathJax_Operators', + id: 'GYREPAGELLAOPERATORS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2206: [700,3,629,6,617,'617 32l-62 -35l-294 3l-253 -3l-2 25l289 658l38 20l284 -659v-9zM503 60c0 12 -11 34 -20 55l-191 452l-172 -405c-13 -30 -35 -82 -35 -95c0 -16 12 -23 45 -26h332c25 2 41 8 41 19'], + 0x220A: [450,-50,578,80,498,'498 50h-218c-130 0 -200 70 -200 200s70 200 200 200h218c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-218c-80 0 -128 -38 -138 -110h356c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-356c10 -72 58 -110 138 -110h218c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x220C: [650,150,778,80,698,'698 250c0 -195 -105 -300 -300 -300h-87l-34 -100c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l34 100h-180c2 10 3 20 3 30s-1 20 -3 30h201l72 210h-273c2 10 3 20 3 30s-1 20 -3 30h294l71 207c-15 2 -30 3 -47 3h-318c2 10 3 20 3 30s-1 20 -3 30h318c24 0 46 -2 67 -5 l36 105c8 -2 17 -3 26 -3c8 0 17 1 25 3l-40 -115c122 -35 186 -132 186 -285zM637 280c-8 104 -57 171 -144 197l-68 -197h212zM637 220h-233l-72 -210h66c146 0 229 73 239 210'], + 0x220E: [585,0,745,80,665,'665 0h-585v585h585v-585'], + 0x220F: [750,250,1113,80,1033,'1033 -250l-159 3l-158 -3v32l52 3c50 4 55 12 55 98v734c0 70 -5 78 -55 81l-52 4h-319l-52 -4c-50 -3 -55 -11 -55 -81v-734c0 -86 5 -94 55 -98l52 -3v-32l-159 3l-158 -3v32l52 3c50 4 55 12 55 98v734c0 86 -5 94 -55 98l-52 3v32l480 -3l473 3v-32l-52 -3 c-49 -4 -55 -12 -55 -98v-734c0 -86 6 -94 55 -98l52 -3v-32'], + 0x2210: [750,250,1113,80,1033,'1033 -250l-473 3l-480 -3v32l52 3c50 4 55 12 55 98v734c0 86 -5 94 -55 98l-52 3v32l158 -3l159 3v-32l-52 -3c-50 -4 -55 -12 -55 -98v-734c0 -70 5 -78 55 -81l52 -4h319l52 4c50 3 55 11 55 81v734c0 86 -5 94 -55 98l-52 3v32l158 -3l159 3v-32l-52 -3 c-49 -4 -55 -12 -55 -98v-734c0 -86 6 -94 55 -98l52 -3v-32'], + 0x2211: [750,250,983,80,903,'903 -17c-6 -58 -7 -140 -7 -233l-363 3l-453 -3v30l334 460l-334 479l4 31l245 -3l502 3c-2 -40 -3 -59 -3 -87s1 -48 3 -88h-36l-7 77c-3 42 -32 51 -222 51h-349l292 -420l-320 -439h436c212 0 227 6 235 78l6 61h37'], + 0x221F: [630,0,790,80,710,'710 0h-600c-4 6 -8 12 -13 17s-11 9 -17 13v600c10 -2 20 -3 30 -3s20 1 30 3v-570h570c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x222C: [796,296,952,80,872,'554 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105c-12 -67 -12 -248 -12 -372c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67 c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54c31 38 52 61 83 95c14 16 58 37 82 37c23 0 47 -8 65 -19zM872 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105c-12 -67 -12 -248 -12 -372 c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54c31 38 52 61 83 95 c14 16 58 37 82 37c23 0 47 -8 65 -19'], + 0x222D: [796,296,1270,80,1190,'554 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105c-12 -67 -12 -248 -12 -372c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67 c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54c31 38 52 61 83 95c14 16 58 37 82 37c23 0 47 -8 65 -19zM872 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105c-12 -67 -12 -248 -12 -372 c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54c31 38 52 61 83 95 c14 16 58 37 82 37c23 0 47 -8 65 -19zM1190 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105c-12 -67 -12 -248 -12 -372c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19 c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54c31 38 52 61 83 95c14 16 58 37 82 37c23 0 47 -8 65 -19'], + 0x222E: [796,296,684,80,604,'604 250c0 -159 -80 -250 -230 -261c-4 -35 -10 -69 -18 -99c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c47 -2 73 30 87 105c4 24 7 65 9 112c-141 16 -217 105 -217 260 c0 159 80 250 230 261c4 35 10 69 18 99c7 22 11 40 21 54c30 38 52 61 82 95c15 16 59 37 83 37c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67c-47 2 -73 -30 -87 -105c-4 -24 -7 -65 -9 -112c141 -16 217 -105 217 -260zM554 250 c0 122 -59 195 -168 209l-2 -209c0 -68 0 -141 -5 -210c114 12 175 85 175 210zM305 460c-114 -12 -175 -85 -175 -210c0 -122 59 -195 168 -209l2 209c0 68 0 141 5 210'], + 0x222F: [796,296,1002,80,922,'922 250c0 -121 -78 -205 -228 -242c-4 -42 -10 -83 -20 -118c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c47 -2 73 30 87 105c5 25 7 67 9 116c-35 -4 -73 -6 -114 -6 c-46 0 -88 3 -126 8c-4 -38 -10 -74 -19 -106c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c47 -2 73 30 87 105c5 28 8 77 10 133c-144 37 -218 120 -218 239 c0 121 78 205 228 242c4 42 10 83 20 118c7 22 11 40 21 54c30 38 52 61 82 95c15 16 59 37 83 37c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67c-47 2 -73 -30 -87 -105c-5 -25 -7 -67 -9 -116c35 4 73 6 114 6c46 0 88 -3 126 -8c4 38 10 74 19 106 c7 22 11 40 21 54c30 38 52 61 82 95c15 16 59 37 83 37c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67c-47 2 -73 -30 -87 -105c-5 -28 -8 -77 -10 -133c144 -37 218 -120 218 -239zM872 250c0 95 -59 158 -169 189l-1 -189c0 -61 0 -127 -4 -190 c113 31 174 94 174 190zM304 440c-113 -31 -174 -94 -174 -190c0 -95 59 -158 169 -189l1 189c0 61 0 127 4 190zM623 455c-37 5 -78 7 -122 7c-42 0 -80 -2 -116 -6l-1 -206c0 -66 0 -137 -5 -205c37 -5 78 -7 122 -7c42 0 80 2 116 6l1 206c0 66 0 137 5 205'], + 0x2230: [796,296,1320,80,1240,'1240 250c0 -86 -52 -154 -157 -199c-21 -9 -44 -17 -69 -24c-4 -50 -11 -96 -22 -137c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c47 -2 73 30 87 105c5 28 8 75 10 131 c-69 -13 -150 -19 -242 -21c-4 -35 -10 -68 -18 -98c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c47 -2 73 30 87 105c4 24 7 64 9 110c-91 2 -171 10 -238 23 c-5 -44 -11 -85 -21 -121c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c47 -2 73 30 87 105c6 31 9 87 10 151c-22 7 -42 14 -61 22c-105 45 -157 113 -157 199s52 154 157 199 c21 9 44 17 69 24c4 50 11 96 22 137c7 22 11 40 21 54c30 38 52 61 82 95c15 16 59 37 83 37c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67c-47 2 -73 -30 -87 -105c-5 -28 -8 -75 -10 -131c69 13 150 19 242 21c4 35 10 68 18 98c7 22 11 40 21 54 c30 38 52 61 82 95c15 16 59 37 83 37c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67c-47 2 -73 -30 -87 -105c-4 -24 -7 -64 -9 -110c91 -2 171 -10 238 -23c5 44 11 85 21 121c7 22 11 40 21 54c30 38 52 61 82 95c15 16 59 37 83 37 c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67c-47 2 -73 -30 -87 -105c-6 -31 -9 -87 -10 -151c22 -7 42 -14 61 -22c105 -45 157 -113 157 -199zM1190 250c0 68 -45 118 -127 153c-13 6 -27 11 -42 16l-1 -169l-3 -170c17 5 32 11 46 17 c82 35 127 85 127 153zM303 420c-17 -5 -32 -11 -46 -17c-82 -35 -127 -85 -127 -153s45 -118 127 -153c13 -6 27 -11 42 -16l1 169zM623 462c-91 -2 -171 -9 -238 -22l-1 -190c0 -61 0 -127 -4 -189c67 -13 146 -21 236 -23l2 212c0 68 0 142 5 212zM940 439 c-67 13 -146 21 -236 23l-2 -212c0 -68 0 -142 -5 -212c91 2 171 9 238 22l1 190c0 61 0 127 4 189'], + 0x2231: [796,296,726,80,686,'686 355c-37 -43 -70 -89 -97 -139c-43 37 -90 70 -139 97c0 12 -1 23 -3 34s-5 22 -9 33c39 -22 76 -47 112 -75c-16 90 -72 142 -164 154l-2 -209c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19 c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c47 -2 73 30 87 105c12 67 12 248 12 372c0 68 0 141 5 210c-114 -12 -175 -85 -175 -210c-8 2 -17 3 -25 3s-17 -1 -25 -3c0 159 80 250 230 261c4 35 10 69 18 99c7 22 11 40 21 54c30 38 52 61 82 95c15 16 59 37 83 37 c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67c-47 2 -73 -30 -87 -105c-4 -24 -7 -65 -9 -112c119 -13 191 -79 211 -191c23 36 48 71 76 103c0 -12 1 -23 3 -34s5 -22 9 -33'], + 0x2232: [796,296,747,80,707,'707 347c-43 7 -86 18 -127 33c16 -36 24 -80 24 -130c0 -159 -80 -250 -230 -261c-4 -35 -10 -69 -18 -99c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c47 -2 73 30 87 105 c4 24 7 65 9 112c-141 16 -217 105 -217 260c0 159 80 250 230 261c4 35 10 69 18 99c7 22 11 40 21 54c30 38 52 61 82 95c15 16 59 37 83 37c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67c-47 2 -73 -30 -87 -105c-4 -24 -7 -65 -9 -112 c33 -4 62 -12 88 -24c-5 -6 -10 -14 -13 -21c-4 -8 -6 -16 -8 -24c-20 9 -43 15 -68 18l-2 -209c0 -68 0 -141 -5 -210c114 12 175 85 175 210c0 40 -6 75 -18 104c-10 -42 -23 -84 -39 -124c-3 11 -8 21 -14 31c-5 10 -12 19 -19 28c21 53 37 108 47 163 c52 -21 107 -36 163 -46c4 -11 8 -21 14 -31c5 -10 12 -20 19 -28zM305 460c-114 -12 -175 -85 -175 -210c0 -122 59 -195 168 -209l2 209c0 68 0 141 5 210'], + 0x2233: [796,296,689,80,649,'649 456c-26 -51 -46 -104 -61 -159c-50 26 -104 46 -158 61c-3 11 -7 22 -12 32c-4 10 -10 20 -16 30c42 -11 83 -26 123 -44c-27 47 -75 75 -139 83l-2 -209c0 -68 0 -141 -5 -210c114 12 175 85 175 210c8 -2 17 -3 25 -3s17 1 25 3c0 -159 -80 -250 -230 -261 c-4 -35 -10 -69 -18 -99c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c47 -2 73 30 87 105c4 24 7 65 9 112c-141 16 -217 105 -217 260c0 159 80 250 230 261c4 35 10 69 18 99 c7 22 11 40 21 54c30 38 52 61 82 95c15 16 59 37 83 37c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67c-47 2 -73 -30 -87 -105c-4 -24 -7 -65 -9 -112c88 -10 149 -49 184 -113c14 41 30 82 50 121c3 -11 6 -22 11 -32c5 -11 10 -21 17 -30zM305 460 c-114 -12 -175 -85 -175 -210c0 -122 59 -195 168 -209l2 209c0 68 0 141 5 210'], + 0x2236: [468,-32,280,80,200,'200 408c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 92c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2237: [468,-32,596,80,516,'516 408c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM516 92c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 408c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 92c0 -36 -24 -60 -60 -60 s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2238: [520,-220,760,80,680,'680 220h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM440 460c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2239: [441,-59,880,80,800,'560 220h-480c2 10 3 20 3 30s-1 20 -3 30h480c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM800 381c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM800 119c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x223A: [520,20,760,80,680,'680 220h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM200 460c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 40c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM680 460c0 -36 -24 -60 -60 -60 s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM680 40c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x223B: [497,-3,758,80,678,'678 324c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62 c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3zM439 437c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM439 63c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x223E: [390,-110,751,80,671,'671 250c0 -40 -20 -80 -62 -112c-22 -16 -45 -24 -70 -24c-65 0 -135 52 -187 117c-50 64 -118 125 -175 83c-29 -22 -42 -51 -42 -78c0 -40 28 -77 80 -86c-2 -6 -3 -13 -3 -20s1 -14 3 -20c-85 15 -135 76 -135 140c0 40 19 80 61 112c22 16 46 24 71 24 c65 0 135 -52 187 -117c50 -64 118 -125 174 -83c29 22 43 51 43 78c0 40 -28 77 -81 86c2 6 3 13 3 20s-1 14 -3 20c86 -15 136 -76 136 -140'], + 0x223F: [467,-33,760,80,680,'680 250c-39 -151 -86 -217 -160 -217c-99 0 -150 106 -170 212c-13 76 -39 162 -110 162c-55 0 -92 -46 -120 -157c-6 2 -13 3 -20 3s-14 -1 -20 -3c39 151 86 217 160 217c99 0 150 -106 170 -212c13 -76 39 -162 110 -162c55 0 92 46 120 157c6 -2 13 -3 20 -3 s14 1 20 3'], + 0x2244: [550,50,760,80,680,'680 110h-323l-55 -160c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l55 160h-226c2 10 3 20 3 30s-1 20 -3 30h247l53 154l-17 11c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156 c13 4 26 5 38 5c54 0 107 -30 154 -62l3 -3l58 168c8 -2 17 -3 26 -3c8 0 17 1 25 3l-67 -195c23 -13 47 -23 72 -23c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-33 0 -64 10 -95 26l-44 -129 h302c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2247: [550,50,760,80,680,'680 40h-347l-31 -90c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l31 90h-202c2 10 3 20 3 30s-1 20 -3 30h223l41 120h-264c2 10 3 20 3 30s-1 20 -3 30h285l35 101c-13 8 -25 16 -37 24c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110 c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62l23 -16l38 111c8 -2 17 -3 26 -3c8 0 17 1 25 3l-47 -135c17 -8 34 -13 52 -13c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3 c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-25 0 -50 6 -74 16l-27 -79h264c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-285l-41 -120h326c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2249: [550,50,758,80,678,'678 214c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62l-3 3l-58 -168c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l67 195c-23 13 -47 23 -72 23c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 139 124 156 c13 4 26 5 38 5c33 0 64 -10 95 -26l42 123l-17 11c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62l3 -3l58 168c8 -2 17 -3 26 -3c8 0 17 1 25 3l-67 -195 c23 -13 47 -23 72 -23c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-33 0 -64 10 -95 26l-42 -123l17 -11c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9 c7 -2 13 -3 20 -3'], + 0x224B: [517,17,758,80,678,'678 504c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62 c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3zM678 324c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9 s-13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3zM678 144c-29 -89 -62 -139 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 62 c-36 25 -75 53 -117 53c-8 0 -16 -1 -24 -4c-47 -13 -81 -43 -103 -110c-5 4 -12 7 -18 9s-13 3 -20 3c29 89 62 139 124 156c13 4 26 5 38 5c54 0 107 -30 154 -62c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -4 12 -7 18 -9c7 -2 13 -3 20 -3'], + 0x224C: [518,-40,760,80,680,'679 357c-7 0 -13 -1 -20 -3c-6 -2 -12 -5 -18 -9c-22 67 -56 97 -103 110c-8 2 -16 3 -24 3c-42 0 -81 -27 -117 -53c-47 -32 -99 -63 -153 -63c-13 0 -26 2 -39 5c-62 18 -95 67 -124 156c7 0 13 1 20 3c6 2 12 5 18 9c22 -67 56 -97 103 -110c8 -2 16 -3 24 -3 c42 0 81 27 117 53c47 32 99 63 153 63c13 0 26 -2 39 -5c62 -18 95 -67 124 -156zM680 220h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 40h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2254: [441,-59,880,80,800,'800 330h-480c2 10 3 20 3 30s-1 20 -3 30h480c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM800 110h-480c2 10 3 20 3 30s-1 20 -3 30h480c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM200 381c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 119 c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2255: [441,-59,880,80,800,'560 330h-480c2 10 3 20 3 30s-1 20 -3 30h480c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM560 110h-480c2 10 3 20 3 30s-1 20 -3 30h480c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM800 381c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM800 119 c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2258: [540,0,760,80,680,'680 220h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 0h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 395c-92 53 -194 85 -300 85s-208 -32 -300 -85c2 12 3 23 3 35s-1 23 -3 35c91 52 195 75 300 75 s209 -23 300 -75c-2 -12 -3 -23 -3 -35s1 -23 3 -35'], + 0x2259: [554,54,760,80,680,'680 166h-600c2 9 3 19 3 30c0 10 -1 20 -3 30h600c-2 -10 -3 -20 -3 -30c0 -11 1 -21 3 -30zM680 -54h-600c2 9 3 19 3 30c0 10 -1 20 -3 30h600c-2 -10 -3 -20 -3 -30c0 -11 1 -21 3 -30zM546 346c-12 2 -24 3 -36 3s-24 -1 -36 -3l-94 145l-94 -145c-12 2 -24 3 -36 3 s-24 -1 -36 -3l136 208c10 -2 20 -3 30 -3s20 1 30 3'], + 0x225A: [554,54,760,80,680,'680 166h-600c2 9 3 19 3 30c0 10 -1 20 -3 30h600c-2 -10 -3 -20 -3 -30c0 -11 1 -21 3 -30zM680 -54h-600c2 9 3 19 3 30c0 10 -1 20 -3 30h600c-2 -10 -3 -20 -3 -30c0 -11 1 -21 3 -30zM546 554l-136 -208c-10 2 -20 3 -30 3s-20 -1 -30 -3l-136 208 c12 -2 24 -3 36 -3s24 1 36 3l94 -145l94 145c12 -2 24 -3 36 -3s24 1 36 3'], + 0x225B: [853,-110,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM566 711l-140 -65l75 -134l-16 -12l-105 113l-105 -113l-16 12l75 134l-140 65l6 19l152 -30l18 153 h20l18 -153l152 30'], + 0x225D: [867,-110,925,80,845,'762 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM762 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM374 510c-20 1 -37 2 -53 2c-13 0 -26 -1 -44 -3l2 40l-50 -38c-4 -2 -17 -5 -28 -5 c-35 0 -60 7 -79 21c-27 20 -42 52 -42 92c0 43 21 79 52 94l46 22c14 8 26 10 42 10c17 0 32 -3 58 -13v79c0 11 -2 15 -9 15h-34v22c45 7 63 11 87 19l9 -7v-295c0 -25 -1 -28 14 -29l29 -1v-25zM278 622v61c0 3 -7 7 -17 13c-17 11 -37 16 -56 16c-43 0 -70 -28 -70 -77 c0 -54 31 -92 74 -92c23 0 48 14 61 35c7 10 8 15 8 44zM633 651c0 -6 0 -11 -1 -21c-41 -6 -63 -8 -99 -8h-72c2 -23 6 -35 14 -48c13 -23 41 -36 73 -36c21 0 34 4 69 23l12 -8l-13 -21c-2 -3 -14 -10 -29 -16c-23 -9 -42 -13 -61 -13c-42 0 -78 16 -100 42 c-15 19 -23 46 -23 77c0 51 18 82 64 105c21 12 44 19 64 19c62 0 102 -38 102 -95zM577 650c-1 26 -6 40 -15 53c-9 12 -21 17 -36 17c-24 0 -45 -11 -56 -30c-5 -12 -7 -21 -7 -39c25 -2 38 -3 61 -3zM845 817l-12 -5c-14 11 -22 14 -36 14c-26 0 -31 -13 -31 -62v-36 c21 0 42 0 70 2l-6 -35h-64v-130c0 -25 -1 -28 14 -29l29 -1v-25l-71 2l-69 -2v25l28 1c16 1 15 4 15 29v130l-36 -2v19l36 15v16c0 33 7 56 23 72l30 30c12 14 33 22 50 22c7 0 15 -1 30 -6v-44'], + 0x225E: [745,-110,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM608 510c-21 1 -36 2 -52 2c-13 0 -27 -1 -45 -2v141c0 33 -18 55 -43 55c-29 0 -62 -20 -62 -40 v-101c0 -25 0 -28 15 -29l29 -1v-25l-70 2l-71 -2v25l30 1c14 1 14 4 14 29v86c0 33 -17 55 -43 55c-28 0 -61 -20 -61 -40v-101c0 -25 -1 -28 15 -29l26 -1v-25l-66 2l-72 -2v25l29 1c15 1 14 4 14 29v107c0 27 -1 30 -18 30h-24v23c32 3 61 9 87 20l9 -3v-34l29 23 c10 8 26 14 45 14c37 0 58 -13 76 -43l36 29c10 8 26 14 45 14c52 0 84 -32 84 -82v-98c0 -25 -1 -28 14 -29l30 -1v-25'], + 0x225F: [870,-110,760,80,680,'680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM483 779c0 -32 -14 -55 -63 -100c-43 -37 -49 -46 -49 -62c0 -8 3 -15 15 -28l-20 -12 c-22 12 -31 26 -31 45c0 20 9 36 44 74c31 35 41 51 41 72c0 32 -25 54 -61 54c-22 0 -38 -6 -43 -20l-12 -30l-27 7l23 70c30 15 52 21 77 21c60 0 106 -39 106 -91zM407 501c0 -21 -18 -39 -39 -39c-19 0 -36 19 -36 39s17 37 36 37c21 0 39 -17 39 -37'], + 0x2262: [650,150,760,80,680,'680 0h-361l-51 -150c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l52 150h-189c2 10 3 20 3 30s-1 20 -3 30h209l55 160h-264c2 10 3 20 3 30s-1 20 -3 30h285l55 160h-340c2 10 3 20 3 30s-1 20 -3 30h361l51 150c8 -2 17 -3 26 -3c8 0 17 1 25 3l-52 -150h189 c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-209l-55 -160h264c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-285l-55 -160h340c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2263: [610,110,760,80,680,'680 550h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 330h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 110h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 -110h-600 c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x226D: [650,150,760,80,680,'680 65c-92 53 -194 85 -300 85h-9l-103 -300c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l102 296c-84 -9 -165 -38 -239 -81c2 12 3 23 3 35s-1 23 -3 35c80 45 169 69 260 74l28 81c-101 2 -200 25 -288 75c2 12 3 23 3 35s-1 23 -3 35c92 -53 194 -85 300 -85h9l103 300 c8 -2 17 -3 26 -3c8 0 17 1 25 3l-102 -296c84 9 165 38 239 81c-2 -12 -3 -23 -3 -35s1 -23 3 -35c-80 -45 -169 -69 -260 -74l-28 -81c101 -2 200 -25 288 -75c-2 -12 -3 -23 -3 -35s1 -23 3 -35'], + 0x2274: [706,206,766,80,686,'686 86l-292 122l-67 -194c25 -12 50 -27 73 -43c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -3 12 -7 18 -9c7 -2 13 -3 20 -3c-29 -89 -62 -138 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 63c-19 12 -38 26 -58 36l-57 -164 c-8 2 -16 3 -25 3s-17 -1 -25 -3l61 179c-4 1 -8 1 -13 1c-8 0 -16 -1 -24 -3c-47 -14 -81 -44 -103 -111c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 6 38 6s24 -2 36 -4l68 196l-270 113c2 10 3 20 3 30s-1 20 -3 30l384 160l51 147 c8 -2 16 -3 25 -3s17 1 25 3l-42 -123l163 68c-2 -10 -3 -21 -3 -32s1 -22 3 -33l-189 -79l-84 -242l273 -114c-2 -10 -3 -21 -3 -32s1 -22 3 -33zM438 483l-274 -114l205 -86'], + 0x2275: [706,206,766,80,686,'686 339l-288 -120l-71 -205c25 -12 50 -27 73 -43c36 -25 75 -53 117 -53c8 0 16 1 24 4c47 13 81 43 103 110c6 -3 12 -7 18 -9c7 -2 13 -3 20 -3c-29 -89 -62 -138 -124 -156c-13 -4 -26 -5 -38 -5c-54 0 -107 30 -154 63c-19 12 -38 26 -58 36l-57 -164 c-8 2 -16 3 -25 3s-17 -1 -25 -3l61 179c-4 1 -8 1 -13 1c-8 0 -16 -1 -24 -3c-47 -14 -81 -44 -103 -111c-6 4 -12 7 -18 9c-7 2 -13 3 -20 3c29 89 62 139 124 156c13 4 26 6 38 6s24 -2 36 -4l56 164l-258 -108c2 11 3 22 3 33s-1 22 -3 32l284 119l60 173l-344 143 c2 11 3 22 3 33s-1 22 -3 32l364 -151l71 206c8 -2 16 -3 25 -3s17 1 25 3l-77 -225l198 -82c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM602 369l-134 55l-44 -130'], + 0x2278: [761,261,771,80,691,'691 6l-421 -165l-35 -102c-8 2 -17 3 -25 3c-9 0 -17 -1 -26 -3l28 79l-126 -49c2 10 3 21 3 32s-1 21 -3 32l151 59l87 253l-238 94c2 10 3 21 3 32s-1 21 -3 32l258 -101l39 114l-303 118c2 10 3 20 3 30s-1 20 -3 30l421 165l35 102c9 -2 17 -3 26 -3c8 0 17 1 25 3 l-27 -79l126 49c-2 -10 -3 -21 -3 -32s1 -21 3 -32l-152 -59l-87 -253l239 -94c-2 -10 -3 -21 -3 -32s1 -21 3 -32l-258 101l-40 -114l303 -118c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM475 585l-307 -121l234 -92zM603 36l-234 92l-73 -213'], + 0x2279: [761,261,771,80,691,'691 434l-250 -98l-52 -149l297 116c-2 -11 -3 -21 -3 -32s1 -22 3 -32l-322 -126l-47 -136l369 -144c-2 -11 -3 -21 -3 -32s1 -22 3 -32l-388 152l-63 -182c-8 2 -17 3 -25 3c-9 0 -17 -1 -26 -3l69 199l-173 68c2 10 3 20 3 30s-1 20 -3 30l251 98l51 149l-296 -116 c2 11 3 21 3 32s-1 22 -3 32l322 126l46 136l-368 144c2 11 3 21 3 32s-1 22 -3 32l388 -152l62 182c9 -2 17 -3 26 -3c8 0 17 1 25 3l-69 -199l173 -68c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM603 464l-104 41l-33 -95zM305 90l-137 -54l104 -41'], + 0x2284: [650,150,778,80,698,'698 -50h-318c-13 0 -26 0 -38 1l-35 -101c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l37 108c-139 28 -213 128 -213 292c0 195 105 300 300 300h117l34 100c8 -2 17 -3 26 -3c8 0 17 1 25 3l-34 -100h150c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-171l-165 -480h18h318 c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM476 490h-96c-156 0 -240 -84 -240 -240c0 -132 60 -212 173 -234'], + 0x2285: [650,150,778,80,698,'698 250c0 -195 -105 -300 -300 -300h-117l-34 -100c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l34 100h-150c2 10 3 20 3 30s-1 20 -3 30h171l165 480h-18h-318c2 10 3 20 3 30s-1 20 -3 30h318c13 0 26 0 38 -1l35 101c8 -2 17 -3 26 -3c8 0 17 1 25 3l-37 -108 c139 -28 213 -128 213 -292zM638 250c0 132 -60 212 -173 234l-163 -474h96c156 0 240 84 240 240'], + 0x228C: [550,68,760,80,680,'680 232c0 -195 -105 -300 -300 -300s-300 105 -300 300v318c10 -2 20 -3 30 -3s20 1 30 3v-318c0 -156 84 -240 240 -240s240 84 240 240v318c10 -2 20 -3 30 -3s20 1 30 3v-318zM560 226h-274c33 -29 64 -62 92 -96c-11 2 -23 3 -34 3s-23 -1 -34 -3 c-36 44 -76 84 -120 120c44 36 84 76 120 120c11 -2 23 -3 34 -3s23 1 34 3c-28 -34 -59 -67 -92 -96h274c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x228D: [550,68,760,80,680,'680 232c0 -195 -105 -300 -300 -300s-300 105 -300 300v318c10 -2 20 -3 30 -3s20 1 30 3v-318c0 -156 84 -240 240 -240s240 84 240 240v318c10 -2 20 -3 30 -3s20 1 30 3v-318zM440 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x229C: [568,68,796,80,716,'716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318zM656 250c0 155 -103 258 -258 258s-258 -103 -258 -258s103 -258 258 -258s258 103 258 258zM558 130h-320c2 10 3 20 3 30s-1 20 -3 30h320c-2 -10 -3 -20 -3 -30 s1 -20 3 -30zM558 310h-320c2 10 3 20 3 30s-1 20 -3 30h320c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22A6: [650,150,590,80,510,'510 220h-370v-370c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-370h370c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22A7: [650,150,590,80,510,'510 110h-370v-260c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-260h370c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-370v-160h370c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22AB: [650,150,770,80,690,'140 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-800zM690 110h-370v-260c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-260h370c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-370v-160h370c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22B6: [410,-90,1080,80,1000,'1000 250c0 -96 -64 -160 -160 -160c-86 0 -146 51 -158 130h-284c-12 -79 -72 -130 -158 -130c-96 0 -160 64 -160 160s64 160 160 160c86 0 146 -51 158 -130h284c12 79 72 130 158 130c96 0 160 -64 160 -160zM352 250c0 67 -45 112 -112 112s-112 -45 -112 -112 s45 -112 112 -112s112 45 112 112'], + 0x22B7: [410,-90,1080,80,1000,'1000 250c0 -96 -64 -160 -160 -160c-86 0 -146 51 -158 130h-284c-12 -79 -72 -130 -158 -130c-96 0 -160 64 -160 160s64 160 160 160c86 0 146 -51 158 -130h284c12 79 72 130 158 130c96 0 160 -64 160 -160zM952 250c0 67 -45 112 -112 112s-112 -45 -112 -112 s45 -112 112 -112s112 45 112 112'], + 0x22B9: [550,50,760,80,680,'680 220h-220c2 10 3 20 3 30s-1 20 -3 30h220c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM410 330c-10 2 -20 3 -30 3s-20 -1 -30 -3v220c10 -2 20 -3 30 -3s20 1 30 3v-220zM300 220h-220c2 10 3 20 3 30s-1 20 -3 30h220c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM410 -50 c-10 2 -20 3 -30 3s-20 -1 -30 -3v220c10 -2 20 -3 30 -3s20 1 30 3v-220'], + 0x22BD: [584,84,760,80,680,'680 404l-270 -488c-10 2 -20 3 -30 3s-20 -1 -30 -3l-270 488c11 -2 23 -3 34 -3c12 0 23 1 35 3l231 -418l231 418c12 -2 23 -3 35 -3c11 0 23 1 34 3zM680 524h-600c2 10 3 20 3 30s-1 20 -3 30h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22BE: [630,103,893,80,813,'813 0h-171c-2 -34 -9 -68 -20 -103c-9 5 -18 9 -28 12c-9 3 -19 6 -29 7c9 28 15 56 17 84h-369c-4 6 -8 12 -13 17s-11 9 -17 13v369c-28 -2 -56 -8 -84 -17c-2 10 -4 20 -7 29c-3 10 -7 19 -12 28c35 11 69 18 103 20v171c10 -2 20 -3 30 -3s20 1 30 3v-170 c212 -14 386 -188 400 -400h170c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM582 60c-14 179 -160 325 -339 339v-339h339'], + 0x22BF: [651,0,812,80,732,'732 630l-1 -600c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-600c-1 9 -4 18 -8 27c-3 8 -8 17 -13 24l600 600c8 -5 16 -10 25 -13c8 -4 17 -6 27 -8zM671 558l-497 -498h497v498'], + 0x22C0: [744,230,860,80,780,'780 -230c-11 2 -23 3 -35 3c-11 0 -23 -1 -34 -3l-281 854l-281 -854c-11 2 -23 3 -34 3c-12 0 -24 -1 -35 -3l320 974c10 -2 20 -3 30 -3s20 1 30 3'], + 0x22C1: [730,244,860,80,780,'780 730l-320 -974c-10 2 -20 3 -30 3s-20 -1 -30 -3l-320 974c11 -2 23 -3 35 -3c11 0 23 1 34 3l281 -854l281 854c11 -2 23 -3 34 -3c12 0 24 1 35 3'], + 0x22C2: [748,230,860,80,780,'780 -230c-11 2 -22 3 -33 3s-22 -1 -33 -3v628c0 185 -99 284 -284 284s-284 -99 -284 -284v-628c-11 2 -22 3 -33 3s-22 -1 -33 -3v628c0 227 123 350 350 350s350 -123 350 -350v-628'], + 0x22C3: [730,248,860,80,780,'780 102c0 -227 -123 -350 -350 -350s-350 123 -350 350v628c11 -2 22 -3 33 -3s22 1 33 3v-628c0 -185 99 -284 284 -284s284 99 284 284v628c11 -2 22 -3 33 -3s22 1 33 3v-628'], + 0x22C7: [556,56,772,80,692,'692 -14c-8 -5 -16 -12 -23 -19s-13 -15 -19 -23l-264 264l-264 -264c-5 8 -12 16 -19 23s-15 14 -23 19l234 234h-228c2 10 3 20 3 30s-1 20 -3 30h228l-234 234c8 5 16 12 23 19s14 15 19 23l264 -264l264 264c6 -8 12 -16 19 -23s15 -14 23 -19l-233 -234h227 c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-227zM446 38c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM446 462c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x22D5: [650,150,760,80,680,'680 110h-192v-260c-8 2 -16 3 -24 3s-16 -1 -24 -3v260h-120v-260c-8 2 -16 3 -24 3s-16 -1 -24 -3v260h-192c2 10 3 20 3 30s-1 20 -3 30h192v160h-192c2 10 3 20 3 30s-1 20 -3 30h192v260c8 -2 16 -3 24 -3s16 1 24 3v-260h120v260c8 -2 16 -3 24 -3s16 1 24 3v-260 h192c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-192v-160h192c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM440 170v160h-120v-160h120'], + 0x22DC: [623,113,766,80,686,'686 -113l-606 253c2 10 3 20 3 30s-1 20 -3 30l606 253c-2 -11 -3 -22 -3 -33s1 -22 3 -33l-522 -217l522 -217c-2 -11 -3 -22 -3 -33s1 -22 3 -33zM686 563h-606c2 9 3 19 3 30c0 10 -1 20 -3 30h606c-2 -10 -3 -20 -3 -30c0 -11 1 -21 3 -30'], + 0x22DD: [623,113,766,80,686,'686 140l-606 -253c2 11 3 22 3 33s-1 22 -3 33l522 217l-522 217c2 11 3 22 3 33s-1 22 -3 33l606 -253c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM686 563h-606c2 9 3 19 3 30c0 10 -1 20 -3 30h606c-2 -10 -3 -20 -3 -30c0 -11 1 -21 3 -30'], + 0x22E2: [690,190,760,80,680,'680 -140h-409l-17 -50c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l17 50h-140c2 10 3 20 3 30s-1 20 -3 30h161l41 120h-172c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h379l17 50c8 -2 17 -3 26 -3c8 0 17 1 25 3l-17 -50h140c-2 -10 -3 -20 -3 -30 s1 -20 3 -30h-161l-165 -480h326c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-347l-41 -120h388c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM468 580h-328v-480h163'], + 0x22E3: [690,190,760,80,680,'680 -140h-409l-17 -50c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l17 50h-140c2 10 3 20 3 30s-1 20 -3 30h161l41 120h-202c2 10 3 20 3 30s-1 20 -3 30h223l165 480h-388c2 10 3 20 3 30s-1 20 -3 30h409l17 50c8 -2 17 -3 26 -3c8 0 17 1 25 3l-17 -50h110 c4 -6 8 -12 13 -17s11 -9 17 -13v-540c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-317l-41 -120h388c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM620 580h-101l-165 -480h266v480'], + 0x22E4: [640,220,760,80,680,'680 40h-570c-4 6 -8 12 -13 17s-11 9 -17 13v540c6 4 12 8 17 13s9 11 13 17h570c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-540v-480h540c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 -140h-291l-52 -80c-9 2 -19 3 -28 3c-10 0 -20 -1 -29 -3l52 80h-252c2 10 3 20 3 30 s-1 20 -3 30h291l52 80c9 -2 19 -3 29 -3c9 0 19 1 28 3l-52 -80h252c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22E5: [640,220,760,80,680,'680 610v-540c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-570c2 10 3 20 3 30s-1 20 -3 30h540v480h-540c2 10 3 20 3 30s-1 20 -3 30h570c4 -6 8 -12 13 -17s11 -9 17 -13zM680 -140h-291l-52 -80c-9 2 -19 3 -28 3c-10 0 -20 -1 -29 -3l52 80h-252c2 10 3 20 3 30 s-1 20 -3 30h291l52 80c9 -2 19 -3 29 -3c9 0 19 1 28 3l-52 -80h252c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22F0: [536,36,733,80,653,'426 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM653 476c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM200 24c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2A00: [708,208,1076,80,996,'996 250c0 -275 -183 -458 -458 -458s-458 183 -458 458s183 458 458 458s458 -183 458 -458zM598 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM930 250c0 235 -157 392 -392 392s-392 -157 -392 -392s157 -392 392 -392s392 157 392 392'], + 0x2A01: [708,208,1076,80,996,'929 283c-13 206 -152 345 -358 358v-358h358zM505 641c-206 -13 -345 -152 -358 -358h358v358zM505 -141v358h-358c13 -206 152 -345 358 -358zM929 217h-358v-358c206 13 345 152 358 358zM996 250c0 -275 -183 -458 -458 -458s-458 183 -458 458s183 458 458 458 s458 -183 458 -458'], + 0x2A02: [708,208,1076,80,996,'930 250c0 104 -31 193 -86 260l-259 -260l259 -260c55 67 86 156 86 260zM798 556c-67 55 -156 86 -260 86s-193 -31 -260 -86l260 -259zM491 250l-259 260c-55 -67 -86 -156 -86 -260s31 -193 86 -260zM798 -56l-260 259l-260 -259c67 -55 156 -86 260 -86 s193 31 260 86zM996 250c0 -275 -183 -458 -458 -458s-458 183 -458 458s183 458 458 458s458 -183 458 -458'], + 0x2A03: [730,248,860,80,780,'780 102c0 -227 -123 -350 -350 -350s-350 123 -350 350v628c11 -2 22 -3 33 -3s22 1 33 3v-628c0 -185 99 -284 284 -284s284 99 284 284v628c11 -2 22 -3 33 -3s22 1 33 3v-628zM490 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2A04: [730,248,860,80,780,'780 102c0 -227 -123 -350 -350 -350s-350 123 -350 350v628c11 -2 22 -3 33 -3s22 1 33 3v-628c0 -185 99 -284 284 -284s284 99 284 284v628c11 -2 22 -3 33 -3s22 1 33 3v-628zM670 217h-207v-207c-11 2 -22 3 -33 3s-22 -1 -33 -3v207h-207c2 11 3 22 3 33 s-1 22 -3 33h207v207c11 -2 22 -3 33 -3s22 1 33 3v-207h207c-2 -11 -3 -22 -3 -33s1 -22 3 -33'], + 0x2A05: [747,213,860,80,780,'780 -213c-11 1 -22 3 -33 3s-22 -2 -33 -3v893l-568 1v-894c-11 1 -22 3 -33 3s-22 -2 -33 -3v927c7 4 13 8 19 14c5 5 10 12 14 18l634 1c4 -7 9 -14 14 -19c6 -6 12 -10 19 -14v-927'], + 0x2A06: [713,247,860,80,780,'780 713v-927c-7 -4 -13 -8 -19 -14c-5 -5 -10 -12 -14 -19l-634 1c-4 6 -9 13 -14 18c-6 6 -12 10 -19 14v927c11 -1 22 -3 33 -3s22 2 33 3v-894h568v894c11 -1 22 -3 33 -3s22 2 33 3'], + 0x2A09: [635,135,929,80,849,'849 -88c-9 -6 -17 -13 -25 -21s-15 -17 -21 -26l-338 338l-338 -338c-7 9 -14 18 -22 26c-7 8 -16 15 -25 21l338 338l-338 338c9 6 18 13 25 21c8 8 15 17 22 26l338 -338l338 338c6 -9 13 -18 21 -26s16 -15 25 -21l-338 -338'], + 0x2A0C: [796,296,1588,80,1508,'554 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105c-12 -67 -12 -248 -12 -372c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67 c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54c31 38 52 61 83 95c14 16 58 37 82 37c23 0 47 -8 65 -19zM872 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105c-12 -67 -12 -248 -12 -372 c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54c31 38 52 61 83 95 c14 16 58 37 82 37c23 0 47 -8 65 -19zM1190 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105c-12 -67 -12 -248 -12 -372c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19 c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54c31 38 52 61 83 95c14 16 58 37 82 37c23 0 47 -8 65 -19zM1508 777c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -23 67c-48 2 -74 -30 -88 -105 c-12 -67 -12 -248 -12 -372c0 -121 0 -260 -28 -360c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -82 -37s-47 8 -66 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67c48 -2 74 30 87 105c12 67 12 248 12 372c0 121 0 260 29 360c6 22 10 40 20 54 c31 38 52 61 83 95c14 16 58 37 82 37c23 0 47 -8 65 -19'], + 0x2A11: [796,296,726,80,686,'686 145c-4 -11 -7 -22 -9 -33s-3 -22 -3 -34c-28 32 -53 67 -76 103c-21 -116 -97 -182 -224 -192c-4 -35 -10 -69 -18 -99c-7 -22 -11 -40 -21 -54c-30 -38 -52 -61 -82 -95c-15 -16 -59 -37 -83 -37c-22 0 -46 8 -65 19c6 26 12 67 9 117h63c2 -39 3 -66 24 -67 c47 -2 73 30 87 105c4 24 7 65 9 112c-141 16 -217 105 -217 260c8 -2 17 -3 25 -3s17 1 25 3c0 -122 59 -195 168 -209l2 209c0 121 0 260 28 360c7 22 11 40 21 54c30 38 52 61 82 95c15 16 59 37 83 37c22 0 46 -8 65 -19c-6 -26 -12 -67 -9 -117h-63c-2 39 -3 66 -24 67 c-47 2 -73 -30 -87 -105c-12 -67 -12 -248 -12 -372c0 -68 0 -141 -5 -210c96 10 155 63 171 155c-36 -28 -73 -53 -112 -75c4 11 7 22 9 33s3 22 3 34c49 27 96 60 139 97c27 -50 60 -96 97 -139'], + 0x2A2F: [490,-10,641,80,561,'561 80c-13 -10 -26 -21 -38 -33c-11 -12 -23 -24 -33 -37l-170 169l-169 -169c-11 13 -22 25 -34 37c-11 12 -24 23 -37 33l170 170l-170 170c13 10 26 21 37 33c12 12 23 24 34 37l169 -169l170 169c10 -13 22 -25 33 -37c12 -12 25 -23 38 -33l-170 -170'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Operators/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/SansSerif/Regular/Main.js new file mode 100644 index 0000000..b844247 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/SansSerif/Regular/Main.js @@ -0,0 +1,372 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'GyrePagellaMathJax_SansSerif', + id: 'GYREPAGELLASANSSERIF', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x1D5A0: [671,0,617,8,609,'429 247l-120 334l-121 -334h241zM609 0h-93l-59 172h-296l-59 -172h-94l250 671h101'], + 0x1D5A1: [671,0,634,98,563,'470 198c0 41 -11 72 -35 92c-23 20 -58 30 -106 30h-142v-245h142c48 0 83 10 106 30c24 20 35 50 35 93zM447 495c0 34 -11 60 -32 76c-21 17 -53 25 -97 25h-131v-202h131c44 0 76 8 97 25s32 42 32 76zM563 188c0 -60 -20 -106 -59 -139c-41 -32 -97 -49 -170 -49 h-236v671h227c67 0 119 -15 156 -44c36 -28 55 -69 55 -122c0 -41 -9 -74 -28 -98s-46 -40 -82 -45c43 -10 77 -30 101 -60c25 -31 36 -69 36 -114'], + 0x1D5A2: [683,13,639,56,585,'585 52c-31 -22 -64 -38 -99 -49c-34 -10 -71 -16 -110 -16c-99 0 -177 31 -235 93c-56 63 -85 147 -85 255s29 192 85 255c58 61 136 93 235 93c40 0 77 -6 111 -16c35 -11 68 -27 98 -48v-96c-30 29 -62 50 -95 64c-34 14 -70 21 -108 21c-76 0 -133 -23 -172 -70 c-41 -47 -60 -115 -60 -203s19 -157 60 -203c39 -47 96 -70 172 -70c38 0 74 7 108 21c33 14 65 35 95 63v-94'], + 0x1D5A3: [671,0,709,98,650,'556 336c0 90 -22 155 -63 198c-42 41 -108 62 -199 62h-107v-521h107c91 0 157 21 199 62c41 42 63 109 63 199zM650 336c0 -115 -30 -201 -90 -255s-153 -81 -279 -81h-183v671h183c127 0 220 -27 280 -81c59 -55 89 -139 89 -254'], + 0x1D5A4: [671,0,584,98,521,'521 0h-423v671h415v-77h-326v-198h312v-77h-312v-243h334v-76'], + 0x1D5A5: [671,0,533,98,475,'475 594h-288v-197h260v-77h-260v-320h-89v671h377v-77'], + 0x1D5A6: [683,13,710,56,629,'629 63c-34 -25 -72 -44 -113 -57c-42 -12 -86 -19 -132 -19c-103 0 -183 30 -242 92c-57 61 -86 146 -86 256c0 109 29 195 86 257c59 60 139 91 242 91c42 0 83 -6 122 -16c38 -11 74 -27 106 -48v-96c-33 28 -67 49 -104 64c-37 14 -76 21 -117 21 c-80 0 -141 -23 -180 -69c-41 -45 -61 -114 -61 -204s20 -159 61 -204c39 -46 100 -69 180 -69c31 0 59 2 83 8c26 5 47 14 67 26v180h-145v75h233v-288'], + 0x1D5A7: [671,0,695,98,598,'598 0h-89v319h-322v-319h-89v671h89v-275h322v275h89v-671'], + 0x1D5A8: [671,0,284,98,187,'187 0h-89v671h89v-671'], + 0x1D5A9: [671,184,269,-52,172,'172 47c0 -81 -15 -140 -46 -177c-30 -36 -77 -54 -144 -54h-34v76h28c39 0 66 11 83 33c16 23 24 64 24 122v624h89v-624'], + 0x1D5AA: [671,0,597,98,619,'619 0h-117l-315 323v-323h-89v671h89v-284l294 284h115l-326 -313'], + 0x1D5AB: [671,0,512,98,507,'507 0h-409v671h89v-595h320v-76'], + 0x1D5AC: [671,0,795,98,698,'698 0h-86v589l-169 -460h-89l-170 460v-589h-86v671h132l168 -457l168 457h132v-671'], + 0x1D5AD: [671,0,693,98,595,'595 0h-120l-291 561v-561h-86v671h120l290 -562v562h87v-671'], + 0x1D5AE: [683,13,719,56,663,'570 335c0 85 -19 152 -57 200c-38 49 -88 74 -153 74s-115 -25 -153 -74c-39 -48 -57 -115 -57 -200s18 -152 57 -201c38 -48 88 -73 153 -73s115 25 153 73c38 49 57 116 57 201zM663 335c0 -106 -27 -191 -82 -253c-55 -64 -129 -95 -221 -95s-166 31 -221 94 s-83 148 -83 254s28 190 83 254c55 62 129 94 221 94s166 -32 221 -94c55 -64 82 -148 82 -254'], + 0x1D5AF: [671,0,556,98,522,'428 470c0 41 -11 71 -34 93c-22 22 -54 33 -95 33h-112v-252h112c41 0 73 11 95 33c23 22 34 53 34 93zM522 470c0 -66 -19 -116 -57 -150c-38 -33 -93 -50 -166 -50h-112v-270h-89v671h201c73 0 128 -18 166 -51c38 -34 57 -84 57 -150'], + 0x1D5B0: [683,119,719,56,663,'570 335c0 85 -19 152 -57 200c-38 49 -88 74 -153 74s-115 -25 -153 -74c-39 -48 -57 -115 -57 -200s18 -152 57 -201c38 -48 88 -73 153 -73s115 25 153 73c38 49 57 116 57 201zM663 335c0 -78 -15 -145 -45 -201c-31 -55 -75 -95 -134 -122l117 -131h-107l-97 108 c-10 -1 -17 -1 -22 -2h-15c-92 0 -166 31 -221 95c-55 62 -83 147 -83 253s28 190 83 254c55 62 129 94 221 94s166 -32 221 -94c55 -64 82 -148 82 -254'], + 0x1D5B1: [671,0,637,98,609,'609 0h-95l-84 172c-22 45 -43 75 -64 89c-20 15 -48 22 -83 22h-96v-283h-89v671h201c74 0 130 -17 167 -48c37 -32 56 -81 56 -146c0 -42 -10 -77 -29 -104c-19 -28 -48 -47 -84 -58c19 -8 37 -22 56 -43c18 -22 36 -51 54 -89zM428 477c0 40 -11 69 -32 89 c-23 20 -55 30 -97 30h-112v-238h112c42 0 74 10 97 30c21 20 32 51 32 89'], + 0x1D5B2: [683,13,583,66,528,'528 185c0 -65 -21 -114 -64 -147c-43 -34 -106 -51 -187 -51c-32 0 -64 4 -100 11c-35 7 -71 18 -108 31v94c36 -21 71 -37 106 -47c34 -10 68 -15 102 -15c50 0 89 10 117 30c27 20 41 50 41 87c0 33 -10 59 -30 78c-20 18 -52 32 -97 41l-54 11 c-67 14 -114 35 -144 64c-29 28 -44 69 -44 119c0 60 21 106 61 141c42 34 97 51 169 51c31 0 62 -3 94 -9c32 -5 65 -14 98 -25v-89c-33 17 -66 29 -95 37c-30 8 -59 12 -87 12c-48 0 -85 -9 -111 -28c-26 -20 -40 -46 -40 -82c0 -30 9 -53 26 -68c17 -14 51 -27 99 -36 l54 -11c66 -13 115 -36 146 -68c32 -33 48 -77 48 -131'], + 0x1D5B3: [671,0,548,-3,552,'552 594h-233v-594h-89v594h-233v77h555v-77'], + 0x1D5B4: [671,13,675,87,589,'589 252c0 -87 -21 -154 -64 -198c-42 -45 -104 -67 -187 -67s-145 22 -188 67c-42 44 -63 111 -63 198v419h89v-408c0 -72 13 -123 39 -155c25 -32 66 -47 123 -47s98 15 123 47c26 32 39 83 39 155v408h89v-419'], + 0x1D5B5: [671,0,617,8,609,'609 671l-250 -671h-101l-250 671h93l208 -565l207 565h93'], + 0x1D5B6: [671,0,896,33,864,'864 671l-165 -671h-112l-138 582l-140 -582h-111l-165 671h90l138 -567l137 567h100l138 -567l138 567h90'], + 0x1D5B7: [671,0,623,30,592,'592 0h-96l-184 285l-187 -285h-95l234 358l-204 313h95l163 -250l164 250h95l-210 -322'], + 0x1D5B8: [671,0,548,-2,551,'551 671l-232 -352v-319h-89v319l-232 352h95l182 -276l181 276h95'], + 0x1D5B9: [671,0,625,45,580,'580 0h-535v69l415 525h-405v77h516v-69l-415 -526h424v-76'], + 0x1D5BA: [515,13,566,60,476,'395 235v18h-80c-66 0 -111 -7 -136 -23s-38 -41 -38 -78c0 -30 9 -53 29 -70c18 -18 44 -26 76 -26c45 0 81 17 108 49s41 75 41 130zM476 0h-81v76c-18 -30 -42 -53 -70 -67c-27 -15 -60 -22 -100 -22c-51 0 -90 14 -121 43c-29 29 -44 68 -44 116c0 57 19 100 56 128 c37 30 92 43 165 43h114v9c0 38 -13 67 -36 88c-25 21 -60 31 -104 31c-28 0 -56 -3 -82 -10c-27 -7 -53 -17 -77 -31v76c30 12 58 20 86 27c28 5 55 8 81 8c71 0 125 -18 160 -56s53 -95 53 -172v-287'], + 0x1D5BB: [699,13,585,91,531,'447 251c0 61 -12 109 -37 144c-24 34 -58 51 -100 51c-43 0 -77 -17 -101 -51c-24 -35 -37 -83 -37 -144s13 -108 37 -143c24 -34 58 -52 101 -52c42 0 76 18 100 52c25 35 37 82 37 143zM531 251c0 -79 -18 -142 -56 -191c-37 -49 -86 -73 -146 -73c-36 0 -67 7 -92 22 c-26 14 -48 36 -65 66v-75h-81v699h81v-272c17 30 39 52 65 66c25 15 56 22 92 22c60 0 109 -24 146 -72c38 -49 56 -113 56 -192'], + 0x1D5BC: [515,13,506,55,445,'445 19c-23 -11 -46 -19 -71 -24c-24 -5 -50 -8 -77 -8c-74 0 -133 24 -176 71c-44 48 -66 112 -66 193c0 82 22 146 67 193c44 48 104 71 180 71c26 0 50 -3 73 -7c24 -6 47 -14 70 -24v-77c-24 13 -46 22 -70 29c-22 6 -46 9 -69 9c-52 0 -94 -17 -122 -50 c-29 -34 -44 -82 -44 -144c0 -61 15 -109 44 -143c28 -33 70 -51 122 -51c23 0 47 3 69 9c24 8 46 17 70 30v-77'], + 0x1D5BD: [699,13,585,55,495,'495 0h-81v75c-17 -30 -39 -52 -64 -66c-26 -15 -57 -22 -93 -22c-60 0 -108 24 -146 73c-37 49 -56 112 -56 191s19 143 56 192c38 48 86 72 146 72c36 0 67 -7 93 -22c26 -14 47 -36 64 -66v272h81v-699zM414 251c0 61 -13 109 -37 144c-24 34 -58 51 -101 51 s-76 -17 -101 -51c-24 -35 -36 -83 -36 -144s12 -108 36 -143c25 -34 58 -52 101 -52s77 18 101 52c24 35 37 82 37 143'], + 0x1D5BE: [515,13,564,55,511,'511 232h-371c3 -57 19 -100 50 -131c30 -29 72 -44 125 -44c32 0 61 4 90 12c30 7 59 19 87 35v-78c-28 -13 -58 -22 -89 -29c-30 -7 -61 -10 -92 -10c-80 0 -141 23 -187 70s-69 110 -69 190c0 81 22 148 66 196c43 48 101 72 175 72c67 0 119 -22 158 -65 c38 -44 57 -103 57 -178v-40zM430 296c0 46 -12 82 -37 109c-24 26 -55 40 -96 40c-45 0 -81 -13 -108 -39s-43 -63 -47 -110h288'], + 0x1D5BF: [699,0,317,23,336,'336 630h-77c-29 0 -50 -5 -61 -17c-10 -13 -17 -34 -17 -66v-44h134v-64h-134v-439h-81v439h-77v64h77v35c0 56 13 97 38 123c26 25 67 38 122 38h76v-69'], + 0x1D5C0: [515,191,585,55,495,'414 258c0 59 -13 106 -36 139c-24 33 -58 49 -102 49s-77 -16 -101 -49c-25 -33 -36 -80 -36 -139c0 -60 11 -106 36 -139c24 -33 57 -50 101 -50s78 17 102 50c23 33 36 79 36 139zM495 63c0 -86 -19 -150 -56 -192c-38 -42 -94 -62 -171 -62c-29 0 -56 1 -80 6 c-25 5 -50 11 -74 20v80c24 -13 47 -23 71 -29c23 -6 46 -9 71 -9c53 0 92 14 118 42c27 29 40 72 40 129v40c-16 -29 -38 -51 -64 -66s-57 -22 -93 -22c-61 0 -109 23 -146 71c-37 47 -56 108 -56 187c0 77 19 139 56 186c37 48 85 71 146 71c36 0 67 -7 93 -22 s48 -37 64 -66v76h81v-440'], + 0x1D5C1: [699,0,587,91,503,'503 0h-81v301c0 48 -9 83 -27 107c-18 23 -46 35 -82 35c-43 0 -78 -14 -103 -42s-38 -68 -38 -117v-284h-81v699h81v-274c20 30 42 53 68 68s57 22 91 22c57 0 99 -17 128 -53c30 -36 44 -88 44 -158v-304'], + 0x1D5C2: [699,0,268,94,175,'175 0h-81v503h81v-503zM175 594h-81v105h81v-105'], + 0x1D5C3: [699,191,257,-18,164,'164 -9c0 -65 -12 -111 -35 -139c-25 -29 -63 -43 -116 -43h-31v70h22c30 0 51 7 63 22c10 14 16 44 16 90v512h81v-512zM164 594h-81v105h81v-105'], + 0x1D5C4: [699,0,530,91,527,'527 0h-105l-250 246v-246h-81v699h81v-413l241 217h104l-261 -235'], + 0x1D5C5: [699,0,268,94,175,'175 0h-81v699h81v-699'], + 0x1D5C6: [515,0,894,91,809,'809 0h-81v301c0 48 -8 84 -25 107s-42 35 -77 35c-41 0 -74 -14 -99 -42c-24 -28 -36 -68 -36 -117v-284h-81v301c0 49 -9 84 -26 107s-42 35 -77 35c-41 0 -74 -14 -98 -42c-24 -29 -37 -68 -37 -117v-284h-81v503h81v-78c19 31 40 53 67 68c26 15 55 22 91 22 c35 0 67 -9 91 -27c25 -19 44 -46 56 -81c20 36 44 64 73 82c28 17 60 26 99 26c51 0 91 -18 119 -55s41 -88 41 -156v-304'], + 0x1D5C7: [515,0,587,91,503,'503 0h-81v301c0 48 -9 83 -27 107c-18 23 -46 35 -82 35c-43 0 -78 -14 -103 -42s-38 -68 -38 -117v-284h-81v503h81v-78c20 30 42 53 68 68s57 22 91 22c57 0 99 -17 128 -53c30 -36 44 -88 44 -158v-304'], + 0x1D5C8: [515,13,561,55,507,'421 251c0 60 -12 107 -38 142c-25 35 -59 52 -102 52s-78 -17 -103 -51c-25 -35 -38 -83 -38 -143s13 -107 37 -142c26 -34 61 -52 104 -52s77 18 102 52c26 35 38 82 38 142zM507 251c0 -82 -20 -147 -61 -194c-39 -47 -95 -70 -165 -70s-126 23 -166 70 s-60 112 -60 194c0 83 20 147 60 194s96 70 166 70s126 -23 165 -70c41 -47 61 -111 61 -194'], + 0x1D5C9: [515,191,585,91,531,'531 251c0 -79 -18 -142 -56 -191c-37 -49 -86 -73 -146 -73c-36 0 -67 7 -92 22c-26 14 -48 36 -65 66v-266h-81v694h81v-76c17 30 39 52 65 66c25 15 56 22 92 22c60 0 109 -24 146 -72c38 -49 56 -113 56 -192zM447 251c0 61 -12 109 -37 144c-24 34 -58 51 -100 51 c-43 0 -77 -17 -101 -51c-24 -35 -37 -83 -37 -144s13 -108 37 -143c24 -34 58 -52 101 -52c42 0 76 18 100 52c25 35 37 82 37 143'], + 0x1D5CA: [515,191,585,55,495,'414 251c0 61 -13 109 -37 144c-24 34 -58 51 -101 51s-76 -17 -101 -51c-24 -35 -36 -83 -36 -144s12 -108 36 -143c25 -34 58 -52 101 -52s77 18 101 52c24 35 37 82 37 143zM495 -191h-81v266c-17 -30 -39 -52 -64 -66c-26 -15 -57 -22 -93 -22c-60 0 -108 24 -146 73 c-37 49 -56 112 -56 191s19 143 56 192c38 48 86 72 146 72c36 0 67 -7 93 -22c26 -14 47 -36 64 -66v76h81v-694'], + 0x1D5CB: [515,0,379,91,379,'379 426c-9 5 -19 9 -30 12s-22 4 -35 4c-46 0 -81 -16 -105 -45c-24 -32 -37 -75 -37 -132v-265h-81v503h81v-78c17 30 40 53 67 68s60 22 99 22c6 0 11 0 18 -1s14 -2 23 -3v-85'], + 0x1D5CC: [515,13,478,54,430,'430 139c0 -47 -18 -84 -54 -111c-36 -28 -86 -41 -149 -41c-26 0 -53 3 -83 7c-28 6 -59 14 -90 24v86c30 -16 59 -28 88 -36c30 -8 58 -12 87 -12c38 0 67 7 88 20c20 13 30 33 30 56s-7 40 -22 52s-47 24 -97 35l-28 6c-51 11 -87 28 -109 50c-23 22 -33 53 -33 92 c0 47 16 84 49 110c32 25 79 38 140 38c29 0 58 -2 84 -6c26 -5 51 -11 73 -20v-79c-23 12 -47 21 -71 27c-25 6 -50 9 -77 9c-40 0 -70 -6 -90 -19c-20 -12 -30 -31 -30 -56c0 -20 7 -34 21 -45c15 -11 44 -21 87 -32l28 -6c57 -13 98 -30 122 -53s36 -56 36 -96'], + 0x1D5CD: [646,0,358,27,334,'334 0h-83c-62 0 -105 12 -130 36c-23 23 -35 67 -35 130v273h-59v64h59v143h81v-143h167v-64h-167v-273c0 -41 6 -68 17 -80c11 -11 33 -17 67 -17h83v-69'], + 0x1D5CE: [503,13,587,85,497,'497 0h-81v77c-20 -30 -42 -53 -68 -68c-25 -15 -56 -22 -90 -22c-57 0 -99 18 -129 53c-30 36 -44 90 -44 159v304h81v-302c0 -47 9 -82 27 -106s45 -36 82 -36c43 0 78 15 103 42c26 29 38 68 38 117v285h81v-503'], + 0x1D5CF: [503,0,538,30,509,'509 503l-185 -503h-110l-184 503h85l154 -422l154 422h86'], + 0x1D5D0: [503,0,744,42,703,'703 503l-129 -503h-96l-106 412l-106 -412h-95l-129 503h81l101 -393l101 393h95l101 -393l101 393h81'], + 0x1D5D1: [503,0,538,29,506,'506 0h-95l-144 198l-143 -198h-95l191 263l-175 240h96l130 -179l131 179h95l-178 -244'], + 0x1D5D2: [503,191,538,30,509,'509 503l-216 -550c-24 -60 -46 -98 -67 -117c-21 -18 -51 -27 -87 -27h-65v69h48c22 0 39 5 51 16c13 10 26 36 41 77l15 37l-199 495h85l154 -394l154 394h86'], + 0x1D5D3: [503,0,480,43,438,'438 0h-395v75l304 362h-293v66h384v-75l-304 -362h304v-66'], + 0x1D5D4: [671,0,697,5,693,'693 0h-171l-41 122h-265l-41 -122h-170l243 671h202zM439 247l-90 266l-90 -266h180'], + 0x1D5D5: [671,0,702,92,632,'436 482c0 23 -7 41 -21 53c-13 12 -33 18 -60 18h-94v-142h94c27 0 47 6 60 18c14 12 21 30 21 53zM463 206c0 30 -8 51 -25 65c-18 15 -44 22 -78 22h-99v-175h99c34 0 60 7 78 22c16 15 25 37 25 66zM632 192c0 -64 -22 -113 -64 -144c-43 -32 -108 -48 -195 -48h-281 v671h254c91 0 157 -14 198 -43c41 -28 61 -72 61 -135c0 -33 -7 -61 -23 -84c-14 -22 -36 -39 -64 -50c36 -11 64 -31 84 -60s30 -64 30 -107'], + 0x1D5D6: [683,13,671,50,608,'608 37c-32 -17 -63 -29 -97 -37c-34 -9 -70 -13 -106 -13c-109 0 -196 31 -260 94c-64 62 -95 147 -95 254s31 192 95 255c64 61 151 93 260 93c36 0 72 -4 106 -12c34 -10 65 -21 97 -38v-139c-32 22 -62 38 -93 48c-30 11 -62 16 -96 16c-60 0 -108 -21 -142 -59 c-35 -40 -52 -95 -52 -164s17 -124 52 -163c34 -40 82 -60 142 -60c34 0 66 5 96 16c31 10 61 26 93 48v-139'], + 0x1D5D7: [671,0,761,92,709,'535 336c0 66 -18 118 -55 152c-36 35 -89 52 -159 52h-60v-409h60c70 0 122 17 159 52c36 35 55 86 55 153zM709 336c0 -51 -7 -96 -22 -135c-15 -40 -38 -75 -69 -105c-35 -35 -77 -59 -126 -75c-50 -14 -124 -21 -222 -21h-178v671h178c100 0 174 -8 222 -22 c50 -15 91 -39 126 -74c31 -30 54 -65 69 -105c15 -39 22 -85 22 -134'], + 0x1D5D8: [671,0,631,92,558,'558 0h-466v671h456v-131h-287v-125h270v-131h-270v-153h297v-131'], + 0x1D5D9: [671,0,632,92,548,'548 540h-287v-125h270v-131h-270v-284h-169v671h456v-131'], + 0x1D5DA: [683,13,750,50,677,'677 50c-42 -21 -86 -37 -131 -47s-92 -16 -141 -16c-109 0 -196 31 -260 94c-64 62 -95 147 -95 254c0 108 32 193 97 255c65 61 155 93 267 93c44 0 86 -4 126 -12c40 -10 78 -21 113 -38v-139c-36 21 -73 38 -109 48s-72 16 -109 16c-67 0 -120 -20 -156 -58 c-36 -39 -54 -94 -54 -165s18 -126 53 -165c35 -38 84 -58 149 -58c18 0 34 1 49 4c16 2 29 5 41 10v131h-103v116h263v-323'], + 0x1D5DB: [671,0,771,92,680,'680 0h-170v284h-249v-284h-169v671h169v-256h249v256h170v-671'], + 0x1D5DC: [671,0,353,92,261,'261 0h-169v671h169v-671'], + 0x1D5DD: [671,184,338,-56,246,'246 65c0 -83 -22 -146 -66 -187c-45 -42 -112 -62 -202 -62h-34v131h26c35 0 62 10 80 30s27 49 27 88v606h169v-606'], + 0x1D5DE: [671,0,703,92,734,'734 0h-212l-261 264v-264h-169v671h169v-245l244 245h196l-316 -318'], + 0x1D5DF: [671,0,585,92,558,'558 0h-466v671h169v-540h297v-131'], + 0x1D5E0: [671,0,914,92,822,'822 0h-160v490l-152 -361h-107l-151 361v-490h-160v671h215l149 -359l151 359h215v-671'], + 0x1D5E1: [671,0,771,92,680,'680 0h-189l-239 460v-460h-160v671h189l238 -460v460h161v-671'], + 0x1D5E2: [683,13,775,50,725,'550 335c0 70 -14 125 -42 164c-29 39 -69 59 -121 59c-51 0 -91 -20 -119 -59c-29 -39 -43 -94 -43 -164c0 -71 14 -125 43 -164c28 -39 68 -59 119 -59c52 0 92 20 121 59c28 39 42 93 42 164zM725 335c0 -109 -30 -194 -90 -256c-59 -61 -142 -92 -248 -92 c-105 0 -188 31 -248 92c-59 62 -89 147 -89 256c0 108 30 194 89 256c60 60 143 92 248 92c106 0 189 -32 248 -92c60 -62 90 -148 90 -256'], + 0x1D5E3: [671,0,672,92,632,'632 452c0 -70 -23 -124 -68 -163c-44 -38 -108 -56 -191 -56h-112v-233h-169v671h281c83 0 147 -20 191 -57c45 -38 68 -92 68 -162zM457 452c0 30 -9 53 -27 69s-43 25 -75 25h-94v-188h94c32 0 57 8 75 25c18 16 27 38 27 69'], + 0x1D5E4: [683,134,775,50,725,'725 335c0 -76 -16 -141 -48 -195c-31 -54 -76 -96 -136 -123l133 -151h-161l-108 122h-13c-108 0 -192 30 -252 91c-60 62 -90 146 -90 256c0 108 30 194 89 256c60 60 143 92 248 92c107 0 189 -31 249 -91c59 -62 89 -148 89 -257zM550 335c0 70 -14 125 -42 164 c-29 39 -69 59 -121 59c-51 0 -91 -20 -119 -59c-29 -39 -43 -94 -43 -164c0 -72 14 -127 42 -165c27 -38 67 -58 120 -58c52 0 92 20 121 59c28 39 42 93 42 164'], + 0x1D5E5: [671,0,704,92,684,'431 460c0 30 -7 52 -23 65c-15 13 -41 21 -76 21h-71v-172h71c35 0 61 6 76 20c16 13 23 35 23 66zM684 0h-180l-80 167c-16 34 -32 57 -49 69c-17 11 -38 18 -66 18h-48v-254h-169v671h258c87 0 150 -15 190 -44c41 -31 60 -77 60 -141c0 -45 -9 -81 -31 -110 c-21 -28 -52 -49 -95 -62c24 -6 45 -18 63 -37s36 -48 55 -87'], + 0x1D5E6: [683,13,662,72,589,'589 206c0 -74 -21 -129 -64 -165s-108 -54 -197 -54c-41 0 -83 4 -125 12s-83 20 -126 36v146c43 -23 83 -40 122 -51c39 -12 76 -18 113 -18s65 7 85 20c20 12 30 30 30 53c0 21 -8 38 -21 49s-40 21 -79 30l-66 15c-66 14 -113 37 -144 69c-30 31 -45 73 -45 127 c0 67 21 118 63 154s103 54 182 54c36 0 73 -3 111 -9c38 -5 78 -13 118 -24v-142c-36 16 -71 28 -105 37s-67 13 -97 13c-41 0 -70 -6 -90 -18c-19 -11 -29 -28 -29 -52c0 -19 7 -33 20 -43c12 -10 37 -18 71 -25l72 -15c73 -15 125 -38 156 -68c30 -31 45 -75 45 -131'], + 0x1D5E7: [671,0,615,5,610,'610 540h-218v-540h-169v540h-218v131h605v-131'], + 0x1D5E8: [671,13,749,92,657,'657 269c0 -95 -23 -166 -69 -212c-47 -47 -118 -70 -213 -70c-96 0 -167 23 -214 70c-46 46 -69 117 -69 212v402h169v-402c0 -56 9 -96 27 -119c17 -24 46 -36 87 -36c40 0 69 12 87 36c17 24 26 63 26 119v402h169v-402'], + 0x1D5E9: [671,0,697,5,693,'693 671l-243 -671h-202l-243 671h170l174 -495l173 495h171'], + 0x1D5EA: [671,0,999,30,968,'968 671l-155 -671h-195l-119 510l-118 -510h-195l-156 671h162l113 -488l113 488h163l112 -488l114 488h161'], + 0x1D5EB: [671,0,697,19,678,'678 0h-177l-153 229l-152 -229h-177l228 342l-219 329h176l144 -217l143 217h178l-219 -329'], + 0x1D5EC: [671,0,650,-10,660,'660 671l-251 -389v-282h-169v282l-250 389h185l150 -240l149 240h186'], + 0x1D5ED: [671,0,661,45,616,'616 0h-571v105l352 435h-342v131h552v-105l-352 -435h361v-131'], + 0x1D5EE: [515,13,619,43,541,'382 208v18h-82c-33 0 -57 -5 -73 -16c-17 -12 -26 -29 -26 -51c0 -20 8 -37 20 -48c14 -12 33 -17 56 -17c30 0 55 11 75 33c20 21 30 48 30 81zM541 0h-159v75c-21 -31 -45 -54 -71 -67c-26 -14 -58 -21 -96 -21c-51 0 -93 15 -124 45c-32 31 -48 70 -48 119 c0 59 20 102 59 130c40 27 103 41 188 41h92v13c0 26 -10 44 -29 56c-20 11 -50 17 -92 17c-34 0 -65 -3 -94 -10c-30 -7 -56 -17 -81 -31v122c33 10 68 15 102 20c33 4 67 6 102 6c89 0 153 -17 191 -53c40 -36 60 -95 60 -175v-287'], + 0x1D5EF: [699,13,656,84,612,'449 251c0 48 -9 85 -26 110c-18 24 -43 37 -77 37s-60 -13 -78 -37c-18 -26 -27 -62 -27 -110s9 -84 27 -109c18 -26 44 -38 78 -38s59 12 77 38c17 25 26 61 26 109zM612 251c0 -78 -20 -141 -58 -190c-40 -49 -89 -74 -150 -74c-34 0 -64 7 -91 21 c-26 13 -50 35 -72 65v-73h-157v699h157v-269c22 29 46 50 72 64c27 15 57 21 91 21c61 0 110 -25 150 -74c38 -49 58 -113 58 -190'], + 0x1D5F0: [515,13,544,43,478,'478 15c-25 -9 -50 -16 -76 -21c-24 -5 -50 -7 -76 -7c-89 0 -158 23 -208 70c-50 46 -75 111 -75 194s25 148 75 194c50 47 119 70 208 70c27 0 52 -2 76 -6c26 -6 50 -12 76 -21v-132c-22 15 -44 27 -65 33c-21 8 -43 11 -67 11c-44 0 -78 -13 -102 -38 c-25 -27 -37 -64 -37 -111s12 -84 37 -110c24 -26 58 -39 102 -39c25 0 48 4 70 11c22 8 43 19 62 33v-131'], + 0x1D5F1: [699,13,656,45,573,'573 0h-158v73c-22 -30 -46 -52 -72 -66c-25 -13 -56 -20 -90 -20c-61 0 -111 25 -150 74s-58 112 -58 190c0 77 19 141 58 190s89 74 150 74c33 0 64 -6 90 -21c26 -14 50 -35 72 -64v269h158v-699zM415 251c0 48 -9 85 -26 110c-18 24 -44 37 -78 37 c-33 0 -59 -13 -76 -37c-18 -25 -27 -62 -27 -110s9 -84 27 -109c17 -26 43 -38 76 -38c34 0 60 12 78 38c17 25 26 61 26 109'], + 0x1D5F2: [515,13,619,43,571,'571 207h-368c5 -38 17 -66 41 -85c22 -19 55 -28 95 -28c33 0 67 4 102 15c35 10 70 25 107 46v-125c-38 -13 -75 -24 -112 -32c-38 -7 -74 -11 -111 -11c-89 0 -159 23 -208 70c-50 45 -74 110 -74 194c0 82 24 146 73 193c48 48 115 71 200 71c77 0 139 -24 186 -72 c46 -46 69 -111 69 -190v-46zM409 306c0 31 -9 56 -26 74c-17 19 -40 28 -68 28c-30 0 -55 -8 -74 -26s-31 -43 -36 -76h204'], + 0x1D5F3: [699,0,392,19,401,'401 593h-87c-22 0 -38 -3 -47 -12c-8 -8 -12 -23 -12 -43v-35h134v-115h-134v-388h-158v388h-78v115h78v35c0 55 16 95 45 122c30 26 76 39 139 39h120v-106'], + 0x1D5F4: [514,199,656,45,573,'573 51c0 -81 -25 -143 -74 -185c-51 -43 -123 -65 -218 -65c-31 0 -61 3 -89 8c-29 4 -58 12 -87 22v125c28 -16 54 -29 81 -36c26 -8 52 -12 79 -12c52 0 90 12 114 35c24 22 36 59 36 108v35c-22 -30 -46 -51 -72 -66c-25 -14 -56 -20 -90 -20c-60 0 -110 24 -150 73 c-38 48 -58 109 -58 185c0 74 20 137 58 184c40 48 90 72 150 72c34 0 65 -6 90 -20c26 -15 50 -36 72 -65v74h158v-452zM415 258c0 45 -9 79 -27 104c-18 24 -44 36 -77 36c-32 0 -58 -12 -76 -36c-18 -25 -27 -59 -27 -104c0 -47 9 -82 26 -105c18 -24 43 -36 77 -36 c33 0 59 12 77 37c18 24 27 59 27 104'], + 0x1D5F5: [699,0,656,84,579,'579 0h-158v50v184c0 44 -1 73 -3 91c-2 16 -6 28 -10 36c-6 10 -14 18 -25 24s-23 9 -36 9c-34 0 -59 -13 -78 -39s-28 -62 -28 -108v-247h-157v699h157v-269c24 29 49 50 76 64c27 15 56 21 88 21c57 0 100 -17 130 -53c29 -36 44 -88 44 -156v-306'], + 0x1D5F6: [699,0,324,84,241,'241 0h-157v503h157v-503zM241 568h-157v131h157v-131'], + 0x1D5F7: [699,199,313,-33,230,'230 9c0 -67 -16 -118 -48 -154c-31 -35 -77 -54 -138 -54h-77v106h27c30 0 50 7 61 20c12 15 17 42 17 82v494h158v-494zM230 568h-158v131h158v-131'], + 0x1D5F8: [699,0,605,84,624,'624 0h-191l-192 210v-210h-157v699h157v-381l181 185h183l-240 -231'], + 0x1D5F9: [699,0,324,84,241,'241 0h-157v699h157v-699'], + 0x1D5FA: [515,0,953,83,875,'875 0h-158v262v12v19c0 35 -5 61 -15 77c-10 15 -27 24 -49 24c-30 0 -53 -12 -70 -38c-16 -25 -25 -62 -25 -109v-247h-158v262c0 56 -5 92 -15 108c-9 15 -25 24 -49 24c-31 0 -54 -12 -70 -38c-17 -26 -25 -62 -25 -109v-247h-158v503h158v-73c19 28 42 49 67 64 c25 14 52 21 83 21c33 0 64 -8 90 -25c26 -16 46 -40 59 -70c20 31 43 55 71 70c27 17 57 25 90 25c57 0 100 -17 130 -53c29 -36 44 -88 44 -156v-306'], + 0x1D5FB: [515,0,656,84,579,'579 0h-158v50v185c0 43 -1 72 -3 90c-2 16 -6 28 -10 36c-6 10 -14 18 -25 24s-23 9 -36 9c-34 0 -59 -13 -78 -39s-28 -62 -28 -108v-247h-157v503h157v-73c24 29 49 50 76 64c27 15 56 21 88 21c57 0 100 -17 130 -53c29 -36 44 -88 44 -156v-306'], + 0x1D5FC: [515,13,627,43,584,'420 251c0 48 -9 85 -27 111c-18 25 -45 38 -79 38s-61 -13 -79 -38c-19 -26 -28 -63 -28 -111s9 -84 28 -111c18 -25 45 -38 79 -38s61 13 79 38c18 27 27 63 27 111zM584 251c0 -83 -24 -147 -72 -194c-47 -47 -114 -70 -198 -70c-85 0 -151 23 -199 70 c-49 47 -72 111 -72 194s23 147 72 194c48 47 114 70 199 70c84 0 151 -23 198 -70c48 -47 72 -111 72 -194'], + 0x1D5FD: [515,191,656,84,612,'612 251c0 -78 -20 -141 -58 -190c-40 -49 -89 -74 -150 -74c-34 0 -64 7 -91 21c-26 13 -50 35 -72 65v-264h-157v694h157v-73c22 29 46 50 72 64c27 15 57 21 91 21c61 0 110 -25 150 -74c38 -49 58 -113 58 -190zM449 251c0 48 -9 85 -26 110c-18 24 -43 37 -77 37 s-60 -13 -78 -37c-18 -26 -27 -62 -27 -110s9 -84 27 -109c18 -26 44 -38 78 -38s59 12 77 38c17 25 26 61 26 109'], + 0x1D5FE: [514,191,656,45,573,'415 251c0 48 -9 85 -26 110c-18 24 -44 37 -78 37c-33 0 -59 -13 -76 -37c-18 -25 -27 -62 -27 -110s9 -84 27 -109c17 -26 43 -38 76 -38c34 0 60 12 78 38c17 25 26 61 26 109zM573 -191h-158v264c-22 -30 -46 -52 -72 -66c-25 -13 -56 -20 -90 -20 c-61 0 -111 25 -150 74s-58 112 -58 190c0 77 19 141 58 190c39 48 89 73 150 73c34 0 65 -6 90 -20c26 -15 50 -36 72 -65v74h158v-694'], + 0x1D5FF: [515,0,452,84,449,'449 366c-13 7 -28 12 -41 15c-14 3 -27 4 -41 4c-40 0 -72 -13 -93 -39c-22 -27 -33 -64 -33 -114v-232h-157v503h157v-83c20 34 44 57 70 72c26 16 57 23 94 23h17c7 -1 16 -2 27 -3v-146'], + 0x1D600: [515,13,545,52,498,'498 148c0 -53 -19 -94 -58 -120c-39 -28 -96 -41 -173 -41c-32 0 -66 3 -101 7c-35 6 -70 14 -107 24v123c32 -16 64 -28 96 -35c34 -8 67 -12 101 -12c31 0 54 4 70 13c15 8 23 22 23 38c0 15 -5 26 -16 33s-32 12 -64 16l-28 4c-69 9 -119 26 -147 49 c-29 24 -42 61 -42 111c0 53 18 93 53 119c36 25 91 38 165 38c29 0 59 -2 92 -6c31 -5 66 -12 103 -21v-123c-33 15 -67 25 -97 32c-32 8 -61 11 -89 11c-30 0 -52 -4 -67 -11c-14 -8 -21 -20 -21 -35c0 -13 5 -23 17 -30c10 -6 29 -12 58 -16l28 -3 c80 -10 135 -28 162 -52c28 -24 42 -61 42 -113'], + 0x1D601: [646,0,434,13,411,'411 388h-162v-213c0 -23 4 -40 13 -47c9 -9 27 -13 54 -13h81v-115h-135c-62 0 -106 14 -131 40c-27 26 -40 71 -40 135v213h-78v115h78v143h158v-143h162v-115'], + 0x1D602: [503,13,656,78,573,'573 0h-158v73c-23 -30 -48 -52 -75 -65c-26 -14 -55 -21 -87 -21c-57 0 -100 18 -130 53c-30 36 -45 88 -45 156v307h158v-50l-1 -102v-83c0 -41 1 -70 3 -88c3 -17 6 -30 11 -38c6 -10 15 -19 25 -25c11 -6 23 -8 36 -8c33 0 59 12 78 38c18 26 27 62 27 108v248h158 v-503'], + 0x1D603: [503,0,589,15,575,'575 503l-194 -503h-173l-193 503h157l123 -348l122 348h158'], + 0x1D604: [503,0,838,35,804,'804 503l-130 -503h-172l-83 346l-83 -346h-171l-130 503h153l83 -347l83 347h131l83 -343l83 343h153'], + 0x1D605: [503,0,583,15,568,'568 0h-166l-111 159l-110 -159h-166l186 258l-177 245h166l101 -149l102 149h166l-177 -244'], + 0x1D606: [503,199,589,12,572,'572 503l-207 -551c-21 -56 -45 -95 -73 -118c-28 -22 -65 -33 -110 -33h-91v106h50c27 0 46 5 58 13s22 24 28 47l5 14l-220 522h157l133 -341l112 341h158'], + 0x1D607: [503,0,533,45,485,'485 0h-440v112l259 276h-248v115h429v-112l-259 -276h259v-115'], + 0x1D608: [671,0,617,-53,548,'548 0h-93l-27 172h-295l-92 -172h-94l379 671h101zM415 247l-57 334l-184 -334h241'], + 0x1D609: [671,0,626,27,565,'565 530c0 -43 -13 -80 -39 -111c-27 -32 -61 -51 -103 -57c36 -9 64 -24 82 -48s27 -55 27 -95c0 -67 -24 -121 -73 -160c-50 -40 -116 -59 -201 -59h-231l128 671h227c61 0 108 -12 137 -35c31 -23 46 -59 46 -106zM440 219c0 35 -10 61 -29 77s-50 24 -92 24h-143 l-46 -245h143c53 0 94 12 123 37c30 25 44 61 44 107zM472 512c0 30 -9 51 -27 64c-18 14 -46 20 -85 20h-131l-39 -202h132c47 0 84 10 111 31c26 21 39 51 39 87'], + 0x1D60A: [683,13,633,42,630,'630 619l-18 -96c-28 30 -59 51 -90 65s-66 21 -102 21c-50 0 -95 -12 -132 -37c-38 -25 -71 -61 -98 -112c-18 -32 -31 -66 -41 -102c-9 -37 -13 -73 -13 -110c0 -60 15 -107 45 -139c32 -33 77 -48 135 -48c42 0 81 6 118 20c37 13 74 33 109 60l-20 -108 c-35 -15 -71 -27 -106 -34c-36 -8 -72 -12 -107 -12c-84 0 -150 23 -197 70c-48 47 -71 112 -71 195c0 53 9 106 27 157c18 52 44 99 77 141c36 45 77 79 123 100c46 22 99 33 160 33c38 0 73 -6 107 -16c33 -11 65 -27 94 -48'], + 0x1D60B: [671,0,700,27,652,'652 409c0 -57 -9 -112 -29 -164c-20 -54 -46 -98 -81 -135c-34 -36 -79 -64 -133 -82c-54 -19 -117 -28 -190 -28h-192l128 671h191c101 0 178 -22 229 -67c51 -43 77 -108 77 -195zM559 409c0 65 -17 112 -52 142s-91 45 -166 45h-112l-99 -521h117c99 0 176 29 230 87 c55 59 82 141 82 247'], + 0x1D60C: [671,0,571,27,570,'570 671l-15 -77h-326l-38 -198h313l-14 -77h-314l-46 -243h334l-14 -76h-423l128 671h415'], + 0x1D60D: [671,0,519,27,531,'531 671l-14 -77h-288l-38 -197h260l-15 -77h-260l-61 -320h-88l128 671h376'], + 0x1D60E: [683,13,706,45,657,'657 619l-18 -96c-26 28 -57 49 -93 64s-73 22 -113 22c-47 0 -87 -9 -123 -27s-67 -46 -95 -84c-23 -32 -42 -71 -56 -114c-14 -45 -20 -90 -20 -135c0 -62 16 -109 46 -141c32 -32 79 -47 141 -47c31 0 61 2 90 10c29 6 56 16 80 29l34 176h-146l14 75h233l-57 -296 c-39 -22 -82 -38 -128 -50s-91 -18 -138 -18c-82 0 -147 23 -194 70c-46 47 -69 112 -69 195c0 69 14 135 42 197c29 63 68 115 117 156c32 27 66 46 103 59c38 12 79 19 124 19c41 0 80 -6 118 -16c38 -11 74 -27 108 -48'], + 0x1D60F: [671,0,681,27,655,'655 671l-128 -671h-89l61 319h-322l-61 -319h-89l128 671h89l-52 -275h322l52 275h89'], + 0x1D610: [671,0,270,27,244,'244 671l-128 -671h-89l128 671h89'], + 0x1D611: [671,184,251,-164,223,'223 671l-119 -624c-15 -82 -42 -141 -78 -177c-37 -37 -88 -54 -155 -54h-35l14 76h28c40 0 70 12 90 34c21 23 36 64 47 121l119 624h89'], + 0x1D612: [671,0,585,27,652,'652 671l-389 -320l285 -351h-108l-262 327l-62 -327h-89l128 671h89l-54 -283l345 283h117'], + 0x1D613: [671,0,510,27,450,'450 75l-14 -75h-409l127 671h89l-113 -596h320'], + 0x1D614: [671,0,781,27,755,'755 671l-128 -671h-86l111 588l-257 -459h-86l-84 461l-112 -590h-86l128 671h133l76 -452l254 452h137'], + 0x1D615: [671,0,679,27,652,'652 671l-128 -671h-120l-181 579l-110 -579h-86l128 671h119l181 -575l110 575h87'], + 0x1D616: [683,13,716,40,676,'582 414c0 63 -15 110 -44 144s-71 51 -124 51c-48 0 -91 -12 -128 -36c-38 -24 -70 -61 -98 -110c-17 -32 -30 -65 -40 -101c-9 -35 -14 -70 -14 -106c0 -63 15 -111 44 -145s71 -50 124 -50c48 0 91 12 129 36c37 24 69 61 96 109c18 32 31 66 40 102 c10 36 15 71 15 106zM676 412c0 -51 -9 -102 -26 -152c-18 -49 -43 -94 -75 -135c-38 -47 -80 -81 -125 -104c-46 -23 -95 -34 -151 -34c-80 0 -144 24 -190 73c-47 49 -69 116 -69 200c0 49 9 99 27 149c18 51 43 96 75 136c37 46 78 81 124 104c46 22 96 34 151 34 c80 0 144 -24 190 -73c46 -48 69 -114 69 -198'], + 0x1D617: [671,0,546,27,544,'544 503c0 -73 -24 -131 -70 -172s-111 -61 -195 -61h-112l-51 -270h-89l128 671h205c59 0 105 -15 137 -43c30 -28 47 -70 47 -125zM450 497c0 31 -9 56 -27 73c-19 18 -45 26 -77 26h-117l-47 -252h111c51 0 89 13 116 40c27 26 41 64 41 113'], + 0x1D618: [683,119,716,41,676,'676 412c0 -90 -24 -172 -72 -247s-112 -127 -190 -159l90 -125h-99l-76 107c-4 -1 -6 -1 -10 -1h-16c-82 0 -147 24 -193 72s-69 114 -69 200c0 49 9 100 26 149c18 51 43 96 75 137c36 46 77 81 123 104c46 22 96 34 152 34c80 0 144 -24 190 -73 c46 -48 69 -114 69 -198zM582 414c0 63 -15 110 -44 144s-70 51 -124 51c-48 0 -91 -12 -128 -36c-38 -24 -70 -61 -97 -110c-18 -32 -31 -65 -41 -101c-9 -35 -13 -70 -13 -106c0 -63 14 -111 43 -145s71 -50 124 -50c48 0 91 12 129 36c37 24 69 61 96 109 c18 32 31 66 40 102c10 36 15 71 15 106'], + 0x1D619: [671,0,637,27,543,'449 495c0 33 -9 58 -28 75c-19 18 -45 26 -80 26h-112l-45 -238h115c45 0 81 13 109 39c27 24 41 57 41 98zM543 508c0 -47 -14 -88 -42 -122s-64 -56 -109 -64c19 -5 35 -16 47 -33c13 -18 27 -53 43 -106l56 -183h-93l-52 172c-13 44 -29 75 -46 89 c-17 15 -44 22 -79 22h-98l-54 -283h-89l128 671h200c60 0 107 -14 139 -42s49 -69 49 -121'], + 0x1D61A: [683,13,574,6,543,'543 649l-17 -89c-30 16 -58 29 -88 36c-29 9 -58 13 -85 13c-53 0 -95 -12 -127 -35c-30 -24 -46 -56 -46 -95c0 -21 6 -38 18 -49c10 -11 41 -24 89 -37l53 -14c60 -16 102 -36 125 -60c23 -25 35 -59 35 -103c0 -68 -26 -122 -77 -165c-53 -43 -122 -64 -206 -64 c-35 0 -70 4 -105 10c-36 8 -71 19 -106 32l18 94c32 -21 65 -37 98 -47c32 -10 65 -15 97 -15c56 0 100 13 133 37c34 25 51 58 51 99c0 27 -7 48 -20 61c-13 14 -42 27 -86 38l-53 14c-61 16 -102 35 -125 55c-22 22 -33 52 -33 89c0 68 25 122 76 165 c50 42 116 64 196 64c31 0 62 -3 93 -9c31 -5 62 -14 92 -25'], + 0x1D61B: [671,0,547,43,613,'613 671l-15 -77h-234l-112 -594h-89l112 594h-232l14 77h556'], + 0x1D61C: [671,13,665,58,647,'647 671l-79 -419c-17 -90 -50 -157 -98 -200c-48 -44 -115 -65 -199 -65c-65 0 -118 17 -155 51c-39 33 -58 79 -58 137c0 10 1 22 3 36c1 12 2 26 6 41l78 419h89l-77 -408l-7 -45c-1 -12 -2 -22 -2 -31c0 -42 12 -73 34 -94c23 -21 56 -32 99 -32c57 0 101 15 132 48 c32 31 54 82 68 154l77 408h89'], + 0x1D61D: [671,0,618,78,676,'676 671l-379 -671h-104l-115 671h87l96 -577l318 577h97'], + 0x1D61E: [671,0,896,96,928,'928 671l-292 -671h-112l-30 559l-246 -559h-112l-40 671h86l32 -571l247 571h99l33 -571l245 571h90'], + 0x1D61F: [671,0,610,-43,628,'628 671l-270 -320l163 -351h-89l-132 282l-240 -282h-103l307 361l-145 310h90l112 -242l204 242h103'], + 0x1D620: [671,0,549,63,615,'615 671l-298 -352l-61 -319h-89l61 319l-165 352h95l123 -276l234 276h100'], + 0x1D621: [671,0,612,-22,630,'630 671l-12 -69l-509 -526h419l-15 -76h-535l13 69l508 525h-398l15 77h514'], + 0x1D622: [515,13,561,41,496,'496 364c0 -10 -1 -21 -2 -35c-1 -13 -3 -27 -7 -42l-55 -287h-81l16 76c-25 -30 -51 -52 -82 -67c-30 -15 -63 -22 -101 -22c-41 0 -76 13 -103 39s-40 60 -40 101c0 59 22 105 68 140c46 34 110 50 190 50h113l4 22c0 3 1 6 1 9c1 3 1 7 1 13c0 26 -11 47 -31 62 c-22 15 -52 22 -90 22c-27 0 -54 -3 -81 -10c-28 -7 -56 -17 -86 -31l14 76c30 12 61 20 90 27c29 5 57 8 84 8c59 0 103 -13 132 -38c31 -26 46 -64 46 -113zM400 253h-81c-67 0 -115 -9 -147 -28c-32 -17 -47 -46 -47 -83c0 -27 8 -47 24 -63c16 -15 39 -22 67 -22 c45 0 82 17 116 48c32 32 54 75 64 130'], + 0x1D623: [699,13,579,36,532,'449 307c0 44 -10 78 -29 102c-20 25 -47 37 -81 37c-25 0 -48 -6 -70 -18c-22 -13 -40 -31 -57 -54c-17 -25 -30 -55 -40 -87c-10 -33 -15 -65 -15 -98c0 -42 10 -74 29 -97c19 -24 45 -36 79 -36c26 0 50 6 72 19c21 11 40 29 56 53c17 25 31 53 41 85 c10 34 15 65 15 94zM532 322c0 -49 -9 -96 -26 -141c-17 -46 -43 -85 -75 -121c-21 -23 -45 -42 -73 -54s-56 -19 -86 -19c-33 0 -61 7 -83 22c-23 15 -43 38 -58 67l-14 -76h-81l133 699h81l-52 -272c20 27 45 50 75 64c30 17 61 24 94 24c51 0 90 -17 120 -52 c30 -34 45 -81 45 -141'], + 0x1D624: [515,13,500,46,487,'487 484l-16 -82c-19 15 -40 25 -62 32c-22 8 -44 11 -68 11c-26 0 -50 -4 -74 -14c-22 -10 -42 -23 -58 -39c-25 -27 -45 -57 -59 -92c-13 -35 -20 -71 -20 -109c0 -45 10 -79 33 -101c22 -22 56 -33 101 -33c22 0 46 4 71 10c25 8 51 18 78 31l-15 -81 c-24 -11 -48 -18 -73 -23c-24 -5 -50 -7 -76 -7c-65 0 -115 17 -151 50c-35 34 -52 81 -52 143c0 52 9 101 27 145c19 43 46 83 82 118c24 23 54 42 86 54c34 12 70 18 109 18c23 0 46 -3 68 -7c22 -6 46 -14 69 -24'], + 0x1D625: [699,13,575,46,580,'580 699l-134 -699h-81l16 75c-22 -29 -48 -51 -77 -66s-63 -22 -99 -22c-49 0 -88 17 -116 52c-29 34 -43 81 -43 140c0 50 9 97 26 143c17 44 42 85 75 121c21 23 46 41 74 54c27 12 55 18 85 18c32 0 59 -7 84 -23c24 -15 43 -38 56 -67l53 274h81zM421 315 c0 41 -10 73 -29 97c-18 23 -45 35 -79 35c-26 0 -49 -6 -71 -18s-41 -31 -57 -54c-17 -24 -30 -53 -40 -86s-15 -65 -15 -95c0 -43 10 -77 28 -101c19 -25 46 -37 81 -37c25 0 47 7 70 19c20 12 40 31 56 55c18 25 31 54 41 87c11 32 15 65 15 98'], + 0x1D626: [515,13,562,46,518,'440 327c0 36 -11 65 -31 86c-21 21 -50 32 -86 32c-39 0 -75 -13 -106 -39c-31 -25 -54 -62 -70 -110h290c1 6 1 10 2 15c0 5 1 11 1 16zM518 327c0 -14 0 -29 -2 -45c-2 -15 -5 -33 -8 -50h-377c-1 -11 -2 -20 -3 -27c0 -7 -1 -13 -1 -17c0 -42 13 -74 38 -97 s60 -34 106 -34c35 0 68 4 100 12c30 8 60 20 87 36l-15 -82c-29 -12 -60 -21 -90 -27c-31 -6 -62 -9 -95 -9c-67 0 -120 17 -157 50c-37 34 -55 81 -55 142c0 53 9 102 27 147c19 45 45 84 81 120c22 22 50 39 82 52c31 12 65 17 100 17c56 0 100 -16 133 -51 c33 -34 49 -80 49 -137'], + 0x1D627: [699,0,311,68,437,'437 699l-13 -69h-77c-30 0 -50 -5 -64 -17c-13 -12 -23 -34 -30 -66l-9 -44h134l-12 -64h-133l-84 -439h-81l84 439h-78l12 64h77l7 35c10 59 30 101 58 125s72 36 132 36h77'], + 0x1D628: [515,191,578,32,540,'540 503l-84 -440c-16 -86 -47 -149 -93 -192c-45 -41 -107 -62 -183 -62c-29 0 -55 1 -80 6c-24 5 -46 11 -68 20l15 80c20 -13 41 -23 63 -29c23 -6 46 -9 71 -9c52 0 94 14 127 43c33 28 54 70 65 123l7 38c-22 -27 -48 -46 -78 -61c-31 -14 -62 -20 -97 -20 c-50 0 -89 17 -117 51c-29 34 -43 80 -43 139c0 46 9 92 26 136c17 45 41 83 73 118c20 23 45 41 72 53c28 12 56 18 87 18c33 0 62 -7 86 -24c25 -14 43 -37 55 -66l15 78h81zM418 318c0 42 -9 73 -28 95s-46 33 -80 33c-22 0 -42 -4 -61 -13c-20 -9 -36 -21 -50 -36 c-22 -26 -39 -57 -52 -92c-12 -35 -19 -70 -19 -107c0 -42 9 -74 29 -96c18 -22 46 -33 81 -33c51 0 95 24 129 71c34 48 51 107 51 178'], + 0x1D629: [699,0,580,35,513,'513 378c0 -11 -1 -22 -3 -34c-1 -13 -3 -26 -5 -40l-58 -304h-81l58 301l6 37c1 11 2 19 2 25c0 25 -8 45 -24 59c-15 14 -36 21 -64 21c-44 0 -81 -14 -113 -45c-32 -30 -53 -70 -62 -119l-53 -279h-81l133 699h81l-52 -275c21 29 47 51 78 66c33 17 66 25 101 25 c43 0 77 -12 101 -36s36 -58 36 -101'], + 0x1D62A: [699,0,253,35,249,'249 699l-20 -105h-81l20 105h81zM212 503l-96 -503h-81l96 503h81'], + 0x1D62B: [699,191,238,-113,238,'200 503l-97 -512l-1 -2c-11 -57 -22 -97 -37 -118c-13 -20 -32 -36 -57 -46c-26 -11 -56 -16 -90 -16h-31l13 70h21c32 0 54 6 68 20c13 14 24 44 33 92l97 512h81zM238 699l-20 -105h-81l20 105h81'], + 0x1D62C: [699,0,521,35,554,'554 503l-309 -241l226 -262h-99l-209 246l-47 -246h-81l133 699h81l-77 -407l277 211h105'], + 0x1D62D: [699,0,253,35,249,'249 699l-133 -699h-81l133 699h81'], + 0x1D62E: [515,0,887,35,819,'819 373c0 -11 -1 -22 -2 -34l-5 -35l-58 -304h-81l57 301c2 13 4 24 5 33c1 10 2 17 2 24c0 27 -7 48 -22 63s-36 22 -62 22c-38 0 -74 -14 -105 -45c-31 -30 -50 -70 -59 -117l-54 -281h-81l57 301c3 11 5 22 6 30c0 10 1 19 1 26c0 28 -7 49 -21 63 c-16 16 -35 23 -61 23c-40 0 -75 -14 -107 -45c-30 -30 -50 -70 -59 -117l-54 -281h-81l96 503h81l-15 -78c22 29 48 52 77 67c29 16 61 23 95 23c35 0 65 -9 88 -28c23 -20 36 -46 41 -80c25 35 54 62 86 81c32 18 67 27 103 27c42 0 74 -13 97 -37s35 -60 35 -105'], + 0x1D62F: [515,0,580,35,513,'513 378c0 -11 -1 -22 -3 -34c-1 -13 -3 -26 -5 -40l-58 -304h-81l58 301l6 37c1 11 2 19 2 25c0 25 -8 45 -24 59c-15 14 -36 21 -64 21c-44 0 -81 -14 -113 -44c-30 -29 -51 -70 -61 -120l-54 -279h-81l95 503h81l-16 -79c23 30 50 52 81 67c32 16 65 24 100 24 c43 0 77 -12 101 -36s36 -58 36 -101'], + 0x1D630: [515,13,559,46,514,'514 322c0 -40 -5 -79 -17 -119c-12 -39 -26 -72 -45 -98c-29 -41 -61 -70 -96 -89c-36 -20 -77 -29 -123 -29c-57 0 -103 19 -137 54c-34 37 -50 87 -50 149c0 37 5 74 17 112s27 70 45 95c29 41 62 70 97 90c36 19 77 28 122 28c56 0 101 -17 136 -53 c34 -36 51 -82 51 -140zM430 314c0 43 -10 76 -29 98c-18 22 -46 33 -83 33c-31 0 -58 -7 -81 -22c-25 -15 -45 -37 -64 -66c-14 -22 -24 -48 -33 -75c-6 -29 -10 -58 -10 -89c0 -45 9 -79 28 -102c18 -23 46 -34 84 -34c54 0 99 24 135 73c35 48 53 109 53 184'], + 0x1D631: [515,191,575,-3,530,'446 310c0 44 -9 77 -28 101c-19 23 -46 35 -81 35c-24 0 -47 -6 -68 -19c-23 -12 -42 -30 -59 -54s-29 -53 -40 -86c-10 -34 -15 -67 -15 -100c0 -42 9 -74 28 -97s45 -34 80 -34c26 0 50 7 71 19c22 11 41 30 56 53c17 25 31 53 41 86c10 34 15 66 15 96zM530 323 c0 -50 -9 -97 -26 -143c-17 -45 -43 -84 -75 -120c-22 -24 -46 -42 -73 -54c-28 -12 -57 -19 -86 -19c-35 0 -64 7 -89 22c-23 15 -41 37 -53 66l-50 -266h-81l132 694h81l-14 -76c21 29 48 51 76 66c30 15 62 22 98 22c51 0 90 -16 117 -50c28 -34 43 -81 43 -142'], + 0x1D632: [515,190,579,46,542,'542 502l-132 -692h-81l51 265c-22 -29 -48 -51 -77 -66s-62 -22 -98 -22c-49 0 -88 17 -117 52c-28 34 -42 81 -42 141c0 49 9 95 26 141c17 45 42 86 75 122c21 23 45 41 73 54c28 12 55 18 86 18c36 0 67 -7 90 -22s40 -37 50 -66l15 75h81zM420 313 c0 43 -9 76 -28 98c-18 24 -45 35 -80 35c-26 0 -49 -5 -71 -18c-21 -12 -40 -30 -56 -54c-18 -24 -30 -53 -41 -86c-9 -32 -14 -64 -14 -96c0 -44 9 -78 27 -101s45 -35 79 -35c50 0 94 25 130 76c36 49 54 109 54 181'], + 0x1D633: [515,0,368,35,420,'420 509l-15 -82c-8 4 -18 8 -28 10c-11 3 -23 4 -34 4c-43 0 -81 -17 -114 -50c-31 -34 -53 -78 -64 -134l-49 -257h-81l96 503h81l-15 -78c22 29 47 52 76 67c30 16 62 23 96 23c9 0 17 0 26 -1'], + 0x1D634: [515,13,471,11,451,'451 489l-15 -79c-22 12 -44 21 -68 27s-48 9 -74 9c-42 0 -75 -7 -99 -22c-26 -16 -37 -35 -37 -61c0 -29 28 -52 85 -68c4 -2 7 -2 9 -2l26 -9c54 -15 90 -31 108 -48c18 -16 27 -39 27 -69c0 -53 -20 -96 -62 -129c-41 -34 -95 -51 -163 -51c-26 0 -54 3 -82 7 c-28 6 -60 13 -95 24l16 86c30 -16 59 -28 87 -36c29 -8 56 -12 83 -12c40 0 71 8 97 26c25 17 36 39 36 66c0 29 -32 53 -97 70l-8 2l-28 7c-41 11 -71 26 -90 44s-29 41 -29 69c0 54 20 97 59 128c40 32 94 47 161 47c27 0 53 -2 78 -6c26 -5 51 -11 75 -20'], + 0x1D635: [646,0,356,64,387,'387 503l-13 -64h-161l-52 -273c-2 -11 -3 -19 -4 -26c0 -7 -1 -12 -1 -16c0 -19 5 -33 17 -42c11 -8 29 -13 54 -13h82l-14 -69h-77c-48 0 -84 9 -108 29c-24 19 -35 47 -35 87c0 6 1 15 2 22c0 9 1 17 3 28l52 273h-68l13 64h67l27 143h81l-27 -143h162'], + 0x1D636: [503,13,580,57,536,'536 503l-96 -503h-81l17 79c-23 -29 -51 -52 -82 -68s-64 -24 -100 -24c-43 0 -77 12 -101 36s-36 58 -36 101c0 9 1 20 3 33c1 14 2 28 6 43l58 303h81l-58 -301c-3 -14 -5 -27 -6 -37c-2 -10 -2 -20 -2 -26c0 -26 7 -45 22 -59c16 -15 37 -21 65 -21 c43 0 81 15 113 45c31 30 52 70 62 120l54 279h81'], + 0x1D637: [503,0,538,72,551,'551 503l-280 -503h-109l-90 503h85l72 -428l236 428h86'], + 0x1D638: [503,0,744,85,746,'746 503l-225 -503h-95l-24 417l-188 -417h-96l-33 503h80l21 -405l183 405h94l27 -405l175 405h81'], + 0x1D639: [503,0,528,-26,537,'537 503l-226 -246l139 -257h-93l-104 200l-181 -200h-98l242 265l-129 238h93l95 -182l164 182h98'], + 0x1D63A: [503,191,528,-25,540,'540 503l-319 -550c-37 -64 -69 -105 -92 -120c-24 -16 -54 -24 -90 -24h-64l13 69h47c23 0 42 6 58 19c16 12 33 37 53 74l25 47l-109 485h86l82 -385l226 385h84'], + 0x1D63B: [503,0,469,-3,488,'488 503l-14 -75l-371 -362h306l-12 -66h-400l14 75l371 362h-291l13 66h384'], + 0x1D63C: [671,0,697,-65,615,'615 0h-161l-19 122h-262l-64 -122h-174l371 671h193zM414 244l-40 258l-137 -258h177'], + 0x1D63D: [671,0,694,21,631,'458 499c0 17 -6 31 -18 40c-11 9 -28 14 -51 14h-94l-27 -142h94c31 0 53 8 71 23c17 16 25 37 25 65zM432 227c0 22 -7 40 -21 50c-15 11 -36 16 -66 16h-100l-33 -175h100c38 0 68 9 89 28c20 19 31 45 31 81zM631 527c0 -40 -11 -77 -32 -107 c-23 -32 -52 -52 -87 -61c29 -8 52 -24 67 -46s23 -50 23 -83c0 -73 -26 -129 -79 -169c-52 -41 -126 -61 -221 -61h-281l128 671h254c77 0 135 -12 172 -35c38 -23 56 -60 56 -109'], + 0x1D63E: [683,13,664,36,655,'655 633l-27 -139c-28 22 -57 38 -84 48c-29 11 -60 16 -92 16c-68 0 -124 -27 -170 -81c-46 -53 -69 -119 -69 -199c0 -52 15 -92 43 -122c27 -29 66 -44 116 -44c29 0 61 6 94 17s70 27 112 51l-29 -149c-41 -14 -79 -25 -116 -33c-38 -7 -73 -11 -106 -11 c-89 0 -159 25 -212 74s-79 115 -79 197c0 53 8 104 25 150c17 48 42 92 74 131c38 46 85 82 139 107s112 37 174 37c34 0 69 -4 103 -12c34 -9 69 -21 104 -38'], + 0x1D63F: [671,0,753,21,709,'532 382c0 52 -15 92 -45 118s-75 40 -134 40h-59l-79 -409h61c79 0 141 23 187 68s69 106 69 183zM709 397c0 -60 -12 -117 -36 -172c-25 -53 -59 -98 -103 -135c-39 -33 -84 -55 -135 -70c-51 -14 -130 -20 -236 -20h-178l128 671h178c85 0 148 -5 191 -16 c43 -10 78 -28 106 -51c29 -25 49 -54 64 -89c14 -35 21 -74 21 -118'], + 0x1D640: [671,0,618,21,605,'605 671l-25 -131h-287l-24 -125h270l-25 -131h-270l-29 -153h296l-24 -131h-466l128 671h456'], + 0x1D641: [671,0,618,21,605,'605 671l-25 -131h-287l-24 -125h270l-25 -131h-270l-54 -284h-169l128 671h456'], + 0x1D642: [683,13,746,36,704,'704 633l-26 -139c-36 21 -71 38 -105 48s-68 16 -103 16c-76 0 -137 -26 -185 -78c-47 -51 -71 -118 -71 -198c0 -54 14 -95 42 -126c27 -29 66 -44 117 -44c16 0 33 1 49 4c16 2 32 5 50 10l25 131h-104l22 116h263l-62 -323c-42 -21 -87 -37 -133 -47 c-46 -11 -95 -16 -147 -16c-93 0 -167 24 -220 72c-53 49 -80 115 -80 199c0 54 8 104 25 151c17 48 42 91 75 131c40 48 88 84 143 108c55 23 118 35 188 35c40 0 79 -4 119 -12c39 -10 79 -21 118 -38'], + 0x1D643: [671,0,756,21,736,'736 671l-127 -671h-170l54 284h-249l-54 -284h-169l128 671h169l-49 -256h250l48 256h169'], + 0x1D644: [671,0,339,21,318,'318 671l-128 -671h-169l128 671h169'], + 0x1D645: [671,184,320,-166,299,'299 671l-115 -606c-17 -87 -50 -151 -100 -190c-49 -40 -121 -59 -216 -59h-34l25 131h26c35 0 63 10 86 30c22 20 37 50 44 88l115 606h169'], + 0x1D646: [671,0,692,21,755,'755 671l-376 -326l284 -345h-199l-221 280l-53 -280h-169l128 671h169l-46 -241l279 241h204'], + 0x1D647: [671,0,582,21,511,'511 131l-24 -131h-466l128 671h169l-103 -540h296'], + 0x1D648: [671,0,900,21,879,'879 671l-128 -671h-160l93 495l-227 -366h-91l-91 366l-94 -495h-160l128 671h208l84 -356l222 356h216'], + 0x1D649: [671,0,756,21,736,'736 671l-127 -671h-189l-151 465l-88 -465h-160l128 671h189l150 -465l88 465h160'], + 0x1D64A: [683,13,772,36,736,'557 396c0 52 -11 93 -35 120c-23 28 -57 42 -101 42c-58 0 -108 -27 -147 -81c-40 -54 -60 -121 -60 -202c0 -51 12 -92 34 -120c24 -28 56 -43 98 -43c33 0 63 8 89 22c27 15 49 36 67 65c18 27 32 58 42 92c9 34 13 69 13 105zM736 414c0 -54 -8 -106 -24 -155 c-16 -48 -40 -92 -71 -130c-38 -48 -83 -83 -135 -107c-52 -23 -112 -35 -180 -35c-88 0 -157 25 -210 74c-54 49 -80 114 -80 195c0 54 8 106 24 154c16 49 40 92 71 132c38 47 82 83 134 106c53 23 113 35 180 35c88 0 158 -25 212 -75c52 -50 79 -114 79 -194'], + 0x1D64B: [671,0,662,21,649,'649 489c0 -35 -6 -69 -19 -101c-12 -31 -31 -59 -56 -83c-26 -25 -56 -44 -92 -56c-36 -11 -82 -16 -136 -16h-112l-44 -233h-169l128 671h281c69 0 122 -17 161 -48c39 -32 58 -77 58 -134zM475 470c0 25 -7 43 -22 56s-37 20 -66 20h-92l-36 -188h93c41 0 70 9 92 28 c21 20 31 48 31 84'], + 0x1D64C: [683,134,772,36,736,'736 414c0 -94 -22 -177 -67 -247c-44 -71 -107 -123 -187 -155l101 -146h-161l-85 122c-2 -1 -6 -1 -9 -1h-16c-33 0 -65 5 -93 14c-30 9 -56 23 -80 41c-33 24 -58 56 -76 92c-18 38 -27 79 -27 122c0 54 8 106 24 154c17 50 40 93 71 132c38 48 83 83 134 106 c53 23 113 35 180 35c88 0 158 -25 212 -75c52 -50 79 -114 79 -194zM557 396c0 52 -11 93 -35 120c-23 28 -57 42 -101 42c-58 0 -108 -27 -147 -81c-40 -54 -60 -121 -60 -202c0 -51 12 -92 34 -120c24 -28 56 -43 98 -43c33 0 63 8 89 22c27 15 49 36 67 65 c18 27 32 58 42 92c9 34 13 69 13 105'], + 0x1D64D: [671,0,704,21,619,'449 481c0 22 -7 39 -19 49c-15 10 -36 16 -65 16h-70l-34 -172h71c39 0 68 9 88 27c19 19 29 44 29 80zM619 508c0 -54 -15 -100 -45 -134c-28 -35 -68 -56 -118 -60c22 -6 41 -17 56 -36c16 -19 29 -48 41 -88l56 -190h-169l-49 167c-10 33 -22 56 -36 69 c-15 11 -35 18 -62 18h-54l-49 -254h-169l128 671h250c72 0 127 -14 164 -42c38 -27 56 -68 56 -121'], + 0x1D64E: [683,13,655,15,600,'600 650l-27 -142c-33 16 -66 28 -98 38c-33 8 -64 12 -95 12c-42 0 -75 -7 -98 -21c-24 -14 -36 -32 -36 -56c0 -15 6 -27 16 -36c10 -8 32 -16 64 -25l70 -17c57 -15 100 -37 127 -65s41 -65 41 -110c0 -73 -27 -131 -81 -175s-127 -66 -218 -66c-42 0 -84 4 -127 12 c-42 8 -83 20 -123 36l27 146c39 -23 76 -40 113 -51c37 -12 73 -18 109 -18c39 0 70 9 94 24c25 17 37 37 37 63c0 16 -6 29 -16 38c-11 10 -36 19 -72 28l-69 17c-50 13 -88 34 -113 62s-38 64 -38 108c0 70 26 126 79 168c51 41 123 63 211 63c36 0 72 -3 109 -9 c37 -5 75 -13 114 -24'], + 0x1D64F: [671,0,612,48,678,'678 671l-25 -131h-218l-103 -540h-169l103 540h-218l25 131h605'], + 0x1D650: [671,13,740,68,719,'719 671l-77 -402c-19 -99 -55 -171 -108 -215c-54 -45 -129 -67 -228 -67c-78 0 -137 17 -178 51c-40 34 -60 83 -60 148c0 11 1 23 2 36l7 47l76 402h170l-77 -402c-3 -14 -4 -27 -6 -38c-1 -11 -2 -20 -2 -30c0 -29 8 -50 23 -66c16 -14 38 -21 69 -21 c40 0 72 12 94 35c22 24 38 64 49 120l76 402h170'], + 0x1D651: [671,0,697,76,764,'764 671l-371 -671h-202l-115 671h161l80 -502l272 502h175'], + 0x1D652: [671,0,999,107,1039,'1039 671l-282 -671h-192l-22 510l-212 -510h-196l-28 671h157l19 -488l206 488h162l21 -488l199 488h168'], + 0x1D653: [671,0,684,-51,726,'726 671l-285 -332l161 -339h-172l-107 224l-191 -224h-183l295 344l-156 327h173l101 -211l180 211h184'], + 0x1D654: [671,0,649,63,734,'734 671l-324 -391l-53 -280h-169l53 280l-178 391h169l112 -249l195 249h195'], + 0x1D655: [671,0,648,-26,663,'663 671l-20 -107l-426 -433h354l-26 -131h-571l20 107l426 433h-334l26 131h551'], + 0x1D656: [515,13,615,17,552,'373 226h-75c-39 0 -70 -6 -89 -18c-20 -13 -30 -31 -30 -55c0 -19 5 -33 18 -44c12 -10 28 -15 49 -15c32 0 59 10 81 30c21 20 36 48 43 84zM552 360c0 -10 -1 -21 -3 -34c-1 -12 -3 -25 -6 -39l-54 -287h-158l14 75c-27 -31 -54 -53 -82 -67c-29 -14 -60 -21 -94 -21 c-47 0 -84 12 -112 37c-27 25 -40 58 -40 100c0 65 24 113 73 147c48 34 118 51 210 51h92l2 13c1 4 1 7 1 9c1 1 1 3 1 5c0 19 -9 35 -28 45c-18 9 -45 14 -81 14c-32 0 -64 -3 -95 -10c-30 -7 -59 -17 -88 -31l24 122c33 10 66 15 100 20c36 4 71 6 108 6 c72 0 126 -13 162 -38c36 -26 54 -65 54 -117'], + 0x1D657: [699,13,650,31,612,'449 305c0 30 -7 54 -20 69c-14 16 -34 24 -61 24c-40 0 -73 -19 -99 -57s-38 -88 -38 -149c0 -27 7 -49 21 -64c15 -17 35 -24 61 -24c39 0 72 18 98 56s38 86 38 145zM612 315c0 -39 -6 -77 -17 -114c-11 -35 -28 -69 -48 -99c-27 -38 -57 -66 -90 -85 c-35 -20 -71 -30 -108 -30c-35 0 -63 7 -87 21c-23 13 -43 35 -59 65l-15 -73h-157l132 699h159l-52 -269c25 29 50 50 76 64c26 15 55 21 86 21c56 0 99 -17 132 -54c32 -36 48 -85 48 -146'], + 0x1D658: [515,13,538,37,527,'527 488l-26 -132c-20 15 -41 26 -62 33c-20 8 -40 11 -60 11c-51 0 -94 -17 -126 -52c-32 -36 -49 -80 -49 -135c0 -35 10 -63 31 -81c20 -21 49 -30 85 -30c25 0 49 4 73 11c24 8 46 19 68 33l-24 -131c-27 -9 -53 -16 -79 -21c-27 -5 -53 -7 -80 -7 c-77 0 -137 18 -179 53c-40 36 -62 86 -62 151c0 41 8 81 22 120c17 39 38 73 67 104c32 34 68 59 110 75c41 17 89 25 143 25c25 0 49 -2 75 -6c24 -6 48 -12 73 -21'], + 0x1D659: [699,13,646,36,655,'417 310c0 28 -8 50 -21 65c-15 16 -35 23 -60 23c-40 0 -72 -18 -98 -56c-27 -37 -39 -85 -39 -144c0 -31 7 -54 21 -70c13 -16 34 -24 60 -24c40 0 74 18 99 57c25 38 38 87 38 149zM655 699l-133 -699h-158l14 73c-24 -30 -50 -52 -76 -65c-26 -14 -55 -21 -86 -21 c-56 0 -100 18 -131 53c-33 36 -49 86 -49 148c0 38 5 76 17 113c11 36 27 69 49 99c27 38 56 66 90 86c34 19 70 29 108 29c34 0 62 -6 86 -21c23 -14 43 -35 59 -64l52 269h158'], + 0x1D65A: [515,13,618,36,580,'580 315c0 -12 -1 -25 -2 -38c-2 -14 -5 -29 -8 -44l-6 -26h-368c0 -2 0 -5 -1 -7v-9c0 -33 10 -57 29 -73s48 -24 86 -24c33 0 69 4 105 15c37 11 75 25 116 46l-24 -126c-38 -13 -77 -24 -115 -32c-37 -6 -76 -10 -116 -10c-76 0 -136 18 -178 54 c-40 36 -62 88 -62 154c0 38 6 75 21 111c12 37 32 69 57 100c31 36 67 63 108 82c43 18 89 27 141 27c66 0 118 -17 158 -54c39 -37 59 -85 59 -146zM424 330c0 24 -7 44 -22 57c-13 14 -32 21 -56 21c-31 0 -58 -8 -79 -25c-21 -18 -38 -43 -49 -77h203c1 4 2 9 2 12 c1 5 1 8 1 12'], + 0x1D65B: [699,0,386,50,491,'491 699l-21 -106h-86c-23 0 -38 -3 -49 -12c-10 -8 -16 -23 -20 -43l-8 -35h134l-22 -115h-133l-74 -388h-158l73 388h-77l22 115h77l7 35c11 56 33 97 68 123c34 25 82 38 146 38h121'], + 0x1D65C: [514,199,649,20,616,'616 503l-83 -437c-17 -90 -53 -157 -109 -200s-133 -65 -232 -65c-31 0 -60 3 -88 8c-28 4 -56 12 -84 22l23 125c26 -16 50 -29 75 -36c25 -8 50 -12 77 -12c52 0 91 11 120 34c27 23 46 59 56 109l7 35c-25 -30 -51 -51 -76 -66c-26 -14 -55 -20 -86 -20 c-56 0 -100 18 -132 55c-33 37 -49 87 -49 150c0 34 6 68 17 102s27 66 49 96c26 37 55 63 88 83c34 19 70 28 108 28c35 0 64 -6 87 -20c24 -15 44 -36 60 -65l13 74h159zM415 303c0 31 -7 55 -21 71c-13 16 -34 24 -60 24c-39 0 -70 -17 -96 -53s-39 -80 -39 -134 c0 -31 7 -55 21 -70c13 -16 34 -24 60 -24c39 0 70 17 96 53s39 79 39 133'], + 0x1D65D: [699,0,649,31,592,'592 376c0 -9 -1 -20 -3 -31c-1 -12 -3 -25 -5 -39l-59 -306h-157l49 262c4 18 6 31 8 43s3 22 3 29c0 19 -6 34 -15 44c-11 10 -26 16 -45 16c-32 0 -60 -13 -84 -39c-23 -26 -39 -62 -48 -108l-48 -247h-157l132 699h159l-52 -269c29 29 58 50 88 64c29 14 59 21 91 21 c45 0 81 -12 106 -36c24 -25 37 -59 37 -103'], + 0x1D65E: [699,0,310,31,322,'285 503l-97 -503h-157l95 503h159zM322 699l-26 -131h-158l25 131h159'], + 0x1D65F: [699,199,294,-128,306,'269 503l-95 -494c-13 -71 -38 -123 -75 -156c-37 -34 -87 -52 -149 -52h-78l20 106h28c29 0 51 7 64 20c14 14 25 41 32 82l94 494h159zM306 699l-25 -131h-159l25 131h159'], + 0x1D660: [699,0,596,31,647,'647 503l-286 -233l208 -270h-180l-159 217l-42 -217h-157l132 699h159l-72 -379l212 183h185'], + 0x1D661: [699,0,310,31,322,'322 699l-134 -699h-157l132 699h159'], + 0x1D662: [515,0,946,31,889,'889 376c0 -9 -1 -19 -3 -30c-1 -12 -3 -25 -5 -40l-59 -306h-158l49 262l2 7c7 37 11 61 11 71c0 17 -5 30 -14 40c-10 9 -21 14 -38 14c-30 0 -55 -12 -76 -38s-36 -62 -45 -109l-48 -247h-158l50 262l9 52c2 11 3 20 3 26c0 17 -5 30 -14 40c-9 9 -21 14 -37 14 c-29 0 -55 -13 -76 -39c-22 -27 -38 -62 -46 -108l-48 -247h-157l95 503h159l-15 -73c25 28 52 49 79 64c28 14 56 21 87 21c34 0 63 -9 87 -26c25 -18 40 -41 44 -69c25 31 53 54 83 70c31 17 63 25 96 25c45 0 80 -12 104 -37c26 -24 39 -58 39 -102'], + 0x1D663: [515,0,649,31,592,'592 376c0 -9 -1 -20 -3 -31c-1 -12 -3 -25 -5 -39l-59 -306h-157l49 262c4 18 6 31 8 43s3 22 3 29c0 19 -6 34 -15 44c-11 10 -26 16 -45 16c-32 0 -60 -13 -84 -39c-23 -26 -39 -62 -48 -108l-48 -247h-157l95 503h159l-15 -73c29 29 58 50 88 64c29 14 59 21 91 21 c45 0 81 -12 106 -36c24 -25 37 -59 37 -103'], + 0x1D664: [515,13,625,36,589,'425 304c0 31 -7 55 -22 71c-14 17 -35 25 -62 25c-40 0 -75 -18 -101 -56s-39 -86 -39 -144c0 -33 7 -56 21 -73c15 -17 35 -25 62 -25c41 0 75 19 101 57s40 86 40 145zM589 303c0 -38 -6 -75 -19 -111c-14 -36 -33 -69 -58 -98c-30 -36 -65 -62 -106 -80 s-86 -27 -136 -27c-73 0 -130 19 -172 57c-40 38 -62 90 -62 156c0 37 6 74 21 110c13 36 32 69 57 99c30 34 64 61 105 80c41 17 85 26 135 26c73 0 131 -18 172 -57c42 -38 63 -90 63 -155'], + 0x1D665: [515,191,646,-10,608,'608 315c0 -39 -6 -77 -17 -114c-11 -35 -28 -69 -48 -99c-27 -38 -57 -66 -90 -85c-35 -20 -71 -30 -108 -30c-35 0 -63 7 -87 21c-23 13 -43 35 -59 65l-51 -264h-158l132 694h159l-15 -73c25 29 50 50 76 64c26 15 55 21 86 21c56 0 99 -17 132 -54 c32 -36 48 -85 48 -146zM445 305c0 30 -7 54 -20 69c-14 16 -35 24 -61 24c-40 0 -73 -19 -99 -57s-38 -88 -38 -149c0 -27 7 -49 21 -64c15 -17 34 -24 61 -24c39 0 72 18 98 56s38 86 38 145'], + 0x1D666: [515,191,650,36,617,'617 503l-132 -694h-158l50 264c-23 -30 -49 -52 -75 -65c-26 -14 -55 -21 -86 -21c-56 0 -100 18 -131 53c-33 36 -49 86 -49 148c0 38 5 76 17 113c11 36 27 69 49 99c27 38 56 66 90 86c34 19 70 29 108 29c34 0 62 -6 86 -21c23 -14 43 -35 59 -64l14 73h158z M417 310c0 28 -8 50 -21 65c-15 16 -35 23 -60 23c-40 0 -72 -18 -98 -56c-27 -37 -39 -85 -39 -144c0 -31 7 -54 21 -70c13 -16 34 -24 60 -24c40 0 74 18 99 57c25 38 38 87 38 149'], + 0x1D667: [515,0,442,31,494,'494 512l-28 -146c-11 7 -23 11 -36 15c-14 3 -27 4 -43 4c-40 0 -73 -12 -100 -39s-45 -64 -54 -114l-45 -232h-157l95 503h159l-17 -86c20 32 46 56 78 72c31 18 66 26 103 26c6 0 12 0 19 -1c8 0 16 -1 26 -2'], + 0x1D668: [515,13,540,10,505,'505 488l-23 -126c-31 15 -62 27 -92 35c-31 7 -60 11 -87 11c-31 0 -55 -4 -72 -11c-17 -10 -25 -21 -25 -36c0 -10 5 -16 15 -22c9 -5 27 -11 54 -17l29 -6c64 -13 108 -31 133 -53c27 -21 39 -51 39 -90c0 -58 -22 -104 -67 -137c-45 -32 -108 -49 -188 -49 c-34 0 -69 3 -104 8s-71 13 -107 24l23 126c29 -16 60 -30 92 -38c32 -9 65 -13 99 -13c33 0 58 4 75 12s25 20 25 36c0 11 -4 19 -14 25c-9 5 -28 11 -58 18l-29 5c-56 12 -96 30 -120 54c-25 23 -36 55 -36 96c0 57 20 100 63 130c40 30 100 45 177 45c33 0 67 -2 99 -6 c33 -6 66 -12 99 -21'], + 0x1D669: [646,0,431,43,462,'462 503l-22 -115h-161l-41 -213c-1 -5 -2 -8 -2 -12v-9c0 -14 4 -24 12 -30c10 -6 24 -9 46 -9h81l-22 -115h-133c-47 0 -83 10 -108 30c-25 21 -38 50 -38 89c0 8 1 17 2 26c1 10 2 20 4 30l40 213h-77l22 115h78l27 143h158l-27 -143h161'], + 0x1D66A: [503,13,649,60,619,'619 503l-96 -503h-158l14 74c-27 -30 -54 -51 -84 -66c-30 -14 -61 -21 -94 -21c-45 0 -80 12 -104 36c-24 25 -37 59 -37 103c0 10 1 22 2 33c1 12 2 24 5 37l58 307h157l-49 -262c-4 -17 -7 -31 -8 -43c-2 -12 -3 -22 -3 -29c0 -18 5 -34 15 -44c11 -10 25 -16 44 -16 c33 0 62 13 84 39c23 26 40 62 49 108l47 247h158'], + 0x1D66B: [503,0,589,63,616,'616 503l-288 -503h-167l-98 503h145l64 -351l185 351h159'], + 0x1D66C: [503,0,839,87,843,'843 503l-225 -503h-167l-17 346l-150 -346h-163l-34 503h145l17 -346l148 346h126l18 -345l147 345h155'], + 0x1D66D: [503,0,574,-41,600,'600 503l-224 -244l136 -259h-163l-78 159l-141 -159h-171l236 258l-131 245h164l73 -149l128 149h171'], + 0x1D66E: [503,199,582,0,618,'618 503l-311 -551c-35 -61 -68 -102 -97 -122c-29 -19 -68 -29 -115 -29h-95l16 106h50c26 0 46 5 60 13c14 9 27 25 38 47l14 27l-119 509h149l67 -348l175 348h168'], + 0x1D66F: [503,0,522,-9,526,'526 503l-21 -112l-307 -276h255l-22 -115h-440l21 112l307 276h-243l21 115h429'], + 0x1D756: [671,0,697,5,693,'693 0h-171l-41 122h-265l-41 -122h-170l243 671h202zM439 247l-90 266l-90 -266h180'], + 0x1D757: [671,0,702,92,632,'436 482c0 23 -7 41 -21 53c-13 12 -33 18 -60 18h-94v-142h94c27 0 47 6 60 18c14 12 21 30 21 53zM463 206c0 30 -8 51 -25 65c-18 15 -44 22 -78 22h-99v-175h99c34 0 60 7 78 22c16 15 25 37 25 66zM632 192c0 -64 -22 -113 -64 -144c-43 -32 -108 -48 -195 -48h-281 v671h254c91 0 157 -14 198 -43c41 -28 61 -72 61 -135c0 -33 -7 -61 -23 -84c-14 -22 -36 -39 -64 -50c36 -11 64 -31 84 -60s30 -64 30 -107'], + 0x1D758: [671,0,585,92,558,'558 540h-297v-540h-169v671h466v-131'], + 0x1D759: [671,0,697,5,693,'693 0h-688l243 671h202zM477 131l-128 382l-129 -382h257'], + 0x1D75A: [671,0,631,92,558,'558 0h-466v671h456v-131h-287v-125h270v-131h-270v-153h297v-131'], + 0x1D75B: [671,0,661,45,616,'616 0h-571v105l352 435h-342v131h552v-105l-352 -435h361v-131'], + 0x1D75C: [671,0,771,92,680,'680 0h-170v284h-249v-284h-169v671h169v-256h249v256h170v-671'], + 0x1D75D: [683,13,775,50,725,'550 335c0 70 -14 125 -42 164c-29 39 -69 59 -121 59c-51 0 -91 -20 -119 -59c-29 -39 -43 -94 -43 -164c0 -71 14 -125 43 -164c28 -39 68 -59 119 -59c52 0 92 20 121 59c28 39 42 93 42 164zM725 335c0 -109 -30 -194 -90 -256c-59 -61 -142 -92 -248 -92 c-105 0 -188 31 -248 92c-59 62 -89 147 -89 256c0 108 30 194 89 256c60 60 143 92 248 92c106 0 189 -32 248 -92c60 -62 90 -148 90 -256zM500 284h-225v131h225v-131'], + 0x1D75E: [671,0,353,92,261,'261 0h-169v671h169v-671'], + 0x1D75F: [671,0,703,92,734,'734 0h-212l-261 264v-264h-169v671h169v-245l244 245h196l-316 -318'], + 0x1D760: [671,0,697,5,693,'693 0h-171l-173 513l-174 -513h-170l243 671h202'], + 0x1D761: [671,0,914,92,822,'822 0h-160v490l-152 -361h-107l-151 361v-490h-160v671h215l149 -359l151 359h215v-671'], + 0x1D762: [671,0,771,92,680,'680 0h-189l-239 460v-460h-160v671h189l238 -460v460h161v-671'], + 0x1D763: [671,0,586,98,503,'457 284h-313v131h313v-131zM503 540h-405v131h405v-131zM503 0h-405v131h405v-131'], + 0x1D764: [683,13,775,50,725,'550 335c0 70 -14 125 -42 164c-29 39 -69 59 -121 59c-51 0 -91 -20 -119 -59c-29 -39 -43 -94 -43 -164c0 -71 14 -125 43 -164c28 -39 68 -59 119 -59c52 0 92 20 121 59c28 39 42 93 42 164zM725 335c0 -109 -30 -194 -90 -256c-59 -61 -142 -92 -248 -92 c-105 0 -188 31 -248 92c-59 62 -89 147 -89 256c0 108 30 194 89 256c60 60 143 92 248 92c106 0 189 -32 248 -92c60 -62 90 -148 90 -256'], + 0x1D765: [671,0,771,92,680,'680 0h-170v540h-249v-540h-169v671h588v-671'], + 0x1D766: [671,0,672,92,632,'632 452c0 -70 -23 -124 -68 -163c-44 -38 -108 -56 -191 -56h-112v-233h-169v671h281c83 0 147 -20 191 -57c45 -38 68 -92 68 -162zM457 452c0 30 -9 53 -27 69s-43 25 -75 25h-94v-188h94c32 0 57 8 75 25c18 16 27 38 27 69'], + 0x1D767: [683,13,775,50,725,'725 335c0 -109 -30 -194 -90 -256c-59 -61 -142 -92 -248 -92c-105 0 -188 31 -248 92c-59 62 -89 147 -89 256c0 108 30 194 89 256c60 60 143 92 248 92c106 0 189 -32 248 -92c60 -62 90 -148 90 -256zM543 415c-7 33 -19 61 -35 84c-29 39 -69 59 -121 59 c-51 0 -91 -20 -119 -59c-17 -23 -29 -51 -36 -84h311zM547 284h-319c5 -47 18 -84 40 -113c28 -39 68 -59 119 -59c52 0 92 20 121 59c21 29 34 66 39 113'], + 0x1D768: [671,0,631,92,558,'558 0h-466v144l209 213l-209 176v138h456v-131h-295l217 -181l-224 -228h312v-131'], + 0x1D769: [671,0,615,5,610,'610 540h-218v-540h-169v540h-218v131h605v-131'], + 0x1D76A: [671,0,650,-10,660,'660 671l-251 -389v-282h-169v282l-250 389h185l150 -240l149 240h186'], + 0x1D76B: [671,0,775,50,725,'303 208v254c-14 -6 -25 -13 -35 -22c-29 -25 -43 -60 -43 -105c0 -47 14 -81 43 -105c10 -9 21 -17 35 -22zM550 335c0 44 -14 79 -42 105c-10 9 -22 16 -36 22v-254c14 5 25 13 36 22c28 28 42 62 42 105zM725 335c0 -84 -30 -149 -90 -197c-42 -33 -97 -55 -163 -65 v-73h-169v73c-66 9 -121 31 -164 65c-59 48 -89 113 -89 197s30 149 89 197c43 34 98 56 164 65v74h169v-74c66 -9 121 -31 163 -65c60 -48 90 -113 90 -197'], + 0x1D76C: [671,0,697,19,678,'678 0h-177l-153 229l-152 -229h-177l228 342l-219 329h176l144 -217l143 217h178l-219 -329'], + 0x1D76D: [671,0,775,56,721,'721 487c0 -106 -28 -191 -83 -253c-55 -63 -110 -95 -165 -95v-139h-169v139c-55 0 -109 32 -164 94c-56 62 -84 147 -84 254v184h169v-158c0 -72 6 -121 19 -145c24 -45 44 -68 60 -68v371h169v-371c16 0 36 23 60 68c13 24 19 73 19 145v158h169v-184'], + 0x1D76E: [683,0,770,27,743,'743 0h-301v140c11 6 21 14 30 23c50 52 75 116 75 191c0 58 -13 106 -42 145s-69 59 -120 59s-92 -20 -120 -59s-43 -87 -43 -145c0 -75 25 -139 77 -191c8 -9 18 -17 29 -23v-140h-301v131h135c-77 47 -114 123 -114 228c0 93 29 170 89 232c60 60 143 92 248 92 s187 -32 248 -92c60 -62 90 -139 90 -232c0 -105 -39 -181 -115 -228h135v-131'], + 0x1D76F: [671,0,697,5,693,'693 671l-243 -671h-202l-243 671h688zM478 540h-257l128 -382'], + 0x1D770: [514,11,627,48,585,'585 0h-45c-47 0 -82 13 -105 38c-5 5 -9 10 -10 13c-14 -19 -28 -34 -42 -45c-14 -12 -58 -18 -131 -17c-72 0 -124 23 -155 68c-33 46 -49 112 -49 201c0 88 17 150 50 185c42 47 103 70 183 71c68 1 117 -18 147 -60l15 49h137l-86 -259l13 -69c8 -49 22 -74 42 -74 h36v-101zM367 265l-13 73c-9 46 -32 68 -70 69c-20 0 -38 -13 -54 -40c-17 -25 -25 -64 -25 -117c0 -52 8 -91 22 -115c14 -23 33 -36 55 -36c22 -1 41 22 55 68'], + 0x1D771: [711,191,656,84,612,'445 183c0 43 -17 77 -51 103c-19 13 -54 19 -106 20v103c48 8 75 17 82 28c19 26 28 48 28 66c0 26 -5 47 -17 65c-12 17 -31 25 -58 25c-32 0 -53 -12 -64 -37c-12 -26 -18 -62 -18 -110v-195c0 -48 9 -84 27 -109c18 -26 44 -38 78 -38c38 0 63 10 77 30 c16 21 22 37 22 49zM612 185c0 -53 -19 -99 -55 -139c-37 -40 -88 -59 -154 -59c-65 0 -119 29 -162 86v-264h-157v629c0 84 20 147 60 190c34 35 67 58 99 68c33 11 61 15 83 15c23 0 36 -1 39 -1c60 -9 107 -34 141 -72c23 -26 35 -67 35 -121c0 -27 -8 -53 -24 -78 c-20 -31 -44 -47 -74 -50c44 -12 79 -30 106 -55c42 -39 63 -88 63 -149'], + 0x1D772: [503,191,616,15,602,'602 503l-202 -503v-191h-157v191l-130 338c-10 26 -19 42 -28 47c-16 8 -29 12 -40 12h-30v106h72c20 0 52 -11 96 -33c20 -10 43 -49 67 -118l71 -194l122 345h159'], + 0x1D773: [707,13,627,43,585,'585 249c0 -81 -25 -145 -73 -192s-114 -70 -197 -70c-85 0 -151 23 -199 70c-49 47 -73 112 -73 194c0 63 24 118 73 166c14 14 31 27 50 37c-44 23 -65 59 -65 106c0 98 77 147 232 147c78 0 137 -11 179 -33v-106c-35 21 -100 31 -194 31c-49 0 -74 -15 -74 -43 c0 -29 34 -48 102 -58c69 -10 123 -32 164 -67c50 -40 75 -101 75 -182zM421 249c0 44 -10 78 -31 101c-20 23 -46 35 -74 38c-14 2 -27 4 -39 8c-15 -8 -30 -19 -42 -35c-19 -27 -29 -63 -29 -111c0 -47 10 -83 29 -109c19 -27 46 -40 79 -40c32 0 59 14 78 40 c20 27 29 63 29 108'], + 0x1D774: [515,13,512,54,449,'449 12c-26 -8 -53 -15 -80 -18c-27 -5 -54 -7 -81 -7c-77 0 -134 13 -175 39c-39 26 -59 65 -59 117c0 34 9 61 27 82c19 22 46 37 81 46c-32 8 -55 21 -71 40s-25 43 -25 73c0 45 17 78 51 99s85 32 153 32c25 0 51 -2 77 -5c26 -4 53 -10 80 -16v-108 c-18 9 -39 15 -64 20c-25 4 -46 7 -63 7c-28 0 -50 -5 -66 -16s-24 -23 -24 -35c0 -13 8 -24 24 -35c15 -9 40 -13 74 -13h54v-101h-52c-37 0 -65 -5 -83 -17c-20 -11 -30 -26 -30 -44s10 -32 29 -44s46 -18 79 -18c23 0 47 4 72 9c27 7 51 16 72 26v-113'], + 0x1D775: [699,191,540,43,492,'492 -42c0 -47 -13 -84 -39 -110s-63 -39 -111 -39v101c20 0 34 4 40 13c7 9 11 19 11 30s-4 22 -13 32s-21 15 -38 15c-199 0 -299 75 -299 226c0 144 94 263 280 358h-271v115h432v-115c-188 -88 -283 -208 -284 -359c0 -71 54 -108 159 -110c36 -1 67 -16 93 -44 c27 -29 40 -66 40 -113'], + 0x1D776: [515,191,656,84,579,'579 -191h-158v241v185c0 43 -1 72 -3 90c-2 16 -6 28 -10 36c-6 10 -14 18 -25 24s-23 9 -36 9c-34 0 -59 -13 -78 -39s-28 -62 -28 -108v-247h-157v503h157v-73c24 29 49 50 76 64c27 15 56 21 88 21c57 0 100 -17 130 -53c29 -36 44 -88 44 -156v-497'], + 0x1D777: [707,10,627,43,585,'419 299h-211c2 -61 10 -104 27 -129c27 -44 52 -65 78 -66c26 0 53 22 80 66c15 26 24 69 26 129zM419 414c-3 49 -12 87 -27 116c-22 44 -48 65 -78 65c-31 0 -57 -21 -79 -65c-15 -30 -24 -68 -26 -116h210zM585 345c0 -109 -22 -196 -64 -259 c-42 -65 -112 -96 -207 -96c-96 0 -165 31 -208 96c-42 63 -63 150 -63 259c0 110 21 198 61 263c42 65 112 99 210 99s167 -34 209 -99c41 -65 62 -153 62 -263'], + 0x1D778: [503,17,362,78,321,'321 -6c-18 -8 -59 -11 -121 -11c-19 0 -39 2 -58 8c-30 9 -50 27 -58 55c-3 13 -6 32 -6 59v398h157v-340c0 -39 4 -63 11 -72c7 -10 19 -15 36 -15c16 0 29 0 39 2v-84'], + 0x1D779: [503,0,653,84,598,'598 0h-187l-143 217l-27 -24v-193h-157v503h157v-144l156 144h175l-189 -177'], + 0x1D77A: [699,0,575,30,546,'546 0h-158l-98 264l-103 -264h-157l190 458l-27 76c-8 23 -18 38 -29 47s-30 12 -58 12h-49v106h91c53 0 94 -12 123 -35s53 -61 73 -116'], + 0x1D77B: [503,192,673,85,642,'642 7c-15 -7 -30 -12 -44 -15c-13 -3 -27 -5 -40 -5c-26 0 -47 6 -64 17c-17 12 -30 29 -40 54c-14 -24 -31 -41 -50 -53c-20 -12 -43 -18 -69 -18c-21 0 -40 4 -56 10c-15 8 -27 19 -36 32v-221h-158v695h158v-292c0 -35 8 -61 23 -78c14 -17 37 -25 66 -25 c31 0 53 8 68 25c14 17 22 43 22 78v292h158v-336c0 -22 3 -36 7 -45c5 -8 13 -13 24 -13c6 0 11 1 16 3c4 1 10 4 15 8v-113'], + 0x1D77C: [503,0,619,15,573,'573 321c0 -59 -20 -114 -60 -166c-52 -69 -96 -120 -132 -155h-173l-193 503h157l130 -371c77 71 115 140 117 207c1 17 -3 38 -9 66c-13 45 -32 78 -59 98h120c39 -16 67 -49 83 -95c13 -34 19 -63 19 -87'], + 0x1D77D: [699,191,540,43,492,'492 -42c0 -47 -13 -84 -39 -110s-63 -39 -111 -39v101c20 0 34 4 40 13c7 9 11 19 11 30s-4 22 -13 32s-21 15 -38 15c-199 0 -299 64 -299 193c0 107 58 172 175 196c-80 2 -120 37 -119 105c0 47 36 77 105 90h-152v115h432v-115c-160 0 -239 -30 -239 -90 c-1 -57 57 -86 174 -85v-103c-146 1 -218 -37 -219 -113c1 -52 54 -78 159 -78c35 0 66 -15 94 -44c26 -29 39 -66 39 -113'], + 0x1D77E: [515,13,627,43,584,'420 251c0 48 -9 85 -27 111c-18 25 -45 38 -79 38s-61 -13 -79 -38c-19 -26 -28 -63 -28 -111s9 -84 28 -111c18 -25 45 -38 79 -38s61 13 79 38c18 27 27 63 27 111zM584 251c0 -83 -24 -147 -72 -194c-47 -47 -114 -70 -198 -70c-85 0 -151 23 -199 70 c-49 47 -72 111 -72 194s23 147 72 194c48 47 114 70 199 70c84 0 151 -23 198 -70c48 -47 72 -111 72 -194'], + 0x1D77F: [503,17,722,42,663,'663 388h-86v-225c0 -39 3 -64 10 -72c8 -10 19 -15 35 -15c18 0 31 0 40 2v-84c-18 -8 -58 -11 -121 -11c-19 0 -38 2 -57 8c-31 9 -51 27 -59 55c-4 13 -6 32 -6 59v283h-134v-388h-157v388h-86v115h621v-115'], + 0x1D780: [517,191,656,84,612,'612 251c0 -78 -20 -141 -58 -190c-40 -49 -89 -74 -150 -74c-34 0 -64 7 -91 21c-26 13 -50 35 -72 65v-264h-157v434c0 84 22 147 66 190c39 38 77 62 113 70c37 9 73 14 108 14c12 0 23 -1 33 -2c57 -4 107 -29 150 -74c38 -42 58 -105 58 -190zM449 251 c0 48 -9 85 -26 110c-18 24 -43 37 -77 37s-60 -13 -78 -37c-18 -26 -27 -62 -27 -110s9 -84 27 -109c18 -26 44 -38 78 -38s59 12 77 38c17 25 26 61 26 109'], + 0x1D781: [515,191,544,43,478,'478 356c-43 29 -86 44 -131 44c-44 0 -79 -13 -103 -38c-25 -27 -37 -64 -37 -111c0 -45 11 -79 35 -100c23 -20 55 -33 95 -36c42 -2 75 -17 100 -45c26 -28 39 -65 39 -112s-13 -84 -39 -110c-25 -26 -63 -39 -111 -39v101c20 0 34 4 41 13s11 19 11 30s-5 22 -14 32 c-8 10 -21 15 -38 15c-98 0 -167 19 -208 57c-50 46 -75 111 -75 194s25 148 75 194c50 47 119 70 208 70c52 0 102 -9 152 -27v-132'], + 0x1D782: [503,13,710,43,659,'420 251c0 48 -9 85 -27 111c-18 25 -45 38 -79 38c-35 0 -61 -13 -79 -38c-19 -26 -28 -63 -28 -111s9 -84 28 -111c18 -25 44 -38 79 -38c34 0 61 13 79 38c18 27 27 63 27 111zM659 388h-104c19 -39 29 -84 29 -137c0 -83 -24 -147 -72 -194 c-47 -47 -114 -70 -198 -70c-85 0 -151 23 -199 70c-49 47 -72 111 -72 194s24 147 72 194c40 39 106 58 199 58h345v-115'], + 0x1D783: [503,17,579,21,553,'553 388h-187v-225c0 -39 3 -63 10 -72c8 -10 19 -15 36 -15s29 0 39 2v-84c-18 -8 -58 -11 -120 -11c-20 0 -40 2 -59 8c-30 9 -49 27 -58 55c-4 13 -6 33 -6 59v283h-187v115h532v-115'], + 0x1D784: [503,9,620,78,574,'574 287c0 -96 -19 -168 -57 -219s-108 -77 -210 -77c-86 0 -144 12 -174 36c-37 29 -55 73 -55 134v342h157v-348c0 -22 5 -38 17 -48c10 -10 29 -15 57 -15c34 0 65 20 92 61c14 19 20 63 20 134c0 41 -3 75 -10 99c-15 57 -34 96 -59 117h121c34 -28 62 -66 83 -114 c12 -28 18 -62 18 -102'], + 0x1D785: [508,191,716,64,659,'659 251c0 -148 -73 -232 -220 -251v-191h-155v191c-146 19 -220 103 -220 251c0 83 24 147 73 194c39 39 84 58 132 58v-103c-6 0 -16 -14 -28 -38c-12 -26 -19 -57 -19 -94c0 -72 20 -123 62 -153v176c0 144 58 217 174 217c45 0 87 -19 129 -58 c48 -44 72 -111 72 -199zM500 268c1 39 -1 70 -9 91s-17 30 -27 29c-17 -2 -25 -34 -25 -97v-176c40 29 61 80 61 153'], + 0x1D786: [503,191,585,25,560,'560 -191h-72c-54 0 -95 11 -123 33c-27 23 -52 61 -75 118l-7 20l-92 -171h-166l187 351l-69 178c-10 24 -20 41 -31 48c-11 8 -23 11 -38 11h-49v106h91c39 0 73 -11 101 -31c28 -22 55 -62 77 -120l8 -21l92 172h166l-187 -352l70 -177c9 -24 18 -39 28 -48 c11 -8 25 -12 40 -12h49v-105'], + 0x1D787: [503,191,727,65,658,'658 264c0 -156 -73 -245 -219 -264v-191h-155v191c-146 19 -219 108 -219 264v239h157v-235c0 -72 20 -123 62 -153v388h155v-388c42 30 62 81 62 153v235h157v-239'], + 0x1D788: [503,12,791,43,748,'748 255c0 -179 -65 -268 -195 -267c-95 0 -147 43 -157 129c-11 -86 -63 -129 -159 -129c-129 -1 -194 88 -194 267c0 77 29 160 86 248h135c-38 -71 -57 -152 -57 -246s20 -141 61 -142c34 0 50 68 49 205h157c-1 -137 14 -205 49 -205c40 1 61 48 61 142 s-19 175 -57 246h134c58 -88 87 -171 87 -248'], + 0x1D789: [620,13,536,60,475,'474 259c-7 -98 -35 -170 -83 -218c-39 -35 -82 -54 -129 -54c-50 0 -92 13 -126 41c-41 33 -65 77 -73 132c-8 61 1 115 26 164c25 47 69 70 131 70c33 0 65 -10 98 -31c13 -8 29 -24 49 -48c0 19 -1 39 -5 61c-4 33 -13 59 -24 77c-35 50 -77 76 -126 76 c-24 0 -54 -8 -89 -24l-14 99c42 11 78 16 108 16c90 0 159 -39 209 -117c23 -35 38 -80 45 -134c6 -34 6 -71 3 -110zM355 209c-31 51 -66 77 -107 77c-39 0 -62 -21 -70 -62c-6 -27 -8 -52 -6 -75c3 -22 12 -40 26 -53c13 -14 31 -21 52 -21c17 0 32 5 46 16 c16 13 29 32 41 56c8 20 15 40 18 62'], + 0x1D78A: [515,13,596,67,502,'502 6l-42 -8c-38 -7 -75 -11 -111 -11c-89 0 -158 23 -208 70c-49 46 -74 110 -74 194s25 148 74 194c50 47 119 70 208 70c38 0 75 -3 111 -11c28 -5 42 -9 42 -9v-114c-6 3 -17 7 -36 13c-37 9 -71 14 -103 14c-41 0 -73 -9 -95 -28c-23 -19 -36 -46 -39 -79h273v-99 l-273 -1c3 -34 16 -60 39 -79c22 -19 55 -28 95 -28c35 0 68 4 103 15c22 6 35 12 36 15v-118'], + 0x1D78B: [707,10,604,50,556,'415 414c1 38 -3 69 -15 94c-27 58 -52 87 -75 87c-46 0 -71 -26 -71 -80c-1 -47 12 -75 35 -85c50 -22 91 -27 126 -16zM556 348c-3 -116 -24 -204 -60 -262c-41 -65 -105 -96 -192 -96c-82 0 -147 31 -193 96c-41 57 -62 136 -60 238h148c1 -87 14 -145 37 -175 c24 -30 46 -45 68 -45c32 1 57 20 75 59c19 48 30 94 31 137c-61 -4 -118 5 -171 24c-87 32 -131 98 -131 199c0 120 73 181 217 184c80 0 138 -32 179 -96c37 -61 55 -148 52 -263'], + 0x1D78C: [504,6,680,55,624,'624 419c0 -13 -8 -35 -26 -68c-13 -24 -46 -59 -100 -104c-9 -21 -15 -42 -15 -62s4 -40 10 -59c7 -19 25 -29 56 -29c16 0 38 16 65 48v-130c-18 -15 -42 -21 -71 -21c-129 0 -194 57 -194 170c0 14 2 25 7 30l-66 -36c-29 -109 -81 -164 -158 -164 c-52 0 -77 28 -77 85c0 13 8 35 26 68c13 24 46 59 100 104c10 20 14 42 14 62s-3 39 -10 59c-7 19 -25 29 -54 29c-18 0 -39 -16 -66 -49v131c18 15 42 21 71 21c119 0 183 -41 191 -123c2 -17 2 -32 2 -47s-1 -25 -5 -30l65 35c29 110 83 164 160 164c50 0 75 -27 75 -84'], + 0x1D78D: [699,191,729,60,662,'505 251c0 47 -13 87 -38 119c-11 14 -19 19 -28 19v-269l28 20c25 19 38 57 38 111zM662 251c0 -80 -24 -145 -75 -194c-36 -36 -85 -58 -148 -68v-180h-156v180c-63 10 -112 32 -148 68c-51 49 -75 114 -75 194c0 77 21 142 60 194c30 37 84 60 163 67v187h156v-187 c79 -7 133 -30 163 -67c40 -52 60 -117 60 -194zM283 120v269c-9 0 -17 -5 -28 -19c-24 -32 -38 -72 -38 -119c0 -54 14 -92 38 -111'], + 0x1D78E: [517,199,656,84,612,'612 251c0 -78 -20 -141 -58 -190c-40 -49 -89 -74 -150 -74c-34 0 -64 7 -91 21c-26 13 -50 35 -72 65v-73c0 -62 18 -93 53 -93h278v-106h-278c-140 0 -210 66 -210 197v245c0 80 22 143 66 190c52 56 126 84 221 84c76 0 137 -26 183 -76c38 -42 58 -105 58 -190z M449 251c0 48 -9 85 -26 110c-18 24 -43 37 -77 37s-60 -13 -78 -37c-18 -26 -27 -62 -27 -110s9 -84 27 -109c18 -26 44 -38 78 -38s59 12 77 38c17 25 26 61 26 109'], + 0x1D78F: [503,12,787,22,761,'761 388h-42c18 -46 27 -90 27 -133c0 -179 -65 -267 -195 -267c-95 0 -147 43 -157 129c-11 -86 -63 -129 -159 -129c-129 0 -194 88 -194 267c0 43 9 87 26 133h-45v115h739v-115zM582 257c0 47 -5 90 -15 131h-348c-10 -41 -14 -84 -14 -131c0 -94 20 -142 61 -142 c32 0 48 69 48 205h158c0 -136 16 -205 49 -205c40 0 61 48 61 142'], + 0x1D790: [671,0,697,-65,615,'615 0h-161l-19 122h-262l-64 -122h-174l371 671h193zM414 244l-40 258l-137 -258h177'], + 0x1D791: [671,0,694,21,631,'458 499c0 17 -6 31 -18 40c-11 9 -28 14 -51 14h-94l-27 -142h94c31 0 53 8 71 23c17 16 25 37 25 65zM432 227c0 22 -7 40 -21 50c-15 11 -36 16 -66 16h-100l-33 -175h100c38 0 68 9 89 28c20 19 31 45 31 81zM631 527c0 -40 -11 -77 -32 -107 c-23 -32 -52 -52 -87 -61c29 -8 52 -24 67 -46s23 -50 23 -83c0 -73 -26 -129 -79 -169c-52 -41 -126 -61 -221 -61h-281l128 671h254c77 0 135 -12 172 -35c38 -23 56 -60 56 -109'], + 0x1D792: [671,0,571,21,615,'615 671l-25 -131h-297l-103 -540h-169l128 671h466'], + 0x1D793: [671,0,697,-66,622,'622 0h-688l371 671h201zM430 131l-54 382l-203 -382h257'], + 0x1D794: [671,0,618,21,605,'605 671l-25 -131h-287l-24 -125h270l-25 -131h-270l-29 -153h296l-24 -131h-466l128 671h456'], + 0x1D795: [671,0,648,-26,663,'663 671l-20 -107l-426 -433h354l-26 -131h-571l20 107l426 433h-334l26 131h551'], + 0x1D796: [671,0,756,21,736,'736 671l-127 -671h-170l54 284h-249l-54 -284h-169l128 671h169l-49 -256h250l48 256h169'], + 0x1D797: [683,13,773,40,733,'557 420c0 29 -7 56 -19 79c-21 39 -58 59 -109 59c-52 0 -96 -20 -132 -59c-35 -39 -60 -94 -73 -164c-6 -28 -9 -56 -9 -86c0 -28 8 -55 20 -78c21 -39 58 -59 109 -59c52 0 96 20 132 59c35 39 60 93 73 164c6 27 8 55 8 85zM733 426c0 -28 -3 -59 -9 -91 c-21 -109 -67 -194 -139 -256c-71 -61 -160 -92 -264 -92c-106 0 -183 31 -231 92c-34 43 -50 99 -50 165c0 27 3 59 9 91c21 108 67 194 139 256c71 60 160 92 265 92s182 -32 230 -92c34 -44 50 -99 50 -165zM514 415l-25 -131h-224l24 131h225'], + 0x1D798: [671,0,339,21,318,'318 671l-128 -671h-169l128 671h169'], + 0x1D799: [671,0,692,21,755,'755 671l-376 -326l284 -345h-199l-221 280l-53 -280h-169l128 671h169l-46 -241l279 241h204'], + 0x1D79A: [671,0,697,-66,622,'622 0h-171l-75 513l-272 -513h-170l371 671h201'], + 0x1D79B: [671,0,900,21,879,'879 671l-128 -671h-160l93 495l-227 -366h-91l-91 366l-94 -495h-160l128 671h208l84 -356l222 356h216'], + 0x1D79C: [671,0,756,21,736,'736 671l-127 -671h-189l-151 465l-88 -465h-160l128 671h189l150 -465l88 465h160'], + 0x1D79D: [671,0,572,27,560,'465 415l-25 -131h-312l25 131h312zM560 671l-25 -131h-405l25 131h405zM456 131l-24 -131h-405l25 131h404'], + 0x1D79E: [683,13,772,36,736,'557 396c0 52 -11 93 -35 120c-23 28 -57 42 -101 42c-58 0 -108 -27 -147 -81c-40 -54 -60 -121 -60 -202c0 -51 12 -92 34 -120c24 -28 56 -43 98 -43c33 0 63 8 89 22c27 15 49 36 67 65c18 27 32 58 42 92c9 34 13 69 13 105zM736 414c0 -54 -8 -106 -24 -155 c-16 -48 -40 -92 -71 -130c-38 -48 -83 -83 -135 -107c-52 -23 -112 -35 -180 -35c-88 0 -157 25 -210 74c-54 49 -80 114 -80 195c0 54 8 106 24 154c16 49 40 92 71 132c38 47 82 83 134 106c53 23 113 35 180 35c88 0 158 -25 212 -75c52 -50 79 -114 79 -194'], + 0x1D79F: [671,0,756,21,736,'736 671l-127 -671h-170l104 540h-250l-103 -540h-169l128 671h587'], + 0x1D7A0: [671,0,662,21,649,'649 489c0 -35 -6 -69 -19 -101c-12 -31 -31 -59 -56 -83c-26 -25 -56 -44 -92 -56c-36 -11 -82 -16 -136 -16h-112l-44 -233h-169l128 671h281c69 0 122 -17 161 -48c39 -32 58 -77 58 -134zM475 470c0 25 -7 43 -22 56s-37 20 -66 20h-92l-36 -188h93c41 0 70 9 92 28 c21 20 31 48 31 84'], + 0x1D7A1: [683,13,773,40,733,'733 426c0 -28 -3 -59 -9 -91c-21 -109 -67 -194 -139 -256c-71 -61 -160 -92 -264 -92c-106 0 -183 31 -231 92c-34 43 -50 99 -50 165c0 27 3 59 9 91c21 108 67 194 139 256c71 60 160 92 265 92s182 -32 230 -92c34 -44 50 -99 50 -165zM557 420c0 29 -7 56 -19 79 c-21 39 -58 59 -109 59c-52 0 -96 -20 -132 -59c-20 -23 -37 -51 -50 -84h310v5zM537 284h-321c-1 -11 -1 -23 -1 -35c0 -28 8 -55 20 -78c21 -39 58 -59 109 -59c52 0 96 20 132 59c26 29 47 66 61 113'], + 0x1D7A2: [671,0,618,21,605,'605 671l-24 -131h-295l181 -181l-267 -228h311l-24 -131h-466l27 144l250 213l-176 176l27 138h456'], + 0x1D7A3: [671,0,612,48,678,'678 671l-25 -131h-218l-103 -540h-169l103 540h-218l25 131h605'], + 0x1D7A4: [671,0,649,63,734,'734 671l-324 -391l-53 -280h-169l53 280l-178 391h169l112 -249l195 249h195'], + 0x1D7A5: [671,0,774,43,730,'552 367c0 30 -8 53 -25 73c-8 9 -19 16 -31 22l-49 -254c15 5 28 13 40 22c34 28 55 62 63 105c1 11 2 22 2 32zM326 462c-14 -6 -27 -13 -40 -22c-32 -25 -54 -60 -62 -105c-2 -13 -4 -25 -4 -35c0 -30 9 -53 26 -70c8 -9 19 -17 32 -22zM730 391c0 -17 -2 -36 -6 -56 c-16 -84 -58 -149 -127 -197c-49 -33 -108 -55 -176 -65l-14 -73h-169l14 73c-63 9 -115 31 -151 65c-38 36 -58 83 -58 140c0 17 2 37 6 57c16 84 58 149 127 197c50 34 108 56 176 65l14 74h169l-14 -74c65 -9 114 -31 151 -65c39 -36 58 -83 58 -141'], + 0x1D7A6: [671,0,684,-51,726,'726 671l-285 -332l161 -339h-172l-107 224l-191 -224h-183l295 344l-156 327h173l101 -211l180 211h184'], + 0x1D7A7: [671,0,770,78,787,'787 671l-35 -184c-20 -106 -64 -191 -131 -253c-68 -63 -128 -95 -183 -95l-27 -139h-168l26 139c-54 0 -103 32 -147 94c-30 43 -44 95 -44 159c0 29 3 62 9 95l35 184h168l-29 -158c-9 -46 -13 -79 -13 -100s2 -36 5 -45c15 -45 31 -68 46 -68l71 371h169l-70 -371 c16 0 40 23 72 68c18 24 34 73 47 145l30 158h169'], + 0x1D7A8: [683,0,764,-45,726,'726 430c0 -23 -2 -46 -8 -71c-20 -105 -72 -181 -157 -228h135l-26 -131h-300l27 140c12 6 23 14 33 23c61 52 98 116 113 191c3 20 5 43 5 68c0 26 -7 52 -21 77c-20 39 -56 59 -109 59c-51 0 -95 -20 -130 -59c-36 -39 -59 -87 -70 -145c-4 -19 -6 -38 -6 -56 c0 -51 15 -97 45 -135c7 -9 16 -17 26 -23l-27 -140h-301l24 131h135c-51 36 -77 90 -77 161c0 21 2 43 6 67c18 93 63 170 134 232c72 60 160 92 266 92c105 0 182 -32 229 -92c36 -46 54 -100 54 -161'], + 0x1D7A9: [661,10,697,-2,686,'686 661l-371 -671h-201l-116 671h688zM447 530h-257l54 -382'], + 0x1D7AA: [514,11,622,38,627,'627 503l-135 -259v-69c-1 -49 8 -74 27 -74h36l-18 -101h-45c-47 0 -80 13 -99 38c-4 5 -7 10 -8 13c-17 -19 -34 -34 -49 -45c-16 -12 -57 -17 -123 -17c-80 0 -132 23 -154 68c-15 27 -21 58 -21 93s4 71 11 108c16 88 45 150 84 185c53 48 119 71 201 71 c66 0 110 -19 131 -60l26 49h136zM369 338c0 46 -19 68 -57 69c-20 0 -40 -13 -62 -39c-20 -26 -37 -65 -46 -118c-5 -26 -8 -49 -8 -68s3 -35 8 -47c10 -24 27 -36 49 -36c23 0 44 22 67 68l48 98'], + 0x1D7AB: [711,191,648,-11,593,'437 531c0 41 -20 62 -60 62c-32 0 -56 -12 -72 -37c-16 -26 -29 -62 -38 -110l-37 -195c-3 -19 -5 -38 -5 -58c0 -19 3 -37 11 -51c13 -26 36 -38 71 -38c37 0 65 10 83 30c18 21 29 37 31 49c2 9 3 18 3 27c0 30 -12 56 -35 76c-17 13 -51 19 -102 20l20 103 c49 8 78 17 87 28c23 26 37 48 40 66c2 10 3 19 3 28zM593 228c0 -71 -29 -131 -87 -182c-44 -40 -99 -59 -164 -59c-66 0 -115 29 -146 86l-50 -264h-157l120 629c15 84 47 147 96 190c40 35 77 58 112 68c34 11 62 15 84 15l41 -1c57 -9 100 -34 127 -72 c11 -17 17 -36 17 -58s-2 -44 -6 -63c-5 -27 -19 -55 -42 -82c-23 -28 -50 -43 -79 -46c40 -12 74 -31 98 -59c23 -26 36 -60 36 -102'], + 0x1D7AC: [503,191,614,66,673,'673 503l-297 -503l-36 -191h-158l36 191l-65 338c-5 26 -12 42 -20 47c-14 8 -27 12 -36 12h-31l20 106h72c20 0 50 -11 91 -33c17 -10 31 -49 44 -118l34 -194l187 345h159'], + 0x1D7AD: [707,13,625,16,572,'572 674l-21 -106c-31 21 -94 31 -188 31c-49 0 -77 -15 -82 -43v-7c0 -25 30 -42 91 -51c132 -21 197 -84 197 -188c0 -18 -2 -39 -6 -61c-15 -81 -52 -145 -109 -192c-56 -47 -127 -70 -210 -70c-85 0 -147 23 -186 70c-29 34 -42 76 -42 128c0 93 37 170 110 232 c18 14 37 27 57 37c-31 19 -46 46 -46 81c0 8 0 17 2 25c18 98 106 147 259 147c79 0 136 -11 174 -33zM405 300c0 18 -7 35 -17 50c-17 23 -39 35 -68 38c-12 2 -25 4 -37 8c-17 -8 -33 -19 -48 -35c-25 -27 -41 -63 -50 -111c-3 -18 -5 -37 -5 -56s4 -38 12 -53 c16 -27 39 -40 72 -40c34 0 62 14 87 40c24 27 41 63 49 108c3 15 5 32 5 51'], + 0x1D7AE: [515,13,507,27,471,'471 494l-21 -108c-16 9 -36 15 -60 20c-25 4 -48 7 -70 7s-43 -5 -61 -16c-21 -12 -31 -24 -31 -37c0 -14 6 -24 19 -33c12 -9 36 -13 70 -13h55l-20 -101h-51c-38 0 -68 -6 -89 -17c-25 -14 -37 -31 -37 -52c0 -14 8 -26 23 -37s37 -17 66 -17c56 0 109 12 159 35 l-22 -113c-55 -17 -111 -25 -166 -25c-139 0 -208 42 -208 123c0 47 15 86 47 115c22 22 52 37 90 46c-52 13 -79 42 -79 87c0 8 1 16 3 26c8 45 32 78 70 99s91 32 160 32c51 0 101 -7 153 -21'], + 0x1D7AF: [699,191,530,32,567,'567 699l-21 -115c-205 -88 -322 -208 -352 -359c-2 -8 -3 -15 -3 -23c0 -56 47 -85 140 -87c37 -1 65 -16 85 -44c16 -19 22 -44 22 -73c0 -13 -1 -26 -4 -40c-9 -47 -29 -84 -59 -110c-31 -26 -71 -39 -120 -39l20 101c21 0 35 4 44 13c11 12 17 23 17 35 c0 11 -3 21 -9 29s-18 13 -35 13c-174 0 -260 57 -260 173c0 17 2 34 5 53c27 144 143 263 347 358h-270l21 115h432'], + 0x1D7B0: [515,191,649,50,610,'603 306l-95 -497h-158l46 241l35 185c8 43 13 72 14 90c2 16 0 28 -3 36c-4 10 -10 19 -20 24c-9 6 -21 9 -35 9c-33 0 -61 -13 -84 -39c-24 -26 -40 -62 -49 -108l-47 -247h-157l95 503h158l-15 -73c30 29 59 50 89 64c29 14 60 21 92 21c57 0 97 -17 119 -53 c23 -36 28 -88 15 -156'], + 0x1D7B1: [707,10,624,28,596,'409 299h-212c-4 -29 -7 -53 -7 -75c0 -23 4 -41 9 -54c19 -44 41 -66 67 -66s56 22 91 66c21 26 38 69 52 129zM434 474c0 20 -3 39 -8 56c-15 44 -36 65 -67 65c-30 0 -60 -21 -91 -65c-20 -30 -37 -68 -48 -116h210c3 19 4 40 4 60zM596 483c0 -45 -5 -91 -14 -138 c-20 -109 -58 -196 -112 -259c-55 -65 -130 -96 -226 -96c-95 0 -158 31 -189 96c-18 36 -27 79 -27 124s4 91 13 135c20 110 58 198 112 263c53 65 130 99 227 99c98 0 162 -34 191 -99c16 -38 25 -79 25 -125'], + 0x1D7B2: [503,17,362,42,286,'286 78l-16 -84c-20 -8 -61 -11 -123 -11c-20 0 -38 2 -56 8c-32 10 -49 32 -49 65c0 12 2 29 6 49l76 398h157l-64 -340c-5 -22 -7 -39 -7 -50s1 -18 4 -22c5 -10 16 -15 32 -15c17 0 30 0 40 2'], + 0x1D7B3: [503,0,645,31,614,'614 503l-222 -177l153 -326h-187l-102 217l-31 -24l-37 -193h-157l95 503h158l-28 -144l184 144h174'], + 0x1D7B4: [699,0,575,-44,472,'472 0h-158l-48 264l-153 -264h-157l277 458l-12 76c-4 23 -11 38 -20 47c-9 8 -28 12 -55 12h-50l20 106h91c53 0 92 -11 115 -33c25 -24 43 -63 52 -118'], + 0x1D7B5: [503,192,665,-27,600,'600 503l-64 -336l-2 -18c0 -5 -1 -10 -1 -14c0 -8 2 -15 6 -19s10 -7 18 -7c5 0 11 1 16 3c6 2 12 4 17 8l-21 -113c-17 -7 -33 -12 -47 -15s-28 -5 -41 -5c-27 0 -46 6 -61 17c-14 12 -25 29 -30 54c-18 -24 -38 -41 -61 -53c-22 -12 -46 -18 -72 -18 c-21 0 -39 4 -53 10c-13 8 -23 19 -29 32l-43 -221h-159l132 695h159l-56 -292c-2 -7 -3 -13 -3 -19c-1 -5 -1 -12 -1 -16c0 -22 7 -39 19 -51c13 -11 31 -17 55 -17c30 0 54 8 71 25c18 17 30 43 37 78l56 292h158'], + 0x1D7B6: [503,0,622,68,594,'594 354c0 -12 0 -23 -3 -33c-11 -59 -42 -114 -91 -166c-65 -69 -119 -120 -161 -155h-173l-98 503h157l60 -371c107 85 160 167 160 247c0 59 -13 100 -41 124h121c46 -22 69 -72 69 -149'], + 0x1D7B7: [699,191,530,26,567,'567 699l-22 -115c-173 0 -259 -35 -259 -104c0 -48 54 -72 161 -71l-20 -103c-145 1 -225 -37 -239 -113c-1 -4 -2 -8 -2 -13c0 -43 49 -65 145 -65c35 0 64 -15 86 -44c14 -19 20 -44 20 -73c0 -13 -1 -26 -3 -40c-9 -47 -29 -84 -60 -110c-30 -26 -71 -39 -119 -39 l19 101c21 0 35 4 46 15c10 11 16 21 16 33c0 11 -4 21 -9 29c-7 8 -18 13 -36 13c-176 0 -265 52 -265 154c0 12 2 25 4 39c20 107 91 172 213 196c-69 2 -103 28 -103 78c0 9 1 18 3 27c9 47 49 77 122 90h-152l22 115h432'], + 0x1D7B8: [515,13,625,36,589,'425 304c0 31 -7 55 -22 71c-14 17 -35 25 -62 25c-40 0 -75 -18 -101 -56s-39 -86 -39 -144c0 -33 7 -56 21 -73c15 -17 35 -25 62 -25c41 0 75 19 101 57s40 86 40 145zM589 303c0 -38 -6 -75 -19 -111c-14 -36 -33 -69 -58 -98c-30 -36 -65 -62 -106 -80 s-86 -27 -136 -27c-73 0 -130 19 -172 57c-40 38 -62 90 -62 156c0 37 6 74 21 110c13 36 32 69 57 99c30 34 64 61 105 80c41 17 85 26 135 26c73 0 131 -18 172 -57c42 -38 63 -90 63 -155'], + 0x1D7B9: [503,17,720,73,716,'716 503l-22 -115h-86l-44 -225c-3 -22 -6 -39 -6 -50s2 -18 4 -22c5 -10 16 -15 32 -15c17 0 31 0 40 2l-17 -84c-18 -8 -60 -11 -122 -11c-20 0 -38 2 -57 8c-31 10 -47 32 -47 65c0 12 1 29 5 49l54 283h-134l-74 -388h-157l73 388h-85l22 115h621'], + 0x1D7BA: [517,191,646,9,630,'630 330c0 -24 -3 -49 -9 -79c-14 -78 -46 -141 -95 -190c-47 -49 -103 -74 -167 -74s-112 29 -142 86l-51 -264h-157l83 434c16 84 48 146 98 187c49 40 93 65 130 73c39 9 70 14 93 14s40 -1 51 -2c56 -4 101 -29 135 -74c20 -27 31 -64 31 -111zM464 305 c0 62 -27 93 -81 93c-34 0 -62 -13 -84 -37c-24 -26 -39 -62 -49 -110c-3 -19 -5 -38 -5 -58c0 -19 4 -37 11 -51c14 -26 37 -38 72 -38c33 0 61 12 83 38c23 25 39 61 48 109c4 19 5 38 5 54'], + 0x1D7BB: [515,191,538,55,541,'541 488l-25 -132c-37 29 -78 44 -122 44c-45 0 -82 -13 -111 -38c-30 -27 -49 -64 -58 -111c-3 -15 -4 -27 -4 -39c0 -59 36 -92 108 -97c41 -2 72 -17 92 -45c15 -19 21 -43 21 -72c0 -13 -1 -26 -4 -40c-9 -47 -28 -84 -59 -110s-71 -39 -120 -39l20 101 c20 0 34 4 43 13c12 12 18 23 18 35c0 11 -3 21 -10 29c-5 8 -17 13 -34 13c-98 0 -162 18 -194 53c-32 36 -47 81 -47 134c0 20 2 41 6 64c16 83 53 148 113 194c58 47 132 70 221 70c51 0 99 -9 146 -27'], + 0x1D7BC: [503,13,704,37,707,'426 305c0 63 -28 95 -84 95c-34 0 -63 -13 -86 -38c-24 -25 -39 -63 -48 -111c-5 -19 -6 -38 -6 -53c0 -64 28 -96 83 -96c35 0 64 13 88 38c22 26 38 63 47 111c4 19 6 38 6 54zM707 503l-22 -115h-104c7 -21 10 -43 10 -67c0 -23 -2 -46 -6 -70 c-16 -83 -52 -147 -109 -194s-127 -70 -211 -70c-86 0 -148 23 -187 70c-28 33 -41 75 -41 127c0 21 2 43 6 67c16 83 52 147 109 194c47 39 117 58 211 58h344'], + 0x1D7BD: [503,17,576,52,605,'605 503l-21 -115h-187l-44 -225c-4 -22 -6 -39 -6 -50s1 -18 4 -22c5 -10 16 -15 32 -15s30 0 40 2l-16 -84c-20 -8 -61 -11 -123 -11c-20 0 -39 2 -57 8c-32 10 -48 32 -48 65c0 12 2 29 6 49l54 283h-187l22 115h531'], + 0x1D7BE: [503,9,616,54,586,'586 344c0 -17 -3 -37 -6 -57c-18 -96 -51 -168 -99 -219c-47 -51 -123 -77 -225 -77c-86 0 -141 11 -165 34s-37 52 -37 91c0 14 2 29 5 45l65 342h158l-67 -348c-2 -7 -2 -15 -2 -24c0 -10 4 -18 11 -26c7 -9 27 -13 59 -13c30 0 63 20 98 61c17 19 31 63 45 134 c7 34 10 58 10 72c0 70 -13 118 -37 144h120c29 -28 49 -66 61 -114c4 -14 6 -28 6 -45'], + 0x1D7BF: [508,191,714,76,684,'684 324c0 -22 -1 -46 -7 -73c-28 -148 -117 -232 -266 -251l-36 -191h-157l36 191c-119 16 -178 76 -178 183c0 21 3 43 7 68c16 83 52 147 109 194c47 39 95 58 144 58l-19 -103c-7 0 -20 -14 -37 -38c-17 -26 -28 -53 -33 -81c-6 -30 -9 -52 -9 -69 c0 -43 13 -76 38 -97l34 176c27 144 99 217 216 217c44 0 84 -19 118 -58c27 -31 40 -74 40 -126zM532 339c0 33 -7 49 -21 49c-17 0 -33 -32 -44 -97l-35 -176c45 29 75 80 90 153c7 28 10 52 10 71'], + 0x1D7C0: [503,191,571,-48,619,'619 503l-254 -352l35 -177c6 -24 12 -39 21 -48c9 -8 21 -12 37 -12h49l-20 -105h-73c-53 0 -92 11 -116 33c-23 23 -40 61 -52 118l-4 20l-124 -171h-166l254 351l-36 178c-5 24 -12 41 -22 48c-9 8 -21 11 -35 11h-49l20 106h91c38 0 69 -10 95 -31 c25 -21 43 -62 55 -120l4 -21l123 172h167'], + 0x1D7C1: [503,191,721,79,725,'725 503l-45 -239c-30 -156 -120 -245 -268 -264l-37 -191h-157l37 191c-117 16 -176 78 -176 189c0 23 3 47 8 75l45 239h158l-45 -235c-4 -21 -6 -39 -6 -56c0 -43 13 -76 38 -97l74 388h156l-73 -388c45 30 76 81 90 153l45 235h156'], + 0x1D7C2: [503,12,789,33,754,'754 317c0 -21 -1 -42 -6 -62c-33 -179 -115 -267 -243 -267c-90 0 -135 38 -135 113v16c-27 -86 -87 -129 -183 -129c-103 0 -154 55 -154 167c0 30 4 63 11 100c14 77 58 160 133 248h135c-51 -71 -86 -152 -104 -246c-6 -28 -9 -53 -9 -72c0 -47 15 -70 45 -70 c32 0 61 69 86 205h157c-12 -61 -18 -111 -18 -148c0 -38 9 -57 27 -57c42 0 71 48 89 142c8 39 11 80 11 122c0 41 -7 83 -21 124h135c29 -65 44 -127 44 -186'], + 0x1D7C3: [620,13,494,29,466,'466 369c0 -34 -4 -71 -12 -110c-21 -98 -59 -170 -114 -218c-43 -35 -89 -54 -136 -54c-50 0 -90 13 -121 41c-36 33 -54 77 -54 132c0 61 16 115 49 164c31 47 78 70 140 70c32 0 64 -10 94 -31c11 -8 26 -24 42 -48c3 19 4 39 4 61c0 33 -5 59 -14 77 c-28 50 -67 76 -115 76c-25 0 -55 -8 -93 -24v99c43 11 80 16 111 16c89 0 153 -39 192 -117c18 -35 27 -80 27 -134zM328 209c-25 51 -56 77 -97 77c-38 0 -64 -21 -79 -62c-10 -27 -15 -52 -15 -75c0 -22 6 -40 18 -53c12 -14 29 -21 49 -21c18 0 33 5 48 16 c18 13 34 32 50 56c10 20 19 40 26 62'], + 0x1D7C4: [515,13,590,59,548,'548 495l-22 -114c-5 3 -16 7 -34 13c-35 9 -68 14 -99 14c-42 0 -76 -9 -102 -28s-44 -46 -54 -79h274l-19 -99l-274 -1c-3 -34 5 -60 25 -79c19 -19 49 -28 90 -28c34 0 69 4 104 15c24 6 38 12 40 15l-22 -118l-43 -8c-40 -7 -78 -11 -114 -11c-89 0 -153 23 -195 70 c-40 46 -52 110 -37 194c16 84 53 148 111 194c58 47 132 70 221 70c39 0 75 -3 110 -11c26 -5 40 -9 40 -9'], + 0x1D7C5: [707,10,600,31,571,'429 508c-16 58 -35 87 -58 87c-47 0 -76 -26 -87 -80c-9 -47 -3 -75 19 -85c45 -22 85 -27 122 -16c9 38 10 69 4 94zM554 348c-25 -116 -62 -204 -111 -262c-52 -65 -121 -96 -209 -96c-82 0 -140 31 -175 96c-31 57 -36 136 -14 238h147c-14 -87 -13 -145 5 -175 c17 -30 37 -45 58 -45c33 1 62 20 86 59c30 48 49 94 57 137c-61 -4 -116 5 -165 24c-81 32 -113 98 -94 199c23 120 107 181 253 184c79 0 132 -32 159 -96c26 -61 27 -148 3 -263'], + 0x1D7C6: [504,6,672,16,654,'652 419c-1 -12 -14 -35 -38 -68c-17 -24 -58 -59 -121 -104c-24 -38 -33 -80 -26 -123c3 -18 19 -27 49 -27c17 0 41 16 74 48l-25 -130c-25 -18 -58 -24 -94 -21c-105 11 -154 52 -148 123c4 41 10 68 18 77l-72 -36c-53 -117 -121 -171 -203 -164c-41 4 -56 33 -47 85 c2 12 15 35 38 68c18 24 58 59 121 104c24 38 33 79 27 123c-3 18 -19 27 -49 27c-18 0 -42 -16 -75 -49l25 131c26 17 58 24 95 20c104 -10 153 -51 147 -122c-4 -42 -10 -68 -18 -77l72 35c53 117 121 172 204 164c40 -3 55 -32 46 -84'], + 0x1D7C7: [699,191,728,52,668,'503 251c8 44 4 85 -15 119c-8 14 -15 20 -24 19l-51 -269l31 20c29 19 49 57 59 111zM661 251c-16 -80 -53 -145 -111 -194c-43 -36 -97 -58 -161 -68l-35 -180h-157l35 180c-60 10 -106 32 -136 68c-40 49 -53 114 -37 194c15 77 47 142 97 194c36 37 95 60 175 67 l36 187h157l-36 -187c78 -7 127 -30 149 -67c31 -52 39 -117 24 -194zM308 389c-8 1 -18 -5 -31 -19c-31 -34 -52 -75 -60 -119c-10 -54 -6 -92 16 -111l23 -20'], + 0x1D7C8: [516,199,649,43,633,'625 251c-14 -78 -46 -141 -94 -190s-103 -74 -163 -74c-34 0 -64 7 -87 21c-24 14 -44 35 -60 65l-14 -73c-11 -57 1 -88 35 -93h278l-21 -106h-277c-140 0 -198 66 -173 197l47 245c16 84 50 147 102 190c46 38 88 61 126 70c51 12 99 16 144 12c57 -4 102 -29 136 -74 c30 -42 38 -105 21 -190zM463 251c9 48 8 85 -6 110c-13 24 -36 37 -69 37c-34 0 -62 -13 -85 -37c-23 -26 -39 -62 -48 -110s-7 -84 6 -109c13 -26 37 -38 70 -38c34 0 62 12 85 38c22 25 38 61 47 109'], + 0x1D7C9: [503,12,783,33,811,'811 503l-21 -115h-42c4 -24 6 -48 6 -70s-1 -43 -6 -63c-33 -179 -115 -267 -243 -267c-90 0 -135 38 -135 113v16c-27 -86 -87 -129 -183 -129c-103 0 -154 55 -154 167c0 83 21 161 63 233h-45l22 115h738zM596 347c0 21 0 35 -1 41h-348c-17 -41 -30 -81 -37 -118 s-11 -66 -11 -85c0 -47 15 -70 45 -70c32 0 61 69 86 205h157c-12 -61 -18 -111 -18 -148c0 -38 9 -57 27 -57c42 0 71 48 89 142c8 39 11 69 11 90'], + 0x1D7E2: [683,13,586,66,520,'430 335c0 92 -11 161 -34 207s-57 69 -103 69s-80 -23 -104 -69c-22 -46 -34 -115 -34 -207s12 -161 34 -207c24 -46 58 -69 104 -69s80 23 103 69s34 115 34 207zM520 335c0 -113 -20 -200 -59 -259s-95 -89 -168 -89c-74 0 -130 30 -169 89s-58 146 -58 259 s19 200 58 259s95 89 169 89c73 0 129 -30 168 -89s59 -146 59 -259'], + 0x1D7E3: [671,0,593,110,501,'501 0h-378v76h144v512l-157 -32v82l157 33h89v-595h145v-76'], + 0x1D7E4: [683,0,590,73,490,'490 0h-417v76l139 144c57 60 94 98 108 116c29 33 49 61 60 83c12 23 17 45 17 67c0 35 -13 64 -36 87c-25 22 -57 33 -96 33c-28 0 -57 -4 -89 -14c-30 -11 -63 -25 -99 -46v92c36 15 70 26 100 34c32 7 60 11 86 11c68 0 122 -18 163 -52c40 -35 60 -82 60 -140 c0 -27 -5 -53 -14 -78c-11 -25 -29 -53 -56 -87l-70 -76l-166 -174h310v-76'], + 0x1D7E5: [683,13,588,76,508,'508 195c0 -66 -23 -118 -67 -154s-108 -54 -190 -54c-27 0 -55 3 -84 8c-30 6 -60 14 -91 25v88c25 -15 51 -26 81 -33c30 -8 59 -12 92 -12c56 0 98 12 127 34c29 23 44 56 44 98c0 40 -14 71 -41 92c-27 23 -65 34 -113 34h-77v75h80c44 0 77 9 100 26 c24 19 35 44 35 78c0 35 -11 60 -36 79c-23 18 -58 27 -102 27c-24 0 -51 -2 -78 -8c-28 -5 -59 -14 -92 -25v81c34 9 65 17 94 21c30 6 58 8 84 8c67 0 121 -16 160 -47c39 -32 59 -74 59 -127c0 -37 -11 -68 -32 -94s-50 -43 -88 -53c42 -10 76 -29 100 -58 c23 -30 35 -66 35 -109'], + 0x1D7E6: [671,0,583,49,527,'345 234v358l-224 -358h224zM527 158h-94v-158h-88v158h-296v88l273 425h111v-437h94v-76'], + 0x1D7E7: [671,13,589,77,502,'502 215c0 -72 -23 -129 -66 -168c-44 -40 -106 -60 -186 -60c-28 0 -56 2 -84 7c-29 5 -58 12 -89 22v91c26 -15 54 -26 82 -32c28 -8 57 -12 89 -12c50 0 91 13 121 41c29 28 44 64 44 111s-15 84 -44 111c-30 27 -71 41 -121 41c-23 0 -48 -3 -71 -8 c-24 -6 -48 -14 -72 -25v337h348v-77h-267v-164c12 4 26 8 39 11c12 1 26 2 38 2c74 0 132 -21 175 -61c42 -41 64 -97 64 -167'], + 0x1D7E8: [683,13,586,70,523,'434 215c0 49 -12 87 -35 114c-24 29 -55 43 -95 43s-71 -14 -95 -43c-23 -27 -35 -65 -35 -114c0 -48 12 -86 35 -115c24 -27 55 -41 95 -41s72 14 95 41c23 29 35 67 35 115zM523 215c0 -69 -20 -124 -60 -165c-40 -43 -92 -63 -159 -63c-76 0 -134 30 -174 89 s-60 146 -60 259c0 106 24 190 74 254c49 62 115 94 198 94c22 0 45 -2 67 -7c23 -4 47 -11 71 -20v-83c-22 11 -45 19 -67 25c-23 6 -45 8 -68 8c-58 0 -103 -20 -134 -60c-31 -41 -48 -102 -53 -184c17 26 39 46 65 60c26 15 55 21 86 21c66 0 118 -20 157 -61 c38 -41 57 -96 57 -167'], + 0x1D7E9: [671,0,589,82,504,'504 632l-238 -632h-93l224 594h-315v77h422v-39'], + 0x1D7EA: [683,13,586,68,518,'429 189c0 40 -12 72 -36 95c-24 22 -58 34 -100 34s-76 -12 -100 -34c-23 -23 -36 -55 -36 -95c0 -41 13 -73 36 -95c24 -23 58 -35 100 -35s76 12 100 35s36 55 36 95zM518 189c0 -66 -20 -115 -59 -150c-38 -34 -94 -52 -166 -52c-73 0 -128 18 -167 52 c-39 35 -58 84 -58 150c0 42 12 79 36 108c24 30 58 50 100 60c-38 9 -68 28 -89 54c-21 27 -32 60 -32 98c0 53 18 96 56 127c37 31 89 47 154 47c66 0 116 -16 154 -47c37 -31 56 -74 56 -127c0 -38 -11 -71 -32 -98c-21 -26 -51 -45 -89 -54c42 -10 76 -30 100 -60 c24 -29 36 -66 36 -108zM414 500c0 35 -10 62 -32 81c-21 20 -51 30 -89 30c-39 0 -68 -10 -89 -30c-22 -19 -33 -46 -33 -81c0 -34 11 -61 33 -80c21 -20 50 -30 89 -30c38 0 68 10 89 30c22 19 32 46 32 80'], + 0x1D7EB: [683,13,586,63,516,'516 335c0 -106 -25 -191 -74 -253c-49 -64 -115 -95 -198 -95c-23 0 -45 2 -68 7c-22 4 -46 11 -71 20v83c23 -11 45 -20 68 -25c22 -6 45 -9 67 -9c59 0 104 21 134 61c31 40 49 101 53 183c-17 -25 -38 -45 -64 -59s-55 -21 -87 -21c-65 0 -118 20 -155 61 c-39 40 -58 96 -58 166c0 69 20 125 59 166c41 42 93 63 160 63c76 0 134 -30 173 -89c41 -59 61 -146 61 -259zM411 454c0 48 -11 87 -35 115c-22 28 -54 42 -94 42s-71 -14 -95 -42c-23 -28 -35 -67 -35 -115s12 -86 35 -114c24 -28 55 -42 95 -42s72 14 94 42 c24 28 35 66 35 114'], + 0x1D7EC: [683,13,635,48,588,'419 336c0 84 -8 143 -23 177c-16 34 -41 52 -78 52c-36 0 -62 -18 -77 -52c-16 -34 -24 -93 -24 -177c0 -85 8 -145 24 -180c15 -34 41 -51 77 -51s62 17 77 51c16 35 24 95 24 180zM588 335c0 -111 -23 -197 -70 -258c-47 -60 -114 -90 -200 -90s-153 30 -200 90 c-47 61 -70 147 -70 258s23 197 70 257s114 91 200 91s153 -31 200 -91s70 -146 70 -257'], + 0x1D7ED: [671,0,644,113,576,'576 0h-459v120h149v433l-153 -32v117l152 33h161v-551h150v-120'], + 0x1D7EE: [683,0,642,79,556,'556 0h-477v127l239 216c22 20 38 40 48 58c10 19 15 39 15 59c0 31 -10 57 -30 76c-22 20 -49 29 -83 29c-26 0 -55 -7 -86 -18c-32 -11 -65 -28 -101 -51v147c38 13 75 23 113 30c37 6 74 10 109 10c79 0 140 -18 183 -53c44 -36 65 -84 65 -148c0 -37 -9 -71 -27 -102 c-18 -32 -57 -74 -117 -127l-140 -126h289v-127'], + 0x1D7EF: [683,13,640,67,561,'561 190c0 -66 -25 -116 -75 -151c-49 -34 -122 -52 -217 -52c-35 0 -68 3 -101 8c-34 6 -68 14 -101 25v134c31 -17 63 -29 94 -37s62 -12 92 -12c45 0 79 8 104 24c23 15 35 38 35 68s-12 53 -36 69c-25 16 -61 24 -109 24h-68v111h72c42 0 74 7 94 20 c21 14 32 35 32 63c0 26 -10 46 -31 60c-20 14 -49 21 -86 21c-27 0 -54 -4 -82 -9c-27 -7 -55 -17 -83 -29v127c33 9 66 17 99 21c33 6 66 8 97 8c86 0 149 -14 191 -44c43 -27 64 -70 64 -128c0 -39 -10 -71 -31 -97c-20 -25 -49 -42 -89 -52c44 -12 77 -33 101 -61 c23 -30 34 -66 34 -111'], + 0x1D7F0: [671,0,634,45,589,'336 247v281l-186 -281h186zM589 122h-93v-122h-160v122h-291v148l263 401h188v-424h93v-125'], + 0x1D7F1: [671,13,640,77,571,'571 219c0 -73 -24 -130 -73 -170c-48 -42 -115 -62 -201 -62c-38 0 -75 4 -111 11c-37 8 -73 19 -109 33v136c36 -21 69 -36 102 -46c32 -11 62 -16 91 -16c40 0 73 10 96 30c24 20 36 49 36 84s-12 63 -36 84c-23 20 -56 30 -96 30c-25 0 -51 -4 -78 -9 c-28 -8 -57 -18 -89 -31v378h420v-127h-285v-104c13 3 26 6 39 8c12 2 27 3 40 3c80 0 142 -20 187 -61s67 -98 67 -171'], + 0x1D7F2: [682,13,637,62,584,'421 213c0 39 -7 69 -22 89c-15 19 -37 29 -67 29s-52 -10 -67 -29c-15 -20 -22 -50 -22 -89s7 -69 22 -88s37 -29 67 -29s52 10 67 29s22 49 22 88zM584 224c0 -71 -23 -128 -69 -172s-107 -65 -185 -65c-85 0 -151 30 -198 88c-47 59 -70 142 -70 251 c0 111 27 197 82 261c55 63 129 95 225 95c30 0 59 -2 87 -8c29 -4 57 -12 85 -21v-124c-28 14 -54 24 -79 29c-25 8 -48 11 -72 11c-50 0 -90 -14 -117 -44c-28 -27 -45 -71 -50 -127c20 15 41 26 63 33c23 8 47 12 74 12c67 0 121 -21 162 -60c41 -41 62 -93 62 -159'], + 0x1D7F3: [671,0,640,67,561,'561 573l-256 -573h-164l242 544h-316v127h494v-98'], + 0x1D7F4: [683,13,638,61,577,'416 198c0 33 -8 58 -25 76c-16 17 -40 26 -72 26c-31 0 -56 -9 -73 -27c-17 -17 -25 -43 -25 -75c0 -33 8 -59 25 -76c17 -18 42 -26 73 -26c32 0 56 8 72 26c17 18 25 43 25 76zM577 189c0 -67 -22 -117 -65 -151s-108 -51 -193 -51s-149 17 -192 51 c-44 34 -66 84 -66 151c0 43 12 79 34 106c23 30 57 50 101 62c-40 12 -70 31 -90 57c-21 26 -31 57 -31 95c0 57 21 100 62 129c42 30 102 45 182 45s140 -15 181 -45c42 -29 62 -72 62 -129c0 -38 -10 -69 -30 -95s-51 -45 -90 -57c44 -12 78 -32 100 -62 c23 -27 35 -63 35 -106zM402 491c0 27 -7 47 -22 62c-14 14 -35 21 -61 21c-27 0 -47 -7 -62 -21c-14 -15 -21 -35 -21 -62c0 -26 7 -47 21 -61c15 -14 35 -22 62 -22c26 0 47 8 61 22c15 14 22 35 22 61'], + 0x1D7F5: [682,13,637,52,574,'574 343c0 -111 -27 -198 -82 -261c-56 -63 -130 -95 -226 -95c-30 0 -60 2 -88 7s-56 12 -83 21v124c27 -13 53 -23 78 -30c24 -6 48 -9 72 -9c51 0 90 15 118 43c28 29 45 71 50 127c-20 -14 -42 -25 -64 -34c-23 -7 -47 -11 -73 -11c-67 0 -121 21 -163 61 c-40 40 -61 92 -61 157c0 73 22 130 68 173c46 45 108 66 185 66c85 0 151 -30 199 -89c47 -58 70 -142 70 -250zM393 455c0 40 -7 68 -22 89c-15 19 -37 29 -67 29s-52 -10 -67 -29c-15 -21 -22 -49 -22 -89c0 -38 7 -69 22 -88s37 -29 67 -29s52 10 67 29s22 50 22 88'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Script/Regular/Main.js new file mode 100644 index 0000000..82e3d54 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Script/Regular/Main.js @@ -0,0 +1,132 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Script'] = { + directory: 'Script/Regular', + family: 'GyrePagellaMathJax_Script', + id: 'GYREPAGELLASCRIPT', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210A: [398,398,508,-62,562,'299 -36c-173 -97 -338 -114 -338 -221c0 -26 43 -117 176 -117c31 0 98 3 115 93zM562 215c-51 -85 -111 -147 -173 -194l-54 -273c-26 -135 -162 -146 -198 -146c-144 0 -199 99 -199 141c0 124 182 137 365 243l17 86c-35 -47 -85 -80 -137 -80 c-104 0 -160 73 -160 164c0 126 111 242 237 242c48 0 85 -22 114 -53l4 -3c13 0 35 48 61 48h21l-66 -344c56 44 109 101 153 176zM371 325c-28 31 -63 49 -111 49c-81 0 -161 -110 -161 -232c0 -76 35 -126 84 -126c60 0 124 52 151 127'], + 0x210B: [798,18,790,55,844,'233 267c-98 -47 -163 -124 -163 -220c0 -26 12 -40 30 -40c25 0 60 27 89 84c11 22 22 68 44 176zM844 215l-37 -72c-48 -94 -104 -151 -176 -151c-68 0 -89 61 -89 122c0 30 4 46 47 267l-270 -83c-32 -163 -42 -206 -63 -233c-34 -55 -90 -83 -134 -83 c-37 0 -67 21 -67 65c0 104 74 192 183 244l58 297c6 28 10 53 10 76c0 51 -17 89 -59 121l10 13c93 -69 115 -161 115 -212c0 -10 -1 -19 -3 -26l-45 -236l270 82c42 209 63 303 85 332c24 34 57 42 72 42c16 0 68 -8 68 -99c0 -102 -56 -218 -147 -270 c-30 -156 -58 -297 -58 -349c0 -31 7 -45 30 -45c29 0 94 25 149 131l36 74zM803 686c0 62 -28 78 -44 78c-22 0 -45 -124 -82 -326c82 51 126 154 126 248'], + 0x2110: [787,8,577,75,647,'647 722c0 -69 -52 -91 -93 -91c-12 0 -25 2 -39 6c-17 -47 -25 -168 -90 -507c-5 -26 -15 -49 -28 -68c5 -1 9 -1 14 -1c93 0 165 83 205 161l15 -7c-34 -68 -119 -169 -220 -169c-9 0 -17 1 -26 2c-35 -38 -87 -56 -138 -56c-87 0 -172 52 -172 138 c0 73 75 151 110 169l6 -13c-34 -17 -100 -92 -100 -156c0 -61 62 -112 127 -112c36 0 71 15 97 50c-15 0 -16 9 -16 14c0 8 7 14 14 14c0 0 4 0 16 -6c9 18 17 39 22 65c57 290 68 453 98 509c-71 34 -150 82 -207 82c-65 0 -91 -18 -137 -108l-14 7c47 93 78 125 151 125 c65 0 148 -52 220 -86c49 70 100 103 136 103c30 0 49 -23 49 -65zM632 722c0 27 -7 45 -20 45c-17 0 -46 -31 -88 -109c10 -3 21 -4 30 -4c32 0 78 8 78 68'], + 0x2112: [755,8,789,52,842,'842 215l-36 -72c-48 -94 -103 -151 -175 -151c-114 0 -192 76 -262 128c-58 -82 -166 -128 -239 -128c-45 0 -78 18 -78 55c0 113 161 147 233 147c15 0 28 -4 37 -5c15 50 33 153 88 430c18 95 100 136 178 136c87 0 171 -50 171 -136c0 -73 -74 -152 -109 -170l-6 14 c33 17 100 92 100 156c0 61 -63 112 -128 112c-56 0 -113 -39 -132 -138c-47 -241 -68 -363 -91 -427c101 -48 162 -148 262 -148c34 0 93 47 135 130l38 74zM311 156c-18 8 -42 12 -65 12c-82 0 -178 -48 -178 -121c0 -22 20 -35 50 -35c121 0 193 144 193 144'], + 0x211B: [764,8,905,55,958,'958 215l-31 -62c-53 -104 -77 -161 -150 -161c-127 0 -218 242 -293 343c-6 6 -7 11 -7 16c0 9 12 35 56 42c9 -11 26 -42 68 -42c152 0 163 155 163 207c0 87 -66 167 -182 167c-41 0 -89 -9 -144 -33c35 -54 44 -110 44 -143c0 -9 0 -17 -1 -22 c-6 -55 -6 -38 -75 -394c-19 -95 -102 -141 -180 -141c-87 0 -171 52 -171 138c0 73 74 151 109 169l8 -13c-34 -17 -102 -92 -102 -156c0 -61 64 -112 129 -112c56 0 112 38 131 137l78 399c5 28 9 53 9 77c0 16 -2 32 -6 46c-100 -58 -151 -161 -151 -251 c0 -50 16 -97 49 -130l-11 -10c-35 35 -54 86 -54 140c0 97 55 206 162 270c-9 20 -25 39 -47 55l10 13c24 -18 43 -37 59 -57c60 30 115 42 166 42c147 0 248 -103 248 -202c0 -101 -98 -219 -241 -219h-20c77 -128 124 -312 195 -312c65 0 87 48 137 144l31 62'], + 0x212C: [764,8,887,47,940,'636 406c-24 9 -52 15 -85 15c-65 0 -93 -10 -93 -21c0 -23 48 -26 85 -26c34 0 67 12 93 32zM764 183c0 33 -10 143 -91 202c-36 -21 -80 -34 -130 -34c-52 0 -101 16 -101 49c0 21 38 45 109 45c38 0 73 -8 106 -20c36 38 58 91 58 143c0 78 -48 165 -172 165 c-57 0 -107 -14 -152 -36c39 -56 48 -115 48 -150c0 -7 0 -15 -1 -20l-58 -301c-6 -26 -13 -50 -22 -71c79 -51 144 -139 232 -139c48 0 93 14 124 43c0 0 -20 3 -20 15c0 8 7 14 15 14c5 0 14 -6 23 -10c21 27 32 62 32 105zM940 215c-33 -67 -70 -158 -166 -162 c-47 -39 -112 -61 -184 -61c-102 0 -175 86 -245 138c-60 -90 -160 -138 -228 -138c-40 0 -70 18 -70 55c0 52 53 144 203 144c14 0 28 -1 41 -5c4 13 7 27 11 43l65 325c5 27 9 52 9 74c0 21 -4 39 -9 56c-95 -60 -150 -164 -150 -258c0 -50 14 -96 48 -130l-10 -10 c-37 36 -53 87 -53 140c0 101 57 211 157 276c-9 18 -24 35 -43 49l9 13c21 -15 39 -33 53 -50c47 26 103 43 165 43c172 0 242 -99 242 -190c0 -60 -31 -121 -83 -163c85 -48 140 -131 140 -209c0 -48 -18 -90 -49 -123c73 13 96 80 133 150zM282 164c-9 2 -18 4 -28 4 c-141 0 -192 -74 -192 -121c0 -22 20 -31 46 -31c47 0 120 37 169 135c3 4 4 9 5 13'], + 0x212F: [398,8,406,21,459,'459 215l-30 -59c-58 -116 -155 -164 -239 -164c-91 0 -169 57 -169 154c0 74 61 252 236 252c71 0 112 -33 112 -87c0 -51 -47 -150 -187 -150c-31 0 -57 7 -79 17c-5 -23 -7 -43 -7 -54c0 -77 43 -108 100 -108c74 0 169 54 217 148l32 58zM307 311c0 47 -18 63 -50 63 c-88 0 -132 -102 -150 -179c20 -10 45 -18 75 -18c83 0 125 90 125 134'], + 0x2130: [757,8,569,55,623,'623 215l-30 -59c-61 -118 -169 -164 -273 -164c-137 0 -265 82 -265 203c0 85 63 174 158 220c-23 28 -36 63 -36 104c0 117 113 238 244 238c111 0 165 -58 165 -130c0 -38 -14 -81 -44 -123l-12 11c29 39 42 79 42 113c0 64 -48 105 -149 105 c-154 0 -172 -201 -172 -252c0 -19 3 -35 8 -49c27 7 56 13 87 13c43 0 75 -19 75 -45c0 -31 -49 -49 -70 -49c-45 0 -84 16 -116 42c-91 -56 -102 -176 -102 -210c0 -110 93 -167 197 -167c94 0 194 45 247 148l31 58zM400 400c0 11 -26 21 -54 21c-30 0 -55 -4 -77 -11 c16 -23 42 -36 83 -36c17 0 48 13 48 26'], + 0x2131: [802,8,754,55,835,'835 768c0 -20 -21 -53 -32 -69c-26 6 -50 7 -74 7c-92 0 -174 -30 -258 -48c10 -21 17 -46 17 -73c0 -13 -2 -27 -4 -43l-46 -238c44 -2 79 -5 107 -5c114 0 91 20 118 121c4 17 18 23 33 23c22 0 46 -15 46 -36c0 -5 -1 -9 -4 -14c-20 -42 -40 -69 -59 -89 c-7 -15 -9 -31 -9 -44c0 -39 24 -66 58 -66c49 0 59 24 64 35l15 -8c-6 -13 -19 -44 -79 -44c-42 0 -79 36 -79 90c0 3 2 13 2 16c-20 -11 -44 -15 -71 -15c-38 0 -83 6 -146 12l-28 -150c-19 -95 -102 -138 -180 -138c-87 0 -171 52 -171 138h15c0 -61 64 -112 129 -112 c56 0 113 38 133 137l26 128c-15 0 -30 2 -46 2l17 23h34l45 222c5 29 9 55 9 77c0 14 -1 27 -4 40c-15 -1 -31 -2 -46 -2c-172 0 -245 70 -245 112c0 32 33 45 77 45c109 0 207 -65 247 -109c103 32 209 92 369 92c14 0 20 -6 20 -17zM402 681c-48 96 -155 104 -193 104 c-40 0 -71 -10 -71 -28c0 -25 53 -84 196 -84c24 0 46 3 68 8'], + 0x2133: [783,73,940,47,1011,'1011 763c0 -13 -14 -56 -23 -64c-19 7 -48 37 -81 37c-6 0 -11 -1 -18 -4l-82 -576c-5 -34 -7 -61 -7 -83c0 -34 9 -52 33 -52h2c27 1 76 69 106 127l38 74l14 -7l-36 -72c-63 -123 -96 -151 -169 -151c-51 0 -64 39 -64 90c0 25 3 52 7 78l62 447l-291 -490 c0 -6 1 -12 1 -18c0 -68 -38 -129 -69 -172c-11 12 -17 30 -17 50c0 26 9 54 20 74c-3 21 -9 44 -14 74l-80 464c-5 32 -13 58 -22 81c-119 -656 -166 -678 -212 -678c-23 0 -47 22 -62 51c8 4 15 9 28 9c0 0 6 -1 10 -1c5 -24 14 -43 24 -43h3c21 0 65 10 192 695 c-19 29 -47 48 -83 64l5 16c80 -33 177 -85 195 -190l76 -441l322 546c36 59 86 78 133 78c20 0 41 -4 59 -10v-3'], + 0x2134: [398,8,471,23,524,'360 289c0 49 -21 85 -92 85c-150 0 -172 -197 -172 -260c0 -61 25 -98 96 -98c43 0 75 18 98 45c-8 3 -10 8 -10 13c0 7 6 14 13 14c0 0 2 0 14 -5c49 77 53 191 53 206zM524 215c-34 -68 -72 -162 -173 -162h-6c-42 -37 -94 -61 -153 -61c-96 0 -169 69 -169 165 c0 129 123 241 245 241c104 0 161 -74 161 -163c0 -59 -26 -121 -68 -166c86 5 110 78 149 153'], + 0x1D49C: [783,8,783,33,836,'836 215l-36 -72c-60 -117 -115 -151 -158 -151c-61 0 -96 74 -104 139l-11 111h-231c-33 -72 -66 -137 -92 -181c-25 -43 -57 -69 -96 -69c-42 0 -75 39 -75 72c0 4 1 8 2 11l14 -3l-1 -8c0 -22 25 -56 60 -56c21 0 47 17 75 66c25 43 55 102 86 168h-34l7 31h41 c77 164 159 358 180 428c-14 30 -38 50 -73 66l5 16c130 -51 168 -162 172 -201l34 -309h67l-6 -31h-59l11 -90c10 -96 22 -136 53 -136c23 0 70 39 118 132l37 74zM523 273l-34 316c-3 29 -7 53 -13 75c-30 -85 -99 -248 -165 -391h212'], + 0x1D49E: [757,8,568,55,621,'621 215l-29 -59c-62 -118 -164 -164 -262 -164c-208 0 -275 160 -275 304c0 132 74 461 382 461c113 0 160 -64 160 -136c0 -65 -39 -136 -106 -170l-6 14c57 29 96 95 96 154c0 61 -41 114 -144 114c-280 0 -306 -387 -306 -452c0 -146 69 -265 217 -265 c86 0 179 49 229 148l30 58'], + 0x1D49F: [764,8,867,39,920,'920 215c-33 -68 -94 -130 -196 -130h-9c-53 -56 -120 -93 -195 -93c-84 0 -135 59 -192 106c-64 -77 -158 -106 -206 -106c-41 0 -83 18 -83 55c0 52 57 129 164 129c31 0 58 -8 83 -21c10 22 18 47 23 74l65 325c6 27 10 52 10 74c0 23 -4 45 -12 65 c-116 -57 -185 -165 -185 -264c0 -49 18 -96 55 -133l-11 -10c-40 40 -59 91 -59 144c0 104 70 220 189 281c-9 14 -22 29 -37 40l9 13c18 -14 34 -28 47 -44c49 22 108 37 171 37c210 0 298 -150 298 -318c0 -120 -46 -250 -121 -339c91 1 138 46 178 122zM276 134 c-22 12 -46 18 -73 18c-99 0 -148 -64 -148 -105c0 -22 35 -31 61 -31c49 0 117 39 160 118zM771 454c0 149 -60 279 -220 279c-58 0 -112 -10 -157 -30c43 -58 53 -119 53 -156c0 -7 0 -15 -1 -20l-59 -301c-7 -43 -24 -79 -45 -109c56 -45 104 -101 178 -101 c51 0 98 31 137 80c-4 3 -4 5 -4 9c0 7 6 15 13 15c4 0 6 -3 6 -3c60 87 99 218 99 337'], + 0x1D4A2: [757,406,637,51,690,'690 215c-45 -77 -98 -134 -153 -180l-56 -287c-26 -135 -162 -154 -199 -154c-143 0 -199 107 -199 149c0 128 185 139 368 252l18 88c-53 -57 -130 -91 -202 -91c-112 0 -216 80 -216 272c0 153 71 493 386 493c113 0 160 -64 160 -136c0 -65 -39 -136 -106 -170l-6 14 c57 29 96 95 96 154c0 61 -41 114 -144 114c-280 0 -313 -408 -313 -518c0 -147 66 -199 144 -199c73 0 156 44 208 105l39 201h78l-51 -261c48 42 94 94 134 161zM447 -27c-174 -104 -340 -119 -340 -230c0 -26 43 -125 175 -125c31 0 99 11 116 101'], + 0x1D4A5: [787,406,679,55,749,'733 722c0 27 -6 45 -19 45c-17 0 -47 -31 -89 -109c11 -3 21 -4 30 -4c33 0 78 8 78 68zM749 722c0 -69 -52 -91 -94 -91c-11 0 -24 2 -39 6c-17 -44 -21 -143 -86 -481l-28 -147c80 48 157 116 216 213l14 -7c-64 -107 -147 -177 -234 -228l-46 -239 c-26 -135 -162 -154 -198 -154c-143 0 -199 107 -199 149c0 115 176 135 361 221l36 191c58 290 68 453 98 509c-70 34 -150 82 -207 82c-65 0 -91 -18 -136 -108l-15 7c47 93 78 125 151 125c65 0 148 -52 220 -86c49 70 100 103 136 103c30 0 50 -23 50 -65zM412 -57 c-174 -80 -334 -100 -334 -200c0 -26 43 -125 176 -125c31 0 98 11 115 101'], + 0x1D4A6: [788,8,881,62,935,'589 722c0 23 -4 33 -9 33c-13 0 -35 -48 -56 -108c32 8 65 29 65 75zM935 215l-31 -62c-54 -104 -77 -161 -150 -161c-127 0 -165 288 -240 390c-30 -37 -54 -75 -72 -109l-29 -143c-19 -95 -100 -138 -178 -138c-87 0 -173 52 -173 138c0 73 75 151 110 169l7 -13 c-33 -17 -101 -92 -101 -156c0 -61 65 -112 130 -112c56 0 113 38 133 137l72 374c8 38 19 73 30 103c-80 22 -113 109 -165 109c-22 0 -89 -31 -91 -147h-15c1 122 74 163 106 163c63 0 94 -90 172 -111c36 85 88 135 121 135c19 0 34 -19 34 -59c0 -59 -43 -84 -86 -91 c-11 -34 -21 -71 -28 -102l-37 -191c95 151 309 361 412 434c19 15 30 16 38 16c9 0 14 -5 14 -11c-7 -59 -7 -87 -64 -91c-6 0 -13 2 -19 8c-33 -11 -164 -127 -272 -252c109 -117 107 -426 191 -426c65 0 85 48 134 144l31 62'], + 0x1D4A9: [783,8,832,42,896,'896 719c0 -14 -2 -27 -5 -33c-16 0 -42 12 -68 12c-29 0 -56 -14 -68 -71l-111 -572c14 -26 32 -47 58 -47c42 0 82 41 133 140l36 74l14 -7l-36 -72c-48 -94 -90 -151 -144 -151c-65 0 -134 44 -172 139l-182 458l-38 86c-50 -281 -84 -446 -110 -544 c-29 -110 -69 -139 -100 -139c-39 0 -61 35 -61 76h15c0 -38 20 -60 46 -60c32 0 56 48 76 127c25 98 60 269 116 572c-18 28 -39 44 -74 60l5 16c80 -33 159 -89 203 -190l181 -456l18 -49l105 541c21 96 95 128 158 128c2 -4 5 -21 5 -38'], + 0x1D4AA: [757,8,788,53,841,'841 215c-34 -68 -71 -153 -173 -153c-30 0 -57 6 -79 11c-68 -50 -152 -81 -248 -81c-184 0 -288 115 -288 291c0 244 171 474 438 474c182 0 288 -113 288 -292c0 -146 -63 -288 -171 -378c19 -5 38 -9 60 -9c91 0 124 74 159 144zM705 502c0 142 -61 231 -214 231 c-291 0 -364 -322 -364 -487c0 -141 60 -230 214 -230c84 0 150 28 202 71c-10 5 -24 7 -24 20c0 7 5 14 13 14c6 0 10 -3 32 -16c108 108 141 289 141 397'], + 0x1D4AB: [764,8,833,55,887,'887 215c-39 -76 -136 -176 -284 -176c-73 0 -144 26 -204 69c-27 -78 -103 -116 -173 -116c-87 0 -171 52 -171 138h15c0 -61 64 -112 129 -112c56 0 112 38 131 137l3 14c-51 61 -83 139 -83 226c0 104 45 229 156 299c-9 22 -25 41 -47 57l10 13c25 -18 43 -37 59 -57 c49 26 112 42 186 42c174 0 261 -130 261 -254c0 -135 -107 -308 -321 -308c-56 0 -108 15 -133 28c-14 -73 -14 -82 -17 -91c59 -45 128 -69 199 -69c141 0 234 97 271 167zM798 510c0 106 -54 215 -199 215c-63 0 -117 -13 -161 -33c37 -58 44 -115 44 -147 c0 -8 -1 -15 -1 -18c-5 -49 -6 -41 -55 -286c20 -11 58 -30 128 -30c216 0 244 238 244 299zM417 628c0 16 -1 32 -6 49c-104 -63 -146 -180 -146 -282c0 -78 28 -148 72 -205l71 364c4 23 9 47 9 74'], + 0x1D4AC: [757,244,788,56,841,'707 454c0 156 -83 279 -218 279c-297 0 -358 -335 -358 -452c0 -143 72 -260 223 -291c265 111 353 304 353 464zM841 215c-112 -218 -303 -250 -408 -250c-25 0 -51 2 -73 5c-65 -27 -118 -57 -171 -105l271 -34c12 -1 22 -3 33 -3c61 0 100 26 115 58l12 19l27 -6 c-40 -95 -109 -141 -187 -141c-10 0 -21 1 -31 3c-237 32 -250 35 -263 35c-31 0 -46 -13 -66 -40l-27 2c9 14 15 26 23 37c72 100 152 148 228 182c-165 32 -268 143 -268 330c0 203 156 450 433 450c174 0 294 -141 294 -312c0 -162 -108 -350 -394 -462 c13 -1 31 -3 44 -3c247 0 351 158 394 242'], + 0x1D4AE: [764,8,608,62,662,'662 215c-28 -54 -73 -103 -137 -127c-49 -61 -147 -96 -243 -96c-140 0 -220 73 -220 143c0 13 0 29 8 42c8 15 22 21 35 21c17 0 32 -11 32 -22s-13 -20 -13 -41c0 -50 24 -119 158 -119c61 0 126 23 165 70c-8 1 -15 6 -15 15c0 8 5 15 13 15c4 0 5 -2 18 -8 c12 21 18 44 18 71c0 167 -161 260 -172 411l-101 -200l-13 8l116 230c6 70 48 136 126 136l27 -44c-54 0 -93 -18 -114 -52c-3 -5 -17 -24 -17 -62c0 -131 226 -220 226 -427c0 -24 -6 -48 -18 -68c45 20 79 58 106 111'], + 0x1D4AF: [897,8,555,43,971,'971 759l-12 -10c-72 60 -139 62 -183 62c-132 0 -203 -73 -301 -101c23 -35 42 -81 42 -134c0 -16 -1 -33 -5 -49l-76 -397c-4 -22 -13 -43 -24 -60c5 -1 11 -1 16 -1c93 0 126 75 166 153l14 -7c-33 -68 -79 -162 -180 -162c-9 0 -18 2 -26 3c-35 -43 -91 -64 -145 -64 c-87 0 -171 52 -171 138h15c0 -61 63 -112 128 -112c38 0 75 17 103 57c-11 3 -15 10 -15 15c0 6 7 14 13 14c0 0 3 0 13 -5c8 15 15 34 18 56l82 414c6 26 8 49 8 71s-2 43 -10 63c-15 -2 -28 -4 -43 -4c-172 0 -355 89 -355 167c0 22 23 31 58 31c77 0 210 -44 285 -99 c25 -17 47 -36 65 -57c100 29 182 96 298 96c73 0 142 -11 222 -78zM425 735c-12 16 -28 32 -48 48c-75 58 -216 98 -282 98c-22 0 -36 -5 -36 -15c0 -66 162 -138 305 -138c21 0 42 3 61 7'], + 0x1D4B0: [798,8,657,51,710,'710 215l-37 -72c-62 -123 -94 -151 -167 -151c-44 0 -56 29 -56 69c0 35 9 82 17 120c-89 -111 -187 -189 -241 -189c-96 0 -175 70 -175 219c0 187 106 318 106 455c0 49 -15 87 -57 119l9 13c93 -69 115 -161 115 -212c0 -76 -107 -245 -107 -416 c0 -85 30 -154 122 -154c39 0 143 82 234 200l104 533h78l-115 -593c-10 -44 -17 -79 -17 -103c0 -22 7 -32 27 -32h1c28 1 77 69 107 127l38 74'], + 0x1D4B1: [816,8,606,52,659,'659 215c-34 -68 -71 -130 -134 -130c-26 0 -47 16 -65 44c-60 -86 -138 -137 -223 -137c-98 0 -185 73 -185 226c0 47 8 102 26 163c30 100 79 190 79 285c0 49 -15 87 -57 119l9 13c93 -69 115 -161 115 -212c0 -53 -46 -144 -68 -212c-21 -59 -36 -131 -36 -195 c0 -89 32 -163 127 -163c64 0 135 58 187 167c-31 84 -44 202 -44 290c0 133 21 219 43 265c22 47 52 78 91 78c69 0 73 -89 73 -148c0 -134 -16 -356 -128 -525c16 -27 35 -43 56 -43c48 0 82 50 120 122zM523 655c0 86 -16 117 -34 117c-11 0 -24 0 -42 -39 c-26 -58 -41 -151 -41 -260c0 -97 14 -199 37 -270c48 109 80 262 80 452'], + 0x1D4B2: [816,8,948,48,1001,'1001 215c-34 -68 -73 -130 -135 -130c-26 0 -47 16 -65 44c-59 -86 -130 -137 -203 -137c-83 0 -144 52 -162 163c-58 -108 -115 -163 -225 -163c-94 0 -163 67 -163 206c0 193 109 331 109 468c0 49 -15 87 -57 119l9 13c93 -69 115 -161 115 -212 c0 -75 -113 -266 -113 -434c0 -77 27 -136 113 -136c127 0 188 208 234 417l27 138h78l-39 -198c-17 -88 -26 -158 -26 -212c0 -101 32 -145 112 -145c56 0 117 56 166 161c-32 83 -45 205 -45 296c0 133 22 219 44 265c22 47 52 78 91 78c69 0 73 -88 73 -146 c0 -225 -50 -401 -129 -527c16 -27 35 -43 56 -43c48 0 83 50 121 122zM865 655c0 90 -16 117 -39 117c-7 0 -21 -2 -38 -39c-26 -58 -42 -151 -42 -260c0 -100 15 -204 39 -277c47 110 80 266 80 459'], + 0x1D4B3: [757,8,672,60,725,'725 215l-44 -88c-44 -85 -82 -135 -119 -135c-78 0 -124 52 -156 219l-9 46c-65 -144 -143 -265 -234 -265c-71 0 -103 47 -103 107c0 70 44 155 114 191l11 -21c-61 -31 -102 -109 -102 -170c0 -39 16 -83 80 -83c84 0 161 132 226 283l-44 224 c-23 115 -38 210 -81 210c-31 0 -61 -26 -126 -152l-14 8c70 139 93 168 137 168c91 0 132 -73 163 -236l18 -92c33 85 61 166 87 224c34 74 103 102 160 102c12 0 23 -1 34 -4c0 0 1 -2 1 -6c0 -17 -8 -56 -15 -62c-17 3 -49 22 -81 22c-27 0 -56 -13 -77 -60 c-28 -64 -62 -161 -101 -260l34 -176c23 -118 33 -193 78 -193c26 0 61 33 113 135l36 71'], + 0x1D4B4: [798,406,649,51,702,'702 215c-51 -85 -110 -146 -173 -193l-53 -274c-26 -135 -159 -154 -198 -154c-143 0 -200 107 -200 149c0 124 183 137 367 243l37 192c-92 -127 -195 -186 -256 -186c-96 0 -175 70 -175 219c0 184 106 318 106 455c0 49 -15 87 -57 119l9 13 c93 -69 115 -161 115 -212c0 -83 -107 -239 -107 -416c0 -85 30 -154 122 -154c44 0 155 58 250 200l104 533h78l-137 -703c58 44 110 101 155 176zM441 -36c-174 -97 -340 -114 -340 -221c0 -26 45 -125 177 -125c31 0 99 22 115 101'], + 0x1D4B5: [764,14,673,47,732,'732 745l-87 -98l-482 -546c75 -11 321 -48 414 -48c11 0 50 2 63 28l72 141l15 -7c-70 -136 -108 -229 -150 -229c-112 0 -353 50 -460 50c-14 0 -21 -7 -55 -44l-15 16l49 54l519 588c-86 20 -211 49 -298 49c-48 0 -86 -9 -97 -33l-9 -21l-16 6c40 82 47 104 52 108 c7 4 23 5 47 5c79 0 231 -18 307 -42c19 -7 33 -10 44 -10c19 0 31 10 51 29l19 21'], + 0x1D4B6: [398,8,567,23,620,'620 215l-28 -54c-84 -161 -127 -169 -171 -169c-62 0 -86 44 -88 98c-35 -57 -91 -98 -150 -98c-104 0 -160 73 -160 164c0 129 114 242 237 242c77 0 111 -56 118 -56c13 0 38 48 64 48h21l-46 -234c-5 -29 -13 -66 -13 -96c0 -29 8 -51 32 -51c57 0 110 95 143 160 l27 53zM371 325c-28 31 -63 49 -111 49c-82 0 -161 -114 -161 -232c0 -76 35 -126 84 -126c63 0 128 56 154 136'], + 0x1D4B7: [788,8,465,18,519,'352 257c0 71 -28 117 -76 117c-54 0 -110 -18 -154 -54c-6 -52 -14 -108 -26 -167c-1 -10 -2 -19 -2 -28c0 -72 56 -109 111 -109c33 0 60 17 82 44c-11 2 -14 9 -14 14c0 8 7 14 14 14c0 0 3 0 16 -6c32 53 49 126 49 175zM282 694c0 61 -103 78 -118 78l-3 -2 c-21 -26 -8 -172 -32 -401c71 112 153 249 153 325zM519 215c-34 -67 -72 -159 -169 -162c-38 -37 -87 -61 -145 -61c-110 0 -187 76 -187 147c0 5 0 12 2 17c75 387 67 584 97 623c4 5 39 9 47 9c18 0 134 -9 134 -96c0 -85 -90 -230 -163 -344c42 32 93 50 141 50 c101 0 152 -69 152 -156c0 -63 -24 -125 -63 -172c76 11 106 85 139 151'], + 0x1D4B8: [398,8,406,21,459,'459 215l-30 -59c-58 -116 -155 -164 -239 -164c-91 0 -169 57 -169 154c0 75 62 252 236 252c75 0 123 -29 123 -78c0 -29 -17 -50 -43 -50c-17 0 -30 13 -30 30c0 16 10 30 25 38c-10 33 -52 36 -75 36c-119 0 -161 -188 -161 -250c0 -77 43 -108 100 -108 c74 0 169 54 217 148l32 58'], + 0x1D4B9: [788,8,567,23,620,'554 753c0 4 -4 19 -4 19c-25 -18 -75 -284 -109 -476c26 2 48 38 63 104c36 149 50 279 50 353zM620 215l-28 -54c-84 -161 -124 -166 -171 -169c-61 0 -83 47 -87 100c-35 -58 -91 -100 -151 -100c-104 0 -160 73 -160 164c0 121 108 242 237 242c46 0 81 -21 109 -50 c31 179 80 420 112 439l70 1c11 0 18 -14 18 -35c0 -76 -14 -207 -49 -356c-19 -84 -48 -117 -79 -117h-4l-21 -124c-5 -27 -12 -64 -12 -94c0 -29 8 -53 32 -53c57 0 107 92 143 160l27 53zM365 329c-26 29 -59 45 -105 45c-77 0 -161 -114 -161 -232 c0 -76 35 -126 84 -126c63 0 128 56 154 136l1 8c0 4 10 75 27 169'], + 0x1D4BB: [788,390,247,-83,300,'300 215c-45 -88 -101 -149 -147 -149h-70l-13 -66l-75 -390h-78l75 390c76 390 76 478 107 718c9 62 22 70 84 70c55 0 113 -39 113 -104c0 -168 -96 -267 -175 -368l-33 -218h72c42 0 95 65 126 124zM281 684c0 57 -46 88 -103 88c-25 0 -30 -6 -32 -58 c-6 -102 -4 -206 -22 -368c75 93 157 186 157 338'], + 0x1D4BD: [788,8,524,-10,577,'577 215l-36 -72c-63 -120 -76 -151 -152 -151c-48 0 -61 33 -61 72c0 71 46 161 46 256c0 31 -6 54 -28 54c-55 0 -146 -58 -248 -224l-29 -150h-79l31 160c75 386 66 580 96 619c4 5 39 9 47 9c18 0 134 -9 134 -96s-96 -242 -171 -358l-19 -125 c90 129 174 189 238 189c54 0 104 -43 104 -115c0 -63 -46 -172 -46 -230c0 -20 6 -35 22 -35c25 0 43 17 101 130l37 74zM282 694c0 61 -103 78 -118 78l-3 -2c-21 -26 -5 -167 -30 -397c71 112 151 245 151 321'], + 0x1D4BE: [632,8,244,30,298,'213 594c0 -31 -35 -56 -57 -56s-39 17 -39 38c0 31 35 56 57 56s39 -17 39 -38zM298 215l-38 -75c-47 -89 -101 -148 -174 -148c-44 0 -56 34 -56 76c0 30 5 59 23 147l-14 7c29 58 52 117 57 152h-23l2 16h81c9 0 16 -4 16 -9c-30 -100 -69 -303 -69 -332 c0 -18 5 -26 19 -26c21 0 74 28 124 125l37 74'], + 0x1D4BF: [632,398,215,-309,268,'213 594c0 -31 -35 -56 -57 -56s-39 17 -39 38c0 31 35 56 57 56s39 -17 39 -38zM268 215c-53 -89 -113 -153 -174 -201l-52 -266c-26 -135 -162 -146 -198 -146c-120 0 -153 99 -153 141c0 120 152 136 317 234l45 238l-14 7c29 58 48 117 53 152h-19l2 16h81 c9 0 16 -4 16 -9c-17 -56 -12 -22 -38 -153l-36 -189c55 46 110 104 157 183zM4 -46c-154 -88 -290 -106 -290 -211c0 -26 21 -117 130 -117c31 0 97 3 114 93'], + 0x1D4C0: [788,8,456,-10,510,'282 694c0 61 -103 78 -118 78l-3 -2c-21 -26 -5 -167 -31 -399c70 111 152 247 152 323zM510 215l-32 -62c-53 -104 -78 -161 -150 -161c-103 0 -107 93 -180 193c-27 -37 -52 -81 -70 -130l-10 -55h-78l31 160c75 386 66 580 96 619c4 5 39 9 47 9c15 0 134 -8 134 -94 c0 -87 -98 -245 -173 -362l-27 -176l-4 -22c52 92 152 199 254 272c20 14 29 15 37 15c9 0 15 -5 15 -10c-6 -60 -7 -87 -65 -91c-6 0 -11 1 -18 8c-26 -9 -73 -38 -119 -86c105 -115 75 -226 130 -226c65 0 85 48 135 144l32 62'], + 0x1D4C1: [788,8,265,17,319,'319 215l-38 -72c-47 -94 -104 -151 -177 -151c-68 0 -87 57 -87 119c0 16 1 33 4 49c75 386 66 580 96 619c4 5 39 9 47 9c15 0 134 -8 134 -94c0 -87 -98 -244 -172 -361c-6 -55 -15 -113 -28 -177c-4 -27 -11 -60 -11 -87c0 -30 7 -52 31 -52c30 0 93 23 149 131 l37 74zM282 694c0 61 -95 78 -113 78c0 0 -5 0 -8 -2c-21 -26 -5 -167 -31 -398c70 112 152 246 152 322'], + 0x1D4C2: [398,8,753,12,806,'806 215l-36 -72c-65 -125 -82 -151 -154 -151c-48 0 -61 33 -61 72c0 71 48 167 48 256c0 31 -5 54 -28 54c-37 0 -93 -27 -169 -126c-4 -27 -11 -57 -17 -92l-30 -157l-78 2l31 159c8 45 23 109 23 160c0 31 -2 54 -26 54c-37 0 -93 -27 -171 -128l-48 -246h-78l41 215 l-14 7c29 58 52 117 57 152h-23l2 16h81c9 0 16 -4 16 -9l-22 -83c59 67 113 100 159 100c55 0 99 -38 99 -108c63 73 119 108 167 108c54 0 102 -43 102 -115c0 -62 -44 -171 -44 -228c0 -21 5 -37 22 -37c20 0 37 9 99 130l38 74'], + 0x1D4C3: [398,8,520,12,573,'573 215l-36 -72c-59 -113 -78 -151 -152 -151c-48 0 -61 33 -61 72c0 71 48 167 48 256c0 31 -7 54 -29 54c-48 0 -125 -45 -213 -169l-40 -205h-78l41 215l-14 7c29 58 52 117 57 152h-23l2 16h81c9 0 16 -4 16 -9c-12 -38 -20 -68 -32 -122c77 95 149 139 203 139 c55 0 102 -43 102 -115c0 -67 -45 -176 -45 -230c0 -20 6 -35 23 -35c24 0 41 17 98 130l38 74'], + 0x1D4C5: [398,398,485,-118,538,'365 248c0 73 -37 126 -100 126c-47 0 -88 -10 -122 -39c-6 -52 -26 -157 -45 -261c9 -4 16 -12 24 -22c28 -34 48 -44 99 -44c33 0 61 19 85 52c-15 0 -16 9 -16 14c0 8 6 14 14 14c0 0 3 0 16 -6c17 29 45 100 45 166zM538 215c-34 -67 -74 -159 -173 -162 c-37 -37 -87 -61 -144 -61c-55 0 -81 12 -112 50c-5 6 -10 11 -15 15c-30 -153 -89 -433 -125 -454l-70 -1c-12 0 -17 14 -17 35c0 221 79 358 134 411l31 170l-8 4l13 25c14 85 17 126 17 143h40c17 0 33 0 34 -3c3 -6 3 -10 3 -24c32 23 71 35 119 35 c119 0 177 -73 177 -165c0 -65 -30 -125 -61 -163c78 11 104 80 142 152zM10 23c-33 -44 -113 -179 -113 -386c0 -8 2 -17 3 -19c25 18 75 235 110 405'], + 0x1D4C6: [398,397,486,23,540,'540 215c-30 -62 -58 -107 -136 -116l-84 -437c28 45 96 88 136 91l2 -16c-33 -5 -111 -44 -147 -128c-2 -3 -7 -6 -7 -6s-65 8 -70 10l90 475c-34 -54 -86 -96 -141 -96c-104 0 -160 73 -160 164c0 126 111 242 237 242c77 0 111 -56 118 -56c13 0 38 48 64 48h18 l-53 -276c61 8 83 41 118 108zM371 325c-28 31 -63 49 -111 49c-81 0 -161 -111 -161 -232c0 -76 35 -126 84 -126c50 0 99 33 130 87c-4 1 -19 4 -19 17c0 7 5 14 13 14c4 0 5 -3 18 -8c4 8 8 17 10 26'], + 0x1D4C7: [421,0,442,39,495,'495 221c-6 -13 -18 -44 -78 -44c-40 0 -74 35 -74 84c0 21 5 43 18 67c-50 -19 -122 -107 -179 -260l-13 -68h-78l46 238c9 48 22 97 22 121c0 8 -2 13 -6 13c-23 0 -32 -26 -100 -157l-14 7c65 128 83 176 118 176c48 0 61 -46 61 -98c0 -56 -15 -119 -18 -134l-2 -10 c39 85 96 176 189 242c20 14 52 23 60 23c9 0 16 -4 16 -9c-7 -60 -30 -88 -87 -92c-12 -21 -17 -42 -17 -60c0 -39 25 -66 58 -66c50 0 60 24 65 35'], + 0x1D4C8: [421,8,413,-26,467,'467 215c-29 -55 -57 -127 -121 -153c-31 -39 -92 -70 -185 -70s-187 54 -187 109c0 29 3 59 46 59c33 0 62 -20 62 -35c0 0 -3 -7 -7 -7c-6 0 -18 7 -27 7c-8 0 -14 -5 -14 -24c0 -44 45 -85 127 -85c65 0 99 18 115 46c-8 2 -16 7 -16 16c0 8 5 14 13 14c4 0 5 0 12 -4 c1 6 1 11 1 17c0 84 -170 137 -172 229l-61 -119l-14 7l87 171c12 19 31 28 56 28l27 -44c-28 0 -74 0 -74 -42c0 -66 234 -132 234 -210c0 -13 -2 -26 -9 -39c43 26 64 80 92 136'], + 0x1D4C9: [655,8,286,23,339,'339 215l-36 -72c-48 -94 -104 -151 -177 -151c-66 0 -90 54 -90 115c0 39 10 74 17 108l-14 7c18 35 47 129 70 223h-86l4 23h87c17 73 30 144 30 187h59c9 0 15 -4 15 -9c-7 -25 -22 -95 -39 -178h143l-2 -23h-144l-56 -285c-4 -20 -12 -57 -12 -88c0 -30 6 -55 32 -55 c30 0 91 23 147 131l38 74'], + 0x1D4CA: [390,8,540,39,593,'593 215l-37 -72c-62 -123 -79 -151 -152 -151c-44 0 -56 29 -56 69c0 30 7 66 13 100c-88 -119 -171 -169 -217 -169c-74 0 -104 48 -104 122c0 41 9 81 13 101l-14 7c29 58 52 117 57 152h-23l2 16h81c9 0 16 -4 16 -9c-17 -56 -20 -62 -46 -194 c-8 -44 -14 -84 -14 -114c0 -34 9 -57 32 -57c37 0 128 46 228 200l34 174h78l-46 -234c-9 -47 -18 -83 -18 -108c0 -21 6 -32 25 -32c27 0 66 74 96 132l38 74'], + 0x1D4CB: [420,8,491,39,545,'545 215c-16 -32 -46 -43 -77 -43c-12 0 -25 1 -36 5c-61 -138 -184 -185 -245 -185c-57 0 -141 52 -141 156c0 21 3 39 7 67l-14 7c34 67 59 137 59 168h62c4 0 5 -3 5 -3l-1 -6c-4 -26 -44 -208 -44 -260c0 -77 35 -105 74 -105c53 0 145 65 183 188 c-30 24 -52 57 -52 99c0 70 49 117 88 117c46 0 49 -55 49 -98c0 -37 -4 -87 -24 -131c11 -2 21 -4 30 -4c14 0 47 4 62 35zM394 324c0 35 -9 49 -20 49c-15 0 -33 -31 -33 -70c0 -34 17 -62 40 -82c8 31 13 65 13 103'], + 0x1D4CC: [420,8,649,39,702,'702 215c-16 -32 -47 -43 -78 -43c-12 0 -23 1 -35 5c-60 -138 -146 -185 -207 -185c-37 0 -75 22 -97 67c-35 -43 -80 -67 -135 -67c-54 0 -107 47 -107 142c0 32 4 49 10 81l-14 7c34 67 59 137 59 168h62c4 0 5 -3 5 -3l-1 -6l-38 -194c-5 -30 -10 -63 -10 -93 c0 -45 10 -78 45 -78c82 0 106 149 130 270h78l-19 -99c-9 -47 -12 -75 -12 -95c0 -54 18 -76 52 -76c53 0 121 62 148 184c-32 24 -56 60 -56 103c0 70 50 117 89 117c44 0 48 -46 48 -94c0 -39 -5 -89 -25 -135c11 -2 21 -4 30 -4c14 0 47 4 62 35zM551 324 c0 35 -9 49 -19 49c-16 0 -34 -31 -34 -70c0 -35 19 -65 44 -86c7 31 9 68 9 107'], + 0x1D4CD: [398,8,488,25,541,'541 215l-44 -88c-45 -85 -84 -135 -121 -135c-59 0 -96 24 -126 150c-20 -46 -41 -87 -65 -117c-21 -24 -51 -33 -80 -33c-33 0 -80 22 -80 74h23c0 -41 42 -50 57 -50c25 0 45 2 63 23c28 33 52 86 74 142l-1 6c-23 116 -30 187 -67 187c-31 0 -56 -33 -121 -159l-14 7 c70 139 92 176 138 176c53 0 87 -26 114 -102l9 19c29 59 69 83 113 83c45 0 86 -35 86 -86c0 -22 -18 -36 -36 -36c-20 0 -35 17 -35 36c0 40 -4 62 -22 62c-34 0 -65 -28 -85 -70l-19 -40c6 -22 11 -48 18 -78c23 -118 22 -170 56 -170c26 0 62 33 114 135l37 71'], + 0x1D4CE: [390,398,530,-39,584,'584 215c-51 -85 -111 -147 -173 -194l-52 -273c-26 -135 -164 -146 -200 -146c-143 0 -198 99 -198 141c0 124 181 137 364 243l33 170c-88 -117 -169 -164 -214 -164c-74 0 -104 48 -104 122c0 41 7 71 13 101l-14 7c29 58 52 117 57 152h-23l2 16h81c9 0 16 -4 16 -9 c-17 -56 -20 -62 -46 -194c-8 -44 -14 -84 -14 -114c0 -34 9 -57 32 -57c37 0 126 45 225 195l35 179h78l-45 -234l-21 -109c56 44 108 100 152 175zM321 -38c-173 -96 -337 -112 -337 -219c0 -26 42 -117 175 -117c31 0 98 3 115 93'], + 0x1D4CF: [404,8,437,-13,490,'490 215l-71 -138c-43 -85 -87 -85 -104 -85c-110 0 -132 51 -236 51c-14 0 -32 -9 -71 -48l-21 13c26 39 55 75 99 93l217 192c-86 19 -131 48 -161 48c-17 0 -30 -9 -42 -34l-47 -92l-14 7c92 182 96 182 116 182c40 0 113 -44 180 -44c28 0 54 8 76 27l18 17l16 -18 l-323 -285c76 -2 117 -49 211 -49c10 0 57 1 79 46l64 124'], + 0x1D4D0: [785,10,796,30,853,'853 216l-3 -5l-35 -69c-60 -117 -100 -152 -147 -152c-80 0 -125 75 -132 141l-12 108h-226c-34 -71 -65 -135 -91 -179s-60 -70 -99 -70c-47 0 -78 30 -78 74c0 4 1 9 3 13l19 -7c-1 -2 -1 -6 -1 -6c0 -33 23 -54 57 -54c14 0 40 10 73 65c23 42 53 99 84 164h-32l6 37 h43c79 170 164 371 181 433c-12 24 -30 42 -61 55l8 21c131 -50 179 -141 185 -203l34 -306h55l-7 -37h-44l9 -87c11 -99 21 -134 50 -134c20 0 54 34 104 132l35 71l2 5zM520 276l-34 313c-2 27 -5 49 -9 70c-31 -86 -97 -243 -162 -383h205'], + 0x1D4D1: [767,10,913,44,970,'641 406c-21 7 -47 13 -77 13c-48 0 -91 -8 -91 -19c0 -19 41 -23 83 -23c33 0 62 10 85 29zM762 183c0 32 -4 138 -76 197c-37 -20 -81 -32 -130 -32c-50 0 -104 16 -104 52c0 24 43 47 112 47c35 0 69 -5 102 -15c30 36 46 87 46 136c0 77 -46 163 -169 163 c-54 0 -104 -13 -146 -34c44 -57 58 -116 58 -152c0 -7 0 -13 -1 -18l-59 -301c-5 -27 -13 -52 -24 -74c80 -52 148 -134 232 -134c47 0 86 13 113 41c-9 3 -11 10 -11 15c0 9 7 17 17 17c6 0 9 -3 15 -5c16 26 25 57 25 97zM970 216l-3 -5c-32 -65 -69 -155 -166 -160 c-51 -41 -124 -61 -198 -61c-101 0 -178 83 -249 134c-65 -97 -181 -134 -237 -134c-42 0 -73 18 -73 57c0 53 55 147 206 147c9 0 18 -2 27 -3c4 12 6 25 9 38l65 325c7 35 12 66 12 93c0 11 -2 20 -3 29c-90 -60 -140 -160 -140 -250c0 -46 11 -93 47 -128l-13 -13 c-37 36 -55 88 -55 141c0 99 57 211 155 276c-8 17 -20 33 -39 47l11 18c21 -16 38 -32 54 -49c46 26 102 41 163 41c173 0 271 -87 271 -192c0 -60 -34 -120 -89 -161c86 -47 146 -129 146 -211c0 -48 -17 -88 -44 -120c65 16 86 78 121 146l2 5zM267 164c-4 0 -10 1 -13 1 c-140 0 -189 -73 -189 -118c0 -12 5 -29 43 -29c49 0 120 44 159 146'], + 0x1D4D2: [759,10,568,39,625,'625 216l-2 -5l-29 -56c-61 -120 -165 -165 -264 -165c-222 0 -291 161 -291 306c0 132 70 463 398 463c114 0 162 -65 162 -138c0 -66 -39 -139 -106 -172l-9 19c56 29 95 94 95 151c0 60 -41 112 -142 112c-271 0 -290 -384 -290 -450c0 -144 66 -263 201 -263 c85 0 176 50 227 147l28 56l3 5'], + 0x1D4D3: [767,10,880,36,937,'937 216l-2 -5c-24 -47 -78 -129 -198 -129h-5c-55 -56 -126 -92 -212 -92c-81 0 -131 54 -185 98c-65 -71 -156 -98 -213 -98c-41 0 -86 18 -86 57c0 53 59 131 167 131c27 0 51 -5 71 -14c8 19 15 40 20 65l65 325c5 27 9 52 9 74s-3 43 -10 61 c-114 -57 -181 -164 -181 -260c0 -49 17 -96 53 -131l-13 -13c-40 40 -61 91 -61 145c0 106 70 220 189 282c-10 13 -23 25 -37 37l13 18c18 -14 35 -27 50 -42c49 21 105 34 167 34c211 0 327 -151 327 -320c0 -119 -41 -248 -115 -336c83 4 128 45 165 118l3 5zM263 137 c-19 7 -38 13 -60 13c-98 0 -146 -63 -146 -103c0 -20 31 -29 59 -29c48 0 108 39 147 119zM755 454c0 148 -59 277 -217 277c-54 0 -104 -9 -147 -26c50 -54 73 -108 73 -154c0 -9 -1 -17 -2 -24l-59 -301c-9 -45 -26 -84 -49 -115c52 -45 97 -93 166 -93 c48 0 92 30 129 77c-8 4 -12 8 -12 14c0 8 7 17 16 17c0 0 4 0 6 -1c3 -1 4 -3 8 -4c55 87 88 216 88 333'], + 0x1D4D4: [759,10,569,39,627,'627 216l-3 -5l-29 -56c-61 -120 -170 -165 -275 -165c-150 0 -281 82 -281 205c0 95 70 176 164 218c-27 29 -46 67 -46 111c0 10 0 21 3 31c23 125 142 204 270 204c110 0 162 -56 162 -127c0 -40 -16 -85 -47 -129l-17 13c28 39 41 79 41 112c0 82 -67 103 -139 103 c-92 0 -148 -74 -167 -178c-4 -23 -7 -42 -7 -60c0 -22 3 -42 9 -57c30 7 63 11 94 11c41 0 78 -18 78 -47c0 -6 -1 -13 -5 -19c-11 -17 -46 -33 -65 -33c-48 0 -93 13 -128 36c-79 -58 -91 -169 -91 -201c0 -109 80 -165 182 -165c93 0 191 46 245 147l30 56l2 5zM411 400 c0 8 -22 19 -52 19c-29 0 -53 -4 -76 -12c12 -13 36 -30 84 -30c18 0 44 14 44 23'], + 0x1D4D5: [807,10,761,52,850,'850 772c0 -23 -19 -61 -31 -78l-1 -1h-2c-26 5 -53 6 -78 6c-89 0 -171 -26 -254 -42c11 -23 19 -49 19 -77c0 -12 -1 -25 -4 -38l-44 -235c39 -3 69 -5 92 -5c71 0 86 19 113 119c6 18 21 26 37 26c25 0 54 -15 54 -40c0 -5 -1 -10 -3 -16c-20 -39 -39 -65 -59 -84 c-6 -17 -10 -33 -10 -47c0 -38 23 -68 56 -68c48 0 57 21 61 29l2 5l20 -10l-3 -5c-6 -15 -19 -41 -80 -41c-43 0 -81 46 -81 100c0 4 1 7 1 11c-23 -12 -49 -16 -79 -16c-35 0 -75 7 -127 11l-28 -146c-18 -96 -100 -140 -195 -140c-88 0 -174 52 -174 140h21 c0 -60 62 -109 126 -109c49 0 97 36 117 134l26 127h-43h-5l21 29h1h31l46 219c7 37 11 68 11 95v19c-11 -2 -24 -2 -37 -2c-172 0 -247 70 -247 115c0 36 39 50 85 50c51 0 112 -15 154 -40c34 -21 67 -43 93 -69c106 34 219 96 376 96c16 0 22 -9 22 -22zM395 683 c-9 23 -23 42 -48 63c-31 26 -84 39 -130 39c-44 0 -77 -11 -77 -28c0 -22 50 -81 194 -81c21 0 40 3 61 7'], + 0x1D4D6: [759,408,664,35,722,'722 216l-3 -5c-39 -78 -98 -130 -153 -176l-56 -287c-26 -137 -154 -156 -228 -156c-144 0 -201 108 -201 151c0 124 182 140 365 240l16 77c-64 -60 -124 -70 -153 -70c-188 0 -274 106 -274 274c0 36 4 74 12 116c41 219 152 379 390 379c114 0 175 -65 175 -138 c0 -66 -40 -137 -106 -172l-9 19c57 29 95 94 95 151c0 60 -54 112 -155 112c-182 0 -242 -152 -281 -358c-12 -60 -18 -116 -18 -162c0 -119 43 -193 171 -193c50 0 114 34 160 85l12 57l31 165h109v-3c-3 -18 4 21 -32 -166l-17 -87c47 40 94 86 127 152l3 5zM441 -46 c-173 -91 -332 -107 -332 -211c0 -25 42 -123 173 -123c30 0 96 11 113 99'], + 0x1D4D7: [801,22,803,39,861,'215 255c-91 -47 -155 -118 -155 -208c0 -17 5 -38 27 -38s56 25 86 83c10 21 21 63 42 163zM861 216l-3 -5l-35 -69c-48 -94 -105 -152 -179 -152c-78 0 -115 74 -115 144c0 9 0 17 1 26l42 213l-235 -71c-31 -165 -43 -210 -65 -238c-34 -56 -100 -86 -152 -86 c-46 0 -81 22 -81 69v4c0 100 78 184 182 236l60 301c5 28 9 54 9 76c0 51 -16 86 -57 119l13 18c99 -73 141 -147 141 -213c0 -9 -1 -19 -2 -28l-42 -228l234 71c41 204 63 306 86 337c26 35 72 43 101 43c17 0 69 -8 71 -97v-3c0 -99 -59 -208 -146 -264l-49 -263 c-4 -27 -11 -62 -11 -90c0 -26 5 -46 28 -46c3 0 9 0 13 1c49 13 91 45 133 129l36 71l2 5zM814 686c0 60 -27 76 -42 76s-35 -83 -76 -310c74 54 118 147 118 234'], + 0x1D4D8: [789,10,590,73,663,'663 722c0 -71 -53 -94 -96 -94c-12 0 -24 3 -38 6c-17 -48 -23 -169 -88 -504c-5 -27 -16 -49 -28 -66h11c92 0 161 79 201 157l3 5l19 -10l-2 -5c-34 -68 -118 -168 -221 -168c-8 0 -18 0 -27 1c-38 -37 -93 -54 -150 -54c-88 0 -174 52 -174 140c0 74 75 153 110 172 l9 -19c-33 -16 -98 -91 -98 -153c0 -60 61 -109 124 -109c34 0 63 13 85 45c-13 4 -14 16 -14 16c0 9 7 17 17 17c0 0 3 0 6 -1l5 -3c8 17 13 36 18 60c60 303 69 464 102 516c-69 31 -144 69 -195 69c-53 0 -89 -15 -134 -103l-20 9c47 95 80 133 154 133 c67 0 145 -50 213 -83c49 62 104 93 146 93c36 0 62 -23 62 -67zM642 722c0 18 -2 42 -17 42c-14 0 -43 -24 -84 -104c9 -2 18 -3 26 -3c40 0 75 13 75 65'], + 0x1D4D9: [789,408,692,39,764,'744 722c0 18 -3 42 -17 42c-15 0 -43 -24 -85 -104c9 -2 18 -3 26 -3c41 0 76 13 76 65zM764 722c0 -71 -53 -94 -96 -94c-11 0 -23 3 -37 6c-16 -45 -21 -143 -85 -478l-26 -138c79 48 159 106 207 203l2 5l20 -10l-3 -5c-54 -110 -144 -171 -231 -221l-47 -242 c-26 -138 -166 -156 -227 -156c-145 0 -202 108 -202 151c0 113 176 136 360 214l38 198c58 300 67 465 101 516c-69 32 -144 73 -195 73c-63 0 -89 -19 -134 -107l-19 9c47 95 79 133 153 133c60 0 141 -51 212 -85c50 64 105 95 147 95c36 0 62 -23 62 -67zM394 -69 c-170 -70 -326 -95 -326 -188c0 -25 41 -123 173 -123c19 0 94 6 113 99'], + 0x1D4DA: [790,10,894,47,952,'952 216l-3 -5l-30 -59c-53 -104 -78 -162 -152 -162c-127 0 -190 269 -264 374c-23 -31 -44 -64 -60 -92l-27 -142c-18 -96 -92 -140 -194 -140c-88 0 -175 52 -175 140c0 74 75 153 110 172l11 -19c-34 -16 -100 -92 -100 -153c0 -60 63 -109 127 -109 c55 0 98 36 117 134l73 374c8 40 21 77 35 109c-65 30 -96 100 -142 100c-21 0 -87 -29 -88 -144h-21c1 124 75 165 109 165c57 0 89 -74 151 -102c42 78 99 127 139 127c17 0 43 -10 43 -62c0 -73 -71 -90 -91 -94c-10 -33 -19 -68 -26 -99l-35 -177 c97 151 299 351 399 423c21 14 38 15 46 15c10 0 19 -6 19 -13c-6 -61 -8 -96 -68 -100c-7 0 -16 9 -22 15c-33 -15 -160 -125 -267 -250v-1c107 -116 120 -423 201 -423c64 0 83 47 131 143l30 60l3 5zM590 722c0 22 -2 29 -5 31h-1c-9 0 -31 -34 -56 -102 c34 9 62 29 62 71'], + 0x1D4DB: [758,10,789,36,846,'846 216l-2 -5l-35 -69c-48 -94 -104 -152 -178 -152c-106 0 -186 66 -257 117c-59 -76 -153 -117 -249 -117c-51 0 -89 18 -89 57c0 53 55 155 232 155c14 0 28 -2 41 -4c15 53 34 158 85 421c18 96 104 139 194 139c88 0 174 -51 174 -139c0 -74 -76 -155 -111 -173 l-9 19c34 17 99 91 99 154c0 60 -61 109 -125 109c-49 0 -97 -36 -117 -135c-48 -243 -69 -367 -92 -430c92 -51 157 -136 248 -136c33 0 90 39 133 123l36 71l3 5zM294 155c-16 6 -30 10 -46 10c-141 0 -191 -73 -191 -118c0 -21 18 -33 48 -33c67 0 138 42 188 138'], + 0x1D4DC: [785,77,966,43,1040,'1040 763c0 -14 -16 -58 -25 -66c-23 0 -48 36 -82 36c-5 0 -10 0 -15 -2l-82 -575c-3 -21 -7 -47 -7 -71c0 -36 7 -62 32 -62c24 2 71 64 104 127l36 71l3 5l19 -10l-2 -5l-36 -69c-63 -125 -97 -152 -171 -152c-56 0 -89 50 -89 127c0 13 0 29 3 43l57 406l-268 -450 c0 -5 2 -11 2 -17c0 -66 -46 -137 -85 -176c-10 9 -32 29 -32 54c0 26 9 54 19 74c-2 21 -9 44 -14 74l-79 464l-9 47c-115 -618 -162 -646 -210 -646c-26 0 -50 24 -65 52l-1 2c8 5 17 11 32 11c0 0 11 0 15 -2c0 -27 11 -43 19 -43h3c17 0 62 6 188 679 c-19 42 -46 61 -80 75l8 21c79 -32 191 -86 209 -192l74 -433l318 539c37 60 101 80 149 80c17 0 49 -3 62 -12v-4'], + 0x1D4DD: [785,10,852,39,917,'917 724c0 -13 0 -51 -10 -51c-18 0 -46 17 -74 17c-33 0 -48 -27 -56 -63l-111 -572c14 -26 32 -45 56 -45c39 0 78 39 130 140l35 71l2 5l20 -10l-3 -5l-35 -69c-47 -91 -90 -152 -147 -152c-90 0 -162 44 -200 140l-182 458l-29 71c-49 -272 -83 -434 -108 -529 c-28 -110 -70 -140 -102 -140c-38 0 -64 31 -64 78h21c0 -34 17 -58 43 -58c30 0 53 43 74 125c25 98 60 269 116 572c-16 29 -34 43 -67 57l8 21c79 -32 172 -76 217 -191l181 -456c5 -12 9 -26 14 -40l104 531c18 95 92 132 160 132c7 0 7 -28 7 -37'], + 0x1D4DE: [759,10,801,51,858,'858 216l-3 -5c-33 -68 -71 -151 -174 -151c-27 0 -57 4 -83 9c-70 -51 -157 -79 -251 -79c-186 0 -296 115 -296 296c0 277 203 473 447 473c185 0 296 -117 296 -297c0 -166 -71 -293 -170 -374c20 -5 38 -7 57 -7c90 0 120 70 155 140l3 5zM689 501 c0 140 -58 230 -191 230c-239 0 -345 -240 -345 -505c0 -127 50 -208 194 -208c73 0 133 26 182 69l-6 3c-9 4 -13 10 -13 17c0 9 6 17 15 17c0 0 5 0 8 -2c4 -2 12 -6 22 -10c78 83 134 229 134 389'], + 0x1D4DF: [767,10,846,47,904,'904 216l-3 -5c-39 -76 -135 -175 -285 -175c-71 0 -143 24 -204 65c-31 -75 -113 -111 -192 -111c-89 0 -173 53 -173 140h21c0 -60 61 -109 124 -109c55 0 103 36 123 134l6 31c-45 58 -74 130 -74 209c0 103 44 226 152 298c-6 21 -19 39 -41 56l13 18 c23 -17 42 -36 58 -56c49 26 112 40 185 40c180 0 290 -137 290 -265c0 -13 -2 -26 -4 -39c-28 -145 -139 -262 -333 -262c-55 0 -104 13 -130 26l-16 -78c-1 -4 -1 -7 -2 -11c58 -41 128 -65 197 -65c139 0 230 94 267 164l2 5zM796 510c0 105 -54 213 -197 213 c-61 0 -111 -12 -154 -31c41 -59 53 -119 53 -152c0 -6 -1 -10 -1 -13c-6 -49 -7 -41 -55 -285c20 -11 57 -29 125 -29c119 0 197 102 223 237c4 19 6 40 6 60zM406 649c0 6 0 14 -2 21c-97 -65 -136 -177 -136 -275c0 -67 22 -128 58 -180l67 339c6 36 13 67 13 95'], + 0x1D4E0: [759,250,801,53,858,'858 216l-3 -5c-113 -220 -305 -249 -409 -249c-25 0 -51 3 -73 5c-62 -26 -113 -54 -165 -100c99 -5 198 -30 298 -30c61 0 101 20 115 50l15 26l31 -13c-48 -95 -108 -150 -194 -150c-44 0 -235 41 -294 41c-31 0 -44 -11 -63 -37l-33 5c9 15 16 26 24 37 c70 97 148 145 222 179c-163 35 -276 146 -276 332c0 204 151 452 449 452c188 0 309 -141 309 -314c0 -160 -125 -364 -396 -461c10 -1 22 -1 31 -1c246 0 347 155 390 238l3 5zM705 454c0 154 -80 277 -203 277c-286 0 -342 -333 -342 -450c0 -142 57 -258 207 -289 c258 115 338 303 338 462'], + 0x1D4E1: [767,10,943,39,975,'975 216l-3 -5l-29 -59c-54 -104 -78 -162 -153 -162c-146 0 -222 217 -296 318c-12 16 -14 29 -14 39c0 27 28 35 47 46h1l19 2v-1c8 -9 17 -18 25 -29c12 -4 25 -11 42 -11c128 0 148 152 148 204c0 83 -70 165 -163 165c-83 0 -131 -12 -167 -33 c40 -58 53 -117 53 -150c0 -6 -1 -10 -1 -13c-7 -55 -7 -38 -76 -394c-18 -97 -115 -143 -195 -143c-88 0 -174 52 -174 140c0 75 77 155 113 173l11 -18c-36 -17 -103 -91 -103 -155c0 -60 62 -109 126 -109c55 0 96 36 116 134l78 399c5 28 9 54 9 77c0 10 -2 18 -3 27 l-45 -39c-59 -59 -86 -135 -86 -200c0 -43 12 -82 32 -110l-14 -13c-25 32 -39 75 -39 123c0 70 30 149 95 214c19 17 35 34 52 48c-8 26 -23 48 -49 68l26 18c24 -18 45 -39 61 -58c41 26 96 42 195 42c156 0 257 -96 257 -204c0 -102 -82 -222 -257 -222h-16 c74 -125 124 -307 191 -307c64 0 86 47 134 143l30 60l3 5'], + 0x1D4E2: [767,10,615,60,672,'672 216l-2 -5c-25 -50 -65 -95 -123 -120c-44 -65 -140 -101 -265 -101c-142 0 -222 72 -222 145c0 13 0 29 8 43c9 17 27 24 44 24c18 0 40 -10 40 -24c0 0 0 -4 -1 -6c-7 -12 -12 -28 -12 -37c0 -49 22 -117 143 -117c55 0 116 22 152 68c-5 2 -11 8 -11 15 c0 10 6 17 15 17c0 0 4 0 7 -1l6 -4c9 20 14 42 14 66c0 163 -143 249 -157 402l-99 -195l-18 11l117 232c8 72 50 138 129 138h4l34 -49h-4c-81 0 -129 -42 -129 -112c0 -130 233 -219 233 -427c0 -20 -4 -39 -11 -57c37 22 63 54 86 99l3 5'], + 0x1D4E3: [900,10,555,40,972,'972 762l-14 -16c-60 48 -114 54 -156 54h-26c-126 0 -195 -67 -288 -98c27 -39 44 -83 44 -133c0 -14 -2 -28 -4 -42l-77 -397c-4 -22 -12 -42 -21 -58c90 1 120 71 160 149l3 5l19 -10l-2 -5c-34 -68 -80 -160 -182 -160h-12c-36 -44 -94 -61 -159 -61 c-88 0 -174 52 -174 140h21c0 -60 61 -109 125 -109c51 0 77 34 88 53c-14 4 -15 12 -15 16c0 8 6 17 15 17c0 0 4 0 7 -2c0 0 4 -2 6 -4c7 16 12 33 16 54l82 414c6 34 10 64 10 89c0 12 -1 22 -2 32c-12 -1 -25 -2 -38 -2c-180 0 -358 96 -358 178c0 25 26 34 61 34 c77 0 210 -43 286 -99c24 -17 46 -37 65 -56c101 31 181 99 297 99c73 0 143 -16 223 -82zM419 736c-11 15 -25 30 -43 44c-76 57 -215 99 -281 99c-23 0 -34 -5 -34 -13c0 -63 157 -135 303 -135c18 0 38 1 55 5'], + 0x1D4E4: [801,10,696,48,753,'753 216l-3 -5l-35 -69c-64 -125 -96 -152 -170 -152c-57 0 -78 57 -78 108c0 20 2 41 6 62l3 12c-85 -104 -182 -182 -237 -182c-106 0 -191 71 -191 223c0 48 8 106 27 169c26 86 84 194 84 303c0 40 -12 70 -48 99l13 17c97 -72 128 -161 128 -217 c0 -52 -43 -135 -67 -211c-24 -67 -45 -149 -45 -218c0 -99 45 -137 112 -137c37 0 139 78 232 199l104 534h109l-116 -595c-9 -44 -17 -79 -17 -101c0 -26 11 -32 26 -32c25 2 72 64 104 127l37 71l2 5'], + 0x1D4E5: [819,10,632,49,689,'689 216l-3 -5c-33 -68 -70 -129 -135 -129c-24 0 -48 14 -67 39c-61 -82 -142 -131 -234 -131c-107 0 -201 75 -201 232c0 46 8 100 26 160c26 86 84 187 84 303c0 40 -12 70 -47 98l12 18c98 -74 127 -174 127 -224c0 -49 -47 -144 -66 -204c-22 -64 -41 -140 -41 -207 c0 -75 24 -148 119 -148c65 0 131 60 180 174c-35 82 -57 195 -57 281c0 133 21 220 43 267s55 79 95 79c38 0 95 -31 99 -94l2 -83c0 -203 -46 -383 -128 -503c24 -31 44 -36 54 -36c47 0 78 47 116 118l3 5zM520 655c0 94 -14 115 -35 115c-5 0 -20 -3 -35 -38 c-26 -57 -42 -150 -42 -259c0 -91 18 -183 46 -253c40 106 66 255 66 435'], + 0x1D4E6: [819,10,987,49,1044,'1044 216l-3 -5c-33 -68 -71 -129 -136 -129c-25 0 -47 14 -65 39c-63 -82 -138 -131 -216 -131c-81 0 -143 48 -166 150c-56 -100 -115 -150 -221 -150c-99 0 -188 74 -188 228c0 47 8 102 26 164c26 86 84 187 84 303c0 40 -12 70 -47 98l12 18 c98 -74 127 -174 127 -224c0 -47 -47 -144 -66 -204c-24 -69 -46 -152 -46 -221s22 -134 111 -134c117 0 175 181 218 381l34 174h96l-39 -200c-18 -93 -29 -166 -29 -221c0 -93 30 -134 106 -134c56 0 119 57 169 168c-34 83 -51 200 -51 287c0 133 30 221 52 268 s59 78 99 78c83 0 88 -84 88 -166c0 -206 -56 -390 -139 -513c16 -24 33 -37 51 -37c45 0 78 44 117 118l2 5zM888 655c0 115 -12 115 -23 115c-6 0 -20 -3 -36 -38c-26 -57 -41 -150 -41 -259c0 -89 12 -180 31 -251c40 107 69 254 69 433'], + 0x1D4E7: [759,10,685,57,742,'742 216l-2 -5l-43 -85c-43 -83 -82 -136 -122 -136c-112 0 -152 53 -185 221l-4 19c-60 -125 -134 -240 -223 -240c-72 0 -106 48 -106 109c0 71 46 157 116 194l13 -26c-60 -32 -100 -107 -100 -168c0 -38 14 -81 77 -81c78 0 149 116 214 260l-48 245 c-25 124 -39 208 -78 208c-29 0 -59 -25 -124 -151l-19 10c70 139 95 169 140 169c106 0 160 -74 191 -238l12 -59c29 72 52 141 76 192c33 75 104 104 162 104c14 0 44 -1 44 -13c0 -17 -8 -65 -17 -73c-11 0 -56 22 -88 22c-26 0 -53 -5 -74 -50 c-26 -59 -57 -146 -92 -237l37 -198c25 -124 35 -191 76 -191c22 0 56 28 110 134l35 69l3 5'], + 0x1D4E8: [801,408,688,48,745,'745 216l-3 -5c-43 -87 -109 -142 -171 -189l-54 -274c-27 -138 -174 -156 -213 -156c-144 0 -203 108 -203 151c0 120 173 139 351 231l38 194c-91 -121 -190 -178 -251 -178c-106 0 -191 72 -191 225c0 48 8 104 27 167c26 86 84 187 84 303c0 40 -12 70 -47 98l12 18 c97 -72 128 -161 128 -217c0 -52 -47 -148 -67 -211c-22 -67 -45 -149 -45 -217c0 -70 23 -138 112 -138c43 0 152 57 247 199l104 534h109l-135 -698c55 43 108 91 147 168l3 5zM447 -53c-166 -84 -317 -104 -317 -204c0 -25 43 -123 174 -123c30 0 83 21 99 99'], + 0x1D4E9: [767,17,673,43,736,'736 745l-90 -99l-460 -522c81 -13 313 -47 404 -47h8c14 0 38 2 52 30l59 114l2 5l20 -10l-3 -5c-74 -143 -108 -228 -151 -228c-112 0 -353 51 -460 51c-13 0 -19 -7 -53 -43l-21 17l52 56l498 564c-86 19 -208 48 -293 48c-71 0 -87 -19 -93 -32l-12 -24l-21 9 c15 28 54 115 67 128l5 5c8 5 28 5 48 5c79 0 233 -18 308 -43c19 -6 32 -9 43 -9c18 0 30 8 49 27l21 24'], + 0x1D4EA: [400,10,606,21,663,'381 324c-29 32 -64 48 -108 48c-79 0 -146 -91 -146 -230c0 -59 15 -124 69 -124c60 0 125 54 151 134zM663 216l-3 -5l-27 -51c-87 -161 -127 -170 -173 -170c-61 0 -109 41 -115 92c-36 -53 -90 -92 -149 -92c-117 0 -175 69 -175 161c0 147 116 249 252 249 c77 0 111 -53 118 -55c12 0 50 48 77 48h36l-45 -237c-5 -29 -13 -66 -13 -96c0 -25 5 -48 29 -48c55 0 109 97 140 158l26 51l3 5'], + 0x1D4EB: [790,10,491,16,549,'351 273c0 61 -19 99 -62 99c-48 0 -97 -14 -138 -44c-7 -55 -14 -112 -26 -175c-3 -11 -4 -23 -4 -33c0 -67 44 -102 97 -102c29 0 52 16 72 42c-16 4 -17 13 -17 17c0 9 8 17 17 17c0 0 4 0 6 -2c3 -1 7 -4 11 -5c15 30 28 68 36 109c5 28 8 55 8 77zM293 694 c0 57 -95 74 -115 76l-1 -2c-18 -23 -3 -163 -20 -369c68 108 136 226 136 295zM549 216l-3 -5c-32 -65 -69 -155 -166 -160c-43 -42 -99 -61 -162 -61c-123 0 -202 76 -202 150c0 6 0 11 1 16c75 387 68 584 97 624c6 8 59 10 63 10c14 0 135 -7 136 -96v-2 c0 -84 -87 -225 -156 -334c41 26 87 42 132 42c105 0 167 -62 167 -158c0 -16 -2 -31 -5 -48c-9 -48 -27 -89 -51 -120c68 16 94 83 127 147l2 5'], + 0x1D4EC: [400,10,432,20,489,'489 216l-3 -5l-28 -56c-59 -115 -143 -165 -255 -165c-120 0 -183 72 -183 167c0 13 1 26 5 41c31 121 128 202 245 202c102 0 125 -48 125 -80c0 -5 0 -9 -1 -14c-5 -26 -31 -45 -52 -45c-22 0 -39 19 -39 39c0 24 19 42 34 48c-7 11 -24 24 -67 24 c-74 0 -104 -60 -133 -174c-7 -28 -11 -52 -11 -76c0 -61 25 -104 77 -104c103 0 183 52 234 147l30 56l2 5'], + 0x1D4ED: [790,10,606,21,663,'376 329c-26 27 -59 43 -103 43c-79 0 -147 -126 -147 -241c0 -69 26 -113 70 -113c60 0 125 55 151 135l1 7c0 4 11 75 28 169zM663 216l-3 -5l-27 -51c-83 -163 -125 -168 -173 -170c-62 0 -99 48 -110 102c-35 -59 -93 -102 -154 -102c-109 0 -175 65 -175 165 c0 154 134 245 252 245c44 0 79 -19 108 -46c65 365 96 426 112 435l97 1c12 0 21 -14 21 -37c0 -76 -14 -207 -49 -356c-17 -73 -48 -111 -84 -119l-20 -122c-6 -27 -12 -64 -12 -94c0 -37 12 -50 29 -50c3 0 7 0 11 1c41 10 77 55 129 157l26 51l3 5zM590 753 c0 8 -2 15 -2 15c-21 -23 -64 -234 -106 -469c19 5 45 38 59 101c35 149 49 279 49 353'], + 0x1D4EE: [400,10,419,18,476,'303 316c0 43 -14 56 -33 56c-49 0 -94 -35 -135 -182c17 -7 38 -11 60 -11c70 0 108 97 108 137zM476 216l-3 -5l-28 -56c-60 -116 -156 -165 -242 -165c-116 0 -185 63 -185 160c0 16 2 33 7 52c32 126 122 198 245 198c77 0 128 -31 128 -94c0 -59 -48 -149 -198 -149 c-26 0 -49 4 -70 12c-4 -19 -6 -36 -6 -53c0 -48 16 -98 85 -98c73 0 165 55 215 147l30 56l2 5'], + 0x1D4EF: [790,393,274,-86,332,'332 216l-3 -5c-44 -86 -101 -147 -150 -147h-68l-12 -64l-76 -393h-109l76 393c88 387 74 478 106 718c9 63 29 72 103 72c56 0 113 -40 113 -106c0 -160 -88 -259 -165 -355l-30 -229h69c39 0 91 59 123 121l3 5zM291 684c0 56 -45 86 -101 86c-24 0 -26 -6 -29 -56 c-5 -98 2 -197 -10 -347c70 87 140 176 140 317'], + 0x1D4F0: [400,400,534,-52,592,'308 -47c-171 -90 -331 -108 -331 -210c0 -25 41 -115 173 -115c29 0 96 3 113 91zM592 216l-3 -5c-39 -80 -99 -132 -156 -177l-56 -286c-27 -138 -172 -148 -227 -148c-145 0 -202 100 -202 143c0 124 182 140 365 239l16 79c-35 -43 -82 -71 -133 -71 c-108 0 -174 76 -174 171c0 148 134 239 251 239c47 0 85 -23 117 -55c10 0 36 48 62 48h50l-63 -327c49 42 97 87 130 155l3 5zM381 324c-29 32 -64 48 -108 48c-78 0 -147 -117 -147 -242c0 -69 26 -112 70 -112c60 0 121 51 149 126'], + 0x1D4F1: [790,10,563,-13,620,'620 216l-38 -74c-33 -65 -53 -103 -76 -125c-25 -24 -67 -27 -91 -27c-38 0 -74 18 -74 84c0 34 9 69 14 87c25 83 35 139 35 173c0 27 -6 38 -18 38c-53 0 -143 -57 -246 -224l-28 -151h-111l31 163c76 386 65 580 96 620c6 8 59 10 63 10c14 0 135 -7 136 -96 c0 -86 -87 -227 -157 -338c-4 -43 -9 -88 -17 -136c87 122 169 180 233 180c67 0 112 -35 112 -126c0 -32 -6 -71 -17 -118c-5 -19 -21 -69 -21 -103c0 -24 8 -32 19 -32c6 0 15 2 25 10c14 11 42 57 73 119l39 76zM293 694c0 57 -95 74 -115 76l-1 -2c-8 -10 -9 -44 -9 -76 v-91c0 -54 0 -120 -7 -197c67 107 132 223 132 290'], + 0x1D4F2: [649,10,270,34,328,'328 216l-39 -77c-47 -90 -103 -149 -177 -149c-60 0 -78 59 -78 117c0 18 2 36 5 53l12 53l-16 8l1 3c29 54 51 113 58 148h-37l3 21h122c9 0 18 -4 18 -12c-17 -57 -26 -94 -52 -225c-10 -52 -17 -86 -17 -107c0 -19 7 -23 17 -23c20 0 72 25 121 124l39 76zM255 597 c0 -39 -37 -73 -73 -73c-30 0 -55 23 -55 53c0 38 37 72 73 72c30 0 55 -22 55 -52'], + 0x1D4F3: [647,400,228,-312,285,'285 216l-2 -3c-48 -80 -104 -139 -159 -186l-54 -279c-26 -138 -166 -148 -226 -148c-121 0 -156 100 -156 143c0 120 152 139 316 230l47 240l-16 8l1 3c29 54 49 113 54 148h-20l3 21h109c9 0 18 -4 18 -12v-1c-17 -56 -11 -21 -37 -152l-33 -168c48 41 95 95 135 164 l2 2zM241 582c-7 -29 -38 -59 -72 -59c-30 0 -55 23 -55 53c0 4 0 8 2 12c6 30 37 59 71 59c30 0 54 -23 54 -53c0 -4 1 -8 0 -12zM-1 -56c-151 -82 -282 -101 -282 -201c0 -25 19 -115 127 -115c30 0 95 3 112 91'], + 0x1D4F4: [790,10,489,-3,546,'546 216l-32 -64c-54 -104 -84 -162 -158 -162c-100 0 -119 76 -187 170c-21 -31 -39 -66 -53 -105l-9 -55h-110l30 160c73 386 65 580 97 620c5 8 58 10 62 10c14 0 135 -7 136 -96v-2c0 -80 -84 -203 -154 -302c-7 -70 -16 -147 -33 -234l-1 -8c55 90 148 187 255 260 c19 13 30 16 37 16c13 0 21 -7 21 -16c0 -58 -9 -89 -70 -93c-8 0 -13 4 -19 10c-25 -9 -73 -36 -117 -79c104 -115 65 -228 115 -228c64 0 86 47 137 143l34 65zM302 694c0 57 -95 74 -115 76l-1 -2c-9 -11 -9 -50 -9 -84v-70c0 -50 0 -110 -5 -180c67 96 130 195 130 260'], + 0x1D4F5: [790,10,291,16,348,'348 216l-39 -74c-49 -98 -107 -152 -179 -152c-88 0 -114 65 -114 131c0 13 0 26 2 39c74 386 65 580 96 620c6 8 59 10 63 10c14 0 135 -7 136 -96v-2c0 -80 -85 -215 -156 -321c-6 -65 -17 -136 -31 -215c-5 -26 -10 -60 -10 -87s5 -49 28 -49c4 0 9 0 13 1 c50 13 90 45 133 129l39 76zM293 694c0 57 -95 74 -115 76l-1 -2c-8 -10 -9 -45 -9 -78v-84c0 -52 -2 -115 -7 -187c68 104 132 210 132 275'], + 0x1D4F6: [400,10,805,10,862,'862 216l-38 -74c-34 -65 -54 -103 -78 -125c-22 -21 -44 -27 -78 -27c-63 0 -80 58 -80 109c0 25 4 48 7 62c7 21 42 116 42 172c0 28 -9 39 -23 39c-34 0 -91 -25 -172 -130c-1 -30 -6 -60 -12 -86l-28 -157l-109 2l29 159c6 25 33 117 33 172c0 20 -4 40 -20 40 c-35 0 -92 -27 -169 -128l-46 -244h-110l41 213l-16 8c27 56 52 114 59 151h-24l3 21h109c9 0 18 -4 18 -12v-1c-6 -25 -13 -46 -19 -73c71 79 123 93 154 93c82 0 103 -59 107 -113c81 95 137 113 172 113c43 0 109 -16 109 -133c0 -39 -8 -78 -16 -111 c-5 -18 -19 -68 -19 -101c0 -25 8 -34 19 -34c5 0 13 2 24 10c14 11 41 57 72 119l39 76'], + 0x1D4F7: [400,10,559,10,616,'616 216l-37 -74c-34 -65 -55 -103 -78 -125c-21 -20 -43 -27 -77 -27c-63 0 -85 31 -85 83c0 25 6 54 12 87c7 32 46 122 46 174c0 22 -7 38 -28 38c-41 0 -118 -37 -210 -167l-39 -205h-110l41 213l-16 8l1 3c29 54 51 113 58 148h-24l3 21h109c9 0 18 -4 18 -12v-1 c-10 -35 -18 -63 -28 -111c74 90 143 131 197 131c87 0 116 -50 116 -118c0 -39 -9 -84 -22 -127c-5 -18 -21 -67 -21 -100c0 -25 8 -34 20 -34c5 0 14 2 24 10c15 9 41 57 72 119l39 76'], + 0x1D4F8: [400,10,497,21,554,'355 282c0 68 -30 90 -74 90c-109 0 -159 -139 -159 -268c0 -55 20 -86 83 -86c42 0 69 16 90 43c-9 4 -13 9 -13 16c0 8 7 17 16 17c0 0 4 0 6 -2l8 -4c22 46 43 128 43 194zM554 216l-1 -3c-34 -67 -72 -162 -176 -162h-10c-46 -38 -104 -61 -162 -61 c-98 0 -184 71 -184 171c0 135 140 239 260 239c106 0 177 -79 177 -170c0 -67 -30 -118 -69 -158c78 7 105 78 144 152l1 2'], + 0x1D4F9: [400,400,511,-134,568,'364 259c0 71 -29 121 -86 121c-47 0 -86 -17 -119 -46c-4 -35 -13 -90 -30 -178l-17 -88c4 -4 9 -9 13 -15c26 -33 58 -43 109 -43c30 0 55 17 75 50c-6 4 -9 9 -9 14c0 9 8 17 17 17c0 0 4 0 7 -1l1 -2c14 30 25 68 33 108c3 22 6 43 6 63zM568 216l-1 -3 c-34 -67 -77 -162 -180 -162h-1c-41 -38 -95 -61 -152 -61c-58 0 -97 14 -127 50c-33 -166 -87 -418 -124 -439l-97 -1c-16 0 -20 14 -20 37c0 96 12 216 79 338c12 22 33 48 55 69l21 116c23 125 31 183 31 208v25h57c24 0 43 -2 47 -3c3 -1 5 -13 5 -17v-6 c33 22 70 33 117 33c122 0 191 -78 191 -172c0 -12 0 -23 -2 -34c-8 -46 -29 -87 -59 -121c76 10 100 78 138 151l1 2zM-8 8c-10 -15 -19 -29 -26 -42c-62 -123 -79 -233 -79 -329c0 -5 1 -13 1 -13c22 30 68 204 104 384'], + 0x1D4FA: [400,399,525,21,582,'582 216l-1 -3c-30 -60 -58 -108 -136 -117l-81 -422c31 41 92 79 131 82l2 -21c-33 -5 -110 -44 -145 -128c-1 -4 -5 -6 -9 -6c-6 0 -83 5 -96 8l-3 4l88 462c-34 -49 -84 -85 -136 -85c-108 0 -175 66 -175 166c0 13 1 26 4 40c23 125 135 204 248 204 c44 0 82 -20 113 -52v3l4 -5l1 -1c11 0 35 48 61 48h50l-46 -237l-7 -39c57 8 79 42 113 107l1 2zM381 324c-29 32 -64 48 -108 48c-66 0 -117 -61 -140 -178c-6 -26 -8 -51 -8 -72c0 -69 27 -104 71 -104c47 0 95 33 126 83c-7 2 -18 8 -18 19c0 9 7 17 16 17c0 0 4 0 6 -2 c3 -1 7 -2 12 -4c3 7 5 13 8 21'], + 0x1D4FB: [424,3,481,38,540,'540 222l-2 -2c-6 -15 -21 -46 -82 -46c-41 0 -76 37 -76 87c0 20 4 41 15 63c-57 -20 -128 -107 -184 -256l-13 -71h-110l46 241c9 48 22 99 22 121c0 6 -3 10 -3 10c-20 0 -26 -23 -96 -158l-19 10c63 125 82 179 119 179c65 0 81 -66 81 -132c0 -35 -4 -68 -8 -92 c39 79 94 162 182 224c21 15 52 24 61 24c13 0 29 -4 31 -9v-3c-6 -61 -31 -91 -88 -95c-10 -19 -14 -37 -14 -54c0 -39 24 -67 54 -67c48 0 60 25 64 34l1 3'], + 0x1D4FC: [424,10,426,-29,484,'484 216l-3 -5c-29 -56 -56 -121 -117 -149c-32 -41 -99 -72 -196 -72c-94 0 -197 53 -197 111c0 56 36 64 55 64c36 0 83 -25 83 -40v-5s-2 -4 -6 -4h-2c-7 0 -19 6 -27 6c-6 0 -12 -4 -12 -21c0 -42 26 -83 106 -83c61 0 86 17 96 42h-1c-17 4 -19 14 -19 18 c0 9 7 17 16 17c0 0 4 0 7 -1l3 -3v14c0 78 -119 132 -131 220c-34 -4 -61 -74 -82 -114l-19 10c69 140 97 203 170 203l40 -50h-17c-41 0 -57 -15 -57 -39c0 -63 211 -119 211 -217c0 -7 -1 -15 -4 -23c36 27 55 74 81 126l2 5'], + 0x1D4FD: [658,10,299,21,356,'356 216l-37 -74c-49 -94 -106 -152 -180 -152c-86 0 -104 62 -104 128c0 15 0 28 4 42l12 51l-16 7l1 3c19 35 46 129 69 221h-84l4 29h88c17 72 29 143 29 184v3h87c9 0 18 -4 18 -12v-1c-8 -24 -21 -92 -38 -174h129l-3 -29h-132l-55 -282c-6 -31 -15 -73 -15 -101 c0 -23 5 -39 23 -39c0 0 7 0 10 1c50 13 89 45 132 129l39 76'], + 0x1D4FE: [393,10,579,35,636,'636 216l-3 -5l-35 -69c-64 -125 -81 -152 -155 -152c-46 0 -79 28 -79 101c0 13 1 26 3 39c-80 -99 -154 -140 -197 -140c-88 0 -132 49 -132 134c0 20 2 42 8 66l5 23l-16 8l1 3c29 54 51 113 58 148h-24l3 21h109c9 0 18 -4 18 -12v-1c-17 -56 -19 -61 -45 -193 c-4 -23 -17 -73 -17 -113c0 -41 13 -56 32 -56c33 0 113 39 207 172l39 200v3h109l-45 -237c-9 -47 -18 -84 -18 -108c0 -23 9 -30 22 -30c23 0 58 63 93 132l37 71l2 5'], + 0x1D4FF: [423,10,511,35,568,'568 216l-2 -5c-20 -41 -60 -43 -78 -43c-10 0 -19 1 -29 4c-62 -136 -191 -182 -252 -182c-74 0 -164 53 -164 160c0 13 1 26 4 40l4 23l-16 8c34 65 60 139 60 169v3h91c6 0 8 -6 8 -6c0 -9 -3 -14 -4 -22l-35 -178c-5 -27 -8 -52 -8 -71c0 -72 30 -98 66 -98 c52 0 135 64 169 189c-31 23 -53 56 -53 96c0 73 60 120 108 120c39 0 60 -24 60 -81c0 -39 -7 -99 -29 -151c7 -1 13 -2 20 -2c14 0 44 2 58 32l3 5zM398 324c0 18 -4 47 -17 47s-31 -29 -31 -68c0 -30 17 -55 39 -74c6 28 9 60 9 95'], + 0x1D500: [423,10,688,35,745,'745 216l-3 -5c-15 -33 -48 -43 -79 -43c-10 0 -22 2 -34 5c-60 -137 -153 -183 -221 -183c-36 0 -76 20 -100 63c-35 -41 -77 -63 -132 -63c-72 0 -136 49 -136 149c0 16 2 33 6 51l5 23l-16 8l1 3c34 66 59 136 59 166v3h91c5 0 8 -6 8 -6c0 -5 -2 -15 -3 -22l-36 -178 c-5 -30 -11 -65 -11 -93c0 -55 17 -76 43 -76c77 0 96 129 122 256l3 15h88l-19 -102c-8 -41 -12 -74 -12 -99c0 -54 18 -70 47 -70c52 0 118 63 146 186c-33 24 -56 57 -56 99c0 73 60 120 108 120c30 0 56 -19 58 -60v-12c0 -39 -10 -101 -35 -159c9 -2 18 -3 26 -3 c14 0 44 2 59 32l2 5zM575 324c0 18 -4 47 -17 47s-31 -29 -31 -68c0 -31 16 -57 40 -77c5 30 8 63 8 98'], + 0x1D501: [400,10,514,35,571,'571 216l-3 -5l-43 -85c-43 -83 -83 -136 -123 -136c-60 0 -113 20 -147 127c-17 -36 -34 -69 -55 -94c-21 -24 -53 -33 -82 -33c-35 0 -83 23 -83 76h29c0 -39 39 -48 54 -48c25 0 42 3 60 22c25 28 46 72 65 120c-2 9 -4 18 -5 27c-23 124 -31 185 -64 185 c-27 0 -56 -33 -119 -161l-20 10l1 3c71 139 97 176 145 176c56 0 97 -22 128 -87l2 3c28 61 65 84 125 84c45 0 85 -36 85 -88c0 -25 -19 -42 -45 -42c-21 0 -40 17 -40 42c0 43 -2 60 -17 60c-33 0 -63 -29 -82 -69l-13 -25c9 -26 18 -56 24 -92c23 -112 25 -168 54 -168 c22 0 58 29 112 134l35 69l2 5'], + 0x1D502: [393,400,558,-16,615,'615 216l-3 -5c-46 -78 -100 -134 -157 -180l-55 -283c-26 -138 -179 -148 -215 -148c-145 0 -201 100 -201 143c0 123 173 139 350 236l29 145c-78 -94 -151 -134 -193 -134c-105 0 -132 65 -132 131c0 21 2 44 8 69l5 23l-16 8l1 3c29 54 51 113 58 148h-24l3 21h109 c9 0 18 -4 18 -12v-1c-17 -56 -19 -61 -45 -193c-4 -22 -15 -71 -15 -110c0 -34 8 -59 30 -59c32 0 112 38 204 167l41 205h109v-3l-46 -231l-16 -91c48 42 91 91 130 156l2 5zM329 -49c-165 -88 -316 -107 -316 -208c0 -25 40 -115 172 -115c30 0 83 3 100 91'], + 0x1D503: [408,10,437,-16,494,'494 216l-3 -5l-70 -136c-35 -66 -73 -85 -115 -85c-68 0 -146 50 -219 50c-23 0 -39 -7 -78 -47l-25 16c26 39 63 92 115 108l184 161c-81 20 -113 44 -141 44c-16 0 -35 -11 -47 -35l-40 -76l-20 10l1 3c93 182 97 183 119 183c41 0 113 -44 180 -44c28 0 52 6 75 26 l19 19l20 -22l-306 -269c52 -5 133 -52 196 -52c21 0 56 7 77 47l56 109l3 5'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Shapes/Regular/Main.js new file mode 100644 index 0000000..e94f270 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Shapes/Regular/Main.js @@ -0,0 +1,67 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'GyrePagellaMathJax_Shapes', + id: 'GYREPAGELLASHAPES', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2422: [726,12,553,-15,508,'508 270c0 -73 -35 -156 -79 -188l-100 -72c-21 -15 -47 -22 -86 -22c-53 0 -89 10 -129 36l-40 -36l-16 6c7 70 8 97 8 159v306l-66 -29v38l66 29v123c0 30 -7 41 -25 41h-56v28c79 12 112 20 156 37l9 -8v-185l127 56v-37l-127 -56v-127l55 56c26 26 75 44 122 44 c106 0 181 -83 181 -199zM421 229c0 107 -53 175 -137 175c-41 0 -80 -17 -108 -46c-16 -18 -26 -36 -26 -50v-215c0 -22 74 -54 126 -54c85 0 145 78 145 190'], + 0x2423: [133,97,500,40,460,'460 -67c-6 -3 -12 -8 -17 -13s-9 -10 -13 -17h-360c-4 7 -8 12 -13 17s-11 10 -17 13v200c10 -2 20 -3 30 -3s20 1 30 3v-170h300v170c10 -2 20 -3 30 -3s20 1 30 3v-200'], + 0x2500: [280,-220,600,0,600,'600 220h-600v60h600v-60'], + 0x2502: [650,150,600,270,330,'330 -150h-60v800h60v-800'], + 0x251C: [650,150,600,270,600,'600 220h-270v-370h-60v800h60v-370h270v-60'], + 0x2524: [650,150,600,0,330,'330 -150h-60v370h-270v60h270v370h60v-800'], + 0x252C: [280,150,600,0,600,'600 220h-270v-370h-60v370h-270v60h600v-60'], + 0x2534: [650,-220,600,0,600,'600 220h-600v60h270v370h60v-370h270v-60'], + 0x253C: [650,150,600,0,600,'600 220h-270v-370h-60v370h-270v60h270v370h60v-370h270v-60'], + 0x2581: [88,0,700,0,700,'700 0h-700v88h700v-88'], + 0x2588: [700,0,700,0,700,'700 0h-700v700h700v-700'], + 0x2591: [700,0,700,0,700,'23 0h-23v23h23v-23zM163 0h-46v23h46v-23zM303 0h-46v23h46v-23zM443 0h-46v23h46v-23zM583 0h-46v23h46v-23zM700 0h-23v23h23v-23zM93 47h-46v46h46v-46zM233 47h-46v46h46v-46zM373 47h-46v46h46v-46zM513 47h-46v46h46v-46zM653 47h-46v46h46v-46zM23 117h-23v46h23 v-46zM163 117h-46v46h46v-46zM303 117h-46v46h46v-46zM443 117h-46v46h46v-46zM583 117h-46v46h46v-46zM700 117h-23v46h23v-46zM93 187h-46v46h46v-46zM233 187h-46v46h46v-46zM373 187h-46v46h46v-46zM513 187h-46v46h46v-46zM653 187h-46v46h46v-46zM23 257h-23v46h23 v-46zM163 257h-46v46h46v-46zM303 257h-46v46h46v-46zM443 257h-46v46h46v-46zM583 257h-46v46h46v-46zM700 257h-23v46h23v-46zM93 327h-46v46h46v-46zM233 327h-46v46h46v-46zM373 327h-46v46h46v-46zM513 327h-46v46h46v-46zM653 327h-46v46h46v-46zM23 397h-23v46h23 v-46zM163 397h-46v46h46v-46zM303 397h-46v46h46v-46zM443 397h-46v46h46v-46zM583 397h-46v46h46v-46zM700 397h-23v46h23v-46zM93 467h-46v46h46v-46zM233 467h-46v46h46v-46zM373 467h-46v46h46v-46zM513 467h-46v46h46v-46zM653 467h-46v46h46v-46zM23 537h-23v46h23 v-46zM163 537h-46v46h46v-46zM303 537h-46v46h46v-46zM443 537h-46v46h46v-46zM583 537h-46v46h46v-46zM700 537h-23v46h23v-46zM93 607h-46v46h46v-46zM233 607h-46v46h46v-46zM373 607h-46v46h46v-46zM513 607h-46v46h46v-46zM653 607h-46v46h46v-46zM23 677h-23v23h23 v-23zM163 677h-46v23h46v-23zM303 677h-46v23h46v-23zM443 677h-46v23h46v-23zM583 677h-46v23h46v-23zM700 677h-23v23h23v-23'], + 0x2592: [700,0,700,0,700,'33 0h-33v33h33v-33zM173 0h-66v33h66v-33zM313 0h-66v33h66v-33zM453 0h-66v33h66v-33zM593 0h-66v33h66v-33zM700 0h-33v33h33v-33zM103 37h-66v66h66v-66zM243 37h-66v66h66v-66zM383 37h-66v66h66v-66zM523 37h-66v66h66v-66zM663 37h-66v66h66v-66zM33 107h-33v66 h33v-66zM173 107h-66v66h66v-66zM313 107h-66v66h66v-66zM453 107h-66v66h66v-66zM593 107h-66v66h66v-66zM700 107h-33v66h33v-66zM103 177h-66v66h66v-66zM243 177h-66v66h66v-66zM383 177h-66v66h66v-66zM523 177h-66v66h66v-66zM663 177h-66v66h66v-66zM33 247h-33v66 h33v-66zM173 247h-66v66h66v-66zM313 247h-66v66h66v-66zM453 247h-66v66h66v-66zM593 247h-66v66h66v-66zM700 247h-33v66h33v-66zM103 317h-66v66h66v-66zM243 317h-66v66h66v-66zM383 317h-66v66h66v-66zM523 317h-66v66h66v-66zM663 317h-66v66h66v-66zM33 387h-33v66 h33v-66zM173 387h-66v66h66v-66zM313 387h-66v66h66v-66zM453 387h-66v66h66v-66zM593 387h-66v66h66v-66zM700 387h-33v66h33v-66zM103 457h-66v66h66v-66zM243 457h-66v66h66v-66zM383 457h-66v66h66v-66zM523 457h-66v66h66v-66zM663 457h-66v66h66v-66zM33 527h-33v66 h33v-66zM173 527h-66v66h66v-66zM313 527h-66v66h66v-66zM453 527h-66v66h66v-66zM593 527h-66v66h66v-66zM700 527h-33v66h33v-66zM103 597h-66v66h66v-66zM243 597h-66v66h66v-66zM383 597h-66v66h66v-66zM523 597h-66v66h66v-66zM663 597h-66v66h66v-66zM33 667h-33v33 h33v-33zM173 667h-66v33h66v-33zM313 667h-66v33h66v-33zM453 667h-66v33h66v-33zM593 667h-66v33h66v-33zM700 667h-33v33h33v-33'], + 0x2593: [700,0,700,0,700,'166 44v52h-52v-52h52zM306 44v52h-52v-52h52zM446 44v52h-52v-52h52zM586 44v52h-52v-52h52zM96 114v52h-52v-52h52zM236 114v52h-52v-52h52zM376 114v52h-52v-52h52zM516 114v52h-52v-52h52zM656 114v52h-52v-52h52zM166 184v52h-52v-52h52zM306 184v52h-52v-52h52z M446 184v52h-52v-52h52zM586 184v52h-52v-52h52zM96 254v52h-52v-52h52zM236 254v52h-52v-52h52zM376 254v52h-52v-52h52zM516 254v52h-52v-52h52zM656 254v52h-52v-52h52zM166 324v52h-52v-52h52zM306 324v52h-52v-52h52zM446 324v52h-52v-52h52zM586 324v52h-52v-52h52z M96 394v52h-52v-52h52zM236 394v52h-52v-52h52zM376 394v52h-52v-52h52zM516 394v52h-52v-52h52zM656 394v52h-52v-52h52zM166 464v52h-52v-52h52zM306 464v52h-52v-52h52zM446 464v52h-52v-52h52zM586 464v52h-52v-52h52zM96 534v52h-52v-52h52zM236 534v52h-52v-52h52z M376 534v52h-52v-52h52zM516 534v52h-52v-52h52zM656 534v52h-52v-52h52zM166 604v52h-52v-52h52zM306 604v52h-52v-52h52zM446 604v52h-52v-52h52zM586 604v52h-52v-52h52zM700 0h-44v26h-52v-26h-88v26h-52v-26h-88v26h-52v-26h-88v26h-52v-26h-88v26h-52v-26h-44v44h26 v52h-26v88h26v52h-26v88h26v52h-26v88h26v52h-26v88h26v52h-26v44h44v-26h52v26h88v-26h52v26h88v-26h52v26h88v-26h52v26h88v-26h52v26h44v-44h-26v-52h26v-88h-26v-52h26v-88h-26v-52h26v-88h-26v-52h26v-88h-26v-52h26v-44'], + 0x25AA: [410,-90,480,80,400,'400 120c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-260c-4 6 -8 12 -13 17s-11 9 -17 13v260c6 4 12 8 17 13s9 11 13 17h260c4 -6 8 -12 13 -17s11 -9 17 -13v-260'], + 0x25AB: [410,-90,480,80,400,'400 120c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-260c-4 6 -8 12 -13 17s-11 9 -17 13v260c6 4 12 8 17 13s9 11 13 17h260c4 -6 8 -12 13 -17s11 -9 17 -13v-260zM340 350h-200v-200h200v200'], + 0x25AC: [400,-100,760,80,680,'680 130c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-540c-4 6 -8 12 -13 17s-11 9 -17 13v240c6 4 12 8 17 13s9 11 13 17h540c4 -6 8 -12 13 -17s11 -9 17 -13v-240'], + 0x25AD: [400,-100,760,80,680,'680 130c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-540c-4 6 -8 12 -13 17s-11 9 -17 13v240c6 4 12 8 17 13s9 11 13 17h540c4 -6 8 -12 13 -17s11 -9 17 -13v-240zM620 340h-480v-180h480v180'], + 0x25B7: [643,143,841,80,761,'761 224l-636 -367c-6 6 -13 11 -21 15c-8 5 -16 8 -24 11v734c8 3 16 6 24 11c8 4 15 9 21 15l636 -367c-2 -9 -3 -17 -3 -26s1 -17 3 -26zM686 250l-546 315v-630'], + 0x25C1: [643,143,841,80,761,'761 -117c-8 -3 -16 -6 -24 -11c-7 -4 -14 -9 -21 -15l-636 367c2 9 3 17 3 26s-1 17 -3 26l636 367c7 -6 14 -11 21 -15c8 -5 16 -8 24 -11v-734zM701 -65v630l-546 -315'], + 0x25CB: [568,68,796,80,716,'716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318zM656 250c0 155 -103 258 -258 258s-258 -103 -258 -258s103 -258 258 -258s258 103 258 258'], + 0x25CF: [568,68,796,80,716,'716 250c0 -191 -127 -318 -318 -318s-318 127 -318 318s127 318 318 318s318 -127 318 -318'], + 0x25E6: [450,-50,560,80,480,'480 250c0 -120 -80 -200 -200 -200s-200 80 -200 200s80 200 200 200s200 -80 200 -200zM432 250c0 91 -61 152 -152 152s-152 -61 -152 -152s61 -152 152 -152s152 61 152 152'], + 0x2664: [668,0,800,80,720,'720 250c0 -79 -51 -150 -125 -150c-46 0 -89 23 -116 60h-28c4 -47 23 -91 54 -127c-4 -5 -8 -10 -11 -15c-3 -6 -4 -12 -5 -18l-89 3c-30 0 -59 -1 -89 -3c-1 6 -2 12 -5 18c-3 5 -7 10 -11 15c31 36 50 80 54 127h-28c-27 -37 -70 -60 -116 -60 c-74 0 -125 71 -125 150c0 98 59 166 129 230c64 58 137 112 173 188c6 -2 12 -3 18 -3s12 1 18 3c36 -76 109 -130 173 -188c70 -64 129 -132 129 -230zM680 250c0 86 -54 144 -116 200c-58 53 -123 104 -164 169c-41 -65 -106 -116 -164 -169c-62 -56 -116 -114 -116 -200 c0 -56 33 -110 85 -110c40 0 76 23 93 60h72c2 -5 4 -9 8 -12c3 -4 7 -6 12 -8c0 -49 -14 -97 -39 -138l49 1l49 -1c-25 41 -39 89 -39 138c5 2 9 4 12 8c4 3 6 7 8 12h72c17 -37 53 -60 93 -60c52 0 85 54 85 110'], + 0x2665: [666,0,760,80,680,'680 486c0 -102 -52 -183 -115 -260c-59 -73 -128 -142 -167 -226c-6 2 -12 3 -18 3s-12 -1 -18 -3c-39 84 -108 153 -167 226c-63 77 -115 158 -115 260c0 95 61 180 150 180c64 0 121 -35 150 -89c29 54 86 89 150 89c89 0 150 -85 150 -180'], + 0x2666: [670,0,746,80,666,'666 341c-2 -5 -3 -11 -3 -16c-1 -5 0 -10 2 -15c-54 -43 -105 -91 -151 -143s-88 -108 -124 -167c-6 2 -11 3 -17 3s-12 -1 -17 -3c-37 59 -78 115 -124 167s-97 100 -152 143c2 5 3 10 3 15s-1 11 -3 15c55 47 106 98 152 154c46 55 88 114 124 176c5 -2 11 -3 17 -3 s11 1 17 3c36 -62 77 -121 124 -176c46 -56 97 -107 152 -153'], + 0x2667: [668,0,842,80,762,'762 258c0 -98 -47 -150 -131 -150c-78 0 -124 45 -130 130h-30c3 -72 23 -144 58 -208c-5 -4 -9 -8 -12 -13c-4 -5 -6 -11 -8 -17c-29 2 -58 3 -88 3s-59 -1 -89 -3c-1 6 -3 12 -7 17c-3 5 -7 9 -12 13c35 64 55 136 58 208h-30c-6 -85 -52 -130 -130 -130 c-84 0 -131 52 -131 150c0 99 47 150 131 150c31 0 57 -7 78 -22l18 23c-25 25 -39 62 -39 109c0 98 53 150 153 150s153 -52 153 -150c0 -47 -14 -84 -39 -109l18 -23c21 15 47 22 78 22c84 0 131 -51 131 -150zM722 258c0 71 -31 110 -91 110c-28 0 -50 -7 -66 -24 c-4 2 -9 3 -15 4c-5 0 -10 -1 -15 -3l-43 54c2 4 4 9 5 14s0 10 -1 15c26 18 38 49 38 90c0 72 -40 110 -113 110s-113 -38 -113 -110c0 -41 12 -72 38 -90c-1 -5 -2 -10 -1 -15s2 -10 5 -15l-43 -53c-5 2 -10 3 -15 3c-6 -1 -11 -2 -15 -4c-16 17 -38 24 -66 24 c-60 0 -91 -39 -91 -110c0 -70 31 -110 91 -110s91 40 91 110c5 2 9 5 12 8c4 4 6 8 8 12h69c2 -4 4 -8 8 -12c3 -3 7 -6 12 -8c0 -74 -16 -148 -47 -216l57 1l57 -1c-31 68 -47 142 -47 216c5 2 9 5 12 8c4 4 6 8 8 12h69c2 -4 4 -8 8 -12c3 -3 7 -6 12 -8 c0 -70 31 -110 91 -110s91 40 91 110'], + 0x266A: [692,20,600,56,561,'561 250h-34c0 79 -51 147 -99 211c-26 34 -52 69 -72 107v-472c0 -72 -73 -116 -150 -116s-150 44 -150 116c0 71 73 115 150 115c45 0 88 -15 116 -41v522h34c0 -79 51 -147 99 -211c53 -69 106 -144 106 -231'], + 0x26AD: [475,-26,500,-116,616,'616 250c0 -124 -101 -224 -225 -224c-53 0 -102 18 -141 49c-39 -31 -88 -49 -141 -49c-124 0 -225 100 -225 224s101 225 225 225c53 0 102 -19 141 -50c39 31 88 50 141 50c124 0 225 -101 225 -225zM299 250c0 47 -18 90 -49 121c-31 -31 -49 -74 -49 -121 s18 -90 49 -121c31 31 49 74 49 121zM221 104c-34 39 -54 90 -54 146s20 107 54 146c-32 22 -71 35 -112 35c-100 0 -181 -81 -181 -181s81 -180 181 -180c41 0 80 12 112 34zM572 250c0 100 -81 181 -181 181c-41 0 -80 -13 -112 -35c34 -39 54 -90 54 -146 s-20 -107 -54 -146c32 -22 71 -34 112 -34c100 0 181 80 181 180'], + 0x26AE: [699,199,500,-170,670,'167 250c0 -115 -64 -224 -169 -224s-168 109 -168 224s63 225 168 225s169 -110 169 -225zM670 250c0 -115 -63 -224 -168 -224s-169 109 -169 224s64 225 169 225s168 -110 168 -225zM278 -199h-56c0 150 11 299 11 449s-11 299 -11 449h56c0 -150 -11 -299 -11 -449 s11 -299 11 -449zM133 250c0 92 -51 181 -135 181c-81 0 -124 -90 -124 -181s43 -180 124 -180c84 0 135 88 135 180zM626 250c0 91 -43 181 -124 181c-84 0 -135 -89 -135 -181s51 -180 135 -180c81 0 124 89 124 180'], + 0x2B04: [450,-50,1069,80,989,'989 250c-75 -59 -146 -125 -206 -200c-8 2 -15 3 -23 3s-16 -1 -23 -3v90h-405v-90c-7 2 -15 3 -23 3s-15 -1 -23 -3c-60 75 -130 141 -206 200c76 59 146 125 206 200c8 -2 15 -3 23 -3s16 1 23 3v-90h405v90c7 -2 15 -3 23 -3s15 1 23 3c60 -75 131 -141 206 -200z M926 250c-53 45 -103 93 -149 145v-75h-485v75c-46 -52 -95 -100 -148 -145c53 -45 102 -93 148 -145v75h485v-75c46 52 96 100 149 145'], + 0x2B05: [450,-50,995,80,915,'915 160h-635v-110c-59 73 -127 141 -200 200c73 59 141 127 200 200v-110h635v-180'], + 0x2B06: [673,162,560,80,480,'480 473h-110v-635h-180v634l-110 1c73 59 141 126 200 200c59 -74 127 -141 200 -200'], + 0x2B07: [662,173,560,80,480,'480 27c-73 -59 -141 -126 -200 -200c-59 74 -127 141 -200 200l110 1v634h180v-635h110'], + 0x2B0C: [450,-50,1005,80,925,'925 250c-73 -59 -141 -127 -200 -200v110h-445v-110c-59 73 -127 141 -200 200c73 59 141 127 200 200v-110h445v110c59 -73 127 -141 200 -200'], + 0x2B0D: [673,172,560,80,480,'480 28c-73 -60 -141 -127 -200 -200c-59 73 -127 140 -200 200h110v444l-110 1c73 59 141 126 200 200c59 -74 127 -141 200 -200h-110v-445h110'], + 0x2B1A: [660,160,940,60,880,'255 -160h-95v60h95v-60zM430 -160h-95v60h95v-60zM605 -160h-95v60h95v-60zM780 -160h-95v60h95v-60zM255 600h-95v60h95v-60zM430 600h-95v60h95v-60zM605 600h-95v60h95v-60zM780 600h-95v60h95v-60zM120 -60h-60v95h60v-95zM120 115h-60v95h60v-95zM120 290h-60v95 h60v-95zM120 465h-60v95h60v-95zM880 -60h-60v95h60v-95zM880 115h-60v95h60v-95zM880 290h-60v95h60v-95zM880 465h-60v95h60v-95'], + 0x2B31: [740,240,920,80,840,'840 -120h-624c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM840 220h-624c36 -37 69 -77 99 -120 c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM840 560h-624c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3 c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h624c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2B33: [400,-100,1370,80,1290,'1290 220h-100c-29 0 -50 14 -68 35c-12 14 -22 32 -34 46c-7 7 -13 14 -23 14c-17 0 -21 -13 -25 -27c-8 -28 -9 -63 -17 -92c-11 -42 -34 -71 -83 -71s-72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -9 27 -25 27c-17 0 -21 -13 -25 -27c-8 -28 -9 -63 -17 -92 c-11 -42 -34 -71 -83 -71s-72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -9 27 -25 27c-17 0 -21 -13 -25 -27c-8 -28 -9 -63 -17 -92c-11 -42 -34 -71 -83 -71c-29 0 -50 14 -68 35c-12 14 -22 32 -34 46c-7 7 -13 14 -23 14h-99c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3 s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h99c29 0 50 -14 68 -35c12 -14 22 -32 34 -46c7 -7 13 -14 23 -14c16 0 21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71s72 -29 83 -71 c8 -29 9 -64 17 -92c4 -14 8 -27 25 -27c16 0 21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71s72 -29 83 -71c8 -29 9 -64 17 -92c4 -14 8 -27 25 -27c16 0 21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71c29 0 50 -14 68 -35c12 -14 22 -32 34 -46c7 -7 13 -14 23 -14 h100c-2 -10 -3 -20 -3 -30s1 -20 3 -30'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Shapes/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size1/Regular/Main.js new file mode 100644 index 0000000..2a36490 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size1/Regular/Main.js @@ -0,0 +1,204 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'GyrePagellaMathJax_Size1', + id: 'GYREPAGELLASIZE1', + 0x20: [0,0,250,0,0,''], + 0x28: [744,244,456,124,374,'374 716c-127 -127 -186 -276 -186 -419v-94c0 -143 59 -292 186 -419c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-138 138 -222 292 -222 447v94c0 155 84 309 222 447c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x29: [744,244,456,82,332,'332 203c0 -155 -83 -309 -222 -447c-3 6 -7 11 -12 16s-10 9 -16 12c127 127 186 276 186 419v94c0 143 -59 292 -186 419c6 3 11 7 16 12s9 10 12 16c139 -138 222 -292 222 -447v-94'], + 0x2F: [774,274,574,80,494,'494 774l-361 -1048c-9 2 -18 3 -27 3c-8 0 -17 -1 -26 -3l361 1048c9 -2 18 -3 26 -3c9 0 18 1 27 3'], + 0x5B: [750,250,428,124,346,'346 -210c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-222v1000h222c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-158v-920h158'], + 0x5C: [774,274,574,80,494,'494 -274c-9 2 -18 3 -27 3c-8 0 -17 -1 -26 -3l-361 1048c9 -2 18 -3 26 -3c9 0 18 1 27 3'], + 0x5D: [750,250,428,82,304,'304 -250h-222c2 6 3 13 3 20s-1 14 -3 20h158v920h-158c2 6 3 13 3 20s-1 14 -3 20h222v-1000'], + 0x7B: [749,249,441,82,359,'359 -211c-3 -5 -6 -12 -8 -18c-2 -7 -2 -14 -2 -20c-103 27 -163 84 -163 172v174c0 82 -31 133 -104 133c2 6 3 13 3 20s-1 14 -3 20c73 0 104 51 104 133v174c0 88 60 145 163 172c0 -6 0 -13 2 -20c2 -6 5 -13 8 -18c-74 -20 -109 -70 -109 -134v-174 c0 -77 -28 -127 -76 -153c48 -26 76 -76 76 -153v-174c0 -64 35 -114 109 -134'], + 0x7C: [730,230,210,80,130,'130 -230c-8 2 -17 3 -25 3s-17 -1 -25 -3v960c8 -2 17 -3 25 -3s17 1 25 3v-960'], + 0x7D: [749,249,441,82,359,'359 230c-73 0 -104 -51 -104 -133v-174c0 -88 -60 -145 -163 -172c1 6 0 13 -2 20c-2 6 -4 13 -8 18c75 20 109 70 109 134v174c0 77 28 127 76 153c-48 26 -76 76 -76 153v174c0 64 -34 114 -109 134c4 5 6 12 8 18c2 7 3 14 2 20c103 -27 163 -84 163 -172v-174 c0 -82 31 -133 104 -133c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [712,-544,613,0,613,'613 574l-13 -30l-294 114l-293 -114l-13 30c101 49 203 95 306 138c104 -43 206 -89 307 -138'], + 0x303: [700,-544,608,0,608,'608 672c-37 -72 -76 -113 -138 -125c-10 -2 -19 -3 -29 -3c-53 0 -103 28 -150 57c-38 24 -79 50 -122 50c-7 0 -14 0 -21 -2c-50 -10 -88 -34 -118 -93c-4 5 -8 8 -13 11c-6 2 -11 4 -17 5c37 72 76 113 139 125c9 2 19 3 28 3c53 0 104 -28 150 -57 c38 -24 79 -50 122 -50c7 0 14 0 21 2c50 10 89 34 118 93c4 -5 9 -8 14 -11c5 -2 11 -4 16 -5'], + 0x305: [646,-598,500,0,500,'500 598h-500c2 8 3 16 3 24s-1 16 -3 24h500c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x306: [708,-553,631,0,631,'631 698c-39 -119 -183 -145 -315 -145c-133 0 -276 26 -316 145l31 10c35 -104 168 -106 285 -106c116 0 249 2 284 106'], + 0x30C: [710,-542,613,0,613,'613 680c-101 -49 -203 -95 -307 -138c-103 43 -205 89 -306 138l13 30l293 -114l294 114'], + 0x311: [720,-564,631,0,631,'631 574l-31 -10c-35 104 -168 107 -284 107c-117 0 -250 -3 -285 -107l-31 10c40 119 183 146 316 146c132 0 276 -27 315 -146'], + 0x32C: [-60,228,613,0,613,'613 -90c-101 -49 -203 -95 -307 -138c-103 43 -205 89 -306 138l13 30l293 -115l294 115'], + 0x32D: [-70,238,613,0,613,'613 -207l-13 -31l-294 115l-293 -115l-13 31c101 48 203 94 306 137c104 -43 206 -89 307 -137'], + 0x32E: [-60,216,631,0,631,'631 -70c-39 -119 -183 -146 -315 -146c-133 0 -276 27 -316 146l31 10c35 -105 168 -107 285 -107c116 0 249 2 284 107'], + 0x32F: [-78,234,631,0,631,'631 -223l-31 -11c-35 105 -168 107 -284 107c-117 0 -250 -2 -285 -107l-31 11c40 119 183 145 316 145c132 0 276 -26 315 -145'], + 0x330: [-78,234,608,0,608,'608 -106c-37 -72 -76 -113 -138 -125c-10 -2 -19 -3 -29 -3c-53 0 -103 28 -150 57c-38 24 -79 50 -122 50c-7 0 -14 0 -21 -2c-50 -10 -88 -34 -118 -93c-4 4 -8 8 -13 11c-6 2 -11 4 -17 5c37 72 76 113 139 125c9 2 19 3 28 3c53 0 104 -28 150 -57 c38 -24 79 -50 122 -50c7 0 14 0 21 2c50 10 89 34 118 92c4 -4 9 -7 14 -10c5 -2 11 -4 16 -5'], + 0x332: [-60,108,500,0,500,'500 -108h-500c2 8 3 16 3 24s-1 16 -3 24h500c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x333: [-60,216,500,0,500,'500 -108h-500c2 8 3 16 3 24s-1 16 -3 24h500c-2 -8 -3 -16 -3 -24s1 -16 3 -24zM500 -216h-500c2 8 3 16 3 24s-1 16 -3 24h500c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x33F: [754,-598,500,0,500,'500 598h-500c2 8 3 16 3 24s-1 16 -3 24h500c-2 -8 -3 -16 -3 -24s1 -16 3 -24zM500 706h-500c2 8 3 16 3 24s-1 16 -3 24h500c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x2016: [730,230,380,80,300,'130 -230c-8 2 -17 3 -25 3s-17 -1 -25 -3v960c8 -2 17 -3 25 -3s17 1 25 3v-960zM300 -230c-8 2 -17 3 -25 3s-17 -1 -25 -3v960c8 -2 17 -3 25 -3s17 1 25 3v-960'], + 0x2044: [774,274,574,80,494,'494 774l-361 -1048c-9 2 -18 3 -27 3c-8 0 -17 -1 -26 -3l361 1048c9 -2 18 -3 26 -3c9 0 18 1 27 3'], + 0x20D0: [784,-640,670,80,590,'590 640h-486l-24 24c44 36 84 76 120 120c11 -2 23 -3 34 -3s23 1 34 3c-28 -34 -59 -67 -92 -96h414c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x20D1: [784,-640,670,80,590,'590 664l-24 -24h-486c2 8 3 16 3 24s-1 16 -3 24h413c-33 29 -63 62 -91 96c11 -2 22 -3 34 -3c11 0 22 1 34 3c35 -44 76 -84 120 -120'], + 0x20D6: [784,-544,670,80,590,'590 640h-414c33 -29 64 -62 92 -96c-11 2 -23 3 -34 3s-23 -1 -34 -3c-36 44 -76 84 -120 120c44 36 84 76 120 120c11 -2 23 -3 34 -3s23 1 34 3c-28 -34 -59 -67 -92 -96h414c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x20D7: [784,-544,670,80,590,'590 664c-44 -36 -84 -76 -120 -120c-11 2 -23 3 -34 3s-23 -1 -34 -3c28 34 59 67 92 96h-414c2 8 3 16 3 24s-1 16 -3 24h414c-33 29 -64 62 -92 96c11 -2 23 -3 34 -3s23 1 34 3c36 -44 76 -84 120 -120'], + 0x20E1: [784,-544,742,80,662,'662 664c-44 -36 -84 -76 -120 -120c-11 2 -22 3 -33 3c-12 0 -23 -1 -34 -3c28 34 58 67 91 96h-390c33 -29 64 -62 92 -96c-11 2 -23 3 -34 3s-23 -1 -34 -3c-36 44 -76 84 -120 120c44 36 84 76 120 120c11 -2 23 -3 34 -3s23 1 34 3c-28 -34 -59 -67 -92 -96h390 c-33 29 -63 62 -91 96c11 -2 22 -3 34 -3c11 0 22 1 34 3c35 -44 75 -84 119 -120'], + 0x20E9: [772,-647,740,0,740,'740 647c-6 2 -13 3 -20 3s-14 -1 -20 -3v75h-660v-75c-6 2 -13 3 -20 3s-14 -1 -20 -3v125h740v-125'], + 0x20EC: [-170,314,670,80,590,'590 -194c-44 -36 -85 -76 -120 -120c-12 2 -23 3 -34 3c-12 0 -23 -1 -34 -3c28 34 58 67 91 96h-413c2 8 3 16 3 24s-1 16 -3 24h486'], + 0x20ED: [-170,314,670,80,590,'590 -218h-414c33 -29 64 -62 92 -96c-11 2 -23 3 -34 3s-23 -1 -34 -3c-36 44 -76 84 -120 120l24 24h486c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x20EE: [-74,314,670,80,590,'590 -218h-414c33 -29 64 -62 92 -96c-11 2 -23 3 -34 3s-23 -1 -34 -3c-36 44 -76 84 -120 120c44 36 84 76 120 120c11 -2 23 -3 34 -3s23 1 34 3c-28 -34 -59 -67 -92 -96h414c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0x20EF: [-74,314,670,80,590,'590 -194c-44 -36 -84 -76 -120 -120c-11 2 -23 3 -34 3s-23 -1 -34 -3c28 34 59 67 92 96h-414c2 8 3 16 3 24s-1 16 -3 24h414c-33 29 -64 62 -92 96c11 -2 23 -3 34 -3s23 1 34 3c36 -44 76 -84 120 -120'], + 0x2140: [971,471,1326,80,1246,'1246 -131l-50 -340h-1098l-18 34l438 671l-434 703l19 34h1024l23 -248l-44 -4l-2 23c-4 43 -98 185 -359 185h-455l357 -577l-429 -654h584c273 0 383 63 394 136l6 43zM1096 842l-7 87h-115c52 -26 93 -54 122 -87zM594 349l-357 578h-94l403 -651zM1182 -262 c-63 -48 -182 -86 -380 -86h-612l-52 -79h1020'], + 0x2190: [400,-100,1370,80,1290,'1290 220h-1074c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2191: [860,350,460,80,380,'380 625c-43 30 -83 63 -120 99v-1074c-10 2 -20 3 -30 3s-20 -1 -30 -3v1074c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x2192: [400,-100,1370,80,1290,'1290 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1074c2 10 3 20 3 30s-1 20 -3 30h1074c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x2193: [850,360,460,80,380,'380 -189c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v1074c10 -2 20 -3 30 -3s20 1 30 3v-1074c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x2194: [400,-100,1455,80,1375,'1375 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1023c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1023 c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x2195: [898,397,460,80,380,'380 -226c-56 -52 -106 -109 -150 -171c-44 62 -94 119 -150 171c2 10 3 21 3 32c0 10 -1 21 -3 31c43 -29 83 -62 120 -98v1022c-37 -36 -77 -69 -120 -98c2 10 3 21 3 31c0 11 -1 22 -3 32c56 52 106 109 150 172c44 -63 94 -120 150 -172c-2 -10 -3 -21 -3 -32 c0 -10 1 -21 3 -31c-43 29 -83 62 -120 98v-1022c37 36 77 69 120 98c-2 -10 -3 -21 -3 -31c0 -11 1 -22 3 -32'], + 0x2196: [681,195,1037,80,957,'957 -153c-9 -6 -16 -12 -24 -19c-7 -7 -13 -15 -19 -23l-759 759c-1 -52 -6 -104 -15 -155c-6 9 -13 17 -20 25c-8 7 -16 14 -25 20c3 76 -2 152 -15 227c75 -13 151 -18 227 -15c6 -8 13 -17 21 -24c7 -8 15 -15 24 -21c-51 -9 -103 -14 -154 -15'], + 0x2197: [681,195,1037,80,957,'957 681c-13 -75 -18 -151 -15 -227c-9 -6 -17 -13 -25 -20c-7 -8 -14 -16 -20 -25c-10 51 -15 103 -15 155l-760 -759c-5 8 -12 16 -19 23s-15 13 -23 19l759 759c-52 1 -103 6 -154 15c9 6 17 13 24 21c8 7 15 16 21 24c76 -3 152 2 227 15'], + 0x2198: [695,181,1037,80,957,'957 -181c-75 13 -151 18 -227 15c-6 8 -13 17 -21 24c-7 8 -15 15 -24 21c51 9 102 14 154 15l-759 759c8 6 16 12 23 19s14 15 19 23l760 -759c0 52 5 104 15 155c6 -9 13 -17 20 -25c8 -7 16 -14 25 -20c-3 -76 2 -152 15 -227'], + 0x2199: [695,181,1037,80,957,'957 653l-759 -759c51 -1 103 -6 154 -15c-9 -6 -17 -13 -24 -21c-8 -7 -15 -16 -21 -24c-76 3 -152 -2 -227 -15c13 75 18 151 15 227c9 6 17 13 25 20c7 8 14 16 20 25c9 -51 14 -103 15 -155l759 759c6 -8 12 -16 19 -23c8 -7 15 -13 24 -19'], + 0x219A: [400,-100,1370,80,1290,'1290 220h-590l-41 -120c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l41 120h-433c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h454l41 120 c8 -2 17 -3 26 -3c8 0 17 1 25 3l-41 -120h569c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x219B: [400,-100,1370,80,1290,'1290 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-454l-41 -120c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l41 120h-569c2 10 3 20 3 30s-1 20 -3 30h590l41 120c8 -2 17 -3 26 -3c8 0 17 1 25 3l-41 -120h433 c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x219E: [400,-100,1445,80,1365,'1365 220h-979c36 -37 69 -77 99 -120c-11 2 -22 3 -32 3c-11 0 -22 -1 -32 -3c-40 44 -84 84 -131 120h-74c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3 c-30 -43 -63 -83 -99 -120h74c47 36 91 76 131 120c10 -2 21 -3 32 -3c10 0 21 1 32 3c-30 -43 -63 -83 -99 -120h979c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x219F: [898,387,460,80,380,'380 493c-43 29 -83 62 -120 98v-978c-10 1 -20 3 -30 3s-20 -2 -30 -3v978c-37 -36 -77 -69 -120 -98c2 10 3 21 3 32c0 10 -1 21 -3 32c44 40 84 84 120 130v74c-37 -36 -77 -69 -120 -98c2 10 3 21 3 31c0 11 -1 22 -3 32c56 52 106 109 150 172 c44 -63 94 -120 150 -172c-2 -10 -3 -21 -3 -32c0 -10 1 -21 3 -31c-43 29 -83 62 -120 98v-74c36 -46 76 -90 120 -130c-2 -11 -3 -22 -3 -32c0 -11 1 -22 3 -32'], + 0x21A0: [400,-100,1445,80,1365,'1365 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-74c-47 -36 -91 -76 -131 -120c-10 2 -21 3 -32 3c-10 0 -21 -1 -32 -3c30 43 63 83 99 120h-979c2 10 3 20 3 30s-1 20 -3 30h979c-36 37 -69 77 -99 120c11 -2 22 -3 32 -3 c11 0 22 1 32 3c40 -44 84 -84 131 -120h74c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21A1: [887,398,460,80,380,'380 -226c-56 -52 -106 -109 -150 -172c-44 63 -94 120 -150 172c2 10 3 21 3 32c0 10 -1 21 -3 31c43 -29 83 -62 120 -98v74c-36 46 -76 90 -120 130c2 11 3 22 3 32c0 11 -1 22 -3 32c43 -29 83 -62 120 -98v978c10 -1 20 -3 30 -3s20 2 30 3v-978c37 36 77 69 120 98 c-2 -10 -3 -21 -3 -32c0 -10 1 -21 3 -32c-44 -40 -84 -84 -120 -130v-74c37 36 77 69 120 98c-2 -10 -3 -21 -3 -31c0 -11 1 -22 3 -32'], + 0x21A2: [400,-100,1455,80,1375,'1375 100c-10 2 -21 3 -32 3c-10 0 -21 -1 -32 -3l-120 120h-975c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h975l120 120c11 -2 22 -3 32 -3 c11 0 22 1 32 3l-150 -150'], + 0x21A3: [400,-100,1455,80,1375,'1375 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-975l-120 -120c-11 2 -22 3 -32 3c-11 0 -22 -1 -32 -3l150 150l-150 150c10 -2 21 -3 32 -3s21 1 32 3l120 -120h975c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3 c51 -56 109 -106 171 -150'], + 0x21A4: [400,-100,1370,80,1290,'1290 100c-7 2 -15 3 -22 3c-8 0 -16 -1 -23 -3v120h-1029c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1029v120c7 -2 15 -3 23 -3c7 0 15 1 22 3 v-300'], + 0x21A5: [860,350,460,80,380,'380 -350h-300c2 7 3 15 3 23c0 7 -1 15 -3 22h120v1029c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32c-43 30 -83 63 -120 99v-1029h120c-2 -7 -3 -15 -3 -22 c0 -8 1 -16 3 -23'], + 0x21A6: [400,-100,1370,80,1290,'1290 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1029v-120c-7 2 -15 3 -23 3c-7 0 -15 -1 -22 -3v300c7 -2 15 -3 22 -3c8 0 16 1 23 3v-120h1029c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3 c51 -56 109 -106 171 -150'], + 0x21A7: [850,360,460,80,380,'380 -189c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v1029h-120c2 7 3 15 3 22c0 8 -1 16 -3 23h300c-2 -7 -3 -15 -3 -23c0 -7 1 -15 3 -22h-120v-1029c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32 s1 -21 3 -32'], + 0x21A9: [490,-100,1400,80,1320,'1320 355c0 -88 -47 -135 -135 -135h-969c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h969c49 0 75 26 75 75s-26 75 -75 75h-60c2 10 3 20 3 30 s-1 20 -3 30h60c88 0 135 -47 135 -135'], + 0x21AA: [490,-100,1400,80,1320,'1320 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-969c-88 0 -135 47 -135 135s47 135 135 135h60c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-60c-49 0 -75 -26 -75 -75s26 -75 75 -75h969c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3 s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21AB: [490,-40,1400,80,1320,'1320 355c0 -88 -47 -135 -135 -135h-75v-180c-10 2 -20 3 -30 3s-20 -1 -30 -3v180h-834c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h834v75 c0 88 47 135 135 135s135 -47 135 -135zM1260 355c0 49 -26 75 -75 75s-75 -26 -75 -75v-75h75c49 0 75 26 75 75'], + 0x21AC: [490,-40,1400,80,1320,'1320 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-834v-180c-10 2 -20 3 -30 3s-20 -1 -30 -3v180h-75c-88 0 -135 47 -135 135s47 135 135 135s135 -47 135 -135v-75h834c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3 c51 -56 109 -106 171 -150zM290 280v75c0 49 -26 75 -75 75s-75 -26 -75 -75s26 -75 75 -75h75'], + 0x21AD: [400,-100,1455,80,1375,'1375 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-136c-29 0 -51 14 -69 35c-12 14 -22 32 -34 46c-6 7 -12 14 -22 14c-17 0 -22 -13 -26 -27c-7 -28 -9 -63 -16 -92c-12 -42 -35 -71 -83 -71c-49 0 -72 29 -84 71 c-7 29 -9 64 -16 92c-4 14 -9 27 -25 27c-17 0 -22 -13 -26 -27c-7 -28 -9 -63 -16 -92c-12 -42 -35 -71 -83 -71c-49 0 -72 29 -84 71c-7 29 -9 64 -16 92c-4 14 -9 27 -25 27c-11 0 -17 -7 -23 -14c-12 -14 -22 -32 -34 -46c-18 -21 -40 -35 -68 -35h-137 c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h137c10 0 16 7 22 14c12 14 22 32 34 46c18 21 40 35 69 35c48 0 71 -29 83 -71c7 -29 9 -64 16 -92 c4 -14 9 -27 26 -27c16 0 21 13 25 27c7 28 9 63 16 92c12 42 35 71 84 71c48 0 71 -29 83 -71c7 -29 9 -64 16 -92c4 -14 9 -27 26 -27c16 0 21 13 25 27c7 28 9 63 16 92c12 42 35 71 84 71c28 0 50 -14 68 -35c12 -14 22 -32 34 -46c6 -7 12 -14 23 -14h136 c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21AE: [400,-100,1455,80,1375,'1375 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-496l-42 -120c-8 2 -16 3 -25 3s-17 -1 -25 -3l41 120h-476c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150 c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h496l42 120c8 -2 16 -3 25 -3s17 1 25 3l-41 -120h476c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21B0: [708,207,710,80,630,'630 -207c-10 1 -20 3 -30 3s-20 -2 -30 -3v735h-354c36 -38 69 -78 99 -121c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 107 -171 150c62 44 120 95 171 151c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -121l384 1c4 -7 8 -13 13 -18s11 -9 17 -12v-765'], + 0x21B1: [708,207,710,80,630,'630 557c-62 -43 -120 -94 -171 -149c-11 1 -21 3 -32 3s-21 -2 -32 -3c30 42 63 82 99 120h-354v-735c-10 1 -20 3 -30 3s-20 -2 -30 -3v765c6 3 12 7 17 12s9 11 13 17h384c-36 38 -69 78 -99 121c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -107 171 -151'], + 0x21B2: [707,208,710,80,630,'630 707v-765c-6 -3 -12 -7 -17 -12s-9 -11 -13 -18l-384 1c36 -38 69 -78 99 -121c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 107 -171 151c62 43 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -121h354v735c10 -1 20 -3 30 -3s20 2 30 3'], + 0x21B3: [707,208,710,80,630,'630 -57c-62 -44 -120 -95 -171 -151c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 121h-384c-4 6 -8 12 -13 17s-11 9 -17 12v765c10 -1 20 -3 30 -3s20 2 30 3v-735h354c-36 38 -69 78 -99 120c11 -1 21 -3 32 -3s21 2 32 3c51 -55 109 -106 171 -149'], + 0x21B6: [640,-240,1183,80,1103,'1103 250c-10 2 -20 3 -30 3s-20 -1 -30 -3c0 237 -165 330 -420 330c-197 0 -326 -68 -389 -222c48 24 99 44 151 59c-5 -9 -9 -19 -13 -29c-3 -10 -5 -20 -7 -31c-69 -32 -134 -71 -195 -117c-23 73 -53 143 -90 210c5 9 9 19 13 29c3 10 5 21 7 31 c30 -39 56 -81 80 -124c71 175 218 254 443 254c295 0 480 -116 480 -390'], + 0x21B7: [640,-240,1183,80,1103,'1103 450c-37 -67 -67 -137 -90 -210c-61 46 -126 85 -195 117c-2 11 -4 21 -7 31c-4 10 -8 20 -13 29c52 -15 102 -35 151 -59c-63 154 -192 222 -389 222c-255 0 -420 -93 -420 -330c-10 2 -20 3 -30 3s-20 -1 -30 -3c0 274 185 390 480 390c225 0 371 -79 443 -254 c23 43 50 85 80 124c2 -10 4 -21 7 -31s8 -20 13 -29'], + 0x21BC: [400,-220,1370,80,1290,'1290 220h-1180l-30 30c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21BD: [280,-100,1370,80,1290,'1290 220h-1074c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150l30 30h1180c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21BE: [860,350,340,80,260,'260 625c-43 29 -83 62 -120 98v-1073c-10 2 -20 3 -30 3s-20 -1 -30 -3v1180l30 30c44 -63 94 -120 150 -172c-2 -10 -3 -21 -3 -31c0 -11 1 -22 3 -32'], + 0x21BF: [860,350,340,80,260,'260 -350c-10 2 -20 3 -30 3s-20 -1 -30 -3v1073c-37 -36 -77 -69 -120 -98c2 10 3 21 3 32c0 10 -1 21 -3 31c56 52 106 109 150 172l30 -30v-1180'], + 0x21C0: [400,-220,1370,80,1290,'1290 250l-30 -30h-1180c2 10 3 20 3 30s-1 20 -3 30h1073c-36 37 -69 77 -98 120c10 -2 21 -3 32 -3c10 0 21 1 31 3c52 -56 109 -106 172 -150'], + 0x21C1: [280,-100,1370,80,1290,'1290 250c-63 -44 -120 -94 -172 -150c-10 2 -21 3 -31 3c-11 0 -22 -1 -32 -3c29 43 62 83 98 120h-1073c2 10 3 20 3 30s-1 20 -3 30h1180'], + 0x21C2: [850,360,340,80,260,'260 -188c-56 -52 -106 -109 -150 -172l-30 30v1180c10 -2 20 -3 30 -3s20 1 30 3v-1073c37 36 77 69 120 98c-2 -10 -3 -21 -3 -32c0 -10 1 -21 3 -31'], + 0x21C3: [850,360,340,80,260,'260 850v-1180l-30 -30c-44 63 -94 120 -150 172c2 10 3 21 3 31c0 11 -1 22 -3 32c43 -29 83 -62 120 -98v1073c10 -2 20 -3 30 -3s20 1 30 3'], + 0x21C4: [570,70,1380,80,1300,'1290 50h-1074c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM1300 420c-62 -44 -120 -94 -171 -150 c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1074c2 10 3 20 3 30s-1 20 -3 30h1074c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21C5: [860,360,800,80,720,'380 625c-43 30 -83 63 -120 99v-1074c-10 2 -20 3 -30 3s-20 -1 -30 -3v1074c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 -189c-56 -51 -106 -109 -150 -171 c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v1074c10 -2 20 -3 30 -3s20 1 30 3v-1074c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x21C6: [570,70,1380,80,1300,'1300 80c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1074c2 10 3 20 3 30s-1 20 -3 30h1074c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM1290 390h-1074c36 -37 69 -77 99 -120 c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21C7: [570,70,1370,80,1290,'1290 50h-1074c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM1290 390h-1074c36 -37 69 -77 99 -120 c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21C8: [860,350,800,80,720,'380 625c-43 30 -83 63 -120 99v-1074c-10 2 -20 3 -30 3s-20 -1 -30 -3v1074c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 625c-43 30 -83 63 -120 99v-1074 c-10 2 -20 3 -30 3s-20 -1 -30 -3v1074c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x21C9: [570,70,1370,80,1290,'1290 80c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1074c2 10 3 20 3 30s-1 20 -3 30h1074c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM1290 420c-62 -44 -120 -94 -171 -150 c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1074c2 10 3 20 3 30s-1 20 -3 30h1074c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x21CA: [850,360,800,80,720,'380 -189c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v1074c10 -2 20 -3 30 -3s20 1 30 3v-1074c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 -189c-56 -51 -106 -109 -150 -171 c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v1074c10 -2 20 -3 30 -3s20 1 30 3v-1074c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x21CB: [510,10,1379,80,1299,'1299 140c-62 -44 -119 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1073c2 10 3 20 3 30s-1 20 -3 30h1180zM1290 330h-1180l-30 30c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30 s1 -20 3 -30'], + 0x21CC: [510,10,1379,80,1299,'1290 110h-1074c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150l30 30h1180c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM1299 360l-29 -30h-1180c2 10 3 20 3 30s-1 20 -3 30h1073c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3 c52 -56 109 -106 171 -150'], + 0x21CD: [550,50,1370,80,1290,'1290 130h-621l-62 -180c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l62 180h-323c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h406l62 180 c8 -2 17 -3 26 -3c8 0 17 1 25 3l-62 -180h538c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-559l-41 -120h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM680 310h-446c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h405'], + 0x21CE: [550,50,1455,80,1375,'1375 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-449l-62 -180c-8 2 -16 3 -25 3s-17 -1 -25 -3l62 180h-366c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-60 73 -127 141 -200 200 c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h449l62 180c8 -2 16 -3 25 -3s17 1 25 3l-62 -180h366c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -140 200 -200zM1290 250c-24 19 -47 39 -69 60h-447l-42 -120 h489c22 21 45 41 69 60zM723 310h-489c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h447'], + 0x21CF: [550,50,1370,80,1290,'1290 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-406l-62 -180c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l62 180h-538c2 10 3 20 3 30s-1 20 -3 30h559l41 120h-600c2 10 3 20 3 30s-1 20 -3 30h621l62 180 c8 -2 17 -3 26 -3c8 0 17 1 25 3l-62 -180h323c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -140 200 -200zM1205 250c-24 19 -47 39 -69 60h-405l-41 -120h446c22 21 45 41 69 60'], + 0x21D0: [450,-50,1370,80,1290,'1290 130h-995c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h995c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-1056c-22 -21 -45 -41 -69 -60 c24 -19 47 -39 69 -60h1056c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21D1: [860,350,560,80,480,'480 575c-28 22 -54 46 -80 70v-995c-10 2 -20 3 -30 3s-20 -1 -30 -3v1056c-21 22 -41 45 -60 69c-19 -24 -39 -47 -60 -69v-1056c-10 2 -20 3 -30 3s-20 -1 -30 -3v995c-26 -24 -52 -48 -80 -70c2 14 3 28 3 43c0 14 -1 28 -3 42c73 59 141 127 200 200 c59 -73 127 -141 200 -200c-2 -14 -3 -28 -3 -42c0 -15 1 -29 3 -43'], + 0x21D2: [450,-50,1370,80,1290,'1290 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-995c2 10 3 20 3 30s-1 20 -3 30h1056c22 21 45 41 69 60c-24 19 -47 39 -69 60h-1056c2 10 3 20 3 30s-1 20 -3 30h995c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3 c14 0 28 1 42 3c59 -73 127 -141 200 -200'], + 0x21D3: [850,360,560,80,480,'480 -160c-73 -59 -141 -127 -200 -200c-59 73 -127 141 -200 200c2 14 3 28 3 42c0 15 -1 29 -3 43c28 -22 54 -46 80 -70v995c10 -2 20 -3 30 -3s20 1 30 3v-1056c21 -22 41 -45 60 -69c19 24 39 47 60 69v1056c10 -2 20 -3 30 -3s20 1 30 3v-995c26 24 52 48 80 70 c-2 -14 -3 -28 -3 -43c0 -14 1 -28 3 -42'], + 0x21D4: [450,-50,1455,80,1375,'1375 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-865c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-60 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3 c-22 -28 -46 -54 -70 -80h865c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -140 200 -200zM1290 250c-24 19 -47 39 -69 60h-987c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h987c22 21 45 41 69 60'], + 0x21D5: [898,397,560,80,480,'480 -198c-73 -59 -141 -126 -200 -199c-59 73 -127 140 -200 199c2 15 3 29 3 43s-1 28 -3 42c28 -22 54 -45 80 -70v866c-26 -25 -52 -48 -80 -70c2 14 3 28 3 42s-1 28 -3 43c73 59 141 126 200 200c59 -74 127 -141 200 -200c-2 -15 -3 -29 -3 -43s1 -28 3 -42 c-28 22 -54 45 -80 70v-866c26 25 52 48 80 70c-2 -14 -3 -28 -3 -42s1 -28 3 -43zM340 743c-21 23 -41 46 -60 70c-19 -24 -39 -47 -60 -70v-986c21 -23 41 -46 60 -70c19 24 39 47 60 70v986'], + 0x21D6: [681,259,1100,80,1020,'1020 -89c-8 -6 -16 -12 -23 -20c-7 -7 -13 -14 -19 -23l-747 747c-30 1 -61 3 -91 6c3 -30 5 -61 6 -91l747 -747c-8 -5 -16 -12 -23 -19s-14 -15 -19 -23l-704 704c-1 -36 -3 -71 -7 -107c-9 12 -18 23 -28 33s-21 19 -32 27c10 95 10 189 0 283c94 -10 189 -10 283 0 c8 -11 18 -22 28 -32s20 -19 32 -28c-35 -3 -71 -6 -106 -7'], + 0x21D7: [681,259,1100,80,1020,'1020 398c-11 -8 -22 -17 -32 -27s-19 -21 -28 -33c-3 36 -6 71 -6 107l-704 -704c-6 8 -12 16 -19 23c-8 7 -15 14 -24 19l747 747c1 30 3 61 6 91c-30 -3 -60 -5 -91 -6l-747 -747c-5 9 -12 16 -19 23c-7 8 -15 14 -23 20l704 703c-36 1 -71 4 -106 7c11 9 22 18 32 28 s19 21 28 32c94 -10 188 -10 282 0c-9 -94 -9 -188 0 -283'], + 0x21D8: [759,181,1100,80,1020,'1020 102c-9 -95 -9 -189 0 -283c-94 10 -188 10 -282 0c-9 11 -18 22 -28 32s-21 19 -32 28c35 3 70 6 106 7l-704 703c8 6 16 12 23 20c7 7 14 14 19 23l747 -747c31 -1 61 -3 91 -6c-3 30 -5 61 -6 91l-747 747c9 5 16 12 24 19c7 7 13 15 19 23l704 -704 c0 36 3 71 6 107c9 -12 18 -23 28 -33s21 -19 32 -27'], + 0x21D9: [759,181,1100,80,1020,'1020 589l-703 -703c35 -1 71 -4 106 -7c-12 -9 -22 -18 -32 -28s-20 -21 -28 -32c-94 10 -189 10 -283 0c10 94 10 188 0 283c11 8 22 17 32 27s19 21 28 33c4 -36 6 -71 7 -107l704 704c5 -8 12 -16 19 -23s15 -14 23 -19l-747 -747c-1 -30 -3 -61 -6 -91 c30 3 61 5 91 6l747 747c6 -9 12 -16 19 -23c7 -8 15 -14 23 -20'], + 0x21DA: [525,25,1370,80,1290,'1290 40h-905l55 -65c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-82 101 -174 193 -275 275c101 82 193 174 275 275c14 -2 28 -3 42 -3c15 0 29 1 43 3l-55 -65h905c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-961c-41 -42 -83 -82 -128 -120h1089c-2 -10 -3 -20 -3 -30 s1 -20 3 -30h-1089c45 -38 87 -78 128 -120h961c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21DB: [525,25,1370,80,1290,'1290 250c-101 -82 -193 -174 -275 -275c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3l55 65h-905c2 10 3 20 3 30s-1 20 -3 30h961c41 42 83 82 128 120h-1089c2 10 3 20 3 30s-1 20 -3 30h1089c-45 38 -87 78 -128 120h-961c2 10 3 20 3 30s-1 20 -3 30h905l-55 65 c14 -2 28 -3 43 -3c14 0 28 1 42 3c82 -101 174 -193 275 -275'], + 0x21DC: [400,-100,1370,80,1290,'1290 220h-100c-29 0 -50 14 -68 35c-12 14 -22 32 -34 46c-7 7 -13 14 -23 14c-17 0 -21 -13 -25 -27c-8 -28 -9 -63 -17 -92c-11 -42 -34 -71 -83 -71s-72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -9 27 -25 27c-17 0 -21 -13 -25 -27c-8 -28 -9 -63 -17 -92 c-11 -42 -34 -71 -83 -71s-72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -9 27 -25 27c-17 0 -21 -13 -25 -27c-8 -28 -9 -63 -17 -92c-11 -42 -34 -71 -83 -71c-29 0 -50 14 -68 35c-12 14 -22 32 -34 46c-7 7 -13 14 -23 14h-99c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3 s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h99c29 0 50 -14 68 -35c12 -14 22 -32 34 -46c7 -7 13 -14 23 -14c16 0 21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71s72 -29 83 -71 c8 -29 9 -64 17 -92c4 -14 8 -27 25 -27c16 0 21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71s72 -29 83 -71c8 -29 9 -64 17 -92c4 -14 8 -27 25 -27c16 0 21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71c29 0 50 -14 68 -35c12 -14 22 -32 34 -46c7 -7 13 -14 23 -14 h100c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x21DD: [400,-100,1370,80,1290,'1290 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-99c-10 0 -16 -7 -23 -14c-12 -14 -22 -32 -34 -46c-18 -21 -39 -35 -68 -35c-49 0 -72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -8 27 -25 27c-16 0 -21 -13 -25 -27 c-8 -28 -9 -63 -17 -92c-11 -42 -34 -71 -83 -71s-72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -8 27 -25 27s-21 -13 -25 -27c-8 -28 -9 -63 -17 -92c-11 -42 -34 -71 -83 -71s-72 29 -83 71c-8 29 -9 64 -17 92c-4 14 -8 27 -25 27c-10 0 -16 -7 -23 -14 c-12 -14 -22 -32 -34 -46c-18 -21 -39 -35 -68 -35h-100c2 10 3 20 3 30s-1 20 -3 30h100c10 0 16 7 23 14c12 14 22 32 34 46c18 21 39 35 68 35c49 0 72 -29 83 -71c8 -29 9 -64 17 -92c4 -14 8 -27 25 -27s21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71s72 -29 83 -71 c8 -29 9 -64 17 -92c4 -14 8 -27 25 -27s21 13 25 27c8 28 9 63 17 92c11 42 34 71 83 71s72 -29 83 -71c8 -29 9 -64 17 -92c4 -14 9 -27 25 -27c10 0 16 7 23 14c12 14 22 32 34 46c18 21 39 35 68 35h99c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3 c51 -56 109 -106 171 -150'], + 0x21E6: [450,-50,1497,80,1417,'1417 140h-1085v-90c-7 2 -15 3 -23 3s-15 -1 -23 -3c-60 75 -130 141 -206 200c76 59 146 125 206 200c8 -2 15 -3 23 -3s16 1 23 3v-90h1085v-220zM1377 180v140h-1085v75c-46 -52 -95 -100 -148 -145c53 -45 102 -93 148 -145v75h1085'], + 0x21E7: [930,407,560,80,480,'480 677l-90 1v-1085h-220v1084l-90 1c2 7 3 15 3 22c0 8 -1 16 -3 23c75 61 141 131 200 207c59 -76 125 -146 200 -207c-2 -7 -3 -15 -3 -23c0 -7 1 -15 3 -23zM425 718c-52 45 -100 95 -145 148c-45 -53 -93 -103 -145 -149h75v-1085l140 1v1085h75'], + 0x21E8: [450,-50,1497,80,1417,'1417 250c-76 -59 -146 -125 -206 -200c-8 2 -15 3 -23 3s-16 -1 -23 -3v90h-1085v220h1085v90c7 -2 15 -3 23 -3s15 1 23 3c60 -75 130 -141 206 -200zM1354 250c-54 45 -103 93 -149 145v-75h-1085v-140h1085v-75c46 52 95 100 149 145'], + 0x21E9: [907,430,560,80,480,'480 -223c-75 -61 -141 -131 -200 -207c-59 76 -125 146 -200 207c2 7 3 15 3 23c0 7 -1 15 -3 22l90 1v1084h220v-1085l90 1c-2 -8 -3 -16 -3 -23c0 -8 1 -16 3 -23zM425 -218h-75v1085l-140 1v-1085h-75c52 -46 100 -96 145 -149c45 53 93 103 145 148'], + 0x21F3: [930,430,560,80,480,'480 -223c-75 -61 -141 -131 -200 -207c-59 76 -125 146 -200 207c2 7 3 15 3 23c0 7 -1 15 -3 23h90v855h-90c2 7 3 15 3 22c0 8 -1 16 -3 23c75 61 141 131 200 207c59 -76 125 -146 200 -207c-2 -7 -3 -15 -3 -23c0 -7 1 -15 3 -23l-90 1v-855h90c-2 -8 -3 -16 -3 -23 c0 -8 1 -16 3 -23zM425 718c-52 45 -100 95 -145 148c-45 -53 -93 -103 -145 -149h75v-934h-75c52 -46 100 -96 145 -149c45 53 93 103 145 148h-75v935'], + 0x21F5: [860,360,800,80,720,'380 -189c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v1074c10 -2 20 -3 30 -3s20 1 30 3v-1074c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 625c-43 30 -83 63 -120 99v-1074 c-10 2 -20 3 -30 3s-20 -1 -30 -3v1074c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0x21F6: [740,240,1370,80,1290,'1290 -90c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1074c2 10 3 20 3 30s-1 20 -3 30h1074c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM1290 250c-62 -44 -120 -94 -171 -150 c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-1074c2 10 3 20 3 30s-1 20 -3 30h1074c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM1290 590c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120 h-1074c2 10 3 20 3 30s-1 20 -3 30h1074c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0x220F: [971,471,1314,80,1234,'1234 -471l-172 4l-171 -4v36l56 3c54 4 60 13 60 105v1154c0 74 -6 84 -60 87l-56 4h-468l-56 -4c-54 -3 -60 -13 -60 -87v-1154c0 -92 6 -101 60 -105l56 -3v-36l-172 4l-171 -4v36l56 3c54 4 60 13 60 105v1154c0 92 -6 101 -60 105l-56 3v36l583 -4l571 4v-36l-56 -3 c-54 -4 -60 -13 -60 -105v-1154c0 -92 6 -101 60 -105l56 -3v-36'], + 0x2210: [971,471,1314,80,1234,'1234 -471l-571 4l-583 -4v36l56 3c54 4 60 13 60 105v1154c0 92 -6 101 -60 105l-56 3v36l171 -4l172 4v-36l-56 -3c-54 -4 -60 -13 -60 -105v-1154c0 -74 6 -84 60 -87l56 -4h468l56 4c54 3 60 13 60 87v1154c0 92 -6 101 -60 105l-56 3v36l171 -4l172 4v-36l-56 -3 c-54 -4 -60 -13 -60 -105v-1154c0 -92 6 -101 60 -105l56 -3v-36'], + 0x2211: [971,471,1246,80,1166,'1166 -218c-6 -63 -7 -152 -7 -253l-476 4l-603 -4v33l446 672l-446 703l5 34l264 -4l740 4c-3 -44 -4 -65 -4 -95c0 -31 1 -52 4 -95h-40l-7 83c-4 46 -35 55 -315 55h-503l402 -634l-434 -654h612c290 0 307 7 315 84l7 67h40'], + 0x221A: [840,310,703,120,733,'733 780h-63l-253 -1090c-14 2 -27 3 -41 3s-27 -1 -41 -3l-146 426h-69v60h151l117 -344l234 1008h111v-60'], + 0x2223: [730,230,210,80,130,'130 -230c-8 2 -17 3 -25 3s-17 -1 -25 -3v960c8 -2 17 -3 25 -3s17 1 25 3v-960'], + 0x2225: [730,230,380,80,300,'130 -230c-8 2 -17 3 -25 3s-17 -1 -25 -3v960c8 -2 17 -3 25 -3s17 1 25 3v-960zM300 -230c-8 2 -17 3 -25 3s-17 -1 -25 -3v960c8 -2 17 -3 25 -3s17 1 25 3v-960'], + 0x222B: [1263,763,715,80,635,'635 1241c-8 -30 -15 -79 -11 -137h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73 c2 -46 4 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810c0 267 0 683 33 795c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22'], + 0x222C: [1263,763,1087,80,1007,'635 1241c-8 -30 -15 -79 -11 -137h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73 c2 -46 4 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810c0 267 0 683 33 795c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22zM1007 1241c-8 -30 -15 -79 -11 -137h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123 c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73c2 -46 4 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810c0 267 0 683 33 795 c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22'], + 0x222D: [1263,763,1459,80,1379,'635 1241c-8 -30 -15 -79 -11 -137h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73 c2 -46 4 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810c0 267 0 683 33 795c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22zM1007 1241c-8 -30 -15 -79 -11 -137h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123 c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73c2 -46 4 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810c0 267 0 683 33 795 c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22zM1379 1241c-8 -30 -15 -79 -11 -137h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111 c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73c2 -46 4 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810c0 267 0 683 33 795c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22'], + 0x222E: [1263,763,772,80,692,'692 250c0 -183 -90 -288 -259 -304c-3 -209 -10 -417 -31 -491c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79c56 -2 86 36 102 123c10 57 13 283 14 506 c-167 17 -257 122 -257 304c0 183 90 288 259 304c3 209 10 417 31 491c7 26 12 48 25 63c35 46 60 72 96 111c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123c-10 -57 -13 -283 -14 -506 c167 -17 257 -122 257 -304zM634 250c0 144 -70 229 -200 245v-245l-1 -245c131 16 201 100 201 245zM339 495c-131 -16 -201 -100 -201 -245c0 -144 70 -229 200 -245v245'], + 0x222F: [1263,763,1144,80,1064,'1064 250c0 -140 -88 -237 -259 -281c-2 -217 -9 -437 -31 -514c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79c56 -2 86 36 102 123c10 58 13 286 14 512 c-42 -5 -88 -8 -137 -8c-50 0 -97 3 -139 8c-3 -211 -10 -422 -31 -497c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79c56 -2 86 36 102 123c10 59 14 298 15 530 c-170 43 -258 141 -258 280c0 140 88 237 259 281c2 217 9 437 31 514c7 26 12 48 25 63c35 46 60 72 96 111c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123c-10 -58 -13 -286 -14 -512c42 5 88 8 137 8 c50 0 97 -3 139 -8c3 211 10 422 31 497c7 26 12 48 25 63c35 46 60 72 96 111c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123c-10 -59 -14 -298 -15 -530c170 -43 258 -141 258 -280zM1006 250 c0 112 -70 185 -200 221v-221l-1 -222c131 37 201 110 201 222zM339 472c-131 -37 -201 -110 -201 -222s70 -185 200 -221v221zM711 490c-42 5 -89 8 -139 8s-96 -3 -138 -8v-240l-1 -240c42 -5 89 -8 139 -8s96 3 138 8v240'], + 0x2230: [1263,763,1516,80,1436,'1436 250c0 -101 -61 -180 -184 -233c-23 -9 -48 -18 -75 -26c-2 -224 -8 -456 -31 -536c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79c56 -2 86 36 102 123 c10 59 14 298 15 529c-80 -14 -172 -23 -277 -25c-3 -208 -10 -415 -31 -489c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79c56 -2 86 36 102 123c10 57 13 281 14 504 c-105 2 -197 11 -276 25c-2 -217 -9 -437 -31 -514c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79c56 -2 86 36 102 123c11 61 14 314 15 551c-27 8 -52 17 -74 26 c-123 53 -184 132 -184 233s61 180 184 233c23 9 48 18 75 26c2 224 8 456 31 536c7 26 12 48 25 63c35 46 60 72 96 111c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123c-10 -59 -14 -298 -15 -529 c80 14 172 23 277 25c3 208 10 415 31 489c7 26 12 48 25 63c35 46 60 72 96 111c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123c-10 -57 -13 -281 -14 -504c105 -2 197 -11 276 -25c2 217 9 437 31 514 c7 26 12 48 25 63c35 46 60 72 96 111c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123c-11 -61 -14 -314 -15 -551c27 -8 52 -17 74 -26c123 -53 184 -132 184 -233zM1378 250c0 79 -52 138 -149 179 c-16 7 -33 13 -51 19v-198v-198c18 5 35 12 51 19c97 41 149 100 149 179zM338 448c-18 -5 -35 -12 -51 -19c-97 -41 -149 -100 -149 -179s52 -138 149 -179c16 -7 33 -13 51 -19v198v198zM711 498c-106 -2 -199 -11 -277 -26v-222l-1 -222c79 -15 171 -24 277 -26v248z M1083 472c-79 15 -171 24 -277 26v-248l-1 -248c106 2 199 11 277 26v222'], + 0x2231: [1263,763,811,80,771,'771 351c-37 -43 -70 -89 -97 -139c-43 37 -89 70 -139 97c0 12 -1 23 -3 34c-2 12 -5 23 -9 33c38 -21 74 -44 107 -71c-15 111 -83 176 -196 190v-245c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44 c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810l1 245c-131 -16 -201 -100 -201 -245c-10 2 -19 3 -29 3s-19 -1 -29 -3c0 183 90 288 259 304c3 209 10 417 31 491c7 26 12 48 25 63c35 46 60 72 96 111 c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123c-10 -57 -13 -283 -14 -506c144 -15 231 -95 252 -234c22 35 46 67 72 98c0 -12 1 -23 3 -34s5 -22 9 -33'], + 0x2232: [1263,763,820,80,780,'780 379c-41 7 -81 17 -120 31c21 -44 32 -97 32 -160c0 -183 -90 -288 -259 -304c-3 -209 -10 -417 -31 -491c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79 c56 -2 86 36 102 123c10 57 13 283 14 506c-167 17 -257 122 -257 304c0 183 90 288 259 304c3 209 10 417 31 491c7 26 12 48 25 63c35 46 60 72 96 111c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123 c-10 -57 -13 -283 -14 -506c40 -5 75 -14 106 -28c-6 -8 -11 -16 -15 -25s-7 -18 -9 -28c-24 11 -52 19 -83 22v-245l-1 -245c131 16 201 100 201 245c0 52 -8 96 -25 132c-10 -41 -23 -81 -38 -120c-4 11 -9 21 -14 31c-6 10 -12 20 -19 29c21 52 37 107 46 163 c53 -21 108 -37 163 -47c4 -11 9 -21 14 -31c6 -10 12 -19 19 -28zM339 495c-131 -16 -201 -100 -201 -245c0 -144 70 -229 200 -245v245'], + 0x2233: [1263,763,773,80,733,'733 466c-25 -51 -46 -104 -60 -159c-51 26 -104 46 -159 61c-2 11 -6 22 -11 32c-4 10 -10 20 -16 30c40 -11 80 -25 119 -42c-32 61 -90 97 -172 107v-245l-1 -245c131 16 201 100 201 245c10 -2 19 -3 29 -3s19 1 29 3c0 -183 -90 -288 -259 -304 c-3 -209 -10 -417 -31 -491c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79c56 -2 86 36 102 123c10 57 13 283 14 506c-167 17 -257 122 -257 304c0 183 90 288 259 304 c3 209 10 417 31 491c7 26 12 48 25 63c35 46 60 72 96 111c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123c-10 -57 -13 -283 -14 -506c108 -11 183 -60 223 -141c13 39 29 78 48 115c2 -11 6 -22 11 -33 c4 -10 10 -20 16 -29zM339 495c-131 -16 -201 -100 -201 -245c0 -144 70 -229 200 -245v245'], + 0x22A2: [650,150,1360,80,1280,'1280 220h-1140v-370c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-370h1140c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22A3: [650,150,1360,80,1280,'1280 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3v370h-1140c2 10 3 20 3 30s-1 20 -3 30h1140v370c10 -2 20 -3 30 -3s20 1 30 3v-800'], + 0x22A4: [650,150,860,80,780,'780 590h-320v-740c-10 2 -20 3 -30 3s-20 -1 -30 -3v740h-320c2 10 3 20 3 30s-1 20 -3 30h700c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22A5: [650,150,860,80,780,'780 -150h-700c2 10 3 20 3 30s-1 20 -3 30h320v740c10 -2 20 -3 30 -3s20 1 30 3v-740h320c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x22C0: [969,442,1000,80,920,'920 -442c-12 2 -25 3 -37 3c-13 0 -25 -1 -38 -3l-345 1249l-345 -1249c-13 2 -25 3 -38 3c-12 0 -25 -1 -37 -3l390 1411c10 -2 20 -3 30 -3s20 1 30 3'], + 0x22C1: [942,469,1000,80,920,'920 942l-390 -1411c-10 2 -20 3 -30 3s-20 -1 -30 -3l-390 1411c12 -2 25 -3 37 -3c13 0 25 1 38 3l345 -1249l345 1249c13 -2 25 -3 38 -3c12 0 25 1 37 3'], + 0x22C2: [960,442,1000,80,920,'920 -442c-12 2 -24 3 -36 3s-24 -1 -36 -3v982c0 226 -122 348 -348 348s-348 -122 -348 -348v-982c-12 2 -24 3 -36 3s-24 -1 -36 -3v982c0 273 147 420 420 420s420 -147 420 -420v-982'], + 0x22C3: [942,460,1000,80,920,'920 -40c0 -273 -147 -420 -420 -420s-420 147 -420 420v982c12 -2 24 -3 36 -3s24 1 36 3v-982c0 -226 122 -348 348 -348s348 122 348 348v982c12 -2 24 -3 36 -3s24 1 36 3v-982'], + 0x2308: [750,230,428,124,346,'346 750c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-158v-940c-11 2 -21 3 -32 3s-21 -1 -32 -3v980h222'], + 0x2309: [750,230,428,82,304,'304 -230c-11 2 -21 3 -32 3s-21 -1 -32 -3v940h-158c2 6 3 13 3 20s-1 14 -3 20h222v-980'], + 0x230A: [730,250,428,124,346,'346 -210c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-222v980c11 -2 21 -3 32 -3s21 1 32 3v-940h158'], + 0x230B: [730,250,428,82,304,'304 -250h-222c2 6 3 13 3 20s-1 14 -3 20h158v940c11 -2 21 -3 32 -3s21 1 32 3v-980'], + 0x2329: [781,281,419,82,337,'337 -267c-6 0 -13 -2 -19 -4c-7 -3 -13 -6 -18 -10l-218 531l218 531c5 -4 11 -7 18 -10c6 -2 13 -4 19 -4l-185 -517'], + 0x232A: [781,281,419,82,337,'337 250l-218 -531c-5 4 -11 7 -17 10c-7 2 -13 4 -20 4l186 517l-186 517c7 0 13 2 20 4c6 3 12 6 17 10'], + 0x23B4: [772,-647,740,0,740,'740 647c-6 2 -13 3 -20 3s-14 -1 -20 -3v75h-660v-75c-6 2 -13 3 -20 3s-14 -1 -20 -3v125h740v-125'], + 0x23B5: [-177,302,740,0,740,'740 -302h-740v125c6 -2 13 -3 20 -3s14 1 20 3v-75h660v75c6 -2 13 -3 20 -3s14 1 20 3v-125'], + 0x23DC: [762,-603,1028,0,1028,'1028 631c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-75 75 -227 109 -430 109h-112c-203 0 -355 -34 -430 -109c-3 6 -7 11 -12 16s-10 9 -16 12c81 81 240 131 458 131h112c218 0 377 -50 458 -131'], + 0x23DD: [-133,292,1028,0,1028,'1028 -161c-81 -81 -240 -131 -458 -131h-112c-218 0 -377 50 -458 131c6 3 11 7 16 12s9 10 12 16c75 -75 227 -109 430 -109h112c203 0 355 34 430 109c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x23DE: [797,-590,1038,0,1038,'1038 604c-7 -1 -14 -2 -20 -4c-7 -2 -13 -6 -18 -10c-20 56 -72 82 -141 82h-180c-81 0 -134 22 -160 59c-27 -37 -80 -59 -160 -59h-180c-70 0 -121 -26 -141 -82c-6 4 -12 8 -18 10c-7 2 -13 3 -20 4c27 74 88 118 179 118h180c87 0 140 20 140 75c6 -2 13 -3 20 -3 s13 1 20 3c0 -55 52 -75 140 -75h180c91 0 152 -44 179 -118'], + 0x23DF: [-120,327,1038,0,1038,'1038 -134c-27 -74 -88 -118 -179 -118h-180c-88 0 -140 -20 -140 -75c-7 2 -13 3 -20 3s-14 -1 -20 -3c0 55 -53 75 -140 75h-180c-91 0 -152 44 -179 118c7 1 13 2 20 4c6 2 12 6 18 10c20 -56 71 -82 141 -82h180c80 0 133 -22 160 -59c26 37 79 59 160 59h180 c69 0 121 26 141 82c5 -4 11 -8 18 -10c6 -2 13 -3 20 -4'], + 0x23E0: [729,-529,1064,0,1064,'1064 529c-11 2 -21 3 -32 3s-21 -1 -32 -3l-136 136h-664l-136 -136c-11 2 -21 3 -32 3s-21 -1 -32 -3l200 200h664'], + 0x23E1: [-59,259,1064,0,1064,'1064 -59l-200 -200h-664l-200 200c11 -2 21 -3 32 -3s21 1 32 3l136 -136h664l136 136c11 -2 21 -3 32 -3s21 1 32 3'], + 0x27A1: [450,-50,1445,80,1365,'1365 250c-73 -59 -141 -127 -200 -200v110h-1085v180h1085v110c59 -73 127 -141 200 -200'], + 0x27E6: [750,250,444,124,362,'362 -210c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-238v1000h238c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-79v-920h79zM243 710h-79v-920h79v920'], + 0x27E7: [750,250,444,82,320,'320 750v-1000h-238c2 6 3 13 3 20s-1 14 -3 20h79v920h-79c2 6 3 13 3 20s-1 14 -3 20h238zM280 710h-79v-920h79v920'], + 0x27E8: [781,281,419,82,337,'337 -267c-6 0 -13 -2 -19 -4c-7 -3 -13 -6 -18 -10l-218 531l218 531c5 -4 11 -7 18 -10c6 -2 13 -4 19 -4l-185 -517'], + 0x27E9: [781,281,419,82,337,'337 250l-218 -531c-5 4 -11 7 -17 10c-7 2 -13 4 -20 4l186 517l-186 517c7 0 13 2 20 4c6 3 12 6 17 10'], + 0x27EA: [781,281,654,82,572,'337 -267c-6 0 -13 -2 -19 -4c-7 -3 -13 -6 -18 -10l-218 531l218 531c5 -4 11 -7 18 -10c6 -2 13 -4 19 -4l-185 -517zM572 -267c-7 0 -14 -2 -20 -4c-6 -3 -12 -6 -18 -10l-218 531l218 531c6 -4 12 -7 18 -10c6 -2 13 -4 20 -4l-186 -517'], + 0x27EB: [781,281,654,82,572,'572 250l-218 -531c-6 4 -12 7 -18 10c-6 2 -13 4 -20 4l186 517l-186 517c7 0 14 2 20 4c6 3 12 6 18 10zM337 250l-218 -531c-5 4 -11 7 -17 10c-7 2 -13 4 -20 4l186 517l-186 517c7 0 13 2 20 4c6 3 12 6 17 10'], + 0x27EE: [744,244,350,124,268,'268 716c-61 -61 -80 -205 -80 -406v-120c0 -201 19 -345 80 -406c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-67 66 -116 216 -116 434v120c0 218 49 368 116 434c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x27EF: [744,244,350,82,226,'226 190c0 -218 -49 -368 -116 -434c-3 6 -7 11 -12 16s-10 9 -16 12c61 61 80 205 80 406v120c0 201 -19 345 -80 406c6 3 11 7 16 12s9 10 12 16c67 -66 116 -216 116 -434v-120'], + 0x2906: [450,-50,1445,80,1365,'1365 50c-10 2 -20 3 -30 3s-20 -1 -30 -3v80h-1010c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-60 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h1010v80c10 -2 20 -3 30 -3s20 1 30 3 v-400zM1305 310h-1071c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h1071v120'], + 0x2907: [450,-50,1445,80,1365,'1365 250c-73 -59 -140 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-1010v-80c-10 2 -20 3 -30 3s-20 -1 -30 -3v400c10 -2 20 -3 30 -3s20 1 30 3v-80h1010c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3 c59 -73 127 -141 200 -200zM1280 250c-24 19 -47 39 -69 60h-1071v-120h1071c22 21 45 41 69 60'], + 0x2A00: [844,344,1348,80,1268,'1268 250c0 -356 -238 -594 -594 -594s-594 238 -594 594s238 594 594 594s594 -238 594 -594zM734 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60zM1196 250c0 313 -209 522 -522 522s-522 -209 -522 -522s209 -522 522 -522s522 209 522 522'], + 0x2A01: [844,344,1348,80,1268,'1195 286c-15 281 -204 470 -485 485v-485h485zM638 771c-281 -15 -470 -204 -485 -485h485v485zM638 -271v485h-485c15 -281 204 -470 485 -485zM1195 214h-485v-485c281 15 470 204 485 485zM1268 250c0 -356 -238 -594 -594 -594s-594 238 -594 594s238 594 594 594 s594 -238 594 -594'], + 0x2A02: [844,344,1348,80,1268,'1196 250c0 142 -43 263 -119 352l-352 -352l352 -352c76 89 119 210 119 352zM1026 653c-89 76 -210 119 -352 119s-263 -43 -352 -119l352 -352zM623 250l-352 352c-76 -89 -119 -210 -119 -352s43 -263 119 -352zM1026 -153l-352 352l-352 -352 c89 -76 210 -119 352 -119s263 43 352 119zM1268 250c0 -356 -238 -594 -594 -594s-594 238 -594 594s238 594 594 594s594 -238 594 -594'], + 0x2A03: [942,460,1000,80,920,'920 -40c0 -273 -147 -420 -420 -420s-420 147 -420 420v982c12 -2 24 -3 36 -3s24 1 36 3v-982c0 -226 122 -348 348 -348s348 122 348 348v982c12 -2 24 -3 36 -3s24 1 36 3v-982zM560 250c0 -36 -24 -60 -60 -60s-60 24 -60 60s24 60 60 60s60 -24 60 -60'], + 0x2A04: [942,460,1000,80,920,'920 -40c0 -273 -147 -420 -420 -420s-420 147 -420 420v982c12 -2 24 -3 36 -3s24 1 36 3v-982c0 -226 122 -348 348 -348s348 122 348 348v982c12 -2 24 -3 36 -3s24 1 36 3v-982zM740 214h-204v-204c-12 2 -24 3 -36 3s-24 -1 -36 -3v204h-204c2 12 3 24 3 36 s-1 24 -3 36h204v204c12 -2 24 -3 36 -3s24 1 36 3v-204h204c-2 -12 -3 -24 -3 -36s1 -24 3 -36'], + 0x2A05: [960,424,1000,80,920,'920 -424c-12 2 -24 3 -36 3s-24 -1 -36 -3v1312h-696v-1312c-12 2 -24 3 -36 3s-24 -1 -36 -3v1348c8 5 14 10 20 16s11 12 16 20h768c5 -8 10 -14 16 -20s12 -11 20 -16v-1348'], + 0x2A06: [924,460,1000,80,920,'920 924v-1348c-8 -5 -14 -10 -20 -16s-11 -12 -16 -20h-768c-5 8 -10 14 -16 20s-12 11 -20 16v1348c12 -2 24 -3 36 -3s24 1 36 3v-1312h696v1312c12 -2 24 -3 36 -3s24 1 36 3'], + 0x2A09: [737,237,1134,80,1054,'1054 -186c-9 -7 -19 -15 -27 -24c-9 -8 -17 -17 -24 -27l-436 436l-436 -436c-7 10 -15 19 -23 27c-9 9 -18 17 -28 24l436 436l-436 436c10 7 19 15 28 24c8 8 16 17 23 27l436 -436l436 436c7 -10 15 -19 24 -27c8 -9 18 -17 27 -24l-436 -436'], + 0x2A0C: [1263,763,1831,80,1751,'635 1241c-8 -30 -15 -79 -11 -137h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73 c2 -46 4 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810c0 267 0 683 33 795c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22zM1007 1241c-8 -30 -15 -79 -11 -137h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123 c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73c2 -46 4 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810c0 267 0 683 33 795 c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22zM1379 1241c-8 -30 -15 -79 -11 -137h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111 c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73c2 -46 4 -77 28 -79c56 -2 86 36 102 123c15 85 15 539 15 810c0 267 0 683 33 795c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22zM1751 1241c-8 -30 -15 -79 -11 -137 h-73c-3 46 -4 77 -28 79c-56 2 -87 -36 -102 -123c-16 -85 -16 -539 -16 -810c0 -267 0 -683 -32 -795c-7 -26 -12 -48 -24 -63c-35 -46 -61 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -55 10 -77 22c7 30 15 79 11 137h73c2 -46 4 -77 28 -79c56 -2 86 36 102 123 c15 85 15 539 15 810c0 267 0 683 33 795c7 26 12 48 24 63c35 46 61 72 96 111c17 20 68 44 96 44c27 0 55 -10 77 -22'], + 0x2A11: [1263,763,811,80,771,'771 149c-4 -11 -7 -22 -9 -33s-3 -22 -3 -34c-26 31 -50 63 -72 98c-22 -139 -109 -220 -254 -234c-3 -209 -10 -417 -31 -491c-7 -26 -12 -48 -25 -63c-35 -46 -60 -72 -96 -111c-17 -20 -68 -44 -96 -44c-27 0 -54 10 -76 22c7 30 14 79 11 137h73c2 -46 3 -77 28 -79 c56 -2 86 36 102 123c10 57 13 283 14 506c-167 17 -257 122 -257 304c10 -2 19 -3 29 -3s19 1 29 3c0 -144 70 -229 200 -245v245c0 267 0 683 32 795c7 26 12 48 25 63c35 46 60 72 96 111c17 20 68 44 96 44c27 0 54 -10 76 -22c-7 -30 -14 -79 -11 -137h-73 c-2 46 -3 77 -28 79c-56 2 -86 -36 -102 -123c-15 -85 -15 -539 -15 -810l-1 -245c114 13 181 79 197 190c-33 -27 -69 -50 -107 -71c4 10 7 21 9 33c2 11 3 22 3 34c50 27 96 60 139 97c27 -50 60 -96 97 -139'], + 0x2B04: [450,-50,1519,80,1439,'1439 250c-75 -59 -146 -125 -206 -200c-8 2 -15 3 -23 3s-16 -1 -23 -3v90h-855v-90c-7 2 -15 3 -23 3s-15 -1 -23 -3c-60 75 -130 141 -206 200c76 59 146 125 206 200c8 -2 15 -3 23 -3s16 1 23 3v-90h855v90c7 -2 15 -3 23 -3s15 1 23 3c60 -75 131 -141 206 -200z M1376 250c-53 45 -103 93 -149 145v-75h-935v75c-46 -52 -95 -100 -148 -145c53 -45 102 -93 148 -145v75h935v-75c46 52 96 100 149 145'], + 0x2B05: [450,-50,1445,80,1365,'1365 160h-1085v-110c-59 73 -127 141 -200 200c73 59 141 127 200 200v-110h1085v-180'], + 0x2B06: [898,387,560,80,480,'480 698h-110v-1085h-180v1084l-110 1c73 59 141 126 200 200c59 -74 127 -141 200 -200'], + 0x2B07: [887,398,560,80,480,'480 -198c-73 -59 -141 -126 -200 -200c-59 74 -127 141 -200 200l110 1v1084h180v-1085h110'], + 0x2B0C: [450,-50,1455,80,1375,'1375 250c-73 -59 -141 -127 -200 -200v110h-895v-110c-59 73 -127 141 -200 200c73 59 141 127 200 200v-110h895v110c59 -73 127 -141 200 -200'], + 0x2B0D: [898,397,560,80,480,'480 -197c-73 -60 -141 -127 -200 -200c-59 73 -127 140 -200 200h110v894l-110 1c73 59 141 126 200 200c59 -74 127 -141 200 -200h-110v-896'], + 0x2B31: [740,240,1370,80,1290,'1290 -120h-1074c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM1290 220h-1074c36 -37 69 -77 99 -120 c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM1290 560h-1074c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3 c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h1074c-2 -10 -3 -20 -3 -30s1 -20 3 -30'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size1/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size2/Regular/Main.js new file mode 100644 index 0000000..254ad88 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size2/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'GyrePagellaMathJax_Size2', + id: 'GYREPAGELLASIZE2', + 0x20: [0,0,250,0,0,''], + 0x28: [840,340,491,127,406,'406 812c-145 -145 -213 -323 -213 -498v-128c0 -175 68 -353 213 -498c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-157 156 -251 337 -251 526v128c0 189 94 370 251 526c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x29: [840,340,491,85,364,'364 186c0 -189 -94 -370 -251 -526c-3 6 -7 11 -12 16s-10 9 -16 12c145 145 213 323 213 498v128c0 175 -68 353 -213 498c6 3 11 7 16 12s9 10 12 16c157 -156 251 -337 251 -526v-128'], + 0x2F: [936,436,689,80,609,'609 936l-473 -1372c-9 2 -19 3 -28 3s-19 -1 -28 -3l473 1372c9 -2 19 -3 28 -3s19 1 28 3'], + 0x5B: [846,346,443,127,358,'358 806h-165v-1112h165c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-231v1192h231c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x5C: [936,436,689,80,609,'609 -436c-9 2 -19 3 -28 3s-19 -1 -28 -3l-473 1372c9 -2 19 -3 28 -3s19 1 28 3'], + 0x5D: [846,346,443,85,316,'316 -346h-231c2 6 3 13 3 20s-1 14 -3 20h165v1112h-165c2 6 3 13 3 20s-1 14 -3 20h231v-1192'], + 0x7B: [845,345,465,85,380,'380 -307c-3 -5 -6 -12 -8 -18c-2 -7 -2 -14 -2 -20c-108 29 -173 93 -173 195v224c0 96 -33 156 -112 156c2 6 3 13 3 20s-1 14 -3 20c79 0 112 60 112 156v224c0 102 65 166 173 195c0 -6 0 -13 2 -20c2 -6 5 -13 8 -18c-81 -22 -117 -81 -117 -157v-224 c0 -90 -31 -148 -86 -176c55 -28 86 -86 86 -176v-224c0 -76 36 -135 117 -157'], + 0x7C: [826,326,213,80,133,'133 -326c-9 2 -18 3 -26 3c-9 0 -18 -1 -27 -3v1152c9 -2 18 -3 27 -3c8 0 17 1 26 3v-1152'], + 0x7D: [845,345,465,85,380,'380 230c-79 0 -112 -60 -112 -156v-224c0 -102 -65 -166 -173 -195c1 6 0 13 -2 20c-2 6 -4 13 -8 18c81 22 117 81 117 157v224c0 90 32 148 86 176c-54 28 -86 86 -86 176v224c0 76 -36 135 -117 157c4 5 6 12 8 18c2 7 3 14 2 20c108 -29 173 -93 173 -195v-224 c0 -96 33 -156 112 -156c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [712,-543,731,0,731,'731 575l-11 -32l-354 115l-355 -115l-11 32l366 137'], + 0x303: [700,-544,727,0,727,'727 675c-46 -72 -94 -114 -170 -128c-11 -2 -22 -3 -33 -3c-60 0 -118 27 -172 55c-47 24 -96 50 -147 50c-9 0 -17 -1 -26 -2c-64 -12 -112 -36 -150 -96c-4 4 -8 8 -13 12c-5 3 -10 5 -16 6c46 72 94 114 170 128c11 2 22 3 33 3c60 0 117 -27 172 -55 c47 -24 96 -50 147 -50c9 0 17 1 26 2c64 12 112 36 150 96c4 -4 8 -8 13 -12c5 -3 10 -5 16 -6'], + 0x306: [708,-552,752,0,752,'752 698c-46 -139 -221 -146 -376 -146s-330 7 -376 146l32 10c36 -105 205 -105 344 -105s309 0 344 105'], + 0x30C: [711,-542,731,0,731,'731 679l-365 -137l-366 137l11 32l355 -115l354 115'], + 0x311: [721,-564,752,0,752,'752 574l-32 -10c-35 105 -205 106 -344 106s-308 -1 -344 -106l-32 10c46 139 221 147 376 147s330 -8 376 -147'], + 0x32C: [-60,229,731,0,731,'731 -92l-365 -137l-366 137l11 32l355 -115l354 115'], + 0x32D: [-70,239,731,0,731,'731 -207l-11 -32l-354 115l-355 -115l-11 32l366 137'], + 0x32E: [-60,217,752,0,752,'752 -71c-46 -138 -221 -146 -376 -146s-330 8 -376 146l32 11c36 -106 205 -106 344 -106s309 0 344 106'], + 0x32F: [-78,235,752,0,752,'752 -224l-32 -11c-35 106 -205 106 -344 106s-308 0 -344 -106l-32 11c46 139 221 146 376 146s330 -7 376 -146'], + 0x330: [-78,234,727,0,727,'727 -103c-46 -72 -94 -114 -170 -128c-11 -2 -22 -3 -33 -3c-60 0 -118 28 -172 56c-47 24 -96 49 -147 49c-9 0 -17 -1 -26 -2c-64 -11 -112 -36 -150 -96c-4 5 -8 9 -13 12s-10 5 -16 6c46 72 94 115 170 128c11 2 22 3 33 3c60 0 117 -27 172 -55 c47 -24 96 -50 147 -50c9 0 17 1 26 3c64 11 112 35 150 95c4 -4 8 -8 13 -11s10 -6 16 -7'], + 0x2016: [826,326,386,80,306,'133 -326c-9 2 -18 3 -26 3c-9 0 -18 -1 -27 -3v1152c9 -2 18 -3 27 -3c8 0 17 1 26 3v-1152zM306 -326c-9 2 -18 3 -26 3c-9 0 -18 -1 -27 -3v1152c9 -2 18 -3 27 -3c8 0 17 1 26 3v-1152'], + 0x2044: [936,436,689,80,609,'609 936l-473 -1372c-9 2 -19 3 -28 3s-19 -1 -28 -3l473 1372c9 -2 19 -3 28 -3s19 1 28 3'], + 0x20E9: [773,-647,1113,0,1113,'1113 647c-6 2 -13 3 -20 3s-14 -1 -20 -3v74h-1033v-74c-6 2 -13 3 -20 3s-14 -1 -20 -3v126h1113v-126'], + 0x221A: [1020,490,717,120,747,'747 960h-88l-226 -1450c-13 2 -27 3 -40 3c-14 0 -27 -1 -41 -3l-165 624h-67v60h153l130 -491l205 1317h139v-60'], + 0x2223: [826,326,213,80,133,'133 -326c-9 2 -18 3 -26 3c-9 0 -18 -1 -27 -3v1152c9 -2 18 -3 27 -3c8 0 17 1 26 3v-1152'], + 0x2225: [826,326,386,80,306,'133 -326c-9 2 -18 3 -26 3c-9 0 -18 -1 -27 -3v1152c9 -2 18 -3 27 -3c8 0 17 1 26 3v-1152zM306 -326c-9 2 -18 3 -26 3c-9 0 -18 -1 -27 -3v1152c9 -2 18 -3 27 -3c8 0 17 1 26 3v-1152'], + 0x2308: [846,326,443,127,358,'358 806h-165v-1132c-11 2 -22 3 -33 3s-22 -1 -33 -3v1172h231c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x2309: [846,326,443,85,316,'316 -326c-11 2 -22 3 -33 3s-22 -1 -33 -3v1132h-165c2 6 3 13 3 20s-1 14 -3 20h231v-1172'], + 0x230A: [826,346,443,127,358,'358 -346h-231v1172c11 -2 22 -3 33 -3s22 1 33 3v-1132h165c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x230B: [826,346,443,85,316,'316 -346h-231c2 6 3 13 3 20s-1 14 -3 20h165v1132c11 -2 22 -3 33 -3s22 1 33 3v-1172'], + 0x2329: [943,443,452,85,367,'367 -430c-7 0 -14 -1 -20 -4c-7 -2 -13 -5 -18 -9l-244 693l244 693c5 -4 11 -7 18 -9c6 -3 13 -4 20 -4l-208 -680'], + 0x232A: [943,443,452,85,367,'367 250l-244 -693c-6 4 -12 7 -18 9c-6 3 -13 4 -20 4l208 680l-208 680c7 0 14 1 20 4c6 2 12 5 18 9'], + 0x23B4: [773,-647,1113,0,1113,'1113 647c-6 2 -13 3 -20 3s-14 -1 -20 -3v74h-1033v-74c-6 2 -13 3 -20 3s-14 -1 -20 -3v126h1113v-126'], + 0x23B5: [-177,303,1113,0,1113,'1113 -303h-1113v126c6 -2 13 -3 20 -3s14 1 20 3v-74h1033v74c6 -2 13 -3 20 -3s14 1 20 3v-126'], + 0x23DC: [779,-570,1528,0,1528,'1528 598c-6 -3 -11 -7 -16 -12c-5 -4 -9 -10 -12 -16c-107 107 -330 157 -632 157h-208c-302 0 -525 -50 -632 -157c-3 6 -7 12 -12 16c-5 5 -10 9 -16 12c113 113 342 181 660 181h208c318 0 548 -68 660 -181'], + 0x23DD: [-100,309,1528,0,1528,'1528 -128c-112 -113 -342 -181 -660 -181h-208c-318 0 -547 68 -660 181c6 3 11 7 16 12c5 4 9 10 12 16c107 -107 330 -157 632 -157h208c302 0 525 50 632 157c3 -6 7 -12 12 -16c5 -5 10 -9 16 -12'], + 0x23DE: [798,-589,1538,0,1538,'1538 603c-7 -1 -14 -2 -20 -4c-7 -2 -13 -6 -18 -10c-22 59 -98 82 -210 82h-292c-119 0 -196 28 -229 70c-34 -42 -110 -70 -229 -70h-292c-113 0 -189 -23 -210 -82c-6 4 -12 8 -18 10c-7 2 -13 3 -20 4c26 72 110 120 248 120h292c132 0 209 17 209 75 c6 -2 13 -3 20 -3s13 1 20 3c0 -58 77 -75 209 -75h292c137 0 221 -48 248 -120'], + 0x23DF: [-119,328,1538,0,1538,'1538 -133c-27 -72 -111 -120 -248 -120h-292c-132 0 -209 -17 -209 -75c-7 2 -13 3 -20 3s-14 -1 -20 -3c0 58 -77 75 -209 75h-292c-138 0 -222 48 -248 120c7 1 13 2 20 4c6 2 12 6 18 10c21 -59 97 -82 210 -82h292c119 0 195 -28 229 -70c33 42 110 70 229 70h292 c112 0 188 23 210 82c5 -4 11 -8 18 -10c6 -2 13 -3 20 -4'], + 0x23E0: [730,-528,1566,0,1566,'1566 528c-11 2 -22 3 -33 3s-22 -1 -33 -3l-136 136h-1162l-136 -136c-11 2 -22 3 -33 3s-22 -1 -33 -3l202 202h1162'], + 0x23E1: [-58,260,1566,0,1566,'1566 -58l-202 -202h-1162l-202 202c11 -2 22 -3 33 -3s22 1 33 3l136 -136h1162l136 136c11 -2 22 -3 33 -3s22 1 33 3'], + 0x27E6: [846,346,458,127,373,'373 806h-83v-1112h83c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-246v1192h246c-2 -6 -3 -13 -3 -20s1 -14 3 -20zM250 806h-83v-1112h83v1112'], + 0x27E7: [846,346,458,85,331,'331 -346h-246c2 6 3 13 3 20s-1 14 -3 20h83v1112h-83c2 6 3 13 3 20s-1 14 -3 20h246v-1192zM291 -306v1112h-83v-1112h83'], + 0x27E8: [943,443,452,85,367,'367 -430c-7 0 -14 -1 -20 -4c-7 -2 -13 -5 -18 -9l-244 693l244 693c5 -4 11 -7 18 -9c6 -3 13 -4 20 -4l-208 -680'], + 0x27E9: [943,443,452,85,367,'367 250l-244 -693c-6 4 -12 7 -18 9c-6 3 -13 4 -20 4l208 680l-208 680c7 0 14 1 20 4c6 2 12 5 18 9'], + 0x27EA: [943,443,701,85,616,'367 -430c-7 0 -14 -1 -20 -4c-7 -2 -13 -5 -18 -9l-244 693l244 693c5 -4 11 -7 18 -9c6 -3 13 -4 20 -4l-208 -680zM616 -430c-7 0 -14 -1 -20 -4c-7 -2 -13 -5 -18 -9l-244 693l244 693c5 -4 11 -7 18 -9c6 -3 13 -4 20 -4l-208 -680'], + 0x27EB: [943,443,701,85,616,'616 250l-244 -693c-6 4 -12 7 -18 9c-7 3 -13 4 -20 4l208 680l-208 680c7 0 13 1 20 4c6 2 12 5 18 9zM367 250l-244 -693c-6 4 -12 7 -18 9c-6 3 -13 4 -20 4l208 680l-208 680c7 0 14 1 20 4c6 2 12 5 18 9'], + 0x27EE: [840,340,365,127,280,'280 812c-66 -67 -87 -232 -87 -466v-192c0 -234 21 -399 87 -466c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-72 71 -125 242 -125 494v192c0 252 53 423 125 494c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x27EF: [840,340,365,85,238,'238 154c0 -252 -53 -423 -125 -494c-3 6 -7 11 -12 16s-10 9 -16 12c66 67 87 232 87 466v192c0 234 -21 399 -87 466c6 3 11 7 16 12s9 10 12 16c72 -71 125 -242 125 -494v-192'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size2/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size3/Regular/Main.js new file mode 100644 index 0000000..b0ec086 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size3/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'GyrePagellaMathJax_Size3', + id: 'GYREPAGELLASIZE3', + 0x20: [0,0,250,0,0,''], + 0x28: [955,455,531,131,444,'444 927c-166 -166 -243 -376 -243 -591v-172c0 -215 77 -425 243 -591c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-177 177 -285 390 -285 619v172c0 229 108 442 285 619c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x29: [955,455,531,87,400,'400 164c0 -229 -108 -442 -285 -619c-3 6 -7 11 -12 16s-10 9 -16 12c166 166 243 376 243 591v172c0 215 -77 425 -243 591c6 3 11 7 16 12s9 10 12 16c177 -177 285 -390 285 -619v-172'], + 0x2F: [1149,649,838,80,758,'758 1149l-619 -1798c-10 2 -19 3 -29 3s-20 -1 -30 -3l619 1798c10 -2 20 -3 30 -3s19 1 29 3'], + 0x5B: [961,461,461,131,374,'374 -461h-243v1422h243c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-173v-1342h173c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x5C: [1149,649,838,80,758,'758 -649c-10 2 -19 3 -29 3s-20 -1 -30 -3l-619 1798c10 -2 20 -3 30 -3s19 1 29 3'], + 0x5D: [961,461,461,87,330,'330 -461h-243c2 6 3 13 3 20s-1 14 -3 20h173v1342h-173c2 6 3 13 3 20s-1 14 -3 20h243v-1422'], + 0x7B: [960,460,493,87,406,'406 -422c-3 -5 -6 -12 -8 -18c-2 -7 -2 -14 -2 -20c-116 31 -187 103 -187 221v287c0 112 -35 182 -122 182c2 6 3 13 3 20s-1 14 -3 20c87 0 122 70 122 182v287c0 118 71 190 187 221c0 -6 0 -13 2 -20c2 -6 5 -13 8 -18c-89 -24 -127 -93 -127 -183v-287 c0 -105 -36 -171 -98 -202c62 -31 98 -97 98 -202v-287c0 -90 38 -159 127 -183'], + 0x7C: [941,441,216,80,136,'136 -441c-9 2 -19 3 -28 3s-19 -1 -28 -3v1382c9 -2 19 -3 28 -3s19 1 28 3v-1382'], + 0x7D: [960,460,493,87,406,'406 230c-87 0 -122 -70 -122 -182v-287c0 -118 -71 -190 -187 -221c1 6 0 13 -2 20c-2 6 -4 13 -8 18c89 24 127 93 127 183v287c0 105 36 171 98 202c-62 31 -98 97 -98 202v287c0 90 -38 159 -127 183c4 5 6 12 8 18c2 7 3 14 2 20c116 -31 187 -103 187 -221v-287 c0 -112 35 -182 122 -182c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [712,-542,874,0,874,'874 576l-10 -34l-427 116l-427 -116l-10 34l437 136'], + 0x303: [700,-544,870,0,870,'870 675c-55 -70 -114 -114 -208 -128c-13 -2 -25 -3 -38 -3c-68 0 -135 27 -199 54c-57 24 -116 50 -177 50c-11 0 -21 -1 -32 -2c-81 -13 -140 -37 -188 -99c-3 5 -7 10 -12 13c-5 4 -10 7 -16 9c55 70 115 114 208 128c13 2 26 3 38 3c68 0 135 -27 199 -54 c58 -24 117 -50 178 -50c10 0 21 1 31 2c82 13 141 37 188 99c3 -5 8 -10 12 -13c5 -4 11 -7 16 -9'], + 0x306: [709,-551,897,0,897,'897 697c-49 -146 -266 -146 -448 -146c-183 0 -400 0 -449 146l33 12c35 -106 250 -106 416 -106s380 0 415 106'], + 0x30C: [712,-542,874,0,874,'874 678l-437 -136l-437 136l10 34l427 -116l427 116'], + 0x311: [721,-563,897,0,897,'897 575l-33 -12c-35 106 -249 106 -415 106s-381 0 -416 -106l-33 12c49 146 266 146 449 146c182 0 399 0 448 -146'], + 0x32C: [-60,230,874,0,874,'874 -94l-437 -136l-437 136l10 34l427 -116l427 116'], + 0x32D: [-70,240,874,0,874,'874 -206l-10 -34l-427 116l-427 -116l-10 34l437 136'], + 0x32E: [-60,218,897,0,897,'897 -71c-49 -146 -266 -147 -448 -147c-183 0 -400 1 -449 147l33 11c35 -106 250 -106 416 -106s380 0 415 106'], + 0x32F: [-78,236,897,0,897,'897 -224l-33 -12c-35 106 -249 106 -415 106s-381 0 -416 -106l-33 12c49 146 266 146 449 146c182 0 399 0 448 -146'], + 0x330: [-78,233,870,0,870,'870 -103c-55 -70 -114 -113 -208 -128c-13 -2 -25 -2 -38 -2c-68 0 -135 26 -199 53c-57 25 -116 50 -177 50c-11 0 -21 -1 -32 -2c-81 -13 -140 -37 -188 -98c-3 4 -7 9 -12 13c-5 3 -10 6 -16 8c55 71 115 114 208 128c13 2 26 3 38 3c68 0 135 -27 199 -54 c58 -24 117 -50 178 -50c10 0 21 1 31 3c82 12 141 37 188 98c3 -5 8 -9 12 -13c5 -4 11 -7 16 -9'], + 0x2016: [941,441,392,80,312,'136 -441c-9 2 -19 3 -28 3s-19 -1 -28 -3v1382c9 -2 19 -3 28 -3s19 1 28 3v-1382zM312 -441c-9 2 -19 3 -28 3s-19 -1 -28 -3v1382c9 -2 19 -3 28 -3s19 1 28 3v-1382'], + 0x2044: [1149,649,838,80,758,'758 1149l-619 -1798c-10 2 -19 3 -29 3s-20 -1 -30 -3l619 1798c10 -2 20 -3 30 -3s19 1 29 3'], + 0x20E9: [777,-649,1484,0,1484,'1484 650c-6 1 -13 3 -20 3s-14 -2 -20 -4v72h-1404v-71c-6 1 -13 2 -20 2s-14 -1 -20 -2v126l1484 1v-127'], + 0x221A: [1200,670,730,120,760,'760 1140h-113l-192 -1810c-13 2 -27 3 -40 3c-14 0 -27 -1 -40 -3l-189 822h-66v60h154l146 -641l173 1629h167v-60'], + 0x2223: [941,441,216,80,136,'136 -441c-9 2 -19 3 -28 3s-19 -1 -28 -3v1382c9 -2 19 -3 28 -3s19 1 28 3v-1382'], + 0x2225: [941,441,392,80,312,'136 -441c-9 2 -19 3 -28 3s-19 -1 -28 -3v1382c9 -2 19 -3 28 -3s19 1 28 3v-1382zM312 -441c-9 2 -19 3 -28 3s-19 -1 -28 -3v1382c9 -2 19 -3 28 -3s19 1 28 3v-1382'], + 0x2308: [961,441,461,131,374,'374 921h-173v-1362c-12 2 -23 3 -35 3s-23 -1 -35 -3v1402h243c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x2309: [961,441,461,87,330,'330 -441c-12 2 -23 3 -35 3s-23 -1 -35 -3v1362h-173c2 6 3 13 3 20s-1 14 -3 20h243v-1402'], + 0x230A: [941,461,461,131,374,'374 -461h-243v1402c12 -2 23 -3 35 -3s23 1 35 3v-1362h173c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x230B: [941,461,461,87,330,'330 -461h-243c2 6 3 13 3 20s-1 14 -3 20h173v1362c12 -2 23 -3 35 -3s23 1 35 3v-1402'], + 0x2329: [1155,655,487,87,400,'400 -644c-7 0 -14 0 -20 -2c-7 -2 -13 -5 -19 -9l-274 905l274 905c6 -4 12 -7 19 -9c6 -2 13 -2 20 -2l-234 -894'], + 0x232A: [1155,655,487,87,400,'400 250l-275 -905c-5 4 -11 7 -18 9c-6 2 -13 2 -20 2l234 894l-234 894c7 0 14 0 20 2c7 2 13 5 18 9'], + 0x23B4: [777,-649,1484,0,1484,'1484 650c-6 1 -13 3 -20 3s-14 -2 -20 -4v72h-1404v-71c-6 1 -13 2 -20 2s-14 -1 -20 -2v126l1484 1v-127'], + 0x23B5: [-179,306,1484,0,1484,'1484 -306h-1484v127c6 -2 13 -4 20 -4s14 2 20 4v-72l1404 1v71c6 -2 13 -3 20 -3s14 1 20 2v-126'], + 0x23DC: [784,-571,2028,0,2028,'2028 599c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-109 109 -397 157 -819 157h-334c-422 0 -710 -48 -819 -157c-3 6 -7 11 -12 16s-10 9 -16 12c113 113 408 185 847 185h334c439 0 734 -72 847 -185'], + 0x23DD: [-101,314,2028,0,2028,'2028 -129c-113 -113 -408 -185 -847 -185h-334c-439 0 -734 72 -847 185c6 3 11 7 16 12s9 10 12 16c109 -109 397 -157 819 -157h334c422 0 710 48 819 157c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x23DE: [802,-589,2038,0,2038,'2038 603c-7 -1 -14 -2 -20 -4c-7 -2 -13 -6 -18 -10c-22 62 -121 82 -273 82h-416c-155 0 -253 32 -292 79c-40 -47 -137 -79 -292 -79h-416c-153 0 -251 -20 -273 -82c-6 4 -12 8 -18 10c-7 2 -13 3 -20 4c26 72 132 124 311 124h416c173 0 272 14 272 75 c6 -2 13 -3 20 -3s13 1 20 3c0 -61 99 -75 272 -75h416c179 0 284 -52 311 -124'], + 0x23DF: [-119,332,2038,0,2038,'2038 -133c-27 -72 -132 -124 -311 -124h-416c-173 0 -272 -14 -272 -75c-7 2 -13 3 -20 3s-14 -1 -20 -3c0 61 -99 75 -272 75h-416c-179 0 -285 52 -311 124c7 1 13 2 20 4c6 2 12 6 18 10c22 -62 120 -82 273 -82h416c155 0 252 -32 292 -79c39 47 137 79 292 79h416 c152 0 251 20 273 82c5 -4 11 -8 18 -10c6 -2 13 -3 20 -4'], + 0x23E0: [734,-528,2070,0,2070,'2070 528c-12 2 -23 3 -35 3s-23 -1 -35 -3l-136 136h-1658l-136 -136c-12 2 -23 3 -35 3s-23 -1 -35 -3l206 206h1658'], + 0x23E1: [-58,264,2070,0,2070,'2070 -58l-206 -206h-1658l-206 206c12 -2 23 -3 35 -3s23 1 35 3l136 -136h1658l136 136c12 -2 23 -3 35 -3s23 1 35 3'], + 0x27E6: [961,461,472,131,385,'385 -421c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-254v1422h254c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-87v-1342h87zM258 921h-87v-1342h87v1342'], + 0x27E7: [961,461,472,87,341,'341 961v-1422h-254c2 6 3 13 3 20s-1 14 -3 20h87v1342h-87c2 6 3 13 3 20s-1 14 -3 20h254zM301 921h-87v-1342h87v1342'], + 0x27E8: [1155,655,487,87,400,'400 -644c-7 0 -14 0 -20 -2c-7 -2 -13 -5 -19 -9l-274 905l274 905c6 -4 12 -7 19 -9c6 -2 13 -2 20 -2l-234 -894'], + 0x27E9: [1155,655,487,87,400,'400 250l-275 -905c-5 4 -11 7 -18 9c-6 2 -13 2 -20 2l234 894l-234 894c7 0 14 0 20 2c7 2 13 5 18 9'], + 0x27EA: [1155,655,753,87,666,'400 -644c-7 0 -14 0 -20 -2c-7 -2 -13 -5 -19 -9l-274 905l274 905c6 -4 12 -7 19 -9c6 -2 13 -2 20 -2l-234 -894zM666 -644c-7 0 -14 0 -21 -2c-6 -2 -12 -5 -18 -9l-274 905l274 905c6 -4 12 -7 18 -9c7 -2 14 -2 21 -2l-234 -894'], + 0x27EB: [1155,655,753,87,666,'666 250l-275 -905c-5 4 -12 7 -18 9c-7 2 -13 2 -20 2l234 894l-234 894c7 0 13 0 20 2c6 2 13 5 18 9zM400 250l-275 -905c-5 4 -11 7 -18 9c-6 2 -13 2 -20 2l234 894l-234 894c7 0 14 0 20 2c7 2 13 5 18 9'], + 0x27EE: [955,455,381,131,294,'294 927c-72 -72 -93 -261 -93 -533v-288c0 -272 21 -461 93 -533c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-77 76 -135 270 -135 561v288c0 291 58 485 135 561c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x27EF: [955,455,381,87,250,'250 106c0 -291 -58 -485 -135 -561c-3 6 -7 11 -12 16s-10 9 -16 12c72 72 93 261 93 533v288c0 272 -21 461 -93 533c6 3 11 7 16 12s9 10 12 16c77 -76 135 -270 135 -561v-288'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size3/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size4/Regular/Main.js new file mode 100644 index 0000000..e815b03 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size4/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'GyrePagellaMathJax_Size4', + id: 'GYREPAGELLASIZE4', + 0x20: [0,0,250,0,0,''], + 0x28: [1093,593,573,135,483,'483 1065c-188 -189 -276 -437 -276 -700v-230c0 -263 88 -511 276 -700c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-199 199 -320 450 -320 728v230c0 278 121 529 320 728c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x29: [1093,593,573,90,438,'438 135c0 -278 -121 -529 -320 -728c-3 6 -7 11 -12 16s-10 9 -16 12c188 189 276 437 276 700v230c0 263 -88 511 -276 700c6 3 11 7 16 12s9 10 12 16c199 -199 320 -450 320 -728v-230'], + 0x2F: [1428,928,1032,80,952,'952 1428l-811 -2356c-10 2 -20 3 -30 3c-11 0 -21 -1 -31 -3l811 2356c10 -2 20 -3 31 -3c10 0 20 1 30 3'], + 0x5B: [1099,599,479,135,389,'389 -599h-254v1698h254c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-182v-1618h182c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x5C: [1428,928,1032,80,952,'952 -928c-10 2 -20 3 -30 3c-11 0 -21 -1 -31 -3l-811 2356c10 -2 20 -3 31 -3c10 0 20 1 30 3'], + 0x5D: [1099,599,479,90,344,'344 1099v-1698h-254c2 6 3 13 3 20s-1 14 -3 20h182v1618h-182c2 6 3 13 3 20s-1 14 -3 20h254'], + 0x7B: [1098,598,521,90,431,'431 -560c-3 -5 -6 -12 -8 -18c-2 -7 -2 -14 -2 -20c-122 32 -199 115 -199 250v367c0 131 -37 211 -132 211c2 6 3 13 3 20s-1 14 -3 20c95 0 132 80 132 211v367c0 135 77 218 199 250c0 -6 0 -13 2 -20c2 -6 5 -13 8 -18c-96 -26 -137 -105 -137 -212v-367 c0 -121 -41 -197 -110 -231c69 -34 110 -110 110 -231v-367c0 -107 41 -186 137 -212'], + 0x7C: [1079,579,218,80,138,'138 -579c-10 2 -19 3 -29 3s-19 -1 -29 -3v1658c10 -2 19 -3 29 -3s19 1 29 3v-1658'], + 0x7D: [1098,598,521,90,431,'431 230c-95 0 -132 -80 -132 -211v-367c0 -135 -76 -218 -199 -250c1 6 0 13 -2 20c-2 6 -4 13 -8 18c96 26 137 105 137 212v367c0 121 41 197 110 231c-69 34 -110 110 -110 231v367c0 107 -41 186 -137 212c4 5 6 12 8 18c2 7 3 14 2 20c123 -32 199 -115 199 -250 v-367c0 -131 37 -211 132 -211c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [713,-542,1045,0,1045,'1045 576l-9 -34l-514 115l-513 -115l-9 34l522 137'], + 0x303: [702,-542,1042,0,1042,'1042 678c-63 -70 -136 -115 -253 -130c-15 -2 -30 -3 -45 -3c-79 0 -156 25 -232 51c-69 25 -140 49 -213 49c-13 0 -26 0 -39 -2c-104 -14 -177 -39 -233 -101c-3 5 -7 10 -12 14c-4 4 -9 8 -15 10c63 70 136 115 253 130c15 2 30 3 45 3c79 0 156 -25 232 -51 c69 -25 140 -49 213 -49c13 0 26 0 39 2c104 14 177 39 233 101c3 -5 7 -10 11 -14c5 -4 10 -8 16 -10'], + 0x306: [709,-550,1070,0,1070,'1070 697c-49 -147 -320 -147 -535 -147s-486 0 -535 147l34 12c35 -105 303 -105 501 -105s466 0 501 105'], + 0x30C: [712,-541,1045,0,1045,'1045 678l-523 -137l-522 137l9 34l513 -115l514 115'], + 0x311: [722,-563,1070,0,1070,'1070 575l-34 -12c-35 105 -303 105 -501 105s-466 0 -501 -105l-34 12c49 147 320 147 535 147s486 0 535 -147'], + 0x32C: [-60,231,1045,0,1045,'1045 -95l-523 -136l-522 136l9 35l513 -116l514 116'], + 0x32D: [-70,241,1045,0,1045,'1045 -206l-9 -35l-514 115l-513 -115l-9 35l522 136'], + 0x32E: [-60,219,1070,0,1070,'1070 -71c-49 -148 -320 -148 -535 -148s-486 0 -535 148l34 11c35 -105 303 -105 501 -105s466 0 501 105'], + 0x32F: [-78,237,1070,0,1070,'1070 -225l-34 -12c-35 105 -303 105 -501 105s-466 0 -501 -105l-34 12c49 147 320 147 535 147s486 0 535 -147'], + 0x330: [-78,238,1042,0,1042,'1042 -102c-63 -70 -136 -115 -253 -130c-15 -2 -30 -3 -45 -3c-79 0 -156 25 -232 51c-69 24 -140 49 -213 49c-13 0 -26 0 -39 -2c-104 -14 -177 -39 -233 -101c-3 5 -7 10 -12 14c-4 4 -9 8 -15 10c63 70 136 115 253 130c15 2 30 3 45 3c79 0 156 -25 232 -52 c69 -24 140 -48 213 -48c13 0 26 0 39 2c104 14 177 39 233 101c3 -5 7 -10 11 -14c5 -4 10 -8 16 -10'], + 0x2016: [1079,579,396,80,316,'138 -579c-10 2 -19 3 -29 3s-19 -1 -29 -3v1658c10 -2 19 -3 29 -3s19 1 29 3v-1658zM316 -579c-10 2 -19 3 -29 3s-19 -1 -29 -3v1658c10 -2 19 -3 29 -3s19 1 29 3v-1658'], + 0x2044: [1428,928,1032,80,952,'952 1428l-811 -2356c-10 2 -20 3 -30 3c-11 0 -21 -1 -31 -3l811 2356c10 -2 20 -3 31 -3c10 0 20 1 30 3'], + 0x20E9: [779,-651,1855,0,1855,'1855 779v-128c-6 2 -13 3 -20 3s-14 -1 -20 -3v68h-1775v-68c-6 2 -13 3 -20 3s-14 -1 -20 -3v128h1855'], + 0x221A: [1380,850,743,120,773,'773 1320h-139l-148 -2170c-13 2 -27 3 -40 3c-14 0 -27 -1 -41 -3l-219 1020h-66v60h154l171 -796l133 1946h195v-60'], + 0x2223: [1079,579,218,80,138,'138 -579c-10 2 -19 3 -29 3s-19 -1 -29 -3v1658c10 -2 19 -3 29 -3s19 1 29 3v-1658'], + 0x2225: [1079,579,396,80,316,'138 -579c-10 2 -19 3 -29 3s-19 -1 -29 -3v1658c10 -2 19 -3 29 -3s19 1 29 3v-1658zM316 -579c-10 2 -19 3 -29 3s-19 -1 -29 -3v1658c10 -2 19 -3 29 -3s19 1 29 3v-1658'], + 0x2308: [1099,579,479,135,389,'389 1099c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-182v-1638c-12 2 -24 3 -36 3s-24 -1 -36 -3v1678h254'], + 0x2309: [1099,579,479,90,344,'344 -579c-12 2 -24 3 -36 3s-24 -1 -36 -3v1638h-182c2 6 3 13 3 20s-1 14 -3 20h254v-1678'], + 0x230A: [1079,599,479,135,389,'389 -599h-254v1678c12 -2 24 -3 36 -3s24 1 36 3v-1638h182c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x230B: [1079,599,479,90,344,'344 1079v-1678h-254c2 6 3 13 3 20s-1 14 -3 20h182v1638c12 -2 24 -3 36 -3s24 1 36 3'], + 0x2329: [1433,933,528,90,438,'438 -923c-7 0 -14 0 -21 -2c-6 -2 -12 -4 -18 -8l-309 1183l309 1183c6 -4 12 -6 18 -8c7 -2 14 -2 21 -2l-264 -1173'], + 0x232A: [1433,933,528,90,438,'438 250l-309 -1183c-6 4 -12 6 -19 8c-6 2 -13 2 -20 2l263 1173l-263 1173c7 0 14 0 20 2c7 2 13 4 19 8'], + 0x23B4: [779,-651,1855,0,1855,'1855 779v-128c-6 2 -13 3 -20 3s-14 -1 -20 -3v68h-1775v-68c-6 2 -13 3 -20 3s-14 -1 -20 -3v128h1855'], + 0x23B5: [-181,309,1855,0,1855,'1855 -309h-1855v128c6 -2 13 -3 20 -3s14 1 20 3v-68h1775v68c6 -2 13 -3 20 -3s14 1 20 3v-128'], + 0x23DC: [788,-570,2528,0,2528,'2528 598c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-111 111 -460 158 -993 158h-486c-533 0 -881 -47 -993 -158c-3 6 -7 11 -12 16s-10 9 -16 12c115 115 471 190 1021 190h486c550 0 906 -75 1021 -190'], + 0x23DD: [-100,318,2528,0,2528,'2528 -128c-115 -115 -471 -190 -1021 -190h-486c-550 0 -906 75 -1021 190c6 3 11 7 16 12s9 10 12 16c112 -111 460 -158 993 -158h486c533 0 882 47 993 158c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x23DE: [805,-588,2538,0,2538,'2538 602c-7 -1 -14 -2 -20 -4c-7 -2 -13 -6 -18 -10c-23 64 -141 82 -328 82h-556c-187 0 -303 36 -347 86c-44 -50 -160 -86 -347 -86h-556c-187 0 -305 -18 -328 -82c-6 4 -12 8 -18 10c-7 2 -13 3 -20 4c27 73 151 128 366 128h556c209 0 327 12 327 75 c6 -2 13 -3 20 -3s13 1 20 3c0 -63 118 -75 327 -75h556c214 0 339 -55 366 -128'], + 0x23DF: [-118,335,2538,0,2538,'2538 -132c-27 -73 -152 -128 -366 -128h-556c-209 0 -327 -12 -327 -75c-7 2 -13 3 -20 3s-14 -1 -20 -3c0 63 -118 75 -327 75h-556c-215 0 -339 55 -366 128c7 1 13 2 20 4c6 2 12 6 18 10c23 -64 141 -82 328 -82h556c187 0 303 -36 347 -86c44 50 160 86 347 86h556 c187 0 305 18 328 82c5 -4 11 -8 18 -10c6 -2 13 -3 20 -4'], + 0x23E0: [736,-526,2572,0,2572,'2572 526c-12 2 -24 3 -36 3s-24 -1 -36 -3l-138 138h-2152l-138 -138c-12 2 -24 3 -36 3s-24 -1 -36 -3l210 210h2152'], + 0x23E1: [-56,266,2572,0,2572,'2572 -56l-210 -210h-2152l-210 210c12 -2 24 -3 36 -3s24 1 36 3l138 -138h2152l138 138c12 -2 24 -3 36 -3s24 1 36 3'], + 0x27E6: [1099,599,487,135,397,'397 -599h-262v1698h262c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-91v-1618h91c-2 -6 -3 -13 -3 -20s1 -14 3 -20zM266 -559v1618h-91v-1618h91'], + 0x27E7: [1099,599,487,90,352,'352 -599h-262c2 6 3 13 3 20s-1 14 -3 20h91v1618h-91c2 6 3 13 3 20s-1 14 -3 20h262v-1698zM312 1059h-91v-1618h91v1618'], + 0x27E8: [1433,933,528,90,438,'438 -923c-7 0 -14 0 -21 -2c-6 -2 -12 -4 -18 -8l-309 1183l309 1183c6 -4 12 -6 18 -8c7 -2 14 -2 21 -2l-264 -1173'], + 0x27E9: [1433,933,528,90,438,'438 250l-309 -1183c-6 4 -12 6 -19 8c-6 2 -13 2 -20 2l263 1173l-263 1173c7 0 14 0 20 2c7 2 13 4 19 8'], + 0x27EA: [1433,933,812,90,722,'438 -923c-7 0 -14 0 -21 -2c-6 -2 -12 -4 -18 -8l-309 1183l309 1183c6 -4 12 -6 18 -8c7 -2 14 -2 21 -2l-264 -1173zM722 -923c-7 0 -14 0 -21 -2c-6 -2 -13 -4 -18 -8l-309 1183l309 1183c5 -4 12 -6 18 -8c7 -2 14 -2 21 -2l-264 -1173'], + 0x27EB: [1433,933,812,90,722,'722 250l-309 -1183c-6 4 -12 6 -19 8s-13 2 -20 2l263 1173l-263 1173c7 0 13 0 20 2s13 4 19 8zM438 250l-309 -1183c-6 4 -12 6 -19 8c-6 2 -13 2 -20 2l263 1173l-263 1173c7 0 14 0 20 2c7 2 13 4 19 8'], + 0x27EE: [1093,593,399,135,309,'309 1065c-78 -78 -102 -293 -102 -608v-414c0 -315 24 -530 102 -608c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-83 83 -146 303 -146 636v414c0 333 63 553 146 636c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x27EF: [1093,593,399,90,264,'264 43c0 -333 -63 -553 -146 -636c-3 6 -7 11 -12 16s-10 9 -16 12c78 78 102 293 102 608v414c0 315 -24 530 -102 608c6 3 11 7 16 12s9 10 12 16c83 -83 146 -303 146 -636v-414'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size4/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size5/Regular/Main.js new file mode 100644 index 0000000..2af5b8c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size5/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'GyrePagellaMathJax_Size5', + id: 'GYREPAGELLASIZE5', + 0x20: [0,0,250,0,0,''], + 0x28: [1259,759,624,139,531,'531 1231c-216 -216 -316 -510 -316 -829v-304c0 -319 100 -613 316 -829c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-227 226 -364 522 -364 857v304c0 335 137 631 364 857c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x29: [1259,759,624,93,485,'485 98c0 -335 -137 -631 -364 -857c-3 6 -7 11 -12 16s-10 9 -16 12c216 216 316 510 316 829v304c0 319 -100 613 -316 829c6 3 11 7 16 12s9 10 12 16c227 -226 364 -522 364 -857v-304'], + 0x2F: [1793,1293,1288,80,1208,'1208 1793l-1063 -3086c-11 2 -22 3 -33 3s-21 -1 -32 -3l1063 3086c11 -2 21 -3 32 -3s22 1 33 3'], + 0x5B: [1265,765,500,139,407,'407 -765h-268v2030h268c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-192v-1950h192c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x5C: [1793,1293,1288,80,1208,'1208 -1293c-11 2 -22 3 -33 3s-21 -1 -32 -3l-1063 3086c11 -2 21 -3 32 -3s22 1 33 3'], + 0x5D: [1265,765,500,93,361,'361 -765h-268c2 6 3 13 3 20s-1 14 -3 20h192v1950h-192c2 6 3 13 3 20s-1 14 -3 20h268v-2030'], + 0x7B: [1264,764,555,93,462,'462 -726c-3 -5 -6 -12 -8 -18c-2 -7 -2 -14 -2 -20c-131 35 -215 128 -215 282v469c0 151 -40 243 -144 243c2 6 3 13 3 20s-1 14 -3 20c104 0 144 92 144 243v469c0 154 84 247 215 282c0 -6 0 -13 2 -20c2 -6 5 -13 8 -18c-105 -29 -149 -120 -149 -244v-469 c0 -140 -47 -227 -124 -263c77 -36 124 -123 124 -263v-469c0 -124 44 -215 149 -244'], + 0x7C: [1245,745,221,80,141,'141 -745c-10 2 -20 3 -30 3c-11 0 -21 -1 -31 -3v1990c10 -2 20 -3 31 -3c10 0 20 1 30 3v-1990'], + 0x7D: [1264,764,555,93,462,'462 230c-104 0 -144 -92 -144 -243v-469c0 -154 -83 -247 -215 -282c1 6 0 13 -2 20c-2 6 -4 13 -8 18c106 29 149 120 149 244v469c0 140 47 227 124 263c-77 36 -124 123 -124 263v469c0 124 -43 215 -149 244c4 5 6 12 8 18c2 7 3 14 2 20c132 -35 215 -128 215 -282 v-469c0 -151 40 -243 144 -243c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [714,-541,1251,0,1251,'1251 577l-7 -36l-618 115l-619 -115l-7 36l626 137'], + 0x303: [707,-537,1247,0,1247,'1247 681c-71 -69 -159 -116 -305 -133c-18 -2 -37 -3 -55 -3c-92 0 -182 25 -271 50c-84 24 -169 48 -255 48c-16 0 -33 -1 -49 -3c-133 -16 -222 -40 -287 -103c-3 6 -6 11 -10 15c-5 4 -10 8 -15 11c71 69 160 116 305 133c18 2 37 3 55 3c92 0 182 -25 271 -50 c84 -24 169 -48 255 -48c16 0 33 1 49 3c133 16 222 40 287 103c3 -6 6 -11 10 -15c5 -4 10 -8 15 -11'], + 0x306: [709,-549,1279,0,1279,'1279 697c-49 -148 -385 -148 -639 -148c-255 0 -591 0 -640 148l35 12c35 -104 368 -104 605 -104c236 0 569 0 604 104'], + 0x30C: [713,-540,1251,0,1251,'1251 677l-625 -137l-626 137l7 36l619 -115l618 115'], + 0x311: [723,-563,1279,0,1279,'1279 575l-35 -12c-35 104 -368 104 -604 104c-237 0 -570 0 -605 -104l-35 12c49 148 385 148 640 148c254 0 590 0 639 -148'], + 0x32C: [-60,233,1251,0,1251,'1251 -96l-625 -137l-626 137l7 36l619 -116l618 116'], + 0x32D: [-70,243,1251,0,1251,'1251 -207l-7 -36l-618 116l-619 -116l-7 36l626 137'], + 0x32E: [-60,220,1279,0,1279,'1279 -72c-49 -148 -385 -148 -639 -148c-255 0 -591 0 -640 148l35 12c35 -104 368 -104 605 -104c236 0 569 0 604 104'], + 0x32F: [-78,238,1279,0,1279,'1279 -226l-35 -12c-35 104 -368 104 -604 104c-237 0 -570 0 -605 -104l-35 12c49 148 385 148 640 148c254 0 590 0 639 -148'], + 0x330: [-78,249,1247,0,1247,'1247 -104c-71 -70 -159 -116 -305 -133c-18 -2 -37 -3 -55 -3c-92 0 -182 25 -271 50c-84 23 -169 48 -255 48c-16 0 -33 -1 -49 -3c-133 -16 -222 -40 -287 -104c-3 6 -6 11 -10 16c-5 4 -10 8 -15 11c71 69 160 115 305 132c18 3 37 4 55 4c92 0 182 -25 271 -50 c84 -24 169 -48 255 -48c16 0 33 1 49 3c133 15 222 40 287 103c3 -6 6 -11 10 -15c5 -5 10 -8 15 -11'], + 0x2016: [1245,745,402,80,322,'141 -745c-10 2 -20 3 -30 3c-11 0 -21 -1 -31 -3v1990c10 -2 20 -3 31 -3c10 0 20 1 30 3v-1990zM322 -745c-10 2 -20 3 -30 3c-11 0 -21 -1 -31 -3v1990c10 -2 20 -3 31 -3c10 0 20 1 30 3v-1990'], + 0x2044: [1793,1293,1288,80,1208,'1208 1793l-1063 -3086c-11 2 -22 3 -33 3s-21 -1 -32 -3l1063 3086c11 -2 21 -3 32 -3s22 1 33 3'], + 0x20E9: [782,-652,2226,0,2226,'2226 782v-129c-6 1 -13 2 -20 2s-14 -1 -20 -3v66h-2146v-65c-6 1 -13 2 -20 2s-14 -1 -20 -3v130h2226'], + 0x221A: [1560,1030,757,120,787,'787 1500h-164l-90 -2530c-14 2 -27 3 -40 3c-14 0 -27 -1 -41 -3l-266 1218h-66v60h154l210 -961l81 2273h222v-60'], + 0x2223: [1245,745,221,80,141,'141 -745c-10 2 -20 3 -30 3c-11 0 -21 -1 -31 -3v1990c10 -2 20 -3 31 -3c10 0 20 1 30 3v-1990'], + 0x2225: [1245,745,402,80,322,'141 -745c-10 2 -20 3 -30 3c-11 0 -21 -1 -31 -3v1990c10 -2 20 -3 31 -3c10 0 20 1 30 3v-1990zM322 -745c-10 2 -20 3 -30 3c-11 0 -21 -1 -31 -3v1990c10 -2 20 -3 31 -3c10 0 20 1 30 3v-1990'], + 0x2308: [1265,745,500,139,407,'407 1225h-192v-1970c-13 2 -25 3 -38 3s-25 -1 -38 -3v2010h268c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x2309: [1265,745,500,93,361,'361 -745c-13 2 -25 3 -38 3s-25 -1 -38 -3v1970h-192c2 6 3 13 3 20s-1 14 -3 20h268v-2010'], + 0x230A: [1245,765,500,139,407,'407 -765h-268v2010c13 -2 25 -3 38 -3s25 1 38 3v-1970h192c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x230B: [1245,765,500,93,361,'361 -765h-268c2 6 3 13 3 20s-1 14 -3 20h192v1970c13 -2 25 -3 38 -3s25 1 38 3v-2010'], + 0x2329: [1797,1298,571,93,478,'478 1789l-295 -1539l295 -1539c-7 0 -14 0 -20 -2c-7 -1 -13 -3 -19 -7l-346 1548l346 1547c6 -3 12 -5 19 -6c6 -2 13 -2 20 -2'], + 0x232A: [1797,1298,571,93,478,'478 250l-346 -1548c-6 4 -12 6 -19 7c-6 2 -13 2 -20 2l295 1539l-295 1539c7 0 14 0 20 2c7 1 13 3 19 6'], + 0x23B4: [782,-652,2226,0,2226,'2226 782v-129c-6 1 -13 2 -20 2s-14 -1 -20 -3v66h-2146v-65c-6 1 -13 2 -20 2s-14 -1 -20 -3v130h2226'], + 0x23B5: [-182,312,2226,0,2226,'2226 -312l-2226 1v129c6 -2 13 -3 20 -3s14 1 20 3v-66l2146 1v65c6 -2 13 -3 20 -3s14 1 20 3v-130'], + 0x23DC: [792,-570,3028,0,3028,'3028 598c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-113 112 -518 158 -1153 158h-666c-635 0 -1040 -46 -1153 -158c-3 6 -7 11 -12 16s-10 9 -16 12c116 116 528 194 1181 194h666c653 0 1065 -78 1181 -194'], + 0x23DD: [-100,322,3028,0,3028,'3028 -128c-116 -116 -528 -194 -1181 -194h-666c-653 0 -1065 78 -1181 194c6 3 11 7 16 12s9 10 12 16c113 -112 518 -158 1153 -158h666c635 0 1040 46 1153 158c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x23DE: [808,-587,3038,0,3038,'3038 601c-7 -1 -14 -2 -20 -4c-7 -2 -13 -6 -18 -10c-24 66 -159 82 -377 82h-708c-215 0 -348 40 -396 92c-48 -52 -181 -92 -396 -92h-708c-219 0 -354 -16 -377 -82c-6 4 -12 8 -18 10c-7 2 -13 3 -20 4c27 74 168 132 415 132h708c240 0 376 10 376 75 c6 -2 13 -3 20 -3s13 1 20 3c0 -65 135 -75 376 -75h708c246 0 388 -58 415 -132'], + 0x23DF: [-117,338,3038,0,3038,'3038 -131c-27 -74 -169 -132 -415 -132h-708c-241 0 -376 -10 -376 -75c-7 2 -13 3 -20 3s-14 -1 -20 -3c0 65 -136 75 -376 75h-708c-247 0 -388 58 -415 132c7 1 13 2 20 4c6 2 12 6 18 10c23 -66 158 -82 377 -82h708c215 0 348 -40 396 -92c48 52 181 92 396 92h708 c218 0 353 16 377 82c5 -4 11 -8 18 -10c6 -2 13 -3 20 -4'], + 0x23E0: [739,-525,3076,0,3076,'3076 525c-13 2 -25 3 -38 3s-25 -1 -38 -3l-138 138h-2648l-138 -138c-13 2 -25 3 -38 3s-25 -1 -38 -3l214 214h2648'], + 0x23E1: [-55,269,3076,0,3076,'3076 -55l-214 -214h-2648l-214 214c13 -2 25 -3 38 -3s25 1 38 3l138 -138h2648l138 138c13 -2 25 -3 38 -3s25 1 38 3'], + 0x27E6: [1265,765,504,139,411,'411 -765h-272v2030h272c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-96v-1950h96c-2 -6 -3 -13 -3 -20s1 -14 3 -20zM275 1225h-96v-1950h96v1950'], + 0x27E7: [1265,765,504,93,365,'365 -765h-272c2 6 3 13 3 20s-1 14 -3 20h96v1950h-96c2 6 3 13 3 20s-1 14 -3 20h272v-2030zM325 1225h-96v-1950h96v1950'], + 0x27E8: [1797,1298,571,93,478,'478 1789l-295 -1539l295 -1539c-7 0 -14 0 -20 -2c-7 -1 -13 -3 -19 -7l-346 1548l346 1547c6 -3 12 -5 19 -6c6 -2 13 -2 20 -2'], + 0x27E9: [1797,1298,571,93,478,'478 250l-346 -1548c-6 4 -12 6 -19 7c-6 2 -13 2 -20 2l295 1539l-295 1539c7 0 14 0 20 2c7 1 13 3 19 6'], + 0x27EA: [1797,1298,872,93,779,'478 1789l-295 -1539l295 -1539c-7 0 -14 0 -20 -2c-7 -1 -13 -3 -19 -7l-346 1548l346 1547c6 -3 12 -5 19 -6c6 -2 13 -2 20 -2zM779 1789l-295 -1539l295 -1539c-7 0 -13 0 -20 -2c-7 -1 -13 -3 -19 -7l-346 1548l346 1547c6 -3 12 -5 19 -6c7 -2 13 -2 20 -2'], + 0x27EB: [1797,1298,872,93,779,'779 250l-345 -1548c-6 4 -13 6 -19 7c-7 2 -14 2 -21 2l295 1539l-295 1539c7 0 14 0 21 2c6 1 13 3 19 6zM478 250l-346 -1548c-6 4 -12 6 -19 7c-6 2 -13 2 -20 2l295 1539l-295 1539c7 0 14 0 20 2c7 1 13 3 19 6'], + 0x27EE: [1259,759,418,139,325,'325 1231c-85 -85 -110 -329 -110 -691v-580c0 -362 25 -606 110 -691c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-90 89 -158 338 -158 719v580c0 381 68 630 158 719c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x27EF: [1259,759,418,93,279,'279 -40c0 -381 -68 -630 -158 -719c-3 6 -7 11 -12 16s-10 9 -16 12c85 85 110 329 110 691v580c0 362 -25 606 -110 691c6 3 11 7 16 12s9 10 12 16c90 -89 158 -338 158 -719v-580'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size5/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size6/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size6/Regular/Main.js new file mode 100644 index 0000000..908db0f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Size6/Regular/Main.js @@ -0,0 +1,395 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Size6/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Size6'] = { + directory: 'Size6/Regular', + family: 'GyrePagellaMathJax_Size6', + id: 'GYREPAGELLASIZE6', + 0x20: [0,0,250,0,0,''], + 0x28: [1458,958,679,143,583,'583 1430c-245 -246 -360 -593 -360 -981v-398c0 -388 115 -735 360 -981c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-256 256 -412 605 -412 1009v398c0 404 156 753 412 1009c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x29: [1458,958,679,96,536,'536 51c0 -404 -155 -753 -412 -1009c-3 6 -7 11 -12 16s-10 9 -16 12c246 246 360 593 360 981v398c0 388 -114 735 -360 981c6 3 11 7 16 12s9 10 12 16c257 -256 412 -605 412 -1009v-398'], + 0x2F: [2272,1772,1620,80,1540,'1540 2272l-1392 -4044c-11 2 -23 3 -34 3c-12 0 -23 -1 -34 -3l1392 4044c11 -2 22 -3 34 -3c11 0 23 1 34 3'], + 0x5B: [1464,964,521,143,425,'425 -964h-282v2428h282c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-202v-2348h202c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x5C: [2272,1772,1620,80,1540,'1540 -1772c-11 2 -23 3 -34 3c-12 0 -23 -1 -34 -3l-1392 4044c11 -2 22 -3 34 -3c11 0 23 1 34 3'], + 0x5D: [1464,964,521,96,378,'378 -964h-282c2 6 3 13 3 20s-1 14 -3 20h202v2348h-202c2 6 3 13 3 20s-1 14 -3 20h282v-2428'], + 0x7B: [1463,963,589,96,493,'493 -925c-3 -5 -6 -12 -8 -18c-2 -7 -2 -14 -2 -20c-140 37 -231 141 -231 317v598c0 173 -42 278 -156 278c2 6 3 13 3 20s-1 14 -3 20c114 0 156 105 156 278v598c0 176 91 280 231 317c0 -6 0 -13 2 -20c2 -6 5 -13 8 -18c-115 -31 -161 -135 -161 -279v-598 c0 -161 -53 -259 -138 -298c85 -39 138 -137 138 -298v-598c0 -144 46 -248 161 -279'], + 0x7C: [1444,944,224,80,144,'144 -944c-11 2 -21 3 -32 3s-21 -1 -32 -3v2388c11 -2 21 -3 32 -3s21 1 32 3v-2388'], + 0x7D: [1463,963,589,96,493,'493 230c-114 0 -156 -105 -156 -278v-598c0 -176 -90 -280 -231 -317c1 6 0 13 -2 20c-2 6 -4 13 -8 18c115 31 161 135 161 279v598c0 161 53 259 138 298c-85 39 -138 137 -138 298v598c0 144 -46 248 -161 279c4 5 6 12 8 18c2 7 3 14 2 20 c141 -37 231 -141 231 -317v-598c0 -173 42 -278 156 -278c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [714,-540,1498,0,1498,'1498 578l-6 -38l-743 116l-743 -116l-6 38l749 136'], + 0x303: [710,-534,1496,0,1496,'1496 682c-79 -68 -187 -115 -369 -133c-22 -3 -44 -4 -66 -4c-107 0 -214 25 -320 49c-100 24 -202 48 -305 48c-21 0 -41 -1 -61 -3c-170 -17 -277 -42 -350 -105c-3 6 -6 11 -10 16c-5 5 -9 9 -15 12c79 68 187 115 369 133c22 3 44 4 66 4c107 0 214 -25 319 -49 c101 -24 203 -48 306 -48c20 0 41 1 61 3c169 17 277 42 350 105c3 -6 6 -11 10 -16s9 -9 15 -12'], + 0x306: [709,-549,1528,0,1528,'1528 697c-49 -148 -463 -148 -764 -148s-715 0 -764 148l36 12c35 -103 445 -103 728 -103s694 0 728 103'], + 0x30C: [714,-540,1498,0,1498,'1498 676l-749 -136l-749 136l6 38l743 -116l743 116'], + 0x311: [724,-563,1528,0,1528,'1528 575l-36 -12c-34 103 -445 104 -728 104s-693 -1 -728 -104l-36 12c49 148 463 148 764 149c301 -1 715 -1 764 -149'], + 0x32C: [-60,234,1498,0,1498,'1498 -97l-749 -137l-749 137l6 37l743 -116l743 116'], + 0x32D: [-70,244,1498,0,1498,'1498 -206l-6 -38l-743 116l-743 -116l-6 38l749 136'], + 0x32E: [-60,221,1528,0,1528,'1528 -72c-49 -148 -463 -149 -764 -149s-715 1 -764 149l36 12c35 -103 445 -104 728 -104s694 1 728 104'], + 0x32F: [-78,239,1528,0,1528,'1528 -226l-36 -13c-34 104 -445 104 -728 104s-693 0 -728 -104l-36 13c49 148 463 148 764 148s715 0 764 -148'], + 0x330: [-78,255,1496,0,1496,'1496 -107c-79 -68 -187 -115 -369 -133c-22 -2 -44 -3 -66 -3c-107 0 -214 24 -320 49c-100 23 -202 47 -305 47c-21 0 -41 -1 -61 -3c-170 -17 -277 -41 -350 -105c-3 6 -6 12 -10 17c-5 4 -9 9 -15 12c79 68 187 115 369 133c22 2 44 3 66 3c107 0 214 -24 319 -49 c101 -23 203 -47 306 -47c20 0 41 1 61 3c169 17 277 42 350 105c3 -6 6 -11 10 -16s9 -9 15 -13'], + 0x2016: [1444,944,408,80,328,'144 -944c-11 2 -21 3 -32 3s-21 -1 -32 -3v2388c11 -2 21 -3 32 -3s21 1 32 3v-2388zM328 -944c-11 2 -21 3 -32 3s-21 -1 -32 -3v2388c11 -2 21 -3 32 -3s21 1 32 3v-2388'], + 0x2044: [2272,1772,1620,80,1540,'1540 2272l-1392 -4044c-11 2 -23 3 -34 3c-12 0 -23 -1 -34 -3l1392 4044c11 -2 22 -3 34 -3c11 0 23 1 34 3'], + 0x20E9: [788,-656,2593,0,2593,'2593 657c-6 1 -13 3 -20 3s-14 -2 -20 -4v59l-2513 1v-59c-6 2 -13 3 -20 3s-14 -2 -20 -3v131h2593v-131'], + 0x221A: [1740,1210,770,120,800,'800 1680h-190v-2890c-13 2 -27 3 -40 3c-14 0 -27 -1 -41 -3l-342 1416h-67v60h153l277 -1143v2617h250v-60'], + 0x2223: [1444,944,224,80,144,'144 -944c-11 2 -21 3 -32 3s-21 -1 -32 -3v2388c11 -2 21 -3 32 -3s21 1 32 3v-2388'], + 0x2225: [1444,944,408,80,328,'144 -944c-11 2 -21 3 -32 3s-21 -1 -32 -3v2388c11 -2 21 -3 32 -3s21 1 32 3v-2388zM328 -944c-11 2 -21 3 -32 3s-21 -1 -32 -3v2388c11 -2 21 -3 32 -3s21 1 32 3v-2388'], + 0x2308: [1464,944,521,143,425,'425 1464c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-202v-2368c-13 2 -27 3 -40 3s-27 -1 -40 -3v2408h282'], + 0x2309: [1464,944,521,96,378,'378 -944c-13 2 -27 3 -40 3s-27 -1 -40 -3v2368h-202c2 6 3 13 3 20s-1 14 -3 20h282v-2408'], + 0x230A: [1444,964,521,143,425,'425 -964h-282v2408c13 -2 27 -3 40 -3s27 1 40 3v-2368h202c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x230B: [1444,964,521,96,378,'378 -964h-282c2 6 3 13 3 20s-1 14 -3 20h202v2368c13 -2 27 -3 40 -3s27 1 40 3v-2408'], + 0x2329: [2275,1775,620,96,524,'524 2268l-331 -2018l331 -2018c-7 1 -13 0 -20 -1s-13 -3 -19 -6l-389 2025l389 2025c6 -3 12 -5 19 -6s13 -2 20 -1'], + 0x232A: [2275,1775,620,96,524,'524 250l-389 -2025c-6 3 -12 5 -19 6c-6 1 -13 2 -20 1l332 2018l-332 2018c7 -1 14 0 20 1c7 1 13 3 19 6'], + 0x23B4: [788,-656,2593,0,2593,'2593 657c-6 1 -13 3 -20 3s-14 -2 -20 -4v59l-2513 1v-59c-6 2 -13 3 -20 3s-14 -2 -20 -3v131h2593v-131'], + 0x23B5: [-186,318,2593,0,2593,'2593 -318l-2593 1v131c6 -2 13 -4 20 -4s14 2 20 4v-59h2513v59c6 -3 13 -4 20 -4s14 2 20 3v-131'], + 0x23DC: [801,-569,3528,0,3528,'3528 597c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-117 116 -573 160 -1298 160h-876c-725 0 -1181 -44 -1298 -160c-3 6 -7 11 -12 16s-10 9 -16 12c120 120 582 204 1326 204h876c744 0 1206 -84 1326 -204'], + 0x23DD: [-99,331,3528,0,3528,'3528 -127c-120 -120 -582 -204 -1326 -204h-876c-744 0 -1206 84 -1326 204c6 3 11 7 16 12s9 10 12 16c117 -116 573 -160 1298 -160h876c725 0 1181 44 1298 160c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x23DE: [815,-586,3538,0,3538,'3538 600c-7 -1 -14 -2 -20 -4c-7 -2 -13 -6 -18 -10c-25 68 -175 82 -418 82h-876c-240 0 -387 44 -437 100c-51 -56 -198 -100 -437 -100h-876c-244 0 -394 -14 -418 -82c-6 4 -12 8 -18 10c-7 2 -13 3 -20 4c28 76 183 140 456 140h876c267 0 417 7 417 75 c6 -2 13 -3 20 -3s13 1 20 3c0 -68 150 -75 417 -75h876c272 0 428 -64 456 -140'], + 0x23DF: [-116,345,3538,0,3538,'3538 -130c-28 -76 -184 -140 -456 -140h-876c-267 0 -417 -7 -417 -75c-7 2 -13 3 -20 3s-14 -1 -20 -3c0 68 -150 75 -417 75h-876c-273 0 -428 64 -456 140c7 1 13 2 20 4c6 2 12 6 18 10c24 -68 174 -82 418 -82h876c239 0 386 -44 437 -100c50 56 197 100 437 100 h876c243 0 393 14 418 82c5 -4 11 -8 18 -10c6 -2 13 -3 20 -4'], + 0x23E0: [744,-522,3580,0,3580,'3580 522c-13 2 -27 3 -40 3s-27 -1 -40 -3l-142 142h-3136l-142 -142c-13 2 -27 3 -40 3s-27 -1 -40 -3l222 222h3136'], + 0x23E1: [-52,274,3580,0,3580,'3580 -52l-222 -222h-3136l-222 222c13 -2 27 -3 40 -3s27 1 40 3l142 -142h3136l142 142c13 -2 27 -3 40 -3s27 1 40 3'], + 0x27E6: [1464,964,521,143,425,'425 -964h-282v2428h282c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-101v-2348h101c-2 -6 -3 -13 -3 -20s1 -14 3 -20zM284 -924v2348h-101v-2348h101'], + 0x27E7: [1464,964,521,96,378,'378 1464v-2428h-282c2 6 3 13 3 20s-1 14 -3 20h101v2348h-101c2 6 3 13 3 20s-1 14 -3 20h282zM338 -924v2348h-101v-2348h101'], + 0x27E8: [2275,1775,620,96,524,'524 2268l-331 -2018l331 -2018c-7 1 -13 0 -20 -1s-13 -3 -19 -6l-389 2025l389 2025c6 -3 12 -5 19 -6s13 -2 20 -1'], + 0x27E9: [2275,1775,620,96,524,'524 250l-389 -2025c-6 3 -12 5 -19 6c-6 1 -13 2 -20 1l332 2018l-332 2018c7 -1 14 0 20 1c7 1 13 3 19 6'], + 0x27EA: [2275,1775,941,96,845,'524 2268l-331 -2018l331 -2018c-7 1 -13 0 -20 -1s-13 -3 -19 -6l-389 2025l389 2025c6 -3 12 -5 19 -6s13 -2 20 -1zM845 2268l-331 -2018l331 -2018c-7 1 -13 0 -20 -1s-13 -3 -19 -6l-389 2025l389 2025c6 -3 12 -5 19 -6s13 -2 20 -1'], + 0x27EB: [2275,1775,941,96,845,'845 250l-389 -2025c-6 3 -12 5 -19 6c-6 1 -13 2 -20 1l332 2018l-332 2018c7 -1 14 0 20 1c7 1 13 3 20 6zM524 250l-389 -2025c-6 3 -12 5 -19 6c-6 1 -13 2 -20 1l332 2018l-332 2018c7 -1 14 0 20 1c7 1 13 3 19 6'], + 0x27EE: [1458,958,439,143,343,'343 1430c-93 -93 -120 -369 -120 -782v-796c0 -413 27 -689 120 -782c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-97 97 -172 378 -172 810v796c0 432 75 713 172 810c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x27EF: [1458,958,439,96,296,'296 -148c0 -432 -75 -713 -172 -810c-3 6 -7 11 -12 16s-10 9 -16 12c93 93 120 369 120 782v796c0 413 -27 689 -120 782c6 3 11 7 16 12s9 10 12 16c97 -97 172 -378 172 -810v-796'], + 0xE000: [390,-110,200,0,200,'200 330h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60zM200 110h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60'], + 0xE001: [390,-110,200,0,200,'200 330h-200v60h200v-60zM200 110h-200v60h200v-60'], + 0xE002: [390,-110,200,0,200,'200 330h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM200 110h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE003: [596,0,589,252,332,'332 0h-80v596h80v-596'], + 0xE004: [796,0,224,80,144,'144 0c-11 2 -21 3 -32 3s-21 -1 -32 -3v796h64v-796'], + 0xE005: [796,0,224,80,144,'144 0h-64v796h64v-796'], + 0xE006: [796,0,224,80,144,'144 0h-64v796c11 -2 21 -3 32 -3s21 1 32 3v-796'], + 0xE007: [596,0,589,257,337,'337 596v-596h-80v596h80'], + 0xE008: [784,-640,191,0,191,'191 688v-48h-167l-24 24c44 36 84 76 120 120c11 -2 23 -3 34 -3s23 1 34 3c-28 -34 -59 -67 -92 -96h95'], + 0xE009: [688,-640,127,0,127,'127 688v-48h-127v48h127'], + 0xE00A: [688,-640,192,0,192,'192 640h-192v48h192c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0xE00B: [688,-640,191,0,191,'191 640h-191c2 8 3 16 3 24s-1 16 -3 24h191v-48'], + 0xE00C: [688,-640,127,0,127,'127 640h-127v48h127v-48'], + 0xE00D: [784,-640,192,0,192,'192 664l-24 -24h-168v48h95c-33 29 -63 62 -91 96c11 -2 22 -3 34 -3c11 0 22 1 34 3c35 -44 76 -84 120 -120'], + 0xE00E: [784,-544,191,0,191,'191 640h-95c33 -29 64 -62 92 -96c-11 2 -23 3 -34 3s-23 -1 -34 -3c-36 44 -76 84 -120 120c44 36 84 76 120 120c11 -2 23 -3 34 -3s23 1 34 3c-28 -34 -59 -67 -92 -96h95v-48'], + 0xE00F: [688,-640,128,0,128,'128 640h-128v48h128v-48'], + 0xE010: [688,-640,191,0,191,'191 640h-191v48h191c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0xE011: [688,-640,191,0,191,'191 640h-191c2 8 3 16 3 24s-1 16 -3 24h191v-48'], + 0xE012: [688,-640,128,0,128,'128 640h-128v48h128v-48'], + 0xE013: [784,-544,191,0,191,'191 664c-44 -36 -84 -76 -120 -120c-11 2 -23 3 -34 3s-23 -1 -34 -3c28 34 59 67 92 96h-95v48h95c-33 29 -64 62 -92 96c11 -2 23 -3 34 -3s23 1 34 3c36 -44 76 -84 120 -120'], + 0xE014: [784,-544,218,0,218,'218 688v-48h-122c33 -29 64 -62 92 -96c-11 2 -23 3 -34 3s-23 -1 -34 -3c-36 44 -76 84 -120 120c44 36 84 76 120 120c11 -2 23 -3 34 -3s23 1 34 3c-28 -34 -59 -67 -92 -96h122'], + 0xE015: [688,-640,146,0,146,'146 640h-146v48h146v-48'], + 0xE016: [784,-544,218,0,218,'218 664c-44 -36 -84 -76 -120 -120c-11 2 -22 3 -33 3c-12 0 -23 -1 -34 -3c28 34 58 67 91 96h-122v48h122c-33 29 -63 62 -91 96c11 -2 22 -3 34 -3c11 0 22 1 34 3c35 -44 75 -84 119 -120'], + 0xE017: [-170,218,191,0,191,'191 -170v-48h-191c2 8 3 16 3 24s-1 16 -3 24h191'], + 0xE018: [-170,218,127,0,127,'127 -170v-48h-127v48h127'], + 0xE019: [-170,314,192,0,192,'192 -194c-44 -36 -85 -76 -120 -120c-12 2 -23 3 -34 3c-12 0 -23 -1 -34 -3c28 34 58 67 91 96h-95v48h168'], + 0xE01A: [-170,314,191,0,191,'191 -218h-95c33 -29 64 -62 92 -96c-11 2 -23 3 -34 3s-23 -1 -34 -3c-36 44 -76 84 -120 120l24 24h167v-48'], + 0xE01B: [-170,218,127,0,127,'127 -170v-48h-127v48h127'], + 0xE01C: [-170,218,192,0,192,'192 -218h-192v48h192c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0xE01D: [-74,314,191,0,191,'191 -218h-95c33 -29 64 -62 92 -96c-11 2 -23 3 -34 3s-23 -1 -34 -3c-36 44 -76 84 -120 120c44 36 84 76 120 120c11 -2 23 -3 34 -3s23 1 34 3c-28 -34 -59 -67 -92 -96h95v-48'], + 0xE01E: [-170,218,128,0,128,'128 -218h-128v48h128v-48'], + 0xE01F: [-170,218,191,0,191,'191 -218h-191v48h191c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0xE020: [-170,218,191,0,191,'191 -218h-191c2 8 3 16 3 24s-1 16 -3 24h191v-48'], + 0xE021: [-170,218,128,0,128,'128 -218h-128v48h128v-48'], + 0xE022: [-74,314,191,0,191,'191 -194c-44 -36 -84 -76 -120 -120c-11 2 -23 3 -34 3s-23 -1 -34 -3c28 34 59 67 92 96h-95v48h95c-33 29 -64 62 -92 96c11 -2 23 -3 34 -3s23 1 34 3c36 -44 76 -84 120 -120'], + 0xE023: [400,-100,454,0,454,'454 280v-60h-318c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h318'], + 0xE024: [280,-220,302,0,302,'302 280v-60h-302v60h302'], + 0xE025: [280,-220,454,0,454,'454 220h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE026: [280,-220,454,0,454,'454 280v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454'], + 0xE027: [280,-220,302,0,302,'302 280v-60h-302v60h302'], + 0xE028: [400,-100,454,0,454,'454 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-318v60h318c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE029: [454,0,460,200,260,'260 454v-454c-10 2 -20 3 -30 3s-20 -1 -30 -3v454h60'], + 0xE02A: [302,0,460,200,260,'260 302v-302h-60v302h60'], + 0xE02B: [454,0,460,80,380,'380 219c-43 30 -83 63 -120 99v-318h-60v318c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE02C: [454,0,460,80,380,'380 171c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v318h60v-318c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE02D: [302,0,460,200,260,'260 0h-60v302h60v-302'], + 0xE02E: [454,0,460,200,260,'260 454v-454h-60v454c10 -2 20 -3 30 -3s20 1 30 3'], + 0xE02F: [400,-100,346,0,346,'346 280v-60h-210c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h210'], + 0xE030: [280,-220,86,0,86,'86 280v-60h-86v60h86'], + 0xE031: [400,-100,346,0,346,'346 220h-158l-41 -120c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l41 120h-137v60h158l41 120c8 -2 17 -3 26 -3c8 0 17 1 25 3l-41 -120h137v-60'], + 0xE032: [280,-220,346,0,346,'346 220h-346v60h346c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE033: [280,-220,346,0,346,'346 280v-60h-346c2 10 3 20 3 30s-1 20 -3 30h346'], + 0xE034: [280,-220,86,0,86,'86 280v-60h-86v60h86'], + 0xE035: [400,-100,346,0,346,'346 280v-60h-158l-41 -120c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l41 120h-137v60h158l41 120c8 -2 17 -3 26 -3c8 0 17 1 25 3l-41 -120h137'], + 0xE036: [400,-100,346,0,346,'346 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-210v60h210c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE037: [400,-100,486,0,486,'486 280v-60h-350c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h350'], + 0xE038: [280,-220,323,0,323,'323 220h-323v60h323v-60'], + 0xE039: [400,-100,486,0,486,'486 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-350v60h350c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE03A: [485,0,460,80,380,'380 171c-56 -52 -106 -109 -150 -171c-44 62 -94 119 -150 171c2 10 3 21 3 32c0 10 -1 21 -3 31c43 -29 83 -62 120 -98v349h60v-349c37 36 77 69 120 98c-2 -10 -3 -21 -3 -31c0 -11 1 -22 3 -32'], + 0xE03B: [324,0,460,200,260,'260 0h-60v324h60v-324'], + 0xE03C: [486,0,460,80,380,'380 251c-43 29 -83 62 -120 98v-349h-60v349c-37 -36 -77 -69 -120 -98c2 10 3 21 3 31c0 11 -1 22 -3 32c56 52 106 109 150 172c44 -63 94 -120 150 -172c-2 -10 -3 -21 -3 -32c0 -10 1 -21 3 -31'], + 0xE03D: [400,-100,370,0,370,'370 220h-234c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h234v-60'], + 0xE03E: [280,-220,93,0,93,'93 220h-93v60h93v-60'], + 0xE03F: [400,-100,369,0,369,'369 220h-169l-42 -120c-8 2 -16 3 -25 3s-17 -1 -25 -3l41 120h-149v60h169l42 120c8 -2 16 -3 25 -3s17 1 25 3l-41 -120h149v-60'], + 0xE040: [400,-100,370,0,370,'370 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-234v60h234c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE041: [400,-100,482,0,482,'482 220h-176c36 -37 69 -77 99 -120c-11 2 -22 3 -32 3c-11 0 -22 -1 -32 -3c-40 44 -84 84 -131 120h-74c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3 c-30 -43 -63 -83 -99 -120h74c47 36 91 76 131 120c10 -2 21 -3 32 -3c10 0 21 1 32 3c-30 -43 -63 -83 -99 -120h176v-60'], + 0xE042: [280,-220,321,0,321,'321 220h-321v60h321v-60'], + 0xE043: [280,-220,482,0,482,'482 220h-482v60h482c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE044: [280,-220,482,0,482,'482 280v-60h-482c2 10 3 20 3 30s-1 20 -3 30h482'], + 0xE045: [280,-220,321,0,321,'321 280v-60h-321v60h321'], + 0xE046: [400,-100,482,0,482,'482 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-74c-47 -36 -91 -76 -131 -120c-10 2 -21 3 -32 3c-10 0 -21 -1 -32 -3c30 43 63 83 99 120h-176v60h176c-36 37 -69 77 -99 120c11 -2 22 -3 32 -3c11 0 22 1 32 3 c40 -44 84 -84 131 -120h74c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE047: [481,0,460,200,260,'260 481v-481c-10 1 -20 3 -30 3s-20 -2 -30 -3v481h60'], + 0xE048: [322,0,460,200,260,'260 322v-322h-60v322h60'], + 0xE049: [482,0,460,80,380,'380 77c-43 29 -83 62 -120 98v-175h-60v175c-37 -36 -77 -69 -120 -98c2 10 3 21 3 32c0 10 -1 21 -3 32c44 40 84 84 120 130v74c-37 -36 -77 -69 -120 -98c2 10 3 21 3 31c0 11 -1 22 -3 32c56 52 106 109 150 172c44 -63 94 -120 150 -172c-2 -10 -3 -21 -3 -32 c0 -10 1 -21 3 -31c-43 29 -83 62 -120 98v-74c36 -46 76 -90 120 -130c-2 -11 -3 -22 -3 -32c0 -11 1 -22 3 -32'], + 0xE04A: [482,0,460,80,380,'380 171c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v74c-36 47 -76 91 -120 131c2 10 3 21 3 32c0 10 -1 21 -3 32c43 -30 83 -63 120 -99v176h60v-176c37 36 77 69 120 99c-2 -11 -3 -22 -3 -32 c0 -11 1 -22 3 -32c-44 -40 -84 -84 -120 -131v-74c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE04B: [322,0,460,200,260,'260 0h-60v322h60v-322'], + 0xE04C: [481,0,460,200,260,'260 481v-481h-60v481c10 -1 20 -3 30 -3s20 2 30 3'], + 0xE04D: [400,-100,486,0,486,'486 220h-350c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h350v-60'], + 0xE04E: [280,-220,323,0,323,'323 280v-60h-323v60h323'], + 0xE04F: [400,-100,486,0,486,'486 100c-10 2 -21 3 -32 3c-10 0 -21 -1 -32 -3l-120 120h-302v60h302l120 120c11 -2 22 -3 32 -3c11 0 22 1 32 3l-150 -150'], + 0xE050: [400,-100,486,0,486,'486 220h-302l-120 -120c-11 2 -22 3 -32 3c-11 0 -22 -1 -32 -3l150 150l-150 150c10 -2 21 -3 32 -3c10 0 21 1 32 3l120 -120h302v-60'], + 0xE051: [280,-220,323,0,323,'323 280v-60h-323v60h323'], + 0xE052: [400,-100,486,0,486,'486 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-350v60h350c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE053: [400,-100,454,0,454,'454 220h-318c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h318v-60'], + 0xE054: [280,-220,302,0,302,'302 280v-60h-302v60h302'], + 0xE055: [400,-100,454,0,454,'454 100c-7 2 -15 3 -22 3c-8 0 -16 -1 -23 -3v120h-409v60h409v120c7 -2 15 -3 23 -3c7 0 15 1 22 3v-300'], + 0xE056: [400,-100,454,0,454,'454 220h-409v-120c-7 2 -15 3 -22 3c-8 0 -16 -1 -23 -3v300c7 -2 15 -3 23 -3c7 0 15 1 22 3v-120h409v-60'], + 0xE057: [280,-220,302,0,302,'302 220h-302v60h302v-60'], + 0xE058: [400,-100,454,0,454,'454 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-318v60h318c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE059: [454,0,460,80,380,'380 0h-300c2 7 3 15 3 23c0 7 -1 15 -3 22h120v409h60v-409h120c-2 -7 -3 -15 -3 -22c0 -8 1 -16 3 -23'], + 0xE05A: [302,0,460,200,260,'260 302v-302h-60v302h60'], + 0xE05B: [454,0,460,80,380,'380 219c-43 30 -83 63 -120 99v-318h-60v318c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE05C: [454,0,460,80,380,'380 171c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v318h60v-318c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE05D: [302,0,460,200,260,'260 302v-302h-60v302h60'], + 0xE05E: [454,0,460,80,380,'380 409h-120v-409h-60v409h-120c2 7 3 15 3 22c0 8 -1 16 -3 23h300c-2 -7 -3 -15 -3 -23c0 -7 1 -15 3 -22'], + 0xE05F: [490,-220,465,0,465,'465 220h-330c-88 0 -135 47 -135 135s47 135 135 135h60c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-60c-49 0 -75 -26 -75 -75s26 -75 75 -75h330v-60'], + 0xE060: [280,-220,310,0,310,'310 280v-60h-310v60h310'], + 0xE061: [400,-100,465,0,465,'465 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-329v60h329c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE062: [400,-100,465,0,465,'465 280v-60h-329c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h329'], + 0xE063: [280,-220,310,0,310,'310 280v-60h-310v60h310'], + 0xE064: [490,-220,465,0,465,'465 355c0 -88 -47 -135 -135 -135h-330v60h330c49 0 75 26 75 75s-26 75 -75 75h-60c2 10 3 20 3 30s-1 20 -3 30h60c88 0 135 -47 135 -135'], + 0xE065: [490,-40,465,0,465,'465 220h-195v-180c-10 2 -20 3 -30 3s-20 -1 -30 -3v180h-75c-88 0 -135 47 -135 135s47 135 135 135s135 -47 135 -135v-75h195v-60zM210 280v75c0 49 -26 75 -75 75s-75 -26 -75 -75s26 -75 75 -75h75'], + 0xE066: [280,-220,310,0,310,'310 220h-310v60h310v-60'], + 0xE067: [400,-100,465,0,465,'465 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-329v60h329c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE068: [400,-100,465,0,465,'465 220h-329c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h329v-60'], + 0xE069: [280,-220,310,0,310,'310 220h-310v60h310v-60'], + 0xE06A: [490,-40,465,0,465,'465 355c0 -88 -47 -135 -135 -135h-75v-180c-10 2 -20 3 -30 3s-20 -1 -30 -3v180h-195v60h195v75c0 88 47 135 135 135s135 -47 135 -135zM405 355c0 49 -26 75 -75 75s-75 -26 -75 -75v-75h75c49 0 75 26 75 75'], + 0xE06B: [400,-220,454,0,454,'454 280v-60h-424l-30 30c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h318'], + 0xE06C: [280,-220,302,0,302,'302 220h-302v60h302v-60'], + 0xE06D: [280,-220,454,0,454,'454 220h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE06E: [280,-220,454,0,454,'454 280v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454'], + 0xE06F: [280,-220,302,0,302,'302 280v-60h-302v60h302'], + 0xE070: [400,-220,454,0,454,'454 250l-30 -30h-424v60h317c-36 37 -69 77 -98 120c10 -2 21 -3 32 -3c10 0 21 1 31 3c52 -56 109 -106 172 -150'], + 0xE071: [280,-100,454,0,454,'454 280v-60h-318c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150l30 30h424'], + 0xE072: [280,-220,302,0,302,'302 220h-302v60h302v-60'], + 0xE073: [280,-220,454,0,454,'454 220h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE074: [280,-220,454,0,454,'454 280v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454'], + 0xE075: [280,-220,302,0,302,'302 220h-302v60h302v-60'], + 0xE076: [280,-100,454,0,454,'454 250c-63 -44 -120 -94 -172 -150c-10 2 -21 3 -31 3c-11 0 -22 -1 -32 -3c29 43 62 83 98 120h-317v60h424'], + 0xE077: [454,0,340,80,140,'140 0c-10 2 -20 3 -30 3s-20 -1 -30 -3v454h60v-454'], + 0xE078: [302,0,340,80,140,'140 302v-302h-60v302h60'], + 0xE079: [454,0,340,80,260,'260 219c-43 29 -83 62 -120 98v-317h-60v424l30 30c44 -63 94 -120 150 -172c-2 -10 -3 -21 -3 -31c0 -11 1 -22 3 -32'], + 0xE07A: [454,0,340,80,260,'260 171c-56 -51 -106 -109 -150 -171l-30 30v424h60v-318c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE07B: [302,0,340,80,140,'140 0h-60v302h60v-302'], + 0xE07C: [454,0,340,80,140,'140 454v-454h-60v454c10 -2 20 -3 30 -3s20 1 30 3'], + 0xE07D: [454,0,340,200,260,'260 0c-10 2 -20 3 -30 3s-20 -1 -30 -3v454h60v-454'], + 0xE07E: [302,0,340,200,260,'260 0h-60v302h60v-302'], + 0xE07F: [454,0,340,80,260,'260 0h-60v317c-37 -36 -77 -69 -120 -98c2 10 3 21 3 32c0 10 -1 21 -3 31c56 52 106 109 150 172l30 -30v-424'], + 0xE080: [454,0,340,80,260,'260 454v-424l-30 -30c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v318h60'], + 0xE081: [302,0,340,200,260,'260 302v-302h-60v302h60'], + 0xE082: [454,0,340,200,260,'260 454v-454h-60v454c10 -2 20 -3 30 -3s20 1 30 3'], + 0xE083: [450,70,458,0,458,'458 50h-322c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h322v-60zM458 450v-60h-448c2 10 3 20 3 30s-1 20 -3 30h448'], + 0xE084: [450,-50,305,0,305,'305 110v-60h-305v60h305zM305 450v-60h-305v60h305'], + 0xE085: [570,-50,457,0,457,'447 50h-447v60h447c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM457 420c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-321v60h321c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE086: [570,-50,457,0,457,'457 50h-447c2 10 3 20 3 30s-1 20 -3 30h447v-60zM457 450v-60h-321c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h321'], + 0xE087: [450,-50,305,0,305,'305 110v-60h-305v60h305zM305 450v-60h-305v60h305'], + 0xE088: [450,70,458,0,458,'458 80c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-322v60h322c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM448 390h-448v60h448c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE089: [458,0,800,200,720,'260 10c-10 2 -20 3 -30 3s-20 -1 -30 -3v448h60v-448zM720 171c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v322h60v-322c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE08A: [305,0,800,200,600,'260 305v-305h-60v305h60zM600 305v-305h-60v305h60'], + 0xE08B: [457,0,800,80,600,'380 222c-43 30 -83 63 -120 99v-321h-60v321c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM600 0h-60v447c10 -2 20 -3 30 -3s20 1 30 3v-447'], + 0xE08C: [457,0,800,80,600,'380 171c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v321h60v-321c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM600 10c-10 2 -20 3 -30 3s-20 -1 -30 -3v447h60v-447'], + 0xE08D: [305,0,800,200,600,'260 0h-60v305h60v-305zM600 305v-305h-60v305h60'], + 0xE08E: [458,0,800,200,720,'260 448v-448h-60v448c10 -2 20 -3 30 -3s20 1 30 3zM720 223c-43 30 -83 63 -120 99v-322h-60v322c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE08F: [570,70,454,0,454,'454 110v-60h-318c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h318zM454 450v-60h-318c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3 c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h318'], + 0xE090: [450,-50,302,0,302,'302 110v-60h-302v60h302zM302 450v-60h-302v60h302'], + 0xE091: [450,-50,454,0,454,'454 50h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM454 390h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE092: [450,-50,454,0,454,'454 110v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454zM454 450v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454'], + 0xE093: [450,-50,302,0,302,'302 110v-60h-302v60h302zM302 450v-60h-302v60h302'], + 0xE094: [570,70,454,0,454,'454 80c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-318v60h318c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM454 420c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3 c30 43 63 83 99 120h-318v60h318c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE095: [454,0,800,200,600,'260 0c-10 2 -20 3 -30 3s-20 -1 -30 -3v454h60v-454zM600 454v-454c-10 2 -20 3 -30 3s-20 -1 -30 -3v454h60'], + 0xE096: [302,0,800,200,600,'260 0h-60v302h60v-302zM600 0h-60v302h60v-302'], + 0xE097: [454,0,800,80,720,'380 219c-43 30 -83 63 -120 99v-318h-60v318c-37 -36 -77 -69 -120 -99c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 219c-43 30 -83 63 -120 99v-318h-60v318c-37 -36 -77 -69 -120 -99 c2 11 3 21 3 32s-1 21 -3 32c56 51 106 109 150 171c44 -62 94 -120 150 -171c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE098: [454,0,800,80,720,'380 171c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32s-1 21 -3 32c43 -30 83 -63 120 -99v318h60v-318c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32zM720 171c-56 -51 -106 -109 -150 -171c-44 62 -94 120 -150 171c2 11 3 21 3 32 s-1 21 -3 32c43 -30 83 -63 120 -99v318h60v-318c37 36 77 69 120 99c-2 -11 -3 -21 -3 -32s1 -21 3 -32'], + 0xE099: [302,0,800,200,600,'260 0h-60v302h60v-302zM600 302v-302h-60v302h60'], + 0xE09A: [454,0,800,200,600,'260 454v-454h-60v454c10 -2 20 -3 30 -3s20 1 30 3zM600 454v-454h-60v454c10 -2 20 -3 30 -3s20 1 30 3'], + 0xE09B: [620,120,454,0,454,'454 -60v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454zM454 280v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454zM454 620v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454'], + 0xE09C: [620,120,302,0,302,'302 -120h-302v60h302v-60zM302 220h-302v60h302v-60zM302 560h-302v60h302v-60'], + 0xE09D: [740,240,454,0,454,'454 -90c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-318v60h318c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM454 250c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3 c30 43 63 83 99 120h-318v60h318c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c51 -56 109 -106 171 -150zM454 590c-62 -44 -120 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-318v60h318c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3 s21 1 32 3c51 -56 109 -106 171 -150'], + 0xE09E: [740,240,454,0,454,'454 -120h-318c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h318v-60zM454 220h-318c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3 c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h318v-60zM454 560h-318c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3 c-30 -43 -63 -83 -99 -120h318v-60'], + 0xE09F: [620,120,302,0,302,'302 -120h-302v60h302v-60zM302 220h-302v60h302v-60zM302 560h-302v60h302v-60'], + 0xE0A0: [620,120,454,0,454,'454 -120h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM454 220h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM454 560h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE0A1: [510,-110,457,0,457,'457 110h-447c2 10 3 20 3 30s-1 20 -3 30h447v-60zM457 390v-60h-427l-30 30c62 44 120 94 171 150c11 -2 21 -3 32 -3s21 1 32 3c-30 -43 -63 -83 -99 -120h321'], + 0xE0A2: [390,-110,305,0,305,'305 170v-60h-305v60h305zM305 390v-60h-305v60h305'], + 0xE0A3: [390,10,457,0,457,'457 140c-62 -44 -119 -94 -171 -150c-11 2 -21 3 -32 3s-21 -1 -32 -3c30 43 63 83 99 120h-321v60h428zM448 330h-448v60h448c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE0A4: [390,10,457,0,457,'457 170v-60h-321c36 -37 69 -77 99 -120c-11 2 -21 3 -32 3s-21 -1 -32 -3c-51 56 -109 106 -171 150l30 30h427zM457 390v-60h-447c2 10 3 20 3 30s-1 20 -3 30h447'], + 0xE0A5: [390,-110,305,0,305,'305 170v-60h-305v60h305zM305 390v-60h-305v60h305'], + 0xE0A6: [510,-110,457,0,457,'448 110h-448v60h448c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM457 360l-29 -30h-428v60h321c-36 37 -69 77 -99 120c11 -2 21 -3 32 -3s21 1 32 3c52 -56 109 -106 171 -150'], + 0xE0A7: [450,-50,454,0,454,'454 190v-60h-239c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h239v-60h-300c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h300'], + 0xE0A8: [370,-130,302,0,302,'302 130h-302v60h302v-60zM302 370v-60h-302v60h302'], + 0xE0A9: [370,-130,454,0,454,'454 130h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM454 310h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE0AA: [370,-130,454,0,454,'454 370v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454zM454 190v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454'], + 0xE0AB: [370,-130,302,0,302,'302 310h-302v60h302v-60zM302 190v-60h-302v60h302'], + 0xE0AC: [450,-50,454,0,454,'454 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-239v60h300c22 21 45 41 69 60c-24 19 -47 39 -69 60h-300v60h239c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -141 200 -200'], + 0xE0AD: [454,0,560,160,400,'220 454v-454c-10 2 -20 3 -30 3s-20 -1 -30 -3v454h60zM400 0c-10 2 -20 3 -30 3s-20 -1 -30 -3v454h60v-454'], + 0xE0AE: [302,0,560,160,400,'220 0h-60v302h60v-302zM400 302v-302h-60v302h60'], + 0xE0AF: [454,0,560,80,480,'480 169c-28 22 -54 46 -80 70v-239h-60v300c-21 22 -41 45 -60 69c-19 -24 -39 -47 -60 -69v-300h-60v239c-26 -24 -52 -48 -80 -70c2 14 3 28 3 43c0 14 -1 28 -3 42c73 59 141 127 200 200c59 -73 127 -141 200 -200c-2 -14 -3 -28 -3 -42c0 -15 1 -29 3 -43'], + 0xE0B0: [454,0,560,80,480,'480 200c-73 -59 -141 -127 -200 -200c-59 73 -127 141 -200 200c2 14 3 28 3 42c0 15 -1 29 -3 43c28 -22 54 -46 80 -70v239h60v-300c21 -22 41 -45 60 -69c19 24 39 47 60 69v300h60v-239c26 24 52 48 80 70c-2 -14 -3 -28 -3 -43c0 -14 1 -28 3 -42'], + 0xE0B1: [302,0,560,160,400,'400 302v-302h-60v302h60zM220 0h-60v302h60v-302'], + 0xE0B2: [454,0,560,160,400,'400 0h-60v454c10 -2 20 -3 30 -3s20 1 30 3v-454zM220 0h-60v454c10 -2 20 -3 30 -3s20 1 30 3v-454'], + 0xE0B3: [450,-50,486,0,486,'486 190v-60h-271c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-60 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h271v-60h-332c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h332'], + 0xE0B4: [370,-130,323,0,323,'323 370v-60h-323v60h323zM323 130h-323v60h323v-60'], + 0xE0B5: [450,-50,486,0,486,'486 250c-73 -59 -140 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-271v60h332c22 21 45 41 69 60c-24 19 -47 39 -69 60h-332v60h271c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -140 200 -200'], + 0xE0B6: [485,0,560,80,480,'480 199c-73 -59 -141 -126 -200 -199c-59 73 -127 140 -200 199c2 15 3 29 3 43s-1 28 -3 42c28 -22 54 -45 80 -70v271h60v-331c21 -23 41 -46 60 -70c19 24 39 47 60 70v331h60v-271c26 25 52 48 80 70c-2 -14 -3 -28 -3 -42s1 -28 3 -43'], + 0xE0B7: [324,0,560,160,400,'220 0h-60v324h60v-324zM400 324v-324h-60v324h60'], + 0xE0B8: [486,0,560,80,480,'480 201c-28 22 -54 45 -80 70v-271h-60v331c-21 23 -41 46 -60 70c-19 -24 -39 -47 -60 -70v-331h-60v271c-26 -25 -52 -48 -80 -70c2 14 3 28 3 42s-1 28 -3 43c73 59 141 126 200 200c59 -74 127 -141 200 -200c-2 -15 -3 -29 -3 -43s1 -28 3 -42'], + 0xE0B9: [450,-50,346,0,346,'346 370v-60h-192c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h192v-60h-131c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-59 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h131'], + 0xE0BA: [370,-130,86,0,86,'86 310h-86v60h86v-60zM86 130h-86v60h86v-60'], + 0xE0BB: [550,50,346,0,346,'346 190v-60h-189l-62 -180c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l62 180h-106v60h127l41 120h-168v60h189l62 180c8 -2 17 -3 26 -3c8 0 17 1 25 3l-62 -180h106v-60h-127l-41 -120h168'], + 0xE0BC: [370,-130,346,0,346,'346 130h-346v60h346c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM346 310h-346v60h346c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE0BD: [370,-130,346,0,346,'346 310h-346c2 10 3 20 3 30s-1 20 -3 30h346v-60zM346 190v-60h-346c2 10 3 20 3 30s-1 20 -3 30h346'], + 0xE0BE: [370,-130,86,0,86,'86 370v-60h-86v60h86zM86 190v-60h-86v60h86'], + 0xE0BF: [550,50,346,0,346,'346 130h-189l-62 -180c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l62 180h-106v60h127l41 120h-168v60h189l62 180c8 -2 17 -3 26 -3c8 0 17 1 25 3l-62 -180h106v-60h-127l-41 -120h168v-60'], + 0xE0C0: [450,-50,346,0,346,'346 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-131v60h192c22 21 45 41 69 60c-24 19 -47 39 -69 60h-192v60h131c-24 26 -47 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c60 -73 127 -140 200 -200'], + 0xE0C1: [450,-50,370,0,370,'370 370v-60h-216c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h216v-60h-155c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-60 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h155'], + 0xE0C2: [370,-130,93,0,93,'93 370v-60h-93v60h93zM93 190v-60h-93v60h93'], + 0xE0C3: [550,50,369,0,369,'369 130h-201l-62 -180c-8 2 -16 3 -25 3s-17 -1 -25 -3l62 180h-118v60h138l42 120h-180v60h201l62 180c8 -2 16 -3 25 -3s17 1 25 3l-62 -180h118v-60h-138l-42 -120h180v-60'], + 0xE0C4: [450,-50,370,0,370,'370 250c-73 -59 -141 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c22 28 46 54 70 80h-155v60h216c22 21 45 41 69 60c-24 19 -47 39 -69 60h-216v60h155c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c59 -73 127 -140 200 -200'], + 0xE0C5: [450,-50,482,0,482,'482 190v-60h-267c24 -26 48 -52 70 -80c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-60 73 -127 141 -200 200c73 59 141 127 200 200c14 -2 28 -3 42 -3c15 0 29 1 43 3c-22 -28 -46 -54 -70 -80h267v-60h-328c-22 -21 -45 -41 -69 -60c24 -19 47 -39 69 -60h328'], + 0xE0C6: [370,-130,321,0,321,'321 370v-60h-321v60h321zM321 130h-321v60h321v-60'], + 0xE0C7: [450,-50,482,0,482,'482 50c-10 2 -20 3 -30 3s-20 -1 -30 -3v80h-422v60h422v120h-422v60h422v80c10 -2 20 -3 30 -3s20 1 30 3v-400'], + 0xE0C8: [450,-50,482,0,482,'482 370v-60h-422v-120h422v-60h-422v-80c-10 2 -20 3 -30 3s-20 -1 -30 -3v400c10 -2 20 -3 30 -3s20 1 30 3v-80h422'], + 0xE0C9: [370,-130,321,0,321,'321 370v-60h-321v60h321zM321 190v-60h-321v60h321'], + 0xE0CA: [450,-50,482,0,482,'482 250c-73 -59 -140 -127 -200 -200c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3c23 28 46 54 70 80h-267v60h328c22 21 45 41 69 60c-24 19 -47 39 -69 60h-328v60h267c-24 26 -48 52 -70 80c14 -2 28 -3 43 -3c14 0 28 1 42 3c60 -73 127 -141 200 -200'], + 0xE0CB: [525,25,454,0,454,'454 280v-60h-333c45 -38 87 -78 128 -120h205v-60h-149l55 -65c-14 2 -28 3 -43 3c-14 0 -28 -1 -42 -3c-82 101 -174 193 -275 275c101 82 193 174 275 275c14 -2 28 -3 42 -3c15 0 29 1 43 3l-55 -65h149v-60h-205c-41 -42 -83 -82 -128 -120h333'], + 0xE0CC: [460,-40,302,0,302,'302 100v-60h-302v60h302zM302 280v-60h-302v60h302zM302 400h-302v60h302v-60'], + 0xE0CD: [460,-40,454,0,454,'454 40h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM454 220h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM454 400h-454v60h454c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE0CE: [460,-40,454,0,454,'454 400h-454c2 10 3 20 3 30s-1 20 -3 30h454v-60zM454 280v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454zM454 100v-60h-454c2 10 3 20 3 30s-1 20 -3 30h454'], + 0xE0CF: [460,-40,302,0,302,'302 400h-302v60h302v-60zM302 220h-302v60h302v-60zM302 40h-302v60h302v-60'], + 0xE0D0: [525,25,454,0,454,'454 250c-101 -82 -193 -174 -275 -275c-14 2 -28 3 -42 3c-15 0 -29 -1 -43 -3l55 65h-149v60h205c41 42 83 82 128 120h-333v60h333c-45 38 -87 78 -128 120h-205v60h149l-55 65c14 -2 28 -3 43 -3c14 0 28 1 42 3c82 -101 174 -193 275 -275'], + 0xE0D1: [450,-50,501,0,501,'501 140h-249v-90c-7 2 -15 3 -23 3s-15 -1 -23 -3c-60 75 -130 141 -206 200c76 59 146 125 206 200c8 -2 15 -3 23 -3s16 1 23 3v-90h249v-40h-289v75c-46 -52 -95 -100 -148 -145c53 -45 102 -93 148 -145v75h289v-40'], + 0xE0D2: [360,-140,335,0,335,'335 360v-40h-335v40h335zM335 180v-40h-335v40h335'], + 0xE0D3: [360,-140,501,0,501,'501 140h-501v40h461v140h-461v40h501v-220'], + 0xE0D4: [360,-140,501,0,501,'501 360v-40h-461v-140h461v-40h-501v220h501'], + 0xE0D5: [360,-140,335,0,335,'335 320h-335v40h335v-40zM335 180v-40h-335v40h335'], + 0xE0D6: [450,-50,501,0,501,'501 250c-76 -59 -146 -125 -206 -200c-8 2 -15 3 -23 3s-16 -1 -23 -3v90h-249v40h289v-75c46 52 95 100 149 145c-54 45 -103 93 -149 145v-75h-289v40h249v90c7 -2 15 -3 23 -3s15 1 23 3c60 -75 130 -141 206 -200'], + 0xE0D7: [501,0,560,170,390,'390 0h-220v501h40v-462l140 1v461h40v-501'], + 0xE0D8: [334,0,560,170,390,'210 334v-334h-40v334h40zM390 0h-40v334h40v-334'], + 0xE0D9: [502,0,560,80,480,'480 249l-90 1v-250h-40v290h75c-52 45 -100 95 -145 148c-45 -53 -93 -103 -145 -149h75v-289h-40v249l-90 1c2 7 3 15 3 22c0 8 -1 16 -3 23c75 61 141 131 200 207c59 -76 125 -146 200 -207c-2 -7 -3 -15 -3 -23c0 -7 1 -15 3 -23'], + 0xE0DA: [502,0,560,80,480,'480 206c-75 -60 -141 -130 -200 -206c-59 76 -125 146 -200 206c2 8 3 15 3 23s-1 16 -3 23h90v250h40v-290h-75c52 -46 100 -95 145 -148c45 53 93 102 145 148h-75v290h40v-250h90c-2 -7 -3 -15 -3 -23s1 -15 3 -23'], + 0xE0DB: [334,0,560,170,390,'210 0h-40v334h40v-334zM390 334v-334h-40v334h40'], + 0xE0DC: [501,0,560,170,390,'390 0h-40v461l-140 1v-462h-40v501h220v-501'], + 0xE0DD: [510,0,560,80,480,'480 206c-75 -60 -141 -130 -200 -206c-59 76 -125 146 -200 206c2 8 3 15 3 23s-1 16 -3 23h90v258h40v-298h-75c52 -46 100 -95 145 -148c45 53 93 102 145 148h-75v298h40v-258h90c-2 -7 -3 -15 -3 -23s1 -15 3 -23'], + 0xE0DE: [340,0,560,170,390,'210 0h-40v340h40v-340zM390 0h-40v340h40v-340'], + 0xE0DF: [510,0,560,80,480,'480 257l-90 1v-258h-40v297l75 1c-52 45 -100 95 -145 148c-45 -53 -93 -103 -145 -149h75v-297h-40v258h-90c2 7 3 15 3 22c0 8 -1 16 -3 23c75 61 141 131 200 207c59 -76 125 -146 200 -207c-2 -7 -3 -15 -3 -23c0 -7 1 -15 3 -23'], + 0xE0E0: [450,-50,510,0,510,'510 180v-40h-258v-90c-7 2 -15 3 -23 3s-15 -1 -23 -3c-60 75 -130 141 -206 200c76 59 146 125 206 200c8 -2 15 -3 23 -3s16 1 23 3v-90h258v-40h-298v75c-46 -52 -95 -100 -148 -145c53 -45 102 -93 148 -145v75h298'], + 0xE0E1: [360,-140,339,0,339,'339 320h-339v40h339v-40zM339 180v-40h-339v40h339'], + 0xE0E2: [450,-50,510,0,510,'510 250c-75 -59 -146 -125 -206 -200c-8 2 -15 3 -23 3s-16 -1 -23 -3v90h-258v40h298v-75c46 52 96 100 149 145c-53 45 -103 93 -149 145v-75h-298v40h258v90c7 -2 15 -3 23 -3s15 1 23 3c60 -75 131 -141 206 -200'], + 0xE0E3: [450,-50,482,0,482,'482 160h-282v-110c-59 73 -127 141 -200 200c73 59 141 127 200 200v-110h282v-180'], + 0xE0E4: [340,-160,321,0,321,'321 160h-321v180h321v-180'], + 0xE0E5: [340,-160,482,0,482,'482 160h-482v180h482v-180'], + 0xE0E6: [340,-160,482,0,482,'482 340v-180h-482v180h482'], + 0xE0E7: [340,-160,321,0,321,'321 160h-321v180h321v-180'], + 0xE0E8: [450,-50,482,0,482,'482 250c-73 -59 -141 -127 -200 -200v110h-282v180h282v110c59 -73 127 -141 200 -200'], + 0xE0E9: [481,0,560,190,370,'370 481v-481h-180v481h180'], + 0xE0EA: [322,0,560,190,370,'370 322v-322h-180v322h180'], + 0xE0EB: [482,0,560,80,480,'480 282h-110v-282h-180v281l-110 1c73 59 141 126 200 200c59 -74 127 -141 200 -200'], + 0xE0EC: [482,0,560,80,480,'480 200c-73 -59 -141 -127 -200 -200c-59 73 -127 141 -200 200h110v281l180 1v-282h110'], + 0xE0ED: [322,0,560,190,370,'370 0h-180v322h180v-322'], + 0xE0EE: [481,0,560,190,370,'370 481v-481h-180v481h180'], + 0xE0EF: [450,-50,486,0,486,'486 160h-286v-110c-59 73 -127 141 -200 200c73 59 141 127 200 200v-110h286v-180'], + 0xE0F0: [340,-160,323,0,323,'323 160h-323v180h323v-180'], + 0xE0F1: [450,-50,486,0,486,'486 250c-73 -59 -141 -127 -200 -200v110h-286v180h286v110c59 -73 127 -141 200 -200'], + 0xE0F2: [485,0,560,80,480,'480 200c-73 -60 -141 -127 -200 -200c-59 73 -127 140 -200 200h110v285h180v-286'], + 0xE0F3: [324,0,560,190,370,'370 0h-180v324h180v-324'], + 0xE0F4: [486,0,560,80,480,'480 286h-110v-286h-180v285l-110 1c73 59 141 126 200 200c59 -74 127 -141 200 -200'], + 0xE0F5: [-60,108,167,0,167,'167 -108h-167c2 8 3 16 3 24s-1 16 -3 24h167v-48'], + 0xE0F6: [-60,108,166,0,166,'166 -60v-48h-166v48h166'], + 0xE0F7: [-60,108,167,0,167,'167 -108h-167v48h167c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0xE0F8: [-60,216,167,0,167,'167 -108h-167c2 8 3 16 3 24s-1 16 -3 24h167v-48zM167 -216h-167c2 8 3 16 3 24s-1 16 -3 24h167v-48'], + 0xE0F9: [-60,216,166,0,166,'166 -60v-48h-166v48h166zM166 -168v-48h-166v48h166'], + 0xE0FA: [-60,216,167,0,167,'167 -108h-167v48h167c-2 -8 -3 -16 -3 -24s1 -16 3 -24zM167 -216h-167v48h167c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0xE0FB: [646,-598,167,0,167,'167 598h-167c2 8 3 16 3 24s-1 16 -3 24h167v-48'], + 0xE0FC: [646,-598,166,0,166,'166 646v-48h-166v48h166'], + 0xE0FD: [646,-598,167,0,167,'167 598h-167v48h167c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0xE0FE: [754,-598,167,0,167,'167 598h-167c2 8 3 16 3 24s-1 16 -3 24h167v-48zM167 706h-167c2 8 3 16 3 24s-1 16 -3 24h167v-48'], + 0xE0FF: [754,-598,166,0,166,'166 646v-48h-166v48h166zM166 754v-48h-166v48h166'], + 0xE100: [754,-598,167,0,167,'167 598h-167v48h167c-2 -8 -3 -16 -3 -24s1 -16 3 -24zM167 706h-167v48h167c-2 -8 -3 -16 -3 -24s1 -16 3 -24'], + 0xE101: [1208,0,439,143,343,'343 28c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-97 97 -172 378 -172 810v398h80v-398c0 -413 27 -689 120 -782'], + 0xE102: [794,0,439,143,223,'223 0h-80v794h80v-794'], + 0xE103: [1208,0,439,143,343,'343 1180c-93 -93 -120 -369 -120 -782v-398h-80v398c0 432 75 713 172 810c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0xE104: [1208,0,439,96,296,'296 810c0 -432 -75 -713 -172 -810c-3 6 -7 11 -12 16s-10 9 -16 12c93 93 120 369 120 782v398h80v-398'], + 0xE105: [794,0,439,216,296,'296 0h-80v794h80v-794'], + 0xE106: [1208,0,439,96,296,'296 0h-80v398c0 413 -27 689 -120 782c6 3 11 7 16 12s9 10 12 16c97 -97 172 -378 172 -810v-398'], + 0xE107: [809,0,521,143,425,'425 0h-282v809h40v-769h101v769h40v-769h101c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0xE108: [810,0,521,143,324,'183 810v-810h-40v810h40zM324 810v-810h-40v810h40'], + 0xE109: [809,0,521,143,425,'425 769h-101v-769h-40v769h-101v-769h-40v809h282c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0xE10A: [809,0,521,96,378,'378 0h-282c2 6 3 13 3 20s-1 14 -3 20h101v769h40v-769h101v769h40v-809'], + 0xE10B: [810,0,521,197,378,'237 810v-810h-40v810h40zM378 0h-40v810h40v-810'], + 0xE10C: [809,0,521,96,378,'378 809v-809h-40v769h-101v-769h-40v769h-101c2 6 3 13 3 20s-1 14 -3 20h282'], + 0xE10D: [740,-586,884,0,884,'884 740v-72h-428c-244 0 -394 -14 -418 -82c-6 4 -12 8 -18 10c-7 2 -13 3 -20 4c28 76 183 140 456 140h428'], + 0xE10E: [740,-668,874,0,874,'874 740v-72h-865h-9v72h9h865'], + 0xE10F: [815,-668,1769,0,1769,'1769 668h-447c-240 0 -387 44 -437 100c-51 -56 -198 -100 -437 -100h-448v72h448c267 0 417 7 417 75c6 -2 13 -3 20 -3s13 1 20 3c0 -68 150 -75 417 -75h447v-72'], + 0xE110: [740,-586,885,0,885,'885 600c-7 -1 -14 -2 -20 -4c-7 -2 -13 -6 -18 -10c-25 68 -175 82 -418 82h-429v72h429c272 0 428 -64 456 -140'], + 0xE111: [-116,270,884,0,884,'884 -198v-72h-428c-273 0 -428 64 -456 140c7 1 13 2 20 4c6 2 12 6 18 10c24 -68 174 -82 418 -82h428'], + 0xE112: [-198,270,874,0,874,'874 -270h-865h-9v72h9h865v-72'], + 0xE113: [-198,345,1769,0,1769,'1769 -270h-447c-267 0 -417 -7 -417 -75c-7 2 -13 3 -20 3s-14 -1 -20 -3c0 68 -150 75 -417 75h-448v72h448c239 0 386 -44 437 -100c50 56 197 100 437 100h447v-72'], + 0xE114: [-116,270,885,0,885,'885 -130c-28 -76 -184 -140 -456 -140h-429v72h429c243 0 393 14 418 82c5 -4 11 -8 18 -10c6 -2 13 -3 20 -4'], + 0xE115: [801,-569,1764,0,1764,'1764 729h-438c-725 0 -1181 -44 -1298 -160c-3 6 -7 11 -12 16s-10 9 -16 12c120 120 582 204 1326 204h438v-72'], + 0xE116: [801,-729,874,0,874,'874 729h-861h-13v72h13h861v-72'], + 0xE117: [801,-569,1764,0,1764,'1764 597c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-117 116 -573 160 -1298 160h-438v72h438c744 0 1206 -84 1326 -204'], + 0xE118: [-99,331,1764,0,1764,'1764 -331h-438c-744 0 -1206 84 -1326 204c6 3 11 7 16 12s9 10 12 16c117 -116 573 -160 1298 -160h438v-72'], + 0xE119: [-259,331,874,0,874,'874 -331h-861h-13v72h13h861v-72'], + 0xE11A: [-99,331,1764,0,1764,'1764 -127c-120 -120 -582 -204 -1326 -204h-438v72h438c725 0 1181 44 1298 160c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0xE11B: [788,-657,1297,0,1297,'1297 788v-73l-1257 1v-59c-6 2 -13 3 -20 3s-14 -2 -20 -3v131h1297'], + 0xE11C: [787,-715,865,0,865,'865 716l-865 -1v72h865v-71'], + 0xE11D: [788,-656,1296,0,1296,'1296 657c-6 1 -13 3 -20 3s-14 -2 -20 -4v59h-1256v72l1296 1v-131'], + 0xE11E: [-186,317,1297,0,1297,'1297 -245v-72h-1297v131c6 -2 13 -4 20 -4s14 2 20 4v-59h1257'], + 0xE11F: [-245,318,865,0,865,'865 -317l-865 -1v73h865v-72'], + 0xE120: [-186,318,1296,0,1296,'1296 -318h-1296v73h1256v59c6 -3 13 -4 20 -4s14 2 20 3v-131'], + 0xE121: [744,-522,1790,0,1790,'1790 664h-1568l-142 -142c-13 2 -27 3 -40 3s-27 -1 -40 -3l222 222h1568v-80'], + 0xE122: [744,-664,1194,0,1194,'1194 664h-1194v80h1194v-80'], + 0xE123: [744,-522,1790,0,1790,'1790 522c-13 2 -27 3 -40 3s-27 -1 -40 -3l-142 142h-1568v80h1568'], + 0xE124: [-52,274,1790,0,1790,'1790 -274h-1568l-222 222c13 -2 27 -3 40 -3s27 1 40 3l142 -142h1568v-80'], + 0xE125: [-194,274,1194,0,1194,'1194 -274h-1194v80h1194v-80'], + 0xE126: [-52,274,1790,0,1790,'1790 -52l-222 -222h-1568v80h1568l142 142c13 -2 27 -3 40 -3s27 1 40 3'], + 0xE127: [280,-220,200,0,200,'200 220h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60'], + 0xE128: [280,-220,200,0,200,'200 220h-200v60h200v-60'], + 0xE129: [280,-220,200,0,200,'200 220h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE12A: [796,0,408,80,328,'144 796v-796c-11 2 -21 3 -32 3s-21 -1 -32 -3v796h64zM328 796v-796c-11 2 -21 3 -32 3s-21 -1 -32 -3v796h64'], + 0xE12B: [796,0,408,80,328,'144 0h-64v796h64v-796zM328 0h-64v796h64v-796'], + 0xE12C: [796,0,408,80,328,'144 0h-64v796c11 -2 21 -3 32 -3s21 1 32 3v-796zM328 0h-64v796c11 -2 21 -3 32 -3s21 1 32 3v-796'], + 0xE12D: [500,0,200,0,200,'200 440h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60zM200 220h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60zM200 0h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60'], + 0xE12E: [500,0,200,0,200,'200 440h-200v60h200v-60zM200 220h-200v60h200v-60zM200 0h-200v60h200v-60'], + 0xE12F: [500,0,200,0,200,'200 440h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM200 220h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM200 0h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE130: [610,110,200,0,200,'200 550h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60zM200 330h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60zM200 110h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60zM200 -110h-200c2 10 3 20 3 30s-1 20 -3 30h200v-60'], + 0xE131: [610,110,200,0,200,'200 550h-200v60h200v-60zM200 330h-200v60h200v-60zM200 110h-200v60h200v-60zM200 -110h-200v60h200v-60'], + 0xE132: [610,110,200,0,200,'200 550h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM200 330h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM200 110h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM200 -110h-200v60h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0xE133: [1032,0,770,550,610,'610 0h-60v1032h60v-1032'], + 0xE134: [295,0,770,550,800,'800 235h-190v-235h-60v295h250v-60'], + 0xE135: [1161,0,1969,328,1889,'680 1137c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1083 1137c-8 -33 -16 -85 -12 -148h-79 c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1486 1137c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85 c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1889 1137c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133 c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24'], + 0xE136: [580,0,1969,328,1641,'432 580v-580h-104v580h104zM835 0h-104v580h104v-580zM1238 0h-104v580h104v-580zM1641 580v-580h-104v580h104'], + 0xE137: [1161,0,1969,80,1641,'432 1161v-10c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104zM835 1161v-10 c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104zM1238 1151c0 -307 0 -793 -35 -915 c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104v-10zM1641 1151c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69 c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104v-10'], + 0xE138: [1161,0,760,328,680,'680 1137c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24'], + 0xE139: [1161,0,760,80,432,'432 1161v-10c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104'], + 0xE13A: [1161,0,1163,328,1083,'680 1137c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1083 1137c-8 -33 -16 -85 -12 -148h-79 c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24'], + 0xE13B: [580,0,1163,328,835,'432 0h-104v580h104v-580zM835 0h-104v580h104v-580'], + 0xE13C: [1161,0,1163,80,835,'432 1161v-10c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104zM835 1151c0 -307 0 -793 -35 -915 c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104v-10'], + 0xE13D: [1161,0,1566,328,1486,'680 1137c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1083 1137c-8 -33 -16 -85 -12 -148h-79 c-2 50 -4 84 -30 85c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24zM1486 1137c-8 -33 -16 -85 -12 -148h-79c-2 50 -4 84 -30 85 c-61 3 -93 -38 -111 -133c-16 -91 -16 -620 -16 -931v-10h-104v10c0 307 0 793 35 915c8 28 13 52 26 69c38 49 66 78 104 120c19 21 74 47 104 47c29 0 59 -11 83 -24'], + 0xE13E: [580,0,1566,328,1238,'432 580v-580h-104v580h104zM835 0h-104v580h104v-580zM1238 580v-580h-104v580h104'], + 0xE13F: [1161,0,1566,80,1238,'432 1151c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104v-10zM835 1161v-10 c0 -307 0 -793 -35 -915c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104zM1238 1161v-10c0 -307 0 -793 -35 -915 c-8 -28 -13 -52 -26 -69c-38 -49 -66 -78 -104 -120c-19 -21 -74 -47 -104 -47c-29 0 -59 11 -83 24c8 33 16 85 12 148h79c2 -50 4 -84 30 -85c61 -3 93 38 111 133c16 91 16 620 16 931v10h104'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size6/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Symbols/Regular/Main.js new file mode 100644 index 0000000..a882152 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Symbols/Regular/Main.js @@ -0,0 +1,80 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'GyrePagellaMathJax_Symbols', + id: 'GYREPAGELLASYMBOLS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2300: [564,64,788,80,708,'634 250c0 62 -18 116 -50 156l-346 -346c40 -32 94 -50 156 -50c144 0 240 96 240 240zM550 440c-40 32 -94 50 -156 50c-144 0 -240 -96 -240 -240c0 -62 18 -116 50 -156zM708 530l-80 -80c42 -51 66 -120 66 -200c0 -180 -120 -300 -300 -300c-80 0 -149 24 -200 66 l-80 -80c-4 7 -9 13 -15 19s-12 11 -19 15l80 80c-42 51 -66 120 -66 200c0 180 120 300 300 300c80 0 149 -24 200 -66l80 80c4 -7 9 -13 15 -19s12 -11 19 -15'], + 0x2305: [444,-56,760,80,680,'680 384h-600c2 10 3 20 3 30c0 11 -1 21 -3 30h600c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30zM546 56c-12 2 -24 3 -36 3s-24 -1 -36 -3l-94 145l-94 -145c-12 2 -24 3 -36 3s-24 -1 -36 -3l136 208c10 -2 20 -3 30 -3s20 1 30 3'], + 0x2306: [554,54,760,80,680,'680 274h-600c2 10 3 20 3 30c0 11 -1 21 -3 30h600c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30zM680 494h-600c2 10 3 20 3 30c0 11 -1 21 -3 30h600c-2 -9 -3 -19 -3 -30c0 -10 1 -20 3 -30zM546 -54c-12 2 -24 3 -36 3s-24 -1 -36 -3l-94 145l-94 -145c-12 2 -24 3 -36 3 s-24 -1 -36 -3l136 208c10 -2 20 -3 30 -3s20 1 30 3'], + 0x2310: [280,0,790,80,710,'710 220h-570v-220c-10 2 -20 3 -30 3s-20 -1 -30 -3v250c6 4 12 8 17 13s9 11 13 17h600c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x2319: [500,-220,790,80,710,'710 220h-600c-4 6 -8 12 -13 17s-11 9 -17 13v250c10 -2 20 -3 30 -3s20 1 30 3v-220h570c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x231C: [680,-450,390,80,310,'310 620h-170v-170c-10 2 -20 3 -30 3s-20 -1 -30 -3v200c6 4 12 8 17 13s9 11 13 17h200c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x231D: [680,-450,390,80,310,'310 450c-10 2 -20 3 -30 3s-20 -1 -30 -3v170h-170c2 10 3 20 3 30s-1 20 -3 30h200c4 -6 8 -12 13 -17s11 -9 17 -13v-200'], + 0x231E: [50,180,390,80,310,'310 -180h-200c-4 6 -8 12 -13 17s-11 9 -17 13v200c10 -2 20 -3 30 -3s20 1 30 3v-170h170c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x231F: [50,180,390,80,310,'310 -150c-6 -4 -12 -8 -17 -13s-9 -11 -13 -17h-200c2 10 3 20 3 30s-1 20 -3 30h170v170c10 -2 20 -3 30 -3s20 1 30 3v-200'], + 0x2320: [1212,0,737,318,657,'657 1189c-8 -31 -15 -82 -11 -143h-76c-3 48 -4 81 -29 82c-59 3 -90 -36 -107 -127c-16 -88 -16 -667 -16 -1001h-100c0 331 0 868 34 986c8 26 13 49 25 65c37 47 64 75 100 115c18 21 71 46 100 46c28 0 57 -10 80 -23'], + 0x2321: [1194,18,737,80,418,'418 1194c0 -331 0 -868 -33 -986c-8 -26 -13 -49 -25 -65c-37 -47 -64 -75 -100 -115c-18 -21 -71 -46 -100 -46c-28 0 -57 10 -80 23c8 31 15 82 11 143h76c3 -48 4 -81 29 -82c59 -3 90 36 107 127c15 88 15 667 15 1001h100'], + 0x2329: [658,158,391,80,311,'311 -142c-7 -1 -13 -2 -19 -5c-7 -3 -12 -7 -17 -11l-195 408l195 408c5 -4 10 -8 17 -11c6 -3 12 -4 19 -5l-165 -392'], + 0x232A: [658,158,391,80,311,'311 250l-195 -408c-5 4 -10 8 -17 11c-6 3 -12 4 -19 5l165 392l-165 392c7 1 13 2 19 5c7 3 12 7 17 11'], + 0x239B: [1208,0,679,143,583,'583 1180c-245 -246 -360 -593 -360 -981v-199h-80v199c0 404 156 753 412 1009c3 -6 7 -11 12 -16s10 -9 16 -12'], + 0x239C: [396,0,679,143,223,'223 0h-80v396h80v-396'], + 0x239D: [1208,0,679,143,583,'583 28c-6 -3 -11 -7 -16 -12s-9 -10 -12 -16c-256 256 -412 605 -412 1009v199h80v-199c0 -388 115 -735 360 -981'], + 0x239E: [1208,0,679,96,536,'536 0h-80v199c0 388 -114 735 -360 981c6 3 11 7 16 12s9 10 12 16c257 -256 412 -605 412 -1009v-199'], + 0x239F: [396,0,679,456,536,'536 0h-80v396h80v-396'], + 0x23A0: [1208,0,679,96,536,'536 1009c0 -404 -155 -753 -412 -1009c-3 6 -7 11 -12 16s-10 9 -16 12c246 246 360 593 360 981v199h80v-199'], + 0x23A1: [1214,0,521,143,425,'425 1214c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-202v-1174h-80v1214h282'], + 0x23A2: [810,0,521,143,223,'223 810v-810h-80v810h80'], + 0x23A3: [1214,0,521,143,425,'425 0h-282v1214h80v-1174h202c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x23A4: [1214,0,521,96,378,'378 0h-80v1174h-202c2 6 3 13 3 20s-1 14 -3 20h282v-1214'], + 0x23A5: [810,0,521,298,378,'378 0h-80v810h80v-810'], + 0x23A6: [1214,0,521,96,378,'378 0h-282c2 6 3 13 3 20s-1 14 -3 20h202v1174h80v-1214'], + 0x23A7: [616,0,589,252,493,'493 578c-115 -31 -161 -135 -161 -279v-299h-80v299c0 176 91 280 231 317c0 -6 0 -13 2 -20c2 -6 5 -13 8 -18'], + 0x23A8: [1194,0,589,96,332,'332 0h-80v299c0 173 -42 278 -156 278c2 6 3 13 3 20s-1 14 -3 20c114 0 156 105 156 278v299h80v-299c0 -161 -53 -259 -138 -298c85 -39 138 -137 138 -298v-299'], + 0x23A9: [616,0,589,252,493,'493 39c-3 -6 -6 -12 -8 -19c-2 -6 -2 -13 -2 -20c-140 38 -231 142 -231 317v299h80v-299c0 -144 46 -248 161 -278'], + 0x23AA: [596,0,589,257,337,'337 596v-596h-80v596h80'], + 0x23AB: [616,0,589,96,337,'337 0h-80v299c0 144 -46 248 -161 279c4 5 6 12 8 18c2 7 3 14 2 20c141 -37 231 -141 231 -317v-299'], + 0x23AC: [1194,0,589,257,493,'493 577c-114 0 -156 -105 -156 -278v-299h-80v299c0 161 53 259 138 298c-85 39 -138 137 -138 298v299h80v-299c0 -173 42 -278 156 -278c-2 -6 -3 -13 -3 -20s1 -14 3 -20'], + 0x23AD: [616,0,589,96,337,'337 317c0 -175 -90 -279 -231 -317c1 7 0 14 -2 20c-2 7 -4 13 -8 19c115 30 161 134 161 278v299h80v-299'], + 0x23AE: [580,0,760,328,432,'432 580v-580h-104v580h104'], + 0x23B2: [829,0,1408,80,1248,'1248 632h-42l-7 86c-4 48 -37 57 -373 57h-599l470 -775h-136l-481 794l5 35l275 -4l888 4c-3 -45 -4 -67 -4 -99c0 -31 1 -53 4 -98'], + 0x23B3: [896,4,1408,80,1328,'1328 259c-6 -66 -7 -158 -7 -263l-545 4l-696 -4v34l515 811l-34 55h136l-504 -794h722c339 0 356 7 364 88l8 69h41'], + 0x23B7: [1623,0,770,120,610,'610 0c-13 2 -27 3 -40 3c-14 0 -27 -1 -41 -3l-342 1416h-67v60h153l277 -1143v1290h60v-1623'], + 0x27C2: [650,0,760,80,680,'680 0h-600c2 10 3 20 3 30s-1 20 -3 30h270v590c10 -2 20 -3 30 -3s20 1 30 3v-590h270c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x27D8: [650,150,860,80,780,'780 -150h-700c2 10 3 20 3 30s-1 20 -3 30h320v740c10 -2 20 -3 30 -3s20 1 30 3v-740h320c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x27D9: [650,150,860,80,780,'780 590h-320v-740c-10 2 -20 3 -30 3s-20 -1 -30 -3v740h-320c2 10 3 20 3 30s-1 20 -3 30h700c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x27DA: [650,150,1203,80,1123,'1123 110h-400v-260c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-260h400c-2 -10 -3 -20 -3 -30s1 -20 3 -30h-400v-160h400c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM543 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3v260h-400c-2 10 -3 20 -3 30s1 20 3 30 h400v160h-400c-2 10 -3 20 -3 30s1 20 3 30h400v260c10 -2 20 -3 30 -3s20 1 30 3v-800'], + 0x27DB: [650,150,1203,80,1123,'1123 220h-400v-370c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-370h400c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM543 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3v370h-400c-2 10 -3 20 -3 30s1 20 3 30h400v370c10 -2 20 -3 30 -3s20 1 30 3v-800'], + 0x27DC: [410,-90,920,80,840,'840 220h-442c-12 -79 -72 -130 -158 -130c-96 0 -160 64 -160 160s64 160 160 160c86 0 146 -51 158 -130h442c-2 -10 -3 -20 -3 -30s1 -20 3 -30zM352 250c0 67 -45 112 -112 112s-112 -45 -112 -112s45 -112 112 -112s112 45 112 112'], + 0x27DD: [650,150,1360,80,1280,'1280 220h-1140v-370c-10 2 -20 3 -30 3s-20 -1 -30 -3v800c10 -2 20 -3 30 -3s20 1 30 3v-370h1140c-2 -10 -3 -20 -3 -30s1 -20 3 -30'], + 0x27DE: [650,150,1360,80,1280,'1280 -150c-10 2 -20 3 -30 3s-20 -1 -30 -3v370h-1140c2 10 3 20 3 30s-1 20 -3 30h1140v370c10 -2 20 -3 30 -3s20 1 30 3v-800'], + 0x27E0: [576,76,595,80,515,'515 234l-192 -310c-8 2 -17 3 -25 3c-9 0 -18 -1 -26 -3l-192 310c2 5 3 11 3 16s-1 11 -3 16l192 310c8 -2 17 -3 26 -3c8 0 17 1 26 3l191 -310c-2 -5 -3 -11 -3 -16s1 -11 3 -16zM436 280l-138 224l-139 -224h277zM436 220h-277l139 -224'], + 0x27E1: [471,-29,603,80,523,'442 250c-58 34 -107 82 -141 140c-33 -58 -82 -106 -140 -140c58 -34 107 -82 140 -140c34 58 83 106 141 140zM523 222c-90 -33 -161 -104 -193 -193c-10 2 -19 3 -29 3c-9 0 -18 -1 -28 -3c-32 89 -103 160 -193 193c2 9 3 19 3 28s-1 19 -3 28c90 33 161 104 193 193 c10 -2 19 -3 28 -3c10 0 19 1 28 3c33 -89 104 -160 194 -193c-2 -9 -3 -19 -3 -28s1 -19 3 -28'], + 0x27E2: [471,-29,698,80,618,'618 222c-90 -33 -160 -104 -193 -193c-9 2 -19 3 -28 3c-10 0 -19 -1 -28 -3c-32 88 -101 158 -189 191h-100c2 10 3 20 3 30s-1 20 -3 30h101c87 34 156 103 188 191c9 -2 18 -3 28 -3c9 0 19 1 28 3c33 -89 103 -160 193 -193c-2 -9 -3 -19 -3 -28s1 -19 3 -28z M537 250c-58 34 -107 82 -140 140c-34 -58 -82 -106 -141 -140c59 -34 107 -82 141 -140c33 58 82 106 140 140'], + 0x27E3: [471,-29,698,80,618,'618 220h-100c-88 -34 -156 -103 -188 -191c-10 2 -19 3 -29 3c-9 0 -18 -1 -28 -3c-32 89 -103 160 -193 193c2 9 3 19 3 28s-1 19 -3 28c90 33 161 104 193 193c10 -2 19 -3 28 -3c10 0 19 1 28 3c33 -88 102 -158 189 -191h100c-2 -10 -3 -20 -3 -30s1 -20 3 -30z M442 250c-58 34 -107 82 -141 140c-33 -58 -82 -106 -140 -140c58 -34 107 -82 140 -140c34 58 83 106 141 140'], + 0x27E6: [670,170,430,120,350,'350 -130c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-230v840h230c-2 -6 -3 -13 -3 -20s1 -14 3 -20h-75v-760h75zM235 630h-75v-760h75v760'], + 0x27E7: [670,170,430,80,310,'310 670v-840h-230c2 6 3 13 3 20s-1 14 -3 20h75v760h-75c2 6 3 13 3 20s-1 14 -3 20h230zM270 -130v760h-75v-760h75'], + 0x27EA: [658,158,611,80,531,'311 -142c-7 -1 -13 -2 -19 -5c-7 -3 -12 -7 -17 -11l-195 408l195 408c5 -4 10 -8 17 -11c6 -3 12 -4 19 -5l-165 -392zM531 -142c-7 -1 -14 -2 -20 -5s-12 -7 -17 -11l-194 408l194 408c5 -4 11 -8 17 -11s13 -4 20 -5l-166 -392'], + 0x27EB: [658,158,611,80,531,'531 250l-195 -408c-5 4 -11 8 -17 11s-13 4 -19 5l165 392l-165 392c6 1 13 2 19 5s12 7 17 11zM311 250l-195 -408c-5 4 -10 8 -17 11c-6 3 -12 4 -19 5l165 392l-165 392c7 1 13 2 19 5c7 3 12 7 17 11'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Symbols/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Variants/Regular/Main.js new file mode 100644 index 0000000..5ccd3d3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/Variants/Regular/Main.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyrePagellaMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'GyrePagellaMathJax_Variants', + id: 'GYREPAGELLAVARIANTS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2032: [518,-102,347,65,282,'282 502l-157 -379l-41 -21l-19 14l97 365l103 37'], + 0x2033: [518,-102,587,65,522,'282 502l-157 -379l-41 -21l-19 14l97 365l103 37zM522 502l-157 -379l-41 -21l-19 14l97 365l103 37'], + 0x2034: [518,-102,827,65,762,'282 502l-157 -379l-41 -21l-19 14l97 365l103 37zM522 502l-157 -379l-41 -21l-19 14l97 365l103 37zM762 502l-157 -379l-41 -21l-19 14l97 365l103 37'], + 0x2035: [518,-102,347,65,282,'282 116l-19 -14l-41 21l-157 379l17 16l103 -37'], + 0x2036: [518,-102,587,65,522,'282 116l-19 -14l-41 21l-157 379l17 16l103 -37zM522 116l-19 -14l-41 21l-157 379l17 16l103 -37'], + 0x2037: [518,-102,827,65,762,'282 116l-19 -14l-41 21l-157 379l17 16l103 -37zM522 116l-19 -14l-41 21l-157 379l17 16l103 -37zM762 116l-19 -14l-41 21l-157 379l17 16l103 -37'], + 0x2057: [518,-102,1067,65,1002,'282 502l-157 -379l-41 -21l-19 14l97 365l103 37zM522 502l-157 -379l-41 -21l-19 14l97 365l103 37zM762 502l-157 -379l-41 -21l-19 14l97 365l103 37zM1002 502l-157 -379l-41 -21l-19 14l97 365l103 37'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Variants/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/fontdata-extra.js new file mode 100644 index 0000000..3e095e2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/fontdata-extra.js @@ -0,0 +1,788 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/fontdata-extra.js + * + * Adds extra stretchy characters to the Gyre-Pagella fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG) { + var VERSION = "2.3"; + + var DELIMITERS = SVG.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "GyrePagellaMathJax_Alphabets", + ARROWS = "GyrePagellaMathJax_Arrows", + DOUBLESTRUCK = "GyrePagellaMathJax_DoubleStruck", + FRAKTUR = "GyrePagellaMathJax_Fraktur", + LATIN = "GyrePagellaMathJax_Latin", + MAIN = "GyrePagellaMathJax_Main", + MARKS = "GyrePagellaMathJax_Marks", + MISC = "GyrePagellaMathJax_Misc", + MONOSPACE = "GyrePagellaMathJax_Monospace", + NONUNICODE = "GyrePagellaMathJax_NonUnicode", + NORMAL = "GyrePagellaMathJax_Normal", + OPERATORS = "GyrePagellaMathJax_Operators", + SANSSERIF = "GyrePagellaMathJax_SansSerif", + SCRIPT = "GyrePagellaMathJax_Script", + SHAPES = "GyrePagellaMathJax_Shapes", + SIZE1 = "GyrePagellaMathJax_Size1", + SIZE2 = "GyrePagellaMathJax_Size2", + SIZE3 = "GyrePagellaMathJax_Size3", + SIZE4 = "GyrePagellaMathJax_Size4", + SIZE5 = "GyrePagellaMathJax_Size5", + SIZE6 = "GyrePagellaMathJax_Size6", + SYMBOLS = "GyrePagellaMathJax_Symbols", + VARIANTS = "GyrePagellaMathJax_Variants"; + + var delim = { + 0x306: + { + dir: H, + HW: [[362,MAIN], [631,SIZE1], [752,SIZE2], [897,SIZE3], [1070,SIZE4], [1279,SIZE5], [1528,SIZE6]] + }, + 0x311: + { + dir: H, + HW: [[362,MARKS], [631,SIZE1], [752,SIZE2], [897,SIZE3], [1070,SIZE4], [1279,SIZE5], [1528,SIZE6]] + }, + 0x32C: + { + dir: H, + HW: [[348,MARKS], [613,SIZE1], [731,SIZE2], [874,SIZE3], [1045,SIZE4], [1251,SIZE5], [1498,SIZE6]] + }, + 0x32D: + { + dir: H, + HW: [[348,MARKS], [613,SIZE1], [731,SIZE2], [874,SIZE3], [1045,SIZE4], [1251,SIZE5], [1498,SIZE6]] + }, + 0x32E: + { + dir: H, + HW: [[362,MARKS], [631,SIZE1], [752,SIZE2], [897,SIZE3], [1070,SIZE4], [1279,SIZE5], [1528,SIZE6]] + }, + 0x32F: + { + dir: H, + HW: [[362,MARKS], [631,SIZE1], [752,SIZE2], [897,SIZE3], [1070,SIZE4], [1279,SIZE5], [1528,SIZE6]] + }, + 0x330: + { + dir: H, + HW: [[342,MARKS], [608,SIZE1], [727,SIZE2], [870,SIZE3], [1042,SIZE4], [1247,SIZE5], [1496,SIZE6]] + }, + 0x333: + { + dir: H, + HW: [[333,MARKS], [500,SIZE1]], + stretch: {left:[0xE0F8,SIZE6], rep:[0xE0F9,SIZE6], right:[0xE0FA,SIZE6]} + }, + 0x33F: + { + dir: H, + HW: [[333,MARKS], [500,SIZE1]], + stretch: {left:[0xE0FE,SIZE6], rep:[0xE0FF,SIZE6], right:[0xE100,SIZE6]} + }, + 0x20D0: + { + dir: H, + HW: [[384,MARKS], [510,SIZE1]], + stretch: {left:[0xE008,SIZE6], rep:[0xE009,SIZE6], right:[0xE00A,SIZE6]} + }, + 0x20D1: + { + dir: H, + HW: [[384,MARKS], [510,SIZE1]], + stretch: {left:[0xE00B,SIZE6], rep:[0xE00C,SIZE6], right:[0xE00D,SIZE6]} + }, + 0x20D6: + { + dir: H, + HW: [[386,MARKS], [510,SIZE1]], + stretch: {left:[0xE00E,SIZE6], rep:[0xE00F,SIZE6], right:[0xE010,SIZE6]} + }, + 0x20D7: + { + dir: H, + HW: [[386,MAIN], [510,SIZE1]], + stretch: {left:[0xE011,SIZE6], rep:[0xE012,SIZE6], right:[0xE013,SIZE6]} + }, + 0x20E1: + { + dir: H, + HW: [[458,MARKS], [582,SIZE1]], + stretch: {left:[0xE014,SIZE6], rep:[0xE015,SIZE6], right:[0xE016,SIZE6]} + }, + 0x20E9: + { + dir: H, + HW: [[367,MARKS], [740,SIZE1], [1113,SIZE2], [1484,SIZE3], [1855,SIZE4], [2226,SIZE5], [2593,SIZE6]], + stretch: {left:[0xE11B,SIZE6], rep:[0xE11C,SIZE6], right:[0xE11D,SIZE6]} + }, + 0x20EC: + { + dir: H, + HW: [[384,MARKS], [510,SIZE1]], + stretch: {left:[0xE017,SIZE6], rep:[0xE018,SIZE6], right:[0xE019,SIZE6]} + }, + 0x20ED: + { + dir: H, + HW: [[384,MARKS], [510,SIZE1]], + stretch: {left:[0xE01A,SIZE6], rep:[0xE01B,SIZE6], right:[0xE01C,SIZE6]} + }, + 0x20EE: + { + dir: H, + HW: [[386,MARKS], [510,SIZE1]], + stretch: {left:[0xE01D,SIZE6], rep:[0xE01E,SIZE6], right:[0xE01F,SIZE6]} + }, + 0x20EF: + { + dir: H, + HW: [[386,MARKS], [510,SIZE1]], + stretch: {left:[0xE020,SIZE6], rep:[0xE021,SIZE6], right:[0xE022,SIZE6]} + }, + 0x2196: + { + dir: V, + HW: [[558,MAIN], [876,SIZE1]] + }, + 0x2197: + { + dir: V, + HW: [[558,MAIN], [876,SIZE1]] + }, + 0x2198: + { + dir: V, + HW: [[558,MAIN], [876,SIZE1]] + }, + 0x2199: + { + dir: V, + HW: [[558,MAIN], [876,SIZE1]] + }, + 0x219A: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE02F,SIZE6], rep:[0xE030,SIZE6], mid:[0xE031,SIZE6], right:[0xE032,SIZE6]} + }, + 0x219B: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE033,SIZE6], rep:[0xE034,SIZE6], mid:[0xE035,SIZE6], right:[0xE036,SIZE6]} + }, + 0x219E: + { + dir: H, + HW: [[835,MAIN], [1285,SIZE1]], + stretch: {left:[0xE041,SIZE6], rep:[0xE042,SIZE6], right:[0xE043,SIZE6]} + }, + 0x219F: + { + dir: V, + HW: [[835,ARROWS], [1285,SIZE1]], + stretch: {bot:[0xE047,SIZE6], ext:[0xE048,SIZE6], top:[0xE049,SIZE6]} + }, + 0x21A0: + { + dir: H, + HW: [[835,MAIN], [1285,SIZE1]], + stretch: {left:[0xE044,SIZE6], rep:[0xE045,SIZE6], right:[0xE046,SIZE6]} + }, + 0x21A1: + { + dir: V, + HW: [[835,ARROWS], [1285,SIZE1]], + stretch: {bot:[0xE04A,SIZE6], ext:[0xE04B,SIZE6], top:[0xE04C,SIZE6]} + }, + 0x21A2: + { + dir: H, + HW: [[845,MAIN], [1295,SIZE1]], + stretch: {left:[0xE04D,SIZE6], rep:[0xE04E,SIZE6], right:[0xE04F,SIZE6]} + }, + 0x21A3: + { + dir: H, + HW: [[845,MAIN], [1295,SIZE1]], + stretch: {left:[0xE050,SIZE6], rep:[0xE051,SIZE6], right:[0xE052,SIZE6]} + }, + 0x21A5: + { + dir: V, + HW: [[760,ARROWS], [1210,SIZE1]], + stretch: {bot:[0xE059,SIZE6], ext:[0xE05A,SIZE6], top:[0xE05B,SIZE6]} + }, + 0x21A7: + { + dir: V, + HW: [[760,ARROWS], [1210,SIZE1]], + stretch: {bot:[0xE05C,SIZE6], ext:[0xE05D,SIZE6], top:[0xE05E,SIZE6]} + }, + 0x21A9: + { + dir: H, + HW: [[790,MAIN], [1240,SIZE1]], + stretch: {left:[0xE062,SIZE6], rep:[0xE063,SIZE6], right:[0xE064,SIZE6]} + }, + 0x21AA: + { + dir: H, + HW: [[790,MAIN], [1240,SIZE1]], + stretch: {left:[0xE05F,SIZE6], rep:[0xE060,SIZE6], right:[0xE061,SIZE6]} + }, + 0x21AB: + { + dir: H, + HW: [[790,MAIN], [1240,SIZE1]], + stretch: {left:[0xE068,SIZE6], rep:[0xE069,SIZE6], right:[0xE06A,SIZE6]} + }, + 0x21AC: + { + dir: H, + HW: [[790,MAIN], [1240,SIZE1]], + stretch: {left:[0xE065,SIZE6], rep:[0xE066,SIZE6], right:[0xE067,SIZE6]} + }, + 0x21AD: + { + dir: H, + HW: [[845,MAIN], [1295,SIZE1]] + }, + 0x21AE: + { + dir: H, + HW: [[845,MAIN], [1295,SIZE1]], + stretch: {left:[0xE03D,SIZE6], rep:[0xE03E,SIZE6], mid:[0xE03F,SIZE6], right:[0xE040,SIZE6]} + }, + 0x21B0: + { + dir: V, + HW: [[645,MAIN], [915,SIZE1]] + }, + 0x21B1: + { + dir: V, + HW: [[644,MAIN], [915,SIZE1]] + }, + 0x21B2: + { + dir: V, + HW: [[645,ARROWS], [915,SIZE1]] + }, + 0x21B3: + { + dir: V, + HW: [[644,ARROWS], [915,SIZE1]] + }, + 0x21B6: + { + dir: H, + HW: [[685,MAIN], [1022,SIZE1]] + }, + 0x21B7: + { + dir: H, + HW: [[685,MAIN], [1022,SIZE1]] + }, + 0x21BC: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE06B,SIZE6], rep:[0xE06C,SIZE6], right:[0xE06D,SIZE6]} + }, + 0x21BD: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE071,SIZE6], rep:[0xE072,SIZE6], right:[0xE073,SIZE6]} + }, + 0x21BE: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE077,SIZE6], ext:[0xE078,SIZE6], top:[0xE079,SIZE6]} + }, + 0x21BF: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE07D,SIZE6], ext:[0xE07E,SIZE6], top:[0xE07F,SIZE6]} + }, + 0x21C0: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE06E,SIZE6], rep:[0xE06F,SIZE6], right:[0xE070,SIZE6]} + }, + 0x21C1: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE074,SIZE6], rep:[0xE075,SIZE6], right:[0xE076,SIZE6]} + }, + 0x21C2: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE07A,SIZE6], ext:[0xE07B,SIZE6], top:[0xE07C,SIZE6]} + }, + 0x21C3: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE080,SIZE6], ext:[0xE081,SIZE6], top:[0xE082,SIZE6]} + }, + 0x21C4: + { + dir: H, + HW: [[770,MAIN], [1220,SIZE1]], + stretch: {left:[0xE083,SIZE6], rep:[0xE084,SIZE6], right:[0xE085,SIZE6]} + }, + 0x21C5: + { + dir: V, + HW: [[770,ARROWS], [1220,SIZE1]], + stretch: {bot:[0xE089,SIZE6], ext:[0xE08A,SIZE6], top:[0xE08B,SIZE6]} + }, + 0x21C6: + { + dir: H, + HW: [[770,MAIN], [1220,SIZE1]], + stretch: {left:[0xE086,SIZE6], rep:[0xE087,SIZE6], right:[0xE088,SIZE6]} + }, + 0x21C7: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE08F,SIZE6], rep:[0xE090,SIZE6], right:[0xE091,SIZE6]} + }, + 0x21C8: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE095,SIZE6], ext:[0xE096,SIZE6], top:[0xE097,SIZE6]} + }, + 0x21C9: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE092,SIZE6], rep:[0xE093,SIZE6], right:[0xE094,SIZE6]} + }, + 0x21CA: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE098,SIZE6], ext:[0xE099,SIZE6], top:[0xE09A,SIZE6]} + }, + 0x21CB: + { + dir: H, + HW: [[769,MAIN], [1219,SIZE1]], + stretch: {left:[0xE0A1,SIZE6], rep:[0xE0A2,SIZE6], right:[0xE0A3,SIZE6]} + }, + 0x21CC: + { + dir: H, + HW: [[769,MAIN], [1219,SIZE1]], + stretch: {left:[0xE0A4,SIZE6], rep:[0xE0A5,SIZE6], right:[0xE0A6,SIZE6]} + }, + 0x21CD: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE0B9,SIZE6], rep:[0xE0BA,SIZE6], mid:[0xE0BB,SIZE6], right:[0xE0BC,SIZE6]} + }, + 0x21CE: + { + dir: H, + HW: [[845,MAIN], [1295,SIZE1]], + stretch: {left:[0xE0C1,SIZE6], rep:[0xE0C2,SIZE6], mid:[0xE0C3,SIZE6], right:[0xE0C4,SIZE6]} + }, + 0x21CF: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE0BD,SIZE6], rep:[0xE0BE,SIZE6], mid:[0xE0BF,SIZE6], right:[0xE0C0,SIZE6]} + }, + 0x21D6: + { + dir: V, + HW: [[622,ARROWS], [940,SIZE1]] + }, + 0x21D7: + { + dir: V, + HW: [[622,ARROWS], [940,SIZE1]] + }, + 0x21D8: + { + dir: V, + HW: [[622,ARROWS], [940,SIZE1]] + }, + 0x21D9: + { + dir: V, + HW: [[622,ARROWS], [940,SIZE1]] + }, + 0x21DA: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE0CB,SIZE6], rep:[0xE0CC,SIZE6], right:[0xE0CD,SIZE6]} + }, + 0x21DB: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE0CE,SIZE6], rep:[0xE0CF,SIZE6], right:[0xE0D0,SIZE6]} + }, + 0x21DC: + { + dir: H, + HW: [[760,ARROWS], [1210,SIZE1]] + }, + 0x21DD: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]] + }, + 0x21E6: + { + dir: H, + HW: [[887,ARROWS], [1337,SIZE1]], + stretch: {left:[0xE0D1,SIZE6], rep:[0xE0D2,SIZE6], right:[0xE0D3,SIZE6]} + }, + 0x21E7: + { + dir: V, + HW: [[887,ARROWS], [1337,SIZE1]], + stretch: {bot:[0xE0D7,SIZE6], ext:[0xE0D8,SIZE6], top:[0xE0D9,SIZE6]} + }, + 0x21E8: + { + dir: H, + HW: [[887,ARROWS], [1337,SIZE1]], + stretch: {left:[0xE0D4,SIZE6], rep:[0xE0D5,SIZE6], right:[0xE0D6,SIZE6]} + }, + 0x21E9: + { + dir: V, + HW: [[887,ARROWS], [1337,SIZE1]], + stretch: {bot:[0xE0DA,SIZE6], ext:[0xE0DB,SIZE6], top:[0xE0DC,SIZE6]} + }, + 0x21F3: + { + dir: V, + HW: [[910,ARROWS], [1360,SIZE1]], + stretch: {bot:[0xE0DD,SIZE6], ext:[0xE0DE,SIZE6], top:[0xE0DF,SIZE6]} + }, + 0x21F5: + { + dir: V, + HW: [[770,ARROWS], [1220,SIZE1]], + stretch: {bot:[0xE08C,SIZE6], ext:[0xE08D,SIZE6], top:[0xE08E,SIZE6]} + }, + 0x21F6: + { + dir: H, + HW: [[760,ARROWS], [1210,SIZE1]], + stretch: {left:[0xE09B,SIZE6], rep:[0xE09C,SIZE6], right:[0xE09D,SIZE6]} + }, + 0x220F: + { + dir: V, + HW: [[1000,OPERATORS], [1442,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[1000,OPERATORS], [1442,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[1000,OPERATORS], [1442,SIZE1]] + }, + 0x222B: + { + dir: V, + HW: [[1092,MAIN], [2025,SIZE1]], + stretch: {top:[0xE138,SIZE6], ext:[0x23AE,SYMBOLS], bot:[0xE139,SIZE6]} + }, + 0x222C: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]], + stretch: {top:[0xE13A,SIZE6], ext:[0xE13B,SIZE6], bot:[0xE13C,SIZE6]} + }, + 0x222D: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]], + stretch: {top:[0xE13D,SIZE6], ext:[0xE13E,SIZE6], bot:[0xE13F,SIZE6]} + }, + 0x222E: + { + dir: V, + HW: [[1092,OPERATORS,null,0x222F], [2025,SIZE1]] + }, + 0x222F: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2230: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2231: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2232: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2233: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2261: + { + dir: H, + HW: [[600,MAIN]], + stretch: {left:[0xE12D,SIZE6], rep:[0xE12E,SIZE6], right:[0xE12F,SIZE6]} + }, + 0x2263: + { + dir: H, + HW: [[600,OPERATORS]], + stretch: {left:[0xE130,SIZE6], rep:[0xE131,SIZE6], right:[0xE132,SIZE6]} + }, + 0x22A2: + { + dir: V, + HW: [[650,MAIN], [800,SIZE1]] + }, + 0x22A3: + { + dir: V, + HW: [[650,MAIN], [800,SIZE1]] + }, + 0x22A4: + { + dir: V, + HW: [[650,MAIN], [800,SIZE1]] + }, + 0x22A5: + { + dir: V, + HW: [[650,MAIN], [800,SIZE1]] + }, + 0x22C0: + { + dir: V, + HW: [[974,OPERATORS], [1411,SIZE1]] + }, + 0x22C1: + { + dir: V, + HW: [[974,OPERATORS], [1411,SIZE1]] + }, + 0x22C2: + { + dir: V, + HW: [[978,OPERATORS], [1402,SIZE1]] + }, + 0x22C3: + { + dir: V, + HW: [[978,OPERATORS], [1402,SIZE1]] + }, + 0x23B4: + { + dir: H, + HW: [[367,MAIN], [740,SIZE1], [1113,SIZE2], [1484,SIZE3], [1855,SIZE4], [2226,SIZE5], [2593,SIZE6]], + stretch: {left:[0xE11B,SIZE6], rep:[0xE11C,SIZE6], right:[0xE11D,SIZE6]} + }, + 0x23B5: + { + dir: H, + HW: [[367,MAIN], [740,SIZE1], [1113,SIZE2], [1484,SIZE3], [1855,SIZE4], [2226,SIZE5], [2593,SIZE6]], + stretch: {left:[0xE11E,SIZE6], rep:[0xE11F,SIZE6], right:[0xE120,SIZE6]} + }, + 0x23DC: + { + dir: H, + HW: [[528,MAIN], [1028,SIZE1], [1528,SIZE2], [2028,SIZE3], [2528,SIZE4], [3028,SIZE5], [3528,SIZE6]], + stretch: {left:[0xE115,SIZE6], rep:[0xE116,SIZE6], right:[0xE117,SIZE6]} + }, + 0x23DD: + { + dir: H, + HW: [[528,MAIN], [1028,SIZE1], [1528,SIZE2], [2028,SIZE3], [2528,SIZE4], [3028,SIZE5], [3528,SIZE6]], + stretch: {left:[0xE118,SIZE6], rep:[0xE119,SIZE6], right:[0xE11A,SIZE6]} + }, + 0x23E0: + { + dir: H, + HW: [[560,MAIN], [1064,SIZE1], [1566,SIZE2], [2070,SIZE3], [2572,SIZE4], [3076,SIZE5], [3580,SIZE6]], + stretch: {left:[0xE121,SIZE6], rep:[0xE122,SIZE6], right:[0xE123,SIZE6]} + }, + 0x23E1: + { + dir: H, + HW: [[560,MAIN], [1064,SIZE1], [1566,SIZE2], [2070,SIZE3], [2572,SIZE4], [3076,SIZE5], [3580,SIZE6]], + stretch: {left:[0xE124,SIZE6], rep:[0xE125,SIZE6], right:[0xE126,SIZE6]} + }, + 0x27A1: + { + dir: H, + HW: [[835,MISC], [1285,SIZE1]], + stretch: {left:[0xE0E6,SIZE6], rep:[0xE0E7,SIZE6], right:[0xE0E8,SIZE6]} + }, + 0x27E6: + { + dir: V, + HW: [[840,SYMBOLS], [1000,SIZE1], [1192,SIZE2], [1422,SIZE3], [1698,SIZE4], [2029,SIZE5], [2428,SIZE6]], + stretch: {bot:[0xE107,SIZE6], ext:[0xE108,SIZE6], top:[0xE109,SIZE6]} + }, + 0x27E7: + { + dir: V, + HW: [[840,SYMBOLS], [1000,SIZE1], [1192,SIZE2], [1422,SIZE3], [1698,SIZE4], [2029,SIZE5], [2428,SIZE6]], + stretch: {bot:[0xE10A,SIZE6], ext:[0xE10B,SIZE6], top:[0xE10C,SIZE6]} + }, + 0x27EA: + { + dir: V, + HW: [[816,SYMBOLS], [1062,SIZE1], [1386,SIZE2], [1810,SIZE3], [2366,SIZE4], [3095,SIZE5], [4050,SIZE6]] + }, + 0x27EB: + { + dir: V, + HW: [[816,SYMBOLS], [1062,SIZE1], [1386,SIZE2], [1810,SIZE3], [2366,SIZE4], [3095,SIZE5], [4050,SIZE6]] + }, + 0x2A00: + { + dir: V, + HW: [[916,OPERATORS], [1188,SIZE1]] + }, + 0x2A01: + { + dir: V, + HW: [[916,OPERATORS], [1188,SIZE1]] + }, + 0x2A02: + { + dir: V, + HW: [[916,OPERATORS], [1188,SIZE1]] + }, + 0x2A03: + { + dir: V, + HW: [[978,OPERATORS], [1402,SIZE1]] + }, + 0x2A04: + { + dir: V, + HW: [[978,OPERATORS], [1402,SIZE1]] + }, + 0x2A05: + { + dir: V, + HW: [[960,OPERATORS], [1384,SIZE1]] + }, + 0x2A06: + { + dir: V, + HW: [[960,OPERATORS], [1384,SIZE1]] + }, + 0x2A09: + { + dir: V, + HW: [[770,OPERATORS], [974,SIZE1]] + }, + 0x2A0C: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]], + stretch: {top:[0xE135,SIZE6], ext:[0xE136,SIZE6], bot:[0xE137,SIZE6]} + }, + 0x2A11: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2B04: + { + dir: H, + HW: [[909,SHAPES], [1359,SIZE1]], + stretch: {left:[0xE0E0,SIZE6], rep:[0xE0E1,SIZE6], right:[0xE0E2,SIZE6]} + }, + 0x2B05: + { + dir: H, + HW: [[835,SHAPES], [1285,SIZE1]], + stretch: {left:[0xE0E3,SIZE6], rep:[0xE0E4,SIZE6], right:[0xE0E5,SIZE6]} + }, + 0x2B06: + { + dir: V, + HW: [[835,SHAPES], [1285,SIZE1]], + stretch: {bot:[0xE0E9,SIZE6], ext:[0xE0EA,SIZE6], top:[0xE0EB,SIZE6]} + }, + 0x2B07: + { + dir: V, + HW: [[835,SHAPES], [1285,SIZE1]], + stretch: {bot:[0xE0EC,SIZE6], ext:[0xE0ED,SIZE6], top:[0xE0EE,SIZE6]} + }, + 0x2B0C: + { + dir: H, + HW: [[845,SHAPES], [1295,SIZE1]], + stretch: {left:[0xE0EF,SIZE6], rep:[0xE0F0,SIZE6], right:[0xE0F1,SIZE6]} + }, + 0x2B0D: + { + dir: V, + HW: [[845,SHAPES], [1295,SIZE1]], + stretch: {bot:[0xE0F2,SIZE6], ext:[0xE0F3,SIZE6], top:[0xE0F4,SIZE6]} + }, + 0x2B31: + { + dir: H, + HW: [[760,SHAPES], [1210,SIZE1]], + stretch: {left:[0xE09E,SIZE6], rep:[0xE09F,SIZE6], right:[0xE0A0,SIZE6]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(SVG.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["SVG"]); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/fontdata.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/fontdata.js new file mode 100644 index 0000000..e38b3cb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Pagella/fontdata.js @@ -0,0 +1,679 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Pagella/fontdata.js + * + * Initializes the SVG OutputJax to use the Gyre-Pagella fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG,MML,AJAX,HUB) { + + var VERSION = "2.3"; + + var ALPHABETS = "GyrePagellaMathJax_Alphabets", + ARROWS = "GyrePagellaMathJax_Arrows", + DOUBLESTRUCK = "GyrePagellaMathJax_DoubleStruck", + FRAKTUR = "GyrePagellaMathJax_Fraktur", + LATIN = "GyrePagellaMathJax_Latin", + MAIN = "GyrePagellaMathJax_Main", + MARKS = "GyrePagellaMathJax_Marks", + MISC = "GyrePagellaMathJax_Misc", + MONOSPACE = "GyrePagellaMathJax_Monospace", + NONUNICODE = "GyrePagellaMathJax_NonUnicode", + NORMAL = "GyrePagellaMathJax_Normal", + OPERATORS = "GyrePagellaMathJax_Operators", + SANSSERIF = "GyrePagellaMathJax_SansSerif", + SCRIPT = "GyrePagellaMathJax_Script", + SHAPES = "GyrePagellaMathJax_Shapes", + SIZE1 = "GyrePagellaMathJax_Size1", + SIZE2 = "GyrePagellaMathJax_Size2", + SIZE3 = "GyrePagellaMathJax_Size3", + SIZE4 = "GyrePagellaMathJax_Size4", + SIZE5 = "GyrePagellaMathJax_Size5", + SIZE6 = "GyrePagellaMathJax_Size6", + SYMBOLS = "GyrePagellaMathJax_Symbols", + VARIANTS = "GyrePagellaMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + SVG.Augment({ + FONTDATA: { + version: VERSION, + + + baselineskip: 1200, + lineH: 800, lineD: 200, + + FONTS: { + "GyrePagellaMathJax_Alphabets": "Alphabets/Regular/Main.js", + "GyrePagellaMathJax_Arrows": "Arrows/Regular/Main.js", + "GyrePagellaMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "GyrePagellaMathJax_Fraktur": "Fraktur/Regular/Main.js", + "GyrePagellaMathJax_Latin": "Latin/Regular/Main.js", + "GyrePagellaMathJax_Main": "Main/Regular/Main.js", + "GyrePagellaMathJax_Marks": "Marks/Regular/Main.js", + "GyrePagellaMathJax_Misc": "Misc/Regular/Main.js", + "GyrePagellaMathJax_Monospace": "Monospace/Regular/Main.js", + "GyrePagellaMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "GyrePagellaMathJax_Normal": "Normal/Regular/Main.js", + "GyrePagellaMathJax_Operators": "Operators/Regular/Main.js", + "GyrePagellaMathJax_SansSerif": "SansSerif/Regular/Main.js", + "GyrePagellaMathJax_Script": "Script/Regular/Main.js", + "GyrePagellaMathJax_Shapes": "Shapes/Regular/Main.js", + "GyrePagellaMathJax_Size1": "Size1/Regular/Main.js", + "GyrePagellaMathJax_Size2": "Size2/Regular/Main.js", + "GyrePagellaMathJax_Size3": "Size3/Regular/Main.js", + "GyrePagellaMathJax_Size4": "Size4/Regular/Main.js", + "GyrePagellaMathJax_Size5": "Size5/Regular/Main.js", + "GyrePagellaMathJax_Size6": "Size6/Regular/Main.js", + "GyrePagellaMathJax_Symbols": "Symbols/Regular/Main.js", + "GyrePagellaMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, offsetA: 0x1D434, offsetG: 0x1D6E2, remap: {0x1D455: 0x210E}}, + "bolditalic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true, offsetA: 0x1D468, offsetG: 0x1D71C}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Gyre-Pagella-variant": {fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x0305, + + REMAP: { + 0x25C2: 0x25C0, + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x2758: 0x2223, + 0x25B8: 0x25B6, + 0x03D2: 0x03A5, + 0x25B4: 0x25B2, + 0x25B5: 0x25B3, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF, + 0x02B9: 0x2032, + 0x25FB: 0x25A1, + 0x25FC: 0x25A0, + 0x25BE: 0x25BC, + 0x203E: 0x0305, + 0x25BF: 0x25BD + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[828,MAIN], [988,SIZE1], [1180,SIZE2], [1410,SIZE3], [1686,SIZE4], [2017,SIZE5], [2416,SIZE6], [2612,SIZE6,1.081]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[828,MAIN], [988,SIZE1], [1180,SIZE2], [1410,SIZE3], [1686,SIZE4], [2017,SIZE5], [2416,SIZE6], [2612,SIZE6,1.081]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0x305, dir: H}, + 0x2F: + { + dir: V, + HW: [[800,MAIN], [1048,SIZE1], [1372,SIZE2], [1798,SIZE3], [2356,SIZE4], [3086,SIZE5], [4043,SIZE6]] + }, + 0x3D: + { + dir: H, + HW: [[600,MAIN]], + stretch: {left:[0xE000,SIZE6], rep:[0xE001,SIZE6], right:[0xE002,SIZE6]} + }, + 0x5B: + { + dir: V, + HW: [[840,MAIN], [1000,SIZE1], [1192,SIZE2], [1422,SIZE3], [1698,SIZE4], [2029,SIZE5], [2428,SIZE6], [2612,SIZE6,1.076]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[800,MAIN], [1048,SIZE1], [1372,SIZE2], [1798,SIZE3], [2356,SIZE4], [3086,SIZE5], [4043,SIZE6]] + }, + 0x5D: + { + dir: V, + HW: [[840,MAIN], [1000,SIZE1], [1192,SIZE2], [1422,SIZE3], [1698,SIZE4], [2029,SIZE5], [2428,SIZE6], [2612,SIZE6,1.076]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5E: {alias: 0x302, dir: H}, + 0x5F: {alias: 0x332, dir: H}, + 0x7B: + { + dir: V, + HW: [[838,MAIN], [998,SIZE1], [1190,SIZE2], [1420,SIZE3], [1696,SIZE4], [2028,SIZE5], [2426,SIZE6], [2612,SIZE6,1.077]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0xE003,SIZE6], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[800,MAIN], [960,SIZE1], [1152,SIZE2], [1382,SIZE3], [1658,SIZE4], [1990,SIZE5], [2388,SIZE6]], + stretch: {bot:[0xE004,SIZE6], ext:[0xE005,SIZE6], top:[0xE006,SIZE6]} + }, + 0x7D: + { + dir: V, + HW: [[838,MAIN], [998,SIZE1], [1190,SIZE2], [1420,SIZE3], [1696,SIZE4], [2028,SIZE5], [2426,SIZE6], [2612,SIZE6,1.077]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0xE007,SIZE6], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0x7E: {alias: 0x303, dir: H}, + 0xAF: {alias: 0x332, dir: H}, + 0x2C6: {alias: 0x302, dir: H}, + 0x2C9: {alias: 0x305, dir: H}, + 0x2DC: {alias: 0x303, dir: H}, + 0x302: + { + dir: H, + HW: [[348,MAIN], [613,SIZE1], [731,SIZE2], [874,SIZE3], [1045,SIZE4], [1251,SIZE5], [1498,SIZE6]] + }, + 0x303: + { + dir: H, + HW: [[342,MAIN], [608,SIZE1], [727,SIZE2], [870,SIZE3], [1042,SIZE4], [1247,SIZE5], [1496,SIZE6]] + }, + 0x305: + { + dir: H, + HW: [[333,MARKS], [500,SIZE1]], + stretch: {left:[0xE0FB,SIZE6], rep:[0xE0FC,SIZE6], right:[0xE0FD,SIZE6]} + }, + 0x306: EXTRAH, + 0x30C: + { + dir: H, + HW: [[348,MAIN], [613,SIZE1], [731,SIZE2], [874,SIZE3], [1045,SIZE4], [1251,SIZE5], [1498,SIZE6]] + }, + 0x311: EXTRAH, + 0x32C: EXTRAH, + 0x32D: EXTRAH, + 0x32E: EXTRAH, + 0x32F: EXTRAH, + 0x330: EXTRAH, + 0x332: + { + dir: H, + HW: [[333,MARKS], [500,SIZE1]], + stretch: {left:[0xE0F5,SIZE6], rep:[0xE0F6,SIZE6], right:[0xE0F7,SIZE6]} + }, + 0x333: EXTRAH, + 0x33F: EXTRAH, + 0x2015: {alias: 0x305, dir: H}, + 0x2016: + { + dir: V, + HW: [[800,MAIN], [960,SIZE1], [1152,SIZE2], [1382,SIZE3], [1658,SIZE4], [1990,SIZE5], [2388,SIZE6]], + stretch: {bot:[0xE12A,SIZE6], ext:[0xE12B,SIZE6], top:[0xE12C,SIZE6]} + }, + 0x2017: {alias: 0x305, dir: H}, + 0x203E: {alias: 0x305, dir: H}, + 0x2044: + { + dir: V, + HW: [[800,MAIN], [1048,SIZE1], [1372,SIZE2], [1798,SIZE3], [2356,SIZE4], [3086,SIZE5], [4043,SIZE6]] + }, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: EXTRAH, + 0x20E1: EXTRAH, + 0x20E9: EXTRAH, + 0x20EC: EXTRAH, + 0x20ED: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2140: + { + dir: V, + HW: [[1000,DOUBLESTRUCK], [1442,SIZE1]] + }, + 0x2190: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE023,SIZE6], rep:[0xE024,SIZE6], right:[0xE025,SIZE6]} + }, + 0x2191: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE029,SIZE6], ext:[0xE02A,SIZE6], top:[0xE02B,SIZE6]} + }, + 0x2192: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE026,SIZE6], rep:[0xE027,SIZE6], right:[0xE028,SIZE6]} + }, + 0x2193: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE02C,SIZE6], ext:[0xE02D,SIZE6], top:[0xE02E,SIZE6]} + }, + 0x2194: + { + dir: H, + HW: [[845,MAIN], [1295,SIZE1]], + stretch: {left:[0xE037,SIZE6], rep:[0xE038,SIZE6], right:[0xE039,SIZE6]} + }, + 0x2195: + { + dir: V, + HW: [[845,MAIN], [1295,SIZE1]], + stretch: {bot:[0xE03A,SIZE6], ext:[0xE03B,SIZE6], top:[0xE03C,SIZE6]} + }, + 0x2196: EXTRAV, + 0x2197: EXTRAV, + 0x2198: EXTRAV, + 0x2199: EXTRAV, + 0x219A: EXTRAH, + 0x219B: EXTRAH, + 0x219E: EXTRAH, + 0x219F: EXTRAV, + 0x21A0: EXTRAH, + 0x21A1: EXTRAV, + 0x21A2: EXTRAH, + 0x21A3: EXTRAH, + 0x21A4: + { + dir: H, + HW: [[760,ARROWS], [1210,SIZE1]], + stretch: {left:[0xE053,SIZE6], rep:[0xE054,SIZE6], right:[0xE055,SIZE6]} + }, + 0x21A5: EXTRAV, + 0x21A6: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE056,SIZE6], rep:[0xE057,SIZE6], right:[0xE058,SIZE6]} + }, + 0x21A7: EXTRAV, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21AB: EXTRAH, + 0x21AC: EXTRAH, + 0x21AD: EXTRAH, + 0x21AE: EXTRAH, + 0x21B0: EXTRAV, + 0x21B1: EXTRAV, + 0x21B2: EXTRAV, + 0x21B3: EXTRAV, + 0x21B6: EXTRAH, + 0x21B7: EXTRAH, + 0x21BC: EXTRAH, + 0x21BD: EXTRAH, + 0x21BE: EXTRAV, + 0x21BF: EXTRAV, + 0x21C0: EXTRAH, + 0x21C1: EXTRAH, + 0x21C2: EXTRAV, + 0x21C3: EXTRAV, + 0x21C4: EXTRAH, + 0x21C5: EXTRAV, + 0x21C6: EXTRAH, + 0x21C7: EXTRAH, + 0x21C8: EXTRAV, + 0x21C9: EXTRAH, + 0x21CA: EXTRAV, + 0x21CB: EXTRAH, + 0x21CC: EXTRAH, + 0x21CD: EXTRAH, + 0x21CE: EXTRAH, + 0x21CF: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE0A7,SIZE6], rep:[0xE0A8,SIZE6], right:[0xE0A9,SIZE6]} + }, + 0x21D1: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE0AD,SIZE6], ext:[0xE0AE,SIZE6], top:[0xE0AF,SIZE6]} + }, + 0x21D2: + { + dir: H, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {left:[0xE0AA,SIZE6], rep:[0xE0AB,SIZE6], right:[0xE0AC,SIZE6]} + }, + 0x21D3: + { + dir: V, + HW: [[760,MAIN], [1210,SIZE1]], + stretch: {bot:[0xE0B0,SIZE6], ext:[0xE0B1,SIZE6], top:[0xE0B2,SIZE6]} + }, + 0x21D4: + { + dir: H, + HW: [[845,MAIN], [1295,SIZE1]], + stretch: {left:[0xE0B3,SIZE6], rep:[0xE0B4,SIZE6], right:[0xE0B5,SIZE6]} + }, + 0x21D5: + { + dir: V, + HW: [[845,MAIN], [1295,SIZE1]], + stretch: {bot:[0xE0B6,SIZE6], ext:[0xE0B7,SIZE6], top:[0xE0B8,SIZE6]} + }, + 0x21D6: EXTRAV, + 0x21D7: EXTRAV, + 0x21D8: EXTRAV, + 0x21D9: EXTRAV, + 0x21DA: EXTRAH, + 0x21DB: EXTRAH, + 0x21DC: EXTRAH, + 0x21DD: EXTRAH, + 0x21E6: EXTRAH, + 0x21E7: EXTRAV, + 0x21E8: EXTRAH, + 0x21E9: EXTRAV, + 0x21F3: EXTRAV, + 0x21F5: EXTRAV, + 0x21F6: EXTRAH, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: + { + dir: H, + HW: [[600,MAIN]], + stretch: {left:[0xE127,SIZE6], rep:[0xE128,SIZE6], right:[0xE129,SIZE6]} + }, + 0x2215: {alias: 0x2044, dir: V}, + 0x221A: + { + dir: V, + HW: [[790,MAIN], [1150,SIZE1], [1510,SIZE2], [1870,SIZE3], [2230,SIZE4], [2590,SIZE5], [2950,SIZE6]], + stretch: {bot:[0x23B7,SYMBOLS], ext:[0xE133,SIZE6], top:[0xE134,SIZE6]} + }, + 0x2223: + { + dir: V, + HW: [[800,MAIN], [960,SIZE1], [1152,SIZE2], [1382,SIZE3], [1658,SIZE4], [1990,SIZE5], [2388,SIZE6]], + stretch: {bot:[0xE004,SIZE6], ext:[0xE005,SIZE6], top:[0xE006,SIZE6]} + }, + 0x2225: + { + dir: V, + HW: [[800,MAIN], [960,SIZE1], [1152,SIZE2], [1382,SIZE3], [1658,SIZE4], [1990,SIZE5], [2388,SIZE6]], + stretch: {bot:[0xE12A,SIZE6], ext:[0xE12B,SIZE6], top:[0xE12C,SIZE6]} + }, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x2261: EXTRAH, + 0x2263: EXTRAH, + 0x22A2: EXTRAV, + 0x22A3: EXTRAV, + 0x22A4: EXTRAV, + 0x22A5: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[820,MAIN], [980,SIZE1], [1172,SIZE2], [1402,SIZE3], [1678,SIZE4], [2009,SIZE5], [2408,SIZE6], [2612,SIZE6,1.085]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[820,MAIN], [980,SIZE1], [1172,SIZE2], [1402,SIZE3], [1678,SIZE4], [2009,SIZE5], [2408,SIZE6], [2612,SIZE6,1.085]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[820,MAIN], [980,SIZE1], [1172,SIZE2], [1402,SIZE3], [1678,SIZE4], [2009,SIZE5], [2408,SIZE6], [2612,SIZE6,1.085]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[820,MAIN], [980,SIZE1], [1172,SIZE2], [1402,SIZE3], [1678,SIZE4], [2009,SIZE5], [2408,SIZE6], [2612,SIZE6,1.085]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: + { + dir: V, + HW: [[816,SYMBOLS], [1062,SIZE1], [1386,SIZE2], [1810,SIZE3], [2366,SIZE4], [3095,SIZE5], [4050,SIZE6]] + }, + 0x232A: + { + dir: V, + HW: [[816,SYMBOLS], [1062,SIZE1], [1386,SIZE2], [1810,SIZE3], [2366,SIZE4], [3095,SIZE5], [4050,SIZE6]] + }, + 0x23AA: + { + dir: V, + HW: [[596,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: {alias: 0x305, dir: H}, + 0x23B0: + { + dir: V, + HW: [[616,SYMBOLS,null,0x23A7]], + stretch: {top:[0x23A7,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23AD,SYMBOLS]} + }, + 0x23B1: + { + dir: V, + HW: [[616,SYMBOLS,null,0x23AB]], + stretch: {top:[0x23AB,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23A9,SYMBOLS]} + }, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: + { + dir: V, + HW: [[800,MAIN,null,0x7C], [1269,MAIN,1.586,0x7C], [1717,MAIN,2.146,0x7C], [2164,MAIN,2.705,0x7C], [2612,MAIN,3.265,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[540,MAIN], [1038,SIZE1], [1538,SIZE2], [2037,SIZE3], [2538,SIZE4], [3038,SIZE5], [3538,SIZE6]], + stretch: {left:[0xE10D,SIZE6], rep:[0xE10E,SIZE6], mid:[0xE10F,SIZE6], right:[0xE110,SIZE6]} + }, + 0x23DF: + { + dir: H, + HW: [[540,MAIN], [1038,SIZE1], [1538,SIZE2], [2037,SIZE3], [2538,SIZE4], [3038,SIZE5], [3538,SIZE6]], + stretch: {left:[0xE111,SIZE6], rep:[0xE112,SIZE6], mid:[0xE113,SIZE6], right:[0xE114,SIZE6]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x305, dir: H}, + 0x27A1: EXTRAH, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[816,MAIN], [1062,SIZE1], [1386,SIZE2], [1810,SIZE3], [2366,SIZE4], [3095,SIZE5], [4050,SIZE6]] + }, + 0x27E9: + { + dir: V, + HW: [[816,MAIN], [1062,SIZE1], [1386,SIZE2], [1810,SIZE3], [2366,SIZE4], [3095,SIZE5], [4050,SIZE6]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: + { + dir: V, + HW: [[828,MAIN], [988,SIZE1], [1180,SIZE2], [1410,SIZE3], [1686,SIZE4], [2017,SIZE5], [2416,SIZE6]], + stretch: {bot:[0xE101,SIZE6], ext:[0xE102,SIZE6], top:[0xE103,SIZE6]} + }, + 0x27EF: + { + dir: V, + HW: [[828,MAIN], [988,SIZE1], [1180,SIZE2], [1410,SIZE3], [1686,SIZE4], [2017,SIZE5], [2416,SIZE6]], + stretch: {bot:[0xE104,SIZE6], ext:[0xE105,SIZE6], top:[0xE106,SIZE6]} + }, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: + { + dir: H, + HW: [[835,ARROWS], [1285,SIZE1]], + stretch: {left:[0xE0C5,SIZE6], rep:[0xE0C6,SIZE6], right:[0xE0C7,SIZE6]} + }, + 0x2907: + { + dir: H, + HW: [[835,ARROWS], [1285,SIZE1]], + stretch: {left:[0xE0C8,SIZE6], rep:[0xE0C9,SIZE6], right:[0xE0CA,SIZE6]} + }, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A11: EXTRAV, + 0x2B04: EXTRAH, + 0x2B05: EXTRAH, + 0x2B06: EXTRAV, + 0x2B07: EXTRAV, + 0x2B0C: EXTRAH, + 0x2B0D: EXTRAV, + 0x2B31: EXTRAH, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(SVG.fontDir+"/Size1/Regular/Main.js",function () { + var i; + for (i = 0x222B; i <= 0x222D; i++) + SVG.FONTDATA.FONTS[SIZE1][i][2] -= 190; + for (i = 0x222E; i <= 0x2231; i++) + SVG.FONTDATA.FONTS[SIZE1][i][2] -= 100; + }); + AJAX.loadComplete(SVG.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax.SVG,MathJax.ElementJax.mml,MathJax.Ajax,MathJax.Hub); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Alphabets/Regular/Main.js new file mode 100644 index 0000000..761884c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Alphabets/Regular/Main.js @@ -0,0 +1,42 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'GyreTermesMathJax_Alphabets', + id: 'GYRETERMESALPHABETS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xE3F: [745,83,667,17,593,'593 180c0 -48 -20 -93 -56 -125c-37 -34 -108 -55 -186 -55h-1v-83h-28v83h-305v19c83 3 96 16 96 90v444c0 74 -12 85 -96 90v19h280h25v83h28v-85c138 -11 209 -68 209 -168c0 -41 -15 -78 -40 -100c-24 -21 -45 -31 -97 -44c65 -16 92 -28 122 -55 c31 -29 49 -69 49 -113zM478 179c0 63 -27 103 -84 127c-13 5 -27 9 -44 12v-276c27 4 49 11 67 21c40 23 61 62 61 116zM322 38v284c-27 3 -62 4 -107 4v-248c0 -32 14 -41 63 -41c16 0 31 0 44 1zM457 488c0 69 -37 113 -107 130v-249c69 11 107 53 107 119zM322 366v257 c-13 1 -26 2 -41 2h-44c-15 0 -22 -9 -22 -30v-229h95h12'], + 0x2103: [676,14,1029,57,995,'343 532c0 -80 -64 -142 -145 -142c-78 0 -141 64 -141 143c0 80 63 143 143 143s143 -63 143 -144zM304 533c0 59 -48 109 -104 109c-57 0 -104 -50 -104 -109s47 -109 103 -109c58 0 105 49 105 109zM995 113c-61 -81 -160 -127 -273 -127c-199 0 -332 136 -332 339 c0 114 41 209 117 272c61 50 140 79 217 79c49 0 98 -8 147 -24c16 -6 30 -9 40 -9c19 0 35 12 41 33h21l9 -226h-23c-19 65 -34 93 -66 125c-40 40 -91 61 -149 61c-145 0 -238 -117 -238 -298c0 -116 33 -206 92 -255c42 -35 96 -53 156 -53c83 0 149 30 223 101'], + 0x2107: [676,14,475,48,427,'427 43c0 -35 -43 -57 -113 -57c-154 0 -266 99 -266 233c0 67 21 136 128 182c-69 47 -94 84 -94 138c0 81 64 137 156 137s138 -48 180 -88l-8 -14c-43 36 -76 42 -139 42c-65 0 -110 -44 -110 -107c0 -79 66 -129 156 -129v-20c-132 0 -197 -93 -197 -189 c0 -84 47 -149 121 -149c27 0 47 7 84 31c30 18 47 25 64 25c23 0 38 -14 38 -35'], + 0x2109: [676,0,929,57,919,'343 532c0 -80 -64 -142 -145 -142c-78 0 -141 64 -141 143c0 80 63 143 143 143s143 -63 143 -144zM304 533c0 59 -48 109 -104 109c-57 0 -104 -50 -104 -109s47 -109 103 -109c58 0 105 49 105 109zM919 519h-25c-17 90 -39 105 -152 105h-136c-27 0 -32 -6 -32 -34 v-222h145c80 0 98 15 110 95h23v-232h-23c-12 81 -29 96 -110 96h-145v-218c0 -72 14 -86 91 -90v-19h-280v19c76 5 87 18 87 101v433c0 70 -13 84 -87 90v19h531'], + 0x2116: [669,15,1001,0,957,'696 608c0 -28 -21 -50 -52 -50c-14 0 -29 4 -45 13c-16 11 -28 16 -35 16c-12 0 -21 -6 -26 -19s-6 -42 -6 -88v-491h-17l-308 533v-315c0 -71 -5 -119 -14 -146s-24 -46 -45 -58s-44 -18 -69 -18c-55 0 -79 29 -79 60c0 28 23 47 51 47c13 0 28 -4 44 -13 c18 -10 31 -15 38 -15c12 0 20 8 24 24c4 17 6 53 6 110v317c0 62 -9 98 -29 112c-15 9 -29 13 -67 16v19h170l251 -438v205c0 69 2 117 7 144c5 28 18 51 39 69s49 27 83 27c49 0 79 -29 79 -61zM957 299c0 -101 -80 -177 -184 -177c-101 0 -174 70 -174 166 c0 102 74 172 184 172c102 0 174 -66 174 -161zM957 0h-358v44h358v-44zM869 266c0 90 -40 154 -97 154c-52 0 -85 -34 -85 -88c0 -47 10 -95 30 -130c14 -26 37 -41 67 -41c55 0 85 37 85 105'], + 0x2117: [686,14,760,30,730,'730 336c0 -193 -157 -350 -350 -350s-350 157 -350 350s157 350 350 350s350 -157 350 -350zM692 336c0 172 -140 312 -312 312s-312 -140 -312 -312s140 -312 312 -312s312 140 312 312zM555 422c0 -38 -23 -74 -62 -92c-27 -14 -62 -20 -113 -20c-15 0 -25 0 -39 1 v-102c0 -40 8 -48 56 -50v-14h-178v14c46 4 49 11 49 56v248c0 39 -5 46 -49 50v14h167c61 0 117 -16 143 -42c17 -17 26 -39 26 -63zM478 418c0 58 -38 84 -120 84c-14 0 -17 -4 -17 -17v-148c12 0 20 -1 32 -1c70 0 105 29 105 82'], + 0x211E: [662,0,667,17,659,'659 0h-161l-34 44l-53 -41l-17 22l53 41l-187 242l-56 -2v-197c0 -72 13 -85 90 -90v-19h-277v19c75 6 85 18 85 101v433c0 71 -10 82 -85 90v19h276c94 0 177 -26 215 -67c26 -29 39 -66 39 -109c0 -47 -19 -89 -51 -115c-33 -27 -63 -39 -130 -52l158 -194l86 66 l18 -22l-86 -66l30 -37c29 -34 49 -44 87 -47v-19zM438 488c0 94 -58 137 -183 137c-40 0 -51 -8 -51 -36v-246c96 2 131 8 177 34c36 19 57 61 57 111'], + 0x2120: [669,-297,939,40,899,'318 396c0 -56 -56 -99 -128 -99c-25 0 -50 5 -74 13c-11 4 -20 6 -26 6c-9 0 -15 -8 -15 -18h-17l-18 116h17c30 -65 67 -94 121 -94c43 0 73 24 73 58c0 14 -6 24 -11 31c-14 20 -45 39 -87 59c-70 33 -98 64 -98 108c0 30 12 53 36 70c20 15 47 23 72 23 c22 0 45 -4 68 -12c10 -4 18 -6 24 -6c10 0 16 7 18 18h15l14 -117h-18c-10 33 -20 46 -40 64s-44 28 -70 28c-35 0 -59 -19 -59 -47s25 -51 86 -80c82 -39 117 -75 117 -121zM899 305h-172v13c46 3 52 10 52 53v230l-150 -296h-13l-147 284v-204c0 -53 10 -65 56 -67v-13 h-144v13c50 3 58 13 58 67v217c0 38 -7 44 -56 47v13h124l137 -266l132 266h123v-13c-43 -3 -50 -11 -50 -47v-237c0 -36 7 -44 50 -47v-13'], + 0x2122: [662,-305,980,40,941,'393 568h-18c-14 59 -27 68 -95 68h-29v-271c0 -37 8 -45 55 -47v-13h-178v13c48 3 53 9 53 53v265h-28c-67 0 -81 -9 -95 -68h-18l4 94h345zM941 305h-172v13c46 3 52 10 52 53v230l-150 -296h-13l-147 284v-204c0 -53 10 -65 56 -67v-13h-144v13c50 3 58 13 58 67v217 c0 38 -7 44 -56 47v13h124l137 -266l132 266h123v-13c-43 -3 -50 -11 -50 -47v-237c0 -36 7 -44 50 -47v-13'], + 0x2126: [676,0,853,80,773,'773 153l-6 -153h-272l13 147c84 27 121 104 121 233c0 170 -91 261 -201 261c-119 0 -205 -103 -205 -254c0 -107 26 -204 125 -240l10 -147h-272l-6 153h24c3 -47 25 -72 80 -72h131l-1 43c-102 20 -205 121 -205 265c0 158 131 287 321 287c184 0 314 -117 314 -283 c0 -135 -76 -233 -201 -269l-5 -43h134c61 0 76 36 76 72h25'], + 0x212A: [662,0,722,34,723,'723 0h-305v19c12 1 23 1 28 1c28 1 42 8 42 22c0 24 -54 95 -130 170l-106 105l-26 -21v-187c0 -73 12 -85 90 -90v-19h-282v19c79 5 90 18 90 101v433c0 71 -12 84 -90 90v19h284v-19c-81 -6 -92 -17 -92 -90v-205l177 161c55 51 78 81 78 103c0 20 -12 28 -42 30 c-4 0 -14 0 -26 1v19h262v-19c-68 -5 -84 -13 -152 -78l-190 -188l233 -250c91 -97 105 -107 157 -108v-19'], + 0x212B: [896,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM457 796 c0 -55 -45 -99 -100 -99c-56 0 -99 44 -99 100c0 54 45 99 99 99c55 0 100 -45 100 -100zM423 796c0 36 -30 66 -65 66c-36 0 -66 -29 -66 -65s29 -66 64 -66c37 0 67 29 67 65'], + 0x212E: [596,0,742,40,702,'702 289l-532 1c-5 0 -9 -5 -9 -9v-165c0 -3 2 -6 2 -6c53 -59 129 -93 208 -93c84 0 161 38 213 98h49c-61 -71 -158 -115 -262 -115c-177 0 -331 127 -331 298s154 298 331 298s331 -127 331 -298v-9zM581 316v164c0 3 -2 6 -2 6c-53 59 -129 93 -208 93 s-155 -34 -208 -93c0 0 -2 -3 -2 -6v-164c0 -5 4 -9 9 -9h402c5 0 9 4 9 9'], + 0xFEFF: [0,0,0,0,0,''] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Alphabets/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Arrows/Regular/Main.js new file mode 100644 index 0000000..818266c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Arrows/Regular/Main.js @@ -0,0 +1,57 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'GyreTermesMathJax_Arrows', + id: 'GYRETERMESARROWS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x219F: [690,180,520,80,440,'440 282l-154 154v-616h-52v616l-154 -154v65l154 154v98l-154 -154v65l180 180l180 -180v-65l-154 154v-98l154 -154v-65'], + 0x21A1: [680,190,520,80,440,'440 -10l-180 -180l-180 180v65l154 -154v98l-154 154v65l154 -154v616h52v-616l154 154v-65l-154 -154v-98l154 154v-65'], + 0x21A4: [430,-70,850,80,770,'770 70h-46v154h-553l154 -154h-65l-180 180l180 180h65l-154 -154h553v154h46v-360'], + 0x21A5: [600,90,520,80,440,'440 -90h-360v46h154v553l-154 -154v65l180 180l180 -180v-65l-154 154v-553h154v-46'], + 0x21A7: [590,100,520,80,440,'440 80l-180 -180l-180 180v65l154 -154v553h-154v46h360v-46h-154v-553l154 154v-65'], + 0x21B2: [598,98,540,80,460,'460 598v-516l-26 -26h-263l154 -154h-65l-180 180l180 180h65l-154 -154h237v490h52'], + 0x21B3: [598,98,540,80,460,'460 82l-180 -180h-65l154 154h-263l-26 26v516h52v-490h237l-154 154h65'], + 0x21B4: [478,-12,770,80,690,'690 192l-180 -180l-180 180v65l154 -154v323h-404v52h430l26 -26v-349l154 154v-65'], + 0x21B5: [555,55,626,80,546,'546 125l-26 -26h-349l154 -154h-65l-180 180l180 180h65l-154 -154h323v404h52v-430'], + 0x21C5: [600,100,920,80,840,'440 355l-154 154v-599h-52v599l-154 -154v65l180 180l180 -180v-65zM840 80l-180 -180l-180 180v65l154 -154v599h52v-599l154 154v-65'], + 0x21D6: [497,63,720,80,640,'640 82l-37 -37l-406 406h-71v-70l407 -407l-37 -37l-370 370v-167l-46 46v311h311l46 -46h-167'], + 0x21D7: [497,63,720,80,640,'640 497v-311l-46 -46v167l-370 -370l-37 37l407 407v70h-71l-406 -406l-37 37l370 369h-167l46 46h311'], + 0x21D8: [563,-3,720,80,640,'640 3h-311l-46 46h167l-370 369l37 37l406 -406h71v70l-407 407l37 37l370 -370v167l46 -46v-311'], + 0x21D9: [563,-3,720,80,640,'640 418l-370 -369h167l-46 -46h-311v311l46 46v-167l370 370l37 -37l-407 -407v-70h71l406 406'], + 0x21DC: [430,-70,850,80,770,'770 224h-30c-30 0 -49 17 -63 41c-10 16 -16 37 -26 53c-4 8 -9 15 -19 15c-22 0 -29 -17 -34 -36c-8 -33 -8 -73 -15 -105c-11 -45 -34 -77 -86 -77c-51 0 -74 32 -85 77c-7 32 -7 72 -15 105c-5 19 -12 36 -35 36c-9 0 -14 -7 -18 -15c-10 -16 -16 -37 -26 -53 c-14 -24 -33 -41 -64 -41h-83l154 -154h-65l-180 180l180 180h65l-154 -154h83c10 0 15 7 19 15c10 16 16 37 26 53c14 24 33 41 63 41c52 0 75 -32 86 -77c7 -32 7 -72 15 -105c5 -19 12 -36 34 -36c23 0 30 17 35 36c8 33 8 73 15 105c11 45 34 77 85 77 c31 0 50 -17 64 -41c10 -16 16 -37 26 -53c4 -8 9 -15 18 -15h30v-52'], + 0x21E6: [470,-30,1073,80,993,'993 156h-650v-126h-43l-220 220l220 220h44l-1 -126h650v-188zM957 308h-650v119l-176 -177l176 -177v119h650v116'], + 0x21E7: [715,198,600,80,520,'520 452h-126v-650h-188v650h-126v44l220 219l220 -220v-43zM477 488l-177 177l-177 -177h119v-650h116v650h119'], + 0x21E8: [470,-30,1073,80,993,'993 250l-219 -220h-44v126h-650v188h650v126h43zM943 250l-177 177v-119h-650v-116h650v-119'], + 0x21E9: [698,215,600,80,520,'520 5l-220 -220l-220 219v44h126v650h188v-650h126v-43zM477 12h-119v650h-116v-650h-119l177 -177'], + 0x21F3: [715,215,600,80,520,'520 4l-220 -219l-220 220v43h126v404h-126v44l220 219l220 -220v-43h-126v-404h126v-44zM477 488l-177 177l-177 -177h119v-476h-119l177 -177l177 177h-119v476h119'], + 0x21F5: [600,100,920,80,840,'440 80l-180 -180l-180 180v65l154 -154v599h52v-599l154 154v-65zM840 355l-154 154v-599h-52v599l-154 -154v65l180 180l180 -180v-65'], + 0x21F6: [830,330,850,80,770,'770 -150l-180 -180h-65l154 154h-599v52h599l-154 154h65zM770 250l-180 -180h-65l154 154h-599v52h599l-154 154h65zM770 650l-180 -180h-65l154 154h-599v52h599l-154 154h65'], + 0x27F4: [568,68,1132,80,1052,'749 276c-13 126 -113 226 -239 239v-239h239zM458 515c-126 -13 -226 -113 -239 -239h239v239zM458 -15v239h-239c13 -126 113 -226 239 -239zM749 224h-239v-239c126 13 226 113 239 239zM1052 250l-180 -180h-65l154 154h-160c-13 -163 -150 -292 -317 -292 s-304 129 -317 292h-87v52h87c13 163 150 292 317 292s304 -129 317 -292h160l-154 154h65'], + 0x27FB: [430,-70,1170,80,1090,'1090 70h-46v154h-873l154 -154h-65l-180 180l180 180h65l-154 -154h873v154h46v-360'], + 0x27FD: [470,-30,1350,80,1270,'1270 30h-46v118h-977l118 -118h-65l-220 220l220 220h65l-118 -118h977v118h46v-440zM1224 300h-1029l-50 -50l50 -50h1029v100'], + 0x27FE: [470,-30,1350,80,1270,'1270 250l-220 -220h-65l118 118h-977v-118h-46v440h46v-118h977l-118 118h65zM1205 250l-50 50h-1029v-100h1029'], + 0x27FF: [430,-70,1170,80,1090,'1090 250l-180 -180h-65l154 154h-108c-31 0 -50 17 -64 41c-10 16 -16 37 -26 53c-4 8 -9 15 -18 15c-23 0 -30 -17 -35 -36c-8 -33 -8 -73 -15 -105c-11 -45 -34 -77 -85 -77c-52 0 -75 32 -86 77c-7 32 -7 72 -15 105c-5 19 -12 36 -34 36c-23 0 -30 -17 -35 -36 c-8 -33 -8 -73 -15 -105c-11 -45 -34 -77 -85 -77c-52 0 -75 32 -86 77c-7 32 -7 72 -15 105c-5 19 -12 36 -34 36c-10 0 -15 -7 -19 -15c-10 -16 -16 -37 -26 -53c-14 -24 -33 -41 -63 -41h-55v52h55c9 0 14 7 18 15c10 16 16 37 26 53c14 24 33 41 64 41 c51 0 74 -32 85 -77c7 -32 7 -72 15 -105c5 -19 12 -36 35 -36c22 0 29 17 34 36c8 33 8 73 15 105c11 45 34 77 86 77c51 0 74 -32 85 -77c7 -32 7 -72 15 -105c5 -19 12 -36 35 -36c22 0 29 17 34 36c8 33 8 73 15 105c11 45 34 77 86 77c30 0 49 -17 63 -41 c10 -16 16 -37 26 -53c4 -8 9 -15 19 -15h108l-154 154h65'], + 0x2906: [470,-30,1030,80,950,'950 30h-46v118h-657l118 -118h-65l-220 220l220 220h65l-118 -118h657v118h46v-440zM904 300h-709l-50 -50l50 -50h709v100'], + 0x2907: [470,-30,1030,80,950,'950 250l-220 -220h-65l118 118h-657v-118h-46v440h46v-118h657l-118 118h65zM885 250l-50 50h-709v-100h709'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Arrows/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..96fb714 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js @@ -0,0 +1,100 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'GyreTermesMathJax_DoubleStruck', + id: 'GYRETERMESDOUBLESTRUCK', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2102: [718,14,816,80,736,'736 127c0 -4 -2 -9 -6 -14c-66 -80 -169 -127 -286 -127c-213 0 -364 144 -364 359c0 232 184 371 366 371c52 0 103 -7 155 -25c15 -6 29 -9 39 -9c14 0 30 6 35 21c4 12 12 15 20 15c9 0 18 -10 19 -21l10 -192c1 -15 -8 -21 -17 -22c-10 -1 -21 5 -22 15 c-3 55 -16 85 -42 113c-41 44 -114 64 -176 64c-145 0 -231 -138 -231 -317c0 -197 104 -328 247 -328c59 0 146 29 216 109c3 3 7 7 20 7c7 0 17 -8 17 -19zM339 35c-87 51 -143 183 -143 323c0 112 30 218 93 282c-97 -49 -169 -161 -169 -295c0 -145 100 -274 219 -310'], + 0x210D: [702,0,923,79,843,'843 22c0 -11 -7 -22 -20 -22h-287c-13 0 -20 11 -20 22s6 20 19 20c64 0 71 18 71 92v202h-289v-213c0 -62 11 -81 72 -81c12 0 18 -10 18 -20c0 -11 -7 -22 -20 -22h-287c-13 0 -20 11 -20 22s6 20 19 20c64 0 71 18 71 92v445c0 63 -6 81 -72 81c-12 0 -19 11 -18 22 s7 20 20 20h287c13 0 19 -9 20 -20s-6 -22 -18 -22c-65 0 -72 -18 -72 -81v-203h289v203c0 63 -11 81 -72 81c-12 0 -19 11 -18 22s7 20 20 20h287c13 0 19 -9 19 -20s-5 -22 -17 -22c-63 0 -72 -18 -72 -81v-456c0 -62 10 -81 72 -81c12 0 18 -10 18 -20zM726 40 c-10 18 -13 44 -13 83v456c0 39 2 65 12 83h-91c10 -18 12 -44 12 -83v-445c0 -45 -2 -75 -12 -94h92zM290 40c-10 18 -13 44 -13 83v456c0 39 2 65 12 83h-91c10 -18 12 -44 12 -83v-445c0 -45 -2 -75 -12 -94h92'], + 0x2115: [702,11,915,80,835,'835 682c0 -11 -6 -22 -18 -22c-83 0 -93 -13 -93 -120v-531c0 -13 -9 -20 -20 -20c-7 0 -15 3 -18 7l-453 553v-387c0 -104 13 -120 91 -120c13 0 19 -9 19 -20s-7 -22 -20 -22h-223c-13 0 -20 11 -20 22c0 10 6 20 18 20c80 0 95 13 95 119v435c-53 59 -60 65 -93 65 c-13 0 -20 10 -20 21s7 20 20 20h181c5 0 12 -3 15 -7l388 -472v317c0 109 -6 120 -94 120c-12 0 -18 11 -18 22s7 20 20 20h223c13 0 20 -9 20 -20zM684 61v99l-412 502h-86c12 -12 23 -25 42 -44'], + 0x2119: [702,0,754,80,674,'674 505c0 -125 -98 -197 -296 -197c-22 0 -38 1 -61 2v-187c0 -64 10 -82 78 -82c13 0 19 -10 19 -21s-7 -20 -20 -20h-294c-13 0 -20 11 -20 22c0 10 6 20 18 20c63 0 69 18 69 92v445c0 68 -7 81 -69 81c-12 0 -18 8 -18 22c0 11 7 20 20 20h287 c168 0 287 -62 287 -197zM634 505c0 76 -47 119 -120 142c36 -36 51 -87 51 -148c0 -55 -12 -100 -42 -132c73 23 111 69 111 138zM525 499c0 100 -38 163 -184 163c-19 0 -24 -5 -24 -24v-287c20 -2 33 -2 48 -2c112 0 160 57 160 150zM290 40c-10 18 -13 45 -13 83v515 c0 9 1 17 1 24h-83c10 -17 12 -43 12 -83v-445c0 -46 -2 -75 -12 -94h95'], + 0x211A: [716,178,875,80,795,'795 -156c0 -10 -7 -20 -19 -21c-13 -1 -17 -1 -34 -1c-167 0 -293 47 -364 129l-44 51c-134 37 -254 179 -254 349c0 214 154 365 356 365c201 0 357 -151 357 -363c0 -179 -113 -324 -266 -356c79 -96 147 -131 249 -134c13 0 19 -10 19 -19zM753 353 c0 132 -70 238 -172 289c56 -64 98 -166 98 -287c0 -167 -46 -232 -86 -289c75 43 160 118 160 287zM639 355c0 183 -93 321 -200 321c-117 0 -206 -133 -206 -319c0 -193 83 -329 203 -329c130 0 203 141 203 327zM280 639c-98 -53 -160 -158 -160 -288 c0 -154 115 -264 159 -279c-37 54 -85 130 -85 285c0 120 32 218 86 282zM600 -125c-42 28 -75 59 -119 113c-8 -3 -20 -3 -30 -3h-12c-16 0 -25 0 -41 4c37 -48 97 -93 202 -114'], + 0x211D: [702,0,876,80,796,'634 515c0 76 -47 109 -120 132c36 -36 51 -77 51 -138c0 -55 -12 -90 -42 -122c73 23 111 59 111 128zM525 509c0 100 -38 153 -184 153c-19 0 -24 -5 -24 -24v-267c20 -2 33 -2 48 -2c112 0 160 47 160 140zM290 40c-10 18 -13 45 -13 83v515c0 9 1 17 1 24h-83 c10 -17 12 -43 12 -83v-445c0 -46 -2 -75 -12 -94h95zM690 40c-5 6 -11 12 -17 19l-221 276c-22 -2 -55 -3 -70 -3l223 -292h85zM796 20c0 -10 -7 -20 -20 -20h-181c-5 0 -13 4 -16 8l-244 320c-11 1 -5 1 -18 2v-207c0 -73 8 -82 78 -82c13 0 19 -10 19 -21s-7 -20 -20 -20 h-294c-13 0 -20 11 -20 22c0 10 6 20 18 20c62 0 69 18 69 92v445c0 71 -5 81 -69 81c-12 0 -18 8 -18 22c0 11 7 20 20 20h287c168 0 287 -52 287 -187c0 -96 -60 -152 -176 -174l206 -256c25 -30 41 -43 74 -43c12 0 18 -11 18 -22'], + 0x2124: [702,0,808,79,728,'728 179l-23 -162c-2 -11 -9 -17 -20 -17h-585c-13 0 -20 9 -20 20c0 6 -1 8 4 15l438 627h-208c-141 0 -155 -14 -169 -141c-1 -11 -11 -16 -21 -16c-13 0 -22 7 -20 22l18 157c1 12 8 18 20 18h546c13 0 20 -9 20 -20c0 -6 0 -9 -4 -15l-433 -627h246 c133 0 151 5 171 148c1 9 8 14 20 14c14 0 22 -8 20 -23zM654 662h-84l-435 -622h89'], + 0x213C: [511,16,738,80,658,'658 378c-38 -12 -61 -16 -94 -20v-141c0 -98 19 -217 19 -217h-153v352h-7c-38 0 -90 3 -132 7v-152c0 -113 -19 -223 -86 -223c-86 0 -99 85 -99 163c0 11 9 19 20 19s20 -9 20 -19c0 -33 40 -42 55 -42c49 0 50 39 50 100c0 0 1 181 1 158c-70 7 -69 8 -83 8 c-15 0 -49 1 -49 -39c0 -8 -6 -21 -20 -21c-19 0 -20 15 -20 23c0 101 41 146 124 146c47 0 146 -14 248 -14c74 0 131 15 206 45v-133zM618 408v45c-50 -15 -99 -27 -166 -27c-102 0 -201 14 -248 14c-37 0 -61 0 -73 -32c14 4 28 3 38 3c14 0 54 -5 82 -8 c67 -7 129 -11 172 -11h47v-352h66c-5 35 -12 105 -12 177v177c47 5 73 9 94 14zM242 84c-13 -17 -27 -21 -43 -21c-20 0 -33 4 -50 24c1 -38 22 -65 54 -65c25 0 34 19 39 62'], + 0x213D: [491,234,715,80,635,'635 458c0 -5 -2 -10 -6 -16c-117 -158 -186 -285 -226 -384c14 -93 16 -171 16 -178c0 -104 -51 -114 -75 -114c-113 0 -137 35 -137 127c0 55 16 149 112 334c-28 67 -77 124 -144 124c-15 0 -55 -11 -55 -42c0 -10 -9 -20 -20 -20s-20 9 -20 20c0 67 38 182 120 182 c76 0 109 -112 146 -214l113 188c3 5 11 9 17 9h137c14 0 22 -7 22 -16zM286 338c-17 62 -57 113 -86 113c-39 0 -61 -35 -71 -74c17 9 35 14 46 14c40 0 84 -18 111 -53zM574 434h-87c-210 -331 -240 -469 -240 -541c0 -57 14 -82 75 -86c-7 7 -11 20 -11 39 c0 50 12 141 72 272c39 88 101 192 191 316zM377 -134c0 5 -1 45 -6 102c-15 -54 -20 -94 -20 -122c0 -10 2 -12 5 -12c8 0 21 11 21 32'], + 0x213E: [702,0,734,80,654,'654 565c0 -14 -11 -23 -19 -23c-12 0 -20 5 -21 18c-9 97 -32 101 -144 101h-141c-22 0 -22 -20 -22 -44v-494c0 -63 11 -78 75 -82c13 -1 19 -7 19 -20v-1c0 -13 -7 -20 -20 -20h-281c-13 0 -20 7 -20 20v2c0 13 6 19 19 20c64 4 71 19 71 92v445c0 61 -10 75 -72 81 c-12 1 -18 8 -18 20v2c0 13 7 20 20 20h531c13 0 20 -6 20 -19zM280 40c-10 18 -13 45 -13 83v494c0 17 2 32 6 45h-76c10 -18 13 -44 13 -83v-445c0 -45 -3 -75 -13 -94h83'], + 0x213F: [702,0,883,80,803,'803 20c0 -13 -7 -20 -20 -20h-277c-13 0 -20 7 -20 20v2c0 13 6 19 19 20c65 4 71 18 71 92v445c0 66 -10 76 -80 82h-109c-70 -6 -80 -16 -80 -82v-456c0 -62 10 -75 72 -81c12 -1 18 -8 18 -20v-2c0 -13 -7 -20 -20 -20h-277c-13 0 -20 7 -20 20v2c0 13 6 19 19 20 c65 4 71 18 71 92v445c0 63 -9 75 -72 81c-12 1 -18 8 -18 20v2c0 13 7 20 20 20h683c13 0 20 -7 20 -20v-2c0 -12 -6 -19 -18 -20c-63 -6 -72 -18 -72 -81v-456c0 -62 10 -75 72 -81c12 -1 18 -8 18 -20v-2zM686 40c-10 18 -13 44 -13 83v456c0 39 2 65 12 83h-82 c10 -18 13 -44 13 -83v-445c0 -45 -2 -75 -12 -94h82zM280 40c-10 18 -13 44 -13 83v456c0 39 3 65 13 83h-82c10 -18 12 -44 12 -83v-445c0 -45 -2 -75 -12 -94h82'], + 0x2140: [728,228,884,80,803,'803 -17l-51 -196c-2 -10 -9 -15 -19 -15h-630c-14 0 -23 7 -23 16c0 4 2 9 6 15l261 417l-255 479c-3 6 -4 11 -4 15c0 9 9 14 22 14h601c13 0 19 -6 20 -19l9 -150c1 -14 -9 -22 -19 -22c-9 0 -19 5 -21 17c-9 43 -19 84 -33 102c-21 23 -76 32 -145 32h-261l192 -355 c2 -3 3 -6 3 -9c0 -4 -2 -9 -4 -12l-248 -398h400c91 0 130 8 162 82c4 9 11 13 18 13c12 0 23 -10 19 -26zM411 323l-197 365h-71l228 -427zM740 -102c-31 -20 -73 -24 -136 -24h-426l-39 -62h579'], + 0x2145: [702,0,869,43,834,'824 354c-42 -200 -233 -354 -461 -354h-303c-13 0 -19 7 -16 20l1 2c2 12 10 20 22 20c63 0 76 19 89 81l97 456c14 64 10 81 -55 81c-12 0 -16 8 -13 20v2c3 13 11 20 24 20h288c261 0 373 -133 327 -348zM784 354c27 124 -7 215 -95 265c49 -65 48 -163 25 -272 c-21 -97 -50 -176 -98 -235c85 58 147 143 168 242zM674 347c36 172 12 315 -214 315c-32 0 -43 -4 -48 -29l-120 -562c-5 -25 4 -31 36 -31c230 0 305 116 346 307zM380 662h-80c5 -17 2 -43 -7 -83l-97 -456c-8 -39 -17 -65 -29 -83h82c-1 9 1 19 3 31l120 562 c2 11 5 21 8 29'], + 0x2146: [723,8,699,80,659,'658 703l-121 -573c-8 -38 -5 -48 24 -48c3 0 4 0 14 1c15 2 21 -5 17 -20v-1c-2 -9 -8 -16 -17 -19l-178 -51c-15 -5 -15 12 -14 18l7 34c-47 -40 -87 -52 -134 -52c-120 0 -198 93 -169 231c33 152 175 271 300 271c35 0 59 -7 92 -34l29 139c7 33 2 41 -29 41 c-10 0 -17 1 -17 1c-12 2 -17 10 -15 19c2 8 9 17 22 20l167 42c19 5 26 -2 22 -19zM613 676l-66 -13c8 -12 8 -32 1 -64l-118 -556l67 15c-8 13 -8 35 0 72zM456 352c10 50 -24 106 -74 106c-74 0 -137 -87 -160 -195c-25 -117 9 -201 90 -201c27 0 52 10 73 28 c10 8 19 17 20 22zM265 32c-74 20 -110 106 -83 231c10 47 28 96 57 136c-44 -32 -98 -113 -112 -176c-23 -112 39 -190 138 -191'], + 0x2147: [500,10,624,83,552,'551 311c-1 -15 -10 -23 -25 -23h-302c-10 -60 -9 -91 2 -127c18 -53 54 -78 108 -78c62 0 108 27 170 98c5 5 12 9 20 9c13 -1 23 -11 12 -28c-69 -112 -163 -172 -266 -172c-126 0 -212 93 -180 244c33 158 175 266 312 266c57 0 104 -24 129 -63 c20 -32 25 -62 20 -126zM512 328c1 39 -3 61 -17 83c-12 19 -30 33 -53 41c20 -24 22 -64 14 -124h56zM415 329c10 65 2 122 -54 122c-54 0 -96 -50 -125 -122h179zM358 45c-11 -1 -22 -2 -33 -2c-70 0 -116 32 -139 99c-13 44 -16 83 1 165c5 20 24 60 44 93 c-49 -36 -90 -115 -101 -166c-27 -125 44 -204 148 -204c27 0 54 5 80 15'], + 0x2148: [728,0,455,43,403,'402 645c-10 -46 -57 -83 -103 -83s-78 37 -68 83s57 83 103 83s78 -37 68 -83zM356 475l-76 -360c-14 -62 12 -70 43 -78c13 -2 17 -7 16 -18c-1 -12 -12 -19 -25 -19h-253c-13 0 -20 7 -17 19c3 11 11 16 24 18c33 4 69 16 83 78l50 238c8 36 5 44 -14 51 c-12 4 -23 -2 -36 -4c-10 -2 -14 11 -12 22c1 7 5 13 12 15l192 56c26 8 13 -18 13 -18zM362 645c5 24 -13 43 -37 43s-49 -19 -54 -43s12 -43 36 -43s50 19 55 43zM309 443l-68 -16c8 -15 8 -39 0 -74l-50 -238c-6 -28 -17 -54 -30 -75h76c-4 21 -4 46 3 75'], + 0x2149: [728,218,493,6,511,'463 476l-98 -461c-32 -152 -136 -233 -261 -233c-65 0 -104 30 -96 67c6 27 36 61 67 61c35 0 42 -21 59 -47c12 -18 9 -25 23 -25c12 0 23 7 31 15c15 18 22 42 38 117l82 387c7 35 6 50 -13 50c-10 0 -42 -6 -42 -6c-16 -3 -23 8 -21 20c2 8 8 15 19 19l189 55 c5 1 8 2 11 2c11 0 15 -7 12 -21zM108 -178c-9 17 -11 48 -39 48c-13 0 -20 -8 -23 -21c-4 -18 31 -25 62 -27zM417 448l-73 -17c10 -14 12 -37 4 -74l-82 -387c-10 -45 -18 -74 -27 -95c31 32 73 80 86 140zM510 645c-10 -46 -58 -83 -104 -83s-77 37 -67 83s57 83 103 83 s78 -37 68 -83zM470 645c5 24 -13 43 -37 43s-49 -19 -54 -43s12 -43 36 -43s50 19 55 43'], + 0x1D538: [714,0,923,80,843,'843 22c0 -11 -7 -22 -20 -22h-263c-13 0 -20 9 -20 20s6 21 19 21c44 0 53 6 53 23c0 15 -8 38 -19 66l-49 102h-269l-51 -124c-7 -16 -13 -28 -13 -37c0 -10 4 -31 55 -31c12 0 18 -11 17 -20c0 -10 -9 -20 -23 -20h-158c-14 0 -22 11 -22 21c0 9 6 19 19 19 c42 0 62 28 121 163l212 499c3 7 10 12 18 12h28c8 0 15 -5 18 -12l254 -577c31 -65 39 -83 74 -83c13 0 19 -9 19 -20zM751 40c-11 15 -22 37 -37 68l-250 568l-41 -94l206 -435c16 -34 23 -64 23 -83c0 -9 -1 -17 -3 -24h102zM524 274l-121 259l-110 -259h231'], + 0x1D539: [702,0,806,80,726,'726 196c0 -52 -22 -102 -62 -137c-39 -35 -126 -59 -209 -59h-355c-13 0 -20 10 -20 21s6 20 19 20c67 0 80 18 80 82v456c0 65 -14 82 -80 82c-13 0 -19 10 -19 21s7 20 20 20h300c187 0 291 -64 291 -186c0 -45 -18 -87 -45 -110c-20 -17 -43 -28 -77 -37 c47 -13 78 -26 103 -49c33 -31 54 -76 54 -124zM651 516c0 70 -41 111 -120 138c44 -32 60 -83 60 -142c0 -41 -9 -78 -33 -106c27 8 46 16 62 30c19 17 31 47 31 80zM551 512c0 86 -56 150 -168 150h-45c-10 0 -12 -7 -12 -20v-254h87c90 0 138 50 138 124zM686 196 c0 36 -16 69 -40 94c-21 18 -46 29 -83 40c36 -33 50 -79 50 -135c0 -72 -24 -113 -85 -150c44 8 88 24 110 44c30 27 48 67 48 107zM573 195c0 60 -23 108 -78 131c-33 14 -77 18 -169 19v-274c0 -26 13 -31 54 -31c66 0 106 28 138 45c38 23 55 58 55 110zM290 40 c-3 9 -4 19 -4 31v571c0 7 0 15 1 20h-80c10 -18 12 -44 12 -83v-456c0 -38 -2 -65 -12 -83h83'], + 0x1D53B: [702,0,869,80,789,'789 354c0 -200 -158 -354 -386 -354h-303c-13 0 -20 7 -20 20v2c0 12 6 20 18 20c63 0 72 19 72 81v456c0 64 -7 81 -72 81c-12 0 -18 8 -18 20v2c0 13 7 20 20 20h288c261 0 401 -133 401 -348zM749 354c0 124 -53 215 -152 265c63 -65 83 -163 83 -272 c0 -97 -12 -176 -48 -235c73 58 117 143 117 242zM640 347c0 172 -55 315 -281 315c-32 0 -42 -4 -42 -29v-562c0 -25 10 -31 42 -31c230 0 281 116 281 307zM280 40c-2 9 -3 19 -3 31v562c0 11 1 21 2 29h-80c9 -17 11 -43 11 -83v-456c0 -39 -3 -65 -12 -83h82'], + 0x1D53C: [702,0,795,80,714,'714 170l-41 -155c-2 -9 -9 -15 -19 -15h-554c-13 0 -20 11 -20 22c0 10 6 20 18 20c63 0 72 19 72 81v456c0 62 -12 81 -72 81c-12 0 -18 8 -18 20v2c0 13 7 20 20 20h552c13 0 20 -7 20 -20l3 -128c0 -9 -10 -18 -18 -18c-11 0 -22 4 -22 14c-3 104 -26 111 -154 111 h-140c-19 0 -24 -4 -24 -24v-249h149c75 0 109 7 109 78c0 12 12 20 20 19s20 -9 20 -20v-196c0 -11 -12 -19 -20 -20s-20 10 -20 20c0 53 -24 79 -109 79h-149v-275c0 -14 0 -21 4 -24c9 -7 48 -9 95 -9h28c186 0 205 19 233 144c2 9 13 13 23 11c11 -2 17 -14 14 -25z M281 40c-2 8 -4 19 -4 33v564c0 10 0 18 1 25h-81c10 -18 13 -44 13 -83v-456c0 -39 -3 -65 -13 -83h84'], + 0x1D53D: [702,0,756,80,676,'676 555c1 -14 -8 -22 -18 -22c-9 0 -21 4 -22 17c-10 91 -3 111 -156 111h-141c-19 0 -22 -4 -22 -24v-249h139c92 0 109 11 109 80c0 12 10 19 19 19c10 1 21 -7 21 -22v-196c0 -14 -10 -21 -20 -21c-9 0 -20 6 -20 18c0 67 -20 82 -109 82h-139v-225 c0 -63 11 -78 75 -82c13 -1 19 -7 19 -20v-1c0 -13 -7 -20 -20 -20h-291c-13 0 -20 7 -20 20v2c0 13 6 20 19 20c64 0 71 19 71 92v445c0 61 -10 81 -72 81c-12 0 -18 8 -18 20v2c0 13 7 20 20 20h551c13 0 20 -6 20 -19zM290 40c-10 18 -13 45 -13 83v514c0 10 1 19 3 25 h-83c10 -18 13 -44 13 -83v-445c0 -45 -3 -75 -13 -94h93'], + 0x1D53E: [719,14,897,80,817,'817 365c0 -11 -6 -21 -18 -21c-47 0 -54 -6 -54 -67v-203c0 -5 -3 -13 -7 -16c-46 -36 -183 -72 -272 -72c-212 0 -386 132 -386 359c0 216 162 371 373 371c47 0 107 -7 154 -24c16 -6 38 -10 47 -10c16 0 30 9 36 22c4 10 12 15 19 15c10 0 18 -8 19 -22l8 -198 c1 -14 -10 -22 -21 -22c-9 0 -19 6 -19 19c-5 109 -70 178 -225 178c-135 0 -237 -143 -237 -328c0 -184 92 -319 254 -319c66 0 116 41 116 71v167c0 70 -5 79 -71 79c-13 0 -19 10 -19 21s7 20 20 20h263c13 0 20 -9 20 -20zM714 345h-85c9 -17 15 -43 15 -80v-167 c0 -14 -6 -30 -18 -47c32 10 61 21 79 34v192c0 31 2 52 9 68zM308 646c-113 -52 -188 -162 -188 -301c0 -138 72 -235 177 -284c-66 63 -103 164 -103 285c0 127 45 234 114 300'], + 0x1D540: [702,0,517,80,437,'437 21c0 -11 -7 -21 -20 -21h-317c-13 0 -20 10 -20 21s6 20 19 20c72 0 84 16 84 82v456c0 66 -9 82 -84 82c-13 0 -19 10 -19 21s7 20 20 20h317c13 0 20 -9 20 -20s-6 -21 -19 -21c-74 0 -85 -18 -85 -82v-456c0 -64 14 -82 85 -82c13 0 19 -9 19 -20zM307 40 c-11 18 -14 45 -14 83v456c0 38 3 65 13 83h-95c10 -18 12 -44 12 -83v-456c0 -38 -3 -65 -12 -83h96'], + 0x1D541: [702,14,600,80,520,'520 682c0 -11 -6 -22 -18 -22c-73 0 -79 -16 -79 -81v-380c0 -134 -76 -213 -218 -213c-67 0 -125 26 -125 85c0 31 20 72 64 72c47 0 66 -23 81 -58c10 -22 6 -55 20 -55c24 0 30 34 30 74v475c0 65 -6 81 -80 81c-12 0 -18 10 -18 22c0 11 7 20 20 20h303 c13 0 20 -9 20 -20zM207 24c-7 10 -12 31 -18 45c-9 19 -18 34 -45 34c-18 0 -24 -19 -24 -32c0 -37 53 -47 87 -47zM395 662h-92c10 -18 12 -44 12 -83v-475c0 -20 -3 -39 -8 -54c50 26 76 78 76 149v380c0 39 2 65 12 83'], + 0x1D542: [702,0,929,80,849,'849 21c0 -10 -7 -21 -20 -21h-325c-13 0 -20 11 -20 22s7 20 20 20c45 0 52 2 52 12c0 24 -54 93 -130 167l-107 107v-205c0 -63 9 -76 73 -81c13 -1 19 -9 19 -20c0 -12 -7 -22 -20 -22h-291c-13 0 -20 11 -20 22s6 20 19 20c65 0 73 19 73 92v445c0 62 -6 81 -74 81 c-12 0 -18 10 -18 22c0 11 7 20 20 20h293c13 0 20 -9 20 -20c0 -12 -6 -22 -18 -22c-67 0 -76 -17 -76 -81v-184l183 165c55 50 67 66 67 80c0 17 -11 20 -50 20c-13 0 -20 11 -20 22s7 20 20 20h241c13 0 20 -9 20 -20c0 -12 -7 -22 -20 -22c-80 0 -94 -5 -126 -34 l-212 -194l263 -283c85 -92 96 -108 145 -108c13 0 19 -9 19 -20zM736 40c-21 18 -46 43 -81 81l-264 285l-54 -40l117 -117c85 -85 142 -167 142 -195c0 -5 -1 -10 -2 -14h142zM291 40c-9 18 -12 44 -12 83v456c0 39 2 65 12 83h-92c10 -18 13 -44 13 -83v-445 c0 -45 -2 -75 -13 -94h92'], + 0x1D543: [702,0,795,80,714,'291 662h-94c10 -18 13 -44 13 -83v-456c0 -39 -3 -65 -13 -83h84c-3 9 -4 20 -4 32v507c0 39 3 65 14 83zM714 170l-41 -155c-2 -9 -9 -15 -19 -15h-554c-13 0 -20 11 -20 22c0 10 6 20 18 20c67 0 72 19 72 81v456c0 62 -4 81 -72 81c-12 0 -18 11 -18 22s7 20 20 20 h294c13 0 20 -11 20 -22s-6 -20 -19 -20c-72 0 -78 -18 -78 -81v-506c0 -31 15 -33 109 -33h28c179 0 185 12 223 144c2 9 13 13 23 11c11 -2 17 -14 14 -25'], + 0x1D544: [702,0,1037,80,957,'957 22c0 -11 -7 -22 -20 -22h-288c-13 0 -20 11 -20 22s6 20 19 20c68 0 74 19 74 92v386l-259 -509c-4 -7 -9 -9 -14 -9s-10 2 -14 10l-216 476v-326c0 -93 9 -120 87 -120c13 0 19 -11 19 -22s-7 -20 -20 -20h-205c-13 0 -20 11 -20 22s6 20 19 20c70 0 80 26 80 120 v417c0 71 -10 82 -78 82c-13 0 -19 10 -19 21s7 20 20 20h153c8 0 15 -5 18 -12l234 -504l256 505c3 7 11 11 18 11h156c13 0 20 -11 20 -22c0 -10 -6 -20 -18 -20c-65 0 -71 -12 -71 -81v-456c0 -61 10 -81 71 -81c12 0 18 -10 18 -20zM841 40c-10 18 -13 44 -13 83v456 c0 39 3 65 13 83h-48l-31 -61v-467c0 -45 -3 -75 -13 -94h92zM484 141l-241 521h-38c9 -8 14 -42 14 -78l232 -508'], + 0x1D546: [716,14,873,80,793,'793 347c0 -213 -153 -361 -362 -361c-181 0 -351 157 -351 365c0 213 155 365 357 365c190 0 356 -147 356 -369zM753 347c0 134 -66 237 -162 289c53 -64 88 -163 88 -288c0 -90 -22 -205 -83 -281c96 53 157 154 157 280zM639 348c0 196 -89 328 -202 328 c-116 0 -203 -132 -203 -327c0 -185 85 -323 197 -323c164 0 208 193 208 322zM283 639c-98 -53 -163 -158 -163 -288c0 -122 66 -225 158 -281c-51 65 -84 163 -84 279c0 125 35 226 89 290'], + 0x1D54A: [716,17,679,79,599,'599 184c0 -111 -127 -198 -254 -198c-42 0 -86 8 -127 24c-17 7 -33 11 -46 11c-14 0 -23 -5 -23 -18c0 -9 -7 -20 -21 -20c-15 0 -18 13 -19 21l-29 199c-2 12 8 26 16 26c15 0 21 -7 22 -15c10 -54 17 -90 27 -105c34 -54 130 -82 198 -82c70 0 99 60 99 122 c0 93 -68 120 -164 171c-123 63 -169 125 -169 209c0 106 125 187 219 187c38 0 77 -8 116 -23c12 -5 27 -9 40 -9c14 0 26 4 31 17c3 9 12 15 19 15c8 0 19 -8 20 -18l21 -200c1 -11 -6 -24 -17 -24c-15 0 -21 9 -22 16c-6 57 -10 76 -31 112c-18 32 -81 73 -175 73 c-51 0 -80 -56 -80 -106c0 -54 43 -96 148 -151c144 -77 201 -146 201 -234zM559 184c0 76 -55 131 -179 198c-125 67 -170 123 -170 187c0 27 7 55 19 78c-45 -26 -80 -68 -80 -118c0 -72 44 -120 147 -173c114 -61 186 -98 186 -207c0 -35 -8 -69 -23 -97 c57 28 100 75 100 132'], + 0x1D54B: [702,0,800,79,720,'720 527c1 -14 -9 -25 -20 -25s-21 9 -21 21c-2 51 -6 100 -22 118c-17 19 -29 21 -137 21h-45v-539c0 -64 12 -82 80 -82c13 0 19 -10 19 -21s-7 -20 -20 -20h-306c-13 0 -20 10 -20 21s6 20 19 20c69 0 78 18 78 93v528h-45c-67 0 -120 -2 -137 -21 c-16 -18 -20 -67 -22 -118c0 -12 -11 -17 -21 -17c-11 0 -21 7 -20 21l6 156c0 13 7 19 20 19h588c13 0 19 -6 20 -19zM448 40c-10 18 -13 45 -13 83v539h-70v-528c0 -45 -3 -75 -13 -94h96'], + 0x1D54C: [702,14,911,80,831,'831 680c0 -10 -6 -20 -18 -20c-87 0 -93 -8 -93 -120v-268c0 -216 -69 -286 -259 -286c-182 0 -289 66 -289 273v320c0 72 -7 81 -74 81c-12 0 -18 11 -18 22s7 20 20 20h292c13 0 21 -9 21 -20c0 -14 -7 -22 -19 -22c-69 0 -75 -10 -75 -81v-328 c0 -145 56 -224 143 -224c159 0 218 61 218 236v277c0 112 -9 120 -91 120c-12 0 -18 11 -18 22s7 20 20 20h220c13 0 20 -11 20 -22zM340 42c-38 44 -61 114 -61 209v328c0 40 2 65 12 83h-91c10 -18 12 -44 12 -83v-320c0 -125 46 -189 128 -217'], + 0x1D54D: [702,13,892,80,812,'812 682c0 -12 -7 -22 -19 -22c-50 0 -56 -11 -86 -88l-224 -570c-4 -10 -13 -15 -24 -15c-8 1 -16 7 -19 14l-250 559c-36 80 -43 99 -90 100c-13 0 -20 8 -20 22c0 11 7 20 20 20h275c13 0 20 -9 20 -20c0 -12 -6 -22 -19 -22c-55 0 -58 -4 -58 -22 c0 -15 9 -37 41 -110l153 -341l137 350c12 29 30 75 30 92c0 25 -27 31 -66 31c-13 0 -19 11 -19 22s7 20 20 20h178c13 0 20 -9 20 -20zM492 136l-169 376c-38 83 -45 109 -45 126c0 9 0 17 1 24h-99c13 -19 27 -46 46 -85l234 -523'], + 0x1D54E: [702,14,1167,80,1087,'1087 682c0 -11 -5 -22 -16 -22c-46 0 -63 -4 -84 -65l-206 -593c-4 -11 -12 -16 -24 -16c-14 0 -19 8 -22 16l-158 417l-150 -417c-4 -12 -12 -16 -25 -16s-19 8 -22 16l-195 546c-31 86 -45 112 -87 112c-12 0 -18 10 -18 22c0 11 7 20 20 20h241c13 0 20 -9 20 -20 s-6 -21 -18 -21c-27 0 -38 -5 -38 -22c0 -10 4 -26 11 -44l145 -380l94 264l-38 97c-28 72 -31 85 -74 85c-13 0 -19 10 -19 21s7 20 20 20h264c13 0 20 -10 20 -21s-6 -20 -19 -20c-39 0 -60 -6 -60 -25c0 -11 7 -28 15 -48l13 -32l134 -344l119 342c12 35 19 59 19 74 c0 29 -21 32 -68 32c-12 0 -18 11 -18 22s7 20 20 20h184c13 0 20 -9 20 -20zM441 158l-162 423c-8 22 -13 44 -13 58c0 8 1 16 3 23h-95c16 -20 31 -52 50 -100l181 -506zM791 153l-163 420c-12 28 -18 48 -18 63c0 9 2 18 6 26h-94c11 -16 21 -39 34 -72l202 -532'], + 0x1D54F: [702,0,914,80,834,'834 22c0 -11 -7 -22 -20 -22h-296c-13 0 -20 11 -20 22s6 20 19 20c47 0 50 3 50 20c0 15 -20 47 -52 95l-88 130l-114 -139c-37 -45 -55 -67 -55 -82c0 -19 13 -24 75 -24c12 0 18 -11 18 -22s-7 -20 -20 -20h-231c-13 0 -20 11 -20 22c0 10 6 20 18 20 c58 0 85 11 168 112l138 168l-124 182c-92 133 -112 157 -170 157c-12 0 -18 10 -18 21s7 20 20 20h302c13 0 20 -9 20 -20s-8 -21 -19 -21c-39 0 -49 -5 -49 -20c0 -22 29 -63 87 -149l48 -71l123 152c27 35 49 51 49 66c0 16 -11 22 -74 22c-13 0 -29 7 -29 21 c0 11 7 20 20 20h216c13 0 20 -9 20 -20s-6 -22 -19 -22c-50 0 -63 -2 -137 -94l-144 -180l192 -273c39 -52 45 -71 98 -71c12 0 18 -10 18 -20zM726 40c-12 12 -24 28 -40 49l-265 380c-69 95 -95 146 -95 172c0 8 1 15 3 21h-123c27 -25 58 -66 106 -136l237 -347 c38 -58 58 -98 58 -117c0 -8 0 -15 -1 -22h120'], + 0x1D550: [702,0,903,80,823,'823 682c0 -11 -7 -22 -20 -22c-51 0 -67 -6 -141 -131l-132 -222v-184c0 -67 10 -82 87 -82c13 0 19 -10 19 -21s-7 -20 -20 -20h-320c-13 0 -20 10 -20 21s6 20 19 20c79 0 85 16 85 93v175l-133 195c-101 149 -108 156 -148 156c-13 0 -19 11 -19 22s7 20 20 20h292 c13 0 20 -9 20 -20c0 -12 -6 -22 -18 -22c-36 0 -66 -5 -66 -28c0 -9 4 -20 14 -34l167 -249l141 235c15 24 21 41 21 52c0 22 -24 25 -60 25c-13 0 -19 10 -19 21s7 20 20 20h191c13 0 20 -9 20 -20zM503 40c-10 18 -13 45 -13 83v182l-181 270c-17 25 -25 44 -25 59 c0 10 4 19 10 28h-118c24 -25 56 -67 104 -136l137 -199c1 -2 3 -11 3 -11v-182c0 -45 -2 -75 -12 -94h95'], + 0x1D552: [500,10,630,80,550,'550 57c0 -3 -3 -11 -5 -13c-38 -41 -62 -54 -100 -54c-39 0 -83 14 -93 68c-66 -51 -106 -68 -147 -68c-71 0 -125 50 -125 122c0 37 16 75 41 98c44 40 67 49 226 112v56c0 49 -24 76 -69 76c-35 0 -63 -17 -63 -41c0 -6 2 -12 4 -18c2 -7 4 -14 4 -23 c0 -28 -32 -54 -63 -54c-30 0 -55 25 -55 55c0 29 18 63 47 87c30 24 83 40 139 40c69 0 123 -9 160 -65c24 -37 22 -56 22 -112v-203c0 -36 1 -49 20 -49c10 0 18 2 28 8c5 3 10 4 13 4c10 0 16 -8 16 -22v-4zM183 376c0 17 -6 22 -10 28c-2 4 -3 10 -1 20 c-16 -15 -27 -34 -27 -51c0 -8 7 -15 15 -15c13 0 23 4 23 18zM347 139v134c-112 -42 -149 -73 -149 -128v-4c0 -38 25 -69 56 -69c20 0 47 7 71 21c18 11 22 19 22 46zM233 34c-60 25 -70 64 -73 87c-1 9 -2 17 -2 25c0 12 2 25 6 44c-28 -17 -44 -57 -44 -78 c0 -40 31 -81 85 -81c9 0 18 1 28 3zM470 34c-27 2 -37 29 -37 86v203c0 81 -22 105 -76 127c23 -16 30 -43 30 -72l-1 -205c0 -39 0 -69 1 -76c4 -50 30 -67 58 -67c9 0 17 1 25 4'], + 0x1D553: [723,10,695,80,615,'615 260c0 -153 -120 -270 -263 -270c-90 0 -202 43 -202 76v532c0 35 -7 42 -40 42c-22 0 -30 9 -30 19c0 9 7 19 17 21c4 1 23 4 23 4c49 13 97 22 139 38c18 7 20 -18 20 -32v-256c31 36 81 59 133 59c108 0 203 -101 203 -233zM574 279c0 68 -60 174 -161 174 c-13 0 -27 -2 -42 -6c94 0 162 -89 162 -234c0 -34 -4 -70 -12 -96c16 29 53 44 53 162zM493 213c0 117 -46 194 -122 194c-47 0 -92 -21 -92 -56v-268c0 -23 42 -49 90 -49c79 0 124 73 124 179zM268 36c-26 21 -29 26 -29 73v562c-44 -15 -48 -8 -62 -13 c7 -12 13 -33 13 -60v-519c0 -21 58 -43 78 -43'], + 0x1D554: [500,10,608,80,528,'475 382c0 28 -24 51 -59 65c4 -8 8 -18 11 -30l6 -24c4 -14 11 -25 22 -25c10 0 20 6 20 14zM380 47c-11 -2 -24 -1 -24 -1c-114 0 -192 93 -192 232c0 33 9 83 27 126c-48 -41 -71 -120 -71 -173c0 -115 70 -201 171 -201c8 0 34 1 57 5c13 3 25 6 32 12zM528 162 c0 -3 -1 -7 -3 -11c-19 -42 -55 -88 -86 -114c-47 -39 -99 -47 -148 -47c-123 0 -211 102 -211 241c0 160 141 269 262 269c96 0 173 -56 173 -118c0 -28 -26 -54 -60 -54c-27 0 -52 21 -60 55l-6 23c-10 34 -21 53 -53 53c-81 0 -134 -79 -134 -181 c0 -113 62 -192 154 -192c54 0 91 24 134 85c5 8 13 11 20 11c9 -1 18 -9 18 -20'], + 0x1D555: [723,8,699,80,619,'619 62c0 -9 -5 -16 -13 -19l-167 -51c-14 -5 -18 12 -18 18v34c-39 -40 -76 -52 -123 -52c-120 0 -218 93 -218 231c0 152 117 271 242 271c35 0 60 -7 99 -34v139c0 33 -7 41 -38 41c-10 0 -17 1 -17 1c-13 2 -19 10 -19 19c0 8 5 17 17 20l159 42c17 5 26 -2 26 -19 v-573c0 -38 6 -48 35 -48c3 0 4 0 13 1c15 2 22 -5 22 -20v-1zM525 58c-11 13 -16 35 -16 72v546l-63 -13c11 -12 15 -32 15 -64v-556zM421 112v240c0 50 -46 106 -96 106c-74 0 -119 -87 -119 -195c0 -117 52 -201 133 -201c27 0 50 10 67 28c8 8 15 17 15 22zM298 32 c-78 20 -132 106 -132 231c0 47 8 96 28 136c-37 -32 -74 -113 -74 -176c0 -112 79 -190 178 -191'], + 0x1D556: [500,10,624,80,544,'542 162c-46 -112 -127 -172 -230 -172c-126 0 -232 93 -232 244c0 158 119 266 256 266c57 0 109 -24 142 -63c27 -32 38 -62 47 -126c2 -15 -5 -23 -20 -23h-302c3 -60 10 -91 29 -127c29 -53 70 -78 124 -78c62 0 103 27 150 98c3 5 10 9 18 9c13 -1 25 -11 18 -28z M482 328c-7 39 -16 61 -34 83c-16 19 -37 33 -62 41c25 -24 36 -64 40 -124h56zM385 329c-4 65 -24 122 -80 122c-54 0 -85 -50 -99 -122h179zM388 45c-10 -1 -21 -2 -32 -2c-70 0 -123 32 -160 99c-23 44 -34 83 -34 165c0 20 11 60 24 93c-41 -36 -66 -115 -66 -166 c0 -125 88 -204 192 -204c27 0 53 5 76 15'], + 0x1D557: [723,0,583,80,503,'503 649c0 -30 -22 -53 -65 -53c-19 0 -37 10 -56 43c-16 26 -17 34 -37 34c-34 0 -49 -28 -49 -80v-118h109c13 0 20 -10 20 -21s-7 -20 -20 -20h-108v-314c0 -67 42 -74 79 -80c11 -2 17 -10 17 -20s-5 -20 -17 -20h-276c-13 0 -20 10 -20 21s6 19 19 20 c60 3 68 16 68 79v314h-66c-13 0 -20 10 -20 21s7 20 20 20h66c3 81 13 126 39 168c28 50 107 80 177 80c71 0 120 -33 120 -74zM462 649c0 20 -22 31 -64 34c8 -5 14 -17 19 -27c5 -12 13 -22 24 -22s21 1 21 15zM267 40c-7 18 -10 43 -10 80l1 473c0 9 0 32 6 62 c-25 -34 -57 -63 -57 -201v-334c0 -37 -2 -62 -10 -80h70'], + 0x1D558: [500,218,632,80,552,'552 436c0 -13 -7 -20 -20 -20h-69c15 -29 32 -48 32 -87c0 -55 -27 -94 -64 -124c-33 -30 -77 -46 -119 -46c-6 0 -41 2 -66 5c-20 -17 -25 -17 -25 -34c0 -13 43 -16 71 -17l135 -6c71 -4 116 -71 116 -141c0 -42 -19 -77 -63 -112c-56 -44 -138 -72 -219 -72 c-106 0 -181 52 -181 110c0 36 12 75 81 131c-38 20 -44 30 -44 49c0 23 12 47 51 79l34 32c-66 37 -99 77 -99 139c0 99 92 178 194 178c30 0 57 -6 89 -21c40 -17 55 -22 75 -22h71c13 0 20 -7 20 -20v-1zM455 329c0 25 -25 99 -73 109c30 -55 42 -101 42 -149 c0 -14 -6 -42 -8 -54c32 29 39 61 39 94zM384 289c0 38 -12 84 -31 118c-14 27 -38 43 -66 43c-42 0 -67 -34 -67 -89c0 -92 38 -157 96 -157c42 0 68 34 68 85zM218 220c-24 34 -38 83 -38 141c0 0 2 35 5 48c-20 -23 -42 -54 -42 -87c0 -45 28 -74 75 -102zM499 7 c-18 37 -23 53 -91 63c-44 6 -69 5 -117 7c-42 2 -112 -4 -104 36c-6 -7 -29 -17 -29 -41c0 -29 103 -38 217 -41c50 -1 91 -4 124 -24zM492 -49c0 33 -33 40 -118 40c-46 0 -121 5 -164 13c-38 -45 -26 -57 -26 -78c0 -41 58 -64 142 -64s166 33 166 89zM303 -181 c-111 14 -161 56 -161 107c0 0 -1 7 2 17c-12 -14 -24 -38 -24 -51c0 -44 61 -74 141 -74c7 0 33 0 42 1'], + 0x1D559: [721,0,725,80,645,'645 18c0 -12 -11 -18 -22 -18h-213c-11 0 -23 6 -23 18c0 11 6 18 21 20c46 5 42 20 42 77v203c0 64 -21 108 -67 108c-35 0 -65 -28 -103 -70l-1 -241c0 -62 -1 -69 42 -77c16 -3 23 -9 23 -20c0 -12 -12 -18 -23 -18h-216c-11 0 -22 6 -22 18c0 11 4 18 19 20 c47 7 49 17 49 77v483c0 35 -6 41 -42 41c-20 0 -29 9 -29 19s8 20 23 22l18 3c59 17 104 24 133 36c27 11 25 -18 25 -18v-277c50 53 91 69 141 69c90 0 158 -60 158 -174v-204c0 -58 2 -69 45 -77c16 -3 22 -9 22 -20zM546 40c-6 16 -8 40 -8 75v204 c0 86 -48 135 -116 135c-3 0 -11 -1 -14 -1c50 -12 82 -56 82 -135v-203c0 -34 -2 -58 -9 -75h65zM244 40c-4 17 -5 41 -5 75v556c-12 -3 -42 -8 -58 -12c8 -12 10 -31 10 -61v-483c0 -35 -1 -59 -7 -75h60'], + 0x1D55A: [728,0,455,79,375,'305 645c0 -46 -40 -83 -86 -83s-85 37 -85 83s39 83 85 83s86 -37 86 -83zM375 19c1 -12 -8 -19 -21 -19h-253c-13 0 -22 7 -21 19c1 11 7 16 20 18c32 4 66 16 66 78v238c0 36 -4 44 -25 51c-13 4 -23 -2 -35 -4c-9 -2 -17 11 -17 22c0 7 3 13 9 15l180 56 c24 8 17 -18 17 -18v-360c0 -62 27 -70 60 -78c13 -2 19 -7 20 -18zM265 645c0 24 -22 43 -46 43s-45 -19 -45 -43s21 -43 45 -43s46 19 46 43zM268 40c-8 21 -13 46 -13 75v328l-65 -16c11 -15 16 -39 16 -74v-238c0 -28 -5 -54 -14 -75h76'], + 0x1D55B: [728,218,493,80,413,'402 15c0 -152 -87 -233 -212 -233c-65 0 -110 30 -110 67c0 27 23 61 54 61c35 0 47 -21 69 -47c16 -18 14 -25 28 -25c12 0 22 7 28 15c11 18 13 42 13 117v387c0 35 -5 50 -24 50c-10 0 -40 -6 -40 -6c-16 -3 -25 8 -25 20c0 8 4 15 14 19l178 55c4 1 8 2 11 2 c10 0 16 -7 16 -21v-461zM186 -178c-13 17 -21 48 -49 48c-13 0 -19 -8 -19 -21c0 -18 36 -25 68 -27zM362 15v433l-70 -17c13 -14 20 -37 20 -74v-387c0 -45 -2 -74 -6 -95c24 32 56 80 56 140zM413 645c0 -46 -40 -83 -86 -83s-85 37 -85 83s39 83 85 83s86 -37 86 -83z M373 645c0 24 -22 43 -46 43s-45 -19 -45 -43s21 -43 45 -43s46 19 46 43'], + 0x1D55C: [723,0,754,79,674,'674 19c0 -10 -8 -19 -22 -19h-245c-13 0 -20 10 -20 20s7 20 20 20h11c6 0 11 1 11 5c0 8 -19 26 -19 26l-120 136v-125c0 -29 4 -40 38 -41l12 -1c13 -1 19 -10 19 -19c1 -10 -7 -21 -21 -21l-236 1c-15 0 -23 11 -22 21c0 9 7 17 19 19c58 9 61 13 61 57v492 c0 39 -7 51 -34 51c-10 0 -21 -2 -21 -2c-15 -3 -24 8 -24 19c0 8 5 17 15 20l168 44c17 5 26 -2 26 -19v-390l155 101c12 10 20 19 20 26c0 10 -9 0 -32 1c-13 1 -20 11 -20 20c0 10 7 20 20 20l194 1c14 0 20 -10 20 -20s-6 -20 -20 -20c-17 0 -37 -2 -51 -5 c-30 -8 -83 -46 -168 -100l-36 -23l176 -203c40 -45 66 -67 106 -71c13 -1 21 -11 20 -21zM256 41c-4 11 -6 24 -6 41v594l-66 -13c11 -14 16 -36 16 -73v-492c0 -26 0 -44 -5 -57h61zM563 40c-14 12 -29 27 -45 45l-179 210l-47 -25l148 -173s33 -33 42 -57h81'], + 0x1D55D: [722,0,460,80,380,'380 20c0 -10 -7 -20 -21 -20h-252c-14 0 -21 10 -21 20c0 9 6 19 19 20c52 5 64 16 64 62v488c0 38 -7 51 -34 51c-8 0 -21 -1 -32 -2c-15 -1 -23 9 -23 20c0 8 5 16 16 19l178 43c16 4 25 -2 25 -19v-603c0 -47 10 -56 61 -59c13 -1 20 -11 20 -20zM266 40 c-5 14 -7 33 -7 59v577l-68 -13c12 -13 18 -36 18 -73v-488c0 -27 -2 -47 -10 -62h67'], + 0x1D55E: [502,0,1022,80,942,'942 20c0 -10 -7 -20 -22 -20h-216c-14 0 -22 10 -22 20c0 8 6 17 18 20c47 10 42 16 42 64v217c0 77 -15 113 -66 113c-43 0 -60 -9 -101 -53v-269v-29c0 -31 4 -39 46 -43c13 -1 20 -10 20 -20s-8 -20 -22 -20h-211c-14 0 -21 10 -21 20s6 19 19 20c44 4 41 17 41 63 v223c0 64 -17 108 -57 108c-43 0 -50 -6 -109 -51v-300c0 -34 5 -36 43 -43c13 -2 18 -11 18 -20c0 -10 -7 -20 -22 -20h-219c-14 0 -21 10 -21 20c0 9 6 18 18 20c43 7 55 16 55 61v261c0 40 -4 56 -25 56h-10c-15 0 -24 11 -24 21c0 7 4 14 14 17c47 13 99 24 146 43 c5 2 8 3 12 3c10 0 15 -8 15 -22v-50c78 59 101 69 143 69c51 0 112 -21 138 -79c57 58 102 79 158 79c83 0 149 -65 149 -194v-213c0 -35 15 -46 54 -52c13 -2 19 -11 19 -20zM839 40c-7 13 -10 30 -10 52v213c0 99 -46 156 -109 156l-21 -2c55 -6 83 -51 83 -138v-217 c0 -30 -1 -50 -7 -64h64zM542 40c-6 16 -7 39 -7 72v268c-19 57 -60 81 -102 81l-20 -1c72 -15 74 -57 74 -134v-223c0 -28 -2 -48 -8 -63h63zM247 40c-5 11 -7 24 -7 43v367c-15 -6 -48 -11 -62 -15c9 -15 15 -38 15 -73v-261c0 -28 -3 -47 -10 -61h64'], + 0x1D55F: [499,0,713,80,633,'633 21c1 -10 -7 -21 -21 -21h-207c-14 0 -21 9 -21 19s6 20 19 21c39 4 38 22 38 75v216c0 61 -21 103 -66 103c-31 0 -55 -20 -100 -61v-291c0 -30 3 -39 40 -42c13 -1 18 -10 18 -19c1 -10 -6 -21 -20 -21h-210c-14 0 -21 9 -21 19s6 20 19 21c39 4 46 19 46 66v256 c0 41 -3 56 -27 56c-11 0 -15 -1 -15 -1c-16 -4 -25 8 -25 20c0 8 5 16 16 19l153 42c16 5 26 -2 26 -19v-50c47 47 84 70 141 70c91 0 153 -61 153 -166v-237c0 -39 9 -52 45 -56c13 -1 19 -10 19 -19zM537 40c-6 14 -8 32 -8 56v237c0 77 -44 129 -113 129 c-4 0 -17 -1 -21 -2c58 -3 86 -51 86 -129v-216c0 -34 -3 -58 -11 -75h67zM240 40c-4 11 -6 25 -6 42v369c-12 -4 -46 -9 -62 -14c10 -14 15 -38 15 -75v-256c0 -30 -2 -51 -9 -66h62'], + 0x1D560: [501,11,661,80,581,'581 249c0 -150 -115 -260 -252 -260s-249 115 -249 262c0 150 109 250 251 250c140 0 250 -109 250 -252zM541 249c0 79 -49 161 -106 185c38 -49 61 -132 61 -221c0 -45 -11 -95 -23 -127c38 38 68 102 68 163zM456 213c0 57 -10 109 -27 151c-25 57 -63 95 -112 95 c-69 0 -112 -65 -112 -157c0 -72 16 -153 45 -205c20 -38 55 -66 91 -66c74 0 115 72 115 182zM236 47c-23 32 -48 83 -58 130c-9 40 -13 83 -13 125c0 36 6 69 17 97c-38 -35 -62 -88 -62 -148c0 -83 48 -180 116 -204'], + 0x1D561: [500,217,702,80,622,'622 270c0 -155 -115 -275 -243 -275c-17 0 -53 7 -95 35v-141c0 -55 21 -56 76 -66c13 -2 18 -12 18 -21c-1 -10 -8 -19 -22 -19h-253c-14 0 -23 9 -23 19c0 9 6 19 19 21c50 9 57 16 57 59v480c0 38 -4 48 -32 48c-8 0 -13 -1 -13 -1c-15 -3 -25 8 -25 19 c0 9 5 17 16 20l154 49c4 2 8 3 12 3c10 0 16 -8 16 -21v-46c49 49 91 66 140 66c105 0 198 -95 198 -229zM582 270c0 108 -64 192 -158 192c-10 0 -35 -2 -45 -5c108 -3 158 -95 158 -227c0 -48 -8 -98 -36 -148c39 32 81 122 81 188zM497 230c0 111 -45 196 -117 196 c-42 0 -64 -16 -96 -42v-304c26 -21 55 -42 98 -42c70 0 115 85 115 192zM257 -177c-9 14 -13 35 -13 66v561c-12 -5 -47 -11 -63 -17c11 -13 15 -35 15 -71v-480c0 -27 -1 -45 -7 -59h68'], + 0x1D562: [501,217,698,80,618,'618 -198c-1 -10 -10 -19 -24 -19h-247c-14 0 -21 10 -21 20s6 19 19 20c59 5 75 18 75 66v171c-52 -45 -101 -63 -153 -63c-104 0 -187 95 -187 231c0 154 115 273 251 273c38 0 70 -8 119 -36l67 30c4 3 8 4 12 4c11 0 19 -11 19 -22v-605c0 -34 4 -40 50 -49 c13 -2 20 -12 20 -21zM513 -177c-4 12 -5 27 -5 49v570c-10 -6 -41 -13 -48 -17v-536c0 -29 -3 -50 -13 -66h66zM420 108v321c0 8 -32 30 -86 30c-84 0 -133 -80 -133 -194c0 -65 21 -126 52 -155c19 -19 44 -39 73 -39c40 0 94 23 94 37zM306 42c-32 4 -60 16 -81 39 c-37 35 -64 107 -64 184c0 37 4 94 35 143c-39 -39 -76 -90 -76 -180c0 -110 63 -191 147 -191c13 0 26 2 39 5'], + 0x1D563: [501,0,562,80,482,'267 40c-13 15 -20 35 -20 67v343c-13 -5 -50 -12 -68 -19c12 -14 18 -36 18 -73v-258c0 -28 -1 -46 -8 -60h78zM442 434c0 16 -22 25 -39 25c-13 0 -31 -5 -42 -15c9 0 17 -5 26 -12c14 -11 24 -24 33 -24c22 0 22 16 22 26zM482 434c0 -36 -21 -68 -52 -68 s-48 12 -59 23c-9 7 -14 14 -21 14c-23 0 -63 -38 -63 -46v-250c0 -53 22 -55 75 -68c11 -3 17 -11 17 -19c0 -12 -7 -20 -22 -20h-255c-14 0 -22 9 -22 19c0 9 5 19 18 21c52 10 59 18 59 60v258c0 36 -5 51 -25 51c-11 0 -23 -3 -23 -3c-15 -3 -27 4 -27 17 c0 8 4 17 15 21l162 54c4 2 8 3 12 3c10 0 16 -8 16 -21v-58c49 62 78 77 116 77c43 0 79 -25 79 -65'], + 0x1D564: [503,14,497,80,417,'417 130c0 -78 -73 -144 -159 -144c-23 0 -52 5 -82 11c-24 6 -34 11 -46 11c-7 0 -10 -2 -12 -6c-5 -9 -12 -13 -19 -13c-9 0 -18 9 -18 23v144c0 14 9 22 19 23c9 0 18 -6 20 -18c16 -93 41 -133 136 -133c46 0 66 27 66 66c0 29 -27 50 -61 69l-62 34 c-94 53 -119 106 -119 167c0 82 63 139 157 139c27 0 52 -4 75 -12c10 -5 21 -8 26 -8c3 0 4 2 12 8c5 4 10 7 15 7c10 1 17 -9 17 -23v-124c0 -14 -11 -21 -21 -21s-16 6 -17 16c-8 90 -51 116 -106 116c-42 0 -71 -26 -71 -63c0 -24 31 -46 60 -64l115 -72 c50 -31 75 -77 75 -133zM383 130c0 42 -9 66 -62 99l-114 71c-41 26 -77 62 -77 105c0 4 0 9 1 13c-11 -19 -17 -37 -17 -55c0 -59 47 -99 105 -131l62 -34c48 -27 81 -61 81 -104c0 -5 -1 -21 -5 -31c13 10 26 48 26 67'], + 0x1D565: [601,14,471,80,391,'391 80c0 -4 -1 -9 -4 -13c-31 -46 -87 -81 -145 -81c-69 0 -114 51 -114 146v299h-25c-14 0 -23 7 -23 23c0 10 10 18 25 27c26 15 96 73 112 98c7 11 18 21 25 22c10 0 16 -7 16 -16v-114h89c14 0 20 -10 20 -20s-6 -20 -20 -20h-89v-284c0 -57 11 -82 46 -82 c19 0 31 0 52 26c6 8 13 10 19 10c9 0 16 -10 16 -21zM279 28c-43 16 -61 50 -61 119v304v72c-12 -13 -43 -43 -62 -52c11 -2 12 -9 12 -20v-319c0 -65 27 -108 74 -108c6 0 13 1 37 4'], + 0x1D566: [486,13,713,79,633,'318 26c-58 3 -86 51 -86 129v291h-56c6 -14 8 -32 8 -56v-237c0 -77 44 -129 113 -129c4 0 17 1 21 2zM541 49c-10 14 -15 38 -15 75v322h-53c4 -11 6 -25 6 -42v-369c12 4 46 9 62 14zM633 49c0 -8 -5 -16 -16 -19l-153 -42c-16 -5 -26 2 -26 19v50 c-47 -47 -84 -70 -141 -70c-91 0 -153 61 -153 166v237c0 39 -9 52 -45 56c-13 1 -19 10 -19 19c-1 10 7 21 21 21h155c11 0 15 -9 15 -16l1 -315c0 -61 21 -103 66 -103c31 0 55 20 100 61v291c0 30 -3 39 -40 42c-13 1 -18 10 -18 19c-1 10 6 21 20 21h149 c12 0 16 -6 16 -16v-346c0 -41 4 -56 28 -56c11 0 15 1 15 1c15 4 25 -8 25 -20'], + 0x1D567: [490,14,690,80,610,'610 472c0 -10 -4 -22 -19 -23c-22 -2 -33 -8 -61 -72l-132 -333c-19 -44 -33 -58 -50 -58c-21 0 -38 36 -47 58l-124 294c-42 100 -48 110 -77 112c-14 1 -20 11 -20 21c1 10 8 19 21 19h195c14 0 21 -9 21 -19c1 -9 -5 -19 -18 -21c-22 -3 -21 -6 -21 -18 c0 -9 4 -20 9 -34l105 -259l104 263c4 9 6 17 6 26c0 15 -10 19 -31 21c-13 1 -20 11 -19 21c0 10 7 19 21 19h116c12 0 21 -8 21 -17zM370 85l-120 298c-8 20 -12 36 -12 49c0 6 1 12 2 18h-74c13 -20 27 -50 47 -96l137 -329'], + 0x1D568: [490,14,936,80,856,'856 473c0 -8 -3 -18 -15 -22c-14 -5 -35 -14 -50 -48l-141 -359c-20 -50 -35 -58 -49 -58s-28 5 -46 51l-84 221l-104 -225c-15 -33 -28 -47 -45 -47c-15 0 -33 15 -48 52l-139 356c-19 45 -22 55 -35 56s-20 11 -20 20c0 10 7 20 21 20h176c13 0 20 -8 21 -17 c2 -10 -4 -20 -18 -23c-16 -3 -20 -8 -20 -22c0 -9 2 -18 5 -27l103 -270l83 180l-30 75c-17 49 -25 62 -49 64c-13 1 -19 10 -19 19c0 10 7 21 21 21h195c14 0 21 -9 21 -19c1 -9 -4 -20 -18 -21c-21 -2 -33 -9 -33 -24c0 -12 1 -14 18 -59l86 -230l79 201 c14 36 24 59 24 95c0 12 -13 13 -34 17c-13 2 -17 12 -17 21c0 10 7 19 21 19h118c13 0 22 -8 22 -17zM620 80l-101 273c-21 55 -20 55 -20 71c0 10 1 18 3 26h-65c8 -12 14 -29 22 -50l141 -368zM342 90l-114 296c-7 15 -8 27 -8 42c0 8 1 15 3 22h-70c6 -11 12 -24 19 -41 l147 -368'], + 0x1D569: [487,0,677,79,597,'597 20c0 -9 -6 -20 -21 -20h-205c-14 0 -21 9 -21 19c0 9 4 19 17 21s20 2 20 14c0 4 -1 8 -5 13l-77 127l-73 -109c-12 -17 -17 -32 -17 -37c0 -9 9 -7 19 -8c12 -1 19 -10 19 -19c0 -10 -7 -21 -22 -21h-117c-15 0 -22 11 -22 20c0 8 6 16 17 19c30 8 48 7 73 45 l100 147l-109 162c-30 46 -75 54 -75 54c-13 3 -19 13 -18 22c0 9 8 18 21 18h207c14 0 21 -10 21 -20c0 -9 -4 -19 -17 -20c-15 -2 -19 1 -19 -9c0 -11 22 -53 58 -102c28 39 57 76 57 95c0 11 -2 13 -19 16c-13 2 -19 12 -18 21c0 10 7 19 21 19h136c13 0 21 -9 22 -19 s-5 -20 -19 -21c0 0 -58 -4 -74 -27l-82 -118l133 -205c27 -39 47 -51 73 -58c11 -3 16 -11 16 -19zM503 40c-9 9 -18 20 -28 35l-141 216c-43 65 -81 132 -81 147v9h-74c10 -9 19 -19 28 -32l209 -326c8 -13 11 -23 11 -35v-14h76'], + 0x1D56A: [490,218,704,80,624,'624 472c0 -11 -4 -21 -19 -22s-41 -11 -52 -39l-160 -418c-59 -153 -134 -211 -207 -211c-49 0 -97 30 -97 70c0 31 17 66 65 66c29 0 52 -6 69 -13c30 -12 46 -29 59 -29c7 0 13 5 20 18c16 28 33 68 41 91c-5 15 -27 69 -35 83l-172 357c-7 14 -21 22 -37 25 c-13 3 -19 13 -19 22s9 18 22 18h206c13 0 21 -9 21 -19s-5 -20 -19 -21c-23 -2 -33 -3 -33 -17c0 -10 4 -21 10 -34l119 -257l107 280c2 7 6 10 6 15c0 9 -10 13 -28 13c-13 0 -20 9 -20 20c0 10 7 20 20 20h112c12 0 21 -9 21 -18zM387 89l-26 57l-110 236 c-10 21 -14 37 -14 51c0 6 1 12 2 17h-71l185 -390c3 -6 7 -17 11 -28zM252 -154c-16 5 -36 14 -54 23c-11 5 -25 9 -44 9c-27 0 -25 -17 -25 -26c0 -20 32 -30 57 -30c21 0 51 3 66 24'], + 0x1D56B: [490,0,620,80,540,'540 142l-13 -124c-1 -12 -8 -18 -20 -18h-404c-15 0 -23 7 -23 16c0 5 2 10 6 15l278 419h-144c-55 0 -58 -25 -67 -87c-2 -11 -9 -17 -20 -17h-1c-14 0 -20 7 -20 21l3 104c0 13 7 19 20 19h373c14 0 22 -7 22 -16c0 -5 -2 -10 -5 -15l-280 -419h154 c62 0 80 20 101 109c2 10 9 15 19 15h1c15 0 22 -7 20 -22zM470 450h-57l-272 -410h55'], + 0x1D7D8: [716,14,672,80,592,'592 350c0 -127 -52 -250 -113 -308c-40 -37 -87 -56 -143 -56c-63 0 -119 26 -160 74c-50 59 -96 181 -96 296c0 123 52 244 113 304c40 39 87 56 147 56c141 0 252 -148 252 -366zM552 350c0 127 -45 230 -105 284c34 -60 54 -155 54 -286c0 -125 -18 -217 -50 -276 c55 53 101 163 101 278zM461 348c0 206 -39 320 -124 320c-86 0 -126 -112 -126 -321c0 -205 39 -313 125 -313s125 108 125 314zM227 638c-55 -46 -107 -167 -107 -282c0 -117 44 -236 102 -286c-32 58 -51 150 -51 277c0 135 21 232 56 291'], + 0x1D7D9: [716,0,503,80,423,'423 20c0 -10 -7 -20 -20 -20h-296c-12 0 -19 10 -19 20s6 20 18 20c17 0 48 5 62 12c14 9 21 28 21 57v462c0 25 -5 38 -22 38c-9 0 -27 -7 -44 -14c-4 -2 -13 -8 -13 -8c-5 -3 -10 -4 -14 -4c-9 0 -16 8 -16 22v2c0 7 4 15 11 18l202 88c5 2 9 3 13 3 c10 0 16 -7 16 -21v-606c0 -40 49 -49 81 -49c14 0 20 -10 20 -20zM289 40c-5 13 -7 29 -7 49v574l-77 -32c14 -11 24 -28 24 -60v-462c0 -29 -7 -52 -18 -69h78'], + 0x1D7DA: [716,-1,659,80,579,'578 159l-62 -146c-3 -7 -10 -12 -18 -12h-391c-19 0 -25 6 -25 13s6 15 11 20l193 192c86 86 112 181 112 259c0 79 -56 124 -136 124c-66 0 -100 -31 -139 -120c-4 -10 -12 -14 -22 -12l-5 1c-14 3 -18 11 -15 25c17 70 32 102 67 136c40 43 97 77 157 77 c116 0 214 -84 214 -192c0 -82 -46 -163 -141 -262l-142 -141h223c41 0 46 11 86 56c5 5 11 7 16 7c12 0 22 -13 17 -25zM479 524c0 86 -82 152 -174 152c-29 0 -57 -17 -82 -30c12 2 25 3 39 3c104 0 176 -61 176 -164c0 -32 -6 -81 -18 -117c35 44 59 110 59 156zM505 86 c-13 -4 -27 -5 -46 -5h-262l-41 -40h329'], + 0x1D7DB: [718,14,610,80,530,'446 573c0 54 -42 108 -136 107c-14 0 -29 -3 -44 -7c49 -3 74 -14 98 -34c30 -25 46 -60 46 -105c0 -13 -7 -44 -18 -58c35 20 54 65 54 97zM490 246c0 45 -31 85 -58 106c-20 15 -36 26 -84 48c-12 -10 -26 -19 -43 -27c8 -2 15 -4 23 -7c77 -27 125 -95 125 -179 c0 -15 -4 -56 -16 -78c38 37 53 103 53 137zM530 246c0 -145 -143 -260 -310 -260c-81 0 -140 32 -140 75c0 28 30 58 65 58c24 0 50 -10 86 -36c28 -20 39 -47 59 -47c56 0 123 71 123 151c0 66 -38 120 -99 141c-24 10 -47 11 -98 11c-12 0 -20 8 -20 17c0 7 5 14 14 20 c40 25 160 48 160 158c0 58 -43 99 -104 99c-63 0 -101 -36 -144 -97c-6 -9 -14 -13 -20 -13c-9 0 -17 8 -17 19c0 3 1 6 2 10c30 77 115 166 213 166c103 0 189 -53 189 -143c0 -67 -35 -100 -102 -150c110 -53 143 -118 143 -179zM237 27c-28 24 -69 52 -94 52 c-13 0 -25 -8 -25 -18c0 -29 50 -37 98 -37c6 0 15 2 21 3'], + 0x1D7DC: [716,0,723,80,643,'643 196c0 -12 -9 -24 -28 -24h-86v-152c0 -13 -7 -20 -20 -20h-92c-13 0 -20 7 -20 20v152h-265c-41 0 -52 15 -52 28c0 8 3 16 6 20l353 488c3 4 11 8 16 8h54c13 0 20 -7 20 -20v-477h86c19 0 28 -11 28 -23zM489 40v628h-30l-23 -32v-596h53zM396 218v360l-262 -360 h262'], + 0x1D7DD: [727,14,607,80,527,'527 708c0 -3 -1 -7 -3 -11l-55 -111c-7 -14 -10 -16 -33 -16h-222l-33 -68c119 -16 214 -38 258 -81c54 -53 84 -94 84 -171c0 -81 -32 -138 -82 -186c-54 -54 -133 -78 -223 -78c-86 0 -138 32 -138 75c0 28 30 58 65 58c24 0 50 -10 86 -36c28 -20 39 -47 59 -47 c66 0 129 72 129 165c0 97 -64 137 -177 174c-26 8 -56 9 -82 9c-19 0 -35 -1 -47 -1c-15 -1 -22 5 -22 16c0 4 1 8 3 13l133 280c3 7 10 11 18 11h212c15 0 23 3 33 15c5 6 12 9 18 9c10 0 19 -8 19 -19zM462 663h-204l-25 -53h203zM483 251c0 65 -26 97 -72 142 c-41 40 -172 72 -248 71l-19 -42c29 -2 71 -1 107 -12c135 -43 208 -93 208 -208c0 -18 -4 -56 -17 -84c23 40 41 94 41 133zM237 27c-28 24 -69 52 -94 52c-13 0 -25 -8 -25 -18c0 -29 50 -37 98 -37c6 0 15 2 21 3'], + 0x1D7DE: [723,14,672,80,592,'592 231c0 -148 -113 -245 -248 -245c-67 0 -132 27 -173 74c-47 53 -91 145 -91 238c0 141 84 261 198 343c75 51 163 82 252 82c10 0 24 0 24 -17c0 -15 -12 -23 -20 -23c-30 0 -99 -27 -141 -55c-67 -45 -117 -111 -142 -202c55 30 77 35 116 35 c127 0 225 -92 225 -230zM552 231c0 102 -71 176 -158 188c66 -28 105 -102 105 -218c0 -48 -6 -99 -29 -138c51 43 82 104 82 168zM322 622c-111 -63 -202 -188 -202 -324c0 -83 40 -165 81 -212c9 -11 24 -20 35 -28c-36 49 -58 124 -58 223c0 130 54 246 144 341z M459 201c0 121 -46 191 -131 191c-34 0 -64 -8 -84 -23c-19 -14 -26 -40 -26 -88c0 -151 51 -245 138 -245c67 0 103 60 103 165'], + 0x1D7DF: [703,8,630,80,550,'550 683l-1 -7l-221 -670c-3 -9 -10 -14 -19 -14h-3c-17 0 -24 10 -19 26l183 552h-233c-45 0 -96 -9 -118 -36c-8 -10 -17 -11 -26 -7c-10 4 -16 15 -11 27l58 137c3 7 10 12 18 12h372c13 0 20 -7 20 -20zM503 663h-332l-27 -65c14 11 54 12 93 12h248'], + 0x1D7E0: [716,14,599,80,519,'519 170c0 -111 -85 -184 -217 -184c-125 0 -222 75 -222 180c0 69 13 101 125 184c-108 94 -109 128 -109 193c0 98 90 173 210 173c112 0 201 -68 201 -157c0 -65 -30 -122 -125 -168c120 -92 137 -144 137 -221zM465 559c0 41 -31 77 -55 99c18 -22 34 -60 34 -95 c0 -49 -5 -75 -23 -106c19 14 44 66 44 102zM404 560c0 65 -42 116 -106 116c-60 0 -103 -47 -103 -101c0 -53 59 -98 146 -155c47 30 63 85 63 140zM418 138c0 80 -77 109 -178 183c-46 -61 -54 -88 -54 -147c0 -82 53 -148 127 -148c62 0 105 52 105 112zM183 53 c-18 25 -35 73 -35 123c0 23 4 49 10 77c-22 -19 -41 -54 -41 -87c0 -42 30 -98 66 -113zM479 170c0 102 -41 115 -164 212c-106 83 -160 128 -160 193c0 14 4 38 12 56c-26 -22 -41 -57 -41 -88c0 -61 6 -76 114 -170c76 -66 218 -123 218 -235c0 -9 -2 -22 -3 -30 c8 15 24 34 24 62'], + 0x1D7E1: [716,21,672,80,592,'592 404c0 -141 -84 -261 -198 -343c-75 -51 -163 -82 -252 -82c-10 0 -24 0 -24 17c0 15 12 23 20 23c30 0 99 27 141 55c67 45 117 111 142 202c-55 -30 -77 -35 -116 -35c-127 0 -225 92 -225 230c0 148 113 245 248 245c67 0 132 -27 173 -74c47 -53 91 -145 91 -238 zM278 283c-66 28 -105 102 -105 218c0 48 6 99 29 138c-51 -43 -82 -104 -82 -168c0 -102 71 -176 158 -188zM552 404c0 83 -40 165 -81 212c-9 11 -24 20 -35 28c36 -49 58 -124 58 -223c0 -130 -54 -246 -144 -341c111 63 202 188 202 324zM454 421 c0 151 -51 245 -138 245c-67 0 -103 -60 -103 -165c0 -121 46 -191 131 -191c34 0 64 8 84 23c19 14 26 40 26 88'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/DoubleStruck/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Fraktur/Regular/Main.js new file mode 100644 index 0000000..9573715 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Fraktur/Regular/Main.js @@ -0,0 +1,130 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'GyreTermesMathJax_Fraktur', + id: 'GYRETERMESFRAKTUR', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210C: [659,159,749,80,669,'669 261c0 -104 -39 -182 -120 -235c-52 -21 -104 -37 -202 -53c-15 25 -43 44 -66 44c-35 0 -59 -31 -61 -71c0 -44 32 -82 84 -86c28 0 54 13 66 44l19 -3c-14 -40 -49 -60 -85 -60c-56 0 -105 41 -105 102c0 89 91 114 159 126c18 -22 45 -42 83 -60 c45 2 83 24 115 68c29 41 40 100 40 172c0 97 -79 186 -158 186c-40 0 -79 -18 -116 -52l45 -125c3 -9 7 -17 7 -28c0 -48 -85 -115 -153 -115c-49 0 -105 39 -119 46l-11 -6c-3 4 -9 10 -11 15l69 52c24 -41 67 -74 105 -75c26 0 56 16 56 54c0 40 -36 94 -58 145l-38 95 l-7 32c51 102 66 120 118 173c5 8 13 12 26 13c8 0 16 -2 23 -6c27 -19 52 -28 73 -28c11 0 23 8 38 26l14 -13c-24 -34 -51 -60 -81 -82l-98 39c-14 -8 -21 -15 -26 -21c-14 -16 -20 -38 -21 -69l42 -96c40 31 85 59 138 83c8 17 22 25 46 25c113 -55 170 -141 170 -256'], + 0x2128: [656,183,589,80,509,'509 95c-1 -101 -88 -201 -191 -211c-5 0 -12 -1 -21 -4c-19 -5 -51 -17 -66 -20c-5 7 -11 13 -18 21c-19 25 -46 47 -66 49c-24 0 -48 -21 -48 -48c0 -18 8 -37 20 -56l-14 -9c-11 16 -24 39 -25 69c0 29 11 46 34 56l86 34c7 12 16 15 29 12h2c19 -52 48 -79 89 -79 c81 0 121 76 121 154c0 86 -79 193 -217 193c-54 0 -69 -8 -87 -55l-35 3c19 45 50 71 92 83c-37 14 -71 34 -79 59l21 7c27 -33 57 -41 118 -41c76 0 159 62 159 146c0 77 -68 149 -152 154c-79 4 -142 -43 -157 -122l-18 2c7 93 76 164 200 164c92 0 202 -56 202 -176 c0 -71 -48 -152 -170 -177c115 -23 192 -115 191 -208'], + 0x212D: [657,19,707,80,627,'627 643l-66 -95h-15l-109 39c-16 1 -49 -32 -65 -51c-13 -15 -10 -37 -10 -37l104 -262c2 -10 3 -15 4 -19l-108 -154c17 -2 35 -5 53 -5c59 0 117 15 180 46l10 -16s-67 -61 -93 -80c-42 -16 -87 -28 -156 -28c-153 0 -276 170 -276 382c0 177 68 293 194 293 c35 0 89 -30 116 -74l74 75l104 -38c5 -2 12 0 22 3l21 31zM393 155c6 24 6 44 -1 60l-100 254l82 95c-22 39 -69 70 -101 70c-83 0 -132 -90 -132 -229c0 -179 79 -301 200 -336c26 32 47 64 52 86'], + 0x1D504: [656,22,742,80,662,'662 95l-106 -117l-15 3c2 4 3 10 3 18v1v1c-22 39 -34 76 -34 113l-249 -135l-11 11l12 19l-109 89c-19 9 -39 9 -62 2l-5 18l123 45c46 17 87 47 122 89c30 38 46 85 46 144c0 109 -45 189 -146 189c-64 0 -123 -38 -127 -121c-1 -89 62 -159 153 -166l-2 -17 c-96 0 -175 82 -175 187c3 107 85 188 181 188c117 0 183 -129 183 -230c0 -84 -52 -166 -134 -230c-31 -24 -86 -49 -86 -49c33 -37 71 -67 115 -93l28 4c48 19 94 46 137 81l8 16v380l-12 64l14 8l20 -49c25 66 65 98 124 98c1 -10 0 -14 0 -14c-38 -9 -70 -64 -70 -115 v-420c4 -13 10 -19 20 -19c0 0 15 6 39 21c7 -4 12 -9 15 -14'], + 0x1D505: [657,21,853,80,773,'773 205c0 -130 -116 -196 -251 -221l-115 -5l-212 122c-29 6 -86 9 -86 -38c0 -12 1 -16 5 -31l-10 -5c-9 14 -15 23 -15 39c0 62 73 82 121 89c122 36 182 106 182 213c0 121 -57 215 -160 217c-64 0 -123 -38 -127 -121c-1 -89 62 -159 153 -166l-2 -17 c-97 0 -176 82 -176 187c4 107 86 188 181 188c71 0 129 -36 169 -104l192 105c7 -3 11 -6 14 -13c-4 -8 -12 -19 -7 -33c3 -20 53 -101 75 -112h29c5 -3 9 -7 13 -15l-141 -85c93 -24 168 -98 168 -194zM638 447l-81 124c-9 9 -22 9 -40 2c-28 -12 -53 -25 -80 -43 c21 -52 32 -100 32 -150c0 -7 0 -26 -2 -34c62 26 118 60 171 101zM703 164c0 103 -87 168 -194 168c-9 -1 -23 -4 -42 -8c-15 -57 -41 -97 -79 -120c-14 -9 -56 -25 -138 -53l191 -115c29 -15 58 -22 86 -22c93 0 176 59 176 150'], + 0x1D507: [656,38,865,80,785,'785 235c0 -99 -43 -173 -131 -223c-41 -25 -68 -50 -121 -50c-32 0 -71 5 -91 16l-151 90c-21 12 -37 17 -52 18c-32 0 -60 -8 -85 -27l-12 11c48 52 110 78 186 79c24 14 46 30 64 51c2 4 2 9 2 18c0 8 -2 13 -6 17l-94 156c-6 9 -9 20 -9 32c0 13 24 91 219 113 c-63 38 -139 49 -216 49c-115 0 -179 -38 -183 -121c-1 -89 52 -159 143 -166l-2 -17c-97 0 -166 82 -166 187c4 107 95 188 219 188c312 0 478 -214 486 -421zM744 182c0 122 -87 261 -213 335c-61 -8 -170 -31 -170 -72c0 -10 11 -30 11 -30l88 -143c7 -12 11 -24 11 -37 c0 -20 -8 -35 -25 -46l-116 -56c25 -19 52 -39 82 -59c44 -27 84 -63 155 -65c26 0 50 5 75 17c68 31 101 83 102 156'], + 0x1D508: [660,19,684,80,604,'604 89c0 0 -66 -61 -92 -80c-37 -13 -88 -28 -157 -28c-153 0 -275 170 -275 382c0 177 68 293 194 293c34 0 66 -19 99 -56l52 60c26 -4 67 -13 123 -25l29 24l13 -7l-52 -94l-138 32c-12 -11 -22 -21 -30 -32c-9 -10 -15 -18 -22 -27c12 -22 5 -20 84 -133l74 69 c5 0 10 0 17 -1c18 -15 41 -35 67 -50v-15s-30 -34 -45 -45c-7 -2 -15 -2 -20 1c-23 19 -42 32 -58 41l-26 -18l36 -65c0 -71 -16 -126 -49 -166c-17 -20 -36 -30 -58 -31c-64 0 -105 33 -124 102l19 1c20 -58 53 -83 96 -83c31 0 59 25 61 70c0 17 -7 46 -22 91l-112 190 c16 42 69 98 69 98c-25 32 -53 47 -85 47c-83 0 -132 -90 -132 -229c0 -214 112 -346 274 -346c59 0 118 15 181 46'], + 0x1D509: [658,172,695,80,615,'615 579l-83 -79l-13 2l-95 51c-55 -51 -99 -88 -99 -151c0 -23 7 -45 21 -71c9 -15 15 -21 29 -37l76 70c5 0 10 0 16 -1c19 -15 41 -36 68 -51v-14s-31 -34 -46 -46c-6 0 -14 0 -19 2c-23 19 -42 32 -58 41l-25 -18c65 -79 144 -168 144 -263 c0 -105 -68 -186 -191 -186c-102 0 -179 50 -189 136c0 26 2 46 10 61c3 8 44 67 72 104c3 4 6 8 6 15c0 13 -8 45 -49 45c-22 0 -37 -11 -46 -35l-17 8c13 33 33 49 62 49c42 0 74 -28 75 -79c0 -10 -1 -18 -3 -29c-13 -26 -35 -66 -60 -107c-11 -17 -14 -32 -14 -43 c0 -60 70 -104 145 -104c60 0 136 33 136 107c0 88 -25 124 -151 276c-43 51 -54 83 -54 119c0 72 12 94 140 213c-41 20 -93 37 -149 37c-81 0 -151 -56 -151 -128c0 -43 23 -78 69 -105l-4 -15c-59 30 -88 61 -88 120c0 110 99 185 208 185c136 0 206 -57 281 -81 c10 2 21 5 33 17'], + 0x1D50A: [671,21,771,80,691,'691 215c0 -153 -126 -236 -265 -236c-211 0 -346 119 -346 378c0 160 96 295 234 296c19 0 41 -2 65 -10l32 28l9 -12l-17 -25c22 -12 39 -24 50 -36l-9 -11c-17 13 -35 24 -54 30c-8 -12 -13 -22 -14 -30c-4 -9 -4 -20 1 -31c20 -39 37 -78 50 -117c2 -3 3 -8 3 -14 c0 -20 -11 -49 -32 -88c25 9 50 20 74 32c25 11 49 24 73 38c37 29 56 56 56 84c0 12 -5 23 -16 34l-64 60c-2 2 -3 6 -3 15c19 25 35 43 52 58c5 -2 10 -5 14 -8c0 0 -2 -6 -7 -15l84 -87c3 0 6 4 11 6c2 -2 5 -6 11 -16c-18 -26 -36 -50 -56 -74c-19 -22 -40 -44 -62 -66 c78 -31 126 -110 126 -183zM362 624c-11 3 -26 6 -45 6c-93 0 -159 -125 -159 -252c37 -51 92 -85 132 -85c28 0 70 23 71 73c0 11 -2 23 -7 37l-52 128c21 39 41 69 60 93zM624 167c0 82 -69 168 -150 168c-14 0 -33 0 -89 -32c-34 -20 -68 -34 -90 -34 c-50 0 -86 22 -136 74c11 -200 111 -349 269 -349c116 0 196 68 196 173'], + 0x1D50D: [659,152,633,79,553,'547 599c0 -17 -9 -34 -30 -43l-106 -48h-15c-108 57 -150 83 -187 83c-53 0 -100 -38 -106 -89c-4 -59 43 -111 113 -119l-2 -15c-79 5 -137 62 -134 135c4 90 88 123 186 148l5 8h17c33 -23 99 -65 155 -92c8 -3 15 -4 23 -4c20 0 34 9 43 26c-6 7 -11 16 -6 26 c5 9 10 11 24 11c13 0 20 -15 20 -27zM553 16c-33 -74 -71 -121 -115 -141c-50 -8 -102 -14 -164 -20c-3 -3 -8 -6 -15 -7c-16 19 -27 41 -38 64c-18 26 -39 40 -64 40c-19 0 -35 -10 -48 -32c-5 -11 -13 -14 -22 -10c9 47 33 70 86 70c14 0 20 0 75 -3c8 2 14 3 20 4 c13 -22 25 -44 40 -66c14 -17 39 -25 74 -25c49 0 82 21 97 64c4 19 4 37 0 53c-23 72 -94 238 -112 294c-6 18 -9 31 -10 45c0 54 86 152 142 153c10 0 20 -3 28 -9s12 -13 12 -22c0 -7 -1 -14 -9 -20c-6 -3 -11 -5 -17 -5l-12 16c-3 8 -8 10 -16 10 c-21 -1 -34 -10 -44 -29s-14 -42 -14 -68c0 -11 11 -41 26 -77c30 -73 76 -203 100 -279'], + 0x1D50E: [656,21,764,80,684,'684 461c-13 -10 -28 -16 -46 -20c1 10 2 20 3 32c0 86 -105 161 -202 161c-142 0 -215 -98 -215 -153c0 -23 7 -35 21 -64l94 -152l-38 145c-2 17 5 35 18 48c26 26 67 49 125 69c3 10 11 14 23 15c3 0 5 0 9 -2c12 -20 26 -41 43 -61c17 -18 36 -37 57 -58 c4 -2 6 -10 6 -23l-110 -74l22 -27l92 -222c8 -21 20 -32 37 -32c7 0 19 3 37 10l8 -15c-32 -19 -65 -49 -75 -59c-25 0 -60 31 -77 75c-34 87 -50 131 -83 204c-3 13 -13 20 -31 21l-55 -30c9 -41 28 -107 28 -133c0 -38 -11 -66 -34 -93s-58 -44 -87 -44 c-40 0 -72 9 -81 11c-29 6 -53 0 -70 -7l-16 10c2 11 6 24 6 32c0 19 0 34 -13 53l9 13c20 -2 28 -3 39 -3c18 0 24 5 42 15l13 -13c-5 -16 -8 -24 -8 -36c0 -18 4 -29 15 -40c4 -5 22 -14 55 -16c44 0 67 25 68 75c0 44 -14 93 -42 149c-33 67 -72 127 -114 190 c-6 11 -8 23 -8 35c0 39 97 209 278 209c136 0 223 -65 257 -195zM498 377c-23 51 -65 96 -95 96c-15 0 -47 -12 -71 -37c-3 -4 -11 -23 -7 -41l31 -116c125 77 101 62 142 98'], + 0x1D50F: [656,21,603,80,523,'523 101c-50 -81 -91 -122 -135 -122c-77 20 -183 65 -242 88l-15 -5l-35 -49l-16 8l68 124l46 -10c46 6 81 65 45 118l-112 164c-7 12 -11 34 -11 51c4 101 102 188 216 188c107 0 184 -52 184 -166c0 -28 -2 -59 -8 -92c-3 -7 -6 -10 -14 -13c-5 2 -12 3 -23 4 c-36 0 -64 -17 -66 -46c0 -23 14 -39 48 -40c15 0 27 2 39 8l10 -16c-15 -9 -31 -14 -50 -15c-49 0 -78 40 -78 97c0 32 16 59 36 66c0 0 11 -1 19 -1c44 0 61 27 61 83c0 58 -66 113 -158 113c-81 0 -147 -48 -147 -117c0 -11 3 -46 18 -68l99 -148c12 -19 18 -36 18 -56 c0 -64 -53 -98 -104 -124l143 -65c20 -9 39 -14 56 -14c15 0 41 0 93 64'], + 0x1D510: [659,22,1030,80,950,'950 59l-95 -81h-10c-21 20 -45 36 -66 47c-2 1 -5 10 -13 27v276c6 34 39 67 101 103c0 4 1 14 1 23c0 95 -40 140 -94 140c-55 0 -91 -26 -114 -78c13 -52 19 -94 20 -144c0 -135 -44 -254 -131 -357c-3 -5 -26 -30 -33 -36c-8 2 -7 -1 -39 20c-19 12 -34 18 -45 18 c-10 0 -22 -5 -34 -22l-13 8c18 29 41 57 67 83c33 -6 66 -20 97 -43c50 85 60 153 60 315c0 115 -56 249 -115 249c-31 0 -60 -13 -72 -59c20 -49 30 -87 34 -176c0 -135 -43 -254 -131 -357c-4 -5 -26 -30 -32 -36c-9 2 -8 -1 -40 20c-18 12 -33 18 -44 18s-22 -5 -35 -22 l-13 8c18 29 41 57 67 83c33 -6 66 -20 97 -43c51 85 61 153 61 315c0 115 -47 227 -144 227c-65 0 -133 -38 -137 -121c-1 -89 43 -159 134 -166l-2 -17c-96 0 -157 82 -157 187c4 107 95 188 191 188c53 0 92 -14 140 -82c12 51 60 84 116 84c47 0 94 -47 123 -110 c34 71 81 111 136 111c95 0 149 -74 149 -195c14 0 11 -13 12 -29c-26 0 -49 -4 -68 -18c-26 -18 -34 -29 -40 -77c-7 -54 -6 -207 -2 -241c5 -17 36 -52 47 -52c17 0 34 12 51 27c0 0 10 -6 15 -15'], + 0x1D511: [659,22,798,80,718,'718 59l-96 -81h-9c-22 20 -45 36 -66 47c-3 1 -6 10 -13 27v276c5 34 38 67 101 103v23c0 75 -40 140 -94 140c-52 0 -85 -20 -109 -57c19 -44 21 -96 24 -165c0 -135 -44 -254 -131 -357c-4 -5 -26 -30 -33 -36c-9 2 -7 -1 -39 20c-19 12 -34 18 -45 18 c-10 0 -22 -5 -34 -22l-14 8c19 29 42 57 68 83c33 -6 65 -20 97 -43c50 85 60 153 60 315c0 115 -47 227 -144 227c-65 0 -133 -38 -136 -121c-2 -89 43 -159 134 -166l-2 -17c-97 0 -157 82 -157 187c3 107 95 188 190 188c57 0 112 -36 149 -95c34 69 81 98 134 98 c95 0 150 -88 150 -195c14 0 11 -13 11 -29c-25 0 -49 -4 -67 -18c-26 -18 -35 -29 -41 -77c-6 -54 -5 -207 -1 -241c5 -17 35 -52 46 -52c18 0 34 12 52 27c0 0 9 -6 15 -15'], + 0x1D512: [675,19,813,80,733,'733 330c0 -205 -195 -346 -371 -349c-33 10 -151 73 -213 93c-21 -2 -39 -11 -58 -25l-11 13l111 81c71 -25 122 -51 190 -92c26 -16 52 -18 79 -19c139 0 225 168 225 284c0 79 -46 154 -119 189c-48 21 -129 35 -219 47c-29 3 -50 20 -66 49 c-72 -39 -108 -80 -108 -123c0 -41 40 -84 121 -193c3 -10 6 -18 6 -29c0 -44 -55 -82 -119 -82c-16 0 -32 0 -48 5l-6 20c26 -11 100 -11 100 38c0 9 -4 19 -11 27c-71 73 -108 134 -108 164c0 99 74 126 157 187c30 22 40 39 45 60h17c6 -22 35 -43 64 -52 c64 -22 125 -12 173 -30c105 -39 169 -142 169 -263'], + 0x1D513: [658,175,731,80,651,'651 281c0 -85 -49 -162 -180 -302c-38 6 -61 18 -115 33c-4 -69 -13 -131 -28 -186l-20 -1c-15 55 -23 127 -24 215c-11 9 -26 14 -49 14c-21 0 -33 -11 -49 -29l-14 6l63 116c15 -7 27 -16 51 -30v350c0 65 -37 134 -87 134c-82 0 -96 -64 -96 -128 c0 -51 32 -78 79 -105l-5 -15c-58 30 -97 63 -97 120c0 90 42 185 143 185c63 0 109 -36 131 -151l97 97c32 22 95 53 95 53l10 -14c-10 -8 -15 -18 -16 -32c0 -3 1 -12 5 -27l90 -220c11 -28 16 -55 16 -83zM582 194c0 53 -5 80 -25 127l-101 244c-26 -25 -69 -63 -94 -96 v-379l126 -47h12c32 26 82 93 82 151'], + 0x1D514: [675,31,869,80,789,'733 330c0 -205 -195 -346 -371 -349c-33 10 -151 73 -213 93c-21 -2 -39 -11 -58 -25l-11 13l111 81c71 -25 122 -51 190 -92c26 -16 52 -18 79 -19c139 0 225 168 225 284c0 79 -46 154 -119 189c-48 21 -129 35 -219 47c-29 3 -50 20 -66 49 c-72 -39 -108 -80 -108 -123c0 -41 40 -84 121 -193c3 -10 6 -18 6 -29c0 -44 -55 -82 -119 -82c-16 0 -32 0 -48 5l-6 20c26 -11 100 -11 100 38c0 9 -4 19 -11 27c-71 73 -108 134 -108 164c0 99 74 126 157 187c30 22 40 39 45 60h17c6 -22 35 -43 64 -52 c64 -22 125 -12 173 -30c105 -39 169 -142 169 -263zM789 47l-113 -78c-12 14 -49 28 -78 30l-52 -24l-14 12l111 78c28 -3 65 -18 78 -30l53 24'], + 0x1D516: [657,21,794,80,714,'714 230c0 -157 -123 -249 -275 -251c-205 0 -359 131 -359 317c2 197 112 312 323 361c0 0 39 0 44 -1c47 -19 100 -47 162 -87c10 -2 19 -4 28 -5c18 0 32 7 40 20c5 7 7 14 8 20c0 4 -1 8 -8 15c-3 6 -5 9 -6 11v2c0 12 6 18 20 19c12 0 19 -10 19 -32 c0 -21 -8 -39 -25 -54c-6 -6 -14 -11 -24 -18c-8 -6 -18 -10 -31 -16c-10 -4 -20 -7 -30 -13c-10 -4 -19 -8 -30 -13l-12 2l-152 87c-18 6 -41 10 -68 10c-106 0 -209 -110 -209 -254c0 -184 160 -307 368 -307c104 0 193 83 193 194c0 68 -71 154 -150 138 c-89 -44 -151 -80 -200 -87l-65 54c-30 27 -49 53 -49 94c0 59 53 110 114 110c45 0 95 -27 114 -72l-20 -8c-26 40 -52 58 -95 58c-44 0 -89 -34 -90 -81c0 -36 27 -80 74 -80c16 0 25 3 40 10l154 74s14 0 27 -2c94 -22 170 -125 170 -215'], + 0x1D517: [658,21,708,80,628,'628 528l-86 -72h-9l-118 63c-8 0 -15 -2 -19 -5c-48 -36 -67 -67 -68 -93c0 -23 8 -36 21 -46l96 -78c9 -15 14 -30 15 -45c0 -50 -72 -110 -193 -97l150 -86c20 -11 38 -16 61 -16c32 0 52 11 112 47l12 -14l-114 -88c-21 -17 -37 -19 -53 -19c-10 0 -40 4 -82 28 l-206 120c-30 0 -35 -5 -52 -31l-15 9l56 75c12 16 24 24 37 24c15 0 34 -8 60 -23c22 -3 54 -7 62 -7c78 0 105 19 104 48c0 8 -3 15 -9 21c-59 45 -97 77 -115 99c-12 17 -16 37 -14 57c12 39 54 83 129 131l-79 47c-34 18 -62 27 -84 27c-53 0 -104 -33 -104 -94 c0 -37 9 -67 40 -106l-10 -9c-35 37 -52 72 -52 108c0 97 91 155 209 155l247 -128c8 -5 14 -8 23 -8c11 0 22 5 37 16'], + 0x1D518: [657,28,685,80,605,'605 69l-104 -97l-15 7l3 15c-31 12 -43 56 -41 94l-168 -97c-7 -8 -21 -10 -32 -10c-13 0 -20 9 -17 17l-104 52v18c16 16 25 32 25 46l1 411c0 24 -9 42 -26 52c-8 -4 -17 -10 -34 -20l-13 17l79 83c28 -3 50 -21 67 -56v-491c9 -25 37 -48 84 -69c28 0 46 13 77 33 l64 40v413c0 24 -20 47 -44 48v20c28 5 51 26 71 61h19c14 -30 37 -51 71 -62v-20c-22 -5 -37 -21 -41 -47v-433c0 -19 6 -29 20 -32c9 0 21 7 41 23'], + 0x1D519: [656,19,842,80,762,'762 447c-64 -12 -135 -30 -135 -73c0 -11 4 -21 11 -32c17 -22 54 -63 98 -102c14 -14 21 -31 21 -55c0 -78 -89 -200 -245 -202l-59 -2l-164 120c-10 8 -27 9 -46 10c-21 0 -38 -4 -68 -16l-5 17l106 47c9 2 19 4 30 4c9 0 19 -1 26 -2c53 33 80 95 80 186 c0 114 -38 238 -161 238c-65 0 -142 -38 -146 -121c-1 -89 62 -159 153 -166l-2 -17c-97 0 -176 82 -176 187c4 107 86 188 181 188c77 0 143 -37 175 -92c36 61 87 90 154 92c113 0 161 -92 161 -190h11v-19zM698 126c0 14 -3 27 -10 39c-12 25 -100 110 -114 133 c-13 19 -21 38 -21 56c0 46 46 81 125 100c0 46 -31 165 -92 169c-67 0 -112 -28 -138 -86c19 -55 27 -105 27 -150c0 -90 -40 -169 -123 -239l152 -116c17 -13 30 -19 54 -20c62 0 140 48 140 114'], + 0x1D51A: [669,23,1065,80,985,'985 177c0 -78 -98 -200 -248 -200l-147 88s-103 -66 -143 -86l-152 123c-15 14 -33 8 -52 9c-21 0 -38 -4 -67 -16l-6 17l106 47c9 2 19 4 30 4c9 0 19 -1 26 -2c53 33 81 95 81 186c0 114 -39 238 -162 238c-65 0 -142 -38 -146 -121c-1 -89 62 -159 153 -166l-2 -17 c-97 0 -176 82 -176 187c4 107 86 188 181 188c71 0 108 -14 149 -56c15 41 51 66 98 69c55 -2 90 -29 103 -85c48 52 103 79 163 79c127 0 168 -99 168 -197h11v-19c-64 -12 -106 -34 -106 -78c0 -11 12 -26 20 -36c16 -23 53 -63 98 -103c13 -13 20 -30 20 -53zM930 117 c0 14 -7 27 -14 39c-11 25 -100 109 -113 133c-14 19 -21 38 -22 57c0 45 9 84 88 105c0 85 -38 187 -116 187c-79 0 -135 -86 -135 -135c0 -31 29 -100 79 -179c11 -18 12 -34 12 -53c0 -41 -10 -86 -62 -164l101 -63c18 -8 42 -20 60 -20c63 0 122 52 122 93zM653 217 c0 23 -35 84 -55 121c-23 45 -37 89 -37 113c0 43 5 76 21 108c0 41 -31 78 -74 82c-42 1 -71 -24 -81 -60c50 -65 49 -151 49 -194c0 -90 -41 -169 -124 -239c20 -17 78 -62 102 -84c32 -28 35 -25 54 -25c6 0 48 28 71 45c57 38 74 82 74 133'], + 0x1D51B: [654,20,680,80,600,'600 604l-57 -61c-9 4 -80 53 -95 53c-30 0 -63 -79 -71 -119v-118h79c22 13 38 31 49 55l18 1l-52 -118l-94 2v-146c11 -68 40 -102 86 -102c35 0 73 19 114 59l13 -12l-126 -118h-18c-50 21 -79 34 -88 41c-18 14 -34 41 -48 85c-10 -48 -63 -123 -100 -123 c-20 0 -64 26 -86 34c-7 -1 -15 -7 -32 -20l-12 12l69 80h18s58 -36 76 -46c45 16 58 93 61 157l4 99h-50c-34 -8 -60 -32 -79 -73l-18 1l39 132h108c0 48 1 102 -15 163c-10 37 -39 67 -73 68c-31 0 -54 -15 -98 -57l-14 10l90 111c97 0 145 -31 173 -138 c7 54 69 120 109 137h20s64 -45 74 -45c5 0 9 2 14 7'], + 0x1D51C: [660,178,774,80,694,'694 294c0 -40 -4 -79 -14 -120c-35 -149 -177 -346 -319 -352c-31 0 -57 4 -80 16c-29 14 -42 35 -43 63c0 27 12 41 39 42c14 0 32 -6 32 -19c0 -10 -2 -13 -2 -28c0 -23 21 -44 62 -44c142 0 255 234 255 378c0 156 -22 196 -110 341l-84 -89c6 -24 8 -50 9 -81 c0 -104 -36 -205 -121 -254l95 -78c6 -5 13 -7 24 -7c13 0 29 5 48 16l12 -16l-136 -83l-15 15l13 17c-31 33 -79 63 -124 93l-49 -1l-3 18c126 17 197 86 198 216c0 22 -1 45 -5 69c-15 93 -70 179 -135 179c-66 0 -133 -38 -137 -121c-1 -89 62 -159 153 -166l-2 -17 c-96 0 -175 82 -175 187c3 107 76 188 171 188c89 0 153 -71 172 -146c29 33 75 80 143 150l20 -13l-9 -14c74 -115 117 -235 117 -339'], + 0x1D51E: [440,31,520,80,440,'440 60l-75 -87c-3 1 -5 2 -6 5c-3 5 -8 13 -15 24c-32 25 -36 38 -42 81l-132 -114l-13 12l7 10c-26 30 -52 73 -71 109c-8 19 -13 65 -13 108c13 74 31 115 84 162l75 70h22c41 -29 89 -56 131 -73c1 -4 1 -10 1 -10l-12 -9c-11 -8 -15 -16 -15 -32v-220 c0 -12 4 -19 9 -29c6 -10 15 -15 26 -16c11 0 19 6 27 18zM307 112v219l-94 55c-49 -40 -75 -98 -75 -175c7 -70 43 -143 85 -164'], + 0x1D51F: [637,21,466,80,386,'386 228c0 -39 -16 -92 -71 -155c-25 -30 -55 -52 -102 -94c-19 -1 -29 8 -42 23l-91 36c0 10 6 29 22 31v455c0 25 -5 51 -16 65l9 18c6 -4 24 -19 31 -56c14 58 67 86 128 86v-17c-45 0 -75 -31 -90 -83v-180l136 90l10 -14l-11 -11l75 -127c7 -24 12 -46 12 -67z M332 173c0 23 -6 49 -19 79l-77 128l-73 -53v-237l6 -16l80 -37c35 19 82 88 83 136'], + 0x1D520: [442,24,384,80,304,'304 396l-60 -49h-11l-58 44l-26 -25c-2 -19 -6 -35 -7 -59c-2 -23 -3 -37 -3 -60c0 -58 5 -95 14 -147c3 -17 32 -42 61 -42c2 0 7 0 13 1l55 44l16 -10l-128 -117c-3 2 -6 3 -8 7v14c-58 20 -76 68 -81 132c-2 48 -1 153 5 203l119 110h14l50 -41c8 -1 14 1 21 6'], + 0x1D521: [637,21,484,80,404,'404 267c0 -18 -3 -37 -8 -58c-14 -56 -45 -109 -93 -166c-24 -27 -41 -41 -67 -64h-16c0 15 -30 40 -56 47l-81 26v17c24 10 33 15 33 34v254l75 60l-102 83c-6 10 -9 18 -9 33c0 49 42 102 92 104c6 0 11 0 18 -2v-16c-48 0 -63 -26 -63 -42c0 -21 26 -36 47 -51 l147 -104c28 -20 83 -78 83 -155zM354 211c0 79 -45 137 -137 187c-21 -7 -39 -26 -39 -45v-262l85 -48h14c33 27 77 100 77 168'], + 0x1D522: [440,24,410,79,330,'330 290l-181 -149c3 -48 41 -85 79 -85c27 0 43 13 82 44l15 -14l-128 -110c-4 0 -8 2 -9 7c-2 3 -1 7 2 11c-65 16 -101 62 -108 136c-4 45 -3 107 7 193l8 15l127 102h18c45 -72 71 -113 76 -120c2 -5 3 -14 12 -30zM263 262l-69 122c-9 -7 -18 -16 -27 -26 c-12 -14 -18 -23 -19 -30c-6 -42 -8 -93 -1 -163c17 14 74 57 116 97'], + 0x1D523: [640,174,412,80,332,'332 626l-35 -73c-24 17 -49 25 -77 25c-30 0 -52 -21 -52 -46c0 -37 14 -78 30 -123h89v-52h-89c0 -31 1 -61 1 -101c0 -128 -6 -275 -28 -430h-18c-18 164 -27 313 -27 449c0 26 -1 51 1 82h-47v16s38 26 40 43l27 127c19 63 54 95 107 95c17 0 34 -4 53 -12l6 14'], + 0x1D524: [440,177,487,80,407,'407 10c0 -96 -75 -187 -178 -187c-39 0 -71 11 -98 31c-27 21 -44 50 -51 88h58c0 -27 7 -51 25 -69c16 -19 39 -29 67 -29c66 0 129 51 129 103c0 31 -38 85 -47 147l-148 -110l-10 13l6 8c-27 42 -78 105 -78 154c0 125 26 168 157 281h25c28 -30 76 -53 132 -70 c-20 -71 -30 -128 -30 -171c0 -17 -6 -52 23 -119c11 -23 18 -37 18 -70zM324 321l-111 59c-49 -44 -73 -96 -73 -158c0 -52 10 -95 68 -153c4 -3 11 -5 16 -5c8 0 13 1 21 3l63 48c-2 21 -5 29 -5 59c0 57 8 98 21 147'], + 0x1D525: [637,175,474,80,394,'394 212c0 -71 -45 -163 -79 -223c-15 -25 -52 -80 -112 -164l-14 12c39 51 73 103 100 157c32 64 48 122 48 174c0 65 -42 142 -92 211l-75 -67v-233c0 -10 9 -27 20 -27s23 11 49 36l13 -14c-33 -27 -61 -62 -77 -90h-28c-14 23 -35 40 -67 48v15c13 7 27 10 27 33v444 c0 25 -6 57 -18 70l11 13c6 -4 24 -19 30 -56c15 58 71 86 130 86v-17c-44 0 -74 -31 -90 -83v-195l122 109l15 -19l-6 -7c73 -99 93 -163 93 -213'], + 0x1D526: [647,25,337,80,257,'235 609c-16 -37 -41 -69 -74 -99h-14c2 43 12 80 25 120c10 11 15 16 29 17c22 0 34 -15 34 -38zM257 62l-81 -87h-9c-7 22 -18 40 -37 50v301c0 15 -5 24 -11 24c-7 0 -19 -4 -28 -15l-11 12l86 98c6 -4 15 -14 15 -14l-11 -16c15 -17 31 -28 54 -38v-17 c-28 -13 -30 -25 -30 -34v-240c0 -17 8 -34 22 -34l28 22'], + 0x1D527: [647,177,319,80,239,'239 609c-17 -37 -41 -69 -75 -99h-14c3 43 12 80 25 120c10 11 15 16 29 17c22 0 34 -15 35 -38zM228 360c-29 -13 -31 -25 -31 -34v-268c0 -11 12 -64 16 -81h-19l-15 40c-26 -75 -35 -112 -78 -194h-21c30 56 54 158 54 203v300c0 15 -6 24 -12 24 c-7 0 -19 -4 -28 -15l-11 12l86 98c6 -4 15 -14 15 -14l-11 -16c15 -17 31 -28 55 -38v-17'], + 0x1D528: [637,16,350,80,270,'270 438h-83v-359c0 -10 8 -27 19 -27s23 11 49 36l13 -14c-33 -27 -60 -62 -76 -90h-28c-15 23 -36 40 -67 48v15c12 7 26 10 26 33v358h-43v23h43v63c0 25 -6 57 -17 70l10 13c7 -4 25 -19 30 -56c15 58 63 86 124 86v-17c-45 0 -68 -31 -83 -83v-59 c7 41 12 104 83 104v-74c-52 0 -61 -30 -66 -47h66v-23'], + 0x1D529: [637,16,343,80,263,'263 620c-47 0 -76 -31 -92 -83v-458c0 -10 8 -27 19 -27s23 11 49 36l13 -14c-32 -27 -60 -62 -76 -90h-29c-14 23 -35 40 -67 48v15c13 7 28 10 28 33v449c0 14 -7 52 -19 65l11 13c6 -4 25 -19 30 -56c15 58 72 86 133 86v-17'], + 0x1D52A: [445,24,730,80,650,'650 64l-71 -88l-9 8c2 7 -2 12 -13 20c-14 9 -25 19 -25 39v292c-16 23 -29 35 -49 35l-77 -73v-217c0 -14 11 -33 27 -39v-16c-26 -11 -44 -27 -51 -46h-16c-7 19 -24 35 -51 46v16c17 6 28 25 28 39v235c0 27 -32 50 -59 52c-30 -25 -53 -45 -75 -69v-218 c0 -14 11 -33 28 -39v-16c-27 -11 -45 -27 -51 -46h-17c-6 19 -24 35 -51 46v16c16 6 27 25 27 39v236c0 21 -16 48 -24 48l-30 -29l-11 12l86 98c6 -4 15 -14 15 -14l-2 -14c7 -11 14 -17 28 -38v-53l118 117h12l6 -15c5 -7 11 -12 18 -17c13 -6 19 -12 27 -24 c12 -17 14 -34 16 -62l120 118h15c15 -21 48 -49 79 -57v-16c-10 -5 -13 -6 -23 -19v-268c0 -13 7 -26 16 -27c8 0 17 6 28 18'], + 0x1D52B: [445,24,534,80,454,'454 64l-73 -88l-7 8c1 7 -3 12 -14 20c-13 9 -25 19 -25 39v292c-16 23 -29 35 -49 35l-77 -72v-218c0 -14 11 -33 28 -39v-16c-27 -11 -45 -27 -51 -46h-17c-6 19 -24 35 -51 46v16c16 6 27 25 27 39v236c0 21 -16 48 -24 48l-30 -29l-11 12l86 98c6 -4 15 -14 15 -14 l-2 -14c7 -11 14 -17 28 -38v-53l121 117h15c15 -21 47 -49 79 -57v-16c-11 -5 -14 -6 -24 -19v-268c0 -13 7 -26 16 -27c8 0 18 6 29 18'], + 0x1D52C: [446,21,464,80,384,'384 226c0 -78 -52 -159 -156 -247h-15c-23 23 -66 41 -133 57v16c10 5 16 23 16 40v271l199 83l8 -15l-12 -9c54 -75 83 -131 90 -169c2 -9 3 -18 3 -27zM325 172c0 28 -3 46 -10 58l-95 160l-57 -22v-288l86 -39h15c24 22 61 52 61 131'], + 0x1D52D: [463,174,498,80,418,'415 264c18 -86 -40 -187 -156 -285h-16c-22 23 14 12 -55 32l-16 -185h-17l-19 191c-2 7 -6 11 -16 11c-12 0 -21 -5 -29 -18l-11 11l52 74v220c-5 26 -20 45 -42 60c7 8 25 36 55 87v1c6 -2 10 -6 13 -12c0 -8 -2 -14 -6 -20c24 -25 38 -51 41 -82l139 94l11 -13 l-13 -9c62 -97 78 -118 85 -157zM374 180c0 28 -30 68 -52 104l-53 92l-76 -54v-242l87 -37h17c21 23 77 90 77 137'], + 0x1D52E: [442,178,474,80,393,'393 353c-3 -7 -4 -10 -15 -15l-34 -516h-19l-15 266l-146 -112l-15 15s6 6 8 11c-51 64 -76 123 -77 179c0 43 15 86 47 133c24 35 63 77 116 128h15c35 -30 79 -53 134 -72c1 -2 3 -10 1 -17zM310 114v216l-99 54c-48 -57 -73 -109 -73 -160c0 -50 26 -108 78 -173h14 c22 12 50 33 80 63'], + 0x1D52F: [445,24,409,80,329,'329 378c0 -30 0 -36 -28 -74h-18l-36 59c-14 -21 -28 -43 -38 -65v-209c0 -25 14 -37 45 -46l55 45l11 -15l-107 -97c-9 3 -15 5 -17 10c2 -1 4 1 5 8l-88 48v1c0 3 1 6 4 14c13 6 21 12 23 16s4 13 5 29v214c0 21 -16 48 -24 48l-30 -29l-11 12l86 98 c6 -4 15 -14 15 -14l-2 -14c8 -11 17 -22 28 -38v-43l69 106h15c4 -15 30 -46 38 -64'], + 0x1D530: [440,20,505,80,425,'425 440c-25 -49 -48 -72 -79 -107c-24 4 -55 9 -76 18c-22 8 -39 17 -61 28c-14 -9 -40 -35 -40 -41c0 -10 1 -13 7 -23l59 -97h5l65 78c61 -21 112 -86 113 -141c0 -34 -15 -66 -46 -96c-17 -17 -47 -32 -81 -49c-11 -4 -19 -9 -30 -15c-3 -7 -7 -15 -14 -15 c-12 0 -29 5 -44 21l-71 65l-39 -38l-13 15l87 93l13 -9l2 -16l84 -73c7 -6 13 -8 21 -8c24 0 81 43 81 84c0 21 -9 44 -30 67c-20 23 -32 36 -61 43c-23 -8 -51 -44 -64 -60h-23c-8 18 -26 47 -37 64c-9 16 -20 32 -31 46c-4 6 -6 14 -8 22c0 9 4 19 11 31 c2 3 50 45 121 113h15c5 -14 46 -40 67 -40c41 0 60 7 74 40h23'], + 0x1D531: [543,16,354,80,274,'274 358h-86v-279c0 -10 9 -27 20 -27s23 11 49 36l13 -14c-32 -27 -61 -62 -76 -90h-29c-14 23 -35 40 -67 48v15c14 7 27 10 27 33v278h-45v17c42 30 87 98 107 167v1h22c-15 -51 -22 -86 -22 -119c0 -5 0 -10 1 -14h86v-52'], + 0x1D532: [440,28,534,80,454,'454 69l-87 -97c-5 3 -14 13 -14 13l2 14c-7 10 -15 17 -28 38v53l-121 -118h-15c-15 22 -47 50 -79 58v16c11 5 13 6 23 19v268c0 13 -6 26 -16 27c-7 0 -17 -6 -28 -18l-11 10l72 88l8 -8c-1 -8 2 -12 14 -20c13 -9 24 -19 24 -40v-290c16 -24 30 -36 50 -36l77 72v218 c0 14 -11 33 -28 39v16c27 11 44 26 51 45h17c6 -19 23 -34 51 -45v-16c-17 -6 -28 -25 -28 -39v-237c0 -20 16 -47 25 -47l30 30'], + 0x1D533: [463,21,484,80,404,'404 231c0 -45 -19 -91 -59 -141c-24 -30 -65 -69 -111 -111h-22c-27 16 -70 36 -110 47v12c8 11 16 20 16 30v205c0 37 -12 68 -38 94c11 34 28 66 50 96l15 -5c-5 -11 -7 -21 -7 -29c0 -12 3 -23 11 -34c15 -23 30 -47 30 -64l123 109h20v-30l59 -95 c15 -27 22 -55 23 -84zM347 172c0 21 -4 42 -14 64c-16 43 -44 87 -79 132c-25 -20 -47 -37 -71 -67v-232l76 -36h14c48 49 74 96 74 139'], + 0x1D534: [463,21,666,80,586,'528 172c0 21 -5 42 -14 64c-17 43 -43 87 -80 132c-23 -20 -46 -42 -69 -71v-228l75 -36h14c48 49 74 96 74 139zM586 231c0 -45 -20 -91 -59 -141c-25 -30 -66 -69 -112 -111h-23c-26 16 -69 36 -109 47v12c8 11 14 21 19 31v232c-5 31 -27 65 -45 65 c-13 0 -41 -26 -65 -50c-7 -7 -11 -12 -11 -18v-218c0 -14 11 -33 28 -39v-16c-27 -11 -45 -27 -51 -46h-17c-7 19 -24 35 -51 46v16c17 6 28 25 28 39v193c0 37 -12 68 -38 94c11 34 28 66 50 96l15 -5c-5 -11 -7 -21 -7 -29c0 -12 3 -23 11 -34c15 -23 30 -47 30 -64 l104 109h17c0 -10 3 -19 13 -28c27 -22 43 -49 47 -82l123 110h20v-30l58 -95c16 -27 24 -55 25 -84'], + 0x1D535: [447,22,473,80,393,'393 366l-33 -63h-15l-31 50l-56 -104l61 -143c5 -11 10 -24 16 -34c5 -9 9 -14 16 -14c8 0 16 5 29 16l12 -10l-74 -86l-11 9l-80 182c-41 -104 -72 -168 -88 -188h-19l-40 75l33 63h15l32 -51l56 128l-54 120c-10 24 -24 40 -37 50l-24 -24l-18 14l82 91 c11 -6 17 -12 17 -12l-10 -16c25 -21 56 -87 76 -147c0 0 70 149 86 168h19'], + 0x1D536: [463,175,485,80,405,'405 212c0 -71 -45 -163 -79 -223c-15 -25 -52 -80 -112 -164l-14 12c39 51 73 103 100 157c32 64 48 122 48 174c0 65 -42 142 -92 211l-75 -67v-233c0 -10 9 -27 20 -27s23 11 49 36l13 -14c-33 -27 -61 -62 -76 -90h-29c-14 23 -35 40 -67 48v15c13 7 27 10 27 33v193 c0 37 -12 68 -38 94c11 34 28 66 50 96l15 -5c-5 -11 -7 -21 -7 -29c0 -12 3 -23 11 -34c15 -23 26 -38 32 -53l122 109l15 -19l-6 -7c73 -99 93 -163 93 -213'], + 0x1D537: [459,177,371,80,291,'291 162c-13 -7 -29 -14 -47 -24c25 -43 44 -105 44 -150c0 -16 -1 -30 -4 -42c-16 -77 -61 -123 -113 -123c-63 0 -89 61 -91 138c0 42 17 97 84 150c-30 31 -53 51 -53 51l-3 12c60 30 97 72 97 126c0 26 -18 63 -52 63c-19 0 -30 -10 -47 -30l-14 13l92 113 c7 -2 15 -10 15 -10l-5 -12c45 -14 74 -46 74 -87c0 -45 -33 -106 -83 -146c0 0 28 -25 47 -50c16 9 33 16 52 24zM238 -54c0 60 -26 113 -60 152c-41 -33 -76 -76 -76 -136c0 -71 24 -121 72 -121c43 0 64 34 64 105'], + 0x1D56C: [654,24,781,80,701,'701 105l-120 -128l-47 9c5 11 8 19 12 27c-16 29 -27 55 -31 82c-37 -19 -84 -39 -123 -60l-113 -59l-33 29l12 16c-16 13 -30 26 -46 40c-26 22 -43 38 -65 38c-10 0 -24 -4 -42 -11l-16 52l51 17c51 17 76 25 86 32c84 55 121 138 121 203c0 136 -50 160 -115 160 c-32 0 -94 -34 -96 -97c0 -58 37 -111 108 -134l-17 -45c-112 23 -147 117 -147 197c0 91 77 181 176 181c141 0 189 -90 189 -244c0 -70 -42 -183 -172 -258c38 -40 48 -41 86 -65c0 0 13 -1 21 2c26 7 41 17 62 29c19 12 48 24 68 40c0 0 2 5 5 9v354c0 19 -8 47 -13 70 l41 25l13 -29c29 45 74 66 137 66v-33c-30 -18 -67 -46 -67 -106v-397l38 24c16 -10 28 -22 37 -36'], + 0x1D56D: [657,19,859,80,779,'779 211c0 -80 -48 -144 -147 -192c-46 -22 -62 -33 -158 -38h-73l-207 115c-9 2 -18 3 -26 3c-11 0 -20 -3 -27 -9c-4 -3 -5 -7 -5 -12s2 -18 8 -39l-35 -19c-10 10 -16 19 -22 29c-4 9 -6 19 -7 30c0 31 18 61 56 81c20 9 47 14 75 21c106 29 162 93 163 184 c0 105 -48 187 -136 187c-52 0 -93 -34 -95 -97c0 -58 36 -111 107 -134l-16 -45c-112 23 -148 117 -148 197c0 91 77 181 176 181c79 2 134 -34 173 -92c58 31 119 61 179 95c16 -8 27 -18 35 -32l-9 -27c0 -12 20 -47 51 -73h27c12 -7 22 -20 30 -40l-107 -88 c27 -12 52 -28 76 -49c30 -28 48 -58 58 -94c2 -14 3 -28 4 -43zM613 458c-18 17 -55 68 -70 86c-33 -11 -53 -25 -79 -44c16 -47 18 -92 18 -135c49 25 88 58 131 93zM675 173c0 15 -4 31 -11 50c-16 40 -55 67 -108 83c-14 4 -29 9 -48 8c-11 -1 -14 -3 -28 -6 c-39 -78 -77 -111 -181 -154c58 -33 91 -58 148 -86c28 -14 51 -18 77 -19c26 0 56 7 88 22c41 22 62 58 63 102'], + 0x1D56E: [659,20,731,80,651,'651 95l-121 -108c-23 -5 -46 -6 -71 -7c-69 0 -167 16 -234 64c-31 23 -58 48 -80 77c-43 61 -64 131 -65 209c0 74 10 141 36 198c33 81 98 125 174 128c28 0 50 -8 69 -21c19 -10 33 -22 44 -37l59 60l114 -40l28 41l46 -31l-81 -112h-25l-105 37 c-5 -1 -10 -4 -20 -12c-7 -6 -19 -17 -27 -28c-6 -6 -6 -14 -6 -23c70 -153 104 -244 105 -273l-84 -116c30 -6 56 -7 79 -8c46 0 92 12 138 38zM381 167c4 19 4 34 0 47l-52 125l-51 126l81 90c-5 21 -26 42 -52 42c-31 -1 -73 -18 -97 -72c-23 -50 -31 -89 -31 -149 c0 -59 12 -111 37 -156c13 -24 29 -45 49 -64c19 -17 60 -31 87 -41c14 17 23 33 29 52'], + 0x1D56F: [659,38,836,80,756,'756 239c0 -100 -44 -175 -134 -227c-41 -24 -109 -50 -151 -50c-26 0 -42 6 -64 19l-137 84c-19 11 -33 16 -42 16c-26 0 -54 -10 -84 -31l-35 33c58 60 125 91 199 93c10 4 19 10 28 18s18 14 25 22c1 3 1 5 -1 8l-99 158c-7 11 -6 22 -6 37c2 28 18 46 38 61 c26 19 79 40 134 52c-45 17 -89 26 -133 27c-45 0 -82 -10 -111 -31c-32 -20 -40 -50 -41 -90c0 -18 12 -80 78 -110l-19 -43c-60 28 -121 57 -121 162c0 60 25 111 77 153c45 36 104 57 168 59c140 0 265 -70 347 -179c35 -46 60 -100 75 -161c5 -24 9 -51 9 -80zM681 189 c0 27 -8 64 -21 98c-18 40 -33 72 -66 114c-27 35 -43 62 -83 84c-22 1 -93 -1 -138 -35c-3 -2 -8 -9 -10 -13c0 -3 4 -10 7 -17c6 -12 29 -44 46 -72c13 -22 27 -44 41 -66c9 -13 12 -27 13 -42c0 -26 -10 -45 -30 -58l-90 -43c21 -16 45 -31 69 -46c31 -16 35 -32 83 -48 c7 -2 15 -2 24 -2c20 0 42 4 66 14c28 13 49 31 66 53c15 22 22 48 23 79'], + 0x1D570: [660,18,717,80,637,'637 639l-67 -116l-138 32c-12 -10 -24 -24 -34 -38l31 -52c9 -15 23 -40 35 -57c13 8 25 18 36 28c11 9 19 20 27 33c13 4 23 2 34 3c0 0 43 -35 63 -42c2 -15 3 -25 1 -41c-14 -10 -27 -22 -41 -41c-14 -5 -39 -3 -46 1c-4 2 -14 11 -24 21c-3 0 -13 -1 -21 -6 c8 -14 14 -25 26 -45c0 -37 5 -45 -3 -72c-17 -55 -58 -97 -109 -99c-72 0 -120 34 -145 122l54 2c10 -42 39 -69 75 -69c16 0 48 4 48 38c0 17 -10 30 -21 49c-22 37 -44 62 -63 94l-56 94l15 30l49 62c-8 8 -18 15 -29 20c-10 5 -20 7 -31 8c-38 0 -85 -21 -105 -62 c-16 -39 -23 -85 -25 -137c0 -88 28 -182 77 -236c40 -43 90 -71 170 -71c28 0 57 3 86 12c30 7 62 19 98 36l26 -44l-168 -114h-97c-82 0 -150 36 -204 106c-20 29 -37 61 -51 98c-18 50 -30 81 -30 173c0 78 13 141 41 193c32 62 106 99 184 101c33 0 65 -14 96 -43 c6 7 13 15 21 25c8 9 14 17 22 25c13 -2 30 -5 51 -11l72 -13c4 4 9 8 15 12c6 5 10 9 16 12'], + 0x1D571: [663,167,731,80,651,'651 567l-99 -91l-26 2l-85 44c-53 -39 -80 -81 -80 -126c0 -23 6 -38 16 -54c5 -7 11 -15 19 -27c13 9 25 18 36 28c12 9 20 21 27 33c13 4 23 2 34 3c0 0 44 -35 63 -41c2 -15 3 -25 1 -41c-14 -10 -27 -22 -40 -42c-14 -4 -38 -2 -47 1c-3 1 -14 11 -24 22 c-2 0 -8 0 -15 -5l51 -69c39 -51 77 -114 79 -177c0 -19 -1 -31 -6 -49c-12 -49 -32 -82 -72 -108c-39 -24 -89 -35 -134 -37c-49 0 -101 11 -138 33c-41 26 -65 63 -73 113c0 28 4 51 12 67c5 7 14 28 51 74c6 9 22 30 22 30c0 6 -2 12 -9 17c-5 5 -11 7 -18 8 c-12 0 -23 -12 -35 -38l-51 21c22 49 50 73 85 74c8 0 15 0 27 -4c41 -13 62 -42 62 -88c0 -10 1 -20 -3 -31c-9 -20 -20 -44 -36 -69c-10 -14 -34 -40 -35 -70c-1 -27 12 -43 39 -59c24 -15 61 -22 94 -22c35 0 72 8 92 25c21 17 31 41 32 72c0 37 -23 85 -71 144 c-9 19 -60 70 -93 119c-23 32 -37 54 -37 99c0 41 13 87 40 123c10 12 27 36 78 78c-35 12 -75 22 -110 24c-72 0 -132 -45 -134 -101c0 -37 22 -68 69 -94l-15 -48c-79 34 -112 67 -114 138c0 112 129 195 230 195c64 0 119 -13 159 -30l113 -49c6 2 15 9 31 25'], + 0x1D572: [676,20,812,80,732,'732 524l-52 -66c-16 -20 -62 -40 -80 -60c69 -35 109 -107 109 -187c0 -126 -110 -230 -286 -231c-159 0 -278 80 -325 232c-12 38 -18 79 -18 127c0 158 103 311 246 312c18 0 35 -1 58 -6c11 13 28 25 37 31l31 -35l-14 -18c16 -9 30 -24 45 -43l-29 -33 c-17 14 -29 24 -47 32c-10 -13 -8 -18 -4 -30c0 0 16 -33 25 -52c9 -22 20 -44 27 -77c1 -10 -4 -31 -11 -51c36 16 57 29 94 47c33 18 75 44 75 64c0 7 -2 13 -10 20l-62 57c-6 4 -9 15 -9 34c21 23 38 45 65 67c16 -4 27 -11 35 -23c0 -4 1 -5 -2 -15l63 -63c5 1 9 1 13 1 c7 -5 12 -9 26 -34zM353 363c0 9 -2 18 -6 27l-52 130c8 15 15 28 24 41c7 13 13 23 20 32c-5 2 -5 1 -11 2c-88 0 -128 -102 -136 -215c27 -38 68 -66 110 -68c28 0 50 17 51 51zM626 175c0 74 -71 159 -146 159c-29 0 -77 -28 -124 -52c-17 -8 -33 -9 -49 -10 c-43 0 -75 8 -120 56c0 0 -2 -61 19 -130c24 -83 117 -186 232 -187c51 0 188 35 188 164'], + 0x1D573: [658,164,770,80,690,'690 262c0 -52 -11 -97 -32 -138c-20 -39 -47 -72 -93 -100c-21 -11 -30 -18 -93 -32c-16 -5 -74 -10 -121 -4c-16 23 -34 21 -57 25c-23 0 -38 -19 -40 -51c0 -25 10 -72 54 -72c21 0 39 14 57 43l49 -8c-21 -59 -56 -89 -106 -89c-66 0 -109 59 -111 124 c0 76 60 122 179 139c9 -11 20 -21 33 -32c12 -10 43 -26 61 -26c36 0 112 31 112 208c0 69 -62 147 -135 151c-32 0 -63 -3 -91 -27l19 -54c10 -33 28 -57 28 -87c0 -31 -21 -61 -64 -90c-36 -25 -70 -37 -103 -37c-60 0 -119 35 -156 78l92 68c35 -52 67 -78 97 -79 c18 0 37 10 35 34c-6 59 -65 146 -94 225l-6 35c51 97 71 125 118 172c11 12 24 19 41 19c9 0 19 -3 31 -9c24 -15 44 -23 62 -24c3 0 14 11 35 34l39 -37c-16 -21 -32 -39 -49 -56c-15 -16 -32 -30 -50 -43l-97 37c-20 -12 -26 -35 -29 -62c9 -20 17 -44 29 -67 c34 24 67 40 113 56c27 9 50 7 81 8c120 -58 162 -117 162 -232'], + 0x1D574: [666,23,651,80,571,'569 606c0 -26 -11 -46 -33 -62c-16 -11 -32 -18 -43 -24c-49 -24 -60 -23 -95 -25l-139 72c-10 3 -20 4 -31 5c-42 0 -89 -18 -89 -64c0 -45 37 -96 112 -96l-5 -50c-89 0 -163 64 -163 146c0 41 21 77 65 106c37 23 88 45 149 52c11 -1 16 -3 27 -7 c34 -12 90 -51 133 -73c13 -1 24 -1 35 5c-1 4 -2 8 -4 15c0 24 13 36 39 36c9 0 18 -3 28 -9c9 -6 13 -14 14 -27zM571 441c0 -25 -12 -37 -38 -38c-7 0 -17 3 -32 10v13s-4 2 -11 2c-13 0 -21 -14 -21 -43c0 -12 0 -21 7 -33c15 -32 33 -72 82 -155c6 -10 9 -21 9 -34 c0 -14 -3 -28 -10 -44c-5 -14 -14 -30 -27 -47c-24 -33 -51 -55 -85 -67c-11 -4 -25 -8 -43 -11c-28 -7 -63 -11 -116 -11c-2 -2 -10 -6 -17 -6c-14 0 -22 5 -31 17c-6 35 -36 74 -73 77c-9 0 -29 -6 -40 -40c-15 0 -30 3 -45 10c6 59 40 90 100 94c22 0 50 -5 83 2 c21 0 36 -15 47 -45c5 -13 14 -24 29 -32c14 -7 29 -11 45 -12c23 0 42 8 59 22c16 15 25 31 26 49c0 5 -1 11 -3 18l-89 162c-7 12 -13 28 -13 44s7 31 7 31c24 43 58 86 100 106c15 7 30 11 46 12c18 -1 31 -5 40 -16c10 -8 14 -19 14 -35'], + 0x1D575: [666,191,689,80,609,'567 606c0 -26 -12 -46 -34 -62c-15 -11 -32 -18 -43 -24c-48 -24 -59 -23 -95 -25l-138 72c-10 3 -21 4 -32 5c-41 0 -89 -18 -89 -64c0 -45 37 -96 112 -96l-5 -50c-89 0 -163 64 -163 146c0 41 21 77 65 106c38 23 89 45 150 52c11 -1 15 -3 26 -7 c35 -12 90 -51 134 -73c13 -1 24 -1 34 5c-1 4 -2 8 -4 15c0 24 13 36 39 36c9 0 19 -3 28 -9s14 -14 15 -27zM609 -5c0 -14 -3 -27 -9 -43c-6 -15 -14 -31 -27 -47c-24 -34 -52 -56 -85 -68c-11 -4 -25 -7 -44 -11c-27 -6 -62 -10 -115 -10c-3 -3 -10 -7 -18 -7 c-14 0 -22 6 -30 18c-7 34 -36 74 -73 77c-10 0 -29 -7 -40 -40c-16 0 -31 3 -45 9c6 59 39 91 99 95c23 0 50 -6 84 1c20 0 36 -14 47 -45c5 -13 14 -23 29 -31c13 -8 28 -11 45 -12c22 0 42 7 58 22c17 15 25 30 26 49c0 5 0 11 -3 17c-32 77 -89 248 -134 330 c-7 12 -13 28 -13 44s8 31 8 31c23 43 57 86 100 106c14 7 29 11 45 12c18 -1 31 -5 41 -16c9 -8 13 -19 13 -35c0 -25 -12 -37 -38 -38c-7 0 -17 3 -32 10v13s-4 2 -11 2c-13 0 -21 -14 -21 -43c0 -12 1 -21 7 -33l131 -322c3 -11 5 -22 5 -35'], + 0x1D576: [662,20,795,80,715,'715 474c-20 -17 -45 -27 -77 -32l-9 11c3 17 5 30 6 39c0 66 -100 115 -188 115c-81 0 -188 -63 -189 -137c0 -16 2 -37 44 -93c-7 36 -8 61 17 85c12 11 27 22 49 34c20 11 44 22 72 33c4 5 8 8 15 12c5 4 12 6 20 6c7 0 14 -2 19 -6c24 -37 56 -75 98 -114 c8 -7 12 -21 12 -43l-97 -64l98 -225c6 -13 12 -19 21 -19c5 0 19 4 42 14l25 -42c-39 -25 -66 -46 -83 -65c-5 -2 -7 -3 -15 -3c-28 0 -71 32 -88 73c-35 86 -45 115 -84 203c-1 3 -3 5 -8 6c-11 -7 -18 -10 -35 -19c11 -37 18 -56 23 -117c0 -39 -12 -72 -37 -100 c-24 -28 -58 -46 -96 -46c-40 0 -64 11 -106 11c-12 0 -25 -2 -36 -7c-14 4 -23 12 -29 25c0 11 2 32 -4 50c-3 9 -8 19 -15 29c2 6 5 12 9 18s8 11 12 15c11 -3 21 -3 29 -3c10 0 22 -5 64 18l33 -32c-9 -14 -14 -25 -15 -36c0 -10 4 -18 13 -25c9 -6 20 -9 34 -10 c34 0 50 17 50 52c0 34 -13 80 -41 132c-17 32 -34 62 -53 92c-18 30 -36 58 -56 87c-8 15 -11 26 -11 42c0 17 4 33 13 48c74 116 175 180 295 176c124 -9 223 -57 259 -188zM483 376c-21 37 -45 60 -73 69c-22 -6 -40 -15 -53 -30c-4 -3 -8 -13 -7 -21 c3 -34 16 -51 28 -86'], + 0x1D577: [658,21,654,80,574,'574 491c0 -51 -1 -71 -9 -106c-6 -9 -16 -17 -32 -22c-6 1 -14 2 -23 3c-29 0 -42 -8 -43 -25c0 -6 1 -20 26 -20c12 0 26 4 45 12l29 -43c-28 -16 -53 -25 -75 -25c-69 0 -92 42 -92 109c0 37 22 72 48 77h22c31 0 43 20 43 60c0 53 -81 89 -155 91 c-66 0 -133 -37 -133 -94c0 -17 3 -33 11 -47c23 -38 66 -100 98 -146c14 -20 21 -41 22 -63c0 -28 -12 -56 -37 -84c-12 -10 -25 -19 -43 -31c18 -7 32 -17 53 -24l63 -23c18 -8 33 -11 46 -11s25 4 38 14c11 7 28 24 50 49l42 -23c-60 -93 -112 -139 -155 -140 c-13 0 -8 0 -14 2l-206 74c-2 1 -17 7 -21 7c-3 0 -5 0 -7 -2c-10 -12 -12 -16 -20 -27c-8 -9 -14 -17 -20 -26l-45 23l81 145l55 -12c25 7 38 19 40 50c0 8 -3 21 -11 33l-109 155c-10 14 -15 31 -15 50c0 116 113 203 237 207c113 0 216 -55 216 -167'], + 0x1D578: [665,34,1091,80,1011,'1011 69l-109 -90h-20l-50 33c-11 8 -18 11 -25 19c-10 12 -16 22 -16 52v247c9 37 41 72 99 106c-12 71 -22 132 -99 132c-31 0 -76 -17 -94 -55c17 -50 19 -120 19 -185c0 -204 -99 -297 -173 -349c-11 10 -62 33 -79 39c-10 -3 -29 -25 -29 -25l-48 16 c34 50 74 96 98 108c28 -8 51 -15 87 -36c53 66 44 154 44 253c0 100 -14 247 -114 247c-20 0 -63 -15 -71 -45c29 -57 33 -135 33 -221c0 -204 -108 -296 -183 -349c-10 10 -62 33 -79 39c-10 -3 -29 -25 -29 -25l-48 16c35 50 74 97 98 109c28 -9 51 -16 87 -37 c53 66 53 154 53 253c0 119 -20 231 -129 231c-31 0 -96 -34 -98 -97c0 -58 37 -111 108 -134l-17 -45c-112 23 -147 117 -147 197c0 91 80 181 179 181c61 0 111 -24 136 -59c33 43 83 70 129 70c57 0 90 -18 145 -81c34 42 83 81 141 81c108 0 172 -73 181 -202 c7 0 11 -1 15 -2v-47c-33 -3 -59 -10 -73 -19c-16 -9 -24 -20 -33 -40c0 -17 -7 -201 -3 -241c3 -11 31 -37 31 -37l18 15c7 5 15 9 23 11c16 -3 30 -14 42 -34'], + 0x1D579: [660,27,834,80,754,'754 64l-109 -91h-20l-50 33c-11 9 -19 12 -25 20c-10 11 -16 21 -16 52v247c9 37 41 72 99 105c-12 71 -22 132 -99 132c-31 0 -67 -16 -83 -49c15 -64 23 -139 23 -198c0 -40 -4 -79 -11 -114c-26 -129 -105 -220 -204 -220c-20 0 -53 1 -99 13c-8 0 -14 -1 -27 -8 c-13 6 -28 16 -36 29c4 28 -1 53 -17 74l28 40c13 -8 23 -12 31 -12c6 0 22 5 50 15c15 -6 27 -17 37 -33c-10 -12 -15 -22 -16 -31c0 -18 24 -34 60 -36c72 0 99 112 101 233c0 129 -20 284 -130 287c-57 0 -96 -34 -98 -97c0 -58 36 -111 107 -134l-16 -45 c-112 23 -148 117 -148 197c0 91 80 181 179 181c56 0 125 -30 156 -79c35 51 74 85 132 85c108 0 172 -74 181 -202c6 0 11 -2 15 -3v-46c-34 -4 -59 -10 -73 -20c-16 -9 -24 -20 -33 -39c0 -18 -7 -202 -3 -242c3 -11 31 -37 31 -37l18 15c7 6 14 9 23 11 c16 -3 29 -14 42 -33'], + 0x1D57A: [666,18,837,80,757,'757 328c0 -198 -161 -342 -378 -346c-44 12 -132 59 -207 87c-14 -3 -30 -11 -56 -30l-36 41l120 84c-14 0 -32 2 -56 7l-18 64c24 -10 45 -15 63 -16c16 0 43 -1 43 19c0 9 -9 23 -27 43c-31 32 -50 54 -57 63c-21 28 -31 56 -32 84c0 39 17 74 51 107c9 9 36 27 92 63 c30 20 49 41 53 62c20 9 35 9 49 0c11 -20 33 -35 68 -41c53 -9 218 -25 284 -132c29 -47 44 -99 44 -159zM676 304c0 82 -34 125 -101 158c-37 16 -107 44 -211 58c-27 4 -48 15 -68 41c-52 -28 -81 -59 -81 -92c0 -7 1 -14 3 -21c4 -15 20 -40 50 -75 c25 -33 70 -81 70 -114c0 -26 -17 -51 -51 -75c-16 -9 -35 -16 -55 -19c34 -12 65 -25 95 -40c30 -14 50 -22 84 -40c22 -12 40 -19 62 -19c99 0 203 103 203 238'], + 0x1D57B: [677,170,781,80,701,'701 282c0 -45 -20 -100 -60 -165c0 0 -96 -111 -126 -141c-32 7 -46 8 -100 30c-4 -55 -14 -117 -31 -175l-48 -1c-17 61 -19 129 -27 213c-11 5 -18 10 -31 10c-15 0 -18 -10 -41 -36l-44 17l71 122s12 5 20 4c12 -2 15 -6 27 -14v311c0 46 -31 101 -82 101 c-45 0 -93 -31 -93 -103c0 -58 37 -111 108 -134l-17 -45c-112 23 -147 117 -147 197c0 110 89 185 166 185s133 -30 160 -127c42 43 103 95 178 146c14 -16 37 -53 37 -53c-15 -11 -28 -24 -29 -32c0 0 1 -12 4 -18l87 -208c12 -28 17 -56 18 -84zM597 200v58 c-7 21 -52 118 -90 210c-8 21 -8 35 -14 53c-24 -23 -53 -42 -73 -68v-341c36 -13 75 -29 110 -39c24 20 63 73 67 127'], + 0x1D57C: [666,68,937,80,857,'757 328c0 -198 -161 -342 -378 -346c-44 12 -132 59 -207 87c-14 -3 -30 -11 -56 -30l-36 41l120 84c-14 0 -32 2 -56 7l-18 64c24 -10 45 -15 63 -16c16 0 43 -1 43 19c0 9 -9 23 -27 43c-31 32 -50 54 -57 63c-21 28 -31 56 -32 84c0 39 17 74 51 107c9 9 36 27 92 63 c30 20 49 41 53 62c20 9 35 9 49 0c11 -20 33 -35 68 -41c53 -9 218 -25 284 -132c29 -47 44 -99 44 -159zM857 29l-137 -93l-78 32c-15 -8 -57 -36 -57 -36l-39 35l134 91l79 -31l59 36zM676 304c0 82 -34 125 -101 158c-37 16 -107 44 -211 58c-27 4 -48 15 -68 41 c-52 -28 -81 -59 -81 -92c0 -7 1 -14 3 -21c4 -15 20 -40 50 -75c25 -33 70 -81 70 -114c0 -26 -17 -51 -51 -75c-16 -9 -35 -16 -55 -19c34 -12 65 -25 95 -40c30 -14 50 -22 84 -40c22 -12 40 -19 62 -19c99 0 203 103 203 238'], + 0x1D57D: [657,19,852,80,772,'772 85l-85 -104h-33c-62 63 -87 105 -115 330c-2 12 -5 18 -11 21l-54 -28c-1 -36 -5 -71 -11 -103c-26 -129 -105 -220 -204 -220c-20 0 -53 1 -99 13c-8 0 -14 -1 -27 -8c-13 6 -28 16 -36 29c4 28 -1 53 -17 74l28 40c13 -8 23 -12 31 -12c6 0 22 5 50 15 c15 -6 27 -17 37 -33c-10 -12 -15 -22 -16 -31c0 -18 24 -34 60 -36c72 0 99 112 101 233c0 129 -20 284 -130 287c-57 0 -96 -34 -98 -97c0 -58 36 -111 107 -134l-16 -45c-112 23 -148 117 -148 197c0 91 80 181 179 181c48 0 126 -29 162 -92c58 31 118 61 178 95 c17 -8 28 -18 36 -32l-10 -27c0 -12 32 -45 62 -71h28c12 -7 21 -20 30 -40l-126 -96c31 -79 53 -245 63 -278c3 -12 7 -18 13 -19c5 0 18 10 39 29zM604 458c-17 17 -54 68 -70 86c-32 -11 -53 -25 -78 -44c15 -47 18 -92 18 -135c49 25 88 58 130 93'], + 0x1D57E: [656,19,811,80,731,'731 197c0 -146 -121 -215 -285 -216c-205 0 -364 130 -366 316c1 95 28 172 81 232c60 67 148 127 260 127c19 0 36 -3 40 -5c25 -9 51 -20 78 -34c27 -13 49 -27 81 -46c6 -4 11 -4 19 -4c15 0 28 10 28 16c0 5 -4 7 -6 11c-4 7 -7 11 -7 19c-1 20 12 35 37 35 c23 0 35 -14 36 -45c0 -33 -17 -61 -52 -83l-49 -22c-17 -8 -33 -12 -49 -20h-22l-147 83c-14 4 -26 9 -42 9c-61 0 -107 -21 -147 -67c-46 -54 -49 -109 -49 -180c0 -187 175 -247 275 -247c111 0 226 22 226 135c0 76 -51 107 -108 107c-12 0 -20 -4 -47 -17 c-69 -34 -120 -56 -161 -67c-22 18 -49 37 -72 56c-26 22 -43 45 -43 89c0 35 9 69 39 98c26 24 55 36 91 36c49 0 92 -29 104 -72l-48 -20c-9 27 -21 35 -56 35c-40 0 -69 -22 -71 -62c0 -30 7 -46 39 -52c9 -2 19 -2 29 2l154 76c7 3 13 4 22 4c109 0 188 -81 188 -227'], + 0x1D57F: [660,20,746,80,666,'666 519l-102 -86h-21l-114 58s-1 0 -3 -1h-1c-39 -31 -58 -55 -58 -72c0 -6 1 -13 3 -19s5 -10 9 -14l47 -37l47 -37c6 -10 10 -20 14 -30c4 -8 6 -16 6 -26c0 -17 -6 -34 -19 -50c-12 -14 -29 -27 -52 -40c-8 -5 -18 -9 -30 -12c-11 -3 -22 -5 -34 -7 c13 -7 27 -15 42 -24l43 -23c14 -9 30 -14 48 -14c27 0 65 17 113 50l35 -39l-18 -14c-7 -5 -15 -10 -22 -15l-31 -24l-38 -29c-27 -22 -54 -33 -80 -34c-12 0 -24 2 -38 8c-41 18 -81 39 -124 61c-41 21 -81 44 -122 70c-4 0 -6 0 -9 -1c0 0 -5 -1 -9 -4 c-1 -2 -4 -6 -9 -11l-13 -19l-46 27l67 87c14 19 31 29 50 30c16 0 37 -8 64 -24c20 -1 35 -3 47 -5c11 0 19 0 25 -1c29 0 49 6 61 18c1 2 1 5 1 10v8l-58 44c-17 15 -33 29 -49 44c-16 16 -23 35 -24 59v11c0 3 0 6 2 9c10 37 46 76 109 118c-4 2 -7 4 -11 6s-7 4 -11 7 l-16 9c-5 3 -12 7 -19 11l1 -1c-29 15 -51 23 -68 23c-19 0 -37 -6 -54 -19c-14 -12 -24 -27 -27 -45v1c0 -3 0 -6 -2 -10v-9c0 -20 15 -51 45 -93l-34 -31c-45 45 -68 87 -68 128c0 9 0 17 2 25c4 21 13 40 29 60c15 18 33 33 57 46c41 21 86 32 136 33l14 -7l231 -116 c3 -3 7 -4 12 -5c7 0 19 6 37 20'], + 0x1D580: [655,30,720,80,640,'640 83l-124 -113l-42 17l5 14c-21 13 -33 35 -36 68c-33 -17 -75 -44 -140 -80c-12 -3 -25 -5 -37 -5c-19 1 -36 6 -42 23l-86 44c-6 12 -7 37 -7 37c16 16 25 29 25 42v382c0 12 -3 21 -9 28l-37 -20l-30 40l93 95c38 -2 68 -23 90 -66v-465c9 -14 25 -50 66 -50 c19 0 60 27 115 60v387c-4 15 -18 22 -41 22v50c22 5 37 12 46 20c7 6 17 18 29 41h40c16 -31 41 -52 77 -63v-45c-22 -7 -35 -18 -40 -34v-407c0 -5 0 -9 2 -12c7 3 20 12 40 27'], + 0x1D581: [656,18,838,80,758,'758 424c-21 -4 -41 -8 -58 -12c-36 -9 -71 -17 -71 -42c0 -20 24 -44 50 -68c27 -27 73 -56 74 -110c0 -40 -14 -72 -41 -106c-47 -60 -106 -100 -276 -104l-155 111c-8 7 -21 12 -42 12c-19 0 -49 -7 -89 -20l-13 49c20 9 56 24 100 41c22 7 49 11 82 11 c38 29 63 89 65 173c0 111 -45 193 -152 193c-32 0 -94 -34 -96 -97c0 -58 37 -111 108 -134l-17 -45c-112 23 -147 117 -147 197c0 91 77 181 176 181c79 0 122 -30 166 -74c36 48 84 76 152 76c126 0 162 -91 165 -185l19 -2v-45zM660 137c0 41 -28 55 -55 84 c-18 20 -35 29 -57 61c-17 24 -29 40 -29 70c0 58 63 93 121 106c-4 61 -21 129 -71 129c-55 0 -91 -21 -113 -63c15 -50 23 -95 25 -141c0 -83 -31 -158 -109 -226c51 -40 118 -110 171 -110c55 0 115 42 117 90'], + 0x1D582: [667,21,1058,80,978,'978 192c0 -40 -15 -72 -41 -106c-48 -60 -122 -104 -225 -104c0 0 -82 37 -143 82l1 -1c-39 -23 -99 -63 -153 -84l-122 94c-11 8 -14 14 -34 14c-23 0 -33 -7 -62 -21l-28 46l127 70h26c40 30 58 94 58 187c0 91 -19 183 -150 183c-32 0 -94 -34 -96 -97 c0 -58 37 -111 108 -134l-17 -45c-112 23 -147 117 -147 197c0 91 77 181 176 181c79 0 97 -6 140 -41c19 33 52 50 101 54c50 -3 86 -25 108 -67c36 47 80 56 147 56c156 0 171 -97 184 -185l19 -2v-45c-21 -4 -41 -8 -58 -12c-36 -9 -44 -17 -44 -42c0 -20 24 -44 51 -68 c27 -27 73 -56 74 -110zM885 137c0 41 -28 55 -55 84c-18 20 -35 29 -57 61c-17 24 -29 40 -29 70c0 58 39 82 85 97c-14 87 -29 148 -90 148c-43 0 -117 -29 -117 -105c0 -26 38 -101 73 -157c13 -21 15 -43 16 -61c0 -34 -8 -72 -63 -142c50 -35 113 -66 139 -66 c54 0 96 23 98 71zM620 222c0 6 -1 11 -3 17v-1l-27 51c-30 52 -58 112 -59 166c0 33 5 61 20 93c0 29 -19 51 -54 53c-26 0 -51 -10 -57 -32c29 -66 44 -128 44 -179c0 -83 -28 -174 -110 -242c10 -10 30 -27 56 -49c23 -18 39 -26 49 -27c13 0 21 8 31 15 c52 35 110 73 110 135'], + 0x1D583: [652,19,716,80,636,'636 589l-73 -77h-20c-13 9 -72 50 -82 50c-19 0 -42 -59 -50 -105v-82h53c16 10 29 26 43 51l56 1l-69 -145h-83v-118c9 -50 29 -79 66 -81c29 0 66 21 110 63l39 -37l-141 -128h-29c-70 29 -92 42 -106 56c-7 9 -14 19 -20 31c-5 -9 -9 -17 -16 -25 c-18 -24 -46 -60 -81 -60c-23 0 -58 24 -80 36c-5 -3 -18 -12 -39 -28l-34 33l83 94h32l69 -38c20 13 32 43 38 91c2 17 5 52 6 111h-50c-16 -10 -30 -27 -44 -51l-55 -2l68 146h83v27c0 103 -25 155 -67 155c-16 0 -43 -9 -95 -59l-42 26l105 128c84 0 139 -16 178 -92 c9 14 22 28 39 43c16 15 35 32 60 49h30c12 -10 55 -40 62 -40s8 0 18 8'], + 0x1D584: [661,209,774,80,694,'694 265c0 -255 -180 -474 -340 -474c-58 0 -137 25 -138 91c0 32 20 58 57 60c23 0 48 -16 48 -37c0 -8 -2 -15 -2 -22c0 -21 14 -29 42 -29c108 0 231 191 231 398c0 87 -24 207 -86 277l-57 -62c4 -21 7 -44 7 -73c0 -128 -38 -185 -113 -242c22 -18 44 -34 72 -58 c3 -2 6 -4 12 -4c10 0 17 7 42 23l35 -45l-152 -95l-36 33l13 17c-16 14 -58 44 -102 71h-59l-6 50c127 19 203 64 203 191c0 91 -49 217 -133 217c-32 0 -94 -34 -96 -97c0 -58 37 -111 108 -134l-17 -45c-112 23 -147 117 -147 197c0 91 77 181 176 181 c78 0 140 -50 175 -122c27 31 71 77 127 129l43 -30c-1 -2 -13 -20 -13 -20c78 -99 106 -241 106 -346'], + 0x1D585: [653,179,612,80,532,'532 94c0 -87 -74 -189 -199 -209c-27 -7 -54 -15 -94 -22c-33 33 -59 70 -77 66c-17 -4 -26 -13 -26 -28c0 -12 7 -29 23 -50c-10 -13 -23 -22 -41 -30c-23 25 -38 54 -38 87c0 36 16 56 44 68c24 10 31 8 80 30c7 11 18 16 31 16c4 0 9 0 16 -2c24 -50 51 -75 82 -75 c57 0 97 68 97 140c0 127 -73 156 -204 156c-30 0 -49 -17 -55 -50c-26 0 -49 1 -76 5c17 39 42 71 69 91c-30 19 -52 43 -64 77c16 4 53 9 53 9c25 -34 60 -46 100 -46c80 0 151 51 151 122c0 78 -58 123 -131 128c-68 2 -137 -38 -137 -113h-52c0 108 89 189 212 189 s218 -81 218 -180c0 -68 -39 -135 -120 -171c117 -51 138 -126 138 -208'], + 0x1D586: [439,35,549,80,469,'469 75l-88 -99s-5 -3 -9 -3c-11 0 -21 8 -27 20c-2 3 -2 4 -5 12c-22 14 -36 32 -43 54l-113 -94l-37 33l9 9c-30 39 -47 69 -57 86c-13 28 -18 67 -19 118c17 88 62 143 147 215c3 3 9 7 16 13c18 0 32 -1 45 -6c37 -25 78 -46 122 -65c3 -6 7 -12 7 -20 c0 -10 -7 -18 -20 -26c-3 -2 -6 -7 -6 -15v-202c0 -13 4 -21 15 -24c2 0 9 8 20 24zM297 126v186l-70 40c-37 -34 -55 -80 -55 -140c5 -52 25 -95 62 -132c22 14 39 27 63 46'], + 0x1D587: [627,19,491,80,411,'411 229c0 -61 -43 -131 -102 -185l-74 -63h-12c-19 0 -33 7 -47 24l-96 37c4 17 12 38 22 50l1 418c0 12 -6 28 -22 62l26 30c16 -12 26 -22 36 -34c30 45 71 59 136 59c0 0 -1 -41 0 -48c-26 -2 -82 -13 -82 -54v-143l118 75l29 -38l-12 -11c20 -34 41 -67 63 -105 c11 -29 16 -53 16 -74zM324 177c0 19 -4 41 -16 68v-1l-65 103c-13 -10 -26 -22 -46 -34v-214l64 -29l1 1c33 23 60 72 62 106'], + 0x1D588: [441,30,420,80,340,'340 382l-79 -63h-23l-47 35c-2 -2 -6 -4 -11 -9c-6 -28 -8 -63 -8 -100c0 -42 1 -84 13 -129c9 -19 19 -27 37 -29l11 -1c16 15 38 31 56 46l46 -27l-149 -135c-13 3 -24 12 -35 24l7 9c-27 9 -47 27 -59 53c-5 13 -12 38 -19 75v157c0 6 2 20 7 44l123 109h27l46 -40 l16 13'], + 0x1D589: [629,19,506,80,426,'426 266c0 -69 -34 -142 -103 -221l-69 -64h-40c0 20 -6 31 -91 59c-11 3 -22 6 -35 11c-3 7 -4 15 -4 22s1 14 4 20l21 11c3 1 5 4 5 9v246l61 47c-18 13 -42 34 -82 65c-8 12 -13 23 -13 52c0 67 43 106 105 106c10 0 18 -1 25 -4c1 -2 3 -2 6 -4l1 -39l-4 -5l-26 -3 c-22 0 -27 -12 -27 -21c0 -10 11 -19 27 -29l158 -99c54 -46 81 -98 81 -159zM342 215c0 37 -10 68 -31 94c-17 19 -42 43 -85 62c-5 -3 -17 -1 -17 -24v-235c21 -10 72 -40 72 -40c36 33 59 92 61 143'], + 0x1D58A: [439,30,438,80,358,'358 94l-147 -124c-18 1 -24 13 -27 27c-30 9 -53 26 -71 50c-23 32 -33 69 -33 137c0 38 3 82 8 134l12 21l130 100h34s69 -109 94 -162l-175 -138c3 -15 10 -28 21 -39c11 -9 24 -14 39 -15c9 0 17 3 26 8c13 9 33 24 55 40c6 -7 17 -20 34 -39zM250 261 c-14 25 -28 52 -48 83c-14 -12 -20 -20 -21 -27c-3 -21 -4 -51 -4 -101c0 -3 0 -8 1 -15c21 15 47 37 72 60'], + 0x1D58B: [629,167,440,80,360,'360 604l-43 -88l-14 -4c-25 17 -49 25 -72 26c-18 0 -29 -6 -29 -19c0 -34 8 -72 19 -105h92v-84h-85c0 -81 2 -176 -7 -278c-3 -70 -10 -142 -21 -219h-48l-22 235c-5 94 -10 150 -7 262h-33c-9 12 -12 25 -8 39c1 4 8 10 20 20c9 7 14 13 16 19l26 121 c21 67 60 100 120 100c16 0 32 -2 48 -6c4 2 8 3 13 3c16 1 22 -7 35 -22'], + 0x1D58C: [438,169,508,80,428,'428 18c0 -98 -75 -185 -180 -187c-75 0 -142 22 -164 109h94c1 -47 27 -55 71 -55c42 0 97 24 97 80c0 4 -1 7 -2 13l-33 80l-4 10l-131 -89l-37 27l15 19c-25 39 -74 80 -74 134c0 32 4 55 13 82c18 62 57 117 139 181v14c20 3 37 3 51 0c4 -22 74 -48 139 -67 c-23 -79 -34 -138 -35 -178c0 -29 5 -54 14 -76c7 -19 27 -64 27 -97zM314 299c-29 14 -55 28 -88 46c-36 -35 -54 -77 -54 -125c0 -52 26 -104 55 -127c0 0 5 -1 21 -1c17 13 29 21 48 36c-2 14 -3 29 -3 47c0 41 6 79 21 124'], + 0x1D58D: [627,175,507,80,427,'427 190c0 -54 -99 -231 -205 -365l-43 33c100 123 159 227 159 315c0 75 -43 118 -82 169c-16 -12 -28 -27 -48 -43v-208s19 14 30 25l36 -43c-18 -16 -24 -21 -38 -36c-12 -14 -21 -27 -29 -41c-10 -9 -19 -14 -33 -14h-18c-14 23 -35 38 -64 48c-4 6 -8 16 -12 37 c6 3 34 15 34 24v419c0 12 -6 28 -22 62l26 30c16 -12 26 -22 36 -34c30 45 71 59 136 59c0 0 -1 -41 0 -48c-26 -2 -82 -13 -82 -54v-150c21 19 56 48 96 80c17 -7 27 -17 30 -29l-8 -8c63 -69 101 -128 101 -228'], + 0x1D58E: [657,23,378,80,298,'259 609c0 -28 -24 -82 -62 -114h-49c0 70 11 162 66 162c34 0 45 -19 45 -48zM298 74c0 0 -69 -74 -92 -95c-12 -4 -24 -2 -33 6c-8 20 -20 34 -38 46v290c-6 -4 -12 -10 -19 -20l-36 39l105 115c16 -13 27 -23 32 -30c-3 -6 -6 -11 -9 -14c8 -9 23 -20 43 -28 c11 -11 12 -25 5 -42c-10 -5 -25 -11 -25 -21v-222c0 -5 1 -9 3 -11c6 6 19 14 29 22'], + 0x1D58F: [657,169,360,80,280,'271 609c0 -28 -24 -82 -63 -114h-48c0 70 10 162 65 162c34 0 46 -19 46 -48zM280 -48h-57s-12 15 -16 37c-19 -53 -18 -74 -64 -158h-63c36 61 56 124 66 200v290c-6 -4 -11 -10 -19 -20l-36 39l105 115c16 -13 27 -23 32 -30c-3 -6 -6 -11 -9 -14c8 -9 23 -20 43 -28 c11 -11 12 -25 5 -42c-10 -5 -25 -11 -25 -21v-222c0 -26 6 -97 38 -146'], + 0x1D590: [628,21,379,80,299,'299 408h-84v-315c0 -5 9 -12 15 -12s18 6 33 20l30 -26l-99 -96l-32 24l9 10c-10 7 -42 18 -73 23l1 35c9 5 16 11 23 18v319h-42v55h42v70c-4 11 -11 22 -23 35l32 33c10 -6 24 -17 31 -27c24 36 76 54 137 54v-38c-28 0 -73 -20 -80 -43v-38c8 33 50 57 80 57v-79 c-42 0 -69 -9 -77 -24h77v-55'], + 0x1D591: [627,26,388,80,308,'308 75l-134 -101c-6 2 -12 6 -18 11s-9 12 -13 22c-11 3 -44 17 -57 24c-4 7 -6 12 -6 18c0 5 2 10 4 16c6 6 22 15 22 21v424c0 12 -7 28 -22 62l26 30c15 -12 26 -22 36 -34c29 45 71 59 136 59c0 0 -1 -41 0 -48c-26 -2 -83 -13 -83 -54v-432c0 -8 10 -13 18 -13 c11 0 34 16 50 31'], + 0x1D592: [450,20,752,80,672,'672 78l-95 -94c-11 -3 -30 10 -27 24c-12 6 -20 7 -27 17c-5 9 -9 33 -9 68v214c0 12 -11 27 -32 31c-23 -18 -39 -37 -59 -57v-188c5 -11 8 -15 26 -25v-39c-26 -13 -43 -28 -48 -43c-9 -5 -18 -6 -26 -6c-7 0 -16 1 -25 6c-5 15 -22 30 -48 43v39c19 10 21 14 26 25 v214c0 12 -11 27 -32 31c-23 -18 -39 -37 -59 -57v-188c5 -11 8 -15 26 -25v-39c-26 -13 -43 -28 -48 -43c-9 -5 -18 -6 -26 -6c-7 0 -16 1 -25 6c-4 15 -22 30 -48 43v39c19 10 21 14 26 25v223c0 4 -1 4 -4 9c-6 -5 -12 -10 -21 -18l-37 37l109 106l33 -34 s-12 -11 -12 -13l26 -29v-14l85 80s12 2 18 2c9 0 15 -4 20 -13c4 -8 6 -10 11 -15c16 -9 28 -18 37 -29c5 -9 10 -21 13 -33l98 89c16 0 27 -3 35 -9c18 -22 45 -37 81 -45c0 -21 3 -35 -2 -43c-3 -2 -17 -5 -21 -11v-247s9 7 24 22'], + 0x1D593: [450,20,567,80,487,'487 78l-95 -94c-11 -3 -30 10 -27 24c-12 6 -20 7 -27 17c-5 9 -9 33 -9 68v214c0 12 -11 27 -32 31c-23 -18 -39 -37 -59 -57v-188c5 -11 7 -15 25 -25v-39c-26 -13 -43 -28 -48 -43c-9 -5 -18 -6 -26 -6c-7 0 -16 1 -25 6c-4 15 -22 30 -48 43v39c19 10 21 14 26 25 v223c0 4 -1 4 -4 9c-6 -5 -12 -10 -21 -18l-37 37l109 106l33 -34s-12 -11 -12 -13l25 -29v-22l98 89c5 2 11 5 17 5s12 -1 19 -5c18 -22 44 -46 80 -54c0 -21 3 -35 -2 -43c-3 -2 -17 -5 -21 -11v-247s9 7 24 22'], + 0x1D594: [454,20,496,79,416,'416 224c0 -77 -52 -156 -155 -239c-6 -4 -17 -5 -33 -5c-23 20 -111 41 -148 55c-1 15 2 31 5 39c12 3 18 22 18 51v237l230 92c11 -11 16 -25 20 -43l-18 -9c57 -82 81 -138 81 -178zM325 175c0 20 -1 28 -6 45c-14 57 -39 114 -62 144c-20 -6 -57 -25 -57 -25v-240 c22 -9 52 -23 76 -30c19 27 49 77 49 106'], + 0x1D595: [470,167,524,80,444,'444 241c0 -117 -56 -160 -152 -260c-6 -5 -11 -8 -18 -8c-10 0 -17 4 -24 13l-27 11c-3 -54 -8 -108 -15 -164h-48l-21 188c-4 -2 -12 -10 -22 -26l-37 34l56 78v198c-4 18 -21 35 -51 54c16 17 37 46 63 90v21c26 -10 44 -15 50 -23c0 -7 0 -21 -4 -30 c11 -6 25 -12 32 -19c35 18 137 56 137 56c13 -14 20 -31 21 -44l-16 -8c56 -89 76 -130 76 -161zM356 188c0 30 -24 117 -68 177l-57 -25v-241c18 -9 53 -23 76 -30c32 37 49 86 49 119'], + 0x1D596: [441,170,496,80,416,'416 351c0 -13 -5 -24 -14 -34l-34 -487h-51l-16 230c-35 -27 -79 -58 -118 -90c-16 0 -31 15 -32 30c0 5 0 8 1 11c-48 59 -72 116 -72 170c0 62 32 123 97 191c20 22 44 45 70 69h29c36 -29 81 -52 133 -70c4 -7 6 -14 7 -20zM300 127v182l-73 39 c-38 -46 -54 -85 -55 -127c0 -41 22 -88 66 -143h1c17 10 37 26 61 49'], + 0x1D597: [450,25,440,80,360,'360 344c-9 -11 -33 -39 -44 -66l-36 1l-23 36l-19 -27v-189c0 -12 5 -17 21 -23c19 13 41 31 60 46l31 -42l-121 -105c-15 4 -26 8 -33 14c-6 3 -9 7 -10 15l-75 40v13s1 8 7 24c12 6 18 10 21 13c0 0 2 11 2 18v197c0 6 -1 11 -5 18c-8 -5 -15 -16 -25 -17 c-12 5 -25 19 -31 36c23 29 99 104 99 104s22 -12 31 -29c0 -5 -4 -11 -5 -14c5 -10 13 -17 23 -34c15 22 31 46 47 68h34c7 -19 44 -56 51 -65v-32'], + 0x1D598: [443,19,532,80,452,'452 443c0 -17 -32 -61 -45 -79l-45 -62c-34 13 -75 36 -106 57c-14 -8 -37 -39 -44 -49c14 -12 44 -36 65 -57c11 12 20 25 32 37c67 -27 142 -63 142 -136c0 -40 -25 -86 -68 -120c-28 -22 -78 -33 -84 -36c-4 -6 -15 -17 -20 -17c-19 0 -40 -4 -56 12l-61 48l-47 -44 l-35 33l118 125l32 -25l-6 -7c24 -28 68 -71 97 -71c23 0 50 13 50 45c0 48 -43 80 -91 94c-7 -4 -11 -9 -16 -16h-46c-21 23 -78 58 -78 78c0 35 13 65 40 94l90 94h28c9 -14 11 -40 58 -40c33 0 51 31 54 42h42'], + 0x1D599: [538,21,381,80,301,'301 341h-82v-252c3 -5 7 -8 13 -8s18 6 33 20l30 -26l-99 -96l-32 24l9 10c-10 7 -42 18 -74 23l2 35c9 5 16 11 22 18v252h-43v33c48 15 94 103 94 144v20h72c-19 -23 -28 -112 -28 -132h83v-65'], + 0x1D59A: [435,36,567,80,487,'487 70l-109 -106l-33 34s12 11 13 13l-26 30v22l-98 -90c-5 -2 -11 -4 -17 -4s-12 0 -19 4c-18 22 -44 46 -80 55c0 20 -3 34 2 42c3 2 17 6 21 11v247s-9 -7 -24 -22l-37 31l95 93c11 3 30 -10 27 -24c12 -5 20 -6 27 -17c5 -9 9 -33 9 -67v-215c0 -12 11 -27 32 -30 c23 17 39 37 59 56v189c-5 10 -7 15 -25 24v40c26 13 43 27 48 42c9 5 18 7 26 7c7 0 16 -2 25 -7c4 -15 22 -29 48 -42v-40c-19 -9 -21 -14 -26 -24v-224c0 -4 1 -4 4 -8c6 4 12 10 21 17'], + 0x1D59B: [469,20,517,80,437,'346 185c0 48 -24 95 -56 159c-27 -12 -55 -34 -68 -54v-191l74 -31c15 24 50 65 50 117zM437 231c0 -18 -2 -38 -7 -58c-13 -54 -77 -133 -150 -191c-8 -1 -20 -4 -33 -1c-28 19 -98 38 -145 54c-3 9 -5 24 2 35c8 5 11 10 21 23v125c0 20 -2 32 -6 50 c-8 34 -13 58 -39 83c15 44 44 88 49 118l59 -19c-10 -19 -15 -32 -15 -39c0 -15 17 -29 30 -56c22 26 68 61 117 87l34 11c10 -12 18 -33 18 -43l-15 -7c28 -45 80 -123 80 -172'], + 0x1D59C: [469,20,701,80,621,'530 185c0 48 -24 95 -56 159c-27 -12 -55 -34 -68 -54v-191l74 -31c15 24 50 65 50 117zM621 231c0 -18 -2 -38 -7 -58c-13 -54 -77 -133 -150 -191c-8 -1 -20 -4 -32 -1c-29 19 -99 38 -146 54c-3 9 -5 24 2 35c8 5 11 10 21 23v125c0 20 -4 58 -5 74 c-1 10 -5 18 -9 26c-3 8 -8 14 -15 20h-1c-5 0 -22 1 -64 -49l-1 -196c5 -11 8 -15 26 -25v-39c-26 -13 -43 -28 -48 -43c-9 -5 -18 -6 -26 -6c-7 0 -16 1 -25 6c-5 15 -22 30 -48 43v39c18 10 21 14 26 25v175c0 31 -13 58 -39 83c15 44 44 88 49 118l59 -19 c-10 -19 -15 -32 -15 -39c0 -15 17 -29 30 -56c25 25 67 57 93 85h40c0 -14 2 -24 8 -29c9 -8 17 -16 26 -27c7 -9 12 -22 19 -33c21 25 67 65 115 91l34 11c10 -12 18 -33 18 -43l-15 -7c28 -45 80 -123 80 -172'], + 0x1D59D: [452,29,504,80,424,'424 78l-93 -107l-27 22l-62 136c-27 -66 -53 -117 -69 -136c-5 -6 -11 -13 -21 -13c-8 0 -22 -1 -28 9l-44 79l42 75h34l18 -27c12 26 22 51 37 83c-14 31 -20 72 -55 116c-7 7 -7 12 -15 17c-8 -5 -15 -13 -27 -26l-34 38l98 108c22 -14 32 -29 36 -37 c1 -2 -7 -8 -7 -8c19 -25 40 -56 57 -94l68 128h41c2 -13 2 -29 17 -46c13 -17 25 -30 25 -47c0 -18 -20 -41 -54 -78l-33 51c-8 -19 -24 -53 -38 -76l70 -156c4 0 12 6 25 19'], + 0x1D59E: [469,175,512,80,432,'432 190c0 -54 -99 -231 -206 -365l-42 33c100 123 159 227 159 315c0 75 -44 118 -83 169c-15 -12 -27 -27 -48 -43v-208s20 14 31 25l36 -43c-19 -16 -24 -21 -38 -36c-12 -14 -21 -27 -30 -41c-10 -9 -18 -14 -32 -14h-19c-13 23 -35 38 -63 48c-4 6 -9 16 -12 37 c6 3 34 15 34 24v177c0 31 -13 58 -39 83c15 44 44 88 49 118l59 -19c-10 -19 -15 -32 -15 -39c0 -15 17 -29 30 -56c19 19 66 68 105 100c17 -7 27 -17 31 -29l-8 -8c63 -69 101 -128 101 -228'], + 0x1D59F: [461,170,403,80,323,'323 -19c0 -89 -64 -151 -134 -151c-60 0 -109 40 -109 138c0 44 38 99 92 145c-28 43 -54 78 -54 78c55 24 79 56 82 94c2 20 -7 54 -33 54c-13 0 -23 -15 -45 -36l-39 28l108 130c21 -8 33 -18 37 -33c44 -16 68 -45 68 -88c0 -52 -24 -98 -81 -131c6 -7 17 -23 30 -43 c19 11 39 21 58 28l15 -34c-18 -9 -35 -18 -53 -30c29 -50 58 -113 58 -149zM240 -37c0 27 -21 71 -46 114c-34 -33 -58 -70 -58 -109c0 -59 22 -85 56 -85c32 0 47 31 48 80'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Latin/Regular/Main.js new file mode 100644 index 0000000..41c699f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Latin/Regular/Main.js @@ -0,0 +1,298 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'GyreTermesMathJax_Latin', + id: 'GYRETERMESLATIN', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xA1: [459,226,333,96,203,'203 -149c0 -47 -20 -77 -53 -77c-34 0 -53 28 -53 80c0 14 1 25 2 37l45 383h13l9 -108c2 -25 8 -78 17 -138c11 -72 20 -154 20 -177zM203 407c0 -31 -23 -55 -53 -55s-54 25 -54 55s23 52 55 52c30 0 52 -22 52 -52'], + 0xA2: [579,138,500,53,448,'448 156c-34 -70 -53 -97 -88 -127c-28 -24 -65 -38 -103 -38c-17 0 -32 2 -56 9l-49 -138h-34l51 150c-37 21 -52 34 -70 59c-29 40 -46 94 -46 148c0 135 96 241 220 241c14 0 27 -1 51 -5l44 124h35l-47 -135c48 -19 75 -49 75 -84c0 -26 -18 -45 -43 -45 s-40 13 -58 52l-101 -291c24 -9 39 -12 59 -12c59 0 95 25 147 100zM313 421c-18 7 -30 9 -47 9c-82 0 -136 -68 -136 -170c0 -72 19 -117 68 -162'], + 0xA4: [602,-58,500,-22,522,'522 108l-48 -50l-98 98c-40 -28 -78 -41 -125 -41s-85 12 -127 41l-96 -98l-50 50l98 96c-29 42 -41 78 -41 126s12 86 41 126l-98 98l50 48l96 -96c44 28 79 39 127 39c49 0 86 -12 125 -39l98 96l48 -48l-96 -98c29 -43 39 -76 39 -125c0 -48 -10 -82 -39 -127z M397 332c0 83 -65 149 -148 149c-80 0 -146 -68 -146 -150c0 -84 66 -152 148 -152s146 67 146 153'], + 0xA6: [662,156,200,67,133,'133 335h-66v327h66v-327zM133 -156h-66v327h66v-327'], + 0xA9: [686,14,760,30,730,'730 336c0 -193 -157 -350 -350 -350s-350 157 -350 350s157 350 350 350s350 -157 350 -350zM692 336c0 172 -140 312 -312 312s-312 -140 -312 -312s140 -312 312 -312s312 140 312 312zM573 212c-38 -48 -102 -75 -174 -75c-127 0 -213 78 -213 196 c0 65 26 120 74 156c39 29 91 46 140 46c31 0 62 -5 93 -14c10 -3 19 -5 25 -5c12 0 21 7 24 19h17l5 -133h-17c-12 38 -21 54 -41 72c-25 23 -57 35 -93 35c-90 0 -146 -67 -146 -169c0 -66 21 -117 58 -145c25 -19 58 -29 94 -29c52 0 94 17 141 58'], + 0xAA: [676,-349,276,4,270,'270 424c-23 -23 -37 -30 -59 -30c-27 0 -39 12 -45 44c-33 -30 -61 -44 -91 -44c-41 0 -71 28 -71 68c0 20 9 40 22 51c27 23 40 30 131 63v30c0 27 -13 42 -36 42c-22 0 -45 -12 -45 -23c0 -4 1 -9 2 -14c1 -3 1 -8 1 -8c0 -13 -15 -25 -31 -25c-18 0 -32 14 -32 31 c0 39 46 67 108 67c70 0 105 -32 105 -96v-115c0 -29 2 -35 13 -35c10 0 18 4 28 12v-18zM158 474v77c-70 -25 -91 -40 -91 -66c0 -24 17 -44 38 -44c13 0 25 3 42 11c8 7 11 14 11 22zM270 349h-266v28h266v-28'], + 0xAB: [411,-33,500,57,468,'278 42c0 -5 -4 -9 -10 -9c-4 0 -6 1 -10 6c-57 56 -97 92 -170 156l-31 27l31 27c73 63 113 100 170 156c4 5 6 6 10 6c6 0 10 -4 10 -9c0 -12 -41 -77 -118 -170l-10 -12l10 -12c77 -92 118 -154 118 -166zM468 42c0 -5 -4 -9 -10 -9c-4 0 -6 1 -10 6 c-57 56 -97 92 -170 156l-31 27l31 27c73 63 113 100 170 156c4 5 6 6 10 6c6 0 10 -4 10 -9c0 -12 -41 -77 -118 -170l-10 -12l10 -12c77 -92 118 -154 118 -166'], + 0xB6: [662,154,453,-22,450,'450 -154h-154v794h-58v-794h-154v22c78 5 88 17 88 101v304c-63 2 -91 10 -124 34c-47 32 -70 89 -70 170c0 130 62 185 209 185h263v-19c-77 -7 -88 -18 -88 -90v-595c0 -71 12 -84 88 -90v-22zM172 295v345c-40 -3 -57 -9 -75 -22c-29 -21 -43 -66 -43 -137 c0 -126 32 -177 118 -186'], + 0xB8: [5,215,333,52,261,'261 -131c0 -52 -48 -84 -125 -84c-32 0 -55 4 -84 16l14 31c28 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-11 0 -20 -1 -28 -4l-7 5l41 104h35l-25 -70c10 2 16 3 26 3c54 0 86 -26 86 -69'], + 0xBA: [676,-349,310,6,304,'304 542c0 -84 -66 -148 -153 -148c-84 0 -145 59 -145 139c0 85 62 143 153 143c85 0 145 -55 145 -134zM231 514c0 75 -33 129 -81 129c-43 0 -71 -29 -71 -74c0 -39 9 -79 25 -108c12 -22 31 -34 56 -34c46 0 71 31 71 87zM304 349h-298v28h298v-28'], + 0xBB: [411,-33,500,45,456,'266 222l-31 -27c-73 -63 -113 -100 -170 -156c-4 -5 -6 -6 -10 -6c-6 0 -10 4 -10 9c0 12 41 77 118 170l10 12l-10 12c-77 92 -118 154 -118 166c0 5 4 9 10 9c4 0 6 -1 10 -6c57 -56 97 -92 170 -156zM456 222l-31 -27c-73 -63 -113 -100 -170 -156 c-4 -5 -6 -6 -10 -6c-6 0 -10 4 -10 9c0 12 41 77 118 170l10 12l-10 12c-77 92 -118 154 -118 166c0 5 4 9 10 9c4 0 6 -1 10 -6c57 -56 97 -92 170 -156'], + 0xBF: [458,226,444,30,376,'376 -81c0 -83 -70 -145 -162 -145c-54 0 -113 23 -148 58c-23 23 -36 59 -36 97c0 41 13 77 45 126c14 21 14 21 60 77c37 47 54 87 65 154h17c-1 -44 -11 -93 -30 -142l-28 -64c-24 -55 -37 -110 -37 -156c0 -67 48 -120 108 -120c49 0 95 30 95 62c0 8 -5 17 -17 31 c-15 17 -21 29 -21 43c0 24 17 41 41 41c31 0 48 -22 48 -62zM260 407c0 -32 -23 -56 -53 -56c-29 0 -54 25 -54 55s23 52 55 52c30 0 52 -22 52 -51'], + 0xC0: [851,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM445 712h-43 l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19'], + 0xC1: [851,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM512 825 c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0xC2: [847,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM531 718h-48 l-125 79l-125 -79h-48l134 129h77'], + 0xC3: [835,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM522 835 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0xC4: [832,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM308 782 c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM507 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xC5: [896,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM457 796 c0 -55 -45 -99 -100 -99c-56 0 -99 44 -99 100c0 54 45 99 99 99c55 0 100 -45 100 -100zM423 796c0 36 -30 66 -65 66c-36 0 -66 -29 -66 -65s29 -66 64 -66c37 0 67 29 67 65'], + 0xC6: [662,0,889,0,863,'863 168l-44 -168h-510v19l17 2c60 7 72 21 72 87v152h-176l-28 -53c-40 -78 -64 -136 -64 -158c0 -15 25 -26 68 -30h1v-19h-199v19c43 6 55 17 88 78l245 484c6 11 9 22 9 28c0 22 -25 31 -90 33v20h564v-141h-23c-13 91 -36 105 -182 105h-87c-19 0 -27 -8 -27 -30 v-230h111c63 0 98 9 114 30c10 15 14 30 18 67h21v-234h-21c-5 41 -9 56 -20 72c-13 18 -40 28 -78 28h-145v-238c0 -50 4 -53 69 -53h76c108 0 139 20 197 130h24zM398 299v319l-159 -319h159'], + 0xC7: [676,215,667,28,633,'633 113c-61 -81 -160 -127 -273 -127c-8 0 -15 0 -24 1l-20 -52c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5l37 89 c-167 24 -274 153 -274 335c0 114 41 209 117 272c61 50 140 79 217 79c49 0 98 -8 147 -24c16 -6 30 -9 40 -9c19 0 35 12 41 33h21l9 -226h-23c-19 65 -34 93 -66 125c-40 40 -91 61 -149 61c-145 0 -238 -117 -238 -298c0 -116 33 -206 92 -255c42 -35 96 -53 156 -53 c83 0 149 30 223 101'], + 0xC8: [851,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM370 712h-43l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19'], + 0xC9: [851,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM437 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0xCA: [847,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM456 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0xCB: [832,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM233 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM432 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xCC: [851,0,333,12,315,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM254 712h-43l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19'], + 0xCD: [851,0,333,18,321,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM321 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0xCE: [847,0,333,-6,340,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM340 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0xCF: [832,0,333,18,316,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM117 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM316 782c0 -27 -23 -49 -51 -49 c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xD0: [662,0,722,16,685,'685 334c0 -97 -37 -186 -102 -245c-62 -56 -167 -89 -283 -89h-284v19c76 5 88 18 88 90v206h-83v44h83v194c0 74 -9 83 -88 90v19h270c137 0 246 -36 314 -105c55 -55 85 -133 85 -223zM576 327c0 108 -41 194 -119 248c-48 34 -112 50 -201 50c-40 0 -50 -8 -50 -39 v-227h146v-44h-146v-237c0 -32 12 -41 52 -41c87 0 145 12 196 41c81 47 122 131 122 249'], + 0xD1: [835,11,722,12,707,'707 643c-38 -4 -52 -8 -66 -18c-19 -13 -29 -50 -29 -110v-526h-17l-442 550v-392c0 -101 17 -124 94 -128v-19h-235v19c83 6 97 25 97 128v441c-40 47 -54 55 -97 55v19h171l385 -484v337c0 62 -9 98 -29 112c-15 9 -29 13 -67 16v19h235v-19zM525 835 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0xD2: [851,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM449 712h-43l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19'], + 0xD3: [851,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM516 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0xD4: [847,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM535 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0xD5: [835,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM526 835c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18 l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0xD6: [832,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM312 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM511 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50 c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xD8: [734,80,722,34,688,'688 331c0 -203 -135 -345 -329 -345c-67 0 -113 13 -175 50l-79 -116h-49l95 139c-42 38 -58 58 -76 93c-26 50 -41 115 -41 178c0 203 136 346 328 346c66 0 111 -13 175 -49l72 107h49l-88 -130c41 -38 58 -58 76 -93c27 -50 42 -115 42 -180zM574 330 c0 89 -13 145 -47 210l-308 -452c43 -47 84 -66 142 -66c132 0 213 117 213 308zM502 575c-44 46 -86 65 -141 65c-131 0 -213 -119 -213 -310c0 -88 12 -143 46 -207'], + 0xD9: [851,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM474 712h-43l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19'], + 0xDA: [851,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM541 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0xDB: [847,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM560 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0xDC: [832,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM337 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM536 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xDD: [851,0,722,22,703,'703 643c-51 -4 -77 -26 -138 -114l-148 -226v-194c0 -76 14 -88 103 -90v-19h-306v19c91 4 101 14 101 101v174l-131 192c-100 141 -114 155 -162 157v19h280v-19c-11 -1 -21 -1 -25 -1c-32 -2 -46 -11 -46 -29c0 -11 6 -28 17 -44l148 -222l143 226c9 15 14 27 14 37 c0 24 -17 32 -69 33v19h219v-19zM521 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0xDE: [662,0,556,16,542,'542 351c0 -66 -37 -127 -96 -159c-43 -24 -97 -34 -175 -34c-24 0 -42 1 -69 3v-52c0 -73 15 -87 94 -90v-19h-280v19c76 7 84 17 84 101v433c0 72 -10 82 -84 90v19h277v-19c-82 -7 -92 -20 -91 -111h80c160 0 260 -70 260 -181zM433 345c0 103 -61 149 -199 149 c-25 0 -32 -7 -32 -33v-260c23 -2 37 -3 57 -3c115 0 174 50 174 147'], + 0xDF: [683,9,500,12,468,'468 186c0 -109 -79 -195 -179 -195c-57 0 -97 30 -97 73c0 27 19 48 45 48c22 0 40 -17 42 -40l2 -22c2 -22 10 -30 29 -30c42 0 64 45 64 130c0 135 -44 204 -132 207c-23 1 -32 6 -32 17c0 9 8 13 29 15c65 7 95 48 95 128c0 87 -34 139 -91 139 c-52 0 -86 -42 -86 -107v-549h-145v15c50 4 61 16 61 69v370c0 70 9 115 30 152c29 51 80 77 148 77c104 0 170 -60 170 -152c0 -72 -30 -105 -137 -154c61 -12 90 -23 122 -51c40 -34 62 -84 62 -140'], + 0xE0: [675,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM298 504h-40l-154 97 c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0xE1: [675,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM375 643c0 -16 -9 -29 -30 -42 l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0xE2: [674,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM380 507h-34l-122 103l-121 -103 h-34l124 167h62'], + 0xE3: [643,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM389 643 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0xE4: [640,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM175 590c0 -27 -23 -49 -51 -49 c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM374 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xE5: [690,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM324 590c0 -55 -45 -99 -100 -99 c-56 0 -99 44 -99 100c0 54 45 99 99 99c55 0 100 -45 100 -100zM290 590c0 36 -30 66 -65 66c-36 0 -66 -29 -66 -65s29 -66 64 -66c37 0 67 29 67 65'], + 0xE6: [460,10,667,38,632,'632 149c-27 -59 -46 -87 -73 -111c-36 -32 -77 -48 -124 -48c-57 0 -95 21 -129 73c-68 -56 -102 -73 -152 -73c-68 0 -116 45 -116 110c0 60 42 101 149 145l86 36l2 63c1 23 -4 54 -12 69c-7 14 -26 23 -50 23c-42 0 -73 -23 -68 -50c1 -3 1 -6 1 -6v-11l1 -17 c1 -29 -15 -48 -43 -48c-27 0 -44 19 -44 48c0 62 69 108 160 108c49 0 79 -12 117 -45c45 34 73 45 119 45c101 0 149 -54 160 -183h-262c1 -99 6 -131 27 -170c17 -30 54 -50 95 -50c57 0 96 27 144 97zM294 88l-1 3c-13 37 -19 74 -19 110v52 c-121 -44 -149 -68 -149 -128c0 -48 30 -87 67 -87s102 32 102 50zM521 307c-2 87 -25 124 -79 124c-57 0 -82 -36 -87 -124h166'], + 0xE7: [460,215,444,25,412,'412 147c-52 -105 -105 -150 -186 -157l-21 -55c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5l38 91c-101 13 -167 101 -167 220 c0 83 29 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174c0 -115 63 -195 155 -195c57 0 93 24 141 94'], + 0xE8: [675,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M308 504h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0xE9: [675,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M385 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0xEA: [674,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M390 507h-34l-122 103l-121 -103h-34l124 167h62'], + 0xEB: [640,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M185 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM384 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xEC: [675,0,278,-13,253,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM211 504h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0xED: [675,0,278,16,288,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM288 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0xEE: [674,0,278,-18,293,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM293 507h-34l-122 103l-121 -103h-34l124 167h62'], + 0xEF: [640,0,278,-11,287,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM88 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM287 590c0 -27 -23 -49 -51 -49 c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xF1: [643,0,500,16,485,'485 0h-208v15c50 4 63 21 63 84v209c0 66 -24 97 -73 97c-33 0 -55 -12 -103 -57v-281c0 -36 15 -48 66 -52v-15h-212v15c51 4 62 18 62 75v248c0 49 -9 64 -37 64c-11 0 -21 -1 -27 -4v17c55 16 89 27 138 45l7 -2v-79c68 64 99 81 145 81c74 0 118 -56 118 -150v-229 c0 -49 12 -61 61 -66v-15zM417 643c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0xF2: [675,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM324 504h-40l-154 97 c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0xF3: [675,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM401 643c0 -16 -9 -29 -30 -42 l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0xF4: [674,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM406 507h-34l-122 103l-121 -103 h-34l124 167h62'], + 0xF5: [643,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM415 643 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0xF6: [640,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM201 590c0 -27 -23 -49 -51 -49 c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM400 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xF8: [551,112,500,29,470,'470 234c0 -139 -96 -244 -223 -244c-35 0 -58 5 -93 21l-65 -123h-37l73 140c-34 27 -47 42 -63 69c-21 38 -33 84 -33 130c0 136 91 233 220 233c33 0 57 -5 92 -18l57 109h39l-65 -125c31 -22 44 -34 60 -58c24 -38 38 -86 38 -134zM380 203c0 64 -11 108 -40 163 l-161 -306c25 -30 48 -42 82 -42c75 0 119 69 119 185zM317 396c-27 26 -49 36 -80 36c-71 0 -118 -62 -118 -156c0 -69 12 -127 39 -184'], + 0xF9: [675,10,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M318 504h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0xFA: [675,10,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M395 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0xFB: [674,10,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M400 507h-34l-122 103l-121 -103h-34l124 167h62'], + 0xFC: [640,10,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M195 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM394 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xFD: [675,218,500,14,475,'475 435c-24 -3 -35 -13 -48 -45l-154 -408c-54 -144 -102 -200 -169 -200c-42 0 -74 25 -74 58c0 24 20 44 43 44c17 0 34 -4 53 -11c10 -5 19 -7 25 -7c14 0 36 19 50 45c17 30 40 93 40 108c0 8 -4 20 -11 37l-165 348c-8 17 -25 28 -51 32v14h206v-15 c-43 -2 -58 -9 -58 -27c0 -11 4 -24 10 -38l115 -253l97 276c3 7 4 13 4 17c0 16 -16 25 -48 25v15h135v-15zM431 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0xFE: [683,217,500,5,470,'470 247c0 -145 -92 -257 -210 -257c-42 0 -66 10 -101 43v-157c0 -63 13 -74 88 -75v-18h-242v18c59 5 70 16 70 68v704c0 42 -9 51 -49 51c-7 0 -11 0 -17 -1v16c69 19 97 27 145 44l5 -3v-298c45 54 89 78 144 78c97 0 167 -89 167 -213zM384 208 c0 116 -49 192 -123 192c-46 0 -102 -36 -102 -66v-246c0 -30 57 -66 104 -66c72 0 121 75 121 186'], + 0xFF: [640,218,500,14,475,'475 435c-24 -3 -35 -13 -48 -45l-154 -408c-54 -144 -102 -200 -169 -200c-42 0 -74 25 -74 58c0 24 20 44 43 44c17 0 34 -4 53 -11c10 -5 19 -7 25 -7c14 0 36 19 50 45c17 30 40 93 40 108c0 8 -4 20 -11 37l-165 348c-8 17 -25 28 -51 32v14h206v-15 c-43 -2 -58 -9 -58 -27c0 -11 4 -24 10 -38l115 -253l97 276c3 7 4 13 4 17c0 16 -16 25 -48 25v15h135v-15zM231 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM430 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50 c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0x100: [809,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM513 755h-311v54 h311v-54'], + 0x101: [617,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM380 563h-311v54h311v-54'], + 0x102: [851,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM514 851 c0 -70 -62 -138 -156 -138s-156 68 -156 138h26c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x103: [669,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM365 669 c-12 -106 -58 -157 -142 -157c-47 0 -87 19 -112 54c-19 28 -26 52 -27 103h29c14 -67 48 -97 112 -97c58 0 83 21 111 97h29'], + 0x104: [674,245,722,15,706,'706 -164c-18 -39 -46 -81 -103 -81c-43 0 -77 38 -77 86c0 40 14 75 36 104c15 21 34 39 55 55h-166v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20 l249 -568c35 -74 45 -84 90 -87v-19c-38 0 -76 -16 -95 -49c-15 -24 -24 -51 -24 -83c0 -36 16 -61 46 -61c26 0 42 23 54 43zM447 257l-116 275l-115 -275h231'], + 0x105: [460,245,444,37,442,'442 -164c-18 -39 -46 -81 -103 -81c-43 0 -77 38 -77 86c0 40 14 75 36 104c12 17 27 32 43 46c-33 3 -48 24 -53 72c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49 c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26c-17 -19 -31 -31 -45 -39c-34 -19 -57 -52 -68 -89 c-4 -13 -6 -28 -6 -44c0 -36 16 -61 46 -61c26 0 42 23 54 43zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53'], + 0x106: [851,14,667,28,633,'633 113c-61 -81 -160 -127 -273 -127c-199 0 -332 136 -332 339c0 114 41 209 117 272c61 50 140 79 217 79c49 0 98 -8 147 -24c16 -6 30 -9 40 -9c19 0 35 12 41 33h21l9 -226h-23c-19 65 -34 93 -66 125c-40 40 -91 61 -149 61c-145 0 -238 -117 -238 -298 c0 -116 33 -206 92 -255c42 -35 96 -53 156 -53c83 0 149 30 223 101zM517 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x107: [675,10,444,25,412,'412 147c-32 -62 -52 -91 -82 -115c-34 -28 -72 -42 -115 -42c-111 0 -190 93 -190 222c0 83 30 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174 c0 -115 63 -195 155 -195c57 0 93 24 141 94zM395 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x10C: [847,14,667,28,633,'633 113c-61 -81 -160 -127 -273 -127c-199 0 -332 136 -332 339c0 114 41 209 117 272c61 50 140 79 217 79c49 0 98 -8 147 -24c16 -6 30 -9 40 -9c19 0 35 12 41 33h21l9 -226h-23c-19 65 -34 93 -66 125c-40 40 -91 61 -149 61c-145 0 -238 -117 -238 -298 c0 -116 33 -206 92 -255c42 -35 96 -53 156 -53c83 0 149 30 223 101zM535 847l-134 -129h-77l-135 129h48l125 -79l125 79h48'], + 0x10D: [674,10,444,25,412,'412 147c-32 -62 -52 -91 -82 -115c-34 -28 -72 -42 -115 -42c-111 0 -190 93 -190 222c0 83 30 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174 c0 -115 63 -195 155 -195c57 0 93 24 141 94zM400 674l-125 -167h-62l-124 167h34l121 -103l122 103h34'], + 0x10E: [847,0,722,16,685,'685 334c0 -97 -37 -186 -102 -245c-62 -56 -167 -89 -283 -89h-284v19c76 5 88 18 88 90v444c0 74 -9 83 -88 90v19h270c137 0 246 -36 314 -105c55 -55 85 -133 85 -223zM576 327c0 108 -41 194 -119 248c-48 34 -113 50 -199 50c-41 0 -52 -8 -52 -39v-508 c0 -32 12 -41 52 -41c87 0 145 12 196 41c81 47 122 131 122 249zM473 847l-134 -129h-77l-135 129h48l125 -79l125 79h48'], + 0x10F: [683,10,500,27,603,'491 42l-147 -52l-4 3v64c-34 -47 -72 -67 -128 -67c-110 0 -185 87 -185 215c0 142 93 255 208 255c40 0 67 -11 105 -43v156c0 41 -9 51 -46 51c-8 0 -14 0 -22 -1v16c64 17 99 27 147 44l5 -2v-567c0 -46 8 -57 44 -57c3 0 5 0 23 1v-16zM340 102v230 c0 53 -49 100 -102 100c-76 0 -125 -74 -125 -187c0 -123 55 -203 138 -203c29 0 54 10 72 30c10 11 17 23 17 30zM603 594c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57 c45 0 80 -39 80 -89'], + 0x110: [662,0,722,16,685,'685 334c0 -97 -37 -186 -102 -245c-62 -56 -167 -89 -283 -89h-284v19c76 5 88 18 88 90v206h-83v44h83v194c0 74 -9 83 -88 90v19h270c137 0 246 -36 314 -105c55 -55 85 -133 85 -223zM576 327c0 108 -41 194 -119 248c-48 34 -112 50 -201 50c-40 0 -50 -8 -50 -39 v-227h146v-44h-146v-237c0 -32 12 -41 52 -41c87 0 145 12 196 41c81 47 122 131 122 249'], + 0x111: [683,10,500,27,500,'500 527h-76v-413c0 -46 8 -57 44 -57c3 0 5 0 23 1v-16l-147 -52l-4 3v64c-34 -47 -72 -67 -128 -67c-110 0 -185 87 -185 215c0 142 93 255 208 255c40 0 67 -11 105 -43v110h-121v34h121v12c0 41 -9 51 -46 51c-8 0 -14 0 -22 -1v16c64 17 99 27 147 44l5 -2v-120h76 v-34zM340 102v230c0 53 -49 100 -102 100c-76 0 -125 -74 -125 -187c0 -123 55 -203 138 -203c29 0 54 10 72 30c10 11 17 23 17 30'], + 0x112: [809,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM438 755h-311v54h311v-54'], + 0x113: [617,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M390 563h-311v54h311v-54'], + 0x116: [833,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM333 782c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x117: [641,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M285 590c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x118: [662,245,611,12,597,'597 169l-45 -169c-38 0 -76 -16 -95 -49c-15 -24 -24 -51 -24 -83c0 -36 16 -61 46 -61c26 0 42 23 54 43l19 -14c-18 -39 -46 -81 -103 -81c-43 0 -77 38 -77 86c0 40 14 75 36 104c15 21 34 39 55 55h-451v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143 h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27c143 0 186 24 236 132h28'], + 0x119: [460,245,444,25,424,'424 157c-17 -43 -39 -79 -65 -105c-32 -33 -77 -79 -90 -101c-15 -24 -24 -51 -24 -83c0 -36 16 -61 46 -61c26 0 42 23 54 43l19 -14c-18 -39 -46 -81 -103 -81c-43 0 -77 38 -77 86c0 40 14 75 36 104c14 20 33 38 53 54c-19 -6 -39 -9 -61 -9 c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204'], + 0x11A: [847,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM455 847l-134 -129h-77l-135 129h48l125 -79l125 79h48'], + 0x11B: [674,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M390 674l-125 -167h-62l-124 167h34l121 -103l122 103h34'], + 0x11E: [851,14,722,32,709,'709 336c-58 -5 -70 -18 -70 -77v-203c-40 -35 -165 -70 -251 -70c-110 0 -206 38 -273 107c-56 59 -83 134 -83 232c0 204 143 351 343 351c45 0 91 -8 136 -23c18 -7 34 -10 44 -10c21 0 39 14 45 33h22l8 -211h-23c-25 61 -41 88 -71 116c-39 36 -88 55 -144 55 c-68 0 -130 -27 -174 -76s-72 -140 -72 -234c0 -186 100 -300 263 -300c72 0 133 27 133 59v162c0 43 -6 66 -21 75c-12 8 -24 11 -67 14v18h255v-18zM532 851c0 -70 -62 -138 -156 -138s-156 68 -156 138h26c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x11F: [669,218,500,28,470,'470 388h-83c14 -32 19 -55 19 -84c0 -50 -15 -85 -48 -113c-31 -27 -71 -42 -108 -42c-6 0 -19 1 -38 3c-3 0 -10 1 -19 2c-27 -8 -60 -43 -60 -63c0 -16 25 -25 78 -27l129 -6c74 -3 121 -45 121 -107c0 -38 -17 -70 -55 -101c-52 -42 -130 -68 -205 -68 c-95 0 -173 44 -173 97c0 37 27 70 98 122c-41 20 -53 32 -53 53c0 20 13 40 46 69l43 40c-66 33 -93 71 -93 134c0 91 74 163 167 163c26 0 53 -5 80 -15l22 -8c20 -7 35 -10 55 -10h77v-39zM433 -64c0 36 -33 49 -124 49c-49 0 -129 6 -162 13c-42 -50 -49 -63 -49 -86 c0 -44 58 -73 146 -73c113 0 189 39 189 97zM329 265c0 39 -12 85 -30 120c-16 30 -42 47 -73 47c-46 0 -74 -35 -74 -94v-3c0 -96 42 -161 102 -161c46 0 75 35 75 91zM377 669c-12 -106 -58 -157 -142 -157c-47 0 -87 19 -112 54c-19 28 -26 52 -27 103h29 c14 -67 48 -97 112 -97c58 0 83 21 111 97h29'], + 0x122: [676,281,722,32,709,'709 336c-58 -5 -70 -18 -70 -77v-203c-40 -35 -165 -70 -251 -70c-110 0 -206 38 -273 107c-56 59 -83 134 -83 232c0 204 143 351 343 351c45 0 91 -8 136 -23c18 -7 34 -10 44 -10c21 0 39 14 45 33h22l8 -211h-23c-25 61 -41 88 -71 116c-39 36 -88 55 -144 55 c-68 0 -130 -27 -174 -76s-72 -140 -72 -234c0 -186 100 -300 263 -300c72 0 133 27 133 59v162c0 43 -6 66 -21 75c-12 8 -24 11 -67 14v18h255v-18zM445 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2 c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x123: [733,218,500,28,470,'306 547c0 -34 -24 -57 -59 -57c-45 0 -80 39 -80 89c0 60 45 121 112 154l9 -19c-54 -37 -82 -74 -82 -106c0 -8 6 -14 14 -14c0 0 1 0 8 2c6 1 13 2 19 2c36 0 59 -19 59 -51zM470 388h-83c14 -32 19 -55 19 -84c0 -50 -15 -85 -48 -113c-31 -27 -71 -42 -108 -42 c-6 0 -19 1 -38 3c-3 0 -10 1 -19 2c-27 -8 -60 -43 -60 -63c0 -16 25 -25 78 -27l129 -6c74 -3 121 -45 121 -107c0 -38 -17 -70 -55 -101c-52 -42 -130 -68 -205 -68c-95 0 -173 44 -173 97c0 37 27 70 98 122c-41 20 -53 32 -53 53c0 20 13 40 46 69l43 40 c-66 33 -93 71 -93 134c0 91 74 163 167 163c26 0 53 -5 80 -15l22 -8c20 -7 35 -10 55 -10h77v-39zM433 -64c0 36 -33 49 -124 49c-49 0 -129 6 -162 13c-42 -50 -49 -63 -49 -86c0 -44 58 -73 146 -73c113 0 189 39 189 97zM329 265c0 39 -12 85 -30 120 c-16 30 -42 47 -73 47c-46 0 -74 -35 -74 -94v-3c0 -96 42 -161 102 -161c46 0 75 35 75 91'], + 0x128: [835,0,333,1,331,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM331 835c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101 c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x129: [643,0,278,-28,302,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM302 643c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101 c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x12A: [809,0,333,11,322,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM322 755h-311v54h311v-54'], + 0x12B: [617,0,278,-18,293,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM293 563h-311v54h311v-54'], + 0x12E: [662,245,333,18,315,'315 -164c-18 -39 -46 -81 -103 -81c-43 0 -77 38 -77 86c0 40 14 75 36 104c15 21 34 39 55 55h-208v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19c-38 0 -76 -16 -95 -49c-15 -24 -24 -51 -24 -83 c0 -36 16 -61 46 -61c26 0 42 23 54 43'], + 0x12F: [641,245,278,16,253,'253 0c-42 7 -83 -13 -105 -49c-15 -24 -24 -51 -24 -83c0 -36 16 -61 46 -61c26 0 42 23 54 43l19 -14c-18 -39 -46 -81 -103 -81c-43 0 -77 38 -77 86c0 40 14 75 36 104c15 21 34 39 55 55h-138v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1 v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM190 590c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x130: [833,0,333,18,315,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM217 782c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x132: [662,14,787,40,747,'337 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM747 643c-81 -6 -92 -17 -92 -90v-370c0 -125 -61 -197 -169 -197c-58 0 -99 30 -99 72c0 27 22 50 49 50c26 0 42 -16 52 -51 c7 -25 13 -33 27 -33c26 0 38 21 38 66v463c0 73 -11 84 -93 90v19h287v-19'], + 0x133: [641,218,535,40,504,'277 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM212 590c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51zM495 0c0 -142 -59 -218 -170 -218 c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v379c0 43 -9 60 -32 60c-10 0 -24 -1 -40 -3l-5 -1v16c59 18 97 31 156 54l5 -3v-457zM504 590c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51 c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x136: [662,281,722,34,723,'723 0h-305v19c12 1 23 1 28 1c28 1 42 8 42 22c0 24 -54 95 -130 170l-106 105l-26 -21v-187c0 -73 12 -85 90 -90v-19h-282v19c79 5 90 18 90 101v433c0 71 -12 84 -90 90v19h284v-19c-81 -6 -92 -17 -92 -90v-205l177 161c55 51 78 81 78 103c0 20 -12 28 -42 30 c-4 0 -14 0 -26 1v19h262v-19c-68 -5 -84 -13 -152 -78l-190 -188l233 -250c91 -97 105 -107 157 -108v-19zM437 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57 c45 0 80 -39 80 -89'], + 0x137: [683,281,500,7,505,'505 0h-218v15h19c12 0 21 6 21 15c0 5 -3 11 -11 21c-3 3 -5 6 -7 9l-3 4l-140 187v-184c0 -35 15 -49 55 -51l20 -1v-15h-234v15c72 12 75 15 75 67v482c0 48 -10 61 -43 61c-10 0 -19 -1 -32 -2v16l30 8l125 36l4 -2v-420l137 122c14 12 23 26 23 34 c0 14 -11 18 -50 19v14h204v-15h-8c-17 0 -31 -2 -46 -6c-29 -8 -91 -54 -162 -120l-29 -27l153 -194c42 -51 73 -70 117 -73v-15zM334 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51 c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x139: [851,0,611,12,598,'598 174l-48 -174h-538v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h282v-19c-79 -5 -93 -19 -93 -90v-473c0 -35 13 -41 86 -41h67c86 0 141 19 176 61c14 16 27 39 43 74h25zM308 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19 c24 0 38 -10 38 -26'], + 0x13A: [872,0,278,19,283,'257 0h-236v15c63 5 77 18 77 72v477c0 47 -10 61 -42 61c-8 0 -20 -1 -31 -2h-6v16c69 17 107 27 159 44l4 -2v-597c0 -55 11 -65 75 -69v-15zM283 846c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x13B: [662,281,611,12,598,'598 174l-48 -174h-538v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h282v-19c-79 -5 -93 -19 -93 -90v-473c0 -35 13 -41 86 -41h67c86 0 141 19 176 61c14 16 27 39 43 74h25zM375 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14 c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x13C: [683,281,278,19,257,'257 0h-236v15c63 5 77 18 77 72v477c0 47 -10 61 -42 61c-8 0 -20 -1 -31 -2h-6v16c69 17 107 27 159 44l4 -2v-597c0 -55 11 -65 75 -69v-15zM210 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2 c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x13D: [662,0,611,12,598,'598 174l-48 -174h-538v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h282v-19c-79 -5 -93 -19 -93 -90v-473c0 -35 13 -41 86 -41h67c86 0 141 19 176 61c14 16 27 39 43 74h25zM473 573c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14 c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x13E: [683,0,278,19,361,'257 0h-236v15c63 5 77 18 77 72v477c0 47 -10 61 -42 61c-8 0 -20 -1 -31 -2h-6v16c69 17 107 27 159 44l4 -2v-597c0 -55 11 -65 75 -69v-15zM361 594c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2 c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x141: [662,0,611,12,598,'598 174l-48 -174h-538v19c73 5 87 19 87 90v145l-62 -57v51l62 57v248c0 71 -13 84 -87 90v19h282v-19c-79 -5 -93 -19 -93 -90v-174l125 115v-51l-125 -115v-248c0 -35 13 -41 86 -41h67c86 0 141 19 176 61c14 16 27 39 43 74h25'], + 0x142: [683,0,278,15,264,'264 486l-82 -77v-325c0 -55 11 -65 75 -69v-15h-236v15c63 5 77 18 77 72v253l-83 -78v46l83 78v178c0 47 -10 61 -42 61c-8 0 -20 -1 -31 -2h-6v16c69 17 107 27 159 44l4 -2v-226l82 77v-46'], + 0x143: [851,11,722,12,707,'707 643c-38 -4 -52 -8 -66 -18c-19 -13 -29 -50 -29 -110v-526h-17l-442 550v-392c0 -101 17 -124 94 -128v-19h-235v19c83 6 97 25 97 128v441c-40 47 -54 55 -97 55v19h171l385 -484v337c0 62 -9 98 -29 112c-15 9 -29 13 -67 16v19h235v-19zM515 825 c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x144: [675,0,500,16,485,'485 0h-208v15c50 4 63 21 63 84v209c0 66 -24 97 -73 97c-33 0 -55 -12 -103 -57v-281c0 -36 15 -48 66 -52v-15h-212v15c51 4 62 18 62 75v248c0 49 -9 64 -37 64c-11 0 -21 -1 -27 -4v17c55 16 89 27 138 45l7 -2v-79c68 64 99 81 145 81c74 0 118 -56 118 -150v-229 c0 -49 12 -61 61 -66v-15zM403 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x145: [662,281,722,12,707,'707 643c-38 -4 -52 -8 -66 -18c-19 -13 -29 -50 -29 -110v-526h-17l-442 550v-392c0 -101 17 -124 94 -128v-19h-235v19c83 6 97 25 97 128v441c-40 47 -54 55 -97 55v19h171l385 -484v337c0 62 -9 98 -29 112c-15 9 -29 13 -67 16v19h235v-19zM430 -127 c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x146: [460,281,500,16,485,'485 0h-208v15c50 4 63 21 63 84v209c0 66 -24 97 -73 97c-33 0 -55 -12 -103 -57v-281c0 -36 15 -48 66 -52v-15h-212v15c51 4 62 18 62 75v248c0 49 -9 64 -37 64c-11 0 -21 -1 -27 -4v17c55 16 89 27 138 45l7 -2v-79c68 64 99 81 145 81c74 0 118 -56 118 -150v-229 c0 -49 12 -61 61 -66v-15zM322 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x147: [847,11,722,12,707,'707 643c-38 -4 -52 -8 -66 -18c-19 -13 -29 -50 -29 -110v-526h-17l-442 550v-392c0 -101 17 -124 94 -128v-19h-235v19c83 6 97 25 97 128v441c-40 47 -54 55 -97 55v19h171l385 -484v337c0 62 -9 98 -29 112c-15 9 -29 13 -67 16v19h235v-19zM533 847l-134 -129h-77 l-135 129h48l125 -79l125 79h48'], + 0x148: [674,0,500,16,485,'485 0h-208v15c50 4 63 21 63 84v209c0 66 -24 97 -73 97c-33 0 -55 -12 -103 -57v-281c0 -36 15 -48 66 -52v-15h-212v15c51 4 62 18 62 75v248c0 49 -9 64 -37 64c-11 0 -21 -1 -27 -4v17c55 16 89 27 138 45l7 -2v-79c68 64 99 81 145 81c74 0 118 -56 118 -150v-229 c0 -49 12 -61 61 -66v-15zM408 674l-125 -167h-62l-124 167h34l121 -103l122 103h34'], + 0x14A: [662,218,722,12,707,'707 643c-38 -4 -52 -8 -66 -18c-19 -13 -29 -50 -29 -110v-515c0 -142 -20 -218 -130 -218c-54 0 -94 23 -94 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v67l-414 517v-392c0 -101 17 -124 94 -128v-19h-235v19 c83 6 97 25 97 128v441c-40 47 -54 55 -97 55v19h171l385 -484v337c0 62 -9 98 -29 112c-15 9 -29 13 -67 16v19h235v-19'], + 0x14B: [460,218,500,16,424,'424 0c0 -142 -59 -218 -169 -218c-54 0 -94 23 -94 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v353c0 66 -24 97 -73 97c-33 0 -55 -12 -103 -57v-281c0 -36 15 -48 66 -52v-15h-212v15c51 4 62 18 62 75v248 c0 49 -9 64 -37 64c-11 0 -21 -1 -27 -4v17c55 16 89 27 138 45l7 -2v-79c68 64 99 81 145 81c74 0 118 -56 118 -150v-310'], + 0x14C: [809,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM517 755h-311v54h311v-54'], + 0x14D: [617,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM406 563h-311v54h311v-54'], + 0x150: [851,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM666 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM506 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120 c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x151: [676,10,500,29,511,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM511 644c0 -16 -9 -29 -30 -42 l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32zM345 644c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x152: [668,6,889,30,885,'885 168l-44 -168h-350l-121 -4l-58 -2c-74 0 -142 27 -192 77c-60 59 -90 143 -90 251c0 115 37 215 101 271c55 49 128 75 211 75c14 0 17 0 65 -3l105 -3h326v-141h-23c-12 89 -37 105 -168 105h-51c-56 0 -65 -3 -65 -24v-236h104c62 0 98 10 113 31 c11 15 16 30 19 67h21v-234h-21c-9 79 -29 99 -98 99h-138v-245c0 -37 12 -47 56 -46l124 2c63 2 99 33 150 128h24zM431 131v396c0 73 -30 105 -99 105c-121 0 -190 -111 -190 -307c0 -190 67 -294 189 -294c71 0 100 29 100 100'], + 0x153: [460,10,722,30,690,'690 139c-52 -108 -101 -149 -179 -149c-62 0 -98 27 -128 95c-38 -68 -79 -95 -147 -95c-121 0 -206 95 -206 228c0 76 29 150 75 194c34 31 77 48 127 48c62 0 102 -20 152 -76c41 56 76 76 130 76c50 0 98 -23 126 -62c23 -31 31 -60 34 -121h-254 c4 -87 13 -124 39 -170c18 -30 53 -50 90 -50c48 0 83 24 130 88zM343 199c0 149 -41 232 -114 232c-29 0 -53 -11 -75 -33c-20 -21 -34 -75 -34 -127c0 -169 41 -255 120 -255c68 0 103 63 103 183zM579 307v27c0 56 -33 97 -79 97c-53 0 -80 -41 -81 -124h160'], + 0x154: [851,0,667,17,659,'659 0h-161l-238 308l-56 -2v-197c0 -72 13 -85 90 -90v-19h-277v19c75 6 85 18 85 101v433c0 71 -10 82 -85 90v19h276c94 0 177 -26 215 -67c26 -29 39 -66 39 -109c0 -47 -19 -89 -51 -115c-33 -27 -63 -39 -130 -52l206 -253c29 -34 49 -44 87 -47v-19zM438 488 c0 94 -58 137 -183 137c-40 0 -51 -8 -51 -36v-246c96 2 131 8 177 34c36 19 57 61 57 111zM449 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x155: [675,0,333,5,335,'335 407c0 -28 -15 -45 -39 -45c-13 0 -24 6 -40 20c-11 10 -20 15 -26 15c-27 0 -70 -50 -70 -82v-225c0 -57 17 -72 85 -75v-15h-240v15c64 12 71 19 71 69v250c0 44 -9 60 -34 60c-12 0 -21 -1 -35 -4v16c59 19 95 32 148 54l5 -2v-92c49 71 78 94 120 94 c34 0 55 -20 55 -53zM311 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x156: [662,281,667,17,659,'659 0h-161l-238 308l-56 -2v-197c0 -72 13 -85 90 -90v-19h-277v19c75 6 85 18 85 101v433c0 71 -10 82 -85 90v19h276c94 0 177 -26 215 -67c26 -29 39 -66 39 -109c0 -47 -19 -89 -51 -115c-33 -27 -63 -39 -130 -52l206 -253c29 -34 49 -44 87 -47v-19zM438 488 c0 94 -58 137 -183 137c-40 0 -51 -8 -51 -36v-246c96 2 131 8 177 34c36 19 57 61 57 111zM364 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x157: [460,281,333,5,335,'335 407c0 -28 -15 -45 -39 -45c-13 0 -24 6 -40 20c-11 10 -20 15 -26 15c-27 0 -70 -50 -70 -82v-225c0 -57 17 -72 85 -75v-15h-240v15c64 12 71 19 71 69v250c0 44 -9 60 -34 60c-12 0 -21 -1 -35 -4v16c59 19 95 32 148 54l5 -2v-92c49 71 78 94 120 94 c34 0 55 -20 55 -53zM195 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x158: [847,0,667,17,659,'659 0h-161l-238 308l-56 -2v-197c0 -72 13 -85 90 -90v-19h-277v19c75 6 85 18 85 101v433c0 71 -10 82 -85 90v19h276c94 0 177 -26 215 -67c26 -29 39 -66 39 -109c0 -47 -19 -89 -51 -115c-33 -27 -63 -39 -130 -52l206 -253c29 -34 49 -44 87 -47v-19zM438 488 c0 94 -58 137 -183 137c-40 0 -51 -8 -51 -36v-246c96 2 131 8 177 34c36 19 57 61 57 111zM467 847l-134 -129h-77l-135 129h48l125 -79l125 79h48'], + 0x159: [674,0,333,5,335,'335 407c0 -28 -15 -45 -39 -45c-13 0 -24 6 -40 20c-11 10 -20 15 -26 15c-27 0 -70 -50 -70 -82v-225c0 -57 17 -72 85 -75v-15h-240v15c64 12 71 19 71 69v250c0 44 -9 60 -34 60c-12 0 -21 -1 -35 -4v16c59 19 95 32 148 54l5 -2v-92c49 71 78 94 120 94 c34 0 55 -20 55 -53zM316 674l-125 -167h-62l-124 167h34l121 -103l122 103h34'], + 0x15A: [851,14,556,42,491,'491 168c0 -103 -88 -182 -204 -182c-40 0 -80 8 -118 23c-19 7 -36 11 -47 11c-15 0 -27 -14 -28 -33h-22l-30 212h23c50 -122 112 -177 202 -177c73 0 123 46 123 112c0 25 -5 45 -14 59c-25 38 -77 78 -149 117c-112 59 -156 115 -156 194c0 55 19 98 58 130 c32 26 74 42 113 42c35 0 71 -8 108 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21l22 -213h-25c-16 59 -30 85 -61 117c-35 36 -77 55 -122 55c-62 0 -104 -37 -104 -92s42 -99 147 -156c132 -72 187 -136 187 -219zM416 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120 c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x15B: [675,10,389,51,348,'348 118c0 -70 -64 -128 -140 -128c-21 0 -46 4 -74 10c-24 6 -35 8 -46 8c-12 0 -16 -2 -23 -12h-13v156h16c23 -102 58 -140 127 -140c51 0 83 28 83 72c0 31 -17 55 -52 75l-58 33c-85 49 -117 88 -117 144c0 73 56 123 138 123c24 0 47 -4 68 -12c11 -5 21 -7 27 -7 c4 0 5 1 14 8l2 2h11l4 -136h-15c-23 90 -53 123 -110 123c-46 0 -77 -27 -77 -68c0 -27 15 -52 43 -68l108 -64c61 -36 84 -69 84 -119zM340 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x15E: [676,225,556,42,491,'491 168c0 -97 -78 -172 -183 -181l-24 -62c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5l39 95c-35 2 -70 10 -103 23c-19 7 -36 11 -47 11 c-15 0 -27 -14 -28 -33h-22l-30 212h23c50 -122 112 -177 202 -177c73 0 123 46 123 112c0 25 -5 45 -14 59c-25 38 -77 78 -149 117c-112 59 -156 115 -156 194c0 55 19 98 58 130c32 26 74 42 113 42c35 0 71 -8 108 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21l22 -213 h-25c-16 59 -30 85 -61 117c-35 36 -77 55 -122 55c-62 0 -104 -37 -104 -92s42 -99 147 -156c132 -72 187 -136 187 -219'], + 0x15F: [459,215,389,51,348,'348 118c0 -70 -64 -128 -140 -128l-19 -55c10 2 16 3 26 3c54 0 86 -26 86 -69c0 -52 -48 -84 -125 -84c-32 0 -55 4 -84 16l14 31c28 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-11 0 -20 -1 -28 -4l-7 5l36 92c-13 1 -26 4 -40 7c-24 6 -35 8 -46 8 c-12 0 -16 -2 -23 -12h-13v156h16c23 -102 58 -140 127 -140c51 0 83 28 83 72c0 31 -17 55 -52 75l-58 33c-85 49 -117 88 -117 144c0 73 56 123 138 123c24 0 47 -4 68 -12c11 -5 21 -7 27 -7c4 0 5 1 14 8l2 2h11l4 -136h-15c-23 90 -53 123 -110 123 c-46 0 -77 -27 -77 -68c0 -27 15 -52 43 -68l108 -64c61 -36 84 -69 84 -119'], + 0x160: [847,14,556,42,491,'491 168c0 -103 -88 -182 -204 -182c-40 0 -80 8 -118 23c-19 7 -36 11 -47 11c-15 0 -27 -14 -28 -33h-22l-30 212h23c50 -122 112 -177 202 -177c73 0 123 46 123 112c0 25 -5 45 -14 59c-25 38 -77 78 -149 117c-112 59 -156 115 -156 194c0 55 19 98 58 130 c32 26 74 42 113 42c35 0 71 -8 108 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21l22 -213h-25c-16 59 -30 85 -61 117c-35 36 -77 55 -122 55c-62 0 -104 -37 -104 -92s42 -99 147 -156c132 -72 187 -136 187 -219zM434 847l-134 -129h-77l-135 129h48l125 -79l125 79h48'], + 0x161: [674,10,389,34,348,'348 118c0 -70 -64 -128 -140 -128c-21 0 -46 4 -74 10c-24 6 -35 8 -46 8c-12 0 -16 -2 -23 -12h-13v156h16c23 -102 58 -140 127 -140c51 0 83 28 83 72c0 31 -17 55 -52 75l-58 33c-85 49 -117 88 -117 144c0 73 56 123 138 123c24 0 47 -4 68 -12c11 -5 21 -7 27 -7 c4 0 5 1 14 8l2 2h11l4 -136h-15c-23 90 -53 123 -110 123c-46 0 -77 -27 -77 -68c0 -27 15 -52 43 -68l108 -64c61 -36 84 -69 84 -119zM345 674l-125 -167h-62l-124 167h34l121 -103l122 103h34'], + 0x162: [662,225,611,17,593,'593 492h-24c-23 110 -45 128 -159 128h-54v-511c0 -73 14 -86 96 -90v-19h-124l-29 -75c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5 l45 109h-133v19c83 5 94 16 94 101v500h-54c-112 0 -135 -18 -159 -128h-24l6 170h564'], + 0x163: [579,215,278,13,279,'279 66c-28 -44 -59 -68 -98 -74l-22 -57c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5l37 90c-49 6 -75 48 -75 126v301h-53 c-3 2 -4 4 -4 7c0 6 6 12 17 19c26 15 60 52 97 107c7 9 14 18 20 28c5 0 7 -3 7 -13v-116h101v-32h-101v-286c0 -64 15 -90 52 -90c22 0 38 9 60 35'], + 0x164: [847,0,611,17,593,'593 492h-24c-23 110 -45 128 -159 128h-54v-511c0 -73 14 -86 96 -90v-19h-292v19c83 5 94 16 94 101v500h-54c-112 0 -135 -18 -159 -128h-24l6 170h564zM478 847l-134 -129h-77l-135 129h48l125 -79l125 79h48'], + 0x165: [713,10,278,13,313,'279 66c-33 -52 -71 -76 -121 -76c-58 0 -88 43 -88 127v301h-53c-3 2 -4 4 -4 7c0 6 6 12 17 19c26 15 60 52 97 107c7 9 14 18 20 28c5 0 7 -3 7 -13v-116h101v-32h-101v-286c0 -64 15 -90 52 -90c22 0 38 9 60 35zM313 624c0 -60 -45 -121 -112 -154l-9 19 c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x168: [835,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM551 835c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x169: [643,10,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M409 643c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x16A: [809,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM542 755h-311v54h311v-54'], + 0x16B: [617,10,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M400 563h-311v54h311v-54'], + 0x16E: [896,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM486 796c0 -55 -45 -99 -100 -99c-56 0 -99 44 -99 100c0 54 45 99 99 99c55 0 100 -45 100 -100zM452 796c0 36 -30 66 -65 66c-36 0 -66 -29 -66 -65s29 -66 64 -66c37 0 67 29 67 65'], + 0x16F: [690,10,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M344 590c0 -55 -45 -99 -100 -99c-56 0 -99 44 -99 100c0 54 45 99 99 99c55 0 100 -45 100 -100zM310 590c0 36 -30 66 -65 66c-36 0 -66 -29 -66 -65s29 -66 64 -66c37 0 67 29 67 65'], + 0x170: [851,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM691 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM531 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x171: [676,10,500,9,505,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M505 644c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32zM339 644c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x172: [662,245,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-23 -41 -60 -70 -109 -86c-33 -12 -70 -24 -87 -52c-14 -24 -23 -51 -23 -83c0 -36 16 -61 46 -61c26 0 42 23 54 43l19 -14c-18 -39 -46 -81 -103 -81c-43 0 -77 38 -77 86c0 40 14 75 36 104 c10 15 24 29 38 41h-17c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19'], + 0x173: [450,245,500,9,479,'479 36l-29 -8c-41 -12 -74 -40 -96 -77c-15 -24 -24 -51 -24 -83c0 -36 16 -61 46 -61c26 0 42 23 54 43l19 -14c-18 -39 -46 -81 -103 -81c-43 0 -77 38 -77 86c0 40 14 75 36 104c12 16 23 32 33 48v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252 c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14'], + 0x178: [832,0,722,22,703,'703 643c-51 -4 -77 -26 -138 -114l-148 -226v-194c0 -76 14 -88 103 -90v-19h-306v19c91 4 101 14 101 101v174l-131 192c-100 141 -114 155 -162 157v19h280v-19c-11 -1 -21 -1 -25 -1c-32 -2 -46 -11 -46 -29c0 -11 6 -28 17 -44l148 -222l143 226c9 15 14 27 14 37 c0 24 -17 32 -69 33v19h219v-19zM317 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM516 782c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0x179: [851,0,611,9,597,'597 176l-24 -176h-564v15l437 609h-221c-66 0 -111 -14 -134 -43c-17 -21 -25 -41 -34 -90h-26l20 171h526v-15l-432 -609h257c57 0 101 14 125 39c20 22 30 43 47 99h23zM469 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x17A: [675,0,444,27,418,'418 135l-14 -135h-377v15l266 405h-138c-60 0 -75 -15 -84 -88h-18l3 118h347v-15l-269 -405h138c51 0 85 9 99 26c13 17 19 33 29 83zM380 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x17B: [833,0,611,9,597,'597 176l-24 -176h-564v15l437 609h-221c-66 0 -111 -14 -134 -43c-17 -21 -25 -41 -34 -90h-26l20 171h526v-15l-432 -609h257c57 0 101 14 125 39c20 22 30 43 47 99h23zM365 782c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x17C: [641,0,444,27,418,'418 135l-14 -135h-377v15l266 405h-138c-60 0 -75 -15 -84 -88h-18l3 118h347v-15l-269 -405h138c51 0 85 9 99 26c13 17 19 33 29 83zM280 590c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x17D: [847,0,611,9,597,'597 176l-24 -176h-564v15l437 609h-221c-66 0 -111 -14 -134 -43c-17 -21 -25 -41 -34 -90h-26l20 171h526v-15l-432 -609h257c57 0 101 14 125 39c20 22 30 43 47 99h23zM487 847l-134 -129h-77l-135 129h48l125 -79l125 79h48'], + 0x17E: [674,0,444,27,418,'418 135l-14 -135h-377v15l266 405h-138c-60 0 -75 -15 -84 -88h-18l3 118h347v-15l-269 -405h138c51 0 85 9 99 26c13 17 19 33 29 83zM385 674l-125 -167h-62l-124 167h34l121 -103l122 103h34'], + 0x17F: [683,0,333,20,383,'383 621c0 -23 -19 -41 -42 -41c-17 0 -29 10 -45 36c-18 29 -32 39 -53 39c-38 0 -56 -31 -56 -89v-462c0 -75 11 -86 93 -89v-15h-260v15c72 4 83 16 83 89v314h-52v32h52c1 80 9 116 35 160c26 46 79 73 141 73c60 0 104 -26 104 -62'], + 0x192: [676,189,500,7,490,'490 608c0 -25 -21 -45 -46 -45c-20 0 -38 16 -38 34c0 6 3 15 8 24c3 6 5 11 5 14c0 7 -8 12 -20 12c-16 0 -30 -6 -41 -17c-19 -20 -38 -84 -44 -147l-8 -76h126l-10 -31h-120l-16 -125c-24 -185 -41 -265 -72 -335c-33 -72 -72 -105 -127 -105c-47 0 -80 29 -80 69 c0 26 19 45 46 45c22 0 36 -14 36 -36c0 -9 -3 -16 -9 -27c-4 -7 -6 -11 -6 -14c0 -7 9 -13 21 -13c45 0 72 58 82 174l15 172c5 53 11 109 12 113l11 67l2 15h-111l10 31h107c16 104 33 152 71 208c26 38 69 61 111 61c47 0 85 -30 85 -68'], + 0x1A0: [771,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c63 0 121 -15 171 -46c17 3 39 21 39 31c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66c0 -41 -34 -76 -81 -90c18 -13 34 -28 49 -44 c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180'], + 0x1A1: [559,10,500,29,473,'473 493c0 -39 -31 -73 -74 -88c44 -41 71 -101 71 -171c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c48 0 92 -14 127 -38v2c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM380 199c0 137 -59 233 -143 233 c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181'], + 0x1AF: [771,14,706,14,706,'706 705c0 -45 -42 -84 -95 -94v-357c0 -189 -82 -268 -256 -268c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -147 55 -203 172 -203c75 0 139 31 166 79c16 29 23 68 23 136v270c0 100 -16 122 -94 128v19h138v-26 c12 5 30 14 30 25c0 18 -43 28 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66'], + 0x1B0: [560,10,513,9,513,'513 494c0 -45 -42 -84 -96 -94v-293c0 -46 11 -57 57 -57h5v-14c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c40 0 107 20 107 87v235c0 50 -12 60 -74 63v17 h158v-25c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66'], + 0x218: [676,281,556,42,491,'491 168c0 -103 -88 -182 -204 -182c-40 0 -80 8 -118 23c-19 7 -36 11 -47 11c-15 0 -27 -14 -28 -33h-22l-30 212h23c50 -122 112 -177 202 -177c73 0 123 46 123 112c0 25 -5 45 -14 59c-25 38 -77 78 -149 117c-112 59 -156 115 -156 194c0 55 19 98 58 130 c32 26 74 42 113 42c35 0 71 -8 108 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21l22 -213h-25c-16 59 -30 85 -61 117c-35 36 -77 55 -122 55c-62 0 -104 -37 -104 -92s42 -99 147 -156c132 -72 187 -136 187 -219zM331 -127c0 -60 -45 -121 -112 -154l-9 19 c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x219: [459,281,389,51,348,'348 118c0 -70 -64 -128 -140 -128c-21 0 -46 4 -74 10c-24 6 -35 8 -46 8c-12 0 -16 -2 -23 -12h-13v156h16c23 -102 58 -140 127 -140c51 0 83 28 83 72c0 31 -17 55 -52 75l-58 33c-85 49 -117 88 -117 144c0 73 56 123 138 123c24 0 47 -4 68 -12c11 -5 21 -7 27 -7 c4 0 5 1 14 8l2 2h11l4 -136h-15c-23 90 -53 123 -110 123c-46 0 -77 -27 -77 -68c0 -27 15 -52 43 -68l108 -64c61 -36 84 -69 84 -119zM259 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2 c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x21A: [662,281,611,17,593,'593 492h-24c-23 110 -45 128 -159 128h-54v-511c0 -73 14 -86 96 -90v-19h-292v19c83 5 94 16 94 101v500h-54c-112 0 -135 -18 -159 -128h-24l6 170h564zM375 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2 c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x21B: [579,281,278,13,279,'279 66c-33 -52 -71 -76 -121 -76c-58 0 -88 43 -88 127v301h-53c-3 2 -4 4 -4 7c0 6 6 12 17 19c26 15 60 52 97 107c7 9 14 18 20 28c5 0 7 -3 7 -13v-116h101v-32h-101v-286c0 -64 15 -90 52 -90c22 0 38 9 60 35zM224 -127c0 -60 -45 -121 -112 -154l-9 19 c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x1EA0: [674,191,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM412 -140 c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EA1: [460,191,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM275 -140c0 -29 -22 -51 -51 -51 c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EA2: [896,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM456 838 c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53 c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EA3: [684,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM323 626c0 -20 -15 -38 -42 -59 c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22 c13 -12 20 -24 20 -36'], + 0x1EA4: [1006,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM492 980 c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM531 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EA5: [794,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM359 768c0 -13 -10 -24 -32 -33 l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM398 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EA6: [1006,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM465 867h-43 l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19zM531 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EA7: [794,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM332 655h-43l-167 80 c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19zM398 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EA8: [1020,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM531 972 c0 -16 -17 -32 -46 -49c-25 -14 -42 -25 -45 -32c-5 -6 -9 -14 -11 -24h-25c1 21 14 42 36 63c18 17 25 29 25 39c0 23 -18 34 -55 34c-17 0 -30 -2 -39 -8c-3 -2 -6 -3 -6 -6c0 -4 18 -17 18 -23c0 -11 -9 -17 -30 -17c-24 0 -37 8 -37 26c0 26 43 45 106 45 c39 0 68 -7 87 -18c15 -10 22 -20 22 -30zM531 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EA9: [808,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM398 760c0 -16 -17 -32 -46 -49 c-25 -14 -42 -25 -45 -32c-5 -6 -9 -14 -11 -24h-25c1 21 14 42 36 63c18 17 25 29 25 39c0 23 -18 34 -55 34c-17 0 -30 -2 -39 -8c-3 -2 -6 -3 -6 -6c0 -4 18 -17 18 -23c0 -11 -9 -17 -30 -17c-24 0 -37 8 -37 26c0 26 43 45 106 45c39 0 68 -7 87 -18 c15 -10 22 -20 22 -30zM398 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EAA: [983,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM522 983 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29zM531 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EAB: [771,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM389 771 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29zM398 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EAC: [847,191,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM531 718h-48 l-125 79l-125 -79h-48l134 129h77zM412 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EAD: [674,191,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM380 507h-34l-122 103l-121 -103 h-34l124 167h62zM275 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EAE: [1010,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM532 984 c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM514 851c0 -70 -62 -138 -156 -138s-156 68 -156 138h26c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x1EAF: [798,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM399 772c0 -13 -10 -24 -32 -33 l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM381 639c0 -70 -62 -138 -156 -138s-156 68 -156 138h26c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x1EB0: [1010,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM425 871h-43 l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19zM514 851c0 -70 -62 -138 -156 -138s-156 68 -156 138h26c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x1EB1: [798,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM292 659h-43l-167 80 c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19zM381 639c0 -70 -62 -138 -156 -138s-156 68 -156 138h26c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x1EB2: [984,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM465 936 c0 -16 -17 -32 -46 -49c-25 -14 -42 -25 -45 -32c-5 -6 -9 -14 -11 -24h-25c1 21 14 42 36 63c18 17 25 29 25 39c0 23 -18 34 -55 34c-17 0 -30 -2 -39 -8c-3 -2 -6 -3 -6 -6c0 -4 18 -17 18 -23c0 -11 -9 -17 -30 -17c-24 0 -37 8 -37 26c0 26 43 45 106 45 c39 0 68 -7 87 -18c15 -10 22 -20 22 -30zM514 851c0 -70 -62 -138 -156 -138s-156 68 -156 138h26c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x1EB3: [772,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM332 724c0 -16 -17 -32 -46 -49 c-25 -14 -42 -25 -45 -32c-5 -6 -9 -14 -11 -24h-25c1 21 14 42 36 63c18 17 25 29 25 39c0 23 -18 34 -55 34c-17 0 -30 -2 -39 -8c-3 -2 -6 -3 -6 -6c0 -4 18 -17 18 -23c0 -11 -9 -17 -30 -17c-24 0 -37 8 -37 26c0 26 43 45 106 45c39 0 68 -7 87 -18 c15 -10 22 -20 22 -30zM381 639c0 -70 -62 -138 -156 -138s-156 68 -156 138h26c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x1EB4: [984,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM522 984 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29zM514 851c0 -70 -62 -138 -156 -138s-156 68 -156 138h26 c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x1EB5: [772,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM389 772 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29zM381 639c0 -70 -62 -138 -156 -138s-156 68 -156 138h26 c16 -58 68 -82 130 -82s114 24 130 82h26'], + 0x1EB6: [851,191,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231zM514 851 c0 -70 -62 -138 -156 -138s-156 68 -156 138h26c16 -58 68 -82 130 -82s114 24 130 82h26zM412 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EB7: [669,191,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53zM365 669 c-12 -106 -58 -157 -142 -157c-47 0 -87 19 -112 54c-19 28 -26 52 -27 103h29c14 -67 48 -97 112 -97c58 0 83 21 111 97h29zM275 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EB8: [662,191,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM356 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EB9: [460,191,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M285 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EBA: [896,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM381 838c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19 c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EBB: [684,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M333 626c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53 c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EBC: [835,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM447 835c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x1EBD: [643,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M399 643c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x1EBE: [1006,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM417 980c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM456 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EBF: [794,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M369 768c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM408 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EC0: [1006,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM390 867h-43l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19zM456 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EC1: [794,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M342 655h-43l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19zM408 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EC2: [1020,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM456 972c0 -16 -17 -32 -46 -49c-25 -14 -42 -25 -45 -32c-5 -6 -9 -14 -11 -24h-25c1 21 14 42 36 63c18 17 25 29 25 39c0 23 -18 34 -55 34c-17 0 -30 -2 -39 -8c-3 -2 -6 -3 -6 -6c0 -4 18 -17 18 -23c0 -11 -9 -17 -30 -17 c-24 0 -37 8 -37 26c0 26 43 45 106 45c39 0 68 -7 87 -18c15 -10 22 -20 22 -30zM456 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EC3: [808,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M408 760c0 -16 -17 -32 -46 -49c-25 -14 -42 -25 -45 -32c-5 -6 -9 -14 -11 -24h-25c1 21 14 42 36 63c18 17 25 29 25 39c0 23 -18 34 -55 34c-17 0 -30 -2 -39 -8c-3 -2 -6 -3 -6 -6c0 -4 18 -17 18 -23c0 -11 -9 -17 -30 -17c-24 0 -37 8 -37 26c0 26 43 45 106 45 c39 0 68 -7 87 -18c15 -10 22 -20 22 -30zM408 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EC4: [983,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM447 983c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29zM456 718h-48l-125 79l-125 -79h-48 l134 129h77'], + 0x1EC5: [771,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M399 771c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29zM408 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1EC6: [847,191,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28zM456 718h-48l-125 79l-125 -79h-48l134 129h77zM356 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EC7: [674,191,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204z M390 507h-34l-122 103l-121 -103h-34l124 167h62zM285 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EC8: [896,0,333,18,315,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM265 838c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42 c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EC9: [684,0,278,16,253,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM236 626c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47 c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1ECA: [662,191,333,18,315,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19zM217 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1ECB: [641,191,278,16,253,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM188 590c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51zM190 -140c0 -29 -22 -51 -51 -51 c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1ECC: [676,191,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM412 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1ECD: [460,191,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM301 -140c0 -29 -22 -51 -51 -51 c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1ECE: [896,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM460 838c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42 c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1ECF: [684,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM349 626c0 -20 -15 -38 -42 -59 c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22 c13 -12 20 -24 20 -36'], + 0x1ED0: [1006,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM496 980c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM535 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1ED1: [794,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM385 768c0 -13 -10 -24 -32 -33 l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26zM424 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1ED2: [1006,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM469 867h-43l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19zM535 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1ED3: [794,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM358 655h-43l-167 80 c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19zM424 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1ED4: [1020,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM535 972c0 -16 -17 -32 -46 -49c-25 -14 -42 -25 -45 -32c-5 -6 -9 -14 -11 -24h-25c1 21 14 42 36 63c18 17 25 29 25 39c0 23 -18 34 -55 34 c-17 0 -30 -2 -39 -8c-3 -2 -6 -3 -6 -6c0 -4 18 -17 18 -23c0 -11 -9 -17 -30 -17c-24 0 -37 8 -37 26c0 26 43 45 106 45c39 0 68 -7 87 -18c15 -10 22 -20 22 -30zM535 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1ED5: [808,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM424 760c0 -16 -17 -32 -46 -49 c-25 -14 -42 -25 -45 -32c-5 -6 -9 -14 -11 -24h-25c1 21 14 42 36 63c18 17 25 29 25 39c0 23 -18 34 -55 34c-17 0 -30 -2 -39 -8c-3 -2 -6 -3 -6 -6c0 -4 18 -17 18 -23c0 -11 -9 -17 -30 -17c-24 0 -37 8 -37 26c0 26 43 45 106 45c39 0 68 -7 87 -18 c15 -10 22 -20 22 -30zM424 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1ED6: [983,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM526 983c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18 l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29zM535 718h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1ED7: [771,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM415 771 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29zM424 506h-48l-125 79l-125 -79h-48l134 129h77'], + 0x1ED8: [847,191,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM535 718h-48l-125 79l-125 -79h-48l134 129h77zM412 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1ED9: [674,191,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM406 507h-34l-122 103l-121 -103 h-34l124 167h62zM301 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EDA: [851,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c63 0 121 -15 171 -46c17 3 39 21 39 31c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66c0 -41 -34 -76 -81 -90c18 -13 34 -28 49 -44 c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM488 825 c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x1EDB: [675,10,500,29,473,'473 493c0 -39 -31 -73 -74 -88c44 -41 71 -101 71 -171c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c48 0 92 -14 127 -38v2c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM380 199c0 137 -59 233 -143 233 c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM373 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x1EDC: [851,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c63 0 121 -15 171 -46c17 3 39 21 39 31c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66c0 -41 -34 -76 -81 -90c18 -13 34 -28 49 -44 c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM421 712h-43l-167 80 c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19'], + 0x1EDD: [675,10,500,29,473,'473 493c0 -39 -31 -73 -74 -88c44 -41 71 -101 71 -171c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c48 0 92 -14 127 -38v2c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM380 199c0 137 -59 233 -143 233 c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM296 504h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0x1EDE: [896,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c63 0 121 -15 171 -46c17 3 39 21 39 31c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66c0 -41 -34 -76 -81 -90c18 -13 34 -28 49 -44 c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM432 838 c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53 c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EDF: [684,10,500,29,473,'473 493c0 -39 -31 -73 -74 -88c44 -41 71 -101 71 -171c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c48 0 92 -14 127 -38v2c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM380 199c0 137 -59 233 -143 233 c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM321 626c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10 c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EE0: [835,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c63 0 121 -15 171 -46c17 3 39 21 39 31c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66c0 -41 -34 -76 -81 -90c18 -13 34 -28 49 -44 c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM498 835 c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x1EE1: [643,10,500,29,473,'473 493c0 -39 -31 -73 -74 -88c44 -41 71 -101 71 -171c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c48 0 92 -14 127 -38v2c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM380 199c0 137 -59 233 -143 233 c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM387 643c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12 c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x1EE2: [771,191,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c63 0 121 -15 171 -46c17 3 39 21 39 31c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66c0 -41 -34 -76 -81 -90c18 -13 34 -28 49 -44 c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180zM384 -140 c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EE3: [559,191,500,29,473,'473 493c0 -39 -31 -73 -74 -88c44 -41 71 -101 71 -171c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c48 0 92 -14 127 -38v2c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM380 199c0 137 -59 233 -143 233 c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181zM273 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EE4: [662,191,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM437 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EE5: [450,191,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M295 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EE6: [896,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19zM485 838c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29 c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EE7: [684,10,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14z M343 626c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53 c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EE8: [851,14,706,14,706,'706 705c0 -45 -42 -84 -95 -94v-357c0 -189 -82 -268 -256 -268c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -147 55 -203 172 -203c75 0 139 31 166 79c16 29 23 68 23 136v270c0 100 -16 122 -94 128v19h138v-26 c12 5 30 14 30 25c0 18 -43 28 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM513 825c0 -13 -10 -24 -32 -33l-167 -80h-43l158 120c20 15 30 19 46 19c24 0 38 -10 38 -26'], + 0x1EE9: [675,10,513,9,513,'513 494c0 -45 -42 -84 -96 -94v-293c0 -46 11 -57 57 -57h5v-14c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c40 0 107 20 107 87v235c0 50 -12 60 -74 63v17 h158v-25c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM367 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x1EEA: [851,14,706,14,706,'706 705c0 -45 -42 -84 -95 -94v-357c0 -189 -82 -268 -256 -268c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -147 55 -203 172 -203c75 0 139 31 166 79c16 29 23 68 23 136v270c0 100 -16 122 -94 128v19h138v-26 c12 5 30 14 30 25c0 18 -43 28 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM446 712h-43l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19'], + 0x1EEB: [675,10,513,9,513,'513 494c0 -45 -42 -84 -96 -94v-293c0 -46 11 -57 57 -57h5v-14c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c40 0 107 20 107 87v235c0 50 -12 60 -74 63v17 h158v-25c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM290 504h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0x1EEC: [896,14,706,14,706,'706 705c0 -45 -42 -84 -95 -94v-357c0 -189 -82 -268 -256 -268c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -147 55 -203 172 -203c75 0 139 31 166 79c16 29 23 68 23 136v270c0 100 -16 122 -94 128v19h138v-26 c12 5 30 14 30 25c0 18 -43 28 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM457 838c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8 c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EED: [684,10,513,9,513,'513 494c0 -45 -42 -84 -96 -94v-293c0 -46 11 -57 57 -57h5v-14c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c40 0 107 20 107 87v235c0 50 -12 60 -74 63v17 h158v-25c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM315 626c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8 c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EEE: [835,14,706,14,706,'706 705c0 -45 -42 -84 -95 -94v-357c0 -189 -82 -268 -256 -268c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -147 55 -203 172 -203c75 0 139 31 166 79c16 29 23 68 23 136v270c0 100 -16 122 -94 128v19h138v-26 c12 5 30 14 30 25c0 18 -43 28 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM523 835c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15 c23 0 36 12 53 50h29'], + 0x1EEF: [643,10,513,9,513,'513 494c0 -45 -42 -84 -96 -94v-293c0 -46 11 -57 57 -57h5v-14c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c40 0 107 20 107 87v235c0 50 -12 60 -74 63v17 h158v-25c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM381 643c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15 c23 0 36 12 53 50h29'], + 0x1EF0: [771,191,706,14,706,'706 705c0 -45 -42 -84 -95 -94v-357c0 -189 -82 -268 -256 -268c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -147 55 -203 172 -203c75 0 139 31 166 79c16 29 23 68 23 136v270c0 100 -16 122 -94 128v19h138v-26 c12 5 30 14 30 25c0 18 -43 28 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM409 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EF1: [560,191,513,9,513,'513 494c0 -45 -42 -84 -96 -94v-293c0 -46 11 -57 57 -57h5v-14c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c40 0 107 20 107 87v235c0 50 -12 60 -74 63v17 h158v-25c13 5 31 14 31 25c0 18 -43 27 -43 62c0 25 26 48 49 48c32 0 59 -33 59 -66zM267 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EF2: [851,0,722,22,703,'703 643c-51 -4 -77 -26 -138 -114l-148 -226v-194c0 -76 14 -88 103 -90v-19h-306v19c91 4 101 14 101 101v174l-131 192c-100 141 -114 155 -162 157v19h280v-19c-11 -1 -21 -1 -25 -1c-32 -2 -46 -11 -46 -29c0 -11 6 -28 17 -44l148 -222l143 226c9 15 14 27 14 37 c0 24 -17 32 -69 33v19h219v-19zM454 712h-43l-167 80c-22 9 -32 20 -32 33c0 16 14 26 38 26c16 0 26 -4 46 -19'], + 0x1EF3: [675,218,500,14,475,'475 435c-24 -3 -35 -13 -48 -45l-154 -408c-54 -144 -102 -200 -169 -200c-42 0 -74 25 -74 58c0 24 20 44 43 44c17 0 34 -4 53 -11c10 -5 19 -7 25 -7c14 0 36 19 50 45c17 30 40 93 40 108c0 8 -4 20 -11 37l-165 348c-8 17 -25 28 -51 32v14h206v-15 c-43 -2 -58 -9 -58 -27c0 -11 4 -24 10 -38l115 -253l97 276c3 7 4 13 4 17c0 16 -16 25 -48 25v15h135v-15zM354 504h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0x1EF4: [662,191,722,22,703,'703 643c-51 -4 -77 -26 -138 -114l-148 -226v-194c0 -76 14 -88 103 -90v-19h-306v19c91 4 101 14 101 101v174l-131 192c-100 141 -114 155 -162 157v19h280v-19c-11 -1 -21 -1 -25 -1c-32 -2 -46 -11 -46 -29c0 -11 6 -28 17 -44l148 -222l143 226c9 15 14 27 14 37 c0 24 -17 32 -69 33v19h219v-19zM417 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EF5: [450,218,500,14,475,'475 435c-24 -3 -35 -13 -48 -45l-154 -408c-54 -144 -102 -200 -169 -200c-42 0 -74 25 -74 58c0 24 20 44 43 44c17 0 34 -4 53 -11c10 -5 19 -7 25 -7c14 0 36 19 50 45c17 30 40 93 40 108c0 8 -4 20 -11 37l-165 348c-8 17 -25 28 -51 32v14h206v-15 c-43 -2 -58 -9 -58 -27c0 -11 4 -24 10 -38l115 -253l97 276c3 7 4 13 4 17c0 16 -16 25 -48 25v15h135v-15zM426 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x1EF6: [896,0,722,22,703,'703 643c-51 -4 -77 -26 -138 -114l-148 -226v-194c0 -76 14 -88 103 -90v-19h-306v19c91 4 101 14 101 101v174l-131 192c-100 141 -114 155 -162 157v19h280v-19c-11 -1 -21 -1 -25 -1c-32 -2 -46 -11 -46 -29c0 -11 6 -28 17 -44l148 -222l143 226c9 15 14 27 14 37 c0 24 -17 32 -69 33v19h219v-19zM465 838c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19 c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EF7: [684,218,500,14,475,'475 435c-24 -3 -35 -13 -48 -45l-154 -408c-54 -144 -102 -200 -169 -200c-42 0 -74 25 -74 58c0 24 20 44 43 44c17 0 34 -4 53 -11c10 -5 19 -7 25 -7c14 0 36 19 50 45c17 30 40 93 40 108c0 8 -4 20 -11 37l-165 348c-8 17 -25 28 -51 32v14h206v-15 c-43 -2 -58 -9 -58 -27c0 -11 4 -24 10 -38l115 -253l97 276c3 7 4 13 4 17c0 16 -16 25 -48 25v15h135v-15zM379 626c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42 c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x1EF8: [835,0,722,22,703,'703 643c-51 -4 -77 -26 -138 -114l-148 -226v-194c0 -76 14 -88 103 -90v-19h-306v19c91 4 101 14 101 101v174l-131 192c-100 141 -114 155 -162 157v19h280v-19c-11 -1 -21 -1 -25 -1c-32 -2 -46 -11 -46 -29c0 -11 6 -28 17 -44l148 -222l143 226c9 15 14 27 14 37 c0 24 -17 32 -69 33v19h219v-19zM531 835c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x1EF9: [643,218,500,14,475,'475 435c-24 -3 -35 -13 -48 -45l-154 -408c-54 -144 -102 -200 -169 -200c-42 0 -74 25 -74 58c0 24 20 44 43 44c17 0 34 -4 53 -11c10 -5 19 -7 25 -7c14 0 36 19 50 45c17 30 40 93 40 108c0 8 -4 20 -11 37l-165 348c-8 17 -25 28 -51 32v14h206v-15 c-43 -2 -58 -9 -58 -27c0 -11 4 -24 10 -38l115 -253l97 276c3 7 4 13 4 17c0 16 -16 25 -48 25v15h135v-15zM445 643c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18 l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0xFB00: [683,0,600,31,650,'389 579c-9 5 -19 15 -30 32c-24 34 -43 47 -71 47c-36 0 -72 -21 -89 -52c-13 -24 -17 -62 -17 -107v-6v-43h188c1 60 6 96 19 129zM650 621c0 -23 -18 -41 -42 -41c-17 0 -29 9 -45 36c-18 29 -31 39 -53 39c-38 0 -57 -30 -57 -89v-116h123v-33h-122v-313 c0 -75 9 -84 67 -89v-15h-220v15c69 6 69 16 69 89v313h-187v-329c0 -55 13 -69 69 -73v-15h-220v15c56 2 67 15 67 79v323h-68v33h69c6 80 17 116 47 158c36 50 94 75 170 75c56 0 97 -14 116 -38c28 24 68 38 113 38c60 0 104 -26 104 -62'], + 0xFB01: [683,0,556,31,521,'521 0h-220v15c62 5 69 14 69 82v264c0 53 -5 56 -101 56h-86v-329c0 -55 13 -69 69 -73v-15h-220v15c56 2 67 15 67 79v323h-68v33h69c6 80 17 116 47 158c36 50 94 75 170 75c77 0 127 -27 127 -70c0 -23 -15 -39 -36 -39c-17 0 -30 9 -49 37c-24 34 -43 47 -71 47 c-36 0 -72 -21 -89 -52c-13 -24 -19 -62 -17 -107v-6v-43h157c40 0 69 3 113 10l4 -3l-2 -98v-262c0 -64 11 -77 67 -82v-15'], + 0xFB02: [683,0,556,32,521,'521 0h-215v15c52 4 67 20 67 69v334h-188v-339c0 -46 14 -58 71 -64v-15h-224v15c60 4 69 16 69 90v313h-69v32h71c4 88 14 127 44 170c28 39 74 63 119 63c26 0 55 -6 83 -17c14 -5 25 -8 30 -8c9 0 24 5 42 14c13 6 23 10 31 11l5 -2v-600c0 -52 10 -62 64 -66v-15z M373 450v141c-5 -6 -8 -7 -16 -7c-23 0 -36 9 -55 37c-18 27 -30 35 -52 35c-44 0 -65 -50 -65 -154v-52h188'], + 0xFB03: [683,0,827,31,792,'398 574c-18 6 -30 24 -39 37c-24 34 -43 47 -71 47c-36 0 -72 -21 -89 -52c-13 -24 -17 -62 -17 -107v-6v-43h189c4 58 11 93 27 124zM792 0h-220v15c62 5 69 14 69 82v264c0 53 -5 56 -101 56h-86v-329c0 -55 13 -69 69 -73v-15h-220v15c56 2 67 15 67 79v323h-187 v-329c0 -55 13 -69 69 -73v-15h-220v15c56 2 67 15 67 79v323h-68v33h69c6 80 17 116 47 158c36 50 94 75 170 75c56 0 96 -12 116 -38c3 -4 6 -8 8 -11c36 33 85 49 147 49c77 0 127 -27 127 -70c0 -23 -15 -39 -36 -39c-17 0 -30 9 -49 37c-24 34 -43 47 -71 47 c-36 0 -72 -21 -89 -52c-13 -24 -17 -62 -17 -107v-6v-43h157c40 0 69 3 113 10l4 -3l-2 -98v-262c0 -64 11 -77 67 -82v-15'], + 0xFB04: [683,0,827,31,792,'644 450v141c-5 -6 -8 -7 -16 -7c-23 0 -36 9 -55 37c-18 27 -32 35 -54 35c-44 0 -65 -50 -65 -154v-52h190zM392 577c-15 7 -25 22 -33 34c-24 34 -43 47 -71 47c-36 0 -72 -21 -89 -52c-13 -24 -17 -62 -17 -107v-6v-43h190c3 59 8 96 20 127zM792 0h-215v15 c52 4 67 20 67 69v333h-190v-338c0 -46 14 -58 71 -64v-15h-224v15c60 4 69 16 69 90v312h-187v-329c0 -55 13 -69 69 -73v-15h-220v15c56 2 67 15 67 79v323h-68v33h69c6 80 17 116 47 158c36 50 94 75 170 75c56 0 96 -12 116 -38l2 -3c28 26 64 41 100 41 c26 0 57 -6 85 -17c14 -5 25 -8 30 -8c9 0 24 5 42 14c13 6 23 10 31 11l5 -2v-600c0 -52 10 -62 64 -66v-15'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Latin/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Main/Regular/Main.js new file mode 100644 index 0000000..0e28eaa --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Main/Regular/Main.js @@ -0,0 +1,533 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Main'] = { + directory: 'Main/Regular', + family: 'GyreTermesMathJax_Main', + id: 'GYRETERMESMAIN', + 0x20: [0,0,250,0,0,''], + 0x21: [676,9,333,130,237,'236 596c0 -14 -1 -25 -2 -37l-45 -383h-13l-9 108c-2 25 -8 78 -17 138c-11 72 -20 154 -20 177c0 47 20 77 53 77c34 0 53 -28 53 -80zM237 43c0 -30 -23 -52 -55 -52c-30 0 -52 22 -52 52c0 31 23 55 53 55s54 -25 54 -55'], + 0x22: [676,-431,408,77,331,'331 636c0 -29 -9 -89 -25 -165l-7 -40h-21c-17 90 -32 188 -32 204c0 23 19 41 43 41c23 0 42 -18 42 -40zM162 636c0 -29 -9 -89 -25 -165l-7 -40h-21c-17 90 -32 188 -32 204c0 23 19 41 43 41c23 0 42 -18 42 -40'], + 0x23: [662,0,500,5,496,'496 405h-105l-20 -134h100v-55h-109l-31 -216h-58l31 216h-134l-33 -216h-58l33 216h-107v55h116l21 134h-110v55h118l31 202h58l-31 -202h133l30 202h58l-30 -202h97v-55zM333 405h-133l-21 -134h134'], + 0x24: [727,87,500,44,457,'457 170c0 -48 -19 -89 -52 -117c-36 -29 -67 -41 -141 -53v-87h-34v87c-84 3 -126 14 -186 51v130h15c24 -105 77 -152 171 -153v282c-71 40 -93 55 -122 83c-40 37 -56 72 -56 119c0 43 20 83 54 110c33 26 61 35 124 42v63h34v-63c84 -10 127 -25 161 -53v-111h-15 c-17 85 -62 127 -146 137v-246c121 -70 148 -90 173 -131c12 -20 20 -56 20 -90zM229 407v230c-69 -14 -103 -48 -103 -103c0 -46 20 -71 103 -127zM378 146c0 62 -21 89 -114 147v-265c78 15 114 52 114 118'], + 0x25: [676,13,833,49,783,'783 186c0 -95 -49 -186 -134 -186c-92 0 -156 87 -156 185c0 97 64 186 156 186c85 0 134 -91 134 -185zM538 676l-191 -689h-45l173 626c-34 -24 -55 -30 -98 -30c-22 0 -45 3 -66 8c18 -33 28 -74 28 -116c0 -95 -49 -186 -134 -186c-92 0 -156 87 -156 185 c0 97 64 186 156 186c33 0 61 -14 82 -36c24 -10 51 -16 78 -16c64 0 100 18 135 68h38zM758 185c0 76 -28 154 -95 154c-65 0 -88 -79 -88 -154c0 -76 23 -155 88 -155c67 0 95 78 95 155zM314 474c0 49 -12 100 -39 129c-16 7 -32 15 -46 24c-4 1 -7 1 -10 1 c-65 0 -88 -79 -88 -154c0 -76 23 -155 88 -155c67 0 95 78 95 155'], + 0x26: [676,13,778,42,750,'750 100c-30 -71 -87 -113 -151 -113c-58 0 -107 26 -170 91c-75 -66 -135 -91 -216 -91c-106 0 -171 57 -171 152c0 84 51 155 157 216l38 22c-27 75 -35 107 -35 145c0 86 68 154 154 154c79 0 135 -50 135 -121c0 -33 -13 -68 -34 -91c-28 -31 -53 -48 -121 -80 c44 -86 76 -137 132 -206c64 85 91 139 91 182c0 30 -14 40 -64 45v21h216v-21c-50 -6 -70 -18 -94 -59l-26 -46c-31 -54 -56 -91 -100 -150c46 -61 98 -92 154 -92c36 0 58 13 90 53zM438 559c0 49 -34 85 -80 85s-77 -34 -77 -82c0 -45 10 -83 40 -146 c82 44 117 87 117 143zM404 104c-57 70 -92 125 -152 239c-87 -56 -118 -99 -118 -163c0 -77 59 -141 129 -141c42 0 82 18 141 65'], + 0x27: [676,-431,180,48,133,'133 636c0 -29 -9 -89 -25 -165l-7 -40h-21c-17 90 -32 188 -32 204c0 23 19 41 43 41c23 0 42 -18 42 -40'], + 0x28: [658,158,398,120,318,'318 -142l-13 -16c-90 68 -185 230 -185 375v66c0 145 95 307 185 375l13 -16c-83 -62 -127 -227 -127 -359v-66c0 -132 44 -297 127 -359'], + 0x29: [658,158,398,80,278,'278 217c0 -145 -96 -307 -186 -375l-12 16c82 62 127 227 127 359v66c0 132 -45 297 -127 359l12 16c90 -68 186 -230 186 -375v-66'], + 0x2A: [714,-310,442,40,402,'396 411c-14 -25 -48 -31 -64 -10c-28 37 -62 69 -101 94c3 -46 13 -92 31 -134c10 -25 -11 -51 -41 -51c-29 0 -50 26 -40 51c18 42 28 88 30 134c-39 -25 -73 -57 -101 -94c-16 -21 -49 -15 -64 10c-14 25 -2 57 24 60c46 6 90 20 131 41c-41 21 -85 35 -131 41 c-26 3 -38 35 -24 60c15 25 48 31 64 10c28 -37 62 -69 101 -94c-2 46 -12 92 -30 134c-10 25 11 51 40 51c30 0 51 -26 41 -51c-18 -42 -28 -88 -31 -134c39 25 73 57 101 94c16 21 50 15 64 -10c15 -25 3 -57 -23 -60c-46 -6 -91 -20 -132 -41c41 -21 86 -35 132 -41 c26 -3 38 -35 23 -60'], + 0x2B: [500,0,660,80,580,'580 224h-224v-224h-52v224h-224v52h224v224h52v-224h224v-52'], + 0x2C: [102,141,250,56,195,'195 13c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x2D: [257,-194,333,39,285,'285 194h-246v63h246v-63'], + 0x2E: [100,11,250,70,181,'181 43c0 -29 -26 -54 -57 -54c-29 0 -54 25 -54 54c0 31 25 57 55 57s56 -26 56 -57'], + 0x2F: [650,150,466,80,386,'386 650l-260 -800h-46l260 800h46'], + 0x30: [676,14,500,24,476,'476 330c0 -121 -38 -237 -96 -292c-36 -35 -79 -52 -130 -52c-58 0 -109 24 -146 68c-47 56 -80 173 -80 282c0 117 38 232 96 288c37 35 79 52 134 52c131 0 222 -141 222 -346zM380 328c0 209 -45 322 -129 322c-86 0 -131 -111 -131 -323c0 -208 44 -315 130 -315 s130 107 130 316'], + 0x31: [676,0,500,111,394,'394 0h-276v15c42 1 56 4 71 13c16 9 24 32 24 65v453c0 32 -9 47 -30 47c-10 0 -27 -4 -45 -11c-4 -2 -15 -6 -27 -11v14l180 91l8 -2v-600c0 -48 16 -58 95 -59v-15'], + 0x32: [676,0,500,30,475,'475 137l-55 -137h-390v12l178 189c84 89 130 182 130 260c0 84 -57 141 -141 141c-69 0 -105 -32 -145 -130l-21 5c17 71 32 103 64 137c37 40 89 62 144 62c104 0 185 -77 185 -177c0 -78 -39 -154 -128 -247l-168 -176h239c45 0 58 9 95 66'], + 0x33: [676,14,500,43,432,'432 219c0 -67 -26 -125 -73 -166s-126 -67 -203 -67c-70 0 -113 22 -113 57c0 21 15 35 38 35c17 0 34 -7 64 -25c37 -24 57 -31 84 -31c74 0 131 65 131 149c0 69 -39 126 -101 148c-24 9 -47 11 -106 11v13c68 24 96 39 126 69c25 25 40 61 40 97 c0 63 -45 107 -110 107c-63 0 -108 -33 -149 -106l-15 4c22 60 37 86 67 113c36 32 80 49 130 49c92 0 156 -56 156 -137c0 -54 -25 -91 -94 -138c44 -19 63 -31 83 -53c29 -31 45 -78 45 -129'], + 0x34: [676,0,500,12,472,'472 167h-102v-167h-77v167h-281v64l314 445h44v-445h102v-64zM292 231v343l-240 -343h240'], + 0x35: [688,14,500,32,438,'438 681l-38 -89c-3 -7 -7 -9 -23 -9h-196l-42 -85c118 -21 175 -44 219 -88c50 -50 69 -96 69 -168c0 -76 -21 -133 -67 -178c-50 -51 -122 -78 -206 -78c-75 0 -122 24 -122 62c0 25 14 37 43 37c21 0 44 -10 76 -33c30 -22 47 -29 67 -29c78 0 139 75 139 171 c0 99 -53 161 -168 198c-41 13 -81 20 -113 20c-8 0 -12 3 -12 8c0 0 0 3 1 5l109 237h209c21 0 31 5 46 26'], + 0x36: [684,14,500,34,468,'468 219c0 -138 -86 -233 -210 -233c-62 0 -116 24 -154 68c-43 50 -70 138 -70 225c0 134 59 248 167 325c73 51 131 70 245 80l2 -16c-157 -26 -269 -134 -296 -285c63 38 84 45 128 45c115 0 188 -81 188 -209zM378 185c0 125 -50 197 -136 197c-35 0 -66 -9 -87 -25 c-20 -15 -28 -43 -28 -94c0 -155 54 -249 142 -249c70 0 109 61 109 171'], + 0x37: [662,8,500,20,449,'449 646l-212 -654h-65l198 596h-217c-55 0 -73 -13 -116 -81l-17 8l59 147h370v-16'], + 0x38: [676,14,500,56,445,'445 155c0 -103 -77 -169 -197 -169c-113 0 -192 68 -192 165c0 68 22 99 130 181c-105 92 -124 121 -124 186c0 91 81 158 190 158c100 0 172 -60 172 -142c0 -68 -35 -110 -134 -163c121 -90 155 -139 155 -216zM369 124c0 56 -24 92 -97 144l-60 44 c-58 -47 -80 -89 -80 -153c0 -87 51 -145 127 -145c65 0 110 45 110 110zM355 535c0 69 -43 113 -111 113c-63 0 -108 -41 -108 -99c0 -56 36 -102 125 -160c4 3 4 3 9 6c57 38 85 83 85 140'], + 0x39: [676,22,500,30,459,'459 394c0 -135 -61 -259 -165 -335c-68 -49 -123 -68 -235 -81l-3 20c152 26 263 133 304 296c-53 -41 -95 -57 -150 -57c-108 0 -180 81 -180 203c0 135 89 236 208 236c129 0 221 -117 221 -282zM362 355v39c0 168 -45 254 -132 254c-29 0 -54 -11 -71 -31 c-21 -26 -37 -86 -37 -143c0 -119 48 -194 124 -194c36 0 73 13 101 37c11 9 15 18 15 38'], + 0x3A: [459,11,278,81,192,'192 402c0 -29 -26 -54 -57 -54c-29 0 -54 25 -54 54c0 31 25 57 55 57s56 -26 56 -57zM192 43c0 -29 -26 -54 -57 -54c-29 0 -54 25 -54 54c0 31 25 57 55 57s56 -26 56 -57'], + 0x3B: [459,141,278,80,219,'219 13c0 -60 -43 -120 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-37 0 -59 19 -59 52c0 34 24 56 59 56c45 0 80 -39 80 -89zM192 402c0 -29 -26 -54 -57 -54c-29 0 -54 25 -54 54c0 31 25 57 55 57s56 -26 56 -57'], + 0x3C: [515,15,666,80,586,'586 -15l-506 239v52l506 239v-58l-439 -207l439 -207v-58'], + 0x3D: [372,-128,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52'], + 0x3E: [515,15,666,80,586,'586 224l-506 -239v58l439 207l-439 207v58l506 -239v-52'], + 0x3F: [676,8,444,68,414,'414 521c0 -41 -13 -77 -45 -126c-14 -21 -14 -21 -60 -77c-37 -47 -54 -87 -65 -154h-17c1 44 11 93 30 142l28 64c24 55 37 110 37 156c0 67 -48 120 -108 120c-49 0 -95 -30 -95 -62c0 -8 5 -17 17 -31c15 -17 21 -29 21 -43c0 -24 -17 -41 -41 -41 c-31 0 -48 22 -48 62c0 83 70 145 162 145c54 0 113 -23 148 -58c23 -23 36 -59 36 -97zM291 44c0 -30 -23 -52 -55 -52c-30 0 -52 22 -52 51c0 32 23 56 53 56c29 0 54 -25 54 -55'], + 0x40: [676,14,921,116,809,'809 383c0 -129 -85 -240 -184 -240c-48 0 -85 29 -91 73c-34 -45 -81 -72 -125 -72c-49 0 -88 49 -88 112c0 73 31 149 84 202c34 34 69 50 112 50c35 0 50 -11 72 -52l10 38h69l-65 -254c-1 -6 -2 -11 -2 -18c0 -31 13 -46 39 -46c66 0 129 97 129 197 c0 149 -130 272 -287 272c-73 0 -140 -27 -189 -76c-57 -59 -93 -153 -93 -246c0 -174 122 -298 292 -298c67 0 118 13 196 48l12 -30c-97 -44 -147 -57 -217 -57c-207 0 -367 148 -367 340c0 195 162 350 365 350c185 0 328 -128 328 -293zM572 399c2 39 -13 63 -41 65 c-24 2 -59 -18 -87 -50c-34 -38 -52 -88 -52 -142c0 -52 23 -85 60 -85c27 0 56 22 75 58c26 47 43 106 45 154'], + 0x41: [674,0,722,15,706,'706 0h-255v19c36 0 44 2 56 9c8 4 14 15 14 24c0 15 -7 40 -19 68l-41 96h-262l-46 -117c-5 -13 -8 -27 -8 -39c0 -28 20 -41 68 -41v-19h-198v19c48 3 60 18 124 164l208 491h20l249 -568c35 -74 45 -84 90 -87v-19zM447 257l-116 275l-115 -275h231'], + 0x42: [662,0,667,17,593,'593 180c0 -48 -20 -93 -56 -125c-37 -34 -108 -55 -186 -55h-334v19c83 3 96 16 96 90v444c0 74 -12 85 -96 90v19h280c173 0 262 -58 262 -170c0 -41 -15 -78 -40 -100c-24 -21 -45 -31 -97 -44c65 -16 92 -28 122 -55c31 -29 49 -69 49 -113zM478 179 c0 63 -27 103 -84 127c-36 15 -82 20 -179 20v-248c0 -32 14 -41 63 -41c66 0 107 8 139 26c40 23 61 62 61 116zM457 488c0 89 -61 137 -176 137h-44c-15 0 -22 -9 -22 -30v-229h95c94 0 147 44 147 122'], + 0x43: [676,14,667,28,633,'633 113c-61 -81 -160 -127 -273 -127c-199 0 -332 136 -332 339c0 114 41 209 117 272c61 50 140 79 217 79c49 0 98 -8 147 -24c16 -6 30 -9 40 -9c19 0 35 12 41 33h21l9 -226h-23c-19 65 -34 93 -66 125c-40 40 -91 61 -149 61c-145 0 -238 -117 -238 -298 c0 -116 33 -206 92 -255c42 -35 96 -53 156 -53c83 0 149 30 223 101'], + 0x44: [662,0,722,16,685,'685 334c0 -97 -37 -186 -102 -245c-62 -56 -167 -89 -283 -89h-284v19c76 5 88 18 88 90v444c0 74 -9 83 -88 90v19h270c137 0 246 -36 314 -105c55 -55 85 -133 85 -223zM576 327c0 108 -41 194 -119 248c-48 34 -113 50 -199 50c-41 0 -52 -8 -52 -39v-508 c0 -32 12 -41 52 -41c87 0 145 12 196 41c81 47 122 131 122 249'], + 0x45: [662,0,611,12,597,'597 169l-45 -169h-540v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h531l3 -143h-25c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c81 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 97 -11h27 c143 0 186 24 236 132h28'], + 0x46: [662,0,556,12,546,'546 519h-25c-17 90 -39 105 -152 105h-136c-27 0 -32 -6 -32 -34v-222h145c80 0 98 15 110 95h23v-232h-23c-12 81 -29 96 -110 96h-145v-218c0 -72 14 -86 91 -90v-19h-280v19c76 5 87 18 87 101v433c0 70 -13 84 -87 90v19h531'], + 0x47: [676,14,722,32,709,'709 336c-58 -5 -70 -18 -70 -77v-203c-40 -35 -165 -70 -251 -70c-110 0 -206 38 -273 107c-56 59 -83 134 -83 232c0 204 143 351 343 351c45 0 91 -8 136 -23c18 -7 34 -10 44 -10c21 0 39 14 45 33h22l8 -211h-23c-25 61 -41 88 -71 116c-39 36 -88 55 -144 55 c-68 0 -130 -27 -174 -76s-72 -140 -72 -234c0 -186 100 -300 263 -300c72 0 133 27 133 59v162c0 43 -6 66 -21 75c-12 8 -24 11 -67 14v18h255v-18'], + 0x48: [662,0,722,19,702,'702 0h-278v19c78 5 88 17 88 101v195h-303v-206c0 -71 13 -84 88 -90v-19h-278v19c78 5 88 17 88 101v433c0 72 -11 83 -88 90v19h278v-19c-77 -7 -88 -18 -88 -90v-194h303v194c0 72 -11 83 -88 90v19h278v-19c-77 -7 -88 -18 -88 -90v-444c0 -71 13 -84 88 -90v-19'], + 0x49: [662,0,333,18,315,'315 0h-297v19c84 3 97 15 97 90v444c0 74 -12 85 -97 90v19h297v-19c-84 -4 -98 -17 -98 -90v-444c0 -73 16 -87 98 -90v-19'], + 0x4A: [662,14,389,10,370,'370 643c-81 -6 -92 -17 -92 -90v-370c0 -125 -61 -197 -169 -197c-58 0 -99 30 -99 72c0 27 22 50 49 50c26 0 42 -16 52 -51c7 -25 13 -33 27 -33c26 0 38 21 38 66v463c0 73 -11 84 -93 90v19h287v-19'], + 0x4B: [662,0,722,34,723,'723 0h-305v19c12 1 23 1 28 1c28 1 42 8 42 22c0 24 -54 95 -130 170l-106 105l-26 -21v-187c0 -73 12 -85 90 -90v-19h-282v19c79 5 90 18 90 101v433c0 71 -12 84 -90 90v19h284v-19c-81 -6 -92 -17 -92 -90v-205l177 161c55 51 78 81 78 103c0 20 -12 28 -42 30 c-4 0 -14 0 -26 1v19h262v-19c-68 -5 -84 -13 -152 -78l-190 -188l233 -250c91 -97 105 -107 157 -108v-19'], + 0x4C: [662,0,611,12,598,'598 174l-48 -174h-538v19c73 5 87 19 87 90v444c0 71 -13 84 -87 90v19h282v-19c-79 -5 -93 -19 -93 -90v-473c0 -35 13 -41 86 -41h67c86 0 141 19 176 61c14 16 27 39 43 74h25'], + 0x4D: [662,0,889,12,863,'863 0h-280v19c79 5 91 18 91 101v453l-256 -573h-14l-251 550v-403c0 -101 17 -124 94 -128v-19h-235v19c83 6 97 25 97 128v406c0 73 -13 85 -95 90v19h198l231 -505l221 505h199v-19c-74 -6 -87 -19 -87 -90v-444c0 -71 14 -85 87 -90v-19'], + 0x4E: [662,11,722,12,707,'707 643c-38 -4 -52 -8 -66 -18c-19 -13 -29 -50 -29 -110v-526h-17l-442 550v-392c0 -101 17 -124 94 -128v-19h-235v19c83 6 97 25 97 128v441c-40 47 -54 55 -97 55v19h171l385 -484v337c0 62 -9 98 -29 112c-15 9 -29 13 -67 16v19h235v-19'], + 0x4F: [676,14,722,34,688,'688 327c0 -201 -136 -341 -333 -341c-88 0 -177 39 -235 102c-54 58 -86 149 -86 243c0 201 136 345 327 345c96 0 180 -36 243 -105c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65c-42 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180'], + 0x50: [662,0,556,16,542,'542 481c0 -66 -36 -127 -96 -159c-43 -24 -97 -34 -175 -34c-26 0 -43 1 -69 3v-182c0 -73 15 -87 94 -90v-19h-280v19c76 7 84 17 84 101v433c0 72 -10 82 -84 90v19h264c94 0 181 -28 221 -72c27 -29 41 -67 41 -109zM433 475c0 103 -62 150 -197 150 c-27 0 -34 -7 -34 -34v-260c23 -2 37 -3 57 -3c115 0 174 50 174 147'], + 0x51: [676,178,722,34,701,'701 -177h-6c-11 -1 -20 -1 -35 -1c-159 0 -280 43 -348 122l-47 55c-71 24 -103 44 -142 86c-59 64 -89 146 -89 244c0 203 136 347 327 347s327 -144 327 -345c0 -111 -38 -202 -112 -268c-46 -40 -82 -57 -150 -70c81 -105 161 -152 275 -152v-18zM574 333 c0 113 -32 209 -86 257c-35 31 -81 50 -124 50c-58 0 -105 -21 -146 -65c-41 -46 -70 -144 -70 -240c0 -117 32 -217 85 -264c36 -32 80 -49 128 -49c55 0 107 23 144 64c40 46 69 148 69 247'], + 0x52: [662,0,667,17,659,'659 0h-161l-238 308l-56 -2v-197c0 -72 13 -85 90 -90v-19h-277v19c75 6 85 18 85 101v433c0 71 -10 82 -85 90v19h276c94 0 177 -26 215 -67c26 -29 39 -66 39 -109c0 -47 -19 -89 -51 -115c-33 -27 -63 -39 -130 -52l206 -253c29 -34 49 -44 87 -47v-19zM438 488 c0 94 -58 137 -183 137c-40 0 -51 -8 -51 -36v-246c96 2 131 8 177 34c36 19 57 61 57 111'], + 0x53: [676,14,556,42,491,'491 168c0 -103 -88 -182 -204 -182c-40 0 -80 8 -118 23c-19 7 -36 11 -47 11c-15 0 -27 -14 -28 -33h-22l-30 212h23c50 -122 112 -177 202 -177c73 0 123 46 123 112c0 25 -5 45 -14 59c-25 38 -77 78 -149 117c-112 59 -156 115 -156 194c0 55 19 98 58 130 c32 26 74 42 113 42c35 0 71 -8 108 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21l22 -213h-25c-16 59 -30 85 -61 117c-35 36 -77 55 -122 55c-62 0 -104 -37 -104 -92s42 -99 147 -156c132 -72 187 -136 187 -219'], + 0x54: [662,0,611,17,593,'593 492h-24c-23 110 -45 128 -159 128h-54v-511c0 -73 14 -86 96 -90v-19h-292v19c83 5 94 16 94 101v500h-54c-112 0 -135 -18 -159 -128h-24l6 170h564'], + 0x55: [662,14,722,14,705,'705 643c-82 -10 -94 -26 -94 -128v-261c0 -77 -9 -123 -33 -165c-39 -68 -114 -103 -223 -103c-170 0 -251 82 -251 255v312c0 73 -11 84 -90 90v19h283v-19c-80 -7 -91 -18 -91 -90v-320c0 -63 7 -100 25 -132c27 -47 76 -71 147 -71c75 0 139 31 166 79 c16 30 23 68 23 136v270c0 100 -16 122 -94 128v19h232v-19'], + 0x56: [662,11,722,16,697,'697 643c-48 -3 -59 -14 -92 -93l-222 -561h-15l-246 549c-43 89 -57 103 -106 105v19h266v-19c-14 -1 -25 -2 -29 -2c-32 -2 -46 -12 -46 -31c0 -15 8 -38 41 -111l151 -338l147 367c12 30 19 57 19 73c0 28 -18 39 -73 42v19h205v-19'], + 0x57: [662,11,944,5,932,'932 643c-53 -10 -64 -19 -83 -71l-204 -583h-15l-160 423l-154 -423h-15l-193 537c-37 94 -52 112 -103 117v19h245v-19c-51 -3 -65 -10 -65 -32c0 -11 4 -28 11 -46l144 -376l107 282l-33 82c-34 80 -44 89 -101 90v19h267v-19c-54 -1 -77 -11 -77 -35 c0 -11 6 -30 15 -51l12 -30l132 -341l125 339c10 28 16 54 16 75c0 27 -18 38 -69 43v19h198v-19'], + 0x58: [662,0,722,10,704,'704 0h-297v19c12 1 23 2 27 2c34 1 50 11 50 29c0 15 -18 49 -51 98l-95 140l-119 -148c-37 -46 -52 -71 -52 -86c0 -23 18 -31 76 -35v-19h-233v19c51 4 56 8 145 114l157 193l-109 160c-98 139 -116 154 -181 157v19h302v-19l-28 -1c-33 -1 -48 -9 -48 -29 c0 -22 24 -65 85 -150l42 -59l113 138c29 36 40 54 40 69c0 23 -16 30 -70 32v19h238v-19c-64 -4 -84 -16 -149 -94l-146 -182l192 -274c43 -58 58 -68 111 -74v-19'], + 0x59: [662,0,722,22,703,'703 643c-51 -4 -77 -26 -138 -114l-148 -226v-194c0 -76 14 -88 103 -90v-19h-306v19c91 4 101 14 101 101v174l-131 192c-100 141 -114 155 -162 157v19h280v-19c-11 -1 -21 -1 -25 -1c-32 -2 -46 -11 -46 -29c0 -11 6 -28 17 -44l148 -222l143 226c9 15 14 27 14 37 c0 24 -17 32 -69 33v19h219v-19'], + 0x5A: [662,0,611,9,597,'597 176l-24 -176h-564v15l437 609h-221c-66 0 -111 -14 -134 -43c-17 -21 -25 -41 -34 -90h-26l20 171h526v-15l-432 -609h257c57 0 101 14 125 39c20 22 30 43 47 99h23'], + 0x5B: [668,168,387,120,307,'307 -168h-187v836h187v-36h-125v-764h125v-36'], + 0x5C: [650,150,466,80,386,'386 -150h-46l-260 800h46'], + 0x5D: [668,168,387,80,267,'267 668v-836h-187v36h125v764h-125v36h187'], + 0x5E: [662,-297,469,24,446,'446 297h-68l-143 289l-143 -289h-68l181 365h60'], + 0x5F: [-75,125,500,0,500,'500 -125h-500v50h500v-50'], + 0x60: [675,-504,333,16,240,'240 504h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0x61: [460,10,444,37,442,'442 40c-35 -38 -56 -50 -90 -50c-41 0 -59 20 -64 73c-61 -52 -102 -73 -146 -73c-62 0 -105 44 -105 107c0 33 14 67 36 87c43 38 60 46 214 108v61c0 54 -27 83 -76 83c-40 0 -72 -22 -72 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -21 -42 -45 -42s-43 20 -43 43 c0 25 16 54 41 75c28 23 76 37 127 37c61 0 104 -20 125 -58c14 -23 19 -51 19 -102v-195c0 -44 7 -58 30 -58c15 0 27 5 44 19v-26zM287 123v145c-121 -44 -162 -80 -162 -139v-4c0 -43 28 -77 63 -77c21 0 49 8 73 22c21 13 26 22 26 53'], + 0x62: [683,10,500,3,468,'468 243c0 -143 -102 -253 -234 -253c-80 0 -165 33 -165 64v519c0 42 -9 51 -49 51c-7 0 -11 0 -17 -1v16l29 8c47 13 74 21 116 36l5 -2v-306c20 49 78 85 139 85c100 0 176 -94 176 -217zM380 197c0 122 -50 200 -128 200c-52 0 -99 -36 -99 -75v-252 c0 -25 45 -48 97 -48c82 0 130 64 130 175'], + 0x63: [460,10,444,25,412,'412 147c-32 -62 -52 -91 -82 -115c-34 -28 -72 -42 -115 -42c-111 0 -190 93 -190 222c0 83 30 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174 c0 -115 63 -195 155 -195c57 0 93 24 141 94'], + 0x64: [683,10,500,27,491,'491 42l-147 -52l-4 3v64c-34 -47 -72 -67 -128 -67c-110 0 -185 87 -185 215c0 142 93 255 208 255c40 0 67 -11 105 -43v156c0 41 -9 51 -46 51c-8 0 -14 0 -22 -1v16c64 17 99 27 147 44l5 -2v-567c0 -46 8 -57 44 -57c3 0 5 0 23 1v-16zM340 102v230 c0 53 -49 100 -102 100c-76 0 -125 -74 -125 -187c0 -123 55 -203 138 -203c29 0 54 10 72 30c10 11 17 23 17 30'], + 0x65: [460,10,444,25,424,'424 157c-42 -108 -116 -167 -212 -167c-115 0 -187 86 -187 224c0 146 85 246 209 246c52 0 98 -21 128 -57c25 -32 35 -61 43 -126h-308c2 -64 10 -99 30 -138c29 -54 71 -80 126 -80c64 0 107 29 155 105zM303 309c-13 87 -37 115 -98 115s-95 -36 -106 -115h204'], + 0x66: [683,0,333,20,383,'383 621c0 -23 -18 -41 -42 -41c-17 0 -29 9 -45 36c-18 29 -31 39 -53 39c-38 0 -57 -30 -57 -89v-116h123v-32h-122v-314c0 -75 11 -86 93 -89v-15h-260v15c72 4 83 16 83 89v314h-82v32h82c1 80 9 116 35 161s78 72 141 72c60 0 104 -26 104 -62'], + 0x67: [460,218,500,28,470,'470 388h-83c14 -32 19 -55 19 -84c0 -50 -15 -85 -48 -113c-31 -27 -71 -42 -108 -42c-6 0 -19 1 -38 3c-3 0 -10 1 -19 2c-27 -8 -60 -43 -60 -63c0 -16 25 -25 78 -27l129 -6c74 -3 121 -45 121 -107c0 -38 -17 -70 -55 -101c-52 -42 -130 -68 -205 -68 c-95 0 -173 44 -173 97c0 37 27 70 98 122c-41 20 -53 32 -53 53c0 20 13 40 46 69l43 40c-66 33 -93 71 -93 134c0 91 74 163 167 163c26 0 53 -5 80 -15l22 -8c20 -7 35 -10 55 -10h77v-39zM433 -64c0 36 -33 49 -124 49c-49 0 -129 6 -162 13c-42 -50 -49 -63 -49 -86 c0 -44 58 -73 146 -73c113 0 189 39 189 97zM329 265c0 39 -12 85 -30 120c-16 30 -42 47 -73 47c-46 0 -74 -35 -74 -94v-3c0 -96 42 -161 102 -161c46 0 75 35 75 91'], + 0x68: [683,0,500,9,487,'487 0h-212v15c58 6 68 19 68 87v198c0 70 -25 106 -75 106c-39 0 -69 -17 -111 -63v-241c0 -69 10 -81 68 -87v-15h-216v15c58 8 64 17 64 87v471c0 43 -8 51 -51 51c-5 0 -8 0 -12 -1v16l27 8c56 16 81 24 115 36l5 -3v-304c46 60 88 84 147 84c81 0 123 -54 123 -159 v-199c0 -69 6 -77 60 -87v-15'], + 0x69: [641,0,278,16,253,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15zM188 590c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x6A: [641,218,278,-70,202,'193 0c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v379c0 43 -9 60 -32 60c-10 0 -24 -1 -40 -3l-5 -1v16c59 18 97 31 156 54l5 -3v-457zM202 590 c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x6B: [683,0,500,7,505,'505 0h-218v15h19c12 0 21 6 21 15c0 5 -3 11 -11 21c-3 3 -5 6 -7 9l-3 4l-140 187v-184c0 -35 15 -49 55 -51l20 -1v-15h-234v15c72 12 75 15 75 67v482c0 48 -10 61 -43 61c-10 0 -19 -1 -32 -2v16l30 8l125 36l4 -2v-420l137 122c14 12 23 26 23 34 c0 14 -11 18 -50 19v14h204v-15h-8c-17 0 -31 -2 -46 -6c-29 -8 -91 -54 -162 -120l-29 -27l153 -194c42 -51 73 -70 117 -73v-15'], + 0x6C: [683,0,278,19,257,'257 0h-236v15c63 5 77 18 77 72v477c0 47 -10 61 -42 61c-8 0 -20 -1 -31 -2h-6v16c69 17 107 27 159 44l4 -2v-597c0 -55 11 -65 75 -69v-15'], + 0x6D: [460,0,778,16,775,'775 0h-219v15c58 7 66 15 66 72v211c0 83 -18 110 -75 110c-46 0 -79 -18 -109 -61v-252c0 -62 15 -79 72 -80v-15h-224v15c57 4 68 15 68 71v217c0 70 -22 105 -66 105c-35 0 -78 -17 -103 -40c-7 -7 -15 -19 -15 -19v-282c0 -39 15 -50 68 -52v-15h-222v15 c56 1 70 16 70 70v253c0 48 -9 64 -35 64c-11 0 -19 -1 -32 -4v17c55 15 89 26 140 45l7 -2v-75c83 63 111 77 155 77c54 0 88 -27 106 -84c54 58 105 84 163 84c77 0 116 -60 116 -178v-206c0 -39 13 -57 43 -59l26 -2v-15'], + 0x6E: [460,0,500,16,485,'485 0h-208v15c50 4 63 21 63 84v209c0 66 -24 97 -73 97c-33 0 -55 -12 -103 -57v-281c0 -36 15 -48 66 -52v-15h-212v15c51 4 62 18 62 75v248c0 49 -9 64 -37 64c-11 0 -21 -1 -27 -4v17c55 16 89 27 138 45l7 -2v-79c68 64 99 81 145 81c74 0 118 -56 118 -150v-229 c0 -49 12 -61 61 -66v-15'], + 0x6F: [460,10,500,29,470,'470 234c0 -138 -96 -244 -222 -244s-219 101 -219 236c0 138 91 234 221 234c128 0 220 -95 220 -226zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181'], + 0x70: [460,217,500,5,470,'470 247c0 -145 -92 -257 -210 -257c-42 0 -66 10 -101 43v-157c0 -63 13 -74 88 -75v-18h-242v17c59 6 70 17 70 69v468c0 47 -7 57 -41 57c-9 0 -16 0 -25 -1v16c55 17 90 30 144 51l6 -2v-77c44 54 88 79 144 79c97 0 167 -89 167 -213zM384 208 c0 116 -49 192 -123 192c-46 0 -102 -36 -102 -66v-246c0 -30 57 -66 104 -66c72 0 121 75 121 186'], + 0x71: [461,217,500,24,488,'488 -217h-236v17c71 5 89 20 89 76v188c-44 -48 -99 -74 -157 -74c-94 0 -160 89 -160 215c0 144 96 256 221 256c39 0 69 -9 115 -36l54 32h11v-598c0 -42 8 -50 63 -62v-14zM341 127v206c0 67 -31 100 -93 100c-85 0 -138 -74 -138 -192c0 -66 21 -131 53 -160 c20 -20 47 -30 78 -30s64 12 86 31c10 8 14 21 14 45'], + 0x72: [460,0,333,5,335,'335 407c0 -28 -15 -45 -39 -45c-13 0 -24 6 -40 20c-11 10 -20 15 -26 15c-27 0 -70 -50 -70 -82v-225c0 -57 17 -72 85 -75v-15h-240v15c64 12 71 19 71 69v250c0 44 -9 60 -34 60c-12 0 -21 -1 -35 -4v16c59 19 95 32 148 54l5 -2v-92c49 71 78 94 120 94 c34 0 55 -20 55 -53'], + 0x73: [459,10,389,51,348,'348 118c0 -70 -64 -128 -140 -128c-21 0 -46 4 -74 10c-24 6 -35 8 -46 8c-12 0 -16 -2 -23 -12h-13v156h16c23 -102 58 -140 127 -140c51 0 83 28 83 72c0 31 -17 55 -52 75l-58 33c-85 49 -117 88 -117 144c0 73 56 123 138 123c24 0 47 -4 68 -12c11 -5 21 -7 27 -7 c4 0 5 1 14 8l2 2h11l4 -136h-15c-23 90 -53 123 -110 123c-46 0 -77 -27 -77 -68c0 -27 15 -52 43 -68l108 -64c61 -36 84 -69 84 -119'], + 0x74: [579,10,278,13,279,'279 66c-33 -52 -71 -76 -121 -76c-58 0 -88 43 -88 127v301h-53c-3 2 -4 4 -4 7c0 6 6 12 17 19c26 15 60 52 97 107c7 9 14 18 20 28c5 0 7 -3 7 -13v-116h101v-32h-101v-286c0 -64 15 -90 52 -90c22 0 38 9 60 35'], + 0x75: [450,10,500,9,479,'479 36c-51 -14 -87 -25 -137 -45l-4 2v83l-43 -43c-27 -27 -66 -43 -103 -43c-73 0 -121 51 -121 130v252c0 46 -14 61 -62 64v14h146v-326c0 -42 32 -76 71 -76c31 0 62 12 90 36c12 9 17 24 17 51v235c0 50 -12 60 -74 63v17h158v-343c0 -46 11 -57 57 -57h5v-14'], + 0x76: [450,14,500,19,477,'477 435c-30 -3 -36 -10 -65 -78l-128 -321c-15 -37 -22 -50 -28 -50s-12 8 -18 26c-3 8 -6 15 -8 21l-120 287c-46 103 -53 113 -91 115v15h196v-15c-35 -3 -46 -10 -46 -28c0 -9 3 -23 9 -37l102 -256l99 259c4 10 6 20 6 30c0 19 -15 29 -47 32v15h139v-15'], + 0x77: [450,14,722,21,694,'694 435c-20 -7 -23 -12 -41 -54l-138 -346c-16 -40 -21 -49 -28 -49c-6 0 -10 6 -24 43l-91 236l-112 -240c-12 -26 -20 -39 -25 -39c-6 0 -14 14 -26 44l-135 342c-22 51 -30 61 -53 63v15h180v-15c-34 -4 -46 -12 -46 -33c0 -10 2 -20 6 -30l99 -261l91 199l-20 56 c-20 54 -32 65 -69 69v15h203v-15c-47 -7 -58 -14 -58 -36c0 -13 0 -13 17 -59l84 -224l90 222c11 27 17 51 17 66c0 17 -10 24 -44 31v15h123v-15'], + 0x78: [450,0,500,17,479,'479 0h-201v15c33 2 40 6 40 24c0 6 -2 12 -6 18l-91 140l-79 -123c-13 -20 -20 -35 -20 -41c0 -13 12 -18 40 -18v-15h-145v15c33 3 43 10 73 51l114 165l-94 144c-31 47 -47 60 -77 60h-9v15h207v-15c-30 -1 -43 -8 -43 -22c0 -13 18 -47 46 -89l14 -20 c13 20 25 38 30 44c25 31 37 53 37 65c0 14 -10 20 -40 22v15h158v-15c-32 -1 -62 -17 -81 -44l-83 -120l128 -196c31 -44 51 -60 82 -60v-15'], + 0x79: [450,218,500,14,475,'475 435c-24 -3 -35 -13 -48 -45l-154 -408c-54 -144 -102 -200 -169 -200c-42 0 -74 25 -74 58c0 24 20 44 43 44c17 0 34 -4 53 -11c10 -5 19 -7 25 -7c14 0 36 19 50 45c17 30 40 93 40 108c0 8 -4 20 -11 37l-165 348c-8 17 -25 28 -51 32v14h206v-15 c-43 -2 -58 -9 -58 -27c0 -11 4 -24 10 -38l115 -253l97 276c3 7 4 13 4 17c0 16 -16 25 -48 25v15h135v-15'], + 0x7A: [450,0,444,27,418,'418 135l-14 -135h-377v15l266 405h-138c-60 0 -75 -15 -84 -88h-18l3 118h347v-15l-269 -405h138c51 0 85 9 99 26c13 17 19 33 29 83'], + 0x7B: [660,160,391,80,311,'311 -140l-6 -20c-72 20 -142 78 -142 143v134c0 62 -30 123 -83 123v20c53 0 83 61 83 123v134c0 65 70 123 142 143l6 -20c-54 -14 -86 -75 -86 -123v-134c0 -64 -41 -113 -92 -133c51 -20 92 -69 92 -133v-134c0 -48 32 -109 86 -123'], + 0x7C: [650,150,204,80,124,'124 -150h-44v800h44v-800'], + 0x7D: [660,160,391,80,311,'311 240c-54 0 -83 -61 -83 -123v-134c0 -65 -70 -123 -143 -143l-5 20c54 14 86 75 86 123v134c0 64 40 113 92 133c-52 20 -92 69 -92 133v134c0 48 -32 109 -86 123l5 20c73 -20 143 -78 143 -143v-134c0 -62 29 -123 83 -123v-20'], + 0x7E: [320,-186,541,40,502,'502 271c-46 -64 -77 -85 -123 -85c-45 0 -63 7 -152 54c-17 9 -38 14 -59 14c-31 0 -48 -12 -74 -51l-54 32c46 64 77 85 123 85c45 0 63 -7 152 -54c17 -9 38 -14 59 -14c31 0 48 12 74 51'], + 0xA0: [0,0,250,0,0,''], + 0xA3: [676,8,500,12,490,'490 136c0 -17 -22 -61 -43 -85c-32 -37 -77 -58 -125 -58c-43 0 -76 14 -144 61c-40 -47 -63 -62 -98 -62c-41 0 -68 24 -68 62c0 46 37 76 91 76c15 0 27 -1 46 -5c3 8 4 14 4 21c0 18 -2 35 -22 182h-108v45h107c-5 26 -7 45 -7 69c0 143 76 234 195 234 c74 0 130 -40 130 -93c0 -31 -21 -53 -50 -53c-30 0 -38 14 -39 67c-1 35 -19 52 -56 52c-60 0 -95 -51 -95 -139c0 -36 3 -69 11 -137h125v-45h-121v-27l1 -28c0 -35 -1 -40 -25 -162c65 -27 100 -35 149 -35c46 0 81 15 113 49c10 11 18 16 23 16c4 0 6 -2 6 -5zM142 76 c0 8 -29 18 -53 18c-33 0 -51 -13 -51 -37c0 -22 17 -37 41 -37c20 0 32 6 46 23c11 13 17 25 17 33'], + 0xA5: [662,0,500,-53,512,'512 643c-51 -11 -81 -38 -118 -107l-92 -184h146v-40h-166l-7 -14v-76h173v-40h-173v-73c0 -70 16 -88 80 -90v-19h-244v19c67 3 79 18 79 101v62h-174v40h174v76l-7 14h-167v40h144l-95 173c-55 99 -72 115 -118 118v19h243v-19c-47 -1 -65 -9 -65 -29 c0 -13 5 -29 13 -45l118 -221l112 220c9 17 14 34 14 44c0 19 -21 31 -51 31h-14v19h195v-19'], + 0xA7: [676,148,500,70,426,'426 245c0 -70 -48 -120 -116 -120h-18c75 -65 94 -95 94 -146c0 -76 -57 -127 -144 -127c-78 0 -138 44 -138 100c0 31 23 54 54 54c27 0 48 -18 48 -42c0 -14 -7 -27 -23 -41c-7 -6 -11 -11 -11 -15c0 -18 34 -35 71 -35c53 0 87 30 87 77c0 39 -25 71 -89 115 c-122 84 -171 148 -171 221c0 68 49 119 115 119c6 0 15 0 25 -1c-80 66 -100 96 -100 150c0 72 56 122 139 122c73 0 128 -42 128 -98c0 -33 -19 -53 -51 -53c-27 0 -47 18 -47 43c0 16 10 32 26 44c5 5 8 8 8 11c0 18 -28 32 -62 32c-51 0 -85 -29 -85 -71 c0 -25 14 -54 34 -71l137 -113c58 -48 89 -102 89 -155zM374 212c0 26 -19 59 -53 93c-46 46 -99 78 -130 78c-39 0 -68 -28 -68 -67c0 -30 12 -53 46 -87c60 -60 98 -83 136 -83c37 0 69 31 69 66'], + 0xA8: [640,-541,333,18,316,'117 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM316 590c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0xAC: [276,0,686,80,606,'606 0h-52v224h-474v52h500l26 -26v-250'], + 0xAE: [686,14,760,30,730,'730 336c0 -193 -157 -350 -350 -350s-350 157 -350 350s157 350 350 350s350 -157 350 -350zM692 336c0 172 -140 312 -312 312s-312 -140 -312 -312s140 -312 312 -312s312 140 312 312zM583 145h-105l-150 176l-28 -1v-111c0 -39 7 -47 53 -50v-14h-176v14 c46 3 50 11 50 56v248c0 39 -4 46 -50 50v14h175c61 0 115 -15 139 -39c17 -17 25 -38 25 -63c0 -28 -12 -52 -33 -67c-20 -15 -39 -22 -80 -30l128 -143c18 -18 29 -24 52 -26v-14zM439 426c0 52 -35 76 -111 76c-22 0 -28 -4 -28 -18v-139c55 1 77 4 104 18 c22 11 35 35 35 63'], + 0xAF: [617,-563,333,11,322,'322 563h-311v54h311v-54'], + 0xB0: [676,-390,400,57,343,'343 532c0 -80 -64 -142 -145 -142c-78 0 -141 64 -141 143c0 80 63 143 143 143s143 -63 143 -144zM304 533c0 59 -48 109 -104 109c-57 0 -104 -50 -104 -109s47 -109 103 -109c58 0 105 49 105 109'], + 0xB1: [500,122,660,80,580,'580 -122h-500v52h500v-52zM580 224h-224v-224h-52v224h-224v52h224v224h52v-224h224v-52'], + 0xB4: [675,-504,333,93,317,'317 643c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0xB5: [450,250,590,80,550,'550 113c0 -62 -20 -127 -74 -127c-46 0 -87 22 -110 57c-25 -34 -61 -57 -105 -57c-46 0 -91 14 -123 39c6 -93 19 -185 40 -275h-98c9 121 14 242 14 363v337h84v-337c0 -52 34 -99 83 -99c40 0 71 24 90 58c-5 12 -7 26 -7 41v337h84v-337c0 -47 8 -99 48 -99 s46 52 46 99h28'], + 0xB7: [306,-194,272,80,192,'192 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0xD7: [445,-55,550,80,470,'470 92l-36 -37l-159 158l-158 -158l-37 37l158 158l-158 158l37 37l158 -158l159 158l36 -37l-158 -158'], + 0xF0: [686,10,500,29,471,'471 285c0 -96 -34 -190 -89 -242c-37 -35 -82 -53 -135 -53c-124 0 -218 100 -218 233c0 134 92 237 212 237c48 0 75 -13 126 -60c-15 74 -38 115 -97 175l-123 -65l-33 30l121 64c-47 33 -81 47 -133 56l42 23c66 -6 101 -17 152 -47l95 50l33 -30l-91 -48 c51 -49 69 -73 91 -118c31 -63 47 -135 47 -205zM381 201c0 136 -59 231 -144 231c-70 0 -118 -63 -118 -156c0 -70 16 -140 44 -193c22 -41 59 -65 98 -65c76 0 120 68 120 183'], + 0xF7: [488,-12,660,80,580,'580 224h-500v52h500v-52zM386 432c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM386 68c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x131: [460,0,278,16,253,'253 0h-237v15c69 4 79 15 79 87v232c0 44 -9 60 -33 60c-9 0 -22 -1 -34 -3l-8 -1v15l155 55l4 -3v-355c0 -72 8 -82 74 -87v-15'], + 0x237: [460,218,278,-70,193,'193 0c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v379c0 43 -9 60 -32 60c-10 0 -24 -1 -40 -3l-5 -1v16c59 18 97 31 156 54l5 -3v-457'], + 0x2C6: [674,-507,333,11,322,'322 507h-34l-122 103l-121 -103h-34l124 167h62'], + 0x2C7: [674,-507,333,11,322,'322 674l-125 -167h-62l-124 167h34l121 -103l122 103h34'], + 0x2D8: [669,-512,333,26,307,'307 669c-12 -106 -58 -157 -142 -157c-47 0 -87 19 -112 54c-19 28 -26 52 -27 103h29c14 -67 48 -97 112 -97c58 0 83 21 111 97h29'], + 0x2D9: [641,-539,333,115,217,'217 590c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x2DA: [690,-491,333,67,266,'266 590c0 -55 -45 -99 -100 -99c-56 0 -99 44 -99 100c0 54 45 99 99 99c55 0 100 -45 100 -100zM232 590c0 36 -30 66 -65 66c-36 0 -66 -29 -66 -65s29 -66 64 -66c37 0 67 29 67 65'], + 0x2DC: [643,-537,333,1,331,'331 643c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 47 -6 70 -18l24 -12c19 -9 38 -15 53 -15c23 0 36 12 53 50h29'], + 0x300: [710,-539,0,-400,-176,'-176 539h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0x301: [710,-539,0,-323,-99,'-99 678c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x302: [685,-551,0,-421,-79,'-79 569l-10 -18c-55 26 -109 54 -161 83c-52 -29 -106 -57 -161 -83l-10 18c54 43 111 82 171 116c60 -34 117 -73 171 -116'], + 0x303: [665,-555,0,-417,-83,'-83 659c-14 -52 -28 -85 -64 -96c-9 -3 -18 -5 -26 -5c-31 0 -61 16 -89 33c-24 16 -50 34 -77 25c-26 -9 -48 -23 -59 -61l-19 6c14 52 28 85 64 96c9 3 18 5 26 5c31 0 61 -16 89 -33c24 -16 50 -34 77 -25c26 9 48 23 59 61'], + 0x304: [637,-583,0,-405,-94,'-94 583h-311v54h311v-54'], + 0x306: [681,-556,0,-425,-75,'-75 675c-24 -74 -97 -119 -175 -119s-151 45 -175 119l18 6c21 -60 90 -81 157 -81s136 21 157 81'], + 0x307: [661,-559,0,-301,-199,'-199 610c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x308: [660,-561,0,-398,-100,'-299 610c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50zM-100 610c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 26 23 49 48 49c28 0 51 -23 51 -50'], + 0x30A: [710,-511,0,-349,-150,'-150 610c0 -55 -45 -99 -100 -99c-56 0 -99 44 -99 100c0 54 45 99 99 99c55 0 100 -45 100 -100zM-184 610c0 36 -30 66 -65 66c-36 0 -66 -29 -66 -65s29 -66 64 -66c37 0 67 29 67 65'], + 0x30B: [711,-540,0,-379,11,'11 679c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32zM-155 679c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x30C: [679,-545,0,-421,-79,'-79 661c-54 -43 -111 -82 -171 -116c-60 34 -117 73 -171 116l10 18c55 -26 109 -54 161 -83c52 29 106 57 161 83'], + 0x338: [650,150,0,-403,-97,'-97 650l-260 -800h-46l260 800h46'], + 0x391: [674,0,849,80,769,'769 0h-254v19c35 0 44 2 55 9c9 4 15 15 15 24c0 15 -7 40 -19 68l-41 95h-262l-46 -116c-5 -13 -7 -27 -7 -39c0 -28 19 -41 67 -41v-19h-197v19c47 3 60 18 123 164l208 491h20l248 -568c36 -74 46 -84 90 -87v-19zM511 257l-116 275l-116 -275h232'], + 0x392: [662,0,736,80,656,'656 180c0 -48 -20 -93 -57 -124c-36 -35 -107 -56 -185 -56h-334v19c83 3 96 17 96 90v444c0 73 -12 85 -96 90v19h280c173 0 262 -58 262 -170c0 -41 -15 -78 -40 -100c-24 -21 -45 -31 -97 -44c64 -16 92 -28 122 -55c31 -29 49 -69 49 -113zM519 488 c0 88 -61 137 -175 137h-44c-15 0 -22 -10 -22 -30v-230h95c94 0 146 45 146 123zM541 179c0 63 -27 103 -84 126c-36 16 -82 20 -179 20v-247c0 -32 14 -41 63 -41c66 0 107 9 139 26c39 23 61 63 61 116'], + 0x393: [662,0,693,80,613,'613 519h-24c-17 90 -39 105 -152 105h-136c-28 0 -32 -6 -32 -34v-481c0 -72 14 -86 91 -90v-19h-280v19c76 5 87 18 87 101v433c0 70 -13 83 -87 90v19h531'], + 0x394: [674,0,760,80,680,'680 0h-600l286 674h20zM553 42l-203 490l-201 -490h404'], + 0x395: [662,0,744,80,664,'664 169l-44 -169h-540v19c74 5 87 19 87 90v444c0 71 -13 83 -87 90v19h531l2 -143h-24c-17 90 -39 105 -152 105h-135c-27 0 -33 -6 -33 -34v-222h154c80 0 97 13 110 95h23v-232h-23c-13 83 -28 96 -110 96h-154v-247c0 -19 2 -28 8 -32c9 -7 49 -11 96 -11h28 c142 0 186 24 236 132h27'], + 0x396: [662,0,747,80,667,'667 175l-23 -175h-564v16l436 608h-220c-66 0 -111 -14 -134 -43c-17 -21 -25 -41 -34 -90h-26l20 171h525v-16l-430 -608h256c57 0 101 14 124 39c20 22 30 43 48 98h22'], + 0x397: [662,0,843,80,763,'763 0h-278v19c78 5 88 17 88 101v195h-303v-206c0 -71 13 -83 88 -90v-19h-278v19c78 5 88 17 88 101v433c0 72 -11 82 -88 90v19h278v-19c-77 -8 -88 -18 -88 -90v-194h303v194c0 72 -11 82 -88 90v19h278v-19c-77 -8 -88 -18 -88 -90v-444c0 -71 12 -83 88 -90v-19'], + 0x398: [675,14,814,80,734,'734 327c0 -201 -136 -341 -333 -341c-88 0 -177 40 -235 102c-54 58 -86 149 -86 243c0 201 136 344 327 344c95 0 180 -35 243 -104c55 -60 84 -146 84 -244zM620 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-56 0 -104 -22 -143 -65c-43 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 97 18 133 54c23 22 40 47 49 72c20 52 33 121 33 180zM525 213h-19c0 56 -19 78 -79 78h-41c-58 0 -78 -22 -78 -78h-18v236h18c2 -58 19 -78 80 -78h40c58 0 78 22 78 78h19v-236'], + 0x399: [662,0,457,80,377,'377 0h-297v19c84 3 98 15 98 90v444c0 73 -13 85 -98 90v19h297v-19c-84 -4 -98 -18 -98 -90v-444c0 -73 16 -87 98 -90v-19'], + 0x39A: [662,0,849,80,769,'769 0h-305v19c12 1 23 1 27 1c29 1 43 8 43 22c0 24 -54 95 -130 170l-106 105l-27 -22v-186c0 -73 13 -85 90 -90v-19h-281v19c79 5 90 18 90 101v433c0 71 -12 83 -90 90v19h284v-19c-81 -7 -93 -18 -93 -90v-205l178 161c55 51 78 81 78 103c0 20 -12 28 -42 30 c-4 0 -14 0 -26 1v19h262v-19c-69 -5 -84 -13 -152 -78l-190 -188l232 -250c91 -97 106 -107 158 -108v-19'], + 0x39B: [674,0,849,80,769,'769 0h-254v19c35 0 44 2 55 9c9 4 15 15 15 24c0 15 -7 40 -19 68l-171 412l-178 -433c-5 -13 -7 -27 -7 -39c0 -28 19 -41 67 -41v-19h-197v19c47 3 60 18 123 164l208 491h20l248 -568c36 -74 46 -84 90 -87v-19'], + 0x39C: [662,0,1011,80,931,'931 0h-280v19c79 5 91 18 91 101v453l-256 -573h-14l-251 550v-403c0 -101 17 -124 94 -128v-19h-235v19c84 7 97 25 97 128v406c0 72 -13 85 -95 90v19h198l231 -505l221 505h199v-19c-74 -7 -88 -19 -88 -90v-444c0 -71 15 -85 88 -90v-19'], + 0x39D: [662,11,854,80,774,'774 643c-37 -4 -51 -8 -65 -18c-19 -13 -29 -50 -29 -110v-526h-17l-442 550v-392c0 -101 17 -124 94 -128v-19h-235v19c84 7 97 25 97 128v441c-40 47 -53 55 -97 55v19h171l385 -484v337c0 61 -9 98 -29 111c-15 9 -29 14 -67 17v19h234v-19'], + 0x39E: [662,0,726,80,646,'625 501h-19c0 54 -33 75 -100 75h-290c-62 0 -97 -25 -97 -75h-19v161h525v-161zM524 220h-19c0 61 -24 72 -90 72h-105c-67 0 -91 -13 -91 -72h-18v219h18c0 -64 31 -71 91 -71h105c60 0 90 7 90 71h19v-219zM646 0h-566v185h18v-11c0 -63 55 -87 107 -87h321 c68 0 100 16 100 87v11h20v-185'], + 0x39F: [675,14,814,80,734,'734 327c0 -201 -136 -341 -333 -341c-88 0 -177 40 -235 102c-54 58 -86 149 -86 243c0 201 136 344 327 344c95 0 180 -35 243 -104c55 -60 84 -146 84 -244zM620 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-56 0 -104 -22 -143 -65c-43 -47 -70 -144 -70 -246 c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 97 18 133 54c23 22 40 47 49 72c20 52 33 121 33 180'], + 0x3A0: [662,0,843,80,763,'763 0h-278v19c78 5 88 17 88 101v433c0 50 -4 65 -27 65h-250c-23 0 -26 -15 -26 -65v-444c0 -71 13 -83 88 -90v-19h-278v19c78 5 88 17 88 101v433c0 72 -11 82 -88 90v19h683v-19c-77 -8 -88 -18 -88 -90v-444c0 -71 12 -83 88 -90v-19'], + 0x3A1: [662,0,686,80,606,'606 481c0 -66 -37 -127 -97 -159c-42 -24 -96 -34 -174 -34c-26 0 -43 1 -69 3v-182c0 -73 15 -87 93 -90v-19h-279v19c76 7 84 17 84 101v433c0 72 -10 82 -84 90v19h264c94 0 181 -28 221 -72c27 -29 41 -67 41 -109zM497 475c0 103 -62 150 -198 150 c-26 0 -33 -7 -33 -34v-260c23 -2 37 -3 57 -3c115 0 174 50 174 147'], + 0x3A3: [662,0,753,80,673,'673 199l-54 -199h-539v19c13 4 22 13 30 23l238 282l-242 298c-9 11 -16 18 -26 21v19h531l3 -143h-26c-12 84 -40 105 -142 105h-211l209 -257l-234 -271h323c64 0 80 15 111 103h29'], + 0x3A4: [662,0,736,80,656,'656 492h-24c-24 110 -45 128 -159 128h-55v-511c0 -73 15 -86 97 -90v-19h-292v19c83 5 94 17 94 101v500h-54c-112 0 -134 -18 -159 -128h-24l6 170h563'], + 0x3A5: [662,0,824,80,744,'744 496h-28c0 47 -41 72 -89 72c-138 0 -164 -158 -164 -318v-141c0 -76 14 -88 103 -90v-19h-306v19c91 4 101 14 101 101v130c0 160 -26 318 -164 318c-48 0 -89 -25 -89 -72h-28c0 84 31 166 127 166c173 0 198 -212 198 -412h14c0 200 25 412 198 412 c96 0 127 -82 127 -166'], + 0x3A6: [662,0,722,80,642,'642 331c0 -111 -104 -177 -230 -188v-34c0 -73 16 -87 98 -90v-19h-297v19c84 3 97 15 97 90v34c-126 11 -230 77 -230 188s104 177 230 188v34c0 73 -12 85 -97 90v19h297v-19c-85 -4 -98 -18 -98 -90v-34c126 -11 230 -77 230 -188zM527 331c0 78 -33 142 -115 158 v-316c82 16 115 80 115 158zM310 173v316c-82 -16 -115 -80 -115 -158s33 -142 115 -158'], + 0x3A7: [662,0,854,80,774,'774 0h-297v19c12 1 23 2 27 2c34 1 50 11 50 29c0 16 -19 49 -51 98l-95 140l-119 -148c-37 -46 -52 -71 -52 -86c0 -23 18 -31 76 -35v-19h-233v19c51 4 56 8 145 114l157 192l-109 160c-97 140 -116 155 -181 158v19h302v-19l-29 -1c-32 -1 -47 -9 -47 -29 c0 -22 24 -65 85 -150l42 -59l113 138c28 36 40 53 40 69c0 23 -16 30 -70 32v19h237v-19c-63 -4 -83 -17 -149 -94l-145 -182l192 -274c42 -57 58 -67 111 -74v-19'], + 0x3A8: [662,0,799,80,719,'719 556c-50 -16 -59 -60 -59 -124c0 -196 -76 -251 -210 -260v-63c0 -73 17 -87 99 -90v-19h-297v19c84 3 97 15 97 90v63c-136 9 -210 64 -210 260c0 64 -9 108 -59 124v28c109 -25 171 -84 171 -216c0 -86 36 -143 98 -163v348c0 73 -12 85 -97 90v19h297v-19 c-84 -4 -99 -18 -99 -90v-348c62 19 98 77 98 163c0 132 62 191 171 216v-28'], + 0x3A9: [676,0,853,80,773,'773 153l-6 -153h-272l13 147c84 27 121 104 121 233c0 170 -91 261 -201 261c-119 0 -205 -103 -205 -254c0 -107 26 -204 125 -240l10 -147h-272l-6 153h24c3 -47 25 -72 80 -72h131l-1 43c-102 20 -205 121 -205 265c0 158 131 287 321 287c184 0 314 -117 314 -283 c0 -135 -76 -233 -201 -269l-5 -43h134c61 0 76 36 76 72h25'], + 0x3B1: [460,17,635,80,554,'383 235c-29 103 -63 197 -127 197c-61 0 -86 -136 -86 -231c0 -65 24 -190 95 -190c53 0 89 97 118 224zM554 105c4 -51 -15 -122 -70 -122c-45 0 -57 50 -64 98c-43 -75 -102 -98 -150 -98c-133 0 -190 104 -190 224c0 150 80 253 176 253c81 0 115 -81 140 -166 l29 150h86l-48 -241c-5 -26 -11 -48 -19 -69c16 -52 25 -89 46 -89c28 0 39 19 45 60h19'], + 0x3B2: [673,217,563,80,483,'483 186c0 -126 -87 -202 -205 -202c-49 0 -82 18 -114 42v-26c0 -100 15 -217 15 -217h-99v718c0 95 62 172 172 172c93 0 182 -60 182 -155c0 -55 -24 -97 -80 -131c84 -51 129 -97 129 -201zM393 189c0 77 -30 147 -81 174c-16 -9 -28 -14 -44 -14c-14 0 -44 5 -44 28 c0 17 21 29 45 29c15 0 27 -3 45 -8c22 30 33 81 33 118c0 57 -31 129 -95 129c-67 0 -88 -66 -88 -137v-411c34 -44 70 -85 114 -85c69 0 115 84 115 177'], + 0x3B3: [461,234,673,80,593,'593 444c-120 -162 -190 -295 -231 -398c15 -96 17 -179 17 -186c0 -83 -36 -94 -55 -94c-57 0 -87 25 -87 77c0 48 13 141 80 293l-15 44c-34 89 -58 201 -147 201c-21 0 -55 -20 -55 -62h-20c0 64 28 142 100 142c69 0 107 -144 144 -249c4 -12 8 -24 11 -36 c36 76 85 165 151 268h107zM352 -154c0 6 0 69 -9 148c-25 -77 -32 -133 -32 -168c0 -31 7 -32 15 -32c14 0 26 15 26 52'], + 0x3B4: [671,16,602,80,522,'522 200c0 -137 -95 -216 -226 -216c-121 0 -216 79 -216 212c0 121 109 199 206 199l-88 65c-35 26 -47 67 -47 103c0 58 61 108 143 108c100 0 164 -41 164 -97c0 -25 -24 -39 -44 -39c-28 0 -49 22 -63 46c-16 27 -46 55 -97 55c-45 0 -55 -30 -55 -49 c0 -22 39 -51 52 -61l117 -91c87 -68 154 -144 154 -235zM432 190c0 79 -93 167 -110 178c-92 0 -152 -82 -152 -185c0 -77 59 -171 131 -171c92 0 131 80 131 178'], + 0x3B5: [460,16,539,80,459,'459 94c0 -41 -56 -110 -214 -110c-72 0 -165 43 -165 125c0 68 38 97 102 123c-56 30 -86 75 -86 118c0 56 50 110 175 110c64 0 157 -28 157 -83c0 -16 -19 -37 -40 -39c-27 0 -44 19 -60 40c-18 25 -33 54 -64 54c-64 0 -79 -51 -79 -102c0 -29 20 -73 54 -90 c24 7 43 18 67 18c23 0 48 -12 48 -31c0 -18 -27 -30 -47 -30c-28 0 -49 11 -69 18c-23 -12 -68 -58 -68 -105c0 -64 45 -98 93 -98c44 0 77 30 92 48c20 23 28 76 67 76c30 0 37 -23 37 -42'], + 0x3B6: [667,210,546,80,466,'466 -54c0 -81 -55 -156 -159 -156c-31 0 -66 5 -66 41c0 21 16 38 33 38c19 2 40 -12 64 -12c49 0 100 35 100 67c0 42 -32 63 -62 76c-25 11 -96 -3 -150 -3c-100 0 -146 79 -146 215c0 109 49 201 133 311c-57 17 -82 47 -82 77c0 29 30 67 59 67c8 0 15 -6 20 -13 c14 -19 -36 -40 -36 -62c0 -33 27 -35 55 -46c34 38 101 115 142 115c19 0 30 -17 30 -37c0 -33 -91 -100 -156 -107c-65 -86 -136 -177 -136 -305c0 -174 193 -113 217 -113c92 0 140 -85 140 -153'], + 0x3B7: [460,217,599,80,519,'519 -217h-99s15 117 15 217v309c0 89 -27 122 -71 122c-50 0 -86 -76 -97 -125v-306h-84v314c0 57 -11 86 -38 86c-21 0 -45 -20 -45 -62h-20c0 64 28 122 100 122c47 0 73 -34 81 -84c28 43 56 84 111 84c64 0 147 -27 147 -154v-523'], + 0x3B8: [673,16,552,79,472,'472 331c3 -166 -46 -347 -196 -347s-193 211 -196 343c-3 166 46 347 196 346c150 0 193 -210 196 -342zM380 359c-1 125 -13 286 -104 287c-95 0 -103 -149 -104 -287h208zM380 322v9h-208c0 -128 5 -319 104 -319c100 0 104 166 104 310'], + 0x3B9: [460,17,463,80,383,'383 102c0 -63 -36 -119 -99 -119c-57 0 -94 41 -94 117v242c0 45 -5 64 -29 64c-29 0 -61 -24 -61 -65h-20c0 63 36 119 99 119c57 0 94 -41 93 -118v-242c0 -39 6 -63 30 -63c29 0 61 24 61 65h20'], + 0x3BA: [460,15,691,80,611,'611 36c0 -29 -26 -51 -86 -51s-124 30 -149 77l-84 157l-25 -23v-196h-84v314c0 71 -11 86 -38 86c-21 0 -45 -20 -45 -62h-20c0 64 28 122 100 122c47 0 87 -42 87 -84v-142l203 186c28 26 40 40 73 40c31 0 56 -22 56 -51c0 -25 -23 -43 -48 -43c-24 0 -41 13 -52 13 c-20 0 -32 0 -57 -23l-85 -79l70 -134c17 -35 56 -103 74 -103c27 0 28 39 70 39c19 0 40 -18 40 -43'], + 0x3BB: [673,18,666,80,586,'586 104c0 -64 -28 -122 -100 -122c-71 0 -96 77 -121 186l-27 116l-162 -284h-96l230 406l-17 75c-23 102 -53 132 -116 132c-33 0 -57 -20 -57 -62h-20c0 64 28 122 100 122c71 0 96 -77 121 -186l72 -313c23 -102 53 -132 116 -132c33 0 57 20 57 62h20'], + 0x3BC: [444,218,620,80,540,'540 107c0 -64 -28 -122 -100 -122c-47 0 -73 34 -81 84c-28 -43 -54 -84 -111 -84c-23 0 -70 7 -83 33v-17c0 -101 15 -219 15 -219h-100v662h85v-308c0 -89 47 -122 91 -122c56 0 86 76 97 125v305h84v-313c0 -57 11 -86 38 -86c21 0 45 20 45 62h20'], + 0x3BD: [460,16,604,80,524,'524 398c0 -27 -6 -78 -19 -131c-27 -107 -107 -207 -170 -283h-41c4 89 -34 416 -149 416c-21 0 -45 -20 -45 -62h-20c0 64 37 122 100 122c102 0 170 -197 175 -395c52 61 114 162 114 206c0 12 -1 23 -3 33c-7 30 -37 70 -37 86c0 38 5 70 48 70c31 0 47 -29 47 -62'], + 0x3BE: [667,210,545,80,465,'465 -54c0 -81 -55 -156 -159 -156c-31 0 -66 5 -66 41c0 21 16 38 33 38c19 2 40 -12 64 -12c49 0 100 35 100 67c0 42 -32 63 -62 76c-25 11 -96 -3 -150 -3c-100 0 -145 74 -145 173c0 68 70 152 119 185c-12 6 -35 38 -35 69c0 36 18 67 48 99c-57 18 -82 47 -82 77 c0 29 30 67 59 67c8 0 15 -6 20 -13c14 -19 -36 -40 -36 -62c0 -33 27 -34 55 -45c34 38 101 114 142 114c19 0 30 -17 30 -37c0 -33 -91 -100 -156 -107c-24 -28 -51 -60 -51 -96c0 -24 20 -46 31 -52c51 25 82 26 105 26c28 0 52 -14 54 -34c1 -13 -17 -38 -53 -38 c-29 0 -62 3 -103 16c-61 -40 -117 -108 -117 -169c0 -134 191 -71 215 -71c92 0 140 -85 140 -153'], + 0x3BF: [460,10,600,80,520,'520 234c0 -139 -96 -244 -222 -244s-218 101 -218 236c0 137 90 234 220 234c128 0 220 -95 220 -226zM429 199c0 137 -59 233 -142 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 43 -193c22 -40 58 -64 98 -64c75 0 119 68 119 181'], + 0x3C0: [471,16,708,80,628,'628 382c-26 -7 -62 -12 -104 -16v-149c0 -100 15 -217 15 -217h-99v362h-27c-44 0 -91 3 -134 7v-160c0 -113 2 -225 -94 -225c-72 0 -79 59 -79 123h20c0 -42 34 -62 55 -62c59 0 70 86 70 160v166c-49 5 -88 10 -102 10c-21 0 -49 -15 -49 -57h-20 c0 64 32 126 104 126c47 0 146 -14 248 -14c77 0 147 16 196 35v-89'], + 0x3C1: [460,218,544,80,464,'464 236c0 -135 -71 -252 -205 -252c-33 0 -71 18 -96 38v-22c0 -98 14 -218 14 -218h-97l1 375c0 93 0 126 10 158c31 87 100 145 180 145c116 0 193 -107 193 -224zM376 219c0 90 -35 213 -117 213c-105 0 -96 -136 -96 -268v-81c26 -50 62 -70 97 -70 c92 0 116 94 116 206'], + 0x3C2: [460,210,545,80,465,'465 -54c0 -81 -55 -156 -159 -156c-31 0 -66 5 -66 41c0 21 16 38 33 38c19 2 40 -12 64 -12c49 0 100 35 100 67c0 42 -32 63 -62 76c-25 11 -96 -3 -150 -3c-100 0 -145 74 -145 173c0 110 57 290 308 290c35 0 57 -29 57 -55c0 -22 -15 -47 -56 -47 c-39 0 -80 27 -99 27c-112 0 -180 -82 -180 -215c0 -134 191 -71 215 -71c92 0 140 -85 140 -153'], + 0x3C3: [471,16,597,80,517,'517 385c-43 -7 -71 -9 -125 -10c55 -35 88 -93 88 -176c0 -120 -82 -215 -200 -215s-200 95 -200 215c0 157 83 237 221 237c76 0 167 16 216 35v-86zM391 216c0 90 -29 136 -54 156h-55c-99 0 -113 -74 -113 -156c0 -92 28 -204 111 -204c94 0 111 112 111 204'], + 0x3C4: [471,16,628,80,548,'548 372c-35 -5 -106 -8 -172 -10v-147c0 -72 -4 -170 60 -170c35 0 55 20 55 62h20c0 -64 -17 -123 -89 -123c-112 0 -130 112 -130 225v155c-63 4 -121 17 -143 17c-21 0 -49 -15 -49 -57h-20c0 64 32 126 104 126c47 0 100 -14 168 -14c71 0 147 16 196 35v-99'], + 0x3C5: [460,16,587,80,507,'507 398c0 -27 -9 -78 -9 -131c0 -129 -8 -283 -171 -283c-116 0 -184 95 -184 205c0 71 28 146 28 192c0 12 -9 19 -25 19c-21 0 -46 -12 -46 -62h-20c0 75 38 122 119 122c24 0 59 -22 59 -64c0 -46 -25 -146 -25 -207c0 -77 16 -177 94 -177c109 0 135 107 135 259 c0 24 -9 42 -19 58c-14 22 -31 47 -31 71c0 23 5 60 48 60c31 0 47 -29 47 -62'], + 0x3C6: [460,218,682,80,602,'511 217c0 75 -18 215 -95 215c-28 0 -35 -54 -35 -138v-281c80 25 130 119 130 204zM602 224c0 -119 -69 -227 -221 -243v-199h-84v199c-178 20 -217 164 -217 239c0 112 77 209 165 239l12 -24c-60 -39 -87 -124 -87 -207c0 -104 41 -194 127 -216v279 c0 98 41 169 119 169c116 0 186 -138 186 -236'], + 0x3C7: [460,236,666,80,586,'586 -114c0 -64 -28 -122 -100 -122c-71 0 -96 77 -121 186l-24 103l-163 -270h-98l234 390l-21 90c-23 102 -53 137 -116 137c-33 0 -57 -20 -57 -62h-20c0 64 28 122 100 122c71 0 96 -82 121 -191l14 -60l141 235h101l-214 -355l30 -133c23 -102 53 -132 116 -132 c33 0 57 20 57 62h20'], + 0x3C8: [460,218,780,80,700,'700 432c-50 -16 -59 -70 -59 -134c0 -204 -33 -298 -209 -311v-205h-84v205c-176 13 -209 107 -209 311c0 64 -9 118 -59 134v28c109 -25 156 -106 156 -266c0 -90 44 -156 112 -175v425h84v-425c68 19 112 85 112 175c0 160 47 241 156 266v-28'], + 0x3C9: [463,16,767,80,687,'687 217c0 -67 -30 -233 -200 -233c-30 0 -79 9 -104 65c-24 -55 -73 -65 -103 -65c-170 0 -200 166 -200 233c0 126 67 216 155 246l12 -24c-60 -39 -77 -119 -77 -214c0 -120 48 -213 110 -213c28 0 89 29 89 96c-10 18 -29 62 -29 104c0 45 7 83 43 83 c29 0 43 -37 43 -82s-16 -85 -28 -105c0 -68 61 -96 89 -96c62 0 110 93 110 213c0 95 -17 175 -77 214l12 24c88 -30 155 -120 155 -246'], + 0x3D1: [673,16,727,80,647,'647 295h-38c0 29 -14 70 -57 88c1 -18 2 -36 2 -52c3 -166 -36 -347 -186 -347s-186 123 -186 303c0 51 -10 112 -37 112c-21 0 -45 -20 -45 -62h-20c0 64 28 122 100 122c47 0 87 -78 87 -124c0 -178 6 -323 101 -323c90 0 94 166 94 310v73c-128 13 -187 95 -187 171 c0 56 33 107 101 107c124 0 162 -135 173 -257c55 -17 98 -61 98 -121zM463 426c0 109 -10 218 -85 219c-37 0 -75 -20 -75 -78c0 -64 45 -131 160 -141'], + 0x3D5: [657,217,702,80,622,'622 223c0 -127 -90 -221 -230 -237v-203h-84v203c-141 14 -228 102 -228 237c0 121 87 220 228 237v197h84v-197c140 -16 230 -109 230 -237zM530 223c0 112 -52 187 -138 206v-412c86 17 138 88 138 206zM308 17v412c-87 -17 -136 -93 -136 -206 c0 -118 49 -190 136 -206'], + 0x3D6: [471,21,898,80,818,'818 372c-17 -2 -50 -4 -95 -6c26 -40 42 -91 42 -152c0 -67 -30 -235 -200 -235c-30 0 -79 14 -104 70c-24 -55 -73 -70 -103 -70c-170 0 -200 168 -200 235c0 66 18 120 48 161c-34 4 -47 6 -57 6c-21 0 -49 -15 -49 -57h-20c0 64 32 126 104 126c47 0 142 -14 298 -14 c151 0 287 16 336 35v-99zM675 222c0 55 -5 104 -22 142l-190 -2c-71 0 -137 4 -190 8c-19 -39 -25 -90 -25 -148c0 -120 48 -215 110 -215c28 0 89 34 89 101c-10 18 -29 62 -29 104c0 45 7 83 43 83c29 0 43 -37 43 -82s-16 -85 -28 -105c0 -68 61 -101 89 -101 c62 0 110 95 110 215'], + 0x3F0: [460,16,676,80,596,'596 126c0 -64 -28 -142 -100 -142c-91 0 -108 118 -106 223c-14 -10 -29 -20 -45 -30c-25 -16 -48 -29 -67 -42c-4 -31 -8 -53 -9 -57c-12 -82 -36 -94 -55 -94c-57 0 -87 25 -87 77c0 47 54 103 135 160c2 88 -18 179 -107 179c-21 0 -55 -40 -55 -82h-20 c0 64 28 142 100 142c91 0 108 -118 106 -223l47 30c24 16 46 28 65 40c4 32 8 55 9 59c12 82 36 94 55 94c57 0 87 -25 87 -77c0 -48 -54 -102 -135 -160c-2 -88 18 -179 107 -179c21 0 55 40 55 82h20zM475 400c0 27 -8 32 -15 32c-14 0 -19 -21 -26 -52l-11 -56 c33 23 52 45 52 76zM253 119c-33 -23 -52 -44 -52 -75c0 -27 8 -32 15 -32c14 0 19 21 26 52'], + 0x3F1: [460,217,552,80,472,'472 237c0 -138 -73 -253 -210 -253c-33 0 -73 18 -99 38c0 -99 14 -107 59 -107c57 0 102 21 144 21c89 0 104 -84 104 -153h-20c0 42 -21 74 -49 74c-42 0 -102 -22 -159 -22c-77 0 -162 204 -162 326c0 59 0 118 11 151c31 89 102 148 184 148 c118 0 197 -103 197 -223zM382 220c0 92 -36 212 -120 212c-107 0 -98 -129 -98 -264v-83c27 -51 64 -72 99 -72c94 0 119 92 119 207'], + 0x3F4: [675,14,814,80,734,'734 327c0 -201 -136 -341 -333 -341c-88 0 -177 40 -235 102c-54 58 -86 149 -86 243c0 201 136 344 327 344c95 0 180 -35 243 -104c55 -60 84 -146 84 -244zM619 371c-7 99 -37 176 -84 219c-36 32 -82 50 -128 50c-56 0 -104 -22 -143 -65c-37 -40 -62 -118 -68 -204 h423zM618 291h-423c7 -96 38 -179 84 -220c35 -31 80 -49 126 -49c53 0 97 18 133 54c23 22 40 47 49 72c16 41 27 94 31 143'], + 0x3F5: [460,16,474,80,394,'394 17c-30 -24 -68 -33 -104 -33c-137 0 -210 114 -210 238c0 134 73 238 210 238c36 0 74 -9 104 -33l-20 -37c-26 23 -55 41 -85 41c-87 0 -115 -79 -119 -184h161v-28h-161c0 -117 26 -206 119 -206c30 0 59 18 85 41'], + 0x2002: [0,0,500,0,0,''], + 0x2003: [0,0,1000,0,0,''], + 0x2004: [0,0,333,0,0,''], + 0x2005: [0,0,250,0,0,''], + 0x2006: [0,0,167,0,0,''], + 0x2009: [0,0,200,0,0,''], + 0x200A: [0,0,100,0,0,''], + 0x2013: [250,-201,500,0,500,'500 201h-500v49h500v-49'], + 0x2014: [250,-201,1000,0,1000,'1000 201h-1000v49h1000v-49'], + 0x2016: [650,150,348,80,268,'124 -150h-44v800h44v-800zM268 -150h-44v800h44v-800'], + 0x2018: [676,-433,333,115,254,'254 490c0 -34 -24 -57 -59 -57c-45 0 -80 38 -80 89c0 60 45 121 112 154l9 -19c-54 -37 -82 -73 -82 -106c0 -8 6 -14 14 -14c0 0 1 0 8 2c6 1 13 2 19 2c36 0 59 -20 59 -51'], + 0x2019: [676,-433,333,79,218,'218 587c0 -60 -45 -121 -112 -154l-9 19c54 37 82 73 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x201C: [676,-433,444,43,414,'182 490c0 -34 -24 -57 -59 -57c-45 0 -80 38 -80 89c0 60 45 121 112 154l9 -19c-54 -37 -82 -73 -82 -106c0 -8 6 -14 14 -14c0 0 1 0 8 2c6 1 13 2 19 2c36 0 59 -19 59 -51zM414 490c0 -34 -24 -57 -59 -57c-45 0 -80 38 -80 89c0 60 45 121 112 154l9 -19 c-54 -37 -82 -73 -82 -106c0 -8 6 -14 14 -14c0 0 1 0 8 2c6 1 13 2 19 2c36 0 59 -19 59 -51'], + 0x201D: [676,-433,444,30,401,'169 587c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89zM401 587c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14 c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x2020: [676,149,500,59,443,'443 447c0 -25 -16 -43 -38 -43c-13 0 -32 5 -52 12c-42 16 -57 19 -92 22c0 -98 13 -155 42 -185c-27 -70 -40 -160 -40 -279v-123h-22v123c0 91 -18 211 -43 279c30 31 43 86 42 185c-34 -3 -51 -7 -91 -22c-24 -9 -34 -12 -46 -12c-28 0 -44 15 -44 43 c0 26 17 44 40 44c11 0 29 -5 49 -13c41 -17 58 -21 92 -22c1 53 -4 77 -24 128c-7 19 -12 36 -12 46c0 24 23 46 47 46s47 -22 47 -46c0 -10 -5 -27 -13 -46c-19 -50 -24 -74 -24 -128c36 1 52 5 93 22c20 8 38 13 50 13c22 0 39 -19 39 -44'], + 0x2021: [676,153,500,58,442,'442 447c0 -25 -16 -43 -38 -43c-12 0 -32 5 -52 12c-41 16 -57 19 -91 22c-1 -95 10 -141 40 -178c-31 -35 -41 -77 -41 -175c34 3 49 6 91 22c19 7 39 12 51 12c23 0 39 -17 39 -44c0 -25 -17 -43 -40 -43c-11 0 -29 5 -48 13c-42 17 -57 21 -93 22 c0 -53 4 -78 24 -128c7 -19 12 -36 12 -46c0 -24 -22 -46 -47 -46c-24 0 -46 22 -46 46c0 10 5 27 12 46c20 50 24 75 24 128c-34 -1 -52 -5 -93 -22c-19 -8 -37 -13 -48 -13c-23 0 -40 18 -40 44s16 43 39 43c11 0 31 -5 51 -12c42 -16 57 -19 91 -22c1 98 -11 148 -40 175 c30 39 42 91 41 178c-35 -3 -51 -7 -91 -22c-24 -9 -34 -12 -46 -12c-28 0 -44 15 -44 43c0 26 17 44 40 44c11 0 29 -5 48 -13c41 -17 59 -21 93 -22c0 53 -4 77 -24 128c-7 19 -12 36 -12 46c0 24 22 46 46 46c25 0 47 -22 47 -46c0 -10 -5 -27 -12 -46 c-20 -50 -24 -74 -24 -128c36 1 51 5 93 22c19 8 37 13 49 13c22 0 39 -19 39 -44'], + 0x2026: [112,0,869,80,789,'192 56c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM491 56c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM789 56c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2032: [780,-450,321,60,261,'261 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28c28 0 50 -22 50 -50'], + 0x2033: [780,-450,521,60,461,'261 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28c28 0 50 -22 50 -50zM461 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28c28 0 50 -22 50 -50'], + 0x2034: [780,-450,721,60,661,'261 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28c28 0 50 -22 50 -50zM461 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28c28 0 50 -22 50 -50zM661 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28 c28 0 50 -22 50 -50'], + 0x2035: [780,-450,321,60,261,'261 450h-22l-170 252c-6 8 -9 18 -9 28c0 28 22 50 50 50c22 0 40 -14 45 -28'], + 0x2044: [650,150,466,80,386,'386 650l-260 -800h-46l260 800h46'], + 0x2057: [780,-450,921,60,861,'261 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28c28 0 50 -22 50 -50zM461 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28c28 0 50 -22 50 -50zM661 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28 c28 0 50 -22 50 -50zM861 730c0 -10 -3 -20 -8 -28l-171 -252h-22l106 302c5 14 23 28 45 28c28 0 50 -22 50 -50'], + 0x20D7: [710,-534,0,-443,-57,'-57 622l-88 -88h-57l66 66h-307v44h307l-66 66h57'], + 0x210F: [683,9,500,19,478,'478 105c-61 -87 -95 -114 -146 -114c-27 0 -44 16 -44 42c0 12 7 43 20 92l55 207c4 16 7 29 7 33c0 13 -13 25 -28 25c-35 0 -103 -62 -155 -141c-40 -61 -53 -95 -93 -249h-75l109 414l-108 -68l10 47l111 70l13 49c3 14 6 26 10 37c9 29 14 54 14 68 c0 27 -37 24 -67 24v15c60 7 99 14 157 27l5 -5l-43 -159l121 75l-10 -47l-124 -78l-64 -239c93 146 164 211 229 211c39 0 66 -27 66 -67c0 -25 -18 -99 -48 -193c-17 -52 -33 -114 -33 -125c0 -10 7 -18 16 -18c16 0 28 11 82 79'], + 0x2111: [659,22,634,79,554,'547 599c0 -17 -9 -34 -30 -43l-106 -48h-15c-108 57 -150 83 -187 83c-53 0 -100 -38 -106 -89c-4 -59 43 -111 113 -119l-2 -15c-79 5 -137 62 -134 135c4 90 88 123 186 148l5 8h17c33 -23 99 -65 155 -92c8 -3 15 -4 23 -4c20 0 34 9 43 26c-6 7 -11 16 -6 26 c5 9 10 11 24 11c13 0 20 -15 20 -27zM554 145c-34 -75 -72 -120 -116 -139c-50 -10 -102 -15 -164 -21c-3 -4 -8 -6 -15 -7c-16 19 -27 41 -38 65c-18 26 -39 39 -64 39c-19 0 -35 -10 -48 -33c-5 -10 -13 -13 -22 -9c9 46 33 70 86 70c14 0 20 0 75 -3c8 3 14 3 20 4 c13 -22 25 -44 40 -67c14 -16 39 -24 74 -24c49 0 82 21 97 64c4 19 4 41 -5 61l-85 150c-7 15 -23 47 -25 59c0 55 79 144 135 145c10 0 20 -3 28 -9s12 -13 12 -22c0 -7 -1 -14 -9 -20c-6 -3 -11 -5 -17 -5l-12 16c-3 8 -8 10 -16 10c-21 -1 -34 -10 -44 -29 s-3 -51 -3 -63c0 -10 25 -51 41 -83c30 -57 42 -75 75 -149'], + 0x2113: [676,14,433,40,393,'393 84c0 -56 -50 -98 -107 -98c-94 0 -150 72 -178 169c-20 -8 -41 -14 -62 -19l-6 28c21 4 41 11 61 18c-11 47 -16 98 -16 149c0 169 54 345 201 345c58 0 93 -61 93 -124c0 -153 -81 -290 -206 -365c8 -95 34 -173 113 -173c42 0 79 30 79 70h28zM351 552 c0 48 -22 96 -65 96c-117 0 -117 -171 -117 -317c0 -37 0 -75 2 -112c110 72 180 195 180 333'], + 0x2118: [538,186,710,80,630,'630 316c0 -189 -59 -285 -169 -285c-81 0 -135 67 -135 121c0 27 16 66 56 66c28 0 47 -21 47 -49c0 -24 -3 -30 -12 -46c-13 -22 -17 -26 -9 -40c10 -19 21 -22 39 -22c71 0 93 117 93 255c0 101 -20 176 -74 176c-96 0 -194 -125 -261 -258c17 -30 38 -58 55 -85 c35 -57 75 -112 75 -205c0 -85 -61 -130 -136 -130c-80 0 -106 83 -106 161c0 47 16 117 45 192c-32 49 -58 102 -58 169c0 88 90 174 150 202l13 -14c-37 -35 -77 -98 -77 -158c0 -35 8 -66 20 -94c69 133 171 251 280 251c100 0 164 -60 164 -207zM247 -61 c-1 47 -23 104 -59 156l-27 38c-23 -62 -37 -119 -37 -158c0 -48 22 -121 65 -121c50 0 58 48 58 85'], + 0x211C: [656,21,828,80,748,'748 73l-72 -94h-18c-35 38 -61 90 -79 157c-11 42 -20 102 -29 180c-1 26 -7 33 -27 34l-75 -38c0 -223 -67 -333 -182 -333c-38 0 -71 9 -79 11c-30 6 -53 0 -71 -7l-15 10c2 11 6 24 6 32c0 19 -1 34 -14 53l9 13c21 -2 28 -3 40 -3c18 0 23 5 41 15l13 -13 c-5 -16 -7 -24 -7 -36c0 -18 3 -29 14 -40c5 -5 22 -14 55 -14c15 0 38 7 63 28c45 37 60 94 60 262c0 119 -33 290 -158 295c-65 0 -115 -38 -118 -121c-2 -89 43 -159 134 -166l-2 -17c-97 0 -157 82 -157 187c4 107 76 188 172 188c53 0 118 -37 159 -118l193 108 c6 -3 11 -6 13 -13c-4 -8 -12 -19 -7 -33c3 -20 66 -86 89 -98h29c5 -3 9 -7 13 -14l-139 -93c18 -23 25 -64 35 -132c13 -89 23 -143 31 -167c6 -23 16 -34 31 -34c11 0 24 7 39 22zM620 437l-82 125c-9 9 -22 9 -39 1c-28 -11 -51 -26 -79 -44c16 -55 28 -108 28 -182 c61 31 118 59 172 100'], + 0x2127: [658,18,853,80,773,'773 505h-24c-3 47 -25 72 -80 72h-131l1 -43c102 -20 205 -121 205 -265c0 -158 -131 -287 -321 -287c-184 0 -314 117 -314 283c0 135 76 233 201 269l5 43h-134c-61 0 -76 -36 -76 -72h-25l6 153h272l-13 -147c-84 -27 -121 -104 -121 -233c0 -170 91 -261 201 -261 c119 0 205 103 205 254c0 107 -26 204 -125 240l-10 147h272'], + 0x2135: [723,19,604,40,564,'564 576c-13 -14 -53 -17 -82 -20c30 -40 36 -77 37 -112c1 -71 -27 -133 -93 -182l68 -82c20 -25 37 -58 42 -86l-31 -113c-5 28 -22 61 -42 85l-288 347c-73 -89 -10 -235 63 -321v-106c-14 19 -61 23 -94 24c-32 1 -90 -5 -103 -20v109c14 9 50 16 84 18 c-36 47 -46 93 -46 137c0 58 17 134 76 183l-73 87c-20 25 -38 58 -42 86l31 113c4 -27 22 -61 42 -85l292 -350c72 84 34 210 -37 293v106c14 -19 61 -23 94 -24c32 -1 90 5 102 20v-107'], + 0x2136: [729,29,522,40,482,'482 27c-7 -22 -22 -27 -41 -28h-183h-177c-18 -1 -33 -6 -41 -28v118c8 21 23 27 41 28h177l140 -1c17 137 53 394 -18 426c-35 17 -100 26 -154 26c-58 0 -100 0 -124 11c-19 9 -24 17 -30 32v118c7 -22 19 -25 30 -32c19 -12 66 -11 124 -11c54 0 132 -7 165 -26 c132 -76 70 -369 34 -543h16c19 1 34 6 41 27v-117'], + 0x2137: [740,18,469,40,428,'428 81c4 -39 -10 -62 -30 -96c-66 56 -102 187 -111 279c-22 -85 -42 -234 -97 -255c-14 -5 -20 -6 -29 -6c-15 0 -21 7 -50 8c-25 2 -54 -6 -71 -29v118c17 23 46 31 71 28c29 -1 36 -9 49 -9c5 0 16 1 30 7c60 24 64 137 92 201c-3 76 -13 182 -38 198 c-61 37 -79 6 -133 38c-19 12 -30 26 -38 49v128c8 -23 19 -48 38 -59c54 -33 94 1 142 -49c57 -57 50 -313 70 -444c7 -50 71 -114 105 -107'], + 0x2138: [717,16,522,40,482,'482 544c-7 21 -22 26 -41 27h-16c18 -85 27 -207 21 -319c-5 -118 5 -229 -64 -268c-15 22 -39 76 -30 98c37 16 33 125 40 222c8 94 14 201 6 268l-140 -1h-177c-18 1 -33 7 -41 28v118c8 -22 23 -27 41 -28h177h183c19 -1 34 -6 41 -28v-117'], + 0x2190: [430,-70,850,80,770,'770 224h-599l154 -154h-65l-180 180l180 180h65l-154 -154h599v-52'], + 0x2191: [600,90,520,80,440,'440 355l-154 154v-599h-52v599l-154 -154v65l180 180l180 -180v-65'], + 0x2192: [430,-70,850,80,770,'770 250l-180 -180h-65l154 154h-599v52h599l-154 154h65'], + 0x2193: [590,100,520,80,440,'440 80l-180 -180l-180 180v65l154 -154v599h52v-599l154 154v-65'], + 0x2194: [430,-70,1040,80,960,'960 250l-180 -180h-65l154 154h-698l154 -154h-65l-180 180l180 180h65l-154 -154h698l-154 154h65'], + 0x2195: [690,190,520,80,440,'440 -10l-180 -180l-180 180v65l154 -154v698l-154 -154v65l180 180l180 -180v-65l-154 154v-698l154 154v-65'], + 0x2196: [497,9,666,80,586,'586 28l-36 -37l-424 424v-218l-46 46v254h255l46 -46h-218'], + 0x2197: [497,9,666,80,586,'586 497v-254l-46 -46v218l-423 -424l-37 37l424 423h-218l46 46h254'], + 0x2198: [509,-3,666,80,586,'586 3h-254l-46 46h218l-424 423l37 37l423 -424v218l46 -46v-254'], + 0x2199: [509,-3,666,80,586,'586 472l-423 -423h218l-46 -46h-255v254l46 46v-218l424 424'], + 0x219A: [430,-70,850,80,770,'770 224h-222l-50 -154h-47l50 154h-330l154 -154h-65l-180 180l180 180h65l-154 -154h347l50 154h47l-50 -154h205v-52'], + 0x219B: [430,-70,850,80,770,'770 250l-180 -180h-65l154 154h-347l-50 -154h-47l50 154h-205v52h222l50 154h47l-50 -154h330l-154 154h65'], + 0x219E: [430,-70,1030,80,950,'950 224h-616l154 -154h-65l-154 154h-98l154 -154h-65l-180 180l180 180h65l-154 -154h98l154 154h65l-154 -154h616v-52'], + 0x21A0: [430,-70,1030,80,950,'950 250l-180 -180h-65l154 154h-98l-154 -154h-65l154 154h-616v52h616l-154 154h65l154 -154h98l-154 154h65'], + 0x21A2: [430,-70,1040,80,960,'960 430l-180 -180l180 -180h-65l-154 154h-570l154 -154h-65l-180 180l180 180h65l-154 -154h570l154 154h65'], + 0x21A3: [430,-70,1040,80,960,'960 250l-180 -180h-65l154 154h-570l-154 -154h-65l180 180l-180 180h65l154 -154h570l-154 154h65'], + 0x21A6: [430,-70,850,80,770,'770 250l-180 -180h-65l154 154h-553v-154h-46v360h46v-154h553l-154 154h65'], + 0x21A9: [508,-70,876,80,796,'796 366c0 -78 -64 -142 -142 -142h-483l154 -154h-65l-180 180l180 180h65l-154 -154h483c50 0 90 40 90 90s-40 90 -90 90h-52v52h52c78 0 142 -64 142 -142'], + 0x21AA: [508,-70,876,80,796,'796 250l-180 -180h-65l154 154h-483c-78 0 -142 64 -142 142s64 142 142 142h52v-52h-52c-50 0 -90 -40 -90 -90s40 -90 90 -90h483l-154 154h65'], + 0x21AB: [508,-18,876,80,796,'796 366c0 -78 -64 -142 -142 -142h-90v-206h-52v206h-341l154 -154h-65l-180 180l180 180h65l-154 -154h341v90c0 78 64 142 142 142s142 -64 142 -142zM744 366c0 50 -40 90 -90 90s-90 -40 -90 -90v-90h90c50 0 90 40 90 90'], + 0x21AC: [508,-18,876,80,796,'796 250l-180 -180h-65l154 154h-341v-206h-52v206h-90c-78 0 -142 64 -142 142s64 142 142 142s142 -64 142 -142v-90h341l-154 154h65zM312 276v90c0 50 -40 90 -90 90s-90 -40 -90 -90s40 -90 90 -90h90'], + 0x21AD: [430,-70,1040,80,960,'960 250l-180 -180h-65l154 154h-106c-30 0 -50 17 -64 41c-9 16 -16 37 -25 53c-5 8 -9 15 -19 15c-23 0 -30 -17 -35 -36c-7 -33 -7 -73 -15 -105c-10 -45 -33 -77 -85 -77s-75 32 -85 77c-8 32 -8 72 -15 105c-5 19 -12 36 -35 36c-10 0 -14 -7 -19 -15 c-9 -16 -16 -37 -25 -53c-14 -24 -34 -41 -64 -41h-106l154 -154h-65l-180 180l180 180h65l-154 -154h106c10 0 14 7 19 15c9 16 16 37 25 53c14 24 34 41 64 41c52 0 75 -32 85 -77c8 -32 8 -72 15 -105c5 -19 12 -36 35 -36s30 17 35 36c7 33 7 73 15 105 c10 45 33 77 85 77c30 0 50 -17 64 -41c9 -16 16 -37 25 -53c5 -8 9 -15 19 -15h106l-154 154h65'], + 0x21AE: [430,-70,1040,80,960,'960 250l-180 -180h-65l154 154h-334l-50 -154h-47l50 154h-317l154 -154h-65l-180 180l180 180h65l-154 -154h334l50 154h47l-50 -154h317l-154 154h65'], + 0x21B0: [598,98,540,80,460,'460 -98h-52v490h-237l154 -154h-65l-180 180l180 180h65l-154 -154h263l26 -26v-516'], + 0x21B1: [598,98,540,80,460,'460 418l-180 -180h-65l154 154h-237v-490h-52v516l26 26h263l-154 154h65'], + 0x21B6: [535,-241,799,80,719,'719 250h-52c0 120 -105 212 -229 212c-106 0 -173 -58 -210 -151l210 90l-24 -61l-235 -99l-99 234l24 60l81 -191c46 106 128 170 253 170c153 0 281 -115 281 -264'], + 0x21B7: [535,-241,799,80,719,'719 475l-99 -234l-235 99l-24 61l210 -90c-36 93 -104 151 -210 151c-123 0 -229 -92 -229 -212h-52c0 149 129 264 281 264c125 0 207 -64 253 -170l81 191'], + 0x21BA: [547,3,726,80,646,'646 250c-2 -140 -114 -252 -253 -253c-139 0 -252 113 -252 253c0 91 51 168 127 214l-188 50l56 33l246 -66l-66 -246l-56 -33l62 231c-75 -32 -129 -101 -129 -183c0 -111 89 -201 200 -201c111 1 200 91 201 201c1 78 -44 150 -116 182l22 47 c90 -40 147 -131 146 -229'], + 0x21BB: [547,3,726,79,646,'646 514l-188 -50c76 -46 127 -123 127 -214c0 -140 -113 -253 -252 -253c-139 1 -251 113 -253 253c-1 98 56 189 146 229l22 -47c-72 -32 -117 -104 -116 -182c1 -110 90 -200 201 -201c111 0 200 90 200 201c0 82 -54 151 -129 183l62 -231l-56 33l-66 246l246 66'], + 0x21BC: [430,-224,840,80,760,'760 224h-680v26l180 180h65l-154 -154h589v-52'], + 0x21BD: [276,-70,840,80,760,'760 224h-589l154 -154h-65l-180 180v26h680v-52'], + 0x21BE: [590,90,366,80,286,'286 345l-154 154v-589h-52v680h26l180 -180v-65'], + 0x21BF: [590,90,366,80,286,'286 -90h-52v589l-154 -154v65l180 180h26v-680'], + 0x21C0: [430,-224,840,80,760,'760 224h-680v52h589l-154 154h65l180 -180v-26'], + 0x21C1: [276,-70,840,80,760,'760 250l-180 -180h-65l154 154h-589v52h680v-26'], + 0x21C2: [590,90,366,80,286,'286 90l-180 -180h-26v680h52v-589l154 154v-65'], + 0x21C3: [590,90,366,80,286,'286 590v-680h-26l-180 180v65l154 -154v589h52'], + 0x21C4: [630,130,860,80,780,'770 24h-599l154 -154h-65l-180 180l180 180h65l-154 -154h599v-52zM780 450l-180 -180h-65l154 154h-599v52h599l-154 154h65'], + 0x21C6: [630,130,860,80,780,'780 50l-180 -180h-65l154 154h-599v52h599l-154 154h65zM770 424h-599l154 -154h-65l-180 180l180 180h65l-154 -154h599v-52'], + 0x21C7: [630,130,850,80,770,'770 24h-599l154 -154h-65l-180 180l180 180h65l-154 -154h599v-52zM770 424h-599l154 -154h-65l-180 180l180 180h65l-154 -154h599v-52'], + 0x21C8: [600,90,920,80,840,'440 355l-154 154v-599h-52v599l-154 -154v65l180 180l180 -180v-65zM840 355l-154 154v-599h-52v599l-154 -154v65l180 180l180 -180v-65'], + 0x21C9: [630,130,850,80,770,'770 50l-180 -180h-65l154 154h-599v52h599l-154 154h65zM770 450l-180 -180h-65l154 154h-599v52h599l-154 154h65'], + 0x21CA: [590,100,920,80,840,'440 80l-180 -180l-180 180v65l154 -154v599h52v-599l154 154v-65zM840 80l-180 -180l-180 180v65l154 -154v599h52v-599l154 154v-65'], + 0x21CB: [526,26,840,80,760,'760 180v-26l-180 -180h-65l154 154h-589v52h680zM760 320h-680v26l180 180h65l-154 -154h589v-52'], + 0x21CC: [526,26,840,80,760,'760 128h-589l154 -154h-65l-180 180v26h680v-52zM760 320h-680v52h589l-154 154h65l180 -180v-26'], + 0x21CD: [500,0,850,80,770,'770 148h-245l-48 -148h-46l48 148h-232l118 -118h-65l-220 220l220 220h65l-118 -118h298l48 148h46l-48 -148h179v-52h-196l-32 -100h228v-52zM528 300h-333l-50 -50l50 -50h301'], + 0x21CE: [500,0,1040,80,960,'960 250l-220 -220h-65l118 118h-283l-48 -148h-46l48 148h-217l118 -118h-65l-220 220l220 220h65l-118 -118h283l48 148h46l-48 -148h217l-118 118h65zM895 250l-50 50h-286l-32 -100h318zM513 300h-318l-50 -50l50 -50h286'], + 0x21CF: [500,0,850,80,770,'770 250l-220 -220h-65l118 118h-298l-48 -148h-46l48 148h-179v52h196l32 100h-228v52h245l48 148h46l-48 -148h232l-118 118h65zM705 250l-50 50h-301l-32 -100h333'], + 0x21D0: [470,-30,850,80,770,'770 148h-523l118 -118h-65l-220 220l220 220h65l-118 -118h523v-52h-575l-50 -50l50 -50h575v-52'], + 0x21D1: [600,90,600,80,520,'520 315l-118 118v-523h-52v575l-50 50l-50 -50v-575h-52v523l-118 -118v65l220 220l220 -220v-65'], + 0x21D2: [470,-30,850,80,770,'770 250l-220 -220h-65l118 118h-523v52h575l50 50l-50 50h-575v52h523l-118 118h65'], + 0x21D3: [590,100,600,80,520,'520 120l-220 -220l-220 220v65l118 -118v523h52v-575l50 -50l50 50v575h52v-523l118 118v-65'], + 0x21D4: [470,-30,1040,80,960,'960 250l-220 -220h-65l118 118h-546l118 -118h-65l-220 220l220 220h65l-118 -118h546l-118 118h65zM895 250l-50 50h-650l-50 -50l50 -50h650'], + 0x21D5: [690,190,600,80,520,'520 30l-220 -220l-220 220v65l118 -118v546l-118 -118v65l220 220l220 -220v-65l-118 118v-546l118 118v-65zM350 -75v650l-50 50l-50 -50v-650l50 -50'], + 0x21DA: [572,72,1030,80,950,'950 72h-627l144 -144h-65l-322 322l322 322h65l-144 -144h627v-52h-679l-100 -100h779v-52h-779l100 -100h679v-52'], + 0x21DB: [572,72,1030,80,950,'950 250l-322 -322h-65l144 144h-627v52h679l100 100h-779v52h779l-100 100h-679v52h627l-144 144h65'], + 0x21DD: [430,-70,850,80,770,'770 250l-180 -180h-65l154 154h-83c-31 0 -50 17 -64 41c-10 16 -16 37 -26 53c-4 8 -9 15 -18 15c-23 0 -30 -17 -35 -36c-8 -33 -8 -73 -15 -105c-11 -45 -34 -77 -85 -77c-52 0 -75 32 -86 77c-7 32 -7 72 -15 105c-5 19 -12 36 -34 36c-10 0 -15 -7 -19 -15 c-10 -16 -16 -37 -26 -53c-14 -24 -33 -41 -63 -41h-30v52h30c9 0 14 7 18 15c10 16 16 37 26 53c14 24 33 41 64 41c51 0 74 -32 85 -77c7 -32 7 -72 15 -105c5 -19 12 -36 35 -36c22 0 29 17 34 36c8 33 8 73 15 105c11 45 34 77 86 77c30 0 49 -17 63 -41 c10 -16 16 -37 26 -53c4 -8 9 -15 19 -15h83l-154 154h65'], + 0x2200: [662,4,580,70,510,'510 662l-194 -666h-52l-194 666h54l66 -227h200l66 227h54zM375 383h-170l85 -290'], + 0x2201: [662,0,560,80,480,'480 200c0 -110 -90 -200 -200 -200s-200 90 -200 200v262c0 110 90 200 200 200s200 -90 200 -200h-52c0 82 -66 148 -148 148s-148 -66 -148 -148v-262c0 -82 66 -148 148 -148s148 66 148 148h52'], + 0x2202: [673,17,552,80,472,'388 275v83c-27 51 -64 72 -99 72c-94 0 -119 -92 -119 -207c0 -92 36 -212 120 -212c107 0 98 129 98 264zM472 282c0 -59 0 -118 -11 -151c-31 -89 -102 -148 -184 -148c-118 0 -197 103 -197 223c0 138 73 253 210 253c33 0 73 -18 99 -38c-9 130 -31 223 -128 223 c-22 0 -28 -8 -35 -18c-8 -13 -17 -29 -54 -39c-8 -2 -11 -3 -21 -3c-22 0 -37 15 -37 32s14 36 50 46c27 7 71 11 95 11c167 0 213 -204 213 -391'], + 0x2203: [662,0,534,80,454,'454 26l-26 -26h-348v52h322v253h-322v52h322v253h-322v52h348l26 -26v-610'], + 0x2204: [729,67,534,80,454,'454 26l-26 -26h-246l-21 -67h-47l22 67h-56v52h73l82 253h-155v52h172l83 253h-255v52h272l21 67h47l-22 -67h30l26 -26v-610zM402 357v253h-21l-82 -253h103zM402 52v253h-120l-83 -253h203'], + 0x2205: [755,93,660,80,580,'528 250v162c0 71 -38 134 -94 168l-168 -517c20 -7 42 -11 64 -11c109 0 198 89 198 198zM394 599c-20 7 -42 11 -64 11c-109 0 -198 -89 -198 -198v-162c0 -71 38 -134 94 -168zM580 250c0 -138 -112 -250 -250 -250c-28 0 -55 5 -80 13l-34 -106h-47l40 124 c-77 43 -129 125 -129 219v162c0 138 112 250 250 250c28 0 55 -5 80 -13l34 106h47l-40 -124c77 -43 129 -125 129 -219v-162'], + 0x2207: [664,10,760,80,680,'680 664l-286 -674h-20l-294 674h600zM611 622h-404l203 -490'], + 0x2208: [500,0,678,80,598,'598 0h-268c-138 0 -250 112 -250 250s112 250 250 250h268v-52h-268c-100 0 -184 -75 -196 -172h464v-52h-464c12 -97 96 -172 196 -172h268v-52'], + 0x2209: [650,150,678,80,598,'598 0h-268c-16 0 -32 2 -48 5l-50 -155h-46l54 167c-94 36 -160 127 -160 233c0 138 112 250 250 250h67l49 150h46l-49 -150h155v-52h-172l-55 -172h227v-52h-244l-55 -170c10 -1 20 -2 31 -2h268v-52zM307 224h-173c9 -72 57 -132 122 -158zM380 448h-50 c-100 0 -184 -75 -196 -172h190'], + 0x220B: [500,0,678,80,598,'598 250c0 -138 -112 -250 -250 -250h-268v52h268c100 0 184 75 196 172h-464v52h464c-12 97 -96 172 -196 172h-268v52h268c138 0 250 -112 250 -250'], + 0x220D: [425,-75,528,80,448,'448 250c0 -97 -78 -175 -175 -175h-193v52h193c59 0 108 42 120 97h-313v52h313c-12 55 -61 97 -120 97h-193v52h193c97 0 175 -78 175 -175'], + 0x2212: [276,-224,660,80,580,'580 224h-500v52h500v-52'], + 0x2213: [622,0,660,80,580,'580 570h-500v52h500v-52zM580 224h-224v-224h-52v224h-224v52h224v224h52v-224h224v-52'], + 0x2214: [697,0,660,80,580,'580 224h-224v-224h-52v224h-224v52h224v224h52v-224h224v-52zM386 641c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2215: [650,150,466,80,386,'386 650l-260 -800h-46l260 800h46'], + 0x2216: [608,108,660,80,580,'580 -108h-52l-448 716h52'], + 0x2217: [452,-48,522,80,442,'436 149c-14 -25 -48 -31 -64 -10c-28 37 -62 69 -101 94c3 -46 13 -92 31 -134c10 -25 -11 -51 -41 -51c-29 0 -50 26 -40 51c18 42 28 88 30 134c-39 -25 -73 -57 -101 -94c-16 -21 -49 -15 -64 10c-14 25 -2 57 24 60c46 6 90 20 131 41c-41 21 -85 35 -131 41 c-26 3 -38 35 -24 60c15 25 48 31 64 10c28 -37 62 -69 101 -94c-2 46 -12 92 -30 134c-10 25 11 51 40 51c30 0 51 -26 41 -51c-18 -42 -28 -88 -31 -134c39 25 73 57 101 94c16 21 50 15 64 -10c15 -25 3 -57 -23 -60c-46 -6 -91 -20 -132 -41c41 -21 86 -35 132 -41 c26 -3 38 -35 23 -60'], + 0x2218: [400,-100,460,80,380,'380 250c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150s150 -67 150 -150zM336 250c0 59 -47 106 -106 106s-106 -47 -106 -106s47 -106 106 -106s106 47 106 106'], + 0x2219: [400,-100,460,80,380,'380 250c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150s150 -67 150 -150'], + 0x221A: [616,90,594,120,620,'620 564h-33l-222 -654h-40h-39l-104 212h-62v44h142l80 -161l207 611h71v-52'], + 0x221D: [440,-60,797,80,717,'717 391h-48c-75 0 -129 -58 -172 -122c48 -77 103 -166 187 -166c11 0 22 1 33 3v-37c-20 -6 -40 -9 -61 -9c-87 0 -151 70 -200 145c-49 -74 -108 -143 -194 -143c-99 0 -182 77 -182 174c0 111 85 204 194 204c92 0 159 -72 210 -151c53 78 121 145 212 145 c7 0 15 -2 21 -6v-37zM443 225c-49 80 -111 161 -203 161c-71 0 -130 -57 -130 -128c0 -89 77 -157 168 -157c74 0 123 60 165 124'], + 0x221E: [442,-58,940,80,860,'860 261c0 -112 -93 -203 -207 -203c-88 0 -148 73 -197 149c-49 -74 -108 -142 -194 -142c-100 0 -182 77 -182 174c0 110 85 203 194 203c92 0 158 -71 210 -150c52 76 117 143 207 143c94 0 169 -79 169 -174zM443 228c-49 79 -111 161 -203 161 c-71 0 -130 -57 -130 -128c0 -89 77 -157 168 -157c74 0 123 60 165 124zM830 239c0 87 -70 157 -156 157c-77 0 -133 -59 -177 -124c48 -77 102 -161 190 -161c76 0 143 54 143 128'], + 0x2220: [544,0,697,80,617,'617 508l-456 -456h437v-52h-500l-18 44l500 500'], + 0x2221: [544,85,697,80,617,'617 508l-247 -247c51 -58 81 -132 87 -209h141v-52h-141c-2 -28 -8 -57 -17 -85l-49 16c7 23 12 46 14 69h-307l-18 44l217 217c-18 15 -38 28 -59 39l23 46c27 -13 51 -30 72 -48l247 246zM405 52c-6 63 -31 124 -72 172l-172 -172h244'], + 0x2222: [483,-17,642,80,562,'562 83l-20 -48l-131 54c-13 -26 -29 -50 -48 -72l-39 33c15 19 28 38 39 59l-283 117v48l283 117c-11 21 -24 40 -39 59l39 33c19 -22 35 -46 48 -72l131 54l20 -48l-131 -54c24 -73 24 -153 0 -226zM383 157c19 60 19 126 0 186l-225 -93'], + 0x2223: [650,150,204,80,124,'124 -150h-44v800h44v-800'], + 0x2224: [650,150,346,80,266,'266 357l-71 -113v-394h-44v323l-71 -114v84l71 113v394h44v-323l71 114v-84'], + 0x2225: [650,150,348,80,268,'124 -150h-44v800h44v-800zM268 -150h-44v800h44v-800'], + 0x2226: [650,150,482,80,402,'402 466l-67 -107v-509h-44v438l-100 -159v-279h-44v208l-67 -107v83l67 107v509h44v-438l100 159v279h44v-208l67 107v-83'], + 0x2227: [506,0,660,80,580,'580 0h-57l-193 436l-193 -436h-57l224 506h52'], + 0x2228: [500,6,660,80,580,'580 500l-224 -506h-52l-224 506h57l193 -436l193 436h57'], + 0x2229: [518,0,660,80,580,'580 0h-52v268c0 109 -89 198 -198 198s-198 -89 -198 -198v-268h-52v268c0 138 112 250 250 250s250 -112 250 -250v-268'], + 0x222A: [500,18,660,80,580,'580 232c0 -138 -112 -250 -250 -250s-250 112 -250 250v268h52v-268c0 -109 89 -198 198 -198s198 89 198 198v268h52v-268'], + 0x222B: [796,296,666,80,586,'586 703c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58 c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93'], + 0x2234: [415,-85,524,80,444,'318 359c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM444 141c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 141c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2235: [415,-85,524,80,444,'318 141c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM444 359c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 359c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x223C: [319,-181,642,80,562,'562 309c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -34 -4c-41 0 -82 19 -119 39c-30 16 -61 34 -93 34c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34c7 0 15 1 22 3 c35 10 70 26 96 77'], + 0x223D: [319,-181,642,80,562,'562 191l-18 -10c-26 51 -61 67 -96 77c-7 2 -15 3 -22 3c-32 0 -63 -18 -93 -34c-38 -20 -78 -39 -120 -39c-11 0 -22 1 -33 4c-44 12 -67 54 -100 117l18 10c26 -51 61 -67 96 -77c7 -2 14 -3 22 -3c32 0 63 18 93 34c37 20 78 39 119 39c12 0 23 -1 34 -4 c44 -12 67 -54 100 -117'], + 0x2240: [491,-9,321,80,241,'241 364c0 -47 -29 -91 -60 -130c-27 -34 -57 -70 -48 -111c9 -40 27 -74 81 -96l-7 -18c-70 28 -113 52 -124 103c-2 8 -3 16 -3 24c0 47 29 91 60 130c26 34 56 70 47 111c-8 40 -26 74 -80 96l7 18c70 -28 113 -52 124 -103c2 -8 3 -16 3 -24'], + 0x2241: [419,-81,642,80,562,'562 309c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -34 -4c-33 0 -66 12 -98 28l-60 -135h-48l69 156c-24 12 -50 24 -75 24c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c34 0 67 -12 99 -28l60 135h48l-69 -156 c24 -12 49 -24 75 -24c7 0 15 1 22 3c35 10 70 26 96 77'], + 0x2242: [372,-85,660,80,580,'580 320h-500v52h500v-52zM571 213c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -33 -4c-42 0 -82 19 -120 39c-30 16 -61 34 -93 34c-7 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34 c7 0 15 1 22 3c35 10 70 26 96 77'], + 0x2243: [415,-128,660,80,580,'580 128h-500v52h500v-52zM571 405c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -33 -4c-42 0 -82 19 -120 39c-30 16 -61 34 -93 34c-7 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34 c7 0 15 1 22 3c35 10 70 26 96 77'], + 0x2245: [471,-72,660,80,580,'571 461c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -33 -4c-42 0 -82 19 -120 39c-30 16 -61 34 -93 34c-7 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34c7 0 15 1 22 3 c35 10 70 26 96 77zM580 224h-500v52h500v-52zM580 72h-500v52h500v-52'], + 0x2246: [487,-22,660,80,580,'571 478c-33 -64 -56 -105 -100 -118c-11 -3 -22 -4 -33 -4c-42 0 -82 19 -120 40c-30 16 -61 33 -93 33c-7 0 -15 -1 -22 -3c-35 -9 -70 -25 -96 -76l-18 9c33 64 56 105 100 117c11 4 22 5 33 5c42 0 82 -19 120 -40c30 -16 61 -33 93 -33c7 0 15 1 22 3 c35 9 70 25 96 76zM580 72h-269l-22 -50h-49l23 50h-183v52h206l44 100h-250v52h274l17 40h49l-18 -40h178v-52h-201l-45 -100h246v-52'], + 0x2248: [415,-85,642,80,562,'562 405c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -34 -4c-41 0 -82 19 -119 39c-30 16 -61 34 -93 34c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34c7 0 15 1 22 3 c35 10 70 26 96 77zM562 213c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -34 -4c-41 0 -82 19 -119 39c-30 16 -61 34 -93 34c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34 c7 0 15 1 22 3c35 10 70 26 96 77'], + 0x224A: [471,-72,660,80,580,'571 461c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -33 -4c-42 0 -82 19 -120 39c-30 16 -61 34 -93 34c-7 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34c7 0 15 1 22 3 c35 10 70 26 96 77zM571 309c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -33 -4c-42 0 -82 19 -120 39c-30 16 -61 34 -93 34c-7 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34 c7 0 15 1 22 3c35 10 70 26 96 77zM580 72h-500v52h500v-52'], + 0x224D: [411,-89,660,80,580,'580 351c-75 -46 -162 -66 -250 -66s-175 20 -250 66v60c76 -46 161 -74 250 -74s174 28 250 74v-60zM580 89c-76 46 -161 74 -250 74s-174 -28 -250 -74v60c75 46 162 66 250 66s175 -20 250 -66v-60'], + 0x224E: [470,-30,660,80,580,'580 320h-100h-52c0 54 -44 98 -98 98s-98 -44 -98 -98h-52h-100v52h109c21 57 76 98 141 98s120 -41 141 -98h109v-52zM580 128h-109c-21 -57 -76 -98 -141 -98s-120 41 -141 98h-109v52h100h52c0 -54 44 -98 98 -98s98 44 98 98h52h100v-52'], + 0x224F: [470,-128,660,80,580,'580 320h-100h-52c0 54 -44 98 -98 98s-98 -44 -98 -98h-52h-100v52h109c21 57 76 98 141 98s120 -41 141 -98h109v-52zM580 128h-500v52h500v-52'], + 0x2250: [584,-128,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM386 528c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2251: [584,84,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM386 528c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM386 -28c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2252: [584,84,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM192 528c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM580 -28c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2253: [584,84,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM580 528c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 -28c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2256: [372,-128,660,80,580,'580 128h-500v52h117c-11 21 -17 45 -17 70s6 49 17 70h-117v52h500v-52h-117c11 -21 17 -45 17 -70s-6 -49 -17 -70h117v-52zM436 250c0 59 -47 106 -106 106s-106 -47 -106 -106s47 -106 106 -106s106 47 106 106'], + 0x2257: [772,-128,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM480 622c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150s150 -67 150 -150zM436 622c0 59 -47 106 -106 106s-106 -47 -106 -106s47 -106 106 -106s106 47 106 106'], + 0x225C: [829,-128,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM505 472h-350l168 357h17zM404 532l-94 205l-96 -205h190'], + 0x2260: [650,150,660,80,580,'580 128h-267l-90 -278h-46l90 278h-187v52h204l46 140h-250v52h267l90 278h46l-90 -278h187v-52h-204l-46 -140h250v-52'], + 0x2261: [468,-32,660,80,580,'580 416h-500v52h500v-52zM580 224h-500v52h500v-52zM580 32h-500v52h500v-52'], + 0x2264: [564,54,665,80,585,'585 88l-505 212v52l505 212v-56l-433 -182l433 -182v-56zM585 -54h-505v52h505v-52'], + 0x2265: [564,54,665,80,585,'585 300l-505 -212v56l433 182l-433 182v56l505 -212v-52zM585 -54h-505v52h505v-52'], + 0x2266: [627,117,665,80,585,'585 177l-505 199v52l505 199v-56l-429 -169l429 -169v-56zM585 35h-505v52h505v-52zM585 -117h-505v52h505v-52'], + 0x2267: [627,117,665,80,585,'585 376l-505 -199v56l429 169l-429 169v56l505 -199v-52zM585 35h-505v52h505v-52zM585 -117h-505v52h505v-52'], + 0x2268: [627,184,665,80,585,'585 177l-505 199v52l505 199v-56l-429 -169l429 -169v-56zM585 -117h-290l-42 -67h-52l42 67h-163v52h195l63 100h-258v52h290l42 67h52l-42 -67h163v-52h-195l-63 -100h258v-52'], + 0x2269: [627,184,665,80,585,'585 376l-505 -199v56l429 169l-429 169v56l505 -199v-52zM585 -117h-290l-42 -67h-52l42 67h-163v52h195l63 100h-258v52h290l42 67h52l-42 -67h163v-52h-195l-63 -100h258v-52'], + 0x226A: [517,17,805,80,725,'448 -17l-368 241v52l368 241v-62l-313 -205l313 -205v-62zM725 -17l-368 241v52l368 241v-62l-313 -205l313 -205v-62'], + 0x226B: [517,17,805,80,725,'725 224l-368 -241v62l313 205l-313 205v62l368 -241v-52zM448 224l-368 -241v62l313 205l-313 205v62l368 -241v-52'], + 0x226C: [666,166,413,80,333,'333 250c0 -103 -41 -211 -102 -295c30 -39 64 -70 102 -89l-16 -32c-40 20 -77 51 -111 90c-33 -39 -71 -70 -110 -90l-16 32c38 19 72 50 101 89c-60 84 -101 192 -101 295s41 211 101 295c-29 39 -63 70 -101 89l16 32c39 -20 77 -51 110 -90c34 39 71 70 111 90 l16 -32c-38 -19 -72 -50 -102 -89c61 -84 102 -192 102 -295zM281 250c0 88 -29 182 -75 258c-46 -76 -74 -170 -74 -258s28 -182 74 -258c46 76 75 170 75 258'], + 0x226E: [650,150,666,80,586,'586 -15l-230 109l-79 -244h-47l86 263l-236 111v52l341 161l69 213h47l-61 -187l110 52v-58l-132 -62l-82 -251l214 -101v-58zM399 369l-252 -119l185 -87'], + 0x226F: [650,150,666,80,586,'586 224l-341 -161l-70 -213h-46l61 187l-110 -52v58l132 62l82 251l-214 101v58l230 -109l79 244h46l-85 -263l236 -111v-52zM519 250l-185 87l-67 -206'], + 0x2270: [611,111,665,80,585,'585 -54h-278l-18 -57h-46l18 57h-181v52h198l63 193l-261 109v52l363 152l35 107h46l-28 -84l89 37v-56l-110 -46l-77 -239l187 -79v-56l-204 85l-57 -175h261v-52zM422 439l-270 -113l205 -86'], + 0x2271: [611,111,665,80,585,'585 -54h-379l-18 -57h-47l19 57h-80v52h97l49 151l-146 -61v56l167 71l64 196l-231 97v56l247 -104l49 151h47l-55 -168l217 -91v-52l-305 -128l-57 -174h362v-52zM513 326l-161 68l-51 -157'], + 0x2272: [585,75,665,80,585,'585 109l-505 212v52l505 212v-56l-433 -182l433 -182v-56zM574 53c-33 -64 -57 -106 -101 -118c-11 -3 -22 -4 -33 -4c-41 0 -82 19 -120 39c-29 16 -61 34 -93 34c-7 0 -14 -1 -21 -3c-35 -10 -70 -26 -96 -76l-18 9c33 64 56 105 100 117c11 3 22 5 33 5 c41 0 82 -19 120 -40c30 -16 61 -34 93 -34c7 0 14 1 22 3c34 10 69 26 96 77'], + 0x2273: [585,75,665,80,585,'585 321l-505 -212v56l433 182l-433 182v56l505 -212v-52zM574 53c-33 -64 -57 -106 -101 -118c-11 -3 -22 -4 -33 -4c-41 0 -82 19 -120 39c-29 16 -61 34 -93 34c-7 0 -14 -1 -21 -3c-35 -10 -70 -26 -96 -76l-18 9c33 64 56 105 100 117c11 3 22 5 33 5 c41 0 82 -19 120 -40c30 -16 61 -34 93 -34c7 0 14 1 22 3c34 10 69 26 96 77'], + 0x2276: [655,155,670,80,590,'585 205l-505 199v52l505 199v-56l-429 -169l429 -169v-56zM590 44l-505 -199v56l429 169l-429 169v56l505 -199v-52'], + 0x2277: [655,155,670,80,590,'590 404l-505 -199v56l429 169l-429 169v56l505 -199v-52zM585 -155l-505 199v52l505 199v-56l-429 -169l429 -169v-56'], + 0x227A: [528,28,682,80,602,'602 4l-41 -32c-116 151 -291 243 -481 252v52c190 9 365 101 481 252l41 -32c-92 -120 -219 -205 -361 -246c142 -41 269 -126 361 -246'], + 0x227B: [528,28,682,80,602,'602 224c-190 -9 -366 -101 -481 -252l-41 32c92 120 219 205 361 246c-142 41 -269 126 -361 246l41 32c115 -151 291 -243 481 -252v-52'], + 0x227C: [631,131,682,80,602,'602 107l-41 -31c-116 151 -291 243 -481 252v52c190 8 365 101 481 251l41 -31c-92 -120 -219 -206 -361 -246c142 -41 269 -127 361 -247zM553 -112l-48 -19c-73 179 -239 295 -424 306v52c206 -12 392 -139 472 -339'], + 0x227D: [631,131,682,80,602,'602 328c-190 -9 -366 -101 -481 -252l-41 31c92 120 219 206 361 247c-142 40 -269 126 -361 246l41 31c115 -150 291 -243 481 -251v-52zM601 175c-185 -11 -352 -127 -424 -306l-48 19c80 200 266 327 472 339v-52'], + 0x227E: [599,89,655,80,575,'575 567c-85 -106 -199 -182 -327 -220c128 -37 242 -113 327 -220l-41 -32c-110 139 -277 222 -454 226v52c177 5 344 88 454 226zM568 39c-33 -64 -56 -106 -100 -118c-11 -3 -22 -4 -33 -4c-41 0 -82 19 -120 39c-29 16 -61 34 -93 34c-7 0 -14 -1 -21 -3 c-35 -10 -70 -26 -97 -76l-17 9c33 64 56 105 100 117c11 3 22 5 33 5c41 0 82 -19 120 -40c29 -16 61 -34 93 -34c7 0 14 1 22 3c34 10 69 26 96 77'], + 0x227F: [599,89,655,80,575,'575 321c-177 -4 -344 -87 -454 -226l-41 32c85 107 199 183 327 220c-128 38 -242 114 -327 220l41 32c110 -138 277 -221 454 -226v-52zM568 39c-33 -64 -56 -106 -100 -118c-11 -3 -22 -4 -33 -4c-41 0 -82 19 -120 39c-29 16 -61 34 -93 34c-7 0 -14 -1 -21 -3 c-35 -10 -70 -26 -97 -76l-17 9c33 64 56 105 100 117c11 3 22 5 33 5c41 0 82 -19 120 -40c29 -16 61 -34 93 -34c7 0 14 1 22 3c34 10 69 26 96 77'], + 0x2280: [650,150,682,80,602,'602 4l-41 -32c-61 80 -139 143 -227 186l-100 -308h-46l106 327c-67 27 -140 44 -214 47v52c96 4 188 30 270 74l98 300h46l-86 -266c58 39 109 87 153 144l41 -32c-60 -78 -135 -142 -219 -188l-32 -100c97 -46 184 -116 251 -204zM328 281c-28 -12 -57 -23 -87 -31 c23 -7 47 -15 69 -24'], + 0x2281: [650,150,682,80,602,'602 224c-96 -4 -188 -30 -270 -74l-98 -300h-46l86 266c-58 -39 -109 -87 -153 -144l-41 32c60 78 135 142 219 188l32 100c-97 46 -184 116 -251 204l41 32c61 -80 139 -143 227 -186l100 308h46l-106 -327c67 -27 140 -44 214 -47v-52zM441 250c-24 7 -47 15 -69 24 l-18 -55c28 12 57 23 87 31'], + 0x2282: [500,0,678,80,598,'598 0h-268c-138 0 -250 112 -250 250s112 250 250 250h268v-52h-268c-109 0 -198 -89 -198 -198s89 -198 198 -198h268v-52'], + 0x2283: [500,0,678,80,598,'598 250c0 -138 -112 -250 -250 -250h-268v52h268c109 0 198 89 198 198s-89 198 -198 198h-268v52h268c138 0 250 -112 250 -250'], + 0x2286: [576,76,678,80,598,'598 76h-268c-138 0 -250 112 -250 250s112 250 250 250h268v-52h-268c-109 0 -198 -89 -198 -198s89 -198 198 -198h268v-52zM598 -76h-500v52h500v-52'], + 0x2287: [576,76,678,80,598,'598 326c0 -138 -112 -250 -250 -250h-268v52h268c109 0 198 89 198 198s-89 198 -198 198h-268v52h268c138 0 250 -112 250 -250zM580 -76h-500v52h500v-52'], + 0x2288: [685,185,678,80,598,'598 -76h-368l-35 -109h-47l36 109h-86v52h103l38 117c-93 37 -159 127 -159 233c0 138 112 250 250 250h66l35 109h47l-36 -109h156v-52h-173l-128 -393c11 -2 22 -3 33 -3h268v-52h-268c-17 0 -33 2 -49 5l-34 -105h351v-52zM379 524h-49c-109 0 -198 -89 -198 -198 c0 -83 51 -154 123 -183'], + 0x2289: [685,185,678,80,598,'598 326c0 -138 -112 -250 -250 -250h-68l-33 -100h333v-52h-350l-35 -109h-47l36 109h-104v52h121l32 100h-153v52h170l128 394c-10 1 -20 2 -30 2h-268v52h268c16 0 31 -1 47 -4l36 113h47l-41 -125c94 -36 161 -127 161 -234zM546 326c0 84 -52 155 -125 184 l-125 -382h52c109 0 198 89 198 198'], + 0x228A: [576,143,678,80,598,'598 76h-268c-138 0 -250 112 -250 250s112 250 250 250h268v-52h-268c-109 0 -198 -89 -198 -198s89 -198 198 -198h268v-52zM598 -76h-240l-42 -67h-52l42 67h-208v52h240l42 67h52l-42 -67h208v-52'], + 0x228B: [576,143,678,80,598,'598 326c0 -138 -112 -250 -250 -250h-268v52h268c109 0 198 89 198 198s-89 198 -198 198h-268v52h268c138 0 250 -112 250 -250zM580 -76h-240l-42 -67h-52l42 67h-208v52h240l42 67h52l-42 -67h208v-52'], + 0x228E: [500,18,660,80,580,'580 232c0 -138 -112 -250 -250 -250s-250 112 -250 250v268h52v-268c0 -109 89 -198 198 -198s198 89 198 198v268h52v-268zM488 224h-132v-132h-52v132h-132v52h132v132h52v-132h132v-52'], + 0x228F: [500,0,660,80,580,'580 0h-474l-26 26v448l26 26h474v-52h-448v-396h448v-52'], + 0x2290: [500,0,660,80,580,'580 474v-448l-26 -26h-474v52h448v396h-448v52h474'], + 0x2291: [576,76,660,80,580,'580 76h-474l-26 26v448l26 26h474v-52h-448v-396h448v-52zM580 -76h-500v52h500v-52'], + 0x2292: [576,76,660,80,580,'580 550v-448l-26 -26h-474v52h448v396h-448v52h474zM580 -76h-500v52h500v-52'], + 0x2293: [513,-13,591,80,511,'511 13h-52v448h-327v-448h-52v474l26 26h379l26 -26v-474'], + 0x2294: [487,13,591,80,511,'511 487v-474l-26 -26h-379l-26 26v474h52v-448h327v448h52'], + 0x2295: [568,68,796,80,716,'663 276c-13 126 -113 226 -239 239v-239h239zM372 515c-126 -13 -226 -113 -239 -239h239v239zM372 -15v239h-239c13 -126 113 -226 239 -239zM663 224h-239v-239c126 13 226 113 239 239zM716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318 s318 -142 318 -318'], + 0x2296: [568,68,796,80,716,'663 276c-13 135 -127 240 -265 240s-252 -105 -265 -240h530zM663 224h-530c13 -135 127 -240 265 -240s252 105 265 240zM716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318'], + 0x2297: [568,68,796,80,716,'664 250c0 64 -23 123 -60 169l-169 -169l169 -169c37 46 60 105 60 169zM567 456c-46 37 -105 60 -169 60s-123 -23 -169 -60l169 -169zM361 250l-169 169c-37 -46 -60 -105 -60 -169s23 -123 60 -169zM567 44l-169 169l-169 -169c46 -37 105 -60 169 -60s123 23 169 60 zM716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318'], + 0x2298: [568,68,796,80,716,'664 250c0 109 -66 203 -159 244l-164 -504c18 -4 37 -6 57 -6c147 0 266 119 266 266zM455 510c-18 4 -37 6 -57 6c-147 0 -266 -119 -266 -266c0 -109 66 -203 159 -244zM716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318'], + 0x2299: [568,68,796,80,716,'716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318zM664 250c0 147 -119 266 -266 266s-266 -119 -266 -266s119 -266 266 -266s266 119 266 266zM454 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x229A: [568,68,796,80,716,'716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318zM664 250c0 147 -119 266 -266 266s-266 -119 -266 -266s119 -266 266 -266s266 119 266 266zM548 250c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150 s150 -67 150 -150zM504 250c0 59 -47 106 -106 106s-106 -47 -106 -106s47 -106 106 -106s106 47 106 106'], + 0x229B: [568,68,796,80,716,'716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318zM664 250c0 147 -119 266 -266 266s-266 -119 -266 -266s119 -266 266 -266s266 119 266 266zM559 157c-12 -22 -41 -27 -55 -9c-27 34 -59 62 -96 85c1 -43 10 -86 25 -126 c9 -21 -10 -43 -35 -43s-44 22 -35 43c15 40 24 83 25 126c-37 -23 -69 -51 -96 -85c-14 -18 -43 -13 -55 9c-13 22 -3 49 20 52c42 7 83 20 121 41c-38 21 -79 34 -121 41c-23 3 -33 30 -20 52c12 22 41 27 55 9c27 -34 59 -62 96 -85c-1 43 -10 86 -25 126 c-9 21 10 43 35 43s44 -22 35 -43c-15 -40 -24 -83 -25 -126c37 23 69 51 96 85c14 18 43 13 55 -9c13 -22 3 -49 -20 -52c-42 -7 -83 -20 -121 -41c38 -21 79 -34 121 -41c23 -3 33 -30 20 -52'], + 0x229D: [568,68,796,80,716,'716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318zM664 250c0 147 -119 266 -266 266s-266 -119 -266 -266s119 -266 266 -266s266 119 266 266zM611 224h-426v52h426v-52'], + 0x229E: [500,0,660,80,580,'528 276v172h-172v-172h172zM304 276v172h-172v-172h172zM304 52v172h-172v-172h172zM528 52v172h-172v-172h172zM580 26l-26 -26h-448l-26 26v448l26 26h448l26 -26v-448'], + 0x229F: [500,0,660,80,580,'528 276v172h-396v-172h396zM528 52v172h-396v-172h396zM580 26l-26 -26h-448l-26 26v448l26 26h448l26 -26v-448'], + 0x22A0: [500,0,660,80,580,'491 448h-322l161 -161zM293 250l-161 161v-322zM491 52l-161 161l-161 -161h322zM528 89v322l-161 -161zM580 26l-26 -26h-448l-26 26v448l26 26h448l26 -26v-448'], + 0x22A1: [500,0,660,80,580,'580 26l-26 -26h-448l-26 26v448l26 26h448l26 -26v-448zM528 52v396h-396v-396h396zM386 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x22A2: [650,0,660,80,580,'580 299h-448v-299h-52v650h52v-299h448v-52'], + 0x22A3: [650,0,660,80,580,'580 0h-52v299h-448v52h448v299h52v-650'], + 0x22A4: [650,0,660,80,580,'580 598h-224v-598h-52v598h-224v52h500v-52'], + 0x22A5: [650,0,660,80,580,'580 0h-500v52h224v598h52v-598h224v-52'], + 0x22A8: [650,150,660,80,580,'580 128h-448v-278h-52v800h52v-278h448v-52h-448v-140h448v-52'], + 0x22A9: [650,150,738,80,658,'132 -150h-52v800h52v-800zM658 224h-374v-374h-52v800h52v-374h374v-52'], + 0x22AA: [650,150,890,80,810,'284 -150h-52v800h52v-800zM132 -150h-52v800h52v-800zM810 224h-374v-374h-52v800h52v-374h374v-52'], + 0x22AC: [650,150,712,80,632,'632 650l-234 -374h212v-52h-244l-130 -207v-167h-52v83l-52 -83h-52l104 166v634h52v-374h110l234 374h52zM314 224h-78v-124'], + 0x22AD: [650,150,764,80,684,'684 128h-378l-70 -111v-167h-52v83l-52 -83h-52l104 166v634h52v-278h170l174 278h52l-174 -278h226v-52h-258l-88 -140h346v-52zM374 320h-138v-140h50zM254 128h-18v-28'], + 0x22AE: [650,150,842,80,762,'762 224h-374v-374h-52v327l-100 -160v-167h-52v83l-52 -83h-52l104 166v634h52v-550l100 160v390h52v-307l192 307h52l-234 -374h364v-52'], + 0x22AF: [650,150,842,80,762,'762 128h-374v-278h-52v327l-100 -160v-167h-52v83l-52 -83h-52l104 166v634h52v-550l100 160v390h52v-278h18l174 278h52l-174 -278h304v-52h-336l-38 -60v-80h374v-52'], + 0x22B2: [527,27,697,80,617,'617 527v-554l-537 253v48zM565 445l-413 -195l413 -195v390'], + 0x22B3: [527,27,697,80,617,'617 226l-537 -253v554l537 -253v-48zM545 250l-413 195v-390'], + 0x22B4: [570,70,696,80,616,'616 72l-536 225v48l536 225v-498zM564 492l-407 -171l407 -171v342zM616 -70h-536v52h536v-52'], + 0x22B5: [570,70,696,80,616,'616 297l-536 -225v498l536 -225v-48zM539 321l-407 171v-342zM616 -70h-536v52h536v-52'], + 0x22B8: [400,-100,810,80,730,'730 250c0 -83 -67 -150 -150 -150c-74 0 -135 54 -148 124h-352v52h352c13 70 74 124 148 124c83 0 150 -67 150 -150zM686 250c0 59 -47 106 -106 106s-106 -47 -106 -106s47 -106 106 -106s106 47 106 106'], + 0x22BA: [650,0,660,80,580,'580 598h-224v-598h-52v598h-224v52h500v-52'], + 0x22BB: [526,26,660,80,580,'580 526l-224 -407h-52l-224 407h59l191 -346l191 346h59zM580 -26h-500v52h500v-52'], + 0x22BC: [526,26,660,80,580,'580 -26h-59l-191 346l-191 -346h-59l224 407h52zM580 474h-500v52h500v-52'], + 0x22C4: [448,-52,557,80,477,'422 250l-144 143l-143 -143l143 -143zM477 232l-180 -180h-37l-180 180v36l180 180h36l181 -180v-36'], + 0x22C5: [306,-194,272,80,192,'192 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x22C6: [420,-110,486,80,406,'406 298l-110 -65l51 -118l-8 -5l-96 84l-96 -84l-8 5l51 118l-110 65l3 9l127 -12l28 125h10l28 -125l127 12'], + 0x22C8: [445,-55,566,80,486,'246 250l-114 114v-228zM434 364l-114 -114l114 -114v228zM486 99l-45 -44l-158 158l-159 -158l-44 44v302l44 44l159 -158l158 158l44 -44'], + 0x22C9: [445,-55,558,80,478,'478 408l-158 -158l158 -158l-37 -37l-158 158l-159 -158l-44 44v302l44 44l159 -158l158 158zM246 250l-114 114v-228'], + 0x22CA: [445,-55,558,80,478,'478 401v-302l-44 -44l-159 158l-158 -158l-37 37l158 158l-158 158l37 37l158 -158l159 158zM426 364l-114 -114l114 -114v228'], + 0x22CB: [445,-55,550,80,470,'470 92l-36 -37l-159 158l-158 -158l-37 37l158 158l-158 158l37 37'], + 0x22CC: [445,-55,550,80,470,'470 92l-36 -37l-159 158l-158 -158l-37 37l354 353l36 -37l-158 -158'], + 0x22CD: [415,-128,660,80,580,'580 128h-500v52h500v-52zM571 287l-18 -10c-26 51 -61 67 -96 77c-7 2 -15 3 -22 3c-32 0 -63 -18 -93 -34c-38 -20 -78 -39 -120 -39c-11 0 -22 1 -33 4c-44 12 -67 54 -100 117l18 10c26 -51 61 -67 96 -77c7 -2 15 -3 22 -3c32 0 63 18 93 34c38 20 78 39 120 39 c11 0 22 -1 33 -4c44 -12 67 -54 100 -117'], + 0x22CE: [500,-1,683,80,603,'603 500c-146 -127 -240 -306 -236 -499h-52c4 193 -90 372 -235 499h80c89 -78 149 -181 181 -294c32 113 92 216 182 294h80'], + 0x22CF: [499,0,683,80,603,'603 0h-80c-89 78 -150 181 -181 294c-32 -113 -93 -216 -182 -294h-80c146 127 239 306 236 499h52c-4 -193 89 -372 235 -499'], + 0x22D0: [500,0,678,80,598,'598 0h-268c-138 0 -250 112 -250 250s112 250 250 250h268v-52h-268c-109 0 -198 -89 -198 -198s89 -198 198 -198h268v-52zM598 122h-268c-71 0 -128 57 -128 128s57 128 128 128h268v-52h-268c-42 0 -76 -34 -76 -76s34 -76 76 -76h268v-52'], + 0x22D1: [500,0,678,80,598,'598 250c0 -138 -112 -250 -250 -250h-268v52h268c109 0 198 89 198 198s-89 198 -198 198h-268v52h268c138 0 250 -112 250 -250zM476 250c0 -71 -57 -128 -128 -128h-268v52h268c42 0 76 34 76 76s-34 76 -76 76h-268v52h268c71 0 128 -57 128 -128'], + 0x22D2: [518,0,660,80,580,'580 0h-52v268c0 109 -89 198 -198 198s-198 -89 -198 -198v-268h-52v268c0 138 112 250 250 250s250 -112 250 -250v-268zM458 0h-52v268c0 42 -34 76 -76 76s-76 -34 -76 -76v-268h-52v268c0 71 57 128 128 128s128 -57 128 -128v-268'], + 0x22D3: [500,18,660,80,580,'580 232c0 -138 -112 -250 -250 -250s-250 112 -250 250v268h52v-268c0 -109 89 -198 198 -198s198 89 198 198v268h52v-268zM458 232c0 -71 -57 -128 -128 -128s-128 57 -128 128v268h52v-268c0 -42 34 -76 76 -76s76 34 76 76v268h52v-268'], + 0x22D6: [515,15,666,80,586,'586 -15l-506 239v52l506 239v-58l-439 -207l439 -207v-58zM510 250c0 -31 -25 -56 -56 -56c-30 0 -56 25 -56 56s26 56 56 56c31 0 56 -25 56 -56'], + 0x22D7: [515,15,666,80,586,'586 224l-506 -239v58l439 207l-439 207v58l506 -239v-52zM267 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x22D8: [517,17,1082,80,1002,'448 -17l-368 241v52l368 241v-62l-313 -205l313 -205v-62zM725 -17l-368 241v52l368 241v-62l-313 -205l313 -205v-62zM1002 -17l-368 241v52l368 241v-62l-312 -205l312 -205v-62'], + 0x22D9: [517,17,1082,80,1002,'1002 224l-368 -241v62l313 205l-313 205v62l368 -241v-52zM725 224l-368 -241v62l313 205l-313 205v62l368 -241v-52zM448 224l-368 -241v62l313 205l-313 205v62l368 -241v-52'], + 0x22DA: [756,256,665,80,585,'585 306l-505 199v52l505 199v-56l-429 -169l429 -169v-56zM585 224h-505v52h505v-52zM585 -57l-505 -199v56l429 169l-429 169v56l505 -199v-52'], + 0x22DB: [756,256,665,80,585,'585 505l-505 -199v56l429 169l-429 169v56l505 -199v-52zM585 224h-505v52h505v-52zM585 -256l-505 199v52l505 199v-56l-429 -169l429 -169v-56'], + 0x22DE: [631,131,682,80,602,'602 393c-92 -120 -219 -206 -361 -247c142 -40 269 -126 361 -246l-41 -31c-116 150 -291 243 -481 251v52c190 9 365 101 481 252zM553 612c-80 -200 -266 -327 -472 -339v52c185 11 351 127 424 306'], + 0x22DF: [631,131,682,80,602,'602 120c-190 -8 -365 -101 -481 -251l-41 31c92 120 219 206 361 246c-142 41 -269 127 -361 247l41 31c116 -151 291 -243 481 -252v-52zM601 273c-206 12 -392 139 -472 339l48 19c73 -179 239 -295 424 -306v-52'], + 0x22E0: [657,157,682,80,602,'602 107l-41 -31c-54 71 -122 129 -198 171l-32 -98c98 -59 177 -148 222 -261l-48 -19c-39 98 -107 177 -190 230l-83 -256h-47l91 279c-60 31 -126 49 -195 53v52c74 -4 146 -23 211 -56l31 96c-75 36 -158 57 -243 61v52c112 5 219 39 312 97l58 180h47l-45 -137 c40 32 77 70 109 111l41 -31c-50 -65 -110 -120 -177 -163l-46 -140c86 -46 162 -110 223 -190zM368 404c-41 -21 -83 -38 -127 -50c34 -10 67 -22 99 -37'], + 0x22E1: [657,157,682,80,602,'602 328c-59 -3 -116 -14 -171 -32l-40 -124c65 32 136 51 210 55v-52c-84 -5 -164 -31 -234 -76l-83 -256h-46l68 209c-55 -49 -100 -111 -129 -183l-48 19c42 106 115 192 205 251l45 137c-101 -43 -190 -111 -258 -200l-41 31c83 109 194 189 319 233l8 24 c-128 44 -243 126 -327 236l41 31c78 -101 184 -177 302 -217l80 243h46l-84 -256c45 -12 90 -19 137 -21v-52'], + 0x22E6: [585,125,665,80,585,'585 109l-505 212v52l505 212v-56l-433 -182l433 -182v-56zM574 53c-33 -64 -57 -106 -101 -118c-11 -3 -22 -4 -33 -4c-35 0 -69 13 -102 30l-53 -86h-52l66 106c-23 12 -47 23 -72 23c-7 0 -14 -1 -21 -3c-35 -10 -70 -26 -96 -76l-18 9c33 64 56 105 100 117 c11 3 22 5 33 5c35 0 69 -14 102 -31l54 87h52l-67 -107c23 -12 47 -23 72 -23c7 0 14 1 22 3c34 10 69 26 96 77'], + 0x22E7: [585,125,665,80,585,'585 321l-505 -212v56l433 182l-433 182v56l505 -212v-52zM574 53c-33 -64 -57 -106 -101 -118c-11 -3 -22 -4 -33 -4c-35 0 -69 13 -102 30l-53 -86h-52l66 106c-23 12 -47 23 -72 23c-7 0 -14 -1 -21 -3c-35 -10 -70 -26 -96 -76l-18 9c33 64 56 105 100 117 c11 3 22 5 33 5c35 0 69 -14 102 -31l54 87h52l-67 -107c23 -12 47 -23 72 -23c7 0 14 1 22 3c34 10 69 26 96 77'], + 0x22E8: [599,139,655,80,575,'575 567c-85 -106 -199 -182 -327 -220c128 -37 242 -113 327 -220l-41 -32c-110 139 -277 222 -454 226v52c177 5 344 88 454 226zM568 39c-33 -64 -56 -106 -100 -118c-11 -3 -22 -4 -33 -4c-35 0 -69 13 -102 30l-54 -86h-51l66 106c-23 13 -47 23 -72 23 c-7 0 -14 -1 -21 -3c-35 -10 -70 -26 -97 -76l-17 9c33 64 56 105 100 117c11 3 22 5 33 5c35 0 69 -14 102 -31l54 87h51l-66 -107c23 -12 47 -23 72 -23c7 0 14 1 22 3c34 10 69 26 96 77'], + 0x22E9: [599,139,655,80,575,'575 321c-177 -4 -344 -87 -454 -226l-41 32c85 107 199 183 327 220c-128 38 -242 114 -327 220l41 32c110 -138 277 -221 454 -226v-52zM568 39c-33 -64 -56 -106 -100 -118c-11 -3 -22 -4 -33 -4c-35 0 -69 13 -102 30l-54 -86h-51l66 106c-23 13 -47 23 -72 23 c-7 0 -14 -1 -21 -3c-35 -10 -70 -26 -97 -76l-17 9c33 64 56 105 100 117c11 3 22 5 33 5c35 0 69 -14 102 -31l54 87h51l-66 -107c23 -12 47 -23 72 -23c7 0 14 1 22 3c34 10 69 26 96 77'], + 0x22EA: [650,150,697,80,617,'617 527v-554l-244 115l-78 -238h-46l84 257l-253 119v48l362 171l67 205h46l-58 -180zM565 445l-90 -43l-86 -264l176 -83v390zM420 377l-268 -127l197 -93'], + 0x22EB: [650,150,697,80,617,'617 226l-362 -171l-67 -205h-46l58 180l-120 -57v554l244 -115l78 238h46l-84 -257l253 -119v-48zM545 250l-197 93l-71 -220zM308 362l-176 83v-390l90 43'], + 0x22EC: [622,122,696,80,616,'616 -70h-349l-17 -52h-46l17 52h-141v52h158l71 219l-229 96v48l319 134l47 143h46l-39 -120l163 68v-498l-266 112l-66 -202h332v-52zM564 492l-132 -56l-66 -203l198 -83v342zM378 414l-221 -93l168 -71'], + 0x22ED: [622,122,696,80,616,'616 -70h-349l-17 -52h-46l17 52h-141v52h158l59 181l-217 -91v498l307 -129l59 181h46l-64 -198l188 -79v-48l-266 -112l-66 -203h332v-52zM539 321l-127 53l-41 -123zM371 392l-239 100v-342l186 78'], + 0x22EE: [605,105,272,80,192,'192 -49c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 549c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x22EF: [306,-194,869,80,789,'192 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM491 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM789 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x22F1: [517,17,694,80,614,'403 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 461c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM614 39c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2308: [668,150,387,120,307,'307 668v-36h-125v-782h-62v818h187'], + 0x2309: [668,150,387,80,267,'267 -150h-62v782h-125v36h187v-818'], + 0x230A: [650,168,387,120,307,'307 -168h-187v818h62v-782h125v-36'], + 0x230B: [650,168,387,80,267,'267 650v-818h-187v36h125v782h62'], + 0x2322: [354,-146,978,80,898,'898 155l-18 -9c-47 94 -226 156 -391 156s-344 -62 -391 -156l-18 9c51 102 230 199 409 199s358 -97 409 -199'], + 0x2323: [354,-146,978,80,898,'898 345c-51 -102 -230 -199 -409 -199s-358 97 -409 199l18 9c47 -94 226 -156 391 -156s344 62 391 156'], + 0x23B4: [726,-548,375,0,375,'375 726v-178h-36v126h-303v-126h-36v178h375'], + 0x23B5: [-98,276,375,0,375,'375 -276h-375v178h36v-126h303v126h36v-178'], + 0x23D0: [527,0,212,80,132,'132 0h-52v527h52v-527'], + 0x23DC: [699,-595,514,0,514,'514 609l-14 -14c-37 37 -139 52 -222 52h-42c-83 0 -185 -15 -222 -52l-14 14c41 41 144 90 236 90h42c92 0 195 -49 236 -90'], + 0x23DD: [-145,249,514,0,514,'514 -159c-41 -41 -144 -90 -236 -90h-42c-92 0 -195 49 -236 90l14 14c37 -37 139 -52 222 -52h42c83 0 185 15 222 52'], + 0x23DE: [739,-559,520,0,520,'520 561l-20 -2c-3 39 -40 64 -73 64h-84c-37 0 -68 30 -83 70c-15 -40 -46 -70 -83 -70h-84c-33 0 -70 -25 -73 -64l-20 2c5 59 43 114 93 114h84c33 0 70 25 73 64h20c3 -39 40 -64 73 -64h84c50 0 88 -55 93 -114'], + 0x23DF: [-109,289,520,0,520,'520 -111c-5 -59 -43 -114 -93 -114h-84c-33 0 -70 -25 -73 -64h-20c-3 39 -40 64 -73 64h-84c-50 0 -88 55 -93 114l20 2c3 -39 40 -64 73 -64h84c37 0 68 -30 83 -70c15 40 46 70 83 70h84c33 0 70 25 73 64'], + 0x23E0: [717,-579,562,0,562,'562 579h-62l-76 76h-286l-76 -76h-62l138 138h286'], + 0x23E1: [-129,267,562,0,562,'562 -129l-138 -138h-286l-138 138h62l76 -76h286l76 76h62'], + 0x250C: [276,150,500,224,500,'500 224h-224v-374h-52v400l26 26h250v-52'], + 0x2510: [276,150,500,0,276,'276 -150h-52v374h-224v52h250l26 -26v-400'], + 0x2514: [650,-224,500,224,500,'500 224h-250l-26 26v400h52v-374h224v-52'], + 0x2518: [650,-224,500,0,276,'276 250l-26 -26h-250v52h224v374h52v-400'], + 0x25A0: [500,0,660,80,580,'580 500v-500h-500v500h500'], + 0x25A1: [500,0,660,80,580,'580 500v-500h-500v500h500zM528 52v396h-396v-396h396'], + 0x25B2: [656,-47,862,80,782,'782 47h-702l351 609'], + 0x25B3: [656,-47,862,80,782,'782 47h-702l351 609zM692 99l-261 453l-261 -453h522'], + 0x25B6: [601,101,768,80,688,'688 250l-608 -351v702'], + 0x25BC: [453,156,862,80,782,'782 453l-351 -609l-351 609h702'], + 0x25BD: [453,156,862,80,782,'782 453l-351 -609l-351 609h702zM692 401h-522l261 -453'], + 0x25C0: [601,101,768,80,688,'688 -101l-608 351l608 351v-702'], + 0x25CA: [555,55,564,80,484,'432 250l-150 242l-149 -242l149 -242zM484 236l-180 -291h-44l-180 291v28l180 291h44l180 -291v-28'], + 0x25EF: [668,168,996,80,916,'916 250c0 -231 -187 -418 -418 -418s-418 187 -418 418s187 418 418 418s418 -187 418 -418zM864 250c0 202 -164 366 -366 366s-366 -164 -366 -366s164 -366 366 -366s366 164 366 366'], + 0x2660: [668,0,796,80,716,'716 250c0 -85 -51 -164 -129 -164c-45 0 -88 19 -119 52h-25c4 -40 20 -78 47 -108l-14 -30h-78h-78l-14 30c27 30 43 68 47 108h-25c-31 -33 -74 -52 -119 -52c-78 0 -129 79 -129 164c0 97 59 165 128 228c64 58 138 113 174 190h32c36 -77 110 -132 174 -190 c69 -63 128 -131 128 -228'], + 0x2661: [668,0,760,80,680,'680 487c0 -102 -52 -182 -115 -260c-60 -73 -129 -142 -169 -227h-32c-40 85 -109 154 -169 227c-63 78 -115 158 -115 260c0 95 61 181 150 181c64 0 121 -35 150 -89c29 54 86 89 150 89c89 0 150 -86 150 -181zM644 487c0 75 -44 145 -114 145 c-64 0 -119 -45 -132 -108h-36c-13 63 -68 108 -132 108c-70 0 -114 -70 -114 -145c0 -93 49 -166 107 -237c54 -66 115 -130 157 -203c42 73 103 137 157 203c58 71 107 144 107 237'], + 0x2662: [670,0,782,80,702,'702 326c-62 -47 -119 -100 -171 -158c-46 -52 -88 -108 -125 -168h-30c-37 60 -79 116 -126 168c-51 58 -108 111 -170 158c62 50 119 106 171 167c46 55 88 115 124 177h32c36 -62 77 -122 124 -177c51 -61 108 -117 171 -167zM645 327c-51 44 -98 92 -142 143 c-41 49 -79 101 -112 156c-34 -55 -71 -107 -113 -156c-43 -51 -90 -99 -141 -143c50 -41 97 -86 140 -135c42 -46 80 -96 114 -149c34 53 72 103 114 149c43 49 89 94 140 135'], + 0x2663: [668,0,822,80,742,'742 224c0 -83 -59 -148 -129 -148c-65 0 -120 56 -128 130h-30c4 -73 26 -144 65 -206h-109h-109c39 62 61 133 65 206h-30c-8 -74 -63 -130 -128 -130c-70 0 -129 65 -129 148c0 82 59 148 129 148c24 0 46 -8 65 -21l39 57c-33 27 -53 67 -53 112c0 82 67 148 151 148 s151 -66 151 -148c0 -45 -20 -85 -53 -112l39 -57c19 13 41 21 65 21c70 0 129 -66 129 -148'], + 0x266D: [650,35,424,80,344,'344 250c0 -142 -127 -243 -264 -285v685h36v-310c19 27 48 44 84 44c76 0 144 -56 144 -134zM258 250c0 40 -20 82 -58 82c-35 0 -68 -15 -84 -42v-273c88 43 142 135 142 233'], + 0x266E: [650,150,399,80,319,'319 497v-647h-36v223l-203 -70v647h36v-223zM283 164v229l-167 -57v-229'], + 0x266F: [678,178,493,80,413,'413 101l-65 -22v-201h-36v188l-131 -44v-200h-36v187l-65 -22v92l65 22v228l-65 -22v92l65 22v201h36v-188l131 44v200h36v-187l65 22v-92l-65 -22v-228l65 22v-92zM312 386l-131 -44v-228l131 44v228'], + 0x2713: [650,0,752,80,672,'672 650c-98 -87 -182 -189 -244 -303c-58 -107 -98 -224 -116 -347h-34h-35c-26 112 -89 210 -163 298h130c41 -49 71 -104 94 -163c23 80 53 157 93 229c57 106 130 205 221 286h54'], + 0x2720: [662,0,822,80,742,'742 104h-20c-23 131 -154 209 -293 209c0 -139 78 -270 209 -293v-20h-227h-227v20c131 23 209 154 209 293c-139 0 -270 -78 -293 -209h-20v227v227h20c23 -131 154 -209 293 -209c0 139 -78 270 -209 293v20h227h227v-20c-131 -23 -209 -154 -209 -293 c139 0 270 78 293 209h20v-227v-227'], + 0x27E8: [656,156,357,80,277,'277 -144l-34 -12l-163 406l163 406l34 -12l-141 -394'], + 0x27E9: [656,156,357,80,277,'277 250l-163 -406l-34 12l141 394l-141 394l34 12'], + 0x27EE: [657,157,320,120,240,'240 643c-44 -44 -58 -207 -58 -360v-66c0 -153 14 -316 58 -360l-14 -14c-47 47 -106 211 -106 374v66c0 163 59 327 106 374'], + 0x27EF: [657,157,320,80,200,'200 217c0 -163 -59 -327 -106 -374l-14 14c44 44 58 207 58 360v66c0 153 -14 316 -58 360l14 14c47 -47 106 -211 106 -374v-66'], + 0x27F5: [430,-70,1170,80,1090,'1090 224h-919l154 -154h-65l-180 180l180 180h65l-154 -154h919v-52'], + 0x27F6: [430,-70,1170,80,1090,'1090 250l-180 -180h-65l154 154h-919v52h919l-154 154h65'], + 0x27F7: [430,-70,1360,80,1280,'1280 250l-180 -180h-65l154 154h-1018l154 -154h-65l-180 180l180 180h65l-154 -154h1018l-154 154h65'], + 0x27F8: [470,-30,1170,80,1090,'1090 148h-843l118 -118h-65l-220 220l220 220h65l-118 -118h843v-52h-895l-50 -50l50 -50h895v-52'], + 0x27F9: [470,-30,1170,80,1090,'1090 250l-220 -220h-65l118 118h-843v52h895l50 50l-50 50h-895v52h843l-118 118h65'], + 0x27FA: [470,-30,1360,80,1280,'1280 250l-220 -220h-65l118 118h-866l118 -118h-65l-220 220l220 220h65l-118 -118h866l-118 118h65zM1215 250l-50 50h-970l-50 -50l50 -50h970'], + 0x27FC: [430,-70,1170,80,1090,'1090 250l-180 -180h-65l154 154h-873v-154h-46v360h46v-154h873l-154 154h65'], + 0x2A3F: [662,0,761,24,737,'737 0h-713v19c77 7 88 18 88 90v444c0 71 -13 84 -88 90v19h278v-19c-78 -5 -88 -17 -88 -101v-433c0 -50 4 -65 26 -65h281c23 0 26 15 26 65v444c0 71 -13 84 -88 90v19h278v-19c-78 -5 -88 -17 -88 -101v-433c0 -72 11 -83 88 -90v-19'], + 0x2A7D: [599,99,666,80,586,'586 69l-506 239v52l506 239v-58l-439 -207l439 -207v-58zM586 -99l-500 236v58l500 -236v-58'], + 0x2A7E: [599,99,666,80,586,'586 308l-506 -239v58l439 207l-439 207v58l506 -239v-52zM580 137l-500 -236v58l500 236v-58'], + 0x2A85: [646,136,665,80,585,'585 196l-505 199v52l505 199v-56l-429 -169l429 -169v-56zM573 130c-28 -59 -53 -99 -104 -111c-10 -2 -19 -3 -28 -3c-42 0 -83 20 -121 41c-36 20 -73 43 -112 33c-41 -9 -76 -22 -99 -68l-18 9c29 58 54 98 105 110c9 2 19 3 28 3c42 0 83 -20 121 -41 c35 -20 73 -42 112 -33c40 9 76 22 98 69zM573 -22c-28 -59 -53 -99 -104 -111c-10 -2 -19 -3 -28 -3c-42 0 -83 20 -121 41c-36 20 -73 43 -112 33c-41 -9 -76 -22 -99 -68l-18 9c29 58 54 98 105 110c9 2 19 3 28 3c42 0 83 -20 121 -41c35 -20 73 -42 112 -33 c40 9 76 22 98 69'], + 0x2A86: [646,136,665,80,585,'585 395l-505 -199v56l429 169l-429 169v56l505 -199v-52zM573 130c-28 -59 -53 -99 -104 -111c-10 -2 -19 -3 -28 -3c-42 0 -83 20 -121 41c-36 20 -73 43 -112 33c-41 -9 -76 -22 -99 -68l-18 9c29 58 54 98 105 110c9 2 19 3 28 3c42 0 83 -20 121 -41 c35 -20 73 -42 112 -33c40 9 76 22 98 69zM573 -22c-28 -59 -53 -99 -104 -111c-10 -2 -19 -3 -28 -3c-42 0 -83 20 -121 41c-36 20 -73 43 -112 33c-41 -9 -76 -22 -99 -68l-18 9c29 58 54 98 105 110c9 2 19 3 28 3c42 0 83 -20 121 -41c35 -20 73 -42 112 -33 c40 9 76 22 98 69'], + 0x2A87: [593,93,665,80,585,'585 116l-505 213v51l505 213v-57l-433 -181l433 -182v-57zM585 -26h-238l-21 -67h-46l21 67h-221v52h238l22 67h46l-22 -67h221v-52'], + 0x2A88: [593,93,665,80,585,'585 329l-505 -213v57l433 182l-433 181v57l505 -213v-51zM585 -26h-238l-21 -67h-46l21 67h-221v52h238l22 67h46l-22 -67h221v-52'], + 0x2A89: [646,186,665,80,585,'585 196l-505 199v52l505 199v-56l-429 -169l429 -169v-56zM573 -22c-28 -59 -53 -99 -104 -111c-10 -2 -19 -3 -28 -3c-42 0 -83 20 -121 41l-6 4l-42 -95h-48l51 115c-22 9 -44 15 -67 9c-41 -9 -76 -22 -99 -68l-18 9c29 58 54 98 105 110c9 2 19 3 28 3 c25 0 49 -6 72 -16l34 76l-10 5c-36 20 -73 43 -112 33c-41 -9 -76 -22 -99 -68l-18 9c29 58 54 98 105 110c9 2 19 3 28 3c42 0 83 -20 121 -41l6 -3l42 94h48l-51 -115c22 -9 44 -15 67 -9c40 9 76 22 98 69l18 -9c-28 -59 -53 -99 -104 -111c-10 -2 -19 -3 -28 -3 c-25 0 -49 7 -72 17l-34 -77l10 -5c35 -20 73 -42 112 -33c40 9 76 22 98 69'], + 0x2A8A: [646,186,665,80,585,'585 395l-505 -199v56l429 169l-429 169v56l505 -199v-52zM573 -22c-28 -59 -53 -99 -104 -111c-10 -2 -19 -3 -28 -3c-42 0 -83 20 -121 41l-6 4l-42 -95h-48l51 115c-22 9 -44 15 -67 9c-41 -9 -76 -22 -99 -68l-18 9c29 58 54 98 105 110c9 2 19 3 28 3 c25 0 49 -6 72 -16l34 76l-10 5c-36 20 -73 43 -112 33c-41 -9 -76 -22 -99 -68l-18 9c29 58 54 98 105 110c9 2 19 3 28 3c42 0 83 -20 121 -41l6 -3l42 94h48l-51 -115c22 -9 44 -15 67 -9c40 9 76 22 98 69l18 -9c-28 -59 -53 -99 -104 -111c-10 -2 -19 -3 -28 -3 c-25 0 -49 7 -72 17l-34 -77l10 -5c35 -20 73 -42 112 -33c40 9 76 22 98 69'], + 0x2A8B: [819,319,665,80,585,'585 369l-505 199v52l505 199v-56l-429 -169l429 -169v-56zM585 287h-505v52h505v-52zM585 161h-505v52h505v-52zM585 -120l-505 -199v56l429 169l-429 169v56l505 -199v-52'], + 0x2A8C: [819,319,665,80,585,'585 568l-505 -199v56l429 169l-429 169v56l505 -199v-52zM585 287h-505v52h505v-52zM585 161h-505v52h505v-52zM585 -319l-505 199v52l505 199v-56l-429 -169l429 -169v-56'], + 0x2A95: [599,99,666,80,586,'586 -99l-506 239v52l506 239v-58l-439 -207l439 -207v-58zM586 541l-500 -236v58l500 236v-58'], + 0x2A96: [599,99,666,80,586,'586 140l-506 -239v58l439 207l-439 207v58l506 -239v-52zM580 305l-500 236v58l500 -236v-58'], + 0x2AAF: [604,94,682,80,602,'602 80l-41 -32c-116 151 -291 243 -481 252v52c190 9 365 101 481 252l41 -32c-92 -120 -219 -205 -361 -246c142 -41 269 -126 361 -246zM602 -94h-522v52h522v-52'], + 0x2AB0: [604,94,682,80,602,'602 300c-190 -9 -366 -101 -481 -252l-41 32c92 120 219 205 361 246c-142 41 -269 126 -361 246l41 32c115 -151 291 -243 481 -252v-52zM602 -94h-522v52h522v-52'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Marks/Regular/Main.js new file mode 100644 index 0000000..673173c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Marks/Regular/Main.js @@ -0,0 +1,104 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'GyreTermesMathJax_Marks', + id: 'GYRETERMESMARKS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2DB: [17,245,333,81,261,'261 -164c-18 -39 -46 -81 -103 -81c-43 0 -77 38 -77 86c0 40 14 75 36 104c20 28 49 52 77 72h29c-45 -41 -81 -85 -81 -149c0 -36 16 -61 46 -61c26 0 42 23 54 43'], + 0x2DD: [676,-505,333,37,427,'427 644c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32zM261 644c0 -16 -9 -29 -30 -42l-154 -97h-40l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32'], + 0x305: [632,-588,0,-416,-83,'-83 588h-333v44h333v-44'], + 0x309: [704,-517,0,-348,-151,'-151 646c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53 c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0x30F: [711,-540,0,-510,-120,'-286 540h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23zM-120 540h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0x311: [692,-567,0,-425,-75,'-75 573l-18 -6c-21 60 -90 81 -157 81s-136 -21 -157 -81l-18 6c24 74 97 119 175 119s151 -45 175 -119'], + 0x323: [-89,191,0,-301,-199,'-199 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x326: [-38,281,0,-319,-180,'-180 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x32C: [-70,204,0,-421,-79,'-79 -87c-54 -44 -111 -83 -171 -117c-60 34 -117 73 -171 117l10 17c55 -25 109 -53 161 -83c52 30 106 58 161 83'], + 0x32D: [-80,214,0,-421,-79,'-79 -197l-10 -17c-55 25 -109 53 -161 83c-52 -30 -106 -58 -161 -83l-10 17c54 44 111 83 171 117c60 -34 117 -73 171 -117'], + 0x32E: [-70,195,0,-425,-75,'-75 -76c-24 -74 -97 -119 -175 -119s-151 45 -175 119l18 6c21 -60 90 -81 157 -81s136 21 157 81'], + 0x32F: [-88,213,0,-425,-75,'-75 -207l-18 -6c-21 60 -90 81 -157 81s-136 -21 -157 -81l-18 6c24 74 97 119 175 119s151 -45 175 -119'], + 0x330: [-88,197,0,-417,-83,'-83 -93c-14 -53 -28 -85 -64 -97c-9 -3 -18 -4 -26 -4c-31 0 -61 15 -89 33c-24 15 -50 33 -77 24c-26 -9 -48 -22 -59 -60l-19 5c14 52 28 85 64 97c9 3 18 4 26 4c31 0 61 -16 89 -33c24 -15 50 -33 77 -24c26 8 48 22 59 60'], + 0x331: [-113,167,0,-405,-94,'-94 -167h-311v54h311v-54'], + 0x332: [-70,114,0,-416,-83,'-83 -114h-333v44h333v-44'], + 0x333: [-70,228,0,-416,-83,'-83 -114h-333v44h333v-44zM-83 -228h-333v44h333v-44'], + 0x33F: [746,-588,0,-416,-83,'-83 588h-333v44h333v-44zM-83 702h-333v44h333v-44'], + 0x2000: [0,0,500,0,0,''], + 0x2001: [0,0,1000,0,0,''], + 0x2007: [0,0,500,0,0,''], + 0x2008: [0,0,250,0,0,''], + 0x200B: [0,0,0,0,0,''], + 0x200C: [0,0,0,0,0,''], + 0x200D: [0,0,0,0,0,''], + 0x2010: [257,-194,333,39,285,'285 194h-246v63h246v-63'], + 0x2012: [357,-305,660,80,580,'580 305h-500v52h500v-52'], + 0x2015: [276,-224,1160,80,1080,'1080 224h-1000v52h1000v-52'], + 0x2017: [-70,228,493,80,413,'413 -114h-333v44h333v-44zM413 -228h-333v44h333v-44'], + 0x201A: [102,141,333,79,218,'218 13c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x201E: [102,141,444,45,416,'184 13c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89zM416 13c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14 c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0x2022: [400,-100,460,80,380,'380 250c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150s150 -67 150 -150'], + 0x202F: [0,0,200,0,0,''], + 0x2030: [676,13,1000,14,986,'666 186c0 -95 -45 -186 -124 -186c-86 0 -146 87 -146 185c0 97 60 186 146 186c79 0 124 -91 124 -185zM458 676l-191 -689h-45l175 633c-31 -15 -66 -22 -100 -22c-15 0 -30 1 -45 4c21 -34 32 -81 32 -127c0 -95 -45 -186 -124 -186c-86 0 -146 87 -146 185 c0 97 60 186 146 186c26 0 49 -10 68 -28c18 -6 37 -9 57 -9c52 0 106 11 135 53h38zM986 186c0 -95 -45 -186 -124 -186c-86 0 -146 87 -146 185c0 97 60 186 146 186c79 0 124 -91 124 -185zM640 185c0 76 -26 154 -87 154c-60 0 -80 -79 -80 -154c0 -76 20 -155 80 -155 c61 0 87 78 87 155zM258 474c0 56 -15 114 -47 140c-10 3 -20 8 -29 13c-4 1 -7 1 -11 1c-60 0 -80 -79 -80 -154c0 -76 20 -155 80 -155c61 0 87 78 87 155zM960 185c0 76 -26 154 -87 154c-60 0 -80 -79 -80 -154c0 -76 20 -155 80 -155c61 0 87 78 87 155'], + 0x2031: [676,13,1320,14,1306,'666 186c0 -95 -45 -186 -124 -186c-86 0 -146 87 -146 185c0 97 60 186 146 186c79 0 124 -91 124 -185zM458 676l-191 -689h-45l175 633c-31 -15 -66 -22 -100 -22c-15 0 -30 1 -45 4c21 -34 32 -81 32 -127c0 -95 -45 -186 -124 -186c-86 0 -146 87 -146 185 c0 97 60 186 146 186c26 0 49 -10 68 -28c18 -6 37 -9 57 -9c52 0 106 11 135 53h38zM986 186c0 -95 -45 -186 -124 -186c-86 0 -146 87 -146 185c0 97 60 186 146 186c79 0 124 -91 124 -185zM640 185c0 76 -26 154 -87 154c-60 0 -80 -79 -80 -154c0 -76 20 -155 80 -155 c61 0 87 78 87 155zM258 474c0 56 -15 114 -47 140c-10 3 -20 8 -29 13c-4 1 -7 1 -11 1c-60 0 -80 -79 -80 -154c0 -76 20 -155 80 -155c61 0 87 78 87 155zM960 185c0 76 -26 154 -87 154c-60 0 -80 -79 -80 -154c0 -76 20 -155 80 -155c61 0 87 78 87 155zM1306 186 c0 -95 -45 -186 -124 -186c-86 0 -146 87 -146 185c0 97 60 186 146 186c79 0 124 -91 124 -185zM1280 185c0 76 -26 154 -87 154c-60 0 -80 -79 -80 -154c0 -76 20 -155 80 -155c61 0 87 78 87 155'], + 0x2036: [780,-450,521,60,461,'261 450h-22l-170 252c-6 8 -9 18 -9 28c0 28 22 50 50 50c22 0 40 -14 45 -28zM461 450h-22l-170 252c-6 8 -9 18 -9 28c0 28 22 50 50 50c22 0 40 -14 45 -28'], + 0x2037: [780,-450,721,60,661,'261 450h-22l-170 252c-6 8 -9 18 -9 28c0 28 22 50 50 50c22 0 40 -14 45 -28zM461 450h-22l-170 252c-6 8 -9 18 -9 28c0 28 22 50 50 50c22 0 40 -14 45 -28zM661 450h-22l-170 252c-6 8 -9 18 -9 28c0 28 22 50 50 50c22 0 40 -14 45 -28'], + 0x2039: [411,-33,333,57,278,'278 42c0 -5 -4 -9 -10 -9c-4 0 -6 1 -10 6c-57 56 -97 92 -170 156l-31 27l31 27c73 63 113 100 170 156c4 5 6 6 10 6c6 0 10 -4 10 -9c0 -12 -41 -77 -118 -170l-10 -12l10 -12c77 -92 118 -154 118 -166'], + 0x203A: [411,-33,333,45,266,'266 222l-31 -27c-73 -63 -113 -100 -170 -156c-4 -5 -6 -6 -10 -6c-6 0 -10 4 -10 9c0 12 41 77 118 170l10 12l-10 12c-77 92 -118 154 -118 166c0 5 4 9 10 9c4 0 6 -1 10 -6c57 -56 97 -92 170 -156'], + 0x203B: [514,14,564,18,546,'476 102l-46 -46l-148 147l-148 -147l-46 46l147 148l-147 148l46 46l148 -147l148 147l46 -46l-147 -148zM338 458c0 -30 -25 -56 -56 -56s-56 26 -56 56c0 31 25 56 56 56s56 -25 56 -56zM338 42c0 -31 -25 -56 -56 -56s-56 25 -56 56c0 30 25 56 56 56s56 -26 56 -56z M130 250c0 -31 -26 -56 -56 -56c-31 0 -56 25 -56 56s25 56 56 56c30 0 56 -25 56 -56zM546 250c0 -31 -25 -56 -56 -56c-30 0 -56 25 -56 56s26 56 56 56c31 0 56 -25 56 -56'], + 0x203D: [736,8,444,68,414,'291 44c0 -30 -23 -52 -55 -52c-30 0 -52 22 -52 51c0 32 23 56 53 56c29 0 54 -25 54 -55zM414 521c0 -41 -13 -77 -45 -126c-14 -21 -14 -21 -60 -77c-37 -47 -54 -87 -65 -154h-17c0 12 1 24 3 36l-9 144c-2 25 -8 78 -17 138c-9 59 -18 125 -21 160 c-36 -9 -64 -33 -64 -58c0 -8 5 -17 17 -31c15 -17 21 -29 21 -43c0 -24 -17 -41 -41 -41c-31 0 -48 22 -48 62c0 68 47 122 114 139c3 41 24 66 55 66s50 -24 53 -69c34 -9 66 -27 88 -49c23 -23 36 -59 36 -97zM322 526c0 35 -13 66 -35 88l-33 -316c1 2 2 5 3 8l28 64 c24 55 37 110 37 156'], + 0x2052: [662,0,500,28,472,'168 578c0 -39 -31 -70 -70 -70s-70 31 -70 70s31 70 70 70s70 -31 70 -70zM472 84c0 -39 -31 -70 -70 -70s-70 31 -70 70s31 70 70 70s70 -31 70 -70zM450 662l-368 -662h-32l368 662h32'], + 0x205F: [0,0,222,0,0,''], + 0x2060: [0,0,0,0,0,''], + 0x2061: [702,202,1008,52,956,'252 -202h-95v52h95v-52zM452 -202h-95v52h95v-52zM652 -202h-95v52h95v-52zM852 -202h-95v52h95v-52zM252 650h-95v52h95v-52zM452 650h-95v52h95v-52zM652 650h-95v52h95v-52zM852 650h-95v52h95v-52zM104 -97h-52v95h52v-95zM104 103h-52v95h52v-95zM104 303h-52v95 h52v-95zM104 503h-52v95h52v-95zM956 -97h-52v95h52v-95zM956 103h-52v95h52v-95zM956 303h-52v95h52v-95zM956 503h-52v95h52v-95zM490 449c0 -15 -12 -26 -27 -26s-25 10 -25 26c0 6 6 8 6 15c0 0 -4 2 -7 2c-27 0 -43 -34 -57 -109h56l-5 -28h-58l-36 -164 c-24 -100 -62 -153 -111 -153c-27 0 -47 17 -47 38c0 15 12 26 25 26c14 0 25 -11 25 -25c0 -6 -4 -10 -4 -14c0 0 2 -3 5 -3c20 0 35 28 47 81l44 214h-47l6 28h48c16 50 27 74 43 95c20 24 42 36 68 36c30 0 51 -17 51 -39zM639 37l-11 -16c-31 19 -44 31 -65 55 c-45 53 -64 102 -64 167c0 60 18 111 54 155c19 24 34 37 77 64l9 -16c-39 -31 -54 -49 -67 -79s-20 -71 -20 -122c0 -50 6 -87 17 -120c14 -37 27 -54 70 -88zM829 241c0 -60 -18 -111 -54 -156c-19 -23 -34 -37 -77 -64l-9 16c39 31 54 49 67 80c13 30 20 71 20 122 c0 50 -6 87 -17 120c-14 37 -27 54 -70 88l12 15c30 -19 43 -30 64 -54c45 -52 64 -102 64 -167'], + 0x2062: [0,0,0,0,0,''], + 0x2063: [0,0,0,0,0,''], + 0x2064: [0,0,0,0,0,''], + 0x20D0: [710,-600,0,-438,-62,'-62 600h-376v22l88 88h57l-66 -66h297v-44'], + 0x20D1: [710,-600,0,-438,-62,'-62 600h-376v44h297l-66 66h57l88 -88v-22'], + 0x20D2: [650,150,0,-272,-228,'-228 -150h-44v800h44v-800'], + 0x20D3: [500,0,0,-276,-224,'-224 0h-52v500h52v-500'], + 0x20D4: [768,-599,0,-452,-48,'-48 619l-41 -14c-24 66 -86 110 -156 110c-55 0 -97 -35 -137 -73l96 -5l-42 -38l-124 6l6 125l42 38l-5 -92c48 44 99 83 164 83c88 0 168 -56 197 -140'], + 0x20D5: [768,-599,0,-452,-48,'-48 605l-124 -6l-42 38l96 5c-40 38 -82 73 -137 73c-70 0 -132 -44 -156 -110l-41 14c29 84 109 140 197 140c65 0 116 -39 164 -83l-5 92l42 -38'], + 0x20D6: [710,-534,0,-443,-57,'-57 600h-307l66 -66h-57l-88 88l88 88h57l-66 -66h307v-44'], + 0x20D8: [400,-100,0,-400,-100,'-100 250c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150s150 -67 150 -150zM-144 250c0 59 -47 106 -106 106s-106 -47 -106 -106s47 -106 106 -106s106 47 106 106'], + 0x20DB: [660,-560,0,-500,0,'-400 610c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM-200 610c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM0 610c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50'], + 0x20DC: [660,-560,0,-600,100,'-500 610c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM-300 610c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM-100 610c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM100 610c0 -28 -22 -50 -50 -50 s-50 22 -50 50s22 50 50 50s50 -22 50 -50'], + 0x20DD: [668,168,0,-668,168,'168 250c0 -231 -187 -418 -418 -418s-418 187 -418 418s187 418 418 418s418 -187 418 -418zM116 250c0 202 -164 366 -366 366s-366 -164 -366 -366s164 -366 366 -366s366 164 366 366'], + 0x20DE: [650,150,0,-650,150,'150 650v-800h-800v800h800zM98 598h-696v-696h696v696'], + 0x20DF: [872,372,0,-872,372,'372 250l-622 -622l-622 622l622 622zM299 250l-549 549l-549 -549l549 -549'], + 0x20E1: [710,-534,0,-479,-21,'-21 622l-88 -88h-57l66 66h-300l66 -66h-57l-88 88l88 88h57l-66 -66h300l-66 66h57'], + 0x20E4: [735,209,0,-795,295,'295 -209h-1090l545 944zM205 -157l-455 788l-455 -788h910'], + 0x20E5: [650,150,0,-403,-97,'-97 -150h-46l-260 800h46'], + 0x20E6: [650,150,0,-344,-156,'-300 -150h-44v800h44v-800zM-156 -150h-44v800h44v-800'], + 0x20E8: [-70,170,0,-500,0,'-400 -120c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM-200 -120c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM0 -120c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50'], + 0x20E9: [726,-548,0,-438,-63,'-63 726v-178h-36v126h-303v-126h-36v178h375'], + 0x20EA: [430,-70,0,-595,95,'95 224h-599l154 -154h-65l-180 180l180 180h65l-154 -154h599v-52'], + 0x20EB: [650,150,0,-479,-21,'-172 650l-260 -800h-47l260 800h47zM-21 650l-260 -800h-47l260 800h47'], + 0x20EC: [-150,260,0,-438,-62,'-62 -150v-22l-88 -88h-57l66 66h-297v44h376'], + 0x20ED: [-150,260,0,-438,-62,'-62 -194h-297l66 -66h-57l-88 88v22h376v-44'], + 0x20EE: [-84,260,0,-443,-57,'-57 -194h-307l66 -66h-57l-88 88l88 88h57l-66 -66h307v-44'], + 0x20EF: [-84,260,0,-443,-57,'-57 -172l-88 -88h-57l66 66h-307v44h307l-66 66h57'], + 0x20F0: [747,-509,0,-356,-143,'-147 569c-9 -16 -29 -19 -39 -7c-15 19 -33 36 -54 49c1 -25 6 -49 15 -71c6 -15 -7 -31 -25 -31s-31 16 -25 31c9 22 14 46 15 71c-21 -13 -39 -30 -54 -49c-10 -12 -30 -9 -39 7c-9 15 -2 34 14 36c24 4 47 11 69 23c-22 12 -45 19 -69 23c-16 2 -23 21 -14 37 c9 15 29 18 39 6c15 -19 33 -36 54 -49c-1 25 -6 49 -15 71c-6 15 7 31 25 31s31 -16 25 -31c-9 -22 -14 -46 -15 -71c21 13 39 30 54 49c10 12 30 9 39 -6c9 -16 2 -35 -14 -37c-24 -4 -47 -11 -69 -23c22 -12 45 -19 69 -23c16 -2 23 -21 14 -36'], + 0x2E18: [503,241,444,30,376,'260 452c0 -32 -23 -56 -53 -56c-29 0 -54 25 -54 55s23 52 55 52c30 0 52 -22 52 -51zM376 -36c0 -68 -47 -122 -114 -139c-3 -41 -24 -66 -55 -66s-50 24 -53 69c-34 9 -66 27 -88 49c-23 23 -36 59 -36 97c0 41 13 77 45 126c14 21 14 21 60 77c37 47 54 87 65 154h17 c0 -12 -1 -24 -3 -36l9 -144c2 -25 8 -78 17 -138c9 -59 18 -125 21 -160c36 9 64 33 64 58c0 8 -5 17 -17 31c-15 17 -21 29 -21 43c0 24 17 41 41 41c31 0 48 -22 48 -62zM190 197c-1 -2 -2 -5 -3 -8l-28 -64c-24 -55 -37 -110 -37 -156c0 -35 13 -66 35 -88'], + 0x3016: [668,168,430,80,350,'297 -132c-73 92 -129 239 -129 349v66c0 110 56 257 129 349h-181v-764h181zM350 637c-81 -80 -146 -239 -146 -354v-66c0 -115 65 -274 146 -354l-13 -31h-257v836h257'], + 0x3017: [668,168,430,80,350,'314 -132v764h-181c73 -92 129 -239 129 -349v-66c0 -110 -56 -257 -129 -349h181zM350 -168h-257l-13 31c81 80 146 239 146 354v66c0 115 -65 274 -146 354l13 31h257v-836'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Marks/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Misc/Regular/Main.js new file mode 100644 index 0000000..8334322 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Misc/Regular/Main.js @@ -0,0 +1,37 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'GyreTermesMathJax_Misc', + id: 'GYRETERMESMISC', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x20A1: [745,83,667,28,633,'633 113c-59 -79 -154 -124 -264 -127l1 -69h-28v69c-189 9 -314 142 -314 339c0 114 41 209 117 272c56 46 126 74 196 78l1 70h28v-69c46 -1 93 -9 139 -24c16 -6 30 -9 40 -9c19 0 35 12 41 33h21l9 -226h-23c-19 65 -34 93 -66 125c-40 40 -91 61 -149 61h-12v-605 c7 -1 14 -1 22 -1c83 0 149 30 223 101zM342 633c-122 -20 -198 -131 -198 -295c0 -116 33 -206 92 -255c30 -25 66 -41 105 -48'], + 0x20A4: [676,8,500,12,490,'490 136c0 -17 -22 -61 -43 -85c-32 -37 -77 -58 -125 -58c-43 0 -76 14 -144 61c-40 -47 -63 -62 -98 -62c-41 0 -68 24 -68 62c0 46 37 76 91 76c15 0 27 -1 46 -5c3 8 4 14 4 21c0 13 -1 25 -9 85h-111v45h105c-2 15 -5 32 -9 72h-96v45h93l-3 49 c0 143 76 234 195 234c74 0 130 -40 130 -93c0 -31 -21 -53 -50 -53c-30 0 -38 14 -39 67c-1 35 -19 52 -56 52c-60 0 -95 -51 -95 -139c0 -28 1 -54 8 -117h138v-45h-133c1 -7 2 -13 3 -72h130v-45h-132c-3 -35 -10 -78 -23 -120c65 -27 100 -35 149 -35c46 0 81 15 113 49 c10 11 18 16 23 16c4 0 6 -2 6 -5zM142 76c0 8 -29 18 -53 18c-33 0 -51 -13 -51 -37c0 -22 17 -37 41 -37c20 0 32 6 46 23c11 13 17 25 17 33'], + 0x20A6: [662,11,722,12,707,'707 251h-95v-262h-17l-211 262h-231v-104c0 -101 17 -124 94 -128v-19h-235v19c83 6 97 25 97 128v104h-97v28h97v104h-97v28h97v177c-40 47 -54 55 -97 55v19h171l200 -251h185v104c0 62 -9 98 -29 112c-15 9 -29 13 -67 16v19h235v-19c-38 -4 -52 -8 -66 -18 c-19 -13 -29 -50 -29 -110v-104h95v-28h-95v-104h95v-28zM256 411l-103 128v-128h103zM362 279l-84 104h-125v-104h209zM568 279v104h-163l83 -104h80zM568 178v73h-58'], + 0x20A9: [662,11,944,5,932,'932 251h-195l-92 -262h-15l-99 262h-120l-95 -262h-15l-94 262h-202v28h192l-38 104h-154v28h144l-41 115c-37 94 -52 112 -103 117v19h245v-19c-51 -3 -65 -10 -65 -32c0 -11 4 -28 11 -46l59 -154h169l23 60l-33 82c-34 80 -44 89 -101 90v19h267v-19 c-54 -1 -77 -11 -77 -35c0 -11 6 -30 15 -51l12 -30l45 -116h170l42 114c10 28 16 54 16 75c0 27 -18 38 -69 43v19h198v-19c-53 -10 -64 -19 -83 -71l-56 -161h139v-28h-149l-37 -104h186v-28zM414 383h-148l40 -104h68zM364 251h-48l24 -62zM735 383h-149l40 -104h70z M686 251h-49l25 -65zM520 279l-39 104h-22l-37 -104h98'], + 0x20AB: [662,28,482,40,442,'442 529h-65v-351c0 -39 7 -48 38 -48c0 0 4 0 19 1v-14l-125 -44l-3 2v55c-29 -40 -61 -57 -109 -57c-93 0 -157 74 -157 183c0 120 79 216 177 216c34 0 57 -9 89 -36v93h-103v29h103v10c0 35 -8 44 -39 44c-7 0 -12 0 -19 -1v14c55 14 84 23 125 37l4 -2v-102h65v-29z M442 -28h-402v28h402v-28zM306 168v196c0 45 -42 85 -87 85c-64 0 -106 -63 -106 -159c0 -105 47 -173 117 -173c25 0 46 9 62 26c8 9 14 19 14 25'], + 0x20AC: [674,15,500,4,497,'497 178l-16 -193h-18c-6 31 -13 44 -25 44c-3 0 -9 -3 -17 -8c-35 -23 -47 -35 -105 -35c-119 0 -211 100 -237 259h-75l27 41h43c-1 13 -1 23 -1 37c0 8 0 16 1 26h-70l27 41h47c23 167 121 283 238 283c34 0 70 -12 105 -35c8 -5 14 -8 17 -8c12 0 19 13 25 44h18 l16 -193h-17c-13 43 -15 47 -29 75c-28 54 -79 90 -128 90c-57 0 -105 -45 -131 -123c-10 -32 -18 -79 -23 -133h220l-27 -41h-195c-1 -20 -1 -28 -1 -33c0 -4 0 -13 1 -30h155l-26 -41h-126c14 -140 78 -228 173 -228c37 0 80 32 108 86c14 28 15 32 29 75h17'], + 0x20B1: [662,0,556,16,542,'542 481c0 -66 -36 -127 -96 -159c-43 -24 -97 -34 -175 -34c-26 0 -43 1 -69 3v-52h76v-28h-76v-102c0 -73 15 -87 94 -90v-19h-280v19c76 7 84 17 84 101v91h-84v28h84v314c0 72 -10 82 -84 90v19h264c94 0 181 -28 221 -72c27 -29 41 -67 41 -109zM433 475 c0 103 -62 150 -197 150c-27 0 -34 -7 -34 -34v-260c23 -2 37 -3 57 -3c115 0 174 50 174 147'], + 0x20B2: [745,83,722,32,709,'709 336c-58 -5 -70 -18 -70 -77v-203c-40 -35 -165 -70 -251 -70h-13v-69h-28v71c-93 8 -173 45 -232 105c-56 59 -83 134 -83 232c0 194 130 337 315 350v70h28v-69c45 0 91 -8 136 -23c18 -7 34 -10 44 -10c21 0 39 14 45 33h22l8 -211h-23c-25 61 -41 88 -71 116 c-39 36 -88 55 -144 55c-6 0 -11 0 -17 -1v-607c11 -1 22 -2 34 -2c72 0 133 27 133 59v162c0 43 -6 66 -21 75c-12 8 -24 11 -67 14v18h255v-18zM347 32v600c-50 -9 -95 -34 -129 -72c-44 -49 -72 -140 -72 -234c0 -161 75 -268 201 -294'], + 0x27A1: [470,-30,1030,80,950,'950 250l-220 -220v144h-650v152h650v144'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Misc/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Monospace/Regular/Main.js new file mode 100644 index 0000000..48ca481 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Monospace/Regular/Main.js @@ -0,0 +1,90 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'GyreTermesMathJax_Monospace', + id: 'GYRETERMESMONOSPACE', + 0x20: [0,0,600,0,0,''], + 0xA0: [0,0,600,0,0,''], + 0x1D670: [563,0,600,9,591,'591 21c0 -14 -9 -21 -27 -21h-156c-18 0 -27 7 -27 21c0 13 9 20 27 20h76l-56 147h-266l-54 -147h79c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-151c-18 0 -27 7 -27 21c0 13 9 20 27 20h31l179 481h-120c-18 0 -27 7 -27 21c0 13 9 20 27 20h204l197 -522h37 c18 0 27 -7 27 -20zM413 229l-112 293h-15l-108 -293h235'], + 0x1D671: [563,0,600,43,541,'541 153c0 -84 -74 -153 -165 -153h-306c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v481h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h258c97 0 171 -63 171 -145c0 -51 -26 -88 -85 -120c84 -30 127 -78 127 -145zM458 419c0 58 -56 103 -129 103h-164v-209h147 c85 0 146 44 146 106zM500 153c0 66 -59 119 -186 119h-149v-231h208c71 0 127 50 127 112'], + 0x1D672: [576,16,600,63,534,'534 106c0 -10 -12 -27 -38 -51c-49 -46 -110 -71 -174 -71c-136 0 -259 123 -259 258v83c0 132 107 251 242 251c66 0 126 -24 173 -69v29c0 18 7 27 21 27c13 0 20 -9 20 -27v-112c0 -18 -7 -27 -21 -27c-12 0 -19 8 -20 24c-4 61 -84 114 -173 114 c-111 0 -201 -97 -201 -216v-71c0 -120 100 -223 218 -223c69 0 120 26 174 90c7 8 11 10 18 10c12 0 20 -8 20 -19'], + 0x1D673: [563,0,600,43,520,'520 254c0 -142 -101 -254 -230 -254h-220c-18 0 -27 7 -27 21c0 13 9 20 27 20h34v481h-34c-18 0 -27 7 -27 21c0 13 9 20 27 20h220c129 0 230 -112 230 -253v-56zM479 245v73c0 98 -74 204 -191 204h-143v-481h150c96 0 184 98 184 204'], + 0x1D674: [563,0,600,43,520,'520 0h-450c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v481h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h429v-139c0 -18 -7 -27 -21 -27c-13 0 -20 9 -20 27v98h-293v-209h145v45c0 18 7 27 21 27c13 0 20 -9 20 -27v-131c0 -18 -7 -27 -20 -27c-14 0 -21 9 -21 27v45h-145 v-231h314v119c0 18 7 27 21 27c13 0 20 -9 20 -27v-160'], + 0x1D675: [563,0,600,43,520,'520 424c0 -18 -7 -27 -21 -27c-13 0 -20 9 -20 27v98h-314v-209h145v45c0 18 7 27 20 27c14 0 21 -9 21 -27v-131c0 -18 -7 -27 -21 -27c-13 0 -20 9 -20 27v45h-145v-231h138c19 0 28 -7 28 -20c0 -14 -10 -21 -28 -21h-233c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v481 h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h450v-139'], + 0x1D676: [576,16,600,63,562,'562 230c0 -14 -9 -21 -28 -21h-14v-173c-59 -34 -125 -52 -187 -52c-164 0 -270 102 -270 260v74c0 139 105 258 250 258c66 0 121 -18 166 -54v14c0 18 7 27 21 27s20 -8 20 -27v-91c0 -18 -7 -27 -20 -27s-19 8 -20 25c-4 51 -76 92 -165 92 c-122 0 -211 -105 -211 -218v-73c0 -136 88 -219 232 -219c52 0 87 8 143 34v150h-139c-18 0 -27 7 -27 21c0 13 9 20 27 20h194c19 0 28 -7 28 -20'], + 0x1D677: [563,0,600,53,551,'551 21c0 -14 -10 -21 -27 -21h-141c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v231h-270v-231h54c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-140c-18 0 -28 7 -28 21c0 13 9 20 28 20h45v481h-25c-18 0 -27 7 -27 21c0 13 9 20 27 20h120c18 0 27 -7 27 -20 c0 -14 -9 -21 -27 -21h-54v-209h270v209h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h120c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-25v-481h46c18 0 27 -7 27 -20'], + 0x1D678: [563,0,600,113,487,'487 21c0 -14 -10 -21 -28 -21h-319c-18 0 -27 7 -27 21c0 13 9 20 27 20h139v481h-139c-18 0 -27 7 -27 21c0 13 9 20 27 20h319c19 0 28 -7 28 -20c0 -14 -9 -21 -28 -21h-139v-481h139c19 0 28 -7 28 -20'], + 0x1D679: [563,16,600,84,583,'583 543c0 -14 -9 -21 -27 -21h-96v-357c0 -99 -85 -181 -188 -181c-64 0 -116 25 -188 90v149c0 18 7 27 21 27c13 0 20 -9 20 -27v-130c51 -46 98 -68 148 -68c81 0 146 62 146 140v357h-159c-18 0 -27 7 -27 21c0 13 9 20 27 20h296c18 0 27 -7 27 -20'], + 0x1D67A: [563,0,600,43,572,'572 21c0 -14 -9 -21 -27 -21h-87c-73 203 -117 263 -212 294l-81 -73v-180h75c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-170c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v481h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h170c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-75v-249 l272 249h-37c-19 0 -28 7 -28 21c0 13 9 20 28 20h118c19 0 28 -7 28 -20c0 -14 -9 -21 -28 -21h-24l-214 -198c97 -40 134 -91 209 -283h56c18 0 27 -7 27 -20'], + 0x1D67B: [563,0,600,63,541,'541 0h-451c-18 0 -27 7 -27 21c0 13 9 20 27 20h96v481h-96c-18 0 -27 7 -27 21c0 13 9 20 27 20h233c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-96v-481h273v160c0 18 7 27 21 27c13 0 20 -9 20 -27v-201'], + 0x1D67C: [563,0,600,11,593,'593 21c0 -14 -9 -21 -27 -21h-149c-18 0 -27 7 -27 21c0 13 9 20 27 20h74v481h-8l-157 -353h-46l-159 353h-8v-481h74c19 0 28 -7 28 -20c0 -14 -10 -21 -28 -21h-149c-18 0 -27 7 -27 21c0 13 9 20 27 20h34v481h-25c-18 0 -27 7 -27 21c0 13 9 20 27 20h99l157 -348 l154 348h100c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-25v-481h34c18 0 27 -7 27 -20'], + 0x1D67D: [563,0,600,22,562,'562 543c0 -14 -9 -21 -27 -21h-34v-522h-52l-305 504v-463h75c18 0 27 -7 27 -20c0 -14 -10 -21 -27 -21h-150c-18 0 -27 7 -27 21c0 13 9 20 27 20h34v481h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h106l305 -504v463h-74c-19 0 -28 7 -28 21c0 13 9 20 28 20h149 c18 0 27 -7 27 -20'], + 0x1D67E: [576,16,600,51,549,'549 276c0 -161 -112 -292 -249 -292c-139 0 -249 131 -249 296s110 296 249 296c141 0 249 -130 249 -300zM508 277c0 144 -92 258 -208 258c-115 0 -208 -115 -208 -255s94 -255 208 -255c113 0 208 115 208 252'], + 0x1D67F: [563,0,600,43,499,'499 398c0 -93 -89 -167 -203 -167h-131v-190h138c19 0 28 -7 28 -20c0 -14 -10 -21 -28 -21h-233c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v481h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h240c106 0 189 -72 189 -165zM458 398c0 68 -65 124 -144 124h-149v-250h134 c87 0 159 57 159 126'], + 0x1D680: [576,115,600,51,549,'549 280c0 -164 -106 -292 -244 -296l-54 -40c30 6 46 8 67 8c43 0 107 -26 127 -26c21 0 38 7 69 27c4 3 8 4 12 4c11 0 20 -9 20 -21c0 -20 -62 -51 -104 -51c-21 0 -83 26 -124 26c-30 0 -97 -11 -140 -23c-4 -1 -7 -2 -10 -2c-11 0 -20 9 -20 21c0 7 4 13 11 18 l90 65c-114 25 -198 149 -198 290c0 165 110 296 249 296s249 -131 249 -296zM508 277c0 144 -92 258 -208 258c-115 0 -208 -115 -208 -255s94 -255 208 -255c113 0 208 115 208 252'], + 0x1D681: [563,0,600,43,589,'589 21c0 -14 -9 -21 -27 -21h-57c-88 162 -132 216 -208 251h-132v-210h75c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-170c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v481h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h248c97 0 180 -72 180 -156c0 -65 -46 -113 -139 -145 c63 -43 91 -80 172 -221h31c18 0 27 -7 27 -20zM457 408c0 60 -67 114 -139 114h-153v-230h114c98 0 178 52 178 116'], + 0x1D682: [576,16,600,92,508,'508 151c0 -97 -86 -167 -206 -167c-69 0 -128 25 -169 72v-29c0 -18 -7 -27 -21 -27c-13 0 -20 9 -20 27v112c0 18 7 27 21 27c13 0 19 -8 20 -24c3 -66 77 -117 168 -117c93 0 163 54 163 128c0 35 -17 66 -45 84c-25 16 -45 22 -116 34c-141 24 -188 69 -188 150 c0 88 79 155 184 155c59 0 104 -18 146 -59v19c0 18 7 27 21 27c13 0 20 -9 20 -27v-103c0 -18 -7 -27 -20 -27s-20 8 -21 24c-4 60 -65 105 -143 105c-82 0 -143 -49 -143 -115c0 -61 34 -92 152 -111c77 -13 105 -21 135 -40c39 -24 62 -67 62 -118'], + 0x1D683: [563,0,600,72,528,'528 449c0 -19 -6 -27 -20 -27c-12 0 -21 11 -21 27v73h-166v-481h105c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-251c-18 0 -27 7 -27 21c0 13 9 20 27 20h105v481h-167v-73c0 -18 -7 -27 -21 -27c-13 0 -20 9 -20 27v114h456v-114'], + 0x1D684: [563,16,600,40,560,'560 543c0 -14 -9 -21 -27 -21h-34v-337c0 -114 -87 -201 -199 -201c-113 0 -199 87 -199 201v337h-34c-18 0 -27 7 -27 21s9 20 27 20h149c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-74v-337c0 -90 69 -160 158 -160c88 0 158 70 158 160v337h-74c-18 0 -27 7 -27 21 s8 20 27 20h149c19 0 27 -6 27 -20'], + 0x1D685: [563,0,600,9,591,'591 543c0 -14 -9 -21 -27 -21h-31l-209 -522h-57l-200 522h-31c-18 0 -27 7 -27 21s9 20 27 20h151c18 0 27 -6 27 -20s-9 -21 -27 -21h-77l186 -481h3l193 481h-78c-18 0 -27 7 -27 21c0 13 8 20 27 20h150c18 0 27 -6 27 -20'], + 0x1D686: [563,0,600,20,580,'580 543c0 -14 -9 -21 -27 -21h-20l-57 -522h-64l-112 400l-115 -400h-63l-55 522h-20c-18 0 -27 7 -27 21c0 13 9 20 27 20h149c19 0 28 -7 28 -20c0 -14 -9 -21 -28 -21h-88l51 -476l112 392h62l109 -392l52 476h-91c-18 0 -27 7 -27 21c0 13 9 20 27 20h150 c18 0 27 -7 27 -20'], + 0x1D687: [563,0,600,40,560,'560 21c0 -14 -9 -21 -27 -21h-132c-18 0 -27 7 -27 21c0 13 9 20 27 20h57l-160 214l-159 -214h59c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-131c-18 0 -27 7 -27 21c0 13 9 20 27 20h22l183 247l-174 234h-20c-18 0 -27 7 -27 21c0 13 9 20 27 20h110 c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-38l150 -201l148 201h-40c-18 0 -27 7 -27 21c0 13 9 20 27 20h111c18 0 27 -6 27 -20s-9 -21 -27 -21h-20l-174 -234l186 -247h22c18 0 27 -7 27 -20'], + 0x1D688: [563,0,600,51,549,'549 543c0 -13 -11 -21 -27 -21h-24l-176 -268v-213h105c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-251c-18 0 -27 7 -27 21c0 13 9 20 27 20h105v213l-179 268h-24c-18 0 -27 7 -27 21c0 13 9 20 27 20h111c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-38l152 -227 l149 227h-40c-19 0 -28 7 -28 21c0 13 9 20 28 20h110c17 0 27 -8 27 -20'], + 0x1D689: [563,0,600,103,497,'497 0h-394v59l328 463h-269v-118c0 -19 -7 -28 -20 -28c-14 0 -21 9 -21 28v159h349v-58l-328 -464h314v141c0 18 6 27 20 27s21 -9 21 -27v-182'], + 0x1D68A: [431,16,600,72,541,'541 21c0 -14 -9 -21 -27 -21h-95v67c-61 -57 -121 -83 -191 -83c-93 0 -156 52 -156 128c0 87 86 146 211 146c46 0 77 -5 136 -21v71c0 49 -50 82 -123 82c-36 0 -64 -6 -142 -30c-4 -1 -10 -2 -10 -2c-10 0 -19 9 -19 20c0 10 6 17 17 21c55 19 120 32 157 32 c93 0 161 -52 161 -123v-267h54c18 0 27 -7 27 -20zM419 112v90c-36 9 -84 15 -128 15c-106 0 -178 -43 -178 -106c0 -52 45 -86 114 -86c71 0 125 24 192 87'], + 0x1D68B: [604,16,600,22,541,'541 210c0 -125 -97 -226 -217 -226c-73 0 -133 34 -180 104v-88h-95c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v522h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h95v-276c50 71 106 103 180 103c122 0 217 -97 217 -221zM500 205c0 104 -78 185 -178 185 c-99 0 -178 -81 -178 -182s79 -183 178 -183c97 0 178 82 178 180'], + 0x1D68C: [431,16,600,84,535,'535 88c0 -12 -15 -30 -43 -49c-51 -35 -117 -55 -183 -55c-131 0 -225 92 -225 220c0 132 96 227 230 227c61 0 115 -19 156 -55v13c0 19 7 28 21 28c13 0 20 -9 20 -28v-91c0 -18 -7 -27 -20 -27s-19 7 -21 24c-4 53 -75 95 -159 95c-110 0 -186 -75 -186 -185 c0 -105 77 -180 186 -180c73 0 135 24 187 72c8 8 11 10 18 10c10 0 19 -9 19 -19'], + 0x1D68D: [604,16,600,63,583,'583 21c0 -14 -9 -21 -27 -21h-95v89c-47 -70 -107 -105 -182 -105c-119 0 -216 101 -216 224s97 223 216 223c75 0 133 -33 182 -104v236h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h95v-563h54c18 0 27 -7 27 -20zM461 206c0 104 -78 184 -179 184 c-99 0 -178 -81 -178 -182c0 -102 79 -183 179 -183c98 0 178 81 178 181'], + 0x1D68E: [431,16,600,63,520,'520 199h-416c14 -105 94 -174 202 -174c62 0 135 22 175 54c7 5 11 7 16 7c10 0 19 -9 19 -20c0 -35 -120 -82 -211 -82c-135 0 -242 103 -242 233c0 121 100 214 228 214c96 0 176 -51 212 -134c14 -33 17 -52 17 -98zM478 240c-16 91 -90 150 -187 150 s-169 -58 -187 -150h374'], + 0x1D68F: [604,0,600,105,541,'541 571c0 -12 -9 -20 -21 -20c0 0 -2 0 -50 6c-27 3 -66 6 -88 6c-66 0 -111 -35 -111 -85v-61h189c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-189v-335h178c18 0 27 -7 27 -20c0 -14 -10 -21 -27 -21h-317c-18 0 -27 7 -27 21c0 13 9 20 27 20h98v335h-88 c-18 0 -27 7 -27 21c0 13 9 20 27 20h88v61c0 73 64 126 154 126c38 0 107 -7 139 -13c12 -3 18 -10 18 -20'], + 0x1D690: [431,186,600,63,562,'562 397c0 -14 -9 -21 -27 -21h-54v-404c0 -41 -13 -72 -43 -104c-35 -37 -72 -54 -122 -54h-114c-18 0 -27 7 -27 21c0 13 9 20 27 20h116c68 0 122 55 122 123v104c-45 -66 -99 -97 -171 -97c-113 0 -206 107 -206 223s93 223 206 223c73 0 126 -30 171 -97v83h95 c18 0 27 -7 27 -20zM440 206c0 97 -73 184 -168 184c-94 0 -168 -88 -168 -182c0 -95 75 -182 168 -182s168 87 168 180'], + 0x1D691: [604,0,600,43,551,'551 21c0 -14 -9 -21 -28 -21h-131c-18 0 -27 7 -27 21c0 13 9 20 27 20h45v247c0 66 -58 102 -123 102c-56 0 -84 -17 -138 -81l-11 -13v-255h45c19 0 28 -7 28 -20c0 -14 -10 -21 -28 -21h-132c-17 0 -27 7 -27 21c0 13 9 20 27 20h46v522h-54c-18 0 -27 7 -27 21 c0 13 9 20 27 20h95v-257c51 61 93 84 154 84c93 0 159 -59 159 -140v-250h45c19 0 28 -7 28 -20'], + 0x1D692: [610,0,600,92,508,'508 21c0 -14 -10 -21 -28 -21h-361c-18 0 -27 7 -27 21c0 13 9 20 27 20h160v335h-118c-18 0 -27 7 -27 21c0 13 9 20 27 20h159v-376h160c19 0 28 -7 28 -20zM350 559c0 -26 -23 -49 -50 -49s-50 23 -50 50s23 50 50 50c28 0 50 -23 50 -51'], + 0x1D693: [610,186,600,147,458,'458 -28c0 -93 -64 -158 -155 -158h-129c-18 0 -27 7 -27 21c0 13 9 20 27 20h128c66 0 115 49 115 117v404h-241c-18 0 -27 7 -27 21c0 13 9 20 27 20h282v-445zM438 559c0 -26 -23 -49 -50 -49s-50 23 -50 50s23 50 50 50c28 0 50 -23 50 -51'], + 0x1D694: [604,0,600,63,541,'541 21c0 -14 -9 -21 -27 -21h-131c-18 0 -27 7 -27 21c0 13 9 20 27 20h28l-180 178l-46 -39v-180h-95c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v522h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h95v-375l173 147h-22c-18 0 -27 7 -27 21c0 13 9 20 27 20h130 c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-47l-157 -131l207 -204h45c18 0 27 -7 27 -20'], + 0x1D695: [604,0,600,92,508,'508 21c0 -14 -10 -21 -28 -21h-361c-18 0 -27 7 -27 21c0 13 9 20 27 20h160v522h-117c-18 0 -27 7 -27 21c0 13 9 20 27 20h158v-563h160c19 0 28 -7 28 -20'], + 0x1D696: [431,0,600,11,593,'593 21c0 -14 -9 -21 -27 -21h-74v319c0 38 -31 71 -66 71c-36 0 -66 -24 -104 -82v-267h34c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-74v316c0 39 -31 74 -65 74c-35 0 -67 -25 -105 -82v-267h34c18 0 27 -7 27 -20c0 -14 -10 -21 -27 -21h-109c-17 0 -26 7 -26 21 c0 13 9 20 27 20h34v335h-34c-18 0 -27 7 -27 21c0 13 9 20 27 20h74v-52c34 48 63 66 105 66c43 0 75 -23 97 -71c39 50 72 71 113 71c58 0 105 -49 105 -108v-282h34c18 0 27 -7 27 -20'], + 0x1D697: [431,0,600,53,541,'541 21c0 -14 -9 -21 -27 -21h-109c-18 0 -27 7 -27 21c0 13 9 20 27 20h34v247c0 64 -58 102 -120 102c-78 0 -107 -36 -152 -96v-253h45c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-131c-19 0 -28 7 -28 21c0 13 9 20 28 20h45v335h-34c-18 0 -27 7 -27 21 c0 13 9 20 27 20h75v-69c58 64 94 83 156 83c89 0 157 -59 157 -136v-254h34c18 0 27 -7 27 -20'], + 0x1D698: [431,16,600,72,528,'528 205c0 -122 -102 -221 -228 -221c-127 0 -228 99 -228 224c0 123 101 223 228 223c128 0 228 -99 228 -226zM487 205c0 105 -82 185 -187 185c-104 0 -187 -81 -187 -182c0 -102 83 -183 187 -183c103 0 187 81 187 180'], + 0x1D699: [431,186,600,22,541,'541 209c0 -119 -95 -224 -218 -224c-77 0 -133 30 -179 96v-226h98c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-193c-18 0 -27 7 -27 21c0 13 9 20 27 20h54v521h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h95v-82c53 69 103 96 179 96c124 0 218 -103 218 -222zM500 207 c0 97 -77 183 -178 183c-99 0 -178 -87 -178 -181c0 -95 79 -183 178 -183c98 0 178 88 178 181'], + 0x1D69A: [431,186,600,63,583,'583 -165c0 -14 -9 -21 -27 -21h-193c-18 0 -27 7 -27 21c0 13 9 20 27 20h98v226c-46 -66 -102 -96 -180 -96c-123 0 -218 105 -218 224s95 222 219 222c77 0 132 -30 179 -96v82h95c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-54v-521h54c18 0 27 -7 27 -20zM461 207 c0 97 -78 183 -179 183c-100 0 -178 -86 -178 -181s78 -183 178 -183c99 0 179 88 179 181'], + 0x1D69B: [427,0,600,84,541,'541 365c0 -12 -9 -21 -21 -21c-7 0 -9 1 -16 8c-24 23 -44 34 -66 34c-45 0 -80 -23 -190 -124v-221h179c17 0 27 -8 27 -21c0 -12 -10 -20 -27 -20h-316c-17 0 -27 8 -27 21c0 12 10 20 27 20h96v335h-75c-17 0 -27 8 -27 21c0 12 10 20 27 20h116v-102 c93 84 142 112 193 112c29 0 51 -9 77 -31c17 -14 23 -22 23 -31'], + 0x1D69C: [431,16,600,103,497,'497 116c0 -76 -83 -132 -196 -132c-65 0 -115 17 -157 54v-11c0 -18 -7 -27 -20 -27c-14 0 -21 9 -21 27v83c0 18 7 27 21 27c12 0 20 -9 20 -22v-7c0 -46 69 -83 154 -83c88 0 154 39 154 92c0 46 -44 78 -152 90c-142 16 -176 52 -176 111c0 65 73 113 171 113 c57 0 102 -15 137 -46v4c0 17 8 28 21 28s20 -9 20 -28v-69c0 -18 -7 -27 -20 -27c-12 0 -19 7 -21 23c-5 45 -57 74 -133 74c-74 0 -130 -32 -130 -75c0 -60 62 -56 148 -70c119 -19 180 -58 180 -129'], + 0x1D69D: [563,16,600,43,499,'499 51c0 -29 -114 -67 -199 -67c-94 0 -155 48 -155 123v269h-74c-19 0 -28 7 -28 21c0 13 9 20 28 20h74v119c0 18 7 27 21 27s20 -8 20 -27v-119h220c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-220v-267c0 -51 43 -84 112 -84c56 0 127 17 166 40c8 5 11 6 16 6 c10 0 19 -10 19 -20'], + 0x1D69E: [417,16,600,43,541,'541 21c0 -14 -9 -21 -27 -21h-75v66c-55 -54 -116 -82 -182 -82c-80 0 -133 52 -133 131v261h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h95v-302c0 -50 40 -90 91 -90c67 0 128 30 183 90v261h-74c-19 0 -28 7 -28 21c0 13 9 20 28 20h115v-376h34c18 0 27 -7 27 -20'], + 0x1D69F: [417,0,600,30,570,'570 397c0 -14 -9 -21 -27 -21h-41l-166 -376h-70l-168 376h-41c-18 0 -27 7 -27 21c0 13 9 20 27 20h151c19 0 28 -7 28 -20c0 -14 -9 -21 -28 -21h-65l150 -335h19l147 335h-68c-18 0 -27 7 -27 21c0 13 9 20 27 20h152c18 0 27 -7 27 -20'], + 0x1D6A0: [417,0,600,30,570,'570 397c0 -14 -9 -21 -27 -21h-19l-83 -376h-50l-91 259l-89 -259h-51l-84 376h-19c-18 0 -27 7 -27 21c0 13 9 20 27 20h111c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-53l72 -320l86 255h51l89 -255l69 320h-50c-18 0 -27 7 -27 21c0 13 9 20 27 20h111 c18 0 27 -7 27 -20'], + 0x1D6A1: [417,0,600,51,549,'549 21c0 -14 -9 -21 -27 -21h-132c-18 0 -27 7 -27 21c0 13 9 20 27 20h65l-155 149l-157 -149h68c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-133c-18 0 -27 7 -27 21c0 13 9 20 27 20h9l184 178l-163 157h-7c-18 0 -27 7 -27 21c0 13 9 20 27 20h111c18 0 27 -6 27 -20 s-9 -21 -27 -21h-46l134 -130l137 130h-48c-18 0 -27 7 -27 21c0 13 9 20 27 20h110c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-7l-163 -157l184 -178h9c18 0 27 -7 27 -20'], + 0x1D6A2: [417,186,600,51,549,'549 397c0 -14 -9 -21 -27 -21h-14l-256 -521h65c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-233c-18 0 -27 7 -27 21c0 13 9 20 27 20h127l71 145l-188 376h-16c-18 0 -27 7 -27 21c0 13 9 20 27 20h115c18 0 27 -7 27 -20c0 -14 -9 -21 -27 -21h-52l164 -331l161 331 h-54c-18 0 -27 7 -27 21c0 13 9 20 27 20h110c18 0 27 -7 27 -20'], + 0x1D6A3: [417,0,600,115,489,'489 0h-374v36l301 340h-251v-55c0 -18 -7 -27 -20 -27c-14 0 -21 9 -21 27v96h350v-36l-303 -340h277v56c0 18 7 27 21 27c13 0 20 -9 20 -27v-97'], + 0x1D7F6: [618,15,600,113,487,'487 251c0 -158 -76 -266 -187 -266s-187 108 -187 266v100c0 159 76 267 187 267s187 -108 187 -267v-100zM446 257v89c0 110 -45 231 -146 231s-146 -121 -146 -231v-89c0 -110 45 -231 146 -231s146 121 146 231'], + 0x1D7F7: [612,0,600,113,487,'487 21c0 -14 -9 -21 -27 -21h-319c-18 0 -28 7 -28 21c0 13 9 20 28 20h139v516l-132 -42l-14 -3c-9 0 -19 10 -19 20c0 11 5 17 21 22l185 58v-571h139c18 0 27 -7 27 -20'], + 0x1D7F8: [618,0,600,84,478,'478 0h-394v60l236 222c94 92 113 120 113 165c0 69 -67 130 -143 130c-68 0 -130 -45 -146 -105c-4 -14 -10 -20 -21 -20c-10 0 -19 9 -19 18c0 71 98 148 186 148c98 0 184 -81 184 -172c0 -59 -72 -142 -144 -209l-207 -193v-3h314v36c0 18 7 27 21 27 c13 0 20 -9 20 -27v-77'], + 0x1D7F9: [618,15,600,96,499,'499 168c0 -101 -94 -183 -209 -183c-63 0 -194 46 -194 84c0 10 9 19 19 19c6 0 10 -2 17 -7c47 -36 103 -55 159 -55c91 0 167 65 167 142c0 78 -82 144 -179 144c-18 0 -27 7 -27 21c0 13 10 20 27 20c50 0 65 1 87 11c42 18 70 56 70 99c0 65 -59 114 -136 114 c-56 0 -105 -20 -134 -54c-10 -12 -13 -14 -21 -14c-11 0 -20 9 -20 19c0 39 102 90 176 90c100 0 176 -67 176 -154c0 -64 -41 -105 -103 -136c78 -32 125 -92 125 -160'], + 0x1D7FA: [604,0,600,105,478,'478 21c0 -14 -9 -21 -27 -21h-151c-18 0 -27 7 -27 21c0 13 9 20 27 20h76v128h-271v47l228 388h84v-394h34c18 0 27 -7 27 -21c0 -13 -9 -20 -27 -20h-34v-128h34c18 0 27 -7 27 -20zM376 210v353h-24l-208 -353h232'], + 0x1D7FB: [604,15,600,96,499,'499 201c0 -126 -85 -216 -204 -216c-72 0 -199 59 -199 97c0 11 9 20 20 20c6 0 10 -2 17 -9c48 -44 102 -67 160 -67c98 0 165 72 165 177c0 89 -58 151 -142 151c-40 0 -84 -11 -126 -33c-12 -6 -17 -8 -22 -8c-11 0 -19 9 -19 22v269h282c19 0 28 -7 28 -20 c0 -14 -9 -21 -28 -21h-241v-198c51 21 88 30 132 30c102 0 177 -82 177 -194'], + 0x1D7FC: [618,15,600,136,510,'510 178c0 -108 -76 -193 -173 -193c-118 0 -201 122 -201 297c0 195 129 336 292 336c43 0 79 -16 79 -35c0 -11 -8 -20 -19 -20c-9 0 -28 14 -64 14c-123 0 -249 -115 -249 -292c0 -9 1 -24 2 -43c41 82 95 122 166 122c91 0 167 -84 167 -186zM469 178 c0 79 -57 145 -127 145c-60 0 -104 -35 -159 -135c27 -105 76 -162 155 -162c74 0 131 66 131 152'], + 0x1D7FD: [604,1,600,105,478,'478 539l-163 -519c-5 -16 -10 -21 -20 -21c-11 0 -20 9 -20 20c0 3 1 9 2 13l160 513v18h-291v-35c0 -19 -7 -28 -20 -28c-14 0 -21 9 -21 28v76h373v-65'], + 0x1D7FE: [618,15,600,113,487,'487 161c0 -97 -84 -176 -187 -176s-187 79 -187 176c0 66 39 118 112 152c-70 36 -102 79 -102 140c0 90 81 165 177 165s177 -75 177 -165c0 -61 -31 -104 -102 -140c73 -33 112 -86 112 -152zM436 450c0 71 -60 127 -136 127s-136 -56 -136 -126 c0 -66 60 -118 136 -118c75 0 136 52 136 117zM446 160c0 76 -63 133 -146 133c-82 0 -146 -58 -146 -132c0 -75 65 -135 146 -135c80 0 146 60 146 134'], + 0x1D7FF: [618,15,600,136,510,'510 321c0 -195 -129 -336 -292 -336c-43 0 -79 16 -79 35c0 11 8 20 19 20c8 0 28 -14 64 -14c123 0 249 114 249 292c0 9 -1 24 -2 43c-41 -82 -95 -122 -166 -122c-91 0 -167 84 -167 186c0 108 76 193 173 193c118 0 201 -122 201 -297zM463 415 c-28 105 -76 162 -155 162c-74 0 -131 -66 -131 -152c0 -79 57 -145 127 -145c60 0 104 34 159 135'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Monospace/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..42ec002 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/NonUnicode/Regular/Main.js @@ -0,0 +1,1474 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'GyreTermesMathJax_NonUnicode', + id: 'GYRETERMESNONUNICODE', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xE000: [-38,281,333,97,236,'236 -127c0 -60 -45 -121 -112 -154l-9 19c54 37 82 74 82 106c0 8 -6 14 -14 14c0 0 -1 0 -8 -2c-6 -1 -13 -2 -19 -2c-36 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89'], + 0xE001: [684,-497,333,68,265,'265 626c0 -20 -15 -38 -42 -59c-23 -18 -38 -31 -42 -40c-4 -7 -7 -16 -10 -30h-23c1 27 14 52 33 79c17 19 23 35 23 47c0 27 -16 42 -50 42c-16 0 -28 -4 -35 -10c-4 -2 -6 -5 -6 -8c0 -4 17 -21 17 -29c0 -13 -9 -19 -28 -19c-22 0 -34 10 -34 32c0 30 40 53 97 53 c36 0 62 -7 80 -22c13 -12 20 -24 20 -36'], + 0xE002: [683,0,791,32,796,'373 450v141c-5 -6 -8 -7 -16 -7c-23 0 -36 9 -55 37c-18 27 -30 35 -52 35c-44 0 -65 -50 -65 -154v-52h188zM796 0h-218v15h19c12 0 21 6 21 15c0 5 -3 11 -11 21c-3 3 -6 6 -7 9l-3 4l-140 188v-171c0 -52 10 -62 64 -66v-15h-215v15c52 4 67 20 67 69v334h-188v-339 c0 -46 14 -58 71 -64v-15h-224v15c60 4 69 16 69 90v313h-69v32h71c4 88 14 127 44 170c28 39 74 63 119 63c26 0 55 -6 83 -17c14 -5 25 -8 30 -8c9 0 24 5 42 14c13 6 23 10 31 11l5 -2v-420l137 122c14 13 23 26 23 35c0 13 -11 17 -50 18v14h204v-15 c-64 0 -91 -14 -216 -126l-29 -27l153 -194c42 -51 73 -70 117 -73v-15'], + 0xE003: [686,14,760,30,730,'730 336c0 -193 -157 -350 -350 -350s-350 157 -350 350s157 350 350 350s350 -157 350 -350zM692 336c0 172 -140 312 -312 312s-312 -140 -312 -312s140 -312 312 -312s312 140 312 312zM573 333c0 -118 -86 -196 -213 -196c-72 0 -136 27 -174 75l14 12 c46 -41 88 -58 140 -58c36 0 69 10 94 29c37 28 58 79 58 145c0 102 -56 169 -146 169c-36 0 -68 -12 -92 -35c-21 -18 -30 -34 -42 -72h-17l5 133h17c3 -12 13 -19 24 -19c6 0 15 2 25 5c31 9 62 14 93 14c50 0 101 -17 140 -46c48 -36 74 -91 74 -156'], + 0xE004: [662,0,580,40,540,'540 399c-72 10 -144 16 -217 18c1 -139 7 -278 18 -417h-102c11 139 17 278 18 417c-73 -2 -145 -8 -217 -18v102c72 -10 144 -16 217 -18c-2 60 -8 120 -18 179h102c-10 -59 -16 -119 -18 -179c73 2 145 8 217 18v-102'], + 0xE005: [250,-201,750,0,750,'750 201h-750v49h750v-49'], + 0xE006: [250,-201,667,0,667,'667 201h-667v49h667v-49'], + 0xE007: [721,59,1000,25,974,'974 682c10 -398 -286 -741 -674 -741c-93 0 -185 13 -274 39c-10 398 286 741 674 741c93 0 185 -13 274 -39zM274 196v292c-110 -112 -182 -266 -194 -435zM574 418v237c-92 -20 -176 -62 -248 -120v-300zM888 650c-62 13 -125 19 -188 19c-25 0 -50 -2 -74 -5v-208z M725 173h-395l-218 -161c62 -13 125 -19 188 -19c167 0 315 69 425 180zM860 371h-262l-198 -146h371c35 44 65 93 89 146zM920 609l-252 -186h213c21 59 34 121 39 186'], + 0xE008: [676,-505,333,-94,296,'130 505h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23zM296 505h-40l-154 97c-21 13 -30 26 -30 42c0 20 13 32 35 32c15 0 24 -5 42 -23'], + 0xE009: [-89,191,333,115,217,'217 -140c0 -29 -22 -51 -51 -51c-28 0 -51 22 -51 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE00A: [-113,167,333,11,322,'322 -167h-311v54h311v-54'], + 0xE00B: [67,67,541,40,502,'502 18c-46 -64 -77 -85 -123 -85c-45 0 -63 7 -152 54c-17 9 -38 14 -59 14c-31 0 -48 -12 -74 -51l-54 32c46 64 77 85 123 85c45 0 63 -7 152 -54c17 -9 38 -14 59 -14c31 0 48 12 74 51'], + 0xE00C: [676,14,1060,40,1020,'489 168c0 -103 -88 -182 -204 -182c-40 0 -80 8 -118 23c-19 7 -36 11 -47 11c-15 0 -27 -14 -28 -33h-22l-30 212h23c50 -122 112 -177 202 -177c73 0 123 46 123 112c0 25 -5 45 -14 59c-25 38 -77 78 -149 117c-112 59 -156 115 -156 194c0 55 19 98 58 130 c32 26 74 42 113 42c35 0 71 -8 108 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21l22 -213h-25c-16 59 -30 85 -61 117c-35 36 -77 55 -122 55c-62 0 -104 -37 -104 -92s42 -99 147 -156c132 -72 187 -136 187 -219zM1020 168c0 -103 -88 -182 -204 -182 c-40 0 -80 8 -118 23c-19 7 -36 11 -47 11c-15 0 -27 -14 -28 -33h-22l-30 212h23c50 -122 112 -177 202 -177c73 0 123 46 123 112c0 25 -5 45 -14 59c-25 38 -77 78 -149 117c-112 59 -156 115 -156 194c0 55 19 98 58 130c32 26 74 42 113 42c35 0 71 -8 108 -22 c18 -8 34 -12 44 -12c17 0 28 12 32 34h21l22 -213h-25c-16 59 -30 85 -61 117c-35 36 -77 55 -122 55c-62 0 -104 -37 -104 -92s42 -99 147 -156c132 -72 187 -136 187 -219'], + 0xE00D: [371,0,336,-4,286,'286 186c0 -95 -49 -186 -134 -186c-92 0 -156 87 -156 185c0 97 64 186 156 186c85 0 134 -91 134 -185zM261 185c0 76 -28 154 -95 154c-65 0 -88 -79 -88 -154c0 -76 23 -155 88 -155c67 0 95 78 95 155'], + 0xE00E: [480,-36,500,17,483,'483 303l-180 -82l98 -173l-18 -12l-133 146l-133 -146l-18 12l98 173l-180 82l6 20l194 -40l22 197h22l22 -197l194 40'], + 0xE00F: [824,162,722,34,688,'688 327c0 -192 -124 -328 -307 -340v-149h-40v148c-83 4 -166 42 -221 102c-54 58 -86 149 -86 243c0 194 127 335 307 344v149h40v-149c88 -4 164 -40 223 -104c55 -60 84 -145 84 -244zM574 328c0 119 -31 213 -85 262c-36 32 -82 50 -128 50c-55 0 -104 -22 -143 -65 c-42 -47 -70 -144 -70 -246c0 -111 33 -212 85 -258c35 -31 80 -49 126 -49c53 0 98 18 133 53c23 23 40 48 49 73c20 52 33 121 33 180'], + 0xE010: [608,162,500,29,470,'470 234c0 -131 -86 -233 -203 -243v-153h-34v152c-118 8 -204 106 -204 236c0 132 83 225 204 233v149h34v-149c119 -8 203 -100 203 -225zM380 199c0 137 -59 233 -143 233c-71 0 -118 -62 -118 -157c0 -71 16 -141 44 -193c21 -40 58 -64 97 -64c75 0 120 68 120 181'], + 0xE011: [674,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254'], + 0xE012: [674,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280'], + 0xE013: [460,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53'], + 0xE014: [460,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53'], + 0xE015: [851,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM573 825 c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26'], + 0xE016: [851,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM640 825 c0 -13 -13 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 46 -10 46 -26'], + 0xE017: [675,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM423 643c0 -16 -10 -29 -33 -42 l-170 -97h-44l162 148c20 18 30 23 46 23c24 0 39 -12 39 -32'], + 0xE018: [675,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM474 643 c0 -16 -11 -29 -37 -42l-186 -97h-48l178 148c21 18 32 23 50 23c27 0 43 -12 43 -32'], + 0xE019: [851,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM575 851 c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29c17 -58 75 -82 143 -82s125 24 143 82h28'], + 0xE01A: [851,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM642 851 c0 -70 -75 -138 -189 -138s-189 68 -189 138h32c19 -58 82 -82 157 -82s138 24 157 82h32'], + 0xE01B: [669,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM412 669 c-14 -106 -64 -157 -157 -157c-51 0 -95 19 -123 54c-21 28 -28 52 -30 103h32c16 -67 53 -97 124 -97c63 0 91 21 122 97h32'], + 0xE01C: [669,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM462 669 c-15 -106 -71 -157 -172 -157c-57 0 -105 19 -136 54c-23 28 -31 52 -32 103h35c17 -67 58 -97 135 -97c70 0 101 21 135 97h35'], + 0xE01D: [1010,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM595 984 c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26zM575 851c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29c17 -58 75 -82 143 -82s125 24 143 82h28'], + 0xE01E: [1010,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM664 984 c0 -13 -12 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 46 -10 46 -26zM642 851c0 -70 -75 -138 -189 -138s-189 68 -189 138h32c19 -58 82 -82 157 -82s138 24 157 82h32'], + 0xE01F: [798,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM449 772c0 -13 -11 -24 -35 -33 l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26zM429 639c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29c17 -58 74 -82 143 -82c68 0 125 24 143 82h28'], + 0xE020: [798,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM503 772 c0 -13 -12 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 46 -10 46 -26zM481 639c0 -70 -75 -138 -189 -138c-113 0 -189 68 -189 138h32c19 -58 82 -82 157 -82s138 24 158 82h31'], + 0xE021: [851,191,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM575 851 c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29c17 -58 75 -82 143 -82s125 24 143 82h28zM463 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE022: [851,191,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM642 851 c0 -70 -75 -138 -189 -138s-189 68 -189 138h32c19 -58 82 -82 157 -82s138 24 157 82h32zM519 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE023: [669,191,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM412 669 c-14 -106 -64 -157 -157 -157c-51 0 -95 19 -123 54c-21 28 -28 52 -30 103h32c16 -67 53 -97 124 -97c63 0 91 21 122 97h32zM313 -140c0 -29 -25 -51 -57 -51c-30 0 -56 22 -56 51c0 28 26 51 56 51c32 0 57 -23 57 -51'], + 0xE024: [669,191,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM462 669 c-15 -106 -71 -157 -172 -157c-57 0 -105 19 -136 54c-23 28 -31 52 -32 103h35c17 -67 58 -97 135 -97c70 0 101 21 135 97h35zM353 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE025: [1010,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM478 871h-48 l-183 80c-25 9 -36 20 -36 33c0 16 16 26 42 26c18 0 29 -4 51 -19zM575 851c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29c17 -58 75 -82 143 -82s125 24 143 82h28'], + 0xE026: [1010,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM534 871h-52 l-202 80c-26 9 -39 20 -39 33c0 16 17 26 46 26c20 0 32 -4 56 -19zM642 851c0 -70 -75 -138 -189 -138s-189 68 -189 138h32c19 -58 82 -82 157 -82s138 24 157 82h32'], + 0xE027: [798,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM331 659h-47l-184 80 c-24 9 -35 20 -35 33c0 16 15 26 42 26c17 0 28 -4 50 -19zM429 639c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29c17 -58 74 -82 143 -82c68 0 125 24 143 82h28'], + 0xE028: [798,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM373 659h-52 l-202 80c-26 9 -38 20 -38 33c0 16 16 26 45 26c20 0 32 -4 56 -19zM481 639c0 -70 -75 -138 -189 -138c-113 0 -189 68 -189 138h32c19 -58 82 -82 157 -82s138 24 158 82h31'], + 0xE029: [984,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM522 936 c0 -16 -19 -32 -51 -49c-28 -14 -46 -25 -50 -32c-5 -6 -9 -14 -12 -24h-27c1 21 15 42 39 63c20 17 28 29 28 39c0 23 -20 34 -61 34c-18 0 -33 -2 -42 -8c-4 -2 -7 -3 -7 -6c0 -4 20 -17 20 -23c0 -11 -10 -17 -33 -17c-27 0 -41 8 -41 26c0 26 47 45 117 45 c43 0 74 -7 95 -18c17 -10 25 -20 25 -30zM575 851c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29c17 -58 75 -82 143 -82s125 24 143 82h28'], + 0xE02A: [984,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM583 936 c0 -16 -21 -32 -56 -49c-30 -14 -51 -25 -54 -32c-7 -6 -11 -14 -14 -24h-30c1 21 17 42 44 63c21 17 30 29 30 39c0 23 -22 34 -67 34c-20 0 -36 -2 -47 -8c-4 -2 -7 -3 -7 -6c0 -4 22 -17 22 -23c0 -11 -11 -17 -37 -17c-29 0 -44 8 -44 26c0 26 52 45 128 45 c47 0 82 -7 105 -18c18 -10 27 -20 27 -30zM642 851c0 -70 -75 -138 -189 -138s-189 68 -189 138h32c19 -58 82 -82 157 -82s138 24 157 82h32'], + 0xE02B: [772,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM375 724c0 -16 -18 -32 -50 -49 c-28 -14 -47 -25 -50 -32c-5 -6 -10 -14 -12 -24h-27c1 21 15 42 39 63c20 17 28 29 28 39c0 23 -20 34 -61 34c-19 0 -33 -2 -43 -8c-3 -2 -6 -3 -6 -6c0 -4 19 -17 19 -23c0 -11 -9 -17 -33 -17c-26 0 -40 8 -40 26c0 26 47 45 116 45c43 0 75 -7 96 -18 c17 -10 24 -20 24 -30zM429 639c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29c17 -58 74 -82 143 -82c68 0 125 24 143 82h28'], + 0xE02C: [772,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM422 724 c0 -16 -21 -32 -56 -49c-30 -14 -51 -25 -54 -32c-6 -6 -11 -14 -14 -24h-30c1 21 17 42 44 63c21 17 30 29 30 39c0 23 -22 34 -67 34c-20 0 -36 -2 -47 -8c-4 -2 -7 -3 -7 -6c0 -4 22 -17 22 -23c0 -11 -11 -17 -37 -17c-29 0 -44 8 -44 26c0 26 52 45 128 45 c47 0 82 -7 105 -18c18 -10 27 -20 27 -30zM481 639c0 -70 -75 -138 -189 -138c-113 0 -189 68 -189 138h32c19 -58 82 -82 157 -82s138 24 158 82h31'], + 0xE02D: [984,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM584 984 c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c17 65 56 101 111 101c25 0 52 -6 77 -18l27 -12c21 -9 42 -15 58 -15c25 0 40 12 58 50h32zM575 851c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29 c17 -58 75 -82 143 -82s125 24 143 82h28'], + 0xE02E: [984,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM652 984 c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c18 65 62 101 123 101c26 0 56 -6 84 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 65 50h35zM642 851c0 -70 -75 -138 -189 -138s-189 68 -189 138h32 c19 -58 82 -82 157 -82s138 24 157 82h32'], + 0xE02F: [772,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM438 772 c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32zM429 639c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29 c17 -58 74 -82 143 -82c68 0 125 24 143 82h28'], + 0xE030: [772,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM491 772 c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c19 65 62 101 123 101c26 0 56 -6 84 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 65 50h35zM481 639c0 -70 -75 -138 -189 -138c-113 0 -189 68 -189 138h32 c19 -58 82 -82 157 -82s138 24 158 82h31'], + 0xE031: [847,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM594 718h-53 l-137 79l-138 -79h-52l147 129h85'], + 0xE032: [847,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM663 718h-59 l-151 79l-151 -79h-58l162 129h93'], + 0xE033: [674,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM428 507h-37l-135 103l-133 -103 h-37l136 167h69'], + 0xE034: [674,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM480 507h-41 l-148 103l-146 -103h-42l151 167h75'], + 0xE035: [1006,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM551 980 c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26zM594 718h-53l-137 79l-138 -79h-52l147 129h85'], + 0xE036: [1006,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM615 980 c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120c24 15 36 19 55 19c29 0 46 -10 46 -26zM663 718h-59l-151 79l-151 -79h-58l162 129h93'], + 0xE037: [794,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM405 768c0 -13 -11 -24 -35 -33 l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26zM448 506h-53l-137 79l-138 -79h-53l148 129h84'], + 0xE038: [794,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM454 768 c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120c24 15 36 19 55 19c29 0 46 -10 46 -26zM502 506h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE039: [847,191,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM594 718h-53 l-137 79l-138 -79h-52l147 129h85zM463 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE03A: [847,191,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM663 718h-59 l-151 79l-151 -79h-58l162 129h93zM519 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE03B: [674,191,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM428 507h-37l-135 103l-133 -103 h-37l136 167h69zM313 -140c0 -29 -25 -51 -57 -51c-30 0 -56 22 -56 51c0 28 26 51 56 51c32 0 57 -23 57 -51'], + 0xE03C: [674,191,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM480 507h-41 l-148 103l-146 -103h-42l151 167h75zM353 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE03D: [1006,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM522 867h-48 l-183 80c-25 9 -36 20 -36 33c0 16 16 26 42 26c18 0 29 -4 51 -19zM594 718h-53l-137 79l-138 -79h-52l147 129h85'], + 0xE03E: [1006,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM583 867h-52 l-202 80c-27 9 -39 20 -39 33c0 16 17 26 46 26c19 0 31 -4 55 -19zM663 718h-59l-151 79l-151 -79h-58l162 129h93'], + 0xE03F: [794,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM375 655h-47l-184 80 c-24 9 -35 20 -35 33c0 16 15 26 42 26c17 0 28 -4 50 -19zM448 506h-53l-137 79l-138 -79h-53l148 129h84'], + 0xE040: [794,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM422 655h-52 l-202 80c-27 9 -39 20 -39 33c0 16 17 26 46 26c19 0 31 -4 56 -19zM502 506h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE041: [1020,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM594 972 c0 -16 -19 -32 -50 -49c-28 -14 -47 -25 -50 -32c-5 -6 -10 -14 -12 -24h-28c2 21 16 42 40 63c20 17 28 29 28 39c0 23 -20 34 -61 34c-19 0 -33 -2 -43 -8c-3 -2 -6 -3 -6 -6c0 -4 19 -17 19 -23c0 -11 -10 -17 -33 -17c-26 0 -40 8 -40 26c0 26 47 45 116 45 c43 0 75 -7 96 -18c16 -10 24 -20 24 -30zM594 718h-53l-137 79l-138 -79h-52l147 129h85'], + 0xE042: [1020,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM663 972 c0 -16 -21 -32 -56 -49c-30 -14 -51 -25 -55 -32c-6 -6 -10 -14 -13 -24h-30c1 21 17 42 43 63c22 17 31 29 31 39c0 23 -22 34 -67 34c-20 0 -36 -2 -47 -8c-4 -2 -7 -3 -7 -6c0 -4 21 -17 21 -23c0 -11 -10 -17 -36 -17c-29 0 -45 8 -45 26c0 26 52 45 129 45 c47 0 82 -7 105 -18c18 -10 27 -20 27 -30zM663 718h-59l-151 79l-151 -79h-58l162 129h93'], + 0xE043: [808,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM448 760c0 -16 -19 -32 -51 -49 c-27 -14 -46 -25 -49 -32c-6 -6 -10 -14 -12 -24h-28c1 21 16 42 40 63c20 17 27 29 27 39c0 23 -20 34 -60 34c-19 0 -33 -2 -43 -8c-3 -2 -7 -3 -7 -6c0 -4 20 -17 20 -23c0 -11 -10 -17 -33 -17c-26 0 -41 8 -41 26c0 26 48 45 117 45c43 0 75 -7 96 -18 c16 -10 24 -20 24 -30zM448 506h-53l-137 79l-138 -79h-53l148 129h84'], + 0xE044: [808,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM502 760 c0 -16 -21 -32 -56 -49c-30 -14 -51 -25 -55 -32c-6 -6 -10 -14 -13 -24h-30c1 21 17 42 43 63c22 17 31 29 31 39c0 23 -22 34 -67 34c-20 0 -36 -2 -47 -8c-4 -2 -7 -3 -7 -6c0 -4 22 -17 22 -23c0 -11 -11 -17 -37 -17c-29 0 -45 8 -45 26c0 26 52 45 129 45 c47 0 82 -7 105 -18c18 -10 27 -20 27 -30zM502 506h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE045: [983,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM584 983 c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c17 65 56 101 111 101c25 0 52 -6 77 -18l27 -12c21 -9 42 -15 58 -15c25 0 40 12 58 50h32zM594 718h-53l-137 79l-138 -79h-52l147 129h85'], + 0xE046: [983,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM652 983 c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c18 65 62 101 123 101c26 0 56 -6 84 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 65 50h35zM663 718h-59l-151 79l-151 -79h-58l162 129h93'], + 0xE047: [771,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM438 771 c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32zM448 506h-53l-137 79l-138 -79h-53l148 129h84'], + 0xE048: [771,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM491 771 c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c19 65 62 101 123 101c26 0 56 -6 84 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 65 50h35zM502 506h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE049: [675,-504,386,112,359,'359 643c0 -16 -10 -29 -33 -42l-170 -97h-44l162 148c20 18 30 23 46 23c24 0 39 -12 39 -32'], + 0xE04A: [675,-504,443,133,404,'404 643c0 -16 -11 -29 -37 -42l-186 -97h-48l177 148c22 18 33 23 51 23c27 0 43 -12 43 -32'], + 0xE04B: [832,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM349 782 c0 -27 -25 -49 -56 -49c-30 0 -53 22 -53 50c0 26 25 49 53 49c31 0 56 -23 56 -50zM568 782c0 -27 -26 -49 -56 -49s-53 22 -53 50c0 26 25 49 53 49c30 0 56 -23 56 -50'], + 0xE04C: [832,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM393 782 c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM633 782c0 -27 -27 -49 -61 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 61 -23 61 -50'], + 0xE04D: [640,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM203 590c0 -27 -26 -49 -57 -49 c-29 0 -52 22 -52 50c0 26 25 49 52 49c31 0 57 -23 57 -50zM421 590c0 -27 -25 -49 -56 -49c-29 0 -52 22 -52 50c0 26 25 49 52 49c31 0 56 -23 56 -50'], + 0xE04E: [640,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM232 590 c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM473 590c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50'], + 0xE04F: [674,191,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM463 -140 c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE050: [674,191,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM519 -140 c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE051: [460,191,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM313 -140c0 -29 -25 -51 -57 -51 c-30 0 -56 22 -56 51c0 28 26 51 56 51c32 0 57 -23 57 -51'], + 0xE052: [460,191,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM353 -140 c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE053: [662,0,998,10,959,'959 168l-48 -168h-561v19l19 2c66 7 79 21 79 87v152h-194l-31 -53c-44 -78 -70 -136 -70 -158c0 -15 28 -26 75 -30h1v-19h-219v19c47 6 61 17 97 78l269 484c7 11 10 22 10 28c0 22 -27 31 -99 33v20h621v-141h-26c-14 91 -39 105 -200 105h-96c-20 0 -29 -8 -29 -30 v-230h122c69 0 108 9 125 30c11 15 16 30 20 67h23v-234h-23c-5 41 -10 56 -22 72c-14 18 -44 28 -86 28h-159v-238c0 -50 4 -53 76 -53h83c119 0 153 20 217 130h26zM448 299v319l-175 -319h175'], + 0xE054: [662,0,1116,20,1064,'1064 168l-53 -168h-617v19l20 2c73 7 88 21 88 87v152h-213l-34 -53c-49 -78 -78 -136 -78 -158c0 -15 31 -26 83 -30h1v-19h-241v19c52 6 67 17 106 78l297 484c7 11 11 22 11 28c0 22 -30 31 -109 33v20h682v-141h-27c-16 91 -44 105 -221 105h-105 c-23 0 -33 -8 -33 -30v-230h135c76 0 118 9 138 30c12 15 17 30 21 67h26v-234h-26c-6 41 -10 56 -24 72c-16 18 -48 28 -94 28h-176v-238c0 -50 5 -53 84 -53h92c131 0 168 20 238 130h29zM502 299v319l-193 -319h193'], + 0xE055: [460,10,754,52,705,'705 149c-29 -59 -50 -87 -80 -111c-40 -32 -85 -48 -136 -48c-63 0 -105 21 -142 73c-75 -56 -113 -73 -168 -73c-74 0 -127 45 -127 110c0 60 46 101 164 145l94 36l3 63c1 23 -5 54 -14 69c-7 14 -28 23 -55 23c-46 0 -80 -23 -74 -50c1 -3 1 -6 1 -6v-11l1 -17 c1 -29 -17 -48 -48 -48c-29 0 -48 19 -48 48c0 62 76 108 176 108c54 0 87 -12 129 -45c49 34 80 45 131 45c111 0 164 -54 176 -183h-289c2 -99 7 -131 30 -170c19 -30 60 -50 105 -50c62 0 105 27 158 97zM333 88l-1 3c-14 37 -21 74 -21 110v52 c-133 -44 -163 -68 -163 -128c0 -48 33 -87 73 -87c41 0 112 32 112 50zM583 307c-2 87 -27 124 -87 124c-62 0 -90 -36 -95 -124h182'], + 0xE056: [460,10,847,66,785,'785 149c-33 -59 -56 -87 -89 -111c-43 -32 -93 -48 -150 -48c-69 0 -115 21 -156 73c-82 -56 -123 -73 -184 -73c-82 0 -140 45 -140 110c0 60 51 101 180 145l104 36l3 63c1 23 -5 54 -15 69c-8 14 -31 23 -60 23c-51 0 -89 -23 -83 -50c2 -3 2 -6 2 -6v-11l1 -17 c1 -29 -18 -48 -52 -48c-33 0 -53 19 -53 48c0 62 83 108 193 108c59 0 96 -12 142 -45c54 34 88 45 144 45c122 0 180 -54 193 -183h-317c2 -99 8 -131 33 -170c21 -30 65 -50 115 -50c69 0 116 27 174 97zM376 88l-1 3c-16 37 -23 74 -23 110v52 c-147 -44 -181 -68 -181 -128c0 -48 37 -87 81 -87c45 0 124 32 124 50zM650 307c-2 87 -30 124 -95 124c-69 0 -99 -36 -105 -124h200'], + 0xE057: [851,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM500 712h-48 l-183 80c-25 9 -36 20 -36 33c0 16 16 26 42 26c18 0 29 -4 51 -19'], + 0xE058: [851,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM558 712h-52 l-202 80c-26 9 -38 20 -38 33c0 16 17 26 46 26c19 0 31 -4 55 -19'], + 0xE059: [675,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM338 504h-44l-170 97 c-23 13 -33 26 -33 42c0 20 15 32 39 32c16 0 26 -5 46 -23'], + 0xE05A: [675,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM381 504h-49 l-186 97c-26 13 -36 26 -36 42c0 20 15 32 42 32c18 0 29 -5 51 -23'], + 0xE05B: [896,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM512 838 c0 -20 -17 -38 -47 -59c-25 -18 -41 -31 -46 -40c-4 -7 -7 -16 -11 -30h-25c1 27 15 52 36 79c19 19 26 35 26 47c0 27 -18 42 -55 42c-18 0 -31 -4 -39 -10c-4 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 107 53 c39 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE05C: [896,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM572 838 c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -8 -16 -12 -30h-28c1 27 17 52 40 79c21 19 28 35 28 47c0 27 -19 42 -61 42c-19 0 -33 -4 -42 -10c-5 -2 -7 -5 -7 -8c0 -4 20 -21 20 -29c0 -13 -10 -19 -33 -19c-27 0 -42 10 -42 32c0 30 49 53 118 53 c43 0 75 -7 97 -22c15 -12 24 -24 24 -36'], + 0xE05D: [684,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM365 626c0 -20 -16 -38 -46 -59 c-25 -18 -42 -31 -46 -40c-4 -7 -8 -16 -11 -30h-25c1 27 15 52 36 79c19 19 25 35 25 47c0 27 -17 42 -55 42c-17 0 -31 -4 -38 -10c-5 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 106 53c40 0 69 -7 88 -22 c15 -12 22 -24 22 -36'], + 0xE05E: [684,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM411 626 c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -8 -16 -12 -30h-28c1 27 17 52 40 79c21 19 28 35 28 47c0 27 -19 42 -60 42c-20 0 -34 -4 -43 -10c-5 -2 -7 -5 -7 -8c0 -4 20 -21 20 -29c0 -13 -10 -19 -33 -19c-27 0 -42 10 -42 32c0 30 49 53 118 53 c43 0 75 -7 97 -22c15 -12 24 -24 24 -36'], + 0xE05F: [809,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM574 755h-342v54 h342v-54'], + 0xE060: [809,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM641 755h-377 v54h377v-54'], + 0xE061: [617,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM428 563h-342v54h342v-54'], + 0xE062: [617,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM480 563h-377v54 h377v-54'], + 0xE063: [676,13,876,56,835,'835 100c-33 -71 -96 -113 -166 -113c-64 0 -118 26 -187 91c-83 -66 -149 -91 -238 -91c-116 0 -188 57 -188 152c0 84 56 155 173 216l42 22c-30 75 -39 107 -39 145c0 86 75 154 170 154c87 0 148 -50 148 -121c0 -33 -14 -68 -37 -91c-31 -31 -59 -48 -133 -80 c48 -86 83 -137 145 -206c70 85 100 139 100 182c0 30 -15 40 -70 45v21h237v-21c-55 -6 -77 -18 -103 -59l-29 -46c-34 -54 -61 -91 -110 -150c51 -61 108 -92 170 -92c39 0 63 13 99 53zM492 559c0 49 -38 85 -88 85c-51 0 -85 -34 -85 -82c0 -45 11 -83 44 -146 c90 44 129 87 129 143zM454 104c-62 70 -101 125 -167 239c-95 -56 -130 -99 -130 -163c0 -77 65 -141 142 -141c47 0 91 18 155 65'], + 0xE064: [676,13,981,71,928,'928 100c-37 -71 -106 -113 -183 -113c-70 0 -130 26 -206 91c-91 -66 -163 -91 -261 -91c-129 0 -207 57 -207 152c0 84 62 155 190 216l46 22c-33 75 -43 107 -43 145c0 86 83 154 187 154c95 0 163 -50 163 -121c0 -33 -16 -68 -41 -91c-34 -31 -64 -48 -146 -80 c53 -86 92 -137 159 -206c78 85 110 139 110 182c0 30 -17 40 -77 45v21h261v-21c-60 -6 -84 -18 -113 -59l-32 -46c-37 -54 -68 -91 -121 -150c56 -61 119 -92 186 -92c44 0 71 13 109 53zM550 559c0 49 -41 85 -97 85c-55 0 -93 -34 -93 -82c0 -45 12 -83 48 -146 c100 44 142 87 142 143zM509 104c-69 70 -111 125 -184 239c-105 -56 -143 -99 -143 -163c0 -77 72 -141 156 -141c51 0 99 18 171 65'], + 0xE065: [674,245,814,27,787,'787 -164c-20 -39 -51 -81 -114 -81c-47 0 -84 38 -84 86c0 40 15 75 39 104c17 21 38 39 61 55h-183v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22 l274 -568c38 -74 49 -84 99 -87v-19c-42 0 -84 -16 -105 -49c-16 -24 -26 -51 -26 -83c0 -36 17 -61 50 -61c29 0 47 23 60 43zM502 257l-128 275l-126 -275h254'], + 0xE066: [674,245,914,38,874,'874 -164c-22 -39 -55 -81 -124 -81c-52 0 -94 38 -94 86c0 40 17 75 44 104c18 21 41 39 67 55h-201v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491 h24l301 -568c43 -74 55 -84 109 -87v-19c-46 0 -92 -16 -115 -49c-18 -24 -29 -51 -29 -83c0 -36 20 -61 56 -61c31 0 51 23 65 43zM561 257l-140 275l-140 -275h280'], + 0xE067: [460,245,508,51,496,'496 -164c-20 -39 -50 -81 -113 -81c-47 0 -85 38 -85 86c0 40 16 75 40 104c13 17 30 32 47 46c-36 3 -53 24 -58 72c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49 c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26c-18 -19 -34 -31 -49 -39c-38 -19 -63 -52 -75 -89 c-4 -13 -7 -28 -7 -44c0 -36 18 -61 51 -61c29 0 46 23 59 43zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53'], + 0xE068: [460,245,577,65,555,'555 -164c-22 -39 -56 -81 -125 -81c-52 0 -93 38 -93 86c0 40 17 75 44 104c14 17 32 32 52 46c-40 3 -58 24 -65 72c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49 c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26c-21 -19 -38 -31 -55 -39c-41 -19 -69 -52 -82 -89 c-5 -13 -7 -28 -7 -44c0 -36 19 -61 55 -61c32 0 51 23 66 43zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53'], + 0xE069: [896,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM513 796 c0 -55 -50 -99 -110 -99c-62 0 -109 44 -109 100c0 54 49 99 109 99s110 -45 110 -100zM475 796c0 36 -33 66 -71 66c-40 0 -73 -29 -73 -65s32 -66 71 -66c40 0 73 29 73 65'], + 0xE06A: [896,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM573 796 c0 -55 -54 -99 -121 -99c-68 0 -120 44 -120 100c0 54 55 99 120 99c67 0 121 -45 121 -100zM532 796c0 36 -36 66 -79 66s-80 -29 -80 -65s35 -66 78 -66c45 0 81 29 81 65'], + 0xE06B: [690,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM366 590c0 -55 -49 -99 -110 -99 s-108 44 -108 100c0 54 49 99 108 99c61 0 110 -45 110 -100zM329 590c0 36 -33 66 -71 66c-40 0 -73 -29 -73 -65s32 -66 70 -66c41 0 74 29 74 65'], + 0xE06C: [690,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM412 590 c0 -55 -54 -99 -121 -99c-68 0 -120 44 -120 100c0 54 55 99 120 99c67 0 121 -45 121 -100zM371 590c0 36 -36 66 -79 66s-80 -29 -80 -65s35 -66 78 -66c45 0 81 29 81 65'], + 0xE06D: [676,14,1033,138,900,'900 383c0 -129 -94 -240 -202 -240c-53 0 -94 29 -101 73c-37 -45 -89 -72 -137 -72c-54 0 -97 49 -97 112c0 73 34 149 93 202c37 34 75 50 123 50c38 0 55 -11 79 -52l11 38h76l-72 -254c-1 -6 -2 -11 -2 -18c0 -31 14 -46 43 -46c73 0 142 97 142 197 c0 149 -143 272 -316 272c-80 0 -154 -27 -208 -76c-62 -59 -102 -153 -102 -246c0 -174 134 -298 321 -298c74 0 130 13 216 48l13 -30c-107 -44 -162 -57 -239 -57c-227 0 -403 148 -403 340c0 195 178 350 401 350c204 0 361 -128 361 -293zM639 399c2 39 -14 63 -45 65 c-26 2 -65 -18 -96 -50c-37 -38 -57 -88 -57 -142c0 -52 26 -85 66 -85c30 0 62 22 83 58c28 47 47 106 49 154'], + 0xE06E: [676,14,1154,160,999,'999 383c0 -129 -103 -240 -223 -240c-58 0 -103 29 -110 73c-41 -45 -98 -72 -151 -72c-59 0 -107 49 -107 112c0 73 38 149 102 202c41 34 84 50 136 50c42 0 60 -11 87 -52l12 38h83l-78 -254c-2 -6 -3 -11 -3 -18c0 -31 16 -46 47 -46c80 0 156 97 156 197 c0 149 -157 272 -347 272c-88 0 -169 -27 -228 -76c-69 -59 -113 -153 -113 -246c0 -174 148 -298 353 -298c81 0 143 13 237 48l15 -30c-117 -44 -178 -57 -263 -57c-250 0 -444 148 -444 340c0 195 196 350 442 350c224 0 397 -128 397 -293zM712 399c3 39 -16 63 -49 65 c-30 2 -72 -18 -106 -50c-41 -38 -63 -88 -63 -142c0 -52 28 -85 73 -85c33 0 68 22 91 58c31 47 52 106 54 154'], + 0xE06F: [835,0,814,27,787,'787 0h-281v19c40 0 49 2 62 9c9 4 15 15 15 24c0 15 -8 40 -21 68l-45 96h-288l-51 -117c-5 -13 -8 -27 -8 -39c0 -28 22 -41 74 -41v-19h-217v19c52 3 66 18 136 164l229 491h22l274 -568c38 -74 49 -84 99 -87v-19zM502 257l-128 275l-126 -275h254zM584 835 c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c17 65 56 101 111 101c25 0 52 -6 77 -18l27 -12c21 -9 42 -15 58 -15c25 0 40 12 58 50h32'], + 0xE070: [835,0,914,38,874,'874 0h-308v19c43 0 53 2 67 9c10 4 17 15 17 24c0 15 -8 40 -23 68l-49 96h-317l-56 -117c-6 -13 -10 -27 -10 -39c0 -28 25 -41 83 -41v-19h-240v19c58 3 73 18 150 164l252 491h24l301 -568c43 -74 55 -84 109 -87v-19zM561 257l-140 275l-140 -275h280zM652 835 c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c18 65 62 101 123 101c26 0 56 -6 84 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 65 50h35'], + 0xE071: [643,10,508,51,496,'496 40c-38 -38 -61 -50 -99 -50c-45 0 -65 20 -70 73c-67 -52 -112 -73 -161 -73c-68 0 -115 44 -115 107c0 33 15 67 39 87c48 38 66 46 236 108v61c0 54 -30 83 -84 83c-44 0 -79 -22 -79 -49c0 -7 1 -15 3 -24c1 -7 2 -12 2 -16c0 -22 -23 -42 -49 -42s-47 20 -47 43 c0 25 17 54 45 75c31 23 83 37 139 37c68 0 115 -20 138 -58c15 -23 21 -51 21 -102v-195c0 -44 8 -58 33 -58c16 0 30 5 48 19v-26zM326 123v145c-133 -44 -178 -80 -178 -139v-4c0 -43 30 -77 69 -77c23 0 54 8 80 22c23 13 29 22 29 53zM438 643 c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32'], + 0xE072: [643,10,577,65,555,'555 40c-43 -38 -68 -50 -109 -50c-50 0 -71 20 -78 73c-73 -52 -123 -73 -176 -73c-75 0 -127 44 -127 107c0 33 17 67 43 87c52 38 73 46 259 108v61c0 54 -32 83 -92 83c-48 0 -87 -22 -87 -49c0 -7 1 -15 4 -24c1 -7 2 -12 2 -16c0 -22 -25 -42 -54 -42 s-52 20 -52 43c0 25 19 54 49 75c34 23 92 37 154 37c74 0 126 -20 151 -58c17 -23 23 -51 23 -102v-195c0 -44 9 -58 37 -58c18 0 32 5 53 19v-26zM367 123v145c-146 -44 -196 -80 -196 -139v-4c0 -43 34 -77 76 -77c26 0 60 8 89 22c25 13 31 22 31 53zM491 643 c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c19 65 62 101 123 101c26 0 56 -6 84 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 65 50h35'], + 0xE073: [662,0,754,29,662,'662 180c0 -48 -22 -93 -61 -125c-41 -34 -119 -55 -205 -55h-367v19c91 3 105 16 105 90v444c0 74 -13 85 -105 90v19h308c190 0 288 -58 288 -170c0 -41 -17 -78 -44 -100c-26 -21 -50 -31 -107 -44c72 -16 101 -28 134 -55c35 -29 54 -69 54 -113zM536 179 c0 63 -30 103 -93 127c-39 15 -90 20 -196 20v-248c0 -32 15 -41 69 -41c72 0 118 8 153 26c44 23 67 62 67 116zM513 488c0 89 -67 137 -194 137h-48c-17 0 -24 -9 -24 -30v-229h104c103 0 162 44 162 122'], + 0xE074: [662,0,847,41,738,'738 180c0 -48 -25 -93 -68 -125c-45 -34 -131 -55 -225 -55h-404v19c100 3 116 16 116 90v444c0 74 -15 85 -116 90v19h338c210 0 317 -58 317 -170c0 -41 -18 -78 -48 -100c-29 -21 -54 -31 -117 -44c78 -16 111 -28 147 -55c38 -29 60 -69 60 -113zM598 179 c0 63 -32 103 -101 127c-44 15 -99 20 -217 20v-248c0 -32 17 -41 76 -41c80 0 130 8 169 26c48 23 73 62 73 116zM573 488c0 89 -74 137 -213 137h-53c-18 0 -27 -9 -27 -30v-229h115c114 0 178 44 178 122'], + 0xE075: [683,10,570,13,525,'525 243c0 -143 -112 -253 -258 -253c-88 0 -181 33 -181 64v519c0 42 -10 51 -54 51c-8 0 -12 0 -19 -1v16l32 8c52 13 82 21 128 36l5 -2v-306c22 49 86 85 153 85c110 0 194 -94 194 -217zM428 197c0 122 -55 200 -141 200c-57 0 -109 -36 -109 -75v-252 c0 -25 50 -48 107 -48c90 0 143 64 143 175'], + 0xE076: [683,10,645,24,586,'586 243c0 -143 -123 -253 -283 -253c-97 0 -200 33 -200 64v519c0 42 -10 51 -59 51c-8 0 -13 0 -20 -1v16l35 8c57 13 89 21 140 36l6 -2v-306c24 49 95 85 168 85c121 0 213 -94 213 -217zM480 197c0 122 -61 200 -155 200c-63 0 -120 -36 -120 -75v-252 c0 -25 55 -48 118 -48c99 0 157 64 157 175'], + 0xE077: [669,-512,386,39,348,'348 669c-13 -106 -64 -157 -156 -157c-52 0 -96 19 -124 54c-21 28 -28 52 -29 103h32c15 -67 52 -97 123 -97c64 0 91 21 122 97h32'], + 0xE078: [669,-512,443,51,391,'391 669c-14 -106 -70 -157 -171 -157c-57 0 -106 19 -136 54c-23 28 -31 52 -33 103h36c16 -67 58 -97 135 -97c70 0 101 21 134 97h35'], + 0xE079: [662,156,240,84,156,'156 335h-72v327h72v-327zM156 -156h-72v327h72v-327'], + 0xE07A: [662,156,282,101,181,'181 335h-80v327h80v-327zM181 -156h-80v327h80v-327'], + 0xE07B: [676,14,754,41,706,'706 113c-67 -81 -176 -127 -300 -127c-219 0 -365 136 -365 339c0 114 45 209 129 272c67 50 154 79 238 79c54 0 108 -8 162 -24c18 -6 33 -9 44 -9c21 0 38 12 45 33h23l10 -226h-25c-21 65 -38 93 -73 125c-44 40 -100 61 -164 61c-159 0 -262 -117 -262 -298 c0 -116 37 -206 102 -255c46 -35 105 -53 171 -53c92 0 164 30 246 101'], + 0xE07C: [676,14,847,54,786,'786 113c-74 -81 -194 -127 -330 -127c-241 0 -402 136 -402 339c0 114 49 209 141 272c74 50 170 79 263 79c59 0 119 -8 178 -24c19 -6 36 -9 48 -9c23 0 43 12 50 33h25l11 -226h-28c-23 65 -41 93 -79 125c-49 40 -111 61 -181 61c-175 0 -288 -117 -288 -298 c0 -116 40 -206 112 -255c50 -35 116 -53 188 -53c101 0 181 30 270 101'], + 0xE07D: [460,10,508,38,463,'463 147c-35 -62 -57 -91 -90 -115c-37 -28 -79 -42 -126 -42c-123 0 -209 93 -209 222c0 83 33 152 92 197c44 33 97 51 148 51c93 0 170 -47 170 -103c0 -23 -23 -42 -52 -42c-24 0 -44 17 -53 46l-6 22c-11 37 -26 48 -65 48c-89 0 -150 -70 -150 -174 c0 -115 70 -195 171 -195c62 0 102 24 155 94'], + 0xE07E: [460,10,577,50,519,'519 147c-39 -62 -63 -91 -100 -115c-41 -28 -87 -42 -139 -42c-134 0 -230 93 -230 222c0 83 37 152 102 197c48 33 106 51 163 51c102 0 187 -47 187 -103c0 -23 -26 -42 -57 -42c-27 0 -49 17 -58 46l-8 22c-12 37 -27 48 -71 48c-98 0 -165 -70 -165 -174 c0 -115 77 -195 188 -195c69 0 113 24 171 94'], + 0xE07F: [851,14,754,41,706,'706 113c-67 -81 -176 -127 -300 -127c-219 0 -365 136 -365 339c0 114 45 209 129 272c67 50 154 79 238 79c54 0 108 -8 162 -24c18 -6 33 -9 44 -9c21 0 38 12 45 33h23l10 -226h-25c-21 65 -38 93 -73 125c-44 40 -100 61 -164 61c-159 0 -262 -117 -262 -298 c0 -116 37 -206 102 -255c46 -35 105 -53 171 -53c92 0 164 30 246 101zM579 825c0 -13 -11 -24 -35 -33l-184 -80h-47l173 120c22 15 33 19 51 19c26 0 42 -10 42 -26'], + 0xE080: [851,14,847,54,786,'786 113c-74 -81 -194 -127 -330 -127c-241 0 -402 136 -402 339c0 114 49 209 141 272c74 50 170 79 263 79c59 0 119 -8 178 -24c19 -6 36 -9 48 -9c23 0 43 12 50 33h25l11 -226h-28c-23 65 -41 93 -79 125c-49 40 -111 61 -181 61c-175 0 -288 -117 -288 -298 c0 -116 40 -206 112 -255c50 -35 116 -53 188 -53c101 0 181 30 270 101zM646 825c0 -13 -13 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 46 -10 46 -26'], + 0xE081: [675,10,508,38,463,'463 147c-35 -62 -57 -91 -90 -115c-37 -28 -79 -42 -126 -42c-123 0 -209 93 -209 222c0 83 33 152 92 197c44 33 97 51 148 51c93 0 170 -47 170 -103c0 -23 -23 -42 -52 -42c-24 0 -44 17 -53 46l-6 22c-11 37 -26 48 -65 48c-89 0 -150 -70 -150 -174 c0 -115 70 -195 171 -195c62 0 102 24 155 94zM445 643c0 -16 -10 -29 -33 -42l-170 -97h-44l162 148c20 18 30 23 46 23c24 0 39 -12 39 -32'], + 0xE082: [675,10,577,50,519,'519 147c-39 -62 -63 -91 -100 -115c-41 -28 -87 -42 -139 -42c-134 0 -230 93 -230 222c0 83 37 152 102 197c48 33 106 51 163 51c102 0 187 -47 187 -103c0 -23 -26 -42 -57 -42c-27 0 -49 17 -58 46l-8 22c-12 37 -27 48 -71 48c-98 0 -165 -70 -165 -174 c0 -115 77 -195 188 -195c69 0 113 24 171 94zM498 643c0 -16 -11 -29 -36 -42l-187 -97h-48l178 148c22 18 32 23 51 23c26 0 42 -12 42 -32'], + 0xE083: [674,-507,386,22,364,'364 674l-137 -167h-68l-137 167h38l133 -103l134 103h37'], + 0xE084: [674,-507,443,33,410,'410 674l-152 -167h-75l-150 167h41l147 -103l147 103h42'], + 0xE085: [847,14,754,41,706,'706 113c-67 -81 -176 -127 -300 -127c-219 0 -365 136 -365 339c0 114 45 209 129 272c67 50 154 79 238 79c54 0 108 -8 162 -24c18 -6 33 -9 44 -9c21 0 38 12 45 33h23l10 -226h-25c-21 65 -38 93 -73 125c-44 40 -100 61 -164 61c-159 0 -262 -117 -262 -298 c0 -116 37 -206 102 -255c46 -35 105 -53 171 -53c92 0 164 30 246 101zM599 847l-148 -129h-85l-148 129h53l137 -79l138 79h53'], + 0xE086: [847,14,847,54,786,'786 113c-74 -81 -194 -127 -330 -127c-241 0 -402 136 -402 339c0 114 49 209 141 272c74 50 170 79 263 79c59 0 119 -8 178 -24c19 -6 36 -9 48 -9c23 0 43 12 50 33h25l11 -226h-28c-23 65 -41 93 -79 125c-49 40 -111 61 -181 61c-175 0 -288 -117 -288 -298 c0 -116 40 -206 112 -255c50 -35 116 -53 188 -53c101 0 181 30 270 101zM667 847l-162 -129h-93l-163 129h58l151 -79l151 79h58'], + 0xE087: [674,10,508,38,463,'463 147c-35 -62 -57 -91 -90 -115c-37 -28 -79 -42 -126 -42c-123 0 -209 93 -209 222c0 83 33 152 92 197c44 33 97 51 148 51c93 0 170 -47 170 -103c0 -23 -23 -42 -52 -42c-24 0 -44 17 -53 46l-6 22c-11 37 -26 48 -65 48c-89 0 -150 -70 -150 -174 c0 -115 70 -195 171 -195c62 0 102 24 155 94zM450 674l-137 -167h-69l-136 167h37l133 -103l135 103h37'], + 0xE088: [674,10,577,50,519,'519 147c-39 -62 -63 -91 -100 -115c-41 -28 -87 -42 -139 -42c-134 0 -230 93 -230 222c0 83 37 152 102 197c48 33 106 51 163 51c102 0 187 -47 187 -103c0 -23 -26 -42 -57 -42c-27 0 -49 17 -58 46l-8 22c-12 37 -27 48 -71 48c-98 0 -165 -70 -165 -174 c0 -115 77 -195 188 -195c69 0 113 24 171 94zM504 674l-151 -167h-75l-150 167h41l146 -103l148 103h41'], + 0xE089: [676,215,754,41,706,'706 113c-67 -81 -176 -127 -300 -127c-9 0 -16 0 -26 1l-22 -52c11 2 17 3 28 3c60 0 95 -25 95 -69c0 -52 -53 -84 -138 -84c-34 0 -60 4 -92 16l15 31c30 -9 49 -12 72 -12c37 0 60 17 60 44c0 26 -16 36 -58 36c-13 0 -22 -1 -31 -4l-7 5l40 89 c-183 24 -301 153 -301 335c0 114 45 209 129 272c67 50 154 79 238 79c54 0 108 -8 162 -24c18 -6 33 -9 44 -9c21 0 38 12 45 33h23l10 -226h-25c-21 65 -38 93 -73 125c-44 40 -100 61 -164 61c-159 0 -262 -117 -262 -298c0 -116 37 -206 102 -255 c46 -35 105 -53 171 -53c92 0 164 30 246 101'], + 0xE08A: [676,215,847,54,786,'786 113c-74 -81 -194 -127 -330 -127c-10 0 -19 0 -29 1l-25 -52c12 2 20 3 32 3c65 0 104 -25 104 -69c0 -52 -58 -84 -151 -84c-38 0 -67 4 -102 16l17 31c33 -9 53 -12 79 -12c41 0 66 17 66 44c0 26 -18 36 -64 36c-15 0 -24 -1 -34 -4l-8 5l44 89 c-202 24 -331 153 -331 335c0 114 49 209 141 272c74 50 170 79 263 79c59 0 119 -8 178 -24c19 -6 36 -9 48 -9c23 0 43 12 50 33h25l11 -226h-28c-23 65 -41 93 -79 125c-49 40 -111 61 -181 61c-175 0 -288 -117 -288 -298c0 -116 40 -206 112 -255 c50 -35 116 -53 188 -53c101 0 181 30 270 101'], + 0xE08B: [460,215,508,38,463,'463 147c-57 -105 -115 -150 -204 -157l-23 -55c11 2 17 3 28 3c60 0 95 -25 95 -69c0 -52 -53 -84 -138 -84c-34 0 -60 4 -92 16l15 31c30 -9 49 -12 72 -12c37 0 60 17 60 44c0 26 -16 36 -58 36c-13 0 -22 -1 -31 -4l-8 5l42 91c-111 13 -183 101 -183 220 c0 83 31 152 92 197c44 33 97 51 148 51c93 0 170 -47 170 -103c0 -23 -23 -42 -52 -42c-24 0 -44 17 -53 46l-6 22c-11 37 -26 48 -65 48c-89 0 -150 -70 -150 -174c0 -115 70 -195 171 -195c62 0 102 24 155 94'], + 0xE08C: [460,215,577,50,519,'519 147c-63 -105 -128 -150 -226 -157l-25 -55c12 2 19 3 32 3c65 0 104 -25 104 -69c0 -52 -59 -84 -152 -84c-37 0 -66 4 -101 16l17 31c32 -9 53 -12 78 -12c41 0 67 17 67 44c0 26 -18 36 -64 36c-15 0 -25 -1 -34 -4l-9 5l46 91c-122 13 -202 101 -202 220 c0 83 35 152 102 197c48 33 106 51 163 51c102 0 187 -47 187 -103c0 -23 -26 -42 -57 -42c-27 0 -49 17 -58 46l-8 22c-12 37 -27 48 -71 48c-98 0 -165 -70 -165 -174c0 -115 77 -195 188 -195c69 0 113 24 171 94'], + 0xE08D: [5,215,386,67,297,'297 -131c0 -52 -53 -84 -137 -84c-36 0 -61 4 -93 16l16 31c30 -9 48 -12 71 -12c38 0 61 17 61 44c0 26 -17 36 -59 36c-12 0 -22 -1 -30 -4l-8 5l45 104h38l-27 -70c11 2 18 3 29 3c59 0 94 -26 94 -69'], + 0xE08E: [5,215,443,83,336,'336 -131c0 -52 -58 -84 -151 -84c-39 0 -67 4 -102 16l17 31c34 -9 53 -12 79 -12c41 0 66 17 66 44c0 26 -18 36 -64 36c-13 0 -24 -1 -34 -4l-8 5l49 104h43l-31 -70c12 2 20 3 32 3c65 0 104 -26 104 -69'], + 0xE08F: [579,138,570,68,503,'503 156c-38 -70 -58 -97 -97 -127c-31 -24 -71 -38 -113 -38c-19 0 -35 2 -62 9l-54 -138h-37l56 150c-41 21 -57 34 -77 59c-32 40 -51 94 -51 148c0 135 106 241 242 241c16 0 30 -1 56 -5l49 124h38l-51 -135c52 -19 82 -49 82 -84c0 -26 -20 -45 -47 -45 c-28 0 -44 13 -64 52l-111 -291c26 -9 43 -12 65 -12c65 0 104 25 162 100zM354 421c-19 7 -33 9 -51 9c-91 0 -150 -68 -150 -170c0 -72 21 -117 75 -162'], + 0xE090: [579,138,645,84,562,'562 156c-41 -70 -64 -97 -106 -127c-34 -24 -79 -38 -125 -38c-21 0 -39 2 -68 9l-59 -138h-41l61 150c-44 21 -62 34 -84 59c-35 40 -56 94 -56 148c0 135 116 241 266 241c17 0 33 -1 62 -5l53 124h43l-57 -135c58 -19 91 -49 91 -84c0 -26 -22 -45 -53 -45 c-30 0 -48 13 -70 52l-122 -291c29 -9 47 -12 71 -12c72 0 115 25 178 100zM399 421c-22 7 -37 9 -57 9c-99 0 -165 -68 -165 -170c0 -72 23 -117 83 -162'], + 0xE091: [674,-507,386,22,364,'364 507h-37l-134 103l-133 -103h-38l137 167h68'], + 0xE092: [674,-507,443,33,410,'410 507h-42l-147 103l-147 -103h-41l150 167h75'], + 0xE093: [459,11,326,99,221,'221 402c0 -29 -28 -54 -62 -54c-32 0 -60 25 -60 54c0 31 28 57 61 57s61 -26 61 -57zM221 43c0 -29 -28 -54 -62 -54c-32 0 -60 25 -60 54c0 31 28 57 61 57s61 -26 61 -57'], + 0xE094: [459,11,376,118,252,'252 402c0 -29 -31 -54 -69 -54c-35 0 -65 25 -65 54c0 31 30 57 67 57c36 0 67 -26 67 -57zM252 43c0 -29 -31 -54 -69 -54c-35 0 -65 25 -65 54c0 31 30 57 67 57c36 0 67 -26 67 -57'], + 0xE095: [102,141,295,72,225,'225 13c0 -60 -50 -121 -124 -154l-10 19c60 37 91 74 91 106c0 8 -7 14 -16 14c0 0 -1 0 -9 -2c-6 -1 -14 -2 -20 -2c-40 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89'], + 0xE096: [102,141,343,88,256,'256 13c0 -60 -54 -121 -136 -154l-10 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -10 -2c-7 -1 -16 -2 -23 -2c-43 0 -71 19 -71 51c0 34 29 57 71 57c55 0 97 -39 97 -89'], + 0xE097: [662,0,814,28,764,'764 334c0 -97 -41 -186 -113 -245c-68 -56 -183 -89 -311 -89h-312v19c83 5 96 18 96 90v444c0 74 -9 83 -96 90v19h297c150 0 270 -36 345 -105c61 -55 94 -133 94 -223zM644 327c0 108 -45 194 -131 248c-53 34 -125 50 -219 50c-45 0 -57 -8 -57 -39v-508 c0 -32 13 -41 57 -41c96 0 159 12 215 41c90 47 135 131 135 249'], + 0xE098: [662,0,914,39,849,'849 334c0 -97 -45 -186 -124 -245c-75 -56 -202 -89 -342 -89h-344v19c92 5 107 18 107 90v444c0 74 -11 83 -107 90v19h327c166 0 298 -36 380 -105c67 -55 103 -133 103 -223zM717 327c0 108 -50 194 -144 248c-58 34 -137 50 -241 50c-49 0 -63 -8 -63 -39v-508 c0 -32 15 -41 63 -41c105 0 176 12 237 41c98 47 148 131 148 249'], + 0xE099: [683,10,570,40,550,'550 42l-162 -52l-4 3v64c-37 -47 -79 -67 -141 -67c-121 0 -203 87 -203 215c0 142 102 255 229 255c44 0 73 -11 115 -43v156c0 41 -10 51 -51 51c-8 0 -15 0 -24 -1v16c71 17 109 27 162 44l5 -2v-567c0 -46 9 -57 49 -57l25 1v-16zM384 102v230 c0 53 -54 100 -112 100c-84 0 -138 -74 -138 -187c0 -123 61 -203 152 -203c32 0 60 10 79 30c11 11 19 23 19 30'], + 0xE09A: [683,10,645,53,614,'614 42l-178 -52l-5 3v64c-41 -47 -87 -67 -154 -67c-134 0 -224 87 -224 215c0 142 112 255 251 255c49 0 81 -11 127 -43v156c0 41 -10 51 -55 51c-10 0 -17 0 -27 -1v16c78 17 120 27 178 44l6 -2v-567c0 -46 10 -57 53 -57l28 1v-16zM431 102v230 c0 53 -59 100 -123 100c-92 0 -151 -74 -151 -187c0 -123 66 -203 167 -203c35 0 65 10 87 30c12 11 20 23 20 30'], + 0xE09B: [847,0,814,28,764,'764 334c0 -97 -41 -186 -113 -245c-68 -56 -183 -89 -311 -89h-312v19c83 5 96 18 96 90v444c0 74 -9 83 -96 90v19h297c150 0 270 -36 345 -105c61 -55 94 -133 94 -223zM644 327c0 108 -45 194 -131 248c-53 34 -125 50 -219 50c-45 0 -57 -8 -57 -39v-508 c0 -32 13 -41 57 -41c96 0 159 12 215 41c90 47 135 131 135 249zM530 847l-147 -129h-85l-148 129h53l137 -79l138 79h52'], + 0xE09C: [847,0,914,39,849,'849 334c0 -97 -45 -186 -124 -245c-75 -56 -202 -89 -342 -89h-344v19c92 5 107 18 107 90v444c0 74 -11 83 -107 90v19h327c166 0 298 -36 380 -105c67 -55 103 -133 103 -223zM717 327c0 108 -50 194 -144 248c-58 34 -137 50 -241 50c-49 0 -63 -8 -63 -39v-508 c0 -32 15 -41 63 -41c105 0 176 12 237 41c98 47 148 131 148 249zM592 847l-162 -129h-93l-163 129h58l151 -79l151 79h58'], + 0xE09D: [683,10,570,40,673,'550 42l-162 -52l-4 3v64c-37 -47 -79 -67 -141 -67c-121 0 -203 87 -203 215c0 142 102 255 229 255c44 0 73 -11 115 -43v156c0 41 -10 51 -51 51c-8 0 -15 0 -24 -1v16c71 17 109 27 162 44l5 -2v-567c0 -46 9 -57 49 -57l25 1v-16zM384 102v230 c0 53 -54 100 -112 100c-84 0 -138 -74 -138 -187c0 -123 61 -203 152 -203c32 0 60 10 79 30c11 11 19 23 19 30zM673 594c0 -60 -49 -121 -123 -154l-10 19c60 37 90 74 90 106c0 8 -6 14 -15 14c0 0 -1 0 -9 -2c-6 -1 -14 -2 -21 -2c-39 0 -65 19 -65 51 c0 34 27 57 65 57c50 0 88 -39 88 -89'], + 0xE09E: [683,10,645,53,750,'614 42l-178 -52l-5 3v64c-41 -47 -87 -67 -154 -67c-134 0 -224 87 -224 215c0 142 112 255 251 255c49 0 81 -11 127 -43v156c0 41 -10 51 -55 51c-10 0 -17 0 -27 -1v16c78 17 120 27 178 44l6 -2v-567c0 -46 10 -57 53 -57l28 1v-16zM431 102v230 c0 53 -59 100 -123 100c-92 0 -151 -74 -151 -187c0 -123 66 -203 167 -203c35 0 65 10 87 30c12 11 20 23 20 30zM750 594c0 -60 -55 -121 -136 -154l-11 19c66 37 99 74 99 106c0 8 -7 14 -16 14c0 0 -2 0 -10 -2c-7 -1 -16 -2 -23 -2c-44 0 -72 19 -72 51 c0 34 29 57 72 57c54 0 97 -39 97 -89'], + 0xE09F: [662,0,814,28,764,'764 334c0 -97 -41 -186 -113 -245c-68 -56 -183 -89 -311 -89h-312v19c83 5 96 18 96 90v206h-91v44h91v194c0 74 -9 83 -96 90v19h297c150 0 270 -36 345 -105c61 -55 94 -133 94 -223zM644 327c0 108 -45 194 -131 248c-53 34 -123 50 -221 50c-44 0 -55 -8 -55 -39 v-227h160v-44h-160v-237c0 -32 13 -41 57 -41c96 0 159 12 215 41c90 47 135 131 135 249'], + 0xE0A0: [662,0,914,39,849,'849 334c0 -97 -45 -186 -124 -245c-75 -56 -202 -89 -342 -89h-344v19c92 5 107 18 107 90v206h-101v44h101v194c0 74 -11 83 -107 90v19h327c166 0 298 -36 380 -105c67 -55 103 -133 103 -223zM717 327c0 108 -50 194 -144 248c-58 34 -136 50 -243 50 c-49 0 -61 -8 -61 -39v-227h177v-44h-177v-237c0 -32 15 -41 63 -41c105 0 176 12 237 41c98 47 148 131 148 249'], + 0xE0A1: [683,10,570,40,560,'560 527h-84v-413c0 -46 9 -57 49 -57l25 1v-16l-162 -52l-4 3v64c-37 -47 -79 -67 -141 -67c-121 0 -203 87 -203 215c0 142 102 255 229 255c44 0 73 -11 115 -43v110h-133v34h133v12c0 41 -10 51 -51 51c-8 0 -15 0 -24 -1v16c71 17 109 27 162 44l5 -2v-120h84v-34z M384 102v230c0 53 -54 100 -112 100c-84 0 -138 -74 -138 -187c0 -123 61 -203 152 -203c32 0 60 10 79 30c11 11 19 23 19 30'], + 0xE0A2: [683,10,645,53,625,'625 527h-92v-413c0 -46 10 -57 53 -57l28 1v-16l-178 -52l-5 3v64c-41 -47 -87 -67 -154 -67c-134 0 -224 87 -224 215c0 142 112 255 251 255c49 0 81 -11 127 -43v110h-146v34h146v12c0 41 -10 51 -55 51c-10 0 -17 0 -27 -1v16c78 17 120 27 178 44l6 -2v-120h92v-34 zM431 102v230c0 53 -59 100 -123 100c-92 0 -151 -74 -151 -187c0 -123 66 -203 167 -203c35 0 65 10 87 30c12 11 20 23 20 30'], + 0xE0A3: [640,-541,386,30,358,'139 590c0 -27 -26 -49 -56 -49s-53 22 -53 50c0 26 25 49 53 49c30 0 56 -23 56 -50zM358 590c0 -27 -26 -49 -56 -49s-53 22 -53 50c0 26 25 49 53 49c30 0 56 -23 56 -50'], + 0xE0A4: [640,-541,443,42,402,'162 590c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM402 590c0 -27 -27 -49 -61 -49c-33 0 -58 22 -58 50c0 26 27 49 58 49c34 0 61 -23 61 -50'], + 0xE0A5: [727,87,570,58,513,'513 170c0 -48 -21 -89 -57 -117c-40 -29 -74 -41 -156 -53v-87h-37v87c-92 3 -139 14 -205 51v130h17c26 -105 85 -152 188 -153v282c-78 40 -102 55 -134 83c-44 37 -62 72 -62 119c0 43 22 83 60 110c36 26 67 35 136 42v63h37v-63c93 -10 140 -25 178 -53v-111h-17 c-19 85 -68 127 -161 137v-246c134 -70 163 -90 191 -131c13 -20 22 -56 22 -90zM262 407v230c-76 -14 -113 -48 -113 -103c0 -46 22 -71 113 -127zM426 146c0 62 -23 89 -126 147v-265c86 15 126 52 126 118'], + 0xE0A6: [727,87,645,73,573,'573 170c0 -48 -23 -89 -63 -117c-44 -29 -81 -41 -171 -53v-87h-41v87c-101 3 -152 14 -225 51v130h18c29 -105 94 -152 207 -153v282c-86 40 -112 55 -147 83c-49 37 -68 72 -68 119c0 43 24 83 65 110c40 26 74 35 150 42v63h41v-63c102 -10 154 -25 195 -53v-111h-18 c-20 85 -75 127 -177 137v-246c147 -70 180 -90 210 -131c14 -20 24 -56 24 -90zM297 407v230c-83 -14 -125 -48 -125 -103c0 -46 25 -71 125 -127zM477 146c0 62 -25 89 -138 147v-265c95 15 138 52 138 118'], + 0xE0A7: [641,-539,386,137,249,'249 590c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE0A8: [641,-539,443,159,283,'283 590c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE0A9: [-89,191,386,137,249,'249 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE0AA: [-89,191,443,159,283,'283 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE0AB: [662,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31'], + 0xE0AC: [662,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34'], + 0xE0AD: [460,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224'], + 0xE0AE: [460,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247'], + 0xE0AF: [851,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM491 825c0 -13 -11 -24 -35 -33l-184 -80h-47l173 120c22 15 33 19 51 19c26 0 42 -10 42 -26'], + 0xE0B0: [851,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM549 825c0 -13 -12 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 46 -10 46 -26'], + 0xE0B1: [675,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM434 643c0 -16 -10 -29 -33 -42l-170 -97h-44l162 148c20 18 30 23 46 23c24 0 39 -12 39 -32'], + 0xE0B2: [675,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M486 643c0 -16 -11 -29 -36 -42l-187 -97h-48l178 148c21 18 32 23 51 23c26 0 42 -12 42 -32'], + 0xE0B3: [847,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM511 847l-148 -129h-85l-148 129h53l137 -79l138 79h53'], + 0xE0B4: [847,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM571 847l-163 -129h-93l-163 129h58l151 -79l151 79h59'], + 0xE0B5: [674,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM439 674l-137 -167h-69l-136 167h37l133 -103l135 103h37'], + 0xE0B6: [674,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M492 674l-151 -167h-75l-150 167h41l146 -103l148 103h41'], + 0xE0B7: [847,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM512 718h-53l-138 79l-137 -79h-53l147 129h85'], + 0xE0B8: [847,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM572 718h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE0B9: [674,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM439 507h-37l-135 103l-133 -103h-37l136 167h69'], + 0xE0BA: [674,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M492 507h-41l-148 103l-146 -103h-41l150 167h75'], + 0xE0BB: [1006,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM469 980c0 -13 -11 -24 -35 -33l-184 -80h-47l173 120c22 15 33 19 51 19c26 0 42 -10 42 -26zM512 718h-53l-138 79l-137 -79h-53l147 129h85'], + 0xE0BC: [1006,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM525 980c0 -13 -13 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 46 -10 46 -26zM572 718h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE0BD: [794,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM416 768c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26zM459 506h-53l-137 79l-138 -79h-53l148 129h84'], + 0xE0BE: [794,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M466 768c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 45 -10 45 -26zM514 506h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE0BF: [847,191,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM512 718h-53l-138 79l-137 -79h-53l147 129h85zM402 -140c0 -29 -25 -51 -56 -51s-57 22 -57 51c0 28 26 51 57 51s56 -23 56 -51'], + 0xE0C0: [847,191,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM572 718h-58l-152 79l-151 -79h-58l162 129h93zM451 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE0C1: [674,191,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM439 507h-37l-135 103l-133 -103h-37l136 167h69zM324 -140c0 -29 -25 -51 -57 -51c-30 0 -56 22 -56 51c0 28 26 51 56 51c32 0 57 -23 57 -51'], + 0xE0C2: [674,191,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M492 507h-41l-148 103l-146 -103h-41l150 167h75zM365 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE0C3: [1006,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM439 867h-47l-184 80c-24 9 -35 20 -35 33c0 16 15 26 42 26c17 0 28 -4 50 -19zM512 718h-53l-138 79l-137 -79h-53l147 129h85'], + 0xE0C4: [1006,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM492 867h-52l-202 80c-27 9 -39 20 -39 33c0 16 17 26 46 26c19 0 32 -4 56 -19zM572 718h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE0C5: [794,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM386 655h-47l-184 80c-24 9 -35 20 -35 33c0 16 15 26 42 26c17 0 28 -4 50 -19zM459 506h-53l-137 79l-138 -79h-53l148 129h84'], + 0xE0C6: [794,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M434 655h-52l-202 80c-27 9 -39 20 -39 33c0 16 17 26 46 26c19 0 31 -4 56 -19zM514 506h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE0C7: [1020,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM512 972c0 -16 -19 -32 -51 -49c-27 -14 -46 -25 -49 -32c-6 -6 -10 -14 -13 -24h-27c1 21 15 42 40 63c19 17 27 29 27 39c0 23 -20 34 -60 34c-19 0 -33 -2 -43 -8c-4 -2 -7 -3 -7 -6c0 -4 20 -17 20 -23c0 -11 -10 -17 -33 -17 c-27 0 -41 8 -41 26c0 26 47 45 117 45c43 0 75 -7 95 -18c17 -10 25 -20 25 -30zM512 718h-53l-138 79l-137 -79h-53l147 129h85'], + 0xE0C8: [1020,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM572 972c0 -16 -21 -32 -56 -49c-30 -14 -51 -25 -54 -32c-6 -6 -11 -14 -14 -24h-30c1 21 17 42 44 63c21 17 30 29 30 39c0 23 -22 34 -67 34c-20 0 -36 -2 -47 -8c-3 -2 -7 -3 -7 -6c0 -4 22 -17 22 -23c0 -11 -11 -17 -37 -17 c-29 0 -44 8 -44 26c0 26 52 45 128 45c47 0 82 -7 105 -18c18 -10 27 -20 27 -30zM572 718h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE0C9: [808,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM459 760c0 -16 -19 -32 -51 -49c-27 -14 -46 -25 -49 -32c-6 -6 -10 -14 -12 -24h-28c1 21 16 42 40 63c20 17 27 29 27 39c0 23 -20 34 -60 34c-19 0 -33 -2 -43 -8c-3 -2 -7 -3 -7 -6c0 -4 20 -17 20 -23c0 -11 -10 -17 -33 -17c-26 0 -41 8 -41 26 c0 26 48 45 117 45c43 0 75 -7 96 -18c16 -10 24 -20 24 -30zM459 506h-53l-137 79l-138 -79h-53l148 129h84'], + 0xE0CA: [808,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M514 760c0 -16 -21 -32 -56 -49c-30 -14 -51 -25 -54 -32c-6 -6 -11 -14 -14 -24h-30c1 21 17 42 44 63c21 17 30 29 30 39c0 23 -22 34 -67 34c-20 0 -36 -2 -47 -8c-4 -2 -7 -3 -7 -6c0 -4 22 -17 22 -23c0 -11 -11 -17 -37 -17c-29 0 -44 8 -44 26c0 26 52 45 128 45 c47 0 82 -7 105 -18c18 -10 27 -20 27 -30zM514 506h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE0CB: [983,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM502 983c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32zM512 718h-53l-138 79l-137 -79h-53 l147 129h85'], + 0xE0CC: [983,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM561 983c-26 -76 -61 -106 -127 -106c-30 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-27 0 -48 -15 -61 -46h-35c18 65 61 101 122 101c26 0 57 -6 84 -18l30 -12c23 -9 46 -15 64 -15c27 0 43 12 64 50h35zM572 718h-58l-152 79l-151 -79h-58 l162 129h93'], + 0xE0CD: [771,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM449 771c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32zM459 506h-53l-137 79l-138 -79h-53l148 129h84'], + 0xE0CE: [771,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M503 771c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -61 -46h-36c19 65 62 101 123 101c26 0 57 -6 84 -18l29 -12c23 -9 46 -15 65 -15c27 0 43 12 64 50h35zM514 506h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE0CF: [832,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM266 782c0 -27 -25 -49 -56 -49c-29 0 -53 22 -53 50c0 26 26 49 53 49c31 0 56 -23 56 -50zM485 782c0 -27 -25 -49 -56 -49c-30 0 -53 22 -53 50c0 26 26 49 53 49c31 0 56 -23 56 -50'], + 0xE0D0: [832,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM302 782c0 -27 -28 -49 -62 -49c-32 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM543 782c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50'], + 0xE0D1: [640,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM214 590c0 -27 -26 -49 -57 -49c-29 0 -52 22 -52 50c0 26 25 49 52 49c31 0 57 -23 57 -50zM432 590c0 -27 -25 -49 -56 -49c-29 0 -52 22 -52 50c0 26 25 49 52 49c31 0 56 -23 56 -50'], + 0xE0D2: [640,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M244 590c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM485 590c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50'], + 0xE0D3: [833,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM376 782c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE0D4: [833,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM423 782c0 -29 -27 -51 -62 -51c-34 0 -61 22 -61 51c0 28 27 51 61 51c35 0 62 -23 62 -51'], + 0xE0D5: [641,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM324 590c0 -29 -25 -51 -57 -51c-30 0 -56 22 -56 51c0 28 26 51 56 51c32 0 57 -23 57 -51'], + 0xE0D6: [641,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M365 590c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE0D7: [662,191,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM402 -140c0 -29 -25 -51 -56 -51s-57 22 -57 51c0 28 26 51 57 51s56 -23 56 -51'], + 0xE0D8: [662,191,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM451 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE0D9: [460,191,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM324 -140c0 -29 -25 -51 -57 -51c-30 0 -56 22 -56 51c0 28 26 51 56 51c32 0 57 -23 57 -51'], + 0xE0DA: [460,191,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M365 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE0DB: [851,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM417 712h-47l-184 80c-24 9 -35 20 -35 33c0 16 15 26 42 26c17 0 28 -4 50 -19'], + 0xE0DC: [851,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM468 712h-52l-202 80c-27 9 -39 20 -39 33c0 16 17 26 46 26c19 0 31 -4 56 -19'], + 0xE0DD: [675,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM349 504h-44l-170 97c-23 13 -33 26 -33 42c0 20 15 32 39 32c16 0 26 -5 46 -23'], + 0xE0DE: [675,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M393 504h-49l-186 97c-25 13 -36 26 -36 42c0 20 15 32 42 32c18 0 29 -5 51 -23'], + 0xE0DF: [896,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM429 838c0 -20 -16 -38 -46 -59c-25 -18 -42 -31 -46 -40c-5 -7 -8 -16 -11 -30h-26c2 27 16 52 37 79c18 19 25 35 25 47c0 27 -18 42 -55 42c-18 0 -31 -4 -38 -10c-5 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19 c-24 0 -38 10 -38 32c0 30 44 53 107 53c40 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE0E0: [896,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM481 838c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-4 -7 -8 -16 -12 -30h-28c2 27 17 52 40 79c21 19 28 35 28 47c0 27 -19 42 -60 42c-20 0 -34 -4 -43 -10c-4 -2 -7 -5 -7 -8c0 -4 21 -21 21 -29c0 -13 -11 -19 -34 -19 c-27 0 -41 10 -41 32c0 30 48 53 117 53c44 0 75 -7 97 -22c16 -12 24 -24 24 -36'], + 0xE0E1: [684,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM376 626c0 -20 -16 -38 -46 -59c-25 -18 -42 -31 -46 -40c-4 -7 -8 -16 -11 -30h-25c1 27 15 52 36 79c19 19 25 35 25 47c0 27 -17 42 -55 42c-17 0 -31 -4 -38 -10c-5 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32 c0 30 44 53 106 53c40 0 69 -7 88 -22c15 -12 22 -24 22 -36'], + 0xE0E2: [684,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M423 626c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -8 -16 -12 -30h-28c2 27 17 52 40 79c21 19 28 35 28 47c0 27 -19 42 -60 42c-20 0 -34 -4 -43 -10c-5 -2 -7 -5 -7 -8c0 -4 21 -21 21 -29c0 -13 -11 -19 -34 -19c-27 0 -41 10 -41 32c0 30 48 53 117 53 c43 0 75 -7 97 -22c15 -12 24 -24 24 -36'], + 0xE0E3: [676,14,570,72,500,'500 155c0 -103 -85 -169 -217 -169c-124 0 -211 68 -211 165c0 68 24 99 143 181c-116 92 -137 121 -137 186c0 91 89 158 209 158c110 0 189 -60 189 -142c0 -68 -38 -110 -147 -163c133 -90 171 -139 171 -216zM416 124c0 56 -26 92 -107 144l-66 44 c-64 -47 -88 -89 -88 -153c0 -87 56 -145 140 -145c71 0 121 45 121 110zM401 535c0 69 -48 113 -123 113c-69 0 -118 -41 -118 -99c0 -56 39 -102 137 -160l10 6c63 38 94 83 94 140'], + 0xE0E4: [676,14,645,88,558,'558 155c0 -103 -93 -169 -238 -169c-137 0 -232 68 -232 165c0 68 26 99 157 181c-127 92 -150 121 -150 186c0 91 98 158 230 158c121 0 208 -60 208 -142c0 -68 -42 -110 -162 -163c146 -90 187 -139 187 -216zM466 124c0 56 -29 92 -117 144l-72 44 c-71 -47 -97 -89 -97 -153c0 -87 61 -145 153 -145c79 0 133 45 133 110zM450 535c0 69 -52 113 -135 113c-76 0 -130 -41 -130 -99c0 -56 43 -102 151 -160c5 3 5 3 11 6c69 38 103 83 103 140'], + 0xE0E5: [809,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM492 755h-342v54h342v-54'], + 0xE0E6: [809,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM550 755h-376v54h376v-54'], + 0xE0E7: [617,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM439 563h-342v54h342v-54'], + 0xE0E8: [617,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M492 563h-376v54h376v-54'], + 0xE0E9: [662,218,814,23,788,'788 643c-42 -4 -57 -8 -73 -18c-21 -13 -32 -50 -32 -110v-515c0 -142 -22 -218 -143 -218c-59 0 -103 23 -103 55c0 22 20 39 45 39c18 0 33 -9 53 -32c18 -21 29 -28 46 -28c15 0 31 8 37 18c12 20 16 45 16 121v67l-456 517v-392c0 -101 19 -124 104 -128v-19h-259 v19c92 6 107 25 107 128v441c-44 47 -59 55 -107 55v19h188l424 -484v337c0 62 -10 98 -32 112c-17 9 -32 13 -74 16v19h259v-19'], + 0xE0EA: [662,218,914,35,875,'875 643c-46 -4 -62 -8 -79 -18c-23 -13 -35 -50 -35 -110v-515c0 -142 -25 -218 -158 -218c-65 0 -114 23 -114 55c0 22 22 39 50 39c19 0 36 -9 58 -32c21 -21 33 -28 51 -28c17 0 34 8 41 18c13 20 17 45 17 121v67l-501 517v-392c0 -101 21 -124 114 -128v-19h-284 v19c100 6 117 25 117 128v441c-49 47 -65 55 -117 55v19h206l466 -484v337c0 62 -11 98 -35 112c-18 9 -35 13 -81 16v19h284v-19'], + 0xE0EB: [460,218,570,28,476,'476 0c0 -142 -64 -218 -185 -218c-60 0 -104 23 -104 55c0 22 20 39 45 39c18 0 33 -9 53 -32c19 -21 30 -28 46 -28s31 8 38 18c12 20 15 45 15 121v353c0 66 -26 97 -80 97c-37 0 -61 -12 -114 -57v-281c0 -36 17 -48 73 -52v-15h-233v15c56 4 68 18 68 75v248 c0 49 -10 64 -41 64c-12 0 -23 -1 -29 -4v17c60 16 98 27 151 45l8 -2v-79c75 64 109 81 160 81c81 0 129 -56 129 -150v-310'], + 0xE0EC: [460,218,645,39,533,'533 0c0 -142 -71 -218 -204 -218c-66 0 -114 23 -114 55c0 22 22 39 49 39c20 0 37 -9 59 -32c20 -21 32 -28 50 -28c17 0 34 8 41 18c14 20 17 45 17 121v353c0 66 -29 97 -88 97c-40 0 -66 -12 -125 -57v-281c0 -36 19 -48 80 -52v-15h-256v15c61 4 75 18 75 75v248 c0 49 -11 64 -45 64c-13 0 -25 -1 -33 -4v17c67 16 108 27 167 45l9 -2v-79c82 64 120 81 175 81c90 0 143 -56 143 -150v-310'], + 0xE0ED: [662,245,692,23,667,'667 169l-50 -169c-42 0 -83 -16 -104 -49c-17 -24 -27 -51 -27 -83c0 -36 18 -61 51 -61c29 0 46 23 59 43l21 -14c-20 -39 -50 -81 -113 -81c-47 0 -85 38 -85 86c0 40 16 75 40 104c16 21 37 39 60 55h-496v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143 h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29c158 0 205 24 260 132h31'], + 0xE0EE: [662,245,779,35,742,'742 169l-54 -169c-46 0 -92 -16 -115 -49c-18 -24 -29 -51 -29 -83c0 -36 19 -61 56 -61c31 0 50 23 65 43l23 -14c-22 -39 -56 -81 -125 -81c-52 0 -93 38 -93 86c0 40 17 75 44 104c18 21 41 39 66 55h-545v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642 l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33c173 0 225 24 285 132h34'], + 0xE0EF: [460,245,508,38,476,'476 157c-18 -43 -42 -79 -71 -105c-35 -33 -85 -79 -99 -101c-17 -24 -26 -51 -26 -83c0 -36 17 -61 50 -61c29 0 46 23 60 43l20 -14c-19 -39 -50 -81 -113 -81c-47 0 -85 38 -85 86c0 40 16 75 40 104c15 20 36 38 58 54c-21 -6 -43 -9 -67 -9 c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115h224'], + 0xE0F0: [460,245,577,50,533,'533 157c-21 -43 -47 -79 -79 -105c-38 -33 -93 -79 -109 -101c-18 -24 -29 -51 -29 -83c0 -36 20 -61 56 -61c32 0 51 23 65 43l23 -14c-21 -39 -55 -81 -124 -81c-52 0 -93 38 -93 86c0 40 17 75 43 104c17 20 40 38 64 54c-23 -6 -47 -9 -73 -9 c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247'], + 0xE0F1: [662,0,814,28,764,'764 334c0 -97 -41 -186 -113 -245c-68 -56 -183 -89 -311 -89h-312v19c83 5 96 18 96 90v206h-91v44h91v194c0 74 -9 83 -96 90v19h297c150 0 270 -36 345 -105c61 -55 94 -133 94 -223zM644 327c0 108 -45 194 -131 248c-53 34 -123 50 -221 50c-44 0 -55 -8 -55 -39 v-227h160v-44h-160v-237c0 -32 13 -41 57 -41c96 0 159 12 215 41c90 47 135 131 135 249'], + 0xE0F2: [662,0,914,39,849,'849 334c0 -97 -45 -186 -124 -245c-75 -56 -202 -89 -342 -89h-344v19c92 5 107 18 107 90v206h-101v44h101v194c0 74 -11 83 -107 90v19h327c166 0 298 -36 380 -105c67 -55 103 -133 103 -223zM717 327c0 108 -50 194 -144 248c-58 34 -136 50 -243 50 c-49 0 -61 -8 -61 -39v-227h177v-44h-177v-237c0 -32 15 -41 63 -41c105 0 176 12 237 41c98 47 148 131 148 249'], + 0xE0F3: [686,10,570,42,528,'528 285c0 -96 -37 -190 -98 -242c-40 -35 -90 -53 -148 -53c-137 0 -240 100 -240 233c0 134 101 237 233 237c53 0 83 -13 139 -60c-17 74 -42 115 -107 175l-135 -65l-37 30l134 64c-52 33 -90 47 -147 56l46 23c73 -6 112 -17 168 -47l104 50l36 -30l-100 -48 c56 -49 76 -73 100 -118c35 -63 52 -135 52 -205zM429 201c0 136 -65 231 -158 231c-77 0 -130 -63 -130 -156c0 -70 18 -140 48 -193c25 -41 65 -65 108 -65c84 0 132 68 132 183'], + 0xE0F4: [686,10,645,55,590,'590 285c0 -96 -41 -190 -108 -242c-45 -35 -99 -53 -163 -53c-150 0 -264 100 -264 233c0 134 111 237 257 237c58 0 90 -13 152 -60c-18 74 -46 115 -117 175l-149 -65l-40 30l146 64c-57 33 -98 47 -161 56l51 23c80 -6 122 -17 184 -47l115 50l40 -30l-110 -48 c62 -49 83 -73 110 -118c38 -63 57 -135 57 -205zM481 201c0 136 -71 231 -174 231c-85 0 -143 -63 -143 -156c0 -70 19 -140 53 -193c27 -41 72 -65 119 -65c92 0 145 68 145 183'], + 0xE0F5: [835,0,692,23,667,'667 169l-50 -169h-594v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h584l4 -143h-28c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h170c89 0 106 13 121 95h25v-232h-25c-15 83 -31 96 -121 96h-170v-247c0 -19 2 -28 9 -32c10 -7 54 -11 107 -11h29 c158 0 205 24 260 132h31zM502 835c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32'], + 0xE0F6: [835,0,779,35,742,'742 169l-54 -169h-653v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h642l4 -143h-31c-20 90 -47 105 -184 105h-163c-33 0 -40 -6 -40 -34v-222h187c98 0 117 13 133 95h27v-232h-27c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 117 -11h33 c173 0 225 24 285 132h34zM561 835c-26 -76 -61 -106 -127 -106c-30 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-27 0 -48 -15 -61 -46h-35c18 65 61 101 122 101c26 0 57 -6 84 -18l30 -12c23 -9 46 -15 64 -15c27 0 43 12 64 50h35'], + 0xE0F7: [643,10,508,38,476,'476 157c-46 -108 -127 -167 -233 -167c-126 0 -205 86 -205 224c0 146 93 246 229 246c58 0 108 -21 141 -57c28 -32 39 -61 48 -126h-339c2 -64 11 -99 33 -138c32 -54 78 -80 138 -80c71 0 118 29 171 105zM343 309c-14 87 -40 115 -107 115c-68 0 -105 -36 -117 -115 h224zM449 643c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32'], + 0xE0F8: [643,10,577,50,533,'533 157c-51 -108 -140 -167 -256 -167c-140 0 -227 86 -227 224c0 146 103 246 253 246c63 0 119 -21 155 -57c30 -32 42 -61 52 -126h-373c3 -64 12 -99 37 -138c35 -54 86 -80 152 -80c78 0 130 29 188 105zM387 309c-16 87 -45 115 -119 115s-115 -36 -128 -115h247z M503 643c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -61 -46h-36c19 65 62 101 123 101c26 0 57 -6 84 -18l29 -12c23 -9 46 -15 65 -15c27 0 43 12 64 50h35'], + 0xE0F9: [674,15,570,14,557,'557 178l-18 -193h-20c-6 31 -14 44 -27 44c-3 0 -10 -3 -19 -8c-38 -23 -52 -35 -115 -35c-131 0 -232 100 -261 259h-83l30 41h47c-1 13 -1 23 -1 37c0 8 0 16 1 26h-77l30 41h52c25 167 133 283 262 283c37 0 77 -12 115 -35c9 -5 16 -8 19 -8c13 0 21 13 27 44h20 l18 -193h-19c-14 43 -16 47 -32 75c-31 54 -87 90 -141 90c-62 0 -115 -45 -144 -123c-11 -32 -20 -79 -25 -133h242l-30 -41h-214c-1 -20 -1 -28 -1 -33c0 -4 0 -13 1 -30h170l-28 -41h-139c15 -140 86 -228 190 -228c41 0 88 32 119 86c16 28 17 32 32 75h19'], + 0xE0FA: [674,15,645,25,621,'621 178l-19 -193h-22c-7 31 -15 44 -30 44c-4 0 -11 -3 -21 -8c-42 -23 -56 -35 -127 -35c-144 0 -255 100 -286 259h-91l33 41h52c-2 13 -2 23 -2 37c0 8 0 16 2 26h-85l33 41h56c28 167 147 283 288 283c42 0 85 -12 127 -35c10 -5 17 -8 21 -8c15 0 23 13 30 44h22 l19 -193h-20c-16 43 -18 47 -35 75c-34 54 -96 90 -155 90c-69 0 -127 -45 -159 -123c-12 -32 -21 -79 -28 -133h267l-33 -41h-236c-1 -20 -1 -28 -1 -33c0 -4 0 -13 1 -30h188l-32 -41h-152c17 -140 94 -228 209 -228c45 0 97 32 131 86c17 28 18 32 35 75h20'], + 0xE0FB: [676,9,386,153,271,'270 596c0 -14 -1 -25 -3 -37l-49 -383h-14l-10 108c-2 25 -9 78 -19 138c-12 72 -22 154 -22 177c0 47 22 77 58 77c38 0 59 -28 59 -80zM271 43c0 -30 -26 -52 -61 -52c-33 0 -57 22 -57 52c0 31 25 55 58 55s60 -25 60 -55'], + 0xE0FC: [676,9,443,177,307,'306 596c0 -14 -2 -25 -3 -37l-54 -383h-16l-11 108c-2 25 -10 78 -20 138c-14 72 -25 154 -25 177c0 47 25 77 64 77c42 0 65 -28 65 -80zM307 43c0 -30 -28 -52 -67 -52c-36 0 -63 22 -63 52c0 31 28 55 64 55c37 0 66 -25 66 -55'], + 0xE0FD: [459,226,386,116,233,'233 -149c0 -47 -22 -77 -58 -77c-37 0 -58 28 -58 80c0 14 1 25 2 37l49 383h15l10 -108c2 -25 8 -78 18 -138c12 -72 22 -154 22 -177zM233 407c0 -31 -25 -55 -58 -55s-59 25 -59 55s25 52 60 52c33 0 57 -22 57 -52'], + 0xE0FE: [459,226,443,136,266,'266 -149c0 -47 -25 -77 -64 -77c-42 0 -65 28 -65 80c0 14 2 25 3 37l54 383h16l11 -108c2 -25 10 -78 20 -138c14 -72 25 -154 25 -177zM266 407c0 -31 -28 -55 -64 -55c-37 0 -66 25 -66 55s28 52 67 52c36 0 63 -22 63 -52'], + 0xE0FF: [662,0,632,23,611,'611 519h-28c-19 90 -43 105 -167 105h-150c-29 0 -35 -6 -35 -34v-222h160c88 0 107 15 121 95h25v-232h-25c-14 81 -32 96 -121 96h-160v-218c0 -72 16 -86 100 -90v-19h-308v19c84 5 96 18 96 101v433c0 70 -14 84 -96 90v19h584'], + 0xE100: [662,0,713,35,681,'681 519h-31c-20 90 -47 105 -184 105h-164c-33 0 -39 -6 -39 -34v-222h176c96 0 118 15 133 95h28v-232h-28c-15 81 -35 96 -133 96h-176v-218c0 -72 17 -86 110 -90v-19h-338v19c91 5 105 18 105 101v433c0 70 -16 84 -105 90v19h642'], + 0xE101: [683,0,386,32,431,'431 621c0 -23 -19 -41 -46 -41c-19 0 -32 9 -49 36c-20 29 -34 39 -59 39c-41 0 -62 -30 -62 -89v-116h135v-32h-134v-314c0 -75 12 -86 102 -89v-15h-286v15c79 4 91 16 91 89v314h-90v32h90c1 80 10 116 39 161c28 45 86 72 155 72c66 0 114 -26 114 -62'], + 0xE102: [683,0,443,44,483,'483 621c0 -23 -21 -41 -50 -41c-21 0 -35 9 -55 36c-22 29 -37 39 -64 39c-46 0 -69 -30 -69 -89v-116h149v-32h-148v-314c0 -75 14 -86 113 -89v-15h-315v15c87 4 101 16 101 89v314h-100v32h100c1 80 11 116 42 161s94 72 171 72c72 0 125 -26 125 -62'], + 0xE103: [683,0,890,45,886,'420 450v141c-5 -6 -8 -7 -17 -7c-26 0 -40 9 -61 37c-20 27 -33 35 -57 35c-48 0 -71 -50 -71 -154v-52h206zM886 0h-240v15h21c13 0 23 6 23 15c0 5 -3 11 -12 21c-4 3 -7 6 -8 9l-3 4l-154 188v-171c0 -52 11 -62 70 -66v-15h-236v15c57 4 73 20 73 69v334h-206v-339 c0 -46 15 -58 78 -64v-15h-247v15c66 4 76 16 76 90v313h-76v32h78c5 88 16 127 49 170c31 39 81 63 131 63c28 0 60 -6 91 -17c15 -5 27 -8 33 -8c10 0 26 5 46 14c14 6 25 10 34 11l6 -2v-420l150 122c16 13 26 26 26 35c0 13 -12 17 -55 18v14h224v-15 c-70 0 -100 -14 -237 -126l-32 -27l168 -194c46 -51 80 -70 129 -73v-15'], + 0xE104: [683,0,997,59,983,'471 450v141c-6 -6 -9 -7 -19 -7c-28 0 -44 9 -67 37c-21 27 -36 35 -62 35c-54 0 -79 -50 -79 -154v-52h227zM983 0h-264v15h23c15 0 26 6 26 15c0 5 -4 11 -14 21c-3 3 -7 6 -8 9l-4 4l-169 188v-171c0 -52 12 -62 77 -66v-15h-260v15c63 4 81 20 81 69v334h-227v-339 c0 -46 17 -58 86 -64v-15h-271v15c72 4 83 16 83 90v313h-83v32h86c4 88 17 127 53 170c34 39 89 63 144 63c31 0 66 -6 100 -17c17 -5 31 -8 37 -8c10 0 29 5 50 14c16 6 28 10 38 11l6 -2v-420l166 122c17 13 28 26 28 35c0 13 -14 17 -61 18v14h247v-15 c-78 0 -110 -14 -261 -126l-36 -27l186 -194c50 -51 88 -70 141 -73v-15'], + 0xE105: [683,0,680,44,725,'438 579c-10 5 -21 15 -33 32c-26 34 -47 47 -78 47c-40 0 -79 -21 -98 -52c-14 -24 -19 -62 -19 -107v-6v-43h207c1 60 7 96 21 129zM725 621c0 -23 -20 -41 -46 -41c-19 0 -32 9 -50 36c-19 29 -34 39 -58 39c-42 0 -63 -30 -63 -89v-116h136v-33h-135v-313 c0 -75 10 -84 74 -89v-15h-242v15c76 6 76 16 76 89v313h-206v-329c0 -55 15 -69 76 -73v-15h-242v15c62 2 74 15 74 79v323h-75v33h76c7 80 19 116 52 158c39 50 103 75 187 75c61 0 106 -14 127 -38c31 24 75 38 125 38c66 0 114 -26 114 -62'], + 0xE106: [683,0,766,58,807,'491 579c-11 5 -23 15 -37 32c-29 34 -52 47 -86 47c-43 0 -87 -21 -107 -52c-16 -24 -21 -62 -21 -107v-6v-43h228c1 60 7 96 23 129zM807 621c0 -23 -22 -41 -51 -41c-21 0 -35 9 -55 36c-22 29 -37 39 -64 39c-46 0 -69 -30 -69 -89v-116h149v-33h-148v-313 c0 -75 11 -84 81 -89v-15h-266v15c84 6 84 16 84 89v313h-227v-329c0 -55 16 -69 84 -73v-15h-266v15c67 2 81 15 81 79v323h-82v33h83c7 80 21 116 57 158c43 50 114 75 206 75c67 0 117 -14 140 -38c34 24 82 38 137 38c72 0 126 -26 126 -62'], + 0xE107: [683,0,930,44,881,'448 574c-20 6 -33 24 -43 37c-26 34 -47 47 -78 47c-40 0 -79 -21 -98 -52c-14 -24 -19 -62 -19 -107v-6v-43h208c5 58 12 93 30 124zM881 0h-242v15c68 5 76 14 76 82v264c0 53 -5 56 -111 56h-95v-329c0 -55 15 -69 76 -73v-15h-242v15c62 2 74 15 74 79v323h-206 v-329c0 -55 15 -69 76 -73v-15h-242v15c62 2 74 15 74 79v323h-75v33h76c7 80 19 116 52 158c39 50 103 75 187 75c61 0 105 -12 127 -38c4 -4 7 -8 9 -11c40 33 94 49 162 49c85 0 140 -27 140 -70c0 -23 -17 -39 -40 -39c-19 0 -33 9 -54 37c-26 34 -47 47 -78 47 c-40 0 -79 -21 -98 -52c-14 -24 -19 -62 -19 -107v-6v-43h173c44 0 76 3 124 10l5 -3l-2 -98v-262c0 -64 12 -77 73 -82v-15'], + 0xE108: [683,0,1041,58,978,'502 574c-22 6 -37 24 -48 37c-29 34 -52 47 -86 47c-43 0 -87 -21 -107 -52c-16 -24 -21 -62 -21 -107v-6v-43h229c5 58 13 93 33 124zM978 0h-266v15c75 5 84 14 84 82v264c0 53 -6 56 -123 56h-104v-329c0 -55 16 -69 84 -73v-15h-266v15c67 2 81 15 81 79v323h-227 v-329c0 -55 16 -69 84 -73v-15h-266v15c67 2 81 15 81 79v323h-82v33h83c7 80 21 116 57 158c43 50 114 75 206 75c67 0 116 -12 140 -38c4 -4 7 -8 10 -11c43 33 102 49 177 49c94 0 154 -27 154 -70c0 -23 -18 -39 -43 -39c-21 0 -37 9 -60 37c-29 34 -52 47 -86 47 c-43 0 -87 -21 -107 -52c-16 -24 -21 -62 -21 -107v-6v-43h190c49 0 84 3 137 10l5 -3l-3 -98v-262c0 -64 14 -77 81 -82v-15'], + 0xE109: [683,0,930,44,881,'718 450v141c-5 -6 -8 -7 -17 -7c-25 0 -40 9 -61 37c-19 27 -35 35 -59 35c-48 0 -72 -50 -72 -154v-52h209zM441 577c-16 7 -27 22 -36 34c-26 34 -47 47 -78 47c-40 0 -79 -21 -98 -52c-14 -24 -19 -62 -19 -107v-6v-43h209c4 59 9 96 22 127zM881 0h-236v15 c57 4 73 20 73 69v333h-209v-338c0 -46 16 -58 79 -64v-15h-247v15c66 4 76 16 76 90v312h-206v-329c0 -55 15 -69 76 -73v-15h-242v15c62 2 74 15 74 79v323h-75v33h76c7 80 19 116 52 158c39 50 103 75 187 75c61 0 105 -12 127 -38l3 -3c30 26 70 41 110 41 c28 0 62 -6 93 -17c15 -5 28 -8 33 -8c10 0 26 5 46 14c15 6 26 10 34 11l6 -2v-600c0 -52 11 -62 70 -66v-15'], + 0xE10A: [683,0,1041,58,978,'799 450v141c-6 -6 -9 -7 -19 -7c-28 0 -44 9 -67 37c-21 27 -38 35 -65 35c-53 0 -79 -50 -79 -154v-52h230zM494 577c-18 7 -30 22 -40 34c-29 34 -52 47 -86 47c-43 0 -87 -21 -107 -52c-16 -24 -21 -62 -21 -107v-6v-43h230c4 59 10 96 24 127zM978 0h-260v15 c63 4 81 20 81 69v333h-230v-338c0 -46 17 -58 86 -64v-15h-271v15c73 4 84 16 84 90v312h-227v-329c0 -55 16 -69 84 -73v-15h-266v15c67 2 81 15 81 79v323h-82v33h83c7 80 21 116 57 158c43 50 114 75 206 75c67 0 116 -12 140 -38l2 -3c34 26 78 41 121 41 c32 0 69 -6 103 -17c17 -5 30 -8 37 -8c10 0 29 5 50 14c16 6 28 10 38 11l6 -2v-600c0 -52 12 -62 77 -66v-15'], + 0xE10B: [683,0,632,44,583,'583 0h-242v15c68 5 76 14 76 82v264c0 53 -5 56 -111 56h-95v-329c0 -55 15 -69 76 -73v-15h-242v15c62 2 74 15 74 79v323h-75v33h76c7 80 19 116 52 158c39 50 103 75 187 75s139 -27 139 -70c0 -23 -16 -39 -39 -39c-19 0 -33 9 -54 37c-26 34 -47 47 -78 47 c-40 0 -79 -21 -98 -52c-14 -24 -21 -62 -19 -107v-6v-43h173c44 0 76 3 124 10l5 -3l-3 -98v-262c0 -64 13 -77 74 -82v-15'], + 0xE10C: [683,0,713,58,650,'650 0h-266v15c75 5 84 14 84 82v264c0 53 -6 56 -123 56h-104v-329c0 -55 16 -69 84 -73v-15h-266v15c67 2 81 15 81 79v323h-82v33h83c7 80 21 116 57 158c43 50 114 75 206 75c93 0 153 -27 153 -70c0 -23 -18 -39 -43 -39c-21 0 -37 9 -60 37c-29 34 -52 47 -86 47 c-43 0 -87 -21 -107 -52c-16 -24 -23 -62 -21 -107v-6v-43h190c49 0 84 3 137 10l5 -3l-3 -98v-262c0 -64 14 -77 81 -82v-15'], + 0xE10D: [688,14,570,45,492,'492 681l-42 -89c-3 -7 -8 -9 -25 -9h-216l-46 -85c130 -21 192 -44 241 -88c55 -50 76 -96 76 -168c0 -76 -23 -133 -74 -178c-55 -51 -134 -78 -227 -78c-82 0 -134 24 -134 62c0 25 16 37 48 37c23 0 48 -10 83 -33c33 -22 52 -29 74 -29c86 0 153 75 153 171 c0 99 -59 161 -185 198c-45 13 -89 20 -124 20c-9 0 -14 3 -14 8c0 0 0 3 2 5l119 237h230c23 0 34 5 51 26'], + 0xE10E: [688,14,645,59,550,'550 681l-46 -89c-4 -7 -8 -9 -28 -9h-237l-51 -85c143 -21 212 -44 265 -88c61 -50 84 -96 84 -168c0 -76 -26 -133 -81 -178c-61 -51 -148 -78 -250 -78c-90 0 -147 24 -147 62c0 25 17 37 52 37c25 0 53 -10 92 -33c36 -22 57 -29 81 -29c94 0 168 75 168 171 c0 99 -64 161 -203 198c-50 13 -98 20 -137 20c-10 0 -15 3 -15 8c0 0 0 3 2 5l132 237h252c26 0 38 5 56 26'], + 0xE10F: [683,0,632,45,583,'583 0h-236v15c57 4 73 20 73 69v334h-206v-339c0 -46 15 -58 78 -64v-15h-247v15c66 4 76 16 76 90v313h-76v32h78c5 88 16 127 49 170c31 39 81 63 131 63c28 0 60 -6 91 -17c15 -5 27 -8 33 -8c10 0 26 5 46 14c14 6 25 10 34 11l6 -2v-600c0 -52 11 -62 70 -66v-15z M420 450v141c-5 -6 -8 -7 -17 -7c-26 0 -40 9 -61 37c-20 27 -33 35 -57 35c-48 0 -71 -50 -71 -154v-52h206'], + 0xE110: [683,0,713,59,650,'650 0h-260v15c63 4 81 20 81 69v334h-227v-339c0 -46 17 -58 86 -64v-15h-271v15c72 4 83 16 83 90v313h-83v32h86c4 88 17 127 53 170c34 39 89 63 144 63c31 0 66 -6 100 -17c17 -5 31 -8 37 -8c10 0 29 5 50 14c16 6 28 10 38 11l6 -2v-600c0 -52 12 -62 77 -66v-15z M471 450v141c-6 -6 -9 -7 -19 -7c-28 0 -44 9 -67 37c-21 27 -36 35 -62 35c-54 0 -79 -50 -79 -154v-52h227'], + 0xE111: [676,0,570,23,529,'529 167h-112v-167h-85v167h-309v64l346 445h48v-445h112v-64zM331 231v343l-264 -343h264'], + 0xE112: [676,0,645,35,591,'591 167h-123v-167h-93v167h-340v64l379 445h54v-445h123v-64zM373 231v343l-290 -343h290'], + 0xE113: [676,14,814,45,790,'790 336c-64 -5 -77 -18 -77 -77v-203c-44 -35 -182 -70 -276 -70c-121 0 -227 38 -300 107c-62 59 -92 134 -92 232c0 204 158 351 378 351c49 0 100 -8 149 -23c20 -7 38 -10 49 -10c23 0 42 14 49 33h24l9 -211h-25c-28 61 -45 88 -78 116c-43 36 -97 55 -159 55 c-75 0 -143 -27 -191 -76c-49 -49 -79 -140 -79 -234c0 -186 110 -300 289 -300c79 0 146 27 146 59v162c0 43 -6 66 -23 75c-13 8 -26 11 -74 14v18h281v-18'], + 0xE114: [676,14,914,59,878,'878 336c-70 -5 -85 -18 -85 -77v-203c-48 -35 -199 -70 -304 -70c-133 0 -249 38 -330 107c-68 59 -100 134 -100 232c0 204 173 351 415 351c54 0 110 -8 164 -23c22 -7 41 -10 54 -10c25 0 47 14 54 33h27l9 -211h-28c-30 61 -49 88 -85 116c-48 36 -107 55 -175 55 c-82 0 -157 -27 -210 -76s-87 -140 -87 -234c0 -186 121 -300 318 -300c87 0 161 27 161 59v162c0 43 -7 66 -26 75c-14 8 -29 11 -81 14v18h309v-18'], + 0xE115: [460,218,570,41,527,'527 388h-91c15 -32 21 -55 21 -84c0 -50 -17 -85 -53 -113c-34 -27 -78 -42 -119 -42c-7 0 -21 1 -42 3c-3 0 -11 1 -21 2c-29 -8 -66 -43 -66 -63c0 -16 28 -25 86 -27l142 -6c81 -3 133 -45 133 -107c0 -38 -19 -70 -60 -101c-58 -42 -143 -68 -226 -68 c-104 0 -190 44 -190 97c0 37 30 70 108 122c-45 20 -59 32 -59 53c0 20 15 40 51 69l47 40c-72 33 -102 71 -102 134c0 91 81 163 184 163c28 0 58 -5 88 -15l24 -8c22 -7 38 -10 60 -10h85v-39zM486 -64c0 36 -36 49 -136 49c-54 0 -142 6 -178 13 c-46 -50 -54 -63 -54 -86c0 -44 64 -73 160 -73c125 0 208 39 208 97zM372 265c0 39 -13 85 -33 120c-18 30 -46 47 -80 47c-51 0 -82 -35 -82 -94v-3c0 -96 46 -161 112 -161c51 0 83 35 83 91'], + 0xE116: [460,218,645,54,589,'589 388h-101c17 -32 23 -55 23 -84c0 -50 -18 -85 -58 -113c-37 -27 -86 -42 -130 -42c-8 0 -23 1 -46 3c-4 0 -13 1 -23 2c-33 -8 -73 -43 -73 -63c0 -16 30 -25 94 -27l156 -6c90 -3 147 -45 147 -107c0 -38 -21 -70 -67 -101c-63 -42 -157 -68 -248 -68 c-115 0 -209 44 -209 97c0 37 33 70 118 122c-49 20 -64 32 -64 53c0 20 16 40 56 69l52 40c-80 33 -113 71 -113 134c0 91 90 163 203 163c31 0 64 -5 96 -15l27 -8c24 -7 42 -10 67 -10h93v-39zM544 -64c0 36 -40 49 -150 49c-59 0 -156 6 -196 13 c-51 -50 -59 -63 -59 -86c0 -44 70 -73 176 -73c137 0 229 39 229 97zM418 265c0 39 -14 85 -36 120c-20 30 -51 47 -89 47c-55 0 -89 -35 -89 -94v-3c0 -96 51 -161 123 -161c56 0 91 35 91 91'], + 0xE117: [851,14,814,45,790,'790 336c-64 -5 -77 -18 -77 -77v-203c-44 -35 -182 -70 -276 -70c-121 0 -227 38 -300 107c-62 59 -92 134 -92 232c0 204 158 351 378 351c49 0 100 -8 149 -23c20 -7 38 -10 49 -10c23 0 42 14 49 33h24l9 -211h-25c-28 61 -45 88 -78 116c-43 36 -97 55 -159 55 c-75 0 -143 -27 -191 -76c-49 -49 -79 -140 -79 -234c0 -186 110 -300 289 -300c79 0 146 27 146 59v162c0 43 -6 66 -23 75c-13 8 -26 11 -74 14v18h281v-18zM595 851c0 -70 -68 -138 -171 -138c-104 0 -172 68 -172 138h29c17 -58 74 -82 143 -82c68 0 125 24 143 82h28'], + 0xE118: [851,14,914,59,878,'878 336c-70 -5 -85 -18 -85 -77v-203c-48 -35 -199 -70 -304 -70c-133 0 -249 38 -330 107c-68 59 -100 134 -100 232c0 204 173 351 415 351c54 0 110 -8 164 -23c22 -7 41 -10 54 -10c25 0 47 14 54 33h27l9 -211h-28c-30 61 -49 88 -85 116c-48 36 -107 55 -175 55 c-82 0 -157 -27 -210 -76s-87 -140 -87 -234c0 -186 121 -300 318 -300c87 0 161 27 161 59v162c0 43 -7 66 -26 75c-14 8 -29 11 -81 14v18h309v-18zM664 851c0 -70 -75 -138 -189 -138s-189 68 -189 138h32c19 -58 82 -82 157 -82s138 24 157 82h32'], + 0xE119: [669,218,570,41,527,'527 388h-91c15 -32 21 -55 21 -84c0 -50 -17 -85 -53 -113c-34 -27 -78 -42 -119 -42c-7 0 -21 1 -42 3c-3 0 -11 1 -21 2c-29 -8 -66 -43 -66 -63c0 -16 28 -25 86 -27l142 -6c81 -3 133 -45 133 -107c0 -38 -19 -70 -60 -101c-58 -42 -143 -68 -226 -68 c-104 0 -190 44 -190 97c0 37 30 70 108 122c-45 20 -59 32 -59 53c0 20 15 40 51 69l47 40c-72 33 -102 71 -102 134c0 91 81 163 184 163c28 0 58 -5 88 -15l24 -8c22 -7 38 -10 60 -10h85v-39zM486 -64c0 36 -36 49 -136 49c-54 0 -142 6 -178 13 c-46 -50 -54 -63 -54 -86c0 -44 64 -73 160 -73c125 0 208 39 208 97zM372 265c0 39 -13 85 -33 120c-18 30 -46 47 -80 47c-51 0 -82 -35 -82 -94v-3c0 -96 46 -161 112 -161c51 0 83 35 83 91zM425 669c-13 -106 -64 -157 -156 -157c-52 0 -96 19 -124 54 c-21 28 -28 52 -29 103h32c15 -67 52 -97 123 -97c64 0 91 21 122 97h32'], + 0xE11A: [669,218,645,54,589,'589 388h-101c17 -32 23 -55 23 -84c0 -50 -18 -85 -58 -113c-37 -27 -86 -42 -130 -42c-8 0 -23 1 -46 3c-4 0 -13 1 -23 2c-33 -8 -73 -43 -73 -63c0 -16 30 -25 94 -27l156 -6c90 -3 147 -45 147 -107c0 -38 -21 -70 -67 -101c-63 -42 -157 -68 -248 -68 c-115 0 -209 44 -209 97c0 37 33 70 118 122c-49 20 -64 32 -64 53c0 20 16 40 56 69l52 40c-80 33 -113 71 -113 134c0 91 90 163 203 163c31 0 64 -5 96 -15l27 -8c24 -7 42 -10 67 -10h93v-39zM544 -64c0 36 -40 49 -150 49c-59 0 -156 6 -196 13 c-51 -50 -59 -63 -59 -86c0 -44 70 -73 176 -73c137 0 229 39 229 97zM418 265c0 39 -14 85 -36 120c-20 30 -51 47 -89 47c-55 0 -89 -35 -89 -94v-3c0 -96 51 -161 123 -161c56 0 91 35 91 91zM476 669c-14 -106 -70 -157 -172 -157c-57 0 -105 19 -135 54 c-23 28 -32 52 -33 103h35c17 -67 58 -97 136 -97c70 0 100 21 134 97h35'], + 0xE11B: [676,281,814,45,790,'790 336c-64 -5 -77 -18 -77 -77v-203c-44 -35 -182 -70 -276 -70c-121 0 -227 38 -300 107c-62 59 -92 134 -92 232c0 204 158 351 378 351c49 0 100 -8 149 -23c20 -7 38 -10 49 -10c23 0 42 14 49 33h24l9 -211h-25c-28 61 -45 88 -78 116c-43 36 -97 55 -159 55 c-75 0 -143 -27 -191 -76c-49 -49 -79 -140 -79 -234c0 -186 110 -300 289 -300c79 0 146 27 146 59v162c0 43 -6 66 -23 75c-13 8 -26 11 -74 14v18h281v-18zM500 -127c0 -60 -50 -121 -124 -154l-10 19c60 37 91 74 91 106c0 8 -7 14 -16 14c0 0 -1 0 -9 -2 c-6 -1 -14 -2 -20 -2c-40 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89'], + 0xE11C: [676,281,914,59,878,'878 336c-70 -5 -85 -18 -85 -77v-203c-48 -35 -199 -70 -304 -70c-133 0 -249 38 -330 107c-68 59 -100 134 -100 232c0 204 173 351 415 351c54 0 110 -8 164 -23c22 -7 41 -10 54 -10c25 0 47 14 54 33h27l9 -211h-28c-30 61 -49 88 -85 116c-48 36 -107 55 -175 55 c-82 0 -157 -27 -210 -76s-87 -140 -87 -234c0 -186 121 -300 318 -300c87 0 161 27 161 59v162c0 43 -7 66 -26 75c-14 8 -29 11 -81 14v18h309v-18zM558 -127c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -9 -2c-8 -1 -16 -2 -23 -2 c-44 0 -72 19 -72 51c0 34 29 57 72 57c54 0 96 -39 96 -89'], + 0xE11D: [733,218,570,41,527,'347 547c0 -34 -27 -57 -65 -57c-50 0 -88 39 -88 89c0 60 49 121 123 154l10 -19c-60 -37 -90 -74 -90 -106c0 -8 6 -14 15 -14c0 0 1 0 9 2c6 1 14 2 21 2c39 0 65 -19 65 -51zM527 388h-91c15 -32 21 -55 21 -84c0 -50 -17 -85 -53 -113c-34 -27 -78 -42 -119 -42 c-7 0 -21 1 -42 3c-3 0 -11 1 -21 2c-29 -8 -66 -43 -66 -63c0 -16 28 -25 86 -27l142 -6c81 -3 133 -45 133 -107c0 -38 -19 -70 -60 -101c-58 -42 -143 -68 -226 -68c-104 0 -190 44 -190 97c0 37 30 70 108 122c-45 20 -59 32 -59 53c0 20 15 40 51 69l47 40 c-72 33 -102 71 -102 134c0 91 81 163 184 163c28 0 58 -5 88 -15l24 -8c22 -7 38 -10 60 -10h85v-39zM486 -64c0 36 -36 49 -136 49c-54 0 -142 6 -178 13c-46 -50 -54 -63 -54 -86c0 -44 64 -73 160 -73c125 0 208 39 208 97zM372 265c0 39 -13 85 -33 120 c-18 30 -46 47 -80 47c-51 0 -82 -35 -82 -94v-3c0 -96 46 -161 112 -161c51 0 83 35 83 91'], + 0xE11E: [733,218,645,54,589,'390 547c0 -34 -29 -57 -71 -57c-55 0 -97 39 -97 89c0 60 55 121 136 154l10 -19c-65 -37 -99 -74 -99 -106c0 -8 8 -14 17 -14c0 0 1 0 10 2c7 1 16 2 23 2c43 0 71 -19 71 -51zM589 388h-101c17 -32 23 -55 23 -84c0 -50 -18 -85 -58 -113c-37 -27 -86 -42 -130 -42 c-8 0 -23 1 -46 3c-4 0 -13 1 -23 2c-33 -8 -73 -43 -73 -63c0 -16 30 -25 94 -27l156 -6c90 -3 147 -45 147 -107c0 -38 -21 -70 -67 -101c-63 -42 -157 -68 -248 -68c-115 0 -209 44 -209 97c0 37 33 70 118 122c-49 20 -64 32 -64 53c0 20 16 40 56 69l52 40 c-80 33 -113 71 -113 134c0 91 90 163 203 163c31 0 64 -5 96 -15l27 -8c24 -7 42 -10 67 -10h93v-39zM544 -64c0 36 -40 49 -150 49c-59 0 -156 6 -196 13c-51 -50 -59 -63 -59 -86c0 -44 70 -73 176 -73c137 0 229 39 229 97zM418 265c0 39 -14 85 -36 120 c-20 30 -51 47 -89 47c-55 0 -89 -35 -89 -94v-3c0 -96 51 -161 123 -161c56 0 91 35 91 91'], + 0xE11F: [676,14,1186,54,1132,'548 168c0 -103 -97 -182 -224 -182c-44 0 -88 8 -130 23c-21 7 -40 11 -52 11c-16 0 -30 -14 -31 -33h-24l-33 212h25c55 -122 124 -177 223 -177c80 0 135 46 135 112c0 25 -6 45 -16 59c-27 38 -84 78 -163 117c-124 59 -172 115 -172 194c0 55 21 98 64 130 c35 26 81 42 124 42c39 0 78 -8 119 -22c20 -8 37 -12 48 -12c19 0 31 12 35 34h24l24 -213h-28c-17 59 -33 85 -67 117c-38 36 -85 55 -134 55c-68 0 -114 -37 -114 -92s46 -99 161 -156c145 -72 206 -136 206 -219zM1132 168c0 -103 -97 -182 -224 -182 c-44 0 -88 8 -130 23c-21 7 -40 11 -52 11c-16 0 -30 -14 -31 -33h-24l-33 212h25c55 -122 124 -177 223 -177c80 0 135 46 135 112c0 25 -6 45 -15 59c-28 38 -85 78 -164 117c-124 59 -172 115 -172 194c0 55 21 98 64 130c35 26 81 42 124 42c39 0 78 -8 119 -22 c20 -8 37 -12 48 -12c19 0 31 12 36 34h23l24 -213h-28c-17 59 -33 85 -67 117c-38 36 -84 55 -134 55c-68 0 -114 -37 -114 -92s46 -99 161 -156c146 -72 206 -136 206 -219'], + 0xE120: [676,14,1323,68,1254,'612 168c0 -103 -107 -182 -247 -182c-49 0 -97 8 -143 23c-23 7 -43 11 -57 11c-18 0 -32 -14 -34 -33h-26l-37 212h28c61 -122 136 -177 245 -177c88 0 148 46 148 112c0 25 -6 45 -16 59c-31 38 -94 78 -181 117c-135 59 -189 115 -189 194c0 55 23 98 71 130 c38 26 89 42 136 42c43 0 86 -8 131 -22c22 -8 41 -12 53 -12c21 0 34 12 39 34h25l27 -213h-30c-20 59 -36 85 -74 117c-42 36 -93 55 -148 55c-75 0 -125 -37 -125 -92s50 -99 177 -156c160 -72 227 -136 227 -219zM1254 168c0 -103 -106 -182 -247 -182 c-48 0 -96 8 -142 23c-23 7 -44 11 -57 11c-18 0 -33 -14 -34 -33h-27l-36 212h28c60 -122 135 -177 244 -177c88 0 149 46 149 112c0 25 -6 45 -17 59c-30 38 -93 78 -180 117c-136 59 -189 115 -189 194c0 55 23 98 70 130c39 26 90 42 137 42c42 0 86 -8 131 -22 c21 -8 41 -12 53 -12c20 0 34 12 39 34h25l27 -213h-31c-19 59 -36 85 -73 117c-43 36 -94 55 -148 55c-75 0 -126 -37 -126 -92s51 -99 178 -156c160 -72 226 -136 226 -219'], + 0xE121: [683,9,570,23,525,'525 186c0 -109 -87 -195 -197 -195c-63 0 -107 30 -107 73c0 27 21 48 50 48c24 0 44 -17 46 -40l2 -22c2 -22 11 -30 32 -30c46 0 70 45 70 130c0 135 -48 204 -145 207c-25 1 -35 6 -35 17c0 9 9 13 32 15c71 7 104 48 104 128c0 87 -37 139 -100 139 c-57 0 -94 -42 -94 -107v-549h-160v15c55 4 67 16 67 69v370c0 70 10 115 33 152c32 51 88 77 163 77c115 0 187 -60 187 -152c0 -72 -33 -105 -151 -154c68 -12 99 -23 135 -51c44 -34 68 -84 68 -140'], + 0xE122: [683,9,645,35,586,'586 186c0 -109 -95 -195 -216 -195c-69 0 -118 30 -118 73c0 27 23 48 55 48c26 0 48 -17 51 -40l2 -22c2 -22 12 -30 35 -30c51 0 78 45 78 130c0 135 -54 204 -160 207c-28 1 -39 6 -39 17c0 9 10 13 35 15c79 7 115 48 115 128c0 87 -41 139 -110 139 c-63 0 -104 -42 -104 -107v-549h-175v15c60 4 73 16 73 69v370c0 70 11 115 37 152c35 51 96 77 179 77c126 0 205 -60 205 -152c0 -72 -36 -105 -165 -154c73 -12 109 -23 147 -51c49 -34 75 -84 75 -140'], + 0xE123: [675,-504,386,28,274,'274 504h-44l-169 97c-23 13 -33 26 -33 42c0 20 14 32 38 32c17 0 27 -5 46 -23'], + 0xE124: [675,-504,443,39,310,'310 504h-48l-186 97c-26 13 -37 26 -37 42c0 20 16 32 43 32c18 0 29 -5 51 -23'], + 0xE125: [411,-33,570,73,525,'316 42c0 -5 -5 -9 -11 -9c-5 0 -7 1 -11 6c-63 56 -107 92 -187 156l-34 27l34 27c80 63 124 100 187 156c4 5 6 6 11 6c6 0 11 -4 11 -9c0 -12 -45 -77 -130 -170l-11 -12l11 -12c85 -92 130 -154 130 -166zM525 42c0 -5 -5 -9 -11 -9c-5 0 -7 1 -11 6 c-63 56 -107 92 -187 156l-34 27l34 27c80 63 124 100 187 156c4 5 6 6 11 6c6 0 11 -4 11 -9c0 -12 -45 -77 -130 -170l-11 -12l11 -12c85 -92 130 -154 130 -166'], + 0xE126: [411,-33,645,89,586,'356 42c0 -5 -4 -9 -12 -9c-5 0 -7 1 -12 6c-69 56 -117 92 -206 156l-37 27l37 27c89 63 137 100 206 156c5 5 7 6 12 6c8 0 12 -4 12 -9c0 -12 -49 -77 -142 -170l-12 -12l12 -12c93 -92 142 -154 142 -166zM586 42c0 -5 -5 -9 -12 -9c-5 0 -7 1 -12 6 c-69 56 -117 92 -206 156l-37 27l37 27c89 63 137 100 206 156c5 5 7 6 12 6c7 0 12 -4 12 -9c0 -12 -49 -77 -142 -170l-13 -12l13 -12c93 -92 142 -154 142 -166'], + 0xE127: [411,-33,570,60,512,'303 222l-34 -27c-81 -63 -125 -100 -187 -156c-5 -5 -7 -6 -11 -6c-7 0 -11 4 -11 9c0 12 45 77 129 170l11 12l-11 12c-84 92 -129 154 -129 166c0 5 4 9 11 9c4 0 6 -1 11 -6c62 -56 106 -92 187 -156zM512 222l-34 -27c-81 -63 -125 -100 -187 -156 c-5 -5 -7 -6 -11 -6c-7 0 -11 4 -11 9c0 12 45 77 129 170l11 12l-11 12c-84 92 -129 154 -129 166c0 5 4 9 11 9c4 0 6 -1 11 -6c62 -56 106 -92 187 -156'], + 0xE128: [411,-33,645,74,572,'342 222l-38 -27c-88 -63 -136 -100 -205 -156c-5 -5 -8 -6 -12 -6c-8 0 -13 4 -13 9c0 12 50 77 143 170l12 12l-12 12c-93 92 -143 154 -143 166c0 5 5 9 13 9c4 0 7 -1 12 -6c69 -56 117 -92 205 -156zM572 222l-38 -27c-88 -63 -136 -100 -205 -156 c-5 -5 -8 -6 -13 -6c-7 0 -12 4 -12 9c0 12 50 77 143 170l12 12l-12 12c-93 92 -143 154 -143 166c0 5 5 9 12 9c5 0 8 -1 13 -6c69 -56 117 -92 205 -156'], + 0xE129: [411,-33,386,73,316,'316 42c0 -5 -5 -9 -11 -9c-5 0 -7 1 -11 6c-63 56 -107 92 -187 156l-34 27l34 27c80 63 124 100 187 156c4 5 6 6 11 6c6 0 11 -4 11 -9c0 -12 -45 -77 -130 -170l-11 -12l11 -12c85 -92 130 -154 130 -166'], + 0xE12A: [411,-33,443,89,356,'356 42c0 -5 -4 -9 -12 -9c-5 0 -7 1 -12 6c-69 56 -117 92 -206 156l-37 27l37 27c89 63 137 100 206 156c5 5 7 6 12 6c8 0 12 -4 12 -9c0 -12 -49 -77 -142 -170l-12 -12l12 -12c93 -92 142 -154 142 -166'], + 0xE12B: [411,-33,386,60,303,'303 222l-34 -27c-81 -63 -125 -100 -187 -156c-5 -5 -7 -6 -11 -6c-7 0 -11 4 -11 9c0 12 45 77 129 170l11 12l-11 12c-84 92 -129 154 -129 166c0 5 4 9 11 9c4 0 6 -1 11 -6c62 -56 106 -92 187 -156'], + 0xE12C: [411,-33,443,74,342,'342 222l-38 -27c-88 -63 -136 -100 -205 -156c-5 -5 -8 -6 -12 -6c-8 0 -13 4 -13 9c0 12 50 77 143 170l12 12l-12 12c-93 92 -143 154 -143 166c0 5 5 9 13 9c4 0 7 -1 12 -6c69 -56 117 -92 205 -156'], + 0xE12D: [662,0,814,31,782,'782 0h-306v19c86 5 97 17 97 101v195h-333v-206c0 -71 14 -84 97 -90v-19h-306v19c86 5 97 17 97 101v433c0 72 -12 83 -97 90v19h306v-19c-85 -7 -97 -18 -97 -90v-194h333v194c0 72 -12 83 -97 90v19h306v-19c-84 -7 -97 -18 -97 -90v-444c0 -71 15 -84 97 -90v-19'], + 0xE12E: [662,0,914,43,869,'869 0h-336v19c94 5 107 17 107 101v195h-367v-206c0 -71 16 -84 106 -90v-19h-336v19c94 5 106 17 106 101v433c0 72 -13 83 -106 90v19h336v-19c-93 -7 -106 -18 -106 -90v-194h367v194c0 72 -14 83 -107 90v19h336v-19c-93 -7 -106 -18 -106 -90v-444 c0 -71 16 -84 106 -90v-19'], + 0xE12F: [683,0,570,20,546,'546 0h-233v15c63 6 74 19 74 87v198c0 70 -27 106 -82 106c-43 0 -76 -17 -122 -63v-241c0 -69 11 -81 75 -87v-15h-238v15c64 8 70 17 70 87v471c0 43 -8 51 -56 51c-5 0 -9 0 -13 -1v16l30 8c61 16 89 24 126 36l6 -3v-304c50 60 97 84 161 84c90 0 136 -54 136 -159 v-199c0 -69 6 -77 66 -87v-15'], + 0xE130: [683,0,645,31,609,'609 0h-256v15c70 6 82 19 82 87v198c0 70 -30 106 -91 106c-47 0 -83 -17 -134 -63v-241c0 -69 12 -81 82 -87v-15h-261v15c70 8 77 17 77 87v471c0 43 -9 51 -61 51c-6 0 -10 0 -15 -1v16l33 8c68 16 98 24 139 36l6 -3v-304c56 60 106 84 178 84 c98 0 149 -54 149 -159v-199c0 -69 7 -77 72 -87v-15'], + 0xE131: [684,-497,386,85,302,'302 626c0 -20 -17 -38 -47 -59c-25 -18 -41 -31 -46 -40c-4 -7 -8 -16 -11 -30h-25c1 27 15 52 36 79c19 19 25 35 25 47c0 27 -17 42 -55 42c-17 0 -30 -4 -38 -10c-4 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 107 53 c39 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE132: [684,-497,443,102,341,'341 626c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -8 -16 -12 -30h-28c1 27 17 52 40 79c21 19 28 35 28 47c0 27 -20 42 -61 42c-19 0 -34 -4 -42 -10c-5 -2 -7 -5 -7 -8c0 -4 20 -21 20 -29c0 -13 -11 -19 -34 -19c-26 0 -41 10 -41 32c0 30 49 53 118 53 c43 0 75 -7 96 -22c16 -12 25 -24 25 -36'], + 0xE133: [676,-505,386,51,480,'480 644c0 -16 -10 -29 -33 -42l-170 -97h-44l162 148c20 18 30 23 46 23c24 0 39 -12 39 -32zM297 644c0 -16 -10 -29 -33 -42l-169 -97h-44l161 148c20 18 30 23 47 23c24 0 38 -12 38 -32'], + 0xE134: [676,-505,443,65,537,'537 644c0 -16 -11 -29 -37 -42l-186 -97h-48l178 148c21 18 32 23 50 23c27 0 43 -12 43 -32zM336 644c0 -16 -11 -29 -36 -42l-187 -97h-48l178 148c21 18 32 23 50 23c27 0 43 -12 43 -32'], + 0xE135: [257,-194,386,53,324,'324 194h-271v63h271v-63'], + 0xE136: [257,-194,443,67,365,'365 194h-298v63h298v-63'], + 0xE137: [662,0,386,30,357,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19'], + 0xE138: [662,0,443,42,401,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19'], + 0xE139: [641,0,326,28,288,'288 0h-260v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM217 590c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE13A: [641,0,376,39,326,'326 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM247 590c0 -29 -26 -51 -61 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 61 -23 61 -51'], + 0xE13B: [851,0,386,30,363,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19zM363 825c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26'], + 0xE13C: [851,0,443,42,408,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19zM408 825c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120c24 15 36 19 55 19c29 0 46 -10 46 -26'], + 0xE13D: [675,0,326,28,327,'288 0h-260v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM327 643c0 -16 -10 -29 -33 -42l-170 -97h-44l162 148c20 18 30 23 46 23c25 0 39 -12 39 -32'], + 0xE13E: [675,0,376,39,368,'326 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM368 643c0 -16 -10 -29 -36 -42l-186 -97h-49l178 148c22 18 33 23 51 23c27 0 42 -12 42 -32'], + 0xE13F: [847,0,386,3,384,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19zM384 718h-53l-137 79l-138 -79h-53l148 129h85'], + 0xE140: [847,0,443,13,431,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19zM431 718h-58l-151 79l-151 -79h-58l162 129h93'], + 0xE141: [674,0,326,-10,332,'288 0h-260v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM332 507h-37l-134 103l-133 -103h-38l137 167h68'], + 0xE142: [674,0,376,-2,375,'326 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM375 507h-42l-147 103l-147 -103h-41l150 167h75'], + 0xE143: [832,0,386,30,358,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19zM139 782c0 -27 -26 -49 -56 -49s-53 22 -53 50c0 26 25 49 53 49c30 0 56 -23 56 -50zM358 782c0 -27 -26 -49 -56 -49s-53 22 -53 50 c0 26 25 49 53 49c30 0 56 -23 56 -50'], + 0xE144: [832,0,443,42,402,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19zM162 782c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM402 782c0 -27 -27 -49 -61 -49 c-33 0 -58 22 -58 50c0 26 27 49 58 49c34 0 61 -23 61 -50'], + 0xE145: [640,0,326,-2,326,'288 0h-260v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM107 590c0 -27 -25 -49 -56 -49c-30 0 -53 22 -53 50c0 26 25 49 53 49c31 0 56 -23 56 -50zM326 590c0 -27 -26 -49 -56 -49 s-53 22 -53 50c0 26 25 49 53 49c30 0 56 -23 56 -50'], + 0xE146: [640,0,376,7,367,'326 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM126 590c0 -27 -27 -49 -61 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 61 -23 61 -50zM367 590c0 -27 -28 -49 -61 -49 s-59 22 -59 50c0 26 28 49 59 49c33 0 61 -23 61 -50'], + 0xE147: [833,0,386,30,357,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19zM249 782c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE148: [833,0,443,42,401,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19zM283 782c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE149: [662,191,386,30,357,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19zM249 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE14A: [662,191,443,42,401,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19zM283 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE14B: [641,191,326,28,288,'288 0h-260v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM217 590c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51zM219 -140c0 -29 -24 -51 -56 -51 c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE14C: [641,191,376,39,326,'326 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM247 590c0 -29 -26 -51 -61 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 61 -23 61 -51zM250 -140c0 -29 -27 -51 -62 -51 c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE14D: [851,0,386,23,357,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19zM289 712h-47l-184 80c-24 9 -35 20 -35 33c0 16 16 26 42 26c18 0 29 -4 51 -19'], + 0xE14E: [851,0,443,35,401,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19zM327 712h-52l-202 80c-26 9 -38 20 -38 33c0 16 16 26 46 26c19 0 31 -4 55 -19'], + 0xE14F: [675,0,326,-4,288,'288 0h-260v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM242 504h-44l-169 97c-23 13 -33 26 -33 42c0 20 14 32 38 32c17 0 27 -5 46 -23'], + 0xE150: [675,0,376,4,326,'326 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM275 504h-48l-186 97c-26 13 -37 26 -37 42c0 20 16 32 43 32c18 0 29 -5 50 -23'], + 0xE151: [896,0,386,30,357,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19zM302 838c0 -20 -17 -38 -47 -59c-25 -18 -41 -31 -46 -40c-4 -7 -8 -16 -11 -30h-25c1 27 15 52 36 79c19 19 25 35 25 47 c0 27 -17 42 -55 42c-17 0 -30 -4 -38 -10c-4 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 107 53c39 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE152: [896,0,443,42,401,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19zM341 838c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -8 -16 -12 -30h-28c1 27 17 52 40 79c21 19 28 35 28 47 c0 27 -20 42 -61 42c-19 0 -34 -4 -42 -10c-5 -2 -7 -5 -7 -8c0 -4 20 -21 20 -29c0 -13 -11 -19 -34 -19c-26 0 -41 10 -41 32c0 30 49 53 118 53c43 0 75 -7 96 -22c16 -12 25 -24 25 -36'], + 0xE153: [684,0,326,28,288,'288 0h-260v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM270 626c0 -20 -17 -38 -47 -59c-25 -18 -41 -31 -46 -40c-4 -7 -7 -16 -11 -30h-25c1 27 15 52 36 79c19 19 26 35 26 47 c0 27 -18 42 -55 42c-18 0 -31 -4 -39 -10c-4 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 107 53c39 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE154: [684,0,376,39,326,'326 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM306 626c0 -20 -19 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -9 -16 -12 -30h-28c1 27 17 52 40 79c20 19 28 35 28 47 c0 27 -20 42 -61 42c-19 0 -34 -4 -42 -10c-5 -2 -7 -5 -7 -8c0 -4 20 -21 20 -29c0 -13 -11 -19 -34 -19c-26 0 -41 10 -41 32c0 30 49 53 118 53c43 0 75 -7 96 -22c16 -12 25 -24 25 -36'], + 0xE155: [662,14,886,54,832,'381 0h-327v19c92 3 107 15 107 90v444c0 74 -13 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 18 -87 108 -90v-19zM832 643c-89 -6 -101 -17 -101 -90v-370c0 -125 -68 -197 -186 -197c-64 0 -109 30 -109 72c0 27 24 50 54 50c28 0 46 -16 57 -51 c8 -25 14 -33 30 -33c28 0 41 21 41 66v463c0 73 -12 84 -102 90v19h316v-19'], + 0xE156: [662,14,992,68,924,'428 0h-360v19c102 3 118 15 118 90v444c0 74 -15 85 -118 90v19h360v-19c-102 -4 -119 -17 -119 -90v-444c0 -73 20 -87 119 -90v-19zM924 643c-98 -6 -111 -17 -111 -90v-370c0 -125 -74 -197 -205 -197c-70 0 -120 30 -120 72c0 27 27 50 60 50c31 0 50 -16 62 -51 c9 -25 16 -33 33 -33c32 0 46 21 46 66v463c0 73 -13 84 -112 90v19h347v-19'], + 0xE157: [641,218,609,54,564,'315 0h-261v15c76 4 87 15 87 87v232c0 44 -10 60 -36 60c-10 0 -25 -1 -38 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 82 -87v-15zM243 590c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51zM555 0c0 -142 -65 -218 -187 -218 c-60 0 -103 23 -103 55c0 22 20 39 45 39c18 0 33 -9 53 -32c19 -21 30 -28 46 -28s31 8 38 18c12 20 15 45 15 121v379c0 43 -10 60 -35 60c-11 0 -26 -1 -44 -3l-6 -1v16c65 18 107 31 172 54l6 -3v-457zM564 590c0 -29 -24 -51 -56 -51c-30 0 -56 22 -56 51 c0 28 26 51 56 51c32 0 56 -23 56 -51'], + 0xE158: [641,218,687,68,630,'355 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM277 590c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51zM619 0c0 -142 -71 -218 -206 -218 c-65 0 -112 23 -112 55c0 22 22 39 49 39c20 0 37 -9 58 -32c21 -21 33 -28 51 -28c17 0 34 8 41 18c14 20 17 45 17 121v379c0 43 -11 60 -38 60c-13 0 -29 -1 -49 -3l-6 -1v16c72 18 118 31 189 54l6 -3v-457zM630 590c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51 c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE159: [809,0,386,22,364,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19zM364 755h-342v54h342v-54'], + 0xE15A: [809,0,443,33,410,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19zM410 755h-377v54h377v-54'], + 0xE15B: [617,0,326,-10,332,'288 0h-260v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM332 563h-342v54h342v-54'], + 0xE15C: [617,0,376,-2,375,'326 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM375 563h-377v54h377v-54'], + 0xE15D: [662,245,386,30,357,'357 -164c-20 -39 -51 -81 -114 -81c-47 0 -84 38 -84 86c0 40 15 75 39 104c17 21 38 39 61 55h-229v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19c-42 0 -84 -16 -105 -49 c-16 -24 -26 -51 -26 -83c0 -36 17 -61 50 -61c29 0 46 23 60 43'], + 0xE15E: [662,245,443,42,401,'401 -164c-22 -39 -56 -81 -124 -81c-53 0 -94 38 -94 86c0 40 17 75 44 104c18 21 41 39 66 55h-251v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19c-46 0 -92 -16 -115 -49 c-18 -24 -29 -51 -29 -83c0 -36 20 -61 56 -61c31 0 51 23 65 43'], + 0xE15F: [641,245,326,28,288,'288 0c-46 7 -91 -13 -115 -49c-17 -24 -27 -51 -27 -83c0 -36 18 -61 51 -61c29 0 46 23 59 43l21 -14c-19 -39 -50 -81 -113 -81c-47 0 -85 38 -85 86c0 40 16 75 40 104c16 21 37 39 60 55h-151v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3 l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM219 590c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE160: [641,245,376,39,326,'326 0c-51 7 -100 -13 -127 -49c-18 -24 -29 -51 -29 -83c0 -36 19 -61 56 -61c31 0 51 23 65 43l23 -14c-22 -39 -56 -81 -125 -81c-52 0 -93 38 -93 86c0 40 17 75 44 104c18 21 41 39 66 55h-167v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3 l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM250 590c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE161: [835,0,386,11,374,'357 0h-327v19c92 3 107 15 107 90v444c0 74 -14 85 -107 90v19h327v-19c-93 -4 -108 -17 -108 -90v-444c0 -73 17 -87 108 -90v-19zM374 835c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32 c17 65 56 101 111 101c24 0 52 -6 77 -18l27 -12c21 -9 41 -15 58 -15c25 0 40 12 58 50h32'], + 0xE162: [835,0,443,21,421,'401 0h-359v19c101 3 117 15 117 90v444c0 74 -14 85 -117 90v19h359v-19c-101 -4 -118 -17 -118 -90v-444c0 -73 19 -87 118 -90v-19zM421 835c-26 -76 -61 -106 -128 -106c-30 0 -48 4 -98 24l-27 11c-19 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35 c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h36'], + 0xE163: [643,0,326,-21,342,'288 0h-260v15c76 4 87 15 87 87v232c0 44 -10 60 -37 60c-10 0 -24 -1 -37 -3l-9 -1v15l171 55l4 -3v-355c0 -72 9 -82 81 -87v-15zM342 643c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32 c17 65 56 101 111 101c25 0 52 -6 77 -18l27 -12c21 -9 42 -15 58 -15c25 0 40 12 58 50h32'], + 0xE164: [643,0,376,-14,385,'326 0h-287v15c84 4 96 15 96 87v232c0 44 -11 60 -40 60c-11 0 -27 -1 -41 -3l-10 -1v15l188 55l5 -3v-355c0 -72 9 -82 89 -87v-15zM385 643c-25 -76 -60 -106 -127 -106c-30 0 -48 4 -98 24l-27 11c-19 7 -36 11 -50 11c-28 0 -48 -15 -62 -46h-35 c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h35'], + 0xE165: [662,14,448,21,417,'417 643c-89 -6 -101 -17 -101 -90v-370c0 -125 -67 -197 -186 -197c-64 0 -109 30 -109 72c0 27 24 50 54 50c29 0 46 -16 57 -51c8 -25 14 -33 30 -33c28 0 42 21 42 66v463c0 73 -12 84 -103 90v19h316v-19'], + 0xE166: [662,14,511,32,468,'468 643c-98 -6 -112 -17 -112 -90v-370c0 -125 -73 -197 -204 -197c-70 0 -120 30 -120 72c0 27 27 50 59 50s51 -16 63 -51c9 -25 16 -33 33 -33c31 0 46 21 46 66v463c0 73 -13 84 -113 90v19h348v-19'], + 0xE167: [641,218,326,-67,232,'222 0c0 -142 -65 -218 -187 -218c-59 0 -102 23 -102 55c0 22 20 39 45 39c18 0 33 -9 53 -32c19 -21 30 -28 46 -28s31 8 38 18c12 20 15 45 15 121v379c0 43 -10 60 -35 60c-11 0 -27 -1 -44 -3l-6 -1v16c65 18 107 31 172 54l5 -3v-457zM232 590 c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE168: [641,218,376,-65,264,'254 0c0 -142 -72 -218 -206 -218c-66 0 -113 23 -113 55c0 22 22 39 50 39c19 0 36 -9 58 -32c21 -21 33 -28 51 -28c17 0 34 8 41 18c13 20 17 45 17 121v379c0 43 -11 60 -39 60c-12 0 -29 -1 -48 -3l-6 -1v16c71 18 117 31 188 54l7 -3v-457zM264 590 c0 -29 -26 -51 -61 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 61 -23 61 -51'], + 0xE169: [662,0,814,47,805,'805 0h-335v19c13 1 25 1 31 1c30 1 46 8 46 22c0 24 -60 95 -143 170l-117 105l-28 -21v-187c0 -73 13 -85 99 -90v-19h-311v19c87 5 99 18 99 101v433c0 71 -13 84 -99 90v19h313v-19c-89 -6 -101 -17 -101 -90v-205l194 161c61 51 86 81 86 103c0 20 -13 28 -46 30 c-4 0 -15 0 -29 1v19h289v-19c-75 -5 -93 -13 -168 -78l-209 -188l257 -250c100 -97 115 -107 172 -108v-19'], + 0xE16A: [662,0,914,61,895,'895 0h-369v19c14 1 28 1 34 1c34 1 50 8 50 22c0 24 -65 95 -157 170l-128 105l-32 -21v-187c0 -73 15 -85 109 -90v-19h-341v19c96 5 109 18 109 101v433c0 71 -14 84 -109 90v19h344v-19c-98 -6 -112 -17 -112 -90v-205l215 161c66 51 94 81 94 103 c0 20 -15 28 -51 30c-5 0 -17 0 -31 1v19h317v-19c-83 -5 -102 -13 -184 -78l-230 -188l282 -250c110 -97 127 -107 190 -108v-19'], + 0xE16B: [683,0,570,18,566,'566 0h-240v15h21c13 0 23 6 23 15c0 5 -4 11 -12 21c-4 3 -6 6 -8 9l-3 4l-154 187v-184c0 -35 16 -49 60 -51l22 -1v-15h-257v15c79 12 82 15 82 67v482c0 48 -11 61 -47 61c-11 0 -21 -1 -35 -2v16l33 8l137 36l5 -2v-420l150 122c16 12 26 26 26 34 c0 14 -12 18 -55 19v14h224v-15h-9c-18 0 -34 -2 -50 -6c-32 -8 -100 -54 -179 -120l-31 -27l168 -194c46 -51 80 -70 129 -73v-15'], + 0xE16C: [683,0,645,28,631,'631 0h-264v15h23c15 0 26 6 26 15c0 5 -4 11 -14 21c-3 3 -6 6 -8 9l-4 4l-169 187v-184c0 -35 18 -49 66 -51l25 -1v-15h-284v15c88 12 91 15 91 67v482c0 48 -12 61 -52 61c-12 0 -23 -1 -39 -2v16l37 8l151 36l5 -2v-420l166 122c17 12 27 26 27 34 c0 14 -13 18 -60 19v14h247v-15h-10c-20 0 -37 -2 -56 -6c-35 -8 -110 -54 -196 -120l-35 -27l185 -194c51 -51 89 -70 142 -73v-15'], + 0xE16D: [662,281,814,47,805,'805 0h-335v19c13 1 25 1 31 1c30 1 46 8 46 22c0 24 -60 95 -143 170l-117 105l-28 -21v-187c0 -73 13 -85 99 -90v-19h-311v19c87 5 99 18 99 101v433c0 71 -13 84 -99 90v19h313v-19c-89 -6 -101 -17 -101 -90v-205l194 161c61 51 86 81 86 103c0 20 -13 28 -46 30 c-4 0 -15 0 -29 1v19h289v-19c-75 -5 -93 -13 -168 -78l-209 -188l257 -250c100 -97 115 -107 172 -108v-19zM491 -127c0 -60 -50 -121 -123 -154l-10 19c59 37 90 74 90 106c0 8 -7 14 -16 14c0 0 -1 0 -8 -2c-7 -1 -15 -2 -21 -2c-40 0 -65 19 -65 51c0 34 26 57 65 57 c49 0 88 -39 88 -89'], + 0xE16E: [662,281,914,61,895,'895 0h-369v19c14 1 28 1 34 1c34 1 50 8 50 22c0 24 -65 95 -157 170l-128 105l-32 -21v-187c0 -73 15 -85 109 -90v-19h-341v19c96 5 109 18 109 101v433c0 71 -14 84 -109 90v19h344v-19c-98 -6 -112 -17 -112 -90v-205l215 161c66 51 94 81 94 103 c0 20 -15 28 -51 30c-5 0 -17 0 -31 1v19h317v-19c-83 -5 -102 -13 -184 -78l-230 -188l282 -250c110 -97 127 -107 190 -108v-19zM549 -127c0 -60 -55 -121 -136 -154l-11 19c66 37 100 74 100 106c0 8 -8 14 -17 14c0 0 -2 0 -10 -2c-7 -1 -16 -2 -23 -2 c-44 0 -71 19 -71 51c0 34 29 57 71 57c54 0 97 -39 97 -89'], + 0xE16F: [683,281,570,18,566,'566 0h-240v15h21c13 0 23 6 23 15c0 5 -4 11 -12 21c-4 3 -6 6 -8 9l-3 4l-154 187v-184c0 -35 16 -49 60 -51l22 -1v-15h-257v15c79 12 82 15 82 67v482c0 48 -11 61 -47 61c-11 0 -21 -1 -35 -2v16l33 8l137 36l5 -2v-420l150 122c16 12 26 26 26 34 c0 14 -12 18 -55 19v14h224v-15h-9c-18 0 -34 -2 -50 -6c-32 -8 -100 -54 -179 -120l-31 -27l168 -194c46 -51 80 -70 129 -73v-15zM377 -127c0 -60 -49 -121 -123 -154l-10 19c60 37 91 74 91 106c0 8 -7 14 -16 14c0 0 -1 0 -9 -2c-6 -1 -14 -2 -21 -2 c-39 0 -64 19 -64 51c0 34 26 57 64 57c50 0 88 -39 88 -89'], + 0xE170: [683,281,645,28,631,'631 0h-264v15h23c15 0 26 6 26 15c0 5 -4 11 -14 21c-3 3 -6 6 -8 9l-4 4l-169 187v-184c0 -35 18 -49 66 -51l25 -1v-15h-284v15c88 12 91 15 91 67v482c0 48 -12 61 -52 61c-12 0 -23 -1 -39 -2v16l37 8l151 36l5 -2v-420l166 122c17 12 27 26 27 34 c0 14 -13 18 -60 19v14h247v-15h-10c-20 0 -37 -2 -56 -6c-35 -8 -110 -54 -196 -120l-35 -27l185 -194c51 -51 89 -70 142 -73v-15zM424 -127c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -10 -2c-7 -1 -15 -2 -23 -2 c-43 0 -71 19 -71 51c0 34 29 57 71 57c55 0 97 -39 97 -89'], + 0xE171: [662,0,692,23,668,'668 174l-53 -174h-592v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h310v-19c-86 -5 -102 -19 -102 -90v-473c0 -35 14 -41 95 -41h73c95 0 156 19 194 61c15 16 30 39 47 74h28'], + 0xE172: [662,0,779,35,744,'744 174l-58 -174h-651v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h341v-19c-96 -5 -113 -19 -113 -90v-473c0 -35 16 -41 104 -41h81c104 0 171 19 213 61c17 16 33 39 52 74h31'], + 0xE173: [683,0,326,31,293,'293 0h-260v15c69 5 85 18 85 72v477c0 47 -11 61 -46 61c-9 0 -22 -1 -34 -2h-7v16c76 17 118 27 175 44l4 -2v-597c0 -55 12 -65 83 -69v-15'], + 0xE174: [683,0,376,43,331,'331 0h-286v15c77 5 94 18 94 72v477c0 47 -13 61 -51 61c-10 0 -24 -1 -38 -2h-7v16c83 17 129 27 192 44l5 -2v-597c0 -55 14 -65 91 -69v-15'], + 0xE175: [851,0,692,23,668,'668 174l-53 -174h-592v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h310v-19c-86 -5 -102 -19 -102 -90v-473c0 -35 14 -41 95 -41h73c95 0 156 19 194 61c15 16 30 39 47 74h28zM349 825c0 -13 -11 -24 -35 -33l-184 -80h-47l173 120c22 15 33 19 51 19 c26 0 42 -10 42 -26'], + 0xE176: [851,0,779,35,744,'744 174l-58 -174h-651v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h341v-19c-96 -5 -113 -19 -113 -90v-473c0 -35 16 -41 104 -41h81c104 0 171 19 213 61c17 16 33 39 52 74h31zM393 825c0 -13 -12 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19 c29 0 46 -10 46 -26'], + 0xE177: [872,0,326,31,321,'293 0h-260v15c69 5 85 18 85 72v477c0 47 -11 61 -46 61c-9 0 -22 -1 -34 -2h-7v16c76 17 118 27 175 44l4 -2v-597c0 -55 12 -65 83 -69v-15zM321 846c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 51 19c26 0 41 -10 41 -26'], + 0xE178: [872,0,376,43,362,'331 0h-286v15c77 5 94 18 94 72v477c0 47 -13 61 -51 61c-10 0 -24 -1 -38 -2h-7v16c83 17 129 27 192 44l5 -2v-597c0 -55 14 -65 91 -69v-15zM362 846c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120c24 15 36 19 55 19c29 0 46 -10 46 -26'], + 0xE179: [662,0,692,23,668,'668 174l-53 -174h-592v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h310v-19c-86 -5 -102 -19 -102 -90v-473c0 -35 14 -41 95 -41h73c95 0 156 19 194 61c15 16 30 39 47 74h28zM530 573c0 -60 -49 -121 -123 -154l-10 19c60 37 90 74 90 106c0 8 -6 14 -15 14 c0 0 -1 0 -9 -2c-6 -1 -14 -2 -21 -2c-39 0 -65 19 -65 51c0 34 27 57 65 57c50 0 88 -39 88 -89'], + 0xE17A: [662,0,779,35,744,'744 174l-58 -174h-651v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h341v-19c-96 -5 -113 -19 -113 -90v-473c0 -35 16 -41 104 -41h81c104 0 171 19 213 61c17 16 33 39 52 74h31zM592 573c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14 c0 0 -1 0 -9 -2c-8 -1 -16 -2 -23 -2c-44 0 -72 19 -72 51c0 34 29 57 72 57c54 0 96 -39 96 -89'], + 0xE17B: [683,0,326,31,407,'293 0h-260v15c69 5 85 18 85 72v477c0 47 -11 61 -46 61c-9 0 -22 -1 -34 -2h-7v16c76 17 118 27 175 44l4 -2v-597c0 -55 12 -65 83 -69v-15zM407 594c0 -60 -49 -121 -123 -154l-10 19c59 37 90 74 90 106c0 8 -6 14 -15 14c0 0 -1 0 -9 -2c-7 -1 -14 -2 -21 -2 c-39 0 -65 19 -65 51c0 34 27 57 65 57c50 0 88 -39 88 -89'], + 0xE17C: [683,0,376,43,457,'331 0h-286v15c77 5 94 18 94 72v477c0 47 -13 61 -51 61c-10 0 -24 -1 -38 -2h-7v16c83 17 129 27 192 44l5 -2v-597c0 -55 14 -65 91 -69v-15zM457 594c0 -60 -55 -121 -136 -154l-11 19c66 37 100 74 100 106c0 8 -8 14 -17 14c0 0 -2 0 -10 -2c-7 -1 -16 -2 -23 -2 c-44 0 -71 19 -71 51c0 34 29 57 71 57c54 0 97 -39 97 -89'], + 0xE17D: [662,281,692,23,668,'668 174l-53 -174h-592v19c81 5 96 19 96 90v444c0 71 -14 84 -96 90v19h310v-19c-86 -5 -102 -19 -102 -90v-473c0 -35 14 -41 95 -41h73c95 0 156 19 194 61c15 16 30 39 47 74h28zM423 -127c0 -60 -50 -121 -124 -154l-10 19c60 37 91 74 91 106c0 8 -7 14 -16 14 c0 0 -1 0 -9 -2c-6 -1 -14 -2 -20 -2c-40 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89'], + 0xE17E: [662,281,779,35,744,'744 174l-58 -174h-651v19c88 5 105 19 105 90v444c0 71 -16 84 -105 90v19h341v-19c-96 -5 -113 -19 -113 -90v-473c0 -35 16 -41 104 -41h81c104 0 171 19 213 61c17 16 33 39 52 74h31zM474 -127c0 -60 -55 -121 -136 -154l-11 19c66 37 100 74 100 106 c0 8 -8 14 -17 14c0 0 -2 0 -10 -2c-7 -1 -16 -2 -23 -2c-44 0 -71 19 -71 51c0 34 29 57 71 57c54 0 97 -39 97 -89'], + 0xE17F: [683,281,326,31,293,'293 0h-260v15c69 5 85 18 85 72v477c0 47 -11 61 -46 61c-9 0 -22 -1 -34 -2h-7v16c76 17 118 27 175 44l4 -2v-597c0 -55 12 -65 83 -69v-15zM241 -127c0 -60 -49 -121 -123 -154l-10 19c59 37 90 74 90 106c0 8 -6 14 -15 14c0 0 -1 0 -9 -2c-7 -1 -14 -2 -21 -2 c-40 0 -65 19 -65 51c0 34 27 57 65 57c50 0 88 -39 88 -89'], + 0xE180: [683,281,376,43,331,'331 0h-286v15c77 5 94 18 94 72v477c0 47 -13 61 -51 61c-10 0 -24 -1 -38 -2h-7v16c83 17 129 27 192 44l5 -2v-597c0 -55 14 -65 91 -69v-15zM274 -127c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -10 -2c-7 -1 -15 -2 -23 -2 c-43 0 -71 19 -71 51c0 34 29 57 71 57c55 0 97 -39 97 -89'], + 0xE181: [683,0,386,32,431,'431 621c0 -23 -21 -41 -46 -41c-19 0 -32 10 -49 36c-20 29 -36 39 -59 39c-41 0 -61 -31 -61 -89v-462c0 -75 12 -86 102 -89v-15h-286v15c79 4 91 16 91 89v314h-57v32h57c1 80 10 116 39 160c28 46 87 73 155 73c66 0 114 -26 114 -62'], + 0xE182: [683,0,443,44,483,'483 621c0 -23 -23 -41 -50 -41c-21 0 -35 10 -55 36c-22 29 -39 39 -64 39c-46 0 -68 -31 -68 -89v-462c0 -75 14 -86 113 -89v-15h-315v15c87 4 101 16 101 89v314h-63v32h63c1 80 11 116 42 160c31 46 96 73 171 73c72 0 125 -26 125 -62'], + 0xE183: [662,0,692,23,668,'668 174l-53 -174h-592v19c81 5 96 19 96 90v145l-68 -57v51l68 57v248c0 71 -14 84 -96 90v19h310v-19c-86 -5 -102 -19 -102 -90v-174l138 115v-51l-138 -115v-248c0 -35 14 -41 95 -41h73c95 0 156 19 194 61c15 16 30 39 47 74h28'], + 0xE184: [662,0,779,35,744,'744 174l-58 -174h-651v19c88 5 105 19 105 90v145l-75 -57v51l75 57v248c0 71 -16 84 -105 90v19h341v-19c-96 -5 -113 -19 -113 -90v-174l151 115v-51l-151 -115v-248c0 -35 16 -41 104 -41h81c104 0 171 19 213 61c17 16 33 39 52 74h31'], + 0xE185: [683,0,326,27,300,'300 486l-90 -77v-325c0 -55 12 -65 83 -69v-15h-260v15c69 5 85 18 85 72v253l-91 -78v46l91 78v178c0 47 -11 61 -46 61c-9 0 -22 -1 -34 -2h-7v16c76 17 118 27 175 44l4 -2v-226l90 77v-46'], + 0xE186: [683,0,376,38,339,'339 486l-99 -77v-325c0 -55 14 -65 91 -69v-15h-286v15c77 5 94 18 94 72v253l-101 -78v46l101 78v178c0 47 -13 61 -51 61c-10 0 -24 -1 -38 -2h-7v16c83 17 129 27 192 44l5 -2v-226l99 77v-46'], + 0xE187: [662,0,998,23,959,'959 0h-308v19c87 5 100 18 100 101v453l-281 -573h-16l-276 550v-403c0 -101 19 -124 104 -128v-19h-259v19c92 6 107 25 107 128v406c0 73 -14 85 -105 90v19h218l254 -505l243 505h219v-19c-81 -6 -95 -19 -95 -90v-444c0 -71 15 -85 95 -90v-19'], + 0xE188: [662,0,1116,35,1064,'1064 0h-339v19c96 5 111 18 111 101v453l-310 -573h-17l-304 550v-403c0 -101 21 -124 114 -128v-19h-284v19c100 6 117 25 117 128v406c0 73 -16 85 -115 90v19h240l279 -505l267 505h241v-19c-89 -6 -105 -19 -105 -90v-444c0 -71 17 -85 105 -90v-19'], + 0xE189: [460,0,876,28,863,'863 0h-241v15c63 7 72 15 72 72v211c0 83 -20 110 -82 110c-51 0 -87 -18 -120 -61v-252c0 -62 16 -79 79 -80v-15h-246v15c62 4 74 15 74 71v217c0 70 -24 105 -72 105c-39 0 -86 -17 -113 -40c-8 -7 -17 -19 -17 -19v-282c0 -39 17 -50 75 -52v-15h-244v15 c61 1 77 16 77 70v253c0 48 -10 64 -39 64c-12 0 -21 -1 -35 -4v17c60 15 98 26 154 45l8 -2v-75c91 63 122 77 170 77c60 0 97 -27 117 -84c59 58 115 84 179 84c85 0 128 -60 128 -178v-206c0 -39 14 -57 47 -59l29 -2v-15'], + 0xE18A: [460,0,981,39,958,'958 0h-265v15c70 7 80 15 80 72v211c0 83 -22 110 -91 110c-56 0 -96 -18 -132 -61v-252c0 -62 18 -79 87 -80v-15h-271v15c69 4 82 15 82 71v217c0 70 -26 105 -80 105c-42 0 -94 -17 -124 -40c-9 -7 -18 -19 -18 -19v-282c0 -39 18 -50 82 -52v-15h-269v15 c68 1 85 16 85 70v253c0 48 -11 64 -42 64c-14 0 -23 -1 -39 -4v17c67 15 108 26 169 45l9 -2v-75c100 63 134 77 187 77c66 0 107 -27 129 -84c65 58 127 84 197 84c93 0 140 -60 140 -178v-206c0 -39 16 -57 52 -59l32 -2v-15'], + 0xE18B: [617,-563,386,22,364,'364 563h-342v54h342v-54'], + 0xE18C: [617,-563,443,33,410,'410 563h-377v54h377v-54'], + 0xE18D: [450,250,669,98,615,'615 113c0 -62 -22 -127 -81 -127c-51 0 -96 22 -121 57c-28 -34 -67 -57 -116 -57c-50 0 -100 14 -135 39c6 -93 21 -185 44 -275h-108c10 121 15 242 15 363v337h93v-337c0 -52 37 -99 91 -99c44 0 78 24 99 58c-5 12 -8 26 -8 41v337h93v-337c0 -47 9 -99 53 -99 s50 52 50 99h31'], + 0xE18E: [450,250,754,117,686,'686 113c0 -62 -25 -127 -90 -127c-56 0 -105 22 -133 57c-30 -34 -74 -57 -127 -57c-56 0 -110 14 -149 39c7 -93 23 -185 48 -275h-118c11 121 17 242 17 363v337h101v-337c0 -52 42 -99 101 -99c48 0 86 24 109 58c-6 12 -9 26 -9 41v337h102v-337 c0 -47 10 -99 58 -99s56 52 56 99h34'], + 0xE18F: [662,11,814,23,788,'788 643c-42 -4 -57 -8 -73 -18c-21 -13 -32 -50 -32 -110v-526h-18l-487 550v-392c0 -101 19 -124 104 -128v-19h-259v19c92 6 107 25 107 128v441c-44 47 -59 55 -107 55v19h188l424 -484v337c0 62 -10 98 -32 112c-17 9 -32 13 -74 16v19h259v-19'], + 0xE190: [662,11,914,35,875,'875 643c-46 -4 -62 -8 -79 -18c-23 -13 -35 -50 -35 -110v-526h-21l-535 550v-392c0 -101 21 -124 114 -128v-19h-284v19c100 6 117 25 117 128v441c-49 47 -65 55 -117 55v19h206l466 -484v337c0 62 -11 98 -35 112c-18 9 -35 13 -81 16v19h284v-19'], + 0xE191: [460,0,570,28,544,'544 0h-229v15c55 4 69 21 69 84v209c0 66 -26 97 -80 97c-37 0 -61 -12 -114 -57v-281c0 -36 17 -48 73 -52v-15h-233v15c56 4 68 18 68 75v248c0 49 -10 64 -41 64c-12 0 -23 -1 -29 -4v17c60 16 98 27 151 45l8 -2v-79c75 64 109 81 160 81c81 0 129 -56 129 -150 v-229c0 -49 14 -61 68 -66v-15'], + 0xE192: [460,0,645,39,607,'607 0h-252v15c61 4 76 21 76 84v209c0 66 -29 97 -88 97c-40 0 -66 -12 -125 -57v-281c0 -36 19 -48 80 -52v-15h-256v15c61 4 75 18 75 75v248c0 49 -11 64 -45 64c-13 0 -25 -1 -33 -4v17c67 16 108 27 167 45l9 -2v-79c82 64 120 81 175 81c90 0 143 -56 143 -150 v-229c0 -49 15 -61 74 -66v-15'], + 0xE193: [851,11,814,23,788,'788 643c-42 -4 -57 -8 -73 -18c-21 -13 -32 -50 -32 -110v-526h-18l-487 550v-392c0 -101 19 -124 104 -128v-19h-259v19c92 6 107 25 107 128v441c-44 47 -59 55 -107 55v19h188l424 -484v337c0 62 -10 98 -32 112c-17 9 -32 13 -74 16v19h259v-19zM577 825 c0 -13 -11 -24 -36 -33l-183 -80h-48l174 120c22 15 33 19 51 19c26 0 42 -10 42 -26'], + 0xE194: [851,11,914,35,875,'875 643c-46 -4 -62 -8 -79 -18c-23 -13 -35 -50 -35 -110v-526h-21l-535 550v-392c0 -101 21 -124 114 -128v-19h-284v19c100 6 117 25 117 128v441c-49 47 -65 55 -117 55v19h206l466 -484v337c0 62 -11 98 -35 112c-18 9 -35 13 -81 16v19h284v-19zM643 825 c0 -13 -12 -24 -39 -33l-202 -80h-52l192 120c24 15 36 19 55 19c29 0 46 -10 46 -26'], + 0xE195: [675,0,570,28,544,'544 0h-229v15c55 4 69 21 69 84v209c0 66 -26 97 -80 97c-37 0 -61 -12 -114 -57v-281c0 -36 17 -48 73 -52v-15h-233v15c56 4 68 18 68 75v248c0 49 -10 64 -41 64c-12 0 -23 -1 -29 -4v17c60 16 98 27 151 45l8 -2v-79c75 64 109 81 160 81c81 0 129 -56 129 -150 v-229c0 -49 14 -61 68 -66v-15zM453 643c0 -16 -10 -29 -33 -42l-169 -97h-44l162 148c19 18 29 23 46 23c24 0 38 -12 38 -32'], + 0xE196: [675,0,645,39,607,'607 0h-252v15c61 4 76 21 76 84v209c0 66 -29 97 -88 97c-40 0 -66 -12 -125 -57v-281c0 -36 19 -48 80 -52v-15h-256v15c61 4 75 18 75 75v248c0 49 -11 64 -45 64c-13 0 -25 -1 -33 -4v17c67 16 108 27 167 45l9 -2v-79c82 64 120 81 175 81c90 0 143 -56 143 -150 v-229c0 -49 15 -61 74 -66v-15zM508 643c0 -16 -11 -29 -37 -42l-186 -97h-48l177 148c22 18 33 23 51 23c27 0 43 -12 43 -32'], + 0xE197: [847,11,814,23,788,'788 643c-42 -4 -57 -8 -73 -18c-21 -13 -32 -50 -32 -110v-526h-18l-487 550v-392c0 -101 19 -124 104 -128v-19h-259v19c92 6 107 25 107 128v441c-44 47 -59 55 -107 55v19h188l424 -484v337c0 62 -10 98 -32 112c-17 9 -32 13 -74 16v19h259v-19zM596 847l-147 -129 h-85l-148 129h53l137 -79l138 79h52'], + 0xE198: [847,11,914,35,875,'875 643c-46 -4 -62 -8 -79 -18c-23 -13 -35 -50 -35 -110v-526h-21l-535 550v-392c0 -101 21 -124 114 -128v-19h-284v19c100 6 117 25 117 128v441c-49 47 -65 55 -117 55v19h206l466 -484v337c0 62 -11 98 -35 112c-18 9 -35 13 -81 16v19h284v-19zM665 847l-162 -129 h-93l-164 129h58l152 -79l151 79h58'], + 0xE199: [674,0,570,28,544,'544 0h-229v15c55 4 69 21 69 84v209c0 66 -26 97 -80 97c-37 0 -61 -12 -114 -57v-281c0 -36 17 -48 73 -52v-15h-233v15c56 4 68 18 68 75v248c0 49 -10 64 -41 64c-12 0 -23 -1 -29 -4v17c60 16 98 27 151 45l8 -2v-79c75 64 109 81 160 81c81 0 129 -56 129 -150 v-229c0 -49 14 -61 68 -66v-15zM459 674l-138 -167h-68l-136 167h37l133 -103l134 103h38'], + 0xE19A: [674,0,645,39,607,'607 0h-252v15c61 4 76 21 76 84v209c0 66 -29 97 -88 97c-40 0 -66 -12 -125 -57v-281c0 -36 19 -48 80 -52v-15h-256v15c61 4 75 18 75 75v248c0 49 -11 64 -45 64c-13 0 -25 -1 -33 -4v17c67 16 108 27 167 45l9 -2v-79c82 64 120 81 175 81c90 0 143 -56 143 -150 v-229c0 -49 15 -61 74 -66v-15zM514 674l-152 -167h-75l-150 167h42l146 -103l148 103h41'], + 0xE19B: [662,281,814,23,788,'788 643c-42 -4 -57 -8 -73 -18c-21 -13 -32 -50 -32 -110v-526h-18l-487 550v-392c0 -101 19 -124 104 -128v-19h-259v19c92 6 107 25 107 128v441c-44 47 -59 55 -107 55v19h188l424 -484v337c0 62 -10 98 -32 112c-17 9 -32 13 -74 16v19h259v-19zM483 -127 c0 -60 -49 -121 -123 -154l-10 19c59 37 90 74 90 106c0 8 -6 14 -15 14c0 0 -1 0 -9 -2c-7 -1 -14 -2 -21 -2c-40 0 -65 19 -65 51c0 34 27 57 65 57c50 0 88 -39 88 -89'], + 0xE19C: [662,281,914,35,875,'875 643c-46 -4 -62 -8 -79 -18c-23 -13 -35 -50 -35 -110v-526h-21l-535 550v-392c0 -101 21 -124 114 -128v-19h-284v19c100 6 117 25 117 128v441c-49 47 -65 55 -117 55v19h206l466 -484v337c0 62 -11 98 -35 112c-18 9 -35 13 -81 16v19h284v-19zM540 -127 c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -10 -2c-7 -1 -15 -2 -22 -2c-44 0 -72 19 -72 51c0 34 29 57 72 57c54 0 96 -39 96 -89'], + 0xE19D: [460,281,570,28,544,'544 0h-229v15c55 4 69 21 69 84v209c0 66 -26 97 -80 97c-37 0 -61 -12 -114 -57v-281c0 -36 17 -48 73 -52v-15h-233v15c56 4 68 18 68 75v248c0 49 -10 64 -41 64c-12 0 -23 -1 -29 -4v17c60 16 98 27 151 45l8 -2v-79c75 64 109 81 160 81c81 0 129 -56 129 -150 v-229c0 -49 14 -61 68 -66v-15zM364 -127c0 -60 -49 -121 -123 -154l-10 19c60 37 90 74 90 106c0 8 -6 14 -15 14c0 0 -1 0 -9 -2c-6 -1 -14 -2 -21 -2c-39 0 -65 19 -65 51c0 34 27 57 65 57c50 0 88 -39 88 -89'], + 0xE19E: [460,281,645,39,607,'607 0h-252v15c61 4 76 21 76 84v209c0 66 -29 97 -88 97c-40 0 -66 -12 -125 -57v-281c0 -36 19 -48 80 -52v-15h-256v15c61 4 75 18 75 75v248c0 49 -11 64 -45 64c-13 0 -25 -1 -33 -4v17c67 16 108 27 167 45l9 -2v-79c82 64 120 81 175 81c90 0 143 -56 143 -150 v-229c0 -49 15 -61 74 -66v-15zM410 -127c0 -60 -55 -121 -136 -154l-11 19c66 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -9 -2c-7 -1 -16 -2 -23 -2c-44 0 -72 19 -72 51c0 34 29 57 72 57c54 0 97 -39 97 -89'], + 0xE19F: [676,22,570,43,515,'515 394c0 -135 -67 -259 -182 -335c-74 -49 -135 -68 -258 -81l-3 20c167 26 289 133 334 296c-58 -41 -104 -57 -165 -57c-119 0 -198 81 -198 203c0 135 98 236 229 236c142 0 243 -117 243 -282zM408 355v39c0 168 -49 254 -145 254c-32 0 -59 -11 -78 -31 c-23 -26 -41 -86 -41 -143c0 -119 53 -194 137 -194c39 0 80 13 111 37c12 9 16 18 16 38'], + 0xE1A0: [676,22,645,56,575,'575 394c0 -135 -73 -259 -199 -335c-83 -49 -149 -68 -285 -81l-3 20c184 26 318 133 368 296c-65 -41 -115 -57 -182 -57c-131 0 -218 81 -218 203c0 135 108 236 252 236c156 0 267 -117 267 -282zM458 355v39c0 168 -54 254 -160 254c-35 0 -65 -11 -86 -31 c-25 -26 -44 -86 -44 -143c0 -119 58 -194 150 -194c43 0 88 13 122 37c13 9 18 18 18 38'], + 0xE1A1: [835,11,814,23,788,'788 643c-42 -4 -57 -8 -73 -18c-21 -13 -32 -50 -32 -110v-526h-18l-487 550v-392c0 -101 19 -124 104 -128v-19h-259v19c92 6 107 25 107 128v441c-44 47 -59 55 -107 55v19h188l424 -484v337c0 62 -10 98 -32 112c-17 9 -32 13 -74 16v19h259v-19zM588 835 c-24 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -57 -46h-31c16 65 56 101 111 101c24 0 51 -6 77 -18l26 -12c21 -9 42 -15 58 -15c26 0 40 12 59 50h32'], + 0xE1A2: [835,11,914,35,875,'875 643c-46 -4 -62 -8 -79 -18c-23 -13 -35 -50 -35 -110v-526h-21l-535 550v-392c0 -101 21 -124 114 -128v-19h-284v19c100 6 117 25 117 128v441c-49 47 -65 55 -117 55v19h206l466 -484v337c0 62 -11 98 -35 112c-18 9 -35 13 -81 16v19h284v-19zM655 835 c-25 -76 -60 -106 -127 -106c-30 0 -48 4 -98 24l-28 11c-18 7 -35 11 -49 11c-28 0 -49 -15 -62 -46h-35c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h35'], + 0xE1A3: [643,0,570,28,544,'544 0h-229v15c55 4 69 21 69 84v209c0 66 -26 97 -80 97c-37 0 -61 -12 -114 -57v-281c0 -36 17 -48 73 -52v-15h-233v15c56 4 68 18 68 75v248c0 49 -10 64 -41 64c-12 0 -23 -1 -29 -4v17c60 16 98 27 151 45l8 -2v-79c75 64 109 81 160 81c81 0 129 -56 129 -150 v-229c0 -49 14 -61 68 -66v-15zM469 643c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32'], + 0xE1A4: [643,0,645,39,607,'607 0h-252v15c61 4 76 21 76 84v209c0 66 -29 97 -88 97c-40 0 -66 -12 -125 -57v-281c0 -36 19 -48 80 -52v-15h-256v15c61 4 75 18 75 75v248c0 49 -11 64 -45 64c-13 0 -25 -1 -33 -4v17c67 16 108 27 167 45l9 -2v-79c82 64 120 81 175 81c90 0 143 -56 143 -150 v-229c0 -49 15 -61 74 -66v-15zM525 643c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h36'], + 0xE1A5: [662,0,570,16,556,'556 405h-116l-22 -134h110v-55h-120l-34 -216h-64l34 216h-147l-36 -216h-64l36 216h-117v55h127l23 134h-121v55h130l34 202h64l-34 -202h146l33 202h64l-33 -202h107v-55zM376 405h-146l-23 -134h147'], + 0xE1A6: [662,0,645,26,620,'620 405h-127l-24 -134h121v-55h-132l-37 -216h-71l38 216h-162l-40 -216h-70l40 216h-130v55h140l26 134h-133v55h143l37 202h70l-37 -202h161l36 202h70l-36 -202h117v-55zM423 405h-161l-25 -134h162'], + 0xE1A7: [676,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180'], + 0xE1A8: [676,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180'], + 0xE1A9: [460,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181'], + 0xE1AA: [460,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181'], + 0xE1AB: [851,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM578 825c0 -13 -11 -24 -36 -33l-183 -80h-48l174 120c22 15 33 19 51 19c26 0 42 -10 42 -26'], + 0xE1AC: [851,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM644 825c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120c24 15 36 19 55 19c29 0 46 -10 46 -26'], + 0xE1AD: [675,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM451 643 c0 -16 -10 -29 -33 -42l-169 -97h-44l161 148c20 18 30 23 47 23c24 0 38 -12 38 -32'], + 0xE1AE: [675,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM505 643 c0 -16 -11 -29 -36 -42l-186 -97h-49l178 148c22 18 33 23 51 23c26 0 42 -12 42 -32'], + 0xE1AF: [847,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM599 718h-53l-138 79l-137 -79h-53l147 129h85'], + 0xE1B0: [847,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM667 718h-58l-151 79l-151 -79h-58l162 129h93'], + 0xE1B1: [674,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM457 507h-38l-134 103 l-133 -103h-37l136 167h68'], + 0xE1B2: [674,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM511 507h-41l-147 103 l-147 -103h-41l150 167h75'], + 0xE1B3: [1006,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM556 980c0 -13 -11 -24 -36 -33l-183 -80h-48l174 120c22 15 33 19 51 19c26 0 42 -10 42 -26zM599 718h-53l-138 79l-137 -79h-53 l147 129h85'], + 0xE1B4: [1006,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM620 980c0 -13 -12 -24 -39 -33l-202 -80h-52l192 120c24 15 36 19 55 19c29 0 46 -10 46 -26zM667 718h-58l-151 79l-151 -79h-58 l162 129h93'], + 0xE1B5: [794,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM434 768 c0 -13 -11 -24 -36 -33l-183 -80h-48l174 120c22 15 33 19 51 19c26 0 42 -10 42 -26zM476 506h-52l-138 79l-137 -79h-53l147 129h85'], + 0xE1B6: [794,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM486 768 c0 -13 -12 -24 -39 -33l-202 -80h-52l191 120c24 15 37 19 56 19c29 0 46 -10 46 -26zM533 506h-58l-151 79l-152 -79h-58l163 129h93'], + 0xE1B7: [847,191,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM599 718h-53l-138 79l-137 -79h-53l147 129h85zM463 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51 c32 0 56 -23 56 -51'], + 0xE1B8: [847,191,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM667 718h-58l-151 79l-151 -79h-58l162 129h93zM519 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51 c35 0 62 -23 62 -51'], + 0xE1B9: [674,191,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM457 507h-38l-134 103 l-133 -103h-37l136 167h68zM341 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE1BA: [674,191,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM511 507h-41l-147 103 l-147 -103h-41l150 167h75zM384 -140c0 -29 -26 -51 -61 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 61 -23 61 -51'], + 0xE1BB: [1006,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM526 867h-47l-184 80c-24 9 -35 20 -35 33c0 16 15 26 42 26c17 0 28 -4 50 -19zM599 718h-53l-138 79l-137 -79h-53l147 129h85'], + 0xE1BC: [1006,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM587 867h-52l-202 80c-26 9 -38 20 -38 33c0 16 17 26 46 26c19 0 31 -4 55 -19zM667 718h-58l-151 79l-151 -79h-58l162 129h93'], + 0xE1BD: [794,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM404 655h-47l-184 80 c-24 9 -35 20 -35 33c0 16 15 26 41 26c18 0 29 -4 51 -19zM476 506h-52l-138 79l-137 -79h-53l147 129h85'], + 0xE1BE: [794,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM453 655h-52l-202 80 c-27 9 -39 20 -39 33c0 16 17 26 46 26c20 0 32 -4 56 -19zM533 506h-58l-151 79l-152 -79h-58l163 129h93'], + 0xE1BF: [1020,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM599 972c0 -16 -19 -32 -51 -49c-28 -14 -46 -25 -50 -32c-5 -6 -9 -14 -12 -24h-27c1 21 15 42 39 63c20 17 28 29 28 39 c0 23 -20 34 -61 34c-18 0 -33 -2 -42 -8c-4 -2 -7 -3 -7 -6c0 -4 20 -17 20 -23c0 -11 -10 -17 -33 -17c-27 0 -41 8 -41 26c0 26 47 45 117 45c43 0 74 -7 95 -18c17 -10 25 -20 25 -30zM599 718h-53l-138 79l-137 -79h-53l147 129h85'], + 0xE1C0: [1020,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM667 972c0 -16 -20 -32 -55 -49c-31 -14 -51 -25 -55 -32c-6 -6 -11 -14 -13 -24h-30c1 21 17 42 43 63c22 17 30 29 30 39 c0 23 -21 34 -66 34c-21 0 -36 -2 -47 -8c-4 -2 -8 -3 -8 -6c0 -4 22 -17 22 -23c0 -11 -11 -17 -36 -17c-29 0 -45 8 -45 26c0 26 52 45 128 45c48 0 83 -7 106 -18c18 -10 26 -20 26 -30zM667 718h-58l-151 79l-151 -79h-58l162 129h93'], + 0xE1C1: [808,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM476 760 c0 -16 -18 -32 -50 -49c-28 -14 -46 -25 -50 -32c-5 -6 -10 -14 -12 -24h-27c1 21 15 42 39 63c20 17 28 29 28 39c0 23 -20 34 -61 34c-18 0 -33 -2 -43 -8c-3 -2 -6 -3 -6 -6c0 -4 20 -17 20 -23c0 -11 -10 -17 -33 -17c-27 0 -41 8 -41 26c0 26 47 45 117 45 c42 0 74 -7 95 -18c17 -10 24 -20 24 -30zM476 506h-52l-138 79l-137 -79h-53l147 129h85'], + 0xE1C2: [808,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM533 760 c0 -16 -21 -32 -56 -49c-30 -14 -50 -25 -54 -32c-6 -6 -11 -14 -13 -24h-31c2 21 17 42 44 63c22 17 30 29 30 39c0 23 -22 34 -66 34c-21 0 -37 -2 -48 -8c-3 -2 -7 -3 -7 -6c0 -4 22 -17 22 -23c0 -11 -11 -17 -36 -17c-29 0 -45 8 -45 26c0 26 52 45 128 45 c47 0 82 -7 105 -18c19 -10 27 -20 27 -30zM533 506h-58l-151 79l-152 -79h-58l163 129h93'], + 0xE1C3: [983,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM589 983c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -56 -46h-32 c16 65 56 101 111 101c24 0 51 -6 77 -18l26 -12c21 -9 42 -15 58 -15c26 0 40 12 59 50h32zM599 718h-53l-138 79l-137 -79h-53l147 129h85'], + 0xE1C4: [983,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM656 983c-25 -76 -60 -106 -127 -106c-30 0 -48 4 -98 24l-27 11c-19 7 -36 11 -50 11c-28 0 -48 -15 -62 -46h-35 c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h35zM667 718h-58l-151 79l-151 -79h-58l162 129h93'], + 0xE1C5: [771,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM467 771 c-24 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -57 -46h-31c16 65 56 101 111 101c24 0 51 -6 77 -18l26 -12c21 -9 42 -15 58 -15c26 0 40 12 59 50h32zM476 506h-52l-138 79l-137 -79h-53l147 129h85'], + 0xE1C6: [771,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM522 771 c-25 -76 -60 -106 -127 -106c-30 0 -48 4 -98 24l-28 11c-18 7 -35 11 -49 11c-28 0 -49 -15 -62 -46h-35c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 43 12 64 50h35zM533 506h-58l-151 79l-152 -79h-58l163 129h93'], + 0xE1C7: [832,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM353 782c0 -27 -25 -49 -56 -49c-30 0 -53 22 -53 50c0 26 26 49 53 49c31 0 56 -23 56 -50zM572 782c0 -27 -25 -49 -56 -49 c-30 0 -53 22 -53 50c0 26 26 49 53 49c31 0 56 -23 56 -50'], + 0xE1C8: [832,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM398 782c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM638 782c0 -27 -28 -49 -61 -49 s-58 22 -58 50c0 26 27 49 58 49c33 0 61 -23 61 -50'], + 0xE1C9: [640,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM231 590 c0 -27 -25 -49 -56 -49c-30 0 -53 22 -53 50c0 26 26 49 53 49c31 0 56 -23 56 -50zM450 590c0 -27 -25 -49 -56 -49c-30 0 -53 22 -53 50c0 26 25 49 53 49c31 0 56 -23 56 -50'], + 0xE1CA: [640,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM263 590 c0 -27 -28 -49 -61 -49s-59 22 -59 50c0 26 28 49 59 49c33 0 61 -23 61 -50zM504 590c0 -27 -28 -49 -62 -49c-32 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50'], + 0xE1CB: [676,191,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM463 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE1CC: [676,191,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM519 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE1CD: [460,191,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM341 -140 c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE1CE: [460,191,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM384 -140 c0 -29 -26 -51 -61 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 61 -23 61 -51'], + 0xE1CF: [668,6,998,43,984,'984 168l-49 -168h-385l-133 -4l-64 -2c-81 0 -156 27 -211 77c-66 59 -99 143 -99 251c0 115 41 215 111 271c61 49 141 75 232 75c16 0 19 0 72 -3l115 -3h359v-141h-25c-14 89 -41 105 -185 105h-56c-62 0 -72 -3 -72 -24v-236h115c68 0 107 10 124 31 c12 15 17 30 21 67h23v-234h-23c-10 79 -32 99 -108 99h-152v-245c0 -37 13 -47 62 -46l136 2c69 2 109 33 165 128h27zM484 131v396c0 73 -33 105 -109 105c-133 0 -209 -111 -209 -307c0 -190 74 -294 208 -294c78 0 110 29 110 100'], + 0xE1D0: [668,6,1116,56,1091,'1091 168l-53 -168h-424l-146 -4l-70 -2c-90 0 -172 27 -233 77c-72 59 -109 143 -109 251c0 115 45 215 123 271c66 49 154 75 255 75c17 0 20 0 78 -3l128 -3h394v-141h-28c-14 89 -45 105 -203 105h-62c-68 0 -78 -3 -78 -24v-236h125c75 0 119 10 137 31 c13 15 19 30 23 67h25v-234h-25c-11 79 -35 99 -119 99h-166v-245c0 -37 14 -47 67 -46l150 2c77 2 120 33 182 128h29zM542 131v396c0 73 -37 105 -120 105c-147 0 -230 -111 -230 -307c0 -190 81 -294 229 -294c85 0 121 29 121 100'], + 0xE1D1: [460,10,814,43,769,'769 139c-57 -108 -111 -149 -197 -149c-68 0 -108 27 -141 95c-41 -68 -87 -95 -161 -95c-133 0 -227 95 -227 228c0 76 32 150 83 194c37 31 84 48 139 48c68 0 112 -20 167 -76c46 56 84 76 143 76c55 0 108 -23 139 -62c25 -31 34 -60 37 -121h-279 c4 -87 14 -124 43 -170c20 -30 58 -50 99 -50c53 0 91 24 143 88zM387 199c0 149 -45 232 -125 232c-32 0 -58 -11 -83 -33c-22 -21 -37 -75 -37 -127c0 -169 45 -255 132 -255c75 0 113 63 113 183zM647 307v27c0 56 -36 97 -87 97c-58 0 -88 -41 -89 -124h176'], + 0xE1D2: [460,10,914,56,855,'855 139c-63 -108 -122 -149 -217 -149c-75 0 -118 27 -155 95c-46 -68 -95 -95 -177 -95c-147 0 -250 95 -250 228c0 76 35 150 91 194c41 31 93 48 154 48c75 0 123 -20 184 -76c49 56 92 76 157 76c60 0 119 -23 152 -62c28 -31 38 -60 42 -121h-308 c5 -87 16 -124 47 -170c22 -30 65 -50 109 -50c58 0 101 24 158 88zM435 199c0 149 -50 232 -138 232c-35 0 -64 -11 -91 -33c-24 -21 -41 -75 -41 -127c0 -169 50 -255 145 -255c83 0 125 63 125 183zM721 307v27c0 56 -40 97 -96 97c-64 0 -97 -41 -98 -124h194'], + 0xE1D3: [17,245,386,99,297,'297 -164c-20 -39 -50 -81 -113 -81c-47 0 -85 38 -85 86c0 40 16 75 40 104c22 28 54 52 84 72h32c-49 -41 -89 -85 -89 -149c0 -36 18 -61 51 -61c28 0 46 23 59 43'], + 0xE1D4: [17,245,443,118,336,'336 -164c-22 -39 -56 -81 -125 -81c-52 0 -93 38 -93 86c0 40 17 75 44 104c24 28 59 52 93 72h35c-55 -41 -98 -85 -98 -149c0 -36 19 -61 55 -61c32 0 51 23 66 43'], + 0xE1D5: [851,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM504 712h-47l-184 80c-24 9 -35 20 -35 33c0 16 15 26 42 26c17 0 28 -4 50 -19'], + 0xE1D6: [851,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM563 712h-52l-202 80c-26 9 -39 20 -39 33c0 16 17 26 46 26c20 0 32 -4 56 -19'], + 0xE1D7: [675,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM366 504h-44l-169 97 c-23 13 -33 26 -33 42c0 20 14 32 39 32c16 0 26 -5 46 -23'], + 0xE1D8: [675,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM412 504h-48l-187 97 c-25 13 -36 26 -36 42c0 20 16 32 42 32c19 0 29 -5 51 -23'], + 0xE1D9: [896,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM516 838c0 -20 -16 -38 -46 -59c-25 -18 -42 -31 -46 -40c-5 -7 -8 -16 -11 -30h-26c1 27 16 52 37 79c18 19 25 35 25 47 c0 27 -18 42 -55 42c-18 0 -31 -4 -39 -10c-4 -2 -6 -5 -6 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -38 10 -38 32c0 30 44 53 107 53c40 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE1DA: [896,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM577 838c0 -20 -19 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -9 -16 -12 -30h-28c1 27 17 52 40 79c21 19 28 35 28 47 c0 27 -20 42 -61 42c-19 0 -34 -4 -42 -10c-5 -2 -7 -5 -7 -8c0 -4 20 -21 20 -29c0 -13 -11 -19 -34 -19c-26 0 -41 10 -41 32c0 30 49 53 118 53c43 0 75 -7 96 -22c16 -12 25 -24 25 -36'], + 0xE1DB: [684,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM394 626 c0 -20 -17 -38 -46 -59c-26 -18 -42 -31 -46 -40c-5 -7 -8 -16 -11 -30h-26c1 27 16 52 37 79c18 19 25 35 25 47c0 27 -18 42 -55 42c-18 0 -31 -4 -39 -10c-4 -2 -6 -5 -6 -8c0 -4 18 -21 18 -29c0 -13 -9 -19 -30 -19c-25 0 -38 10 -38 32c0 30 44 53 107 53 c40 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE1DC: [684,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM442 626 c0 -20 -18 -38 -51 -59c-27 -18 -46 -31 -50 -40c-5 -7 -9 -16 -12 -30h-28c1 27 17 52 40 79c20 19 27 35 27 47c0 27 -19 42 -60 42c-19 0 -34 -4 -42 -10c-5 -2 -8 -5 -8 -8c0 -4 21 -21 21 -29c0 -13 -11 -19 -34 -19c-27 0 -41 10 -41 32c0 30 48 53 117 53 c44 0 75 -7 97 -22c16 -12 24 -24 24 -36'], + 0xE1DD: [771,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c69 0 133 -15 188 -46c19 3 43 21 43 31c0 18 -47 27 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66c0 -41 -38 -76 -89 -90c19 -13 37 -28 53 -44 c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180'], + 0xE1DE: [771,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c76 0 146 -15 207 -46c20 3 47 21 47 31c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 72 -33 72 -66c0 -41 -42 -76 -98 -90c21 -13 41 -28 59 -44 c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180'], + 0xE1DF: [559,10,570,42,530,'530 493c0 -39 -34 -73 -81 -88c48 -41 78 -101 78 -171c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c53 0 101 -14 140 -38v2c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM428 199 c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181'], + 0xE1E0: [559,10,645,55,592,'592 493c0 -39 -37 -73 -89 -88c53 -41 86 -101 86 -171c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c58 0 111 -14 153 -38v2c16 5 38 14 38 25c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM480 199 c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181'], + 0xE1E1: [851,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c69 0 133 -15 188 -46c19 3 43 21 43 31c0 18 -47 27 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66c0 -41 -38 -76 -89 -90c19 -13 37 -28 53 -44 c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM547 825 c0 -13 -11 -24 -35 -33l-184 -80h-47l173 120c22 15 33 19 51 19c26 0 42 -10 42 -26'], + 0xE1E2: [851,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c76 0 146 -15 207 -46c20 3 47 21 47 31c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 72 -33 72 -66c0 -41 -42 -76 -98 -90c21 -13 41 -28 59 -44 c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM610 825 c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 45 -10 45 -26'], + 0xE1E3: [675,10,570,42,530,'530 493c0 -39 -34 -73 -81 -88c48 -41 78 -101 78 -171c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c53 0 101 -14 140 -38v2c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM428 199 c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM420 643c0 -16 -10 -29 -33 -42l-169 -97h-44l162 148c19 18 29 23 46 23c24 0 38 -12 38 -32'], + 0xE1E4: [675,10,645,55,592,'592 493c0 -39 -37 -73 -89 -88c53 -41 86 -101 86 -171c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c58 0 111 -14 153 -38v2c16 5 38 14 38 25c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM480 199 c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM471 643c0 -16 -11 -29 -36 -42l-186 -97h-49l178 148c22 18 33 23 51 23c27 0 42 -12 42 -32'], + 0xE1E5: [771,191,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c69 0 133 -15 188 -46c19 3 43 21 43 31c0 18 -47 27 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66c0 -41 -38 -76 -89 -90c19 -13 37 -28 53 -44 c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM432 -140 c0 -29 -24 -51 -56 -51c-30 0 -56 22 -56 51c0 28 26 51 56 51c32 0 56 -23 56 -51'], + 0xE1E6: [771,191,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c76 0 146 -15 207 -46c20 3 47 21 47 31c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 72 -33 72 -66c0 -41 -42 -76 -98 -90c21 -13 41 -28 59 -44 c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM485 -140 c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE1E7: [559,191,570,42,530,'530 493c0 -39 -34 -73 -81 -88c48 -41 78 -101 78 -171c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c53 0 101 -14 140 -38v2c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM428 199 c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM310 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE1E8: [559,191,645,55,592,'592 493c0 -39 -37 -73 -89 -88c53 -41 86 -101 86 -171c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c58 0 111 -14 153 -38v2c16 5 38 14 38 25c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM480 199 c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM350 -140c0 -29 -26 -51 -61 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 61 -23 61 -51'], + 0xE1E9: [851,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c69 0 133 -15 188 -46c19 3 43 21 43 31c0 18 -47 27 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66c0 -41 -38 -76 -89 -90c19 -13 37 -28 53 -44 c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM473 712h-47l-184 80 c-24 9 -35 20 -35 33c0 16 15 26 42 26c17 0 28 -4 50 -19'], + 0xE1EA: [851,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c76 0 146 -15 207 -46c20 3 47 21 47 31c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 72 -33 72 -66c0 -41 -42 -76 -98 -90c21 -13 41 -28 59 -44 c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM529 712h-52l-202 80 c-26 9 -38 20 -38 33c0 16 17 26 46 26c19 0 31 -4 55 -19'], + 0xE1EB: [675,10,570,42,530,'530 493c0 -39 -34 -73 -81 -88c48 -41 78 -101 78 -171c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c53 0 101 -14 140 -38v2c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM428 199 c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM336 504h-44l-170 97c-23 13 -33 26 -33 42c0 20 15 32 39 32c16 0 26 -5 46 -23'], + 0xE1EC: [675,10,645,55,592,'592 493c0 -39 -37 -73 -89 -88c53 -41 86 -101 86 -171c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c58 0 111 -14 153 -38v2c16 5 38 14 38 25c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM480 199 c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM378 504h-48l-187 97c-25 13 -36 26 -36 42c0 20 16 32 42 32c19 0 30 -5 51 -23'], + 0xE1ED: [896,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c69 0 133 -15 188 -46c19 3 43 21 43 31c0 18 -47 27 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66c0 -41 -38 -76 -89 -90c19 -13 37 -28 53 -44 c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM485 838 c0 -20 -16 -38 -46 -59c-25 -18 -42 -31 -46 -40c-5 -7 -8 -16 -11 -30h-25c1 27 15 52 36 79c19 19 25 35 25 47c0 27 -17 42 -55 42c-17 0 -31 -4 -38 -10c-5 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 106 53 c40 0 68 -7 88 -22c15 -12 22 -24 22 -36'], + 0xE1EE: [896,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c76 0 146 -15 207 -46c20 3 47 21 47 31c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 72 -33 72 -66c0 -41 -42 -76 -98 -90c21 -13 41 -28 59 -44 c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM543 838 c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -8 -16 -12 -30h-28c1 27 17 52 40 79c21 19 28 35 28 47c0 27 -19 42 -61 42c-19 0 -33 -4 -42 -10c-5 -2 -7 -5 -7 -8c0 -4 20 -21 20 -29c0 -13 -11 -19 -34 -19c-26 0 -41 10 -41 32c0 30 49 53 118 53 c43 0 75 -7 97 -22c15 -12 24 -24 24 -36'], + 0xE1EF: [684,10,570,42,530,'530 493c0 -39 -34 -73 -81 -88c48 -41 78 -101 78 -171c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c53 0 101 -14 140 -38v2c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM428 199 c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM363 626c0 -20 -16 -38 -46 -59c-25 -18 -42 -31 -46 -40c-5 -7 -8 -16 -11 -30h-26c2 27 16 52 37 79c18 19 25 35 25 47c0 27 -18 42 -55 42 c-18 0 -31 -4 -38 -10c-5 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -38 10 -38 32c0 30 44 53 107 53c40 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE1F0: [684,10,645,55,592,'592 493c0 -39 -37 -73 -89 -88c53 -41 86 -101 86 -171c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c58 0 111 -14 153 -38v2c16 5 38 14 38 25c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM480 199 c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM408 626c0 -20 -18 -38 -50 -59c-28 -18 -46 -31 -51 -40c-5 -7 -9 -16 -12 -30h-28c1 27 17 52 40 79c20 19 28 35 28 47c0 27 -20 42 -61 42 c-19 0 -34 -4 -42 -10c-5 -2 -8 -5 -8 -8c0 -4 21 -21 21 -29c0 -13 -11 -19 -34 -19c-26 0 -41 10 -41 32c0 30 48 53 117 53c44 0 75 -7 97 -22c16 -12 24 -24 24 -36'], + 0xE1F1: [835,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c69 0 133 -15 188 -46c19 3 43 21 43 31c0 18 -47 27 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66c0 -41 -38 -76 -89 -90c19 -13 37 -28 53 -44 c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM558 835 c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32'], + 0xE1F2: [835,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c76 0 146 -15 207 -46c20 3 47 21 47 31c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 72 -33 72 -66c0 -41 -42 -76 -98 -90c21 -13 41 -28 59 -44 c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM623 835 c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h36'], + 0xE1F3: [643,10,570,42,530,'530 493c0 -39 -34 -73 -81 -88c48 -41 78 -101 78 -171c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c53 0 101 -14 140 -38v2c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM428 199 c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM436 643c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -56 -46h-32c16 65 56 101 111 101 c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32'], + 0xE1F4: [643,10,645,55,592,'592 493c0 -39 -37 -73 -89 -88c53 -41 86 -101 86 -171c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c58 0 111 -14 153 -38v2c16 5 38 14 38 25c0 18 -52 27 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM480 199 c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM488 643c-25 -76 -60 -106 -127 -106c-30 0 -48 4 -98 24l-28 11c-18 7 -35 11 -49 11c-28 0 -49 -15 -62 -46h-35c18 65 62 101 122 101 c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h35'], + 0xE1F5: [851,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM743 825c0 -13 -11 -24 -36 -33l-183 -80h-48l174 120c22 15 33 19 51 19c26 0 42 -10 42 -26zM567 825c0 -13 -11 -24 -36 -33 l-183 -80h-48l174 120c22 15 33 19 51 19c26 0 42 -10 42 -26'], + 0xE1F6: [851,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM826 825c0 -13 -12 -24 -39 -33l-202 -80h-52l191 120c24 15 37 19 56 19c29 0 46 -10 46 -26zM632 825c0 -13 -12 -24 -38 -33 l-203 -80h-52l192 120c24 15 36 19 55 19c29 0 46 -10 46 -26'], + 0xE1F7: [676,10,570,42,572,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM572 644 c0 -16 -10 -29 -33 -42l-169 -97h-44l161 148c20 18 30 23 47 23c24 0 38 -12 38 -32zM390 644c0 -16 -10 -29 -33 -42l-170 -97h-44l162 148c20 18 30 23 46 23c24 0 39 -12 39 -32'], + 0xE1F8: [676,10,645,55,638,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM638 644 c0 -16 -11 -29 -36 -42l-186 -97h-49l178 148c22 18 33 23 51 23c27 0 42 -12 42 -32zM437 644c0 -16 -10 -29 -36 -42l-186 -97h-49l178 148c22 18 33 23 51 23c27 0 42 -12 42 -32'], + 0xE1F9: [809,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM579 755h-342v54h342v-54'], + 0xE1FA: [809,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM646 755h-377v54h377v-54'], + 0xE1FB: [617,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM457 563h-342v54h342v-54 '], + 0xE1FC: [617,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM511 563h-376v54h376v-54 '], + 0xE1FD: [676,0,570,132,443,'443 0h-303v15c46 1 61 4 78 13c18 9 26 32 26 65v453c0 32 -10 47 -33 47c-11 0 -29 -4 -49 -11c-5 -2 -17 -6 -30 -11v14l198 91l9 -2v-600c0 -48 18 -58 104 -59v-15'], + 0xE1FE: [676,0,645,154,497,'497 0h-334v15c51 1 68 4 86 13c19 9 29 32 29 65v453c0 32 -11 47 -37 47c-12 0 -32 -4 -54 -11c-5 -2 -18 -6 -33 -11v14l218 91l10 -2v-600c0 -48 19 -58 115 -59v-15'], + 0xE1FF: [824,162,814,47,767,'767 327c0 -192 -137 -328 -338 -340v-149h-44v148c-91 4 -182 42 -243 102c-59 58 -95 149 -95 243c0 194 140 335 338 344v149h44v-149c97 -4 181 -40 245 -104c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180'], + 0xE200: [824,162,914,61,852,'852 327c0 -192 -150 -328 -371 -340v-149h-48v148c-101 4 -201 42 -268 102c-65 58 -104 149 -104 243c0 194 154 335 372 344v149h48v-149c106 -4 198 -40 270 -104c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50 c-67 0 -126 -22 -173 -65c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180'], + 0xE201: [608,162,570,42,527,'527 234c0 -131 -95 -233 -223 -243v-153h-38v152c-129 8 -224 106 -224 236c0 132 91 225 224 233v149h38v-149c131 -8 223 -100 223 -225zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181 '], + 0xE202: [608,162,645,55,589,'589 234c0 -131 -104 -233 -246 -243v-153h-41v152c-143 8 -247 106 -247 236c0 132 101 225 247 233v149h41v-149c144 -8 246 -100 246 -225zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64 c90 0 145 68 145 181'], + 0xE203: [734,80,814,47,767,'767 331c0 -203 -149 -345 -362 -345c-74 0 -124 13 -193 50l-86 -116h-54l104 139c-46 38 -64 58 -83 93c-29 50 -46 115 -46 178c0 203 150 346 361 346c73 0 122 -13 193 -49l79 107h54l-97 -130c45 -38 64 -58 84 -93c29 -50 46 -115 46 -180zM641 330 c0 89 -14 145 -51 210l-339 -452c47 -47 92 -66 156 -66c145 0 234 117 234 308zM562 575c-48 46 -94 65 -155 65c-144 0 -234 -119 -234 -310c0 -88 13 -143 50 -207'], + 0xE204: [734,80,914,61,852,'852 331c0 -203 -163 -345 -398 -345c-81 0 -136 13 -211 50l-96 -116h-59l115 139c-51 38 -70 58 -92 93c-32 50 -50 115 -50 178c0 203 165 346 397 346c80 0 134 -13 212 -49l87 107h59l-106 -130c49 -38 70 -58 92 -93c32 -50 50 -115 50 -180zM715 330 c0 89 -16 145 -57 210l-373 -452c52 -47 102 -66 172 -66c160 0 258 117 258 308zM627 575c-53 46 -104 65 -170 65c-159 0 -258 -119 -258 -310c0 -88 15 -143 56 -207'], + 0xE205: [551,112,570,42,527,'527 234c0 -139 -106 -244 -245 -244c-39 0 -64 5 -103 21l-71 -123h-41l81 140c-38 27 -52 42 -70 69c-23 38 -36 84 -36 130c0 136 100 233 242 233c36 0 63 -5 101 -18l63 109h43l-72 -125c34 -22 49 -34 66 -58c27 -38 42 -86 42 -134zM428 203c0 64 -12 108 -44 163 l-177 -306c27 -30 53 -42 90 -42c83 0 131 69 131 185zM359 396c-30 26 -54 36 -88 36c-78 0 -130 -62 -130 -156c0 -69 13 -127 43 -184'], + 0xE206: [551,112,645,55,589,'589 234c0 -139 -116 -244 -270 -244c-42 0 -70 5 -113 21l-78 -123h-45l88 140c-41 27 -57 42 -76 69c-25 38 -40 84 -40 130c0 136 110 233 266 233c40 0 69 -5 112 -18l69 109h47l-79 -125c38 -22 53 -34 73 -58c29 -38 46 -86 46 -134zM480 203c0 64 -14 108 -49 163 l-194 -306c30 -30 58 -42 99 -42c91 0 144 69 144 185zM404 396c-33 26 -60 36 -97 36c-86 0 -143 -62 -143 -156c0 -69 15 -127 47 -184'], + 0xE207: [835,14,814,47,767,'767 327c0 -201 -150 -341 -366 -341c-97 0 -195 39 -259 102c-59 58 -95 149 -95 243c0 201 150 345 360 345c106 0 198 -36 267 -105c61 -60 93 -145 93 -244zM641 328c0 119 -34 213 -93 262c-40 32 -90 50 -141 50c-60 0 -114 -22 -157 -65 c-46 -47 -77 -144 -77 -246c0 -111 36 -212 93 -258c39 -31 88 -49 139 -49c58 0 108 18 146 53c26 23 44 48 54 73c22 52 36 121 36 180zM589 835c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -56 -46h-32 c16 65 56 101 111 101c24 0 51 -6 77 -18l26 -12c21 -9 42 -15 58 -15c26 0 40 12 59 50h32'], + 0xE208: [835,14,914,61,852,'852 327c0 -201 -164 -341 -402 -341c-107 0 -215 39 -285 102c-65 58 -104 149 -104 243c0 201 165 345 396 345c116 0 218 -36 294 -105c66 -60 101 -145 101 -244zM715 328c0 119 -38 213 -103 262c-44 32 -100 50 -155 50c-67 0 -126 -22 -173 -65 c-51 -47 -85 -144 -85 -246c0 -111 40 -212 103 -258c42 -31 97 -49 152 -49c65 0 119 18 161 53c28 23 49 48 60 73c24 52 40 121 40 180zM656 835c-25 -76 -60 -106 -127 -106c-30 0 -48 4 -98 24l-27 11c-19 7 -36 11 -50 11c-28 0 -48 -15 -62 -46h-35 c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h35'], + 0xE209: [643,10,570,42,527,'527 234c0 -138 -106 -244 -244 -244c-139 0 -241 101 -241 236c0 138 100 234 243 234c141 0 242 -95 242 -226zM428 199c0 137 -65 233 -157 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 48 -193c23 -40 64 -64 107 -64c83 0 132 68 132 181zM467 643 c-24 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -57 -46h-31c16 65 56 101 111 101c24 0 51 -6 77 -18l26 -12c21 -9 42 -15 58 -15c26 0 40 12 59 50h32'], + 0xE20A: [643,10,645,55,589,'589 234c0 -138 -116 -244 -269 -244c-152 0 -265 101 -265 236c0 138 110 234 268 234c154 0 266 -95 266 -226zM480 199c0 137 -72 233 -173 233c-86 0 -143 -62 -143 -157c0 -71 19 -141 53 -193c26 -40 70 -64 118 -64c90 0 145 68 145 181zM522 643 c-25 -76 -60 -106 -127 -106c-30 0 -48 4 -98 24l-28 11c-18 7 -35 11 -49 11c-28 0 -49 -15 -62 -46h-35c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 43 12 64 50h35'], + 0xE20B: [662,0,632,28,606,'606 481c0 -66 -39 -127 -105 -159c-48 -24 -107 -34 -193 -34c-28 0 -47 1 -76 3v-182c0 -73 17 -87 104 -90v-19h-308v19c83 7 92 17 92 101v433c0 72 -11 82 -92 90v19h290c103 0 199 -28 243 -72c30 -29 45 -67 45 -109zM486 475c0 103 -68 150 -216 150 c-30 0 -38 -7 -38 -34v-260c26 -2 41 -3 63 -3c126 0 191 50 191 147'], + 0xE20C: [662,0,713,39,676,'676 481c0 -66 -44 -127 -116 -159c-52 -24 -118 -34 -212 -34c-32 0 -52 1 -84 3v-182c0 -73 19 -87 114 -90v-19h-339v19c92 7 102 17 102 101v433c0 72 -12 82 -102 90v19h320c114 0 219 -28 267 -72c33 -29 50 -67 50 -109zM544 475c0 103 -75 150 -238 150 c-33 0 -42 -7 -42 -34v-260c28 -2 45 -3 69 -3c140 0 211 50 211 147'], + 0xE20D: [460,217,570,16,527,'527 247c0 -145 -101 -257 -231 -257c-46 0 -73 10 -111 43v-157c0 -63 14 -74 97 -75v-18h-266v17c64 6 77 17 77 69v468c0 47 -8 57 -46 57c-9 0 -17 0 -27 -1v16c60 17 99 30 158 51l7 -2v-77c48 54 97 79 158 79c107 0 184 -89 184 -213zM432 208 c0 116 -53 192 -135 192c-50 0 -112 -36 -112 -66v-246c0 -30 63 -66 114 -66c80 0 133 75 133 186'], + 0xE20E: [460,217,645,26,589,'589 247c0 -145 -112 -257 -254 -257c-51 0 -80 10 -123 43v-157c0 -63 16 -74 107 -75v-18h-293v17c71 6 85 17 85 69v468c0 47 -9 57 -50 57c-11 0 -19 0 -30 -1v16c66 17 109 30 174 51l7 -2v-77c54 54 107 79 175 79c117 0 202 -89 202 -213zM485 208 c0 116 -60 192 -149 192c-56 0 -124 -36 -124 -66v-246c0 -30 69 -66 126 -66c87 0 147 75 147 186'], + 0xE20F: [662,154,518,-14,505,'505 -154h-169v794h-64v-794h-170v22c86 5 97 17 97 101v304c-69 2 -100 10 -136 34c-52 32 -77 89 -77 170c0 130 68 185 230 185h289v-19c-85 -7 -97 -18 -97 -90v-595c0 -71 13 -84 97 -90v-22zM199 295v345c-44 -3 -62 -9 -82 -22c-32 -21 -48 -66 -48 -137 c0 -126 36 -177 130 -186'], + 0xE210: [662,154,588,-7,565,'565 -154h-187v794h-70v-794h-186v22c94 5 106 17 106 101v304c-76 2 -110 10 -150 34c-57 32 -85 89 -85 170c0 130 75 185 253 185h319v-19c-94 -7 -107 -18 -107 -90v-595c0 -71 15 -84 107 -90v-22zM228 295v345c-48 -3 -69 -9 -91 -22c-35 -21 -52 -66 -52 -137 c0 -126 39 -177 143 -186'], + 0xE211: [676,13,936,64,871,'871 186c0 -95 -54 -186 -147 -186c-101 0 -172 87 -172 185c0 97 71 186 172 186c93 0 147 -91 147 -185zM602 676l-210 -689h-50l191 626c-38 -24 -61 -30 -108 -30c-24 0 -50 3 -73 8c20 -33 31 -74 31 -116c0 -95 -54 -186 -147 -186c-102 0 -172 87 -172 185 c0 97 70 186 172 186c36 0 67 -14 90 -36c26 -10 56 -16 86 -16c70 0 110 18 148 68h42zM844 185c0 76 -31 154 -105 154c-71 0 -96 -79 -96 -154c0 -76 25 -155 96 -155c74 0 105 78 105 155zM355 474c0 49 -13 100 -42 129c-18 7 -36 15 -51 24c-4 1 -8 1 -11 1 c-72 0 -97 -79 -97 -154c0 -76 25 -155 97 -155c74 0 104 78 104 155'], + 0xE212: [676,13,1048,79,967,'967 186c0 -95 -59 -186 -162 -186c-111 0 -188 87 -188 185c0 97 77 186 188 186c103 0 162 -91 162 -185zM671 676l-231 -689h-55l210 626c-41 -24 -67 -30 -119 -30c-26 0 -54 3 -80 8c22 -33 34 -74 34 -116c0 -95 -59 -186 -162 -186c-111 0 -189 87 -189 185 c0 97 78 186 189 186c40 0 74 -14 99 -36c29 -10 62 -16 95 -16c77 0 121 18 163 68h46zM937 185c0 76 -34 154 -115 154c-78 0 -106 -79 -106 -154c0 -76 28 -155 106 -155c81 0 115 78 115 155zM400 474c0 49 -15 100 -47 129c-20 7 -39 15 -56 24c-5 1 -8 1 -12 1 c-79 0 -106 -79 -106 -154c0 -76 27 -155 106 -155c81 0 115 78 115 155'], + 0xE213: [100,11,295,87,209,'209 43c0 -29 -28 -54 -63 -54c-31 0 -59 25 -59 54c0 31 28 57 61 57s61 -26 61 -57'], + 0xE214: [100,11,343,105,239,'239 43c0 -29 -31 -54 -69 -54c-35 0 -65 25 -65 54c0 31 30 57 66 57c37 0 68 -26 68 -57'], + 0xE215: [676,13,1472,25,1447,'743 186c0 -95 -50 -186 -137 -186c-94 0 -160 87 -160 185c0 97 66 186 160 186c87 0 137 -91 137 -185zM514 676l-210 -689h-50l193 633c-34 -15 -73 -22 -110 -22c-17 0 -33 1 -50 4c23 -34 35 -81 35 -127c0 -95 -49 -186 -136 -186c-95 0 -161 87 -161 185 c0 97 66 186 161 186c29 0 54 -10 75 -28c20 -6 41 -9 63 -9c57 0 116 11 148 53h42zM1095 186c0 -95 -50 -186 -137 -186c-94 0 -160 87 -160 185c0 97 66 186 160 186c87 0 137 -91 137 -185zM714 185c0 76 -29 154 -96 154c-66 0 -88 -79 -88 -154c0 -76 22 -155 88 -155 c67 0 96 78 96 155zM294 474c0 56 -17 114 -52 140c-11 3 -22 8 -32 13c-4 1 -7 1 -12 1c-66 0 -88 -79 -88 -154c0 -76 22 -155 88 -155c67 0 96 78 96 155zM1066 185c0 76 -29 154 -96 154c-66 0 -88 -79 -88 -154c0 -76 22 -155 88 -155c67 0 96 78 96 155zM1447 186 c0 -95 -50 -186 -137 -186c-94 0 -160 87 -160 185c0 97 66 186 160 186c87 0 137 -91 137 -185zM1418 185c0 76 -29 154 -96 154c-66 0 -88 -79 -88 -154c0 -76 22 -155 88 -155c67 0 96 78 96 155'], + 0xE216: [676,13,1637,37,1600,'826 186c0 -95 -55 -186 -150 -186c-104 0 -177 87 -177 185c0 97 73 186 177 186c95 0 150 -91 150 -185zM574 676l-231 -689h-54l211 633c-37 -15 -79 -22 -121 -22c-18 0 -36 1 -54 4c25 -34 39 -81 39 -127c0 -95 -55 -186 -150 -186c-104 0 -177 87 -177 185 c0 97 73 186 177 186c31 0 59 -10 82 -28c22 -6 45 -9 69 -9c63 0 128 11 163 53h46zM1213 186c0 -95 -54 -186 -150 -186c-104 0 -177 87 -177 185c0 97 73 186 177 186c96 0 150 -91 150 -185zM794 185c0 76 -31 154 -105 154c-72 0 -97 -79 -97 -154 c0 -76 25 -155 97 -155c74 0 105 78 105 155zM332 474c0 56 -18 114 -57 140c-12 3 -24 8 -35 13c-5 1 -8 1 -13 1c-73 0 -97 -79 -97 -154c0 -76 24 -155 97 -155c74 0 105 78 105 155zM1182 185c0 76 -32 154 -106 154c-72 0 -96 -79 -96 -154c0 -76 24 -155 96 -155 c74 0 106 78 106 155zM1600 186c0 -95 -54 -186 -150 -186c-104 0 -176 87 -176 185c0 97 72 186 176 186c96 0 150 -91 150 -185zM1569 185c0 76 -32 154 -105 154s-97 -79 -97 -154c0 -76 24 -155 97 -155s105 78 105 155'], + 0xE217: [676,13,1120,25,1095,'743 186c0 -95 -50 -186 -137 -186c-94 0 -160 87 -160 185c0 97 66 186 160 186c87 0 137 -91 137 -185zM514 676l-210 -689h-50l193 633c-34 -15 -73 -22 -110 -22c-17 0 -33 1 -50 4c23 -34 35 -81 35 -127c0 -95 -49 -186 -136 -186c-95 0 -161 87 -161 185 c0 97 66 186 161 186c29 0 54 -10 75 -28c20 -6 41 -9 63 -9c57 0 116 11 148 53h42zM1095 186c0 -95 -50 -186 -137 -186c-94 0 -160 87 -160 185c0 97 66 186 160 186c87 0 137 -91 137 -185zM714 185c0 76 -29 154 -96 154c-66 0 -88 -79 -88 -154c0 -76 22 -155 88 -155 c67 0 96 78 96 155zM294 474c0 56 -17 114 -52 140c-11 3 -22 8 -32 13c-4 1 -7 1 -12 1c-66 0 -88 -79 -88 -154c0 -76 22 -155 88 -155c67 0 96 78 96 155zM1066 185c0 76 -29 154 -96 154c-66 0 -88 -79 -88 -154c0 -76 22 -155 88 -155c67 0 96 78 96 155'], + 0xE218: [676,13,1250,37,1213,'826 186c0 -95 -55 -186 -150 -186c-104 0 -177 87 -177 185c0 97 73 186 177 186c95 0 150 -91 150 -185zM574 676l-231 -689h-54l211 633c-37 -15 -79 -22 -121 -22c-18 0 -36 1 -54 4c25 -34 39 -81 39 -127c0 -95 -55 -186 -150 -186c-104 0 -177 87 -177 185 c0 97 73 186 177 186c31 0 59 -10 82 -28c22 -6 45 -9 69 -9c63 0 128 11 163 53h46zM1213 186c0 -95 -54 -186 -150 -186c-104 0 -177 87 -177 185c0 97 73 186 177 186c96 0 150 -91 150 -185zM794 185c0 76 -31 154 -105 154c-72 0 -97 -79 -97 -154 c0 -76 25 -155 97 -155c74 0 105 78 105 155zM332 474c0 56 -18 114 -57 140c-12 3 -24 8 -35 13c-5 1 -8 1 -13 1c-73 0 -97 -79 -97 -154c0 -76 24 -155 97 -155c74 0 105 78 105 155zM1182 185c0 76 -32 154 -106 154c-72 0 -96 -79 -96 -154c0 -76 24 -155 96 -155 c74 0 106 78 106 155'], + 0xE219: [676,178,814,47,781,'781 -177h-6c-13 -1 -22 -1 -39 -1c-175 0 -308 43 -383 122l-51 55c-79 24 -114 44 -157 86c-65 64 -98 146 -98 244c0 203 150 347 360 347s360 -144 360 -345c0 -111 -42 -202 -123 -268c-51 -40 -91 -57 -165 -70c89 -105 177 -152 302 -152v-18zM641 333 c0 113 -35 209 -94 257c-39 31 -89 50 -137 50c-63 0 -115 -21 -160 -65c-45 -46 -77 -144 -77 -240c0 -117 35 -217 93 -264c40 -32 88 -49 141 -49c61 0 118 23 159 64c44 46 75 148 75 247'], + 0xE21A: [676,178,914,61,868,'868 -177h-7c-13 -1 -24 -1 -42 -1c-193 0 -339 43 -421 122l-57 55c-86 24 -125 44 -172 86c-72 64 -108 146 -108 244c0 203 165 347 396 347s395 -144 395 -345c0 -111 -45 -202 -135 -268c-56 -40 -99 -57 -182 -70c98 -105 195 -152 333 -152v-18zM715 333 c0 113 -39 209 -105 257c-42 31 -98 50 -150 50c-70 0 -127 -21 -176 -65c-50 -46 -85 -144 -85 -240c0 -117 39 -217 103 -264c43 -32 97 -49 155 -49c66 0 129 23 174 64c48 46 84 148 84 247'], + 0xE21B: [461,217,570,36,547,'547 -217h-260v17c78 5 98 20 98 76v188c-48 -48 -109 -74 -173 -74c-103 0 -176 89 -176 215c0 144 106 256 244 256c42 0 75 -9 126 -36l59 32h13v-598c0 -42 8 -50 69 -62v-14zM385 127v206c0 67 -34 100 -102 100c-94 0 -152 -74 -152 -192c0 -66 23 -131 58 -160 c22 -20 52 -30 86 -30s71 12 95 31c11 8 15 21 15 45'], + 0xE21C: [461,217,645,49,610,'610 -217h-285v17c86 5 108 20 108 76v188c-54 -48 -120 -74 -190 -74c-114 0 -194 89 -194 215c0 144 116 256 267 256c48 0 84 -9 140 -36l65 32h13v-598c0 -42 10 -50 76 -62v-14zM433 127v206c0 67 -38 100 -113 100c-103 0 -167 -74 -167 -192 c0 -66 26 -131 64 -160c24 -20 57 -30 95 -30c37 0 77 12 104 31c12 8 17 21 17 45'], + 0xE21D: [676,8,508,85,465,'465 521c0 -41 -14 -77 -49 -126c-15 -21 -15 -21 -66 -77c-41 -47 -59 -87 -72 -154h-18c1 44 12 93 33 142l31 64c26 55 40 110 40 156c0 67 -53 120 -119 120c-53 0 -104 -30 -104 -62c0 -8 5 -17 19 -31c16 -17 23 -29 23 -43c0 -24 -19 -41 -45 -41 c-34 0 -53 22 -53 62c0 83 77 145 178 145c59 0 124 -23 163 -58c25 -23 39 -59 39 -97zM330 44c0 -30 -25 -52 -60 -52c-33 0 -58 22 -58 51c0 32 26 56 59 56c32 0 59 -25 59 -55'], + 0xE21E: [676,8,577,102,521,'521 521c0 -41 -16 -77 -55 -126c-16 -21 -16 -21 -72 -77c-45 -47 -65 -87 -79 -154h-20c1 44 13 93 36 142l34 64c29 55 45 110 45 156c0 67 -58 120 -131 120c-59 0 -115 -30 -115 -62c0 -8 6 -17 21 -31c18 -17 25 -29 25 -43c0 -24 -21 -41 -50 -41 c-37 0 -58 22 -58 62c0 83 85 145 196 145c66 0 137 -23 179 -58c28 -23 44 -59 44 -97zM372 44c0 -30 -28 -52 -66 -52c-37 0 -63 22 -63 51c0 32 27 56 64 56c35 0 65 -25 65 -55'], + 0xE21F: [458,226,508,43,424,'424 -81c0 -83 -77 -145 -179 -145c-59 0 -124 23 -162 58c-26 23 -40 59 -40 97c0 41 14 77 50 126c15 21 15 21 66 77c40 47 59 87 71 154h19c-1 -44 -12 -93 -33 -142l-31 -64c-26 -55 -41 -110 -41 -156c0 -67 53 -120 119 -120c54 0 105 30 105 62c0 8 -6 17 -19 31 c-17 17 -23 29 -23 43c0 24 18 41 45 41c34 0 53 -22 53 -62zM296 407c0 -32 -25 -56 -58 -56c-32 0 -60 25 -60 55s26 52 61 52c33 0 57 -22 57 -51'], + 0xE220: [458,226,577,56,475,'475 -81c0 -83 -85 -145 -196 -145c-65 0 -137 23 -179 58c-28 23 -44 59 -44 97c0 41 16 77 55 126c17 21 17 21 72 77c45 47 66 87 79 154h21c-2 -44 -14 -93 -37 -142l-34 -64c-29 -55 -44 -110 -44 -156c0 -67 58 -120 130 -120c60 0 115 30 115 62c0 8 -6 17 -20 31 c-18 17 -26 29 -26 43c0 24 21 41 50 41c37 0 58 -22 58 -62zM335 407c0 -32 -28 -56 -65 -56c-35 0 -65 25 -65 55s28 52 67 52c36 0 63 -22 63 -51'], + 0xE221: [676,-431,469,95,374,'374 636c0 -29 -10 -89 -27 -165l-8 -40h-23c-19 90 -35 188 -35 204c0 23 21 41 47 41c25 0 46 -18 46 -40zM188 636c0 -29 -10 -89 -27 -165l-8 -40h-23c-19 90 -35 188 -35 204c0 23 21 41 47 41c25 0 46 -18 46 -40'], + 0xE222: [676,-431,534,113,421,'421 636c0 -29 -11 -89 -31 -165l-8 -40h-26c-20 90 -38 188 -38 204c0 23 23 41 52 41c28 0 51 -18 51 -40zM216 636c0 -29 -11 -89 -30 -165l-9 -40h-25c-21 90 -39 188 -39 204c0 23 23 41 52 41c28 0 51 -18 51 -40'], + 0xE223: [102,141,508,60,468,'212 13c0 -60 -49 -121 -123 -154l-10 19c60 37 91 74 91 106c0 8 -7 14 -16 14c0 0 -1 0 -9 -2c-6 -1 -14 -2 -21 -2c-40 0 -64 19 -64 51c0 34 26 57 64 57c50 0 88 -39 88 -89zM468 13c0 -60 -50 -121 -124 -154l-9 19c59 37 90 74 90 106c0 8 -7 14 -16 14 c0 0 -1 0 -8 -2c-7 -1 -15 -2 -21 -2c-41 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89'], + 0xE224: [102,141,577,74,523,'243 13c0 -60 -55 -121 -136 -154l-11 19c66 37 99 74 99 106c0 8 -7 14 -16 14c0 0 -2 0 -10 -2c-7 -1 -16 -2 -23 -2c-45 0 -72 19 -72 51c0 34 29 57 72 57c54 0 97 -39 97 -89zM523 13c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14 c0 0 -1 0 -9 -2c-8 -1 -16 -2 -23 -2c-45 0 -72 19 -72 51c0 34 29 57 72 57c54 0 96 -39 96 -89'], + 0xE225: [676,-433,508,57,465,'210 490c0 -34 -26 -57 -65 -57c-49 0 -88 38 -88 89c0 60 50 121 124 154l9 -19c-59 -37 -90 -73 -90 -106c0 -8 7 -14 16 -14c0 0 1 0 8 2c7 1 15 2 21 2c40 0 65 -19 65 -51zM465 490c0 -34 -26 -57 -64 -57c-50 0 -88 38 -88 89c0 60 49 121 123 154l10 -19 c-60 -37 -91 -73 -91 -106c0 -8 7 -14 16 -14c0 0 1 0 9 2c6 1 14 2 21 2c39 0 64 -19 64 -51'], + 0xE226: [676,-433,577,72,521,'240 490c0 -34 -29 -57 -71 -57c-55 0 -97 38 -97 89c0 60 54 121 136 154l10 -19c-65 -37 -99 -73 -99 -106c0 -8 7 -14 17 -14c0 0 1 0 10 2c7 1 16 2 23 2c43 0 71 -19 71 -51zM521 490c0 -34 -29 -57 -71 -57c-55 0 -97 38 -97 89c0 60 54 121 135 154l11 -19 c-65 -37 -99 -73 -99 -106c0 -8 7 -14 17 -14c0 0 1 0 10 2c7 1 15 2 23 2c43 0 71 -19 71 -51'], + 0xE227: [676,-433,508,43,451,'196 587c0 -60 -50 -121 -123 -154l-10 19c59 37 90 74 90 106c0 8 -7 14 -15 14c0 0 -1 0 -9 -2c-7 -1 -14 -2 -21 -2c-41 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89zM451 587c0 -60 -49 -121 -123 -154l-10 19c59 37 90 74 90 106c0 8 -6 14 -15 14 c0 0 -1 0 -9 -2c-7 -1 -14 -2 -21 -2c-41 0 -65 19 -65 51c0 34 27 57 65 57c50 0 88 -39 88 -89'], + 0xE228: [676,-433,577,56,505,'224 587c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -9 -2c-8 -1 -16 -2 -23 -2c-45 0 -72 19 -72 51c0 34 29 57 72 57c54 0 96 -39 96 -89zM505 587c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14 c0 0 -1 0 -10 -2c-7 -1 -15 -2 -23 -2c-44 0 -71 19 -71 51c0 34 29 57 71 57c55 0 97 -39 97 -89'], + 0xE229: [676,-433,386,137,289,'289 490c0 -34 -26 -57 -64 -57c-50 0 -88 38 -88 89c0 60 49 121 123 154l10 -19c-60 -37 -91 -73 -91 -106c0 -8 7 -14 16 -14c0 0 1 0 9 2c6 1 14 2 21 2c39 0 64 -20 64 -51'], + 0xE22A: [676,-433,443,159,327,'327 490c0 -34 -29 -57 -71 -57c-54 0 -97 38 -97 89c0 60 55 121 136 154l11 -19c-66 -37 -100 -73 -100 -106c0 -8 8 -14 17 -14c0 0 1 0 10 2c7 1 16 2 23 2c44 0 71 -20 71 -51'], + 0xE22B: [676,-433,386,97,250,'250 587c0 -60 -50 -121 -123 -154l-10 19c59 37 90 73 90 106c0 8 -7 14 -15 14c0 0 -2 0 -9 -2c-7 -1 -15 -2 -21 -2c-40 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89'], + 0xE22C: [676,-433,443,116,284,'284 587c0 -60 -55 -121 -136 -154l-11 19c66 37 100 73 100 106c0 8 -8 14 -17 14c0 0 -2 0 -10 -2c-7 -1 -16 -2 -23 -2c-44 0 -71 19 -71 51c0 34 29 57 71 57c54 0 97 -39 97 -89'], + 0xE22D: [102,141,386,97,250,'250 13c0 -60 -50 -121 -123 -154l-10 19c59 37 90 74 90 106c0 8 -7 14 -15 14c0 0 -2 0 -9 -2c-7 -1 -15 -2 -21 -2c-40 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89'], + 0xE22E: [102,141,443,116,284,'284 13c0 -60 -55 -121 -136 -154l-11 19c66 37 100 74 100 106c0 8 -8 14 -17 14c0 0 -2 0 -10 -2c-7 -1 -16 -2 -23 -2c-44 0 -71 19 -71 51c0 34 29 57 71 57c54 0 97 -39 97 -89'], + 0xE22F: [676,-431,218,63,156,'156 636c0 -29 -10 -89 -27 -165l-8 -40h-23c-19 90 -35 188 -35 204c0 23 21 41 47 41c25 0 46 -18 46 -40'], + 0xE230: [676,-431,258,78,181,'181 636c0 -29 -11 -89 -30 -165l-9 -40h-25c-21 90 -39 188 -39 204c0 23 23 41 52 41c28 0 51 -18 51 -40'], + 0xE231: [662,0,754,29,735,'735 0h-177l-262 308l-62 -2v-197c0 -72 15 -85 99 -90v-19h-304v19c82 6 93 18 93 101v433c0 71 -11 82 -93 90v19h303c104 0 195 -26 237 -67c28 -29 43 -66 43 -109c0 -47 -21 -89 -56 -115c-37 -27 -70 -39 -143 -52l226 -253c32 -34 54 -44 96 -47v-19zM492 488 c0 94 -64 137 -201 137c-44 0 -57 -8 -57 -36v-246c106 2 145 8 195 34c40 19 63 61 63 111'], + 0xE232: [662,0,847,41,817,'817 0h-194l-288 308l-68 -2v-197c0 -72 16 -85 109 -90v-19h-335v19c90 6 102 18 102 101v433c0 71 -12 82 -102 90v19h334c113 0 214 -26 260 -67c31 -29 47 -66 47 -109c0 -47 -23 -89 -62 -115c-40 -27 -76 -39 -157 -52l249 -253c35 -34 59 -44 105 -47v-19z M550 488c0 94 -70 137 -221 137c-49 0 -62 -8 -62 -36v-246c116 2 158 8 214 34c44 19 69 61 69 111'], + 0xE233: [460,0,386,16,379,'379 407c0 -28 -17 -45 -43 -45c-15 0 -27 6 -44 20c-12 10 -22 15 -29 15c-30 0 -77 -50 -77 -82v-225c0 -57 19 -72 94 -75v-15h-264v15c70 12 78 19 78 69v250c0 44 -10 60 -38 60c-13 0 -23 -1 -38 -4v16c65 19 104 32 163 54l5 -2v-92c54 71 86 94 132 94 c37 0 61 -20 61 -53'], + 0xE234: [460,0,443,26,425,'425 407c0 -28 -18 -45 -47 -45c-16 0 -29 6 -48 20c-14 10 -24 15 -32 15c-32 0 -84 -50 -84 -82v-225c0 -57 20 -72 102 -75v-15h-290v15c77 12 86 19 86 69v250c0 44 -11 60 -41 60c-15 0 -26 -1 -43 -4v16c72 19 115 32 180 54l6 -2v-92c59 71 94 94 145 94 c41 0 66 -20 66 -53'], + 0xE235: [851,0,754,29,735,'735 0h-177l-262 308l-62 -2v-197c0 -72 15 -85 99 -90v-19h-304v19c82 6 93 18 93 101v433c0 71 -11 82 -93 90v19h303c104 0 195 -26 237 -67c28 -29 43 -66 43 -109c0 -47 -21 -89 -56 -115c-37 -27 -70 -39 -143 -52l226 -253c32 -34 54 -44 96 -47v-19zM492 488 c0 94 -64 137 -201 137c-44 0 -57 -8 -57 -36v-246c106 2 145 8 195 34c40 19 63 61 63 111zM504 825c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26'], + 0xE236: [851,0,847,41,817,'817 0h-194l-288 308l-68 -2v-197c0 -72 16 -85 109 -90v-19h-335v19c90 6 102 18 102 101v433c0 71 -12 82 -102 90v19h334c113 0 214 -26 260 -67c31 -29 47 -66 47 -109c0 -47 -23 -89 -62 -115c-40 -27 -76 -39 -157 -52l249 -253c35 -34 59 -44 105 -47v-19z M550 488c0 94 -70 137 -221 137c-49 0 -62 -8 -62 -36v-246c116 2 158 8 214 34c44 19 69 61 69 111zM563 825c0 -13 -12 -24 -38 -33l-202 -80h-53l192 120c24 15 36 19 55 19c29 0 46 -10 46 -26'], + 0xE237: [675,0,386,16,379,'379 407c0 -28 -17 -45 -43 -45c-15 0 -27 6 -44 20c-12 10 -22 15 -29 15c-30 0 -77 -50 -77 -82v-225c0 -57 19 -72 94 -75v-15h-264v15c70 12 78 19 78 69v250c0 44 -10 60 -38 60c-13 0 -23 -1 -38 -4v16c65 19 104 32 163 54l5 -2v-92c54 71 86 94 132 94 c37 0 61 -20 61 -53zM352 643c0 -16 -10 -29 -33 -42l-169 -97h-44l161 148c20 18 30 23 47 23c24 0 38 -12 38 -32'], + 0xE238: [675,0,443,26,425,'425 407c0 -28 -18 -45 -47 -45c-16 0 -29 6 -48 20c-14 10 -24 15 -32 15c-32 0 -84 -50 -84 -82v-225c0 -57 20 -72 102 -75v-15h-290v15c77 12 86 19 86 69v250c0 44 -11 60 -41 60c-15 0 -26 -1 -43 -4v16c72 19 115 32 180 54l6 -2v-92c59 71 94 94 145 94 c41 0 66 -20 66 -53zM396 643c0 -16 -11 -29 -36 -42l-186 -97h-49l178 148c22 18 33 23 51 23c27 0 42 -12 42 -32'], + 0xE239: [847,0,754,29,735,'735 0h-177l-262 308l-62 -2v-197c0 -72 15 -85 99 -90v-19h-304v19c82 6 93 18 93 101v433c0 71 -11 82 -93 90v19h303c104 0 195 -26 237 -67c28 -29 43 -66 43 -109c0 -47 -21 -89 -56 -115c-37 -27 -70 -39 -143 -52l226 -253c32 -34 54 -44 96 -47v-19zM492 488 c0 94 -64 137 -201 137c-44 0 -57 -8 -57 -36v-246c106 2 145 8 195 34c40 19 63 61 63 111zM524 847l-148 -129h-84l-149 129h53l137 -79l138 79h53'], + 0xE23A: [847,0,847,41,817,'817 0h-194l-288 308l-68 -2v-197c0 -72 16 -85 109 -90v-19h-335v19c90 6 102 18 102 101v433c0 71 -12 82 -102 90v19h334c113 0 214 -26 260 -67c31 -29 47 -66 47 -109c0 -47 -23 -89 -62 -115c-40 -27 -76 -39 -157 -52l249 -253c35 -34 59 -44 105 -47v-19z M550 488c0 94 -70 137 -221 137c-49 0 -62 -8 -62 -36v-246c116 2 158 8 214 34c44 19 69 61 69 111zM585 847l-162 -129h-93l-164 129h58l152 -79l151 79h58'], + 0xE23B: [674,0,386,16,379,'379 407c0 -28 -17 -45 -43 -45c-15 0 -27 6 -44 20c-12 10 -22 15 -29 15c-30 0 -77 -50 -77 -82v-225c0 -57 19 -72 94 -75v-15h-264v15c70 12 78 19 78 69v250c0 44 -10 60 -38 60c-13 0 -23 -1 -38 -4v16c65 19 104 32 163 54l5 -2v-92c54 71 86 94 132 94 c37 0 61 -20 61 -53zM358 674l-138 -167h-68l-136 167h37l133 -103l134 103h38'], + 0xE23C: [674,0,443,26,425,'425 407c0 -28 -18 -45 -47 -45c-16 0 -29 6 -48 20c-14 10 -24 15 -32 15c-32 0 -84 -50 -84 -82v-225c0 -57 20 -72 102 -75v-15h-290v15c77 12 86 19 86 69v250c0 44 -11 60 -41 60c-15 0 -26 -1 -43 -4v16c72 19 115 32 180 54l6 -2v-92c59 71 94 94 145 94 c41 0 66 -20 66 -53zM402 674l-151 -167h-75l-150 167h41l147 -103l147 103h41'], + 0xE23D: [662,281,754,29,735,'735 0h-177l-262 308l-62 -2v-197c0 -72 15 -85 99 -90v-19h-304v19c82 6 93 18 93 101v433c0 71 -11 82 -93 90v19h303c104 0 195 -26 237 -67c28 -29 43 -66 43 -109c0 -47 -21 -89 -56 -115c-37 -27 -70 -39 -143 -52l226 -253c32 -34 54 -44 96 -47v-19zM492 488 c0 94 -64 137 -201 137c-44 0 -57 -8 -57 -36v-246c106 2 145 8 195 34c40 19 63 61 63 111zM410 -127c0 -60 -49 -121 -123 -154l-10 19c60 37 91 74 91 106c0 8 -7 14 -16 14c0 0 -1 0 -9 -2c-6 -1 -14 -2 -21 -2c-39 0 -64 19 -64 51c0 34 26 57 64 57 c50 0 88 -39 88 -89'], + 0xE23E: [662,281,847,41,817,'817 0h-194l-288 308l-68 -2v-197c0 -72 16 -85 109 -90v-19h-335v19c90 6 102 18 102 101v433c0 71 -12 82 -102 90v19h334c113 0 214 -26 260 -67c31 -29 47 -66 47 -109c0 -47 -23 -89 -62 -115c-40 -27 -76 -39 -157 -52l249 -253c35 -34 59 -44 105 -47v-19z M550 488c0 94 -70 137 -221 137c-49 0 -62 -8 -62 -36v-246c116 2 158 8 214 34c44 19 69 61 69 111zM460 -127c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -9 -2c-8 -1 -16 -2 -23 -2c-44 0 -72 19 -72 51c0 34 29 57 72 57 c54 0 96 -39 96 -89'], + 0xE23F: [460,281,386,16,379,'379 407c0 -28 -17 -45 -43 -45c-15 0 -27 6 -44 20c-12 10 -22 15 -29 15c-30 0 -77 -50 -77 -82v-225c0 -57 19 -72 94 -75v-15h-264v15c70 12 78 19 78 69v250c0 44 -10 60 -38 60c-13 0 -23 -1 -38 -4v16c65 19 104 32 163 54l5 -2v-92c54 71 86 94 132 94 c37 0 61 -20 61 -53zM225 -127c0 -60 -50 -121 -124 -154l-10 19c60 37 91 74 91 106c0 8 -7 14 -16 14c0 0 -1 0 -9 -2c-6 -1 -14 -2 -20 -2c-40 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89'], + 0xE240: [460,281,443,26,425,'425 407c0 -28 -18 -45 -47 -45c-16 0 -29 6 -48 20c-14 10 -24 15 -32 15c-32 0 -84 -50 -84 -82v-225c0 -57 20 -72 102 -75v-15h-290v15c77 12 86 19 86 69v250c0 44 -11 60 -41 60c-15 0 -26 -1 -43 -4v16c72 19 115 32 180 54l6 -2v-92c59 71 94 94 145 94 c41 0 66 -20 66 -53zM256 -127c0 -60 -54 -121 -136 -154l-10 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -10 -2c-7 -1 -16 -2 -23 -2c-43 0 -71 19 -71 51c0 34 29 57 71 57c55 0 97 -39 97 -89'], + 0xE241: [690,-491,386,84,303,'303 590c0 -55 -50 -99 -110 -99c-62 0 -109 44 -109 100c0 54 49 99 109 99s110 -45 110 -100zM265 590c0 36 -33 66 -71 66c-40 0 -73 -29 -73 -65s32 -66 71 -66c40 0 73 29 73 65'], + 0xE242: [690,-491,443,101,342,'342 590c0 -55 -55 -99 -121 -99c-68 0 -120 44 -120 100c0 54 55 99 120 99c66 0 121 -45 121 -100zM301 590c0 36 -37 66 -79 66c-43 0 -80 -29 -80 -65s35 -66 78 -66c44 0 81 29 81 65'], + 0xE243: [676,14,632,56,550,'550 168c0 -103 -97 -182 -224 -182c-44 0 -88 8 -130 23c-21 7 -40 11 -52 11c-16 0 -29 -14 -31 -33h-24l-33 212h26c55 -122 123 -177 222 -177c80 0 135 46 135 112c0 25 -5 45 -15 59c-28 38 -85 78 -164 117c-123 59 -172 115 -172 194c0 55 21 98 64 130 c35 26 81 42 124 42c39 0 78 -8 119 -22c20 -8 37 -12 48 -12c19 0 31 12 36 34h23l24 -213h-28c-17 59 -33 85 -67 117c-38 36 -84 55 -134 55c-68 0 -114 -37 -114 -92s46 -99 161 -156c146 -72 206 -136 206 -219'], + 0xE244: [676,14,713,71,614,'614 168c0 -103 -106 -182 -247 -182c-48 0 -97 8 -143 23c-22 7 -43 11 -56 11c-19 0 -33 -14 -34 -33h-27l-36 212h28c60 -122 135 -177 244 -177c88 0 149 46 149 112c0 25 -6 45 -17 59c-30 38 -93 78 -180 117c-136 59 -189 115 -189 194c0 55 23 98 70 130 c39 26 90 42 137 42c42 0 86 -8 131 -22c21 -8 41 -12 53 -12c20 0 34 12 38 34h26l26 -213h-30c-19 59 -36 85 -74 117c-42 36 -93 55 -147 55c-75 0 -126 -37 -126 -92s51 -99 178 -156c160 -72 226 -136 226 -219'], + 0xE245: [459,10,448,66,393,'393 118c0 -70 -71 -128 -154 -128c-23 0 -51 4 -82 10c-26 6 -38 8 -50 8c-13 0 -18 -2 -25 -12h-15v156h18c25 -102 64 -140 140 -140c56 0 91 28 91 72c0 31 -19 55 -57 75l-64 33c-94 49 -129 88 -129 144c0 73 62 123 152 123c26 0 52 -4 75 -12c12 -5 23 -7 29 -7 c5 0 6 1 16 8l2 2h12l5 -136h-17c-25 90 -58 123 -121 123c-51 0 -85 -27 -85 -68c0 -27 17 -52 48 -68l118 -64c68 -36 93 -69 93 -119'], + 0xE246: [459,10,511,82,441,'441 118c0 -70 -77 -128 -169 -128c-26 0 -56 4 -90 10c-29 6 -42 8 -56 8s-19 -2 -27 -12h-16v156h19c28 -102 70 -140 154 -140c62 0 100 28 100 72c0 31 -20 55 -63 75l-70 33c-103 49 -141 88 -141 144c0 73 67 123 167 123c29 0 57 -4 82 -12c13 -5 25 -7 33 -7 c4 0 6 1 17 8l2 2h13l5 -136h-18c-28 90 -64 123 -133 123c-56 0 -93 -27 -93 -68c0 -27 18 -52 52 -68l130 -64c74 -36 102 -69 102 -119'], + 0xE247: [851,14,632,56,550,'550 168c0 -103 -97 -182 -224 -182c-44 0 -88 8 -130 23c-21 7 -40 11 -52 11c-16 0 -29 -14 -31 -33h-24l-33 212h26c55 -122 123 -177 222 -177c80 0 135 46 135 112c0 25 -5 45 -15 59c-28 38 -85 78 -164 117c-123 59 -172 115 -172 194c0 55 21 98 64 130 c35 26 81 42 124 42c39 0 78 -8 119 -22c20 -8 37 -12 48 -12c19 0 31 12 36 34h23l24 -213h-28c-17 59 -33 85 -67 117c-38 36 -84 55 -134 55c-68 0 -114 -37 -114 -92s46 -99 161 -156c146 -72 206 -136 206 -219zM468 825c0 -13 -11 -24 -36 -33l-183 -80h-48l174 120 c22 15 33 19 51 19c26 0 42 -10 42 -26'], + 0xE248: [851,14,713,71,614,'614 168c0 -103 -106 -182 -247 -182c-48 0 -97 8 -143 23c-22 7 -43 11 -56 11c-19 0 -33 -14 -34 -33h-27l-36 212h28c60 -122 135 -177 244 -177c88 0 149 46 149 112c0 25 -6 45 -17 59c-30 38 -93 78 -180 117c-136 59 -189 115 -189 194c0 55 23 98 70 130 c39 26 90 42 137 42c42 0 86 -8 131 -22c21 -8 41 -12 53 -12c20 0 34 12 38 34h26l26 -213h-30c-19 59 -36 85 -74 117c-42 36 -93 55 -147 55c-75 0 -126 -37 -126 -92s51 -99 178 -156c160 -72 226 -136 226 -219zM523 825c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120 c24 15 36 19 55 19c29 0 46 -10 46 -26'], + 0xE249: [675,10,448,66,393,'393 118c0 -70 -71 -128 -154 -128c-23 0 -51 4 -82 10c-26 6 -38 8 -50 8c-13 0 -18 -2 -25 -12h-15v156h18c25 -102 64 -140 140 -140c56 0 91 28 91 72c0 31 -19 55 -57 75l-64 33c-94 49 -129 88 -129 144c0 73 62 123 152 123c26 0 52 -4 75 -12c12 -5 23 -7 29 -7 c5 0 6 1 16 8l2 2h12l5 -136h-17c-25 90 -58 123 -121 123c-51 0 -85 -27 -85 -68c0 -27 17 -52 48 -68l118 -64c68 -36 93 -69 93 -119zM384 643c0 -16 -10 -29 -33 -42l-169 -97h-44l161 148c20 18 30 23 47 23c24 0 38 -12 38 -32'], + 0xE24A: [675,10,511,82,441,'441 118c0 -70 -77 -128 -169 -128c-26 0 -56 4 -90 10c-29 6 -42 8 -56 8s-19 -2 -27 -12h-16v156h19c28 -102 70 -140 154 -140c62 0 100 28 100 72c0 31 -20 55 -63 75l-70 33c-103 49 -141 88 -141 144c0 73 67 123 167 123c29 0 57 -4 82 -12c13 -5 25 -7 33 -7 c4 0 6 1 17 8l2 2h13l5 -136h-18c-28 90 -64 123 -133 123c-56 0 -93 -27 -93 -68c0 -27 18 -52 52 -68l130 -64c74 -36 102 -69 102 -119zM431 643c0 -16 -10 -29 -36 -42l-186 -97h-49l178 148c22 18 33 23 51 23c27 0 42 -12 42 -32'], + 0xE24B: [847,14,632,56,550,'550 168c0 -103 -97 -182 -224 -182c-44 0 -88 8 -130 23c-21 7 -40 11 -52 11c-16 0 -29 -14 -31 -33h-24l-33 212h26c55 -122 123 -177 222 -177c80 0 135 46 135 112c0 25 -5 45 -15 59c-28 38 -85 78 -164 117c-123 59 -172 115 -172 194c0 55 21 98 64 130 c35 26 81 42 124 42c39 0 78 -8 119 -22c20 -8 37 -12 48 -12c19 0 31 12 36 34h23l24 -213h-28c-17 59 -33 85 -67 117c-38 36 -84 55 -134 55c-68 0 -114 -37 -114 -92s46 -99 161 -156c146 -72 206 -136 206 -219zM487 847l-147 -129h-85l-148 129h53l137 -79l138 79h52'], + 0xE24C: [847,14,713,71,614,'614 168c0 -103 -106 -182 -247 -182c-48 0 -97 8 -143 23c-22 7 -43 11 -56 11c-19 0 -33 -14 -34 -33h-27l-36 212h28c60 -122 135 -177 244 -177c88 0 149 46 149 112c0 25 -6 45 -17 59c-30 38 -93 78 -180 117c-136 59 -189 115 -189 194c0 55 23 98 70 130 c39 26 90 42 137 42c42 0 86 -8 131 -22c21 -8 41 -12 53 -12c20 0 34 12 38 34h26l26 -213h-30c-19 59 -36 85 -74 117c-42 36 -93 55 -147 55c-75 0 -126 -37 -126 -92s51 -99 178 -156c160 -72 226 -136 226 -219zM545 847l-162 -129h-93l-164 129h59l151 -79l151 79h58'], + 0xE24D: [674,10,448,47,393,'393 118c0 -70 -71 -128 -154 -128c-23 0 -51 4 -82 10c-26 6 -38 8 -50 8c-13 0 -18 -2 -25 -12h-15v156h18c25 -102 64 -140 140 -140c56 0 91 28 91 72c0 31 -19 55 -57 75l-64 33c-94 49 -129 88 -129 144c0 73 62 123 152 123c26 0 52 -4 75 -12c12 -5 23 -7 29 -7 c5 0 6 1 16 8l2 2h12l5 -136h-17c-25 90 -58 123 -121 123c-51 0 -85 -27 -85 -68c0 -27 17 -52 48 -68l118 -64c68 -36 93 -69 93 -119zM390 674l-138 -167h-68l-137 167h38l133 -103l134 103h38'], + 0xE24E: [674,10,511,61,441,'441 118c0 -70 -77 -128 -169 -128c-26 0 -56 4 -90 10c-29 6 -42 8 -56 8s-19 -2 -27 -12h-16v156h19c28 -102 70 -140 154 -140c62 0 100 28 100 72c0 31 -20 55 -63 75l-70 33c-103 49 -141 88 -141 144c0 73 67 123 167 123c29 0 57 -4 82 -12c13 -5 25 -7 33 -7 c4 0 6 1 17 8l2 2h13l5 -136h-18c-28 90 -64 123 -133 123c-56 0 -93 -27 -93 -68c0 -27 18 -52 52 -68l130 -64c74 -36 102 -69 102 -119zM437 674l-151 -167h-75l-150 167h41l147 -103l147 103h41'], + 0xE24F: [676,225,632,56,550,'550 168c0 -97 -86 -172 -201 -181l-27 -62c11 2 18 3 29 3c59 0 95 -25 95 -69c0 -52 -53 -84 -138 -84c-34 0 -60 4 -92 16l15 31c30 -9 49 -12 72 -12c37 0 60 17 60 44c0 26 -16 36 -58 36c-13 0 -22 -1 -31 -4l-8 5l43 95c-38 2 -77 10 -113 23c-21 7 -40 11 -52 11 c-16 0 -29 -14 -31 -33h-24l-33 212h26c55 -122 123 -177 222 -177c80 0 135 46 135 112c0 25 -5 45 -15 59c-28 38 -85 78 -164 117c-123 59 -172 115 -172 194c0 55 21 98 64 130c35 26 81 42 124 42c39 0 78 -8 119 -22c20 -8 37 -12 48 -12c19 0 31 12 36 34h23l24 -213 h-28c-17 59 -33 85 -67 117c-38 36 -84 55 -134 55c-68 0 -114 -37 -114 -92s46 -99 161 -156c146 -72 206 -136 206 -219'], + 0xE250: [676,225,713,71,614,'614 168c0 -97 -94 -172 -221 -181l-29 -62c12 2 19 3 31 3c65 0 104 -25 104 -69c0 -52 -58 -84 -151 -84c-38 0 -67 4 -102 16l17 31c33 -9 53 -12 79 -12c41 0 66 17 66 44c0 26 -18 36 -64 36c-14 0 -24 -1 -34 -4l-8 5l47 95c-42 2 -85 10 -125 23 c-22 7 -43 11 -56 11c-19 0 -33 -14 -34 -33h-27l-36 212h28c60 -122 135 -177 244 -177c88 0 149 46 149 112c0 25 -6 45 -17 59c-30 38 -93 78 -180 117c-136 59 -189 115 -189 194c0 55 23 98 70 130c39 26 90 42 137 42c42 0 86 -8 131 -22c21 -8 41 -12 53 -12 c20 0 34 12 38 34h26l26 -213h-30c-19 59 -36 85 -74 117c-42 36 -93 55 -147 55c-75 0 -126 -37 -126 -92s51 -99 178 -156c160 -72 226 -136 226 -219'], + 0xE251: [459,215,448,66,393,'393 118c0 -70 -71 -128 -154 -128l-21 -55c11 2 18 3 29 3c59 0 94 -26 94 -69c0 -52 -53 -84 -137 -84c-36 0 -61 4 -93 16l16 31c30 -9 48 -12 71 -12c38 0 61 17 61 44c0 26 -17 36 -59 36c-12 0 -22 -1 -30 -4l-8 5l39 92c-14 1 -28 4 -44 7c-26 6 -38 8 -50 8 c-13 0 -18 -2 -25 -12h-15v156h18c25 -102 64 -140 140 -140c56 0 91 28 91 72c0 31 -19 55 -57 75l-64 33c-94 49 -129 88 -129 144c0 73 62 123 152 123c26 0 52 -4 75 -12c12 -5 23 -7 29 -7c5 0 6 1 16 8l2 2h12l5 -136h-17c-25 90 -58 123 -121 123 c-51 0 -85 -27 -85 -68c0 -27 17 -52 48 -68l118 -64c68 -36 93 -69 93 -119'], + 0xE252: [459,215,511,82,441,'441 118c0 -70 -77 -128 -169 -128l-23 -55c12 2 19 3 31 3c65 0 104 -26 104 -69c0 -52 -58 -84 -151 -84c-39 0 -67 4 -102 16l17 31c34 -9 54 -12 79 -12c41 0 66 17 66 44c0 26 -18 36 -64 36c-13 0 -24 -1 -34 -4l-8 5l44 92c-16 1 -32 4 -49 7c-29 6 -42 8 -56 8 s-19 -2 -27 -12h-16v156h19c28 -102 70 -140 154 -140c62 0 100 28 100 72c0 31 -20 55 -63 75l-70 33c-103 49 -141 88 -141 144c0 73 67 123 167 123c29 0 57 -4 82 -12c13 -5 25 -7 33 -7c4 0 6 1 17 8l2 2h13l5 -136h-18c-28 90 -64 123 -133 123c-56 0 -93 -27 -93 -68 c0 -27 18 -52 52 -68l130 -64c74 -36 102 -69 102 -119'], + 0xE253: [676,281,632,56,550,'550 168c0 -103 -97 -182 -224 -182c-44 0 -88 8 -130 23c-21 7 -40 11 -52 11c-16 0 -29 -14 -31 -33h-24l-33 212h26c55 -122 123 -177 222 -177c80 0 135 46 135 112c0 25 -5 45 -15 59c-28 38 -85 78 -164 117c-123 59 -172 115 -172 194c0 55 21 98 64 130 c35 26 81 42 124 42c39 0 78 -8 119 -22c20 -8 37 -12 48 -12c19 0 31 12 36 34h23l24 -213h-28c-17 59 -33 85 -67 117c-38 36 -84 55 -134 55c-68 0 -114 -37 -114 -92s46 -99 161 -156c146 -72 206 -136 206 -219zM374 -127c0 -60 -49 -121 -123 -154l-10 19 c59 37 90 74 90 106c0 8 -6 14 -15 14c0 0 -1 0 -9 -2c-7 -1 -14 -2 -21 -2c-39 0 -65 19 -65 51c0 34 27 57 65 57c50 0 88 -39 88 -89'], + 0xE254: [676,281,713,71,614,'614 168c0 -103 -106 -182 -247 -182c-48 0 -97 8 -143 23c-22 7 -43 11 -56 11c-19 0 -33 -14 -34 -33h-27l-36 212h28c60 -122 135 -177 244 -177c88 0 149 46 149 112c0 25 -6 45 -17 59c-30 38 -93 78 -180 117c-136 59 -189 115 -189 194c0 55 23 98 70 130 c39 26 90 42 137 42c42 0 86 -8 131 -22c21 -8 41 -12 53 -12c20 0 34 12 38 34h26l26 -213h-30c-19 59 -36 85 -74 117c-42 36 -93 55 -147 55c-75 0 -126 -37 -126 -92s51 -99 178 -156c160 -72 226 -136 226 -219zM421 -127c0 -60 -55 -121 -136 -154l-11 19 c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -9 -2c-8 -1 -16 -2 -23 -2c-44 0 -72 19 -72 51c0 34 29 57 72 57c54 0 97 -39 97 -89'], + 0xE255: [459,281,448,66,393,'393 118c0 -70 -71 -128 -154 -128c-23 0 -51 4 -82 10c-26 6 -38 8 -50 8c-13 0 -18 -2 -25 -12h-15v156h18c25 -102 64 -140 140 -140c56 0 91 28 91 72c0 31 -19 55 -57 75l-64 33c-94 49 -129 88 -129 144c0 73 62 123 152 123c26 0 52 -4 75 -12c12 -5 23 -7 29 -7 c5 0 6 1 16 8l2 2h12l5 -136h-17c-25 90 -58 123 -121 123c-51 0 -85 -27 -85 -68c0 -27 17 -52 48 -68l118 -64c68 -36 93 -69 93 -119zM295 -127c0 -60 -50 -121 -123 -154l-10 19c59 37 90 74 90 106c0 8 -7 14 -15 14c0 0 -1 0 -9 -2c-7 -1 -14 -2 -21 -2 c-40 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89'], + 0xE256: [459,281,511,82,441,'441 118c0 -70 -77 -128 -169 -128c-26 0 -56 4 -90 10c-29 6 -42 8 -56 8s-19 -2 -27 -12h-16v156h19c28 -102 70 -140 154 -140c62 0 100 28 100 72c0 31 -20 55 -63 75l-70 33c-103 49 -141 88 -141 144c0 73 67 123 167 123c29 0 57 -4 82 -12c13 -5 25 -7 33 -7 c4 0 6 1 17 8l2 2h13l5 -136h-18c-28 90 -64 123 -133 123c-56 0 -93 -27 -93 -68c0 -27 18 -52 52 -68l130 -64c74 -36 102 -69 102 -119zM333 -127c0 -60 -54 -121 -135 -154l-11 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -9 -2c-8 -1 -16 -2 -23 -2 c-44 0 -72 19 -72 51c0 34 29 57 72 57c54 0 96 -39 96 -89'], + 0xE257: [676,148,570,87,479,'479 245c0 -70 -53 -120 -128 -120h-20c83 -65 104 -95 104 -146c0 -76 -63 -127 -159 -127c-86 0 -152 44 -152 100c0 31 26 54 60 54c30 0 53 -18 53 -42c0 -14 -8 -27 -26 -41c-7 -6 -12 -11 -12 -15c0 -18 38 -35 78 -35c59 0 96 30 96 77c0 39 -27 71 -98 115 c-134 84 -188 148 -188 221c0 68 54 119 127 119c6 0 16 0 27 -1c-88 66 -110 96 -110 150c0 72 62 122 153 122c80 0 141 -42 141 -98c0 -33 -21 -53 -56 -53c-30 0 -52 18 -52 43c0 16 11 32 29 44c5 5 8 8 8 11c0 18 -30 32 -68 32c-56 0 -93 -29 -93 -71 c0 -25 15 -54 37 -71l151 -113c64 -48 98 -102 98 -155zM421 212c0 26 -20 59 -58 93c-50 46 -109 78 -143 78c-43 0 -75 -28 -75 -67c0 -30 14 -53 51 -87c66 -60 108 -83 150 -83c40 0 75 31 75 66'], + 0xE258: [676,148,645,105,535,'535 245c0 -70 -58 -120 -140 -120h-22c91 -65 114 -95 114 -146c0 -76 -69 -127 -174 -127c-95 0 -167 44 -167 100c0 31 28 54 65 54c33 0 58 -18 58 -42c0 -14 -8 -27 -28 -41c-8 -6 -13 -11 -13 -15c0 -18 41 -35 86 -35c64 0 105 30 105 77c0 39 -30 71 -107 115 c-148 84 -207 148 -207 221c0 68 59 119 139 119c7 0 18 0 30 -1c-97 66 -121 96 -121 150c0 72 68 122 168 122c89 0 155 -42 155 -98c0 -33 -23 -53 -62 -53c-32 0 -56 18 -56 43c0 16 12 32 31 44c6 5 10 8 10 11c0 18 -34 32 -75 32c-62 0 -103 -29 -103 -71 c0 -25 17 -54 41 -71l166 -113c70 -48 107 -102 107 -155zM473 212c0 26 -23 59 -65 93c-55 46 -119 78 -157 78c-47 0 -82 -28 -82 -67c0 -30 14 -53 55 -87c73 -60 119 -83 165 -83c45 0 84 31 84 66'], + 0xE259: [459,141,326,98,251,'251 13c0 -60 -47 -120 -123 -154l-10 19c59 37 90 74 90 106c0 8 -7 14 -15 14c0 0 -1 0 -9 -2c-7 -1 -14 -2 -21 -2c-41 0 -65 19 -65 52c0 34 26 56 65 56c49 0 88 -39 88 -89zM221 402c0 -29 -28 -54 -62 -54c-32 0 -60 25 -60 54c0 31 28 57 61 57s61 -26 61 -57'], + 0xE25A: [459,141,376,117,285,'285 13c0 -60 -52 -120 -136 -154l-10 19c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -10 -2c-7 -1 -16 -2 -23 -2c-45 0 -71 19 -71 52c0 34 29 56 71 56c55 0 97 -39 97 -89zM252 402c0 -29 -31 -54 -69 -54c-35 0 -65 25 -65 54c0 31 30 57 67 57 c36 0 67 -26 67 -57'], + 0xE25B: [662,8,570,32,504,'504 646l-233 -654h-72l218 596h-239c-60 0 -80 -13 -127 -81l-19 8l65 147h407v-16'], + 0xE25C: [662,8,645,44,563,'563 646l-256 -654h-79l240 596h-263c-66 0 -88 -13 -140 -81l-21 8l72 147h447v-16'], + 0xE25D: [684,14,570,47,525,'525 219c0 -138 -95 -233 -231 -233c-68 0 -128 24 -170 68c-47 50 -77 138 -77 225c0 134 65 248 184 325c80 51 144 70 270 80l2 -16c-173 -26 -296 -134 -326 -285c70 38 93 45 141 45c127 0 207 -81 207 -209zM426 185c0 125 -55 197 -150 197c-38 0 -72 -9 -95 -25 c-22 -15 -31 -43 -31 -94c0 -155 59 -249 156 -249c77 0 120 61 120 171'], + 0xE25E: [684,14,645,61,586,'586 219c0 -138 -104 -233 -254 -233c-75 0 -140 24 -186 68c-52 50 -85 138 -85 225c0 134 72 248 202 325c89 51 159 70 297 80l2 -16c-190 -26 -325 -134 -358 -285c76 38 102 45 155 45c139 0 227 -81 227 -209zM477 185c0 125 -60 197 -164 197 c-43 0 -80 -9 -105 -25c-25 -15 -34 -43 -34 -94c0 -155 65 -249 171 -249c85 0 132 61 132 171'], + 0xE25F: [676,8,570,23,549,'549 136c0 -17 -24 -61 -47 -85c-35 -37 -85 -58 -138 -58c-47 0 -83 14 -158 61c-44 -47 -69 -62 -108 -62c-45 0 -75 24 -75 62c0 46 41 76 100 76c17 0 30 -1 51 -5c3 8 4 14 4 21c0 18 -2 35 -24 182h-119v45h118c-5 26 -8 45 -8 69c0 143 84 234 215 234 c81 0 143 -40 143 -93c0 -31 -23 -53 -55 -53c-33 0 -42 14 -43 67c-1 35 -21 52 -62 52c-66 0 -104 -51 -104 -139c0 -36 3 -69 12 -137h137v-45h-133v-27l1 -28c0 -35 -1 -40 -27 -162c71 -27 110 -35 164 -35c50 0 89 15 124 49c11 11 20 16 25 16s7 -2 7 -5zM166 76 c0 8 -32 18 -58 18c-36 0 -56 -13 -56 -37c0 -22 19 -37 45 -37c22 0 35 6 51 23c12 13 18 25 18 33'], + 0xE260: [676,8,645,35,613,'613 136c0 -17 -27 -61 -52 -85c-39 -37 -93 -58 -151 -58c-52 0 -92 14 -175 61c-48 -47 -76 -62 -118 -62c-50 0 -82 24 -82 62c0 46 44 76 110 76c18 0 32 -1 55 -5c4 8 5 14 5 21c0 18 -2 35 -26 182h-131v45h129c-6 26 -8 45 -8 69c0 143 92 234 236 234 c89 0 157 -40 157 -93c0 -31 -25 -53 -60 -53c-37 0 -46 14 -48 67c-1 35 -23 52 -67 52c-73 0 -115 -51 -115 -139c0 -36 3 -69 13 -137h151v-45h-146v-27l1 -28c0 -35 -1 -40 -30 -162c78 -27 121 -35 180 -35c56 0 98 15 137 49c12 11 22 16 28 16c4 0 7 -2 7 -5zM192 76 c0 8 -35 18 -64 18c-40 0 -62 -13 -62 -37c0 -22 21 -37 50 -37c24 0 38 6 55 23c14 13 21 25 21 33'], + 0xE261: [662,0,692,29,662,'662 492h-26c-25 110 -50 128 -175 128h-59v-511c0 -73 15 -86 105 -90v-19h-321v19c91 5 103 16 103 101v500h-59c-123 0 -148 -18 -175 -128h-26l6 170h621'], + 0xE262: [662,0,779,41,738,'738 492h-30c-27 110 -54 128 -192 128h-65v-511c0 -73 17 -86 116 -90v-19h-353v19c100 5 113 16 113 101v500h-65c-136 0 -163 -18 -192 -128h-29l7 170h682'], + 0xE263: [579,10,326,24,317,'317 66c-36 -52 -78 -76 -133 -76c-64 0 -97 43 -97 127v301h-58c-4 2 -5 4 -5 7c0 6 7 12 19 19c29 15 66 52 107 107c7 9 15 18 22 28c5 0 7 -3 7 -13v-116h112v-32h-112v-286c0 -64 17 -90 58 -90c24 0 41 9 66 35'], + 0xE264: [579,10,376,36,358,'358 66c-40 -52 -86 -76 -147 -76c-70 0 -106 43 -106 127v301h-64c-4 2 -5 4 -5 7c0 6 7 12 20 19c32 15 73 52 118 107c8 9 17 18 24 28c6 0 8 -3 8 -13v-116h123v-32h-123v-286c0 -64 18 -90 63 -90c27 0 46 9 73 35'], + 0xE265: [847,0,692,29,662,'662 492h-26c-25 110 -50 128 -175 128h-59v-511c0 -73 15 -86 105 -90v-19h-321v19c91 5 103 16 103 101v500h-59c-123 0 -148 -18 -175 -128h-26l6 170h621zM536 847l-148 -129h-84l-149 129h53l138 -79l137 79h53'], + 0xE266: [847,0,779,41,738,'738 492h-30c-27 110 -54 128 -192 128h-65v-511c0 -73 17 -86 116 -90v-19h-353v19c100 5 113 16 113 101v500h-65c-136 0 -163 -18 -192 -128h-29l7 170h682zM598 847l-162 -129h-93l-163 129h58l151 -79l151 79h58'], + 0xE267: [713,10,326,24,354,'317 66c-36 -52 -78 -76 -133 -76c-64 0 -97 43 -97 127v301h-58c-4 2 -5 4 -5 7c0 6 7 12 19 19c29 15 66 52 107 107c7 9 15 18 22 28c5 0 7 -3 7 -13v-116h112v-32h-112v-286c0 -64 17 -90 58 -90c24 0 41 9 66 35zM354 624c0 -60 -49 -121 -123 -154l-10 19 c60 37 90 74 90 106c0 8 -6 14 -15 14c0 0 -1 0 -9 -2c-6 -1 -14 -2 -21 -2c-39 0 -65 19 -65 51c0 34 27 57 65 57c50 0 88 -39 88 -89'], + 0xE268: [713,10,376,36,399,'358 66c-40 -52 -86 -76 -147 -76c-70 0 -106 43 -106 127v301h-64c-4 2 -5 4 -5 7c0 6 7 12 20 19c32 15 73 52 118 107c8 9 17 18 24 28c6 0 8 -3 8 -13v-116h123v-32h-123v-286c0 -64 18 -90 63 -90c27 0 46 9 73 35zM399 624c0 -60 -55 -121 -136 -154l-11 19 c66 37 100 74 100 106c0 8 -8 14 -17 14c0 0 -2 0 -10 -2c-7 -1 -16 -2 -23 -2c-44 0 -71 19 -71 51c0 34 29 57 71 57c54 0 97 -39 97 -89'], + 0xE269: [662,225,692,29,662,'662 492h-26c-25 110 -50 128 -175 128h-59v-511c0 -73 15 -86 105 -90v-19h-136l-32 -75c11 2 18 3 29 3c59 0 94 -25 94 -69c0 -52 -53 -84 -137 -84c-34 0 -61 4 -93 16l16 31c29 -9 48 -12 71 -12c38 0 61 17 61 44c0 26 -17 36 -59 36c-13 0 -22 -1 -30 -4l-8 5 l49 109h-146v19c91 5 103 16 103 101v500h-59c-123 0 -148 -18 -175 -128h-26l6 170h621'], + 0xE26A: [662,225,779,41,738,'738 492h-30c-27 110 -54 128 -192 128h-65v-511c0 -73 17 -86 116 -90v-19h-150l-35 -75c12 2 19 3 31 3c66 0 104 -25 104 -69c0 -52 -58 -84 -151 -84c-37 0 -66 4 -102 16l17 31c33 -9 54 -12 79 -12c41 0 67 17 67 44c0 26 -19 36 -65 36c-14 0 -24 -1 -33 -4l-9 5 l55 109h-161v19c100 5 113 16 113 101v500h-65c-136 0 -163 -18 -192 -128h-29l7 170h682'], + 0xE26B: [579,215,326,24,317,'317 66c-31 -44 -65 -68 -108 -74l-24 -57c11 2 18 3 29 3c59 0 94 -25 94 -69c0 -52 -53 -84 -137 -84c-34 0 -61 4 -93 16l16 31c29 -9 48 -12 71 -12c38 0 61 17 61 44c0 26 -17 36 -59 36c-13 0 -22 -1 -30 -4l-8 5l41 90c-54 6 -83 48 -83 126v301h-58 c-4 2 -5 4 -5 7c0 6 7 12 19 19c29 15 66 52 107 107c7 9 15 18 22 28c5 0 7 -3 7 -13v-116h112v-32h-112v-286c0 -64 17 -90 58 -90c24 0 41 9 66 35'], + 0xE26C: [579,215,376,36,358,'358 66c-34 -44 -72 -68 -119 -74l-27 -57c12 2 20 3 32 3c65 0 104 -25 104 -69c0 -52 -58 -84 -151 -84c-38 0 -67 4 -102 16l17 31c33 -9 53 -12 79 -12c41 0 66 17 66 44c0 26 -18 36 -64 36c-14 0 -24 -1 -34 -4l-8 5l44 90c-59 6 -90 48 -90 126v301h-64 c-4 2 -5 4 -5 7c0 6 7 12 20 19c32 15 73 52 118 107c8 9 17 18 24 28c6 0 8 -3 8 -13v-116h123v-32h-123v-286c0 -64 18 -90 63 -90c27 0 46 9 73 35'], + 0xE26D: [662,281,692,29,662,'662 492h-26c-25 110 -50 128 -175 128h-59v-511c0 -73 15 -86 105 -90v-19h-321v19c91 5 103 16 103 101v500h-59c-123 0 -148 -18 -175 -128h-26l6 170h621zM423 -127c0 -60 -50 -121 -124 -154l-10 19c60 37 91 74 91 106c0 8 -7 14 -16 14c0 0 -1 0 -9 -2 c-6 -1 -14 -2 -20 -2c-40 0 -65 19 -65 51c0 34 26 57 65 57c49 0 88 -39 88 -89'], + 0xE26E: [662,281,779,41,738,'738 492h-30c-27 110 -54 128 -192 128h-65v-511c0 -73 17 -86 116 -90v-19h-353v19c100 5 113 16 113 101v500h-65c-136 0 -163 -18 -192 -128h-29l7 170h682zM474 -127c0 -60 -55 -121 -136 -154l-11 19c66 37 100 74 100 106c0 8 -8 14 -17 14c0 0 -2 0 -10 -2 c-7 -1 -16 -2 -23 -2c-44 0 -71 19 -71 51c0 34 29 57 71 57c54 0 97 -39 97 -89'], + 0xE26F: [579,281,326,24,317,'317 66c-36 -52 -78 -76 -133 -76c-64 0 -97 43 -97 127v301h-58c-4 2 -5 4 -5 7c0 6 7 12 19 19c29 15 66 52 107 107c7 9 15 18 22 28c5 0 7 -3 7 -13v-116h112v-32h-112v-286c0 -64 17 -90 58 -90c24 0 41 9 66 35zM256 -127c0 -60 -49 -121 -123 -154l-10 19 c60 37 91 74 91 106c0 8 -7 14 -16 14c0 0 -1 0 -9 -2c-6 -1 -14 -2 -21 -2c-39 0 -64 19 -64 51c0 34 26 57 64 57c50 0 88 -39 88 -89'], + 0xE270: [579,281,376,36,358,'358 66c-40 -52 -86 -76 -147 -76c-70 0 -106 43 -106 127v301h-64c-4 2 -5 4 -5 7c0 6 7 12 20 19c32 15 73 52 118 107c8 9 17 18 24 28c6 0 8 -3 8 -13v-116h123v-32h-123v-286c0 -64 18 -90 63 -90c27 0 46 9 73 35zM291 -127c0 -60 -54 -121 -135 -154l-11 19 c65 37 99 74 99 106c0 8 -7 14 -17 14c0 0 -1 0 -10 -2c-7 -1 -15 -2 -23 -2c-43 0 -71 19 -71 51c0 34 29 57 71 57c55 0 97 -39 97 -89'], + 0xE271: [662,0,632,28,606,'606 351c0 -66 -40 -127 -105 -159c-48 -24 -107 -34 -193 -34c-26 0 -46 1 -76 3v-52c0 -73 17 -87 104 -90v-19h-308v19c83 7 92 17 92 101v433c0 72 -11 82 -92 90v19h304v-19c-90 -7 -101 -20 -100 -111h88c176 0 286 -70 286 -181zM486 345c0 103 -67 149 -219 149 c-27 0 -35 -7 -35 -33v-260c26 -2 41 -3 63 -3c126 0 191 50 191 147'], + 0xE272: [662,0,713,39,676,'676 351c0 -66 -45 -127 -116 -159c-52 -24 -118 -34 -212 -34c-29 0 -51 1 -84 3v-52c0 -73 19 -87 114 -90v-19h-339v19c92 7 102 17 102 101v433c0 72 -12 82 -102 90v19h336v-19c-100 -7 -112 -20 -111 -111h97c194 0 315 -70 315 -181zM544 345 c0 103 -74 149 -241 149c-30 0 -39 -7 -39 -33v-260c28 -2 45 -3 69 -3c140 0 211 50 211 147'], + 0xE273: [683,217,570,16,527,'527 247c0 -145 -101 -257 -231 -257c-46 0 -73 10 -111 43v-157c0 -63 14 -74 97 -75v-18h-266v18c64 5 77 16 77 68v704c0 42 -10 51 -54 51c-8 0 -12 0 -19 -1v16c76 19 107 27 159 44l6 -3v-298c49 54 98 78 158 78c107 0 184 -89 184 -213zM432 208 c0 116 -53 192 -135 192c-50 0 -112 -36 -112 -66v-246c0 -30 63 -66 114 -66c80 0 133 75 133 186'], + 0xE274: [683,217,645,26,589,'589 247c0 -145 -112 -257 -254 -257c-51 0 -80 10 -123 43v-157c0 -63 16 -74 107 -75v-18h-293v18c71 5 85 16 85 68v704c0 42 -11 51 -60 51c-8 0 -13 0 -20 -1v16c83 19 117 27 175 44l6 -3v-298c55 54 108 78 175 78c117 0 202 -89 202 -213zM485 208 c0 116 -60 192 -149 192c-56 0 -124 -36 -124 -66v-246c0 -30 69 -66 126 -66c87 0 147 75 147 186'], + 0xE275: [676,14,570,57,485,'485 219c0 -67 -28 -125 -80 -166s-139 -67 -223 -67c-77 0 -125 22 -125 57c0 21 17 35 42 35c19 0 38 -7 71 -25c40 -24 62 -31 92 -31c81 0 144 65 144 149c0 69 -43 126 -111 148c-26 9 -52 11 -117 11v13c75 24 106 39 139 69c27 25 44 61 44 97 c0 63 -50 107 -121 107c-69 0 -119 -33 -164 -106l-16 4c24 60 40 86 73 113c40 32 88 49 143 49c101 0 172 -56 172 -137c0 -54 -28 -91 -104 -138c49 -19 70 -31 92 -53c32 -31 49 -78 49 -129'], + 0xE276: [676,14,645,72,543,'543 219c0 -67 -32 -125 -89 -166c-56 -41 -152 -67 -245 -67c-85 0 -137 22 -137 57c0 21 18 35 46 35c21 0 41 -7 77 -25c45 -24 69 -31 102 -31c90 0 159 65 159 149c0 69 -48 126 -123 148c-29 9 -56 11 -128 11v13c82 24 116 39 153 69c30 25 48 61 48 97 c0 63 -54 107 -133 107c-76 0 -131 -33 -180 -106l-19 4c27 60 45 86 82 113c43 32 96 49 157 49c111 0 189 -56 189 -137c0 -54 -31 -91 -114 -138c53 -19 76 -31 100 -53c35 -31 55 -78 55 -129'], + 0xE277: [643,-537,386,11,374,'374 643c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c17 65 56 101 111 101c24 0 52 -6 77 -18l27 -12c21 -9 41 -15 58 -15c25 0 40 12 58 50h32'], + 0xE278: [643,-537,443,21,421,'421 643c-26 -76 -61 -106 -128 -106c-30 0 -48 4 -98 24l-27 11c-19 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h36'], + 0xE279: [67,67,615,54,562,'562 18c-50 -64 -84 -85 -135 -85c-50 0 -69 7 -167 54c-19 9 -42 14 -65 14c-34 0 -53 -12 -82 -51l-59 32c51 64 85 85 135 85s70 -7 168 -54c18 -9 41 -14 64 -14c35 0 53 12 82 51'], + 0xE27A: [67,67,695,68,627,'627 18c-55 -64 -93 -85 -148 -85s-77 7 -184 54c-21 9 -46 14 -72 14c-37 0 -58 -12 -89 -51l-66 32c56 64 94 85 149 85s76 -7 184 -54c21 -9 46 -14 72 -14c37 0 58 12 89 51'], + 0xE27B: [676,0,570,43,533,'533 137l-61 -137h-429v12l196 189c92 89 143 182 143 260c0 84 -63 141 -155 141c-76 0 -116 -32 -160 -130l-23 5c19 71 35 103 71 137c40 40 97 62 158 62c114 0 203 -77 203 -177c0 -78 -42 -154 -140 -247l-185 -176h263c49 0 64 9 104 66'], + 0xE27C: [676,0,645,56,595,'595 137l-67 -137h-472v12l216 189c101 89 157 182 157 260c0 84 -69 141 -171 141c-83 0 -127 -32 -175 -130l-25 5c20 71 38 103 77 137c45 40 108 62 174 62c126 0 224 -77 224 -177c0 -78 -47 -154 -155 -247l-203 -176h289c55 0 70 9 115 66'], + 0xE27D: [662,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19'], + 0xE27E: [662,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19'], + 0xE27F: [450,10,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14'], + 0xE280: [450,10,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14'], + 0xE281: [851,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM605 825c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26'], + 0xE282: [851,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM675 825c0 -13 -12 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 46 -10 46 -26'], + 0xE283: [675,10,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M445 643c0 -16 -10 -29 -33 -42l-170 -97h-44l162 148c20 18 30 23 46 23c24 0 39 -12 39 -32'], + 0xE284: [675,10,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M498 643c0 -16 -11 -29 -36 -42l-187 -97h-48l178 148c22 18 32 23 51 23c26 0 42 -12 42 -32'], + 0xE285: [847,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM626 718h-53l-137 79l-138 -79h-53l148 129h85'], + 0xE286: [847,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM698 718h-58l-152 79l-151 -79h-58l162 129h93'], + 0xE287: [674,10,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M450 507h-37l-135 103l-133 -103h-37l136 167h69'], + 0xE288: [674,10,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M504 507h-41l-148 103l-146 -103h-41l150 167h75'], + 0xE289: [832,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM381 782c0 -27 -26 -49 -56 -49s-53 22 -53 50c0 26 25 49 53 49c30 0 56 -23 56 -50zM600 782c0 -27 -26 -49 -56 -49s-53 22 -53 50c0 26 25 49 53 49c30 0 56 -23 56 -50'], + 0xE28A: [832,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM428 782c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM669 782c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50'], + 0xE28B: [640,10,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M225 590c0 -27 -26 -49 -57 -49c-29 0 -52 22 -52 50c0 26 25 49 52 49c31 0 57 -23 57 -50zM443 590c0 -27 -25 -49 -56 -49c-29 0 -52 22 -52 50c0 26 25 49 52 49c31 0 56 -23 56 -50'], + 0xE28C: [640,10,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M256 590c0 -27 -28 -49 -62 -49c-32 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM497 590c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50'], + 0xE28D: [662,191,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM491 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE28E: [662,191,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM549 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE28F: [450,191,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M335 -140c0 -29 -25 -51 -57 -51c-30 0 -56 22 -56 51c0 28 26 51 56 51c32 0 57 -23 57 -51'], + 0xE290: [450,191,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M377 -140c0 -29 -27 -51 -62 -51c-34 0 -61 22 -61 51c0 28 27 51 61 51c35 0 62 -23 62 -51'], + 0xE291: [851,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM531 712h-47l-184 80c-24 9 -35 20 -35 33c0 16 16 26 42 26c18 0 29 -4 51 -19'], + 0xE292: [851,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM594 712h-52l-203 80c-26 9 -38 20 -38 33c0 16 17 26 46 26c19 0 31 -4 55 -19'], + 0xE293: [675,10,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M360 504h-44l-170 97c-23 13 -33 26 -33 42c0 20 15 32 39 32c16 0 26 -5 46 -23'], + 0xE294: [675,10,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M405 504h-49l-186 97c-25 13 -36 26 -36 42c0 20 15 32 42 32c18 0 29 -5 51 -23'], + 0xE295: [896,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM544 838c0 -20 -17 -38 -47 -59c-25 -18 -41 -31 -46 -40c-4 -7 -8 -16 -11 -30h-25c1 27 15 52 36 79c19 19 25 35 25 47c0 27 -17 42 -55 42c-17 0 -30 -4 -38 -10c-4 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29 c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 107 53c39 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE296: [896,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM607 838c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -8 -16 -12 -30h-28c1 27 17 52 40 79c21 19 28 35 28 47c0 27 -19 42 -60 42c-20 0 -34 -4 -43 -10c-5 -2 -7 -5 -7 -8c0 -4 21 -21 21 -29 c0 -13 -11 -19 -34 -19c-27 0 -42 10 -42 32c0 30 49 53 118 53c43 0 75 -7 97 -22c15 -12 24 -24 24 -36'], + 0xE297: [684,10,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M387 626c0 -20 -16 -38 -46 -59c-25 -18 -42 -31 -46 -40c-4 -7 -8 -16 -11 -30h-25c1 27 15 52 36 79c19 19 25 35 25 47c0 27 -17 42 -55 42c-17 0 -31 -4 -38 -10c-5 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 106 53 c40 0 69 -7 88 -22c15 -12 22 -24 22 -36'], + 0xE298: [684,10,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M435 626c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-4 -7 -8 -16 -12 -30h-28c2 27 17 52 40 79c21 19 28 35 28 47c0 27 -19 42 -60 42c-20 0 -34 -4 -43 -10c-4 -2 -7 -5 -7 -8c0 -4 21 -21 21 -29c0 -13 -11 -19 -34 -19c-27 0 -41 10 -41 32c0 30 48 53 117 53 c44 0 75 -7 97 -22c16 -12 24 -24 24 -36'], + 0xE299: [771,14,797,25,787,'787 705c0 -45 -47 -84 -105 -94v-357c0 -189 -90 -268 -281 -268c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -147 60 -203 189 -203c82 0 153 31 182 79c18 29 26 68 26 136v270c0 100 -18 122 -104 128v19h152v-26 c13 5 33 14 33 25c0 18 -47 28 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66'], + 0xE29A: [771,14,894,37,874,'874 705c0 -45 -51 -84 -115 -94v-357c0 -189 -99 -268 -309 -268c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -147 67 -203 208 -203c91 0 169 31 201 79c20 29 28 68 28 136v270c0 100 -19 122 -114 128v19h167v-26 c15 5 37 14 37 25c0 18 -52 28 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66'], + 0xE29B: [560,10,584,20,574,'574 494c0 -45 -46 -84 -105 -94v-293c0 -46 12 -57 62 -57h6v-14c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c44 0 117 20 117 87v235c0 50 -13 60 -81 63v17 h174v-25c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66'], + 0xE29C: [560,10,661,31,641,'641 494c0 -45 -51 -84 -116 -94v-293c0 -46 13 -57 69 -57h6v-14c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c49 0 130 20 130 87v235c0 50 -15 60 -90 63 v17h192v-25c15 5 37 14 37 25c0 18 -52 27 -52 62c0 25 32 48 59 48c39 0 72 -33 72 -66'], + 0xE29D: [851,14,797,25,787,'787 705c0 -45 -47 -84 -105 -94v-357c0 -189 -90 -268 -281 -268c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -147 60 -203 189 -203c82 0 153 31 182 79c18 29 26 68 26 136v270c0 100 -18 122 -104 128v19h152v-26 c13 5 33 14 33 25c0 18 -47 28 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66zM574 825c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 51 19c26 0 41 -10 41 -26'], + 0xE29E: [851,14,894,37,874,'874 705c0 -45 -51 -84 -115 -94v-357c0 -189 -99 -268 -309 -268c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -147 67 -203 208 -203c91 0 169 31 201 79c20 29 28 68 28 136v270c0 100 -19 122 -114 128v19h167v-26 c15 5 37 14 37 25c0 18 -52 28 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM641 825c0 -13 -12 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 46 -10 46 -26'], + 0xE29F: [675,10,584,20,574,'574 494c0 -45 -46 -84 -105 -94v-293c0 -46 12 -57 62 -57h6v-14c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c44 0 117 20 117 87v235c0 50 -13 60 -81 63v17 h174v-25c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM414 643c0 -16 -10 -29 -33 -42l-170 -97h-44l162 148c20 18 30 23 46 23c24 0 39 -12 39 -32'], + 0xE2A0: [675,10,661,31,641,'641 494c0 -45 -51 -84 -116 -94v-293c0 -46 13 -57 69 -57h6v-14c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c49 0 130 20 130 87v235c0 50 -15 60 -90 63 v17h192v-25c15 5 37 14 37 25c0 18 -52 27 -52 62c0 25 32 48 59 48c39 0 72 -33 72 -66zM464 643c0 -16 -11 -29 -36 -42l-187 -97h-48l178 148c22 18 33 23 51 23c26 0 42 -12 42 -32'], + 0xE2A1: [771,191,797,25,787,'787 705c0 -45 -47 -84 -105 -94v-357c0 -189 -90 -268 -281 -268c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -147 60 -203 189 -203c82 0 153 31 182 79c18 29 26 68 26 136v270c0 100 -18 122 -104 128v19h152v-26 c13 5 33 14 33 25c0 18 -47 28 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66zM460 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE2A2: [771,191,894,37,874,'874 705c0 -45 -51 -84 -115 -94v-357c0 -189 -99 -268 -309 -268c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -147 67 -203 208 -203c91 0 169 31 201 79c20 29 28 68 28 136v270c0 100 -19 122 -114 128v19h167v-26 c15 5 37 14 37 25c0 18 -52 28 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM515 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE2A3: [560,191,584,20,574,'574 494c0 -45 -46 -84 -105 -94v-293c0 -46 12 -57 62 -57h6v-14c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c44 0 117 20 117 87v235c0 50 -13 60 -81 63v17 h174v-25c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM304 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE2A4: [560,191,661,31,641,'641 494c0 -45 -51 -84 -116 -94v-293c0 -46 13 -57 69 -57h6v-14c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c49 0 130 20 130 87v235c0 50 -15 60 -90 63 v17h192v-25c15 5 37 14 37 25c0 18 -52 27 -52 62c0 25 32 48 59 48c39 0 72 -33 72 -66zM343 -140c0 -29 -27 -51 -62 -51c-34 0 -61 22 -61 51c0 28 27 51 61 51c35 0 62 -23 62 -51'], + 0xE2A5: [851,14,797,25,787,'787 705c0 -45 -47 -84 -105 -94v-357c0 -189 -90 -268 -281 -268c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -147 60 -203 189 -203c82 0 153 31 182 79c18 29 26 68 26 136v270c0 100 -18 122 -104 128v19h152v-26 c13 5 33 14 33 25c0 18 -47 28 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66zM501 712h-48l-183 80c-25 9 -36 20 -36 33c0 16 16 26 42 26c18 0 29 -4 51 -19'], + 0xE2A6: [851,14,894,37,874,'874 705c0 -45 -51 -84 -115 -94v-357c0 -189 -99 -268 -309 -268c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -147 67 -203 208 -203c91 0 169 31 201 79c20 29 28 68 28 136v270c0 100 -19 122 -114 128v19h167v-26 c15 5 37 14 37 25c0 18 -52 28 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM560 712h-52l-202 80c-27 9 -39 20 -39 33c0 16 17 26 46 26c19 0 31 -4 55 -19'], + 0xE2A7: [675,10,584,20,574,'574 494c0 -45 -46 -84 -105 -94v-293c0 -46 12 -57 62 -57h6v-14c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c44 0 117 20 117 87v235c0 50 -13 60 -81 63v17 h174v-25c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM329 504h-44l-169 97c-23 13 -33 26 -33 42c0 20 14 32 38 32c17 0 27 -5 46 -23'], + 0xE2A8: [675,10,661,31,641,'641 494c0 -45 -51 -84 -116 -94v-293c0 -46 13 -57 69 -57h6v-14c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c49 0 130 20 130 87v235c0 50 -15 60 -90 63 v17h192v-25c15 5 37 14 37 25c0 18 -52 27 -52 62c0 25 32 48 59 48c39 0 72 -33 72 -66zM371 504h-48l-187 97c-25 13 -36 26 -36 42c0 20 16 32 42 32c18 0 29 -5 51 -23'], + 0xE2A9: [896,14,797,25,787,'787 705c0 -45 -47 -84 -105 -94v-357c0 -189 -90 -268 -281 -268c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -147 60 -203 189 -203c82 0 153 31 182 79c18 29 26 68 26 136v270c0 100 -18 122 -104 128v19h152v-26 c13 5 33 14 33 25c0 18 -47 28 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66zM513 838c0 -20 -17 -38 -46 -59c-26 -18 -42 -31 -47 -40c-4 -7 -7 -16 -11 -30h-25c1 27 15 52 36 79c19 19 26 35 26 47c0 27 -18 42 -55 42c-18 0 -31 -4 -39 -10c-4 -2 -6 -5 -6 -8 c0 -4 18 -21 18 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 107 53c39 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE2AA: [896,14,894,37,874,'874 705c0 -45 -51 -84 -115 -94v-357c0 -189 -99 -268 -309 -268c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -147 67 -203 208 -203c91 0 169 31 201 79c20 29 28 68 28 136v270c0 100 -19 122 -114 128v19h167v-26 c15 5 37 14 37 25c0 18 -52 28 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM573 838c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -8 -16 -12 -30h-28c2 27 17 52 40 79c21 19 28 35 28 47c0 27 -19 42 -60 42c-20 0 -34 -4 -43 -10c-5 -2 -7 -5 -7 -8 c0 -4 21 -21 21 -29c0 -13 -11 -19 -34 -19c-27 0 -41 10 -41 32c0 30 48 53 117 53c44 0 75 -7 97 -22c16 -12 24 -24 24 -36'], + 0xE2AB: [684,10,584,20,574,'574 494c0 -45 -46 -84 -105 -94v-293c0 -46 12 -57 62 -57h6v-14c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c44 0 117 20 117 87v235c0 50 -13 60 -81 63v17 h174v-25c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM357 626c0 -20 -17 -38 -47 -59c-25 -18 -41 -31 -46 -40c-4 -7 -8 -16 -11 -30h-25c1 27 15 52 36 79c19 19 25 35 25 47c0 27 -17 42 -55 42c-17 0 -30 -4 -38 -10c-4 -2 -7 -5 -7 -8 c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19c-24 0 -37 10 -37 32c0 30 44 53 107 53c39 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE2AC: [684,10,661,31,641,'641 494c0 -45 -51 -84 -116 -94v-293c0 -46 13 -57 69 -57h6v-14c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c49 0 130 20 130 87v235c0 50 -15 60 -90 63 v17h192v-25c15 5 37 14 37 25c0 18 -52 27 -52 62c0 25 32 48 59 48c39 0 72 -33 72 -66zM401 626c0 -20 -18 -38 -51 -59c-27 -18 -46 -31 -50 -40c-5 -7 -9 -16 -13 -30h-27c1 27 17 52 40 79c20 19 27 35 27 47c0 27 -19 42 -60 42c-20 0 -34 -4 -43 -10 c-4 -2 -7 -5 -7 -8c0 -4 21 -21 21 -29c0 -13 -11 -19 -34 -19c-27 0 -41 10 -41 32c0 30 48 53 117 53c44 0 75 -7 97 -22c16 -12 24 -24 24 -36'], + 0xE2AD: [835,14,797,25,787,'787 705c0 -45 -47 -84 -105 -94v-357c0 -189 -90 -268 -281 -268c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -147 60 -203 189 -203c82 0 153 31 182 79c18 29 26 68 26 136v270c0 100 -18 122 -104 128v19h152v-26 c13 5 33 14 33 25c0 18 -47 28 -47 62c0 25 28 48 54 48c35 0 65 -33 65 -66zM585 835c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -31 11 -45 11c-25 0 -44 -15 -56 -46h-32c17 65 56 101 111 101c25 0 52 -6 77 -18l27 -12c21 -9 42 -15 58 -15 c25 0 40 12 58 50h32'], + 0xE2AE: [835,14,894,37,874,'874 705c0 -45 -51 -84 -115 -94v-357c0 -189 -99 -268 -309 -268c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -147 67 -203 208 -203c91 0 169 31 201 79c20 29 28 68 28 136v270c0 100 -19 122 -114 128v19h167v-26 c15 5 37 14 37 25c0 18 -52 28 -52 62c0 25 31 48 59 48c39 0 71 -33 71 -66zM653 835c-26 -76 -61 -106 -127 -106c-30 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-27 0 -48 -15 -61 -46h-35c18 65 61 101 122 101c26 0 57 -6 84 -18l29 -12c23 -9 46 -15 65 -15 c27 0 43 12 64 50h35'], + 0xE2AF: [643,10,584,20,574,'574 494c0 -45 -46 -84 -105 -94v-293c0 -46 12 -57 62 -57h6v-14c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c44 0 117 20 117 87v235c0 50 -13 60 -81 63v17 h174v-25c14 5 34 14 34 25c0 18 -47 27 -47 62c0 25 28 48 53 48c36 0 65 -33 65 -66zM429 643c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c17 65 56 101 111 101c24 0 52 -6 77 -18l27 -12c21 -9 41 -15 58 -15 c25 0 40 12 58 50h32'], + 0xE2B0: [643,10,661,31,641,'641 494c0 -45 -51 -84 -116 -94v-293c0 -46 13 -57 69 -57h6v-14c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c49 0 130 20 130 87v235c0 50 -15 60 -90 63 v17h192v-25c15 5 37 14 37 25c0 18 -52 27 -52 62c0 25 32 48 59 48c39 0 72 -33 72 -66zM481 643c-25 -76 -60 -106 -127 -106c-30 0 -48 4 -98 24l-28 11c-18 7 -35 11 -49 11c-28 0 -49 -15 -62 -46h-35c18 65 61 101 122 101c27 0 57 -6 85 -18l29 -12 c23 -9 46 -15 64 -15c28 0 43 12 64 50h35'], + 0xE2B1: [851,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM770 825c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26zM594 825c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26'], + 0xE2B2: [851,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM856 825c0 -13 -12 -24 -39 -33l-202 -80h-52l191 120c25 15 37 19 56 19c29 0 46 -10 46 -26zM663 825c0 -13 -13 -24 -39 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 46 -10 46 -26'], + 0xE2B3: [676,10,570,20,566,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M566 644c0 -16 -10 -29 -33 -42l-170 -97h-44l162 148c20 18 30 23 46 23c24 0 39 -12 39 -32zM383 644c0 -16 -10 -29 -33 -42l-169 -97h-44l161 148c20 18 30 23 46 23c25 0 39 -12 39 -32'], + 0xE2B4: [676,10,645,31,631,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M631 644c0 -16 -11 -29 -36 -42l-187 -97h-48l178 148c22 18 33 23 51 23c26 0 42 -12 42 -32zM430 644c0 -16 -11 -29 -36 -42l-186 -97h-49l178 148c22 18 33 23 51 23c26 0 42 -12 42 -32'], + 0xE2B5: [809,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM606 755h-342v54h342v-54'], + 0xE2B6: [809,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM676 755h-376v54h376v-54'], + 0xE2B7: [617,10,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M450 563h-342v54h342v-54'], + 0xE2B8: [617,10,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M504 563h-376v54h376v-54'], + 0xE2B9: [662,245,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-25 -41 -66 -70 -120 -86c-36 -12 -77 -24 -96 -52c-15 -24 -25 -51 -25 -83c0 -36 18 -61 51 -61c28 0 46 23 59 43l21 -14c-20 -39 -51 -81 -113 -81c-48 0 -85 38 -85 86c0 40 15 75 39 104 c11 15 27 29 42 41h-18c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19'], + 0xE2BA: [662,245,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-27 -41 -72 -70 -132 -86c-39 -12 -84 -24 -105 -52c-17 -24 -28 -51 -28 -83c0 -36 20 -61 56 -61c32 0 51 23 65 43l23 -14c-21 -39 -55 -81 -124 -81c-52 0 -93 38 -93 86c0 40 17 75 43 104 c12 15 29 29 46 41h-20c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19'], + 0xE2BB: [450,245,570,20,537,'537 36l-32 -8c-45 -12 -81 -40 -106 -77c-16 -24 -26 -51 -26 -83c0 -36 18 -61 51 -61c28 0 46 23 59 43l21 -14c-20 -39 -51 -81 -113 -81c-48 0 -85 38 -85 86c0 40 15 75 40 104c13 16 25 32 36 48v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252 c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14'], + 0xE2BC: [450,245,645,31,600,'600 36l-35 -8c-50 -12 -90 -40 -117 -77c-18 -24 -29 -51 -29 -83c0 -36 20 -61 56 -61c31 0 51 23 65 43l23 -14c-21 -39 -55 -81 -124 -81c-52 0 -94 38 -94 86c0 40 17 75 44 104c15 16 28 32 40 48v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252 c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14'], + 0xE2BD: [896,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM545 796c0 -55 -50 -99 -110 -99c-62 0 -109 44 -109 100c0 54 49 99 109 99s110 -45 110 -100zM507 796c0 36 -33 66 -71 66c-40 0 -73 -29 -73 -65s32 -66 71 -66c40 0 73 29 73 65'], + 0xE2BE: [896,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM608 796c0 -55 -54 -99 -121 -99c-68 0 -120 44 -120 100c0 54 55 99 120 99c67 0 121 -45 121 -100zM567 796c0 36 -36 66 -79 66s-80 -29 -80 -65s36 -66 78 -66c45 0 81 29 81 65'], + 0xE2BF: [690,10,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M388 590c0 -55 -49 -99 -110 -99s-108 44 -108 100c0 54 49 99 108 99c61 0 110 -45 110 -100zM351 590c0 36 -33 66 -71 66c-40 0 -73 -29 -73 -65s32 -66 70 -66c41 0 74 29 74 65'], + 0xE2C0: [690,10,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M436 590c0 -55 -54 -99 -121 -99c-68 0 -120 44 -120 100c0 54 55 99 120 99c67 0 121 -45 121 -100zM395 590c0 36 -36 66 -79 66s-79 -29 -79 -65s35 -66 77 -66c45 0 81 29 81 65'], + 0xE2C1: [835,14,814,25,786,'786 643c-91 -10 -104 -26 -104 -128v-261c0 -77 -10 -123 -36 -165c-43 -68 -126 -103 -245 -103c-187 0 -277 82 -277 255v312c0 73 -12 84 -99 90v19h312v-19c-88 -7 -100 -18 -100 -90v-320c0 -63 7 -100 27 -132c30 -47 84 -71 162 -71c82 0 153 31 182 79 c18 30 26 68 26 136v270c0 100 -18 122 -104 128v19h256v-19zM616 835c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c17 65 56 101 111 101c24 0 52 -6 77 -18l27 -12c21 -9 41 -15 58 -15c25 0 40 12 58 50h32'], + 0xE2C2: [835,14,914,37,873,'873 643c-99 -10 -114 -26 -114 -128v-261c0 -77 -11 -123 -40 -165c-47 -68 -138 -103 -269 -103c-206 0 -304 82 -304 255v312c0 73 -13 84 -109 90v19h342v-19c-96 -7 -110 -18 -110 -90v-320c0 -63 9 -100 31 -132c32 -47 91 -71 177 -71c91 0 169 31 201 79 c20 30 28 68 28 136v270c0 100 -19 122 -114 128v19h281v-19zM687 835c-26 -76 -61 -106 -127 -106c-31 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-28 0 -48 -15 -61 -46h-36c19 65 62 101 123 101c26 0 56 -6 84 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 65 50h35'], + 0xE2C3: [643,10,570,20,537,'537 36c-56 -14 -96 -25 -151 -45l-4 2v83l-47 -43c-30 -27 -73 -43 -114 -43c-80 0 -133 51 -133 130v252c0 46 -15 61 -68 64v14h161v-326c0 -42 35 -76 78 -76c34 0 68 12 99 36c13 9 18 24 18 51v235c0 50 -13 60 -81 63v17h174v-343c0 -46 12 -57 62 -57h6v-14z M460 643c-23 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c16 65 56 101 111 101c24 0 52 -6 77 -18l26 -12c21 -9 42 -15 59 -15c25 0 39 12 58 50h32'], + 0xE2C4: [643,10,645,31,600,'600 36c-62 -14 -106 -25 -166 -45l-5 2v83l-52 -43c-33 -27 -80 -43 -125 -43c-88 0 -146 51 -146 130v252c0 46 -17 61 -75 64v14h177v-326c0 -42 38 -76 85 -76c38 0 75 12 109 36c15 9 21 24 21 51v235c0 50 -15 60 -90 63v17h192v-343c0 -46 13 -57 69 -57h6v-14z M515 643c-26 -76 -61 -106 -127 -106c-30 0 -49 4 -98 24l-28 11c-18 7 -35 11 -50 11c-27 0 -48 -15 -61 -46h-35c18 65 61 101 122 101c26 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 43 12 64 50h35'], + 0xE2C5: [662,11,814,28,777,'777 643c-53 -3 -65 -14 -101 -93l-245 -561h-16l-271 549c-47 89 -62 103 -116 105v19h292v-19c-15 -1 -27 -2 -32 -2c-35 -2 -50 -12 -50 -31c0 -15 9 -38 45 -111l166 -338l162 367c13 30 21 57 21 73c0 28 -20 39 -81 42v19h226v-19'], + 0xE2C6: [662,11,914,39,863,'863 643c-58 -3 -71 -14 -111 -93l-269 -561h-18l-297 549c-52 89 -69 103 -129 105v19h322v-19c-17 -1 -30 -2 -35 -2c-39 -2 -56 -12 -56 -31c0 -15 10 -38 50 -111l183 -338l178 367c14 30 23 57 23 73c0 28 -22 39 -89 42v19h248v-19'], + 0xE2C7: [450,14,570,31,535,'535 435c-33 -3 -40 -10 -72 -78l-141 -321c-16 -37 -24 -50 -30 -50c-7 0 -14 8 -20 26c-3 8 -7 15 -9 21l-132 287c-51 103 -58 113 -100 115v15h216v-15c-39 -3 -51 -10 -51 -28c0 -9 3 -23 10 -37l112 -256l109 259c4 10 7 20 7 30c0 19 -17 29 -52 32v15h153v-15'], + 0xE2C8: [450,14,645,43,597,'597 435c-36 -3 -43 -10 -78 -78l-155 -321c-19 -37 -27 -50 -34 -50s-15 8 -22 26c-4 8 -7 15 -10 21l-145 287c-56 103 -64 113 -110 115v15h237v-15c-42 -3 -56 -10 -56 -28c0 -9 4 -23 11 -37l124 -256l120 259c4 10 7 20 7 30c0 19 -18 29 -57 32v15h168v-15'], + 0xE2C9: [662,11,1058,16,1035,'1035 643c-58 -10 -70 -19 -91 -71l-224 -583h-17l-176 423l-169 -423h-17l-212 537c-41 94 -57 112 -113 117v19h269v-19c-56 -3 -71 -10 -71 -32c0 -11 4 -28 12 -46l158 -376l118 282l-37 82c-37 80 -48 89 -111 90v19h294v-19c-59 -1 -85 -11 -85 -35 c0 -11 7 -30 17 -51l13 -30l145 -341l138 339c11 28 17 54 17 75c0 27 -19 38 -76 43v19h218v-19'], + 0xE2CA: [662,11,1182,26,1148,'1148 643c-64 -10 -78 -19 -101 -71l-247 -583h-18l-193 423l-187 -423h-18l-233 537c-45 94 -63 112 -125 117v19h297v-19c-62 -3 -79 -10 -79 -32c0 -11 5 -28 13 -46l174 -376l130 282l-40 82c-41 80 -53 89 -122 90v19h323v-19c-66 -1 -93 -11 -93 -35 c0 -11 7 -30 18 -51l14 -30l160 -341l151 339c12 28 20 54 20 75c0 27 -22 38 -84 43v19h240v-19'], + 0xE2CB: [450,14,814,33,773,'773 435c-22 -7 -25 -12 -45 -54l-151 -346c-18 -40 -24 -49 -31 -49s-11 6 -27 43l-100 236l-123 -240c-13 -26 -22 -39 -27 -39c-7 0 -16 14 -29 44l-149 342c-24 51 -33 61 -58 63v15h198v-15c-37 -4 -50 -12 -50 -33c0 -10 2 -20 6 -30l109 -261l100 199l-22 56 c-22 54 -35 65 -76 69v15h224v-15c-52 -7 -64 -14 -64 -36c0 -13 0 -13 18 -59l93 -224l99 222c12 27 19 51 19 66c0 17 -11 24 -49 31v15h135v-15'], + 0xE2CC: [450,14,914,45,860,'860 435c-24 -7 -28 -12 -50 -54l-167 -346c-19 -40 -25 -49 -34 -49c-7 0 -12 6 -29 43l-110 236l-135 -240c-15 -26 -25 -39 -31 -39c-7 0 -17 14 -31 44l-163 342c-27 51 -37 61 -65 63v15h218v-15c-41 -4 -55 -12 -55 -33c0 -10 2 -20 7 -30l120 -261l110 199l-24 56 c-25 54 -39 65 -84 69v15h246v-15c-57 -7 -71 -14 -71 -36c0 -13 0 -13 21 -59l102 -224l109 222c13 27 20 51 20 66c0 17 -12 24 -53 31v15h149v-15'], + 0xE2CD: [662,0,814,21,784,'784 0h-326v19c13 1 25 2 29 2c38 1 55 11 55 29c0 15 -19 49 -56 98l-104 140l-131 -148c-41 -46 -57 -71 -57 -86c0 -23 20 -31 83 -35v-19h-256v19c56 4 62 8 160 114l172 193l-120 160c-107 139 -127 154 -199 157v19h332v-19l-30 -1c-37 -1 -53 -9 -53 -29 c0 -22 26 -65 93 -150l47 -59l124 138c32 36 44 54 44 69c0 23 -18 30 -77 32v19h262v-19c-71 -4 -93 -16 -164 -94l-161 -182l211 -274c48 -58 64 -68 122 -74v-19'], + 0xE2CE: [662,0,914,32,872,'872 0h-360v19c15 1 28 2 33 2c41 1 61 11 61 29c0 15 -22 49 -62 98l-115 140l-144 -148c-45 -46 -63 -71 -63 -86c0 -23 22 -31 92 -35v-19h-282v19c62 4 68 8 176 114l190 193l-132 160c-119 139 -141 154 -219 157v19h365v-19l-34 -1c-40 -1 -58 -9 -58 -29 c0 -22 29 -65 103 -150l51 -59l136 138c36 36 49 54 49 69c0 23 -19 30 -85 32v19h288v-19c-77 -4 -101 -16 -180 -94l-177 -182l233 -274c52 -58 70 -68 134 -74v-19'], + 0xE2CF: [450,0,570,29,537,'537 0h-221v15c36 2 44 6 44 24c0 6 -2 12 -7 18l-100 140l-87 -123c-14 -20 -22 -35 -22 -41c0 -13 13 -18 44 -18v-15h-159v15c36 3 47 10 80 51l125 165l-103 144c-34 47 -52 60 -85 60h-10v15h228v-15c-33 -1 -47 -8 -47 -22c0 -13 20 -47 50 -89l16 -20 c14 20 27 38 33 44c27 31 41 53 41 65c0 14 -11 20 -44 22v15h173v-15c-35 -1 -68 -17 -89 -44l-91 -120l141 -196c34 -44 56 -60 90 -60v-15'], + 0xE2D0: [450,0,645,41,600,'600 0h-244v15c40 2 49 6 49 24c0 6 -3 12 -7 18l-111 140l-95 -123c-16 -20 -24 -35 -24 -41c0 -13 14 -18 48 -18v-15h-175v15c40 3 52 10 88 51l138 165l-114 144c-37 47 -57 60 -93 60h-11v15h251v-15c-37 -1 -53 -8 -53 -22c0 -13 22 -47 56 -89l17 -20 c16 20 30 38 36 44c31 31 45 53 45 65c0 14 -12 20 -48 22v15h191v-15c-39 -1 -75 -17 -98 -44l-101 -120l155 -196c38 -44 62 -60 100 -60v-15'], + 0xE2D1: [662,0,814,34,783,'783 643c-56 -4 -84 -26 -151 -114l-163 -226v-194c0 -76 15 -88 113 -90v-19h-337v19c101 4 112 14 112 101v174l-145 192c-110 141 -125 155 -178 157v19h308v-19c-12 -1 -23 -1 -27 -1c-35 -2 -51 -11 -51 -29c0 -11 7 -28 19 -44l163 -222l157 226c10 15 15 27 15 37 c0 24 -18 32 -76 33v19h241v-19'], + 0xE2D2: [662,0,914,47,871,'871 643c-62 -4 -94 -26 -167 -114l-179 -226v-194c0 -76 17 -88 124 -90v-19h-370v19c110 4 122 14 122 101v174l-158 192c-121 141 -138 155 -196 157v19h338v-19c-13 -1 -25 -1 -30 -1c-39 -2 -55 -11 -55 -29c0 -11 7 -28 20 -44l179 -222l173 226c11 15 17 27 17 37 c0 24 -20 32 -83 33v19h265v-19'], + 0xE2D3: [450,218,570,25,533,'533 435c-27 -3 -39 -13 -53 -45l-170 -408c-59 -144 -112 -200 -186 -200c-46 0 -81 25 -81 58c0 24 22 44 47 44c19 0 38 -4 59 -11c11 -5 21 -7 27 -7c16 0 40 19 55 45c19 30 44 93 44 108c0 8 -4 20 -12 37l-181 348c-9 17 -28 28 -57 32v14h227v-15 c-47 -2 -64 -9 -64 -27c0 -11 5 -24 11 -38l127 -253l106 276c4 7 5 13 5 17c0 16 -18 25 -53 25v15h149v-15'], + 0xE2D4: [450,218,645,37,595,'595 435c-29 -3 -43 -13 -58 -45l-187 -408c-65 -144 -123 -200 -204 -200c-51 0 -90 25 -90 58c0 24 25 44 52 44c21 0 41 -4 64 -11c13 -5 23 -7 31 -7c17 0 43 19 60 45c21 30 49 93 49 108c0 8 -5 20 -14 37l-199 348c-10 17 -31 28 -62 32v14h249v-15 c-52 -2 -70 -9 -70 -27c0 -11 5 -24 12 -38l139 -253l118 276c3 7 4 13 4 17c0 16 -19 25 -58 25v15h164v-15'], + 0xE2D5: [851,0,814,34,783,'783 643c-56 -4 -84 -26 -151 -114l-163 -226v-194c0 -76 15 -88 113 -90v-19h-337v19c101 4 112 14 112 101v174l-145 192c-110 141 -125 155 -178 157v19h308v-19c-12 -1 -23 -1 -27 -1c-35 -2 -51 -11 -51 -29c0 -11 7 -28 19 -44l163 -222l157 226c10 15 15 27 15 37 c0 24 -18 32 -76 33v19h241v-19zM583 825c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26'], + 0xE2D6: [851,0,914,47,871,'871 643c-62 -4 -94 -26 -167 -114l-179 -226v-194c0 -76 17 -88 124 -90v-19h-370v19c110 4 122 14 122 101v174l-158 192c-121 141 -138 155 -196 157v19h338v-19c-13 -1 -25 -1 -30 -1c-39 -2 -55 -11 -55 -29c0 -11 7 -28 20 -44l179 -222l173 226c11 15 17 27 17 37 c0 24 -20 32 -83 33v19h265v-19zM650 825c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120c24 15 36 19 55 19c29 0 46 -10 46 -26'], + 0xE2D7: [675,218,570,25,533,'533 435c-27 -3 -39 -13 -53 -45l-170 -408c-59 -144 -112 -200 -186 -200c-46 0 -81 25 -81 58c0 24 22 44 47 44c19 0 38 -4 59 -11c11 -5 21 -7 27 -7c16 0 40 19 55 45c19 30 44 93 44 108c0 8 -4 20 -12 37l-181 348c-9 17 -28 28 -57 32v14h227v-15 c-47 -2 -64 -9 -64 -27c0 -11 5 -24 11 -38l127 -253l106 276c4 7 5 13 5 17c0 16 -18 25 -53 25v15h149v-15zM484 643c0 -16 -10 -29 -33 -42l-169 -97h-44l161 148c20 18 30 23 47 23c24 0 38 -12 38 -32'], + 0xE2D8: [675,218,645,37,595,'595 435c-29 -3 -43 -13 -58 -45l-187 -408c-65 -144 -123 -200 -204 -200c-51 0 -90 25 -90 58c0 24 25 44 52 44c21 0 41 -4 64 -11c13 -5 23 -7 31 -7c17 0 43 19 60 45c21 30 49 93 49 108c0 8 -5 20 -14 37l-199 348c-10 17 -31 28 -62 32v14h249v-15 c-52 -2 -70 -9 -70 -27c0 -11 5 -24 12 -38l139 -253l118 276c3 7 4 13 4 17c0 16 -19 25 -58 25v15h164v-15zM542 643c0 -16 -11 -29 -37 -42l-186 -97h-49l178 148c22 18 33 23 51 23c27 0 43 -12 43 -32'], + 0xE2D9: [832,0,814,34,783,'783 643c-56 -4 -84 -26 -151 -114l-163 -226v-194c0 -76 15 -88 113 -90v-19h-337v19c101 4 112 14 112 101v174l-145 192c-110 141 -125 155 -178 157v19h308v-19c-12 -1 -23 -1 -27 -1c-35 -2 -51 -11 -51 -29c0 -11 7 -28 19 -44l163 -222l157 226c10 15 15 27 15 37 c0 24 -18 32 -76 33v19h241v-19zM359 782c0 -27 -26 -49 -56 -49s-53 22 -53 50c0 26 25 49 53 49c30 0 56 -23 56 -50zM578 782c0 -27 -26 -49 -56 -49s-53 22 -53 50c0 26 25 49 53 49c30 0 56 -23 56 -50'], + 0xE2DA: [832,0,914,47,871,'871 643c-62 -4 -94 -26 -167 -114l-179 -226v-194c0 -76 17 -88 124 -90v-19h-370v19c110 4 122 14 122 101v174l-158 192c-121 141 -138 155 -196 157v19h338v-19c-13 -1 -25 -1 -30 -1c-39 -2 -55 -11 -55 -29c0 -11 7 -28 20 -44l179 -222l173 226c11 15 17 27 17 37 c0 24 -20 32 -83 33v19h265v-19zM404 782c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM644 782c0 -27 -27 -49 -61 -49c-33 0 -58 22 -58 50c0 26 27 49 58 49c34 0 61 -23 61 -50'], + 0xE2DB: [640,218,570,25,533,'533 435c-27 -3 -39 -13 -53 -45l-170 -408c-59 -144 -112 -200 -186 -200c-46 0 -81 25 -81 58c0 24 22 44 47 44c19 0 38 -4 59 -11c11 -5 21 -7 27 -7c16 0 40 19 55 45c19 30 44 93 44 108c0 8 -4 20 -12 37l-181 348c-9 17 -28 28 -57 32v14h227v-15 c-47 -2 -64 -9 -64 -27c0 -11 5 -24 11 -38l127 -253l106 276c4 7 5 13 5 17c0 16 -18 25 -53 25v15h149v-15zM264 590c0 -27 -25 -49 -56 -49c-30 0 -53 22 -53 50c0 26 26 49 53 49c31 0 56 -23 56 -50zM483 590c0 -27 -25 -49 -56 -49c-30 0 -53 22 -53 50 c0 26 25 49 53 49c31 0 56 -23 56 -50'], + 0xE2DC: [640,218,645,37,595,'595 435c-29 -3 -43 -13 -58 -45l-187 -408c-65 -144 -123 -200 -204 -200c-51 0 -90 25 -90 58c0 24 25 44 52 44c21 0 41 -4 64 -11c13 -5 23 -7 31 -7c17 0 43 19 60 45c21 30 49 93 49 108c0 8 -5 20 -14 37l-199 348c-10 17 -31 28 -62 32v14h249v-15 c-52 -2 -70 -9 -70 -27c0 -11 5 -24 12 -38l139 -253l118 276c3 7 4 13 4 17c0 16 -19 25 -58 25v15h164v-15zM300 590c0 -27 -28 -49 -62 -49c-33 0 -58 22 -58 50c0 26 28 49 58 49c34 0 62 -23 62 -50zM540 590c0 -27 -28 -49 -61 -49s-58 22 -58 50c0 26 27 49 58 49 c33 0 61 -23 61 -50'], + 0xE2DD: [662,191,814,34,783,'783 643c-56 -4 -84 -26 -151 -114l-163 -226v-194c0 -76 15 -88 113 -90v-19h-337v19c101 4 112 14 112 101v174l-145 192c-110 141 -125 155 -178 157v19h308v-19c-12 -1 -23 -1 -27 -1c-35 -2 -51 -11 -51 -29c0 -11 7 -28 19 -44l163 -222l157 226c10 15 15 27 15 37 c0 24 -18 32 -76 33v19h241v-19zM469 -140c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE2DE: [662,191,914,47,871,'871 643c-62 -4 -94 -26 -167 -114l-179 -226v-194c0 -76 17 -88 124 -90v-19h-370v19c110 4 122 14 122 101v174l-158 192c-121 141 -138 155 -196 157v19h338v-19c-13 -1 -25 -1 -30 -1c-39 -2 -55 -11 -55 -29c0 -11 7 -28 20 -44l179 -222l173 226c11 15 17 27 17 37 c0 24 -20 32 -83 33v19h265v-19zM525 -140c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE2DF: [450,218,570,25,533,'533 435c-27 -3 -39 -13 -53 -45l-170 -408c-59 -144 -112 -200 -186 -200c-46 0 -81 25 -81 58c0 24 22 44 47 44c19 0 38 -4 59 -11c11 -5 21 -7 27 -7c16 0 40 19 55 45c19 30 44 93 44 108c0 8 -4 20 -12 37l-181 348c-9 17 -28 28 -57 32v14h227v-15 c-47 -2 -64 -9 -64 -27c0 -11 5 -24 11 -38l127 -253l106 276c4 7 5 13 5 17c0 16 -18 25 -53 25v15h149v-15zM479 -140c0 -29 -25 -51 -56 -51s-57 22 -57 51c0 28 26 51 57 51s56 -23 56 -51'], + 0xE2E0: [450,218,645,37,595,'595 435c-29 -3 -43 -13 -58 -45l-187 -408c-65 -144 -123 -200 -204 -200c-51 0 -90 25 -90 58c0 24 25 44 52 44c21 0 41 -4 64 -11c13 -5 23 -7 31 -7c17 0 43 19 60 45c21 30 49 93 49 108c0 8 -5 20 -14 37l-199 348c-10 17 -31 28 -62 32v14h249v-15 c-52 -2 -70 -9 -70 -27c0 -11 5 -24 12 -38l139 -253l118 276c3 7 4 13 4 17c0 16 -19 25 -58 25v15h164v-15zM535 -140c0 -29 -26 -51 -61 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 61 -23 61 -51'], + 0xE2E1: [662,0,570,-48,573,'573 643c-56 -11 -89 -38 -130 -107l-101 -184h161v-40h-183l-7 -14v-76h190v-40h-190v-73c0 -70 17 -88 88 -90v-19h-269v19c74 3 87 18 87 101v62h-191v40h191v76l-8 14h-183v40h158l-104 173c-61 99 -80 115 -130 118v19h267v-19c-52 -1 -71 -9 -71 -29 c0 -13 5 -29 14 -45l130 -221l123 220c10 17 15 34 15 44c0 19 -23 31 -56 31h-15v19h214v-19'], + 0xE2E2: [662,0,645,-44,640,'640 643c-62 -11 -98 -38 -143 -107l-112 -184h177v-40h-201l-8 -14v-76h209v-40h-209v-73c0 -70 19 -88 97 -90v-19h-296v19c81 3 96 18 96 101v62h-211v40h211v76l-9 14h-202v40h175l-115 173c-67 99 -87 115 -143 118v19h294v-19c-57 -1 -79 -9 -79 -29 c0 -13 6 -29 16 -45l143 -221l135 220c11 17 17 34 17 44c0 19 -25 31 -61 31h-17v19h236v-19'], + 0xE2E3: [851,0,814,34,783,'783 643c-56 -4 -84 -26 -151 -114l-163 -226v-194c0 -76 15 -88 113 -90v-19h-337v19c101 4 112 14 112 101v174l-145 192c-110 141 -125 155 -178 157v19h308v-19c-12 -1 -23 -1 -27 -1c-35 -2 -51 -11 -51 -29c0 -11 7 -28 19 -44l163 -222l157 226c10 15 15 27 15 37 c0 24 -18 32 -76 33v19h241v-19zM509 712h-47l-184 80c-24 9 -35 20 -35 33c0 16 16 26 42 26c18 0 29 -4 51 -19'], + 0xE2E4: [851,0,914,47,871,'871 643c-62 -4 -94 -26 -167 -114l-179 -226v-194c0 -76 17 -88 124 -90v-19h-370v19c110 4 122 14 122 101v174l-158 192c-121 141 -138 155 -196 157v19h338v-19c-13 -1 -25 -1 -30 -1c-39 -2 -55 -11 -55 -29c0 -11 7 -28 20 -44l179 -222l173 226c11 15 17 27 17 37 c0 24 -20 32 -83 33v19h265v-19zM569 712h-52l-202 80c-26 9 -38 20 -38 33c0 16 16 26 46 26c19 0 31 -4 55 -19'], + 0xE2E5: [675,218,570,25,533,'533 435c-27 -3 -39 -13 -53 -45l-170 -408c-59 -144 -112 -200 -186 -200c-46 0 -81 25 -81 58c0 24 22 44 47 44c19 0 38 -4 59 -11c11 -5 21 -7 27 -7c16 0 40 19 55 45c19 30 44 93 44 108c0 8 -4 20 -12 37l-181 348c-9 17 -28 28 -57 32v14h227v-15 c-47 -2 -64 -9 -64 -27c0 -11 5 -24 11 -38l127 -253l106 276c4 7 5 13 5 17c0 16 -18 25 -53 25v15h149v-15zM399 504h-44l-169 97c-23 13 -33 26 -33 42c0 20 14 32 39 32c16 0 26 -5 46 -23'], + 0xE2E6: [675,218,645,37,595,'595 435c-29 -3 -43 -13 -58 -45l-187 -408c-65 -144 -123 -200 -204 -200c-51 0 -90 25 -90 58c0 24 25 44 52 44c21 0 41 -4 64 -11c13 -5 23 -7 31 -7c17 0 43 19 60 45c21 30 49 93 49 108c0 8 -5 20 -14 37l-199 348c-10 17 -31 28 -62 32v14h249v-15 c-52 -2 -70 -9 -70 -27c0 -11 5 -24 12 -38l139 -253l118 276c3 7 4 13 4 17c0 16 -19 25 -58 25v15h164v-15zM448 504h-48l-186 97c-26 13 -37 26 -37 42c0 20 16 32 43 32c18 0 29 -5 50 -23'], + 0xE2E7: [896,0,814,34,783,'783 643c-56 -4 -84 -26 -151 -114l-163 -226v-194c0 -76 15 -88 113 -90v-19h-337v19c101 4 112 14 112 101v174l-145 192c-110 141 -125 155 -178 157v19h308v-19c-12 -1 -23 -1 -27 -1c-35 -2 -51 -11 -51 -29c0 -11 7 -28 19 -44l163 -222l157 226c10 15 15 27 15 37 c0 24 -18 32 -76 33v19h241v-19zM522 838c0 -20 -17 -38 -47 -59c-25 -18 -41 -31 -46 -40c-4 -7 -8 -16 -11 -30h-25c1 27 15 52 36 79c19 19 25 35 25 47c0 27 -17 42 -55 42c-17 0 -30 -4 -38 -10c-4 -2 -7 -5 -7 -8c0 -4 19 -21 19 -29c0 -13 -10 -19 -31 -19 c-24 0 -37 10 -37 32c0 30 44 53 107 53c39 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE2E8: [896,0,914,47,871,'871 643c-62 -4 -94 -26 -167 -114l-179 -226v-194c0 -76 17 -88 124 -90v-19h-370v19c110 4 122 14 122 101v174l-158 192c-121 141 -138 155 -196 157v19h338v-19c-13 -1 -25 -1 -30 -1c-39 -2 -55 -11 -55 -29c0 -11 7 -28 20 -44l179 -222l173 226c11 15 17 27 17 37 c0 24 -20 32 -83 33v19h265v-19zM583 838c0 -20 -18 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -8 -16 -12 -30h-28c1 27 17 52 40 79c21 19 28 35 28 47c0 27 -20 42 -61 42c-19 0 -34 -4 -42 -10c-5 -2 -7 -5 -7 -8c0 -4 20 -21 20 -29c0 -13 -11 -19 -34 -19 c-26 0 -41 10 -41 32c0 30 49 53 118 53c43 0 75 -7 96 -22c16 -12 25 -24 25 -36'], + 0xE2E9: [684,218,570,25,533,'533 435c-27 -3 -39 -13 -53 -45l-170 -408c-59 -144 -112 -200 -186 -200c-46 0 -81 25 -81 58c0 24 22 44 47 44c19 0 38 -4 59 -11c11 -5 21 -7 27 -7c16 0 40 19 55 45c19 30 44 93 44 108c0 8 -4 20 -12 37l-181 348c-9 17 -28 28 -57 32v14h227v-15 c-47 -2 -64 -9 -64 -27c0 -11 5 -24 11 -38l127 -253l106 276c4 7 5 13 5 17c0 16 -18 25 -53 25v15h149v-15zM427 626c0 -20 -17 -38 -46 -59c-26 -18 -42 -31 -46 -40c-5 -7 -8 -16 -11 -30h-26c1 27 16 52 37 79c18 19 25 35 25 47c0 27 -18 42 -55 42 c-18 0 -31 -4 -39 -10c-4 -2 -6 -5 -6 -8c0 -4 18 -21 18 -29c0 -13 -9 -19 -30 -19c-25 0 -38 10 -38 32c0 30 44 53 107 53c40 0 68 -7 88 -22c14 -12 22 -24 22 -36'], + 0xE2EA: [684,218,645,37,595,'595 435c-29 -3 -43 -13 -58 -45l-187 -408c-65 -144 -123 -200 -204 -200c-51 0 -90 25 -90 58c0 24 25 44 52 44c21 0 41 -4 64 -11c13 -5 23 -7 31 -7c17 0 43 19 60 45c21 30 49 93 49 108c0 8 -5 20 -14 37l-199 348c-10 17 -31 28 -62 32v14h249v-15 c-52 -2 -70 -9 -70 -27c0 -11 5 -24 12 -38l139 -253l118 276c3 7 4 13 4 17c0 16 -19 25 -58 25v15h164v-15zM479 626c0 -20 -19 -38 -51 -59c-28 -18 -46 -31 -51 -40c-5 -7 -9 -16 -12 -30h-28c1 27 17 52 40 79c21 19 28 35 28 47c0 27 -20 42 -61 42 c-19 0 -34 -4 -42 -10c-5 -2 -7 -5 -7 -8c0 -4 20 -21 20 -29c0 -13 -11 -19 -34 -19c-26 0 -41 10 -41 32c0 30 49 53 118 53c43 0 75 -7 96 -22c16 -12 25 -24 25 -36'], + 0xE2EB: [835,0,814,34,783,'783 643c-56 -4 -84 -26 -151 -114l-163 -226v-194c0 -76 15 -88 113 -90v-19h-337v19c101 4 112 14 112 101v174l-145 192c-110 141 -125 155 -178 157v19h308v-19c-12 -1 -23 -1 -27 -1c-35 -2 -51 -11 -51 -29c0 -11 7 -28 19 -44l163 -222l157 226c10 15 15 27 15 37 c0 24 -18 32 -76 33v19h241v-19zM594 835c-23 -76 -55 -106 -115 -106c-28 0 -44 4 -89 24l-26 11c-16 7 -32 11 -45 11c-25 0 -44 -15 -56 -46h-32c17 65 56 101 111 101c24 0 52 -6 77 -18l27 -12c21 -9 41 -15 58 -15c25 0 40 12 58 50h32'], + 0xE2EC: [835,0,914,47,871,'871 643c-62 -4 -94 -26 -167 -114l-179 -226v-194c0 -76 17 -88 124 -90v-19h-370v19c110 4 122 14 122 101v174l-158 192c-121 141 -138 155 -196 157v19h338v-19c-13 -1 -25 -1 -30 -1c-39 -2 -55 -11 -55 -29c0 -11 7 -28 20 -44l179 -222l173 226c11 15 17 27 17 37 c0 24 -20 32 -83 33v19h265v-19zM663 835c-26 -76 -61 -106 -128 -106c-30 0 -48 4 -98 24l-27 11c-19 7 -35 11 -50 11c-28 0 -48 -15 -62 -46h-35c18 65 62 101 122 101c27 0 57 -6 85 -18l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h36'], + 0xE2ED: [643,218,570,25,533,'533 435c-27 -3 -39 -13 -53 -45l-170 -408c-59 -144 -112 -200 -186 -200c-46 0 -81 25 -81 58c0 24 22 44 47 44c19 0 38 -4 59 -11c11 -5 21 -7 27 -7c16 0 40 19 55 45c19 30 44 93 44 108c0 8 -4 20 -12 37l-181 348c-9 17 -28 28 -57 32v14h227v-15 c-47 -2 -64 -9 -64 -27c0 -11 5 -24 11 -38l127 -253l106 276c4 7 5 13 5 17c0 16 -18 25 -53 25v15h149v-15zM500 643c-24 -76 -55 -106 -116 -106c-27 0 -44 4 -89 24l-25 11c-17 7 -32 11 -45 11c-26 0 -44 -15 -57 -46h-31c16 65 56 101 111 101c24 0 51 -6 77 -18 l26 -12c21 -9 42 -15 58 -15c26 0 40 12 59 50h32'], + 0xE2EE: [643,218,645,37,595,'595 435c-29 -3 -43 -13 -58 -45l-187 -408c-65 -144 -123 -200 -204 -200c-51 0 -90 25 -90 58c0 24 25 44 52 44c21 0 41 -4 64 -11c13 -5 23 -7 31 -7c17 0 43 19 60 45c21 30 49 93 49 108c0 8 -5 20 -14 37l-199 348c-10 17 -31 28 -62 32v14h249v-15 c-52 -2 -70 -9 -70 -27c0 -11 5 -24 12 -38l139 -253l118 276c3 7 4 13 4 17c0 16 -19 25 -58 25v15h164v-15zM558 643c-25 -76 -60 -106 -127 -106c-30 0 -48 4 -98 24l-27 11c-19 7 -36 11 -50 11c-28 0 -48 -15 -62 -46h-35c18 65 62 101 122 101c27 0 57 -6 85 -18 l29 -12c23 -9 46 -15 64 -15c28 0 44 12 64 50h35'], + 0xE2EF: [662,0,692,20,667,'667 176l-27 -176h-620v15l481 609h-243c-73 0 -123 -14 -148 -43c-19 -21 -27 -41 -37 -90h-29l22 171h579v-15l-475 -609h282c63 0 111 14 138 39c22 22 33 43 51 99h26'], + 0xE2F0: [662,0,779,31,742,'742 176l-29 -176h-682v15l529 609h-268c-80 0 -134 -14 -162 -43c-20 -21 -30 -41 -41 -90h-31l24 171h636v-15l-523 -609h311c69 0 123 14 152 39c24 22 36 43 57 99h27'], + 0xE2F1: [450,0,508,40,470,'470 135l-16 -135h-414v15l292 405h-151c-66 0 -83 -15 -93 -88h-20l4 118h381v-15l-296 -405h152c56 0 94 9 109 26c14 17 21 33 32 83'], + 0xE2F2: [450,0,577,53,526,'526 135l-17 -135h-456v15l322 405h-167c-73 0 -91 -15 -102 -88h-22l4 118h420v-15l-326 -405h167c62 0 103 9 120 26c16 17 23 33 35 83'], + 0xE2F3: [851,0,692,20,667,'667 176l-27 -176h-620v15l481 609h-243c-73 0 -123 -14 -148 -43c-19 -21 -27 -41 -37 -90h-29l22 171h579v-15l-475 -609h282c63 0 111 14 138 39c22 22 33 43 51 99h26zM526 825c0 -13 -11 -24 -35 -33l-184 -80h-47l174 120c22 15 33 19 50 19c27 0 42 -10 42 -26'], + 0xE2F4: [851,0,779,31,742,'742 176l-29 -176h-682v15l529 609h-268c-80 0 -134 -14 -162 -43c-20 -21 -30 -41 -41 -90h-31l24 171h636v-15l-523 -609h311c69 0 123 14 152 39c24 22 36 43 57 99h27zM587 825c0 -13 -12 -24 -38 -33l-202 -80h-52l191 120c24 15 36 19 56 19c29 0 45 -10 45 -26'], + 0xE2F5: [675,0,508,40,470,'470 135l-16 -135h-414v15l292 405h-151c-66 0 -83 -15 -93 -88h-20l4 118h381v-15l-296 -405h152c56 0 94 9 109 26c14 17 21 33 32 83zM428 643c0 -16 -10 -29 -33 -42l-169 -97h-44l161 148c20 18 30 23 47 23c24 0 38 -12 38 -32'], + 0xE2F6: [675,0,577,53,526,'526 135l-17 -135h-456v15l322 405h-167c-73 0 -91 -15 -102 -88h-22l4 118h420v-15l-326 -405h167c62 0 103 9 120 26c16 17 23 33 35 83zM480 643c0 -16 -11 -29 -36 -42l-187 -97h-48l178 148c21 18 32 23 50 23c27 0 43 -12 43 -32'], + 0xE2F7: [847,0,692,20,667,'667 176l-27 -176h-620v15l481 609h-243c-73 0 -123 -14 -148 -43c-19 -21 -27 -41 -37 -90h-29l22 171h579v-15l-475 -609h282c63 0 111 14 138 39c22 22 33 43 51 99h26zM546 847l-148 -129h-84l-149 129h53l137 -79l138 79h53'], + 0xE2F8: [847,0,779,31,742,'742 176l-29 -176h-682v15l529 609h-268c-80 0 -134 -14 -162 -43c-20 -21 -30 -41 -41 -90h-31l24 171h636v-15l-523 -609h311c69 0 123 14 152 39c24 22 36 43 57 99h27zM609 847l-162 -129h-93l-163 129h58l151 -79l151 79h58'], + 0xE2F9: [674,0,508,40,470,'470 135l-16 -135h-414v15l292 405h-151c-66 0 -83 -15 -93 -88h-20l4 118h381v-15l-296 -405h152c56 0 94 9 109 26c14 17 21 33 32 83zM434 674l-138 -167h-68l-137 167h38l133 -103l134 103h38'], + 0xE2FA: [674,0,577,53,526,'526 135l-17 -135h-456v15l322 405h-167c-73 0 -91 -15 -102 -88h-22l4 118h420v-15l-326 -405h167c62 0 103 9 120 26c16 17 23 33 35 83zM486 674l-151 -167h-75l-150 167h41l146 -103l148 103h41'], + 0xE2FB: [833,0,692,20,667,'667 176l-27 -176h-620v15l481 609h-243c-73 0 -123 -14 -148 -43c-19 -21 -27 -41 -37 -90h-29l22 171h579v-15l-475 -609h282c63 0 111 14 138 39c22 22 33 43 51 99h26zM412 782c0 -29 -25 -51 -57 -51c-30 0 -56 22 -56 51c0 28 26 51 56 51c32 0 57 -23 57 -51'], + 0xE2FC: [833,0,779,31,742,'742 176l-29 -176h-682v15l529 609h-268c-80 0 -134 -14 -162 -43c-20 -21 -30 -41 -41 -90h-31l24 171h636v-15l-523 -609h311c69 0 123 14 152 39c24 22 36 43 57 99h27zM462 782c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE2FD: [641,0,508,40,470,'470 135l-16 -135h-414v15l292 405h-151c-66 0 -83 -15 -93 -88h-20l4 118h381v-15l-296 -405h152c56 0 94 9 109 26c14 17 21 33 32 83zM318 590c0 -29 -24 -51 -56 -51c-31 0 -56 22 -56 51c0 28 25 51 56 51c32 0 56 -23 56 -51'], + 0xE2FE: [641,0,577,53,526,'526 135l-17 -135h-456v15l322 405h-167c-73 0 -91 -15 -102 -88h-22l4 118h420v-15l-326 -405h167c62 0 103 9 120 26c16 17 23 33 35 83zM359 590c0 -29 -27 -51 -62 -51c-34 0 -62 22 -62 51c0 28 28 51 62 51c35 0 62 -23 62 -51'], + 0xE2FF: [676,14,570,36,534,'534 330c0 -121 -42 -237 -106 -292c-40 -35 -87 -52 -143 -52c-64 0 -120 24 -161 68c-51 56 -88 173 -88 282c0 117 42 232 106 288c41 35 87 52 147 52c145 0 245 -141 245 -346zM428 328c0 209 -49 322 -142 322c-94 0 -144 -111 -144 -323c0 -208 48 -315 143 -315 s143 107 143 316'], + 0xE300: [676,14,645,49,596,'596 330c0 -121 -46 -237 -116 -292c-44 -35 -96 -52 -157 -52c-71 0 -132 24 -177 68c-57 56 -97 173 -97 282c0 117 46 232 116 288c45 35 96 52 162 52c159 0 269 -141 269 -346zM480 328c0 209 -55 322 -156 322c-104 0 -159 -111 -159 -323c0 -208 53 -315 158 -315 c104 0 157 107 157 316'], + 0xE301: [668,0,692,-46,630,'630 0h-270v16c70 6 86 15 86 53c0 8 -1 17 -3 26l-22 131h-242l-62 -113c-19 -34 -22 -43 -22 -62c0 -25 9 -30 65 -35v-16h-206v16c44 8 55 19 142 152l319 500h28l104 -566c13 -73 21 -81 83 -86v-16zM416 262l-48 260l-165 -260h213'], + 0xE302: [668,0,779,-42,702,'702 0h-297v16c77 6 94 15 94 53c0 8 -1 17 -2 26l-24 131h-267l-69 -113c-20 -34 -24 -43 -24 -62c0 -25 10 -30 72 -35v-16h-227v16c49 8 61 19 156 152l351 500h32l113 -566c15 -73 23 -81 92 -86v-16zM466 262l-53 260l-181 -260h234'], + 0xE303: [441,11,570,29,534,'534 100c-83 -91 -109 -110 -153 -110c-31 0 -44 12 -44 41c0 25 2 33 25 115c-97 -124 -144 -157 -221 -157c-70 0 -112 41 -112 111c0 159 168 341 314 341c48 0 80 -21 88 -58l12 48l4 3l67 7l8 -3c-3 -9 -4 -11 -7 -21c-52 -171 -98 -343 -98 -363c0 -7 7 -13 15 -13 c10 0 24 9 58 41l30 28zM412 358c0 35 -25 59 -62 61c-46 3 -98 -31 -144 -92c-46 -63 -85 -161 -85 -215c0 -46 24 -74 64 -74c32 0 69 17 96 44c74 74 131 192 131 276'], + 0xE304: [441,11,645,41,596,'596 100c-91 -91 -120 -110 -168 -110c-34 0 -49 12 -49 41c0 25 3 33 28 115c-106 -124 -158 -157 -243 -157c-77 0 -123 41 -123 111c0 159 185 341 346 341c52 0 87 -21 96 -58l14 48l3 3l74 7l9 -3c-3 -9 -4 -11 -8 -21c-56 -171 -107 -343 -107 -363 c0 -7 7 -13 17 -13c11 0 25 9 63 41l33 28zM462 358c0 35 -27 59 -68 61c-51 3 -108 -31 -159 -92c-50 -63 -93 -161 -93 -215c0 -46 27 -74 70 -74c35 0 77 17 106 44c82 74 144 192 144 276'], + 0xE305: [653,0,692,1,657,'657 506c0 -41 -17 -74 -47 -98c-36 -28 -68 -40 -146 -57c105 -41 139 -78 139 -151c0 -119 -119 -200 -292 -200h-310v16c62 10 70 16 89 74l136 442c7 25 12 49 12 64c0 29 -16 36 -85 41v16h284c142 0 220 -52 220 -147zM484 204c0 55 -27 99 -74 115 c-22 8 -69 12 -138 12l-35 -119c-26 -80 -39 -127 -39 -140c0 -28 24 -42 71 -42c134 0 215 66 215 174zM546 515c0 74 -40 108 -129 108c-43 0 -56 -6 -63 -28l-71 -232h37c152 0 226 49 226 152'], + 0xE306: [653,0,779,10,731,'731 506c0 -41 -18 -74 -52 -98c-38 -28 -73 -40 -159 -57c115 -41 152 -78 152 -151c0 -119 -130 -200 -320 -200h-342v16c68 10 77 16 98 74l149 442c9 25 13 49 13 64c0 29 -16 36 -93 41v16h312c157 0 242 -52 242 -147zM542 204c0 55 -31 99 -82 115 c-24 8 -76 12 -152 12l-39 -119c-28 -80 -42 -127 -42 -140c0 -28 27 -42 77 -42c148 0 238 66 238 174zM609 515c0 74 -43 108 -141 108c-47 0 -62 -6 -69 -28l-79 -232h41c167 0 248 49 248 152'], + 0xE307: [683,11,570,35,530,'530 321c0 -158 -182 -332 -348 -332c-63 0 -147 30 -147 53v4l150 501l2 7l6 19c7 23 10 34 10 43c0 22 -7 25 -72 27v17c74 8 113 14 168 23l6 -5l-115 -388c79 110 136 151 213 151c73 0 127 -50 127 -120zM437 306c0 53 -29 86 -77 86c-53 0 -102 -38 -151 -115 c-46 -75 -79 -171 -79 -231c0 -23 16 -34 51 -34c47 0 94 21 135 59c66 62 121 169 121 235'], + 0xE308: [683,11,645,48,592,'592 321c0 -158 -201 -332 -383 -332c-69 0 -161 30 -161 53v4l164 501l3 7l6 19c8 23 11 34 11 43c0 22 -8 25 -79 27v17c81 8 125 14 185 23l6 -5l-126 -388c86 110 149 151 234 151c81 0 140 -50 140 -120zM489 306c0 53 -31 86 -84 86c-58 0 -113 -38 -166 -115 c-51 -75 -87 -171 -87 -231c0 -23 18 -34 56 -34c52 0 104 21 148 59c73 62 133 169 133 235'], + 0xE309: [666,18,754,83,768,'768 664l-41 -199l-20 3c-11 108 -67 162 -168 162c-72 0 -142 -27 -195 -77c-85 -81 -138 -202 -138 -321c0 -130 70 -205 192 -205c91 0 154 29 253 118l19 -14c-99 -106 -187 -149 -300 -149c-169 0 -287 108 -287 261c0 223 211 423 446 423c37 0 81 -6 129 -17 c23 -5 35 -7 45 -7c22 0 33 6 42 22h23'], + 0xE30A: [666,18,847,100,854,'854 664l-45 -199l-22 3c-12 108 -74 162 -185 162c-80 0 -156 -27 -214 -77c-95 -81 -153 -202 -153 -321c0 -130 78 -205 212 -205c99 0 170 29 278 118l21 -14c-109 -106 -206 -149 -330 -149c-185 0 -316 108 -316 261c0 223 232 423 491 423c40 0 88 -6 142 -17 c25 -5 38 -7 49 -7c25 0 37 6 46 22h26'], + 0xE30B: [441,11,508,43,478,'478 360c0 -27 -22 -46 -53 -46c-27 0 -43 14 -43 38c0 10 2 16 10 29c5 9 6 14 6 19c0 12 -15 20 -40 20c-44 0 -88 -18 -120 -48c-62 -59 -100 -148 -100 -233c0 -72 37 -114 100 -114c54 0 97 22 157 81l18 -10c-67 -77 -126 -107 -208 -107c-103 0 -162 55 -162 150 c0 156 154 302 319 302c67 0 116 -34 116 -81'], + 0xE30C: [441,11,577,56,534,'534 360c0 -27 -24 -46 -58 -46c-29 0 -47 14 -47 38c0 10 2 16 11 29c6 9 7 14 7 19c0 12 -17 20 -45 20c-48 0 -96 -18 -132 -48c-67 -59 -110 -148 -110 -233c0 -72 42 -114 110 -114c60 0 107 22 174 81l19 -10c-74 -77 -138 -107 -229 -107c-112 0 -178 55 -178 150 c0 156 170 302 351 302c74 0 127 -34 127 -81'], + 0xE30D: [653,0,814,1,780,'780 384c0 -118 -66 -231 -176 -301c-84 -53 -199 -83 -324 -83h-279v16c62 10 70 16 89 74l136 442c7 25 12 49 12 64c0 27 -16 35 -85 41v16h306c196 0 321 -105 321 -269zM658 408c0 80 -31 145 -86 180c-35 22 -89 35 -151 35c-45 0 -60 -7 -67 -29l-133 -432 c-18 -62 -24 -82 -24 -95c0 -26 21 -37 72 -37c114 0 203 30 268 90c75 68 121 179 121 288'], + 0xE30E: [653,0,914,10,867,'867 384c0 -118 -73 -231 -194 -301c-92 -53 -219 -83 -357 -83h-306v16c68 10 77 16 98 74l149 442c9 25 13 49 13 64c0 27 -16 35 -93 41v16h337c215 0 353 -105 353 -269zM733 408c0 80 -34 145 -95 180c-38 22 -98 35 -165 35c-50 0 -67 -7 -74 -29l-147 -432 c-20 -62 -26 -82 -26 -95c0 -26 23 -37 78 -37c126 0 224 30 296 90c82 68 133 179 133 288'], + 0xE30F: [683,13,570,27,590,'590 678l-109 -372c-38 -113 -72 -230 -72 -246c0 -12 9 -20 20 -20c19 0 30 8 90 71l14 -10c-57 -73 -115 -114 -161 -114c-29 0 -46 18 -46 45c0 23 2 39 14 89c-75 -100 -123 -132 -198 -132c-71 0 -115 43 -115 114c0 150 178 338 321 338c43 0 62 -16 71 -58l49 164 c15 53 16 56 16 70c0 21 -8 24 -68 26v17c70 6 110 12 168 23zM402 361c0 36 -17 55 -50 57c-31 2 -71 -17 -102 -46c-73 -70 -128 -186 -128 -269c0 -40 26 -66 64 -66c101 0 216 172 216 324'], + 0xE310: [683,13,645,38,658,'658 678l-120 -372c-41 -113 -79 -230 -79 -246c0 -12 10 -20 22 -20c21 0 33 8 99 71l15 -10c-62 -73 -126 -114 -177 -114c-31 0 -51 18 -51 45c0 23 3 39 16 89c-82 -100 -136 -132 -218 -132c-78 0 -127 43 -127 114c0 150 196 338 353 338c48 0 69 -16 79 -58 l53 164c17 53 19 56 19 70c0 21 -9 24 -76 26v17c78 6 121 12 186 23zM451 361c0 36 -18 55 -55 57c-34 2 -78 -17 -112 -46c-80 -70 -141 -186 -141 -269c0 -40 28 -66 71 -66c111 0 237 172 237 324'], + 0xE311: [653,0,692,9,707,'707 653l-34 -153l-23 2c1 17 2 32 2 45c0 60 -38 73 -211 73c-62 0 -73 -4 -80 -26l-73 -233l87 2c99 3 110 10 152 95l20 -4l-75 -232l-22 5c6 22 8 34 8 52c0 17 -2 26 -8 31c-12 10 -43 16 -86 15l-86 3l-35 -115c-27 -88 -39 -134 -39 -146c0 -24 25 -34 87 -34 c83 0 158 10 199 27c47 20 76 45 127 110l18 -8l-68 -162h-558v16c62 10 69 16 89 74l135 442c6 20 12 52 12 64c0 27 -16 35 -84 41v16h546'], + 0xE312: [653,0,779,19,787,'787 653l-37 -153l-26 2c1 17 3 32 3 45c0 60 -43 73 -233 73c-69 0 -81 -4 -88 -26l-80 -233l96 2c109 3 121 10 167 95l21 -4l-82 -232l-24 5c6 22 8 34 8 52c0 17 -2 26 -8 31c-13 10 -47 16 -94 15l-95 3l-38 -115c-31 -88 -44 -134 -44 -146c0 -24 28 -34 96 -34 c92 0 174 10 219 27c52 20 83 45 140 110l19 -8l-75 -162h-613v16c68 10 76 16 98 74l149 442c6 20 13 52 13 64c0 27 -18 35 -93 41v16h601'], + 0xE313: [441,11,508,44,463,'463 373c0 -86 -116 -162 -281 -183l-31 -4c-9 -32 -11 -46 -11 -61c0 -55 41 -91 102 -91c49 0 83 16 162 75l13 -12c-65 -68 -150 -108 -228 -108c-85 0 -145 56 -145 137c0 151 173 315 331 315c55 0 88 -26 88 -68zM391 379c0 24 -16 39 -39 39 c-56 0 -137 -77 -175 -166l-18 -44c94 21 136 39 177 74c34 30 55 66 55 97'], + 0xE314: [441,11,577,58,519,'519 373c0 -86 -129 -162 -310 -183l-34 -4c-10 -32 -12 -46 -12 -61c0 -55 45 -91 112 -91c54 0 91 16 178 75l15 -12c-72 -68 -165 -108 -251 -108c-94 0 -159 56 -159 137c0 151 189 315 364 315c60 0 97 -26 97 -68zM439 379c0 24 -17 39 -43 39 c-61 0 -151 -77 -192 -166l-21 -44c104 21 150 39 195 74c38 30 61 66 61 97'], + 0xE315: [653,0,692,19,720,'720 653l-36 -153l-23 2c1 8 1 12 2 19c2 12 2 16 2 23c0 63 -39 76 -225 76c-45 0 -60 -6 -67 -26l-73 -233c185 2 189 3 238 93l20 -5l-84 -234l-18 5c6 31 8 43 8 59c0 20 -8 34 -24 41c-11 4 -17 5 -60 5l-89 3l-69 -223c-7 -24 -10 -36 -10 -45c0 -30 20 -41 84 -44 v-16h-277v16c63 8 70 14 90 74l135 442c8 25 12 49 12 65c0 28 -12 34 -84 40v16h548'], + 0xE316: [653,0,779,30,800,'800 653l-38 -153l-26 2c2 8 2 12 3 19c1 12 1 16 1 23c0 63 -42 76 -247 76c-49 0 -66 -6 -74 -26l-80 -233c204 2 207 3 262 93l22 -5l-92 -234l-21 5c7 31 10 43 10 59c0 20 -10 34 -27 41c-12 4 -19 5 -66 5l-98 3l-75 -223c-9 -24 -11 -36 -11 -45 c0 -30 21 -41 92 -44v-16h-305v16c69 8 77 14 99 74l149 442c8 25 13 49 13 65c0 28 -13 34 -93 40v16h602'], + 0xE317: [678,207,326,-152,476,'476 613c0 -22 -20 -40 -46 -40c-24 0 -40 16 -40 40c0 8 1 13 6 21c3 4 5 9 5 9c0 8 -9 13 -25 13c-61 0 -102 -70 -134 -228h119l-7 -32h-120l-79 -320c-46 -185 -122 -283 -220 -283c-49 0 -87 26 -87 61c0 23 18 41 41 41s43 -17 43 -38c0 -6 -1 -10 -6 -16 c-3 -5 -4 -7 -4 -11c0 -9 9 -16 22 -16c46 0 81 54 107 162l97 420h-99l7 32h101c33 98 57 145 91 185c39 44 81 65 134 65c54 0 94 -28 94 -65'], + 0xE318: [678,207,376,-158,533,'533 613c0 -22 -23 -40 -51 -40c-26 0 -45 16 -45 40c0 8 2 13 8 21c3 4 5 9 5 9c0 8 -10 13 -27 13c-68 0 -113 -70 -148 -228h131l-7 -32h-132l-87 -320c-51 -185 -135 -283 -242 -283c-55 0 -96 26 -96 61c0 23 19 41 45 41c25 0 47 -17 47 -38c0 -6 -1 -10 -6 -16 c-4 -5 -5 -7 -5 -11c0 -9 10 -16 24 -16c51 0 90 54 118 162l106 420h-109l9 32h111c36 98 62 145 99 185c44 44 90 65 148 65c59 0 104 -28 104 -65'], + 0xE319: [666,18,814,67,804,'804 303c-71 -4 -89 -16 -106 -72l-54 -187c-85 -43 -164 -62 -261 -62c-96 0 -176 27 -232 78c-52 48 -84 118 -84 186c0 220 211 420 444 420c45 0 93 -8 147 -24c25 -8 36 -10 48 -10c29 0 48 10 66 34l17 -4l-54 -197l-20 3c-5 45 -13 67 -32 93 c-34 45 -93 71 -164 71c-72 0 -140 -27 -190 -74c-87 -83 -141 -211 -141 -334c0 -131 81 -205 222 -205c50 0 92 12 116 34c13 12 19 24 43 101c22 67 28 93 28 115c0 18 -17 28 -53 31l-32 3v16h292v-16'], + 0xE31A: [666,18,914,83,894,'894 303c-79 -4 -98 -16 -118 -72l-59 -187c-93 -43 -180 -62 -287 -62c-105 0 -193 27 -255 78c-57 48 -92 118 -92 186c0 220 232 420 488 420c49 0 102 -8 162 -24c28 -8 40 -10 53 -10c31 0 52 10 73 34l18 -4l-60 -197l-21 3c-6 45 -15 67 -35 93 c-38 45 -103 71 -181 71c-80 0 -155 -27 -209 -74c-96 -83 -155 -211 -155 -334c0 -131 88 -205 244 -205c55 0 101 12 127 34c15 12 21 24 48 101c24 67 31 93 31 115c0 18 -19 28 -59 31l-35 3v16h322v-16'], + 0xE31B: [441,206,570,19,526,'526 366h-55c7 -20 10 -40 10 -56c1 -78 -101 -159 -201 -159c-10 0 -26 1 -35 3c-3 1 -7 1 -7 1c-15 0 -40 -26 -40 -41s29 -31 77 -42c106 -25 159 -69 160 -132c0 -87 -92 -146 -230 -146c-111 0 -184 45 -185 114c-1 46 19 66 128 131c-21 14 -31 26 -31 39 c0 24 20 44 83 84c-62 26 -87 56 -88 108c0 94 98 171 220 171c42 0 78 -10 108 -28c9 -6 14 -8 18 -8h67zM369 -90c-1 46 -42 74 -159 107l-32 9c-2 1 -5 2 -5 2c-9 0 -55 -33 -69 -50c-18 -19 -24 -36 -24 -60c0 -64 53 -102 141 -102c85 0 148 40 148 94zM394 348 c-1 47 -22 71 -63 71c-71 0 -133 -80 -132 -172c0 -47 24 -75 66 -75c38 0 72 22 96 63c20 34 33 78 33 113'], + 0xE31C: [441,206,645,30,587,'587 366h-60c7 -20 11 -40 11 -56c1 -78 -111 -159 -222 -159c-10 0 -27 1 -37 3c-4 1 -9 1 -9 1c-15 0 -43 -26 -43 -41s31 -31 85 -42c116 -25 174 -69 175 -132c0 -87 -100 -146 -253 -146c-122 0 -202 45 -203 114c-1 46 20 66 140 131c-23 14 -34 26 -34 39 c0 24 22 44 92 84c-69 26 -95 56 -96 108c0 94 107 171 242 171c46 0 85 -10 118 -28c10 -6 16 -8 19 -8h74zM414 -90c-1 46 -46 74 -174 107l-35 9c-2 1 -6 2 -6 2c-10 0 -60 -33 -76 -50c-20 -19 -26 -36 -26 -60c0 -64 59 -102 155 -102c93 0 162 40 162 94zM442 348 c-1 47 -24 71 -69 71c-78 0 -146 -80 -145 -172c0 -47 27 -75 73 -75c41 0 78 22 105 63c22 34 36 78 36 113'], + 0xE31D: [653,0,814,1,854,'854 637c-63 -10 -72 -16 -90 -74l-146 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 86 -42v-16h-300v16c71 7 93 22 111 74l71 236h-313l-73 -244c-2 -7 -3 -15 -3 -22c0 -29 12 -36 78 -44v-16h-271v16c62 10 70 16 89 74l136 442c8 27 12 47 12 62c0 29 -16 37 -85 43v16 h300v-16c-66 -4 -94 -23 -111 -74l-59 -195h313l51 164c8 27 12 47 12 62c0 28 -13 36 -77 43v16h272v-16'], + 0xE31E: [653,0,914,10,948,'948 637c-69 -10 -79 -16 -99 -74l-160 -481c-2 -8 -3 -16 -3 -24c0 -28 15 -35 94 -42v-16h-330v16c78 7 102 22 122 74l78 236h-344l-80 -244c-3 -7 -4 -15 -4 -22c0 -29 13 -36 86 -44v-16h-298v16c68 10 77 16 98 74l149 442c10 27 13 47 13 62c0 29 -16 37 -93 43 v16h331v-16c-73 -4 -104 -23 -123 -74l-65 -195h345l56 164c8 27 13 47 13 62c0 28 -15 36 -85 43v16h299v-16'], + 0xE31F: [683,9,570,31,536,'536 105c-67 -87 -105 -114 -161 -114c-29 0 -48 16 -48 42c0 12 8 43 22 92l60 207c5 16 8 29 8 33c0 13 -14 25 -31 25c-38 0 -113 -62 -170 -141c-44 -61 -59 -95 -103 -249h-82l148 512c4 14 7 26 11 37c10 29 16 54 16 68c0 27 -41 24 -74 24v15c66 7 109 14 173 27 l5 -5l-132 -448c103 146 181 211 252 211c43 0 73 -27 73 -67c0 -25 -20 -99 -53 -193c-19 -52 -36 -114 -36 -125c0 -10 7 -18 17 -18c18 0 31 11 91 79'], + 0xE320: [683,9,645,43,598,'598 105c-73 -87 -115 -114 -176 -114c-33 0 -54 16 -54 42c0 12 9 43 25 92l66 207c5 16 9 29 9 33c0 13 -16 25 -34 25c-43 0 -125 -62 -188 -141c-48 -61 -64 -95 -112 -249h-91l163 512c4 14 8 26 12 37c11 29 17 54 17 68c0 27 -44 24 -81 24v15c73 7 120 14 190 27 l6 -5l-145 -448c113 146 199 211 277 211c47 0 80 -27 80 -67c0 -25 -22 -99 -58 -193c-21 -52 -40 -114 -40 -125c0 -10 9 -18 19 -18c20 0 34 11 100 79'], + 0xE321: [653,0,386,1,432,'432 637c-63 -10 -70 -16 -90 -74l-135 -443c-10 -33 -12 -43 -12 -63c0 -28 12 -34 75 -41v-16h-269v16c62 10 70 16 89 74l136 442c8 27 12 47 12 62c0 29 -13 36 -77 43v16h271v-16'], + 0xE322: [653,0,443,10,485,'485 637c-71 -10 -78 -16 -100 -74l-148 -443c-11 -33 -14 -43 -14 -63c0 -28 14 -34 83 -41v-16h-296v16c68 10 77 16 98 74l149 442c10 27 13 47 13 62c0 29 -14 36 -84 43v16h299v-16'], + 0xE323: [643,11,326,64,314,'269 103c-63 -84 -103 -114 -154 -114c-33 0 -51 20 -51 57c0 20 7 49 24 109l53 177c7 19 10 36 10 44c0 20 -10 23 -69 24v16c42 3 64 6 176 25l3 -2l-97 -322c-7 -20 -18 -50 -18 -66c0 -8 9 -15 18 -15c19 0 43 21 90 78zM314 588c0 -28 -26 -51 -54 -51 c-32 0 -53 21 -53 53c0 31 22 53 52 53c29 0 55 -26 55 -55'], + 0xE324: [643,11,376,79,354,'304 103c-69 -84 -112 -114 -169 -114c-36 0 -56 20 -56 57c0 20 8 49 27 109l58 177c7 19 11 36 11 44c0 20 -11 23 -76 24v16c47 3 71 6 193 25l4 -2l-107 -322c-7 -20 -19 -50 -19 -66c0 -8 10 -15 19 -15c21 0 48 21 100 78zM354 588c0 -28 -28 -51 -59 -51 c-35 0 -58 21 -58 53c0 31 24 53 56 53c33 0 61 -26 61 -55'], + 0xE325: [653,18,508,3,550,'550 637c-63 -8 -70 -14 -90 -74l-113 -371c-23 -76 -45 -121 -75 -153c-34 -37 -84 -57 -140 -57c-77 0 -129 35 -129 88c0 32 20 54 50 54s54 -22 54 -47v-9c-1 -5 -1 -10 -1 -15c0 -28 12 -40 38 -40c27 0 42 15 54 54l144 465c9 29 13 49 13 64c0 27 -15 35 -84 41 v16h279v-16'], + 0xE326: [653,18,577,13,614,'614 637c-69 -8 -77 -14 -99 -74l-125 -371c-25 -76 -49 -121 -82 -153c-38 -37 -92 -57 -154 -57c-84 0 -141 35 -141 88c0 32 22 54 54 54c33 0 59 -22 59 -47v-9c-1 -5 -1 -10 -1 -15c0 -28 14 -40 43 -40s46 15 59 54l158 465c10 29 15 49 15 64c0 27 -17 35 -93 41 v16h307v-16'], + 0xE327: [643,207,326,-126,341,'281 439l-115 -411c-44 -160 -110 -235 -206 -235c-50 0 -86 25 -86 61c0 24 18 42 44 42c25 0 45 -16 45 -37c0 -8 -3 -13 -9 -21c-5 -5 -6 -7 -6 -11c0 -7 7 -11 20 -11c44 0 70 43 107 181l79 292c13 49 18 70 18 80c0 22 -13 32 -44 32h-8l-30 -1v16 c36 2 95 10 187 25zM341 588c0 -28 -25 -51 -54 -51c-32 0 -53 21 -53 53c0 31 22 53 52 53s55 -26 55 -55'], + 0xE328: [643,207,376,-130,384,'318 439l-126 -411c-49 -160 -121 -235 -226 -235c-56 0 -96 25 -96 61c0 24 21 42 48 42c28 0 50 -16 50 -37c0 -8 -2 -13 -10 -21c-5 -5 -6 -7 -6 -11c0 -7 7 -11 22 -11c48 0 76 43 117 181l88 292c14 49 19 70 19 80c0 22 -15 32 -49 32h-8l-33 -1v16 c39 2 104 10 206 25zM384 588c0 -28 -28 -51 -59 -51c-35 0 -58 21 -58 53c0 31 24 53 57 53c32 0 60 -26 60 -55'], + 0xE329: [653,0,754,18,804,'804 637c-26 -4 -50 -15 -82 -36l-330 -226l191 -303c31 -47 38 -50 107 -56v-16h-303v16l32 3c35 3 51 11 51 26c0 19 -16 54 -42 95l-133 208l-68 -228l-7 -21c-8 -21 -9 -28 -9 -39c0 -31 10 -37 80 -44v-16h-273v16c65 9 70 14 90 74l135 442c9 27 12 47 12 62 c0 29 -15 37 -84 43v16h300v-16c-65 -4 -95 -24 -111 -74l-58 -194l167 106c98 63 158 116 158 140c0 11 -11 17 -37 19l-30 3v16h244v-16'], + 0xE32A: [653,0,847,28,894,'894 637c-29 -4 -56 -15 -91 -36l-363 -226l210 -303c34 -47 42 -50 118 -56v-16h-333v16l35 3c39 3 56 11 56 26c0 19 -17 54 -46 95l-147 208l-75 -228l-7 -21c-8 -21 -10 -28 -10 -39c0 -31 11 -37 88 -44v-16h-301v16c72 9 78 14 100 74l149 442c9 27 13 47 13 62 c0 29 -17 37 -93 43v16h330v-16c-71 -4 -104 -24 -122 -74l-64 -194l184 106c107 63 174 116 174 140c0 11 -12 17 -41 19l-33 3v16h269v-16'], + 0xE32B: [683,11,508,25,517,'517 412c-52 -3 -86 -23 -247 -154l40 -88c44 -97 66 -129 89 -129c17 0 30 11 50 42c5 8 11 17 16 26l17 -11c-51 -84 -78 -109 -122 -109c-32 0 -52 19 -87 82c-20 35 -48 97 -66 141l-46 -32l-53 -180h-83l140 483l2 9l10 33c16 47 22 73 24 90c-2 18 -18 25 -56 25 h-18v16c65 7 106 14 171 27l6 -5l-132 -457l47 33c103 72 157 120 157 140c0 11 -15 18 -43 18h-17v16h201v-16'], + 0xE32C: [683,11,577,37,578,'578 412c-57 -3 -95 -23 -272 -154l44 -88c49 -97 73 -129 98 -129c18 0 33 11 55 42c6 8 12 17 18 26l18 -11c-56 -84 -86 -109 -134 -109c-35 0 -57 19 -96 82c-22 35 -53 97 -72 141l-51 -32l-58 -180h-91l154 483l2 9l11 33c17 47 24 73 27 90c-3 18 -21 25 -62 25 h-21v16c72 7 118 14 189 27l6 -5l-145 -457l52 33c114 72 173 120 173 140c0 11 -17 18 -47 18h-20v16h222v-16'], + 0xE32D: [653,0,632,1,625,'625 179l-64 -179h-560v16c62 10 70 16 89 74l136 442c8 27 12 47 12 62c0 29 -16 37 -85 43v16h300v-16c-66 -4 -94 -23 -111 -74l-135 -443c-7 -21 -11 -42 -11 -50c0 -26 27 -34 110 -34c98 0 143 6 181 24c49 22 77 53 116 125'], + 0xE32E: [653,0,713,10,696,'696 179l-70 -179h-616v16c68 10 77 16 98 74l149 442c10 27 13 47 13 62c0 29 -16 37 -93 43v16h331v-16c-73 -4 -104 -23 -123 -74l-148 -443c-8 -21 -13 -42 -13 -50c0 -26 31 -34 121 -34c108 0 158 6 200 24c53 22 85 53 127 125'], + 0xE32F: [683,11,326,55,317,'317 678l-166 -579c-6 -19 -11 -39 -11 -49c0 -12 5 -18 16 -18c20 0 40 15 76 57c9 11 19 23 29 34l14 -9c-71 -96 -109 -125 -166 -125c-35 0 -54 19 -54 56c0 8 1 16 5 26l150 528c4 8 5 15 5 18c0 14 -22 23 -56 23h-19v16c65 7 107 14 171 27'], + 0xE330: [683,11,376,70,358,'358 678l-183 -579c-6 -19 -12 -39 -12 -49c0 -12 6 -18 18 -18c22 0 43 15 83 57c10 11 21 23 32 34l16 -9c-79 -96 -120 -125 -183 -125c-39 0 -59 19 -59 56c0 8 1 16 4 26l166 528c4 8 5 15 5 18c0 14 -24 23 -62 23h-20v16c71 7 117 14 189 27'], + 0xE331: [653,0,936,-10,970,'970 637c-65 -9 -70 -14 -90 -74l-135 -443c-10 -32 -12 -44 -12 -61c0 -32 10 -37 84 -43v-16h-300v16c72 7 94 22 111 75l142 470l-415 -561h-18l-67 546l-130 -433c-6 -18 -10 -42 -10 -53c0 -28 22 -40 78 -44v-16h-218v16c57 6 74 26 108 130l117 372l3 11l10 30 c6 18 11 33 11 41c0 23 -27 34 -82 37v16h200l60 -493l370 493h183v-16'], + 0xE332: [653,0,1048,-2,1076,'1076 637c-71 -9 -77 -14 -99 -74l-149 -443c-11 -32 -13 -44 -13 -61c0 -32 11 -37 93 -43v-16h-330v16c78 7 103 22 122 75l156 470l-456 -561h-21l-73 546l-143 -433c-6 -18 -11 -42 -11 -53c0 -28 24 -40 86 -44v-16h-240v16c63 6 81 26 119 130l128 372l4 11l11 30 c7 18 12 33 12 41c0 23 -29 34 -90 37v16h219l67 -493l406 493h202v-16'], + 0xE333: [441,9,814,23,784,'784 105l-5 -7c-58 -74 -107 -107 -158 -107c-29 0 -44 16 -44 46c0 10 3 27 14 66l64 230c5 20 7 30 7 35c0 12 -10 21 -22 21c-33 0 -89 -46 -144 -116c-54 -69 -76 -119 -119 -273h-82l27 92c48 153 77 259 77 272c0 16 -7 25 -22 25c-37 0 -103 -56 -165 -141 c-37 -52 -53 -90 -106 -248h-83l43 143c40 126 65 217 65 229c0 15 -13 22 -43 22h-27v16l176 31l3 -2l-64 -209c101 145 178 211 245 211c38 0 63 -24 63 -60c0 -19 -16 -75 -44 -152c77 111 123 160 177 191c27 15 46 21 68 21c37 0 64 -27 64 -63c0 -7 -2 -23 -3 -28 l-75 -251c-6 -23 -11 -41 -11 -45c0 -11 5 -16 13 -16c19 0 40 16 72 53l23 26'], + 0xE334: [441,9,914,35,872,'872 105l-6 -7c-64 -74 -118 -107 -174 -107c-32 0 -49 16 -49 46c0 10 4 27 16 66l70 230c6 20 9 30 9 35c0 12 -11 21 -25 21c-36 0 -98 -46 -158 -116c-59 -69 -84 -119 -131 -273h-91l31 92c52 153 84 259 84 272c0 16 -8 25 -24 25c-41 0 -114 -56 -181 -141 c-41 -52 -60 -90 -118 -248h-90l47 143c43 126 71 217 71 229c0 15 -14 22 -47 22h-30v16l193 31l4 -2l-70 -209c111 145 196 211 270 211c41 0 69 -24 69 -60c0 -19 -19 -75 -49 -152c85 111 136 160 195 191c29 15 51 21 75 21c40 0 70 -27 70 -63c0 -7 -2 -23 -4 -28 l-82 -251c-7 -23 -12 -41 -12 -45c0 -11 5 -16 15 -16c20 0 43 16 78 53l26 26'], + 0xE335: [653,15,754,-12,810,'810 637c-70 -14 -74 -20 -115 -149l-158 -503h-20l-253 550l-125 -422c-7 -21 -10 -41 -10 -54c0 -28 20 -39 77 -43v-16h-218v16c63 8 72 20 113 148l131 417c-20 39 -43 52 -94 56v16h177l229 -499l112 380l2 8c8 21 10 32 10 44c0 36 -14 46 -77 51v16h219v-16'], + 0xE336: [653,15,847,-4,900,'900 637c-77 -14 -81 -20 -126 -149l-174 -503h-22l-278 550l-138 -422c-8 -21 -11 -41 -11 -54c0 -28 21 -39 84 -43v-16h-239v16c69 8 78 20 124 148l144 417c-21 39 -47 52 -104 56v16h195l252 -499l123 380l3 8c8 21 11 32 11 44c0 36 -16 46 -85 51v16h241v-16'], + 0xE337: [441,9,570,25,531,'531 104c-77 -93 -104 -113 -154 -113c-36 0 -51 16 -51 54c0 10 3 23 17 75l49 165c9 31 15 64 15 76c0 18 -10 29 -26 29c-41 0 -97 -49 -163 -142c-48 -68 -58 -90 -110 -248h-83l106 350c1 5 2 11 2 17c0 20 -14 26 -70 27v16l178 31l3 -2l-73 -218 c113 159 182 220 253 220c43 0 72 -25 72 -61c0 -14 -3 -36 -10 -57l-62 -206c-11 -36 -16 -55 -16 -63c0 -9 8 -16 18 -16c15 0 35 16 67 53c8 8 15 17 23 26'], + 0xE338: [441,9,645,37,594,'594 104c-85 -93 -115 -113 -170 -113c-40 0 -57 16 -57 54c0 10 4 23 20 75l53 165c10 31 17 64 17 76c0 18 -11 29 -29 29c-45 0 -107 -49 -179 -142c-54 -68 -64 -90 -121 -248h-91l116 350c1 5 3 11 3 17c0 20 -16 26 -78 27v16l196 31l4 -2l-81 -218 c124 159 201 220 278 220c47 0 80 -25 80 -61c0 -14 -4 -36 -11 -57l-69 -206c-12 -36 -17 -55 -17 -63c0 -9 8 -16 19 -16c17 0 39 16 74 53c9 8 17 17 26 26'], + 0xE339: [666,18,814,76,779,'779 418c-12 -226 -234 -436 -463 -436c-140 0 -240 99 -240 239c0 123 72 251 191 344c86 66 178 101 264 101c149 0 256 -107 248 -248zM663 481c0 94 -53 152 -141 152c-83 0 -152 -40 -214 -125c-65 -87 -116 -232 -116 -324c0 -109 50 -169 143 -169 c79 0 148 41 210 124c69 94 118 237 118 342'], + 0xE33A: [666,18,914,93,866,'866 418c-14 -226 -258 -436 -510 -436c-153 0 -263 99 -263 239c0 123 78 251 210 344c95 66 195 101 291 101c163 0 280 -107 272 -248zM739 481c0 94 -60 152 -156 152c-91 0 -167 -40 -235 -125c-71 -87 -128 -232 -128 -324c0 -109 55 -169 157 -169 c87 0 163 41 231 124c76 94 131 237 131 342'], + 0xE33B: [441,11,570,40,525,'525 301c0 -76 -44 -160 -117 -225c-64 -58 -134 -87 -207 -87c-100 0 -161 53 -161 140c0 108 82 225 198 281c43 21 84 31 130 31c93 0 157 -57 157 -140zM432 326c0 57 -30 94 -78 94s-96 -31 -140 -91c-51 -70 -82 -156 -82 -228c0 -55 34 -91 86 -91 c48 0 91 27 133 82c47 65 81 162 81 234'], + 0xE33C: [441,11,645,53,586,'586 301c0 -76 -48 -160 -128 -225c-70 -58 -148 -87 -227 -87c-111 0 -178 53 -178 140c0 108 90 225 217 281c48 21 94 31 143 31c103 0 173 -57 173 -140zM485 326c0 57 -34 94 -86 94c-54 0 -107 -31 -155 -91c-56 -70 -90 -156 -90 -228c0 -55 38 -91 95 -91 c53 0 100 27 146 82c52 65 90 162 90 234'], + 0xE33D: [653,0,692,10,676,'676 504c0 -60 -33 -117 -91 -153c-46 -30 -121 -46 -208 -46c-46 0 -72 2 -101 8l-58 -193c-11 -38 -13 -46 -13 -57c0 -35 5 -38 75 -47v-16h-270v16c63 8 70 14 90 74l130 425c14 47 19 65 19 80c0 27 -16 35 -78 42v16h272c150 0 233 -53 233 -149zM562 504 c0 48 -13 78 -42 96c-22 14 -63 23 -105 23c-31 0 -44 -7 -51 -28l-78 -248c32 -5 38 -5 57 -5c69 0 111 8 146 25c48 26 73 72 73 137'], + 0xE33E: [653,0,779,20,752,'752 504c0 -60 -36 -117 -99 -153c-51 -30 -133 -46 -229 -46c-51 0 -80 2 -111 8l-64 -193c-12 -38 -15 -46 -15 -57c0 -35 6 -38 82 -47v-16h-296v16c69 8 77 14 99 74l143 425c16 47 21 65 21 80c0 27 -17 35 -86 42v16h300c164 0 255 -53 255 -149zM627 504 c0 48 -14 78 -46 96c-24 14 -70 23 -116 23c-34 0 -48 -7 -55 -28l-86 -248c35 -5 41 -5 63 -5c75 0 122 8 159 25c54 26 81 72 81 137'], + 0xE33F: [441,205,570,-73,526,'526 316c0 -160 -169 -327 -330 -327c-25 0 -45 4 -73 17c-22 -77 -40 -152 -40 -166c0 -22 18 -30 70 -30v-15h-226v16c48 1 63 13 74 59l64 224c40 133 78 271 78 283c0 27 -38 27 -71 27l-3 15l170 22h1c3 0 5 -4 5 -4l-34 -109c64 81 117 113 188 113 c80 0 127 -47 127 -125zM427 313c0 57 -21 83 -68 85c-55 3 -119 -46 -149 -114c-33 -75 -71 -205 -71 -239c0 -22 22 -37 53 -37c58 0 112 32 159 95c46 61 76 144 76 210'], + 0xE340: [441,205,645,-71,587,'587 316c0 -160 -186 -327 -363 -327c-27 0 -49 4 -79 17c-25 -77 -45 -152 -45 -166c0 -22 20 -30 77 -30v-15h-248v16c52 1 69 13 81 59l71 224c43 133 85 271 85 283c0 27 -42 27 -78 27l-3 15l187 22h1c4 0 6 -4 6 -4l-38 -109c71 81 129 113 207 113 c87 0 139 -47 139 -125zM479 313c0 57 -23 83 -75 85c-61 3 -131 -46 -164 -114c-36 -75 -78 -205 -78 -239c0 -22 24 -37 58 -37c64 0 123 32 175 95c51 61 84 144 84 210'], + 0xE341: [666,182,814,75,779,'779 433c0 -160 -114 -326 -282 -406c-59 -29 -98 -38 -180 -43l-59 -57h27s2 0 4 1l17 -1l206 -39c8 -1 18 -2 30 -2c80 0 125 18 186 76l17 -11c-29 -35 -43 -49 -69 -68c-58 -39 -134 -65 -194 -65c-42 0 -100 9 -167 26c-49 13 -81 18 -103 18 c-44 0 -84 -10 -126 -31l-11 15c85 54 95 62 195 142c-50 11 -74 21 -105 43c-57 42 -89 109 -89 190c0 123 72 250 191 344c85 65 176 101 260 101c146 0 252 -98 252 -233zM663 480c0 95 -53 153 -141 153c-83 0 -152 -40 -214 -125c-65 -87 -116 -232 -116 -325 c0 -106 50 -166 140 -166c83 0 152 41 214 124c68 93 117 236 117 339'], + 0xE342: [666,182,914,91,866,'866 433c0 -160 -126 -326 -310 -406c-65 -29 -108 -38 -198 -43l-66 -57h31s2 0 4 1l18 -1l227 -39c9 -1 20 -2 34 -2c87 0 136 18 204 76l18 -11c-31 -35 -47 -49 -76 -68c-63 -39 -146 -65 -213 -65c-46 0 -110 9 -184 26c-53 13 -88 18 -112 18 c-49 0 -94 -10 -140 -31l-12 15c94 54 104 62 215 142c-55 11 -82 21 -115 43c-63 42 -98 109 -98 190c0 123 78 250 210 344c93 65 194 101 286 101c161 0 277 -98 277 -233zM739 480c0 95 -60 153 -156 153c-91 0 -167 -40 -235 -125c-71 -87 -128 -232 -128 -325 c0 -106 55 -166 155 -166c90 0 167 41 234 124c75 93 130 236 130 339'], + 0xE343: [441,205,570,38,541,'541 426l-178 -573c-3 -8 -4 -12 -4 -15c2 -15 24 -25 65 -25h18v-18h-265v16c72 4 89 13 104 53l95 289c-98 -128 -148 -164 -226 -164c-70 0 -112 45 -112 116c0 152 176 336 322 336c45 0 67 -16 85 -62l16 47h80zM428 359c0 33 -29 60 -65 60c-32 0 -68 -18 -102 -49 c-72 -67 -129 -177 -129 -251c0 -47 23 -77 62 -77c27 0 58 13 87 36c74 59 147 198 147 281'], + 0xE344: [441,205,645,50,604,'604 426l-196 -573c-3 -8 -4 -12 -4 -15c2 -15 26 -25 71 -25h21v-18h-292v16c79 4 98 13 114 53l105 289c-108 -128 -163 -164 -249 -164c-77 0 -124 45 -124 116c0 152 194 336 355 336c49 0 74 -16 93 -62l18 47h88zM480 359c0 33 -32 60 -72 60 c-35 0 -75 -18 -112 -49c-79 -67 -142 -177 -142 -251c0 -47 26 -77 68 -77c30 0 64 13 96 36c82 59 162 198 162 281'], + 0xE345: [653,0,692,-4,657,'657 509c0 -45 -20 -84 -56 -113c-40 -32 -76 -46 -161 -63l102 -245c21 -52 43 -69 92 -72v-16h-163l-135 324l-72 5l-61 -209c-11 -37 -14 -47 -14 -57c0 -35 7 -39 75 -47v-16h-268v16c62 9 69 15 89 74l135 442c9 27 13 51 13 63c0 11 -6 23 -14 28 c-12 7 -18 8 -64 14v16h273c149 0 229 -51 229 -144zM541 511c0 75 -45 112 -136 112c-35 0 -50 -7 -56 -28l-72 -229c28 -4 37 -5 56 -5c138 0 208 51 208 150'], + 0xE346: [653,0,779,4,731,'731 509c0 -45 -21 -84 -61 -113c-44 -32 -84 -46 -177 -63l113 -245c23 -52 47 -69 100 -72v-16h-179l-149 324l-78 5l-68 -209c-12 -37 -15 -47 -15 -57c0 -35 7 -39 83 -47v-16h-296v16c69 9 77 15 98 74l149 442c10 27 15 51 15 63c0 11 -8 23 -16 28 c-13 7 -19 8 -70 14v16h300c163 0 251 -51 251 -144zM604 511c0 75 -49 112 -150 112c-38 0 -54 -7 -61 -28l-79 -229c30 -4 40 -5 62 -5c151 0 228 51 228 150'], + 0xE347: [441,0,448,60,463,'463 390c0 -32 -17 -50 -50 -50c-22 0 -31 5 -40 22c-5 10 -10 14 -18 14c-19 0 -51 -33 -90 -94c-48 -74 -66 -114 -122 -282h-83l89 292c17 68 17 68 17 82c0 28 -42 23 -76 23v17l171 27l3 -2l-58 -217l15 36c18 40 62 98 107 141c29 27 58 42 84 42 c30 0 51 -21 51 -51'], + 0xE348: [441,0,511,74,519,'519 390c0 -32 -20 -50 -56 -50c-24 0 -34 5 -44 22c-6 10 -11 14 -19 14c-22 0 -57 -33 -99 -94c-54 -74 -73 -114 -135 -282h-92l98 292c20 68 20 68 20 82c0 28 -46 23 -84 23v17l188 27l4 -2l-65 -217l17 36c20 40 68 98 118 141c31 27 64 42 92 42 c34 0 57 -21 57 -51'], + 0xE349: [667,18,570,29,569,'569 667l-44 -199l-20 3c-2 67 -11 101 -36 126c-23 24 -56 36 -97 36c-75 0 -121 -39 -121 -102c0 -49 9 -63 109 -154c100 -92 124 -130 124 -195c0 -114 -96 -200 -222 -200c-34 0 -64 6 -114 23c-30 9 -46 13 -58 13c-22 0 -34 -10 -41 -33h-20l37 223l22 -2 c-2 -9 -2 -13 -2 -20c0 -98 68 -169 161 -169c81 0 141 57 141 133c0 43 -14 69 -66 118l-42 42c-15 15 -29 29 -43 42c-66 64 -83 93 -83 147c0 98 82 167 196 167c34 0 70 -5 93 -14c24 -8 37 -11 51 -11c24 0 34 5 50 26h25'], + 0xE34A: [667,18,645,41,635,'635 667l-49 -199l-21 3c-3 67 -13 101 -40 126c-26 24 -62 36 -107 36c-82 0 -133 -39 -133 -102c0 -49 10 -63 120 -154c110 -92 137 -130 137 -195c0 -114 -106 -200 -245 -200c-37 0 -70 6 -126 23c-32 9 -49 13 -63 13c-24 0 -37 -10 -46 -33h-21l41 223l24 -2 c-3 -9 -3 -13 -3 -20c0 -98 76 -169 177 -169c90 0 156 57 156 133c0 43 -15 69 -72 118l-48 42c-15 15 -31 29 -47 42c-72 64 -90 93 -90 147c0 98 89 167 215 167c37 0 77 -5 103 -14c25 -8 40 -11 55 -11c27 0 38 5 55 26h28'], + 0xE34B: [442,13,448,28,413,'413 442l-22 -139h-18c-11 78 -44 115 -101 115c-39 0 -62 -20 -62 -54c0 -27 18 -58 60 -105c51 -58 74 -101 74 -140c0 -76 -66 -130 -158 -130c-19 0 -35 3 -60 10c-22 5 -42 9 -54 9s-17 -4 -27 -21h-17l22 159h17c18 -95 51 -136 112 -136c49 0 82 31 82 77 c0 29 -19 64 -62 115c-46 54 -69 97 -69 129c0 67 52 110 133 110c19 0 34 -2 62 -10c21 -5 30 -7 39 -7c17 0 24 4 33 18h16'], + 0xE34C: [442,13,511,39,463,'463 442l-24 -139h-20c-12 78 -48 115 -111 115c-42 0 -68 -20 -68 -54c0 -27 20 -58 66 -105c56 -58 82 -101 82 -140c0 -76 -73 -130 -174 -130c-21 0 -39 3 -67 10c-24 5 -46 9 -59 9c-14 0 -18 -4 -29 -21h-20l25 159h19c19 -95 56 -136 123 -136c54 0 90 31 90 77 c0 29 -21 64 -68 115c-51 54 -76 97 -76 129c0 67 57 110 146 110c21 0 38 -2 68 -10c23 -5 34 -7 44 -7c18 0 26 4 36 18h17'], + 0xE34D: [653,0,632,75,706,'706 653l-48 -163l-19 2c2 17 4 32 4 45c0 56 -36 81 -115 81h-60l-153 -498c-11 -36 -13 -46 -13 -58c0 -31 12 -40 57 -43l42 -3v-16h-319v16c72 5 99 21 116 74l159 528c-169 2 -204 -15 -262 -123l-20 4l46 154h585'], + 0xE34E: [653,0,713,91,786,'786 653l-53 -163l-21 2c3 17 4 32 4 45c0 56 -39 81 -126 81h-67l-168 -498c-12 -36 -14 -46 -14 -58c0 -31 13 -40 63 -43l46 -3v-16h-351v16c80 5 109 21 128 74l174 528c-185 2 -224 -15 -288 -123l-22 4l51 154h644'], + 0xE34F: [546,11,326,51,336,'336 428l-6 -32h-92l-97 -333c-7 -13 1 -25 15 -25c18 0 36 16 89 79l15 -7c-70 -93 -106 -121 -156 -121c-30 0 -53 16 -53 37c0 10 7 41 18 74l86 296h-81c-1 3 -1 6 -1 6c0 11 7 17 35 25c35 8 104 60 146 110c6 6 9 9 13 9h4l7 -15l-30 -103h88'], + 0xE350: [546,11,376,65,378,'378 428l-6 -32h-102l-106 -333c-7 -13 1 -25 17 -25c19 0 39 16 98 79l16 -7c-77 -93 -116 -121 -172 -121c-33 0 -58 16 -58 37c0 10 8 41 20 74l95 296h-90c-1 3 -1 6 -1 6c0 11 8 17 39 25c38 8 115 60 161 110c6 6 9 9 14 9h4l8 -15l-34 -103h97'], + 0xE351: [653,18,814,122,852,'852 637c-69 -14 -73 -19 -115 -149l-91 -285c-49 -150 -140 -221 -284 -221c-140 0 -240 69 -240 164c0 42 13 104 48 213l58 192c4 17 8 33 8 45c0 29 -11 35 -86 41v16h300v-16c-75 -7 -92 -21 -115 -91l-6 -19c-75 -234 -108 -352 -108 -386c0 -71 63 -118 154 -118 c121 0 192 68 240 232l14 49c54 172 82 271 82 287c0 30 -20 41 -78 46v16h219v-16'], + 0xE352: [653,18,914,143,946,'946 637c-75 -14 -80 -19 -126 -149l-101 -285c-53 -150 -153 -221 -312 -221c-153 0 -264 69 -264 164c0 42 15 104 52 213l65 192c4 17 8 33 8 45c0 29 -12 35 -94 41v16h330v-16c-82 -7 -102 -21 -127 -91l-6 -19c-82 -234 -119 -352 -119 -386 c0 -71 69 -118 170 -118c133 0 210 68 264 232l15 49c60 172 90 271 90 287c0 30 -22 41 -86 46v16h241v-16'], + 0xE353: [441,11,570,56,533,'533 108c-76 -98 -101 -117 -152 -117c-33 0 -53 17 -53 48c0 22 16 87 49 197c-126 -193 -184 -247 -262 -247c-39 0 -59 18 -59 55c0 19 7 50 28 123l40 142c10 33 16 59 16 67c0 7 -6 16 -12 18c-10 5 -12 6 -54 6v14c63 7 102 14 165 27l3 -2l-100 -363 c-1 -3 -1 -5 -1 -9c0 -15 9 -25 23 -25c35 0 89 51 155 146c50 72 62 96 121 244h82l-87 -299c-21 -72 -21 -72 -21 -78c0 -11 4 -17 12 -17c17 0 33 13 91 79'], + 0xE354: [441,11,645,71,595,'595 108c-84 -98 -110 -117 -167 -117c-37 0 -58 17 -58 48c0 22 18 87 54 197c-139 -193 -203 -247 -289 -247c-42 0 -64 18 -64 55c0 19 7 50 30 123l45 142c11 33 17 59 17 67c0 7 -6 16 -14 18c-10 5 -13 6 -59 6v14c69 7 113 14 182 27l3 -2l-110 -363 c-1 -3 -1 -5 -1 -9c0 -15 10 -25 25 -25c39 0 98 51 171 146c54 72 68 96 133 244h90l-96 -299c-23 -72 -23 -72 -23 -78c0 -11 5 -17 13 -17c20 0 37 13 101 79'], + 0xE355: [653,18,692,94,767,'767 637c-25 -1 -43 -13 -62 -40l-410 -615h-21l-93 520c-24 125 -26 128 -87 135v16h265v-16c-70 -7 -85 -17 -85 -51c0 -5 0 -10 1 -15l73 -443l226 356c38 58 58 100 58 119s-20 29 -70 34v16h205v-16'], + 0xE356: [653,18,779,112,852,'852 637c-27 -1 -47 -13 -67 -40l-452 -615h-23l-102 520c-26 125 -28 128 -96 135v16h292v-16c-77 -7 -94 -17 -94 -51c0 -5 0 -10 2 -15l79 -443l250 356c41 58 63 100 63 119s-22 29 -77 34v16h225v-16'], + 0xE357: [441,18,508,33,479,'479 382c0 -38 -29 -102 -67 -152c-116 -146 -215 -248 -242 -248c-10 0 -10 27 -10 46c0 61 -14 207 -27 283c-13 75 -26 93 -67 93c-11 0 -21 0 -33 -1v13c50 7 87 14 122 21c9 3 17 4 22 4c10 0 12 -6 33 -114c15 -66 20 -122 28 -257l34 32c79 74 151 184 151 231 c0 10 -6 18 -20 30c-20 16 -27 28 -27 44c0 21 16 34 41 34c33 0 62 -27 62 -59'], + 0xE358: [441,18,577,45,535,'535 382c0 -38 -31 -102 -73 -152c-127 -146 -236 -248 -267 -248c-10 0 -10 27 -10 46c0 61 -15 207 -29 283c-15 75 -30 93 -74 93c-12 0 -23 0 -37 -1v13c55 7 96 14 135 21c9 3 18 4 24 4c11 0 13 -6 36 -114c16 -66 22 -122 30 -257l38 32c87 74 166 184 166 231 c0 10 -6 18 -22 30c-22 16 -29 28 -29 44c0 21 17 34 45 34c36 0 67 -27 67 -59'], + 0xE359: [653,18,936,88,1007,'1007 637c-42 -12 -53 -21 -83 -72l-333 -583h-22l-55 454h-6l-244 -454h-21l-68 517c-13 94 -18 111 -31 123c-11 8 -21 11 -56 15v16h260v-16c-67 -7 -81 -16 -81 -55l2 -14l48 -406l189 348l-10 69c-7 49 -18 56 -82 58v16h262v-16c-59 -5 -75 -18 -75 -59l1 -14 l44 -402l206 368c15 27 23 50 23 67c0 28 -11 35 -72 40v16h204v-16'], + 0xE35A: [653,18,1048,106,1116,'1116 637c-46 -12 -58 -21 -90 -72l-367 -583h-24l-61 454h-6l-268 -454h-23l-75 517c-15 94 -20 111 -34 123c-12 8 -23 11 -62 15v16h285v-16c-73 -7 -88 -16 -88 -55l1 -14l54 -406l208 348l-11 69c-9 49 -21 56 -91 58v16h288v-16c-64 -5 -82 -18 -82 -59l1 -14 l48 -402l227 368c17 27 25 50 25 67c0 28 -12 35 -79 40v16h224v-16'], + 0xE35B: [441,18,754,28,723,'723 389c0 -64 -80 -186 -233 -353l-10 -11c-29 -33 -40 -43 -50 -43c-7 0 -10 3 -12 30l-36 304l-97 -141s-115 -193 -128 -193c-9 0 -12 8 -14 47l-4 88c-5 81 -19 197 -31 245c-9 36 -17 42 -48 42h-32v13s79 12 135 24c12 0 14 -2 21 -34c15 -72 31 -193 35 -281 l211 304c6 8 9 10 15 10s8 -3 8 -14l36 -352c144 164 181 217 181 260c0 12 -7 22 -24 37c-18 15 -23 23 -23 37c0 20 16 33 43 33c33 0 57 -22 57 -52'], + 0xE35C: [441,18,847,39,804,'804 389c0 -64 -88 -186 -256 -353l-11 -11c-32 -33 -44 -43 -55 -43c-8 0 -11 3 -13 30l-40 304l-106 -141s-128 -193 -141 -193c-11 0 -13 8 -16 47l-4 88c-5 81 -21 197 -34 245c-10 36 -18 42 -54 42h-35v13s87 12 149 24c14 0 16 -2 23 -34c17 -72 34 -193 39 -281 l232 304c6 8 10 10 16 10c7 0 10 -3 10 -14l38 -352c159 164 200 217 200 260c0 12 -7 22 -27 37c-19 15 -25 23 -25 37c0 20 18 33 47 33c36 0 63 -22 63 -52'], + 0xE35D: [653,0,692,-22,731,'731 637c-48 -14 -81 -37 -138 -95l-186 -194l112 -258c28 -60 38 -66 115 -74v-16h-301v16c73 5 84 10 84 39c0 15 -4 31 -12 49l-74 165l-166 -172c-15 -16 -23 -32 -23 -47c0 -25 19 -34 72 -34v-16h-236v16c58 11 89 36 242 200l91 97l-116 263 c-21 46 -38 56 -101 61v16h290v-16c-60 -7 -78 -16 -78 -41c0 -13 4 -29 16 -56l65 -147l160 167c15 17 22 28 22 41c0 23 -13 30 -67 36v16h229v-16'], + 0xE35E: [653,0,779,-15,813,'813 637c-52 -14 -89 -37 -152 -95l-204 -194l123 -258c30 -60 41 -66 126 -74v-16h-330v16c80 5 92 10 92 39c0 15 -5 31 -14 49l-81 165l-182 -172c-17 -16 -26 -32 -26 -47c0 -25 21 -34 79 -34v-16h-259v16c64 11 98 36 266 200l101 97l-129 263 c-23 46 -41 56 -111 61v16h319v-16c-66 -7 -86 -16 -86 -41c0 -13 5 -29 19 -56l71 -147l175 167c17 17 25 28 25 41c0 23 -15 30 -74 36v16h252v-16'], + 0xE35F: [441,11,508,-20,502,'502 404c0 -21 -16 -36 -38 -36c-10 0 -17 2 -30 9c-10 5 -20 8 -27 8c-20 0 -59 -44 -108 -121c0 -15 14 -69 40 -163c1 -2 2 -7 4 -16c8 -28 18 -41 33 -41s27 10 52 40c10 12 15 17 24 27l16 -8c-64 -90 -93 -114 -135 -114c-35 0 -49 15 -63 67l-33 120l-99 -118 c-55 -60 -69 -69 -103 -69s-55 16 -55 42c0 20 16 35 38 35c10 0 21 -3 35 -10c11 -6 22 -9 29 -9c12 0 33 18 56 48l90 117l-32 123c-15 60 -22 69 -50 69c-8 0 -22 -2 -42 -7l-19 -4l-5 15l13 4c68 21 103 29 128 29c30 0 42 -20 57 -88l13 -55c77 107 117 143 166 143 c26 0 45 -15 45 -37'], + 0xE360: [441,11,577,-13,561,'561 404c0 -21 -17 -36 -41 -36c-11 0 -20 2 -34 9c-11 5 -22 8 -29 8c-22 0 -66 -44 -119 -121c0 -15 15 -69 44 -163c1 -2 2 -7 5 -16c8 -28 19 -41 36 -41c16 0 29 10 57 40c11 12 17 17 26 27l17 -8c-70 -90 -101 -114 -147 -114c-39 0 -55 15 -70 67l-37 120 l-109 -118c-60 -60 -75 -69 -112 -69c-38 0 -61 16 -61 42c0 20 17 35 41 35c11 0 23 -3 39 -10c12 -6 24 -9 32 -9c13 0 36 18 61 48l100 117l-36 123c-16 60 -24 69 -54 69c-10 0 -24 -2 -47 -7l-21 -4l-5 15l14 4c75 21 113 29 141 29c33 0 46 -20 63 -88l14 -55 c84 107 129 143 182 143c29 0 50 -15 50 -37'], + 0xE361: [653,0,632,96,706,'706 637c-33 -14 -41 -22 -77 -61l-241 -270l-31 -101l-7 -20c-26 -79 -34 -108 -34 -129c0 -25 15 -35 58 -37l40 -3v-16h-318v16c72 4 97 20 115 74l67 212l-84 269c-19 55 -22 58 -84 66v16h263v-16c-66 -6 -79 -11 -79 -36c0 -15 12 -58 39 -144l35 -110l41 46 c116 122 165 186 165 213c0 17 -14 25 -46 28l-30 3v16h208v-16'], + 0xE362: [653,0,713,114,786,'786 637c-36 -14 -46 -22 -85 -61l-265 -270l-35 -101l-7 -20c-29 -79 -38 -108 -38 -129c0 -25 17 -35 65 -37l43 -3v-16h-350v16c80 4 107 20 127 74l74 212l-93 269c-20 55 -24 58 -92 66v16h289v-16c-72 -6 -87 -11 -87 -36c0 -15 13 -58 44 -144l37 -110l46 46 c127 122 182 186 182 213c0 17 -16 25 -51 28l-33 3v16h229v-16'], + 0xE363: [441,206,508,-16,479,'479 386c0 -57 -52 -167 -144 -305c-114 -172 -233 -287 -295 -287c-33 0 -56 18 -56 44c0 22 18 39 43 39c13 0 24 -5 40 -17c12 -8 19 -11 27 -11c14 0 27 8 52 33c20 19 70 78 79 91c6 12 11 24 11 35c0 40 -61 264 -91 332c-21 49 -40 64 -84 64c-12 0 -21 -1 -34 -4 v17l35 6l108 17l9 1h5c16 0 78 -164 94 -253l22 -116c95 142 135 219 135 259c0 14 -8 23 -29 34c-22 13 -31 23 -31 39c0 22 18 37 43 37c33 0 61 -25 61 -55'], + 0xE364: [441,206,577,-9,535,'535 386c0 -57 -56 -167 -158 -305c-125 -172 -255 -287 -324 -287c-37 0 -62 18 -62 44c0 22 21 39 47 39c15 0 27 -5 45 -17c13 -8 20 -11 29 -11c16 0 30 8 58 33c22 19 76 78 86 91c7 12 12 24 12 35c0 40 -66 264 -99 332c-23 49 -45 64 -93 64c-14 0 -23 -1 -38 -4 v17l39 6l118 17l11 1h5c18 0 86 -164 104 -253l24 -116c105 142 148 219 148 259c0 14 -8 23 -31 34c-25 13 -34 23 -34 39c0 22 19 37 47 37c36 0 66 -25 66 -55'], + 0xE365: [653,0,632,3,677,'677 639l-532 -603h177c91 0 146 8 183 28c37 19 57 43 92 107l21 -3l-59 -168h-556v14l527 603h-188c-82 0 -141 -12 -172 -37c-21 -17 -35 -34 -58 -78l-21 5l51 146h535v-14'], + 0xE366: [653,0,713,13,753,'753 639l-584 -603h195c99 0 159 8 201 28c41 19 62 43 101 107l23 -3l-65 -168h-611v14l579 603h-207c-90 0 -154 -12 -190 -37c-23 -17 -37 -34 -62 -78l-23 5l55 146h588v-14'], + 0xE367: [428,81,448,8,428,'428 417l-319 -344c64 -13 85 -26 133 -83c36 -41 50 -50 77 -50c18 0 30 6 30 15c0 4 -2 9 -6 15c-6 12 -10 21 -10 29c0 19 16 32 38 32c23 0 38 -14 38 -36c0 -40 -48 -76 -103 -76c-32 0 -68 13 -123 44c-52 29 -87 42 -116 42c-17 0 -32 -5 -49 -18l-10 9l341 372 h-161c-51 0 -66 -9 -89 -59l-17 4l34 115h312v-11'], + 0xE368: [428,81,511,18,480,'480 417l-351 -344c70 -13 93 -26 146 -83c40 -41 55 -50 85 -50c19 0 33 6 33 15c0 4 -3 9 -6 15c-8 12 -11 21 -11 29c0 19 17 32 41 32c25 0 42 -14 42 -36c0 -40 -53 -76 -114 -76c-35 0 -75 13 -135 44c-57 29 -96 42 -127 42c-19 0 -35 -5 -55 -18l-10 9l375 372 h-177c-57 0 -73 -9 -98 -59l-19 4l37 115h344v-11'], + 0xE369: [461,0,278,16,255,'255 0h-239v24c46 11 53 19 53 60v294c0 41 -9 50 -53 59v24h192v-380c0 -38 12 -52 47 -57v-24'], + 0xE36A: [461,203,333,-57,260,'260 2c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v474c0 43 -12 55 -63 59v24h202v-459'], + 0xE36B: [462,9,278,2,238,'238 127c-70 -106 -107 -136 -167 -136c-41 0 -69 25 -69 63c0 14 5 40 13 69l58 215c4 17 7 32 7 40c0 19 -16 29 -46 29h-13v27c78 6 148 16 202 28l-91 -334c-4 -17 -9 -43 -9 -52c0 -8 7 -15 15 -15c15 0 38 21 64 60l14 20'], + 0xE36C: [462,207,278,-189,239,'239 462l-114 -438c-40 -155 -109 -231 -209 -231c-63 0 -105 31 -105 77c0 29 22 53 49 53s49 -22 49 -49c0 -10 -2 -17 -10 -28c-4 -6 -5 -7 -5 -10c0 -6 12 -12 24 -12c28 0 45 31 71 131l92 355c8 30 12 54 12 67c0 21 -13 30 -42 30h-20v27c112 10 148 15 208 28'], + 0xE36D: [674,0,954,98,856,'856 0h-279v19c38 0 48 2 60 9c10 4 17 15 17 24c0 15 -8 40 -21 68l-45 95h-289l-50 -116c-6 -13 -8 -27 -8 -39c0 -28 21 -41 74 -41v-19h-217v19c52 3 66 18 135 164l229 491h22l273 -568c40 -74 51 -84 99 -87v-19zM572 257l-127 275l-128 -275h255'], + 0xE36E: [674,0,1067,117,950,'950 0h-307v19c43 0 53 2 67 9c11 4 18 15 18 24c0 15 -9 40 -23 68l-50 95h-317l-55 -116c-6 -13 -9 -27 -9 -39c0 -28 23 -41 81 -41v-19h-238v19c57 3 72 18 149 164l251 491h25l300 -568c43 -74 55 -84 108 -87v-19zM638 257l-140 275l-140 -275h280'], + 0xE36F: [668,0,873,98,775,'775 0h-271v16c70 6 86 15 86 53c0 8 -1 17 -2 26l-22 131h-242l-63 -113c-19 -34 -22 -43 -22 -62c0 -25 9 -30 65 -35v-16h-206v16c44 8 55 19 142 152l319 500h29l103 -566c13 -73 21 -81 84 -86v-16zM560 262l-48 260l-165 -260h213'], + 0xE370: [668,0,978,117,861,'861 0h-298v16c78 6 95 15 95 53c0 8 -2 17 -3 26l-24 131h-266l-69 -113c-21 -34 -24 -43 -24 -62c0 -25 9 -30 71 -35v-16h-226v16c48 8 60 19 156 152l351 500h31l114 -566c15 -73 23 -81 92 -86v-16zM625 262l-53 260l-182 -260h235'], + 0xE371: [690,0,944,98,846,'846 0h-356v25l35 3c38 2 53 11 53 33s-14 57 -51 136h-247l-17 -40c-24 -55 -32 -78 -32 -91c0 -26 25 -37 90 -41v-25h-223v25c53 9 66 23 108 117l244 548h31l245 -526c60 -125 72 -139 120 -139v-25zM511 236l-112 243l-103 -243h215'], + 0xE372: [690,0,1056,117,940,'940 0h-392v25l38 3c43 2 58 11 58 33s-14 57 -55 136h-273l-18 -40c-26 -55 -35 -78 -35 -91c0 -26 28 -37 99 -41v-25h-245v25c58 9 72 23 118 117l269 548h34l270 -526c65 -125 78 -139 132 -139v-25zM571 236l-123 243l-113 -243h236'], + 0xE373: [683,0,922,98,824,'824 0h-334v25c70 6 87 17 87 59c0 14 -5 44 -9 72l-8 52h-236l-65 -102c-11 -17 -17 -32 -17 -46c0 -24 21 -35 72 -35v-25h-216v25c40 8 56 21 91 70l410 588h27l106 -572c14 -76 19 -81 92 -86v-25zM552 248l-40 243l-163 -243h203'], + 0xE374: [683,0,1032,117,915,'915 0h-367v25c77 6 95 17 95 59c0 14 -5 44 -10 72l-8 52h-260l-72 -102c-12 -17 -18 -32 -18 -46c0 -24 23 -35 79 -35v-25h-237v25c43 8 62 21 100 70l450 588h31l116 -572c15 -76 22 -81 101 -86v-25zM617 248l-45 243l-179 -243h224'], + 0xE375: [662,0,830,98,732,'732 180c0 -48 -22 -93 -63 -124c-40 -35 -118 -56 -204 -56h-367v19c91 3 106 17 106 90v444c0 73 -14 85 -106 90v19h308c190 0 288 -58 288 -170c0 -41 -16 -78 -44 -100c-26 -21 -49 -31 -106 -44c70 -16 101 -28 134 -55c34 -29 54 -69 54 -113zM581 488 c0 88 -67 137 -193 137h-48c-16 0 -24 -10 -24 -30v-230h104c104 0 161 45 161 123zM605 179c0 63 -30 103 -92 126c-40 16 -90 20 -197 20v-247c0 -32 15 -41 69 -41c73 0 118 9 153 26c43 23 67 63 67 116'], + 0xE376: [662,0,931,117,814,'814 180c0 -48 -24 -93 -69 -124c-44 -35 -130 -56 -224 -56h-404v19c100 3 116 17 116 90v444c0 73 -15 85 -116 90v19h339c209 0 317 -58 317 -170c0 -41 -19 -78 -49 -100c-29 -21 -54 -31 -117 -44c77 -16 111 -28 147 -55c38 -29 60 -69 60 -113zM648 488 c0 88 -74 137 -212 137h-53c-18 0 -27 -10 -27 -30v-230h115c114 0 177 45 177 123zM675 179c0 63 -33 103 -102 126c-44 16 -99 20 -217 20v-247c0 -32 17 -41 77 -41c79 0 129 9 168 26c47 23 74 63 74 116'], + 0xE377: [653,0,852,98,754,'754 506c0 -41 -17 -74 -48 -98c-35 -28 -67 -40 -145 -57c105 -41 139 -78 139 -151c0 -119 -119 -200 -292 -200h-310v16c62 10 69 16 89 74l135 442c8 25 13 49 13 64c0 29 -16 36 -85 41v16h284c142 0 220 -52 220 -147zM581 204c0 55 -28 99 -74 115 c-22 8 -69 12 -138 12l-36 -119c-25 -80 -38 -127 -38 -140c0 -28 24 -42 70 -42c135 0 216 66 216 174zM643 515c0 74 -40 108 -129 108c-43 0 -56 -6 -63 -28l-71 -232h37c152 0 226 49 226 152'], + 0xE378: [653,0,955,117,838,'838 506c0 -41 -18 -74 -52 -98c-39 -28 -74 -40 -160 -57c115 -41 153 -78 153 -151c0 -119 -131 -200 -321 -200h-341v16c68 10 76 16 98 74l149 442c8 25 13 49 13 64c0 29 -17 36 -93 41v16h312c156 0 242 -52 242 -147zM648 204c0 55 -30 99 -81 115 c-24 8 -76 12 -153 12l-38 -119c-28 -80 -43 -127 -43 -140c0 -28 27 -42 78 -42c147 0 237 66 237 174zM716 515c0 74 -44 108 -142 108c-47 0 -62 -6 -69 -28l-78 -232h41c167 0 248 49 248 152'], + 0xE379: [676,0,859,98,761,'761 188c0 -113 -123 -188 -309 -188h-354v25c80 8 97 20 97 71v484c0 51 -21 67 -97 71v25h340c184 0 286 -57 286 -160c0 -76 -47 -117 -175 -151c77 -15 114 -30 153 -60c38 -31 59 -72 59 -117zM542 509c0 94 -35 137 -112 137c-43 0 -59 -13 -59 -49v-224 c135 3 171 31 171 136zM572 179c0 110 -55 164 -168 164h-33v-250c0 -44 19 -61 67 -61c89 0 134 50 134 147'], + 0xE37A: [676,0,963,117,846,'846 188c0 -113 -135 -188 -340 -188h-389v25c88 8 106 20 106 71v484c0 51 -23 67 -106 71v25h374c202 0 314 -57 314 -160c0 -76 -52 -117 -192 -151c85 -15 126 -30 168 -60c42 -31 65 -72 65 -117zM606 509c0 94 -39 137 -124 137c-47 0 -65 -13 -65 -49v-224 c149 3 189 31 189 136zM638 179c0 110 -60 164 -185 164h-36v-250c0 -44 20 -61 74 -61c98 0 147 50 147 147'], + 0xE37B: [669,0,909,98,811,'811 523c0 -41 -19 -81 -52 -106c-38 -29 -72 -43 -156 -62c112 -33 151 -71 151 -149c0 -128 -124 -206 -325 -206h-331v25c53 6 70 21 88 72l134 449c8 25 12 47 12 57c0 12 -7 25 -16 30c-13 7 -23 9 -64 11v25h299c171 0 260 -50 260 -146zM585 229 c0 37 -13 67 -38 85c-23 16 -55 22 -127 24l-72 -244c-5 -14 -6 -21 -6 -29c0 -23 20 -33 63 -33c48 0 86 13 115 40c40 36 65 98 65 157zM649 536c0 67 -32 101 -96 101c-35 0 -46 -8 -57 -44l-67 -225c82 3 119 10 153 30c44 26 67 74 67 138'], + 0xE37C: [669,0,1018,117,901,'901 523c0 -41 -21 -81 -57 -106c-42 -29 -80 -43 -172 -62c124 -33 166 -71 166 -149c0 -128 -136 -206 -357 -206h-364v25c58 6 77 21 97 72l147 449c9 25 14 47 14 57c0 12 -9 25 -19 30c-14 7 -25 9 -70 11v25h329c188 0 286 -50 286 -146zM653 229 c0 37 -15 67 -43 85c-25 16 -60 22 -139 24l-80 -244c-4 -14 -6 -21 -6 -29c0 -23 22 -33 69 -33c54 0 95 13 127 40c44 36 72 98 72 157zM723 536c0 67 -35 101 -105 101c-39 0 -51 -8 -63 -44l-74 -225c90 3 131 10 168 30c49 26 74 74 74 138'], + 0xE37D: [662,0,782,98,684,'684 519h-26c-19 90 -43 105 -167 105h-150c-31 0 -35 -6 -35 -34v-481c0 -72 15 -86 100 -90v-19h-308v19c84 5 96 18 96 101v433c0 70 -15 83 -96 90v19h584'], + 0xE37E: [662,0,879,117,762,'762 519h-29c-21 90 -47 105 -184 105h-165c-34 0 -39 -6 -39 -34v-481c0 -72 17 -86 111 -90v-19h-339v19c92 5 105 18 105 101v433c0 70 -16 83 -105 90v19h642'], + 0xE37F: [662,0,975,98,877,'877 662l-40 -143h-26c8 90 -12 105 -137 105h-149c-31 0 -36 -6 -45 -34l-142 -481c-21 -72 -10 -86 74 -90l-6 -19h-308l6 19c84 5 101 18 125 101l128 433c20 70 9 83 -70 90l6 19h584'], + 0xE380: [662,0,1090,117,973,'973 662l-43 -143h-29c8 90 -13 105 -150 105h-165c-34 0 -40 -6 -49 -34l-156 -481c-23 -72 -11 -86 81 -90l-6 -19h-339l6 19c93 5 111 18 138 101l140 433c23 70 11 83 -76 90l6 19h642'], + 0xE381: [676,0,831,98,733,'733 475h-27c-15 63 -27 90 -51 115c-34 35 -110 52 -212 52c-56 0 -70 -10 -70 -47v-499c0 -55 20 -67 121 -71v-25h-396v25c81 8 97 19 97 71v484c0 52 -21 67 -97 71v25h635v-201'], + 0xE382: [676,0,932,117,815,'815 475h-29c-17 63 -30 90 -57 115c-37 35 -121 52 -232 52c-62 0 -78 -10 -78 -47v-499c0 -55 22 -67 133 -71v-25h-435v25c89 8 106 19 106 71v484c0 52 -23 67 -106 71v25h698v-201'], + 0xE383: [676,0,1030,98,932,'932 676l-60 -201h-26c3 63 -1 90 -18 115c-24 35 -94 52 -195 52c-56 0 -74 -10 -85 -47l-146 -499c-17 -55 0 -67 100 -71l-8 -25h-396l8 25c83 8 102 19 117 71l142 484c16 52 -1 67 -76 71l8 25h635'], + 0xE384: [676,0,1151,117,1034,'1034 676l-65 -201h-29c3 63 -2 90 -20 115c-26 35 -104 52 -215 52c-62 0 -81 -10 -93 -47l-161 -499c-18 -55 0 -67 110 -71l-9 -25h-435l8 25c92 8 113 19 130 71l156 484c17 52 -1 67 -84 71l9 25h698'], + 0xE385: [662,0,838,98,740,'740 169l-48 -169h-594v19c81 5 96 19 96 90v444c0 71 -15 83 -96 90v19h584l2 -143h-26c-19 90 -43 105 -167 105h-149c-29 0 -36 -6 -36 -34v-222h169c88 0 107 13 121 95h26v-232h-26c-14 83 -30 96 -121 96h-169v-247c0 -19 2 -28 9 -32c10 -7 54 -11 105 -11h31 c156 0 205 24 260 132h29'], + 0xE386: [662,0,940,117,823,'823 169l-53 -169h-653v19c89 5 105 19 105 90v444c0 71 -16 83 -105 90v19h642l3 -143h-29c-21 90 -47 105 -184 105h-164c-32 0 -40 -6 -40 -34v-222h187c97 0 117 13 133 95h28v-232h-28c-16 83 -34 96 -133 96h-187v-247c0 -19 3 -28 10 -32c11 -7 59 -11 116 -11h34 c172 0 225 24 286 132h32'], + 0xE387: [653,0,895,98,797,'797 653l-35 -153l-23 2c1 17 3 32 3 45c0 60 -39 73 -212 73c-62 0 -73 -4 -80 -26l-73 -233l87 2c99 3 110 10 152 95l20 -4l-75 -232l-22 5c6 22 8 34 8 52c0 17 -2 26 -8 31c-12 10 -43 16 -86 15l-85 3l-36 -115c-27 -88 -39 -134 -39 -146c0 -24 25 -34 87 -34 c83 0 158 10 199 27c47 20 76 45 127 110l18 -8l-68 -162h-558v16c62 10 69 16 89 74l135 442c6 20 13 52 13 64c0 27 -17 35 -85 41v16h547'], + 0xE388: [653,0,1002,117,885,'885 653l-37 -153l-26 2c1 17 3 32 3 45c0 60 -43 73 -233 73c-69 0 -81 -4 -88 -26l-80 -233l96 2c109 3 121 10 167 95l21 -4l-82 -232l-24 5c6 22 8 34 8 52c0 17 -2 26 -8 31c-13 10 -47 16 -94 15l-95 3l-38 -115c-31 -88 -44 -134 -44 -146c0 -24 28 -34 96 -34 c92 0 174 10 219 27c52 20 83 45 140 110l19 -8l-75 -162h-613v16c68 10 76 16 98 74l149 442c6 20 13 52 13 64c0 27 -18 35 -93 41v16h601'], + 0xE389: [676,0,884,98,786,'786 208l-44 -208h-644v25c81 8 97 19 97 71v484c0 51 -21 67 -97 71v25h635v-201h-28c-27 133 -81 167 -260 167c-58 0 -72 -9 -72 -47v-232c119 -1 162 35 178 149h29v-338h-29c-13 116 -58 155 -178 155v-242c0 -43 20 -56 91 -56c86 0 147 17 198 55 c38 29 60 57 93 122h31'], + 0xE38A: [676,0,990,117,873,'873 208l-48 -208h-708v25c89 8 106 19 106 71v484c0 51 -23 67 -106 71v25h698v-201h-30c-31 133 -90 167 -287 167c-63 0 -79 -9 -79 -47v-232c131 -1 178 35 196 149h32v-338h-32c-14 116 -64 155 -196 155v-242c0 -43 22 -56 101 -56c94 0 161 17 218 55 c41 29 65 57 101 122h34'], + 0xE38B: [669,0,944,98,846,'846 669l-47 -190l-30 5c0 62 -8 87 -33 111c-30 27 -89 42 -169 42c-45 0 -59 -9 -70 -44l-67 -223c145 -1 174 12 226 106l31 -4l-82 -273l-31 5c4 19 5 30 5 44c0 69 -33 88 -159 90l-61 -209c-11 -21 -17 -42 -17 -63c0 -24 20 -34 67 -34c97 0 173 19 236 61 c40 27 62 50 100 106l27 -5l-65 -194h-609v25c57 8 70 19 88 72l135 449c7 23 11 46 11 61c0 20 -12 29 -46 33l-34 4v25h594'], + 0xE38C: [669,0,1056,117,940,'940 669l-52 -190l-33 5c0 62 -9 87 -36 111c-33 27 -98 42 -187 42c-49 0 -64 -9 -76 -44l-74 -223c160 -1 191 12 248 106l34 -4l-89 -273l-34 5c3 19 5 30 5 44c0 69 -37 88 -175 90l-67 -209c-13 -21 -19 -42 -19 -63c0 -24 22 -34 74 -34c107 0 190 19 259 61 c45 27 69 50 110 106l31 -5l-72 -194h-670v25c63 8 77 19 97 72l148 449c8 23 13 46 13 61c0 20 -14 29 -51 33l-38 4v25h654'], + 0xE38D: [662,0,842,98,744,'744 175l-26 -175h-620v16l480 608h-242c-73 0 -122 -14 -148 -43c-18 -21 -27 -41 -37 -90h-29l22 171h578v-16l-473 -608h281c63 0 111 14 137 39c22 22 33 43 53 98h24'], + 0xE38E: [662,0,944,117,827,'827 175l-28 -175h-682v16l527 608h-266c-80 0 -134 -14 -162 -43c-21 -21 -30 -41 -41 -90h-32l25 171h635v-16l-520 -608h309c69 0 123 14 150 39c25 22 37 43 58 98h27'], + 0xE38F: [653,0,869,98,771,'771 639l-531 -603h177c90 0 145 8 183 28c37 19 57 43 92 107l21 -3l-59 -168h-556v14l527 603h-188c-83 0 -141 -12 -173 -37c-21 -17 -34 -34 -57 -78l-21 5l51 146h534v-14'], + 0xE390: [653,0,974,117,857,'857 639l-584 -603h195c99 0 159 8 201 28c41 19 62 43 101 107l23 -3l-65 -168h-611v14l579 603h-207c-90 0 -154 -12 -189 -37c-23 -17 -38 -34 -63 -78l-23 5l55 146h588v-14'], + 0xE391: [676,0,863,98,765,'765 241l-29 -241h-638v16l420 625l-91 -3c-163 0 -211 -29 -264 -168h-31l23 206h577v-16l-417 -625h81c106 0 196 15 233 39c52 33 77 73 107 167h29'], + 0xE392: [676,0,967,117,850,'850 241l-31 -241h-702v16l462 625l-100 -3c-179 0 -233 -29 -291 -168h-34l26 206h634v-16l-459 -625h90c116 0 215 15 256 39c57 33 85 73 118 167h31'], + 0xE393: [669,0,857,98,759,'759 640l-477 -605h77c97 0 161 14 211 45c44 27 86 69 120 119l30 -5l-65 -194h-557v29l477 605h-85c-121 0 -191 -37 -278 -147l-30 4l62 178h515v-29'], + 0xE394: [669,0,961,117,844,'844 640l-525 -605h85c106 0 177 14 232 45c48 27 94 69 132 119l32 -5l-71 -194h-612v29l525 605h-94c-134 0 -210 -37 -305 -147l-34 4l69 178h566v-29'], + 0xE395: [662,0,947,98,849,'849 0h-305v19c85 5 96 17 96 101v195h-333v-206c0 -71 14 -83 97 -90v-19h-306v19c86 5 97 17 97 101v433c0 72 -12 82 -97 90v19h306v-19c-85 -8 -97 -18 -97 -90v-194h333v194c0 72 -12 82 -96 90v19h305v-19c-84 -8 -96 -18 -96 -90v-444c0 -71 13 -83 96 -90v-19'], + 0xE396: [662,0,1060,117,943,'943 0h-336v19c94 5 106 17 106 101v195h-366v-206c0 -71 15 -83 106 -90v-19h-336v19c94 5 106 17 106 101v433c0 72 -13 82 -106 90v19h336v-19c-93 -8 -106 -18 -106 -90v-194h366v194c0 72 -13 82 -106 90v19h336v-19c-93 -8 -106 -18 -106 -90v-444 c0 -71 14 -83 106 -90v-19'], + 0xE397: [653,0,1049,98,951,'951 637c-63 -10 -72 -16 -91 -74l-145 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 86 -42v-16h-301v16c72 7 94 22 111 74l72 236h-314l-72 -244c-2 -7 -3 -15 -3 -22c0 -29 12 -36 78 -44v-16h-271v16c62 10 69 16 89 74l135 442c9 27 13 47 13 62c0 29 -16 37 -85 43v16 h300v-16c-66 -4 -94 -23 -111 -74l-59 -195h313l51 164c7 27 12 47 12 62c0 28 -13 36 -77 43v16h272v-16'], + 0xE398: [653,0,1171,117,1055,'1055 637c-69 -10 -79 -16 -100 -74l-159 -481c-3 -8 -4 -16 -4 -24c0 -28 16 -35 94 -42v-16h-330v16c79 7 103 22 122 74l79 236h-345l-80 -244c-2 -7 -3 -15 -3 -22c0 -29 13 -36 85 -44v-16h-297v16c68 10 76 16 98 74l149 442c9 27 13 47 13 62c0 29 -17 37 -93 43 v16h330v-16c-72 -4 -104 -23 -122 -74l-65 -195h344l56 164c9 27 13 47 13 62c0 28 -14 36 -84 43v16h299v-16'], + 0xE399: [676,0,1008,98,910,'910 0h-374v25c80 8 99 22 99 71v230h-265v-230c0 -49 18 -63 99 -71v-25h-371v25c77 9 94 22 94 71v484c0 50 -20 65 -94 71v25h371v-25c-77 -5 -99 -21 -99 -71v-207h265v207c0 50 -22 66 -99 71v25h374v-25c-75 -5 -97 -21 -97 -71v-484c0 -49 18 -62 97 -71v-25'], + 0xE39A: [676,0,1127,117,1010,'1010 0h-412v25c89 8 109 22 109 71v230h-291v-230c0 -49 20 -63 109 -71v-25h-408v25c85 9 103 22 103 71v484c0 50 -22 65 -103 71v25h408v-25c-85 -5 -109 -21 -109 -71v-207h291v207c0 50 -24 66 -109 71v25h412v-25c-82 -5 -107 -21 -107 -71v-484 c0 -49 20 -62 107 -71v-25'], + 0xE39B: [669,0,1101,98,1003,'1003 644c-56 -7 -71 -19 -89 -72l-126 -419c-17 -52 -21 -72 -21 -87c0 -29 20 -39 80 -41v-25h-349v25c74 4 96 18 112 72l70 232h-263l-59 -197c-8 -24 -15 -49 -15 -64c0 -32 10 -38 81 -43v-25h-326v25c55 7 70 20 88 72l134 449c9 28 12 46 12 58 c0 22 -11 31 -46 35l-34 5v25h349v-25c-72 -2 -94 -17 -111 -72l-60 -199h263l52 173c5 19 11 49 11 61c0 20 -11 28 -45 32l-35 5v25h327v-25'], + 0xE39C: [669,0,1229,117,1113,'1113 644c-62 -7 -79 -19 -98 -72l-140 -419c-18 -52 -23 -72 -23 -87c0 -29 22 -39 89 -41v-25h-384v25c81 4 106 18 122 72l78 232h-289l-66 -197c-8 -24 -15 -49 -15 -64c0 -32 11 -38 88 -43v-25h-358v25c60 7 77 20 97 72l147 449c10 28 14 46 14 58 c0 22 -13 31 -51 35l-38 5v25h384v-25c-79 -2 -103 -17 -122 -72l-66 -199h289l57 173c6 19 12 49 12 61c0 20 -12 28 -49 32l-39 5v25h361v-25'], + 0xE39D: [675,14,915,98,817,'817 327c0 -201 -149 -341 -366 -341c-97 0 -195 40 -258 102c-60 58 -95 149 -95 243c0 201 150 344 360 344c104 0 198 -35 267 -104c61 -60 92 -146 92 -244zM692 328c0 119 -34 213 -93 262c-40 32 -91 50 -141 50c-62 0 -115 -22 -158 -65 c-47 -47 -77 -144 -77 -246c0 -111 37 -212 94 -258c38 -31 88 -49 139 -49c58 0 106 18 146 54c25 22 44 47 54 72c22 52 36 121 36 180zM588 213h-21c0 56 -21 78 -87 78h-45c-64 0 -86 -22 -86 -78h-20v236h20c2 -58 21 -78 88 -78h44c64 0 86 22 86 78h21v-236'], + 0xE39E: [675,14,1025,117,908,'908 327c0 -201 -164 -341 -403 -341c-106 0 -214 40 -284 102c-65 58 -104 149 -104 243c0 201 164 344 395 344c115 0 218 -35 295 -104c66 -60 101 -146 101 -244zM770 328c0 119 -37 213 -103 262c-43 32 -99 50 -155 50c-67 0 -125 -22 -173 -65 c-52 -47 -84 -144 -84 -246c0 -111 40 -212 103 -258c42 -31 96 -49 152 -49c64 0 117 18 161 54c28 22 48 47 59 72c24 52 40 121 40 180zM655 213h-23c0 56 -23 78 -95 78h-50c-70 0 -94 -22 -94 -78h-22v236h22c2 -58 23 -78 96 -78h49c70 0 94 22 94 78h23v-236'], + 0xE39F: [666,18,899,98,801,'685 481c0 94 -53 152 -141 152c-83 0 -152 -40 -214 -125c-65 -87 -116 -232 -116 -324c0 -109 50 -169 143 -169c79 0 148 41 210 124c69 94 118 237 118 342zM801 418c-12 -226 -234 -436 -463 -436c-140 0 -240 99 -240 239c0 123 72 251 191 344 c86 66 178 101 264 101c149 0 256 -107 248 -248zM617 449l-79 -223h-21c17 56 -3 71 -69 71h-23c-64 0 -98 -15 -115 -71h-19l79 223h20c-16 -58 -8 -77 59 -77h22c64 0 109 21 125 77h21'], + 0xE3A0: [666,18,1007,117,890,'763 481c0 94 -59 152 -156 152c-91 0 -167 -40 -235 -125c-71 -87 -128 -232 -128 -324c0 -109 56 -169 157 -169c87 0 164 41 231 124c76 94 131 237 131 342zM890 418c-13 -226 -258 -436 -509 -436c-154 0 -264 99 -264 239c0 123 78 251 210 344 c95 66 195 101 291 101c163 0 280 -107 272 -248zM688 449l-87 -223h-23c18 56 -4 71 -76 71h-26c-70 0 -108 -15 -126 -71h-21l87 223h21c-16 -58 -8 -77 66 -77h24c70 0 120 21 138 77h23'], + 0xE3A1: [691,19,975,98,877,'877 336c0 -207 -162 -355 -390 -355c-227 0 -389 147 -389 354c0 208 164 356 394 356c221 0 385 -151 385 -355zM682 329c0 208 -70 329 -191 329c-129 0 -198 -116 -198 -332c0 -202 68 -312 194 -312c127 0 195 110 195 315zM600 216h-20c-3 44 -28 63 -85 63h-19 c-64 0 -78 -14 -82 -63h-20v121v121h20c3 -44 27 -63 85 -63h18c65 0 78 14 83 63h20v-121v-121'], + 0xE3A2: [691,19,1090,117,973,'973 336c0 -207 -177 -355 -428 -355c-250 0 -428 147 -428 354c0 208 180 356 433 356c243 0 423 -151 423 -355zM759 329c0 208 -77 329 -210 329c-142 0 -218 -116 -218 -332c0 -202 75 -312 214 -312s214 110 214 315zM669 216h-22c-4 44 -30 63 -93 63h-21 c-71 0 -86 -14 -91 -63h-21v121v121h21c4 -44 31 -63 93 -63h21c71 0 86 14 91 63h22v-121v-121'], + 0xE3A3: [685,18,948,98,850,'850 454c0 -149 -94 -311 -234 -401c-71 -47 -164 -71 -247 -71c-155 0 -271 96 -271 239c0 142 98 306 234 393c74 47 163 71 241 71c153 0 277 -98 277 -231zM692 532c0 71 -56 119 -122 119c-75 0 -146 -45 -204 -142c-57 -97 -110 -274 -110 -372 c0 -75 54 -121 124 -121c60 0 123 32 175 102c71 99 137 296 137 414zM630 468l-75 -242h-20c10 44 -6 73 -63 73h-19c-65 0 -85 -24 -104 -73h-20l76 242h20c-10 -44 2 -73 59 -73h19c65 0 89 24 108 73h19'], + 0xE3A4: [685,18,1061,117,944,'944 454c0 -149 -104 -311 -257 -401c-79 -47 -181 -71 -273 -71c-170 0 -297 96 -297 239c0 142 107 306 258 393c81 47 179 71 265 71c168 0 304 -98 304 -231zM770 532c0 71 -62 119 -134 119c-82 0 -161 -45 -224 -142s-121 -274 -121 -372c0 -75 59 -121 136 -121 c66 0 135 32 192 102c79 99 151 296 151 414zM702 468l-83 -242h-22c11 44 -6 73 -69 73h-20c-72 0 -95 -24 -115 -73h-22l83 242h22c-11 -44 3 -73 66 -73h20c71 0 98 24 119 73h21'], + 0xE3A5: [662,0,523,98,425,'425 0h-327v19c92 3 108 15 108 90v444c0 73 -14 85 -108 90v19h327v-19c-93 -4 -108 -18 -108 -90v-444c0 -73 18 -87 108 -90v-19'], + 0xE3A6: [662,0,593,117,476,'476 0h-359v19c101 3 118 15 118 90v444c0 73 -15 85 -118 90v19h359v-19c-101 -4 -118 -18 -118 -90v-444c0 -73 19 -87 118 -90v-19'], + 0xE3A7: [653,0,627,98,529,'529 637c-64 -10 -70 -16 -90 -74l-135 -443c-10 -33 -12 -43 -12 -63c0 -28 12 -34 74 -41v-16h-268v16c62 10 69 16 89 74l135 442c9 27 13 47 13 62c0 29 -14 36 -77 43v16h271v-16'], + 0xE3A8: [653,0,708,117,591,'591 637c-70 -10 -77 -16 -99 -74l-149 -443c-11 -33 -13 -43 -13 -63c0 -28 13 -34 82 -41v-16h-295v16c68 10 76 16 98 74l149 442c9 27 13 47 13 62c0 29 -15 36 -85 43v16h299v-16'], + 0xE3A9: [676,0,581,98,483,'483 0h-385v25c83 7 102 21 102 71v484c0 51 -23 66 -102 71v25h385v-25c-81 -3 -104 -19 -104 -71v-484c0 -52 20 -66 104 -71v-25'], + 0xE3AA: [676,0,657,117,540,'540 0h-423v25c91 7 112 21 112 71v484c0 51 -25 66 -112 71v25h423v-25c-89 -3 -115 -19 -115 -71v-484c0 -52 23 -66 115 -71v-25'], + 0xE3AB: [669,0,678,98,580,'580 644c-56 -6 -73 -19 -90 -72l-126 -420c-15 -50 -20 -71 -20 -87c0 -28 17 -37 80 -40v-25h-326v25c54 6 70 20 88 72l135 449c6 19 11 49 11 61c0 20 -11 28 -45 32c-12 2 -24 4 -35 5v25h328v-25'], + 0xE3AC: [669,0,764,117,647,'647 644c-62 -6 -80 -19 -99 -72l-138 -420c-17 -50 -22 -71 -22 -87c0 -28 18 -37 87 -40v-25h-358v25c59 6 77 20 97 72l148 449c6 19 13 49 13 61c0 20 -13 28 -50 32c-13 2 -27 4 -39 5v25h361v-25'], + 0xE3AD: [662,0,954,98,856,'856 0h-336v19c14 1 26 1 30 1c32 1 47 8 47 22c0 24 -59 95 -143 170l-116 105l-30 -22v-186c0 -73 14 -85 99 -90v-19h-309v19c87 5 99 18 99 101v433c0 71 -13 83 -99 90v19h312v-19c-89 -7 -102 -18 -102 -90v-205l196 161c60 51 86 81 86 103c0 20 -13 28 -46 30 c-5 0 -16 0 -29 1v19h288v-19c-76 -5 -92 -13 -167 -78l-209 -188l255 -250c100 -97 117 -107 174 -108v-19'], + 0xE3AE: [662,0,1067,117,950,'950 0h-369v19c15 1 28 1 33 1c35 1 52 8 52 22c0 24 -65 95 -157 170l-128 105l-33 -22v-186c0 -73 16 -85 109 -90v-19h-340v19c95 5 109 18 109 101v433c0 71 -15 83 -109 90v19h343v-19c-98 -7 -112 -18 -112 -90v-205l215 161c67 51 95 81 95 103 c0 20 -15 28 -51 30c-5 0 -17 0 -32 1v19h317v-19c-83 -5 -101 -13 -184 -78l-229 -188l280 -250c110 -97 129 -107 191 -108v-19'], + 0xE3AF: [653,0,983,98,885,'885 637c-27 -4 -51 -15 -83 -36l-330 -226l191 -303c31 -47 38 -50 107 -56v-16h-302v16l32 3c35 3 50 11 50 26c0 19 -15 54 -42 95l-133 208l-68 -228l-7 -21c-7 -21 -8 -28 -8 -39c0 -31 10 -37 79 -44v-16h-273v16c65 9 70 14 90 74l136 442c8 27 12 47 12 62 c0 29 -16 37 -85 43v16h300v-16c-65 -4 -94 -24 -111 -74l-58 -194l167 106c98 63 158 116 158 140c0 11 -11 17 -37 19l-30 3v16h245v-16'], + 0xE3B0: [653,0,1099,117,982,'982 637c-29 -4 -56 -15 -91 -36l-363 -226l211 -303c34 -47 41 -50 117 -56v-16h-333v16l35 3c39 3 56 11 56 26c0 19 -17 54 -46 95l-146 208l-75 -228l-8 -21c-8 -21 -9 -28 -9 -39c0 -31 11 -37 87 -44v-16h-300v16c71 9 77 14 99 74l149 442c10 27 13 47 13 62 c0 29 -17 37 -93 43v16h330v-16c-71 -4 -104 -24 -122 -74l-64 -194l184 106c108 63 174 116 174 140c0 11 -12 17 -41 19l-33 3v16h269v-16'], + 0xE3B1: [676,0,1009,98,911,'911 0h-370v25c16 1 30 1 36 1c36 2 51 7 51 20c0 11 -5 20 -26 44l-200 227l-30 -25v-196c0 -49 18 -62 97 -71v-25h-371v25c79 8 96 20 96 71v484c0 52 -20 67 -96 71v25h372v-25c-82 -5 -98 -21 -98 -92v-214l239 218c34 31 39 39 39 55c0 20 -14 28 -54 30 c-5 1 -21 2 -39 3v25h318v-25c-107 -8 -147 -33 -353 -227l335 -378c14 -15 26 -20 54 -21v-25'], + 0xE3B2: [676,0,1128,117,1011,'1011 0h-407v25c17 1 33 1 39 1c40 2 57 7 57 20c0 11 -6 20 -29 44l-220 227l-33 -25v-196c0 -49 19 -62 107 -71v-25h-408v25c87 8 105 20 105 71v484c0 52 -22 67 -105 71v25h409v-25c-90 -5 -108 -21 -108 -92v-214l263 218c37 31 43 39 43 55c0 20 -16 28 -59 30 c-6 1 -23 2 -44 3v25h350v-25c-117 -8 -161 -33 -388 -227l369 -378c15 -15 29 -20 59 -21v-25'], + 0xE3B3: [669,0,991,98,893,'893 644c-47 -6 -56 -9 -103 -48l-238 -198l173 -338c12 -24 28 -31 69 -35v-25h-308v25l30 3c30 2 42 10 42 24c0 12 -3 21 -14 43l-125 242l-73 -249c-2 -5 -3 -11 -3 -17c0 -33 16 -42 73 -46v-25h-318v25c54 6 70 19 88 72l134 449c9 28 12 46 12 58 c0 22 -11 31 -46 35l-34 5v25h341v-25c-65 -5 -86 -20 -103 -72l-69 -228l217 175c63 53 85 79 85 98c0 15 -11 22 -39 25l-23 2v25h232v-25'], + 0xE3B4: [669,0,1108,117,992,'992 644c-52 -6 -62 -9 -114 -48l-261 -198l190 -338c13 -24 30 -31 76 -35v-25h-339v25l33 3c32 2 46 10 46 24c0 12 -4 21 -16 43l-137 242l-81 -249c-1 -5 -2 -11 -2 -17c0 -33 17 -42 79 -46v-25h-349v25c59 6 77 19 97 72l147 449c10 28 14 46 14 58 c0 22 -13 31 -51 35l-38 5v25h375v-25c-71 -5 -94 -20 -113 -72l-75 -228l238 175c69 53 93 79 93 98c0 15 -12 22 -42 25l-26 2v25h256v-25'], + 0xE3B5: [674,0,954,98,856,'856 0h-279v19c38 0 48 2 60 9c10 4 17 15 17 24c0 15 -8 40 -21 68l-188 412l-196 -433c-6 -13 -8 -27 -8 -39c0 -28 21 -41 74 -41v-19h-217v19c52 3 66 18 135 164l229 491h22l273 -568c40 -74 51 -84 99 -87v-19'], + 0xE3B6: [674,0,1067,117,950,'950 0h-307v19c43 0 53 2 67 9c11 4 18 15 18 24c0 15 -9 40 -23 68l-207 412l-215 -433c-6 -13 -9 -27 -9 -39c0 -28 23 -41 81 -41v-19h-238v19c57 3 72 18 149 164l251 491h25l300 -568c43 -74 55 -84 108 -87v-19'], + 0xE3B7: [668,0,873,98,775,'775 0h-271v16c70 6 86 15 86 53c0 8 0 17 -2 26l-76 427l-251 -409c-19 -34 -22 -43 -22 -62c0 -25 9 -30 65 -35v-16h-206v16c44 8 55 19 142 152l319 500h29l103 -566c13 -73 21 -81 84 -86v-16'], + 0xE3B8: [668,0,978,117,861,'861 0h-298v16c78 6 95 15 95 53c0 8 0 17 -3 26l-83 427l-276 -409c-21 -34 -24 -43 -24 -62c0 -25 9 -30 71 -35v-16h-226v16c48 8 60 19 156 152l351 500h31l114 -566c15 -73 23 -81 92 -86v-16'], + 0xE3B9: [690,0,944,98,846,'846 0h-356v25l35 3c38 2 53 11 53 33s-179 418 -179 418l-136 -322c-23 -56 -32 -78 -32 -91c0 -26 25 -37 90 -41v-25h-223v25c53 9 66 23 108 117l244 548h31l245 -526c60 -125 72 -139 120 -139v-25'], + 0xE3BA: [690,0,1056,117,940,'940 0h-392v25l38 3c43 2 58 11 58 33s-196 418 -196 418l-150 -322c-25 -56 -35 -78 -35 -91c0 -26 28 -37 99 -41v-25h-245v25c58 9 72 23 118 117l269 548h34l270 -526c65 -125 78 -139 132 -139v-25'], + 0xE3BB: [683,0,922,98,824,'824 0h-334v25c70 6 87 17 87 59c0 14 -5 44 -9 72l-56 335l-253 -385c-11 -17 -17 -32 -17 -46c0 -24 21 -35 72 -35v-25h-216v25c40 8 56 21 91 70l410 588h27l106 -572c14 -76 19 -81 92 -86v-25'], + 0xE3BC: [683,0,1032,117,915,'915 0h-367v25c77 6 95 17 95 59c0 14 -5 44 -10 72l-61 335l-279 -385c-12 -17 -18 -32 -18 -46c0 -24 23 -35 79 -35v-25h-237v25c43 8 62 21 100 70l450 588h31l116 -572c15 -76 22 -81 101 -86v-25'], + 0xE3BD: [662,0,1132,98,1034,'1034 0h-308v19c87 5 100 18 100 101v453l-281 -573h-16l-276 550v-403c0 -101 19 -124 104 -128v-19h-259v19c92 7 107 25 107 128v406c0 72 -15 85 -105 90v19h218l254 -505l243 505h219v-19c-81 -7 -97 -19 -97 -90v-444c0 -71 17 -85 97 -90v-19'], + 0xE3BE: [662,0,1263,117,1147,'1147 0h-339v19c95 5 110 18 110 101v453l-310 -573h-17l-304 550v-403c0 -101 21 -124 114 -128v-19h-284v19c101 7 117 25 117 128v406c0 72 -16 85 -115 90v19h240l279 -505l268 505h241v-19c-90 -7 -107 -19 -107 -90v-444c0 -71 18 -85 107 -90v-19'], + 0xE3BF: [653,0,1176,98,1078,'1078 637c-65 -9 -70 -14 -90 -74l-135 -443c-10 -32 -12 -44 -12 -61c0 -32 9 -37 84 -43v-16h-300v16c71 7 93 22 111 75l142 470l-415 -561h-18l-68 546l-129 -433c-6 -18 -10 -42 -10 -53c0 -28 22 -40 78 -44v-16h-218v16c57 6 74 26 108 130l116 372l4 11l10 30 c6 18 11 33 11 41c0 23 -27 34 -82 37v16h199l61 -493l369 493h184v-16'], + 0xE3C0: [653,0,1312,117,1195,'1195 637c-71 -9 -78 -14 -99 -74l-149 -443c-11 -32 -13 -44 -13 -61c0 -32 10 -37 93 -43v-16h-331v16c79 7 103 22 123 75l156 470l-456 -561h-21l-74 546l-143 -433c-6 -18 -11 -42 -11 -53c0 -28 25 -40 86 -44v-16h-239v16c63 6 81 26 118 130l129 372l3 11l11 30 c7 18 12 33 12 41c0 23 -29 34 -89 37v16h219l66 -493l407 493h202v-16'], + 0xE3C1: [676,0,1194,98,1096,'1096 0h-365v25c82 7 97 19 97 75v509l-277 -609h-29l-278 594v-470c0 -74 21 -93 111 -99v-25h-257v25c86 8 100 20 100 80v475c0 52 -17 65 -98 71v25h279l220 -472l220 472h277v-25c-81 -5 -97 -20 -97 -92v-442c0 -71 11 -82 97 -92v-25'], + 0xE3C2: [676,0,1331,117,1214,'1214 0h-401v25c90 7 107 19 107 75v509l-305 -609h-32l-305 594v-470c0 -74 23 -93 122 -99v-25h-283v25c94 8 110 20 110 80v475c0 52 -19 65 -108 71v25h306l242 -472l242 472h305v-25c-88 -5 -106 -20 -106 -92v-442c0 -71 12 -82 106 -92v-25'], + 0xE3C3: [669,12,1237,98,1139,'1139 644c-56 -6 -73 -20 -89 -72l-136 -449c-7 -18 -11 -37 -11 -55c0 -32 16 -40 79 -43v-25h-343v25c72 4 93 18 110 72l138 464l-413 -573h-31l-73 559l-111 -369c-16 -50 -21 -75 -21 -92c0 -41 17 -53 88 -61v-25h-228v25c59 12 67 23 111 153l120 373 c8 26 12 44 12 58c0 28 -10 32 -79 35v25h243l59 -480l341 480h234v-25'], + 0xE3C4: [669,12,1378,117,1261,'1261 644c-61 -6 -79 -20 -98 -72l-148 -449c-9 -18 -12 -37 -12 -55c0 -32 16 -40 87 -43v-25h-378v25c79 4 102 18 121 72l151 464l-453 -573h-34l-81 559l-123 -369c-16 -50 -23 -75 -23 -92c0 -41 20 -53 97 -61v-25h-250v25c65 12 74 23 122 153l132 373 c8 26 13 44 13 58c0 28 -11 32 -87 35v25h268l65 -480l375 480h256v-25'], + 0xE3C5: [662,11,959,98,861,'861 643c-40 -4 -56 -8 -71 -18c-21 -13 -32 -50 -32 -110v-526h-19l-486 550v-392c0 -101 19 -124 104 -128v-19h-259v19c92 7 107 25 107 128v441c-44 47 -59 55 -107 55v19h188l424 -484v337c0 61 -10 98 -32 111c-17 9 -32 14 -74 17v19h257v-19'], + 0xE3C6: [662,11,1073,117,957,'957 643c-45 -4 -62 -8 -79 -18c-23 -13 -35 -50 -35 -110v-526h-21l-535 550v-392c0 -101 21 -124 114 -128v-19h-284v19c101 7 117 25 117 128v441c-48 47 -64 55 -117 55v19h207l466 -484v337c0 61 -11 98 -36 111c-18 9 -35 14 -81 17v19h284v-19'], + 0xE3C7: [653,15,1018,98,920,'920 637c-70 -14 -74 -20 -115 -149l-158 -503h-20l-253 550l-125 -422c-7 -21 -10 -41 -10 -54c0 -28 20 -39 77 -43v-16h-218v16c63 8 72 20 113 148l131 417c-20 39 -43 52 -94 56v16h177l229 -499l112 380l2 8c8 21 10 32 10 44c0 36 -14 46 -77 51v16h219v-16'], + 0xE3C8: [653,15,1137,117,1021,'1021 637c-77 -14 -81 -20 -126 -149l-174 -503h-22l-278 550l-138 -422c-8 -21 -11 -41 -11 -54c0 -28 21 -39 84 -43v-16h-239v16c69 8 78 20 124 148l144 417c-21 39 -47 52 -104 56v16h195l252 -499l123 380l3 8c8 21 11 32 11 44c0 36 -16 46 -85 51v16h241v-16'], + 0xE3C9: [676,18,950,98,852,'852 651c-72 -10 -86 -23 -86 -80v-589h-31l-492 544v-402c0 -71 20 -90 105 -99v-25h-250v25c80 9 97 23 97 80v474c-53 57 -72 72 -94 72v25h232l384 -429v305c0 71 -21 92 -102 99v25h237v-25'], + 0xE3CA: [676,18,1062,117,946,'946 651c-79 -10 -95 -23 -95 -80v-589h-34l-540 544v-402c0 -71 21 -90 114 -99v-25h-274v25c88 9 106 23 106 80v474c-58 57 -78 72 -103 72v25h256l422 -429v305c0 71 -23 92 -112 99v25h260v-25'], + 0xE3CB: [669,15,1049,98,951,'951 644c-64 -13 -70 -21 -113 -153l-157 -506h-31l-282 549l-109 -356c-14 -42 -20 -75 -20 -94c0 -39 23 -54 88 -59v-25h-229v25c61 11 68 22 111 153l132 411c-21 44 -31 50 -91 55v25h214l237 -465l88 287c12 41 20 75 20 94c0 38 -23 54 -88 59v25h230v-25'], + 0xE3CC: [669,15,1171,117,1055,'1055 644c-71 -13 -77 -21 -124 -153l-173 -506h-34l-311 549l-120 -356c-14 -42 -21 -75 -21 -94c0 -39 25 -54 96 -59v-25h-251v25c66 11 75 22 122 153l145 411c-23 44 -34 50 -100 55v25h236l260 -465l97 287c13 41 21 75 21 94c0 38 -25 54 -96 59v25h253v-25'], + 0xE3CD: [662,0,819,98,721,'698 501h-21c0 54 -37 75 -110 75h-319c-69 0 -107 -25 -107 -75h-21v161h578v-161zM586 220h-20c0 61 -27 72 -99 72h-116c-74 0 -100 -13 -100 -72h-20v219h20c0 -64 34 -71 100 -71h116c66 0 99 7 99 71h20v-219zM721 0h-623v185h20v-11c0 -63 60 -87 118 -87h353 c74 0 110 16 110 87v11h22v-185'], + 0xE3CE: [662,0,918,117,802,'776 501h-23c0 54 -40 75 -121 75h-351c-75 0 -117 -25 -117 -75h-23v161h635v-161zM654 220h-23c0 61 -29 72 -109 72h-127c-81 0 -110 -13 -110 -72h-22v219h22c0 -64 38 -71 110 -71h127c73 0 109 7 109 71h23v-219zM802 0h-685v185h22v-11c0 -63 66 -87 129 -87h388 c83 0 121 16 121 87v11h25v-185'], + 0xE3CF: [653,0,924,98,826,'826 653l-47 -159h-20c17 53 -13 74 -83 74h-264c-68 0 -112 -24 -127 -74h-20l48 159h513zM654 433l-64 -216h-19c18 60 -5 71 -75 71h-68c-71 0 -100 -13 -118 -71h-18l63 216h19c-19 -63 12 -70 76 -70h68c63 0 98 7 117 70h19zM711 182l-54 -182h-559l54 182h20 l-4 -10c-18 -63 33 -86 90 -86h295c73 0 112 16 132 86l4 10h22'], + 0xE3D0: [653,0,1035,117,918,'918 653l-52 -159h-22c18 53 -15 74 -92 74h-290c-74 0 -123 -24 -139 -74h-22l52 159h565zM728 433l-70 -216h-21c19 60 -6 71 -82 71h-75c-79 0 -110 -13 -130 -71h-20l70 216h21c-21 -63 13 -70 83 -70h75c69 0 108 7 128 70h21zM791 182l-60 -182h-614l59 182h22 l-4 -10c-20 -63 37 -86 98 -86h326c80 0 122 16 145 86l4 10h24'], + 0xE3D1: [662,0,824,98,726,'711 473h-21c-3 41 -25 59 -79 59h-399c-52 0 -75 -16 -79 -59h-20v189h598v-189zM574 216h-19c-4 44 -28 63 -85 63h-118c-65 0 -78 -14 -82 -63h-20v121v121h20c3 -44 27 -63 84 -63h118c65 0 78 14 83 63h19v-121v-121zM726 0h-628v222h21c10 -77 40 -92 93 -92h400 c54 0 83 16 93 93h21v-223'], + 0xE3D2: [662,0,925,117,808,'791 473h-23c-4 41 -28 59 -87 59h-438c-58 0 -84 -16 -87 -59h-22v189h657v-189zM641 216h-22c-4 44 -30 63 -93 63h-130c-71 0 -86 -14 -90 -63h-22v121v121h22c3 -44 30 -63 93 -63h129c72 0 86 14 91 63h22v-121v-121zM808 0h-691v222h23c11 -77 43 -92 103 -92h439 c59 0 92 16 103 93h23v-223'], + 0xE3D3: [662,0,981,98,883,'883 662l-49 -169h-21c9 41 -4 69 -58 69h-376c-53 0 -84 -26 -101 -69h-19l49 169h575zM688 458l-72 -242h-20c10 44 -6 73 -63 73h-96c-65 0 -85 -24 -104 -73h-19l71 242h20c-10 -44 5 -73 63 -73h95c65 0 86 24 105 73h20zM767 213l-63 -213h-606l63 212h21 c-14 -77 8 -102 62 -102h378c54 0 91 26 124 103h21'], + 0xE3D4: [662,0,1098,117,981,'981 662l-55 -169h-23c10 41 -5 69 -64 69h-414c-58 0 -92 -26 -110 -69h-22l55 169h633zM765 458l-78 -242h-22c11 44 -7 73 -70 73h-106c-71 0 -93 -24 -113 -73h-22l79 242h21c-10 -44 6 -73 69 -73h106c71 0 94 24 115 73h21zM852 213l-68 -213h-667l69 212h23 c-15 -77 9 -102 69 -102h415c59 0 100 26 136 103h23'], + 0xE3D5: [675,14,915,98,817,'817 327c0 -201 -149 -341 -366 -341c-97 0 -195 40 -258 102c-60 58 -95 149 -95 243c0 201 150 344 360 344c104 0 198 -35 267 -104c61 -60 92 -146 92 -244zM692 328c0 119 -34 213 -93 262c-40 32 -91 50 -141 50c-62 0 -115 -22 -158 -65 c-47 -47 -77 -144 -77 -246c0 -111 37 -212 94 -258c38 -31 88 -49 139 -49c58 0 106 18 146 54c25 22 44 47 54 72c22 52 36 121 36 180'], + 0xE3D6: [675,14,1025,117,908,'908 327c0 -201 -164 -341 -403 -341c-106 0 -214 40 -284 102c-65 58 -104 149 -104 243c0 201 164 344 395 344c115 0 218 -35 295 -104c66 -60 101 -146 101 -244zM770 328c0 119 -37 213 -103 262c-43 32 -99 50 -155 50c-67 0 -125 -22 -173 -65 c-52 -47 -84 -144 -84 -246c0 -111 40 -212 103 -258c42 -31 96 -49 152 -49c64 0 117 18 161 54c28 22 48 47 59 72c24 52 40 121 40 180'], + 0xE3D7: [666,18,899,98,801,'801 418c-12 -226 -234 -436 -463 -436c-140 0 -240 99 -240 239c0 123 72 251 191 344c86 66 178 101 264 101c149 0 256 -107 248 -248zM685 481c0 94 -53 152 -141 152c-83 0 -152 -40 -214 -125c-65 -87 -116 -232 -116 -324c0 -109 50 -169 143 -169 c79 0 148 41 210 124c69 94 118 237 118 342'], + 0xE3D8: [666,18,1007,117,890,'890 418c-13 -226 -258 -436 -509 -436c-154 0 -264 99 -264 239c0 123 78 251 210 344c95 66 195 101 291 101c163 0 280 -107 272 -248zM763 481c0 94 -59 152 -156 152c-91 0 -167 -40 -235 -125c-71 -87 -128 -232 -128 -324c0 -109 56 -169 157 -169 c87 0 164 41 231 124c76 94 131 237 131 342'], + 0xE3D9: [691,19,975,98,877,'877 336c0 -207 -162 -355 -390 -355c-227 0 -389 147 -389 354c0 208 164 356 394 356c221 0 385 -151 385 -355zM682 329c0 208 -70 329 -191 329c-129 0 -198 -116 -198 -332c0 -202 68 -312 194 -312c127 0 195 110 195 315'], + 0xE3DA: [691,19,1090,117,973,'973 336c0 -207 -177 -355 -428 -355c-250 0 -428 147 -428 354c0 208 180 356 433 356c243 0 423 -151 423 -355zM759 329c0 208 -77 329 -210 329c-142 0 -218 -116 -218 -332c0 -202 75 -312 214 -312s214 110 214 315'], + 0xE3DB: [685,18,926,98,828,'828 454c0 -149 -94 -311 -234 -401c-71 -47 -153 -71 -236 -71c-155 0 -260 96 -260 239c0 142 98 306 234 393c74 47 152 71 230 71c153 0 266 -98 266 -231zM670 532c0 71 -45 119 -111 119c-75 0 -135 -45 -193 -142c-57 -97 -110 -274 -110 -372 c0 -75 43 -121 113 -121c60 0 112 32 164 102c71 99 137 296 137 414'], + 0xE3DC: [685,18,1037,117,920,'920 454c0 -149 -104 -311 -257 -401c-79 -47 -169 -71 -261 -71c-170 0 -285 96 -285 239c0 142 107 306 258 393c81 47 167 71 252 71c169 0 293 -98 293 -231zM746 532c0 71 -50 119 -122 119c-82 0 -149 -45 -212 -142s-121 -274 -121 -372c0 -75 47 -121 123 -121 c67 0 124 32 181 102c78 99 151 296 151 414'], + 0xE3DD: [662,0,947,98,849,'849 0h-305v19c85 5 96 17 96 101v433c0 50 -4 65 -29 65h-275c-26 0 -29 -15 -29 -65v-444c0 -71 14 -83 97 -90v-19h-306v19c86 5 97 17 97 101v433c0 72 -12 82 -97 90v19h751v-19c-84 -8 -96 -18 -96 -90v-444c0 -71 13 -83 96 -90v-19'], + 0xE3DE: [662,0,1060,117,943,'943 0h-336v19c94 5 106 17 106 101v433c0 50 -5 65 -32 65h-303c-28 0 -31 -15 -31 -65v-444c0 -71 15 -83 106 -90v-19h-336v19c94 5 106 17 106 101v433c0 72 -13 82 -106 90v19h826v-19c-93 -8 -106 -18 -106 -90v-444c0 -71 14 -83 106 -90v-19'], + 0xE3DF: [653,0,1049,98,951,'951 637c-63 -10 -72 -16 -91 -74l-145 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 86 -42v-16h-301v16c72 7 96 22 111 74l139 456c15 50 15 65 -10 65h-254c-25 0 -33 -15 -48 -65l-141 -464c-2 -7 -3 -15 -3 -22c0 -29 12 -36 78 -44v-16h-271v16c62 10 69 16 89 74 l135 442c9 27 13 47 13 62c0 29 -16 37 -85 43v16h701v-16'], + 0xE3E0: [653,0,1171,117,1055,'1055 637c-69 -10 -79 -16 -100 -74l-159 -481c-3 -8 -4 -16 -4 -24c0 -28 16 -35 94 -42v-16h-330v16c79 7 105 22 122 74l153 456c17 50 17 65 -11 65h-280c-28 0 -36 -15 -53 -65l-155 -464c-2 -7 -3 -15 -3 -22c0 -29 13 -36 85 -44v-16h-297v16c68 10 76 16 98 74 l149 442c9 27 13 47 13 62c0 29 -17 37 -93 43v16h771v-16'], + 0xE3E1: [676,0,1008,98,910,'910 0h-374v25c80 8 99 22 99 71v494c0 19 -12 39 -33 39h-199c-21 0 -33 -20 -33 -39v-494c0 -49 18 -63 99 -71v-25h-371v25c77 9 94 22 94 71v484c0 50 -20 65 -94 71v25h812v-25c-75 -5 -97 -21 -97 -71v-484c0 -49 18 -62 97 -71v-25'], + 0xE3E2: [676,0,1127,117,1010,'1010 0h-412v25c89 8 109 22 109 71v494c0 19 -13 39 -36 39h-219c-23 0 -36 -20 -36 -39v-494c0 -49 20 -63 109 -71v-25h-408v25c85 9 103 22 103 71v484c0 50 -22 65 -103 71v25h893v-25c-82 -5 -107 -21 -107 -71v-484c0 -49 20 -62 107 -71v-25'], + 0xE3E3: [669,0,1101,98,1003,'1003 644c-56 -7 -71 -19 -89 -72l-126 -419c-17 -52 -21 -72 -21 -87c0 -29 20 -39 80 -41v-25h-349v25c74 4 95 18 112 72l147 489c5 19 0 39 -21 39h-197c-21 0 -39 -20 -45 -39l-136 -454c-8 -24 -15 -49 -15 -64c0 -32 10 -38 81 -43v-25h-326v25c55 7 70 20 88 72 l134 449c9 28 12 46 12 58c0 22 -11 31 -46 35l-34 5v25h751v-25'], + 0xE3E4: [669,0,1229,117,1113,'1113 644c-62 -7 -79 -19 -98 -72l-140 -419c-18 -52 -23 -72 -23 -87c0 -29 22 -39 89 -41v-25h-384v25c81 4 104 18 122 72l163 489c6 19 0 39 -23 39h-217c-23 0 -44 -20 -50 -39l-150 -454c-8 -24 -15 -49 -15 -64c0 -32 11 -38 88 -43v-25h-358v25c60 7 77 20 97 72 l147 449c10 28 14 46 14 58c0 22 -13 31 -51 35l-38 5v25h827v-25'], + 0xE3E5: [662,0,775,98,677,'677 481c0 -66 -41 -127 -107 -159c-46 -24 -106 -34 -191 -34c-29 0 -48 1 -76 3v-182c0 -73 16 -87 102 -90v-19h-307v19c84 7 92 17 92 101v433c0 72 -11 82 -92 90v19h290c104 0 200 -28 244 -72c29 -29 45 -67 45 -109zM557 475c0 103 -68 150 -218 150 c-29 0 -36 -7 -36 -34v-260c25 -2 40 -3 62 -3c127 0 192 50 192 147'], + 0xE3E6: [662,0,870,117,753,'753 481c0 -66 -45 -127 -117 -159c-51 -24 -116 -34 -211 -34c-31 0 -52 1 -83 3v-182c0 -73 18 -87 112 -90v-19h-337v19c92 7 101 17 101 101v433c0 72 -12 82 -101 90v19h319c114 0 219 -28 268 -72c32 -29 49 -67 49 -109zM621 475c0 103 -75 150 -239 150 c-32 0 -40 -7 -40 -34v-260c28 -2 45 -3 69 -3c139 0 210 50 210 147'], + 0xE3E7: [653,0,862,98,764,'764 504c0 -60 -33 -117 -91 -153c-46 -30 -121 -46 -208 -46c-46 0 -72 2 -101 8l-58 -193c-11 -38 -13 -46 -13 -57c0 -35 5 -38 75 -47v-16h-270v16c63 8 70 14 90 74l130 425c14 47 19 65 19 80c0 27 -16 35 -78 42v16h272c150 0 233 -53 233 -149zM650 504 c0 48 -13 78 -42 96c-22 14 -63 23 -105 23c-31 0 -44 -7 -51 -28l-78 -248c32 -5 38 -5 57 -5c69 0 111 8 146 25c48 26 73 72 73 137'], + 0xE3E8: [653,0,966,117,849,'849 504c0 -60 -36 -117 -99 -153c-51 -30 -133 -46 -229 -46c-51 0 -80 2 -111 8l-65 -193c-12 -38 -14 -46 -14 -57c0 -35 6 -38 82 -47v-16h-296v16c69 8 77 14 99 74l143 425c16 47 20 65 20 80c0 27 -17 35 -86 42v16h301c164 0 255 -53 255 -149zM724 504 c0 48 -14 78 -46 96c-24 14 -70 23 -116 23c-34 0 -48 -7 -56 -28l-85 -248c35 -5 41 -5 62 -5c75 0 123 8 160 25c53 26 81 72 81 137'], + 0xE3E9: [676,0,838,98,740,'740 494c0 -77 -48 -138 -137 -169c-48 -18 -86 -21 -234 -22v-186c0 -73 10 -82 96 -92v-25h-367v25c12 2 23 4 26 4c52 6 66 26 66 88v442c0 70 -15 86 -92 92v25h354c184 0 288 -66 288 -182zM551 489c0 108 -36 152 -127 152c-37 0 -55 -12 -55 -35v-268 c78 0 114 7 140 27c29 23 42 61 42 124'], + 0xE3EA: [676,0,940,117,823,'823 494c0 -77 -53 -138 -151 -169c-53 -18 -94 -21 -258 -22v-186c0 -73 11 -82 107 -92v-25h-404v25c13 2 25 4 29 4c57 6 72 26 72 88v442c0 70 -16 86 -101 92v25h389c202 0 317 -66 317 -182zM615 489c0 108 -40 152 -140 152c-40 0 -61 -12 -61 -35v-268 c86 0 126 7 155 27c32 23 46 61 46 124'], + 0xE3EB: [669,0,900,98,802,'802 514c0 -120 -118 -197 -300 -197c-30 0 -51 1 -89 5l-60 -199c-5 -17 -11 -49 -11 -59c0 -27 18 -36 79 -39v-25h-323v25c57 8 70 19 88 72l135 449c7 23 11 46 11 61c0 20 -12 29 -46 33l-34 4v25h316c153 0 234 -54 234 -155zM641 546c0 58 -34 91 -92 91 c-21 0 -33 -4 -43 -14c-4 -6 -4 -6 -12 -30l-70 -239c18 -1 32 -2 46 -2c78 0 119 23 147 84c15 31 24 75 24 110'], + 0xE3EC: [669,0,1008,117,891,'891 514c0 -120 -129 -197 -330 -197c-33 0 -56 1 -98 5l-65 -199c-7 -17 -13 -49 -13 -59c0 -27 20 -36 88 -39v-25h-356v25c63 8 77 19 97 72l148 449c8 23 13 46 13 61c0 20 -14 29 -51 33l-38 4v25h347c169 0 258 -54 258 -155zM715 546c0 58 -38 91 -102 91 c-23 0 -36 -4 -47 -14c-5 -6 -5 -6 -14 -30l-77 -239c21 -1 35 -2 51 -2c86 0 130 23 162 84c16 31 27 75 27 110'], + 0xE3ED: [662,0,848,98,750,'750 199l-59 -199h-593v19c14 4 24 13 33 23l262 282l-266 298c-10 11 -18 18 -29 21v19h584l3 -143h-28c-13 84 -44 105 -156 105h-232l229 -257l-257 -271h355c71 0 88 15 122 103h32'], + 0xE3EE: [662,0,951,117,834,'834 199l-65 -199h-652v19c16 4 26 13 36 23l288 282l-293 298c-11 11 -19 18 -31 21v19h642l4 -143h-32c-14 84 -48 105 -171 105h-256l253 -257l-283 -271h391c77 0 97 15 134 103h35'], + 0xE3EF: [653,0,953,98,855,'855 653l-39 -141h-27c11 83 -13 104 -121 104h-223l146 -254l-328 -267h344c67 0 89 14 149 101h31l-117 -196h-572l6 19c14 4 26 13 37 22l335 279l-170 294c-7 10 -12 17 -21 20l6 19h564'], + 0xE3F0: [653,0,1066,117,949,'949 653l-42 -141h-30c12 83 -15 104 -133 104h-246l161 -254l-361 -267h379c74 0 98 14 163 101h34l-128 -196h-629l6 19c16 4 29 13 41 22l369 279l-188 294c-7 10 -13 17 -22 20l6 19h620'], + 0xE3F1: [662,0,882,98,784,'784 199l-59 -199h-627v21c14 4 24 13 33 23l262 280l-266 296c-10 11 -18 18 -29 21v21h629l4 -143h-29c-13 84 -44 105 -156 105h-192l186 -209l-270 -285h354c70 0 107 12 129 69h31'], + 0xE3F2: [662,0,989,117,872,'872 199l-65 -199h-690v21c16 4 26 13 36 23l288 280l-293 296c-11 11 -19 18 -31 21v21h692l4 -143h-32c-14 84 -48 105 -172 105h-210l204 -209l-297 -285h389c78 0 118 12 142 69h35'], + 0xE3F3: [662,0,1020,98,922,'922 662l-39 -143h-28c12 84 -13 105 -126 105h-224l139 -230l-342 -274h354c70 0 116 22 155 79h32l-118 -199h-627l7 21c15 4 27 13 39 23l345 280l-180 296c-6 11 -12 18 -22 21l6 21h629'], + 0xE3F4: [662,0,1140,117,1023,'1023 662l-42 -143h-32c14 84 -14 105 -138 105h-246l152 -230l-376 -274h389c78 0 129 22 171 79h35l-129 -199h-690l7 21c17 4 30 13 44 23l378 280l-197 296c-7 11 -13 18 -24 21l6 21h692'], + 0xE3F5: [662,0,830,98,732,'732 492h-27c-26 110 -49 128 -175 128h-60v-511c0 -73 16 -86 107 -90v-19h-322v19c92 5 104 17 104 101v500h-60c-123 0 -147 -18 -175 -128h-26l7 170h619'], + 0xE3F6: [662,0,931,117,814,'814 492h-29c-29 110 -55 128 -193 128h-66v-511c0 -73 18 -86 117 -90v-19h-353v19c100 5 114 17 114 101v500h-66c-135 0 -162 -18 -192 -128h-29l7 170h681'], + 0xE3F7: [653,0,827,98,729,'729 653l-48 -163l-19 2c3 17 4 32 4 45c0 56 -36 81 -115 81h-60l-153 -498c-11 -36 -13 -46 -13 -58c0 -31 12 -40 57 -43l42 -3v-16h-319v16c72 5 99 21 116 74l159 528c-169 2 -204 -15 -262 -123l-20 4l46 154h585'], + 0xE3F8: [653,0,928,117,811,'811 653l-53 -163l-20 2c2 17 3 32 3 45c0 56 -39 81 -126 81h-66l-168 -498c-13 -36 -15 -46 -15 -58c0 -31 13 -40 63 -43l46 -3v-16h-351v16c80 5 109 21 128 74l175 528c-186 2 -224 -15 -288 -123l-22 4l51 154h643'], + 0xE3F9: [676,0,862,98,764,'764 475h-32c-19 119 -76 165 -212 169v-527c0 -76 13 -86 108 -92v-25h-392v25c94 7 106 18 106 92v527c-136 -4 -193 -50 -212 -169h-32l3 201h660'], + 0xE3FA: [676,0,966,117,849,'849 475h-35c-21 119 -84 165 -233 169v-527c0 -76 14 -86 119 -92v-25h-432v25c104 7 117 18 117 92v527c-150 -4 -213 -50 -233 -169h-35l3 201h726'], + 0xE3FB: [669,0,856,98,758,'758 669l-40 -192l-29 2c-6 111 -49 154 -152 155l-154 -506c-8 -27 -12 -47 -12 -62c0 -32 13 -38 91 -41v-25h-364v25h15c57 0 85 20 101 72l162 537c-112 -2 -181 -43 -238 -143l-28 7l42 171h606'], + 0xE3FC: [669,0,960,117,843,'843 669l-44 -192l-32 2c-6 111 -54 154 -167 155l-170 -506c-8 -27 -13 -47 -13 -62c0 -32 14 -38 100 -41v-25h-400v25h17c61 0 93 20 110 72l179 537c-123 -2 -200 -43 -263 -143l-30 7l46 171h667'], + 0xE3FD: [662,0,926,98,828,'828 496h-30c0 47 -45 72 -98 72c-152 0 -181 -158 -181 -318v-141c0 -76 16 -88 114 -90v-19h-337v19c100 4 111 14 111 101v130c0 160 -28 318 -180 318c-53 0 -98 -25 -98 -72h-31c0 84 34 166 140 166c190 0 218 -212 218 -412h15c0 200 27 412 218 412 c105 0 139 -82 139 -166'], + 0xE3FE: [662,0,1037,117,920,'920 496h-34c0 47 -49 72 -107 72c-167 0 -199 -158 -199 -318v-141c0 -76 17 -88 125 -90v-19h-370v19c110 4 122 14 122 101v130c0 160 -32 318 -199 318c-58 0 -107 -25 -107 -72h-34c0 84 37 166 153 166c210 0 240 -212 240 -412h17c0 200 30 412 240 412 c116 0 153 -82 153 -166'], + 0xE3FF: [653,0,898,98,799,'793 489h-29c11 49 -35 71 -85 71c-148 0 -210 -156 -256 -313l-41 -139c-22 -75 -11 -87 83 -89v-19h-325v19c98 4 112 14 137 99l38 129c46 157 64 313 -83 313c-50 0 -90 -24 -104 -71h-30c24 83 70 164 173 164c182 0 148 -209 90 -406h15c59 197 136 406 319 406 c103 0 116 -85 98 -164'], + 0xE400: [653,0,1006,117,888,'882 489h-33c12 49 -38 71 -93 71c-162 0 -231 -156 -282 -313l-45 -139c-24 -75 -12 -87 92 -89v-19h-358v19c107 4 123 14 151 99l41 129c51 157 70 313 -91 313c-55 0 -99 -24 -115 -71h-32c26 83 77 164 190 164c201 0 163 -209 99 -406h17c64 197 149 406 351 406 c112 0 127 -85 108 -164'], + 0xE401: [676,0,953,98,855,'855 451h-33c0 47 -49 87 -99 87c-132 0 -157 -149 -157 -288v-133c0 -74 11 -84 101 -92v-25h-382v25c90 8 102 19 102 92v133c0 139 -25 288 -157 288c-51 0 -99 -40 -99 -87h-33c0 107 26 225 143 225c157 0 228 -170 228 -376h15c0 206 71 376 228 376 c116 0 143 -118 143 -225'], + 0xE402: [676,0,1066,117,949,'949 451h-36c0 47 -53 87 -109 87c-145 0 -173 -149 -173 -288v-133c0 -74 12 -84 111 -92v-25h-419v25c99 8 112 19 112 92v133c0 139 -28 288 -173 288c-56 0 -109 -40 -109 -87h-36c0 107 29 225 157 225c173 0 251 -170 251 -376h17c0 206 77 376 250 376 c128 0 157 -118 157 -225'], + 0xE403: [676,0,884,98,785,'773 451h-33c14 47 -30 97 -81 97c-132 0 -172 -159 -212 -298l-40 -133c-21 -74 -13 -84 75 -92v-25h-366v25c92 8 107 19 128 92l40 133c41 139 79 298 -53 298c-50 0 -87 -50 -100 -97h-33c32 107 65 225 182 225c137 0 161 -170 100 -376h15c62 206 133 376 290 376 c93 0 120 -118 88 -225'], + 0xE404: [676,0,991,117,874,'860 451h-37c15 47 -33 97 -89 97c-145 0 -189 -159 -234 -298l-43 -133c-23 -74 -15 -84 82 -92v-25h-403v25c102 8 119 19 142 92l43 133c45 139 87 298 -58 298c-55 0 -95 -50 -110 -97h-36c35 107 71 225 199 225c152 0 178 -170 111 -376h17c67 206 146 376 319 376 c102 0 132 -118 97 -225'], + 0xE405: [662,0,814,98,716,'716 331c0 -111 -114 -177 -253 -188v-34c0 -73 18 -87 108 -90v-19h-327v19c93 3 107 15 107 90v34c-139 11 -253 77 -253 188s114 177 253 188v34c0 73 -13 85 -107 90v19h327v-19c-93 -4 -108 -18 -108 -90v-34c139 -11 253 -77 253 -188zM590 331 c0 78 -37 142 -127 158v-316c90 16 127 80 127 158zM351 173v316c-90 -16 -126 -80 -126 -158s36 -142 126 -158'], + 0xE406: [662,0,914,117,797,'797 331c0 -111 -126 -177 -278 -188v-34c0 -73 19 -87 118 -90v-19h-359v19c101 3 117 15 117 90v34c-152 11 -278 77 -278 188s126 177 278 188v34c0 73 -14 85 -117 90v19h359v-19c-103 -4 -118 -18 -118 -90v-34c152 -11 278 -77 278 -188zM658 331 c0 78 -40 142 -139 158v-316c99 16 139 80 139 158zM395 173v316c-99 -16 -139 -80 -139 -158s40 -142 139 -158'], + 0xE407: [653,0,799,97,700,'698 326c-20 -115 -162 -174 -299 -185l-9 -33c-21 -72 -8 -86 78 -89v-19h-316v19c90 3 107 15 129 89l10 33c-131 11 -207 72 -191 185c17 114 162 175 299 186l10 33c21 72 14 84 -76 89v19h316v-19c-91 -4 -110 -17 -131 -89l-10 -33c130 -11 209 -72 190 -186z M577 326c23 77 5 141 -77 156l-92 -311c92 15 147 79 169 155zM391 482c-92 -15 -146 -79 -169 -156c-22 -76 -5 -140 77 -155'], + 0xE408: [653,0,896,116,779,'776 326c-21 -115 -178 -174 -328 -185l-11 -33c-22 -72 -8 -86 86 -89v-19h-347v19c99 3 118 15 142 89l11 33c-144 11 -228 72 -210 185c18 114 178 175 329 186l11 33c23 72 15 84 -83 89v19h347v-19c-100 -4 -121 -17 -144 -89l-11 -33c143 -11 230 -72 208 -186z M643 326c26 77 6 141 -85 156l-100 -311c100 15 161 79 185 155zM439 482c-101 -15 -160 -79 -185 -156c-25 -76 -6 -140 84 -155'], + 0xE409: [676,0,915,98,817,'817 351c0 -128 -150 -175 -271 -189v-66c0 -52 21 -66 104 -71v-25h-385v25c83 7 103 21 103 71v66c-121 15 -270 62 -270 189c0 121 149 172 270 188v41c0 51 -24 66 -103 71v25h385v-25c-81 -3 -104 -19 -104 -71v-41c121 -16 271 -66 271 -188zM645 351 c0 86 -41 132 -99 153v-305c58 20 99 66 99 152zM368 201v301c-55 -21 -94 -67 -94 -151s39 -129 94 -150'], + 0xE40A: [676,0,1025,117,908,'908 351c0 -128 -166 -175 -299 -189v-66c0 -52 23 -66 115 -71v-25h-423v25c90 7 112 21 112 71v66c-133 15 -296 62 -296 189c0 121 163 172 296 188v41c0 51 -25 66 -112 71v25h423v-25c-89 -3 -115 -19 -115 -71v-41c133 -16 299 -66 299 -188zM718 351 c0 86 -45 132 -109 153v-305c64 20 109 66 109 152zM413 201v301c-60 -21 -103 -67 -103 -151s43 -129 103 -150'], + 0xE40B: [676,0,885,97,786,'783 351c-30 -130 -191 -175 -316 -189l-19 -66c-16 -52 1 -66 83 -71v-25h-369v25c85 7 108 21 123 71l19 66c-117 15 -227 84 -203 189c29 123 188 172 314 188l12 41c15 51 -3 66 -81 71v25h369v-25c-81 -3 -110 -19 -125 -71l-12 -41c116 -16 231 -80 205 -188z M627 351c25 86 -8 132 -59 153l-90 -305c64 20 124 66 149 152zM405 502c-62 -21 -119 -67 -144 -151c-24 -84 5 -129 55 -150'], + 0xE40C: [676,0,991,117,874,'871 351c-34 -130 -211 -175 -349 -189l-20 -66c-17 -52 1 -66 92 -71v-25h-407v25c93 7 119 21 136 71l20 66c-128 15 -249 84 -222 189c31 123 206 172 344 188l14 41c17 51 -4 66 -90 71v25h407v-25c-90 -3 -121 -19 -138 -71l-14 -41c129 -16 255 -80 227 -188z M699 351c28 86 -9 132 -65 153l-100 -305c72 20 137 66 165 152zM454 502c-67 -21 -130 -67 -158 -151c-27 -84 6 -129 60 -150'], + 0xE40D: [662,0,959,98,861,'861 0h-326v19c13 1 25 2 29 2c38 1 55 11 55 29c0 16 -20 49 -56 98l-104 140l-131 -148c-41 -46 -57 -71 -57 -86c0 -23 20 -31 83 -35v-19h-256v19c56 4 62 8 160 114l172 192l-120 160c-106 140 -127 155 -199 158v19h332v-19l-31 -1c-36 -1 -52 -9 -52 -29 c0 -22 26 -65 93 -150l47 -59l124 138c31 36 44 53 44 69c0 23 -18 30 -77 32v19h261v-19c-70 -4 -92 -17 -164 -94l-160 -182l211 -274c47 -57 64 -67 122 -74v-19'], + 0xE40E: [662,0,1073,117,957,'957 0h-360v19c15 1 28 2 33 2c41 1 60 11 60 29c0 16 -23 49 -61 98l-115 140l-144 -148c-45 -46 -63 -71 -63 -86c0 -23 22 -31 92 -35v-19h-282v19c62 4 68 8 175 114l190 192l-132 160c-117 140 -140 155 -219 158v19h366v-19l-35 -1c-39 -1 -57 -9 -57 -29 c0 -22 29 -65 103 -150l50 -59l137 138c34 36 49 53 49 69c0 23 -20 30 -85 32v19h287v-19c-77 -4 -101 -17 -181 -94l-175 -182l232 -274c51 -57 70 -67 135 -74v-19'], + 0xE40F: [653,0,948,98,850,'850 637c-47 -14 -80 -37 -137 -95l-186 -194l112 -258c28 -60 38 -66 115 -74v-16h-301v16c73 5 84 10 84 39c0 15 -4 31 -12 49l-74 165l-166 -172c-15 -16 -23 -32 -23 -47c0 -25 19 -34 71 -34v-16h-235v16c58 11 89 36 242 200l91 97l-116 263 c-21 46 -38 56 -101 61v16h290v-16c-61 -7 -78 -16 -78 -41c0 -13 4 -29 16 -56l65 -147l160 167c15 17 22 28 22 41c0 23 -13 30 -67 36v16h228v-16'], + 0xE410: [653,0,1061,117,944,'944 637c-52 -14 -88 -37 -151 -95l-204 -194l123 -258c30 -60 41 -66 126 -74v-16h-330v16c79 5 92 10 92 39c0 15 -5 31 -14 49l-81 165l-182 -172c-17 -16 -26 -32 -26 -47c0 -25 21 -34 79 -34v-16h-259v16c64 11 98 36 266 200l100 97l-128 263 c-23 46 -41 56 -111 61v16h319v-16c-66 -7 -86 -16 -86 -41c0 -13 5 -29 19 -56l71 -147l175 167c17 17 25 28 25 41c0 23 -15 30 -74 36v16h251v-16'], + 0xE411: [676,0,947,98,849,'849 0h-374v25c15 1 27 2 31 2c39 2 57 11 57 28c0 11 -10 35 -23 54l-111 162l-42 -51c-81 -100 -103 -132 -103 -154c0 -25 22 -35 89 -41v-25h-275v25c55 6 81 19 114 56l193 221l-218 291c-34 45 -48 55 -88 58v25h381v-25c-16 -1 -29 -2 -34 -2 c-40 -2 -53 -10 -53 -31c0 -12 2 -17 16 -37l107 -150l62 77c51 64 63 85 63 106c0 24 -13 33 -57 35c-3 1 -12 1 -22 2v25h275v-25c-81 -7 -110 -26 -207 -146l-88 -111l201 -283c52 -72 69 -85 106 -86v-25'], + 0xE412: [676,0,1060,117,943,'943 0h-411v25c16 1 29 2 34 2c42 2 63 11 63 28c0 11 -11 35 -26 54l-122 162l-46 -51c-90 -100 -114 -132 -114 -154c0 -25 24 -35 98 -41v-25h-302v25c60 6 89 19 126 56l211 221l-239 291c-38 45 -53 55 -97 58v25h419v-25c-17 -1 -32 -2 -38 -2 c-43 -2 -58 -10 -58 -31c0 -12 3 -17 18 -37l118 -150l67 77c57 64 71 85 71 106c0 24 -15 33 -63 35c-4 1 -14 1 -25 2v25h303v-25c-90 -7 -121 -26 -228 -146l-96 -111l220 -283c58 -72 76 -85 117 -86v-25'], + 0xE413: [669,0,986,98,888,'888 644c-40 -5 -61 -17 -109 -61l-219 -205l81 -237c32 -94 49 -108 128 -116v-25h-339v25c60 5 75 12 75 38c0 22 -12 64 -42 141l-21 60l-147 -148c-25 -25 -33 -38 -33 -51c0 -23 22 -36 71 -40v-25h-235v25c47 8 80 36 254 210l75 74l-92 272c-18 46 -35 57 -101 63 v25h336v-25l-33 -3c-36 -4 -48 -13 -48 -36c0 -15 12 -58 37 -129c4 -10 8 -22 19 -55l103 99c57 55 77 80 77 98c0 15 -11 22 -36 24l-24 2v25h223v-25'], + 0xE414: [669,0,1102,117,986,'986 644c-44 -5 -67 -17 -120 -61l-241 -205l90 -237c35 -94 53 -108 140 -116v-25h-373v25c66 5 83 12 83 38c0 22 -14 64 -46 141l-23 60l-163 -148c-27 -25 -36 -38 -36 -51c0 -23 24 -36 79 -40v-25h-259v25c52 8 88 36 279 210l83 74l-102 272 c-19 46 -38 57 -110 63v25h369v-25l-36 -3c-40 -4 -54 -13 -54 -36c0 -15 14 -58 41 -129c5 -10 9 -22 21 -55l114 99c63 55 85 80 85 98c0 15 -13 22 -40 24l-27 2v25h246v-25'], + 0xE415: [662,0,899,98,801,'801 556c-55 -16 -65 -60 -65 -124c0 -196 -84 -251 -231 -260v-63c0 -73 19 -87 109 -90v-19h-327v19c93 3 107 15 107 90v63c-150 9 -231 64 -231 260c0 64 -10 108 -65 124v28c120 -25 188 -84 188 -216c0 -86 40 -143 108 -163v348c0 73 -13 85 -107 90v19h327v-19 c-92 -4 -109 -18 -109 -90v-348c68 19 108 77 108 163c0 132 68 191 188 216v-28'], + 0xE416: [662,0,1007,117,890,'890 556c-61 -16 -71 -60 -71 -124c0 -196 -92 -251 -254 -260v-63c0 -73 20 -87 119 -90v-19h-359v19c102 3 117 15 117 90v63c-164 9 -254 64 -254 260c0 64 -11 108 -71 124v28c132 -25 207 -84 207 -216c0 -86 43 -143 118 -163v348c0 73 -14 85 -117 90v19h359v-19 c-101 -4 -119 -18 -119 -90v-348c75 19 118 77 118 163c0 132 75 191 207 216v-28'], + 0xE417: [653,0,867,98,769,'769 548c-57 -15 -73 -59 -91 -122c-57 -193 -153 -247 -297 -256l-19 -62c-21 -72 -8 -86 79 -89v-19h-317v19c91 3 108 15 130 89l19 62c-143 9 -206 63 -149 256c19 63 22 107 -26 122v29c96 -13 166 -84 128 -214c-26 -85 -5 -141 56 -161l101 343 c21 72 12 84 -77 89v19h317v-19c-92 -4 -111 -17 -132 -89l-101 -343c70 19 126 76 151 161c39 130 106 195 228 213v-28'], + 0xE418: [653,0,972,117,855,'855 548c-63 -15 -80 -59 -101 -122c-62 -193 -168 -247 -326 -256l-21 -62c-23 -72 -8 -86 87 -89v-19h-348v19c99 3 118 15 143 89l20 62c-157 9 -226 63 -163 256c20 63 24 107 -29 122v29c105 -13 183 -84 140 -214c-28 -85 -5 -141 62 -161l111 343 c23 72 14 84 -85 89v19h349v-19c-100 -4 -122 -17 -145 -89l-112 -343c78 19 140 76 167 161c43 130 117 195 251 213v-28'], + 0xE419: [676,0,988,98,890,'890 574c-55 -16 -54 -78 -54 -142c0 -183 -109 -243 -253 -258v-78c0 -52 21 -66 105 -71v-25h-385v25c82 7 102 21 102 71v78c-144 15 -253 75 -253 258c0 64 1 126 -54 142v30c120 -25 232 -104 232 -236c0 -70 28 -121 75 -148v360c0 51 -23 66 -102 71v25h385v-25 c-82 -3 -105 -19 -105 -71v-359c47 26 75 77 75 147c0 132 112 211 232 236v-30'], + 0xE41A: [676,0,1105,117,988,'988 574c-60 -16 -59 -78 -59 -142c0 -183 -120 -243 -279 -258v-78c0 -52 23 -66 115 -71v-25h-423v25c91 7 112 21 112 71v78c-158 15 -278 75 -278 258c0 64 1 126 -59 142v30c132 -25 255 -104 255 -236c0 -70 30 -121 82 -148v360c0 51 -25 66 -112 71v25h423v-25 c-89 -3 -115 -19 -115 -71v-359c52 26 83 77 83 147c0 132 123 211 255 236v-30'], + 0xE41B: [676,0,966,98,868,'868 574c-59 -16 -66 -78 -85 -142c-55 -186 -177 -245 -325 -259l-23 -77c-16 -52 1 -66 83 -71v-25h-369v25c84 7 107 21 123 71l23 77c-142 14 -229 73 -174 259c19 64 28 126 -23 142v30c112 -25 205 -104 166 -236c-22 -75 -4 -127 43 -152l107 364 c15 51 -4 66 -82 71v25h370v-25c-81 -3 -110 -19 -125 -71l-107 -364c61 25 111 77 133 152c38 132 145 211 265 236v-30'], + 0xE41C: [676,0,1081,117,964,'964 574c-66 -16 -73 -78 -93 -142c-61 -186 -195 -245 -359 -259l-25 -77c-17 -52 1 -66 92 -71v-25h-407v25c94 7 119 21 136 71l25 77c-156 14 -251 73 -191 259c21 64 30 126 -25 142v30c123 -25 225 -104 183 -236c-25 -75 -5 -127 47 -152l117 364 c17 51 -4 66 -89 71v25h406v-25c-89 -3 -121 -19 -138 -71l-117 -364c68 25 122 77 146 152c43 132 160 211 292 236v-30'], + 0xE41D: [676,0,958,98,860,'860 153l-6 -153h-299l14 147c92 27 133 104 133 233c0 170 -100 261 -221 261c-131 0 -226 -103 -226 -254c0 -107 29 -204 138 -240l11 -147h-299l-7 153h26c4 -47 28 -72 88 -72h145l-2 43c-112 20 -225 121 -225 265c0 158 144 287 353 287c202 0 345 -117 345 -283 c0 -135 -83 -233 -221 -269l-5 -43h147c67 0 84 36 84 72h27'], + 0xE41E: [676,0,1072,117,955,'955 153l-7 -153h-329l16 147c101 27 146 104 146 233c0 170 -110 261 -243 261c-144 0 -248 -103 -248 -254c0 -107 31 -204 151 -240l12 -147h-329l-7 153h29c3 -47 30 -72 97 -72h158l-1 43c-123 20 -248 121 -248 265c0 158 158 287 388 287c223 0 380 -117 380 -283 c0 -135 -92 -233 -243 -269l-6 -43h162c74 0 92 36 92 72h30'], + 0xE41F: [649,0,960,98,862,'854 378c-34 -131 -143 -224 -284 -260l-15 -40h126c63 0 88 33 98 69h25l-49 -147h-269l56 141c95 27 153 101 190 224c48 164 -8 250 -121 250c-122 0 -228 -98 -271 -243c-31 -104 -33 -195 59 -231l-30 -141h-271l37 147h26c-9 -44 5 -69 61 -69h125l11 40 c-98 20 -172 112 -136 256c39 154 204 275 401 275c188 0 267 -130 231 -271'], + 0xE420: [649,0,1074,117,957,'948 378c-37 -131 -157 -224 -312 -260l-17 -40h139c69 0 97 33 108 69h28l-55 -147h-295l62 141c104 27 168 101 208 224c53 164 -9 250 -133 250c-135 0 -251 -98 -298 -243c-34 -104 -36 -195 65 -231l-34 -141h-297l41 147h28c-10 -44 6 -69 68 -69h136l12 40 c-107 20 -188 112 -148 256c42 154 223 275 440 275c207 0 294 -130 254 -271'], + 0xE421: [691,0,955,98,857,'857 0h-310l16 187c74 31 92 75 92 227c0 168 -55 239 -177 239c-103 0 -178 -62 -178 -243c0 -154 35 -209 93 -223l16 -187h-311v190h21c4 -36 -2 -66 77 -66h166l-3 40c-161 26 -238 134 -238 252c0 145 124 275 357 275c235 0 357 -131 357 -275 c0 -113 -69 -222 -238 -252l-3 -40h165c79 0 73 30 77 66h21v-190'], + 0xE422: [691,0,1069,117,952,'952 0h-342l19 187c81 31 100 75 100 227c0 168 -60 239 -195 239c-112 0 -195 -62 -195 -243c0 -154 38 -209 102 -223l18 -187h-342v190h23c5 -36 -3 -66 84 -66h183l-3 40c-177 26 -262 134 -262 252c0 145 137 275 392 275c259 0 394 -131 394 -275 c0 -113 -77 -222 -262 -252l-3 -40h181c87 0 80 30 85 66h23v-190'], + 0xE423: [691,0,1002,98,903,'893 416c-29 -113 -118 -222 -296 -252l-15 -50h147c80 0 82 30 96 66h21l-53 -180h-284l64 187c83 31 110 75 155 227c50 168 32 239 -90 239c-102 0 -179 -62 -232 -243c-45 -154 -31 -209 23 -223l-46 -187h-285l53 180h21c-6 -36 -21 -66 58 -66h149l13 50 c-153 26 -170 156 -149 252c32 148 174 275 406 275c236 0 278 -145 244 -275'], + 0xE424: [691,0,1120,117,1003,'992 416c-33 -113 -131 -222 -326 -252l-17 -50h162c87 0 90 30 106 66h23l-58 -180h-313l71 187c90 31 121 75 170 227c55 168 35 239 -99 239c-113 0 -197 -62 -255 -243c-50 -154 -34 -209 25 -223l-51 -187h-313l58 180h23c-6 -36 -23 -66 64 -66h163l15 50 c-168 26 -186 156 -163 252c35 148 191 275 446 275c259 0 306 -145 269 -275'], + 0xE425: [460,17,718,98,619,'431 235c-32 103 -69 197 -139 197c-67 0 -95 -136 -95 -231c0 -65 26 -190 105 -190c58 0 97 97 129 224zM619 105c5 -51 -16 -122 -77 -122c-49 0 -62 50 -70 98c-47 -75 -112 -98 -165 -98c-146 0 -209 104 -209 224c0 150 88 253 194 253c89 0 126 -81 154 -166 l32 150h94l-53 -241c-5 -26 -12 -48 -21 -69c18 -52 28 -89 51 -89c31 0 43 19 50 60h20'], + 0xE426: [460,17,808,117,690,'483 235c-35 103 -76 197 -153 197c-74 0 -104 -136 -104 -231c0 -65 29 -190 115 -190c64 0 107 97 142 224zM690 105c5 -51 -18 -122 -84 -122c-55 0 -69 50 -78 98c-52 -75 -123 -98 -181 -98c-161 0 -230 104 -230 224c0 150 97 253 213 253c98 0 139 -81 169 -166 l35 150h104l-58 -241c-6 -26 -13 -48 -23 -69c20 -52 30 -89 56 -89c34 0 47 19 54 60h23'], + 0xE427: [441,16,730,97,632,'438 225c-1 99 -11 189 -78 189c-65 0 -130 -130 -156 -221c-19 -63 -29 -182 46 -182c56 0 122 93 188 214zM632 426l-119 -231c-12 -25 -24 -46 -39 -67c2 -49 2 -85 24 -85c29 0 46 18 64 58h20c-11 -49 -50 -117 -108 -117c-48 0 -46 48 -40 94 c-66 -72 -135 -94 -186 -94c-140 0 -172 99 -137 214c42 144 156 243 257 243c85 0 98 -78 101 -159l73 144h90'], + 0xE428: [441,16,821,116,704,'491 225c-1 99 -12 189 -86 189c-71 0 -142 -130 -172 -221c-20 -63 -31 -182 51 -182c62 0 135 93 207 214zM704 426l-131 -231c-13 -25 -26 -46 -43 -67c2 -49 2 -85 27 -85c32 0 50 18 70 58h23c-12 -49 -56 -117 -120 -117c-52 0 -50 48 -44 94 c-72 -72 -148 -94 -204 -94c-154 0 -189 99 -151 214c47 144 171 243 283 243c93 0 107 -78 111 -159l80 144h99'], + 0xE429: [473,14,767,98,669,'669 110c0 -54 -22 -124 -77 -124c-28 0 -57 37 -68 102c-43 -61 -104 -102 -189 -102c-153 0 -237 86 -237 238c0 178 105 249 227 249c60 0 106 -45 146 -123l23 111h153l-37 -157c-15 -59 -32 -119 -59 -170c13 -41 29 -84 48 -84c27 0 40 19 47 60h23zM458 283 c-38 86 -83 160 -132 160c-67 0 -78 -130 -78 -225c0 -65 8 -202 87 -202c24 0 41 23 57 40c26 28 46 126 66 227'], + 0xE42A: [473,14,862,117,745,'745 110c0 -54 -24 -124 -85 -124c-30 0 -63 37 -75 102c-47 -61 -114 -102 -208 -102c-168 0 -260 86 -260 238c0 178 115 249 249 249c67 0 117 -45 161 -123l25 111h169l-42 -157c-15 -59 -35 -119 -64 -170c15 -41 32 -84 52 -84c31 0 45 19 52 60h26zM512 283 c-41 86 -90 160 -145 160c-74 0 -86 -130 -86 -225c0 -65 10 -202 96 -202c27 0 46 23 63 40c29 28 51 126 72 227'], + 0xE42B: [473,14,821,97,723,'723 461l-85 -157c-31 -59 -66 -119 -108 -170c1 -41 3 -84 22 -84c28 0 46 19 65 60h23c-15 -54 -58 -124 -113 -124c-28 0 -46 37 -38 102c-61 -61 -134 -102 -220 -102c-152 0 -200 86 -155 238c53 178 168 249 290 249c60 0 93 -45 110 -123l56 111h153zM481 283 c-12 86 -36 160 -85 160c-67 0 -117 -130 -145 -225c-19 -65 -51 -202 27 -202c24 0 49 23 70 40c35 28 83 126 133 227'], + 0xE42C: [473,14,921,116,804,'804 461l-93 -157c-34 -59 -73 -119 -119 -170c1 -41 4 -84 24 -84c31 0 51 19 72 60h25c-17 -54 -64 -124 -124 -124c-31 0 -51 37 -42 102c-67 -61 -147 -102 -242 -102c-168 0 -220 86 -170 238c58 178 184 249 318 249c67 0 103 -45 121 -123l62 111h168zM538 283 c-14 86 -39 160 -93 160c-74 0 -129 -130 -160 -225c-21 -65 -56 -202 30 -202c27 0 53 23 76 40c39 28 92 126 147 227'], + 0xE42D: [673,217,639,98,541,'541 186c0 -126 -95 -202 -225 -202c-54 0 -90 18 -126 42v-26c0 -100 17 -217 17 -217h-109v718c0 95 68 172 189 172c103 0 200 -60 200 -155c0 -55 -26 -97 -88 -131c93 -51 142 -97 142 -201zM442 189c0 77 -33 147 -89 174c-17 -9 -31 -14 -48 -14 c-16 0 -49 5 -49 28c0 17 24 29 50 29c16 0 30 -3 49 -8c25 30 37 81 37 118c0 57 -34 129 -105 129c-73 0 -97 -66 -97 -137v-411c38 -44 77 -85 126 -85c76 0 126 84 126 177'], + 0xE42E: [673,217,721,117,604,'604 186c0 -126 -105 -202 -248 -202c-59 0 -99 18 -138 42v-26c0 -100 19 -217 19 -217h-120v718c0 95 75 172 208 172c112 0 220 -60 220 -155c0 -55 -29 -97 -97 -131c102 -51 156 -97 156 -201zM496 189c0 77 -37 147 -98 174c-20 -9 -34 -14 -54 -14 c-17 0 -53 5 -53 28c0 17 25 29 54 29c19 0 33 -3 55 -8c27 30 40 81 40 118c0 57 -38 129 -115 129c-81 0 -107 -66 -107 -137v-411c42 -44 85 -85 138 -85c84 0 140 84 140 177'], + 0xE42F: [645,208,783,98,685,'680 497c-15 -53 -53 -93 -122 -126c74 -49 109 -93 80 -193c-35 -120 -149 -193 -274 -193c-51 0 -81 17 -108 40l-7 -25c-29 -96 -46 -208 -46 -208h-105l204 688c26 91 114 165 229 165c98 0 176 -57 149 -148zM588 495c15 54 3 123 -64 123c-71 0 -111 -63 -132 -131 l-116 -394c23 -42 50 -81 96 -81c73 0 145 80 170 169c22 74 10 141 -35 167c-20 -9 -33 -13 -50 -13c-15 0 -45 4 -39 26c5 17 30 28 55 28c17 0 28 -3 45 -7c33 28 59 77 70 113'], + 0xE430: [645,208,880,117,763,'757 497c-17 -53 -58 -93 -134 -126c81 -49 119 -93 88 -193c-39 -120 -165 -193 -301 -193c-57 0 -90 17 -119 40l-8 -25c-32 -96 -51 -208 -51 -208h-115l224 688c29 91 125 165 253 165c107 0 193 -57 163 -148zM655 495c17 54 4 123 -70 123 c-77 0 -122 -63 -145 -131l-127 -394c25 -42 54 -81 105 -81c80 0 160 80 188 169c24 74 11 141 -39 167c-22 -9 -36 -13 -56 -13c-15 0 -49 4 -42 26c5 17 33 28 60 28c19 0 31 -3 50 -7c36 28 64 77 76 113'], + 0xE431: [691,217,735,98,637,'637 186c0 -154 -118 -200 -265 -200c-54 0 -87 16 -122 40v-26c0 -100 22 -217 22 -217h-174v736c0 129 124 172 245 172c103 0 245 -30 245 -145c0 -109 -88 -135 -132 -151c80 -27 181 -81 181 -209zM476 189c0 77 -11 152 -67 179c-15 -10 -30 -17 -48 -17 c-15 0 -48 11 -48 34c0 17 23 35 49 35c17 0 32 -2 50 -11c24 30 24 98 24 135c0 57 -22 117 -93 117c-73 0 -93 -64 -93 -135v-429c37 -44 74 -81 122 -81c76 0 104 80 104 173'], + 0xE432: [691,217,827,117,710,'710 186c0 -154 -130 -200 -292 -200c-59 0 -95 16 -134 40v-26c0 -100 24 -217 24 -217h-191v736c0 129 137 172 270 172c112 0 268 -30 268 -145c0 -109 -97 -135 -145 -151c88 -27 200 -81 200 -209zM533 189c0 77 -12 152 -74 179c-17 -10 -34 -17 -53 -17 c-17 0 -53 11 -53 34c0 17 25 35 54 35c18 0 35 -2 55 -11c26 30 26 98 26 135c0 57 -24 117 -101 117c-81 0 -103 -64 -103 -135v-429c41 -44 81 -81 134 -81c84 0 115 80 115 173'], + 0xE433: [691,217,890,98,792,'790 546c-22 -111 -117 -135 -165 -151c73 -27 135 -95 109 -209c-36 -156 -166 -200 -314 -200c-54 0 -81 16 -110 40l-7 -26c-30 -100 -42 -217 -42 -217h-163l217 736c38 129 164 172 285 172c102 0 209 -52 190 -145zM649 544c17 57 12 117 -58 117 c-74 0 -112 -64 -133 -135l-127 -429c24 -44 50 -81 98 -81c76 0 129 80 156 173c22 77 33 152 -14 179c-19 -10 -36 -17 -54 -17c-15 0 -45 11 -38 34c5 17 34 35 60 35c17 0 31 -2 46 -11c33 30 53 98 64 135'], + 0xE434: [691,217,997,117,880,'878 546c-24 -111 -128 -135 -182 -151c80 -27 149 -95 120 -209c-40 -156 -183 -200 -345 -200c-59 0 -89 16 -121 40l-8 -26c-33 -100 -46 -217 -46 -217h-179l238 736c43 129 180 172 314 172c112 0 229 -52 209 -145zM723 544c18 57 13 117 -64 117 c-81 0 -124 -64 -147 -135l-139 -429c27 -44 55 -81 108 -81c84 0 142 80 172 173c24 77 36 152 -16 179c-20 -10 -40 -17 -59 -17c-17 0 -50 11 -43 34c7 17 38 35 67 35c18 0 34 -2 51 -11c36 30 58 98 70 135'], + 0xE435: [461,234,760,98,662,'662 444c-132 -162 -209 -295 -254 -398c17 -96 19 -179 19 -186c0 -83 -40 -94 -61 -94c-62 0 -95 25 -95 77c0 48 14 141 88 293l-17 44c-37 89 -64 201 -161 201c-24 0 -61 -20 -61 -62h-22c0 64 31 142 110 142c76 0 118 -144 158 -249c5 -12 9 -24 13 -36 c39 76 93 165 166 268h117zM397 -154c0 6 0 69 -10 148c-27 -77 -35 -133 -35 -168c0 -31 8 -32 17 -32c15 0 28 15 28 52'], + 0xE436: [461,234,854,117,738,'738 444c-146 -162 -230 -295 -280 -398c18 -96 21 -179 21 -186c0 -83 -44 -94 -67 -94c-69 0 -105 25 -105 77c0 48 16 141 97 293l-19 44c-41 89 -70 201 -177 201c-26 0 -67 -20 -67 -62h-24c0 64 34 142 121 142c83 0 129 -144 174 -249c5 -12 10 -24 13 -36 c44 76 103 165 183 268h130zM446 -154c0 6 0 69 -11 148c-30 -77 -39 -133 -39 -168c0 -31 9 -32 18 -32c17 0 32 15 32 52'], + 0xE437: [442,224,772,98,674,'674 426c-172 -156 -284 -283 -356 -382c-11 -92 -33 -172 -35 -178c-23 -80 -64 -90 -84 -90c-60 0 -86 24 -70 73c13 47 54 136 167 281l-3 43c-11 85 -5 192 -98 192c-22 0 -64 -19 -76 -59h-21c18 61 69 136 145 136c73 0 72 -138 82 -239c1 -11 1 -23 1 -34 c60 73 137 158 235 257h113zM283 -6c-47 -74 -72 -127 -82 -161c-8 -30 -1 -30 8 -30c14 0 32 14 42 49c2 6 20 67 32 142'], + 0xE438: [442,224,868,117,751,'751 426c-190 -156 -314 -283 -392 -382c-12 -92 -36 -172 -39 -178c-25 -80 -70 -90 -92 -90c-66 0 -94 24 -77 73c14 47 59 136 184 281l-4 43c-12 85 -5 192 -108 192c-24 0 -70 -19 -83 -59h-23c19 61 76 136 160 136c79 0 78 -138 89 -239c1 -11 1 -23 1 -34 c67 73 152 158 259 257h125zM320 -6c-52 -74 -79 -127 -89 -161c-10 -30 -2 -30 8 -30c16 0 35 14 46 49c2 6 22 67 35 142'], + 0xE439: [473,232,812,98,714,'714 461c-142 -174 -227 -319 -274 -430c16 -81 23 -147 23 -169c0 -90 -54 -94 -75 -94c-95 0 -143 66 -143 129c0 52 20 139 115 305c-36 90 -90 161 -168 161c-24 0 -70 -10 -70 -52h-24c0 64 31 162 110 162c77 0 135 -104 177 -227c36 61 84 132 141 215h188z M430 -152c0 17 -3 66 -12 127c-24 -66 -33 -116 -33 -147s8 -30 17 -30c15 0 28 13 28 50'], + 0xE43A: [473,232,911,117,794,'794 461c-156 -174 -249 -319 -301 -430c17 -81 26 -147 26 -169c0 -90 -60 -94 -83 -94c-105 0 -157 66 -157 129c0 52 22 139 126 305c-40 90 -99 161 -185 161c-26 0 -77 -10 -77 -52h-26c0 64 34 162 121 162c85 0 149 -104 195 -227c40 61 92 132 154 215h207z M482 -152c0 17 -3 66 -13 127c-27 -66 -36 -116 -36 -147s8 -30 18 -30c17 0 31 13 31 50'], + 0xE43B: [473,232,846,98,748,'748 461c-193 -174 -321 -319 -401 -430c-8 -81 -20 -147 -27 -169c-26 -90 -81 -94 -102 -94c-96 0 -112 66 -95 129c16 52 62 139 205 305c-10 90 -43 161 -121 161c-23 0 -72 -10 -85 -52h-24c19 64 79 162 158 162c77 0 105 -104 110 -227c54 61 123 132 205 215h177 zM308 -25c-43 -66 -67 -116 -76 -147s-1 -30 8 -30c15 0 32 13 43 50c5 17 16 66 25 127'], + 0xE43C: [473,232,949,117,832,'832 461c-213 -174 -353 -319 -442 -430c-8 -81 -22 -147 -29 -169c-29 -90 -89 -94 -112 -94c-106 0 -124 66 -104 129c17 52 67 139 225 305c-11 90 -47 161 -133 161c-26 0 -79 -10 -94 -52h-26c20 64 87 162 174 162c85 0 115 -104 121 -227c59 61 134 132 225 215 h195zM348 -25c-47 -66 -74 -116 -84 -147c-9 -31 -1 -30 9 -30c17 0 35 13 47 50c6 17 18 66 28 127'], + 0xE43D: [671,16,682,98,584,'584 200c0 -137 -104 -216 -248 -216c-133 0 -238 79 -238 212c0 121 120 199 227 199l-97 65c-39 26 -52 67 -52 103c0 58 67 108 157 108c110 0 181 -41 181 -97c0 -25 -27 -39 -49 -39c-30 0 -53 22 -69 46c-17 27 -50 55 -107 55c-49 0 -60 -30 -60 -49 c0 -22 43 -51 57 -61l129 -91c96 -68 169 -144 169 -235zM485 190c0 79 -102 167 -121 178c-101 0 -167 -82 -167 -185c0 -77 65 -171 144 -171c101 0 144 80 144 178'], + 0xE43E: [671,16,768,117,652,'652 200c0 -137 -115 -216 -274 -216c-146 0 -261 79 -261 212c0 121 132 199 249 199l-106 65c-43 26 -57 67 -57 103c0 58 74 108 173 108c121 0 198 -41 198 -97c0 -25 -29 -39 -53 -39c-34 0 -59 22 -76 46c-20 27 -56 55 -118 55c-54 0 -66 -30 -66 -49 c0 -22 47 -51 63 -61l141 -91c106 -68 187 -144 187 -235zM543 190c0 79 -113 167 -133 178c-112 0 -184 -82 -184 -185c0 -77 71 -171 158 -171c112 0 159 80 159 178'], + 0xE43F: [645,15,713,97,615,'612 552c-6 -24 -36 -37 -57 -37c-30 0 -45 21 -53 44c-10 26 -33 53 -87 53c-47 0 -66 -29 -71 -47c-7 -21 26 -51 37 -61l98 -87c72 -65 122 -138 96 -225c-39 -132 -161 -207 -299 -207c-128 0 -206 75 -169 203c34 116 172 191 274 191l-75 62c-25 21 -30 66 -19 101 c15 55 93 103 180 103c106 0 162 -39 145 -93zM477 182c22 76 -51 160 -65 171c-97 0 -185 -79 -213 -178c-22 -73 14 -163 90 -163c97 0 160 76 188 170'], + 0xE440: [645,15,802,116,686,'683 552c-8 -24 -40 -37 -63 -37c-33 0 -50 21 -58 44c-11 26 -37 53 -96 53c-52 0 -73 -29 -79 -47c-7 -21 29 -51 41 -61l108 -87c79 -65 134 -138 105 -225c-42 -132 -176 -207 -329 -207c-140 0 -226 75 -185 203c38 116 189 191 301 191l-82 62 c-28 21 -34 66 -22 101c17 55 103 103 199 103c116 0 178 -39 160 -93zM534 182c24 76 -56 160 -72 171c-106 0 -203 -79 -234 -178c-25 -73 15 -163 99 -163c106 0 176 76 207 170'], + 0xE441: [691,14,753,98,655,'655 200c0 -143 -140 -214 -284 -214c-133 0 -273 61 -273 210c0 102 99 168 224 194l-70 52c-20 15 -58 45 -58 111c0 58 53 138 186 138c110 0 191 -41 191 -97c0 -25 -34 -39 -56 -39c-31 0 -55 16 -73 46c-16 27 -50 54 -106 54c-32 0 -54 -21 -54 -44 c0 -22 31 -39 45 -49l129 -91c95 -68 199 -182 199 -271zM494 190c0 57 -44 106 -115 159l-18 13c-67 -31 -103 -98 -103 -179c0 -77 39 -167 118 -167c102 0 118 76 118 174'], + 0xE442: [691,14,846,117,729,'729 200c0 -143 -154 -214 -312 -214c-147 0 -300 61 -300 210c0 102 109 168 247 194l-78 52c-22 15 -64 45 -64 111c0 58 58 138 205 138c121 0 210 -41 210 -97c0 -25 -37 -39 -62 -39c-33 0 -60 16 -79 46c-19 27 -56 54 -118 54c-35 0 -59 -21 -59 -44 c0 -22 34 -39 49 -49l142 -91c105 -68 219 -182 219 -271zM552 190c0 57 -48 106 -127 159l-19 13c-74 -31 -114 -98 -114 -179c0 -77 44 -167 131 -167c111 0 129 76 129 174'], + 0xE443: [691,14,787,98,688,'686 594c-7 -25 -45 -39 -67 -39c-30 0 -50 16 -59 46c-9 27 -34 54 -90 54c-32 0 -61 -21 -67 -44c-7 -22 12 -44 23 -54l102 -91c76 -68 134 -182 108 -271c-42 -143 -185 -209 -329 -209c-133 0 -243 61 -199 210c30 102 137 168 269 194l-55 52 c-15 15 -45 45 -25 111c18 58 94 138 227 138c110 0 179 -41 162 -97zM491 190c16 57 -14 106 -69 159l-14 13c-76 -31 -132 -98 -156 -179c-23 -77 -10 -167 69 -167c101 0 141 76 170 174'], + 0xE444: [691,14,884,116,766,'764 594c-8 -25 -50 -39 -74 -39c-34 0 -55 16 -65 46c-10 27 -38 54 -99 54c-35 0 -67 -21 -74 -44c-7 -22 13 -44 25 -54l113 -91c83 -68 147 -182 118 -271c-46 -143 -203 -209 -361 -209c-147 0 -268 61 -219 210c32 102 151 168 296 194l-60 52 c-17 15 -50 45 -28 111c19 58 103 138 249 138c121 0 197 -41 179 -97zM549 190c18 57 -15 106 -75 159l-16 13c-84 -31 -145 -98 -172 -179c-25 -77 -11 -167 76 -167c112 0 155 76 187 174'], + 0xE445: [460,16,613,98,515,'515 94c0 -41 -62 -110 -235 -110c-80 0 -182 43 -182 125c0 68 42 97 112 123c-61 30 -94 75 -94 118c0 56 55 110 192 110c71 0 173 -28 173 -83c0 -16 -21 -37 -44 -39c-30 0 -49 19 -66 40c-20 25 -36 54 -71 54c-70 0 -86 -51 -86 -102c0 -29 22 -73 59 -90 c26 7 47 18 74 18c25 0 52 -12 52 -31c0 -18 -29 -30 -51 -30c-31 0 -54 11 -76 18c-25 -12 -75 -58 -75 -105c0 -64 50 -98 102 -98c49 0 85 30 102 48c22 23 30 76 73 76c33 0 41 -23 41 -42'], + 0xE446: [460,16,692,117,575,'575 94c0 -41 -67 -110 -259 -110c-87 0 -199 43 -199 125c0 68 46 97 123 123c-68 30 -104 75 -104 118c0 56 61 110 212 110c77 0 190 -28 190 -83c0 -16 -23 -37 -49 -39c-32 0 -53 19 -72 40c-22 25 -40 54 -78 54c-77 0 -95 -51 -95 -102c0 -29 24 -73 65 -90 c29 7 52 18 81 18c28 0 58 -12 58 -31c0 -18 -32 -30 -57 -30c-33 0 -59 11 -83 18c-28 -12 -82 -58 -82 -105c0 -64 54 -98 112 -98c53 0 93 30 112 48c24 23 33 76 81 76c36 0 44 -23 44 -42'], + 0xE447: [441,15,645,98,546,'545 361c-4 -15 -32 -35 -54 -37c-28 0 -40 18 -51 38c-13 24 -20 52 -53 52c-67 0 -97 -49 -111 -98c-9 -27 0 -70 30 -86c28 7 51 17 76 17s48 -11 42 -29c-4 -18 -36 -29 -57 -29c-30 0 -50 10 -69 17c-28 -11 -88 -55 -102 -101c-17 -61 20 -93 71 -93 c47 0 90 28 112 46c26 22 51 72 91 72c32 0 32 -22 27 -40c-11 -39 -89 -105 -257 -105c-75 0 -161 41 -138 119c20 66 67 93 142 118c-51 29 -70 72 -57 114c15 53 83 105 215 105c67 0 159 -27 143 -80'], + 0xE448: [441,15,727,116,610,'609 361c-5 -15 -35 -35 -60 -37c-31 0 -44 18 -57 38c-13 24 -21 52 -58 52c-73 0 -106 -49 -122 -98c-9 -27 0 -70 34 -86c30 7 56 17 84 17c26 0 52 -11 46 -29c-5 -18 -40 -29 -63 -29c-33 0 -55 10 -77 17c-30 -11 -96 -55 -111 -101c-19 -61 22 -93 78 -93 c52 0 99 28 123 46c29 22 56 72 100 72c35 0 35 -22 29 -40c-12 -39 -98 -105 -282 -105c-83 0 -177 41 -152 119c22 66 74 93 156 118c-56 29 -76 72 -63 114c17 53 92 105 237 105c74 0 175 -27 158 -80'], + 0xE449: [473,14,650,98,552,'552 96c0 -58 -50 -110 -224 -110c-79 0 -230 25 -230 123c0 76 76 113 150 133c-66 17 -128 38 -128 121c0 56 92 110 226 110c110 0 191 -42 191 -98c0 -25 -34 -39 -56 -39c-31 0 -55 16 -73 46c-16 27 -20 61 -59 61c-51 0 -77 -49 -77 -100c0 -29 2 -69 38 -85 c16 10 42 17 60 17c15 0 48 -11 48 -34c0 -17 -23 -35 -49 -35c-17 0 -43 2 -61 11c-25 -12 -48 -60 -48 -107c0 -64 35 -94 88 -94c48 0 68 24 79 46c14 28 31 76 74 76c33 0 51 -23 51 -42'], + 0xE44A: [473,14,733,117,617,'617 96c0 -58 -56 -110 -247 -110c-87 0 -253 25 -253 123c0 76 83 113 164 133c-72 17 -140 38 -140 121c0 56 102 110 248 110c121 0 211 -42 211 -98c0 -25 -38 -39 -62 -39c-34 0 -61 16 -80 46c-18 27 -22 61 -65 61c-56 0 -85 -49 -85 -100c0 -29 2 -69 42 -85 c17 10 46 17 66 17c17 0 53 -11 53 -34c0 -17 -25 -35 -55 -35c-18 0 -47 2 -66 11c-28 -12 -53 -60 -53 -107c0 -64 38 -94 96 -94c54 0 75 24 88 46c15 28 33 76 81 76c36 0 57 -23 57 -42'], + 0xE44B: [473,14,707,97,608,'606 375c-6 -25 -45 -39 -67 -39c-31 0 -51 16 -59 46c-8 27 -1 61 -41 61c-51 0 -91 -49 -107 -100c-9 -29 -18 -69 13 -85c19 10 48 17 65 17c16 0 45 -11 39 -34c-6 -17 -34 -35 -61 -35c-16 0 -41 2 -57 11c-28 -12 -66 -60 -80 -107c-19 -64 8 -94 60 -94 c49 0 76 24 94 46c22 28 53 76 96 76c33 0 45 -23 39 -42c-17 -58 -83 -110 -257 -110c-79 0 -203 35 -183 123c18 77 98 113 178 133c-61 17 -115 39 -81 121c31 74 114 110 247 110c110 0 179 -42 162 -98'], + 0xE44C: [473,14,795,116,678,'676 375c-8 -25 -50 -39 -74 -39c-34 0 -56 16 -65 46c-9 27 -2 61 -45 61c-56 0 -101 -49 -118 -100c-9 -29 -20 -69 15 -85c21 10 52 17 71 17c17 0 50 -11 43 -34c-6 -17 -38 -35 -67 -35c-18 0 -46 2 -63 11c-31 -12 -72 -60 -88 -107c-21 -64 8 -94 66 -94 c54 0 84 24 103 46c25 28 58 76 106 76c36 0 49 -23 43 -42c-19 -58 -92 -110 -283 -110c-87 0 -223 35 -201 123c19 77 108 113 196 133c-68 17 -127 39 -89 121c33 74 125 110 272 110c121 0 196 -42 178 -98'], + 0xE44D: [460,16,541,98,443,'443 17c-33 -24 -74 -33 -114 -33c-151 0 -231 114 -231 238c0 134 80 238 231 238c40 0 81 -9 114 -33l-22 -37c-28 23 -60 41 -93 41c-96 0 -127 -79 -131 -184h177v-28h-177c0 -117 29 -206 131 -206c33 0 65 18 93 41'], + 0xE44E: [460,16,614,117,497,'497 17c-37 -24 -83 -33 -126 -33c-166 0 -254 114 -254 238c0 134 88 238 254 238c43 0 89 -9 126 -33l-24 -37c-32 23 -67 41 -103 41c-106 0 -139 -79 -144 -184h195v-28h-195c0 -117 31 -206 144 -206c36 0 71 18 103 41'], + 0xE44F: [441,15,597,97,499,'499 409l-32 -35c-21 22 -46 39 -78 39c-92 0 -144 -76 -177 -176h170l-9 -27h-170c-33 -112 -31 -198 67 -198c32 0 68 18 102 40l10 -36c-38 -23 -80 -31 -119 -31c-144 0 -189 109 -154 228c38 128 144 228 289 228c38 0 75 -9 101 -32'], + 0xE450: [441,15,674,116,558,'558 409l-35 -35c-23 22 -51 39 -86 39c-101 0 -159 -76 -195 -176h187l-9 -27h-188c-36 -112 -34 -198 74 -198c35 0 75 18 113 40l10 -36c-42 -23 -88 -31 -130 -31c-159 0 -208 109 -170 228c41 128 159 228 317 228c43 0 84 -9 112 -32'], + 0xE451: [482,14,594,98,496,'496 25c-33 -24 -88 -39 -127 -39c-151 0 -271 95 -271 247c0 155 120 249 271 249c39 0 94 -15 127 -39l-35 -51c-20 31 -60 59 -93 59c-85 0 -106 -85 -109 -191h155v-30h-155c0 -117 17 -213 109 -213c33 0 73 28 93 59'], + 0xE452: [482,14,672,117,555,'555 25c-36 -24 -97 -39 -141 -39c-165 0 -297 95 -297 247c0 155 132 249 297 249c44 0 105 -15 141 -39l-39 -51c-22 31 -66 59 -103 59c-93 0 -116 -85 -120 -191h171v-30h-171c0 -117 20 -213 120 -213c37 0 81 28 103 59'], + 0xE453: [482,14,658,97,560,'560 443l-51 -51c-11 31 -43 59 -76 59c-84 0 -130 -85 -165 -191h156l-9 -30h-155c-36 -117 -45 -213 46 -213c33 0 81 28 110 59l21 -51c-41 -24 -100 -39 -140 -39c-151 0 -231 95 -187 247c46 155 183 249 333 249c40 0 91 -15 117 -39'], + 0xE454: [482,14,742,116,625,'625 443l-56 -51c-12 31 -47 59 -83 59c-93 0 -144 -85 -182 -191h171l-10 -30h-170c-39 -117 -50 -213 50 -213c37 0 90 28 121 59l23 -51c-44 -24 -110 -39 -153 -39c-166 0 -254 95 -206 247c51 155 201 249 367 249c43 0 99 -15 128 -39'], + 0xE455: [667,210,621,98,523,'523 -54c0 -81 -61 -156 -175 -156c-34 0 -73 5 -73 41c0 21 18 38 36 38c21 2 44 -12 71 -12c54 0 110 35 110 67c0 42 -35 63 -68 76c-28 11 -106 -3 -165 -3c-110 0 -161 79 -161 215c0 109 54 201 146 311c-62 17 -90 47 -90 77c0 29 33 67 65 67c9 0 17 -6 22 -13 c15 -19 -40 -40 -40 -62c0 -33 30 -35 61 -46c37 38 111 115 156 115c21 0 33 -17 33 -37c0 -33 -100 -100 -171 -107c-72 -86 -150 -177 -150 -305c0 -174 212 -113 239 -113c101 0 154 -85 154 -153'], + 0xE456: [667,210,701,117,584,'584 -54c0 -81 -67 -156 -193 -156c-37 0 -79 5 -79 41c0 21 19 38 40 38c23 2 48 -12 77 -12c59 0 121 35 121 67c0 42 -39 63 -75 76c-30 11 -116 -3 -182 -3c-121 0 -176 79 -176 215c0 109 59 201 161 311c-69 17 -99 47 -99 77c0 29 36 67 71 67c10 0 18 -6 24 -13 c17 -19 -43 -40 -43 -62c0 -33 32 -35 66 -46c41 38 122 115 172 115c23 0 36 -17 36 -37c0 -33 -110 -100 -189 -107c-78 -86 -164 -177 -164 -305c0 -174 233 -113 262 -113c112 0 170 -85 170 -153'], + 0xE457: [639,201,670,97,571,'570 598c-9 -31 -124 -96 -195 -102c-92 -83 -194 -170 -230 -293c-48 -167 172 -108 197 -108c97 0 123 -82 104 -147c-23 -77 -101 -149 -211 -149c-33 0 -68 4 -57 39c6 20 26 36 44 36c21 2 40 -11 65 -11c52 0 114 33 123 64c12 40 -14 61 -43 73 c-23 11 -102 -3 -159 -3c-106 0 -131 76 -94 206c32 105 109 193 229 298c-55 17 -74 45 -65 74c9 28 51 64 82 64c7 0 14 -5 17 -12c9 -18 -49 -38 -56 -59c-9 -32 19 -34 45 -45c47 37 140 111 183 111c20 0 26 -17 21 -36'], + 0xE458: [639,201,755,117,637,'636 598c-10 -31 -136 -96 -215 -102c-101 -83 -212 -170 -252 -293c-54 -167 188 -108 216 -108c107 0 136 -82 115 -147c-25 -77 -111 -149 -232 -149c-36 0 -75 4 -63 39c6 20 29 36 48 36c23 2 44 -11 72 -11c57 0 126 33 135 64c14 40 -16 61 -47 73 c-25 11 -113 -3 -175 -3c-117 0 -144 76 -103 206c35 105 120 193 251 298c-60 17 -81 45 -71 74c10 28 56 64 90 64c8 0 15 -5 19 -12c10 -18 -55 -38 -62 -59c-9 -32 21 -34 50 -45c52 37 153 111 201 111c21 0 29 -17 23 -36'], + 0xE459: [667,215,621,98,523,'523 -54c0 -81 -61 -161 -175 -161c-34 0 -77 15 -77 51c0 21 14 43 40 43c41 0 44 -22 71 -22c54 0 108 25 108 67s-36 53 -69 66c-27 11 -103 -3 -162 -3c-110 0 -161 89 -161 225c0 109 54 201 146 311c-62 17 -90 47 -90 77c0 29 33 67 65 67c14 0 34 -6 34 -21 c0 -22 -41 -32 -41 -54c0 -33 19 -35 50 -46c37 38 100 115 145 115c31 0 43 -27 38 -51c-11 -47 -98 -88 -163 -95c-72 -86 -150 -175 -150 -303c0 -114 199 -66 226 -66c151 0 165 -132 165 -200'], + 0xE45A: [667,215,701,117,584,'584 -54c0 -81 -67 -161 -193 -161c-37 0 -84 15 -84 51c0 21 16 43 45 43c44 0 48 -22 77 -22c59 0 119 25 119 67s-39 53 -75 66c-31 11 -114 -3 -180 -3c-121 0 -176 89 -176 225c0 109 59 201 161 311c-69 17 -99 47 -99 77c0 29 36 67 71 67c16 0 37 -6 37 -21 c0 -22 -44 -32 -44 -54c0 -33 20 -35 54 -46c41 38 110 115 160 115c34 0 47 -27 41 -51c-12 -47 -108 -88 -179 -95c-79 -86 -165 -175 -165 -303c0 -114 219 -66 248 -66c167 0 182 -132 182 -200'], + 0xE45B: [667,215,684,98,585,'579 610c-24 -47 -123 -88 -190 -95c-97 -86 -202 -175 -239 -303c-34 -114 179 -66 206 -66c151 0 126 -132 106 -200c-24 -81 -109 -161 -223 -161c-34 0 -73 15 -62 51c7 21 28 43 54 43c41 0 38 -22 64 -22c54 0 115 25 128 67c12 42 -17 63 -46 76 c-25 11 -105 -3 -164 -3c-110 0 -138 79 -97 215c32 109 113 201 237 311c-57 17 -75 47 -67 77c9 29 53 67 85 67c14 0 32 -6 28 -21c-7 -22 -50 -32 -57 -54c-9 -33 8 -35 36 -46c48 38 134 115 179 115c31 0 35 -27 22 -51'], + 0xE45C: [667,215,770,116,653,'646 610c-27 -47 -136 -88 -209 -95c-107 -86 -222 -175 -263 -303c-38 -114 197 -66 226 -66c167 0 139 -132 118 -200c-27 -81 -120 -161 -246 -161c-38 0 -80 15 -68 51c7 21 30 43 59 43c45 0 42 -22 71 -22c59 0 126 25 140 67c13 42 -18 63 -51 76 c-26 11 -115 -3 -180 -3c-121 0 -151 79 -107 215c36 109 125 201 262 311c-63 17 -84 47 -74 77c10 29 58 67 93 67c16 0 35 -6 30 -21c-7 -22 -54 -32 -61 -54c-11 -33 8 -35 38 -46c54 38 148 115 198 115c34 0 38 -27 24 -51'], + 0xE45D: [460,217,679,98,581,'581 -217h-109s17 117 17 217v309c0 89 -30 122 -79 122c-55 0 -94 -76 -106 -125v-306h-93v314c0 57 -12 86 -41 86c-24 0 -50 -20 -50 -62h-22c0 64 31 122 110 122c52 0 80 -34 89 -84c31 43 62 84 122 84c71 0 162 -27 162 -154v-523'], + 0xE45E: [460,217,765,117,648,'648 -217h-120s18 117 18 217v309c0 89 -32 122 -86 122c-60 0 -104 -76 -117 -125v-306h-102v314c0 57 -13 86 -46 86c-25 0 -54 -20 -54 -62h-24c0 64 34 122 121 122c57 0 88 -34 98 -84c34 43 68 84 134 84c78 0 178 -27 178 -154v-523'], + 0xE45F: [441,208,659,98,560,'552 293l-148 -501h-105s49 112 77 208l87 296c26 86 7 117 -39 117c-53 0 -113 -73 -138 -120l-87 -293h-88l89 301c16 55 12 82 -16 82c-22 0 -53 -19 -65 -59h-21c18 61 64 117 140 117c49 0 67 -33 60 -81c43 42 84 81 142 81c67 0 148 -26 112 -148'], + 0xE460: [441,208,743,117,626,'617 293l-164 -501h-115s53 112 85 208l96 296c27 86 7 117 -44 117c-58 0 -123 -73 -151 -120l-96 -293h-97l98 301c17 55 14 82 -18 82c-24 0 -58 -19 -71 -59h-23c19 61 70 117 153 117c55 0 74 -33 67 -81c47 42 92 81 156 81c74 0 162 -26 124 -148'], + 0xE461: [473,218,760,98,662,'662 -218h-172s22 118 22 218v322c0 99 -27 122 -72 122c-53 0 -66 -76 -75 -125v-319h-151v327c0 57 -15 86 -44 86c-24 0 -48 -20 -48 -62h-24c0 64 31 122 110 122c52 0 91 -34 100 -84c20 45 67 84 144 84c86 0 210 -20 210 -154v-537'], + 0xE462: [473,218,854,117,738,'738 -218h-190s24 118 24 218v322c0 99 -29 122 -79 122c-58 0 -72 -76 -82 -125v-319h-167v327c0 57 -16 86 -49 86c-25 0 -52 -20 -52 -62h-26c0 64 34 122 121 122c57 0 100 -34 110 -84c22 45 74 84 158 84c95 0 232 -20 232 -154v-537'], + 0xE463: [473,218,737,98,638,'630 319l-157 -537h-162s57 118 86 218l95 322c30 99 10 122 -35 122c-53 0 -88 -76 -113 -125l-93 -319h-141l97 327c16 57 11 86 -19 86c-23 0 -54 -20 -66 -62h-24c19 64 67 122 146 122c52 0 82 -34 75 -84c33 45 82 84 159 84c85 0 192 -20 152 -154'], + 0xE464: [473,218,829,117,711,'702 319l-173 -537h-177s61 118 94 218l104 322c33 99 11 122 -39 122c-58 0 -97 -76 -123 -125l-103 -319h-155l107 327c18 57 12 86 -21 86c-25 0 -59 -20 -73 -62h-26c20 64 74 122 161 122c57 0 89 -34 82 -84c36 45 90 84 174 84c95 0 212 -20 168 -154'], + 0xE465: [673,16,627,97,529,'529 331c4 -166 -50 -347 -215 -347s-213 211 -216 343c-3 166 51 347 216 346c165 0 212 -210 215 -342zM428 359c-1 125 -14 286 -114 287c-105 0 -114 -149 -115 -287h229zM428 322v9h-229c0 -128 6 -319 115 -319c110 0 114 166 114 310'], + 0xE466: [673,16,708,116,591,'591 331c4 -166 -55 -347 -237 -347c-181 0 -233 211 -237 343c-4 166 56 347 237 346c182 0 234 -210 237 -342zM480 359c-1 125 -16 286 -126 287c-115 0 -125 -149 -126 -287h252zM480 322v9h-252c0 -128 6 -319 126 -319c121 0 126 166 126 310'], + 0xE467: [645,15,654,98,556,'534 317c-44 -159 -146 -332 -304 -332s-144 202 -110 328c45 160 147 333 304 332c159 0 145 -201 110 -328zM445 344c34 120 69 274 -28 275c-100 0 -150 -143 -191 -275h219zM438 317h-219c-37 -122 -86 -305 18 -305c106 0 158 159 198 297c2 3 2 5 3 8'], + 0xE468: [645,15,738,116,620,'597 317c-49 -159 -161 -332 -335 -332c-173 0 -159 202 -121 328c49 160 162 333 335 332c174 0 158 -201 121 -328zM499 344c37 120 75 274 -32 275c-110 0 -164 -143 -209 -275h241zM490 317h-240c-40 -122 -95 -305 20 -305c116 0 173 159 218 297c1 3 1 5 2 8'], + 0xE469: [691,14,724,98,626,'626 339c0 -198 -99 -354 -264 -353c-165 0 -264 178 -264 352c0 198 101 353 264 353c165 0 264 -178 264 -352zM465 371c-1 127 -7 293 -103 293c-108 0 -103 -152 -103 -293h206zM465 341h-206c0 -129 -1 -325 103 -325c116 0 103 152 103 325'], + 0xE46A: [691,14,814,117,698,'698 339c0 -198 -109 -354 -291 -353c-181 0 -290 178 -290 352c0 198 111 353 290 353c182 0 291 -178 291 -352zM521 371c-1 127 -9 293 -114 293c-118 0 -114 -152 -114 -293h228zM521 341h-228c0 -129 -1 -325 114 -325c127 0 114 152 114 325'], + 0xE46B: [691,14,745,97,647,'626 339c-58 -198 -192 -354 -357 -353c-165 0 -201 178 -149 352c58 198 194 353 356 353c165 0 201 -178 150 -352zM485 371c37 127 79 293 -16 293c-108 0 -149 -152 -191 -293h207zM476 341h-206c-38 -129 -97 -325 7 -325c116 0 149 152 199 325'], + 0xE46C: [691,14,838,116,721,'698 339c-64 -198 -212 -354 -394 -353c-181 0 -220 178 -163 352c64 198 213 353 392 353c182 0 220 -178 165 -352zM543 371c40 127 87 293 -18 293c-119 0 -164 -152 -210 -293h228zM533 341h-227c-42 -129 -107 -325 8 -325c127 0 163 152 219 325'], + 0xE46D: [673,16,820,98,722,'722 295h-42c0 29 -15 70 -63 88c1 -18 2 -36 2 -52c4 -166 -39 -347 -204 -347s-205 123 -205 303c0 51 -11 112 -40 112c-24 0 -50 -20 -50 -62h-22c0 64 31 122 110 122c52 0 96 -78 96 -124c0 -178 6 -323 111 -323c99 0 103 166 103 310v73 c-141 13 -205 95 -205 171c0 56 36 107 111 107c136 0 178 -135 190 -257c60 -17 108 -61 108 -121zM519 426c0 109 -11 218 -93 219c-41 0 -83 -20 -83 -78c0 -64 50 -131 176 -141'], + 0xE46E: [673,16,920,117,803,'803 295h-46c0 29 -17 70 -69 88c1 -18 2 -36 2 -52c4 -166 -43 -347 -225 -347c-181 0 -225 123 -225 303c0 51 -12 112 -45 112c-25 0 -54 -20 -54 -62h-24c0 64 34 122 121 122c57 0 105 -78 105 -124c0 -178 7 -323 122 -323c109 0 114 166 114 310v73 c-155 13 -226 95 -226 171c0 56 40 107 122 107c150 0 196 -135 209 -257c67 -17 119 -61 119 -121zM580 426c0 109 -12 218 -103 219c-44 0 -90 -20 -90 -78c0 -64 54 -131 193 -141'], + 0xE46F: [645,15,786,98,687,'683 283h-39c7 28 4 67 -37 84c-3 -17 -7 -34 -12 -50c-44 -159 -136 -332 -293 -332c-159 0 -162 118 -112 290c15 49 22 108 -6 108c-22 0 -54 -20 -65 -60h-21c18 61 63 117 139 117c49 0 70 -75 57 -119c-51 -170 -85 -309 15 -309c95 0 147 159 187 297l21 70 c-132 12 -171 91 -151 164c17 53 66 102 138 102c131 0 133 -129 110 -246c54 -16 86 -59 69 -116zM526 408c31 105 51 209 -28 210c-38 0 -85 -19 -101 -74c-18 -62 10 -126 129 -136'], + 0xE470: [645,15,882,117,765,'761 283h-44c8 28 5 67 -40 84c-4 -17 -8 -34 -13 -50c-49 -159 -150 -332 -323 -332c-175 0 -178 118 -123 290c16 49 25 108 -7 108c-24 0 -59 -20 -71 -60h-23c19 61 69 117 152 117c55 0 78 -75 63 -119c-55 -170 -93 -309 17 -309c104 0 161 159 206 297l23 70 c-145 12 -189 91 -166 164c18 53 73 102 151 102c144 0 147 -129 121 -246c60 -16 95 -59 77 -116zM587 408c34 105 56 209 -30 210c-42 0 -94 -19 -111 -74c-21 -62 11 -126 141 -136'], + 0xE471: [693,14,931,98,833,'546 441c-1 97 -9 222 -49 222s-71 -16 -71 -74s25 -126 120 -148zM833 295h-71c0 46 -24 73 -66 87c2 -13 2 -25 2 -36c0 -279 -80 -360 -234 -360c-198 0 -244 81 -244 360c0 35 -10 73 -36 73c-27 0 -57 -16 -62 -65h-24c0 71 54 119 131 119c85 0 143 -57 143 -127 c0 -271 4 -330 92 -330c72 0 82 59 82 330v53c-118 24 -153 117 -153 189c0 56 27 105 102 105c138 0 184 -143 198 -265c71 -11 140 -44 140 -133'], + 0xE472: [693,14,1042,117,925,'609 441c-1 97 -9 222 -53 222c-45 0 -79 -16 -79 -74s28 -126 132 -148zM925 295h-77c0 46 -27 73 -73 87c1 -13 1 -25 1 -36c0 -279 -87 -360 -256 -360c-218 0 -269 81 -269 360c0 35 -11 73 -40 73s-63 -16 -68 -65h-26c0 71 59 119 144 119c93 0 157 -57 157 -127 c0 -271 5 -330 102 -330c78 0 89 59 89 330v53c-129 24 -168 117 -168 189c0 56 30 105 113 105c151 0 202 -143 217 -265c78 -11 154 -44 154 -133'], + 0xE473: [693,14,898,98,799,'578 663c-41 0 -77 -16 -94 -74s-12 -126 76 -148c28 97 57 222 18 222zM793 295h-70c13 46 -2 73 -41 87c-2 -13 -5 -25 -9 -36c-82 -279 -175 -360 -329 -360c-198 0 -209 81 -126 360c10 35 11 73 -15 73c-27 0 -62 -16 -81 -65h-24c21 71 89 119 166 119 c85 0 115 -57 95 -127c-81 -271 -94 -330 -6 -330c72 0 99 59 180 330l15 53c-111 24 -119 117 -97 189c17 56 58 105 133 105c138 0 130 -143 109 -265c67 -11 127 -44 100 -133'], + 0xE474: [693,14,1005,117,888,'644 663c-44 0 -84 -16 -102 -74c-20 -58 -14 -126 83 -148c30 97 63 222 19 222zM882 295h-78c15 46 -2 73 -45 87c-2 -13 -6 -25 -9 -36c-91 -279 -193 -360 -362 -360c-218 0 -230 81 -139 360c11 35 12 73 -17 73s-68 -16 -89 -65h-26c23 71 98 119 183 119 c93 0 125 -57 104 -127c-89 -271 -103 -330 -6 -330c78 0 108 59 197 330l17 53c-123 24 -131 117 -107 189c18 56 64 105 147 105c151 0 142 -143 119 -265c74 -11 140 -44 111 -133'], + 0xE475: [460,17,529,98,431,'431 102c0 -63 -39 -119 -109 -119c-62 0 -103 41 -103 117v242c0 45 -5 64 -32 64c-32 0 -67 -24 -67 -65h-22c0 63 40 119 109 119c63 0 103 -41 102 -118v-242c0 -39 7 -63 33 -63c32 0 67 24 67 65h22'], + 0xE476: [460,17,600,117,483,'483 102c0 -63 -43 -119 -119 -119c-69 0 -114 41 -114 117v242c0 45 -6 64 -35 64c-35 0 -74 -24 -74 -65h-24c0 63 43 119 120 119c69 0 113 -41 112 -118v-242c0 -39 7 -63 36 -63c36 0 74 24 74 65h24'], + 0xE477: [441,16,448,98,350,'350 98c-18 -61 -72 -114 -138 -114c-60 0 -88 39 -66 112l69 232c12 43 12 61 -14 61c-30 0 -71 -23 -82 -62h-21c18 60 72 114 138 114c60 0 88 -39 64 -113l-68 -232c-11 -38 -12 -61 13 -61c31 0 72 23 83 63h22'], + 0xE478: [441,16,511,117,394,'394 98c-19 -61 -79 -114 -151 -114c-67 0 -97 39 -73 112l75 232c13 43 13 61 -14 61c-34 0 -79 -23 -91 -62h-23c19 60 78 114 151 114c67 0 97 -39 71 -113l-75 -232c-12 -38 -13 -61 15 -61c34 0 79 23 91 63h24'], + 0xE479: [473,14,592,98,494,'494 105c0 -71 -54 -119 -131 -119c-85 0 -143 25 -143 127v233c0 35 -13 73 -36 73c-27 0 -57 -16 -62 -65h-24c0 71 54 119 131 119c85 0 143 -25 143 -127v-233c0 -35 13 -73 36 -73c27 0 57 16 62 65h24'], + 0xE47A: [473,14,669,117,552,'552 105c0 -71 -59 -119 -144 -119c-93 0 -157 25 -157 127v233c0 35 -14 73 -40 73c-29 0 -63 -16 -68 -65h-26c0 71 59 119 144 119c93 0 157 -25 157 -127v-233c0 -35 15 -73 40 -73c29 0 63 16 68 65h26'], + 0xE47B: [473,14,507,98,409,'409 105c-21 -71 -89 -119 -166 -119c-84 0 -124 25 -94 127l69 233c10 35 8 73 -15 73c-27 0 -62 -16 -81 -65h-24c21 71 89 119 166 119c85 0 119 -47 95 -127l-70 -233c-9 -35 -7 -73 16 -73c26 0 61 16 80 65h24'], + 0xE47C: [473,14,576,117,459,'459 105c-23 -71 -98 -119 -182 -119c-94 0 -137 25 -105 127l77 233c11 35 8 73 -17 73c-29 0 -68 -16 -89 -65h-26c23 71 98 119 183 119c93 0 130 -47 104 -127l-77 -233c-11 -35 -8 -73 17 -73c29 0 68 16 89 65h26'], + 0xE47D: [460,15,780,98,682,'682 36c0 -29 -28 -51 -94 -51s-137 30 -164 77l-93 157l-27 -23v-196h-93v314c0 71 -12 86 -41 86c-24 0 -50 -20 -50 -62h-22c0 64 31 122 110 122c52 0 96 -42 96 -84v-142l223 186c31 26 44 40 80 40c34 0 62 -22 62 -51c0 -25 -25 -43 -53 -43c-26 0 -45 13 -57 13 c-22 0 -35 0 -63 -23l-93 -79l77 -134c18 -35 61 -103 81 -103c30 0 31 39 77 39c21 0 44 -18 44 -43'], + 0xE47E: [460,15,876,117,759,'759 36c0 -29 -31 -51 -104 -51c-72 0 -150 30 -180 77l-102 157l-30 -23v-196h-102v314c0 71 -13 86 -46 86c-25 0 -54 -20 -54 -62h-24c0 64 34 122 121 122c57 0 105 -42 105 -84v-142l246 186c34 26 48 40 88 40c38 0 68 -22 68 -51c0 -25 -28 -43 -58 -43 c-29 0 -50 13 -63 13c-24 0 -39 0 -69 -23l-103 -79l85 -134c20 -35 67 -103 89 -103c33 0 34 39 85 39c23 0 48 -18 48 -43'], + 0xE47F: [441,14,765,98,666,'665 392c-7 -24 -37 -41 -63 -41c-25 0 -40 12 -52 12c-21 0 -33 0 -66 -22l-112 -75l36 -129c9 -33 30 -99 49 -99c28 0 40 38 84 38c20 0 39 -18 31 -41c-8 -28 -42 -49 -105 -49s-123 28 -136 73l-44 151l-33 -22l-55 -188h-89l89 301c20 68 13 82 -15 82 c-22 0 -53 -19 -65 -59h-21c18 61 63 117 139 117c49 0 80 -40 68 -81l-40 -136l266 179c38 25 54 38 88 38c33 0 54 -21 46 -49'], + 0xE480: [441,14,859,117,742,'740 392c-7 -24 -40 -41 -69 -41c-28 0 -44 12 -57 12c-23 0 -36 0 -72 -22l-124 -75l40 -129c10 -33 33 -99 53 -99c32 0 45 38 93 38c22 0 43 -18 34 -41c-8 -28 -46 -49 -116 -49c-69 0 -134 28 -149 73l-48 151l-36 -22l-61 -188h-98l98 301c22 68 15 82 -17 82 c-24 0 -58 -19 -71 -59h-23c19 61 69 117 152 117c55 0 89 -40 75 -81l-43 -136l293 179c41 25 59 38 96 38s60 -21 50 -49'], + 0xE481: [473,14,866,98,768,'768 44c0 -44 -70 -58 -128 -58c-93 0 -160 34 -193 106l-51 137l-24 -20v-209h-152v346c0 35 -13 73 -36 73c-27 0 -57 -16 -62 -65h-24c0 71 54 119 131 119c85 0 143 -25 143 -127v-95l219 182c31 26 44 40 80 40c34 0 62 -22 62 -51c0 -25 -26 -53 -53 -53 c-26 0 -45 23 -57 23c-22 0 -33 -1 -60 -24l-70 -59l62 -166c20 -55 52 -112 81 -112c25 0 31 59 77 59c34 0 55 -18 55 -46'], + 0xE482: [473,14,970,117,854,'854 44c0 -44 -78 -58 -141 -58c-103 0 -176 34 -213 106l-55 137l-27 -20v-209h-167v346c0 35 -14 73 -40 73c-29 0 -63 -16 -68 -65h-26c0 71 59 119 144 119c93 0 157 -25 157 -127v-95l241 182c34 26 48 40 88 40c38 0 68 -22 68 -51c0 -25 -28 -53 -58 -53 c-29 0 -50 23 -63 23c-24 0 -36 -1 -65 -24l-78 -59l68 -166c23 -55 58 -112 89 -112c28 0 34 59 85 59c38 0 61 -18 61 -46'], + 0xE483: [473,14,842,98,743,'742 422c-8 -25 -41 -53 -69 -53c-26 0 -38 23 -50 23c-22 0 -33 -1 -66 -24l-88 -59l12 -166c5 -55 20 -112 48 -112c26 0 49 59 95 59c34 0 49 -18 42 -46c-14 -44 -88 -58 -146 -58c-93 0 -150 34 -161 106l-11 137l-30 -20l-62 -209h-140l102 346c10 35 8 73 -15 73 c-27 0 -62 -16 -81 -65h-24c21 71 89 119 166 119c85 0 117 -54 95 -127l-29 -95l273 182c38 26 56 40 92 40c34 0 55 -22 47 -51'], + 0xE484: [473,14,944,117,826,'825 422c-9 -25 -45 -53 -75 -53c-29 0 -43 23 -56 23c-24 0 -36 -1 -73 -24l-96 -59l13 -166c6 -55 22 -112 53 -112c28 0 53 59 104 59c38 0 55 -18 46 -46c-14 -44 -97 -58 -160 -58c-102 0 -165 34 -177 106l-13 137l-32 -20l-68 -209h-155l113 346 c11 35 8 73 -17 73c-29 0 -68 -16 -89 -65h-26c23 71 98 119 183 119c93 0 128 -54 104 -127l-32 -95l300 182c43 26 62 40 102 40c37 0 60 -22 51 -51'], + 0xE485: [460,16,764,98,666,'666 126c0 -64 -31 -142 -110 -142c-100 0 -119 118 -117 223c-15 -10 -32 -20 -49 -30c-28 -16 -53 -29 -74 -42c-5 -31 -9 -53 -10 -57c-13 -82 -40 -94 -61 -94c-62 0 -95 25 -95 77c0 47 59 103 148 160c2 88 -20 179 -117 179c-24 0 -61 -40 -61 -82h-22 c0 64 31 142 110 142c100 0 119 -118 117 -223l51 30c27 16 51 28 72 40c4 32 9 55 10 59c13 82 39 94 60 94c63 0 96 -25 96 -77c0 -48 -59 -102 -149 -160c-2 -88 20 -179 118 -179c23 0 61 40 61 82h22zM533 400c0 27 -9 32 -17 32c-15 0 -21 -21 -29 -52l-12 -56 c37 23 58 45 58 76zM288 119c-36 -23 -57 -44 -57 -75c0 -27 9 -32 17 -32c15 0 21 21 28 52'], + 0xE486: [460,16,858,117,741,'741 126c0 -64 -34 -142 -121 -142c-110 0 -131 118 -128 223c-17 -10 -35 -20 -55 -30c-30 -16 -58 -29 -81 -42c-4 -31 -9 -53 -11 -57c-14 -82 -43 -94 -66 -94c-69 0 -105 25 -105 77c0 47 65 103 163 160c2 88 -22 179 -129 179c-26 0 -67 -40 -67 -82h-24 c0 64 34 142 121 142c110 0 130 -118 128 -223l57 30c29 16 56 28 79 40c4 32 9 55 10 59c15 82 44 94 67 94c69 0 105 -25 105 -77c0 -48 -65 -102 -163 -160c-2 -88 22 -179 129 -179c26 0 67 40 67 82h24zM595 400c0 27 -10 32 -18 32c-17 0 -23 -21 -32 -52l-13 -56 c40 23 63 45 63 76zM326 119c-40 -23 -63 -44 -63 -75c0 -27 10 -32 18 -32c17 0 23 21 32 52'], + 0xE487: [441,15,740,97,641,'637 367c-13 -46 -85 -98 -187 -153c-26 -85 -32 -172 63 -172c22 0 69 39 80 79h21c-18 -62 -68 -136 -144 -136c-97 0 -82 113 -50 213l-55 -28c-32 -16 -59 -28 -82 -41c-13 -29 -24 -50 -27 -54c-36 -79 -64 -90 -84 -90c-60 0 -85 24 -70 73c14 46 86 99 187 154 c27 84 32 171 -61 171c-22 0 -71 -38 -82 -78h-20c17 61 69 136 145 136c95 0 80 -113 48 -214l58 29l81 38c13 31 23 53 25 57c36 78 65 90 85 90c60 0 84 -24 69 -74zM564 383c8 26 2 31 -6 31c-14 0 -25 -20 -42 -50c-5 -8 -15 -27 -27 -53c40 22 67 43 75 72zM252 114 c-42 -22 -68 -42 -77 -72c-8 -26 -1 -30 7 -30c15 0 26 20 41 49c6 9 16 28 29 53'], + 0xE488: [441,15,831,117,714,'710 367c-15 -46 -93 -98 -206 -153c-29 -85 -35 -172 69 -172c24 0 76 39 88 79h23c-19 -62 -75 -136 -158 -136c-107 0 -90 113 -55 213l-60 -28c-35 -16 -65 -28 -91 -41c-14 -29 -27 -50 -29 -54c-40 -79 -71 -90 -93 -90c-65 0 -93 24 -76 73c14 46 94 99 205 154 c29 84 35 171 -67 171c-25 0 -78 -38 -90 -78h-23c19 61 76 136 160 136c105 0 88 -113 53 -214l64 29l88 38c15 31 26 53 28 57c40 78 72 90 93 90c67 0 94 -24 77 -74zM630 383c8 26 1 31 -7 31c-16 0 -28 -20 -46 -50c-6 -8 -17 -27 -31 -53c45 22 74 43 84 72zM286 114 c-46 -22 -75 -42 -84 -72c-9 -26 -2 -30 7 -30c17 0 29 20 46 49c6 9 17 28 31 53'], + 0xE489: [473,14,734,98,636,'536 413c0 27 -5 30 -14 30c-11 0 -32 -10 -43 -48c-3 -8 -6 -22 -8 -40c41 22 65 42 65 58zM636 148c0 -64 -31 -162 -110 -162s-100 92 -100 190c-14 -6 -29 -13 -44 -19c-33 -13 -64 -26 -89 -38c-2 -16 -6 -29 -8 -41c-16 -77 -52 -92 -73 -92c-62 0 -95 23 -95 75 c0 60 51 140 153 201c-5 60 -23 111 -67 111c-30 0 -81 -20 -81 -62h-24c0 64 31 162 110 162s100 -92 100 -190c14 6 29 13 44 19l89 38c2 15 6 29 8 41c16 77 52 92 73 92c62 0 95 -23 95 -75c0 -60 -51 -140 -153 -201c6 -60 23 -111 67 -111c30 0 81 20 81 62h24z M263 104c-42 -22 -65 -42 -65 -58c0 -27 5 -30 14 -30c11 0 32 10 43 48c3 8 6 22 8 40'], + 0xE48A: [473,14,825,117,708,'598 413c0 27 -4 30 -15 30c-12 0 -35 -10 -48 -48c-2 -8 -6 -22 -8 -40c45 22 71 42 71 58zM708 148c0 -64 -33 -162 -121 -162c-87 0 -110 92 -110 190c-15 -6 -31 -13 -48 -19c-36 -13 -70 -26 -98 -38c-2 -16 -6 -29 -8 -41c-19 -77 -57 -92 -80 -92 c-69 0 -106 23 -106 75c0 60 57 140 169 201c-5 60 -26 111 -74 111c-33 0 -89 -20 -89 -62h-26c0 64 34 162 121 162s110 -92 110 -190c16 6 31 13 48 19l98 38c3 15 6 29 9 41c18 77 57 92 80 92c69 0 105 -23 105 -75c0 -60 -57 -140 -168 -201c6 -60 25 -111 74 -111 c32 0 88 20 88 62h26zM298 104c-46 -22 -71 -42 -71 -58c0 -27 5 -30 16 -30c12 0 35 10 47 48c2 8 6 22 8 40'], + 0xE48B: [473,14,805,97,707,'626 413c8 27 4 30 -6 30c-11 0 -35 -10 -57 -48c-4 -8 -12 -22 -20 -40c48 22 77 42 83 58zM703 398c-18 -60 -94 -140 -212 -201c-13 -60 -10 -111 34 -111c29 0 85 20 99 62h24c-19 -64 -79 -162 -159 -162c-79 0 -72 92 -44 190c-15 -6 -31 -13 -49 -19 c-36 -13 -72 -26 -100 -38c-7 -16 -14 -29 -20 -41c-40 -77 -79 -92 -100 -92c-63 0 -89 23 -74 75c18 60 94 140 213 201c13 60 9 111 -35 111c-29 0 -85 -20 -99 -62h-24c19 64 79 162 159 162c79 0 72 -92 44 -190c15 6 32 13 49 19l100 38c7 15 15 29 20 41 c40 77 79 92 100 92c63 0 89 -23 74 -75zM262 104c-49 -22 -77 -42 -83 -58c-7 -27 -4 -30 6 -30c11 0 35 10 57 48c4 8 12 22 20 40'], + 0xE48C: [473,14,904,117,786,'697 413c9 27 5 30 -6 30c-12 0 -38 -10 -62 -48c-5 -8 -14 -22 -22 -40c52 22 84 42 90 58zM782 398c-19 -60 -103 -140 -233 -201c-14 -60 -11 -111 37 -111c33 0 95 20 109 62h27c-21 -64 -87 -162 -175 -162c-87 0 -79 92 -48 190c-17 -6 -35 -13 -54 -19l-111 -38 c-7 -16 -15 -29 -21 -41c-44 -77 -87 -92 -110 -92c-69 0 -98 23 -81 75c19 60 102 140 233 201c15 60 11 111 -37 111c-33 0 -95 -20 -109 -62h-27c21 64 87 162 174 162s80 -92 49 -190c17 6 35 13 54 19l110 38c7 15 16 29 22 41c44 77 87 92 110 92c69 0 98 -23 81 -75z M297 104c-53 -22 -85 -42 -91 -58c-8 -27 -5 -30 6 -30c12 0 39 10 63 48c5 8 14 22 22 40'], + 0xE48D: [673,18,753,98,655,'655 104c0 -64 -31 -122 -110 -122c-78 0 -106 77 -133 186l-30 116l-178 -284h-106l253 406l-19 75c-25 102 -58 132 -127 132c-37 0 -63 -20 -63 -62h-22c0 64 31 122 110 122c78 0 106 -77 133 -186l79 -313c26 -102 59 -132 128 -132c36 0 63 20 63 62h22'], + 0xE48E: [673,18,846,117,729,'729 104c0 -64 -34 -122 -121 -122c-86 0 -116 77 -146 186l-33 116l-196 -284h-116l278 406l-20 75c-28 102 -65 132 -141 132c-40 0 -69 -20 -69 -62h-24c0 64 34 122 121 122c86 0 116 -77 146 -186l88 -313c27 -102 64 -132 140 -132c40 0 69 20 69 62h24'], + 0xE48F: [645,17,759,98,661,'661 100c-18 -62 -65 -117 -141 -117c-74 0 -79 74 -74 178l4 111l-251 -272h-101l358 389l3 72c4 98 -18 127 -85 127c-35 0 -67 -19 -79 -60h-21c19 62 65 117 141 117c75 0 79 -74 75 -178l-12 -300c-6 -98 18 -127 84 -127c35 0 66 19 78 60h21'], + 0xE490: [645,17,853,117,736,'736 100c-20 -62 -71 -117 -155 -117c-82 0 -87 74 -82 178l5 111l-276 -272h-111l393 389l4 72c5 98 -20 127 -93 127c-39 0 -74 -19 -88 -60h-23c21 62 72 117 155 117s87 -74 83 -178l-14 -300c-6 -98 21 -127 93 -127c39 0 73 19 86 60h23'], + 0xE491: [691,14,812,98,714,'714 148c0 -64 -31 -162 -110 -162c-77 0 -118 33 -155 182l-20 80l-156 -248h-175l279 448l-7 33c-17 67 -67 120 -145 120c-30 0 -81 -30 -81 -72h-24c0 64 31 162 110 162c77 0 132 -44 173 -204l79 -313c18 -71 60 -98 128 -98c27 0 80 30 80 72h24'], + 0xE492: [691,14,911,117,794,'794 148c0 -64 -33 -162 -121 -162c-84 0 -129 33 -170 182l-22 80l-172 -248h-192l307 448l-8 33c-18 67 -74 120 -160 120c-33 0 -88 -30 -88 -72h-27c0 64 34 162 121 162c85 0 145 -44 190 -204l87 -313c19 -71 67 -98 140 -98c31 0 89 30 89 72h26'], + 0xE493: [691,14,841,98,743,'743 148c-19 -64 -80 -162 -159 -162c-77 0 -108 33 -101 182l3 80l-228 -248h-160l396 428l2 53c4 67 -32 120 -110 120c-29 0 -89 -30 -101 -72h-24c19 64 78 162 157 162c77 0 119 -44 112 -204l-12 -313c-3 -71 31 -98 98 -98c28 0 89 30 102 72h25'], + 0xE494: [691,14,943,117,826,'826 148c-21 -64 -87 -162 -174 -162c-85 0 -119 33 -112 182l4 80l-252 -248h-175l435 428l3 53c3 67 -35 120 -121 120c-33 0 -98 -30 -111 -72h-27c20 64 86 162 173 162c85 0 131 -44 123 -204l-13 -313c-4 -71 34 -98 108 -98c30 0 98 30 112 72h27'], + 0xE495: [444,218,702,98,604,'604 107c0 -64 -31 -122 -110 -122c-52 0 -80 34 -89 84c-31 -43 -59 -84 -122 -84c-25 0 -77 7 -91 33v-17c0 -101 16 -219 16 -219h-110v662h94v-308c0 -89 51 -122 100 -122c61 0 94 76 106 125v305h93v-313c0 -57 12 -86 42 -86c23 0 49 20 49 62h22'], + 0xE496: [444,218,790,117,673,'673 107c0 -64 -33 -122 -121 -122c-56 0 -88 34 -98 84c-33 -43 -65 -84 -134 -84c-28 0 -85 7 -100 33v-17c0 -101 18 -219 18 -219h-121v662h103v-308c0 -89 57 -122 110 -122c68 0 104 76 117 125v305h102v-313c0 -57 13 -86 46 -86c25 0 54 20 54 62h24'], + 0xE497: [426,209,774,98,676,'676 103c-19 -62 -65 -117 -141 -117c-50 0 -67 32 -62 80c-42 -41 -81 -80 -141 -80c-24 0 -71 6 -78 31c-2 -5 -5 -16 -5 -16c-29 -97 -45 -210 -45 -210h-106l187 635h89l-87 -296c-25 -85 15 -117 61 -117c59 0 113 73 138 120l86 293h89l-88 -300 c-16 -55 -12 -83 16 -83c23 0 54 19 66 60h21'], + 0xE498: [426,209,869,117,752,'752 103c-21 -62 -71 -117 -155 -117c-54 0 -74 32 -68 80c-46 -41 -89 -80 -154 -80c-27 0 -79 6 -86 31c-3 -5 -6 -16 -6 -16c-32 -97 -50 -210 -50 -210h-116l206 635h98l-96 -296c-28 -85 16 -117 66 -117c66 0 125 73 153 120l94 293h98l-96 -300 c-19 -55 -14 -83 16 -83c26 0 60 19 73 60h23'], + 0xE499: [461,218,779,98,681,'681 107c0 -64 -42 -121 -143 -121c-81 0 -101 17 -128 54c-5 -12 -41 -54 -91 -54c-19 0 -55 12 -69 32v-17c0 -101 22 -219 22 -219h-174v679h152v-325c0 -82 38 -120 75 -120c39 0 61 57 70 93v352h151v-330c0 -57 23 -86 53 -86c33 0 49 18 58 62h24'], + 0xE49A: [461,218,875,117,758,'758 107c0 -64 -46 -121 -157 -121c-90 0 -112 17 -141 54c-6 -12 -46 -54 -100 -54c-21 0 -60 12 -76 32v-17c0 -101 24 -219 24 -219h-191v679h167v-325c0 -82 42 -120 82 -120c44 0 68 57 78 93v352h165v-330c0 -57 26 -86 58 -86c37 0 55 18 64 62h27'], + 0xE49B: [461,218,853,98,755,'755 107c-19 -64 -78 -121 -180 -121c-81 0 -84 17 -100 54c-8 -12 -58 -54 -107 -54c-19 0 -52 12 -60 32l-5 -17c-30 -101 -42 -219 -42 -219h-163l200 679h141l-97 -325c-24 -82 4 -120 40 -120c39 0 79 57 98 93l104 352h140l-98 -330c-16 -57 -2 -86 28 -86 c33 0 55 18 77 62h24'], + 0xE49C: [461,218,956,117,839,'839 107c-20 -64 -86 -121 -197 -121c-90 0 -93 17 -110 54c-10 -12 -64 -54 -119 -54c-20 0 -57 12 -65 32l-6 -17c-33 -101 -46 -219 -46 -219h-179l220 679h155l-107 -325c-26 -82 4 -120 44 -120c44 0 87 57 108 93l115 352h153l-107 -330c-19 -57 -3 -86 30 -86 c36 0 60 18 85 62h26'], + 0xE49D: [460,16,684,98,586,'586 398c0 -27 -6 -78 -20 -131c-30 -107 -118 -207 -187 -283h-46c5 89 -37 416 -163 416c-24 0 -50 -20 -50 -62h-22c0 64 41 122 110 122c112 0 187 -197 193 -395c57 61 125 162 125 206c0 12 -1 23 -3 33c-8 30 -41 70 -41 86c0 38 5 70 53 70c34 0 51 -29 51 -62'], + 0xE49E: [460,16,771,117,654,'654 398c0 -27 -7 -78 -23 -131c-33 -107 -129 -207 -206 -283h-49c5 89 -41 416 -181 416c-25 0 -54 -20 -54 -62h-24c0 64 45 122 121 122c123 0 206 -197 212 -395c62 61 137 162 137 206c0 12 -1 23 -3 33c-9 30 -45 70 -45 86c0 38 6 70 58 70c38 0 57 -29 57 -62'], + 0xE49F: [441,15,685,98,586,'583 382c-8 -26 -28 -75 -56 -126c-59 -103 -172 -198 -260 -271h-44c30 85 83 398 -39 398c-22 0 -53 -19 -65 -59h-21c18 61 74 117 140 117c108 0 124 -189 73 -379c72 59 165 156 179 198c3 11 5 22 5 31c1 29 -19 68 -14 83c11 36 25 67 70 67c32 0 42 -28 32 -59'], + 0xE4A0: [441,15,771,117,654,'650 382c-8 -26 -31 -75 -61 -126c-66 -103 -189 -198 -286 -271h-48c32 85 90 398 -44 398c-24 0 -58 -19 -71 -59h-23c19 61 81 117 153 117c119 0 137 -189 82 -379c78 59 181 156 196 198c3 11 6 22 6 31c1 29 -21 68 -16 83c12 36 28 67 77 67c35 0 46 -28 35 -59'], + 0xE4A1: [473,11,752,98,654,'654 411c0 -27 -7 -83 -21 -136c-30 -107 -183 -235 -248 -286h-44c-4 60 -35 193 -92 357c-18 50 -37 73 -68 73c-24 0 -54 -16 -59 -65h-24c0 71 59 119 136 119c85 0 149 -65 175 -131c41 -102 54 -176 61 -240c46 42 123 133 123 177c0 65 -55 91 -55 129 c0 31 11 65 58 65c34 0 58 -29 58 -62'], + 0xE4A2: [473,11,845,117,728,'728 411c0 -27 -7 -83 -23 -136c-33 -107 -201 -235 -272 -286h-49c-5 60 -39 193 -101 357c-20 50 -40 73 -75 73c-26 0 -60 -16 -65 -65h-26c0 71 65 119 150 119c93 0 163 -65 192 -131c45 -102 60 -176 67 -240c51 42 135 133 135 177c0 65 -60 91 -60 129 c0 31 12 65 64 65c37 0 63 -29 63 -62'], + 0xE4A3: [473,11,760,98,662,'659 411c-8 -27 -31 -83 -60 -136c-62 -107 -252 -235 -333 -286h-33c14 60 22 193 14 357c-4 50 -16 73 -48 73c-23 0 -58 -16 -77 -65h-24c21 71 95 119 172 119c84 0 117 -65 125 -131c10 -102 1 -176 -11 -240c59 42 163 133 176 177c19 65 -29 91 -18 129 c10 31 31 65 79 65c34 0 48 -29 38 -62'], + 0xE4A4: [473,11,854,117,737,'734 411c-9 -27 -34 -83 -67 -136c-67 -107 -277 -235 -365 -286h-36c14 60 24 193 14 357c-3 50 -17 73 -52 73c-25 0 -64 -16 -85 -65h-26c23 71 104 119 189 119c93 0 129 -65 138 -131c10 -102 1 -176 -13 -240c66 42 179 133 194 177c21 65 -31 91 -19 129 c11 31 34 65 86 65c37 0 53 -29 42 -62'], + 0xE4A5: [667,210,620,98,522,'522 -54c0 -81 -61 -156 -175 -156c-34 0 -73 5 -73 41c0 21 18 38 36 38c21 2 44 -12 71 -12c54 0 110 35 110 67c0 42 -35 63 -68 76c-28 11 -106 -3 -165 -3c-110 0 -160 74 -160 173c0 68 77 152 131 185c-13 6 -39 38 -39 69c0 36 20 67 53 99c-62 18 -90 47 -90 77 c0 29 33 67 65 67c9 0 16 -6 22 -13c15 -19 -40 -40 -40 -62c0 -33 30 -34 61 -45c37 38 111 114 156 114c21 0 33 -17 33 -37c0 -33 -100 -100 -172 -107c-26 -28 -56 -60 -56 -96c0 -24 22 -46 34 -52c57 25 91 26 116 26c31 0 57 -14 59 -34c1 -13 -18 -38 -58 -38 c-32 0 -68 3 -113 16c-67 -40 -129 -108 -129 -169c0 -134 210 -71 237 -71c101 0 154 -85 154 -153'], + 0xE4A6: [667,210,699,117,583,'583 -54c0 -81 -67 -156 -193 -156c-37 0 -80 5 -80 41c0 21 20 38 40 38c23 2 49 -12 78 -12c59 0 121 35 121 67c0 42 -39 63 -75 76c-30 11 -116 -3 -182 -3c-121 0 -175 74 -175 173c0 68 85 152 144 185c-15 6 -43 38 -43 69c0 36 22 67 59 99 c-69 18 -100 47 -100 77c0 29 37 67 72 67c9 0 18 -6 24 -13c17 -19 -44 -40 -44 -62c0 -33 33 -34 67 -45c41 38 122 114 172 114c23 0 36 -17 36 -37c0 -33 -110 -100 -189 -107c-29 -28 -61 -60 -61 -96c0 -24 24 -46 37 -52c62 25 99 26 127 26c34 0 63 -14 65 -34 c2 -13 -20 -38 -64 -38c-35 0 -75 3 -124 16c-74 -40 -142 -108 -142 -169c0 -134 231 -71 260 -71c112 0 170 -85 170 -153'], + 0xE4A7: [639,201,674,98,576,'574 598c-9 -31 -123 -96 -195 -102c-33 -27 -71 -58 -81 -92c-7 -23 9 -44 19 -50c60 24 94 25 118 25c30 0 51 -14 48 -33c-4 -12 -30 -36 -67 -36c-31 0 -65 3 -105 15c-75 -38 -154 -104 -170 -162c-39 -128 180 -68 205 -68c97 0 124 -82 105 -147 c-23 -77 -101 -149 -211 -149c-33 0 -69 4 -58 39c6 20 27 36 44 36c21 2 40 -11 65 -11c52 0 115 33 124 64c12 40 -15 61 -43 73c-23 11 -103 -3 -160 -3c-105 0 -132 71 -103 166c18 65 116 146 177 177c-10 6 -25 37 -17 66c10 35 38 65 78 95c-55 18 -73 45 -64 74 c8 28 50 64 81 64c8 0 14 -5 18 -12c8 -18 -50 -38 -57 -59c-8 -32 19 -33 46 -44c47 37 139 110 182 110c20 0 27 -17 21 -36'], + 0xE4A8: [639,201,759,116,642,'640 598c-9 -31 -135 -96 -214 -102c-36 -27 -78 -58 -89 -92c-8 -23 9 -44 20 -50c67 24 104 25 131 25c33 0 56 -14 52 -33c-4 -12 -33 -36 -74 -36c-34 0 -71 3 -115 15c-82 -38 -169 -104 -187 -162c-43 -128 198 -68 226 -68c106 0 136 -82 115 -147 c-25 -77 -111 -149 -232 -149c-37 0 -75 4 -63 39c6 20 29 36 48 36c23 2 44 -11 71 -11c57 0 126 33 136 64c13 40 -16 61 -47 73c-26 11 -113 -3 -176 -3c-116 0 -145 71 -113 166c20 65 128 146 194 177c-10 6 -27 37 -18 66c11 35 41 65 86 95c-60 18 -81 45 -71 74 c9 28 55 64 89 64c9 0 16 -5 20 -12c9 -18 -55 -38 -62 -59c-10 -32 21 -33 50 -44c52 37 153 110 200 110c22 0 30 -17 23 -36'], + 0xE4A9: [667,215,618,98,520,'520 -54c0 -81 -60 -161 -174 -161c-35 0 -77 15 -77 51c0 21 14 43 40 43c41 0 44 -22 71 -22c54 0 107 25 107 67s-35 53 -68 66c-27 11 -103 -3 -163 -3c-110 0 -158 91 -158 189c0 83 76 146 130 179c-13 6 -34 38 -34 69c0 53 28 76 48 99c-63 17 -90 47 -90 77 c0 29 33 67 65 67c14 0 34 -6 34 -21c0 -22 -41 -32 -41 -54c0 -33 19 -35 50 -46c31 35 111 115 156 115c31 0 43 -27 37 -51c-11 -47 -109 -88 -173 -95c-19 -23 -52 -43 -52 -94c0 -24 17 -46 30 -52c24 19 59 23 77 23c15 0 48 -11 48 -34c0 -17 -23 -35 -50 -35 c-16 0 -40 2 -72 16c-67 -40 -128 -96 -128 -163c0 -69 196 -40 222 -40c152 0 165 -122 165 -190'], + 0xE4AA: [667,215,698,117,581,'581 -54c0 -81 -66 -161 -192 -161c-37 0 -85 15 -85 51c0 21 16 43 45 43c45 0 49 -22 78 -22c59 0 118 25 118 67s-39 53 -75 66c-30 11 -114 -3 -179 -3c-121 0 -174 91 -174 189c0 83 83 146 143 179c-15 6 -38 38 -38 69c0 53 32 76 53 99c-69 17 -99 47 -99 77 c0 29 36 67 71 67c16 0 38 -6 38 -21c0 -22 -45 -32 -45 -54c0 -33 21 -35 55 -46c34 35 122 115 171 115c34 0 48 -27 42 -51c-12 -47 -120 -88 -192 -95c-20 -23 -56 -43 -56 -94c0 -24 19 -46 32 -52c27 19 66 23 85 23c17 0 53 -11 53 -34c0 -17 -25 -35 -54 -35 c-18 0 -45 2 -80 16c-74 -40 -140 -96 -140 -163c0 -69 215 -40 244 -40c167 0 181 -122 181 -190'], + 0xE4AB: [667,215,697,97,598,'592 610c-24 -47 -134 -88 -201 -95c-26 -23 -65 -43 -80 -94c-7 -24 4 -46 15 -52c29 19 66 23 83 23c16 0 45 -11 39 -34c-6 -17 -33 -35 -60 -35c-16 0 -40 2 -68 16c-79 -40 -156 -96 -176 -163c-20 -69 184 -40 210 -40c152 0 130 -122 110 -190 c-24 -81 -109 -161 -223 -161c-34 0 -73 15 -62 51c7 21 28 43 54 43c41 0 38 -22 64 -22c54 0 115 25 128 67c12 42 -17 63 -46 76c-25 11 -105 -3 -164 -3c-110 0 -135 81 -106 179c24 83 119 146 183 179c-11 6 -23 38 -14 69c16 53 51 76 77 99c-57 17 -75 47 -67 77 c9 29 53 67 85 67c14 0 32 -6 28 -21c-7 -22 -50 -32 -57 -54c-9 -33 8 -35 36 -46c41 35 145 115 190 115c31 0 35 -27 22 -51'], + 0xE4AC: [667,215,785,116,668,'660 610c-26 -47 -147 -88 -221 -95c-28 -23 -72 -43 -87 -94c-9 -24 3 -46 15 -52c33 19 73 23 92 23c17 0 50 -11 43 -34c-6 -17 -37 -35 -66 -35c-18 0 -44 2 -75 16c-87 -40 -172 -96 -193 -163c-22 -69 202 -40 231 -40c167 0 143 -122 121 -190 c-27 -81 -120 -161 -246 -161c-37 0 -80 15 -68 51c8 21 31 43 60 43c44 0 41 -22 70 -22c59 0 126 25 140 67s-18 63 -51 76c-26 11 -115 -3 -180 -3c-121 0 -148 81 -116 179c27 83 131 146 201 179c-12 6 -26 38 -15 69c17 53 56 76 85 99c-63 17 -84 47 -74 77 c10 29 58 67 93 67c16 0 35 -6 31 -21c-8 -22 -55 -32 -62 -54c-11 -33 8 -35 39 -46c46 35 159 115 209 115c34 0 39 -27 24 -51'], + 0xE4AD: [460,10,680,98,582,'582 234c0 -139 -106 -244 -244 -244c-139 0 -240 101 -240 236c0 137 99 234 242 234c141 0 242 -95 242 -226zM482 199c0 137 -65 233 -156 233c-78 0 -130 -62 -130 -157c0 -71 18 -141 47 -193c24 -40 64 -64 108 -64c83 0 131 68 131 181'], + 0xE4AE: [460,10,766,117,649,'649 234c0 -139 -116 -244 -268 -244c-153 0 -264 101 -264 236c0 137 109 234 266 234c155 0 266 -95 266 -226zM539 199c0 137 -71 233 -172 233c-86 0 -143 -62 -143 -157c0 -71 20 -141 53 -193c26 -40 70 -64 118 -64c91 0 144 68 144 181'], + 0xE4AF: [441,11,681,98,583,'583 301c0 -76 -44 -160 -116 -225c-64 -58 -135 -87 -207 -87c-100 0 -162 53 -162 140c0 108 83 225 198 281c43 21 85 31 130 31c93 0 157 -57 157 -140zM491 326c0 57 -31 94 -78 94c-49 0 -97 -31 -141 -91c-51 -70 -82 -156 -82 -228c0 -55 35 -91 86 -91 c49 0 92 27 133 82c48 65 82 162 82 234'], + 0xE4B0: [441,11,767,117,650,'650 301c0 -76 -48 -160 -128 -225c-70 -58 -147 -87 -227 -87c-110 0 -178 53 -178 140c0 108 91 225 218 281c47 21 93 31 142 31c103 0 173 -57 173 -140zM549 326c0 57 -34 94 -86 94c-53 0 -107 -31 -155 -91c-56 -70 -90 -156 -90 -228c0 -55 38 -91 95 -91 c53 0 100 27 146 82c52 65 90 162 90 234'], + 0xE4B1: [473,14,692,98,594,'594 229c0 -139 -105 -243 -247 -243c-144 0 -249 103 -249 246c0 136 109 241 249 241c142 0 247 -104 247 -244zM432 223c0 164 -20 220 -84 220c-68 0 -88 -53 -88 -229c0 -146 22 -198 87 -198c63 0 85 53 85 207'], + 0xE4B2: [473,14,779,117,663,'663 229c0 -139 -117 -243 -273 -243c-158 0 -273 103 -273 246c0 136 120 241 273 241c156 0 273 -104 273 -244zM485 223c0 164 -23 220 -94 220c-75 0 -96 -53 -96 -229c0 -146 24 -198 95 -198c70 0 95 53 95 207'], + 0xE4B3: [473,13,689,98,591,'591 322c0 -169 -154 -335 -318 -335c-101 0 -175 63 -175 148c0 168 157 338 320 338c101 0 173 -63 173 -151zM460 386c0 36 -20 58 -52 58c-36 0 -69 -25 -99 -75c-37 -63 -80 -215 -80 -291c0 -39 21 -62 54 -62c39 0 72 30 104 94c37 72 73 209 73 276'], + 0xE4B4: [473,13,776,117,659,'659 322c0 -169 -170 -335 -350 -335c-111 0 -192 63 -192 148c0 168 173 338 352 338c111 0 190 -63 190 -151zM515 386c0 36 -22 58 -57 58c-40 0 -76 -25 -109 -75c-41 -63 -88 -215 -88 -291c0 -39 23 -62 59 -62c44 0 80 30 115 94c40 72 80 209 80 276'], + 0xE4B5: [471,16,799,98,701,'701 382c-29 -7 -68 -12 -115 -16v-149c0 -100 17 -217 17 -217h-109v362h-30c-48 0 -100 3 -147 7v-160c0 -113 2 -225 -103 -225c-80 0 -87 59 -87 123h22c0 -42 37 -62 60 -62c65 0 77 86 77 160v166c-54 5 -97 10 -112 10c-23 0 -54 -15 -54 -57h-22 c0 64 35 126 114 126c52 0 161 -14 273 -14c85 0 162 16 216 35v-89'], + 0xE4B6: [471,16,897,117,780,'780 382c-32 -7 -75 -12 -126 -16v-149c0 -100 18 -217 18 -217h-120v362h-32c-54 0 -110 3 -162 7v-160c0 -113 2 -225 -114 -225c-87 0 -96 59 -96 123h24c0 -42 42 -62 67 -62c71 0 85 86 85 160v166c-60 5 -107 10 -124 10c-25 0 -59 -15 -59 -57h-24 c0 64 39 126 126 126c57 0 176 -14 300 -14c93 0 178 16 237 35v-89'], + 0xE4B7: [452,15,862,97,764,'764 452l-25 -86c-30 -6 -69 -11 -114 -15l-42 -143c-29 -96 -45 -208 -45 -208h-105l103 347h-29c-46 0 -96 3 -140 7l-45 -154c-32 -108 -61 -215 -163 -215c-76 0 -67 56 -48 118h22c-12 -41 18 -60 40 -60c62 0 97 83 118 154l47 159c-51 4 -90 9 -104 9 c-23 0 -56 -14 -68 -54h-22c19 61 69 120 145 120c50 0 151 -13 259 -13c81 0 159 15 216 34'], + 0xE4B8: [452,15,967,116,850,'850 452l-28 -86c-33 -6 -76 -11 -126 -15l-46 -143c-31 -96 -49 -208 -49 -208h-115l112 347h-31c-51 0 -106 3 -154 7l-50 -154c-35 -108 -67 -215 -179 -215c-83 0 -74 56 -53 118h24c-13 -41 20 -60 44 -60c69 0 107 83 130 154l51 159c-55 4 -98 9 -113 9 c-26 0 -62 -14 -75 -54h-25c21 61 77 120 160 120c54 0 166 -13 284 -13c90 0 176 15 239 34'], + 0xE4B9: [481,14,807,98,709,'709 362c-26 -6 -62 -11 -104 -14v-131c0 -100 22 -217 22 -217h-174v342c-54 1 -109 4 -156 9v-142c0 -113 0 -223 -105 -223c-80 0 -87 57 -87 121h24c0 -42 35 -60 58 -60c65 0 77 84 77 158v149c-38 4 -67 7 -79 7c-34 0 -63 -25 -63 -67h-24c0 64 35 166 125 166 c52 0 150 -14 262 -14c85 0 170 16 224 35v-119'], + 0xE4BA: [481,14,905,117,788,'788 362c-27 -6 -67 -11 -113 -14v-131c0 -100 24 -217 24 -217h-191v342c-60 1 -120 4 -172 9v-142c0 -113 0 -223 -116 -223c-87 0 -96 57 -96 121h27c0 -42 38 -60 64 -60c71 0 85 84 85 158v149c-43 4 -74 7 -88 7c-37 0 -69 -25 -69 -67h-26c0 64 39 166 138 166 c57 0 164 -14 288 -14c93 0 186 16 245 35v-119'], + 0xE4BB: [481,14,923,97,825,'825 481l-34 -114c-29 -6 -72 -12 -119 -15l-39 -135c-30 -100 -42 -217 -42 -217h-163l102 347c-54 1 -108 4 -154 9l-43 -147c-33 -113 -66 -223 -171 -223c-79 0 -70 57 -51 121h24c-13 -42 18 -60 41 -60c65 0 101 84 123 158l45 154c-37 4 -65 7 -77 7 c-34 0 -71 -30 -83 -72h-24c18 64 83 166 173 166c52 0 147 -14 259 -14c85 0 174 16 233 35'], + 0xE4BC: [481,14,1033,116,917,'917 481l-38 -114c-31 -6 -79 -12 -131 -15l-43 -135c-33 -100 -46 -217 -46 -217h-179l112 347c-59 1 -118 4 -169 9l-47 -147c-37 -113 -73 -223 -189 -223c-87 0 -76 57 -56 121h27c-15 -42 19 -60 45 -60c71 0 111 84 135 158l50 154c-41 4 -72 7 -85 7 c-37 0 -79 -30 -92 -72h-27c21 64 92 166 192 166c57 0 161 -14 284 -14c93 0 191 16 257 35'], + 0xE4BD: [471,21,1008,98,910,'910 372c-19 -2 -55 -4 -105 -6c29 -40 47 -91 47 -152c0 -67 -33 -235 -220 -235c-33 0 -87 14 -115 70c-26 -55 -80 -70 -113 -70c-187 0 -220 168 -220 235c0 66 20 120 53 161c-38 4 -52 6 -63 6c-23 0 -54 -15 -54 -57h-22c0 64 35 126 114 126 c52 0 157 -14 328 -14c166 0 316 16 370 35v-99zM753 222c0 55 -6 104 -25 142l-209 -2c-78 0 -150 4 -209 8c-21 -39 -27 -90 -27 -148c0 -120 53 -215 121 -215c31 0 98 34 98 101c-11 18 -32 62 -32 104c0 45 8 83 47 83c32 0 47 -37 47 -82s-17 -85 -30 -105 c0 -68 67 -101 98 -101c68 0 121 95 121 215'], + 0xE4BE: [471,21,1127,117,1010,'1010 372l-115 -6c31 -40 51 -91 51 -152c0 -67 -37 -235 -242 -235c-37 0 -96 14 -126 70c-29 -55 -89 -70 -125 -70c-206 0 -242 168 -242 235c0 66 22 120 58 161c-41 4 -57 6 -69 6c-25 0 -59 -15 -59 -57h-24c0 64 39 126 126 126c57 0 171 -14 360 -14 c183 0 347 16 407 35v-99zM837 222c0 55 -6 104 -27 142l-230 -2c-86 0 -166 4 -230 8c-23 -39 -30 -90 -30 -148c0 -120 58 -215 133 -215c34 0 108 34 108 101c-12 18 -35 62 -35 104c0 45 8 83 52 83c35 0 52 -37 52 -82s-20 -85 -34 -105c0 -68 74 -101 108 -101 c75 0 133 95 133 215'], + 0xE4BF: [452,20,1017,98,919,'919 452l-28 -95c-19 -2 -54 -4 -102 -6c16 -38 19 -87 1 -146c-19 -64 -98 -225 -277 -225c-31 0 -79 13 -89 67c-42 -53 -97 -67 -129 -67c-179 0 -164 161 -145 225c18 63 53 115 95 155c-35 3 -47 5 -58 5c-22 0 -56 -14 -68 -54h-21c19 61 69 120 145 120 c50 0 147 -13 312 -13c158 0 306 15 364 34zM715 349l-202 -2c-75 0 -143 4 -198 8c-31 -38 -52 -87 -68 -142c-35 -115 -10 -206 56 -206c29 0 102 32 122 97c-6 17 -13 59 -2 99c13 43 31 80 70 80c30 0 34 -36 22 -79c-13 -43 -42 -81 -59 -100c-20 -66 35 -97 64 -97 c66 0 143 91 178 206c15 53 24 100 17 136'], + 0xE4C0: [452,20,1136,117,1019,'1019 452l-30 -95l-112 -6c18 -38 20 -87 1 -146c-21 -64 -108 -225 -305 -225c-34 0 -87 13 -98 67c-46 -53 -107 -67 -142 -67c-197 0 -180 161 -159 225c20 63 58 115 105 155c-39 3 -52 5 -64 5c-24 0 -62 -14 -75 -54h-23c20 61 76 120 160 120 c54 0 160 -13 342 -13c174 0 338 15 400 34zM796 349l-223 -2c-82 0 -157 4 -218 8c-34 -38 -57 -87 -75 -142c-37 -115 -11 -206 62 -206c33 0 112 32 134 97c-6 17 -14 59 -2 99c14 43 35 80 77 80c33 0 38 -36 24 -79s-46 -81 -65 -100c-22 -66 39 -97 71 -97 c73 0 158 91 195 206c17 53 27 100 20 136'], + 0xE4C1: [481,14,1071,98,973,'973 362c-19 -4 -66 -8 -123 -11c25 -35 41 -77 41 -127c0 -145 -107 -238 -243 -238c-31 0 -76 7 -103 63c-27 -55 -70 -63 -103 -63c-136 0 -243 93 -243 238c0 53 18 98 44 134l-58 3c-34 0 -63 -25 -63 -67h-24c0 64 35 166 125 166c52 0 249 -14 361 -14 c85 0 335 16 389 35v-119zM731 232c0 38 -10 78 -24 113l-144 -3c-48 0 -115 3 -180 7c-13 -36 -23 -78 -23 -117c0 -120 14 -216 82 -216c31 0 84 25 84 92c-10 22 -22 64 -22 85c0 14 16 44 41 44c24 0 41 -30 41 -44c0 -21 -12 -63 -22 -85c0 -68 53 -92 84 -92 c68 0 83 96 83 216'], + 0xE4C2: [481,14,1196,117,1079,'1079 362c-21 -4 -73 -8 -135 -11c27 -35 45 -77 45 -127c0 -145 -117 -238 -267 -238c-34 0 -84 7 -114 63c-29 -55 -76 -63 -112 -63c-151 0 -268 93 -268 238c0 53 19 98 49 134l-65 3c-37 0 -69 -25 -69 -67h-26c0 64 39 166 138 166c57 0 273 -14 397 -14 c93 0 367 16 427 35v-119zM813 232c0 38 -11 78 -26 113l-158 -3c-54 0 -127 3 -199 7c-14 -36 -25 -78 -25 -117c0 -120 16 -216 91 -216c33 0 91 25 91 92c-10 22 -24 64 -24 85c0 14 18 44 45 44s46 -30 46 -44c0 -21 -13 -63 -24 -85c0 -68 58 -92 92 -92 c75 0 91 96 91 216'], + 0xE4C3: [481,14,1104,98,1006,'1006 481l-36 -119c-21 -4 -68 -8 -125 -11c14 -35 18 -77 3 -127c-43 -145 -177 -238 -313 -238c-31 0 -63 7 -74 63c-43 -55 -77 -63 -110 -63c-136 0 -216 93 -173 238c16 53 47 98 84 134l-57 3c-34 0 -71 -25 -83 -67h-24c19 64 84 166 174 166 c52 0 234 -14 346 -14c85 0 328 16 388 35zM706 232c11 38 7 78 -1 113l-138 -3c-49 0 -113 3 -173 7c-29 -36 -57 -78 -69 -117c-36 -120 -33 -216 35 -216c31 0 80 25 100 92c-3 22 -3 64 3 85c4 14 30 44 54 44s32 -30 29 -44c-7 -21 -31 -63 -48 -85 c-19 -68 15 -92 46 -92c68 0 127 96 162 216'], + 0xE4C4: [481,14,1232,117,1115,'1115 481l-39 -119c-23 -4 -75 -8 -138 -11c16 -35 20 -77 4 -127c-47 -145 -195 -238 -345 -238c-34 0 -69 7 -81 63c-47 -55 -85 -63 -121 -63c-150 0 -237 93 -190 238c17 53 51 98 92 134l-63 3c-37 0 -77 -25 -91 -67h-26c20 64 92 166 191 166 c57 0 258 -14 381 -14c93 0 361 16 426 35zM786 232c12 38 7 78 -1 113l-153 -3c-53 0 -123 3 -190 7c-31 -36 -63 -78 -76 -117c-39 -120 -36 -216 39 -216c34 0 88 25 110 92c-4 22 -4 64 4 85c3 14 32 44 59 44c26 0 35 -30 31 -44c-7 -21 -34 -63 -52 -85 c-22 -68 16 -92 50 -92c75 0 140 96 179 216'], + 0xE4C5: [460,218,618,98,520,'520 236c0 -135 -78 -252 -225 -252c-36 0 -78 18 -106 38v-22c0 -98 16 -218 16 -218h-107l1 375c0 93 0 126 11 158c34 87 110 145 198 145c128 0 212 -107 212 -224zM424 219c0 90 -39 213 -129 213c-116 0 -106 -136 -106 -268v-81c29 -50 69 -70 107 -70 c101 0 128 94 128 206'], + 0xE4C6: [460,218,698,117,581,'581 236c0 -135 -85 -252 -248 -252c-40 0 -86 18 -116 38v-22c0 -98 17 -218 17 -218h-117l1 375c0 93 0 126 12 158c38 87 121 145 218 145c140 0 233 -107 233 -224zM475 219c0 90 -42 213 -142 213c-127 0 -116 -136 -116 -268v-81c32 -50 75 -70 118 -70 c111 0 140 94 140 206'], + 0xE4C7: [441,209,739,98,641,'632 226c-39 -129 -147 -241 -289 -241c-34 0 -69 17 -90 36l-6 -21c-28 -94 -47 -209 -47 -209h-102l107 360c26 89 36 120 55 151c57 83 146 139 231 139c122 0 174 -103 141 -215zM533 210c25 86 24 204 -63 204c-110 0 -140 -130 -177 -257l-23 -77 c14 -48 46 -68 82 -68c97 0 150 91 181 198'], + 0xE4C8: [441,209,831,117,714,'704 226c-43 -129 -161 -241 -317 -241c-38 0 -77 17 -100 36l-7 -21c-30 -94 -51 -209 -51 -209h-112l117 360c29 89 40 120 61 151c63 83 161 139 254 139c134 0 191 -103 155 -215zM595 210c28 86 26 204 -69 204c-121 0 -154 -130 -195 -257l-25 -77 c15 -48 50 -68 90 -68c107 0 165 91 199 198'], + 0xE4C9: [473,218,698,98,600,'439 221c0 68 -1 222 -80 222c-89 0 -108 -140 -108 -275v-101c31 -28 66 -53 98 -53c66 0 90 92 90 207zM600 238c0 -208 -115 -252 -252 -252c-32 0 -66 12 -97 28v-16c0 -84 19 -216 19 -216h-172v379c0 266 152 312 275 312c130 0 227 -87 227 -235'], + 0xE4CA: [473,218,785,117,669,'492 221c0 68 -1 222 -88 222c-98 0 -119 -140 -119 -275v-101c34 -28 73 -53 108 -53c72 0 99 92 99 207zM669 238c0 -208 -126 -252 -278 -252c-35 0 -72 12 -106 28v-16c0 -84 21 -216 21 -216h-189v379c0 266 167 312 302 312c143 0 250 -87 250 -235'], + 0xE4CB: [473,218,824,98,725,'557 221c20 68 65 222 -15 222c-89 0 -149 -140 -189 -275l-29 -101c22 -28 50 -53 82 -53c66 0 117 92 151 207zM712 238c-62 -208 -178 -252 -316 -252c-32 0 -63 12 -88 28l-5 -16c-25 -84 -44 -216 -44 -216h-161l111 379c78 266 233 312 357 312 c129 0 189 -87 146 -235'], + 0xE4CC: [473,218,924,117,807,'621 221c22 68 72 222 -15 222c-98 0 -165 -140 -208 -275l-33 -101c24 -28 56 -53 91 -53c72 0 128 92 165 207zM792 238c-68 -208 -196 -252 -347 -252c-35 0 -69 12 -97 28l-6 -16c-27 -84 -49 -216 -49 -216h-176l122 379c86 266 257 312 392 312 c143 0 208 -87 161 -235'], + 0xE4CD: [460,217,627,98,529,'529 237c0 -138 -80 -253 -231 -253c-36 0 -80 18 -109 38c0 -99 16 -107 65 -107c63 0 112 21 159 21c98 0 114 -84 114 -153h-22c0 42 -23 74 -54 74c-46 0 -112 -22 -175 -22c-84 0 -178 204 -178 326c0 59 0 118 12 151c34 89 112 148 203 148 c129 0 216 -103 216 -223zM430 220c0 92 -39 212 -132 212c-117 0 -108 -129 -108 -264v-83c30 -51 71 -72 109 -72c104 0 131 92 131 207'], + 0xE4CE: [460,217,708,117,591,'591 237c0 -138 -88 -253 -254 -253c-40 0 -88 18 -120 38c0 -99 17 -107 72 -107c69 0 123 21 174 21c108 0 126 -84 126 -153h-24c0 42 -26 74 -60 74c-51 0 -123 -22 -192 -22c-93 0 -196 204 -196 326c0 59 0 118 13 151c38 89 124 148 223 148 c143 0 238 -103 238 -223zM482 220c0 92 -43 212 -145 212c-129 0 -119 -129 -119 -264v-83c33 -51 78 -72 120 -72c114 0 144 92 144 207'], + 0xE4CF: [441,208,654,97,555,'546 227c-40 -132 -148 -242 -293 -242c-35 0 -71 17 -93 36c-29 -95 -15 -102 32 -102c59 0 113 20 158 20c94 0 85 -81 65 -147h-21c12 40 -1 71 -31 71c-44 0 -112 -21 -172 -21c-82 0 -114 195 -79 312c17 57 34 113 53 145c59 85 150 142 237 142 c124 0 178 -99 144 -214zM447 211c25 88 22 203 -67 203c-113 0 -140 -124 -178 -253l-23 -80c14 -48 46 -69 83 -69c99 0 152 89 185 199'], + 0xE4D0: [441,208,737,116,620,'610 227c-44 -132 -164 -242 -322 -242c-39 0 -79 17 -103 36c-32 -95 -17 -102 35 -102c65 0 125 20 174 20c103 0 93 -81 72 -147h-23c13 40 -2 71 -34 71c-49 0 -124 -21 -190 -21c-90 0 -125 195 -87 312c19 57 37 113 59 145c64 85 165 142 260 142 c137 0 196 -99 159 -214zM501 211c28 88 24 203 -74 203c-125 0 -154 -124 -196 -253l-26 -80c16 -48 51 -69 92 -69c109 0 167 89 204 199'], + 0xE4D1: [473,217,698,98,600,'439 221c0 68 -1 222 -80 222c-89 0 -108 -140 -108 -275v-101c31 -28 66 -53 98 -53c66 0 90 92 90 207zM600 238c0 -208 -115 -252 -252 -252c-39 0 -83 17 -117 40v-23c0 -50 6 -78 44 -78c63 0 123 21 170 21c97 0 114 -94 114 -163h-24c0 42 -54 44 -85 44 c-46 0 -79 -12 -142 -12c-147 0 -210 123 -210 227v119c0 266 152 312 275 312c130 0 227 -87 227 -235'], + 0xE4D2: [473,217,785,117,669,'492 221c0 68 -1 222 -88 222c-98 0 -119 -140 -119 -275v-101c34 -28 73 -53 108 -53c72 0 99 92 99 207zM669 238c0 -208 -126 -252 -278 -252c-42 0 -90 17 -128 40v-23c0 -50 6 -78 49 -78c69 0 135 21 186 21c108 0 126 -94 126 -163h-27c0 42 -59 44 -93 44 c-51 0 -87 -12 -156 -12c-162 0 -231 123 -231 227v119c0 266 167 312 302 312c143 0 250 -87 250 -235'], + 0xE4D3: [473,217,760,98,662,'494 221c19 68 64 222 -15 222c-89 0 -149 -140 -189 -275l-30 -101c22 -28 51 -53 83 -53c66 0 116 92 151 207zM649 238c-62 -208 -179 -252 -316 -252c-39 0 -77 17 -105 40l-6 -23c-16 -50 -18 -78 21 -78c62 0 130 21 176 21c98 0 86 -94 66 -163h-24 c12 42 -40 49 -71 49c-46 0 -82 -12 -145 -12c-147 0 -165 118 -134 222l35 119c78 266 233 312 356 312c130 0 190 -87 147 -235'], + 0xE4D4: [473,217,855,116,738,'552 221c22 68 71 222 -16 222c-98 0 -164 -140 -208 -275l-33 -101c25 -28 56 -53 91 -53c73 0 128 92 166 207zM723 238c-68 -208 -196 -252 -348 -252c-42 0 -84 17 -115 40l-7 -23c-17 -50 -19 -78 23 -78c69 0 143 21 194 21c107 0 94 -94 72 -163h-26 c13 42 -44 49 -78 49c-51 0 -91 -12 -160 -12c-162 0 -181 118 -147 222l39 119c85 266 256 312 392 312c142 0 208 -87 161 -235'], + 0xE4D5: [471,16,677,98,579,'579 385c-48 -7 -78 -9 -138 -10c61 -35 97 -93 97 -176c0 -120 -90 -215 -220 -215s-220 95 -220 215c0 157 91 237 243 237c84 0 184 16 238 35v-86zM440 216c0 90 -32 136 -59 156h-61c-109 0 -124 -74 -124 -156c0 -92 31 -204 122 -204c103 0 122 112 122 204'], + 0xE4D6: [471,16,762,117,646,'646 385c-52 -7 -86 -9 -152 -10c67 -35 107 -93 107 -176c0 -120 -99 -215 -242 -215s-242 95 -242 215c0 157 100 237 267 237c92 0 202 16 262 35v-86zM493 216c0 90 -35 136 -65 156h-67c-120 0 -137 -74 -137 -156c0 -92 34 -204 135 -204c114 0 134 112 134 204'], + 0xE4D7: [452,15,743,98,645,'645 452l-24 -83c-48 -7 -78 -9 -135 -9c47 -34 66 -90 43 -169c-34 -115 -146 -206 -272 -206c-124 0 -184 91 -149 206c44 150 154 227 300 227c79 0 180 15 237 34zM440 207c26 86 7 130 -12 150h-59c-104 0 -139 -71 -164 -150c-25 -88 -27 -195 60 -195 c99 0 149 107 175 195'], + 0xE4D8: [452,15,836,116,719,'719 452l-27 -83c-53 -7 -86 -9 -148 -9c52 -34 72 -90 47 -169c-38 -115 -161 -206 -299 -206c-137 0 -202 91 -165 206c49 150 170 227 331 227c87 0 198 15 261 34zM493 207c29 86 8 130 -14 150h-64c-115 0 -153 -71 -180 -150c-28 -88 -30 -195 65 -195 c109 0 165 107 193 195'], + 0xE4D9: [471,14,761,98,663,'432 213c0 91 -2 165 -20 199c-26 9 -49 16 -69 16c-62 0 -83 -48 -83 -224c0 -146 22 -188 87 -188c63 0 85 43 85 197zM663 350c-46 1 -89 10 -125 20c34 -33 56 -81 56 -151c0 -139 -105 -233 -247 -233c-144 0 -249 93 -249 236c0 136 79 230 261 230 c83 0 251 0 304 19v-121'], + 0xE4DA: [471,14,856,117,739,'485 213c0 91 -3 165 -23 199c-28 9 -54 16 -75 16c-69 0 -92 -48 -92 -224c0 -146 24 -188 95 -188c70 0 95 43 95 197zM739 350c-51 1 -98 10 -138 20c37 -33 62 -81 62 -151c0 -139 -117 -233 -273 -233c-158 0 -273 93 -273 236c0 136 87 230 287 230 c92 0 275 0 335 19v-121'], + 0xE4DB: [471,14,836,98,738,'469 412c-22 9 -43 16 -63 16c-62 0 -98 -48 -149 -224c-43 -146 -34 -188 30 -188s99 43 145 197c26 91 46 165 37 199zM738 471l-35 -121c-46 1 -87 10 -120 20c25 -33 21 -81 1 -151c-41 -139 -163 -233 -305 -233c-144 0 -210 93 -169 236c41 136 137 230 318 230 c84 0 251 0 310 19'], + 0xE4DC: [471,14,938,116,821,'525 412c-24 9 -47 16 -69 16c-69 0 -108 -48 -165 -224c-47 -146 -37 -188 34 -188c70 0 109 43 159 197c29 91 51 165 41 199zM821 471l-38 -121c-51 1 -96 10 -132 20c26 -33 23 -81 1 -151c-46 -139 -180 -233 -336 -233c-159 0 -232 93 -186 236 c45 136 150 230 350 230c92 0 276 0 341 19'], + 0xE4DD: [460,210,620,98,522,'522 -54c0 -81 -61 -156 -175 -156c-34 0 -73 5 -73 41c0 21 18 38 36 38c21 2 44 -12 71 -12c54 0 110 35 110 67c0 42 -35 63 -68 76c-28 11 -106 -3 -165 -3c-110 0 -160 74 -160 173c0 110 63 290 339 290c38 0 63 -29 63 -55c0 -22 -17 -47 -62 -47 c-43 0 -88 27 -109 27c-123 0 -198 -82 -198 -215c0 -134 210 -71 237 -71c101 0 154 -85 154 -153'], + 0xE4DE: [460,210,699,117,583,'583 -54c0 -81 -67 -156 -193 -156c-37 0 -80 5 -80 41c0 21 20 38 40 38c23 2 49 -12 78 -12c59 0 121 35 121 67c0 42 -39 63 -75 76c-30 11 -116 -3 -182 -3c-121 0 -175 74 -175 173c0 110 69 290 372 290c43 0 69 -29 69 -55c0 -22 -18 -47 -67 -47 c-47 0 -97 27 -120 27c-136 0 -218 -82 -218 -215c0 -134 231 -71 260 -71c112 0 170 -85 170 -153'], + 0xE4DF: [441,201,660,98,561,'560 388c-7 -21 -29 -45 -73 -45c-41 0 -76 26 -97 26c-117 0 -212 -79 -249 -206c-39 -128 180 -68 205 -68c97 0 124 -82 105 -147c-23 -77 -101 -149 -211 -149c-33 0 -69 4 -58 39c6 20 27 36 44 36c21 2 40 -11 65 -11c52 0 115 33 124 64c12 40 -15 61 -43 73 c-23 11 -103 -3 -160 -3c-105 0 -132 71 -103 166c31 105 142 278 406 278c37 0 52 -28 45 -53'], + 0xE4E0: [441,201,744,116,626,'625 388c-8 -21 -32 -45 -80 -45c-45 0 -84 26 -107 26c-129 0 -233 -79 -274 -206c-43 -128 198 -68 226 -68c106 0 136 -82 115 -147c-25 -77 -111 -149 -232 -149c-37 0 -75 4 -63 39c6 20 29 36 48 36c23 2 44 -11 71 -11c57 0 126 33 136 64c13 40 -16 61 -47 73 c-26 11 -113 -3 -176 -3c-116 0 -145 71 -113 166c34 105 156 278 446 278c41 0 58 -28 50 -53'], + 0xE4E1: [473,215,620,98,522,'522 -54c0 -81 -61 -161 -175 -161c-34 0 -77 15 -77 51c0 21 14 43 40 43c41 0 44 -22 71 -22c54 0 108 25 108 67s-36 53 -69 66c-27 11 -103 -3 -162 -3c-110 0 -160 88 -160 201c0 110 63 285 339 285c38 0 74 -29 74 -55c0 -38 -28 -57 -73 -57 c-52 0 -68 37 -109 37c-123 0 -196 -77 -196 -210c0 -78 197 -42 224 -42c151 0 165 -132 165 -200'], + 0xE4E2: [473,215,699,117,583,'583 -54c0 -81 -67 -161 -193 -161c-37 0 -84 15 -84 51c0 21 15 43 44 43c45 0 49 -22 78 -22c59 0 118 25 118 67s-38 53 -75 66c-30 11 -113 -3 -179 -3c-121 0 -175 88 -175 201c0 110 69 285 372 285c43 0 82 -29 82 -55c0 -38 -31 -57 -80 -57 c-57 0 -75 37 -120 37c-136 0 -215 -77 -215 -210c0 -78 216 -42 245 -42c167 0 182 -132 182 -200'], + 0xE4E3: [473,215,691,97,593,'592 418c-11 -38 -44 -57 -89 -57c-52 0 -57 37 -98 37c-123 0 -219 -77 -259 -210c-23 -78 185 -42 212 -42c151 0 126 -132 106 -200c-24 -81 -109 -161 -223 -161c-34 0 -73 15 -62 51c7 21 28 43 54 43c41 0 38 -22 64 -22c54 0 115 25 128 67c12 42 -17 63 -46 76 c-25 11 -105 -3 -164 -3c-110 0 -137 78 -104 191c33 110 148 285 424 285c38 0 65 -29 57 -55'], + 0xE4E4: [473,215,778,116,661,'660 418c-12 -38 -48 -57 -98 -57c-57 0 -63 37 -108 37c-135 0 -240 -77 -284 -210c-25 -78 203 -42 232 -42c167 0 140 -132 118 -200c-27 -81 -120 -161 -246 -161c-37 0 -80 15 -68 51c8 21 31 43 60 43c44 0 41 -22 70 -22c59 0 126 25 140 67s-18 63 -51 76 c-26 11 -115 -3 -180 -3c-121 0 -150 78 -114 191c37 110 163 285 466 285c43 0 72 -29 63 -55'], + 0xE4E5: [471,16,711,98,613,'613 372c-39 -5 -117 -8 -189 -10v-147c0 -72 -5 -170 66 -170c38 0 60 20 60 62h22c0 -64 -19 -123 -98 -123c-123 0 -143 112 -143 225v155c-69 4 -133 17 -157 17c-23 0 -54 -15 -54 -57h-22c0 64 35 126 114 126c52 0 110 -14 185 -14c78 0 162 16 216 35v-99'], + 0xE4E6: [471,16,800,117,683,'683 372c-42 -5 -128 -8 -208 -10v-147c0 -72 -5 -170 73 -170c42 0 66 20 66 62h24c0 -64 -20 -123 -107 -123c-136 0 -158 112 -158 225v155c-76 4 -146 17 -173 17c-25 0 -59 -15 -59 -57h-24c0 64 39 126 126 126c57 0 121 -14 203 -14c86 0 178 16 237 35v-99'], + 0xE4E7: [452,15,732,98,634,'634 452l-28 -95c-38 -5 -113 -8 -185 -10l-41 -141c-20 -69 -52 -163 16 -163c36 0 63 19 75 60h22c-19 -62 -54 -118 -130 -118c-118 0 -104 107 -72 215l44 149c-66 4 -124 16 -147 16s-56 -14 -68 -54h-22c19 61 69 120 145 120c50 0 103 -13 174 -13 c75 0 160 15 217 34'], + 0xE4E8: [452,15,823,117,706,'706 452l-30 -95c-43 -5 -125 -8 -203 -10l-46 -141c-22 -69 -57 -163 18 -163c40 0 69 19 82 60h24c-20 -62 -59 -118 -143 -118c-129 0 -115 107 -79 215l48 149c-73 4 -136 16 -161 16s-62 -14 -75 -54h-24c20 61 76 120 160 120c54 0 112 -13 191 -13 c82 0 175 15 238 34'], + 0xE4E9: [481,16,741,98,643,'643 362c-49 -11 -105 -18 -186 -20v-147c0 -72 -5 -150 66 -150c38 0 55 22 60 62h22c0 -53 -19 -123 -120 -123c-123 0 -180 64 -180 205v159c-58 6 -102 13 -120 13c-34 0 -63 -25 -63 -67h-24c0 64 35 166 125 166c52 0 117 -14 229 -14c85 0 137 16 191 35v-119'], + 0xE4EA: [481,16,833,117,716,'716 362c-53 -11 -115 -18 -205 -20v-147c0 -72 -5 -150 73 -150c42 0 60 22 66 62h25c0 -53 -21 -123 -132 -123c-136 0 -199 64 -199 205v159c-64 6 -112 13 -132 13c-37 0 -69 -25 -69 -67h-26c0 64 39 166 138 166c57 0 128 -14 251 -14c94 0 150 16 210 35v-119'], + 0xE4EB: [481,16,796,98,698,'698 481l-35 -114c-51 -11 -112 -19 -194 -20l-45 -152c-21 -72 -45 -150 25 -150c38 0 62 22 79 62h22c-16 -53 -55 -123 -156 -123c-123 0 -154 64 -112 205l48 164c-60 5 -105 13 -124 13c-34 0 -72 -30 -84 -72h-24c19 64 84 166 174 166c52 0 113 -14 225 -14 c85 0 141 16 201 35'], + 0xE4EC: [481,16,893,117,776,'776 481l-37 -114c-57 -11 -124 -19 -214 -20l-50 -152c-23 -72 -50 -150 28 -150c42 0 68 22 87 62h24c-18 -53 -60 -123 -172 -123c-135 0 -169 64 -123 205l53 164c-66 5 -116 13 -137 13c-37 0 -78 -30 -92 -72h-26c20 64 92 166 191 166c57 0 125 -14 248 -14 c93 0 155 16 220 35'], + 0xE4ED: [460,16,666,98,568,'568 398c0 -27 -10 -78 -10 -131c0 -129 -9 -283 -188 -283c-128 0 -203 95 -203 205c0 71 31 146 31 192c0 12 -10 19 -27 19c-23 0 -51 -12 -51 -62h-22c0 75 42 122 131 122c26 0 65 -22 65 -64c0 -46 -28 -146 -28 -207c0 -77 18 -177 104 -177 c120 0 148 107 148 259c0 24 -10 42 -21 58c-15 22 -34 47 -34 71c0 23 6 60 53 60c34 0 52 -29 52 -62'], + 0xE4EE: [460,16,750,117,633,'633 398c0 -27 -10 -78 -10 -131c0 -129 -10 -283 -207 -283c-141 0 -223 95 -223 205c0 71 34 146 34 192c0 12 -11 19 -30 19c-26 0 -56 -12 -56 -62h-24c0 75 46 122 144 122c29 0 71 -22 71 -64c0 -46 -30 -146 -30 -207c0 -77 19 -177 114 -177 c132 0 163 107 163 259c0 24 -11 42 -23 58c-17 22 -37 47 -37 71c0 23 6 60 58 60c37 0 56 -29 56 -62'], + 0xE4EF: [441,15,667,98,569,'566 382c-8 -26 -32 -75 -47 -126c-37 -124 -89 -271 -260 -271c-122 0 -168 91 -137 196c21 68 71 140 84 184c3 12 -3 18 -20 18c-23 0 -53 -11 -67 -59h-21c21 72 75 117 160 117c25 0 57 -21 45 -61c-14 -44 -69 -140 -86 -199c-21 -74 -33 -169 49 -169 c116 0 173 102 216 248c7 23 2 40 -4 55c-8 22 -19 45 -11 68c6 23 20 58 67 58c32 0 41 -28 32 -59'], + 0xE4F0: [441,15,752,117,635,'631 382c-8 -26 -35 -75 -51 -126c-41 -124 -98 -271 -287 -271c-134 0 -183 91 -150 196c23 68 78 140 92 184c4 12 -3 18 -21 18c-26 0 -58 -11 -74 -59h-23c23 72 82 117 175 117c28 0 63 -21 50 -61c-15 -44 -75 -140 -95 -199c-23 -74 -36 -169 55 -169 c127 0 190 102 237 248c7 23 3 40 -5 55c-8 22 -20 45 -12 68c7 23 23 58 74 58c35 0 46 -28 35 -59'], + 0xE4F1: [473,14,724,98,626,'626 411c0 -27 -11 -102 -11 -156c0 -119 -25 -269 -176 -269c-128 0 -233 37 -233 203c0 71 21 111 21 167s-15 63 -46 63c-24 0 -54 -16 -59 -65h-24c0 71 48 119 125 119c85 0 157 -31 157 -121c0 -46 -22 -102 -22 -163c0 -77 -5 -173 81 -173c89 0 136 91 136 243 c0 75 -64 102 -64 149c0 31 11 65 58 65c34 0 57 -29 57 -62'], + 0xE4F2: [473,14,814,117,698,'698 411c0 -27 -12 -102 -12 -156c0 -119 -28 -269 -194 -269c-140 0 -257 37 -257 203c0 71 23 111 23 167s-15 63 -50 63c-26 0 -60 -16 -65 -65h-26c0 71 53 119 138 119c93 0 172 -31 172 -121c0 -46 -25 -102 -25 -163c0 -77 -4 -173 90 -173c98 0 150 91 150 243 c0 75 -71 102 -71 149c0 31 12 65 64 65c37 0 63 -29 63 -62'], + 0xE4F3: [473,14,733,98,634,'632 411c-8 -27 -41 -102 -58 -156c-35 -119 -104 -269 -255 -269c-127 0 -211 37 -162 203c21 71 53 111 70 167c16 56 4 63 -28 63c-23 0 -58 -16 -77 -65h-24c21 71 84 119 161 119c84 0 135 -31 109 -121c-14 -46 -52 -102 -70 -163c-23 -77 -56 -173 30 -173 c89 0 164 91 208 243c22 75 -34 102 -21 149c10 31 31 65 78 65c34 0 48 -29 39 -62'], + 0xE4F4: [473,14,824,117,707,'704 411c-9 -27 -45 -102 -63 -156c-39 -119 -115 -269 -281 -269c-140 0 -232 37 -178 203c23 71 58 111 76 167c19 56 5 63 -30 63c-25 0 -64 -16 -85 -65h-26c23 71 92 119 176 119c94 0 149 -31 120 -121c-14 -46 -57 -102 -76 -163c-25 -77 -62 -173 33 -173 c98 0 180 91 228 243c25 75 -37 102 -23 149c11 31 34 65 86 65c38 0 54 -29 43 -62'], + 0xE4F5: [460,218,770,98,672,'572 217c0 75 -20 215 -104 215c-31 0 -39 -54 -39 -138v-281c88 25 143 119 143 204zM672 224c0 -119 -76 -227 -243 -243v-199h-92v199c-196 20 -239 164 -239 239c0 112 85 209 182 239l13 -24c-66 -39 -96 -124 -96 -207c0 -104 45 -194 140 -216v279 c0 98 45 169 131 169c127 0 204 -138 204 -236'], + 0xE4F6: [460,218,865,117,748,'638 217c0 75 -21 215 -115 215c-34 0 -42 -54 -42 -138v-281c97 25 157 119 157 204zM748 224c0 -119 -83 -227 -267 -243v-199h-102v199c-215 20 -262 164 -262 239c0 112 93 209 199 239l15 -24c-73 -39 -105 -124 -105 -207c0 -104 49 -194 153 -216v279 c0 98 50 169 144 169c141 0 225 -138 225 -236'], + 0xE4F7: [441,209,766,98,667,'561 208c21 72 42 206 -40 206c-29 0 -52 -52 -75 -132l-81 -270c93 24 172 115 196 196zM659 215c-34 -114 -138 -218 -303 -233l-56 -191h-88l56 191c-182 19 -182 157 -160 229c31 107 138 200 241 229l5 -23c-73 -37 -126 -119 -149 -198c-30 -100 -12 -186 72 -207 l79 267c28 94 91 162 173 162c122 0 157 -132 130 -226'], + 0xE4F8: [441,209,860,116,743,'626 208c23 72 46 206 -43 206c-33 0 -58 -52 -84 -132l-88 -270c101 24 189 115 215 196zM734 215c-38 -114 -151 -218 -333 -233l-62 -191h-96l61 191c-201 19 -201 157 -176 229c34 107 152 200 265 229l6 -23c-81 -37 -139 -119 -165 -198c-33 -100 -13 -186 80 -207 l87 267c30 94 99 162 190 162c134 0 173 -132 143 -226'], + 0xE4F9: [476,218,913,98,815,'815 234c0 -160 -127 -230 -287 -246v-206h-152v207c-182 19 -278 111 -278 241c0 158 163 240 246 246l14 -24c-75 -21 -99 -87 -99 -214c0 -114 45 -185 117 -213v266c0 98 66 182 196 182c128 0 243 -84 243 -239zM655 217c0 75 2 226 -83 226c-31 0 -44 -65 -44 -149 v-267c69 27 127 95 127 190'], + 0xE4FA: [476,218,1023,117,906,'906 234c0 -160 -141 -230 -316 -246v-206h-167v207c-201 19 -306 111 -306 241c0 158 179 240 271 246l14 -24c-82 -21 -109 -87 -109 -214c0 -114 50 -185 130 -213v266c0 98 73 182 215 182c141 0 268 -84 268 -239zM729 217c0 75 2 226 -91 226 c-34 0 -48 -65 -48 -149v-267c76 27 139 95 139 190'], + 0xE4FB: [476,218,905,97,807,'795 234c-48 -160 -185 -230 -349 -246l-60 -206h-141l60 207c-177 19 -234 111 -196 241c47 158 223 240 308 246l6 -24c-81 -21 -130 -87 -167 -214c-34 -114 -5 -185 60 -213l78 266c29 98 109 182 239 182c128 0 207 -84 162 -239zM645 217c22 75 64 226 -21 226 c-31 0 -64 -65 -88 -149l-79 -267c77 27 161 95 188 190'], + 0xE4FC: [476,218,1014,116,897,'883 234c-52 -160 -203 -230 -383 -246l-67 -206h-155l67 207c-195 19 -258 111 -216 241c51 158 245 240 339 246l6 -24c-89 -21 -143 -87 -184 -214c-37 -114 -5 -185 67 -213l86 266c31 98 120 182 262 182c141 0 228 -84 178 -239zM719 217c24 75 70 226 -23 226 c-34 0 -71 -65 -97 -149l-87 -267c84 27 176 95 207 190'], + 0xE4FD: [657,217,792,98,694,'694 223c0 -127 -99 -221 -253 -237v-203h-92v203c-155 14 -251 102 -251 237c0 121 96 220 251 237v197h92v-197c154 -16 253 -109 253 -237zM593 223c0 112 -57 187 -152 206v-412c95 17 152 88 152 206zM349 17v412c-96 -17 -150 -93 -150 -206 c0 -118 54 -190 150 -206'], + 0xE4FE: [657,217,889,117,773,'773 223c0 -127 -109 -221 -279 -237v-203h-101v203c-171 14 -276 102 -276 237c0 121 105 220 276 237v197h101v-197c170 -16 279 -109 279 -237zM661 223c0 112 -63 187 -167 206v-412c104 17 167 88 167 206zM393 17v412c-106 -17 -165 -93 -165 -206 c0 -118 59 -190 165 -206'], + 0xE4FF: [630,208,788,97,689,'680 214c-35 -122 -156 -212 -309 -227l-58 -195h-88l58 195c-145 13 -212 97 -175 227c34 116 155 211 308 227l56 189h88l-56 -189c144 -15 212 -104 176 -227zM583 214c32 107 -2 179 -88 197l-116 -395c97 17 171 85 204 198zM407 411c-96 -16 -169 -89 -201 -197 c-33 -113 -2 -182 85 -198'], + 0xE500: [630,208,885,116,767,'757 214c-39 -122 -172 -212 -340 -227l-64 -195h-97l64 195c-159 13 -233 97 -192 227c38 116 171 211 339 227l62 189h96l-61 -189c158 -15 233 -104 193 -227zM651 214c35 107 -3 179 -97 197l-128 -395c106 17 188 85 225 198zM457 411c-106 -16 -186 -89 -221 -197 c-37 -113 -3 -182 93 -198'], + 0xE501: [677,218,935,98,837,'837 229c0 -159 -155 -223 -293 -239v-208h-152v207c-139 16 -294 79 -294 240c0 183 158 231 294 241v207h152v-207c135 -11 293 -58 293 -241zM676 230c0 128 -54 185 -132 205v-416c78 10 132 51 132 211zM392 19v416c-78 -20 -132 -77 -132 -205 c0 -160 54 -201 132 -211'], + 0xE502: [677,218,1047,117,930,'930 229c0 -159 -171 -223 -323 -239v-208h-167v207c-153 16 -323 79 -323 240c0 183 174 231 323 241v207h167v-207c149 -11 323 -58 323 -241zM752 230c0 128 -59 185 -145 205v-416c86 10 145 51 145 211zM440 19v416c-86 -20 -145 -77 -145 -205 c0 -160 59 -201 145 -211'], + 0xE503: [677,218,925,97,826,'814 229c-46 -159 -209 -223 -353 -239l-60 -208h-141l60 207c-134 16 -259 79 -212 240c54 183 216 231 354 241l61 207h141l-61 -207c132 -11 265 -58 211 -241zM670 230c38 128 -5 185 -77 205l-123 -416c81 10 153 51 200 211zM452 435c-84 -20 -160 -77 -198 -205 c-47 -160 0 -201 75 -211'], + 0xE504: [677,218,1035,116,918,'905 229c-51 -159 -230 -223 -389 -239l-66 -208h-155l67 207c-148 16 -286 79 -234 240c59 183 237 231 390 241l66 207h155l-66 -207c145 -11 291 -58 232 -241zM746 230c41 128 -6 185 -84 205l-136 -416c90 10 168 51 220 211zM507 435c-93 -20 -177 -77 -218 -205 c-52 -160 0 -201 82 -211'], + 0xE505: [460,236,753,98,655,'655 -114c0 -64 -31 -122 -110 -122c-78 0 -106 77 -133 186l-27 103l-179 -270h-108l257 390l-23 90c-25 102 -58 137 -127 137c-37 0 -63 -20 -63 -62h-22c0 64 31 122 110 122c78 0 106 -82 133 -191l16 -60l155 235h111l-236 -355l33 -133c26 -102 59 -132 128 -132 c36 0 63 20 63 62h22'], + 0xE506: [460,236,846,117,729,'729 -114c0 -64 -34 -122 -121 -122c-86 0 -116 77 -146 186l-29 103l-198 -270h-118l283 390l-25 90c-28 102 -65 137 -141 137c-40 0 -69 -20 -69 -62h-24c0 64 34 122 121 122c86 0 116 -82 146 -191l17 -60l171 235h122l-259 -355l37 -133c27 -102 64 -132 140 -132 c40 0 69 20 69 62h24'], + 0xE507: [441,226,907,98,809,'809 426l-326 -341l-5 -127c-6 -98 18 -127 84 -127c35 0 66 19 78 60h21c-18 -62 -65 -117 -141 -117c-74 0 -79 74 -74 178l4 99l-249 -259h-103l356 374l5 86c4 98 -18 131 -84 131c-35 0 -66 -19 -78 -59h-21c18 61 64 117 140 117c75 0 78 -79 74 -183l-3 -58 l216 226h106'], + 0xE508: [441,226,1015,117,898,'898 426l-358 -341l-6 -127c-6 -98 21 -127 93 -127c39 0 73 19 86 60h23c-20 -62 -71 -117 -155 -117c-82 0 -87 74 -82 178l5 99l-273 -259h-114l392 374l5 86c5 98 -20 131 -92 131c-39 0 -73 -19 -86 -59h-23c19 61 70 117 153 117s86 -79 82 -183l-3 -58l237 226 h116'], + 0xE509: [473,232,812,98,714,'714 -70c0 -64 -31 -162 -110 -162c-77 0 -118 33 -155 182l-20 80l-156 -248h-175l279 448l-7 33c-17 67 -67 120 -145 120c-30 0 -81 -30 -81 -72h-24c0 64 31 162 110 162c76 0 129 -41 172 -203l120 191h177l-246 -392l29 -113c18 -71 60 -98 128 -98 c27 0 80 30 80 72h24'], + 0xE50A: [473,232,911,117,794,'794 -70c0 -64 -33 -162 -121 -162c-84 0 -129 33 -170 182l-22 80l-172 -248h-192l307 448l-8 33c-18 67 -74 120 -160 120c-33 0 -88 -30 -88 -72h-27c0 64 34 162 121 162c83 0 142 -41 189 -203l132 191h194l-269 -392l31 -113c19 -71 67 -98 140 -98 c31 0 89 30 89 72h26'], + 0xE50B: [473,232,985,98,887,'887 461l-354 -384l-6 -121c-3 -71 32 -98 99 -98c28 0 89 30 101 72h24c-18 -64 -78 -162 -157 -162c-77 0 -108 33 -101 182l3 88l-235 -256h-163l406 442l1 39c3 67 -31 120 -109 120c-30 0 -89 -30 -102 -72h-24c18 64 79 162 158 162c76 0 117 -42 111 -210l183 198 h165'], + 0xE50C: [473,232,1101,117,984,'984 461l-389 -384l-6 -121c-4 -71 35 -98 109 -98c30 0 98 30 111 72h27c-21 -64 -86 -162 -173 -162c-85 0 -119 33 -112 182l4 88l-259 -256h-179l446 442l2 39c3 67 -34 120 -120 120c-33 0 -98 -30 -113 -72h-26c20 64 87 162 174 162c83 0 128 -42 122 -210 l201 198h181'], + 0xE50D: [460,218,878,98,780,'780 432c-55 -16 -65 -70 -65 -134c0 -204 -36 -298 -230 -311v-205h-92v205c-194 13 -230 107 -230 311c0 64 -10 118 -65 134v28c120 -25 172 -106 172 -266c0 -90 48 -156 123 -175v425h92v-425c75 19 123 85 123 175c0 160 52 241 172 266v-28'], + 0xE50E: [460,218,984,117,867,'867 432c-60 -16 -71 -70 -71 -134c0 -204 -40 -298 -253 -311v-205h-102v205c-213 13 -253 107 -253 311c0 64 -11 118 -71 134v28c132 -25 189 -106 189 -266c0 -90 53 -156 135 -175v425h102v-425c82 19 135 85 135 175c0 160 57 241 189 266v-28'], + 0xE50F: [441,209,865,97,767,'767 441l-7 -27c-58 -15 -83 -67 -101 -128c-58 -196 -119 -286 -308 -298l-58 -197h-89l58 197c-182 12 -190 102 -132 298c18 61 23 113 -25 128l8 27c109 -24 135 -102 90 -255c-25 -86 2 -150 68 -168l120 408h89l-120 -408c77 18 142 82 167 168 c46 153 118 231 240 255'], + 0xE510: [441,209,970,116,853,'853 441l-9 -27c-62 -15 -90 -67 -110 -128c-64 -196 -132 -286 -338 -298l-65 -197h-98l65 197c-201 12 -210 102 -146 298c20 61 26 113 -27 128l8 27c120 -24 149 -102 99 -255c-28 -86 3 -150 75 -168l132 408h98l-132 -408c85 18 156 82 184 168 c50 153 130 231 264 255'], + 0xE511: [473,218,988,98,890,'890 443c-55 -16 -54 -78 -54 -142c0 -197 -57 -299 -266 -318v-201h-152v201c-209 19 -266 121 -266 318c0 64 1 126 -54 142v30c120 -25 215 -104 215 -236c0 -85 22 -179 105 -214v438h152v-437c84 34 106 128 106 213c0 132 94 211 214 236v-30'], + 0xE512: [473,218,1105,117,988,'988 443c-60 -16 -59 -78 -59 -142c0 -197 -63 -299 -293 -318v-201h-167v201c-230 19 -293 121 -293 318c0 64 1 126 -59 142v30c132 -25 236 -104 236 -236c0 -85 24 -179 116 -214v438h167v-437c92 34 116 128 116 213c0 132 104 211 236 236v-30'], + 0xE513: [473,218,981,97,883,'883 473l-9 -30c-60 -16 -77 -78 -95 -142c-59 -197 -135 -299 -350 -318l-59 -201h-140l58 201c-202 19 -219 121 -161 318c19 64 38 126 -12 142l9 30c112 -25 167 -104 129 -236c-26 -85 -26 -179 47 -214l130 438h141l-130 -437c94 34 149 128 175 213 c38 132 139 211 267 236'], + 0xE514: [473,218,1097,116,980,'980 473l-9 -30c-67 -16 -85 -78 -106 -142c-64 -197 -147 -299 -384 -318l-64 -201h-155l64 201c-223 19 -241 121 -177 318c21 64 41 126 -13 142l9 30c124 -25 184 -104 142 -236c-28 -85 -28 -179 52 -214l143 438h155l-143 -437c104 34 165 128 192 213 c43 132 154 211 294 236'], + 0xE515: [463,16,864,98,766,'766 217c0 -67 -33 -233 -220 -233c-33 0 -87 9 -115 65c-26 -55 -80 -65 -113 -65c-187 0 -220 166 -220 233c0 126 74 216 171 246l13 -24c-66 -39 -85 -119 -85 -214c0 -120 53 -213 121 -213c31 0 98 29 98 96c-11 18 -32 62 -32 104c0 45 8 83 47 83 c32 0 48 -37 48 -82s-18 -85 -31 -105c0 -68 67 -96 98 -96c68 0 121 93 121 213c0 95 -19 175 -85 214l13 24c97 -30 171 -120 171 -246'], + 0xE516: [463,16,968,117,851,'851 217c0 -67 -36 -233 -242 -233c-36 0 -95 9 -126 65c-29 -55 -88 -65 -124 -65c-206 0 -242 166 -242 233c0 126 81 216 187 246l15 -24c-73 -39 -93 -119 -93 -214c0 -120 58 -213 133 -213c34 0 107 29 107 96c-12 18 -35 62 -35 104c0 45 9 83 52 83 c36 0 52 -37 52 -82s-19 -85 -33 -105c0 -68 73 -96 107 -96c75 0 133 93 133 213c0 95 -20 175 -93 214l15 24c106 -30 187 -120 187 -246'], + 0xE517: [444,15,859,97,760,'749 208c-18 -64 -98 -223 -277 -223c-32 0 -81 8 -91 62c-42 -53 -96 -62 -128 -62c-179 0 -163 159 -144 223c35 121 131 207 232 236l7 -23c-75 -38 -116 -114 -142 -205c-34 -115 -10 -204 55 -204c30 0 102 27 122 92c-7 17 -13 59 -2 99c13 43 32 80 69 80 c31 0 34 -36 22 -79c-13 -43 -41 -81 -58 -100c-20 -66 36 -92 66 -92c65 0 142 89 176 204c26 91 32 167 -20 205l19 23c83 -29 129 -115 94 -236'], + 0xE518: [444,15,963,116,846,'833 208c-20 -64 -108 -223 -305 -223c-35 0 -89 8 -100 62c-46 -53 -105 -62 -141 -62c-197 0 -179 159 -158 223c39 121 144 207 255 236l7 -23c-82 -38 -127 -114 -156 -205c-37 -115 -10 -204 61 -204c33 0 112 27 134 92c-7 17 -14 59 -2 99c14 43 35 80 76 80 c34 0 38 -36 24 -79s-45 -81 -64 -100c-22 -66 40 -92 73 -92c71 0 156 89 193 204c29 91 35 167 -21 205l20 23c92 -29 143 -115 104 -236'], + 0xE519: [475,14,888,98,790,'790 224c0 -145 -107 -238 -243 -238c-31 0 -76 7 -104 63c-26 -55 -69 -63 -102 -63c-136 0 -243 93 -243 238c0 154 120 235 221 251l13 -24c-37 -19 -73 -124 -73 -219c0 -120 14 -216 82 -216c31 0 84 25 84 92c-10 22 -22 64 -22 85c0 14 16 44 40 44 c25 0 42 -30 42 -44c0 -21 -12 -63 -22 -85c0 -68 53 -92 84 -92c68 0 82 96 82 216c0 95 -36 200 -73 219l13 24c101 -16 221 -97 221 -251'], + 0xE51A: [475,14,995,117,878,'878 224c0 -145 -117 -238 -268 -238c-33 0 -83 7 -113 63c-29 -55 -76 -63 -113 -63c-150 0 -267 93 -267 238c0 154 132 235 243 251l15 -24c-42 -19 -82 -124 -82 -219c0 -120 16 -216 91 -216c34 0 92 25 92 92c-11 22 -24 64 -24 85c0 14 18 44 45 44 c26 0 46 -30 46 -44c0 -21 -14 -63 -24 -85c0 -68 58 -92 91 -92c76 0 91 96 91 216c0 95 -40 200 -81 219l15 24c111 -16 243 -97 243 -251'], + 0xE51B: [475,14,869,98,771,'759 224c-43 -145 -166 -238 -303 -238c-31 0 -63 7 -74 63c-42 -55 -77 -63 -110 -63c-136 0 -204 93 -161 238c45 154 178 235 284 251l6 -24c-43 -19 -115 -124 -144 -219c-35 -120 -44 -216 24 -216c31 0 81 25 100 92c-3 22 -3 64 4 85c3 14 29 44 54 44 c24 0 31 -30 28 -44c-6 -21 -31 -63 -47 -85c-20 -68 14 -92 45 -92c68 0 117 96 152 216c28 95 17 200 -15 219l20 24c97 -16 182 -97 137 -251'], + 0xE51C: [475,14,974,117,857,'844 224c-48 -145 -183 -238 -333 -238c-34 0 -69 7 -81 63c-47 -55 -85 -63 -121 -63c-150 0 -225 93 -178 238c49 154 196 235 312 251l7 -24c-47 -19 -127 -124 -158 -219c-39 -120 -49 -216 26 -216c34 0 89 25 110 92c-3 22 -3 64 4 85c4 14 33 44 59 44 c27 0 35 -30 32 -44c-7 -21 -34 -63 -52 -85c-22 -68 16 -92 49 -92c75 0 129 96 167 216c32 95 20 200 -15 219l21 24c107 -16 200 -97 151 -251'], + 0xE51D: [674,0,856,98,758,'758 0h-660l315 674h22zM618 42l-223 490l-221 -490h444'], + 0xE51E: [674,0,960,117,843,'843 0h-726l346 674h24zM689 42l-245 490l-244 -490h489'], + 0xE51F: [668,0,775,98,677,'677 0h-579l427 668h28zM567 36l-89 486l-306 -486h395'], + 0xE520: [668,0,870,117,753,'753 0h-636l469 668h32zM632 36l-98 486l-336 -486h434'], + 0xE521: [690,0,857,98,759,'759 0h-661l308 690h31zM557 39l-202 440l-187 -440h389'], + 0xE522: [690,0,961,117,844,'844 0h-727l339 690h33zM621 39l-221 440l-206 -440h427'], + 0xE523: [683,0,829,98,731,'562 40l-73 451l-297 -451h370zM731 0h-633l477 683h28'], + 0xE524: [683,0,929,117,813,'627 40l-81 451l-326 -451h407zM813 0h-696l525 683h30'], + 0xE525: [673,17,627,98,529,'437 275v83c-30 51 -71 72 -109 72c-103 0 -131 -92 -131 -207c0 -92 40 -212 132 -212c118 0 108 129 108 264zM529 282c0 -59 0 -118 -12 -151c-34 -89 -112 -148 -202 -148c-130 0 -217 103 -217 223c0 138 80 253 231 253c36 0 80 -18 109 -38 c-10 130 -34 223 -141 223c-24 0 -31 -8 -38 -18c-9 -13 -19 -29 -60 -39c-9 -2 -12 -3 -23 -3c-24 0 -41 15 -41 32s16 36 55 46c30 7 79 11 105 11c184 0 234 -204 234 -391'], + 0xE526: [673,17,708,117,591,'489 275v83c-32 51 -77 72 -119 72c-114 0 -144 -92 -144 -207c0 -92 43 -212 145 -212c129 0 118 129 118 264zM591 282c0 -59 0 -118 -13 -151c-38 -89 -124 -148 -223 -148c-143 0 -238 103 -238 223c0 138 88 253 254 253c40 0 88 -18 120 -38 c-11 130 -38 223 -155 223c-27 0 -34 -8 -43 -18c-9 -13 -20 -29 -65 -39c-10 -2 -13 -3 -25 -3c-27 0 -45 15 -45 32s17 36 60 46c33 7 86 11 115 11c202 0 258 -204 258 -391'], + 0xE527: [645,16,664,98,566,'475 344c-14 48 -46 69 -83 69c-99 0 -152 -89 -185 -199c-25 -88 -22 -203 67 -203c113 0 140 124 178 253zM543 271c-19 -57 -35 -113 -54 -145c-59 -85 -150 -142 -237 -142c-124 0 -178 99 -144 214c39 132 149 242 293 242c35 0 71 -17 93 -36 c30 130 49 212 -71 212c-25 0 -33 -8 -44 -18c-12 -13 -17 -29 -60 -39c-10 -2 -13 -3 -24 -3c-24 0 -36 15 -32 32c6 17 27 36 69 46c32 7 71 11 97 11c160 0 153 -244 114 -374'], + 0xE528: [645,16,749,116,631,'532 344c-16 48 -51 69 -92 69c-109 0 -167 -89 -203 -199c-28 -88 -24 -203 74 -203c124 0 153 124 196 253zM606 271c-21 -57 -38 -113 -59 -145c-65 -85 -165 -142 -261 -142c-136 0 -196 99 -158 214c42 132 163 242 322 242c38 0 78 -17 103 -36 c32 130 53 212 -79 212c-27 0 -36 -8 -48 -18c-14 -13 -19 -29 -66 -39c-11 -2 -14 -3 -26 -3c-27 0 -40 15 -36 32c7 17 29 36 77 46c35 7 77 11 106 11c176 0 168 -244 125 -374'], + 0xE529: [691,14,698,98,600,'447 291v101c-31 28 -66 53 -98 53c-66 0 -90 -92 -90 -207c0 -68 1 -222 80 -222c89 0 108 140 108 275zM600 298c0 -266 -152 -312 -275 -312c-130 0 -227 87 -227 235c0 208 114 252 252 252c38 0 82 -17 117 -40v23c0 50 -15 208 -117 208c-44 0 -64 -29 -73 -54 c-12 -35 -49 -40 -62 -40c-32 0 -54 12 -54 49c0 39 69 72 193 72c182 0 246 -170 246 -274v-119'], + 0xE52A: [691,14,785,117,669,'500 291v101c-34 28 -72 53 -107 53c-73 0 -100 -92 -100 -207c0 -68 2 -222 89 -222c98 0 118 140 118 275zM669 298c0 -266 -167 -312 -303 -312c-143 0 -249 87 -249 235c0 208 126 252 277 252c42 0 91 -17 128 -40v23c0 50 -16 208 -128 208c-49 0 -70 -29 -80 -54 c-13 -35 -54 -40 -69 -40c-35 0 -59 12 -59 49c0 39 76 72 213 72c199 0 270 -170 270 -274v-119'], + 0xE52B: [691,14,757,97,658,'501 392c-22 28 -51 53 -83 53c-66 0 -118 -92 -151 -207c-19 -68 -65 -222 15 -222c89 0 149 140 189 275zM650 417l-35 -119c-79 -266 -233 -312 -356 -312c-130 0 -191 87 -147 235c62 208 178 252 316 252c38 0 77 -17 104 -40l7 23c26 90 68 207 -69 207 c-62 0 -70 -28 -86 -53c-22 -35 -61 -40 -74 -40c-32 0 -50 12 -39 49c11 39 85 72 210 72c156 0 199 -170 169 -274'], + 0xE52C: [691,14,851,116,733,'560 392c-25 28 -56 53 -91 53c-73 0 -130 -92 -166 -207c-22 -68 -71 -222 16 -222c98 0 164 140 208 275zM724 417l-39 -119c-87 -266 -256 -312 -392 -312c-142 0 -209 87 -161 235c68 208 196 252 348 252c42 0 84 -17 115 -40l7 23c29 90 75 207 -76 207 c-68 0 -77 -28 -95 -53c-24 -35 -66 -40 -81 -40c-35 0 -55 12 -43 49c12 39 94 72 231 72c172 0 219 -170 186 -274'], + 0xE52D: [664,10,856,98,758,'758 664l-315 -674h-22l-323 674h660zM682 622h-444l223 -490'], + 0xE52E: [664,10,960,117,843,'843 664l-346 -674h-24l-356 674h726zM759 622h-489l246 -490'], + 0xE52F: [658,10,775,98,677,'677 658l-427 -668h-29l-123 668h579zM603 622h-395l89 -486'], + 0xE530: [658,10,870,117,753,'753 658l-469 -668h-32l-135 668h636zM672 622h-434l98 -486'], + 0xE531: [680,10,857,98,759,'759 680l-308 -690h-31l-322 690h661zM689 641h-389l202 -440'], + 0xE532: [680,10,961,117,844,'844 680l-339 -690h-34l-354 690h727zM767 641h-428l222 -440'], + 0xE533: [673,10,829,98,731,'637 633h-371l74 -451zM731 673l-478 -683h-27l-128 683h633'], + 0xE534: [673,10,929,117,813,'710 633h-408l81 -451zM813 673l-526 -683h-30l-140 683h696'], + 0xE535: [675,14,915,98,817,'817 327c0 -201 -149 -341 -366 -341c-97 0 -195 40 -258 102c-60 58 -95 149 -95 243c0 201 150 344 360 344c104 0 198 -35 267 -104c61 -60 92 -146 92 -244zM690 371c-7 99 -39 176 -91 219c-40 32 -91 50 -141 50c-62 0 -115 -22 -158 -65 c-40 -40 -68 -118 -75 -204h465zM690 291h-465c7 -96 41 -179 92 -220c38 -31 88 -49 139 -49c58 0 106 18 146 54c25 22 44 47 54 72c17 41 30 94 34 143'], + 0xE536: [675,14,1025,117,908,'908 327c0 -201 -164 -341 -403 -341c-106 0 -214 40 -284 102c-65 58 -104 149 -104 243c0 201 164 344 395 344c115 0 218 -35 295 -104c66 -60 101 -146 101 -244zM768 371c-8 99 -43 176 -101 219c-43 32 -99 50 -155 50c-67 0 -125 -22 -173 -65 c-44 -40 -75 -118 -82 -204h511zM768 291h-512c8 -96 46 -179 102 -220c42 -31 96 -49 152 -49c64 0 117 18 161 54c28 22 48 47 59 72c20 41 33 94 38 143'], + 0xE537: [691,19,975,98,877,'877 336c0 -207 -162 -355 -390 -355c-227 0 -389 147 -389 354c0 208 164 356 394 356c221 0 385 -151 385 -355zM680 395c-14 167 -82 263 -189 263c-115 0 -182 -91 -196 -263h385zM681 279h-387c10 -172 77 -265 193 -265s183 92 194 265'], + 0xE538: [691,19,1090,117,973,'973 336c0 -207 -177 -355 -428 -355c-250 0 -428 147 -428 354c0 208 180 356 433 356c243 0 423 -151 423 -355zM756 395c-15 167 -89 263 -207 263c-126 0 -200 -91 -215 -263h422zM758 279h-426c11 -172 85 -265 213 -265s201 92 213 265'], + 0xE539: [666,18,899,98,801,'801 418c-12 -226 -234 -436 -463 -436c-140 0 -240 99 -240 239c0 123 72 251 191 344c86 66 178 101 264 101c149 0 256 -107 248 -248zM685 481c0 94 -53 152 -141 152c-83 0 -152 -40 -214 -125c-28 -38 -53 -86 -73 -136h414c9 38 14 76 14 109zM651 304h-418 c-12 -44 -19 -86 -19 -120c0 -109 50 -169 143 -169c79 0 148 41 210 124c34 47 63 105 84 165'], + 0xE53A: [666,18,1007,117,890,'890 418c-13 -226 -258 -436 -509 -436c-154 0 -264 99 -264 239c0 123 78 251 210 344c95 66 195 101 291 101c163 0 280 -107 272 -248zM763 481c0 94 -59 152 -156 152c-91 0 -167 -40 -235 -125c-31 -38 -59 -86 -81 -136h456c10 38 16 76 16 109zM725 304h-459 c-14 -44 -22 -86 -22 -120c0 -109 56 -169 157 -169c87 0 164 41 231 124c38 47 70 105 93 165'], + 0xE53B: [685,18,948,98,850,'850 454c0 -149 -94 -311 -234 -401c-71 -47 -164 -71 -247 -71c-155 0 -271 96 -271 239c0 142 98 306 234 393c74 47 163 71 241 71c153 0 277 -98 277 -231zM692 532c0 71 -56 119 -122 119c-75 0 -146 -45 -204 -142c-18 -31 -36 -71 -52 -114h358 c13 50 20 98 20 137zM644 299h-361c-16 -60 -27 -119 -27 -162c0 -75 54 -121 124 -121c60 0 123 32 175 102c32 45 64 111 89 181'], + 0xE53C: [685,18,1061,117,944,'944 454c0 -149 -104 -311 -257 -401c-79 -47 -181 -71 -273 -71c-170 0 -297 96 -297 239c0 142 107 306 258 393c81 47 179 71 265 71c168 0 304 -98 304 -231zM770 532c0 71 -62 119 -134 119c-82 0 -161 -45 -224 -142c-20 -31 -40 -71 -58 -114h395 c13 50 21 98 21 137zM717 299h-397c-18 -60 -29 -119 -29 -162c0 -75 59 -121 136 -121c66 0 135 32 192 102c36 45 71 111 98 181'], + 0xE53D: [723,19,684,54,630,'630 576c-14 -14 -58 -17 -90 -20c33 -40 40 -77 41 -112c1 -71 -30 -133 -102 -182l74 -82c22 -25 41 -58 47 -86l-34 -113c-6 28 -25 61 -47 85l-316 347c-81 -89 -11 -235 69 -321v-106c-16 19 -67 23 -104 24c-35 1 -99 -5 -113 -20v109c16 9 55 16 93 18 c-40 47 -51 93 -51 137c0 58 19 134 84 183l-81 87c-22 25 -42 58 -46 86l34 113c5 -27 24 -61 46 -85l322 -350c79 84 37 210 -41 293v106c15 -19 67 -23 103 -24c35 -1 99 5 112 20v-107'], + 0xE53E: [723,19,771,68,702,'702 576c-15 -14 -64 -17 -99 -20c37 -40 44 -77 45 -112c1 -71 -33 -133 -113 -182l83 -82c24 -25 45 -58 51 -86l-38 -113c-6 28 -27 61 -51 85l-348 347c-89 -89 -12 -235 76 -321c1 -42 0 -106 0 -106c-17 19 -74 23 -114 24c-38 1 -109 -5 -124 -20v109 c17 9 60 16 101 18c-43 47 -55 93 -55 137c0 58 20 134 92 183l-89 87c-24 25 -46 58 -51 86l38 113c5 -27 27 -61 51 -85l353 -350c87 84 41 210 -45 293c-1 42 0 106 0 106c17 -19 74 -23 114 -24c39 -1 109 5 123 20v-107'], + 0xE53F: [729,29,594,54,540,'540 27c-7 -22 -24 -27 -45 -28h-201h-195c-20 -1 -36 -6 -45 -28v118c9 21 25 27 45 28h195l154 -1c19 137 58 394 -20 426c-38 17 -110 26 -169 26c-64 0 -110 0 -137 11c-21 9 -26 17 -33 32v118c8 -22 21 -25 33 -32c21 -12 73 -11 137 -11c59 0 145 -7 181 -26 c145 -76 77 -369 38 -543h17c21 1 38 6 45 27v-117'], + 0xE540: [729,29,672,68,603,'603 27c-8 -22 -26 -27 -49 -28h-222h-214c-22 -1 -40 -6 -50 -28v118c10 21 28 27 50 28h214l170 -1c20 137 64 394 -22 426c-43 17 -121 26 -187 26c-70 0 -121 0 -150 11c-23 9 -29 17 -36 32v118c9 -22 23 -25 36 -32c23 -12 80 -11 150 -11c66 0 160 -7 200 -26 c160 -76 85 -369 41 -543h20c23 1 41 6 49 27v-117'], + 0xE541: [740,18,536,54,481,'481 81c4 -39 -11 -62 -33 -96c-73 56 -112 187 -122 279c-24 -85 -46 -234 -107 -255c-15 -5 -22 -6 -32 -6c-16 0 -23 7 -55 8c-27 2 -59 -6 -78 -29v118c19 23 51 31 78 28c32 -1 40 -9 54 -9c6 0 18 1 33 7c66 24 70 137 101 201c-3 76 -14 182 -42 198 c-67 37 -86 6 -146 38c-21 12 -33 26 -42 49v128c9 -23 21 -48 42 -59c60 -33 104 1 156 -49c63 -57 55 -313 77 -444c8 -50 78 -114 116 -107'], + 0xE542: [740,18,607,68,538,'538 81c5 -39 -12 -62 -36 -96c-80 56 -124 187 -135 279c-26 -85 -51 -234 -117 -255c-17 -5 -24 -6 -35 -6c-18 0 -26 7 -61 8c-30 2 -65 -6 -86 -29v118c21 23 56 31 86 28c35 -1 44 -9 60 -9c6 0 19 1 36 7c73 24 77 137 111 201c-3 76 -16 182 -46 198 c-74 37 -95 6 -161 38c-23 12 -36 26 -46 49v128c10 -23 23 -48 46 -59c66 -33 114 1 172 -49c69 -57 61 -313 85 -444c8 -50 86 -114 127 -107'], + 0xE543: [717,16,594,54,540,'540 544c-7 21 -24 26 -45 27h-17c19 -85 29 -207 23 -319c-6 -118 5 -229 -71 -268c-16 22 -43 76 -33 98c41 16 37 125 44 222c9 94 16 201 7 268l-154 -1h-195c-20 1 -36 7 -45 28v118c9 -22 25 -27 45 -28h195h201c21 -1 38 -6 45 -28v-117'], + 0xE544: [717,16,672,68,603,'603 544c-8 21 -26 26 -49 27h-20c22 -85 33 -207 26 -319c-6 -118 6 -229 -78 -268c-18 22 -47 76 -36 98c45 16 40 125 48 222c10 94 17 201 8 268l-170 -1h-214c-22 1 -40 7 -50 28v118c10 -22 28 -27 50 -28h214h222c23 -1 41 -6 49 -28v-117'], + 0xE545: [482,0,214,69,146,'146 0h-77v482h77v-482'], + 0xE546: [482,201,207,-18,139,'139 -100c0 -66 -45 -101 -131 -101c-12 0 -17 1 -26 3v66l18 -1c47 -3 63 17 63 63v552h76v-582'], + 0xE547: [482,0,203,19,198,'198 482l-102 -482h-77l102 482h77'], + 0xE548: [482,201,192,-115,188,'188 482l-124 -582c-16 -76 -56 -101 -162 -101c-8 0 -11 1 -17 3l14 66c16 -2 18 -2 23 -2c47 0 61 13 72 64l116 552h78'], + 0xE549: [497,0,264,67,193,'193 0h-126v497h126v-497'], + 0xE54A: [497,201,257,4,189,'189 -86c0 -81 -32 -115 -110 -115c-18 0 -50 2 -75 5v103c9 -3 14 -4 22 -4c27 0 37 11 37 39v555h126v-583'], + 0xE54B: [497,0,264,67,299,'299 497l-106 -497h-126l106 497h126'], + 0xE54C: [497,201,257,-38,295,'295 497l-124 -583c-17 -81 -57 -115 -135 -115c-18 0 -49 2 -74 5l22 103c9 -3 13 -4 21 -4c27 0 40 11 46 39l118 555h126'], + 0xE54D: [494,0,455,79,375,'375 19c1 -12 -8 -19 -21 -19h-253c-13 0 -22 7 -21 19c1 11 7 16 20 18c32 4 66 16 66 78v238c0 36 -4 44 -25 51c-13 4 -23 -2 -35 -4c-9 -2 -17 11 -17 22c0 7 3 13 9 15l180 56c24 8 17 -18 17 -18v-360c0 -62 27 -70 60 -78c13 -2 19 -7 20 -18zM268 40 c-8 21 -13 46 -13 75v328l-65 -16c11 -15 16 -39 16 -74v-238c0 -28 -5 -54 -14 -75h76'], + 0xE54E: [497,218,493,80,402,'402 15c0 -152 -87 -233 -212 -233c-65 0 -110 30 -110 67c0 27 23 61 54 61c35 0 47 -21 69 -47c16 -18 14 -25 28 -25c12 0 22 7 28 15c11 18 13 42 13 117v387c0 35 -5 50 -24 50c-10 0 -40 -6 -40 -6c-16 -3 -25 8 -25 20c0 8 4 15 14 19l178 55c4 1 8 2 11 2 c10 0 16 -7 16 -21v-461zM186 -178c-13 17 -21 48 -49 48c-13 0 -19 -8 -19 -21c0 -18 36 -25 68 -27zM362 15v433l-70 -17c13 -14 20 -37 20 -74v-387c0 -45 -2 -74 -6 -95c24 32 56 80 56 140'], + 0xE54F: [406,14,466,80,386,'386 227c-46 -71 -93 -137 -146 -191c-13 -15 -51 -53 -84 -50c-27 0 -76 27 -76 93c0 21 5 46 18 76l108 251h85l-112 -251c-23 -53 -57 -115 -53 -130c4 -10 18 -10 27 -10c30 0 61 33 78 49c45 50 102 133 136 184'], + 0xE550: [410,308,770,80,690,'690 248c-72 -113 -172 -203 -291 -253c-58 -123 -136 -303 -242 -303c-42 0 -77 19 -77 76c0 75 110 157 240 231l190 411h90l-179 -371c96 52 175 134 248 228zM302 -41c-102 -57 -191 -138 -191 -186c0 -46 28 -51 45 -51c24 0 35 12 47 32c32 53 65 135 99 205'], + 0xE551: [411,14,501,80,421,'421 229c-45 -73 -52 -88 -92 -142c-41 -56 -70 -99 -136 -101c-26 0 -79 16 -104 87c-7 18 -9 35 -9 51c0 29 8 52 12 61l104 226h152l-162 -352c-7 -15 -13 -26 -8 -33c3 -4 7 -5 11 -5c48 0 101 80 118 101c36 52 43 64 80 120'], + 0xE552: [411,291,811,80,731,'731 238c-56 -108 -171 -262 -285 -290c0 0 -53 -104 -85 -142c-35 -42 -128 -97 -190 -97c-63 0 -91 26 -91 83c0 85 140 132 240 176l201 443h149l-207 -419c90 41 190 178 238 272zM299 -79c-134 -61 -182 -95 -182 -135c0 -26 14 -44 48 -44c44 0 115 133 134 179'], + 0xE553: [445,25,337,80,257,'257 62l-81 -87h-9c-7 22 -18 40 -37 50v301c0 15 -5 24 -11 24c-7 0 -19 -4 -28 -15l-11 12l86 98c6 -4 15 -14 15 -14l-11 -16c15 -17 31 -28 54 -38v-17c-28 -13 -30 -25 -30 -34v-240c0 -17 8 -34 22 -34l28 22'], + 0xE554: [445,177,319,80,228,'228 360c-29 -13 -31 -25 -31 -34v-268c0 -11 12 -64 16 -81h-19l-15 40c-26 -75 -35 -112 -78 -194h-21c30 56 54 158 54 203v300c0 15 -6 24 -12 24c-7 0 -19 -4 -28 -15l-11 12l86 98c6 -4 15 -14 15 -14l-11 -16c15 -17 31 -28 55 -38v-17'], + 0xE555: [455,23,378,80,298,'298 74c0 0 -69 -74 -92 -95c-12 -4 -24 -2 -33 6c-8 20 -20 34 -38 46v290c-6 -4 -12 -10 -19 -20l-36 39l105 115c16 -13 27 -23 32 -30c-3 -6 -6 -11 -9 -14c8 -9 23 -20 43 -28c11 -11 12 -25 5 -42c-10 -5 -25 -11 -25 -21v-222c0 -5 1 -9 3 -11c6 6 19 14 29 22'], + 0xE556: [455,169,360,80,280,'280 -48h-57s-12 15 -16 37c-19 -53 -18 -74 -64 -158h-63c36 61 56 124 66 200v290c-6 -4 -11 -10 -19 -20l-36 39l105 115c16 -13 27 -23 32 -30c-3 -6 -6 -11 -9 -14c8 -9 23 -20 43 -28c11 -11 12 -25 5 -42c-10 -5 -25 -11 -25 -21v-222c0 -26 6 -97 38 -146'], + 0xE557: [417,0,600,92,508,'508 21c0 -14 -10 -21 -28 -21h-361c-18 0 -27 7 -27 21c0 13 9 20 27 20h160v335h-118c-18 0 -27 7 -27 21c0 13 9 20 27 20h159v-376h160c19 0 28 -7 28 -20'], + 0xE558: [417,186,600,147,458,'458 -28c0 -93 -64 -158 -155 -158h-129c-18 0 -27 7 -27 21c0 13 9 20 27 20h128c66 0 115 49 115 117v404h-241c-18 0 -27 7 -27 21c0 13 9 20 27 20h282v-445'], + 0xE559: [650,150,466,80,386,'386 650l-260 -800h-46l260 800h46'], + 0xE55A: [606,106,659,80,579,'579 -106h-54l-445 712h54'], + 0xE55B: [650,150,466,80,386,'386 650l-260 -800h-46l260 800h46'], + 0xE55C: [604,104,661,80,581,'581 -104h-58l-443 708h58'], + 0xE55D: [650,150,466,80,386,'386 650l-260 -800h-46l260 800h46'], + 0xE55E: [602,102,660,80,580,'580 -102h-60l-440 704h60'], + 0xE55F: [650,150,466,80,386,'386 650l-260 -800h-46l260 800h46'], + 0xE560: [600,100,659,80,579,'579 -100h-62l-437 700h62'], + 0xE561: [650,150,466,80,386,'386 650l-260 -800h-46l260 800h46'], + 0xE562: [597,97,660,80,580,'580 -97h-66l-434 694h66'], + 0xE563: [650,150,466,80,386,'386 650l-260 -800h-46l260 800h46'], + 0xE564: [594,94,660,80,580,'580 -94h-70l-430 688h70'], + 0xE565: [638,-149,444,73,371,'371 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41c41 0 74 -33 74 -74'], + 0xE566: [638,-149,444,73,371,'371 149h-33l-252 373c-8 12 -13 26 -13 42c0 41 33 74 74 74c33 0 60 -21 66 -41'], + 0xE567: [638,-149,744,73,671,'371 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41c41 0 74 -33 74 -74zM671 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41c41 0 74 -33 74 -74'], + 0xE568: [638,-149,744,73,671,'371 149h-33l-252 373c-8 12 -13 26 -13 42c0 41 33 74 74 74c33 0 60 -21 66 -41zM671 149h-33l-252 373c-8 12 -13 26 -13 42c0 41 33 74 74 74c33 0 60 -21 66 -41'], + 0xE569: [638,-149,1044,73,971,'371 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41c41 0 74 -33 74 -74zM671 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41c41 0 74 -33 74 -74zM971 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41 c41 0 74 -33 74 -74'], + 0xE56A: [638,-149,1044,73,971,'371 149h-33l-252 373c-8 12 -13 26 -13 42c0 41 33 74 74 74c33 0 60 -21 66 -41zM671 149h-33l-252 373c-8 12 -13 26 -13 42c0 41 33 74 74 74c33 0 60 -21 66 -41zM971 149h-33l-252 373c-8 12 -13 26 -13 42c0 41 33 74 74 74c33 0 60 -21 66 -41'], + 0xE56B: [638,-149,1344,73,1271,'371 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41c41 0 74 -33 74 -74zM671 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41c41 0 74 -33 74 -74zM971 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41 c41 0 74 -33 74 -74zM1271 564c0 -16 -5 -30 -13 -42l-252 -373h-33l158 448c6 20 33 41 66 41c41 0 74 -33 74 -74'], + 0xE56C: [844,344,686,80,606,'606 748c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61 c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96'], + 0xE56D: [844,344,1077,80,997,'606 748c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61 c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96zM997 748c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10 c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401 c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96'], + 0xE56E: [844,344,1468,80,1388,'606 748c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61 c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96zM997 748c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10 c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401 c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96zM1388 748c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320 c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96'], + 0xE56F: [844,344,1859,80,1779,'606 748c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61 c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96zM997 748c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10 c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401 c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96zM1388 748c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320 c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96zM1779 748c0 -35 -22 -61 -60 -61 c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25 c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c7 73 7 267 7 401c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96'], + 0xE570: [844,344,734,80,654,'654 250c0 -143 -105 -262 -243 -284c-23 -256 -103 -310 -212 -310c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c3 27 4 69 5 119c-132 26 -231 143 -231 282 c0 143 105 262 243 284c23 256 103 310 212 310c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-3 -27 -4 -69 -5 -119c132 -26 231 -143 231 -282zM606 250 c0 113 -79 208 -184 233l-1 -233c0 -78 -1 -156 -6 -234c109 22 191 118 191 234zM319 484c-109 -22 -191 -118 -191 -234c0 -113 79 -208 184 -233l1 233c0 78 1 156 6 234'], + 0xE571: [844,344,1125,80,1045,'1045 250c0 -103 -96 -197 -240 -248l-2 -26c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c3 28 4 73 5 126c-44 -8 -91 -12 -139 -12 c-53 0 -104 5 -151 14v-1c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c3 33 5 91 6 156c-140 52 -232 144 -232 245c0 103 96 197 240 248l2 26 c22 265 103 320 213 320c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-3 -28 -4 -73 -5 -126c44 8 91 12 140 12c52 0 103 -5 150 -14v1c22 265 103 320 213 320 c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-3 -33 -5 -91 -6 -156c140 -52 232 -144 232 -245zM997 250c0 83 -73 154 -184 196l-1 -196l-4 -198c114 42 189 114 189 198z M317 448c-114 -42 -189 -114 -189 -198c0 -83 73 -154 184 -196l1 196zM710 475c-47 9 -96 14 -147 14c-50 0 -97 -4 -141 -13l-1 -226c0 -75 -1 -150 -6 -225c47 -9 96 -14 148 -14c49 0 96 4 140 13l1 226c0 75 1 150 6 225'], + 0xE572: [844,344,1516,80,1436,'1436 250c0 -64 -28 -119 -84 -163c-38 -30 -90 -55 -155 -74l-3 -37c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c3 30 5 81 6 139 c-83 -14 -180 -23 -292 -25c-24 -254 -104 -307 -212 -307c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c2 26 4 67 5 115c-111 2 -207 11 -289 26l-1 -14 c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c3 35 5 96 6 166c-62 19 -111 43 -148 72c-56 44 -84 99 -84 163s28 119 84 163 c38 30 90 55 155 74l3 37c22 265 103 320 213 320c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-3 -30 -5 -81 -6 -139c83 14 180 23 292 25c24 254 104 307 212 307 c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-2 -26 -4 -67 -5 -115c111 -2 207 -11 289 -26l1 14c22 265 103 320 213 320c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61 c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-3 -35 -5 -96 -6 -166c62 -19 111 -43 148 -72c56 -44 84 -99 84 -163zM1388 250c0 50 -23 91 -66 125c-30 24 -70 44 -118 60l-1 -185l-3 -186c50 16 91 36 122 61 c43 34 66 75 66 125zM316 436c-50 -16 -91 -36 -122 -61c-43 -34 -66 -75 -66 -125s23 -91 66 -125c30 -24 70 -44 118 -60l1 185zM710 489c-111 -2 -207 -11 -288 -26l-1 -213c0 -71 -1 -141 -5 -212c81 -15 176 -24 287 -26l1 238c0 80 1 159 6 239zM1100 462 c-81 15 -176 24 -287 26l-1 -238c0 -80 -1 -159 -6 -239c111 2 207 11 288 26l1 213c0 71 1 141 5 212'], + 0xE573: [844,344,750,80,710,'710 319l-71 -102l-102 71l-10 56l75 -53c-16 95 -88 170 -180 192l-1 -233c0 -91 -1 -183 -9 -274c-22 -265 -103 -320 -213 -320c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10 c38 0 73 43 83 148c7 73 7 267 7 401c0 78 1 156 6 234c-109 -22 -191 -118 -191 -234h-48c0 143 105 262 243 284c23 256 103 310 212 310c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10 c-38 0 -73 -43 -83 -148c-3 -27 -4 -69 -5 -119c115 -23 205 -115 226 -231l52 74'], + 0xE574: [844,344,750,80,710,'710 181l-9 -56l-52 74c-21 -120 -117 -214 -238 -233c-23 -256 -103 -310 -212 -310c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c3 27 4 69 5 119 c-132 26 -231 143 -231 282h48c0 -113 79 -208 184 -233l1 233c0 91 1 183 9 274c22 265 103 320 213 320c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-7 -73 -7 -267 -7 -401 c0 -78 -1 -156 -6 -234c96 19 171 96 187 193l-75 -53l10 56l102 71'], + 0xE575: [844,344,739,80,699,'699 377l-86 21c26 -43 41 -94 41 -148c0 -143 -105 -262 -243 -284c-23 -256 -103 -310 -212 -310c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c3 27 4 69 5 119 c-132 26 -231 143 -231 282c0 143 105 262 243 284c23 256 103 310 212 310c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10c-38 0 -73 -43 -83 -148c-3 -27 -4 -69 -5 -119c28 -6 55 -16 80 -29l-23 -42 c-18 9 -38 17 -58 22l-1 -233c0 -78 -1 -156 -6 -234c109 22 191 118 191 234c0 46 -13 89 -35 125l-22 -89l-29 48l29 121l121 -30zM319 484c-109 -22 -191 -118 -191 -234c0 -113 79 -208 184 -233l1 233c0 78 1 156 6 234'], + 0xE576: [844,344,713,80,673,'673 420l-37 -119l-118 37l-27 50l88 -27c-32 60 -89 106 -157 122l-1 -233c0 -78 -1 -156 -6 -234c109 22 191 118 191 234h48c0 -143 -105 -262 -243 -284c-23 -256 -103 -310 -212 -310c-55 0 -95 40 -95 96c0 35 22 61 60 61c32 0 58 -20 58 -61c0 -4 -3 -17 -10 -25 c-4 -6 -7 -10 -7 -16c0 -4 6 -10 18 -10c38 0 73 43 83 148c3 27 4 69 5 119c-132 26 -231 143 -231 282c0 143 105 262 243 284c23 256 103 310 212 310c55 0 95 -40 95 -96c0 -35 -22 -61 -60 -61c-32 0 -58 20 -58 61c0 4 3 17 10 25c4 6 7 10 7 16c0 4 -6 10 -18 10 c-38 0 -73 -43 -83 -148c-3 -27 -4 -69 -5 -119c85 -17 157 -72 197 -147l27 85zM319 484c-109 -22 -191 -118 -191 -234c0 -113 79 -208 184 -233l1 233c0 78 1 156 6 234'], + 0xE577: [959,459,708,80,628,'628 859c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63 c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100'], + 0xE578: [959,459,1116,80,1036,'628 859c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63 c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100zM1036 859c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10 c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509 c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100'], + 0xE579: [959,459,1524,80,1444,'628 859c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63 c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100zM1036 859c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10 c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509 c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100zM1444 859c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376 c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100'], + 0xE57A: [959,459,1932,80,1852,'628 859c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63 c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100zM1036 859c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10 c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509 c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100zM1444 859c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376 c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100zM1852 859 c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509c0 -125 0 -273 -9 -376c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63 c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c7 69 7 339 7 509c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100'], + 0xE57B: [959,459,758,80,678,'678 250c0 -147 -107 -270 -247 -294l-5 -82c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c3 35 5 119 6 215c-138 27 -242 148 -242 294 c0 147 107 270 247 294l5 82c24 276 108 333 222 333c57 0 99 -42 99 -100c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-3 -35 -5 -119 -6 -215c138 -27 242 -148 242 -294zM628 250 c0 118 -82 217 -192 243l-1 -243l-2 -243c111 24 195 124 195 243zM325 493c-111 -24 -195 -124 -195 -243c0 -118 82 -217 192 -243l1 243'], + 0xE57C: [959,459,1166,80,1086,'1086 250c0 -106 -98 -203 -246 -256c-1 -44 -3 -84 -6 -120c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c4 35 5 123 6 223 c-46 -8 -96 -13 -147 -13c-53 0 -104 5 -152 14l-5 -91c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c4 39 6 141 6 254 c-145 53 -242 149 -242 255s98 203 246 256c1 44 3 84 6 120c24 276 108 333 222 333c57 0 99 -42 99 -100c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-4 -35 -5 -123 -6 -223c46 8 96 13 147 13 c53 0 104 -5 152 -14l5 91c24 276 108 333 222 333c57 0 99 -42 99 -100c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-4 -39 -6 -141 -6 -254c145 -53 242 -149 242 -255zM1036 250 c0 87 -77 160 -193 205v-205l-1 -205c117 44 194 118 194 205zM324 455c-117 -44 -194 -118 -194 -205s77 -160 193 -205v205zM733 485c-47 9 -98 14 -150 14c-51 0 -101 -5 -148 -13v-236l-2 -235c47 -9 98 -14 150 -14c51 0 101 5 148 13v236'], + 0xE57D: [959,459,1574,80,1494,'1494 250c0 -67 -29 -124 -88 -170c-39 -30 -91 -56 -157 -76c-2 -47 -4 -92 -7 -130c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153 c4 37 5 131 6 237c-84 -16 -184 -25 -299 -27l-5 -77c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c3 34 5 116 6 211c-114 2 -214 11 -298 26 l-6 -104c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c4 40 6 147 6 264c-64 20 -116 45 -154 75c-59 46 -88 103 -88 170s29 124 88 170 c39 30 91 56 157 76c2 47 4 92 7 130c24 276 108 333 222 333c57 0 99 -42 99 -100c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-4 -37 -5 -131 -6 -237c84 16 184 25 299 27l5 77 c24 276 108 333 222 333c57 0 99 -42 99 -100c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-3 -34 -5 -116 -6 -211c114 -2 214 -11 298 -26l6 104c24 276 108 333 222 333c57 0 99 -42 99 -100 c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-4 -40 -6 -147 -6 -264c64 -20 116 -45 154 -75c59 -46 88 -103 88 -170zM1444 250c0 52 -24 95 -69 131c-31 24 -73 45 -124 62v-193l-1 -193 c52 17 93 38 125 62c45 36 69 79 69 131zM324 443c-52 -17 -93 -38 -125 -62c-45 -36 -69 -79 -69 -131s24 -95 69 -131c31 -24 73 -45 124 -62v193zM733 499c-114 -3 -214 -12 -298 -28v-221l-2 -221c84 -16 183 -25 297 -27l1 248zM1141 471c-84 16 -183 25 -297 27 l-1 -248l-2 -249c114 3 214 12 298 28v221'], + 0xE57E: [959,459,774,80,734,'734 318l-72 -102l-102 71l-9 56l74 -52c-17 99 -92 179 -189 202l-1 -243c0 -125 0 -273 -9 -376c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10 c40 0 76 44 87 153c7 69 7 339 7 509l2 243c-111 -24 -195 -124 -195 -243h-50c0 147 107 270 247 294l5 82c24 276 108 333 222 333c57 0 99 -42 99 -100c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10 c-40 0 -76 -44 -87 -153c-3 -35 -5 -119 -6 -215c121 -24 216 -120 238 -242l50 72'], + 0xE57F: [959,459,774,80,734,'734 182l-10 -56l-50 72c-22 -123 -119 -221 -243 -242l-5 -82c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c3 35 5 119 6 215 c-138 27 -242 148 -242 294h50c0 -118 82 -217 192 -243l1 243c0 125 0 273 9 376c24 276 108 333 222 333c57 0 99 -42 99 -100c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-7 -69 -7 -339 -7 -509 l-2 -243c98 22 175 102 192 202l-74 -52l9 56l102 71'], + 0xE580: [959,459,759,80,719,'719 385l-85 21c28 -45 44 -99 44 -156c0 -147 -107 -270 -247 -294l-5 -82c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c3 35 5 119 6 215 c-138 27 -242 148 -242 294c0 147 107 270 247 294l5 82c24 276 108 333 222 333c57 0 99 -42 99 -100c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-3 -35 -5 -119 -6 -215c30 -6 58 -16 84 -31 l-23 -44c-19 11 -40 19 -61 24l-1 -243l-2 -243c111 24 195 124 195 243c0 48 -14 94 -38 132l-21 -88l-30 48l30 121l121 -30zM325 493c-111 -24 -195 -124 -195 -243c0 -118 82 -217 192 -243l1 243'], + 0xE581: [959,459,736,80,696,'696 423l-36 -119l-119 36l-27 50l87 -26c-33 64 -93 112 -165 129l-1 -243l-2 -243c111 24 195 124 195 243h50c0 -147 -107 -270 -247 -294l-5 -82c-24 -276 -108 -333 -222 -333c-57 0 -99 42 -99 100c0 36 23 63 62 63c34 0 61 -20 61 -63c0 -4 -3 -18 -10 -26 c-5 -7 -8 -11 -8 -17c0 -4 7 -10 19 -10c40 0 76 44 87 153c3 35 5 119 6 215c-138 27 -242 148 -242 294c0 147 107 270 247 294l5 82c24 276 108 333 222 333c57 0 99 -42 99 -100c0 -36 -23 -63 -62 -63c-34 0 -61 20 -61 63c0 4 3 18 10 26c5 7 8 11 8 17 c0 4 -7 10 -19 10c-40 0 -76 -44 -87 -153c-3 -35 -5 -119 -6 -215c90 -18 166 -76 208 -155l26 84zM325 493c-111 -24 -195 -124 -195 -243c0 -118 82 -217 192 -243l1 243'], + 0xE582: [1097,597,730,80,650,'650 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66 c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346c59 0 103 -43 103 -104'], + 0xE583: [1097,597,1155,80,1075,'650 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66 c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346c59 0 103 -43 103 -104zM1075 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27 c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11 c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346c59 0 103 -43 103 -104'], + 0xE584: [1097,597,1580,80,1500,'650 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66 c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346c59 0 103 -43 103 -104zM1075 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27 c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11 c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346c59 0 103 -43 103 -104zM1500 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639 c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346 c59 0 103 -43 103 -104'], + 0xE585: [1097,597,2005,80,1925,'650 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66 c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346c59 0 103 -43 103 -104zM1075 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27 c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11 c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346c59 0 103 -43 103 -104zM1500 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639 c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346 c59 0 103 -43 103 -104zM1925 993c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-8 -75 -8 -426 -8 -639c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104 c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c8 75 8 426 8 639c0 167 0 398 9 501c25 286 113 346 231 346c59 0 103 -43 103 -104'], + 0xE586: [1097,597,782,80,702,'702 250c0 -152 -110 -279 -255 -306c-1 -79 -3 -149 -7 -195c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c5 44 7 183 7 334 c-143 27 -252 153 -252 305s110 279 255 306c1 79 3 149 7 195c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-5 -44 -7 -183 -7 -334 c143 -27 252 -153 252 -305zM650 250c0 123 -86 226 -201 252v-252l-1 -253c116 26 202 130 202 253zM334 503c-116 -26 -202 -130 -202 -253s86 -226 201 -252v252'], + 0xE587: [1097,597,1207,80,1127,'1127 250c0 -110 -101 -211 -254 -266c-1 -95 -3 -182 -8 -235c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c5 45 7 188 7 342 c-48 -9 -100 -14 -153 -14c-55 0 -107 5 -156 14c-2 -82 -4 -157 -8 -204c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c5 48 7 208 8 373 c-152 56 -253 156 -253 266s101 211 254 266c1 95 3 182 8 235c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-5 -45 -7 -188 -7 -342 c48 9 100 14 154 14s106 -5 155 -14c2 82 4 157 8 204c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-5 -48 -7 -208 -8 -373 c152 -56 253 -156 253 -266zM1075 250c0 90 -80 167 -201 213v-213l-1 -213c122 46 202 123 202 213zM334 463c-122 -46 -202 -123 -202 -213s80 -167 201 -213v213zM759 495c-49 9 -101 14 -155 14s-106 -5 -155 -14v-245l-1 -245c49 -9 101 -14 156 -14c53 0 105 5 154 14 v245'], + 0xE588: [1097,597,1632,80,1552,'1552 250c0 -70 -31 -129 -91 -177c-41 -31 -95 -58 -163 -79c-1 -98 -3 -190 -8 -245c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159 c5 46 7 197 8 356c-88 -16 -192 -25 -311 -27c-1 -78 -3 -146 -7 -191c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c5 44 7 180 7 329 c-118 2 -222 11 -309 27c-1 -88 -4 -168 -8 -218c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c5 49 7 215 8 384c-68 21 -121 47 -162 78 c-60 48 -91 107 -91 177s31 129 91 177c41 31 95 58 163 79c1 98 3 190 8 245c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-5 -46 -7 -197 -8 -356 c88 16 192 25 311 27c1 78 3 146 7 191c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-5 -44 -7 -180 -7 -329c118 -2 222 -11 309 -27 c1 88 4 168 8 218c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-5 -49 -7 -215 -8 -384c68 -21 121 -47 162 -78c60 -48 91 -107 91 -177zM1500 250 c0 54 -25 99 -72 136c-32 26 -76 47 -129 65v-201v-201c53 18 96 39 129 65c47 37 72 82 72 136zM333 451c-53 -18 -96 -39 -129 -65c-47 -37 -72 -82 -72 -136s25 -99 72 -136c32 -26 76 -47 129 -65v201v201zM759 508c-119 -2 -223 -11 -310 -28v-230l-1 -230 c87 -17 191 -26 310 -28v258zM1184 480c-87 17 -191 26 -310 28v-258l-1 -258c119 2 223 11 310 28v230'], + 0xE589: [1097,597,797,80,757,'757 317l-71 -102l-102 71l-10 56l73 -51c-17 104 -96 188 -198 211v-252c0 -167 0 -398 -9 -501c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11 c41 0 78 46 90 159c8 75 8 426 8 639l1 253c-116 -26 -202 -130 -202 -253h-52c0 152 110 279 255 306c1 79 3 149 7 195c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11 c-41 0 -78 -46 -90 -159c-5 -44 -7 -183 -7 -334c127 -24 226 -125 248 -253l49 71'], + 0xE58A: [1097,597,797,80,757,'757 183l-10 -56l-49 71c-22 -129 -123 -230 -251 -254c-1 -79 -3 -149 -7 -195c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159 c5 44 7 183 7 334c-143 27 -252 153 -252 305h52c0 -123 86 -226 201 -252v252c0 167 0 398 9 501c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159 c-8 -75 -8 -426 -8 -639l-1 -253c103 23 182 107 199 212l-73 -51l10 56l102 71'], + 0xE58B: [1097,597,779,80,739,'739 393l-84 21c30 -48 47 -104 47 -164c0 -152 -110 -279 -255 -306c-1 -79 -3 -149 -7 -195c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11 c41 0 78 46 90 159c5 44 7 183 7 334c-143 27 -252 153 -252 305s110 279 255 306c1 79 3 149 7 195c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159 c-5 -44 -7 -183 -7 -334c31 -6 61 -16 88 -31l-24 -46c-20 11 -42 19 -65 24v-252l-1 -253c116 26 202 130 202 253c0 51 -15 99 -40 139l-21 -87l-30 48l30 121l121 -29zM334 503c-116 -26 -202 -130 -202 -253s86 -226 201 -252v252'], + 0xE58C: [1097,597,759,80,719,'719 425l-36 -119l-119 37l-27 50l85 -27c-34 68 -97 119 -173 136v-252l-1 -253c116 26 202 130 202 253h52c0 -152 -110 -279 -255 -306c-1 -79 -3 -149 -7 -195c-25 -286 -113 -346 -231 -346c-59 0 -103 43 -103 104c0 38 24 66 65 66c35 0 63 -21 63 -66 c0 -5 -4 -19 -11 -27c-4 -7 -8 -11 -8 -17c0 -5 7 -11 20 -11c41 0 78 46 90 159c5 44 7 183 7 334c-143 27 -252 153 -252 305s110 279 255 306c1 79 3 149 7 195c25 286 113 346 231 346c59 0 103 -43 103 -104c0 -38 -24 -66 -65 -66c-35 0 -63 21 -63 66c0 5 4 19 11 27 c4 7 8 11 8 17c0 5 -7 11 -20 11c-41 0 -78 -46 -90 -159c-5 -44 -7 -183 -7 -334c95 -18 174 -79 217 -162l26 82zM334 503c-116 -26 -202 -130 -202 -253s86 -226 201 -252v252'], + 0xE58D: [1462,962,776,80,696,'696 1349c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70 c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113'], + 0xE58E: [1462,962,1235,80,1155,'696 1349c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70 c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113zM1155 1349c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12 c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987 c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113'], + 0xE58F: [1462,962,1694,80,1614,'696 1349c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70 c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113zM1155 1349c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12 c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987 c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113zM1614 1349c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837 c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113'], + 0xE590: [1462,962,2153,80,2073,'696 1349c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70 c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113zM1155 1349c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12 c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987 c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113zM1614 1349c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837 c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113zM2073 1349 c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70 c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113'], + 0xE591: [1462,962,832,80,752,'752 250c0 -164 -118 -301 -273 -330c-1 -218 -3 -432 -10 -507c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c6 54 7 364 8 657 c-155 30 -273 166 -273 330s118 301 273 330c1 218 3 432 10 507c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-6 -54 -7 -364 -8 -657 c155 -30 273 -166 273 -330zM696 250c0 133 -93 244 -217 273v-273v-273c124 29 217 140 217 273zM353 523c-124 -29 -217 -140 -217 -273s93 -244 217 -273v273v273'], + 0xE592: [1462,962,1291,80,1211,'1211 250c0 -119 -109 -227 -273 -287c-1 -232 -3 -470 -10 -550c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c6 54 7 370 8 666 c-53 -10 -108 -15 -166 -15c-59 0 -115 5 -167 15c-1 -221 -3 -440 -10 -516c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c6 56 7 395 8 700 c-164 60 -273 168 -273 287s109 227 273 287c1 232 3 470 10 550c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-6 -54 -7 -370 -8 -666 c53 10 108 15 167 15c58 0 114 -5 166 -15c1 221 3 440 10 516c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-6 -56 -7 -395 -8 -700 c164 -60 273 -168 273 -287zM1155 250c0 97 -86 180 -217 230v-230v-230c131 50 217 132 217 230zM353 480c-131 -50 -217 -132 -217 -230c0 -97 86 -180 217 -230v230v230zM812 515c-52 10 -108 15 -166 15c-59 0 -115 -5 -167 -15v-265v-265c52 -10 108 -15 167 -15 c58 0 114 5 166 15v265v265'], + 0xE593: [1462,962,1750,80,1670,'1670 250c0 -75 -33 -139 -99 -191c-43 -34 -101 -62 -174 -85c-1 -235 -3 -480 -10 -561c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172 c6 55 7 381 8 681c-95 -17 -206 -27 -333 -29c-1 -216 -4 -428 -10 -502c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c6 54 7 360 8 652 c-128 2 -239 12 -333 29c-1 -226 -3 -453 -10 -531c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c6 57 8 403 8 711c-73 23 -131 51 -174 85 c-66 52 -99 116 -99 191s33 139 99 191c43 34 101 62 174 85c1 235 3 480 10 561c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-6 -55 -7 -381 -8 -681 c95 17 206 27 333 29c1 216 4 428 10 502c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-6 -54 -7 -360 -8 -652c128 -2 239 -12 333 -29 c1 226 3 453 10 531c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-6 -57 -8 -403 -8 -711c73 -23 131 -51 174 -85c66 -52 99 -116 99 -191zM1614 250 c0 58 -27 107 -77 147c-36 28 -83 51 -140 70v-217v-217c57 19 104 42 140 70c50 40 77 89 77 147zM353 467c-57 -19 -104 -42 -140 -70c-50 -40 -77 -89 -77 -147s27 -107 77 -147c36 -28 83 -51 140 -70v217v217zM812 529c-128 -2 -239 -12 -333 -30v-249v-249 c93 -18 205 -28 333 -30v279v279zM1271 499c-93 18 -205 28 -333 30v-279v-279c128 2 239 12 333 30v249v249'], + 0xE594: [1462,962,846,80,806,'806 315l-72 -102l-102 71l-10 56l71 -49c-17 114 -103 206 -214 232v-273c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12 c45 0 85 49 98 172c8 76 8 658 8 987v273c-124 -29 -217 -140 -217 -273h-56c0 164 118 301 273 330c1 218 3 432 10 507c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12 c-45 0 -85 -49 -98 -172c-6 -54 -7 -364 -8 -657c139 -26 247 -138 269 -278l48 69'], + 0xE595: [1462,962,846,80,806,'806 185l-10 -56l-48 69c-22 -140 -131 -252 -269 -278c-1 -218 -3 -432 -10 -507c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172 c6 54 7 364 8 657c-155 30 -273 166 -273 330h56c0 -133 93 -244 217 -273v273c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172 c-8 -76 -8 -658 -8 -987v-273c111 26 197 118 214 232l-71 -49l10 56l102 71'], + 0xE596: [1462,962,821,80,781,'781 410l-81 20c33 -52 52 -114 52 -180c0 -164 -118 -301 -273 -330c-1 -218 -3 -432 -10 -507c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172 c6 54 7 364 8 657c-155 30 -273 166 -273 330s118 301 273 330c1 218 3 432 10 507c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-6 -54 -7 -364 -8 -657 c34 -6 66 -18 96 -34l-27 -49c-21 11 -44 20 -69 26v-273v-273c124 29 217 140 217 273c0 56 -17 109 -45 153l-21 -84l-29 48l29 121l121 -29zM353 523c-124 -29 -217 -140 -217 -273s93 -244 217 -273v273v273'], + 0xE597: [1462,962,807,80,767,'767 431l-36 -119l-119 36l-27 50l83 -25c-37 75 -106 131 -189 150v-273v-273c124 29 217 140 217 273h56c0 -164 -118 -301 -273 -330c-1 -218 -3 -432 -10 -507c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70 c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c6 54 7 364 8 657c-155 30 -273 166 -273 330s118 301 273 330c1 218 3 432 10 507c27 310 122 375 249 375c65 0 112 -47 112 -113c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29 c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-6 -54 -7 -364 -8 -657c104 -20 191 -87 237 -179l25 79zM353 523c-124 -29 -217 -140 -217 -273s93 -244 217 -273v273v273'], + 0xE598: [1701,1201,800,80,720,'720 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74 c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117'], + 0xE599: [1701,1201,1275,80,1195,'720 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74 c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1195 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30 c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12 c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117'], + 0xE59A: [1701,1201,1750,80,1670,'720 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74 c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1195 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30 c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12 c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1670 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912 v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757 c27 322 126 389 259 389c67 0 116 -49 116 -117'], + 0xE59B: [1701,1201,2225,80,2145,'720 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74 c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1195 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30 c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12 c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1670 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912 v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757 c27 322 126 389 259 389c67 0 116 -49 116 -117zM2145 1584c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-610c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389 c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v610c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117'], + 0xE59C: [1701,1201,858,80,778,'778 250c0 -170 -122 -312 -283 -343c0 -250 -1 -594 -11 -719c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 61 7 565 7 874 c-161 31 -283 173 -283 343s122 312 283 343c0 250 1 594 11 719c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -61 -7 -565 -7 -874 c161 -31 283 -173 283 -343zM720 250c0 138 -96 254 -225 283v-566c129 29 225 145 225 283zM363 -33v566c-129 -29 -225 -145 -225 -283s96 -254 225 -283'], + 0xE59D: [1701,1201,1333,80,1253,'1253 250c0 -124 -113 -236 -283 -298v-7c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 62 7 575 7 883 c-54 -10 -112 -15 -171 -15c-60 0 -118 5 -172 15c0 -251 0 -602 -11 -728c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v7 c-170 62 -283 174 -283 298s113 236 283 298v7c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -62 -7 -575 -7 -883 c54 10 112 15 172 15c59 0 117 -5 171 -15c0 251 0 602 11 728c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-7 c170 -62 283 -174 283 -298zM1195 250c0 101 -89 187 -225 239v-478c136 52 225 138 225 239zM363 11v478c-136 -52 -225 -138 -225 -239s89 -187 225 -239zM838 526c-54 10 -112 15 -171 15c-60 0 -118 -5 -172 -15v-552c54 -10 112 -15 172 -15c59 0 117 5 171 15v552'], + 0xE59E: [1701,1201,1808,80,1728,'1728 250c0 -78 -34 -145 -102 -198c-45 -35 -106 -65 -181 -88v-19c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12 c46 0 88 52 102 179c7 63 7 592 7 899c-97 -18 -212 -28 -343 -30c0 -250 -1 -590 -11 -714c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179 c7 61 7 559 7 869c-131 2 -246 12 -343 30c0 -252 0 -615 -11 -744c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v19 c-75 23 -136 53 -181 88c-68 53 -102 120 -102 198s34 145 102 198c45 35 106 65 181 88v19c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12 c-46 0 -88 -52 -102 -179c-7 -63 -7 -592 -7 -899c97 18 212 28 343 30c0 250 1 590 11 714c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179 c-7 -61 -7 -559 -7 -869c131 -2 246 -12 343 -30c0 252 0 615 11 744c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-19 c75 -23 136 -53 181 -88c68 -53 102 -120 102 -198zM1670 250c0 60 -28 111 -80 153c-37 29 -85 53 -145 73v-452c60 20 108 44 145 73c52 42 80 93 80 153zM363 24v452c-60 -20 -108 -44 -145 -73c-52 -42 -80 -93 -80 -153s28 -111 80 -153c37 -29 85 -53 145 -73z M838 -40v580c-132 -2 -246 -13 -343 -31v-518c97 -18 211 -29 343 -31zM1313 -9v518c-97 18 -211 29 -343 31v-580c132 2 246 13 343 31'], + 0xE59F: [1701,1201,871,80,831,'831 314l-71 -102l-102 71l-10 56l69 -49c-16 120 -106 217 -222 243v-588c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12 c46 0 88 52 102 179c7 63 7 608 7 912v588c-129 -29 -225 -145 -225 -283h-58c0 170 122 312 283 343c0 250 1 594 11 719c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12 c-46 0 -88 -52 -102 -179c-7 -61 -7 -565 -7 -874c144 -28 257 -144 279 -290l47 67'], + 0xE5A0: [1701,1201,871,80,831,'831 186l-10 -56l-47 67c-22 -146 -135 -262 -279 -290c0 -250 -1 -594 -11 -719c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179 c7 61 7 565 7 874c-161 31 -283 173 -283 343h58c0 -138 96 -254 225 -283v588c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179 c-7 -63 -7 -608 -7 -912v-588c116 26 206 123 222 243l-69 -49l10 56l102 71'], + 0xE5A1: [1701,1201,842,80,802,'802 419l-79 20c35 -55 55 -120 55 -189c0 -170 -122 -312 -283 -343c0 -250 -1 -594 -11 -719c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12 c46 0 88 52 102 179c7 61 7 565 7 874c-161 31 -283 173 -283 343s122 312 283 343c0 250 1 594 11 719c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179 c-7 -61 -7 -565 -7 -874c35 -7 69 -19 99 -35l-27 -52c-23 12 -47 22 -72 27v-566c129 29 225 145 225 283c0 59 -18 114 -48 160l-20 -82l-30 48l30 121l121 -30zM363 533c-129 -29 -225 -145 -225 -283s96 -254 225 -283v566'], + 0xE5A2: [1701,1201,832,80,792,'792 433l-36 -119l-119 37l-27 50l81 -25c-37 78 -109 137 -196 157v-566c129 29 225 145 225 283h58c0 -170 -122 -312 -283 -343c0 -250 -1 -594 -11 -719c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74 c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 61 7 565 7 874c-161 31 -283 173 -283 343s122 312 283 343c0 250 1 594 11 719c27 322 126 389 259 389c67 0 116 -49 116 -117c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74 c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -61 -7 -565 -7 -874c108 -21 199 -92 247 -188l24 78zM363 533c-129 -29 -225 -145 -225 -283s96 -254 225 -283v566'], + 0xE5A3: [1161,0,2225,80,1891,'466 1161v-15c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132zM941 1161v-15 c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132zM1416 1161v-15c0 -252 0 -626 -11 -757 c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132zM1891 1161v-15c0 -252 0 -626 -11 -757 c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132'], + 0xE5A4: [580,0,2225,334,1891,'466 0h-132v580h132v-580zM941 580v-580h-132v580h132zM1416 580v-580h-132v580h132zM1891 0h-132v580h132v-580'], + 0xE5A5: [1161,0,2225,334,2145,'720 1044c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1195 1044 c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1670 1044c0 -42 -27 -74 -73 -74 c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM2145 1044c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74 c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/NonUnicode/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Normal/Regular/Main.js new file mode 100644 index 0000000..5ddff9e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Normal/Regular/Main.js @@ -0,0 +1,370 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'GyreTermesMathJax_Normal', + id: 'GYRETERMESNORMAL', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210E: [683,9,500,19,478,'478 105c-61 -87 -95 -114 -146 -114c-27 0 -44 16 -44 42c0 12 7 43 20 92l55 207c4 16 7 29 7 33c0 13 -13 25 -28 25c-35 0 -103 -62 -155 -141c-40 -61 -53 -95 -93 -249h-75l135 512c3 14 6 26 10 37c9 29 14 54 14 68c0 27 -37 24 -67 24v15c60 7 99 14 157 27 l5 -5l-120 -448c93 146 164 211 229 211c39 0 66 -27 66 -67c0 -25 -18 -99 -48 -193c-17 -52 -33 -114 -33 -125c0 -10 7 -18 16 -18c16 0 28 11 82 79'], + 0x1D400: [690,0,722,9,689,'689 0h-324v25l32 3c35 2 48 11 48 33s-12 57 -46 136h-225l-15 -40c-22 -55 -29 -78 -29 -91c0 -26 23 -37 82 -41v-25h-203v25c48 9 60 23 98 117l222 548h28l223 -526c54 -125 65 -139 109 -139v-25zM384 236l-101 243l-94 -243h195'], + 0x1D401: [676,0,667,16,619,'619 188c0 -113 -112 -188 -281 -188h-322v25c73 8 88 20 88 71v484c0 51 -19 67 -88 71v25h309c167 0 260 -57 260 -160c0 -76 -43 -117 -159 -151c70 -15 104 -30 139 -60c35 -31 54 -72 54 -117zM447 179c0 110 -50 164 -153 164h-30v-250c0 -44 17 -61 61 -61 c81 0 122 50 122 147zM420 509c0 94 -32 137 -102 137c-39 0 -54 -13 -54 -49v-224c123 3 156 31 156 136'], + 0x1D402: [691,19,722,49,687,'687 127c-101 -111 -169 -146 -284 -146c-208 0 -354 145 -354 351c0 205 149 359 348 359c48 0 97 -11 155 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-234h-25c-35 76 -58 110 -101 148s-86 56 -133 56c-121 0 -184 -110 -184 -317c0 -101 14 -172 43 -225 c29 -52 92 -87 158 -87c28 0 61 6 90 18c49 19 81 43 140 105'], + 0x1D403: [676,0,722,14,690,'690 345c0 -207 -144 -345 -360 -345h-316v25c58 2 83 22 83 66v493c0 46 -19 61 -83 67v25h305c231 0 371 -125 371 -331zM516 330c0 84 -14 157 -41 210c-34 69 -85 102 -157 102c-39 0 -59 -12 -59 -35v-514c0 -45 13 -58 58 -58c65 0 113 23 147 69 c32 45 52 131 52 226'], + 0x1D404: [676,0,667,16,641,'641 208l-40 -208h-585v25c74 8 88 19 88 71v484c0 51 -19 67 -88 71v25h577v-201h-25c-25 133 -74 167 -237 167c-52 0 -65 -9 -65 -47v-232c108 -1 147 35 162 149h26v-338h-26c-12 116 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 133 17 180 55 c34 29 54 57 84 122h28'], + 0x1D405: [676,0,611,16,583,'583 475h-24c-14 63 -25 90 -47 115c-31 35 -90 52 -182 52c-51 0 -64 -10 -64 -47v-232c100 0 135 35 153 149h25v-338h-25c-14 116 -51 153 -153 155v-233c0 -55 18 -67 110 -71v-25h-360v25c74 8 88 19 88 71v484c0 52 -19 67 -88 71v25h567v-201'], + 0x1D406: [691,19,778,37,755,'755 262c-75 -8 -86 -20 -86 -92v-127c-64 -38 -173 -62 -276 -62c-210 0 -356 144 -356 350s149 360 348 360c48 0 96 -11 155 -35c22 -10 37 -14 46 -14c19 0 30 11 44 46h27v-234h-25c-35 76 -58 110 -101 148c-44 38 -87 56 -133 56c-121 0 -184 -111 -184 -320 c0 -120 21 -206 65 -262c33 -43 75 -62 138 -62c67 0 96 22 96 73v105c0 54 -15 65 -101 70v25h343v-25'], + 0x1D407: [676,0,778,21,759,'759 0h-340v25c73 8 90 22 90 71v230h-241v-230c0 -49 17 -63 90 -71v-25h-337v25c70 9 85 22 85 71v484c0 50 -18 65 -85 71v25h337v-25c-70 -5 -90 -21 -90 -71v-207h241v207c0 50 -20 66 -90 71v25h340v-25c-68 -5 -88 -21 -88 -71v-484c0 -49 16 -62 88 -71v-25'], + 0x1D408: [676,0,389,20,370,'370 0h-350v25c75 7 93 21 93 71v484c0 51 -21 66 -93 71v25h350v-25c-74 -3 -95 -19 -95 -71v-484c0 -52 19 -66 95 -71v-25'], + 0x1D409: [676,96,500,3,479,'479 651c-75 -5 -89 -20 -89 -92v-436c0 -143 -74 -219 -214 -219c-40 0 -80 9 -106 23c-39 23 -67 68 -67 109c0 38 33 72 70 72c39 0 73 -35 73 -75c0 -15 -3 -23 -15 -38c-9 -12 -12 -18 -12 -26c0 -19 18 -32 45 -32c45 0 64 25 64 87v556c0 54 -20 68 -101 71v25 h352v-25'], + 0x1D40A: [676,0,778,30,769,'769 0h-336v25c14 1 27 1 32 1c33 2 47 7 47 20c0 11 -5 20 -24 44l-182 227l-27 -25v-196c0 -49 16 -62 88 -71v-25h-337v25c72 8 87 20 87 71v484c0 52 -18 67 -87 71v25h338v-25c-74 -5 -89 -21 -89 -92v-214l217 218c31 31 36 39 36 55c0 20 -13 28 -49 30 c-5 1 -19 2 -36 3v25h289v-25c-97 -8 -133 -33 -321 -227l305 -378c13 -15 24 -20 49 -21v-25'], + 0x1D40B: [676,0,667,19,638,'638 227l-41 -227h-578v25c73 9 86 20 86 71v484c0 51 -18 67 -86 71v25h349v-25c-87 -4 -101 -17 -101 -92v-472c0 -43 18 -56 79 -56c78 0 134 18 175 55c35 32 54 63 88 141h29'], + 0x1D40C: [676,0,944,14,921,'921 0h-332v25c75 7 89 19 89 75v509l-252 -609h-27l-252 594v-470c0 -74 19 -93 101 -99v-25h-234v25c78 8 91 20 91 80v475c0 52 -16 65 -89 71v25h253l200 -472l200 472h252v-25c-73 -5 -88 -20 -88 -92v-442c0 -71 10 -82 88 -92v-25'], + 0x1D40D: [676,18,722,16,701,'701 651c-65 -10 -78 -23 -78 -80v-589h-28l-447 544v-402c0 -71 18 -90 95 -99v-25h-227v25c73 9 88 23 88 80v474c-48 57 -65 72 -85 72v25h211l349 -429v305c0 71 -19 92 -93 99v25h215v-25'], + 0x1D40E: [691,19,778,35,743,'743 336c0 -207 -147 -355 -354 -355s-354 147 -354 354c0 208 149 356 358 356c201 0 350 -151 350 -355zM566 329c0 208 -64 329 -174 329c-117 0 -180 -116 -180 -332c0 -202 62 -312 177 -312s177 110 177 315'], + 0x1D40F: [676,0,611,16,600,'600 494c0 -77 -44 -138 -125 -169c-44 -18 -78 -21 -213 -22v-186c0 -73 9 -82 88 -92v-25h-334v25c11 2 21 4 24 4c47 6 60 26 60 88v442c0 70 -14 86 -84 92v25h322c167 0 262 -66 262 -182zM428 489c0 108 -33 152 -116 152c-33 0 -50 -12 -50 -35v-268 c71 0 104 7 128 27c26 23 38 61 38 124'], + 0x1D410: [691,176,778,35,743,'743 334c0 -97 -33 -183 -94 -248c-43 -46 -78 -66 -159 -92c18 -37 28 -52 47 -71c34 -34 79 -52 126 -52c19 0 35 3 67 12l6 -24c-75 -27 -118 -35 -179 -35c-88 0 -172 32 -228 88c-23 23 -35 42 -56 86c-76 28 -108 48 -149 94c-58 64 -89 148 -89 239 c0 208 150 360 354 360c206 0 354 -149 354 -357zM566 330c0 208 -64 328 -176 328c-114 0 -178 -117 -178 -327c0 -208 61 -317 177 -317c115 0 177 110 177 316'], + 0x1D411: [676,0,722,26,715,'715 0h-205l-207 313h-27v-196c0 -71 10 -82 88 -92v-25h-338v25c78 9 88 19 88 92v442c0 72 -14 87 -88 92v25h322c183 0 282 -63 282 -178c0 -45 -16 -85 -45 -112c-28 -25 -53 -38 -112 -57l201 -285c10 -13 23 -19 41 -19v-25zM459 494c0 105 -37 148 -129 148 c-25 0 -41 -5 -47 -15c-3 -6 -7 -21 -7 -27v-255c76 1 110 8 136 25c32 21 47 60 47 124'], + 0x1D412: [692,19,556,35,513,'513 192c0 -126 -100 -211 -248 -211c-44 0 -81 7 -130 24c-22 7 -33 10 -41 10c-16 0 -24 -8 -30 -34h-29v247h29c17 -71 31 -105 60 -142c38 -48 86 -72 144 -72c77 0 126 44 126 113c0 53 -24 79 -112 121l-67 32c-85 41 -139 88 -160 141c-7 20 -11 41 -11 66 c0 127 83 204 219 204c39 0 71 -6 117 -23c21 -7 33 -10 42 -10c18 0 25 7 32 34h30v-217h-28c-20 65 -36 94 -70 129c-36 37 -78 56 -123 56c-68 0 -110 -38 -110 -100c0 -49 22 -73 103 -113l147 -73c65 -32 110 -107 110 -182'], + 0x1D413: [676,0,667,31,636,'636 475h-29c-17 119 -69 165 -192 169v-527c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92v527c-124 -4 -176 -50 -193 -169h-29l3 201h600'], + 0x1D414: [676,19,722,16,701,'701 651c-64 -10 -78 -26 -78 -85v-319c0 -96 -27 -172 -76 -211c-43 -35 -111 -55 -182 -55c-74 0 -139 19 -187 54c-59 44 -80 93 -80 190v334c0 72 -12 85 -82 92v25h338v-25c-83 -4 -97 -17 -97 -92v-334c0 -136 44 -195 146 -195c120 0 176 69 176 217v305 c0 73 -20 93 -98 99v25h220v-25'], + 0x1D415: [676,18,722,16,701,'701 651c-52 -7 -66 -20 -90 -82l-228 -587h-27l-256 599c-25 55 -34 63 -84 70v25h336v-25c-15 -1 -28 -2 -33 -2c-38 -2 -53 -13 -53 -36c0 -15 4 -27 23 -72l138 -334l127 329c17 43 20 55 20 71c0 32 -15 39 -86 44v25h213v-25'], + 0x1D416: [676,15,1000,19,981,'981 651c-33 -3 -56 -24 -69 -64l-200 -602h-27l-171 477l-186 -477h-28l-212 602c-17 49 -27 58 -69 64v25h294v-25c-52 -4 -64 -13 -64 -42c0 -9 2 -17 7 -33l120 -364l118 308l-35 96c-11 24 -31 33 -72 35v25h312v-25c-6 -1 -13 -1 -13 -1c-44 -3 -59 -12 -59 -36 c0 -9 4 -24 14 -56l108 -336l112 343c5 14 7 29 7 42c0 31 -15 41 -69 44v25h182v-25'], + 0x1D417: [676,0,722,16,699,'699 0h-340v25c13 1 24 2 28 2c35 2 52 11 52 28c0 11 -9 35 -21 54l-101 162l-38 -51c-74 -100 -94 -132 -94 -154c0 -25 20 -35 81 -41v-25h-250v25c50 6 74 19 104 56l175 221l-198 291c-31 45 -44 55 -80 58v25h346v-25c-14 -1 -26 -2 -31 -2c-36 -2 -48 -10 -48 -31 c0 -12 2 -17 15 -37l97 -150l56 77c47 64 58 85 58 106c0 24 -12 33 -52 35c-3 1 -11 1 -20 2v25h250v-25c-74 -7 -100 -26 -188 -146l-80 -111l182 -283c48 -72 63 -85 97 -86v-25'], + 0x1D418: [676,0,722,15,699,'699 651c-34 -5 -53 -16 -68 -39l-191 -311v-184c0 -74 10 -84 92 -92v-25h-347v25c82 8 93 19 93 92v147l-183 332c-20 34 -46 53 -80 55v25h335v-25l-25 -1c-41 0 -56 -8 -56 -30c0 -11 4 -22 18 -47c0 0 5 -9 6 -12l120 -232l111 185c25 41 39 76 39 95 c0 29 -17 37 -84 42v25h220v-25'], + 0x1D419: [676,0,667,28,634,'634 241l-26 -241h-580v16l382 625l-83 -3c-148 0 -192 -29 -240 -168h-28l21 206h524v-16l-379 -625h74c96 0 178 15 212 39c47 33 70 73 97 167h26'], + 0x1D41A: [473,14,500,25,488,'488 43c-38 -41 -69 -57 -112 -57c-49 0 -71 19 -82 70c-55 -50 -101 -70 -159 -70c-64 0 -110 45 -110 106c0 44 22 79 67 109c38 25 85 43 202 79v73c0 61 -25 88 -84 88c-36 0 -63 -16 -63 -37c0 -6 3 -12 12 -22c13 -16 18 -29 18 -43c0 -34 -28 -58 -68 -58 c-41 0 -65 24 -65 66c0 75 76 126 189 126c122 0 198 -52 198 -137v-261c0 -17 7 -25 21 -25c5 0 8 1 11 4l10 10zM293 100v145c-80 -22 -122 -63 -122 -121c0 -40 21 -67 51 -67c24 0 44 12 71 43'], + 0x1D41B: [676,14,556,17,521,'521 239c0 -149 -93 -253 -226 -253c-50 0 -86 16 -132 57l-79 -56h-12v607c0 40 -9 49 -55 58v24h194v-259c37 39 74 56 122 56c111 0 188 -96 188 -234zM374 221c0 131 -31 198 -93 198c-33 0 -53 -16 -70 -59v-263c0 -48 27 -79 69 -79c64 0 94 65 94 203'], + 0x1D41C: [473,14,444,25,430,'430 91c-58 -74 -114 -105 -191 -105c-125 0 -214 98 -214 237c0 145 100 250 237 250c87 0 154 -48 154 -110c0 -39 -26 -63 -68 -63c-38 0 -55 22 -56 72c0 42 0 42 -5 51c-6 11 -21 19 -37 19c-52 0 -84 -63 -84 -166c0 -136 55 -223 142 -223c41 0 67 14 104 56'], + 0x1D41D: [676,14,556,25,534,'534 20l-62 -8c-62 -7 -87 -12 -133 -25v65c-47 -50 -80 -66 -133 -66c-105 0 -181 99 -181 235c0 145 82 252 192 252c46 0 76 -16 119 -62v183c0 46 -9 53 -76 58v24h215v-575c0 -42 13 -55 59 -58v-23zM336 112v243c-14 38 -45 62 -78 62c-58 0 -85 -59 -85 -188 c0 -127 25 -187 78 -187c22 0 43 11 63 34c12 13 22 30 22 36'], + 0x1D41E: [473,14,444,25,426,'426 111c-65 -94 -114 -125 -195 -125c-124 0 -206 96 -206 242s84 245 209 245c56 0 103 -21 135 -60c31 -39 46 -85 52 -168h-252c4 -70 12 -104 31 -136c20 -34 50 -51 88 -51c43 0 73 18 114 67zM298 282v15c-2 51 -4 79 -9 98c-8 31 -26 47 -55 47 c-49 0 -67 -40 -70 -160h134'], + 0x1D41F: [691,0,333,14,389,'389 591c0 -37 -25 -62 -62 -62c-34 0 -60 24 -60 55c0 11 4 21 13 36c7 10 9 16 9 21c0 12 -11 19 -29 19c-36 0 -50 -22 -50 -77v-122h87v-44h-87v-314c0 -65 12 -77 82 -79v-24h-278v24c46 5 57 17 57 60v333h-57v44h57c0 86 7 127 29 162c27 44 79 68 146 68 c85 0 143 -41 143 -100'], + 0x1D420: [473,206,500,28,483,'483 -55c0 -99 -88 -151 -254 -151c-126 0 -201 34 -201 92c0 41 33 66 96 75c-64 23 -82 41 -82 82c0 52 40 90 119 117c-47 20 -66 33 -88 57c-23 28 -36 61 -36 95c0 95 84 161 203 161c40 0 68 -6 112 -22h130v-53h-81c28 -28 40 -58 40 -98c0 -53 -23 -94 -68 -120 c-34 -20 -59 -26 -106 -26l-45 1c-40 0 -68 -22 -68 -52c0 -28 20 -35 100 -35h65c102 0 164 -46 164 -123zM404 -102c0 33 -26 50 -80 50h-173c-28 -23 -35 -34 -35 -55c0 -44 46 -67 134 -67c99 0 154 26 154 72zM306 311c0 93 -19 131 -66 131s-66 -37 -66 -131 c0 -93 18 -129 66 -129c47 0 66 36 66 129'], + 0x1D421: [676,0,556,16,534,'534 0h-235v24c34 4 47 20 47 57v242c0 56 -17 83 -52 83c-23 0 -47 -12 -69 -35c-10 -9 -17 -19 -17 -23v-267c0 -37 12 -52 49 -57v-24h-241v24c45 9 53 18 53 60v510c0 41 -7 49 -53 58v24h192v-281c52 58 89 78 142 78c82 0 135 -55 135 -141v-248 c0 -42 13 -57 49 -60v-24'], + 0x1D422: [687,0,278,16,255,'255 0h-239v24c46 11 53 19 53 60v294c0 41 -9 50 -53 59v24h192v-380c0 -38 12 -52 47 -57v-24zM214 610c0 -44 -34 -77 -77 -77s-77 33 -77 77s34 77 77 77s77 -33 77 -77'], + 0x1D423: [687,203,333,-57,266,'260 2c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v474c0 43 -12 55 -63 59v24h202v-459zM266 610 c0 -44 -34 -77 -77 -77s-77 33 -77 77s34 77 77 77s77 -33 77 -77'], + 0x1D424: [676,0,556,22,543,'543 0h-234v24c28 1 42 7 42 19c0 8 -7 20 -24 45l-95 134l-23 -24v-114c0 -47 5 -53 52 -60v-24h-239v24c33 3 48 21 48 60v510c0 38 -14 55 -48 58v24h187v-431l128 128c11 11 21 29 21 38c0 13 -11 20 -35 23c-3 1 -13 2 -24 4v23h214v-23c-63 -8 -89 -26 -189 -131 l194 -268c9 -12 14 -15 25 -15v-24'], + 0x1D425: [676,0,278,16,255,'255 0h-239v24c34 3 51 23 51 60v510c0 37 -16 55 -51 58v24h190v-592c0 -40 16 -59 49 -60v-24'], + 0x1D426: [473,0,833,16,814,'814 0h-238v24c38 3 49 15 49 57v242c0 59 -15 83 -53 83c-17 0 -34 -7 -56 -24c-13 -10 -29 -29 -29 -34v-267c0 -38 12 -53 47 -57v-24h-234v24c37 3 48 16 48 57v242c0 60 -15 83 -54 83c-17 0 -34 -7 -55 -23c-13 -10 -29 -29 -29 -35v-267c0 -38 11 -52 46 -57v-24 h-240v24c44 8 55 19 55 60v294c0 41 -11 53 -55 59v24h191v-75c38 60 84 87 147 87s98 -24 128 -87c52 64 90 87 147 87c82 0 135 -55 135 -141v-251c0 -43 11 -55 50 -57v-24'], + 0x1D427: [473,0,556,21,539,'539 0h-235v24c34 4 47 20 47 57v242c0 56 -17 83 -52 83c-23 0 -47 -12 -69 -35c-10 -9 -17 -19 -17 -23v-267c0 -37 12 -52 49 -57v-24h-241v24c45 9 53 18 53 60v294c0 42 -9 52 -53 59v24h191v-75c37 59 83 87 143 87c82 0 135 -55 135 -141v-251 c0 -42 10 -54 49 -57v-24'], + 0x1D428: [473,14,500,25,476,'476 229c0 -139 -96 -243 -225 -243c-131 0 -226 103 -226 246c0 136 99 241 226 241c129 0 225 -104 225 -244zM329 223c0 164 -19 219 -77 219c-62 0 -80 -52 -80 -228c0 -146 20 -197 79 -197c58 0 78 52 78 206'], + 0x1D429: [473,205,556,19,524,'524 239c0 -148 -80 -252 -192 -252c-44 0 -70 13 -118 60v-141c0 -67 17 -87 78 -90v-21h-273v24c48 8 56 17 56 58v501c0 42 -10 52 -54 59v24h191v-69c31 58 67 81 126 81c111 0 186 -95 186 -234zM376 225c0 131 -24 191 -76 191c-22 0 -45 -12 -65 -34 c-12 -13 -21 -29 -21 -36v-243c15 -38 44 -61 77 -61c57 0 85 59 85 183'], + 0x1D42A: [473,205,556,34,536,'536 -205h-267v25c65 12 73 21 73 83v139c-41 -40 -76 -56 -123 -56c-109 0 -185 96 -185 233c0 149 92 254 222 254c50 0 81 -14 132 -57l78 56h15v-595c0 -40 9 -49 55 -58v-24zM342 98v263c0 48 -27 80 -67 80c-63 0 -95 -70 -95 -205c0 -131 31 -196 93 -196 c34 0 59 21 69 58'], + 0x1D42B: [473,0,444,29,434,'434 395c0 -39 -26 -67 -63 -67c-26 0 -41 9 -60 36c-11 16 -20 23 -28 23c-33 0 -61 -43 -61 -95v-189c0 -62 12 -75 73 -79v-24h-266v24c44 8 54 19 54 60v294c0 40 -11 53 -54 59v24h189v-82c47 67 85 94 135 94c47 0 81 -33 81 -78'], + 0x1D42C: [473,14,389,25,361,'361 138c0 -90 -63 -152 -154 -152c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6c-9 0 -15 -7 -26 -28h-25v165h28c21 -87 67 -132 137 -132c45 0 75 26 75 65c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15c16 -5 25 -7 31 -7 c13 0 19 5 25 20h22v-145h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -59 96 -88c100 -41 138 -85 138 -156'], + 0x1D42D: [630,12,333,20,332,'332 100c-41 -82 -81 -112 -148 -112c-69 0 -112 40 -112 105v324h-52v27c65 55 105 100 166 186h25v-169h94v-44h-94v-301c0 -40 11 -57 39 -57c21 0 37 14 57 52'], + 0x1D42E: [461,14,556,16,537,'537 20l-62 -7c-65 -7 -89 -11 -132 -26v65c-58 -50 -93 -66 -145 -66c-83 0 -133 52 -133 140v252c0 42 -8 51 -49 59v24h188v-339c0 -51 15 -71 56 -71c29 0 49 11 82 44v283c0 43 -12 55 -62 59v24h201v-360c0 -43 12 -56 56 -58v-23'], + 0x1D42F: [461,14,500,21,485,'485 437c-31 -3 -39 -11 -58 -55l-160 -396h-26l-120 296c-16 41 -63 141 -65 140c-6 9 -12 12 -35 15v24h250v-24l-18 -2c-25 -2 -35 -9 -35 -24c0 -6 2 -12 9 -31l79 -203l72 182c7 18 11 34 11 45c0 24 -12 31 -55 33v24h151v-24'], + 0x1D430: [461,14,722,23,707,'707 437c-26 -5 -34 -13 -50 -50l-155 -401h-23l-102 310l-125 -310h-24l-148 374c-27 66 -31 72 -57 77v24h222v-24c-28 -4 -38 -12 -38 -28c0 -13 11 -45 39 -115c5 -14 12 -33 21 -54l24 -64l68 171l-6 19c-19 66 -20 67 -59 71v24h234v-24c-38 -3 -48 -8 -48 -24 c0 -9 7 -37 27 -106l34 -127l35 94c31 79 44 116 44 128c0 23 -11 31 -48 35v24h135v-24'], + 0x1D431: [461,0,500,12,484,'484 0h-241v24c31 2 45 8 45 20s-10 31 -33 64l-42 63c-7 -9 -14 -17 -16 -20c-38 -46 -64 -88 -64 -103s14 -22 50 -24v-24h-169v24c37 2 57 19 113 93c9 14 36 47 65 84l-128 197c-20 30 -26 35 -52 39v24h250v-24c-33 -1 -47 -7 -47 -19c0 -13 26 -56 58 -98 c3 -4 7 -10 13 -17c15 21 30 40 36 46c28 32 38 49 38 64s-8 21 -31 22c-3 0 -11 1 -20 2v24h168v-24c-31 -5 -51 -16 -70 -39l-101 -126l148 -228c7 -11 14 -15 30 -20v-24'], + 0x1D432: [461,205,500,16,480,'480 437c-31 -3 -41 -13 -58 -55l-149 -397c-35 -94 -55 -134 -76 -157c-21 -21 -50 -33 -84 -33c-57 0 -97 33 -97 79c0 38 27 64 64 64c34 0 58 -20 58 -49c0 -4 -1 -9 -2 -14c-1 -3 -1 -6 -1 -6c0 -9 8 -17 17 -17c23 0 49 32 66 82l18 53l-120 295 c-17 42 -62 140 -65 140c-6 9 -12 12 -35 15v24h250v-24l-16 -1c-25 -2 -37 -11 -37 -25c0 -8 0 -8 20 -59l72 -185l68 192c9 25 11 34 11 45c0 24 -12 31 -55 33v24h151v-24'], + 0x1D433: [461,0,444,21,420,'420 160l-16 -160h-383v25l234 404c-140 0 -166 -15 -191 -110h-26l7 142h371v-26l-231 -403h29c80 0 113 13 145 57c16 21 24 39 33 71h28'], + 0x1D434: [668,0,611,-51,564,'564 0h-246v16c64 6 78 15 78 53c0 8 -1 17 -2 26l-20 131h-220l-57 -113c-17 -34 -20 -43 -20 -62c0 -25 8 -30 59 -35v-16h-187v16c40 8 50 19 129 152l290 500h26l94 -566c12 -73 19 -81 76 -86v-16zM369 262l-44 260l-150 -260h194'], + 0x1D435: [653,0,611,-8,588,'588 506c0 -41 -15 -74 -43 -98c-32 -28 -61 -40 -132 -57c95 -41 126 -78 126 -151c0 -119 -108 -200 -265 -200h-282v16c56 10 63 16 81 74l123 442c7 25 11 49 11 64c0 29 -14 36 -77 41v16h258c129 0 200 -52 200 -147zM431 204c0 55 -25 99 -67 115 c-20 8 -63 12 -126 12l-32 -119c-23 -80 -35 -127 -35 -140c0 -28 22 -42 64 -42c122 0 196 66 196 174zM487 515c0 74 -36 108 -117 108c-39 0 -51 -6 -57 -28l-65 -232h34c138 0 205 49 205 152'], + 0x1D436: [666,18,667,66,689,'689 664l-37 -199l-18 3c-10 108 -61 162 -153 162c-66 0 -129 -27 -177 -77c-78 -81 -126 -202 -126 -321c0 -130 64 -205 175 -205c82 0 140 29 230 118l17 -14c-90 -106 -170 -149 -273 -149c-153 0 -261 108 -261 261c0 223 192 423 406 423c33 0 73 -6 117 -17 c21 -5 32 -7 41 -7c20 0 30 6 38 22h21'], + 0x1D437: [653,0,722,-8,700,'700 384c0 -118 -60 -231 -160 -301c-76 -53 -181 -83 -295 -83h-253v16c56 10 63 16 81 74l123 442c7 25 11 49 11 64c0 27 -14 35 -77 41v16h278c178 0 292 -105 292 -269zM589 408c0 80 -28 145 -78 180c-32 22 -81 35 -137 35c-41 0 -55 -7 -61 -29l-121 -432 c-17 -62 -22 -82 -22 -95c0 -26 19 -37 65 -37c104 0 185 30 244 90c68 68 110 179 110 288'], + 0x1D438: [653,0,611,-1,634,'634 653l-31 -153l-21 2c1 17 2 32 2 45c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233l79 2c90 3 100 10 138 95l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -39 16 -78 15l-78 3l-32 -115c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34 c76 0 144 10 181 27c43 20 69 45 116 110l16 -8l-62 -162h-507v16c56 10 63 16 81 74l123 442c5 20 11 52 11 64c0 27 -15 35 -77 41v16h497'], + 0x1D439: [653,0,611,8,645,'645 653l-32 -153l-21 2c1 8 1 12 2 19c1 12 1 16 1 23c0 63 -35 76 -204 76c-41 0 -55 -6 -61 -26l-66 -233c168 2 171 3 216 93l18 -5l-76 -234l-17 5c6 31 8 43 8 59c0 20 -8 34 -22 41c-10 4 -16 5 -55 5c-22 0 -44 1 -81 3l-62 -223c-7 -24 -9 -36 -9 -45 c0 -30 18 -41 76 -44v-16h-252v16c57 8 64 14 82 74l123 442c7 25 11 49 11 65c0 28 -11 34 -77 40v16h498'], + 0x1D43A: [666,18,722,52,722,'722 303c-65 -4 -81 -16 -97 -72l-49 -187c-77 -43 -149 -62 -237 -62c-87 0 -160 27 -211 78c-47 48 -76 118 -76 186c0 220 192 420 403 420c41 0 85 -8 134 -24c23 -8 33 -10 44 -10c26 0 43 10 60 34l15 -4l-49 -197l-18 3c-5 45 -12 67 -29 93 c-31 45 -85 71 -149 71c-66 0 -128 -27 -173 -74c-79 -83 -128 -211 -128 -334c0 -131 73 -205 202 -205c45 0 83 12 105 34c12 12 17 24 39 101c20 67 26 93 26 115c0 18 -16 28 -49 31l-29 3v16h266v-16'], + 0x1D43B: [653,0,722,-8,767,'767 637c-57 -10 -65 -16 -82 -74l-132 -481c-2 -8 -3 -16 -3 -24c0 -28 13 -35 78 -42v-16h-273v16c65 7 85 22 101 74l65 236h-285l-66 -244c-2 -7 -3 -15 -3 -22c0 -29 11 -36 71 -44v-16h-246v16c56 10 63 16 81 74l123 442c8 27 11 47 11 62c0 29 -14 37 -77 43v16 h273v-16c-60 -4 -86 -23 -101 -74l-54 -195h285l46 164c7 27 11 47 11 62c0 28 -12 36 -70 43v16h247v-16'], + 0x1D43C: [653,0,333,-8,384,'384 637c-58 -10 -64 -16 -82 -74l-123 -443c-9 -33 -11 -43 -11 -63c0 -28 11 -34 68 -41v-16h-244v16c56 10 63 16 81 74l123 442c8 27 11 47 11 62c0 29 -12 36 -70 43v16h247v-16'], + 0x1D43D: [653,18,444,-6,491,'491 637c-57 -8 -64 -14 -82 -74l-103 -371c-21 -76 -41 -121 -68 -153c-31 -37 -76 -57 -127 -57c-70 0 -117 35 -117 88c0 32 18 54 45 54s49 -22 49 -47v-9c-1 -5 -1 -10 -1 -15c0 -28 11 -40 35 -40s38 15 49 54l131 465c8 29 12 49 12 64c0 27 -14 35 -77 41v16h254 v-16'], + 0x1D43E: [653,0,667,7,722,'722 637c-24 -4 -46 -15 -75 -36l-300 -226l174 -303c28 -47 34 -50 97 -56v-16h-275v16l29 3c32 3 46 11 46 26c0 19 -14 54 -38 95l-121 208l-62 -228l-6 -21c-7 -21 -8 -28 -8 -39c0 -31 9 -37 72 -44v-16h-248v16c59 9 64 14 82 74l123 442c8 27 11 47 11 62 c0 29 -14 37 -77 43v16h273v-16c-59 -4 -86 -24 -101 -74l-53 -194l152 106c89 63 144 116 144 140c0 11 -10 17 -34 19l-27 3v16h222v-16'], + 0x1D43F: [653,0,556,-8,559,'559 179l-58 -179h-509v16c56 10 63 16 81 74l123 442c8 27 11 47 11 62c0 29 -14 37 -77 43v16h273v-16c-60 -4 -86 -23 -101 -74l-123 -443c-6 -21 -10 -42 -10 -50c0 -26 25 -34 100 -34c89 0 130 6 165 24c44 22 70 53 105 125'], + 0x1D440: [653,0,833,-18,873,'873 637c-59 -9 -64 -14 -82 -74l-123 -443c-9 -32 -11 -44 -11 -61c0 -32 9 -37 77 -43v-16h-273v16c65 7 85 22 101 75l129 470l-377 -561h-17l-61 546l-118 -433c-5 -18 -9 -42 -9 -53c0 -28 20 -40 71 -44v-16h-198v16c52 6 67 26 98 130l106 372l3 11l9 30 c6 18 10 33 10 41c0 23 -24 34 -74 37v16h181l55 -493l336 493h167v-16'], + 0x1D441: [653,15,667,-20,727,'727 637c-63 -14 -67 -20 -104 -149l-144 -503h-18l-230 550l-114 -422c-6 -21 -9 -41 -9 -54c0 -28 18 -39 70 -43v-16h-198v16c57 8 65 20 103 148l119 417c-18 39 -39 52 -86 56v16h161l208 -499l102 380l2 8c7 21 9 32 9 44c0 36 -13 46 -70 51v16h199v-16'], + 0x1D442: [666,18,722,60,699,'699 418c-11 -226 -213 -436 -421 -436c-127 0 -218 99 -218 239c0 123 65 251 174 344c78 66 161 101 240 101c135 0 232 -107 225 -248zM594 481c0 94 -49 152 -129 152c-75 0 -138 -40 -194 -125c-59 -87 -106 -232 -106 -324c0 -109 46 -169 130 -169 c72 0 135 41 191 124c63 94 108 237 108 342'], + 0x1D443: [653,0,611,0,605,'605 504c0 -60 -30 -117 -82 -153c-42 -30 -110 -46 -189 -46c-42 0 -66 2 -92 8l-53 -193c-10 -38 -12 -46 -12 -57c0 -35 5 -38 68 -47v-16h-245v16c57 8 64 14 82 74l118 425c13 47 17 65 17 80c0 27 -14 35 -71 42v16h248c136 0 211 -53 211 -149zM502 504 c0 48 -12 78 -38 96c-20 14 -58 23 -96 23c-28 0 -40 -7 -46 -28l-71 -248c29 -5 34 -5 52 -5c62 0 101 8 132 25c44 26 67 72 67 137'], + 0x1D444: [666,182,722,59,699,'699 433c0 -160 -104 -326 -256 -406c-54 -29 -89 -38 -164 -43l-54 -57h25s2 0 4 1l15 -1l187 -39c8 -1 17 -2 28 -2c72 0 113 18 169 76l15 -11c-26 -35 -39 -49 -63 -68c-52 -39 -121 -65 -176 -65c-38 0 -91 9 -152 26c-44 13 -73 18 -93 18c-40 0 -77 -10 -115 -31 l-10 15c77 54 86 62 177 142c-45 11 -67 21 -95 43c-52 42 -81 109 -81 190c0 123 65 250 174 344c77 65 160 101 236 101c133 0 229 -98 229 -233zM594 480c0 95 -49 153 -129 153c-75 0 -138 -40 -194 -125c-59 -87 -106 -232 -106 -325c0 -106 46 -166 128 -166 c75 0 138 41 194 124c62 93 107 236 107 339'], + 0x1D445: [653,0,611,-13,588,'588 509c0 -45 -18 -84 -51 -113c-36 -32 -69 -46 -146 -63l93 -245c19 -52 39 -69 83 -72v-16h-148l-123 324l-65 5l-56 -209c-10 -37 -12 -47 -12 -57c0 -35 6 -39 68 -47v-16h-244v16c57 9 63 15 81 74l123 442c8 27 12 51 12 63c0 11 -6 23 -13 28 c-11 7 -16 8 -58 14v16h248c135 0 208 -51 208 -144zM483 511c0 75 -41 112 -124 112c-32 0 -45 -7 -51 -28l-65 -229c25 -4 33 -5 51 -5c125 0 189 51 189 150'], + 0x1D446: [667,18,500,17,508,'508 667l-40 -199l-18 3c-2 67 -10 101 -33 126c-21 24 -51 36 -88 36c-68 0 -110 -39 -110 -102c0 -49 8 -63 99 -154c91 -92 113 -130 113 -195c0 -114 -87 -200 -202 -200c-31 0 -58 6 -104 23c-27 9 -41 13 -52 13c-20 0 -31 -10 -38 -33h-18l34 223l20 -2 c-2 -9 -2 -13 -2 -20c0 -98 62 -169 146 -169c74 0 129 57 129 133c0 43 -13 69 -60 118l-39 42c-13 15 -26 29 -39 42c-60 64 -75 93 -75 147c0 98 74 167 178 167c31 0 64 -5 85 -14c21 -8 33 -11 46 -11c22 0 31 5 45 26h23'], + 0x1D447: [653,0,556,59,633,'633 653l-44 -163l-17 2c2 17 3 32 3 45c0 56 -32 81 -104 81h-55l-139 -498c-10 -36 -12 -46 -12 -58c0 -31 11 -40 52 -43l38 -3v-16h-290v16c66 5 90 21 106 74l144 528c-153 2 -185 -15 -238 -123l-18 4l42 154h532'], + 0x1D448: [653,18,722,102,765,'765 637c-62 -14 -66 -19 -104 -149l-83 -285c-44 -150 -127 -221 -258 -221c-127 0 -218 69 -218 164c0 42 12 104 43 213l53 192c4 17 7 33 7 45c0 29 -10 35 -78 41v16h273v-16c-68 -7 -84 -21 -105 -91l-5 -19c-68 -234 -98 -352 -98 -386c0 -71 57 -118 140 -118 c110 0 174 68 218 232l13 49c49 172 74 271 74 287c0 30 -18 41 -71 46v16h199v-16'], + 0x1D449: [653,18,611,76,688,'688 637c-23 -1 -39 -13 -56 -40l-373 -615h-19l-85 520c-21 125 -23 128 -79 135v16h241v-16c-63 -7 -77 -17 -77 -51c0 -5 0 -10 1 -15l66 -443l206 356c34 58 52 100 52 119s-18 29 -63 34v16h186v-16'], + 0x1D44A: [653,18,833,71,906,'906 637c-38 -12 -48 -21 -75 -72l-303 -583h-20l-50 454h-5l-222 -454h-19l-62 517c-12 94 -16 111 -28 123c-10 8 -19 11 -51 15v16h236v-16c-61 -7 -73 -16 -73 -55l1 -14l44 -406l172 348l-9 69c-7 49 -17 56 -75 58v16h238v-16c-53 -5 -68 -18 -68 -59l1 -14 l40 -402l187 368c14 27 21 50 21 67c0 28 -10 35 -65 40v16h185v-16'], + 0x1D44B: [653,0,611,-29,655,'655 637c-43 -14 -73 -37 -125 -95l-169 -194l102 -258c25 -60 34 -66 104 -74v-16h-273v16c66 5 76 10 76 39c0 15 -4 31 -11 49l-67 165l-151 -172c-14 -16 -21 -32 -21 -47c0 -25 17 -34 65 -34v-16h-214v16c53 11 81 36 220 200l83 97l-106 263c-19 46 -34 56 -92 61 v16h264v-16c-55 -7 -71 -16 -71 -41c0 -13 4 -29 15 -56l59 -147l145 167c14 17 20 28 20 41c0 23 -12 30 -61 36v16h208v-16'], + 0x1D44C: [653,0,556,78,633,'633 637c-30 -14 -38 -22 -70 -61l-219 -270l-29 -101l-6 -20c-24 -79 -31 -108 -31 -129c0 -25 14 -35 53 -37l36 -3v-16h-289v16c66 4 88 20 105 74l61 212l-77 269c-17 55 -20 58 -76 66v16h239v-16c-60 -6 -72 -11 -72 -36c0 -15 11 -58 36 -144l31 -110l38 46 c105 122 150 186 150 213c0 17 -13 25 -42 28l-27 3v16h189v-16'], + 0x1D44D: [653,0,556,-6,606,'606 639l-483 -603h161c82 0 132 8 166 28c34 19 52 43 84 107l19 -3l-54 -168h-505v14l479 603h-171c-75 0 -128 -12 -157 -37c-19 -17 -31 -34 -52 -78l-19 5l46 146h486v-14'], + 0x1D44E: [441,11,500,17,476,'476 100c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-88 -124 -131 -157 -201 -157c-64 0 -102 41 -102 111c0 159 153 341 286 341c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21c-47 -171 -89 -343 -89 -363c0 -7 6 -13 14 -13 c9 0 21 9 52 41l28 28zM365 358c0 35 -22 59 -56 61c-42 3 -89 -31 -131 -92c-42 -63 -77 -161 -77 -215c0 -46 22 -74 58 -74c29 0 63 17 87 44c68 74 119 192 119 276'], + 0x1D44F: [683,11,500,23,473,'473 321c0 -158 -166 -332 -317 -332c-57 0 -133 30 -133 53v4l136 501l2 7l5 19c7 23 9 34 9 43c0 22 -6 25 -65 27v17c67 8 103 14 153 23l5 -5l-104 -388c71 110 123 151 193 151c67 0 116 -50 116 -120zM388 306c0 53 -26 86 -70 86c-48 0 -93 -38 -137 -115 c-42 -75 -72 -171 -72 -231c0 -23 15 -34 46 -34c43 0 86 21 123 59c60 62 110 169 110 235'], + 0x1D450: [441,11,444,30,425,'425 360c0 -27 -20 -46 -48 -46c-24 0 -39 14 -39 38c0 10 2 16 9 29c5 9 6 14 6 19c0 12 -14 20 -37 20c-40 0 -80 -18 -109 -48c-56 -59 -91 -148 -91 -233c0 -72 34 -114 91 -114c49 0 88 22 143 81l16 -10c-61 -77 -114 -107 -189 -107c-93 0 -147 55 -147 150 c0 156 140 302 290 302c61 0 105 -34 105 -81'], + 0x1D451: [683,13,500,15,527,'527 678l-99 -372c-34 -113 -65 -230 -65 -246c0 -12 8 -20 18 -20c17 0 27 8 82 71l12 -10c-51 -73 -104 -114 -146 -114c-26 0 -42 18 -42 45c0 23 2 39 13 89c-68 -100 -112 -132 -180 -132c-65 0 -105 43 -105 114c0 150 162 338 292 338c39 0 57 -16 65 -58l44 164 c14 53 15 56 15 70c0 21 -7 24 -62 26v17c64 6 100 12 153 23zM356 361c0 36 -15 55 -45 57c-28 2 -65 -17 -93 -46c-66 -70 -116 -186 -116 -269c0 -40 23 -66 58 -66c92 0 196 172 196 324'], + 0x1D452: [441,11,444,31,412,'412 373c0 -86 -106 -162 -256 -183l-28 -4c-8 -32 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75l12 -12c-59 -68 -136 -108 -207 -108c-78 0 -132 56 -132 137c0 151 157 315 301 315c50 0 80 -26 80 -68zM346 379c0 24 -14 39 -35 39 c-51 0 -125 -77 -159 -166l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97'], + 0x1D453: [678,207,278,-147,424,'424 613c0 -22 -19 -40 -42 -40c-22 0 -37 16 -37 40c0 8 1 13 6 21c3 4 4 9 4 9c0 8 -8 13 -22 13c-56 0 -93 -70 -122 -228h108l-6 -32h-109l-72 -320c-42 -185 -111 -283 -200 -283c-45 0 -79 26 -79 61c0 23 16 41 37 41s39 -17 39 -38c0 -6 -1 -10 -5 -16 c-3 -5 -4 -7 -4 -11c0 -9 8 -16 20 -16c42 0 74 54 97 162l88 420h-90l7 32h92c30 98 51 145 82 185c36 44 74 65 122 65c49 0 86 -28 86 -65'], + 0x1D454: [441,206,500,8,469,'469 366h-50c6 -20 9 -40 9 -56c1 -78 -92 -159 -183 -159c-9 0 -23 1 -31 3c-3 1 -7 1 -7 1c-13 0 -36 -26 -36 -41s26 -31 70 -42c96 -25 144 -69 145 -132c0 -87 -83 -146 -209 -146c-101 0 -167 45 -168 114c-1 46 17 66 116 131c-19 14 -28 26 -28 39 c0 24 18 44 76 84c-57 26 -79 56 -80 108c0 94 89 171 200 171c38 0 71 -10 98 -28c8 -6 13 -8 16 -8h61zM326 -90c-1 46 -38 74 -144 107l-29 9c-2 1 -5 2 -5 2c-8 0 -50 -33 -63 -50c-16 -19 -21 -36 -21 -60c0 -64 48 -102 128 -102c77 0 134 40 134 94zM349 348 c-1 47 -20 71 -57 71c-65 0 -121 -80 -120 -172c0 -47 22 -75 60 -75c34 0 65 22 87 63c18 34 30 78 30 113'], + 0x1D456: [643,11,278,49,276,'235 103c-57 -84 -93 -114 -140 -114c-30 0 -46 20 -46 57c0 20 6 49 22 109l48 177c6 19 9 36 9 44c0 20 -9 23 -63 24v16c39 3 59 6 160 25l3 -2l-88 -322c-6 -20 -16 -50 -16 -66c0 -8 8 -15 16 -15c17 0 39 21 82 78zM276 588c0 -28 -23 -51 -49 -51 c-29 0 -48 21 -48 53c0 31 20 53 47 53s50 -26 50 -55'], + 0x1D457: [643,207,278,-124,301,'246 439l-104 -411c-40 -160 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 17 42 40 42s41 -16 41 -37c0 -8 -2 -13 -8 -21c-4 -5 -5 -7 -5 -11c0 -7 6 -11 18 -11c40 0 63 43 97 181l72 292c12 49 16 70 16 80c0 22 -12 32 -40 32h-7l-27 -1v16c32 2 86 10 170 25z M301 588c0 -28 -23 -51 -49 -51c-29 0 -48 21 -48 53c0 31 20 53 47 53s50 -26 50 -55'], + 0x1D458: [683,11,444,14,461,'461 412c-47 -3 -78 -23 -225 -154l37 -88c40 -97 60 -129 81 -129c15 0 27 11 45 42c5 8 10 17 15 26l15 -11c-46 -84 -71 -109 -111 -109c-29 0 -47 19 -79 82c-18 35 -44 97 -60 141l-42 -32l-48 -180h-75l127 483l2 9l9 33c14 47 20 73 22 90c-2 18 -17 25 -51 25 h-17v16c59 7 97 14 156 27l5 -5l-120 -457l43 33c94 72 143 120 143 140c0 11 -14 18 -39 18h-16v16h183v-16'], + 0x1D459: [683,11,278,41,279,'279 678l-151 -579c-5 -19 -10 -39 -10 -49c0 -12 5 -18 15 -18c18 0 36 15 69 57c8 11 17 23 26 34l13 -9c-65 -96 -99 -125 -151 -125c-32 0 -49 19 -49 56c0 8 1 16 4 26l137 528c3 8 4 15 4 18c0 14 -20 23 -51 23h-17v16c59 7 97 14 156 27'], + 0x1D45A: [441,9,722,12,704,'704 105l-5 -7c-53 -74 -97 -107 -144 -107c-26 0 -40 16 -40 46c0 10 3 27 13 66l58 230c5 20 7 30 7 35c0 12 -9 21 -20 21c-30 0 -81 -46 -131 -116c-49 -69 -69 -119 -108 -273h-75l25 92c43 153 70 259 70 272c0 16 -7 25 -20 25c-34 0 -94 -56 -150 -141 c-34 -52 -49 -90 -97 -248h-75l39 143c36 126 59 217 59 229c0 15 -12 22 -39 22h-25v16l160 31l3 -2l-58 -209c92 145 162 211 223 211c34 0 57 -24 57 -60c0 -19 -15 -75 -40 -152c70 111 112 160 161 191c24 15 42 21 62 21c33 0 58 -27 58 -63c0 -7 -2 -23 -3 -28 l-68 -251c-6 -23 -10 -41 -10 -45c0 -11 4 -16 12 -16c17 0 36 16 65 53l21 26'], + 0x1D45B: [441,9,500,14,474,'474 104c-70 -93 -95 -113 -140 -113c-33 0 -47 16 -47 54c0 10 3 23 16 75l44 165c8 31 14 64 14 76c0 18 -9 29 -24 29c-37 0 -88 -49 -148 -142c-44 -68 -53 -90 -100 -248h-75l96 350c1 5 2 11 2 17c0 20 -13 26 -64 27v16l162 31l3 -2l-67 -218 c103 159 166 220 230 220c39 0 66 -25 66 -61c0 -14 -3 -36 -9 -57l-57 -206c-10 -36 -14 -55 -14 -63c0 -9 7 -16 16 -16c14 0 32 16 61 53c7 8 14 17 21 26'], + 0x1D45C: [441,11,500,27,468,'468 301c0 -76 -40 -160 -106 -225c-58 -58 -122 -87 -188 -87c-91 0 -147 53 -147 140c0 108 75 225 180 281c39 21 77 31 118 31c85 0 143 -57 143 -140zM384 326c0 57 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -156 -74 -228c0 -55 31 -91 78 -91 c44 0 83 27 121 82c43 65 74 162 74 234'], + 0x1D45D: [441,205,500,-75,469,'469 316c0 -160 -154 -327 -300 -327c-23 0 -41 4 -66 17c-20 -77 -37 -152 -37 -166c0 -22 17 -30 64 -30v-15h-205v16c43 1 57 13 67 59l58 224c36 133 71 271 71 283c0 27 -35 27 -65 27l-2 15l154 22h1c3 0 5 -4 5 -4l-31 -109c58 81 106 113 171 113 c72 0 115 -47 115 -125zM379 313c0 57 -19 83 -62 85c-50 3 -108 -46 -135 -114c-30 -75 -65 -205 -65 -239c0 -22 20 -37 48 -37c53 0 102 32 145 95c42 61 69 144 69 210'], + 0x1D45E: [441,205,500,25,483,'483 426l-162 -573c-3 -8 -4 -12 -4 -15c2 -15 22 -25 59 -25h17v-18h-241v16c65 4 81 13 94 53l87 289c-89 -128 -135 -164 -206 -164c-63 0 -102 45 -102 116c0 152 160 336 293 336c41 0 61 -16 77 -62l15 47h73zM380 359c0 33 -26 60 -59 60c-29 0 -62 -18 -93 -49 c-65 -67 -117 -177 -117 -251c0 -47 21 -77 56 -77c25 0 53 13 79 36c68 59 134 198 134 281'], + 0x1D45F: [441,0,389,45,412,'412 390c0 -32 -16 -50 -46 -50c-20 0 -28 5 -36 22c-5 10 -9 14 -16 14c-18 0 -47 -33 -82 -94c-44 -74 -60 -114 -111 -282h-76l81 292c16 68 16 68 16 82c0 28 -38 23 -69 23v17l155 27l3 -2l-53 -217l14 36c16 40 56 98 97 141c26 27 53 42 76 42c28 0 47 -21 47 -51 '], + 0x1D460: [442,13,389,16,366,'366 442l-20 -139h-16c-10 78 -40 115 -92 115c-35 0 -56 -20 -56 -54c0 -27 16 -58 54 -105c47 -58 68 -101 68 -140c0 -76 -60 -130 -144 -130c-17 0 -32 3 -55 10c-20 5 -38 9 -49 9s-15 -4 -24 -21h-16l20 159h16c16 -95 46 -136 102 -136c44 0 74 31 74 77 c0 29 -17 64 -56 115c-42 54 -63 97 -63 129c0 67 47 110 121 110c17 0 31 -2 56 -10c19 -5 28 -7 36 -7c15 0 22 4 30 18h14'], + 0x1D461: [546,11,278,37,296,'296 428l-5 -32h-84l-88 -333c-6 -13 1 -25 14 -25c16 0 32 16 81 79l13 -7c-63 -93 -96 -121 -142 -121c-27 0 -48 16 -48 37c0 10 7 41 17 74l78 296h-74c-1 3 -1 6 -1 6c0 11 7 17 32 25c32 8 95 60 133 110c5 6 8 9 12 9h3l7 -15l-28 -103h80'], + 0x1D462: [441,11,500,42,475,'475 108c-69 -98 -91 -117 -138 -117c-30 0 -48 17 -48 48c0 22 15 87 45 197c-115 -193 -168 -247 -239 -247c-35 0 -53 18 -53 55c0 19 6 50 25 123l37 142c9 33 14 59 14 67c0 7 -5 16 -11 18c-9 5 -11 6 -49 6v14c57 7 93 14 150 27l3 -2l-91 -363c-1 -3 -1 -5 -1 -9 c0 -15 8 -25 21 -25c32 0 81 51 141 146c45 72 56 96 110 244h74l-79 -299c-19 -72 -19 -72 -19 -78c0 -11 4 -17 11 -17c16 0 30 13 83 79'], + 0x1D463: [441,18,444,21,426,'426 382c0 -38 -26 -102 -61 -152c-105 -146 -195 -248 -220 -248c-9 0 -9 27 -9 46c0 61 -12 207 -24 283c-12 75 -24 93 -61 93c-10 0 -19 0 -30 -1v13c45 7 79 14 111 21c8 3 15 4 20 4c9 0 11 -6 30 -114c13 -66 18 -122 25 -257l31 32c72 74 137 184 137 231 c0 10 -5 18 -18 30c-18 16 -24 28 -24 44c0 21 14 34 37 34c30 0 56 -27 56 -59'], + 0x1D464: [441,18,667,16,648,'648 389c0 -64 -73 -186 -212 -353l-9 -11c-26 -33 -36 -43 -45 -43c-7 0 -9 3 -11 30l-33 304l-88 -141s-105 -193 -116 -193c-9 0 -11 8 -13 47l-4 88c-4 81 -17 197 -28 245c-8 36 -15 42 -44 42h-29v13s72 12 123 24c11 0 13 -2 19 -34c14 -72 28 -193 32 -281 l192 304c5 8 8 10 13 10c6 0 8 -3 8 -14l32 -352c131 164 165 217 165 260c0 12 -6 22 -22 37s-21 23 -21 37c0 20 15 33 39 33c30 0 52 -22 52 -52'], + 0x1D465: [441,11,444,-27,447,'447 404c0 -21 -14 -36 -34 -36c-9 0 -16 2 -28 9c-9 5 -18 8 -24 8c-18 0 -54 -44 -98 -121c0 -15 12 -69 36 -163c1 -2 2 -7 4 -16c7 -28 16 -41 30 -41c13 0 24 10 47 40c9 12 14 17 22 27l14 -8c-58 -90 -84 -114 -122 -114c-32 0 -45 15 -58 67l-30 120l-90 -118 c-50 -60 -62 -69 -93 -69s-50 16 -50 42c0 20 14 35 34 35c9 0 19 -3 32 -10c10 -6 20 -9 26 -9c11 0 30 18 51 48l82 117l-29 123c-14 60 -20 69 -45 69c-8 0 -20 -2 -39 -7l-17 -4l-4 15l11 4c62 21 94 29 117 29c27 0 38 -20 52 -88l11 -55c70 107 107 143 151 143 c24 0 41 -15 41 -37'], + 0x1D466: [441,206,444,-24,426,'426 386c0 -57 -47 -167 -131 -305c-103 -172 -211 -287 -268 -287c-30 0 -51 18 -51 44c0 22 17 39 39 39c12 0 22 -5 37 -17c11 -8 17 -11 24 -11c13 0 25 8 48 33c18 19 63 78 71 91c6 12 10 24 10 35c0 40 -55 264 -82 332c-19 49 -37 64 -77 64c-11 0 -19 -1 -31 -4 v17l32 6l98 17l9 1h4c15 0 71 -164 86 -253l20 -116c86 142 122 219 122 259c0 14 -7 23 -26 34c-20 13 -28 23 -28 39c0 22 16 37 39 37c30 0 55 -25 55 -55'], + 0x1D467: [428,81,389,-2,380,'380 417l-290 -344c58 -13 77 -26 121 -83c33 -41 45 -50 70 -50c16 0 27 6 27 15c0 4 -2 9 -5 15c-6 12 -9 21 -9 29c0 19 14 32 34 32c21 0 35 -14 35 -36c0 -40 -44 -76 -94 -76c-29 0 -62 13 -112 44c-47 29 -79 42 -105 42c-16 0 -29 -5 -45 -18l-9 9l310 372h-146 c-47 0 -60 -9 -81 -59l-16 4l31 115h284v-11'], + 0x1D468: [683,0,667,-67,593,'593 0h-304v25c64 6 79 17 79 59c0 14 -2 33 -8 72c-3 13 -5 30 -7 52h-215l-59 -102c-10 -17 -15 -32 -15 -46c0 -24 19 -35 65 -35v-25h-196v25c36 8 51 21 83 70l372 588h25l96 -572c13 -76 18 -81 84 -86v-25zM346 248l-37 243l-148 -243h185'], + 0x1D469: [669,0,667,-24,624,'624 523c0 -41 -17 -81 -47 -106c-35 -29 -66 -43 -142 -62c102 -33 137 -71 137 -149c0 -128 -112 -206 -295 -206h-301v25c48 6 64 21 80 72l122 449c7 25 11 47 11 57c0 12 -7 25 -15 30c-12 7 -21 9 -58 11v25h272c155 0 236 -50 236 -146zM419 229 c0 37 -12 67 -35 85c-21 16 -50 22 -115 24l-66 -244c-4 -14 -5 -21 -5 -29c0 -23 18 -33 57 -33c44 0 78 13 105 40c36 36 59 98 59 157zM477 536c0 67 -29 101 -87 101c-32 0 -42 -8 -52 -44l-61 -225c74 3 108 10 139 30c40 26 61 74 61 138'], + 0x1D46A: [685,18,667,32,677,'677 685l-51 -234l-32 6c2 13 3 22 3 35c0 98 -50 158 -131 158c-42 0 -83 -17 -120 -48c-90 -79 -160 -249 -160 -393c0 -109 56 -174 150 -174c31 0 62 6 90 18c42 18 70 41 120 100l30 -22c-32 -44 -49 -62 -78 -84c-57 -43 -123 -65 -194 -65 c-163 0 -272 104 -272 259c0 243 185 444 408 444c41 0 86 -7 131 -21c15 -5 30 -8 38 -8c15 0 24 7 38 29h30'], + 0x1D46B: [669,0,722,-46,685,'685 396c0 -228 -189 -396 -445 -396h-286v25c48 6 65 21 80 72l121 446c9 33 12 49 12 59c0 24 -10 33 -42 37l-31 5v25h290c189 0 301 -102 301 -273zM538 457c0 122 -54 181 -165 181c-33 0 -48 -10 -55 -38l-128 -474l-1 -4c-9 -27 -12 -42 -12 -54 c0 -24 16 -34 54 -34c97 0 168 38 223 118c52 77 84 194 84 305'], + 0x1D46C: [669,0,667,-27,653,'653 669l-43 -190l-27 5c0 62 -7 87 -30 111c-27 27 -81 42 -154 42c-41 0 -53 -9 -63 -44l-61 -223c132 -1 158 12 205 106l28 -4l-74 -273l-28 5c3 19 4 30 4 44c0 69 -30 88 -144 90l-56 -209c-10 -21 -15 -42 -15 -63c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-59 -194h-554v25c52 8 64 19 80 72l123 449c6 23 10 46 10 61c0 20 -11 29 -42 33l-31 4v25h540'], + 0x1D46D: [669,0,667,-13,660,'660 669l-43 -190l-27 5c0 57 -7 84 -26 107c-28 31 -78 46 -151 46c-41 0 -53 -9 -63 -44l-61 -223c131 1 151 12 198 106l28 -4l-74 -273l-28 5c3 19 4 30 4 44c0 68 -30 88 -137 90l-54 -201l-4 -15c-8 -26 -11 -41 -11 -53c0 -31 15 -40 71 -44v-25h-295v25 c52 8 64 19 80 72l123 449c6 23 10 46 10 61c0 20 -11 29 -42 33l-31 4v25h533'], + 0x1D46E: [685,18,722,21,706,'706 304c-53 -4 -60 -12 -79 -82l-48 -181l-28 -13c-57 -27 -156 -46 -234 -46c-176 0 -296 109 -296 269c0 153 87 304 219 381c61 35 131 53 208 53c46 0 81 -6 124 -21c19 -7 27 -9 36 -9c20 0 31 8 42 30h31l-51 -221l-29 4c-2 68 -9 97 -31 130 c-22 32 -61 51 -108 51s-90 -17 -129 -51c-90 -79 -156 -243 -156 -390c0 -122 58 -188 164 -188c39 0 80 13 94 30c4 6 4 6 29 91c25 82 29 102 29 127c0 9 -6 20 -12 24c-11 6 -19 8 -62 12v26h287v-26'], + 0x1D46F: [669,0,778,-24,799,'799 644c-51 -7 -65 -19 -81 -72l-109 -397l-6 -22c-15 -52 -19 -72 -19 -87c0 -29 18 -39 73 -41v-25h-317v25c67 4 87 18 101 72l64 232h-239l-50 -181l-4 -16c-10 -31 -13 -49 -13 -64c0 -32 9 -38 73 -43v-25h-296v25c50 7 64 20 80 72l122 449c8 28 11 46 11 58 c0 22 -10 31 -42 35l-31 5v25h317v-25c-65 -2 -85 -17 -101 -72l-54 -199h239l47 173c5 19 10 49 10 61c0 20 -10 28 -41 32l-32 5v25h298v-25'], + 0x1D470: [669,0,389,-32,406,'406 644c-51 -6 -66 -19 -82 -72l-114 -420c-14 -50 -18 -71 -18 -87c0 -28 15 -37 72 -40v-25h-296v25c49 6 64 20 80 72l123 449c5 19 10 49 10 61c0 20 -10 28 -41 32c-11 2 -22 4 -32 5v25h298v-25'], + 0x1D471: [669,99,500,-46,524,'524 644c-49 -6 -64 -19 -81 -72l-128 -479c-35 -131 -101 -192 -209 -192c-88 0 -152 42 -152 101c0 40 28 70 64 70c35 0 63 -27 63 -63c0 -14 -2 -20 -13 -33c-8 -9 -10 -14 -10 -21c0 -12 8 -18 27 -18c37 0 51 27 90 177l114 432c7 27 11 50 11 61 c0 18 -12 28 -42 32l-31 5v25h297v-25'], + 0x1D472: [669,0,667,-21,702,'702 644c-43 -6 -51 -9 -94 -48l-216 -198l157 -338c11 -24 25 -31 63 -35v-25h-280v25l27 3c27 2 38 10 38 24c0 12 -3 21 -13 43l-113 242l-67 -249c-1 -5 -2 -11 -2 -17c0 -33 14 -42 66 -46v-25h-289v25c49 6 64 19 80 72l122 449c8 28 11 46 11 58 c0 22 -10 31 -42 35l-31 5v25h310v-25c-59 -5 -78 -20 -94 -72l-62 -228l197 175c57 53 77 79 77 98c0 15 -10 22 -35 25l-21 2v25h211v-25'], + 0x1D473: [669,0,611,-22,590,'590 194l-59 -194h-553v25c49 6 64 20 80 72l123 449c5 19 10 49 10 61c0 20 -10 28 -41 32c-11 2 -22 4 -32 5v25h317v-25c-66 -4 -85 -17 -101 -72l-129 -478c-3 -11 -5 -24 -5 -32c0 -21 19 -30 64 -30c85 0 156 21 211 61c37 28 58 51 91 106'], + 0x1D474: [669,12,889,-29,917,'917 644c-51 -6 -66 -20 -81 -72l-123 -449c-7 -18 -10 -37 -10 -55c0 -32 14 -40 72 -43v-25h-312v25c65 4 84 18 100 72l125 464l-375 -573h-28l-67 559l-101 -369c-14 -50 -19 -75 -19 -92c0 -41 16 -53 80 -61v-25h-207v25c54 12 61 23 101 153l109 373 c7 26 11 44 11 58c0 28 -9 32 -72 35v25h221l54 -480l310 480h212v-25'], + 0x1D475: [669,15,722,-27,748,'748 644c-58 -13 -63 -21 -102 -153l-143 -506h-28l-257 549l-99 -356c-12 -42 -18 -75 -18 -94c0 -39 21 -54 80 -59v-25h-208v25c55 11 62 22 101 153l120 411c-19 44 -28 50 -83 55v25h195l215 -465l80 287c11 41 18 75 18 94c0 38 -21 54 -80 59v25h209v-25'], + 0x1D476: [685,18,722,27,691,'691 454c0 -149 -86 -311 -213 -401c-65 -47 -139 -71 -215 -71c-141 0 -236 96 -236 239c0 142 89 306 213 393c67 47 138 71 209 71c139 0 242 -98 242 -231zM547 532c0 71 -41 119 -101 119c-68 0 -123 -45 -175 -142s-100 -274 -100 -372c0 -75 39 -121 102 -121 c55 0 102 32 149 102c65 99 125 296 125 414'], + 0x1D477: [669,0,611,-27,613,'613 514c0 -120 -107 -197 -273 -197c-27 0 -46 1 -81 5l-54 -199c-5 -17 -10 -49 -10 -59c0 -27 16 -36 72 -39v-25h-294v25c52 8 64 19 80 72l123 449c6 23 10 46 10 61c0 20 -11 29 -42 33l-31 4v25h287c139 0 213 -54 213 -155zM467 546c0 58 -31 91 -84 91 c-19 0 -30 -4 -39 -14c-4 -6 -4 -6 -11 -30l-64 -239c17 -1 29 -2 42 -2c71 0 108 23 134 84c13 31 22 75 22 110'], + 0x1D478: [685,208,722,27,691,'691 452c0 -133 -67 -273 -177 -372c-77 -69 -132 -89 -262 -97c-22 -21 -46 -47 -46 -47c0 -4 15 -7 38 -8c35 -2 88 -11 110 -18l42 -13c37 -12 56 -15 83 -15c61 0 97 18 155 78l21 -19c-81 -110 -150 -149 -259 -149c-41 0 -74 6 -136 26c-52 16 -75 21 -104 21 c-32 0 -58 -6 -114 -28l-14 24l156 130c5 4 10 8 14 12c2 2 3 4 5 7c-3 4 -6 6 -14 9c-53 19 -66 26 -92 51c-45 42 -70 102 -70 167c0 243 206 474 422 474c140 0 242 -98 242 -233zM547 532c0 71 -41 119 -101 119c-68 0 -123 -45 -175 -142c-53 -97 -100 -274 -100 -373 c0 -73 39 -119 102 -119c55 0 102 32 149 103c66 98 125 294 125 412'], + 0x1D479: [669,0,667,-29,623,'623 526c0 -56 -30 -108 -83 -143c-30 -20 -55 -29 -109 -40l83 -246c22 -59 32 -67 88 -72v-25h-202l-107 331h-29l-55 -193c-9 -32 -14 -57 -14 -71c0 -30 14 -38 72 -42v-25h-296v25c49 6 64 20 80 72l123 449c5 19 10 49 10 61c0 20 -10 28 -41 32c-11 2 -22 4 -32 5 v25h276c159 0 236 -47 236 -143zM472 542c0 61 -33 95 -90 95c-31 0 -40 -8 -49 -44l-60 -230c62 1 101 8 127 25c44 27 72 88 72 154'], + 0x1D47A: [685,18,556,2,526,'526 681l-40 -201l-27 4c-13 117 -52 166 -132 166c-64 0 -104 -40 -104 -105c0 -45 15 -67 77 -114c123 -93 168 -159 168 -246c0 -124 -89 -203 -229 -203c-40 0 -74 7 -123 24c-23 8 -36 11 -46 11c-19 0 -26 -6 -38 -35h-30l36 224l29 -2c4 -61 12 -92 32 -123 c26 -41 70 -65 122 -65c50 0 84 19 107 58c12 21 19 46 19 68c0 47 -34 93 -113 153c-57 44 -97 88 -119 130c-8 17 -13 39 -13 66c0 110 87 194 201 194c29 0 56 -5 98 -19c26 -8 41 -11 51 -11c21 0 35 8 44 26h30'], + 0x1D47B: [669,0,611,50,650,'650 669l-36 -192l-27 2c-5 111 -44 154 -138 155l-140 -506c-7 -27 -11 -47 -11 -62c0 -32 12 -38 83 -41v-25h-331v25h14c51 0 77 20 91 72l148 537c-102 -2 -165 -43 -217 -143l-25 7l38 171h551'], + 0x1D47C: [669,18,722,67,744,'744 644c-55 -11 -62 -21 -102 -153l-66 -228c-31 -109 -55 -162 -89 -201c-45 -53 -112 -80 -197 -80c-131 0 -223 68 -223 166c0 33 11 93 34 175l55 206c9 35 15 64 15 76c0 22 -10 30 -42 35l-31 4v25h311v-25c-62 -3 -77 -15 -94 -72l-82 -300 c-26 -94 -28 -105 -28 -133c0 -63 46 -101 122 -101c55 0 99 20 133 60c30 37 52 86 79 184l58 209c12 44 19 79 19 96c0 36 -23 52 -80 57v25h208v-25'], + 0x1D47D: [669,18,667,65,715,'715 644c-28 -9 -46 -21 -59 -40l-393 -622h-32l-76 509c-22 143 -28 153 -90 153v25h298v-25c-68 -6 -76 -11 -76 -45c0 -5 0 -10 1 -16l51 -401l190 302c39 62 59 105 59 127c0 19 -12 28 -40 31l-25 2v25h192v-25'], + 0x1D47E: [669,18,889,65,940,'940 645c-42 -6 -56 -18 -84 -73l-286 -590h-29l-59 489l-233 -489h-29l-78 579c-10 71 -13 73 -77 84v24h277v-25c-47 -6 -61 -17 -61 -53c0 -6 0 -11 1 -16l39 -349l150 311c-1 86 -11 100 -71 108v24h269v-25c-53 -5 -63 -14 -63 -58c0 -12 0 -12 6 -65l33 -295 l156 327c13 26 15 34 15 46c0 36 -7 41 -63 45v25h187v-24'], + 0x1D47F: [669,0,667,-24,694,'694 644c-36 -5 -55 -17 -99 -61l-199 -205l74 -237c29 -94 44 -108 116 -116v-25h-308v25c54 5 68 12 68 38c0 22 -11 64 -38 141l-19 60l-134 -148c-23 -25 -30 -38 -30 -51c0 -23 20 -36 65 -40v-25h-214v25c43 8 73 36 231 210l68 74l-84 272c-16 46 -31 57 -91 63 v25h305v-25l-30 -3c-33 -4 -44 -13 -44 -36c0 -15 11 -58 34 -129c4 -10 7 -22 17 -55l94 99c52 55 70 80 70 98c0 15 -10 22 -33 24l-22 2v25h203v-25'], + 0x1D480: [669,0,611,73,659,'659 644c-38 -8 -57 -23 -91 -69l-190 -267l-52 -191c-7 -25 -8 -32 -8 -45c0 -37 12 -44 77 -47v-25h-322v25c69 5 83 15 101 72l60 216l-88 268c-19 53 -22 56 -73 63v25h283v-25c-55 -2 -70 -9 -70 -37c0 -18 10 -53 33 -119l19 -59l25 -77l129 186c21 30 26 42 26 60 c0 35 -14 44 -67 46v25h208v-25'], + 0x1D481: [669,0,611,-11,590,'590 640l-434 -605h70c88 0 147 14 192 45c40 27 78 69 109 119l27 -5l-59 -194h-506v29l434 605h-78c-110 0 -173 -37 -252 -147l-28 4l57 178h468v-29'], + 0x1D482: [462,14,500,-21,455,'455 112c-58 -87 -104 -126 -151 -126c-37 0 -67 29 -67 66c0 14 2 26 14 67c-57 -96 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 156 150 348 273 348c43 0 65 -21 74 -72l18 59l111 7l-71 -236c-25 -82 -34 -123 -34 -148c0 -9 4 -15 12 -15c16 0 31 15 72 70z M303 373c0 27 -15 45 -37 47c-27 2 -60 -29 -90 -82c-41 -74 -74 -174 -74 -226c0 -31 19 -54 45 -54c27 0 57 26 84 75c39 69 72 180 72 240'], + 0x1D483: [699,13,500,-14,444,'444 338c0 -179 -157 -351 -320 -351c-66 0 -138 32 -138 60c0 6 10 45 20 81l94 327c27 94 39 144 39 157c0 20 -15 30 -45 30h-18v27c89 10 138 17 208 30l-90 -328c51 68 87 91 138 91c66 0 112 -51 112 -124zM319 325c0 46 -15 69 -44 69c-33 0 -64 -29 -89 -84 c-16 -34 -36 -89 -49 -134c-11 -39 -28 -117 -28 -129c0 -16 13 -27 31 -27c43 0 82 30 116 91c36 62 63 155 63 214'], + 0x1D484: [462,13,444,-5,392,'392 372c0 -42 -25 -70 -62 -70c-34 0 -58 22 -58 52c0 12 4 23 13 39c6 9 8 15 8 19c0 10 -10 17 -22 17c-31 0 -59 -24 -86 -71c-36 -65 -62 -155 -62 -218c0 -53 29 -89 73 -89c43 0 74 23 122 90l28 -18c-35 -50 -51 -69 -77 -91c-34 -29 -77 -45 -121 -45 c-91 0 -153 62 -153 151c0 160 144 324 285 324c67 0 112 -37 112 -90'], + 0x1D485: [699,13,500,-21,517,'517 699l-111 -405c-34 -124 -57 -214 -57 -223c0 -6 5 -12 11 -12c15 0 39 27 67 72l22 -16c-55 -88 -100 -126 -149 -126c-38 0 -60 23 -60 61c0 16 2 29 11 68c-57 -95 -102 -131 -166 -131c-61 0 -106 52 -106 125c0 157 150 350 272 350c29 0 48 -9 72 -33l18 68 c24 88 29 109 29 118c0 18 -15 28 -41 28h-21v27c100 8 149 15 209 29zM308 371c0 28 -15 48 -37 49c-30 2 -66 -30 -98 -87c-36 -65 -67 -157 -70 -211c-2 -35 16 -63 41 -63c29 0 58 25 86 74c35 64 78 194 78 238'], + 0x1D486: [462,13,444,5,398,'398 375c0 -36 -19 -73 -54 -105c-50 -46 -99 -68 -203 -88c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 22 118 91l29 -17c-60 -99 -113 -138 -190 -138c-87 0 -151 62 -151 147c0 165 143 328 288 328c61 0 105 -36 105 -87zM306 395c0 23 -9 34 -28 34 c-48 0 -94 -76 -130 -215c57 18 82 32 109 61c32 33 49 76 49 120'], + 0x1D487: [698,205,333,-169,446,'446 618c0 -31 -21 -53 -51 -53c-28 0 -49 21 -49 49c0 10 3 19 11 31c4 6 5 11 5 11c0 8 -7 13 -17 13c-36 0 -66 -50 -91 -149l-18 -71h92l-9 -42h-90c-56 -265 -68 -313 -95 -394c-31 -92 -54 -137 -90 -172c-32 -31 -70 -46 -114 -46c-60 0 -99 31 -99 79 c0 29 24 54 51 54c26 0 50 -24 50 -48c0 -11 -4 -22 -12 -34c-2 -4 -4 -9 -4 -9c0 -6 8 -11 18 -11c40 0 59 41 90 189l88 392h-73l9 42h73c29 101 48 142 90 188c36 40 84 61 136 61c61 0 99 -31 99 -80'], + 0x1D488: [462,203,500,-52,478,'478 373h-67c4 -16 6 -26 6 -42c0 -60 -31 -111 -89 -144c-38 -22 -83 -34 -127 -34c-12 0 -20 1 -31 4c-8 3 -15 4 -20 4c-13 0 -28 -20 -28 -36c0 -15 19 -29 51 -38l53 -15c109 -31 149 -64 149 -125c0 -88 -98 -150 -239 -150c-115 0 -188 41 -188 106 c0 24 11 48 27 62c24 19 44 27 106 42c-44 15 -62 34 -62 66c0 37 14 51 96 97c-54 23 -80 59 -80 110c0 101 99 182 222 182c46 0 76 -9 110 -33h111v-56zM266 -100c0 26 -13 43 -41 57c-22 10 -98 36 -110 37c-8 1 -38 -17 -51 -30c-20 -19 -29 -36 -29 -55 c0 -46 46 -78 111 -78c76 0 120 25 120 69zM300 372c0 35 -19 59 -45 59s-47 -16 -66 -49c-21 -38 -38 -99 -38 -139c0 -38 15 -59 42 -59c31 0 57 23 78 69c17 37 29 85 29 119'], + 0x1D489: [699,9,556,-13,498,'498 127c-66 -103 -106 -136 -167 -136c-39 0 -66 24 -66 58c0 41 12 87 61 231c10 30 27 79 27 89c0 11 -10 21 -22 21c-27 0 -61 -31 -104 -94c-49 -72 -68 -121 -119 -296h-121l154 567c6 22 8 33 8 42c0 23 -13 34 -41 34l-22 -1v27c81 7 131 15 208 30l-107 -416 c99 141 144 179 212 179c47 0 76 -28 76 -75c0 -19 -10 -60 -30 -122l-58 -178c-3 -8 -3 -9 -3 -12c0 -7 9 -16 17 -16c13 0 32 21 75 83'], + 0x1D48A: [658,9,278,2,266,'238 127c-70 -106 -107 -136 -167 -136c-41 0 -69 25 -69 63c0 14 5 40 13 69l58 215c4 17 7 32 7 40c0 19 -16 29 -46 29h-13v27c78 6 148 16 202 28l-91 -334c-4 -17 -9 -43 -9 -52c0 -8 7 -15 15 -15c15 0 38 21 64 60l14 20zM266 590c0 -37 -31 -67 -69 -67 c-37 0 -66 30 -66 69c0 35 31 66 66 66c38 0 69 -31 69 -68'], + 0x1D48B: [658,207,278,-189,284,'239 462l-114 -438c-40 -155 -109 -231 -209 -231c-63 0 -105 31 -105 77c0 29 22 53 49 53s49 -22 49 -49c0 -10 -2 -17 -10 -28c-4 -6 -5 -7 -5 -10c0 -6 12 -12 24 -12c28 0 45 31 71 131l92 355c8 30 12 54 12 67c0 21 -13 30 -42 30h-20v27c112 10 148 15 208 28z M284 590c0 -37 -31 -67 -69 -67c-37 0 -66 30 -66 69c0 35 31 66 66 66c38 0 69 -31 69 -68'], + 0x1D48C: [699,8,500,-23,483,'483 424c-46 -6 -67 -18 -135 -76l-63 -55c39 -195 50 -230 78 -230c19 0 35 16 62 64l22 -11c-50 -92 -86 -124 -136 -124c-62 0 -91 53 -123 223l-39 -27l-50 -188h-122l156 567c6 22 8 32 8 42c0 23 -13 34 -42 34l-21 -1v27c78 8 131 16 208 30l-123 -460 c126 99 164 136 164 162c0 16 -12 21 -51 23v25h207v-25'], + 0x1D48D: [699,9,278,2,290,'290 699l-145 -523c-15 -54 -22 -86 -22 -100c0 -8 7 -15 15 -15c18 0 38 21 78 80l22 -14c-69 -105 -107 -136 -168 -136c-41 0 -68 24 -68 60c0 23 13 83 34 158l75 264c20 73 33 127 33 142c0 18 -15 28 -42 28c-5 0 -10 0 -21 -1v27c75 7 123 14 209 30'], + 0x1D48E: [462,9,778,-14,722,'722 122c-58 -98 -98 -131 -160 -131c-43 0 -67 22 -67 63c0 29 14 89 36 153l45 131c4 13 7 24 7 30c0 11 -11 21 -23 21c-30 0 -70 -41 -112 -116c-36 -63 -43 -81 -101 -273h-120l65 207c33 101 45 143 45 160c0 12 -8 22 -18 22c-15 0 -43 -21 -65 -47 c-57 -68 -94 -153 -147 -342h-121l67 238c27 97 35 129 35 144c0 23 -28 25 -54 25v27c113 9 137 12 200 27l-64 -199c65 101 95 138 132 166c28 23 58 34 86 34c42 0 67 -26 67 -68c0 -28 -6 -52 -26 -104c83 132 130 172 198 172c44 0 77 -30 77 -71 c0 -26 -8 -64 -23 -107l-45 -133c-21 -67 -21 -67 -21 -78c0 -8 7 -14 16 -14c13 0 34 21 57 58c4 7 8 13 12 18'], + 0x1D48F: [462,9,556,-6,493,'493 122c-58 -97 -99 -131 -159 -131c-43 0 -68 22 -68 60c0 26 12 83 28 131l55 166c3 10 5 18 5 21c0 11 -12 21 -25 21c-18 0 -49 -22 -69 -49c-62 -81 -98 -168 -145 -341h-121l56 204c32 113 46 166 46 178c0 19 -12 24 -54 25v27c56 2 136 13 200 27l-64 -198 c67 99 86 123 123 158c27 26 63 41 100 41c47 0 73 -26 73 -75c0 -24 -10 -68 -26 -115l-36 -109c-19 -56 -25 -77 -25 -87s6 -17 14 -17c17 0 30 14 70 76'], + 0x1D490: [462,13,500,-3,441,'441 311c0 -169 -136 -324 -285 -324c-92 0 -159 63 -159 148c0 168 139 327 287 327c92 0 157 -63 157 -151zM322 375c0 36 -18 58 -47 58c-33 0 -63 -25 -90 -75c-34 -63 -69 -204 -69 -280c0 -39 19 -62 49 -62c36 0 66 30 95 94c33 72 62 198 62 265'], + 0x1D491: [462,205,500,-120,446,'446 341c0 -173 -141 -354 -277 -354c-21 0 -33 4 -68 22c-4 -15 -4 -17 -11 -41c-19 -70 -26 -100 -26 -114c0 -24 15 -31 65 -32v-27h-249v27c48 -1 56 8 75 74l100 388c14 52 22 88 22 98c0 19 -9 23 -54 25v27l193 28l-38 -115c59 83 103 115 160 115 c66 0 108 -47 108 -121zM321 334c2 32 -13 55 -39 57s-60 -24 -85 -63c-15 -23 -24 -48 -46 -121c-27 -91 -38 -132 -38 -149c0 -20 17 -36 39 -36c34 0 66 28 97 82c36 65 68 164 72 230'], + 0x1D492: [462,205,500,1,471,'471 449l-85 -304c-43 -142 -80 -277 -80 -295c0 -20 15 -28 51 -28h14v-27h-267v27c62 3 73 11 90 63l63 213c-52 -82 -92 -111 -152 -111c-65 0 -104 49 -104 130c0 55 17 114 52 175c59 103 147 170 223 170c23 0 44 -9 54 -22c9 -11 12 -22 17 -50l15 59h109z M325 371c0 28 -13 47 -35 48c-28 2 -63 -29 -95 -85c-41 -72 -69 -162 -69 -218c0 -38 13 -57 39 -57c31 0 59 24 88 74c35 62 72 185 72 238'], + 0x1D493: [462,0,389,-21,389,'389 396c0 -42 -25 -73 -58 -73c-17 0 -30 8 -45 25c-6 9 -12 13 -16 13c-14 0 -38 -28 -65 -76c-27 -46 -42 -84 -72 -181l-33 -104h-121c71 240 102 357 102 382c0 19 -9 23 -54 25v27c121 10 140 13 200 28l-66 -209c79 159 120 209 171 209c34 0 57 -26 57 -66'], + 0x1D494: [462,13,389,-19,333,'333 461l-23 -153l-27 2c-16 83 -42 119 -88 119c-32 0 -53 -21 -53 -53c0 -23 17 -53 56 -98c56 -65 81 -114 81 -159c0 -75 -63 -132 -148 -132c-21 0 -39 4 -63 12c-13 5 -24 8 -31 8c-13 0 -25 -8 -29 -20h-27l22 166l27 -3c13 -89 45 -133 96 -133c32 0 57 24 57 54 c0 25 -18 59 -56 104c-66 79 -80 107 -80 161c0 77 53 126 134 126c20 0 33 -3 58 -13c18 -7 26 -9 36 -9c15 0 18 2 29 21h29'], + 0x1D495: [594,9,278,-11,281,'281 407h-83l-33 -119c-36 -124 -54 -193 -54 -212c0 -8 8 -15 16 -15c16 0 42 27 76 80l22 -14c-66 -103 -106 -136 -166 -136c-42 0 -70 26 -70 65c0 18 9 61 24 113l68 238h-51v35c79 30 129 72 183 152h35l-39 -145h72v-42'], + 0x1D496: [462,9,556,15,492,'492 120c-52 -89 -101 -129 -161 -129c-44 0 -65 19 -65 60c0 29 6 55 24 110c-103 -144 -133 -170 -200 -170c-50 0 -75 25 -75 74c0 25 7 58 21 108l40 133c9 29 14 57 14 73c0 20 -10 25 -56 28v27c48 2 107 10 181 23c15 3 22 4 28 5l-94 -308 c-14 -45 -15 -51 -15 -66c0 -17 7 -25 21 -25c20 0 42 17 73 55c58 72 86 138 142 331h118l-78 -268c-14 -45 -25 -93 -25 -105c0 -10 6 -17 14 -17c17 0 37 20 72 74'], + 0x1D497: [462,13,444,16,401,'401 395c0 -42 -21 -96 -61 -154c-55 -80 -102 -133 -229 -254h-26l4 136c1 20 1 37 1 41c0 108 -11 195 -27 227c-7 13 -16 16 -47 16v27c83 12 106 16 155 28c21 -80 27 -138 31 -334c99 113 126 153 126 188c0 11 -5 20 -20 37c-18 20 -24 34 -24 51c0 31 26 58 56 58 c32 0 61 -32 61 -67'], + 0x1D498: [462,13,667,16,614,'614 400c0 -84 -87 -217 -272 -413h-27l-23 285l-113 -199l-57 -86h-27c2 64 2 85 0 163c-3 139 -17 233 -38 249c-8 7 -16 8 -41 8v27c83 14 114 19 155 28c23 -86 30 -151 33 -275l156 275h27l32 -332c88 103 119 151 119 181c0 10 -6 23 -20 42c-15 21 -21 34 -21 49 c0 32 26 60 56 60c33 0 61 -29 61 -62'], + 0x1D499: [462,13,500,-46,469,'469 401c0 -29 -26 -53 -56 -53c-11 0 -18 2 -32 11c-12 6 -19 9 -25 9c-23 0 -47 -24 -83 -82c-5 -7 -6 -9 -9 -13l32 -156c8 -39 18 -53 37 -53c18 0 28 9 67 59l21 -14c-61 -88 -103 -122 -151 -122c-50 0 -75 40 -97 155l-24 -39c-59 -96 -81 -116 -131 -116 c-38 0 -64 24 -64 59c0 32 24 56 55 56c13 0 24 -4 40 -13c10 -6 15 -8 21 -8c18 0 28 8 48 41l44 70l-30 154c-10 49 -24 67 -56 67c-9 0 -16 0 -35 -2v27l167 24c19 -28 27 -53 45 -138c79 111 111 138 158 138c31 0 58 -29 58 -61'], + 0x1D49A: [462,205,444,-94,392,'392 398c0 -101 -119 -338 -249 -497c-55 -67 -120 -106 -175 -106c-35 0 -62 26 -62 60c0 29 24 55 50 55c18 0 43 -9 60 -21c9 -7 27 -14 34 -14c17 0 46 22 67 52c17 24 25 46 25 69c0 31 -16 126 -50 288c-15 71 -31 112 -48 122c-7 4 -12 5 -30 5v27 c65 6 101 12 149 24c18 -47 44 -158 66 -277l12 -75c70 134 87 174 87 205c0 13 -5 21 -24 35c-24 18 -31 30 -31 55c0 30 27 57 57 57c33 0 62 -30 62 -64'], + 0x1D49B: [449,78,389,-43,368,'368 439l-281 -335c51 -22 75 -45 107 -106c17 -35 29 -47 47 -47c13 0 22 7 22 16c0 4 -2 8 -7 15c-10 11 -13 20 -13 31c0 28 23 52 50 52c28 0 53 -24 53 -52c0 -52 -47 -91 -108 -91c-41 0 -78 14 -131 50c-35 24 -54 33 -74 33c-11 0 -17 -3 -32 -14 c-6 -5 -12 -10 -19 -14l-25 22l292 354h-145c-30 0 -46 -15 -63 -61l-28 3l43 154h312v-10'], + 0x1D6A4: [441,11,278,49,235,'235 103c-57 -84 -93 -114 -140 -114c-30 0 -46 20 -46 57c0 20 6 49 22 109l48 177c6 19 9 36 9 44c0 20 -9 23 -63 24v16c39 3 59 6 160 25l3 -2l-88 -322c-6 -20 -16 -50 -16 -66c0 -8 8 -15 16 -15c17 0 39 21 82 78'], + 0x1D6A5: [441,207,278,-124,246,'246 439l-104 -411c-40 -160 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 17 42 40 42s41 -16 41 -37c0 -8 -2 -13 -8 -21c-4 -5 -5 -7 -5 -11c0 -7 6 -11 18 -11c40 0 63 43 97 181l72 292c12 49 16 70 16 80c0 22 -12 32 -40 32h-7l-27 -1v16c32 2 86 10 170 25'], + 0x1D6A8: [690,0,840,80,760,'760 0h-324v25l32 3c35 2 48 11 48 33s-12 57 -46 136h-225l-15 -40c-22 -55 -29 -78 -29 -91c0 -26 23 -37 82 -41v-25h-203v25c48 9 60 23 98 117l222 548h28l223 -526c54 -125 65 -139 109 -139v-25zM455 236l-101 243l-94 -243h195'], + 0x1D6A9: [676,0,763,80,683,'683 188c0 -113 -112 -188 -281 -188h-322v25c73 8 88 20 88 71v484c0 51 -19 67 -88 71v25h309c167 0 260 -57 260 -160c0 -76 -43 -117 -159 -151c70 -15 104 -30 139 -60c35 -31 54 -72 54 -117zM484 509c0 94 -32 137 -102 137c-39 0 -54 -13 -54 -49v-224 c123 3 156 31 156 136zM511 179c0 110 -50 164 -153 164h-30v-250c0 -44 17 -61 61 -61c81 0 122 50 122 147'], + 0x1D6AA: [676,0,737,80,657,'657 475h-24c-14 63 -25 90 -47 115c-31 35 -100 52 -192 52c-51 0 -64 -10 -64 -47v-499c0 -55 18 -67 110 -71v-25h-360v25c74 8 88 19 88 71v484c0 52 -19 67 -88 71v25h577v-201'], + 0x1D6AB: [690,0,761,80,681,'681 0h-601l280 690h28zM497 39l-183 440l-170 -440h353'], + 0x1D6AC: [676,0,785,80,705,'705 208l-40 -208h-585v25c74 8 88 19 88 71v484c0 51 -19 67 -88 71v25h577v-201h-25c-25 133 -74 167 -237 167c-52 0 -65 -9 -65 -47v-232c108 -1 147 35 162 149h26v-338h-26c-12 116 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 133 17 180 55 c34 29 54 57 84 122h28'], + 0x1D6AD: [676,0,766,80,686,'686 241l-26 -241h-580v16l382 625l-83 -3c-148 0 -192 -29 -240 -168h-28l21 206h524v-16l-379 -625h74c96 0 178 15 212 39c47 33 70 73 97 167h26'], + 0x1D6AE: [676,0,898,80,818,'818 0h-340v25c73 8 90 22 90 71v230h-241v-230c0 -49 17 -63 90 -71v-25h-337v25c70 9 85 22 85 71v484c0 50 -18 65 -85 71v25h337v-25c-70 -5 -90 -21 -90 -71v-207h241v207c0 50 -20 66 -90 71v25h340v-25c-68 -5 -88 -21 -88 -71v-484c0 -49 16 -62 88 -71v-25'], + 0x1D6AF: [691,19,868,80,788,'788 336c0 -207 -147 -355 -354 -355s-354 147 -354 354c0 208 149 356 358 356c201 0 350 -151 350 -355zM611 329c0 208 -64 329 -174 329c-117 0 -180 -116 -180 -332c0 -202 62 -312 177 -312s177 110 177 315zM536 216h-18c-3 44 -25 63 -77 63h-17 c-59 0 -71 -14 -75 -63h-18v121v121h18c3 -44 25 -63 77 -63h17c59 0 71 14 75 63h18v-121v-121'], + 0x1D6B0: [676,0,510,80,430,'430 0h-350v25c75 7 93 21 93 71v484c0 51 -21 66 -93 71v25h350v-25c-74 -3 -95 -19 -95 -71v-484c0 -52 19 -66 95 -71v-25'], + 0x1D6B1: [676,0,899,80,819,'819 0h-336v25c14 1 27 1 32 1c33 2 47 7 47 20c0 11 -5 20 -24 44l-182 227l-27 -25v-196c0 -49 16 -62 88 -71v-25h-337v25c72 8 87 20 87 71v484c0 52 -18 67 -87 71v25h338v-25c-74 -5 -89 -21 -89 -92v-214l217 218c31 31 36 39 36 55c0 20 -13 28 -49 30 c-5 1 -19 2 -36 3v25h289v-25c-97 -8 -133 -33 -321 -227l305 -378c13 -15 24 -20 49 -21v-25'], + 0x1D6B2: [690,0,840,80,760,'760 0h-324v25l32 3c35 2 48 11 48 33s-162 418 -162 418l-124 -322c-21 -56 -29 -78 -29 -91c0 -26 23 -37 82 -41v-25h-203v25c48 9 60 23 98 117l222 548h28l223 -526c54 -125 65 -139 109 -139v-25'], + 0x1D6B3: [676,0,1067,80,987,'987 0h-332v25c75 7 89 19 89 75v509l-252 -609h-27l-252 594v-470c0 -74 19 -93 101 -99v-25h-234v25c78 8 91 20 91 80v475c0 52 -16 65 -89 71v25h253l200 -472l200 472h252v-25c-73 -5 -88 -20 -88 -92v-442c0 -71 10 -82 88 -92v-25'], + 0x1D6B4: [676,18,845,80,765,'765 651c-65 -10 -78 -23 -78 -80v-589h-28l-447 544v-402c0 -71 18 -90 95 -99v-25h-227v25c73 9 88 23 88 80v474c-48 57 -65 72 -85 72v25h211l349 -429v305c0 71 -19 92 -93 99v25h215v-25'], + 0x1D6B5: [662,0,731,80,651,'637 473h-19c-3 41 -23 59 -72 59h-362c-48 0 -69 -16 -72 -59h-18v189h543v-189zM513 216h-18c-3 44 -25 63 -77 63h-107c-59 0 -71 -14 -75 -63h-18v121v121h18c3 -44 25 -63 77 -63h107c59 0 71 14 75 63h18v-121v-121zM651 0h-571v222h19c9 -77 36 -92 85 -92h363 c49 0 76 16 85 93h19v-223'], + 0x1D6B6: [691,19,868,80,788,'788 336c0 -207 -147 -355 -354 -355s-354 147 -354 354c0 208 149 356 358 356c201 0 350 -151 350 -355zM611 329c0 208 -64 329 -174 329c-117 0 -180 -116 -180 -332c0 -202 62 -312 177 -312s177 110 177 315'], + 0x1D6B7: [676,0,898,80,818,'818 0h-340v25c73 8 90 22 90 71v494c0 19 -11 39 -30 39h-181c-19 0 -30 -20 -30 -39v-494c0 -49 17 -63 90 -71v-25h-337v25c70 9 85 22 85 71v484c0 50 -18 65 -85 71v25h738v-25c-68 -5 -88 -21 -88 -71v-484c0 -49 16 -62 88 -71v-25'], + 0x1D6B8: [676,0,744,80,664,'664 494c0 -77 -44 -138 -125 -169c-44 -18 -78 -21 -213 -22v-186c0 -73 9 -82 88 -92v-25h-334v25c11 2 21 4 24 4c47 6 60 26 60 88v442c0 70 -14 86 -84 92v25h322c167 0 262 -66 262 -182zM492 489c0 108 -33 152 -116 152c-33 0 -50 -12 -50 -35v-268 c71 0 104 7 128 27c26 23 38 61 38 124'], + 0x1D6B9: [691,19,868,80,788,'788 336c0 -207 -147 -355 -354 -355s-354 147 -354 354c0 208 149 356 358 356c201 0 350 -151 350 -355zM609 395c-13 167 -74 263 -172 263c-104 0 -165 -91 -178 -263h350zM610 279h-352c9 -172 70 -265 176 -265c105 0 166 92 176 265'], + 0x1D6BA: [662,0,784,80,704,'704 199l-54 -199h-570v21c13 4 22 13 30 23l238 280l-242 296c-9 11 -16 18 -26 21v21h572l3 -143h-26c-12 84 -40 105 -142 105h-174l169 -209l-246 -285h322c64 0 97 12 117 69h29'], + 0x1D6BB: [676,0,765,80,685,'685 475h-29c-17 119 -69 165 -192 169v-527c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92v527c-124 -4 -176 -50 -193 -169h-29l3 201h600'], + 0x1D6BC: [676,0,848,80,768,'768 451h-30c0 47 -44 87 -90 87c-120 0 -143 -149 -143 -288v-133c0 -74 10 -84 92 -92v-25h-347v25c82 8 93 19 93 92v133c0 139 -23 288 -143 288c-46 0 -90 -40 -90 -87h-30c0 107 24 225 130 225c143 0 207 -170 207 -376h14c0 206 64 376 207 376 c106 0 130 -118 130 -225'], + 0x1D6BD: [676,0,814,80,734,'734 351c0 -128 -137 -175 -247 -189v-66c0 -52 19 -66 95 -71v-25h-350v25c75 7 93 21 93 71v66c-110 15 -245 62 -245 189c0 121 135 172 245 188v41c0 51 -21 66 -93 71v25h350v-25c-74 -3 -95 -19 -95 -71v-41c110 -16 247 -66 247 -188zM577 351 c0 86 -37 132 -90 153v-305c53 20 90 66 90 152zM325 201v301c-50 -21 -85 -67 -85 -151s35 -129 85 -150'], + 0x1D6BE: [676,0,843,80,763,'763 0h-340v25c13 1 24 2 28 2c35 2 52 11 52 28c0 11 -9 35 -21 54l-101 162l-38 -51c-74 -100 -94 -132 -94 -154c0 -25 20 -35 81 -41v-25h-250v25c50 6 74 19 104 56l175 221l-198 291c-31 45 -44 55 -80 58v25h346v-25c-14 -1 -26 -2 -31 -2c-36 -2 -48 -10 -48 -31 c0 -12 2 -17 15 -37l97 -150l56 77c47 64 58 85 58 106c0 24 -12 33 -52 35c-3 1 -11 1 -20 2v25h250v-25c-74 -7 -100 -26 -188 -146l-80 -111l182 -283c48 -72 63 -85 97 -86v-25'], + 0x1D6BF: [676,0,880,80,800,'800 574c-50 -16 -49 -78 -49 -142c0 -183 -99 -243 -230 -258v-78c0 -52 19 -66 95 -71v-25h-350v25c75 7 93 21 93 71v78c-131 15 -230 75 -230 258c0 64 1 126 -49 142v30c109 -25 211 -104 211 -236c0 -70 25 -121 68 -148v360c0 51 -21 66 -93 71v25h350v-25 c-74 -3 -95 -19 -95 -71v-359c43 26 68 77 68 147c0 132 102 211 211 236v-30'], + 0x1D6C0: [691,0,850,80,770,'770 0h-282l15 187c67 31 83 75 83 227c0 168 -50 239 -161 239c-93 0 -161 -62 -161 -243c0 -154 31 -209 84 -223l15 -187h-283v190h19c4 -36 -2 -66 70 -66h151l-3 40c-146 26 -216 134 -216 252c0 145 113 275 324 275c214 0 325 -131 325 -275 c0 -113 -63 -222 -216 -252l-3 -40h150c72 0 66 30 70 66h19v-190'], + 0x1D6C1: [680,10,761,80,681,'681 680l-280 -690h-28l-293 690h601zM617 641h-353l183 -440'], + 0x1D6C2: [473,14,679,80,599,'599 110c0 -54 -20 -124 -70 -124c-25 0 -52 37 -62 102c-39 -61 -94 -102 -172 -102c-139 0 -215 86 -215 238c0 178 95 249 206 249c55 0 97 -45 133 -123l21 111h139l-34 -157c-13 -59 -29 -119 -53 -170c12 -41 26 -84 43 -84c25 0 37 19 43 60h21zM407 283 c-34 86 -75 160 -120 160c-61 0 -71 -130 -71 -225c0 -65 8 -202 79 -202c22 0 38 23 52 40c24 28 42 126 60 227'], + 0x1D6C3: [691,217,650,80,570,'570 186c0 -154 -107 -200 -241 -200c-49 0 -79 16 -111 40v-26c0 -100 20 -217 20 -217h-158v736c0 129 113 172 223 172c93 0 222 -30 222 -145c0 -109 -80 -135 -120 -151c73 -27 165 -81 165 -209zM424 189c0 77 -10 152 -61 179c-14 -10 -28 -17 -44 -17 c-14 0 -44 11 -44 34c0 17 21 35 45 35c15 0 29 -2 45 -11c22 30 22 98 22 135c0 57 -20 117 -84 117c-67 0 -85 -64 -85 -135v-429c34 -44 67 -81 111 -81c69 0 95 80 95 173'], + 0x1D6C4: [473,232,720,80,640,'640 461c-129 -174 -206 -319 -249 -430c14 -81 21 -147 21 -169c0 -90 -49 -94 -68 -94c-87 0 -130 66 -130 129c0 52 18 139 104 305c-33 90 -82 161 -153 161c-21 0 -63 -10 -63 -52h-22c0 64 28 162 100 162c70 0 123 -104 161 -227c33 61 76 132 128 215h171z M382 -152c0 17 -3 66 -11 127c-22 -66 -30 -116 -30 -147s7 -30 15 -30c14 0 26 13 26 50'], + 0x1D6C5: [691,14,666,80,586,'586 200c0 -143 -127 -214 -258 -214c-121 0 -248 61 -248 210c0 102 90 168 204 194l-64 52c-18 15 -53 45 -53 111c0 58 48 138 169 138c100 0 174 -41 174 -97c0 -25 -31 -39 -51 -39c-28 0 -50 16 -66 46c-15 27 -46 54 -97 54c-29 0 -49 -21 -49 -44 c0 -22 28 -39 41 -49l117 -91c87 -68 181 -182 181 -271zM440 190c0 57 -40 106 -105 159l-16 13c-61 -31 -94 -98 -94 -179c0 -77 36 -167 108 -167c92 0 107 76 107 174'], + 0x1D6C6: [473,14,573,80,493,'493 96c0 -58 -46 -110 -204 -110c-72 0 -209 25 -209 123c0 76 69 113 136 133c-60 17 -116 38 -116 121c0 56 84 110 205 110c100 0 174 -42 174 -98c0 -25 -31 -39 -51 -39c-28 0 -50 16 -66 46c-15 27 -18 61 -54 61c-46 0 -70 -49 -70 -100c0 -29 2 -69 35 -85 c14 10 38 17 54 17c14 0 44 -11 44 -34c0 -17 -21 -35 -45 -35c-15 0 -39 2 -55 11c-23 -12 -44 -60 -44 -107c0 -64 32 -94 80 -94c44 0 62 24 72 46c13 28 28 76 67 76c30 0 47 -23 47 -42'], + 0x1D6C7: [667,215,546,80,466,'466 -54c0 -81 -55 -161 -159 -161c-31 0 -70 15 -70 51c0 21 13 43 37 43c37 0 40 -22 64 -22c49 0 98 25 98 67s-32 53 -62 66c-25 11 -94 -3 -148 -3c-100 0 -146 89 -146 225c0 109 49 201 133 311c-57 17 -82 47 -82 77c0 29 30 67 59 67c13 0 31 -6 31 -21 c0 -22 -37 -32 -37 -54c0 -33 17 -35 45 -46c34 38 91 115 132 115c28 0 39 -27 34 -51c-10 -47 -89 -88 -148 -95c-65 -86 -136 -175 -136 -303c0 -114 181 -66 205 -66c138 0 150 -132 150 -200'], + 0x1D6C8: [473,218,673,80,593,'593 -218h-157s20 118 20 218v322c0 99 -24 122 -65 122c-48 0 -60 -76 -68 -125v-319h-138v327c0 57 -13 86 -40 86c-21 0 -43 -20 -43 -62h-22c0 64 28 122 100 122c47 0 83 -34 91 -84c18 45 61 84 131 84c78 0 191 -20 191 -154v-537'], + 0x1D6C9: [691,14,640,80,560,'560 339c0 -198 -90 -354 -240 -353c-150 0 -240 178 -240 352c0 198 92 353 240 353c150 0 240 -178 240 -352zM414 371c-1 127 -7 293 -94 293c-98 0 -94 -152 -94 -293h188zM414 341h-188c0 -129 -1 -325 94 -325c105 0 94 152 94 325'], + 0x1D6CA: [473,14,520,80,440,'440 105c0 -71 -49 -119 -119 -119c-77 0 -130 25 -130 127v233c0 35 -12 73 -33 73c-24 0 -52 -16 -56 -65h-22c0 71 49 119 119 119c77 0 130 -25 130 -127v-233c0 -35 12 -73 33 -73c24 0 52 16 56 65h22'], + 0x1D6CB: [473,14,769,80,689,'689 44c0 -44 -64 -58 -116 -58c-85 0 -146 34 -176 106l-46 137l-22 -20v-209h-138v346c0 35 -12 73 -33 73c-24 0 -52 -16 -56 -65h-22c0 71 49 119 119 119c77 0 130 -25 130 -127v-95l199 182c28 26 40 40 73 40c31 0 56 -22 56 -51c0 -25 -23 -53 -48 -53 c-24 0 -41 23 -52 23c-20 0 -30 -1 -54 -24l-64 -59l56 -166c19 -55 48 -112 74 -112c23 0 28 59 70 59c31 0 50 -18 50 -46'], + 0x1D6CC: [691,14,720,80,640,'640 148c0 -64 -28 -162 -100 -162c-70 0 -107 33 -141 182l-18 80l-142 -248h-159l254 448l-7 33c-15 67 -61 120 -132 120c-27 0 -73 -30 -73 -72h-22c0 64 28 162 100 162c70 0 120 -44 157 -204l72 -313c16 -71 55 -98 116 -98c25 0 73 30 73 72h22'], + 0x1D6CD: [461,218,690,80,610,'610 107c0 -64 -38 -121 -130 -121c-74 0 -92 17 -116 54c-5 -12 -38 -54 -83 -54c-17 0 -50 12 -63 32v-17c0 -101 20 -219 20 -219h-158v679h138v-325c0 -82 35 -120 68 -120c36 0 56 57 64 93v352h137v-330c0 -57 21 -86 48 -86c30 0 45 18 53 62h22'], + 0x1D6CE: [473,11,665,80,585,'585 411c0 -27 -6 -83 -19 -136c-27 -107 -166 -235 -225 -286h-40c-4 60 -32 193 -84 357c-16 50 -33 73 -62 73c-21 0 -49 -16 -53 -65h-22c0 71 54 119 124 119c77 0 135 -65 159 -131c37 -102 49 -176 55 -240c42 42 112 133 112 177c0 65 -50 91 -50 129 c0 31 10 65 53 65c31 0 52 -29 52 -62'], + 0x1D6CF: [667,215,544,80,464,'464 -54c0 -81 -55 -161 -159 -161c-31 0 -70 15 -70 51c0 21 13 43 37 43c37 0 40 -22 64 -22c49 0 98 25 98 67s-32 53 -62 66c-25 11 -94 -3 -148 -3c-100 0 -144 91 -144 189c0 83 69 146 118 179c-12 6 -31 38 -31 69c0 53 26 76 44 99c-57 17 -82 47 -82 77 c0 29 30 67 59 67c13 0 31 -6 31 -21c0 -22 -37 -32 -37 -54c0 -33 17 -35 45 -46c28 35 101 115 142 115c28 0 39 -27 34 -51c-10 -47 -99 -88 -158 -95c-17 -23 -47 -43 -47 -94c0 -24 16 -46 27 -52c22 19 54 23 70 23c14 0 44 -11 44 -34c0 -17 -21 -35 -45 -35 c-15 0 -37 2 -66 16c-61 -40 -116 -96 -116 -163c0 -69 178 -40 202 -40c138 0 150 -122 150 -190'], + 0x1D6D0: [473,14,611,80,531,'531 229c0 -139 -96 -243 -225 -243c-131 0 -226 103 -226 246c0 136 99 241 226 241c129 0 225 -104 225 -244zM384 223c0 164 -19 220 -77 220c-62 0 -80 -53 -80 -229c0 -146 20 -198 79 -198c58 0 78 53 78 207'], + 0x1D6D1: [481,14,715,80,635,'635 362c-23 -6 -56 -11 -94 -14v-131c0 -100 20 -217 20 -217h-158v342c-49 1 -99 4 -142 9v-142c0 -113 0 -223 -96 -223c-72 0 -79 57 -79 121h22c0 -42 32 -60 53 -60c59 0 70 84 70 158v149c-35 4 -61 7 -72 7c-31 0 -57 -25 -57 -67h-22c0 64 32 166 114 166 c47 0 136 -14 238 -14c77 0 154 16 203 35v-119'], + 0x1D6D2: [473,218,616,80,536,'390 221c0 68 -1 222 -73 222c-81 0 -98 -140 -98 -275v-101c28 -28 60 -53 89 -53c60 0 82 92 82 207zM536 238c0 -208 -104 -252 -229 -252c-29 0 -60 12 -88 28v-16c0 -84 17 -216 17 -216h-156v379c0 266 138 312 250 312c118 0 206 -87 206 -235'], + 0x1D6D3: [473,215,545,80,465,'465 -54c0 -81 -55 -161 -159 -161c-31 0 -70 15 -70 51c0 21 13 43 37 43c37 0 40 -22 64 -22c49 0 98 25 98 67s-32 53 -62 66c-25 11 -94 -3 -148 -3c-100 0 -145 88 -145 201c0 110 57 285 308 285c35 0 67 -29 67 -55c0 -38 -25 -57 -66 -57c-47 0 -62 37 -99 37 c-112 0 -178 -77 -178 -210c0 -78 179 -42 203 -42c138 0 150 -132 150 -200'], + 0x1D6D4: [471,14,674,80,594,'384 213c0 91 -2 165 -19 199c-23 9 -44 16 -62 16c-57 0 -76 -48 -76 -224c0 -146 20 -188 79 -188c58 0 78 43 78 197zM594 350c-42 1 -81 10 -114 20c31 -33 51 -81 51 -151c0 -139 -96 -233 -225 -233c-131 0 -226 93 -226 236c0 136 72 230 237 230 c76 0 228 0 277 19v-121'], + 0x1D6D5: [481,16,655,80,575,'575 362c-44 -11 -95 -18 -169 -20v-147c0 -72 -4 -150 60 -150c35 0 50 22 55 62h20c0 -53 -17 -123 -109 -123c-112 0 -164 64 -164 205v159c-53 6 -93 13 -109 13c-31 0 -57 -25 -57 -67h-22c0 64 32 166 114 166c47 0 106 -14 208 -14c77 0 124 16 173 35v-119'], + 0x1D6D6: [473,14,640,80,560,'560 411c0 -27 -10 -102 -10 -156c0 -119 -23 -269 -160 -269c-116 0 -212 37 -212 203c0 71 19 111 19 167s-13 63 -42 63c-21 0 -49 -16 -53 -65h-22c0 71 44 119 114 119c77 0 142 -31 142 -121c0 -46 -20 -102 -20 -163c0 -77 -4 -173 74 -173c81 0 124 91 124 243 c0 75 -59 102 -59 149c0 31 10 65 53 65c31 0 52 -29 52 -62'], + 0x1D6D7: [476,218,812,80,732,'732 234c0 -160 -116 -230 -261 -246v-206h-138v207c-166 19 -253 111 -253 241c0 158 148 240 224 246l12 -24c-68 -21 -90 -87 -90 -214c0 -114 41 -185 107 -213v266c0 98 60 182 178 182c116 0 221 -84 221 -239zM586 217c0 75 2 226 -75 226c-28 0 -40 -65 -40 -149 v-267c63 27 115 95 115 190'], + 0x1D6D8: [473,232,720,80,640,'640 -70c0 -64 -28 -162 -100 -162c-70 0 -107 33 -141 182l-18 80l-142 -248h-159l254 448l-7 33c-15 67 -61 120 -132 120c-27 0 -73 -30 -73 -72h-22c0 64 28 162 100 162c69 0 117 -41 156 -203l109 191h161l-223 -392l26 -113c16 -71 55 -98 116 -98 c25 0 73 30 73 72h22'], + 0x1D6D9: [473,218,880,80,800,'800 443c-50 -16 -49 -78 -49 -142c0 -197 -52 -299 -242 -318v-201h-138v201c-190 19 -242 121 -242 318c0 64 1 126 -49 142v30c109 -25 195 -104 195 -236c0 -85 20 -179 96 -214v438h138v-437c76 34 96 128 96 213c0 132 86 211 195 236v-30'], + 0x1D6DA: [475,14,789,80,709,'709 224c0 -145 -97 -238 -221 -238c-28 0 -69 7 -94 63c-24 -55 -63 -63 -93 -63c-124 0 -221 93 -221 238c0 154 109 235 201 251l12 -24c-34 -19 -67 -124 -67 -219c0 -120 13 -216 75 -216c28 0 76 25 76 92c-9 22 -20 64 -20 85c0 14 15 44 37 44s38 -30 38 -44 c0 -21 -11 -63 -20 -85c0 -68 48 -92 76 -92c62 0 75 96 75 216c0 95 -33 200 -67 219l12 24c92 -16 201 -97 201 -251'], + 0x1D6DB: [691,14,616,80,536,'397 291v101c-28 28 -60 53 -89 53c-60 0 -82 -92 -82 -207c0 -68 1 -222 73 -222c81 0 98 140 98 275zM536 298c0 -266 -138 -312 -250 -312c-118 0 -206 87 -206 235c0 208 104 252 229 252c35 0 75 -17 106 -40v23c0 50 -13 208 -106 208c-40 0 -58 -29 -66 -54 c-11 -35 -45 -40 -57 -40c-29 0 -49 12 -49 49c0 39 63 72 176 72c165 0 223 -170 223 -274v-119'], + 0x1D6DC: [482,14,522,80,442,'442 25c-30 -24 -80 -39 -116 -39c-137 0 -246 95 -246 247c0 155 109 249 246 249c36 0 86 -15 116 -39l-32 -51c-18 31 -55 59 -85 59c-77 0 -96 -85 -99 -191h141v-30h-141c0 -117 16 -213 99 -213c30 0 67 28 85 59'], + 0x1D6DD: [693,14,828,80,748,'487 441c-1 97 -8 222 -44 222c-37 0 -65 -16 -65 -74s23 -126 109 -148zM748 295h-64c0 46 -22 73 -60 87c1 -13 1 -25 1 -36c0 -279 -72 -360 -212 -360c-180 0 -222 81 -222 360c0 35 -9 73 -33 73s-52 -16 -56 -65h-22c0 71 49 119 119 119c77 0 130 -57 130 -127 c0 -271 4 -330 84 -330c65 0 74 59 74 330v53c-107 24 -139 117 -139 189c0 56 25 105 93 105c125 0 167 -143 180 -265c64 -11 127 -44 127 -133'], + 0x1D6DE: [473,14,649,80,569,'478 413c0 27 -4 30 -13 30c-10 0 -29 -10 -39 -48c-2 -8 -5 -22 -7 -40c37 22 59 42 59 58zM569 148c0 -64 -28 -162 -100 -162s-91 92 -91 190c-13 -6 -26 -13 -40 -19c-30 -13 -58 -26 -81 -38c-2 -16 -5 -29 -7 -41c-15 -77 -47 -92 -66 -92c-57 0 -87 23 -87 75 c0 60 47 140 139 201c-4 60 -21 111 -61 111c-27 0 -73 -20 -73 -62h-22c0 64 28 162 100 162s91 -92 91 -190c13 6 26 13 40 19c30 13 57 26 81 38c2 15 5 29 7 41c15 77 47 92 66 92c57 0 87 -23 87 -75c0 -60 -47 -140 -139 -201c5 -60 21 -111 61 -111c27 0 73 20 73 62 h22zM230 104c-38 -22 -59 -42 -59 -58c0 -27 4 -30 13 -30c10 0 29 10 39 48c2 8 5 22 7 40'], + 0x1D6DF: [677,218,832,80,752,'752 229c0 -159 -141 -223 -267 -239v-208h-138v207c-126 16 -267 79 -267 240c0 183 144 231 267 241v207h138v-207c123 -11 267 -58 267 -241zM605 230c0 128 -49 185 -120 205v-416c71 10 120 51 120 211zM347 19v416c-71 -20 -120 -77 -120 -205 c0 -160 49 -201 120 -211'], + 0x1D6E0: [473,217,616,80,536,'390 221c0 68 -1 222 -73 222c-81 0 -98 -140 -98 -275v-101c28 -28 60 -53 89 -53c60 0 82 92 82 207zM536 238c0 -208 -104 -252 -229 -252c-35 0 -75 17 -106 40v-23c0 -50 5 -78 40 -78c57 0 112 21 154 21c89 0 104 -94 104 -163h-22c0 42 -49 44 -77 44 c-42 0 -72 -12 -129 -12c-134 0 -191 123 -191 227v119c0 266 138 312 250 312c118 0 206 -87 206 -235'], + 0x1D6E1: [481,14,955,80,875,'875 362c-17 -4 -60 -8 -111 -11c22 -35 37 -77 37 -127c0 -145 -97 -238 -221 -238c-28 0 -69 7 -94 63c-24 -55 -63 -63 -93 -63c-124 0 -221 93 -221 238c0 53 16 98 40 134c-27 2 -46 3 -53 3c-31 0 -57 -25 -57 -67h-22c0 64 32 166 114 166c47 0 226 -14 328 -14 c77 0 304 16 353 35v-119zM655 232c0 38 -9 78 -21 113l-131 -3c-44 0 -105 3 -164 7c-12 -36 -21 -78 -21 -117c0 -120 13 -216 75 -216c28 0 76 25 76 92c-9 22 -20 64 -20 85c0 14 15 44 37 44s38 -30 38 -44c0 -21 -11 -63 -20 -85c0 -68 48 -92 76 -92 c62 0 75 96 75 216'], + 0x1D6E2: [668,0,775,80,695,'695 0h-246v16c64 6 78 15 78 53c0 8 -1 17 -2 26l-20 131h-220l-57 -113c-17 -34 -20 -43 -20 -62c0 -25 8 -30 59 -35v-16h-187v16c40 8 50 19 129 152l290 500h26l94 -566c12 -73 19 -81 76 -86v-16zM500 262l-44 260l-150 -260h194'], + 0x1D6E3: [653,0,756,80,676,'676 506c0 -41 -15 -74 -43 -98c-32 -28 -61 -40 -132 -57c95 -41 126 -78 126 -151c0 -119 -108 -200 -265 -200h-282v16c56 10 63 16 81 74l123 442c7 25 11 49 11 64c0 29 -14 36 -77 41v16h258c129 0 200 -52 200 -147zM519 204c0 55 -25 99 -67 115 c-20 8 -63 12 -126 12l-32 -119c-23 -80 -35 -127 -35 -140c0 -28 22 -42 64 -42c122 0 196 66 196 174zM575 515c0 74 -36 108 -117 108c-39 0 -51 -6 -57 -28l-65 -232h34c138 0 205 49 205 152'], + 0x1D6E4: [662,0,868,80,788,'788 662l-36 -143h-24c7 90 -11 105 -124 105h-136c-28 0 -33 -6 -41 -34l-129 -481c-19 -72 -9 -86 67 -90l-5 -19h-280l5 19c77 5 92 18 114 101l116 433c19 70 9 83 -63 90l5 19h531'], + 0x1D6E5: [668,0,686,80,606,'606 0h-526l388 668h26zM506 36l-81 486l-278 -486h359'], + 0x1D6E6: [653,0,795,80,715,'715 653l-31 -153l-21 2c1 17 2 32 2 45c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233l79 2c90 3 100 10 138 95l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -39 16 -78 15l-78 3l-32 -115c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34 c76 0 144 10 181 27c43 20 69 45 116 110l16 -8l-62 -162h-507v16c56 10 63 16 81 74l123 442c5 20 11 52 11 64c0 27 -15 35 -77 41v16h497'], + 0x1D6E7: [653,0,772,80,692,'692 639l-483 -603h161c82 0 132 8 166 28c34 19 52 43 84 107l19 -3l-54 -168h-505v14l479 603h-171c-75 0 -128 -12 -157 -37c-19 -17 -31 -34 -52 -78l-19 5l46 146h486v-14'], + 0x1D6E8: [653,0,935,80,855,'855 637c-57 -10 -65 -16 -82 -74l-132 -481c-2 -8 -3 -16 -3 -24c0 -28 13 -35 78 -42v-16h-273v16c65 7 85 22 101 74l65 236h-285l-66 -244c-2 -7 -3 -15 -3 -22c0 -29 11 -36 71 -44v-16h-246v16c56 10 63 16 81 74l123 442c8 27 11 47 11 62c0 29 -14 37 -77 43v16 h273v-16c-60 -4 -86 -23 -101 -74l-54 -195h285l46 164c7 27 11 47 11 62c0 28 -12 36 -70 43v16h247v-16'], + 0x1D6E9: [666,18,799,80,719,'614 481c0 94 -49 152 -129 152c-75 0 -138 -40 -194 -125c-59 -87 -106 -232 -106 -324c0 -109 46 -169 130 -169c72 0 135 41 191 124c63 94 108 237 108 342zM719 418c-11 -226 -213 -436 -421 -436c-127 0 -218 99 -218 239c0 123 65 251 174 344 c78 66 161 101 240 101c135 0 232 -107 225 -248zM552 449l-72 -223h-19c15 56 -3 71 -63 71h-21c-58 0 -89 -15 -104 -71h-18l72 223h18c-14 -58 -7 -77 54 -77h20c58 0 99 21 114 77h19'], + 0x1D6EA: [653,0,552,80,472,'472 637c-58 -10 -64 -16 -82 -74l-123 -443c-9 -33 -11 -43 -11 -63c0 -28 11 -34 68 -41v-16h-244v16c56 10 63 16 81 74l123 442c8 27 11 47 11 62c0 29 -12 36 -70 43v16h247v-16'], + 0x1D6EB: [653,0,875,80,795,'795 637c-24 -4 -46 -15 -75 -36l-300 -226l174 -303c28 -47 34 -50 97 -56v-16h-275v16l29 3c32 3 46 11 46 26c0 19 -14 54 -38 95l-121 208l-62 -228l-6 -21c-7 -21 -8 -28 -8 -39c0 -31 9 -37 72 -44v-16h-248v16c59 9 64 14 82 74l123 442c8 27 11 47 11 62 c0 29 -14 37 -77 43v16h273v-16c-59 -4 -86 -24 -101 -74l-53 -194l152 106c89 63 144 116 144 140c0 11 -10 17 -34 19l-27 3v16h222v-16'], + 0x1D6EC: [668,0,775,80,695,'695 0h-246v16c64 6 78 15 78 53c0 8 0 17 -2 26l-69 427l-228 -409c-17 -34 -20 -43 -20 -62c0 -25 8 -30 59 -35v-16h-187v16c40 8 50 19 129 152l290 500h26l94 -566c12 -73 19 -81 76 -86v-16'], + 0x1D6ED: [653,0,1051,80,971,'971 637c-59 -9 -64 -14 -82 -74l-123 -443c-9 -32 -11 -44 -11 -61c0 -32 9 -37 77 -43v-16h-273v16c65 7 85 22 101 75l129 470l-377 -561h-17l-61 546l-118 -433c-5 -18 -9 -42 -9 -53c0 -28 20 -40 71 -44v-16h-198v16c52 6 67 26 98 130l106 372l3 11l9 30 c6 18 10 33 10 41c0 23 -24 34 -74 37v16h181l55 -493l336 493h167v-16'], + 0x1D6EE: [653,15,907,80,827,'827 637c-63 -14 -67 -20 -104 -149l-144 -503h-18l-230 550l-114 -422c-6 -21 -9 -41 -9 -54c0 -28 18 -39 70 -43v-16h-198v16c57 8 65 20 103 148l119 417c-18 39 -39 52 -86 56v16h161l208 -499l102 380l2 8c7 21 9 32 9 44c0 36 -13 46 -70 51v16h199v-16'], + 0x1D6EF: [653,0,822,80,742,'742 653l-43 -159h-18c15 53 -12 74 -76 74h-240c-61 0 -101 -24 -115 -74h-18l43 159h467zM585 433l-58 -216h-17c16 60 -5 71 -68 71h-62c-65 0 -91 -13 -107 -71h-17l58 216h17c-17 -63 11 -70 69 -70h62c57 0 89 7 106 70h17zM637 182l-49 -182h-508l49 182h18 l-3 -10c-17 -63 30 -86 81 -86h269c66 0 101 16 120 86l3 10h20'], + 0x1D6F0: [666,18,799,80,719,'719 418c-11 -226 -213 -436 -421 -436c-127 0 -218 99 -218 239c0 123 65 251 174 344c78 66 161 101 240 101c135 0 232 -107 225 -248zM614 481c0 94 -49 152 -129 152c-75 0 -138 -40 -194 -125c-59 -87 -106 -232 -106 -324c0 -109 46 -169 130 -169 c72 0 135 41 191 124c63 94 108 237 108 342'], + 0x1D6F1: [653,0,935,80,855,'855 637c-57 -10 -65 -16 -82 -74l-132 -481c-2 -8 -3 -16 -3 -24c0 -28 13 -35 78 -42v-16h-273v16c65 7 87 22 101 74l126 456c14 50 14 65 -9 65h-231c-23 0 -30 -15 -44 -65l-128 -464c-2 -7 -3 -15 -3 -22c0 -29 11 -36 71 -44v-16h-246v16c56 10 63 16 81 74 l123 442c8 27 11 47 11 62c0 29 -14 37 -77 43v16h637v-16'], + 0x1D6F2: [653,0,765,80,685,'685 504c0 -60 -30 -117 -82 -153c-42 -30 -110 -46 -189 -46c-42 0 -66 2 -92 8l-53 -193c-10 -38 -12 -46 -12 -57c0 -35 5 -38 68 -47v-16h-245v16c57 8 64 14 82 74l118 425c13 47 17 65 17 80c0 27 -14 35 -71 42v16h248c136 0 211 -53 211 -149zM582 504 c0 48 -12 78 -38 96c-20 14 -58 23 -96 23c-28 0 -40 -7 -46 -28l-71 -248c29 -5 34 -5 52 -5c62 0 101 8 132 25c44 26 67 72 67 137'], + 0x1D6F3: [666,18,799,80,719,'719 418c-11 -226 -213 -436 -421 -436c-127 0 -218 99 -218 239c0 123 65 251 174 344c78 66 161 101 240 101c135 0 232 -107 225 -248zM614 481c0 94 -49 152 -129 152c-75 0 -138 -40 -194 -125c-25 -38 -49 -86 -67 -136h377c8 38 13 76 13 109zM583 304h-380 c-11 -44 -18 -86 -18 -120c0 -109 46 -169 130 -169c72 0 135 41 191 124c31 47 58 105 77 165'], + 0x1D6F4: [653,0,848,80,768,'768 653l-35 -141h-25c10 83 -12 104 -110 104h-203l133 -254l-298 -267h313c61 0 81 14 135 101h28l-106 -196h-520l5 19c13 4 24 13 34 22l305 279l-155 294c-6 10 -11 17 -19 20l5 19h513'], + 0x1D6F5: [653,0,734,80,654,'654 653l-44 -163l-17 2c2 17 3 32 3 45c0 56 -32 81 -104 81h-55l-139 -498c-10 -36 -12 -46 -12 -58c0 -31 11 -40 52 -43l38 -3v-16h-290v16c66 5 90 21 106 74l144 528c-153 2 -185 -15 -238 -123l-18 4l42 154h532'], + 0x1D6F6: [653,0,798,80,717,'712 489h-27c10 49 -31 71 -77 71c-134 0 -191 -156 -233 -313l-37 -139c-20 -75 -10 -87 76 -89v-19h-296v19c89 4 102 14 125 99l34 129c42 157 58 313 -75 313c-46 0 -82 -24 -95 -71h-27c22 83 64 164 157 164c166 0 135 -209 82 -406h14c53 197 123 406 290 406 c93 0 105 -85 89 -164'], + 0x1D6F7: [653,0,708,79,627,'625 326c-18 -115 -147 -174 -271 -185l-9 -33c-19 -72 -7 -86 71 -89v-19h-287v19c82 3 97 15 117 89l9 33c-119 11 -188 72 -173 185c15 114 147 175 272 186l9 33c19 72 12 84 -69 89v19h287v-19c-83 -4 -100 -17 -119 -89l-9 -33c118 -11 190 -72 172 -186zM515 326 c21 77 5 141 -70 156l-83 -311c83 15 133 79 153 155zM346 482c-83 -15 -132 -79 -153 -156c-20 -76 -5 -140 70 -155'], + 0x1D6F8: [653,0,844,80,764,'764 637c-43 -14 -73 -37 -125 -95l-169 -194l102 -258c25 -60 34 -66 104 -74v-16h-273v16c66 5 76 10 76 39c0 15 -4 31 -11 49l-67 165l-151 -172c-14 -16 -21 -32 -21 -47c0 -25 17 -34 65 -34v-16h-214v16c53 11 81 36 220 200l83 97l-106 263c-19 46 -34 56 -92 61 v16h264v-16c-55 -7 -71 -16 -71 -41c0 -13 4 -29 15 -56l59 -147l145 167c14 17 20 28 20 41c0 23 -12 30 -61 36v16h208v-16'], + 0x1D6F9: [653,0,770,80,690,'690 548c-52 -15 -66 -59 -83 -122c-52 -193 -139 -247 -270 -256l-17 -62c-19 -72 -7 -86 72 -89v-19h-288v19c82 3 98 15 118 89l17 62c-130 9 -187 63 -135 256c17 63 20 107 -24 122v29c87 -13 151 -84 116 -214c-23 -85 -4 -141 51 -161l92 343c19 72 11 84 -70 89 v19h288v-19c-83 -4 -101 -17 -120 -89l-92 -343c64 19 115 76 138 161c35 130 96 195 207 213v-28'], + 0x1D6FA: [649,0,855,80,774,'767 378c-31 -131 -130 -224 -258 -260l-14 -40h115c57 0 80 33 89 69h23l-45 -147h-244l51 141c86 27 139 101 172 224c44 164 -7 250 -110 250c-111 0 -207 -98 -246 -243c-28 -104 -30 -195 54 -231l-28 -141h-246l34 147h23c-8 -44 5 -69 56 -69h113l10 40 c-89 20 -156 112 -123 256c35 154 185 275 364 275c171 0 243 -130 210 -271'], + 0x1D6FB: [658,10,686,80,606,'606 658l-388 -668h-26l-112 668h526zM539 622h-359l81 -486'], + 0x1D6FC: [441,16,645,79,565,'389 225c-1 99 -10 189 -71 189c-59 0 -118 -130 -142 -221c-17 -63 -26 -182 42 -182c51 0 111 93 171 214zM565 426l-108 -231c-11 -25 -22 -46 -36 -67c2 -49 2 -85 22 -85c27 0 42 18 58 58h19c-10 -49 -46 -117 -99 -117c-43 0 -41 48 -36 94 c-60 -72 -123 -94 -169 -94c-127 0 -156 99 -125 214c39 144 142 243 234 243c77 0 89 -78 92 -159l66 144h82'], + 0x1D6FD: [645,208,694,80,614,'609 497c-14 -53 -48 -93 -111 -126c67 -49 99 -93 73 -193c-32 -120 -136 -193 -249 -193c-47 0 -74 17 -98 40l-7 -25c-26 -96 -42 -208 -42 -208h-95l185 688c24 91 104 165 209 165c89 0 160 -57 135 -148zM525 495c14 54 3 123 -58 123c-64 0 -101 -63 -120 -131 l-105 -394c21 -42 45 -81 87 -81c66 0 132 80 155 169c20 74 9 141 -32 167c-18 -9 -30 -13 -46 -13c-13 0 -41 4 -35 26c4 17 27 28 50 28c15 0 25 -3 41 -7c30 28 53 77 63 113'], + 0x1D6FE: [442,224,684,80,604,'604 426c-157 -156 -259 -283 -324 -382c-10 -92 -30 -172 -32 -178c-21 -80 -58 -90 -76 -90c-55 0 -78 24 -64 73c12 47 49 136 152 281l-3 43c-10 85 -4 192 -89 192c-20 0 -58 -19 -69 -59h-19c16 61 63 136 132 136c66 0 65 -138 74 -239c1 -11 1 -23 1 -34 c55 73 125 158 214 257h103zM248 -6c-43 -74 -65 -127 -74 -161c-8 -30 -1 -30 7 -30c13 0 29 14 38 49c2 6 18 67 29 142'], + 0x1D6FF: [645,15,630,80,550,'548 552c-6 -24 -33 -37 -52 -37c-27 0 -41 21 -48 44c-9 26 -30 53 -79 53c-43 0 -60 -29 -65 -47c-6 -21 24 -51 34 -61l89 -87c65 -65 111 -138 87 -225c-35 -132 -146 -207 -272 -207c-116 0 -187 75 -153 203c31 116 156 191 249 191l-68 62c-23 21 -28 66 -18 101 c14 55 85 103 164 103c96 0 147 -39 132 -93zM425 182c20 76 -46 160 -59 171c-88 0 -168 -79 -194 -178c-20 -73 13 -163 82 -163c88 0 146 76 171 170'], + 0x1D700: [441,15,568,79,487,'486 361c-4 -15 -29 -35 -49 -37c-26 0 -37 18 -47 38c-11 24 -18 52 -48 52c-61 0 -88 -49 -101 -98c-8 -27 0 -70 28 -86c25 7 46 17 69 17c22 0 43 -11 38 -29c-4 -18 -33 -29 -52 -29c-27 0 -45 10 -63 17c-25 -11 -80 -55 -92 -101c-16 -61 18 -93 64 -93 c43 0 82 28 102 46c24 22 46 72 83 72c29 0 29 -22 24 -40c-10 -39 -81 -105 -233 -105c-69 0 -147 41 -126 119c18 66 61 93 129 118c-46 29 -63 72 -52 114c14 53 76 105 196 105c61 0 144 -27 130 -80'], + 0x1D701: [639,201,591,80,510,'509 598c-8 -31 -112 -96 -177 -102c-84 -83 -176 -170 -209 -293c-44 -167 156 -108 179 -108c88 0 112 -82 95 -147c-21 -77 -92 -149 -192 -149c-30 0 -62 4 -52 39c5 20 24 36 40 36c19 2 36 -11 59 -11c47 0 104 33 112 64c11 40 -13 61 -39 73 c-21 11 -93 -3 -145 -3c-96 0 -119 76 -85 206c29 105 99 193 208 298c-50 17 -67 45 -59 74c8 28 46 64 74 64c7 0 13 -5 16 -12c8 -18 -45 -38 -51 -59c-8 -32 17 -34 41 -45c43 37 127 111 166 111c18 0 24 -17 19 -36'], + 0x1D702: [441,208,581,80,500,'493 293l-135 -501h-95s44 112 70 208l79 296c23 86 6 117 -36 117c-48 0 -102 -73 -125 -120l-79 -293h-80l81 301c14 55 11 82 -15 82c-20 0 -48 -19 -59 -59h-19c16 61 58 117 127 117c45 0 61 -33 55 -81c39 42 76 81 129 81c61 0 134 -26 102 -148'], + 0x1D703: [645,15,577,80,496,'477 317c-40 -159 -133 -332 -277 -332c-143 0 -131 202 -100 328c41 160 134 333 277 332c144 0 131 -201 100 -328zM396 344c31 120 62 274 -26 275c-91 0 -136 -143 -173 -275h199zM389 317h-199c-33 -122 -78 -305 17 -305c96 0 143 159 180 297c1 3 1 5 2 8'], + 0x1D704: [441,16,389,80,309,'309 98c-16 -61 -65 -114 -125 -114c-55 0 -80 39 -60 112l62 232c11 43 11 61 -12 61c-28 0 -65 -23 -75 -62h-19c16 60 65 114 125 114c55 0 80 -39 59 -113l-62 -232c-10 -38 -11 -61 12 -61c28 0 65 23 75 63h20'], + 0x1D705: [441,14,677,80,596,'595 392c-6 -24 -33 -41 -57 -41c-23 0 -36 12 -47 12c-19 0 -30 0 -60 -22l-102 -75l33 -129c8 -33 27 -99 44 -99c26 0 37 38 77 38c18 0 35 -18 28 -41c-7 -28 -38 -49 -96 -49c-57 0 -111 28 -123 73l-40 151l-30 -22l-50 -188h-81l81 301c18 68 12 82 -14 82 c-20 0 -48 -19 -59 -59h-19c16 61 57 117 126 117c45 0 73 -40 62 -81l-36 -136l242 179c34 25 49 38 80 38c30 0 49 -21 41 -49'], + 0x1D706: [645,17,672,80,592,'592 100c-17 -62 -59 -117 -128 -117c-68 0 -72 74 -68 178l4 111l-228 -272h-92l325 389l3 72c4 98 -16 127 -77 127c-32 0 -61 -19 -72 -60h-19c17 62 59 117 128 117c68 0 72 -74 68 -178l-11 -300c-5 -98 17 -127 77 -127c32 0 60 19 71 60h19'], + 0x1D707: [426,209,685,80,605,'605 103c-17 -62 -59 -117 -128 -117c-45 0 -61 32 -56 80c-38 -41 -74 -80 -128 -80c-22 0 -65 6 -71 31c-2 -5 -5 -16 -5 -16c-26 -97 -41 -210 -41 -210h-96l170 635h81l-79 -296c-23 -85 13 -117 55 -117c54 0 103 73 126 120l78 293h81l-80 -300 c-15 -55 -11 -83 14 -83c21 0 49 19 60 60h19'], + 0x1D708: [441,15,604,80,524,'521 382c-7 -26 -26 -75 -51 -126c-54 -103 -156 -198 -236 -271h-40c27 85 75 398 -36 398c-20 0 -48 -19 -59 -59h-19c16 61 67 117 127 117c98 0 113 -189 67 -379c65 59 150 156 162 198c3 11 5 22 5 31c1 29 -17 68 -13 83c10 36 23 67 64 67c29 0 38 -28 29 -59'], + 0x1D709: [639,201,594,80,514,'513 598c-8 -31 -112 -96 -177 -102c-30 -27 -65 -58 -74 -92c-6 -23 8 -44 17 -50c55 24 86 25 108 25c27 0 46 -14 43 -33c-3 -12 -27 -36 -61 -36c-28 0 -59 3 -95 15c-68 -38 -140 -104 -155 -162c-35 -128 164 -68 187 -68c88 0 112 -82 95 -147 c-21 -77 -92 -149 -192 -149c-30 0 -62 4 -52 39c5 20 24 36 40 36c19 2 36 -11 59 -11c47 0 104 33 112 64c11 40 -13 61 -39 73c-21 11 -93 -3 -145 -3c-96 0 -120 71 -94 166c17 65 106 146 161 177c-9 6 -23 37 -15 66c9 35 34 65 71 95c-50 18 -67 45 -59 74 c8 28 46 64 74 64c7 0 13 -5 16 -12c8 -18 -45 -38 -51 -59c-8 -32 17 -33 41 -44c43 37 127 110 166 110c18 0 24 -17 19 -36'], + 0x1D70A: [441,11,601,80,521,'521 301c0 -76 -40 -160 -106 -225c-58 -58 -122 -87 -188 -87c-91 0 -147 53 -147 140c0 108 75 225 180 281c39 21 77 31 118 31c85 0 143 -57 143 -140zM437 326c0 57 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -156 -74 -228c0 -55 31 -91 78 -91 c44 0 83 27 121 82c43 65 74 162 74 234'], + 0x1D70B: [452,15,766,80,686,'686 452l-23 -86c-27 -6 -63 -11 -104 -15l-38 -143c-26 -96 -41 -208 -41 -208h-95l93 347h-26c-42 0 -87 3 -127 7l-41 -154c-29 -108 -56 -215 -148 -215c-69 0 -61 56 -44 118h20c-11 -41 16 -60 36 -60c57 0 89 83 108 154l42 159c-46 4 -81 9 -94 9 c-21 0 -51 -14 -62 -54h-20c17 61 63 120 132 120c45 0 137 -13 235 -13c74 0 145 15 197 34'], + 0x1D70C: [441,209,654,80,573,'565 226c-35 -129 -133 -241 -262 -241c-31 0 -63 17 -82 36l-6 -21c-25 -94 -42 -209 -42 -209h-93l97 360c24 89 33 120 50 151c52 83 133 139 210 139c111 0 158 -103 128 -215zM475 210c23 86 22 204 -57 204c-100 0 -127 -130 -161 -257l-21 -77 c13 -48 42 -68 75 -68c88 0 136 91 164 198'], + 0x1D70D: [441,201,582,80,501,'500 388c-6 -21 -26 -45 -66 -45c-37 0 -69 26 -88 26c-107 0 -193 -79 -227 -206c-35 -128 164 -68 187 -68c88 0 112 -82 95 -147c-21 -77 -92 -149 -192 -149c-30 0 -62 4 -52 39c5 20 24 36 40 36c19 2 36 -11 59 -11c47 0 104 33 112 64c11 40 -13 61 -39 73 c-21 11 -93 -3 -145 -3c-96 0 -120 71 -94 166c28 105 129 278 369 278c34 0 48 -28 41 -53'], + 0x1D70E: [452,15,658,80,578,'578 452l-22 -83c-44 -7 -71 -9 -123 -9c43 -34 60 -90 39 -169c-31 -115 -133 -206 -247 -206c-113 0 -167 91 -136 206c40 150 140 227 273 227c72 0 164 15 216 34zM391 207c24 86 7 130 -11 150h-53c-95 0 -127 -71 -149 -150c-23 -88 -25 -195 54 -195 c90 0 136 107 159 195'], + 0x1D70F: [452,15,647,80,567,'567 452l-25 -95c-35 -5 -103 -8 -168 -10l-38 -141c-18 -69 -47 -163 15 -163c33 0 57 19 68 60h20c-17 -62 -49 -118 -118 -118c-107 0 -95 107 -66 215l40 149c-60 4 -112 16 -133 16s-51 -14 -62 -54h-20c17 61 63 120 132 120c45 0 93 -13 158 -13 c68 0 145 15 197 34'], + 0x1D710: [441,15,588,80,508,'505 382c-7 -26 -29 -75 -42 -126c-34 -124 -81 -271 -237 -271c-111 0 -152 91 -124 196c19 68 64 140 76 184c3 12 -3 18 -18 18c-21 0 -48 -11 -61 -59h-19c19 72 68 117 145 117c23 0 52 -21 41 -61c-12 -44 -62 -140 -78 -199c-19 -74 -30 -169 45 -169 c105 0 157 102 196 248c6 23 2 40 -4 55c-7 22 -17 45 -10 68c6 23 19 58 61 58c29 0 38 -28 29 -59'], + 0x1D711: [441,209,678,80,598,'501 208c19 72 38 206 -36 206c-27 0 -48 -52 -69 -132l-73 -270c84 24 156 115 178 196zM590 215c-31 -114 -125 -218 -275 -233l-51 -191h-80l51 191c-166 19 -166 157 -146 229c28 107 126 200 219 229l5 -23c-67 -37 -115 -119 -136 -198c-27 -100 -11 -186 66 -207 l72 267c25 94 82 162 157 162c111 0 143 -132 118 -226'], + 0x1D712: [441,226,806,80,726,'726 426l-296 -341l-5 -127c-5 -98 17 -127 77 -127c32 0 60 19 71 60h19c-17 -62 -59 -117 -128 -117c-68 0 -72 74 -68 178l4 99l-226 -259h-94l324 374l4 86c4 98 -16 131 -76 131c-32 0 -60 -19 -71 -59h-19c16 61 58 117 127 117c68 0 71 -79 67 -183l-2 -58 l196 226h96'], + 0x1D713: [441,209,768,79,688,'688 441l-7 -27c-52 -15 -75 -67 -91 -128c-53 -196 -109 -286 -280 -298l-53 -197h-81l53 197c-166 12 -173 102 -120 298c16 61 21 113 -23 128l7 27c99 -24 123 -102 82 -255c-23 -86 2 -150 62 -168l109 408h81l-109 -408c70 18 129 82 152 168 c41 153 107 231 218 255'], + 0x1D714: [444,15,763,79,682,'672 208c-17 -64 -89 -223 -252 -223c-29 0 -74 8 -83 62c-38 -53 -87 -62 -116 -62c-163 0 -148 159 -131 223c32 121 119 207 211 236l6 -23c-68 -38 -105 -114 -129 -205c-31 -115 -9 -204 50 -204c27 0 93 27 111 92c-6 17 -12 59 -2 99c12 43 29 80 63 80 c28 0 31 -36 20 -79c-12 -43 -37 -81 -53 -100c-18 -66 33 -92 60 -92c59 0 129 89 160 204c24 91 29 167 -18 205l17 23c76 -29 118 -115 86 -236'], + 0x1D715: [645,16,586,79,505,'423 344c-13 48 -42 69 -76 69c-90 0 -138 -89 -168 -199c-23 -88 -20 -203 61 -203c103 0 127 124 162 253zM484 271c-17 -57 -31 -113 -49 -145c-53 -85 -136 -142 -215 -142c-113 0 -162 99 -131 214c35 132 135 242 266 242c32 0 65 -17 85 -36 c27 130 44 212 -65 212c-22 0 -30 -8 -40 -18c-11 -13 -15 -29 -54 -39c-9 -2 -12 -3 -22 -3c-22 0 -33 15 -29 32c5 17 24 36 63 46c29 7 64 11 88 11c145 0 139 -244 103 -374'], + 0x1D716: [441,15,524,79,444,'444 409l-29 -35c-19 22 -42 39 -71 39c-83 0 -131 -76 -161 -176h155l-8 -27h-155c-30 -112 -28 -198 61 -198c29 0 62 18 93 40l9 -36c-35 -23 -73 -31 -108 -31c-131 0 -172 109 -140 228c34 128 131 228 262 228c35 0 69 -9 92 -32'], + 0x1D717: [645,15,696,80,615,'612 283h-36c7 28 4 67 -33 84c-3 -17 -7 -34 -11 -50c-40 -159 -124 -332 -267 -332c-144 0 -147 118 -101 290c13 49 20 108 -6 108c-20 0 -49 -20 -59 -60h-19c16 61 57 117 126 117c45 0 64 -75 52 -119c-46 -170 -77 -309 14 -309c86 0 133 159 170 297l19 70 c-120 12 -156 91 -137 164c15 53 60 102 125 102c119 0 121 -129 100 -246c49 -16 78 -59 63 -116zM469 408c28 105 46 209 -25 210c-35 0 -78 -19 -92 -74c-17 -62 9 -126 117 -136'], + 0x1D718: [441,15,654,79,574,'570 367c-12 -46 -77 -98 -170 -153c-24 -85 -29 -172 57 -172c20 0 63 39 73 79h19c-16 -62 -62 -136 -131 -136c-88 0 -74 113 -45 213l-50 -28c-29 -16 -54 -28 -75 -41c-12 -29 -22 -50 -24 -54c-33 -79 -59 -90 -77 -90c-54 0 -77 24 -63 73c12 46 78 99 170 154 c24 84 29 171 -56 171c-20 0 -64 -38 -74 -78h-19c16 61 63 136 132 136c87 0 73 -113 44 -214l53 29l73 38c12 31 21 53 23 57c33 78 59 90 77 90c55 0 77 -24 63 -74zM504 383c7 26 1 31 -6 31c-13 0 -23 -20 -38 -50c-5 -8 -14 -27 -25 -53c37 22 61 43 69 72zM220 114 c-38 -22 -62 -42 -70 -72c-7 -26 -1 -30 6 -30c14 0 24 20 38 49c5 9 14 28 26 53'], + 0x1D719: [630,208,698,79,617,'609 214c-32 -122 -142 -212 -281 -227l-53 -195h-80l53 195c-132 13 -193 97 -159 227c31 116 141 211 280 227l51 189h80l-51 -189c131 -15 193 -104 160 -227zM521 214c29 107 -2 179 -80 197l-106 -395c88 17 156 85 186 198zM361 411c-88 -16 -154 -89 -183 -197 c-30 -113 -2 -182 77 -198'], + 0x1D71A: [441,208,576,79,496,'487 227c-36 -132 -135 -242 -266 -242c-32 0 -65 17 -85 36c-26 -95 -14 -102 29 -102c54 0 103 20 144 20c85 0 77 -81 59 -147h-19c11 40 -1 71 -28 71c-40 0 -102 -21 -157 -21c-74 0 -103 195 -72 312c16 57 31 113 49 145c53 85 136 142 215 142 c113 0 162 -99 131 -214zM397 211c23 88 20 203 -61 203c-103 0 -127 -124 -162 -253l-21 -80c13 -48 42 -69 76 -69c90 0 138 89 168 199'], + 0x1D71B: [452,20,906,80,826,'826 452l-25 -95c-17 -2 -49 -4 -93 -6c15 -38 17 -87 1 -146c-17 -64 -89 -225 -252 -225c-28 0 -72 13 -81 67c-38 -53 -88 -67 -117 -67c-163 0 -149 161 -132 225c17 63 48 115 87 155c-32 3 -43 5 -53 5c-20 0 -51 -14 -62 -54h-19c17 61 63 120 132 120 c45 0 133 -13 283 -13c144 0 279 15 331 34zM641 349l-184 -2c-68 0 -130 4 -180 8c-28 -38 -47 -87 -62 -142c-31 -115 -9 -206 51 -206c27 0 93 32 111 97c-5 17 -12 59 -2 99c12 43 29 80 64 80c27 0 31 -36 20 -79c-12 -43 -38 -81 -54 -100c-18 -66 32 -97 59 -97 c60 0 130 91 161 206c14 53 22 100 16 136'], + 0x1D71C: [683,0,820,80,740,'740 0h-304v25c64 6 79 17 79 59c0 14 -4 44 -8 72l-7 52h-215l-59 -102c-10 -17 -15 -32 -15 -46c0 -24 19 -35 65 -35v-25h-196v25c36 8 51 21 83 70l372 588h25l96 -572c13 -76 18 -81 84 -86v-25zM493 248l-37 243l-148 -243h185'], + 0x1D71D: [669,0,808,80,728,'728 523c0 -41 -17 -81 -47 -106c-35 -29 -66 -43 -142 -62c102 -33 137 -71 137 -149c0 -128 -112 -206 -295 -206h-301v25c48 6 64 21 80 72l122 449c7 25 11 47 11 57c0 12 -7 25 -15 30c-12 7 -21 9 -58 11v25h272c155 0 236 -50 236 -146zM523 229 c0 37 -12 67 -35 85c-21 16 -50 22 -115 24l-66 -244c-4 -14 -5 -21 -5 -29c0 -23 18 -33 57 -33c44 0 78 13 105 40c36 36 59 98 59 157zM581 536c0 67 -29 101 -87 101c-32 0 -42 -8 -52 -44l-61 -225c74 3 108 10 139 30c40 26 61 74 61 138'], + 0x1D71E: [676,0,918,80,838,'838 676l-54 -201h-24c3 63 -1 90 -16 115c-22 35 -86 52 -178 52c-51 0 -67 -10 -77 -47l-133 -499c-15 -55 0 -67 91 -71l-7 -25h-360l7 25c76 8 93 19 107 71l129 484c14 52 -1 67 -69 71l7 25h577'], + 0x1D71F: [683,0,735,80,655,'502 40l-67 451l-270 -451h337zM655 0h-575l434 683h25'], + 0x1D720: [669,0,840,80,760,'760 669l-43 -190l-27 5c0 62 -7 87 -30 111c-27 27 -81 42 -154 42c-41 0 -53 -9 -63 -44l-61 -223c132 -1 158 12 205 106l28 -4l-74 -273l-28 5c3 19 4 30 4 44c0 69 -30 88 -144 90l-56 -209c-10 -21 -15 -42 -15 -63c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-59 -194h-554v25c52 8 64 19 80 72l123 449c6 23 10 46 10 61c0 20 -11 29 -42 33l-31 4v25h540'], + 0x1D721: [669,0,761,80,681,'681 640l-434 -605h70c88 0 147 14 192 45c40 27 78 69 109 119l27 -5l-59 -194h-506v29l434 605h-78c-110 0 -173 -37 -252 -147l-28 4l57 178h468v-29'], + 0x1D722: [669,0,983,80,903,'903 644c-51 -7 -65 -19 -81 -72l-115 -419c-15 -52 -19 -72 -19 -87c0 -29 18 -39 73 -41v-25h-317v25c67 4 87 18 101 72l64 232h-239l-54 -197c-7 -24 -13 -49 -13 -64c0 -32 9 -38 73 -43v-25h-296v25c50 7 64 20 80 72l122 449c8 28 11 46 11 58c0 22 -10 31 -42 35 l-31 5v25h317v-25c-65 -2 -85 -17 -101 -72l-54 -199h239l47 173c5 19 10 49 10 61c0 20 -10 28 -41 32l-32 5v25h298v-25'], + 0x1D723: [685,18,844,80,764,'764 454c0 -149 -86 -311 -213 -401c-65 -47 -149 -71 -225 -71c-141 0 -246 96 -246 239c0 142 89 306 213 393c67 47 148 71 219 71c139 0 252 -98 252 -231zM620 532c0 71 -51 119 -111 119c-68 0 -133 -45 -185 -142s-100 -274 -100 -372c0 -75 49 -121 112 -121 c55 0 112 32 159 102c65 99 125 296 125 414zM564 468l-69 -242h-18c9 44 -5 73 -57 73h-17c-59 0 -78 -24 -95 -73h-18l69 242h18c-9 -44 2 -73 54 -73h17c59 0 81 24 98 73h18'], + 0x1D724: [669,0,598,80,518,'518 644c-51 -6 -66 -19 -82 -72l-114 -420c-14 -50 -18 -71 -18 -87c0 -28 15 -37 72 -40v-25h-296v25c49 6 64 20 80 72l123 449c5 19 10 49 10 61c0 20 -10 28 -41 32c-11 2 -22 4 -32 5v25h298v-25'], + 0x1D725: [669,0,883,80,803,'803 644c-43 -6 -51 -9 -94 -48l-216 -198l157 -338c11 -24 25 -31 63 -35v-25h-280v25l27 3c27 2 38 10 38 24c0 12 -3 21 -13 43l-113 242l-67 -249c-1 -5 -2 -11 -2 -17c0 -33 14 -42 66 -46v-25h-289v25c49 6 64 19 80 72l122 449c8 28 11 46 11 58 c0 22 -10 31 -42 35l-31 5v25h310v-25c-59 -5 -78 -20 -94 -72l-62 -228l197 175c57 53 77 79 77 98c0 15 -10 22 -35 25l-21 2v25h211v-25'], + 0x1D726: [683,0,820,80,740,'740 0h-304v25c64 6 79 17 79 59c0 14 -4 44 -8 72l-51 335l-230 -385c-10 -17 -15 -32 -15 -46c0 -24 19 -35 65 -35v-25h-196v25c36 8 51 21 83 70l372 588h25l96 -572c13 -76 18 -81 84 -86v-25'], + 0x1D727: [669,12,1106,80,1026,'1026 644c-51 -6 -66 -20 -81 -72l-123 -449c-7 -18 -10 -37 -10 -55c0 -32 14 -40 72 -43v-25h-312v25c65 4 84 18 100 72l125 464l-375 -573h-28l-67 559l-101 -369c-14 -50 -19 -75 -19 -92c0 -41 16 -53 80 -61v-25h-207v25c54 12 61 23 101 153l109 373 c7 26 11 44 11 58c0 28 -9 32 -72 35v25h221l54 -480l310 480h212v-25'], + 0x1D728: [669,15,935,80,855,'855 644c-58 -13 -63 -21 -102 -153l-143 -506h-28l-257 549l-99 -356c-12 -42 -18 -75 -18 -94c0 -39 21 -54 80 -59v-25h-208v25c55 11 62 22 101 153l120 411c-19 44 -28 50 -83 55v25h195l215 -465l80 287c11 41 18 75 18 94c0 38 -21 54 -80 59v25h209v-25'], + 0x1D729: [662,0,874,80,794,'794 662l-45 -169h-19c8 41 -4 69 -53 69h-342c-48 0 -76 -26 -91 -69h-18l45 169h523zM616 458l-65 -242h-18c9 44 -6 73 -58 73h-87c-59 0 -77 -24 -94 -73h-18l65 242h18c-9 -44 5 -73 57 -73h87c59 0 78 24 95 73h18zM688 213l-57 -213h-551l57 212h19 c-12 -77 8 -102 57 -102h343c49 0 83 26 113 103h19'], + 0x1D72A: [685,18,824,80,744,'744 454c0 -149 -86 -311 -213 -401c-65 -47 -139 -71 -215 -71c-141 0 -236 96 -236 239c0 142 89 306 213 393c67 47 138 71 209 71c139 0 242 -98 242 -231zM600 532c0 71 -41 119 -101 119c-68 0 -123 -45 -175 -142s-100 -274 -100 -372c0 -75 39 -121 102 -121 c55 0 102 32 149 102c65 99 125 296 125 414'], + 0x1D72B: [669,0,983,80,903,'903 644c-51 -7 -65 -19 -81 -72l-115 -419c-15 -52 -19 -72 -19 -87c0 -29 18 -39 73 -41v-25h-317v25c67 4 86 18 101 72l134 489c5 19 0 39 -19 39h-179c-19 0 -36 -20 -41 -39l-124 -454c-7 -24 -13 -49 -13 -64c0 -32 9 -38 73 -43v-25h-296v25c50 7 64 20 80 72 l122 449c8 28 11 46 11 58c0 22 -10 31 -42 35l-31 5v25h683v-25'], + 0x1D72C: [669,0,800,80,720,'720 514c0 -120 -107 -197 -273 -197c-27 0 -46 1 -81 5l-54 -199c-5 -17 -10 -49 -10 -59c0 -27 16 -36 72 -39v-25h-294v25c52 8 64 19 80 72l123 449c6 23 10 46 10 61c0 20 -11 29 -42 33l-31 4v25h287c139 0 213 -54 213 -155zM574 546c0 58 -31 91 -84 91 c-19 0 -30 -4 -39 -14c-4 -6 -4 -6 -11 -30l-64 -239c17 -1 29 -2 42 -2c71 0 108 23 134 84c13 31 22 75 22 110'], + 0x1D72D: [685,18,844,80,764,'764 454c0 -149 -86 -311 -213 -401c-65 -47 -149 -71 -225 -71c-141 0 -246 96 -246 239c0 142 89 306 213 393c67 47 148 71 219 71c139 0 252 -98 252 -231zM620 532c0 71 -51 119 -111 119c-68 0 -133 -45 -185 -142c-17 -31 -33 -71 -48 -114h326 c11 50 18 98 18 137zM576 299h-328c-15 -60 -24 -119 -24 -162c0 -75 49 -121 112 -121c55 0 112 32 159 102c30 45 59 111 81 181'], + 0x1D72E: [662,0,909,80,829,'829 662l-35 -143h-26c11 84 -12 105 -114 105h-204l126 -230l-311 -274h322c64 0 106 22 141 79h29l-107 -199h-570l6 21c14 4 25 13 36 23l313 280l-163 296c-6 11 -11 18 -20 21l5 21h572'], + 0x1D72F: [669,0,760,80,680,'680 669l-36 -192l-27 2c-5 111 -44 154 -138 155l-140 -506c-7 -27 -11 -47 -11 -62c0 -32 12 -38 83 -41v-25h-331v25h14c51 0 77 20 91 72l148 537c-102 -2 -165 -43 -217 -143l-25 7l38 171h551'], + 0x1D730: [676,0,786,80,705,'694 451h-30c12 47 -28 97 -74 97c-120 0 -156 -159 -193 -298l-36 -133c-19 -74 -12 -84 68 -92v-25h-333v25c84 8 98 19 117 92l36 133c37 139 72 298 -48 298c-46 0 -79 -50 -91 -97h-30c29 107 59 225 165 225c125 0 147 -170 91 -376h14c56 206 121 376 264 376 c84 0 109 -118 80 -225'], + 0x1D731: [676,0,786,79,706,'703 351c-28 -130 -174 -175 -288 -189l-17 -66c-14 -52 1 -66 76 -71v-25h-336v25c77 7 98 21 112 71l17 66c-106 15 -206 84 -184 189c26 123 171 172 285 188l11 41c14 51 -3 66 -74 71v25h336v-25c-74 -3 -100 -19 -114 -71l-11 -41c106 -16 210 -80 187 -188z M561 351c23 86 -7 132 -54 153l-82 -305c59 20 113 66 136 152zM359 502c-56 -21 -108 -67 -131 -151c-22 -84 5 -129 50 -150'], + 0x1D732: [669,0,878,80,798,'798 644c-36 -5 -55 -17 -99 -61l-199 -205l74 -237c29 -94 44 -108 116 -116v-25h-308v25c54 5 68 12 68 38c0 22 -11 64 -38 141l-19 60l-134 -148c-23 -25 -30 -38 -30 -51c0 -23 20 -36 65 -40v-25h-214v25c43 8 73 36 231 210l68 74l-84 272c-16 46 -31 57 -91 63 v25h305v-25l-30 -3c-33 -4 -44 -13 -44 -36c0 -15 11 -58 34 -129c4 -10 7 -22 17 -55l94 99c52 55 70 80 70 98c0 15 -10 22 -33 24l-22 2v25h203v-25'], + 0x1D733: [676,0,860,80,780,'780 574c-54 -16 -60 -78 -77 -142c-50 -186 -161 -245 -296 -259l-21 -77c-14 -52 1 -66 76 -71v-25h-336v25c77 7 98 21 112 71l21 77c-129 14 -208 73 -158 259c17 64 25 126 -21 142v30c102 -25 186 -104 151 -236c-20 -75 -4 -127 39 -152l97 364 c14 51 -3 66 -74 71v25h336v-25c-74 -3 -100 -19 -114 -71l-97 -364c56 25 101 77 121 152c35 132 132 211 241 236v-30'], + 0x1D734: [691,0,892,80,812,'803 416c-27 -113 -108 -222 -269 -252l-14 -50h134c72 0 74 30 87 66h19l-48 -180h-258l58 187c75 31 100 75 141 227c45 168 29 239 -82 239c-93 0 -163 -62 -211 -243c-41 -154 -28 -209 21 -223l-42 -187h-259l48 180h19c-5 -36 -19 -66 53 -66h135l12 50 c-139 26 -154 156 -135 252c29 148 158 275 369 275c214 0 253 -145 222 -275'], + 0x1D735: [673,10,735,80,655,'570 633h-337l67 -451zM655 673l-434 -683h-25l-116 683h575'], + 0x1D736: [473,14,728,80,648,'648 461l-77 -157c-28 -59 -60 -119 -98 -170c1 -41 3 -84 20 -84c25 0 42 19 59 60h21c-14 -54 -53 -124 -103 -124c-25 0 -42 37 -34 102c-56 -61 -122 -102 -200 -102c-139 0 -182 86 -141 238c48 178 152 249 263 249c55 0 85 -45 100 -123l51 111h139zM428 283 c-11 86 -32 160 -77 160c-61 0 -106 -130 -132 -225c-17 -65 -46 -202 25 -202c22 0 44 23 63 40c32 28 76 126 121 227'], + 0x1D737: [691,217,791,80,710,'709 546c-20 -111 -106 -135 -150 -151c66 -27 123 -95 99 -209c-33 -156 -151 -200 -285 -200c-49 0 -74 16 -100 40l-7 -26c-27 -100 -38 -217 -38 -217h-148l197 736c35 129 149 172 259 172c93 0 190 -52 173 -145zM581 544c15 57 11 117 -53 117 c-67 0 -102 -64 -121 -135l-115 -429c22 -44 45 -81 89 -81c69 0 117 80 142 173c20 77 30 152 -13 179c-17 -10 -33 -17 -49 -17c-14 0 -41 11 -35 34c5 17 31 35 55 35c15 0 28 -2 42 -11c30 30 48 98 58 135'], + 0x1D738: [473,232,751,80,671,'671 461c-176 -174 -292 -319 -365 -430c-7 -81 -18 -147 -24 -169c-24 -90 -74 -94 -93 -94c-87 0 -102 66 -86 129c14 52 56 139 186 305c-9 90 -39 161 -110 161c-21 0 -65 -10 -77 -52h-22c17 64 72 162 144 162c70 0 95 -104 100 -227c49 61 111 132 186 215h161z M271 -25c-39 -66 -61 -116 -69 -147s-1 -30 7 -30c14 0 29 13 39 50c5 17 15 66 23 127'], + 0x1D739: [691,14,697,80,617,'615 594c-7 -25 -41 -39 -61 -39c-28 0 -46 16 -54 46c-8 27 -31 54 -82 54c-29 0 -55 -21 -61 -44c-6 -22 11 -44 21 -54l93 -91c69 -68 122 -182 98 -271c-38 -143 -168 -209 -299 -209c-121 0 -221 61 -181 210c27 102 125 168 245 194l-50 52c-14 15 -41 45 -23 111 c16 58 85 138 206 138c100 0 163 -41 148 -97zM437 190c15 57 -12 106 -62 159l-13 13c-69 -31 -120 -98 -142 -179c-21 -77 -9 -167 63 -167c92 0 128 76 154 174'], + 0x1D73A: [473,14,624,80,544,'542 375c-6 -25 -41 -39 -61 -39c-28 0 -46 16 -54 46c-7 27 -1 61 -37 61c-46 0 -83 -49 -97 -100c-8 -29 -17 -69 12 -85c17 10 43 17 59 17c14 0 41 -11 35 -34c-5 -17 -31 -35 -55 -35c-15 0 -38 2 -52 11c-26 -12 -60 -60 -73 -107c-17 -64 7 -94 55 -94 c44 0 69 24 85 46c20 28 48 76 87 76c30 0 41 -23 36 -42c-16 -58 -76 -110 -234 -110c-72 0 -184 35 -166 123c16 77 89 113 162 133c-56 17 -105 39 -74 121c28 74 104 110 225 110c100 0 162 -42 147 -98'], + 0x1D73B: [667,215,604,79,523,'517 610c-22 -47 -112 -88 -173 -95c-88 -86 -183 -175 -217 -303c-31 -114 163 -66 187 -66c138 0 115 -132 97 -200c-22 -81 -99 -161 -203 -161c-31 0 -66 15 -56 51c6 21 25 43 49 43c37 0 34 -22 58 -22c49 0 104 25 116 67c11 42 -15 63 -42 76 c-22 11 -95 -3 -149 -3c-100 0 -125 79 -88 215c29 109 103 201 216 311c-52 17 -69 47 -61 77c8 29 48 67 77 67c13 0 29 -6 25 -21c-6 -22 -45 -32 -51 -54c-9 -33 7 -35 32 -46c44 38 122 115 163 115c28 0 32 -27 20 -51'], + 0x1D73C: [473,218,652,80,571,'564 319l-143 -537h-147s51 118 78 218l86 322c27 99 9 122 -32 122c-48 0 -80 -76 -102 -125l-85 -319h-128l88 327c15 57 10 86 -17 86c-21 0 -49 -20 -60 -62h-22c17 64 61 122 133 122c47 0 74 -34 68 -84c30 45 74 84 144 84c78 0 175 -20 139 -154'], + 0x1D73D: [691,14,659,79,579,'560 339c-53 -198 -175 -354 -325 -353c-150 0 -182 178 -135 352c53 198 176 353 324 353c150 0 182 -178 136 -352zM432 371c33 127 72 293 -15 293c-98 0 -135 -152 -173 -293h188zM424 341h-188c-34 -129 -88 -325 7 -325c105 0 135 152 181 325'], + 0x1D73E: [473,14,443,80,363,'363 105c-19 -71 -81 -119 -151 -119c-77 0 -113 25 -86 127l63 233c9 35 7 73 -14 73c-24 0 -56 -16 -73 -65h-22c19 71 81 119 151 119c77 0 108 -47 86 -127l-63 -233c-9 -35 -7 -73 14 -73c24 0 56 16 73 65h22'], + 0x1D73F: [473,14,747,80,666,'665 422c-7 -25 -37 -53 -62 -53c-24 0 -35 23 -46 23c-20 0 -30 -1 -60 -24l-80 -59l11 -166c5 -55 18 -112 44 -112c23 0 44 59 86 59c31 0 45 -18 38 -46c-12 -44 -80 -58 -132 -58c-85 0 -137 34 -147 106l-10 137l-27 -20l-56 -209h-128l93 346c9 35 7 73 -14 73 c-24 0 -56 -16 -73 -65h-22c19 71 81 119 151 119c77 0 106 -54 86 -127l-26 -95l248 182c35 26 51 40 84 40c31 0 50 -22 42 -51'], + 0x1D740: [691,14,746,80,666,'666 148c-17 -64 -72 -162 -144 -162c-70 0 -98 33 -92 182l3 80l-208 -248h-145l360 428l2 53c3 67 -29 120 -100 120c-27 0 -81 -30 -92 -72h-22c17 64 71 162 143 162c70 0 108 -44 102 -204l-11 -313c-3 -71 28 -98 89 -98c25 0 81 30 93 72h22'], + 0x1D741: [461,218,757,80,677,'677 107c-17 -64 -71 -121 -163 -121c-74 0 -77 17 -91 54c-8 -12 -53 -54 -98 -54c-17 0 -47 12 -54 32l-5 -17c-27 -101 -38 -219 -38 -219h-148l182 679h128l-88 -325c-22 -82 3 -120 36 -120c36 0 72 57 89 93l95 352h127l-89 -330c-15 -57 -2 -86 25 -86 c30 0 50 18 70 62h22'], + 0x1D742: [473,11,673,80,592,'590 411c-7 -27 -28 -83 -55 -136c-56 -107 -229 -235 -302 -286h-30c12 60 20 193 12 357c-3 50 -14 73 -43 73c-21 0 -53 -16 -70 -65h-22c19 71 86 119 156 119c77 0 107 -65 114 -131c9 -102 1 -176 -10 -240c54 42 148 133 160 177c17 65 -26 91 -16 129 c9 31 28 65 71 65c31 0 44 -29 35 -62'], + 0x1D743: [667,215,615,79,535,'529 610c-22 -47 -122 -88 -183 -95c-23 -23 -59 -43 -72 -94c-7 -24 3 -46 13 -52c27 19 60 23 76 23c14 0 41 -11 35 -34c-5 -17 -30 -35 -54 -35c-15 0 -37 2 -62 16c-72 -40 -142 -96 -160 -163c-18 -69 167 -40 191 -40c138 0 118 -122 100 -190 c-22 -81 -99 -161 -203 -161c-31 0 -66 15 -56 51c6 21 25 43 49 43c37 0 34 -22 58 -22c49 0 104 25 116 67c11 42 -15 63 -42 76c-22 11 -95 -3 -149 -3c-100 0 -122 81 -96 179c22 83 108 146 166 179c-10 6 -21 38 -12 69c14 53 46 76 70 99c-52 17 -69 47 -61 77 c8 29 48 67 77 67c13 0 29 -6 25 -21c-6 -22 -45 -32 -51 -54c-9 -33 7 -35 32 -46c38 35 132 115 173 115c28 0 32 -27 20 -51'], + 0x1D744: [473,13,608,80,528,'528 322c0 -169 -140 -335 -289 -335c-92 0 -159 63 -159 148c0 168 143 338 291 338c92 0 157 -63 157 -151zM409 386c0 36 -18 58 -47 58c-33 0 -63 -25 -90 -75c-34 -63 -73 -215 -73 -291c0 -39 19 -62 49 -62c36 0 66 30 95 94c33 72 66 209 66 276'], + 0x1D745: [481,14,821,80,741,'741 481l-31 -114c-26 -6 -65 -12 -108 -15l-36 -135c-27 -100 -38 -217 -38 -217h-148l93 347c-49 1 -98 4 -140 9l-39 -147c-30 -113 -60 -223 -156 -223c-72 0 -63 57 -46 121h22c-12 -42 16 -60 37 -60c59 0 92 84 112 158l41 154c-34 4 -59 7 -70 7 c-31 0 -65 -30 -76 -72h-22c17 64 76 166 158 166c47 0 133 -14 235 -14c77 0 158 16 212 35'], + 0x1D746: [473,218,731,80,650,'497 221c18 68 59 222 -13 222c-81 0 -136 -140 -172 -275l-27 -101c20 -28 46 -53 75 -53c60 0 106 92 137 207zM638 238c-56 -208 -162 -252 -287 -252c-29 0 -57 12 -80 28l-5 -16c-22 -84 -40 -216 -40 -216h-146l101 379c71 266 212 312 324 312 c118 0 172 -87 133 -235'], + 0x1D747: [473,215,610,79,530,'529 418c-10 -38 -40 -57 -81 -57c-47 0 -52 37 -89 37c-112 0 -199 -77 -235 -210c-21 -78 168 -42 192 -42c138 0 115 -132 97 -200c-22 -81 -99 -161 -203 -161c-31 0 -66 15 -56 51c6 21 25 43 49 43c37 0 34 -22 58 -22c49 0 104 25 116 67c11 42 -15 63 -42 76 c-22 11 -95 -3 -149 -3c-100 0 -124 78 -94 191c30 110 134 285 385 285c35 0 59 -29 52 -55'], + 0x1D748: [471,14,742,79,662,'417 412c-20 9 -39 16 -57 16c-57 0 -89 -48 -136 -224c-39 -146 -31 -188 28 -188c58 0 90 43 131 197c24 91 42 165 34 199zM662 471l-32 -121c-42 1 -79 10 -109 20c22 -33 19 -81 1 -151c-38 -139 -149 -233 -278 -233c-131 0 -191 93 -153 236 c37 136 124 230 289 230c76 0 228 0 282 19'], + 0x1D749: [481,16,705,80,625,'625 481l-31 -114c-47 -11 -102 -19 -177 -20l-41 -152c-19 -72 -41 -150 23 -150c35 0 56 22 72 62h20c-15 -53 -50 -123 -142 -123c-112 0 -140 64 -102 205l44 164c-55 5 -96 13 -113 13c-31 0 -65 -30 -76 -72h-22c17 64 76 166 158 166c47 0 103 -14 205 -14 c77 0 128 16 182 35'], + 0x1D74A: [473,14,648,80,567,'565 411c-7 -27 -37 -102 -52 -156c-32 -119 -95 -269 -232 -269c-116 0 -192 37 -147 203c19 71 48 111 63 167s4 63 -25 63c-21 0 -53 -16 -70 -65h-22c19 71 76 119 146 119c77 0 123 -31 99 -121c-12 -46 -47 -102 -63 -163c-21 -77 -51 -173 27 -173 c81 0 149 91 189 243c20 75 -31 102 -19 149c9 31 28 65 71 65c31 0 44 -29 35 -62'], + 0x1D74B: [476,218,805,79,724,'713 234c-43 -160 -168 -230 -317 -246l-55 -206h-128l55 207c-161 19 -213 111 -178 241c42 158 202 240 280 246l5 -24c-74 -21 -118 -87 -152 -214c-31 -114 -4 -185 55 -213l71 266c26 98 99 182 217 182c116 0 188 -84 147 -239zM577 217c20 75 58 226 -19 226 c-28 0 -58 -65 -80 -149l-72 -267c70 27 146 95 171 190'], + 0x1D74C: [473,232,877,80,797,'797 461l-322 -384l-5 -121c-3 -71 29 -98 90 -98c25 0 81 30 92 72h22c-17 -64 -71 -162 -143 -162c-70 0 -98 33 -92 182l3 88l-214 -256h-148l369 442l1 39c3 67 -28 120 -99 120c-27 0 -81 -30 -93 -72h-22c17 64 72 162 144 162c69 0 106 -42 101 -210l166 198h150'], + 0x1D74D: [473,218,874,80,794,'794 473l-8 -30c-55 -16 -70 -78 -87 -142c-53 -197 -122 -299 -318 -318l-53 -201h-128l53 201c-184 19 -199 121 -146 318c17 64 34 126 -11 142l8 30c102 -25 152 -104 117 -236c-23 -85 -23 -179 43 -214l118 438h128l-118 -437c86 34 136 128 159 213 c35 132 127 211 243 236'], + 0x1D74E: [475,14,772,80,692,'681 224c-39 -145 -151 -238 -275 -238c-28 0 -57 7 -67 63c-39 -55 -70 -63 -100 -63c-124 0 -186 93 -147 238c41 154 162 235 258 251l6 -24c-39 -19 -105 -124 -131 -219c-32 -120 -40 -216 22 -216c28 0 73 25 91 92c-3 22 -3 64 3 85c3 14 27 44 49 44 s29 -30 26 -44c-6 -21 -28 -63 -43 -85c-18 -68 13 -92 41 -92c62 0 106 96 138 216c26 95 16 200 -13 219l18 24c88 -16 165 -97 124 -251'], + 0x1D74F: [691,14,670,80,589,'446 392c-20 28 -46 53 -75 53c-60 0 -107 -92 -137 -207c-18 -68 -59 -222 13 -222c81 0 136 140 172 275zM582 417l-32 -119c-72 -266 -212 -312 -324 -312c-118 0 -173 87 -133 235c56 208 162 252 287 252c35 0 70 -17 95 -40l6 23c24 90 62 207 -63 207 c-56 0 -63 -28 -78 -53c-20 -35 -55 -40 -67 -40c-29 0 -46 12 -36 49c10 39 78 72 191 72c142 0 181 -170 154 -274'], + 0x1D750: [482,14,580,80,500,'500 443l-46 -51c-10 31 -39 59 -69 59c-77 0 -119 -85 -150 -191h141l-8 -30h-141c-32 -117 -41 -213 42 -213c30 0 74 28 100 59l19 -51c-37 -24 -91 -39 -127 -39c-137 0 -210 95 -170 247c42 155 166 249 303 249c36 0 82 -15 106 -39'], + 0x1D751: [693,14,798,80,717,'516 663c-37 0 -70 -16 -85 -74c-16 -58 -11 -126 69 -148c25 97 52 222 16 222zM712 295h-64c12 46 -2 73 -37 87c-2 -13 -5 -25 -8 -36c-75 -279 -159 -360 -299 -360c-180 0 -190 81 -115 360c9 35 10 73 -14 73s-56 -16 -73 -65h-22c19 71 81 119 151 119 c77 0 104 -57 86 -127c-73 -271 -85 -330 -5 -330c65 0 90 59 163 330l14 53c-101 24 -108 117 -88 189c15 56 53 105 121 105c125 0 118 -143 99 -265c61 -11 115 -44 91 -133'], + 0x1D752: [473,14,714,80,633,'560 413c7 27 4 30 -5 30c-10 0 -32 -10 -52 -48c-4 -8 -11 -22 -18 -40c43 22 70 42 75 58zM630 398c-16 -60 -85 -140 -193 -201c-11 -60 -9 -111 31 -111c27 0 78 20 90 62h22c-17 -64 -72 -162 -144 -162s-66 92 -40 190c-14 -6 -29 -13 -45 -19 c-33 -13 -65 -26 -91 -38c-6 -16 -13 -29 -18 -41c-36 -77 -72 -92 -91 -92c-57 0 -81 23 -67 75c16 60 85 140 193 201c12 60 9 111 -31 111c-27 0 -78 -20 -90 -62h-22c17 64 72 162 144 162s66 -92 40 -190c14 6 29 13 45 19l91 38c6 15 13 29 18 41c36 77 72 92 91 92 c57 0 81 -23 67 -75zM229 104c-44 -22 -70 -42 -75 -58c-7 -27 -4 -30 5 -30c10 0 32 10 52 48c4 8 11 22 18 40'], + 0x1D753: [677,218,822,79,742,'731 229c-42 -159 -190 -223 -321 -239l-55 -208h-128l55 207c-122 16 -236 79 -193 240c49 183 196 231 322 241l55 207h128l-55 -207c120 -11 241 -58 192 -241zM600 230c34 128 -5 185 -70 205l-112 -416c74 10 139 51 182 211zM402 435c-77 -20 -146 -77 -180 -205 c-43 -160 0 -201 68 -211'], + 0x1D754: [473,217,673,80,593,'440 221c18 68 59 222 -13 222c-81 0 -136 -140 -172 -275l-27 -101c20 -28 46 -53 75 -53c60 0 106 92 137 207zM581 238c-56 -208 -162 -252 -287 -252c-35 0 -70 17 -95 40l-6 -23c-14 -50 -16 -78 19 -78c57 0 118 21 160 21c89 0 78 -94 60 -163h-22 c11 42 -36 49 -64 49c-42 0 -75 -12 -132 -12c-134 0 -150 118 -122 222l32 119c71 266 212 312 324 312c118 0 172 -87 133 -235'], + 0x1D755: [481,14,985,80,905,'905 481l-32 -119c-19 -4 -62 -8 -114 -11c13 -35 16 -77 3 -127c-39 -145 -161 -238 -285 -238c-28 0 -57 7 -67 63c-39 -55 -70 -63 -100 -63c-124 0 -196 93 -157 238c14 53 42 98 76 134c-27 2 -45 3 -52 3c-31 0 -64 -25 -75 -67h-22c17 64 76 166 158 166 c47 0 213 -14 315 -14c77 0 298 16 352 35zM633 232c10 38 6 78 -1 113l-126 -3c-44 0 -102 3 -157 7c-26 -36 -52 -78 -63 -117c-32 -120 -30 -216 32 -216c28 0 73 25 91 92c-3 22 -3 64 3 85c3 14 27 44 49 44s29 -30 26 -44c-6 -21 -28 -63 -43 -85 c-18 -68 13 -92 41 -92c62 0 116 96 148 216'], + 0x1D7CE: [688,13,500,24,476,'476 337c0 -201 -96 -350 -225 -350c-133 0 -227 147 -227 353c0 83 22 177 54 232c41 72 107 116 172 116c129 0 226 -151 226 -351zM318 222v229c0 147 -20 209 -69 209c-48 0 -67 -58 -67 -209v-229c0 -148 19 -207 69 -207c23 0 39 14 50 43c9 27 17 105 17 164'], + 0x1D7CF: [688,0,500,65,442,'442 0h-375v24c99 1 119 18 119 100v385c0 47 -11 69 -36 69c-13 0 -38 -7 -65 -17c-3 -2 -11 -5 -20 -8v26l252 109h17v-570c0 -77 17 -92 108 -94v-24'], + 0x1D7D0: [688,0,500,17,478,'478 211l-45 -211h-416v23c146 156 181 198 232 276c32 49 51 104 51 148c0 23 -8 51 -20 72c-22 36 -55 55 -99 55c-54 0 -91 -28 -122 -90h-28c28 75 48 109 87 148c35 36 83 56 133 56c108 0 185 -76 185 -183c0 -76 -35 -143 -114 -218l-162 -154h151 c102 0 114 6 143 78h24'], + 0x1D7D1: [688,14,500,16,468,'468 246c0 -146 -132 -260 -299 -260c-92 0 -153 36 -153 90c0 34 27 58 65 58c30 0 60 -16 99 -55c33 -32 52 -43 76 -43c60 0 98 46 98 118c0 48 -18 93 -49 122c-36 34 -69 51 -152 80v17c95 30 130 65 130 131c0 63 -39 103 -102 103c-52 0 -85 -23 -123 -84l-21 12 c55 103 130 153 229 153c102 0 163 -51 163 -137c0 -59 -19 -88 -83 -127c40 -18 57 -30 78 -54c29 -35 44 -78 44 -124'], + 0x1D7D2: [688,0,500,19,475,'475 144h-63v-144h-145v144h-248v113c60 95 126 187 254 354l59 77h80v-433h63v-111zM269 255v297l-209 -297h209'], + 0x1D7D3: [676,8,500,22,470,'470 676l-43 -127h-278l-22 -81c82 -5 113 -9 151 -20c109 -31 173 -111 173 -215c0 -141 -117 -241 -282 -241c-89 0 -147 35 -147 88c0 35 26 60 62 60c26 0 56 -13 99 -45c40 -30 67 -42 90 -42c56 0 100 44 100 100c0 66 -53 123 -142 151c-44 14 -85 20 -180 27 l97 345h322'], + 0x1D7D4: [688,13,500,28,475,'475 222c0 -136 -91 -235 -215 -235c-140 0 -232 113 -232 286c0 133 59 245 171 322c76 52 138 74 271 93v-26c-146 -30 -229 -111 -266 -258c30 13 52 17 84 17c114 0 187 -78 187 -199zM323 162c0 159 -23 214 -90 214c-14 0 -28 -4 -36 -10c-7 -5 -13 -62 -13 -124 c0 -93 10 -166 27 -199c10 -19 28 -29 51 -29c49 0 61 30 61 148'], + 0x1D7D5: [676,0,500,17,477,'477 676l-235 -676h-95l200 539h-207c-55 0 -79 -21 -98 -85h-25l44 222h416'], + 0x1D7D6: [688,13,500,28,472,'472 187c0 -120 -93 -200 -232 -200c-127 0 -212 68 -212 170c0 44 15 82 44 110c26 25 49 38 106 57c-99 59 -139 114 -139 189c0 105 89 175 224 175c119 0 195 -56 195 -145c0 -64 -40 -105 -136 -139c107 -68 150 -130 150 -217zM339 536c0 78 -32 123 -88 123 c-47 0 -83 -36 -83 -83c0 -56 46 -111 130 -154c33 44 41 67 41 114zM333 127c0 74 -24 106 -133 179c-40 -59 -51 -90 -51 -145c0 -89 36 -142 97 -142c54 0 87 41 87 108'], + 0x1D7D7: [688,13,500,26,473,'473 402c0 -127 -54 -234 -156 -311c-78 -59 -146 -84 -286 -104v26c144 29 225 108 268 260c-27 -14 -53 -19 -91 -19c-109 0 -182 80 -182 198c0 137 90 236 215 236c140 0 232 -113 232 -286zM317 458c0 71 -10 141 -25 169c-11 23 -28 34 -53 34 c-49 0 -61 -30 -61 -146c0 -157 23 -216 85 -216c15 0 34 4 41 9c3 2 4 7 5 20l3 26c3 45 5 77 5 104'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Normal/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Operators/Regular/Main.js new file mode 100644 index 0000000..4af9fcc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Operators/Regular/Main.js @@ -0,0 +1,111 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'GyreTermesMathJax_Operators', + id: 'GYRETERMESOPERATORS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2206: [674,0,760,80,680,'680 0h-600l286 674h20zM553 42l-203 490l-201 -490h404'], + 0x220A: [425,-75,528,80,448,'448 75h-193c-97 0 -175 78 -175 175s78 175 175 175h193v-52h-193c-59 0 -108 -42 -120 -97h313v-52h-313c12 -55 61 -97 120 -97h193v-52'], + 0x220C: [650,150,678,80,598,'598 250c0 -138 -112 -250 -250 -250h-67l-49 -150h-46l49 150h-155v52h172l55 172h-227v52h244l55 170c-10 1 -20 2 -31 2h-268v52h268c16 0 32 -2 48 -5l50 155h46l-54 -167c94 -36 160 -127 160 -233zM544 276c-9 72 -57 132 -122 158l-51 -158h173zM544 224h-190 l-56 -172h50c100 0 184 75 196 172'], + 0x220E: [556,0,716,80,636,'636 0h-556v556h556v-556'], + 0x220F: [727,227,1023,80,943,'943 -227h-301v21c85 5 96 18 96 109v706c0 54 -5 70 -28 70h-396c-25 0 -28 -16 -28 -70v-718c0 -76 14 -90 95 -97v-21h-301v21c84 5 95 18 95 109v706c0 77 -12 89 -95 97v21h863v-21c-83 -8 -95 -20 -95 -97v-718c0 -76 14 -90 95 -97v-21'], + 0x2210: [727,227,1023,80,943,'943 -227h-863v21c83 8 95 20 95 97v706c0 91 -11 104 -95 109v21h301v-21c-81 -7 -95 -21 -95 -97v-718c0 -54 3 -70 28 -70h396c23 0 28 16 28 70v706c0 91 -11 104 -96 109v21h301v-21c-81 -7 -95 -21 -95 -97v-718c0 -77 12 -89 95 -97v-21'], + 0x2211: [727,227,944,80,864,'864 -11l-57 -216h-727v21c14 4 24 14 32 25l328 421l-332 443c-10 12 -17 20 -28 23v21h717l4 -155h-27c-15 91 -44 113 -206 113h-308l286 -382l-332 -427h499c69 0 86 18 120 113h31'], + 0x221F: [526,0,686,80,606,'606 0h-500l-26 26v500h52v-474h474v-52'], + 0x222C: [796,296,1042,80,962,'586 703c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58 c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93zM962 703c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9 c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361 c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93'], + 0x222D: [796,296,1418,80,1338,'586 703c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58 c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93zM962 703c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9 c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361 c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93zM1338 703c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308 c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93'], + 0x222E: [796,296,712,80,632,'632 250c0 -139 -102 -253 -236 -273c-25 -225 -101 -273 -201 -273c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c2 18 3 51 4 90c-126 25 -222 137 -222 271 c0 139 102 253 236 273c25 225 101 273 201 273c53 0 92 -38 92 -93c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-2 -18 -3 -51 -4 -90c126 -25 222 -137 222 -271zM586 250c0 109 -76 200 -177 224 l-1 -224c0 -75 -1 -151 -7 -226c105 21 185 114 185 226zM311 476c-105 -21 -185 -114 -185 -226c0 -109 76 -200 177 -224l1 224c0 75 1 151 7 226'], + 0x222F: [796,296,1088,80,1008,'1008 250c0 -100 -93 -190 -232 -239c-22 -254 -100 -307 -205 -307c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c2 19 3 54 4 97c-42 -8 -87 -12 -134 -12 c-51 0 -100 5 -146 14c-25 -234 -101 -284 -203 -284c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c3 23 4 70 5 126c-134 49 -223 138 -223 235c0 100 93 190 232 239 c22 254 100 307 205 307c53 0 92 -38 92 -93c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-2 -19 -3 -54 -4 -97c42 8 87 12 134 12c51 0 100 -5 146 -14c25 234 101 284 203 284c53 0 92 -38 92 -93 c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-3 -23 -4 -70 -5 -126c134 -49 223 -138 223 -235zM962 250c0 80 -71 148 -177 189l-1 -189c0 -64 -1 -127 -5 -191c110 41 183 110 183 191zM309 441 c-110 -41 -183 -110 -183 -191c0 -80 71 -148 177 -189l1 189c0 64 1 127 5 191zM686 467c-44 8 -92 13 -142 13c-47 0 -93 -4 -135 -12l-1 -218c0 -72 -1 -145 -6 -217c44 -8 92 -13 142 -13c47 0 93 4 135 12l1 218c0 72 1 145 6 217'], + 0x2230: [796,296,1464,80,1384,'1384 250c0 -62 -27 -114 -81 -157c-37 -29 -87 -53 -150 -72l-1 -9c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c2 21 4 61 5 109 c-80 -14 -175 -22 -283 -24c-26 -222 -101 -270 -201 -270c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c2 17 3 48 4 86c-107 2 -200 10 -279 25c-23 -245 -101 -296 -204 -296 c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c3 25 4 75 5 135c-59 18 -107 41 -142 69c-54 43 -81 95 -81 157s27 114 81 157c37 29 87 53 150 72l1 9c22 255 100 308 205 308 c53 0 92 -38 92 -93c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-2 -21 -4 -61 -5 -109c80 14 175 22 283 24c26 222 101 270 201 270c53 0 92 -38 92 -93c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58 c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-2 -17 -3 -48 -4 -86c107 -2 200 -10 279 -25c23 245 101 296 204 296c53 0 92 -38 92 -93c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9 c-36 0 -69 -40 -80 -141c-3 -25 -4 -75 -5 -135c59 -18 107 -41 142 -69c54 -43 81 -95 81 -157zM1338 250c0 48 -22 88 -63 121c-29 22 -68 42 -115 57v-178c0 -60 -1 -120 -4 -180c49 16 89 36 119 59c41 33 63 73 63 121zM308 430c-49 -16 -89 -36 -119 -59 c-41 -33 -63 -73 -63 -121s22 -88 63 -121c29 -22 68 -42 115 -57v178c0 60 1 120 4 180zM687 480c-107 -2 -200 -11 -278 -25l-1 -205c0 -68 -1 -136 -5 -204c77 -15 169 -23 276 -25l1 229c0 77 1 153 7 230zM1061 454c-77 15 -169 23 -276 25l-1 -229 c0 -77 -1 -153 -7 -230c107 2 200 11 278 25l1 205c0 68 1 136 5 204'], + 0x2231: [796,296,729,80,689,'689 320l-71 -102l-102 71l-10 56l76 -54c-16 90 -85 162 -173 183l-1 -224c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9 c36 0 69 40 80 141c6 55 6 241 6 361c0 75 1 151 7 226c-105 -21 -185 -114 -185 -226h-46c0 139 102 253 236 273c25 225 101 273 201 273c53 0 92 -38 92 -93c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9 c-36 0 -69 -40 -80 -141c-2 -18 -3 -51 -4 -90c110 -22 197 -109 217 -220l52 74'], + 0x2232: [796,296,721,80,681,'681 369l-88 22c25 -41 39 -90 39 -141c0 -139 -102 -253 -236 -273c-25 -225 -101 -273 -201 -273c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c2 18 3 51 4 90 c-126 25 -222 137 -222 271c0 139 102 253 236 273c25 225 101 273 201 273c53 0 92 -38 92 -93c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-2 -18 -3 -51 -4 -90c27 -6 53 -15 77 -28l-22 -40 c-18 9 -36 16 -56 21l-1 -224c0 -75 -1 -151 -7 -226c105 21 185 114 185 226c0 43 -12 84 -33 119l-22 -91l-29 48l29 121l121 -29zM311 476c-105 -21 -185 -114 -185 -226c0 -109 76 -200 177 -224l1 224c0 75 1 151 7 226'], + 0x2233: [796,296,692,80,652,'652 418l-37 -119l-119 36l-26 50l89 -27c-31 58 -85 101 -150 116l-1 -224c0 -75 -1 -151 -7 -226c105 21 185 114 185 226h46c0 -139 -102 -253 -236 -273c-25 -225 -101 -273 -201 -273c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24 c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c2 18 3 51 4 90c-126 25 -222 137 -222 271c0 139 102 253 236 273c25 225 101 273 201 273c53 0 92 -38 92 -93c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9 c-36 0 -69 -40 -80 -141c-2 -18 -3 -51 -4 -90c81 -16 150 -69 189 -140l26 87zM311 476c-105 -21 -185 -114 -185 -226c0 -109 76 -200 177 -224l1 224c0 75 1 151 7 226'], + 0x2236: [423,-77,272,80,192,'192 367c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 133c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2237: [423,-77,506,80,426,'426 367c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM426 133c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 367c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 133c0 -31 -25 -56 -56 -56 s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2238: [488,-224,660,80,580,'580 224h-500v52h500v-52zM386 432c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2239: [423,-77,760,80,680,'468 224h-388v52h388v-52zM680 367c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM680 133c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x223A: [488,-12,660,80,580,'580 224h-500v52h500v-52zM192 432c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 68c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM580 432c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM580 68 c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x223B: [471,-29,642,80,562,'562 309c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -34 -4c-41 0 -82 19 -119 39c-30 16 -61 34 -93 34c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34c7 0 15 1 22 3 c35 10 70 26 96 77zM377 415c0 -31 -25 -56 -56 -56s-56 25 -56 56c0 30 25 56 56 56s56 -26 56 -56zM377 85c0 -30 -25 -56 -56 -56s-56 26 -56 56c0 31 25 56 56 56s56 -25 56 -56'], + 0x223E: [404,-96,784,80,704,'704 251c0 -46 -21 -93 -67 -129c-22 -18 -46 -26 -71 -26c-70 0 -145 61 -196 140c-52 79 -128 151 -191 102c-39 -31 -58 -73 -58 -112c0 -51 32 -97 93 -106v-20c-85 12 -134 78 -134 149c0 46 21 93 67 129c22 18 46 26 71 26c70 0 145 -61 196 -140 c52 -79 128 -151 191 -102c39 31 58 73 58 112c0 51 -32 97 -93 106v20c85 -12 134 -78 134 -149'], + 0x223F: [431,-69,660,80,580,'580 250c-32 -126 -72 -181 -134 -181c-82 0 -126 88 -142 176c-11 63 -31 134 -90 134c-45 0 -75 -38 -98 -129h-36c32 126 72 181 134 181c82 0 126 -88 142 -176c11 -63 31 -134 90 -134c45 0 75 38 98 129h36'], + 0x2244: [500,0,660,80,580,'580 128h-266l-42 -128h-46l41 128h-187v52h204l45 137l-11 6c-30 16 -61 34 -93 34c-7 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39l3 -2l43 133h46l-49 -153c16 -7 33 -12 50 -12c7 0 15 1 22 3 c35 10 70 26 96 77l18 -10c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -33 -4c-24 0 -47 6 -69 14l-39 -118h250v-52'], + 0x2247: [500,0,660,80,580,'580 72h-285l-23 -72h-46l23 72h-169v52h186l32 100h-218v52h235l29 89l-26 14c-30 16 -61 34 -93 34c-7 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39l18 -10l28 85h46l-33 -103c11 -3 23 -6 34 -6 c7 0 15 1 22 3c35 10 70 26 96 77l18 -10c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -33 -4c-18 0 -36 3 -53 9l-23 -73h218v-52h-235l-33 -100h268v-52'], + 0x2249: [500,0,642,80,562,'562 213c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -34 -4c-41 0 -82 19 -119 39l-3 2l-43 -133h-46l49 153c-16 7 -33 12 -50 12c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c24 0 47 -6 69 -14l38 115l-11 6 c-30 16 -61 34 -93 34c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39l3 -2l43 133h46l-49 -153c16 -7 33 -12 50 -12c7 0 15 1 22 3c35 10 70 26 96 77l18 -10c-33 -63 -56 -105 -100 -117 c-11 -3 -22 -4 -34 -4c-23 0 -46 6 -68 14l-38 -115l11 -6c30 -16 61 -34 93 -34c7 0 15 1 22 3c35 10 70 26 96 77'], + 0x224B: [471,-29,642,80,562,'562 461c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -34 -4c-41 0 -82 19 -119 39c-30 16 -61 34 -93 34c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34c7 0 15 1 22 3 c35 10 70 26 96 77zM562 309c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -34 -4c-41 0 -82 19 -119 39c-30 16 -61 34 -93 34c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39c30 -16 61 -34 93 -34 c7 0 15 1 22 3c35 10 70 26 96 77zM562 157c-33 -63 -56 -105 -100 -117c-11 -3 -22 -4 -34 -4c-41 0 -82 19 -119 39c-30 16 -61 34 -93 34c-8 0 -15 -1 -22 -3c-35 -10 -70 -26 -96 -77l-18 10c33 63 56 105 100 117c11 3 22 4 33 4c42 0 82 -19 120 -39 c30 -16 61 -34 93 -34c7 0 15 1 22 3c35 10 70 26 96 77'], + 0x224C: [471,-72,660,80,580,'571 342l-18 -9c-26 51 -61 67 -96 77c-7 2 -15 3 -22 3c-32 0 -63 -18 -93 -34c-38 -20 -78 -39 -120 -39c-11 0 -22 1 -33 4c-44 12 -67 54 -100 118l18 9c26 -51 61 -67 96 -77c7 -2 15 -3 22 -3c32 0 63 18 93 34c38 20 78 39 120 39c11 0 22 -1 33 -4 c44 -12 67 -54 100 -118zM580 224h-500v52h500v-52zM580 72h-500v52h500v-52'], + 0x2254: [423,-77,760,80,680,'680 320h-388v52h388v-52zM680 128h-388v52h388v-52zM192 367c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 133c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2255: [423,-77,760,80,680,'468 320h-388v52h388v-52zM468 128h-388v52h388v-52zM680 367c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM680 133c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2258: [503,-32,660,80,580,'580 224h-500v52h500v-52zM580 32h-500v52h500v-52zM580 377c-76 46 -161 74 -250 74s-174 -28 -250 -74v60c75 46 162 66 250 66s175 -20 250 -66v-60'], + 0x2259: [546,46,660,80,580,'580 146h-500v52h500v-52zM580 -46h-500v52h500v-52zM506 298h-60l-116 190l-116 -190h-60l150 248h52'], + 0x225A: [546,46,660,80,580,'580 146h-500v52h500v-52zM580 -46h-500v52h500v-52zM506 546l-150 -248h-52l-150 248h60l116 -190l116 190h60'], + 0x225B: [791,-128,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM503 661l-120 -68l57 -125l-8 -6l-102 93l-102 -93l-8 6l57 125l-120 68l3 10l137 -15l28 135h10l28 -135l137 15'], + 0x225D: [824,-128,852,80,772,'676 320h-500v52h500v-52zM676 128h-500v52h500v-52zM322 495l-80 -29l-6 5v21c-16 -18 -34 -25 -59 -25c-57 0 -97 46 -97 113c0 74 49 132 109 132c18 0 31 -4 47 -16v68c0 16 -3 20 -18 20c-4 0 -6 0 -16 -1v18c36 9 55 14 79 22l7 -2v-287c0 -18 3 -23 17 -23 c0 0 3 0 17 1v-17zM236 528v115c0 24 -22 45 -46 45c-35 0 -57 -35 -57 -88c0 -58 25 -97 64 -97c13 0 24 5 32 14c4 4 7 8 7 11zM566 558c-24 -60 -63 -91 -113 -91c-60 0 -98 45 -98 117c0 76 45 128 109 128c28 0 52 -11 68 -30c13 -17 19 -32 23 -71h-154 c1 -28 5 -44 14 -62c14 -25 33 -37 59 -37c30 0 50 14 76 54zM493 637c-6 35 -17 47 -43 47c-27 0 -42 -15 -47 -47h90zM772 788c0 -15 -11 -26 -26 -26c-10 0 -18 5 -27 21c-8 12 -13 17 -22 17c-17 0 -24 -14 -24 -40v-53h62v-26h-61v-152c0 -33 5 -38 46 -39v-18h-140v17 c37 3 42 8 42 40v152h-41v26h41c1 38 5 56 18 78c14 24 41 39 75 39c33 0 57 -16 57 -36'], + 0x225E: [712,-128,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM525 472h-110v17c23 0 23 7 23 32v105c0 37 -7 50 -32 50c-21 0 -36 -8 -50 -27v-124c0 -27 5 -35 26 -35v-18h-102v17c24 0 24 7 24 31v109c0 31 -8 47 -28 47c-16 0 -36 -8 -48 -18c-2 -3 -4 -6 -6 -8v-139 c0 -17 5 -21 24 -21v-18h-111v18c29 0 35 7 35 30v126c0 20 -2 27 -12 27c-5 0 -9 0 -21 -3v19c31 8 49 14 75 23l8 -2v-31c37 27 51 33 73 33c27 0 44 -12 55 -37c26 26 51 37 79 37c41 0 63 -31 63 -94v-103c0 -16 5 -23 17 -24l18 -2v-17'], + 0x225F: [818,-128,660,80,580,'580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM422 736c0 -22 -6 -40 -23 -66c-7 -10 -7 -11 -30 -39c-18 -23 -26 -42 -32 -79h-18c0 28 5 53 15 78l14 32c12 27 18 54 18 76c0 31 -21 55 -49 55c-21 0 -42 -12 -42 -26c0 -3 2 -6 7 -12c9 -10 12 -17 12 -25 c0 -15 -11 -25 -26 -25c-18 0 -29 12 -29 36c0 44 37 77 86 77c29 0 59 -12 78 -30c12 -13 19 -32 19 -52zM361 482c0 -18 -14 -31 -33 -31c-18 0 -31 13 -31 31c0 19 14 33 32 33c17 0 32 -15 32 -33'], + 0x2262: [650,150,660,80,580,'580 32h-298l-59 -182h-46l59 182h-156v52h173l45 140h-218v52h235l46 140h-281v52h298l59 182h46l-59 -182h156v-52h-173l-45 -140h218v-52h-235l-46 -140h281v-52'], + 0x2263: [564,64,660,80,580,'580 512h-500v52h500v-52zM580 320h-500v52h500v-52zM580 128h-500v52h500v-52zM580 -64h-500v52h500v-52'], + 0x226D: [650,150,660,80,580,'580 89c-76 46 -161 74 -250 74h-5l-102 -313h-46l101 310c-70 -9 -137 -35 -198 -71v60c65 40 139 60 215 65l23 71c-84 2 -166 22 -238 66v60c76 -46 161 -74 250 -74h5l102 313h46l-101 -310c70 9 137 35 198 71v-60c-65 -40 -139 -60 -215 -65l-23 -71 c84 -2 166 -22 238 -66v-60'], + 0x2274: [632,132,665,80,585,'585 109l-242 102l-55 -168c20 -8 39 -17 57 -27c30 -16 61 -34 93 -34c7 0 14 1 22 3c34 10 69 26 96 77l18 -9c-33 -64 -57 -106 -101 -118c-11 -3 -22 -4 -33 -4c-41 0 -82 19 -120 39c-15 9 -31 17 -48 24l-41 -126h-46l44 136h-2c-7 0 -14 -1 -21 -3 c-35 -10 -70 -26 -96 -76l-18 9c33 64 56 105 100 117c11 3 22 5 33 5c7 0 14 -1 21 -2l56 174l-222 93v52l312 131l42 128h46l-34 -105l139 58v-56l-160 -67l-66 -202l226 -95v-56zM371 439l-219 -92l166 -69'], + 0x2275: [632,132,665,80,585,'585 321l-239 -100l-58 -178c20 -8 39 -17 57 -27c30 -16 61 -34 93 -34c7 0 14 1 22 3c34 10 69 26 96 77l18 -9c-33 -64 -57 -106 -101 -118c-11 -3 -22 -4 -33 -4c-41 0 -82 19 -120 39c-15 9 -31 17 -48 24l-41 -126h-46l44 136h-2c-7 0 -14 -1 -21 -3 c-35 -10 -70 -26 -96 -76l-18 9c33 64 56 105 100 117c11 3 22 5 33 5c7 0 14 -1 21 -2l47 144l-213 -89v56l234 99l48 147l-282 118v56l298 -125l56 172h46l-61 -189l166 -70v-52zM513 347l-110 47l-35 -108'], + 0x2278: [681,181,670,80,590,'590 44l-343 -135l-29 -90h-46l22 69l-109 -43v56l130 51l68 209l-198 78v56l214 -85l31 96l-250 98v52l343 135l29 90h46l-22 -69l109 43v-56l-130 -51l-68 -209l198 -78v-56l-214 85l-31 -96l250 -98v-52zM402 527l-246 -97l190 -75zM514 70l-190 75l-56 -172'], + 0x2279: [681,181,670,80,590,'590 404l-209 -82l-40 -123l244 96v-56l-264 -104l-38 -115l302 -119v-56l-318 125l-49 -151h-46l54 167l-146 58v52l208 82l40 123l-243 -96v56l264 104l38 115l-302 119v56l318 -125l49 151h46l-54 -167l146 -58v-52zM514 430l-86 34l-26 -78zM268 114l-112 -44l86 -34 '], + 0x2284: [650,150,678,80,598,'598 0h-268c-8 0 -15 0 -23 1l-49 -151h-46l52 159c-106 29 -184 126 -184 241c0 138 112 250 250 250h93l49 150h46l-49 -150h129v-52h-146l-128 -396h6h268v-52zM406 448h-76c-109 0 -198 -89 -198 -198c0 -92 63 -169 148 -192'], + 0x2285: [650,150,678,80,598,'598 250c0 -138 -112 -250 -250 -250h-93l-49 -150h-46l49 150h-129v52h146l128 396h-6h-268v52h268c8 0 15 0 23 -1l49 151h46l-52 -159c106 -29 184 -126 184 -241zM546 250c0 92 -63 169 -148 192l-126 -390h76c109 0 198 89 198 198'], + 0x228C: [500,18,660,80,580,'580 232c0 -138 -112 -250 -250 -250s-250 112 -250 250v268h52v-268c0 -109 89 -198 198 -198s198 89 198 198v268h52v-268zM458 228h-187l66 -66h-57l-88 88l88 88h57l-66 -66h187v-44'], + 0x228D: [500,18,660,80,580,'580 232c0 -138 -112 -250 -250 -250s-250 112 -250 250v268h52v-268c0 -109 89 -198 198 -198s198 89 198 198v268h52v-268zM386 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x229C: [568,68,796,80,716,'716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318zM664 250c0 147 -119 266 -266 266s-266 -119 -266 -266s119 -266 266 -266s266 119 266 266zM587 148h-378v52h378v-52zM587 300h-378v52h378v-52'], + 0x22A6: [650,150,586,80,506,'506 224h-374v-374h-52v800h52v-374h374v-52'], + 0x22A7: [650,150,586,80,506,'506 128h-374v-278h-52v800h52v-278h374v-52h-374v-140h374v-52'], + 0x22AB: [650,150,738,80,658,'132 -150h-52v800h52v-800zM658 128h-374v-278h-52v800h52v-278h374v-52h-374v-140h374v-52'], + 0x22B6: [400,-100,960,80,880,'880 250c0 -83 -67 -150 -150 -150c-74 0 -135 54 -148 124h-204c-13 -70 -74 -124 -148 -124c-83 0 -150 67 -150 150s67 150 150 150c74 0 135 -54 148 -124h204c13 70 74 124 148 124c83 0 150 -67 150 -150zM336 250c0 59 -47 106 -106 106s-106 -47 -106 -106 s47 -106 106 -106s106 47 106 106'], + 0x22B7: [400,-100,960,80,880,'880 250c0 -83 -67 -150 -150 -150c-74 0 -135 54 -148 124h-204c-13 -70 -74 -124 -148 -124c-83 0 -150 67 -150 150s67 150 150 150c74 0 135 -54 148 -124h204c13 70 74 124 148 124c83 0 150 -67 150 -150zM836 250c0 59 -47 106 -106 106s-106 -47 -106 -106 s47 -106 106 -106s106 47 106 106'], + 0x22B9: [500,0,660,80,580,'580 224h-180v52h180v-52zM356 320h-52v180h52v-180zM260 224h-180v52h180v-52zM356 0h-52v180h52v-180'], + 0x22BD: [529,29,660,80,580,'580 377l-224 -406h-52l-224 406h59l191 -346l191 346h59zM580 477h-500v52h500v-52'], + 0x22BE: [526,85,771,80,691,'691 0h-141c-2 -28 -8 -56 -17 -85l-50 16c8 23 13 46 15 69h-307l-26 26v307c-23 -3 -46 -7 -69 -15l-16 50c29 9 57 15 85 17v141h52v-141c176 -12 321 -157 333 -333h141v-52zM498 52c-12 148 -133 269 -281 281v-281h281'], + 0x22BF: [544,0,704,80,624,'624 26l-25 -26h-501l-18 44l500 500l44 -18v-500zM572 463l-411 -411h411v411'], + 0x22C0: [698,190,960,80,880,'880 -190h-59l-341 810l-341 -810h-59l374 888h52'], + 0x22C1: [690,198,960,80,880,'880 690l-374 -888h-52l-374 888h59l341 -810l341 810h59'], + 0x22C2: [708,190,960,80,880,'880 -190h-54v498c0 191 -155 346 -346 346s-346 -155 -346 -346v-498h-54v498c0 221 179 400 400 400s400 -179 400 -400v-498'], + 0x22C3: [690,208,960,80,880,'880 192c0 -221 -179 -400 -400 -400s-400 179 -400 400v498h54v-498c0 -191 155 -346 346 -346s346 155 346 346v498h54v-498'], + 0x22C7: [521,21,671,80,591,'591 31l-37 -36l-219 218l-218 -218l-37 36l193 193h-188v52h188l-193 193l37 36l218 -218l219 218l37 -36l-193 -193h187v-52h-187zM391 35c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM391 465c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56 s56 -25 56 -56'], + 0x22D5: [650,150,660,80,580,'580 128h-156v-278h-44v278h-100v-278h-44v278h-156v52h156v140h-156v52h156v278h44v-278h100v278h44v-278h156v-52h-156v-140h156v-52zM380 180v140h-100v-140h100'], + 0x22DC: [564,54,665,80,585,'585 -54l-505 212v52l505 212v-56l-433 -182l433 -182v-56zM585 512h-505v52h505v-52'], + 0x22DD: [564,54,665,80,585,'585 158l-505 -212v56l433 182l-433 182v56l505 -212v-52zM585 512h-505v52h505v-52'], + 0x22E2: [685,185,660,80,580,'580 -76h-333l-35 -109h-47l36 109h-121v52h138l32 100h-144l-26 26v448l26 26h307l35 109h47l-36 -109h121v-52h-138l-129 -396h267v-52h-283l-33 -100h316v-52zM396 524h-264v-396h135'], + 0x22E3: [685,185,660,80,580,'580 -76h-333l-35 -109h-47l36 109h-121v52h138l32 100h-170v52h187l129 396h-316v52h333l35 109h47l-36 -109h95l26 -26v-448l-26 -26h-257l-33 -100h316v-52zM528 128v396h-86l-129 -396h215'], + 0x22E4: [576,143,660,80,580,'580 76h-474l-26 26v448l26 26h474v-52h-448v-396h448v-52zM580 -76h-240l-42 -67h-52l42 67h-208v52h240l42 67h52l-42 -67h208v-52'], + 0x22E5: [576,143,660,80,580,'580 550v-448l-26 -26h-474v52h448v396h-448v52h474zM580 -76h-240l-42 -67h-52l42 67h-208v52h240l42 67h52l-42 -67h208v-52'], + 0x22F0: [517,17,694,80,614,'403 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM614 461c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM192 39c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2A00: [688,188,1036,80,956,'956 250c0 -242 -196 -438 -438 -438s-438 196 -438 438s196 438 438 438s438 -196 438 -438zM574 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM902 250c0 212 -172 384 -384 384s-384 -172 -384 -384s172 -384 384 -384s384 172 384 384'], + 0x2A01: [688,188,1036,80,956,'901 277c-13 190 -166 343 -356 356v-356h356zM491 633c-190 -13 -343 -166 -356 -356h356v356zM491 -133v356h-356c13 -190 166 -343 356 -356zM901 223h-356v-356c190 13 343 166 356 356zM956 250c0 -242 -196 -438 -438 -438s-438 196 -438 438s196 438 438 438 s438 -196 438 -438'], + 0x2A02: [688,188,1036,80,956,'902 250c0 96 -35 184 -94 252l-252 -252l252 -252c59 68 94 156 94 252zM770 540c-68 59 -156 94 -252 94s-184 -35 -252 -94l252 -252zM480 250l-252 252c-59 -68 -94 -156 -94 -252s35 -184 94 -252zM770 -40l-252 252l-252 -252c68 -59 156 -94 252 -94 s184 35 252 94zM956 250c0 -242 -196 -438 -438 -438s-438 196 -438 438s196 438 438 438s438 -196 438 -438'], + 0x2A03: [690,208,960,80,880,'880 192c0 -221 -179 -400 -400 -400s-400 179 -400 400v498h54v-498c0 -191 155 -346 346 -346s346 155 346 346v498h54v-498zM536 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2A04: [690,208,960,80,880,'880 192c0 -221 -179 -400 -400 -400s-400 179 -400 400v498h54v-498c0 -191 155 -346 346 -346s346 155 346 346v498h54v-498zM680 223h-173v-173h-54v173h-173v54h173v173h54v-173h173v-54'], + 0x2A05: [704,176,896,80,816,'816 -176h-54v826h-628v-826h-54v853l27 26l682 1l27 -27v-853'], + 0x2A06: [676,204,896,80,816,'816 676v-853l-27 -27l-682 1l-27 26v853h54v-826h628v826h54'], + 0x2A09: [608,108,876,80,796,'796 -70l-39 -38l-319 320l-320 -320l-38 38l320 320l-320 320l38 38l320 -320l319 320l39 -38l-320 -320'], + 0x2A0C: [796,296,1794,80,1714,'586 703c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58 c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93zM962 703c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9 c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361 c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93zM1338 703c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308 c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93zM1714 703c0 -33 -21 -58 -57 -58 c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361c0 -79 -1 -159 -8 -238c-22 -255 -100 -308 -205 -308c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24 c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c6 55 6 241 6 361c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93'], + 0x2A11: [796,296,729,80,689,'689 180l-10 -55l-52 74c-21 -115 -114 -205 -231 -222c-25 -225 -101 -273 -201 -273c-53 0 -92 38 -92 93c0 33 21 58 57 58c32 0 57 -19 57 -58c0 -5 -3 -17 -10 -24c-4 -7 -7 -11 -7 -16c0 -4 6 -9 18 -9c36 0 69 40 80 141c2 18 3 51 4 90 c-126 25 -222 137 -222 271h46c0 -109 76 -200 177 -224l1 224c0 79 1 159 8 238c22 255 100 308 205 308c53 0 92 -38 92 -93c0 -33 -21 -58 -57 -58c-32 0 -57 19 -57 58c0 5 3 17 10 24c4 7 7 11 7 16c0 4 -6 9 -18 9c-36 0 -69 -40 -80 -141c-6 -55 -6 -241 -6 -361 c0 -75 -1 -151 -7 -226c92 19 164 92 181 185l-76 -54l10 56l102 71'], + 0x2A2F: [455,-45,570,80,490,'490 116l-71 -71l-134 134l-134 -134l-71 71l134 134l-134 134l71 71l134 -134l134 134l71 -71l-134 -134'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Operators/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/SansSerif/Regular/Main.js new file mode 100644 index 0000000..a6ddb64 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/SansSerif/Regular/Main.js @@ -0,0 +1,372 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'GyreTermesMathJax_SansSerif', + id: 'GYRETERMESSANSSERIF', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x1D5A0: [671,0,616,17,602,'602 0h-96l-69 201h-258l-71 -201h-91l239 671h111zM414 273l-104 306l-110 -306h214'], + 0x1D5A1: [671,0,623,79,579,'579 191c0 -110 -77 -191 -197 -191h-303v671h272c127 0 199 -73 199 -171c0 -68 -32 -117 -93 -146c86 -33 122 -82 122 -163zM464 489c0 68 -39 106 -134 106h-165v-213h165c95 0 134 38 134 107zM494 190c0 66 -40 116 -121 116h-208v-231h208c81 0 121 51 121 115'], + 0x1D5A2: [687,17,672,48,627,'627 245c-21 -175 -113 -262 -276 -262c-197 0 -303 149 -303 345c0 195 103 359 306 359c148 0 232 -77 259 -224h-88c-21 102 -76 149 -181 149c-129 0 -210 -112 -210 -284c0 -167 84 -269 218 -269c113 0 166 59 186 186h89'], + 0x1D5A3: [671,0,676,89,621,'621 336c0 -209 -104 -336 -273 -336h-259v671h259c170 0 273 -127 273 -335zM535 335c0 171 -70 260 -202 260h-158v-520h158c132 0 202 91 202 260'], + 0x1D5A4: [671,0,625,90,571,'571 0h-481v671h465v-76h-379v-214h365v-76h-365v-230h395v-75'], + 0x1D5A5: [671,0,572,90,540,'540 595h-364v-214h320v-76h-320v-305h-86v671h450v-76'], + 0x1D5A6: [687,17,725,44,656,'656 0h-54l-22 88c-65 -72 -138 -105 -229 -105c-181 0 -307 139 -307 345c0 201 117 359 322 359c154 0 257 -83 281 -220h-88c-18 87 -92 145 -194 145c-142 0 -235 -114 -235 -279c0 -164 88 -274 240 -274c122 0 210 82 210 201v19h-204v75h280v-354'], + 0x1D5A7: [671,0,677,83,599,'599 0h-85v305h-345v-305h-86v671h86v-290h345v290h85v-671'], + 0x1D5A8: [671,0,271,100,186,'186 0h-86v671h86v-671'], + 0x1D5A9: [671,17,467,19,393,'393 172c0 -116 -72 -189 -189 -189s-185 69 -185 178v54h86v-38c0 -79 35 -122 100 -122s103 38 103 148v468h85v-499'], + 0x1D5AA: [671,0,621,79,612,'612 0h-102l-236 344l-109 -109v-235h-86v671h86v-340l334 340h110l-273 -274'], + 0x1D5AB: [671,0,520,80,497,'497 0h-417v671h86v-596h331v-75'], + 0x1D5AC: [671,0,778,75,706,'706 0h-81v562l-188 -562h-91l-190 562v-562h-81v671h119l198 -585l195 585h119v-671'], + 0x1D5AD: [671,0,676,76,600,'600 0h-96l-347 544v-544h-81v671h93l350 -549v549h81v-671'], + 0x1D5AE: [687,17,722,38,686,'686 325c0 -197 -127 -342 -324 -342c-193 0 -324 138 -324 347c0 210 131 357 323 357c197 0 325 -146 325 -362zM600 327c0 169 -94 285 -239 285c-142 0 -237 -116 -237 -282c0 -165 95 -271 238 -271c142 0 238 106 238 268'], + 0x1D5AF: [671,0,625,91,575,'575 474c0 -112 -77 -190 -188 -190h-210v-284h-86v671h277c132 0 207 -71 207 -197zM486 477c0 74 -49 118 -131 118h-178v-235h178c82 0 131 44 131 117'], + 0x1D5B0: [687,50,722,38,686,'686 332c0 -106 -32 -188 -95 -257l86 -71l-43 -54l-96 80c-55 -32 -110 -47 -176 -47c-193 0 -324 138 -324 347c0 210 131 357 324 357s324 -147 324 -355zM600 331c0 165 -96 281 -238 281c-143 0 -238 -116 -238 -282c0 -165 94 -271 237 -271c40 0 71 7 110 26 l-68 57l43 51l81 -67c50 56 73 119 73 205'], + 0x1D5B1: [671,0,675,93,632,'632 0h-104c-12 28 -20 68 -19 109l1 60c1 83 -35 120 -111 120h-220v-289h-86v671h309c132 0 204 -64 204 -180c0 -76 -30 -123 -105 -160c72 -31 89 -64 91 -175c1 -89 8 -113 40 -135v-21zM517 479c0 76 -36 116 -131 116h-207v-231h207c91 0 131 36 131 115'], + 0x1D5B2: [687,17,621,48,575,'575 184c0 -120 -92 -201 -262 -201c-158 0 -265 77 -265 235h81c0 -96 63 -159 189 -159c116 0 172 43 172 117c0 52 -39 86 -124 108l-166 44c-89 23 -132 75 -132 157c0 121 91 202 239 202c154 0 245 -76 245 -208h-81c0 88 -61 136 -167 136 c-90 0 -150 -50 -150 -118c0 -52 29 -78 110 -100l169 -45c91 -24 142 -85 142 -168'], + 0x1D5B3: [671,0,565,21,547,'547 595h-220v-595h-85v595h-221v76h526v-76'], + 0x1D5B4: [671,17,677,85,600,'600 204c0 -134 -101 -221 -258 -221c-159 0 -257 85 -257 221v467h86v-467c0 -97 70 -145 171 -145c107 0 173 55 173 145v467h85v-467'], + 0x1D5B5: [671,0,618,30,596,'596 671l-233 -671h-92l-241 671h92l197 -568l186 568h91'], + 0x1D5B6: [671,0,871,22,856,'856 671l-170 -671h-94l-154 551l-150 -551h-94l-172 671h96l126 -545l149 545h92l152 -545l124 545h95'], + 0x1D5B7: [671,0,617,22,599,'599 0h-106l-183 280l-184 -280h-104l237 344l-222 327h104l172 -263l173 263h102l-227 -327'], + 0x1D5B8: [671,0,615,13,609,'609 671l-252 -408v-263h-85v263l-259 408h106l197 -327l191 327h102'], + 0x1D5B9: [671,0,567,28,539,'539 0h-511v75l403 520h-377v76h483v-78l-401 -518h403v-75'], + 0x1D5BA: [496,14,517,42,496,'496 2c-25 -7 -37 -8 -53 -8c-38 0 -71 26 -79 63c-42 -45 -102 -71 -164 -71c-97 0 -158 52 -158 139c0 59 29 102 85 125c29 12 46 16 154 30c61 7 80 21 80 53v20c0 46 -38 72 -107 72c-72 0 -107 -27 -114 -86h-77c5 112 77 157 193 157c119 0 182 -46 182 -132v-268 c0 -24 14 -38 41 -38c5 0 8 0 17 2v-58zM361 167v71c-26 -12 -42 -15 -123 -26c-82 -12 -116 -34 -116 -85c0 -52 35 -74 95 -74c74 0 144 45 144 114'], + 0x1D5BB: [671,14,518,54,485,'485 247c0 -157 -82 -261 -209 -261c-67 0 -116 27 -153 83v-69h-69v671h76v-254c36 54 83 79 149 79c127 0 206 -93 206 -249zM405 242c0 108 -55 182 -140 182c-81 4 -135 -70 -135 -183c0 -109 54 -183 135 -183c83 0 140 74 140 184'], + 0x1D5BC: [496,14,464,31,441,'441 166c-9 -111 -82 -180 -197 -180c-130 0 -213 95 -213 250c0 161 85 260 214 260c108 0 182 -58 191 -176h-77c-10 67 -50 105 -115 105c-83 0 -133 -68 -133 -189c0 -114 51 -179 135 -179c66 0 105 31 118 109h77'], + 0x1D5BD: [671,14,518,26,457,'457 0h-68v71c-41 -60 -87 -85 -153 -85c-130 0 -210 97 -210 260c0 153 82 250 207 250c64 0 116 -26 148 -75v250h76v-671zM381 239c0 112 -52 185 -135 185c-84 0 -140 -71 -140 -183s56 -183 141 -183c81 0 134 70 134 181'], + 0x1D5BE: [496,14,518,40,475,'475 219h-355c2 -110 62 -162 142 -162c61 0 105 26 126 89h77c-19 -97 -96 -160 -206 -160c-135 0 -219 94 -219 252c0 159 86 258 221 258c90 0 164 -48 195 -127c14 -36 19 -80 19 -150zM393 287c0 75 -58 138 -133 138c-77 0 -132 -58 -138 -143h270c1 1 1 5 1 5'], + 0x1D5BF: [673,0,259,18,239,'239 420h-80v-420h-77v420h-64v62h64v82c0 69 43 109 114 109c15 0 25 0 43 -4v-64c-18 1 -20 1 -27 1c-35 0 -53 -16 -53 -48v-76h80v-62'], + 0x1D5C0: [496,201,519,29,452,'452 79c0 -212 -64 -280 -215 -280c-113 0 -184 55 -192 146h78c9 -59 56 -81 117 -81c89 0 141 49 141 176v33c-50 -61 -93 -87 -153 -87c-113 0 -199 99 -199 250c0 157 83 260 205 260c62 0 109 -27 147 -84v70h71v-403zM374 238c0 117 -49 187 -132 187 c-81 0 -133 -68 -133 -184c0 -117 51 -184 134 -184c81 0 131 66 131 181'], + 0x1D5C1: [671,0,523,70,453,'453 0h-77v334c0 63 -45 95 -99 95c-79 0 -131 -65 -131 -163v-266h-76v671h76v-255c45 59 87 80 155 80c94 0 152 -51 152 -132v-364'], + 0x1D5C2: [650,0,214,60,156,'146 0h-77v482h77v-482zM156 555h-96v95h96v-95'], + 0x1D5C3: [650,201,207,-18,149,'139 -100c0 -66 -45 -101 -131 -101c-12 0 -17 1 -26 3v66l18 -1c47 -3 63 17 63 63v552h76v-582zM149 555h-95v95h95v-95'], + 0x1D5C4: [671,0,464,58,466,'466 0h-94l-163 261l-75 -73v-188h-76v671h76v-393l205 204h98l-167 -166'], + 0x1D5C5: [671,0,215,68,144,'144 0h-76v671h76v-671'], + 0x1D5C6: [496,0,778,71,705,'705 0h-76v332c0 61 -33 97 -89 97c-62 0 -114 -56 -114 -126v-303h-76v332c0 62 -32 97 -89 97c-63 0 -114 -56 -114 -126v-303h-76v482h70v-68c41 58 84 82 148 82c63 0 101 -22 130 -74c45 55 83 74 148 74c90 0 138 -48 138 -134v-362'], + 0x1D5C7: [496,0,523,70,454,'454 0h-77v334c0 58 -38 95 -99 95c-78 0 -132 -65 -132 -163v-266h-76v482h71v-81c42 67 88 95 160 95c93 0 153 -52 153 -132v-364'], + 0x1D5C8: [496,14,518,36,472,'472 237c0 -158 -83 -251 -218 -251c-137 0 -218 93 -218 255s82 255 217 255c139 0 219 -92 219 -259zM392 238c0 120 -51 187 -138 187c-86 0 -138 -68 -138 -184c0 -117 52 -184 138 -184c85 0 138 68 138 181'], + 0x1D5C9: [496,201,519,55,486,'486 236c0 -153 -82 -250 -207 -250c-62 0 -107 22 -148 72v-259h-76v683h70v-73c36 57 88 87 154 87c127 0 207 -98 207 -260zM406 238c0 115 -56 186 -140 186c-81 0 -135 -73 -135 -187c0 -113 54 -179 135 -179c83 0 140 71 140 180'], + 0x1D5CA: [496,201,518,26,457,'457 -201h-76v264c-36 -53 -82 -77 -149 -77c-127 0 -206 93 -206 250c0 160 83 260 210 260c63 0 118 -28 153 -78v64h68v-683zM381 238c0 113 -52 186 -134 186c-85 0 -141 -72 -141 -183c0 -112 56 -183 141 -183c81 0 134 70 134 180'], + 0x1D5CB: [496,0,313,70,301,'301 415c-119 -2 -155 -56 -155 -165v-250h-76v482h70v-87c44 71 82 101 131 101c11 0 17 -1 30 -3v-78'], + 0x1D5CC: [496,14,466,34,425,'425 135c0 -93 -77 -149 -199 -149c-126 0 -188 50 -192 161h81c10 -73 49 -90 118 -90c67 0 112 27 112 72c0 35 -21 50 -75 63l-71 18c-114 27 -153 63 -153 139c0 89 73 147 185 147c111 0 174 -53 175 -148h-81c-2 50 -35 77 -97 77s-102 -28 -102 -73 c0 -34 27 -54 89 -69l74 -17c96 -23 136 -59 136 -131'], + 0x1D5CD: [615,6,259,14,235,'235 0c-26 -5 -44 -6 -63 -6c-60 0 -93 27 -93 76v350h-65v62h65v133h77v-133h79v-62h-79v-316c0 -34 9 -43 42 -43c15 0 27 1 37 3v-64'], + 0x1D5CE: [482,14,523,65,449,'449 0h-69v75c-45 -64 -91 -89 -161 -89c-94 0 -154 52 -154 132v364h76v-334c0 -58 39 -95 100 -95c80 0 131 65 131 163v266h77v-482'], + 0x1D5CF: [482,0,462,10,448,'448 482l-185 -482h-84l-169 482h86l129 -391l136 391h87'], + 0x1D5D0: [482,0,666,6,652,'652 482l-142 -482h-87l-98 378l-93 -378h-86l-140 482h85l98 -375l92 375h94l95 -375l95 375h87'], + 0x1D5D1: [482,0,464,17,437,'437 0h-90l-120 185l-123 -185h-87l170 246l-161 236h88l116 -175l115 175h87l-162 -233'], + 0x1D5D2: [482,201,463,20,441,'441 482l-214 -583c-26 -69 -70 -100 -124 -100c-20 0 -36 4 -52 12v69c17 -3 30 -5 41 -5c33 0 49 13 61 47l30 76l-163 484h82l123 -375l134 375h82'], + 0x1D5D3: [482,0,466,31,423,'423 0h-392v69l288 346h-269v67h360v-68l-286 -347h299v-67'], + 0x1D5D4: [671,0,654,26,635,'635 0h-138l-44 135h-245l-44 -135h-138l233 671h149zM417 250l-86 262l-85 -262h171'], + 0x1D5D5: [671,0,664,82,608,'608 193c0 -110 -78 -193 -231 -193h-295v671h292c137 0 215 -82 215 -177c0 -57 -26 -96 -90 -138c73 -44 109 -97 109 -163zM459 479c0 50 -33 77 -95 77h-147v-152h147c62 0 95 27 95 75zM478 201c0 58 -34 88 -100 88h-161v-174h161c66 0 100 30 100 86'], + 0x1D5D6: [682,11,658,44,621,'621 229c-8 -154 -117 -240 -280 -240c-183 0 -297 131 -297 346c0 217 115 347 301 347c147 0 261 -84 273 -239h-129c-19 87 -67 121 -140 121c-106 0 -170 -83 -170 -231c0 -146 61 -228 166 -228c83 0 136 39 144 124h132'], + 0x1D5D7: [671,0,662,77,621,'621 336c0 -104 -29 -195 -81 -258c-45 -54 -107 -78 -207 -78h-256v671h256c101 0 163 -23 207 -78c53 -63 81 -154 81 -257zM486 335c0 148 -51 221 -153 221h-121v-441h121c102 0 153 73 153 220'], + 0x1D5D8: [671,0,612,79,569,'569 0h-490v671h474v-115h-339v-152h314v-115h-314v-174h355v-115'], + 0x1D5D9: [671,0,560,74,535,'535 556h-326v-152h287v-115h-287v-289h-135v671h461v-115'], + 0x1D5DA: [682,11,711,42,644,'644 0h-81l-16 92c-51 -71 -110 -103 -198 -103c-177 0 -307 143 -307 347c0 209 129 346 318 346c158 0 268 -88 284 -226h-127c-26 79 -83 108 -156 108c-115 0 -184 -82 -184 -226c0 -138 78 -231 187 -231c80 0 158 55 167 139h-150v115h263v-361'], + 0x1D5DB: [671,0,663,68,598,'598 0h-135v305h-260v-305h-135v671h135v-251h260v251h135v-671'], + 0x1D5DC: [671,0,263,63,198,'198 0h-135v671h135v-671'], + 0x1D5DD: [671,11,510,24,440,'440 185c0 -125 -77 -196 -211 -196c-122 0 -205 70 -205 203v56h135v-54c0 -62 22 -87 73 -87c47 0 73 27 73 78v486h135v-486'], + 0x1D5DE: [671,0,658,74,653,'653 0h-161l-216 296l-67 -72v-224h-135v671h135v-295l256 295h160l-262 -289'], + 0x1D5DF: [671,0,561,80,529,'529 0h-449v671h135v-556h314v-115'], + 0x1D5E0: [671,0,762,66,705,'705 0h-135v523l-116 -523h-135l-118 523v-523h-135v671h202l118 -534l116 534h203v-671'], + 0x1D5E1: [671,0,663,68,602,'602 0h-135l-264 464v-464h-135v671h139l260 -457v457h135v-671'], + 0x1D5E2: [682,11,708,40,672,'672 331c0 -196 -125 -342 -316 -342c-193 0 -316 146 -316 347c0 192 122 346 315 346c192 0 317 -148 317 -351zM537 332c0 140 -70 232 -181 232c-109 0 -181 -93 -181 -228c0 -141 72 -229 181 -229c108 0 181 88 181 225'], + 0x1D5E3: [671,0,611,76,577,'577 463c0 -136 -77 -224 -198 -224h-168v-239h-135v671h290c137 0 211 -74 211 -208zM442 454c0 69 -33 102 -105 102h-126v-202h126c72 0 105 32 105 100'], + 0x1D5E4: [682,40,708,43,675,'675 35l-69 -75l-77 75c-52 -32 -103 -46 -170 -46c-191 0 -316 145 -316 347c0 201 124 346 316 346s316 -147 316 -344c0 -91 -28 -178 -72 -233zM540 335c0 137 -71 229 -181 229c-109 0 -181 -87 -181 -228s72 -229 180 -229c29 0 58 6 79 17l-69 67l68 75l74 -72 c20 41 30 86 30 141'], + 0x1D5E5: [671,0,662,80,617,'617 0h-145c-17 32 -20 52 -20 115l1 71c0 56 -25 80 -83 80h-155v-266h-135v671h352c116 0 176 -78 176 -182c0 -81 -37 -136 -110 -165c83 -37 87 -46 90 -244c0 -29 9 -43 29 -55v-25zM473 470c0 58 -21 86 -95 86h-163v-175h163c76 0 95 29 95 89'], + 0x1D5E6: [682,11,607,32,573,'573 201c0 -136 -100 -212 -269 -212c-168 0 -272 78 -272 222h131c0 -72 56 -112 148 -112c82 0 132 30 132 86c0 54 -33 74 -123 92l-92 18c-133 27 -184 76 -184 181c0 130 91 206 248 206c160 0 257 -74 257 -216h-126c0 69 -52 105 -137 105 c-70 0 -114 -32 -114 -82c0 -49 28 -69 125 -88l102 -20c122 -24 174 -74 174 -180'], + 0x1D5E7: [671,0,553,14,540,'540 556h-192v-556h-135v556h-199v115h526v-115'], + 0x1D5E8: [671,11,664,76,596,'596 226c0 -158 -110 -237 -260 -237s-260 79 -260 237v445h135v-445c0 -81 40 -119 125 -119s125 38 125 119v445h135v-445'], + 0x1D5E9: [671,0,605,24,585,'585 671l-225 -671h-115l-221 671h136l146 -505l143 505h136'], + 0x1D5EA: [671,0,852,13,840,'840 671l-182 -671h-121l-110 523l-107 -523h-122l-185 671h143l102 -503l101 503h134l106 -504l98 504h143'], + 0x1D5EB: [671,0,604,22,590,'590 0h-160l-126 233l-125 -233h-157l207 338l-200 333h160l116 -221l120 221h157l-203 -329'], + 0x1D5EC: [671,0,605,27,588,'588 671l-208 -423v-248h-135v248l-218 423h150l134 -297l125 297h152'], + 0x1D5ED: [671,0,556,30,523,'523 0h-493v115l336 441h-336v115h493v-115l-335 -441h335v-115'], + 0x1D5EE: [505,8,506,28,474,'474 0h-136c-12 15 -15 37 -15 63c-44 -47 -93 -71 -147 -71c-81 0 -148 46 -148 142c0 90 47 133 143 150l50 9c63 12 101 6 101 58c0 34 -24 50 -73 50c-62 0 -82 -16 -89 -68h-121c8 115 76 172 208 172c131 0 199 -51 199 -153v-276c0 -25 6 -39 28 -60v-16zM322 213 v22c-14 -8 -20 -10 -53 -16l-43 -8c-52 -10 -72 -24 -72 -62c0 -37 26 -53 68 -53c64 0 100 42 100 117'], + 0x1D5EF: [671,8,559,59,523,'523 242c0 -150 -88 -250 -204 -250c-61 0 -103 23 -134 65v-57h-126v671h126v-239c31 50 74 73 134 73c128 0 204 -122 204 -263zM397 247c0 92 -44 150 -106 150c-63 0 -106 -57 -106 -147c0 -95 42 -151 106 -151c62 0 106 58 106 148'], + 0x1D5F0: [505,8,507,34,473,'473 172c-12 -106 -93 -180 -211 -180c-144 0 -228 89 -228 253c0 169 85 260 229 260c122 0 201 -73 210 -194h-120c-15 65 -39 90 -90 90c-80 0 -103 -65 -103 -156c0 -97 39 -149 103 -149c48 0 73 25 90 76h120'], + 0x1D5F1: [671,8,559,29,493,'493 0h-126v57c-31 -42 -73 -65 -134 -65c-128 0 -204 115 -204 255c0 150 88 258 204 258c61 0 103 -23 134 -73v239h126v-671zM367 246c0 94 -42 151 -106 151c-63 0 -106 -58 -106 -150c0 -91 43 -148 106 -148s106 56 106 147'], + 0x1D5F2: [505,8,506,22,475,'475 230l-1 -16h-326c4 -96 41 -124 101 -124c46 0 85 14 96 50h124c-28 -98 -116 -148 -225 -148c-137 0 -222 91 -222 250c0 166 85 263 225 263c143 0 228 -104 228 -275zM343 300c-6 71 -44 107 -98 107c-56 0 -87 -38 -95 -107h193'], + 0x1D5F3: [671,0,303,14,283,'283 401h-75v-401h-126v401h-68v86h68v59c0 84 41 125 125 125c17 0 48 -1 72 -3v-97c-11 2 -26 3 -36 3c-24 0 -35 -13 -35 -39v-48h75v-86'], + 0x1D5F4: [505,201,560,34,490,'490 -17c0 -116 -84 -184 -231 -184c-133 0 -213 60 -215 141h130c10 -38 42 -58 89 -58c63 0 108 42 108 101v74c-47 -48 -81 -65 -138 -65c-120 0 -199 96 -199 251c0 154 86 262 202 262c55 0 97 -26 135 -85v77h119v-514zM372 245c0 92 -46 152 -109 152 c-62 0 -103 -58 -103 -152c0 -90 41 -146 101 -146c65 0 111 56 111 146'], + 0x1D5F5: [671,0,564,67,494,'494 0h-126v304c0 67 -33 92 -78 92c-57 0 -97 -41 -97 -98v-298h-126v671h126v-246c35 54 80 80 142 80c92 0 159 -56 159 -172v-333'], + 0x1D5F6: [685,0,264,67,195,'193 0h-126v497h126v-497zM195 557h-126v128h126v-128'], + 0x1D5F7: [685,201,257,4,189,'189 -86c0 -81 -32 -115 -110 -115c-18 0 -50 2 -75 5v103c9 -3 14 -4 22 -4c27 0 37 11 37 39v555h126v-583zM189 557h-126v128h126v-128'], + 0x1D5F8: [671,0,507,59,499,'499 0h-148l-116 219l-50 -56v-163h-126v671h126v-367l159 193h143l-165 -188'], + 0x1D5F9: [671,0,264,67,193,'193 0h-126v671h126v-671'], + 0x1D5FA: [505,0,813,60,748,'748 0h-126v331c0 40 -27 65 -69 65c-54 0 -86 -37 -86 -98v-298h-126v331c0 40 -26 65 -69 65c-54 0 -86 -37 -86 -98v-298h-126v497h125v-62c41 51 77 70 133 70c61 0 109 -27 133 -74c37 52 81 74 142 74c97 0 155 -57 155 -154v-351'], + 0x1D5FB: [505,0,563,63,498,'498 0h-126v306c0 59 -27 90 -81 90c-62 0 -102 -39 -102 -98v-298h-126v497h126v-72c36 55 80 80 146 80c103 0 163 -62 163 -172v-333'], + 0x1D5FC: [505,8,558,35,516,'516 245c0 -159 -93 -253 -241 -253c-149 0 -240 93 -240 256s91 257 239 257c152 0 242 -92 242 -260zM390 247c0 97 -45 154 -115 154c-68 0 -114 -58 -114 -153c0 -94 46 -152 114 -152s115 58 115 151'], + 0x1D5FD: [505,201,559,58,522,'522 248c0 -150 -86 -256 -203 -256c-61 0 -104 19 -135 74v-267h-126v698h126v-74c31 55 74 82 135 82c127 0 203 -109 203 -257zM396 247c0 94 -42 150 -106 150c-63 0 -106 -56 -106 -149s43 -149 106 -149c62 0 106 57 106 148'], + 0x1D5FE: [505,201,559,28,492,'492 -201h-126v267c-29 -54 -74 -74 -136 -74c-124 0 -202 107 -202 256c0 152 86 257 203 257c61 0 106 -28 135 -82v74h126v-698zM366 246c0 96 -42 151 -106 151c-63 0 -106 -56 -106 -149s43 -149 106 -149s106 56 106 147'], + 0x1D5FF: [505,0,358,63,339,'339 374c-17 2 -26 3 -39 3c-74 0 -111 -38 -111 -113v-264h-126v497h126v-98c27 67 77 106 135 106c4 0 8 0 15 -1v-130'], + 0x1D600: [505,8,507,29,471,'471 147c0 -100 -76 -155 -213 -155c-147 0 -225 57 -229 165h123c11 -53 42 -64 99 -64c59 0 94 12 94 42c0 14 -11 24 -42 34l-151 48c-90 29 -106 62 -106 122c0 103 77 166 200 166c130 0 210 -63 211 -168h-121c-1 45 -31 67 -91 67c-44 0 -73 -19 -73 -46 c0 -20 9 -29 44 -39l159 -47c64 -19 96 -61 96 -118v-7'], + 0x1D601: [620,4,304,14,272,'272 0c-22 -1 -45 -4 -73 -4c-82 0 -123 33 -123 111v294h-62v86h62v133h126v-133h70v-86h-70v-259c0 -44 8 -55 41 -55c9 0 17 1 29 3v-90'], + 0x1D602: [497,8,563,58,493,'493 0h-126v65c-36 -48 -80 -73 -146 -73c-104 0 -163 62 -163 172v333h126v-307c0 -59 27 -89 81 -89c61 0 102 39 102 98v298h126v-497'], + 0x1D603: [497,0,504,14,484,'484 497l-168 -497h-132l-170 497h133l105 -364l99 364h133'], + 0x1D604: [497,0,702,5,690,'690 497l-138 -497h-130l-73 351l-78 -351h-129l-137 497h130l78 -348l74 348h126l73 -348l73 348h131'], + 0x1D605: [497,0,504,16,483,'483 0h-151l-82 155l-83 -155h-151l162 250l-158 247h151l79 -150l78 150h151l-158 -247'], + 0x1D606: [497,201,503,9,485,'485 497l-200 -588c-33 -95 -77 -110 -162 -110c-15 0 -26 0 -45 3v97c16 -5 24 -6 34 -6c44 0 78 36 78 83v3l-181 518h139l107 -362l100 362h130'], + 0x1D607: [497,0,455,21,423,'423 0h-402v104l240 289h-224v104h378v-104l-238 -289h246v-104'], + 0x1D608: [671,0,616,-33,552,'552 0h-94l-25 201h-262l-113 -201h-91l382 671h110zM424 273l-37 307l-175 -307h212'], + 0x1D609: [671,0,616,29,610,'610 537c0 -82 -45 -148 -125 -184c65 -27 90 -60 90 -116c0 -137 -112 -237 -242 -237h-304l143 671h272c104 0 166 -53 166 -134zM522 516c0 54 -36 79 -114 79h-166l-46 -213h166c110 0 160 57 160 134zM486 223c0 54 -34 83 -97 83h-208l-50 -231h209 c86 0 146 62 146 148'], + 0x1D60A: [687,17,669,63,667,'667 463h-88c-7 99 -52 150 -145 150c-85 0 -152 -40 -208 -123c-47 -70 -75 -162 -75 -246c0 -112 64 -186 159 -186c119 0 177 55 235 187h90c-78 -186 -175 -262 -337 -262c-148 0 -235 98 -235 244c0 115 45 243 118 331c72 86 161 129 268 129 c127 0 211 -74 218 -224'], + 0x1D60B: [671,0,668,39,655,'655 449c0 -253 -157 -449 -357 -449h-259l143 671h259c137 0 214 -96 214 -222zM567 442c0 95 -59 153 -157 153h-158l-111 -520h158c160 0 268 156 268 367'], + 0x1D60C: [671,0,614,40,648,'648 671l-16 -76h-379l-46 -214h365l-17 -76h-363l-50 -230h395l-16 -75h-481l143 671h465'], + 0x1D60D: [671,0,559,40,632,'632 671l-15 -76h-364l-46 -214h320l-16 -76h-319l-66 -305h-86l143 671h449'], + 0x1D60E: [687,17,722,60,703,'703 467h-84c-1 94 -71 146 -165 146c-176 0 -306 -170 -306 -354c0 -127 62 -201 190 -201c119 0 225 77 253 197l5 24h-204l17 75h279l-75 -354h-54l-5 79c-86 -73 -152 -96 -247 -96c-145 0 -247 94 -247 262c0 215 166 442 410 442c145 0 233 -82 233 -204v-6v-10'], + 0x1D60F: [671,0,665,33,692,'692 671l-143 -671h-86l65 305h-343l-66 -305h-86l143 671h86l-62 -290h344l61 290h87'], + 0x1D610: [671,0,258,50,279,'279 671l-143 -671h-86l143 671h86'], + 0x1D611: [671,17,457,-2,488,'488 671l-105 -499c-26 -120 -111 -189 -232 -189c-101 0 -153 62 -153 134c0 13 2 28 6 44l11 54h87l-12 -56c-3 -11 -4 -21 -4 -31c0 -42 33 -70 83 -70c66 0 111 40 134 145l99 468h86'], + 0x1D612: [671,0,608,29,704,'704 671l-332 -274l190 -397h-102l-154 346l-142 -117l-49 -229h-86l143 671h86l-73 -343l409 343h110'], + 0x1D613: [671,0,518,30,463,'463 75l-15 -75h-418l143 671h86l-127 -596h331'], + 0x1D614: [671,0,766,25,799,'799 671l-143 -671h-82l119 557l-307 -557h-90l-70 557l-119 -557h-82l143 671h118l74 -577l318 577h121'], + 0x1D615: [671,0,664,26,693,'693 671l-143 -671h-97l-229 544l-116 -544h-82l143 671h95l230 -550l117 550h82'], + 0x1D616: [687,17,720,55,721,'721 432c0 -231 -158 -449 -402 -449c-162 0 -264 93 -264 264c0 226 175 440 398 440c167 0 268 -94 268 -255zM633 416c0 125 -74 197 -191 197c-174 0 -299 -175 -299 -359c0 -126 77 -196 188 -196c177 0 302 175 302 358'], + 0x1D617: [671,0,616,41,632,'632 523c0 -125 -95 -239 -234 -239h-210l-61 -284h-86l143 671h277c113 0 171 -51 171 -148zM543 506c0 58 -38 89 -110 89h-179l-50 -235h178c96 0 161 65 161 146'], + 0x1D618: [687,50,720,55,721,'721 425c0 -132 -58 -259 -159 -350l72 -71l-56 -54l-80 80c-67 -36 -109 -47 -180 -47c-165 0 -263 99 -263 264c0 224 169 440 398 440c170 0 268 -97 268 -262zM633 416c0 127 -76 197 -191 197c-174 0 -299 -176 -299 -358c0 -123 72 -197 193 -197c37 0 64 6 109 27 l-57 57l53 51l68 -67c81 77 124 180 124 290'], + 0x1D619: [671,0,668,43,666,'666 529c0 -94 -43 -150 -129 -198c43 -28 55 -48 55 -88c0 -17 -7 -65 -19 -127c-4 -19 -6 -35 -6 -46c0 -20 8 -38 20 -49l-5 -21h-104c-3 19 -4 29 -4 43c0 30 0 30 23 122c4 20 7 39 7 55c0 45 -33 69 -93 69h-220l-62 -289h-86l143 671h309c117 0 171 -44 171 -142z M578 513c0 54 -28 82 -110 82h-212l-49 -231h212c107 0 159 67 159 149'], + 0x1D61A: [687,17,617,40,615,'615 531c0 -14 -2 -26 -7 -52h-81c2 19 3 25 3 33c0 62 -38 101 -139 101c-107 0 -181 -57 -181 -131c0 -40 22 -59 93 -79l158 -45c69 -20 113 -74 113 -135c0 -52 -34 -119 -80 -162c-55 -51 -136 -78 -232 -78c-139 0 -222 67 -222 177c0 19 2 34 8 58h80 c-2 -17 -3 -26 -3 -38c0 -83 47 -122 151 -122c126 0 209 63 209 139c0 43 -30 71 -104 92l-157 45c-62 17 -102 66 -102 124c0 47 28 112 66 151c50 52 124 78 219 78c130 0 208 -63 208 -156'], + 0x1D61B: [671,0,564,108,651,'651 671l-16 -76h-219l-127 -595h-86l127 595h-222l16 76h527'], + 0x1D61C: [671,17,668,75,696,'696 671l-99 -467c-29 -134 -148 -221 -302 -221c-133 0 -220 69 -220 164c0 14 6 58 13 89l93 435h86l-99 -467c-4 -14 -5 -27 -5 -40c0 -64 60 -106 148 -106c104 0 180 55 199 146l100 467h86'], + 0x1D61D: [671,0,618,135,701,'701 671l-376 -671h-92l-98 671h89l77 -568l309 568h91'], + 0x1D61E: [671,0,871,127,961,'961 671l-312 -671h-94l-38 545l-267 -545h-123v671h106v-545l265 545h88l38 -545l242 545h95'], + 0x1D61F: [671,0,605,-28,682,'682 671l-297 -327l165 -344h-106l-123 280l-243 -280h-106l312 344l-154 327h104l115 -263l228 263h105'], + 0x1D620: [671,0,615,118,714,'714 671l-338 -408l-57 -263h-86l56 263l-171 408h103l125 -329l266 329h102'], + 0x1D621: [671,0,554,-22,630,'630 671l-16 -78l-512 -518h403l-15 -75h-512l17 77l510 518h-373l15 76h483'], + 0x1D622: [496,14,516,16,478,'478 392c0 -9 0 -9 -6 -34l-56 -264c-1 -3 -1 -6 -1 -9c0 -19 11 -27 35 -27c4 0 8 0 16 2l-12 -60c-37 -6 -36 -8 -49 -8c-44 0 -73 10 -73 48l1 13c-70 -59 -124 -67 -184 -67c-82 0 -133 41 -133 114c0 54 27 99 75 129c45 29 83 37 207 49c65 5 86 16 92 54l3 17 c1 7 2 13 2 17c0 34 -42 59 -97 59c-69 0 -108 -27 -127 -86h-77c18 103 96 157 224 157c96 0 160 -42 160 -104zM370 237c-40 -13 -48 -14 -134 -26c-98 -14 -139 -44 -139 -102c0 -38 30 -57 83 -57c81 0 162 49 174 106'], + 0x1D623: [671,14,513,4,495,'495 316c0 -164 -104 -330 -268 -330c-67 0 -109 27 -137 89l-17 -75h-69l143 671h77l-53 -253c59 63 95 78 161 78c93 0 163 -77 163 -180zM414 298c0 79 -40 127 -107 127c-96 0 -182 -109 -182 -253c0 -73 41 -115 103 -115c100 0 186 104 186 241'], + 0x1D624: [496,14,462,27,466,'466 361c0 -3 -1 -13 -2 -27l-1 -14h-77c1 8 1 15 1 20c0 53 -36 85 -94 85c-111 0 -185 -124 -185 -255c0 -72 41 -113 105 -113c66 0 115 33 142 109h78c-38 -131 -114 -180 -233 -180c-107 0 -173 74 -173 174c0 194 111 336 280 336c97 0 159 -65 159 -135'], + 0x1D625: [671,14,510,24,554,'554 671l-143 -671h-74l15 74c-27 -54 -105 -88 -170 -88c-95 0 -158 66 -158 174c0 194 113 336 266 336c65 0 102 -24 131 -84l56 259h77zM391 301c0 78 -40 124 -108 124c-101 0 -178 -116 -178 -247c0 -79 40 -121 109 -121c97 0 177 114 177 244'], + 0x1D626: [496,14,516,35,490,'490 339c0 -25 -4 -64 -12 -108l-2 -12h-355c-5 -18 -6 -27 -5 -42c0 -79 42 -120 115 -120c62 0 110 33 142 89h77c-29 -99 -122 -160 -232 -160c-112 0 -183 81 -183 177c0 74 33 176 76 234c46 61 124 99 204 99c99 0 175 -69 175 -157zM409 312 c0 69 -41 113 -106 113c-75 0 -143 -59 -166 -140h271c1 11 1 18 1 27'], + 0x1D627: [673,0,252,39,337,'337 669l-14 -64c-13 2 -18 2 -25 2c-39 0 -56 -15 -66 -61l-14 -64h80l-13 -62h-79l-90 -420h-77l89 420h-64l13 62h64l18 82c14 68 66 109 137 109c14 0 25 0 41 -4'], + 0x1D628: [496,201,510,-18,505,'505 482l-85 -404c-25 -117 -50 -173 -96 -217c-41 -39 -106 -62 -179 -62c-99 0 -163 46 -163 117c0 4 0 9 1 17l1 12h77v-13c0 -41 37 -66 99 -66c98 0 148 49 174 174l4 19c-46 -48 -100 -73 -158 -73c-94 0 -159 69 -159 169c0 176 110 341 271 341 c55 0 100 -26 128 -86l16 72h69zM384 312c0 69 -39 113 -97 113c-109 0 -185 -126 -185 -255c0 -72 38 -118 100 -118c109 0 182 124 182 260'], + 0x1D629: [671,0,516,20,484,'484 380c0 -11 -1 -22 -4 -34l-74 -346h-77l67 316c6 24 6 24 6 35c0 47 -31 79 -78 79c-84 0 -149 -63 -171 -164l-56 -266h-77l143 671h77l-53 -249c58 55 103 74 172 74c78 0 125 -43 125 -116'], + 0x1D62A: [650,0,203,19,243,'198 482l-102 -482h-77l102 482h77zM243 650l-21 -94h-95l20 94h96'], + 0x1D62B: [650,201,192,-115,232,'188 482l-124 -582c-16 -76 -56 -101 -162 -101c-8 0 -11 1 -17 3l14 66c16 -2 18 -2 23 -2c47 0 61 13 72 64l116 552h78zM232 650l-20 -94h-96l20 94h96'], + 0x1D62C: [671,0,458,8,492,'492 482l-204 -166l128 -316h-88l-105 268l-98 -81l-40 -187h-77l143 671h77l-83 -389l248 200h99'], + 0x1D62D: [671,0,203,18,238,'238 671l-143 -671h-77l143 671h77'], + 0x1D62E: [496,0,771,21,740,'740 394c0 -10 -3 -41 -6 -51l-73 -343h-77l66 314c9 31 9 31 9 45c0 44 -27 71 -70 71c-68 0 -130 -56 -145 -127l-64 -303h-77l70 332c3 12 4 24 4 34c0 38 -30 64 -75 64c-62 0 -125 -57 -139 -127l-65 -303h-77l102 482h70l-12 -60c59 55 101 74 164 74 c61 0 96 -25 111 -76c54 52 107 76 167 76c81 0 117 -54 117 -102'], + 0x1D62F: [496,0,516,20,484,'484 381c0 -12 -1 -23 -4 -35l-74 -346h-77l68 321c3 15 6 29 6 34c0 42 -34 75 -80 75c-83 0 -148 -63 -170 -164l-56 -266h-77l102 482h70l-12 -60c48 49 109 74 179 74c76 0 125 -45 125 -115'], + 0x1D630: [496,14,516,31,486,'486 324c0 -192 -113 -338 -280 -338c-103 0 -175 66 -175 169c0 182 106 341 279 341c110 0 176 -75 176 -172zM405 306c0 75 -39 119 -107 119c-109 0 -186 -119 -186 -252c0 -74 41 -116 107 -116c109 0 186 112 186 249'], + 0x1D631: [496,196,510,-43,490,'490 316c0 -184 -110 -330 -267 -330c-65 0 -103 24 -133 80l-56 -262h-77l144 678h75l-17 -77c25 52 105 91 171 91c98 0 160 -69 160 -180zM409 298c0 79 -41 127 -110 127c-101 0 -179 -121 -179 -252c0 -74 43 -116 110 -116c104 0 179 114 179 241'], + 0x1D632: [496,196,513,22,514,'514 482l-144 -678h-78l56 257c-65 -62 -95 -75 -162 -75c-93 0 -164 74 -164 177c0 164 104 333 270 333c68 0 115 -33 136 -93l17 79h69zM392 306c0 73 -40 119 -101 119c-102 0 -188 -107 -188 -250c0 -74 43 -118 109 -118c94 0 180 104 180 249'], + 0x1D633: [496,0,304,19,357,'357 493l-17 -78h-9c-96 0 -158 -56 -181 -165l-54 -250h-77l102 482h70l-16 -75c57 65 99 89 152 89c10 0 18 -1 30 -3'], + 0x1D634: [496,14,463,13,433,'433 387c0 -12 0 -20 -5 -39h-77c1 7 1 14 1 20c0 36 -31 57 -85 57c-70 0 -116 -33 -116 -80c0 -24 27 -42 78 -55l70 -18c81 -20 111 -49 111 -105c0 -110 -89 -181 -226 -181c-107 0 -171 44 -171 118c0 15 1 26 6 47h81c-1 -9 -1 -18 -1 -23c0 -46 35 -71 99 -71 c71 0 131 36 131 88c0 20 -6 40 -64 55l-68 17c-95 24 -127 52 -127 108c0 97 85 171 213 171c89 0 150 -44 150 -109'], + 0x1D635: [615,6,257,50,295,'295 482l-13 -62h-82l-69 -322c-1 -6 -2 -11 -2 -13c0 -15 13 -25 33 -25c11 0 16 1 44 7l-14 -67c-13 -4 -42 -6 -60 -6c-51 0 -82 27 -82 72c0 9 1 20 3 29l70 325h-66l13 62h66l28 133h77l-28 -133h82'], + 0x1D636: [482,14,516,40,504,'504 482l-102 -482h-70l12 56c-53 -48 -105 -70 -177 -70c-79 0 -127 38 -127 100c0 12 1 23 3 32l77 364h77l-71 -334c-1 -9 -2 -17 -2 -25c0 -43 32 -71 82 -71c78 0 143 65 164 164l56 266h78'], + 0x1D637: [482,0,462,72,510,'510 482l-286 -482h-84l-68 482h85l45 -388l224 388h84'], + 0x1D638: [482,0,666,68,714,'714 482l-243 -482h-98v385l-180 -385h-88l-37 482h101v-375l174 375h107v-375l180 375h84'], + 0x1D639: [482,0,455,-33,488,'488 482l-215 -236l114 -246h-87l-83 184l-160 -184h-90l220 246l-109 236h86l81 -177l153 177h90'], + 0x1D63A: [482,201,453,-42,493,'493 482l-338 -583c-40 -68 -87 -100 -152 -100c-17 0 -28 2 -45 10l15 69c25 -3 31 -4 40 -4c34 0 49 9 74 48l48 74l-63 486h83l42 -374l215 374h81'], + 0x1D63B: [482,0,458,-19,465,'465 482l-17 -69l-360 -347h300l-14 -66h-393l17 68l363 348h-271l14 66h361'], + 0x1D63C: [671,0,654,26,694,'694 671l-59 -671h-138l14 135h-245l-102 -135h-138l519 671h149zM549 512l-197 -262h171'], + 0x1D63D: [671,0,664,82,698,'698 529c0 -11 -1 -23 -4 -35c-12 -57 -46 -96 -119 -138c52 -36 78 -78 78 -129c0 -11 -1 -22 -4 -34c-23 -110 -119 -193 -272 -193h-295l143 671h292c120 0 181 -63 181 -142zM561 479c10 50 -17 77 -79 77h-147l-32 -152h147c62 0 101 27 111 75zM524 225 c0 42 -29 64 -85 64h-161l-37 -174h161c66 0 107 30 119 86c2 9 3 17 3 24'], + 0x1D63E: [682,11,658,103,715,'715 484c0 -13 -1 -27 -3 -41h-129c0 87 -41 121 -114 121c-106 0 -188 -83 -219 -231c-7 -31 -10 -59 -10 -84c0 -93 44 -144 127 -144s145 39 171 124h132c-41 -154 -168 -240 -331 -240c-151 0 -236 89 -236 241c0 32 4 67 12 105c46 217 189 347 375 347 c133 0 225 -69 225 -198'], + 0x1D63F: [671,0,662,77,704,'704 442c0 -33 -4 -69 -12 -106c-22 -104 -70 -195 -135 -258c-57 -54 -124 -78 -224 -78h-256l143 671h256c101 0 158 -23 190 -78c26 -40 38 -92 38 -151zM568 427c0 86 -39 129 -117 129h-121l-94 -441h121c102 0 169 73 200 220c8 35 11 66 11 92'], + 0x1D640: [671,0,612,79,696,'696 671l-25 -115h-339l-32 -152h314l-25 -115h-314l-37 -174h355l-24 -115h-490l143 671h474'], + 0x1D641: [671,0,560,74,678,'678 671l-25 -115h-326l-32 -152h287l-25 -115h-287l-61 -289h-135l143 671h461'], + 0x1D642: [682,11,711,103,742,'742 482c0 -9 0 -17 -1 -26h-127c-9 79 -60 108 -133 108c-115 0 -202 -82 -232 -226c-5 -24 -7 -46 -7 -67c0 -100 55 -164 145 -164c80 0 169 55 196 139h-150l25 115h263l-77 -361h-81l4 92c-67 -71 -132 -103 -220 -103c-149 0 -244 102 -244 256c0 29 3 59 10 91 c45 209 203 346 392 346c148 0 237 -77 237 -200'], + 0x1D643: [671,0,663,68,741,'741 671l-143 -671h-135l65 305h-260l-65 -305h-135l143 671h135l-54 -251h260l54 251h135'], + 0x1D644: [671,0,263,63,341,'341 671l-143 -671h-135l143 671h135'], + 0x1D645: [671,11,510,59,583,'583 671l-104 -486c-26 -125 -118 -196 -252 -196c-104 0 -168 50 -168 147c0 17 2 36 6 56l12 56h135l-12 -54c-3 -13 -4 -25 -4 -35c0 -37 19 -52 59 -52c47 0 78 27 89 78l104 486h135'], + 0x1D646: [671,0,658,74,768,'768 671l-324 -289l209 -382h-161l-153 296l-82 -72l-48 -224h-135l143 671h135l-63 -295l319 295h160'], + 0x1D647: [671,0,561,80,553,'553 115l-24 -115h-449l143 671h135l-119 -556h314'], + 0x1D648: [671,0,762,66,848,'848 671l-143 -671h-135l111 523l-227 -523h-135l-7 523l-111 -523h-135l143 671h202l4 -534l230 534h203'], + 0x1D649: [671,0,663,68,745,'745 671l-143 -671h-135l-165 464l-99 -464h-135l143 671h139l162 -457l98 457h135'], + 0x1D64A: [682,11,708,101,753,'753 426c0 -30 -4 -62 -11 -95c-41 -196 -197 -342 -388 -342c-162 0 -253 103 -253 255c0 29 3 60 10 92c41 192 196 346 389 346c161 0 253 -104 253 -256zM616 405c0 98 -50 159 -140 159c-109 0 -201 -93 -230 -228c-6 -26 -8 -50 -8 -72c0 -98 52 -157 141 -157 c108 0 199 88 229 225c5 26 8 51 8 73'], + 0x1D64B: [671,0,611,76,682,'682 525c0 -19 -2 -39 -7 -62c-28 -136 -124 -224 -245 -224h-168l-51 -239h-135l143 671h290c114 0 173 -51 173 -146zM542 488c0 46 -28 68 -87 68h-126l-43 -202h126c72 0 112 32 126 100c3 12 4 24 4 34'], + 0x1D64C: [682,40,708,104,757,'757 428c0 -29 -3 -59 -10 -90c-19 -91 -66 -178 -122 -233l57 -70l-85 -75l-61 75c-58 -32 -112 -46 -179 -46c-161 0 -253 102 -253 255c0 29 3 60 10 92c43 201 198 346 390 346c161 0 253 -104 253 -254zM619 406c0 97 -50 158 -140 158c-109 0 -200 -87 -230 -228 c-6 -26 -8 -50 -8 -72c0 -98 52 -157 140 -157c29 0 59 6 82 17l-54 67l84 75l58 -72c29 41 49 86 60 141c5 25 8 49 8 71'], + 0x1D64D: [671,0,662,80,718,'718 539c0 -16 -2 -33 -6 -50c-17 -81 -66 -136 -145 -165c44 -22 63 -34 63 -81c0 -32 -9 -82 -25 -163c-6 -29 0 -43 17 -55l-5 -25h-145c-4 14 -7 26 -7 40c0 18 4 40 11 75l17 71c2 10 3 19 3 27c0 37 -21 53 -69 53h-155l-57 -266h-135l143 671h352 c97 0 143 -54 143 -132zM577 501c0 37 -22 55 -81 55h-163l-37 -175h163c76 0 101 29 114 89c2 12 4 22 4 31'], + 0x1D64E: [682,11,607,71,654,'654 521c0 -17 -2 -35 -6 -55h-126c2 9 3 17 3 25c0 53 -44 80 -118 80c-70 0 -120 -32 -131 -82c-10 -49 13 -69 106 -88l98 -20c97 -20 142 -58 142 -130c0 -15 -2 -32 -6 -50c-29 -136 -145 -212 -314 -212c-146 0 -231 59 -231 168c0 17 2 35 6 54h131 c-2 -9 -3 -17 -3 -25c0 -56 46 -87 127 -87c82 0 138 30 150 86c2 8 3 15 3 21c0 39 -32 56 -106 71l-88 18c-106 22 -152 60 -152 132c0 15 2 31 6 49c28 130 135 206 292 206c138 0 217 -55 217 -161'], + 0x1D64F: [671,0,553,132,683,'683 671l-25 -115h-192l-118 -556h-135l118 556h-199l25 115h526'], + 0x1D650: [671,11,664,117,739,'739 671l-95 -445c-34 -158 -160 -237 -310 -237c-129 0 -217 59 -217 176c0 19 2 39 7 61l95 445h135l-95 -445c-3 -14 -4 -27 -4 -38c0 -55 34 -81 104 -81c85 0 133 38 150 119l95 445h135'], + 0x1D651: [671,0,605,167,728,'728 671l-368 -671h-115l-78 671h136l38 -505l251 505h136'], + 0x1D652: [671,0,852,156,983,'983 671l-325 -671h-121l1 523l-218 -523h-122l-42 671h143l-5 -503l208 503h134l-2 -504l206 504h143'], + 0x1D653: [671,0,604,22,725,'725 671l-273 -329l138 -342h-160l-76 233l-175 -233h-157l279 338l-129 333h160l69 -221l167 221h157'], + 0x1D654: [671,0,605,170,731,'731 671l-298 -423l-53 -248h-135l53 248l-128 423h150l70 -297l189 297h152'], + 0x1D655: [671,0,556,30,666,'666 671l-25 -115l-429 -441h335l-24 -115h-493l24 115l430 441h-336l25 115h493'], + 0x1D656: [505,8,506,52,525,'525 391c0 -12 -1 -25 -4 -39l-59 -276c-5 -25 -2 -39 15 -60l-3 -16h-136c-4 8 -6 17 -6 27c0 11 2 23 4 36c-54 -47 -108 -71 -162 -71c-70 0 -122 34 -122 106c0 11 1 23 4 36c20 90 76 133 175 150l52 9c66 12 103 6 114 58c7 34 -14 50 -63 50 c-62 0 -85 -16 -103 -68h-121c32 115 112 172 244 172c113 0 171 -38 171 -114zM372 235c-16 -8 -22 -10 -56 -16l-45 -8c-54 -10 -77 -24 -85 -62c-8 -37 14 -53 56 -53c64 0 109 42 125 117'], + 0x1D657: [671,8,559,59,582,'582 319c0 -25 -2 -51 -8 -77c-31 -150 -141 -250 -257 -250c-61 0 -98 23 -120 65l-12 -57h-126l143 671h126l-51 -239c41 50 89 73 149 73c104 0 156 -80 156 -186zM455 297c0 62 -30 100 -80 100c-63 0 -118 -57 -137 -147c-4 -20 -6 -38 -6 -54c0 -62 29 -97 80 -97 c62 0 118 58 138 148c4 18 5 34 5 50'], + 0x1D658: [505,8,507,77,542,'542 348c0 -12 -1 -24 -3 -37h-120c-1 65 -20 90 -71 90c-80 0 -117 -65 -136 -156c-5 -21 -7 -41 -7 -58c0 -59 28 -91 78 -91c48 0 79 25 107 76h120c-35 -106 -132 -180 -250 -180s-183 60 -183 172c0 25 3 52 9 81c36 169 140 260 284 260c109 0 172 -58 172 -157'], + 0x1D659: [671,8,559,74,636,'636 671l-143 -671h-126l12 57c-40 -42 -87 -65 -148 -65c-104 0 -157 76 -157 180c0 24 2 49 8 75c31 150 142 258 258 258c61 0 98 -23 119 -73l51 239h126zM425 299c0 62 -29 98 -80 98c-63 0 -118 -58 -137 -150c-4 -19 -6 -36 -6 -51c0 -61 30 -97 80 -97 c63 0 118 56 137 147c4 19 6 37 6 53'], + 0x1D65A: [505,8,506,65,534,'534 318c0 -27 -3 -56 -10 -88l-5 -16h-326c-3 -17 -4 -32 -4 -45c0 -60 30 -79 79 -79c46 0 88 14 107 50h124c-49 -98 -148 -148 -257 -148c-113 0 -177 62 -177 174c0 23 2 49 8 76c36 166 141 263 281 263c117 0 180 -69 180 -187zM409 324c0 55 -29 83 -77 83 c-56 0 -96 -38 -118 -107h193c1 8 2 16 2 24'], + 0x1D65B: [671,0,303,82,421,'421 668l-21 -97c-10 2 -25 3 -35 3c-24 0 -38 -13 -43 -39l-10 -48h75l-19 -86h-75l-85 -401h-126l85 401h-68l19 86h68l12 59c18 84 68 125 152 125c17 0 47 -1 71 -3'], + 0x1D65C: [505,201,560,29,596,'596 497l-110 -514c-24 -116 -123 -184 -270 -184c-121 0 -187 49 -187 119c0 7 1 15 2 22h130c2 -38 30 -58 77 -58c63 0 117 42 129 101l16 74c-57 -48 -95 -65 -152 -65c-98 0 -154 63 -154 171c0 24 3 51 9 80c32 154 141 262 257 262c55 0 92 -26 117 -85l17 77h119 zM430 295c0 63 -32 102 -83 102c-62 0 -115 -58 -135 -152c-4 -18 -6 -36 -6 -51c0 -60 28 -95 76 -95c65 0 123 56 142 146c4 18 6 34 6 50'], + 0x1D65D: [671,0,564,67,571,'571 384c0 -16 -2 -33 -6 -51l-71 -333h-126l65 304c2 12 4 22 4 32c0 43 -26 60 -63 60c-57 0 -106 -41 -118 -98l-63 -298h-126l143 671h126l-53 -246c47 54 97 80 159 80c77 0 129 -40 129 -121'], + 0x1D65E: [685,0,264,67,341,'299 497l-106 -497h-126l106 497h126zM341 685l-28 -128h-126l28 128h126'], + 0x1D65F: [685,201,257,-38,335,'295 497l-124 -583c-17 -81 -57 -115 -135 -115c-18 0 -49 2 -74 5l22 103c9 -3 13 -4 21 -4c27 0 40 11 46 39l118 555h126zM335 685l-28 -128h-126l28 128h126'], + 0x1D660: [671,0,507,59,593,'593 497l-205 -188l111 -309h-148l-69 219l-62 -56l-35 -163h-126l143 671h126l-78 -367l200 193h143'], + 0x1D661: [671,0,264,67,336,'336 671l-143 -671h-126l143 671h126'], + 0x1D662: [505,0,813,60,828,'828 393c0 -13 -2 -27 -5 -42l-75 -351h-126l70 331c9 40 -13 65 -55 65c-54 0 -94 -37 -107 -98l-63 -298h-126l70 331c9 40 -12 65 -55 65c-54 0 -94 -37 -107 -98l-63 -298h-126l106 497h125l-14 -62c52 51 92 70 148 70c61 0 104 -27 118 -74c48 52 96 74 157 74 c82 0 128 -41 128 -112'], + 0x1D663: [505,0,563,63,575,'575 384c0 -16 -2 -33 -6 -51l-71 -333h-126l65 306c2 11 4 22 4 31c0 39 -22 59 -66 59c-62 0 -110 -39 -123 -98l-63 -298h-126l106 497h126l-16 -72c48 55 97 80 163 80c86 0 133 -43 133 -121'], + 0x1D664: [505,8,558,79,577,'577 325c0 -25 -3 -51 -9 -80c-34 -159 -147 -253 -295 -253c-124 0 -194 64 -194 180c0 23 3 48 9 76c34 163 145 257 293 257c126 0 196 -63 196 -180zM449 299c0 65 -33 102 -89 102c-68 0 -126 -58 -146 -153c-4 -18 -6 -35 -6 -51c0 -63 32 -101 87 -101 c68 0 128 58 148 151c4 19 6 36 6 52'], + 0x1D665: [505,201,559,15,584,'584 326c0 -24 -3 -50 -9 -78c-32 -150 -141 -256 -258 -256c-61 0 -100 19 -119 74l-57 -267h-126l149 698h126l-16 -74c43 55 91 82 152 82c103 0 158 -72 158 -179zM455 299c0 62 -30 98 -81 98c-63 0 -118 -56 -137 -149c-4 -19 -6 -36 -6 -52c0 -62 30 -97 80 -97 c62 0 118 57 138 148c4 19 6 36 6 52'], + 0x1D666: [505,201,559,72,598,'598 497l-149 -698h-126l57 267c-40 -54 -90 -74 -152 -74c-101 0 -156 71 -156 177c0 25 3 51 9 79c32 152 140 257 257 257c61 0 100 -28 118 -82l16 74h126zM425 301c0 62 -30 96 -81 96c-63 0 -118 -56 -137 -149c-4 -19 -6 -36 -6 -52c0 -62 30 -97 80 -97 c63 0 118 56 137 147c4 20 7 39 7 55'], + 0x1D667: [505,0,358,63,446,'446 504l-28 -130c-16 2 -25 3 -38 3c-74 0 -119 -38 -135 -113l-56 -264h-126l106 497h126l-21 -98c41 67 99 106 157 106c4 0 8 0 15 -1'], + 0x1D668: [505,8,507,59,533,'533 373c0 -11 -1 -23 -4 -36h-121c8 45 -17 67 -77 67c-44 0 -77 -19 -83 -46c-4 -20 3 -29 36 -39l149 -47c50 -16 74 -47 74 -90c0 -9 -1 -18 -3 -28l-2 -7c-21 -100 -109 -155 -246 -155c-131 0 -197 45 -197 131c0 10 1 22 3 34h123c0 -53 29 -64 86 -64 c59 0 96 12 103 42c3 14 -6 24 -35 34l-141 48c-65 22 -85 47 -85 84c0 12 2 24 5 38c22 103 112 166 235 166c114 0 180 -49 180 -132'], + 0x1D669: [620,4,304,95,376,'376 487l-19 -86h-70l-55 -259c-3 -12 -4 -22 -4 -30c0 -19 9 -25 33 -25c9 0 18 1 30 3l-19 -90c-22 -1 -46 -4 -74 -4c-68 0 -103 23 -103 76c0 10 1 22 4 35l62 294h-62l19 86h62l28 133h126l-28 -133h70'], + 0x1D66A: [497,8,563,87,599,'599 497l-106 -497h-126l14 65c-46 -48 -96 -73 -162 -73c-86 0 -132 42 -132 119c0 16 2 34 6 53l71 333h126l-66 -307c-2 -11 -3 -21 -3 -30c0 -39 21 -59 65 -59c61 0 111 39 123 98l64 298h126'], + 0x1D66B: [497,0,504,120,590,'590 497l-274 -497h-132l-64 497h133l27 -364l177 364h133'], + 0x1D66C: [497,0,702,111,796,'796 497l-244 -497h-130l2 351l-153 -351h-129l-31 497h130l4 -348l148 348h126l-1 -348l147 348h131'], + 0x1D66D: [497,0,504,16,585,'585 497l-211 -247l109 -250h-151l-49 155l-116 -155h-151l215 250l-105 247h151l47 -150l110 150h151'], + 0x1D66E: [497,201,503,36,591,'591 497l-325 -588c-54 -95 -101 -110 -186 -110c-15 0 -26 0 -44 3l21 97c14 -5 22 -6 32 -6c44 0 86 36 96 83l1 3l-71 518h139l30 -362l177 362h130'], + 0x1D66F: [497,0,455,21,521,'521 497l-22 -104l-300 -289h246l-22 -104h-402l22 104l302 289h-224l22 104h378'], + 0x1D756: [671,0,769,80,689,'689 0h-138l-44 135h-245l-44 -135h-138l233 671h149zM471 250l-86 262l-85 -262h171'], + 0x1D757: [671,0,686,80,606,'606 193c0 -110 -78 -193 -231 -193h-295v671h292c137 0 215 -82 215 -177c0 -57 -26 -96 -90 -138c73 -44 109 -97 109 -163zM457 479c0 50 -33 77 -95 77h-147v-152h147c62 0 95 27 95 75zM476 201c0 58 -34 88 -100 88h-161v-174h161c66 0 100 30 100 86'], + 0x1D758: [671,0,621,80,541,'541 556h-326v-556h-135v671h461v-115'], + 0x1D759: [650,0,829,80,749,'749 0h-669l276 650h116zM556 129l-141 334l-142 -334h283'], + 0x1D75A: [671,0,650,80,570,'570 0h-490v671h474v-115h-339v-152h314v-115h-314v-174h355v-115'], + 0x1D75B: [671,0,653,80,573,'573 0h-493v115l336 441h-336v115h493v-115l-335 -441h335v-115'], + 0x1D75C: [671,0,690,80,610,'610 0h-135v305h-260v-305h-135v671h135v-251h260v251h135v-671'], + 0x1D75D: [682,11,792,80,712,'712 331c0 -196 -125 -342 -316 -342c-193 0 -316 146 -316 347c0 192 122 346 315 346c192 0 317 -148 317 -351zM577 332c0 140 -70 232 -181 232c-109 0 -181 -93 -181 -228c0 -141 72 -229 181 -229c108 0 181 88 181 225zM513 271h-234v129h234v-129'], + 0x1D75E: [671,0,295,80,215,'215 0h-135v671h135v-671'], + 0x1D75F: [671,0,739,80,659,'659 0h-161l-216 296l-67 -72v-224h-135v671h135v-295l256 295h160l-262 -289'], + 0x1D760: [671,0,769,80,689,'689 0h-138l-166 512l-167 -512h-138l233 671h149'], + 0x1D761: [671,0,799,80,719,'719 0h-135v523l-116 -523h-135l-118 523v-523h-135v671h202l118 -534l116 534h203v-671'], + 0x1D762: [671,0,694,80,614,'614 0h-135l-264 464v-464h-135v671h139l260 -457v457h135v-671'], + 0x1D763: [671,0,675,80,595,'595 533h-515v138h515v-138zM460 278h-245v115h245v-115zM595 0h-515v138h515v-138'], + 0x1D764: [682,11,792,80,712,'712 331c0 -196 -125 -342 -316 -342c-193 0 -316 146 -316 347c0 192 122 346 315 346c192 0 317 -148 317 -351zM577 332c0 140 -70 232 -181 232c-109 0 -181 -93 -181 -228c0 -141 72 -229 181 -229c108 0 181 88 181 225'], + 0x1D765: [671,0,690,80,610,'610 0h-135v556h-260v-556h-135v671h530v-671'], + 0x1D766: [671,0,661,80,581,'581 463c0 -136 -77 -224 -198 -224h-168v-239h-135v671h290c137 0 211 -74 211 -208zM446 454c0 69 -33 102 -105 102h-126v-202h126c72 0 105 32 105 100'], + 0x1D767: [682,11,792,80,712,'712 331c0 -196 -125 -342 -316 -342c-193 0 -316 146 -316 347c0 192 122 346 315 346c192 0 317 -148 317 -351zM571 400c-19 101 -83 164 -175 164c-91 0 -156 -64 -175 -164h350zM572 272h-352c19 -103 85 -165 176 -165s158 63 176 165'], + 0x1D768: [671,0,648,80,568,'568 0h-488v124l206 212l-206 210v125h488v-115h-338l215 -220l-215 -221h338v-115'], + 0x1D769: [671,0,686,80,606,'606 556h-192v-556h-135v556h-199v115h526v-115'], + 0x1D76A: [671,0,721,80,641,'641 671l-208 -423v-248h-135v248l-218 423h150l134 -297l125 297h152'], + 0x1D76B: [671,0,758,80,678,'678 336c0 -137 -111 -194 -232 -215v-121h-135v121c-120 21 -231 78 -231 215c0 136 111 193 231 213v122h135v-122c121 -20 232 -77 232 -213zM552 336c0 63 -52 89 -106 105v-211c54 16 106 42 106 106zM311 230v211c-54 -16 -105 -42 -105 -105 c0 -64 51 -90 105 -106'], + 0x1D76C: [671,0,728,80,648,'648 0h-160l-126 233l-125 -233h-157l207 338l-200 333h160l116 -221l120 221h157l-203 -329'], + 0x1D76D: [671,0,721,80,641,'641 427c0 -140 -101 -234 -213 -243v-184h-135v184c-112 9 -213 103 -213 243v244h126v-244c0 -75 37 -126 87 -128v372h135v-372c50 2 87 53 87 128v244h126v-244'], + 0x1D76E: [682,0,770,80,690,'690 0h-253v227c59 26 106 92 106 165c0 92 -58 175 -158 175s-159 -83 -159 -175c0 -73 48 -139 107 -165v-227h-253v115h158v39c-91 38 -147 151 -147 238c0 159 119 290 294 290s293 -131 293 -290c0 -87 -55 -200 -146 -238v-39h158v-115'], + 0x1D76F: [650,0,829,80,749,'749 650l-276 -650h-116l-277 650h669zM556 521h-283l141 -334'], + 0x1D770: [505,10,762,80,682,'682 48c-43 -41 -84 -59 -119 -58c-56 3 -89 34 -109 78c-33 -45 -71 -76 -144 -76c-149 0 -230 93 -230 256s81 257 229 257c86 0 122 -36 154 -92c15 30 32 57 60 84c0 0 159 1 157 0c-63 -44 -121 -142 -157 -268c10 -67 19 -125 48 -125c23 0 39 10 53 22zM405 247 c0 97 -25 154 -95 154c-68 0 -104 -58 -104 -153c0 -94 36 -152 104 -152s95 58 95 151'], + 0x1D771: [671,202,637,80,557,'431 208c0 70 -47 113 -123 113h-12v87h8c54 1 88 33 88 82c0 48 -33 77 -88 77c-49 0 -78 -27 -78 -73v-337c22 -35 59 -55 100 -55c62 0 105 41 105 106zM557 217c0 -140 -78 -225 -196 -225c-48 0 -94 13 -135 37v-29c0 -69 -10 -150 -20 -202h-126 c10 52 20 150 20 202v477c0 71 16 116 55 148c35 28 95 46 157 46c122 0 206 -69 206 -168c0 -61 -27 -105 -78 -125c31 -6 49 -16 71 -37c33 -32 46 -67 46 -124'], + 0x1D772: [497,230,718,80,638,'638 497l-190 -505s23 -63 22 -124c0 -58 -45 -98 -85 -98s-85 40 -85 98c-1 61 22 124 22 124l-135 357c-25 66 -68 114 -107 148h147c46 -44 69 -84 93 -148l65 -173l121 321h132'], + 0x1D773: [666,10,574,80,494,'494 185c0 -129 -99 -195 -208 -195c-109 -1 -206 72 -206 201c0 117 43 166 132 201c-43 44 -77 68 -75 152c1 38 44 122 155 122c98 0 158 -49 201 -79l-49 -70c-26 17 -98 58 -150 58c-36 0 -55 -17 -55 -38c0 -60 47 -74 111 -115c103 -66 144 -106 144 -237z M368 187c0 41 -13 122 -81 122c-62 0 -81 -41 -81 -118c0 -75 50 -106 80 -106c53 0 82 51 82 102'], + 0x1D774: [505,9,565,80,485,'485 54c-58 -41 -136 -63 -195 -63c-111 0 -210 57 -210 165c0 51 26 76 67 100c-36 21 -59 42 -59 88c0 95 88 161 185 161c66 0 136 -22 194 -63l-35 -70c-46 25 -104 29 -159 28c-31 0 -59 -23 -59 -56c0 -54 83 -44 152 -44v-84c-75 0 -160 7 -160 -60 c0 -45 39 -60 84 -60c55 0 114 3 160 28'], + 0x1D775: [677,194,603,80,523,'523 -41c0 -89 -80 -153 -170 -153v94c27 0 59 28 59 59c0 28 -33 53 -59 53h-35c-130 0 -237 105 -237 236c0 127 102 244 202 305c-68 3 -158 11 -203 20v104c52 -10 150 -20 202 -20h215v-104h-54c-123 -48 -236 -167 -236 -305c0 -70 46 -131 111 -131h35 c91 0 170 -68 170 -158'], + 0x1D776: [505,202,615,80,535,'535 -202h-126c-10 52 -20 133 -20 202v306c0 59 -27 90 -81 90c-62 0 -102 -39 -102 -98v-298h-126v497h126v-72c36 55 80 80 146 80c103 0 163 -62 163 -172v-333c0 -52 10 -150 20 -202'], + 0x1D777: [664,10,578,80,498,'498 325c0 -258 -80 -335 -209 -335s-209 75 -209 333c0 185 22 341 209 341c183 0 209 -154 209 -339zM372 286h-168c3 -150 21 -188 83 -188c59 0 81 39 85 188zM371 391c-4 146 -27 171 -82 171c-56 -2 -79 -27 -84 -171h166'], + 0x1D778: [497,6,371,80,291,'291 -6c-197 0 -211 67 -211 185v318h126v-318c0 -52 9 -80 85 -80v-105'], + 0x1D779: [497,0,631,80,551,'551 0c2 -1 -154 0 -154 0c-46 44 -70 86 -103 148l-38 71l-50 -56v-163h-126v497h126v-193l159 193h143l-165 -188l90 -158c37 -64 79 -117 118 -151'], + 0x1D77A: [673,0,731,80,651,'651 0h-147c-46 44 -67 84 -93 148l-44 108l-147 -256h-140l229 399l-32 81c-18 48 -63 86 -114 86v107c100 0 197 -67 234 -160l147 -365c24 -59 68 -114 107 -148'], + 0x1D77B: [497,202,663,80,583,'583 -6c-20 -11 -37 -15 -63 -15c-42 0 -68 13 -90 50c-35 -37 -68 -50 -109 -50c-37 0 -70 10 -95 35v-14c0 -69 -10 -150 -20 -202h-126c10 52 20 150 20 202v497h131v-307c0 -69 33 -102 81 -102c53 0 95 41 95 98v311h131v-359c0 -53 14 -67 24 -67c6 0 12 1 21 4 v-81'], + 0x1D77C: [497,0,653,80,573,'573 331c0 -158 -94 -299 -236 -331h-79l-178 497h135l134 -373c64 49 102 117 102 207c0 64 -3 95 -16 166h122c16 -61 16 -113 16 -166'], + 0x1D77D: [677,194,603,80,523,'523 -41c0 -89 -80 -153 -170 -153v94c27 0 59 28 59 59c0 28 -33 53 -59 53h-35c-125 0 -237 86 -237 207c0 64 34 116 86 150c-43 31 -58 56 -58 111c0 23 12 61 54 82c-31 3 -59 7 -83 11v104c52 -10 150 -20 202 -20h195v-104l-151 1c-63 -10 -101 -38 -101 -74 c0 -42 61 -60 128 -60v-94c-74 0 -146 -39 -146 -107c0 -59 51 -102 111 -102h35c91 0 170 -68 170 -158'], + 0x1D77E: [505,8,641,80,561,'561 245c0 -159 -93 -253 -241 -253c-149 0 -240 93 -240 256s91 257 239 257c152 0 242 -92 242 -260zM435 247c0 97 -45 154 -115 154c-68 0 -114 -58 -114 -153c0 -94 46 -152 114 -152s115 58 115 151'], + 0x1D77F: [497,6,759,80,679,'679 393h-75v-214c0 -52 4 -80 65 -80v-105c-173 0 -191 55 -191 185v214h-106v-191c0 -69 -10 -150 -20 -202h-126c10 52 20 150 20 202v191c-53 0 -58 -18 -68 -54l-98 23c14 84 60 135 219 135h380v-104'], + 0x1D780: [493,202,635,80,555,'429 248c0 75 -21 140 -92 140c-70 0 -111 -65 -111 -140v-95c33 -29 66 -44 111 -44c71 0 92 65 92 139zM555 248c0 -137 -83 -244 -218 -244c-43 0 -74 11 -111 30v-34c0 -69 -10 -150 -20 -202h-126c10 52 20 150 20 202v248c0 137 102 245 237 245s218 -108 218 -245 '], + 0x1D781: [503,194,592,80,512,'512 -41c0 -89 -80 -153 -170 -153v94c27 0 59 28 59 59c0 28 -33 53 -59 53h-35c-131 0 -227 108 -227 241c0 132 86 250 227 250c91 0 131 -22 172 -50l-46 -87c-32 20 -84 32 -126 32c-70 0 -101 -74 -101 -145c0 -72 35 -136 101 -136h35c91 0 170 -68 170 -158'], + 0x1D782: [524,8,711,80,631,'415 247c0 97 -35 154 -105 154c-68 0 -104 -58 -104 -153c0 -94 36 -152 104 -152s105 58 105 151zM631 420c-36 -8 -82 -13 -129 -15c25 -41 39 -95 39 -160c0 -159 -83 -253 -231 -253c-149 0 -230 93 -230 256s81 257 229 257c47 0 84 -2 120 -1c79 3 150 10 202 20 v-104'], + 0x1D783: [497,6,619,80,539,'539 393h-145v-214c0 -52 9 -80 85 -80v-105c-197 0 -211 67 -211 185v214h-22c-53 0 -58 -18 -68 -54l-98 23c14 84 60 135 219 135h240v-104'], + 0x1D784: [483,10,622,80,542,'542 216c0 -126 -94 -226 -219 -226c-109 0 -223 58 -223 212v79c0 52 -10 150 -20 202h126c10 -52 20 -133 20 -202v-79c0 -89 53 -107 97 -107c60 0 93 57 93 121c0 106 -4 165 -66 267h126c47 -74 66 -133 66 -267'], + 0x1D785: [493,212,760,80,680,'680 248c0 -141 -95 -213 -247 -231v-229h-126v229c-152 18 -227 90 -227 231c0 114 55 208 164 239l25 -92c-53 -17 -63 -77 -63 -147c0 -66 14 -112 101 -125v107c0 137 57 263 182 263c120 0 191 -115 191 -245zM554 248c0 69 -17 140 -65 140c-55 0 -56 -82 -56 -158 v-107c87 13 121 45 121 125'], + 0x1D786: [497,212,750,79,670,'670 -212c2 -1 -157 0 -157 0c-46 44 -65 88 -99 148c-16 29 -39 76 -39 76l-119 -224h-137l187 355l-109 206c-28 52 -77 120 -117 148c-2 1 157 0 157 0c46 -44 69 -90 99 -148l39 -76l118 224h137l-187 -354l110 -207c28 -52 77 -120 117 -148'], + 0x1D787: [661,212,720,80,640,'640 426c-10 -52 -14 -150 -14 -202c0 -142 -82 -208 -203 -219v-217h-126v218c-121 11 -203 77 -203 219c0 52 -4 150 -14 202h126c10 -52 14 -133 14 -202s19 -113 77 -116v552h126v-552c58 2 77 46 77 115s4 150 14 202h126'], + 0x1D788: [497,-4,762,80,682,'682 277c0 -138 -62 -273 -182 -273c-54 0 -94 26 -123 69c-26 -42 -64 -69 -115 -69c-120 0 -182 135 -182 273c0 82 37 159 92 220h110c-54 -60 -76 -140 -76 -220c0 -77 0 -168 56 -168c43 0 62 35 70 84c0 0 -16 26 -15 75c0 46 28 63 60 63s54 -17 54 -63 c1 -49 -16 -75 -16 -75c7 -49 54 -84 85 -84c56 0 56 91 56 168c0 80 -22 160 -76 220h110c55 -61 92 -138 92 -220'], + 0x1D789: [671,11,585,80,505,'379 224v95c-20 30 -36 44 -81 44c-71 0 -92 -55 -92 -129c0 -75 21 -140 92 -140c70 0 81 55 81 130zM505 224c-2 -137 -72 -235 -207 -235s-218 108 -218 245s83 234 218 234c43 0 51 -10 81 -30c-8 55 -42 135 -170 135c-25 0 -53 -8 -86 -13v98c46 9 88 13 125 13 c194 0 257 -148 257 -337v-110'], + 0x1D78A: [505,8,542,80,462,'462 49c-37 -37 -89 -56 -153 -57c-145 0 -229 89 -229 253c0 169 85 260 229 260c64 0 116 -20 153 -57l-88 -75c-15 20 -36 28 -65 28c-64 0 -91 -42 -100 -106h174v-94h-174c10 -69 46 -105 100 -105c29 0 50 8 65 28'], + 0x1D78B: [671,10,615,80,535,'535 343l-54 1v-160c0 -107 -76 -194 -201 -194c-109 0 -184 74 -184 173c0 72 -5 118 -16 152h126c12 -32 17 -88 17 -153c0 -38 23 -67 57 -67c60 0 73 27 75 89v163c-159 10 -255 25 -255 156c0 103 63 168 170 168c120 0 211 -65 211 -186v-47h54v-95zM355 441v44 c0 67 -25 101 -85 101c-54 0 -60 -30 -60 -83c0 -62 38 -54 145 -62'], + 0x1D78C: [507,10,676,80,596,'596 423c0 -49 -27 -98 -46 -123c0 -91 12 -277 36 -300h-126c-19 32 -35 135 -35 226c-30 -13 -67 -34 -90 -43c-67 -27 -104 -56 -108 -103c-5 -56 -30 -90 -72 -90c-54 0 -75 28 -75 84c0 49 27 98 46 123c0 91 -12 277 -36 300h126c19 -32 35 -135 35 -226 c30 13 67 34 90 43c67 24 104 56 108 103c5 56 30 90 72 90c54 0 75 -28 75 -84'], + 0x1D78D: [671,212,729,80,649,'649 248c0 -145 -103 -223 -222 -250v-210h-126v210c-118 27 -221 105 -221 250c0 146 103 224 221 251v172h126v-172c119 -27 222 -105 222 -251zM523 248c0 65 -46 112 -96 126v-252c50 15 96 62 96 126zM301 122v252c-49 -14 -95 -61 -95 -126c0 -64 46 -111 95 -126'], + 0x1D78E: [493,202,615,80,535,'535 248c0 -137 -83 -244 -218 -244c-43 0 -74 11 -111 30c4 -53 6 -75 68 -75c29 0 61 4 88 4c86 0 162 -32 162 -165h-113c0 57 -20 64 -93 64c-47 0 -89 -5 -129 13c-55 25 -109 32 -109 373c0 137 102 245 237 245s218 -108 218 -245zM389 248c0 75 -21 140 -92 140 c-70 0 -111 -65 -111 -140v-95c33 -29 66 -44 111 -44c71 0 92 65 92 139'], + 0x1D78F: [608,-4,764,80,684,'684 277c0 -138 -64 -273 -184 -273c-54 0 -94 26 -123 69c-26 -42 -64 -69 -115 -69c-120 0 -182 135 -182 273c0 63 23 115 35 140h107c-7 -28 -16 -85 -16 -140c0 -77 0 -168 56 -168c43 0 62 35 70 84c0 0 -16 26 -15 75c0 46 28 63 60 63s54 -17 54 -63 c1 -49 -16 -75 -16 -75c7 -49 54 -84 85 -84c56 0 56 91 58 168c0 163 -20 241 -225 241c-66 0 -130 -19 -202 -35v83c70 22 137 42 212 42c234 0 341 -117 341 -331'], + 0x1D790: [671,0,769,80,689,'689 0h-138l-15 135h-245l-73 -135h-138l376 671h149zM524 250l-30 262l-141 -262h171'], + 0x1D791: [671,0,776,80,696,'696 529c0 -11 -1 -23 -4 -35c-12 -57 -46 -96 -119 -138c52 -36 78 -78 78 -129c0 -11 -1 -22 -4 -34c-23 -110 -119 -193 -272 -193h-295l143 671h292c120 0 181 -63 181 -142zM559 479c10 50 -17 77 -79 77h-147l-32 -152h147c62 0 101 27 111 75zM522 225 c0 42 -29 64 -85 64h-161l-37 -174h161c66 0 107 30 119 86c2 9 3 17 3 24'], + 0x1D792: [671,0,764,80,684,'684 671l-25 -115h-326l-118 -556h-135l143 671h461'], + 0x1D793: [650,0,829,80,749,'749 0h-669l414 650h116zM583 129l-70 334l-213 -334h283'], + 0x1D794: [671,0,777,80,697,'697 671l-25 -115h-339l-32 -152h314l-25 -115h-314l-37 -174h355l-24 -115h-490l143 671h474'], + 0x1D795: [671,0,796,80,716,'716 671l-25 -115l-429 -441h335l-24 -115h-493l24 115l430 441h-336l25 115h493'], + 0x1D796: [671,0,833,80,753,'753 671l-143 -671h-135l65 305h-260l-65 -305h-135l143 671h135l-54 -251h260l54 251h135'], + 0x1D797: [682,11,809,80,729,'729 416c0 -27 -3 -55 -9 -85c-41 -196 -197 -342 -388 -342c-149 0 -252 107 -252 265c0 26 3 53 9 82c41 192 196 346 389 346c147 0 251 -108 251 -266zM594 405c0 98 -50 159 -140 159c-109 0 -201 -93 -230 -228c-6 -26 -8 -50 -8 -72c0 -98 52 -157 141 -157 c108 0 199 88 229 225c5 26 8 51 8 73zM536 400l-27 -129h-234l27 129h234'], + 0x1D798: [671,0,438,80,358,'358 671l-143 -671h-135l143 671h135'], + 0x1D799: [671,0,854,80,774,'774 671l-324 -289l209 -382h-161l-153 296l-82 -72l-48 -224h-135l143 671h135l-63 -295l319 295h160'], + 0x1D79A: [671,0,769,80,689,'689 0h-138l-57 512l-276 -512h-138l376 671h149'], + 0x1D79B: [671,0,942,80,862,'862 671l-143 -671h-135l111 523l-227 -523h-135l-7 523l-111 -523h-135l143 671h202l4 -534l230 534h203'], + 0x1D79C: [671,0,837,80,757,'757 671l-143 -671h-135l-165 464l-99 -464h-135l143 671h139l162 -457l98 457h135'], + 0x1D79D: [671,0,818,80,738,'738 671l-30 -138h-515l30 138h515zM544 393l-25 -115h-245l25 115h245zM624 138l-29 -138h-515l29 138h515'], + 0x1D79E: [682,11,809,80,729,'594 405c0 98 -50 159 -140 159c-109 0 -201 -93 -230 -228c-6 -26 -8 -50 -8 -72c0 -98 52 -157 141 -157c108 0 199 88 229 225c5 26 8 51 8 73zM729 416c0 -27 -3 -55 -9 -85c-41 -196 -197 -342 -388 -342c-149 0 -252 107 -252 265c0 26 3 53 9 82 c41 192 196 346 389 346c147 0 251 -108 251 -266'], + 0x1D79F: [671,0,833,80,753,'753 671l-143 -671h-135l118 556h-260l-118 -556h-135l143 671h530'], + 0x1D7A0: [671,0,766,80,686,'686 525c0 -19 -2 -39 -7 -62c-28 -136 -124 -224 -245 -224h-168l-51 -239h-135l143 671h290c114 0 173 -51 173 -146zM546 488c0 46 -28 68 -87 68h-126l-43 -202h126c72 0 112 32 126 100c3 12 4 24 4 34'], + 0x1D7A1: [682,11,809,80,729,'729 416c0 -27 -3 -55 -9 -85c-41 -196 -197 -342 -388 -342c-149 0 -252 107 -252 265c0 26 3 53 9 82c41 192 196 346 389 346c147 0 251 -108 251 -266zM594 405c0 98 -50 159 -140 159c-91 0 -170 -64 -211 -164h351v5zM568 272h-352v-8c0 -98 52 -157 141 -157 c91 0 170 63 211 165'], + 0x1D7A2: [671,0,791,80,711,'711 671l-25 -115h-338l168 -220l-262 -221h338l-24 -115h-488l26 124l251 212l-161 210l27 125h488'], + 0x1D7A3: [671,0,711,80,631,'631 671l-25 -115h-192l-118 -556h-135l118 556h-199l25 115h526'], + 0x1D7A4: [671,0,721,80,641,'641 671l-298 -423l-53 -248h-135l53 248l-128 423h150l70 -297l189 297h152'], + 0x1D7A5: [671,0,768,80,688,'688 381c0 -14 -1 -29 -5 -45c-29 -137 -152 -194 -277 -215l-26 -121h-135l26 121c-102 18 -191 65 -191 169c0 14 2 30 5 46c29 136 152 193 277 213l26 122h135l-26 -122c102 -18 191 -64 191 -168zM560 357c0 48 -42 70 -86 84l-45 -211c57 16 115 42 128 106 c2 8 3 15 3 21zM339 441c-58 -16 -114 -42 -128 -105c-1 -8 -2 -15 -2 -21c0 -49 40 -71 85 -85'], + 0x1D7A6: [671,0,863,80,783,'783 671l-273 -329l138 -342h-160l-76 233l-175 -233h-157l279 338l-129 333h160l69 -221l167 221h157'], + 0x1D7A7: [671,0,779,80,699,'699 671l-52 -244c-30 -140 -151 -234 -265 -243l-39 -184h-135l39 184c-94 8 -167 78 -167 186c0 18 2 37 6 57l52 244h126l-52 -244c-3 -15 -4 -29 -4 -42c0 -51 24 -84 64 -86l79 372h135l-79 -372c50 2 98 53 114 128l52 244h126'], + 0x1D7A8: [682,0,847,80,767,'767 447c0 -18 -2 -36 -6 -55c-18 -87 -97 -200 -196 -238l-9 -39h158l-24 -115h-253l48 227c65 26 126 92 141 165c3 15 5 30 5 45c0 72 -42 130 -125 130c-100 0 -177 -83 -197 -175c-2 -12 -4 -23 -4 -35c0 -58 32 -108 76 -130l-48 -227h-253l24 115h158l9 39 c-68 31 -102 113 -102 189c0 17 2 33 5 49c34 159 157 290 356 290c131 0 237 -102 237 -235'], + 0x1D7A9: [640,10,829,142,811,'811 640l-414 -650h-116l-139 650h669zM591 511h-283l70 -334'], + 0x1D7AA: [505,10,823,80,743,'743 497c-73 -44 -152 -142 -214 -268c-2 -23 -4 -45 -4 -64c0 -36 6 -61 25 -61c23 0 41 10 58 22l41 -78c-52 -41 -96 -59 -131 -58c-55 3 -82 34 -93 78c-42 -45 -87 -76 -160 -76c-122 0 -185 62 -185 173c0 25 3 53 10 83c34 163 135 257 283 257 c86 0 115 -36 135 -92c21 30 44 57 78 84h117h40zM423 318c0 53 -21 83 -71 83c-68 0 -116 -58 -136 -153c-5 -22 -7 -42 -7 -59c0 -59 25 -93 78 -93c68 0 108 58 128 151c5 27 8 50 8 71'], + 0x1D7AB: [671,202,751,80,671,'539 490c10 48 -16 77 -71 77c-49 0 -84 -27 -94 -73l-72 -337c15 -35 48 -55 89 -55c62 0 113 41 127 106c2 10 3 20 3 29c0 53 -37 84 -102 84h-12l19 87h8c54 1 95 33 105 82zM671 532c0 -9 -1 -19 -3 -29c-13 -61 -49 -105 -105 -125c30 -6 46 -16 63 -37 c18 -21 26 -44 26 -73c0 -15 -2 -32 -6 -51c-30 -140 -126 -225 -244 -225c-48 0 -91 13 -127 37l-6 -29c-15 -69 -42 -150 -63 -202h-126c21 52 52 150 63 202l101 477c15 71 41 116 87 148c41 28 105 46 167 46c93 0 173 -56 173 -139'], + 0x1D7AC: [497,230,718,80,638,'638 497l-298 -505s3 -22 3 -52c0 -21 -1 -47 -7 -72c-12 -58 -66 -98 -106 -98c-35 0 -66 30 -66 76c0 7 0 14 2 22c12 61 48 124 48 124l-59 357c-11 66 -44 114 -75 148h147c36 -44 51 -84 61 -148l28 -173l190 321h132'], + 0x1D7AD: [666,10,663,80,583,'583 587l-66 -75c-23 17 -85 58 -137 58c-36 0 -52 -12 -57 -33c-2 -7 -3 -14 -3 -20c0 -42 38 -49 87 -85c67 -50 101 -91 101 -165c0 -24 -4 -50 -10 -82c-27 -129 -140 -195 -249 -195c-95 -1 -169 54 -169 152c0 15 2 32 6 49c24 117 78 166 174 201 c-26 34 -49 56 -49 103c0 14 2 30 7 49c9 38 70 122 181 122c98 0 147 -49 184 -79zM377 231c0 38 -12 78 -59 78c-62 0 -90 -41 -106 -118c-3 -11 -4 -21 -4 -31c0 -53 35 -75 61 -75c53 0 93 51 104 102c2 12 4 28 4 44'], + 0x1D7AE: [505,9,612,80,532,'532 442l-50 -70c-41 25 -98 29 -153 28c-31 0 -64 -23 -71 -56c-11 -54 74 -44 143 -44l-18 -84h-40c-62 0 -122 -5 -133 -60c-9 -45 26 -60 71 -60c55 0 115 3 166 28l20 -70c-66 -41 -149 -63 -208 -63c-99 0 -179 45 -179 131c0 11 1 22 4 34c11 51 42 76 88 100 c-26 17 -43 34 -43 65c0 7 1 15 3 23c20 95 122 161 219 161c66 0 132 -22 181 -63'], + 0x1D7AF: [677,194,668,80,588,'588 657l-22 -104h-54c-134 -48 -272 -167 -301 -305c-2 -11 -3 -22 -3 -33c0 -55 32 -98 86 -98h35c80 0 140 -53 140 -127c0 -10 -1 -20 -4 -31c-19 -89 -112 -153 -202 -153l20 94c27 0 65 28 71 59c6 28 -21 53 -47 53h-35c-113 0 -192 80 -192 187c0 16 2 32 5 49 c27 127 154 244 267 305c-68 3 -156 11 -199 20l22 104c50 -10 146 -20 198 -20h215'], + 0x1D7B0: [505,202,672,80,592,'592 384c0 -16 -2 -33 -6 -51l-71 -333c-11 -52 -22 -150 -23 -202h-126c1 52 8 133 23 202l65 306c2 11 4 22 4 31c0 39 -22 59 -66 59c-62 0 -110 -39 -123 -98l-63 -298h-126l106 497h126l-16 -72c48 55 97 80 163 80c86 0 133 -43 133 -121'], + 0x1D7B1: [664,10,620,80,540,'540 495c0 -50 -9 -108 -22 -170c-55 -258 -151 -335 -280 -335c-98 0 -158 43 -158 175c0 43 6 95 20 158c39 185 94 341 281 341c122 0 159 -68 159 -169zM384 286h-168c-10 -53 -16 -92 -16 -120c0 -52 19 -68 59 -68c59 0 89 39 125 188zM417 494c0 56 -20 68 -58 68 c-56 -2 -84 -27 -120 -171h166c8 45 12 79 12 103'], + 0x1D7B2: [497,6,365,80,285,'285 99l-22 -105c-145 0 -183 36 -183 103c0 24 5 51 11 82l68 318h126l-68 -318c-2 -13 -4 -25 -4 -35c0 -29 16 -45 72 -45'], + 0x1D7B3: [497,0,694,80,614,'614 497l-205 -188l56 -158c23 -64 54 -117 86 -151c2 -1 -154 0 -154 0c-37 44 -52 86 -72 148l-22 71l-62 -56l-35 -163h-126l106 497h126l-41 -193l200 193h143'], + 0x1D7B4: [673,0,731,80,651,'651 0h-147c-37 44 -49 84 -62 148l-21 108l-201 -256h-140l314 399l-15 81c-8 48 -45 86 -96 86l23 107c100 0 183 -67 200 -160l69 -365c12 -59 44 -114 76 -148'], + 0x1D7B5: [497,202,767,80,687,'687 497l-77 -359c-3 -16 -5 -28 -5 -37c0 -23 8 -30 15 -30c6 0 12 1 22 4l-17 -81c-23 -11 -40 -15 -66 -15c-42 0 -66 13 -80 50c-43 -37 -78 -50 -119 -50c-37 0 -68 10 -88 35l-3 -14c-15 -69 -42 -150 -63 -202h-126c21 52 52 150 63 202l106 497h131l-66 -307 c-3 -13 -4 -24 -4 -34c0 -46 25 -68 64 -68c53 0 103 41 116 98l66 311h131'], + 0x1D7B6: [497,0,637,80,557,'557 477c0 -53 -9 -99 -20 -146c-33 -158 -157 -299 -306 -331h-79l-72 497h135l54 -373c75 49 127 117 146 207c14 64 18 95 20 166h122v-20'], + 0x1D7B7: [677,194,653,80,573,'573 657l-22 -104l-151 1c-65 -10 -109 -38 -117 -74c-9 -42 48 -60 115 -60l-20 -94c-74 0 -154 -39 -168 -107c-1 -7 -2 -14 -2 -21c0 -48 39 -81 91 -81h35c80 0 140 -53 140 -127c0 -10 -1 -20 -4 -31c-19 -89 -112 -153 -202 -153l20 94c27 0 65 28 71 59 c6 28 -21 53 -47 53h-35c-111 0 -197 68 -197 167c0 13 1 26 4 40c13 64 58 116 117 150c-26 23 -38 42 -38 73c0 11 1 23 4 38c5 23 25 61 71 82c-30 3 -57 7 -80 11l22 104c50 -10 146 -20 198 -20h195'], + 0x1D7B8: [505,8,658,80,578,'578 325c0 -25 -3 -51 -9 -80c-34 -159 -147 -253 -295 -253c-124 0 -194 64 -194 180c0 23 3 48 9 76c34 163 145 257 293 257c126 0 196 -63 196 -180zM450 299c0 65 -33 102 -89 102c-68 0 -126 -58 -146 -153c-4 -18 -6 -35 -6 -51c0 -63 32 -101 87 -101 c68 0 128 58 148 151c4 19 6 36 6 52'], + 0x1D7B9: [497,6,788,80,708,'708 497l-22 -104h-75l-46 -214c-3 -16 -6 -30 -6 -42c0 -25 12 -38 54 -38l-22 -105c-127 0 -164 30 -164 97c0 24 5 53 12 88l46 214h-106l-41 -191c-15 -69 -42 -150 -63 -202h-126c21 52 52 150 63 202l41 191c-53 0 -62 -18 -80 -54l-93 23c32 84 89 135 248 135 h380'], + 0x1D7BA: [493,202,738,80,658,'532 306c0 48 -18 82 -70 82c-70 0 -124 -65 -140 -140l-20 -95c26 -29 56 -44 101 -44c71 0 106 65 122 139c4 20 7 40 7 58zM658 313c0 -21 -2 -42 -7 -65c-29 -137 -135 -244 -270 -244c-43 0 -72 11 -105 30l-7 -34c-15 -69 -42 -150 -63 -202h-126 c21 52 52 150 63 202l53 248c29 137 154 245 289 245c113 0 173 -75 173 -180'], + 0x1D7BB: [503,194,607,80,527,'527 453l-64 -87c-28 20 -77 32 -119 32c-70 0 -117 -74 -132 -145c-3 -15 -5 -29 -5 -43c0 -53 25 -93 77 -93h35c80 0 139 -53 139 -127c0 -10 -1 -20 -3 -31c-19 -89 -112 -153 -202 -153l20 94c27 0 65 28 71 59c6 28 -21 53 -47 53h-35c-112 0 -182 79 -182 186 c0 17 2 36 6 55c28 132 139 250 280 250c91 0 126 -22 161 -50'], + 0x1D7BC: [524,8,779,80,699,'432 307c0 60 -26 94 -80 94c-68 0 -116 -58 -136 -153c-5 -22 -7 -42 -7 -59c0 -59 25 -93 78 -93c68 0 118 58 138 151c4 22 7 43 7 60zM699 524l-22 -104c-37 -8 -84 -13 -132 -15c9 -23 14 -51 14 -82c0 -24 -3 -50 -9 -78c-34 -159 -137 -253 -285 -253 c-122 0 -185 62 -185 173c0 25 3 53 10 83c34 163 135 257 283 257l98 -1h22c80 3 152 10 206 20'], + 0x1D7BD: [497,6,648,80,568,'568 497l-22 -104h-145l-46 -214c-3 -13 -5 -25 -5 -35c0 -29 16 -45 73 -45l-22 -105c-145 0 -183 36 -183 103c0 24 4 51 11 82l46 214h-22c-53 0 -62 -18 -80 -54l-93 23c32 84 89 135 248 135h240'], + 0x1D7BE: [483,10,629,80,549,'549 356c0 -37 -5 -81 -18 -140c-27 -126 -142 -226 -267 -226c-94 0 -184 44 -184 157c0 17 2 35 6 55l17 79c11 52 22 150 23 202h126c-1 -52 -9 -133 -23 -202l-17 -79c-3 -14 -4 -25 -4 -36c0 -58 41 -71 78 -71c60 0 105 57 119 121c11 53 19 94 19 135 s-8 81 -28 132h126c18 -42 27 -79 27 -127'], + 0x1D7BF: [493,212,775,80,695,'695 318c0 -22 -2 -46 -7 -70c-30 -141 -141 -213 -296 -231l-49 -229h-126l49 229c-124 15 -186 67 -186 166c0 19 3 41 8 65c24 114 99 208 215 239l5 -92c-57 -17 -79 -77 -94 -147c-4 -18 -7 -34 -7 -48c0 -40 19 -67 81 -77l23 107c29 137 113 263 238 263 c97 0 146 -76 146 -175zM569 315c0 41 -11 73 -43 73c-55 0 -73 -82 -89 -158l-23 -107c90 13 131 45 148 125c4 23 7 46 7 67'], + 0x1D7C0: [497,212,822,80,742,'742 497l-263 -354l66 -207c17 -52 52 -120 86 -148c2 -1 -157 0 -157 0c-37 44 -46 88 -68 148l-22 76l-167 -224h-137l262 355l-65 206c-17 52 -51 120 -85 148c-2 1 157 0 157 0c36 -44 50 -90 67 -148l23 -76l166 224h137'], + 0x1D7C1: [661,212,756,80,676,'676 426c-22 -52 -46 -150 -57 -202c-31 -142 -127 -208 -250 -219l-46 -217h-126l46 218c-99 9 -163 57 -163 157c0 19 2 39 7 62c11 52 28 150 29 202h126c-1 -52 -15 -133 -29 -202c-4 -19 -6 -35 -6 -50c0 -40 16 -64 58 -66l117 552h126l-117 -552 c59 2 87 46 102 115c14 69 35 150 57 202h126'], + 0x1D7C2: [497,-4,778,80,698,'698 335c0 -19 -2 -38 -6 -58c-29 -138 -120 -273 -240 -273c-54 0 -89 26 -108 69c-35 -42 -79 -69 -130 -69c-93 0 -134 81 -134 182c0 29 3 60 10 91c17 82 71 159 139 220h110c-67 -60 -106 -140 -123 -220c-8 -38 -17 -80 -17 -113c0 -32 9 -55 37 -55 c43 0 70 35 88 84c0 0 -4 11 -4 32c0 11 1 26 5 43c10 46 41 63 73 63c26 0 44 -11 44 -41c0 -6 -1 -14 -3 -22c-9 -49 -32 -75 -32 -75c-3 -49 36 -84 67 -84c56 0 76 91 92 168c6 28 9 56 9 83c0 50 -11 98 -38 137h110c32 -46 51 -102 51 -162'], + 0x1D7C3: [671,11,624,80,544,'404 319c-14 30 -27 44 -72 44c-71 0 -104 -55 -119 -129c-4 -21 -7 -41 -7 -59c0 -47 18 -81 69 -81c70 0 93 55 109 130zM544 432c0 -31 -4 -64 -11 -98l-23 -110c-32 -137 -122 -235 -257 -235c-113 0 -173 75 -173 180c0 21 2 42 7 65c29 137 132 234 267 234 c43 0 49 -10 75 -30c4 55 -13 135 -141 135c-25 0 -55 -8 -89 -13l21 98c48 9 91 13 128 13c124 0 196 -99 196 -239'], + 0x1D7C4: [505,8,594,80,514,'514 448l-104 -75c-10 20 -30 28 -59 28c-64 0 -100 -42 -122 -106h174l-20 -94h-174c-5 -69 23 -105 77 -105c29 0 52 8 71 28l72 -75c-44 -37 -100 -56 -165 -57c-119 0 -184 60 -184 173c0 24 3 51 9 80c36 169 140 260 284 260c64 0 112 -20 141 -57'], + 0x1D7C5: [671,10,661,80,581,'581 438l-20 -95l-54 1l-34 -160c-23 -107 -117 -194 -242 -194c-94 0 -151 55 -151 134c0 13 1 26 4 39c12 56 18 97 18 128c0 8 -1 17 -2 24h126c1 -7 2 -15 2 -24c0 -33 -7 -78 -18 -129c-8 -38 9 -67 43 -67c60 0 79 27 94 89l35 163c-138 9 -227 21 -227 114 c0 12 2 26 5 42c22 103 99 168 206 168c104 0 176 -49 176 -141c0 -14 -1 -29 -5 -45l-10 -47h54zM416 524c0 41 -21 62 -68 62c-54 0 -67 -30 -78 -83c-1 -8 -2 -14 -2 -20c0 -40 41 -35 134 -42l9 44c3 15 5 27 5 39'], + 0x1D7C6: [507,10,758,80,678,'678 455c0 -9 -2 -20 -4 -32c-11 -49 -48 -98 -72 -123c-15 -69 -35 -193 -35 -259c0 -21 2 -35 7 -41h-126c-4 11 -6 31 -6 56c0 47 7 111 19 170c-33 -13 -74 -34 -99 -43c-73 -27 -116 -56 -130 -103c-17 -56 -49 -90 -91 -90c-43 0 -61 17 -61 52c0 9 1 20 4 32 c10 49 48 98 72 123c14 70 34 195 34 260c0 20 -2 35 -6 40h126c4 -11 6 -31 6 -56c0 -47 -7 -111 -19 -170c32 13 74 34 99 43c72 24 116 56 130 103c17 56 49 90 91 90s61 -17 61 -52'], + 0x1D7C7: [671,212,742,80,662,'662 305c0 -18 -2 -37 -7 -57c-31 -145 -151 -223 -275 -250l-45 -210h-126l45 210c-97 23 -174 84 -174 193c0 18 2 37 6 57c31 146 150 224 274 251l37 172h126l-37 -172c98 -23 176 -84 176 -194zM532 276c0 50 -32 86 -73 98l-53 -252c53 15 109 62 123 126 c2 10 3 19 3 28zM333 374c-51 -14 -107 -61 -121 -126c-2 -10 -3 -19 -3 -27c0 -50 32 -86 71 -99'], + 0x1D7C8: [493,202,658,80,578,'578 313c0 -21 -2 -42 -7 -65c-29 -137 -135 -244 -270 -244c-43 0 -72 11 -105 30c-2 -15 -4 -27 -4 -37c0 -27 11 -38 56 -38c29 0 62 4 89 4c73 0 133 -23 133 -110c0 -16 -2 -35 -6 -55h-113c2 11 3 19 3 27c0 32 -23 37 -82 37l-49 -1c-28 0 -54 2 -78 14 c-32 16 -65 25 -65 121c0 52 10 131 36 252c29 137 154 245 289 245c113 0 173 -75 173 -180zM452 306c0 48 -18 82 -70 82c-70 0 -124 -65 -140 -140l-20 -95c26 -29 56 -44 101 -44c71 0 106 65 122 139c4 20 7 40 7 58'], + 0x1D7C9: [603,-4,786,80,706,'706 379c0 -31 -4 -65 -12 -102c-29 -138 -122 -273 -242 -273c-54 0 -89 26 -108 69c-35 -42 -79 -69 -130 -69c-93 0 -134 81 -134 182c0 29 3 60 10 91c13 63 47 115 65 140h107c-13 -28 -34 -85 -46 -140c-8 -38 -17 -80 -17 -113c0 -32 9 -55 37 -55 c43 0 70 35 88 84c0 0 -4 11 -4 32c0 11 1 26 5 43c10 46 41 63 73 63c26 0 44 -11 44 -41c0 -6 -1 -14 -3 -22c-9 -49 -32 -75 -32 -75c-3 -49 36 -84 67 -84c56 0 76 91 94 168c10 46 17 85 17 118c0 83 -44 123 -191 123c-66 0 -134 -19 -209 -35l16 78 c75 26 146 42 221 42c193 0 284 -77 284 -224'], + 0x1D7E2: [652,14,519,43,470,'470 314c0 -215 -76 -328 -214 -328c-139 0 -213 113 -213 333c0 219 73 333 213 333c142 0 214 -112 214 -338zM387 321c0 175 -43 260 -131 260c-87 0 -130 -84 -130 -263c0 -178 43 -265 129 -265c90 0 132 83 132 268'], + 0x1D7E3: [652,0,536,102,327,'327 0h-81v465h-144v58c125 15 144 29 172 129h53v-652'], + 0x1D7E4: [652,0,518,34,473,'473 461c0 -80 -47 -148 -138 -197l-92 -50c-80 -47 -110 -81 -118 -134h343v-80h-434c7 144 47 205 183 282l85 48c58 33 88 78 88 129c0 70 -55 122 -129 122c-80 0 -125 -46 -131 -155h-81c4 158 82 226 215 226c123 0 209 -81 209 -191'], + 0x1D7E5: [652,14,518,32,468,'468 190c0 -124 -86 -204 -221 -204c-133 0 -205 66 -215 211h81c5 -95 49 -139 137 -139c85 0 135 49 135 131c0 72 -46 115 -135 115h-44v68c130 0 160 28 160 98c0 69 -43 111 -115 111c-83 0 -122 -43 -124 -139h-81c3 139 72 210 204 210c124 0 199 -67 199 -179 c0 -65 -31 -108 -91 -132c78 -26 110 -72 110 -151'], + 0x1D7E6: [652,0,517,28,481,'481 156h-97v-156h-81v156h-275v86l296 410h60v-423h97v-73zM303 229v285l-204 -285h204'], + 0x1D7E7: [638,14,518,35,475,'475 216c0 -138 -92 -230 -224 -230c-116 0 -189 52 -216 181h81c19 -73 63 -109 133 -109c89 0 143 53 143 147c0 97 -55 153 -143 153c-50 0 -82 -16 -119 -61h-75l49 341h337v-80h-272l-25 -168c37 28 74 40 120 40c125 0 211 -85 211 -214'], + 0x1D7E8: [652,14,518,43,475,'475 202c0 -127 -89 -216 -213 -216c-149 0 -219 108 -219 311c0 227 82 355 234 355c99 0 169 -63 185 -170h-81c-13 63 -53 99 -110 99c-93 0 -144 -89 -145 -248c35 48 85 73 150 73c117 0 199 -82 199 -204zM393 196c0 87 -49 138 -127 138c-80 0 -136 -52 -136 -133 c0 -84 57 -143 133 -143c74 0 130 56 130 138'], + 0x1D7E9: [638,0,518,46,482,'482 570c-137 -162 -229 -359 -265 -570h-86c46 204 138 395 267 558h-352v80h436v-68'], + 0x1D7EA: [652,14,518,37,475,'475 184c0 -119 -90 -198 -219 -198s-219 79 -219 199c0 72 37 122 111 158c-66 42 -88 75 -88 135c0 103 81 174 196 174c116 0 196 -71 196 -174c0 -61 -22 -94 -89 -135c75 -36 112 -86 112 -159zM369 477c0 63 -44 104 -113 104c-68 0 -113 -41 -113 -104 c0 -61 45 -102 113 -102s113 41 113 102zM392 183c0 76 -55 124 -136 124s-136 -48 -136 -124s55 -125 134 -125c83 0 138 48 138 125'], + 0x1D7EB: [652,14,518,38,471,'471 341c0 -225 -82 -355 -234 -355c-100 0 -170 64 -185 170h81c13 -62 52 -98 109 -98c93 0 145 88 146 247c-43 -50 -88 -72 -149 -72c-118 0 -201 82 -201 203c0 128 89 216 213 216c149 0 220 -106 220 -311zM383 438c0 85 -57 143 -132 143s-130 -56 -130 -138 c0 -88 49 -138 127 -138c79 0 135 53 135 133'], + 0x1D7EC: [666,8,507,29,468,'468 325c0 -258 -90 -333 -219 -333c-185 0 -220 154 -220 336c0 188 37 338 220 338c187 0 219 -156 219 -341zM342 328c0 202 -31 234 -93 234c-68 0 -94 -43 -94 -233c0 -194 30 -227 94 -227c67 0 93 42 93 226'], + 0x1D7ED: [652,0,525,68,347,'347 0h-126v450h-153v85c110 0 175 40 195 117h84v-652'], + 0x1D7EE: [666,0,507,30,466,'466 459c0 -88 -32 -138 -143 -221c-93 -70 -113 -88 -129 -123h270v-115h-434c6 121 40 178 148 254c140 102 162 131 162 202c0 66 -34 105 -90 105c-57 0 -90 -42 -90 -115v-21h-121c-1 10 -1 18 -1 23c0 138 77 218 210 218c134 0 218 -81 218 -207'], + 0x1D7EF: [666,8,507,29,467,'467 201c0 -127 -87 -209 -223 -209c-130 0 -215 82 -215 212h122c0 -67 36 -102 96 -102c55 0 94 42 94 99c0 69 -48 97 -143 97v87h11c75 0 112 26 112 92c0 54 -29 85 -80 85c-62 0 -87 -34 -87 -115h-117v11c0 142 84 208 207 208s203 -69 203 -177 c0 -60 -25 -95 -84 -133c72 -36 104 -79 104 -155'], + 0x1D7F0: [652,0,506,24,472,'472 144h-66v-144h-126v144h-256v109l233 399h149v-401h66v-107zM280 251v279l-167 -279h167'], + 0x1D7F1: [652,8,507,27,468,'468 222c0 -141 -94 -230 -230 -230c-125 0 -211 77 -211 191h124c0 -52 33 -81 88 -81c63 0 103 41 103 117c0 79 -39 120 -103 120c-38 0 -67 -18 -81 -50h-113l57 363h341v-115h-264l-21 -136c37 29 69 40 111 40c118 0 199 -86 199 -219'], + 0x1D7F2: [666,8,507,32,470,'470 224c0 -141 -86 -232 -213 -232c-76 0 -142 29 -179 90c-33 52 -46 116 -46 228c0 235 82 356 236 356c104 0 175 -54 191 -162h-117c-16 42 -37 58 -78 58c-78 0 -101 -59 -106 -190c40 42 75 58 127 58c110 0 185 -80 185 -206zM351 216c0 72 -38 112 -97 112 c-58 0 -98 -43 -98 -115c0 -69 40 -111 97 -111c56 0 98 44 98 114'], + 0x1D7F3: [652,0,506,29,478,'478 551c-151 -187 -217 -345 -229 -551h-126c16 139 40 224 83 319c26 57 102 176 141 218h-318v115h449v-101'], + 0x1D7F4: [666,8,506,22,475,'475 194c0 -123 -93 -202 -226 -202c-134 0 -227 79 -227 202c0 77 31 121 104 161c-57 31 -82 71 -82 134c0 103 86 177 205 177c118 0 204 -74 204 -177c0 -64 -26 -103 -83 -134c74 -40 105 -84 105 -161zM344 477c-1 50 -38 85 -94 85c-57 0 -96 -35 -96 -85 s40 -86 96 -86c55 0 94 36 94 86zM349 200c0 68 -39 104 -101 104c-60 0 -100 -36 -100 -103c0 -64 39 -99 100 -99s101 35 101 98'], + 0x1D7F5: [666,8,507,28,467,'467 354c0 -231 -75 -362 -235 -362c-110 0 -192 73 -195 174h121c3 -39 34 -64 78 -64c71 0 105 62 105 186c-44 -51 -66 -64 -122 -64c-114 0 -191 85 -191 219c0 137 87 223 215 223c131 0 224 -84 224 -312zM338 443c0 77 -37 118 -99 118c-55 0 -91 -40 -91 -116 c0 -74 36 -115 93 -115c58 0 97 42 97 113'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Script/Regular/Main.js new file mode 100644 index 0000000..cdf838a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Script/Regular/Main.js @@ -0,0 +1,132 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Script'] = { + directory: 'Script/Regular', + family: 'GyreTermesMathJax_Script', + id: 'GYRETERMESSCRIPT', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210A: [426,308,729,80,649,'649 217c-56 -100 -149 -181 -250 -222c-58 -123 -136 -303 -242 -303c-42 0 -77 19 -77 76c0 75 102 154 232 227l20 44c-26 -26 -62 -49 -102 -46c0 0 -73 6 -95 91c-6 20 -8 39 -8 56c0 41 12 73 19 86c34 99 119 200 234 200c48 0 78 -23 91 -74l20 54h88l-158 -369 c82 46 152 108 205 197zM450 336c0 8 -1 15 -3 23c-7 20 -29 38 -48 38c-40 0 -94 -49 -146 -144c-15 -24 -71 -146 -67 -193c1 -18 18 -38 45 -38c33 0 75 24 118 82c12 17 56 82 87 170c4 13 14 37 14 62zM300 -41c-102 -57 -190 -138 -190 -186c0 -46 28 -51 46 -51 c24 0 35 12 47 32c32 53 63 135 97 205'], + 0x210B: [687,17,1070,80,990,'990 592c0 -95 -141 -260 -247 -283c-15 -41 -63 -138 -63 -210c0 -24 5 -45 18 -60c18 -20 43 -26 64 -26c20 0 35 6 40 6c75 16 150 113 150 188c0 16 -4 32 -12 45c-11 20 -27 29 -45 29c-49 0 -101 -64 -114 -115h-35c27 68 68 145 140 145c56 0 83 -51 89 -68 s9 -34 9 -52c0 -20 -4 -42 -13 -64c-27 -69 -97 -144 -189 -144c-51 0 -118 16 -147 101c-8 24 -11 48 -11 70c0 52 17 100 30 142l-113 -17c-49 -145 -127 -296 -323 -296c-82 0 -138 30 -138 86c0 28 19 53 49 53c27 0 45 -17 46 -47c0 -23 -11 -44 -35 -50 c21 -10 57 -12 78 -12c147 2 196 139 234 252c-29 -7 -61 -18 -88 -36l-17 26c37 24 81 40 114 46c42 90 65 173 65 236c0 75 -31 122 -99 122c-14 0 -26 -2 -39 -6c-82 -24 -167 -110 -167 -197c0 -17 3 -34 10 -50c15 -37 43 -61 84 -62c46 -1 73 29 92 77 c12 27 16 51 16 71c0 43 -19 71 -27 90l23 7c26 -45 41 -76 41 -126c0 -80 -49 -149 -139 -149c-53 0 -104 42 -119 94c-6 19 -9 37 -9 55c0 83 64 149 119 187c33 24 76 37 118 37c98 0 161 -86 161 -203c0 -54 -13 -114 -41 -175l110 19c36 78 76 152 123 221 c32 44 80 129 152 129c41 0 55 -36 55 -86zM960 607c0 22 -4 39 -19 39c-11 0 -25 -9 -45 -36c-62 -77 -103 -172 -141 -264c60 23 205 147 205 261'], + 0x2110: [689,15,806,80,726,'726 668c-123 -138 -154 -321 -225 -481c-49 -120 -129 -202 -273 -202h-10c-82 0 -138 30 -138 86c0 28 19 53 49 53c27 0 45 -17 46 -47c0 -23 -11 -44 -35 -50c22 -10 61 -12 79 -12c157 0 194 160 234 273c49 126 88 219 167 308c-36 -17 -91 -37 -136 -37 c-78 0 -147 77 -224 77c-67 0 -127 -62 -127 -137c0 -78 44 -123 106 -123c103 0 143 112 140 161l27 -5c1 -8 1 -17 1 -25c0 -99 -72 -162 -151 -162c-120 0 -154 78 -154 160c0 100 71 184 184 184c71 0 144 -71 222 -82c52 0 154 44 198 81'], + 0x2112: [687,17,948,80,868,'868 574c0 -67 -61 -113 -114 -151c-40 -31 -129 -84 -205 -99c-34 -100 -83 -204 -151 -281c58 -15 114 -30 169 -30c95 0 237 88 237 165c0 5 -1 9 -2 14c-10 42 -42 76 -83 76c-48 0 -94 -44 -127 -99l-25 23c28 53 71 104 140 104c51 0 103 -39 121 -88 c7 -18 10 -35 10 -52c0 -52 -31 -92 -72 -118c-49 -34 -118 -55 -197 -55c-60 -2 -137 21 -198 38c-36 -23 -107 -38 -168 -38c-41 0 -97 10 -122 56c-1 5 -1 9 -1 14c0 36 30 50 69 50c67 2 138 -24 207 -46c52 73 80 168 104 261c-6 -1 -12 -2 -17 -2 c-146 0 -224 76 -224 153c0 87 81 178 257 178c17 0 35 -1 53 -3v-25c-13 1 -26 2 -38 2c-146 0 -214 -80 -214 -155c0 -66 57 -120 159 -120c15 2 26 2 34 2c33 109 111 236 178 295c28 21 71 44 114 44s82 -27 98 -70c6 -15 8 -30 8 -43zM836 591c0 10 -2 21 -7 31 c-9 18 -29 37 -62 37c-86 -2 -137 -129 -158 -178c-17 -40 -32 -78 -47 -121c65 21 122 54 170 90c36 26 104 82 104 141zM327 36c-45 14 -108 35 -162 35c-25 0 -61 2 -54 -26c4 -8 8 -15 8 -15c25 -13 56 -17 79 -17c41 0 93 9 129 23'], + 0x211B: [690,17,1027,80,947,'947 170c0 -33 -10 -63 -24 -89c-6 -13 -51 -96 -145 -98c-69 0 -133 58 -161 135c-30 84 71 160 61 222c-14 -3 -27 -4 -40 -6c-43 2 -68 21 -81 38c-56 -164 -113 -385 -339 -389c-82 0 -138 30 -138 86c0 28 18 53 48 53c27 0 46 -17 47 -47c0 -23 -11 -44 -36 -50 c22 -10 59 -12 79 -12c27 0 93 25 140 94c113 166 113 423 295 537c-42 8 -133 18 -176 18c-59 0 -154 -28 -201 -78c-35 -36 -62 -90 -62 -140c0 -16 3 -33 10 -48c15 -36 43 -60 84 -61c46 -1 73 29 92 77c12 27 16 51 16 71c0 42 -19 71 -27 90l23 6 c26 -44 41 -75 41 -126c0 -79 -49 -148 -139 -148c-53 0 -104 42 -119 94c-6 19 -9 38 -9 56c0 83 60 150 119 186c44 27 133 49 175 49c71 0 160 -11 209 -26c17 8 37 15 59 21l19 -23c-17 -8 -27 -12 -36 -16c38 -22 92 -62 114 -120c6 -16 9 -31 9 -45 c0 -72 -70 -119 -137 -133c7 -11 14 -22 18 -34c3 -9 4 -17 4 -25c0 -14 -3 -28 -7 -42c-16 -47 -51 -91 -51 -146c0 -12 1 -24 5 -37c15 -33 45 -51 77 -51c80 0 136 105 146 149c1 9 2 22 2 34c0 10 -1 20 -4 28c-9 22 -31 35 -51 35c-21 0 -46 -16 -75 -71l-29 10 c28 63 61 91 96 93c50 0 77 -36 90 -68c6 -18 9 -36 9 -53zM784 494c0 15 -2 30 -8 46c-13 36 -38 66 -79 88c-63 -54 -98 -127 -126 -207c6 0 11 1 18 1c35 0 79 -16 107 -47c50 16 88 62 88 119zM663 368c-17 21 -49 29 -68 29c-10 0 -17 -2 -17 -6c0 -9 31 -30 60 -30 c9 0 18 2 25 7'], + 0x212C: [690,19,950,80,870,'870 472c0 -65 -45 -112 -106 -129c31 -24 50 -54 63 -85c8 -23 11 -47 11 -69c0 -37 -9 -71 -20 -95c-25 -51 -98 -111 -177 -111c-53 0 -98 24 -123 81c-5 18 -8 35 -8 51c0 69 44 126 113 153l10 -32c-46 -13 -93 -70 -93 -131c0 -11 1 -23 5 -34 c18 -34 35 -58 74 -58c27 0 52 12 69 29c39 37 74 113 74 184c0 22 -3 43 -11 63c-6 17 -15 32 -26 43c-7 -1 -19 -2 -32 -2c-34 0 -80 6 -90 29c-8 19 8 37 39 37c32 0 58 -8 91 -31c60 21 72 75 72 113c0 20 -3 35 -5 42c-10 27 -32 69 -88 102 c-69 -47 -104 -134 -140 -225c-65 -168 -115 -416 -356 -416c-85 0 -136 30 -136 86c0 28 19 54 49 54c27 0 45 -18 46 -48c0 -23 -11 -44 -35 -50c21 -10 58 -12 78 -12c134 4 188 156 229 271c24 68 56 159 79 203c34 65 72 123 142 156c-43 11 -122 21 -163 21 c-76 0 -182 -19 -229 -69c-34 -36 -61 -89 -61 -139c0 -16 3 -33 10 -48c15 -37 43 -61 83 -62c47 -1 73 29 92 77c12 27 16 51 16 71c0 43 -19 71 -27 90l24 7c26 -45 41 -76 41 -126c0 -80 -50 -149 -140 -149c-53 0 -103 42 -119 94c-6 20 -9 39 -9 57 c0 83 60 150 119 185c44 28 161 40 203 40c72 0 180 -17 206 -26c31 14 49 15 83 18l11 -30l-49 -9c50 -28 84 -71 101 -117c7 -19 10 -37 10 -54zM694 358c-10 6 -24 13 -39 13c-10 0 -23 1 -23 -6s15 -9 32 -9c10 0 21 0 30 2'], + 0x212F: [418,14,519,80,439,'439 179c-51 -74 -131 -193 -248 -193c-47 0 -79 18 -105 70c-4 21 -6 42 -6 61c0 96 46 172 101 232c24 28 80 69 130 69c36 0 67 -28 79 -67c4 -10 7 -21 7 -34c0 -11 -2 -24 -7 -36c-31 -75 -154 -117 -220 -121c-21 -39 -36 -75 -34 -124c11 -19 30 -21 46 -21 c115 0 199 124 248 195zM348 351c0 7 -1 13 -3 19c-3 12 -12 20 -25 20c-12 0 -26 -8 -42 -25c-41 -50 -69 -118 -96 -173c78 3 150 65 164 134c1 10 2 18 2 25'], + 0x2130: [694,17,755,79,675,'675 605c0 -26 -14 -56 -48 -83c-60 -50 -186 -101 -283 -103c0 0 1 -9 2 -11c14 4 29 5 38 5c29 0 73 -10 87 -48c1 -4 2 -7 2 -10c0 -14 -11 -26 -27 -26c-44 0 -78 13 -108 43c-28 -21 -68 -61 -95 -110c-23 -45 -45 -87 -45 -129c0 -13 2 -26 7 -40 c26 -66 92 -78 143 -78c67 0 111 25 118 27c52 23 123 85 123 143c0 9 -2 17 -5 25c-14 40 -59 53 -90 53c-69 0 -113 -62 -136 -121l-33 10c25 75 82 137 148 141h12c89 0 119 -52 130 -81c6 -17 9 -34 9 -49c0 -51 -29 -92 -67 -119c-55 -42 -116 -61 -205 -61h-13 c-99 2 -165 67 -193 138c-7 24 -10 47 -10 69c0 107 75 188 175 214c-2 4 -5 13 -6 17c-147 1 -225 70 -225 150c-1 66 55 123 157 123c45 0 77 -20 91 -28l-12 -27c-9 6 -34 25 -74 25c-74 0 -112 -36 -114 -79c-7 -98 105 -134 169 -135c-1 9 -2 18 -2 26 c0 77 56 124 73 138c66 58 146 73 201 75c49 0 88 -24 102 -61c3 -7 4 -15 4 -23zM645 606c0 6 -1 12 -3 18c-7 20 -26 31 -44 33c-5 1 -10 1 -15 1c-47 0 -90 -29 -125 -63c-44 -39 -86 -88 -110 -145c83 4 206 58 246 87c20 16 51 38 51 69zM441 360c0 4 -13 20 -42 23 c-7 0 -14 1 -22 1c-4 0 -8 0 -12 -1c9 -5 17 -11 32 -19c13 -5 26 -9 35 -9c5 0 9 2 9 5'], + 0x2131: [689,17,986,80,906,'906 677c-29 -79 -72 -102 -140 -102c-92 -2 -208 42 -330 49c-6 0 -11 1 -17 1c-122 0 -232 -90 -232 -190c0 -15 3 -30 8 -45c14 -43 50 -71 92 -75c66 3 112 70 112 137c0 16 -2 32 -8 47c-5 16 -17 36 -37 71h27c20 -24 34 -49 43 -77c8 -22 12 -45 12 -66 c0 -75 -49 -137 -133 -142c-29 0 -92 17 -123 72c-17 30 -24 59 -24 88c0 85 63 160 124 197c55 32 101 47 158 47c109 0 231 -48 341 -52c45 2 85 11 98 52zM748 523c-80 0 -152 -73 -203 -227l32 4c13 35 39 84 85 84c25 0 45 -16 53 -37c1 -3 1 -7 1 -11 c0 -14 -5 -29 -21 -36c-20 -11 -45 -21 -89 -28c-2 -14 -4 -28 -4 -47c0 -9 1 -20 2 -33l-51 -25c6 48 10 76 17 101l-36 -5c-37 -136 -110 -280 -316 -280c-82 0 -138 30 -138 86c0 28 19 53 49 53c27 0 45 -17 46 -47c0 -23 -11 -44 -35 -50c21 -10 59 -12 78 -12 c125 0 182 131 220 242c-27 -5 -72 -25 -97 -89l-26 21c24 51 60 94 135 100c55 129 97 268 286 268zM685 345c-3 6 -11 7 -16 7c-27 0 -46 -24 -56 -46c34 5 60 15 70 28c3 3 4 7 2 11'], + 0x2133: [689,17,1266,80,1186,'1186 183c0 -14 -2 -26 -4 -34c-29 -100 -121 -166 -213 -166c-27 0 -63 7 -94 37c-18 17 -30 39 -40 60c-8 27 -12 51 -12 70c0 4 1 8 1 12c18 197 133 350 233 498c0 0 0 -1 -3 -1c-31 0 -63 -34 -82 -55c-134 -149 -188 -360 -300 -526c-17 -27 -63 -91 -100 -89 c-5 0 -33 0 -47 27c-7 13 -10 30 -10 48c0 48 19 106 31 136c39 97 87 188 136 279c49 100 90 149 102 178v2c-15 0 -42 -20 -46 -24c-56 -55 -120 -156 -166 -232c-65 -113 -129 -232 -204 -339c-36 -46 -69 -81 -141 -81c-92 0 -147 30 -147 86c0 28 19 53 49 53 c27 0 45 -17 46 -47c0 -23 -11 -44 -35 -50c22 -10 61 -12 79 -12c86 0 126 80 156 127c65 91 114 192 170 287c47 80 116 191 175 237c14 12 35 23 55 23c22 0 42 -7 50 -28c2 -4 2 -10 2 -15c0 -48 -53 -132 -64 -152c-40 -84 -84 -171 -120 -256 c-9 -17 -90 -172 -81 -216l2 -1c44 -2 112 137 134 175c64 125 121 256 202 371c35 53 94 126 152 124c17 0 42 -13 49 -32c1 -3 2 -7 2 -11c0 -39 -56 -113 -101 -210c-30 -62 -42 -81 -58 -125c-15 -35 -66 -144 -66 -214c0 -13 1 -24 5 -34c12 -28 33 -50 77 -50 c43 0 87 41 102 57c23 22 87 97 87 157c0 10 -2 20 -6 29c-7 12 -21 29 -52 33c-54 8 -98 -74 -107 -137l-27 16c0 60 52 150 123 150c41 0 80 -30 95 -71c8 -22 11 -45 11 -64'], + 0x2134: [427,14,629,80,549,'549 236c-23 -34 -46 -55 -84 -55c-25 0 -40 8 -62 25c-42 -101 -98 -220 -216 -220c-15 0 -84 23 -100 87c-5 21 -7 41 -7 61c0 113 75 213 148 265c17 14 48 28 77 28c21 0 42 -6 58 -25c4 1 6 1 11 1c16 0 31 -17 38 -38c8 -20 10 -41 10 -61c0 -29 -5 -55 -11 -75 c12 -9 26 -20 45 -20c31 0 52 15 69 47zM379 229c-15 19 -28 35 -35 64c-4 17 -6 33 -6 49c0 17 3 32 8 44c-6 5 -14 14 -25 14c-33 -3 -69 -61 -92 -113l-79 -187c-5 -13 -7 -25 -7 -37c0 -7 1 -13 2 -20c8 -23 24 -28 49 -28c43 0 76 31 94 49c38 40 69 100 91 165'], + 0x1D49C: [689,17,1090,80,1010,'1010 198c0 -28 -6 -58 -22 -88c-39 -80 -134 -129 -204 -127c-85 0 -166 73 -166 158c0 10 1 21 4 32c10 51 35 104 48 128h-136c-45 -93 -84 -167 -137 -229c-45 -50 -99 -87 -179 -87c-82 0 -138 30 -138 86c0 28 18 53 48 53c27 0 46 -17 47 -47 c0 -23 -11 -44 -35 -50c21 -10 58 -12 78 -12c27 0 54 6 79 20c87 45 151 172 196 266h-125l1 30h141c28 56 57 107 82 149c68 122 117 171 146 189c17 10 41 20 65 20c48 0 77 -44 77 -101c0 -30 -8 -63 -25 -95l-85 -162h65l-9 -30h-70c-19 -39 -77 -141 -77 -204 c0 -10 1 -18 4 -26c19 -50 64 -58 95 -58c96 -2 167 101 184 149c10 26 15 47 15 66c0 12 -3 23 -7 33c-4 15 -19 26 -41 26c-33 0 -89 -24 -111 -137h-28c8 76 49 166 130 166c36 0 68 -23 80 -56c6 -17 10 -38 10 -62zM833 631c0 14 -9 26 -26 28c-26 2 -42 -11 -70 -37 c-51 -48 -117 -158 -189 -291h134c45 96 108 181 147 282c3 6 4 12 4 18'], + 0x1D49E: [689,17,871,80,791,'791 587c0 -60 -60 -103 -99 -131c-94 -67 -216 -108 -350 -111c-40 -65 -63 -127 -74 -180c-2 -13 -8 -35 -8 -59c0 -12 1 -23 5 -35c21 -42 58 -56 97 -56c97 0 176 64 209 135c9 18 12 34 12 48c0 9 -1 18 -4 26c-8 21 -23 36 -43 40c-8 2 -15 3 -22 3 c-73 0 -128 -94 -143 -149l-23 25c17 62 57 104 79 121c18 13 53 32 86 32c46 0 83 -33 99 -76c5 -14 7 -28 7 -43c0 -55 -33 -112 -89 -146c-32 -24 -93 -48 -154 -48c-72 0 -134 44 -165 117c-8 29 -11 56 -11 81c0 62 19 116 42 167c-103 4 -162 102 -162 169 c0 92 78 159 165 159c62 0 94 -12 114 -20l-5 -30c-24 9 -47 20 -103 20c-72 0 -122 -66 -122 -131c0 -71 58 -135 131 -136c43 102 108 166 152 203c64 56 146 105 248 107c68 0 111 -27 125 -67c4 -12 6 -24 6 -35zM760 599c0 7 -2 14 -4 20c-9 28 -33 38 -79 38 c-103 0 -176 -74 -227 -137c-20 -27 -63 -86 -96 -143c134 10 243 54 312 102c58 39 94 83 94 120'], + 0x1D49F: [690,17,902,79,822,'822 620c-37 -3 -80 -15 -119 -49c58 -66 78 -168 78 -262c0 -181 -139 -326 -330 -326c-39 0 -79 6 -136 21c-44 -13 -71 -19 -136 -21c-55 -2 -88 21 -98 44c-7 25 12 53 71 52c77 -3 129 -18 174 -30c73 44 99 130 127 202c43 115 93 229 195 318 c-38 39 -104 93 -194 93c-75 0 -163 -19 -210 -69c-34 -36 -61 -89 -61 -139c0 -16 4 -33 10 -48c15 -37 43 -61 83 -62c47 -1 73 29 92 77c12 27 17 51 17 71c0 43 -19 71 -28 90l24 7c26 -45 41 -76 41 -126c0 -80 -50 -149 -140 -149c-53 0 -103 42 -119 94 c-6 20 -9 39 -9 57c0 83 60 150 119 185c44 28 142 40 184 40c116 0 196 -58 224 -92c43 41 112 50 129 52zM753 322c0 71 -28 151 -81 218c-65 -90 -91 -196 -135 -300c-24 -56 -53 -133 -166 -204c33 -11 65 -15 94 -17c180 6 288 144 288 303zM255 23 c-28 8 -60 15 -99 19c-1 0 -11 2 -21 2c-13 0 -26 -3 -24 -16c3 -16 33 -15 47 -15c36 0 67 5 97 10'], + 0x1D4A2: [689,17,859,80,779,'779 591c0 -60 -60 -103 -99 -131c-95 -67 -216 -109 -350 -111c-4 -14 -9 -32 -9 -51c0 -11 2 -23 7 -34c15 -33 43 -48 81 -54c5 -1 9 -1 13 -1c29 0 48 14 76 28c17 55 56 94 137 94h15l6 -20c-19 -7 -36 -17 -56 -58c-37 -82 -65 -169 -145 -224 c-36 -25 -110 -46 -176 -46c-82 0 -139 30 -139 86c0 28 19 53 49 53c27 0 46 -17 47 -47c0 -23 -11 -44 -36 -50c26 -10 71 -12 79 -12c120 2 165 103 204 180c-16 -6 -42 -14 -67 -13c-72 2 -126 42 -149 111c-6 19 -10 36 -10 52c0 4 1 8 1 12c-118 3 -178 101 -178 168 c0 93 78 159 164 159c54 0 87 -12 107 -19l-6 -30c-19 9 -60 19 -95 19c-72 0 -121 -65 -121 -131c0 -71 58 -135 131 -138c12 89 80 161 114 196c67 63 171 110 255 110c51 0 129 -24 144 -63c4 -12 6 -24 6 -35zM751 599c0 8 -2 16 -6 23c-18 30 -79 37 -112 37 c-22 0 -47 -8 -73 -21c-102 -58 -178 -179 -220 -258c135 11 243 55 314 102c57 39 97 80 97 117'], + 0x1D4A5: [689,253,852,80,772,'772 647c-159 -153 -193 -383 -291 -571c73 20 129 57 158 120c9 20 14 40 14 60c0 14 -2 29 -8 45c-5 11 -10 22 -18 45h25c12 -21 18 -34 24 -50c9 -25 13 -48 13 -69c0 -112 -120 -160 -219 -191c-46 -94 -80 -152 -156 -228c-40 -39 -76 -61 -131 -61 c-64 0 -88 44 -97 67c-4 11 -6 22 -6 32c0 42 31 72 36 75c75 65 193 117 279 137c62 193 139 378 263 520c-27 -10 -69 -19 -111 -19c-78 0 -147 77 -223 77c-68 0 -128 -62 -128 -137c0 -78 44 -123 106 -123c103 0 143 112 140 161l27 -5c1 -8 1 -17 1 -25 c0 -99 -72 -162 -151 -162c-120 0 -153 78 -153 160c0 100 71 184 183 184c71 0 171 -82 221 -82c68 0 145 36 195 63zM380 19c-91 -20 -128 -42 -193 -84c-37 -25 -78 -53 -78 -92c0 -6 1 -14 4 -21c3 -10 9 -16 14 -23c13 -18 32 -23 51 -23c32 0 60 16 74 29 c66 60 95 153 128 214'], + 0x1D4A6: [689,17,1156,80,1076,'1076 593c0 -28 -19 -53 -49 -53c-27 0 -46 18 -47 48c0 23 12 46 39 50c-22 15 -61 21 -82 21c-43 0 -77 -53 -91 -102c-34 -103 -61 -198 -151 -244c14 -13 23 -25 28 -39c3 -9 4 -17 4 -25c0 -10 -2 -20 -4 -30c-7 -41 -25 -81 -25 -125c0 -13 2 -27 6 -41 c8 -20 28 -34 67 -40c5 0 10 -1 14 -1c62 0 108 41 131 73c16 20 51 71 51 119c0 10 -1 20 -5 30c-8 22 -29 42 -53 42c-42 0 -87 -46 -114 -80l-23 17c35 53 82 93 130 93c41 0 76 -29 92 -70c8 -23 12 -44 12 -65c0 -109 -104 -188 -213 -188c-79 0 -139 37 -162 94 c-18 69 25 118 25 181c0 11 -2 23 -5 35c-11 -2 -22 -7 -36 -6c-25 1 -44 9 -59 29c-47 -160 -138 -333 -335 -333c-82 0 -141 30 -141 86c0 28 19 53 49 53c27 0 46 -17 47 -47c0 -23 -12 -44 -36 -50c22 -10 59 -12 79 -12c100 0 179 108 214 200c55 132 96 264 178 362 c-20 -10 -40 -16 -63 -16c-77 0 -146 77 -223 77c-67 0 -127 -62 -127 -137c0 -78 44 -123 106 -123c102 0 143 112 140 161l27 -5c1 -8 1 -16 1 -24c0 -100 -73 -163 -152 -163c-119 0 -153 78 -153 160c0 100 71 184 183 184c71 0 171 -82 222 -82c67 0 98 38 134 76 l26 -18c-89 -84 -126 -193 -162 -301c5 0 9 1 15 1c27 0 61 -13 83 -30c49 36 66 114 90 177c27 75 61 173 167 177c95 0 151 -39 151 -96zM635 321c-13 9 -30 15 -44 15c-7 0 -15 0 -14 -5c2 -10 14 -14 27 -14c10 0 21 2 31 4'], + 0x1D4A9: [697,24,1193,80,1113,'1113 601c0 -28 -19 -53 -49 -53c-27 0 -46 17 -47 47c0 23 12 45 38 51c-15 9 -30 12 -36 12c-39 0 -68 -12 -97 -36c-58 -54 -111 -183 -138 -258c-34 -87 -68 -183 -112 -266c-13 -25 -48 -92 -103 -122l-27 17c41 30 53 72 53 117c0 23 -3 47 -7 71 c-16 110 -59 231 -59 334c0 24 2 47 8 69c-84 -121 -114 -284 -173 -420c-35 -74 -86 -181 -183 -181c-42 0 -101 31 -101 88c0 28 19 53 49 53c27 0 45 -17 46 -47c0 -23 -12 -45 -37 -51c15 -8 30 -11 35 -11c92 0 128 99 155 165c44 95 74 201 119 298 c40 87 84 172 159 219l23 -18c-29 -30 -40 -70 -40 -114c0 -85 40 -186 56 -267c7 -30 11 -65 11 -100c0 -24 -2 -49 -7 -73c62 119 95 261 156 385c38 78 96 179 207 179c35 0 101 -31 101 -88'], + 0x1D4AA: [689,19,864,80,784,'784 473c0 -26 -5 -52 -17 -74l-22 19c7 17 10 34 10 52c0 29 -8 58 -16 81c-28 78 -133 106 -198 108c-81 2 -178 -78 -226 -132c-77 -91 -149 -213 -170 -320c0 -3 -3 -20 -3 -42c0 -19 2 -41 11 -60c30 -70 112 -98 164 -98c67 0 137 43 183 85c56 48 87 90 121 147 c21 36 57 109 57 178c0 24 -5 48 -16 70c-20 38 -52 70 -110 74c-92 4 -182 -98 -182 -185c0 -40 18 -75 72 -97l-18 -23c-61 18 -86 63 -86 114c-1 98 89 221 204 221c5 0 11 0 16 -1c64 -7 117 -56 138 -113c13 -36 18 -72 18 -105c0 -89 -38 -168 -81 -229 c-72 -93 -204 -162 -314 -162c-60 0 -135 28 -177 81c-21 26 -36 47 -47 81c-10 31 -15 61 -15 91c0 113 64 218 129 291c82 92 209 166 334 164c103 0 196 -53 226 -134c10 -27 15 -55 15 -82'], + 0x1D4AB: [690,16,897,80,817,'817 439c0 -97 -103 -146 -173 -146c-20 0 -26 1 -48 9l-6 31c28 -9 30 -10 48 -10c50 0 122 49 122 125c0 15 -3 31 -9 48c-16 45 -50 87 -91 113c-51 -46 -83 -173 -103 -236c-49 -167 -114 -389 -338 -389c-82 0 -139 30 -139 86c0 28 19 53 49 53c27 0 46 -17 47 -47 c0 -23 -11 -44 -37 -50c22 -10 55 -13 79 -13c84 2 119 53 135 74c65 86 94 220 131 321c11 22 56 162 138 222c-42 14 -149 32 -192 32c-51 0 -154 -28 -201 -78c-34 -36 -61 -89 -61 -139c0 -17 3 -34 10 -49c15 -36 43 -60 83 -61c47 -1 73 29 92 77c12 27 16 51 16 71 c0 42 -19 71 -27 90l24 6c26 -44 41 -75 41 -126c0 -79 -50 -148 -140 -148c-53 0 -103 42 -119 94c-6 19 -9 38 -9 56c0 83 60 150 119 186c44 27 133 49 175 49c70 0 171 -17 218 -41c16 13 36 23 63 31l15 -29c-19 -6 -33 -10 -47 -21c58 -33 104 -81 125 -137 c7 -20 10 -38 10 -54'], + 0x1D4AC: [689,140,864,80,784,'784 473c0 -26 -5 -52 -17 -74l-22 19c7 17 10 34 10 52c0 29 -8 58 -16 81c-28 78 -133 106 -198 108c-81 2 -178 -78 -226 -132c-77 -91 -149 -213 -170 -320c0 -3 -3 -20 -3 -42c0 -19 2 -41 11 -60c30 -70 112 -98 164 -98c67 0 137 43 183 85c56 48 87 90 121 147 c21 36 57 109 57 178c0 24 -5 48 -16 70c-20 38 -52 70 -110 74c-92 4 -182 -98 -182 -185c0 -40 18 -75 72 -97l-18 -23c-61 18 -86 63 -86 114c-1 98 89 221 204 221c5 0 11 0 16 -1c64 -7 117 -56 138 -113c13 -36 18 -72 18 -105c0 -89 -38 -168 -81 -229 c-58 -75 -147 -139 -244 -156c74 -23 168 -66 192 -64c38 4 65 49 78 79l20 -20c-6 -27 -51 -120 -121 -122c-86 0 -177 98 -262 94c-41 0 -56 -18 -80 -57l-20 16c19 43 40 66 57 78c-45 10 -83 35 -111 71c-21 26 -36 47 -47 81c-10 31 -15 61 -15 91 c0 113 64 218 129 291c82 92 209 166 334 164c103 0 196 -53 226 -134c10 -27 15 -55 15 -82'], + 0x1D4AE: [689,15,993,80,913,'913 592c0 -157 -138 -283 -373 -284c-11 -35 -28 -87 -52 -131c-53 -108 -186 -192 -270 -192c-82 0 -138 30 -138 86c0 28 18 53 48 53c27 0 46 -17 47 -47c0 -23 -11 -44 -35 -50c21 -10 58 -12 78 -12c70 0 142 65 172 125c25 51 43 114 64 168 c-128 3 -177 65 -175 133c1 91 94 176 261 176l-1 -27c-129 0 -214 -63 -214 -129c0 -71 55 -122 139 -123c39 124 110 233 215 306c13 7 71 45 119 45c86 0 115 -58 115 -97zM882 603c0 12 -23 57 -83 57c-56 0 -114 -67 -158 -135c-29 -44 -68 -119 -92 -183 c176 3 333 92 333 261'], + 0x1D4AF: [689,17,996,80,916,'916 677c-29 -79 -72 -102 -140 -102c-92 -2 -218 42 -339 49c-6 0 -11 1 -17 1c-122 0 -233 -90 -233 -190c0 -15 3 -30 8 -45c14 -43 50 -71 92 -75c66 3 113 70 113 138c0 15 -3 31 -8 46c-6 16 -17 36 -38 71h27c20 -24 34 -49 43 -77c8 -23 12 -45 12 -66 c0 -76 -49 -137 -132 -142c-30 0 -93 17 -124 72c-17 30 -24 59 -24 88c0 85 63 160 124 197c56 32 101 47 158 47c111 -1 241 -48 351 -52c45 2 85 11 98 52zM711 523c-87 0 -130 -98 -175 -257c-42 -144 -110 -283 -317 -283c-82 0 -139 30 -139 86c0 28 19 53 49 53 c27 0 46 -17 47 -47c0 -23 -11 -44 -36 -50c22 -10 59 -12 79 -12c134 0 182 141 231 271c52 140 59 271 249 271'], + 0x1D4B0: [687,18,1016,80,936,'936 181c0 -47 -23 -86 -33 -102c-27 -39 -93 -97 -173 -97c-5 0 -10 1 -15 1c-12 2 -99 10 -136 105c-5 13 -6 29 -6 43c-15 -24 -36 -52 -56 -75c-20 -22 -68 -73 -130 -73h-10c-21 2 -67 8 -101 83c-4 9 -6 21 -6 33c0 101 118 286 125 304c25 49 60 108 65 151 c1 11 0 23 -4 34c-14 40 -83 71 -141 71c-14 0 -27 -2 -40 -6c-81 -24 -167 -109 -167 -196c0 -17 3 -34 11 -51c15 -37 43 -61 83 -62c47 -1 73 29 93 77c11 27 15 51 15 71c0 43 -18 71 -26 90l23 7c26 -45 41 -76 41 -126c0 -80 -49 -149 -139 -149 c-53 0 -104 42 -120 94c-6 19 -9 37 -9 54c0 84 63 150 120 188c32 24 75 37 117 37c95 0 162 -29 202 -95c9 -16 12 -34 12 -53c0 -73 -51 -163 -73 -203c-36 -57 -76 -116 -107 -176c-8 -17 -31 -50 -31 -84c0 -4 0 -8 1 -12c8 -34 23 -48 61 -51c94 -7 190 179 228 246 l201 363h81l-205 -395c-23 -40 -50 -78 -50 -128c0 -11 2 -22 5 -35c10 -28 33 -51 78 -51c90 0 137 77 151 102c0 0 27 46 27 91c0 14 -3 28 -10 41c-1 4 -15 19 -35 19c-15 0 -31 -9 -48 -28c-24 -25 -42 -61 -65 -103l-27 19c26 44 53 98 92 127c13 12 27 15 40 15 c38 0 69 -28 84 -70c5 -16 7 -31 7 -45'], + 0x1D4B1: [689,19,1050,80,970,'970 570c0 -28 -19 -53 -49 -53c-27 0 -45 18 -46 47c0 25 14 49 44 52c-4 16 -24 29 -69 29c-84 0 -152 -198 -161 -214c-43 -72 -73 -154 -123 -224c-79 -112 -190 -207 -361 -226l-13 32c113 11 155 217 173 262c40 104 68 217 131 294c-14 -5 -29 -9 -44 -10 c-77 0 -137 77 -214 77c-67 0 -127 -62 -127 -137c0 -78 44 -123 106 -123c102 0 143 112 140 161l27 -5c1 -8 1 -17 1 -25c0 -99 -72 -162 -152 -162c-119 0 -153 78 -153 160c0 100 71 184 183 184c71 0 162 -82 213 -82c67 0 72 23 115 67l25 -18 c-90 -100 -119 -228 -156 -349c-34 -111 -73 -200 -155 -268c196 70 284 257 360 433c39 80 90 204 185 204c87 0 120 -49 120 -106'], + 0x1D4B2: [689,19,1269,80,1189,'1189 570c0 -28 -19 -53 -49 -53c-27 0 -45 18 -46 47c0 25 14 49 44 52c-4 16 -24 29 -69 29c-23 0 -45 -8 -74 -58c-94 -160 -142 -351 -270 -484c-69 -67 -141 -109 -224 -122l-18 26c59 35 86 100 106 157c55 135 80 293 153 413c-89 -89 -145 -210 -206 -324 c-66 -117 -141 -247 -303 -272l-19 28c64 29 97 114 118 177c44 121 75 250 145 356l20 28c-11 -6 -22 -10 -36 -11c-78 0 -147 77 -223 77c-68 0 -127 -62 -127 -137c0 -78 44 -123 105 -123c103 0 143 112 140 161l27 -5c1 -9 2 -18 2 -26c0 -99 -74 -161 -152 -161 c-120 0 -153 78 -153 160c0 100 71 184 183 184c71 0 171 -82 221 -82c43 0 86 43 112 70l23 -24c-170 -174 -143 -470 -321 -623c26 11 55 37 73 52c85 74 141 204 195 306c56 106 126 222 259 287l23 -23c-40 -28 -59 -85 -69 -119c-53 -163 -70 -369 -193 -488 c193 90 258 316 342 496c24 49 61 135 141 135c87 0 120 -49 120 -106'], + 0x1D4B3: [688,17,1001,80,921,'921 564c0 -28 -19 -53 -49 -53c-27 0 -45 18 -46 48c0 24 14 48 44 51c-4 16 -24 29 -69 29c-56 -1 -93 -32 -125 -71c-56 -76 -86 -151 -122 -257c-24 -69 -43 -108 -43 -152c0 -20 4 -41 12 -66c16 -49 50 -76 94 -80c32 -2 57 13 79 29c34 28 69 94 69 149 c0 13 -2 26 -6 37c-8 23 -36 44 -59 44c-16 0 -30 -9 -48 -30c-11 -10 -33 -42 -38 -102h-31c4 116 66 160 117 160c43 0 78 -41 93 -80c6 -17 8 -35 8 -53c0 -23 -4 -44 -11 -62c-25 -65 -84 -122 -162 -122c-67 0 -122 50 -149 113c-5 16 -7 33 -9 47 c-54 -78 -133 -160 -252 -160c-82 0 -138 30 -138 86c0 28 19 53 49 53c27 0 45 -17 46 -47c0 -23 -11 -44 -35 -50c22 -10 60 -12 79 -12c81 0 170 116 210 188c18 29 67 142 96 241c10 33 15 67 15 96c0 16 -2 30 -5 41c-19 51 -61 81 -115 81c-14 0 -26 -3 -39 -7 c-81 -24 -166 -109 -166 -196c0 -17 3 -34 10 -51c15 -37 43 -61 83 -62c47 -1 73 29 92 77c12 27 16 51 16 71c0 43 -19 71 -27 90l24 7c26 -45 41 -76 41 -126c0 -80 -50 -149 -140 -149c-53 0 -103 42 -119 94c-6 19 -9 37 -9 55c0 83 64 149 119 187c33 24 76 38 118 38 c73 0 141 -46 168 -120c5 -13 8 -25 9 -36c21 36 43 59 55 71c47 48 102 67 146 67c87 0 120 -49 120 -106'], + 0x1D4B4: [689,264,974,80,894,'894 637l-318 -608c96 17 212 68 212 171c0 18 -4 38 -12 59c-4 11 -11 22 -20 45h31c10 -23 18 -38 22 -52c10 -26 14 -49 14 -71c0 -125 -150 -173 -264 -188c-10 -19 -24 -44 -37 -65c-43 -78 -117 -198 -244 -192c-10 0 -73 5 -101 74c-5 13 -7 25 -7 36 c0 47 39 74 46 77c74 55 177 76 275 92l43 82c-38 -36 -77 -59 -136 -59c-39 0 -89 27 -105 74c-4 11 -5 22 -5 33c0 29 10 57 19 71c76 140 96 192 171 327c3 5 5 14 5 25c0 36 -27 93 -150 93c-14 0 -45 -2 -58 -6c-81 -24 -166 -109 -166 -197c0 -17 3 -34 10 -51 c15 -36 43 -60 83 -61c47 -1 73 29 92 77c12 27 16 51 16 71c0 42 -19 71 -27 90l24 7c26 -45 41 -76 41 -127c0 -79 -50 -148 -140 -148c-53 0 -103 42 -119 94c-6 19 -9 37 -9 55c0 83 64 149 119 187c33 24 94 37 136 37c144 0 206 -67 206 -166c1 -19 -4 -39 -14 -57 l-150 -274c-14 -28 -30 -59 -30 -76c0 -26 24 -48 50 -48c105 0 168 101 215 191l195 378h87zM477 -21c-53 -8 -207 -38 -257 -95c-14 -13 -19 -30 -19 -46c0 -8 1 -15 3 -22c12 -30 39 -52 74 -52c75 0 124 91 130 99'], + 0x1D4B5: [687,19,938,80,858,'858 147c0 -44 -27 -80 -51 -103c-22 -19 -80 -61 -151 -61c-73 0 -169 64 -278 109c-47 -66 -110 -109 -172 -111c-76 0 -120 33 -125 94c-1 4 -1 7 -1 11c0 58 45 103 118 103c47 0 111 -10 179 -32c41 71 80 153 111 209c39 73 72 133 115 191c-88 15 -167 67 -254 67 c-59 0 -126 -40 -153 -81c-14 -26 -23 -55 -23 -78c0 -63 28 -123 89 -132c55 3 82 56 82 117v20c0 24 -3 46 -14 75h31c28 -68 26 -106 26 -112c1 -58 -30 -129 -122 -127c-53 0 -120 51 -120 154c0 49 19 97 51 136c36 46 109 91 181 91c89 0 167 -55 255 -84 c21 25 47 67 88 67c18 0 33 -11 41 -31c2 -5 3 -10 3 -14c0 -8 -4 -15 -10 -19c-16 -21 -51 -47 -112 -51c-42 -62 -72 -115 -112 -192c-27 -54 -66 -136 -117 -218c81 -36 173 -114 272 -114c40 0 142 48 142 120c0 9 -2 18 -5 28c-14 41 -54 68 -93 68 c-45 0 -88 -32 -105 -111h-30c10 75 48 140 126 140c52 0 111 -36 131 -89c4 -14 7 -27 7 -40zM733 627c2 3 1 7 0 9c-1 3 -6 3 -10 3c-24 0 -40 -21 -54 -40c26 5 54 15 64 28zM344 104c-65 25 -127 44 -173 44c-42 0 -60 -32 -60 -66c0 -4 0 -8 1 -12c6 -39 46 -57 83 -57 c54 0 109 36 149 91'], + 0x1D4B6: [418,14,726,80,646,'646 223c-22 -38 -45 -77 -70 -106c-37 -47 -111 -134 -173 -131c-43 0 -79 35 -79 82v11c-30 -43 -73 -93 -129 -93c-19 0 -81 6 -109 101c-4 16 -6 33 -6 49c0 90 64 170 89 197c30 30 91 85 155 85c35 0 85 -11 96 -75l30 63h95l-145 -285c-14 -29 -29 -57 -29 -78 c0 -17 15 -28 26 -28c51 -3 123 90 129 92c41 49 64 80 92 130zM396 333c0 9 -2 17 -4 23c-8 23 -36 34 -55 34c-33 0 -73 -54 -102 -105l-56 -96c-25 -43 -45 -101 -45 -132c0 -20 27 -40 52 -40c14 0 27 3 35 8c67 33 127 147 157 229c13 36 18 61 18 79'], + 0x1D4B7: [735,14,617,80,537,'537 206c-15 -23 -40 -49 -74 -49c-22 0 -35 10 -55 24c-42 -85 -99 -195 -212 -195h-10c-20 0 -73 17 -94 82c-9 28 -12 54 -12 78c0 57 19 98 23 111c56 142 44 117 110 256c46 96 141 222 198 222c35 0 81 -17 81 -93c0 -51 -99 -251 -288 -356c-3 -7 -6 -15 -15 -35 c-21 -50 -55 -109 -55 -174c0 -11 1 -23 3 -34c6 -13 17 -26 38 -28c5 -1 9 -1 14 -1c56 0 100 43 110 52c38 42 60 84 86 139c-14 19 -20 44 -20 70c0 54 26 109 63 109c21 0 29 -18 29 -44c0 -41 -20 -100 -41 -138c17 -9 25 -17 42 -17c32 0 43 20 68 56zM465 648 c0 36 -15 59 -51 59c-24 0 -40 -33 -45 -45c-74 -146 -104 -242 -145 -328c92 39 241 240 241 314'], + 0x1D4B8: [418,14,484,80,404,'404 343c0 -32 -19 -62 -47 -62c-25 0 -48 23 -46 51c1 26 19 45 41 47c7 0 12 0 18 -2c-5 6 -40 13 -58 13c-40 0 -49 -38 -68 -69c-45 -68 -108 -229 -101 -263c3 -29 32 -43 42 -43c104 0 168 157 182 182l12 -38c-31 -68 -88 -173 -191 -173c-34 0 -88 34 -101 92 c-5 20 -7 40 -7 60c0 121 82 228 165 269c17 9 31 11 49 11c42 0 110 -11 110 -75'], + 0x1D4B9: [721,14,778,80,698,'698 721l-300 -580c-15 -28 -29 -70 -29 -98c0 -17 5 -28 18 -28c31 0 55 15 85 46c50 50 80 98 135 182l20 -24c-37 -50 -91 -135 -142 -188c-15 -14 -48 -45 -101 -45c-35 0 -65 24 -78 58c-2 10 -4 22 -4 30c-22 -38 -65 -88 -120 -88c-42 0 -92 46 -98 84 c-3 18 -4 35 -4 52c0 103 45 193 119 247c55 38 84 44 115 44c10 0 70 -1 90 -60c2 -5 3 -14 5 -21l194 389h95zM383 333c0 6 0 11 -2 16c-5 17 -26 33 -43 33c-24 0 -61 -27 -113 -94c-65 -85 -99 -175 -99 -218c0 -6 1 -10 2 -14c9 -29 34 -39 53 -39c37 0 59 29 78 51 c55 64 103 171 118 229c3 12 6 24 6 36'], + 0x1D4BB: [735,280,797,80,717,'717 642c0 -51 -99 -251 -287 -356l-56 -126c12 -2 23 -3 34 -3c70 0 120 41 173 93l11 -34c-50 -56 -112 -88 -194 -88c-13 0 -28 4 -36 7l-180 -415h-102l204 439c-48 22 -64 38 -78 51l14 27c32 -25 45 -31 77 -51c77 161 77 171 151 327c46 96 131 222 188 222 c36 0 81 -17 81 -93zM690 648c0 36 -15 59 -50 59c-24 0 -40 -33 -46 -45c-74 -146 -104 -242 -145 -328c93 39 241 240 241 314'], + 0x1D4BD: [735,14,748,80,668,'564 648c0 36 -15 59 -51 59c-24 0 -35 -33 -41 -45l-114 -258c100 94 206 170 206 244zM668 212c-31 -46 -65 -101 -97 -141c-11 -18 -62 -85 -105 -85c-22 0 -57 24 -71 64c-6 27 -8 44 -8 58c0 22 7 35 22 67c21 42 64 112 56 136c-6 17 -20 29 -41 29 c-52 0 -161 -142 -193 -209l-58 -131h-93l132 298l102 215c47 96 138 222 195 222c36 0 82 -17 82 -93c0 -51 -90 -150 -257 -291c0 0 -25 -46 -33 -65c31 37 86 82 117 82c71 0 96 -50 96 -125c0 -78 -51 -150 -64 -189c-4 -8 -5 -15 -5 -21c0 -13 8 -18 12 -18 c18 -3 41 12 74 53c43 53 82 114 124 182'], + 0x1D4BE: [671,14,466,80,386,'386 227c-46 -71 -93 -137 -146 -191c-13 -15 -51 -53 -84 -50c-27 0 -76 27 -76 93c0 21 5 46 18 76l108 251h85l-112 -251c-23 -53 -57 -115 -53 -130c4 -10 18 -10 27 -10c30 0 61 33 78 49c45 50 102 133 136 184zM354 617c0 -30 -26 -54 -56 -54s-54 24 -54 54 s24 54 54 54s56 -24 56 -54'], + 0x1D4BF: [671,308,770,80,690,'663 617c0 -30 -25 -54 -55 -54s-54 24 -54 54s24 54 54 54s55 -24 55 -54zM690 248c-72 -113 -172 -203 -291 -253c-58 -123 -136 -303 -242 -303c-42 0 -77 19 -77 76c0 75 110 157 240 231l190 411h90l-179 -371c96 52 175 134 248 228zM302 -41 c-102 -57 -191 -138 -191 -186c0 -46 28 -51 45 -51c24 0 35 12 47 32c32 53 65 135 99 205'], + 0x1D4C0: [735,14,720,80,640,'640 329c0 -32 -21 -62 -49 -62c-25 0 -47 22 -46 51c1 25 19 45 42 47c6 0 12 -1 18 -2c-5 6 -16 15 -47 15c-56 0 -90 -67 -117 -111c-17 -27 -22 -40 -52 -50c29 -9 50 -36 60 -67c2 -7 3 -14 3 -21c0 -31 -18 -62 -19 -96c0 -10 5 -18 17 -18c44 -3 102 82 121 110 c25 35 15 22 38 59l25 -17c-14 -20 -14 -22 -31 -49c-21 -32 -84 -135 -141 -132c-42 0 -80 18 -85 78c-3 33 13 62 13 93c0 7 -1 14 -3 22c-6 18 -36 17 -47 17h-80l-83 -196h-97l116 257l120 256c46 96 131 222 188 222c35 0 81 -17 81 -93c0 -51 -119 -252 -285 -353 l-26 -66h41c45 0 74 26 96 61c34 54 75 122 154 122c19 0 75 -7 75 -77zM558 648c0 36 -15 59 -51 59c-24 0 -40 -33 -45 -45c-74 -146 -104 -242 -145 -328c103 74 241 240 241 314'], + 0x1D4C1: [735,14,644,80,564,'537 648c0 36 -15 59 -51 59c-24 0 -40 -33 -45 -45c-74 -146 -104 -242 -145 -328c77 36 241 240 241 314zM564 642c0 -51 -102 -251 -291 -356c-11 -26 -68 -144 -68 -209c0 -44 17 -62 37 -62c33 2 60 31 81 56c45 53 82 116 124 176l11 -38 c-32 -50 -71 -114 -109 -159c-14 -14 -51 -64 -95 -64c-49 0 -93 45 -97 91c-1 13 -2 25 -2 38c0 41 6 85 25 147c-39 -19 -72 -40 -81 -56l-19 16c9 28 61 59 114 82c18 56 47 124 89 209c45 96 143 222 200 222c35 0 81 -17 81 -93'], + 0x1D4C2: [413,14,1034,80,954,'954 212c-36 -56 -71 -114 -112 -164c-7 -8 -54 -62 -85 -62c-35 0 -61 30 -73 64c-3 14 -4 27 -4 39c0 42 16 75 37 119c22 45 60 110 60 133c0 32 -18 45 -44 41c-13 0 -44 -13 -83 -54c-83 -92 -152 -208 -208 -328h-91c48 98 103 197 143 288c6 13 19 37 19 57 c0 4 -1 8 -2 11c-6 17 -15 26 -32 26c-61 0 -157 -109 -181 -134c-53 -71 -103 -155 -136 -248h-82l181 406h89l-62 -125c40 43 65 67 98 92c29 24 62 40 89 40c43 -3 67 -34 79 -72c7 -25 10 -48 10 -68c22 28 50 62 78 89c39 35 64 54 93 51c60 -6 89 -75 93 -98 c1 -5 1 -11 1 -17c0 -77 -60 -173 -83 -220c-13 -28 -15 -42 -15 -56c4 -3 8 -5 14 -5c23 0 49 25 55 33c49 52 105 143 142 200'], + 0x1D4C3: [410,14,750,80,670,'670 212c-30 -48 -75 -119 -118 -169c-5 -6 -50 -57 -82 -57c-28 0 -56 24 -70 60c-5 12 -7 26 -7 40c0 89 89 202 95 250c4 19 -3 43 -35 43c-19 0 -46 -13 -82 -48c-81 -91 -148 -211 -198 -331h-93l195 406h86l-33 -71c29 37 67 75 114 75c52 0 101 -53 101 -113 c0 -4 0 -9 -1 -13c-12 -95 -60 -156 -90 -224c-5 -11 -7 -20 -7 -27c0 -8 3 -14 10 -18c14 -8 64 38 71 46c45 58 88 116 131 189'], + 0x1D4C5: [410,280,873,80,793,'793 212c-30 -46 -68 -105 -100 -148c-17 -18 -57 -78 -102 -78c-18 0 -56 14 -69 72c-2 8 -3 16 -3 24c0 55 35 125 50 154c19 38 50 79 47 116c-3 20 -16 30 -37 30c-39 0 -69 -41 -91 -64c-102 -111 -161 -233 -233 -397l-88 -201h-87l310 686h94l-36 -81 c42 52 85 85 124 85c47 0 83 -51 90 -85c2 -9 3 -18 3 -28c0 -74 -55 -158 -87 -237c-4 -10 -7 -21 -7 -30s3 -15 9 -15c25 0 47 21 61 35c54 58 119 167 140 200'], + 0x1D4C6: [413,280,707,80,627,'627 207c-70 -92 -185 -188 -294 -224l-133 -263h-95l155 286c-17 -11 -44 -20 -73 -20c-47 0 -84 33 -100 85c-5 18 -7 35 -7 53c0 56 22 109 46 146c41 68 113 140 212 143c32 0 82 -31 90 -82l31 75h94l-196 -384c102 44 180 127 259 215zM404 317c0 8 -1 16 -4 24 c-9 28 -36 41 -57 41c-18 0 -43 -10 -71 -41c-26 -31 -72 -111 -100 -178c-14 -32 -41 -90 -38 -113c4 -38 50 -35 55 -35c71 0 98 56 143 140c41 74 58 111 68 137c3 9 4 17 4 25'], + 0x1D4C7: [410,0,590,80,510,'510 213c-13 -13 -30 -26 -53 -27c-40 -1 -64 33 -81 78c-68 -24 -119 -57 -151 -136l-58 -128h-87l181 406h91l-79 -165c26 25 60 40 95 54c-1 6 -1 12 -1 18c0 45 22 97 63 97c21 0 35 -7 40 -24c2 -6 2 -11 2 -17c0 -44 -49 -84 -73 -96c4 -22 22 -54 47 -57 c11 0 33 1 41 20'], + 0x1D4C8: [506,14,500,80,420,'420 178c0 -21 -5 -41 -15 -64c-45 -98 -125 -128 -200 -128c-73 0 -111 29 -123 87c-1 5 -2 12 -2 18c0 44 23 106 70 106c28 0 55 -21 55 -53c0 -29 -19 -54 -44 -53c-23 1 -40 21 -42 47c0 8 1 14 2 21c-5 -4 -18 -34 -18 -66c0 -5 1 -11 2 -16c10 -48 45 -62 74 -62 c54 0 83 38 95 53c45 64 74 132 74 187c0 30 -22 70 -70 108l-45 -71l-20 15l48 75c-9 12 -13 29 -13 48c0 37 18 76 57 76c16 0 25 -15 25 -36c0 -26 -13 -61 -38 -87c50 -28 103 -100 119 -150c6 -20 9 -38 9 -55'], + 0x1D4C9: [606,14,479,80,399,'399 400h-104l-166 -348c-2 -6 -3 -13 -3 -18c0 -11 4 -19 13 -19c86 0 208 207 223 226l20 -19c-81 -117 -157 -236 -227 -236c-22 0 -54 12 -68 60c-5 15 -7 29 -7 44c0 31 11 61 26 95l102 215h-83v29h96l87 177h88l-86 -177h89v-29'], + 0x1D4CA: [406,14,721,80,641,'641 214c-44 -63 -98 -137 -146 -188c-15 -14 -43 -40 -73 -40c-25 0 -56 14 -75 64c-4 16 -7 31 -7 43c-28 -39 -80 -107 -156 -107c-35 0 -84 31 -98 75c-4 15 -6 29 -6 43c0 36 12 66 13 71l97 231h90l-124 -273c-1 -7 -21 -48 -21 -77c0 -5 0 -9 1 -13 c4 -14 23 -28 48 -28c51 -3 95 49 99 53c34 40 67 98 86 140l94 198h86l-105 -225c-20 -44 -59 -117 -52 -150c3 -10 10 -16 20 -16c30 -3 74 45 92 66c42 46 79 96 115 153'], + 0x1D4CB: [410,14,642,80,562,'562 216c-17 -29 -44 -37 -69 -37c-23 0 -42 10 -54 18c-55 -92 -116 -205 -236 -211c-49 -3 -101 26 -118 80c-4 11 -5 24 -5 37c0 29 7 59 17 76l100 227h87l-130 -284c-9 -15 -33 -61 -26 -79c12 -23 39 -28 64 -28c118 2 169 116 222 204c-16 10 -28 53 -28 95 c0 48 16 96 59 96c28 0 39 -24 39 -57c0 -41 -17 -95 -40 -132c18 -12 31 -12 37 -12c22 0 47 0 70 38'], + 0x1D4CC: [409,14,892,80,812,'812 214c-16 -28 -43 -37 -68 -37c-22 0 -43 10 -55 19c-22 -42 -44 -77 -80 -115c-44 -44 -84 -95 -160 -95c-59 0 -88 37 -105 78c-5 14 -3 29 -3 40c-27 -48 -85 -121 -156 -118c-19 0 -73 12 -96 70c-7 16 -9 32 -9 47c0 27 7 49 14 60l100 243h91l-142 -328 c-7 -15 -11 -27 -11 -37c0 -4 0 -7 2 -10c6 -12 21 -16 43 -16c78 -3 154 103 202 208l80 183h89l-136 -309c-2 -5 -15 -29 -15 -48c0 -5 1 -9 3 -12c9 -20 31 -22 45 -22c110 0 174 118 221 202c-17 11 -29 54 -29 96c0 48 16 96 59 96c28 0 39 -25 39 -58 c0 -41 -17 -94 -40 -131c17 -12 31 -12 37 -12c23 0 47 0 69 38'], + 0x1D4CD: [410,14,645,80,565,'565 164c-21 -51 -71 -178 -165 -178c-54 0 -93 29 -112 84c-5 13 -5 24 -5 35c-17 -41 -59 -119 -118 -119c-32 0 -85 12 -85 75c0 32 20 61 48 61c24 0 46 -21 46 -49c-1 -26 -20 -46 -43 -48c-6 0 -12 1 -17 2c4 -6 33 -16 51 -16c58 0 86 92 95 111 c16 34 71 192 71 228c0 5 -4 29 -33 29c-54 0 -91 -58 -124 -95l-21 18c40 48 79 105 145 105c26 0 60 -14 73 -42c6 -14 13 -40 17 -58c15 38 55 103 100 103c38 0 76 -21 76 -82c0 -33 -19 -62 -47 -62c-25 0 -47 22 -46 50c1 26 19 46 42 48c6 0 12 -1 18 -2 c-5 6 -7 25 -43 25c-48 0 -93 -131 -106 -168c-16 -44 -43 -110 -43 -154c0 -9 1 -16 4 -23c11 -32 38 -29 58 -29c73 0 116 111 138 163'], + 0x1D4CE: [406,308,754,80,674,'674 236c-71 -94 -163 -206 -275 -240c-58 -124 -136 -304 -242 -304c-42 0 -77 19 -77 76c0 75 103 154 232 227l39 78c-28 -29 -70 -64 -115 -64c-38 0 -71 24 -87 68c-6 15 -8 31 -8 46c0 34 11 67 24 96l83 187h92l-121 -248c-21 -40 -27 -67 -27 -87 c0 -5 0 -10 1 -15c2 -12 16 -16 26 -16c62 0 92 23 159 116c50 70 89 160 125 250h90l-180 -371c93 44 169 134 241 216zM300 -41c-102 -57 -189 -138 -189 -186c0 -46 28 -51 45 -51c24 0 35 12 47 32c32 53 63 135 97 205'], + 0x1D4CF: [413,14,663,80,583,'583 219c-23 -46 -95 -233 -189 -233c-35 0 -77 31 -117 54c-22 -32 -51 -54 -98 -54c-37 0 -78 21 -94 70c-3 10 -5 20 -5 29c0 46 38 75 78 75c38 0 86 -27 125 -53c20 39 43 90 57 133c-12 -4 -28 -6 -34 -6c-31 2 -52 22 -62 44c-4 26 16 66 16 85c0 8 -3 12 -10 12 c-15 0 -56 -50 -75 -74l-23 14c30 35 72 98 113 98c24 0 51 -18 60 -48c8 -34 -28 -60 -22 -90c2 -11 12 -13 20 -13c7 0 19 2 28 9c20 50 50 139 104 139c22 0 37 -21 37 -45c0 -7 -2 -15 -5 -23c-17 -35 -72 -69 -114 -95c-18 -50 -39 -108 -65 -154 c39 -25 78 -56 107 -56c47 0 69 50 149 199zM466 370c0 9 -6 16 -15 16c-25 0 -61 -93 -65 -103c25 21 48 41 69 63c7 8 11 17 11 24zM255 56c-40 22 -82 51 -121 51c-20 0 -28 -14 -28 -32c0 -7 2 -15 4 -22c10 -31 36 -38 59 -38c35 0 69 21 86 41'], + 0x1D4D0: [703,14,1265,80,1185,'1185 205c0 -107 -109 -219 -224 -219c-132 0 -206 60 -245 154c-6 19 -8 37 -8 54c0 43 17 80 36 117h-136c-73 -137 -151 -325 -354 -325c-71 0 -174 36 -174 123c0 38 34 70 68 70c36 0 67 -24 68 -59c1 -31 -14 -65 -56 -70c28 -22 63 -29 98 -29c17 0 41 2 72 15 c104 40 178 177 234 275l-153 -4v45l171 -5c49 102 97 207 170 288c54 60 87 68 116 68c57 0 92 -34 112 -95c5 -15 8 -30 8 -49c0 -24 -6 -54 -22 -95c-14 -39 -30 -70 -56 -117l48 2v-40l-71 2c-22 -41 -70 -116 -70 -180c0 -9 1 -19 4 -28c21 -71 85 -82 120 -82 c47 0 97 26 131 59c32 32 71 99 71 153c0 7 -1 14 -2 20c-6 30 -32 43 -55 43c-65 -2 -101 -55 -101 -142h-30c0 89 33 182 123 178c56 0 86 -36 101 -84c4 -14 6 -28 6 -43zM892 631c0 29 -5 36 -16 36c-64 0 -132 -109 -153 -142l-95 -178h133c50 98 131 204 131 284'], + 0x1D4D1: [705,14,1099,80,1019,'1019 465c0 -68 -60 -105 -123 -126c32 -26 54 -72 65 -102c10 -28 15 -54 15 -78c0 -106 -89 -173 -203 -173c-77 0 -138 40 -158 98c-5 16 -8 31 -8 46c0 72 65 116 131 149l25 -31c-65 -23 -119 -65 -119 -126c0 -12 2 -26 7 -40c7 -19 45 -51 76 -49 c89 3 120 138 126 178c1 8 1 16 1 23c0 26 -4 52 -12 74c-3 8 -5 14 -8 21c-17 -2 -33 -3 -48 -3c-47 0 -80 11 -96 46c-2 4 -3 8 -3 12c0 19 22 30 43 30c40 0 69 -12 111 -38c37 17 57 55 57 98c0 17 -3 34 -9 52c-14 38 -43 73 -85 98c-153 -166 -170 -439 -352 -581 c-52 -38 -111 -57 -190 -57c-90 0 -182 36 -182 123c0 38 34 70 68 70c36 0 67 -24 68 -59c1 -31 -14 -65 -56 -70c27 -22 54 -29 89 -29c64 0 134 81 164 139c71 150 121 312 245 424c25 21 55 43 86 62c-49 9 -117 16 -174 16c-220 0 -319 -134 -319 -231 c0 -53 36 -95 86 -95c77 0 100 68 100 117c0 40 -17 88 -42 121l27 11c24 -21 69 -93 69 -142c0 -68 -60 -141 -146 -141c-80 0 -130 58 -130 130c0 116 120 271 374 271c90 0 168 -12 215 -26c44 16 73 22 120 28l14 -36c-36 -3 -59 -8 -79 -16c65 -30 127 -74 151 -140 c6 -18 9 -34 9 -48zM802 361c-23 13 -52 24 -68 24c-7 0 -12 -2 -13 -6c9 -15 32 -20 54 -20c9 0 19 0 27 2'], + 0x1D4D2: [703,14,925,80,845,'845 600c0 -31 -17 -60 -35 -79c-91 -114 -267 -171 -445 -173c-30 -60 -73 -131 -73 -207c0 -21 3 -41 10 -62c16 -48 65 -58 92 -58c80 0 129 37 154 58c33 32 75 85 75 144c0 33 -26 50 -64 50c-84 0 -118 -75 -152 -142l-31 19c32 82 80 160 180 160 c57 -2 90 -39 105 -78c6 -19 9 -38 9 -56c0 -41 -14 -78 -36 -104c-43 -56 -123 -86 -207 -86c-124 0 -209 85 -231 159c-7 26 -11 52 -11 76c0 53 15 101 34 146c-100 27 -139 83 -139 140c0 89 74 174 200 174c24 0 49 -3 77 -10l-2 -33c-24 5 -46 7 -66 7 c-103 0 -152 -59 -152 -127c0 -49 29 -97 97 -121c94 163 231 306 463 306c46 0 122 -17 143 -75c3 -9 5 -19 5 -28zM807 609c0 6 0 10 -2 15c-12 31 -47 43 -87 43c-183 0 -258 -159 -330 -283c63 4 111 13 161 28c94 27 196 82 241 150c10 14 17 31 17 47'], + 0x1D4D3: [703,14,984,80,904,'904 625c-77 -10 -111 -33 -138 -51c59 -69 81 -159 79 -235c-1 -105 -51 -202 -111 -263c-51 -48 -118 -88 -217 -90c-51 0 -116 6 -171 18c-36 -12 -89 -18 -145 -18c-35 0 -101 2 -119 50c-1 5 -2 10 -2 14c0 40 66 46 87 46c59 0 146 -17 205 -32 c61 37 80 133 100 199c46 126 100 238 204 322c-40 34 -92 77 -192 77c-199 0 -272 -134 -272 -231c0 -53 35 -95 86 -95c76 0 99 68 99 117c0 40 -17 88 -41 121l27 11c23 -21 68 -93 68 -142c0 -68 -60 -141 -146 -141c-79 0 -130 58 -130 130c0 116 79 271 327 271 c98 0 184 -53 216 -82c48 20 85 38 153 38zM797 348c0 61 -19 119 -65 183c-22 -35 -39 -85 -53 -128c-54 -142 -113 -277 -240 -355c29 -6 65 -13 102 -15c132 7 216 117 244 228c8 30 12 59 12 87zM269 25c-39 10 -96 22 -123 24c-1 0 -8 2 -15 2c-8 0 -16 -2 -16 -12 c0 -16 29 -21 64 -21c30 0 65 4 90 7'], + 0x1D4D4: [703,14,848,80,768,'768 614c0 -9 -1 -20 -6 -31c-30 -62 -140 -113 -225 -135c-39 -9 -89 -18 -137 -22l2 -6c23 2 38 1 61 1c68 0 91 -34 91 -57c0 -21 -13 -35 -47 -36c-34 1 -78 14 -111 43c-52 -42 -138 -152 -147 -237c-1 -1 -2 -7 -2 -15c0 -5 0 -11 2 -18c31 -62 107 -81 160 -80 c84 4 132 35 150 48c40 26 90 70 90 126c0 11 -2 23 -6 35c-9 26 -32 41 -65 41c-86 -4 -130 -57 -164 -129l-34 18c36 82 91 146 191 146c68 0 105 -42 123 -87c5 -17 8 -33 8 -48c0 -7 -1 -13 -2 -19c-20 -111 -145 -168 -273 -166c-85 0 -170 34 -222 88 c-26 27 -44 59 -57 87c-7 22 -11 42 -11 61c0 110 110 171 214 193c-2 3 -5 7 -5 7c-171 10 -266 88 -266 162c0 75 73 109 152 109c32 0 64 -6 93 -16v-33c-33 8 -67 13 -97 13c-53 0 -94 -16 -94 -60c0 -100 105 -126 196 -137c-4 17 -6 32 -6 47c0 56 30 99 75 131 c60 42 154 65 242 65c73 0 99 -24 116 -46c1 -2 4 -7 7 -18c3 -6 4 -15 4 -25zM732 628c-4 31 -35 36 -48 37c-9 1 -17 2 -25 2c-62 0 -99 -40 -151 -84c-45 -38 -69 -77 -94 -119c35 3 78 13 110 23c61 15 223 70 208 141zM516 368c2 11 -22 20 -51 20c-9 0 -19 -1 -29 -3 c20 -12 48 -21 67 -22c7 1 12 1 13 5'], + 0x1D4D5: [713,14,1092,80,1012,'1012 700c-31 -90 -74 -117 -182 -117c-137 0 -284 27 -421 27c-114 0 -236 -52 -236 -161c0 -72 30 -139 99 -139s97 51 98 111c0 50 -3 80 -39 137l22 16c64 -77 73 -117 73 -172c0 -72 -57 -127 -144 -127c-80 0 -145 66 -145 179c0 180 196 249 364 249 c119 0 245 -21 366 -30c43 2 87 7 116 40zM860 365c0 -66 -70 -81 -122 -86c-6 -16 -15 -52 -18 -72l-64 -43c1 57 8 88 16 115h-44c-45 -105 -82 -212 -191 -261c-42 -23 -100 -32 -158 -32c-104 0 -199 36 -199 123c0 38 33 70 67 70c37 0 67 -24 68 -59 c1 -31 -14 -65 -56 -70c28 -22 64 -29 98 -29c104 0 116 45 179 158c15 25 27 58 39 90c-11 -3 -24 -5 -36 -10c-40 -17 -60 -42 -84 -80l-33 18c32 67 95 106 170 113c46 91 74 172 169 220c48 25 99 22 165 22l30 -34c-132 0 -168 -107 -210 -204h41c23 38 65 87 119 87 c20 0 54 -11 54 -36zM825 362c0 4 -3 6 -7 6c-17 0 -58 -28 -70 -49c31 7 66 18 76 36c2 2 1 4 1 7'], + 0x1D4D6: [703,14,920,80,840,'840 589c0 -52 -55 -113 -154 -165c-64 -32 -147 -61 -233 -71c-30 -3 -64 -2 -89 -2c-4 -12 -10 -32 -10 -53c0 -35 16 -72 86 -72s102 31 124 71c14 31 17 52 120 52h57l9 -27c-48 -18 -66 -76 -80 -109c-23 -57 -51 -119 -104 -164c-58 -48 -145 -63 -228 -63 c-66 0 -232 54 -232 134c0 37 34 69 68 69c36 0 67 -24 68 -59c1 -30 -13 -62 -53 -67c35 -22 72 -42 138 -42c54 0 91 33 116 64c29 38 50 81 69 116c-18 -7 -40 -11 -66 -10c-84 2 -140 43 -180 116c-12 21 -18 40 -22 58c-102 26 -164 87 -164 144c0 91 81 171 185 171 c17 0 35 -2 54 -7l-1 -33c-17 4 -33 5 -48 5c-86 0 -133 -56 -133 -125c0 -48 38 -97 104 -120c7 91 69 162 148 215c57 40 164 88 276 88c70 0 142 -23 169 -85c4 -9 6 -19 6 -29zM803 587c1 6 0 14 -3 21c-18 50 -87 61 -125 59c-78 -5 -137 -48 -169 -90 c-45 -60 -84 -126 -122 -190c107 0 209 31 296 78c47 28 115 71 123 122'], + 0x1D4D7: [719,14,1220,80,1140,'1140 188c0 -15 -2 -30 -7 -47c-31 -91 -122 -157 -244 -155c-89 0 -154 55 -185 128c-12 27 -17 55 -17 83c0 38 9 75 16 104l-80 -7c-51 -152 -140 -308 -343 -308c-79 0 -200 34 -200 121c0 37 34 69 67 69c37 0 68 -24 69 -59c1 -30 -13 -63 -53 -70 c35 -19 62 -26 98 -26c76 -1 116 46 133 68c36 49 65 118 91 181c-53 -9 -94 -33 -124 -47l-19 34c62 32 87 36 158 53c40 87 56 158 56 214c0 107 -57 159 -110 159c-164 0 -202 -124 -202 -221c0 -54 35 -96 86 -96c76 0 99 69 99 118c0 39 -17 88 -41 121l27 11 c23 -21 68 -94 68 -142c0 -68 -60 -141 -146 -141c-79 0 -130 58 -130 130c0 116 66 256 222 256c119 0 225 -116 225 -268c0 -38 -7 -78 -21 -119l81 7c54 145 213 364 329 364c44 0 66 -35 74 -50c8 -20 12 -40 12 -59c0 -49 -25 -92 -50 -128 c-49 -63 -142 -131 -238 -149c-25 -60 -68 -121 -68 -193c0 -14 1 -28 5 -43c18 -45 68 -60 97 -60c89 2 153 64 183 110c13 20 30 51 30 82c0 10 -2 19 -5 28c-7 19 -23 41 -53 41c-69 0 -105 -61 -135 -117l-30 18c29 80 81 134 162 136c40 0 85 -28 105 -83 c5 -15 8 -31 8 -48zM1083 620c0 9 -1 16 -4 23c-5 13 -13 19 -21 19c-27 -2 -48 -27 -69 -57c-37 -48 -92 -156 -131 -245c89 30 168 104 206 190c13 29 19 52 19 70'], + 0x1D4D8: [707,14,854,80,774,'774 678c-62 -49 -82 -111 -100 -170c-54 -153 -61 -339 -189 -445c-60 -49 -121 -77 -210 -77c-106 0 -195 35 -195 121c0 38 34 70 68 70c36 0 67 -24 68 -59c1 -31 -14 -65 -56 -70c29 -21 63 -27 92 -27c110 -3 162 92 195 177c23 65 37 136 86 227 c31 65 76 126 118 181c-35 -18 -78 -32 -120 -30c-70 2 -133 34 -219 34c-88 0 -155 -81 -155 -166c0 -65 48 -139 128 -139c82 0 116 75 116 156c0 26 -3 52 -10 77h30c21 -39 30 -78 30 -113c0 -90 -63 -158 -152 -158c-131 0 -189 81 -189 179c0 101 83 200 172 237 c30 12 58 18 92 18c90 0 172 -34 262 -34c49 0 81 19 107 40'], + 0x1D4D9: [701,253,912,80,832,'832 660c-167 -151 -169 -397 -281 -572c93 18 184 88 184 182c0 16 -3 32 -8 49c-5 13 -10 23 -22 49h27c19 -23 31 -47 41 -70c8 -20 12 -39 12 -58c0 -108 -132 -184 -254 -190c-23 -47 -56 -97 -90 -139c-31 -42 -136 -162 -246 -164c-63 0 -97 40 -111 87 c-3 9 -4 18 -4 26c0 35 20 64 27 72c68 78 187 106 293 139c33 83 64 164 110 244c46 88 111 175 169 246c-7 -1 -15 -1 -24 -1c-38 0 -92 6 -134 16c-70 15 -132 34 -218 34c-88 0 -155 -81 -155 -166c0 -65 47 -139 128 -139c82 0 115 75 115 155c0 26 -3 53 -10 78h30 c21 -40 30 -78 30 -113c0 -91 -62 -158 -151 -158c-131 0 -189 81 -189 179c0 101 83 200 172 237c30 12 58 18 92 18c90 0 171 -21 263 -34c20 -3 48 -6 76 -6c36 0 72 6 93 28zM388 27c-49 -15 -103 -30 -152 -51c-44 -23 -120 -54 -120 -113c0 -10 2 -19 6 -30 c16 -47 54 -51 64 -51c46 0 78 37 88 50c50 59 82 131 114 195'], + 0x1D4DA: [709,14,1290,80,1210,'1210 580c0 -37 -34 -69 -68 -69c-36 0 -67 24 -68 59c-1 32 15 66 58 70c-20 23 -38 28 -72 28c-75 0 -90 -111 -116 -171c-30 -72 -66 -150 -144 -184c15 -16 26 -33 35 -53c4 -13 7 -27 7 -43c0 -8 -1 -16 -2 -24c-8 -30 -61 -100 -49 -128c13 -31 49 -44 85 -44 c92 0 158 66 182 127c12 28 25 52 25 76c0 9 -1 17 -5 26c-7 21 -29 38 -55 38c-54 0 -105 -68 -111 -141l-32 8c1 84 55 167 139 167c45 0 86 -41 98 -81c7 -23 11 -45 11 -66c0 -118 -114 -187 -235 -189c-96 -2 -185 55 -212 127c-3 9 -5 18 -5 27c0 48 42 94 66 155 c-14 -3 -28 -4 -42 -5c-37 1 -64 14 -80 26c-60 -163 -157 -330 -366 -330c-71 0 -174 36 -174 123c0 38 33 70 67 70c36 0 67 -24 68 -59c1 -31 -14 -65 -56 -70c28 -22 64 -29 98 -29c65 0 105 46 128 95c26 48 55 128 79 179c45 95 81 184 169 288 c-37 -10 -78 -17 -121 -17c-70 0 -132 44 -218 44c-88 0 -155 -81 -155 -166c0 -65 47 -139 128 -139c82 0 115 75 115 155c0 26 -3 53 -10 78h30c21 -40 31 -78 31 -113c0 -91 -63 -158 -152 -158c-131 0 -189 81 -189 179c0 101 83 200 172 237c30 12 58 18 91 18 c91 0 172 -43 263 -43c47 0 102 15 139 51l28 -32c-56 -40 -88 -96 -105 -143c-18 -47 -32 -117 -40 -147c49 -1 88 -16 120 -40c67 41 84 137 119 218c33 77 85 140 175 140c65 0 156 -38 156 -125zM723 333c-25 10 -52 21 -74 21c-8 0 -14 -5 -14 -5c0 -9 27 -19 58 -19 c10 0 20 1 30 3'], + 0x1D4DB: [730,14,1062,80,982,'982 632c0 -47 -30 -94 -45 -114c-67 -88 -167 -163 -290 -185c-33 -112 -90 -209 -180 -276c72 -20 155 -37 199 -36c94 4 176 73 201 104c24 30 36 59 36 84c0 8 -2 16 -4 23c-17 41 -52 39 -64 39c-69 -2 -95 -53 -125 -92l-30 18c33 64 74 110 142 110 c60 -2 111 -39 131 -97c4 -13 9 -30 9 -51c0 -26 -8 -58 -36 -89c-45 -49 -125 -80 -227 -84h-12c-70 0 -155 17 -255 46c-52 -19 -116 -46 -196 -46c-45 0 -129 9 -152 71c-3 7 -4 13 -4 18c0 33 39 45 79 46c5 0 11 1 18 1c58 0 139 -17 218 -43c34 46 46 88 62 143 c8 22 22 71 33 100c-133 8 -320 69 -320 216c0 109 93 162 199 162c99 0 135 -15 206 -44l-12 -35c-88 40 -107 37 -178 37c-77 0 -153 -32 -153 -108c0 -111 125 -189 270 -193c42 133 123 251 236 327c29 22 82 48 136 46c72 -2 87 -37 96 -51c9 -15 12 -31 12 -47z M943 634c0 34 -18 60 -52 60c-33 0 -61 -10 -92 -44c-58 -62 -105 -185 -140 -275c150 47 247 153 274 212c7 16 10 32 10 47zM363 53c-61 19 -129 34 -185 34c-41 0 -65 -5 -58 -27c11 -39 84 -39 104 -39c52 2 98 13 139 32'], + 0x1D4DC: [703,15,1463,80,1383,'1383 188c0 -42 -12 -85 -30 -114c-43 -60 -110 -86 -199 -88c-110 -4 -173 66 -199 136c-10 29 -14 56 -14 81c0 49 15 92 33 140c51 117 122 222 185 315c-57 -23 -100 -78 -133 -124c-90 -135 -142 -296 -224 -436c-15 -28 -64 -112 -121 -112c-52 0 -83 34 -104 78 c-6 20 -8 43 -8 61v13c4 81 67 190 119 287l115 228c-35 -22 -63 -60 -94 -101c-115 -155 -184 -346 -310 -494c-35 -44 -87 -73 -145 -73c-71 0 -174 36 -174 123c0 38 33 70 67 70c37 0 67 -24 68 -59c1 -31 -14 -65 -56 -70c28 -22 64 -28 98 -28c36 0 71 25 106 64 c51 59 107 161 152 237c47 85 101 174 158 253c30 40 94 129 153 128c30 0 48 -19 58 -46c7 -20 6 -41 7 -57c-5 -77 -44 -168 -79 -243c-53 -109 -109 -201 -138 -293c-5 -15 -5 -26 -4 -36c3 -4 7 -7 7 -7c38 0 77 72 111 135c72 147 135 304 230 435 c37 47 91 110 164 112c33 0 49 -13 59 -39c3 -8 4 -17 4 -26c0 -7 -1 -13 -2 -20c-13 -69 -59 -155 -86 -210c-20 -50 -107 -205 -107 -301c0 -13 1 -25 5 -36c9 -26 30 -48 77 -50c84 -1 145 68 176 125c9 22 20 49 20 77c0 11 -1 22 -6 33c-4 12 -17 32 -48 32 c-69 0 -99 -79 -108 -130l-31 3c1 85 46 154 127 161c23 2 75 -6 105 -58c11 -22 16 -48 16 -76'], + 0x1D4DD: [718,26,1378,80,1298,'1298 579c0 -37 -34 -69 -67 -69c-37 0 -68 24 -69 59c0 33 13 67 69 69c-7 21 -23 29 -57 29c-29 0 -97 -17 -143 -95c-87 -149 -126 -310 -213 -454c-31 -50 -70 -106 -128 -144l-30 22c20 32 31 54 31 82c0 6 -1 13 -2 20c-10 64 -41 124 -77 266 c-13 54 -18 87 -18 131c0 25 2 54 4 93c-109 -143 -123 -363 -239 -524c-32 -43 -84 -78 -133 -78c-55 0 -146 36 -146 123c0 38 34 70 68 70c36 0 67 -24 68 -59c1 -32 -15 -67 -60 -71c13 -16 35 -28 64 -28c38 0 74 31 106 68c106 137 125 332 211 480 c39 60 76 111 150 149l19 -19c-10 -23 -14 -45 -14 -66c0 -71 48 -137 74 -253c17 -71 22 -110 22 -163l-2 -68c62 103 84 184 140 311c45 102 108 243 259 243c55 0 113 -39 113 -124'], + 0x1D4DE: [703,17,899,80,819,'819 513c0 -8 -1 -15 -2 -25l-38 -2c0 11 2 20 2 30c0 12 -2 24 -8 41c-29 81 -132 110 -201 110c-107 0 -175 -73 -226 -140c-66 -80 -115 -179 -141 -285c-4 -23 -10 -51 -10 -78c0 -22 4 -43 13 -62c28 -62 86 -82 146 -81c157 0 214 80 272 189c26 40 51 90 64 138 c4 19 8 42 8 66c0 20 -3 41 -10 60c-17 47 -61 62 -100 62c-93 0 -149 -65 -193 -149c-24 -45 -27 -66 -34 -129l-34 4c4 64 19 117 44 162c40 73 116 148 220 148c75 -2 140 -61 163 -129c11 -32 15 -63 15 -93c0 -128 -85 -242 -189 -303c-72 -43 -162 -64 -231 -64 c-130 0 -209 95 -252 198c-12 37 -17 74 -17 108c0 136 83 247 177 317c84 59 189 97 311 97c85 0 204 -44 240 -140c8 -24 11 -37 11 -50'], + 0x1D4DF: [706,14,1018,80,938,'938 450c0 -85 -78 -134 -135 -143c-26 -3 -48 -5 -74 -5l-22 37c28 1 52 2 63 4c55 7 97 51 97 114c0 16 -3 34 -9 52c-14 43 -45 84 -96 108c-39 -38 -55 -78 -69 -134c-51 -218 -116 -497 -402 -497c-114 0 -211 37 -211 123c0 38 34 70 68 70c36 0 67 -24 68 -59 c1 -31 -14 -66 -56 -70c27 -22 55 -29 106 -29c158 0 187 158 227 272c52 132 108 256 214 347c-61 20 -126 24 -181 24h-22c-221 0 -319 -133 -319 -230c0 -54 35 -96 86 -96c77 0 99 69 99 118c0 39 -17 88 -41 121l27 11c23 -21 68 -94 68 -142c0 -68 -60 -141 -146 -141 c-79 0 -129 58 -129 130c0 115 119 271 373 271c90 0 139 -9 223 -42c23 16 49 28 89 36l17 -35c-17 -5 -39 -15 -58 -23c58 -32 113 -76 135 -136c7 -20 10 -39 10 -56'], + 0x1D4E0: [703,152,899,80,819,'819 513c0 -8 -1 -15 -2 -25l-38 -2c0 11 2 20 2 30c0 12 -2 24 -8 41c-29 81 -132 110 -201 110c-107 0 -175 -73 -226 -140c-66 -80 -115 -179 -141 -285c-4 -23 -10 -51 -10 -78c0 -22 4 -43 13 -62c28 -62 86 -82 146 -81c157 0 214 80 272 189c26 40 51 90 64 138 c4 19 8 42 8 66c0 20 -3 41 -10 60c-17 47 -61 62 -100 62c-93 0 -149 -65 -193 -149c-24 -45 -27 -66 -34 -129l-34 4c4 64 19 117 44 162c40 73 116 148 220 148c75 -2 140 -61 163 -129c11 -32 15 -63 15 -93c0 -128 -85 -242 -189 -303c-45 -27 -95 -45 -146 -54 c56 -23 113 -52 173 -54c40 0 63 44 87 86l25 -36c-24 -65 -55 -143 -150 -141c-81 2 -218 100 -266 100c-31 0 -48 -27 -63 -60l-41 15c19 45 41 77 69 94c-78 35 -137 106 -171 184c-12 37 -17 74 -17 108c0 136 83 247 177 317c84 59 189 97 311 97 c85 0 204 -44 240 -140c8 -24 11 -37 11 -50'], + 0x1D4E1: [711,14,1196,80,1116,'1116 162c0 -99 -84 -173 -185 -176c-13 0 -90 1 -145 56c-24 25 -39 51 -51 76c-5 16 -7 31 -7 46c0 29 8 56 22 80c17 28 42 62 37 95c-36 -1 -89 10 -114 32c-47 -124 -88 -262 -207 -332c-53 -34 -114 -53 -200 -53c-102 0 -186 35 -186 122c0 38 34 70 67 70 c37 0 68 -24 69 -59c1 -32 -15 -68 -61 -71c13 -20 68 -27 103 -27c91 0 136 66 165 130c60 135 110 276 208 385c37 44 97 85 131 106c-36 11 -133 22 -192 22c-219 0 -322 -133 -322 -230c0 -54 36 -96 86 -96c77 0 99 69 99 118c0 39 -16 88 -41 121l27 11 c24 -21 69 -94 69 -142c0 -68 -60 -141 -146 -141c-80 0 -130 58 -130 130c0 115 120 271 374 271c61 0 172 -11 230 -34c19 11 39 24 92 39l-13 -38c-13 -7 -26 -13 -38 -20c73 -30 119 -72 147 -138c7 -18 10 -35 10 -51c0 -77 -82 -116 -161 -123c14 -17 23 -34 28 -48 c29 -78 -42 -123 -42 -190c0 -12 3 -25 8 -39c12 -25 32 -43 66 -43c41 0 76 33 92 56c43 51 64 99 64 134c0 8 -1 16 -4 23c-5 16 -17 22 -35 22c-40 2 -59 -40 -81 -80l-29 21c21 49 45 96 96 96c50 0 74 -27 88 -65c8 -23 12 -45 12 -66zM899 494c0 14 -3 29 -9 44 c-14 37 -42 68 -84 89c-40 -30 -96 -134 -114 -193l6 -1c46 -8 86 -27 113 -52c52 18 88 61 88 113zM762 376c-18 13 -45 23 -60 23c-5 0 -9 -1 -11 -4c12 -16 46 -17 71 -19'], + 0x1D4E2: [703,15,1096,80,1016,'1016 559c0 -238 -282 -255 -371 -255c-57 -161 -143 -316 -355 -319c-114 0 -210 37 -210 123c0 38 34 70 67 70c37 0 68 -24 69 -59c0 -32 -14 -66 -58 -70c22 -22 57 -28 108 -28c155 0 179 171 227 286c-139 4 -227 105 -225 205c2 76 56 161 165 161 c66 0 111 -22 147 -45l-6 -34c-48 33 -77 42 -142 42c-76 0 -117 -58 -118 -109c-3 -81 88 -169 192 -171c37 93 95 173 166 242c45 45 126 105 207 105c93 0 137 -71 137 -144zM978 557c0 58 -33 110 -82 110c-115 0 -143 -107 -176 -175c-4 -10 -33 -80 -60 -135 c94 1 318 17 318 200'], + 0x1D4E3: [713,14,1112,80,1032,'1032 700c-32 -90 -75 -117 -182 -117c-138 0 -285 27 -422 27c-114 0 -245 -52 -245 -161c0 -72 39 -139 109 -139c68 0 97 51 98 111c0 50 -4 80 -39 137l21 16c65 -77 74 -117 74 -172c0 -72 -57 -127 -145 -127c-79 0 -154 66 -154 179c0 180 205 249 374 249 c118 0 244 -21 365 -30c43 2 87 7 116 40zM801 509c-113 0 -106 -90 -157 -202c-59 -127 -86 -235 -207 -289c-42 -23 -100 -32 -157 -32c-104 0 -200 36 -200 123c0 38 34 70 68 70c36 0 67 -24 68 -59c1 -31 -14 -65 -56 -70c28 -22 63 -29 98 -29c104 0 116 45 179 158 c17 30 41 99 54 128c50 107 49 172 115 214c45 29 99 23 165 23'], + 0x1D4E4: [703,14,1162,80,1082,'1082 170c0 -111 -112 -184 -222 -184c-14 0 -135 7 -180 125c-4 13 -7 26 -10 39c-12 -21 -28 -44 -43 -67c-35 -46 -82 -99 -154 -97c-68 2 -135 47 -159 106c-9 24 -12 47 -12 67c0 40 12 71 16 81c24 69 74 136 112 203c19 29 42 72 42 111c0 11 -2 21 -5 30 c-25 64 -82 83 -152 83c-134 0 -199 -135 -199 -232c0 -54 36 -96 86 -96c77 0 99 68 99 118c0 39 -17 88 -41 121l27 11c24 -21 69 -94 69 -142c0 -68 -60 -141 -146 -141c-80 0 -130 58 -130 130c0 115 66 267 237 267c89 0 159 -20 211 -85c25 -29 42 -56 50 -81 c7 -21 10 -39 10 -55c0 -35 -14 -58 -20 -70c-27 -72 -113 -187 -150 -269c-9 -23 -14 -43 -14 -59c0 -11 2 -21 6 -28c9 -23 32 -33 60 -35c59 -3 109 68 130 95c32 48 71 124 83 141l206 389h140l-243 -459c-15 -29 -23 -53 -23 -74c0 -20 7 -38 20 -54 c25 -32 53 -38 68 -38c68 -1 115 58 141 102c14 23 29 62 29 94c0 11 -1 20 -5 28c-1 2 -8 30 -40 30c-62 -4 -85 -77 -105 -130l-37 11c23 68 61 149 134 154c17 0 90 -11 110 -105c2 -12 4 -24 4 -35'], + 0x1D4E5: [701,16,1240,80,1160,'1160 572c0 -37 -33 -69 -67 -69c-36 0 -67 23 -68 59c-1 31 15 68 62 71c-6 12 -26 27 -66 27c-62 0 -80 -47 -90 -64c-106 -210 -168 -455 -396 -565c-68 -30 -134 -43 -223 -47l-32 33c79 28 89 26 119 81c8 18 16 40 23 66c50 153 99 305 199 415 c-34 -6 -93 -9 -120 -9c-56 0 -133 40 -219 40c-88 0 -155 -81 -155 -166c0 -65 47 -139 128 -139c82 0 116 74 116 154c0 27 -4 54 -11 79h30c21 -40 31 -78 31 -113c0 -91 -63 -158 -152 -158c-131 0 -189 81 -189 179c0 101 83 200 172 237c30 12 58 18 92 18 c90 0 169 -66 285 -66c21 0 93 29 133 63l25 -32c-126 -84 -128 -258 -174 -384c-36 -99 -90 -184 -176 -240c206 47 306 246 384 414c30 64 61 142 92 182c42 54 85 54 104 54c86 0 143 -47 143 -120'], + 0x1D4E6: [701,16,1556,80,1476,'1476 572c0 -37 -34 -69 -67 -69c-37 0 -68 23 -69 59c-1 31 15 67 61 71c-8 11 -39 24 -64 24c-83 0 -117 -115 -144 -176c-74 -162 -119 -327 -278 -422c-59 -37 -123 -66 -214 -75l-18 31c72 52 87 152 111 229c38 135 89 267 168 367c-166 -120 -209 -347 -343 -499 c-62 -69 -134 -113 -256 -128l-12 32c90 71 96 199 130 301c35 96 80 185 143 260c-29 -6 -81 -9 -124 -9c-78 0 -133 42 -219 42c-87 0 -155 -81 -155 -166c0 -65 48 -139 128 -139c83 0 116 75 116 155c0 26 -3 53 -10 78h30c21 -40 30 -78 30 -113 c0 -91 -62 -158 -152 -158c-130 0 -188 81 -188 179c0 101 83 200 172 237c29 12 58 18 91 18c91 0 215 -53 280 -57c46 -2 98 23 144 57l14 -38c-112 -80 -103 -178 -135 -284c-36 -125 -90 -249 -182 -332c138 50 199 201 262 321c72 132 151 274 321 327l20 -29 c-40 -48 -58 -139 -72 -203c-21 -84 -42 -170 -75 -245c-37 -79 -78 -127 -126 -170c107 34 183 101 237 187c47 72 82 156 116 238c32 84 97 219 186 219c86 0 143 -47 143 -120'], + 0x1D4E7: [703,14,1090,80,1010,'1010 556c0 -37 -33 -69 -67 -69c-37 0 -67 23 -68 59c-1 33 17 67 73 70c-7 20 -27 28 -62 28c-83 0 -152 -94 -208 -216c-10 -22 -29 -84 -45 -136c-16 -50 -31 -88 -31 -130c0 -18 3 -36 9 -56c2 -8 5 -25 26 -50c24 -29 57 -35 86 -35c75 0 112 71 127 121 c7 18 14 41 14 64c0 12 -2 24 -6 35c-6 16 -23 41 -55 41c-49 0 -79 -49 -83 -114l-38 18c9 67 40 131 111 131c81 0 117 -90 120 -97c8 -22 12 -43 12 -63c0 -98 -85 -171 -183 -171c-87 0 -143 33 -189 105l-25 48c-56 -90 -165 -153 -302 -153c-55 0 -146 36 -146 123 c0 38 34 70 68 70c36 0 67 -24 68 -59c1 -32 -15 -67 -60 -71c13 -16 36 -28 65 -28c75 0 135 66 148 80c45 47 92 118 130 218c25 64 46 121 46 180c0 28 -4 56 -15 85c-16 46 -63 83 -109 83c-154 0 -214 -111 -214 -208c0 -53 35 -114 86 -114c77 0 99 68 99 118 c0 39 -16 78 -41 111l27 11c24 -21 69 -84 69 -133c0 -68 -60 -141 -146 -141c-80 0 -130 77 -130 149c0 116 64 243 243 243c91 0 199 -58 238 -163c51 60 128 139 244 140c63 0 114 -49 114 -124'], + 0x1D4E8: [702,263,1130,80,1050,'1050 663l-328 -624c110 19 217 85 217 178c0 9 -1 19 -3 29c-5 19 -13 29 -21 45l28 14c20 -29 23 -30 34 -55c8 -22 12 -44 12 -65c0 -52 -24 -98 -74 -127c-65 -40 -158 -55 -206 -59c-53 -88 -101 -141 -129 -168c-80 -73 -171 -94 -213 -94c-26 0 -104 11 -131 79 c-4 12 -6 24 -6 34c0 60 61 98 103 116c72 31 166 47 235 55l22 40c-30 -24 -60 -22 -115 -22c-70 0 -125 54 -148 111c-6 20 -8 38 -8 56c0 74 46 129 79 186c24 40 75 116 75 166c0 6 -1 11 -2 16c-16 52 -36 92 -146 92c-134 0 -208 -126 -208 -223c0 -53 35 -95 86 -95 c76 0 99 68 99 117c0 40 -17 79 -41 112l27 11c23 -21 68 -84 68 -133c0 -68 -60 -141 -146 -141c-79 0 -130 58 -130 130c0 116 76 258 247 258c95 0 210 -41 254 -162c5 -13 7 -26 7 -39c0 -60 -43 -123 -66 -171c-32 -65 -67 -100 -95 -166c-7 -20 -15 -36 -15 -53 c0 -4 0 -8 1 -12c8 -13 24 -22 56 -24c104 -8 188 118 207 153l226 435h148zM548 -20c-83 -5 -135 -16 -210 -54c-24 -14 -71 -41 -71 -82c0 -9 2 -17 6 -27c10 -25 38 -44 77 -44c52 0 79 23 100 48c43 49 67 104 98 159'], + 0x1D4E9: [703,14,1093,80,1013,'1013 190c0 -41 -15 -84 -35 -114c-38 -52 -99 -88 -185 -90c-85 -4 -235 78 -343 119c-48 -62 -122 -121 -212 -119c-75 0 -124 36 -147 90c-8 17 -11 33 -11 46c0 85 124 112 203 112c57 0 119 -12 170 -27c24 71 132 285 167 337c-9 -1 -23 -1 -29 -1 c-58 0 -218 82 -289 78c-40 0 -70 -32 -86 -57c-20 -29 -30 -54 -30 -87c0 -16 2 -34 8 -55c20 -43 47 -71 94 -75c80 6 107 73 107 141c0 16 -1 32 -4 48l36 1c10 -27 16 -54 16 -80c0 -75 -45 -141 -141 -148c-67 4 -118 48 -146 112c-6 22 -8 44 -8 65 c0 126 99 217 239 217c85 0 195 -53 290 -82c22 27 49 50 79 69c11 7 27 13 41 13c23 0 46 -10 54 -34c1 -4 2 -9 2 -13c0 -16 -8 -32 -16 -40c-32 -30 -96 -51 -147 -61c-42 -57 -142 -247 -191 -362c159 -59 232 -114 345 -114c68 0 135 42 135 110c0 14 -3 28 -8 43 c-11 31 -42 54 -82 54c-69 0 -85 -48 -105 -107l-38 16c20 73 56 126 136 126c55 0 104 -36 122 -80c6 -16 9 -33 9 -51zM819 662c-5 4 -9 5 -14 5c-36 0 -59 -29 -79 -53c45 5 105 32 93 48zM411 121c-62 24 -130 43 -186 43s-103 -21 -103 -61c0 -8 1 -15 5 -24 c16 -40 60 -58 100 -58c78 0 140 44 184 100'], + 0x1D4EA: [425,14,762,80,682,'682 228c-59 -102 -114 -237 -241 -242c-65 0 -108 35 -117 99c-23 -42 -65 -99 -117 -99c-42 0 -90 30 -117 117c-7 27 -10 53 -10 77c0 144 110 245 242 245c28 0 70 -16 89 -50l17 36h165l-171 -357c-4 -10 -9 -20 -9 -26c0 -4 3 -7 10 -7c80 0 137 76 173 132 c28 47 38 68 49 93zM386 343c1 7 2 11 0 18c-5 16 -19 22 -33 22c-20 0 -33 -15 -50 -44c-22 -38 -112 -241 -119 -255c-6 -15 -11 -25 -11 -35c0 -4 1 -8 3 -13c4 -9 19 -15 24 -15c47 2 86 73 122 157c50 113 60 150 64 165'], + 0x1D4EB: [735,14,696,80,616,'616 241c-6 -72 -57 -105 -108 -105c-19 0 -31 6 -48 17c-47 -75 -108 -167 -214 -167c-77 0 -136 58 -158 144c-6 23 -8 46 -8 67c0 82 33 153 49 187c47 104 173 351 313 351c80 0 116 -28 116 -96c0 -130 -200 -291 -311 -384c-34 -91 -33 -85 -58 -177 c-2 -6 -3 -12 -3 -18s1 -12 5 -19c11 -16 34 -20 51 -20c87 0 146 86 183 151c-20 14 -32 48 -32 84v13c0 59 15 108 80 108c26 0 49 -25 49 -57c0 -48 -13 -98 -39 -138c8 -6 19 -9 25 -9c38 0 66 20 76 68h32zM522 636c0 40 -13 63 -47 63c-44 0 -72 -52 -127 -178 c-38 -88 -37 -90 -77 -200c81 77 251 221 251 315'], + 0x1D4EC: [425,14,574,80,494,'494 246c-13 -79 -52 -129 -82 -163c-30 -36 -107 -100 -177 -97c-62 0 -113 45 -139 105c-11 27 -16 54 -16 81c0 77 40 147 74 183c59 62 118 70 148 70c50 0 134 -18 134 -103c0 -37 -24 -61 -59 -61c-32 0 -50 29 -52 54c1 32 20 60 56 57c8 0 11 -1 17 -4 c-9 18 -28 23 -38 23c-24 0 -47 -22 -54 -30c-18 -22 -109 -249 -120 -293c-2 -5 -3 -9 -3 -14s1 -11 2 -16c10 -17 35 -17 41 -17c71 2 136 71 151 85c29 29 72 79 87 152'], + 0x1D4ED: [720,14,851,80,771,'771 720l-339 -661c-3 -6 -4 -11 -4 -17c0 -12 8 -21 23 -21c109 8 166 128 209 222l38 -11c-51 -111 -113 -246 -239 -246c-27 0 -65 4 -92 35c-14 16 -24 51 -32 72c-26 -44 -69 -113 -123 -107c-38 2 -95 22 -124 122c-5 23 -8 45 -8 67c0 143 114 250 244 250 c19 0 76 -4 104 -49l182 344h161zM410 338c0 4 -1 9 -2 13c-7 22 -27 32 -34 32c-14 0 -35 -7 -47 -32l-142 -285c-3 -5 -5 -12 -5 -19c0 -4 1 -7 2 -11c6 -14 19 -17 32 -17c39 -3 93 94 113 132c20 37 60 117 79 167c3 7 4 14 4 20'], + 0x1D4EE: [425,14,581,80,501,'501 243c-27 -69 -51 -111 -88 -154c-41 -51 -112 -106 -192 -103c-77 0 -120 66 -134 127c-5 21 -7 41 -7 60c0 81 40 148 94 191c53 47 102 61 142 61c63 0 94 -42 101 -62c11 -21 15 -40 15 -58c0 -54 -45 -93 -98 -110c-41 -11 -77 -16 -105 -16 c-16 -36 -45 -92 -45 -127c0 -19 8 -31 31 -31c57 -2 103 29 141 60c41 39 78 93 104 162h41zM366 330c0 11 -2 23 -6 35c-5 17 -12 26 -17 26c-21 0 -36 -33 -48 -62l-52 -115c57 9 123 50 123 116'], + 0x1D4EF: [735,280,884,80,804,'804 639c0 -130 -206 -291 -316 -384l-48 -107c74 5 118 0 195 82l25 -28c-61 -56 -113 -92 -207 -92c-9 0 -19 0 -29 1l-180 -391h-164l205 430c-34 16 -88 56 -100 86l17 33c43 -58 51 -67 95 -90l98 200c84 161 153 356 293 356c80 0 116 -28 116 -96zM768 636 c0 40 -13 63 -46 63c-44 0 -73 -52 -128 -178c-38 -88 -37 -90 -77 -200c81 77 251 221 251 315'], + 0x1D4F0: [425,309,817,80,737,'737 238c-56 -108 -170 -262 -285 -290c0 0 -71 -127 -104 -161c-32 -33 -92 -96 -176 -96c-64 0 -92 25 -92 82c0 85 158 151 258 195l40 73c-29 -30 -49 -55 -90 -55c-33 0 -96 14 -127 114c-8 27 -12 54 -12 79c0 140 119 243 239 246c41 0 78 -13 107 -59l23 45h156 l-205 -419c91 41 189 171 237 264zM476 321c1 7 1 12 -2 20c-8 25 -31 42 -45 42c-24 0 -36 -22 -57 -54l-116 -252c-4 -9 -7 -16 -7 -23c0 -5 2 -10 4 -16c5 -11 21 -17 25 -17c66 8 105 88 142 169c23 49 53 113 56 131zM317 -79c-134 -61 -200 -114 -200 -154 c0 -26 14 -44 48 -44c44 0 133 158 152 198'], + 0x1D4F1: [735,14,803,80,723,'723 233c-29 -49 -54 -97 -79 -134c-26 -40 -79 -113 -136 -113c-54 0 -117 33 -117 122c0 26 0 65 53 154c5 8 8 19 8 28s-3 17 -11 17c-21 -3 -62 -33 -86 -70c-78 -111 -63 -111 -78 -137l-38 -100h-159s123 341 143 384c48 104 162 351 302 351c80 0 116 -28 116 -96 c0 -130 -163 -190 -273 -283l-44 -96c34 46 84 81 115 81c70 0 125 -49 126 -127v-12c0 -30 -5 -62 -34 -106c-6 -10 -23 -31 -30 -46c-3 -7 -4 -13 -4 -19s2 -10 8 -10c44 0 89 73 110 101c25 34 52 85 78 132zM605 636c0 40 -13 63 -47 63c-74 0 -86 -71 -167 -277 c81 77 214 120 214 214'], + 0x1D4F2: [701,14,501,80,421,'421 229c-45 -73 -52 -88 -92 -142c-41 -56 -70 -99 -136 -101c-26 0 -79 16 -104 87c-7 18 -9 35 -9 51c0 29 8 52 12 61l104 226h152l-162 -352c-7 -15 -13 -26 -8 -33c3 -4 7 -5 11 -5c48 0 101 80 118 101c36 52 43 64 80 120zM390 619c0 -46 -37 -83 -83 -83 s-82 37 -82 83c0 45 36 82 82 82s83 -37 83 -82'], + 0x1D4F3: [701,291,811,80,731,'704 619c0 -46 -38 -83 -83 -83c-46 0 -83 37 -83 83c0 45 37 82 83 82c45 0 83 -37 83 -82zM731 238c-56 -108 -171 -262 -285 -290c0 0 -53 -104 -85 -142c-35 -42 -128 -97 -190 -97c-63 0 -91 26 -91 83c0 85 140 132 240 176l201 443h149l-207 -419 c90 41 190 178 238 272zM299 -79c-134 -61 -182 -95 -182 -135c0 -26 14 -44 48 -44c44 0 115 133 134 179'], + 0x1D4F4: [735,14,800,80,720,'720 181c-74 -117 -98 -195 -231 -195c-46 0 -97 20 -121 72c-2 8 -3 17 -3 25c0 31 14 59 23 73c4 10 4 17 4 23c-5 11 -14 14 -27 14h-55l-71 -193h-159l155 384c57 131 154 351 294 351c80 0 116 -28 116 -96c0 -101 -165 -231 -297 -351c-35 -91 -24 -60 -24 -60h25 c84 0 129 62 172 126c19 31 61 70 105 70c76 0 91 -55 91 -103c0 -37 -25 -61 -60 -61c-32 0 -50 29 -51 54c0 32 23 60 59 57c8 0 8 -1 14 -4c-10 13 -1 23 -40 23c-23 0 -59 -31 -82 -67c-35 -52 -71 -96 -97 -114c28 -15 51 -45 61 -77c1 -6 2 -11 2 -16 c0 -35 -27 -61 -31 -90c2 -4 7 -5 14 -5c93 8 116 79 180 182zM609 636c0 40 -13 63 -46 63c-44 0 -73 -52 -128 -178c-38 -88 -24 -57 -64 -167c96 105 238 209 238 282'], + 0x1D4F5: [735,14,779,80,699,'699 639c0 -130 -193 -288 -306 -371l-63 -173c-4 -11 -6 -21 -6 -30c0 -27 18 -44 42 -44c46 -2 83 22 118 64c46 57 68 94 95 158l40 -16c-26 -58 -79 -133 -97 -155c-39 -49 -90 -86 -138 -86c-43 0 -103 13 -149 127c-13 30 -16 48 -16 71c0 12 1 25 2 42 c-72 -39 -88 -56 -123 -85l-18 27c39 40 71 68 153 115c10 33 29 79 37 101c48 104 173 351 313 351c80 0 116 -28 116 -96zM663 636c0 40 -13 63 -46 63c-44 0 -73 -52 -127 -178c-39 -88 -35 -77 -75 -186c80 64 248 207 248 301'], + 0x1D4F6: [425,14,1088,80,1008,'1008 233c-29 -49 -54 -97 -79 -134c-25 -40 -79 -113 -136 -113c-49 0 -118 37 -118 119c0 10 1 20 3 32c11 53 45 120 98 209c5 8 7 18 7 27c0 10 -3 18 -11 18c-20 -3 -69 -27 -118 -109c-24 -43 -63 -121 -69 -131l-80 -151h-156l154 318c12 26 19 45 19 57 c0 11 -5 16 -14 16c-60 0 -171 -176 -202 -236l-82 -155h-144l191 417h137l-79 -156c36 57 88 164 174 164c98 0 111 -92 119 -129c32 51 87 129 148 129c20 0 70 -9 97 -99c6 -19 9 -37 9 -55c0 -24 -5 -48 -13 -75c-18 -54 -46 -102 -76 -146c-3 -4 -6 -11 -6 -18 c0 -6 2 -11 9 -11c44 0 89 73 109 101c25 34 53 85 79 132'], + 0x1D4F7: [425,14,809,80,729,'729 233c-29 -49 -54 -97 -78 -134c-27 -40 -80 -113 -137 -113c-48 0 -118 37 -118 119c0 10 1 21 3 32c11 53 45 120 98 209c5 8 8 19 8 28s-3 17 -11 17c-21 -3 -62 -33 -86 -70c-78 -111 -125 -223 -176 -321h-152l196 413h137l-55 -106c19 28 37 56 67 85 c22 20 42 33 67 33c19 0 70 -9 97 -99c6 -18 8 -36 8 -54c0 -24 -4 -48 -13 -76c-18 -54 -46 -102 -75 -146c-3 -4 -7 -12 -7 -19c0 -5 3 -10 9 -10c44 0 89 73 110 101c25 34 52 85 78 132'], + 0x1D4F8: [425,14,677,80,597,'597 221c-25 -32 -53 -44 -90 -50c-13 3 -31 6 -44 10c-45 -88 -98 -195 -214 -195c-81 0 -133 45 -160 121c-6 18 -9 38 -9 57c0 42 12 84 27 117c36 72 101 144 193 144c44 0 67 -5 106 -38c4 4 12 6 21 6c29 0 56 -24 66 -57c4 -13 6 -25 6 -37c0 -33 -12 -64 -23 -90 c7 -2 14 -2 23 -3c28 11 56 17 82 59zM429 195c-16 11 -45 33 -57 69c-4 15 -6 31 -6 46c0 25 5 48 13 61c-4 2 -9 4 -17 5c-31 -1 -44 -37 -64 -71c-46 -81 -95 -161 -106 -213c-1 -7 -2 -13 -2 -19c0 -12 3 -22 4 -28c4 -11 21 -24 45 -24c100 0 151 98 190 174'], + 0x1D4F9: [425,280,956,80,876,'876 233c-29 -49 -54 -97 -78 -134c-27 -40 -80 -113 -137 -113c-48 0 -118 37 -118 119c0 10 1 21 3 32c11 53 45 120 98 209c5 8 8 19 8 28s-3 17 -11 17c-21 -3 -50 -32 -86 -70c-32 -36 -79 -104 -94 -139l-219 -462h-162l340 693h136l-52 -103c21 27 37 51 68 82 c19 19 42 33 67 33c19 0 70 -9 97 -99c6 -18 8 -36 8 -54c0 -24 -4 -48 -13 -76c-18 -54 -46 -102 -75 -146c-3 -4 -7 -12 -7 -19c0 -5 3 -10 9 -10c44 0 89 73 110 101c25 34 52 85 78 132'], + 0x1D4FA: [425,280,751,80,671,'671 227c-76 -107 -167 -182 -283 -225l-153 -282h-151l139 271c-6 -4 -16 -5 -25 -5c-50 0 -90 63 -108 108c-7 27 -10 53 -10 77c0 82 35 147 88 193c37 32 94 61 144 61c41 0 93 -18 109 -70l1 -4l31 60h154l-196 -360c90 38 160 113 229 195zM392 342c0 4 0 8 -1 12 c-3 12 -16 26 -36 26c-9 0 -21 -3 -30 -15c-37 -44 -80 -142 -151 -281c-4 -10 -8 -24 -8 -36c0 -4 1 -8 2 -12c2 -10 10 -15 22 -15c36 -2 69 51 86 70c19 26 100 190 112 221c2 10 4 20 4 30'], + 0x1D4FB: [426,0,699,80,619,'619 370c0 -14 -6 -28 -15 -41c-28 -36 -85 -72 -128 -84c3 -12 11 -21 15 -25c16 -15 33 -24 50 -24c15 0 31 7 46 21l26 -23c-21 -24 -46 -34 -70 -34c-27 0 -53 13 -73 32c-14 12 -22 26 -27 47c-45 -19 -122 -51 -156 -123l-55 -116h-152l193 411h155l-84 -165 c17 8 62 25 82 33c-2 6 -2 11 -2 17c0 22 10 47 27 70c23 33 59 60 96 60c19 0 39 -7 58 -25c9 -9 14 -20 14 -31'], + 0x1D4FC: [521,14,537,80,457,'457 149c0 -15 -3 -29 -9 -47c-22 -66 -92 -116 -189 -116c-138 0 -179 66 -179 119c0 40 8 110 84 110c34 0 54 -26 54 -66c0 -36 -25 -56 -47 -58c-28 1 -54 22 -51 62c0 10 1 11 3 20c-15 -10 -20 -32 -20 -43c0 -56 16 -94 102 -94c26 0 55 38 71 63 c14 22 65 97 65 145c0 35 -30 84 -55 114l-42 -53l-25 20l45 59c-12 31 -18 49 -18 76c0 33 15 61 49 61c31 0 45 -27 45 -56c0 -36 -16 -59 -36 -81c44 -50 135 -137 146 -188c4 -19 7 -34 7 -47'], + 0x1D4FD: [615,14,554,80,474,'474 407h-110l-168 -343c-6 -13 -13 -28 -7 -38c2 -5 6 -5 12 -5c37 0 75 45 99 72c40 49 64 86 105 143l30 -12c-47 -78 -66 -110 -113 -164c-14 -16 -70 -74 -122 -74c-43 0 -94 25 -116 97c-3 11 -4 22 -4 32c0 42 18 80 25 91l101 201h-74v37h91l85 171h156l-84 -171 h94v-37'], + 0x1D4FE: [411,14,780,80,700,'700 223c-43 -70 -56 -91 -90 -136c-37 -49 -93 -101 -141 -101c-50 0 -90 30 -110 79c-4 11 -10 19 -10 19c-12 -10 -69 -98 -137 -98c-59 0 -107 48 -125 97c-5 14 -7 28 -7 42c0 45 21 87 36 117l79 169h158l-148 -326c-8 -15 -25 -47 -20 -54c3 -8 10 -10 16 -10 c40 0 78 45 86 53c28 32 51 68 66 99l113 238h160l-167 -357c-7 -16 -11 -17 -7 -27c1 -4 2 -6 7 -6c40 -2 89 51 114 81c29 37 48 64 92 140'], + 0x1D4FF: [411,14,702,80,622,'622 250c-5 -72 -57 -105 -107 -105c-19 0 -31 5 -50 18c-42 -85 -108 -177 -216 -177c-75 0 -147 66 -163 121c-4 15 -6 28 -6 42c0 27 7 56 25 98l78 164h162l-146 -330c-6 -10 -8 -19 -8 -28c0 -5 1 -10 2 -15c10 -18 38 -17 45 -17c97 5 151 77 192 157 c-18 16 -30 50 -30 86c-2 65 28 140 98 140c26 0 40 -25 40 -57c0 -48 -22 -116 -49 -157c9 -6 19 -9 26 -9c38 0 66 21 75 69h32'], + 0x1D500: [411,14,951,80,871,'871 252c-5 -72 -58 -104 -108 -104c-19 0 -31 4 -48 16c-83 -139 -178 -178 -237 -178c-65 0 -99 30 -118 79c-4 11 -10 19 -10 19c-12 -10 -69 -98 -138 -98c-58 0 -107 48 -125 97c-5 14 -7 28 -7 42c0 44 21 86 35 117l80 169h159l-149 -326c-7 -15 -24 -47 -20 -54 c3 -8 10 -10 15 -10c41 0 79 45 88 53c27 32 51 68 66 99l113 238h159l-168 -357c-6 -16 -9 -17 -6 -27c1 -4 7 -6 18 -6c44 0 138 27 211 161c-21 14 -33 49 -33 85c-1 65 28 139 98 139c26 0 41 -24 41 -56c0 -49 -22 -117 -49 -157c8 -7 18 -9 25 -9c38 0 66 20 76 68h32 '], + 0x1D501: [425,14,741,80,661,'661 330c0 -37 -24 -62 -60 -62c-32 0 -50 29 -51 54c1 32 19 60 56 57c7 0 10 0 17 -3c-10 17 -21 22 -59 22c-29 0 -71 -44 -90 -91l-65 -173c-6 -15 -8 -28 -8 -41c0 -10 1 -19 3 -28c11 -24 30 -44 57 -44c84 0 99 51 139 149l33 -14c-39 -103 -70 -170 -171 -170 c-35 0 -70 1 -106 25c-35 23 -54 54 -69 84c-17 -45 -50 -109 -106 -109c-42 0 -101 19 -101 103c0 38 24 62 59 62c32 0 53 -25 53 -54c0 -32 -21 -60 -56 -57c-9 0 -9 1 -15 4c8 -18 38 -25 47 -25c37 0 58 19 69 49l84 233c3 11 5 21 5 31c0 7 -1 14 -3 21 c-8 26 -29 38 -49 38c-53 0 -88 -68 -117 -118l-32 14c27 48 69 142 155 138c67 0 136 -49 157 -117c14 42 64 117 122 117c45 0 102 -10 102 -95'], + 0x1D502: [411,291,812,80,732,'732 238c-56 -108 -170 -262 -285 -290c0 0 -53 -106 -88 -142c-56 -60 -125 -97 -187 -97c-63 0 -92 26 -92 83c0 85 135 132 235 176l57 113c-20 -15 -54 -80 -131 -80c-42 0 -82 22 -104 87c-7 19 -12 41 -12 64s5 48 18 77l88 182h171l-178 -337c-4 -8 -7 -22 -3 -29 c3 -7 9 -9 16 -9c52 0 114 65 146 134l112 241h174l-205 -419c91 41 190 178 239 272zM295 -79c-135 -61 -177 -95 -177 -135c0 -26 14 -44 48 -44c43 0 109 139 129 179'], + 0x1D503: [425,14,716,80,636,'636 236c-10 -40 -20 -75 -38 -113c-34 -71 -62 -137 -139 -137c-41 0 -94 26 -142 54c-25 -35 -65 -54 -114 -54s-100 35 -116 84c-5 14 -7 27 -7 39c0 61 55 93 112 93c44 0 94 -14 152 -47c17 27 29 57 35 69c-9 -1 -19 -1 -29 -1c-41 0 -91 9 -106 56 c-8 20 13 53 13 70c0 6 -3 10 -11 10c-69 0 -84 -52 -105 -95l-28 20c21 40 56 135 170 141c37 0 85 -20 96 -68c1 -7 2 -13 2 -20c0 -18 -6 -34 -9 -49c4 -2 10 -3 15 -3c6 0 12 1 18 2c16 36 40 138 99 138c30 0 45 -21 45 -57c0 -73 -64 -107 -131 -137 c-4 -14 -34 -68 -45 -94c51 -29 83 -54 127 -54c33 0 45 23 60 52c23 43 34 74 46 121zM521 368c0 14 -6 25 -16 25c-38 0 -42 -67 -62 -102c31 15 78 30 78 77zM286 59c-36 25 -92 65 -135 63c-27 0 -35 -14 -35 -29c0 -7 2 -15 5 -21c10 -32 44 -53 78 -51 c39 0 64 17 87 38'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Shapes/Regular/Main.js new file mode 100644 index 0000000..d507091 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Shapes/Regular/Main.js @@ -0,0 +1,67 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'GyreTermesMathJax_Shapes', + id: 'GYRETERMESSHAPES', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2422: [683,10,500,3,468,'468 243c0 -143 -102 -253 -234 -253c-80 0 -165 33 -165 64v409l-66 -28v30l66 29v79c0 42 -9 51 -49 51c-7 0 -11 0 -17 -1v16l29 8c47 13 74 21 116 36l5 -2v-151l97 41v-30l-97 -42v-124c20 49 78 85 139 85c100 0 176 -94 176 -217zM380 197c0 122 -50 200 -128 200 c-52 0 -99 -36 -99 -75v-252c0 -25 45 -48 97 -48c82 0 130 64 130 175'], + 0x2423: [160,106,500,40,460,'460 -80l-26 -26h-368l-26 26v240h52v-214h316v214h52v-240'], + 0x2500: [276,-224,500,0,500,'500 224h-500v52h500v-52'], + 0x2502: [650,150,500,224,276,'276 -150h-52v800h52v-800'], + 0x251C: [650,150,500,224,500,'500 224h-224v-374h-52v800h52v-374h224v-52'], + 0x2524: [650,150,500,0,276,'276 -150h-52v374h-224v52h224v374h52v-800'], + 0x252C: [276,150,500,0,500,'500 224h-224v-374h-52v374h-224v52h500v-52'], + 0x2534: [650,-224,500,0,500,'500 224h-500v52h224v374h52v-374h224v-52'], + 0x253C: [650,150,500,0,500,'500 224h-224v-374h-52v374h-224v52h224v374h52v-374h224v-52'], + 0x2581: [100,0,800,0,800,'800 0h-800v100h800v-100'], + 0x2588: [800,0,800,0,800,'800 0h-800v800h800v-800'], + 0x2591: [800,0,800,0,800,'27 0h-27v27h27v-27zM187 0h-54v27h54v-27zM347 0h-54v27h54v-27zM507 0h-54v27h54v-27zM667 0h-54v27h54v-27zM800 0h-27v27h27v-27zM107 53h-54v54h54v-54zM267 53h-54v54h54v-54zM427 53h-54v54h54v-54zM587 53h-54v54h54v-54zM747 53h-54v54h54v-54zM27 133h-27v54 h27v-54zM187 133h-54v54h54v-54zM347 133h-54v54h54v-54zM507 133h-54v54h54v-54zM667 133h-54v54h54v-54zM800 133h-27v54h27v-54zM107 213h-54v54h54v-54zM267 213h-54v54h54v-54zM427 213h-54v54h54v-54zM587 213h-54v54h54v-54zM747 213h-54v54h54v-54zM27 293h-27v54 h27v-54zM187 293h-54v54h54v-54zM347 293h-54v54h54v-54zM507 293h-54v54h54v-54zM667 293h-54v54h54v-54zM800 293h-27v54h27v-54zM107 373h-54v54h54v-54zM267 373h-54v54h54v-54zM427 373h-54v54h54v-54zM587 373h-54v54h54v-54zM747 373h-54v54h54v-54zM27 453h-27v54 h27v-54zM187 453h-54v54h54v-54zM347 453h-54v54h54v-54zM507 453h-54v54h54v-54zM667 453h-54v54h54v-54zM800 453h-27v54h27v-54zM107 533h-54v54h54v-54zM267 533h-54v54h54v-54zM427 533h-54v54h54v-54zM587 533h-54v54h54v-54zM747 533h-54v54h54v-54zM27 613h-27v54 h27v-54zM187 613h-54v54h54v-54zM347 613h-54v54h54v-54zM507 613h-54v54h54v-54zM667 613h-54v54h54v-54zM800 613h-27v54h27v-54zM107 693h-54v54h54v-54zM267 693h-54v54h54v-54zM427 693h-54v54h54v-54zM587 693h-54v54h54v-54zM747 693h-54v54h54v-54zM27 773h-27v27 h27v-27zM187 773h-54v27h54v-27zM347 773h-54v27h54v-27zM507 773h-54v27h54v-27zM667 773h-54v27h54v-27zM800 773h-27v27h27v-27'], + 0x2592: [800,0,800,0,800,'38 0h-38v38h38v-38zM198 0h-76v38h76v-38zM358 0h-76v38h76v-38zM518 0h-76v38h76v-38zM678 0h-76v38h76v-38zM800 0h-38v38h38v-38zM118 42h-76v76h76v-76zM278 42h-76v76h76v-76zM438 42h-76v76h76v-76zM598 42h-76v76h76v-76zM758 42h-76v76h76v-76zM38 122h-38v76 h38v-76zM198 122h-76v76h76v-76zM358 122h-76v76h76v-76zM518 122h-76v76h76v-76zM678 122h-76v76h76v-76zM800 122h-38v76h38v-76zM118 202h-76v76h76v-76zM278 202h-76v76h76v-76zM438 202h-76v76h76v-76zM598 202h-76v76h76v-76zM758 202h-76v76h76v-76zM38 282h-38v76 h38v-76zM198 282h-76v76h76v-76zM358 282h-76v76h76v-76zM518 282h-76v76h76v-76zM678 282h-76v76h76v-76zM800 282h-38v76h38v-76zM118 362h-76v76h76v-76zM278 362h-76v76h76v-76zM438 362h-76v76h76v-76zM598 362h-76v76h76v-76zM758 362h-76v76h76v-76zM38 442h-38v76 h38v-76zM198 442h-76v76h76v-76zM358 442h-76v76h76v-76zM518 442h-76v76h76v-76zM678 442h-76v76h76v-76zM800 442h-38v76h38v-76zM118 522h-76v76h76v-76zM278 522h-76v76h76v-76zM438 522h-76v76h76v-76zM598 522h-76v76h76v-76zM758 522h-76v76h76v-76zM38 602h-38v76 h38v-76zM198 602h-76v76h76v-76zM358 602h-76v76h76v-76zM518 602h-76v76h76v-76zM678 602h-76v76h76v-76zM800 602h-38v76h38v-76zM118 682h-76v76h76v-76zM278 682h-76v76h76v-76zM438 682h-76v76h76v-76zM598 682h-76v76h76v-76zM758 682h-76v76h76v-76zM38 762h-38v38 h38v-38zM198 762h-76v38h76v-38zM358 762h-76v38h76v-38zM518 762h-76v38h76v-38zM678 762h-76v38h76v-38zM800 762h-38v38h38v-38'], + 0x2593: [800,0,800,0,800,'190 50v60h-60v-60h60zM350 50v60h-60v-60h60zM510 50v60h-60v-60h60zM670 50v60h-60v-60h60zM110 130v60h-60v-60h60zM270 130v60h-60v-60h60zM430 130v60h-60v-60h60zM590 130v60h-60v-60h60zM750 130v60h-60v-60h60zM190 210v60h-60v-60h60zM350 210v60h-60v-60h60z M510 210v60h-60v-60h60zM670 210v60h-60v-60h60zM110 290v60h-60v-60h60zM270 290v60h-60v-60h60zM430 290v60h-60v-60h60zM590 290v60h-60v-60h60zM750 290v60h-60v-60h60zM190 370v60h-60v-60h60zM350 370v60h-60v-60h60zM510 370v60h-60v-60h60zM670 370v60h-60v-60h60z M110 450v60h-60v-60h60zM270 450v60h-60v-60h60zM430 450v60h-60v-60h60zM590 450v60h-60v-60h60zM750 450v60h-60v-60h60zM190 530v60h-60v-60h60zM350 530v60h-60v-60h60zM510 530v60h-60v-60h60zM670 530v60h-60v-60h60zM110 610v60h-60v-60h60zM270 610v60h-60v-60h60z M430 610v60h-60v-60h60zM590 610v60h-60v-60h60zM750 610v60h-60v-60h60zM190 690v60h-60v-60h60zM350 690v60h-60v-60h60zM510 690v60h-60v-60h60zM670 690v60h-60v-60h60zM800 0h-50v30h-60v-30h-100v30h-60v-30h-100v30h-60v-30h-100v30h-60v-30h-100v30h-60v-30h-50v50 h30v60h-30v100h30v60h-30v100h30v60h-30v100h30v60h-30v100h30v60h-30v50h50v-30h60v30h100v-30h60v30h100v-30h60v30h100v-30h60v30h100v-30h60v30h50v-50h-30v-60h30v-100h-30v-60h30v-100h-30v-60h30v-100h-30v-60h30v-100h-30v-60h30v-50'], + 0x25AA: [400,-100,460,80,380,'380 400v-300h-300v300h300'], + 0x25AB: [400,-100,460,80,380,'380 400v-300h-300v300h300zM328 348h-196v-196h196v196'], + 0x25AC: [375,-125,660,80,580,'580 375v-250h-500v250h500'], + 0x25AD: [375,-125,660,80,580,'580 375v-250h-500v250h500zM528 177v146h-396v-146h396'], + 0x25B7: [601,101,768,80,688,'688 250l-608 -351v702zM584 250l-452 261v-522'], + 0x25C1: [601,101,768,80,688,'688 -101l-608 351l608 351v-702zM636 511l-452 -261l452 -261v522'], + 0x25CB: [568,68,796,80,716,'716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318zM664 250c0 147 -119 266 -266 266s-266 -119 -266 -266s119 -266 266 -266s266 119 266 266'], + 0x25CF: [568,68,796,80,716,'716 250c0 -176 -142 -318 -318 -318s-318 142 -318 318s142 318 318 318s318 -142 318 -318'], + 0x25E6: [400,-100,460,80,380,'380 250c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150s150 -67 150 -150zM336 250c0 59 -47 106 -106 106s-106 -47 -106 -106s47 -106 106 -106s106 47 106 106'], + 0x2664: [668,0,796,80,716,'716 250c0 -85 -51 -164 -129 -164c-45 0 -88 19 -119 52h-25c4 -40 20 -78 47 -108l-14 -30h-78h-78l-14 30c27 30 43 68 47 108h-25c-31 -33 -74 -52 -119 -52c-78 0 -129 79 -129 164c0 97 59 165 128 228c64 58 138 113 174 190h32c36 -77 110 -132 174 -190 c69 -63 128 -131 128 -228zM680 250c0 87 -55 145 -117 202c-58 53 -124 104 -165 170c-41 -66 -107 -117 -165 -170c-62 -57 -117 -115 -117 -202c0 -65 34 -128 93 -128c40 0 78 19 102 52h61l18 -18c0 -43 -12 -84 -34 -120h42h42c-22 36 -34 77 -34 120l18 18h61 c24 -33 62 -52 102 -52c59 0 93 63 93 128'], + 0x2665: [668,0,760,80,680,'680 487c0 -102 -52 -182 -115 -260c-60 -73 -129 -142 -169 -227h-32c-40 85 -109 154 -169 227c-63 78 -115 158 -115 260c0 95 61 181 150 181c64 0 121 -35 150 -89c29 54 86 89 150 89c89 0 150 -86 150 -181'], + 0x2666: [670,0,782,80,702,'702 326c-62 -47 -119 -100 -171 -158c-46 -52 -88 -108 -125 -168h-30c-37 60 -79 116 -126 168c-51 58 -108 111 -170 158c62 50 119 106 171 167c46 55 88 115 124 177h32c36 -62 77 -122 124 -177c51 -61 108 -117 171 -167'], + 0x2667: [668,0,822,80,742,'742 224c0 -83 -59 -148 -129 -148c-65 0 -120 56 -128 130h-30c4 -73 26 -144 65 -206h-109h-109c39 62 61 133 65 206h-30c-8 -74 -63 -130 -128 -130c-70 0 -129 65 -129 148c0 82 59 148 129 148c24 0 46 -8 65 -21l39 57c-33 27 -53 67 -53 112c0 82 67 148 151 148 s151 -66 151 -148c0 -45 -20 -85 -53 -112l39 -57c19 13 41 21 65 21c70 0 129 -66 129 -148zM706 224c0 61 -41 112 -93 112c-22 0 -41 -9 -57 -24l-27 3l-59 87l5 25c31 20 51 54 51 93c0 62 -52 112 -115 112s-115 -50 -115 -112c0 -39 20 -73 51 -93l5 -25l-59 -87 l-27 -3c-16 15 -35 24 -57 24c-52 0 -93 -51 -93 -112c0 -62 41 -112 93 -112s93 50 93 112l18 18h65l18 -19c0 -64 -14 -128 -41 -187h49h49c-27 59 -41 123 -41 188l18 18h65l18 -19c0 -61 41 -111 93 -111s93 50 93 112'], + 0x266A: [662,14,600,66,556,'556 250h-44c0 72 -47 134 -91 193c-19 26 -38 52 -55 80v-426c0 -70 -73 -111 -150 -111s-150 41 -150 111c0 69 73 110 150 110c39 0 78 -11 106 -31v486h44c0 -72 47 -134 91 -193c49 -66 99 -136 99 -219'], + 0x26AD: [475,-25,500,-117,617,'617 250c0 -124 -101 -225 -225 -225c-54 0 -103 19 -142 50c-39 -31 -88 -50 -142 -50c-124 0 -225 101 -225 225s101 225 225 225c54 0 103 -19 142 -50c39 31 88 50 142 50c124 0 225 -101 225 -225zM305 250c0 46 -21 84 -55 112c-34 -28 -55 -66 -55 -112 s21 -84 55 -112c34 28 55 66 55 112zM212 114c-28 38 -45 85 -45 136s17 98 45 136c-31 15 -67 23 -104 23c-87 0 -159 -71 -159 -159s72 -159 159 -159c37 0 73 8 104 23zM551 250c0 88 -72 159 -159 159c-37 0 -73 -8 -104 -23c28 -38 45 -85 45 -136s-17 -98 -45 -136 c31 -15 67 -23 104 -23c87 0 159 71 159 159'], + 0x26AE: [700,200,500,-171,671,'167 250c0 -115 -64 -225 -169 -225s-169 110 -169 225s64 225 169 225s169 -110 169 -225zM671 250c0 -115 -64 -225 -169 -225s-169 110 -169 225s64 225 169 225s169 -110 169 -225zM283 -200h-66c0 150 19 300 19 450s-19 300 -19 450h66c0 -150 -19 -300 -19 -450 s19 -300 19 -450zM139 250c0 85 -60 159 -141 159c-70 0 -103 -80 -103 -159s33 -159 103 -159c81 0 141 74 141 159zM605 250c0 79 -33 159 -103 159c-81 0 -141 -74 -141 -159s60 -159 141 -159c70 0 103 80 103 159'], + 0x2B04: [470,-30,1091,80,1011,'1011 250l-220 -220h-44v126h-404v-126h-43l-220 220l220 220h44l-1 -126h404v126h44zM960 250l-177 177v-119h-476v119l-176 -177l176 -177v119h476v-119'], + 0x2B05: [470,-30,1030,80,950,'950 174h-650v-144l-220 220l220 220v-144h650v-152'], + 0x2B06: [690,180,600,80,520,'520 470h-144v-650h-152v650h-144l220 220'], + 0x2B07: [680,190,600,80,520,'520 30l-220 -220l-220 220h144v650h152v-650h144'], + 0x2B0C: [470,-30,1040,80,960,'960 250l-220 -220v144h-440v-144l-220 220l220 220v-144h440v144'], + 0x2B0D: [690,190,600,80,520,'520 30l-220 -220l-220 220h144v440h-144l220 220l220 -220h-144v-440h144'], + 0x2B1A: [702,202,1008,52,956,'252 -202h-95v52h95v-52zM452 -202h-95v52h95v-52zM652 -202h-95v52h95v-52zM852 -202h-95v52h95v-52zM252 650h-95v52h95v-52zM452 650h-95v52h95v-52zM652 650h-95v52h95v-52zM852 650h-95v52h95v-52zM104 -97h-52v95h52v-95zM104 103h-52v95h52v-95zM104 303h-52v95 h52v-95zM104 503h-52v95h52v-95zM956 -97h-52v95h52v-95zM956 103h-52v95h52v-95zM956 303h-52v95h52v-95zM956 503h-52v95h52v-95'], + 0x2B31: [830,330,850,80,770,'770 -176h-599l154 -154h-65l-180 180l180 180h65l-154 -154h599v-52zM770 224h-599l154 -154h-65l-180 180l180 180h65l-154 -154h599v-52zM770 624h-599l154 -154h-65l-180 180l180 180h65l-154 -154h599v-52'], + 0x2B33: [430,-70,1170,80,1090,'1090 224h-54c-31 0 -50 17 -64 41c-10 16 -16 37 -26 53c-4 8 -9 15 -18 15c-23 0 -30 -17 -35 -36c-8 -33 -8 -73 -15 -105c-11 -45 -34 -77 -85 -77c-52 0 -75 32 -86 77c-7 32 -7 72 -15 105c-5 19 -12 36 -34 36c-23 0 -30 -17 -35 -36c-8 -33 -8 -73 -15 -105 c-11 -45 -34 -77 -85 -77c-52 0 -75 32 -86 77c-7 32 -7 72 -15 105c-5 19 -12 36 -34 36c-10 0 -15 -7 -19 -15c-10 -16 -16 -37 -26 -53c-14 -24 -33 -41 -63 -41h-109l154 -154h-65l-180 180l180 180h65l-154 -154h109c9 0 14 7 18 15c10 16 16 37 26 53 c14 24 33 41 64 41c51 0 74 -32 85 -77c7 -32 7 -72 15 -105c5 -19 12 -36 35 -36c22 0 29 17 34 36c8 33 8 73 15 105c11 45 34 77 86 77c51 0 74 -32 85 -77c7 -32 7 -72 15 -105c5 -19 12 -36 35 -36c22 0 29 17 34 36c8 33 8 73 15 105c11 45 34 77 86 77 c30 0 49 -17 63 -41c10 -16 16 -37 26 -53c4 -8 9 -15 19 -15h54v-52'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Shapes/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size1/Regular/Main.js new file mode 100644 index 0000000..acd550b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size1/Regular/Main.js @@ -0,0 +1,204 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'GyreTermesMathJax_Size1', + id: 'GYRETERMESSIZE1', + 0x20: [0,0,250,0,0,''], + 0x28: [738,238,426,124,344,'344 -222l-13 -16c-101 76 -207 268 -207 441v94c0 173 106 365 207 441l13 -16c-94 -70 -145 -266 -145 -425v-94c0 -159 51 -355 145 -425'], + 0x29: [738,238,426,82,302,'302 203c0 -173 -107 -365 -208 -441l-12 16c93 70 145 266 145 425v94c0 159 -52 355 -145 425l12 16c101 -76 208 -268 208 -441v-94'], + 0x2F: [774,274,549,80,469,'469 774l-341 -1048h-48l341 1048h48'], + 0x5B: [749,249,403,124,321,'321 711h-131v-922h131v-38h-197v998h197v-38'], + 0x5C: [774,274,549,80,469,'469 -274h-48l-341 1048h48'], + 0x5D: [749,249,403,82,279,'279 -249h-197v38h131v922h-131v38h197v-998'], + 0x7B: [740,240,413,82,331,'331 -220l-6 -20c-77 21 -153 88 -153 163v174c0 73 -32 143 -90 143v20c58 0 90 70 90 143v174c0 75 76 142 153 163l6 -20c-59 -15 -93 -85 -93 -143v-174c0 -75 -46 -131 -103 -153c57 -22 103 -78 103 -153v-174c0 -58 34 -128 93 -143'], + 0x7C: [730,230,206,80,126,'126 -230h-46v960h46v-960'], + 0x7D: [740,240,413,82,331,'331 240c-59 0 -90 -70 -90 -143v-174c0 -75 -76 -142 -154 -163l-5 20c59 15 93 85 93 143v174c0 75 46 131 103 153c-57 22 -103 78 -103 153v174c0 58 -34 128 -93 143l5 20c78 -21 154 -88 154 -163v-174c0 -73 31 -143 90 -143v-20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [697,-537,608,0,608,'608 557l-8 -20c-100 34 -198 71 -296 112c-97 -41 -196 -78 -296 -112l-8 20c99 51 201 98 304 140c103 -42 205 -89 304 -140'], + 0x303: [688,-532,601,0,601,'601 659c-38 -71 -74 -113 -136 -125c-8 -2 -17 -2 -26 -2c-53 0 -104 29 -151 59c-44 29 -92 60 -144 51c-52 -10 -94 -32 -125 -91l-19 10c38 71 74 113 136 125c9 2 18 2 26 2c54 0 104 -29 151 -59c44 -29 92 -60 144 -51c52 10 94 32 125 91'], + 0x305: [632,-588,500,0,500,'500 588h-500v44h500v-44'], + 0x306: [694,-543,620,0,620,'620 688c-39 -118 -180 -145 -310 -145s-271 27 -310 145l20 6c35 -106 171 -106 290 -106s255 0 290 106'], + 0x30C: [693,-533,608,0,608,'608 673c-99 -51 -201 -98 -304 -140c-103 42 -205 89 -304 140l8 20c100 -34 199 -71 296 -112c98 41 196 78 296 112'], + 0x311: [706,-554,620,0,620,'620 560l-20 -6c-35 106 -171 107 -290 107s-255 -1 -290 -107l-20 6c39 118 180 146 310 146s271 -28 310 -146'], + 0x32C: [-70,230,608,0,608,'608 -89c-99 -52 -201 -98 -304 -141c-103 43 -205 89 -304 141l8 19c100 -34 199 -71 296 -111c98 40 196 77 296 111'], + 0x32D: [-80,240,608,0,608,'608 -221l-8 -19c-100 34 -198 71 -296 111c-97 -40 -196 -77 -296 -111l-8 19c99 51 201 98 304 141c103 -43 205 -90 304 -141'], + 0x32E: [-70,222,620,0,620,'620 -77c-39 -117 -180 -145 -310 -145s-271 28 -310 145l20 7c35 -106 171 -107 290 -107s255 1 290 107'], + 0x32F: [-88,240,620,0,620,'620 -233l-20 -7c-35 107 -171 107 -290 107s-255 0 -290 -107l-20 7c39 117 180 145 310 145s271 -28 310 -145'], + 0x330: [-88,245,601,0,601,'601 -117c-38 -71 -74 -114 -136 -125c-8 -2 -17 -3 -26 -3c-53 0 -104 29 -151 60c-44 29 -92 60 -144 50c-52 -9 -94 -31 -125 -90l-19 10c38 70 74 113 136 125c9 1 18 2 26 2c54 0 104 -29 151 -59c44 -29 92 -61 144 -51s94 31 125 91'], + 0x332: [-70,114,500,0,500,'500 -114h-500v44h500v-44'], + 0x333: [-70,228,500,0,500,'500 -114h-500v44h500v-44zM500 -228h-500v44h500v-44'], + 0x33F: [746,-588,500,0,500,'500 588h-500v44h500v-44zM500 702h-500v44h500v-44'], + 0x2016: [730,230,352,80,272,'126 -230h-46v960h46v-960zM272 -230h-46v960h46v-960'], + 0x2044: [774,274,549,80,469,'469 774l-341 -1048h-48l341 1048h48'], + 0x20D0: [710,-600,660,80,580,'580 600h-500v22l88 88h57l-66 -66h421v-44'], + 0x20D1: [710,-600,660,80,580,'580 600h-500v44h421l-66 66h57l88 -88v-22'], + 0x20D6: [710,-534,670,80,590,'590 600h-431l66 -66h-57l-88 88l88 88h57l-66 -66h431v-44'], + 0x20D7: [710,-534,670,80,590,'590 622l-88 -88h-57l66 66h-431v44h431l-66 66h57'], + 0x20E1: [710,-534,742,80,662,'662 622l-88 -88h-57l66 66h-424l66 -66h-57l-88 88l88 88h57l-66 -66h424l-66 66h57'], + 0x20E9: [728,-548,750,0,750,'750 548h-38v126h-674v-126h-38v180h750v-180'], + 0x20EC: [-150,260,660,80,580,'580 -150v-22l-88 -88h-57l66 66h-421v44h500'], + 0x20ED: [-150,260,660,80,580,'580 -194h-421l66 -66h-57l-88 88v22h500v-44'], + 0x20EE: [-84,260,670,80,590,'590 -194h-431l66 -66h-57l-88 88l88 88h57l-66 -66h431v-44'], + 0x20EF: [-84,260,670,80,590,'590 -172l-88 -88h-57l66 66h-431v44h431l-66 66h57'], + 0x2140: [930,430,1152,80,1071,'1071 -153l-73 -262c-2 -10 -9 -15 -19 -15h-877c-14 0 -22 6 -22 15c0 5 1 10 5 16l378 606l-369 694c-3 5 -4 10 -4 14c0 9 8 15 22 15h835c13 0 19 -6 20 -19l13 -196c1 -15 -9 -22 -20 -22c-9 0 -18 5 -20 17c-9 63 -17 113 -29 131c-26 39 -133 49 -236 49h-395 l304 -546c2 -3 3 -7 3 -11s-1 -7 -3 -10l-373 -596h562c137 0 213 21 261 133c4 9 11 13 18 13c12 0 23 -10 19 -26zM544 335l-309 555h-90l343 -644zM1003 -260c-43 -50 -126 -53 -230 -53h-587l-48 -77h826'], + 0x2190: [430,-70,1170,80,1090,'1090 224h-919l154 -154h-65l-180 180l180 180h65l-154 -154h919v-52'], + 0x2191: [760,250,520,80,440,'440 515l-154 154v-919h-52v919l-154 -154v65l180 180l180 -180v-65'], + 0x2192: [430,-70,1170,80,1090,'1090 250l-180 -180h-65l154 154h-919v52h919l-154 154h65'], + 0x2193: [750,260,520,80,440,'440 -80l-180 -180l-180 180v65l154 -154v919h52v-919l154 154v-65'], + 0x2194: [430,-70,1360,80,1280,'1280 250l-180 -180h-65l154 154h-1018l154 -154h-65l-180 180l180 180h65l-154 -154h1018l-154 154h65'], + 0x2195: [850,350,520,80,440,'440 -170l-180 -180l-180 180v65l154 -154v1018l-154 -154v65l180 180l180 -180v-65l-154 154v-1018l154 154v-65'], + 0x2196: [611,122,893,80,813,'813 -85l-37 -37l-650 650v-218l-46 46v255h255l46 -46h-218'], + 0x2197: [611,122,893,80,813,'813 356l-46 -46v218l-650 -650l-37 37l650 650h-218l46 46h255v-255'], + 0x2198: [622,111,893,80,813,'813 144v-255h-255l-46 46h218l-650 650l37 37l650 -650v218'], + 0x2199: [622,111,893,80,813,'813 585l-650 -650h218l-46 -46h-255v255l46 46v-218l650 650'], + 0x219A: [430,-70,1170,80,1090,'1090 224h-490l-50 -154h-47l50 154h-382l154 -154h-65l-180 180l180 180h65l-154 -154h399l50 154h47l-50 -154h473v-52'], + 0x219B: [430,-70,1170,80,1090,'1090 250l-180 -180h-65l154 154h-399l-50 -154h-47l50 154h-473v52h490l50 154h47l-50 -154h382l-154 154h65'], + 0x219E: [430,-70,1350,80,1270,'1270 224h-936l154 -154h-65l-154 154h-98l154 -154h-65l-180 180l180 180h65l-154 -154h98l154 154h65l-154 -154h936v-52'], + 0x219F: [850,340,520,80,440,'440 442l-154 154v-936h-52v936l-154 -154v65l154 154v98l-154 -154v65l180 180l180 -180v-65l-154 154v-98l154 -154v-65'], + 0x21A0: [430,-70,1350,80,1270,'1270 250l-180 -180h-65l154 154h-98l-154 -154h-65l154 154h-936v52h936l-154 154h65l154 -154h98l-154 154h65'], + 0x21A1: [840,350,520,80,440,'440 -170l-180 -180l-180 180v65l154 -154v98l-154 154v65l154 -154v936h52v-936l154 154v-65l-154 -154v-98l154 154v-65'], + 0x21A2: [430,-70,1360,80,1280,'1280 70h-65l-154 154h-890l154 -154h-65l-180 180l180 180h65l-154 -154h890l154 154h65l-180 -180'], + 0x21A3: [430,-70,1360,80,1280,'1280 250l-180 -180h-65l154 154h-890l-154 -154h-65l180 180l-180 180h65l154 -154h890l-154 154h65'], + 0x21A4: [430,-70,1170,80,1090,'1090 70h-46v154h-873l154 -154h-65l-180 180l180 180h65l-154 -154h873v154h46v-360'], + 0x21A5: [760,250,520,80,440,'440 -250h-360v46h154v873l-154 -154v65l180 180l180 -180v-65l-154 154v-873h154v-46'], + 0x21A6: [430,-70,1170,80,1090,'1090 250l-180 -180h-65l154 154h-873v-154h-46v360h46v-154h873l-154 154h65'], + 0x21A7: [750,260,520,80,440,'440 -80l-180 -180l-180 180v65l154 -154v873h-154v46h360v-46h-154v-873l154 154v-65'], + 0x21A9: [508,-70,1196,80,1116,'1116 366c0 -78 -64 -142 -142 -142h-803l154 -154h-65l-180 180l180 180h65l-154 -154h803c50 0 90 40 90 90s-40 90 -90 90h-52v52h52c78 0 142 -64 142 -142'], + 0x21AA: [508,-70,1196,80,1116,'1116 250l-180 -180h-65l154 154h-803c-78 0 -142 64 -142 142s64 142 142 142h52v-52h-52c-50 0 -90 -40 -90 -90s40 -90 90 -90h803l-154 154h65'], + 0x21AB: [508,-18,1196,80,1116,'1116 366c0 -78 -64 -142 -142 -142h-90v-206h-52v206h-661l154 -154h-65l-180 180l180 180h65l-154 -154h661v90c0 78 64 142 142 142s142 -64 142 -142zM1064 366c0 50 -40 90 -90 90s-90 -40 -90 -90v-90h90c50 0 90 40 90 90'], + 0x21AC: [508,-18,1196,80,1116,'1116 250l-180 -180h-65l154 154h-661v-206h-52v206h-90c-78 0 -142 64 -142 142s64 142 142 142s142 -64 142 -142v-90h661l-154 154h65zM312 276v90c0 50 -40 90 -90 90s-90 -40 -90 -90s40 -90 90 -90h90'], + 0x21AD: [430,-70,1360,80,1280,'1280 250l-180 -180h-65l154 154h-131c-30 0 -50 17 -64 41c-9 16 -16 37 -25 53c-5 8 -9 15 -19 15c-23 0 -30 -17 -35 -36c-7 -33 -7 -73 -15 -105c-10 -45 -33 -77 -85 -77s-75 32 -85 77c-8 32 -8 72 -15 105c-5 19 -12 36 -35 36s-30 -17 -35 -36 c-7 -33 -7 -73 -15 -105c-10 -45 -33 -77 -85 -77s-75 32 -85 77c-8 32 -8 72 -15 105c-5 19 -12 36 -35 36c-10 0 -14 -7 -19 -15c-9 -16 -16 -37 -25 -53c-14 -24 -34 -41 -64 -41h-131l154 -154h-65l-180 180l180 180h65l-154 -154h131c10 0 14 7 19 15c9 16 16 37 25 53 c14 24 34 41 64 41c52 0 75 -32 85 -77c8 -32 8 -72 15 -105c5 -19 12 -36 35 -36s30 17 35 36c7 33 7 73 15 105c10 45 33 77 85 77s75 -32 85 -77c8 -32 8 -72 15 -105c5 -19 12 -36 35 -36s30 17 35 36c7 33 7 73 15 105c10 45 33 77 85 77c30 0 50 -17 64 -41 c9 -16 16 -37 25 -53c5 -8 9 -15 19 -15h131l-154 154h65'], + 0x21AE: [430,-70,1360,80,1280,'1280 250l-180 -180h-65l154 154h-494l-50 -154h-47l50 154h-477l154 -154h-65l-180 180l180 180h65l-154 -154h494l50 154h47l-50 -154h477l-154 154h65'], + 0x21B0: [694,194,668,80,588,'588 -194h-52v682h-365l154 -154h-65l-180 180l180 180h65l-154 -154h391l26 -26v-708'], + 0x21B1: [694,194,668,80,588,'588 514l-180 -180h-65l154 154h-365v-682h-52v708l26 26h391l-154 154h65'], + 0x21B2: [694,194,668,80,588,'588 694v-708l-26 -26h-391l154 -154h-65l-180 180l180 180h65l-154 -154h365v682h52'], + 0x21B3: [694,194,668,80,588,'588 -14l-180 -180h-65l154 154h-391l-26 26v708h52v-682h365l-154 154h65'], + 0x21B6: [576,-241,1039,80,959,'959 250h-52c0 167 -169 274 -349 274c-162 0 -277 -74 -330 -213l210 89l-24 -60l-235 -99l-99 234l24 60l81 -190c63 151 192 231 373 231c210 0 401 -131 401 -326'], + 0x21B7: [576,-241,1039,80,959,'959 475l-99 -234l-235 99l-24 60l210 -89c-52 139 -167 213 -330 213c-180 0 -349 -107 -349 -274h-52c0 195 191 326 401 326c181 0 311 -80 373 -231l81 190'], + 0x21BC: [430,-224,1160,80,1080,'1080 224h-1000v26l180 180h65l-154 -154h909v-52'], + 0x21BD: [276,-70,1160,80,1080,'1080 224h-909l154 -154h-65l-180 180v26h1000v-52'], + 0x21BE: [750,250,366,80,286,'286 505l-154 154v-909h-52v1000h26l180 -180v-65'], + 0x21BF: [750,250,366,80,286,'286 -250h-52v909l-154 -154v65l180 180h26v-1000'], + 0x21C0: [430,-224,1160,80,1080,'1080 224h-1000v52h909l-154 154h65l180 -180v-26'], + 0x21C1: [276,-70,1160,80,1080,'1080 250l-180 -180h-65l154 154h-909v52h1000v-26'], + 0x21C2: [750,250,366,80,286,'286 -70l-180 -180h-26v1000h52v-909l154 154v-65'], + 0x21C3: [750,250,366,80,286,'286 750v-1000h-26l-180 180v65l154 -154v909h52'], + 0x21C4: [630,130,1180,80,1100,'1090 24h-919l154 -154h-65l-180 180l180 180h65l-154 -154h919v-52zM1100 450l-180 -180h-65l154 154h-919v52h919l-154 154h65'], + 0x21C5: [760,260,920,80,840,'440 515l-154 154v-919h-52v919l-154 -154v65l180 180l180 -180v-65zM840 -80l-180 -180l-180 180v65l154 -154v919h52v-919l154 154v-65'], + 0x21C6: [630,130,1180,80,1100,'1100 50l-180 -180h-65l154 154h-919v52h919l-154 154h65zM1090 424h-919l154 -154h-65l-180 180l180 180h65l-154 -154h919v-52'], + 0x21C7: [630,130,1170,80,1090,'1090 24h-919l154 -154h-65l-180 180l180 180h65l-154 -154h919v-52zM1090 424h-919l154 -154h-65l-180 180l180 180h65l-154 -154h919v-52'], + 0x21C8: [760,250,920,80,840,'440 515l-154 154v-919h-52v919l-154 -154v65l180 180l180 -180v-65zM840 515l-154 154v-919h-52v919l-154 -154v65l180 180l180 -180v-65'], + 0x21C9: [630,130,1170,80,1090,'1090 50l-180 -180h-65l154 154h-919v52h919l-154 154h65zM1090 450l-180 -180h-65l154 154h-919v52h919l-154 154h65'], + 0x21CA: [750,260,920,80,840,'440 -80l-180 -180l-180 180v65l154 -154v919h52v-919l154 154v-65zM840 -80l-180 -180l-180 180v65l154 -154v919h52v-919l154 154v-65'], + 0x21CB: [526,26,1160,80,1080,'1080 180v-26l-180 -180h-65l154 154h-909v52h1000zM1080 320h-1000v26l180 180h65l-154 -154h909v-52'], + 0x21CC: [526,26,1160,80,1080,'1080 128h-909l154 -154h-65l-180 180v26h1000v-52zM1080 320h-1000v52h909l-154 154h65l180 -180v-26'], + 0x21CD: [500,0,1170,80,1090,'1090 148h-515l-48 -148h-46l48 148h-282l118 -118h-65l-220 220l220 220h65l-118 -118h348l48 148h46l-48 -148h449v-52h-466l-32 -100h498v-52zM578 300h-383l-50 -50l50 -50h351'], + 0x21CE: [500,0,1360,80,1280,'1280 250l-220 -220h-65l118 118h-443l-48 -148h-46l48 148h-377l118 -118h-65l-220 220l220 220h65l-118 -118h443l48 148h46l-48 -148h377l-118 118h65zM1215 250l-50 50h-446l-32 -100h478zM673 300h-478l-50 -50l50 -50h446'], + 0x21CF: [500,0,1170,80,1090,'1090 250l-220 -220h-65l118 118h-348l-48 -148h-46l48 148h-449v52h466l32 100h-498v52h515l48 148h46l-48 -148h282l-118 118h65zM1025 250l-50 50h-351l-32 -100h383'], + 0x21D0: [470,-30,1170,80,1090,'1090 148h-843l118 -118h-65l-220 220l220 220h65l-118 -118h843v-52h-895l-50 -50l50 -50h895v-52'], + 0x21D1: [760,250,600,80,520,'520 475l-118 118v-843h-52v895l-50 50l-50 -50v-895h-52v843l-118 -118v65l220 220l220 -220v-65'], + 0x21D2: [470,-30,1170,80,1090,'1090 250l-220 -220h-65l118 118h-843v52h895l50 50l-50 50h-895v52h843l-118 118h65'], + 0x21D3: [750,260,600,80,520,'520 -40l-220 -220l-220 220v65l118 -118v843h52v-895l50 -50l50 50v895h52v-843l118 118v-65'], + 0x21D4: [470,-30,1360,80,1280,'1280 250l-220 -220h-65l118 118h-866l118 -118h-65l-220 220l220 220h65l-118 -118h866l-118 118h65zM1215 250l-50 50h-970l-50 -50l50 -50h970'], + 0x21D5: [850,350,600,80,520,'520 -130l-220 -220l-220 220v65l118 -118v866l-118 -118v65l220 220l220 -220v-65l-118 118v-866l118 118v-65zM350 -235v970l-50 50l-50 -50v-970l50 -50'], + 0x21D6: [611,176,946,80,866,'866 -31l-36 -37l-633 633h-71v-71l633 -633l-37 -37l-596 596v-166l-46 46v311h311l46 -46h-167'], + 0x21D7: [611,176,946,80,866,'866 299l-46 -46v167l-596 -596l-37 37l633 633v71h-70l-633 -633l-37 37l596 596h-167l46 46h311v-312'], + 0x21D8: [676,111,946,80,866,'866 201v-312h-311l-46 46h167l-596 596l37 37l633 -633h70v71l-633 633l37 37l596 -596v167'], + 0x21D9: [676,111,946,80,866,'866 531l-596 -596h167l-46 -46h-311v311l46 46v-166l596 596l37 -37l-633 -633v-71h71l633 633'], + 0x21DA: [572,72,1350,80,1270,'1270 72h-947l144 -144h-65l-322 322l322 322h65l-144 -144h947v-52h-999l-100 -100h1099v-52h-1099l100 -100h999v-52'], + 0x21DB: [572,72,1350,80,1270,'1270 250l-322 -322h-65l144 144h-947v52h999l100 100h-1099v52h1099l-100 100h-999v52h947l-144 144h65'], + 0x21DC: [430,-70,1170,80,1090,'1090 224h-54c-31 0 -50 17 -64 41c-10 16 -16 37 -26 53c-4 8 -9 15 -18 15c-23 0 -30 -17 -35 -36c-8 -33 -8 -73 -15 -105c-11 -45 -34 -77 -85 -77c-52 0 -75 32 -86 77c-7 32 -7 72 -15 105c-5 19 -12 36 -34 36c-23 0 -30 -17 -35 -36c-8 -33 -8 -73 -15 -105 c-11 -45 -34 -77 -85 -77c-52 0 -75 32 -86 77c-7 32 -7 72 -15 105c-5 19 -12 36 -34 36c-10 0 -15 -7 -19 -15c-10 -16 -16 -37 -26 -53c-14 -24 -33 -41 -63 -41h-109l154 -154h-65l-180 180l180 180h65l-154 -154h109c9 0 14 7 18 15c10 16 16 37 26 53 c14 24 33 41 64 41c51 0 74 -32 85 -77c7 -32 7 -72 15 -105c5 -19 12 -36 35 -36c22 0 29 17 34 36c8 33 8 73 15 105c11 45 34 77 86 77c51 0 74 -32 85 -77c7 -32 7 -72 15 -105c5 -19 12 -36 35 -36c22 0 29 17 34 36c8 33 8 73 15 105c11 45 34 77 86 77 c30 0 49 -17 63 -41c10 -16 16 -37 26 -53c4 -8 9 -15 19 -15h54v-52'], + 0x21DD: [430,-70,1170,80,1090,'1090 250l-180 -180h-65l154 154h-108c-31 0 -50 17 -64 41c-10 16 -16 37 -26 53c-4 8 -9 15 -18 15c-23 0 -30 -17 -35 -36c-8 -33 -8 -73 -15 -105c-11 -45 -34 -77 -85 -77c-52 0 -75 32 -86 77c-7 32 -7 72 -15 105c-5 19 -12 36 -34 36c-23 0 -30 -17 -35 -36 c-8 -33 -8 -73 -15 -105c-11 -45 -34 -77 -85 -77c-52 0 -75 32 -86 77c-7 32 -7 72 -15 105c-5 19 -12 36 -34 36c-10 0 -15 -7 -19 -15c-10 -16 -16 -37 -26 -53c-14 -24 -33 -41 -63 -41h-55v52h55c9 0 14 7 18 15c10 16 16 37 26 53c14 24 33 41 64 41 c51 0 74 -32 85 -77c7 -32 7 -72 15 -105c5 -19 12 -36 35 -36c22 0 29 17 34 36c8 33 8 73 15 105c11 45 34 77 86 77c51 0 74 -32 85 -77c7 -32 7 -72 15 -105c5 -19 12 -36 35 -36c22 0 29 17 34 36c8 33 8 73 15 105c11 45 34 77 86 77c30 0 49 -17 63 -41 c10 -16 16 -37 26 -53c4 -8 9 -15 19 -15h108l-154 154h65'], + 0x21E6: [470,-30,1393,80,1313,'1313 344v-188h-970v-126h-43l-220 220l220 220h44l-1 -126h970zM1277 192v116h-970v119l-176 -177l176 -177v119h970'], + 0x21E7: [875,358,600,80,520,'520 612h-126v-970h-188v970h-126v44l220 219l220 -220v-43zM477 648l-177 177l-177 -177h119v-970h116v970h119'], + 0x21E8: [470,-30,1393,80,1313,'1313 250l-219 -220h-44v126h-970v188h970v126h43zM1263 250l-177 177v-119h-970v-116h970v-119'], + 0x21E9: [858,375,600,80,520,'520 -155l-220 -220l-220 219v44h126v970h188v-970h126v-43zM477 -148h-119v970h-116v-970h-119l177 -177'], + 0x21F3: [875,375,600,80,520,'520 -156l-220 -219l-220 220v43h126v724h-126v44l220 219l220 -220v-43h-126v-724h126v-44zM477 648l-177 177l-177 -177h119v-796h-119l177 -177l177 177h-119v796h119'], + 0x21F5: [760,260,920,80,840,'440 -80l-180 -180l-180 180v65l154 -154v919h52v-919l154 154v-65zM840 515l-154 154v-919h-52v919l-154 -154v65l180 180l180 -180v-65'], + 0x21F6: [830,330,1170,80,1090,'1090 -150l-180 -180h-65l154 154h-919v52h919l-154 154h65zM1090 250l-180 -180h-65l154 154h-919v52h919l-154 154h65zM1090 650l-180 -180h-65l154 154h-919v52h919l-154 154h65'], + 0x220F: [937,437,1204,80,1124,'1124 -437h-325v23c91 5 103 19 103 118v1105c0 59 -5 76 -31 76h-538c-27 0 -31 -17 -31 -76v-1118c0 -83 15 -98 103 -105v-23h-325v23c91 5 103 19 103 118v1105c0 84 -13 97 -103 105v23h1044v-23c-90 -8 -103 -21 -103 -105v-1118c0 -83 15 -98 103 -105v-23'], + 0x2210: [937,437,1204,80,1124,'1124 -437h-1044v23c90 8 103 21 103 105v1105c0 99 -12 113 -103 118v23h325v-23c-88 -7 -103 -22 -103 -105v-1118c0 -59 4 -76 31 -76h538c26 0 31 17 31 76v1105c0 99 -12 113 -103 118v23h325v-23c-88 -7 -103 -22 -103 -105v-1118c0 -84 13 -97 103 -105v-23'], + 0x2211: [937,437,1197,80,1117,'1117 -204l-62 -233h-975v23c15 4 26 15 35 26l445 623l-450 655c-10 13 -18 21 -30 24v23h964l4 -168h-30c-15 99 -46 123 -288 123h-460l402 -585l-452 -633h733c75 0 94 19 130 122h34'], + 0x221A: [808,282,607,120,633,'633 756h-57l-203 -1038h-38h-39l-118 423h-58v44h146l86 -305l181 928h100v-52'], + 0x2223: [730,230,206,80,126,'126 -230h-46v960h46v-960'], + 0x2225: [730,230,352,80,272,'126 -230h-46v960h46v-960zM272 -230h-46v960h46v-960'], + 0x222B: [1263,763,750,80,670,'670 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68 c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360c62 0 107 -45 107 -108'], + 0x222C: [1263,763,1188,80,1108,'670 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68 c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360c62 0 107 -45 107 -108zM1108 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28 c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11 c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360c62 0 107 -45 107 -108'], + 0x222D: [1263,763,1626,80,1546,'670 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68 c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360c62 0 107 -45 107 -108zM1108 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28 c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11 c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360c62 0 107 -45 107 -108zM1546 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796 c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360 c62 0 107 -45 107 -108'], + 0x222E: [1263,763,804,80,724,'724 250c0 -157 -113 -288 -262 -316c-1 -140 -3 -270 -9 -337c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c5 45 6 262 7 480 c-149 28 -261 159 -261 316s113 288 262 316c1 140 3 270 9 337c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-5 -45 -6 -262 -7 -480 c149 -28 261 -159 261 -316zM670 250c0 127 -88 233 -207 261v-261v-261c118 27 207 134 207 261zM341 511c-118 -27 -207 -134 -207 -261s88 -233 207 -261v261v261'], + 0x222F: [1263,763,1242,80,1162,'1162 250c0 -114 -104 -218 -262 -275c0 -155 -3 -304 -9 -378c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c5 46 6 267 7 488 c-50 -9 -103 -14 -158 -14s-109 5 -159 14c-1 -143 -3 -276 -9 -345c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c5 48 6 290 7 521 c-157 58 -261 161 -261 275s104 218 262 275c0 155 3 304 9 378c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-5 -46 -6 -267 -7 -488 c50 9 103 14 158 14s109 -5 159 -14c1 143 3 276 9 345c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-5 -48 -6 -290 -7 -521 c157 -58 261 -161 261 -275zM1108 250c0 93 -82 172 -207 220v-220v-220c125 47 207 127 207 220zM341 470c-125 -47 -207 -127 -207 -220s82 -172 207 -220v220v220zM779 504c-49 9 -103 14 -158 14s-108 -5 -158 -14v-254v-254c49 -9 103 -14 158 -14s108 5 158 14v254 v254'], + 0x2230: [1263,763,1680,80,1600,'1600 250c0 -72 -32 -134 -94 -183c-42 -33 -98 -60 -167 -81c-1 -159 -4 -313 -10 -389c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166 c5 47 6 277 7 503c-90 -17 -196 -26 -317 -28c-1 -138 -3 -266 -9 -332c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c5 45 6 258 7 475 c-121 2 -227 11 -317 28c-1 -148 -3 -289 -9 -360c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c5 49 6 297 7 532c-70 21 -125 49 -167 81 c-62 49 -94 111 -94 183s32 134 94 183c42 33 98 60 167 81c1 159 4 313 10 389c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-5 -47 -6 -277 -7 -503 c90 17 196 26 317 28c1 138 3 266 9 332c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-5 -45 -6 -258 -7 -475c121 -2 227 -11 317 -28 c1 148 3 289 9 360c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-5 -49 -6 -297 -7 -532c70 -21 125 -49 167 -81c62 -49 94 -111 94 -183zM1546 250 c0 56 -25 102 -74 140c-34 27 -78 49 -133 68v-208v-208c55 19 99 41 133 68c49 38 74 84 74 140zM341 458c-55 -19 -99 -41 -133 -68c-49 -38 -74 -84 -74 -140s25 -102 74 -140c34 -27 78 -49 133 -68v208v208zM780 517c-122 -2 -228 -12 -317 -28v-239v-238 c89 -17 194 -27 316 -29v267zM1217 488c-89 17 -194 27 -316 29v-267l-1 -267c122 2 228 12 317 28v239v238'], + 0x2231: [1263,763,818,80,778,'778 316l-71 -102l-102 71l-10 56l72 -50c-17 108 -98 195 -204 220v-261c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11 c43 0 82 48 94 166c7 69 7 530 7 796v261c-118 -27 -207 -134 -207 -261h-54c0 157 113 288 262 316c1 140 3 270 9 337c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11 c-43 0 -82 -48 -94 -166c-5 -45 -6 -262 -7 -480c132 -25 235 -131 257 -264l48 70'], + 0x2232: [1263,763,797,80,757,'757 401l-82 20c31 -49 49 -108 49 -171c0 -157 -113 -288 -262 -316c-1 -140 -3 -270 -9 -337c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11 c43 0 82 48 94 166c5 45 6 262 7 480c-149 28 -261 159 -261 316s113 288 262 316c1 140 3 270 9 337c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166 c-5 -45 -6 -262 -7 -480c33 -6 63 -17 91 -32l-25 -48c-21 11 -43 20 -66 25v-261v-261c118 27 207 134 207 261c0 53 -16 103 -43 145l-20 -85l-30 48l30 121l121 -30zM341 511c-118 -27 -207 -134 -207 -261s88 -233 207 -261v261v261'], + 0x2233: [1263,763,780,80,740,'740 427l-36 -119l-119 37l-27 50l84 -26c-35 71 -100 124 -179 142v-261v-261c118 27 207 134 207 261h54c0 -157 -113 -288 -262 -316c-1 -140 -3 -270 -9 -337c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68 c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c5 45 6 262 7 480c-149 28 -261 159 -261 316s113 288 262 316c1 140 3 270 9 337c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68 c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-5 -45 -6 -262 -7 -480c99 -19 182 -83 226 -170l25 81zM341 511c-118 -27 -207 -134 -207 -261s88 -233 207 -261v261v261'], + 0x22A2: [650,150,1160,80,1080,'1080 224h-948v-374h-52v800h52v-374h948v-52'], + 0x22A3: [650,150,1160,80,1080,'1080 -150h-52v374h-948v52h948v374h52v-800'], + 0x22A4: [650,150,960,80,880,'880 598h-374v-748h-52v748h-374v52h800v-52'], + 0x22A5: [650,150,960,80,880,'880 -150h-800v52h374v748h52v-748h374v-52'], + 0x22C0: [839,326,1040,80,960,'960 -326h-62l-378 1065l-378 -1065h-62l414 1165h52'], + 0x22C1: [826,339,1040,80,960,'960 826l-414 -1165h-52l-414 1165h62l378 -1065l378 1065h62'], + 0x22C2: [844,326,1040,80,960,'960 -326h-58v730c0 211 -171 382 -382 382s-382 -171 -382 -382v-730h-58v730c0 243 197 440 440 440s440 -197 440 -440v-730'], + 0x22C3: [826,344,1040,80,960,'960 96c0 -243 -197 -440 -440 -440s-440 197 -440 440v730h58v-730c0 -211 171 -382 382 -382s382 171 382 382v730h58v-730'], + 0x2308: [749,230,403,124,321,'321 711h-131v-941h-66v979h197v-38'], + 0x2309: [749,230,403,82,279,'279 -230h-66v941h-131v38h197v-979'], + 0x230A: [730,249,403,124,321,'321 -211v-38h-197v979h66v-941h131'], + 0x230B: [730,249,403,82,279,'279 -249h-197v38h131v941h66v-979'], + 0x2329: [780,280,381,82,299,'299 -268l-35 -12l-182 530l182 530l35 -12l-158 -518'], + 0x232A: [780,280,381,82,299,'299 250l-183 -530l-34 12l158 518l-158 518l34 12'], + 0x23B4: [728,-548,750,0,750,'750 548h-38v126h-674v-126h-38v180h750v-180'], + 0x23B5: [-98,278,750,0,750,'750 -278h-750v180h38v-126h674v126h38v-180'], + 0x23DC: [713,-571,1014,0,1014,'1014 585l-14 -14c-58 58 -256 88 -437 88h-112c-181 0 -379 -30 -437 -88l-14 14c61 61 261 128 451 128h112c190 0 390 -67 451 -128'], + 0x23DD: [-121,263,1014,0,1014,'1014 -135c-61 -61 -261 -128 -451 -128h-112c-190 0 -390 67 -451 128l14 14c58 -58 256 -88 437 -88h112c181 0 379 30 437 88'], + 0x23DE: [763,-534,1019,0,1019,'1019 541l-19 -7c-20 56 -92 89 -151 89h-180c-77 0 -137 42 -160 94c-22 -52 -82 -94 -160 -94h-180c-58 0 -130 -33 -150 -89l-19 7c25 69 96 136 169 136h180c78 0 150 31 150 86h20c0 -55 72 -86 150 -86h180c73 0 145 -67 170 -136'], + 0x23DF: [-84,312,1019,0,1019,'1019 -91c-25 -69 -97 -136 -170 -136h-180c-78 0 -150 -31 -150 -85h-20c0 54 -72 85 -150 85h-180c-73 0 -144 67 -169 136l19 7c20 -56 92 -89 150 -89h180c78 0 138 -42 160 -94c23 52 83 94 160 94h180c59 0 131 33 151 89'], + 0x23E0: [734,-548,1066,0,1066,'1066 548h-66l-120 120h-694l-120 -120h-66l186 186h694'], + 0x23E1: [-98,284,1066,0,1066,'1066 -98l-186 -186h-694l-186 186h66l120 -120h694l120 120h66'], + 0x27A1: [470,-30,1350,80,1270,'1270 250l-220 -220v144h-970v152h970v144'], + 0x27E6: [749,249,413,124,331,'331 711h-65v-922h65v-38h-207v998h207v-38zM228 -211v922h-66v-922h66'], + 0x27E7: [749,249,413,82,289,'289 -249h-207v38h65v922h-65v38h207v-998zM251 711h-66v-922h66v922'], + 0x27E8: [780,280,381,82,299,'299 -268l-35 -12l-182 530l182 530l35 -12l-158 -518'], + 0x27E9: [780,280,381,82,299,'299 250l-183 -530l-34 12l158 518l-158 518l34 12'], + 0x27EA: [780,280,579,82,497,'299 -268l-35 -12l-182 530l182 530l35 -12l-158 -518zM497 -268l-34 -12l-182 530l182 530l34 -12l-158 -518'], + 0x27EB: [780,280,579,82,497,'497 250l-182 -530l-34 12l157 518l-157 518l34 12zM299 250l-183 -530l-34 12l158 518l-158 518l34 12'], + 0x27EE: [737,237,334,124,252,'252 723c-47 -47 -62 -235 -62 -413v-120c0 -178 15 -366 62 -413l-14 -14c-50 50 -114 238 -114 427v120c0 189 64 377 114 427'], + 0x27EF: [737,237,334,82,210,'210 190c0 -189 -64 -377 -114 -427l-14 14c47 47 62 235 62 413v120c0 178 -15 366 -62 413l14 14c50 -50 114 -238 114 -427v-120'], + 0x2906: [470,-30,1350,80,1270,'1270 30h-46v118h-977l118 -118h-65l-220 220l220 220h65l-118 -118h977v118h46v-440zM1224 300h-1029l-50 -50l50 -50h1029v100'], + 0x2907: [470,-30,1350,80,1270,'1270 250l-220 -220h-65l118 118h-977v-118h-46v440h46v-118h977l-118 118h65zM1205 250l-50 50h-1029v-100h1029'], + 0x2A00: [816,316,1292,80,1212,'1212 250c0 -312 -254 -566 -566 -566s-566 254 -566 566s254 566 566 566s566 -254 566 -566zM702 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56zM1154 250c0 280 -228 508 -508 508s-508 -228 -508 -508s228 -508 508 -508s508 228 508 508'], + 0x2A01: [816,316,1292,80,1212,'1153 279c-14 257 -221 464 -478 478v-478h478zM617 279v478c-257 -14 -464 -221 -478 -478h478zM617 -257v478h-478c14 -257 221 -464 478 -478zM1153 221h-478v-478c257 14 464 221 478 478zM1212 250c0 -312 -254 -566 -566 -566s-566 254 -566 566s254 566 566 566 s566 -254 566 -566'], + 0x2A02: [816,316,1292,80,1212,'1154 250c0 130 -49 248 -129 338l-338 -338l338 -338c80 90 129 208 129 338zM984 629c-90 80 -208 129 -338 129s-248 -49 -338 -129l338 -338zM605 250l-338 338c-80 -90 -129 -208 -129 -338s49 -248 129 -338zM984 -129l-338 338l-338 -338 c90 -80 208 -129 338 -129s248 49 338 129zM1212 250c0 -312 -254 -566 -566 -566s-566 254 -566 566s254 566 566 566s566 -254 566 -566'], + 0x2A03: [826,344,1040,80,960,'960 96c0 -243 -197 -440 -440 -440s-440 197 -440 440v730h58v-730c0 -211 171 -382 382 -382s382 171 382 382v730h58v-730zM576 250c0 -31 -25 -56 -56 -56s-56 25 -56 56s25 56 56 56s56 -25 56 -56'], + 0x2A04: [826,344,1040,80,960,'960 96c0 -243 -197 -440 -440 -440s-440 197 -440 440v730h58v-730c0 -211 171 -382 382 -382s382 171 382 382v730h58v-730zM720 221h-171v-171h-58v171h-171v58h171v171h58v-171h171v-58'], + 0x2A05: [841,311,1040,80,960,'960 811v-1122h-58v1094h-764v-1094h-58v1123l29 29h822'], + 0x2A06: [811,341,1040,80,960,'960 -311l-29 -30h-822l-29 29v1123h58v-1094h764v1094h58v-1122'], + 0x2A09: [703,203,1065,80,985,'985 -162l-41 -41l-411 412l-412 -412l-41 41l412 412l-412 412l41 41l412 -412l411 412l41 -41l-411 -412'], + 0x2A0C: [1263,763,2064,80,1984,'670 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68 c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360c62 0 107 -45 107 -108zM1108 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28 c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11 c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360c62 0 107 -45 107 -108zM1546 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796 c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360 c62 0 107 -45 107 -108zM1984 1155c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166c-7 -69 -7 -530 -7 -796c0 -218 0 -534 -10 -653c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108 c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166c7 69 7 530 7 796c0 218 0 534 10 653c25 298 117 360 239 360c62 0 107 -45 107 -108'], + 0x2A11: [1263,763,818,80,778,'778 184l-10 -56l-48 70c-22 -133 -126 -239 -258 -264c-1 -140 -3 -270 -9 -337c-25 -298 -117 -360 -239 -360c-62 0 -107 45 -107 108c0 39 24 68 66 68c37 0 66 -21 66 -68c0 -5 -4 -19 -11 -28c-5 -7 -8 -12 -8 -18c0 -5 7 -11 20 -11c43 0 82 48 94 166 c5 45 6 262 7 480c-149 28 -261 159 -261 316h54c0 -127 88 -233 207 -261v261c0 218 0 534 10 653c25 298 117 360 239 360c62 0 107 -45 107 -108c0 -39 -24 -68 -66 -68c-37 0 -66 21 -66 68c0 5 4 19 11 28c5 7 8 12 8 18c0 5 -7 11 -20 11c-43 0 -82 -48 -94 -166 c-7 -69 -7 -530 -7 -796v-261c105 24 187 112 204 220l-72 -50l10 56l102 71'], + 0x2B04: [470,-30,1411,80,1331,'1331 250l-220 -220h-44v126h-724v-126h-43l-220 220l220 220h44l-1 -126h724v126h44zM1280 250l-177 177v-119h-796v119l-176 -177l176 -177v119h796v-119'], + 0x2B05: [470,-30,1350,80,1270,'1270 174h-970v-144l-220 220l220 220v-144h970v-152'], + 0x2B06: [850,340,600,80,520,'520 630h-144v-970h-152v970h-144l220 220'], + 0x2B07: [840,350,600,80,520,'520 -130l-220 -220l-220 220h144v970h152v-970h144'], + 0x2B0C: [470,-30,1360,80,1280,'1280 250l-220 -220v144h-760v-144l-220 220l220 220v-144h760v144'], + 0x2B0D: [850,350,600,80,520,'520 -130l-220 -220l-220 220h144v760h-144l220 220l220 -220h-144v-760h144'], + 0x2B31: [830,330,1170,80,1090,'1090 -176h-919l154 -154h-65l-180 180l180 180h65l-154 -154h919v-52zM1090 224h-919l154 -154h-65l-180 180l180 180h65l-154 -154h919v-52zM1090 624h-919l154 -154h-65l-180 180l180 180h65l-154 -154h919v-52'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size1/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size2/Regular/Main.js new file mode 100644 index 0000000..3054f19 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size2/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'GyreTermesMathJax_Size2', + id: 'GYRETERMESSIZE2', + 0x20: [0,0,250,0,0,''], + 0x28: [834,334,457,127,372,'372 -318l-13 -16c-114 86 -232 313 -232 520v128c0 207 118 434 232 520l13 -16c-107 -80 -168 -311 -168 -504v-128c0 -193 61 -424 168 -504'], + 0x29: [834,334,457,85,330,'330 186c0 -207 -119 -434 -233 -520l-12 16c107 80 168 311 168 504v128c0 193 -61 424 -168 504l12 16c114 -86 233 -313 233 -520v-128'], + 0x2F: [936,436,658,80,578,'578 936l-446 -1372h-52l446 1372h52'], + 0x5B: [845,345,418,127,333,'333 807h-138v-1114h138v-38h-206v1190h206v-38'], + 0x5C: [936,436,658,80,578,'578 -436h-52l-446 1372h52'], + 0x5D: [845,345,418,85,291,'291 -345h-206v38h138v1114h-138v38h206v-1190'], + 0x7B: [836,336,435,85,350,'350 -316l-6 -20c-81 22 -162 99 -162 186v224c0 85 -34 166 -97 166v20c63 0 97 81 97 166v224c0 87 81 164 162 186l6 -20c-64 -17 -100 -97 -100 -166v-224c0 -87 -51 -152 -113 -176c62 -24 113 -89 113 -176v-224c0 -69 36 -149 100 -166'], + 0x7C: [826,326,209,80,129,'129 -326h-49v1152h49v-1152'], + 0x7D: [836,336,435,85,350,'350 240c-64 0 -97 -81 -97 -166v-224c0 -87 -82 -164 -163 -186l-5 20c64 17 100 97 100 166v224c0 87 51 152 113 176c-62 24 -113 89 -113 176v224c0 69 -36 149 -100 166l5 20c81 -22 163 -99 163 -186v-224c0 -85 33 -166 97 -166v-20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [698,-537,727,0,727,'727 557l-7 -20c-120 33 -239 70 -357 111c-117 -41 -236 -78 -356 -111l-7 20c119 51 241 98 363 141c123 -43 245 -90 364 -141'], + 0x303: [688,-532,720,0,720,'720 662c-46 -70 -91 -115 -167 -127c-10 -2 -20 -3 -30 -3c-61 0 -119 28 -174 57c-47 25 -97 52 -150 52c-8 0 -16 -1 -24 -2c-65 -11 -117 -32 -157 -93l-18 12c47 70 92 115 167 127c11 2 21 3 31 3c60 0 118 -28 173 -57c48 -25 98 -52 150 -52c8 0 16 1 24 2 c66 11 117 32 157 93'], + 0x306: [694,-542,740,0,740,'740 688c-46 -137 -217 -146 -370 -146s-324 9 -370 146l20 6c35 -105 209 -105 350 -105s315 0 350 105'], + 0x30C: [693,-532,727,0,727,'727 673c-119 -51 -241 -98 -364 -141c-122 43 -244 90 -363 141l7 20c120 -33 239 -70 356 -111c118 41 237 78 357 111'], + 0x311: [707,-554,740,0,740,'740 560l-20 -6c-35 105 -209 106 -350 106s-315 -1 -350 -106l-20 6c46 137 217 147 370 147s324 -10 370 -147'], + 0x32C: [-70,231,727,0,727,'727 -90c-119 -51 -241 -98 -364 -141c-122 43 -244 90 -363 141l7 20c120 -33 239 -70 356 -111c118 41 237 78 357 111'], + 0x32D: [-80,241,727,0,727,'727 -221l-7 -20c-120 34 -239 71 -357 111c-117 -40 -236 -77 -356 -111l-7 20c119 52 241 99 363 141c123 -42 245 -89 364 -141'], + 0x32E: [-70,223,740,0,740,'740 -77c-46 -136 -217 -146 -370 -146s-324 10 -370 146l20 7c35 -106 209 -106 350 -106s315 0 350 106'], + 0x32F: [-88,241,740,0,740,'740 -234l-20 -7c-35 106 -209 106 -350 106s-315 0 -350 -106l-20 7c46 136 217 146 370 146s324 -10 370 -146'], + 0x330: [-88,244,720,0,720,'720 -114c-46 -70 -91 -115 -167 -127c-10 -2 -20 -3 -30 -3c-61 0 -119 28 -174 57c-47 26 -97 52 -150 52c-8 0 -16 0 -24 -2c-65 -11 -117 -32 -157 -93l-18 12c47 70 92 115 167 128c11 1 21 2 31 2c60 0 118 -28 173 -57c48 -25 98 -52 150 -52c8 0 16 1 24 2 c66 11 117 32 157 93'], + 0x2016: [826,326,358,80,278,'129 -326h-49v1152h49v-1152zM278 -326h-49v1152h49v-1152'], + 0x2044: [936,436,658,80,578,'578 936l-446 -1372h-52l446 1372h52'], + 0x20E9: [732,-548,1125,0,1125,'1125 732v-184h-38v126h-1049v-126h-38v184h1125'], + 0x221A: [1000,474,621,120,647,'647 948h-82l-180 -1422h-38h-38l-133 634h-56v44h148l94 -450l157 1246h128v-52'], + 0x2223: [826,326,209,80,129,'129 -326h-49v1152h49v-1152'], + 0x2225: [826,326,358,80,278,'129 -326h-49v1152h49v-1152zM278 -326h-49v1152h49v-1152'], + 0x2308: [845,326,418,127,333,'333 807h-138v-1133h-68v1171h206v-38'], + 0x2309: [845,326,418,85,291,'291 -326h-68v1133h-138v38h206v-1171'], + 0x230A: [826,345,418,127,333,'333 -345h-206v1171h68v-1133h138v-38'], + 0x230B: [826,345,418,85,291,'291 -345h-206v38h138v1133h68v-1171'], + 0x2329: [941,441,409,85,324,'324 -432l-35 -9l-204 691l204 691l35 -9l-176 -682'], + 0x232A: [941,441,409,85,324,'324 250l-204 -691l-35 9l176 682l-176 682l35 9'], + 0x23B4: [732,-548,1125,0,1125,'1125 732v-184h-38v126h-1049v-126h-38v184h1125'], + 0x23B5: [-98,282,1125,0,1125,'1125 -282h-1125v184h38v-126h1049v126h38v-184'], + 0x23DC: [732,-541,1514,0,1514,'1514 555l-14 -14c-84 84 -373 133 -639 133h-208c-266 0 -555 -49 -639 -133l-14 14c87 87 377 177 653 177h208c276 0 566 -90 653 -177'], + 0x23DD: [-91,282,1514,0,1514,'1514 -105c-87 -87 -377 -177 -653 -177h-208c-276 0 -566 90 -653 177l14 14c84 -84 373 -133 639 -133h208c266 0 555 49 639 133'], + 0x23DE: [766,-533,1519,0,1519,'1519 539l-19 -6c-21 58 -124 89 -220 89h-292c-112 0 -200 50 -229 106c-28 -56 -116 -106 -229 -106h-292c-95 0 -198 -31 -219 -89l-19 6c25 69 127 141 238 141h292c116 0 219 28 219 86h20c0 -58 103 -86 219 -86h292c112 0 214 -72 239 -141'], + 0x23DF: [-83,316,1519,0,1519,'1519 -89c-25 -69 -127 -141 -239 -141h-292c-116 0 -219 -28 -219 -86h-20c0 58 -103 86 -219 86h-292c-111 0 -213 72 -238 141l19 6c21 -58 124 -89 219 -89h292c113 0 201 -50 229 -106c29 56 117 106 229 106h292c96 0 199 31 220 89'], + 0x23E0: [736,-547,1568,0,1568,'1568 547h-68l-121 121h-1190l-121 -121h-68l189 189h1190'], + 0x23E1: [-97,286,1568,0,1568,'1568 -97l-189 -189h-1190l-189 189h68l121 -121h1190l121 121h68'], + 0x27E6: [845,345,425,127,340,'340 807h-68v-1114h68v-38h-213v1190h213v-38zM234 -307v1114h-69v-1114h69'], + 0x27E7: [845,345,425,85,298,'298 845v-1190h-213v38h68v1114h-68v38h213zM260 807h-69v-1114h69v1114'], + 0x27E8: [941,441,409,85,324,'324 -432l-35 -9l-204 691l204 691l35 -9l-176 -682'], + 0x27E9: [941,441,409,85,324,'324 250l-204 -691l-35 9l176 682l-176 682l35 9'], + 0x27EA: [941,441,620,85,535,'324 -432l-35 -9l-204 691l204 691l35 -9l-176 -682zM535 -432l-35 -9l-204 691l204 691l35 -9l-176 -682'], + 0x27EB: [941,441,620,85,535,'535 250l-204 -691l-35 9l176 682l-176 682l35 9zM324 250l-204 -691l-35 9l176 682l-176 682l35 9'], + 0x27EE: [833,333,347,127,262,'262 819c-51 -51 -67 -265 -67 -473v-192c0 -208 16 -422 67 -473l-14 -14c-53 53 -121 268 -121 487v192c0 219 68 434 121 487'], + 0x27EF: [833,333,347,85,220,'220 154c0 -219 -68 -434 -121 -487l-14 14c51 51 67 265 67 473v192c0 208 -16 422 -67 473l14 14c53 -53 121 -268 121 -487v-192'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size2/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size3/Regular/Main.js new file mode 100644 index 0000000..6ababd0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size3/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'GyreTermesMathJax_Size3', + id: 'GYRETERMESSIZE3', + 0x20: [0,0,250,0,0,''], + 0x28: [949,449,491,131,404,'404 -433l-13 -16c-128 97 -260 365 -260 613v172c0 248 132 516 260 613l13 -16c-122 -91 -192 -364 -192 -597v-172c0 -233 70 -506 192 -597'], + 0x29: [949,449,491,87,360,'360 164c0 -248 -132 -516 -261 -613l-12 16c121 91 192 364 192 597v172c0 233 -71 506 -192 597l12 16c129 -97 261 -365 261 -613v-172'], + 0x2F: [1149,649,798,80,718,'718 1149l-584 -1798h-54l584 1798h54'], + 0x5B: [961,461,434,131,347,'347 -421v-40h-216v1422h216v-40h-144v-1342h144'], + 0x5C: [1149,649,798,80,718,'718 -649h-54l-584 1798h54'], + 0x5D: [961,461,434,87,303,'303 961v-1422h-216v40h144v1342h-144v40h216'], + 0x7B: [951,451,459,87,372,'372 -431l-6 -20c-86 24 -174 111 -174 212v287c0 99 -36 192 -105 192v20c69 0 105 93 105 192v287c0 101 88 188 174 212l6 -20c-70 -18 -108 -111 -108 -192v-287c0 -100 -58 -176 -125 -202c67 -26 125 -102 125 -202v-287c0 -81 38 -174 108 -192'], + 0x7C: [941,441,211,80,131,'131 -441h-51v1382h51v-1382'], + 0x7D: [951,451,459,87,372,'372 240c-70 0 -105 -93 -105 -192v-287c0 -101 -88 -188 -175 -212l-5 20c70 18 108 111 108 192v287c0 100 57 176 125 202c-68 26 -125 102 -125 202v287c0 81 -38 174 -108 192l5 20c87 -24 175 -111 175 -212v-287c0 -99 35 -192 105 -192v-20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [698,-536,870,0,870,'870 558l-6 -22l-429 112l-429 -112l-6 22c144 51 289 98 435 140c147 -42 292 -89 435 -140'], + 0x303: [688,-532,863,0,863,'863 663c-55 -69 -112 -115 -205 -128c-12 -2 -23 -3 -35 -3c-69 0 -136 28 -201 56c-58 25 -118 52 -181 52c-9 0 -19 -1 -29 -2c-83 -12 -146 -33 -195 -95l-17 14c55 69 112 115 205 128c12 2 23 3 35 3c69 0 137 -28 201 -56c58 -25 119 -52 181 -52c10 0 19 1 29 2 c84 12 146 33 195 95'], + 0x306: [694,-541,885,0,885,'885 688c-49 -147 -263 -147 -443 -147c-179 0 -393 0 -442 147l21 6c35 -105 253 -105 421 -105c169 0 387 0 422 105'], + 0x30C: [694,-532,870,0,870,'870 672c-143 -51 -288 -98 -435 -140c-146 42 -291 89 -435 140l6 22l429 -112l429 112'], + 0x311: [707,-554,885,0,885,'885 560l-21 -6c-35 105 -253 105 -422 105c-168 0 -386 0 -421 -105l-21 6c49 147 263 147 442 147c180 0 394 0 443 -147'], + 0x32C: [-70,232,870,0,870,'870 -91c-143 -51 -288 -98 -435 -141c-146 43 -291 90 -435 141l6 21l429 -112l429 112'], + 0x32D: [-80,242,870,0,870,'870 -220l-6 -22l-429 112l-429 -112l-6 22c144 51 289 98 435 140c147 -42 292 -89 435 -140'], + 0x32E: [-70,223,885,0,885,'885 -77c-49 -146 -263 -146 -443 -146c-179 0 -393 0 -442 146l21 7c35 -105 253 -105 421 -105c169 0 387 0 422 105'], + 0x32F: [-88,241,885,0,885,'885 -235l-21 -6c-35 105 -253 105 -422 105c-168 0 -386 0 -421 -105l-21 6c49 147 263 147 442 147c180 0 394 0 443 -147'], + 0x330: [-88,244,863,0,863,'863 -113c-55 -69 -112 -115 -205 -128c-12 -2 -23 -3 -35 -3c-69 0 -136 28 -201 56c-58 26 -118 52 -181 52c-9 0 -19 -1 -29 -2c-83 -12 -146 -33 -195 -95l-17 14c55 69 112 115 205 129c12 1 23 2 35 2c69 0 137 -28 201 -56c58 -25 119 -52 181 -52c10 0 19 1 29 2 c84 12 146 33 195 95'], + 0x2016: [941,441,362,80,282,'131 -441h-51v1382h51v-1382zM282 -441h-51v1382h51v-1382'], + 0x2044: [1149,649,798,80,718,'718 1149l-584 -1798h-54l584 1798h54'], + 0x20E9: [736,-548,1500,0,1500,'1500 736v-188h-40v126h-1420v-126h-40v188h1500'], + 0x221A: [1192,666,634,120,660,'660 1140h-108l-151 -1806h-38h-38l-149 846h-56v44h148l105 -597l131 1565h156v-52'], + 0x2223: [941,441,211,80,131,'131 -441h-51v1382h51v-1382'], + 0x2225: [941,441,362,80,282,'131 -441h-51v1382h51v-1382zM282 -441h-51v1382h51v-1382'], + 0x2308: [961,441,434,131,347,'347 921h-144v-1362h-72v1402h216v-40'], + 0x2309: [961,441,434,87,303,'303 -441h-72v1362h-144v40h216v-1402'], + 0x230A: [941,461,434,131,347,'347 -421v-40h-216v1402h72v-1362h144'], + 0x230B: [941,461,434,87,303,'303 941v-1402h-216v40h144v1362h72'], + 0x2329: [1153,653,439,87,352,'352 -645l-35 -8l-230 903l230 903l35 -8l-197 -895'], + 0x232A: [1153,653,439,87,352,'352 250l-230 -903l-35 8l198 895l-198 895l35 8'], + 0x23B4: [736,-548,1500,0,1500,'1500 736v-188h-40v126h-1420v-126h-40v188h1500'], + 0x23B5: [-98,286,1500,0,1500,'1500 -286h-1500v188h40v-126h1420v126h40v-188'], + 0x23DC: [736,-541,2014,0,2014,'2014 555l-14 -14c-86 86 -458 133 -826 133h-334c-368 0 -740 -47 -826 -133l-14 14c88 88 462 181 840 181h334c378 0 752 -93 840 -181'], + 0x23DD: [-91,286,2014,0,2014,'2014 -105c-88 -88 -462 -181 -840 -181h-334c-378 0 -752 93 -840 181l14 14c86 -86 458 -133 826 -133h334c368 0 740 47 826 133'], + 0x23DE: [771,-532,2019,0,2019,'2019 539l-19 -7c-22 61 -153 90 -283 90h-416c-144 0 -258 55 -292 114c-33 -59 -147 -114 -292 -114h-416c-129 0 -260 -29 -282 -90l-19 7c25 69 155 145 301 145h416c151 0 282 26 282 87h20c0 -61 131 -87 282 -87h416c147 0 277 -76 302 -145'], + 0x23DF: [-82,320,2019,0,2019,'2019 -89c-25 -69 -155 -145 -302 -145h-416c-151 0 -282 -26 -282 -86h-20c0 60 -131 86 -282 86h-416c-146 0 -276 76 -301 145l19 7c22 -61 153 -90 282 -90h416c145 0 259 -55 292 -114c34 59 148 114 292 114h416c130 0 261 29 283 90'], + 0x23E0: [738,-545,2072,0,2072,'2072 545h-72l-121 121h-1686l-121 -121h-72l193 193h1686'], + 0x23E1: [-95,288,2072,0,2072,'2072 -95l-193 -193h-1686l-193 193h72l121 -121h1686l121 121h72'], + 0x27E6: [961,461,442,131,355,'355 -421v-40h-224v1422h224v-40h-72v-1342h72zM243 -421v1342h-72v-1342h72'], + 0x27E7: [961,461,442,87,311,'311 -461h-224v40h72v1342h-72v40h224v-1422zM271 921h-72v-1342h72v1342'], + 0x27E8: [1153,653,439,87,352,'352 -645l-35 -8l-230 903l230 903l35 -8l-197 -895'], + 0x27E9: [1153,653,439,87,352,'352 250l-230 -903l-35 8l198 895l-198 895l35 8'], + 0x27EA: [1153,653,665,87,578,'352 -645l-35 -8l-230 903l230 903l35 -8l-197 -895zM578 -645l-35 -8l-230 903l230 903l35 -8l-198 -895'], + 0x27EB: [1153,653,665,87,578,'578 250l-230 -903l-35 8l197 895l-197 895l35 8zM352 250l-230 -903l-35 8l198 895l-198 895l35 8'], + 0x27EE: [948,448,363,131,276,'276 934c-55 -55 -73 -299 -73 -540v-288c0 -241 18 -485 73 -540l-14 -14c-58 58 -131 303 -131 554v288c0 251 73 496 131 554'], + 0x27EF: [948,448,363,87,232,'232 106c0 -251 -73 -496 -131 -554l-14 14c55 55 73 299 73 540v288c0 241 -18 485 -73 540l14 14c58 -58 131 -303 131 -554v-288'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size3/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size4/Regular/Main.js new file mode 100644 index 0000000..457df3a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size4/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'GyreTermesMathJax_Size4', + id: 'GYRETERMESSIZE4', + 0x20: [0,0,250,0,0,''], + 0x28: [1087,587,530,135,440,'440 -571l-13 -16c-145 109 -292 426 -292 722v230c0 296 147 613 292 722l13 -16c-138 -104 -220 -425 -220 -706v-230c0 -281 82 -602 220 -706'], + 0x29: [1087,587,530,90,395,'395 135c0 -296 -148 -613 -293 -722l-12 16c138 104 220 425 220 706v230c0 281 -82 602 -220 706l12 16c145 -109 293 -426 293 -722v-230'], + 0x2F: [1428,928,982,80,902,'902 1428l-766 -2356h-56l766 2356h56'], + 0x5B: [1099,599,453,135,363,'363 -599h-228v1698h228v-40h-152v-1618h152v-40'], + 0x5C: [1428,928,982,80,902,'902 -928h-56l-766 2356h56'], + 0x5D: [1099,599,453,90,318,'318 1099v-1698h-228v40h152v1618h-152v40h228'], + 0x7B: [1089,589,487,90,397,'397 -569l-6 -20c-92 25 -187 125 -187 241v367c0 115 -39 221 -114 221v20c75 0 114 106 114 221v367c0 116 95 216 187 241l6 -20c-76 -20 -117 -126 -117 -221v-367c0 -115 -64 -202 -138 -231c74 -29 138 -116 138 -231v-367c0 -95 41 -201 117 -221'], + 0x7C: [1079,579,213,80,133,'133 -579h-53v1658h53v-1658'], + 0x7D: [1089,589,487,90,397,'397 240c-76 0 -114 -106 -114 -221v-367c0 -116 -95 -216 -188 -241l-5 20c76 20 117 126 117 221v367c0 115 64 202 138 231c-74 29 -138 116 -138 231v367c0 95 -41 201 -117 221l5 20c93 -25 188 -125 188 -241v-367c0 -115 38 -221 114 -221v-20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [699,-536,1041,0,1041,'1041 558l-5 -22l-515 111l-516 -111l-5 22l521 141'], + 0x303: [687,-533,1037,0,1037,'1037 666c-64 -69 -135 -116 -250 -131c-15 -1 -29 -2 -43 -2c-79 0 -158 26 -234 53c-71 26 -143 51 -217 51c-12 0 -24 0 -37 -2c-106 -13 -181 -34 -239 -97l-17 16c63 69 134 116 250 131c14 1 28 2 42 2c80 0 158 -26 235 -53c70 -26 142 -51 216 -51 c13 0 25 0 37 2c106 13 182 34 239 97'], + 0x306: [695,-540,1058,0,1058,'1058 687c-49 -147 -317 -147 -529 -147c-213 0 -480 0 -529 147l22 8c35 -105 307 -105 507 -105s472 0 507 105'], + 0x30C: [694,-531,1041,0,1041,'1041 672l-520 -141l-521 141l5 22l516 -111l515 111'], + 0x311: [708,-553,1058,0,1058,'1058 561l-22 -8c-35 105 -307 105 -507 105s-472 0 -507 -105l-22 8c49 147 316 147 529 147c212 0 480 0 529 -147'], + 0x32C: [-70,233,1041,0,1041,'1041 -92l-520 -141l-521 141l5 22l516 -111l515 111'], + 0x32D: [-80,243,1041,0,1041,'1041 -221l-5 -22l-515 112l-516 -112l-5 22l521 141'], + 0x32E: [-70,225,1058,0,1058,'1058 -77c-49 -148 -317 -148 -529 -148c-213 0 -480 0 -529 148l22 7c35 -105 307 -105 507 -105s472 0 507 105'], + 0x32F: [-88,243,1058,0,1058,'1058 -235l-22 -8c-35 105 -307 105 -507 105s-472 0 -507 -105l-22 8c49 147 316 147 529 147c212 0 480 0 529 -147'], + 0x330: [-88,243,1037,0,1037,'1037 -109c-64 -69 -135 -116 -250 -131c-15 -2 -29 -3 -43 -3c-79 0 -158 27 -234 54c-71 25 -143 51 -217 51c-12 0 -24 -1 -37 -2c-106 -14 -181 -34 -239 -97l-17 16c63 68 134 116 250 130c14 2 28 3 42 3c80 0 158 -27 235 -54c70 -25 142 -51 216 -51 c13 0 25 1 37 3c106 13 182 34 239 96'], + 0x2016: [1079,579,366,80,286,'133 -579h-53v1658h53v-1658zM286 -579h-53v1658h53v-1658'], + 0x2044: [1428,928,982,80,902,'902 1428l-766 -2356h-56l766 2356h56'], + 0x20E9: [742,-548,1875,0,1875,'1875 548h-40v126h-1795v-126h-40v194h1875v-194'], + 0x221A: [1384,858,647,120,673,'673 1332h-134l-116 -2190h-38h-38l-172 1057h-55v44h149l121 -747l100 1888h183v-52'], + 0x2223: [1079,579,213,80,133,'133 -579h-53v1658h53v-1658'], + 0x2225: [1079,579,366,80,286,'133 -579h-53v1658h53v-1658zM286 -579h-53v1658h53v-1658'], + 0x2308: [1099,579,453,135,363,'363 1099v-40h-152v-1638h-76v1678h228'], + 0x2309: [1099,579,453,90,318,'318 -579h-76v1638h-152v40h228v-1678'], + 0x230A: [1079,599,453,135,363,'363 -599h-228v1678h76v-1638h152v-40'], + 0x230B: [1079,599,453,90,318,'318 1079v-1678h-228v40h152v1638h76'], + 0x2329: [1432,932,474,90,384,'384 1425l-222 -1175l222 -1174l-35 -8l-259 1182l259 1182'], + 0x232A: [1432,932,474,90,384,'384 250l-259 -1182l-35 8l222 1174l-222 1175l35 7'], + 0x23B4: [742,-548,1875,0,1875,'1875 548h-40v126h-1795v-126h-40v194h1875v-194'], + 0x23B5: [-98,292,1875,0,1875,'1875 -292h-1875v194h40v-126h1795v126h40v-194'], + 0x23DC: [742,-541,2514,0,2514,'2514 555l-14 -14c-87 88 -537 133 -1000 133h-486c-462 0 -912 -45 -1000 -133l-14 14c89 90 541 187 1014 187h486c473 0 925 -97 1014 -187'], + 0x23DD: [-91,292,2514,0,2514,'2514 -105c-89 -90 -541 -187 -1014 -187h-486c-473 0 -925 97 -1014 187l14 14c88 -88 538 -133 1000 -133h486c463 0 913 45 1000 133'], + 0x23DE: [777,-530,2519,0,2519,'2519 537l-19 -7c-23 64 -179 91 -338 91h-556c-172 0 -309 61 -347 123c-37 -62 -174 -123 -347 -123h-556c-159 0 -314 -27 -337 -91l-19 7c26 71 180 152 356 152h556c182 0 337 24 337 88h20c0 -64 156 -88 337 -88h556c177 0 331 -81 357 -152'], + 0x23DF: [-80,326,2519,0,2519,'2519 -87c-26 -71 -180 -152 -357 -152h-556c-181 0 -337 -24 -337 -87h-20c0 63 -155 87 -337 87h-556c-176 0 -330 81 -356 152l19 7c23 -64 178 -91 337 -91h556c173 0 310 -61 347 -123c38 62 175 123 347 123h556c159 0 315 27 338 91'], + 0x23E0: [741,-543,2576,0,2576,'2576 543h-76l-122 122h-2180l-122 -122h-76l198 198h2180'], + 0x23E1: [-93,291,2576,0,2576,'2576 -93l-198 -198h-2180l-198 198h76l122 -122h2180l122 122h76'], + 0x27E6: [1099,599,457,135,367,'367 -599h-232v1698h232v-40h-76v-1618h76v-40zM251 1059h-76v-1618h76v1618'], + 0x27E7: [1099,599,457,90,322,'322 -599h-232v40h76v1618h-76v40h232v-1698zM282 -559v1618h-76v-1618h76'], + 0x27E8: [1432,932,474,90,384,'384 1425l-222 -1175l222 -1174l-35 -8l-259 1182l259 1182'], + 0x27E9: [1432,932,474,90,384,'384 250l-259 -1182l-35 8l222 1174l-222 1175l35 7'], + 0x27EA: [1432,932,714,90,624,'384 1425l-222 -1175l222 -1174l-35 -8l-259 1182l259 1182zM624 1425l-221 -1175l221 -1174l-35 -8l-259 1182l259 1182'], + 0x27EB: [1432,932,714,90,624,'624 250l-259 -1182l-35 8l222 1174l-222 1175l35 7zM384 250l-259 -1182l-35 8l222 1174l-222 1175l35 7'], + 0x27EE: [1086,586,382,135,292,'292 1072c-61 -61 -81 -339 -81 -615v-414c0 -276 20 -554 81 -615l-14 -14c-63 63 -143 342 -143 629v414c0 287 80 566 143 629'], + 0x27EF: [1086,586,382,90,247,'247 43c0 -287 -80 -566 -143 -629l-14 14c61 61 81 339 81 615v414c0 276 -20 554 -81 615l14 14c63 -63 143 -342 143 -629v-414'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size4/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size5/Regular/Main.js new file mode 100644 index 0000000..55c9299 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size5/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'GyreTermesMathJax_Size5', + id: 'GYRETERMESSIZE5', + 0x20: [0,0,250,0,0,''], + 0x28: [1253,753,575,139,482,'482 -737l-13 -16c-164 124 -330 499 -330 851v304c0 352 166 727 330 851l13 -16c-158 -119 -254 -498 -254 -835v-304c0 -337 96 -716 254 -835'], + 0x29: [1253,753,575,93,436,'436 98c0 -352 -166 -727 -331 -851l-12 16c158 119 254 498 254 835v304c0 337 -96 716 -254 835l12 16c165 -124 331 -499 331 -851v-304'], + 0x2F: [1793,1293,1222,80,1142,'1142 1793l-1003 -3086h-59l1003 3086h59'], + 0x5B: [1266,766,472,139,379,'379 1224h-160v-1948h160v-42h-240v2032h240v-42'], + 0x5C: [1793,1293,1222,80,1142,'1142 -1293h-59l-1003 3086h59'], + 0x5D: [1266,766,472,93,333,'333 1266v-2032h-240v42h160v1948h-160v42h240'], + 0x7B: [1255,755,517,93,424,'424 -735l-6 -20c-99 27 -201 141 -201 273v469c0 132 -42 253 -124 253v20c82 0 124 121 124 253v469c0 132 102 246 201 273l6 -20c-83 -22 -127 -143 -127 -253v-469c0 -132 -71 -232 -152 -263c81 -31 152 -131 152 -263v-469c0 -110 44 -231 127 -253'], + 0x7C: [1245,745,216,80,136,'136 -745h-56v1990h56v-1990'], + 0x7D: [1255,755,517,93,424,'424 240c-83 0 -124 -121 -124 -253v-469c0 -132 -103 -246 -202 -273l-5 20c83 22 127 143 127 253v469c0 132 71 232 152 263c-81 31 -152 131 -152 263v469c0 110 -44 231 -127 253l5 20c99 -27 202 -141 202 -273v-469c0 -132 41 -253 124 -253v-20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [699,-536,1249,0,1249,'1249 558l-5 -22l-620 111l-619 -111l-5 22l624 141'], + 0x303: [687,-533,1241,0,1241,'1241 668c-71 -68 -158 -117 -302 -132c-17 -2 -34 -3 -50 -3c-93 0 -185 26 -276 53c-85 25 -172 50 -260 50c-15 0 -30 -1 -45 -2c-135 -15 -226 -35 -292 -98l-16 16c71 68 158 117 302 132c17 2 34 3 50 3c94 0 186 -26 276 -53c85 -25 172 -50 260 -50 c15 0 30 1 45 2c135 15 226 35 293 98'], + 0x306: [695,-540,1266,0,1266,'1266 687c-49 -147 -381 -147 -633 -147s-584 0 -633 147l22 8c35 -104 372 -104 611 -104s576 0 611 104'], + 0x30C: [694,-531,1249,0,1249,'1249 672l-625 -141l-624 141l5 22l619 -111l620 111'], + 0x311: [709,-553,1266,0,1266,'1266 561l-22 -8c-35 104 -372 105 -611 105s-576 -1 -611 -105l-22 8c49 147 381 148 633 148s584 -1 633 -148'], + 0x32C: [-70,233,1249,0,1249,'1249 -93l-625 -140l-624 140l5 23l619 -111l620 111'], + 0x32D: [-80,243,1249,0,1249,'1249 -221l-5 -22l-620 111l-619 -111l-5 22l624 141'], + 0x32E: [-70,225,1266,0,1266,'1266 -77c-49 -148 -381 -148 -633 -148s-584 0 -633 148l22 7c35 -104 372 -104 611 -104s576 0 611 104'], + 0x32F: [-88,243,1266,0,1266,'1266 -236l-22 -7c-35 104 -372 104 -611 104s-576 0 -611 -104l-22 7c49 148 381 148 633 148s584 0 633 -148'], + 0x330: [-88,242,1241,0,1241,'1241 -107c-71 -68 -158 -117 -302 -133c-17 -1 -34 -2 -50 -2c-93 0 -185 26 -276 52c-85 25 -172 51 -260 51c-15 0 -30 -1 -45 -2c-135 -15 -226 -35 -292 -98l-16 16c71 68 158 117 302 132c17 2 34 3 50 3c94 0 186 -26 276 -53c85 -25 172 -50 260 -50 c15 0 30 1 45 2c135 15 226 35 293 98'], + 0x2016: [1245,745,372,80,292,'136 -745h-56v1990h56v-1990zM292 -745h-56v1990h56v-1990'], + 0x2044: [1793,1293,1222,80,1142,'1142 1793l-1003 -3086h-59l1003 3086h59'], + 0x20E9: [750,-548,2250,0,2250,'2250 750v-202h-42v126h-2166v-126h-42v202h2250'], + 0x221A: [1576,1050,661,120,687,'687 1524h-160l-69 -2574h-38h-38l-207 1268h-55v44h149l148 -910l59 2224h211v-52'], + 0x2223: [1245,745,216,80,136,'136 -745h-56v1990h56v-1990'], + 0x2225: [1245,745,372,80,292,'136 -745h-56v1990h56v-1990zM292 -745h-56v1990h56v-1990'], + 0x2308: [1266,745,472,139,379,'379 1224h-160v-1969h-80v2011h240v-42'], + 0x2309: [1266,745,472,93,333,'333 -745h-80v1969h-160v42h240v-2011'], + 0x230A: [1245,766,472,139,379,'379 -724v-42h-240v2011h80v-1969h160'], + 0x230B: [1245,766,472,93,333,'333 1245v-2011h-240v42h160v1969h80'], + 0x2329: [1796,1296,510,93,417,'417 1790l-247 -1540l247 -1540l-35 -6l-289 1546l289 1546'], + 0x232A: [1796,1296,510,93,417,'417 250l-289 -1546l-35 6l247 1540l-247 1540l36 6'], + 0x23B4: [750,-548,2250,0,2250,'2250 750v-202h-42v126h-2166v-126h-42v202h2250'], + 0x23B5: [-98,300,2250,0,2250,'2250 -300h-2250v202h42v-126h2166v126h42v-202'], + 0x23DC: [750,-541,3014,0,3014,'3014 555l-14 -14c-90 89 -611 133 -1160 133h-666c-548 0 -1070 -44 -1160 -133l-14 14c91 91 615 195 1174 195h666c559 0 1083 -104 1174 -195'], + 0x23DD: [-91,300,3014,0,3014,'3014 -105c-91 -91 -615 -195 -1174 -195h-666c-559 0 -1083 104 -1174 195l14 14c90 -89 612 -133 1160 -133h666c549 0 1070 44 1160 133'], + 0x23DE: [784,-527,3019,0,3019,'3019 534l-19 -7c-24 67 -202 92 -387 92h-708c-198 0 -355 67 -396 133c-40 -66 -198 -133 -396 -133h-708c-184 0 -362 -25 -386 -92l-19 7c27 73 203 161 405 161h708c209 0 386 22 386 89h20c0 -67 178 -89 386 -89h708c203 0 379 -88 406 -161'], + 0x23DF: [-77,333,3019,0,3019,'3019 -84c-27 -73 -203 -161 -406 -161h-708c-208 0 -386 -22 -386 -88h-20c0 66 -177 88 -386 88h-708c-202 0 -378 88 -405 161l19 7c24 -67 202 -92 386 -92h708c198 0 356 -67 396 -133c41 66 198 133 396 133h708c185 0 363 25 387 92'], + 0x23E0: [745,-541,3080,0,3080,'3080 541h-80l-124 124h-2672l-124 -124h-80l204 204h2672'], + 0x23E1: [-91,295,3080,0,3080,'3080 -91l-204 -204h-2672l-204 204h80l124 -124h2672l124 124h80'], + 0x27E6: [1266,766,475,139,382,'382 -766h-243v2032h243v-42h-79v-1948h79v-42zM261 -724v1948h-80v-1948h80'], + 0x27E7: [1266,766,475,93,336,'336 1266v-2032h-243v42h79v1948h-79v42h243zM294 1224h-80v-1948h80v1948'], + 0x27E8: [1796,1296,510,93,417,'417 1790l-247 -1540l247 -1540l-35 -6l-289 1546l289 1546'], + 0x27E9: [1796,1296,510,93,417,'417 250l-289 -1546l-35 6l247 1540l-247 1540l36 6'], + 0x27EA: [1796,1296,765,93,672,'417 1790l-247 -1540l247 -1540l-35 -6l-289 1546l289 1546zM672 1790l-248 -1540l248 -1540l-36 -6l-289 1546l289 1546'], + 0x27EB: [1796,1296,765,93,672,'672 250l-289 -1546l-36 6l247 1540l-247 1540l36 6zM417 250l-289 -1546l-35 6l247 1540l-247 1540l36 6'], + 0x27EE: [1252,752,399,139,306,'306 1238c-65 -65 -87 -380 -87 -698v-580c0 -318 22 -633 87 -698l-14 -14c-68 67 -153 383 -153 712v580c0 329 85 645 153 712'], + 0x27EF: [1252,752,399,93,260,'260 -40c0 -329 -85 -645 -153 -712l-14 14c65 65 87 380 87 698v580c0 318 -22 633 -87 698l14 14c68 -67 153 -383 153 -712v-580'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size5/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size6/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size6/Regular/Main.js new file mode 100644 index 0000000..0791e45 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Size6/Regular/Main.js @@ -0,0 +1,392 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Size6/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Size6'] = { + directory: 'Size6/Regular', + family: 'GyreTermesMathJax_Size6', + id: 'GYRETERMESSIZE6', + 0x20: [0,0,250,0,0,''], + 0x28: [1452,952,624,143,528,'528 -936l-13 -16c-186 141 -372 583 -372 1003v398c0 420 186 862 372 1003l13 -16c-180 -135 -292 -583 -292 -987v-398c0 -404 112 -852 292 -987'], + 0x29: [1452,952,624,96,481,'481 51c0 -420 -186 -862 -373 -1003l-12 16c180 135 292 583 292 987v398c0 404 -112 852 -292 987l12 16c187 -141 373 -583 373 -1003v-398'], + 0x2F: [2272,1772,1536,80,1456,'1456 2272l-1314 -4044h-62l1314 4044h62'], + 0x5B: [1466,966,491,143,395,'395 1422h-168v-2344h168v-44h-252v2432h252v-44'], + 0x5C: [2272,1772,1536,80,1456,'1456 -1772h-62l-1314 4044h62'], + 0x5D: [1466,966,491,96,348,'348 1466v-2432h-252v44h168v2344h-168v44h252'], + 0x7B: [1454,954,547,96,451,'451 -934l-6 -20c-105 29 -215 158 -215 308v598c0 151 -45 288 -134 288v20c89 0 134 137 134 288v598c0 150 110 279 215 308l6 -20c-90 -24 -137 -160 -137 -288v-598c0 -150 -78 -265 -166 -298c88 -33 166 -148 166 -298v-598c0 -128 47 -264 137 -288'], + 0x7C: [1444,944,219,80,139,'139 -944h-59v2388h59v-2388'], + 0x7D: [1454,954,547,96,451,'451 240c-90 0 -134 -137 -134 -288v-598c0 -150 -110 -279 -216 -308l-5 20c90 24 137 160 137 288v598c0 150 78 265 166 298c-88 33 -166 148 -166 298v598c0 128 -47 264 -137 288l5 20c106 -29 216 -158 216 -308v-598c0 -151 44 -288 134 -288v-20'], + 0xA0: [0,0,250,0,0,''], + 0x302: [700,-535,1496,0,1496,'1496 559l-4 -24l-744 111l-744 -111l-4 24l748 141'], + 0x303: [689,-531,1491,0,1491,'1491 671c-79 -67 -186 -118 -367 -135c-20 -2 -41 -3 -61 -3c-109 0 -217 26 -324 51c-102 25 -206 50 -310 50c-19 0 -39 -1 -58 -3c-171 -16 -281 -36 -355 -100l-16 18c79 67 185 118 366 135c21 2 41 3 62 3c109 0 217 -26 323 -51c103 -25 206 -50 311 -50 c19 0 38 1 57 3c172 16 281 36 356 100'], + 0x306: [695,-539,1515,0,1515,'1515 687c-50 -148 -459 -148 -758 -148c-298 0 -707 0 -757 148l23 8c34 -103 449 -103 734 -103c286 0 701 0 735 103'], + 0x30C: [695,-530,1496,0,1496,'1496 671l-748 -141l-748 141l4 24l744 -111l744 111'], + 0x311: [710,-553,1515,0,1515,'1515 561l-23 -8c-34 103 -449 104 -735 104c-285 0 -700 -1 -734 -104l-23 8c50 148 459 149 757 149c299 0 708 -1 758 -149'], + 0x32C: [-70,235,1496,0,1496,'1496 -94l-748 -141l-748 141l4 24l744 -111l744 111'], + 0x32D: [-80,245,1496,0,1496,'1496 -221l-4 -24l-744 111l-744 -111l-4 24l748 141'], + 0x32E: [-70,226,1515,0,1515,'1515 -78c-50 -148 -459 -148 -758 -148c-298 0 -707 0 -757 148l23 8c34 -103 449 -103 734 -103c286 0 701 0 735 103'], + 0x32F: [-88,244,1515,0,1515,'1515 -237l-23 -7c-34 103 -449 103 -735 103c-285 0 -700 0 -734 -103l-23 7c50 149 459 149 757 149c299 0 708 0 758 -149'], + 0x330: [-88,246,1491,0,1491,'1491 -106c-79 -67 -186 -118 -367 -135c-20 -2 -41 -3 -61 -3c-109 0 -217 26 -324 51c-102 25 -206 49 -310 49c-19 0 -39 0 -58 -2c-171 -16 -281 -37 -355 -100l-16 18c79 67 185 117 366 135c21 2 41 2 62 2c109 0 217 -25 323 -50c103 -25 206 -50 311 -50 c19 0 38 1 57 3c172 16 281 36 356 100'], + 0x2016: [1444,944,378,80,298,'139 -944h-59v2388h59v-2388zM298 -944h-59v2388h59v-2388'], + 0x2044: [2272,1772,1536,80,1456,'1456 2272l-1314 -4044h-62l1314 4044h62'], + 0x20E9: [758,-548,2625,0,2625,'2625 758v-210h-44v126h-2537v-126h-44v210h2625'], + 0x221A: [1768,1242,674,120,700,'700 1716h-186v-2958h-38h-38l-262 1479h-56v44h148l194 -1093v2580h238v-52'], + 0x2223: [1444,944,219,80,139,'139 -944h-59v2388h59v-2388'], + 0x2225: [1444,944,378,80,298,'139 -944h-59v2388h59v-2388zM298 -944h-59v2388h59v-2388'], + 0x2308: [1466,944,491,143,395,'395 1422h-168v-2366h-84v2410h252v-44'], + 0x2309: [1466,944,491,96,348,'348 -944h-84v2366h-168v44h252v-2410'], + 0x230A: [1444,966,491,143,395,'395 -966h-252v2410h84v-2366h168v-44'], + 0x230B: [1444,966,491,96,348,'348 1444v-2410h-252v44h168v2366h84'], + 0x2329: [2274,1774,554,96,458,'458 2269l-278 -2019l278 -2019l-36 -5l-326 2024l326 2024'], + 0x232A: [2274,1774,554,96,458,'458 250l-326 -2024l-36 5l278 2019l-278 2019l36 5'], + 0x23B4: [758,-548,2625,0,2625,'2625 758v-210h-44v126h-2537v-126h-44v210h2625'], + 0x23B5: [-98,308,2625,0,2625,'2625 -308h-2625v210h44v-126h2537v126h44v-210'], + 0x23DC: [758,-541,3514,0,3514,'3514 555l-14 -14c-92 92 -679 133 -1305 133h-876c-626 0 -1213 -41 -1305 -133l-14 14c94 94 682 203 1319 203h876c637 0 1226 -109 1319 -203'], + 0x23DD: [-91,308,3514,0,3514,'3514 -105c-93 -94 -682 -203 -1319 -203h-876c-637 0 -1225 109 -1319 203l14 14c92 -92 679 -133 1305 -133h876c626 0 1213 41 1305 133'], + 0x23DE: [792,-525,3519,0,3519,'3519 532l-19 -7c-25 70 -222 93 -428 93h-876c-219 0 -394 73 -437 142c-42 -69 -217 -142 -437 -142h-876c-206 0 -402 -23 -427 -93l-19 7c28 76 222 170 446 170h876c231 0 427 20 427 90h20c0 -70 197 -90 427 -90h876c225 0 419 -94 447 -170'], + 0x23DF: [-75,341,3519,0,3519,'3519 -82c-28 -76 -222 -170 -447 -170h-876c-230 0 -427 -20 -427 -89h-20c0 69 -196 89 -427 89h-876c-224 0 -418 94 -446 170l19 7c25 -70 221 -93 427 -93h876c220 0 395 -73 437 -142c43 69 218 142 437 142h876c206 0 403 23 428 93'], + 0x23E0: [748,-538,3584,0,3584,'3584 538h-84l-126 126h-3164l-126 -126h-84l210 210h3164'], + 0x23E1: [-88,298,3584,0,3584,'3584 -88l-210 -210h-3164l-210 210h84l126 -126h3164l126 126h84'], + 0x27E6: [1466,966,495,143,399,'399 1422h-84v-2344h84v-44h-256v2432h256v-44zM271 1422h-84v-2344h84v2344'], + 0x27E7: [1466,966,495,96,352,'352 -966h-256v44h84v2344h-84v44h256v-2432zM308 -922v2344h-84v-2344h84'], + 0x27E8: [2274,1774,554,96,458,'458 2269l-278 -2019l278 -2019l-36 -5l-326 2024l326 2024'], + 0x27E9: [2274,1774,554,96,458,'458 250l-326 -2024l-36 5l278 2019l-278 2019l36 5'], + 0x27EA: [2274,1774,825,96,729,'458 2269l-278 -2019l278 -2019l-36 -5l-326 2024l326 2024zM729 2269l-278 -2019l278 -2019l-35 -5l-327 2024l327 2024'], + 0x27EB: [2274,1774,825,96,729,'729 250l-326 -2024l-36 5l278 2019l-278 2019l36 5zM458 250l-326 -2024l-36 5l278 2019l-278 2019l36 5'], + 0x27EE: [1451,951,418,143,322,'322 1437c-71 -71 -95 -427 -95 -789v-796c0 -362 24 -718 95 -789l-14 -14c-73 73 -165 429 -165 803v796c0 374 92 730 165 803'], + 0x27EF: [1451,951,418,96,275,'275 -148c0 -374 -92 -730 -165 -803l-14 14c71 71 95 427 95 789v796c0 362 -24 718 -95 789l14 14c73 -73 165 -429 165 -803v-796'], + 0xE000: [372,-128,167,0,167,'167 320h-167v52h167v-52zM167 128h-167v52h167v-52'], + 0xE001: [372,-128,166,0,166,'166 372v-52h-166v52h166zM166 180v-52h-166v52h166'], + 0xE002: [372,-128,167,0,167,'167 320h-167v52h167v-52zM167 128h-167v52h167v-52'], + 0xE003: [596,0,547,230,314,'314 596v-596h-84v596h84'], + 0xE004: [796,0,219,80,139,'139 796v-796h-59v796h59'], + 0xE005: [796,0,219,80,139,'139 0h-59v796h59v-796'], + 0xE006: [796,0,219,80,139,'139 0h-59v796h59v-796'], + 0xE007: [596,0,547,233,317,'317 596v-596h-84v596h84'], + 0xE008: [710,-600,188,0,188,'188 644v-44h-188v22l88 88h57l-66 -66h109'], + 0xE009: [644,-600,125,0,125,'125 600h-125v44h125v-44'], + 0xE00A: [644,-600,187,0,187,'187 600h-187v44h187v-44'], + 0xE00B: [644,-600,187,0,187,'187 644v-44h-187v44h187'], + 0xE00C: [644,-600,125,0,125,'125 600h-125v44h125v-44'], + 0xE00D: [710,-600,188,0,188,'188 600h-188v44h109l-66 66h57l88 -88v-22'], + 0xE00E: [710,-534,191,0,191,'191 644v-44h-112l66 -66h-57l-88 88l88 88h57l-66 -66h112'], + 0xE00F: [644,-600,128,0,128,'128 600h-128v44h128v-44'], + 0xE010: [644,-600,191,0,191,'191 600h-191v44h191v-44'], + 0xE011: [644,-600,191,0,191,'191 644v-44h-191v44h191'], + 0xE012: [644,-600,128,0,128,'128 644v-44h-128v44h128'], + 0xE013: [710,-534,191,0,191,'191 622l-88 -88h-57l66 66h-112v44h112l-66 66h57'], + 0xE014: [710,-534,218,0,218,'218 600h-139l66 -66h-57l-88 88l88 88h57l-66 -66h139v-44'], + 0xE015: [644,-600,146,0,146,'146 600h-146v44h146v-44'], + 0xE016: [710,-534,218,0,218,'218 622l-88 -88h-57l66 66h-139v44h139l-66 66h57'], + 0xE017: [-150,194,188,0,188,'188 -150v-44h-188v44h188'], + 0xE018: [-150,194,125,0,125,'125 -194h-125v44h125v-44'], + 0xE019: [-150,260,187,0,187,'187 -150v-22l-88 -88h-57l66 66h-108v44h187'], + 0xE01A: [-150,260,187,0,187,'187 -194h-108l66 -66h-57l-88 88v22h187v-44'], + 0xE01B: [-150,194,125,0,125,'125 -150v-44h-125v44h125'], + 0xE01C: [-150,194,188,0,188,'188 -194h-188v44h188v-44'], + 0xE01D: [-84,260,191,0,191,'191 -150v-44h-112l66 -66h-57l-88 88l88 88h57l-66 -66h112'], + 0xE01E: [-150,194,128,0,128,'128 -194h-128v44h128v-44'], + 0xE01F: [-150,194,191,0,191,'191 -194h-191v44h191v-44'], + 0xE020: [-150,194,191,0,191,'191 -150v-44h-191v44h191'], + 0xE021: [-150,194,128,0,128,'128 -150v-44h-128v44h128'], + 0xE022: [-84,260,191,0,191,'191 -172l-88 -88h-57l66 66h-112v44h112l-66 66h57'], + 0xE023: [430,-70,379,0,379,'379 224h-288l154 -154h-65l-180 180l180 180h65l-154 -154h288v-52'], + 0xE024: [276,-224,252,0,252,'252 276v-52h-252v52h252'], + 0xE025: [276,-224,379,0,379,'379 224h-379v52h379v-52'], + 0xE026: [276,-224,379,0,379,'379 224h-379v52h379v-52'], + 0xE027: [276,-224,252,0,252,'252 276v-52h-252v52h252'], + 0xE028: [430,-70,379,0,379,'379 250l-180 -180h-65l154 154h-288v52h288l-154 154h65'], + 0xE029: [379,0,520,234,286,'286 0h-52v379h52v-379'], + 0xE02A: [252,0,520,234,286,'286 252v-252h-52v252h52'], + 0xE02B: [379,0,520,80,440,'440 134l-154 154v-288h-52v288l-154 -154v65l180 180l180 -180v-65'], + 0xE02C: [379,0,520,80,440,'440 180l-180 -180l-180 180v65l154 -154v288h52v-288l154 154v-65'], + 0xE02D: [252,0,520,234,286,'286 252v-252h-52v252h52'], + 0xE02E: [379,0,520,234,286,'286 379v-379h-52v379h52'], + 0xE02F: [430,-70,289,0,289,'289 224h-198l154 -154h-65l-180 180l180 180h65l-154 -154h198v-52'], + 0xE030: [276,-224,72,0,72,'72 224h-72v52h72v-52'], + 0xE031: [430,-70,288,0,288,'288 224h-129l-50 -154h-47l50 154h-112v52h129l50 154h47l-50 -154h112v-52'], + 0xE032: [276,-224,289,0,289,'289 224h-289v52h289v-52'], + 0xE033: [276,-224,289,0,289,'289 276v-52h-289v52h289'], + 0xE034: [276,-224,72,0,72,'72 224h-72v52h72v-52'], + 0xE035: [430,-70,288,0,288,'288 224h-129l-50 -154h-47l50 154h-112v52h129l50 154h47l-50 -154h112v-52'], + 0xE036: [430,-70,289,0,289,'289 250l-180 -180h-65l154 154h-198v52h198l-154 154h65'], + 0xE037: [430,-70,450,0,450,'450 276v-52h-359l154 -154h-65l-180 180l180 180h65l-154 -154h359'], + 0xE038: [276,-224,300,0,300,'300 224h-300v52h300v-52'], + 0xE039: [430,-70,450,0,450,'450 250l-180 -180h-65l154 154h-359v52h359l-154 154h65'], + 0xE03A: [450,0,520,80,440,'440 180l-180 -180l-180 180v65l154 -154v359h52v-359l154 154v-65'], + 0xE03B: [300,0,520,234,286,'286 0h-52v300h52v-300'], + 0xE03C: [450,0,520,80,440,'440 205l-154 154v-359h-52v359l-154 -154v65l180 180l180 -180v-65'], + 0xE03D: [430,-70,343,0,343,'343 276v-52h-252l154 -154h-65l-180 180l180 180h65l-154 -154h252'], + 0xE03E: [276,-224,86,0,86,'86 224h-86v52h86v-52'], + 0xE03F: [430,-70,342,0,342,'342 276v-52h-156l-50 -154h-47l50 154h-139v52h156l50 154h47l-50 -154h139'], + 0xE040: [430,-70,343,0,343,'343 250l-180 -180h-65l154 154h-252v52h252l-154 154h65'], + 0xE041: [430,-70,446,0,446,'446 224h-192l154 -154h-65l-154 154h-98l154 -154h-65l-180 180l180 180h65l-154 -154h98l154 154h65l-154 -154h192v-52'], + 0xE042: [276,-224,298,0,298,'298 276v-52h-298v52h298'], + 0xE043: [276,-224,446,0,446,'446 224h-446v52h446v-52'], + 0xE044: [276,-224,446,0,446,'446 276v-52h-446v52h446'], + 0xE045: [276,-224,298,0,298,'298 224h-298v52h298v-52'], + 0xE046: [430,-70,446,0,446,'446 250l-180 -180h-65l154 154h-98l-154 -154h-65l154 154h-192v52h192l-154 154h65l154 -154h98l-154 154h65'], + 0xE047: [446,0,520,234,286,'286 0h-52v446h52v-446'], + 0xE048: [298,0,520,234,286,'286 298v-298h-52v298h52'], + 0xE049: [446,0,520,80,440,'440 38l-154 154v-192h-52v192l-154 -154v65l154 154v98l-154 -154v65l180 180l180 -180v-65l-154 154v-98l154 -154v-65'], + 0xE04A: [446,0,520,80,440,'440 180l-180 -180l-180 180v65l154 -154v98l-154 154v65l154 -154v192h52v-192l154 154v-65l-154 -154v-98l154 154v-65'], + 0xE04B: [298,0,520,234,286,'286 298v-298h-52v298h52'], + 0xE04C: [446,0,520,234,286,'286 446v-446h-52v446h52'], + 0xE04D: [430,-70,450,0,450,'450 224h-359l154 -154h-65l-180 180l180 180h65l-154 -154h359v-52'], + 0xE04E: [276,-224,300,0,300,'300 276v-52h-300v52h300'], + 0xE04F: [430,-70,450,0,450,'450 70h-65l-154 154h-231v52h231l154 154h65l-180 -180'], + 0xE050: [430,-70,450,0,450,'450 224h-231l-154 -154h-65l180 180l-180 180h65l154 -154h231v-52'], + 0xE051: [276,-224,300,0,300,'300 224h-300v52h300v-52'], + 0xE052: [430,-70,450,0,450,'450 250l-180 -180h-65l154 154h-359v52h359l-154 154h65'], + 0xE053: [430,-70,379,0,379,'379 276v-52h-288l154 -154h-65l-180 180l180 180h65l-154 -154h288'], + 0xE054: [276,-224,252,0,252,'252 276v-52h-252v52h252'], + 0xE055: [430,-70,379,0,379,'379 70h-46v154h-333v52h333v154h46v-360'], + 0xE056: [430,-70,379,0,379,'379 276v-52h-333v-154h-46v360h46v-154h333'], + 0xE057: [276,-224,252,0,252,'252 224h-252v52h252v-52'], + 0xE058: [430,-70,379,0,379,'379 250l-180 -180h-65l154 154h-288v52h288l-154 154h65'], + 0xE059: [379,0,520,80,440,'440 0h-360v46h154v333h52v-333h154v-46'], + 0xE05A: [252,0,520,234,286,'286 252v-252h-52v252h52'], + 0xE05B: [379,0,520,80,440,'440 134l-154 154v-288h-52v288l-154 -154v65l180 180l180 -180v-65'], + 0xE05C: [379,0,520,80,440,'440 180l-180 -180l-180 180v65l154 -154v288h52v-288l154 154v-65'], + 0xE05D: [252,0,520,234,286,'286 252v-252h-52v252h52'], + 0xE05E: [379,0,520,80,440,'440 333h-154v-333h-52v333h-154v46h360v-46'], + 0xE05F: [508,-224,389,0,389,'389 224h-247c-78 0 -142 64 -142 142s64 142 142 142h52v-52h-52c-50 0 -90 -40 -90 -90s40 -90 90 -90h247v-52'], + 0xE060: [276,-224,259,0,259,'259 276v-52h-259v52h259'], + 0xE061: [430,-70,388,0,388,'388 250l-180 -180h-65l154 154h-297v52h297l-154 154h65'], + 0xE062: [430,-70,388,0,388,'388 276v-52h-297l154 -154h-65l-180 180l180 180h65l-154 -154h297'], + 0xE063: [276,-224,259,0,259,'259 276v-52h-259v52h259'], + 0xE064: [508,-224,389,0,389,'389 366c0 -78 -64 -142 -142 -142h-247v52h247c50 0 90 40 90 90s-40 90 -90 90h-52v52h52c78 0 142 -64 142 -142'], + 0xE065: [508,-18,389,0,389,'389 224h-105v-206h-52v206h-90c-78 0 -142 64 -142 142s64 142 142 142s142 -64 142 -142v-90h105v-52zM232 276v90c0 50 -40 90 -90 90s-90 -40 -90 -90s40 -90 90 -90h90'], + 0xE066: [276,-224,259,0,259,'259 276v-52h-259v52h259'], + 0xE067: [430,-70,388,0,388,'388 250l-180 -180h-65l154 154h-297v52h297l-154 154h65'], + 0xE068: [430,-70,388,0,388,'388 276v-52h-297l154 -154h-65l-180 180l180 180h65l-154 -154h297'], + 0xE069: [276,-224,259,0,259,'259 224h-259v52h259v-52'], + 0xE06A: [508,-18,389,0,389,'389 366c0 -78 -64 -142 -142 -142h-90v-206h-52v206h-105v52h105v90c0 78 64 142 142 142s142 -64 142 -142zM337 366c0 50 -40 90 -90 90s-90 -40 -90 -90v-90h90c50 0 90 40 90 90'], + 0xE06B: [430,-224,375,0,375,'375 224h-375v26l180 180h65l-154 -154h284v-52'], + 0xE06C: [276,-224,250,0,250,'250 276v-52h-250v52h250'], + 0xE06D: [276,-224,375,0,375,'375 224h-375v52h375v-52'], + 0xE06E: [276,-224,375,0,375,'375 224h-375v52h375v-52'], + 0xE06F: [276,-224,250,0,250,'250 224h-250v52h250v-52'], + 0xE070: [430,-224,375,0,375,'375 224h-375v52h284l-154 154h65l180 -180v-26'], + 0xE071: [276,-70,375,0,375,'375 276v-52h-284l154 -154h-65l-180 180v26h375'], + 0xE072: [276,-224,250,0,250,'250 224h-250v52h250v-52'], + 0xE073: [276,-224,375,0,375,'375 224h-375v52h375v-52'], + 0xE074: [276,-224,375,0,375,'375 224h-375v52h375v-52'], + 0xE075: [276,-224,250,0,250,'250 224h-250v52h250v-52'], + 0xE076: [276,-70,375,0,375,'375 250l-180 -180h-65l154 154h-284v52h375v-26'], + 0xE077: [375,0,366,80,132,'132 0h-52v375h52v-375'], + 0xE078: [250,0,366,80,132,'132 0h-52v250h52v-250'], + 0xE079: [375,0,366,80,286,'286 130l-154 154v-284h-52v375h26l180 -180v-65'], + 0xE07A: [375,0,366,80,286,'286 180l-180 -180h-26v375h52v-284l154 154v-65'], + 0xE07B: [250,0,366,80,132,'132 250v-250h-52v250h52'], + 0xE07C: [375,0,366,80,132,'132 375v-375h-52v375h52'], + 0xE07D: [375,0,366,234,286,'286 0h-52v375h52v-375'], + 0xE07E: [250,0,366,234,286,'286 0h-52v250h52v-250'], + 0xE07F: [375,0,366,80,286,'286 0h-52v284l-154 -154v65l180 180h26v-375'], + 0xE080: [375,0,366,80,286,'286 375v-375h-26l-180 180v65l154 -154v284h52'], + 0xE081: [250,0,366,234,286,'286 250v-250h-52v250h52'], + 0xE082: [375,0,366,234,286,'286 375v-375h-52v375h52'], + 0xE083: [476,130,383,0,383,'383 24h-292l154 -154h-65l-180 180l180 180h65l-154 -154h292v-52zM383 424h-373v52h373v-52'], + 0xE084: [476,-24,255,0,255,'255 24h-255v52h255v-52zM255 424h-255v52h255v-52'], + 0xE085: [630,-24,382,0,382,'372 24h-372v52h372v-52zM382 450l-180 -180h-65l154 154h-291v52h291l-154 154h65'], + 0xE086: [630,-24,383,0,383,'383 24h-373v52h373v-52zM383 424h-292l154 -154h-65l-180 180l180 180h65l-154 -154h292v-52'], + 0xE087: [476,-24,255,0,255,'255 76v-52h-255v52h255zM255 424h-255v52h255v-52'], + 0xE088: [476,130,382,0,382,'382 50l-180 -180h-65l154 154h-291v52h291l-154 154h65zM372 424h-372v52h372v-52'], + 0xE089: [383,0,920,234,840,'286 383v-373h-52v373h52zM840 180l-180 -180l-180 180v65l154 -154v292h52v-292l154 154v-65'], + 0xE08A: [255,0,920,234,686,'286 0h-52v255h52v-255zM686 0h-52v255h52v-255'], + 0xE08B: [382,0,920,80,686,'440 137l-154 154v-291h-52v291l-154 -154v65l180 180l180 -180v-65zM686 0h-52v372h52v-372'], + 0xE08C: [382,0,920,80,686,'440 180l-180 -180l-180 180v65l154 -154v291h52v-291l154 154v-65zM686 10h-52v372h52v-372'], + 0xE08D: [255,0,920,234,686,'286 0h-52v255h52v-255zM686 255v-255h-52v255h52'], + 0xE08E: [383,0,920,234,840,'286 373v-373h-52v373h52zM840 138l-154 154v-292h-52v292l-154 -154v65l180 180l180 -180v-65'], + 0xE08F: [630,130,379,0,379,'379 24h-288l154 -154h-65l-180 180l180 180h65l-154 -154h288v-52zM379 424h-288l154 -154h-65l-180 180l180 180h65l-154 -154h288v-52'], + 0xE090: [476,-24,252,0,252,'252 76v-52h-252v52h252zM252 476v-52h-252v52h252'], + 0xE091: [476,-24,379,0,379,'379 24h-379v52h379v-52zM379 424h-379v52h379v-52'], + 0xE092: [476,-24,379,0,379,'379 24h-379v52h379v-52zM379 424h-379v52h379v-52'], + 0xE093: [476,-24,252,0,252,'252 76v-52h-252v52h252zM252 476v-52h-252v52h252'], + 0xE094: [630,130,379,0,379,'379 50l-180 -180h-65l154 154h-288v52h288l-154 154h65zM379 450l-180 -180h-65l154 154h-288v52h288l-154 154h65'], + 0xE095: [379,0,920,234,686,'286 379v-379h-52v379h52zM686 379v-379h-52v379h52'], + 0xE096: [252,0,920,234,686,'286 0h-52v252h52v-252zM686 0h-52v252h52v-252'], + 0xE097: [379,0,920,80,840,'440 134l-154 154v-288h-52v288l-154 -154v65l180 180l180 -180v-65zM840 134l-154 154v-288h-52v288l-154 -154v65l180 180l180 -180v-65'], + 0xE098: [379,0,920,80,840,'440 180l-180 -180l-180 180v65l154 -154v288h52v-288l154 154v-65zM840 180l-180 -180l-180 180v65l154 -154v288h52v-288l154 154v-65'], + 0xE099: [252,0,920,234,686,'286 252v-252h-52v252h52zM686 252v-252h-52v252h52'], + 0xE09A: [379,0,920,234,686,'286 379v-379h-52v379h52zM686 379v-379h-52v379h52'], + 0xE09B: [676,176,379,0,379,'379 -176h-379v52h379v-52zM379 224h-379v52h379v-52zM379 624h-379v52h379v-52'], + 0xE09C: [676,176,252,0,252,'252 -176h-252v52h252v-52zM252 224h-252v52h252v-52zM252 624h-252v52h252v-52'], + 0xE09D: [830,330,379,0,379,'379 -150l-180 -180h-65l154 154h-288v52h288l-154 154h65zM379 250l-180 -180h-65l154 154h-288v52h288l-154 154h65zM379 650l-180 -180h-65l154 154h-288v52h288l-154 154h65'], + 0xE09E: [830,330,379,0,379,'379 -124v-52h-288l154 -154h-65l-180 180l180 180h65l-154 -154h288zM379 276v-52h-288l154 -154h-65l-180 180l180 180h65l-154 -154h288zM379 676v-52h-288l154 -154h-65l-180 180l180 180h65l-154 -154h288'], + 0xE09F: [676,176,252,0,252,'252 -124v-52h-252v52h252zM252 276v-52h-252v52h252zM252 676v-52h-252v52h252'], + 0xE0A0: [676,176,379,0,379,'379 -176h-379v52h379v-52zM379 224h-379v52h379v-52zM379 624h-379v52h379v-52'], + 0xE0A1: [526,-128,375,0,375,'375 128h-375v52h375v-52zM375 320h-375v26l180 180h65l-154 -154h284v-52'], + 0xE0A2: [372,-128,250,0,250,'250 128h-250v52h250v-52zM250 372v-52h-250v52h250'], + 0xE0A3: [372,26,375,0,375,'375 180v-26l-180 -180h-65l154 154h-284v52h375zM375 320h-375v52h375v-52'], + 0xE0A4: [372,26,375,0,375,'375 128h-284l154 -154h-65l-180 180v26h375v-52zM375 320h-375v52h375v-52'], + 0xE0A5: [372,-128,250,0,250,'250 128h-250v52h250v-52zM250 320h-250v52h250v-52'], + 0xE0A6: [526,-128,375,0,375,'375 128h-375v52h375v-52zM375 320h-375v52h284l-154 154h65l180 -180v-26'], + 0xE0A7: [470,-30,379,0,379,'379 148h-212l118 -118h-65l-220 220l220 220h65l-118 -118h212v-52h-264l-50 -50l50 -50h264v-52'], + 0xE0A8: [352,-148,252,0,252,'252 200v-52h-252v52h252zM252 300h-252v52h252v-52'], + 0xE0A9: [352,-148,379,0,379,'379 148h-379v52h379v-52zM379 300h-379v52h379v-52'], + 0xE0AA: [352,-148,379,0,379,'379 352v-52h-379v52h379zM379 148h-379v52h379v-52'], + 0xE0AB: [352,-148,252,0,252,'252 300h-252v52h252v-52zM252 200v-52h-252v52h252'], + 0xE0AC: [470,-30,379,0,379,'379 250l-220 -220h-65l118 118h-212v52h264l50 50l-50 50h-264v52h212l-118 118h65'], + 0xE0AD: [379,0,600,198,402,'250 0h-52v379h52v-379zM402 0h-52v379h52v-379'], + 0xE0AE: [252,0,600,198,402,'250 0h-52v252h52v-252zM402 0h-52v252h52v-252'], + 0xE0AF: [379,0,600,80,520,'520 94l-118 118v-212h-52v264l-50 50l-50 -50v-264h-52v212l-118 -118v65l220 220l220 -220v-65'], + 0xE0B0: [379,0,600,80,520,'520 220l-220 -220l-220 220v65l118 -118v212h52v-264l50 -50l50 50v264h52v-212l118 118v-65'], + 0xE0B1: [252,0,600,198,402,'402 0h-52v252h52v-252zM250 0h-52v252h52v-252'], + 0xE0B2: [379,0,600,198,402,'402 0h-52v379h52v-379zM250 379v-379h-52v379h52'], + 0xE0B3: [470,-30,450,0,450,'450 200v-52h-283l118 -118h-65l-220 220l220 220h65l-118 -118h283v-52h-335l-50 -50l50 -50h335'], + 0xE0B4: [352,-148,300,0,300,'300 352v-52h-300v52h300zM300 148h-300v52h300v-52'], + 0xE0B5: [470,-30,450,0,450,'450 250l-220 -220h-65l118 118h-283v52h335l50 50l-50 50h-335v52h283l-118 118h65'], + 0xE0B6: [450,0,600,80,520,'520 220l-220 -220l-220 220v65l118 -118v283h52v-335l50 -50l50 50v335h52v-283l118 118v-65'], + 0xE0B7: [300,0,600,198,402,'250 0h-52v300h52v-300zM402 0h-52v300h52v-300'], + 0xE0B8: [450,0,600,80,520,'520 165l-118 118v-283h-52v335l-50 50l-50 -50v-335h-52v283l-118 -118v65l220 220l220 -220v-65'], + 0xE0B9: [470,-30,289,0,289,'289 200v-52h-122l118 -118h-65l-220 220l220 220h65l-118 -118h122v-52h-174l-50 -50l50 -50h174'], + 0xE0BA: [352,-148,72,0,72,'72 352v-52h-72v52h72zM72 148h-72v52h72v-52'], + 0xE0BB: [500,0,288,0,288,'288 148h-154l-48 -148h-46l48 148h-88v52h105l32 100h-137v52h154l48 148h46l-48 -148h88v-52h-105l-32 -100h137v-52'], + 0xE0BC: [352,-148,289,0,289,'289 148h-289v52h289v-52zM289 300h-289v52h289v-52'], + 0xE0BD: [352,-148,289,0,289,'289 352v-52h-289v52h289zM289 200v-52h-289v52h289'], + 0xE0BE: [352,-148,72,0,72,'72 352v-52h-72v52h72zM72 200v-52h-72v52h72'], + 0xE0BF: [500,0,288,0,288,'288 148h-154l-48 -148h-46l48 148h-88v52h105l32 100h-137v52h154l48 148h46l-48 -148h88v-52h-105l-32 -100h137v-52'], + 0xE0C0: [470,-30,289,0,289,'289 250l-220 -220h-65l118 118h-122v52h174l50 50l-50 50h-174v52h122l-118 118h65'], + 0xE0C1: [470,-30,343,0,343,'343 200v-52h-176l118 -118h-65l-220 220l220 220h65l-118 -118h176v-52h-228l-50 -50l50 -50h228'], + 0xE0C2: [352,-148,86,0,86,'86 352v-52h-86v52h86zM86 148h-86v52h86v-52'], + 0xE0C3: [500,0,342,0,342,'342 352v-52h-132l-32 -100h164v-52h-181l-48 -148h-46l48 148h-115v52h132l32 100h-164v52h181l48 148h46l-48 -148h115'], + 0xE0C4: [470,-30,343,0,343,'343 250l-220 -220h-65l118 118h-176v52h228l50 50l-50 50h-228v52h176l-118 118h65'], + 0xE0C5: [470,-30,446,0,446,'446 200v-52h-279l118 -118h-65l-220 220l220 220h65l-118 -118h279v-52h-331l-50 -50l50 -50h331'], + 0xE0C6: [352,-148,298,0,298,'298 352v-52h-298v52h298zM298 200v-52h-298v52h298'], + 0xE0C7: [470,-30,446,0,446,'446 30h-46v118h-400v52h400v100h-400v52h400v118h46v-440'], + 0xE0C8: [470,-30,446,0,446,'446 352v-52h-400v-100h400v-52h-400v-118h-46v440h46v-118h400'], + 0xE0C9: [352,-148,298,0,298,'298 300h-298v52h298v-52zM298 200v-52h-298v52h298'], + 0xE0CA: [470,-30,446,0,446,'446 250l-220 -220h-65l118 118h-279v52h331l50 50l-50 50h-331v52h279l-118 118h65'], + 0xE0CB: [572,72,446,0,446,'446 72h-203l144 -144h-65l-322 322l322 322h65l-144 -144h203v-52h-255l-100 -100h355v-52h-355l100 -100h255v-52'], + 0xE0CC: [428,-72,298,0,298,'298 124v-52h-298v52h298zM298 276v-52h-298v52h298zM298 428v-52h-298v52h298'], + 0xE0CD: [428,-72,446,0,446,'446 72h-446v52h446v-52zM446 224h-446v52h446v-52zM446 376h-446v52h446v-52'], + 0xE0CE: [428,-72,446,0,446,'446 428v-52h-446v52h446zM446 224h-446v52h446v-52zM446 124v-52h-446v52h446'], + 0xE0CF: [428,-72,298,0,298,'298 428v-52h-298v52h298zM298 276v-52h-298v52h298zM298 72h-298v52h298v-52'], + 0xE0D0: [572,72,446,0,446,'446 250l-322 -322h-65l144 144h-203v52h255l100 100h-355v52h355l-100 100h-255v52h203l-144 144h65'], + 0xE0D1: [470,-30,463,0,463,'463 344v-36h-236v119l-176 -177l176 -177v119h236v-36h-200v-126h-43l-220 220l220 220h44l-1 -126h200'], + 0xE0D2: [344,-156,308,0,308,'308 344v-36h-308v36h308zM308 156h-308v36h308v-36'], + 0xE0D3: [344,-156,462,0,462,'462 344v-188h-462v36h426v116h-426v36h462'], + 0xE0D4: [344,-156,463,0,463,'463 192v-36h-463v188h463v-36h-427v-116h427'], + 0xE0D5: [344,-156,308,0,308,'308 344v-36h-308v36h308zM308 192v-36h-308v36h308'], + 0xE0D6: [470,-30,462,0,462,'462 250l-219 -220h-44v126h-199v36h235v-119l177 177l-177 177v-119h-235v36h199v126h43'], + 0xE0D7: [463,0,600,206,394,'394 0h-188v463h36v-427h116v427h36v-463'], + 0xE0D8: [308,0,600,206,394,'242 0h-36v308h36v-308zM394 0h-36v308h36v-308'], + 0xE0D9: [462,0,600,80,520,'520 199h-126v-199h-36v235h119l-177 177l-177 -177h119v-235h-36v199h-126v44l220 219l220 -220v-43'], + 0xE0DA: [462,0,600,80,520,'520 220l-220 -220l-220 219v44h126v199h36v-235h-119l177 -177l177 177h-119v235h36v-199h126v-43'], + 0xE0DB: [308,0,600,206,394,'242 308v-308h-36v308h36zM394 0h-36v308h36v-308'], + 0xE0DC: [463,0,600,206,394,'394 0h-36v427h-116v-427h-36v463h188v-463'], + 0xE0DD: [469,0,600,80,520,'520 219l-220 -219l-220 220v43h126v206h36v-242h-119l177 -177l177 177h-119v242h36v-206h126v-44'], + 0xE0DE: [312,0,600,206,394,'242 0h-36v312h36v-312zM394 312v-312h-36v312h36'], + 0xE0DF: [469,0,600,80,520,'520 206h-126v-206h-36v242h119l-177 177l-177 -177h119v-242h-36v206h-126v44l220 219l220 -220v-43'], + 0xE0E0: [470,-30,469,0,469,'469 344v-36h-242v119l-176 -177l176 -177v119h242v-36h-206v-126h-43l-220 220l220 220h44l-1 -126h206'], + 0xE0E1: [344,-156,313,0,313,'313 344v-36h-313v36h313zM313 156h-313v36h313v-36'], + 0xE0E2: [470,-30,469,0,469,'469 250l-220 -220h-44v126h-205v36h241v-119l177 177l-177 177v-119h-241v36h205v126h44'], + 0xE0E3: [470,-30,446,0,446,'446 174h-226v-144l-220 220l220 220v-144h226v-152'], + 0xE0E4: [326,-174,298,0,298,'298 326v-152h-298v152h298'], + 0xE0E5: [326,-174,446,0,446,'446 174h-446v152h446v-152'], + 0xE0E6: [326,-174,446,0,446,'446 326v-152h-446v152h446'], + 0xE0E7: [326,-174,298,0,298,'298 174h-298v152h298v-152'], + 0xE0E8: [470,-30,446,0,446,'446 250l-220 -220v144h-226v152h226v144'], + 0xE0E9: [446,0,600,224,376,'376 446v-446h-152v446h152'], + 0xE0EA: [298,0,600,224,376,'376 298v-298h-152v298h152'], + 0xE0EB: [446,0,600,80,520,'520 226h-144v-226h-152v226h-144l220 220'], + 0xE0EC: [446,0,600,80,520,'520 220l-220 -220l-220 220h144v226h152v-226h144'], + 0xE0ED: [298,0,600,224,376,'376 0h-152v298h152v-298'], + 0xE0EE: [446,0,600,224,376,'376 0h-152v446h152v-446'], + 0xE0EF: [470,-30,450,0,450,'450 326v-152h-230v-144l-220 220l220 220v-144h230'], + 0xE0F0: [326,-174,300,0,300,'300 326v-152h-300v152h300'], + 0xE0F1: [470,-30,450,0,450,'450 250l-220 -220v144h-230v152h230v144'], + 0xE0F2: [450,0,600,80,520,'520 220l-220 -220l-220 220h144v230h152v-230h144'], + 0xE0F3: [300,0,600,224,376,'376 0h-152v300h152v-300'], + 0xE0F4: [450,0,600,80,520,'520 230h-144v-230h-152v230h-144l220 220'], + 0xE0F5: [-70,114,167,0,167,'167 -114h-167v44h167v-44'], + 0xE0F6: [-70,114,166,0,166,'166 -70v-44h-166v44h166'], + 0xE0F7: [-70,114,167,0,167,'167 -114h-167v44h167v-44'], + 0xE0F8: [-70,228,167,0,167,'167 -114h-167v44h167v-44zM167 -228h-167v44h167v-44'], + 0xE0F9: [-70,228,166,0,166,'166 -70v-44h-166v44h166zM166 -184v-44h-166v44h166'], + 0xE0FA: [-70,228,167,0,167,'167 -114h-167v44h167v-44zM167 -228h-167v44h167v-44'], + 0xE0FB: [632,-588,167,0,167,'167 588h-167v44h167v-44'], + 0xE0FC: [632,-588,166,0,166,'166 632v-44h-166v44h166'], + 0xE0FD: [632,-588,167,0,167,'167 588h-167v44h167v-44'], + 0xE0FE: [746,-588,167,0,167,'167 588h-167v44h167v-44zM167 702h-167v44h167v-44'], + 0xE0FF: [746,-588,166,0,166,'166 632v-44h-166v44h166zM166 746v-44h-166v44h166'], + 0xE100: [746,-588,167,0,167,'167 588h-167v44h167v-44zM167 702h-167v44h167v-44'], + 0xE101: [1201,0,418,143,322,'322 14l-14 -14c-73 73 -165 429 -165 803v398h84v-398c0 -362 24 -718 95 -789'], + 0xE102: [794,0,418,143,227,'227 0h-84v794h84v-794'], + 0xE103: [1201,0,418,143,322,'322 1187c-71 -71 -95 -427 -95 -789v-398h-84v398c0 374 92 730 165 803'], + 0xE104: [1201,0,418,96,275,'275 803c0 -374 -92 -730 -165 -803l-14 14c71 71 95 427 95 789v398h84v-398'], + 0xE105: [794,0,418,191,275,'275 0h-84v794h84v-794'], + 0xE106: [1201,0,418,96,275,'275 0h-84v398c0 362 -24 718 -95 789l14 14c73 -73 165 -429 165 -803v-398'], + 0xE107: [811,0,495,143,399,'399 0h-256v811h44v-767h84v767h44v-767h84v-44'], + 0xE108: [810,0,495,143,315,'187 0h-44v810h44v-810zM315 0h-44v810h44v-810'], + 0xE109: [811,0,495,143,399,'399 767h-84v-767h-44v767h-84v-767h-44v811h256v-44'], + 0xE10A: [811,0,495,96,352,'352 0h-256v44h84v767h44v-767h84v767h44v-811'], + 0xE10B: [810,0,495,180,352,'224 0h-44v810h44v-810zM352 810v-810h-44v810h44'], + 0xE10C: [811,0,495,96,352,'352 0h-44v767h-84v-767h-44v767h-84v44h256v-811'], + 0xE10D: [702,-525,880,0,880,'880 618h-434c-206 0 -402 -23 -427 -93l-19 7c28 76 222 170 446 170h434v-84'], + 0xE10E: [702,-618,874,0,874,'874 702v-84h-871h-3v84h3h871'], + 0xE10F: [792,-618,1759,0,1759,'1759 702v-84h-443c-219 0 -394 73 -437 142c-42 -69 -217 -142 -437 -142h-442v84h442c231 0 427 20 427 90h20c0 -70 197 -90 427 -90h443'], + 0xE110: [702,-525,880,0,880,'880 532l-19 -7c-25 70 -222 93 -428 93h-433v84h433c225 0 419 -94 447 -170'], + 0xE111: [-75,252,880,0,880,'880 -168v-84h-434c-224 0 -418 94 -446 170l19 7c25 -70 221 -93 427 -93h434'], + 0xE112: [-168,252,874,0,874,'874 -252h-871h-3v84h3h871v-84'], + 0xE113: [-168,341,1759,0,1759,'1759 -252h-443c-230 0 -427 -20 -427 -89h-20c0 69 -196 89 -427 89h-442v84h442c220 0 395 -73 437 -142c43 69 218 142 437 142h443v-84'], + 0xE114: [-75,252,880,0,880,'880 -82c-28 -76 -222 -170 -447 -170h-433v84h433c206 0 403 23 428 93'], + 0xE115: [758,-541,1757,0,1757,'1757 758v-84h-438c-626 0 -1213 -41 -1305 -133l-14 14c94 94 682 203 1319 203h438'], + 0xE116: [758,-674,874,0,874,'874 674h-868h-6v84h6h868v-84'], + 0xE117: [758,-541,1757,0,1757,'1757 555l-14 -14c-92 92 -679 133 -1305 133h-438v84h438c637 0 1226 -109 1319 -203'], + 0xE118: [-91,308,1757,0,1757,'1757 -224v-84h-438c-637 0 -1225 109 -1319 203l14 14c92 -92 679 -133 1305 -133h438'], + 0xE119: [-224,308,874,0,874,'874 -308h-868h-6v84h6h868v-84'], + 0xE11A: [-91,308,1757,0,1757,'1757 -105c-93 -94 -682 -203 -1319 -203h-438v84h438c626 0 1213 41 1305 133'], + 0xE11B: [758,-548,1313,0,1313,'1313 674h-1269v-126h-44v210h1313v-84'], + 0xE11C: [758,-674,875,0,875,'875 758v-84h-875v84h875'], + 0xE11D: [758,-548,1312,0,1312,'1312 758v-210h-44v126h-1268v84h1312'], + 0xE11E: [-98,308,1313,0,1313,'1313 -308h-1313v210h44v-126h1269v-84'], + 0xE11F: [-224,308,875,0,875,'875 -224v-84h-875v84h875'], + 0xE120: [-98,308,1312,0,1312,'1312 -308h-1312v84h1268v126h44v-210'], + 0xE121: [748,-538,1792,0,1792,'1792 664h-1582l-126 -126h-84l210 210h1582v-84'], + 0xE122: [748,-664,1194,0,1194,'1194 664h-1194v84h1194v-84'], + 0xE123: [748,-538,1792,0,1792,'1792 538h-84l-126 126h-1582v84h1582'], + 0xE124: [-88,298,1792,0,1792,'1792 -298h-1582l-210 210h84l126 -126h1582v-84'], + 0xE125: [-214,298,1194,0,1194,'1194 -298h-1194v84h1194v-84'], + 0xE126: [-88,298,1792,0,1792,'1792 -88l-210 -210h-1582v84h1582l126 126h84'], + 0xE127: [276,-224,167,0,167,'167 224h-167v52h167v-52'], + 0xE128: [276,-224,166,0,166,'166 276v-52h-166v52h166'], + 0xE129: [276,-224,167,0,167,'167 224h-167v52h167v-52'], + 0xE12A: [796,0,378,80,298,'139 0h-59v796h59v-796zM298 796v-796h-59v796h59'], + 0xE12B: [796,0,378,80,298,'139 0h-59v796h59v-796zM298 0h-59v796h59v-796'], + 0xE12C: [796,0,378,80,298,'139 0h-59v796h59v-796zM298 0h-59v796h59v-796'], + 0xE12D: [468,-32,167,0,167,'167 416h-167v52h167v-52zM167 224h-167v52h167v-52zM167 32h-167v52h167v-52'], + 0xE12E: [468,-32,166,0,166,'166 468v-52h-166v52h166zM166 276v-52h-166v52h166zM166 84v-52h-166v52h166'], + 0xE12F: [468,-32,167,0,167,'167 416h-167v52h167v-52zM167 224h-167v52h167v-52zM167 32h-167v52h167v-52'], + 0xE130: [564,64,167,0,167,'167 512h-167v52h167v-52zM167 320h-167v52h167v-52zM167 128h-167v52h167v-52zM167 -64h-167v52h167v-52'], + 0xE131: [564,64,166,0,166,'166 564v-52h-166v52h166zM166 372v-52h-166v52h166zM166 180v-52h-166v52h166zM166 -12v-52h-166v52h166'], + 0xE132: [564,64,167,0,167,'167 512h-167v52h167v-52zM167 320h-167v52h167v-52zM167 128h-167v52h167v-52zM167 -64h-167v52h167v-52'], + 0xE133: [1053,0,674,462,514,'514 1053v-1053h-52v1053h52'], + 0xE134: [301,0,674,462,700,'700 249h-186v-249h-52v301h238v-52'], + 0xE135: [1161,0,800,334,720,'720 1044c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117'], + 0xE136: [1161,0,800,80,466,'466 1146c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132v-15'], + 0xE137: [1161,0,1275,334,1195,'720 1044c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1195 1044 c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117'], + 0xE138: [580,0,1275,334,941,'466 0h-132v580h132v-580zM941 0h-132v580h132v-580'], + 0xE139: [1161,0,1275,80,941,'466 1161v-15c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132zM941 1161v-15 c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132'], + 0xE13A: [1161,0,1750,334,1670,'720 1044c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1195 1044 c0 -42 -27 -74 -73 -74c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117zM1670 1044c0 -42 -27 -74 -73 -74 c-39 0 -71 24 -71 74c0 5 4 21 12 30c5 8 9 13 9 20c0 5 -8 12 -22 12c-46 0 -88 -52 -102 -179c-7 -63 -7 -608 -7 -912v-15h-132v15c0 252 0 626 11 757c27 322 126 389 259 389c67 0 116 -49 116 -117'], + 0xE13B: [580,0,1750,334,1416,'466 580v-580h-132v580h132zM941 580v-580h-132v580h132zM1416 580v-580h-132v580h132'], + 0xE13C: [1161,0,1750,80,1416,'466 1146c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132v-15zM941 1146 c0 -252 0 -626 -11 -757c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132v-15zM1416 1146c0 -252 0 -626 -11 -757 c-27 -322 -126 -389 -259 -389c-67 0 -116 49 -116 117c0 42 27 74 73 74c39 0 71 -24 71 -74c0 -5 -4 -21 -12 -30c-5 -8 -9 -13 -9 -20c0 -5 8 -12 22 -12c46 0 88 52 102 179c7 63 7 608 7 912v15h132v-15'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size6/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Symbols/Regular/Main.js new file mode 100644 index 0000000..c6768cd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Symbols/Regular/Main.js @@ -0,0 +1,80 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'GyreTermesMathJax_Symbols', + id: 'GYRETERMESSYMBOLS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2300: [513,13,686,80,606,'541 250c0 47 -16 90 -43 124l-279 -279c34 -27 77 -43 124 -43c109 0 198 89 198 198zM467 405c-34 27 -77 43 -124 43c-109 0 -198 -89 -198 -198c0 -47 16 -90 43 -124zM606 482l-71 -71c36 -44 58 -100 58 -161c0 -138 -112 -250 -250 -250c-61 0 -117 22 -160 58 l-72 -71l-31 31l71 71c-36 44 -58 100 -58 161c0 138 112 250 250 250c61 0 117 -22 161 -58l71 71'], + 0x2305: [450,-50,660,80,580,'580 398h-500v52h500v-52zM506 50h-60l-116 190l-116 -190h-60l150 248h52'], + 0x2306: [546,46,660,80,580,'580 302h-500v52h500v-52zM580 494h-500v52h500v-52zM506 -46h-60l-116 190l-116 -190h-60l150 248h52'], + 0x2310: [276,0,686,80,606,'606 224h-474v-224h-52v250l26 26h500v-52'], + 0x2319: [500,-224,686,80,606,'606 224h-500l-26 26v250h52v-224h474v-52'], + 0x231C: [676,-410,426,80,346,'346 624h-214v-214h-52v240l26 26h240v-52'], + 0x231D: [676,-410,426,80,346,'346 410h-52v214h-214v52h240l26 -26v-240'], + 0x231E: [90,176,426,80,346,'346 -176h-240l-26 26v240h52v-214h214v-52'], + 0x231F: [90,176,426,80,346,'346 -150l-26 -26h-240v52h214v214h52v-240'], + 0x2320: [1212,0,776,325,696,'696 1099c0 -40 -26 -70 -70 -70c-38 0 -68 22 -68 70c0 5 4 21 11 29c5 8 9 13 9 19s-8 12 -21 12c-45 0 -85 -49 -98 -172c-8 -76 -8 -658 -8 -987h-126c0 279 0 722 10 837c27 310 122 375 249 375c65 0 112 -47 112 -113'], + 0x2321: [1194,18,776,80,451,'451 1194c0 -279 0 -722 -10 -837c-27 -310 -122 -375 -249 -375c-65 0 -112 47 -112 113c0 40 26 70 70 70c38 0 68 -22 68 -70c0 -5 -4 -21 -11 -29c-5 -8 -9 -13 -9 -19s8 -12 21 -12c45 0 85 49 98 172c8 76 8 658 8 987h126'], + 0x2329: [656,156,357,80,277,'277 -144l-34 -12l-163 406l163 406l34 -12l-141 -394'], + 0x232A: [656,156,357,80,277,'277 250l-163 -406l-34 12l141 394l-141 394l34 12'], + 0x239B: [1202,0,624,143,528,'528 1186c-180 -135 -292 -583 -292 -987v-199h-93v199c0 420 186 862 372 1003'], + 0x239C: [396,0,624,143,236,'236 0h-93v396h93v-396'], + 0x239D: [1202,0,624,143,528,'528 16l-13 -16c-186 141 -372 583 -372 1003v199h93v-199c0 -404 112 -852 292 -987'], + 0x239E: [1202,0,624,96,481,'481 0h-94l1 199c0 404 -112 852 -292 987l12 16c187 -141 373 -583 373 -1003v-199'], + 0x239F: [396,0,624,387,481,'481 396v-396h-94l1 396h93'], + 0x23A0: [1202,0,624,96,481,'481 1202v-199c0 -420 -186 -862 -373 -1003l-12 16c180 135 292 583 292 987v199h93'], + 0x23A1: [1216,0,491,143,395,'395 1172h-168v-1172h-84v1216h252v-44'], + 0x23A2: [810,0,491,143,227,'227 810v-810h-84v810h84'], + 0x23A3: [1216,0,491,143,395,'395 0h-252v1216h84v-1172h168v-44'], + 0x23A4: [1216,0,491,96,348,'348 1216v-1216h-84v1172h-168v44h252'], + 0x23A5: [810,0,491,264,348,'348 810v-810h-84v810h84'], + 0x23A6: [1216,0,491,96,348,'348 0h-252v44h168v1172h84v-1216'], + 0x23A7: [607,0,547,230,451,'451 587c-90 -24 -137 -160 -137 -288v-299h-84v299c0 150 110 279 215 308'], + 0x23A8: [1194,0,547,96,314,'314 1194v-299c0 -150 -78 -265 -166 -298c88 -33 166 -148 166 -298v-299h-84v299c0 151 -45 288 -134 288v20c89 0 134 137 134 288v299h84'], + 0x23A9: [607,0,547,230,451,'451 19l-6 -19c-105 28 -215 157 -215 308v299h84v-299c0 -128 47 -265 137 -289'], + 0x23AA: [596,0,547,233,317,'317 596v-596h-84v596h84'], + 0x23AB: [607,0,547,96,317,'317 0h-84v299c0 128 -47 264 -137 288l5 20c106 -29 216 -158 216 -308v-299'], + 0x23AC: [1194,0,547,233,451,'451 587c-90 0 -134 -137 -134 -288v-299h-84v299c0 150 78 265 166 298c-88 33 -166 148 -166 298v299h84v-299c0 -151 44 -288 134 -288v-20'], + 0x23AD: [607,0,547,96,317,'317 308c0 -151 -110 -280 -216 -308l-5 19c90 24 137 161 137 289v299h84v-299'], + 0x23AE: [580,0,800,334,466,'466 580v-580h-132v580h132'], + 0x23B2: [763,0,1353,80,1202,'1202 589h-31c-16 103 -48 128 -341 128h-553l473 -717h-167l-471 715c-11 13 -20 22 -32 25v23h1118'], + 0x23B3: [884,0,1353,80,1273,'1273 242l-64 -242h-1129v23c16 5 27 16 36 28l519 755l-52 78h167l-527 -768h880c78 0 97 19 135 126h35'], + 0x23B7: [1656,0,674,120,514,'514 1656v-1656h-38h-38l-262 1479h-56v44h148l194 -1093v1226h52'], + 0x27C2: [650,0,660,80,580,'580 0h-500v52h224v598h52v-598h224v-52'], + 0x27D8: [650,150,960,80,880,'880 -150h-800v52h374v748h52v-748h374v-52'], + 0x27D9: [650,150,960,80,880,'880 598h-374v-748h-52v748h-374v52h800v-52'], + 0x27DA: [650,150,1164,80,1084,'1084 128h-400v-278h-52v800h52v-278h400v-52h-400v-140h400v-52zM532 -150h-52v278h-400v52h400v140h-400v52h400v278h52v-800'], + 0x27DB: [650,150,1164,80,1084,'1084 224h-400v-374h-52v800h52v-374h400v-52zM532 -150h-52v374h-400v52h400v374h52v-800'], + 0x27DC: [400,-100,810,80,730,'730 224h-352c-13 -70 -74 -124 -148 -124c-83 0 -150 67 -150 150s67 150 150 150c74 0 135 -54 148 -124h352v-52zM336 250c0 59 -47 106 -106 106s-106 -47 -106 -106s47 -106 106 -106s106 47 106 106'], + 0x27DD: [650,150,1160,80,1080,'1080 224h-948v-374h-52v800h52v-374h948v-52'], + 0x27DE: [650,150,1160,80,1080,'1080 -150h-52v374h-948v52h948v374h52v-800'], + 0x27E0: [555,55,564,80,484,'484 236l-180 -291h-44l-180 291v28l180 291h44l180 -291v-28zM415 276l-133 216l-133 -216h266zM415 224h-266l133 -216'], + 0x27E1: [457,-43,574,80,494,'423 250c-57 32 -104 79 -136 136c-32 -57 -79 -104 -136 -136c57 -32 104 -79 136 -136c32 57 79 104 136 136zM494 226c-85 -31 -152 -98 -183 -183h-48c-31 85 -98 152 -183 183v48c85 31 152 98 182 183h49c31 -85 98 -152 183 -183v-48'], + 0x27E2: [457,-43,664,80,584,'584 226c-85 -31 -152 -98 -183 -183h-48c-31 83 -96 149 -179 181h-94v52h95c83 32 147 98 178 181h48c31 -85 98 -152 183 -183v-48zM513 250c-57 32 -104 79 -136 136c-32 -57 -79 -104 -136 -136c57 -32 104 -79 136 -136c32 57 79 104 136 136'], + 0x27E3: [457,-43,664,80,584,'584 224h-95c-83 -32 -147 -98 -178 -181h-48c-31 85 -98 152 -183 183v48c85 31 152 98 182 183h49c31 -83 96 -149 179 -181h94v-52zM423 250c-57 32 -104 79 -136 136c-32 -57 -79 -104 -136 -136c57 -32 104 -79 136 -136c32 57 79 104 136 136'], + 0x27E6: [668,168,398,120,318,'318 -168h-198v836h198v-36h-63v-764h63v-36zM219 632h-63v-764h63v764'], + 0x27E7: [668,168,398,80,278,'278 668v-836h-198v36h63v764h-63v36h198zM242 -132v764h-63v-764h63'], + 0x27EA: [656,156,543,80,463,'277 -144l-34 -12l-163 406l163 406l34 -12l-141 -394zM463 -144l-33 -12l-163 406l163 406l33 -12l-141 -394'], + 0x27EB: [656,156,543,80,463,'463 250l-163 -406l-33 12l141 394l-141 394l33 12zM277 250l-163 -406l-34 12l141 394l-141 394l34 12'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Symbols/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Variants/Regular/Main.js new file mode 100644 index 0000000..1a949f7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/Variants/Regular/Main.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['GyreTermesMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'GyreTermesMathJax_Variants', + id: 'GYRETERMESVARIANTS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2032: [596,-150,404,66,338,'338 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37c38 0 68 -30 68 -68'], + 0x2033: [596,-150,644,66,578,'338 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37c38 0 68 -30 68 -68zM578 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37c38 0 68 -30 68 -68'], + 0x2034: [596,-150,884,66,818,'338 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37c38 0 68 -30 68 -68zM578 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37c38 0 68 -30 68 -68zM818 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37 c38 0 68 -30 68 -68'], + 0x2035: [596,-150,404,66,338,'338 150h-30l-231 341c-7 10 -11 23 -11 37c0 38 30 68 68 68c29 0 54 -19 60 -37'], + 0x2036: [596,-150,644,66,578,'338 150h-30l-231 341c-7 10 -11 23 -11 37c0 38 30 68 68 68c29 0 54 -19 60 -37zM578 150h-30l-231 341c-7 10 -11 23 -11 37c0 38 30 68 68 68c29 0 54 -19 60 -37'], + 0x2037: [596,-150,884,66,818,'338 150h-30l-231 341c-7 10 -11 23 -11 37c0 38 30 68 68 68c29 0 54 -19 60 -37zM578 150h-30l-231 341c-7 10 -11 23 -11 37c0 38 30 68 68 68c29 0 54 -19 60 -37zM818 150h-30l-231 341c-7 10 -11 23 -11 37c0 38 30 68 68 68c29 0 54 -19 60 -37'], + 0x2057: [596,-150,1124,66,1058,'338 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37c38 0 68 -30 68 -68zM578 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37c38 0 68 -30 68 -68zM818 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37 c38 0 68 -30 68 -68zM1058 528c0 -14 -4 -27 -12 -37l-230 -341h-30l144 409c6 18 31 37 60 37c38 0 68 -30 68 -68'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Variants/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/fontdata-extra.js new file mode 100644 index 0000000..0185f14 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/fontdata-extra.js @@ -0,0 +1,787 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/fontdata-extra.js + * + * Adds extra stretchy characters to the Gyre-Termes fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG) { + var VERSION = "2.3"; + + var DELIMITERS = SVG.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "GyreTermesMathJax_Alphabets", + ARROWS = "GyreTermesMathJax_Arrows", + DOUBLESTRUCK = "GyreTermesMathJax_DoubleStruck", + FRAKTUR = "GyreTermesMathJax_Fraktur", + LATIN = "GyreTermesMathJax_Latin", + MAIN = "GyreTermesMathJax_Main", + MARKS = "GyreTermesMathJax_Marks", + MISC = "GyreTermesMathJax_Misc", + MONOSPACE = "GyreTermesMathJax_Monospace", + NONUNICODE = "GyreTermesMathJax_NonUnicode", + NORMAL = "GyreTermesMathJax_Normal", + OPERATORS = "GyreTermesMathJax_Operators", + SANSSERIF = "GyreTermesMathJax_SansSerif", + SCRIPT = "GyreTermesMathJax_Script", + SHAPES = "GyreTermesMathJax_Shapes", + SIZE1 = "GyreTermesMathJax_Size1", + SIZE2 = "GyreTermesMathJax_Size2", + SIZE3 = "GyreTermesMathJax_Size3", + SIZE4 = "GyreTermesMathJax_Size4", + SIZE5 = "GyreTermesMathJax_Size5", + SIZE6 = "GyreTermesMathJax_Size6", + SYMBOLS = "GyreTermesMathJax_Symbols", + VARIANTS = "GyreTermesMathJax_Variants"; + + var delim = { + 0x306: + { + dir: H, + HW: [[350,MAIN], [620,SIZE1], [740,SIZE2], [885,SIZE3], [1058,SIZE4], [1266,SIZE5], [1515,SIZE6]] + }, + 0x311: + { + dir: H, + HW: [[350,MARKS], [620,SIZE1], [740,SIZE2], [885,SIZE3], [1058,SIZE4], [1266,SIZE5], [1515,SIZE6]] + }, + 0x32C: + { + dir: H, + HW: [[342,MARKS], [608,SIZE1], [727,SIZE2], [870,SIZE3], [1041,SIZE4], [1249,SIZE5], [1496,SIZE6]] + }, + 0x32D: + { + dir: H, + HW: [[342,MARKS], [608,SIZE1], [727,SIZE2], [870,SIZE3], [1041,SIZE4], [1249,SIZE5], [1496,SIZE6]] + }, + 0x32E: + { + dir: H, + HW: [[350,MARKS], [620,SIZE1], [740,SIZE2], [885,SIZE3], [1058,SIZE4], [1266,SIZE5], [1515,SIZE6]] + }, + 0x32F: + { + dir: H, + HW: [[350,MARKS], [620,SIZE1], [740,SIZE2], [885,SIZE3], [1058,SIZE4], [1266,SIZE5], [1515,SIZE6]] + }, + 0x330: + { + dir: H, + HW: [[334,MARKS], [601,SIZE1], [720,SIZE2], [863,SIZE3], [1037,SIZE4], [1241,SIZE5], [1491,SIZE6]] + }, + 0x333: + { + dir: H, + HW: [[333,MARKS], [500,SIZE1]], + stretch: {left:[0xE0F8,SIZE6], rep:[0xE0F9,SIZE6], right:[0xE0FA,SIZE6]} + }, + 0x33F: + { + dir: H, + HW: [[333,MARKS], [500,SIZE1]], + stretch: {left:[0xE0FE,SIZE6], rep:[0xE0FF,SIZE6], right:[0xE100,SIZE6]} + }, + 0x20D0: + { + dir: H, + HW: [[376,MARKS], [500,SIZE1]], + stretch: {left:[0xE008,SIZE6], rep:[0xE009,SIZE6], right:[0xE00A,SIZE6]} + }, + 0x20D1: + { + dir: H, + HW: [[376,MARKS], [500,SIZE1]], + stretch: {left:[0xE00B,SIZE6], rep:[0xE00C,SIZE6], right:[0xE00D,SIZE6]} + }, + 0x20D6: + { + dir: H, + HW: [[386,MARKS], [510,SIZE1]], + stretch: {left:[0xE00E,SIZE6], rep:[0xE00F,SIZE6], right:[0xE010,SIZE6]} + }, + 0x20D7: + { + dir: H, + HW: [[386,MAIN], [510,SIZE1]], + stretch: {left:[0xE011,SIZE6], rep:[0xE012,SIZE6], right:[0xE013,SIZE6]} + }, + 0x20E1: + { + dir: H, + HW: [[458,MARKS], [582,SIZE1]], + stretch: {left:[0xE014,SIZE6], rep:[0xE015,SIZE6], right:[0xE016,SIZE6]} + }, + 0x20E9: + { + dir: H, + HW: [[375,MARKS], [750,SIZE1], [1125,SIZE2], [1500,SIZE3], [1875,SIZE4], [2250,SIZE5], [2625,SIZE6]], + stretch: {left:[0xE11B,SIZE6], rep:[0xE11C,SIZE6], right:[0xE11D,SIZE6]} + }, + 0x20EC: + { + dir: H, + HW: [[376,MARKS], [500,SIZE1]], + stretch: {left:[0xE017,SIZE6], rep:[0xE018,SIZE6], right:[0xE019,SIZE6]} + }, + 0x20ED: + { + dir: H, + HW: [[376,MARKS], [500,SIZE1]], + stretch: {left:[0xE01A,SIZE6], rep:[0xE01B,SIZE6], right:[0xE01C,SIZE6]} + }, + 0x20EE: + { + dir: H, + HW: [[386,MARKS], [510,SIZE1]], + stretch: {left:[0xE01D,SIZE6], rep:[0xE01E,SIZE6], right:[0xE01F,SIZE6]} + }, + 0x20EF: + { + dir: H, + HW: [[386,MARKS], [510,SIZE1]], + stretch: {left:[0xE020,SIZE6], rep:[0xE021,SIZE6], right:[0xE022,SIZE6]} + }, + 0x2196: + { + dir: V, + HW: [[506,MAIN], [733,SIZE1]] + }, + 0x2197: + { + dir: V, + HW: [[506,MAIN], [733,SIZE1]] + }, + 0x2198: + { + dir: V, + HW: [[506,MAIN], [733,SIZE1]] + }, + 0x2199: + { + dir: V, + HW: [[506,MAIN], [733,SIZE1]] + }, + 0x219A: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE02F,SIZE6], rep:[0xE030,SIZE6], mid:[0xE031,SIZE6], right:[0xE032,SIZE6]} + }, + 0x219B: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE033,SIZE6], rep:[0xE034,SIZE6], mid:[0xE035,SIZE6], right:[0xE036,SIZE6]} + }, + 0x219E: + { + dir: H, + HW: [[870,MAIN], [1190,SIZE1]], + stretch: {left:[0xE041,SIZE6], rep:[0xE042,SIZE6], right:[0xE043,SIZE6]} + }, + 0x219F: + { + dir: V, + HW: [[870,ARROWS], [1190,SIZE1]], + stretch: {bot:[0xE047,SIZE6], ext:[0xE048,SIZE6], top:[0xE049,SIZE6]} + }, + 0x21A0: + { + dir: H, + HW: [[870,MAIN], [1190,SIZE1]], + stretch: {left:[0xE044,SIZE6], rep:[0xE045,SIZE6], right:[0xE046,SIZE6]} + }, + 0x21A1: + { + dir: V, + HW: [[870,ARROWS], [1190,SIZE1]], + stretch: {bot:[0xE04A,SIZE6], ext:[0xE04B,SIZE6], top:[0xE04C,SIZE6]} + }, + 0x21A2: + { + dir: H, + HW: [[880,MAIN], [1200,SIZE1]], + stretch: {left:[0xE04D,SIZE6], rep:[0xE04E,SIZE6], right:[0xE04F,SIZE6]} + }, + 0x21A3: + { + dir: H, + HW: [[880,MAIN], [1200,SIZE1]], + stretch: {left:[0xE050,SIZE6], rep:[0xE051,SIZE6], right:[0xE052,SIZE6]} + }, + 0x21A5: + { + dir: V, + HW: [[690,ARROWS], [1010,SIZE1]], + stretch: {bot:[0xE059,SIZE6], ext:[0xE05A,SIZE6], top:[0xE05B,SIZE6]} + }, + 0x21A7: + { + dir: V, + HW: [[690,ARROWS], [1010,SIZE1]], + stretch: {bot:[0xE05C,SIZE6], ext:[0xE05D,SIZE6], top:[0xE05E,SIZE6]} + }, + 0x21A9: + { + dir: H, + HW: [[716,MAIN], [1036,SIZE1]], + stretch: {left:[0xE062,SIZE6], rep:[0xE063,SIZE6], right:[0xE064,SIZE6]} + }, + 0x21AA: + { + dir: H, + HW: [[716,MAIN], [1036,SIZE1]], + stretch: {left:[0xE05F,SIZE6], rep:[0xE060,SIZE6], right:[0xE061,SIZE6]} + }, + 0x21AB: + { + dir: H, + HW: [[716,MAIN], [1036,SIZE1]], + stretch: {left:[0xE068,SIZE6], rep:[0xE069,SIZE6], right:[0xE06A,SIZE6]} + }, + 0x21AC: + { + dir: H, + HW: [[716,MAIN], [1036,SIZE1]], + stretch: {left:[0xE065,SIZE6], rep:[0xE066,SIZE6], right:[0xE067,SIZE6]} + }, + 0x21AD: + { + dir: H, + HW: [[880,MAIN], [1200,SIZE1]] + }, + 0x21AE: + { + dir: H, + HW: [[880,MAIN], [1200,SIZE1]], + stretch: {left:[0xE03D,SIZE6], rep:[0xE03E,SIZE6], mid:[0xE03F,SIZE6], right:[0xE040,SIZE6]} + }, + 0x21B0: + { + dir: V, + HW: [[696,MAIN], [888,SIZE1]] + }, + 0x21B1: + { + dir: V, + HW: [[696,MAIN], [888,SIZE1]] + }, + 0x21B2: + { + dir: V, + HW: [[696,ARROWS], [888,SIZE1]] + }, + 0x21B3: + { + dir: V, + HW: [[696,ARROWS], [888,SIZE1]] + }, + 0x21B6: + { + dir: H, + HW: [[639,MAIN], [879,SIZE1]] + }, + 0x21B7: + { + dir: H, + HW: [[639,MAIN], [879,SIZE1]] + }, + 0x21BC: + { + dir: H, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {left:[0xE06B,SIZE6], rep:[0xE06C,SIZE6], right:[0xE06D,SIZE6]} + }, + 0x21BD: + { + dir: H, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {left:[0xE071,SIZE6], rep:[0xE072,SIZE6], right:[0xE073,SIZE6]} + }, + 0x21BE: + { + dir: V, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {bot:[0xE077,SIZE6], ext:[0xE078,SIZE6], top:[0xE079,SIZE6]} + }, + 0x21BF: + { + dir: V, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {bot:[0xE07D,SIZE6], ext:[0xE07E,SIZE6], top:[0xE07F,SIZE6]} + }, + 0x21C0: + { + dir: H, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {left:[0xE06E,SIZE6], rep:[0xE06F,SIZE6], right:[0xE070,SIZE6]} + }, + 0x21C1: + { + dir: H, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {left:[0xE074,SIZE6], rep:[0xE075,SIZE6], right:[0xE076,SIZE6]} + }, + 0x21C2: + { + dir: V, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {bot:[0xE07A,SIZE6], ext:[0xE07B,SIZE6], top:[0xE07C,SIZE6]} + }, + 0x21C3: + { + dir: V, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {bot:[0xE080,SIZE6], ext:[0xE081,SIZE6], top:[0xE082,SIZE6]} + }, + 0x21C4: + { + dir: H, + HW: [[700,MAIN], [1020,SIZE1]], + stretch: {left:[0xE083,SIZE6], rep:[0xE084,SIZE6], right:[0xE085,SIZE6]} + }, + 0x21C5: + { + dir: V, + HW: [[700,ARROWS], [1020,SIZE1]], + stretch: {bot:[0xE089,SIZE6], ext:[0xE08A,SIZE6], top:[0xE08B,SIZE6]} + }, + 0x21C6: + { + dir: H, + HW: [[700,MAIN], [1020,SIZE1]], + stretch: {left:[0xE086,SIZE6], rep:[0xE087,SIZE6], right:[0xE088,SIZE6]} + }, + 0x21C7: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE08F,SIZE6], rep:[0xE090,SIZE6], right:[0xE091,SIZE6]} + }, + 0x21C8: + { + dir: V, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {bot:[0xE095,SIZE6], ext:[0xE096,SIZE6], top:[0xE097,SIZE6]} + }, + 0x21C9: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE092,SIZE6], rep:[0xE093,SIZE6], right:[0xE094,SIZE6]} + }, + 0x21CA: + { + dir: V, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {bot:[0xE098,SIZE6], ext:[0xE099,SIZE6], top:[0xE09A,SIZE6]} + }, + 0x21CB: + { + dir: H, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {left:[0xE0A1,SIZE6], rep:[0xE0A2,SIZE6], right:[0xE0A3,SIZE6]} + }, + 0x21CC: + { + dir: H, + HW: [[680,MAIN], [1000,SIZE1]], + stretch: {left:[0xE0A4,SIZE6], rep:[0xE0A5,SIZE6], right:[0xE0A6,SIZE6]} + }, + 0x21CD: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE0B9,SIZE6], rep:[0xE0BA,SIZE6], mid:[0xE0BB,SIZE6], right:[0xE0BC,SIZE6]} + }, + 0x21CE: + { + dir: H, + HW: [[880,MAIN], [1200,SIZE1]], + stretch: {left:[0xE0C1,SIZE6], rep:[0xE0C2,SIZE6], mid:[0xE0C3,SIZE6], right:[0xE0C4,SIZE6]} + }, + 0x21CF: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE0BD,SIZE6], rep:[0xE0BE,SIZE6], mid:[0xE0BF,SIZE6], right:[0xE0C0,SIZE6]} + }, + 0x21D6: + { + dir: V, + HW: [[560,ARROWS], [787,SIZE1]] + }, + 0x21D7: + { + dir: V, + HW: [[560,ARROWS], [787,SIZE1]] + }, + 0x21D8: + { + dir: V, + HW: [[560,ARROWS], [787,SIZE1]] + }, + 0x21D9: + { + dir: V, + HW: [[560,ARROWS], [787,SIZE1]] + }, + 0x21DA: + { + dir: H, + HW: [[870,MAIN], [1190,SIZE1]], + stretch: {left:[0xE0CB,SIZE6], rep:[0xE0CC,SIZE6], right:[0xE0CD,SIZE6]} + }, + 0x21DB: + { + dir: H, + HW: [[870,MAIN], [1190,SIZE1]], + stretch: {left:[0xE0CE,SIZE6], rep:[0xE0CF,SIZE6], right:[0xE0D0,SIZE6]} + }, + 0x21DC: + { + dir: H, + HW: [[690,ARROWS], [1010,SIZE1]] + }, + 0x21DD: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]] + }, + 0x21E6: + { + dir: H, + HW: [[913,ARROWS], [1233,SIZE1]], + stretch: {left:[0xE0D1,SIZE6], rep:[0xE0D2,SIZE6], right:[0xE0D3,SIZE6]} + }, + 0x21E7: + { + dir: V, + HW: [[913,ARROWS], [1233,SIZE1]], + stretch: {bot:[0xE0D7,SIZE6], ext:[0xE0D8,SIZE6], top:[0xE0D9,SIZE6]} + }, + 0x21E8: + { + dir: H, + HW: [[913,ARROWS], [1233,SIZE1]], + stretch: {left:[0xE0D4,SIZE6], rep:[0xE0D5,SIZE6], right:[0xE0D6,SIZE6]} + }, + 0x21E9: + { + dir: V, + HW: [[913,ARROWS], [1233,SIZE1]], + stretch: {bot:[0xE0DA,SIZE6], ext:[0xE0DB,SIZE6], top:[0xE0DC,SIZE6]} + }, + 0x21F3: + { + dir: V, + HW: [[930,ARROWS], [1250,SIZE1]], + stretch: {bot:[0xE0DD,SIZE6], ext:[0xE0DE,SIZE6], top:[0xE0DF,SIZE6]} + }, + 0x21F5: + { + dir: V, + HW: [[700,ARROWS], [1020,SIZE1]], + stretch: {bot:[0xE08C,SIZE6], ext:[0xE08D,SIZE6], top:[0xE08E,SIZE6]} + }, + 0x21F6: + { + dir: H, + HW: [[690,ARROWS], [1010,SIZE1]], + stretch: {left:[0xE09B,SIZE6], rep:[0xE09C,SIZE6], right:[0xE09D,SIZE6]} + }, + 0x220F: + { + dir: V, + HW: [[954,OPERATORS], [1374,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[954,OPERATORS], [1374,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[954,OPERATORS], [1374,SIZE1]] + }, + 0x222B: + { + dir: V, + HW: [[1092,MAIN], [2025,SIZE1]], + stretch: {top:[0xE135,SIZE6], ext:[0x23AE,SYMBOLS], bot:[0xE136,SIZE6]} + }, + 0x222C: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]], + stretch: {top:[0xE137,SIZE6], ext:[0xE138,SIZE6], bot:[0xE139,SIZE6]} + }, + 0x222D: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]], + stretch: {top:[0xE13A,SIZE6], ext:[0xE13B,SIZE6], bot:[0xE13C,SIZE6]} + }, + 0x222E: + { + dir: V, + HW: [[1092,OPERATORS,null,0x222F], [2025,SIZE1]] + }, + 0x222F: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2230: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2231: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2232: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2233: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2261: + { + dir: H, + HW: [[500,MAIN]], + stretch: {left:[0xE12D,SIZE6], rep:[0xE12E,SIZE6], right:[0xE12F,SIZE6]} + }, + 0x2263: + { + dir: H, + HW: [[500,OPERATORS]], + stretch: {left:[0xE130,SIZE6], rep:[0xE131,SIZE6], right:[0xE132,SIZE6]} + }, + 0x22A2: + { + dir: V, + HW: [[650,MAIN], [800,SIZE1]] + }, + 0x22A3: + { + dir: V, + HW: [[650,MAIN], [800,SIZE1]] + }, + 0x22A4: + { + dir: V, + HW: [[650,MAIN], [800,SIZE1]] + }, + 0x22A5: + { + dir: V, + HW: [[650,MAIN], [800,SIZE1]] + }, + 0x22C0: + { + dir: V, + HW: [[888,OPERATORS], [1165,SIZE1]] + }, + 0x22C1: + { + dir: V, + HW: [[888,OPERATORS], [1165,SIZE1]] + }, + 0x22C2: + { + dir: V, + HW: [[898,OPERATORS], [1170,SIZE1]] + }, + 0x22C3: + { + dir: V, + HW: [[898,OPERATORS], [1170,SIZE1]] + }, + 0x23B4: + { + dir: H, + HW: [[375,MAIN], [750,SIZE1], [1125,SIZE2], [1500,SIZE3], [1875,SIZE4], [2250,SIZE5], [2625,SIZE6]], + stretch: {left:[0xE11B,SIZE6], rep:[0xE11C,SIZE6], right:[0xE11D,SIZE6]} + }, + 0x23B5: + { + dir: H, + HW: [[375,MAIN], [750,SIZE1], [1125,SIZE2], [1500,SIZE3], [1875,SIZE4], [2250,SIZE5], [2625,SIZE6]], + stretch: {left:[0xE11E,SIZE6], rep:[0xE11F,SIZE6], right:[0xE120,SIZE6]} + }, + 0x23DC: + { + dir: H, + HW: [[514,MAIN], [1014,SIZE1], [1514,SIZE2], [2013,SIZE3], [2514,SIZE4], [3014,SIZE5], [3514,SIZE6]], + stretch: {left:[0xE115,SIZE6], rep:[0xE116,SIZE6], right:[0xE117,SIZE6]} + }, + 0x23DD: + { + dir: H, + HW: [[514,MAIN], [1014,SIZE1], [1514,SIZE2], [2013,SIZE3], [2514,SIZE4], [3014,SIZE5], [3514,SIZE6]], + stretch: {left:[0xE118,SIZE6], rep:[0xE119,SIZE6], right:[0xE11A,SIZE6]} + }, + 0x23E0: + { + dir: H, + HW: [[562,MAIN], [1066,SIZE1], [1568,SIZE2], [2072,SIZE3], [2576,SIZE4], [3080,SIZE5], [3584,SIZE6]], + stretch: {left:[0xE121,SIZE6], rep:[0xE122,SIZE6], right:[0xE123,SIZE6]} + }, + 0x23E1: + { + dir: H, + HW: [[562,MAIN], [1066,SIZE1], [1568,SIZE2], [2072,SIZE3], [2576,SIZE4], [3080,SIZE5], [3584,SIZE6]], + stretch: {left:[0xE124,SIZE6], rep:[0xE125,SIZE6], right:[0xE126,SIZE6]} + }, + 0x27A1: + { + dir: H, + HW: [[870,MISC], [1190,SIZE1]], + stretch: {left:[0xE0E6,SIZE6], rep:[0xE0E7,SIZE6], right:[0xE0E8,SIZE6]} + }, + 0x27E6: + { + dir: V, + HW: [[836,SYMBOLS], [998,SIZE1], [1190,SIZE2], [1422,SIZE3], [1698,SIZE4], [2032,SIZE5], [2432,SIZE6]], + stretch: {bot:[0xE107,SIZE6], ext:[0xE108,SIZE6], top:[0xE109,SIZE6]} + }, + 0x27E7: + { + dir: V, + HW: [[836,SYMBOLS], [998,SIZE1], [1190,SIZE2], [1422,SIZE3], [1698,SIZE4], [2032,SIZE5], [2432,SIZE6]], + stretch: {bot:[0xE10A,SIZE6], ext:[0xE10B,SIZE6], top:[0xE10C,SIZE6]} + }, + 0x27EA: + { + dir: V, + HW: [[812,SYMBOLS], [1060,SIZE1], [1382,SIZE2], [1806,SIZE3], [2364,SIZE4], [3092,SIZE5], [4048,SIZE6]] + }, + 0x27EB: + { + dir: V, + HW: [[812,SYMBOLS], [1060,SIZE1], [1382,SIZE2], [1806,SIZE3], [2364,SIZE4], [3092,SIZE5], [4048,SIZE6]] + }, + 0x2A00: + { + dir: V, + HW: [[876,OPERATORS], [1132,SIZE1]] + }, + 0x2A01: + { + dir: V, + HW: [[876,OPERATORS], [1132,SIZE1]] + }, + 0x2A02: + { + dir: V, + HW: [[876,OPERATORS], [1132,SIZE1]] + }, + 0x2A03: + { + dir: V, + HW: [[898,OPERATORS], [1170,SIZE1]] + }, + 0x2A04: + { + dir: V, + HW: [[898,OPERATORS], [1170,SIZE1]] + }, + 0x2A05: + { + dir: V, + HW: [[880,OPERATORS], [1152,SIZE1]] + }, + 0x2A06: + { + dir: V, + HW: [[880,OPERATORS], [1152,SIZE1]] + }, + 0x2A09: + { + dir: V, + HW: [[716,OPERATORS], [906,SIZE1]] + }, + 0x2A0C: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2A11: + { + dir: V, + HW: [[1092,OPERATORS], [2025,SIZE1]] + }, + 0x2B04: + { + dir: H, + HW: [[931,SHAPES], [1251,SIZE1]], + stretch: {left:[0xE0E0,SIZE6], rep:[0xE0E1,SIZE6], right:[0xE0E2,SIZE6]} + }, + 0x2B05: + { + dir: H, + HW: [[870,SHAPES], [1190,SIZE1]], + stretch: {left:[0xE0E3,SIZE6], rep:[0xE0E4,SIZE6], right:[0xE0E5,SIZE6]} + }, + 0x2B06: + { + dir: V, + HW: [[870,SHAPES], [1190,SIZE1]], + stretch: {bot:[0xE0E9,SIZE6], ext:[0xE0EA,SIZE6], top:[0xE0EB,SIZE6]} + }, + 0x2B07: + { + dir: V, + HW: [[870,SHAPES], [1190,SIZE1]], + stretch: {bot:[0xE0EC,SIZE6], ext:[0xE0ED,SIZE6], top:[0xE0EE,SIZE6]} + }, + 0x2B0C: + { + dir: H, + HW: [[880,SHAPES], [1200,SIZE1]], + stretch: {left:[0xE0EF,SIZE6], rep:[0xE0F0,SIZE6], right:[0xE0F1,SIZE6]} + }, + 0x2B0D: + { + dir: V, + HW: [[880,SHAPES], [1200,SIZE1]], + stretch: {bot:[0xE0F2,SIZE6], ext:[0xE0F3,SIZE6], top:[0xE0F4,SIZE6]} + }, + 0x2B31: + { + dir: H, + HW: [[690,SHAPES], [1010,SIZE1]], + stretch: {left:[0xE09E,SIZE6], rep:[0xE09F,SIZE6], right:[0xE0A0,SIZE6]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(SVG.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["SVG"]); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/fontdata.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/fontdata.js new file mode 100644 index 0000000..f998154 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Gyre-Termes/fontdata.js @@ -0,0 +1,679 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Gyre-Termes/fontdata.js + * + * Initializes the SVG OutputJax to use the Gyre-Termes fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG,MML,AJAX,HUB) { + + var VERSION = "2.3"; + + var ALPHABETS = "GyreTermesMathJax_Alphabets", + ARROWS = "GyreTermesMathJax_Arrows", + DOUBLESTRUCK = "GyreTermesMathJax_DoubleStruck", + FRAKTUR = "GyreTermesMathJax_Fraktur", + LATIN = "GyreTermesMathJax_Latin", + MAIN = "GyreTermesMathJax_Main", + MARKS = "GyreTermesMathJax_Marks", + MISC = "GyreTermesMathJax_Misc", + MONOSPACE = "GyreTermesMathJax_Monospace", + NONUNICODE = "GyreTermesMathJax_NonUnicode", + NORMAL = "GyreTermesMathJax_Normal", + OPERATORS = "GyreTermesMathJax_Operators", + SANSSERIF = "GyreTermesMathJax_SansSerif", + SCRIPT = "GyreTermesMathJax_Script", + SHAPES = "GyreTermesMathJax_Shapes", + SIZE1 = "GyreTermesMathJax_Size1", + SIZE2 = "GyreTermesMathJax_Size2", + SIZE3 = "GyreTermesMathJax_Size3", + SIZE4 = "GyreTermesMathJax_Size4", + SIZE5 = "GyreTermesMathJax_Size5", + SIZE6 = "GyreTermesMathJax_Size6", + SYMBOLS = "GyreTermesMathJax_Symbols", + VARIANTS = "GyreTermesMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + SVG.Augment({ + FONTDATA: { + version: VERSION, + + + baselineskip: 1200, + lineH: 800, lineD: 200, + + FONTS: { + "GyreTermesMathJax_Alphabets": "Alphabets/Regular/Main.js", + "GyreTermesMathJax_Arrows": "Arrows/Regular/Main.js", + "GyreTermesMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "GyreTermesMathJax_Fraktur": "Fraktur/Regular/Main.js", + "GyreTermesMathJax_Latin": "Latin/Regular/Main.js", + "GyreTermesMathJax_Main": "Main/Regular/Main.js", + "GyreTermesMathJax_Marks": "Marks/Regular/Main.js", + "GyreTermesMathJax_Misc": "Misc/Regular/Main.js", + "GyreTermesMathJax_Monospace": "Monospace/Regular/Main.js", + "GyreTermesMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "GyreTermesMathJax_Normal": "Normal/Regular/Main.js", + "GyreTermesMathJax_Operators": "Operators/Regular/Main.js", + "GyreTermesMathJax_SansSerif": "SansSerif/Regular/Main.js", + "GyreTermesMathJax_Script": "Script/Regular/Main.js", + "GyreTermesMathJax_Shapes": "Shapes/Regular/Main.js", + "GyreTermesMathJax_Size1": "Size1/Regular/Main.js", + "GyreTermesMathJax_Size2": "Size2/Regular/Main.js", + "GyreTermesMathJax_Size3": "Size3/Regular/Main.js", + "GyreTermesMathJax_Size4": "Size4/Regular/Main.js", + "GyreTermesMathJax_Size5": "Size5/Regular/Main.js", + "GyreTermesMathJax_Size6": "Size6/Regular/Main.js", + "GyreTermesMathJax_Symbols": "Symbols/Regular/Main.js", + "GyreTermesMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, offsetA: 0x1D434, offsetG: 0x1D6E2, remap: {0x1D455: 0x210E}}, + "bolditalic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true, offsetA: 0x1D468, offsetG: 0x1D71C}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Gyre-Termes-variant": {fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x0305, + + REMAP: { + 0x25C2: 0x25C0, + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x2758: 0x2223, + 0x25B8: 0x25B6, + 0x03D2: 0x03A5, + 0x25B4: 0x25B2, + 0x25B5: 0x25B3, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF, + 0x02B9: 0x2032, + 0x25FB: 0x25A1, + 0x25FC: 0x25A0, + 0x25BE: 0x25BC, + 0x203E: 0x0305, + 0x25BF: 0x25BD + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[816,MAIN], [976,SIZE1], [1168,SIZE2], [1398,SIZE3], [1674,SIZE4], [2005,SIZE5], [2404,SIZE6], [2780,SIZE6,1.157]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[816,MAIN], [976,SIZE1], [1168,SIZE2], [1398,SIZE3], [1674,SIZE4], [2005,SIZE5], [2404,SIZE6], [2780,SIZE6,1.157]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0x305, dir: H}, + 0x2F: + { + dir: V, + HW: [[800,MAIN], [1048,SIZE1], [1372,SIZE2], [1798,SIZE3], [1827,SIZE3,1.016], [2356,SIZE4], [3086,SIZE5], [4043,SIZE6]] + }, + 0x3D: + { + dir: H, + HW: [[500,MAIN]], + stretch: {left:[0xE000,SIZE6], rep:[0xE001,SIZE6], right:[0xE002,SIZE6]} + }, + 0x5B: + { + dir: V, + HW: [[836,MAIN], [998,SIZE1], [1190,SIZE2], [1422,SIZE3], [1698,SIZE4], [2032,SIZE5], [2432,SIZE6], [2780,SIZE6,1.143]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[800,MAIN], [1048,SIZE1], [1372,SIZE2], [1798,SIZE3], [1827,SIZE3,1.016], [2356,SIZE4], [3086,SIZE5], [4043,SIZE6]] + }, + 0x5D: + { + dir: V, + HW: [[836,MAIN], [998,SIZE1], [1190,SIZE2], [1422,SIZE3], [1698,SIZE4], [2032,SIZE5], [2432,SIZE6], [2780,SIZE6,1.143]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5E: {alias: 0x302, dir: H}, + 0x5F: {alias: 0x332, dir: H}, + 0x7B: + { + dir: V, + HW: [[820,MAIN], [980,SIZE1], [1172,SIZE2], [1402,SIZE3], [1678,SIZE4], [2009,SIZE5], [2408,SIZE6], [2780,SIZE6,1.155]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0xE003,SIZE6], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[800,MAIN], [960,SIZE1], [1152,SIZE2], [1382,SIZE3], [1658,SIZE4], [1990,SIZE5], [2388,SIZE6]], + stretch: {bot:[0xE004,SIZE6], ext:[0xE005,SIZE6], top:[0xE006,SIZE6]} + }, + 0x7D: + { + dir: V, + HW: [[820,MAIN], [980,SIZE1], [1172,SIZE2], [1402,SIZE3], [1678,SIZE4], [2009,SIZE5], [2408,SIZE6], [2780,SIZE6,1.155]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0xE007,SIZE6], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0x7E: {alias: 0x303, dir: H}, + 0xAF: {alias: 0x332, dir: H}, + 0x2C6: {alias: 0x302, dir: H}, + 0x2C9: {alias: 0x305, dir: H}, + 0x2DC: {alias: 0x303, dir: H}, + 0x302: + { + dir: H, + HW: [[342,MAIN], [608,SIZE1], [727,SIZE2], [870,SIZE3], [1041,SIZE4], [1249,SIZE5], [1496,SIZE6]] + }, + 0x303: + { + dir: H, + HW: [[334,MAIN], [601,SIZE1], [720,SIZE2], [863,SIZE3], [1037,SIZE4], [1241,SIZE5], [1491,SIZE6]] + }, + 0x305: + { + dir: H, + HW: [[333,MARKS], [500,SIZE1]], + stretch: {left:[0xE0FB,SIZE6], rep:[0xE0FC,SIZE6], right:[0xE0FD,SIZE6]} + }, + 0x306: EXTRAH, + 0x30C: + { + dir: H, + HW: [[342,MAIN], [608,SIZE1], [727,SIZE2], [870,SIZE3], [1041,SIZE4], [1249,SIZE5], [1496,SIZE6]] + }, + 0x311: EXTRAH, + 0x32C: EXTRAH, + 0x32D: EXTRAH, + 0x32E: EXTRAH, + 0x32F: EXTRAH, + 0x330: EXTRAH, + 0x332: + { + dir: H, + HW: [[333,MARKS], [500,SIZE1]], + stretch: {left:[0xE0F5,SIZE6], rep:[0xE0F6,SIZE6], right:[0xE0F7,SIZE6]} + }, + 0x333: EXTRAH, + 0x33F: EXTRAH, + 0x2015: {alias: 0x305, dir: H}, + 0x2016: + { + dir: V, + HW: [[800,MAIN], [960,SIZE1], [1152,SIZE2], [1382,SIZE3], [1658,SIZE4], [1990,SIZE5], [2388,SIZE6]], + stretch: {bot:[0xE12A,SIZE6], ext:[0xE12B,SIZE6], top:[0xE12C,SIZE6]} + }, + 0x2017: {alias: 0x305, dir: H}, + 0x203E: {alias: 0x305, dir: H}, + 0x2044: + { + dir: V, + HW: [[800,MAIN], [1048,SIZE1], [1372,SIZE2], [1798,SIZE3], [2356,SIZE4], [3086,SIZE5], [4043,SIZE6]] + }, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: EXTRAH, + 0x20E1: EXTRAH, + 0x20E9: EXTRAH, + 0x20EC: EXTRAH, + 0x20ED: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2140: + { + dir: V, + HW: [[956,DOUBLESTRUCK], [1360,SIZE1]] + }, + 0x2190: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE023,SIZE6], rep:[0xE024,SIZE6], right:[0xE025,SIZE6]} + }, + 0x2191: + { + dir: V, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {bot:[0xE029,SIZE6], ext:[0xE02A,SIZE6], top:[0xE02B,SIZE6]} + }, + 0x2192: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE026,SIZE6], rep:[0xE027,SIZE6], right:[0xE028,SIZE6]} + }, + 0x2193: + { + dir: V, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {bot:[0xE02C,SIZE6], ext:[0xE02D,SIZE6], top:[0xE02E,SIZE6]} + }, + 0x2194: + { + dir: H, + HW: [[880,MAIN], [1200,SIZE1]], + stretch: {left:[0xE037,SIZE6], rep:[0xE038,SIZE6], right:[0xE039,SIZE6]} + }, + 0x2195: + { + dir: V, + HW: [[880,MAIN], [1200,SIZE1]], + stretch: {bot:[0xE03A,SIZE6], ext:[0xE03B,SIZE6], top:[0xE03C,SIZE6]} + }, + 0x2196: EXTRAV, + 0x2197: EXTRAV, + 0x2198: EXTRAV, + 0x2199: EXTRAV, + 0x219A: EXTRAH, + 0x219B: EXTRAH, + 0x219E: EXTRAH, + 0x219F: EXTRAV, + 0x21A0: EXTRAH, + 0x21A1: EXTRAV, + 0x21A2: EXTRAH, + 0x21A3: EXTRAH, + 0x21A4: + { + dir: H, + HW: [[690,ARROWS], [1010,SIZE1]], + stretch: {left:[0xE053,SIZE6], rep:[0xE054,SIZE6], right:[0xE055,SIZE6]} + }, + 0x21A5: EXTRAV, + 0x21A6: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE056,SIZE6], rep:[0xE057,SIZE6], right:[0xE058,SIZE6]} + }, + 0x21A7: EXTRAV, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21AB: EXTRAH, + 0x21AC: EXTRAH, + 0x21AD: EXTRAH, + 0x21AE: EXTRAH, + 0x21B0: EXTRAV, + 0x21B1: EXTRAV, + 0x21B2: EXTRAV, + 0x21B3: EXTRAV, + 0x21B6: EXTRAH, + 0x21B7: EXTRAH, + 0x21BC: EXTRAH, + 0x21BD: EXTRAH, + 0x21BE: EXTRAV, + 0x21BF: EXTRAV, + 0x21C0: EXTRAH, + 0x21C1: EXTRAH, + 0x21C2: EXTRAV, + 0x21C3: EXTRAV, + 0x21C4: EXTRAH, + 0x21C5: EXTRAV, + 0x21C6: EXTRAH, + 0x21C7: EXTRAH, + 0x21C8: EXTRAV, + 0x21C9: EXTRAH, + 0x21CA: EXTRAV, + 0x21CB: EXTRAH, + 0x21CC: EXTRAH, + 0x21CD: EXTRAH, + 0x21CE: EXTRAH, + 0x21CF: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE0A7,SIZE6], rep:[0xE0A8,SIZE6], right:[0xE0A9,SIZE6]} + }, + 0x21D1: + { + dir: V, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {bot:[0xE0AD,SIZE6], ext:[0xE0AE,SIZE6], top:[0xE0AF,SIZE6]} + }, + 0x21D2: + { + dir: H, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {left:[0xE0AA,SIZE6], rep:[0xE0AB,SIZE6], right:[0xE0AC,SIZE6]} + }, + 0x21D3: + { + dir: V, + HW: [[690,MAIN], [1010,SIZE1]], + stretch: {bot:[0xE0B0,SIZE6], ext:[0xE0B1,SIZE6], top:[0xE0B2,SIZE6]} + }, + 0x21D4: + { + dir: H, + HW: [[880,MAIN], [1200,SIZE1]], + stretch: {left:[0xE0B3,SIZE6], rep:[0xE0B4,SIZE6], right:[0xE0B5,SIZE6]} + }, + 0x21D5: + { + dir: V, + HW: [[880,MAIN], [1200,SIZE1]], + stretch: {bot:[0xE0B6,SIZE6], ext:[0xE0B7,SIZE6], top:[0xE0B8,SIZE6]} + }, + 0x21D6: EXTRAV, + 0x21D7: EXTRAV, + 0x21D8: EXTRAV, + 0x21D9: EXTRAV, + 0x21DA: EXTRAH, + 0x21DB: EXTRAH, + 0x21DC: EXTRAH, + 0x21DD: EXTRAH, + 0x21E6: EXTRAH, + 0x21E7: EXTRAV, + 0x21E8: EXTRAH, + 0x21E9: EXTRAV, + 0x21F3: EXTRAV, + 0x21F5: EXTRAV, + 0x21F6: EXTRAH, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: + { + dir: H, + HW: [[500,MAIN]], + stretch: {left:[0xE127,SIZE6], rep:[0xE128,SIZE6], right:[0xE129,SIZE6]} + }, + 0x2215: {alias: 0x2044, dir: V}, + 0x221A: + { + dir: V, + HW: [[706,MAIN], [1090,SIZE1], [1474,SIZE2], [1858,SIZE3], [2242,SIZE4], [2626,SIZE5], [3010,SIZE6]], + stretch: {bot:[0x23B7,SYMBOLS], ext:[0xE133,SIZE6], top:[0xE134,SIZE6]} + }, + 0x2223: + { + dir: V, + HW: [[800,MAIN], [960,SIZE1], [1152,SIZE2], [1382,SIZE3], [1658,SIZE4], [1990,SIZE5], [2388,SIZE6]], + stretch: {bot:[0xE004,SIZE6], ext:[0xE005,SIZE6], top:[0xE006,SIZE6]} + }, + 0x2225: + { + dir: V, + HW: [[800,MAIN], [960,SIZE1], [1152,SIZE2], [1382,SIZE3], [1658,SIZE4], [1990,SIZE5], [2388,SIZE6]], + stretch: {bot:[0xE12A,SIZE6], ext:[0xE12B,SIZE6], top:[0xE12C,SIZE6]} + }, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x2261: EXTRAH, + 0x2263: EXTRAH, + 0x22A2: EXTRAV, + 0x22A3: EXTRAV, + 0x22A4: EXTRAV, + 0x22A5: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[818,MAIN], [979,SIZE1], [1171,SIZE2], [1402,SIZE3], [1678,SIZE4], [2011,SIZE5], [2410,SIZE6], [2780,SIZE6,1.154]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[818,MAIN], [979,SIZE1], [1171,SIZE2], [1402,SIZE3], [1678,SIZE4], [2011,SIZE5], [2410,SIZE6], [2780,SIZE6,1.154]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[818,MAIN], [979,SIZE1], [1171,SIZE2], [1402,SIZE3], [1678,SIZE4], [2011,SIZE5], [2410,SIZE6], [2780,SIZE6,1.154]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[818,MAIN], [979,SIZE1], [1171,SIZE2], [1402,SIZE3], [1678,SIZE4], [2011,SIZE5], [2410,SIZE6], [2780,SIZE6,1.154]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: + { + dir: V, + HW: [[812,SYMBOLS], [1060,SIZE1], [1382,SIZE2], [1806,SIZE3], [2364,SIZE4], [3092,SIZE5], [4048,SIZE6]] + }, + 0x232A: + { + dir: V, + HW: [[812,SYMBOLS], [1060,SIZE1], [1382,SIZE2], [1806,SIZE3], [2364,SIZE4], [3092,SIZE5], [4048,SIZE6]] + }, + 0x23AA: + { + dir: V, + HW: [[596,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: {alias: 0x305, dir: H}, + 0x23B0: + { + dir: V, + HW: [[607,SYMBOLS,null,0x23A7]], + stretch: {top:[0x23A7,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23AD,SYMBOLS]} + }, + 0x23B1: + { + dir: V, + HW: [[607,SYMBOLS,null,0x23AB]], + stretch: {top:[0x23AB,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23A9,SYMBOLS]} + }, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: + { + dir: V, + HW: [[800,MAIN,null,0x7C], [1350,MAIN,1.688,0x7C], [1827,MAIN,2.283,0x7C], [2303,MAIN,2.879,0x7C], [2780,MAIN,3.474,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[520,MAIN], [1018,SIZE1], [1519,SIZE2], [2019,SIZE3], [2519,SIZE4], [3019,SIZE5], [3519,SIZE6]], + stretch: {left:[0xE10D,SIZE6], rep:[0xE10E,SIZE6], mid:[0xE10F,SIZE6], right:[0xE110,SIZE6]} + }, + 0x23DF: + { + dir: H, + HW: [[520,MAIN], [1018,SIZE1], [1519,SIZE2], [2019,SIZE3], [2519,SIZE4], [3019,SIZE5], [3519,SIZE6]], + stretch: {left:[0xE111,SIZE6], rep:[0xE112,SIZE6], mid:[0xE113,SIZE6], right:[0xE114,SIZE6]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x305, dir: H}, + 0x27A1: EXTRAH, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[812,MAIN], [1060,SIZE1], [1382,SIZE2], [1806,SIZE3], [1827,SIZE3,1.012], [2364,SIZE4], [3092,SIZE5], [4048,SIZE6]] + }, + 0x27E9: + { + dir: V, + HW: [[812,MAIN], [1060,SIZE1], [1382,SIZE2], [1806,SIZE3], [1827,SIZE3,1.012], [2364,SIZE4], [3092,SIZE5], [4048,SIZE6]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: + { + dir: V, + HW: [[814,MAIN], [974,SIZE1], [1166,SIZE2], [1396,SIZE3], [1672,SIZE4], [2004,SIZE5], [2402,SIZE6]], + stretch: {bot:[0xE101,SIZE6], ext:[0xE102,SIZE6], top:[0xE103,SIZE6]} + }, + 0x27EF: + { + dir: V, + HW: [[814,MAIN], [974,SIZE1], [1166,SIZE2], [1396,SIZE3], [1672,SIZE4], [2004,SIZE5], [2402,SIZE6]], + stretch: {bot:[0xE104,SIZE6], ext:[0xE105,SIZE6], top:[0xE106,SIZE6]} + }, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: + { + dir: H, + HW: [[870,ARROWS], [1190,SIZE1]], + stretch: {left:[0xE0C5,SIZE6], rep:[0xE0C6,SIZE6], right:[0xE0C7,SIZE6]} + }, + 0x2907: + { + dir: H, + HW: [[870,ARROWS], [1190,SIZE1]], + stretch: {left:[0xE0C8,SIZE6], rep:[0xE0C9,SIZE6], right:[0xE0CA,SIZE6]} + }, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A11: EXTRAV, + 0x2B04: EXTRAH, + 0x2B05: EXTRAH, + 0x2B06: EXTRAV, + 0x2B07: EXTRAV, + 0x2B0C: EXTRAH, + 0x2B0D: EXTRAV, + 0x2B31: EXTRAH, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(SVG.fontDir+"/Size1/Regular/Main.js",function () { + var i; + for (i = 0x222B; i <= 0x222D; i++) + SVG.FONTDATA.FONTS[SIZE1][i][2] -= 200; + for (i = 0x222E; i <= 0x2231; i++) + SVG.FONTDATA.FONTS[SIZE1][i][2] -= 150; + }); + AJAX.loadComplete(SVG.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax.SVG,MathJax.ElementJax.mml,MathJax.Ajax,MathJax.Hub); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Alphabets/Regular/Main.js new file mode 100644 index 0000000..4141ce1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Alphabets/Regular/Main.js @@ -0,0 +1,41 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'LatinModernMathJax_Alphabets', + id: 'LATINMODERNALPHABETS', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x2103: [705,22,1031,49,974,'326 544c0 -76 -62 -138 -138 -138c-77 0 -139 62 -139 138c0 77 62 139 139 139c76 0 138 -62 138 -139zM286 544c0 55 -44 99 -98 99c-55 0 -99 -44 -99 -99c0 -54 44 -98 99 -98c54 0 98 44 98 98zM974 233c0 -116 -98 -255 -261 -255c-186 0 -348 157 -348 364 c0 204 161 363 348 363c96 0 147 -50 184 -86l50 74c8 12 12 12 16 12c11 0 11 -7 11 -24v-237c0 -21 0 -24 -16 -24c-14 0 -14 3 -16 17c-20 146 -109 237 -218 237c-61 0 -256 -34 -256 -333c0 -298 196 -332 257 -332c109 0 216 82 224 225c1 10 1 16 12 16 c13 0 13 -7 13 -17'], + 0x2107: [705,22,530,50,495,'495 170c0 -33 -60 -192 -243 -192c-103 0 -202 79 -202 186c0 108 51 176 162 199c-84 17 -140 80 -140 161c0 110 75 181 209 181c95 0 141 -39 141 -85c0 -16 -4 -44 -28 -44c-18 0 -20 11 -20 18c0 6 0 20 23 25c-1 53 -73 64 -115 64c-132 0 -142 -132 -142 -155 c0 -63 15 -145 173 -153c5 0 22 0 22 -6c0 -7 -15 -16 -52 -16c-128 0 -156 -93 -156 -178c0 -74 36 -165 159 -165c83 0 136 59 162 94c11 15 24 60 24 66c0 7 6 11 12 11c10 0 11 -3 11 -11'], + 0x2109: [683,0,980,49,937,'326 544c0 -76 -62 -138 -138 -138c-77 0 -139 62 -139 138c0 77 62 139 139 139c76 0 138 -62 138 -139zM286 544c0 55 -44 99 -98 99c-55 0 -99 -44 -99 -99c0 -54 44 -98 99 -98c54 0 98 44 98 98zM937 455h-25c-16 138 -41 194 -191 194h-120c-47 0 -49 -7 -49 -40 v-253h86c96 0 106 33 106 117h25v-265h-25c0 85 -10 117 -106 117h-86v-246c0 -35 0 -48 95 -48h33v-31c-36 3 -127 3 -168 3c-39 0 -117 0 -152 -3v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h549'], + 0x2116: [695,10,916,51,860,'838 390c0 -57 -33 -136 -103 -136s-103 79 -103 136c0 67 33 145 103 145s103 -85 103 -145zM860 178c0 -11 -7 -15 -17 -15h-215c-11 0 -18 5 -18 16c0 10 6 15 17 15h222c7 -1 11 -9 11 -16zM641 616c0 -30 -18 -56 -54 -56c-32 0 -57 23 -57 56c0 25 15 40 34 51 c-13 -1 -25 -7 -33 -17c-26 -32 -29 -101 -29 -148v-483c0 -9 -4 -18 -13 -18c-10 0 -15 9 -19 18c0 0 -251 595 -251 585v-473c0 -56 -29 -141 -87 -141c-43 0 -81 36 -81 79c0 30 20 57 56 57c31 0 55 -24 55 -55c0 -22 -12 -44 -33 -52c14 0 27 6 35 17 c26 35 27 109 27 153v444c0 18 -34 20 -58 20h-45v31h166c12 0 20 -1 25 -13l195 -455v300c0 70 15 179 87 179c44 0 80 -36 80 -79zM770 338v120c0 22 -10 54 -35 54s-36 -32 -36 -54v-120c0 -27 11 -59 36 -59s35 32 35 59'], + 0x2117: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM643 342c0 166 -135 301 -301 301c-167 0 -302 -135 -302 -301c0 -167 135 -302 302 -302c166 0 301 135 301 302zM520 427c0 -55 -60 -99 -126 -99h-93 v-131c0 -20 1 -26 44 -26h13v-17c-19 1 -61 1 -82 1l-81 -1v17h14c42 0 43 6 43 26v290c0 20 -1 26 -43 26h-14v17h195c75 0 130 -49 130 -103zM463 427c0 27 0 86 -87 86h-49c-26 0 -27 -4 -27 -22v-149h76c87 0 87 59 87 85'], + 0x211E: [683,22,736,35,732,'732 88c0 -28 -17 -110 -95 -110c-30 0 -85 6 -126 42c-4 4 -8 7 -11 11l-28 -27c-3 -2 -6 -4 -10 -4c-9 0 -15 7 -15 15c0 4 1 8 4 11l32 31c-13 28 -13 61 -13 106c0 67 0 98 -38 134c-35 34 -77 34 -93 34h-115v-253c0 -36 2 -47 79 -47h24v-31c-36 3 -107 3 -146 3 s-110 0 -146 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h314c147 0 261 -84 261 -180c0 -78 -78 -139 -175 -163c55 -19 104 -52 122 -116l13 -80l1 -4l91 86c2 3 6 4 10 4c8 0 15 -6 15 -15c0 -4 -2 -8 -5 -11l-106 -101c12 -67 24 -103 65 -103 c25 0 60 18 66 89c1 7 1 16 12 16c13 0 13 -11 13 -17zM507 503c0 145 -112 149 -202 149c-20 0 -49 0 -59 -2c-22 -3 -22 -15 -22 -38v-259h111c148 0 172 81 172 150'], + 0x2120: [683,-247,883,34,827,'299 372c0 -66 -48 -125 -118 -125c-53 0 -92 22 -110 42c-20 -32 -22 -34 -22 -34c-4 -7 -5 -8 -9 -8c-6 0 -6 4 -6 15v120c0 10 0 15 7 15c0 0 7 0 8 -6c0 -22 2 -60 37 -93c32 -29 77 -32 95 -32c50 0 80 43 80 86c0 19 -6 39 -19 55c-16 22 -34 26 -51 30l-79 20 c-47 16 -78 60 -78 110c0 64 50 116 117 116c53 0 78 -24 96 -42l21 35c4 7 4 7 9 7c6 0 6 -4 6 -14v-121c0 -11 0 -14 -8 -14c-6 0 -6 4 -7 7c-3 27 -17 126 -117 126c-47 0 -79 -37 -79 -79c0 -35 23 -67 61 -76l76 -19c51 -12 90 -61 90 -121zM827 260c-22 2 -63 2 -86 2 s-64 0 -86 -2v19h14c46 0 47 7 47 28v345l-148 -380c-2 -7 -4 -12 -11 -12c-6 0 -9 6 -12 14l-144 373h-1v-324c0 -16 0 -44 62 -44v-19l-70 2l-70 -2v19c61 0 61 28 61 44v300c0 22 -1 29 -47 29h-14v18h101c14 0 16 0 21 -13l130 -336l132 338c4 11 4 11 19 11h102v-18 h-15c-46 0 -47 -7 -47 -29v-316c0 -21 1 -28 47 -28h15v-19'], + 0x2122: [687,-277,983,22,938,'411 548h-15c-8 97 -17 117 -108 117c-11 0 -28 0 -34 -1c-11 -3 -11 -11 -11 -23v-316c0 -21 0 -29 63 -29h24v-19c-25 2 -86 2 -114 2s-89 0 -113 -2v19h24c63 0 63 8 63 29v316c0 14 0 20 -13 23c-6 1 -22 1 -32 1c-91 0 -100 -20 -108 -117h-15l11 135h367zM938 277 c-22 2 -62 2 -85 2c-24 0 -65 0 -87 -2v19h15c46 0 47 6 47 28v344h-1l-147 -379c-3 -7 -4 -12 -11 -12c-6 0 -9 6 -12 13l-145 374v-324c0 -16 0 -44 62 -44v-19l-71 2l-70 -2v19c62 0 62 28 62 44v300c0 22 -1 28 -47 28h-15v19h102c13 0 15 0 21 -13l130 -336l131 338 c4 10 4 11 20 11h101v-19h-14c-46 0 -47 -6 -47 -28v-316c0 -22 1 -28 47 -28h14v-19'], + 0x2126: [705,0,722,44,677,'677 162l-33 -162h-159c-23 0 -26 0 -26 21c0 69 32 159 47 201c29 82 56 158 56 233c0 156 -106 228 -202 228c-91 0 -201 -68 -201 -228c0 -75 28 -154 49 -212c23 -64 54 -152 54 -222c0 -21 -3 -21 -25 -21h-160l-33 162h25c5 -25 10 -51 18 -74c5 -15 8 -23 66 -23 h80c-13 56 -45 104 -89 170c-47 71 -88 140 -88 219c0 137 133 251 305 251c169 0 304 -112 304 -251c0 -79 -41 -148 -88 -219c-45 -66 -76 -114 -89 -170h80c58 0 61 8 66 24c9 24 13 47 18 73h25'], + 0x212A: [683,0,778,33,736,'736 0l-115 3c-38 0 -108 0 -143 -3v31c20 0 59 0 59 30c0 12 -9 25 -15 34l-181 268l-116 -110v-175c0 -36 2 -47 79 -47h24v-31c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24 c-77 0 -79 -11 -79 -47v-318l313 299c8 7 18 17 18 33c0 9 -6 32 -46 33v31c34 -3 91 -3 127 -3c27 0 59 0 85 3v-31c-81 -1 -134 -52 -142 -60l-180 -173l231 -340c30 -44 51 -48 105 -48v-31'], + 0x212B: [892,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM438 804c0 41 -25 58 -63 58c-39 0 -63 -18 -63 -58c0 -41 25 -58 63 -58c39 0 63 18 63 58zM471 805c0 -49 -41 -89 -97 -89c-51 0 -95 38 -95 89c0 44 39 87 97 87c54 0 95 -41 95 -87'], + 0x212E: [701,10,676,28,647,'647 121c0 -6 -5 -13 -8 -18c-53 -96 -178 -113 -275 -113h-14c-204 15 -322 185 -322 356c0 191 142 355 330 355c72 0 143 -24 196 -74c69 -65 93 -171 93 -263c0 -12 -2 -19 -16 -19h-500c0 -66 8 -135 38 -195c40 -77 113 -135 203 -135c73 0 163 11 220 66 c15 15 29 51 44 51c4 0 11 -5 11 -11zM552 366c0 68 -8 138 -37 200c-33 69 -91 112 -163 112c-161 0 -218 -179 -221 -312h421'], + 0xFEFF: [0,0,0,0,0,''] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Alphabets/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Arrows/Regular/Main.js new file mode 100644 index 0000000..6bbd457 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Arrows/Regular/Main.js @@ -0,0 +1,57 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'LatinModernMathJax_Arrows', + id: 'LATINMODERNARROWS', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x219F: [689,213,572,56,516,'516 301c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-617c0 -11 -9 -20 -20 -20s-20 9 -20 20v617c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68 c34 33 64 71 80 117v69c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19 c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-69c16 -46 46 -84 80 -117c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0x21A1: [713,189,572,56,516,'516 49c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v69 c-16 46 -46 84 -80 117c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v617c0 11 9 20 20 20s20 -9 20 -20v-617c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20 c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-34 -33 -64 -71 -80 -117v-69c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x21A4: [510,10,977,56,921,'921 10c0 -27 -40 -27 -40 0v220h-726c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16 c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h726v220c0 27 40 27 40 0v-480'], + 0x21A5: [679,183,632,55,576,'556 -183h-480c-27 0 -27 40 0 40h220v707c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141 c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-707h220c27 0 27 -40 0 -40'], + 0x21A7: [683,179,632,55,576,'556 643h-220v-707c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68 c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v707h-220c-27 0 -27 40 0 40h480c27 0 27 -40 0 -40'], + 0x21B2: [679,179,564,56,508,'508 81c0 -11 -9 -20 -20 -20h-333c29 -20 56 -44 78 -72c32 -41 55 -90 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 48 -30 91 -59 127c-35 46 -80 86 -136 105c-5 1 -9 6 -9 12s4 11 9 13c56 19 101 59 136 104c29 37 49 80 59 127c2 9 10 16 19 16 c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -143c-22 -28 -49 -53 -78 -73h313v558c0 11 9 20 20 20s20 -9 20 -20v-578'], + 0x21B3: [679,179,564,56,508,'508 81c0 -6 -4 -11 -9 -12c-57 -19 -101 -59 -137 -105c-28 -36 -49 -79 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 2 1 3 1 4c10 54 33 103 66 144c22 28 48 52 78 72h-333c-11 0 -20 9 -20 20v578c0 11 9 20 20 20s20 -9 20 -20v-558h313 c-30 20 -56 45 -78 73c-33 41 -56 90 -66 143c0 2 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -90 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21B4: [530,6,882,56,826,'826 233c0 -9 -6 -17 -15 -20c-44 -13 -83 -37 -115 -68c-40 -38 -75 -85 -87 -141c-2 -5 -7 -10 -13 -10c-7 0 -12 5 -13 10c-13 56 -48 103 -87 141c-32 31 -72 55 -116 68c-8 3 -14 11 -14 20c0 11 9 20 20 20c2 0 4 -1 5 -1c51 -16 96 -43 132 -78 c20 -19 38 -41 53 -65v381h-500c-11 0 -20 9 -20 20s9 20 20 20h520c11 0 20 -9 20 -20v-401c14 24 32 46 52 65c36 35 81 62 132 78c2 0 4 1 6 1c11 0 20 -9 20 -20'], + 0x21B5: [650,150,650,56,594,'594 110c0 -11 -9 -20 -20 -20h-419c29 -20 56 -44 78 -72c32 -41 55 -90 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 105c-5 1 -9 6 -9 12s4 11 9 13c56 19 101 59 136 104c29 37 49 80 59 127c2 9 10 16 19 16 c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h399v500c0 11 9 20 20 20s20 -9 20 -20v-520'], + 0x21C5: [703,203,896,56,840,'516 441c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-747c0 -11 -9 -20 -20 -20s-20 9 -20 20v747c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68 c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19zM840 59c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141 c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v747c0 11 9 20 20 20s20 -9 20 -20v-747c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x21D6: [682,272,1066,56,1010,'1010 -114c0 -11 -9 -20 -20 -20c-6 0 -11 2 -14 5l-714 715c-51 5 -101 18 -148 38c20 -47 33 -97 39 -147l714 -714c3 -4 6 -9 6 -15c0 -11 -9 -20 -20 -20c-6 0 -11 3 -14 6l-684 683c0 -50 -8 -101 -24 -150c-3 -8 -10 -14 -19 -14c-11 0 -20 9 -20 20c0 2 0 4 1 6 c18 57 25 116 21 175c-4 72 -19 144 -56 208c-1 2 -2 5 -2 7c0 7 6 13 13 13c3 0 5 0 7 -2c64 -37 136 -51 208 -56c59 -4 118 3 175 22c2 0 4 1 6 1c11 0 20 -9 20 -20c0 -9 -6 -17 -14 -20c-49 -15 -100 -24 -150 -24l683 -683c4 -4 6 -9 6 -14'], + 0x21D7: [682,272,1066,56,1010,'1010 669c0 -2 -1 -5 -2 -7c-37 -64 -52 -136 -57 -208c-3 -59 4 -118 22 -175c1 -2 1 -4 1 -6c0 -11 -9 -20 -20 -20c-9 0 -16 6 -19 14c-16 49 -24 100 -25 150l-683 -683c-3 -3 -8 -6 -14 -6c-11 0 -20 9 -20 20c0 6 2 11 6 15l714 714c6 50 18 100 39 147 c-47 -20 -97 -33 -148 -38l-714 -715c-3 -3 -8 -5 -14 -5c-11 0 -20 9 -20 20c0 5 2 10 6 14l683 683c-51 0 -101 9 -151 24c-8 3 -13 11 -13 20c0 11 9 20 20 20c2 0 4 -1 6 -1c57 -19 116 -26 174 -22c72 5 145 19 209 56c2 2 4 2 7 2c7 0 13 -6 13 -13'], + 0x21D8: [772,182,1066,56,1010,'1010 -169c0 -7 -6 -13 -13 -13c-3 0 -5 0 -7 2c-64 37 -137 51 -209 56c-58 4 -117 -3 -174 -22c-2 0 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 5 17 13 20c50 15 100 24 151 24l-683 683c-4 4 -6 9 -6 14c0 11 9 20 20 20c6 0 11 -2 14 -5l714 -715c51 -5 101 -18 148 -38 c-21 47 -33 97 -39 147l-714 714c-4 4 -6 9 -6 15c0 11 9 20 20 20c6 0 11 -3 14 -6l683 -683c1 50 9 101 25 150c3 8 10 14 19 14c11 0 20 -9 20 -20c0 -2 0 -4 -1 -6c-18 -57 -25 -116 -22 -175c5 -72 20 -144 57 -208c1 -2 2 -5 2 -7'], + 0x21D9: [772,182,1066,56,1010,'1010 614c0 -5 -2 -10 -6 -14l-683 -683c50 0 101 -9 150 -24c8 -3 14 -11 14 -20c0 -11 -9 -20 -20 -20c-2 0 -4 1 -6 1c-57 19 -116 26 -175 22c-72 -5 -144 -19 -208 -56c-2 -2 -4 -2 -7 -2c-7 0 -13 6 -13 13c0 2 1 5 2 7c37 64 52 136 56 208c4 59 -3 118 -21 175 c-1 2 -1 4 -1 6c0 11 9 20 20 20c9 0 16 -6 19 -14c16 -49 24 -100 24 -150l684 683c3 3 8 6 14 6c11 0 20 -9 20 -20c0 -6 -3 -11 -6 -15l-714 -714c-6 -50 -19 -100 -39 -147c47 20 97 33 148 38l714 715c3 3 8 5 14 5c11 0 20 -9 20 -20'], + 0x21DC: [510,10,997,56,941,'941 250c0 -11 -9 -20 -20 -20h-102c-38 0 -59 22 -74 53c-12 23 -19 53 -30 77c-8 16 -18 30 -38 30c-43 0 -58 -30 -66 -67c-10 -47 -8 -107 -18 -154c-12 -58 -39 -99 -105 -99c-38 0 -59 22 -74 53c-12 23 -19 53 -30 77c-8 16 -18 30 -38 30h-191 c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h191c37 0 59 -22 74 -53c11 -23 18 -53 30 -77c8 -16 18 -30 38 -30c43 0 58 30 66 67c9 47 8 107 18 154c11 58 38 99 105 99c37 0 59 -22 74 -53c11 -23 18 -53 30 -77c8 -16 18 -30 38 -30h102c11 0 20 -9 20 -20'], + 0x21E6: [520,20,1050,56,994,'994 153c0 -11 -9 -20 -20 -20h-568v-133c0 -11 -9 -20 -20 -20c-9 0 -16 5 -19 13c-48 126 -161 216 -294 237c-10 2 -17 10 -17 20s7 18 17 20c133 21 246 111 294 237c3 8 10 13 19 13c11 0 20 -9 20 -20v-133h568c11 0 20 -9 20 -20v-194zM954 173v154h-568 c-11 0 -20 9 -20 20v70c-50 -77 -123 -136 -210 -167c87 -31 160 -90 210 -167v70c0 11 9 20 20 20h568'], + 0x21E7: [725,213,652,56,596,'596 395c0 -11 -9 -20 -20 -20h-133v-568c0 -11 -9 -20 -20 -20h-194c-11 0 -20 9 -20 20v568h-133c-11 0 -20 9 -20 20c0 9 5 16 13 19c126 48 216 161 237 294c2 10 10 17 20 17s18 -7 20 -17c21 -133 111 -246 237 -294c8 -3 13 -10 13 -19zM493 415 c-77 50 -136 123 -167 210c-31 -87 -90 -160 -167 -210h70c11 0 20 -9 20 -20v-568h154v568c0 11 9 20 20 20h70'], + 0x21E8: [520,20,1050,56,994,'994 250c0 -10 -7 -18 -17 -20c-133 -21 -246 -111 -294 -237c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20v133h-568c-11 0 -20 9 -20 20v194c0 11 9 20 20 20h568v133c0 11 9 20 20 20c9 0 16 -5 19 -13c48 -126 161 -216 294 -237c10 -2 17 -10 17 -20zM894 250 c-87 31 -160 90 -210 167v-70c0 -11 -9 -20 -20 -20h-568v-154h568c11 0 20 -9 20 -20v-70c50 77 123 136 210 167'], + 0x21E9: [713,225,652,56,596,'596 105c0 -9 -5 -16 -13 -19c-126 -48 -216 -161 -237 -294c-2 -10 -10 -17 -20 -17s-18 7 -20 17c-21 133 -111 246 -237 294c-8 3 -13 10 -13 19c0 11 9 20 20 20h133v568c0 11 9 20 20 20h194c11 0 20 -9 20 -20v-568h133c11 0 20 -9 20 -20zM493 85h-70 c-11 0 -20 9 -20 20v568h-154v-568c0 -11 -9 -20 -20 -20h-70c77 -50 136 -123 167 -210c31 87 90 160 167 210'], + 0x21F3: [725,225,652,56,596,'596 105c0 -9 -5 -16 -13 -19c-126 -48 -216 -161 -237 -294c-2 -10 -10 -17 -20 -17s-18 7 -20 17c-21 133 -111 246 -237 294c-8 3 -13 10 -13 19c0 11 9 20 20 20h133v250h-133c-11 0 -20 9 -20 20c0 9 5 16 13 19c126 48 216 161 237 294c2 10 10 17 20 17 s18 -7 20 -17c21 -133 111 -246 237 -294c8 -3 13 -10 13 -19c0 -11 -9 -20 -20 -20h-133v-250h133c11 0 20 -9 20 -20zM493 415c-77 50 -136 123 -167 210c-31 -87 -90 -160 -167 -210h70c11 0 20 -9 20 -20v-290c0 -11 -9 -20 -20 -20h-70c77 -50 136 -123 167 -210 c31 87 90 160 167 210h-70c-11 0 -20 9 -20 20v290c0 11 9 20 20 20h70'], + 0x21F5: [703,203,896,56,840,'516 59c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v747 c0 11 9 20 20 20s20 -9 20 -20v-747c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20zM840 441c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-747c0 -11 -9 -20 -20 -20s-20 9 -20 20v747 c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0x21F6: [990,490,997,56,941,'941 -230c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -19 24c10 53 33 102 66 144c22 28 48 52 78 72h-766c-11 0 -20 9 -20 20s9 20 20 20h766c-30 20 -56 44 -78 72c-33 42 -56 91 -66 148 c10 57 33 106 66 148c22 28 48 52 78 72h-766c-11 0 -20 9 -20 20s9 20 20 20h766c-30 20 -56 44 -78 72c-33 42 -56 91 -66 148c10 57 33 106 66 148c22 28 48 52 78 72h-766c-11 0 -20 9 -20 20s9 20 20 20h766c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144 c-1 15 8 24 19 24c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13s-4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -35 -48 -77 -57 -123c9 -46 29 -88 57 -123c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13s-4 -11 -9 -13 c-57 -19 -101 -59 -137 -104c-28 -35 -48 -77 -57 -123c9 -46 29 -88 57 -123c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x27F4: [592,92,1121,56,1065,'777 270c-10 151 -130 271 -281 281v-281h281zM456 270v281c-151 -10 -271 -130 -281 -281h281zM456 -51v281h-281c10 -151 130 -271 281 -281zM777 230h-281v-281c151 10 271 130 281 281zM1065 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104 c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-149c-10 -179 -159 -322 -341 -322s-331 143 -341 322h-59c-11 0 -20 9 -20 20s9 20 20 20h59c10 179 159 322 341 322s331 -143 341 -322h149 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x27FB: [510,10,1443,56,1387,'1387 10c0 -27 -40 -27 -40 0v220h-1192c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16 c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h1192v220c0 27 40 27 40 0v-480'], + 0x27FD: [520,20,1437,56,1381,'1381 0c0 -27 -40 -27 -40 0v133h-1033c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11 c11 0 20 -9 20 -20c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h1033v133c0 27 40 27 40 0v-500zM1341 327h-1077c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h1077v154'], + 0x27FE: [520,20,1437,56,1381,'1381 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-1033v-133c0 -27 -40 -27 -40 0v500c0 27 40 27 40 0v-133h1033c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9 c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13zM1305 250c-48 19 -92 45 -132 77h-1077v-154h1077c40 32 84 58 132 77'], + 0x27FF: [510,10,1463,56,1407,'1407 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-141c-37 0 -59 22 -74 53c-11 23 -18 53 -30 77c-8 16 -18 30 -37 30 c-44 0 -59 -30 -66 -67c-10 -47 -9 -107 -18 -154c-12 -58 -39 -99 -105 -99c-67 0 -94 41 -106 99c-9 47 -8 107 -18 154c-7 37 -22 67 -65 67c-44 0 -59 -30 -66 -67c-10 -47 -9 -107 -18 -154c-12 -58 -39 -99 -105 -99c-67 0 -94 41 -106 99c-9 47 -8 107 -18 154 c-7 37 -22 67 -65 67c-20 0 -30 -14 -38 -30c-12 -24 -19 -54 -30 -77c-15 -31 -37 -53 -74 -53h-52c-11 0 -20 9 -20 20s9 20 20 20h52c20 0 30 14 38 30c11 24 18 54 30 77c15 31 36 53 74 53c66 0 93 -41 105 -99c9 -47 8 -107 18 -154c7 -37 22 -67 66 -67 c43 0 58 30 65 67c10 47 9 107 18 154c12 58 39 99 106 99c66 0 93 -41 105 -99c9 -47 8 -107 18 -154c7 -37 22 -67 66 -67c43 0 58 30 65 67c10 47 9 107 18 154c12 58 39 99 106 99c37 0 58 -22 73 -53c12 -23 19 -53 30 -77c8 -16 18 -30 38 -30h141 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x2906: [520,20,991,56,935,'935 0c0 -27 -40 -27 -40 0v133h-587c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11 c11 0 20 -9 20 -20c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h587v133c0 27 40 27 40 0v-500zM895 173v154h-631c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h631'], + 0x2907: [520,20,991,56,935,'935 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-587v-133c0 -27 -40 -27 -40 0v500c0 27 40 27 40 0v-133h587c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9 c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13zM859 250c-48 19 -92 45 -132 77h-631v-154h631c40 32 84 58 132 77'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Arrows/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..fd515bc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/DoubleStruck/Regular/Main.js @@ -0,0 +1,100 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'LatinModernMathJax_DoubleStruck', + id: 'LATINMODERNDOUBLESTRUCK', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x2102: [705,22,667,55,611,'611 157c0 -20 -92 -179 -277 -179c-174 0 -279 176 -279 364c0 184 104 363 279 363c185 0 277 -159 277 -179c0 -10 -8 -20 -20 -20s-17 10 -22 19c-53 97 -150 140 -235 140c-38 0 -77 -11 -111 -33v-581c37 -24 77 -33 111 -33c21 0 76 2 136 37c62 37 88 84 102 109 c1 2 8 13 19 13c12 0 20 -9 20 -20zM183 87v509c-85 -94 -88 -224 -88 -255c0 -21 0 -158 88 -254'], + 0x210D: [683,0,722,83,639,'639 36c0 -18 0 -36 -20 -36s-20 21 -20 36v299h-348v-299c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-272h348v272c0 15 0 36 20 36s20 -18 20 -36v-611zM211 40v603h-88v-603h88'], + 0x2115: [683,0,722,83,639,'639 36c0 -18 0 -36 -20 -36c-10 0 -15 7 -23 17l-345 430v-411c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 15 0 36 20 36c9 0 11 -2 21 -15l475 -591v570c0 15 0 36 20 36s20 -18 20 -36v-611zM211 40v457l-88 109v-566h88'], + 0x2119: [683,0,639,83,583,'583 509c0 -113 -122 -174 -249 -174h-83v-299c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h215c127 0 249 -60 249 -174zM543 509c0 91 -108 134 -211 134h-81v-268h81c102 0 211 42 211 134zM211 40v603h-88v-603h88'], + 0x211A: [705,194,667,55,611,'611 -174c0 -10 -8 -20 -20 -20c-9 0 -10 1 -30 27c-67 88 -68 92 -126 168c-32 -15 -67 -23 -102 -23c-170 0 -278 173 -278 364c0 188 107 363 278 363c170 0 278 -173 278 -364c0 -116 -41 -245 -141 -320l104 -140l33 -44c4 -5 4 -11 4 -11zM183 87v509 c-85 -94 -88 -224 -88 -255c0 -21 0 -158 88 -254zM571 342c0 160 -86 323 -238 323c-39 0 -78 -12 -110 -33v-581c28 -19 66 -33 110 -33c41 0 74 14 77 15c-13 20 -30 43 -46 64c-11 13 -21 27 -31 41c-8 10 -20 26 -20 33c0 11 10 20 20 20c9 0 10 -1 27 -22l85 -115 c85 57 126 178 126 288'], + 0x211D: [683,0,639,83,583,'583 20c0 -10 -8 -20 -20 -20c-10 0 -15 7 -23 19l-217 316h-72v-299c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h215c127 0 249 -60 249 -174c0 -88 -76 -157 -213 -173l99 -145l102 -147c12 -17 12 -19 12 -24zM543 509c0 91 -108 134 -211 134 h-81v-268h81c102 0 211 42 211 134zM211 40v603h-88v-603h88'], + 0x2124: [683,0,667,55,611,'611 20c0 -20 -18 -20 -35 -20h-485c-15 0 -36 0 -36 20c0 6 5 14 8 19l365 604h-337c-15 0 -36 0 -36 20s21 20 36 20h485c17 0 35 0 35 -20c0 -4 -1 -7 -8 -19l-365 -604h338c17 0 35 0 35 -20zM556 643h-82l-364 -603h82'], + 0x213C: [431,0,517,27,488,'488 411c0 -20 -18 -20 -35 -20h-48v-355c0 -18 0 -36 -20 -36s-20 21 -20 36v355h-87v-355c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v355h-47c-15 0 -36 0 -36 20s21 20 36 20h390c17 0 35 0 35 -20zM238 40v351h-88v-351h88'], + 0x213D: [431,216,472,27,444,'444 23c0 -136 -93 -239 -209 -239c-112 0 -208 101 -208 239c0 114 50 246 169 334c-56 27 -103 33 -143 34c-5 0 -26 1 -26 20c0 20 22 20 29 20c86 0 156 -37 180 -49c74 39 136 49 180 49c8 0 28 0 28 -20c0 -19 -19 -20 -25 -20c-44 -1 -90 -8 -144 -34 c118 -87 169 -219 169 -334zM155 -153v416c-73 -83 -88 -186 -88 -240c0 -69 28 -137 88 -176zM404 23c0 125 -66 249 -169 312c-5 -3 -19 -12 -40 -30v-476c12 -3 18 -5 40 -5c96 0 169 87 169 199'], + 0x213E: [683,0,611,83,583,'583 663c0 -20 -18 -20 -35 -20h-297v-607c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h429c17 0 35 0 35 -20zM211 40v603h-88v-603h88'], + 0x213F: [683,0,667,83,583,'583 36c0 -18 0 -36 -20 -36s-20 21 -20 36v607h-292v-607c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h429c32 0 35 -3 35 -36v-611zM211 40v603h-88v-603h88'], + 0x2140: [683,0,667,55,611,'611 20c0 -20 -18 -20 -35 -20h-485c-15 0 -36 0 -36 20c0 6 5 15 8 19l183 303l-184 304c-6 10 -7 13 -7 17c0 20 21 20 36 20h485c17 0 35 0 35 -20s-18 -20 -35 -20h-338l172 -284c4 -6 7 -12 7 -17c0 -3 0 -7 -8 -20l-171 -282h338c17 0 35 0 35 -20zM374 342 l-182 301h-82l172 -284c4 -6 7 -12 7 -17c0 -3 0 -7 -8 -20l-171 -282h82'], + 0x2145: [683,0,694,47,680,'671 341c-35 -166 -173 -341 -354 -341h-238c-32 0 -35 4 -28 36l130 611c6 32 11 36 43 36h238c180 0 246 -172 209 -342zM308 643h-88l-128 -603h88zM632 342c28 132 -11 301 -180 301h-104l-128 -603h104c167 0 279 166 308 302'], + 0x2146: [694,22,500,26,547,'544 658l-132 -622c-4 -18 -8 -36 -28 -36s-16 18 -10 47c-54 -43 -119 -69 -183 -69c-120 0 -185 110 -158 238c26 125 137 237 259 237c56 0 113 -20 154 -69l58 274c3 15 8 36 28 36s16 -18 12 -36zM198 389c-97 -56 -121 -153 -125 -174c-3 -14 -25 -116 51 -173z M428 300c4 21 5 24 -9 45c-38 55 -96 68 -135 68c-23 0 -30 -2 -42 -5l-82 -385c11 -3 17 -5 40 -5c55 0 116 23 165 69c22 21 22 22 27 44'], + 0x2147: [453,22,472,26,460,'457 250c-6 -28 -17 -28 -41 -28h-214l-42 -199c11 -3 17 -5 40 -5c68 0 138 37 188 93c5 7 13 15 23 15c12 0 18 -9 16 -20c-4 -18 -101 -128 -236 -128c-120 0 -185 110 -158 238c26 125 137 237 259 237c123 0 186 -105 165 -203zM419 262c8 102 -63 151 -135 151 c-23 0 -30 -2 -42 -5l-31 -146h208zM198 389c-97 -56 -121 -153 -125 -174c-3 -14 -25 -116 51 -173'], + 0x2148: [691,0,279,19,331,'329 585c-12 -58 -69 -106 -128 -106s-96 48 -84 106c13 58 70 106 129 106s96 -48 83 -106zM289 585c8 37 -16 66 -52 66s-72 -29 -80 -66s16 -66 52 -66s72 29 80 66zM267 395l-76 -359c-7 -33 -11 -36 -43 -36h-97c-32 0 -35 4 -28 36l76 359c7 32 12 36 44 36h97 c32 0 34 -3 27 -36zM226 391h-88l-74 -351h88'], + 0x2149: [691,216,389,-69,441,'439 585c-12 -58 -69 -106 -128 -106s-96 48 -84 106c13 58 70 106 129 106s96 -48 83 -106zM399 585c8 37 -16 66 -52 66s-72 -29 -80 -66s16 -66 52 -66s72 29 80 66zM377 395l-80 -376c-24 -115 -105 -235 -218 -235c-90 0 -152 61 -148 81c3 11 15 20 25 20 c9 0 11 -4 17 -11c17 -21 51 -48 115 -50l121 571c7 32 12 36 44 36h97c32 0 34 -3 27 -36zM336 391h-88l-119 -559c69 27 112 113 129 192'], + 0x1D538: [683,0,611,27,583,'583 20c0 -10 -8 -20 -20 -20c-14 0 -19 13 -23 22l-51 129h-240l-48 -119c-13 -31 -14 -32 -41 -32h-97c-15 0 -36 0 -36 20c0 3 0 5 6 18l249 622c3 9 9 23 23 23s18 -10 23 -23l250 -623c5 -12 5 -17 5 -17zM473 191l-104 259l-104 -259h208zM347 504l-42 104 l-228 -568h85'], + 0x1D539: [683,0,639,83,583,'583 187c0 -113 -116 -187 -251 -187h-213c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h215c127 0 249 -60 249 -174c0 -74 -50 -125 -130 -156c97 -38 130 -105 130 -166zM543 509c0 91 -108 134 -211 134h-81v-268h81c102 0 211 42 211 134zM211 40v603h-88v-603h88z M543 188c0 90 -97 147 -213 147h-79v-295h79c113 0 213 55 213 148'], + 0x1D53B: [683,0,694,83,639,'639 341c0 -166 -101 -341 -282 -341h-238c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h238c180 0 282 -172 282 -342zM211 40v603h-88v-603h88zM599 342c0 132 -75 301 -244 301h-104v-603h104c167 0 244 166 244 302'], + 0x1D53C: [683,0,611,83,583,'583 20c0 -20 -18 -20 -35 -20h-429c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h429c17 0 35 0 35 -20s-18 -20 -35 -20h-297v-268h104c17 0 35 0 35 -20s-18 -20 -35 -20h-104v-295h297c17 0 35 0 35 -20zM211 40v603h-88v-603h88'], + 0x1D53D: [683,0,611,83,583,'583 663c0 -20 -18 -20 -35 -20h-297v-268h104c17 0 35 0 35 -20s-18 -20 -35 -20h-104v-299c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h429c17 0 35 0 35 -20zM211 40v603h-88v-603h88'], + 0x1D53E: [705,22,667,55,611,'611 173c0 -22 0 -24 -14 -47c-64 -103 -170 -148 -263 -148c-174 0 -279 176 -279 364c0 184 104 363 279 363c185 0 277 -159 277 -179c0 -10 -8 -20 -20 -20s-17 10 -22 19c-53 97 -150 140 -235 140c-38 0 -77 -11 -111 -33v-581c37 -24 77 -33 111 -33 c66 0 151 27 211 103c26 34 26 40 26 60v141h-103c-15 0 -36 0 -36 20s21 20 36 20h108c32 0 35 -3 35 -36v-153zM183 87v509c-85 -94 -88 -224 -88 -255c0 -21 0 -158 88 -254'], + 0x1D540: [683,0,334,83,251,'251 36c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-611zM211 40v603h-88v-603h88'], + 0x1D541: [683,22,639,55,555,'555 335c0 -159 -75 -357 -251 -357c-172 0 -249 155 -249 179c0 10 10 20 20 20c9 0 15 -5 19 -13c58 -136 174 -146 210 -146c37 0 66 11 83 21v608c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-312zM515 340v303h-88v-571c63 62 88 177 88 268'], + 0x1D542: [683,0,639,83,583,'583 20c0 -10 -8 -20 -20 -20c-10 0 -15 7 -24 19l-114 166l-93 136c-26 -36 -53 -73 -81 -108v-177c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-369l289 387c9 12 13 18 23 18c12 0 20 -9 20 -20c0 -6 -3 -10 -9 -19 l-217 -290l213 -310c13 -17 13 -19 13 -24zM211 40v603h-88v-603h88'], + 0x1D543: [683,0,611,83,583,'583 20c0 -20 -18 -20 -35 -20h-429c-32 0 -36 4 -36 36v611c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-607h297c17 0 35 0 35 -20zM211 40v603h-88v-603h88'], + 0x1D544: [683,0,722,83,639,'639 36c0 -18 0 -36 -20 -36s-20 21 -20 36v572l-217 -258c-12 -14 -12 -15 -21 -15s-13 5 -26 19l-84 101v-419c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v611c0 15 0 36 20 36c9 0 9 -1 21 -15l237 -282l234 280c11 13 17 17 24 17c20 0 20 -18 20 -36v-611z M211 40v463l-88 105v-568h88'], + 0x1D546: [705,22,667,55,611,'611 341c0 -188 -107 -363 -278 -363c-170 0 -278 173 -278 364c0 188 107 363 278 363c170 0 278 -173 278 -364zM183 87v509c-85 -94 -88 -224 -88 -255c0 -21 0 -158 88 -254zM571 342c0 160 -86 323 -238 323c-39 0 -78 -12 -110 -33v-581c28 -19 66 -33 110 -33 c150 0 238 160 238 324'], + 0x1D54A: [705,22,611,55,555,'555 187c0 -123 -118 -209 -249 -209c-177 0 -251 157 -251 179c0 10 10 20 20 20c9 0 15 -5 19 -13c11 -26 29 -69 83 -107c22 -14 66 -39 129 -39c106 0 209 67 209 169c0 31 -12 67 -45 95c-64 52 -137 53 -181 53c-75 1 -234 41 -234 175c0 116 118 195 249 195 c177 0 251 -157 251 -179c0 -10 -8 -20 -20 -20c-13 0 -17 9 -23 24c-40 88 -122 135 -208 135c-21 0 -48 -2 -81 -12v-268c36 -10 71 -10 75 -10c166 -1 257 -89 257 -188zM183 398v239c-39 -19 -88 -62 -88 -127c0 -69 58 -100 88 -112'], + 0x1D54B: [683,0,611,27,583,'583 663c0 -20 -18 -20 -35 -20h-159v-607c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v607h-158c-15 0 -36 0 -36 20s21 20 36 20h485c17 0 35 0 35 -20zM349 40v603h-88v-603h88'], + 0x1D54C: [683,22,722,83,639,'639 337c0 -173 -100 -359 -278 -359s-278 186 -278 359v310c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-596c28 -19 66 -33 110 -33c150 0 238 160 238 324v305c0 15 0 36 20 36s20 -18 20 -36v-310zM211 87v556h-88v-301c0 -40 5 -165 88 -255'], + 0x1D54D: [683,0,611,27,583,'583 663c0 0 0 -4 -6 -17l-250 -625c-4 -11 -8 -21 -22 -21s-18 12 -23 24l-249 621c-6 13 -6 15 -6 18c0 20 21 20 36 20h97c26 0 29 0 38 -23l171 -427l171 427c3 9 9 23 23 23c12 0 20 -10 20 -20zM346 179l-5 15l-179 449h-85l227 -568h1c21 50 41 101 41 104'], + 0x1D54E: [683,0,833,27,805,'805 663c0 0 0 -4 -4 -16l-178 -622c-3 -10 -7 -25 -22 -25c-12 0 -18 11 -18 11l-167 302l-162 -293c-7 -13 -11 -20 -22 -20c-16 0 -20 14 -23 25l-178 622c-4 12 -4 16 -4 16c0 20 21 20 36 20h97c26 0 30 0 37 -24l125 -434l69 125c9 18 13 25 25 25 c11 0 14 -5 21 -18l158 -285l167 585c3 12 9 26 23 26c12 0 20 -10 20 -20zM294 175l-134 468h-87l165 -571'], + 0x1D54F: [683,0,667,55,611,'611 20c0 -11 -8 -20 -20 -20c-9 0 -10 1 -30 26l-144 179c-29 35 -29 37 -46 56l-146 -244c-10 -17 -13 -17 -37 -17h-97c-15 0 -36 0 -36 20c0 6 5 14 8 19l209 347l-167 207c-15 20 -44 56 -46 58c0 0 -4 6 -4 12c0 11 10 20 20 20c9 0 11 -2 21 -15l198 -246l146 242 c11 19 15 19 39 19h97c17 0 35 0 35 -20c0 -4 -1 -7 -8 -19l-209 -347l113 -141l101 -125c3 -5 3 -11 3 -11zM556 643h-82l-364 -603h82'], + 0x1D550: [683,0,611,27,583,'583 663c0 -3 0 -7 -8 -19l-186 -295v-313c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v313l-187 297c-3 5 -7 12 -7 17c0 20 21 20 36 20h97c25 0 26 0 36 -16l173 -275l171 272c6 9 12 19 23 19c12 0 20 -9 20 -20zM349 40v309l-185 294h-81l178 -283v-320h88'], + 0x1D552: [453,22,500,27,444,'444 36c0 -18 0 -36 -20 -36s-20 18 -20 47c-45 -43 -104 -69 -168 -69c-120 0 -209 110 -209 238c0 125 87 237 209 237c56 0 117 -20 168 -69c0 29 0 47 20 47s20 -18 20 -36v-359zM155 42v347c-85 -56 -88 -153 -88 -174c0 -14 0 -116 88 -173zM404 131v169 c0 21 0 24 -18 45c-50 55 -111 68 -150 68c-23 0 -29 -2 -41 -5v-385c12 -3 18 -5 41 -5c55 0 111 23 151 69c17 21 17 22 17 44'], + 0x1D553: [694,22,628,55,599,'599 215c0 -123 -85 -237 -209 -237c-85 0 -140 44 -167 69c0 -43 0 -47 -35 -47h-97c-32 0 -36 4 -36 36v622c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-274c30 27 84 69 167 69c122 0 209 -111 209 -238zM183 40v614h-88v-614h88zM559 216c0 100 -66 197 -169 197 c-48 0 -107 -19 -150 -69c-17 -21 -17 -22 -17 -44v-169c0 -22 0 -23 17 -44c43 -49 101 -69 150 -69c101 0 169 95 169 198'], + 0x1D554: [453,22,472,27,444,'444 106c0 -18 -73 -128 -208 -128c-120 0 -209 110 -209 238c0 125 87 237 209 237c135 0 208 -111 208 -128c0 -10 -8 -20 -20 -20c-10 0 -16 9 -20 14c-11 16 -30 45 -71 69c-29 16 -64 25 -97 25c-23 0 -29 -2 -41 -5v-385c12 -3 18 -5 41 -5c68 0 130 37 168 93 c4 7 10 15 20 15c12 0 20 -9 20 -20zM155 42v347c-85 -56 -88 -153 -88 -174c0 -14 0 -116 88 -173'], + 0x1D555: [694,22,500,27,444,'444 36c0 -18 0 -36 -20 -36s-20 18 -20 47c-45 -43 -104 -69 -168 -69c-120 0 -209 110 -209 238c0 125 87 237 209 237c56 0 117 -20 168 -69v274c0 15 0 36 20 36s20 -18 20 -36v-622zM155 42v347c-85 -56 -88 -153 -88 -174c0 -14 0 -116 88 -173zM404 131v169 c0 21 0 24 -18 45c-50 55 -111 68 -150 68c-23 0 -29 -2 -41 -5v-385c12 -3 18 -5 41 -5c55 0 111 23 151 69c17 21 17 22 17 44'], + 0x1D556: [453,22,472,27,444,'444 106c0 -18 -73 -128 -208 -128c-120 0 -209 110 -209 238c0 125 87 237 209 237c123 0 208 -105 208 -203c0 -28 -11 -28 -35 -28h-214v-199c12 -3 18 -5 41 -5c68 0 130 37 168 93c4 7 10 15 20 15c12 0 20 -9 20 -20zM403 262c-13 102 -95 151 -167 151 c-23 0 -29 -2 -41 -5v-146h208zM155 42v347c-85 -56 -88 -153 -88 -174c0 -14 0 -116 88 -173'], + 0x1D557: [716,0,389,55,388,'388 588c0 -10 -8 -20 -20 -20c-5 0 -14 3 -19 16c-9 21 -35 88 -126 92v-245h48c17 0 35 0 35 -20s-18 -20 -35 -20h-48v-355c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v465c0 116 67 215 167 215c114 0 166 -104 166 -128zM183 40v628c-53 -21 -88 -85 -88 -172 v-456h88'], + 0x1D558: [453,216,500,27,444,'444 22c0 -128 -87 -238 -211 -238c-13 0 -64 0 -126 25c0 0 -80 32 -80 56c0 11 10 20 20 20c5 0 7 0 17 -8c70 -47 138 -53 169 -53c57 0 100 26 132 71c39 52 39 110 39 152c-45 -43 -104 -69 -168 -69c-120 0 -209 110 -209 238c0 125 87 237 209 237 c56 0 117 -20 168 -69c0 29 0 47 20 47s20 -18 20 -36v-373zM155 42v347c-85 -56 -88 -153 -88 -174c0 -14 0 -116 88 -173zM404 131v169c0 21 0 24 -18 45c-50 55 -111 68 -150 68c-23 0 -29 -2 -41 -5v-385c12 -3 18 -5 41 -5c55 0 111 23 151 69c17 21 17 22 17 44'], + 0x1D559: [694,0,572,55,516,'516 36c0 -18 0 -36 -20 -36s-20 21 -20 36v197c0 107 -54 180 -127 180c-48 0 -80 -26 -88 -34c-38 -35 -38 -59 -38 -75v-268c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v622c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-260c42 43 89 55 126 55c100 0 167 -99 167 -215 v-202zM183 40v614h-88v-614h88'], + 0x1D55A: [691,0,279,33,245,'245 585c0 -58 -47 -106 -106 -106s-106 48 -106 106s47 106 106 106s106 -48 106 -106zM205 585c0 37 -30 66 -66 66s-66 -29 -66 -66s30 -66 66 -66s66 29 66 66zM223 36c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v359c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-359z M183 40v351h-88v-351h88'], + 0x1D55B: [691,216,389,0,355,'355 585c0 -58 -47 -106 -106 -106s-106 48 -106 106s47 106 106 106s106 -48 106 -106zM315 585c0 37 -30 66 -66 66s-66 -29 -66 -66s30 -66 66 -66s66 29 66 66zM333 19c0 -115 -55 -235 -168 -235c-90 0 -165 61 -165 81c0 11 10 20 20 20c9 0 12 -4 20 -11 c21 -21 61 -48 125 -50v571c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-376zM293 24v367h-88v-559c63 27 88 113 88 192'], + 0x1D55C: [694,0,544,55,516,'516 20c0 -11 -8 -20 -20 -20c-8 0 -11 3 -22 15c-29 29 -58 59 -85 90l-106 110l-60 -48v-131c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v622c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-441l252 202c14 11 15 12 21 12c12 0 20 -9 20 -20c0 -7 -3 -12 -15 -22 l-186 -149l94 -99l101 -106c6 -7 6 -15 6 -15zM183 40v614h-88v-614h88'], + 0x1D55D: [694,0,279,55,223,'223 36c0 -22 0 -36 -24 -36c-72 0 -144 73 -144 194v464c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-622zM183 42v612h-88v-455c0 -92 41 -145 88 -157'], + 0x1D55E: [453,0,722,55,667,'667 36c0 -18 0 -36 -20 -36s-20 21 -20 36v202c0 46 -9 175 -91 175c-81 0 -91 -125 -91 -175v-202c0 -18 0 -36 -20 -36s-20 21 -20 36v202c0 32 -4 175 -92 175c-6 0 -90 -1 -90 -103v-274c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v359c0 32 4 36 36 36h97 c20 0 30 0 34 -16c23 23 57 38 91 38c68 0 99 -55 112 -87c12 31 44 87 111 87c92 0 131 -103 131 -210v-207zM183 40v351h-88v-351h88'], + 0x1D55F: [453,0,572,55,516,'516 36c0 -18 0 -36 -20 -36s-20 21 -20 36v197c0 107 -54 180 -127 180c-48 0 -80 -26 -88 -34c-38 -35 -38 -59 -38 -75v-268c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v359c0 32 4 36 36 36h97c29 0 35 -1 35 -33c42 43 89 55 126 55c100 0 167 -99 167 -215v-202 zM183 40v351h-88v-351h88'], + 0x1D560: [453,22,472,27,444,'444 215c0 -125 -87 -237 -209 -237c-117 0 -208 107 -208 238c0 125 87 237 209 237c117 0 208 -107 208 -238zM155 42v347c-85 -56 -88 -153 -88 -174c0 -14 0 -116 88 -173zM404 216c0 101 -67 197 -169 197c-22 0 -28 -2 -40 -5v-385c12 -3 18 -5 40 -5 c100 0 169 94 169 198'], + 0x1D561: [453,194,628,55,599,'599 215c0 -123 -85 -237 -209 -237c-85 0 -140 44 -167 69v-205c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v553c0 32 4 36 36 36h97c35 0 35 -4 35 -47c30 27 84 69 167 69c122 0 209 -111 209 -238zM559 216c0 100 -66 197 -169 197c-48 0 -107 -19 -150 -69 c-17 -21 -17 -22 -17 -44v-169c0 -22 0 -23 17 -44c43 -49 101 -69 150 -69c101 0 169 95 169 198zM183 -154v545h-88v-545h88'], + 0x1D562: [453,194,500,27,444,'444 -158c0 -18 0 -36 -20 -36s-20 21 -20 36v205c-45 -43 -104 -69 -168 -69c-120 0 -209 110 -209 238c0 125 87 237 209 237c56 0 117 -20 168 -69c0 29 0 47 20 47s20 -18 20 -36v-553zM155 42v347c-85 -56 -88 -153 -88 -174c0 -14 0 -116 88 -173zM404 131v169 c0 21 0 24 -18 45c-50 55 -111 68 -150 68c-23 0 -29 -2 -41 -5v-385c12 -3 18 -5 41 -5c55 0 111 23 151 69c17 21 17 22 17 44'], + 0x1D563: [453,0,544,55,516,'516 325c0 -10 -8 -20 -20 -20c-11 0 -16 8 -20 16c-36 92 -111 92 -127 92c-48 0 -80 -26 -88 -34c-38 -35 -38 -59 -38 -75v-268c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v359c0 32 4 36 36 36h97c29 0 35 -1 35 -33c34 36 78 55 127 55c114 0 166 -104 166 -128z M183 40v351h-88v-351h88'], + 0x1D564: [453,22,389,27,360,'360 130c0 -84 -76 -152 -166 -152c-117 0 -167 105 -167 128c0 10 10 20 20 20c14 0 17 -10 20 -16c29 -79 94 -92 127 -92c68 0 126 49 126 112c0 66 -75 91 -122 92c-126 1 -171 49 -171 105c0 78 81 126 165 126c119 0 168 -107 168 -128c0 -10 -8 -20 -20 -20 c-5 0 -14 3 -19 16c-9 21 -35 88 -126 92v-151c104 -3 165 -63 165 -132zM155 264v145c-45 -9 -88 -37 -88 -82c0 -35 33 -55 88 -63'], + 0x1D565: [694,22,417,55,388,'388 106c0 -24 -52 -128 -166 -128c-100 0 -167 99 -167 215v465c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-227h130c17 0 35 0 35 -20s-18 -20 -35 -20h-130v-373c60 3 102 34 124 89c4 8 8 19 21 19c12 0 20 -10 20 -20zM183 26v628h-88v-456c0 -86 35 -151 88 -172'], + 0x1D566: [431,22,528,55,472,'472 36c0 -18 0 -36 -20 -36c-15 0 -20 14 -20 26v48c-45 -67 -106 -96 -169 -96c-115 0 -208 105 -208 239v178c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-372c12 -3 18 -5 40 -5c90 0 169 79 169 204v173c0 15 0 36 20 36s20 -18 20 -36v-359zM183 42v349h-88v-169 c0 -33 4 -125 88 -180'], + 0x1D567: [431,0,472,27,443,'443 411c0 0 0 -6 -7 -20l-179 -371c-6 -13 -10 -20 -22 -20c-8 0 -15 5 -23 21l-179 372c-3 5 -6 12 -6 18c0 20 21 20 36 20h97c24 0 28 0 37 -19l102 -213l101 211c8 16 15 21 23 21c12 0 20 -10 20 -20zM277 153l-114 238h-84l155 -324h1c24 49 24 51 42 86'], + 0x1D568: [431,0,667,27,639,'639 411c0 0 0 -5 -5 -18l-136 -372c-4 -11 -8 -21 -22 -21c-6 0 -12 4 -16 8c-2 3 -13 21 -20 31l-107 166l-122 -189c-7 -10 -10 -16 -21 -16c-14 0 -20 15 -23 24l-134 369c-6 15 -6 18 -6 18c0 20 21 20 36 20h97c25 0 30 0 38 -23l79 -216c31 47 34 53 38 59 c2 3 8 11 18 11c11 0 14 -6 21 -16l117 -182l125 344c7 18 15 23 23 23c12 0 20 -10 20 -20zM249 149l-88 242h-85l119 -326'], + 0x1D569: [431,0,472,27,444,'444 20c0 -11 -8 -20 -20 -20c-5 0 -10 3 -12 5c-19 17 -40 40 -60 61c-24 27 -49 52 -75 77l-82 -128c-9 -15 -10 -15 -35 -15h-97c-15 0 -36 0 -36 20c0 7 8 19 8 19l137 214l-18 18l-66 68c-10 11 -54 56 -57 60c-1 2 -4 6 -4 12c0 11 10 20 20 20c8 0 10 -2 18 -10 c17 -16 17 -18 27 -28c17 -19 36 -38 54 -56l48 -49c16 24 79 123 81 128c11 15 13 15 37 15h97c17 0 35 0 35 -20c0 -3 0 -7 -8 -19l-137 -214c6 -7 23 -23 30 -30c56 -60 62 -67 97 -101c18 -17 18 -19 18 -27zM388 391h-81l-224 -351h81'], + 0x1D56A: [431,216,472,27,443,'443 411c0 0 0 -6 -7 -20l-184 -383c-64 -133 -188 -224 -205 -224c-11 0 -20 9 -20 20c0 10 8 15 16 22c57 39 119 96 170 194l-180 373c-3 5 -6 12 -6 18c0 20 21 20 36 20h97c24 0 28 0 37 -19l102 -213l101 211c8 16 15 21 23 21c12 0 20 -10 20 -20zM277 153 l-114 238h-84l155 -324h1c24 49 24 51 42 86'], + 0x1D56B: [431,0,472,27,444,'444 20c0 -20 -18 -20 -35 -20h-346c-15 0 -36 0 -36 20c0 7 8 19 8 19l225 352h-197c-15 0 -36 0 -36 20s21 20 36 20h346c17 0 35 0 35 -20c0 -3 0 -7 -8 -19l-225 -352h198c17 0 35 0 35 -20zM388 391h-81l-224 -351h81'], + 0x1D7D8: [666,22,556,55,499,'499 322c0 -180 -73 -344 -222 -344c-148 0 -222 163 -222 344c0 180 73 344 222 344c148 0 222 -163 222 -344zM183 54v536c-70 -64 -88 -187 -88 -268c0 -76 16 -203 88 -268zM459 322c0 134 -47 304 -182 304c-28 0 -52 -9 -54 -10v-588c2 -1 26 -10 54 -10 c134 0 182 169 182 304'], + 0x1D7D9: [644,0,556,55,499,'499 20c0 -20 -18 -20 -35 -20h-373c-15 0 -36 0 -36 20s21 20 36 20h102v485l-100 -51c-12 -7 -14 -7 -18 -7c-10 0 -20 9 -20 20c0 12 11 18 21 23l248 127c12 7 14 7 17 7c20 0 20 -18 20 -36v-568h103c17 0 35 0 35 -20zM321 40v551l-88 -45v-506h88'], + 0x1D7DA: [666,0,556,55,499,'499 20c0 -20 -18 -20 -35 -20h-373c-22 0 -36 0 -36 27c0 116 113 184 166 217c45 27 27 14 110 64v312c-17 4 -35 6 -53 6c-45 0 -147 -18 -184 -144c-2 -9 -9 -15 -19 -15c-9 0 -20 8 -20 21c0 30 62 178 223 178c105 0 221 -64 221 -182c0 -127 -111 -190 -215 -250 c-88 -51 -177 -102 -188 -194h368c17 0 35 0 35 -20zM459 484c0 74 -58 109 -88 122v-270c50 35 88 85 88 148'], + 0x1D7DB: [666,22,556,55,499,'499 183c0 -115 -102 -205 -221 -205c-161 0 -223 148 -223 178c0 13 11 21 20 21c10 0 17 -6 19 -14c41 -136 151 -145 184 -145c18 0 36 2 53 7v297c-15 4 -21 5 -46 6c-7 0 -28 1 -28 20c0 20 22 20 27 20c6 0 46 1 47 9v243c-17 4 -35 6 -53 6 c-45 0 -147 -18 -184 -144c-2 -9 -9 -15 -19 -15c-9 0 -20 8 -20 21c0 30 62 178 223 178c114 0 221 -72 221 -179c0 -64 -41 -114 -115 -141c51 -23 115 -75 115 -163zM459 487c0 58 -42 100 -88 119v-222c60 22 88 57 88 103zM459 183c0 51 -28 96 -88 125v-266 c47 24 88 76 88 141'], + 0x1D7DC: [644,0,556,55,499,'499 171c0 -20 -18 -20 -35 -20h-48v-115c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v115h-157c-15 0 -36 0 -36 20c0 4 2 9 10 21l308 433c10 14 13 19 23 19c20 0 20 -18 20 -36v-417h48c17 0 35 0 35 -20zM248 191v190l-134 -190h134zM376 40v521l-88 -124v-397h88 '], + 0x1D7DD: [644,22,556,55,499,'499 234c0 -131 -90 -256 -222 -256c-158 0 -222 147 -222 178c0 13 11 21 20 21c10 0 17 -6 19 -14c42 -140 159 -145 183 -145c111 0 182 109 182 216c0 94 -63 197 -189 197h-179c-32 0 -36 4 -36 36v141c0 32 4 36 36 36h373c17 0 35 0 35 -20s-18 -20 -35 -20h-241 v-133h49c140 0 227 -116 227 -237zM183 471v133h-88v-133h88'], + 0x1D7DE: [666,22,556,55,499,'499 234c0 -131 -90 -256 -222 -256c-129 0 -222 120 -222 258v211c0 133 109 219 222 219c158 0 222 -147 222 -178c0 -13 -10 -21 -20 -21c-14 0 -18 12 -22 25c-27 88 -104 134 -180 134c-78 0 -182 -54 -182 -184v-71c28 42 89 100 182 100c122 0 222 -104 222 -237z M183 49v354c-54 -35 -88 -97 -88 -169c0 -12 0 -121 88 -185zM459 234c0 111 -81 197 -182 197c-18 0 -37 -2 -54 -8v-396c3 -1 27 -9 54 -9c111 0 182 109 182 216'], + 0x1D7DF: [644,0,556,55,499,'499 624c0 -3 0 -5 -7 -20l-267 -584c-9 -20 -11 -20 -37 -20h-97c-15 0 -36 0 -36 20c0 0 0 5 7 20l258 564h-229c-15 0 -36 0 -36 20s21 20 36 20h373c17 0 35 0 35 -20zM448 604h-84l-258 -564h84'], + 0x1D7E0: [666,22,556,55,499,'499 183c0 -113 -100 -205 -222 -205c-121 0 -222 92 -222 205c0 87 64 140 115 163c-71 26 -115 75 -115 141c0 105 104 179 222 179c117 0 222 -73 222 -179c0 -64 -41 -114 -115 -141c51 -23 115 -75 115 -163zM183 384v222c-46 -19 -88 -61 -88 -119 c0 -44 26 -81 88 -103zM459 487c0 85 -89 139 -182 139c-18 0 -36 -1 -54 -6v-227c0 -15 0 -17 1 -19c3 -5 50 -6 53 -6c80 0 182 34 182 119zM183 42v266c-57 -28 -88 -71 -88 -125c0 -64 40 -116 88 -141zM459 183c0 92 -92 145 -182 145c-31 0 -36 -1 -54 -6v-297 c17 -5 36 -7 54 -7c100 0 182 73 182 165'], + 0x1D7E1: [666,22,556,55,499,'499 197c0 -133 -109 -219 -222 -219c-158 0 -222 147 -222 178c0 13 11 21 20 21c10 0 17 -6 19 -14c42 -140 159 -145 183 -145c78 0 182 54 182 184v71c-28 -42 -89 -100 -182 -100c-122 0 -222 104 -222 237c0 131 90 256 222 256c129 0 222 -120 222 -258v-211z M183 241v354c-86 -62 -88 -168 -88 -185c0 -72 34 -134 88 -169zM459 410c0 107 -70 216 -182 216c-29 0 -54 -9 -54 -9v-396c17 -6 36 -8 54 -8c101 0 182 87 182 197'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/DoubleStruck/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Fraktur/Regular/Main.js new file mode 100644 index 0000000..308bfc6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Fraktur/Regular/Main.js @@ -0,0 +1,130 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'LatinModernMathJax_Fraktur', + id: 'LATINMODERNFRAKTUR', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x210C: [667,133,720,-8,645,'645 239c0 -87 -7 -175 -43 -255c-51 -47 -127 -117 -165 -117c-26 0 -51 8 -69 26l48 64c11 -22 33 -37 58 -37c12 0 24 3 32 9c9 6 19 23 26 37c12 26 17 62 21 90c5 45 6 90 6 135c0 38 -2 75 -12 111c-7 26 -16 52 -35 70c-24 24 -58 32 -91 32 c-29 0 -59 -11 -83 -29c-29 -23 -45 -36 -72 -68c21 -52 28 -98 28 -122c0 -18 -2 -38 -10 -51c-32 -41 -106 -134 -125 -150c-15 14 -31 26 -47 36c-12 9 -27 16 -42 16c-29 0 -52 -25 -66 -40l-12 14c29 52 78 106 119 106c32 0 69 -30 89 -54c20 25 22 44 24 69 c0 25 -11 63 -24 87c-23 42 -41 85 -59 130c-11 27 -18 54 -18 83c0 42 26 77 52 109c41 50 92 90 145 127c34 -34 78 -60 128 -60c10 0 21 5 29 11c7 4 35 26 57 43l13 -15c-43 -42 -110 -108 -142 -108c-21 0 -41 5 -60 12c-29 9 -66 27 -92 40c-16 -16 -28 -31 -39 -53 c-8 -16 -10 -40 -10 -58c0 -39 30 -103 52 -149c53 55 115 100 181 138c64 0 129 -14 181 -53c16 -57 27 -116 27 -176'], + 0x2128: [729,139,602,11,533,'533 197c0 -88 -31 -172 -80 -245c-69 -57 -155 -91 -245 -91c-32 0 -64 3 -96 11c0 25 0 61 -1 74c-1 10 -2 20 -9 27s-17 11 -27 11c-11 0 -36 -14 -52 -26l-12 15c23 19 48 35 74 48c21 9 42 16 64 16c16 0 35 0 43 -16c5 -10 5 -42 5 -64c0 -17 0 -39 11 -50 s35 -16 51 -16c46 0 79 15 111 47c25 25 44 64 54 97c13 40 18 82 18 124c0 23 -2 46 -8 68c-5 16 -12 32 -24 44c-33 34 -80 48 -127 48c-32 0 -63 -7 -91 -21l-11 11l43 63c44 3 81 28 112 59c30 30 48 70 48 112c0 14 -6 27 -16 37c-16 15 -37 21 -59 21 c-23 0 -46 -3 -69 -5l-80 -5c-21 0 -43 1 -58 16c-7 7 -11 16 -11 26l69 96h16c-4 -7 -8 -16 -8 -24c0 -7 3 -14 8 -19c16 -15 49 -15 75 -15l58 2c16 0 32 3 48 3c18 0 36 -1 53 -5c12 -3 24 -8 32 -16c16 -16 27 -36 27 -59c0 -50 -23 -97 -59 -133 c-34 -34 -74 -65 -113 -89l5 -2c16 3 40 6 55 6c61 0 125 -17 160 -69c11 -37 16 -74 16 -112'], + 0x212D: [686,24,612,59,613,'613 568c-35 -17 -78 -36 -117 -41c-27 16 -57 64 -80 101c-13 -4 -24 -11 -32 -21c-16 -20 -17 -38 -17 -47c0 -18 6 -48 13 -68c5 -16 20 -62 20 -93c0 -35 -7 -71 -32 -96c-38 -37 -89 -56 -142 -64l-12 16c28 7 53 22 74 43c16 16 16 45 16 69c0 23 -11 70 -21 107 c-5 19 -9 40 -9 60c0 10 1 20 3 30c-35 -1 -68 -15 -90 -42c-36 -45 -48 -103 -48 -160c0 -84 20 -169 80 -229c59 -60 142 -87 225 -87c34 0 58 6 72 13l86 47v-20c-42 -35 -96 -71 -144 -102c-27 -6 -54 -8 -82 -8c-88 0 -176 28 -238 89c-30 30 -46 66 -59 106 c-16 48 -20 98 -20 148c0 63 15 125 43 181c51 39 106 75 165 101l32 -16c63 45 135 74 207 101l28 -81c4 -9 5 -12 10 -18c4 -4 11 -5 19 -5c16 0 38 5 50 9v-23'], + 0x1D504: [697,27,717,22,709,'709 85l-144 -112c-31 49 -47 98 -63 150l-203 -150c-14 23 -30 45 -48 64c-24 23 -64 40 -98 40c-37 0 -69 -17 -105 -40l-16 11l112 85c66 49 141 106 181 158c34 44 43 107 43 161c0 47 -14 94 -48 128c-33 33 -76 53 -123 53c-32 0 -62 -12 -85 -35 c-16 -15 -26 -38 -26 -60c0 -10 5 -19 11 -27c9 -14 20 -26 31 -37c15 -15 29 -31 40 -48c7 -12 13 -24 13 -38c0 -26 -14 -50 -31 -70c-24 -27 -54 -47 -86 -63l-16 11c18 10 34 23 47 39c10 12 17 26 17 41c0 10 -5 19 -11 27c-9 13 -20 25 -31 37c-26 26 -48 58 -48 96 c0 40 29 70 57 98c24 24 113 82 193 82c46 0 90 -13 124 -46c33 -34 52 -77 52 -124c0 -68 -18 -136 -48 -197l-178 -164c40 0 65 -21 87 -43l48 -48c12 1 94 53 144 85v325c0 42 -3 88 -5 127l127 96l16 -11c-15 -13 -36 -32 -42 -42c-7 -9 -10 -21 -11 -32 c-5 -54 -5 -156 -5 -234l5 -181c1 -11 2 -23 5 -32c12 -30 25 -61 43 -85c2 -3 6 -4 9 -4c5 0 10 2 14 3c16 7 31 14 46 22'], + 0x1D505: [691,27,904,49,815,'815 494c-37 -14 -70 -26 -103 -48l-89 -63c110 0 176 -65 176 -159c0 -43 -7 -63 -22 -101c-118 -99 -179 -150 -239 -150c-56 0 -112 21 -162 41c-45 18 -89 34 -125 34c-51 0 -101 -22 -143 -48l-12 21l124 73c125 74 144 130 147 158c3 32 6 103 7 150 c0 162 -95 226 -158 226c-40 0 -56 -7 -79 -30c-16 -15 -18 -36 -18 -57c0 -14 18 -38 38 -63c25 -29 51 -64 51 -89c0 -72 -90 -118 -123 -134l-15 11c27 15 64 48 64 81c0 12 -19 39 -44 70c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86 c58 0 117 -56 144 -111c22 23 53 46 79 64c37 24 78 42 123 42c23 0 47 -4 64 -21c10 -10 16 -37 22 -66c7 -34 14 -71 31 -88c6 -5 17 -6 25 -6c15 2 30 6 44 11v-22zM684 455c-11 5 -17 16 -22 26c-8 19 -13 39 -16 59c-4 26 -12 59 -23 70c-13 13 -35 24 -53 24 c-39 0 -60 -13 -80 -35c-18 -20 -34 -51 -42 -76c6 -25 10 -81 10 -124c0 -14 -1 -35 -2 -49l130 49c30 12 56 27 98 56zM714 175c0 42 -16 82 -46 111c-36 37 -84 55 -135 55c-27 0 -54 -5 -79 -16c-4 -41 -14 -81 -33 -118l-117 -90c59 0 115 -21 170 -43 c42 -16 99 -37 128 -37c26 0 51 9 69 27c30 29 43 70 43 111'], + 0x1D507: [690,27,831,27,746,'746 410c0 -96 -21 -174 -55 -263c-63 -69 -163 -174 -222 -174c-21 0 -79 22 -112 35c-42 17 -74 27 -117 40c-28 8 -57 16 -85 16c-21 0 -40 -10 -56 -22c-21 -15 -37 -36 -51 -58l-16 16c26 51 63 96 107 133c39 0 79 7 113 28c25 15 47 38 47 68c0 28 -14 53 -32 74 c-7 8 -54 67 -54 85c0 16 1 32 9 46c10 19 24 35 39 50c31 31 68 55 107 75l16 -11c-14 -9 -26 -20 -38 -32c-13 -13 -25 -27 -35 -42c-6 -10 -12 -21 -12 -32c0 -14 25 -51 42 -75c20 -28 48 -69 48 -90c0 -30 -17 -56 -37 -77c-29 -31 -76 -54 -111 -69 c43 -9 92 -25 134 -40c44 -16 117 -43 137 -43c21 0 42 1 58 12c19 13 43 49 59 73s25 52 31 80c8 37 11 74 11 112c0 71 -17 145 -69 197c-67 67 -162 90 -256 90c-83 0 -172 -16 -231 -76c-44 -44 -64 -110 -67 -169l-21 11c0 82 26 157 85 215c30 30 69 55 109 68 c49 16 101 29 152 29c61 0 113 -1 179 -20c43 -12 90 -45 124 -79c48 -48 70 -114 70 -181'], + 0x1D508: [686,24,662,86,641,'641 568c-36 -17 -80 -36 -119 -41c-26 15 -56 63 -79 100c-12 -4 -22 -14 -31 -23c-8 -11 -17 -24 -18 -38c0 -20 3 -41 9 -60c15 -45 23 -69 23 -137l102 62c21 -29 47 -55 77 -75v-9l-67 -38l-59 42c-5 3 -10 5 -15 5c-14 0 -27 -6 -38 -15c-6 -27 -23 -50 -42 -70 c-15 -15 -34 -25 -53 -32c-26 -11 -53 -17 -80 -21l-16 16c29 5 55 20 80 37c7 8 11 18 13 28c3 14 4 31 4 45c0 44 -11 87 -23 130c-5 19 -9 38 -9 58c0 10 1 21 4 32c-35 -1 -69 -15 -90 -42c-36 -45 -49 -103 -49 -160c0 -84 20 -169 80 -229s143 -87 226 -87 c14 0 27 1 41 2c40 14 88 40 117 58v-20c-45 -37 -94 -70 -144 -102c-27 -5 -54 -8 -82 -8c-88 0 -175 28 -233 84c-30 30 -50 67 -63 107c-16 48 -21 102 -21 152c0 63 15 125 42 181c52 39 106 75 165 101l32 -16c64 45 136 74 208 101l28 -81c4 -9 6 -13 11 -18 c4 -4 12 -5 21 -5c16 0 36 4 48 8v-22'], + 0x1D509: [686,155,611,11,621,'621 629c-23 -31 -55 -72 -83 -99c-15 -14 -32 -30 -53 -30c-23 0 -50 11 -73 25c-28 -9 -62 -29 -78 -47c-14 -15 -25 -38 -25 -63c0 -18 7 -36 15 -51c13 -24 28 -49 44 -71l122 117c23 -24 43 -49 54 -80l-43 -59c-12 21 -28 43 -53 43c-17 0 -49 -22 -71 -40l87 -112 c16 -23 21 -59 21 -88c0 -52 -22 -101 -59 -138c-55 -55 -129 -91 -207 -91c-33 0 -63 15 -85 38c-27 25 -31 79 -31 109c0 19 2 37 4 56c2 14 3 29 3 44c0 42 -6 54 -14 62c-5 6 -13 8 -21 8c-24 0 -48 -12 -59 -18l-5 21c58 39 105 54 131 54c11 0 21 -3 29 -12 c14 -17 22 -47 22 -73s0 -39 -6 -65c-5 -21 -8 -42 -8 -64c0 -54 17 -78 29 -90c17 -18 39 -35 64 -35c35 0 66 14 90 38c30 30 43 78 43 119c0 24 -10 47 -23 69c-22 36 -43 72 -67 107c-22 30 -43 61 -60 94c-10 19 -20 39 -20 60c0 33 19 61 39 85c31 37 69 66 110 91 c-35 21 -71 40 -109 55c-25 10 -51 19 -78 19c-26 0 -50 -13 -69 -32c-32 -32 -44 -78 -53 -122l-16 11c6 58 22 117 64 159c35 35 83 53 133 53c30 0 58 -10 85 -21c43 -18 83 -40 123 -64c19 -11 41 -21 64 -21c24 0 60 37 84 63'], + 0x1D50A: [692,25,785,66,711,'711 303c0 -79 -37 -152 -93 -207l-154 -104c-31 -11 -51 -17 -83 -17c-86 0 -179 33 -231 85c-68 68 -84 164 -84 259c0 37 4 70 13 106c8 28 19 52 31 77c50 36 102 70 162 99l32 -16l112 75l10 -11c-27 -23 -53 -53 -53 -90c0 -26 16 -96 26 -137l51 27 c33 22 78 57 107 86c-47 16 -94 53 -103 93l68 64c12 -24 27 -45 47 -62c16 -13 34 -23 54 -23c14 0 30 7 45 22l4 -23l-176 -154c16 2 30 3 45 3c57 0 97 -23 114 -37c33 -27 56 -70 56 -115zM624 255c0 37 -23 76 -48 99c-34 31 -76 48 -124 48c-16 0 -33 -2 -50 -6 c0 -44 -5 -93 -37 -125c-36 -35 -82 -50 -130 -58l-16 16c30 7 56 27 74 53c12 17 18 45 18 66c0 32 -4 59 -12 88c-9 33 -18 65 -18 97c0 10 1 20 3 31c-33 -2 -61 -11 -84 -36c-40 -42 -54 -103 -54 -161c0 -88 21 -177 83 -239c52 -52 113 -89 186 -89c51 0 95 7 140 44 c52 43 69 113 69 172'], + 0x1D50D: [686,139,552,-18,522,'522 591c-52 -27 -129 -65 -160 -75c-30 6 -55 24 -79 43c-27 21 -56 43 -91 43c-24 0 -47 -10 -64 -25c-25 -22 -43 -52 -59 -81l-15 10c19 48 44 93 79 131c24 26 54 49 91 49c18 0 35 -7 51 -16c24 -13 45 -30 66 -47c14 -12 29 -23 45 -32c11 -6 23 -11 35 -11 c36 0 69 16 101 32v-21zM485 522c-22 -22 -42 -44 -57 -72c-11 -19 -12 -45 -12 -67c0 -36 5 -78 12 -117c13 -60 30 -160 30 -181c0 -59 -28 -113 -69 -154c-40 -41 -92 -70 -149 -70c-36 0 -75 6 -101 32c-22 23 -28 55 -32 85c-3 28 -8 66 -16 80s-22 22 -37 22 c-20 0 -50 -9 -67 -20l-5 13c22 18 53 41 78 54c18 9 37 17 58 17c17 0 35 -4 47 -16c16 -16 16 -49 16 -75s2 -52 7 -78c4 -16 9 -35 20 -46c18 -19 44 -32 69 -32c26 0 50 8 68 27c28 27 39 74 39 113c0 53 -13 110 -27 160c-15 52 -28 113 -28 162c0 10 1 20 2 29 c39 54 86 102 138 144'], + 0x1D50E: [681,27,668,16,690,'690 60c-22 -22 -53 -50 -80 -66c-17 -11 -35 -21 -56 -21c-20 0 -40 11 -50 27c-16 25 -21 54 -25 85c-5 44 -16 102 -37 122c-16 17 -40 22 -64 22c-31 0 -62 -9 -90 -22c0 -26 -1 -53 -5 -79c-25 -38 -54 -73 -88 -102c-28 -24 -54 -40 -88 -51c-39 3 -70 27 -91 57 l57 66h10c7 -15 16 -30 28 -42c10 -11 26 -20 41 -20c21 0 36 9 44 17c20 20 23 58 23 91c0 50 -12 100 -27 149c-13 43 -32 106 -32 134c0 13 5 28 6 30c21 53 55 99 95 139c55 55 130 85 208 85c31 0 62 -5 91 -17c24 -10 45 -25 58 -47c0 -6 1 -12 1 -18 c0 -33 -7 -67 -17 -99l-16 -5c0 34 -13 67 -37 91c-36 36 -84 48 -139 48c-58 0 -98 -17 -132 -51c-19 -19 -37 -64 -37 -93c0 -34 7 -83 20 -123c35 37 71 71 114 98c28 19 60 35 94 35c16 0 31 -4 43 -16c17 -16 29 -48 39 -75c6 -16 19 -50 56 -50c5 0 15 2 21 5l6 -16 l-168 -76v-1c15 0 33 -4 46 -16c19 -18 28 -61 36 -103c5 -25 11 -60 29 -80c9 -10 21 -19 36 -19c24 0 54 9 74 24zM508 314c-22 13 -32 46 -39 69c-5 16 -21 35 -33 44c-9 6 -26 9 -33 9c-26 0 -53 -13 -73 -30c-28 -22 -45 -49 -63 -79c11 -28 17 -66 22 -97 c39 18 75 32 119 40c33 13 68 28 100 44'], + 0x1D50F: [686,27,666,32,645,'645 186c-7 -38 -15 -78 -29 -116c-9 -23 -18 -47 -35 -65c-28 -28 -69 -32 -107 -32c-40 0 -79 9 -118 20c-56 16 -110 37 -164 60c-20 9 -42 16 -64 16c-30 0 -60 -43 -84 -84l-12 15c20 47 38 88 71 127c8 9 27 14 40 16h31c16 5 48 23 61 39c13 15 18 30 18 45 c0 23 -27 76 -45 108c-13 25 -26 51 -36 78c-6 18 -12 36 -12 55c0 23 9 44 19 63c15 26 34 49 56 70c56 57 133 85 213 85c36 0 72 -6 98 -32c20 -19 26 -47 26 -83c0 -11 -1 -22 -2 -33c-2 -19 -2 -47 -2 -55c0 -7 4 -14 8 -19c10 -10 41 -12 59 -12v-18l-117 -30h-3 c-14 0 -40 21 -40 46c0 12 1 32 5 61c1 11 2 21 2 31c0 29 -5 53 -24 72c-22 22 -52 30 -82 30c-40 0 -78 -14 -106 -42c-20 -20 -30 -52 -30 -80c0 -20 4 -37 10 -55c8 -26 21 -54 33 -79c17 -35 42 -90 42 -121c0 -7 -2 -13 -5 -17c-38 -46 -90 -104 -111 -118 c45 -19 101 -40 149 -52c34 -9 70 -16 106 -16c42 0 86 6 117 37c26 26 38 61 48 96'], + 0x1D510: [692,27,1049,27,1049,'1049 554c-41 -21 -79 -48 -111 -80c-13 -26 -20 -54 -24 -82c-7 -38 -8 -77 -8 -115c0 -47 0 -107 10 -139c7 -21 9 -24 24 -40c6 -8 22 -18 30 -18c6 0 37 10 58 21v-19l-144 -109l-57 126l-1 172c0 43 7 86 16 128c22 34 49 64 80 91c-7 1 -15 9 -22 16 c-5 5 -15 35 -21 53c-7 21 -17 51 -27 58c-9 8 -20 11 -32 11c-25 0 -56 -8 -75 -25c-22 -19 -34 -31 -50 -57c6 -31 14 -79 14 -110c0 -106 -23 -211 -64 -308l-123 -150c-18 17 -50 43 -69 43c-9 0 -19 0 -26 -5c-13 -7 -21 -16 -33 -30l-13 14c25 36 67 90 88 101 c5 3 10 3 16 3c7 0 14 -1 21 -3c9 -2 42 -24 58 -35c24 24 31 53 38 83c16 64 16 145 16 218c0 43 -1 85 -8 127c-4 27 -9 53 -24 75c-15 23 -43 32 -69 32c-21 0 -44 -9 -58 -23c-15 -13 -26 -31 -35 -49c7 -28 10 -75 10 -82c0 -113 -13 -227 -72 -325l-170 -149 c-14 15 -30 28 -48 39c-11 8 -23 14 -37 14c-29 0 -52 -20 -69 -42l-11 16c17 28 37 55 61 78c16 14 34 28 56 28c15 0 29 -6 42 -14c15 -9 41 -31 55 -44c17 13 34 28 52 46c26 26 36 69 43 104c13 56 17 112 17 169v41c-1 52 -13 111 -40 148c-27 38 -71 74 -118 74 c-39 0 -59 -8 -78 -23c-13 -11 -21 -34 -21 -43c0 -33 23 -66 38 -83c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90 c0 40 23 70 51 98c24 24 97 86 183 86c46 0 89 -34 119 -71c13 -16 24 -37 33 -59c3 2 5 5 7 8c14 18 29 36 48 48c35 24 74 43 117 43c23 0 47 -5 64 -21c17 -18 28 -39 36 -62c22 26 48 48 76 67c35 25 73 48 117 48c18 0 36 -8 48 -21c11 -13 20 -38 27 -59 c5 -15 10 -32 21 -43c8 -7 19 -9 29 -9c16 0 31 4 45 9v-15'], + 0x1D511: [686,29,832,29,830,'830 76l-144 -105l-64 133l1 167c0 40 0 96 6 117c2 8 6 15 10 22c21 28 40 48 65 74c-18 4 -26 15 -32 23c-8 11 -15 33 -22 57c-5 18 -14 35 -27 48c-10 10 -23 16 -37 16c-31 0 -65 -18 -87 -39c-31 -32 -45 -51 -66 -88c7 -42 15 -107 15 -150 c0 -78 -7 -159 -43 -229c-5 -9 -13 -24 -16 -26c-42 -37 -83 -68 -131 -100c-12 -7 -35 -18 -48 -18c-35 0 -68 30 -86 58l56 65h12c5 -13 14 -29 27 -43c11 -11 29 -18 44 -18c28 0 49 20 68 39c18 18 25 44 31 69c9 39 11 78 11 118c0 121 -28 241 -59 284 c-27 38 -71 72 -118 72c-40 0 -61 -4 -83 -25c-12 -11 -17 -25 -17 -46c0 -20 24 -59 39 -76c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43 c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c16 -19 30 -50 40 -81c13 15 46 61 52 71c30 48 93 82 149 82c17 0 33 -1 49 -5c12 -3 23 -7 31 -16c13 -13 21 -34 27 -53c4 -15 13 -40 16 -43c9 -8 19 -15 32 -15c15 0 32 4 45 11v-14 c-30 -21 -61 -44 -88 -67c-10 -8 -19 -19 -21 -32c-12 -57 -16 -116 -16 -175c0 -42 3 -84 14 -125c7 -28 15 -46 36 -67c4 -4 13 -9 19 -9c22 0 46 13 63 22v-22'], + 0x1D512: [729,27,828,11,746,'746 399c0 -59 -6 -118 -24 -174c-13 -42 -33 -84 -67 -113c-44 -40 -91 -76 -144 -103c-38 -20 -79 -36 -122 -36c-55 0 -109 12 -160 32c-17 7 -35 15 -53 21c-17 6 -35 11 -53 11c-39 0 -74 -21 -96 -53l-16 16c28 37 58 73 91 106c44 15 85 51 85 101 c0 15 -5 29 -11 43c-9 19 -20 36 -32 53c-17 25 -45 63 -52 74c-6 10 -12 21 -12 33c0 35 15 67 36 95c26 35 60 63 98 86l21 -11c-19 -14 -37 -30 -51 -50c-10 -13 -19 -29 -19 -46s6 -33 13 -49c9 -24 22 -46 36 -68c20 -34 47 -77 47 -106c0 -26 -11 -49 -25 -70 c-19 -30 -49 -56 -76 -79c12 0 28 -4 39 -8c32 -10 63 -23 94 -35c51 -19 111 -33 167 -33c74 0 132 37 162 105c26 57 33 127 33 189c0 44 -4 88 -16 131c-10 32 -24 63 -48 87c-17 18 -40 28 -64 36c-31 9 -63 12 -95 12l-86 -3c-19 0 -39 3 -56 13c-12 7 -23 18 -23 33 c0 40 45 59 69 90h16c-5 -7 -10 -17 -10 -26c0 -16 20 -23 36 -27c19 -5 85 -10 128 -14c35 -3 69 -9 102 -20c25 -9 50 -22 68 -41c53 -53 70 -128 70 -202'], + 0x1D513: [692,219,823,6,804,'700 138c0 16 -8 37 -14 52c-10 21 -22 41 -36 60c-21 30 -48 67 -48 96c0 20 11 38 22 54c18 24 43 45 66 64c-13 3 -29 15 -40 26c-13 12 -15 41 -16 64c-1 22 -3 51 -16 63c-12 13 -31 16 -48 16c-24 0 -45 -5 -64 -18c-44 -30 -67 -61 -96 -106v-387h1l145 -48 c19 -5 48 -12 63 -12c24 0 47 8 63 25c14 14 18 31 18 51zM804 522c-31 -16 -60 -34 -85 -59c-11 -12 -22 -24 -31 -37c-6 -8 -12 -17 -12 -27c0 -29 20 -59 38 -85c20 -31 37 -64 37 -101c0 -69 -33 -132 -85 -176c-31 -25 -66 -48 -107 -48c-10 0 -21 3 -31 6l-118 42 c0 -62 3 -124 11 -186l-96 -70l-21 11c5 12 12 56 16 85c9 62 11 123 11 186c-33 10 -63 17 -80 17c-27 0 -51 -14 -70 -32c-19 -20 -36 -42 -53 -64l-10 21c19 38 39 76 69 107c25 25 59 42 96 42c13 0 30 -3 48 -8v250c0 54 -12 115 -40 154c-27 38 -71 72 -118 72 c-39 0 -64 -7 -84 -25c-12 -12 -18 -25 -18 -46c0 -25 26 -59 41 -76c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90 c0 40 23 70 51 98c24 24 89 86 183 86c46 0 89 -34 119 -71c17 -20 30 -47 39 -74c2 3 5 6 7 8c18 23 37 45 59 64c50 43 108 80 175 80c20 0 40 -7 54 -21c17 -18 23 -59 26 -91c1 -13 4 -30 11 -37c9 -9 20 -13 32 -13s25 4 37 8'], + 0x1D514: [729,69,828,11,783,'783 -6l-117 -63c-33 10 -65 23 -96 40c-20 11 -40 23 -57 39l-2 -1c-38 -20 -79 -36 -122 -36c-55 0 -109 12 -160 32c-17 7 -35 15 -53 21c-17 6 -35 11 -53 11c-39 0 -74 -21 -96 -53l-16 16c28 37 58 73 91 106c44 15 85 51 85 101c0 15 -5 29 -11 43 c-9 19 -20 36 -32 53c-17 25 -45 63 -52 74c-6 10 -12 21 -12 33c0 35 15 67 36 95c26 35 60 63 98 86l21 -11c-19 -14 -37 -30 -51 -50c-10 -13 -19 -29 -19 -46s6 -33 13 -49c9 -24 22 -46 36 -68c20 -34 47 -77 47 -106c0 -26 -11 -49 -25 -70c-19 -30 -52 -59 -77 -78 c12 0 29 -5 40 -9c32 -10 63 -23 94 -35c51 -19 108 -32 163 -32c74 0 139 41 169 109c26 57 30 122 30 184c0 44 -4 88 -16 131c-10 32 -24 63 -48 87c-17 18 -40 28 -64 36c-31 9 -63 12 -95 12l-86 -3c-19 0 -39 3 -56 13c-12 7 -23 18 -23 33c0 8 0 21 11 32l58 58h16 c-5 -7 -10 -17 -10 -26c0 -4 1 -7 4 -11c8 -9 21 -13 32 -16c19 -5 85 -10 128 -14c35 -3 69 -9 102 -20c25 -9 50 -22 68 -41c53 -53 70 -128 70 -202c0 -103 -22 -225 -91 -287c-17 -15 -34 -30 -52 -44c18 -20 35 -39 57 -54c15 -10 31 -20 49 -20c27 0 52 12 74 27v-27'], + 0x1D516: [689,27,828,56,756,'756 655c-8 -32 -24 -62 -47 -86c-28 -28 -65 -44 -102 -58c-31 3 -86 35 -127 58c-28 17 -57 32 -87 44c-18 8 -37 15 -57 15c-50 0 -93 -29 -128 -64c-49 -49 -69 -118 -69 -186c0 -98 31 -196 101 -266c56 -57 136 -86 215 -86c64 0 129 5 175 51c32 33 47 84 47 130 c0 37 -11 76 -38 102c-22 22 -53 32 -85 32s-75 -9 -112 -16c-38 -8 -79 -16 -117 -16c-25 0 -51 3 -69 21c-16 16 -27 36 -27 58c0 29 13 55 32 75c22 21 49 37 78 45l13 -13c-13 -4 -23 -12 -32 -21c-12 -13 -16 -31 -16 -48c0 -16 5 -32 16 -43c12 -12 30 -16 48 -16 c22 0 78 13 117 21c42 10 95 22 128 22c39 0 78 -15 106 -43c24 -24 32 -57 32 -90c0 -74 -28 -145 -80 -197c-78 -78 -189 -107 -298 -107c-76 0 -155 20 -210 75c-68 68 -107 164 -107 261s39 186 108 255c67 68 168 106 261 125c53 -28 119 -62 156 -78 c24 -10 48 -20 74 -20c22 0 39 6 55 21c15 15 22 38 27 54'], + 0x1D517: [703,27,669,24,676,'676 681l-69 -90c-21 -13 -45 -16 -69 -16c-38 0 -91 5 -128 14c-23 -18 -30 -25 -47 -51c-12 -18 -27 -52 -27 -75c0 -13 5 -25 11 -36c8 -16 19 -30 31 -44c21 -23 40 -48 56 -74c10 -17 19 -34 19 -54c0 -25 -14 -47 -29 -66c-25 -33 -56 -60 -87 -86 c43 -20 98 -45 137 -45c22 0 43 9 62 20c26 14 50 34 71 55l11 -16c-28 -32 -57 -62 -89 -89c-25 -22 -52 -41 -81 -55c-44 6 -84 27 -123 48c-28 15 -58 27 -90 27c-19 0 -37 -7 -54 -15c-25 -12 -47 -27 -69 -44l-10 16c38 40 79 77 122 112c10 1 20 1 30 1 c19 0 37 -1 55 -6c21 12 40 28 55 47c11 14 20 30 20 48c0 14 -6 26 -13 37c-10 18 -22 34 -35 49c-30 34 -69 79 -75 111c8 34 23 64 41 93c24 36 51 69 82 99c-52 18 -106 27 -160 27c-45 0 -92 -8 -124 -40c-17 -17 -26 -43 -26 -67c0 -39 29 -71 65 -85l-64 -64 c-32 25 -51 58 -51 98c0 55 41 118 82 156c49 46 110 65 177 65c57 0 114 -9 170 -21c39 -7 80 -16 117 -16c42 0 79 23 106 54v-22'], + 0x1D518: [697,27,645,-26,666,'666 80l-144 -107l-67 147l-114 -126c-17 -13 -37 -21 -58 -21c-45 0 -87 16 -128 32c-38 15 -80 32 -117 32c-9 0 -17 -6 -23 -11c-12 -9 -22 -20 -31 -32l-10 17l80 90c24 2 50 28 69 48c26 27 37 64 37 101c0 19 -6 37 -12 54c-10 26 -22 50 -36 74 c-23 40 -53 93 -53 128c0 20 10 39 21 56c16 26 37 49 59 71c24 24 50 47 80 64l10 -16c-15 -11 -29 -24 -42 -37c-25 -24 -43 -56 -43 -90c0 -32 20 -73 37 -107c14 -28 27 -57 36 -86c7 -23 12 -45 12 -68c0 -26 -4 -52 -15 -75l-101 -112c29 0 69 -14 101 -26 c33 -14 80 -32 101 -32c31 0 57 20 79 42c23 23 51 51 59 75c5 16 5 56 5 85c0 116 -2 231 -10 346l127 90l16 -10c-18 -18 -34 -39 -42 -64c-16 -48 -16 -99 -16 -149v-202c0 -22 1 -43 5 -64c8 -38 17 -77 43 -107c6 -7 15 -11 25 -11c24 0 50 15 60 22v-21'], + 0x1D519: [686,27,831,29,826,'735 548c-29 0 -55 16 -80 32c-27 18 -56 37 -90 37c-29 0 -66 -36 -66 -36c-28 -27 -50 -59 -66 -95c0 -100 -14 -182 -55 -262l-93 -73c39 -3 69 -22 131 -61c66 -41 114 -58 143 -58c26 0 51 7 70 25c14 15 19 35 23 54c7 32 9 64 9 96c0 24 -3 57 -6 86 c-2 33 -5 67 -5 101c0 23 4 47 11 69zM826 607c-16 -11 -30 -24 -43 -38c-36 -35 -58 -82 -58 -133c0 -34 5 -67 10 -101c7 -39 16 -96 16 -117c0 -31 -7 -62 -21 -90c-11 -22 -23 -42 -43 -57l-117 -85c-14 -11 -35 -13 -53 -13c-30 0 -76 9 -149 53 c-20 12 -110 64 -154 64c-49 0 -92 -27 -123 -64l-11 16c38 43 80 82 128 112c46 0 87 26 112 64c14 22 20 47 24 73c6 37 10 74 10 112c-1 52 -13 110 -40 148s-71 72 -118 72c-40 0 -65 -9 -85 -27c-10 -8 -15 -23 -15 -44c0 -24 24 -59 39 -76c11 -14 30 -37 40 -54 c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c17 -21 34 -60 43 -89c13 22 28 44 55 75 c22 25 49 46 78 63c20 12 42 22 65 22c36 0 68 -16 96 -37c38 -27 65 -32 81 -32c9 0 18 2 26 6v-16'], + 0x1D51A: [686,28,1046,21,1055,'954 548c-18 0 -51 22 -75 37c-26 17 -54 32 -85 32c-22 0 -42 -10 -58 -23c-26 -21 -43 -38 -61 -64c2 -33 4 -68 4 -103c0 -79 -8 -156 -29 -227c-14 -19 -56 -75 -79 -99c43 0 116 -33 170 -59c16 -7 34 -10 53 -10c32 0 58 15 74 42c11 18 18 45 18 112 c0 39 -3 79 -7 117c-3 29 -5 59 -5 88c0 39 4 63 10 77c3 6 7 12 11 17zM607 362c0 52 -7 104 -29 152c-16 37 -45 75 -82 91c-28 -25 -57 -51 -78 -80c1 -9 7 -38 7 -49c0 -15 -4 -87 -18 -148c-11 -48 -27 -95 -55 -137c-42 -34 -81 -59 -118 -81c45 -35 103 -68 160 -68 c59 0 114 28 155 70c25 24 35 59 43 93c12 51 15 104 15 157zM1055 628l-6 -21c-32 -24 -62 -50 -80 -85c-12 -28 -15 -54 -15 -88c0 -23 2 -45 5 -67c6 -51 10 -103 10 -154c0 -25 -2 -50 -9 -74c-6 -18 -14 -34 -28 -47c-42 -40 -89 -75 -138 -106c-20 -6 -40 -11 -60 -11 c-30 0 -61 7 -89 19c-48 21 -101 43 -149 43c-41 -19 -81 -39 -118 -64c-5 0 -11 -1 -16 -1c-45 0 -90 16 -127 39c-27 17 -62 37 -86 37c-11 0 -34 -8 -46 -16c-21 -14 -39 -26 -57 -43l-14 16c37 43 78 82 123 117h3c47 0 92 20 125 53c25 25 38 58 47 92 c12 43 16 89 16 135c-1 52 -13 111 -40 149s-71 72 -118 72c-40 0 -65 -8 -86 -27c-12 -11 -14 -20 -14 -42c0 -30 24 -61 39 -78c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39 c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c14 -17 26 -40 35 -64l12 13c42 46 89 85 138 122c53 -30 92 -96 107 -127c32 34 66 67 104 94c23 17 48 33 77 33c17 0 33 -5 48 -12c23 -9 44 -22 64 -35 c18 -12 38 -19 59 -19c12 0 25 3 37 8'], + 0x1D51B: [689,27,719,27,709,'709 585l-102 -58c-20 9 -37 22 -53 37c-15 15 -37 38 -42 52c-15 -10 -31 -23 -42 -37c-17 -23 -31 -51 -42 -79c-17 -42 -23 -87 -23 -133h176l-37 -42c-46 6 -93 7 -139 8c0 -41 2 -82 11 -115c11 -47 29 -93 64 -128c24 -24 56 -37 90 -37c39 0 74 21 106 43v-22 l-111 -90c-16 -5 -37 -11 -48 -11c-34 0 -67 14 -91 38c-38 38 -58 90 -69 143l-42 -42c-33 -33 -68 -65 -107 -91c-18 -12 -36 -23 -56 -32c-12 -5 -26 -11 -40 -11c-36 0 -66 24 -85 54l59 69c15 -31 44 -53 79 -53c38 0 73 21 99 47c41 41 55 99 67 155c4 20 5 51 5 83 c-59 0 -117 0 -176 -8l37 42h139c0 36 0 71 -5 107c-5 34 -17 62 -42 87c-17 18 -40 33 -65 33c-32 0 -57 -7 -80 -30c-17 -17 -37 -37 -49 -52l-17 15l148 159c44 -2 89 -16 120 -47c13 -13 22 -30 29 -46c11 -25 18 -51 25 -77c15 31 34 61 58 85c38 38 81 68 130 88 c12 -23 22 -47 34 -69c3 -7 7 -13 12 -19c9 -8 20 -13 32 -13c11 0 29 9 43 16v-19'], + 0x1D51C: [686,219,834,26,741,'741 341c0 -69 -5 -137 -17 -204c-9 -53 -23 -105 -48 -153c-44 -67 -106 -120 -175 -160c-43 -24 -89 -43 -139 -43c-29 0 -58 6 -84 19c-21 11 -40 28 -49 51l67 71h10c10 -50 56 -93 110 -93c61 0 96 21 135 60c25 24 46 64 62 95c20 41 29 86 35 131 c10 66 13 132 13 199c0 72 -4 144 -27 213c-26 29 -54 59 -90 74c-8 -3 -76 -35 -116 -89c3 -14 4 -30 4 -44c-2 -91 -18 -183 -70 -261l-116 -92c24 -7 52 -21 74 -32c26 -13 53 -25 80 -25c34 0 63 23 85 48l9 -16c-23 -30 -46 -59 -73 -85c-14 -12 -33 -26 -51 -26 c-30 0 -76 23 -107 41c-37 21 -76 34 -100 34c-46 0 -90 -32 -126 -58l-11 15c37 39 82 78 122 113c22 0 52 0 68 -2c18 10 45 32 67 53c25 25 40 58 51 92c13 42 19 86 19 130c0 53 -12 114 -40 154c-27 38 -71 72 -118 72c-39 0 -69 -13 -87 -27c-13 -12 -14 -24 -14 -45 s25 -58 40 -75c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 89 86 183 86c46 0 89 -34 119 -71 c17 -21 31 -49 40 -78l5 5c27 27 56 52 86 75c33 27 68 51 106 69c29 -36 68 -64 107 -90c16 -80 16 -170 16 -255'], + 0x1D51E: [471,36,500,65,497,'497 83l-123 -110l-43 73l-2 45l-175 -127c-30 32 -59 66 -87 101c-2 30 -2 61 -2 91c0 70 5 141 20 209l169 106c28 -19 60 -33 93 -40l67 34l8 -6c-10 -67 -15 -135 -15 -203l1 -137l36 -45c21 7 32 13 46 22zM329 119l-1 246c-47 0 -96 13 -142 27 c-24 -25 -30 -62 -35 -97c-4 -31 -6 -62 -6 -94c0 -27 1 -53 3 -80c13 -17 39 -44 60 -65c0 0 4 -1 7 -1c15 0 54 23 114 64'], + 0x1D51F: [686,31,513,86,444,'444 313c0 -72 -5 -145 -20 -216c-73 -47 -148 -92 -228 -128c-37 33 -86 77 -110 102c14 73 14 157 14 236l-7 361l17 4l17 -77l8 4l120 87l17 -13l-30 -26c-44 -38 -60 -91 -63 -148l-2 -134l7 -2c45 38 92 77 140 107c38 -22 77 -43 117 -61c2 -32 3 -64 3 -96z M363 227c0 41 0 72 -4 113c-9 12 -32 24 -85 46c-31 -4 -69 -33 -96 -54v-209c32 -33 80 -81 107 -81c16 0 29 11 40 22c16 17 23 39 28 61c8 34 10 68 10 102'], + 0x1D520: [466,29,389,72,359,'359 92l-172 -121c-40 34 -76 73 -110 113c-3 45 -5 89 -5 134c0 29 0 89 12 145l165 103c39 -3 75 -22 108 -44l-52 -79l-9 -3c-33 29 -83 54 -120 54c-18 -30 -21 -99 -21 -148c0 -35 2 -69 7 -99c18 -29 53 -61 84 -89c32 10 71 31 105 51'], + 0x1D521: [612,34,498,13,430,'430 328c0 -31 -1 -61 -3 -79c-4 -48 -8 -96 -26 -140l-187 -143c-50 34 -99 69 -138 115c-2 30 -3 57 -3 85l6 169c42 40 88 83 132 112l19 -4c-46 -50 -57 -77 -65 -97c-9 -23 -13 -56 -13 -92c0 -39 4 -83 7 -119c13 -16 29 -29 45 -41c23 -16 47 -30 72 -43 c3 -1 5 -2 8 -2c5 0 11 3 15 10c28 44 42 95 47 146c2 21 3 41 3 62c0 44 -4 88 -12 132c-39 41 -82 79 -131 109c-33 21 -70 38 -110 38c-8 0 -21 0 -24 -1l-46 -18l-13 16c43 24 93 48 138 69c90 -12 192 -88 276 -157'], + 0x1D522: [467,31,400,70,364,'364 358c-69 -66 -155 -146 -213 -192c0 -9 2 -18 5 -26c3 -14 60 -61 100 -79c4 1 18 1 23 3l74 39l5 -16c-54 -42 -110 -82 -169 -118c-40 37 -80 74 -114 116c-4 34 -5 69 -5 103c0 60 5 119 14 178l162 101c33 -42 74 -78 118 -109zM284 312c-38 24 -76 53 -108 84 l-2 1c-8 0 -14 -22 -16 -28c-9 -32 -10 -123 -10 -176c46 34 98 78 136 119'], + 0x1D523: [679,238,329,30,324,'324 388l-12 -37h-106l-4 -206c0 -67 0 -151 -13 -198c-10 -34 -25 -67 -43 -97l-50 -88l-19 7l26 90c7 23 12 48 14 72l3 197l-1 223h-89l15 35h73l-14 67c-6 25 -13 61 -13 75c0 44 24 81 55 112c14 14 29 27 46 39c42 0 92 -7 124 -40l-47 -92l-10 -1 c-8 17 -18 33 -31 46c-13 12 -30 23 -47 23c-13 0 -29 -3 -39 -12c-9 -10 -12 -22 -12 -35c0 -17 12 -41 21 -59l50 -95c5 -8 7 -17 9 -26h114'], + 0x1D524: [470,209,503,16,455,'455 -17c-51 -64 -104 -127 -163 -184c-12 -4 -28 -8 -36 -8c-32 0 -63 9 -92 21c-37 16 -71 38 -102 63l-35 -19l-11 13c45 31 89 68 134 107l-72 89c-2 34 -4 69 -4 103c0 67 5 134 15 200c53 37 107 70 162 102c34 -23 74 -36 114 -45l72 40l6 -6 c-14 -29 -16 -62 -18 -94c-4 -55 -4 -143 -4 -215c0 -14 2 -28 5 -41zM369 -45c0 22 -16 95 -27 142c-67 -47 -133 -99 -195 -152c23 -23 49 -45 77 -60c22 -12 46 -20 71 -20c20 0 39 10 53 24c15 16 21 45 21 66zM349 351c-58 8 -128 21 -176 43c-16 -40 -18 -90 -18 -134 c0 -45 1 -91 5 -136c15 -29 43 -60 68 -83l112 82c0 76 2 153 9 228'], + 0x1D525: [689,198,521,76,435,'435 246c0 -54 -2 -109 -7 -162c-4 -39 -9 -78 -20 -115c-45 -66 -102 -119 -164 -167l-16 14l64 55c11 8 19 19 26 31c17 34 23 72 28 109c8 60 10 121 10 182c0 28 -6 107 -10 161c-26 19 -55 36 -88 36c-31 0 -69 -29 -94 -49l-5 -215l54 -77l-82 -75l-55 91 c7 122 11 244 11 366c0 81 -1 163 -6 244l12 2l24 -76l121 88l17 -11c-83 -77 -90 -142 -90 -197l-1 -110c33 26 98 72 148 107c33 -30 74 -48 116 -61c4 -57 7 -114 7 -171'], + 0x1D526: [675,21,279,14,268,'268 83c-39 -37 -81 -72 -123 -104l-54 76c3 53 3 93 3 139l-4 173l-21 24c-11 -4 -29 -12 -42 -22l-13 13c34 28 71 61 105 93c19 -20 38 -39 60 -55c-7 -60 -8 -120 -8 -181c0 -39 1 -79 5 -111c2 -19 19 -40 32 -53c4 0 10 1 13 3c15 7 33 18 40 24zM187 616l-57 -60 c-21 19 -40 40 -58 61c20 20 42 37 60 58c18 -21 40 -47 55 -59'], + 0x1D527: [673,202,280,-9,196,'196 422l-6 -396c-1 -25 -5 -51 -22 -70c-45 -55 -98 -107 -161 -158l-16 18c29 22 58 45 83 71c13 13 21 30 26 47c16 56 18 179 18 269c0 50 0 119 -10 149c-6 17 -25 37 -32 37l-8 -3l-29 -19l-14 13l106 95c22 -16 43 -34 65 -53zM183 615l-58 -60 c-18 15 -37 40 -54 61l61 57c16 -21 32 -40 51 -58'], + 0x1D528: [686,26,389,24,363,'363 95c-43 -37 -111 -82 -168 -121l-107 95c4 19 6 40 6 58v181h-70l9 35h62c0 227 -1 262 -7 326l17 4c8 -24 18 -80 18 -80c41 32 86 68 130 93l16 -10c-26 -24 -56 -52 -67 -73c-19 -32 -26 -69 -29 -105c42 32 83 57 127 87c17 -16 32 -34 44 -54 c9 -15 16 -31 16 -48c0 -18 -10 -36 -23 -49l-86 -91h95l-14 -35h-159v-180c24 -24 54 -48 82 -68c32 16 66 29 95 50zM288 446c0 13 -6 24 -12 35c-10 14 -22 26 -35 37c-20 -10 -39 -23 -51 -42c-9 -16 -12 -34 -14 -52c-3 -25 -3 -54 -3 -81c35 0 64 13 87 40 c15 18 28 39 28 63'], + 0x1D529: [686,20,279,97,277,'277 673c-22 -19 -43 -36 -59 -60c-35 -54 -36 -106 -36 -222l2 -269c9 -14 26 -29 42 -41c14 4 29 14 40 23l10 -17l-128 -107l-51 76c6 108 8 217 8 326c0 96 -1 191 -6 286l17 4l17 -78l128 92'], + 0x1D52A: [475,26,766,7,757,'757 88l-126 -107c-10 19 -39 54 -59 79c6 42 11 75 11 214c0 26 -1 50 -3 68c-1 6 -2 12 -8 15c-28 17 -60 26 -92 34c-23 -12 -44 -24 -65 -38v-218c0 -8 0 -17 4 -22c0 0 30 -45 46 -66l-86 -73c-13 26 -36 52 -54 72c9 39 14 81 14 202c0 33 -1 66 -5 99 c-25 22 -71 35 -105 44l-61 -42v-197c0 -16 0 -40 5 -46l44 -58l-83 -70l-49 80c5 40 7 80 7 119l-4 188l-26 26l-43 -24l-12 12l111 93l50 -52v-44l127 99c38 -23 78 -43 120 -57v-39c44 30 88 61 129 95c39 -21 85 -46 121 -56c-5 -57 -3 -114 -4 -171v-121 c11 -16 23 -33 37 -47c20 7 28 10 47 26'], + 0x1D52B: [475,23,526,18,521,'521 93l-127 -112l-55 84c6 35 8 81 8 130c0 54 -2 111 -5 163c-29 15 -68 24 -101 27l-65 -44l-4 -207c0 -10 4 -24 7 -28l40 -54l-87 -75c-14 25 -30 48 -49 69c8 46 11 104 11 165l-4 154l-24 23l-35 -20l-13 12l104 90c12 -13 35 -31 54 -45v-58l144 108 c35 -24 73 -43 113 -58c-4 -43 -8 -102 -8 -164l4 -126c8 -13 16 -27 26 -40c3 -4 8 -5 13 -5c0 0 7 3 10 5l31 22'], + 0x1D52C: [481,28,488,66,413,'413 302c0 -71 -6 -141 -22 -210c-72 -46 -147 -88 -226 -120c-35 30 -71 62 -99 96c0 89 5 198 18 296c61 35 119 75 176 117c45 -30 94 -55 148 -66c3 -38 5 -75 5 -113zM334 356c-45 3 -104 25 -149 45c-13 -22 -19 -35 -27 -72c-8 -30 -11 -75 -11 -118 c0 -33 2 -64 6 -88c17 -21 36 -40 58 -55c18 -12 36 -21 57 -24c6 0 17 13 22 19c23 28 32 67 37 107c7 62 7 89 7 186'], + 0x1D52D: [538,214,500,12,430,'430 282l-2 -66c-2 -43 -6 -87 -21 -127l-134 -107c-32 26 -68 48 -108 55l4 -207l-80 -44l-11 7l9 254c-23 0 -46 -7 -64 -23l-11 14c25 23 62 57 76 67v247l-41 56c-3 4 -5 9 -5 14c0 8 3 15 7 22c21 34 47 66 76 94l14 -9c-10 -12 -18 -26 -18 -42c0 -13 5 -26 12 -38 c9 -16 21 -30 34 -43l-2 -34c49 33 95 69 142 106c35 -28 76 -48 118 -64c3 -44 5 -88 5 -132zM349 230c0 41 -3 82 -6 123c-25 13 -66 28 -96 38c-29 -11 -54 -27 -81 -44v-241c40 0 108 -30 157 -54c16 30 26 83 26 178'], + 0x1D52E: [480,224,489,59,418,'418 473c-15 -85 -19 -220 -19 -332c0 -107 0 -215 7 -320l-83 -45l-11 10l8 307c-56 -46 -113 -84 -174 -122l-84 94c-2 29 -3 57 -3 86c0 73 6 147 23 218c57 31 115 63 165 104c29 -18 60 -34 93 -41l70 48zM324 367c-51 3 -101 16 -150 31c-14 -25 -21 -54 -26 -82 c-7 -38 -10 -77 -10 -116c0 -19 0 -53 1 -56c0 -7 1 -14 6 -19c22 -22 50 -54 73 -75c24 13 70 48 101 71'], + 0x1D52F: [474,21,389,15,395,'395 413l-1 -13l-59 -55c-9 -8 -21 -10 -33 -10s-24 5 -33 11c-16 10 -36 25 -50 38c-16 -12 -31 -25 -37 -34v-198c0 -16 10 -29 19 -41c16 -19 34 -36 54 -51l89 42l2 -19l-146 -104c-37 29 -70 62 -103 96c6 59 6 109 6 170l-1 77c-1 32 -8 43 -8 43 c-9 8 -19 15 -29 22l-38 -16l-12 10l101 93c21 -21 43 -41 66 -60v-32l109 87c10 -18 22 -36 36 -52c8 -9 18 -19 30 -19c11 0 29 10 38 15'], + 0x1D530: [479,30,442,-28,407,'407 441l-92 -78c-72 4 -126 27 -152 52c-20 -19 -20 -56 -20 -79c0 -25 2 -50 12 -73c4 -9 9 -21 20 -21c6 0 12 0 17 2l123 56c22 -7 39 -22 56 -38c2 -26 3 -52 3 -77c0 -46 -4 -91 -16 -135c-54 -24 -109 -49 -160 -80c-22 21 -46 41 -73 57c-17 10 -35 20 -55 20 c-30 0 -57 -16 -89 -44l-9 9c15 16 52 55 74 76c18 17 43 23 67 23c26 0 50 -8 72 -22l81 -54l4 -1c6 0 11 5 15 14c9 30 11 61 11 92c0 25 -3 63 -13 74c-14 17 -27 22 -39 22c-14 0 -22 -3 -35 -10l-102 -58c-15 19 -31 45 -43 67c0 49 1 97 6 142l152 102l81 -46 c8 -4 16 -6 26 -6c23 0 46 13 72 30'], + 0x1D531: [641,21,333,26,349,'349 78l-137 -99l-97 83l1 289h-90l16 35h73v172l113 83l14 -14l-27 -26c-5 -5 -8 -12 -9 -19c-11 -64 -12 -131 -12 -196h108l-17 -35h-90l1 -228c20 -18 44 -39 63 -50c5 -3 11 -5 17 -5c15 0 36 9 70 32'], + 0x1D532: [474,26,517,8,514,'514 88c-42 -34 -83 -69 -122 -106l-8 2c-19 32 -39 67 -51 103c-68 -45 -153 -113 -153 -113c-26 17 -88 62 -125 74c13 22 21 51 27 79c9 45 15 91 15 137c0 28 0 55 -7 82c-6 18 -14 37 -29 50l-38 -20l-15 10l111 88c16 -19 32 -38 52 -53c0 -22 1 -43 1 -65l-2 -92 c-2 -54 -9 -108 -24 -160l101 -48l88 59c3 50 4 100 4 149l-3 160l85 44l7 -6c-10 -79 -13 -158 -13 -237c0 -32 2 -64 6 -94c2 -14 8 -28 17 -40c4 -5 10 -8 17 -8c10 0 43 15 53 20'], + 0x1D533: [533,28,511,51,439,'439 245c0 -37 -15 -119 -32 -159l-215 -114c-31 33 -67 65 -103 94c5 55 7 101 7 165l-4 114c0 8 -4 13 -9 19c-9 12 -17 18 -25 30c-4 8 -7 16 -7 24c0 6 5 20 8 26c21 32 45 62 72 89l14 -4c-9 -14 -16 -29 -16 -46c0 -10 11 -31 19 -45c5 -8 18 -20 27 -30v-34 l143 103c36 -24 74 -45 115 -61c6 -66 6 -100 6 -171zM359 243c0 38 -3 77 -8 115c-23 21 -54 32 -85 38c-28 -2 -63 -27 -91 -48l-3 -193c0 -25 14 -47 34 -62l37 -29c12 -8 27 -15 42 -15c13 0 24 9 33 19c11 11 18 25 24 40c13 40 17 99 17 135'], + 0x1D534: [533,28,773,44,693,'693 268c0 -93 -19 -133 -41 -196l-187 -100c-44 27 -89 52 -134 74c5 59 8 118 8 176c0 40 -1 80 -5 119c-23 16 -56 37 -70 44c-7 3 -16 7 -24 7c-4 0 -12 -2 -16 -5c-22 -12 -38 -25 -58 -39l-1 -190c0 -24 6 -49 20 -70c8 -14 18 -29 27 -40l-75 -75 c-17 29 -35 57 -59 79c8 51 10 103 10 155c0 46 0 92 -3 138c-1 8 -4 13 -9 19c-9 12 -17 18 -25 30c-4 8 -7 16 -7 24c0 6 5 20 8 26c21 32 45 62 72 89l14 -4c-9 -14 -16 -29 -16 -46c0 -10 11 -31 19 -45c5 -8 18 -20 27 -30v-32c43 30 86 61 123 97 c41 -26 84 -48 128 -68l-1 -37l142 103c41 -24 83 -46 126 -66c5 -28 7 -92 7 -137zM610 264c0 28 -4 53 -12 84c-29 18 -68 33 -100 38c-22 0 -63 -33 -80 -45l-2 -106c0 -26 1 -53 3 -81c1 -23 12 -44 29 -59c27 -25 59 -51 100 -51c8 0 17 7 24 14c17 17 25 45 29 69 c7 45 9 91 9 137'], + 0x1D535: [473,188,388,10,370,'370 398l-67 -59c-28 14 -47 42 -59 51c-15 -9 -42 -33 -49 -43c-4 -18 -5 -41 -5 -58c-1 -55 1 -115 5 -172c19 -20 40 -38 63 -54c4 -3 9 -4 13 -4c5 1 13 0 22 5l63 34l3 -18l-149 -105c-25 28 -54 52 -84 74c-17 -16 -33 -33 -45 -54c-9 -15 -16 -31 -16 -49 c0 -20 10 -37 24 -51c22 -22 69 -31 98 -34v-9l-64 -40c-33 8 -67 19 -92 44c-13 12 -21 29 -21 46c0 25 13 47 26 68c21 34 41 59 68 89c6 42 7 91 7 133c0 54 1 108 -3 161c-9 10 -21 23 -30 28c-3 2 -10 5 -10 5c-3 0 -8 -2 -12 -4c-9 -5 -29 -14 -29 -14l-13 9 c33 34 68 65 104 96c25 -22 63 -57 76 -66l-2 -31l109 89c17 -28 42 -48 69 -67'], + 0x1D536: [524,219,498,45,437,'437 228c0 -80 -8 -174 -30 -251c-13 -46 -117 -145 -185 -196l-38 17c34 17 67 36 94 62c22 22 36 51 46 80c11 32 16 66 19 99c5 50 7 100 7 150c0 56 -5 112 -11 167c-24 15 -53 30 -80 35c-15 0 -59 -28 -89 -51c-1 -64 -3 -81 -3 -188c0 -38 15 -66 45 -104l-75 -75 c-17 29 -39 61 -59 79c10 61 11 126 11 203c0 31 0 35 -3 81c-1 8 -4 13 -9 19c-9 12 -17 19 -25 31c-4 6 -7 14 -7 24c0 4 5 19 8 25c21 32 45 62 72 89l14 -4c-9 -14 -16 -29 -16 -46c0 -10 11 -31 19 -45c5 -8 18 -20 27 -30v-32l142 106c37 -22 74 -44 115 -59 c7 -60 11 -130 11 -186'], + 0x1D537: [471,215,390,-7,314,'314 64c0 -55 -10 -110 -24 -163l-137 -116c-45 0 -88 15 -124 41c-18 14 -32 34 -36 58c7 27 54 91 87 129c42 49 82 89 127 134c-35 16 -71 30 -110 34v11l73 67c16 15 34 33 34 56s-16 45 -34 57c-12 9 -26 16 -39 16c-7 0 -10 -2 -17 -6c-24 -14 -46 -30 -67 -47 l-11 12c45 45 93 87 146 124c24 -12 49 -25 68 -44c10 -9 19 -20 25 -31c5 -8 9 -17 9 -26c0 -13 -6 -26 -15 -36l-81 -87c37 -13 79 -29 112 -49c11 -43 14 -89 14 -134zM240 20c0 37 -4 74 -15 110c-41 -35 -81 -71 -113 -114c-20 -27 -40 -56 -40 -89 c0 -17 10 -31 22 -42c23 -24 55 -39 89 -39c10 0 16 4 23 12c10 10 18 37 22 57c7 35 12 70 12 105'], + 0x1D56C: [688,31,847,29,827,'827 77c-53 -35 -104 -73 -159 -106l-12 3l-73 150l-232 -155c-27 29 -56 57 -90 80c-21 14 -43 24 -70 24c-34 0 -93 -23 -133 -42l-22 17l200 128c27 17 52 36 76 56c69 59 100 141 100 223c0 49 -27 95 -68 129c-29 25 -70 40 -112 40c-36 0 -58 -7 -78 -24 c-17 -14 -22 -35 -22 -54c0 -12 6 -23 13 -33c11 -15 24 -28 38 -41c16 -14 32 -28 44 -45c8 -10 15 -20 15 -32c0 -30 -22 -56 -46 -77c-32 -27 -70 -50 -110 -69l-19 15c19 11 36 24 51 40c9 11 18 23 18 37c0 16 -30 48 -51 70c-16 16 -30 33 -42 52c-7 13 -14 26 -14 40 c0 28 16 56 46 83c51 47 171 102 244 102c58 0 116 -15 158 -50c38 -33 59 -77 59 -123c0 -69 -25 -136 -60 -198l-193 -158c25 0 50 -9 72 -21c31 -16 58 -37 82 -59c37 9 97 46 142 74v429l174 105l14 -13l-51 -51c-8 -49 -8 -215 -8 -323c0 -40 1 -81 4 -121l57 -101 l53 21'], + 0x1D56D: [685,31,1043,56,963,'963 491l-204 -103v-5c26 -3 46 -6 75 -14c24 -7 47 -16 65 -31c38 -32 52 -77 52 -122s-16 -79 -45 -116l-172 -111c-25 -13 -62 -20 -97 -20c-63 0 -124 16 -182 35s-118 37 -181 37c-64 0 -122 -20 -177 -50l-13 24l139 77c42 24 83 49 119 79c20 18 39 41 45 64 c9 36 13 81 13 120c0 37 0 76 -7 112c-9 44 -29 90 -67 122c-24 20 -52 38 -87 38c-23 0 -45 -9 -61 -23c-14 -12 -21 -31 -21 -48c0 -13 8 -24 16 -34c13 -18 29 -34 46 -50c14 -13 28 -27 39 -43c7 -10 14 -21 14 -33c0 -10 -3 -21 -10 -30c-9 -13 -23 -26 -35 -36 c-39 -34 -84 -60 -131 -84l-20 13c23 15 44 30 65 48c12 10 19 24 19 39c0 16 -24 40 -42 58c-18 17 -34 36 -46 57c-9 15 -16 31 -16 48c0 29 40 70 70 95c58 50 130 81 206 81c80 0 142 -49 173 -108c42 30 85 59 134 80c34 15 70 28 108 28c22 0 45 -4 61 -18 c15 -12 28 -60 36 -92c5 -18 13 -36 25 -51c8 -9 18 -19 33 -19c21 0 41 4 61 10v-24zM827 144c0 48 -13 99 -53 133c-41 35 -98 50 -154 50c-33 0 -65 -4 -96 -11c-4 -25 -14 -51 -24 -75l-145 -104c83 -2 164 -23 241 -49c50 -17 104 -34 154 -34c19 0 38 5 51 16 c23 19 26 48 26 74zM778 433c-9 5 -21 12 -27 19c-7 8 -13 17 -15 26c-1 2 -8 40 -12 60c-5 24 -11 51 -29 67c-10 8 -23 14 -36 14c-25 0 -47 -9 -66 -21c-27 -18 -51 -45 -72 -78c6 -30 7 -58 7 -101l-2 -73c83 19 174 46 252 87'], + 0x1D56E: [677,32,723,71,729,'729 553c-27 -11 -105 -40 -140 -40c-8 0 -16 1 -23 5c-10 6 -21 13 -28 22c-18 22 -35 47 -49 71c-9 -2 -17 -5 -23 -10c-13 -12 -19 -30 -19 -46c0 -17 11 -49 21 -74c11 -28 19 -61 19 -86c0 -32 -6 -66 -33 -89c-20 -17 -44 -28 -68 -40c-37 -16 -76 -30 -115 -43 l-20 14c25 7 45 22 63 37c21 18 37 41 37 67c0 32 -7 63 -16 94c-9 33 -20 71 -20 98c0 9 1 16 4 22c-24 -2 -47 -11 -64 -26c-21 -17 -33 -40 -42 -64c-11 -30 -14 -62 -14 -94c0 -88 27 -177 101 -240c63 -53 146 -86 234 -86c21 0 45 1 62 9l116 54l4 -27l-166 -103 c-28 -6 -56 -10 -85 -10c-102 0 -206 21 -279 82c-79 68 -115 162 -115 256c0 62 18 123 47 179c21 16 124 77 195 108l25 -25c82 52 173 93 274 109c8 -36 19 -72 50 -98c8 -7 19 -7 30 -7c8 0 26 3 37 6v-25'], + 0x1D56F: [685,29,981,30,896,'896 372c0 -76 -28 -160 -78 -231c-81 -68 -154 -117 -249 -170c-47 0 -101 18 -149 34c-78 26 -175 58 -239 58c-30 0 -59 -10 -80 -28c-19 -16 -37 -32 -53 -49l-17 19c42 58 98 108 155 156c33 0 65 1 97 7c20 3 40 7 54 19s20 28 20 45c0 13 -7 25 -14 36 c-12 18 -26 34 -40 49s-27 29 -38 46c-7 10 -13 21 -13 33c0 14 3 28 12 40c12 17 25 31 42 45c33 25 69 48 107 68l22 -11c-27 -22 -62 -52 -62 -75c0 -21 22 -47 45 -75c14 -16 37 -42 49 -60c8 -11 13 -25 13 -39c0 -25 -13 -48 -34 -66c-34 -29 -78 -53 -127 -71 c61 -10 179 -42 261 -64c25 -7 52 -13 79 -13c25 0 45 13 62 28c23 18 35 45 43 71c12 34 16 69 16 104c0 86 -25 174 -98 235c-35 30 -80 49 -127 62c-58 16 -119 22 -180 22c-89 0 -181 -17 -246 -71c-51 -44 -71 -100 -74 -161l-25 7c0 85 32 169 104 230 c36 31 83 49 132 61c64 16 131 22 197 22c125 0 253 -25 342 -101c66 -56 91 -134 91 -212'], + 0x1D570: [687,29,782,73,733,'733 584l-3 -27l-131 -40c-4 -1 -7 -1 -11 -1s-9 0 -12 2c-10 7 -19 14 -27 24l-59 76c-19 -12 -36 -28 -36 -48c0 -28 8 -66 19 -96s19 -66 19 -93l122 80c20 -36 45 -65 81 -89v-12l-89 -55c-12 7 -25 13 -44 26l-36 25c-4 3 -10 6 -15 6c-9 0 -16 -4 -23 -9 c-7 -15 -17 -27 -30 -38c-50 -42 -114 -69 -181 -89l-22 14c26 10 48 23 68 40c17 14 31 32 31 53c0 30 -4 63 -14 94c-9 28 -15 51 -22 79c-2 8 -3 15 -3 23c0 13 2 26 6 38c-20 -4 -37 -14 -52 -26c-52 -45 -74 -107 -74 -170c0 -87 38 -171 111 -233 c58 -49 134 -84 216 -84c71 0 138 23 195 58v-27l-155 -103c-38 -7 -77 -11 -116 -11c-94 0 -191 24 -259 81c-79 67 -114 159 -114 253c0 61 12 122 41 178c60 43 126 81 193 116l43 -18c79 47 168 80 260 106c6 -22 14 -44 24 -65c8 -15 15 -25 28 -36c7 -6 15 -9 25 -9 c13 0 33 4 46 7'], + 0x1D571: [684,147,721,17,734,'734 626c-46 -45 -117 -114 -151 -140c-40 2 -85 13 -122 24c-29 -9 -52 -19 -74 -37c-15 -13 -23 -32 -23 -50c0 -19 9 -37 19 -55c15 -25 34 -47 55 -69l150 119c31 -25 50 -57 70 -94l-68 -60c-8 12 -20 28 -28 35c-8 8 -25 14 -39 14c-21 0 -48 -17 -67 -33 c33 -34 68 -73 93 -112c16 -24 31 -49 31 -77c0 -51 -21 -101 -64 -137c-66 -57 -151 -101 -247 -101c-38 0 -79 7 -107 30c-31 27 -39 66 -39 103c0 27 4 49 9 75c3 13 5 39 5 55c0 15 -3 29 -16 40c-9 8 -23 13 -36 13c-17 0 -45 -13 -64 -23l-4 23c32 18 65 35 100 47 c26 9 53 14 80 14c19 0 31 -5 44 -15c11 -10 19 -26 19 -39c0 -22 -2 -45 -8 -69c-11 -43 -17 -87 -17 -123c0 -26 6 -53 28 -72c16 -12 37 -19 58 -19c41 0 80 16 109 41c31 26 38 65 38 101c0 39 -55 101 -95 147c-30 35 -60 70 -85 109c-14 21 -28 44 -28 69 c0 17 7 33 17 48c12 19 29 37 48 53c29 24 64 44 100 61c-69 32 -163 74 -215 74c-22 0 -46 -4 -62 -18c-36 -30 -53 -71 -63 -113l-26 16c14 58 39 115 89 157c37 32 89 46 141 46c29 0 57 -7 83 -15c41 -11 80 -27 118 -43c43 -18 105 -45 131 -45c25 0 70 36 101 61'], + 0x1D572: [692,27,927,74,844,'844 291c0 -95 -65 -179 -159 -227l-150 -82c-35 -5 -68 -9 -96 -9c-91 0 -181 25 -244 81c-82 73 -121 166 -121 264c0 36 5 73 14 108c7 25 17 46 34 70c62 39 124 72 186 100l35 -12c44 30 93 56 144 78l22 -12c-43 -18 -77 -60 -77 -100c0 -29 17 -97 31 -144l66 34 l114 86c-35 6 -64 16 -90 37c-13 12 -24 33 -29 49l112 80c8 -21 15 -43 33 -58c19 -16 46 -22 72 -22c12 0 42 8 65 19l3 -24c-72 -49 -137 -96 -204 -149c67 0 135 -13 183 -54c36 -30 56 -71 56 -113zM718 216c0 48 -17 96 -57 130c-33 28 -81 43 -127 43 c-23 0 -45 -1 -68 -9c2 -11 3 -23 3 -35c0 -24 -6 -48 -25 -65c-17 -14 -38 -25 -59 -34c-31 -13 -59 -22 -92 -32l-11 18c16 6 28 12 43 24c16 16 24 35 24 55c0 13 -11 70 -21 102c-15 50 -21 80 -21 100c0 19 1 39 13 55c-30 -2 -51 -15 -73 -33 c-42 -36 -56 -95 -56 -144c0 -96 38 -190 119 -258c59 -51 137 -84 222 -84c47 0 96 12 130 39c40 31 56 81 56 128'], + 0x1D573: [684,127,850,0,753,'753 242c0 -87 -15 -173 -51 -254l-160 -100c-14 -8 -30 -15 -47 -15c-38 0 -72 17 -97 40l59 70l16 1c6 -14 16 -28 29 -38c10 -8 22 -15 36 -15c21 0 37 8 52 20c37 31 37 150 37 227c0 34 -3 138 -45 172c-26 22 -61 38 -98 38c-23 0 -46 -2 -67 -9 c-18 -7 -43 -19 -81 -48c24 -40 46 -94 46 -126c0 -27 -7 -58 -28 -78l-166 -145c-16 15 -34 29 -53 40c-13 7 -27 14 -43 14c-33 0 -67 -30 -76 -39l-16 18c47 47 116 117 160 117c42 0 76 -29 99 -56c17 20 29 40 29 64c0 34 -41 101 -72 149c-32 48 -61 100 -61 156 c0 25 14 48 29 69c24 33 53 62 84 90c33 30 76 55 116 80c21 -18 44 -35 69 -48c17 -9 36 -17 56 -17c35 0 88 34 111 51l14 -18c-35 -32 -89 -80 -139 -111c-15 -4 -31 -7 -47 -7c-59 0 -111 27 -157 56c-20 -18 -37 -40 -37 -65c0 -23 6 -45 15 -66c14 -35 33 -71 53 -102 c57 43 125 88 187 122c64 0 148 -23 186 -45c10 -5 31 -29 34 -40c20 -58 24 -91 24 -152'], + 0x1D574: [683,25,654,31,623,'623 655c-61 -48 -133 -98 -205 -133l-110 36c-33 9 -66 18 -101 18c-32 0 -67 -12 -90 -31c-27 -23 -46 -53 -64 -82h-7l-15 14c19 37 39 73 62 108c15 22 31 44 52 61c30 24 70 37 110 37c38 0 89 -19 132 -34c36 -13 92 -33 111 -33s34 5 51 13c23 11 44 26 65 41z M607 568c-24 -17 -39 -31 -56 -53c-12 -16 -23 -40 -23 -60c0 -24 0 -54 3 -72c8 -48 15 -97 15 -145c0 -60 -24 -122 -75 -165c-65 -56 -142 -98 -236 -98c-48 0 -92 21 -128 47l-62 -38l-7 18c47 48 105 96 159 138c23 -42 37 -67 74 -97c13 -11 31 -15 49 -15 c24 0 42 8 59 21c15 13 25 38 31 56c8 25 8 51 8 77c0 10 -8 75 -12 112c-3 26 -5 52 -5 77c0 21 1 42 4 62c51 55 110 104 177 145'], + 0x1D575: [681,142,652,-8,615,'615 586c-68 -33 -148 -64 -223 -85c-28 12 -69 37 -75 41c-36 19 -74 37 -117 37c-24 0 -52 -7 -68 -21c-22 -18 -36 -40 -50 -62l-18 14c26 46 55 91 98 127c30 26 70 44 113 44c17 0 32 -7 46 -14c24 -11 46 -24 68 -38c21 -14 43 -28 66 -39c14 -6 29 -11 45 -11 c32 0 77 16 115 30v-23zM572 517c-46 -40 -82 -88 -83 -145c0 -44 7 -87 20 -129c15 -52 30 -105 30 -159c0 -56 -21 -111 -68 -151c-52 -44 -120 -75 -194 -75c-37 0 -77 3 -104 26c-30 25 -43 59 -48 94c-5 29 -12 73 -24 83c-11 9 -26 15 -42 15c-20 0 -40 -8 -58 -17 l-9 18c30 20 62 39 97 53c26 11 54 19 83 19c20 0 41 -5 56 -18c10 -8 12 -21 13 -33c1 -6 1 -67 1 -100s11 -65 38 -88c12 -10 28 -17 44 -17c26 0 50 7 68 23c26 22 32 59 32 90c0 47 -18 111 -35 165c-15 46 -25 93 -25 140c0 17 1 34 5 51c50 62 109 117 178 164'], + 0x1D576: [682,26,789,20,813,'813 69c-31 -26 -64 -51 -101 -71c-23 -12 -48 -24 -75 -24c-17 0 -36 1 -48 11c-33 29 -45 69 -51 108c-2 11 -12 72 -37 108c-8 11 -29 29 -73 29c-34 0 -70 -11 -98 -24c2 -13 3 -25 3 -37c0 -14 -2 -28 -6 -45c-43 -46 -94 -93 -151 -127c-14 -8 -27 -14 -39 -19 c-38 0 -72 14 -93 30c-3 2 -16 15 -24 24l86 85h14c8 -20 17 -39 35 -54c9 -8 21 -17 35 -17c10 0 22 2 29 8c15 14 18 33 18 53c0 34 -24 91 -41 133c-23 55 -44 111 -44 169c0 30 13 59 30 85c23 35 53 65 86 93c69 59 162 95 260 95c117 0 156 -35 183 -64 c2 -10 3 -19 3 -30c0 -22 -5 -50 -22 -98l-20 -6c-8 39 -25 58 -49 79c-46 39 -112 62 -176 62c-54 0 -108 -15 -147 -48c-27 -24 -38 -57 -38 -90c0 -43 10 -84 23 -125c41 39 85 75 137 104c36 19 76 36 119 36c22 0 44 -4 60 -17c16 -15 28 -44 37 -68 c6 -18 12 -35 22 -44c6 -6 16 -10 26 -10c12 0 24 0 46 6l6 -21l-197 -65c79 -15 95 -46 108 -126c7 -41 27 -67 45 -79c12 -8 29 -11 45 -11c25 0 47 11 67 24zM556 312c-13 9 -29 36 -35 55c-4 17 -12 35 -27 47c-11 9 -24 18 -39 18c-37 0 -72 -15 -97 -37 c-24 -20 -44 -52 -58 -81c8 -26 16 -58 23 -84c31 14 102 46 178 59'], + 0x1D577: [684,28,786,30,764,'764 200c-10 -40 -22 -81 -39 -119c-11 -24 -22 -48 -43 -66c-30 -25 -69 -43 -112 -43c-93 0 -182 23 -267 53c-49 17 -119 41 -151 41c-19 0 -38 -6 -52 -17c-12 -11 -37 -44 -54 -67l-16 13c28 59 65 115 117 161c11 6 25 9 41 9c7 0 14 0 22 -2c15 4 36 12 47 21 c15 12 20 30 20 47c0 22 -37 78 -61 115c-21 32 -38 67 -38 104c0 25 11 50 26 72c19 30 45 57 74 81c67 57 162 81 256 81c40 0 82 -5 111 -29c13 -12 17 -27 20 -43c4 -23 3 -47 0 -70c-2 -13 -3 -21 -3 -34c0 -17 9 -31 24 -42c6 -5 45 -5 63 -5v-18l-172 -49 c-10 0 -21 1 -29 7c-13 12 -21 27 -21 43c0 14 4 26 6 40c2 17 5 48 5 52c0 23 -8 46 -27 62c-25 21 -60 30 -95 30c-32 0 -65 -8 -88 -27c-24 -21 -35 -49 -35 -78c0 -40 18 -78 37 -115c14 -26 26 -53 34 -82c5 -15 8 -31 8 -47c0 -5 -1 -17 -5 -22 c-24 -29 -68 -72 -116 -104l153 -47c56 -17 116 -24 176 -24c42 0 84 11 114 37c29 24 42 58 51 92'], + 0x1D578: [686,33,1239,26,1232,'1232 548c-48 -25 -73 -41 -116 -72c-5 -4 -25 -28 -28 -39c-9 -36 -9 -61 -9 -97c0 -55 2 -110 14 -164c4 -19 10 -37 18 -55c6 -13 10 -18 21 -27c7 -6 20 -9 30 -9c9 0 41 2 61 9v-18l-179 -109l-80 111c0 105 0 237 6 289c33 48 63 77 101 103c-12 3 -18 5 -26 17 c-9 14 -22 40 -31 62c-7 18 -16 36 -29 48c-10 8 -23 15 -37 15c-24 0 -49 -5 -69 -16c-25 -14 -40 -26 -60 -45c5 -28 8 -72 8 -101c0 -107 -14 -216 -69 -313l-170 -165c-13 12 -28 24 -45 33c-11 6 -23 12 -37 12c-18 0 -36 -5 -49 -16l-16 -14l-17 15c25 28 66 71 78 82 c19 17 44 33 73 33c25 0 57 -24 77 -41c27 34 36 72 45 112c13 59 14 124 14 183c0 40 -3 80 -15 119c-9 27 -21 54 -44 74c-14 12 -32 23 -52 23c-15 0 -28 -4 -41 -10c-16 -9 -32 -21 -50 -35c8 -31 14 -62 14 -94c0 -107 -34 -221 -87 -318l-219 -155 c-13 15 -28 29 -45 39c-14 8 -29 14 -45 14c-20 0 -39 -5 -54 -17c-10 -8 -24 -20 -30 -26l-15 15c29 32 66 72 91 92c23 20 54 31 86 31c16 0 30 -7 42 -15c18 -11 35 -28 48 -44c14 10 26 19 35 28c28 25 39 60 50 95c15 51 20 104 20 157c0 46 -4 94 -18 139 c-11 32 -27 66 -55 90c-31 27 -70 46 -116 46c-21 0 -51 -1 -67 -15c-13 -11 -23 -23 -23 -39c0 -17 36 -59 61 -85c43 -43 58 -67 58 -84c0 -29 -21 -55 -45 -76c-35 -29 -74 -51 -116 -72l-18 17c21 10 38 20 53 35c10 11 20 24 20 38c0 20 -28 54 -50 76 c-26 26 -58 63 -58 89c0 18 12 35 23 51c18 24 41 45 65 65c53 45 137 67 188 67c48 0 104 -15 139 -44c24 -20 46 -47 58 -74c30 23 62 44 98 59c26 11 55 20 85 20c35 0 68 -12 93 -32c13 -12 23 -25 33 -38c36 30 76 58 121 78c36 16 74 28 115 28c15 0 31 -2 43 -12 c10 -9 25 -37 34 -55c8 -16 17 -32 31 -44c9 -9 21 -14 34 -14c16 0 31 3 46 8v-18'], + 0x1D579: [681,33,982,26,968,'968 542c-29 -13 -66 -37 -108 -66c-5 -4 -25 -28 -28 -39c-9 -36 -9 -61 -9 -97c0 -55 2 -110 14 -164c4 -19 10 -37 18 -55c6 -13 10 -18 21 -27c7 -6 20 -9 30 -9c9 0 41 2 61 9v-18l-179 -109l-80 111c0 105 0 237 6 289c33 48 63 79 101 105c-14 0 -26 7 -35 15 c-13 12 -23 27 -29 42c-10 25 -25 57 -41 71c-11 8 -24 14 -38 14c-25 0 -53 -16 -72 -30c-36 -28 -57 -50 -82 -83c16 -48 24 -113 24 -166c0 -72 -13 -144 -44 -210l-205 -143c-9 -4 -23 -10 -29 -10c-51 0 -93 27 -128 57l88 94h19c5 -14 20 -33 38 -49 c14 -11 32 -17 52 -17c25 0 46 14 64 28c15 13 19 31 23 49c7 29 9 58 9 88c0 70 -8 140 -31 208c-17 51 -43 100 -87 138c-31 26 -70 47 -115 47c-21 0 -44 -3 -60 -16c-12 -11 -19 -24 -19 -39s9 -30 17 -43c14 -20 31 -38 49 -56c14 -13 27 -27 37 -43 c7 -10 10 -21 10 -33c0 -26 -17 -46 -37 -65c-32 -31 -70 -55 -111 -78l-22 16c18 11 35 24 48 39c9 11 17 23 17 37c0 20 -19 39 -36 55c-18 18 -34 36 -46 56c-9 15 -17 30 -17 47c0 20 9 39 20 57c16 24 35 46 59 64c52 39 122 68 195 68c49 0 98 -15 133 -45 c33 -28 57 -63 70 -101c22 22 44 43 68 63c50 43 112 80 185 80c25 0 53 -3 71 -19c11 -9 24 -36 36 -64c5 -13 14 -24 25 -34c6 -7 13 -13 23 -13c18 0 36 3 52 9'], + 0x1D57A: [726,29,976,11,881,'881 378c0 -86 -29 -170 -81 -244c-57 -51 -117 -88 -185 -121c-48 -23 -100 -42 -155 -42c-64 0 -126 18 -187 37c-41 13 -90 28 -125 28c-47 0 -86 -25 -116 -54l-21 22l89 110c35 8 70 17 95 38c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -31 50 -52 76 c-26 32 -50 74 -51 104c0 44 77 117 150 157l14 -14c-26 -18 -56 -42 -56 -77c0 -16 25 -67 47 -98c24 -32 40 -59 59 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -56 -62 -88 -83c22 0 41 -2 70 -9c58 -14 117 -31 173 -50c49 -17 82 -27 147 -27 c26 0 51 15 70 29c32 25 48 66 60 101c15 49 20 100 20 150c0 40 -5 81 -18 119c-11 30 -26 59 -52 81c-24 20 -56 29 -88 36c-46 10 -74 13 -122 13c-25 0 -47 -1 -68 -3c-15 -1 -30 -1 -44 -1c-46 0 -64 26 -64 36c0 24 4 35 35 60c18 13 52 45 62 58h25 c-6 -9 -11 -19 -11 -30c0 -9 10 -15 20 -17c12 -3 69 -5 103 -7c56 -3 112 -10 165 -24c40 -12 79 -27 109 -53c29 -24 45 -55 57 -87c15 -42 20 -86 20 -130'], + 0x1D57B: [685,223,977,19,944,'944 511c-45 -20 -89 -41 -126 -69c-15 -12 -29 -27 -29 -45c0 -32 18 -61 38 -88c23 -31 54 -74 54 -104c0 -24 -5 -48 -19 -69c-24 -35 -48 -63 -83 -94c-20 -18 -42 -36 -67 -47c-19 -9 -40 -15 -61 -15c-54 0 -109 18 -157 39c0 -54 5 -106 14 -160l-138 -82l-27 14 c12 35 16 70 20 105c5 52 7 106 7 158c-27 11 -60 22 -86 22c-37 0 -67 -18 -92 -40c-18 -15 -36 -30 -51 -48l-15 19c32 47 70 104 107 135c25 21 57 37 93 37c12 0 26 -1 43 -6v196c0 43 -6 87 -21 128c-12 33 -29 64 -57 88c-24 20 -53 34 -87 34c-38 0 -58 -12 -71 -22 c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35 c0 23 11 44 24 64c18 27 42 51 67 73c45 38 104 67 181 67c54 0 97 -17 134 -48c24 -20 48 -53 60 -80c42 36 88 71 140 94c39 17 81 30 124 30c21 0 43 -2 58 -15c15 -12 21 -42 24 -65c3 -20 11 -39 25 -56c10 -11 23 -22 40 -22c13 0 30 4 41 7zM794 109 c0 15 -8 34 -16 47c-12 21 -26 40 -42 59c-27 32 -57 76 -57 100c0 19 9 37 23 52c25 28 54 53 84 76c-19 3 -39 9 -48 17c-7 6 -23 22 -23 62c0 15 -2 30 -6 44c-3 10 -7 20 -15 27c-14 12 -32 19 -51 19c-37 0 -69 -17 -95 -39c-10 -9 -35 -33 -54 -55v-376l175 -63 c26 -9 50 -17 77 -17c12 0 24 4 32 11c12 10 16 22 16 36'], + 0x1D57C: [726,82,976,11,917,'917 -3c-53 -28 -107 -55 -163 -79c-60 22 -117 48 -169 83c-36 -17 -84 -30 -125 -30c-64 0 -126 18 -187 37c-41 13 -90 28 -125 28c-47 0 -86 -25 -116 -54l-21 22l89 110c35 8 70 17 95 38c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -31 50 -52 76 c-26 32 -50 74 -51 104c0 44 77 117 150 157l14 -14c-26 -18 -56 -42 -56 -77c0 -16 25 -67 47 -98c24 -32 40 -59 59 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -56 -62 -88 -83c22 0 41 -2 70 -9c58 -14 117 -31 173 -50c49 -17 82 -27 147 -27 c26 0 51 15 70 29c32 25 48 66 60 101c15 49 20 100 20 150c0 40 -5 81 -18 119c-11 30 -26 59 -52 81c-24 20 -56 29 -88 36c-46 10 -74 13 -122 13c-25 0 -47 -1 -68 -3c-15 -1 -30 -1 -44 -1c-46 0 -64 26 -64 36c0 24 4 35 35 60c18 13 52 45 62 58h25 c-6 -9 -11 -19 -11 -30c0 -9 10 -15 20 -17c12 -3 69 -5 103 -7c56 -3 112 -10 165 -24c40 -12 79 -27 109 -53c29 -24 45 -55 57 -87c15 -42 20 -86 20 -130c0 -86 -29 -170 -81 -244c-22 -24 -56 -48 -84 -68c20 -18 39 -33 63 -47c16 -8 33 -17 52 -17c29 0 58 7 86 16 v-21'], + 0x1D57D: [689,29,977,19,977,'977 72l-170 -101c-23 46 -57 92 -89 137c0 46 0 118 -3 139c-2 18 -9 45 -24 59c-20 16 -39 29 -66 34c-15 3 -31 4 -46 4c-20 0 -40 -7 -59 -15c-11 -68 -30 -118 -67 -179l-230 -178l-51 41c-10 8 -23 15 -36 15s-24 -3 -35 -9c-16 -9 -29 -22 -41 -37l-16 16 c45 53 113 126 158 126c21 0 34 -7 44 -14c19 -13 36 -28 52 -43c13 9 26 19 38 29c29 24 38 59 45 93c13 55 16 111 16 168c0 43 -6 86 -21 128c-13 33 -34 65 -64 91c-28 24 -62 43 -107 43c-29 0 -59 -12 -72 -22c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36 c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73 c45 38 109 71 187 71c63 0 109 -19 150 -54c26 -22 50 -52 61 -81c35 35 77 72 122 98c33 18 70 33 109 33c26 0 50 -7 68 -23c21 -17 25 -48 28 -74c3 -23 6 -53 21 -66c12 -10 29 -12 45 -12c11 0 26 1 37 5l6 -13c-93 -36 -146 -62 -210 -101c34 -4 73 -22 94 -45 c0 -58 1 -127 7 -163c4 -22 12 -45 25 -63c12 -16 24 -30 39 -43c7 -6 22 -6 34 -6c14 0 29 7 43 14zM778 458c-14 0 -30 6 -41 16c-14 13 -20 41 -23 64s-9 55 -21 65c-9 8 -20 15 -33 15c-29 0 -54 -14 -74 -31c-28 -25 -44 -43 -64 -73c3 -17 3 -47 3 -64 c0 -31 -1 -59 -3 -92c43 18 104 43 156 47'], + 0x1D57E: [685,31,978,82,906,'906 261c0 -69 -44 -129 -101 -177c-94 -80 -225 -115 -356 -115c-98 0 -192 32 -261 91c-76 64 -106 151 -106 252c0 100 45 184 126 253c78 65 164 91 287 120c44 -16 85 -37 128 -55c50 -21 110 -46 156 -46c25 0 46 7 64 22c17 14 24 28 33 47l25 -14 c-12 -31 -34 -59 -61 -82c-33 -28 -75 -47 -120 -58c-18 -4 -36 -9 -55 -9c-26 0 -49 12 -71 23l-131 67c-28 14 -58 30 -89 30c-35 0 -68 -14 -92 -34c-58 -49 -81 -118 -81 -187c0 -95 31 -192 112 -260c67 -57 158 -88 253 -88c79 0 159 18 215 66c28 24 41 58 41 91 c0 32 -16 63 -43 85c-36 31 -89 39 -139 39c-44 0 -86 -8 -128 -17c-42 -8 -111 -22 -125 -22c-33 0 -66 7 -89 27c-20 17 -28 40 -28 64c0 37 23 70 54 96c28 24 67 37 103 45l13 -14c-11 -4 -21 -12 -30 -19c-17 -14 -30 -33 -30 -53c0 -16 5 -31 18 -42 c18 -15 46 -15 70 -15c48 0 94 5 140 13c45 7 88 21 133 21c43 0 87 -10 118 -36c33 -29 47 -69 47 -109'], + 0x1D57F: [691,30,789,30,798,'798 659l-121 -118c-29 -9 -60 -13 -92 -13c-42 0 -98 8 -139 15c-32 -28 -48 -49 -48 -85c0 -16 8 -36 19 -49c15 -19 32 -39 50 -56c34 -32 82 -77 82 -106c0 -35 -69 -91 -116 -127c48 -19 117 -46 155 -46c19 0 38 6 55 14c28 11 52 27 76 43l11 -24 c-55 -50 -117 -95 -181 -137c-53 0 -103 18 -150 38c-39 16 -85 34 -123 34c-18 0 -37 0 -51 -5c-36 -13 -59 -30 -88 -52l-12 18c57 51 119 97 191 132c30 0 62 -1 91 -8c18 15 29 33 29 55c0 24 -42 66 -72 94c-19 18 -37 37 -53 57c-11 14 -20 29 -25 45 c32 63 76 122 134 171c-75 14 -191 37 -224 37c-27 0 -62 -3 -81 -19c-13 -11 -18 -27 -18 -41c0 -39 35 -68 72 -89l2 -10l-83 -68c-32 25 -58 58 -58 96c0 51 31 98 73 135c63 53 144 90 234 90c37 0 124 -14 185 -25c49 -7 99 -14 150 -14c46 0 94 23 126 50v-32'], + 0x1D580: [689,39,850,16,871,'871 72l-200 -111l-71 123l-127 -105c-19 -11 -41 -13 -55 -13c-45 0 -89 14 -129 30c-52 21 -116 42 -165 42c-18 0 -44 -8 -90 -50l-18 20l106 109c32 5 71 15 87 25c18 11 51 38 61 65c3 11 4 26 4 37c0 20 -6 40 -15 60c-11 27 -27 53 -44 78c-26 39 -59 90 -59 122 c0 7 0 16 2 22c15 25 63 80 104 114c21 18 45 34 71 49l23 -16c-16 -10 -31 -22 -46 -34c-17 -14 -30 -32 -30 -53c0 -37 16 -73 35 -107c23 -40 41 -83 50 -127c4 -17 6 -34 6 -51c0 -18 -2 -35 -8 -52c-38 -42 -95 -103 -125 -121c26 -4 94 -26 136 -41 c36 -13 79 -24 113 -24c31 0 55 18 77 36c14 13 22 30 23 47c4 67 7 134 7 201c0 82 -5 164 -13 246c67 24 128 57 187 92l17 -15l-25 -24c-25 -26 -34 -60 -38 -93c-7 -58 -8 -115 -8 -173c0 -61 1 -121 5 -182c1 -18 2 -22 15 -52c9 -21 22 -44 36 -59c7 -9 19 -13 33 -13 s43 10 64 18'], + 0x1D581: [687,29,981,25,966,'966 604c-18 -10 -34 -22 -49 -35c-37 -31 -72 -69 -72 -115c0 -27 0 -58 5 -81l17 -95c4 -22 7 -45 7 -68c0 -46 -16 -88 -56 -120c-47 -39 -106 -82 -126 -93c-27 -15 -56 -26 -90 -26c-26 0 -51 8 -76 16c-40 13 -78 29 -116 46c-33 15 -66 29 -101 40 c-22 7 -44 13 -67 13s-45 -7 -65 -16c-28 -12 -54 -28 -77 -46l-13 18c50 42 109 82 166 121c30 7 55 22 77 40c20 17 29 41 35 65c10 36 13 74 13 111c0 42 -5 84 -19 124c-11 31 -27 61 -54 84c-25 21 -54 37 -93 37c-30 0 -60 -17 -73 -27c-15 -13 -22 -30 -22 -49 c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64 c18 27 42 51 67 73c45 38 109 69 187 69c52 0 93 -13 126 -41c32 -27 57 -69 66 -107c42 40 87 81 137 111c29 17 60 35 94 35c17 0 34 -5 50 -10c22 -8 43 -19 63 -31s49 -29 64 -29c21 0 41 3 61 14zM832 527c-40 0 -76 16 -109 35c-28 17 -62 36 -93 36 c-22 0 -40 -14 -55 -27c-28 -22 -50 -49 -70 -76c1 -14 2 -29 2 -43c0 -65 -12 -130 -45 -190l-117 -88c41 -1 143 -46 213 -75c47 -20 105 -44 148 -44c13 0 29 4 38 12c10 8 13 22 13 34c0 17 -2 38 -5 56l-23 129c-4 21 -4 41 -4 62c0 29 0 71 12 86c27 31 62 63 95 93'], + 0x1D582: [682,30,1235,31,1240,'1240 628l-1 -25c-36 -26 -83 -61 -112 -98c-18 -22 -24 -47 -24 -74c0 -23 10 -62 18 -93c11 -42 21 -81 21 -124c0 -22 -2 -43 -7 -65c-4 -15 -9 -29 -20 -41l-181 -123c-24 -8 -48 -13 -73 -13c-35 0 -75 14 -110 25c-58 19 -116 35 -177 42c-42 -19 -87 -42 -126 -64 c-10 -4 -22 -5 -35 -5c-52 0 -100 20 -145 43c-32 16 -67 32 -99 32c-21 0 -40 -6 -57 -15c-24 -11 -45 -27 -65 -44l-13 22c51 48 109 90 167 132c54 0 90 14 122 41c27 23 42 53 53 84c14 42 18 86 18 129c0 67 -15 136 -72 184c-27 24 -60 39 -103 39 c-29 0 -61 -10 -74 -20c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67 c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 109 64 185 64c63 0 111 -19 151 -53c24 -20 41 -46 52 -73c64 45 111 76 178 114c35 -19 60 -48 101 -110c37 32 78 65 122 91c28 15 56 31 90 31c37 0 70 -16 101 -33 c30 -16 62 -33 98 -33c11 0 30 7 40 12zM699 349c0 42 -3 85 -14 126c-8 28 -18 55 -42 76c-15 12 -32 22 -50 31c-30 -18 -53 -36 -74 -53c3 -14 4 -48 4 -62c0 -93 -22 -185 -88 -261l-135 -75c16 -5 67 -26 99 -42c36 -18 76 -34 119 -34c7 0 14 2 21 5 c31 14 67 30 87 50c27 27 48 57 58 91c15 50 15 96 15 148zM1104 527c-2 -1 -14 -1 -24 -1c-23 0 -64 20 -81 33c-21 16 -70 28 -89 28c-20 0 -42 -3 -59 -12c-21 -13 -35 -25 -51 -43c9 -36 14 -81 14 -118c0 -70 -20 -137 -50 -202c-28 -37 -50 -62 -76 -82 c48 0 138 -32 200 -54c28 -10 57 -20 88 -20c13 0 25 6 34 12c12 8 17 21 17 52c0 34 -13 96 -25 140c-12 41 -20 81 -20 120c0 19 2 42 54 86'], + 0x1D583: [682,35,849,32,835,'835 578l-131 -64c-48 17 -83 50 -109 87c-76 -58 -106 -93 -106 -235c65 0 146 0 194 4l-64 -58c-43 3 -109 3 -135 3c0 -79 20 -160 87 -217c30 -26 73 -38 116 -38c32 0 75 16 110 30v-24c-46 -27 -89 -59 -132 -91c-23 -7 -61 -10 -64 -10c-41 0 -80 14 -109 38 c-18 15 -31 34 -43 52c-16 27 -29 56 -40 84c-58 -54 -120 -106 -193 -146c-20 -11 -48 -25 -64 -25c-31 0 -82 30 -120 53l81 81c17 -15 36 -29 58 -39c15 -8 32 -14 51 -14c14 0 28 4 40 10c18 9 34 21 49 33c26 23 39 56 48 86c13 45 17 91 17 137c-70 0 -157 0 -209 -3 l65 56l146 -2c0 38 -2 77 -12 115c-7 24 -17 46 -38 64s-47 33 -77 33c-37 0 -68 -11 -93 -33l-41 -37l-18 20c53 54 112 104 173 152c51 -5 102 -17 139 -48c34 -29 60 -66 65 -107c25 30 54 57 84 83c39 33 87 57 139 74c14 -30 29 -60 56 -82c10 -9 25 -10 39 -10 s30 4 41 7v-19'], + 0x1D584: [689,214,983,32,879,'879 339c0 -123 -27 -246 -82 -360c-51 -56 -111 -105 -183 -142c-59 -30 -125 -51 -194 -51c-61 0 -121 17 -164 53l50 97l15 -2c9 -25 21 -50 43 -69c27 -23 66 -31 103 -31c60 0 119 16 162 52c49 42 72 98 89 154c25 82 31 166 31 251c0 53 -2 107 -14 159 c-7 31 -16 63 -40 86c-21 20 -49 31 -80 31c-20 0 -50 -6 -67 -17c-21 -13 -30 -20 -44 -38c4 -18 6 -48 6 -66c0 -77 -12 -151 -59 -217c-46 -34 -100 -70 -144 -96c10 -1 68 -21 98 -34c27 -12 58 -20 87 -20c17 0 32 8 46 15c24 12 45 27 66 43l6 -21 c-46 -55 -97 -107 -164 -143c-58 9 -113 32 -165 57c-27 13 -64 20 -91 20c-23 0 -46 -7 -66 -17c-27 -13 -50 -31 -72 -50l-19 19c50 50 100 100 160 142c14 3 26 4 39 4s27 -1 43 -2c18 9 40 21 58 36c23 21 30 49 37 77c10 46 13 93 13 139c0 69 -23 138 -81 187 c-23 20 -49 37 -85 37c-31 0 -58 -15 -71 -25c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41 c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 111 65 189 65c52 0 92 -17 125 -45c27 -23 45 -62 57 -96c41 32 84 62 129 91c32 20 65 40 101 56c35 -40 81 -71 131 -95c12 -85 24 -172 24 -255'], + 0x1D585: [718,137,726,17,633,'633 232c0 -55 -8 -111 -28 -164c-17 -43 -42 -84 -80 -117c-67 -56 -157 -88 -251 -88c-36 0 -81 0 -109 2c-14 2 -34 5 -34 20l1 51c0 11 -4 22 -13 29c-7 7 -17 11 -28 11c-23 0 -45 -9 -64 -20l-10 15c30 22 64 41 100 56c28 11 58 19 89 19c16 0 33 -3 44 -12 c13 -12 14 -37 14 -49c0 -11 -1 -22 -3 -32c-3 -13 -3 -28 -3 -41c0 -10 11 -16 21 -19c6 -2 14 -3 22 -3c45 0 87 16 118 43c28 23 42 60 52 92c15 42 19 87 19 131c0 29 -3 76 -27 96c-35 29 -85 37 -133 37c-36 0 -72 -8 -107 -17l-17 13l56 81c49 9 92 32 127 61 c32 27 43 64 43 101c0 9 -2 18 -10 25c-17 14 -41 18 -64 18c-30 0 -60 -2 -89 -5l-95 -11c-23 0 -45 7 -62 21c-6 5 -12 20 -15 33c27 37 67 84 92 108l18 1c-3 -6 -4 -13 -4 -20c0 -8 3 -17 11 -24c10 -8 25 -10 39 -10l177 6c36 0 74 -5 100 -27c14 -12 24 -28 24 -46 c0 -62 -43 -115 -94 -159c-26 -22 -68 -46 -100 -62c102 0 190 -4 250 -66c14 -14 23 -62 23 -78'], + 0x1D586: [472,32,602,80,587,'587 82l-145 -111c-20 30 -44 58 -72 83l-1 26l-186 -112c-39 32 -72 68 -102 105c-1 20 -1 39 -1 59c0 79 7 157 20 235c69 30 134 67 197 105c40 -16 83 -25 126 -32l66 28l8 -7c-17 -66 -17 -133 -17 -200l3 -118l52 -63c11 0 32 12 47 20zM368 110l-2 256 c-49 0 -98 11 -145 23c-16 -24 -27 -61 -27 -153c0 -32 2 -65 4 -98c25 -25 52 -52 81 -72c14 0 63 27 89 44'], + 0x1D587: [691,32,589,86,504,'504 314c0 -73 -5 -146 -19 -218c-87 -48 -175 -94 -271 -128c-46 32 -90 65 -128 103c13 112 13 227 13 340c0 85 -3 171 -13 255l20 8l25 -78c54 34 113 71 167 95l16 -13c-27 -19 -45 -36 -67 -58c-13 -13 -22 -30 -27 -47c-8 -26 -9 -52 -9 -78v-107l9 -4l142 90 c35 -17 92 -41 139 -60c2 -33 3 -67 3 -100zM386 252c0 32 -2 63 -6 95c-40 20 -65 29 -95 37c-22 -4 -55 -23 -72 -36l1 -216c21 -18 47 -40 74 -55c19 -11 39 -20 61 -23c20 40 29 83 33 126c3 25 4 49 4 72'], + 0x1D588: [473,26,463,87,424,'424 429l-78 -96h-10c-47 42 -90 57 -114 63c-13 -19 -17 -96 -17 -126c0 -38 3 -78 6 -116c32 -29 64 -57 101 -82l106 42v-21c-63 -41 -168 -104 -197 -119c-47 34 -90 73 -130 114c-3 42 -4 87 -4 130c0 53 3 104 13 148l195 107c46 -8 90 -22 129 -44'], + 0x1D589: [632,29,588,-1,511,'511 368c0 -88 -14 -176 -44 -260c-49 -40 -140 -93 -213 -137c-59 33 -115 71 -165 114c-3 18 -4 45 -4 78c0 46 2 106 7 172c47 43 111 89 165 124l22 -10c-20 -15 -46 -41 -65 -60c-10 -48 -11 -88 -11 -135c0 -35 2 -71 5 -106c39 -34 85 -62 135 -82 c24 40 50 109 50 243c0 34 -2 68 -5 102c-50 40 -103 78 -163 109c-37 20 -78 38 -122 38c-30 0 -63 -9 -90 -20l-14 19c56 30 117 53 178 75c54 -2 99 -24 146 -49c58 -31 126 -71 181 -108c5 -36 7 -72 7 -107'], + 0x1D58A: [471,28,471,80,429,'429 362c-61 -51 -160 -122 -241 -181c0 0 6 -38 18 -45c26 -20 53 -38 101 -68c31 5 75 23 110 40l9 -16c-64 -41 -129 -82 -197 -120c-53 34 -100 73 -144 114c-3 36 -5 72 -5 108c0 59 5 118 14 176l192 101c45 -38 91 -76 143 -109zM324 316c-39 24 -102 71 -117 83 c-15 -69 -21 -114 -21 -185c45 31 96 67 138 102'], + 0x1D58B: [681,242,387,37,387,'387 398l-16 -39h-121c0 -117 0 -236 -19 -347c-3 -15 -10 -32 -18 -46l-113 -208l-20 4c14 34 40 97 45 131c6 38 9 83 9 125v341h-97v8l15 38h73c-13 40 -17 75 -25 115c13 48 34 92 75 127c27 23 65 34 102 34c15 0 31 -5 43 -12c20 -10 37 -23 53 -38l-73 -82h-16 c-11 17 -20 30 -37 43c-11 9 -26 19 -41 19c-14 0 -28 -2 -39 -11c-11 -10 -17 -25 -17 -39c0 -33 26 -61 53 -85c14 -13 27 -26 37 -41c7 -11 9 -16 13 -30h134v-7'], + 0x1D58C: [473,208,594,16,541,'414 -74c0 37 -18 106 -32 157l-198 -133c55 -30 138 -75 177 -75c16 0 33 1 44 11c9 7 9 26 9 40zM541 -22c-61 -66 -128 -128 -202 -184c-10 -1 -21 -2 -31 -2c-32 0 -64 6 -94 14c-51 15 -99 39 -142 65l-38 -24l-18 15l169 115l-93 93c-3 38 -6 77 -6 115 c0 61 6 121 22 181c64 38 129 75 197 107c41 -19 90 -41 128 -47l86 39l13 -4c-15 -30 -22 -62 -27 -94c-7 -45 -9 -90 -9 -135c0 -86 32 -169 45 -254zM388 343c-57 8 -120 35 -162 57c-11 -52 -17 -112 -17 -166c0 -34 2 -68 6 -102c25 -25 55 -54 90 -70l78 49v66 c0 56 2 111 5 166'], + 0x1D58D: [687,203,615,88,507,'507 271l-3 -121c-3 -61 -7 -122 -20 -181c-49 -57 -116 -117 -192 -172l-24 14c22 15 50 39 73 61c18 17 28 44 35 68c9 33 18 87 18 175c0 74 -6 148 -12 222c-32 17 -74 35 -110 42l-54 -32c-3 -39 -5 -78 -5 -117c0 -34 1 -68 5 -102c16 -24 34 -46 54 -68 c-42 -24 -80 -54 -116 -84c-19 30 -42 59 -68 86c9 123 16 246 16 370c0 77 -3 155 -10 232l19 9l24 -76c51 31 107 65 155 90l18 -15c-12 -7 -23 -14 -34 -23c-45 -37 -56 -90 -56 -142l-2 -130c51 28 99 62 144 94c45 -23 93 -43 142 -61'], + 0x1D58E: [686,26,331,2,327,'327 87c-57 -34 -110 -74 -162 -113l-73 82c7 58 10 117 10 176c0 45 -2 89 -5 134l-38 21l-39 -17l-18 12c47 31 93 61 136 96c13 -10 54 -38 82 -56c-3 -56 -5 -112 -5 -169l3 -115c0 -10 5 -20 12 -29c8 -11 20 -27 31 -27c5 0 15 3 17 4l44 19zM242 615l-80 -75 c-32 22 -62 47 -89 73l91 73c23 -25 50 -50 78 -71'], + 0x1D58F: [683,207,331,-19,238,'238 256c0 -95 -6 -191 -25 -285c-62 -61 -142 -127 -216 -178l-16 18c34 21 70 46 95 71c27 27 37 64 40 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -4 30 -16 41c-8 7 -19 12 -31 12l-38 -17l-15 19l130 101c28 -21 55 -39 85 -58c3 -56 5 -112 5 -169zM235 614 l-81 -73c-28 22 -56 44 -80 70l81 72c10 -10 53 -46 80 -69'], + 0x1D590: [683,25,464,33,432,'432 90l-198 -115l-129 96c2 15 3 29 4 44l5 193h-81l14 38h68c0 107 0 244 -11 319l21 8l27 -76c45 34 97 62 150 86l15 -16c-26 -14 -41 -26 -57 -47c-11 -15 -20 -31 -23 -48c-6 -23 -7 -49 -7 -73c41 29 95 64 138 86c16 -19 32 -39 44 -60c8 -14 13 -25 13 -41 c0 -21 -15 -38 -30 -54l-82 -84h96l-17 -38h-166c0 -55 1 -118 7 -172l90 -68c10 0 69 25 100 41zM336 435c0 30 -20 60 -41 83c-16 -10 -32 -21 -43 -34c-12 -15 -16 -35 -18 -52c-3 -28 -4 -57 -4 -86h32c16 0 36 19 49 33c16 17 25 36 25 56'], + 0x1D591: [682,24,336,100,315,'315 86l-151 -110l-64 79c8 73 11 162 11 257l-8 349l19 4l20 -72c47 32 100 63 153 89l11 -9c-14 -10 -30 -26 -39 -35c-17 -17 -26 -34 -32 -56c-8 -31 -11 -63 -11 -95l-2 -157c0 -76 2 -151 9 -218l26 -29c9 0 32 9 49 18'], + 0x1D592: [476,31,921,16,900,'900 78c-58 -33 -112 -70 -165 -108c-22 31 -47 61 -75 89c11 34 14 92 14 154l-3 131c-30 13 -75 30 -107 38l-55 -34c-3 -39 -4 -76 -4 -115l2 -102l57 -73l-120 -86l-59 81c8 43 10 99 10 157l-2 136c-25 11 -75 24 -105 31l-61 -34v-65c0 -51 2 -102 5 -152l55 -74 l-114 -83c-21 31 -43 63 -66 90c6 45 8 95 8 146l-4 152l-36 27l-46 -19l-13 13l135 98c23 -21 49 -40 78 -56c-2 -17 -4 -51 -4 -51c54 30 104 64 150 103c45 -21 90 -43 139 -56l-3 -40l147 95c47 -21 95 -39 144 -53c-10 -56 -14 -112 -14 -168c0 -42 2 -84 5 -126 l28 -38c4 -4 11 -9 17 -9c0 0 11 3 15 5l34 18'], + 0x1D593: [474,28,653,3,608,'608 88c-52 -32 -104 -74 -153 -114c-22 32 -52 64 -80 94c9 48 12 99 12 151c0 42 -2 84 -4 126c-31 15 -74 27 -108 36l-62 -31l1 -221l61 -67l-112 -90c-24 26 -49 53 -78 76c8 25 10 69 10 120c0 64 -4 139 -7 198l-24 22l-43 -21l-18 14l130 93 c26 -18 55 -38 82 -50c-1 -16 -1 -48 -1 -48c53 29 103 62 151 98c41 -22 96 -44 147 -63c-8 -70 -11 -140 -11 -211l1 -68l47 -52c10 3 35 15 51 24'], + 0x1D594: [482,34,609,107,515,'515 337c0 -39 -1 -77 -4 -116c-3 -44 -8 -89 -21 -132c-73 -48 -153 -89 -236 -123c-52 30 -101 62 -146 99c-1 20 -1 39 -1 59c0 80 8 159 22 238c71 38 140 78 207 120c54 -33 115 -56 178 -72zM405 272c0 27 -2 55 -4 82c-51 7 -99 24 -145 43 c-15 -25 -31 -79 -31 -159c0 -35 3 -71 7 -107c42 -33 90 -62 145 -76c19 71 28 144 28 217'], + 0x1D595: [558,208,603,-2,519,'519 310c0 -85 -7 -143 -30 -226c-55 -29 -105 -65 -152 -103c-29 22 -65 36 -104 41c0 -61 4 -122 9 -183l-113 -47l-17 6l6 234c-41 0 -78 -18 -108 -41l-12 17c36 33 83 77 119 89v262c-23 21 -45 51 -52 78c30 44 68 83 108 121l20 -6c-10 -13 -19 -27 -19 -42 c0 -14 7 -26 15 -37c12 -17 27 -32 44 -45v-42l143 96l135 -57c5 -26 8 -87 8 -115zM404 202c0 50 -4 100 -10 147c-33 14 -76 32 -111 42l-50 -35v-226c54 -8 109 -25 157 -53c11 42 14 80 14 125'], + 0x1D596: [485,212,595,87,515,'515 479c-30 -103 -30 -291 -30 -438c0 -71 4 -141 9 -212l-113 -41l-19 10c12 93 14 187 14 280l-188 -108l-98 103c-2 22 -3 44 -3 67c0 77 11 155 27 232l194 106c40 -16 82 -29 125 -36l70 43zM378 358c-55 4 -114 23 -144 39c-16 -29 -28 -92 -28 -187 c0 -20 1 -41 1 -62c21 -28 48 -61 76 -83c30 11 62 29 90 45c0 83 0 173 5 248'], + 0x1D597: [473,26,459,12,453,'453 394c-28 -26 -66 -51 -102 -74c-3 -2 -6 -4 -12 -4c-15 0 -23 6 -38 18l-46 39c-5 -3 -14 -10 -18 -14c-2 -18 -4 -73 -4 -123l2 -89c1 -11 8 -21 16 -29l62 -48l89 31l1 -21l-173 -106c-38 37 -81 70 -125 102c12 43 13 111 13 146c0 44 -1 74 -4 118 c-15 15 -29 29 -47 40l-44 -12l-11 14l139 91l85 -62v-31l107 91c16 -23 32 -49 52 -66c6 -5 14 -7 22 -7c9 0 25 5 36 9v-13'], + 0x1D598: [480,35,522,-24,482,'482 442l-143 -100c-18 0 -41 9 -60 17c-29 14 -56 31 -82 49c-5 -23 -9 -46 -9 -69c0 -33 9 -70 28 -100c51 17 104 40 155 63c22 -10 43 -22 62 -36c5 -33 9 -67 9 -101c0 -41 -5 -82 -19 -121c-67 -23 -134 -48 -196 -79c-25 21 -52 41 -83 56c-22 11 -45 20 -71 20 c-32 0 -61 -15 -86 -31l-11 16l126 99c17 4 34 6 52 6c39 0 116 -55 165 -93c4 23 5 50 5 74c0 27 -2 55 -5 83c-15 15 -33 30 -57 30c-16 0 -30 -5 -44 -11l-95 -47c-15 13 -29 33 -41 51c-4 6 -5 13 -5 20v139l187 103l66 -38c17 -10 37 -14 57 -14c24 0 60 17 84 33'], + 0x1D599: [654,27,393,47,407,'407 84l-178 -111c-32 32 -67 61 -106 87c6 74 6 200 6 299h-82v8l15 38h67v148l166 101l12 -14c-20 -16 -40 -34 -47 -42c-9 -9 -14 -118 -14 -193h107v-7l-16 -39h-92c0 -75 0 -149 5 -223c1 -7 3 -14 8 -19c17 -20 47 -39 70 -44c8 1 53 20 75 31'], + 0x1D59A: [473,35,588,9,604,'604 88l-159 -120l-64 105c-62 -25 -125 -73 -163 -108c-42 32 -105 60 -151 77c16 23 27 47 35 73c10 36 17 73 17 109c0 45 -9 88 -19 132c-11 12 -23 23 -42 28l-35 -19l-14 14l134 94c3 -3 52 -40 78 -59l4 -155c0 -31 -3 -62 -9 -93c-5 -21 -12 -43 -26 -62 c33 -7 79 -26 117 -42l67 36l-4 326l121 44l14 -9c-15 -100 -17 -200 -17 -301c0 -9 14 -54 37 -74c0 0 7 -5 11 -5c0 0 10 1 12 2l50 20'], + 0x1D59B: [546,28,604,56,507,'507 316c0 -36 -1 -72 -5 -108c-5 -44 -11 -88 -33 -128l-253 -108c-35 36 -76 67 -121 94c9 37 9 97 9 146c0 46 -3 96 -6 143c-19 21 -42 47 -42 67c0 34 59 87 101 124l20 -4c-11 -12 -18 -27 -18 -42c0 -21 36 -58 62 -84l-2 -29l146 89l139 -61c2 -33 3 -66 3 -99z M389 263c0 28 -1 57 -3 86c-31 16 -87 40 -98 40c-24 0 -51 -16 -69 -28v-209c0 -6 0 -14 2 -19c3 -7 9 -13 16 -19c23 -19 58 -38 92 -55c3 -1 10 -3 14 -3c3 0 14 2 17 11c22 64 29 129 29 196'], + 0x1D59C: [549,33,917,55,815,'815 409c-1 -75 -2 -150 -13 -225c-6 -44 -15 -89 -39 -128c-71 -27 -140 -55 -206 -89c-32 20 -65 39 -99 55c-25 12 -51 22 -79 29c10 35 12 111 12 186l-1 95c-28 20 -90 50 -97 50c-13 0 -43 -11 -67 -27c-2 -28 -3 -57 -3 -85c0 -52 3 -104 7 -157l51 -63l-109 -80 c-25 32 -56 71 -82 89c11 29 19 86 19 157c0 46 -3 93 -6 140l-37 39c-8 9 -11 22 -11 33c0 4 1 8 4 11c30 38 65 80 100 110l16 -2c-10 -14 -15 -31 -15 -47c0 -21 40 -57 68 -81v-37c38 22 92 59 137 89c46 -26 95 -48 146 -67v-34l168 100c43 -23 89 -43 136 -61z M697 336c-33 17 -96 42 -106 42c-11 0 -54 -18 -77 -33c-4 -41 -6 -83 -6 -124l2 -68c1 -12 6 -25 18 -32c34 -22 70 -41 110 -57c2 -1 8 -3 11 -3c0 0 10 4 15 17c14 34 21 69 25 104c7 51 8 102 8 154'], + 0x1D59D: [471,188,458,8,449,'449 388l-79 -75c-10 2 -20 4 -28 9c-22 14 -56 43 -61 48c-3 -2 -21 -18 -25 -24c-4 -24 -6 -49 -6 -85c0 -43 0 -97 3 -129c0 0 2 -6 3 -8c4 -7 23 -20 78 -56c12 0 56 18 87 32l2 -18l-179 -111l-91 73c-19 -3 -33 -15 -46 -27c-17 -15 -24 -35 -24 -55 c0 -13 6 -26 17 -36c35 -31 86 -40 136 -48l2 -11l-93 -55c-29 7 -58 17 -84 31c-18 10 -36 23 -46 40c-5 8 -7 17 -7 26c0 10 2 20 5 30c34 46 70 92 115 131c6 43 6 92 6 138c0 44 -1 88 -5 131c0 7 -6 16 -9 18l-46 24c-9 0 -30 -10 -39 -16l-16 12c46 33 107 77 142 94 l92 -58v-36l112 91c23 -31 52 -62 84 -80'], + 0x1D59E: [559,222,589,60,515,'515 289c0 -88 -5 -170 -12 -250c0 -40 -29 -73 -57 -105c-30 -34 -62 -68 -100 -98c-28 -22 -67 -43 -97 -58l-30 25c33 16 82 41 91 48c23 19 39 39 48 66c7 19 14 43 18 63c12 67 15 134 15 202c0 52 -3 104 -7 156c-29 18 -61 34 -96 43l-59 -25v-215 c0 -11 0 -24 8 -33l44 -55l-95 -92c-26 31 -68 78 -95 99c18 57 18 196 18 295c0 4 -2 10 -4 12c-20 19 -45 44 -45 65c0 14 9 27 18 39c17 22 56 60 85 88l18 -6c-10 -15 -17 -29 -17 -46c0 -13 12 -30 22 -42c15 -17 27 -27 45 -39v-41l140 93c45 -25 92 -47 141 -66'], + 0x1D59F: [472,215,461,-8,377,'377 74c0 -60 -12 -117 -31 -177l-156 -112c-55 0 -113 6 -153 40c-20 17 -35 38 -45 60c68 98 151 188 250 264c-33 23 -89 32 -133 35l-1 10l92 65c17 12 35 27 35 47c0 17 -17 40 -33 50c-18 11 -29 15 -51 15c-13 0 -25 -5 -37 -10c-18 -8 -34 -19 -49 -30l-16 15 c53 47 112 88 173 126c28 -10 54 -22 75 -40c22 -19 41 -40 41 -67c0 -12 -18 -29 -32 -42l-64 -59c42 -13 81 -30 119 -50c11 -46 16 -93 16 -140zM259 -4c0 33 -2 74 -7 124c-61 -50 -150 -123 -150 -166c0 -20 12 -36 29 -49c51 -38 99 -39 108 -39c6 13 20 44 20 130'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Latin/Regular/Main.js new file mode 100644 index 0000000..d541b99 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Latin/Regular/Main.js @@ -0,0 +1,296 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'LatinModernMathJax_Latin', + id: 'LATINMODERNLATIN', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0xA1: [500,216,278,86,192,'192 447c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM192 -165c0 -33 -27 -51 -53 -51s-53 18 -53 51l39 456c1 17 4 22 14 22c12 0 13 -8 14 -23l38 -444'], + 0xA2: [476,45,444,34,415,'415 119c0 -10 -30 -124 -156 -130v-19c0 -8 -6 -15 -15 -15c-8 0 -15 7 -15 15v20c-107 10 -195 105 -195 226c0 117 82 219 195 231v14c0 8 7 15 15 15c9 0 15 -7 15 -15v-13c74 -3 145 -41 145 -107c0 -30 -20 -47 -46 -47c-28 0 -46 20 -46 46c0 13 6 43 47 46 c-30 31 -80 36 -100 37v-409c38 0 101 13 130 105c2 6 4 10 13 10c3 0 13 0 13 -10zM229 18v403c-50 -11 -112 -62 -112 -203c0 -134 61 -187 112 -200'], + 0xA4: [492,-8,778,147,630,'624 15c-14 -14 -27 -1 -37 9l-75 74c-33 -27 -76 -44 -123 -44s-90 17 -124 44l-74 -74c-10 -10 -23 -23 -38 -9c-14 14 0 27 10 37l74 75c-27 33 -44 76 -44 123s17 90 44 124l-74 74c-10 10 -24 24 -10 38c15 14 28 1 38 -9l75 -75c33 27 76 44 123 44s89 -17 123 -44 l74 74c10 10 23 23 38 9c14 -14 0 -27 -10 -37l-74 -74c28 -34 44 -77 44 -124s-16 -90 -43 -123l74 -75c10 -10 23 -23 9 -37zM544 250c0 86 -69 156 -155 156s-156 -70 -156 -156s70 -156 156 -156s155 70 155 156'], + 0xA6: [750,250,278,119,159,'159 343c0 -9 -10 -15 -20 -15s-20 6 -20 15v374c0 14 0 33 20 33s20 -19 20 -33v-374zM159 -217c0 -14 0 -33 -20 -33s-20 19 -20 33v374c0 9 10 15 20 15s20 -6 20 -15v-374'], + 0xA9: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM643 342c0 166 -135 301 -301 301c-167 0 -302 -135 -302 -301c0 -167 135 -302 302 -302c166 0 301 135 301 302zM489 282c0 -64 -54 -141 -143 -141 c-103 0 -192 87 -192 201c0 112 89 200 192 200c52 0 81 -28 101 -47l28 40c4 7 8 7 8 7c6 0 6 -4 6 -13v-131c0 -11 0 -13 -8 -13s-8 2 -9 9c-11 81 -60 131 -120 131c-34 0 -141 -19 -141 -184c0 -164 108 -182 141 -182c60 0 119 45 124 123c0 6 0 9 6 9c7 0 7 -4 7 -9'], + 0xAA: [705,-333,449,35,414,'414 454c0 -57 -51 -66 -69 -66c-39 0 -62 29 -65 57c-16 -33 -55 -61 -110 -61c-53 0 -135 18 -135 74c0 31 21 67 84 91c53 21 112 23 155 25v26c0 63 -48 90 -89 90c-27 0 -68 -8 -91 -32c39 -1 43 -24 43 -32c0 -19 -15 -33 -39 -33c-22 0 -38 12 -38 33 c0 46 58 79 126 79c41 0 83 -11 116 -38c30 -26 30 -53 30 -83v-140c0 -3 3 -35 31 -35c9 0 30 4 30 45v39h21v-39zM399 344c0 -6 -7 -11 -15 -11h-319c-8 0 -15 5 -15 11c0 5 7 10 15 10h319c8 0 15 -5 15 -10zM274 490v70c-139 -4 -174 -63 -174 -101c0 -35 34 -60 76 -60 c37 0 98 24 98 91'], + 0xAB: [483,0,556,111,444,'277 10c0 -6 -4 -10 -10 -10h-2c-4 0 -8 3 -9 7c-30 85 -78 163 -142 228c-2 1 -3 4 -3 7c0 0 1 5 3 7c64 64 112 142 142 228c1 4 5 6 9 6h2c6 0 10 -4 10 -10v-2c-19 -81 -51 -158 -94 -229c43 -71 75 -149 94 -230v-2zM444 10c0 -6 -4 -10 -10 -10h-2c-4 0 -8 3 -9 7 c-30 85 -78 163 -142 228c-2 1 -3 4 -3 7c0 0 1 5 3 7c64 64 112 142 142 228c1 4 5 6 9 6h2c6 0 10 -4 10 -10v-2c-19 -81 -51 -158 -94 -229c43 -71 75 -149 94 -230v-2'], + 0xB6: [694,194,611,56,582,'582 674c0 -20 -19 -20 -33 -20h-50v-815c0 -14 0 -33 -20 -33s-20 19 -20 33v815h-70v-815c0 -14 0 -33 -20 -33s-20 19 -20 33v391c-128 5 -293 76 -293 233c0 126 110 231 250 231h243c14 0 33 0 33 -20'], + 0xB8: [5,200,444,89,356,'356 -133c0 -67 -133 -67 -241 -67h-26v26h13c75 0 170 0 170 41c0 32 -39 41 -76 41v97h52v-71c54 0 108 -20 108 -67'], + 0xBA: [705,-333,419,24,396,'396 542c0 -89 -85 -158 -187 -158c-98 0 -185 67 -185 158c0 87 81 163 186 163c102 0 186 -74 186 -163zM381 344c0 -6 -7 -11 -15 -11h-312c-9 0 -15 5 -15 11c0 5 6 10 15 10h312c8 0 15 -5 15 -10zM326 547c0 27 0 67 -22 97c-22 31 -58 46 -95 46 c-33 0 -73 -15 -96 -47c-20 -31 -20 -69 -20 -96c0 -25 0 -68 21 -99c23 -32 60 -46 96 -46c42 0 79 20 97 51c19 31 19 69 19 94'], + 0xBB: [483,0,556,112,445,'445 242c0 -3 -3 -7 -3 -7c-64 -65 -112 -143 -142 -228c-1 -4 -5 -7 -9 -7h-2c-6 0 -10 4 -10 10v2c18 81 50 159 94 230c-44 71 -76 148 -94 229v2c0 6 4 10 10 10h2c4 0 8 -2 9 -6c30 -86 78 -164 142 -228c1 -2 3 -7 3 -7zM278 242c0 -3 -3 -7 -3 -7 c-64 -65 -112 -143 -142 -228c-1 -4 -5 -7 -9 -7h-2c-6 0 -10 4 -10 10v2c18 81 50 159 94 230c-44 71 -76 148 -94 229v2c0 6 4 10 10 10h2c4 0 8 -2 9 -6c30 -86 78 -164 142 -228c1 -2 3 -7 3 -7'], + 0xBF: [500,205,472,56,415,'415 -72c0 -80 -87 -133 -193 -133c-134 0 -166 78 -166 135c0 62 33 90 51 106c103 88 103 196 103 237v16c0 18 0 24 12 24c3 0 12 0 13 -12v-24c0 -76 -7 -168 -70 -257c-15 -21 -26 -36 -26 -97c0 -49 0 -106 86 -106c49 0 123 17 153 68c-36 -4 -55 21 -55 45 c0 26 18 46 46 46c23 0 46 -14 46 -48zM275 447c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0xC0: [909,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM444 767l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0xC1: [909,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM512 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0xC2: [869,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM526 752l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xC3: [829,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM542 814c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0xC4: [831,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM319 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM529 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xC5: [892,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM438 804c0 41 -25 58 -63 58c-39 0 -63 -18 -63 -58c0 -41 25 -58 63 -58c39 0 63 18 63 58zM471 805c0 -49 -41 -89 -97 -89c-51 0 -95 38 -95 89c0 44 39 87 97 87c54 0 95 -41 95 -87'], + 0xC6: [683,0,903,32,874,'874 258l-42 -258h-493v31c66 0 77 0 77 45v237h-161l-75 -210c-5 -13 -5 -14 -5 -22c0 -25 24 -49 74 -50v-31l-115 3c-40 0 -80 -2 -102 -3v31c70 0 99 28 113 67l198 553c-13 0 -27 1 -40 1h-45v31h560l28 -225h-25c-16 136 -36 194 -178 194h-95 c-47 0 -49 -7 -49 -40v-268h85c94 0 103 33 103 117h25v-265h-25c0 84 -9 117 -103 117h-85v-242c0 -33 2 -40 49 -40h95c168 0 181 79 206 227h25zM416 344v260c0 16 0 43 -41 44l-109 -304h150'], + 0xC7: [705,200,722,56,665,'665 233c0 -111 -90 -244 -242 -254v-45c54 0 108 -20 108 -67c0 -67 -133 -67 -241 -67h-26v26h13c75 0 170 0 170 41c0 32 -39 41 -76 41v72c-172 17 -315 167 -315 362c0 204 161 363 348 363c96 0 147 -50 184 -86l50 74c8 12 12 12 16 12c11 0 11 -7 11 -24v-237 c0 -21 0 -24 -16 -24c-14 0 -14 3 -16 17c-20 146 -109 237 -218 237c-61 0 -256 -34 -256 -333c0 -298 196 -332 257 -332c109 0 216 82 224 225c1 10 1 16 12 16c13 0 13 -7 13 -17'], + 0xC8: [909,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM409 767l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0xC9: [909,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM477 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0xCA: [869,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM491 752l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xCB: [831,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM284 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM494 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xCC: [909,0,361,28,333,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM250 767l-14 -21l-170 94c-11 5 -20 15 -22 27 c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0xCD: [909,0,361,28,333,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM318 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21 l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0xCE: [869,0,361,28,333,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM332 752l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xCF: [831,0,361,28,335,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM125 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48 c0 22 18 47 49 47c27 0 48 -23 48 -47zM335 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xD0: [683,0,764,35,707,'707 336c0 -188 -138 -336 -306 -336h-366v31h24c77 0 79 11 79 47v249h-103v30h103v248c0 36 -2 47 -79 47h-24v31h366c171 0 306 -157 306 -347zM607 336c0 78 -9 164 -52 223c-51 71 -120 93 -182 93h-100c-47 0 -49 -7 -49 -40v-255h158v-30h-158v-256 c0 -33 2 -40 49 -40h101c101 0 158 58 178 85c36 49 55 109 55 220'], + 0xD1: [829,0,750,33,716,'716 652c-103 0 -103 -47 -103 -74v-552c0 -19 0 -26 -14 -26c-7 0 -8 1 -17 13l-408 600c-4 6 -5 7 -10 12v-520c0 -27 0 -74 103 -74v-31l-117 3l-117 -3v31c103 0 103 47 103 74v522c0 19 -1 20 -24 23c-15 1 -35 2 -50 2h-29v31h170c19 0 20 -1 29 -13l353 -519v427 c0 27 0 74 -103 74v31l117 -3l117 3v-31zM542 814c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0xD2: [909,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM458 767l-14 -21l-170 94 c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0xD3: [909,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM526 867c-2 -12 -11 -22 -22 -27l-170 -94 l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0xD4: [869,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM540 752l-12 -16l-140 66l-140 -66l-10 16 l151 117'], + 0xD5: [829,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM556 814c-51 -56 -70 -78 -108 -78 c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0xD6: [831,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM333 784c0 -23 -18 -48 -49 -48 c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM543 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xD8: [739,56,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-88 0 -147 33 -188 62l-68 -96l-20 14l8 11l60 89c-44 37 -124 132 -124 281c0 206 153 366 332 366c94 0 157 -43 181 -58c5 -5 7 -5 7 -5l68 97l21 -14l-69 -101c75 -70 125 -161 125 -285zM554 607c-19 20 -74 76 -166 76 c-70 0 -144 -36 -191 -111c-49 -78 -52 -177 -52 -233c0 -128 26 -193 61 -242zM632 339c0 64 -5 171 -62 247l-347 -510c43 -49 104 -76 166 -76c72 0 141 38 185 100c56 81 58 188 58 239'], + 0xD9: [909,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM467 767l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0xDA: [909,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM535 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0xDB: [869,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM549 752l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xDC: [831,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM342 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM552 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xDD: [909,0,750,11,738,'738 652c-32 0 -91 -4 -128 -65l-193 -314v-193c0 -39 3 -49 80 -49h23v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v195l-210 342c-16 26 -24 37 -92 37h-18v31l130 -3c39 0 112 0 148 3v-31c-45 0 -70 -4 -70 -25c0 -5 0 -7 7 -17l181 -295 l165 268c4 6 10 19 10 30c0 20 -16 39 -57 39v31l115 -3c27 0 67 1 98 3v-31zM512 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0xDE: [683,0,625,36,569,'569 365c0 -97 -86 -187 -208 -187h-139v-98c0 -24 0 -41 28 -46c21 -3 46 -3 75 -3v-31l-145 3l-144 -3v31c26 0 52 0 71 3c31 4 32 17 32 46v523c0 24 0 41 -28 46c-21 3 -46 3 -75 3v31l145 -3l144 3v-31c-26 0 -52 0 -71 -3c-31 -4 -32 -17 -32 -46v-50h129 c148 0 218 -103 218 -188zM469 366c0 20 -4 68 -36 110c-36 46 -77 46 -100 46h-111v-313h106c97 0 141 87 141 157'], + 0xDF: [705,11,500,28,471,'471 174c0 -112 -89 -185 -175 -185c-58 0 -95 36 -95 76c0 25 19 37 36 37c20 0 36 -14 36 -36c0 -24 -19 -34 -30 -36c18 -17 41 -19 50 -19c38 0 103 33 103 162c0 104 -40 226 -159 236c-9 1 -9 11 -9 11c0 10 7 10 16 11c89 8 124 69 124 133c0 88 -55 119 -96 119 c-20 0 -100 -11 -100 -125v-558c-18 3 -35 3 -46 3l-98 -3v31c67 0 78 0 78 45v324h-78v31h78v125c0 100 89 149 166 149c99 0 171 -67 171 -142c0 -58 -44 -119 -133 -144c129 -53 161 -173 161 -245'], + 0xE0: [698,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM312 528l-17 -18l-152 122c-9 7 -17 18 -17 30c0 18 18 36 36 36 c15 0 26 -11 30 -17'], + 0xE1: [698,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM374 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153 c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0xE2: [692,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM402 530l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE3: [651,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM417 636c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23 c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0xE4: [652,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM210 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48 c0 22 18 47 49 47c27 0 48 -23 48 -47zM388 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xE5: [705,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM313 617c0 41 -25 58 -63 58c-39 0 -63 -18 -63 -58 c0 -41 25 -58 63 -58c39 0 63 18 63 58zM346 618c0 -49 -41 -89 -97 -89c-51 0 -95 38 -95 89c0 44 39 87 97 87c54 0 95 -41 95 -87'], + 0xE6: [448,11,722,45,693,'693 119c0 -19 -42 -130 -155 -130c-30 0 -108 8 -167 89c-24 -49 -86 -89 -167 -89c-67 0 -159 24 -159 103c0 96 119 158 281 158v48c0 87 -55 128 -106 128c-36 0 -83 -14 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 67 71 113 151 113c64 0 124 -29 153 -77c51 61 107 77 151 77c109 0 167 -85 167 -196c0 -21 -3 -21 -25 -21h-273c0 -217 137 -217 147 -217c62 0 108 47 123 97c5 16 6 20 15 20c5 0 13 -2 13 -12zM627 252c-2 39 -7 174 -102 174c-36 0 -119 -28 -129 -174h231z M338 132c0 3 0 11 -3 22c-9 31 -9 51 -9 75c-162 -6 -204 -83 -204 -137c0 -47 40 -81 87 -81c72 0 129 57 129 121'], + 0xE7: [448,200,444,34,415,'415 119c0 -9 -29 -117 -145 -129v-56c54 0 108 -20 108 -67c0 -67 -133 -67 -241 -67h-26v26h13c75 0 170 0 170 41c0 32 -39 41 -76 41v83c-102 16 -184 108 -184 225c0 124 92 232 217 232c77 0 153 -39 153 -107c0 -30 -20 -47 -46 -47c-28 0 -46 20 -46 46 c0 13 6 43 47 46c-35 36 -98 37 -107 37c-53 0 -135 -42 -135 -205c0 -161 88 -204 141 -204c37 0 102 12 131 105c2 6 4 10 13 10c3 0 13 0 13 -10'], + 0xE8: [698,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM284 528l-17 -18l-152 122c-9 7 -17 18 -17 30c0 18 18 36 36 36c15 0 26 -11 30 -17'], + 0xE9: [698,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM346 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0xEA: [692,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM374 530l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xEB: [652,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM182 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM360 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xEC: [698,0,278,15,247,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM201 528l-17 -18l-152 122c-9 7 -17 18 -17 30c0 18 18 36 36 36c15 0 26 -11 30 -17'], + 0xED: [698,0,278,33,263,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM263 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0xEE: [692,0,278,-13,291,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM291 530l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xEF: [652,0,278,2,277,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM99 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM277 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48 c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xF1: [651,0,556,32,535,'535 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l141 11v-105c28 62 75 105 148 105c58 0 91 -20 105 -37 c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31zM445 636c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0xF2: [698,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM312 528l-17 -18l-152 122c-9 7 -17 18 -17 30c0 18 18 36 36 36c15 0 26 -11 30 -17'], + 0xF3: [698,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM374 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0xF4: [692,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM402 530l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xF5: [651,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM417 636c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0xF6: [652,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM210 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM388 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xF8: [534,102,500,35,464,'464 213c0 -124 -96 -224 -215 -224c-42 0 -79 14 -102 27l-68 -118l-19 12l7 10l62 108c-54 38 -94 105 -94 185c0 129 96 235 215 235c43 0 81 -15 104 -30l66 116l19 -12l-67 -116c38 -28 92 -95 92 -193zM338 392c-18 16 -49 34 -89 34c-36 0 -86 -17 -116 -69 c-27 -45 -29 -101 -29 -143c0 -56 5 -113 42 -155zM395 214c0 41 -2 114 -41 160l-191 -332c28 -24 62 -31 87 -31c39 0 87 18 116 64s29 106 29 139'], + 0xF9: [698,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM340 528l-17 -18l-152 122c-9 7 -17 18 -17 30 c0 18 18 36 36 36c15 0 26 -11 30 -17'], + 0xFA: [698,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM402 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18 l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0xFB: [692,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM430 530l-13 -14l-139 108l-139 -108l-13 14 l152 162'], + 0xFC: [652,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM238 605c0 -23 -18 -48 -49 -48 c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM416 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xFD: [698,205,528,19,508,'508 400c-16 0 -67 -1 -93 -64l-176 -427c-24 -57 -65 -114 -128 -114c-50 0 -92 36 -92 81c0 30 22 43 42 43c23 0 42 -16 42 -42c0 -16 -8 -38 -39 -42c19 -18 42 -18 47 -18c64 0 92 69 114 124l25 59l-150 365c-14 35 -33 35 -81 35v31c30 -2 70 -3 97 -3l109 3v-31 c-19 0 -56 0 -56 -26c0 -4 2 -8 6 -18l111 -269l101 246c5 12 6 14 6 24c0 25 -16 42 -47 43v31l87 -3c23 0 52 1 75 3v-31zM388 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0xFE: [694,194,556,28,521,'521 216c0 -129 -104 -227 -223 -227c-76 0 -118 54 -123 70v-9v-168c0 -45 11 -45 78 -45v-31l-113 3l-112 -3v31c67 0 78 0 78 45v714c0 49 -8 56 -78 56v31l144 11v-318c20 22 62 66 140 66c112 0 209 -99 209 -226zM438 216c0 113 -61 201 -134 201 c-51 0 -100 -29 -129 -80v-223c0 -20 0 -21 14 -42c27 -41 65 -61 105 -61c74 0 144 84 144 205'], + 0xFF: [652,205,528,19,508,'508 400c-16 0 -67 -1 -93 -64l-176 -427c-24 -57 -65 -114 -128 -114c-50 0 -92 36 -92 81c0 30 22 43 42 43c23 0 42 -16 42 -42c0 -16 -8 -38 -39 -42c19 -18 42 -18 47 -18c64 0 92 69 114 124l25 59l-150 365c-14 35 -33 35 -81 35v31c30 -2 70 -3 97 -3l109 3v-31 c-19 0 -56 0 -56 -26c0 -4 2 -8 6 -18l111 -269l101 246c5 12 6 14 6 24c0 25 -16 42 -47 43v31l87 -3c23 0 52 1 75 3v-31zM224 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM402 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48 c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0x100: [787,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM556 756h-361v31h361v-31'], + 0x101: [620,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM431 589h-361v31h361v-31'], + 0x102: [918,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM525 918c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22c2 -85 65 -134 128 -134c59 0 125 47 127 134h22'], + 0x103: [690,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM400 690c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22 c2 -85 65 -134 128 -134c59 0 125 47 127 134h22'], + 0x104: [716,211,750,32,717,'717 0c-38 2 -77 4 -116 4c-35 -24 -72 -59 -72 -99c0 -46 51 -69 87 -69c32 0 60 20 77 56c5 10 20 5 17 -7c-16 -57 -68 -96 -118 -96c-64 0 -111 44 -111 90c0 52 33 91 81 124c-39 0 -91 -1 -120 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131 c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31zM458 259l-113 325l-112 -325h225'], + 0x105: [448,211,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-11 0 -21 2 -29 6c-35 -24 -73 -55 -73 -95c0 -46 51 -69 87 -69c32 0 60 20 77 56c5 10 20 5 17 -7c-16 -57 -68 -96 -118 -96c-64 0 -111 44 -111 90c0 52 51 106 100 136c-16 16 -26 39 -28 61c-19 -47 -65 -87 -131 -87 c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200 c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129'], + 0x106: [909,22,722,56,665,'665 233c0 -116 -98 -255 -261 -255c-186 0 -348 157 -348 364c0 204 161 363 348 363c96 0 147 -50 184 -86l50 74c8 12 12 12 16 12c11 0 11 -7 11 -24v-237c0 -21 0 -24 -16 -24c-14 0 -14 3 -16 17c-20 146 -109 237 -218 237c-61 0 -256 -34 -256 -333 c0 -298 196 -332 257 -332c109 0 216 82 224 225c1 10 1 16 12 16c13 0 13 -7 13 -17zM534 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x107: [698,11,444,34,415,'415 119c0 -10 -32 -130 -166 -130c-116 0 -215 99 -215 227c0 124 92 232 217 232c77 0 153 -39 153 -107c0 -30 -20 -47 -46 -47c-28 0 -46 20 -46 46c0 13 6 43 47 46c-35 36 -98 37 -107 37c-53 0 -135 -42 -135 -205c0 -161 88 -204 141 -204c37 0 102 12 131 105 c2 6 4 10 13 10c3 0 13 0 13 -10zM368 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0x10C: [869,22,722,56,665,'665 233c0 -116 -98 -255 -261 -255c-186 0 -348 157 -348 364c0 204 161 363 348 363c96 0 147 -50 184 -86l50 74c8 12 12 12 16 12c11 0 11 -7 11 -24v-237c0 -21 0 -24 -16 -24c-14 0 -14 3 -16 17c-20 146 -109 237 -218 237c-61 0 -256 -34 -256 -333 c0 -298 196 -332 257 -332c109 0 216 82 224 225c1 10 1 16 12 16c13 0 13 -7 13 -17zM548 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0x10D: [692,11,444,34,415,'415 119c0 -10 -32 -130 -166 -130c-116 0 -215 99 -215 227c0 124 92 232 217 232c77 0 153 -39 153 -107c0 -30 -20 -47 -46 -47c-28 0 -46 20 -46 46c0 13 6 43 47 46c-35 36 -98 37 -107 37c-53 0 -135 -42 -135 -205c0 -161 88 -204 141 -204c37 0 102 12 131 105 c2 6 4 10 13 10c3 0 13 0 13 -10zM396 678l-152 -162l-152 162l13 14l139 -108l139 108'], + 0x10E: [869,0,764,35,707,'707 336c0 -188 -138 -336 -306 -336h-366v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h366c171 0 306 -157 306 -347zM607 336c0 78 -9 164 -52 223c-51 71 -120 93 -182 93h-100c-47 0 -49 -7 -49 -40v-541c0 -33 2 -40 49 -40h101c101 0 158 58 178 85 c36 49 55 109 55 220zM474 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0x10F: [694,11,556,34,574,'527 0l-147 -11v66c-25 -32 -70 -66 -134 -66c-114 0 -212 99 -212 226c0 129 105 227 223 227c54 0 97 -26 126 -62v216c0 49 -8 56 -78 56v31l144 11v-607c0 -49 8 -56 78 -56v-31zM380 118v205c0 18 0 20 -11 37c-31 45 -73 60 -108 60c-54 0 -92 -33 -113 -64 c-29 -45 -31 -105 -31 -142c0 -41 3 -98 29 -139c24 -38 60 -64 105 -64c43 0 88 22 118 70c11 17 11 19 11 37zM574 615c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40 c30 0 48 -31 48 -79'], + 0x110: [683,0,764,35,707,'707 336c0 -188 -138 -336 -306 -336h-366v31h24c77 0 79 11 79 47v249h-103v30h103v248c0 36 -2 47 -79 47h-24v31h366c171 0 306 -157 306 -347zM607 336c0 78 -9 164 -52 223c-51 71 -120 93 -182 93h-100c-47 0 -49 -7 -49 -40v-255h158v-30h-158v-256 c0 -33 2 -40 49 -40h101c101 0 158 58 178 85c36 49 55 109 55 220'], + 0x112: [787,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM521 756h-361v31h361v-31'], + 0x113: [620,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM403 589h-361v31h361v-31'], + 0x116: [864,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM393 811c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x117: [657,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM275 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x118: [680,211,681,33,652,'652 258l-42 -258h-115c-39 -28 -66 -55 -66 -95c0 -46 51 -69 87 -69c32 0 60 20 77 56c5 10 20 5 17 -7c-16 -57 -68 -96 -118 -96c-64 0 -111 44 -111 90c0 52 32 94 77 121h-425v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25 c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133c172 0 195 73 220 227h25'], + 0x119: [448,211,444,28,415,'415 119c0 -16 -33 -101 -120 -124c-38 -21 -76 -50 -76 -90c0 -46 51 -69 87 -69c32 0 60 20 77 56c5 10 20 5 17 -7c-16 -57 -68 -96 -118 -96c-64 0 -111 44 -111 90c0 43 31 80 66 110c-111 6 -209 101 -209 231c0 125 92 228 208 228c125 0 179 -97 179 -196 c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237'], + 0x11A: [869,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM491 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0x11B: [692,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM374 678l-152 -162l-152 162l13 14l139 -108l139 108'], + 0x11E: [918,22,785,56,735,'735 242c-65 0 -69 -5 -69 -44v-174c0 -15 0 -23 -9 -23c-11 0 -51 40 -64 62c-34 -59 -114 -85 -187 -85c-190 0 -350 159 -350 364s162 363 348 363c99 0 153 -54 185 -86l50 74c8 12 12 12 16 12c11 0 11 -7 11 -24v-237c0 -21 0 -24 -16 -24c-14 0 -14 3 -16 17 c-20 147 -111 237 -218 237c-60 0 -257 -33 -257 -332c0 -298 198 -333 263 -333c28 0 155 9 155 121v64c0 37 -3 48 -93 48h-32v31c36 -3 121 -3 161 -3l122 3v-31zM542 918c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22c2 -85 65 -134 128 -134 c59 0 125 47 127 134h22'], + 0x11F: [690,206,500,28,485,'485 404c0 -23 -19 -30 -29 -30c-16 0 -29 12 -29 29c0 12 5 23 16 27c-3 1 -10 1 -10 1c-18 0 -54 -5 -90 -39c25 -23 41 -60 41 -97c0 -77 -69 -146 -162 -146c-19 0 -60 3 -99 31c-17 -20 -17 -43 -17 -47c0 -32 21 -63 53 -67c7 -1 50 -1 75 -1c61 0 119 0 172 -28 c51 -28 65 -79 65 -114c0 -78 -104 -129 -222 -129c-122 0 -221 55 -221 127c0 40 32 83 92 100c-31 20 -44 58 -44 89c0 35 18 68 31 83c-25 21 -47 59 -47 103c0 77 69 146 162 146c22 0 64 -3 106 -36c42 41 86 47 106 47c39 0 51 -32 51 -49zM309 296 c0 23 0 123 -87 123c-40 0 -63 -28 -71 -40c-15 -25 -16 -57 -16 -84c0 -23 0 -123 87 -123c40 0 63 28 71 40c15 25 16 57 16 84zM419 -79c0 86 -112 86 -198 86h-59c-44 -3 -82 -40 -82 -86c0 -53 69 -104 170 -104c98 0 169 50 169 104zM365 690 c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22c2 -85 65 -134 128 -134c59 0 125 47 127 134h22'], + 0x122: [705,290,785,56,735,'735 242c-65 0 -69 -5 -69 -44v-174c0 -15 0 -23 -9 -23c-11 0 -51 40 -64 62c-34 -59 -114 -85 -187 -85c-190 0 -350 159 -350 364s162 363 348 363c99 0 153 -54 185 -86l50 74c8 12 12 12 16 12c11 0 11 -7 11 -24v-237c0 -21 0 -24 -16 -24c-14 0 -14 3 -16 17 c-20 147 -111 237 -218 237c-60 0 -257 -33 -257 -332c0 -298 198 -333 263 -333c28 0 155 9 155 121v64c0 37 -3 48 -93 48h-32v31c36 -3 121 -3 161 -3l122 3v-31zM436 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141 c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x123: [738,206,500,28,485,'259 554c0 -20 -14 -40 -40 -40c-30 0 -48 31 -48 79c0 86 59 145 68 145c4 0 8 -3 8 -8c0 -3 -1 -4 -5 -8c-33 -36 -54 -81 -53 -141c8 8 19 12 30 12c27 0 40 -20 40 -39zM485 404c0 -23 -19 -30 -29 -30c-16 0 -29 12 -29 29c0 12 5 23 16 27c-3 1 -10 1 -10 1 c-18 0 -54 -5 -90 -39c25 -23 41 -60 41 -97c0 -77 -69 -146 -162 -146c-19 0 -60 3 -99 31c-17 -20 -17 -43 -17 -47c0 -32 21 -63 53 -67c7 -1 50 -1 75 -1c61 0 119 0 172 -28c51 -28 65 -79 65 -114c0 -78 -104 -129 -222 -129c-122 0 -221 55 -221 127 c0 40 32 83 92 100c-31 20 -44 58 -44 89c0 35 18 68 31 83c-25 21 -47 59 -47 103c0 77 69 146 162 146c22 0 64 -3 106 -36c42 41 86 47 106 47c39 0 51 -32 51 -49zM309 296c0 23 0 123 -87 123c-40 0 -63 -28 -71 -40c-15 -25 -16 -57 -16 -84c0 -23 0 -123 87 -123 c40 0 63 28 71 40c15 25 16 57 16 84zM419 -79c0 86 -112 86 -198 86h-59c-44 -3 -82 -40 -82 -86c0 -53 69 -104 170 -104c98 0 169 50 169 104'], + 0x128: [829,0,361,15,348,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM348 814c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23 c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x129: [651,0,278,-27,306,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM306 636c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78 c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x12A: [787,0,361,1,362,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM362 756h-361v31h361v-31'], + 0x12B: [620,0,278,-41,320,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM320 589h-361v31h361v-31'], + 0x12E: [683,211,361,28,333,'333 -115c-16 -57 -68 -96 -118 -96c-64 0 -111 44 -111 90s39 93 82 124h-6c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31 c-23 2 -65 3 -102 3c-21 -11 -40 -26 -56 -44c-14 -16 -23 -34 -23 -54c0 -46 51 -69 87 -69c32 0 60 20 77 56c5 10 20 5 17 -7'], + 0x12F: [669,211,278,24,253,'181 616c0 -32 -25 -53 -53 -53c-31 0 -53 26 -53 53c0 26 22 53 53 53c28 0 53 -21 53 -53zM253 -115c-16 -57 -68 -96 -118 -96c-64 0 -111 44 -111 90c0 45 39 92 81 123l-72 -2v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31 l-95 3c-21 -11 -40 -26 -56 -44c-14 -16 -24 -34 -24 -54c0 -46 51 -69 87 -69c32 0 60 20 77 56c5 10 20 5 17 -7'], + 0x130: [864,0,361,28,333,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM234 811c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53 c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x132: [683,22,839,28,790,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM790 652c-63 0 -77 0 -77 -41v-444c0 -34 0 -36 -1 -44 c-11 -75 -84 -145 -186 -145c-89 0 -160 60 -160 134c0 44 34 58 56 58c28 0 56 -20 56 -56c0 -26 -12 -56 -64 -56c36 -58 104 -58 110 -58c53 0 103 56 103 148v456c0 35 0 48 -98 48h-36v31c38 -3 126 -3 168 -3l129 3v-31'], + 0x133: [657,205,556,33,461,'182 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53zM460 -50c0 -91 -62 -155 -137 -155c-57 0 -113 28 -113 80c0 26 18 46 46 46s46 -20 46 -46c0 -27 -20 -41 -35 -45c26 -13 49 -13 54 -13c64 0 73 86 73 131v396 c0 49 -9 56 -86 56v31l152 11v-492zM247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM461 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x136: [683,290,778,33,736,'736 0l-115 3c-38 0 -108 0 -143 -3v31c20 0 59 0 59 30c0 12 -9 25 -15 34l-181 268l-116 -110v-175c0 -36 2 -47 79 -47h24v-31c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24 c-77 0 -79 -11 -79 -47v-318l313 299c8 7 18 17 18 33c0 9 -6 32 -46 33v31c34 -3 91 -3 127 -3c27 0 59 0 85 3v-31c-81 -1 -134 -52 -142 -60l-180 -173l231 -340c30 -44 51 -48 105 -48v-31zM433 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8 c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x137: [694,290,528,28,511,'511 0c-29 2 -58 3 -87 3l-108 -3v31c19 0 36 4 36 23c0 18 -42 74 -119 180l-64 -55v-103c0 -45 11 -45 78 -45v-31l-110 3l-109 -3v31c67 0 78 0 78 45v520c0 49 -8 56 -78 56v31l144 11v-480l141 122c8 7 22 19 22 39c0 13 -10 24 -29 25v31c14 -1 76 -3 112 -3 c28 0 41 0 70 3v-31c-21 -1 -63 -3 -126 -54c-10 -8 -81 -68 -81 -72c0 -3 5 -9 6 -11l127 -179c38 -53 60 -53 97 -53v-31zM308 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40 c30 0 48 -31 48 -79'], + 0x139: [909,0,625,33,582,'582 258l-28 -258h-521v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 113 -3 152 -3c41 0 132 0 168 3v-31h-33c-95 0 -95 -14 -95 -48v-533c0 -33 2 -40 49 -40h82c176 0 190 125 201 227h25zM322 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130 c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x13A: [920,0,278,33,276,'255 0l-111 3l-111 -3v31c67 0 78 0 78 45v520c0 49 -8 56 -78 56v31l144 11v-618c0 -45 11 -45 78 -45v-31zM276 878c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x13B: [683,290,625,33,582,'582 258l-28 -258h-521v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 113 -3 152 -3c41 0 132 0 168 3v-31h-33c-95 0 -95 -14 -95 -48v-533c0 -33 2 -40 49 -40h82c176 0 190 125 201 227h25zM357 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8 c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x13C: [694,290,278,33,255,'255 0l-111 3l-111 -3v31c67 0 78 0 78 45v520c0 49 -8 56 -78 56v31l144 11v-618c0 -45 11 -45 78 -45v-31zM183 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40 c30 0 48 -31 48 -79'], + 0x13D: [683,0,625,33,582,'582 258l-28 -258h-521v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 113 -3 152 -3c41 0 132 0 168 3v-31h-33c-95 0 -95 -14 -95 -48v-533c0 -33 2 -40 49 -40h82c176 0 190 125 201 227h25zM497 604c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8 c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x13E: [694,0,278,33,302,'255 0l-111 3l-111 -3v31c67 0 78 0 78 45v520c0 49 -8 56 -78 56v31l144 11v-618c0 -45 11 -45 78 -45v-31zM302 615c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40 c30 0 48 -31 48 -79'], + 0x141: [683,0,625,33,582,'582 258l-28 -258h-521v31h24c77 0 79 11 79 47v221l-67 -54l-22 25l89 71v264c0 36 -2 47 -79 47h-24v31c35 -3 113 -3 152 -3c41 0 132 0 168 3v-31h-33c-95 0 -95 -14 -95 -48v-193l159 126l20 -26l-179 -142v-298c0 -33 2 -40 49 -40h82c176 0 190 125 201 227h25'], + 0x142: [694,0,336,48,286,'286 419l-81 -61v-282c0 -45 11 -45 78 -45v-31l-111 3l-111 -3v31c67 0 78 0 78 45v234l-75 -56l-16 20l91 68v254c0 49 -8 56 -78 56v31l144 11v-302l65 48'], + 0x143: [909,0,750,33,716,'716 652c-103 0 -103 -47 -103 -74v-552c0 -19 0 -26 -14 -26c-7 0 -8 1 -17 13l-408 600c-4 6 -5 7 -10 12v-520c0 -27 0 -74 103 -74v-31l-117 3l-117 -3v31c103 0 103 47 103 74v522c0 19 -1 20 -24 23c-15 1 -35 2 -50 2h-29v31h170c19 0 20 -1 29 -13l353 -519v427 c0 27 0 74 -103 74v31l117 -3l117 3v-31zM512 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x144: [698,0,556,32,535,'535 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l141 11v-105c28 62 75 105 148 105c58 0 91 -20 105 -37 c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31zM402 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0x145: [683,290,750,33,716,'716 652c-103 0 -103 -47 -103 -74v-552c0 -19 0 -26 -14 -26c-7 0 -8 1 -17 13l-408 600c-4 6 -5 7 -10 12v-520c0 -27 0 -74 103 -74v-31l-117 3l-117 -3v31c103 0 103 47 103 74v522c0 19 -1 20 -24 23c-15 1 -35 2 -50 2h-29v31h170c19 0 20 -1 29 -13l353 -519v427 c0 27 0 74 -103 74v31l117 -3l117 3v-31zM419 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x146: [442,290,556,32,535,'535 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l141 11v-105c28 62 75 105 148 105c58 0 91 -20 105 -37 c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31zM322 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x147: [869,0,750,33,716,'716 652c-103 0 -103 -47 -103 -74v-552c0 -19 0 -26 -14 -26c-7 0 -8 1 -17 13l-408 600c-4 6 -5 7 -10 12v-520c0 -27 0 -74 103 -74v-31l-117 3l-117 -3v31c103 0 103 47 103 74v522c0 19 -1 20 -24 23c-15 1 -35 2 -50 2h-29v31h170c19 0 20 -1 29 -13l353 -519v427 c0 27 0 74 -103 74v31l117 -3l117 3v-31zM526 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0x148: [692,0,556,32,535,'535 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l141 11v-105c28 62 75 105 148 105c58 0 91 -20 105 -37 c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31zM430 678l-152 -162l-152 162l13 14l139 -108l139 108'], + 0x14A: [705,22,750,28,713,'713 342c0 -179 -58 -364 -213 -364c-25 0 -46 21 -46 46s21 46 46 46s46 -21 46 -46v-7c65 46 65 196 65 325c0 165 -55 337 -198 337c-80 0 -150 -43 -188 -108v-493c0 -36 3 -47 82 -47h26v-31c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527 c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c15 0 29 1 44 3v-68c45 55 112 90 188 90c178 0 300 -173 300 -363'], + 0x14B: [442,216,506,32,457,'457 69c0 -138 -33 -285 -151 -285c-20 0 -35 15 -35 35c0 19 15 35 35 35c18 0 33 -15 34 -33c48 35 48 150 48 248v240c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31 l141 11v-105c28 62 75 105 148 105c58 0 91 -20 105 -37c31 -36 31 -67 31 -153v-183'], + 0x14C: [787,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM570 756h-361v31h361v-31'], + 0x14D: [620,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM431 589h-361v31h361v-31'], + 0x150: [932,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM392 898c0 -10 -3 -14 -12 -26l-92 -126 c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34zM559 898c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34'], + 0x151: [697,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM253 663c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34zM420 663c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34'], + 0x152: [705,22,1014,70,985,'985 258l-42 -258h-387c-16 0 -29 0 -77 -11c-37 -8 -54 -11 -79 -11c-172 0 -330 152 -330 361c0 211 158 366 330 366c11 0 28 0 70 -10c55 -12 69 -12 86 -12h373l28 -225h-25c-16 135 -38 194 -181 194h-112c-47 0 -49 -7 -49 -40v-242h108c100 0 114 31 114 117h25 v-265h-25c0 86 -14 117 -114 117h-108v-268c0 -33 2 -40 49 -40h110c171 0 186 78 211 227h25zM514 341c0 108 0 193 -5 237c-6 57 -17 105 -105 105c-126 0 -234 -139 -234 -329c0 -198 105 -354 234 -354c84 0 99 43 106 109c4 46 4 105 4 232'], + 0x153: [448,11,778,28,749,'749 119c0 -19 -42 -130 -155 -130c-61 0 -133 31 -177 104c-33 -56 -96 -104 -176 -104c-115 0 -213 100 -213 230s99 229 213 229c76 0 139 -44 175 -101c40 67 103 101 166 101c109 0 167 -85 167 -196c0 -21 -3 -21 -25 -21h-273c0 -217 137 -217 147 -217 c62 0 108 47 123 97c5 16 6 20 15 20c5 0 13 -2 13 -12zM683 252c-2 39 -7 174 -102 174c-36 0 -119 -28 -129 -174h231zM382 223c0 195 -122 203 -140 203c-25 0 -137 -10 -137 -203c0 -203 115 -212 137 -212c32 0 140 21 140 212'], + 0x154: [909,22,736,35,732,'732 88c0 -28 -17 -110 -95 -110c-30 0 -85 6 -126 42c-41 38 -41 78 -41 143c0 67 0 98 -38 134c-35 34 -77 34 -93 34h-115v-253c0 -36 2 -47 79 -47h24v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h314 c147 0 261 -84 261 -180c0 -78 -78 -139 -175 -163c55 -19 104 -52 122 -116l13 -80c14 -93 22 -144 71 -144c25 0 60 18 66 89c1 7 1 16 12 16c13 0 13 -11 13 -17zM507 503c0 145 -112 149 -202 149c-20 0 -49 0 -59 -2c-22 -3 -22 -15 -22 -38v-259h111 c148 0 172 81 172 150zM505 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x155: [698,0,392,28,364,'364 381c0 -32 -25 -44 -43 -44c-22 0 -43 15 -43 43c0 26 20 38 23 39c-2 1 -4 1 -11 1c-76 0 -118 -89 -118 -188v-154c0 -36 2 -47 76 -47h21v-31c-40 3 -87 3 -127 3l-114 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l139 11v-110c14 43 50 110 123 110 c43 0 74 -29 74 -61zM320 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0x156: [683,290,736,35,732,'732 88c0 -28 -17 -110 -95 -110c-30 0 -85 6 -126 42c-41 38 -41 78 -41 143c0 67 0 98 -38 134c-35 34 -77 34 -93 34h-115v-253c0 -36 2 -47 79 -47h24v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h314 c147 0 261 -84 261 -180c0 -78 -78 -139 -175 -163c55 -19 104 -52 122 -116l13 -80c14 -93 22 -144 71 -144c25 0 60 18 66 89c1 7 1 16 12 16c13 0 13 -11 13 -17zM507 503c0 145 -112 149 -202 149c-20 0 -49 0 -59 -2c-22 -3 -22 -15 -22 -38v-259h111 c148 0 172 81 172 150zM412 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x157: [442,290,392,28,364,'364 381c0 -32 -25 -44 -43 -44c-22 0 -43 15 -43 43c0 26 20 38 23 39c-2 1 -4 1 -11 1c-76 0 -118 -89 -118 -188v-154c0 -36 2 -47 76 -47h21v-31c-40 3 -87 3 -127 3l-114 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l139 11v-110c14 43 50 110 123 110 c43 0 74 -29 74 -61zM183 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x158: [869,22,736,35,732,'732 88c0 -28 -17 -110 -95 -110c-30 0 -85 6 -126 42c-41 38 -41 78 -41 143c0 67 0 98 -38 134c-35 34 -77 34 -93 34h-115v-253c0 -36 2 -47 79 -47h24v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h314 c147 0 261 -84 261 -180c0 -78 -78 -139 -175 -163c55 -19 104 -52 122 -116l13 -80c14 -93 22 -144 71 -144c25 0 60 18 66 89c1 7 1 16 12 16c13 0 13 -11 13 -17zM507 503c0 145 -112 149 -202 149c-20 0 -49 0 -59 -2c-22 -3 -22 -15 -22 -38v-259h111 c148 0 172 81 172 150zM519 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0x159: [692,0,392,28,364,'364 381c0 -32 -25 -44 -43 -44c-22 0 -43 15 -43 43c0 26 20 38 23 39c-2 1 -4 1 -11 1c-76 0 -118 -89 -118 -188v-154c0 -36 2 -47 76 -47h21v-31c-40 3 -87 3 -127 3l-114 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l139 11v-110c14 43 50 110 123 110 c43 0 74 -29 74 -61zM348 678l-152 -162l-152 162l13 14l139 -108l139 108'], + 0x15A: [909,22,556,56,499,'499 186c0 -110 -80 -208 -197 -208c-89 0 -153 36 -184 70c-33 -53 -36 -57 -36 -57c-7 -11 -8 -13 -15 -13c-11 0 -11 7 -11 24v200c0 18 0 25 13 25c3 0 11 0 12 -10c1 -36 4 -100 62 -154c53 -49 129 -54 158 -54c84 0 134 72 134 143c0 33 -10 66 -31 92 c-28 37 -58 44 -85 51c-70 17 -121 29 -132 33c-78 27 -131 100 -131 183c0 106 84 194 195 194c89 0 130 -41 160 -70l35 57c7 12 8 13 15 13c11 0 11 -7 11 -24v-201c0 -19 0 -24 -13 -24c-11 0 -11 6 -12 12c-6 45 -28 209 -195 209c-78 0 -132 -61 -132 -131 c0 -58 39 -112 101 -127l128 -31c84 -20 150 -102 150 -202zM415 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x15B: [698,11,394,33,360,'360 128c0 -72 -46 -139 -161 -139c-21 0 -66 1 -110 43c-18 -19 -18 -21 -20 -23c-19 -19 -20 -20 -25 -20c-11 0 -11 7 -11 24v132c0 18 0 25 13 25c10 0 11 -4 14 -17c19 -85 55 -142 139 -142c78 0 113 40 113 91c0 72 -82 88 -104 92c-72 14 -100 20 -132 46 c-27 22 -43 50 -43 85c0 56 38 123 160 123c15 0 56 0 94 -28c4 3 14 12 17 16c13 12 15 12 20 12c11 0 11 -7 11 -24v-101c0 -19 0 -24 -13 -24c0 0 -11 0 -12 9c-2 31 -7 121 -117 121c-86 0 -112 -41 -112 -76c0 -58 67 -71 123 -82c42 -8 81 -16 114 -48 c12 -12 42 -42 42 -95zM321 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0x15E: [705,200,556,56,499,'499 186c0 -109 -79 -207 -195 -208v-44c53 0 108 -20 108 -67c0 -67 -134 -67 -242 -67h-26v26h13c75 0 171 0 171 41c0 32 -40 41 -76 41v74c-63 10 -109 39 -134 66c-33 -53 -36 -57 -36 -57c-7 -11 -8 -13 -15 -13c-11 0 -11 7 -11 24v200c0 18 0 25 13 25 c3 0 11 0 12 -10c1 -36 4 -100 62 -154c53 -49 129 -54 158 -54c84 0 134 72 134 143c0 33 -10 66 -31 92c-28 37 -58 44 -85 51c-70 17 -121 29 -132 33c-78 27 -131 100 -131 183c0 106 84 194 195 194c89 0 130 -41 160 -70l35 57c7 12 8 13 15 13c11 0 11 -7 11 -24 v-201c0 -19 0 -24 -13 -24c-11 0 -11 6 -12 12c-6 45 -28 209 -195 209c-78 0 -132 -61 -132 -131c0 -58 39 -112 101 -127l128 -31c84 -20 150 -102 150 -202'], + 0x15F: [448,200,394,33,360,'360 128c0 -67 -39 -129 -137 -138v-56c54 0 108 -20 108 -67c0 -67 -133 -67 -241 -67h-26v26h13c75 0 170 0 170 41c0 32 -39 41 -76 41v83c-23 3 -53 13 -82 41c-18 -19 -18 -21 -20 -23c-19 -19 -20 -20 -25 -20c-11 0 -11 7 -11 24v132c0 18 0 25 13 25 c10 0 11 -4 14 -17c19 -85 55 -142 139 -142c78 0 113 40 113 91c0 72 -82 88 -104 92c-72 14 -100 20 -132 46c-27 22 -43 50 -43 85c0 56 38 123 160 123c15 0 56 0 94 -28c4 3 14 12 17 16c13 12 15 12 20 12c11 0 11 -7 11 -24v-101c0 -19 0 -24 -13 -24 c0 0 -11 0 -12 9c-2 31 -7 121 -117 121c-86 0 -112 -41 -112 -76c0 -58 67 -71 123 -82c42 -8 81 -16 114 -48c12 -12 42 -42 42 -95'], + 0x160: [869,22,556,56,499,'499 186c0 -110 -80 -208 -197 -208c-89 0 -153 36 -184 70c-33 -53 -36 -57 -36 -57c-7 -11 -8 -13 -15 -13c-11 0 -11 7 -11 24v200c0 18 0 25 13 25c3 0 11 0 12 -10c1 -36 4 -100 62 -154c53 -49 129 -54 158 -54c84 0 134 72 134 143c0 33 -10 66 -31 92 c-28 37 -58 44 -85 51c-70 17 -121 29 -132 33c-78 27 -131 100 -131 183c0 106 84 194 195 194c89 0 130 -41 160 -70l35 57c7 12 8 13 15 13c11 0 11 -7 11 -24v-201c0 -19 0 -24 -13 -24c-11 0 -11 6 -12 12c-6 45 -28 209 -195 209c-78 0 -132 -61 -132 -131 c0 -58 39 -112 101 -127l128 -31c84 -20 150 -102 150 -202zM429 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0x161: [692,11,394,33,360,'360 128c0 -72 -46 -139 -161 -139c-21 0 -66 1 -110 43c-18 -19 -18 -21 -20 -23c-19 -19 -20 -20 -25 -20c-11 0 -11 7 -11 24v132c0 18 0 25 13 25c10 0 11 -4 14 -17c19 -85 55 -142 139 -142c78 0 113 40 113 91c0 72 -82 88 -104 92c-72 14 -100 20 -132 46 c-27 22 -43 50 -43 85c0 56 38 123 160 123c15 0 56 0 94 -28c4 3 14 12 17 16c13 12 15 12 20 12c11 0 11 -7 11 -24v-101c0 -19 0 -24 -13 -24c0 0 -11 0 -12 9c-2 31 -7 121 -117 121c-86 0 -112 -41 -112 -76c0 -58 67 -71 123 -82c42 -8 81 -16 114 -48 c12 -12 42 -42 42 -95zM349 678l-152 -162l-152 162l13 14l139 -108l139 108'], + 0x162: [677,200,722,36,685,'685 452h-25c-14 161 -29 194 -180 194c-19 0 -46 0 -57 -2c-18 -4 -18 -18 -18 -38v-527c0 -34 0 -48 105 -48h40v-31c-34 3 -112 3 -163 3v-69c54 0 108 -20 108 -67c0 -67 -133 -67 -241 -67h-26v26h13c75 0 170 0 170 41c0 32 -39 41 -76 41v95c-52 0 -129 0 -164 -3 v31h40c105 0 105 14 105 48v527c0 23 0 34 -21 38c-10 2 -36 2 -54 2c-151 0 -166 -33 -180 -194h-25l19 225h611'], + 0x163: [615,200,389,19,347,'347 -133c0 -67 -133 -67 -241 -67h-26v26h13c75 0 170 0 170 41c0 32 -39 41 -76 41v88c-39 11 -83 44 -83 128v276h-85v22c98 4 128 111 129 193h25v-184h143v-31h-143v-278c0 -17 0 -108 67 -108c37 0 67 38 67 112v55h25v-57c0 -62 -26 -131 -93 -135v-55 c54 0 108 -20 108 -67'], + 0x164: [869,0,722,36,685,'685 452h-25c-14 161 -29 194 -180 194c-19 0 -46 0 -57 -2c-18 -4 -18 -18 -18 -38v-527c0 -34 0 -48 105 -48h40v-31c-41 3 -144 3 -190 3s-148 0 -189 -3v31h40c105 0 105 14 105 48v527c0 23 0 34 -21 38c-10 2 -36 2 -54 2c-151 0 -166 -33 -180 -194h-25l19 225 h611zM512 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0x165: [692,11,389,19,332,'332 124c0 -64 -28 -135 -99 -135c-36 0 -129 12 -129 135v276h-85v22c98 4 128 111 129 193h25v-184h143v-31h-143v-278c0 -17 0 -108 67 -108c37 0 67 38 67 112v55h25v-57zM298 613c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141 c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x168: [829,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM565 814c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x169: [651,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM445 636c-51 -56 -70 -78 -108 -78 c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x16A: [787,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM579 756h-361v31h361v-31'], + 0x16B: [620,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM459 589h-361v31h361v-31'], + 0x16E: [892,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM461 804c0 41 -25 58 -63 58c-39 0 -63 -18 -63 -58c0 -41 25 -58 63 -58c39 0 63 18 63 58zM494 805c0 -49 -41 -89 -97 -89c-51 0 -95 38 -95 89c0 44 39 87 97 87c54 0 95 -41 95 -87'], + 0x16F: [705,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM341 617c0 41 -25 58 -63 58 c-39 0 -63 -18 -63 -58c0 -41 25 -58 63 -58c39 0 63 18 63 58zM374 618c0 -49 -41 -89 -97 -89c-51 0 -95 38 -95 89c0 44 39 87 97 87c54 0 95 -41 95 -87'], + 0x170: [932,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM401 898c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34zM568 898c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29 c19 0 37 -16 37 -34'], + 0x171: [697,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM281 663c0 -10 -3 -14 -12 -26l-92 -126 c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34zM448 663c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34'], + 0x172: [683,211,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207h-10c-7 -6 -14 -12 -20 -19c-14 -16 -24 -34 -24 -54c0 -46 51 -69 87 -69c32 0 60 20 77 56c5 10 20 5 17 -7c-16 -57 -68 -96 -118 -96c-64 0 -111 44 -111 90 c0 36 25 74 57 103c-116 21 -207 121 -207 246v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31'], + 0x173: [442,211,556,32,555,'555 -115c-16 -57 -68 -96 -118 -96c-64 0 -111 44 -111 90c0 40 29 80 65 111v89c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355 c0 -49 8 -56 78 -56v-31l-99 -8c-15 -9 -28 -21 -39 -33c-14 -16 -23 -34 -23 -54c0 -46 51 -69 87 -69c32 0 60 20 77 56c5 10 20 5 17 -7'], + 0x178: [831,0,750,11,738,'738 652c-32 0 -91 -4 -128 -65l-193 -314v-193c0 -39 3 -49 80 -49h23v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v195l-210 342c-16 26 -24 37 -92 37h-18v31l130 -3c39 0 112 0 148 3v-31c-45 0 -70 -4 -70 -25c0 -5 0 -7 7 -17l181 -295 l165 268c4 6 10 19 10 30c0 20 -16 39 -57 39v31l115 -3c27 0 67 1 98 3v-31zM319 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM529 784c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0x179: [909,0,611,56,560,'560 267l-17 -267h-461c-21 0 -26 0 -26 17c0 8 0 9 7 20l389 615h-157c-164 0 -194 -81 -201 -194h-25l11 225h448c20 0 26 0 26 -16c0 -7 0 -8 -7 -19l-388 -614h164c185 0 204 94 212 233h25zM443 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130 c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x17A: [698,0,444,28,401,'401 187l-17 -187h-330c-19 0 -26 0 -26 14c0 5 0 7 9 18l279 377h-114c-110 0 -129 -37 -135 -139h-25l11 161h320c18 0 26 0 26 -13c0 -4 0 -6 -9 -17l-278 -376h118c116 0 137 44 146 162h25zM346 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17 c18 0 36 -18 36 -36'], + 0x17B: [864,0,611,56,560,'560 267l-17 -267h-461c-21 0 -26 0 -26 17c0 8 0 9 7 20l389 615h-157c-164 0 -194 -81 -201 -194h-25l11 225h448c20 0 26 0 26 -16c0 -7 0 -8 -7 -19l-388 -614h164c185 0 204 94 212 233h25zM359 811c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53 c30 0 53 -26 53 -53'], + 0x17C: [657,0,444,28,401,'401 187l-17 -187h-330c-19 0 -26 0 -26 14c0 5 0 7 9 18l279 377h-114c-110 0 -129 -37 -135 -139h-25l11 161h320c18 0 26 0 26 -13c0 -4 0 -6 -9 -17l-278 -376h118c116 0 137 44 146 162h25zM275 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53 c30 0 53 -26 53 -53'], + 0x17D: [869,0,611,56,560,'560 267l-17 -267h-461c-21 0 -26 0 -26 17c0 8 0 9 7 20l389 615h-157c-164 0 -194 -81 -201 -194h-25l11 225h448c20 0 26 0 26 -16c0 -7 0 -8 -7 -19l-388 -614h164c185 0 204 94 212 233h25zM457 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0x17E: [692,0,444,28,401,'401 187l-17 -187h-330c-19 0 -26 0 -26 14c0 5 0 7 9 18l279 377h-114c-110 0 -129 -37 -135 -139h-25l11 161h320c18 0 26 0 26 -13c0 -4 0 -6 -9 -17l-278 -376h118c116 0 137 44 146 162h25zM374 678l-152 -162l-152 162l13 14l139 -108l139 108'], + 0x17F: [705,0,306,33,357,'357 635c0 -24 -15 -44 -44 -44c-27 0 -43 20 -43 43c0 25 18 38 30 42c-15 7 -33 7 -33 7c-44 0 -89 -48 -89 -136v-469c0 -36 2 -47 76 -47h21v-31c-40 3 -87 3 -127 3l-114 -3v31c67 0 78 0 78 45v324h-79v31h79v115c0 106 85 159 155 159c53 0 90 -33 90 -70'], + 0x1A0: [789,22,778,55,720,'720 339c0 -95 -33 -186 -97 -255c-61 -66 -146 -106 -235 -106c-90 0 -174 40 -235 106c-64 69 -98 160 -98 255s34 188 98 259c60 67 145 107 235 107c67 0 132 -23 186 -62c23 5 42 21 53 42c-4 -1 -8 -2 -13 -2c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -30 53 -63 c0 -48 -28 -91 -69 -103c8 -8 17 -16 25 -25c64 -71 97 -164 97 -259zM617 355c0 82 -14 165 -61 231c-39 56 -100 94 -168 94s-129 -38 -169 -94c-47 -66 -61 -149 -61 -231c0 -87 13 -177 61 -250c39 -58 99 -101 169 -101c69 0 130 43 168 101c48 73 61 163 61 250'], + 0x1A1: [536,11,500,28,488,'488 473c0 -50 -30 -95 -74 -104c37 -44 56 -99 56 -157c0 -59 -23 -116 -65 -158c-41 -41 -97 -65 -156 -65s-115 24 -157 65c-41 42 -64 99 -64 158c0 62 22 122 64 166c41 44 98 69 157 69c54 0 106 -21 145 -57c24 5 44 21 55 42c-4 -1 -9 -2 -13 -2 c-36 0 -53 27 -53 53c0 27 17 53 53 53c31 0 52 -30 52 -63zM387 224c0 50 -2 103 -31 144c-24 36 -64 57 -107 57s-83 -21 -107 -57c-29 -41 -31 -94 -31 -144c0 -53 1 -108 31 -152c23 -36 64 -58 107 -58s84 22 107 58c29 44 31 99 31 152'], + 0x1AF: [789,22,750,33,726,'726 725c0 -62 -52 -108 -114 -115v-382c0 -66 -22 -129 -65 -177c-41 -46 -98 -73 -159 -73c-66 0 -131 26 -178 73c-48 47 -74 110 -74 177v389c0 12 -6 25 -17 30c-18 6 -57 6 -86 6v30l147 -3l147 3v-30c-29 0 -68 0 -85 -6c-12 -5 -18 -18 -18 -30v-389 c0 -65 11 -117 42 -158c29 -38 75 -62 122 -62c53 0 102 23 138 63c37 42 56 98 56 157v361c0 19 -10 37 -26 48c-23 14 -50 16 -77 16v30l118 -3c5 0 10 1 15 3v-48c34 5 64 23 79 51c-5 -2 -11 -3 -18 -3c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -31 53 -64'], + 0x1B0: [536,11,556,32,571,'571 471c0 -60 -53 -101 -116 -111v-274c0 -17 0 -37 13 -46s42 -9 65 -9v-31l-144 -11v89c-23 -52 -67 -89 -123 -89c-48 0 -87 7 -118 32c-27 23 -39 60 -39 100v223c0 18 0 37 -13 47c-13 9 -42 9 -64 9v30l147 12v-321c0 -44 2 -69 15 -85c15 -18 41 -25 74 -25 c67 0 117 66 118 147v191c0 16 -1 33 -13 42c-13 9 -42 9 -65 9v30l147 12v-53c32 6 59 20 75 42c-4 0 -8 -1 -12 -1c-35 0 -53 27 -53 53c0 27 18 53 53 53c32 0 53 -31 53 -65'], + 0x218: [705,290,556,56,499,'499 186c0 -110 -80 -208 -197 -208c-89 0 -153 36 -184 70c-33 -53 -36 -57 -36 -57c-7 -11 -8 -13 -15 -13c-11 0 -11 7 -11 24v200c0 18 0 25 13 25c3 0 11 0 12 -10c1 -36 4 -100 62 -154c53 -49 129 -54 158 -54c84 0 134 72 134 143c0 33 -10 66 -31 92 c-28 37 -58 44 -85 51c-70 17 -121 29 -132 33c-78 27 -131 100 -131 183c0 106 84 194 195 194c89 0 130 -41 160 -70l35 57c7 12 8 13 15 13c11 0 11 -7 11 -24v-201c0 -19 0 -24 -13 -24c-11 0 -11 6 -12 12c-6 45 -28 209 -195 209c-78 0 -132 -61 -132 -131 c0 -58 39 -112 101 -127l128 -31c84 -20 150 -102 150 -202zM322 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x219: [448,290,394,33,360,'360 128c0 -72 -46 -139 -161 -139c-21 0 -66 1 -110 43c-18 -19 -18 -21 -20 -23c-19 -19 -20 -20 -25 -20c-11 0 -11 7 -11 24v132c0 18 0 25 13 25c10 0 11 -4 14 -17c19 -85 55 -142 139 -142c78 0 113 40 113 91c0 72 -82 88 -104 92c-72 14 -100 20 -132 46 c-27 22 -43 50 -43 85c0 56 38 123 160 123c15 0 56 0 94 -28c4 3 14 12 17 16c13 12 15 12 20 12c11 0 11 -7 11 -24v-101c0 -19 0 -24 -13 -24c0 0 -11 0 -12 9c-2 31 -7 121 -117 121c-86 0 -112 -41 -112 -76c0 -58 67 -71 123 -82c42 -8 81 -16 114 -48 c12 -12 42 -42 42 -95zM241 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x21A: [677,290,722,36,685,'685 452h-25c-14 161 -29 194 -180 194c-19 0 -46 0 -57 -2c-18 -4 -18 -18 -18 -38v-527c0 -34 0 -48 105 -48h40v-31c-41 3 -144 3 -190 3s-148 0 -189 -3v31h40c105 0 105 14 105 48v527c0 23 0 34 -21 38c-10 2 -36 2 -54 2c-151 0 -166 -33 -180 -194h-25l19 225 h611zM405 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x21B: [615,290,389,19,332,'332 124c0 -64 -28 -135 -99 -135c-36 0 -129 12 -129 135v276h-85v22c98 4 128 111 129 193h25v-184h143v-31h-143v-278c0 -17 0 -108 67 -108c37 0 67 38 67 112v55h25v-57zM238 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141 c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x1EA0: [716,200,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM428 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EA1: [448,200,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM303 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53 c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EA2: [967,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM472 900c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30 c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EA3: [709,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM347 642c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19 c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EA4: [1052,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM526 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM478 1010c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1EA5: [832,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM401 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM353 790 c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1EA6: [1052,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM526 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM478 910l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1EA7: [832,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM401 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM353 690 l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1EA8: [1078,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM526 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM569 1011c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13 c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EA9: [858,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM401 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM444 791 c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30 c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EAA: [1002,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM526 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM542 987c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25 c44 0 82 48 82 48'], + 0x1EAB: [782,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM401 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM417 767 c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EAC: [869,200,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM526 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM428 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EAD: [692,200,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM402 530l-13 -14l-139 108l-139 -108l-13 14l152 162zM303 -147 c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EAE: [1101,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM525 918c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM478 1059c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1EAF: [873,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM400 690c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22 c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM353 831c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1EB0: [1101,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM525 918c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM479 959l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1EB1: [873,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM400 690c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22 c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM354 731l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1EB2: [1127,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM525 918c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM473 1060c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19 c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EB3: [899,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM400 690c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22 c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM348 832c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18 c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EB4: [1051,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM525 918c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM542 1036c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15 c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EB5: [823,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM400 690c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22 c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM417 808c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EB6: [918,200,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225zM525 918c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM428 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EB7: [690,200,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129zM400 690c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22 c2 -85 65 -134 128 -134c59 0 125 47 127 134h22zM303 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EB8: [680,200,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM393 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EB9: [448,200,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM275 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EBA: [967,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM437 900c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30 c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EBB: [709,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM319 642c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18 c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EBC: [829,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM507 814c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EBD: [651,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM389 636c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EBE: [1052,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM491 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM443 1010c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1EBF: [832,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM373 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM325 790c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1EC0: [1052,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM491 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM443 910l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1EC1: [832,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM373 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM325 690l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1EC2: [1078,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM491 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM534 1011c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13 c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EC3: [858,11,444,28,416,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM373 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM416 791c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35 c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EC4: [1002,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM491 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM507 987c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EC5: [782,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM373 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM389 767c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23 c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EC6: [869,200,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25zM491 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM393 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EC7: [692,200,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237zM374 530l-13 -14l-139 108l-139 -108l-13 14l152 162zM275 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EC8: [967,0,361,28,333,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM278 900c0 -19 -12 -35 -30 -43 c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66 c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EC9: [709,0,278,33,247,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM236 642c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27 c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1ECA: [683,200,361,28,333,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31zM234 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53 c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1ECB: [657,200,278,33,247,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM192 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53zM192 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53 c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1ECC: [705,200,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM442 -147c0 -25 -20 -53 -54 -53 c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1ECD: [448,200,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM303 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1ECE: [967,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM486 900c0 -19 -12 -35 -30 -43 c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66 c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1ECF: [709,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM347 642c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30 c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1ED0: [1052,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM540 752l-12 -16l-140 66l-140 -66l-10 16 l151 117zM492 1010c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1ED1: [832,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM401 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM353 790c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1ED2: [1052,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM540 752l-12 -16l-140 66l-140 -66l-10 16 l151 117zM492 910l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1ED3: [832,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM401 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM353 690l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1ED4: [1078,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM540 752l-12 -16l-140 66l-140 -66l-10 16 l151 117zM583 1011c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29 c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1ED5: [858,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM401 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM444 791c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35 c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1ED6: [1002,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM540 752l-12 -16l-140 66l-140 -66l-10 16 l151 117zM556 987c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1ED7: [782,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM401 532l-12 -16l-140 66l-140 -66l-10 16l151 117zM417 767c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25 c44 0 82 48 82 48'], + 0x1ED8: [869,200,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349zM540 752l-12 -16l-140 66l-140 -66l-10 16 l151 117zM442 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1ED9: [692,200,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134zM402 530l-13 -14l-139 108l-139 -108l-13 14l152 162zM303 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EDA: [909,22,778,55,720,'720 339c0 -95 -33 -186 -97 -255c-61 -66 -146 -106 -235 -106c-90 0 -174 40 -235 106c-64 69 -98 160 -98 255s34 188 98 259c60 67 145 107 235 107c67 0 132 -23 186 -62c23 5 42 21 53 42c-4 -1 -8 -2 -13 -2c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -30 53 -63 c0 -48 -28 -91 -69 -103c8 -8 17 -16 25 -25c64 -71 97 -164 97 -259zM617 355c0 82 -14 165 -61 231c-39 56 -100 94 -168 94s-129 -38 -169 -94c-47 -66 -61 -149 -61 -231c0 -87 13 -177 61 -250c39 -58 99 -101 169 -101c69 0 130 43 168 101c48 73 61 163 61 250z M498 867c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1EDB: [698,11,500,28,488,'488 473c0 -50 -30 -95 -74 -104c37 -44 56 -99 56 -157c0 -59 -23 -116 -65 -158c-41 -41 -97 -65 -156 -65s-115 24 -157 65c-41 42 -64 99 -64 158c0 62 22 122 64 166c41 44 98 69 157 69c54 0 106 -21 145 -57c24 5 44 21 55 42c-4 -1 -9 -2 -13 -2 c-36 0 -53 27 -53 53c0 27 17 53 53 53c31 0 52 -30 52 -63zM387 224c0 50 -2 103 -31 144c-24 36 -64 57 -107 57s-83 -21 -107 -57c-29 -41 -31 -94 -31 -144c0 -53 1 -108 31 -152c23 -36 64 -58 107 -58s84 22 107 58c29 44 31 99 31 152zM346 662c0 -12 -8 -23 -17 -30 l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0x1EDC: [909,22,778,55,720,'720 339c0 -95 -33 -186 -97 -255c-61 -66 -146 -106 -235 -106c-90 0 -174 40 -235 106c-64 69 -98 160 -98 255s34 188 98 259c60 67 145 107 235 107c67 0 132 -23 186 -62c23 5 42 21 53 42c-4 -1 -8 -2 -13 -2c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -30 53 -63 c0 -48 -28 -91 -69 -103c8 -8 17 -16 25 -25c64 -71 97 -164 97 -259zM617 355c0 82 -14 165 -61 231c-39 56 -100 94 -168 94s-129 -38 -169 -94c-47 -66 -61 -149 -61 -231c0 -87 13 -177 61 -250c39 -58 99 -101 169 -101c69 0 130 43 168 101c48 73 61 163 61 250z M458 767l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1EDD: [698,11,500,28,488,'488 473c0 -50 -30 -95 -74 -104c37 -44 56 -99 56 -157c0 -59 -23 -116 -65 -158c-41 -41 -97 -65 -156 -65s-115 24 -157 65c-41 42 -64 99 -64 158c0 62 22 122 64 166c41 44 98 69 157 69c54 0 106 -21 145 -57c24 5 44 21 55 42c-4 -1 -9 -2 -13 -2 c-36 0 -53 27 -53 53c0 27 17 53 53 53c31 0 52 -30 52 -63zM387 224c0 50 -2 103 -31 144c-24 36 -64 57 -107 57s-83 -21 -107 -57c-29 -41 -31 -94 -31 -144c0 -53 1 -108 31 -152c23 -36 64 -58 107 -58s84 22 107 58c29 44 31 99 31 152zM312 528l-17 -18l-152 122 c-9 7 -17 18 -17 30c0 18 18 36 36 36c15 0 26 -11 30 -17'], + 0x1EDE: [967,22,778,55,720,'720 339c0 -95 -33 -186 -97 -255c-61 -66 -146 -106 -235 -106c-90 0 -174 40 -235 106c-64 69 -98 160 -98 255s34 188 98 259c60 67 145 107 235 107c67 0 132 -23 186 -62c23 5 42 21 53 42c-4 -1 -8 -2 -13 -2c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -30 53 -63 c0 -48 -28 -91 -69 -103c8 -8 17 -16 25 -25c64 -71 97 -164 97 -259zM617 355c0 82 -14 165 -61 231c-39 56 -100 94 -168 94s-129 -38 -169 -94c-47 -66 -61 -149 -61 -231c0 -87 13 -177 61 -250c39 -58 99 -101 169 -101c69 0 130 43 168 101c48 73 61 163 61 250z M486 900c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30 c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EDF: [709,11,500,28,488,'488 473c0 -50 -30 -95 -74 -104c37 -44 56 -99 56 -157c0 -59 -23 -116 -65 -158c-41 -41 -97 -65 -156 -65s-115 24 -157 65c-41 42 -64 99 -64 158c0 62 22 122 64 166c41 44 98 69 157 69c54 0 106 -21 145 -57c24 5 44 21 55 42c-4 -1 -9 -2 -13 -2 c-36 0 -53 27 -53 53c0 27 17 53 53 53c31 0 52 -30 52 -63zM387 224c0 50 -2 103 -31 144c-24 36 -64 57 -107 57s-83 -21 -107 -57c-29 -41 -31 -94 -31 -144c0 -53 1 -108 31 -152c23 -36 64 -58 107 -58s84 22 107 58c29 44 31 99 31 152zM347 642 c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30 c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EE0: [829,22,778,55,720,'720 339c0 -95 -33 -186 -97 -255c-61 -66 -146 -106 -235 -106c-90 0 -174 40 -235 106c-64 69 -98 160 -98 255s34 188 98 259c60 67 145 107 235 107c67 0 132 -23 186 -62c23 5 42 21 53 42c-4 -1 -8 -2 -13 -2c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -30 53 -63 c0 -48 -28 -91 -69 -103c8 -8 17 -16 25 -25c64 -71 97 -164 97 -259zM617 355c0 82 -14 165 -61 231c-39 56 -100 94 -168 94s-129 -38 -169 -94c-47 -66 -61 -149 -61 -231c0 -87 13 -177 61 -250c39 -58 99 -101 169 -101c69 0 130 43 168 101c48 73 61 163 61 250z M556 814c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EE1: [651,11,500,28,488,'488 473c0 -50 -30 -95 -74 -104c37 -44 56 -99 56 -157c0 -59 -23 -116 -65 -158c-41 -41 -97 -65 -156 -65s-115 24 -157 65c-41 42 -64 99 -64 158c0 62 22 122 64 166c41 44 98 69 157 69c54 0 106 -21 145 -57c24 5 44 21 55 42c-4 -1 -9 -2 -13 -2 c-36 0 -53 27 -53 53c0 27 17 53 53 53c31 0 52 -30 52 -63zM387 224c0 50 -2 103 -31 144c-24 36 -64 57 -107 57s-83 -21 -107 -57c-29 -41 -31 -94 -31 -144c0 -53 1 -108 31 -152c23 -36 64 -58 107 -58s84 22 107 58c29 44 31 99 31 152zM417 636 c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EE2: [789,200,778,55,720,'720 339c0 -95 -33 -186 -97 -255c-61 -66 -146 -106 -235 -106c-90 0 -174 40 -235 106c-64 69 -98 160 -98 255s34 188 98 259c60 67 145 107 235 107c67 0 132 -23 186 -62c23 5 42 21 53 42c-4 -1 -8 -2 -13 -2c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -30 53 -63 c0 -48 -28 -91 -69 -103c8 -8 17 -16 25 -25c64 -71 97 -164 97 -259zM617 355c0 82 -14 165 -61 231c-39 56 -100 94 -168 94s-129 -38 -169 -94c-47 -66 -61 -149 -61 -231c0 -87 13 -177 61 -250c39 -58 99 -101 169 -101c69 0 130 43 168 101c48 73 61 163 61 250z M442 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EE3: [536,200,500,28,488,'488 473c0 -50 -30 -95 -74 -104c37 -44 56 -99 56 -157c0 -59 -23 -116 -65 -158c-41 -41 -97 -65 -156 -65s-115 24 -157 65c-41 42 -64 99 -64 158c0 62 22 122 64 166c41 44 98 69 157 69c54 0 106 -21 145 -57c24 5 44 21 55 42c-4 -1 -9 -2 -13 -2 c-36 0 -53 27 -53 53c0 27 17 53 53 53c31 0 52 -30 52 -63zM387 224c0 50 -2 103 -31 144c-24 36 -64 57 -107 57s-83 -21 -107 -57c-29 -41 -31 -94 -31 -144c0 -53 1 -108 31 -152c23 -36 64 -58 107 -58s84 22 107 58c29 44 31 99 31 152zM303 -147 c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EE4: [683,200,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM451 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EE5: [442,200,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM331 -147c0 -25 -20 -53 -54 -53 c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EE6: [967,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31zM495 900c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18 c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EE7: [709,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31zM375 642c0 -19 -12 -35 -30 -43 c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66 c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EE8: [909,22,750,33,726,'726 725c0 -62 -52 -108 -114 -115v-382c0 -66 -22 -129 -65 -177c-41 -46 -98 -73 -159 -73c-66 0 -131 26 -178 73c-48 47 -74 110 -74 177v389c0 12 -6 25 -17 30c-18 6 -57 6 -86 6v30l147 -3l147 3v-30c-29 0 -68 0 -85 -6c-12 -5 -18 -18 -18 -30v-389 c0 -65 11 -117 42 -158c29 -38 75 -62 122 -62c53 0 102 23 138 63c37 42 56 98 56 157v361c0 19 -10 37 -26 48c-23 14 -50 16 -77 16v30l118 -3c5 0 10 1 15 3v-48c34 5 64 23 79 51c-5 -2 -11 -3 -18 -3c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -31 53 -64zM507 867 c-2 -12 -11 -22 -22 -27l-170 -94l-14 21l145 130c4 4 14 12 26 12c22 0 39 -20 35 -42'], + 0x1EE9: [698,11,556,32,571,'571 471c0 -60 -53 -101 -116 -111v-274c0 -17 0 -37 13 -46s42 -9 65 -9v-31l-144 -11v89c-23 -52 -67 -89 -123 -89c-48 0 -87 7 -118 32c-27 23 -39 60 -39 100v223c0 18 0 37 -13 47c-13 9 -42 9 -64 9v30l147 12v-321c0 -44 2 -69 15 -85c15 -18 41 -25 74 -25 c67 0 117 66 118 147v191c0 16 -1 33 -13 42c-13 9 -42 9 -65 9v30l147 12v-53c32 6 59 20 75 42c-4 0 -8 -1 -12 -1c-35 0 -53 27 -53 53c0 27 18 53 53 53c32 0 53 -31 53 -65zM379 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17 c18 0 36 -18 36 -36'], + 0x1EEA: [909,22,750,33,726,'726 725c0 -62 -52 -108 -114 -115v-382c0 -66 -22 -129 -65 -177c-41 -46 -98 -73 -159 -73c-66 0 -131 26 -178 73c-48 47 -74 110 -74 177v389c0 12 -6 25 -17 30c-18 6 -57 6 -86 6v30l147 -3l147 3v-30c-29 0 -68 0 -85 -6c-12 -5 -18 -18 -18 -30v-389 c0 -65 11 -117 42 -158c29 -38 75 -62 122 -62c53 0 102 23 138 63c37 42 56 98 56 157v361c0 19 -10 37 -26 48c-23 14 -50 16 -77 16v30l118 -3c5 0 10 1 15 3v-48c34 5 64 23 79 51c-5 -2 -11 -3 -18 -3c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -31 53 -64zM467 767 l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1EEB: [698,11,556,32,571,'571 471c0 -60 -53 -101 -116 -111v-274c0 -17 0 -37 13 -46s42 -9 65 -9v-31l-144 -11v89c-23 -52 -67 -89 -123 -89c-48 0 -87 7 -118 32c-27 23 -39 60 -39 100v223c0 18 0 37 -13 47c-13 9 -42 9 -64 9v30l147 12v-321c0 -44 2 -69 15 -85c15 -18 41 -25 74 -25 c67 0 117 66 118 147v191c0 16 -1 33 -13 42c-13 9 -42 9 -65 9v30l147 12v-53c32 6 59 20 75 42c-4 0 -8 -1 -12 -1c-35 0 -53 27 -53 53c0 27 18 53 53 53c32 0 53 -31 53 -65zM345 528l-17 -18l-152 122c-9 7 -17 18 -17 30c0 18 18 36 36 36c15 0 26 -11 30 -17'], + 0x1EEC: [967,22,750,33,726,'726 725c0 -62 -52 -108 -114 -115v-382c0 -66 -22 -129 -65 -177c-41 -46 -98 -73 -159 -73c-66 0 -131 26 -178 73c-48 47 -74 110 -74 177v389c0 12 -6 25 -17 30c-18 6 -57 6 -86 6v30l147 -3l147 3v-30c-29 0 -68 0 -85 -6c-12 -5 -18 -18 -18 -30v-389 c0 -65 11 -117 42 -158c29 -38 75 -62 122 -62c53 0 102 23 138 63c37 42 56 98 56 157v361c0 19 -10 37 -26 48c-23 14 -50 16 -77 16v30l118 -3c5 0 10 1 15 3v-48c34 5 64 23 79 51c-5 -2 -11 -3 -18 -3c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -31 53 -64zM495 900 c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30 c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EED: [709,11,556,32,571,'571 471c0 -60 -53 -101 -116 -111v-274c0 -17 0 -37 13 -46s42 -9 65 -9v-31l-144 -11v89c-23 -52 -67 -89 -123 -89c-48 0 -87 7 -118 32c-27 23 -39 60 -39 100v223c0 18 0 37 -13 47c-13 9 -42 9 -64 9v30l147 12v-321c0 -44 2 -69 15 -85c15 -18 41 -25 74 -25 c67 0 117 66 118 147v191c0 16 -1 33 -13 42c-13 9 -42 9 -65 9v30l147 12v-53c32 6 59 20 75 42c-4 0 -8 -1 -12 -1c-35 0 -53 27 -53 53c0 27 18 53 53 53c32 0 53 -31 53 -65zM380 642c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10 c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EEE: [829,22,750,33,726,'726 725c0 -62 -52 -108 -114 -115v-382c0 -66 -22 -129 -65 -177c-41 -46 -98 -73 -159 -73c-66 0 -131 26 -178 73c-48 47 -74 110 -74 177v389c0 12 -6 25 -17 30c-18 6 -57 6 -86 6v30l147 -3l147 3v-30c-29 0 -68 0 -85 -6c-12 -5 -18 -18 -18 -30v-389 c0 -65 11 -117 42 -158c29 -38 75 -62 122 -62c53 0 102 23 138 63c37 42 56 98 56 157v361c0 19 -10 37 -26 48c-23 14 -50 16 -77 16v30l118 -3c5 0 10 1 15 3v-48c34 5 64 23 79 51c-5 -2 -11 -3 -18 -3c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -31 53 -64zM565 814 c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EEF: [651,11,556,32,571,'571 471c0 -60 -53 -101 -116 -111v-274c0 -17 0 -37 13 -46s42 -9 65 -9v-31l-144 -11v89c-23 -52 -67 -89 -123 -89c-48 0 -87 7 -118 32c-27 23 -39 60 -39 100v223c0 18 0 37 -13 47c-13 9 -42 9 -64 9v30l147 12v-321c0 -44 2 -69 15 -85c15 -18 41 -25 74 -25 c67 0 117 66 118 147v191c0 16 -1 33 -13 42c-13 9 -42 9 -65 9v30l147 12v-53c32 6 59 20 75 42c-4 0 -8 -1 -12 -1c-35 0 -53 27 -53 53c0 27 18 53 53 53c32 0 53 -31 53 -65zM450 636c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25 c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EF0: [789,200,750,33,726,'726 725c0 -62 -52 -108 -114 -115v-382c0 -66 -22 -129 -65 -177c-41 -46 -98 -73 -159 -73c-66 0 -131 26 -178 73c-48 47 -74 110 -74 177v389c0 12 -6 25 -17 30c-18 6 -57 6 -86 6v30l147 -3l147 3v-30c-29 0 -68 0 -85 -6c-12 -5 -18 -18 -18 -30v-389 c0 -65 11 -117 42 -158c29 -38 75 -62 122 -62c53 0 102 23 138 63c37 42 56 98 56 157v361c0 19 -10 37 -26 48c-23 14 -50 16 -77 16v30l118 -3c5 0 10 1 15 3v-48c34 5 64 23 79 51c-5 -2 -11 -3 -18 -3c-35 0 -53 27 -53 53s18 53 53 53c31 0 53 -31 53 -64zM428 -147 c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EF1: [536,200,556,32,571,'571 471c0 -60 -53 -101 -116 -111v-274c0 -17 0 -37 13 -46s42 -9 65 -9v-31l-144 -11v89c-23 -52 -67 -89 -123 -89c-48 0 -87 7 -118 32c-27 23 -39 60 -39 100v223c0 18 0 37 -13 47c-13 9 -42 9 -64 9v30l147 12v-321c0 -44 2 -69 15 -85c15 -18 41 -25 74 -25 c67 0 117 66 118 147v191c0 16 -1 33 -13 42c-13 9 -42 9 -65 9v30l147 12v-53c32 6 59 20 75 42c-4 0 -8 -1 -12 -1c-35 0 -53 27 -53 53c0 27 18 53 53 53c32 0 53 -31 53 -65zM331 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EF2: [909,0,750,11,738,'738 652c-32 0 -91 -4 -128 -65l-193 -314v-193c0 -39 3 -49 80 -49h23v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v195l-210 342c-16 26 -24 37 -92 37h-18v31l130 -3c39 0 112 0 148 3v-31c-45 0 -70 -4 -70 -25c0 -5 0 -7 7 -17l181 -295 l165 268c4 6 10 19 10 30c0 20 -16 39 -57 39v31l115 -3c27 0 67 1 98 3v-31zM444 767l-14 -21l-170 94c-11 5 -20 15 -22 27c-4 22 13 42 35 42c12 0 22 -8 26 -12'], + 0x1EF3: [698,205,528,19,508,'508 400c-16 0 -67 -1 -93 -64l-176 -427c-24 -57 -65 -114 -128 -114c-50 0 -92 36 -92 81c0 30 22 43 42 43c23 0 42 -16 42 -42c0 -16 -8 -38 -39 -42c19 -18 42 -18 47 -18c64 0 92 69 114 124l25 59l-150 365c-14 35 -33 35 -81 35v31c30 -2 70 -3 97 -3l109 3v-31 c-19 0 -56 0 -56 -26c0 -4 2 -8 6 -18l111 -269l101 246c5 12 6 14 6 24c0 25 -16 42 -47 43v31l87 -3c23 0 52 1 75 3v-31zM326 528l-17 -18l-152 122c-9 7 -17 18 -17 30c0 18 18 36 36 36c15 0 26 -11 30 -17'], + 0x1EF4: [683,200,750,11,738,'738 652c-32 0 -91 -4 -128 -65l-193 -314v-193c0 -39 3 -49 80 -49h23v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v195l-210 342c-16 26 -24 37 -92 37h-18v31l130 -3c39 0 112 0 148 3v-31c-45 0 -70 -4 -70 -25c0 -5 0 -7 7 -17l181 -295 l165 268c4 6 10 19 10 30c0 20 -16 39 -57 39v31l115 -3c27 0 67 1 98 3v-31zM428 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EF5: [431,205,528,19,508,'508 400c-16 0 -67 -1 -93 -64l-176 -427c-24 -57 -65 -114 -128 -114c-50 0 -92 36 -92 81c0 30 22 43 42 43c23 0 42 -16 42 -42c0 -16 -8 -38 -39 -42c19 -18 42 -18 47 -18c64 0 92 69 114 124l25 59l-150 365c-14 35 -33 35 -81 35v31c30 -2 70 -3 97 -3l109 3v-31 c-19 0 -56 0 -56 -26c0 -4 2 -8 6 -18l111 -269l101 246c5 12 6 14 6 24c0 25 -16 42 -47 43v31l87 -3c23 0 52 1 75 3v-31zM449 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x1EF6: [967,0,750,11,738,'738 652c-32 0 -91 -4 -128 -65l-193 -314v-193c0 -39 3 -49 80 -49h23v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v195l-210 342c-16 26 -24 37 -92 37h-18v31l130 -3c39 0 112 0 148 3v-31c-45 0 -70 -4 -70 -25c0 -5 0 -7 7 -17l181 -295 l165 268c4 6 10 19 10 30c0 20 -16 39 -57 39v31l115 -3c27 0 67 1 98 3v-31zM472 900c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13 c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EF7: [709,205,528,19,508,'508 400c-16 0 -67 -1 -93 -64l-176 -427c-24 -57 -65 -114 -128 -114c-50 0 -92 36 -92 81c0 30 22 43 42 43c23 0 42 -16 42 -42c0 -16 -8 -38 -39 -42c19 -18 42 -18 47 -18c64 0 92 69 114 124l25 59l-150 365c-14 35 -33 35 -81 35v31c30 -2 70 -3 97 -3l109 3v-31 c-19 0 -56 0 -56 -26c0 -4 2 -8 6 -18l111 -269l101 246c5 12 6 14 6 24c0 25 -16 42 -47 43v31l87 -3c23 0 52 1 75 3v-31zM361 642c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27 c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x1EF8: [829,0,750,11,738,'738 652c-32 0 -91 -4 -128 -65l-193 -314v-193c0 -39 3 -49 80 -49h23v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v195l-210 342c-16 26 -24 37 -92 37h-18v31l130 -3c39 0 112 0 148 3v-31c-45 0 -70 -4 -70 -25c0 -5 0 -7 7 -17l181 -295 l165 268c4 6 10 19 10 30c0 20 -16 39 -57 39v31l115 -3c27 0 67 1 98 3v-31zM542 814c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x1EF9: [651,205,528,19,508,'508 400c-16 0 -67 -1 -93 -64l-176 -427c-24 -57 -65 -114 -128 -114c-50 0 -92 36 -92 81c0 30 22 43 42 43c23 0 42 -16 42 -42c0 -16 -8 -38 -39 -42c19 -18 42 -18 47 -18c64 0 92 69 114 124l25 59l-150 365c-14 35 -33 35 -81 35v31c30 -2 70 -3 97 -3l109 3v-31 c-19 0 -56 0 -56 -26c0 -4 2 -8 6 -18l111 -269l101 246c5 12 6 14 6 24c0 25 -16 42 -47 43v31l87 -3c23 0 52 1 75 3v-31zM431 636c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78 c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0xFB00: [705,0,583,27,628,'628 635c0 -24 -15 -44 -44 -44c-27 0 -43 20 -43 43c0 25 18 38 30 42c-15 7 -30 7 -33 7c-45 0 -93 -47 -93 -136v-116h118v-31h-115v-322c0 -36 2 -47 76 -47h21v-31c-40 3 -87 3 -127 3l-114 -3v31c67 0 78 0 78 45v324h-210v-324c0 -45 11 -45 78 -45v-31l-111 3 l-111 -3v31c67 0 78 0 78 45v324h-79v31h79v114c0 108 116 160 211 160c27 0 83 -5 112 -42c5 4 49 42 108 42c56 0 91 -34 91 -70zM393 664c0 0 -28 19 -77 19c-65 0 -147 -42 -147 -139v-113h213v115c0 12 0 21 3 34c-27 9 -28 34 -28 40c0 28 20 41 36 44'], + 0xFB01: [705,0,556,27,527,'527 0l-111 3l-111 -3v31c67 0 78 0 78 45v270c0 41 -7 54 -53 54h-158v-324c0 -45 11 -45 78 -45v-31l-111 3l-111 -3v31c67 0 78 0 78 45v324h-79v31h79v114c0 109 119 160 212 160c74 0 129 -42 129 -101c0 -30 -23 -46 -46 -46c-19 0 -45 13 -45 46c0 16 6 44 47 46 c-20 23 -56 33 -86 33c-62 0 -148 -40 -148 -139v-113h118c14 0 16 0 18 1c0 0 2 1 18 2l126 9v-367c0 -45 11 -45 78 -45v-31'], + 0xFB02: [705,0,556,27,527,'527 0l-111 3l-111 -3v31c67 0 78 0 78 45v324h-211v-324c0 -45 11 -45 78 -45v-31l-111 3l-111 -3v31c67 0 78 0 78 45v324h-79v31h79v114c0 104 109 160 214 160c11 0 52 0 84 -14c4 -2 5 -3 9 -3l36 6v-618c0 -45 11 -45 78 -45v-31zM383 431v164c-17 6 -25 21 -25 39 c0 26 16 36 25 40c-28 9 -55 9 -64 9c-74 0 -150 -46 -150 -139v-113h214'], + 0xFB03: [705,0,833,27,804,'804 0l-111 3l-111 -3v31c67 0 78 0 78 45v270c0 41 -7 54 -53 54h-158v-324c0 -45 11 -45 78 -45v-31l-111 3l-111 -3v31c67 0 78 0 78 45v324h-211v-324c0 -45 11 -45 78 -45v-31l-111 3l-111 -3v31c67 0 78 0 78 45v324h-79v31h79v114c0 109 117 160 211 160 c50 0 92 -20 115 -55c18 15 75 55 163 55c74 0 129 -42 129 -101c0 -30 -23 -46 -46 -46c-19 0 -45 13 -45 46c0 16 6 44 47 46c-20 23 -56 33 -86 33c-62 0 -148 -40 -148 -139v-113h118c14 0 16 0 18 1l105 8l39 3v-367c0 -45 11 -45 78 -45v-31zM401 650 c-27 28 -62 33 -86 33c-59 0 -146 -39 -146 -139v-113h214v130c-18 5 -30 21 -30 43c0 20 9 44 48 46'], + 0xFB04: [705,0,833,27,804,'804 0l-111 3l-111 -3v31c67 0 78 0 78 45v324h-211v-324c0 -45 11 -45 78 -45v-31l-111 3l-111 -3v31c67 0 78 0 78 45v324h-211v-324c0 -45 11 -45 78 -45v-31l-111 3l-111 -3v31c67 0 78 0 78 45v324h-79v31h79v114c0 107 114 160 212 160c41 0 97 -11 118 -52 c37 30 91 52 161 52c11 0 52 0 84 -14c4 -2 5 -3 9 -3l36 6v-618c0 -45 11 -45 78 -45v-31zM394 664c-26 16 -60 19 -77 19c-67 0 -148 -42 -148 -139v-113h214v114c0 11 0 24 3 35c-22 8 -28 25 -28 40c0 33 26 42 36 44zM660 431v164c-17 6 -25 21 -25 39 c0 26 16 36 25 40c-28 9 -55 9 -64 9c-74 0 -150 -46 -150 -139v-113h214'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Latin/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Main/Regular/Main.js new file mode 100644 index 0000000..897e50c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Main/Regular/Main.js @@ -0,0 +1,533 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Main'] = { + directory: 'Main/Regular', + family: 'LatinModernMathJax_Main', + id: 'LATINMODERNMAIN', + 0x20: [0,0,332,0,0,''], + 0x21: [716,0,278,86,192,'192 665l-39 -456c-1 -17 -4 -22 -14 -22c-12 0 -13 8 -14 23l-39 455c0 33 27 51 53 51s53 -18 53 -51zM192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x22: [705,-423,374,103,270,'174 670l-22 -247h-26l-22 247c-2 20 15 35 35 35s37 -15 35 -35zM270 670l-22 -247h-26l-22 247c-2 20 15 35 35 35s37 -15 35 -35'], + 0x23: [694,194,833,56,776,'776 153c0 -20 -19 -20 -33 -20h-224l-81 -303c-3 -11 -6 -24 -22 -24c-11 0 -20 9 -20 20c0 4 3 16 4 18l78 289h-188l-81 -303c-3 -11 -6 -24 -22 -24c-11 0 -20 9 -20 20c0 4 3 16 4 18l78 289h-160c-14 0 -33 0 -33 20s19 20 34 20h171l40 154h-211 c-15 0 -34 0 -34 20s19 20 33 20h224l81 303c3 11 6 24 22 24c11 0 20 -9 20 -20c0 -4 -3 -16 -4 -18l-78 -289h188l81 303c3 11 6 24 22 24c11 0 20 -9 20 -20c0 -4 -3 -16 -4 -18l-78 -289h160c14 0 33 0 33 -20s-19 -20 -34 -20h-171l-40 -154h211c15 0 34 0 34 -20z M530 327h-188l-40 -154h188'], + 0x24: [750,56,500,56,443,'443 195c0 -103 -73 -196 -178 -205v-46h-31v45c-125 8 -178 100 -178 189c0 49 40 51 46 51c25 0 46 -18 46 -46c0 -27 -19 -46 -46 -46c-4 0 -12 1 -16 2c13 -62 60 -113 148 -118v298c-51 13 -85 21 -123 60c-18 17 -55 65 -55 134c0 91 67 181 178 191v46h31v-45 c112 -6 178 -79 178 -176c0 -49 -43 -50 -46 -50c-21 0 -46 15 -46 46c0 28 20 46 46 46c10 0 12 -1 16 -2c-15 56 -63 100 -148 104v-270c48 -12 84 -21 124 -65c9 -9 54 -60 54 -143zM392 165c0 24 -7 121 -127 146v-290c79 10 127 77 127 144zM234 411v262 c-80 -8 -127 -70 -127 -130c0 -20 4 -106 127 -132'], + 0x25: [750,56,833,56,776,'693 730c0 -6 -2 -9 -8 -18l-506 -753c-8 -11 -10 -15 -20 -15s-20 9 -20 20c0 0 0 7 9 20l449 669l-1 1c-6 -4 -57 -35 -133 -35c-36 0 -86 5 -151 42c21 -52 21 -99 21 -113c0 -112 -57 -201 -130 -201c-75 0 -147 81 -147 202c0 117 71 201 147 201 c32 0 53 -15 72 -32c55 -52 117 -77 187 -77c73 0 140 27 190 95c6 7 11 14 21 14c11 0 20 -9 20 -20zM776 145c0 -112 -57 -201 -130 -201c-75 0 -147 81 -147 202c0 117 71 201 147 201c71 0 130 -87 130 -202zM308 549c0 105 -51 179 -104 179c-21 0 -86 -13 -86 -180 c0 -166 66 -179 86 -179c52 0 104 72 104 180zM751 146c0 105 -51 179 -104 179c-21 0 -86 -13 -86 -180c0 -166 66 -179 86 -179c52 0 104 72 104 180'], + 0x26: [716,22,778,42,727,'727 400c-89 -1 -110 -36 -149 -102c-46 -79 -86 -147 -132 -200c32 -38 84 -89 138 -89c45 0 109 33 112 112h25c-2 -86 -65 -143 -141 -143c-48 0 -107 16 -176 76c-37 -33 -96 -76 -181 -76c-99 0 -181 63 -181 150c0 54 26 81 71 127l91 97c-35 89 -41 161 -41 203 c0 106 74 161 136 161c71 0 87 -83 87 -129c0 -66 -68 -142 -122 -202c44 -115 153 -252 166 -267c43 53 88 121 143 218c1 3 6 10 6 20c0 25 -25 44 -71 44v31c27 -2 111 -3 122 -3l97 3v-31zM361 588c0 0 0 106 -60 106c-35 0 -75 -32 -75 -116c0 -31 3 -89 30 -169 c24 26 105 113 105 179zM385 73c-37 37 -73 89 -92 117c-43 62 -58 92 -80 139c-54 -52 -88 -88 -88 -169c0 -54 23 -151 106 -151c28 0 90 7 154 64'], + 0x27: [705,-423,278,103,174,'174 670l-22 -247h-26l-22 247c-2 20 15 35 35 35s37 -15 35 -35'], + 0x28: [748,248,389,101,332,'332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8'], + 0x29: [748,248,389,57,288,'288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84'], + 0x2A: [750,-320,500,59,440,'436 428c-9 -16 -29 -20 -43 -10l-131 96l17 -161c2 -18 -11 -33 -29 -33s-31 15 -29 33l17 161l-131 -96c-14 -10 -34 -6 -43 10c-9 15 -3 34 13 41l149 66l-149 66c-16 7 -22 26 -13 42c9 15 29 19 43 9l131 -96l-17 161c-2 18 11 33 29 33s31 -15 29 -33l-17 -161 l131 96c14 10 34 6 43 -9c9 -16 3 -35 -13 -42l-149 -66l149 -66c16 -7 22 -26 13 -41'], + 0x2B: [583,83,778,56,722,'722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20'], + 0x2C: [106,193,278,86,203,'203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105'], + 0x2D: [245,-187,333,11,276,'276 187h-265v58h265v-58'], + 0x2E: [106,0,278,86,192,'192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2F: [750,250,500,56,445,'445 730c0 -2 0 -5 -1 -7l-349 -960c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l349 960c3 8 10 13 19 13c11 0 20 -9 20 -20'], + 0x30: [666,22,500,39,460,'460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207'], + 0x31: [666,0,500,89,419,'419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31'], + 0x32: [666,0,500,50,449,'449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25'], + 0x33: [666,22,500,42,457,'457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181'], + 0x34: [677,0,500,28,471,'471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244'], + 0x35: [666,22,500,50,449,'449 201c0 -127 -102 -223 -218 -223c-112 0 -181 97 -181 183c0 46 35 53 49 53c33 0 50 -25 50 -49s-17 -49 -50 -49c-11 0 -14 1 -17 2c17 -59 74 -112 147 -112c46 0 83 26 107 65c24 42 24 102 24 137c0 50 -2 89 -18 126c-8 18 -33 64 -85 64 c-81 0 -118 -54 -129 -70c-4 -6 -6 -9 -13 -9c-14 0 -14 8 -14 26v296c0 16 0 24 10 24c0 0 4 0 12 -3c47 -21 93 -28 133 -28c67 0 116 20 136 29c5 3 8 3 8 3c7 0 10 -5 10 -11c0 -13 -70 -104 -193 -104c-32 0 -65 7 -85 13v-195c36 35 79 51 127 51 c108 0 190 -100 190 -219'], + 0x36: [666,22,500,42,457,'457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134'], + 0x37: [676,22,500,56,485,'485 644c0 -21 0 -23 -9 -35l-135 -190c-44 -62 -58 -148 -62 -171c-8 -54 -11 -109 -11 -164v-51c0 -10 0 -55 -46 -55s-46 45 -46 55c0 102 33 241 123 376l112 158h-207c-13 0 -91 0 -98 -6c-13 -12 -22 -75 -25 -91h-25l33 206h25c4 -19 6 -32 128 -32h243'], + 0x38: [666,22,500,42,457,'457 168c0 -107 -95 -190 -208 -190c-105 0 -207 67 -207 173c0 99 86 155 144 184c-25 17 -62 42 -73 54c-42 47 -44 92 -44 110c0 93 81 167 181 167c91 0 180 -57 180 -149c0 -66 -49 -118 -121 -155c64 -40 80 -50 99 -71c38 -42 49 -87 49 -123zM386 517 c0 72 -64 124 -137 124c-71 0 -136 -42 -136 -103c0 -17 4 -51 50 -81l124 -80c60 35 99 83 99 140zM407 132c0 61 -47 91 -75 110l-123 78c-85 -47 -117 -111 -117 -169c0 -83 72 -145 158 -145c82 0 157 52 157 126'], + 0x39: [666,22,500,42,457,'457 329c0 -215 -122 -351 -251 -351c-85 0 -139 41 -139 108c0 39 30 48 46 48c22 0 46 -15 46 -46c0 -17 -8 -46 -52 -46c27 -34 81 -36 98 -36c58 0 162 46 162 280v32c-23 -58 -64 -100 -125 -100c-112 0 -200 98 -200 223c0 75 23 117 64 162c43 45 92 63 147 63 c89 0 204 -68 204 -337zM365 421c0 46 -4 109 -16 141c-17 45 -50 79 -96 79c-35 0 -73 -13 -100 -63c-21 -37 -21 -84 -21 -138c0 -49 0 -99 18 -136c31 -63 77 -63 93 -63c88 0 122 97 122 180'], + 0x3A: [431,0,278,86,192,'192 378c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x3B: [431,193,278,86,195,'192 378c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM195 3c0 -116 -72 -196 -83 -196c-5 0 -10 4 -10 11c0 3 0 5 7 13c64 74 64 152 64 180c-8 -7 -19 -9 -26 -10c0 0 -3 -1 -8 -1c-36 0 -53 27 -53 53s18 53 53 53c54 0 56 -74 56 -103'], + 0x3C: [547,47,778,77,700,'689 -9c24 -11 7 -47 -18 -36l-581 275c-17 8 -17 32 0 40l581 275c25 11 42 -25 18 -36l-548 -259'], + 0x3D: [367,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20'], + 0x3E: [547,47,778,77,700,'688 230l-581 -275c-25 -11 -42 25 -18 36l548 259l-548 259c-24 11 -7 47 18 36l581 -275c17 -8 17 -32 0 -40'], + 0x3F: [705,0,472,56,415,'415 570c0 -42 -21 -78 -48 -98c-35 -26 -132 -97 -132 -223v-35c0 -18 0 -27 -13 -27c-12 0 -12 6 -12 24v45c0 61 22 153 88 225c18 18 34 36 34 95c0 39 0 107 -109 107c-42 0 -100 -15 -131 -68c14 0 56 0 56 -45c0 -26 -18 -46 -46 -46c-23 0 -46 14 -46 48 c0 65 62 133 170 133c149 0 189 -77 189 -135zM275 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x40: [705,11,778,56,721,'721 338c0 -107 -14 -210 -102 -210c-38 0 -90 19 -100 71c-30 -42 -78 -71 -132 -71c-103 0 -198 93 -198 219s95 219 198 219c39 0 91 -14 137 -77c6 -7 7 -8 23 -8h17c23 0 24 -1 24 -24v-241c0 -15 0 -66 35 -66c66 0 73 90 73 182c0 241 -171 351 -308 351 c-164 0 -307 -145 -307 -336c0 -179 130 -336 312 -336c94 0 187 24 272 64c5 3 7 3 23 3h9c16 0 23 0 23 -10c0 -16 -120 -51 -146 -57c-64 -15 -128 -22 -180 -22c-200 0 -338 170 -338 358c0 199 150 358 333 358c161 0 332 -133 332 -367zM519 262v170c0 18 0 21 -13 40 c-36 56 -84 72 -116 72c-73 0 -132 -86 -132 -197s60 -197 132 -197c20 0 71 6 115 69c14 21 14 25 14 43'], + 0x41: [716,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225'], + 0x42: [683,0,708,36,651,'651 183c0 -94 -90 -183 -223 -183h-392v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h366c130 0 222 -82 222 -169c0 -74 -69 -138 -166 -157c111 -12 193 -87 193 -174zM527 514c0 53 -35 138 -132 138h-124c-47 0 -49 -7 -49 -40v-246h145 c111 0 160 84 160 148zM551 184c0 67 -42 160 -141 160h-188v-273c0 -33 2 -40 49 -40h125c103 0 155 82 155 153'], + 0x43: [705,22,722,56,665,'665 233c0 -116 -98 -255 -261 -255c-186 0 -348 157 -348 364c0 204 161 363 348 363c96 0 147 -50 184 -86l50 74c8 12 12 12 16 12c11 0 11 -7 11 -24v-237c0 -21 0 -24 -16 -24c-14 0 -14 3 -16 17c-20 146 -109 237 -218 237c-61 0 -256 -34 -256 -333 c0 -298 196 -332 257 -332c109 0 216 82 224 225c1 10 1 16 12 16c13 0 13 -7 13 -17'], + 0x44: [683,0,764,35,707,'707 336c0 -188 -138 -336 -306 -336h-366v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h366c171 0 306 -157 306 -347zM607 336c0 78 -9 164 -52 223c-51 71 -120 93 -182 93h-100c-47 0 -49 -7 -49 -40v-541c0 -33 2 -40 49 -40h101c101 0 158 58 178 85 c36 49 55 109 55 220'], + 0x45: [680,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25'], + 0x46: [680,0,653,33,610,'610 455h-25c-16 138 -41 194 -191 194h-120c-47 0 -49 -7 -49 -40v-253h86c96 0 106 33 106 117h25v-265h-25c0 85 -10 117 -106 117h-86v-246c0 -35 0 -48 95 -48h33v-31c-36 3 -127 3 -168 3c-39 0 -117 0 -152 -3v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24 v31h549'], + 0x47: [705,22,785,56,735,'735 242c-65 0 -69 -5 -69 -44v-174c0 -15 0 -23 -9 -23c-11 0 -51 40 -64 62c-34 -59 -114 -85 -187 -85c-190 0 -350 159 -350 364s162 363 348 363c99 0 153 -54 185 -86l50 74c8 12 12 12 16 12c11 0 11 -7 11 -24v-237c0 -21 0 -24 -16 -24c-14 0 -14 3 -16 17 c-20 147 -111 237 -218 237c-60 0 -257 -33 -257 -332c0 -298 198 -333 263 -333c28 0 155 9 155 121v64c0 37 -3 48 -93 48h-32v31c36 -3 121 -3 161 -3l122 3v-31'], + 0x48: [683,0,750,33,716,'716 0c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v262h-299v-262c0 -36 2 -47 79 -47h24v-31c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24 c-77 0 -79 -11 -79 -47v-234h299v234c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-527c0 -36 2 -47 79 -47h24v-31'], + 0x49: [683,0,361,28,333,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31'], + 0x4A: [683,22,514,41,465,'465 652c-63 0 -77 0 -77 -41v-444c0 -34 0 -36 -1 -44c-11 -75 -84 -145 -186 -145c-89 0 -160 60 -160 134c0 44 34 58 56 58c28 0 56 -20 56 -56c0 -26 -12 -56 -64 -56c36 -58 104 -58 110 -58c53 0 103 56 103 148v456c0 35 0 48 -98 48h-36v31c38 -3 126 -3 168 -3 l129 3v-31'], + 0x4B: [683,0,778,33,736,'736 0l-115 3c-38 0 -108 0 -143 -3v31c20 0 59 0 59 30c0 12 -9 25 -15 34l-181 268l-116 -110v-175c0 -36 2 -47 79 -47h24v-31c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24 c-77 0 -79 -11 -79 -47v-318l313 299c8 7 18 17 18 33c0 9 -6 32 -46 33v31c34 -3 91 -3 127 -3c27 0 59 0 85 3v-31c-81 -1 -134 -52 -142 -60l-180 -173l231 -340c30 -44 51 -48 105 -48v-31'], + 0x4C: [683,0,625,33,582,'582 258l-28 -258h-521v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 113 -3 152 -3c41 0 132 0 168 3v-31h-33c-95 0 -95 -14 -95 -48v-533c0 -33 2 -40 49 -40h82c176 0 190 125 201 227h25'], + 0x4D: [683,0,917,37,879,'879 0c-37 3 -104 3 -143 3s-107 0 -144 -3v31h24c77 0 79 11 79 47v574h-1l-246 -633c-4 -11 -7 -19 -18 -19c-10 0 -15 9 -20 22l-241 622h-1v-539c0 -27 0 -74 103 -74v-31l-117 3l-117 -3v31c103 0 103 47 103 74v500c0 36 -2 47 -79 47h-24v31h169c23 0 26 0 35 -22 l217 -560l219 563c7 18 7 19 33 19h169v-31h-24c-77 0 -79 -11 -79 -47v-527c0 -36 2 -47 79 -47h24v-31'], + 0x4E: [683,0,750,33,716,'716 652c-103 0 -103 -47 -103 -74v-552c0 -19 0 -26 -14 -26c-7 0 -8 1 -17 13l-408 600c-4 6 -5 7 -10 12v-520c0 -27 0 -74 103 -74v-31l-117 3l-117 -3v31c103 0 103 47 103 74v522c0 19 -1 20 -24 23c-15 1 -35 2 -50 2h-29v31h170c19 0 20 -1 29 -13l353 -519v427 c0 27 0 74 -103 74v31l117 -3l117 3v-31'], + 0x4F: [705,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349'], + 0x50: [683,0,681,35,624,'624 497c0 -100 -108 -181 -228 -181h-169v-238c0 -36 2 -47 79 -47h24v-31c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h353c137 0 236 -88 236 -186zM521 497c0 49 0 155 -159 155h-89c-47 0 -49 -7 -49 -40v-270h138 c159 0 159 108 159 155'], + 0x51: [705,194,778,56,727,'727 -10c0 -51 -19 -184 -121 -184c-93 0 -107 92 -122 187c-29 -9 -64 -15 -95 -15c-182 0 -333 159 -333 361c0 206 153 366 332 366c182 0 333 -162 333 -366c0 -151 -85 -279 -203 -332c24 -64 49 -98 96 -98c43 0 85 30 91 84c1 10 2 18 11 18c11 0 11 -11 11 -21z M621 339c0 255 -136 341 -233 341c-92 0 -232 -81 -232 -341c0 -230 112 -303 166 -323c-1 2 -14 21 -14 48c0 41 31 84 82 84c59 0 91 -50 113 -106c106 78 118 219 118 297zM477 26c-11 58 -33 100 -87 100c-39 0 -60 -33 -60 -62c0 -15 8 -61 59 -61c22 0 54 4 88 23'], + 0x52: [683,22,736,35,732,'732 88c0 -28 -17 -110 -95 -110c-30 0 -85 6 -126 42c-41 38 -41 78 -41 143c0 67 0 98 -38 134c-35 34 -77 34 -93 34h-115v-253c0 -36 2 -47 79 -47h24v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h314 c147 0 261 -84 261 -180c0 -78 -78 -139 -175 -163c55 -19 104 -52 122 -116l13 -80c14 -93 22 -144 71 -144c25 0 60 18 66 89c1 7 1 16 12 16c13 0 13 -11 13 -17zM507 503c0 145 -112 149 -202 149c-20 0 -49 0 -59 -2c-22 -3 -22 -15 -22 -38v-259h111 c148 0 172 81 172 150'], + 0x53: [705,22,556,56,499,'499 186c0 -110 -80 -208 -197 -208c-89 0 -153 36 -184 70c-33 -53 -36 -57 -36 -57c-7 -11 -8 -13 -15 -13c-11 0 -11 7 -11 24v200c0 18 0 25 13 25c3 0 11 0 12 -10c1 -36 4 -100 62 -154c53 -49 129 -54 158 -54c84 0 134 72 134 143c0 33 -10 66 -31 92 c-28 37 -58 44 -85 51c-70 17 -121 29 -132 33c-78 27 -131 100 -131 183c0 106 84 194 195 194c89 0 130 -41 160 -70l35 57c7 12 8 13 15 13c11 0 11 -7 11 -24v-201c0 -19 0 -24 -13 -24c-11 0 -11 6 -12 12c-6 45 -28 209 -195 209c-78 0 -132 -61 -132 -131 c0 -58 39 -112 101 -127l128 -31c84 -20 150 -102 150 -202'], + 0x54: [677,0,722,36,685,'685 452h-25c-14 161 -29 194 -180 194c-19 0 -46 0 -57 -2c-18 -4 -18 -18 -18 -38v-527c0 -34 0 -48 105 -48h40v-31c-41 3 -144 3 -190 3s-148 0 -189 -3v31h40c105 0 105 14 105 48v527c0 23 0 34 -21 38c-10 2 -36 2 -54 2c-151 0 -166 -33 -180 -194h-25l19 225 h611'], + 0x55: [683,22,750,33,716,'716 652c-103 0 -103 -45 -103 -78v-320c0 -40 0 -49 -3 -69c-17 -114 -107 -207 -222 -207c-136 0 -252 109 -252 250v377c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-381c0 -190 118 -215 165 -215 c95 0 192 80 192 222v347c0 27 0 74 -103 74v31l119 -3l118 3v-31'], + 0x56: [683,22,750,19,730,'730 652c-68 -1 -95 -30 -109 -67l-223 -588c-5 -14 -7 -19 -24 -19c-13 0 -18 3 -25 22l-232 614c-14 38 -33 38 -98 38v31l127 -3c38 0 107 0 143 3v-31c-25 0 -82 0 -82 -29c0 0 0 -4 6 -18l191 -505l183 482c2 6 5 12 5 20c0 23 -21 49 -73 50v31l114 -3 c26 0 66 1 97 3v-31'], + 0x57: [683,22,1028,18,1009,'1009 652c-39 0 -82 -10 -100 -67l-191 -587c-4 -13 -6 -20 -20 -20c-13 0 -16 10 -19 19l-166 509l-165 -508c-4 -13 -6 -20 -20 -20c-13 0 -16 10 -19 19l-200 613c-12 37 -16 42 -91 42v31l122 -3c38 0 106 0 142 3v-31c-26 0 -84 0 -84 -30c0 -3 1 -10 2 -13 l161 -492l139 429l-22 70c-12 36 -33 36 -90 36v31l122 -3c38 0 106 0 142 3v-31c-26 0 -84 0 -84 -30c0 -5 2 -11 3 -15l160 -490l150 462c2 6 5 14 5 20c0 19 -20 52 -87 53v31l119 -3c30 0 61 1 91 3v-31'], + 0x58: [683,0,750,24,726,'726 0l-130 3c-38 0 -111 0 -146 -3v31c43 1 65 18 65 30c0 3 -3 7 -5 11l-158 239l-142 -210c-7 -11 -10 -15 -10 -24c0 -18 17 -45 63 -46v-31c-36 3 -91 3 -128 3l-111 -3v31c101 0 131 46 145 66l164 242l-184 278c-19 28 -38 35 -93 35h-19v31l130 -3 c38 0 111 0 146 3v-31c-43 -1 -65 -18 -65 -30c0 -4 5 -12 7 -15l129 -193l114 169c7 11 9 13 9 23c0 23 -22 45 -62 46v31c40 -3 88 -3 128 -3l111 3v-31c-89 -1 -123 -33 -145 -65l-137 -201l211 -319c21 -31 42 -36 94 -36h19v-31'], + 0x59: [683,0,750,11,738,'738 652c-32 0 -91 -4 -128 -65l-193 -314v-193c0 -39 3 -49 80 -49h23v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v195l-210 342c-16 26 -24 37 -92 37h-18v31l130 -3c39 0 112 0 148 3v-31c-45 0 -70 -4 -70 -25c0 -5 0 -7 7 -17l181 -295 l165 268c4 6 10 19 10 30c0 20 -16 39 -57 39v31l115 -3c27 0 67 1 98 3v-31'], + 0x5A: [683,0,611,56,560,'560 267l-17 -267h-461c-21 0 -26 0 -26 17c0 8 0 9 7 20l389 615h-157c-164 0 -194 -81 -201 -194h-25l11 225h448c20 0 26 0 26 -16c0 -7 0 -8 -7 -19l-388 -614h164c185 0 204 94 212 233h25'], + 0x5B: [750,250,278,114,256,'256 -230c0 -11 -9 -20 -20 -20h-122v1000h122c11 0 20 -9 20 -20s-9 -20 -20 -20h-82v-920h82c11 0 20 -9 20 -20'], + 0x5C: [750,250,500,55,444,'444 -230c0 -11 -9 -20 -20 -20c-9 0 -16 5 -19 13l-349 960c-1 2 -1 5 -1 7c0 11 9 20 20 20c9 0 16 -5 19 -13l349 -960c1 -2 1 -5 1 -7'], + 0x5D: [750,250,278,22,164,'164 -250h-122c-11 0 -20 9 -20 20s9 20 20 20h82v920h-82c-11 0 -20 9 -20 20s9 20 20 20h122v-1000'], + 0x5E: [744,-562,556,-5,561,'561 584l-12 -22l-272 123l-271 -123l-11 22l283 160'], + 0x5F: [-100,140,333,0,333,'333 -140h-333v40h333v-40'], + 0x60: [698,-510,500,126,312,'312 528l-17 -18l-152 122c-9 7 -17 18 -17 30c0 18 18 36 36 36c15 0 26 -11 30 -17'], + 0x61: [448,11,500,32,483,'483 89c0 -81 -61 -95 -82 -95c-47 0 -74 42 -78 82c-19 -47 -65 -87 -131 -87c-63 0 -160 25 -160 106c0 44 25 96 100 130c63 30 133 33 184 36v37c0 89 -57 128 -106 128c-32 0 -81 -11 -108 -46c46 -1 51 -34 51 -46c0 -26 -18 -46 -46 -46c-26 0 -46 17 -46 47 c0 66 69 113 151 113c48 0 98 -16 137 -55c36 -37 36 -76 36 -118v-200c0 -5 4 -50 37 -50c11 0 36 6 36 64v56h25v-56zM316 140v100c-165 -6 -207 -89 -207 -144c0 -50 41 -85 90 -85c45 0 117 34 117 129'], + 0x62: [694,11,556,28,521,'521 216c0 -129 -104 -227 -223 -227c-74 0 -116 50 -131 73l-36 -62h-25v596c0 49 -8 56 -78 56v31l144 11v-317c16 18 59 65 137 65c114 0 212 -99 212 -226zM438 217c0 41 -3 98 -29 139c-24 38 -60 64 -105 64c-24 0 -79 -8 -118 -64c-11 -16 -11 -17 -11 -36v-206 c0 -18 0 -21 14 -42c24 -37 60 -61 105 -61c54 0 92 33 113 64c29 45 31 105 31 142'], + 0x63: [448,11,444,34,415,'415 119c0 -10 -32 -130 -166 -130c-116 0 -215 99 -215 227c0 124 92 232 217 232c77 0 153 -39 153 -107c0 -30 -20 -47 -46 -47c-28 0 -46 20 -46 46c0 13 6 43 47 46c-35 36 -98 37 -107 37c-53 0 -135 -42 -135 -205c0 -161 88 -204 141 -204c37 0 102 12 131 105 c2 6 4 10 13 10c3 0 13 0 13 -10'], + 0x64: [694,11,556,34,527,'527 0l-147 -11v66c-25 -32 -70 -66 -134 -66c-114 0 -212 99 -212 226c0 129 105 227 223 227c54 0 97 -26 126 -62v216c0 49 -8 56 -78 56v31l144 11v-607c0 -49 8 -56 78 -56v-31zM380 118v205c0 18 0 20 -11 37c-31 45 -73 60 -108 60c-54 0 -92 -33 -113 -64 c-29 -45 -31 -105 -31 -142c0 -41 3 -98 29 -139c24 -38 60 -64 105 -64c43 0 88 22 118 70c11 17 11 19 11 37'], + 0x65: [448,11,444,28,415,'415 119c0 -19 -45 -130 -167 -130c-115 0 -220 97 -220 231c0 125 92 228 208 228c125 0 179 -97 179 -196c0 -21 -3 -21 -25 -21h-279c0 -36 0 -102 30 -150c23 -37 63 -67 113 -67c10 0 100 0 135 103c2 8 4 14 13 14c5 0 13 -2 13 -12zM349 252 c0 39 -10 174 -113 174c-34 0 -118 -25 -124 -174h237'], + 0x66: [705,0,306,33,357,'357 635c0 -24 -15 -44 -44 -44c-27 0 -43 20 -43 43c0 25 18 38 30 42c-15 7 -30 7 -33 7c-44 0 -92 -48 -92 -136v-116h117v-31h-114v-322c0 -36 2 -47 76 -47h21v-31c-40 3 -87 3 -127 3l-114 -3v31c67 0 78 0 78 45v324h-79v31h79v115c0 106 85 159 155 159 c53 0 90 -33 90 -70'], + 0x67: [453,206,500,28,485,'485 404c0 -23 -19 -30 -29 -30c-16 0 -29 12 -29 29c0 12 5 23 16 27c-3 1 -10 1 -10 1c-18 0 -54 -5 -90 -39c25 -23 41 -60 41 -97c0 -77 -69 -146 -162 -146c-19 0 -60 3 -99 31c-17 -20 -17 -43 -17 -47c0 -32 21 -63 53 -67c7 -1 50 -1 75 -1c61 0 119 0 172 -28 c51 -28 65 -79 65 -114c0 -78 -104 -129 -222 -129c-122 0 -221 55 -221 127c0 40 32 83 92 100c-31 20 -44 58 -44 89c0 35 18 68 31 83c-25 21 -47 59 -47 103c0 77 69 146 162 146c22 0 64 -3 106 -36c42 41 86 47 106 47c39 0 51 -32 51 -49zM309 296 c0 23 0 123 -87 123c-40 0 -63 -28 -71 -40c-15 -25 -16 -57 -16 -84c0 -23 0 -123 87 -123c40 0 63 28 71 40c15 25 16 57 16 84zM419 -79c0 86 -112 86 -198 86h-59c-44 -3 -82 -40 -82 -86c0 -53 69 -104 170 -104c98 0 169 50 169 104'], + 0x68: [694,0,556,32,535,'535 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v520c0 49 -8 56 -78 56v31l144 11v-348h1c16 36 60 96 144 96c58 0 91 -20 105 -37 c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31'], + 0x69: [657,0,278,33,247,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM192 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x6A: [657,205,306,-40,210,'210 -50c0 -91 -62 -155 -137 -155c-57 0 -113 28 -113 80c0 26 18 46 46 46s46 -20 46 -46c0 -27 -20 -41 -35 -45c26 -13 49 -13 54 -13c64 0 73 86 73 131v396c0 49 -9 56 -86 56v31l152 11v-492zM210 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53 c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x6B: [694,0,528,28,511,'511 0c-29 2 -58 3 -87 3l-108 -3v31c19 0 36 4 36 23c0 18 -42 74 -119 180l-64 -55v-103c0 -45 11 -45 78 -45v-31l-110 3l-109 -3v31c67 0 78 0 78 45v520c0 49 -8 56 -78 56v31l144 11v-480l141 122c8 7 22 19 22 39c0 13 -10 24 -29 25v31c14 -1 76 -3 112 -3 c28 0 41 0 70 3v-31c-21 -1 -63 -3 -126 -54c-10 -8 -81 -68 -81 -72c0 -3 5 -9 6 -11l127 -179c38 -53 60 -53 97 -53v-31'], + 0x6C: [694,0,278,33,255,'255 0l-111 3l-111 -3v31c67 0 78 0 78 45v520c0 49 -8 56 -78 56v31l144 11v-618c0 -45 11 -45 78 -45v-31'], + 0x6D: [442,0,833,32,813,'813 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31 c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l141 11v-105c28 62 75 105 148 105c45 0 119 -11 133 -98c17 38 61 98 145 98c58 0 91 -20 105 -37c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31'], + 0x6E: [442,0,556,32,535,'535 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l141 11v-105c28 62 75 105 148 105c58 0 91 -20 105 -37 c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31'], + 0x6F: [448,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134'], + 0x70: [442,194,556,28,521,'521 216c0 -129 -104 -227 -223 -227c-76 0 -118 54 -123 70v-9v-168c0 -45 11 -45 78 -45v-31l-113 3l-112 -3v31c67 0 78 0 78 45v468c0 44 -7 50 -78 50v31l144 11v-66c20 22 62 66 140 66c112 0 209 -99 209 -226zM438 216c0 113 -61 201 -134 201 c-51 0 -100 -29 -129 -80v-223c0 -20 0 -21 14 -42c27 -41 65 -61 105 -61c74 0 144 84 144 205'], + 0x71: [442,194,528,34,527,'527 -194l-113 3l-112 -3v31c67 0 78 0 78 45v179c-22 -29 -63 -72 -133 -72c-116 0 -213 101 -213 226c0 130 105 227 221 227c80 0 121 -63 134 -91l38 91h22v-560c0 -45 11 -45 78 -45v-31zM383 136v141c0 53 -42 140 -122 140c-74 0 -144 -83 -144 -202 c0 -115 61 -204 134 -204c47 0 79 27 92 41c22 24 40 52 40 84'], + 0x72: [442,0,392,28,364,'364 381c0 -32 -25 -44 -43 -44c-22 0 -43 15 -43 43c0 26 20 38 23 39c-2 1 -4 1 -11 1c-76 0 -118 -89 -118 -188v-154c0 -36 2 -47 76 -47h21v-31c-40 3 -87 3 -127 3l-114 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l139 11v-110c14 43 50 110 123 110 c43 0 74 -29 74 -61'], + 0x73: [448,11,394,33,360,'360 128c0 -72 -46 -139 -161 -139c-21 0 -66 1 -110 43c-18 -19 -18 -21 -20 -23c-19 -19 -20 -20 -25 -20c-11 0 -11 7 -11 24v132c0 18 0 25 13 25c10 0 11 -4 14 -17c19 -85 55 -142 139 -142c78 0 113 40 113 91c0 72 -82 88 -104 92c-72 14 -100 20 -132 46 c-27 22 -43 50 -43 85c0 56 38 123 160 123c15 0 56 0 94 -28c4 3 14 12 17 16c13 12 15 12 20 12c11 0 11 -7 11 -24v-101c0 -19 0 -24 -13 -24c0 0 -11 0 -12 9c-2 31 -7 121 -117 121c-86 0 -112 -41 -112 -76c0 -58 67 -71 123 -82c42 -8 81 -16 114 -48 c12 -12 42 -42 42 -95'], + 0x74: [615,11,389,19,332,'332 124c0 -64 -28 -135 -99 -135c-36 0 -129 12 -129 135v276h-85v22c98 4 128 111 129 193h25v-184h143v-31h-143v-278c0 -17 0 -108 67 -108c37 0 67 38 67 112v55h25v-57'], + 0x75: [442,11,556,32,535,'535 0l-144 -11v90c-29 -62 -73 -90 -129 -90c-152 0 -152 91 -152 169v150c0 89 0 92 -78 92v31l147 11v-332c0 -52 4 -99 88 -99c73 0 121 68 121 155v178c0 49 -8 56 -78 56v31l147 11v-355c0 -49 8 -56 78 -56v-31'], + 0x76: [431,11,528,19,508,'508 400c-66 -1 -83 -44 -92 -67l-131 -325c-4 -10 -8 -19 -21 -19s-15 5 -21 19l-144 355c-13 31 -17 37 -80 37v31c30 -2 70 -3 97 -3l109 3v-31c-18 0 -57 0 -57 -26c0 0 0 -4 6 -17l112 -279l102 255c4 11 6 15 6 24c0 19 -11 42 -48 43v31l87 -3c23 0 52 1 75 3v-31 '], + 0x77: [431,11,722,18,703,'703 400c-35 -1 -66 -14 -84 -64l-117 -328c-4 -10 -7 -19 -20 -19s-16 8 -20 19l-102 284l-101 -283c-5 -14 -7 -20 -20 -20s-16 8 -21 22l-126 354c-12 32 -24 35 -74 35v31l93 -3l109 3v-31c-20 0 -59 0 -59 -27c0 -4 0 -6 5 -18l95 -267l86 242c-7 19 -18 49 -23 55 c-10 13 -26 15 -63 15v31c30 -2 59 -3 89 -3l104 3v-31c-20 0 -59 0 -59 -27c0 -5 1 -7 5 -19l99 -279l91 256c5 13 5 15 5 21c0 29 -22 47 -58 48v31l93 -3c22 0 51 1 73 3v-31'], + 0x78: [431,0,528,12,516,'516 0c-30 2 -69 3 -96 3l-108 -3v31c27 1 36 16 36 25c0 6 -13 22 -21 33l-76 100c-61 -72 -90 -105 -90 -127c0 -15 7 -28 29 -31v-31l-95 3c-26 0 -57 -1 -83 -3v31c21 0 80 2 128 60c47 57 47 59 94 119l-99 129c-47 60 -48 61 -118 61v31c27 -2 74 -3 95 -3l108 3 v-31c-20 -1 -35 -10 -35 -25c0 -6 0 -8 9 -18l78 -101l62 78c5 6 15 19 15 35s-8 29 -29 31v31c13 -1 66 -3 96 -3c26 0 56 1 82 3v-31c-47 -1 -88 -16 -119 -52c-24 -26 -62 -75 -92 -113l134 -173c23 -29 41 -31 95 -31v-31'], + 0x79: [431,205,528,19,508,'508 400c-16 0 -67 -1 -93 -64l-176 -427c-24 -57 -65 -114 -128 -114c-50 0 -92 36 -92 81c0 30 22 43 42 43c23 0 42 -16 42 -42c0 -16 -8 -38 -39 -42c19 -18 42 -18 47 -18c64 0 92 69 114 124l25 59l-150 365c-14 35 -33 35 -81 35v31c30 -2 70 -3 97 -3l109 3v-31 c-19 0 -56 0 -56 -26c0 -4 2 -8 6 -18l111 -269l101 246c5 12 6 14 6 24c0 25 -16 42 -47 43v31l87 -3c23 0 52 1 75 3v-31'], + 0x7A: [431,0,444,28,401,'401 187l-17 -187h-330c-19 0 -26 0 -26 14c0 5 0 7 9 18l279 377h-114c-110 0 -129 -37 -135 -139h-25l11 161h320c18 0 26 0 26 -13c0 -4 0 -6 -9 -17l-278 -376h118c116 0 137 44 146 162h25'], + 0x7B: [750,250,500,75,425,'425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12'], + 0x7C: [750,250,278,119,159,'159 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960'], + 0x7D: [750,250,500,75,425,'425 250c0 -7 -5 -12 -12 -12c-75 0 -130 -55 -130 -113v-250c0 -73 -91 -125 -196 -125c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 49 130 101v250c0 58 48 104 115 125c-67 21 -115 67 -115 125v250c0 52 -55 101 -130 101c-7 0 -12 5 -12 12s5 12 12 12 c105 0 196 -52 196 -125v-250c0 -58 55 -113 130 -113c7 0 12 -5 12 -12'], + 0x7E: [307,-193,556,0,555,'555 290l-54 -44c-17 -14 -37 -25 -57 -35c-22 -10 -48 -18 -73 -18c-40 0 -71 17 -100 34c-35 20 -64 37 -104 37c-51 0 -104 -30 -153 -71l-14 17l54 44c17 14 37 25 57 35c22 10 48 18 73 18c40 0 71 -17 100 -34c35 -20 64 -37 104 -37c51 0 104 30 153 71'], + 0xA0: [0,0,332,0,0,''], + 0xA3: [683,35,750,62,688,'688 144c0 -88 -29 -179 -105 -179c-86 0 -148 64 -213 118c-12 -76 -112 -105 -207 -105c-57 0 -101 47 -101 104c0 67 71 105 144 105c36 0 67 -12 96 -30c-5 57 -19 113 -28 170h-155v30h150c-3 24 -6 49 -6 74c0 128 69 252 186 252c89 0 164 -66 164 -152 c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46c4 0 8 -1 11 -1c-20 48 -71 81 -129 81c-93 0 -116 -118 -116 -226c0 -25 2 -50 5 -74h156v-30h-152c11 -74 29 -148 29 -223c52 -43 104 -87 171 -87c68 0 120 58 120 127h26zM304 115l-1 17c-29 17 -61 29 -97 29 c-59 0 -118 -26 -118 -79c0 -42 33 -78 75 -78c73 0 141 44 141 111'], + 0xA5: [683,0,750,11,738,'738 652c-32 0 -91 -4 -128 -65l-152 -248h142v-30h-161l-22 -36v-82h183v-30h-183v-81c0 -39 3 -49 80 -49h23v-31c-36 3 -107 3 -146 3s-110 0 -146 -3v31h24c77 0 79 11 79 47v83h-181v30h181v82l-22 36h-159v30h140l-169 276c-16 26 -24 37 -92 37h-18v31l130 -3 c39 0 112 0 148 3v-31c-45 0 -70 -4 -70 -25c0 -5 0 -7 7 -17l166 -271h30l150 244c4 6 10 19 10 30c0 20 -16 39 -57 39v31l115 -3c27 0 67 1 98 3v-31'], + 0xA7: [705,205,444,69,374,'374 -53c0 -80 -65 -152 -153 -152c-78 0 -138 57 -138 119c0 32 25 36 34 36c16 0 33 -12 33 -33c0 -15 -9 -32 -35 -34c21 -51 73 -66 105 -66c67 0 97 72 97 130c0 56 -30 114 -99 144c-43 20 -149 66 -149 166c0 61 40 126 113 147c-58 31 -113 77 -113 149 c0 80 65 152 153 152c78 0 138 -57 138 -119c0 -32 -25 -36 -34 -36c-16 0 -33 12 -33 33c0 15 9 32 35 34c-21 51 -73 66 -105 66c-67 0 -97 -72 -97 -130c0 -56 30 -114 99 -144c43 -20 149 -66 149 -166c0 -61 -40 -126 -113 -147c58 -31 113 -77 113 -149zM317 243 c0 98 -87 144 -101 144c-43 0 -90 -53 -90 -130c0 -98 87 -144 101 -144c43 0 90 53 90 130'], + 0xA8: [652,-557,500,113,388,'210 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM388 605c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0xAC: [367,-133,667,47,620,'620 153c0 -11 -9 -20 -20 -20s-20 9 -20 20v174h-513c-11 0 -20 9 -20 20s9 20 20 20h533c11 0 20 -9 20 -20v-194'], + 0xAE: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM643 342c0 166 -135 301 -301 301c-167 0 -302 -135 -302 -301c0 -167 135 -302 302 -302c166 0 301 135 301 302zM549 208c0 -15 -10 -61 -53 -61 c-16 0 -47 4 -69 24c-23 21 -23 43 -23 78c0 37 0 54 -21 74c-19 19 -42 19 -51 19h-63v-139c0 -20 1 -26 43 -26h14v-17l-81 1l-80 -1v17h13c42 0 43 6 43 26v290c0 20 -1 26 -43 26h-13v17h173c81 0 143 -46 143 -99c0 -43 -43 -77 -96 -90c30 -11 57 -29 67 -64l7 -44 c8 -51 13 -79 39 -79c14 0 34 10 37 49c0 3 0 8 6 8c8 0 8 -6 8 -9zM425 437c0 80 -62 82 -112 82c-11 0 -27 0 -32 -1c-12 -2 -12 -9 -12 -21v-143h61c81 0 95 45 95 83'], + 0xAF: [620,-589,500,70,431,'431 589h-361v31h361v-31'], + 0xB0: [683,-406,375,49,326,'326 544c0 -76 -62 -138 -138 -138c-77 0 -139 62 -139 138c0 77 62 139 139 139c76 0 138 -62 138 -139zM286 544c0 55 -44 99 -98 99c-55 0 -99 -44 -99 -99c0 -54 44 -98 99 -98c54 0 98 44 98 98'], + 0xB1: [583,84,778,56,722,'722 -64c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h293v274h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20s-9 -20 -20 -20h-293v-274h293c11 0 20 -9 20 -20'], + 0xB4: [698,-510,500,188,374,'374 662c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0xB5: [441,194,556,32,534,'534 0l-145 -11v86h-1c-28 -59 -72 -86 -127 -86c-38 0 -66 7 -81 13v-118c0 -47 9 -47 78 -47v-31l-113 3l-113 -3v31c69 0 78 0 78 47v457c0 51 -7 58 -78 58v31l148 11v-330c0 -52 3 -100 86 -100c74 0 120 68 120 156v174c0 51 -7 58 -78 58v31l148 11v-352 c0 -51 7 -58 78 -58v-31'], + 0xB7: [303,-197,278,86,192,'192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0xD7: [491,-9,778,148,630,'624 15c-7 -8 -20 -8 -28 0l-207 207l-207 -207c-8 -8 -21 -8 -28 0c-8 7 -8 20 0 28l207 207l-207 207c-8 8 -8 21 0 28c7 8 20 8 28 0l207 -207l207 207c8 8 21 8 28 0c8 -7 8 -20 0 -28l-207 -207l207 -207c8 -8 8 -21 0 -28'], + 0xF0: [695,11,500,28,471,'471 238c0 -51 0 -120 -69 -188c-28 -27 -82 -61 -152 -61c-122 0 -222 99 -222 224c0 133 105 234 219 234c54 0 95 -34 121 -73c-25 89 -78 165 -149 221l-86 -50l-15 27l73 42c-36 24 -76 43 -119 55l8 26c53 -12 105 -31 153 -57l91 53l16 -27l-76 -44 c60 -38 112 -90 149 -153c58 -100 58 -179 58 -229zM387 214c0 121 -63 211 -138 211c-32 0 -74 -15 -104 -58c-30 -45 -33 -100 -33 -145c0 -38 2 -97 28 -141c27 -45 68 -67 110 -67c19 0 137 7 137 200'], + 0xF7: [504,4,778,56,722,'722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM442 451c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM442 49c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x131: [442,0,278,33,247,'247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31'], + 0x237: [442,205,306,-40,210,'210 -50c0 -91 -62 -155 -137 -155c-57 0 -113 28 -113 80c0 26 18 46 46 46s46 -20 46 -46c0 -27 -20 -41 -35 -45c26 -13 49 -13 54 -13c64 0 73 86 73 131v396c0 49 -9 56 -86 56v31l152 11v-492'], + 0x2C6: [692,-516,500,98,402,'402 530l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0x2C7: [692,-516,500,98,402,'402 678l-152 -162l-152 162l13 14l139 -108l139 108'], + 0x2D8: [690,-518,500,101,400,'400 690c-2 -105 -72 -172 -150 -172c-74 0 -147 64 -149 172h22c2 -85 65 -134 128 -134c59 0 125 47 127 134h22'], + 0x2D9: [657,-551,278,85,192,'192 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x2DA: [705,-529,750,279,471,'438 617c0 41 -25 58 -63 58c-39 0 -63 -18 -63 -58c0 -41 25 -58 63 -58c39 0 63 18 63 58zM471 618c0 -49 -41 -89 -97 -89c-51 0 -95 38 -95 89c0 44 39 87 97 87c54 0 95 -41 95 -87'], + 0x2DC: [651,-558,500,84,417,'417 636c-51 -56 -70 -78 -108 -78c-17 0 -35 7 -62 23c-17 10 -42 25 -65 25c-44 0 -82 -48 -82 -48l-16 15c51 56 70 78 108 78c17 0 35 -7 62 -23c17 -10 42 -25 65 -25c44 0 82 48 82 48'], + 0x300: [733,-545,0,-388,-202,'-202 563l-17 -18l-152 122c-9 7 -17 18 -17 30c0 18 18 36 36 36c15 0 26 -11 30 -17'], + 0x301: [733,-545,0,-326,-140,'-140 697c0 -12 -8 -23 -17 -30l-152 -122l-17 18l120 153c4 6 15 17 30 17c18 0 36 -18 36 -36'], + 0x302: [734,-587,0,-446,-82,'-82 607l-12 -20c-58 25 -115 54 -170 85c-55 -31 -112 -60 -170 -85l-12 20c56 49 117 91 182 127c65 -36 126 -78 182 -127'], + 0x303: [746,-554,0,-449,-79,'-79 734c0 -1 0 -1 -1 -2c-8 -62 -19 -103 -58 -122c-14 -7 -30 -10 -45 -10c-31 0 -63 12 -92 25c-22 10 -45 22 -67 22c-8 0 -17 -2 -25 -6c-27 -13 -52 -32 -58 -77c-1 -5 -6 -10 -12 -10s-12 5 -12 12c0 1 0 1 1 2c8 62 19 103 58 122c14 7 30 10 45 10 c31 0 63 -12 92 -25c22 -10 45 -22 67 -22c8 0 17 2 25 6c27 13 52 32 58 77c1 5 6 10 12 10s12 -5 12 -12'], + 0x304: [640,-609,0,-444,-83,'-83 609h-361v31h361v-31'], + 0x306: [729,-592,0,-451,-77,'-77 721c-26 -79 -103 -129 -187 -129s-161 50 -187 129l22 8c21 -63 95 -83 165 -83s144 20 165 83'], + 0x307: [677,-571,0,-318,-211,'-211 624c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x308: [672,-577,0,-401,-126,'-304 625c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47zM-126 625c0 -23 -18 -48 -49 -48c-27 0 -48 23 -48 48c0 22 18 47 49 47c27 0 48 -23 48 -47'], + 0x30A: [725,-549,0,-360,-168,'-201 637c0 41 -25 58 -63 58c-39 0 -63 -18 -63 -58c0 -41 25 -58 63 -58c39 0 63 18 63 58zM-168 638c0 -49 -41 -89 -97 -89c-51 0 -95 38 -95 89c0 44 39 87 97 87c54 0 95 -41 95 -87'], + 0x30B: [732,-546,0,-386,-94,'-261 698c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34zM-94 698c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34'], + 0x30C: [725,-578,0,-446,-82,'-82 705c-56 -49 -117 -91 -182 -127c-65 36 -126 78 -182 127l12 20c58 -25 115 -54 170 -85c55 31 112 60 170 85'], + 0x338: [750,250,0,-458,-69,'-69 730c0 -2 -1 -5 -2 -7l-349 -960c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l349 960c2 8 10 13 19 13c11 0 20 -9 20 -20'], + 0x391: [716,0,750,32,717,'717 0l-131 3c-38 0 -108 0 -144 -3v31c27 0 83 0 83 30c0 4 -2 10 -3 14l-53 153h-247l-46 -131c-1 -2 -2 -12 -2 -15c0 -26 25 -51 75 -51v-31l-115 3l-102 -3v31c54 1 94 16 112 67l207 598c5 14 8 20 24 20s18 -7 23 -20l216 -625c11 -33 25 -40 85 -40h18v-31z M458 259l-113 325l-112 -325h225'], + 0x392: [683,0,708,36,651,'651 183c0 -94 -90 -183 -223 -183h-392v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h366c130 0 222 -82 222 -169c0 -74 -69 -138 -166 -157c111 -12 193 -87 193 -174zM527 514c0 53 -35 138 -132 138h-124c-47 0 -49 -7 -49 -40v-246h145 c111 0 160 84 160 148zM551 184c0 67 -42 160 -141 160h-188v-273c0 -33 2 -40 49 -40h125c103 0 155 82 155 153'], + 0x393: [680,0,625,33,582,'582 455h-25c-16 135 -37 194 -180 194h-103c-47 0 -49 -7 -49 -40v-530c0 -35 0 -48 95 -48h33v-31c-36 3 -127 3 -168 3c-39 0 -117 0 -152 -3v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h521'], + 0x394: [716,0,833,47,785,'785 8c0 -8 -6 -8 -22 -8h-694c-16 0 -22 0 -22 8c0 0 0 3 5 12l338 678c7 13 9 18 26 18s19 -5 26 -18l338 -678c5 -9 5 -12 5 -12zM653 76l-269 540l-270 -540h539'], + 0x395: [680,0,681,33,652,'652 258l-42 -258h-577v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h563l28 -225h-25c-16 139 -43 194 -196 194h-129c-47 0 -49 -7 -49 -40v-240h90c97 0 108 31 108 117h25v-265h-25c0 85 -11 117 -108 117h-90v-267c0 -33 2 -40 49 -40h133 c172 0 195 73 220 227h25'], + 0x396: [683,0,611,56,560,'560 267l-17 -267h-461c-21 0 -26 0 -26 17c0 8 0 9 7 20l389 615h-157c-164 0 -194 -81 -201 -194h-25l11 225h448c20 0 26 0 26 -16c0 -7 0 -8 -7 -19l-388 -614h164c185 0 204 94 212 233h25'], + 0x397: [683,0,750,33,716,'716 0c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v262h-299v-262c0 -36 2 -47 79 -47h24v-31c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24 c-77 0 -79 -11 -79 -47v-234h299v234c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24c-77 0 -79 -11 -79 -47v-527c0 -36 2 -47 79 -47h24v-31'], + 0x398: [705,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM624 339c0 253 -135 344 -236 344c-96 0 -235 -87 -235 -344c0 -252 137 -338 236 -338c94 0 235 83 235 338zM567 270h-25v34h-307v-34h-25v144h25v-34 h307v34h25v-144'], + 0x399: [683,0,361,28,333,'333 0c-35 3 -114 3 -153 3c-38 0 -117 0 -152 -3v31h26c79 0 82 11 82 47v527c0 36 -3 47 -82 47h-26v31c35 -3 114 -3 153 -3c38 0 117 0 152 3v-31h-26c-79 0 -82 -11 -82 -47v-527c0 -36 3 -47 82 -47h26v-31'], + 0x39A: [683,0,778,33,736,'736 0l-115 3c-38 0 -108 0 -143 -3v31c20 0 59 0 59 30c0 12 -9 25 -15 34l-181 268l-116 -110v-175c0 -36 2 -47 79 -47h24v-31c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31c35 -3 110 -3 148 -3s112 0 147 3v-31h-24 c-77 0 -79 -11 -79 -47v-318l313 299c8 7 18 17 18 33c0 9 -6 32 -46 33v31c34 -3 91 -3 127 -3c27 0 59 0 85 3v-31c-81 -1 -134 -52 -142 -60l-180 -173l231 -340c30 -44 51 -48 105 -48v-31'], + 0x39B: [716,0,694,32,661,'661 0l-123 3c-38 0 -109 0 -144 -3v31c26 0 85 0 85 30c0 0 0 4 -5 18l-158 492l-150 -466c-5 -14 -5 -17 -5 -22c0 -24 23 -51 77 -52v-31l-113 3l-93 -3v31c70 0 90 39 100 69l192 595c5 17 7 21 23 21c11 0 17 -2 23 -21l200 -621c12 -37 15 -43 91 -43v-31'], + 0x39C: [683,0,917,37,879,'879 0c-37 3 -104 3 -143 3s-107 0 -144 -3v31h24c77 0 79 11 79 47v574h-1l-246 -633c-4 -11 -7 -19 -18 -19c-10 0 -15 9 -20 22l-241 622h-1v-539c0 -27 0 -74 103 -74v-31l-117 3l-117 -3v31c103 0 103 47 103 74v500c0 36 -2 47 -79 47h-24v31h169c23 0 26 0 35 -22 l217 -560l219 563c7 18 7 19 33 19h169v-31h-24c-77 0 -79 -11 -79 -47v-527c0 -36 2 -47 79 -47h24v-31'], + 0x39D: [683,0,750,33,716,'716 652c-103 0 -103 -47 -103 -74v-552c0 -19 0 -26 -14 -26c-7 0 -8 1 -17 13l-408 600c-4 6 -5 7 -10 12v-520c0 -27 0 -74 103 -74v-31l-117 3l-117 -3v31c103 0 103 47 103 74v522c0 19 -1 20 -24 23c-15 1 -35 2 -50 2h-29v31h170c19 0 20 -1 29 -13l353 -519v427 c0 27 0 74 -103 74v31l117 -3l117 3v-31'], + 0x39E: [677,0,667,42,624,'619 521h-25c-2 41 -5 67 -12 78c-6 8 -65 8 -76 8h-346c-9 0 -70 0 -76 -8c-7 -11 -10 -37 -12 -78h-25l8 156h556zM624 167l-8 -167h-566l-8 167h25c2 -44 4 -74 12 -87c7 -10 62 -10 80 -10h348c22 0 74 0 80 11c8 14 9 40 12 86h25zM527 266h-25v51h-338v-51h-25v172 h25v-51h338v51h25v-172'], + 0x39F: [705,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM618 353c0 256 -143 327 -230 327c-83 0 -229 -68 -229 -327c0 -261 134 -349 230 -349c92 0 229 84 229 349'], + 0x3A0: [680,0,750,33,716,'716 0c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v571h-299v-571c0 -36 2 -47 79 -47h24v-31c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v524c0 36 -2 47 -79 47h-24v31h683v-31h-24c-77 0 -79 -11 -79 -47v-524c0 -36 2 -47 79 -47 h24v-31'], + 0x3A1: [683,0,681,35,624,'624 497c0 -100 -108 -181 -228 -181h-169v-238c0 -36 2 -47 79 -47h24v-31c-35 3 -110 3 -148 3s-112 0 -147 -3v31h24c77 0 79 11 79 47v527c0 36 -2 47 -79 47h-24v31h353c137 0 236 -88 236 -186zM521 497c0 49 0 155 -159 155h-89c-47 0 -49 -7 -49 -40v-270h138 c159 0 159 108 159 155'], + 0x3A3: [683,0,722,56,665,'665 236l-28 -236h-555c-15 0 -25 0 -25 11c0 3 0 5 10 16l238 271l-249 362c0 23 2 23 26 23h555l28 -225h-25c-21 158 -71 194 -240 194h-231l205 -296c3 -4 7 -9 7 -14c0 0 0 -6 -9 -16l-251 -284h276c157 0 225 27 243 194h25'], + 0x3A4: [677,0,722,36,685,'685 452h-25c-14 161 -29 194 -180 194c-19 0 -46 0 -57 -2c-18 -4 -18 -18 -18 -38v-527c0 -34 0 -48 105 -48h40v-31c-41 3 -144 3 -190 3s-148 0 -189 -3v31h40c105 0 105 14 105 48v527c0 23 0 34 -21 38c-10 2 -36 2 -54 2c-151 0 -166 -33 -180 -194h-25l19 225 h611'], + 0x3A5: [705,0,778,56,721,'721 552c0 -8 0 -17 -16 -17c-13 0 -14 7 -15 16c-7 62 -68 77 -99 77c-132 0 -158 -182 -158 -277v-272c0 -35 0 -48 95 -48h33v-31c-36 3 -132 3 -173 3s-136 0 -172 -3v31h33c95 0 95 14 95 48v272c0 80 -20 277 -158 277c-5 0 -91 0 -99 -80c-1 -5 -1 -13 -15 -13 c-16 0 -16 9 -16 17c0 60 40 153 131 153c159 0 194 -200 201 -243h1c24 152 97 243 201 243c91 0 131 -93 131 -153'], + 0x3A6: [683,0,722,56,665,'665 341c0 -101 -111 -194 -266 -206v-56c0 -35 0 -48 95 -48h33v-31c-36 3 -129 3 -170 3s-133 0 -169 -3v31h33c95 0 95 14 95 48v56c-149 15 -260 104 -260 207c0 99 107 191 260 206v56c0 35 0 48 -95 48h-33v31c36 -3 129 -3 170 -3s133 0 169 3v-31h-33 c-95 0 -95 -14 -95 -48v-56c152 -12 266 -103 266 -207zM316 158v367c-150 -20 -160 -132 -160 -184c0 -62 18 -164 160 -183zM565 342c0 76 -28 168 -166 184v-369c151 18 166 125 166 185'], + 0x3A7: [683,0,750,24,726,'726 0l-130 3c-38 0 -111 0 -146 -3v31c43 1 65 18 65 30c0 3 -3 7 -5 11l-158 239l-142 -210c-7 -11 -10 -15 -10 -24c0 -18 17 -45 63 -46v-31c-36 3 -91 3 -128 3l-111 -3v31c101 0 131 46 145 66l164 242l-184 278c-19 28 -38 35 -93 35h-19v31l130 -3 c38 0 111 0 146 3v-31c-43 -1 -65 -18 -65 -30c0 -4 5 -12 7 -15l129 -193l114 169c7 11 9 13 9 23c0 23 -22 45 -62 46v31c40 -3 88 -3 128 -3l111 3v-31c-89 -1 -123 -33 -145 -65l-137 -201l211 -319c21 -31 42 -36 94 -36h19v-31'], + 0x3A8: [683,0,778,57,720,'720 543c0 -9 -7 -10 -13 -11c-54 -7 -55 -96 -55 -112c0 -44 -1 -123 -53 -194c-39 -52 -100 -82 -172 -91v-56c0 -35 0 -48 95 -48h33v-31c-36 3 -129 3 -170 3s-133 0 -169 -3v31h33c95 0 95 14 95 48v56c-68 9 -129 38 -168 92c-48 67 -51 146 -51 169 c-1 118 -26 132 -59 136c-6 1 -9 6 -9 11c0 11 10 11 25 11h37c44 0 88 -19 89 -140c0 -65 5 -219 136 -254v444c0 35 0 48 -95 48h-33v31c36 -3 129 -3 170 -3s133 0 169 3v-31h-33c-95 0 -95 -14 -95 -48v-444c108 26 141 132 142 242c1 145 50 152 89 152h38 c16 0 24 0 24 -11'], + 0x3A9: [705,0,722,44,677,'677 162l-33 -162h-159c-23 0 -26 0 -26 21c0 69 32 159 47 201c29 82 56 158 56 233c0 156 -106 228 -202 228c-91 0 -201 -68 -201 -228c0 -75 28 -154 49 -212c23 -64 54 -152 54 -222c0 -21 -3 -21 -25 -21h-160l-33 162h25c5 -25 10 -51 18 -74c5 -15 8 -23 66 -23 h80c-13 56 -45 104 -89 170c-47 71 -88 140 -88 219c0 137 133 251 305 251c169 0 304 -112 304 -251c0 -79 -41 -148 -88 -219c-45 -66 -76 -114 -89 -170h80c58 0 61 8 66 24c9 24 13 47 18 73h25'], + 0x3B1: [442,11,641,57,637,'637 60c4 -16 -13 -71 -66 -71c-45 0 -86 31 -112 84c-61 -61 -127 -84 -190 -84c-102 0 -181 76 -204 169c-36 141 61 284 198 284c74 0 179 -49 218 -206l16 -62c32 59 46 135 48 198c1 18 0 21 10 21c11 0 14 -10 14 -10s9 -117 -56 -235c-7 -12 -6 -14 -1 -35 c6 -24 25 -102 56 -102c0 0 38 0 44 49c1 7 4 10 11 10c6 0 12 -3 14 -10zM448 99c-6 17 -20 75 -30 112c-19 78 -52 209 -151 209c-35 0 -84 -19 -113 -92c-19 -51 -18 -159 -6 -208c16 -64 57 -109 117 -109c40 0 115 11 183 88'], + 0x3B2: [706,194,558,84,486,'486 186c-1 -53 -25 -104 -64 -140c-43 -38 -99 -57 -156 -57c-68 0 -124 40 -156 98l1 -274c0 -4 -4 -7 -9 -7h-5c-6 0 -11 4 -13 12l1 615c0 136 57 273 177 273c47 0 93 -18 128 -50c24 -22 42 -51 50 -82c3 -12 4 -24 4 -37c0 -45 -20 -86 -52 -116 c-8 -8 -17 -14 -25 -20c20 -11 37 -26 54 -43c27 -31 47 -68 57 -108c5 -20 7 -42 8 -64zM418 191c0 29 -2 59 -9 87c-7 25 -16 48 -32 69c-11 16 -24 29 -39 39c-23 -9 -47 -13 -72 -13c-35 0 -76 0 -82 24l-1 7c0 27 42 27 78 27c24 0 49 -5 71 -13c7 5 15 12 21 19 c24 29 32 67 32 105c0 17 -2 34 -6 50c-5 19 -12 36 -25 51c-22 26 -54 40 -88 40c-110 0 -155 -129 -156 -255l1 -242c0 -17 2 -33 6 -49c18 -71 72 -126 144 -126c44 0 87 19 116 52c31 35 41 82 41 128zM303 403c-11 3 -24 5 -37 5c-24 0 -57 0 -58 -9c0 -4 31 -4 53 -4 c14 0 29 3 42 8'], + 0x3B3: [442,215,586,29,515,'515 421c1 -4 -6 -26 -10 -38c-20 -79 -47 -228 -54 -327c-1 -13 1 -26 2 -39c3 -31 8 -88 6 -172c-2 -38 -4 -60 -17 -60c-8 0 -15 7 -18 18c-6 26 -5 142 -1 215c2 20 2 37 -13 98c-20 79 -74 254 -225 254c-11 0 -120 -1 -130 -116l-3 -5c-10 0 -19 0 -22 10 c-7 31 25 183 150 183c69 0 121 -49 160 -110c63 -97 83 -173 92 -204c15 101 30 201 58 296c1 7 7 7 10 7c0 0 12 0 15 -10'], + 0x3B4: [712,11,474,59,403,'403 182c0 -98 -48 -193 -136 -193c-56 0 -110 26 -147 68c-26 29 -44 63 -53 100c-5 20 -8 40 -7 61c-1 58 19 115 58 158c28 30 62 51 101 60c-44 56 -91 120 -104 173c-5 19 -6 36 -1 51c4 14 12 26 23 34c11 9 25 13 39 16c7 1 16 2 25 2c36 0 81 -10 120 -19 c14 -3 24 -13 27 -26c2 -6 1 -12 0 -18c-4 -13 -17 -22 -31 -22c-3 0 -7 1 -11 2c-42 16 -78 48 -124 50c-11 0 -20 -1 -30 -6c-8 -5 -14 -14 -16 -23c-2 -5 -2 -11 0 -17c11 -45 94 -124 152 -181c37 -35 68 -75 89 -122c5 -15 10 -30 14 -46c8 -33 12 -68 12 -102z M342 163c1 27 -3 55 -10 81c-4 17 -9 34 -17 50c-19 42 -46 80 -75 116l-5 5c-28 -9 -54 -29 -72 -55c-29 -42 -36 -95 -36 -147c0 -28 1 -57 8 -84c5 -22 15 -43 27 -61c24 -34 59 -57 100 -57c63 0 80 79 80 152'], + 0x3B5: [453,22,535,59,420,'420 81c4 -15 -31 -103 -163 -103c-106 0 -178 61 -194 126c-11 46 7 102 57 135c-4 3 -47 28 -57 71c-19 76 72 143 187 143c68 0 138 -38 143 -57c4 -14 -7 -27 -20 -27c-7 0 -10 2 -23 10c-47 28 -83 28 -99 28c-90 0 -179 -36 -163 -97c6 -27 28 -46 54 -58 c33 17 67 19 88 19c38 0 74 -3 80 -27c8 -31 -47 -31 -73 -31c-24 0 -53 0 -90 14c-53 -30 -68 -83 -59 -117c17 -71 106 -86 167 -86c120 0 135 37 143 60c1 3 3 7 8 7c6 0 12 -4 14 -10zM284 243c-19 5 -23 6 -48 6c-17 0 -38 -1 -59 -9c20 -5 32 -5 54 -5c38 0 40 1 53 8 '], + 0x3B6: [697,205,530,70,487,'484 -84c14 -57 -17 -121 -79 -121c-53 0 -105 38 -108 48c-2 7 2 11 7 11c4 0 6 -1 14 -7c26 -18 56 -30 82 -30c37 0 46 39 39 66c-12 47 -56 61 -79 68c-31 10 -33 10 -66 21c-78 24 -176 54 -212 195c-48 194 64 378 156 431c-12 15 -20 33 -24 50c-1 3 -12 49 6 49 c7 0 13 -5 15 -13c0 0 1 -23 4 -37c6 -21 9 -26 17 -38c23 10 50 10 61 10c40 0 81 -2 87 -27c8 -31 -56 -31 -81 -31c-20 0 -43 0 -66 18c-87 -54 -165 -229 -127 -384c5 -19 19 -76 71 -114c29 -21 46 -26 133 -53c64 -20 85 -26 106 -45c10 -8 34 -29 44 -67zM378 591 c-19 5 -23 6 -56 6c-13 0 -31 0 -44 -7c12 -7 19 -7 40 -7c44 0 53 5 60 8'], + 0x3B7: [442,216,530,2,465,'465 277l-1 -453c0 -11 0 -40 -31 -40c-17 0 -31 12 -35 27c0 0 -1 4 -1 16l-1 460c0 40 -4 58 -5 63c-9 36 -29 70 -72 70s-69 -19 -87 -35c-27 -27 -44 -83 -45 -92c0 -6 1 -39 0 -45c1 -23 0 -45 0 -67v-90c1 -25 0 -74 0 -74c-2 -20 -18 -28 -30 -28 c-15 0 -31 9 -36 27c-1 5 -1 28 -2 43l1 231c0 52 0 63 -5 84c-10 38 -26 46 -43 46c-36 0 -44 -48 -43 -119c-1 -22 -1 -23 -11 -23c0 0 -12 0 -15 10c-1 3 -3 63 7 97c4 18 14 57 60 57c45 0 94 -30 113 -87c16 35 55 87 134 87c75 0 125 -42 141 -107c7 -27 7 -40 7 -58'], + 0x3B8: [705,11,488,57,430,'412 500c56 -224 -24 -511 -165 -511c-91 0 -148 111 -171 205c-58 229 26 511 165 511c102 0 155 -139 171 -205zM348 363c0 99 -5 150 -17 199c-15 57 -37 121 -86 121c-45 0 -68 -56 -82 -105c-23 -71 -23 -151 -24 -215h209zM347 331h-208c-1 -98 7 -156 18 -198 c23 -93 51 -122 84 -122c43 0 69 49 87 117c20 72 20 157 19 203'], + 0x3B9: [442,11,308,50,304,'303 143c9 -33 -31 -154 -145 -154c-56 0 -94 41 -105 82c-8 32 5 79 6 107c-1 10 2 35 2 45c0 13 3 101 4 106c1 19 -2 68 0 87c3 19 20 26 31 26c17 0 31 -10 35 -27c2 -8 3 -176 -11 -297c-4 -27 -6 -50 0 -74c8 -30 20 -33 34 -33c43 0 118 33 125 131 c0 7 1 11 10 11c3 0 12 0 14 -10'], + 0x3BA: [442,11,530,64,525,'525 143c0 0 3 -60 -11 -102c-12 -34 -33 -52 -65 -52c-52 0 -102 40 -117 99c-2 8 -4 19 -4 35c0 10 -1 15 -3 22c-16 65 -108 82 -192 85c-1 -168 0 -149 -1 -185c0 -32 0 -56 -30 -56c-15 0 -31 9 -36 27c-2 7 -2 9 -2 23l1 367c0 36 28 36 31 36c17 0 31 -10 35 -27 c2 -5 1 -52 2 -78l-1 -78c33 12 54 27 107 85c35 37 81 87 142 87c36 0 47 -26 49 -35c6 -25 -8 -54 -40 -54c-31 0 -44 23 -47 35c-1 5 -1 17 -1 22c-35 -17 -58 -41 -95 -80c-21 -23 -46 -50 -75 -68c57 -2 197 -9 220 -103c3 -11 3 -24 3 -33c1 -17 3 -41 6 -56 c9 -35 23 -48 44 -48c45 0 55 55 56 124c0 14 0 18 10 18c3 0 12 0 14 -10'], + 0x3BB: [694,13,537,19,563,'563 -1c1 -3 1 -9 -8 -10h-22c-27 0 -37 0 -59 22c-21 23 -108 176 -175 281l-170 -284c-5 -10 -12 -21 -28 -21s-33 12 -37 29c-3 13 1 19 10 31l208 274l-165 272c-42 68 -51 74 -85 80c0 0 -10 2 -12 10c-2 11 11 11 16 11c47 0 104 -13 139 -71l347 -569 c12 -20 21 -35 34 -46c4 -4 7 -6 7 -9'], + 0x3BC: [442,216,530,65,525,'525 143c0 0 3 -63 -5 -99c-8 -32 -25 -55 -60 -55c-44 0 -88 28 -108 73c-17 -28 -45 -73 -115 -73c-20 0 -66 4 -105 31c0 -154 0 -206 -1 -215c-2 -3 -9 -21 -30 -21c-17 0 -31 12 -35 27c0 0 -1 4 -1 16v579c0 35 28 36 31 36c17 0 31 -10 35 -27c2 -5 1 -43 1 -64 v-168c0 -28 0 -56 8 -85c13 -54 45 -87 95 -87c81 0 107 91 106 96l1 102v187c0 34 25 35 30 35c15 0 32 -9 36 -27c2 -6 1 -44 2 -67c0 -15 -1 -53 0 -68l-1 -108c1 -35 0 -82 6 -104c5 -20 14 -46 41 -46c41 0 45 59 45 124c0 14 0 18 10 18c3 0 12 0 14 -10'], + 0x3BD: [442,0,502,-18,436,'435 415c3 -9 10 -145 -92 -268c-79 -96 -178 -135 -245 -147h-14c-6 0 -16 1 -19 12v45v245c0 27 0 74 -2 81c-2 10 -6 17 -54 17c-15 0 -24 0 -27 12c-4 18 6 19 14 20c26 2 97 10 120 10c13 0 15 -11 15 -11l2 -398c105 37 229 149 236 376c1 29 23 33 31 33 c17 0 31 -10 35 -27'], + 0x3BE: [697,205,530,70,484,'481 -98c13 -49 -15 -107 -77 -107c-56 0 -118 36 -121 48c-1 4 -1 11 7 11c4 0 6 -1 13 -5c13 -8 52 -32 96 -32c31 0 41 30 35 53c-7 29 -29 36 -45 43c-65 23 -67 23 -133 47c-82 28 -92 32 -132 65c-3 3 -37 31 -49 79c-9 36 -10 130 81 202l10 10 c-54 27 -82 69 -91 106c-20 77 28 157 128 187c-2 4 -12 19 -17 39c-1 3 -12 49 6 49c7 0 13 -5 15 -13c0 0 1 -23 4 -37c5 -17 8 -24 14 -33c24 5 48 5 61 5c39 0 84 -1 90 -27c8 -31 -56 -31 -81 -31c-23 0 -46 0 -70 22c-65 -37 -82 -114 -68 -170c5 -19 17 -52 49 -78 c34 12 63 12 81 12c39 0 83 -2 89 -27c8 -31 -55 -31 -85 -31c-21 0 -51 0 -91 13c-74 -42 -91 -129 -81 -170c11 -42 48 -71 97 -89l66 -24c23 -7 45 -15 67 -23l67 -23c12 -5 53 -23 65 -71zM350 591c-19 5 -23 6 -57 6c-11 0 -32 0 -47 -5c13 -9 25 -9 44 -9 c44 0 53 5 60 8zM350 319c-19 5 -23 6 -58 6c-12 0 -34 0 -56 -6c20 -8 29 -8 52 -8c46 0 55 4 62 8'], + 0x3BF: [448,11,500,28,471,'471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134'], + 0x3C0: [431,11,586,3,516,'515 407c9 -34 -27 -34 -40 -34h-114c2 -52 8 -106 22 -159c7 -28 23 -93 70 -165c9 -14 10 -16 11 -22c5 -20 -11 -38 -31 -38c-15 0 -28 6 -49 50c-16 34 -23 61 -27 76c-16 67 -18 110 -22 258h-113l-1 -221l-2 -98c-3 -37 -4 -65 -34 -65c-13 0 -31 8 -36 27 c-2 7 -2 9 2 24c19 91 43 212 45 333h-57c-20 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 5 13 51 38 90c32 47 70 47 92 47h335c19 0 40 0 46 -24'], + 0x3C1: [442,216,488,65,429,'421 279c38 -149 -56 -290 -173 -290c-47 0 -86 27 -116 67c0 -108 1 -242 -1 -251c-2 -3 -9 -21 -30 -21c-17 0 -31 12 -35 27c0 0 -1 4 -1 16v393c0 122 80 222 177 222c73 0 153 -57 179 -163zM339 322c-18 69 -57 98 -94 98c-31 0 -75 -22 -100 -95 c-12 -40 -13 -76 -13 -188c0 -13 0 -33 1 -37c2 -9 38 -89 108 -89c38 0 78 32 96 95c14 49 15 161 2 216'], + 0x3C2: [442,108,474,69,425,'423 0c13 -53 -18 -108 -75 -108c-16 0 -63 8 -67 23c-1 6 4 10 9 10c3 0 7 -1 9 -2c20 -8 37 -9 43 -9c29 0 39 28 33 53c-7 31 -28 41 -52 53l-107 52c-49 23 -120 58 -142 143c-28 112 67 227 219 227c39 0 105 -8 110 -30c2 -8 -5 -17 -13 -17c-3 0 -6 2 -16 6 c-39 16 -61 19 -82 19c-109 0 -196 -83 -173 -174c15 -62 63 -85 105 -106c52 -26 54 -26 74 -36c87 -42 113 -54 125 -104'], + 0x3C3: [431,11,599,57,529,'528 407c9 -34 -27 -34 -40 -34h-110c42 -44 54 -92 58 -109c39 -154 -64 -275 -182 -275c-91 0 -168 70 -190 158c-29 119 40 284 191 284h228c18 0 39 0 45 -24zM369 276c-8 31 -32 97 -116 97c-34 0 -91 -14 -115 -83c-21 -59 -12 -141 -5 -171 c18 -72 67 -108 116 -108c39 0 87 26 111 85c21 51 21 133 9 180'], + 0x3C4: [431,12,530,3,460,'459 407c9 -34 -27 -34 -40 -34h-168l18 -342c1 -15 3 -43 -30 -43c-22 0 -33 16 -36 27c-1 4 0 25 1 37l18 321h-83c-21 0 -78 0 -108 -77c-4 -8 -5 -12 -13 -12c-12 0 -14 10 -14 10c-2 6 14 54 38 90c32 47 71 47 91 47h280c19 0 40 0 46 -24'], + 0x3C5: [442,11,530,2,486,'477 372c4 -16 27 -153 -15 -265c-14 -36 -53 -118 -143 -118c-73 0 -167 28 -193 132c-8 30 -10 70 5 181c4 35 8 60 1 86c-8 32 -25 32 -33 32c-34 0 -67 -29 -70 -124c-1 -16 -1 -18 -11 -18c0 0 -12 0 -15 10c-2 9 -1 154 94 154c50 0 91 -37 102 -82 c5 -19 3 -36 1 -47c-14 -110 -17 -162 -6 -204c5 -21 17 -51 43 -73c26 -21 60 -25 79 -25c126 0 157 205 141 271c-12 48 -44 74 -58 85c-11 8 -18 14 -21 27c-6 22 13 48 38 48c17 0 47 -14 61 -70'], + 0x3C6: [442,218,641,42,597,'590 304c40 -158 -75 -315 -241 -315c-17 0 -25 1 -34 2c9 -142 12 -175 11 -183c-4 -23 -26 -26 -31 -26c-10 0 -30 6 -36 28c-1 5 0 7 0 20l12 168c-114 25 -198 98 -221 192c-24 96 16 241 44 241c10 0 14 -6 15 -10c0 0 1 -4 -5 -13c-43 -69 -38 -179 -31 -207 c18 -72 88 -128 201 -148c11 195 23 389 168 389c75 0 129 -60 148 -138zM568 282c-12 48 -53 102 -122 102c-89 0 -143 -96 -142 -224l7 -108c1 -3 2 -4 14 -4c8 -1 10 -1 18 -1c154 0 253 122 225 235'], + 0x3C7: [442,205,641,3,637,'637 -140c3 -13 -11 -65 -69 -65c-89 0 -123 50 -144 80c-38 56 -60 95 -117 199l-165 -257c-3 -4 -7 -11 -14 -11c-6 0 -13 6 -15 12c0 3 -1 5 7 16l166 257c6 8 6 11 6 11c-1 3 -62 119 -114 198c-28 44 -77 120 -107 120c-6 0 -37 -4 -42 -43c-1 -5 -1 -11 -10 -11 c-12 0 -15 10 -15 10c-3 14 10 66 68 66c88 0 122 -50 139 -73c36 -53 50 -78 122 -205l165 255c5 7 7 12 13 12c8 0 14 -6 15 -12c1 -3 2 -5 -7 -16l-171 -267c41 -77 170 -319 221 -319c19 0 40 16 43 40c0 10 0 14 10 14s14 -6 15 -11'], + 0x3C8: [694,205,641,2,597,'596 216c-3 -30 -13 -74 -43 -120c-67 -107 -155 -107 -192 -107l-1 -149c0 -14 1 -39 -2 -41c-1 -4 -8 -4 -8 -4c-12 0 -14 10 -14 10c-1 3 -1 84 -1 95c1 53 0 55 -1 91c-97 6 -185 47 -209 142c-4 17 -11 43 6 169c4 35 8 60 1 86c-8 32 -25 32 -33 32 c-34 0 -67 -29 -70 -124c-1 -16 -1 -18 -11 -18c0 0 -12 0 -15 10c-2 9 -1 154 94 154c50 0 91 -37 102 -82c5 -20 2 -37 1 -49c-19 -140 -12 -166 -7 -186c16 -66 64 -103 142 -112l1 661c-1 18 0 20 10 20c5 0 12 -1 14 -11c2 -5 1 -11 1 -15l-1 -657c36 0 100 0 166 89 c26 36 58 118 42 182c-12 48 -44 74 -58 85c-11 8 -18 14 -21 27c-6 22 13 48 38 48c17 0 47 -14 61 -70c11 -44 11 -131 8 -156'], + 0x3C9: [442,11,641,42,596,'596 239c1 -121 -30 -250 -134 -250c-67 0 -113 44 -140 106c-22 -62 -63 -106 -126 -106c-76 0 -121 62 -141 143c-9 35 -13 74 -13 112c0 63 9 127 36 184c4 6 10 9 16 9c3 0 6 0 9 -2c6 -3 11 -8 13 -14c1 -4 0 -9 -2 -13c-25 -53 -47 -109 -47 -169 c1 -22 4 -45 9 -65c15 -63 54 -113 115 -113c55 0 93 39 113 93c-7 29 -10 59 -10 90c0 22 3 47 22 47c14 0 22 -11 26 -26c2 -8 2 -17 2 -26c1 -30 -2 -60 -8 -88c22 -52 65 -90 121 -90c79 0 114 92 114 183c0 12 -2 25 -5 37c-9 35 -30 66 -60 88c-9 7 -15 15 -17 25 c-3 11 -1 22 6 32s19 16 31 16c9 0 17 -3 25 -9c18 -13 29 -35 35 -61c10 -40 11 -90 10 -133'], + 0x3D1: [705,11,530,2,523,'523 338c2 -9 -3 -12 -7 -12c-6 0 -37 7 -48 9c-4 -188 -71 -346 -177 -346c-65 0 -140 20 -164 115c-7 29 -7 54 -7 84v73c0 37 0 91 -5 113c-10 38 -26 46 -43 46c-36 0 -44 -48 -43 -119c-1 -22 -1 -23 -11 -23c0 0 -12 0 -15 10c-1 3 -3 63 7 97c4 18 14 57 60 57 s99 -32 114 -92c3 -15 4 -36 3 -53v-48v-77c1 -23 1 -55 7 -81c8 -29 26 -80 94 -80c59 0 83 99 89 127c16 68 17 126 17 216c-76 23 -182 71 -206 168c-20 78 19 183 102 183c105 0 151 -162 161 -199c3 -12 16 -66 17 -150l31 -6c14 -3 22 -4 24 -12zM394 376 c-1 57 -2 125 -18 188c-26 104 -57 119 -82 119c-70 0 -97 -98 -82 -160c23 -91 129 -130 182 -147'], + 0x3D5: [694,205,641,63,576,'571 262c33 -134 -78 -269 -238 -274l-1 -149c1 -14 1 -38 -1 -40c-2 -3 -4 -4 -9 -4s-12 1 -15 11v88v94c-124 7 -213 86 -237 181c-34 136 80 269 237 274l1 231c-1 17 0 20 10 20c12 0 14 -10 14 -10l1 -14v-227c142 -10 218 -102 238 -181zM307 10v411 c-146 -13 -197 -153 -167 -273c25 -100 106 -135 167 -138zM500 283c-22 88 -90 134 -167 138v-411c147 12 197 155 167 273'], + 0x3D6: [431,11,836,3,766,'765 407c5 -17 -7 -28 -15 -32c-5 -2 -32 -2 -49 -2c13 -24 23 -49 29 -74c25 -98 -11 -310 -157 -310c-81 0 -121 66 -138 137c-3 9 -5 20 -6 26l-1 1c-26 -84 -77 -164 -174 -164c-74 0 -104 65 -117 116c-27 108 -2 197 37 268c-63 0 -74 0 -99 -18 c-22 -15 -35 -35 -44 -58c-4 -10 -5 -13 -13 -13c-12 0 -14 10 -14 10c-2 5 13 51 38 90c32 47 70 47 92 47h585c19 0 40 0 46 -24zM705 299c-4 16 -16 50 -30 74h-470c-42 -70 -67 -153 -46 -235c14 -59 44 -91 90 -91c62 0 161 50 170 236c0 9 3 11 11 11c0 0 12 0 14 -10 c0 0 1 -3 1 -19c1 -54 9 -89 12 -102c18 -69 50 -116 111 -116c112 0 163 148 137 252'], + 0x3F0: [442,12,624,37,586,'586 145c2 -9 1 -154 -94 -154c-50 0 -82 52 -82 126c0 53 8 128 20 183c-84 -103 -185 -226 -260 -300c-9 -9 -18 -12 -25 -12c-17 0 -28 16 -28 35c0 9 3 19 10 28c32 63 61 184 61 267c0 60 -21 97 -55 98c-34 0 -66 -25 -69 -120c-1 -16 -4 -18 -11 -18s-12 0 -15 10 c-2 9 -1 154 94 154c50 0 82 -52 82 -126c0 -55 -9 -132 -22 -189c116 135 188 224 263 306c4 5 9 6 14 6c11 0 21 -7 26 -13c6 -7 9 -16 9 -24c0 -7 -2 -14 -7 -20c-42 -112 -61 -183 -61 -267c0 -60 21 -96 55 -97c34 0 66 24 69 119c1 16 4 18 11 18s12 0 15 -10'], + 0x3F1: [442,194,488,64,429,'421 279c37 -147 -54 -290 -174 -290c-64 0 -122 43 -155 107c2 -100 11 -138 13 -146c17 -67 63 -67 153 -67c100 0 144 0 156 -49c6 -24 1 -28 -8 -28c-11 0 -12 6 -15 12c-3 8 -7 9 -22 10c-6 1 -8 1 -26 1c-40 0 -59 -4 -96 -4c-122 0 -152 47 -165 98 c-22 89 -17 310 -16 321c14 128 96 198 176 198c73 0 153 -57 179 -163zM339 322c-18 69 -57 98 -94 98c-33 0 -77 -25 -100 -95c-15 -46 -19 -146 -3 -209c21 -82 67 -105 99 -105c38 0 78 32 96 95c14 49 15 161 2 216'], + 0x3F4: [705,22,778,56,721,'721 339c0 -202 -151 -361 -333 -361c-178 0 -332 156 -332 361c0 206 153 366 332 366c182 0 333 -162 333 -366zM623 380c-14 222 -140 303 -235 303c-91 0 -220 -78 -234 -303h469zM623 304h-469c12 -225 141 -303 235 -303c90 0 222 75 234 303'], + 0x3F5: [431,11,414,67,421,'421 40c3 -11 -52 -51 -117 -51c-106 0 -201 79 -228 189c-39 153 70 253 200 253h35c17 0 30 0 34 -14c4 -17 -12 -17 -29 -17h-31c-91 0 -132 -58 -135 -143h162c17 0 29 0 32 -14c5 -17 -13 -17 -29 -17h-165c0 -12 1 -50 10 -85c22 -88 82 -130 140 -130 c37 0 70 17 96 37c8 6 12 6 12 6c9 0 12 -11 13 -14'], + 0x2002: [0,0,500,0,0,''], + 0x2003: [0,0,1000,0,0,''], + 0x2004: [0,0,333,0,0,''], + 0x2005: [0,0,250,0,0,''], + 0x2006: [0,0,167,0,0,''], + 0x2009: [0,0,200,0,0,''], + 0x200A: [0,0,100,0,0,''], + 0x2013: [277,-255,500,0,499,'499 255h-499v22h499v-22'], + 0x2014: [277,-255,1000,0,999,'999 255h-999v22h999v-22'], + 0x2016: [750,250,398,111,287,'151 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960zM287 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960'], + 0x2018: [693,-394,278,72,192,'192 447c0 -26 -18 -53 -53 -53c-43 0 -67 45 -67 105c0 118 83 194 94 194c5 0 10 -4 10 -11c0 -3 0 -5 -12 -17c-63 -62 -70 -134 -70 -166c0 -4 2 -18 2 -18s2 1 3 3c6 6 20 16 40 16c36 0 53 -27 53 -53'], + 0x2019: [694,-395,278,86,206,'206 589c0 -118 -83 -194 -94 -194c-5 0 -10 4 -10 11c0 3 0 5 12 17c63 62 70 134 70 166c0 4 -2 18 -2 18s-2 -1 -3 -3c-6 -6 -20 -16 -40 -16c-36 0 -53 27 -53 53s18 53 53 53c43 0 67 -45 67 -105'], + 0x201C: [693,-394,472,72,386,'192 447c0 -26 -18 -53 -53 -53c-43 0 -67 45 -67 105c0 118 83 194 94 194c5 0 10 -4 10 -11c0 -3 0 -5 -12 -17c-63 -62 -70 -134 -70 -166c0 -4 2 -18 2 -18s2 1 3 3c6 6 20 16 40 16c36 0 53 -27 53 -53zM386 447c0 -26 -18 -53 -53 -53c-43 0 -67 45 -67 105 c0 118 83 194 94 194c5 0 10 -4 10 -11c0 -3 0 -5 -12 -17c-63 -62 -70 -134 -70 -166c0 -4 2 -18 2 -18s2 1 3 3c6 6 20 16 40 16c36 0 53 -27 53 -53'], + 0x201D: [694,-395,472,86,400,'206 589c0 -118 -83 -194 -94 -194c-5 0 -10 4 -10 11c0 3 0 5 12 17c63 62 70 134 70 166c0 4 -2 18 -2 18s-2 -1 -3 -3c-6 -6 -20 -16 -40 -16c-36 0 -53 27 -53 53s18 53 53 53c43 0 67 -45 67 -105zM400 589c0 -118 -83 -194 -94 -194c-5 0 -10 4 -10 11 c0 3 0 5 12 17c63 62 70 134 70 166c0 4 -2 18 -2 18s-2 -1 -3 -3c-6 -6 -20 -16 -40 -16c-36 0 -53 27 -53 53s18 53 53 53c43 0 67 -45 67 -105'], + 0x2020: [705,216,444,56,387,'387 430c0 -5 -2 -33 -37 -33c-21 0 -50 8 -69 14c-19 5 -39 9 -50 10c2 -27 5 -48 10 -71c14 -71 14 -78 14 -132c0 -96 -5 -199 -9 -262c-2 -51 -5 -104 -11 -154c-2 -13 -2 -18 -14 -18c-11 0 -12 6 -13 20c-9 95 -20 263 -20 414c0 53 0 61 14 133c5 25 8 45 10 70 c-20 -2 -45 -9 -48 -10c-21 -6 -50 -14 -71 -14c-31 0 -37 21 -37 34c0 5 2 33 37 33c21 0 50 -8 69 -14c19 -5 39 -9 50 -10c-1 29 -4 61 -11 107c-4 24 -13 82 -13 117c0 9 0 41 34 41c33 0 33 -33 33 -41c0 -37 -6 -74 -11 -111c-11 -65 -12 -93 -13 -113 c20 2 45 9 48 10c21 6 50 14 71 14c31 0 37 -21 37 -34'], + 0x2021: [705,205,444,56,387,'387 477c0 -5 -2 -33 -37 -33c-21 0 -50 8 -69 14c-19 5 -39 9 -50 10c1 -26 6 -54 13 -95c7 -35 11 -64 11 -84c0 -14 -4 -39 -34 -39c-11 0 -33 4 -33 39c0 28 7 68 13 101c3 14 10 48 11 78c-20 -2 -45 -9 -48 -10c-21 -6 -50 -14 -71 -14c-31 0 -37 21 -37 34 c0 5 2 33 37 33c21 0 50 -8 69 -14c19 -5 39 -9 50 -10c-1 26 -6 54 -13 95c-7 35 -11 64 -11 84c0 36 23 39 33 39c34 0 34 -32 34 -39c0 -28 -7 -68 -13 -101c-3 -14 -10 -48 -11 -78c20 2 45 9 48 10c21 6 50 14 71 14c31 0 37 -21 37 -34zM387 22c0 -15 -10 -33 -34 -33 c-5 0 -23 0 -56 9c-40 11 -43 12 -66 14c2 -30 7 -61 10 -72c6 -34 14 -77 14 -106c0 -14 -4 -39 -34 -39c-11 0 -33 4 -33 39c0 5 0 28 11 84c7 42 11 66 13 94c-17 -2 -24 -3 -63 -13c-11 -4 -35 -10 -59 -10s-34 18 -34 33c0 13 9 33 34 33c7 0 24 0 56 -9 c40 -11 43 -12 66 -14c-2 30 -7 61 -10 72c-6 34 -14 77 -14 106c0 14 4 39 34 39c11 0 33 -4 33 -39c0 -5 0 -28 -11 -84c-7 -42 -11 -66 -13 -94c22 2 29 4 55 12c31 8 48 11 68 11c21 0 33 -16 33 -33'], + 0x2026: [106,0,837,87,751,'193 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM472 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM751 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2032: [748,-430,311,60,251,'251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38'], + 0x2033: [748,-430,511,60,451,'251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38zM451 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38'], + 0x2034: [748,-430,711,60,651,'251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38zM451 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38zM651 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21 c21 0 38 -17 38 -38'], + 0x2035: [748,-430,311,60,251,'251 430h-27l-159 261c-3 5 -5 12 -5 19c0 21 17 38 38 38c15 0 29 -10 33 -21'], + 0x2044: [750,250,500,56,445,'445 730c0 -2 0 -5 -1 -7l-349 -960c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l349 960c3 8 10 13 19 13c11 0 20 -9 20 -20'], + 0x2057: [748,-430,911,60,851,'251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38zM451 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38zM651 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21 c21 0 38 -17 38 -38zM851 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38'], + 0x20D7: [711,-521,0,-472,-56,'-56 616c0 -7 -5 -12 -11 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -13 -9c-9 0 -15 7 -15 15c0 2 0 4 1 6c10 23 26 43 45 59h-327c-8 0 -15 7 -15 15s7 15 15 15h327c-19 16 -35 36 -45 59c-1 2 -1 4 -1 6c0 8 6 15 15 15c6 0 11 -4 13 -9c16 -34 45 -60 81 -72 c6 -2 11 -7 11 -14'], + 0x210F: [694,11,576,55,546,'546 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 5 32 13 55c24 61 62 170 62 224c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90l-19 -76c-5 -14 -21 -26 -37 -26c-9 0 -29 5 -29 28 c0 6 0 8 4 22l103 409l-78 -48c-2 -1 -4 -2 -7 -2c-6 0 -12 5 -12 12c0 4 3 8 6 10l99 61l34 134l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-38 -154l150 91c1 1 4 2 6 2c6 0 12 -5 12 -12c0 -4 -2 -8 -6 -10 l-170 -104l-32 -131c37 46 85 77 148 77c75 0 115 -42 115 -107c0 -58 -45 -177 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124c5 15 5 18 15 18c3 0 12 0 12 -10'], + 0x2111: [686,27,554,28,533,'533 655c-47 -44 -98 -82 -155 -112l-129 47c-19 6 -37 11 -57 11c-30 0 -59 -10 -80 -32c-29 -29 -53 -75 -67 -113l-17 11c13 35 32 78 48 112c11 23 26 49 43 67c26 30 56 40 95 40c42 0 104 -29 154 -53c17 -8 34 -16 53 -16c15 0 35 6 47 13c22 11 39 27 54 41z M514 578c-20 -18 -39 -41 -53 -64c-9 -16 -12 -32 -12 -50c0 -22 1 -54 3 -65c7 -51 12 -106 12 -154c0 -62 -14 -126 -59 -171c-57 -57 -131 -101 -213 -101c-37 0 -69 24 -96 48l-53 -37l-5 16c32 44 109 124 114 128c27 -58 32 -68 45 -81c17 -17 45 -29 69 -29 c30 0 48 12 68 32c16 16 27 46 33 68c9 29 11 59 11 89c0 48 -5 89 -10 127c-4 33 -8 67 -8 95c0 12 1 23 2 34c40 44 89 90 140 122'], + 0x2113: [705,12,417,11,398,'398 627c0 -155 -142 -324 -223 -405c-20 -20 -20 -22 -22 -25c-3 -5 -5 -51 -5 -57c0 -78 16 -130 61 -130c29 0 66 15 130 78c9 8 10 9 13 9c9 0 12 -9 12 -12c0 -10 -47 -49 -61 -59c-21 -15 -56 -38 -96 -38c-73 0 -102 74 -112 153c-8 -8 -28 -27 -36 -34 c-28 -28 -31 -31 -36 -31c-6 0 -12 8 -12 13c0 4 3 7 5 10l77 73c0 119 31 236 79 345c10 23 84 188 167 188c59 0 59 -61 59 -78zM374 631c0 16 0 52 -34 52c-32 0 -53 -40 -80 -94c-57 -117 -100 -339 -102 -350c48 50 216 225 216 392'], + 0x2118: [453,216,636,56,598,'598 259c0 -134 -117 -270 -229 -270c-57 0 -91 39 -91 85c0 16 4 44 28 44c18 0 20 -11 20 -18c0 -6 0 -20 -23 -25c1 -53 42 -64 65 -64c31 0 80 21 121 94c23 42 48 135 48 186c0 49 -18 97 -73 97c-65 0 -208 -35 -315 -266c13 -18 48 -61 61 -79 c35 -44 44 -56 44 -94c0 -79 -65 -165 -132 -165c-50 0 -66 38 -66 81c0 46 24 150 48 213c-25 30 -41 49 -41 107c0 131 91 268 163 268c3 0 13 0 13 -10s-7 -11 -14 -12c-61 -10 -116 -132 -116 -218c0 -14 0 -45 23 -69c112 220 251 266 334 266c88 0 132 -73 132 -151z M207 -80c0 15 -2 26 -12 41l-74 94c-14 -47 -40 -138 -40 -190c0 -20 0 -59 41 -59c42 0 85 57 85 114'], + 0x211C: [686,27,828,27,826,'676 463c-13 1 -27 6 -37 16c-7 7 -14 44 -16 69c-1 19 -7 37 -16 53c-8 16 -24 27 -42 27c-25 0 -52 -10 -69 -28c-25 -24 -44 -50 -66 -88c1 -5 5 -48 5 -61c0 -33 0 -69 -3 -103c21 11 70 33 115 40zM826 74l-133 -101l-64 117c1 31 3 60 3 89c0 98 -17 117 -29 129 c-21 21 -54 35 -83 35c-23 0 -65 -11 -92 -19c-3 -22 -7 -45 -12 -67c-12 -51 -27 -94 -56 -138c-56 -45 -113 -100 -168 -146c-22 22 -60 53 -81 53c-31 0 -55 -18 -73 -42l-11 16c16 25 34 55 61 78c16 14 33 28 56 28c12 0 34 -7 48 -17c18 -13 32 -26 46 -41 c35 24 63 52 82 90c14 28 19 59 24 90c6 46 10 92 10 139s-1 127 -40 184c-26 39 -71 72 -118 72c-40 0 -56 -7 -79 -30c-16 -15 -18 -35 -18 -57c0 -12 21 -43 36 -60c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11 c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27l-31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c15 -18 27 -42 36 -67l4 5c16 20 34 41 52 59c42 42 95 74 155 74c22 0 44 -9 58 -26c15 -18 19 -45 22 -69 c2 -16 1 -33 5 -50c3 -14 8 -28 47 -28c13 0 26 2 38 4l7 -13c-29 -11 -60 -27 -87 -41c-35 -18 -88 -47 -123 -75c51 0 76 -15 102 -37c3 -66 7 -170 16 -197c7 -22 15 -43 27 -63c7 -10 14 -22 26 -22c5 0 39 13 59 21v-16'], + 0x2127: [684,21,722,45,678,'678 522h-25c-5 25 -10 51 -18 74c-5 15 -8 23 -66 23h-80c13 -56 45 -104 89 -170c47 -71 88 -140 88 -219c0 -137 -133 -251 -305 -251c-169 0 -304 112 -304 251c0 79 41 148 88 219c45 66 76 114 89 170h-80c-58 0 -61 -8 -66 -24c-9 -24 -13 -47 -18 -73h-25l33 162 h159c23 0 26 0 26 -21c0 -69 -32 -159 -47 -201c-29 -82 -56 -158 -56 -233c0 -156 106 -228 202 -228c91 0 201 68 201 228c0 75 -28 154 -49 212c-23 64 -54 152 -54 222c0 21 3 21 25 21h160'], + 0x2135: [693,0,611,56,554,'554 64c0 -51 -21 -63 -26 -63c-9 0 -10 8 -10 13c-1 12 -3 45 -45 93l-286 329c-33 -69 -37 -157 -37 -188c0 -35 5 -47 46 -97c19 -23 44 -54 44 -91c0 -50 -53 -60 -99 -60h-60c-17 0 -25 0 -25 11s7 11 16 11c71 2 71 28 71 39c0 21 -8 44 -28 81 c-27 50 -32 73 -32 99c0 85 50 174 81 220c-49 61 -38 44 -61 73c-47 60 -47 75 -47 96c0 51 21 63 26 63c9 0 10 -8 10 -13c1 -12 3 -45 45 -93l280 -322c3 28 11 76 17 111c3 15 18 98 21 146c-67 64 -67 87 -67 108c0 51 21 63 26 63c4 0 7 -2 9 -5c5 -16 8 -24 42 -77 c21 -34 23 -36 53 -63c36 -34 36 -57 36 -74c0 -54 -21 -64 -26 -64c-8 0 -9 7 -10 12c-1 14 -3 35 -34 71c-4 -38 -17 -107 -20 -126c-17 -92 -18 -125 -18 -128c0 -7 0 -9 15 -26c93 -105 93 -121 93 -149'], + 0x2136: [720,39,604,56,548,'548 26c-9 -27 -27 -37 -51 -37h-390c-14 0 -25 -5 -32 -21c-5 -11 -19 -10 -19 3v55c9 25 29 35 50 36h329c19 73 50 206 50 290c0 35 2 80 -6 120c-13 71 -37 104 -101 114c-40 7 -92 7 -126 7c-60 0 -103 1 -128 12c-22 10 -29 22 -36 39v65c0 13 17 16 20 3 c5 -19 16 -21 25 -27c19 -11 64 -9 119 -9s166 -8 200 -27c62 -36 77 -125 78 -219c2 -109 -32 -272 -56 -368c26 0 49 2 55 20c4 12 19 10 19 -3v-53'], + 0x2137: [720,29,528,56,472,'471 61c4 -42 -3 -38 -18 -70c-3 -7 -9 -9 -15 -4c-57 48 -82 191 -94 283c-18 -93 -78 -252 -125 -270c-15 -6 -22 -7 -32 -7c-15 0 -22 7 -51 8c-22 2 -47 -5 -62 -25c-7 -10 -18 -6 -18 6l1 66c19 26 52 38 80 35c29 -1 36 -9 49 -9c4 0 14 1 26 6 c59 24 107 179 126 250c-4 73 -29 196 -53 212c-61 37 -99 6 -153 38c-22 13 -34 20 -43 46v84c0 13 14 15 19 3c8 -20 17 -43 34 -53c55 -34 116 0 164 -51c58 -58 53 -287 73 -419c6 -45 49 -127 80 -120c7 2 11 -1 12 -9'], + 0x2138: [709,17,574,56,518,'518 579c0 -13 -15 -15 -19 -3c-6 18 -30 20 -56 20c13 -94 25 -244 25 -352c0 -116 -20 -212 -74 -258c-5 -5 -10 -4 -14 2c-17 25 -24 66 -14 91c46 21 55 217 55 336c0 70 -10 128 -16 182h-298c-23 0 -41 10 -51 35v67c0 13 14 14 19 3c7 -16 18 -21 32 -21h360 c24 0 42 -19 51 -46v-56'], + 0x2190: [510,10,1000,57,942,'942 250c0 -11 -9 -20 -20 -20h-766c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127 c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h766c11 0 20 -9 20 -20'], + 0x2191: [679,203,500,20,480,'480 441c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-747c0 -11 -9 -20 -20 -20s-20 9 -20 20v747c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68 c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0x2192: [510,10,1000,58,943,'943 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-766c-11 0 -20 9 -20 20s9 20 20 20h766c-30 20 -56 44 -78 72 c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x2193: [703,179,500,20,480,'480 59c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v747 c0 11 9 20 20 20s20 -9 20 -20v-747c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x2194: [510,10,1000,58,942,'942 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-686c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4 c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72 h686c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x2195: [757,257,500,20,480,'480 -19c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65 v784c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19 c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-784c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x2196: [714,203,1000,41,958,'958 -183c0 -11 -9 -20 -20 -20c-6 0 -11 2 -14 6l-795 795c7 -35 8 -71 4 -106c-7 -52 -25 -103 -55 -149c-4 -5 -10 -9 -17 -9c-11 0 -20 9 -20 20c0 5 1 8 3 12c27 40 43 85 49 131c7 57 4 116 -23 170c-1 2 -1 4 -1 6c0 7 6 13 13 13c2 0 4 0 6 -1 c54 -27 113 -30 170 -23c46 6 91 22 131 49c4 2 7 3 12 3c11 0 20 -9 20 -20c0 -7 -4 -13 -9 -17c-46 -30 -97 -48 -149 -55c-35 -4 -71 -3 -106 4l795 -795c4 -3 6 -8 6 -14'], + 0x2197: [714,203,1000,42,959,'959 354c0 -11 -9 -20 -20 -20c-7 0 -13 4 -17 9c-30 46 -48 97 -55 149c-4 35 -3 71 4 106l-795 -795c-3 -4 -8 -6 -14 -6c-11 0 -20 9 -20 20c0 6 2 11 6 14l795 795c-35 -7 -71 -8 -106 -4c-52 7 -103 25 -149 55c-5 4 -9 10 -9 17c0 11 9 20 20 20c5 0 8 -1 12 -3 c40 -27 85 -43 131 -49c57 -7 116 -4 170 23c2 1 4 1 6 1c7 0 13 -6 13 -13c0 -2 0 -4 -1 -6c-27 -54 -30 -113 -23 -170c6 -46 22 -91 49 -131c2 -4 3 -7 3 -12'], + 0x2198: [703,214,1000,42,959,'959 146c0 -5 -1 -8 -3 -12c-27 -40 -43 -85 -49 -131c-7 -57 -4 -116 23 -170c1 -2 1 -4 1 -6c0 -7 -6 -13 -13 -13c-2 0 -4 0 -6 1c-54 27 -113 30 -170 23c-46 -6 -91 -22 -131 -49c-4 -2 -7 -3 -12 -3c-11 0 -20 9 -20 20c0 7 4 13 9 17c46 30 97 48 149 55 c35 4 71 3 106 -4l-795 795c-4 3 -6 8 -6 14c0 11 9 20 20 20c6 0 11 -2 14 -6l795 -795c-7 35 -8 71 -4 106c7 52 25 103 55 149c4 5 10 9 17 9c11 0 20 -9 20 -20'], + 0x2199: [703,214,1000,41,958,'958 683c0 -6 -2 -11 -6 -14l-795 -795c35 7 71 8 106 4c52 -7 103 -25 149 -55c5 -4 9 -10 9 -17c0 -11 -9 -20 -20 -20c-5 0 -8 1 -12 3c-40 27 -85 43 -131 49c-57 7 -116 4 -170 -23c-2 -1 -4 -1 -6 -1c-7 0 -13 6 -13 13c0 2 0 4 1 6c27 54 30 113 23 170 c-6 46 -22 91 -49 131c-2 4 -3 7 -3 12c0 11 9 20 20 20c7 0 13 -4 17 -9c30 -46 48 -97 55 -149c4 -35 3 -71 -4 -106l795 795c3 4 8 6 14 6c11 0 20 -9 20 -20'], + 0x219A: [510,10,997,56,941,'941 250c0 -11 -9 -20 -20 -20h-303l-83 -227c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l78 213h-420c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104 c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h435l82 227c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-78 -213h289 c11 0 20 -9 20 -20'], + 0x219B: [510,10,997,56,941,'941 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-435l-82 -227c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l78 213h-289 c-11 0 -20 9 -20 20s9 20 20 20h303l83 227c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -1 -7l-78 -213h420c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104 c5 -2 9 -7 9 -13'], + 0x219E: [510,10,1017,56,961,'961 250c0 -11 -9 -20 -20 -20h-646c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-31 40 -70 76 -117 97h-69c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20 c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h69c47 21 86 57 117 97 c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h646c11 0 20 -9 20 -20'], + 0x21A0: [510,10,1017,56,961,'961 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-69c-48 -21 -86 -57 -118 -97c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16 c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-646c-11 0 -20 9 -20 20s9 20 20 20h646c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c32 -40 70 -76 118 -97h69 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21A2: [510,10,1192,56,1136,'1136 10c0 -11 -9 -20 -20 -20c-10 0 -18 7 -19 16c-21 104 -95 189 -194 224h-748c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13 c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h748c99 35 173 120 194 224c1 9 9 16 19 16c11 0 20 -9 20 -20v-4c-21 -103 -87 -189 -179 -236c92 -47 158 -133 179 -236v-4'], + 0x21A3: [510,10,1192,56,1136,'1136 250c0 -6 -4 -11 -9 -13c-56 -19 -101 -59 -136 -104c-29 -36 -49 -80 -59 -127c-1 -9 -9 -16 -19 -16c-11 0 -20 9 -20 20v4c11 53 34 102 66 144c22 28 49 52 79 72h-749c-99 -35 -173 -120 -193 -224c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4 c21 103 87 189 179 236c-92 47 -158 133 -179 236v4c0 11 9 20 20 20c10 0 18 -7 20 -16c20 -104 94 -189 193 -224h749c-30 20 -57 44 -79 72c-32 42 -55 91 -66 144v4c0 11 9 20 20 20c10 0 18 -7 19 -16c10 -47 30 -91 59 -127c35 -45 80 -85 136 -104c5 -2 9 -7 9 -13'], + 0x21A6: [510,10,977,56,921,'921 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-726v-220c0 -27 -40 -27 -40 0v480c0 27 40 27 40 0v-220h726c-30 20 -56 44 -78 72 c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21A9: [550,10,997,56,941,'941 390c0 -88 -72 -160 -160 -160h-626c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16 c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h626c66 0 120 54 120 120s-54 120 -120 120h-40c-11 0 -20 9 -20 20s9 20 20 20h40c88 0 160 -72 160 -160'], + 0x21AA: [550,10,997,56,941,'941 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-626c-88 0 -160 72 -160 160s72 160 160 160h40c11 0 20 -9 20 -20s-9 -20 -20 -20 h-40c-66 0 -120 -54 -120 -120s54 -120 120 -120h626c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21AB: [550,50,997,56,941,'941 390c0 -88 -72 -160 -160 -160h-120v-260c0 -11 -9 -20 -20 -20s-20 9 -20 20v260h-466c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13 c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h466v120c0 88 71 160 160 160c88 0 160 -72 160 -160zM901 390c0 66 -54 120 -120 120s-120 -54 -120 -120v-120h120 c66 0 120 54 120 120'], + 0x21AC: [550,50,997,56,941,'941 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-466v-260c0 -11 -9 -20 -20 -20s-20 9 -20 20v260h-120c-88 0 -160 72 -160 160 s72 160 160 160s160 -72 160 -160v-120h466c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13zM336 390c0 66 -54 120 -120 120s-120 -54 -120 -120 s54 -120 120 -120h120v120'], + 0x21AD: [510,10,996,56,940,'940 250c0 -6 -4 -11 -10 -13c-56 -19 -100 -59 -136 -104c-29 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 0 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-107c-20 0 -30 -14 -38 -30c-11 -24 -18 -54 -30 -77c-15 -31 -36 -53 -74 -53 c-66 0 -93 41 -105 99c-10 47 -8 107 -18 154c-8 37 -23 67 -66 67c-20 0 -30 -14 -38 -30c-11 -24 -18 -54 -30 -77c-15 -31 -36 -53 -73 -53h-107c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127 c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h107c19 0 29 14 37 30c12 24 19 54 30 77c15 31 37 53 74 53c67 0 94 -41 105 -99 c10 -47 9 -107 18 -154c8 -37 23 -67 66 -67c20 0 30 14 38 30c12 24 19 54 30 77c15 31 37 53 74 53h107c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c-1 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 29 -91 58 -127c36 -45 80 -85 136 -104c6 -2 10 -7 10 -13'], + 0x21AE: [510,10,996,56,940,'940 250c0 -6 -4 -11 -10 -13c-56 -19 -100 -59 -136 -104c-29 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 0 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-329l-83 -227c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l78 213h-314 c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h329l82 227c3 8 11 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-78 -213h315c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c-1 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 29 -91 58 -127 c36 -45 80 -85 136 -104c6 -2 10 -7 10 -13'], + 0x21B0: [679,179,564,56,508,'508 -159c0 -11 -9 -20 -20 -20s-20 9 -20 20v558h-313c29 -20 56 -45 78 -73c32 -41 55 -90 66 -143v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 90 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 12c56 19 101 59 136 105c29 36 49 79 59 127 c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -54 -34 -103 -66 -144c-22 -28 -49 -52 -78 -72h333c11 0 20 -9 20 -20v-578'], + 0x21B1: [679,179,564,56,508,'508 419c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -37 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 2 1 4c10 53 33 102 66 143c22 28 48 53 78 73h-313v-558c0 -11 -9 -20 -20 -20s-20 9 -20 20v578c0 11 9 20 20 20h333 c-30 20 -56 44 -78 72c-33 41 -56 90 -66 144c0 1 -1 2 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -48 30 -91 58 -127c36 -46 80 -86 137 -105c5 -1 9 -6 9 -12'], + 0x21B6: [562,-229,980,56,924,'924 250c0 -11 -9 -20 -20 -20s-20 9 -20 20c0 157 -142 272 -305 272c-136 0 -237 -81 -282 -203c27 24 57 45 90 59c48 22 101 32 156 30c10 -1 19 -9 19 -20s-9 -20 -21 -20c-48 2 -95 -7 -138 -26c-52 -24 -102 -57 -134 -107c-2 -4 -6 -6 -11 -6c-7 0 -13 5 -13 12 c-5 59 -33 112 -68 158c-29 36 -66 66 -110 87c-6 3 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2c49 -23 91 -57 123 -99c22 -28 39 -58 51 -91c50 138 166 230 320 230c185 0 345 -134 345 -312'], + 0x21B7: [562,-229,980,56,924,'924 504c0 -8 -5 -15 -11 -18c-44 -21 -81 -51 -109 -87c-36 -46 -64 -99 -69 -158c0 -7 -6 -12 -13 -12c-5 0 -9 2 -11 6c-32 50 -82 83 -134 107c-43 19 -90 28 -138 26c-12 0 -21 9 -21 20s9 19 19 20c55 2 108 -8 156 -30c33 -14 63 -35 90 -59 c-45 122 -146 203 -282 203c-163 0 -305 -115 -305 -272c0 -11 -9 -20 -20 -20s-20 9 -20 20c0 178 160 312 345 312c154 0 270 -92 320 -230c12 33 30 63 51 91c32 42 74 76 124 99c2 1 5 2 8 2c11 0 20 -9 20 -20'], + 0x21BA: [696,59,764,56,708,'708 250c-2 -170 -139 -308 -309 -309c-170 0 -308 138 -308 309c0 118 71 217 173 271c-32 7 -62 19 -89 35c-46 27 -86 63 -116 109c-2 3 -3 7 -3 11c0 11 9 20 20 20c7 0 13 -4 17 -9c26 -40 61 -73 101 -96c50 -28 107 -49 166 -46c8 0 14 -6 14 -13 c0 -4 -2 -8 -5 -10c-45 -39 -71 -93 -87 -148c-13 -44 -16 -92 -7 -139c1 -2 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-10 54 -7 108 8 158c11 39 29 75 53 108c-97 -45 -166 -135 -166 -243c0 -149 120 -269 268 -269c148 1 267 121 269 269 c1 105 -60 200 -155 243c-7 4 -12 11 -12 19c0 11 9 20 20 20c3 0 6 -1 8 -2c110 -50 180 -160 179 -280'], + 0x21BB: [696,59,764,55,708,'708 676c0 -4 -1 -8 -3 -11c-30 -46 -70 -82 -116 -109c-27 -16 -57 -28 -89 -35c102 -54 173 -153 173 -271c0 -171 -138 -309 -308 -309c-170 1 -307 139 -309 309c-2 120 69 230 178 280c3 1 6 2 9 2c11 0 20 -9 20 -20c0 -8 -5 -15 -12 -19 c-95 -43 -156 -138 -155 -243c2 -148 121 -268 269 -269c148 0 268 120 268 269c0 108 -69 198 -166 243c24 -33 42 -69 53 -108c15 -50 18 -104 8 -158c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 0 2 1 4c9 47 6 95 -7 139c-16 55 -42 109 -87 148c-3 2 -5 6 -5 10 c0 7 6 13 14 13c59 -3 116 18 166 46c40 23 75 56 101 96c4 5 10 9 17 9c11 0 20 -9 20 -20'], + 0x21BC: [503,-230,1000,50,950,'950 250c0 -11 -9 -20 -20 -20h-866c-8 0 -14 6 -14 13c0 6 4 10 8 12c49 23 87 60 121 99s60 85 76 135c2 8 10 14 19 14c11 0 20 -9 20 -20c0 -2 -1 -4 -1 -6c-17 -55 -46 -106 -84 -149c-19 -23 -43 -42 -68 -58h789c11 0 20 -9 20 -20'], + 0x21BD: [270,3,1012,56,956,'956 250c0 -11 -9 -20 -20 -20h-789c25 -16 48 -35 68 -58c38 -43 66 -94 83 -149c1 -2 1 -4 1 -6c0 -11 -9 -20 -20 -20c-9 0 -16 6 -19 14c-15 50 -41 96 -75 135c-35 39 -73 76 -121 99c-5 2 -8 6 -8 12c0 7 6 13 13 13h867c11 0 20 -9 20 -20'], + 0x21BE: [697,203,441,112,385,'385 473c0 -11 -9 -20 -20 -20c-2 0 -4 1 -6 1c-55 17 -106 46 -149 84c-23 19 -42 43 -58 68v-789c0 -11 -9 -20 -20 -20s-20 9 -20 20v866c0 8 6 14 13 14c6 0 10 -4 12 -8c23 -49 60 -87 99 -121s85 -60 135 -76c8 -2 14 -10 14 -19'], + 0x21BF: [697,203,441,56,329,'329 683v-866c0 -11 -9 -20 -20 -20s-20 9 -20 20v789c-16 -25 -35 -49 -58 -68c-43 -38 -93 -67 -149 -84c-2 0 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 17 14 19c50 16 96 42 135 76s77 72 99 121c2 4 7 8 12 8c7 0 13 -6 13 -14'], + 0x21C0: [503,-230,1000,50,950,'950 243c0 -7 -6 -13 -14 -13h-866c-11 0 -20 9 -20 20s9 20 20 20h789c-25 16 -49 35 -68 58c-38 43 -67 94 -84 149c0 2 -1 4 -1 6c0 11 9 20 20 20c9 0 17 -6 19 -14c16 -50 42 -96 76 -135s72 -76 121 -99c4 -2 8 -6 8 -12'], + 0x21C1: [270,3,1012,56,956,'956 257c0 -6 -4 -10 -8 -12c-49 -23 -87 -60 -121 -99s-60 -85 -76 -135c-2 -8 -10 -14 -19 -14c-11 0 -20 9 -20 20c0 2 1 4 1 6c17 55 46 106 84 149c19 23 43 42 68 58h-789c-11 0 -20 9 -20 20s9 20 20 20h866c8 0 14 -6 14 -13'], + 0x21C2: [703,197,441,112,385,'385 27c0 -9 -6 -17 -14 -19c-50 -16 -96 -42 -135 -76s-76 -72 -99 -121c-2 -4 -6 -8 -12 -8c-7 0 -13 6 -13 14v866c0 11 9 20 20 20s20 -9 20 -20v-789c16 25 35 49 58 68c43 38 94 67 149 84c2 0 4 1 6 1c11 0 20 -9 20 -20'], + 0x21C3: [703,197,441,56,329,'329 -183c0 -8 -6 -14 -13 -14c-5 0 -10 4 -12 8c-22 49 -60 87 -99 121s-85 60 -135 76c-8 2 -14 10 -14 19c0 11 9 20 20 20c2 0 4 -1 6 -1c56 -17 106 -46 149 -84c23 -19 42 -43 58 -68v789c0 11 9 20 20 20s20 -9 20 -20v-866'], + 0x21C4: [672,172,1018,56,962,'962 88c0 -11 -9 -20 -20 -20h-766c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127 c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h766c11 0 20 -9 20 -20zM941 412c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20 c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-766c-11 0 -20 9 -20 20s9 20 20 20h766c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21C6: [672,172,1018,56,962,'941 88c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-766c-11 0 -20 9 -20 20s9 20 20 20h766c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144 c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13zM962 412c0 -11 -9 -20 -20 -20h-766c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16 c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h766c11 0 20 -9 20 -20'], + 0x21C7: [750,250,997,56,941,'941 10c0 -11 -9 -20 -20 -20h-766c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144c0 -15 -9 -24 -20 -24c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c28 35 48 77 58 123c-10 46 -30 88 -58 123 c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -24c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h766c11 0 20 -9 20 -20s-9 -20 -20 -20h-766c29 -20 56 -44 78 -72 c32 -42 55 -91 66 -148c-11 -57 -34 -106 -66 -148c-22 -28 -49 -52 -78 -72h766c11 0 20 -9 20 -20'], + 0x21C8: [679,203,992,56,936,'936 441c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-747c0 -11 -9 -20 -20 -20s-20 9 -20 20v747c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -138 -78c-56 16 -101 43 -138 78c-20 20 -37 42 -52 65v-747c0 -11 -9 -20 -20 -20 s-20 9 -20 20v747c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c31 -30 68 -53 110 -66c42 13 79 36 110 66 c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0x21C9: [750,250,997,56,941,'941 10c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -19 24c10 53 33 102 66 144c22 28 48 52 78 72h-766c-11 0 -20 9 -20 20s9 20 20 20h766c-30 20 -56 44 -78 72c-33 42 -56 91 -66 148 c10 57 33 106 66 148c22 28 48 52 78 72h-766c-11 0 -20 9 -20 20s9 20 20 20h766c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c-1 15 8 24 19 24c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13s-4 -11 -9 -13 c-57 -19 -101 -59 -137 -104c-28 -35 -48 -77 -57 -123c9 -46 29 -88 57 -123c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21CA: [703,179,992,56,936,'936 59c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-31 30 -68 53 -110 66c-42 -13 -79 -36 -110 -66c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10 c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v747c0 11 9 20 20 20s20 -9 20 -20v-747c15 23 32 45 52 65c37 35 82 62 138 78c56 -16 101 -43 138 -78 c20 -20 37 -42 52 -65v747c0 11 9 20 20 20s20 -9 20 -20v-747c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x21CB: [600,100,1018,56,962,'956 160c0 -6 -4 -10 -8 -12c-49 -23 -87 -60 -121 -99s-60 -85 -76 -135c-2 -8 -10 -14 -19 -14c-11 0 -20 9 -20 20c0 2 1 4 1 6c17 55 46 106 84 149c19 23 43 42 68 58h-789c-11 0 -20 9 -20 20s9 20 20 20h866c8 0 14 -6 14 -13zM962 347c0 -11 -9 -20 -20 -20h-866 c-8 0 -14 6 -14 13c0 6 4 10 8 12c49 23 87 60 121 99s60 85 76 135c2 8 10 14 19 14c11 0 20 -9 20 -20c0 -2 -1 -4 -1 -6c-17 -55 -46 -106 -84 -149c-19 -23 -43 -42 -68 -58h789c11 0 20 -9 20 -20'], + 0x21CC: [600,100,1018,56,962,'962 153c0 -11 -9 -20 -20 -20h-789c25 -16 49 -35 68 -58c38 -43 67 -94 84 -149c1 -2 1 -4 1 -6c0 -11 -9 -20 -20 -20c-9 0 -17 6 -19 14c-16 50 -42 96 -76 135s-72 76 -121 99c-4 2 -8 6 -8 12c0 7 6 13 14 13h866c11 0 20 -9 20 -20zM956 340c0 -7 -6 -13 -14 -13 h-866c-11 0 -20 9 -20 20s9 20 20 20h789c-25 16 -49 35 -68 58c-38 43 -67 94 -84 149c0 2 -1 4 -1 6c0 11 9 20 20 20c9 0 17 -6 19 -14c16 -50 42 -96 76 -135s72 -76 121 -99c4 -2 8 -6 8 -12'], + 0x21CD: [520,20,991,56,935,'935 153c0 -11 -8 -20 -20 -20h-286l-50 -140c-3 -8 -11 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l46 126h-279c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13 s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11c11 0 20 -9 20 -20c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h364l51 140c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -1 -7l-46 -126h200c12 0 20 -9 20 -20s-8 -20 -20 -20h-215l-56 -154h271 c12 0 20 -9 20 -20zM657 327h-393c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h337'], + 0x21CE: [520,20,1068,56,1012,'1012 250c0 -6 -4 -11 -10 -13c-71 -19 -133 -60 -187 -107c-44 -39 -81 -86 -108 -139c-4 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-247l-51 -140c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l46 126h-162 c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11c11 0 20 -9 20 -20c0 -3 0 -6 -2 -9 c-23 -46 -54 -88 -89 -124h247l51 140c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-46 -126h162c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 14 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 187 -107c6 -2 10 -7 10 -13zM935 250 c-47 19 -91 45 -131 77h-221l-56 -154h277c40 32 84 58 131 77zM541 327h-277c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h221'], + 0x21CF: [520,20,991,56,935,'935 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-364l-50 -140c-3 -8 -11 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l46 126h-201c-11 0 -20 9 -20 20 s9 20 20 20h215l56 154h-271c-11 0 -20 9 -20 20s9 20 20 20h286l51 140c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -1 -7l-46 -126h278c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107 c5 -2 9 -7 9 -13zM859 250c-48 19 -92 45 -132 77h-337l-56 -154h393c40 32 84 58 132 77'], + 0x21D0: [520,20,1000,61,940,'940 153c0 -11 -9 -20 -20 -20h-607c35 -36 65 -78 89 -124c1 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-8 0 -15 4 -18 11c-27 53 -64 100 -108 139c-54 47 -116 88 -188 107c-5 2 -9 7 -9 13s4 11 9 13c72 19 134 60 188 107c44 39 81 86 108 139c3 7 10 11 18 11 c11 0 20 -9 20 -20c0 -3 -1 -6 -2 -9c-24 -46 -54 -88 -89 -124h607c11 0 20 -9 20 -20s-9 -20 -20 -20h-651c-40 -32 -84 -58 -132 -77c48 -19 92 -45 132 -77h651c11 0 20 -9 20 -20'], + 0x21D1: [676,203,611,36,576,'576 353c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2c-46 24 -88 54 -124 89v-607c0 -11 -9 -20 -20 -20s-20 9 -20 20v651c-32 40 -58 84 -77 132c-19 -48 -45 -92 -77 -132v-651c0 -11 -9 -20 -20 -20s-20 9 -20 20v607c-36 -35 -78 -65 -124 -89c-3 -1 -6 -2 -9 -2 c-11 0 -20 9 -20 20c0 8 4 15 11 18c53 27 100 64 139 108c47 54 88 116 107 188c2 5 7 9 13 9s11 -4 13 -9c19 -72 60 -134 107 -188c39 -44 86 -81 139 -108c7 -3 11 -10 11 -18'], + 0x21D2: [520,20,1000,60,939,'939 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-607c-11 0 -20 9 -20 20s9 20 20 20h651c40 32 84 58 132 77c-48 19 -92 45 -132 77h-651 c-11 0 -20 9 -20 20s9 20 20 20h607c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13'], + 0x21D3: [703,176,611,36,576,'576 147c0 -8 -4 -15 -11 -18c-53 -27 -100 -64 -139 -108c-47 -54 -88 -116 -107 -188c-2 -5 -7 -9 -13 -9s-11 4 -13 9c-19 72 -60 134 -107 188c-39 44 -86 81 -139 108c-7 3 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2c46 -24 88 -54 124 -89v607c0 11 9 20 20 20 s20 -9 20 -20v-651c32 -40 58 -84 77 -132c19 48 45 92 77 132v651c0 11 9 20 20 20s20 -9 20 -20v-607c36 35 78 65 124 89c3 1 6 2 9 2c11 0 20 -9 20 -20'], + 0x21D4: [520,20,1000,22,978,'978 250c0 -6 -4 -11 -10 -13c-71 -19 -133 -60 -187 -107c-44 -39 -81 -86 -108 -139c-4 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-452c35 -36 65 -78 89 -124c1 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-8 0 -14 4 -18 11 c-27 53 -64 100 -108 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 108 139c4 7 10 11 18 11c11 0 20 -9 20 -20c0 -3 -1 -6 -2 -9c-24 -46 -54 -88 -89 -124h452c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20 c8 0 14 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 187 -107c6 -2 10 -7 10 -13zM901 250c-47 19 -92 45 -131 77h-540c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h540c39 32 84 58 131 77'], + 0x21D5: [728,228,611,36,576,'576 95c0 -8 -4 -14 -11 -18c-53 -27 -100 -64 -139 -108c-47 -54 -88 -116 -107 -187c-2 -6 -7 -10 -13 -10s-11 4 -13 10c-19 71 -60 133 -107 187c-39 44 -86 81 -139 108c-7 4 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2c46 -24 88 -54 124 -89v452 c-36 -35 -78 -65 -124 -89c-3 -1 -6 -2 -9 -2c-11 0 -20 9 -20 20c0 8 4 14 11 18c53 27 100 64 139 108c47 54 88 116 107 187c2 6 7 10 13 10s11 -4 13 -10c19 -71 60 -133 107 -187c39 -44 86 -81 139 -108c7 -4 11 -10 11 -18c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2 c-46 24 -88 54 -124 89v-452c36 35 78 65 124 89c3 1 6 2 9 2c11 0 20 -9 20 -20zM383 520c-32 39 -58 84 -77 131c-19 -47 -45 -92 -77 -131v-540c32 -39 58 -84 77 -131c19 47 45 92 77 131v540'], + 0x21DA: [617,117,1015,56,959,'959 56c0 -11 -9 -20 -20 -20h-570c27 -39 49 -81 66 -126c1 -2 1 -4 1 -7c0 -11 -9 -20 -20 -20c-8 0 -15 5 -18 13c-27 69 -66 132 -116 186c-60 66 -132 123 -217 156c-5 1 -9 6 -9 12s4 11 9 12c85 33 157 90 217 156c50 54 89 117 116 186c3 8 10 13 18 13 c11 0 20 -9 20 -20c0 -3 0 -5 -1 -7c-17 -45 -39 -87 -66 -126h570c11 0 20 -9 20 -20s-9 -20 -20 -20h-599c-9 -11 -18 -22 -28 -33c-44 -48 -96 -89 -153 -121h780c11 0 20 -9 20 -20s-9 -20 -20 -20h-780c57 -32 109 -73 153 -121c10 -11 19 -22 28 -33h599 c11 0 20 -9 20 -20'], + 0x21DB: [617,117,1015,56,959,'959 250c0 -6 -4 -11 -9 -12c-85 -33 -157 -90 -217 -156c-50 -54 -89 -117 -116 -186c-2 -8 -10 -13 -18 -13c-11 0 -20 9 -20 20c0 3 0 5 1 7c17 45 39 87 66 126h-570c-11 0 -20 9 -20 20s9 20 20 20h599c9 11 18 22 28 33c44 48 96 89 153 121h-780 c-11 0 -20 9 -20 20s9 20 20 20h780c-57 32 -109 73 -153 121c-10 11 -19 22 -28 33h-599c-11 0 -20 9 -20 20s9 20 20 20h570c-27 39 -49 81 -66 126c-1 2 -1 4 -1 7c0 11 9 20 20 20c8 0 16 -5 18 -13c27 -69 66 -132 116 -186c60 -66 132 -123 217 -156c5 -1 9 -6 9 -12'], + 0x21DD: [510,10,997,56,941,'941 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-191c-20 0 -30 -14 -38 -30c-12 -24 -19 -54 -30 -77c-15 -31 -37 -53 -74 -53 c-66 0 -93 41 -105 99c-10 47 -8 107 -18 154c-8 37 -23 67 -66 67c-20 0 -30 -14 -38 -30c-11 -24 -18 -54 -30 -77c-15 -31 -36 -53 -74 -53h-102c-11 0 -20 9 -20 20s9 20 20 20h102c20 0 30 14 38 30c12 24 19 54 30 77c15 31 37 53 74 53c66 0 93 -41 105 -99 c10 -47 8 -107 18 -154c8 -37 23 -67 66 -67c20 0 30 14 38 30c11 24 18 54 30 77c15 31 36 53 74 53h191c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x2200: [684,-2,666,43,621,'620 656l-102 -245l-1 -1l-164 -394c-8 -18 -33 -18 -40 0l-165 394v1l-102 245c-11 25 26 40 36 16l98 -234h306l97 234c11 24 47 9 37 -16zM469 398h-272l136 -326'], + 0x2201: [684,0,556,56,500,'500 222c0 -123 -99 -222 -222 -222s-222 99 -222 222v240c0 123 99 222 222 222s222 -99 222 -222c0 -11 -9 -20 -20 -20s-20 9 -20 20c0 100 -82 182 -182 182s-182 -82 -182 -182v-240c0 -100 82 -182 182 -182s182 82 182 182c0 11 9 20 20 20s20 -9 20 -20'], + 0x2202: [716,22,586,56,528,'515 457c36 -143 15 -479 -223 -479c-140 0 -212 116 -228 178c-8 31 -24 124 38 207c59 78 120 94 181 94c78 0 133 -56 158 -118c2 81 -5 132 -14 171c-33 129 -116 181 -189 181c-29 0 -98 -6 -124 -80c16 0 47 0 56 -35c6 -23 -8 -53 -41 -53c-30 0 -43 21 -46 35 c-7 28 6 158 151 158c123 0 241 -100 281 -259zM432 303c-5 20 -35 132 -144 132c-62 0 -103 -32 -128 -89c-26 -60 -16 -200 -10 -227c3 -10 29 -113 139 -113c154 0 161 225 143 297'], + 0x2203: [684,0,556,56,500,'500 20c0 -11 -9 -20 -20 -20h-404c-11 0 -20 9 -20 20s9 20 20 20h384v282h-384c-11 0 -20 9 -20 20s9 20 20 20h384v282h-384c-11 0 -20 9 -20 20s9 20 20 20h404c11 0 20 -9 20 -20v-644'], + 0x2204: [789,105,556,56,500,'500 20c0 -11 -9 -20 -20 -20h-305l-34 -92c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l28 78h-56c-11 0 -20 9 -20 20s9 20 20 20h71l102 282h-173c-11 0 -20 9 -20 20s9 20 20 20h188l103 282h-291c-11 0 -20 9 -20 20s9 20 20 20h305l34 92 c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-28 -78h56c11 0 20 -9 20 -20v-644zM460 644h-51l-102 -282h153v282zM460 40v282h-168l-103 -282h271'], + 0x2205: [772,78,500,47,452,'452 345c0 -72 -3 -155 -29 -225c-18 -48 -62 -142 -174 -142c-27 0 -57 8 -81 21l-13 -45c-6 -22 -9 -32 -24 -32c-11 0 -20 9 -20 20l23 83c-87 75 -87 259 -87 320c0 93 5 183 44 264c37 77 102 107 159 107c37 0 69 -15 81 -21l13 45c6 22 9 32 24 32 c11 0 20 -9 20 -20l-5 -18l-18 -65c86 -85 87 -242 87 -324zM322 666c-26 22 -52 28 -72 28c-45 0 -103 -30 -122 -123c-14 -64 -14 -133 -14 -214c0 -95 0 -218 33 -287zM385 357c0 95 0 211 -33 269l-174 -597c24 -21 48 -29 71 -29c53 0 106 38 124 143 c12 67 12 141 12 214'], + 0x2207: [683,33,833,47,785,'785 675c0 0 0 -3 -5 -12l-338 -678c-7 -13 -9 -18 -26 -18s-19 5 -26 18l-338 678c-5 9 -5 12 -5 12c0 8 6 8 22 8h694c16 0 22 0 22 -8zM720 612h-550l275 -551h1'], + 0x2208: [543,43,667,81,587,'587 -23c0 -11 -9 -20 -20 -20h-193c-162 0 -293 131 -293 293s131 293 293 293h193c11 0 20 -9 20 -20s-9 -20 -20 -20h-193c-133 0 -242 -103 -252 -233h445c27 0 27 -40 0 -40h-445c10 -130 119 -233 252 -233h193c11 0 20 -9 20 -20'], + 0x2209: [730,230,667,81,587,'587 -23c0 -11 -9 -20 -20 -20h-193c-41 0 -81 9 -117 24l-72 -198c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l74 203c-85 51 -141 144 -141 250c0 162 131 293 293 293h45l64 174c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-58 -160h105 c11 0 20 -9 20 -20s-9 -20 -20 -20h-120l-84 -233h204c27 0 27 -40 0 -40h-219l-77 -211c32 -14 66 -22 103 -22h193c11 0 20 -9 20 -20zM305 230h-183c6 -80 50 -150 114 -192zM405 503h-31c-133 0 -242 -103 -252 -233h198'], + 0x220B: [543,43,667,79,586,'586 250c0 -162 -131 -293 -293 -293h-193c-11 0 -20 9 -20 20s9 20 20 20h193c133 0 242 103 252 233h-445c-27 0 -27 40 0 40h445c-10 130 -119 233 -252 233h-193c-11 0 -20 9 -20 20s9 20 20 20h193c162 0 293 -131 293 -293'], + 0x220D: [443,-57,498,55,442,'442 250c0 -107 -87 -193 -193 -193h-173c-11 0 -20 9 -20 20s9 20 20 20h173c78 0 142 58 152 133h-325c-27 0 -27 40 0 40h325c-10 75 -74 133 -152 133h-173c-11 0 -20 9 -20 20s9 20 20 20h173c106 0 193 -86 193 -193'], + 0x2212: [270,-230,778,56,722,'722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20'], + 0x2213: [584,83,778,56,722,'722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v274h-293c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20s-9 -20 -20 -20h-293v-274h293c11 0 20 -9 20 -20'], + 0x2214: [785,83,778,56,722,'722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20zM442 732c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2215: [603,103,568,56,512,'512 583c0 -4 -1 -8 -3 -11l-416 -666c-4 -5 -10 -9 -17 -9c-11 0 -20 9 -20 20c0 4 1 8 3 11l416 666c4 5 10 9 17 9c11 0 20 -9 20 -20'], + 0x2216: [603,103,568,56,512,'512 -83c0 -11 -9 -20 -20 -20c-7 0 -13 4 -17 9l-416 666c-2 3 -3 7 -3 11c0 11 9 20 20 20c7 0 13 -4 17 -9l416 -666c2 -3 3 -7 3 -11'], + 0x2217: [462,-39,500,62,437,'433 144c-9 -15 -29 -19 -43 -9l-128 94l17 -158c2 -17 -11 -32 -29 -32s-31 15 -29 32l17 158l-128 -94c-14 -10 -34 -6 -43 9c-9 16 -3 35 14 42l145 64l-145 64c-17 7 -23 26 -14 42c9 15 29 19 43 9l128 -94l-17 158c-2 17 11 33 29 33s31 -16 29 -33l-17 -158 l128 94c14 10 34 6 43 -9c9 -16 3 -35 -14 -42l-145 -64l145 -64c17 -7 23 -26 14 -42'], + 0x2218: [400,-100,412,56,356,'356 250c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150s150 -67 150 -150zM316 250c0 61 -49 110 -110 110s-110 -49 -110 -110s49 -110 110 -110s110 49 110 110'], + 0x2219: [445,-55,500,55,445,'445 250c0 -108 -87 -195 -195 -195s-195 87 -195 195s87 195 195 195s195 -87 195 -195'], + 0x221A: [40,960,833,73,853,'853 20c0 -5 -1 -6 -6 -17l-456 -944c-7 -15 -9 -19 -25 -19c-11 0 -13 1 -19 15l-198 435l-52 -39c-9 -8 -11 -8 -14 -8c-6 0 -10 4 -10 11c0 4 1 5 12 14l99 75c9 8 11 8 14 8c7 0 9 -6 13 -14l178 -392l423 876c6 12 9 19 21 19s20 -9 20 -20'], + 0x221D: [442,11,778,56,722,'722 -7c0 0 -17 -4 -36 -4c-122 0 -190 105 -233 172c-35 -74 -111 -172 -225 -172c-113 0 -172 117 -172 226c0 116 65 227 174 227c122 0 190 -105 233 -172c35 74 111 172 225 172c3 0 22 0 31 -3c2 -2 3 -3 3 -29c-11 3 -22 3 -27 3c-112 0 -180 -111 -210 -178 l43 -65c37 -58 90 -140 171 -140c5 0 17 2 23 3v-40zM431 196l-43 65c-37 58 -90 140 -171 140c-82 0 -139 -86 -139 -186c0 -93 47 -197 143 -197c112 0 180 111 210 178'], + 0x221E: [442,11,1000,56,943,'943 216c0 -118 -76 -227 -192 -227c-79 0 -138 42 -170 69c-22 19 -23 20 -90 101c-13 -22 -102 -170 -246 -170c-119 0 -189 115 -189 226c0 118 76 227 192 227c79 0 138 -42 170 -69c22 -19 23 -20 90 -101c13 22 102 170 246 170c119 0 189 -115 189 -226zM921 216 c0 90 -54 194 -160 194c-113 0 -189 -105 -227 -173c28 -34 73 -97 101 -128c45 -49 86 -72 132 -72c84 0 154 79 154 179zM465 194c-28 34 -73 97 -101 128c-45 49 -86 72 -132 72c-84 0 -154 -79 -154 -179c0 -90 54 -194 160 -194c113 0 189 105 227 173'], + 0x2220: [724,-13,778,56,722,'722 33c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20c0 5 2 10 5 14l626 671c4 4 9 6 15 6c11 0 20 -9 20 -20c0 -5 -2 -10 -5 -13l-595 -638h580c11 0 20 -9 20 -20'], + 0x2221: [724,109,778,56,722,'722 33c0 -11 -9 -20 -20 -20h-137c-1 -35 -7 -71 -16 -107c-2 -8 -10 -15 -19 -15c-12 0 -20 9 -20 20v6c9 32 14 64 15 96h-449c-11 0 -20 9 -20 20c0 5 2 10 5 14l307 328c-25 21 -52 39 -81 55c-6 3 -11 10 -11 18c0 11 9 20 20 20c4 0 7 -1 10 -3 c32 -17 62 -37 89 -61l292 314c4 4 9 6 15 6c11 0 20 -9 20 -20c0 -5 -2 -10 -5 -13l-293 -314c86 -87 136 -202 141 -324h137c11 0 20 -9 20 -20zM525 53c-5 111 -51 216 -128 295l-275 -295h403'], + 0x2222: [562,62,778,82,696,'696 0c0 -11 -9 -20 -20 -20c-3 0 -5 1 -8 2l-125 55c-16 -32 -35 -63 -58 -92c-4 -4 -9 -7 -16 -7c-11 0 -20 9 -20 20c0 4 2 9 5 12c20 26 38 54 52 83l-412 179c-7 3 -12 10 -12 18s5 15 12 18l412 179c-14 29 -32 57 -52 83c-3 3 -5 8 -5 12c0 11 9 20 20 20 c7 0 12 -3 16 -7c23 -29 42 -60 58 -92l125 55c3 1 5 2 8 2c11 0 20 -9 20 -20c0 -9 -5 -16 -12 -19l-125 -54c43 -114 43 -240 0 -354l125 -54c7 -3 12 -10 12 -19zM522 89c39 104 39 218 0 322l-370 -161'], + 0x2223: [750,250,278,119,159,'159 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960'], + 0x2224: [750,250,388,56,332,'332 377c0 -6 -2 -11 -5 -14l-113 -121v-472c0 -11 -9 -20 -20 -20s-20 9 -20 20v429l-83 -89c-4 -4 -9 -6 -15 -6c-11 0 -20 8 -20 20c0 5 2 10 5 13l113 121v472c0 11 9 20 20 20s20 -9 20 -20v-429l83 89c4 4 9 7 15 7c11 0 20 -9 20 -20'], + 0x2225: [750,250,500,133,367,'173 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960zM367 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960'], + 0x2226: [750,250,556,56,500,'500 467c0 -6 -2 -11 -5 -14l-100 -107v-576c0 -11 -9 -20 -20 -20s-20 9 -20 20v533l-154 -165v-368c0 -11 -9 -20 -20 -20s-20 9 -20 20v325l-70 -75c-4 -4 -9 -6 -15 -6c-11 0 -20 8 -20 20c0 5 2 10 5 13l100 107v576c0 11 9 20 20 20s20 -9 20 -20v-533l154 165v368 c0 11 9 20 20 20s20 -9 20 -20v-325l70 75c4 4 9 7 15 7c11 0 20 -9 20 -20'], + 0x2227: [601,20,667,68,598,'597 8c10 -25 -27 -40 -37 -16l-226 540l-227 -540c-10 -24 -47 -9 -36 16l243 580c7 18 32 18 40 0'], + 0x2228: [601,20,667,68,598,'597 573l-243 -580c-8 -18 -33 -18 -40 0l-243 580c-11 25 26 40 36 16l227 -540l226 540c10 24 47 9 37 -16'], + 0x2229: [604,20,667,61,607,'607 0c0 -11 -9 -20 -20 -20s-20 9 -20 20v382c0 102 -105 182 -233 182s-233 -80 -233 -182v-382c0 -11 -9 -20 -20 -20s-20 9 -20 20v382c0 121 121 222 273 222s273 -101 273 -222v-382'], + 0x222A: [604,20,667,61,607,'607 202c0 -121 -121 -222 -273 -222s-273 101 -273 222v382c0 11 9 20 20 20s20 -9 20 -20v-382c0 -102 105 -182 233 -182s233 80 233 182v382c0 11 9 20 20 20s20 -9 20 -20v-382'], + 0x222B: [805,306,665,56,609,'609 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41 c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83'], + 0x2234: [416,-84,516,75,441,'311 363c0 -30 -24 -53 -53 -53s-53 23 -53 53c0 29 24 53 53 53s53 -24 53 -53zM441 137c0 -29 -24 -53 -53 -53s-53 24 -53 53c0 30 24 53 53 53s53 -23 53 -53zM181 137c0 -29 -24 -53 -53 -53s-53 24 -53 53c0 30 24 53 53 53s53 -23 53 -53'], + 0x2235: [416,-84,516,75,441,'311 137c0 -29 -24 -53 -53 -53s-53 24 -53 53c0 30 24 53 53 53s53 -23 53 -53zM441 363c0 -30 -24 -53 -53 -53s-53 23 -53 53c0 29 24 53 53 53s53 -24 53 -53zM181 363c0 -30 -24 -53 -53 -53s-53 23 -53 53c0 29 24 53 53 53s53 -24 53 -53'], + 0x223C: [366,-134,773,56,717,'717 354c-4 -116 -34 -183 -119 -211c-15 -4 -30 -7 -45 -7c-66 0 -130 46 -184 95c-44 39 -93 81 -146 81c-10 0 -21 -1 -31 -5c-70 -23 -109 -67 -112 -161c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12c4 116 34 183 120 211c14 4 29 7 44 7c66 0 130 -46 184 -95 c44 -39 93 -81 146 -81c11 0 21 1 32 5c69 23 108 67 111 161c0 7 6 12 12 12c7 0 12 -5 12 -12'], + 0x223D: [366,-134,773,56,717,'717 146c0 -7 -5 -12 -12 -12c-6 0 -12 5 -12 12c-3 94 -42 138 -111 161c-11 4 -21 5 -32 5c-53 0 -102 -42 -146 -81c-54 -49 -118 -95 -184 -95c-15 0 -30 3 -44 7c-86 28 -116 95 -120 211c0 7 5 12 12 12c6 0 12 -5 12 -12c3 -94 42 -138 112 -161 c10 -4 21 -5 31 -5c53 0 102 42 146 81c54 49 118 95 184 95c15 0 30 -3 45 -7c85 -28 115 -95 119 -211'], + 0x2240: [583,83,280,56,224,'224 399c0 -57 -27 -113 -55 -165c-23 -41 -47 -85 -47 -130c0 -8 0 -16 2 -24c16 -82 29 -132 81 -139c6 -1 11 -6 11 -12c0 -7 -5 -12 -12 -12h-2c-67 9 -122 44 -143 150c-2 11 -3 23 -3 34c0 57 27 113 55 165c23 41 47 85 47 130c0 8 -1 16 -2 24 c-17 82 -29 132 -82 139c-5 1 -10 6 -10 12c0 7 5 12 12 12h1c68 -9 122 -44 144 -150c2 -11 3 -23 3 -34'], + 0x2241: [482,-18,773,56,717,'717 354c-4 -116 -34 -183 -119 -211c-15 -4 -30 -7 -45 -7c-59 0 -115 36 -165 78l-117 -187c-3 -5 -10 -9 -17 -9c-11 0 -20 9 -20 20c0 4 1 8 3 11l120 192c-40 36 -86 71 -134 71c-10 0 -21 -1 -31 -5c-70 -23 -109 -67 -112 -161c0 -7 -6 -12 -12 -12 c-7 0 -12 5 -12 12c4 116 34 183 120 211c14 4 29 7 44 7c59 0 115 -36 165 -78l117 187c4 5 10 9 17 9c11 0 20 -9 20 -20c0 -4 -1 -8 -3 -11l-120 -192c41 -36 86 -71 134 -71c11 0 21 1 32 5c69 23 108 67 111 161c0 7 6 12 12 12c7 0 12 -5 12 -12'], + 0x2242: [380,-32,778,56,722,'722 360c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM720 234c-11 -108 -43 -171 -127 -196c-14 -4 -28 -6 -41 -6c-65 0 -126 43 -180 88c-43 37 -91 76 -143 76c-9 0 -19 -1 -29 -4c-68 -20 -109 -61 -118 -148 c0 -6 -5 -11 -12 -11c-6 0 -12 5 -12 13c11 108 43 171 127 196c14 4 28 6 41 6c65 0 126 -43 180 -88c43 -37 91 -76 143 -76c9 0 19 1 29 4c68 20 109 61 118 148c0 6 5 11 12 11c6 0 12 -5 12 -13'], + 0x2243: [468,-120,778,56,722,'722 140c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM720 454c-11 -108 -43 -171 -127 -196c-14 -4 -28 -6 -41 -6c-65 0 -126 43 -180 88c-43 37 -91 76 -143 76c-9 0 -19 -1 -29 -4c-68 -20 -109 -61 -118 -148 c0 -6 -5 -11 -12 -11c-6 0 -12 5 -12 13c11 108 43 171 127 196c14 4 28 6 41 6c65 0 126 -43 180 -88c43 -37 91 -76 143 -76c9 0 19 1 29 4c68 20 109 61 118 148c0 6 5 11 12 11c6 0 12 -5 12 -13'], + 0x2245: [552,-36,778,56,722,'720 538c-11 -108 -43 -171 -127 -196c-14 -4 -28 -6 -41 -6c-65 0 -126 43 -180 88c-43 37 -91 76 -143 76c-9 0 -19 -1 -29 -4c-68 -20 -109 -61 -118 -148c0 -6 -5 -11 -12 -11c-6 0 -12 5 -12 13c11 108 43 171 127 196c14 4 28 6 41 6c65 0 126 -43 180 -88 c43 -37 91 -76 143 -76c9 0 19 1 29 4c68 20 109 61 118 148c0 6 5 11 12 11c6 0 12 -5 12 -13zM722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 56c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626 c11 0 20 -9 20 -20'], + 0x2246: [614,48,778,56,722,'720 600c-11 -108 -43 -171 -127 -196c-14 -4 -28 -6 -41 -6c-65 0 -126 43 -180 88c-43 37 -91 76 -143 76c-9 0 -19 -1 -29 -4c-68 -21 -109 -61 -118 -148c0 -6 -5 -11 -12 -11c-6 0 -12 5 -12 13c11 108 43 171 127 196c14 4 28 6 41 6c65 0 126 -43 180 -88 c43 -37 91 -76 143 -76c9 0 19 1 29 4c68 20 109 60 118 148c0 6 5 11 12 11c6 0 12 -5 12 -13zM722 56c0 -11 -9 -20 -20 -20h-362l-47 -75c-4 -5 -10 -9 -17 -9c-11 0 -20 9 -20 20c0 4 1 8 3 11l33 53h-216c-11 0 -20 9 -20 20s9 20 20 20h241l96 154h-337 c-11 0 -20 9 -20 20s9 20 20 20h362l47 75c4 5 10 9 17 9c11 0 20 -9 20 -20c0 -4 -1 -8 -3 -11l-33 -53h216c11 0 20 -9 20 -20s-9 -20 -20 -20h-241l-96 -154h337c11 0 20 -9 20 -20'], + 0x2248: [457,-43,773,56,717,'717 438v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-62 0 -120 37 -172 76c-43 32 -89 67 -138 67c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169c12 3 24 4 35 4c62 0 120 -37 172 -76 c43 -32 89 -67 139 -67c8 0 16 1 25 3c67 17 111 49 127 124c2 5 6 9 12 9c7 0 12 -5 12 -12zM717 218v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-62 0 -120 37 -172 76c-43 32 -89 67 -138 67c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124 c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169c12 3 24 4 35 4c62 0 120 -37 172 -76c43 -32 89 -67 139 -67c8 0 16 1 25 3c67 17 111 49 127 124c2 5 6 9 12 9c7 0 12 -5 12 -12'], + 0x224A: [541,-36,778,56,722,'720 522c0 0 0 -1 -1 -2c-20 -93 -55 -149 -138 -169c-12 -3 -24 -4 -36 -4c-61 0 -120 37 -172 76c-42 32 -88 67 -138 67c-8 0 -17 -1 -25 -3c-68 -17 -111 -49 -128 -124c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 0 0 1 1 2c20 93 55 149 138 169c12 3 24 4 36 4 c61 0 120 -37 172 -76c42 -32 88 -67 138 -67c8 0 17 1 25 3c68 17 111 49 128 124c1 5 6 9 12 9s12 -5 12 -12zM720 328c0 0 0 -1 -1 -2c-20 -93 -55 -149 -138 -169c-12 -3 -24 -4 -36 -4c-61 0 -120 37 -172 76c-42 32 -88 67 -138 67c-8 0 -17 -1 -25 -3 c-68 -17 -111 -49 -128 -124c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 0 0 1 1 2c20 93 55 149 138 169c12 3 24 4 36 4c61 0 120 -37 172 -76c42 -32 88 -67 138 -67c8 0 17 1 25 3c68 17 111 49 128 124c1 5 6 9 12 9s12 -5 12 -12zM722 56c0 -11 -9 -20 -20 -20h-626 c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20'], + 0x224D: [498,-2,778,56,722,'722 478c0 -6 -2 -11 -6 -14c-86 -88 -204 -137 -327 -137s-241 49 -327 137c-4 3 -6 8 -6 14c0 11 9 20 20 20c6 0 11 -2 14 -6c79 -80 187 -125 299 -125s220 45 299 125c3 4 8 6 14 6c11 0 20 -9 20 -20zM722 22c0 -11 -9 -20 -20 -20c-6 0 -11 2 -14 6 c-79 80 -187 125 -299 125s-220 -45 -299 -125c-3 -4 -8 -6 -14 -6c-11 0 -20 9 -20 20c0 6 2 11 6 14c86 88 204 137 327 137s241 -49 327 -137c4 -3 6 -8 6 -14'], + 0x224E: [490,-10,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-204c1 4 1 9 1 13c0 61 -49 110 -110 110s-110 -49 -110 -110c0 -4 0 -9 1 -13h-40h-164c-11 0 -20 9 -20 20s9 20 20 20h165c13 70 74 123 148 123s135 -53 148 -123h165c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-165 c-13 -70 -74 -123 -148 -123s-135 53 -148 123h-165c-11 0 -20 9 -20 20s9 20 20 20h204c-1 -4 -1 -9 -1 -13c0 -61 49 -110 110 -110s110 49 110 110c0 4 0 9 -1 13h40h164c11 0 20 -9 20 -20'], + 0x224F: [490,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-204c1 4 1 9 1 13c0 61 -49 110 -110 110s-110 -49 -110 -110c0 -4 0 -9 1 -13h-40h-164c-11 0 -20 9 -20 20s9 20 20 20h165c13 70 74 123 148 123s135 -53 148 -123h165c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626 c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20'], + 0x2250: [601,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM442 548c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2251: [601,101,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM442 548c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53z M442 -48c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2252: [601,101,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM162 548c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53z M722 -48c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2253: [601,101,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 548c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53z M162 -48c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2256: [367,-133,778,56,722,'722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h225c-18 21 -29 48 -29 77s11 56 29 77h-225c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20s-9 -20 -20 -20h-225c18 -21 29 -48 29 -77s-11 -56 -29 -77h225c11 0 20 -9 20 -20zM466 250 c0 43 -34 77 -77 77s-77 -34 -77 -77s34 -77 77 -77s77 34 77 77'], + 0x2257: [730,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM506 613c0 -65 -52 -117 -117 -117s-117 52 -117 117s52 117 117 117 s117 -52 117 -117zM466 613c0 43 -34 77 -77 77s-77 -34 -77 -77s34 -77 77 -77s77 34 77 77'], + 0x225C: [810,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM572 505c0 -7 -5 -10 -16 -10h-335c-11 0 -15 2 -15 10c0 0 0 3 3 9l158 284 c6 10 11 12 22 12s16 -3 21 -12l158 -283c5 -7 4 -10 4 -10zM475 544l-108 197l-106 -197h214'], + 0x2260: [730,230,778,56,722,'722 153c0 -11 -9 -20 -20 -20h-334l-128 -350c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l122 336h-249c-11 0 -20 9 -20 20s9 20 20 20h264l56 154h-320c-11 0 -20 9 -20 20s9 20 20 20h334l128 350c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7 l-122 -336h249c11 0 20 -9 20 -20s-9 -20 -20 -20h-264l-56 -154h320c11 0 20 -9 20 -20'], + 0x2261: [464,-36,778,56,722,'722 444c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 56c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626 c11 0 20 -9 20 -20'], + 0x2264: [631,119,778,76,702,'691 75c24 -11 7 -47 -18 -36l-581 275c-17 8 -17 32 0 40l581 275c25 11 42 -25 18 -36l-548 -259zM702 -99c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x2265: [631,119,778,75,702,'686 314l-581 -275c-25 -11 -42 25 -18 36l548 259l-548 259c-24 11 -7 47 18 36l581 -275c17 -8 17 -32 0 -40zM702 -99c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x2266: [715,203,778,76,702,'691 159c24 -11 7 -47 -18 -36l-581 275c-17 8 -17 32 0 40l581 275c25 11 42 -25 18 -36l-548 -259zM702 -15c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20zM702 -183c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586 c11 0 20 -9 20 -20'], + 0x2267: [715,203,778,75,702,'686 398l-581 -275c-25 -11 -42 25 -18 36l548 259l-548 259c-24 11 -7 47 18 36l581 -275c17 -8 17 -32 0 -40zM702 -15c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20zM702 -183c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20 s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x2268: [715,287,778,76,702,'691 159c24 -11 7 -47 -18 -36l-581 275c-17 8 -17 32 0 40l581 275c25 11 42 -25 18 -36l-548 -259zM702 -183c0 -11 -9 -20 -20 -20h-363l-72 -78c-4 -4 -9 -6 -14 -6c-12 0 -20 9 -20 20c0 5 2 10 5 13l47 51h-169c-11 0 -20 9 -20 20s9 20 20 20h206l119 128h-325 c-11 0 -20 9 -20 20s9 20 20 20h363l72 77c4 4 9 7 15 7c11 0 20 -9 20 -20c0 -6 -3 -10 -6 -14l-47 -50h169c11 0 20 -9 20 -20s-9 -20 -20 -20h-206l-119 -128h325c11 0 20 -9 20 -20'], + 0x2269: [715,287,778,75,702,'686 398l-581 -275c-25 -11 -42 25 -18 36l548 259l-548 259c-24 11 -7 47 18 36l581 -275c17 -8 17 -32 0 -40zM702 -183c0 -11 -9 -20 -20 -20h-363l-72 -78c-4 -4 -9 -6 -14 -6c-12 0 -20 9 -20 20c0 5 2 10 5 13l47 51h-169c-11 0 -20 9 -20 20s9 20 20 20h206 l119 128h-325c-11 0 -20 9 -20 20s9 20 20 20h363l72 77c4 4 9 7 15 7c11 0 20 -9 20 -20c0 -6 -3 -10 -6 -14l-47 -50h169c11 0 20 -9 20 -20s-9 -20 -20 -20h-206l-119 -128h325c11 0 20 -9 20 -20'], + 0x226A: [547,47,1000,79,920,'578 -10c23 -13 3 -48 -20 -34l-467 274c-16 9 -16 31 0 40l467 274c23 14 43 -21 20 -34l-442 -260zM910 -10c23 -13 3 -48 -20 -34l-468 274c-15 9 -15 31 0 40l468 274c23 14 43 -21 20 -34l-443 -260'], + 0x226B: [547,47,1000,79,921,'909 230l-467 -274c-23 -14 -43 21 -20 34l442 260l-442 260c-23 13 -3 48 20 34l467 -274c16 -9 16 -31 0 -40zM578 230l-468 -274c-23 -14 -43 21 -20 34l443 260l-443 260c-23 13 -3 48 20 34l468 -274c15 -9 15 -31 0 -40'], + 0x226C: [770,270,434,56,378,'378 -250c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2c-47 24 -92 61 -132 106c-40 -45 -85 -82 -132 -106c-3 -1 -6 -2 -9 -2c-11 0 -20 9 -20 20c0 8 5 15 11 18c45 22 87 58 125 101c-82 107 -136 249 -136 381s54 274 136 381c-38 43 -80 79 -125 101c-6 3 -11 10 -11 18 c0 11 9 20 20 20c3 0 6 -1 9 -2c47 -24 92 -61 132 -106c40 45 85 82 132 106c3 1 6 2 9 2c11 0 20 -9 20 -20c0 -8 -5 -15 -11 -18c-45 -22 -87 -58 -125 -101c82 -107 136 -249 136 -381s-54 -274 -136 -381c38 -43 80 -79 125 -101c6 -3 11 -10 11 -18zM338 250 c0 120 -48 251 -121 349c-73 -98 -121 -229 -121 -349s48 -251 121 -349c73 98 121 229 121 349'], + 0x226E: [730,230,778,77,700,'689 -9c24 -11 7 -47 -18 -36l-314 149l-117 -321c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l118 324l-230 109c-17 8 -17 32 0 40l344 163l103 284c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-90 -246l186 88c25 11 42 -25 18 -36l-223 -105 l-96 -262zM414 379l-273 -129l193 -91'], + 0x226F: [730,230,778,77,700,'688 230l-344 -163l-103 -284c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l90 246l-186 -88c-25 -11 -42 25 -18 36l223 105l96 262l-319 151c-24 11 -7 47 18 36l314 -149l117 321c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-118 -324l230 -109 c17 -8 17 -32 0 -40zM637 250l-193 91l-80 -220'], + 0x2270: [730,230,778,76,702,'702 -99c0 -11 -9 -20 -20 -20h-405l-35 -98c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l31 84h-139c-11 0 -20 9 -20 20s9 20 20 20h153l99 272l-256 121c-17 8 -17 32 0 40l381 180l66 183c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-53 -144 l149 70c25 11 42 -25 18 -36l-186 -88l-107 -292l293 -138c24 -11 7 -47 -18 -36l-288 136l-93 -254h390c11 0 20 -9 20 -20zM453 481l-310 -147l219 -104'], + 0x2271: [730,230,778,75,702,'702 -99c0 -11 -9 -20 -20 -20h-408l-35 -98c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l31 84h-136c-11 0 -20 9 -20 20s9 20 20 20h150l82 223l-223 -105c-25 -11 -42 25 -18 36l260 123l85 232l-345 163c-24 11 -7 47 18 36l341 -161l90 249 c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-92 -252l204 -97c17 -8 17 -32 0 -40l-307 -145l-90 -248h393c11 0 20 -9 20 -20zM635 334l-167 79l-69 -191'], + 0x2272: [636,125,776,55,719,'706 173c25 -9 12 -47 -13 -37l-623 229c-19 7 -19 34 0 40l623 230c25 9 38 -28 13 -37l-575 -213zM718 51v-2c-20 -93 -56 -149 -138 -169c-12 -3 -24 -5 -36 -5c-61 0 -120 38 -172 77c-42 32 -88 66 -138 66c-9 0 -17 0 -26 -3c-67 -16 -111 -48 -127 -123 c-1 -6 -6 -10 -12 -10s-12 6 -12 12v3c21 93 56 149 139 169c12 3 24 4 35 4c62 0 120 -37 172 -76c43 -32 89 -67 139 -67c8 0 17 1 25 3c67 17 111 48 128 124c1 5 6 9 11 9c7 0 12 -5 12 -12'], + 0x2273: [636,125,776,55,719,'706 365l-623 -229c-25 -10 -39 28 -14 37l575 212l-575 213c-25 9 -11 46 14 37l623 -230c18 -6 18 -33 0 -40zM718 51v-2c-20 -93 -56 -149 -138 -169c-12 -3 -24 -5 -36 -5c-61 0 -120 38 -172 77c-42 32 -88 66 -138 66c-9 0 -17 0 -26 -3 c-67 -16 -111 -48 -127 -123c-1 -6 -6 -10 -12 -10s-12 6 -12 12v3c21 93 56 149 139 169c12 3 24 4 35 4c62 0 120 -37 172 -76c43 -32 89 -67 139 -67c8 0 17 1 25 3c67 17 111 48 128 124c1 5 6 9 11 9c7 0 12 -5 12 -12'], + 0x2276: [736,236,778,76,701,'690 221c24 -11 8 -48 -16 -37l-582 255c-18 8 -18 33 0 40l582 256c24 10 40 -26 16 -37l-544 -239zM686 21l-582 -256c-24 -10 -40 26 -16 37l544 239l-544 238c-24 11 -8 48 16 37l582 -255c18 -8 18 -33 0 -40'], + 0x2277: [736,236,778,76,701,'686 439l-582 -255c-24 -11 -40 26 -16 37l544 238l-544 239c-24 11 -8 47 16 37l582 -256c18 -7 18 -32 0 -40zM690 -198c24 -11 8 -47 -16 -37l-582 256c-18 7 -18 32 0 40l582 255c24 11 40 -26 16 -37l-544 -238'], + 0x227A: [547,47,778,76,702,'702 -27c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-39 197 -269 261 -486 261h-80c-3 0 -5 1 -7 1c-8 3 -13 11 -13 19s5 16 13 19c2 0 4 1 7 1h80c217 0 447 64 486 261c2 9 10 16 20 16c11 0 20 -9 20 -20v-4c-31 -155 -167 -238 -329 -273c162 -35 298 -118 329 -273 v-4'], + 0x227B: [547,47,778,76,702,'702 250c0 -8 -5 -16 -13 -19c-2 0 -4 -1 -7 -1h-80c-217 0 -447 -64 -486 -261c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4c31 155 167 238 329 273c-162 35 -298 118 -329 273v4c0 11 9 20 20 20c10 0 18 -7 20 -16c39 -197 269 -261 486 -261h80c3 0 5 -1 7 -1 c8 -3 13 -11 13 -19'], + 0x227C: [639,139,738,56,682,'682 65c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-39 197 -269 261 -486 261h-80c-3 0 -5 0 -7 1c-8 3 -13 10 -13 19c0 8 5 15 13 18c2 1 4 2 7 2h80c217 0 447 63 486 261c2 9 10 16 20 16c11 0 20 -9 20 -20v-4c-31 -155 -167 -238 -329 -273 c162 -35 298 -119 329 -273v-4zM566 -119c0 -11 -9 -20 -20 -20s-19 8 -20 18c-19 219 -200 275 -370 275h-80c-11 0 -20 9 -20 20s9 20 20 20h80c190 0 389 -67 410 -311v-2'], + 0x227D: [639,139,738,56,682,'682 342c0 -9 -5 -16 -13 -19c-2 -1 -4 -1 -7 -1h-80c-217 0 -447 -64 -486 -261c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4c31 154 167 238 329 273c-162 35 -298 118 -329 273v4c0 11 9 20 20 20c10 0 18 -7 20 -16c39 -198 269 -261 486 -261h80c3 0 5 -1 7 -2 c8 -3 13 -10 13 -18zM682 174c0 -11 -9 -20 -20 -20h-80c-170 0 -351 -56 -370 -275c-1 -10 -9 -18 -20 -18s-20 9 -20 20v2c21 244 220 311 410 311h80c11 0 20 -9 20 -20'], + 0x227E: [682,170,773,56,717,'700 108c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-39 198 -270 261 -486 261h-80c-3 0 -6 1 -8 2c-7 3 -12 10 -12 18c0 9 5 16 12 19c2 1 5 1 8 1l80 1c216 0 447 63 486 260c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -2 -1 -4c-31 -154 -167 -238 -328 -273 c161 -34 297 -118 328 -273c0 -1 1 -2 1 -4zM717 5v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-62 0 -120 37 -172 76c-43 32 -89 67 -138 67c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169 c12 3 24 4 35 4c62 0 120 -37 172 -76c43 -32 89 -67 139 -67c8 0 16 1 25 3c67 17 111 49 127 124c2 5 6 9 12 9c7 0 12 -5 12 -12'], + 0x227F: [682,170,773,56,717,'700 385c0 -8 -6 -15 -13 -18c-2 -1 -5 -2 -7 -2h-80h-21c-211 -4 -428 -69 -466 -261c-2 -9 -10 -16 -19 -16c-11 0 -20 9 -20 20v4c31 154 166 238 327 273c-161 36 -296 119 -327 273v4c0 11 9 20 20 20c9 0 17 -7 19 -16c38 -191 255 -257 466 -261h21h80 c2 0 5 0 7 -1c7 -3 13 -10 13 -19zM717 5v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-62 0 -120 37 -172 76c-43 32 -89 67 -138 67c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169 c12 3 24 4 35 4c62 0 120 -37 172 -76c43 -32 89 -67 139 -67c8 0 16 1 25 3c67 17 111 49 127 124c2 5 6 9 12 9c7 0 12 -5 12 -12'], + 0x2280: [730,230,778,76,702,'702 -27c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-26 130 -135 202 -268 236l-154 -422c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l152 417c-58 11 -119 16 -179 16h-80c-3 0 -5 1 -7 1c-8 3 -13 11 -13 19s5 16 13 19c2 0 4 1 7 1h80c70 0 141 7 207 22 l155 425c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-145 -398c117 38 209 108 232 226c2 9 10 16 20 16c11 0 20 -9 20 -20v-4c-29 -141 -145 -223 -288 -263l-7 -18c147 -39 266 -122 295 -265v-4'], + 0x2281: [730,230,778,76,702,'702 250c0 -8 -5 -16 -13 -19c-2 0 -4 -1 -7 -1h-80c-70 0 -141 -7 -207 -22l-155 -425c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l145 398c-117 -38 -209 -108 -232 -226c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4c29 141 145 223 288 263l7 18 c-147 39 -266 122 -295 265v4c0 11 9 20 20 20c10 0 18 -7 20 -16c26 -130 135 -202 268 -236l154 422c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-152 -417c58 -11 119 -16 179 -16h80c3 0 5 -1 7 -1c8 -3 13 -11 13 -19'], + 0x2282: [543,43,778,85,693,'693 -23c0 -11 -9 -20 -20 -20h-295c-162 0 -293 131 -293 293s131 293 293 293h295c11 0 20 -9 20 -20s-9 -20 -20 -20h-295c-140 0 -253 -113 -253 -253s113 -253 253 -253h295c11 0 20 -9 20 -20'], + 0x2283: [543,43,778,85,693,'693 250c0 -162 -131 -293 -293 -293h-295c-11 0 -20 9 -20 20s9 20 20 20h295c140 0 253 113 253 253s-113 253 -253 253h-295c-11 0 -20 9 -20 20s9 20 20 20h295c162 0 293 -131 293 -293'], + 0x2286: [627,127,778,85,693,'693 61c0 -11 -9 -20 -20 -20h-295c-162 0 -293 131 -293 293s131 293 293 293h295c11 0 20 -9 20 -20s-9 -20 -20 -20h-295c-140 0 -253 -113 -253 -253s113 -253 253 -253h295c11 0 20 -9 20 -20zM693 -107c0 -11 -9 -20 -20 -20h-546c-11 0 -20 9 -20 20s9 20 20 20 h546c11 0 20 -9 20 -20'], + 0x2287: [627,127,778,85,693,'693 334c0 -162 -131 -293 -293 -293h-295c-11 0 -20 9 -20 20s9 20 20 20h295c140 0 253 113 253 253s-113 253 -253 253h-295c-11 0 -20 9 -20 20s9 20 20 20h295c162 0 293 -131 293 -293zM671 -107c0 -11 -9 -20 -20 -20h-546c-11 0 -20 9 -20 20s9 20 20 20h546 c11 0 20 -9 20 -20'], + 0x2288: [730,230,778,85,693,'693 -107c0 -11 -9 -20 -20 -20h-400l-33 -90c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l27 76h-103c-11 0 -20 9 -20 20s9 20 20 20h118l51 140c-122 35 -211 148 -211 281c0 162 131 293 293 293h127l33 90c2 8 10 13 19 13c11 0 20 -9 20 -20 c0 -2 -1 -5 -2 -7l-27 -76h125c11 0 20 -9 20 -20s-9 -20 -20 -20h-140l-184 -504c10 -1 19 -2 29 -2h295c11 0 20 -9 20 -20s-9 -20 -20 -20h-295c-14 0 -29 1 -43 3l-47 -131h385c11 0 20 -9 20 -20zM490 587h-112c-140 0 -253 -113 -253 -253c0 -116 78 -214 185 -244'], + 0x2289: [730,230,778,85,693,'693 334c0 -162 -131 -293 -293 -293h-66l-46 -128h363c11 0 20 -9 20 -20s-9 -20 -20 -20h-378l-33 -90c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l27 76h-125c-11 0 -20 9 -20 20s9 20 20 20h140l47 128h-187c-11 0 -20 9 -20 20s9 20 20 20h201l179 491 c-27 10 -55 15 -85 15h-295c-11 0 -20 9 -20 20s9 20 20 20h295c35 0 68 -6 99 -17l39 107c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-40 -109c94 -49 158 -147 158 -260zM653 334c0 96 -53 179 -131 222l-173 -475h51c140 0 253 113 253 253'], + 0x228A: [627,211,778,85,693,'693 61c0 -11 -9 -20 -20 -20h-295c-162 0 -293 131 -293 293s131 293 293 293h295c11 0 20 -9 20 -20s-9 -20 -20 -20h-295c-140 0 -253 -113 -253 -253s113 -253 253 -253h295c11 0 20 -9 20 -20zM693 -107c0 -11 -9 -20 -20 -20h-264l-73 -78c-4 -4 -9 -6 -14 -6 c-12 0 -20 9 -20 20c0 5 2 10 5 14l47 50h-227c-11 0 -20 9 -20 20s9 20 20 20h264l73 78c4 4 9 6 15 6c11 0 20 -9 20 -20c0 -5 -3 -10 -6 -14l-47 -50h227c11 0 20 -9 20 -20'], + 0x228B: [627,211,778,85,693,'693 334c0 -162 -131 -293 -293 -293h-295c-11 0 -20 9 -20 20s9 20 20 20h295c140 0 253 113 253 253s-113 253 -253 253h-295c-11 0 -20 9 -20 20s9 20 20 20h295c162 0 293 -131 293 -293zM671 -107c0 -11 -9 -20 -20 -20h-264l-73 -78c-4 -4 -9 -6 -14 -6 c-12 0 -20 9 -20 20c0 5 2 10 5 14l47 50h-227c-11 0 -20 9 -20 20s9 20 20 20h264l73 78c4 4 9 6 15 6c11 0 20 -9 20 -20c0 -5 -3 -10 -6 -14l-47 -50h227c11 0 20 -9 20 -20'], + 0x228E: [604,20,667,61,607,'607 202c0 -121 -121 -222 -273 -222s-273 101 -273 222v382c0 11 9 20 20 20s20 -9 20 -20v-382c0 -102 105 -182 233 -182s233 80 233 182v382c0 11 9 20 20 20s20 -9 20 -20v-382zM491 292c0 -11 -9 -20 -20 -20h-117v-117c0 -11 -9 -20 -20 -20s-20 9 -20 20v117 h-117c-11 0 -20 9 -20 20s9 20 20 20h117v117c0 11 9 20 20 20s20 -9 20 -20v-117h117c11 0 20 -9 20 -20'], + 0x228F: [543,43,778,76,702,'702 -23c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20v546c0 11 9 20 20 20h586c11 0 20 -9 20 -20s-9 -20 -20 -20h-566v-506h566c11 0 20 -9 20 -20'], + 0x2290: [543,43,778,76,702,'702 -23c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h566v506h-566c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20v-546'], + 0x2291: [627,127,778,76,702,'702 61c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20v546c0 11 9 20 20 20h586c11 0 20 -9 20 -20s-9 -20 -20 -20h-566v-506h566c11 0 20 -9 20 -20zM702 -107c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x2292: [627,127,778,76,702,'702 61c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h566v506h-566c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20v-546zM702 -107c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x2293: [604,20,667,80,587,'587 0c0 -11 -9 -20 -20 -20s-20 9 -20 20v564h-427v-564c0 -11 -9 -20 -20 -20s-20 9 -20 20v584c0 11 9 20 20 20h467c11 0 20 -9 20 -20v-584'], + 0x2294: [604,20,667,80,587,'587 0c0 -11 -9 -20 -20 -20h-467c-11 0 -20 9 -20 20v584c0 11 9 20 20 20s20 -9 20 -20v-564h427v564c0 11 9 20 20 20s20 -9 20 -20v-584'], + 0x2295: [592,92,778,47,731,'690 270c-10 151 -130 271 -281 281v-281h281zM369 270v281c-151 -10 -271 -130 -281 -281h281zM369 -51v281h-281c10 -151 130 -271 281 -281zM690 230h-281v-281c151 10 271 130 281 281zM731 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342 s342 -153 342 -342'], + 0x2296: [592,92,778,47,731,'690 270c-10 157 -141 282 -301 282s-291 -125 -301 -282h602zM690 230h-602c10 -157 141 -282 301 -282s291 125 301 282zM731 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342'], + 0x2297: [592,92,778,47,731,'691 250c0 76 -28 146 -75 199l-199 -199l199 -199c47 53 75 123 75 199zM588 477c-53 47 -123 75 -199 75s-146 -28 -199 -75l199 -199zM361 250l-199 199c-47 -53 -75 -123 -75 -199s28 -146 75 -199zM588 23l-199 199l-199 -199c53 -47 123 -75 199 -75s146 28 199 75 zM731 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342'], + 0x2298: [592,92,778,47,731,'691 250c0 123 -74 229 -180 276l-206 -566c26 -8 55 -12 84 -12c167 0 302 135 302 302zM473 540c-26 8 -55 12 -84 12c-167 0 -302 -135 -302 -302c0 -123 74 -229 180 -276zM731 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342 '], + 0x2299: [592,92,778,47,731,'731 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342zM691 250c0 167 -135 302 -302 302s-302 -135 -302 -302s135 -302 302 -302s302 135 302 302zM442 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x229A: [592,92,796,56,740,'740 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342zM700 250c0 167 -135 302 -302 302s-302 -135 -302 -302s135 -302 302 -302s302 135 302 302zM548 250c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150 s150 -67 150 -150zM508 250c0 61 -49 110 -110 110s-110 -49 -110 -110s49 -110 110 -110s110 49 110 110'], + 0x229B: [592,92,796,56,740,'740 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342zM700 250c0 167 -135 302 -302 302s-302 -135 -302 -302s135 -302 302 -302s302 135 302 302zM581 144c-9 -15 -29 -19 -43 -9l-128 94l17 -158c2 -17 -11 -32 -29 -32 s-31 15 -29 32l17 158l-128 -94c-14 -10 -34 -6 -43 9c-9 16 -3 35 14 42l145 64l-145 64c-17 7 -23 26 -14 42c9 15 29 19 43 9l128 -94l-17 158c-2 17 11 33 29 33s31 -16 29 -33l-17 -158l128 94c14 10 34 6 43 -9c9 -16 3 -35 -14 -42l-145 -64l145 -64 c17 -7 23 -26 14 -42'], + 0x229D: [592,92,796,56,740,'740 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342zM700 250c0 167 -135 302 -302 302s-302 -135 -302 -302s135 -302 302 -302s302 135 302 302zM654 250c0 -11 -9 -20 -20 -20h-472c-11 0 -20 9 -20 20s9 20 20 20h472 c11 0 20 -9 20 -20'], + 0x229E: [583,83,778,56,722,'682 543h-273v-273h273v273zM369 270v273h-273v-273h273zM369 -43v273h-273v-273h273zM682 230h-273v-273h273v273zM722 -63c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20v626c0 11 9 20 20 20h626c11 0 20 -9 20 -20v-626'], + 0x229F: [583,83,778,56,722,'682 543h-586v-273h586v273zM682 230h-586v-273h586v273zM722 -63c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20v626c0 11 9 20 20 20h626c11 0 20 -9 20 -20v-626'], + 0x22A0: [583,83,778,56,722,'654 543h-530l265 -265zM361 250l-265 265v-530zM654 -43l-265 265l-265 -265h530zM682 -15v530l-265 -265zM722 -63c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20v626c0 11 9 20 20 20h626c11 0 20 -9 20 -20v-626'], + 0x22A1: [583,83,778,56,722,'722 -63c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20v626c0 11 9 20 20 20h626c11 0 20 -9 20 -20v-626zM682 543h-586v-586h586v586zM442 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x22A2: [684,0,611,56,556,'556 342c0 -11 -9 -20 -20 -20h-440v-302c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-302h440c11 0 20 -9 20 -20'], + 0x22A3: [684,0,611,55,555,'555 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v302h-440c-11 0 -20 9 -20 20s9 20 20 20h440v302c0 11 9 20 20 20s20 -9 20 -20v-644'], + 0x22A4: [664,20,778,56,722,'722 644c0 -11 -9 -20 -20 -20h-293v-624c0 -11 -9 -20 -20 -20s-20 9 -20 20v624h-293c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20'], + 0x22A5: [684,0,778,56,722,'722 20c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h293v624c0 11 9 20 20 20s20 -9 20 -20v-624h293c11 0 20 -9 20 -20'], + 0x22A8: [684,0,612,56,556,'556 245c0 -11 -9 -20 -20 -20h-440v-205c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-205h440c11 0 20 -9 20 -20s-9 -20 -20 -20h-440v-154h440c11 0 20 -9 20 -20'], + 0x22A9: [684,0,673,56,617,'96 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-644zM617 342c0 -11 -9 -20 -20 -20h-333v-302c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-302h333c11 0 20 -9 20 -20'], + 0x22AA: [684,0,841,56,785,'264 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-644zM96 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-644zM785 342c0 -11 -9 -20 -20 -20h-333v-302c0 -11 -9 -20 -20 -20s-20 9 -20 20v644 c0 11 9 20 20 20s20 -9 20 -20v-302h333c11 0 20 -9 20 -20'], + 0x22AC: [684,0,565,56,509,'509 342c0 -11 -9 -20 -20 -20h-201l-72 -115v-187c0 -11 -9 -20 -20 -20s-20 9 -20 20v122l-83 -133c-4 -5 -10 -9 -17 -9c-11 0 -20 9 -20 20c0 4 1 8 3 11l117 187v446c0 11 9 20 20 20s20 -9 20 -20v-302h50l195 313c4 5 10 9 17 9c11 0 20 -9 20 -20 c0 -4 -1 -8 -3 -11l-182 -291h176c11 0 20 -9 20 -20zM241 322h-25v-40'], + 0x22AD: [684,0,732,56,676,'676 245c0 -11 -9 -20 -20 -20h-428l-12 -18v-187c0 -11 -9 -20 -20 -20s-20 9 -20 20v122l-83 -133c-4 -5 -10 -9 -17 -9c-11 0 -20 9 -20 20c0 4 1 8 3 11l117 187v446c0 11 9 20 20 20s20 -9 20 -20v-205h110l135 216c4 5 10 9 17 9c11 0 20 -9 20 -20 c0 -4 -1 -8 -3 -11l-121 -194h282c11 0 20 -9 20 -20s-9 -20 -20 -20h-307l-96 -154h403c11 0 20 -9 20 -20zM301 419h-85v-137'], + 0x22AE: [684,0,793,56,737,'737 342c0 -11 -9 -20 -20 -20h-333v-302c0 -11 -9 -20 -20 -20s-20 9 -20 20v392l-128 -205v-187c0 -11 -9 -20 -20 -20s-20 9 -20 20v122l-83 -133c-4 -5 -10 -9 -17 -9c-11 0 -20 9 -20 20c0 4 1 8 3 11l117 187v446c0 11 9 20 20 20s20 -9 20 -20v-382l128 205v177 c0 11 9 20 20 20s20 -9 20 -20v-113l77 124c4 5 10 9 17 9c11 0 20 -9 20 -20c0 -4 -1 -8 -3 -11l-111 -177v-114h333c11 0 20 -9 20 -20'], + 0x22AF: [684,0,773,56,717,'717 245c0 -11 -9 -20 -20 -20h-313v-205c0 -11 -9 -20 -20 -20s-20 9 -20 20v392l-128 -205v-187c0 -11 -9 -20 -20 -20s-20 9 -20 20v122l-83 -133c-4 -5 -10 -9 -17 -9c-11 0 -20 9 -20 20c0 4 1 8 3 11l117 187v446c0 11 9 20 20 20s20 -9 20 -20v-382l128 205v177 c0 11 9 20 20 20s20 -9 20 -20v-113l77 124c4 5 10 9 17 9c11 0 20 -9 20 -20c0 -4 -1 -8 -3 -11l-111 -177v-17h313c11 0 20 -9 20 -20s-9 -20 -20 -20h-313v-154h313c11 0 20 -9 20 -20'], + 0x22B2: [547,47,738,56,682,'682 -27c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2l-586 277c-6 3 -11 10 -11 18s5 15 11 18l586 277c3 1 6 2 9 2c11 0 20 -9 20 -20v-554zM642 5v490l-519 -245'], + 0x22B3: [547,47,738,56,682,'682 250c0 -8 -5 -15 -11 -18l-586 -277c-3 -1 -6 -2 -9 -2c-11 0 -20 9 -20 20v554c0 11 9 20 20 20c3 0 6 -1 9 -2l586 -277c6 -3 11 -10 11 -18zM615 250l-519 245v-490'], + 0x22B4: [605,105,738,56,682,'682 71c0 -11 -9 -20 -20 -20c-3 0 -6 1 -8 2l-586 257c-7 3 -12 10 -12 18s5 15 12 18l586 257c2 1 5 2 8 2c11 0 20 -9 20 -20v-514zM642 102v452l-516 -226zM682 -85c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x22B5: [605,105,738,56,682,'682 328c0 -8 -5 -15 -12 -18l-586 -257c-2 -1 -5 -2 -8 -2c-11 0 -20 9 -20 20v514c0 11 9 20 20 20c3 0 6 -1 8 -2l586 -257c7 -3 12 -10 12 -18zM612 328l-516 226v-452zM682 -85c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x22B8: [400,-100,948,56,892,'892 250c0 -83 -67 -150 -150 -150c-76 0 -139 57 -149 130h-517c-11 0 -20 9 -20 20s9 20 20 20h517c10 73 73 130 149 130c83 0 150 -67 150 -150zM852 250c0 61 -49 110 -110 110s-110 -49 -110 -110s49 -110 110 -110s110 49 110 110'], + 0x22BA: [664,20,778,56,722,'722 644c0 -11 -9 -20 -20 -20h-293v-624c0 -11 -9 -20 -20 -20s-20 9 -20 20v624h-293c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20'], + 0x22BB: [568,136,642,56,586,'584 540l-242 -544c-8 -18 -33 -18 -40 0l-243 544c-11 24 25 41 36 16l227 -507l226 507c11 25 47 8 36 -16zM586 -116c0 -11 -9 -20 -20 -20h-489c-11 0 -20 9 -20 20s9 20 20 20h489c11 0 20 -9 20 -20'], + 0x22BC: [684,20,642,55,585,'583 8c11 -24 -25 -41 -36 -16l-227 507l-226 -507c-11 -25 -47 -8 -36 16l242 544c8 18 33 18 40 0zM585 664c0 -11 -9 -20 -20 -20h-489c-11 0 -20 9 -20 20s9 20 20 20h489c11 0 20 -9 20 -20'], + 0x22C4: [480,-20,500,20,480,'432 250l-182 182l-182 -182l182 -182zM480 250c0 -6 -2 -11 -6 -14l-210 -210c-3 -4 -8 -6 -14 -6s-11 2 -14 6l-210 210c-4 3 -6 8 -6 14s2 11 6 14l210 210c3 4 8 6 14 6s11 -2 14 -6l210 -210c4 -3 6 -8 6 -14'], + 0x22C5: [303,-197,278,86,192,'192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x22C6: [486,-13,500,2,497,'497 306c1 -3 0 -7 -3 -8l-184 -92l95 -182c2 -3 1 -6 -2 -9c-3 -2 -7 -1 -9 1l-144 146l-144 -146c-2 -2 -6 -3 -9 -1c-3 3 -4 6 -2 9l95 182l-184 92c-3 1 -4 5 -3 8s4 5 7 5l203 -34l30 203c1 3 4 6 7 6s6 -3 7 -6l30 -203l203 34c3 0 6 -2 7 -5'], + 0x22C8: [505,5,623,56,566,'283 250l-187 187v-374zM526 437l-187 -187l187 -187v374zM566 15c0 -12 -8 -20 -20 -20c-5 0 -10 2 -14 5l-221 222l-221 -222c-4 -3 -9 -5 -14 -5c-12 0 -20 8 -20 20v470c0 12 8 20 20 20c5 0 10 -2 14 -5l221 -222l221 222c4 3 9 5 14 5c12 0 20 -8 20 -20v-470'], + 0x22C9: [505,5,623,56,566,'566 15c0 -12 -8 -20 -20 -20c-5 0 -10 2 -14 5l-221 222l-221 -222c-4 -3 -9 -5 -14 -5c-12 0 -20 8 -20 20v470c0 12 8 20 20 20c5 0 10 -2 14 -5l221 -222l221 222c4 3 9 5 14 5c12 0 20 -8 20 -20c0 -5 -2 -10 -5 -14l-222 -221l222 -221c3 -4 5 -9 5 -14zM283 250 l-187 187v-374'], + 0x22CA: [505,5,623,57,567,'567 15c0 -12 -8 -20 -20 -20c-5 0 -10 2 -14 5l-221 222l-221 -222c-4 -3 -9 -5 -14 -5c-12 0 -20 8 -20 20c0 5 2 10 5 14l222 221l-222 221c-3 4 -5 9 -5 14c0 12 8 20 20 20c5 0 10 -2 14 -5l221 -222l221 222c4 3 9 5 14 5c12 0 20 -8 20 -20v-470zM527 437 l-187 -187l187 -187v374'], + 0x22CB: [505,5,623,56,566,'566 15c0 -12 -8 -20 -20 -20c-5 0 -10 2 -14 5l-221 222l-221 -222c-4 -3 -9 -5 -14 -5c-12 0 -20 8 -20 20c0 5 2 10 5 14l222 221l-222 221c-3 4 -5 9 -5 14c0 12 8 20 20 20c5 0 10 -2 14 -5l471 -471c3 -4 5 -9 5 -14'], + 0x22CC: [505,5,623,57,567,'567 15c0 -12 -8 -20 -20 -20c-5 0 -10 2 -14 5l-221 222l-221 -222c-4 -3 -9 -5 -14 -5c-12 0 -20 8 -20 20c0 5 2 10 5 14l471 471c4 3 9 5 14 5c12 0 20 -8 20 -20c0 -5 -2 -10 -5 -14l-222 -221l222 -221c3 -4 5 -9 5 -14'], + 0x22CD: [468,-120,778,56,722,'722 140c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM720 266c0 -8 -6 -13 -12 -13c-7 0 -12 5 -12 11c-9 87 -50 128 -118 148c-10 3 -20 4 -29 4c-52 0 -100 -39 -143 -76c-54 -45 -115 -88 -180 -88c-13 0 -27 2 -41 6 c-84 25 -116 88 -127 196c0 8 6 13 12 13c7 0 12 -5 12 -11c9 -87 50 -128 118 -148c10 -3 20 -4 29 -4c52 0 100 39 143 76c54 45 115 88 180 88c13 0 27 -2 41 -6c84 -25 116 -88 127 -196'], + 0x22CE: [584,20,733,56,677,'677 564c0 -10 -7 -17 -16 -20c-216 -48 -274 -306 -274 -544c0 -11 -9 -20 -20 -20c-12 0 -20 9 -20 20c0 238 -59 496 -275 544c-9 3 -16 10 -16 20c0 11 9 20 20 20h4c167 -38 252 -188 287 -364c34 176 119 326 286 364h4c11 0 20 -9 20 -20'], + 0x22CF: [584,20,733,56,677,'677 0c0 -11 -9 -20 -20 -20h-4c-167 38 -252 188 -286 364c-35 -176 -120 -326 -287 -364h-4c-11 0 -20 9 -20 20c0 10 7 17 16 20c216 48 275 306 275 544c0 11 8 20 20 20c11 0 20 -9 20 -20c0 -238 58 -496 274 -544c9 -3 16 -10 16 -20'], + 0x22D0: [543,43,698,56,642,'642 -23c0 -11 -9 -20 -20 -20h-273c-162 0 -293 131 -293 293s131 293 293 293h273c11 0 20 -9 20 -20s-9 -20 -20 -20h-273c-140 0 -253 -113 -253 -253s113 -253 253 -253h273c11 0 20 -9 20 -20zM642 133c0 -12 -9 -20 -20 -20h-273c-76 0 -137 61 -137 137 s61 138 137 138h273c11 0 20 -9 20 -20c0 -12 -9 -20 -20 -20h-273c-54 0 -97 -44 -97 -98s43 -97 97 -97h273c11 0 20 -9 20 -20'], + 0x22D1: [543,43,698,56,642,'642 250c0 -162 -131 -293 -293 -293h-273c-11 0 -20 9 -20 20s9 20 20 20h273c140 0 253 113 253 253s-113 253 -253 253h-273c-11 0 -20 9 -20 20s9 20 20 20h273c162 0 293 -131 293 -293zM487 250c0 -76 -62 -137 -138 -137h-273c-11 0 -20 8 -20 20c0 11 9 20 20 20 h273c54 0 98 43 98 97s-44 98 -98 98h-273c-11 0 -20 8 -20 20c0 11 9 20 20 20h273c76 0 138 -62 138 -138'], + 0x22D2: [604,20,658,56,602,'602 0c0 -11 -9 -20 -20 -20s-20 9 -20 20v382c0 102 -105 182 -233 182s-233 -80 -233 -182v-382c0 -11 -9 -20 -20 -20s-20 9 -20 20v382c0 121 121 222 273 222s273 -101 273 -222v-382zM460 0c0 -11 -9 -20 -20 -20s-20 9 -20 20v353c0 40 -42 69 -91 69 s-91 -29 -91 -69v-353c0 -11 -9 -20 -20 -20s-20 9 -20 20v353c0 59 58 109 131 109s131 -50 131 -109v-353'], + 0x22D3: [604,20,658,56,602,'602 202c0 -121 -121 -222 -273 -222s-273 101 -273 222v382c0 11 9 20 20 20s20 -9 20 -20v-382c0 -102 105 -182 233 -182s233 80 233 182v382c0 11 9 20 20 20s20 -9 20 -20v-382zM460 231c0 -59 -58 -109 -131 -109s-131 50 -131 109v353c0 11 9 20 20 20 s20 -9 20 -20v-353c0 -40 42 -69 91 -69s91 29 91 69v353c0 11 9 20 20 20s20 -9 20 -20v-353'], + 0x22D6: [547,47,778,77,700,'689 -9c24 -11 7 -47 -18 -36l-581 275c-17 8 -17 32 0 40l581 275c25 11 42 -25 18 -36l-548 -259zM584 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x22D7: [547,47,778,77,700,'688 230l-581 -275c-25 -11 -42 25 -18 36l548 259l-548 259c-24 11 -7 47 18 36l581 -275c17 -8 17 -32 0 -40zM300 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x22D8: [547,47,1285,56,1229,'555 -10c23 -13 3 -48 -20 -34l-467 274c-16 9 -16 31 0 40l467 274c23 14 43 -21 20 -34l-442 -260zM887 -10c23 -13 3 -48 -20 -34l-468 274c-15 9 -15 31 0 40l468 274c23 14 43 -21 20 -34l-443 -260zM1219 -10c23 -13 3 -48 -20 -34l-468 274c-15 9 -15 31 0 40 l468 274c23 14 43 -21 20 -34l-443 -260'], + 0x22D9: [547,47,1285,55,1229,'1217 230l-467 -274c-23 -14 -43 21 -20 34l442 260l-442 260c-23 13 -3 48 20 34l467 -274c16 -9 16 -31 0 -40zM886 230l-468 -274c-23 -14 -43 21 -20 34l443 260l-443 260c-23 13 -3 48 20 34l468 -274c15 -9 15 -31 0 -40zM554 230l-468 -274c-23 -14 -43 21 -20 34 l443 260l-443 260c-23 13 -3 48 20 34l468 -274c15 -9 15 -31 0 -40'], + 0x22DA: [848,348,778,76,702,'689 373c25 -10 10 -47 -15 -37l-582 235c-18 8 -18 33 0 40l582 236c25 10 40 -27 15 -37l-540 -219zM702 250c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20zM686 -111l-582 -236c-25 -10 -40 27 -15 37l540 219l-540 218 c-25 10 -10 47 15 37l582 -235c18 -8 18 -33 0 -40'], + 0x22DB: [848,348,778,76,702,'686 571l-582 -235c-25 -10 -40 27 -15 37l540 218l-540 219c-25 10 -10 47 15 37l582 -236c18 -7 18 -32 0 -40zM702 250c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20zM689 -310c25 -10 10 -47 -15 -37l-582 236c-18 7 -18 32 0 40 l582 235c25 10 40 -27 15 -37l-540 -218'], + 0x22DE: [639,139,738,56,682,'682 -119c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-39 198 -269 261 -486 261h-80c-3 0 -5 1 -7 2c-8 3 -13 10 -13 18c0 9 5 16 13 19c2 1 4 1 7 1h80c217 0 447 64 486 261c2 9 10 16 20 16c11 0 20 -9 20 -20v-4c-31 -154 -167 -238 -329 -273 c162 -35 298 -118 329 -273v-4zM566 619v-2c-21 -244 -220 -311 -410 -311h-80c-11 0 -20 9 -20 20s9 20 20 20h80c170 0 351 56 370 275c1 10 9 18 20 18s20 -9 20 -20'], + 0x22DF: [639,139,738,56,682,'682 158c0 -8 -5 -15 -13 -18c-2 -1 -4 -2 -7 -2h-80c-217 0 -447 -63 -486 -261c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4c31 155 167 238 329 273c-162 35 -298 119 -329 273v4c0 11 9 20 20 20c10 0 18 -7 20 -16c39 -197 269 -261 486 -261h80c3 0 5 0 7 -1 c8 -3 13 -10 13 -19zM682 326c0 -11 -9 -20 -20 -20h-80c-190 0 -389 67 -410 311v2c0 11 9 20 20 20s19 -8 20 -18c19 -219 200 -275 370 -275h80c11 0 20 -9 20 -20'], + 0x22E0: [730,230,738,56,682,'682 65c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-24 120 -118 190 -238 227l-46 -126c109 -40 194 -124 208 -279v-2c0 -11 -9 -20 -20 -20s-19 8 -20 18c-12 136 -86 209 -182 245l-124 -341c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l123 339 c-48 13 -99 18 -150 18h-80c-11 0 -20 9 -20 20s9 20 20 20h80c56 0 112 -6 164 -20l45 125c-66 16 -138 23 -209 23h-80c-3 0 -5 0 -7 1c-8 3 -13 10 -13 19c0 8 5 15 13 18c2 1 4 2 7 2h80c83 0 168 9 244 32l118 323c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7 l-106 -292c98 40 172 107 193 212c2 9 10 16 20 16c11 0 20 -9 20 -20v-4c-26 -129 -125 -208 -250 -252l-14 -38c132 -42 237 -123 264 -256v-4zM384 349l-31 -7l26 -6'], + 0x22E1: [730,230,738,56,682,'682 174c0 -11 -9 -20 -20 -20h-80c-59 0 -119 -7 -173 -25l-126 -346c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l114 312c-78 -40 -137 -110 -147 -230c-1 -10 -9 -18 -20 -18s-20 9 -20 20v2c14 154 98 238 206 278l54 150c-163 -26 -306 -98 -336 -250 c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4c31 154 167 238 329 273c-162 35 -298 118 -329 273v4c0 11 9 20 20 20c10 0 18 -7 20 -16c31 -159 186 -231 358 -253l126 347c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-123 -337c29 -3 58 -4 87 -4h80 c3 0 5 -1 7 -2c8 -3 13 -10 13 -18c0 -9 -5 -16 -13 -19c-2 -1 -4 -1 -7 -1h-80c-35 0 -70 -2 -105 -6l-51 -140c50 13 103 18 156 18h80c11 0 20 -9 20 -20'], + 0x22E6: [668,241,776,55,719,'706 205c25 -9 12 -47 -13 -37l-623 229c-19 7 -19 34 0 40l623 230c25 9 38 -28 13 -37l-575 -213zM718 19v-2c-20 -93 -56 -149 -138 -169c-12 -3 -24 -5 -36 -5c-54 0 -106 30 -154 64l-86 -138c-4 -6 -10 -10 -17 -10c-11 0 -20 9 -20 20c0 4 1 8 3 11l88 141 c-39 28 -80 55 -124 55c-9 0 -17 0 -26 -3c-67 -16 -111 -48 -127 -123c-1 -6 -6 -10 -12 -10s-12 6 -12 12v3c21 93 56 149 139 169c12 3 24 4 35 4c55 0 107 -29 155 -63l86 138c3 5 10 9 17 9c11 0 20 -9 20 -20c0 -4 -1 -7 -3 -10l-88 -141c38 -29 79 -56 124 -56 c8 0 17 1 25 3c67 17 111 48 128 124c1 5 6 9 11 9c7 0 12 -5 12 -12'], + 0x22E7: [636,209,776,55,719,'706 365l-623 -229c-25 -10 -39 28 -14 37l575 212l-575 213c-25 9 -11 46 14 37l623 -230c18 -6 18 -33 0 -40zM718 51v-2c-20 -93 -56 -149 -138 -169c-12 -3 -24 -5 -36 -5c-54 0 -106 30 -154 64l-86 -138c-4 -6 -10 -10 -17 -10c-11 0 -20 9 -20 20c0 4 1 8 3 11 l88 141c-39 28 -80 55 -124 55c-9 0 -17 0 -26 -3c-67 -16 -111 -48 -127 -123c-1 -6 -6 -10 -12 -10s-12 6 -12 12v3c21 93 56 149 139 169c12 3 24 4 35 4c55 0 107 -29 155 -63l86 138c3 5 10 9 17 9c11 0 20 -9 20 -20c0 -4 -1 -7 -3 -10l-88 -141 c38 -29 79 -56 124 -56c8 0 17 1 25 3c67 17 111 48 128 124c1 5 6 9 11 9c7 0 12 -5 12 -12'], + 0x22E8: [682,254,773,56,717,'700 108c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-39 198 -270 261 -486 261h-80c-3 0 -6 1 -8 2c-7 3 -12 10 -12 18c0 9 5 16 12 19c2 1 5 1 8 1l80 1c216 0 447 63 486 260c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -2 -1 -4c-31 -154 -167 -238 -328 -273 c161 -34 297 -118 328 -273c0 -1 1 -2 1 -4zM717 5v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-56 0 -110 31 -158 66l-134 -144c-4 -4 -9 -6 -15 -6c-11 0 -20 9 -20 20c0 5 2 10 5 13l132 141c-38 27 -78 53 -120 53c-9 0 -17 -1 -26 -3 c-67 -17 -111 -49 -127 -124c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169c12 3 24 4 35 4c56 0 110 -31 158 -66l134 144c4 4 9 6 15 6c11 0 20 -9 20 -20c0 -5 -2 -10 -5 -13l-131 -141c37 -27 77 -53 120 -53c8 0 16 1 25 3c67 17 111 49 127 124 c2 5 6 9 12 9c7 0 12 -5 12 -12'], + 0x22E9: [682,254,773,56,717,'700 385c0 -8 -6 -15 -13 -18c-2 -1 -5 -2 -7 -2h-80h-21c-211 -4 -428 -69 -466 -261c-2 -9 -10 -16 -19 -16c-11 0 -20 9 -20 20v4c31 154 166 238 327 273c-161 36 -296 119 -327 273v4c0 11 9 20 20 20c9 0 17 -7 19 -16c38 -191 255 -257 466 -261h21h80 c2 0 5 0 7 -1c7 -3 13 -10 13 -19zM717 5v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-56 0 -110 31 -158 66l-134 -144c-4 -4 -9 -6 -15 -6c-11 0 -20 9 -20 20c0 5 2 10 5 13l132 141c-38 27 -78 53 -120 53c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124 c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169c12 3 24 4 35 4c56 0 110 -31 158 -66l134 144c4 4 9 6 15 6c11 0 20 -9 20 -20c0 -5 -2 -10 -5 -13l-131 -141c37 -27 77 -53 120 -53c8 0 16 1 25 3c67 17 111 49 127 124c2 5 6 9 12 9c7 0 12 -5 12 -12'], + 0x22EA: [730,230,738,56,682,'682 -27c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2l-262 124l-108 -296c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l109 299l-287 136c-6 3 -11 10 -11 18s5 15 11 18l423 200l90 249c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-77 -211l112 53 c3 1 6 2 9 2c11 0 20 -9 20 -20v-554zM642 5v490l-120 -57l-118 -321zM470 414l-347 -164l245 -116'], + 0x22EB: [730,230,738,56,682,'682 250c0 -8 -5 -15 -11 -18l-423 -200l-90 -249c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l77 211l-112 -53c-3 -1 -6 -2 -9 -2c-11 0 -20 9 -20 20v554c0 11 9 20 20 20c3 0 6 -1 9 -2l262 -124l108 296c3 8 10 13 19 13c11 0 20 -9 20 -20 c0 -2 -1 -5 -1 -7l-109 -299l287 -136c6 -3 11 -10 11 -18zM615 250l-245 116l-102 -280zM334 383l-238 112v-490l120 57'], + 0x22EC: [730,230,738,56,682,'682 -85c0 -11 -9 -20 -20 -20h-401l-41 -112c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l35 98h-142c-11 0 -20 9 -20 20s9 20 20 20h157l95 261l-260 114c-7 3 -12 10 -12 18s5 15 12 18l375 165l75 206c2 8 10 13 19 13c11 0 20 -9 20 -20 c0 -2 -1 -5 -2 -7l-62 -170l161 70c2 1 5 2 8 2c11 0 20 -9 20 -20v-514c0 -11 -9 -20 -20 -20c-3 0 -6 1 -8 2l-289 127l-89 -245h386c11 0 20 -9 20 -20zM642 102v452l-168 -73l-96 -264zM424 459l-298 -131l216 -95'], + 0x22ED: [730,230,738,56,682,'682 -85c0 -11 -9 -20 -20 -20h-401l-41 -112c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l35 98h-142c-11 0 -20 9 -20 20s9 20 20 20h157l79 218l-228 -100c-2 -1 -5 -2 -8 -2c-11 0 -20 9 -20 20v514c0 11 9 20 20 20c3 0 6 -1 8 -2l338 -148l96 262 c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-96 -264l211 -93c7 -3 12 -10 12 -18s-5 -15 -12 -18l-307 -135l-87 -240h386c11 0 20 -9 20 -20zM612 328l-167 73l-63 -174zM409 417l-313 137v-452l235 103'], + 0x22EE: [582,82,218,56,162,'162 -29c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM162 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM162 529c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x22EF: [303,-197,776,56,720,'162 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM441 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM720 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x22F1: [500,0,613,57,557,'360 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM163 447c0 -29 -24 -53 -53 -53c-30 0 -53 24 -53 53c0 30 23 53 53 53c29 0 53 -23 53 -53zM557 53c0 -30 -23 -53 -53 -53c-29 0 -53 23 -53 53c0 29 24 53 53 53c30 0 53 -24 53 -53'], + 0x2308: [750,250,444,174,416,'416 730c0 -11 -9 -20 -20 -20h-182v-940c0 -11 -9 -20 -20 -20s-20 9 -20 20v980h222c11 0 20 -9 20 -20'], + 0x2309: [750,250,444,28,270,'270 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v940h-182c-11 0 -20 9 -20 20s9 20 20 20h222v-980'], + 0x230A: [750,250,444,174,416,'416 -230c0 -11 -9 -20 -20 -20h-222v980c0 11 9 20 20 20s20 -9 20 -20v-940h182c11 0 20 -9 20 -20'], + 0x230B: [750,250,444,28,270,'270 -250h-222c-11 0 -20 9 -20 20s9 20 20 20h182v940c0 11 9 20 20 20s20 -9 20 -20v-980'], + 0x2322: [381,-130,1000,55,944,'944 143c0 -7 -6 -13 -13 -13c-6 0 -9 5 -12 8c-21 30 -67 95 -166 143c-90 43 -181 55 -254 55c-157 0 -318 -58 -411 -186c-12 -15 -14 -17 -14 -17c-2 -2 -6 -3 -6 -3c-7 0 -13 6 -13 13c0 11 145 238 445 238c298 0 444 -227 444 -238'], + 0x2323: [371,-133,1000,55,944,'944 358c0 -10 -143 -225 -445 -225c-299 0 -444 214 -444 225c0 7 6 13 13 13c6 0 9 -5 11 -8c23 -29 72 -94 180 -140c103 -42 198 -45 241 -45c189 0 333 72 411 173c12 15 14 17 14 17c2 2 6 3 6 3c7 0 13 -6 13 -13'], + 0x23B4: [726,-552,360,0,360,'360 726v-154c0 -11 -9 -20 -20 -20s-20 9 -20 20v114h-280v-114c0 -11 -9 -20 -20 -20s-20 9 -20 20v154h360'], + 0x23B5: [-122,296,360,0,360,'360 -296h-360v154c0 11 9 20 20 20s20 -9 20 -20v-114h280v114c0 11 9 20 20 20s20 -9 20 -20v-154'], + 0x23D0: [642,0,333,145,188,'188 0h-43v642h43v-642'], + 0x23DC: [727,-572,504,0,504,'504 584c0 -7 -5 -12 -12 -12c-5 0 -9 3 -11 7c-27 59 -125 94 -209 94h-40c-84 0 -182 -35 -209 -94c-2 -4 -6 -7 -11 -7c-7 0 -12 5 -12 12c0 1 0 3 1 5c32 69 132 138 231 138h40c99 0 199 -69 231 -138c1 -2 1 -4 1 -5'], + 0x23DD: [-142,297,504,0,504,'504 -154c0 -1 0 -3 -1 -5c-32 -69 -132 -138 -231 -138h-40c-99 0 -199 69 -231 138c-1 2 -1 4 -1 5c0 7 5 12 12 12c5 0 9 -3 11 -7c27 -59 125 -94 209 -94h40c84 0 182 35 209 94c2 4 6 7 11 7c7 0 12 -5 12 -12'], + 0x23DE: [783,-539,492,0,492,'492 546c0 -4 -3 -7 -6 -7s-6 2 -6 5c-5 53 -42 90 -74 90h-80c-37 0 -67 45 -80 103c-13 -58 -43 -103 -80 -103h-80c-32 0 -69 -37 -74 -90c0 -3 -3 -5 -6 -5s-6 3 -6 7c7 75 40 142 86 142h80c32 0 69 37 74 90c0 3 3 5 6 5s6 -2 6 -5c5 -53 42 -90 74 -90h80 c46 0 79 -67 86 -142'], + 0x23DF: [-109,353,492,0,492,'492 -116c-7 -75 -40 -142 -86 -142h-80c-32 0 -69 -37 -74 -90c0 -3 -3 -5 -6 -5s-6 2 -6 5c-5 53 -42 90 -74 90h-80c-46 0 -79 67 -86 142c0 4 3 7 6 7s6 -2 6 -5c5 -53 42 -90 74 -90h80c37 0 67 -45 80 -103c13 58 43 103 80 103h80c32 0 69 37 74 90c0 3 3 5 6 5 s6 -3 6 -7'], + 0x23E0: [829,-657,546,0,546,'546 657h-66l-106 106h-202l-106 -106h-66l172 172h202'], + 0x23E1: [-227,399,546,0,546,'546 -227l-172 -172h-202l-172 172h66l106 -106h202l106 106h66'], + 0x250C: [274,270,666,308,686,'666 230h-313v-480c0 -27 -40 -27 -40 0v500c-13 13 7 33 20 20h333c27 0 27 -40 0 -40'], + 0x2510: [274,270,666,-20,357,'353 -250c0 -27 -40 -27 -40 0v480h-313c-27 0 -27 40 0 40h333c13 13 33 -7 20 -20v-500'], + 0x2514: [770,-225,666,308,686,'666 230h-333c-13 -13 -33 7 -20 20v500c0 27 40 27 40 0v-480h313c27 0 27 -40 0 -40'], + 0x2518: [770,-225,666,-20,357,'353 250c13 -13 -7 -33 -20 -20h-333c-27 0 -27 40 0 40h313v480c0 27 40 27 40 0v-500'], + 0x25A0: [583,83,778,56,722,'722 -63c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20v626c0 11 9 20 20 20h626c11 0 20 -9 20 -20v-626'], + 0x25A1: [583,83,778,56,722,'722 -63c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20v626c0 11 9 20 20 20h626c11 0 20 -9 20 -20v-626zM682 543h-586v-586h586v586'], + 0x25B2: [741,5,968,56,912,'912 15c0 -12 -9 -20 -20 -20h-816c-11 0 -20 8 -20 20c0 3 1 7 3 10l408 706c3 6 9 10 17 10c7 0 14 -4 17 -10l408 -706c2 -3 3 -7 3 -10'], + 0x25B3: [741,5,968,56,912,'912 15c0 -12 -9 -20 -20 -20h-816c-11 0 -20 8 -20 20c0 3 1 7 3 10l408 706c3 6 9 10 17 10c7 0 14 -4 17 -10l408 -706c2 -3 3 -7 3 -10zM857 35l-373 646l-373 -646h746'], + 0x25B6: [678,178,858,56,802,'802 250c0 -7 -4 -14 -10 -17l-706 -408c-3 -2 -6 -3 -10 -3c-11 0 -20 9 -20 20v816c0 11 9 20 20 20c4 0 7 -1 10 -3l706 -408c6 -3 10 -10 10 -17'], + 0x25BC: [505,241,968,56,912,'912 485c0 -3 -1 -7 -3 -10l-408 -706c-3 -6 -10 -10 -17 -10c-8 0 -14 4 -17 10l-408 706c-2 3 -3 7 -3 10c0 12 9 20 20 20h816c11 0 20 -8 20 -20'], + 0x25BD: [505,241,968,56,912,'912 485c0 -3 -1 -7 -3 -10l-408 -706c-3 -6 -10 -10 -17 -10c-8 0 -14 4 -17 10l-408 706c-2 3 -3 7 -3 10c0 12 9 20 20 20h816c11 0 20 -8 20 -20zM857 465h-746l373 -646'], + 0x25C0: [678,178,858,56,802,'802 -158c0 -11 -9 -20 -20 -20c-3 0 -7 1 -10 3l-706 408c-6 3 -10 10 -10 17s4 14 10 17l706 408c3 2 7 3 10 3c11 0 20 -9 20 -20v-816'], + 0x25CA: [610,110,572,56,516,'472 250l-186 302l-186 -302l186 -302zM516 250c0 -4 -1 -7 -3 -10l-210 -340c-3 -6 -10 -10 -17 -10s-14 4 -17 10l-210 340c-2 3 -3 6 -3 10s1 7 3 10l210 340c3 6 10 10 17 10s14 -4 17 -10l210 -340c2 -3 3 -6 3 -10'], + 0x25EF: [701,201,1013,56,957,'957 250c0 -249 -202 -451 -450 -451c-249 0 -451 202 -451 451s202 451 451 451c248 0 450 -202 450 -451zM917 250c0 227 -184 411 -410 411c-227 0 -411 -184 -411 -411s184 -411 411 -411c226 0 410 184 410 411'], + 0x2660: [727,130,778,56,722,'722 203c0 -74 -15 -225 -134 -225c-22 0 -125 7 -129 92h-50c0 -34 2 -88 24 -163c4 -13 4 -17 4 -17c0 -20 -19 -20 -33 -20h-30c-14 0 -33 0 -33 20c0 0 0 4 3 11c20 71 24 116 25 169h-50c-5 -92 -121 -92 -129 -92c-121 0 -134 155 -134 225c0 127 85 211 178 296 c73 66 106 136 135 211c2 6 6 17 20 17s17 -9 22 -22c52 -132 98 -175 149 -222c93 -85 162 -165 162 -280'], + 0x2661: [716,33,778,56,722,'722 489c0 -151 -111 -258 -214 -356c-57 -53 -76 -91 -99 -149c-2 -6 -6 -17 -20 -17c-10 0 -16 7 -18 12c-40 98 -61 118 -133 184c-95 89 -182 196 -182 326c0 122 47 227 166 227c57 0 126 -30 167 -111c40 79 108 111 167 111c116 0 166 -100 166 -227zM682 489 c0 63 -13 187 -126 187c-72 0 -131 -59 -146 -135c-2 -14 -5 -27 -21 -27s-18 12 -21 28c-17 81 -78 134 -146 134c-113 0 -126 -125 -126 -187c0 -126 87 -219 204 -329c36 -34 54 -54 89 -120c39 73 57 91 96 128c106 100 197 193 197 321'], + 0x2662: [727,163,778,56,722,'722 282c0 -7 -4 -12 -8 -17c-5 -4 -16 -14 -20 -18c-74 -69 -190 -202 -282 -388c-8 -16 -11 -22 -23 -22s-17 9 -19 14c-115 234 -251 363 -306 414c-5 5 -8 11 -8 17s3 12 8 17c5 4 16 14 20 18c74 69 190 202 282 388c8 16 11 22 23 22s17 -9 19 -14 c116 -236 254 -366 305 -413c5 -5 9 -10 9 -18zM672 282c-5 5 -151 131 -283 380c-132 -249 -277 -375 -283 -380c5 -5 151 -131 283 -380c132 249 277 375 283 380'], + 0x2663: [727,130,778,28,750,'750 174c0 -106 -71 -196 -171 -196c-42 0 -118 19 -120 92h-50c0 -34 2 -88 24 -163c4 -13 4 -17 4 -17c0 -20 -19 -20 -33 -20h-30c-14 0 -33 0 -33 20c0 0 0 4 3 11c20 71 24 116 25 169h-50c-2 -73 -78 -92 -120 -92c-100 0 -171 90 -171 196c0 96 52 194 146 194 c48 0 79 -26 93 -42l21 46c-48 37 -76 98 -76 160c0 104 76 195 177 195c100 0 177 -90 177 -195c0 -65 -30 -124 -76 -161l22 -45c14 17 44 42 92 42c94 0 146 -98 146 -194'], + 0x266D: [750,22,388,55,333,'333 321c0 -83 -41 -153 -96 -212s-159 -131 -169 -131c-13 0 -13 8 -13 28v716c0 20 0 28 13 28c12 0 12 -9 12 -28v-304c20 19 60 42 116 42c82 0 137 -65 137 -139zM252 321c0 49 -18 103 -64 103c0 0 -44 0 -75 -18c-33 -19 -33 -40 -33 -63v-327 c24 20 172 147 172 305'], + 0x266E: [728,217,388,79,309,'309 -188c0 -19 0 -29 -14 -29c-11 0 -11 9 -11 28v183l-178 -70c-10 -4 -12 -4 -16 -4c-11 0 -11 9 -11 27v752c0 19 0 29 14 29c11 0 11 -9 11 -28v-263l178 70c10 4 12 4 16 4c11 0 11 -9 11 -27v-672zM284 76v349l-180 -70v-349'], + 0x266F: [716,216,388,55,333,'333 28c0 -24 -1 -25 -13 -29c-2 -1 -26 -8 -30 -9v-125c0 -19 0 -28 -14 -28c-11 0 -11 8 -11 27v117l-142 -44v-125c0 -19 0 -28 -14 -28c-11 0 -11 9 -11 27v118c-5 -2 -27 -9 -32 -9c-11 0 -11 9 -11 27v25c0 24 1 25 13 29c2 1 26 8 30 9v350c-5 -2 -27 -9 -32 -9 c-11 0 -11 9 -11 27v25c0 24 1 25 13 29c2 1 26 8 30 9v194c0 19 0 28 14 28c11 0 11 -8 11 -27v-186l142 44v194c0 19 0 28 14 28c11 0 11 -9 11 -27v-187c5 2 27 9 32 9c11 0 11 -9 11 -27v-25c0 -24 -1 -25 -13 -29c-2 -1 -26 -8 -30 -9v-350c5 2 27 9 32 9 c11 0 11 -9 11 -27v-25zM265 63v349l-142 -44v-349'], + 0x2713: [699,27,833,84,748,'748 692c0 -9 -12 -18 -29 -31c-99 -74 -167 -153 -218 -223c-90 -124 -149 -267 -181 -417c-5 -21 -52 -48 -73 -48c-5 0 -10 0 -12 4c0 0 -11 17 -16 26l-127 209c-8 13 -8 17 -8 17c0 17 51 49 74 49c6 0 7 -1 16 -15l94 -154c53 154 120 268 222 388 c57 67 200 202 247 202c6 0 11 0 11 -7'], + 0x2720: [684,0,796,56,740,'740 132c0 -8 -6 -12 -12 -12s-12 4 -12 12c-23 128 -160 190 -298 190c0 -138 62 -275 190 -298c8 0 12 -6 12 -12s-4 -12 -12 -12h-420c-8 0 -12 6 -12 12s4 12 12 12c128 23 190 160 190 298c-138 0 -275 -62 -298 -190c0 -8 -6 -12 -12 -12s-12 4 -12 12v420 c0 8 6 12 12 12s12 -4 12 -12c23 -128 160 -190 298 -190c0 138 -62 275 -190 298c-8 0 -12 6 -12 12s4 12 12 12h420c8 0 12 -6 12 -12s-4 -12 -12 -12c-128 -23 -190 -160 -190 -298c138 0 275 62 298 190c0 8 6 12 12 12s12 -4 12 -12v-420'], + 0x27E8: [750,250,389,110,336,'336 -230c0 -11 -9 -20 -20 -20c-8 0 -16 5 -19 13l-186 480c-1 2 -1 4 -1 7s0 5 1 7l186 480c3 8 11 13 19 13c11 0 20 -9 20 -20c0 -3 0 -5 -1 -7l-184 -473l184 -473c1 -2 1 -4 1 -7'], + 0x27E9: [750,250,389,53,279,'279 250c0 -3 0 -5 -1 -7l-186 -480c-3 -8 -11 -13 -19 -13c-11 0 -20 9 -20 20c0 3 0 5 1 7l184 473l-184 473c-1 2 -1 4 -1 7c0 11 9 20 20 20c8 0 16 -5 19 -13l186 -480c1 -2 1 -4 1 -7'], + 0x27EE: [762,262,287,98,231,'231 -250c0 -7 -5 -12 -12 -12c-3 0 -6 1 -8 4c-54 53 -113 260 -113 466v84c0 206 59 413 113 466c2 3 5 4 8 4c7 0 12 -5 12 -12c0 -3 -1 -6 -4 -8c-50 -51 -75 -254 -75 -450v-84c0 -196 25 -399 75 -450c3 -2 4 -5 4 -8'], + 0x27EF: [762,262,287,56,189,'189 208c0 -206 -59 -413 -113 -466c-2 -3 -5 -4 -8 -4c-7 0 -12 5 -12 12c0 3 1 6 4 8c50 51 75 254 75 450v84c0 196 -25 399 -75 450c-3 2 -4 5 -4 8c0 7 5 12 12 12c3 0 6 -1 8 -4c54 -53 113 -260 113 -466v-84'], + 0x27F5: [510,10,1463,56,1407,'1407 250c0 -11 -9 -20 -20 -20h-1232c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127 c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h1232c11 0 20 -9 20 -20'], + 0x27F6: [510,10,1463,56,1407,'1407 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1232c-11 0 -20 9 -20 20s9 20 20 20h1232c-30 20 -56 44 -78 72 c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x27F7: [510,10,1442,56,1386,'1386 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1132c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4 c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72 h1132c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x27F8: [520,20,1457,56,1401,'1401 153c0 -11 -9 -20 -20 -20h-1073c35 -36 65 -78 89 -124c1 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-8 0 -15 4 -18 11c-27 53 -64 100 -108 139c-54 47 -116 88 -188 107c-5 2 -9 7 -9 13s4 11 9 13c72 19 134 60 188 107c44 39 81 86 108 139c3 7 10 11 18 11 c11 0 20 -9 20 -20c0 -3 -1 -6 -2 -9c-24 -46 -54 -88 -89 -124h1073c11 0 20 -9 20 -20s-9 -20 -20 -20h-1117c-40 -32 -84 -58 -132 -77c48 -19 92 -45 132 -77h1117c11 0 20 -9 20 -20'], + 0x27F9: [520,20,1457,56,1401,'1401 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-1073c-11 0 -20 9 -20 20s9 20 20 20h1117c40 32 84 58 132 77c-48 19 -92 45 -132 77h-1117 c-11 0 -20 9 -20 20s9 20 20 20h1073c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13'], + 0x27FA: [520,20,1534,56,1478,'1478 250c0 -6 -4 -11 -10 -13c-71 -19 -133 -60 -187 -107c-44 -39 -81 -86 -108 -139c-4 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-918c35 -36 65 -78 89 -124c1 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-8 0 -14 4 -18 11 c-27 53 -64 100 -108 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 108 139c4 7 10 11 18 11c11 0 20 -9 20 -20c0 -3 -1 -6 -2 -9c-24 -46 -54 -88 -89 -124h918c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20 c8 0 14 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 187 -107c6 -2 10 -7 10 -13zM1401 250c-47 19 -92 45 -131 77h-1006c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h1006c39 32 84 58 131 77'], + 0x27FC: [510,10,1443,56,1387,'1387 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1192v-220c0 -27 -40 -27 -40 0v480c0 27 40 27 40 0v-220h1192 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x2A3F: [683,0,750,36,713,'713 15c0 -15 -7 -15 -26 -15h-625c-19 0 -26 0 -26 15c0 16 6 16 26 16c77 0 77 7 77 46v529c0 39 0 46 -74 46c-23 0 -29 0 -29 16c0 15 9 15 17 15c42 0 86 -3 128 -3s86 3 127 3c8 0 17 0 17 -15c0 -16 -6 -16 -26 -16c-77 0 -77 -7 -77 -46v-575h305v575 c0 39 0 46 -74 46c-23 0 -29 0 -29 16c0 15 9 15 17 15c42 0 86 -3 128 -3s86 3 127 3c8 0 17 0 17 -15c0 -16 -6 -16 -26 -16c-77 0 -77 -7 -77 -46v-529c0 -39 0 -46 74 -46c23 0 29 0 29 -16'], + 0x2A7D: [634,134,778,76,702,'691 78c24 -11 7 -48 -18 -36l-581 275c-17 8 -17 32 0 40l581 275c25 11 42 -25 18 -36l-548 -259zM702 -114c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2l-586 277c-6 3 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2l586 -277c6 -3 11 -10 11 -18'], + 0x2A7E: [634,134,778,75,702,'686 317l-581 -275c-25 -12 -42 25 -18 36l548 259l-548 259c-24 11 -7 47 18 36l581 -275c17 -8 17 -32 0 -40zM702 163c0 -8 -5 -15 -11 -18l-586 -277c-3 -1 -6 -2 -9 -2c-11 0 -20 9 -20 20c0 8 5 15 11 18l586 277c3 1 6 2 9 2c11 0 20 -9 20 -20'], + 0x2A85: [717,205,776,55,719,'706 287c25 -9 12 -47 -13 -38l-623 213c-19 7 -19 34 0 40l623 214c25 8 38 -29 13 -38l-571 -196zM718 165v-3c-20 -93 -56 -148 -138 -169c-12 -3 -24 -4 -36 -4c-61 0 -120 37 -172 77c-42 32 -88 66 -138 66c-8 0 -17 -1 -26 -3c-67 -17 -111 -48 -127 -124 c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 1 0 2 1 2c20 93 55 149 138 169c12 3 24 5 36 5c61 0 119 -38 172 -77c42 -32 88 -66 138 -66c8 0 17 1 25 3c67 16 111 48 128 123c1 6 6 10 11 10c7 0 12 -6 12 -12zM718 -29v-3c-20 -93 -56 -148 -138 -169c-12 -3 -24 -4 -36 -4 c-61 0 -120 37 -172 77c-42 32 -88 66 -138 66c-8 0 -17 -1 -26 -3c-67 -17 -111 -48 -127 -124c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 1 0 2 1 2c20 93 55 149 138 169c12 3 24 5 36 5c61 0 119 -38 172 -77c42 -32 88 -66 138 -66c8 0 17 1 25 3c67 16 111 48 128 123 c1 6 6 10 11 10c7 0 12 -6 12 -12'], + 0x2A86: [717,205,776,55,720,'705 462l-622 -213c-26 -9 -39 29 -13 38l570 195l-570 196c-26 9 -13 46 13 38l622 -214c20 -6 20 -33 0 -40zM718 165v-3c-20 -93 -56 -148 -138 -169c-12 -3 -24 -4 -36 -4c-61 0 -120 37 -172 77c-42 32 -88 66 -138 66c-8 0 -17 -1 -26 -3 c-67 -17 -111 -48 -127 -124c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 1 0 2 1 2c20 93 55 149 138 169c12 3 24 5 36 5c61 0 119 -38 172 -77c42 -32 88 -66 138 -66c8 0 17 1 25 3c67 16 111 48 128 123c1 6 6 10 11 10c7 0 12 -6 12 -12zM718 -29v-3 c-20 -93 -56 -148 -138 -169c-12 -3 -24 -4 -36 -4c-61 0 -120 37 -172 77c-42 32 -88 66 -138 66c-8 0 -17 -1 -26 -3c-67 -17 -111 -48 -127 -124c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 1 0 2 1 2c20 93 55 149 138 169c12 3 24 5 36 5c61 0 119 -38 172 -77 c42 -32 88 -66 138 -66c8 0 17 1 25 3c67 16 111 48 128 123c1 6 6 10 11 10c7 0 12 -6 12 -12'], + 0x2A87: [667,167,778,76,702,'691 111c24 -11 7 -47 -18 -36l-581 275c-17 8 -17 32 0 40l581 275c25 11 42 -25 18 -36l-548 -259zM702 -63c0 -11 -9 -20 -20 -20h-284l-73 -78c-4 -4 -9 -6 -14 -6c-12 0 -20 9 -20 20c0 5 2 10 5 13l47 51h-247c-11 0 -20 9 -20 20s9 20 20 20h284l73 77 c4 4 9 7 15 7c11 0 20 -9 20 -20c0 -6 -3 -10 -6 -14l-47 -50h247c11 0 20 -9 20 -20'], + 0x2A88: [667,167,778,75,702,'686 350l-581 -275c-25 -11 -42 25 -18 36l548 259l-548 259c-24 11 -7 47 18 36l581 -275c17 -8 17 -32 0 -40zM702 -63c0 -11 -9 -20 -20 -20h-284l-73 -78c-4 -4 -9 -6 -14 -6c-12 0 -20 9 -20 20c0 5 2 10 5 13l47 51h-247c-11 0 -20 9 -20 20s9 20 20 20h284l73 77 c4 4 9 7 15 7c11 0 20 -9 20 -20c0 -6 -3 -10 -6 -14l-47 -50h247c11 0 20 -9 20 -20'], + 0x2A89: [749,321,776,55,719,'706 319c25 -9 12 -47 -13 -38l-623 213c-19 7 -19 34 0 40l623 214c25 8 38 -29 13 -38l-571 -196zM718 -61v-3c-20 -93 -56 -148 -138 -169c-12 -3 -24 -4 -36 -4c-61 0 -120 37 -172 77l-23 17l-106 -169c-3 -5 -9 -9 -17 -9c-11 0 -20 9 -20 20c0 4 1 7 3 11l106 169 c-25 16 -53 27 -81 27c-8 0 -17 -1 -26 -3c-67 -17 -111 -48 -127 -124c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 1 0 2 1 2c20 93 55 149 138 169c12 3 24 5 36 5c38 0 75 -15 111 -35l57 91l-28 20c-42 32 -88 66 -138 66c-8 0 -17 -1 -26 -3c-67 -17 -111 -48 -127 -124 c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 1 0 2 1 2c20 93 55 149 138 169c12 3 24 5 36 5c61 0 119 -38 172 -77l23 -17l105 168c4 6 10 10 17 10c11 0 20 -9 20 -20c0 -4 -1 -8 -3 -11l-106 -170c26 -15 53 -26 82 -26c8 0 17 1 25 3c67 16 111 48 128 123c1 6 6 10 11 10 c7 0 12 -6 12 -12v-3c-20 -93 -56 -148 -138 -169c-12 -3 -24 -4 -36 -4c-38 0 -76 15 -111 35l-57 -91l28 -20c42 -32 88 -66 138 -66c8 0 17 1 25 3c67 16 111 48 128 123c1 6 6 10 11 10c7 0 12 -6 12 -12'], + 0x2A8A: [717,289,776,55,720,'705 462l-622 -213c-26 -9 -39 29 -13 38l570 195l-570 196c-26 9 -13 46 13 38l622 -214c20 -6 20 -33 0 -40zM718 -29v-3c-20 -93 -56 -148 -138 -169c-12 -3 -24 -4 -36 -4c-61 0 -120 37 -172 77l-23 17l-106 -169c-3 -5 -9 -9 -17 -9c-11 0 -20 9 -20 20 c0 4 1 7 3 11l106 169c-25 16 -53 27 -81 27c-8 0 -17 -1 -26 -3c-67 -17 -111 -48 -127 -124c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 1 0 2 1 2c20 93 55 149 138 169c12 3 24 5 36 5c38 0 75 -15 111 -35l57 91l-28 20c-42 32 -88 66 -138 66c-8 0 -17 -1 -26 -3 c-67 -17 -111 -48 -127 -124c-1 -5 -6 -9 -12 -9s-12 5 -12 12c0 1 0 2 1 2c20 93 55 149 138 169c12 3 24 5 36 5c61 0 119 -38 172 -77l23 -17l105 168c4 6 10 10 17 10c11 0 20 -9 20 -20c0 -4 -1 -8 -3 -11l-106 -170c26 -15 53 -26 82 -26c8 0 17 1 25 3 c67 16 111 48 128 123c1 6 6 10 11 10c7 0 12 -6 12 -12v-3c-20 -93 -56 -148 -138 -169c-12 -3 -24 -4 -36 -4c-38 0 -76 15 -111 35l-57 -91l28 -20c42 -32 88 -66 138 -66c8 0 17 1 25 3c67 16 111 48 128 123c1 6 6 10 11 10c7 0 12 -6 12 -12'], + 0x2A8B: [972,472,778,76,702,'690 457c24 -11 8 -48 -16 -37l-582 255c-18 8 -18 33 0 40l582 256c24 10 40 -26 16 -37l-544 -239zM702 334c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20zM702 166c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586 c11 0 20 -9 20 -20zM686 -215l-582 -256c-24 -10 -40 26 -16 37l544 239l-544 238c-24 11 -8 48 16 37l582 -255c18 -8 18 -33 0 -40'], + 0x2A8C: [972,472,778,76,702,'686 675l-582 -255c-24 -11 -40 26 -16 37l544 238l-544 239c-24 11 -8 47 16 37l582 -256c18 -7 18 -32 0 -40zM702 334c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20zM702 166c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20 s9 20 20 20h586c11 0 20 -9 20 -20zM690 -434c24 -11 8 -47 -16 -37l-582 256c-18 7 -18 32 0 40l582 255c24 11 40 -26 16 -37l-544 -238'], + 0x2A95: [629,129,778,76,702,'691 -91c24 -11 7 -47 -18 -36l-581 275c-17 8 -17 32 0 40l581 275c25 12 42 -24 18 -36l-548 -259zM702 609c0 -8 -5 -15 -11 -18l-586 -277c-3 -1 -6 -2 -9 -2c-11 0 -20 9 -20 20c0 8 5 15 11 18l586 277c3 1 6 2 9 2c11 0 20 -9 20 -20'], + 0x2A96: [629,129,778,75,702,'686 148l-581 -275c-25 -11 -42 25 -18 36l548 259l-548 259c-24 12 -7 48 18 36l581 -275c17 -8 17 -32 0 -40zM702 332c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2l-586 277c-6 3 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2l586 -277c6 -3 11 -10 11 -18'], + 0x2AAF: [631,119,778,76,702,'702 57c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-39 197 -269 261 -486 261h-80c-3 0 -5 1 -7 1c-8 3 -13 11 -13 19s5 16 13 19c2 0 4 1 7 1h80c217 0 447 64 486 261c2 9 10 16 20 16c11 0 20 -9 20 -20v-4c-31 -155 -167 -238 -329 -273c162 -35 298 -118 329 -273 v-4zM702 -99c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x2AB0: [631,119,778,76,702,'702 334c0 -8 -5 -16 -13 -19c-2 0 -4 -1 -7 -1h-80c-217 0 -447 -64 -486 -261c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4c31 155 167 238 329 273c-162 35 -298 118 -329 273v4c0 11 9 20 20 20c10 0 18 -7 20 -16c39 -197 269 -261 486 -261h80c3 0 5 -1 7 -1 c8 -3 13 -11 13 -19zM702 -99c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Marks/Regular/Main.js new file mode 100644 index 0000000..a01dd97 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Marks/Regular/Main.js @@ -0,0 +1,104 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'LatinModernMathJax_Marks', + id: 'LATINMODERNMARKS', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x2DB: [5,211,500,135,364,'364 -115c-16 -57 -68 -96 -118 -96c-64 0 -111 44 -111 90c0 47 41 95 85 126h47c-23 -12 -43 -27 -60 -46c-14 -16 -24 -34 -24 -54c0 -46 51 -69 87 -69c32 0 60 20 77 56c5 10 20 5 17 -7'], + 0x2DD: [697,-511,500,128,420,'253 663c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34zM420 663c0 -10 -3 -14 -12 -26l-92 -126c-2 1 -17 9 -21 12l54 145c5 12 11 29 34 29c19 0 37 -16 37 -34'], + 0x305: [670,-630,0,-460,-68,'-68 650c0 -11 -9 -20 -20 -20h-352c-11 0 -20 9 -20 20s9 20 20 20h352c11 0 20 -9 20 -20'], + 0x309: [729,-520,0,-361,-167,'-167 662c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29 c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0x30F: [732,-546,0,-434,-142,'-142 558c-4 -3 -19 -11 -21 -12l-92 126c-9 12 -12 16 -12 26c0 18 18 34 37 34c23 0 29 -17 34 -29zM-309 558c-4 -3 -19 -11 -21 -12l-92 126c-9 12 -12 16 -12 26c0 18 18 34 37 34c23 0 29 -17 34 -29'], + 0x311: [742,-605,0,-451,-77,'-77 613l-22 -8c-21 63 -95 83 -165 83s-144 -20 -165 -83l-22 8c26 79 103 129 187 129s161 -50 187 -129'], + 0x323: [-94,200,0,-318,-211,'-211 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0x326: [-66,290,0,-308,-220,'-220 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0x32C: [-96,243,0,-446,-82,'-82 -117c-56 -48 -117 -91 -182 -126c-65 35 -126 78 -182 126l12 21c58 -26 115 -54 170 -85c55 31 112 59 170 85'], + 0x32D: [-108,255,0,-446,-82,'-82 -235l-12 -20c-58 25 -115 54 -170 85c-55 -31 -112 -60 -170 -85l-12 20c56 49 117 91 182 127c65 -36 126 -78 182 -127'], + 0x32E: [-96,233,0,-451,-77,'-77 -104c-26 -79 -103 -129 -187 -129s-161 50 -187 129l22 8c21 -63 95 -83 165 -83s144 20 165 83'], + 0x32F: [-118,255,0,-451,-77,'-77 -247l-22 -8c-21 63 -95 83 -165 83s-144 -20 -165 -83l-22 8c26 79 103 129 187 129s161 -50 187 -129'], + 0x330: [-118,310,0,-449,-79,'-79 -130c0 -1 0 -1 -1 -2c-8 -62 -19 -103 -58 -122c-14 -7 -30 -10 -45 -10c-31 0 -63 12 -92 25c-22 10 -45 22 -67 22c-8 0 -17 -2 -25 -6c-27 -13 -52 -32 -58 -77c-1 -5 -6 -10 -12 -10s-12 5 -12 12c0 1 0 1 1 2c8 62 19 103 58 122c14 7 30 10 45 10 c31 0 63 -12 92 -25c22 -10 45 -22 67 -22c8 0 17 2 25 6c27 13 52 32 58 77c1 5 6 10 12 10s12 -5 12 -12'], + 0x331: [-131,162,0,-444,-83,'-83 -162h-361v31h361v-31'], + 0x332: [-103,143,0,-460,-68,'-68 -123c0 -11 -9 -20 -20 -20h-352c-11 0 -20 9 -20 20s9 20 20 20h352c11 0 20 -9 20 -20'], + 0x333: [-103,293,0,-460,-68,'-68 -123c0 -11 -9 -20 -20 -20h-352c-11 0 -20 9 -20 20s9 20 20 20h352c11 0 20 -9 20 -20zM-68 -273c0 -11 -9 -20 -20 -20h-352c-11 0 -20 9 -20 20s9 20 20 20h352c11 0 20 -9 20 -20'], + 0x33F: [820,-630,0,-460,-68,'-68 650c0 -11 -9 -20 -20 -20h-352c-11 0 -20 9 -20 20s9 20 20 20h352c11 0 20 -9 20 -20zM-68 800c0 -11 -9 -20 -20 -20h-352c-11 0 -20 9 -20 20s9 20 20 20h352c11 0 20 -9 20 -20'], + 0x2000: [0,0,500,0,0,''], + 0x2001: [0,0,1000,0,0,''], + 0x2007: [0,0,500,0,0,''], + 0x2008: [0,0,250,0,0,''], + 0x200B: [0,0,0,0,0,''], + 0x200C: [0,0,0,0,0,''], + 0x200D: [0,0,0,0,0,''], + 0x2010: [245,-187,333,11,276,'276 187h-265v58h265v-58'], + 0x2012: [342,-302,680,56,624,'624 322c0 -11 -9 -20 -20 -20h-528c-11 0 -20 9 -20 20s9 20 20 20h528c11 0 20 -9 20 -20'], + 0x2015: [270,-230,1152,56,1096,'1096 250c0 -11 -9 -20 -20 -20h-1000c-11 0 -20 9 -20 20s9 20 20 20h1000c11 0 20 -9 20 -20'], + 0x2017: [-103,293,504,56,448,'448 -123c0 -11 -9 -20 -20 -20h-352c-11 0 -20 9 -20 20s9 20 20 20h352c11 0 20 -9 20 -20zM448 -273c0 -11 -9 -20 -20 -20h-352c-11 0 -20 9 -20 20s9 20 20 20h352c11 0 20 -9 20 -20'], + 0x201A: [104,195,278,79,199,'199 -1c0 -118 -83 -194 -94 -194c-5 0 -10 4 -10 11c0 3 0 5 12 17c63 62 70 134 70 166c0 4 -2 18 -2 18s-2 -1 -3 -3c-6 -6 -20 -16 -40 -16c-36 0 -53 27 -53 53s18 53 53 53c43 0 67 -45 67 -105'], + 0x201E: [104,195,472,86,400,'206 -1c0 -118 -83 -194 -94 -194c-5 0 -10 4 -10 11c0 3 0 5 12 17c63 62 70 134 70 166c0 4 -2 18 -2 18s-2 -1 -3 -3c-6 -6 -20 -16 -40 -16c-36 0 -53 27 -53 53s18 53 53 53c43 0 67 -45 67 -105zM400 -1c0 -118 -83 -194 -94 -194c-5 0 -10 4 -10 11c0 3 0 5 12 17 c63 62 70 134 70 166c0 4 -2 18 -2 18s-2 -1 -3 -3c-6 -6 -20 -16 -40 -16c-36 0 -53 27 -53 53s18 53 53 53c43 0 67 -45 67 -105'], + 0x2022: [445,-55,500,55,445,'445 250c0 -108 -87 -195 -195 -195s-195 87 -195 195s87 195 195 195s195 -87 195 -195'], + 0x202F: [0,0,200,0,0,''], + 0x2030: [750,56,1140,53,1087,'1087 145c0 -112 -57 -201 -130 -201c-75 0 -147 81 -147 202c0 117 71 201 147 201c71 0 130 -87 130 -202zM760 145c0 -112 -57 -201 -130 -201c-75 0 -147 81 -147 202c0 117 71 201 147 201c71 0 130 -87 130 -202zM690 730c0 -6 -2 -9 -8 -18l-506 -753 c-8 -11 -10 -15 -20 -15s-20 9 -20 20c0 0 0 7 9 20l449 669l-1 1c-6 -4 -57 -35 -133 -35c-36 0 -86 5 -151 42c21 -52 21 -99 21 -113c0 -112 -57 -201 -130 -201c-75 0 -147 81 -147 202c0 117 71 201 147 201c32 0 53 -15 72 -32c55 -52 117 -77 187 -77 c73 0 140 27 190 95c6 7 11 14 21 14c11 0 20 -9 20 -20zM1062 146c0 105 -51 179 -104 179c-21 0 -86 -13 -86 -180c0 -166 66 -179 86 -179c52 0 104 72 104 180zM735 146c0 105 -51 179 -104 179c-21 0 -86 -13 -86 -180c0 -166 66 -179 86 -179c52 0 104 72 104 180z M305 549c0 105 -51 179 -104 179c-21 0 -86 -13 -86 -180c0 -166 66 -179 86 -179c52 0 104 72 104 180'], + 0x2031: [750,56,1457,56,1417,'1417 145c0 -112 -57 -201 -130 -201c-75 0 -147 81 -147 202c0 117 71 201 147 201c71 0 130 -87 130 -202zM1090 145c0 -112 -57 -201 -130 -201c-75 0 -147 81 -147 202c0 117 71 201 147 201c71 0 130 -87 130 -202zM763 145c0 -112 -57 -201 -130 -201 c-75 0 -147 81 -147 202c0 117 71 201 147 201c71 0 130 -87 130 -202zM693 730c0 -6 -2 -9 -8 -18l-506 -753c-8 -11 -10 -15 -20 -15s-20 9 -20 20c0 0 0 7 9 20l449 669l-1 1c-6 -4 -57 -35 -133 -35c-36 0 -86 5 -151 42c21 -52 21 -99 21 -113 c0 -112 -57 -201 -130 -201c-75 0 -147 81 -147 202c0 117 71 201 147 201c32 0 53 -15 72 -32c55 -52 117 -77 187 -77c73 0 140 27 190 95c6 7 11 14 21 14c11 0 20 -9 20 -20zM1392 146c0 105 -51 179 -104 179c-21 0 -86 -13 -86 -180c0 -166 66 -179 86 -179 c52 0 104 72 104 180zM1065 146c0 105 -51 179 -104 179c-21 0 -86 -13 -86 -180c0 -166 66 -179 86 -179c52 0 104 72 104 180zM738 146c0 105 -51 179 -104 179c-21 0 -86 -13 -86 -180c0 -166 66 -179 86 -179c52 0 104 72 104 180zM308 549c0 105 -51 179 -104 179 c-21 0 -86 -13 -86 -180c0 -166 66 -179 86 -179c52 0 104 72 104 180'], + 0x2036: [748,-430,511,60,451,'251 430h-27l-159 261c-3 5 -5 12 -5 19c0 21 17 38 38 38c15 0 29 -10 33 -21zM451 430h-27l-159 261c-3 5 -5 12 -5 19c0 21 17 38 38 38c15 0 29 -10 33 -21'], + 0x2037: [748,-430,711,60,651,'251 430h-27l-159 261c-3 5 -5 12 -5 19c0 21 17 38 38 38c15 0 29 -10 33 -21zM451 430h-27l-159 261c-3 5 -5 12 -5 19c0 21 17 38 38 38c15 0 29 -10 33 -21zM651 430h-27l-159 261c-3 5 -5 12 -5 19c0 21 17 38 38 38c15 0 29 -10 33 -21'], + 0x2039: [483,0,389,111,277,'277 10c0 -6 -4 -10 -10 -10h-2c-4 0 -8 3 -9 7c-30 85 -78 163 -142 228c-2 1 -3 4 -3 7c0 0 1 5 3 7c64 64 112 142 142 228c1 4 5 6 9 6h2c6 0 10 -4 10 -10v-2c-19 -81 -51 -158 -94 -229c43 -71 75 -149 94 -230v-2'], + 0x203A: [483,0,389,112,278,'278 242c0 -3 -3 -7 -3 -7c-64 -65 -112 -143 -142 -228c-1 -4 -5 -7 -9 -7h-2c-6 0 -10 4 -10 10v2c18 81 50 159 94 230c-44 71 -76 148 -94 229v2c0 6 4 10 10 10h2c4 0 8 -2 9 -6c30 -86 78 -164 142 -228c1 -2 3 -7 3 -7'], + 0x203B: [492,-8,778,147,630,'624 15c-14 -14 -27 -1 -37 9l-198 198l-198 -198c-10 -10 -23 -23 -38 -9c-14 14 0 27 10 37l198 198l-198 198c-10 10 -24 24 -10 38c15 14 28 1 38 -9l198 -198l197 197c10 10 23 23 38 9c14 -14 0 -27 -10 -37l-197 -198l198 -198c10 -10 23 -23 9 -37zM239 250 c0 -25 -20 -46 -46 -46c-25 0 -46 21 -46 46c0 26 21 46 46 46c26 0 46 -20 46 -46zM435 446c0 -25 -21 -46 -46 -46c-26 0 -46 21 -46 46s20 46 46 46c25 0 46 -21 46 -46zM435 55c0 -26 -21 -46 -46 -46c-26 0 -46 20 -46 46c0 25 20 46 46 46c25 0 46 -21 46 -46z M630 250c0 -25 -20 -46 -46 -46c-25 0 -46 21 -46 46c0 26 21 46 46 46c26 0 46 -20 46 -46'], + 0x203D: [756,0,472,43,402,'289 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM402 570c0 -62 -33 -90 -51 -106c-103 -88 -103 -196 -103 -237v-16c0 -18 0 -24 -12 -24c-3 0 -12 0 -13 12v24l1 41l-29 416c-43 -7 -92 -26 -115 -65c36 4 55 -21 55 -45 c0 -26 -18 -46 -46 -46c-23 0 -46 14 -46 48c0 69 65 118 151 130v3c0 33 21 51 42 51s43 -18 43 -51l-1 -3c99 -15 124 -82 124 -132zM319 577c0 39 0 83 -42 99l-18 -255c9 20 20 39 34 59c15 21 26 36 26 97'], + 0x2052: [751,-1,500,56,444,'444 730c0 -11 -13 -31 -20 -44l-66 -134l-57 -117l-134 -272l-70 -143c-5 -9 -9 -18 -20 -19h-1c-13 0 -20 10 -20 21c0 16 18 42 26 59l311 633l10 19c3 7 7 15 16 17c2 1 6 1 6 1c11 0 19 -10 19 -21zM210 677c0 -34 -29 -61 -63 -61c-37 0 -61 33 -61 63 c0 31 24 56 54 60c3 0 6 1 9 1c37 0 61 -33 61 -63zM413 73c0 -34 -29 -61 -63 -61c-37 0 -61 33 -61 63c0 31 24 56 54 60c3 0 6 1 9 1c37 0 61 -33 61 -63'], + 0x205F: [0,0,222,0,0,''], + 0x2060: [0,0,0,0,0,''], + 0x2061: [640,240,960,40,920,'235 -240h-110v40h110v-40zM435 -240h-110v40h110v-40zM635 -240h-110v40h110v-40zM835 -240h-110v40h110v-40zM235 600h-110v40h110v-40zM435 600h-110v40h110v-40zM635 600h-110v40h110v-40zM835 600h-110v40h110v-40zM80 -155h-40v110h40v-110zM80 45h-40v110h40v-110 zM80 245h-40v110h40v-110zM80 445h-40v110h40v-110zM920 -155h-40v110h40v-110zM920 45h-40v110h40v-110zM920 245h-40v110h40v-110zM920 445h-40v110h40v-110zM434 413c0 -23 -17 -34 -31 -34c-12 0 -23 8 -23 22c0 0 -2 21 19 29c-10 7 -22 7 -25 7c-10 0 -13 -5 -20 -13 s-18 -77 -24 -116h59c8 0 16 0 16 -9c0 -3 -2 -5 -4 -7c-3 -2 -3 -3 -15 -3h-60l-30 -172s-12 -71 -33 -100c-12 -17 -31 -41 -61 -41c-21 0 -59 8 -59 41c0 23 17 34 30 34c14 0 23 -8 23 -22c0 -10 -4 -24 -19 -30c7 -6 21 -6 25 -6c21 0 31 28 34 40c15 56 37 204 46 256 h-45c-9 0 -16 -3 -16 7c0 15 8 12 17 12h49l10 60c9 45 21 86 77 86c25 0 60 -10 60 -41zM607 -55c0 0 -1 -8 -8 -8c-11 0 -146 84 -146 263s135 263 146 263c7 0 8 -8 8 -8c0 -3 -5 -6 -5 -6c-92 -75 -108 -182 -108 -249c0 -66 16 -174 108 -249c0 0 5 -3 5 -6zM817 200 c0 -179 -135 -263 -146 -263c-7 0 -8 8 -8 8c0 3 5 6 5 6c92 75 108 183 108 249c0 67 -16 174 -108 249c0 0 -5 3 -5 6c0 0 1 8 8 8c11 0 146 -84 146 -263'], + 0x2062: [0,0,0,0,0,''], + 0x2063: [0,0,0,0,0,''], + 0x2064: [0,0,0,0,0,''], + 0x20D0: [711,-601,0,-475,-53,'-53 616c0 -8 -6 -15 -15 -15h-393c-8 0 -14 7 -14 15c0 7 4 12 10 14c36 12 65 38 81 72c2 5 7 9 14 9c8 0 15 -7 15 -15c0 -2 -1 -4 -2 -6c-10 -23 -26 -43 -45 -59h334c9 0 15 -7 15 -15'], + 0x20D1: [711,-601,0,-475,-53,'-53 616c0 -8 -6 -15 -14 -15h-393c-9 0 -15 7 -15 15s6 15 15 15h334c-19 16 -35 36 -45 59c-1 2 -2 4 -2 6c0 8 7 15 15 15c7 0 12 -4 14 -9c16 -34 45 -60 81 -72c6 -2 10 -7 10 -14'], + 0x20D2: [750,250,0,-284,-244,'-244 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960'], + 0x20D3: [520,20,0,-284,-244,'-244 0c0 -11 -9 -20 -20 -20s-20 9 -20 20v500c0 11 9 20 20 20s20 -9 20 -20v-500'], + 0x20D4: [751,-589,0,-473,-55,'-55 604c0 -8 -7 -15 -15 -15c-6 0 -12 4 -14 10c-26 73 -95 122 -172 122c-61 0 -107 -39 -152 -82c26 2 52 -3 76 -13c6 -2 9 -8 9 -14c0 -8 -6 -15 -15 -15c-2 0 -4 1 -6 1c-34 15 -74 15 -108 -1c-2 0 -4 -1 -6 -1c-8 0 -15 7 -15 15c0 3 1 5 2 8c19 32 23 71 12 107 c-1 2 -1 3 -1 5c0 8 7 15 15 15c7 0 12 -5 14 -11c8 -23 10 -48 6 -72c50 46 102 88 169 88c90 0 170 -57 200 -142c1 -2 1 -3 1 -5'], + 0x20D5: [751,-589,0,-473,-55,'-55 611c0 -8 -7 -15 -15 -15c-2 0 -4 1 -6 1c-34 16 -74 16 -108 1c-2 0 -4 -1 -6 -1c-9 0 -15 7 -15 15c0 6 3 12 9 14c24 10 50 15 76 13c-45 43 -91 82 -152 82c-77 0 -146 -49 -172 -122c-2 -6 -8 -10 -14 -10c-8 0 -15 7 -15 15c0 2 0 3 1 5c30 85 110 142 200 142 c67 0 119 -42 169 -88c-4 24 -2 49 6 72c2 6 7 11 14 11c8 0 15 -7 15 -15c0 -2 0 -3 -1 -5c-11 -36 -7 -75 12 -107c1 -3 2 -5 2 -8'], + 0x20D6: [711,-521,0,-472,-56,'-56 616c0 -8 -7 -15 -15 -15h-327c19 -16 35 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -6 -15 -15 -15c-6 0 -11 4 -13 9c-16 34 -45 60 -81 72c-6 2 -11 7 -11 14s5 12 11 14c36 12 65 38 81 72c2 5 7 9 13 9c9 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-10 -23 -26 -43 -45 -59h327 c8 0 15 -7 15 -15'], + 0x20D8: [400,-100,0,-414,-114,'-114 250c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150s150 -67 150 -150zM-154 250c0 61 -49 110 -110 110s-110 -49 -110 -110s49 -110 110 -110s110 49 110 110'], + 0x20DB: [696,-604,0,-530,2,'-438 650c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46s46 -21 46 -46zM-218 650c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46s46 -21 46 -46zM2 650c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46s46 -21 46 -46'], + 0x20DC: [696,-604,0,-640,112,'-548 650c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46s46 -21 46 -46zM-328 650c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46s46 -21 46 -46zM-108 650c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46s46 -21 46 -46zM112 650c0 -25 -21 -46 -46 -46 s-46 21 -46 46s21 46 46 46s46 -21 46 -46'], + 0x20DD: [772,272,0,-786,258,'258 250c0 -288 -234 -522 -522 -522s-522 234 -522 522s234 522 522 522s522 -234 522 -522zM218 250c0 266 -216 482 -482 482s-482 -216 -482 -482s216 -482 482 -482s482 216 482 482'], + 0x20DE: [750,250,0,-764,236,'236 750v-1000h-1000v1000h1000zM196 -210v920h-920v-920h920'], + 0x20DF: [1028,528,0,-1042,514,'514 250l-778 -778l-778 778l778 778zM457 250l-721 721l-721 -721l721 -721'], + 0x20E1: [711,-521,0,-499,-29,'-29 616c0 -7 -4 -12 -10 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -14 -9c-8 0 -15 7 -15 15c0 2 1 4 2 6c10 23 26 43 45 59h-324c19 -16 35 -36 45 -59c1 -2 2 -4 2 -6c0 -8 -7 -15 -15 -15c-7 0 -12 4 -14 9c-16 34 -45 60 -81 72c-6 2 -10 7 -10 14s4 12 10 14 c36 12 65 38 81 72c2 5 7 9 14 9c8 0 15 -7 15 -15c0 -2 -1 -4 -2 -6c-10 -23 -26 -43 -45 -59h324c-19 16 -35 36 -45 59c-1 2 -2 4 -2 6c0 8 7 15 15 15c7 0 12 -4 14 -9c16 -34 45 -60 81 -72c6 -2 10 -7 10 -14'], + 0x20E4: [831,311,0,-924,396,'396 -311h-1320l660 1142zM326 -271l-590 1022l-590 -1022h1180'], + 0x20E5: [750,250,0,-458,-69,'-69 -230c0 -11 -9 -20 -20 -20c-9 0 -17 5 -19 13l-349 960c-1 2 -1 5 -1 7c0 11 8 20 20 20c8 0 16 -5 18 -13l349 -960c1 -2 2 -5 2 -7'], + 0x20E6: [750,250,0,-352,-176,'-312 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960zM-176 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960'], + 0x20E8: [-96,188,0,-530,2,'-438 -142c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46s46 -21 46 -46zM-218 -142c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46s46 -21 46 -46zM2 -142c0 -25 -21 -46 -46 -46s-46 21 -46 46s21 46 46 46s46 -21 46 -46'], + 0x20E9: [726,-552,0,-444,-84,'-84 726v-154c0 -11 -9 -20 -20 -20s-20 9 -20 20v114h-280v-114c0 -11 -9 -20 -20 -20s-20 9 -20 20v154h360'], + 0x20EA: [510,10,0,-706,178,'178 250c0 -11 -9 -20 -20 -20h-766c30 -20 56 -44 78 -72c33 -42 56 -91 67 -144v-4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -29 91 -58 127c-36 45 -80 85 -136 104c-6 2 -9 7 -9 13s3 11 9 13c56 19 100 59 136 104c29 36 49 80 58 127c2 9 10 16 20 16 c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -67 -144c-22 -28 -48 -52 -78 -72h766c11 0 20 -9 20 -20'], + 0x20EB: [750,250,0,-531,3,'-142 730c0 -2 0 -5 -1 -7l-349 -960c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l349 960c3 8 10 13 19 13c11 0 20 -9 20 -20zM3 730c0 -2 0 -5 -1 -7l-349 -960c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l349 960c3 8 10 13 19 13 c11 0 20 -9 20 -20'], + 0x20EC: [-171,281,0,-475,-53,'-53 -186c0 -7 -4 -12 -10 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -14 -9c-8 0 -15 7 -15 15c0 2 1 4 2 6c10 23 26 43 45 59h-334c-9 0 -15 7 -15 15s6 15 15 15h393c8 0 14 -7 14 -15'], + 0x20ED: [-171,281,0,-475,-53,'-53 -186c0 -8 -6 -15 -15 -15h-334c19 -16 35 -36 45 -59c1 -2 2 -4 2 -6c0 -8 -7 -15 -15 -15c-7 0 -12 4 -14 9c-16 34 -45 60 -81 72c-6 2 -10 7 -10 14c0 8 6 15 14 15h393c9 0 15 -7 15 -15'], + 0x20EE: [-91,281,0,-472,-56,'-56 -186c0 -8 -7 -15 -15 -15h-327c19 -16 35 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -6 -15 -15 -15c-6 0 -11 4 -13 9c-16 34 -45 60 -81 72c-6 2 -11 7 -11 14s5 12 11 14c36 12 65 38 81 72c2 5 7 9 13 9c9 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-10 -23 -26 -43 -45 -59h327 c8 0 15 -7 15 -15'], + 0x20EF: [-91,281,0,-472,-56,'-56 -186c0 -7 -5 -12 -11 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -13 -9c-9 0 -15 7 -15 15c0 2 0 4 1 6c10 23 26 43 45 59h-327c-8 0 -15 7 -15 15s7 15 15 15h327c-19 16 -35 36 -45 59c-1 2 -1 4 -1 6c0 8 6 15 15 15c6 0 11 -4 13 -9c16 -34 45 -60 81 -72 c6 -2 11 -7 11 -14'], + 0x20F0: [827,-518,0,-401,-126,'-130 595c-7 -12 -23 -16 -34 -7l-90 67l13 -111c2 -14 -9 -26 -23 -26s-25 12 -23 26l13 111l-90 -67c-11 -9 -27 -5 -34 7s-2 27 11 33l104 44l-104 44c-13 6 -18 21 -11 33s23 16 34 7l90 -67l-13 111c-2 14 9 27 23 27s25 -13 23 -27l-13 -111l90 67c11 9 27 5 34 -7 s2 -27 -11 -33l-104 -44l104 -44c13 -6 18 -21 11 -33'], + 0x2E18: [500,256,472,56,415,'275 447c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM415 -72c0 -69 -65 -118 -151 -130v-3c0 -33 -21 -51 -42 -51s-42 18 -42 51v3c-99 15 -124 82 -124 132c0 62 33 90 51 106c103 88 103 196 103 237v16c0 18 0 24 12 24c3 0 12 0 13 -12v-24 l-1 -41l29 -416c43 7 92 26 115 65c-36 -4 -55 21 -55 45c0 26 18 46 46 46c23 0 46 -14 46 -48zM199 79c-9 -20 -20 -39 -34 -59c-15 -21 -26 -36 -26 -97c0 -39 0 -83 43 -99'], + 0x3016: [770,270,458,56,402,'336 -230c-98 118 -174 305 -174 438v84c0 133 76 320 174 438h-240v-960h240zM402 -250c0 -11 -9 -20 -20 -20h-326v1040h326c11 0 20 -9 20 -20c0 -6 -3 -11 -6 -14c-107 -107 -194 -306 -194 -444v-84c0 -138 87 -337 194 -444c3 -3 6 -8 6 -14'], + 0x3017: [770,270,458,57,402,'362 730h-240c98 -118 174 -305 174 -438v-84c0 -133 -76 -320 -174 -438h240v960zM402 770v-1040h-325c-12 0 -20 9 -20 20c0 6 2 11 5 14c107 107 194 306 194 444v84c0 138 -87 337 -194 444c-3 3 -5 8 -5 14c0 11 8 20 20 20h325'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Marks/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Misc/Regular/Main.js new file mode 100644 index 0000000..a314709 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Misc/Regular/Main.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'LatinModernMathJax_Misc', + id: 'LATINMODERNMISC', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x20A1: [728,45,722,56,665,'665 233c0 -114 -95 -250 -253 -255v-8c0 -8 -6 -15 -15 -15c-8 0 -15 7 -15 15v9c-176 11 -326 164 -326 363c0 196 149 351 326 362v9c0 9 7 15 15 15c9 0 15 -6 15 -15v-8c91 -3 140 -51 176 -86l50 74c8 12 12 12 16 12c11 0 11 -7 11 -24v-237c0 -21 0 -24 -16 -24 c-14 0 -14 3 -16 17c-20 146 -109 237 -218 237h-3v-665h4c109 0 216 82 224 225c1 10 1 16 12 16c13 0 13 -7 13 -17zM382 12v659c-79 -12 -223 -73 -223 -330c0 -255 144 -317 223 -329'], + 0x20AC: [705,22,627,54,571,'571 -12c0 -6 -4 -10 -10 -10h-3c-3 0 -6 1 -7 3l-39 42c-30 -28 -69 -45 -112 -45c-81 0 -154 44 -205 107c-42 54 -67 118 -78 186h-52c-7 0 -12 6 -10 12l3 10c1 5 5 8 9 8h47c-1 13 -2 27 -2 41c0 13 1 27 2 41h-49c-7 0 -12 6 -10 12l3 10c1 5 5 8 9 8h50 c11 67 36 131 78 185c51 64 124 107 205 107c43 0 82 -17 112 -45l39 42c1 2 4 3 7 3h3c6 0 10 -4 10 -10v-155c0 -6 -4 -10 -10 -10h-10c-5 0 -9 4 -10 9c-8 74 -60 136 -131 136c-63 0 -115 -41 -147 -94c-31 -51 -43 -109 -47 -168h291c6 0 11 -5 10 -10l-3 -13 c-2 -4 -6 -7 -10 -7h-289l-1 -41l1 -41h260c6 0 11 -5 10 -10l-3 -13c-2 -4 -6 -7 -10 -7h-256c4 -60 16 -117 47 -168c32 -54 84 -95 147 -95c71 0 123 63 131 136c1 5 5 9 10 9h10c6 0 10 -4 10 -10v-155'], + 0x275A: [694,83,525,227,297,'297 -36c0 -12 0 -47 -35 -47s-35 35 -35 47v683c0 12 0 47 35 47s35 -35 35 -47v-683'], + 0x27A1: [468,-31,977,56,921,'915 258c8 -2 8 -14 0 -16c-110 -29 -203 -104 -255 -205c-4 -9 -16 -6 -16 3v113h-568c-11 0 -20 9 -20 20v154c0 11 9 20 20 20h568v113c0 9 12 12 16 3c52 -101 145 -176 255 -205'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Misc/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Monospace/Regular/Main.js new file mode 100644 index 0000000..9b2c0a7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Monospace/Regular/Main.js @@ -0,0 +1,90 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'LatinModernMathJax_Monospace', + id: 'LATINMODERNMONOSPACE', + 0x20: [0,0,525,0,0,''], + 0xA0: [0,0,525,0,0,''], + 0x1D670: [623,0,525,27,497,'497 30c0 -30 -26 -30 -43 -30h-102c-18 0 -42 0 -42 30c0 31 20 31 56 31l-23 104h-162l-23 -104c36 0 56 0 56 -31c0 -30 -24 -30 -42 -30h-102c-17 0 -43 0 -43 30c0 13 6 23 17 29c6 2 29 2 43 2l121 524c9 38 25 38 54 38c31 0 45 -1 54 -39l121 -523 c15 0 37 0 43 -3c12 -5 17 -15 17 -28zM328 226l-66 314l-66 -314h132'], + 0x1D671: [611,0,525,23,482,'482 167c0 -78 -60 -167 -173 -167h-246c-14 0 -40 0 -40 30c0 31 25 31 41 31h27v489h-27c-16 0 -41 0 -41 31c0 30 26 30 40 30h226c111 0 172 -82 172 -155c0 -62 -44 -114 -108 -136c81 -19 129 -84 129 -153zM392 455c0 33 -22 95 -107 95h-125v-202h103 c97 0 129 66 129 107zM413 169c0 45 -30 118 -115 118h-138v-226h127c87 0 126 59 126 108'], + 0x1D672: [622,11,525,40,484,'484 168c0 -90 -86 -179 -202 -179c-130 0 -242 134 -242 317c0 182 112 316 241 316c51 0 97 -20 130 -48c13 25 13 27 15 31c5 7 10 17 28 17c30 0 30 -25 30 -41v-139c0 -20 0 -41 -35 -41c-30 0 -32 16 -35 33c-14 81 -69 127 -129 127c-89 0 -176 -106 -176 -255 c0 -150 86 -256 177 -256c41 0 122 24 129 122c2 29 25 29 34 29c11 0 35 0 35 -33'], + 0x1D673: [611,0,525,19,485,'485 301c0 -161 -88 -301 -219 -301h-206c-15 0 -41 0 -41 30c0 31 25 31 41 31h22v489h-22c-15 0 -41 0 -41 30c0 31 25 31 41 31h206c133 0 219 -150 219 -310zM416 301c0 116 -56 249 -169 249h-96v-489h96c111 0 169 123 169 240'], + 0x1D674: [611,0,525,26,502,'502 41c0 -32 -7 -41 -40 -41h-395c-15 0 -41 0 -41 30c0 31 25 31 41 31h30v489h-30c-15 0 -41 0 -41 31c0 30 26 30 41 30h373c34 0 40 -10 40 -41v-73c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v53h-245v-203h131c0 41 0 57 35 57c34 0 34 -22 34 -41v-93 c0 -19 0 -41 -34 -41c-35 0 -35 16 -35 57h-131v-225h267v69c0 20 0 41 35 41c34 0 34 -22 34 -41v-89'], + 0x1D675: [611,0,525,28,490,'490 497c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v53h-250v-214h136c0 41 0 57 35 57c34 0 34 -22 34 -41v-93c0 -19 0 -41 -34 -41c-35 0 -35 16 -35 57h-136v-214h52c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-154c-15 0 -41 0 -41 30c0 31 25 31 41 31h33v489h-33 c-15 0 -41 0 -41 30c0 31 25 31 41 31h381c34 0 40 -10 40 -41v-73'], + 0x1D676: [622,11,525,38,496,'496 240c0 -31 -23 -31 -47 -31v-168c0 -19 0 -41 -34 -41c-35 0 -35 20 -35 42c-20 -23 -62 -53 -119 -53c-119 0 -223 133 -223 317c0 181 103 316 223 316c42 0 82 -15 117 -45c15 34 20 45 41 45c30 0 30 -25 30 -41v-139c0 -20 0 -41 -35 -41c-26 0 -32 12 -34 29 c-17 108 -80 131 -115 131c-78 0 -158 -103 -158 -256c0 -147 76 -255 157 -255c53 0 102 47 114 159h-42c-16 0 -40 0 -40 31c0 30 25 30 40 30h119c15 0 41 0 41 -30'], + 0x1D677: [611,0,525,22,502,'502 30c0 -30 -25 -30 -40 -30h-119c-16 0 -40 0 -40 31c0 30 25 30 40 30h25v226h-212v-226h25c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-119c-15 0 -40 0 -40 30c0 31 24 31 40 31h25v489h-25c-15 0 -40 0 -40 30c0 31 24 31 40 31h119c16 0 40 0 40 -31 c0 -30 -25 -30 -40 -30h-25v-202h212v202h-25c-16 0 -40 0 -40 31c0 30 25 30 40 30h119c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-25v-489h25c16 0 40 0 40 -31'], + 0x1D678: [611,0,525,79,446,'446 30c0 -30 -26 -30 -41 -30h-285c-15 0 -41 0 -41 31c0 30 26 30 41 30h108v489h-108c-15 0 -41 0 -41 31c0 30 26 30 41 30h285c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-108v-489h108c15 0 41 0 41 -31'], + 0x1D679: [611,11,525,71,478,'478 581c0 -31 -25 -31 -41 -31h-30v-416c0 -91 -81 -145 -170 -145c-100 0 -166 47 -166 110c0 32 22 47 45 47c25 0 44 -20 44 -44c0 -16 -4 -21 -8 -26c29 -26 77 -26 85 -26c19 0 101 5 101 90v410h-82c-15 0 -41 0 -41 31c0 30 26 30 41 30h181c15 0 41 0 41 -30'], + 0x1D67A: [611,0,525,26,495,'495 30c0 -30 -26 -30 -41 -30h-75c-16 0 -41 0 -41 31c0 30 26 30 40 30l-140 250l-93 -117v-133h22c16 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-100c-16 0 -41 0 -41 31c0 30 26 30 41 30h22v489h-22c-16 0 -41 0 -41 31c0 30 26 30 41 30h100c16 0 41 0 41 -31 c0 -30 -26 -30 -41 -30h-22v-266l211 266c-14 0 -41 0 -41 30c0 31 26 31 41 31h88c14 0 41 0 41 -30c0 -31 -21 -31 -57 -31l-152 -192l160 -285c1 -2 5 -8 7 -12c29 0 52 0 52 -31'], + 0x1D67B: [611,0,525,32,488,'488 41c0 -32 -7 -41 -40 -41h-376c-15 0 -40 0 -40 30c0 31 24 31 40 31h37v489h-37c-15 0 -40 0 -40 30c0 31 24 31 40 31h162c15 0 41 0 41 -31c0 -30 -27 -30 -41 -30h-56v-489h241v69c0 21 0 41 35 41c34 0 34 -21 34 -41v-89'], + 0x1D67C: [611,0,525,17,507,'507 30c0 -30 -25 -30 -40 -30h-82c-15 0 -40 0 -40 30c0 31 21 31 53 31v477h-1c-12 -53 -97 -306 -100 -312c-8 -14 -22 -22 -35 -22c-12 0 -24 7 -30 15c-5 7 -18 45 -26 68c-4 13 -68 205 -79 251h-1v-477c32 0 53 0 53 -31c0 -30 -25 -30 -40 -30h-82 c-15 0 -40 0 -40 30c0 31 21 31 53 31v489c-32 0 -53 0 -53 31c0 30 25 30 40 30h56c14 0 39 0 49 -24c2 -6 90 -265 100 -312h1c6 29 15 58 27 94l67 202c9 26 13 40 54 40h56c15 0 40 0 40 -30c0 -31 -21 -31 -53 -31v-489c32 0 53 0 53 -31'], + 0x1D67D: [611,0,525,28,496,'496 580c0 -30 -25 -30 -40 -30h-25v-509c0 -38 -12 -41 -42 -41c-26 0 -42 1 -55 36l-184 500h-1v-475h25c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-106c-16 0 -40 0 -40 31c0 30 25 30 40 30h25v489h-25c-16 0 -40 0 -40 31c0 30 25 30 40 30h68c27 0 42 -3 54 -36 l184 -500h1v475h-25c-15 0 -40 0 -40 30c0 31 24 31 40 31h106c16 0 40 0 40 -31'], + 0x1D67E: [622,11,525,56,468,'468 305c0 -289 -22 -316 -206 -316c-185 0 -206 27 -206 316c0 290 21 317 206 317s206 -28 206 -317zM399 314c0 61 0 136 -12 183c-15 55 -50 64 -125 64c-82 0 -113 -12 -126 -71c-11 -46 -11 -114 -11 -176c0 -55 0 -142 12 -193c12 -50 37 -71 125 -71 c89 0 115 21 126 77c11 54 11 125 11 187'], + 0x1D67F: [611,0,525,26,480,'480 428c0 -93 -73 -183 -189 -183h-125v-184h30c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-129c-15 0 -41 0 -41 30c0 31 25 31 41 31h30v489h-30c-15 0 -41 0 -41 31c0 30 26 30 41 30h224c115 0 189 -90 189 -183zM411 428c0 53 -43 122 -139 122h-106v-244h106 c96 0 139 69 139 122'], + 0x1D680: [622,139,525,56,468,'468 305c0 -46 0 -113 -6 -167c-9 -81 -27 -116 -71 -134c7 -13 25 -47 33 -60c11 -22 31 -58 31 -64c0 -19 -17 -19 -32 -19h-9c-16 0 -27 0 -35 12l-61 117c-11 -1 -43 -1 -56 -1c-185 0 -206 27 -206 316c0 290 21 317 206 317s206 -28 206 -317zM399 306 c0 54 0 122 -9 173c-11 65 -39 82 -128 82c-92 0 -114 -20 -127 -75c-10 -48 -10 -125 -10 -181c0 -54 0 -122 9 -173c10 -54 30 -82 120 -82h32l-46 89c-3 5 -4 8 -4 13c0 19 18 19 32 19h11c20 0 21 -1 30 -16l48 -87c22 15 42 29 42 238'], + 0x1D681: [611,11,525,22,522,'522 93c0 -38 -24 -104 -87 -104c-34 0 -62 16 -79 46c-19 32 -19 62 -19 127c0 42 0 64 -22 85c-32 28 -62 28 -81 28h-78v-214h25c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-119c-15 0 -40 0 -40 30c0 31 24 31 40 31h25v489h-25c-15 0 -40 0 -40 30c0 31 24 31 40 31 h177c118 0 194 -82 194 -168c0 -41 -19 -102 -85 -139c14 -11 37 -32 49 -61c9 -23 9 -31 9 -94c0 -53 0 -99 28 -99c17 0 19 37 19 45c1 30 24 30 34 30c11 0 35 0 35 -32zM364 443c0 48 -44 107 -136 107h-72v-214h72c91 0 136 58 136 107'], + 0x1D682: [622,11,525,52,472,'472 166c0 -89 -72 -177 -188 -177c-64 0 -125 16 -165 46c-9 -32 -15 -46 -37 -46c-30 0 -30 25 -30 41v132c0 20 0 41 35 41c32 0 33 -18 34 -35c1 -18 5 -60 47 -87c40 -27 89 -31 117 -31c79 0 122 59 122 111c0 87 -83 107 -111 113l-115 27 c-83 24 -129 90 -129 157c0 85 75 164 186 164c45 0 99 -12 140 -47c8 30 13 47 37 47c30 0 30 -25 30 -41v-132c0 -20 0 -41 -35 -41c-20 0 -31 6 -34 28c-6 31 -21 125 -139 125c-71 0 -120 -48 -120 -99c0 -47 38 -82 80 -94l81 -18c78 -18 105 -25 146 -65 c12 -13 48 -55 48 -119'], + 0x1D683: [611,0,525,26,498,'498 497c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v53h-132v-489h52c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-173c-16 0 -40 0 -40 31c0 30 25 30 40 30h52v489h-133v-53c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v73c0 33 8 41 41 41h391c34 0 40 -10 40 -41v-73'], + 0x1D684: [611,11,525,4,520,'520 581c0 -31 -25 -31 -41 -31h-30v-346c0 -123 -87 -215 -187 -215s-187 92 -187 215v346h-30c-15 0 -41 0 -41 31c0 30 26 30 41 30h129c15 0 41 0 41 -30c0 -31 -26 -31 -41 -31h-30v-341c0 -107 65 -159 118 -159c52 0 118 52 118 159v341h-30c-15 0 -41 0 -41 31 c0 30 26 30 41 30h129c15 0 41 0 41 -30'], + 0x1D685: [611,8,525,18,506,'506 581c0 -31 -21 -31 -57 -31l-132 -521c-9 -37 -28 -37 -55 -37c-29 0 -45 0 -55 38l-132 520c-36 0 -57 0 -57 31c0 30 26 30 41 30h102c15 0 41 0 41 -30c0 -31 -21 -31 -56 -31l97 -389c9 -37 13 -54 18 -89h1c7 43 26 119 39 172l77 306c-35 0 -56 0 -56 31 c0 30 26 30 41 30h102c15 0 41 0 41 -30'], + 0x1D686: [611,8,525,11,513,'513 580c0 -30 -27 -30 -38 -30l-72 -523c-5 -35 -29 -35 -41 -35c-7 0 -33 0 -40 25c-1 2 -55 231 -59 276h-1c-4 -40 -58 -274 -61 -281c-10 -20 -30 -20 -39 -20c-12 0 -36 0 -41 35l-72 523h-1c-9 0 -37 0 -37 30c0 31 26 31 41 31h79c16 0 40 0 40 -31 c0 -30 -25 -30 -40 -30h-25l52 -396c7 -54 8 -73 8 -78h1c5 62 52 262 55 269c10 22 30 22 40 22c9 0 32 0 41 -23c1 -6 48 -204 54 -268h1c1 28 8 80 16 141l44 333h-25c-15 0 -40 0 -40 30c0 31 24 31 40 31h79c15 0 41 0 41 -31'], + 0x1D687: [611,0,525,27,496,'496 30c0 -30 -26 -30 -41 -30h-104c-15 0 -40 0 -40 30c0 31 22 31 45 31l-99 194l-92 -194c23 0 47 0 47 -31c0 -30 -26 -30 -41 -30h-104c-15 0 -40 0 -40 30c0 31 24 31 40 31h22l133 264l-120 225h-23c-15 0 -41 0 -41 31c0 30 26 30 41 30h104c15 0 40 0 40 -30 c0 -31 -23 -31 -43 -31l77 -146l71 146c-23 0 -46 0 -46 31c0 30 25 30 40 30h104c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-22l-113 -224l141 -265h23c15 0 41 0 41 -31'], + 0x1D688: [611,0,525,19,505,'505 580c0 -30 -25 -30 -40 -30h-21l-147 -306v-183h25c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-119c-16 0 -40 0 -40 31c0 30 25 30 40 30h25v183l-148 306h-21c-16 0 -40 0 -40 31c0 30 25 30 40 30h104c15 0 40 0 40 -30c0 -31 -22 -31 -46 -31 c10 -21 91 -185 105 -236l105 236c-24 0 -46 0 -46 31c0 30 25 30 40 30h104c16 0 40 0 40 -31'], + 0x1D689: [611,0,525,48,481,'481 41c0 -32 -7 -41 -40 -41h-352c-19 0 -41 0 -41 34c0 10 0 16 10 31l329 485h-258v-53c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v73c0 33 8 41 41 41h334c19 0 41 0 41 -34c0 -10 0 -16 -10 -31l-329 -485h275v72c0 20 0 41 35 41c34 0 34 -22 34 -41v-92'], + 0x1D68A: [440,6,525,50,519,'519 31c0 -31 -22 -31 -50 -31c-38 0 -86 1 -108 32c-47 -31 -109 -38 -146 -38c-102 0 -165 65 -165 134c0 96 123 146 300 149c0 71 -52 102 -128 102c-9 0 -22 0 -36 -1c-20 -2 -21 -3 -21 -11c-1 -37 -29 -46 -44 -46c-24 0 -45 16 -45 46c0 73 102 73 145 73 c144 0 198 -84 198 -155v-216c8 -3 18 -8 60 -8c15 0 40 0 40 -30zM350 134v84c-145 -4 -231 -41 -231 -90c0 -39 41 -73 103 -73c8 0 53 0 89 17c39 18 39 39 39 62'], + 0x1D68B: [611,6,525,12,488,'488 216c0 -127 -97 -222 -206 -222c-32 0 -75 9 -116 51c0 -25 0 -45 -34 -45c-35 0 -35 21 -35 41v509h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-182c34 31 79 49 127 49c106 0 195 -98 195 -221zM419 216c0 87 -58 160 -132 160 c-63 0 -121 -53 -121 -112v-73c0 -48 35 -136 113 -136c70 0 140 65 140 161'], + 0x1D68C: [440,6,525,73,466,'466 109c0 -17 -34 -115 -173 -115c-126 0 -220 102 -220 222c0 88 60 224 232 224c45 0 149 0 149 -73c0 -29 -21 -46 -45 -46s-43 14 -44 49c0 9 -39 9 -60 9c-135 0 -163 -115 -163 -163c0 -91 72 -161 157 -161c74 0 93 47 99 60c7 20 17 22 33 22c6 0 35 0 35 -28'], + 0x1D68D: [611,6,525,36,512,'512 31c0 -31 -25 -31 -41 -31h-73c-40 0 -40 14 -40 50c-28 -29 -70 -56 -126 -56c-106 0 -196 97 -196 221c0 127 96 222 205 222c43 0 84 -16 117 -45v158h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-509h45c14 0 40 0 40 -30zM358 194v71 c0 55 -49 111 -113 111c-70 0 -140 -65 -140 -161c0 -89 60 -160 131 -160c77 0 122 83 122 139'], + 0x1D68E: [440,6,525,55,464,'464 109c0 -25 -47 -115 -179 -115c-129 0 -230 101 -230 223c0 123 96 223 215 223c130 0 194 -98 194 -212c0 -37 -19 -37 -40 -37h-298c16 -86 91 -136 166 -136c28 0 82 9 104 60c7 19 15 22 33 22c6 0 35 0 35 -28zM393 251c-9 103 -71 128 -123 128 c-70 0 -129 -55 -143 -128h266'], + 0x1D68F: [617,0,525,42,437,'437 557c0 -28 -23 -44 -43 -44c-35 0 -44 39 -44 43c-30 0 -97 0 -97 -78v-47h122c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-122v-309h101c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-271c-15 0 -41 0 -41 31c0 30 26 30 41 30h101v309h-101c-15 0 -40 0 -40 30 c0 31 25 31 41 31h100v53c0 87 77 133 157 133c16 0 96 0 96 -60'], + 0x1D690: [442,229,525,29,509,'509 388c0 -29 -23 -41 -40 -41c-10 0 -33 7 -39 34c-13 -1 -37 -5 -58 -17c17 -28 26 -57 26 -87c0 -89 -73 -161 -165 -161c-49 0 -87 23 -90 25c-4 -10 -6 -24 -6 -28c0 0 1 -22 12 -36c12 -14 18 -14 33 -14c8 -2 21 -2 29 -2h70c90 0 132 -22 145 -29 c51 -27 69 -77 69 -114c0 -85 -105 -147 -233 -147s-233 61 -233 147c0 11 0 79 74 124c-9 12 -23 37 -23 72c0 30 9 52 20 68c-15 19 -32 52 -32 95c0 85 71 160 165 160c46 0 81 -19 97 -30c46 34 95 35 106 35c54 0 73 -31 73 -54zM329 277c0 53 -42 100 -96 100 c-52 0 -96 -44 -96 -101c0 -53 42 -100 96 -100c52 0 96 44 96 101zM437 -82c0 86 -113 86 -202 86c-73 0 -82 0 -107 -16c-32 -20 -41 -52 -41 -70c0 -44 75 -87 175 -87s175 43 175 87'], + 0x1D691: [611,0,525,12,512,'512 30c0 -30 -26 -30 -40 -30h-153c-14 0 -41 0 -41 30c0 31 25 31 41 31h39v227c0 60 -14 88 -67 88c-51 0 -125 -38 -125 -138v-177h44c16 0 41 0 41 -31c0 -30 -26 -30 -40 -30h-159c-14 0 -40 0 -40 30c0 31 25 31 41 31h44v489h-45c-14 0 -40 0 -40 30 c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-186c19 19 64 53 131 53c79 0 130 -43 130 -144v-232h44c16 0 41 0 41 -31'], + 0x1D692: [605,0,525,78,455,'455 30c0 -30 -26 -30 -41 -30h-295c-15 0 -41 0 -41 30c0 31 25 31 41 31h121v309h-113c-15 0 -41 0 -41 31c0 30 26 30 41 30h142c34 0 40 -10 40 -41v-329h105c15 0 41 0 41 -31zM313 555c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50'], + 0x1D693: [605,228,525,48,369,'368 -44c0 -64 -36 -184 -181 -184c-41 0 -139 0 -139 76c0 29 22 46 45 46c21 0 44 -17 44 -45c0 -7 0 -9 -1 -12c15 -2 27 -4 56 -4c23 0 54 0 81 38c26 35 26 73 26 90v409h-130c-15 0 -40 0 -40 30c0 31 25 31 41 31h158c34 0 40 -10 40 -41v-434zM369 555 c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50'], + 0x1D694: [611,0,525,21,508,'508 30c0 -30 -26 -30 -41 -30h-118c-15 0 -40 0 -40 30c0 31 20 31 56 31l-119 155l-80 -74v-81h49c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-154c-16 0 -40 0 -40 31c0 30 25 30 40 30h49v489h-49c-16 0 -40 0 -40 31c0 30 25 30 40 30h65c34 0 40 -10 40 -41v-352 l162 152h-37c-15 0 -40 0 -40 30c0 31 24 31 40 31h154c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-35l-123 -115l149 -194h31c15 0 41 0 41 -31'], + 0x1D695: [611,0,525,58,467,'467 30c0 -30 -25 -30 -40 -30h-329c-14 0 -40 0 -40 30c0 31 25 31 41 31h129v489h-130c-14 0 -40 0 -40 30c0 31 25 31 41 31h158c34 0 40 -10 40 -41v-509h130c16 0 40 0 40 -31'], + 0x1D696: [437,0,525,-4,516,'516 30c0 -30 -26 -30 -41 -30h-75c-14 0 -41 0 -41 30c0 31 25 31 44 31v233c0 65 -14 82 -37 82c-41 0 -82 -47 -82 -136v-179c36 0 57 0 57 -31c0 -30 -26 -30 -41 -30h-75c-14 0 -41 0 -41 30c0 31 25 31 44 31v233c0 65 -14 82 -37 82c-41 0 -82 -47 -82 -136v-179 c36 0 57 0 57 -31c0 -30 -26 -30 -41 -30h-88c-14 0 -41 0 -41 30c0 31 21 31 57 31v309c-36 0 -57 0 -57 31c0 30 26 30 41 30h32c18 0 38 0 40 -30c24 22 54 36 86 36c33 0 61 -18 76 -52c28 39 69 52 99 52c89 0 89 -114 89 -134v-242c36 0 57 0 57 -31'], + 0x1D697: [437,0,525,12,512,'512 30c0 -30 -26 -30 -40 -30h-153c-14 0 -41 0 -41 30c0 31 25 31 41 31h39v227c0 60 -14 88 -67 88c-51 0 -125 -38 -125 -138v-177h44c16 0 41 0 41 -31c0 -30 -26 -30 -40 -30h-159c-14 0 -40 0 -40 30c0 31 25 31 41 31h44v309h-45c-14 0 -40 0 -40 30 c0 31 25 31 41 31h73c40 0 40 -15 40 -47c19 19 64 53 131 53c79 0 130 -43 130 -144v-232h44c16 0 41 0 41 -31'], + 0x1D698: [440,6,525,57,467,'467 216c0 -126 -95 -222 -205 -222s-205 95 -205 222c0 125 93 224 205 224s205 -99 205 -224zM398 223c0 91 -64 156 -136 156c-71 0 -136 -65 -136 -156c0 -93 62 -168 136 -168s136 75 136 168'], + 0x1D699: [437,222,525,12,488,'488 216c0 -127 -97 -222 -206 -222c-32 0 -75 9 -116 51v-206h44c16 0 41 0 41 -31c0 -30 -26 -30 -40 -30h-159c-14 0 -40 0 -40 30c0 31 25 31 41 31h44v531h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c38 0 40 -14 40 -43c34 31 79 49 127 49 c106 0 195 -98 195 -221zM419 216c0 87 -58 160 -132 160c-63 0 -121 -53 -121 -112v-73c0 -48 35 -136 113 -136c70 0 140 65 140 161'], + 0x1D69A: [437,222,525,40,537,'537 -192c0 -30 -25 -30 -40 -30h-167c-16 0 -40 0 -40 31c0 30 25 30 40 30h49v215c-21 -23 -67 -60 -135 -60c-110 0 -204 97 -204 221c0 127 102 222 214 222c57 0 98 -26 125 -55c0 38 0 55 35 55c34 0 34 -22 34 -41v-557h49c16 0 40 0 40 -31zM379 194v39 c0 66 -45 143 -120 143c-80 0 -150 -69 -150 -161c0 -90 65 -160 139 -160c82 0 131 82 131 139'], + 0x1D69B: [437,0,525,32,487,'487 375c0 -27 -20 -43 -42 -43c-25 0 -42 20 -43 44c-121 0 -180 -96 -180 -190v-125h111c15 0 41 0 41 -31c0 -30 -26 -30 -41 -30h-261c-16 0 -40 0 -40 31c0 30 25 30 40 30h81v309h-81c-16 0 -40 0 -40 31c0 30 25 30 40 30h110c34 0 40 -10 40 -41v-34 c55 63 119 81 170 81c83 0 95 -42 95 -62'], + 0x1D69C: [440,6,525,72,459,'459 125c0 -48 -32 -131 -190 -131c-28 0 -81 2 -130 38c-12 -37 -28 -38 -37 -38c-30 0 -30 25 -30 41v97c0 20 0 41 35 41c26 0 30 -11 35 -29c25 -78 81 -89 128 -89c91 0 128 33 128 70c0 53 -80 66 -129 74c-92 14 -197 31 -197 123c0 36 23 118 190 118 c19 0 63 0 107 -21c2 7 6 21 30 21c30 0 30 -25 30 -41v-69c0 -20 0 -41 -35 -41c-31 0 -33 17 -34 34c-3 26 -17 56 -100 56c-95 0 -127 -31 -127 -57c0 -39 68 -51 97 -55l68 -12c32 -5 161 -26 161 -130'], + 0x1D69D: [554,6,525,25,449,'449 126c0 -89 -81 -132 -155 -132c-73 0 -141 36 -141 132v244h-88c-15 0 -40 0 -40 30c0 31 25 31 41 31h87v82c0 20 0 41 35 41c34 0 34 -22 34 -41v-82h164c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-164v-238c0 -25 0 -77 77 -77c23 0 80 10 81 72c0 17 1 38 34 38 c35 0 35 -21 35 -39'], + 0x1D69E: [431,6,525,12,512,'512 31c0 -31 -25 -31 -41 -31h-73c-18 0 -39 0 -40 32c-37 -28 -78 -38 -119 -38c-73 0 -142 24 -142 120v256h-45c-14 0 -40 0 -40 30c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-270c0 -32 0 -65 79 -65c32 0 113 12 113 102v213h-45c-14 0 -40 0 -40 30 c0 31 25 31 41 31h73c34 0 40 -10 40 -41v-329h45c14 0 40 0 40 -30'], + 0x1D69F: [431,4,525,24,500,'500 400c0 -30 -25 -30 -40 -30h-30l-115 -341c-11 -33 -34 -33 -53 -33c-21 0 -41 0 -53 34l-115 340h-30c-15 0 -40 0 -40 30c0 31 24 31 40 31h117c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-28l109 -322l109 322h-28c-16 0 -40 0 -40 31c0 30 25 30 40 30h117 c16 0 40 0 40 -31'], + 0x1D6A0: [431,4,525,16,508,'508 401c0 -31 -21 -31 -51 -31l-60 -336c-4 -22 -7 -38 -44 -38c-12 0 -30 0 -42 17c-4 8 -41 125 -46 177h-1c-3 -22 -4 -36 -29 -124c-18 -61 -21 -70 -61 -70s-43 15 -47 38l-60 336c-30 0 -51 0 -51 31c0 30 24 30 42 30h115c19 0 42 0 42 -31 c0 -30 -24 -30 -42 -30h-49l52 -298h1c4 20 44 158 47 165c11 22 30 22 40 22c35 0 38 -11 56 -74c12 -41 25 -87 29 -113h1l50 298h-49c-19 0 -42 0 -42 31c0 30 24 30 42 30h115c18 0 42 0 42 -30'], + 0x1D6A1: [431,0,525,27,496,'496 30c0 -30 -27 -30 -41 -30h-117c-15 0 -40 0 -40 30c0 31 22 31 50 31l-89 123l-86 -123c31 0 52 0 52 -31c0 -30 -25 -30 -40 -30h-117c-14 0 -41 0 -41 30c0 31 26 31 41 31h40l124 161l-118 148h-40c-14 0 -41 0 -41 30c0 31 26 31 41 31h117c15 0 40 0 40 -30 c0 -31 -22 -31 -48 -31l76 -101l74 101c-27 0 -49 0 -49 31c0 30 25 30 40 30h117c15 0 41 0 41 -31c0 -30 -27 -30 -41 -30h-40l-114 -148l128 -161h40c15 0 41 0 41 -31'], + 0x1D6A2: [431,228,525,26,500,'500 400c0 -30 -25 -30 -40 -30h-30l-155 -455c-4 -11 -49 -143 -149 -143c-49 0 -83 40 -83 82c0 26 17 44 44 44c25 0 43 -18 43 -43c0 -13 -5 -22 -5 -22c15 1 51 3 80 58c13 25 38 109 38 109s0 3 -4 13l-142 357h-31c-15 0 -40 0 -40 30c0 31 24 31 40 31h117 c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-25l93 -240c7 -19 16 -40 21 -59h1c7 31 13 49 26 86l72 213h-28c-16 0 -40 0 -40 31c0 30 25 30 40 30h117c16 0 40 0 40 -31'], + 0x1D6A3: [431,0,525,33,475,'475 41c0 -15 0 -35 -22 -41h-379c-19 0 -41 0 -41 34c0 17 1 20 22 40l312 296h-249v-26c0 -20 0 -41 -35 -41c-34 0 -34 22 -34 41v46c0 33 8 41 41 41h340c19 0 41 0 41 -34c0 -17 -1 -20 -22 -40l-312 -296h269v38c0 20 0 41 35 41c34 0 34 -22 34 -41v-58'], + 0x1D7F6: [622,11,525,50,474,'474 305c0 -182 -100 -316 -212 -316c-110 0 -212 131 -212 317c0 182 100 316 212 316c110 0 212 -131 212 -317zM405 316c0 147 -70 245 -143 245c-74 0 -143 -99 -143 -245c0 -148 65 -266 143 -266s143 118 143 266'], + 0x1D7F7: [622,0,525,105,442,'442 30c0 -30 -25 -30 -40 -30h-251c-15 0 -40 0 -40 30c0 31 24 31 40 31h91v422c-44 -38 -85 -44 -104 -44c-15 0 -33 5 -33 30c0 28 21 30 37 31c19 2 71 13 109 98c5 12 11 24 30 24c30 0 30 -25 30 -41v-520h91c16 0 40 0 40 -31'], + 0x1D7F8: [622,0,525,52,472,'472 41c0 -32 -7 -41 -40 -41h-339c-16 0 -41 0 -41 31c0 14 6 19 15 27l221 186c66 55 115 113 115 183c0 88 -77 134 -159 134c-55 0 -102 -31 -117 -77c9 -7 14 -20 14 -32c0 -28 -23 -45 -44 -45c-17 0 -45 11 -45 48c0 85 79 167 197 167c122 0 223 -75 223 -195 c0 -80 -46 -144 -109 -200c-43 -40 -139 -115 -198 -166h238c0 28 0 47 35 47c34 0 34 -22 34 -41v-26'], + 0x1D7F9: [622,11,525,44,480,'480 174c0 -93 -85 -185 -216 -185c-123 0 -220 58 -220 147c0 32 22 47 45 47c25 0 44 -20 44 -44c0 -20 -7 -26 -12 -31c26 -47 103 -58 143 -58c91 0 147 63 147 124c0 58 -51 125 -150 125h-46c-16 0 -40 0 -40 31c0 29 15 29 72 33c36 2 61 4 93 30 c27 22 42 57 42 87c0 45 -50 81 -118 81c-9 0 -80 0 -111 -31c3 -3 9 -13 9 -27c0 -28 -23 -45 -44 -45c-20 0 -45 14 -45 47c0 69 70 117 190 117c115 0 188 -67 188 -141c0 -54 -28 -111 -84 -147c66 -30 113 -89 113 -160'], + 0x1D7FA: [623,0,525,29,495,'495 199c0 -30 -25 -30 -40 -30h-78v-108h62c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-180c-15 0 -40 0 -40 30c0 31 24 31 40 31h62v108h-252c-31 0 -40 7 -40 40c0 20 0 22 9 35l228 358c13 20 18 21 42 21h28c34 0 41 -8 41 -41v-352h78c16 0 40 0 40 -31zM321 230 v349l-222 -349h222'], + 0x1D7FB: [611,11,525,52,472,'472 190c0 -111 -99 -201 -224 -201c-112 0 -196 70 -196 153c0 39 30 48 45 48c21 0 44 -16 44 -45c0 -20 -8 -27 -13 -32c28 -55 92 -63 120 -63c84 0 155 60 155 140c0 65 -45 138 -127 138c-58 0 -99 -18 -126 -50c-8 -10 -12 -15 -30 -15c-32 0 -32 23 -32 41v266 c0 32 7 41 40 41h269c16 0 40 0 40 -31c0 -30 -25 -30 -40 -30h-240v-190c41 22 85 29 120 29c118 0 195 -98 195 -199'], + 0x1D7FC: [622,11,525,53,471,'471 193c0 -120 -98 -204 -207 -204c-99 0 -211 73 -211 310c0 202 134 323 268 323c97 0 133 -54 133 -103c0 -30 -20 -47 -45 -47c-26 0 -44 20 -44 44c0 18 5 24 10 29c-5 5 -21 16 -55 16c-88 0 -182 -82 -196 -223c45 41 97 58 149 58c110 0 198 -89 198 -203z M402 193c0 74 -53 141 -134 141c-76 0 -136 -50 -136 -112c0 -14 -2 -38 8 -62c20 -61 59 -110 124 -110c72 0 138 57 138 143'], + 0x1D7FD: [627,11,525,44,480,'480 580c0 -14 -2 -16 -22 -34c-61 -59 -214 -233 -219 -517c0 -29 -17 -40 -34 -40c-35 0 -35 33 -35 47c0 110 34 330 207 514h-264c0 -28 0 -47 -35 -47c-34 0 -34 22 -34 41v42c0 19 0 41 34 41c8 0 26 0 32 -16h330c16 0 40 0 40 -31'], + 0x1D7FE: [622,11,525,44,480,'480 174c0 -97 -92 -185 -218 -185c-125 0 -218 88 -218 185c0 75 64 134 139 155c-79 26 -125 76 -125 133c0 81 84 160 204 160c119 0 204 -78 204 -160c0 -57 -45 -106 -125 -133c74 -21 139 -80 139 -155zM397 461c0 52 -57 100 -135 100c-79 0 -135 -48 -135 -100 c0 -56 62 -101 135 -101s135 44 135 101zM411 175c0 61 -57 124 -149 124c-91 0 -149 -63 -149 -124c0 -69 66 -125 149 -125s149 56 149 125'], + 0x1D7FF: [622,11,525,53,471,'471 312c0 -198 -123 -323 -255 -323c-128 0 -146 71 -146 103c0 30 20 47 45 47c26 0 44 -20 44 -44c0 -17 -5 -23 -9 -28c21 -16 57 -17 66 -17c96 0 174 99 184 223c-45 -41 -97 -58 -149 -58c-110 0 -198 89 -198 203c0 121 101 204 212 204c95 0 206 -69 206 -310z M393 389c0 71 -9 90 -41 129c-16 20 -44 43 -87 43c-72 0 -143 -56 -143 -143c0 -74 53 -141 134 -141c83 0 137 57 137 112'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Monospace/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..8b3d5fc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/NonUnicode/Regular/Main.js @@ -0,0 +1,2061 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'LatinModernMathJax_NonUnicode', + id: 'LATINMODERNNONUNICODE', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0xE000: [907,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM565 819c0 49 -47 49 -75 49c-29 0 -75 0 -75 -49s47 -49 75 -49c29 0 75 0 75 49zM615 818c0 -44 -51 -87 -125 -87c-71 0 -125 40 -125 89c0 44 51 87 125 87c71 0 125 -40 125 -89'], + 0xE001: [694,9,1021,72,957,'928 371c0 -57 -36 -136 -113 -136s-113 79 -113 136c0 67 36 145 113 145s113 -85 113 -145zM957 160c0 -12 -8 -17 -19 -17h-246c-13 0 -20 5 -20 16c0 12 5 20 20 20h242c14 0 23 -5 23 -19zM696 614c0 -28 -17 -56 -54 -56c-31 0 -55 22 -55 53c0 17 6 34 19 45 c-10 -4 -19 -11 -25 -20c-20 -29 -26 -81 -26 -116v-498c0 -11 -3 -22 -18 -22s-21 10 -25 23l-259 560l-1 -421c0 -55 -17 -171 -94 -171c-45 0 -86 37 -86 82c0 31 24 54 55 54c32 0 56 -24 56 -55c0 -18 -8 -31 -20 -43c11 4 21 11 28 20c21 30 23 85 23 131v450 c0 16 -33 18 -56 18h-47v36h168c13 0 23 -5 27 -16l211 -454v304c0 72 23 176 92 176c46 0 87 -34 87 -80zM854 319v120c0 22 -11 49 -39 49c-27 0 -40 -27 -40 -49v-120c0 -27 13 -54 40 -54c28 0 39 27 39 54'], + 0xE002: [695,10,1180,97,1091,'1057 348c0 -57 -40 -136 -124 -136s-123 79 -123 136c0 67 39 145 123 145s124 -85 124 -145zM1091 135c0 -15 -8 -20 -22 -20h-275c-17 0 -21 8 -21 20c0 22 10 25 23 25h274c8 0 21 0 21 -25zM796 604c0 -31 -21 -61 -61 -61c-42 0 -61 34 -61 61c0 16 5 32 16 44 c-43 -11 -52 -89 -52 -134v-490c0 -13 -2 -24 -18 -24c-19 0 -31 18 -40 36l-278 538l-1 -415c0 -61 -24 -169 -106 -169c-50 0 -98 39 -98 90c0 32 22 62 61 62c33 0 62 -24 62 -62c0 -17 -7 -30 -16 -43c46 11 51 86 51 132v454c0 20 -50 17 -79 17h-32v44h186 c13 0 21 -3 28 -14l234 -450v276c0 40 7 199 104 199c53 0 100 -36 100 -91zM975 296v110c0 22 -12 54 -42 54s-43 -32 -43 -54v-110c0 -27 13 -49 43 -49s42 22 42 49'], + 0xE003: [442,11,1361,125,1236,'1236 216c0 -127 -107 -227 -241 -227c-170 0 -269 106 -325 167c-47 -61 -156 -167 -307 -167c-136 0 -238 104 -238 226c0 127 107 227 241 227c170 0 269 -106 325 -167c47 61 156 167 307 167c136 0 238 -104 238 -226zM1203 216c0 93 -78 182 -197 182 c-110 0 -208 -67 -278 -161c115 -128 193 -186 284 -186c96 0 191 65 191 165zM633 194c-115 128 -193 186 -284 186c-96 0 -191 -65 -191 -165c0 -93 78 -182 197 -182c110 0 208 67 278 161'], + 0xE004: [705,205,667,143,524,'524 -49c0 -90 -87 -156 -191 -156c-96 0 -173 52 -173 124c0 32 23 45 43 45c25 0 43 -18 43 -43c0 -30 -24 -40 -31 -42c36 -46 93 -51 117 -51c71 0 117 62 117 123c0 55 -35 107 -125 139c-67 23 -181 64 -181 167c0 74 59 127 124 146c-65 28 -124 73 -124 146 c0 90 87 156 191 156c96 0 173 -52 173 -124c0 -32 -23 -45 -43 -45c-25 0 -43 18 -43 43c0 30 24 40 31 42c-36 46 -93 51 -117 51c-71 0 -117 -62 -117 -123c0 -55 35 -107 125 -139c67 -23 181 -64 181 -167c0 -74 -59 -127 -124 -146c65 -28 124 -73 124 -146zM449 244 c0 70 -63 117 -118 136c-66 -3 -113 -60 -113 -124c0 -70 63 -117 118 -136c66 3 113 60 113 124'], + 0xE005: [705,216,667,125,543,'543 431c0 -8 -3 -43 -47 -43c-24 0 -52 7 -88 17c-31 8 -42 9 -59 11c2 -23 2 -29 15 -83c13 -55 13 -64 13 -114c0 -183 -19 -399 -22 -424c-2 -11 -14 -11 -21 -11c-17 0 -20 5 -21 17c-4 26 -22 228 -22 418c0 49 0 59 13 114c13 54 13 60 15 83 c-17 -2 -28 -3 -59 -11c-36 -10 -64 -17 -88 -17c-44 0 -47 35 -47 43s3 43 47 43c16 0 38 -3 84 -15c37 -10 41 -11 64 -13c-2 31 -12 84 -14 99c-6 32 -15 76 -15 110c0 39 22 50 43 50c24 0 43 -14 43 -50c0 -34 -9 -83 -14 -110c-5 -22 -13 -68 -15 -99c19 2 28 3 60 11 c36 10 64 17 88 17c44 0 47 -35 47 -43'], + 0xE006: [705,205,667,125,543,'543 478c0 -24 -13 -43 -48 -43c-13 0 -28 0 -82 15c-10 2 -40 10 -64 13c2 -22 3 -32 13 -75c7 -29 15 -65 15 -90c0 -46 -36 -48 -43 -48c-5 0 -43 1 -43 48c0 28 9 68 16 93c9 39 11 55 12 72c-24 -3 -55 -11 -63 -13c-55 -15 -70 -15 -83 -15c-37 0 -48 21 -48 43 c0 24 19 43 43 43c26 0 52 -6 87 -16c10 -2 40 -10 64 -13c-2 22 -3 32 -13 75c-7 29 -15 65 -15 90c0 46 36 48 43 48c5 0 43 -1 43 -48c0 -28 -9 -68 -16 -93c-9 -39 -11 -55 -12 -72c24 3 54 11 62 13c36 10 62 16 89 16c25 0 43 -19 43 -43zM543 22c0 -8 -3 -43 -47 -43 c-24 0 -52 7 -88 17c-31 8 -42 9 -59 11c1 -17 2 -29 12 -68c8 -31 16 -69 16 -96c0 -46 -36 -48 -43 -48c-5 0 -43 1 -43 48c0 30 10 71 17 98c9 36 10 53 11 66c-17 -2 -28 -3 -59 -11c-36 -10 -64 -17 -88 -17c-44 0 -47 35 -47 43s3 43 47 43c21 0 46 -5 83 -15 c36 -10 45 -11 64 -13c-1 17 -2 29 -12 68c-8 31 -16 69 -16 96c0 46 36 48 43 48c5 0 43 -1 43 -48c0 -30 -10 -71 -17 -98c-9 -36 -10 -53 -11 -66c17 2 28 3 59 11c36 10 64 17 88 17c44 0 47 -35 47 -43'], + 0xE007: [694,194,875,125,784,'784 666c0 -28 -27 -28 -40 -28h-64v-791c0 -14 0 -41 -28 -41s-28 27 -28 41v791h-87v-791c0 -14 0 -41 -28 -41s-28 27 -28 41v357c0 17 -1 18 -17 19c-166 9 -339 74 -339 235c0 154 161 236 309 236h310c13 0 40 0 40 -28'], + 0xE008: [441,10,1139,78,1060,'1060 216c0 -120 -88 -226 -214 -226c-148 0 -236 107 -285 167c-41 -53 -130 -167 -273 -167c-124 0 -210 108 -210 225c0 120 88 226 214 226c148 0 236 -107 285 -167c41 53 130 167 273 167c124 0 210 -108 210 -225zM1032 216c0 97 -71 187 -174 187 c-98 0 -187 -69 -248 -166c93 -112 159 -192 253 -192c87 0 169 71 169 171zM528 194c-93 112 -159 192 -253 192c-87 0 -169 -71 -169 -171c0 -97 71 -187 174 -187c98 0 187 69 248 166'], + 0xE009: [704,204,524,93,430,'430 -50c0 -84 -75 -154 -169 -154c-82 0 -153 52 -153 122c0 33 26 40 39 40c17 0 38 -12 38 -38c0 -10 -4 -33 -33 -38c24 -47 81 -58 108 -58c68 0 104 67 104 126c0 97 -88 132 -120 145c-69 28 -151 75 -151 162c0 52 32 120 117 146c-73 36 -117 84 -117 147 c0 84 75 154 169 154c82 0 153 -52 153 -122c0 -33 -26 -40 -39 -40c-17 0 -38 12 -38 38c0 10 4 33 33 38c-24 47 -81 58 -108 58c-68 0 -104 -67 -104 -126c0 -97 88 -132 120 -145c69 -28 151 -75 151 -162c0 -52 -32 -120 -117 -146c73 -36 117 -84 117 -147zM364 243 c0 56 -34 110 -105 140c-68 -4 -100 -72 -100 -126c0 -56 34 -110 105 -140c68 4 100 72 100 126'], + 0xE00A: [704,214,524,78,445,'445 431c0 -13 -6 -39 -42 -39c-23 0 -55 9 -75 14c-25 7 -37 10 -54 12c1 -17 2 -30 11 -71c15 -68 15 -75 15 -128c0 -134 -6 -287 -21 -420c-2 -13 -11 -13 -18 -13c-13 0 -16 4 -17 16c-14 141 -21 308 -21 417c0 53 0 60 15 128c9 41 10 54 11 71 c-8 -1 -24 -3 -54 -11c-23 -7 -53 -15 -75 -15c-36 0 -42 26 -42 39c0 7 3 38 42 38c23 0 55 -9 75 -14c25 -7 37 -10 54 -12c-1 14 -2 43 -12 103c-9 49 -14 89 -14 112c0 8 0 46 38 46c39 0 39 -37 39 -46c0 -24 -5 -66 -14 -112c-10 -60 -11 -89 -12 -103c8 1 24 3 54 11 c23 7 53 15 75 15c39 0 42 -31 42 -38'], + 0xE00B: [704,204,524,78,445,'445 477c0 -23 -14 -38 -43 -38c-12 0 -28 1 -69 12c-35 10 -41 11 -59 13c2 -25 3 -32 14 -85c4 -19 12 -57 12 -85c0 -38 -24 -44 -39 -44c-5 0 -38 0 -38 44c0 22 5 54 12 86c11 50 12 62 14 84c-18 -2 -25 -3 -62 -13c-23 -7 -46 -12 -66 -12c-32 0 -43 18 -43 38 c0 21 15 38 39 38c19 0 42 -4 73 -12c35 -10 41 -11 59 -13c-2 25 -3 32 -14 85c-4 19 -12 57 -12 85c0 38 24 44 39 44c5 0 38 0 38 -44c0 -22 -5 -54 -12 -86c-11 -50 -12 -62 -14 -84c20 2 24 2 61 13c22 6 48 12 71 12c24 0 39 -17 39 -38zM445 23c0 -13 -6 -39 -42 -39 c-23 0 -55 9 -75 14c-25 7 -37 10 -54 12c2 -26 3 -32 11 -73c7 -32 15 -70 15 -97c0 -38 -24 -44 -39 -44c-5 0 -38 0 -38 44c0 27 8 65 15 97c8 41 9 47 11 73c-8 -1 -24 -3 -54 -11c-23 -7 -53 -15 -75 -15c-36 0 -42 26 -42 39c0 7 3 38 42 38c23 0 55 -9 75 -14 c25 -7 37 -10 54 -12c-2 26 -3 32 -11 73c-7 32 -15 70 -15 97c0 38 24 44 39 44c5 0 38 0 38 -44c0 -27 -8 -65 -15 -97c-8 -41 -9 -47 -11 -73c8 1 24 3 54 11c23 7 53 15 75 15c39 0 42 -31 42 -38'], + 0xE00C: [694,194,708,78,660,'660 669c0 -24 -24 -24 -37 -24h-55v-802c0 -14 0 -37 -25 -37c-24 0 -24 24 -24 37v802h-77v-802c0 -14 0 -37 -25 -37c-24 0 -24 24 -24 37v383c-135 3 -315 72 -315 234c0 136 130 234 275 234h270c14 0 37 0 37 -25'], + 0xE00D: [485,-19,500,5,495,'495 304c0 -14 -91 -51 -135 -70c-17 -8 -34 -18 -52 -24l80 -146l11 -20c3 -4 5 -8 6 -13v-3c0 -6 -4 -9 -10 -9h-3c-5 1 -9 6 -13 10c-43 43 -117 135 -129 135c-4 0 -8 -6 -11 -9l-98 -104c-9 -10 -24 -30 -33 -32h-3c-6 0 -10 3 -10 9v3c1 5 3 9 6 13l11 20l80 146 c-18 6 -35 16 -52 24c-44 19 -135 56 -135 70c0 7 4 11 11 11c3 0 8 -1 8 -1c64 -11 126 -26 190 -36c5 53 13 106 20 159c1 16 1 48 16 48h2c13 0 11 -32 14 -47l20 -160c52 8 103 20 155 29c14 3 29 8 43 8c7 0 11 -4 11 -11'], + 0xE00E: [-66,290,500,206,294,'294 -145c0 -86 -59 -145 -68 -145c-4 0 -8 3 -8 8c0 3 1 4 5 8c33 36 54 81 53 141c-8 -8 -19 -12 -30 -12c-27 0 -40 20 -40 39c0 20 14 40 40 40c30 0 48 -31 48 -79'], + 0xE00F: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM643 342c0 166 -135 301 -301 301c-167 0 -302 -135 -302 -301c0 -167 135 -302 302 -302c166 0 301 135 301 302zM529 342c0 -114 -89 -201 -191 -201 c-90 0 -144 77 -144 141c0 5 0 9 7 9c6 0 6 -3 7 -9c4 -78 63 -124 123 -124c34 0 142 19 142 183c0 165 -108 184 -141 184c-60 0 -109 -50 -121 -131c-1 -7 -1 -9 -8 -9c-9 0 -9 2 -9 13v131c0 9 0 13 6 13c0 0 4 0 9 -7l27 -40c21 19 49 47 102 47 c103 0 191 -88 191 -200'], + 0xE010: [697,-511,500,80,372,'372 523c-4 -3 -19 -11 -21 -12l-92 126c-9 12 -12 16 -12 26c0 18 18 34 37 34c23 0 29 -17 34 -29zM205 523c-4 -3 -19 -11 -21 -12l-92 126c-9 12 -12 16 -12 26c0 18 18 34 37 34c23 0 29 -17 34 -29'], + 0xE011: [603,25,500,44,455,'455 359c0 -16 -7 -18 -17 -18c-10 1 -20 2 -30 2c-45 0 -91 4 -137 4c0 -108 2 -219 11 -327c1 -8 2 -17 2 -25v-12c-2 -5 -6 -7 -11 -8h-43c-10 0 -16 4 -16 14c0 4 1 9 1 12c10 114 13 232 13 346l-120 -3c-17 -1 -34 -3 -51 -3h-3c-9 2 -10 11 -10 19v8 c0 17 7 19 17 19c10 -1 20 -2 30 -2c45 0 91 -4 137 -4c0 67 -3 135 -13 201v8c0 9 6 13 14 13h44c8 -1 12 -7 12 -16c0 -7 -2 -14 -3 -20c-8 -62 -11 -124 -11 -186l120 3c16 1 33 3 49 3c13 0 15 -7 15 -17v-11'], + 0xE012: [-94,200,278,85,192,'192 -147c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53'], + 0xE013: [705,0,816,27,791,'791 0c-29 2 -58 3 -87 3l-108 -3v31c19 0 36 4 36 23c0 18 -42 74 -119 180l-64 -55v-103c0 -45 11 -45 78 -45v-31l-111 3l-111 -3v31c67 0 78 0 78 45v324h-211v-324c0 -45 11 -45 78 -45v-31l-111 3l-111 -3v31c67 0 78 0 78 45v324h-79v31h79v114 c0 104 109 160 214 160c11 0 52 0 84 -14c4 -2 5 -3 9 -3l36 6v-482l144 124c8 7 22 19 22 39c0 13 -10 24 -29 25v31c14 -1 76 -3 112 -3c28 0 41 0 70 3v-31c-21 -1 -63 -3 -126 -54c-10 -8 -81 -68 -81 -72c0 -3 5 -9 6 -11l127 -179c38 -53 60 -53 97 -53v-31zM383 431 v164c-17 6 -25 21 -25 39c0 26 16 36 25 40c-28 9 -55 9 -64 9c-74 0 -150 -46 -150 -139v-113h214'], + 0xE014: [705,22,1111,56,1055,'499 186c0 -110 -80 -208 -197 -208c-89 0 -153 36 -184 70c-33 -53 -36 -57 -36 -57c-7 -11 -8 -13 -15 -13c-11 0 -11 7 -11 24v200c0 18 0 25 13 25c3 0 11 0 12 -10c1 -36 4 -100 62 -154c53 -49 129 -54 158 -54c84 0 134 72 134 143c0 33 -10 66 -31 92 c-28 37 -58 44 -85 51c-70 17 -121 29 -132 33c-78 27 -131 100 -131 183c0 106 84 194 195 194c89 0 130 -41 160 -70l35 57c7 12 8 13 15 13c11 0 11 -7 11 -24v-201c0 -19 0 -24 -13 -24c-11 0 -11 6 -12 12c-6 45 -28 209 -195 209c-78 0 -132 -61 -132 -131 c0 -58 39 -112 101 -127l128 -31c84 -20 150 -102 150 -202zM1055 186c0 -110 -80 -208 -197 -208c-89 0 -153 36 -184 70c-33 -53 -36 -57 -36 -57c-7 -11 -8 -13 -15 -13c-11 0 -11 7 -11 24v200c0 18 0 25 13 25c3 0 11 0 12 -10c1 -36 4 -100 62 -154 c53 -49 129 -54 158 -54c84 0 134 72 134 143c0 33 -10 66 -31 92c-28 37 -58 44 -85 51c-70 17 -121 29 -132 33c-78 27 -131 100 -131 183c0 106 84 194 195 194c89 0 130 -41 160 -70l35 57c7 12 8 13 15 13c11 0 11 -7 11 -24v-201c0 -19 0 -24 -13 -24 c-11 0 -11 6 -12 12c-6 45 -28 209 -195 209c-78 0 -132 -61 -132 -131c0 -58 39 -112 101 -127l128 -31c84 -20 150 -102 150 -202'], + 0xE015: [709,-500,500,153,347,'347 642c0 -19 -12 -35 -30 -43c-40 -20 -64 -42 -64 -70v-19c0 -6 -4 -10 -10 -10c-5 0 -10 4 -10 10v19c0 33 20 63 48 86c8 6 12 16 12 27c0 19 -1 29 -8 35c-11 10 -27 13 -42 13c-23 0 -43 -7 -56 -18c14 -2 25 -13 25 -30c0 -18 -14 -29 -29 -29 c-16 0 -30 11 -30 30c0 41 43 66 90 66c29 0 54 -4 75 -16c18 -11 29 -30 29 -51'], + 0xE016: [746,50,1000,-12,1011,'1011 692c0 -29 -4 -60 -9 -89c-59 -373 -385 -653 -754 -653c-63 0 -127 7 -188 21c-27 8 -72 12 -72 35c0 32 5 65 10 96c59 356 354 608 694 641c18 1 35 1 53 3h12c84 0 254 -22 254 -54zM537 688c-9 -4 -18 -6 -27 -9c-65 -25 -127 -55 -184 -96 c-25 -18 -65 -41 -65 -67c0 -5 1 -10 1 -14v-304l199 138l75 54zM735 163l-480 -1l-227 -157c68 -19 138 -31 208 -31h6c177 0 368 70 493 189zM899 371l-344 -1l-265 -183h463c28 0 120 125 146 184zM971 691c-70 20 -143 31 -215 31c-51 0 -104 -6 -153 -17 c-14 -3 -28 -8 -42 -10v-289l77 53zM238 209v300c-94 -95 -164 -208 -200 -337c-14 -49 -18 -97 -25 -147l160 111l63 46zM986 671l-397 -276h298c3 0 8 -1 13 -1c32 0 68 150 78 210c4 22 4 45 8 67'], + 0xE017: [347,56,392,57,334,'334 145c0 -112 -57 -201 -130 -201c-75 0 -147 81 -147 202c0 117 71 201 147 201c71 0 130 -87 130 -202zM309 146c0 105 -51 179 -104 179c-21 0 -86 -13 -86 -180c0 -166 66 -179 86 -179c52 0 104 72 104 180'], + 0xE018: [277,-255,750,0,749,'749 255h-749v22h749v-22'], + 0xE019: [114,0,556,0,555,'555 97l-54 -44c-17 -14 -37 -25 -57 -35c-22 -10 -48 -18 -73 -18c-40 0 -71 17 -100 34c-35 20 -64 37 -104 37c-51 0 -104 -30 -153 -71l-14 17l54 44c17 14 37 25 57 35c22 10 48 18 73 18c40 0 71 -17 100 -34c35 -20 64 -37 104 -37c51 0 104 30 153 71'], + 0xE01A: [278,-256,667,0,666,'666 256h-666v22h666v-22'], + 0xE01B: [-131,162,500,70,431,'431 -162h-361v31h361v-31'], + 0xE01C: [716,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283'], + 0xE01D: [448,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120'], + 0xE01E: [698,-502,681,262,496,'496 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE01F: [683,0,1178,72,1114,'1114 271l-50 -271h-605v44h18c65 0 65 9 65 40v222h-202l-92 -201c-2 -5 -5 -10 -5 -17c0 -22 24 -44 74 -44v-44c-43 3 -87 4 -130 4c-37 0 -79 -1 -115 -4v44c86 0 114 30 128 61l244 532c-7 2 -9 2 -22 2h-61v44h686l33 -238h-42c-19 135 -42 194 -208 194h-139 c-49 0 -49 -7 -49 -38v-251h110c101 0 123 24 123 117h42v-278h-42c0 93 -22 117 -123 117h-110v-224c0 -31 0 -38 49 -38h148c175 0 205 70 233 227h42zM542 350v247c0 20 0 39 -51 39l-130 -286h181'], + 0xE020: [448,11,958,86,894,'894 119c0 -21 -49 -130 -192 -130c-115 0 -187 62 -208 85c-23 -38 -87 -85 -214 -85c-70 0 -194 15 -194 110c0 79 90 114 144 129c81 23 156 25 204 26v42c0 72 -52 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c140 0 193 -66 201 -76c32 35 98 76 188 76c158 0 207 -112 207 -199c0 -24 -9 -24 -30 -24h-341c0 -169 128 -200 184 -200s118 27 143 93c6 13 7 18 23 18c5 0 21 0 21 -17zM817 256c-1 28 -7 159 -132 159c-49 0 -146 -30 -160 -159h292zM448 133 c0 9 -1 16 -4 24c-10 32 -10 52 -10 66c-59 -3 -106 -7 -159 -26c-56 -19 -97 -52 -97 -97c0 -50 55 -78 112 -78c74 0 158 38 158 111'], + 0xE021: [716,22,1028,80,936,'936 387c-94 0 -129 -40 -134 -45l-41 -53c-47 -63 -102 -132 -174 -195c43 -36 100 -72 169 -72c45 0 128 20 132 99h42c-3 -94 -90 -143 -177 -143c-107 0 -191 50 -226 71c-41 -26 -117 -71 -221 -71c-120 0 -226 56 -226 155c0 58 38 89 76 119l119 95 c-20 43 -45 119 -45 198c0 111 94 171 173 171c83 0 118 -81 118 -136c0 -78 -121 -174 -161 -206c43 -88 114 -172 197 -253c58 51 118 117 185 210c3 3 8 10 8 21c0 22 -25 35 -64 35v44c32 -2 88 -4 139 -4c42 0 67 0 111 4v-44zM479 580c0 41 -22 103 -74 103 c-30 0 -93 -22 -93 -113c0 -14 0 -84 35 -164c96 81 132 131 132 174zM492 75c-121 89 -190 217 -203 242c-9 -9 -11 -9 -34 -27c-37 -30 -75 -61 -75 -129s51 -139 138 -139c62 0 121 21 174 53'], + 0xE022: [716,245,981,71,909,'909 0l-135 4c-104 -64 -101 -180 13 -187c34 -1 69 19 82 62c6 20 37 7 33 -14c-15 -67 -80 -110 -140 -110c-76 0 -128 62 -127 109c0 54 43 109 86 140c-43 0 -92 -3 -121 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17 c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283'], + 0xE023: [448,245,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-5 0 -9 0 -13 1c-103 -64 -98 -171 16 -178c34 -1 69 19 82 62c6 20 37 7 33 -14c-15 -67 -80 -110 -140 -110c-76 0 -128 62 -127 109c0 54 55 119 98 150c-16 15 -25 37 -27 57c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116 c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98 c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120'], + 0xE024: [744,-562,556,-5,561,'561 584l-12 -22l-272 123l-271 -123l-11 22l283 160'], + 0xE025: [307,-193,556,0,555,'555 290l-54 -44c-17 -14 -37 -25 -57 -35c-22 -10 -48 -18 -73 -18c-40 0 -71 17 -100 34c-35 20 -64 37 -104 37c-51 0 -104 -30 -153 -71l-14 17l54 44c17 14 37 25 57 35c22 10 48 18 73 18c40 0 71 -17 100 -34c35 -20 64 -37 104 -37c51 0 104 30 153 71'], + 0xE026: [705,11,1028,97,930,'930 73c0 -5 -3 -11 -10 -13c-9 -4 -182 -71 -400 -71c-259 0 -423 178 -423 358c0 191 179 358 417 358c228 0 416 -158 416 -361c0 -54 -11 -218 -135 -218c-9 0 -98 0 -119 67c-6 -6 -64 -67 -164 -67c-135 0 -248 98 -248 221c0 122 113 221 248 221 c70 0 133 -29 179 -84h42c29 0 30 -2 30 -29v-234c0 -12 0 -62 39 -62c86 0 86 157 86 183c0 191 -173 330 -375 330c-211 0 -374 -150 -374 -325c0 -164 149 -325 380 -325c88 0 202 13 330 57c23 8 25 8 40 8h13c15 0 28 0 28 -14zM674 254v186c-42 71 -110 95 -159 95 c-91 0 -162 -85 -162 -188s71 -188 162 -188c49 0 117 23 159 95'], + 0xE027: [683,0,935,87,837,'837 185c0 -99 -121 -185 -275 -185h-475v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44h442c149 0 273 -78 273 -171c0 -80 -98 -138 -199 -154c162 -21 234 -102 234 -173zM693 511c0 62 -64 128 -171 128h-177c-49 0 -49 -7 -49 -38v-229h199 c110 0 198 66 198 139zM724 186c0 65 -58 153 -192 153h-236v-257c0 -31 0 -38 49 -38h179c117 0 200 67 200 142'], + 0xE028: [694,11,750,76,677,'677 216c0 -125 -123 -227 -275 -227c-63 0 -124 24 -167 70c-4 -6 -8 -13 -11 -19c-7 -13 -15 -27 -23 -40h-42v583c0 49 -9 56 -83 56v44l168 11v-308c54 42 117 56 171 56c151 0 262 -106 262 -226zM577 216c0 106 -51 193 -169 193c-60 0 -126 -26 -160 -75v-228 c28 -46 80 -84 148 -84c48 0 97 18 129 48c39 37 52 88 52 146'], + 0xE029: [694,11,750,76,677,'677 216c0 -125 -123 -227 -275 -227c-63 0 -124 24 -167 70c-4 -6 -8 -13 -11 -19c-7 -13 -15 -27 -23 -40h-42v463l-48 -35c-4 -2 -8 -4 -13 -4c-12 0 -22 10 -22 22c0 7 4 14 9 18l74 54v65c0 49 -9 56 -83 56v44l168 11v-114l105 77c4 3 8 4 13 4c12 0 22 -10 22 -22 c0 -7 -3 -13 -9 -17l-131 -96v-140c54 42 117 56 171 56c151 0 262 -106 262 -226zM577 216c0 106 -51 193 -169 193c-60 0 -126 -26 -160 -75v-228c28 -46 80 -84 148 -84c48 0 97 18 129 48c39 37 52 88 52 146'], + 0xE02A: [494,-10,680,87,592,'592 305c0 -15 -18 -19 -29 -25c-50 -24 -103 -51 -155 -74l76 -140c5 -12 18 -27 18 -39c0 -9 -7 -17 -15 -17c-18 0 -110 98 -147 146h-1c-32 -41 -75 -79 -112 -118c-7 -7 -20 -28 -35 -28c-8 0 -15 8 -15 17c0 12 13 27 18 39l76 140l-60 29c-43 20 -124 50 -124 70 c0 8 7 17 16 17c4 0 8 -1 11 -2c44 -10 88 -16 132 -24l35 -6c3 -1 7 -2 10 -2c11 0 9 24 12 40l17 130c2 13 1 36 20 36c12 0 17 -13 17 -24l19 -142c3 -13 1 -40 12 -40c3 0 7 1 10 2l35 6l104 19c12 3 28 7 39 7c9 0 16 -9 16 -17'], + 0xE02B: [690,-511,681,150,530,'530 690c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127c67 0 154 38 157 127h33'], + 0xE02C: [750,250,458,201,257,'257 342c0 -14 -14 -22 -28 -22s-28 8 -28 22v367c0 14 0 41 28 41s28 -27 28 -41v-367zM257 -209c0 -14 0 -41 -28 -41s-28 27 -28 41v367c0 14 14 22 28 22s28 -8 28 -22v-367'], + 0xE02D: [705,22,958,97,860,'860 234c0 -133 -137 -256 -330 -256c-243 0 -433 166 -433 364c0 196 190 363 432 363c99 0 176 -37 237 -89l59 77c6 8 9 12 19 12c16 0 16 -11 16 -28v-234c0 -21 0 -28 -22 -28c-8 0 -20 0 -22 12c-32 186 -179 234 -269 234c-145 0 -333 -81 -333 -319 c0 -242 192 -320 334 -320c117 0 262 64 270 216c1 17 10 17 21 17c17 0 21 -5 21 -21'], + 0xE02E: [448,11,611,72,547,'547 120c0 -9 -34 -131 -207 -131c-151 0 -268 103 -268 227c0 100 84 232 280 232c70 0 181 -3 181 -88c0 -38 -29 -54 -53 -54c-28 0 -53 20 -53 53c0 18 8 34 22 44c-35 9 -63 9 -93 9c-31 0 -90 0 -138 -54c-37 -42 -46 -97 -46 -141c0 -134 95 -192 181 -192 c44 0 117 11 151 94c5 12 6 15 22 15c6 0 21 0 21 -14'], + 0xE02F: [688,-512,681,188,492,'492 674l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE030: [705,200,958,97,860,'860 234c0 -124 -119 -239 -291 -254v-46c67 0 142 -9 142 -67c0 -67 -184 -67 -325 -67h-42v42h21c102 0 246 0 246 25s-72 25 -126 25v88c-221 19 -388 176 -388 362c0 196 190 363 432 363c99 0 176 -37 237 -89l59 77c6 8 9 12 19 12c16 0 16 -11 16 -28v-234 c0 -21 0 -28 -22 -28c-8 0 -20 0 -22 12c-32 186 -179 234 -269 234c-145 0 -333 -81 -333 -319c0 -242 192 -320 334 -320c117 0 262 64 270 216c1 17 10 17 21 17c17 0 21 -5 21 -21'], + 0xE031: [448,200,611,72,547,'547 120c0 -8 -29 -113 -169 -129v-57c67 0 142 -9 142 -67c0 -67 -184 -67 -325 -67h-42v42h21c102 0 246 0 246 25s-71 25 -126 25v100c-128 19 -222 113 -222 224c0 100 84 232 280 232c70 0 181 -3 181 -88c0 -38 -29 -54 -53 -54c-28 0 -53 20 -53 53 c0 18 8 34 22 44c-35 9 -63 9 -93 9c-31 0 -90 0 -138 -54c-37 -42 -46 -97 -46 -141c0 -134 95 -192 181 -192c44 0 117 11 151 94c5 12 6 15 22 15c6 0 21 0 21 -14'], + 0xE032: [6,200,611,122,489,'489 -133c0 -67 -184 -67 -325 -67h-42v42h21c102 0 246 0 246 25s-71 25 -125 25v114h84v-72c67 0 141 -9 141 -67'], + 0xE033: [497,66,611,72,547,'547 120c0 -9 -32 -122 -189 -131v-33c0 -12 -10 -22 -22 -22s-22 10 -22 22v34c-138 11 -242 109 -242 226c0 93 73 214 242 230v29c0 12 10 22 22 22s22 -10 22 -22v-27c70 0 175 -5 175 -88c0 -38 -29 -54 -53 -54c-28 0 -53 20 -53 53c0 18 8 34 22 44 c-34 9 -62 9 -91 9v-387c44 1 113 14 146 94c5 12 6 15 22 15c6 0 21 0 21 -14zM314 29v381c-30 -5 -65 -17 -96 -52c-37 -42 -46 -97 -46 -141c0 -114 69 -173 142 -188'], + 0xE034: [688,-512,681,188,492,'492 526l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE035: [431,0,403,140,262,'262 370c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61zM262 61c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE036: [749,66,958,97,860,'860 234c0 -129 -128 -248 -311 -256v-22c0 -12 -10 -22 -22 -22s-22 10 -22 22v23c-231 10 -408 172 -408 363c0 189 178 352 408 362v23c0 12 10 22 22 22s22 -10 22 -22v-23c89 -4 160 -40 217 -88l59 77c6 8 9 12 19 12c16 0 16 -11 16 -28v-234c0 -21 0 -28 -22 -28 c-8 0 -20 0 -22 12c-32 185 -177 233 -267 234v-639c117 0 261 64 269 216c1 17 10 17 21 17c17 0 21 -5 21 -21zM505 24v635c-137 -15 -291 -101 -291 -317c0 -218 156 -303 291 -318'], + 0xE037: [-66,303,681,289,391,'391 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE038: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM627 342c0 157 -128 285 -285 285c-158 0 -286 -128 -286 -285c0 -158 128 -286 286 -286c157 0 285 128 285 286zM525 342c0 -85 -82 -156 -185 -156 c-83 0 -141 53 -141 110c0 7 1 9 9 9c4 0 8 0 9 -8c3 -64 65 -92 115 -92c61 0 143 34 143 137c0 101 -81 136 -143 136c-38 0 -101 -20 -114 -100c-1 -5 -6 -5 -10 -5c-9 0 -9 3 -9 12v100c0 7 0 12 7 12c4 0 5 -2 8 -5l25 -33c26 22 59 38 101 38c103 0 185 -71 185 -155'], + 0xE039: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM627 342c0 157 -128 285 -285 285c-158 0 -286 -128 -286 -285c0 -158 128 -286 286 -286c157 0 285 128 285 286zM484 296c0 -57 -58 -109 -140 -109 c-104 0 -185 70 -185 155c0 84 81 155 184 155c42 0 75 -16 101 -38l26 33c2 3 3 5 8 5c6 0 6 -5 6 -12v-100c0 -9 0 -12 -9 -12c-3 0 -8 0 -9 5c-14 80 -77 100 -115 100c-62 0 -142 -35 -142 -136c0 -103 82 -137 142 -137c50 0 112 28 116 92c0 8 4 8 9 8c7 0 8 -2 8 -9'], + 0xE03A: [553,53,1028,210,817,'809 -45c-20 -19 -39 0 -49 10l-82 81c-45 -36 -102 -58 -164 -58s-120 22 -164 58l-83 -82c-9 -9 -28 -28 -48 -9c-20 20 -1 39 8 49l83 82c-36 45 -58 102 -58 164s22 119 58 164l-82 82c-10 10 -29 29 -9 49s39 1 49 -9l82 -82c45 36 102 58 164 58s119 -22 164 -58 l82 82c9 9 28 28 48 9c20 -20 1 -39 -8 -49l-83 -82c37 -45 58 -102 58 -164s-21 -119 -57 -164l82 -82c9 -10 29 -29 9 -49zM719 250c0 114 -92 206 -205 206c-114 0 -206 -92 -206 -206s92 -206 206 -206c113 0 205 92 205 206'], + 0xE03B: [683,0,1004,85,906,'906 336c0 -185 -169 -336 -381 -336h-440v44c22 0 54 0 76 2c35 3 35 16 35 41v509c0 25 0 38 -35 41c-22 2 -52 2 -76 2v44h440c214 0 381 -160 381 -347zM793 336c0 131 -43 190 -80 227c-27 26 -98 76 -217 76h-147c-51 0 -51 -6 -51 -40v-515c0 -34 0 -40 51 -40 h147c116 0 187 44 220 75c57 55 77 129 77 217'], + 0xE03C: [694,11,750,72,673,'673 0l-172 -11v60c-28 -24 -85 -60 -167 -60c-149 0 -262 105 -262 226c0 126 124 227 274 227c83 0 137 -35 159 -54v195c0 49 -9 56 -83 56v44l168 11v-594c0 -49 9 -56 83 -56v-44zM501 109v226c-48 68 -119 74 -148 74c-49 0 -101 -19 -136 -55 c-43 -46 -45 -112 -45 -139c0 -31 3 -88 35 -129c33 -44 83 -64 133 -64c39 0 113 13 161 87'], + 0xE03D: [698,-503,681,127,496,'496 528l-34 -25l-109 113c-9 9 -18 22 -18 36c0 24 25 46 48 46c25 0 35 -19 41 -30zM288 528l-34 -25l-109 113c-9 9 -18 22 -18 36c0 24 25 46 48 46c25 0 35 -19 41 -30'], + 0xE03E: [683,-336,510,82,429,'429 510c0 -96 -78 -174 -174 -174s-173 78 -173 174s77 173 173 173s174 -77 174 -173zM373 510c0 65 -53 117 -118 117s-117 -52 -117 -117s52 -118 117 -118s118 53 118 118'], + 0xE03F: [603,25,680,81,626,'626 360c0 -13 -2 -25 -20 -25c-25 0 -52 1 -77 4c-53 3 -106 3 -159 3l5 -199c2 -50 9 -100 9 -150c0 -10 -6 -18 -20 -18h-47c-17 0 -22 8 -22 22c0 8 1 16 2 23c4 107 12 215 12 322c-69 0 -139 -7 -208 -7c-18 0 -20 13 -20 25v17c0 12 7 20 19 20c26 0 54 -2 80 -4 l129 -3c0 49 -3 98 -8 147c-1 15 -6 32 -6 47c0 12 8 19 19 19h46c12 0 24 -3 24 -19c0 -5 -1 -10 -2 -15c-8 -59 -12 -119 -12 -179h68c57 0 112 7 168 7c12 0 20 -7 20 -19v-18'], + 0xE040: [655,-545,681,184,496,'294 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM496 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE041: [751,-1,680,98,582,'582 723c0 -15 -15 -32 -23 -46l-43 -70l-351 -567c-9 -15 -18 -38 -38 -39h-1c-16 0 -28 14 -28 29c0 18 18 38 28 54l388 628c8 14 17 35 34 38c2 1 6 1 6 1c15 0 28 -13 28 -28zM286 663c0 -35 -26 -73 -70 -73h-5c-46 0 -69 40 -69 71c0 35 26 73 70 73h5 c46 0 69 -40 69 -71zM537 91c0 -35 -26 -73 -70 -73h-5c-46 0 -69 40 -69 71c0 35 26 73 70 73h5c46 0 69 -40 69 -71'], + 0xE042: [606,104,680,-211,890,'228 251c0 -118 -99 -216 -218 -216c-120 0 -221 99 -221 217c0 127 104 203 207 214c5 0 11 1 16 1c133 0 216 -113 216 -216zM890 250c0 -124 -108 -214 -221 -214c-134 0 -218 109 -218 215c0 125 97 203 200 215c5 1 11 1 16 1c129 0 223 -105 223 -217zM384 -82 c0 -14 -4 -22 -24 -22h-50c-10 2 -15 10 -15 19c0 3 0 7 1 10l2 31l10 346c0 86 -2 173 -10 259c-1 7 -3 16 -3 24c0 9 3 17 12 20c3 1 7 1 11 1h51c9 -2 15 -10 15 -18c0 -3 -1 -6 -1 -9c-8 -88 -13 -175 -13 -263c0 -125 3 -250 12 -375c0 -6 2 -15 2 -23zM829 250 c0 91 -70 154 -160 154c-103 0 -170 -65 -170 -156v-8c11 -96 86 -142 167 -142c96 0 163 63 163 152zM180 254c0 89 -76 150 -167 150c-83 0 -162 -49 -162 -154c0 -101 77 -152 159 -152c94 0 161 56 169 141c1 5 1 10 1 15'], + 0xE043: [750,56,681,97,583,'583 199c0 -103 -90 -199 -221 -209v-46h-44v46c-132 4 -221 79 -221 191c0 54 42 58 53 58c28 0 53 -20 53 -53c0 -20 -11 -52 -55 -53c19 -56 78 -94 170 -99v277c-63 13 -110 23 -157 64c-40 36 -64 81 -64 133c0 104 98 188 221 196v46h44v-27c0 -17 1 -18 5 -19 c39 -3 216 -17 216 -178c0 -49 -37 -57 -53 -57c-30 0 -53 21 -53 53c0 14 6 50 54 53c-11 28 -47 80 -169 85v-250c52 -9 108 -20 161 -73c39 -38 60 -86 60 -138zM318 419v241c-90 -7 -155 -61 -155 -120c0 -91 120 -114 155 -121zM517 168c0 30 -17 112 -155 134v-268 c94 9 155 70 155 134'], + 0xE044: [661,-539,403,140,262,'262 600c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE045: [-78,200,403,140,262,'262 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE046: [442,0,403,83,326,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44'], + 0xE047: [442,205,438,-10,294,'294 -43c0 -103 -83 -162 -167 -162c-70 0 -137 26 -137 87c0 32 24 53 53 53c30 0 53 -21 53 -53c0 -28 -19 -42 -24 -45c18 -6 41 -9 54 -9c60 0 83 67 83 128v374c0 50 -10 57 -92 57v44l177 11v-485'], + 0xE048: [679,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42'], + 0xE049: [448,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303'], + 0xE04A: [666,22,681,80,600,'600 171c0 -118 -121 -193 -261 -193c-126 0 -259 56 -259 176c0 82 60 141 166 182c-52 27 -131 68 -131 160c0 100 102 170 226 170c109 0 224 -48 224 -152c0 -57 -33 -110 -136 -153c67 -30 171 -81 171 -190zM503 513c0 76 -84 115 -164 115s-162 -29 -162 -93 c0 -24 13 -50 56 -72l144 -74c9 -5 11 -5 11 -5s115 41 115 129zM531 135c0 54 -51 81 -87 100l-155 79c-32 -14 -140 -60 -140 -159c0 -91 101 -136 192 -136c89 0 190 35 190 116'], + 0xE04B: [283,-250,1361,56,1304,'1304 250h-1248v33h1248v-33'], + 0xE04C: [283,-250,681,28,652,'652 250h-624v33h624v-33'], + 0xE04D: [705,22,981,77,933,'933 342c0 -187 -107 -364 -279 -364c-28 0 -51 23 -51 50c0 28 23 51 51 51c27 0 49 -22 50 -49c90 37 113 179 113 312c0 170 -116 321 -278 321c-97 0 -191 -38 -239 -105v-473c0 -31 0 -41 84 -41h33v-44l-170 4l-170 -4v44h33c84 0 84 10 84 41v513 c0 31 0 41 -84 41h-33v44l170 -4c18 0 35 1 53 4v-65c59 55 147 87 239 87c212 0 394 -157 394 -363'], + 0xE04E: [442,216,675,82,600,'600 84c0 -149 -57 -300 -187 -300c-25 0 -44 19 -44 44c0 24 19 44 44 44c20 0 38 -15 42 -35c56 36 56 148 56 247v219c0 64 -17 106 -91 106c-62 0 -166 -38 -166 -151v-174c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18 c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l164 11v-98c23 39 79 98 186 98c93 0 168 -30 168 -140v-218'], + 0xE04F: [679,245,900,83,836,'836 271l-50 -271h-122c-93 -76 -101 -176 13 -183c34 -1 69 19 82 62c6 20 37 7 33 -14c-15 -67 -80 -110 -140 -110c-76 0 -128 62 -127 109c0 54 43 105 86 136h-528v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194 h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186c191 0 230 63 259 227h42'], + 0xE050: [448,245,611,65,547,'547 119c0 -16 -34 -96 -139 -122c-104 -64 -105 -173 9 -180c34 -1 69 19 82 62c6 20 37 7 33 -14c-15 -67 -80 -110 -140 -110c-76 0 -128 62 -127 109c0 48 30 93 68 125c-149 3 -268 106 -268 231c0 119 107 228 259 228c187 0 223 -132 223 -199 c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303'], + 0xE051: [701,10,895,63,831,'831 122c0 -8 -4 -14 -8 -20c-74 -107 -215 -112 -330 -112c-27 0 -53 1 -80 5c-186 24 -350 168 -350 352c0 225 213 354 403 354c75 0 152 -14 217 -52c100 -60 148 -170 148 -281v-6c0 -17 -9 -22 -23 -22h-628c0 -206 155 -313 330 -313c82 0 208 4 270 86 c9 11 13 25 30 25c10 0 20 -6 21 -16zM725 372c0 77 -19 162 -73 220c-47 51 -117 75 -186 75c-178 0 -285 -147 -285 -295h544'], + 0xE052: [683,0,1004,85,906,'906 336c0 -185 -169 -336 -381 -336h-440v44c22 0 54 0 76 2c35 3 35 16 35 41v233h-111v44h111v232c0 25 0 38 -35 41c-22 2 -52 2 -76 2v44h440c214 0 381 -160 381 -347zM793 336c0 131 -43 190 -80 227c-27 26 -98 76 -217 76h-147c-51 0 -51 -6 -51 -40v-235h204 v-44h-204v-236c0 -34 0 -40 51 -40h147c116 0 187 44 220 75c57 55 77 129 77 217'], + 0xE053: [710,11,681,65,614,'614 218c0 -138 -131 -229 -275 -229c-154 0 -274 102 -274 224c0 127 122 234 272 234c94 0 152 -60 175 -92c-9 97 -61 180 -136 235l-110 -64l-21 38l90 52c-56 31 -121 48 -190 48l3 42c86 0 170 -21 243 -57l106 61l21 -38l-83 -48c106 -68 179 -174 179 -302v-104z M514 216c0 106 -72 197 -175 197c-63 0 -108 -30 -131 -54c-39 -43 -43 -100 -43 -137c0 -34 4 -101 48 -145c45 -47 101 -51 127 -51c70 0 174 40 174 190'], + 0xE054: [716,0,403,140,262,'262 658l-39 -436c-1 -16 -2 -24 -22 -24s-21 8 -22 24l-37 410c-1 9 -2 22 -2 26c0 37 32 58 61 58s61 -21 61 -58zM262 61c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE055: [500,216,403,140,262,'262 439c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61zM262 -158c0 -37 -32 -58 -61 -58s-61 21 -61 58l39 436c1 16 2 24 22 24s21 -8 22 -24l37 -410c1 -9 2 -22 2 -26'], + 0xE056: [679,0,865,83,784,'784 441h-42c-20 155 -68 194 -227 194h-166c-49 0 -49 -7 -49 -38v-235h112c100 0 125 23 125 117h42v-278h-42c0 94 -25 117 -125 117h-112v-232c0 -32 0 -42 96 -42h43v-44c-56 4 -130 4 -187 4l-169 -4v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h668'], + 0xE057: [705,0,438,70,468,'468 627c0 -29 -19 -52 -52 -52c-31 0 -51 23 -51 51c0 21 10 33 16 39l2 2c0 3 -20 5 -27 5c-46 0 -108 -39 -108 -133v-108h146v-44h-142v-302c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-97v44h97v109c0 109 103 165 191 165 c67 0 110 -35 110 -78'], + 0xE058: [705,0,1152,63,1103,'1103 0c-36 3 -64 4 -102 4c-15 0 -83 -1 -124 -4v44c6 0 26 1 26 15c0 13 -12 25 -29 44l-114 123l-78 -53v-89c0 -31 0 -40 65 -40h18v-44c-42 3 -84 4 -126 4s-83 -1 -125 -4v44h18c65 0 65 9 65 40v303h-352v-302c0 -31 0 -41 77 -41h27v-44l-143 4 c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-97v44h97v109c0 109 179 165 301 165c55 0 113 -5 148 -16l73 5v-470l163 111c29 20 29 35 29 38c0 0 -1 12 -15 14v44c33 -2 93 -4 131 -4c12 0 49 0 85 4v-44c-19 0 -71 -2 -137 -42c-5 -2 -96 -64 -112 -75l164 -179 c43 -47 68 -47 113 -47v-44zM597 431v145c-24 5 -39 26 -39 50c0 21 10 33 16 39c-32 6 -108 7 -115 7c-68 0 -218 -39 -218 -133v-108h356'], + 0xE059: [705,0,875,70,906,'906 627c0 -29 -19 -52 -52 -52c-31 0 -51 23 -51 51c0 21 10 33 16 39l2 2c0 3 -20 5 -27 5c-46 0 -108 -39 -108 -133v-108h146v-44h-142v-302c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-353v-302c0 -31 0 -41 77 -41h27v-44 l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-97v44h97v109c0 109 163 165 311 165c143 0 184 -11 195 -37c36 24 81 37 123 37c67 0 110 -35 110 -78zM609 577c-21 7 -34 26 -34 49c0 21 10 33 16 39l2 2c0 3 -110 5 -117 5c-106 0 -228 -39 -228 -133v-108 h357v109c0 13 2 26 4 37'], + 0xE05A: [705,0,1230,70,1147,'1147 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56h-238v-302c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-333v-302c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18 c65 0 65 9 65 40v303h-97v44h97v109c0 109 133 165 256 165c53 0 147 -2 210 -39c6 -4 11 -9 14 -15c50 36 124 54 194 54c53 0 147 -2 210 -39c16 -11 23 -30 23 -50c0 -33 -27 -61 -61 -61c-31 0 -61 25 -61 61c0 16 6 30 15 41c-33 15 -124 15 -129 15 c-74 0 -172 -39 -172 -133v-108h242l164 11v-358c0 -40 8 -40 75 -40v-44zM586 556c-28 4 -52 28 -52 60c0 16 6 30 15 41c-33 15 -124 15 -129 15c-74 0 -172 -39 -172 -133v-108h337v109c0 5 0 11 1 16'], + 0xE05B: [705,0,1232,70,1160,'1160 0c-42 3 -84 4 -126 4s-83 -1 -125 -4v44h18c65 0 65 9 65 40v303h-332v-302c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-323v-302c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-97 v44h97v109c0 109 133 165 281 165c143 0 185 -11 196 -38c4 -7 4 -7 8 -19c62 38 132 57 204 57c55 0 113 -5 148 -16l73 5v-610c0 -31 0 -40 65 -40h18v-44zM992 431v145c-24 5 -39 26 -39 50c0 21 10 33 16 39c-32 6 -108 7 -115 7c-68 0 -198 -39 -198 -133v-108h336z M579 577c-21 7 -34 26 -34 49c0 21 10 33 16 39l2 2c0 3 -110 5 -117 5c-106 0 -198 -39 -198 -133v-108h327v109c0 13 2 26 4 37'], + 0xE05C: [705,0,840,70,764,'764 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56h-273v-302c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-97v44h97v109c0 109 168 165 291 165c53 0 147 -2 210 -39 c16 -11 23 -30 23 -50c0 -33 -27 -61 -61 -61c-31 0 -61 25 -61 61c0 16 6 30 15 41c-33 15 -124 15 -129 15c-74 0 -207 -39 -207 -133v-108h277l164 11v-358c0 -40 8 -40 75 -40v-44'], + 0xE05D: [666,22,681,91,589,'589 202c0 -124 -122 -224 -271 -224c-131 0 -227 83 -227 181c0 46 34 59 56 59c32 0 56 -24 56 -56c0 -23 -14 -53 -56 -56c31 -59 104 -87 169 -87c22 0 79 3 124 49c39 39 43 95 43 137c0 48 -5 93 -28 127c-14 21 -46 55 -104 55c-68 0 -121 -22 -159 -66 c-9 -11 -10 -13 -21 -13c-19 0 -19 13 -19 30v300c0 16 0 28 14 28c0 0 4 0 15 -4c53 -18 108 -28 165 -28c66 0 128 14 166 27c11 5 15 5 15 5c3 0 14 -2 14 -17c0 -22 -68 -65 -92 -77c-26 -14 -76 -34 -144 -34c-11 0 -56 0 -109 13v-180c43 33 94 49 157 49 c139 0 236 -105 236 -218'], + 0xE05E: [705,0,840,70,772,'772 0c-42 3 -84 4 -126 4s-83 -1 -125 -4v44h18c65 0 65 9 65 40v303h-352v-302c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-97v44h97v109c0 109 179 165 301 165c55 0 113 -5 148 -16l73 5v-610c0 -31 0 -40 65 -40h18v-44z M604 431v145c-24 5 -39 26 -39 50c0 21 10 33 16 39c-32 6 -108 7 -115 7c-68 0 -218 -39 -218 -133v-108h356'], + 0xE05F: [677,0,681,63,617,'617 163h-125v-78c0 -31 0 -41 87 -41h35v-44l-170 4l-170 -4v44h35c87 0 87 10 87 41v78h-333v44l370 455c11 14 12 15 32 15c26 0 27 -6 27 -30v-440h125v-44zM404 207v362l-294 -362h294'], + 0xE060: [705,22,1033,97,946,'946 234h-20c-67 0 -67 -9 -67 -40v-166c0 -15 0 -28 -14 -28c-8 0 -43 24 -67 55c-3 -5 -29 -41 -103 -61c-51 -14 -104 -16 -141 -16c-259 0 -437 175 -437 364c0 196 190 363 431 363c117 0 190 -50 237 -89l59 77c6 8 9 12 19 12c16 0 16 -11 16 -28v-234 c0 -21 0 -28 -22 -28c-8 0 -20 0 -22 12c-32 185 -179 234 -269 234c-145 0 -332 -81 -332 -319c0 -230 179 -320 347 -320c13 0 74 0 124 19c68 25 68 66 68 89v62c0 31 0 42 -106 42h-50v44c50 -4 144 -4 198 -4l151 4v-44'], + 0xE061: [453,206,681,63,635,'635 396c0 -20 -13 -37 -37 -37s-37 17 -37 37c0 14 5 20 8 24c-16 -1 -61 -2 -109 -31c12 -11 45 -46 45 -94c0 -77 -82 -147 -200 -147c-35 0 -74 6 -114 27c-3 1 -7 2 -7 2c-3 0 -13 -16 -13 -36c0 -19 11 -58 59 -66c5 -1 49 -1 74 -1c107 0 171 0 238 -32 c49 -24 75 -72 75 -117c0 -87 -143 -131 -277 -131c-145 0 -277 50 -277 129c0 53 58 85 108 98c-9 7 -43 40 -43 93c0 22 6 52 30 81c-15 12 -52 49 -52 100c0 77 82 147 200 147c62 0 107 -21 130 -35c53 41 106 46 130 46c48 0 69 -31 69 -57zM417 295 c0 56 -24 114 -112 114c-87 0 -111 -59 -111 -114c0 -56 24 -114 112 -114c87 0 111 59 111 114zM548 -77c0 75 -141 75 -241 75h-65c-75 0 -110 -43 -110 -74c0 -53 93 -97 208 -97c119 0 208 47 208 96'], + 0xE062: [705,22,1500,97,1402,'652 181c0 -104 -96 -203 -247 -203c-68 0 -161 12 -235 68c0 0 -34 -50 -39 -56c-6 -9 -8 -12 -18 -12c-16 0 -16 11 -16 28v192c0 21 0 29 21 29c20 0 20 -6 21 -23c3 -59 27 -104 75 -136c61 -40 145 -46 191 -46c116 0 186 71 186 142c0 68 -61 118 -128 134l-158 31 c-46 9 -96 19 -147 62c-31 26 -61 69 -61 125c0 101 102 189 244 189c91 0 154 -28 201 -71l39 58c9 13 15 13 20 13c16 0 16 -11 16 -28v-193c0 -21 0 -28 -21 -28c-15 0 -19 3 -22 17c-11 73 -54 191 -233 191c-109 0 -183 -63 -183 -129c0 -76 83 -113 123 -121 c10 -3 68 -14 124 -25c82 -16 136 -26 183 -72c18 -17 64 -61 64 -136zM1402 181c0 -104 -96 -203 -247 -203c-68 0 -161 12 -235 68c0 0 -34 -50 -39 -56c-6 -9 -8 -12 -18 -12c-16 0 -16 11 -16 28v192c0 21 0 29 21 29c20 0 20 -6 21 -23c3 -59 27 -104 75 -136 c61 -40 145 -46 191 -46c116 0 186 71 186 142c0 68 -61 118 -128 134l-158 31c-46 9 -96 19 -147 62c-31 26 -61 69 -61 125c0 101 102 189 244 189c91 0 154 -28 201 -71l39 58c9 13 15 13 20 13c16 0 16 -11 16 -28v-193c0 -21 0 -28 -21 -28c-15 0 -19 3 -22 17 c-11 73 -54 191 -233 191c-109 0 -183 -63 -183 -129c0 -76 83 -113 123 -121c10 -3 68 -14 124 -25c82 -16 136 -26 183 -72c18 -17 64 -61 64 -136'], + 0xE063: [705,11,681,76,617,'617 174c0 -106 -103 -185 -219 -185c-74 0 -118 39 -118 82c0 29 20 44 43 44c22 0 42 -16 42 -42c0 -21 -12 -32 -20 -37c22 -14 45 -14 51 -14c51 0 128 35 128 152c0 100 -54 216 -196 224c-15 1 -15 13 -15 16c0 16 9 16 24 17c87 4 153 53 153 129 c0 80 -65 112 -121 112c-24 0 -125 -7 -125 -120v-552c-22 4 -38 4 -56 4c-7 0 -80 -1 -112 -4v44h18c65 0 65 9 65 40v303h-83v44h83v122c0 101 109 152 211 152c122 0 213 -68 213 -145s-79 -127 -148 -148c97 -31 182 -126 182 -238'], + 0xE064: [500,275,646,97,548,'366 439c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61zM548 -71c0 -89 -91 -124 -195 -132c1 -6 1 -11 1 -14c0 -37 -26 -58 -49 -58s-49 21 -49 58l1 15c-75 8 -160 40 -160 133c0 25 8 68 57 101c86 57 130 127 130 213v28 c0 21 0 29 21 29c6 0 19 0 21 -13v-34c0 -12 0 -30 -2 -51l27 -374c44 4 103 15 134 48c-24 5 -43 24 -43 53c0 34 27 53 53 53c19 0 53 -13 53 -55zM277 70c-13 -20 -28 -39 -48 -59c-15 -16 -32 -33 -32 -87c0 -40 3 -79 63 -92'], + 0xE065: [698,-502,681,185,419,'419 535l-26 -33l-182 110c-12 8 -26 18 -26 39s17 47 46 47c16 0 23 -7 33 -16'], + 0xE066: [683,0,981,83,897,'897 0l-164 4l-164 -4v44h30c81 0 81 10 81 41v248h-380v-248c0 -31 0 -41 81 -41h30v-44l-164 4l-164 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-221h380v221c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30 c-81 0 -81 -10 -81 -41v-513c0 -31 0 -41 81 -41h30v-44'], + 0xE067: [694,0,750,82,683,'683 0c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v219c0 64 -17 106 -91 106c-62 0 -166 -38 -166 -151v-174c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v499c0 49 -9 56 -83 56v44l168 11v-343 c15 23 67 91 182 91c93 0 168 -30 168 -140v-218c0 -31 0 -40 65 -40h18v-44'], + 0xE068: [701,-500,681,219,462,'462 635c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34 s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE069: [698,-503,681,185,554,'346 652c0 -14 -9 -27 -18 -36l-109 -113l-34 25l72 140c6 11 16 30 41 30c23 0 48 -22 48 -46zM554 652c0 -14 -9 -27 -18 -36l-109 -113l-34 25l72 140c6 11 16 30 41 30c23 0 48 -22 48 -46'], + 0xE06A: [254,-177,472,42,374,'374 177h-332v77h332v-77'], + 0xE06B: [683,0,494,77,417,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44'], + 0xE06C: [683,22,1137,77,1041,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM1041 639h-18c-65 0 -65 -9 -65 -40v-449c0 -111 -114 -172 -223 -172c-107 0 -194 53 -194 134 c0 39 26 63 62 63c37 0 61 -28 61 -61c0 -31 -18 -55 -51 -61c37 -38 101 -42 120 -42c59 0 123 46 123 139v447c0 32 0 42 -100 42h-44v44c55 -4 129 -4 185 -4c48 0 96 1 144 4v-44'], + 0xE06D: [661,205,800,83,657,'253 600c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61zM657 600c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61zM326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247 c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM657 -43c0 -103 -83 -162 -167 -162c-70 0 -137 26 -137 87c0 32 24 53 53 53c30 0 53 -21 53 -53c0 -28 -19 -42 -24 -45c18 -6 41 -9 54 -9c60 0 83 67 83 128v374c0 50 -10 57 -92 57v44l177 11v-485'], + 0xE06E: [775,0,646,80,531,'384 61c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61zM531 569c0 -25 -8 -68 -57 -101c-86 -57 -130 -127 -130 -213v-28c0 -21 0 -29 -21 -29c-6 0 -19 0 -21 13v34c0 12 0 30 2 51l-27 374c-44 -4 -103 -15 -134 -48 c24 -5 43 -24 43 -53c0 -34 -27 -53 -53 -53c-19 0 -53 13 -53 55c0 89 91 124 195 132c-1 6 -1 11 -1 14c0 37 26 58 49 58s49 -21 49 -58l-1 -15c75 -8 160 -40 160 -133zM431 576c0 40 -3 79 -63 92l-17 -238c13 20 28 39 48 59c15 16 32 33 32 87'], + 0xE06F: [683,245,494,77,417,'417 -135c-15 -67 -80 -110 -140 -110c-76 0 -128 62 -127 109c0 49 44 106 85 140l-158 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44l-125 4c-30 -17 -54 -43 -70 -74 c-27 -54 0 -108 80 -113c34 -1 69 19 82 62c6 20 37 7 33 -14'], + 0xE070: [677,245,403,67,335,'253 616c0 -33 -27 -61 -61 -61c-31 0 -61 25 -61 61c0 37 30 61 61 61c34 0 61 -28 61 -61zM335 -135c-15 -67 -80 -110 -140 -110c-76 0 -128 62 -127 109c0 48 44 106 84 139l-69 -3v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40 v-44c-36 3 -78 4 -115 4c-31 -17 -55 -43 -71 -74c-26 -54 0 -108 80 -113c34 -1 69 19 82 62c6 20 37 7 33 -14'], + 0xE071: [683,22,692,96,596,'596 639h-18c-65 0 -65 -9 -65 -40v-449c0 -111 -114 -172 -223 -172c-107 0 -194 53 -194 134c0 39 26 63 62 63c37 0 61 -28 61 -61c0 -31 -18 -55 -51 -61c37 -38 101 -42 120 -42c59 0 123 46 123 139v447c0 32 0 42 -100 42h-44v44c55 -4 129 -4 185 -4 c48 0 96 1 144 4v-44'], + 0xE072: [683,0,1015,83,934,'934 0c-49 4 -84 4 -131 4l-161 -4v44c18 0 51 0 51 24c0 11 -11 25 -17 31l-224 258l-152 -116v-156c0 -31 0 -41 81 -41h30v-44l-164 4l-164 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-304l380 288 c16 12 22 22 22 33c0 22 -26 24 -33 24v44l146 -4c45 0 63 1 102 4v-44c-77 0 -132 -30 -163 -53l-226 -172l280 -322c36 -41 52 -48 126 -48v-44'], + 0xE073: [694,0,715,76,665,'665 0c-36 3 -64 4 -102 4c-15 0 -83 -1 -124 -4v44c6 0 26 1 26 15c0 13 -12 25 -29 44l-114 123l-82 -56v-86c0 -31 0 -40 65 -40h18v-44c-39 3 -84 4 -124 4c-39 0 -84 -1 -123 -4v44h18c65 0 65 9 65 40v499c0 49 -9 56 -83 56v44l168 11v-471l163 112 c29 20 29 35 29 38c0 0 -1 12 -15 14v44c33 -2 93 -4 131 -4c12 0 49 0 85 4v-44c-19 0 -71 -2 -137 -42c-5 -2 -96 -64 -112 -75l164 -179c43 -47 68 -47 113 -47v-44'], + 0xE074: [683,0,831,83,750,'750 271l-33 -271h-634v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44l169 -4c57 0 131 0 187 4v-44h-43c-96 0 -96 -11 -96 -42v-515c0 -31 0 -38 49 -38h123c195 0 221 111 236 227h42'], + 0xE075: [694,0,403,83,334,'334 0c-42 3 -84 4 -126 4s-83 -1 -125 -4v44h18c65 0 65 9 65 40v499c0 49 -9 56 -83 56v44l168 11v-610c0 -31 0 -40 65 -40h18v-44'], + 0xE076: [789,94,1305,11,1293,'1293 692c0 -7 -2 -15 -3 -21c-70 -456 -474 -765 -898 -765c-93 0 -187 14 -275 43c-36 12 -106 28 -106 56c0 8 3 16 4 22c48 351 327 643 664 732c64 17 126 23 191 30h35c98 0 196 -13 290 -45c34 -11 98 -27 98 -52zM969 158l-623 -1l-279 -154 c103 -40 213 -63 324 -63c211 0 421 78 578 218zM697 403v326c-27 -9 -55 -16 -82 -25c-62 -23 -120 -52 -176 -88c-30 -18 -82 -49 -82 -70v-343l73 41l265 149zM1237 693c-104 41 -216 63 -327 63c-44 0 -87 -5 -130 -10c-16 -3 -33 -7 -49 -9v-326l52 29zM1143 365h-424 l-312 -173h582l16 2l44 44l63 81zM323 195v332c-108 -95 -189 -224 -238 -359c-15 -44 -25 -89 -35 -135l69 38l202 114zM1254 663l-473 -263h370c13 0 15 9 21 18c42 79 61 160 82 245'], + 0xE077: [705,0,438,70,468,'468 627c0 -29 -19 -52 -52 -52c-31 0 -51 23 -51 51c0 21 18 33 18 39v2c0 3 -27 5 -27 5c-46 0 -104 -39 -104 -133v-454c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v303h-97v44h97v109c0 109 103 165 191 165 c67 0 110 -35 110 -78'], + 0xE078: [683,0,831,83,750,'750 271l-33 -271h-634v44h30c81 0 81 10 81 41v207l-74 -48l-24 36l98 64v254c0 31 0 41 -81 41h-30v44l169 -4c57 0 131 0 187 4v-44h-43c-96 0 -96 -11 -96 -42v-185l183 119l25 -36l-208 -135v-278c0 -31 0 -38 49 -38h123c195 0 221 111 236 227h42'], + 0xE079: [694,0,476,107,384,'384 419l-101 -66v-269c0 -31 0 -40 65 -40h18v-44c-42 3 -84 4 -126 4s-83 -1 -125 -4v44h18c65 0 65 9 65 40v214l-68 -45l-23 35l91 60v235c0 49 -9 56 -83 56v44l168 11v-290l78 51'], + 0xE07A: [683,0,1189,89,1099,'1099 0l-158 4l-158 -4v44h30c81 0 81 10 81 41v556h-1l-295 -618c-4 -9 -11 -23 -30 -23c-14 0 -23 7 -31 24l-290 609h-1v-522c0 -26 0 -67 111 -67v-44c-41 3 -106 4 -134 4c-45 0 -89 -1 -134 -4v44c111 0 111 41 111 67v487c0 31 0 41 -81 41h-30v44h193 c21 0 32 0 43 -24l269 -565l270 566c11 23 20 23 42 23h193v-44h-30c-81 0 -81 -10 -81 -41v-513c0 -31 0 -41 81 -41h30v-44'], + 0xE07B: [442,0,1097,82,1031,'1031 0c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v219c0 65 -18 106 -91 106c-65 0 -167 -40 -167 -151v-174c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v219c0 65 -18 106 -91 106 c-65 0 -167 -40 -167 -151v-174c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l164 11v-98c25 43 83 98 186 98c37 0 139 -1 164 -93c28 44 85 93 183 93c75 0 169 -17 169 -140v-218 c0 -31 0 -40 65 -40h18v-44'], + 0xE07C: [622,-578,681,115,565,'565 578h-450v44h450v-44'], + 0xE07D: [467,-36,680,-72,751,'751 247c0 -15 -3 -30 -7 -45c-31 -110 -149 -166 -255 -166c-44 0 -89 9 -129 29c-6 3 -14 9 -21 9c-4 0 -8 -3 -11 -5c-45 -23 -88 -33 -137 -33c-126 0 -263 82 -263 214c0 23 4 47 13 67c37 95 132 138 230 149c7 1 13 1 20 1c46 0 90 -12 131 -31c5 -3 12 -8 18 -8 c4 0 8 3 11 5c45 23 89 33 138 33c131 0 262 -86 262 -219zM689 251c0 114 -114 153 -199 153c-34 0 -69 -5 -102 -16c36 -38 57 -88 57 -139s-22 -98 -57 -135c32 -10 66 -16 100 -16h15c47 3 95 13 133 44c33 28 53 67 53 109zM291 114c-36 38 -57 88 -57 139 s22 98 57 135c-32 10 -66 16 -100 16h-15c-47 -3 -95 -13 -133 -44c-33 -28 -53 -67 -53 -109c0 -114 114 -153 199 -153c34 0 69 5 102 16zM398 251v9c-4 30 -15 59 -36 81c-7 7 -18 19 -22 19s-7 -3 -9 -5l-17 -17c-20 -24 -33 -56 -33 -87v-9c4 -30 15 -59 36 -81 c7 -7 18 -19 22 -19s7 3 9 5l17 17c20 24 33 56 33 87'], + 0xE07E: [441,194,750,82,683,'683 0l-168 -11v85c-55 -85 -141 -85 -165 -85c-11 0 -57 0 -96 12v-108c0 -25 0 -36 25 -40c16 -2 38 -2 58 -2v-45c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v45c20 0 47 0 62 3c21 4 21 15 21 39v434c0 51 -7 58 -83 58v45l172 11v-326c0 -51 2 -92 105 -92 c80 0 152 49 152 147v157c0 51 -7 58 -83 58v45l172 11v-338c0 -51 7 -58 83 -58v-45'], + 0xE07F: [695,38,764,69,695,'695 153c0 -18 -13 -31 -29 -31c-27 0 -27 28 -28 45c-13 101 -68 177 -121 260c-11 17 -20 35 -31 52v-372c-11 -103 -122 -145 -209 -145c-91 0 -208 52 -208 158c0 100 106 136 192 139h18c52 0 107 -8 151 -37v447c2 14 12 26 28 26c24 0 29 -23 29 -44 c19 -186 208 -305 208 -498'], + 0xE080: [683,0,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-542c0 -21 0 -30 -23 -30c-11 0 -15 0 -25 12l-498 594v-495c0 -26 0 -67 111 -67v-44c-41 3 -106 4 -134 4c-45 0 -89 -1 -134 -4v44c111 0 111 41 111 67v505c0 16 -1 17 -4 19c-10 3 -56 4 -68 4h-39v44h194c20 0 22 0 32 -12 l431 -514v415c0 26 0 67 -111 67v44c41 -3 106 -4 134 -4c45 0 89 1 134 4v-44'], + 0xE081: [442,0,750,82,683,'683 0c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v219c0 64 -17 106 -91 106c-62 0 -166 -38 -166 -151v-174c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l164 11v-98 c23 39 79 98 186 98c93 0 168 -30 168 -140v-218c0 -31 0 -40 65 -40h18v-44'], + 0xE082: [666,22,681,80,600,'600 328c0 -207 -147 -350 -315 -350c-27 0 -174 0 -174 114c0 47 36 56 53 56c29 0 53 -21 53 -53c0 -26 -15 -45 -40 -52c34 -24 95 -24 106 -24c81 0 140 43 173 101c34 59 38 135 38 198c-52 -87 -124 -101 -165 -101c-85 0 -131 26 -178 68c-54 47 -71 98 -71 155 c0 51 13 106 75 157c40 34 89 69 189 69c138 0 256 -96 256 -338zM491 420c0 43 0 208 -147 208c-72 0 -102 -29 -117 -46c-38 -40 -41 -70 -41 -142c0 -59 1 -100 31 -137c36 -45 74 -52 114 -52c101 0 160 86 160 169'], + 0xE083: [694,194,1097,97,999,'999 131c0 -28 -29 -28 -44 -28h-286l-92 -271c-3 -9 -9 -26 -29 -26c-16 0 -28 13 -28 28c0 3 0 5 5 18l85 251h-225l-92 -271c-3 -9 -9 -26 -29 -26c-16 0 -28 13 -28 28c0 3 0 5 5 18l85 251h-185c-15 0 -44 0 -44 28s25 28 39 28h210l61 182h-271c-13 0 -39 0 -39 28 s29 28 44 28h286l92 271c3 9 9 26 29 26c16 0 28 -13 28 -28c0 -3 0 -5 -5 -18l-85 -251h225l92 271c3 9 9 26 29 26c16 0 28 -13 28 -28c0 -3 0 -5 -5 -18l-85 -251h185c15 0 44 0 44 -28s-25 -28 -39 -28h-210l-61 -182h271c14 0 39 0 39 -28zM691 341h-225l-61 -182h225'], + 0xE084: [705,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339'], + 0xE085: [448,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198'], + 0xE086: [705,22,1317,108,1253,'1253 271l-50 -271h-491c-24 0 -47 -2 -97 -12c-57 -10 -80 -10 -94 -10c-223 0 -413 160 -413 361c0 200 186 366 414 366c23 0 44 -1 98 -12c52 -9 76 -10 92 -10h474l33 -238h-42c-19 139 -47 194 -216 194h-155c-49 0 -49 -7 -49 -38v-224h138c98 0 136 16 136 117 h42v-278h-42c0 101 -38 117 -136 117h-138v-251c0 -31 0 -38 49 -38h164c182 0 213 69 241 227h42zM664 342l-1 139c-2 146 -16 191 -134 191c-179 0 -308 -147 -308 -318c0 -180 127 -343 308 -343c102 0 120 35 130 110c5 34 5 92 5 221'], + 0xE087: [448,11,1028,65,964,'964 119c0 -21 -49 -130 -192 -130c-99 0 -180 47 -222 102c-53 -66 -135 -102 -220 -102c-151 0 -265 107 -265 230s114 229 265 229c124 0 196 -71 218 -100c22 31 91 100 209 100c158 0 207 -112 207 -199c0 -24 -9 -24 -30 -24h-341c0 -169 128 -200 184 -200 s118 27 143 93c6 13 7 18 23 18c5 0 21 0 21 -17zM887 256c-1 28 -7 159 -132 159c-49 0 -146 -30 -160 -159h292zM504 223c0 170 -128 192 -174 192c-44 0 -173 -20 -173 -192c0 -173 121 -201 173 -201s174 29 174 201'], + 0xE088: [6,245,681,206,474,'474 -135c-15 -67 -80 -110 -140 -110c-76 0 -128 62 -127 109c0 50 46 109 87 142h59c-32 -17 -58 -44 -74 -76c-27 -54 0 -108 80 -113c34 -1 69 19 82 62c6 20 37 7 33 -14'], + 0xE089: [805,22,1028,97,927,'927 339c0 -99 -47 -191 -122 -255c-81 -71 -186 -106 -293 -106c-108 0 -213 35 -294 106c-74 64 -121 156 -121 255c0 100 47 193 121 259c81 71 186 107 294 107c82 0 163 -21 233 -63c24 5 45 20 57 41h-4c-41 0 -61 31 -61 61c0 31 20 61 61 61c36 0 61 -35 61 -74 c0 -53 -29 -102 -73 -117c6 -5 13 -10 19 -16c75 -66 122 -159 122 -259zM810 355c0 83 -24 164 -81 224c-56 59 -135 90 -217 90s-162 -31 -218 -90c-57 -60 -80 -141 -80 -224c0 -88 22 -176 80 -243c55 -62 135 -97 218 -97s163 35 217 97c59 67 81 155 81 243'], + 0xE08A: [553,11,680,64,631,'631 478c0 -56 -31 -107 -79 -118c37 -40 60 -92 60 -148c0 -62 -32 -118 -80 -158c-54 -44 -124 -65 -194 -65s-139 21 -194 65c-48 40 -80 96 -80 158c0 65 31 124 80 166c54 46 123 69 194 69c65 0 128 -19 180 -57c24 5 44 20 57 41c-2 -1 -5 -1 -5 -1 c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -36 61 -75zM512 224c0 49 -5 101 -39 138s-84 52 -135 52c-50 0 -101 -15 -135 -52c-33 -37 -39 -89 -39 -138c0 -52 5 -107 39 -146c34 -38 84 -53 135 -53s102 15 135 53c34 39 39 94 39 146'], + 0xE08B: [666,0,681,143,554,'554 0c-55 4 -144 4 -202 4s-147 0 -202 -4v44h50c106 0 106 11 106 42v500c-58 -25 -123 -28 -146 -28h-17v44h17c20 0 131 0 202 64c33 0 36 0 36 -30v-550c0 -31 0 -42 106 -42h50v-44'], + 0xE08C: [705,-323,611,69,542,'542 455c0 -67 -96 -67 -102 -67c-43 0 -62 29 -65 53c-26 -35 -77 -57 -141 -57c-68 0 -165 15 -165 81c0 46 49 75 104 91c65 19 110 21 192 25v18c0 50 -45 83 -116 83c-10 0 -50 0 -78 -7c8 -5 20 -15 20 -32c0 -24 -22 -37 -45 -37c-21 0 -44 12 -44 38 c0 59 97 61 148 61c104 0 189 -38 189 -105v-144c0 -7 0 -38 34 -38s34 31 34 38v37h35v-38zM520 339c0 -9 -10 -16 -22 -16h-385c-12 0 -22 7 -22 16c0 8 10 15 22 15h385c12 0 22 -7 22 -15zM365 491v69c-201 -7 -219 -72 -219 -95c0 -36 47 -58 97 -58c21 0 122 7 122 84 '], + 0xE08D: [705,-323,571,55,517,'517 541c0 -84 -100 -157 -231 -157s-231 73 -231 157c0 87 99 164 231 164c131 0 231 -77 231 -164zM495 339c0 -9 -10 -16 -22 -16h-374c-13 0 -22 7 -22 16c0 8 9 15 22 15h374c12 0 22 -7 22 -15zM433 548c0 31 0 134 -147 134s-147 -103 -147 -134 c0 -34 0 -139 147 -139s147 105 147 139'], + 0xE08E: [744,61,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-115 0 -192 39 -232 61l-84 -100l-28 24l81 96c-124 91 -153 202 -153 280c0 195 179 366 417 366c69 0 154 -16 232 -62l84 101l28 -24l-82 -97c111 -80 154 -190 154 -284zM714 607c-71 55 -149 65 -201 65 c-104 0 -310 -48 -310 -333c0 -60 9 -167 82 -239zM824 339c0 98 -25 186 -83 244l-429 -508c69 -51 143 -64 202 -64c103 0 310 46 310 328'], + 0xE08F: [538,107,681,70,610,'610 213c0 -120 -116 -224 -270 -224c-27 0 -72 3 -125 25l-87 -121l-27 20l84 116c-94 59 -115 132 -115 184c0 125 116 235 270 235c34 0 79 -5 128 -28l84 118l27 -20l-82 -114c83 -52 113 -130 113 -191zM444 388c-32 19 -68 27 -104 27c-51 0 -108 -17 -143 -61 c-36 -45 -38 -107 -38 -140c0 -37 3 -105 51 -149zM521 214c0 94 -27 131 -51 154l-232 -322c35 -20 74 -24 102 -24c181 0 181 152 181 192'], + 0xE090: [683,0,900,85,802,'802 491c0 -111 -147 -187 -281 -187h-219v-219c0 -31 0 -41 81 -41h30v-44l-164 4l-164 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44h426c159 0 291 -87 291 -192zM685 491c0 78 -35 148 -198 148h-140c-49 0 -49 -7 -49 -38v-259h188c160 0 199 67 199 149 '], + 0xE091: [442,194,750,76,677,'677 216c0 -125 -123 -227 -275 -227c-57 0 -111 19 -154 57v-156c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v454c0 43 -11 43 -83 43v44l168 11v-57c34 29 96 57 175 57c148 0 258 -106 258 -226zM577 216 c0 101 -71 190 -170 190c-40 0 -116 -13 -159 -74v-208c0 -19 0 -21 14 -38c35 -45 88 -64 133 -64c99 0 182 85 182 194'], + 0xE092: [750,56,1097,97,999,'894 722c0 -8 -3 -15 -11 -24l-628 -739c-9 -10 -13 -15 -25 -15c-15 0 -28 13 -28 28c0 10 4 15 12 24l537 633l-1 1c-43 -18 -91 -26 -139 -26c-78 0 -149 26 -187 43c1 -3 20 -44 20 -99c0 -112 -73 -201 -165 -201c-94 0 -182 83 -182 202c0 115 86 201 182 201 c44 0 70 -18 91 -33c96 -66 182 -80 241 -80c80 0 160 24 226 94c13 14 17 19 29 19c16 0 28 -13 28 -28zM999 145c0 -112 -73 -201 -165 -201c-94 0 -182 83 -182 202c0 115 86 201 182 201c90 0 165 -87 165 -202zM402 549c0 97 -59 168 -121 168c-41 0 -70 -30 -83 -57 c-20 -38 -20 -89 -20 -112c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c60 0 121 68 121 169zM957 145c0 101 -61 169 -121 169c-41 0 -70 -30 -83 -57c-20 -38 -20 -89 -20 -112c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c62 0 121 71 121 168'], + 0xE093: [750,56,1828,97,1772,'1772 145c0 -112 -73 -201 -165 -201c-94 0 -182 83 -182 202c0 115 86 201 182 201c90 0 165 -87 165 -202zM1375 145c0 -112 -73 -201 -165 -201c-94 0 -182 83 -182 202c0 115 86 201 182 201c90 0 165 -87 165 -202zM978 145c0 -112 -73 -201 -165 -201 c-94 0 -182 83 -182 202c0 115 86 201 182 201c90 0 165 -87 165 -202zM894 722c0 -8 -3 -15 -11 -24l-628 -739c-9 -10 -13 -15 -25 -15c-15 0 -28 13 -28 28c0 10 4 15 12 24l537 633l-1 1c-43 -18 -91 -26 -139 -26c-78 0 -149 26 -187 43c1 -3 20 -44 20 -99 c0 -112 -73 -201 -165 -201c-94 0 -182 83 -182 202c0 115 86 201 182 201c44 0 70 -18 91 -33c96 -66 182 -80 241 -80c80 0 160 24 226 94c13 14 17 19 29 19c16 0 28 -13 28 -28zM1730 145c0 101 -61 169 -121 169c-41 0 -70 -30 -83 -57c-20 -38 -20 -89 -20 -112 c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c62 0 121 71 121 168zM1333 145c0 101 -61 169 -121 169c-41 0 -70 -30 -83 -57c-20 -38 -20 -89 -20 -112c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c62 0 121 71 121 168zM936 145c0 101 -61 169 -121 169 c-41 0 -70 -30 -83 -57c-20 -38 -20 -89 -20 -112c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c62 0 121 71 121 168zM402 549c0 97 -59 168 -121 168c-41 0 -70 -30 -83 -57c-20 -38 -20 -89 -20 -112c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c60 0 121 68 121 169'], + 0xE094: [750,56,1425,74,1352,'1352 145c0 -112 -73 -201 -165 -201c-94 0 -182 83 -182 202c0 115 86 201 182 201c90 0 165 -87 165 -202zM955 145c0 -112 -73 -201 -165 -201c-94 0 -182 83 -182 202c0 115 86 201 182 201c90 0 165 -87 165 -202zM871 722c0 -8 -3 -15 -11 -24l-628 -739 c-9 -10 -13 -15 -25 -15c-15 0 -28 13 -28 28c0 10 4 15 12 24l537 633l-1 1c-43 -18 -91 -26 -139 -26c-78 0 -149 26 -187 43c1 -3 20 -44 20 -99c0 -112 -73 -201 -165 -201c-94 0 -182 83 -182 202c0 115 86 201 182 201c44 0 70 -18 91 -33c96 -66 182 -80 241 -80 c80 0 160 24 226 94c13 14 17 19 29 19c16 0 28 -13 28 -28zM1310 145c0 101 -61 169 -121 169c-41 0 -70 -30 -83 -57c-20 -38 -20 -89 -20 -112c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c62 0 121 71 121 168zM913 145c0 101 -61 169 -121 169c-41 0 -70 -30 -83 -57 c-20 -38 -20 -89 -20 -112c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c62 0 121 71 121 168zM379 549c0 97 -59 168 -121 168c-41 0 -70 -30 -83 -57c-20 -38 -20 -89 -20 -112c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c60 0 121 68 121 169'], + 0xE095: [347,56,544,98,445,'445 145c0 -112 -73 -201 -165 -201c-94 0 -182 83 -182 202c0 115 86 201 182 201c90 0 165 -87 165 -202zM403 145c0 101 -61 169 -121 169c-41 0 -70 -30 -83 -57c-20 -38 -20 -89 -20 -112c0 -30 1 -79 22 -116c17 -28 45 -52 81 -52c62 0 121 71 121 168'], + 0xE096: [442,11,1083,125,958,'958 -7c-19 -4 -46 -4 -46 -4c-42 0 -109 9 -178 54c-46 30 -64 52 -111 111c-66 -94 -166 -165 -281 -165c-126 0 -217 107 -217 226c0 121 92 227 220 227c42 0 109 -9 178 -54c46 -30 64 -52 111 -111c66 94 166 165 281 165c3 0 25 0 43 -4v-40c-18 3 -21 3 -34 3 c-41 0 -162 -11 -257 -165c83 -104 153 -191 260 -191c9 0 22 2 31 3v-55zM590 195c-83 104 -153 191 -260 191c-92 0 -172 -74 -172 -171c0 -98 75 -185 175 -185c41 0 162 11 257 165'], + 0xE097: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM627 342c0 157 -128 285 -285 285c-158 0 -286 -128 -286 -285c0 -158 128 -286 286 -286c157 0 285 128 285 286zM510 405c0 -47 -63 -79 -120 -79h-94 v-94c0 -13 0 -17 35 -17h13v-19l-70 2l-70 -2v19h12c35 0 35 4 35 17v219c0 13 0 18 -35 18h-12v18h181c68 0 125 -37 125 -82zM460 405c0 34 -15 64 -85 64h-60c-20 0 -20 -3 -20 -17v-110h80c68 0 85 28 85 63'], + 0xE098: [705,194,1028,97,937,'937 -7c0 -75 -48 -187 -152 -187c-93 0 -126 83 -157 186c-55 -14 -100 -14 -115 -14c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366c0 -160 -119 -283 -249 -331c51 -83 89 -85 113 -85c8 0 103 0 110 78c1 12 12 15 16 15 c17 0 17 -16 17 -23zM817 339c0 221 -150 330 -304 330c-150 0 -303 -107 -303 -330c0 -181 104 -279 210 -311c-3 6 -10 20 -10 38c0 51 47 87 104 87c68 0 108 -52 142 -105c93 46 161 146 161 291zM614 30c-24 58 -51 90 -100 90c-38 0 -71 -22 -71 -54 c0 -15 11 -52 71 -52c16 0 52 1 100 16'], + 0xE099: [442,194,715,72,673,'673 -194c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v167c-44 -44 -105 -68 -168 -68c-143 0 -261 102 -261 226c0 126 123 227 272 227c69 0 129 -29 172 -85l36 85h38v-552c0 -31 0 -40 65 -40h18v-44zM505 148v123c0 58 -62 135 -152 135 c-96 0 -181 -83 -181 -191c0 -104 73 -193 169 -193c36 0 101 14 146 77c18 25 18 31 18 49'], + 0xE09A: [705,0,646,97,548,'548 569c0 -50 -33 -82 -70 -103c-70 -40 -152 -103 -152 -212v-27c0 -21 0 -29 -21 -29c-7 0 -18 0 -21 12v34c0 69 10 158 129 251c23 18 35 45 35 77c0 52 -15 100 -139 100c-20 0 -103 0 -149 -50c24 -5 43 -24 43 -53c0 -34 -27 -53 -53 -53c-19 0 -53 13 -53 55 c0 73 71 134 214 134c206 0 237 -91 237 -136zM366 61c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE09B: [500,205,646,97,548,'366 439c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61zM548 -71c0 -102 -121 -134 -242 -134c-82 0 -209 22 -209 136c0 25 8 68 57 101c86 57 130 127 130 213v28c0 21 0 29 21 29c6 0 19 0 21 -13v-34c0 -43 0 -147 -97 -244 c-15 -16 -32 -33 -32 -87c0 -49 5 -96 112 -96c35 0 133 4 176 50c-24 5 -43 24 -43 53c0 34 27 53 53 53c19 0 53 -13 53 -55'], + 0xE09C: [705,-423,533,156,375,'245 661l-23 -238h-42l-23 238c-2 25 19 44 44 44c26 0 47 -19 44 -44zM375 661l-23 -238h-42l-23 238c-2 25 19 44 44 44c26 0 47 -19 44 -44'], + 0xE09D: [694,-378,403,123,262,'262 439c0 -31 -22 -61 -61 -61c-48 0 -78 48 -78 113c0 125 96 203 111 203c7 0 17 -8 17 -17c0 -7 -1 -8 -13 -17c-53 -43 -82 -109 -82 -178c0 0 17 18 45 18c39 0 61 -30 61 -61'], + 0xE09E: [694,-378,403,140,279,'279 581c0 -125 -96 -203 -111 -203c-7 0 -17 8 -17 17c0 7 1 8 13 17c53 43 82 109 82 178c0 0 -17 -18 -45 -18c-39 0 -61 30 -61 61s22 61 61 61c48 0 78 -48 78 -113'], + 0xE09F: [124,192,403,132,271,'271 11c0 -125 -96 -203 -111 -203c-7 0 -17 8 -17 17c0 7 1 8 13 17c53 43 82 109 82 178c0 0 -17 -18 -45 -18c-39 0 -61 30 -61 61s22 61 61 61c48 0 78 -48 78 -113'], + 0xE0A0: [705,-423,403,156,245,'245 661l-23 -238h-42l-23 238c-2 25 19 44 44 44c26 0 47 -19 44 -44'], + 0xE0A1: [683,22,969,85,937,'937 93c0 -33 -26 -115 -122 -115c-43 0 -103 9 -141 38c-53 40 -53 79 -53 156c0 59 0 83 -37 113c-31 26 -78 40 -132 40h-154v-240c0 -31 0 -41 81 -41h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44h378c166 0 321 -80 321 -184 c0 -92 -123 -141 -187 -158c60 -16 112 -51 127 -110c3 -13 8 -53 11 -80c8 -64 17 -140 85 -140c34 0 71 26 75 83c1 14 5 20 21 20c11 0 21 -2 21 -21zM667 499c0 140 -153 140 -266 140h-71c-30 -3 -32 -8 -32 -38v-243h154c101 0 215 26 215 141'], + 0xE0A2: [442,0,542,76,479,'479 373c0 -34 -26 -51 -51 -51c-22 0 -50 15 -50 51c0 22 14 36 14 36c-95 -2 -148 -92 -148 -185v-139c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l160 11v-110h1c39 84 103 110 153 110 c53 0 89 -31 89 -69'], + 0xE0A3: [683,22,969,85,937,'937 93c0 -33 -26 -115 -122 -115c-43 0 -103 9 -141 38c-11 8 -19 16 -26 25l-50 -37c-4 -2 -8 -4 -13 -4c-12 0 -22 10 -22 22c0 7 3 14 9 18l56 40c-7 25 -7 54 -7 92c0 59 0 83 -37 113c-31 26 -78 40 -132 40h-154v-240c0 -31 0 -41 81 -41h30v-44l-162 4l-162 -4 v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44h378c166 0 321 -80 321 -184c0 -92 -123 -141 -187 -158c60 -16 112 -51 127 -110c3 -12 7 -46 10 -73l102 75c4 3 8 4 13 4c12 0 22 -10 22 -22c0 -7 -4 -13 -9 -17l-121 -89c9 -51 26 -98 79 -98c34 0 71 26 75 83 c1 14 5 20 21 20c11 0 21 -2 21 -21zM667 499c0 140 -153 140 -266 140h-71c-30 -3 -32 -8 -32 -38v-243h154c101 0 215 26 215 141'], + 0xE0A4: [554,53,1028,210,817,'809 -45c-20 -19 -39 0 -49 10l-246 246l-247 -247c-9 -9 -28 -28 -48 -9c-20 20 -1 39 8 49l247 246l-246 246c-10 10 -29 29 -9 49s39 1 49 -9l246 -246l246 246c9 9 28 28 48 9c20 -20 1 -39 -8 -49l-247 -246l247 -246c9 -10 29 -29 9 -49zM567 501 c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM316 250c0 -29 -23 -53 -53 -53c-29 0 -53 24 -53 53c0 30 24 53 53 53c30 0 53 -23 53 -53zM567 0c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM817 250c0 -29 -23 -53 -53 -53 c-29 0 -53 24 -53 53c0 30 24 53 53 53c30 0 53 -23 53 -53'], + 0xE0A5: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM627 342c0 157 -128 285 -285 285c-158 0 -286 -128 -286 -285c0 -158 128 -286 286 -286c157 0 285 128 285 286zM538 240c0 -14 -11 -49 -52 -49 c-18 0 -44 4 -60 16c-22 18 -22 34 -22 67c0 25 0 35 -16 48c-13 11 -33 17 -57 17h-65v-102c0 -13 0 -18 34 -18h13v-18l-69 1l-69 -1v18h13c34 0 34 5 34 18v219c0 13 0 17 -34 17h-13v19h161c71 0 137 -34 137 -78c0 -40 -52 -61 -80 -68c26 -7 48 -22 55 -47 c1 -5 3 -22 4 -34c4 -27 8 -60 37 -60c14 0 30 11 32 36c0 6 2 8 9 8c4 0 8 -1 8 -9zM423 414c0 59 -65 59 -113 59h-31c-12 -1 -13 -3 -13 -16v-104h65c44 0 92 11 92 61'], + 0xE0A6: [705,-529,981,365,615,'565 617c0 49 -47 49 -75 49c-29 0 -75 0 -75 -49s47 -49 75 -49c29 0 75 0 75 49zM615 616c0 -44 -51 -87 -125 -87c-71 0 -125 40 -125 89c0 44 51 87 125 87c71 0 125 -40 125 -89'], + 0xE0A7: [705,22,750,97,652,'652 181c0 -104 -96 -203 -247 -203c-68 0 -161 12 -235 68c0 0 -34 -50 -39 -56c-6 -9 -8 -12 -18 -12c-16 0 -16 11 -16 28v192c0 21 0 29 21 29c20 0 20 -6 21 -23c3 -59 27 -104 75 -136c61 -40 145 -46 191 -46c116 0 186 71 186 142c0 68 -61 118 -128 134l-158 31 c-46 9 -96 19 -147 62c-31 26 -61 69 -61 125c0 101 102 189 244 189c91 0 154 -28 201 -71l39 58c9 13 15 13 20 13c16 0 16 -11 16 -28v-193c0 -21 0 -28 -21 -28c-15 0 -19 3 -22 17c-11 73 -54 191 -233 191c-109 0 -183 -63 -183 -129c0 -76 83 -113 123 -121 c10 -3 68 -14 124 -25c82 -16 136 -26 183 -72c18 -17 64 -61 64 -136'], + 0xE0A8: [448,11,549,70,478,'478 126c0 -50 -33 -137 -200 -137c-25 0 -88 1 -138 45l-26 -25c-19 -19 -20 -20 -28 -20c-16 0 -16 11 -16 28v128c0 21 0 29 21 29c17 0 18 -3 23 -21c30 -106 96 -131 164 -131c121 0 150 52 150 87c0 68 -92 82 -150 91c-92 14 -208 32 -208 126 c0 46 34 122 199 122c50 0 87 -10 110 -23c6 -4 9 -4 9 -4c4 0 22 16 26 20c8 6 12 7 17 7c16 0 16 -11 16 -28v-97c0 -21 0 -28 -21 -28c-19 0 -20 6 -21 21c-6 69 -54 102 -137 102c-109 0 -148 -38 -148 -73c0 -53 77 -65 141 -75c84 -13 114 -17 154 -42 c38 -24 63 -57 63 -102'], + 0xE0A9: [705,200,750,97,652,'652 181c0 -101 -91 -198 -235 -203v-44c67 0 141 -9 141 -67c0 -67 -183 -67 -324 -67h-42v42h21c102 0 245 0 245 25s-71 25 -125 25v91c-54 7 -113 25 -163 63c0 0 -34 -50 -39 -56c-6 -9 -8 -12 -18 -12c-16 0 -16 11 -16 28v192c0 21 0 29 21 29c20 0 20 -6 21 -23 c3 -59 27 -104 75 -136c61 -40 145 -46 191 -46c116 0 186 71 186 142c0 68 -61 118 -128 134l-158 31c-46 9 -96 19 -147 62c-31 26 -61 69 -61 125c0 101 102 189 244 189c91 0 154 -28 201 -71l39 58c9 13 15 13 20 13c16 0 16 -11 16 -28v-193c0 -21 0 -28 -21 -28 c-15 0 -19 3 -22 17c-11 73 -54 191 -233 191c-109 0 -183 -63 -183 -129c0 -76 83 -113 123 -121c10 -3 68 -14 124 -25c82 -16 136 -26 183 -72c18 -17 64 -61 64 -136'], + 0xE0AA: [448,200,549,70,478,'478 126c0 -46 -28 -123 -162 -135v-57c68 0 142 -9 142 -67c0 -67 -184 -67 -325 -67h-42v42h21c102 0 246 0 246 25s-71 25 -126 25v100c-28 5 -62 16 -92 42l-26 -25c-19 -19 -20 -20 -28 -20c-16 0 -16 11 -16 28v128c0 21 0 29 21 29c17 0 18 -3 23 -21 c30 -106 96 -131 164 -131c121 0 150 52 150 87c0 68 -92 82 -150 91c-92 14 -208 32 -208 126c0 46 34 122 199 122c50 0 87 -10 110 -23c6 -4 9 -4 9 -4c4 0 22 16 26 20c8 6 12 7 17 7c16 0 16 -11 16 -28v-97c0 -21 0 -28 -21 -28c-19 0 -20 6 -21 21 c-6 69 -54 102 -137 102c-109 0 -148 -38 -148 -73c0 -53 77 -65 141 -75c84 -13 114 -17 154 -42c38 -24 63 -57 63 -102'], + 0xE0AB: [431,194,403,140,265,'262 370c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61zM265 11c0 -122 -82 -205 -97 -205c-13 0 -17 12 -17 23c49 49 78 100 81 178c-8 -4 -12 -7 -31 -7c-39 0 -61 30 -61 61c0 33 24 61 60 61c62 0 65 -80 65 -111'], + 0xE0AC: [683,-247,1163,58,1051,'391 369c0 -62 -57 -122 -148 -122c-41 0 -97 7 -141 41l-23 -34c-4 -5 -5 -7 -11 -7c-10 0 -10 7 -10 17v115c0 13 0 18 13 18c12 0 12 -4 12 -14c2 -36 17 -63 45 -82c37 -24 87 -27 115 -27c70 0 112 42 112 85c0 41 -37 71 -77 80l-95 19c-28 5 -58 11 -88 37 c-19 16 -37 41 -37 75c0 61 61 113 147 113c54 0 92 -16 120 -42l24 35c5 7 9 7 12 7c9 0 9 -6 9 -16v-116c0 -13 0 -17 -12 -17c-9 0 -12 2 -14 10c-6 44 -32 115 -139 115c-66 0 -110 -38 -110 -78c0 -45 50 -67 74 -72c6 -2 40 -9 74 -15c49 -10 82 -16 110 -43 c11 -11 38 -37 38 -82zM1051 260l-95 3l-95 -3v27h18c49 0 49 6 49 24v334h-1l-177 -371c-2 -5 -7 -14 -18 -14c-8 0 -14 5 -19 15l-174 365v-313c0 -16 0 -40 66 -40v-27c-24 2 -63 3 -80 3c-27 0 -53 -1 -80 -3v27c66 0 66 24 66 40v292c0 19 0 25 -48 25h-18v26h115 c13 0 20 0 26 -14l162 -339l162 339c6 14 12 14 25 14h116v-26h-18c-49 0 -49 -6 -49 -25v-308c0 -18 0 -24 49 -24h18v-27'], + 0xE0AD: [676,22,681,97,635,'635 616c-1 -5 -1 -7 -10 -16l-168 -185c-60 -66 -98 -176 -98 -354v-20c0 -12 0 -63 -53 -63c-18 0 -53 6 -53 61c0 61 15 205 134 357c39 49 93 103 135 152h-238c-15 0 -109 -1 -115 -6c-17 -11 -28 -76 -30 -91h-42l38 225h42c2 -10 3 -20 26 -25 c18 -3 164 -7 190 -7h242v-28'], + 0xE0AE: [666,22,681,80,600,'600 205c0 -50 -13 -109 -77 -162c-34 -28 -81 -65 -180 -65c-146 0 -263 101 -263 340c0 207 158 348 330 348c121 0 159 -60 159 -114c0 -47 -36 -56 -53 -56c-29 0 -53 21 -53 53c0 34 26 49 42 53c-30 24 -75 26 -94 26c-93 0 -158 -56 -187 -110 c-36 -65 -37 -144 -38 -190c42 72 107 100 165 100c87 0 133 -27 177 -67c52 -46 72 -95 72 -156zM494 206c0 56 -1 98 -31 135c-31 40 -63 53 -114 53c-105 0 -160 -90 -160 -167c0 -42 0 -208 154 -208c56 0 91 18 119 51c32 40 32 78 32 136'], + 0xE0AF: [683,35,981,77,904,'904 144c0 -94 -59 -179 -147 -179c-102 0 -187 60 -275 113c-18 -91 -150 -100 -270 -100c-70 0 -135 43 -135 108c0 81 99 109 193 109c44 0 85 -12 124 -30c-8 53 -27 103 -42 155h-197v44h187c-5 22 -8 44 -8 67c0 138 110 252 247 252c115 0 224 -63 224 -168 c0 -29 -23 -53 -53 -53c-29 0 -53 24 -53 53c0 28 22 51 50 53c-29 48 -98 73 -168 73c-99 0 -159 -102 -159 -210c0 -23 3 -45 7 -67h217v-44h-208c17 -67 41 -133 45 -201c74 -42 146 -86 231 -86c75 0 148 42 148 111h42zM398 116v6c-40 19 -83 31 -128 31 c-71 0 -151 -6 -151 -67c0 -42 46 -66 93 -66c90 0 186 19 186 96'], + 0xE0B0: [675,0,958,73,884,'884 437h-42c-17 183 -55 194 -217 194c-22 0 -56 0 -65 -1c-26 -3 -28 -8 -28 -37v-507c0 -32 0 -42 107 -42h50v-44c-50 4 -155 4 -210 4s-160 0 -210 -4v44h50c107 0 107 10 107 42v507c0 31 -2 35 -30 37c-7 1 -43 1 -64 1c-162 0 -200 -12 -217 -194h-42l23 238h765 '], + 0xE0B1: [615,11,542,51,444,'444 126c0 -82 -56 -137 -131 -137c-62 0 -156 23 -156 137v261h-106v33c102 3 152 101 153 195h42v-184h177v-44h-177v-261c0 -21 0 -101 77 -101c35 0 79 29 79 104v52h42v-55'], + 0xE0B2: [682,-1,831,87,732,'732 369c0 -104 -116 -191 -254 -191h-182v-91c0 -25 0 -37 35 -40c22 -2 51 -2 76 -2v-44l-160 3l-160 -3v44c28 0 53 0 74 2c37 3 37 13 37 40v509c0 25 0 37 -35 40c-22 2 -51 2 -76 2v44l160 -3l160 3v-44c-18 0 -52 0 -70 -2c-21 -1 -40 -3 -41 -26v-49h169 c170 0 267 -99 267 -192zM619 370c0 54 -44 146 -175 146h-148v-293h142c107 0 181 71 181 147'], + 0xE0B3: [694,194,750,76,677,'677 216c0 -125 -123 -227 -275 -227c-57 0 -111 19 -154 57v-156c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v693c0 49 -9 56 -83 56v44l168 11v-309c34 29 96 57 175 57c148 0 258 -106 258 -226zM577 216 c0 101 -71 190 -170 190c-40 0 -116 -13 -159 -74v-208c0 -19 0 -21 14 -38c35 -45 88 -64 133 -64c99 0 182 85 182 194'], + 0xE0B4: [666,22,681,80,600,'600 174c0 -97 -102 -196 -266 -196c-136 0 -254 48 -254 152c0 42 30 63 62 63c33 0 61 -24 61 -61c0 -24 -12 -55 -53 -61c51 -52 170 -52 181 -52c89 0 152 54 152 156c0 99 -61 156 -153 156h-66c-18 0 -28 0 -28 17c0 15 11 16 22 17c26 1 30 2 58 3 c105 6 143 97 143 155c0 68 -52 105 -125 105c-21 0 -110 -3 -153 -49c36 -6 48 -34 48 -57c0 -36 -28 -57 -57 -57c-19 0 -57 12 -57 59c0 90 99 142 222 142c126 0 228 -61 228 -143c0 -56 -32 -132 -152 -171c114 -26 187 -96 187 -178'], + 0xE0B5: [283,-250,1021,42,978,'978 250h-936v33h936v-33'], + 0xE0B6: [653,-548,681,132,548,'548 629c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE0B7: [114,0,556,0,555,'555 97l-54 -44c-17 -14 -37 -25 -57 -35c-22 -10 -48 -18 -73 -18c-40 0 -71 17 -100 34c-35 20 -64 37 -104 37c-51 0 -104 -30 -153 -71l-14 17l54 44c17 14 37 25 57 35c22 10 48 18 73 18c40 0 71 -17 100 -34c35 -20 64 -37 104 -37c51 0 104 30 153 71'], + 0xE0B8: [688,-278,1288,44,1190,'530 541h-25c-10 109 -33 116 -130 116c-13 0 -34 0 -39 -1c-16 -1 -17 -4 -17 -22v-304c0 -19 0 -25 64 -25h30v-27c-30 3 -93 3 -126 3s-96 0 -126 -3v27h30c65 0 65 6 65 25v304c0 19 -2 21 -18 22c-5 1 -26 1 -39 1c-97 0 -120 -7 -130 -116h-25l14 142h459z M1190 278l-95 3l-95 -3v27h18c49 0 49 6 49 24v334h-1l-177 -371c-2 -5 -6 -14 -18 -14c-8 0 -14 5 -18 15l-174 365h-1v-313c0 -16 0 -40 67 -40v-27c-25 2 -64 3 -81 3c-27 0 -53 -1 -80 -3v27c66 0 66 24 66 40v292c0 19 0 25 -48 25h-18v26h116c12 0 19 0 25 -14 l162 -339l162 339c6 14 12 14 25 14h116v-26h-18c-49 0 -49 -6 -49 -25v-308c0 -18 0 -24 49 -24h18v-27'], + 0xE0B9: [284,-250,944,56,887,'887 250h-831v34h831v-34'], + 0xE0BA: [666,0,681,91,589,'589 193l-33 -193h-465v30c1 7 2 7 12 16l244 207c77 65 135 129 135 213c0 98 -81 156 -178 156c-67 0 -125 -30 -153 -75c31 -3 57 -23 57 -59c0 -41 -32 -59 -59 -59c-14 0 -58 9 -58 61c0 98 99 176 234 176c143 0 264 -71 264 -199c0 -106 -84 -164 -174 -226 c-60 -40 -134 -96 -200 -145h196c15 0 99 0 107 6c16 10 26 72 29 91h42'], + 0xE0BB: [683,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44'], + 0xE0BC: [442,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44'], + 0xE0BD: [805,22,980,83,914,'914 729c0 -70 -59 -121 -131 -130v-371c0 -68 -31 -132 -83 -178c-53 -47 -123 -72 -197 -72c-80 0 -157 24 -217 72c-57 45 -92 109 -93 178v383c0 11 -7 20 -18 23c-18 5 -61 5 -92 5v44l163 -4l164 4v-44c-31 0 -74 0 -93 -5c-10 -3 -18 -12 -18 -23v-383 c0 -59 16 -111 51 -147c39 -39 94 -59 153 -59c64 0 124 20 169 60c42 37 66 90 66 146v355c0 18 -11 34 -27 42c-26 13 -55 14 -83 14v44l133 -4c7 0 15 2 22 4v-42c31 5 59 20 75 42h-5c-40 0 -61 31 -61 61c0 31 21 61 61 61c37 0 61 -36 61 -76'], + 0xE0BE: [553,11,750,81,732,'732 476c0 -69 -61 -114 -134 -127v-249c0 -17 0 -37 13 -46c14 -10 46 -10 70 -10v-44l-168 -11v86c-31 -52 -90 -86 -155 -86c-61 0 -105 5 -145 31c-32 21 -49 60 -49 101v209c0 18 0 38 -14 47s-45 9 -69 9v44l172 12v-321c0 -41 2 -62 17 -76c21 -18 49 -23 93 -23 c80 0 145 61 146 137v175c0 16 -1 34 -14 43c-14 9 -45 9 -69 9v44l172 12v-50c30 6 57 19 74 38h-1c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -37 61 -77'], + 0xE0BF: [-100,156,436,0,436,'436 -156h-436v56h436v-56'], + 0xE0C0: [683,245,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -139 -123 -251 -279 -252c-15 -14 -27 -30 -36 -48c-27 -54 0 -108 80 -113c34 -1 69 19 82 62c6 20 37 7 33 -14c-15 -67 -80 -110 -140 -110c-76 0 -128 62 -127 109c0 39 28 83 60 117c-146 17 -265 117 -265 250v367 c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44'], + 0xE0C1: [442,245,750,82,703,'703 -135c-15 -67 -80 -110 -140 -110c-76 0 -128 62 -127 109c0 46 40 101 79 135v75c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342 c0 -49 9 -56 83 -56v-44l-123 -8c-22 -16 -40 -38 -52 -62c-27 -54 0 -108 80 -113c34 -1 69 19 82 62c6 20 37 7 33 -14'], + 0xE0C2: [683,22,981,55,925,'925 639c-68 0 -105 -20 -125 -62l-274 -575c-8 -17 -14 -24 -36 -24s-28 7 -36 24l-289 605c-12 24 -23 32 -86 32h-24v44c52 -3 113 -4 143 -4l161 4v-44c-26 0 -83 0 -83 -23c0 0 0 -4 5 -14l241 -506l230 480c3 6 6 12 6 20c0 21 -23 43 -73 43v44 c46 -3 117 -4 130 -4c35 0 75 1 110 4v-44'], + 0xE0C3: [431,11,715,56,658,'658 387c-62 -1 -88 -27 -105 -60l-161 -315c-7 -13 -12 -23 -35 -23s-28 9 -35 23l-177 345c-15 30 -29 30 -89 30v44c42 -4 72 -4 112 -4c7 0 79 1 125 4v-44c-20 0 -54 0 -54 -21c0 -6 3 -12 5 -16l137 -267l127 248s5 10 5 20c0 23 -17 35 -44 36v44 c36 -3 102 -4 102 -4c35 0 61 2 87 4v-44'], + 0xE0C4: [683,22,1328,53,1274,'1274 639c-87 0 -103 -40 -112 -62l-230 -573c-7 -16 -10 -26 -33 -26c-22 0 -26 9 -32 25l-204 508l-203 -508c-6 -16 -10 -25 -32 -25c-23 0 -26 10 -33 26l-240 599c-10 26 -14 36 -81 36h-21v44c46 -3 91 -4 137 -4l160 4v-44c-28 0 -88 0 -88 -24c0 -3 1 -5 4 -14 l194 -485l176 438l5 14c-8 19 -21 52 -26 57c-7 7 -15 14 -70 14h-20v44c46 -3 91 -4 137 -4l159 4v-44c-28 0 -88 0 -88 -24c0 -4 0 -6 5 -17l194 -482l183 457s5 12 5 19c0 29 -38 47 -89 47v44c31 -2 91 -4 136 -4c3 0 60 0 107 4v-44'], + 0xE0C5: [431,11,958,54,903,'903 387c-28 0 -72 -5 -96 -60l-137 -314c-10 -22 -20 -24 -34 -24c-17 0 -25 4 -33 22l-125 283l-124 -283c-8 -18 -16 -22 -33 -22c-14 0 -24 2 -34 24l-151 345c-13 29 -31 29 -82 29v44c34 -3 74 -4 108 -4c41 0 83 1 124 4v-44c-20 0 -59 0 -59 -22 c0 -5 3 -11 5 -15l113 -255l105 240c1 2 5 12 5 12c0 10 -14 30 -26 35c-13 5 -40 5 -60 5v44c35 -3 64 -4 101 -4c38 0 80 1 118 4v-44c-20 0 -59 0 -59 -22c0 0 0 -3 6 -15l118 -270l110 249c2 4 4 13 4 17c0 18 -14 40 -57 41v44c33 -3 74 -4 107 -4s58 1 86 4v-44'], + 0xE0C6: [683,0,981,65,916,'916 0c-52 3 -108 4 -148 4l-165 -4v44c35 0 60 12 60 24c0 0 0 4 -8 12l-192 227l-172 -201c-6 -7 -12 -14 -12 -25c0 -15 14 -36 55 -37v-44c-33 2 -88 4 -144 4c-46 0 -78 0 -125 -4v44c50 0 122 8 164 57l206 240l-227 269c-19 23 -40 29 -99 29h-27v44l147 -4l166 4 v-44c-37 0 -60 -12 -60 -23c0 -3 0 -5 9 -15l155 -184l137 159c7 9 13 15 13 26c0 13 -12 36 -55 37v44c33 -2 88 -4 144 -4c46 0 78 0 125 4v-44c-70 0 -126 -14 -163 -57l-172 -199l259 -306c19 -23 28 -33 102 -33h27v-44'], + 0xE0C7: [431,0,715,52,663,'663 0c-42 4 -71 4 -111 4c-5 0 -83 -1 -124 -4v44c4 0 26 1 26 18c0 5 -1 5 -9 15c-25 28 -68 70 -103 104l-83 -82c-4 -4 -18 -19 -18 -36c0 -6 3 -17 18 -19v-44c-35 3 -76 4 -111 4c-39 0 -67 -2 -96 -4v44c87 1 124 35 152 61c15 13 102 101 109 107l-118 119 c-54 54 -55 56 -118 56h-19v44c42 -4 71 -4 111 -4c5 0 83 1 124 4v-44c-4 0 -26 -1 -26 -18c0 -10 52 -61 98 -105l50 48c28 28 38 38 38 56c0 0 -1 17 -19 19v44c35 -3 76 -4 111 -4c39 0 67 2 96 4v-44c-97 -1 -123 -27 -246 -154c45 -46 161 -166 171 -173 c12 -8 23 -16 78 -16h19v-44'], + 0xE0C8: [683,0,981,49,931,'931 639c-100 0 -134 -42 -147 -59l-243 -307v-187c0 -32 0 -42 81 -42h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v188l-265 335c-17 21 -29 31 -98 31h-27v44c52 -3 108 -4 148 -4l168 4v-44c-27 0 -66 0 -66 -19c0 -4 0 -6 10 -17l218 -277l199 253 c9 11 14 17 14 29c0 14 -11 31 -51 31v44c34 -2 91 -4 131 -4c35 0 76 1 111 4v-44'], + 0xE0C9: [431,205,715,52,658,'658 387c-75 -1 -95 -39 -107 -62l-213 -406c-46 -87 -112 -124 -171 -124c-63 0 -115 38 -115 88c0 36 26 50 49 50c26 0 49 -18 49 -49c0 -30 -21 -42 -28 -45c11 -7 19 -11 45 -11c83 0 124 84 166 172l-186 355c-15 28 -20 32 -91 32v44c44 -4 70 -4 112 -4 s84 1 126 4v-44c-27 0 -54 -2 -54 -20c0 -3 0 -6 6 -17l135 -258l125 238c3 7 6 14 6 22c0 20 -16 35 -43 35v44c32 -3 69 -4 101 -4c38 0 67 2 88 4v-44'], + 0xE0CA: [683,0,981,49,931,'931 639c-100 0 -134 -42 -147 -59l-170 -215h170v-44h-205l-38 -48v-94h243v-44h-243v-49c0 -32 0 -42 81 -42h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v50h-243v44h243v94l-38 48h-205v44h170l-192 243c-17 21 -29 31 -98 31h-27v44c52 -3 108 -4 148 -4l168 4 v-44c-27 0 -66 0 -66 -19c0 -4 0 -6 10 -17l187 -238h62l168 214c9 11 14 17 14 29c0 14 -11 31 -51 31v44c34 -2 91 -4 131 -4c35 0 76 1 111 4v-44'], + 0xE0CB: [683,0,819,97,727,'727 280l-20 -280h-580c-21 0 -30 0 -30 24c0 11 0 14 10 26l480 589h-201c-125 0 -217 -33 -229 -194h-42l13 238h563c20 0 30 0 30 -23c0 -10 0 -13 -10 -25l-479 -588h211c190 0 230 77 242 233h42'], + 0xE0CC: [431,0,611,63,530,'530 198l-20 -198h-417c-18 0 -30 0 -30 20c0 10 1 11 11 22l333 356h-128c-117 0 -149 -28 -157 -139h-42l13 172h403c17 0 30 0 30 -19c0 -9 -1 -10 -11 -21l-332 -355h134c141 0 159 49 171 162h42'], + 0xE0CD: [666,22,681,79,601,'601 320c0 -73 0 -342 -261 -342s-261 269 -261 342c0 72 0 346 261 346s261 -274 261 -346zM501 332c0 59 0 142 -14 193c-20 70 -73 108 -147 108c-43 0 -120 -17 -145 -101c-16 -57 -16 -126 -16 -200c0 -82 1 -153 15 -207c25 -101 109 -114 146 -114 c40 0 120 15 146 112c15 60 15 141 15 209'], + 0xE0CE: [705,22,782,66,713,'713 -8c0 -8 -6 -14 -14 -14h-5c-4 0 -7 1 -9 4l-44 41c-40 -29 -93 -45 -147 -45c-95 0 -185 39 -252 107c-47 47 -79 107 -94 171h-68c-10 0 -16 9 -13 18l6 16c2 6 7 10 13 10h54c-1 14 -2 28 -2 42s1 28 2 42h-60c-10 0 -16 9 -13 18l6 16c2 6 7 10 13 10h62 c15 64 47 123 94 171c67 68 157 106 252 106c54 0 107 -15 147 -44l44 41c2 2 5 3 9 3h5c8 0 14 -6 14 -14v-147c0 -8 -6 -14 -14 -14h-16c-7 0 -13 5 -14 12c-10 72 -79 119 -154 119c-76 0 -147 -32 -195 -90c-34 -41 -52 -91 -60 -143h370c9 0 16 -7 14 -14l-7 -21 c-2 -6 -7 -9 -13 -9h-369c-1 -14 -1 -28 -1 -42s0 -28 1 -42h329c9 0 16 -7 14 -14l-7 -21c-2 -6 -7 -9 -13 -9h-318c8 -53 26 -102 60 -143c48 -58 119 -91 195 -91c75 0 144 47 154 119c1 7 7 12 14 12h16c8 0 14 -6 14 -14v-147'], + 0xE0CF: [483,0,750,167,584,'376 14c0 -8 -6 -14 -14 -14h-5c-6 0 -11 3 -13 8c-37 88 -96 164 -172 223c-3 2 -5 6 -5 11c0 4 2 8 5 11c76 58 135 134 172 222c2 5 7 8 13 8h5c8 0 14 -6 14 -14c0 0 0 -2 -1 -4c-24 -81 -63 -157 -116 -223c53 -67 92 -143 116 -224zM584 14c0 -8 -6 -14 -14 -14h-5 c-6 0 -11 3 -13 8c-37 88 -96 164 -172 223c-3 2 -5 6 -5 11c0 4 2 8 5 11c76 58 135 134 172 222c2 5 7 8 13 8h5c8 0 14 -6 14 -14c0 0 0 -2 -1 -4c-24 -81 -63 -157 -116 -223c53 -67 92 -143 116 -224'], + 0xE0D0: [483,0,750,166,583,'583 242c0 -5 -2 -9 -5 -11c-75 -59 -134 -135 -172 -223c-2 -5 -7 -8 -13 -8h-5c-7 0 -14 6 -14 14l1 4c24 81 64 157 116 224c-52 66 -92 142 -116 223l-1 4c0 8 7 14 14 14h5c6 0 11 -3 13 -8c38 -88 97 -164 172 -222c3 -3 5 -7 5 -11zM375 242c0 -5 -2 -9 -5 -11 c-75 -59 -134 -135 -172 -223c-2 -5 -7 -8 -13 -8h-5c-7 0 -14 6 -14 14l1 4c24 81 64 157 116 224c-52 66 -92 142 -116 223l-1 4c0 8 7 14 14 14h5c6 0 11 -3 13 -8c38 -88 97 -164 172 -222c3 -3 5 -7 5 -11'], + 0xE0D1: [483,0,486,139,348,'348 14c0 -8 -6 -14 -14 -14h-5c-6 0 -11 3 -13 8c-37 88 -96 164 -172 223c-3 2 -5 6 -5 11c0 4 2 8 5 11c76 58 135 134 172 222c2 5 7 8 13 8h5c8 0 14 -6 14 -14c0 0 0 -2 -1 -4c-24 -81 -63 -157 -116 -223c53 -67 92 -143 116 -224'], + 0xE0D2: [483,0,486,138,347,'347 242c0 -5 -2 -9 -5 -11c-75 -59 -134 -135 -172 -223c-2 -5 -7 -8 -13 -8h-5c-7 0 -14 6 -14 14l1 4c24 81 64 157 116 224c-52 66 -92 142 -116 223l-1 4c0 8 7 14 14 14h5c6 0 11 -3 13 -8c38 -88 97 -164 172 -222c3 -3 5 -7 5 -11'], + 0xE0D3: [254,109,681,80,601,'601 -97c0 -7 -6 -12 -12 -12h-497c-6 0 -12 5 -12 12v339c0 16 24 16 24 0v-327h473v327c0 16 24 16 24 0v-339'], + 0xE0D4: [661,0,403,83,326,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM262 600c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE0D5: [661,205,438,-10,294,'294 -43c0 -103 -83 -162 -167 -162c-70 0 -137 26 -137 87c0 32 24 53 53 53c30 0 53 -21 53 -53c0 -28 -19 -42 -24 -45c18 -6 41 -9 54 -9c60 0 83 67 83 128v374c0 50 -10 57 -92 57v44l177 11v-485zM294 600c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61 c34 0 61 -27 61 -61'], + 0xE0D6: [-117,161,681,115,565,'565 -161h-450v44h450v-44'], + 0xE0D7: [911,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM657 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE0D8: [698,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM496 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16 c29 0 46 -26 46 -47'], + 0xE0D9: [925,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM680 925c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127c67 0 154 38 157 127h33'], + 0xE0DA: [690,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM530 690c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127 c67 0 154 38 157 127h33'], + 0xE0DB: [1110,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM680 925c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127c67 0 154 38 157 127h33zM614 1055c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55 '], + 0xE0DC: [875,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM530 690c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127 c67 0 154 38 157 127h33zM464 820c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE0DD: [925,200,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM680 925c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127c67 0 154 38 157 127h33zM551 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE0DE: [690,200,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM530 690c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127 c67 0 154 38 157 127h33zM401 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE0DF: [1110,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM680 925c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127c67 0 154 38 157 127h33zM616 982l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE0E0: [875,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM530 690c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127 c67 0 154 38 157 127h33zM466 747l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE0E1: [1126,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM680 925c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127c67 0 154 38 157 127h33zM612 1060c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14 c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE0E2: [891,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM530 690c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127 c67 0 154 38 157 127h33zM462 825c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29 c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE0E3: [1070,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM680 925c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127c67 0 154 38 157 127h33zM698 1046c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22 c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE0E4: [835,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM530 690c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33c3 -88 89 -127 157 -127 c67 0 154 38 157 127h33zM548 811c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE0E5: [869,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM641 752l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xE0E6: [688,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM492 526l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE0E7: [1054,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM641 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM614 999c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE0E8: [830,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM491 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM464 775c-4 -20 -19 -28 -32 -34 l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE0E9: [869,200,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM641 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM551 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE0EA: [688,200,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM492 526l-13 -14l-139 108l-139 -108l-13 14l152 162zM401 -139c0 -34 -28 -61 -61 -61 c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE0EB: [1054,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM641 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM616 926l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE0EC: [830,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM491 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM466 702l-19 -37l-199 76 c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE0ED: [1070,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM641 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM733 1004c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61 c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE0EE: [846,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM491 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM583 780c0 -22 -19 -37 -40 -45 c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63 c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE0EF: [1014,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM641 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM698 990c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26 c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE0F0: [790,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM491 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM548 766c0 0 -18 -18 -28 -26 c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE0F1: [846,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM426 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM664 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE0F2: [655,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM294 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55z M496 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE0F3: [716,200,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM551 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE0F4: [448,200,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM401 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE0F5: [911,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM574 783l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE0F6: [698,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM419 535l-26 -33l-182 110c-12 8 -26 18 -26 39s17 47 46 47c16 0 23 -7 33 -16'], + 0xE0F7: [959,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM612 893c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11 s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE0F8: [701,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM462 635c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14 c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE0F9: [800,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM715 756h-450v44h450v-44'], + 0xE0FA: [622,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM565 578h-450v44h450v-44'], + 0xE0FB: [705,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM415 617c0 49 -47 49 -75 49c-29 0 -75 0 -75 -49s47 -49 75 -49c29 0 75 0 75 49z M465 616c0 -44 -51 -87 -125 -87c-71 0 -125 40 -125 89c0 44 51 87 125 87c71 0 125 -40 125 -89'], + 0xE0FC: [841,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283zM698 817c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21 c34 0 64 16 94 43'], + 0xE0FD: [653,11,681,72,635,'635 90c0 -96 -114 -96 -121 -96c-51 0 -74 42 -78 77c-31 -51 -91 -82 -168 -82c-80 0 -196 22 -196 116c0 65 58 107 124 130c77 27 131 30 228 35v26c0 72 -53 119 -138 119c-11 0 -59 0 -92 -11c9 -6 23 -21 23 -45c0 -34 -26 -53 -53 -53c-25 0 -53 17 -53 54 c0 85 116 88 177 88c124 0 225 -55 225 -151v-205c0 -10 0 -54 40 -54s40 44 40 54v53h42v-55zM424 142v98c-239 -10 -260 -102 -260 -135c0 -52 56 -83 115 -83c25 0 145 10 145 120zM548 629c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22 c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE0FE: [911,22,958,97,860,'860 234c0 -133 -137 -256 -330 -256c-243 0 -433 166 -433 364c0 196 190 363 432 363c99 0 176 -37 237 -89l59 77c6 8 9 12 19 12c16 0 16 -11 16 -28v-234c0 -21 0 -28 -22 -28c-8 0 -20 0 -22 12c-32 186 -179 234 -269 234c-145 0 -333 -81 -333 -319 c0 -242 192 -320 334 -320c117 0 262 64 270 216c1 17 10 17 21 17c17 0 21 -5 21 -21zM694 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE0FF: [698,11,611,72,547,'547 120c0 -9 -34 -131 -207 -131c-151 0 -268 103 -268 227c0 100 84 232 280 232c70 0 181 -3 181 -88c0 -38 -29 -54 -53 -54c-28 0 -53 20 -53 53c0 18 8 34 22 44c-35 9 -63 9 -93 9c-31 0 -90 0 -138 -54c-37 -42 -46 -97 -46 -141c0 -134 95 -192 181 -192 c44 0 117 11 151 94c5 12 6 15 22 15c6 0 21 0 21 -14zM492 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE100: [869,22,958,97,860,'860 234c0 -133 -137 -256 -330 -256c-243 0 -433 166 -433 364c0 196 190 363 432 363c99 0 176 -37 237 -89l59 77c6 8 9 12 19 12c16 0 16 -11 16 -28v-234c0 -21 0 -28 -22 -28c-8 0 -20 0 -22 12c-32 186 -179 234 -269 234c-145 0 -333 -81 -333 -319 c0 -242 192 -320 334 -320c117 0 262 64 270 216c1 17 10 17 21 17c17 0 21 -5 21 -21zM678 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE101: [688,11,611,72,547,'547 120c0 -9 -34 -131 -207 -131c-151 0 -268 103 -268 227c0 100 84 232 280 232c70 0 181 -3 181 -88c0 -38 -29 -54 -53 -54c-28 0 -53 20 -53 53c0 18 8 34 22 44c-35 9 -63 9 -93 9c-31 0 -90 0 -138 -54c-37 -42 -46 -97 -46 -141c0 -134 95 -192 181 -192 c44 0 117 11 151 94c5 12 6 15 22 15c6 0 21 0 21 -14zM488 674l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE102: [869,0,1004,85,906,'906 336c0 -185 -169 -336 -381 -336h-440v44c22 0 54 0 76 2c35 3 35 16 35 41v509c0 25 0 38 -35 41c-22 2 -52 2 -76 2v44h440c214 0 381 -160 381 -347zM793 336c0 131 -43 190 -80 227c-27 26 -98 76 -217 76h-147c-51 0 -51 -6 -51 -40v-515c0 -34 0 -40 51 -40 h147c116 0 187 44 220 75c57 55 77 129 77 217zM574 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE103: [694,11,750,72,738,'673 0l-172 -11v60c-28 -24 -85 -60 -167 -60c-149 0 -262 105 -262 226c0 126 124 227 274 227c83 0 137 -35 159 -54v195c0 49 -9 56 -83 56v44l168 11v-594c0 -49 9 -56 83 -56v-44zM501 109v226c-48 68 -119 74 -148 74c-49 0 -101 -19 -136 -55 c-43 -46 -45 -112 -45 -139c0 -31 3 -88 35 -129c33 -44 83 -64 133 -64c39 0 113 13 161 87zM738 610c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE104: [911,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM617 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE105: [698,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM461 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE106: [869,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM601 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE107: [688,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM457 674l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE108: [869,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM601 752l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xE109: [688,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM457 526l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE10A: [1054,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM601 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM574 999c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE10B: [830,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM456 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM429 775c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE10C: [869,200,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM601 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM511 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE10D: [688,200,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM457 526l-13 -14l-139 108l-139 -108l-13 14l152 162zM366 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE10E: [1054,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM601 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM576 926l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE10F: [830,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM456 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM431 702l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE110: [1070,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM601 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM693 1004c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27 c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE111: [846,11,611,65,548,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM456 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM548 780c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20 c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE112: [1014,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM601 752l-12 -16l-140 66l-140 -66l-10 16l151 117zM658 990c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22 c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE113: [790,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM456 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM513 766c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55 c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE114: [846,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM386 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM624 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE115: [655,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM259 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM461 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE116: [880,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM511 819c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE117: [661,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM366 600c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE118: [679,200,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM511 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE119: [448,200,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM366 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE11A: [911,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM534 783l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE11B: [698,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM384 535l-26 -33l-182 110c-12 8 -26 18 -26 39s17 47 46 47c16 0 23 -7 33 -16'], + 0xE11C: [959,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM572 893c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29 c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE11D: [701,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM427 635c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9 c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE11E: [800,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM675 756h-450v44h450v-44'], + 0xE11F: [622,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM530 578h-450v44h450v-44'], + 0xE120: [841,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42zM658 817c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE121: [653,11,611,65,547,'547 119c0 -19 -49 -130 -208 -130c-152 0 -274 104 -274 231c0 119 107 228 259 228c187 0 223 -132 223 -199c0 -24 -9 -24 -30 -24h-352c0 -27 0 -90 39 -138c15 -17 60 -62 141 -62c56 0 130 24 158 93c6 14 8 18 23 18c5 0 21 0 21 -17zM470 256 c-1 29 -8 159 -147 159c-47 0 -144 -27 -156 -159h303zM513 629c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21 c34 0 64 16 94 43'], + 0xE122: [925,22,1033,97,946,'946 234h-20c-67 0 -67 -9 -67 -40v-166c0 -15 0 -28 -14 -28c-8 0 -43 24 -67 55c-3 -5 -29 -41 -103 -61c-51 -14 -104 -16 -141 -16c-259 0 -437 175 -437 364c0 196 190 363 431 363c117 0 190 -50 237 -89l59 77c6 8 9 12 19 12c16 0 16 -11 16 -28v-234 c0 -21 0 -28 -22 -28c-8 0 -20 0 -22 12c-32 185 -179 234 -269 234c-145 0 -332 -81 -332 -319c0 -230 179 -320 347 -320c13 0 74 0 124 19c68 25 68 66 68 89v62c0 31 0 42 -106 42h-50v44c50 -4 144 -4 198 -4l151 4v-44zM706 925c-3 -114 -99 -179 -190 -179 s-187 65 -190 179h33c3 -88 89 -127 157 -127c67 0 154 38 157 127h33'], + 0xE123: [690,206,681,63,635,'635 396c0 -20 -13 -37 -37 -37s-37 17 -37 37c0 14 5 20 8 24c-16 -1 -61 -2 -109 -31c12 -11 45 -46 45 -94c0 -77 -82 -147 -200 -147c-35 0 -74 6 -114 27c-3 1 -7 2 -7 2c-3 0 -13 -16 -13 -36c0 -19 11 -58 59 -66c5 -1 49 -1 74 -1c107 0 171 0 238 -32 c49 -24 75 -72 75 -117c0 -87 -143 -131 -277 -131c-145 0 -277 50 -277 129c0 53 58 85 108 98c-9 7 -43 40 -43 93c0 22 6 52 30 81c-15 12 -52 49 -52 100c0 77 82 147 200 147c62 0 107 -21 130 -35c53 41 106 46 130 46c48 0 69 -31 69 -57zM417 295 c0 56 -24 114 -112 114c-87 0 -111 -59 -111 -114c0 -56 24 -114 112 -114c87 0 111 59 111 114zM548 -77c0 75 -141 75 -241 75h-65c-75 0 -110 -43 -110 -74c0 -53 93 -97 208 -97c119 0 208 47 208 96zM483 690c-3 -114 -99 -179 -190 -179s-187 65 -190 179h33 c3 -88 89 -127 157 -127c67 0 154 38 157 127h33'], + 0xE124: [705,303,1033,97,946,'946 234h-20c-67 0 -67 -9 -67 -40v-166c0 -15 0 -28 -14 -28c-8 0 -43 24 -67 55c-3 -5 -29 -41 -103 -61c-51 -14 -104 -16 -141 -16c-259 0 -437 175 -437 364c0 196 190 363 431 363c117 0 190 -50 237 -89l59 77c6 8 9 12 19 12c16 0 16 -11 16 -28v-234 c0 -21 0 -28 -22 -28c-8 0 -20 0 -22 12c-32 185 -179 234 -269 234c-145 0 -332 -81 -332 -319c0 -230 179 -320 347 -320c13 0 74 0 124 19c68 25 68 66 68 89v62c0 31 0 42 -106 42h-50v44c50 -4 144 -4 198 -4l151 4v-44zM567 -150c0 -94 -70 -153 -81 -153 c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE125: [741,206,681,63,635,'344 550c0 -24 -17 -46 -46 -46c-36 0 -56 37 -56 84c0 94 70 153 81 153c5 0 12 -6 12 -13c0 -5 0 -6 -6 -11c-41 -34 -63 -79 -63 -133c0 0 12 11 32 11c29 0 46 -22 46 -45zM635 396c0 -20 -13 -37 -37 -37s-37 17 -37 37c0 14 5 20 8 24c-16 -1 -61 -2 -109 -31 c12 -11 45 -46 45 -94c0 -77 -82 -147 -200 -147c-35 0 -74 6 -114 27c-3 1 -7 2 -7 2c-3 0 -13 -16 -13 -36c0 -19 11 -58 59 -66c5 -1 49 -1 74 -1c107 0 171 0 238 -32c49 -24 75 -72 75 -117c0 -87 -143 -131 -277 -131c-145 0 -277 50 -277 129c0 53 58 85 108 98 c-9 7 -43 40 -43 93c0 22 6 52 30 81c-15 12 -52 49 -52 100c0 77 82 147 200 147c62 0 107 -21 130 -35c53 41 106 46 130 46c48 0 69 -31 69 -57zM417 295c0 56 -24 114 -112 114c-87 0 -111 -59 -111 -114c0 -56 24 -114 112 -114c87 0 111 59 111 114zM548 -77 c0 75 -141 75 -241 75h-65c-75 0 -110 -43 -110 -74c0 -53 93 -97 208 -97c119 0 208 47 208 96'], + 0xE126: [911,0,494,77,417,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM414 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE127: [698,0,403,83,357,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM357 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE128: [869,0,494,77,417,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM398 752l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xE129: [688,0,403,49,353,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM353 526l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE12A: [846,0,494,73,421,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM183 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM421 791 c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE12B: [655,0,403,45,357,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM155 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM357 600c0 -31 -25 -55 -55 -55 c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE12C: [880,0,494,77,417,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM308 819c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE12D: [683,200,494,77,417,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM308 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE12E: [661,200,403,83,326,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM262 600c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61zM262 -139c0 -34 -28 -61 -61 -61 c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE12F: [911,0,494,77,417,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM331 783l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE130: [698,0,403,46,326,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM280 535l-26 -33l-182 110c-12 8 -26 18 -26 39s17 47 46 47c16 0 23 -7 33 -16'], + 0xE131: [959,0,494,77,417,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM369 893c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19 c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE132: [701,0,403,80,326,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM323 635c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21 c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE133: [800,0,494,22,472,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM472 756h-450v44h450v-44'], + 0xE134: [622,0,403,-24,426,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM426 578h-450v44h450v-44'], + 0xE135: [841,0,494,39,455,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44zM455 817c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21 c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE136: [653,0,403,-7,409,'326 0c-37 3 -81 4 -119 4c-41 0 -83 -1 -124 -4v44h18c65 0 65 9 65 40v247c0 49 -8 56 -79 56v44l164 11v-358c0 -40 8 -40 75 -40v-44zM409 629c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24 s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE137: [683,303,1015,83,934,'934 0c-49 4 -84 4 -131 4l-161 -4v44c18 0 51 0 51 24c0 11 -11 25 -17 31l-224 258l-152 -116v-156c0 -31 0 -41 81 -41h30v-44l-164 4l-164 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-304l380 288 c16 12 22 22 22 33c0 22 -26 24 -33 24v44l146 -4c45 0 63 1 102 4v-44c-77 0 -132 -30 -163 -53l-226 -172l280 -322c36 -41 52 -48 126 -48v-44zM558 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11 c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE138: [694,303,715,76,665,'665 0c-36 3 -64 4 -102 4c-15 0 -83 -1 -124 -4v44c6 0 26 1 26 15c0 13 -12 25 -29 44l-114 123l-82 -56v-86c0 -31 0 -40 65 -40h18v-44c-39 3 -84 4 -124 4c-39 0 -84 -1 -123 -4v44h18c65 0 65 9 65 40v499c0 49 -9 56 -83 56v44l168 11v-471l163 112 c29 20 29 35 29 38c0 0 -1 12 -15 14v44c33 -2 93 -4 131 -4c12 0 49 0 85 4v-44c-19 0 -71 -2 -137 -42c-5 -2 -96 -64 -112 -75l164 -179c43 -47 68 -47 113 -47v-44zM408 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133 c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE139: [911,0,831,83,750,'750 271l-33 -271h-634v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44l169 -4c57 0 131 0 187 4v-44h-43c-96 0 -96 -11 -96 -42v-515c0 -31 0 -38 49 -38h123c195 0 221 111 236 227h42zM419 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117 c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE13A: [922,0,403,83,369,'334 0c-42 3 -84 4 -126 4s-83 -1 -125 -4v44h18c65 0 65 9 65 40v499c0 49 -9 56 -83 56v44l168 11v-610c0 -31 0 -40 65 -40h18v-44zM368 867c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE13B: [683,0,831,83,750,'750 271l-33 -271h-634v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44l169 -4c57 0 131 0 187 4v-44h-43c-96 0 -96 -11 -96 -42v-515c0 -31 0 -38 49 -38h123c195 0 221 111 236 227h42zM610 599c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11 c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE13C: [694,0,403,83,399,'334 0c-42 3 -84 4 -126 4s-83 -1 -125 -4v44h18c65 0 65 9 65 40v499c0 49 -9 56 -83 56v44l168 11v-610c0 -31 0 -40 65 -40h18v-44zM399 610c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45 c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE13D: [683,303,831,83,750,'750 271l-33 -271h-634v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44l169 -4c57 0 131 0 187 4v-44h-43c-96 0 -96 -11 -96 -42v-515c0 -31 0 -38 49 -38h123c195 0 221 111 236 227h42zM466 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11 c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE13E: [694,303,403,83,334,'334 0c-42 3 -84 4 -126 4s-83 -1 -125 -4v44h18c65 0 65 9 65 40v499c0 49 -9 56 -83 56v44l168 11v-610c0 -31 0 -40 65 -40h18v-44zM252 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45 c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE13F: [911,0,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-542c0 -21 0 -30 -23 -30c-11 0 -15 0 -25 12l-498 594v-495c0 -26 0 -67 111 -67v-44c-41 3 -106 4 -134 4c-45 0 -89 -1 -134 -4v44c111 0 111 41 111 67v505c0 16 -1 17 -4 19c-10 3 -56 4 -68 4h-39v44h194c20 0 22 0 32 -12 l431 -514v415c0 26 0 67 -111 67v44c41 -3 106 -4 134 -4c45 0 89 1 134 4v-44zM657 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE140: [698,0,750,82,683,'683 0c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v219c0 64 -17 106 -91 106c-62 0 -166 -38 -166 -151v-174c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l164 11v-98 c23 39 79 98 186 98c93 0 168 -30 168 -140v-218c0 -31 0 -40 65 -40h18v-44zM531 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE141: [869,0,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-542c0 -21 0 -30 -23 -30c-11 0 -15 0 -25 12l-498 594v-495c0 -26 0 -67 111 -67v-44c-41 3 -106 4 -134 4c-45 0 -89 -1 -134 -4v44c111 0 111 41 111 67v505c0 16 -1 17 -4 19c-10 3 -56 4 -68 4h-39v44h194c20 0 22 0 32 -12 l431 -514v415c0 26 0 67 -111 67v44c41 -3 106 -4 134 -4c45 0 89 1 134 4v-44zM641 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE142: [688,0,750,82,683,'683 0c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v219c0 64 -17 106 -91 106c-62 0 -166 -38 -166 -151v-174c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l164 11v-98 c23 39 79 98 186 98c93 0 168 -30 168 -140v-218c0 -31 0 -40 65 -40h18v-44zM527 674l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE143: [683,303,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-542c0 -21 0 -30 -23 -30c-11 0 -15 0 -25 12l-498 594v-495c0 -26 0 -67 111 -67v-44c-41 3 -106 4 -134 4c-45 0 -89 -1 -134 -4v44c111 0 111 41 111 67v505c0 16 -1 17 -4 19c-10 3 -56 4 -68 4h-39v44h194c20 0 22 0 32 -12 l431 -514v415c0 26 0 67 -111 67v44c41 -3 106 -4 134 -4c45 0 89 1 134 4v-44zM541 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE144: [442,303,750,82,683,'683 0c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v219c0 64 -17 106 -91 106c-62 0 -166 -38 -166 -151v-174c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l164 11v-98 c23 39 79 98 186 98c93 0 168 -30 168 -140v-218c0 -31 0 -40 65 -40h18v-44zM426 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE145: [841,0,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-542c0 -21 0 -30 -23 -30c-11 0 -15 0 -25 12l-498 594v-495c0 -26 0 -67 111 -67v-44c-41 3 -106 4 -134 4c-45 0 -89 -1 -134 -4v44c111 0 111 41 111 67v505c0 16 -1 17 -4 19c-10 3 -56 4 -68 4h-39v44h194c20 0 22 0 32 -12 l431 -514v415c0 26 0 67 -111 67v44c41 -3 106 -4 134 -4c45 0 89 1 134 4v-44zM698 817c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22 c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE146: [653,0,750,82,683,'683 0c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v219c0 64 -17 106 -91 106c-62 0 -166 -38 -166 -151v-174c0 -31 0 -40 65 -40h18v-44c-42 3 -85 4 -127 4c-43 0 -85 -1 -128 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l164 11v-98 c23 39 79 98 186 98c93 0 168 -30 168 -140v-218c0 -31 0 -40 65 -40h18v-44zM583 629c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22 c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE147: [911,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM681 856c-4 -20 -19 -28 -32 -34 l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE148: [698,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM496 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147 c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE149: [869,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM665 752l-12 -16l-140 66l-140 -66 l-10 16l151 117'], + 0xE14A: [688,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM492 526l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE14B: [1054,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM665 752l-12 -16l-140 66l-140 -66 l-10 16l151 117zM638 999c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE14C: [830,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM491 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM464 775 c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE14D: [869,200,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM665 752l-12 -16l-140 66l-140 -66 l-10 16l151 117zM575 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE14E: [688,200,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM492 526l-13 -14l-139 108l-139 -108l-13 14l152 162zM401 -139 c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE14F: [1054,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM665 752l-12 -16l-140 66l-140 -66 l-10 16l151 117zM640 926l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE150: [830,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM491 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM466 702 l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE151: [1070,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM665 752l-12 -16l-140 66l-140 -66 l-10 16l151 117zM757 1004c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29 c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE152: [846,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM491 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM583 780 c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3 c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE153: [1014,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM665 752l-12 -16l-140 66l-140 -66 l-10 16l151 117zM722 990c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE154: [790,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM491 528l-12 -16l-140 66l-140 -66l-10 16l151 117zM548 766 c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE155: [846,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM450 791c0 -31 -25 -55 -55 -55 c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM688 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE156: [655,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM294 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55 s55 -24 55 -55zM496 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE157: [705,200,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM575 -139c0 -34 -28 -61 -61 -61 c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE158: [448,200,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM401 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61 c34 0 61 -27 61 -61'], + 0xE159: [911,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM598 783l-19 -37l-199 76 c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE15A: [698,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM419 535l-26 -33l-182 110c-12 8 -26 18 -26 39s17 47 46 47 c16 0 23 -7 33 -16'], + 0xE15B: [959,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM636 893c0 -22 -19 -37 -40 -45 c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63 c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE15C: [701,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM462 635c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17 c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51 '], + 0xE15D: [911,22,1028,97,927,'927 339c0 -99 -47 -191 -122 -255c-81 -71 -186 -106 -293 -106c-108 0 -213 35 -294 106c-74 64 -121 156 -121 255c0 100 47 193 121 259c81 71 186 107 294 107c82 0 163 -21 233 -63c24 5 45 20 57 41h-4c-41 0 -61 31 -61 61c0 31 20 61 61 61c36 0 61 -35 61 -74 c0 -53 -29 -102 -73 -117c6 -5 13 -10 19 -16c75 -66 122 -159 122 -259zM810 355c0 83 -24 164 -81 224c-56 59 -135 90 -217 90s-162 -31 -218 -90c-57 -60 -80 -141 -80 -224c0 -88 22 -176 80 -243c55 -62 135 -97 218 -97s163 35 217 97c59 67 81 155 81 243zM646 856 c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE15E: [698,11,680,64,631,'631 478c0 -56 -31 -107 -79 -118c37 -40 60 -92 60 -148c0 -62 -32 -118 -80 -158c-54 -44 -124 -65 -194 -65s-139 21 -194 65c-48 40 -80 96 -80 158c0 65 31 124 80 166c54 46 123 69 194 69c65 0 128 -19 180 -57c24 5 44 20 57 41c-2 -1 -5 -1 -5 -1 c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -36 61 -75zM512 224c0 49 -5 101 -39 138s-84 52 -135 52c-50 0 -101 -15 -135 -52c-33 -37 -39 -89 -39 -138c0 -52 5 -107 39 -146c34 -38 84 -53 135 -53s102 15 135 53c34 39 39 94 39 146zM461 651 c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE15F: [805,200,1028,97,927,'927 339c0 -99 -47 -191 -122 -255c-81 -71 -186 -106 -293 -106c-108 0 -213 35 -294 106c-74 64 -121 156 -121 255c0 100 47 193 121 259c81 71 186 107 294 107c82 0 163 -21 233 -63c24 5 45 20 57 41h-4c-41 0 -61 31 -61 61c0 31 20 61 61 61c36 0 61 -35 61 -74 c0 -53 -29 -102 -73 -117c6 -5 13 -10 19 -16c75 -66 122 -159 122 -259zM810 355c0 83 -24 164 -81 224c-56 59 -135 90 -217 90s-162 -31 -218 -90c-57 -60 -80 -141 -80 -224c0 -88 22 -176 80 -243c55 -62 135 -97 218 -97s163 35 217 97c59 67 81 155 81 243zM574 -139 c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE160: [553,200,680,64,631,'631 478c0 -56 -31 -107 -79 -118c37 -40 60 -92 60 -148c0 -62 -32 -118 -80 -158c-54 -44 -124 -65 -194 -65s-139 21 -194 65c-48 40 -80 96 -80 158c0 65 31 124 80 166c54 46 123 69 194 69c65 0 128 -19 180 -57c24 5 44 20 57 41c-2 -1 -5 -1 -5 -1 c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -36 61 -75zM512 224c0 49 -5 101 -39 138s-84 52 -135 52c-50 0 -101 -15 -135 -52c-33 -37 -39 -89 -39 -138c0 -52 5 -107 39 -146c34 -38 84 -53 135 -53s102 15 135 53c34 39 39 94 39 146zM401 -139 c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE161: [911,22,1028,97,927,'927 339c0 -99 -47 -191 -122 -255c-81 -71 -186 -106 -293 -106c-108 0 -213 35 -294 106c-74 64 -121 156 -121 255c0 100 47 193 121 259c81 71 186 107 294 107c82 0 163 -21 233 -63c24 5 45 20 57 41h-4c-41 0 -61 31 -61 61c0 31 20 61 61 61c36 0 61 -35 61 -74 c0 -53 -29 -102 -73 -117c6 -5 13 -10 19 -16c75 -66 122 -159 122 -259zM810 355c0 83 -24 164 -81 224c-56 59 -135 90 -217 90s-162 -31 -218 -90c-57 -60 -80 -141 -80 -224c0 -88 22 -176 80 -243c55 -62 135 -97 218 -97s163 35 217 97c59 67 81 155 81 243zM597 783 l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE162: [698,11,680,64,631,'631 478c0 -56 -31 -107 -79 -118c37 -40 60 -92 60 -148c0 -62 -32 -118 -80 -158c-54 -44 -124 -65 -194 -65s-139 21 -194 65c-48 40 -80 96 -80 158c0 65 31 124 80 166c54 46 123 69 194 69c65 0 128 -19 180 -57c24 5 44 20 57 41c-2 -1 -5 -1 -5 -1 c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -36 61 -75zM512 224c0 49 -5 101 -39 138s-84 52 -135 52c-50 0 -101 -15 -135 -52c-33 -37 -39 -89 -39 -138c0 -52 5 -107 39 -146c34 -38 84 -53 135 -53s102 15 135 53c34 39 39 94 39 146zM419 535l-26 -33l-182 110 c-12 8 -26 18 -26 39s17 47 46 47c16 0 23 -7 33 -16'], + 0xE163: [959,22,1028,97,927,'927 339c0 -99 -47 -191 -122 -255c-81 -71 -186 -106 -293 -106c-108 0 -213 35 -294 106c-74 64 -121 156 -121 255c0 100 47 193 121 259c81 71 186 107 294 107c82 0 163 -21 233 -63c24 5 45 20 57 41h-4c-41 0 -61 31 -61 61c0 31 20 61 61 61c36 0 61 -35 61 -74 c0 -53 -29 -102 -73 -117c6 -5 13 -10 19 -16c75 -66 122 -159 122 -259zM810 355c0 83 -24 164 -81 224c-56 59 -135 90 -217 90s-162 -31 -218 -90c-57 -60 -80 -141 -80 -224c0 -88 22 -176 80 -243c55 -62 135 -97 218 -97s163 35 217 97c59 67 81 155 81 243zM635 893 c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3 c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE164: [701,11,680,64,631,'631 478c0 -56 -31 -107 -79 -118c37 -40 60 -92 60 -148c0 -62 -32 -118 -80 -158c-54 -44 -124 -65 -194 -65s-139 21 -194 65c-48 40 -80 96 -80 158c0 65 31 124 80 166c54 46 123 69 194 69c65 0 128 -19 180 -57c24 5 44 20 57 41c-2 -1 -5 -1 -5 -1 c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -36 61 -75zM512 224c0 49 -5 101 -39 138s-84 52 -135 52c-50 0 -101 -15 -135 -52c-33 -37 -39 -89 -39 -138c0 -52 5 -107 39 -146c34 -38 84 -53 135 -53s102 15 135 53c34 39 39 94 39 146zM462 635 c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3 c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE165: [841,22,1028,97,927,'927 339c0 -99 -47 -191 -122 -255c-81 -71 -186 -106 -293 -106c-108 0 -213 35 -294 106c-74 64 -121 156 -121 255c0 100 47 193 121 259c81 71 186 107 294 107c82 0 163 -21 233 -63c24 5 45 20 57 41h-4c-41 0 -61 31 -61 61c0 31 20 61 61 61c36 0 61 -35 61 -74 c0 -53 -29 -102 -73 -117c6 -5 13 -10 19 -16c75 -66 122 -159 122 -259zM810 355c0 83 -24 164 -81 224c-56 59 -135 90 -217 90s-162 -31 -218 -90c-57 -60 -80 -141 -80 -224c0 -88 22 -176 80 -243c55 -62 135 -97 218 -97s163 35 217 97c59 67 81 155 81 243zM721 817 c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE166: [653,11,680,64,631,'631 478c0 -56 -31 -107 -79 -118c37 -40 60 -92 60 -148c0 -62 -32 -118 -80 -158c-54 -44 -124 -65 -194 -65s-139 21 -194 65c-48 40 -80 96 -80 158c0 65 31 124 80 166c54 46 123 69 194 69c65 0 128 -19 180 -57c24 5 44 20 57 41c-2 -1 -5 -1 -5 -1 c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -36 61 -75zM512 224c0 49 -5 101 -39 138s-84 52 -135 52c-50 0 -101 -15 -135 -52c-33 -37 -39 -89 -39 -138c0 -52 5 -107 39 -146c34 -38 84 -53 135 -53s102 15 135 53c34 39 39 94 39 146zM548 629c0 0 -18 -18 -28 -26 c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE167: [941,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM520 895c0 -14 -9 -27 -18 -36 l-109 -113l-34 25l72 140c6 11 16 30 41 30c23 0 48 -22 48 -46zM728 895c0 -14 -9 -27 -18 -36l-109 -113l-34 25l72 140c6 11 16 30 41 30c23 0 48 -22 48 -46'], + 0xE168: [698,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM346 652c0 -14 -9 -27 -18 -36l-109 -113l-34 25l72 140 c6 11 16 30 41 30c23 0 48 -22 48 -46zM554 652c0 -14 -9 -27 -18 -36l-109 -113l-34 25l72 140c6 11 16 30 41 30c23 0 48 -22 48 -46'], + 0xE169: [800,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM739 756h-450v44h450v-44'], + 0xE16A: [622,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM565 578h-450v44h450v-44'], + 0xE16B: [841,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339zM722 817c0 0 -18 -18 -28 -26 c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE16C: [653,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198zM548 629c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55 c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE16D: [911,22,969,85,937,'937 93c0 -33 -26 -115 -122 -115c-43 0 -103 9 -141 38c-53 40 -53 79 -53 156c0 59 0 83 -37 113c-31 26 -78 40 -132 40h-154v-240c0 -31 0 -41 81 -41h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44h378c166 0 321 -80 321 -184 c0 -92 -123 -141 -187 -158c60 -16 112 -51 127 -110c3 -13 8 -53 11 -80c8 -64 17 -140 85 -140c34 0 71 26 75 83c1 14 5 20 21 20c11 0 21 -2 21 -21zM667 499c0 140 -153 140 -266 140h-71c-30 -3 -32 -8 -32 -38v-243h154c101 0 215 26 215 141zM651 856 c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE16E: [698,0,542,76,479,'479 373c0 -34 -26 -51 -51 -51c-22 0 -50 15 -50 51c0 22 14 36 14 36c-95 -2 -148 -92 -148 -185v-139c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l160 11v-110h1c39 84 103 110 153 110 c53 0 89 -31 89 -69zM427 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE16F: [869,22,969,85,937,'937 93c0 -33 -26 -115 -122 -115c-43 0 -103 9 -141 38c-53 40 -53 79 -53 156c0 59 0 83 -37 113c-31 26 -78 40 -132 40h-154v-240c0 -31 0 -41 81 -41h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44h378c166 0 321 -80 321 -184 c0 -92 -123 -141 -187 -158c60 -16 112 -51 127 -110c3 -13 8 -53 11 -80c8 -64 17 -140 85 -140c34 0 71 26 75 83c1 14 5 20 21 20c11 0 21 -2 21 -21zM667 499c0 140 -153 140 -266 140h-71c-30 -3 -32 -8 -32 -38v-243h154c101 0 215 26 215 141zM635 853l-151 -117 l-151 117l12 16l140 -66l140 66'], + 0xE170: [688,0,542,76,479,'479 373c0 -34 -26 -51 -51 -51c-22 0 -50 15 -50 51c0 22 14 36 14 36c-95 -2 -148 -92 -148 -185v-139c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l160 11v-110h1c39 84 103 110 153 110 c53 0 89 -31 89 -69zM423 674l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE171: [683,303,969,85,937,'937 93c0 -33 -26 -115 -122 -115c-43 0 -103 9 -141 38c-53 40 -53 79 -53 156c0 59 0 83 -37 113c-31 26 -78 40 -132 40h-154v-240c0 -31 0 -41 81 -41h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44h378c166 0 321 -80 321 -184 c0 -92 -123 -141 -187 -158c60 -16 112 -51 127 -110c3 -13 8 -53 11 -80c8 -64 17 -140 85 -140c34 0 71 26 75 83c1 14 5 20 21 20c11 0 21 -2 21 -21zM667 499c0 140 -153 140 -266 140h-71c-30 -3 -32 -8 -32 -38v-243h154c101 0 215 26 215 141zM535 -150 c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE172: [442,303,542,76,479,'479 373c0 -34 -26 -51 -51 -51c-22 0 -50 15 -50 51c0 22 14 36 14 36c-95 -2 -148 -92 -148 -185v-139c0 -31 0 -41 77 -41h27v-44l-143 4c-42 0 -87 -1 -129 -4v44h18c65 0 65 9 65 40v247c0 49 -9 56 -83 56v44l160 11v-110h1c39 84 103 110 153 110 c53 0 89 -31 89 -69zM253 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE173: [911,22,750,97,652,'652 181c0 -104 -96 -203 -247 -203c-68 0 -161 12 -235 68c0 0 -34 -50 -39 -56c-6 -9 -8 -12 -18 -12c-16 0 -16 11 -16 28v192c0 21 0 29 21 29c20 0 20 -6 21 -23c3 -59 27 -104 75 -136c61 -40 145 -46 191 -46c116 0 186 71 186 142c0 68 -61 118 -128 134l-158 31 c-46 9 -96 19 -147 62c-31 26 -61 69 -61 125c0 101 102 189 244 189c91 0 154 -28 201 -71l39 58c9 13 15 13 20 13c16 0 16 -11 16 -28v-193c0 -21 0 -28 -21 -28c-15 0 -19 3 -22 17c-11 73 -54 191 -233 191c-109 0 -183 -63 -183 -129c0 -76 83 -113 123 -121 c10 -3 68 -14 124 -25c82 -16 136 -26 183 -72c18 -17 64 -61 64 -136zM542 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE174: [698,11,549,70,478,'478 126c0 -50 -33 -137 -200 -137c-25 0 -88 1 -138 45l-26 -25c-19 -19 -20 -20 -28 -20c-16 0 -16 11 -16 28v128c0 21 0 29 21 29c17 0 18 -3 23 -21c30 -106 96 -131 164 -131c121 0 150 52 150 87c0 68 -92 82 -150 91c-92 14 -208 32 -208 126 c0 46 34 122 199 122c50 0 87 -10 110 -23c6 -4 9 -4 9 -4c4 0 22 16 26 20c8 6 12 7 17 7c16 0 16 -11 16 -28v-97c0 -21 0 -28 -21 -28c-19 0 -20 6 -21 21c-6 69 -54 102 -137 102c-109 0 -148 -38 -148 -73c0 -53 77 -65 141 -75c84 -13 114 -17 154 -42 c38 -24 63 -57 63 -102zM430 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE175: [869,22,750,97,652,'652 181c0 -104 -96 -203 -247 -203c-68 0 -161 12 -235 68c0 0 -34 -50 -39 -56c-6 -9 -8 -12 -18 -12c-16 0 -16 11 -16 28v192c0 21 0 29 21 29c20 0 20 -6 21 -23c3 -59 27 -104 75 -136c61 -40 145 -46 191 -46c116 0 186 71 186 142c0 68 -61 118 -128 134l-158 31 c-46 9 -96 19 -147 62c-31 26 -61 69 -61 125c0 101 102 189 244 189c91 0 154 -28 201 -71l39 58c9 13 15 13 20 13c16 0 16 -11 16 -28v-193c0 -21 0 -28 -21 -28c-15 0 -19 3 -22 17c-11 73 -54 191 -233 191c-109 0 -183 -63 -183 -129c0 -76 83 -113 123 -121 c10 -3 68 -14 124 -25c82 -16 136 -26 183 -72c18 -17 64 -61 64 -136zM526 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE176: [688,11,549,70,478,'478 126c0 -50 -33 -137 -200 -137c-25 0 -88 1 -138 45l-26 -25c-19 -19 -20 -20 -28 -20c-16 0 -16 11 -16 28v128c0 21 0 29 21 29c17 0 18 -3 23 -21c30 -106 96 -131 164 -131c121 0 150 52 150 87c0 68 -92 82 -150 91c-92 14 -208 32 -208 126 c0 46 34 122 199 122c50 0 87 -10 110 -23c6 -4 9 -4 9 -4c4 0 22 16 26 20c8 6 12 7 17 7c16 0 16 -11 16 -28v-97c0 -21 0 -28 -21 -28c-19 0 -20 6 -21 21c-6 69 -54 102 -137 102c-109 0 -148 -38 -148 -73c0 -53 77 -65 141 -75c84 -13 114 -17 154 -42 c38 -24 63 -57 63 -102zM426 674l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE177: [705,303,750,97,652,'652 181c0 -104 -96 -203 -247 -203c-68 0 -161 12 -235 68c0 0 -34 -50 -39 -56c-6 -9 -8 -12 -18 -12c-16 0 -16 11 -16 28v192c0 21 0 29 21 29c20 0 20 -6 21 -23c3 -59 27 -104 75 -136c61 -40 145 -46 191 -46c116 0 186 71 186 142c0 68 -61 118 -128 134l-158 31 c-46 9 -96 19 -147 62c-31 26 -61 69 -61 125c0 101 102 189 244 189c91 0 154 -28 201 -71l39 58c9 13 15 13 20 13c16 0 16 -11 16 -28v-193c0 -21 0 -28 -21 -28c-15 0 -19 3 -22 17c-11 73 -54 191 -233 191c-109 0 -183 -63 -183 -129c0 -76 83 -113 123 -121 c10 -3 68 -14 124 -25c82 -16 136 -26 183 -72c18 -17 64 -61 64 -136zM426 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE178: [448,303,549,70,478,'478 126c0 -50 -33 -137 -200 -137c-25 0 -88 1 -138 45l-26 -25c-19 -19 -20 -20 -28 -20c-16 0 -16 11 -16 28v128c0 21 0 29 21 29c17 0 18 -3 23 -21c30 -106 96 -131 164 -131c121 0 150 52 150 87c0 68 -92 82 -150 91c-92 14 -208 32 -208 126 c0 46 34 122 199 122c50 0 87 -10 110 -23c6 -4 9 -4 9 -4c4 0 22 16 26 20c8 6 12 7 17 7c16 0 16 -11 16 -28v-97c0 -21 0 -28 -21 -28c-19 0 -20 6 -21 21c-6 69 -54 102 -137 102c-109 0 -148 -38 -148 -73c0 -53 77 -65 141 -75c84 -13 114 -17 154 -42 c38 -24 63 -57 63 -102zM325 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE179: [869,0,958,73,884,'884 437h-42c-17 183 -55 194 -217 194c-22 0 -56 0 -65 -1c-26 -3 -28 -8 -28 -37v-507c0 -32 0 -42 107 -42h50v-44c-50 4 -155 4 -210 4s-160 0 -210 -4v44h50c107 0 107 10 107 42v507c0 31 -2 35 -30 37c-7 1 -43 1 -64 1c-162 0 -200 -12 -217 -194h-42l23 238h765 zM630 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE17A: [714,11,542,51,444,'444 126c0 -82 -56 -137 -131 -137c-62 0 -156 23 -156 137v261h-106v33c102 3 152 101 153 195h42v-184h177v-44h-177v-261c0 -21 0 -101 77 -101c35 0 79 29 79 104v52h42v-55zM394 630c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133 c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE17B: [675,303,958,73,884,'884 437h-42c-17 183 -55 194 -217 194c-22 0 -56 0 -65 -1c-26 -3 -28 -8 -28 -37v-507c0 -32 0 -42 107 -42h50v-44c-50 4 -155 4 -210 4s-160 0 -210 -4v44h50c107 0 107 10 107 42v507c0 31 -2 35 -30 37c-7 1 -43 1 -64 1c-162 0 -200 -12 -217 -194h-42l23 238h765 zM530 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE17C: [615,303,542,51,444,'444 126c0 -82 -56 -137 -131 -137c-62 0 -156 23 -156 137v261h-106v33c102 3 152 101 153 195h42v-184h177v-44h-177v-261c0 -21 0 -101 77 -101c35 0 79 29 79 104v52h42v-55zM322 -150c0 -94 -70 -153 -81 -153c-5 0 -12 6 -12 13c0 5 0 6 6 11c41 34 63 79 63 133 c0 0 -12 -11 -32 -11c-29 0 -46 22 -46 45c0 24 17 46 46 46c36 0 56 -37 56 -84'], + 0xE17D: [675,200,958,73,884,'884 437h-42c-17 183 -55 194 -217 194c-22 0 -56 0 -65 -1c-26 -3 -28 -8 -28 -37v-507c0 -32 0 -42 107 -42h50v-44c-39 3 -112 4 -168 4v-70c67 0 141 -9 141 -67c0 -67 -184 -67 -325 -67h-42v42h21c102 0 246 0 246 25s-71 25 -125 25v112c-56 0 -129 -1 -168 -4v44 h50c107 0 107 10 107 42v507c0 31 -2 35 -30 37c-7 1 -43 1 -64 1c-162 0 -200 -12 -217 -194h-42l23 238h765'], + 0xE17E: [615,200,542,51,479,'479 -133c0 -67 -184 -67 -325 -67h-42v42h21c102 0 246 0 246 25s-71 25 -125 25v105c-50 13 -97 48 -97 129v261h-106v33c102 3 152 101 153 195h42v-184h177v-44h-177v-261c0 -21 0 -101 77 -101c35 0 79 29 79 104v52h42v-55c0 -73 -44 -124 -106 -135v-57 c67 0 141 -9 141 -67'], + 0xE17F: [911,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM687 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE180: [698,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM531 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33 l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE181: [869,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM671 752l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xE182: [688,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM527 526l-13 -14l-139 108l-139 -108l-13 14 l152 162'], + 0xE183: [846,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM456 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM694 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE184: [655,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM329 600c0 -31 -25 -55 -55 -55 c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM531 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE185: [683,200,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM581 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE186: [442,200,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM436 -139c0 -34 -28 -61 -61 -61 c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE187: [911,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM604 783l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE188: [698,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM454 535l-26 -33l-182 110c-12 8 -26 18 -26 39 s17 47 46 47c16 0 23 -7 33 -16'], + 0xE189: [959,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM642 893c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9 c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE18A: [701,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM497 635c0 -22 -19 -37 -40 -45 c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63 c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE18B: [911,22,980,83,914,'914 729c0 -70 -59 -121 -131 -130v-371c0 -68 -31 -132 -83 -178c-53 -47 -123 -72 -197 -72c-80 0 -157 24 -217 72c-57 45 -92 109 -93 178v383c0 11 -7 20 -18 23c-18 5 -61 5 -92 5v44l163 -4l164 4v-44c-31 0 -74 0 -93 -5c-10 -3 -18 -12 -18 -23v-383 c0 -59 16 -111 51 -147c39 -39 94 -59 153 -59c64 0 124 20 169 60c42 37 66 90 66 146v355c0 18 -11 34 -27 42c-26 13 -55 14 -83 14v44l133 -4c7 0 15 2 22 4v-42c31 5 59 20 75 42h-5c-40 0 -61 31 -61 61c0 31 21 61 61 61c37 0 61 -36 61 -76zM652 856 c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE18C: [698,11,750,81,732,'732 476c0 -69 -61 -114 -134 -127v-249c0 -17 0 -37 13 -46c14 -10 46 -10 70 -10v-44l-168 -11v86c-31 -52 -90 -86 -155 -86c-61 0 -105 5 -145 31c-32 21 -49 60 -49 101v209c0 18 0 38 -14 47s-45 9 -69 9v44l172 12v-321c0 -41 2 -62 17 -76c21 -18 49 -23 93 -23 c80 0 145 61 146 137v175c0 16 -1 34 -14 43c-14 9 -45 9 -69 9v44l172 12v-50c30 6 57 19 74 38h-1c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -37 61 -77zM503 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE18D: [805,200,980,83,914,'914 729c0 -70 -59 -121 -131 -130v-371c0 -68 -31 -132 -83 -178c-53 -47 -123 -72 -197 -72c-80 0 -157 24 -217 72c-57 45 -92 109 -93 178v383c0 11 -7 20 -18 23c-18 5 -61 5 -92 5v44l163 -4l164 4v-44c-31 0 -74 0 -93 -5c-10 -3 -18 -12 -18 -23v-383 c0 -59 16 -111 51 -147c39 -39 94 -59 153 -59c64 0 124 20 169 60c42 37 66 90 66 146v355c0 18 -11 34 -27 42c-26 13 -55 14 -83 14v44l133 -4c7 0 15 2 22 4v-42c31 5 59 20 75 42h-5c-40 0 -61 31 -61 61c0 31 21 61 61 61c37 0 61 -36 61 -76zM551 -139 c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE18E: [553,200,750,81,732,'732 476c0 -69 -61 -114 -134 -127v-249c0 -17 0 -37 13 -46c14 -10 46 -10 70 -10v-44l-168 -11v86c-31 -52 -90 -86 -155 -86c-61 0 -105 5 -145 31c-32 21 -49 60 -49 101v209c0 18 0 38 -14 47s-45 9 -69 9v44l172 12v-321c0 -41 2 -62 17 -76c21 -18 49 -23 93 -23 c80 0 145 61 146 137v175c0 16 -1 34 -14 43c-14 9 -45 9 -69 9v44l172 12v-50c30 6 57 19 74 38h-1c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -37 61 -77zM436 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE18F: [911,22,980,83,914,'914 729c0 -70 -59 -121 -131 -130v-371c0 -68 -31 -132 -83 -178c-53 -47 -123 -72 -197 -72c-80 0 -157 24 -217 72c-57 45 -92 109 -93 178v383c0 11 -7 20 -18 23c-18 5 -61 5 -92 5v44l163 -4l164 4v-44c-31 0 -74 0 -93 -5c-10 -3 -18 -12 -18 -23v-383 c0 -59 16 -111 51 -147c39 -39 94 -59 153 -59c64 0 124 20 169 60c42 37 66 90 66 146v355c0 18 -11 34 -27 42c-26 13 -55 14 -83 14v44l133 -4c7 0 15 2 22 4v-42c31 5 59 20 75 42h-5c-40 0 -61 31 -61 61c0 31 21 61 61 61c37 0 61 -36 61 -76zM604 783l-19 -37 l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE190: [698,11,750,81,732,'732 476c0 -69 -61 -114 -134 -127v-249c0 -17 0 -37 13 -46c14 -10 46 -10 70 -10v-44l-168 -11v86c-31 -52 -90 -86 -155 -86c-61 0 -105 5 -145 31c-32 21 -49 60 -49 101v209c0 18 0 38 -14 47s-45 9 -69 9v44l172 12v-321c0 -41 2 -62 17 -76c21 -18 49 -23 93 -23 c80 0 145 61 146 137v175c0 16 -1 34 -14 43c-14 9 -45 9 -69 9v44l172 12v-50c30 6 57 19 74 38h-1c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -37 61 -77zM461 535l-26 -33l-182 110c-12 8 -26 18 -26 39s17 47 46 47c16 0 23 -7 33 -16'], + 0xE191: [959,22,980,83,914,'914 729c0 -70 -59 -121 -131 -130v-371c0 -68 -31 -132 -83 -178c-53 -47 -123 -72 -197 -72c-80 0 -157 24 -217 72c-57 45 -92 109 -93 178v383c0 11 -7 20 -18 23c-18 5 -61 5 -92 5v44l163 -4l164 4v-44c-31 0 -74 0 -93 -5c-10 -3 -18 -12 -18 -23v-383 c0 -59 16 -111 51 -147c39 -39 94 -59 153 -59c64 0 124 20 169 60c42 37 66 90 66 146v355c0 18 -11 34 -27 42c-26 13 -55 14 -83 14v44l133 -4c7 0 15 2 22 4v-42c31 5 59 20 75 42h-5c-40 0 -61 31 -61 61c0 31 21 61 61 61c37 0 61 -36 61 -76zM642 893 c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3 c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE192: [701,11,750,81,732,'732 476c0 -69 -61 -114 -134 -127v-249c0 -17 0 -37 13 -46c14 -10 46 -10 70 -10v-44l-168 -11v86c-31 -52 -90 -86 -155 -86c-61 0 -105 5 -145 31c-32 21 -49 60 -49 101v209c0 18 0 38 -14 47s-45 9 -69 9v44l172 12v-321c0 -41 2 -62 17 -76c21 -18 49 -23 93 -23 c80 0 145 61 146 137v175c0 16 -1 34 -14 43c-14 9 -45 9 -69 9v44l172 12v-50c30 6 57 19 74 38h-1c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -37 61 -77zM504 635c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19 c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE193: [841,22,980,83,914,'914 729c0 -70 -59 -121 -131 -130v-371c0 -68 -31 -132 -83 -178c-53 -47 -123 -72 -197 -72c-80 0 -157 24 -217 72c-57 45 -92 109 -93 178v383c0 11 -7 20 -18 23c-18 5 -61 5 -92 5v44l163 -4l164 4v-44c-31 0 -74 0 -93 -5c-10 -3 -18 -12 -18 -23v-383 c0 -59 16 -111 51 -147c39 -39 94 -59 153 -59c64 0 124 20 169 60c42 37 66 90 66 146v355c0 18 -11 34 -27 42c-26 13 -55 14 -83 14v44l133 -4c7 0 15 2 22 4v-42c31 5 59 20 75 42h-5c-40 0 -61 31 -61 61c0 31 21 61 61 61c37 0 61 -36 61 -76zM728 817 c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE194: [653,11,750,81,732,'732 476c0 -69 -61 -114 -134 -127v-249c0 -17 0 -37 13 -46c14 -10 46 -10 70 -10v-44l-168 -11v86c-31 -52 -90 -86 -155 -86c-61 0 -105 5 -145 31c-32 21 -49 60 -49 101v209c0 18 0 38 -14 47s-45 9 -69 9v44l172 12v-321c0 -41 2 -62 17 -76c21 -18 49 -23 93 -23 c80 0 145 61 146 137v175c0 16 -1 34 -14 43c-14 9 -45 9 -69 9v44l172 12v-50c30 6 57 19 74 38h-1c-41 0 -61 31 -61 62c0 30 20 61 61 61c37 0 61 -37 61 -77zM590 629c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21 c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE195: [941,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM526 895c0 -14 -9 -27 -18 -36l-109 -113l-34 25l72 140c6 11 16 30 41 30c23 0 48 -22 48 -46zM734 895c0 -14 -9 -27 -18 -36l-109 -113l-34 25l72 140c6 11 16 30 41 30c23 0 48 -22 48 -46'], + 0xE196: [698,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM381 652c0 -14 -9 -27 -18 -36l-109 -113l-34 25 l72 140c6 11 16 30 41 30c23 0 48 -22 48 -46zM589 652c0 -14 -9 -27 -18 -36l-109 -113l-34 25l72 140c6 11 16 30 41 30c23 0 48 -22 48 -46'], + 0xE197: [800,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM745 756h-450v44h450v-44'], + 0xE198: [622,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM600 578h-450v44h450v-44'], + 0xE199: [892,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM595 804c0 49 -47 49 -75 49c-29 0 -75 0 -75 -49s47 -49 75 -49c29 0 75 0 75 49zM645 803c0 -44 -51 -87 -125 -87c-71 0 -125 40 -125 89c0 44 51 87 125 87c71 0 125 -40 125 -89'], + 0xE19A: [705,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM450 617c0 49 -47 49 -75 49c-29 0 -75 0 -75 -49 s47 -49 75 -49c29 0 75 0 75 49zM500 616c0 -44 -51 -87 -125 -87c-71 0 -125 40 -125 89c0 44 51 87 125 87c71 0 125 -40 125 -89'], + 0xE19B: [841,22,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-342c0 -140 -124 -252 -282 -252c-165 0 -310 106 -310 253v367c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-369c0 -178 139 -207 206 -207c124 0 236 78 236 211v339c0 26 0 67 -111 67v44 c45 -3 109 -4 133 -4c14 0 84 1 133 4v-44zM728 817c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE19C: [653,11,750,82,683,'683 0l-168 -11v85c-30 -47 -79 -85 -163 -85c-65 0 -178 9 -187 121v218c0 51 -6 59 -83 59v44l172 11v-328c0 -51 4 -92 106 -92c82 0 151 54 151 146v163c0 49 -9 56 -83 56v44l172 11v-342c0 -49 9 -56 83 -56v-44zM583 629c0 0 -18 -18 -28 -26 c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE19D: [911,0,981,49,931,'931 639c-100 0 -134 -42 -147 -59l-243 -307v-187c0 -32 0 -42 81 -42h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v188l-265 335c-17 21 -29 31 -98 31h-27v44c52 -3 108 -4 148 -4l168 4v-44c-27 0 -66 0 -66 -19c0 -4 0 -6 10 -17l218 -277l199 253 c9 11 14 17 14 29c0 14 -11 31 -51 31v44c34 -2 91 -4 131 -4c35 0 76 1 111 4v-44zM657 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE19E: [698,205,715,52,658,'658 387c-75 -1 -95 -39 -107 -62l-213 -406c-46 -87 -112 -124 -171 -124c-63 0 -115 38 -115 88c0 36 26 50 49 50c26 0 49 -18 49 -49c0 -30 -21 -42 -28 -45c11 -7 19 -11 45 -11c83 0 124 84 166 172l-186 355c-15 28 -20 32 -91 32v44c44 -4 70 -4 112 -4 s84 1 126 4v-44c-27 0 -54 -2 -54 -20c0 -3 0 -6 6 -17l135 -258l125 238c3 7 6 14 6 22c0 20 -16 35 -43 35v44c32 -3 69 -4 101 -4c38 0 67 2 88 4v-44zM513 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE19F: [846,0,981,49,931,'931 639c-100 0 -134 -42 -147 -59l-243 -307v-187c0 -32 0 -42 81 -42h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v188l-265 335c-17 21 -29 31 -98 31h-27v44c52 -3 108 -4 148 -4l168 4v-44c-27 0 -66 0 -66 -19c0 -4 0 -6 10 -17l218 -277l199 253 c9 11 14 17 14 29c0 14 -11 31 -51 31v44c34 -2 91 -4 131 -4c35 0 76 1 111 4v-44zM426 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM664 791c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE1A0: [655,205,715,52,658,'658 387c-75 -1 -95 -39 -107 -62l-213 -406c-46 -87 -112 -124 -171 -124c-63 0 -115 38 -115 88c0 36 26 50 49 50c26 0 49 -18 49 -49c0 -30 -21 -42 -28 -45c11 -7 19 -11 45 -11c83 0 124 84 166 172l-186 355c-15 28 -20 32 -91 32v44c44 -4 70 -4 112 -4 s84 1 126 4v-44c-27 0 -54 -2 -54 -20c0 -3 0 -6 6 -17l135 -258l125 238c3 7 6 14 6 22c0 20 -16 35 -43 35v44c32 -3 69 -4 101 -4c38 0 67 2 88 4v-44zM311 600c0 -31 -25 -55 -55 -55c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55zM513 600c0 -31 -25 -55 -55 -55 c-31 0 -55 24 -55 55s25 55 55 55s55 -24 55 -55'], + 0xE1A1: [683,200,981,49,931,'931 639c-100 0 -134 -42 -147 -59l-243 -307v-187c0 -32 0 -42 81 -42h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v188l-265 335c-17 21 -29 31 -98 31h-27v44c52 -3 108 -4 148 -4l168 4v-44c-27 0 -66 0 -66 -19c0 -4 0 -6 10 -17l218 -277l199 253 c9 11 14 17 14 29c0 14 -11 31 -51 31v44c34 -2 91 -4 131 -4c35 0 76 1 111 4v-44zM551 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE1A2: [431,205,715,52,658,'658 387c-75 -1 -95 -39 -107 -62l-213 -406c-46 -87 -112 -124 -171 -124c-63 0 -115 38 -115 88c0 36 26 50 49 50c26 0 49 -18 49 -49c0 -30 -21 -42 -28 -45c11 -7 19 -11 45 -11c83 0 124 84 166 172l-186 355c-15 28 -20 32 -91 32v44c44 -4 70 -4 112 -4 s84 1 126 4v-44c-27 0 -54 -2 -54 -20c0 -3 0 -6 6 -17l135 -258l125 238c3 7 6 14 6 22c0 20 -16 35 -43 35v44c32 -3 69 -4 101 -4c38 0 67 2 88 4v-44zM597 -139c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61c34 0 61 -27 61 -61'], + 0xE1A3: [911,0,981,49,931,'931 639c-100 0 -134 -42 -147 -59l-243 -307v-187c0 -32 0 -42 81 -42h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v188l-265 335c-17 21 -29 31 -98 31h-27v44c52 -3 108 -4 148 -4l168 4v-44c-27 0 -66 0 -66 -19c0 -4 0 -6 10 -17l218 -277l199 253 c9 11 14 17 14 29c0 14 -11 31 -51 31v44c34 -2 91 -4 131 -4c35 0 76 1 111 4v-44zM574 783l-19 -37l-199 76c-13 6 -28 14 -32 34c-7 28 14 55 43 55c12 0 19 -4 29 -11'], + 0xE1A4: [698,205,715,52,658,'658 387c-75 -1 -95 -39 -107 -62l-213 -406c-46 -87 -112 -124 -171 -124c-63 0 -115 38 -115 88c0 36 26 50 49 50c26 0 49 -18 49 -49c0 -30 -21 -42 -28 -45c11 -7 19 -11 45 -11c83 0 124 84 166 172l-186 355c-15 28 -20 32 -91 32v44c44 -4 70 -4 112 -4 s84 1 126 4v-44c-27 0 -54 -2 -54 -20c0 -3 0 -6 6 -17l135 -258l125 238c3 7 6 14 6 22c0 20 -16 35 -43 35v44c32 -3 69 -4 101 -4c38 0 67 2 88 4v-44zM436 535l-26 -33l-182 110c-12 8 -26 18 -26 39s17 47 46 47c16 0 23 -7 33 -16'], + 0xE1A5: [959,0,981,49,931,'931 639c-100 0 -134 -42 -147 -59l-243 -307v-187c0 -32 0 -42 81 -42h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v188l-265 335c-17 21 -29 31 -98 31h-27v44c52 -3 108 -4 148 -4l168 4v-44c-27 0 -66 0 -66 -19c0 -4 0 -6 10 -17l218 -277l199 253 c9 11 14 17 14 29c0 14 -11 31 -51 31v44c34 -2 91 -4 131 -4c35 0 76 1 111 4v-44zM612 893c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27 c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE1A6: [701,205,715,52,658,'658 387c-75 -1 -95 -39 -107 -62l-213 -406c-46 -87 -112 -124 -171 -124c-63 0 -115 38 -115 88c0 36 26 50 49 50c26 0 49 -18 49 -49c0 -30 -21 -42 -28 -45c11 -7 19 -11 45 -11c83 0 124 84 166 172l-186 355c-15 28 -20 32 -91 32v44c44 -4 70 -4 112 -4 s84 1 126 4v-44c-27 0 -54 -2 -54 -20c0 -3 0 -6 6 -17l135 -258l125 238c3 7 6 14 6 22c0 20 -16 35 -43 35v44c32 -3 69 -4 101 -4c38 0 67 2 88 4v-44zM479 635c0 -22 -19 -37 -40 -45c-52 -19 -76 -33 -76 -59v-17c0 -8 -7 -14 -14 -14c-8 0 -14 6 -14 14v19 c0 8 1 15 4 21c9 26 32 45 62 61c8 5 13 13 13 20c0 13 -3 23 -10 27c-13 9 -30 11 -55 11s-46 -3 -61 -9c10 -5 16 -15 16 -29c0 -21 -16 -34 -34 -34s-34 13 -34 34v3c2 48 54 63 113 63c36 0 65 -3 91 -15c22 -9 39 -27 39 -51'], + 0xE1A7: [841,0,981,49,931,'931 639c-100 0 -134 -42 -147 -59l-243 -307v-187c0 -32 0 -42 81 -42h30v-44l-162 4l-162 -4v44h30c81 0 81 10 81 41v188l-265 335c-17 21 -29 31 -98 31h-27v44c52 -3 108 -4 148 -4l168 4v-44c-27 0 -66 0 -66 -19c0 -4 0 -6 10 -17l218 -277l199 253 c9 11 14 17 14 29c0 14 -11 31 -51 31v44c34 -2 91 -4 131 -4c35 0 76 1 111 4v-44zM698 817c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22 c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE1A8: [653,205,715,52,658,'658 387c-75 -1 -95 -39 -107 -62l-213 -406c-46 -87 -112 -124 -171 -124c-63 0 -115 38 -115 88c0 36 26 50 49 50c26 0 49 -18 49 -49c0 -30 -21 -42 -28 -45c11 -7 19 -11 45 -11c83 0 124 84 166 172l-186 355c-15 28 -20 32 -91 32v44c44 -4 70 -4 112 -4 s84 1 126 4v-44c-27 0 -54 -2 -54 -20c0 -3 0 -6 6 -17l135 -258l125 238c3 7 6 14 6 22c0 20 -16 35 -43 35v44c32 -3 69 -4 101 -4c38 0 67 2 88 4v-44zM565 629c0 0 -18 -18 -28 -26c-30 -29 -58 -55 -105 -55c-20 0 -42 5 -84 22c-23 9 -55 21 -83 21 c-34 0 -64 -16 -94 -43l-22 24s18 18 28 26c30 29 58 55 105 55c20 0 42 -5 84 -22c23 -9 55 -21 83 -21c34 0 64 16 94 43'], + 0xE1A9: [911,0,819,97,727,'727 280l-20 -280h-580c-21 0 -30 0 -30 24c0 11 0 14 10 26l480 589h-201c-125 0 -217 -33 -229 -194h-42l13 238h563c20 0 30 0 30 -23c0 -10 0 -13 -10 -25l-479 -588h211c190 0 230 77 242 233h42zM576 856c-4 -20 -19 -28 -32 -34l-199 -76l-19 37l178 117 c9 7 17 11 28 11c29 0 51 -27 44 -55'], + 0xE1AA: [698,0,611,63,530,'530 198l-20 -198h-417c-18 0 -30 0 -30 20c0 10 1 11 11 22l333 356h-128c-117 0 -149 -28 -157 -139h-42l13 172h403c17 0 30 0 30 -19c0 -9 -1 -10 -11 -21l-332 -355h134c141 0 159 49 171 162h42zM461 651c0 -21 -14 -31 -26 -39l-182 -110l-26 33l155 147 c10 9 17 16 33 16c29 0 46 -26 46 -47'], + 0xE1AB: [869,0,819,97,727,'727 280l-20 -280h-580c-21 0 -30 0 -30 24c0 11 0 14 10 26l480 589h-201c-125 0 -217 -33 -229 -194h-42l13 238h563c20 0 30 0 30 -23c0 -10 0 -13 -10 -25l-479 -588h211c190 0 230 77 242 233h42zM560 853l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE1AC: [688,0,611,63,530,'530 198l-20 -198h-417c-18 0 -30 0 -30 20c0 10 1 11 11 22l333 356h-128c-117 0 -149 -28 -157 -139h-42l13 172h403c17 0 30 0 30 -19c0 -9 -1 -10 -11 -21l-332 -355h134c141 0 159 49 171 162h42zM457 674l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE1AD: [880,0,819,97,727,'727 280l-20 -280h-580c-21 0 -30 0 -30 24c0 11 0 14 10 26l480 589h-201c-125 0 -217 -33 -229 -194h-42l13 238h563c20 0 30 0 30 -23c0 -10 0 -13 -10 -25l-479 -588h211c190 0 230 77 242 233h42zM470 819c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61 c34 0 61 -27 61 -61'], + 0xE1AE: [661,0,611,63,530,'530 198l-20 -198h-417c-18 0 -30 0 -30 20c0 10 1 11 11 22l333 356h-128c-117 0 -149 -28 -157 -139h-42l13 172h403c17 0 30 0 30 -19c0 -9 -1 -10 -11 -21l-332 -355h134c141 0 159 49 171 162h42zM366 600c0 -34 -28 -61 -61 -61c-34 0 -61 27 -61 61s28 61 61 61 c34 0 61 -27 61 -61'], + 0xE1AF: [694,-378,646,123,505,'262 439c0 -31 -22 -61 -61 -61c-48 0 -78 48 -78 113c0 125 96 203 111 203c7 0 17 -8 17 -17c0 -7 -1 -8 -13 -17c-53 -43 -82 -109 -82 -178c0 0 17 18 45 18c39 0 61 -30 61 -61zM505 439c0 -31 -22 -61 -61 -61c-48 0 -78 48 -78 113c0 125 96 203 111 203 c7 0 17 -8 17 -17c0 -7 -1 -8 -13 -17c-53 -43 -82 -109 -82 -178c0 0 17 18 45 18c39 0 61 -30 61 -61'], + 0xE1B0: [124,192,646,141,523,'280 11c0 -125 -96 -203 -111 -203c-7 0 -17 8 -17 17c0 7 1 8 13 17c53 43 82 109 82 178c0 0 -17 -18 -45 -18c-39 0 -61 30 -61 61s22 61 61 61c48 0 78 -48 78 -113zM523 11c0 -125 -96 -203 -111 -203c-7 0 -17 8 -17 17c0 7 1 8 13 17c53 43 82 109 82 178 c0 0 -17 -18 -45 -18c-39 0 -61 30 -61 61s22 61 61 61c48 0 78 -48 78 -113'], + 0xE1B1: [694,-378,646,141,523,'280 581c0 -125 -96 -203 -111 -203c-7 0 -17 8 -17 17c0 7 1 8 13 17c53 43 82 109 82 178c0 0 -17 -18 -45 -18c-39 0 -61 30 -61 61s22 61 61 61c48 0 78 -48 78 -113zM523 581c0 -125 -96 -203 -111 -203c-7 0 -17 8 -17 17c0 7 1 8 13 17c53 43 82 109 82 178 c0 0 -17 -18 -45 -18c-39 0 -61 30 -61 61s22 61 61 61c48 0 78 -48 78 -113'], + 0xE1B2: [683,0,1004,85,906,'906 336c0 -185 -169 -336 -381 -336h-440v44c22 0 54 0 76 2c35 3 35 16 35 41v233h-111v44h111v232c0 25 0 38 -35 41c-22 2 -52 2 -76 2v44h440c214 0 381 -160 381 -347zM793 336c0 131 -43 190 -80 227c-27 26 -98 76 -217 76h-147c-51 0 -51 -6 -51 -40v-235h204 v-44h-204v-236c0 -34 0 -40 51 -40h147c116 0 187 44 220 75c57 55 77 129 77 217'], + 0xE1B3: [713,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256'], + 0xE1B4: [446,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123'], + 0xE1B5: [698,-506,569,216,422,'422 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE1B6: [683,0,1014,46,974,'974 263l-45 -263h-539v36c67 0 77 0 77 44v230h-180l-84 -206c-4 -11 -6 -14 -6 -21c0 -16 14 -46 71 -47v-36c-40 3 -80 4 -120 4c-34 0 -68 -1 -102 -4v36c50 0 96 13 118 67l221 543c-12 1 -21 1 -33 1h-50v36h611l30 -230h-34c-17 135 -39 194 -189 194h-116 c-47 0 -48 -8 -48 -39v-262h96c99 0 111 31 111 117h34v-270h-34c0 85 -12 117 -111 117h-96v-235c0 -31 1 -39 48 -39h118c174 0 192 77 218 227h34zM467 346v254c0 17 0 43 -44 44l-122 -298h166'], + 0xE1B7: [446,10,816,58,775,'775 120c0 -23 -47 -130 -171 -130c-69 0 -138 31 -184 85c-31 -52 -101 -85 -188 -85c-72 0 -174 22 -174 107c0 60 49 100 117 126c69 25 147 28 193 30v44c0 82 -58 121 -118 121c-7 0 -63 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 63 70 97 162 97c95 0 152 -44 172 -75c36 39 92 75 167 75c132 0 184 -99 184 -195c0 -23 -6 -23 -28 -23h-300c0 -206 153 -206 164 -206c36 0 102 18 129 97c3 9 5 15 18 15c15 0 17 -10 17 -14zM705 254c-1 28 -6 164 -115 164c-47 0 -131 -34 -141 -164h256zM381 133 c0 6 -1 14 -4 22c-9 31 -9 57 -9 71c-203 -8 -226 -95 -226 -129c0 -45 44 -79 98 -79c70 0 141 45 141 115'], + 0xE1B8: [714,20,877,54,813,'813 395c-89 -1 -115 -42 -140 -78c-46 -69 -105 -158 -169 -221c30 -28 85 -80 149 -80c48 0 116 30 119 105h34c-2 -86 -74 -141 -156 -141c-73 0 -138 30 -196 73c-26 -20 -97 -73 -199 -73c-109 0 -201 61 -201 151c0 55 31 84 68 119l107 99c-13 34 -42 114 -42 200 c0 108 83 165 153 165c74 0 101 -79 101 -132c0 -61 -57 -120 -138 -203c47 -115 171 -250 178 -258c13 13 41 39 84 98c34 46 81 116 83 119c0 0 4 9 4 19c0 23 -24 38 -61 38v36c4 0 81 -4 127 -4c29 0 66 1 95 4v-36zM407 582c0 31 -12 104 -66 104 c-41 0 -82 -41 -82 -111c0 -19 3 -91 32 -167c71 69 116 126 116 174zM428 74c-20 18 -125 118 -186 248c-69 -63 -97 -88 -97 -162c0 -64 37 -144 118 -144c59 0 116 24 165 58'], + 0xE1B9: [713,232,843,45,797,'797 0c-10 1 -76 3 -124 3c-93 -60 -90 -172 13 -177c31 -2 64 17 75 56c5 19 33 8 30 -12c-13 -62 -73 -102 -127 -102c-69 0 -117 58 -116 101c1 50 39 106 79 135l-112 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20 c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256'], + 0xE1BA: [446,232,569,45,548,'548 -130c-13 -62 -73 -102 -127 -102c-69 0 -117 58 -116 101c1 50 54 113 97 140c-20 15 -31 39 -34 65c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25 c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55c0 -95 -99 -95 -99 -95c-4 0 -7 -1 -11 0c-93 -60 -94 -164 9 -169c31 -2 64 17 75 56 c5 19 33 8 30 -12zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123'], + 0xE1BB: [744,-562,556,-5,561,'561 584l-12 -22l-272 123l-271 -123l-11 22l283 160'], + 0xE1BC: [307,-193,556,0,555,'555 290l-54 -44c-17 -14 -37 -25 -57 -35c-22 -10 -48 -18 -73 -18c-40 0 -71 17 -100 34c-35 20 -64 37 -104 37c-51 0 -104 -30 -153 -71l-14 17l54 44c17 14 37 25 57 35c22 10 48 18 73 18c40 0 71 -17 100 -34c35 -20 64 -37 104 -37c51 0 104 30 153 71'], + 0xE1BD: [704,10,877,70,806,'806 72c0 -5 -4 -9 -8 -11c-17 -8 -167 -71 -354 -71c-225 0 -374 173 -374 357c0 196 164 357 368 357c193 0 368 -148 368 -362c0 -101 -20 -215 -116 -215c-23 0 -94 8 -108 68c-3 -3 -55 -68 -145 -68c-118 0 -220 96 -220 220c0 123 101 220 220 220 c36 0 103 -10 157 -84h37c28 0 28 -2 28 -27v-238c0 -40 12 -63 35 -63c57 0 78 67 78 183c0 212 -169 338 -334 338c-185 0 -334 -148 -334 -329c0 -170 137 -329 339 -329c57 0 171 8 295 59c15 7 17 7 33 7h9c15 0 26 0 26 -12zM580 267v160c0 19 0 20 -14 40 c-36 53 -88 72 -127 72c-78 0 -143 -84 -143 -192s65 -192 143 -192c47 0 97 26 129 75c12 17 12 19 12 37'], + 0xE1BE: [683,0,799,60,728,'728 183c0 -95 -103 -183 -244 -183h-424v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h394c139 0 244 -80 244 -170c0 -77 -82 -138 -180 -156c122 -13 210 -87 210 -174zM598 513c0 63 -52 134 -151 134h-148c-47 0 -48 -8 -48 -39v-239h165 c115 0 182 73 182 144zM625 185c0 70 -55 156 -161 156h-213v-266c0 -31 1 -39 48 -39h150c110 0 176 75 176 149'], + 0xE1BF: [694,10,631,49,584,'584 216c0 -127 -113 -226 -245 -226c-53 0 -108 21 -146 71l-35 -61h-34v589c0 50 -7 58 -75 58v36l150 11v-313c36 36 91 60 151 60c131 0 234 -103 234 -225zM493 217c0 66 -12 105 -32 134c-20 30 -60 62 -116 62c-60 0 -114 -32 -142 -78v-233 c11 -21 51 -84 131 -84c29 0 78 9 118 54c41 47 41 122 41 145'], + 0xE1C0: [694,10,631,49,584,'584 216c0 -127 -113 -226 -245 -226c-53 0 -108 21 -146 71l-35 -61h-34v473l-45 -39c-4 -2 -8 -4 -12 -4c-10 0 -18 8 -18 18c0 6 2 11 6 14l69 58v69c0 50 -7 58 -75 58v36l150 11v-111l90 76c3 3 7 4 11 4c10 0 18 -8 18 -18c0 -5 -2 -10 -6 -13l-113 -96v-155 c36 36 91 60 151 60c131 0 234 -103 234 -225zM493 217c0 66 -12 105 -32 134c-20 30 -60 62 -116 62c-60 0 -114 -32 -142 -78v-233c11 -21 51 -84 131 -84c29 0 78 9 118 54c41 47 41 122 41 145'], + 0xE1C1: [490,-13,569,35,533,'533 305c0 -15 -24 -22 -38 -28l-96 -45c-17 -9 -34 -19 -52 -24c25 -51 55 -99 82 -149l9 -18c3 -4 5 -8 5 -13v-1c0 -7 -6 -14 -13 -14s-12 5 -16 10c-18 18 -118 135 -130 135c-5 0 -8 -6 -11 -9c-32 -36 -66 -72 -100 -106c-8 -9 -23 -30 -35 -30c-7 0 -13 7 -13 14 v1c0 5 2 9 5 13l9 18c27 50 57 98 82 149c-18 5 -35 15 -52 24l-96 45c-13 6 -38 13 -38 28c0 7 6 13 13 13h2c44 -4 94 -17 139 -26c19 -4 38 -6 56 -11l20 160c3 16 0 46 19 49c18 0 16 -32 19 -48l20 -161c18 5 37 7 56 11c45 9 95 22 139 26h2c7 0 13 -6 13 -13'], + 0xE1C2: [691,-513,569,118,452,'452 691c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28c2 -86 73 -133 139 -133s137 47 139 133h28'], + 0xE1C3: [750,250,339,145,194,'194 343c0 -12 -12 -18 -24 -18c-13 0 -25 6 -25 18v370c0 14 0 37 25 37c24 0 24 -24 24 -37v-370zM194 -213c0 -14 0 -37 -25 -37c-24 0 -24 24 -24 37v370c0 12 12 18 25 18c12 0 24 -6 24 -18v-370'], + 0xE1C4: [703,20,816,70,744,'744 234c0 -122 -114 -254 -291 -254c-207 0 -383 159 -383 362c0 199 173 361 383 361c96 0 165 -46 207 -88l53 76c8 12 13 12 17 12c14 0 14 -9 14 -26v-234c0 -20 0 -26 -18 -26c-7 0 -16 0 -18 12c-26 172 -144 238 -243 238c-94 0 -288 -55 -288 -326 c0 -260 183 -325 290 -325c99 0 235 63 243 224c1 13 11 13 17 13c16 0 17 -8 17 -19'], + 0xE1C5: [446,10,508,46,468,'468 120c0 -12 -35 -130 -184 -130c-131 0 -238 100 -238 226c0 115 93 230 243 230c28 0 167 0 167 -89c0 -32 -21 -49 -48 -49c-28 0 -47 20 -47 47c0 20 10 36 28 44c-36 15 -84 15 -97 15c-93 0 -155 -70 -155 -197c0 -144 90 -195 159 -195c61 0 114 31 136 93 c5 14 6 17 19 17c4 0 17 0 17 -12'], + 0xE1C6: [690,-514,569,133,437,'437 676l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE1C7: [703,200,816,70,744,'744 234c0 -115 -101 -239 -261 -253v-41c57 0 118 -20 118 -70c0 -70 -151 -70 -271 -70h-34v34h17c84 0 196 0 196 36s-51 36 -94 36v76c-190 18 -345 170 -345 360c0 199 173 361 383 361c96 0 165 -46 207 -88l53 76c8 12 13 12 17 12c14 0 14 -9 14 -26v-234 c0 -20 0 -26 -18 -26c-7 0 -16 0 -18 12c-26 172 -144 238 -243 238c-94 0 -288 -55 -288 -326c0 -260 183 -325 290 -325c99 0 235 63 243 224c1 13 11 13 17 13c16 0 17 -8 17 -19'], + 0xE1C8: [446,200,508,46,468,'468 120c0 -11 -30 -114 -155 -128v-52c58 0 118 -20 118 -70c0 -70 -150 -70 -270 -70h-34v34h17c84 0 195 0 195 36s-50 36 -94 36v87c-112 17 -199 110 -199 223c0 115 93 230 243 230c28 0 167 0 167 -89c0 -32 -21 -49 -48 -49c-28 0 -47 20 -47 47 c0 20 10 36 28 44c-36 15 -84 15 -97 15c-93 0 -155 -70 -155 -197c0 -144 90 -195 159 -195c61 0 114 31 136 93c5 14 6 17 19 17c4 0 17 0 17 -12'], + 0xE1C9: [6,200,508,102,406,'406 -130c0 -70 -150 -70 -270 -70h-34v34h17c84 0 195 0 195 36s-51 36 -94 36v100h68v-66c58 0 118 -20 118 -70'], + 0xE1CA: [485,54,508,46,468,'468 120c0 -12 -33 -123 -171 -130v-26c0 -10 -8 -18 -18 -18s-18 8 -18 18v27c-120 11 -215 106 -215 225c0 108 82 216 215 229v22c0 9 8 18 18 18s18 -9 18 -18v-21c41 -1 159 -7 159 -89c0 -32 -21 -49 -48 -49c-28 0 -47 20 -47 47c0 20 10 36 28 44 c-32 13 -74 15 -92 15v-392c61 0 113 31 135 93c5 14 6 17 19 17c4 0 17 0 17 -12zM261 26v385c-75 -14 -124 -82 -124 -194c0 -121 63 -176 124 -191'], + 0xE1CB: [690,-514,569,133,437,'437 528l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE1CC: [431,0,323,104,219,'219 373c0 -29 -23 -57 -58 -57c-29 0 -57 23 -57 58c0 29 23 57 58 57c29 0 57 -23 57 -58zM219 57c0 -29 -23 -57 -58 -57c-29 0 -57 23 -57 58c0 29 23 57 58 57c29 0 57 -23 57 -58'], + 0xE1CD: [737,54,816,70,744,'744 234c0 -119 -108 -247 -277 -254v-16c0 -10 -9 -18 -18 -18c-10 0 -18 8 -18 18v17c-198 11 -361 165 -361 361c0 192 161 349 361 360v17c0 10 8 18 18 18c9 0 18 -8 18 -18v-16c89 -4 153 -48 193 -88l53 76c8 12 13 12 17 12c14 0 14 -9 14 -26v-234 c0 -20 0 -26 -18 -26c-7 0 -16 0 -18 12c-26 171 -143 237 -241 238v-651c99 0 235 63 243 224c1 13 11 13 17 13c16 0 17 -8 17 -19zM431 18v647c-101 -13 -254 -83 -254 -324c0 -232 146 -309 254 -323'], + 0xE1CE: [-60,292,569,237,332,'332 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE1CF: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM635 342c0 162 -131 293 -293 293c-163 0 -294 -131 -294 -293c0 -163 131 -294 294 -294c162 0 293 131 293 294zM528 342c0 -100 -87 -178 -189 -178 c-87 0 -143 65 -143 125c0 5 0 9 8 9c3 0 8 0 8 -6c4 -80 71 -111 120 -111c53 0 143 32 143 160c0 134 -96 161 -142 161c-49 0 -107 -32 -120 -117c-1 -6 -5 -6 -8 -6c-9 0 -9 3 -9 13v115c0 8 0 13 7 13c0 0 4 0 8 -6l26 -38c21 21 55 44 102 44c103 0 189 -80 189 -178'], + 0xE1D0: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM635 342c0 162 -131 293 -293 293c-163 0 -294 -131 -294 -293c0 -163 131 -294 294 -294c162 0 293 131 293 294zM488 289c0 -60 -57 -125 -144 -125 c-102 0 -188 78 -188 178c0 98 85 178 188 178c48 0 82 -23 102 -44l26 38c4 6 9 6 9 6c7 0 7 -5 7 -13v-115c0 -10 0 -13 -9 -13c-4 0 -8 0 -9 6c-13 84 -71 117 -120 117c-46 0 -142 -27 -142 -161c0 -128 91 -160 143 -160c49 0 116 31 120 111c0 6 5 6 8 6 c8 0 9 -4 9 -9'], + 0xE1D1: [519,17,877,169,706,'699 -10c-17 -17 -34 0 -44 9l-76 77c-39 -31 -87 -49 -140 -49c-54 0 -102 18 -141 49l-77 -77c-10 -10 -26 -26 -44 -8c-17 17 0 34 10 43l77 77c-31 38 -49 86 -49 139s19 102 49 140l-77 78c-10 10 -27 26 -9 44c17 17 34 0 43 -9l78 -78c38 30 87 48 140 48 c52 0 100 -18 139 -48l77 77c10 10 26 26 44 8c17 -17 0 -34 -10 -43l-77 -77c31 -38 50 -87 50 -140s-18 -101 -49 -139l77 -77c10 -10 26 -26 9 -44zM614 250c0 97 -79 175 -175 175c-97 0 -176 -78 -176 -175s79 -175 176 -175c96 0 175 78 175 175'], + 0xE1D2: [683,0,860,58,789,'789 336c0 -188 -153 -336 -337 -336h-394v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h394c186 0 337 -157 337 -347zM686 336c0 87 -16 163 -57 217c-46 59 -120 94 -205 94h-124c-47 0 -48 -8 -48 -39v-533c0 -31 1 -39 48 -39h125c80 0 152 31 197 82 c35 42 64 102 64 218'], + 0xE1D3: [694,10,631,46,581,'581 0l-154 -10v62c-17 -18 -66 -62 -148 -62c-127 0 -233 100 -233 225c0 126 112 226 245 226c55 0 103 -21 140 -57v207c0 49 -8 56 -75 56v36l150 11v-602c0 -49 8 -56 75 -56v-36zM427 105v214c0 19 0 20 -12 36c-28 36 -71 58 -119 58c-29 0 -78 -9 -118 -54 c-41 -47 -41 -122 -41 -145c0 -64 12 -104 32 -134c20 -29 60 -62 116 -62c65 0 116 40 142 87'], + 0xE1D4: [697,-507,569,97,422,'422 525l-29 -18l-97 119c-8 9 -14 17 -14 31c0 25 24 40 42 40c24 0 32 -17 38 -32zM237 525l-29 -18l-97 119c-8 9 -14 17 -14 31c0 25 24 40 42 40c24 0 32 -17 38 -32'], + 0xE1D5: [683,-376,427,60,367,'367 530c0 -85 -69 -154 -153 -154c-85 0 -154 69 -154 154c0 84 69 153 154 153c84 0 153 -69 153 -153zM319 530c0 58 -47 105 -105 105c-59 0 -106 -47 -106 -105c0 -59 47 -106 106 -106c58 0 105 47 105 106'], + 0xE1D6: [603,25,569,55,521,'521 359c0 -11 -2 -21 -17 -21c-64 0 -130 6 -194 6l5 -200c2 -50 9 -102 9 -152c0 -12 -8 -17 -19 -17h-49c-9 2 -12 11 -12 20c0 35 4 70 7 105l7 244c-62 0 -124 -6 -185 -6c-16 0 -18 11 -18 22v10c0 13 3 22 19 22c61 0 123 -6 184 -6c0 51 -3 103 -9 154 c-1 15 -5 32 -5 47c0 14 12 16 22 16h44c10 -2 14 -9 14 -18c0 -5 -1 -11 -2 -16c-9 -60 -12 -122 -12 -183c64 0 128 6 192 6c16 0 19 -9 19 -22v-11'], + 0xE1D7: [654,-550,569,139,431,'242 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM431 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE1D8: [751,-1,569,69,499,'499 727c0 -14 -14 -33 -22 -47l-39 -72l-242 -445l-66 -123c-8 -14 -15 -37 -34 -39h-3c-14 0 -24 12 -24 25c0 16 17 39 27 55l42 78l301 554c7 13 14 33 30 37c2 1 6 1 6 1c13 0 24 -11 24 -24zM460 82c0 -35 -26 -61 -59 -67h-7c-40 0 -69 31 -69 69 c0 35 26 61 59 67h7c40 0 69 -31 69 -69zM243 668c0 -35 -29 -66 -66 -66h-4c-40 0 -65 36 -65 69c0 35 29 66 66 66h4c40 0 65 -36 65 -69'], + 0xE1D9: [606,104,569,-203,771,'771 251c0 -109 -81 -215 -197 -215c-125 0 -192 114 -192 215c0 103 67 201 177 215c4 0 9 1 13 1c129 0 199 -117 199 -216zM186 251c0 -99 -65 -204 -178 -215h-11c-113 0 -196 98 -200 204v8c0 104 68 206 184 218h11c119 0 194 -108 194 -215zM324 -83 c0 -13 -4 -21 -20 -21h-46c-10 2 -14 8 -14 17c0 3 0 7 1 10c9 90 12 188 12 279v52c0 18 1 36 1 55v45c0 69 -5 139 -11 208l-1 9c0 5 -2 11 -2 17c0 7 2 14 10 17c3 1 6 1 10 1h46c9 -2 14 -7 14 -16c0 -3 0 -6 -1 -9c-8 -77 -13 -155 -13 -232l5 -276 c2 -51 9 -105 9 -156zM717 252c0 101 -65 160 -145 160c-89 0 -151 -75 -151 -158c0 -5 1 -10 1 -15c9 -78 60 -149 149 -149c45 0 89 19 116 56c22 31 30 69 30 106zM146 255c0 85 -63 157 -150 157c-100 0 -145 -83 -145 -160c0 -89 55 -162 147 -162c87 0 140 69 147 148 c1 6 1 11 1 17'], + 0xE1DA: [750,56,569,70,498,'498 197c0 -98 -74 -195 -196 -206v-47h-36v28c0 17 -1 18 -9 19c-45 5 -98 16 -143 65c-30 33 -44 82 -44 124c0 49 39 52 48 52c21 0 47 -15 47 -48c0 -36 -28 -47 -55 -47c13 -51 58 -104 156 -110v289c-47 10 -95 21 -136 61c-15 16 -60 59 -60 134 c0 95 79 183 196 192v47h36v-46c123 -6 196 -78 196 -176c0 -46 -33 -52 -48 -52c-26 0 -47 19 -47 47c0 17 7 48 54 48c-24 71 -95 94 -155 96v-262c44 -9 89 -18 136 -64c48 -49 60 -105 60 -144zM266 414v253c-91 -9 -139 -71 -139 -126c0 -17 1 -101 139 -127zM441 167 c0 33 -17 119 -139 141v-281c85 9 139 73 139 140'], + 0xE1DB: [660,-545,323,105,219,'219 602c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE1DC: [-85,200,323,105,219,'219 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE1DD: [441,0,323,56,274,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36'], + 0xE1DE: [441,204,354,-27,243,'243 -46c0 -95 -68 -158 -149 -158c-61 0 -121 26 -121 80c0 28 19 48 48 48c27 0 47 -20 47 -47c0 -30 -23 -42 -25 -43c23 -10 47 -10 50 -10c67 0 75 90 75 128v386c0 49 -9 56 -83 56v36l158 11v-487'], + 0xE1DF: [679,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34'], + 0xE1E0: [446,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267'], + 0xE1E1: [664,20,569,54,514,'514 169c0 -108 -104 -189 -231 -189c-114 0 -229 62 -229 173c0 105 99 159 155 183c-59 35 -66 39 -84 60c-18 20 -40 54 -40 101c0 95 90 167 200 167c97 0 198 -52 198 -149c0 -69 -50 -116 -128 -154l62 -36c58 -34 97 -90 97 -156zM430 515c0 71 -69 120 -147 120 c-72 0 -145 -37 -145 -100c0 -37 28 -64 54 -79l121 -70c7 -4 11 -5 11 -5s106 45 106 134zM454 134c0 59 -50 89 -76 104c-79 47 -81 47 -137 79c-72 -33 -127 -90 -127 -164c0 -82 79 -141 171 -141c86 0 169 47 169 122'], + 0xE1E2: [280,-252,1139,16,1122,'1122 252h-1106v28h1106v-28'], + 0xE1E3: [280,-252,569,8,560,'560 252h-552v28h552v-28'], + 0xE1E4: [703,20,843,51,801,'801 342c0 -181 -79 -362 -239 -362c-26 0 -48 21 -48 48s22 48 48 48c27 0 48 -21 48 -48v-4c83 39 83 187 83 318c0 165 -81 327 -229 327c-88 0 -168 -42 -210 -108v-479c0 -34 0 -46 82 -46h26v-36l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26 v36l156 -4c16 0 31 1 47 4v-68c51 54 127 88 210 88c191 0 337 -166 337 -361'], + 0xE1E5: [441,214,573,54,515,'515 79c0 -143 -44 -293 -168 -293c-22 0 -40 17 -40 40c0 22 18 40 40 40c20 0 36 -15 40 -34c49 37 49 149 49 247v228c0 51 -9 106 -79 106c-66 0 -149 -49 -149 -154v-180c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v259 c0 49 -8 56 -75 56v36l147 11v-97h1c28 52 81 97 163 97c107 0 150 -51 150 -138v-224'], + 0xE1E6: [679,232,768,56,728,'728 263l-45 -263h-119c-93 -60 -91 -169 12 -174c31 -2 64 17 75 56c5 19 33 8 30 -12c-13 -62 -73 -102 -127 -102c-69 0 -117 58 -116 101c1 50 34 97 79 131h-461v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194 h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158c185 0 208 76 234 227h34'], + 0xE1E7: [446,232,508,39,468,'468 120c0 -19 -36 -100 -131 -124c-93 -60 -94 -165 9 -170c31 -2 64 17 75 56c5 19 33 8 30 -12c-13 -62 -73 -102 -127 -102c-69 0 -117 58 -116 101c1 50 35 92 75 121c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196 c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267'], + 0xE1E8: [699,9,761,39,721,'721 122c0 -6 -4 -12 -7 -17c-59 -101 -191 -114 -295 -114c-209 0 -380 154 -380 357c0 208 174 351 358 351c232 0 324 -167 324 -333v-6c0 -13 -6 -18 -18 -18h-557c0 -65 12 -132 45 -188c48 -83 141 -132 236 -132c81 0 192 9 249 86c8 11 13 27 28 27 c8 0 16 -4 17 -13zM625 368c-2 21 -2 43 -4 64c-8 58 -25 118 -62 164c-40 49 -99 75 -161 75c-145 0 -229 -124 -246 -244c-3 -20 -3 -40 -6 -59h479'], + 0xE1E9: [683,0,860,58,789,'789 336c0 -188 -153 -336 -337 -336h-394v36h24c77 0 79 11 79 45v243h-103v36h103v242c0 35 -2 45 -79 45h-24v36h394c186 0 337 -157 337 -347zM686 336c0 87 -16 163 -57 217c-46 59 -120 94 -205 94h-124c-47 0 -48 -8 -48 -39v-248h178v-36h-178v-249 c0 -31 1 -39 48 -39h125c80 0 152 31 197 82c35 42 64 102 64 218'], + 0xE1EA: [695,10,569,39,529,'529 252c0 -69 0 -126 -65 -191c-44 -43 -108 -71 -180 -71c-135 0 -245 99 -245 222c0 130 113 233 243 233c78 0 127 -55 147 -83c-20 91 -72 169 -144 223l-92 -53l-18 31l77 44c-49 30 -104 50 -163 58l5 30c76 -2 149 -21 214 -55l95 55l18 -31l-78 -45 c56 -37 104 -86 137 -147c49 -90 49 -153 49 -220zM438 215c0 111 -66 202 -155 202c-42 0 -88 -20 -116 -58c-12 -16 -37 -49 -37 -137c0 -49 7 -100 35 -140c28 -38 71 -60 119 -60c55 0 154 34 154 193'], + 0xE1EB: [714,0,323,104,219,'219 659l-39 -442c-2 -21 -5 -23 -18 -23c-14 0 -17 2 -19 24l-39 441c0 34 29 55 58 55c26 0 57 -19 57 -55zM219 58c0 -33 -25 -58 -58 -58c-29 0 -57 23 -57 58c0 29 23 57 58 57c31 0 57 -26 57 -57'], + 0xE1EC: [500,214,323,104,219,'219 443c0 -33 -25 -58 -58 -58c-29 0 -57 23 -57 58c0 29 23 57 58 57c31 0 57 -26 57 -57zM219 -159c0 -34 -29 -55 -58 -55c-26 0 -57 19 -57 55l39 442c2 22 6 23 19 23s16 -2 18 -23l38 -432'], + 0xE1ED: [679,0,737,56,682,'682 449h-34c-18 140 -45 194 -206 194h-140c-47 0 -48 -8 -48 -39v-246h97c100 0 114 31 114 117h34v-270h-34c0 87 -14 117 -114 117h-97v-240c0 -33 0 -46 94 -46h35v-36l-175 4l-152 -4v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h596'], + 0xE1EE: [704,0,354,45,398,'398 631c0 -27 -19 -46 -46 -46s-46 19 -46 46c0 16 8 32 22 40c-10 3 -20 5 -29 5c-43 0 -97 -42 -97 -133v-112h129v-36h-125v-314c0 -34 0 -45 74 -45h20v-36l-130 4c-41 0 -109 -4 -114 -4v36c65 0 75 0 75 43v316h-86v36h86v112c0 105 90 161 169 161 c55 0 98 -30 98 -73'], + 0xE1EF: [704,0,939,38,897,'897 0c-29 2 -58 4 -87 4s-100 -3 -113 -4v36c10 0 28 2 28 18c0 13 -12 28 -23 41l-109 135l-71 -56v-95c0 -43 10 -43 75 -43v-36c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-248v-316c0 -43 10 -43 75 -43v-36c-38 3 -75 4 -113 4 c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-86v36h86v110c0 109 128 163 250 163c19 0 62 0 98 -13c5 -3 9 -3 9 -3c3 0 33 5 41 6v-477l150 116c12 9 31 28 31 44c0 8 -5 16 -18 18v36c40 -3 80 -4 120 -4c21 0 47 2 68 4v-36c-69 -2 -102 -29 -225 -124l161 -197 c29 -35 51 -38 88 -38v-36zM447 431v160c-21 12 -23 34 -23 40c0 15 7 30 19 38c-25 6 -45 7 -70 7c-96 0 -178 -48 -178 -136v-109h252'], + 0xE1F0: [704,0,678,38,715,'715 631c0 -27 -19 -46 -46 -46s-46 19 -46 46c0 16 8 32 22 40c-10 3 -20 5 -29 5c-45 0 -98 -43 -98 -133v-112h130v-36h-126v-314c0 -34 0 -45 74 -45h20v-36l-130 4c-41 0 -109 -4 -114 -4v36c65 0 75 0 75 43v316h-248v-316c0 -43 10 -43 75 -43v-36 c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-86v36h86v110c0 113 137 163 246 163c39 0 98 -6 131 -42c36 31 80 42 116 42c55 0 98 -30 98 -73zM452 660c-33 16 -76 16 -85 16c-74 0 -172 -39 -172 -136v-109h252v112c0 10 0 23 2 33 c-20 10 -25 27 -25 41c0 26 17 39 28 43'], + 0xE1F1: [704,0,970,38,920,'920 0c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v262c0 44 -8 54 -49 54h-199v-316c0 -43 10 -43 75 -43v-36c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-248v-316c0 -43 10 -43 75 -43v-36c-38 3 -75 4 -113 4 c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-86v36h86v110c0 116 142 163 244 163c36 0 99 -7 136 -57c40 33 111 57 190 57c93 0 149 -47 149 -102c0 -39 -31 -51 -49 -51c-24 0 -49 18 -49 49c0 12 3 40 39 48c-26 21 -60 28 -94 28c-69 0 -172 -37 -172 -136v-109 h159c14 0 16 0 18 1s7 1 18 2l132 9v-364c0 -43 10 -43 75 -43v-36zM458 649c-28 21 -64 27 -92 27c-70 0 -171 -37 -171 -136v-109h252v125c-26 11 -29 35 -29 44c0 18 9 42 40 49'], + 0xE1F2: [704,0,970,38,920,'920 0c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-248v-316c0 -43 10 -43 75 -43v-36c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-248v-316c0 -43 10 -43 75 -43v-36c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36 c65 0 75 0 75 43v316h-86v36h86v110c0 114 138 163 246 163c62 0 113 -13 138 -53c31 23 91 53 189 53c19 0 62 0 98 -13c5 -3 9 -3 9 -3c3 0 33 5 41 6v-615c0 -43 10 -43 75 -43v-36zM452 660c-32 15 -68 16 -84 16c-77 0 -173 -40 -173 -136v-109h252v110c0 3 0 23 3 34 c-11 5 -26 20 -26 42c0 30 25 42 28 43zM770 431v160c-21 12 -23 34 -23 40c0 15 7 30 19 38c-25 6 -45 7 -70 7c-96 0 -178 -48 -178 -136v-109h252'], + 0xE1F3: [704,0,647,38,597,'597 0c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v262c0 44 -8 54 -49 54h-199v-316c0 -43 10 -43 75 -43v-36c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-86v36h86v110c0 116 143 163 247 163c93 0 149 -47 149 -102 c0 -39 -31 -51 -49 -51c-24 0 -49 18 -49 49c0 12 3 40 39 48c-26 21 -60 28 -94 28c-69 0 -172 -37 -172 -136v-109h159c14 0 16 0 18 1s7 1 18 2l132 9v-364c0 -43 10 -43 75 -43v-36'], + 0xE1F4: [664,20,569,63,505,'505 201c0 -126 -112 -221 -240 -221c-120 0 -202 90 -202 180c0 54 50 54 50 54c13 0 50 -8 50 -51c0 -27 -19 -52 -57 -49c25 -66 92 -102 157 -102c49 0 92 24 117 60c30 44 30 103 30 133c0 58 -6 96 -24 129c-5 8 -32 56 -92 56c-35 0 -96 -8 -139 -63 c-10 -12 -11 -14 -20 -14c-16 0 -16 12 -16 29v295c0 16 0 27 13 27c0 0 3 0 13 -5c65 -25 118 -27 146 -27c74 0 127 20 151 29c4 3 8 3 8 3c5 0 12 -3 12 -14c0 -15 -78 -105 -210 -105c-16 0 -46 0 -97 13v-189c44 38 96 49 140 49c124 0 210 -104 210 -217'], + 0xE1F5: [704,0,647,38,597,'597 0c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-248v-316c0 -43 10 -43 75 -43v-36c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v316h-86v36h86v110c0 109 128 163 250 163c19 0 62 0 98 -13c5 -3 9 -3 9 -3c3 0 33 5 41 6 v-615c0 -43 10 -43 75 -43v-36zM447 431v160c-21 12 -23 34 -23 40c0 15 7 30 19 38c-25 6 -45 7 -70 7c-96 0 -178 -48 -178 -136v-109h252'], + 0xE1F6: [674,0,569,39,529,'529 164h-111v-82c0 -34 0 -46 81 -46h27v-36l-151 4l-150 -4v36h27c81 0 81 12 81 46v82h-294v36l331 460c10 14 14 14 26 14c22 0 22 -7 22 -28v-446h111v-36zM340 200v366l-264 -366h264'], + 0xE1F7: [703,20,884,70,822,'822 240c-67 0 -77 0 -77 -44v-170c0 -15 0 -26 -12 -26c-10 0 -47 34 -64 60c-47 -70 -158 -80 -213 -80c-216 0 -386 164 -386 362c0 200 175 361 383 361c88 0 159 -38 208 -88l53 76c8 12 13 12 17 12c14 0 14 -9 14 -26v-234c0 -20 0 -26 -18 -26c-7 0 -16 0 -18 12 c-26 173 -146 238 -243 238c-99 0 -289 -59 -289 -325c0 -261 185 -326 298 -326c13 0 69 0 118 25c57 28 57 67 57 89v64c0 33 0 46 -100 46h-38v36c52 -4 128 -4 181 -4c49 0 122 4 129 4v-36'], + 0xE1F8: [451,205,569,39,545,'545 400c0 -23 -18 -33 -32 -33c-17 0 -32 12 -32 32c0 16 5 20 9 24c-17 0 -56 -1 -101 -33c24 -26 42 -57 42 -96c0 -78 -75 -147 -178 -147c-58 0 -94 22 -109 31c-6 -8 -13 -16 -13 -41c0 -29 18 -59 50 -66c8 -1 44 -1 66 -1c97 0 156 0 215 -31 c55 -30 67 -84 67 -114c0 -80 -118 -130 -245 -130c-135 0 -245 55 -245 128c0 52 52 85 97 100c-39 29 -42 76 -42 89c0 39 22 72 30 81c-28 26 -48 62 -48 101c0 78 75 147 178 147c44 0 86 -14 116 -36c47 43 101 46 116 46c40 0 59 -28 59 -51zM351 294 c0 21 0 117 -98 117c-36 0 -63 -18 -77 -35c-20 -26 -20 -66 -20 -82c0 -21 0 -117 98 -117c36 0 63 18 77 35c20 26 20 66 20 82zM468 -76c0 79 -125 79 -214 79h-58c-64 -1 -96 -44 -96 -79c0 -52 79 -99 184 -99s184 46 184 99'], + 0xE1F9: [703,20,1262,70,1191,'560 185c0 -106 -86 -205 -218 -205c-65 0 -142 14 -205 69c-8 -13 -28 -45 -37 -57c-6 -9 -8 -12 -16 -12c-14 0 -14 9 -14 26v194c0 20 0 27 17 27c16 0 16 -6 17 -22c7 -151 141 -189 238 -189c96 0 154 71 154 141c0 45 -21 77 -44 100c-29 28 -49 32 -140 52 c-108 24 -141 31 -181 70c-36 34 -61 77 -61 133c0 101 90 191 216 191c28 0 111 -3 177 -70l36 56c7 11 9 14 17 14c14 0 14 -9 14 -26v-195c0 -19 0 -26 -17 -26c-15 0 -16 5 -18 20c-16 105 -74 195 -209 195c-91 0 -152 -63 -152 -129c0 -42 27 -105 115 -125l148 -34 c100 -23 163 -108 163 -198zM1191 185c0 -106 -86 -205 -218 -205c-65 0 -142 14 -205 69c-8 -13 -28 -45 -37 -57c-6 -9 -8 -12 -16 -12c-14 0 -14 9 -14 26v194c0 20 0 27 17 27c16 0 16 -6 17 -22c7 -151 141 -189 238 -189c96 0 154 71 154 141c0 45 -21 77 -44 100 c-29 28 -49 32 -140 52c-108 24 -141 31 -181 70c-36 34 -61 77 -61 133c0 101 90 191 216 191c28 0 111 -3 177 -70l36 56c7 11 9 14 17 14c14 0 14 -9 14 -26v-195c0 -19 0 -26 -17 -26c-15 0 -16 5 -18 20c-16 105 -74 195 -209 195c-91 0 -152 -63 -152 -129 c0 -42 27 -105 115 -125l148 -34c100 -23 163 -108 163 -198'], + 0xE1FA: [704,10,569,49,529,'529 174c0 -107 -93 -184 -194 -184c-62 0 -104 34 -104 77c0 28 21 39 38 39c19 0 38 -15 38 -38c0 -24 -19 -34 -22 -35c20 -15 43 -15 49 -15c35 0 112 26 112 156c0 117 -57 221 -170 229c-6 0 -15 1 -15 14s9 13 20 14c82 5 134 57 134 130c0 84 -60 115 -106 115 c-19 0 -110 -7 -110 -122v-554c-4 1 -24 4 -43 4c-36 0 -71 -1 -107 -4v36c65 0 75 0 75 43v316h-75v36h75v122c0 103 100 151 185 151c107 0 189 -66 189 -144c0 -53 -41 -115 -136 -145c93 -34 167 -129 167 -241'], + 0xE1FB: [500,262,539,70,468,'311 442c0 -29 -23 -57 -58 -57c-29 0 -57 23 -57 58c0 29 23 57 58 57c29 0 57 -23 57 -58zM468 -71c0 -73 -71 -120 -169 -131l1 -5c0 -34 -24 -55 -47 -55c-21 0 -46 19 -46 55l1 6c-115 15 -138 86 -138 132c0 33 12 71 50 100c114 87 117 181 117 234v16 c0 20 0 25 17 25c16 0 17 -1 17 -37c0 -14 0 -31 -2 -50l28 -392c40 5 94 19 122 57c-46 4 -46 41 -46 47c0 34 28 48 47 48c15 0 48 -9 48 -50zM227 71c-10 -19 -23 -38 -39 -57c-24 -28 -27 -55 -27 -90c0 -37 1 -79 49 -94'], + 0xE1FC: [698,-506,569,147,353,'353 532l-23 -26l-158 114c-16 11 -25 18 -25 37s17 41 41 41c16 0 24 -9 34 -20'], + 0xE1FD: [683,0,843,56,786,'786 0l-151 4l-150 -4v36h24c77 0 79 11 79 45v256h-334v-256c0 -35 2 -45 79 -45h24v-36l-151 4l-150 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-229h334v229c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36 h-24c-77 0 -79 -11 -79 -45v-521c0 -35 2 -45 79 -45h24v-36'], + 0xE1FE: [694,0,631,54,590,'590 0c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v228c0 51 -9 106 -79 106c-66 0 -149 -49 -149 -154v-180c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v512c0 49 -8 56 -75 56v36l150 11v-344h1 c22 38 71 91 160 91c107 0 150 -51 150 -138v-224c0 -43 10 -43 75 -43v-36'], + 0xE1FF: [704,-501,569,177,392,'392 639c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31 c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE200: [697,-507,569,147,472,'287 657c0 -14 -6 -22 -14 -31l-97 -119l-29 18l60 140c6 15 14 32 38 32c18 0 42 -15 42 -40zM472 657c0 -14 -6 -22 -14 -31l-97 -119l-29 18l60 140c6 15 14 32 38 32c18 0 42 -15 42 -40'], + 0xE201: [249,-181,385,20,314,'314 181h-294v68h294v-68'], + 0xE202: [683,0,413,51,362,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36'], + 0xE203: [683,20,955,51,885,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM885 647c-47 0 -71 0 -75 -21c-2 -6 -2 -35 -2 -53v-370c0 -29 0 -73 -3 -87c-17 -82 -103 -136 -195 -136 c-98 0 -173 58 -173 132c0 37 25 57 56 57c32 0 55 -23 55 -55c0 -29 -18 -53 -55 -56c29 -38 82 -50 113 -50c57 0 111 51 111 141v452c0 33 0 46 -97 46h-37v36l175 -4c49 0 122 4 127 4v-36'], + 0xE204: [660,204,645,56,534,'211 602c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58zM534 602c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58zM274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260 c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM534 -46c0 -95 -68 -158 -149 -158c-61 0 -121 26 -121 80c0 28 19 48 48 48c27 0 47 -20 47 -47c0 -30 -23 -42 -25 -43c23 -10 47 -10 50 -10c67 0 75 90 75 128v386c0 49 -9 56 -83 56v36l158 11v-487'], + 0xE205: [762,0,539,55,453,'327 57c0 -29 -23 -57 -58 -57c-29 0 -57 23 -57 58c0 29 23 57 58 57c29 0 57 -23 57 -58zM453 569c0 -33 -12 -71 -50 -100c-114 -87 -117 -181 -117 -234v-16c0 -20 0 -25 -17 -25c-16 0 -17 1 -17 37c0 14 0 31 1 50l-27 392c-40 -5 -94 -19 -122 -57 c46 -4 46 -41 46 -47c0 -34 -28 -48 -47 -48c-15 0 -48 9 -48 50c0 73 71 120 169 131l-1 5c0 34 24 55 47 55c21 0 45 -19 45 -55v-6c115 -15 138 -86 138 -132zM362 576c0 37 -1 79 -49 94l-17 -241c10 19 23 38 39 57c24 28 27 55 27 90'], + 0xE206: [683,232,413,51,362,'362 -130c-13 -62 -73 -102 -127 -102c-69 0 -117 58 -116 101c1 47 48 106 89 135h-2l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36l-109 3c-27 -17 -49 -41 -64 -70 c-25 -51 -4 -104 68 -107c31 -2 64 17 75 56c5 19 33 8 30 -12'], + 0xE207: [674,232,323,39,283,'211 617c0 -33 -26 -58 -58 -58c-28 0 -57 22 -57 58c0 33 27 57 57 57c34 0 58 -28 58 -57zM283 -130c-13 -62 -73 -102 -127 -102c-69 0 -117 58 -116 101c1 47 47 105 88 134l-72 -3v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42 v-36c-32 3 -66 4 -98 4c-28 -17 -51 -42 -65 -71c-26 -51 -5 -104 67 -107c31 -2 64 17 75 56c5 19 33 8 30 -12'], + 0xE208: [683,20,583,66,514,'514 647c-47 0 -71 0 -75 -21c-2 -6 -2 -35 -2 -53v-370c0 -29 0 -73 -3 -87c-17 -82 -103 -136 -195 -136c-98 0 -173 58 -173 132c0 37 25 57 56 57c32 0 55 -23 55 -55c0 -29 -18 -53 -55 -56c29 -38 82 -50 113 -50c57 0 111 51 111 141v452c0 33 0 46 -97 46h-37v36 l175 -4c49 0 122 4 127 4v-36'], + 0xE209: [683,0,874,56,819,'819 0c-14 1 -80 4 -115 4l-149 -4v36c18 0 53 0 53 27c0 13 -9 24 -15 32l-204 266l-135 -115v-165c0 -35 2 -45 79 -45h24v-36l-151 4l-150 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-311l355 304 c5 5 9 16 9 23c0 24 -23 29 -37 29v36l138 -4c28 0 57 2 85 4v-36c-48 -1 -99 -16 -148 -58l-203 -173l251 -328c38 -50 61 -52 115 -52v-36'], + 0xE20A: [694,0,600,49,572,'572 0c-29 2 -58 4 -87 4s-100 -3 -113 -4v36c10 0 28 2 28 18c0 13 -12 28 -23 41l-109 135l-72 -56v-95c0 -43 10 -43 75 -43v-36c-37 3 -74 4 -111 4s-74 -1 -111 -4v36c65 0 75 0 75 43v512c0 49 -8 56 -75 56v36l150 11v-475l148 114c12 9 31 28 31 44 c0 8 -5 16 -18 18v36c40 -3 80 -4 120 -4c21 0 47 2 68 4v-36c-69 -2 -102 -29 -225 -124l161 -197c29 -35 51 -38 88 -38v-36'], + 0xE20B: [683,0,706,56,651,'651 263l-30 -263h-565v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36l152 -4l175 4v-36h-35c-94 0 -94 -13 -94 -46v-526c0 -31 1 -39 48 -39h100c189 0 204 129 215 227h34'], + 0xE20C: [694,0,323,56,281,'281 0c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v512c0 49 -8 56 -75 56v36l150 11v-615c0 -43 10 -43 75 -43v-36'], + 0xE20D: [764,68,1123,-6,1129,'1129 691c0 -6 -1 -13 -2 -18c-54 -430 -410 -741 -821 -741c-75 0 -150 10 -223 29c-30 7 -89 19 -89 44c0 7 1 15 2 21c43 404 366 691 741 734c20 2 39 2 59 4h17c80 0 159 -10 236 -32c28 -7 80 -16 80 -41zM602 418v286c-83 -28 -161 -60 -234 -110 c-25 -19 -70 -42 -70 -69c0 -5 1 -10 1 -14v-310l72 45l229 146zM828 160l-538 -1l-249 -155c10 -2 20 -6 30 -9c73 -23 153 -34 230 -34c191 0 389 73 527 199zM998 368l-377 -1l-285 -178h515c12 0 19 9 26 18c48 48 87 103 121 161zM1081 692c-9 2 -18 5 -27 8 c-71 24 -155 35 -231 35c-33 0 -67 -2 -100 -6c-31 -4 -61 -12 -92 -17v-302l56 35zM270 193v321c-97 -92 -168 -206 -210 -332c-16 -49 -31 -102 -34 -152l173 109l49 30l20 15zM1096 666l-428 -269h335c14 0 15 11 20 19c35 75 66 165 73 250'], + 0xE20E: [704,0,354,45,398,'398 631c0 -27 -19 -46 -46 -46s-46 19 -46 46c0 16 8 32 22 40c-10 3 -20 5 -29 5c-43 0 -93 -42 -93 -133v-462c0 -34 0 -45 74 -45h20v-36l-130 4c-41 0 -114 -4 -114 -4v36c65 0 75 0 75 43v316h-86v36h86v112c0 105 90 161 169 161c55 0 98 -30 98 -73'], + 0xE20F: [683,0,706,56,651,'651 263l-30 -263h-565v36h24c77 0 79 11 79 45v232l-69 -51l-22 29l91 68v243c0 35 -2 45 -79 45h-24v36l152 -4l175 4v-36h-35c-94 0 -94 -13 -94 -46v-172l158 116l23 -29l-181 -133v-308c0 -31 1 -39 48 -39h100c189 0 204 129 215 227h34'], + 0xE210: [694,0,388,80,323,'323 441l-89 -66v-296c0 -43 10 -43 75 -43v-36c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v240l-59 -44l-20 27l79 60v229c0 49 -8 56 -75 56v36l150 11v-277l69 51'], + 0xE211: [683,0,1028,62,965,'965 0l-145 4l-145 -4v36h24c77 0 79 11 79 45v564l-1 1l-264 -625c-8 -18 -17 -21 -24 -21c-15 0 -20 11 -25 23l-260 613l-1 -1v-527c0 -27 0 -72 103 -72v-36c-41 3 -81 4 -122 4s-81 -1 -122 -4v36c103 0 103 45 103 72v494c0 35 -2 45 -79 45h-24v36h175 c21 0 29 0 38 -22l239 -565l240 567c8 20 17 20 37 20h174v-36h-24c-77 0 -79 -11 -79 -45v-521c0 -35 2 -45 79 -45h24v-36'], + 0xE212: [441,0,939,54,897,'897 0c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v228c0 51 -9 106 -79 106c-66 0 -149 -49 -149 -154v-180c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v228c0 51 -9 106 -79 106c-66 0 -149 -49 -149 -154 v-180c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l147 11v-97h1c28 52 81 97 163 97c73 0 127 -22 147 -93c27 50 81 93 160 93c107 0 150 -51 150 -138v-224c0 -43 10 -43 75 -43v-36'], + 0xE213: [621,-583,569,86,484,'484 583h-398v38h398v-38'], + 0xE214: [467,-36,569,-80,648,'648 252c0 -123 -110 -216 -230 -216c-28 0 -57 5 -84 14c-16 6 -40 23 -50 23c-4 0 -7 -2 -10 -4c-37 -22 -79 -33 -122 -33c-121 0 -232 92 -232 214c0 121 101 204 216 216c6 1 12 1 18 1c29 0 57 -6 84 -16c14 -6 35 -22 46 -22c4 0 7 2 10 4c37 22 80 33 122 33 c121 0 232 -92 232 -214zM594 249c0 100 -80 163 -178 163c-34 0 -62 -9 -93 -18c35 -46 56 -89 56 -142c0 -30 -7 -61 -19 -89c-10 -20 -24 -37 -37 -55c31 -10 58 -18 91 -18c96 0 180 60 180 159zM245 108c-35 46 -56 89 -56 142c0 30 7 61 19 89c10 20 24 37 37 55 c-31 10 -58 18 -91 18c-96 0 -180 -60 -180 -159c0 -100 80 -163 178 -163c34 0 62 9 93 18zM339 251v11c-4 31 -14 60 -33 84c-5 6 -14 20 -22 20c-4 0 -7 -3 -9 -5c-29 -29 -46 -69 -46 -110v-11c4 -31 14 -60 33 -84c5 -6 14 -20 22 -20c4 0 7 3 9 5c29 29 46 69 46 110'], + 0xE215: [440,194,631,53,591,'591 0l-151 -10v85h-1c-10 -19 -49 -85 -143 -85c-10 0 -53 0 -88 12v-115c0 -45 9 -45 75 -45v-36c-9 1 -79 4 -115 4c-42 0 -112 -4 -115 -4v36c66 0 75 0 75 45v448c0 50 -7 58 -75 58v36l155 11v-326c0 -54 4 -96 95 -96c70 0 133 52 133 152v165c0 50 -7 58 -75 58 v36l155 11v-346c0 -50 7 -58 75 -58v-36'], + 0xE216: [695,33,676,61,615,'615 146c-2 -13 -12 -24 -25 -24c-31 0 -24 38 -26 57c-11 90 -62 169 -104 247l-30 57v-282c0 -21 0 -42 -1 -63c0 -9 1 -17 1 -26c-10 -98 -102 -145 -184 -145c-84 0 -185 51 -185 153c0 101 106 137 185 137c47 0 97 -10 135 -40v454c1 13 11 24 25 24s24 -12 24 -25 v-9l3 -31c30 -172 182 -301 182 -484'], + 0xE217: [683,0,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-547c0 -19 0 -28 -19 -28c-12 0 -13 1 -23 15l-444 598v-505c0 -27 0 -72 103 -72v-36c-41 3 -81 4 -122 4s-81 -1 -122 -4v36c103 0 103 45 103 72v533c-5 1 -30 6 -73 6h-30v36h173c20 0 21 -1 32 -15l384 -517v424 c0 27 0 72 -103 72v36c41 -3 81 -4 122 -4s81 1 122 4v-36'], + 0xE218: [441,0,631,54,590,'590 0c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v228c0 51 -9 106 -79 106c-66 0 -149 -49 -149 -154v-180c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l147 11v-97h1 c28 52 81 97 163 97c107 0 150 -51 150 -138v-224c0 -43 10 -43 75 -43v-36'], + 0xE219: [664,20,569,54,514,'514 329c0 -214 -135 -349 -278 -349c-97 0 -154 42 -154 110c0 29 18 49 48 49s47 -22 47 -47c0 -9 -3 -43 -44 -47c27 -31 80 -33 102 -33c60 0 183 38 183 286v20c-23 -45 -66 -98 -146 -98c-117 0 -218 94 -218 221c0 90 40 129 74 162c57 56 126 61 159 61 c117 0 227 -87 227 -335zM415 430c0 35 -3 105 -30 147c-16 26 -46 58 -97 58c-52 0 -85 -21 -109 -56c-29 -40 -29 -80 -29 -138c0 -55 0 -97 23 -134c28 -46 65 -59 104 -59c63 0 138 52 138 182'], + 0xE21A: [694,194,939,70,867,'867 140c0 -24 -24 -24 -37 -24h-251l-84 -282c-4 -13 -8 -28 -26 -28c-15 0 -25 12 -25 24c0 6 2 13 4 19l80 267h-200l-84 -282c-4 -13 -8 -28 -26 -28c-15 0 -25 12 -25 24c0 6 2 13 4 19l80 267h-170c-13 0 -37 0 -37 24c0 25 23 25 38 25h184l51 171h-235 c-15 0 -38 0 -38 25c0 24 24 24 37 24h251l84 281c4 13 8 28 26 28c15 0 25 -12 25 -24c0 -6 -2 -13 -4 -19l-80 -266h200l84 281c4 13 8 28 26 28c15 0 25 -12 25 -24c0 -6 -2 -13 -4 -19l-80 -266h170c13 0 37 0 37 -24c0 -25 -23 -25 -38 -25h-184l-51 -171h235 c15 0 38 0 38 -25zM594 336h-200l-51 -171h200'], + 0xE21B: [703,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341'], + 0xE21C: [446,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142'], + 0xE21D: [703,20,1137,84,1097,'1097 263l-45 -263h-433c-20 0 -45 -2 -82 -10c-53 -10 -76 -10 -87 -10c-198 0 -366 158 -366 358c0 204 168 365 366 365c16 0 32 0 88 -11c49 -9 71 -9 81 -9h417l30 -230h-34c-17 137 -41 194 -196 194h-130c-47 0 -48 -8 -48 -39v-235h120c101 0 124 24 124 117h34 v-270h-34c0 93 -23 117 -124 117h-120v-262c0 -31 1 -39 48 -39h135c177 0 196 77 222 227h34zM575 191v301c0 154 -31 183 -121 183c-146 0 -267 -139 -267 -321c0 -191 119 -346 267 -346c90 0 121 29 121 183'], + 0xE21E: [446,10,877,39,837,'837 120c0 -23 -48 -130 -171 -130c-35 0 -125 7 -198 101c-49 -71 -125 -101 -193 -101c-132 0 -236 104 -236 229c0 126 106 227 235 227c80 0 150 -38 194 -99c33 52 100 99 184 99c140 0 185 -107 185 -195c0 -23 -6 -23 -28 -23h-301c0 -200 145 -206 164 -206 c47 0 106 25 130 97c3 9 5 15 18 15c15 0 17 -10 17 -14zM767 254c-1 29 -6 164 -116 164c-47 0 -132 -35 -141 -164h257zM429 223c0 180 -124 195 -154 195c-27 0 -152 -10 -152 -195c0 -194 126 -205 152 -205c9 0 154 0 154 205'], + 0xE21F: [6,232,569,162,406,'406 -130c-13 -62 -73 -102 -127 -102c-69 0 -117 58 -116 101c1 48 50 109 93 137h46c-29 -17 -53 -43 -68 -73c-26 -51 -5 -104 67 -107c31 -2 64 17 75 56c5 19 33 8 30 -12'], + 0xE220: [798,20,877,69,805,'805 338c0 -95 -40 -186 -108 -253c-70 -68 -163 -105 -260 -105s-191 37 -260 105c-68 67 -108 158 -108 253c0 97 39 190 108 258c69 69 163 107 260 107c73 0 144 -22 204 -61c24 5 45 21 57 42c-3 -1 -6 -1 -10 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57 c35 0 58 -33 58 -69c0 -51 -29 -98 -73 -111c8 -7 16 -14 24 -22c69 -68 108 -161 108 -258zM698 355c0 81 -19 163 -70 225c-47 58 -117 92 -191 92s-144 -34 -191 -92c-51 -62 -70 -144 -70 -225c0 -87 18 -175 70 -244c46 -60 116 -98 191 -98s145 38 191 98 c52 69 70 157 70 244'], + 0xE221: [546,10,569,39,548,'548 476c0 -53 -32 -102 -79 -113c37 -41 59 -95 59 -151c0 -60 -27 -117 -72 -157c-47 -43 -109 -65 -173 -65c-63 0 -125 22 -173 65c-44 40 -71 97 -71 157c0 62 26 122 71 165c47 44 109 68 173 68c58 0 115 -19 160 -56c24 5 44 21 57 42c-3 0 -7 -1 -10 -1 c-38 0 -57 29 -57 58s19 58 57 58c34 0 58 -33 58 -70zM436 224c0 49 -3 101 -34 139c-28 36 -73 55 -119 55s-90 -19 -119 -55c-30 -38 -34 -90 -34 -139c0 -52 3 -106 34 -148c28 -36 73 -55 119 -55s91 19 119 55c32 42 34 96 34 148'], + 0xE222: [664,0,569,109,473,'473 0l-179 4l-178 -4v36h38c100 0 100 13 100 46v510c-55 -28 -121 -28 -145 -28v36c41 0 132 1 196 64c28 0 30 -1 30 -28v-554c0 -33 0 -46 100 -46h38v-36'], + 0xE223: [703,-329,512,46,465,'465 454c0 -66 -83 -66 -83 -66c-38 0 -61 26 -64 55c-18 -27 -58 -59 -125 -59c-59 0 -147 18 -147 78c0 31 24 70 99 93c62 19 117 21 163 22v22c0 59 -51 85 -98 85c-5 0 -54 0 -84 -18c23 -5 29 -20 29 -32c0 -19 -16 -33 -39 -33c-22 0 -40 12 -40 34 c0 43 56 68 136 68c49 0 90 -11 124 -35c39 -26 39 -52 39 -89v-123c0 -9 0 -42 31 -42s31 34 31 41v38h28v-39zM447 342c0 -7 -8 -13 -18 -13h-347c-10 0 -18 6 -18 13c0 6 8 12 18 12h347c10 0 18 -6 18 -12zM308 490v69c-151 -5 -191 -59 -191 -97c0 -34 40 -58 83 -58 c38 0 108 19 108 86'], + 0xE224: [703,-329,477,33,444,'444 540c0 -87 -92 -156 -205 -156c-114 0 -206 69 -206 156c0 88 90 163 206 163c115 0 205 -75 205 -163zM426 342c0 -7 -8 -13 -18 -13h-339c-10 0 -18 6 -18 13c0 6 8 12 18 12h339c10 0 18 -6 18 -12zM368 547c0 33 -3 68 -26 95c-19 22 -54 42 -103 42 c-43 0 -79 -16 -100 -36c-29 -30 -30 -71 -30 -101c0 -33 3 -69 25 -98c28 -34 73 -42 105 -42c41 0 79 14 102 40c24 29 27 66 27 100'], + 0xE225: [742,58,877,70,806,'806 338c0 -196 -163 -358 -368 -358c-63 0 -130 14 -206 60l-74 -98l-25 19l74 99c-85 68 -137 169 -137 278c0 200 163 365 368 365c57 0 131 -13 205 -62l75 101l25 -20l-74 -100c121 -99 137 -223 137 -284zM617 607c-52 46 -115 68 -179 68 c-71 0 -273 -33 -273 -336c0 -105 22 -183 71 -240zM711 339c0 65 -8 171 -72 244l-380 -508c26 -24 88 -67 179 -67c100 0 172 51 206 95c54 70 67 150 67 236'], + 0xE226: [536,104,569,45,523,'523 213c0 -125 -108 -223 -239 -223c-23 0 -61 3 -104 22c-3 2 -6 2 -6 2c-3 0 -7 -8 -9 -10l-69 -108c-4 2 -22 15 -22 15s3 7 6 11l68 107c-84 58 -103 132 -103 184c0 125 104 233 239 233c30 0 70 -5 113 -28l75 118l23 -16l-74 -117c61 -39 102 -113 102 -190z M378 389c-32 21 -64 29 -94 29c-53 0 -98 -25 -123 -58c-30 -39 -37 -89 -37 -147c0 -42 3 -107 45 -150zM444 213c0 68 -11 120 -45 156l-207 -325c9 -6 43 -26 92 -26c43 0 89 14 122 52c36 43 38 105 38 143'], + 0xE227: [683,0,768,58,697,'697 495c0 -101 -114 -185 -259 -185h-182v-229c0 -35 2 -45 79 -45h24v-36l-151 4l-150 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h380c147 0 259 -89 259 -188zM590 495c0 58 -10 152 -177 152h-113c-47 0 -48 -8 -48 -39v-266h161 c177 0 177 109 177 153'], + 0xE228: [441,194,631,49,584,'584 216c0 -127 -113 -226 -245 -226c-84 0 -131 53 -136 58v-163c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v462c0 42 -5 47 -75 47v36l150 11v-61c41 40 99 61 156 61c127 0 229 -102 229 -225zM493 216 c0 105 -65 193 -149 193c-53 0 -111 -26 -141 -76v-232c3 -6 42 -83 130 -83c85 0 160 84 160 198'], + 0xE229: [750,56,939,70,867,'775 725c0 -3 0 -9 -10 -22l-554 -743c-6 -8 -12 -16 -24 -16c-14 0 -25 10 -25 25c0 8 3 11 11 22l483 649l-1 1c-41 -20 -86 -30 -133 -30c-50 0 -105 10 -166 42c18 -44 20 -85 20 -105c0 -112 -64 -201 -145 -201s-161 81 -161 202c0 117 78 201 161 201 c29 0 51 -9 76 -30c71 -58 142 -81 214 -81c127 0 187 73 209 101c9 10 18 10 21 10c10 0 24 -8 24 -25zM867 145c0 -112 -64 -201 -145 -201s-161 81 -161 202c0 117 78 201 161 201c80 0 145 -87 145 -202zM342 549c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174 c0 -166 74 -173 92 -173c54 0 109 70 109 174zM833 146c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174c0 -166 74 -173 92 -173c54 0 109 70 109 174'], + 0xE22A: [750,56,1610,70,1562,'1562 145c0 -112 -64 -201 -145 -201s-161 81 -161 202c0 117 78 201 161 201c80 0 145 -87 145 -202zM1206 145c0 -112 -64 -201 -145 -201s-161 81 -161 202c0 117 78 201 161 201c80 0 145 -87 145 -202zM850 145c0 -112 -64 -201 -145 -201s-161 81 -161 202 c0 117 78 201 161 201c80 0 145 -87 145 -202zM775 725c0 -3 0 -9 -10 -22l-554 -743c-6 -8 -12 -16 -24 -16c-14 0 -25 10 -25 25c0 8 3 11 11 22l483 649l-1 1c-41 -20 -86 -30 -133 -30c-50 0 -105 10 -166 42c18 -44 20 -85 20 -105c0 -112 -64 -201 -145 -201 s-161 81 -161 202c0 117 78 201 161 201c29 0 51 -9 76 -30c71 -58 142 -81 214 -81c127 0 187 73 209 101c9 10 18 10 21 10c10 0 24 -8 24 -25zM1528 146c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174c0 -166 74 -173 92 -173c54 0 109 70 109 174zM1172 146 c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174c0 -166 74 -173 92 -173c54 0 109 70 109 174zM816 146c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174c0 -166 74 -173 92 -173c54 0 109 70 109 174zM342 549c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174 c0 -166 74 -173 92 -173c54 0 109 70 109 174'], + 0xE22B: [750,56,1256,60,1196,'1196 145c0 -112 -64 -201 -145 -201s-161 81 -161 202c0 117 78 201 161 201c80 0 145 -87 145 -202zM840 145c0 -112 -64 -201 -145 -201s-161 81 -161 202c0 117 78 201 161 201c80 0 145 -87 145 -202zM765 725c0 -3 0 -9 -10 -22l-554 -743c-6 -8 -12 -16 -24 -16 c-14 0 -25 10 -25 25c0 8 3 11 11 22l483 649l-1 1c-41 -20 -86 -30 -133 -30c-50 0 -105 10 -166 42c18 -44 20 -85 20 -105c0 -112 -64 -201 -145 -201s-161 81 -161 202c0 117 78 201 161 201c29 0 51 -9 76 -30c71 -58 142 -81 214 -81c127 0 187 73 209 101 c9 10 18 10 21 10c10 0 24 -8 24 -25zM1162 146c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174c0 -166 74 -173 92 -173c54 0 109 70 109 174zM806 146c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174c0 -166 74 -173 92 -173c54 0 109 70 109 174zM332 549 c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174c0 -166 74 -173 92 -173c54 0 109 70 109 174'], + 0xE22C: [347,56,449,72,378,'378 145c0 -112 -64 -201 -145 -201s-161 81 -161 202c0 117 78 201 161 201c80 0 145 -87 145 -202zM344 146c0 101 -54 173 -109 173c-17 0 -92 -6 -92 -174c0 -166 74 -173 92 -173c54 0 109 70 109 174'], + 0xE22D: [441,10,893,78,815,'815 -6c-16 -4 -18 -4 -41 -4c-142 0 -219 113 -256 167c-55 -93 -143 -167 -249 -167c-116 0 -191 111 -191 225c0 117 77 226 194 226c142 0 219 -113 256 -167c55 93 143 167 249 167c0 0 23 0 38 -4v-35c-11 3 -18 3 -31 3c-131 0 -207 -126 -228 -170l52 -72 c30 -41 93 -124 180 -124c7 0 18 2 27 3v-48zM490 196l-52 72c-30 41 -93 124 -180 124c-85 0 -152 -80 -152 -177c0 -87 53 -189 156 -189c131 0 207 126 228 170'], + 0xE22E: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM635 342c0 162 -131 293 -293 293c-163 0 -294 -131 -294 -293c0 -163 131 -294 294 -294c162 0 293 131 293 294zM515 417c0 -49 -56 -91 -128 -91h-89 v-113c0 -17 1 -22 39 -22h12v-18l-75 2l-74 -2v18h12c38 0 39 6 39 22v257c0 17 -1 22 -39 22h-12v18h187c73 0 128 -44 128 -93zM462 417c0 29 -5 75 -87 75h-55c-24 0 -24 -4 -24 -19v-131h79c87 0 87 54 87 75'], + 0xE22F: [703,194,877,70,812,'812 -8c0 -62 -30 -186 -135 -186c-93 0 -114 88 -137 188c-50 -14 -90 -14 -102 -14c-205 0 -368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365c0 -152 -98 -279 -224 -329c26 -55 51 -96 104 -96c39 0 91 23 98 82c1 8 2 19 14 19c14 0 14 -14 14 -22z M703 339c0 234 -142 332 -265 332s-265 -98 -265 -332c0 -192 97 -283 185 -313c-7 11 -11 26 -11 40c0 47 40 85 92 85c65 0 99 -54 124 -104c58 33 140 115 140 292zM530 30c-16 56 -40 93 -91 93c-38 0 -64 -27 -64 -56c0 -16 10 -55 63 -55c40 0 75 11 92 18'], + 0xE230: [441,194,600,46,581,'581 -194c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v173c-25 -25 -68 -68 -148 -68c-126 0 -233 100 -233 225c0 128 113 226 242 226c71 0 121 -39 152 -87l36 87h30v-556c0 -43 10 -43 75 -43v-36zM431 144v127c0 56 -51 138 -135 138 c-80 0 -159 -78 -159 -195c0 -106 65 -196 148 -196c51 0 101 29 131 78c15 26 15 30 15 48'], + 0xE231: [704,0,539,70,468,'468 569c0 -61 -44 -92 -63 -104c-75 -47 -134 -121 -134 -209v-34c0 -21 0 -28 -17 -28s-17 5 -17 25v42c0 77 37 165 104 225c16 14 36 34 36 87c0 46 -7 103 -121 103c-74 0 -120 -32 -138 -60c47 -4 47 -41 47 -47c0 -34 -28 -48 -47 -48c-15 0 -48 9 -48 50 c0 68 66 133 189 133c170 0 209 -82 209 -135zM311 57c0 -29 -23 -57 -58 -57c-29 0 -57 23 -57 58c0 29 23 57 58 57c29 0 57 -23 57 -58'], + 0xE232: [500,204,539,70,468,'311 442c0 -29 -23 -57 -58 -57c-29 0 -57 23 -57 58c0 29 23 57 58 57c29 0 57 -23 57 -58zM468 -71c0 -84 -93 -133 -214 -133c-155 0 -184 83 -184 135c0 33 12 71 50 100c114 87 117 181 117 234v16c0 20 0 25 17 25c16 0 17 -1 17 -37c0 -54 -1 -158 -83 -255 c-24 -28 -27 -55 -27 -90c0 -46 1 -100 95 -100c25 0 122 4 163 60c-46 4 -46 41 -46 47c0 34 28 48 47 48c15 0 48 -9 48 -50'], + 0xE233: [703,-422,437,121,316,'202 663l-23 -241h-34l-23 241c-2 22 17 40 40 40s42 -18 40 -40zM316 663l-23 -241h-34l-23 241c-2 22 17 40 40 40s42 -18 40 -40'], + 0xE234: [694,-385,323,89,219,'219 442c0 -27 -19 -57 -57 -57c-49 0 -73 50 -73 109c0 123 90 200 102 200c7 0 14 -9 14 -15c0 -5 -2 -8 -9 -14c-79 -70 -79 -152 -79 -184c7 9 16 19 44 19c40 0 58 -30 58 -58'], + 0xE235: [694,-385,323,104,234,'234 585c0 -123 -90 -200 -102 -200c-7 0 -14 9 -14 15c0 5 2 8 9 14c79 70 79 152 79 184c-7 -9 -16 -19 -44 -19c-42 0 -58 33 -58 57c0 31 22 58 57 58c49 0 73 -50 73 -109'], + 0xE236: [114,195,323,97,227,'227 5c0 -123 -90 -200 -102 -200c-7 0 -14 9 -14 15c0 5 2 8 9 14c79 70 79 152 79 184c-7 -9 -16 -19 -44 -19c-40 0 -58 30 -58 58c0 27 19 57 57 57c49 0 73 -50 73 -109'], + 0xE237: [703,-422,323,121,202,'202 663l-23 -241h-34l-23 241c-2 22 17 40 40 40s42 -18 40 -40'], + 0xE238: [683,20,829,58,817,'817 91c0 -30 -22 -111 -107 -111c-28 0 -87 5 -130 40c-46 38 -46 79 -46 144c0 67 0 92 -35 123c-44 41 -96 41 -114 41h-133v-247c0 -35 2 -45 79 -45h24v-36l-149 4l-148 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h337c155 0 287 -81 287 -181 c0 -81 -90 -140 -180 -161c54 -17 82 -43 92 -54c29 -33 32 -49 43 -129c12 -91 20 -150 77 -150c31 0 64 25 69 83c1 10 2 19 17 19c17 0 17 -12 17 -19zM575 502c0 145 -137 145 -233 145c-21 0 -55 0 -63 -1c-26 -3 -27 -10 -27 -38v-252h130c106 0 193 34 193 146'], + 0xE239: [441,0,446,49,407,'407 377c0 -30 -22 -46 -46 -46c-19 0 -45 13 -45 46c0 16 8 29 17 36c-95 0 -134 -101 -134 -185v-147c0 -34 0 -45 74 -45h20v-36l-130 4c-41 0 -109 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l143 11v-107h1c30 76 85 107 135 107c47 0 79 -30 79 -64'], + 0xE23A: [683,20,829,58,817,'817 91c0 -30 -22 -111 -107 -111c-28 0 -87 5 -130 40c-7 6 -13 11 -18 17l-39 -33c-3 -2 -7 -4 -11 -4c-10 0 -18 8 -18 18c0 6 2 10 6 14l44 37c-10 26 -10 56 -10 95c0 67 0 92 -35 123c-44 41 -96 41 -114 41h-133v-247c0 -35 2 -45 79 -45h24v-36l-149 4l-148 -4 v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h337c155 0 287 -81 287 -181c0 -81 -90 -140 -180 -161c54 -17 82 -43 92 -54c29 -33 32 -49 43 -129l1 -9l95 80c4 3 8 4 12 4c10 0 18 -8 18 -18c0 -5 -2 -10 -6 -13l-113 -95c10 -62 25 -99 70 -99 c31 0 64 25 69 83c1 10 2 19 17 19c17 0 17 -12 17 -19zM575 502c0 145 -137 145 -233 145c-21 0 -55 0 -63 -1c-26 -3 -27 -10 -27 -38v-252h130c106 0 193 34 193 146'], + 0xE23B: [519,17,877,169,706,'699 -10c-17 -17 -34 0 -44 9l-217 217l-217 -217c-10 -10 -26 -26 -44 -8c-17 17 0 34 10 43l217 217l-217 217c-10 10 -27 26 -9 44c17 17 34 0 43 -9l217 -217l217 216c10 10 26 26 44 8c17 -17 0 -34 -10 -43l-216 -216l217 -217c10 -10 26 -26 9 -44zM486 471 c0 -26 -21 -48 -48 -48c-26 0 -48 22 -48 48c0 27 22 48 48 48c27 0 48 -21 48 -48zM266 251c0 -27 -21 -48 -48 -48c-26 0 -48 21 -48 48c0 26 22 48 48 48c27 0 48 -22 48 -48zM486 31c0 -27 -21 -48 -48 -48c-26 0 -48 21 -48 48c0 26 22 48 48 48c27 0 48 -22 48 -48z M706 251c0 -27 -21 -48 -48 -48c-26 0 -48 21 -48 48c0 26 22 48 48 48c27 0 48 -22 48 -48'], + 0xE23C: [683,0,683,0,683,'683 342c0 -189 -153 -342 -341 -342c-189 0 -342 153 -342 342c0 188 153 341 342 341c188 0 341 -153 341 -341zM635 342c0 162 -131 293 -293 293c-163 0 -294 -131 -294 -293c0 -163 131 -294 294 -294c162 0 293 131 293 294zM544 223c0 -15 -11 -54 -53 -54 c-14 0 -43 2 -64 19c-23 19 -23 39 -23 71c0 33 0 45 -17 61c-22 20 -47 20 -56 20h-66v-122c0 -17 1 -22 39 -22h12v-18l-73 2l-73 -2v18h12c38 0 39 6 39 22v257c0 17 -1 22 -39 22h-12v18h166c76 0 141 -40 141 -89c0 -40 -44 -69 -89 -80c27 -8 41 -21 46 -26 c14 -16 15 -24 21 -64c6 -45 10 -74 38 -74c15 0 31 13 34 41c0 5 1 10 8 10c9 0 9 -6 9 -10zM424 426c0 71 -67 71 -114 71h-31c-13 -2 -14 -5 -14 -19v-124h64c53 0 95 16 95 72'], + 0xE23D: [702,-526,843,313,531,'489 614c0 49 -38 53 -67 53s-67 -4 -67 -53c0 -51 44 -53 67 -53s67 2 67 53zM531 613c0 -45 -46 -87 -109 -87c-60 0 -109 39 -109 89c0 45 46 87 109 87c60 0 109 -39 109 -89'], + 0xE23E: [703,20,631,70,560,'560 185c0 -106 -86 -205 -218 -205c-65 0 -142 14 -205 69c-8 -13 -28 -45 -37 -57c-6 -9 -8 -12 -16 -12c-14 0 -14 9 -14 26v194c0 20 0 27 17 27c16 0 16 -6 17 -22c7 -151 141 -189 238 -189c96 0 154 71 154 141c0 45 -21 77 -44 100c-29 28 -49 32 -140 52 c-108 24 -141 31 -181 70c-36 34 -61 77 -61 133c0 101 90 191 216 191c28 0 111 -3 177 -70l36 56c7 11 9 14 17 14c14 0 14 -9 14 -26v-195c0 -19 0 -26 -17 -26c-15 0 -16 5 -18 20c-16 105 -74 195 -209 195c-91 0 -152 -63 -152 -129c0 -42 27 -105 115 -125l148 -34 c100 -23 163 -108 163 -198'], + 0xE23F: [446,10,453,45,407,'407 131c0 -71 -48 -141 -178 -141c-24 0 -78 2 -122 43c-20 -22 -39 -43 -48 -43c-14 0 -14 9 -14 26v123c0 20 0 27 17 27c14 0 15 -4 18 -17c18 -68 53 -131 149 -131s123 46 123 85c0 67 -81 81 -131 90c-62 10 -100 17 -138 50c-24 20 -38 46 -38 78 c0 50 34 125 177 125c37 0 75 -6 105 -27c6 5 16 14 18 15c13 12 15 12 20 12c14 0 14 -9 14 -26v-93c0 -19 0 -26 -17 -26c-4 0 -16 0 -17 11c-2 29 -7 110 -123 110c-95 0 -122 -39 -122 -71c0 -53 65 -65 145 -79c35 -6 81 -14 119 -49c26 -24 43 -54 43 -92'], + 0xE240: [703,200,631,70,560,'560 185c0 -104 -83 -201 -211 -205v-40c58 0 119 -20 119 -70c0 -70 -151 -70 -271 -70h-34v34h17c84 0 196 0 196 36s-51 36 -95 36v78c-49 8 -100 26 -144 65c-8 -13 -28 -45 -37 -57c-6 -9 -8 -12 -16 -12c-14 0 -14 9 -14 26v194c0 20 0 27 17 27c16 0 16 -6 17 -22 c7 -151 141 -189 238 -189c96 0 154 71 154 141c0 45 -21 77 -44 100c-29 28 -49 32 -140 52c-108 24 -141 31 -181 70c-36 34 -61 77 -61 133c0 101 90 191 216 191c28 0 111 -3 177 -70l36 56c7 11 9 14 17 14c14 0 14 -9 14 -26v-195c0 -19 0 -26 -17 -26 c-15 0 -16 5 -18 20c-16 105 -74 195 -209 195c-91 0 -152 -63 -152 -129c0 -42 27 -105 115 -125l148 -34c100 -23 163 -108 163 -198'], + 0xE241: [446,200,453,45,407,'407 131c0 -65 -40 -129 -147 -140v-51c58 0 118 -20 118 -70c0 -70 -150 -70 -270 -70h-34v34h17c84 0 195 0 195 36s-50 36 -94 36v87c-25 4 -57 14 -85 40c-20 -22 -39 -43 -48 -43c-14 0 -14 9 -14 26v123c0 20 0 27 17 27c14 0 15 -4 18 -17 c18 -68 53 -131 149 -131s123 46 123 85c0 67 -81 81 -131 90c-62 10 -100 17 -138 50c-24 20 -38 46 -38 78c0 50 34 125 177 125c37 0 75 -6 105 -27c6 5 16 14 18 15c13 12 15 12 20 12c14 0 14 -9 14 -26v-93c0 -19 0 -26 -17 -26c-4 0 -16 0 -17 11 c-2 29 -7 110 -123 110c-95 0 -122 -39 -122 -71c0 -53 65 -65 145 -79c35 -6 81 -14 119 -49c26 -24 43 -54 43 -92'], + 0xE242: [431,194,323,104,222,'219 373c0 -29 -23 -57 -58 -57c-29 0 -57 23 -57 58c0 29 23 57 58 57c29 0 57 -23 57 -58zM222 8c0 -121 -77 -202 -90 -202c-7 0 -14 9 -14 15c0 4 1 6 7 12c44 49 68 105 69 176c-4 -2 -15 -9 -32 -9c-40 0 -58 30 -58 58c0 27 19 57 57 57c56 0 61 -73 61 -107'], + 0xE243: [683,-250,995,42,915,'336 373c0 -64 -52 -123 -131 -123c-39 0 -85 8 -123 41c-5 -8 -17 -27 -22 -34c-4 -6 -5 -7 -10 -7c-8 0 -8 5 -8 15v117c0 12 0 16 10 16s10 -4 10 -13c5 -91 85 -114 143 -114s93 43 93 85c0 27 -13 46 -27 60c-17 17 -29 19 -84 31c-65 14 -84 19 -108 42 c-22 20 -37 46 -37 80c0 60 54 114 130 114c16 0 66 -1 106 -42l21 34c5 7 6 8 11 8c8 0 8 -5 8 -15v-117c0 -12 0 -16 -10 -16c-9 0 -10 3 -11 12c-10 63 -44 117 -125 117c-55 0 -92 -38 -92 -77c0 -25 17 -63 69 -75l89 -21c60 -13 98 -64 98 -118zM915 262l-87 2l-87 -2 v21h14c47 0 48 7 48 27v339h-1l-158 -375c-5 -11 -10 -12 -15 -12c-9 0 -12 6 -15 13l-156 368v-317c0 -16 0 -43 62 -43v-21l-74 2l-73 -2v21c62 0 62 27 62 43v297c0 21 -1 27 -47 27h-15v21h105c13 0 18 0 23 -13l143 -339l144 340c5 12 11 12 23 12h104v-21h-14 c-47 0 -48 -7 -48 -27v-313c0 -21 1 -27 48 -27h14v-21'], + 0xE244: [676,20,569,70,545,'545 644c0 -26 0 -28 -10 -40l-150 -189c-43 -54 -83 -143 -83 -337v-40c0 -13 0 -58 -48 -58c-47 0 -47 46 -47 57c0 59 12 218 143 390l104 132h-218c-15 0 -96 0 -104 -6c-16 -10 -26 -76 -28 -91h-34l35 214h34c3 -17 5 -24 57 -28c36 -3 47 -4 87 -4h262'], + 0xE245: [664,20,569,54,514,'514 204c0 -131 -106 -224 -228 -224c-110 0 -232 78 -232 337c0 215 147 347 291 347c99 0 141 -52 141 -110c0 -29 -18 -49 -48 -49s-47 22 -47 47c0 29 21 46 46 48c-20 27 -60 35 -90 35c-64 0 -118 -37 -152 -91c-38 -61 -45 -135 -45 -217c22 45 66 98 146 98 c117 0 218 -94 218 -221zM418 204c0 58 -1 100 -25 138c-25 37 -56 55 -102 55c-80 0 -138 -75 -138 -172c0 -60 8 -110 23 -140c21 -44 60 -73 110 -73c49 0 81 19 105 54c27 39 27 81 27 138'], + 0xE246: [683,34,843,67,776,'776 144c0 -90 -42 -178 -122 -178c-91 0 -163 60 -238 111c-17 -78 -129 -97 -233 -97c-62 0 -116 43 -116 102c0 72 83 103 165 103c38 0 73 -12 106 -28c-6 56 -23 111 -36 167h-168v36h161c-4 23 -7 47 -7 71c0 132 88 252 214 252c100 0 190 -66 190 -160 c0 -27 -22 -48 -48 -48c-27 0 -48 21 -48 48c0 26 21 48 48 48h3c-24 48 -83 78 -145 78c-95 0 -134 -111 -134 -218c0 -24 3 -48 6 -71h181v-36h-174c14 -72 36 -143 37 -216c61 -40 121 -80 193 -80c70 0 131 49 131 116h34zM341 116l-1 7c-33 17 -69 28 -108 28 c-63 0 -131 -15 -131 -69c0 -40 39 -68 82 -68c78 0 158 33 158 102'], + 0xE247: [676,0,816,48,766,'766 446h-34l-9 78c-1 5 -8 69 -53 96c-35 20 -78 20 -134 20c-20 0 -49 0 -59 -1c-22 -4 -22 -15 -22 -38v-519c0 -33 0 -46 104 -46h42v-36c-49 4 -141 4 -193 4s-145 0 -194 -4v36h42c104 0 104 13 104 46v519c0 23 0 34 -22 38c-10 1 -39 1 -59 1 c-154 0 -183 -21 -197 -194h-34l21 230h676'], + 0xE248: [615,10,446,29,375,'375 126c0 -79 -46 -136 -113 -136c-56 0 -140 23 -140 135v270h-93v28c96 3 137 102 138 192h34v-184h156v-36h-156v-271c0 -18 0 -102 69 -102c39 0 71 37 71 105v54h34v-55'], + 0xE249: [682,-1,706,59,636,'636 366c0 -101 -101 -188 -227 -188h-159v-95c0 -24 0 -39 28 -44c20 -3 50 -3 75 -3v-35l-147 3l-147 -3v35c28 0 51 0 71 3c31 4 32 17 32 44v517c0 24 0 39 -28 44c-20 3 -50 3 -75 3v35l147 -3l147 3v-35c-28 0 -51 0 -71 -3c-31 -4 -32 -17 -32 -44v-45h147 c157 0 239 -100 239 -189zM533 367c0 48 -31 152 -155 152h-128v-305h122c103 0 161 80 161 153'], + 0xE24A: [694,194,631,49,584,'584 216c0 -127 -113 -226 -245 -226c-84 0 -131 53 -136 58v-163c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v704c0 50 -7 58 -75 58v36l150 11v-314c41 40 99 61 156 61c127 0 229 -102 229 -225zM493 216 c0 105 -65 193 -149 193c-53 0 -111 -26 -141 -76v-232c3 -6 42 -83 130 -83c85 0 160 84 160 198'], + 0xE24B: [664,20,569,54,514,'514 173c0 -100 -96 -193 -235 -193c-121 0 -225 61 -225 155c0 41 28 58 56 58c31 0 55 -23 55 -55c0 -21 -11 -54 -58 -56c42 -59 130 -70 170 -70c58 0 130 37 130 161c0 107 -56 161 -134 161h-54c-17 0 -26 0 -26 14c0 11 10 13 10 13c5 1 7 1 32 3 c50 3 78 5 111 43c26 31 40 77 40 119c0 87 -63 109 -108 109c-37 0 -106 -11 -141 -55c31 -2 51 -23 51 -52c0 -28 -20 -51 -51 -51c-30 0 -52 19 -52 53c0 80 85 134 196 134s202 -59 202 -138c0 -61 -38 -136 -143 -174c110 -23 174 -101 174 -179'], + 0xE24C: [280,-252,854,12,842,'842 252h-830v28h830v-28'], + 0xE24D: [652,-552,569,101,469,'469 632c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE24E: [114,0,556,0,555,'555 97l-54 -44c-17 -14 -37 -25 -57 -35c-22 -10 -48 -18 -73 -18c-40 0 -71 17 -100 34c-35 20 -64 37 -104 37c-51 0 -104 -30 -153 -71l-14 17l54 44c17 14 37 25 57 35c22 10 48 18 73 18c40 0 71 -17 100 -34c35 -20 64 -37 104 -37c51 0 104 30 153 71'], + 0xE24F: [688,-278,1106,29,1039,'460 545h-21l-5 47c-1 3 -5 42 -32 58c-21 12 -47 12 -80 12c-12 0 -30 0 -36 -1c-13 -2 -13 -9 -13 -23v-311c0 -20 0 -28 62 -28h26v-21c-30 2 -85 2 -116 2s-87 0 -117 -2v21h26c62 0 62 8 62 28v311c0 14 0 21 -13 23c-6 1 -24 1 -36 1c-92 0 -109 -13 -118 -117h-20 l12 138h406zM1039 278l-87 2l-87 -2v21h14c46 0 47 7 47 27v339l-159 -375c-4 -10 -10 -12 -14 -12c-9 0 -12 6 -15 14l-156 367h-1v-316c0 -17 0 -44 62 -44v-21c-24 2 -48 2 -73 2s-49 0 -73 -2v21c62 0 62 27 62 44v296c0 21 -2 27 -48 27h-14v22h105c12 0 17 0 23 -14 l143 -339l144 341c5 12 10 12 22 12h105v-22h-15c-46 0 -47 -7 -47 -27v-313c0 -21 1 -27 47 -27h15v-21'], + 0xE250: [281,-253,770,16,753,'753 253h-737v28h737v-28'], + 0xE251: [664,0,569,63,505,'505 182l-30 -182h-412c0 28 0 30 10 39l241 238c32 36 94 105 94 192c0 81 -52 159 -152 159c-47 0 -115 -22 -146 -93c52 0 59 -35 59 -53c0 -36 -29 -53 -53 -53c-10 0 -53 5 -53 56c0 92 84 179 208 179c128 0 234 -74 234 -195c0 -95 -69 -157 -143 -216 c-60 -47 -95 -75 -200 -168h184c14 0 91 0 99 6c13 10 23 69 26 91h34'], + 0xE252: [683,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36'], + 0xE253: [441,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36'], + 0xE254: [798,20,843,55,806,'806 727c0 -66 -56 -116 -124 -123v-376c0 -66 -26 -129 -72 -175c-47 -47 -109 -73 -175 -73c-73 0 -142 25 -195 72c-51 46 -82 109 -82 176v386c0 12 -6 24 -17 28c-17 5 -57 5 -86 5v36l151 -3l150 3v-36c-29 0 -68 0 -86 -5c-11 -4 -17 -16 -17 -28v-386 c0 -62 13 -114 46 -152c34 -38 83 -60 136 -60c57 0 111 22 150 61c40 39 61 94 61 151v358c0 19 -9 36 -25 46c-23 14 -51 15 -77 15v36l120 -3c6 0 12 1 18 3v-45c33 4 62 21 78 46c-4 -1 -8 -1 -12 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57c35 0 58 -34 58 -71'], + 0xE255: [546,10,631,53,640,'640 474c0 -65 -58 -109 -126 -121v-262c0 -17 0 -37 12 -46c13 -9 41 -9 63 -9v-36l-151 -10v87c-26 -52 -76 -87 -136 -87c-54 0 -95 6 -130 31c-30 22 -44 60 -44 100v217c0 17 0 37 -12 46c-13 10 -41 10 -63 10v35l155 11v-319c0 -42 2 -65 16 -80 c17 -18 44 -23 82 -23c71 0 127 63 128 141v183c0 16 -1 34 -12 42c-13 10 -41 10 -63 10v35l155 11v-50c31 6 59 20 75 41l-7 -1c-38 0 -57 29 -57 58s19 58 57 58c35 0 58 -35 58 -72'], + 0xE256: [-100,148,374,0,374,'374 -148h-374v48h374v-48'], + 0xE257: [683,232,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -139 -109 -247 -244 -249c-14 -14 -26 -29 -35 -47c-25 -51 -4 -104 68 -107c31 -2 64 17 75 56c5 19 33 8 30 -12c-13 -62 -73 -102 -127 -102c-69 0 -117 58 -116 101c1 37 30 82 63 113c-131 16 -238 116 -238 248v372 c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36c40 -3 81 -4 121 -4s81 1 121 4v-36'], + 0xE258: [441,232,631,54,610,'610 -130c-13 -62 -73 -102 -127 -102c-69 0 -117 58 -116 101c1 41 36 91 73 122v83h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349 c0 -49 8 -56 75 -56v-36l-103 -7c-21 -16 -38 -36 -50 -60c-25 -51 -4 -104 68 -107c31 -2 64 17 75 56c5 19 33 8 30 -12'], + 0xE259: [683,20,843,31,811,'811 647c-76 -1 -100 -35 -113 -66l-248 -580c-9 -21 -19 -21 -29 -21c-19 0 -22 7 -29 23l-260 608c-13 31 -30 36 -84 36h-17v36c3 0 78 -4 128 -4l149 4v-36c-27 0 -79 0 -79 -27c0 -3 0 -5 6 -17l216 -507l207 483c3 7 5 14 5 21c0 31 -32 47 -69 47v36 c6 0 80 -4 120 -4c29 0 68 1 97 4v-36'], + 0xE25A: [431,10,600,31,568,'568 395c-16 0 -66 -1 -94 -62l-147 -323c-5 -11 -9 -20 -28 -20c-17 0 -23 9 -28 21l-158 348c-15 34 -27 36 -82 36v36c29 -3 68 -4 98 -4c41 0 114 4 114 4v-36c-17 0 -51 0 -51 -23c0 -7 6 -19 6 -19l124 -272l113 247c7 14 8 24 8 29c0 3 0 36 -42 38v36 c27 -3 64 -4 91 -4c25 0 51 2 76 4v-36'], + 0xE25B: [683,20,1151,29,1121,'1121 647c-66 0 -90 -30 -103 -66l-207 -578c-6 -16 -10 -23 -27 -23c-18 0 -21 10 -26 23l-183 511l-183 -511c-5 -13 -8 -23 -26 -23c-16 0 -21 6 -27 23l-217 607c-13 37 -31 37 -93 37v36c41 -3 81 -4 122 -4l149 4v-36c-26 0 -83 0 -83 -28c0 -3 0 -5 5 -18 l174 -486l161 449c-8 23 -21 60 -28 68c-11 13 -28 15 -81 15v36c41 -3 81 -4 122 -4l149 4v-36c-26 0 -83 0 -83 -28c0 0 0 -3 4 -14l175 -490l165 462c5 13 5 15 5 19c0 26 -27 50 -84 51v36c42 -2 85 -4 127 -4c29 0 83 3 93 4v-36'], + 0xE25C: [431,10,816,30,784,'784 395c-31 -1 -64 -11 -84 -61l-127 -321c-6 -16 -9 -23 -27 -23s-22 9 -28 24l-111 283l-113 -286c-5 -13 -8 -21 -26 -21s-21 8 -27 23l-139 353c-11 29 -33 29 -72 29v36c31 -3 63 -4 94 -4c40 0 113 4 113 4v-36c-18 0 -54 0 -54 -25c0 -4 0 -5 6 -19l101 -258 l94 238c2 4 4 12 4 12s-9 34 -23 44c-13 8 -34 8 -57 8v36c29 -2 59 -4 88 -4c36 0 72 1 108 4v-36c-28 0 -54 -3 -54 -25c0 -6 3 -14 5 -19l108 -273l97 249c6 14 6 16 6 24c0 24 -17 43 -52 44v36c30 -3 68 -4 98 -4c29 0 45 1 72 4v-36'], + 0xE25D: [683,0,843,38,805,'805 0c-6 0 -84 4 -131 4l-153 -4v36c40 1 59 16 59 28c0 4 -5 11 -7 14l-176 233l-159 -207c-11 -14 -11 -24 -11 -27c0 -15 13 -39 55 -41v-36c-5 0 -85 4 -133 4c-37 0 -74 -1 -111 -4v36c96 0 134 40 154 66l182 238l-205 273c-20 27 -37 34 -96 34h-20v36 c6 0 83 -4 131 -4l152 4v-36c-36 -1 -59 -15 -59 -28c0 -3 0 -5 9 -15l144 -191l127 166c7 9 12 15 12 27c0 11 -9 39 -55 41v36l133 -4c37 0 74 1 111 4v-36c-28 0 -105 -1 -151 -62l-155 -202l237 -313c18 -24 30 -34 96 -34h20v-36'], + 0xE25E: [431,0,600,26,574,'574 0c-32 3 -64 4 -96 4s-104 -3 -113 -4v36c4 0 27 1 27 21c0 6 0 8 -19 29l-87 99l-70 -77c-16 -17 -27 -30 -27 -49c0 -14 8 -21 20 -23v-36c-30 3 -70 4 -100 4c-31 0 -53 -2 -83 -4v36c80 2 114 39 151 79c10 11 85 93 85 96l-8 10l-125 144c-26 30 -52 30 -98 30 v36c29 -3 67 -4 97 -4c37 0 75 1 112 4v-36c-13 0 -27 -6 -27 -21c0 -4 1 -9 11 -20l83 -95l70 79c15 17 15 34 15 34c0 9 -3 20 -20 23v36c30 -3 69 -4 99 -4c27 0 56 2 84 4v-36c-79 -1 -114 -39 -149 -78c-9 -9 -75 -80 -75 -83l8 -10l137 -156c23 -26 31 -32 98 -32v-36 '], + 0xE25F: [683,0,843,24,818,'818 647c-29 0 -93 -3 -136 -65l-216 -309v-188c0 -39 2 -49 79 -49h25v-36l-149 4l-149 -4v36h24c77 0 79 11 79 45v192l-237 340c-20 29 -42 34 -94 34h-20v36s80 -4 132 -4l154 4v-36c-25 0 -65 0 -65 -22c0 -4 0 -6 9 -18l201 -288l182 260c5 8 14 20 14 33 c0 20 -18 35 -51 35v36c6 0 80 -4 120 -4c30 0 69 1 98 4v-36'], + 0xE260: [431,204,600,30,568,'568 395c-16 0 -67 -1 -95 -62l-194 -418c-14 -30 -63 -119 -148 -119c-54 0 -101 35 -101 82c0 26 18 44 44 44c25 0 43 -18 43 -43c0 -33 -29 -43 -29 -43c10 -7 18 -12 43 -12c68 0 100 69 122 117c9 20 19 39 28 59l-168 360c-15 32 -26 35 -82 35v36 c29 -3 68 -4 98 -4l115 4v-36c-17 0 -51 0 -51 -23c0 -7 3 -13 6 -19l123 -264l111 237c4 10 9 19 9 31c0 16 -8 36 -41 38v36c27 -3 64 -4 91 -4c29 0 48 2 76 4v-36'], + 0xE261: [683,0,843,24,818,'818 647c-29 0 -93 -3 -136 -65l-162 -232h155v-36h-180l-29 -41v-87h209v-36h-209v-65c0 -39 2 -49 79 -49h25v-36l-149 4l-149 -4v36h24c77 0 79 11 79 45v69h-206v36h206v87l-29 41h-177v36h152l-183 263c-20 29 -42 34 -94 34h-20v36s80 -4 132 -4l154 4v-36 c-25 0 -65 0 -65 -22c0 -4 0 -6 9 -18l179 -257h44l160 229c5 8 14 20 14 33c0 20 -18 35 -51 35v36c6 0 80 -4 120 -4c30 0 69 1 98 4v-36'], + 0xE262: [683,0,692,70,628,'628 273l-18 -273h-512c-20 0 -28 0 -28 20c0 9 0 11 9 23l428 604h-175c-133 0 -204 -45 -213 -194h-34l12 230h496c19 0 28 0 28 -19c0 -6 0 -11 -8 -22l-428 -602h186c196 0 214 99 223 233h34'], + 0xE263: [431,0,508,39,453,'453 194l-18 -194h-368c-18 0 -28 0 -28 18c0 5 0 9 9 20l302 365h-118c-114 0 -137 -34 -144 -139h-34l12 167h356c16 0 28 0 28 -16c0 -7 -2 -10 -9 -19l-301 -364h123c125 0 146 45 156 162h34'], + 0xE264: [664,20,569,52,516,'516 319c0 -72 0 -339 -232 -339s-232 267 -232 339s0 345 232 345c80 0 142 -40 173 -86c46 -70 59 -149 59 -259zM425 332c0 87 -1 159 -17 213c-18 58 -70 91 -124 91c-41 0 -105 -21 -126 -100c-15 -55 -15 -131 -15 -204c0 -74 0 -156 14 -215 c20 -82 81 -109 127 -109c40 0 108 22 128 113c13 63 13 137 13 211'], + 0xE265: [703,20,694,60,632,'632 -8c0 -7 -5 -12 -12 -12h-4c-3 0 -6 1 -8 4l-41 40c-34 -28 -79 -44 -126 -44c-87 0 -168 41 -225 107c-44 50 -72 111 -85 177h-59c-8 0 -14 8 -11 15l3 12c2 5 7 9 12 9h50c-1 14 -2 28 -2 42s1 28 2 42h-54c-8 0 -14 8 -11 15l3 12c2 5 7 9 12 9h55 c13 65 41 126 85 177c57 65 138 106 225 106c47 0 92 -16 126 -44l41 41c2 2 5 3 8 3h4c7 0 12 -5 12 -12v-149c0 -7 -5 -12 -12 -12h-12c-6 0 -11 5 -12 11c-9 72 -69 126 -142 126c-67 0 -128 -37 -166 -92c-32 -46 -46 -100 -52 -155h323c8 0 14 -6 12 -12l-4 -16 c-2 -5 -6 -8 -12 -8h-322l-1 -42l1 -42h288c8 0 14 -6 12 -12l-4 -16c-2 -5 -7 -8 -12 -8h-281c6 -56 20 -110 52 -156c38 -55 99 -92 166 -92c73 0 133 55 142 127c1 6 6 10 12 10h12c7 0 12 -5 12 -12v-149'], + 0xE266: [483,0,631,131,500,'315 12c0 -7 -5 -12 -12 -12h-4c-5 0 -10 3 -11 8c-33 86 -85 163 -153 225c-2 2 -4 5 -4 9c0 3 2 6 4 9c68 61 120 139 153 225c1 4 6 7 11 7h4c7 0 12 -5 12 -12v-3c-21 -80 -55 -157 -101 -226c46 -69 80 -146 101 -227v-3zM500 12c0 -7 -5 -12 -12 -12h-4 c-5 0 -10 3 -11 8c-33 86 -85 163 -153 225c-2 2 -4 5 -4 9c0 3 2 6 4 9c68 61 120 139 153 225c1 4 6 7 11 7h4c7 0 12 -5 12 -12v-3c-21 -80 -55 -157 -101 -226c46 -69 80 -146 101 -227v-3'], + 0xE267: [483,0,631,131,500,'500 242c0 -4 -1 -7 -4 -9c-68 -62 -120 -139 -153 -225c-1 -5 -6 -8 -11 -8h-4c-7 0 -12 5 -12 12v3c21 81 55 158 102 227c-47 69 -81 146 -102 226v3c0 7 5 12 12 12h4c5 0 10 -3 11 -7c33 -86 85 -164 153 -225c3 -3 4 -6 4 -9zM315 242c0 -4 -1 -7 -4 -9 c-68 -62 -120 -139 -153 -225c-1 -5 -6 -8 -11 -8h-4c-7 0 -12 5 -12 12v3c21 81 55 158 102 227c-47 69 -81 146 -102 226v3c0 7 5 12 12 12h4c5 0 10 -3 11 -7c33 -86 85 -164 153 -225c3 -3 4 -6 4 -9'], + 0xE268: [483,0,430,123,307,'307 12c0 -7 -5 -12 -12 -12h-4c-5 0 -10 3 -11 8c-33 86 -85 163 -153 225c-2 2 -4 5 -4 9c0 3 2 6 4 9c68 61 120 139 153 225c1 4 6 7 11 7h4c7 0 12 -5 12 -12v-3c-21 -80 -55 -157 -101 -226c46 -69 80 -146 101 -227v-3'], + 0xE269: [483,0,430,123,307,'307 242c0 -4 -1 -7 -4 -9c-68 -62 -120 -139 -153 -225c-1 -5 -6 -8 -11 -8h-4c-7 0 -12 5 -12 12v3c21 81 55 158 102 227c-47 69 -81 146 -102 226v3c0 7 5 12 12 12h4c5 0 10 -3 11 -7c33 -86 85 -164 153 -225c3 -3 4 -6 4 -9'], + 0xE26A: [251,107,569,54,515,'515 -97c0 -6 -4 -10 -10 -10h-441c-5 0 -10 4 -10 10v339c0 13 20 13 20 0v-329h421v329c0 13 20 13 20 0v-339'], + 0xE26B: [660,0,323,56,274,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM219 602c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE26C: [660,204,354,-27,243,'243 -46c0 -95 -68 -158 -149 -158c-61 0 -121 26 -121 80c0 28 19 48 48 48c27 0 47 -20 47 -47c0 -30 -23 -42 -25 -43c23 -10 47 -10 50 -10c67 0 75 90 75 128v386c0 49 -9 56 -83 56v36l158 11v-487zM243 602c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58 c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE26D: [-123,161,569,86,484,'484 -161h-398v38h398v-38'], + 0xE26E: [908,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM572 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE26F: [698,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM422 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146 c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE270: [921,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM589 921c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28c2 -86 73 -133 139 -133s137 47 139 133h28'], + 0xE271: [691,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM452 691c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28 c2 -86 73 -133 139 -133s137 47 139 133h28'], + 0xE272: [1106,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM589 921c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28c2 -86 73 -133 139 -133s137 47 139 133h28zM534 1058c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14 c25 0 44 -23 40 -48'], + 0xE273: [876,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM452 691c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28 c2 -86 73 -133 139 -133s137 47 139 133h28zM397 828c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE274: [921,200,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM589 921c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28c2 -86 73 -133 139 -133s137 47 139 133h28zM479 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE275: [691,200,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM452 691c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28 c2 -86 73 -133 139 -133s137 47 139 133h28zM342 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE276: [1106,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM589 921c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28c2 -86 73 -133 139 -133s137 47 139 133h28zM534 971l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE277: [876,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM452 691c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28 c2 -86 73 -133 139 -133s137 47 139 133h28zM397 741l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE278: [1124,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM589 921c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28c2 -86 73 -133 139 -133s137 47 139 133h28zM530 1059c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12 c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE279: [894,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM452 691c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28 c2 -86 73 -133 139 -133s137 47 139 133h28zM393 829c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29 c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE27A: [1061,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM589 921c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28c2 -86 73 -133 139 -133s137 47 139 133h28zM606 1041c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46 l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE27B: [831,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM452 691c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28 c2 -86 73 -133 139 -133s137 47 139 133h28zM469 811c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE27C: [866,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM573 749l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xE27D: [690,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM437 528l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE27E: [1051,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM573 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM534 1003c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE27F: [832,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM436 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM397 784 c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE280: [866,200,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM573 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM479 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE281: [690,200,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM437 528l-13 -14l-139 108l-139 -108l-13 14l152 162zM342 -143 c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE282: [1051,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM573 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM534 916l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE283: [832,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM436 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM397 697l-19 -30 c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE284: [1069,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM573 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM637 1004c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24 c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE285: [850,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM436 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM500 785 c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3 c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE286: [1006,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM573 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM606 986c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26 c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE287: [787,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM436 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM469 767 c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE288: [837,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM362 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM585 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE289: [654,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM242 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52 c29 0 51 -24 51 -53zM431 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE28A: [713,200,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM479 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE28B: [446,200,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM342 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58 c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE28C: [908,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM496 773l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE28D: [698,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM353 532l-23 -26l-158 114c-16 11 -25 18 -25 37s17 41 41 41 c16 0 24 -9 34 -20'], + 0xE28E: [956,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM529 891c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13 c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE28F: [704,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM392 639c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18 c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE290: [791,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM621 753h-398v38h398v-38'], + 0xE291: [621,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM484 583h-398v38h398v-38'], + 0xE292: [889,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM489 801c0 49 -38 53 -67 53s-67 -4 -67 -53c0 -51 44 -53 67 -53s67 2 67 53zM531 800c0 -45 -46 -87 -109 -87c-60 0 -109 39 -109 89c0 45 46 87 109 87c60 0 109 -39 109 -89'], + 0xE293: [702,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM352 614c0 49 -38 53 -67 53s-67 -4 -67 -53c0 -51 44 -53 67 -53 s67 2 67 53zM394 613c0 -45 -46 -87 -109 -87c-60 0 -109 39 -109 89c0 45 46 87 109 87c60 0 109 -39 109 -89'], + 0xE294: [833,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256zM606 813c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE295: [652,10,569,45,544,'544 90c0 -95 -99 -95 -99 -95c-46 0 -73 38 -77 79c-21 -39 -68 -84 -148 -84c-71 0 -175 25 -175 111c0 45 28 100 118 133c73 27 139 30 194 32v31c0 84 -61 121 -117 121c-6 0 -64 0 -100 -25c27 -8 35 -29 35 -46c0 -27 -20 -47 -47 -47c-26 0 -48 17 -48 49 c0 61 67 97 162 97c59 0 107 -16 148 -50c46 -37 46 -75 46 -128v-175c0 -13 0 -60 37 -60s37 48 37 58v54h34v-55zM357 141v99c-180 -7 -228 -84 -228 -139c0 -49 48 -83 99 -83c45 0 129 27 129 123zM469 632c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26 c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE296: [908,20,816,70,744,'744 234c0 -122 -114 -254 -291 -254c-207 0 -383 159 -383 362c0 199 173 361 383 361c96 0 165 -46 207 -88l53 76c8 12 13 12 17 12c14 0 14 -9 14 -26v-234c0 -20 0 -26 -18 -26c-7 0 -16 0 -18 12c-26 172 -144 238 -243 238c-94 0 -288 -55 -288 -326 c0 -260 183 -325 290 -325c99 0 235 63 243 224c1 13 11 13 17 13c16 0 17 -8 17 -19zM599 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE297: [698,10,508,46,468,'468 120c0 -12 -35 -130 -184 -130c-131 0 -238 100 -238 226c0 115 93 230 243 230c28 0 167 0 167 -89c0 -32 -21 -49 -48 -49c-28 0 -47 20 -47 47c0 20 10 36 28 44c-36 15 -84 15 -97 15c-93 0 -155 -70 -155 -197c0 -144 90 -195 159 -195c61 0 114 31 136 93 c5 14 6 17 19 17c4 0 17 0 17 -12zM416 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE298: [866,20,816,70,744,'744 234c0 -122 -114 -254 -291 -254c-207 0 -383 159 -383 362c0 199 173 361 383 361c96 0 165 -46 207 -88l53 76c8 12 13 12 17 12c14 0 14 -9 14 -26v-234c0 -20 0 -26 -18 -26c-7 0 -16 0 -18 12c-26 172 -144 238 -243 238c-94 0 -288 -55 -288 -326 c0 -260 183 -325 290 -325c99 0 235 63 243 224c1 13 11 13 17 13c16 0 17 -8 17 -19zM600 850l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE299: [690,10,508,46,468,'468 120c0 -12 -35 -130 -184 -130c-131 0 -238 100 -238 226c0 115 93 230 243 230c28 0 167 0 167 -89c0 -32 -21 -49 -48 -49c-28 0 -47 20 -47 47c0 20 10 36 28 44c-36 15 -84 15 -97 15c-93 0 -155 -70 -155 -197c0 -144 90 -195 159 -195c61 0 114 31 136 93 c5 14 6 17 19 17c4 0 17 0 17 -12zM431 676l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE29A: [866,0,860,58,789,'789 336c0 -188 -153 -336 -337 -336h-394v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h394c186 0 337 -157 337 -347zM686 336c0 87 -16 163 -57 217c-46 59 -120 94 -205 94h-124c-47 0 -48 -8 -48 -39v-533c0 -31 1 -39 48 -39h125c80 0 152 31 197 82 c35 42 64 102 64 218zM513 850l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE29B: [694,10,631,46,642,'581 0l-154 -10v62c-17 -18 -66 -62 -148 -62c-127 0 -233 100 -233 225c0 126 112 226 245 226c55 0 103 -21 140 -57v207c0 49 -8 56 -75 56v36l150 11v-602c0 -49 8 -56 75 -56v-36zM427 105v214c0 19 0 20 -12 36c-28 36 -71 58 -119 58c-29 0 -78 -9 -118 -54 c-41 -47 -41 -122 -41 -145c0 -64 12 -104 32 -134c20 -29 60 -62 116 -62c65 0 116 40 142 87zM642 612c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE29C: [908,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM534 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE29D: [698,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM391 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE29E: [866,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM535 850l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE29F: [690,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM406 676l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE2A0: [866,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM535 749l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xE2A1: [690,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM406 528l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE2A2: [1051,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM535 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM496 1003c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE2A3: [832,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM405 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM366 784c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE2A4: [866,200,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM535 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM441 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2A5: [690,200,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM406 528l-13 -14l-139 108l-139 -108l-13 14l152 162zM311 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2A6: [1051,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM535 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM496 916l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE2A7: [832,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM405 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM366 697l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE2A8: [1069,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM535 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM599 1004c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12 c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2A9: [850,10,508,39,469,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM405 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM469 785c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30 c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2AA: [1006,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM535 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM568 986c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2AB: [787,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM405 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM438 767c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26 c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2AC: [837,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM324 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM547 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE2AD: [654,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM211 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM400 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE2AE: [868,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM441 810c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2AF: [660,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM311 602c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2B0: [679,200,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM441 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2B1: [446,200,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM311 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2B2: [908,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM458 773l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE2B3: [698,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM322 532l-23 -26l-158 114c-16 11 -25 18 -25 37s17 41 41 41c16 0 24 -9 34 -20'], + 0xE2B4: [956,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM491 891c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29 c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2B5: [704,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM361 639c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13 c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2B6: [791,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM583 753h-398v38h398v-38'], + 0xE2B7: [621,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM453 583h-398v38h398v-38'], + 0xE2B8: [833,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34zM568 813c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2B9: [652,10,508,39,468,'468 120c0 -22 -50 -130 -185 -130c-133 0 -244 102 -244 229c0 123 100 227 231 227c149 0 198 -108 198 -196c0 -22 -7 -22 -28 -22h-310c0 -39 1 -100 38 -147c30 -38 75 -59 122 -59c36 0 112 15 143 96c3 10 5 16 18 16c15 0 17 -10 17 -14zM398 254 c-1 25 -5 164 -128 164c-38 0 -128 -23 -139 -164h267zM438 632c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2BA: [921,20,884,70,822,'822 240c-67 0 -77 0 -77 -44v-170c0 -15 0 -26 -12 -26c-10 0 -47 34 -64 60c-47 -70 -158 -80 -213 -80c-216 0 -386 164 -386 362c0 200 175 361 383 361c88 0 159 -38 208 -88l53 76c8 12 13 12 17 12c14 0 14 -9 14 -26v-234c0 -20 0 -26 -18 -26c-7 0 -16 0 -18 12 c-26 173 -146 238 -243 238c-99 0 -289 -59 -289 -325c0 -261 185 -326 298 -326c13 0 69 0 118 25c57 28 57 67 57 89v64c0 33 0 46 -100 46h-38v36c52 -4 128 -4 181 -4c49 0 122 4 129 4v-36zM609 921c-2 -105 -79 -178 -167 -178s-165 73 -167 178h28 c2 -86 73 -133 139 -133s137 47 139 133h28'], + 0xE2BB: [691,205,569,39,545,'545 400c0 -23 -18 -33 -32 -33c-17 0 -32 12 -32 32c0 16 5 20 9 24c-17 0 -56 -1 -101 -33c24 -26 42 -57 42 -96c0 -78 -75 -147 -178 -147c-58 0 -94 22 -109 31c-6 -8 -13 -16 -13 -41c0 -29 18 -59 50 -66c8 -1 44 -1 66 -1c97 0 156 0 215 -31 c55 -30 67 -84 67 -114c0 -80 -118 -130 -245 -130c-135 0 -245 55 -245 128c0 52 52 85 97 100c-39 29 -42 76 -42 89c0 39 22 72 30 81c-28 26 -48 62 -48 101c0 78 75 147 178 147c44 0 86 -14 116 -36c47 43 101 46 116 46c40 0 59 -28 59 -51zM351 294 c0 21 0 117 -98 117c-36 0 -63 -18 -77 -35c-20 -26 -20 -66 -20 -82c0 -21 0 -117 98 -117c36 0 63 18 77 35c20 26 20 66 20 82zM468 -76c0 79 -125 79 -214 79h-58c-64 -1 -96 -44 -96 -79c0 -52 79 -99 184 -99s184 46 184 99zM412 691c-2 -105 -79 -178 -167 -178 s-165 73 -167 178h28c2 -86 73 -133 139 -133s137 47 139 133h28'], + 0xE2BC: [703,292,884,70,822,'822 240c-67 0 -77 0 -77 -44v-170c0 -15 0 -26 -12 -26c-10 0 -47 34 -64 60c-47 -70 -158 -80 -213 -80c-216 0 -386 164 -386 362c0 200 175 361 383 361c88 0 159 -38 208 -88l53 76c8 12 13 12 17 12c14 0 14 -9 14 -26v-234c0 -20 0 -26 -18 -26c-7 0 -16 0 -18 12 c-26 173 -146 238 -243 238c-99 0 -289 -59 -289 -325c0 -261 185 -326 298 -326c13 0 69 0 118 25c57 28 57 67 57 89v64c0 33 0 46 -100 46h-38v36c52 -4 128 -4 181 -4c49 0 122 4 129 4v-36zM489 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9 c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE2BD: [738,205,569,39,545,'293 549c0 -23 -17 -43 -43 -43c-35 0 -52 37 -52 82c0 90 64 150 74 150c5 0 10 -7 10 -12c0 -3 -2 -6 -5 -9c-58 -53 -58 -116 -58 -137c0 0 12 12 30 12c32 0 44 -25 44 -43zM545 400c0 -23 -18 -33 -32 -33c-17 0 -32 12 -32 32c0 16 5 20 9 24 c-17 0 -56 -1 -101 -33c24 -26 42 -57 42 -96c0 -78 -75 -147 -178 -147c-58 0 -94 22 -109 31c-6 -8 -13 -16 -13 -41c0 -29 18 -59 50 -66c8 -1 44 -1 66 -1c97 0 156 0 215 -31c55 -30 67 -84 67 -114c0 -80 -118 -130 -245 -130c-135 0 -245 55 -245 128 c0 52 52 85 97 100c-39 29 -42 76 -42 89c0 39 22 72 30 81c-28 26 -48 62 -48 101c0 78 75 147 178 147c44 0 86 -14 116 -36c47 43 101 46 116 46c40 0 59 -28 59 -51zM351 294c0 21 0 117 -98 117c-36 0 -63 -18 -77 -35c-20 -26 -20 -66 -20 -82c0 -21 0 -117 98 -117 c36 0 63 18 77 35c20 26 20 66 20 82zM468 -76c0 79 -125 79 -214 79h-58c-64 -1 -96 -44 -96 -79c0 -52 79 -99 184 -99s184 46 184 99'], + 0xE2BE: [908,0,413,51,362,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM357 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14 c25 0 44 -23 40 -48'], + 0xE2BF: [698,0,323,56,299,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM299 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE2C0: [866,0,413,51,362,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM358 749l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xE2C1: [690,0,323,10,314,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM314 528l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE2C2: [837,0,413,44,370,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM147 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM370 784 c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE2C3: [654,0,323,16,308,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM119 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM308 601c0 -26 -21 -51 -51 -51 c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE2C4: [868,0,413,51,362,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM264 810c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2C5: [683,200,413,51,362,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM264 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2C6: [660,200,323,56,274,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM219 602c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58zM219 -143c0 -29 -23 -57 -57 -57 c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2C7: [908,0,413,51,362,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM281 773l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE2C8: [698,0,323,24,274,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM230 532l-23 -26l-158 114c-16 11 -25 18 -25 37s17 41 41 41c16 0 24 -9 34 -20'], + 0xE2C9: [956,0,413,51,362,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM314 891c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18 c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2CA: [704,0,323,54,274,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM269 639c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84 c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2CB: [791,0,413,8,406,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM406 753h-398v38h398v-38'], + 0xE2CC: [621,0,323,-37,361,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM361 583h-398v38h398v-38'], + 0xE2CD: [833,0,413,23,391,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36zM391 813c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20 c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2CE: [652,0,323,-22,346,'274 0c-35 3 -71 4 -106 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v260c0 49 -9 55 -72 55v36l147 11v-363c0 -42 10 -42 68 -42v-36zM346 632c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80 c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2CF: [683,292,874,56,819,'819 0c-14 1 -80 4 -115 4l-149 -4v36c18 0 53 0 53 27c0 13 -9 24 -15 32l-204 266l-135 -115v-165c0 -35 2 -45 79 -45h24v-36l-151 4l-150 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-311l355 304 c5 5 9 16 9 23c0 24 -23 29 -37 29v36l138 -4c28 0 57 2 85 4v-36c-48 -1 -99 -16 -148 -58l-203 -173l251 -328c38 -50 61 -52 115 -52v-36zM484 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12 c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE2D0: [694,292,600,49,572,'572 0c-29 2 -58 4 -87 4s-100 -3 -113 -4v36c10 0 28 2 28 18c0 13 -12 28 -23 41l-109 135l-72 -56v-95c0 -43 10 -43 75 -43v-36c-37 3 -74 4 -111 4s-74 -1 -111 -4v36c65 0 75 0 75 43v512c0 49 -8 56 -75 56v36l150 11v-475l148 114c12 9 31 28 31 44 c0 8 -5 16 -18 18v36c40 -3 80 -4 120 -4c21 0 47 2 68 4v-36c-69 -2 -102 -29 -225 -124l161 -197c29 -35 51 -38 88 -38v-36zM347 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43 c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE2D1: [908,0,706,56,651,'651 263l-30 -263h-565v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36l152 -4l175 4v-36h-35c-94 0 -94 -13 -94 -46v-526c0 -31 1 -39 48 -39h100c189 0 204 129 215 227h34zM358 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121 c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE2D2: [919,0,323,56,312,'281 0c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v512c0 49 -8 56 -75 56v36l150 11v-615c0 -43 10 -43 75 -43v-36zM312 871c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE2D3: [683,0,706,56,651,'651 263l-30 -263h-565v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36l152 -4l175 4v-36h-35c-94 0 -94 -13 -94 -46v-526c0 -31 1 -39 48 -39h100c189 0 204 129 215 227h34zM540 601c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9 c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE2D4: [694,0,323,56,342,'281 0c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v512c0 49 -8 56 -75 56v36l150 11v-615c0 -43 10 -43 75 -43v-36zM342 612c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43 c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE2D5: [683,292,706,56,651,'651 263l-30 -263h-565v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36l152 -4l175 4v-36h-35c-94 0 -94 -13 -94 -46v-526c0 -31 1 -39 48 -39h100c189 0 204 129 215 227h34zM400 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9 c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE2D6: [694,292,323,56,281,'281 0c-38 3 -75 4 -113 4c-40 0 -112 -4 -112 -4v36c65 0 75 0 75 43v512c0 49 -8 56 -75 56v36l150 11v-615c0 -43 10 -43 75 -43v-36zM209 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43 c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE2D7: [908,0,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-547c0 -19 0 -28 -19 -28c-12 0 -13 1 -23 15l-444 598v-505c0 -27 0 -72 103 -72v-36c-41 3 -81 4 -122 4s-81 -1 -122 -4v36c103 0 103 45 103 72v533c-5 1 -30 6 -73 6h-30v36h173c20 0 21 -1 32 -15l384 -517v424 c0 27 0 72 -103 72v36c41 -3 81 -4 122 -4s81 1 122 4v-36zM572 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE2D8: [698,0,631,54,590,'590 0c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v228c0 51 -9 106 -79 106c-66 0 -149 -49 -149 -154v-180c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l147 11v-97h1 c28 52 81 97 163 97c107 0 150 -51 150 -138v-224c0 -43 10 -43 75 -43v-36zM453 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE2D9: [866,0,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-547c0 -19 0 -28 -19 -28c-12 0 -13 1 -23 15l-444 598v-505c0 -27 0 -72 103 -72v-36c-41 3 -81 4 -122 4s-81 -1 -122 -4v36c103 0 103 45 103 72v533c-5 1 -30 6 -73 6h-30v36h173c20 0 21 -1 32 -15l384 -517v424 c0 27 0 72 -103 72v36c41 -3 81 -4 122 -4s81 1 122 4v-36zM573 850l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE2DA: [690,0,631,54,590,'590 0c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v228c0 51 -9 106 -79 106c-66 0 -149 -49 -149 -154v-180c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l147 11v-97h1 c28 52 81 97 163 97c107 0 150 -51 150 -138v-224c0 -43 10 -43 75 -43v-36zM468 676l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE2DB: [683,292,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-547c0 -19 0 -28 -19 -28c-12 0 -13 1 -23 15l-444 598v-505c0 -27 0 -72 103 -72v-36c-41 3 -81 4 -122 4s-81 -1 -122 -4v36c103 0 103 45 103 72v533c-5 1 -30 6 -73 6h-30v36h173c20 0 21 -1 32 -15l384 -517v424 c0 27 0 72 -103 72v36c41 -3 81 -4 122 -4s81 1 122 4v-36zM469 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE2DC: [441,292,631,54,590,'590 0c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v228c0 51 -9 106 -79 106c-66 0 -149 -49 -149 -154v-180c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l147 11v-97h1 c28 52 81 97 163 97c107 0 150 -51 150 -138v-224c0 -43 10 -43 75 -43v-36zM363 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE2DD: [833,0,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-547c0 -19 0 -28 -19 -28c-12 0 -13 1 -23 15l-444 598v-505c0 -27 0 -72 103 -72v-36c-41 3 -81 4 -122 4s-81 -1 -122 -4v36c103 0 103 45 103 72v533c-5 1 -30 6 -73 6h-30v36h173c20 0 21 -1 32 -15l384 -517v424 c0 27 0 72 -103 72v36c41 -3 81 -4 122 -4s81 1 122 4v-36zM606 813c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2DE: [652,0,631,54,590,'590 0c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v228c0 51 -9 106 -79 106c-66 0 -149 -49 -149 -154v-180c0 -43 10 -43 75 -43v-36c-9 1 -78 4 -115 4c-42 0 -114 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l147 11v-97h1 c28 52 81 97 163 97c107 0 150 -51 150 -138v-224c0 -43 10 -43 75 -43v-36zM500 632c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2DF: [908,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM589 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85 l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE2E0: [698,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM422 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE2E1: [866,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM590 749l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xE2E2: [690,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM437 528l-13 -14l-139 108l-139 -108l-13 14l152 162'], + 0xE2E3: [1051,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM590 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM551 1003 c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE2E4: [832,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM436 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM397 784c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE2E5: [866,200,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM590 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM496 -143 c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2E6: [690,200,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM437 528l-13 -14l-139 108l-139 -108l-13 14l152 162zM342 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2E7: [1051,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM590 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM551 916 l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE2E8: [832,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM436 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM397 697l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE2E9: [1069,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM590 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM654 1004 c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3 c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2EA: [850,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM436 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM500 785c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12 c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2EB: [1006,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM590 749l-12 -16l-140 66l-140 -66l-10 16l151 117zM623 986 c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2EC: [787,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM436 530l-12 -16l-140 66l-140 -66l-10 16l151 117zM469 767c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2ED: [837,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM379 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52 c0 26 21 52 52 52c29 0 51 -24 51 -53zM602 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE2EE: [654,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM242 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM431 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE2EF: [703,200,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM496 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58 c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2F0: [446,200,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM342 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2F1: [908,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM513 773l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32 c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE2F2: [698,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM353 532l-23 -26l-158 114c-16 11 -25 18 -25 37s17 41 41 41c16 0 24 -9 34 -20'], + 0xE2F3: [956,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM546 891c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18 c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2F4: [704,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM392 639c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31 c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2F5: [908,20,877,69,805,'805 338c0 -95 -40 -186 -108 -253c-70 -68 -163 -105 -260 -105s-191 37 -260 105c-68 67 -108 158 -108 253c0 97 39 190 108 258c69 69 163 107 260 107c73 0 144 -22 204 -61c24 5 45 21 57 42c-3 -1 -6 -1 -10 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57 c35 0 58 -33 58 -69c0 -51 -29 -98 -73 -111c8 -7 16 -14 24 -22c69 -68 108 -161 108 -258zM698 355c0 81 -19 163 -70 225c-47 58 -117 92 -191 92s-144 -34 -191 -92c-51 -62 -70 -144 -70 -225c0 -87 18 -175 70 -244c46 -60 116 -98 191 -98s145 38 191 98 c52 69 70 157 70 244zM558 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE2F6: [698,10,569,39,548,'548 476c0 -53 -32 -102 -79 -113c37 -41 59 -95 59 -151c0 -60 -27 -117 -72 -157c-47 -43 -109 -65 -173 -65c-63 0 -125 22 -173 65c-44 40 -71 97 -71 157c0 62 26 122 71 165c47 44 109 68 173 68c58 0 115 -19 160 -56c24 5 44 21 57 42c-3 0 -7 -1 -10 -1 c-38 0 -57 29 -57 58s19 58 57 58c34 0 58 -33 58 -70zM436 224c0 49 -3 101 -34 139c-28 36 -73 55 -119 55s-90 -19 -119 -55c-30 -38 -34 -90 -34 -139c0 -52 3 -106 34 -148c28 -36 73 -55 119 -55s91 19 119 55c32 42 34 96 34 148zM391 657c0 -19 -9 -26 -25 -37 l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE2F7: [798,200,877,69,805,'805 338c0 -95 -40 -186 -108 -253c-70 -68 -163 -105 -260 -105s-191 37 -260 105c-68 67 -108 158 -108 253c0 97 39 190 108 258c69 69 163 107 260 107c73 0 144 -22 204 -61c24 5 45 21 57 42c-3 -1 -6 -1 -10 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57 c35 0 58 -33 58 -69c0 -51 -29 -98 -73 -111c8 -7 16 -14 24 -22c69 -68 108 -161 108 -258zM698 355c0 81 -19 163 -70 225c-47 58 -117 92 -191 92s-144 -34 -191 -92c-51 -62 -70 -144 -70 -225c0 -87 18 -175 70 -244c46 -60 116 -98 191 -98s145 38 191 98 c52 69 70 157 70 244zM496 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2F8: [546,200,569,39,548,'548 476c0 -53 -32 -102 -79 -113c37 -41 59 -95 59 -151c0 -60 -27 -117 -72 -157c-47 -43 -109 -65 -173 -65c-63 0 -125 22 -173 65c-44 40 -71 97 -71 157c0 62 26 122 71 165c47 44 109 68 173 68c58 0 115 -19 160 -56c24 5 44 21 57 42c-3 0 -7 -1 -10 -1 c-38 0 -57 29 -57 58s19 58 57 58c34 0 58 -33 58 -70zM436 224c0 49 -3 101 -34 139c-28 36 -73 55 -119 55s-90 -19 -119 -55c-30 -38 -34 -90 -34 -139c0 -52 3 -106 34 -148c28 -36 73 -55 119 -55s91 19 119 55c32 42 34 96 34 148zM342 -143c0 -29 -23 -57 -57 -57 c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE2F9: [908,20,877,69,805,'805 338c0 -95 -40 -186 -108 -253c-70 -68 -163 -105 -260 -105s-191 37 -260 105c-68 67 -108 158 -108 253c0 97 39 190 108 258c69 69 163 107 260 107c73 0 144 -22 204 -61c24 5 45 21 57 42c-3 -1 -6 -1 -10 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57 c35 0 58 -33 58 -69c0 -51 -29 -98 -73 -111c8 -7 16 -14 24 -22c69 -68 108 -161 108 -258zM698 355c0 81 -19 163 -70 225c-47 58 -117 92 -191 92s-144 -34 -191 -92c-51 -62 -70 -144 -70 -225c0 -87 18 -175 70 -244c46 -60 116 -98 191 -98s145 38 191 98 c52 69 70 157 70 244zM513 773l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE2FA: [698,10,569,39,548,'548 476c0 -53 -32 -102 -79 -113c37 -41 59 -95 59 -151c0 -60 -27 -117 -72 -157c-47 -43 -109 -65 -173 -65c-63 0 -125 22 -173 65c-44 40 -71 97 -71 157c0 62 26 122 71 165c47 44 109 68 173 68c58 0 115 -19 160 -56c24 5 44 21 57 42c-3 0 -7 -1 -10 -1 c-38 0 -57 29 -57 58s19 58 57 58c34 0 58 -33 58 -70zM436 224c0 49 -3 101 -34 139c-28 36 -73 55 -119 55s-90 -19 -119 -55c-30 -38 -34 -90 -34 -139c0 -52 3 -106 34 -148c28 -36 73 -55 119 -55s91 19 119 55c32 42 34 96 34 148zM353 532l-23 -26l-158 114 c-16 11 -25 18 -25 37s17 41 41 41c16 0 24 -9 34 -20'], + 0xE2FB: [956,20,877,69,805,'805 338c0 -95 -40 -186 -108 -253c-70 -68 -163 -105 -260 -105s-191 37 -260 105c-68 67 -108 158 -108 253c0 97 39 190 108 258c69 69 163 107 260 107c73 0 144 -22 204 -61c24 5 45 21 57 42c-3 -1 -6 -1 -10 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57 c35 0 58 -33 58 -69c0 -51 -29 -98 -73 -111c8 -7 16 -14 24 -22c69 -68 108 -161 108 -258zM698 355c0 81 -19 163 -70 225c-47 58 -117 92 -191 92s-144 -34 -191 -92c-51 -62 -70 -144 -70 -225c0 -87 18 -175 70 -244c46 -60 116 -98 191 -98s145 38 191 98 c52 69 70 157 70 244zM546 891c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31 c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2FC: [704,10,569,39,548,'548 476c0 -53 -32 -102 -79 -113c37 -41 59 -95 59 -151c0 -60 -27 -117 -72 -157c-47 -43 -109 -65 -173 -65c-63 0 -125 22 -173 65c-44 40 -71 97 -71 157c0 62 26 122 71 165c47 44 109 68 173 68c58 0 115 -19 160 -56c24 5 44 21 57 42c-3 0 -7 -1 -10 -1 c-38 0 -57 29 -57 58s19 58 57 58c34 0 58 -33 58 -70zM436 224c0 49 -3 101 -34 139c-28 36 -73 55 -119 55s-90 -19 -119 -55c-30 -38 -34 -90 -34 -139c0 -52 3 -106 34 -148c28 -36 73 -55 119 -55s91 19 119 55c32 42 34 96 34 148zM392 639c0 -21 -15 -36 -34 -44 c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63 c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE2FD: [833,20,877,69,805,'805 338c0 -95 -40 -186 -108 -253c-70 -68 -163 -105 -260 -105s-191 37 -260 105c-68 67 -108 158 -108 253c0 97 39 190 108 258c69 69 163 107 260 107c73 0 144 -22 204 -61c24 5 45 21 57 42c-3 -1 -6 -1 -10 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57 c35 0 58 -33 58 -69c0 -51 -29 -98 -73 -111c8 -7 16 -14 24 -22c69 -68 108 -161 108 -258zM698 355c0 81 -19 163 -70 225c-47 58 -117 92 -191 92s-144 -34 -191 -92c-51 -62 -70 -144 -70 -225c0 -87 18 -175 70 -244c46 -60 116 -98 191 -98s145 38 191 98 c52 69 70 157 70 244zM623 813c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2FE: [652,10,569,39,548,'548 476c0 -53 -32 -102 -79 -113c37 -41 59 -95 59 -151c0 -60 -27 -117 -72 -157c-47 -43 -109 -65 -173 -65c-63 0 -125 22 -173 65c-44 40 -71 97 -71 157c0 62 26 122 71 165c47 44 109 68 173 68c58 0 115 -19 160 -56c24 5 44 21 57 42c-3 0 -7 -1 -10 -1 c-38 0 -57 29 -57 58s19 58 57 58c34 0 58 -33 58 -70zM436 224c0 49 -3 101 -34 139c-28 36 -73 55 -119 55s-90 -19 -119 -55c-30 -38 -34 -90 -34 -139c0 -52 3 -106 34 -148c28 -36 73 -55 119 -55s91 19 119 55c32 42 34 96 34 148zM469 632c-63 -64 -78 -80 -119 -80 c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE2FF: [933,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM441 893c0 -14 -6 -22 -14 -31l-97 -119l-29 18l60 140 c6 15 14 32 38 32c18 0 42 -15 42 -40zM626 893c0 -14 -6 -22 -14 -31l-97 -119l-29 18l60 140c6 15 14 32 38 32c18 0 42 -15 42 -40'], + 0xE300: [697,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM287 657c0 -14 -6 -22 -14 -31l-97 -119l-29 18l60 140c6 15 14 32 38 32c18 0 42 -15 42 -40zM472 657c0 -14 -6 -22 -14 -31l-97 -119l-29 18l60 140c6 15 14 32 38 32c18 0 42 -15 42 -40'], + 0xE301: [791,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM638 753h-398v38h398v-38'], + 0xE302: [621,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM484 583h-398v38h398v-38'], + 0xE303: [833,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341zM623 813c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26 c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE304: [652,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142zM469 632c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE305: [908,20,829,58,817,'817 91c0 -30 -22 -111 -107 -111c-28 0 -87 5 -130 40c-46 38 -46 79 -46 144c0 67 0 92 -35 123c-44 41 -96 41 -114 41h-133v-247c0 -35 2 -45 79 -45h24v-36l-149 4l-148 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h337c155 0 287 -81 287 -181 c0 -81 -90 -140 -180 -161c54 -17 82 -43 92 -54c29 -33 32 -49 43 -129c12 -91 20 -150 77 -150c31 0 64 25 69 83c1 10 2 19 17 19c17 0 17 -12 17 -19zM575 502c0 145 -137 145 -233 145c-21 0 -55 0 -63 -1c-26 -3 -27 -10 -27 -38v-252h130c106 0 193 34 193 146z M565 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE306: [698,0,446,49,407,'407 377c0 -30 -22 -46 -46 -46c-19 0 -45 13 -45 46c0 16 8 29 17 36c-95 0 -134 -101 -134 -185v-147c0 -34 0 -45 74 -45h20v-36l-130 4c-41 0 -109 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l143 11v-107h1c30 76 85 107 135 107c47 0 79 -30 79 -64z M360 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE307: [866,20,829,58,817,'817 91c0 -30 -22 -111 -107 -111c-28 0 -87 5 -130 40c-46 38 -46 79 -46 144c0 67 0 92 -35 123c-44 41 -96 41 -114 41h-133v-247c0 -35 2 -45 79 -45h24v-36l-149 4l-148 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h337c155 0 287 -81 287 -181 c0 -81 -90 -140 -180 -161c54 -17 82 -43 92 -54c29 -33 32 -49 43 -129c12 -91 20 -150 77 -150c31 0 64 25 69 83c1 10 2 19 17 19c17 0 17 -12 17 -19zM575 502c0 145 -137 145 -233 145c-21 0 -55 0 -63 -1c-26 -3 -27 -10 -27 -38v-252h130c106 0 193 34 193 146z M566 850l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE308: [690,0,446,49,407,'407 377c0 -30 -22 -46 -46 -46c-19 0 -45 13 -45 46c0 16 8 29 17 36c-95 0 -134 -101 -134 -185v-147c0 -34 0 -45 74 -45h20v-36l-130 4c-41 0 -109 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l143 11v-107h1c30 76 85 107 135 107c47 0 79 -30 79 -64z M375 676l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE309: [683,292,829,58,817,'817 91c0 -30 -22 -111 -107 -111c-28 0 -87 5 -130 40c-46 38 -46 79 -46 144c0 67 0 92 -35 123c-44 41 -96 41 -114 41h-133v-247c0 -35 2 -45 79 -45h24v-36l-149 4l-148 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h337c155 0 287 -81 287 -181 c0 -81 -90 -140 -180 -161c54 -17 82 -43 92 -54c29 -33 32 -49 43 -129c12 -91 20 -150 77 -150c31 0 64 25 69 83c1 10 2 19 17 19c17 0 17 -12 17 -19zM575 502c0 145 -137 145 -233 145c-21 0 -55 0 -63 -1c-26 -3 -27 -10 -27 -38v-252h130c106 0 193 34 193 146z M462 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE30A: [441,292,446,49,407,'407 377c0 -30 -22 -46 -46 -46c-19 0 -45 13 -45 46c0 16 8 29 17 36c-95 0 -134 -101 -134 -185v-147c0 -34 0 -45 74 -45h20v-36l-130 4c-41 0 -109 -4 -114 -4v36c65 0 75 0 75 43v259c0 49 -8 56 -75 56v36l143 11v-107h1c30 76 85 107 135 107c47 0 79 -30 79 -64z M209 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE30B: [908,20,631,70,560,'560 185c0 -106 -86 -205 -218 -205c-65 0 -142 14 -205 69c-8 -13 -28 -45 -37 -57c-6 -9 -8 -12 -16 -12c-14 0 -14 9 -14 26v194c0 20 0 27 17 27c16 0 16 -6 17 -22c7 -151 141 -189 238 -189c96 0 154 71 154 141c0 45 -21 77 -44 100c-29 28 -49 32 -140 52 c-108 24 -141 31 -181 70c-36 34 -61 77 -61 133c0 101 90 191 216 191c28 0 111 -3 177 -70l36 56c7 11 9 14 17 14c14 0 14 -9 14 -26v-195c0 -19 0 -26 -17 -26c-15 0 -16 5 -18 20c-16 105 -74 195 -209 195c-91 0 -152 -63 -152 -129c0 -42 27 -105 115 -125l148 -34 c100 -23 163 -108 163 -198zM466 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE30C: [698,10,453,45,407,'407 131c0 -71 -48 -141 -178 -141c-24 0 -78 2 -122 43c-20 -22 -39 -43 -48 -43c-14 0 -14 9 -14 26v123c0 20 0 27 17 27c14 0 15 -4 18 -17c18 -68 53 -131 149 -131s123 46 123 85c0 67 -81 81 -131 90c-62 10 -100 17 -138 50c-24 20 -38 46 -38 78 c0 50 34 125 177 125c37 0 75 -6 105 -27c6 5 16 14 18 15c13 12 15 12 20 12c14 0 14 -9 14 -26v-93c0 -19 0 -26 -17 -26c-4 0 -16 0 -17 11c-2 29 -7 110 -123 110c-95 0 -122 -39 -122 -71c0 -53 65 -65 145 -79c35 -6 81 -14 119 -49c26 -24 43 -54 43 -92zM364 657 c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE30D: [866,20,631,70,560,'560 185c0 -106 -86 -205 -218 -205c-65 0 -142 14 -205 69c-8 -13 -28 -45 -37 -57c-6 -9 -8 -12 -16 -12c-14 0 -14 9 -14 26v194c0 20 0 27 17 27c16 0 16 -6 17 -22c7 -151 141 -189 238 -189c96 0 154 71 154 141c0 45 -21 77 -44 100c-29 28 -49 32 -140 52 c-108 24 -141 31 -181 70c-36 34 -61 77 -61 133c0 101 90 191 216 191c28 0 111 -3 177 -70l36 56c7 11 9 14 17 14c14 0 14 -9 14 -26v-195c0 -19 0 -26 -17 -26c-15 0 -16 5 -18 20c-16 105 -74 195 -209 195c-91 0 -152 -63 -152 -129c0 -42 27 -105 115 -125l148 -34 c100 -23 163 -108 163 -198zM467 850l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE30E: [690,10,453,45,407,'407 131c0 -71 -48 -141 -178 -141c-24 0 -78 2 -122 43c-20 -22 -39 -43 -48 -43c-14 0 -14 9 -14 26v123c0 20 0 27 17 27c14 0 15 -4 18 -17c18 -68 53 -131 149 -131s123 46 123 85c0 67 -81 81 -131 90c-62 10 -100 17 -138 50c-24 20 -38 46 -38 78 c0 50 34 125 177 125c37 0 75 -6 105 -27c6 5 16 14 18 15c13 12 15 12 20 12c14 0 14 -9 14 -26v-93c0 -19 0 -26 -17 -26c-4 0 -16 0 -17 11c-2 29 -7 110 -123 110c-95 0 -122 -39 -122 -71c0 -53 65 -65 145 -79c35 -6 81 -14 119 -49c26 -24 43 -54 43 -92zM379 676 l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE30F: [703,292,631,70,560,'560 185c0 -106 -86 -205 -218 -205c-65 0 -142 14 -205 69c-8 -13 -28 -45 -37 -57c-6 -9 -8 -12 -16 -12c-14 0 -14 9 -14 26v194c0 20 0 27 17 27c16 0 16 -6 17 -22c7 -151 141 -189 238 -189c96 0 154 71 154 141c0 45 -21 77 -44 100c-29 28 -49 32 -140 52 c-108 24 -141 31 -181 70c-36 34 -61 77 -61 133c0 101 90 191 216 191c28 0 111 -3 177 -70l36 56c7 11 9 14 17 14c14 0 14 -9 14 -26v-195c0 -19 0 -26 -17 -26c-15 0 -16 5 -18 20c-16 105 -74 195 -209 195c-91 0 -152 -63 -152 -129c0 -42 27 -105 115 -125l148 -34 c100 -23 163 -108 163 -198zM363 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE310: [446,292,453,45,407,'407 131c0 -71 -48 -141 -178 -141c-24 0 -78 2 -122 43c-20 -22 -39 -43 -48 -43c-14 0 -14 9 -14 26v123c0 20 0 27 17 27c14 0 15 -4 18 -17c18 -68 53 -131 149 -131s123 46 123 85c0 67 -81 81 -131 90c-62 10 -100 17 -138 50c-24 20 -38 46 -38 78 c0 50 34 125 177 125c37 0 75 -6 105 -27c6 5 16 14 18 15c13 12 15 12 20 12c14 0 14 -9 14 -26v-93c0 -19 0 -26 -17 -26c-4 0 -16 0 -17 11c-2 29 -7 110 -123 110c-95 0 -122 -39 -122 -71c0 -53 65 -65 145 -79c35 -6 81 -14 119 -49c26 -24 43 -54 43 -92zM274 -142 c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE311: [866,0,816,48,766,'766 446h-34l-9 78c-1 5 -8 69 -53 96c-35 20 -78 20 -134 20c-20 0 -49 0 -59 -1c-22 -4 -22 -15 -22 -38v-519c0 -33 0 -46 104 -46h42v-36c-49 4 -141 4 -193 4s-145 0 -194 -4v36h42c104 0 104 13 104 46v519c0 23 0 34 -22 38c-10 1 -39 1 -59 1 c-154 0 -183 -21 -197 -194h-34l21 230h676zM559 850l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE312: [704,10,446,29,375,'375 126c0 -79 -46 -136 -113 -136c-56 0 -140 23 -140 135v270h-93v28c96 3 137 102 138 192h34v-184h156v-36h-156v-271c0 -18 0 -102 69 -102c39 0 71 37 71 105v54h34v-55zM337 622c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137 c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE313: [676,292,816,48,766,'766 446h-34l-9 78c-1 5 -8 69 -53 96c-35 20 -78 20 -134 20c-20 0 -49 0 -59 -1c-22 -4 -22 -15 -22 -38v-519c0 -33 0 -46 104 -46h42v-36c-49 4 -141 4 -193 4s-145 0 -194 -4v36h42c104 0 104 13 104 46v519c0 23 0 34 -22 38c-10 1 -39 1 -59 1 c-154 0 -183 -21 -197 -194h-34l21 230h676zM455 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE314: [615,292,446,29,375,'375 126c0 -79 -46 -136 -113 -136c-56 0 -140 23 -140 135v270h-93v28c96 3 137 102 138 192h34v-184h156v-36h-156v-271c0 -18 0 -102 69 -102c39 0 71 37 71 105v54h34v-55zM270 -142c0 -90 -64 -150 -74 -150c-5 0 -10 7 -10 12c0 3 2 6 5 9c58 53 58 116 58 137 c0 0 -12 -12 -30 -12c-32 0 -44 25 -44 43c0 23 17 43 43 43c35 0 52 -37 52 -82'], + 0xE315: [676,200,816,48,766,'766 446h-34l-9 78c-1 5 -8 69 -53 96c-35 20 -78 20 -134 20c-20 0 -49 0 -59 -1c-22 -4 -22 -15 -22 -38v-519c0 -33 0 -46 104 -46h42v-36c-40 3 -108 4 -159 4v-64c58 0 118 -20 118 -70c0 -70 -150 -70 -270 -70h-34v34h17c84 0 195 0 195 36s-51 36 -94 36v98 c-53 0 -121 -1 -160 -4v36h42c104 0 104 13 104 46v519c0 23 0 34 -22 38c-10 1 -39 1 -59 1c-154 0 -183 -21 -197 -194h-34l21 230h676'], + 0xE316: [615,200,446,29,396,'396 -130c0 -70 -150 -70 -270 -70h-34v34h17c84 0 195 0 195 36s-51 36 -94 36v91c-45 14 -88 48 -88 128v270h-93v28c96 3 137 102 138 192h34v-184h156v-36h-156v-271c0 -18 0 -102 69 -102c39 0 71 37 71 105v54h34v-55c0 -73 -39 -127 -98 -135l1 -51 c58 0 118 -20 118 -70'], + 0xE317: [908,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM597 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE318: [698,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM453 657c0 -19 -9 -26 -25 -37l-158 -114 l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE319: [866,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM598 749l-12 -16l-140 66l-140 -66l-10 16l151 117'], + 0xE31A: [690,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM468 528l-13 -14l-139 108l-139 -108l-13 14 l152 162'], + 0xE31B: [837,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM387 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM610 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE31C: [654,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM273 601c0 -26 -21 -51 -51 -51 c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM462 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE31D: [683,200,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM504 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE31E: [441,200,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM373 -143c0 -29 -23 -57 -57 -57 c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE31F: [908,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM521 773l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE320: [698,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM384 532l-23 -26l-158 114 c-16 11 -25 18 -25 37s17 41 41 41c16 0 24 -9 34 -20'], + 0xE321: [956,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM554 891c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29 c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE322: [704,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM423 639c0 -21 -15 -36 -34 -44 c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63 c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE323: [908,20,843,55,806,'806 727c0 -66 -56 -116 -124 -123v-376c0 -66 -26 -129 -72 -175c-47 -47 -109 -73 -175 -73c-73 0 -142 25 -195 72c-51 46 -82 109 -82 176v386c0 12 -6 24 -17 28c-17 5 -57 5 -86 5v36l151 -3l150 3v-36c-29 0 -68 0 -86 -5c-11 -4 -17 -16 -17 -28v-386 c0 -62 13 -114 46 -152c34 -38 83 -60 136 -60c57 0 111 22 150 61c40 39 61 94 61 151v358c0 19 -9 36 -25 46c-23 14 -51 15 -77 15v36l120 -3c6 0 12 1 18 3v-45c33 4 62 21 78 46c-4 -1 -8 -1 -12 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57c35 0 58 -34 58 -71zM567 860 c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE324: [698,10,631,53,640,'640 474c0 -65 -58 -109 -126 -121v-262c0 -17 0 -37 12 -46c13 -9 41 -9 63 -9v-36l-151 -10v87c-26 -52 -76 -87 -136 -87c-54 0 -95 6 -130 31c-30 22 -44 60 -44 100v217c0 17 0 37 -12 46c-13 10 -41 10 -63 10v35l155 11v-319c0 -42 2 -65 16 -80 c17 -18 44 -23 82 -23c71 0 127 63 128 141v183c0 16 -1 34 -12 42c-13 10 -41 10 -63 10v35l155 11v-50c31 6 59 20 75 41l-7 -1c-38 0 -57 29 -57 58s19 58 57 58c35 0 58 -35 58 -72zM429 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20 c24 0 41 -22 41 -41'], + 0xE325: [798,200,843,55,806,'806 727c0 -66 -56 -116 -124 -123v-376c0 -66 -26 -129 -72 -175c-47 -47 -109 -73 -175 -73c-73 0 -142 25 -195 72c-51 46 -82 109 -82 176v386c0 12 -6 24 -17 28c-17 5 -57 5 -86 5v36l151 -3l150 3v-36c-29 0 -68 0 -86 -5c-11 -4 -17 -16 -17 -28v-386 c0 -62 13 -114 46 -152c34 -38 83 -60 136 -60c57 0 111 22 150 61c40 39 61 94 61 151v358c0 19 -9 36 -25 46c-23 14 -51 15 -77 15v36l120 -3c6 0 12 1 18 3v-45c33 4 62 21 78 46c-4 -1 -8 -1 -12 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57c35 0 58 -34 58 -71z M479 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE326: [546,200,631,53,640,'640 474c0 -65 -58 -109 -126 -121v-262c0 -17 0 -37 12 -46c13 -9 41 -9 63 -9v-36l-151 -10v87c-26 -52 -76 -87 -136 -87c-54 0 -95 6 -130 31c-30 22 -44 60 -44 100v217c0 17 0 37 -12 46c-13 10 -41 10 -63 10v35l155 11v-319c0 -42 2 -65 16 -80 c17 -18 44 -23 82 -23c71 0 127 63 128 141v183c0 16 -1 34 -12 42c-13 10 -41 10 -63 10v35l155 11v-50c31 6 59 20 75 41l-7 -1c-38 0 -57 29 -57 58s19 58 57 58c35 0 58 -35 58 -72zM373 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57 c32 0 57 -26 57 -58'], + 0xE327: [908,20,843,55,806,'806 727c0 -66 -56 -116 -124 -123v-376c0 -66 -26 -129 -72 -175c-47 -47 -109 -73 -175 -73c-73 0 -142 25 -195 72c-51 46 -82 109 -82 176v386c0 12 -6 24 -17 28c-17 5 -57 5 -86 5v36l151 -3l150 3v-36c-29 0 -68 0 -86 -5c-11 -4 -17 -16 -17 -28v-386 c0 -62 13 -114 46 -152c34 -38 83 -60 136 -60c57 0 111 22 150 61c40 39 61 94 61 151v358c0 19 -9 36 -25 46c-23 14 -51 15 -77 15v36l120 -3c6 0 12 1 18 3v-45c33 4 62 21 78 46c-4 -1 -8 -1 -12 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57c35 0 58 -34 58 -71zM521 773 l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE328: [698,10,631,53,640,'640 474c0 -65 -58 -109 -126 -121v-262c0 -17 0 -37 12 -46c13 -9 41 -9 63 -9v-36l-151 -10v87c-26 -52 -76 -87 -136 -87c-54 0 -95 6 -130 31c-30 22 -44 60 -44 100v217c0 17 0 37 -12 46c-13 10 -41 10 -63 10v35l155 11v-319c0 -42 2 -65 16 -80 c17 -18 44 -23 82 -23c71 0 127 63 128 141v183c0 16 -1 34 -12 42c-13 10 -41 10 -63 10v35l155 11v-50c31 6 59 20 75 41l-7 -1c-38 0 -57 29 -57 58s19 58 57 58c35 0 58 -35 58 -72zM390 532l-23 -26l-158 114c-16 11 -25 18 -25 37s17 41 41 41c16 0 24 -9 34 -20'], + 0xE329: [956,20,843,55,806,'806 727c0 -66 -56 -116 -124 -123v-376c0 -66 -26 -129 -72 -175c-47 -47 -109 -73 -175 -73c-73 0 -142 25 -195 72c-51 46 -82 109 -82 176v386c0 12 -6 24 -17 28c-17 5 -57 5 -86 5v36l151 -3l150 3v-36c-29 0 -68 0 -86 -5c-11 -4 -17 -16 -17 -28v-386 c0 -62 13 -114 46 -152c34 -38 83 -60 136 -60c57 0 111 22 150 61c40 39 61 94 61 151v358c0 19 -9 36 -25 46c-23 14 -51 15 -77 15v36l120 -3c6 0 12 1 18 3v-45c33 4 62 21 78 46c-4 -1 -8 -1 -12 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57c35 0 58 -34 58 -71zM554 891 c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3 c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE32A: [704,10,631,53,640,'640 474c0 -65 -58 -109 -126 -121v-262c0 -17 0 -37 12 -46c13 -9 41 -9 63 -9v-36l-151 -10v87c-26 -52 -76 -87 -136 -87c-54 0 -95 6 -130 31c-30 22 -44 60 -44 100v217c0 17 0 37 -12 46c-13 10 -41 10 -63 10v35l155 11v-319c0 -42 2 -65 16 -80 c17 -18 44 -23 82 -23c71 0 127 63 128 141v183c0 16 -1 34 -12 42c-13 10 -41 10 -63 10v35l155 11v-50c31 6 59 20 75 41l-7 -1c-38 0 -57 29 -57 58s19 58 57 58c35 0 58 -35 58 -72zM429 639c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12 c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE32B: [833,20,843,55,806,'806 727c0 -66 -56 -116 -124 -123v-376c0 -66 -26 -129 -72 -175c-47 -47 -109 -73 -175 -73c-73 0 -142 25 -195 72c-51 46 -82 109 -82 176v386c0 12 -6 24 -17 28c-17 5 -57 5 -86 5v36l151 -3l150 3v-36c-29 0 -68 0 -86 -5c-11 -4 -17 -16 -17 -28v-386 c0 -62 13 -114 46 -152c34 -38 83 -60 136 -60c57 0 111 22 150 61c40 39 61 94 61 151v358c0 19 -9 36 -25 46c-23 14 -51 15 -77 15v36l120 -3c6 0 12 1 18 3v-45c33 4 62 21 78 46c-4 -1 -8 -1 -12 -1c-38 0 -57 29 -57 58c0 28 19 57 57 57c35 0 58 -34 58 -71zM631 813 c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE32C: [652,10,631,53,640,'640 474c0 -65 -58 -109 -126 -121v-262c0 -17 0 -37 12 -46c13 -9 41 -9 63 -9v-36l-151 -10v87c-26 -52 -76 -87 -136 -87c-54 0 -95 6 -130 31c-30 22 -44 60 -44 100v217c0 17 0 37 -12 46c-13 10 -41 10 -63 10v35l155 11v-319c0 -42 2 -65 16 -80 c17 -18 44 -23 82 -23c71 0 127 63 128 141v183c0 16 -1 34 -12 42c-13 10 -41 10 -63 10v35l155 11v-50c31 6 59 20 75 41l-7 -1c-38 0 -57 29 -57 58s19 58 57 58c35 0 58 -35 58 -72zM506 632c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20 c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE32D: [933,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM449 893c0 -14 -6 -22 -14 -31l-97 -119l-29 18l60 140c6 15 14 32 38 32c18 0 42 -15 42 -40zM634 893c0 -14 -6 -22 -14 -31l-97 -119l-29 18l60 140c6 15 14 32 38 32c18 0 42 -15 42 -40'], + 0xE32E: [697,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM318 657c0 -14 -6 -22 -14 -31l-97 -119 l-29 18l60 140c6 15 14 32 38 32c18 0 42 -15 42 -40zM503 657c0 -14 -6 -22 -14 -31l-97 -119l-29 18l60 140c6 15 14 32 38 32c18 0 42 -15 42 -40'], + 0xE32F: [791,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM646 753h-398v38h398v-38'], + 0xE330: [621,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM515 583h-398v38h398v-38'], + 0xE331: [889,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM514 801c0 49 -38 53 -67 53s-67 -4 -67 -53c0 -51 44 -53 67 -53s67 2 67 53zM556 800c0 -45 -46 -87 -109 -87c-60 0 -109 39 -109 89c0 45 46 87 109 87c60 0 109 -39 109 -89'], + 0xE332: [702,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM383 614c0 49 -38 53 -67 53s-67 -4 -67 -53 c0 -51 44 -53 67 -53s67 2 67 53zM425 613c0 -45 -46 -87 -109 -87c-60 0 -109 39 -109 89c0 45 46 87 109 87c60 0 109 -39 109 -89'], + 0xE333: [833,20,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-346c0 -140 -111 -249 -248 -249c-148 0 -276 106 -276 250v372c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-375c0 -180 124 -211 183 -211c104 0 210 78 210 216v343c0 27 0 72 -103 72v36 c40 -3 81 -4 121 -4s81 1 121 4v-36zM631 813c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE334: [652,10,631,54,590,'590 0l-150 -10v84h-1c-48 -84 -121 -84 -143 -84c-167 0 -167 93 -167 162v150c0 89 0 92 -75 92v36l154 11v-329c0 -51 4 -94 95 -94c76 0 133 61 133 149v171c0 49 -8 56 -75 56v36l154 11v-349c0 -49 8 -56 75 -56v-36zM500 632c-63 -64 -78 -80 -119 -80 c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE335: [908,0,843,24,818,'818 647c-29 0 -93 -3 -136 -65l-216 -309v-188c0 -39 2 -49 79 -49h25v-36l-149 4l-149 -4v36h24c77 0 79 11 79 45v192l-237 340c-20 29 -42 34 -94 34h-20v36s80 -4 132 -4l154 4v-36c-25 0 -65 0 -65 -22c0 -4 0 -6 9 -18l201 -288l182 260c5 8 14 20 14 33 c0 20 -18 35 -51 35v36c6 0 80 -4 120 -4c30 0 69 1 98 4v-36zM572 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE336: [698,204,600,30,568,'568 395c-16 0 -67 -1 -95 -62l-194 -418c-14 -30 -63 -119 -148 -119c-54 0 -101 35 -101 82c0 26 18 44 44 44c25 0 43 -18 43 -43c0 -33 -29 -43 -29 -43c10 -7 18 -12 43 -12c68 0 100 69 122 117c9 20 19 39 28 59l-168 360c-15 32 -26 35 -82 35v36 c29 -3 68 -4 98 -4l115 4v-36c-17 0 -51 0 -51 -23c0 -7 3 -13 6 -19l123 -264l111 237c4 10 9 19 9 31c0 16 -8 36 -41 38v36c27 -3 64 -4 91 -4c29 0 48 2 76 4v-36zM437 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE337: [837,0,843,24,818,'818 647c-29 0 -93 -3 -136 -65l-216 -309v-188c0 -39 2 -49 79 -49h25v-36l-149 4l-149 -4v36h24c77 0 79 11 79 45v192l-237 340c-20 29 -42 34 -94 34h-20v36s80 -4 132 -4l154 4v-36c-25 0 -65 0 -65 -22c0 -4 0 -6 9 -18l201 -288l182 260c5 8 14 20 14 33 c0 20 -18 35 -51 35v36c6 0 80 -4 120 -4c30 0 69 1 98 4v-36zM362 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM585 784c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE338: [654,204,600,30,568,'568 395c-16 0 -67 -1 -95 -62l-194 -418c-14 -30 -63 -119 -148 -119c-54 0 -101 35 -101 82c0 26 18 44 44 44c25 0 43 -18 43 -43c0 -33 -29 -43 -29 -43c10 -7 18 -12 43 -12c68 0 100 69 122 117c9 20 19 39 28 59l-168 360c-15 32 -26 35 -82 35v36 c29 -3 68 -4 98 -4l115 4v-36c-17 0 -51 0 -51 -23c0 -7 3 -13 6 -19l123 -264l111 237c4 10 9 19 9 31c0 16 -8 36 -41 38v36c27 -3 64 -4 91 -4c29 0 48 2 76 4v-36zM257 601c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53zM446 601 c0 -26 -21 -51 -51 -51c-29 0 -52 23 -52 52c0 26 21 52 52 52c29 0 51 -24 51 -53'], + 0xE339: [683,200,843,24,818,'818 647c-29 0 -93 -3 -136 -65l-216 -309v-188c0 -39 2 -49 79 -49h25v-36l-149 4l-149 -4v36h24c77 0 79 11 79 45v192l-237 340c-20 29 -42 34 -94 34h-20v36s80 -4 132 -4l154 4v-36c-25 0 -65 0 -65 -22c0 -4 0 -6 9 -18l201 -288l182 260c5 8 14 20 14 33 c0 20 -18 35 -51 35v36c6 0 80 -4 120 -4c30 0 69 1 98 4v-36zM479 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE33A: [431,204,600,30,568,'568 395c-16 0 -67 -1 -95 -62l-194 -418c-14 -30 -63 -119 -148 -119c-54 0 -101 35 -101 82c0 26 18 44 44 44c25 0 43 -18 43 -43c0 -33 -29 -43 -29 -43c10 -7 18 -12 43 -12c68 0 100 69 122 117c9 20 19 39 28 59l-168 360c-15 32 -26 35 -82 35v36 c29 -3 68 -4 98 -4l115 4v-36c-17 0 -51 0 -51 -23c0 -7 3 -13 6 -19l123 -264l111 237c4 10 9 19 9 31c0 16 -8 36 -41 38v36c27 -3 64 -4 91 -4c29 0 48 2 76 4v-36zM507 -143c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57c32 0 57 -26 57 -58'], + 0xE33B: [908,0,843,24,818,'818 647c-29 0 -93 -3 -136 -65l-216 -309v-188c0 -39 2 -49 79 -49h25v-36l-149 4l-149 -4v36h24c77 0 79 11 79 45v192l-237 340c-20 29 -42 34 -94 34h-20v36s80 -4 132 -4l154 4v-36c-25 0 -65 0 -65 -22c0 -4 0 -6 9 -18l201 -288l182 260c5 8 14 20 14 33 c0 20 -18 35 -51 35v36c6 0 80 -4 120 -4c30 0 69 1 98 4v-36zM496 773l-19 -30c-86 43 -154 73 -175 85c-18 8 -28 13 -31 32c-4 25 15 48 41 48c12 0 20 -6 29 -14'], + 0xE33C: [698,204,600,30,568,'568 395c-16 0 -67 -1 -95 -62l-194 -418c-14 -30 -63 -119 -148 -119c-54 0 -101 35 -101 82c0 26 18 44 44 44c25 0 43 -18 43 -43c0 -33 -29 -43 -29 -43c10 -7 18 -12 43 -12c68 0 100 69 122 117c9 20 19 39 28 59l-168 360c-15 32 -26 35 -82 35v36 c29 -3 68 -4 98 -4l115 4v-36c-17 0 -51 0 -51 -23c0 -7 3 -13 6 -19l123 -264l111 237c4 10 9 19 9 31c0 16 -8 36 -41 38v36c27 -3 64 -4 91 -4c29 0 48 2 76 4v-36zM368 532l-23 -26l-158 114c-16 11 -25 18 -25 37s17 41 41 41c16 0 24 -9 34 -20'], + 0xE33D: [956,0,843,24,818,'818 647c-29 0 -93 -3 -136 -65l-216 -309v-188c0 -39 2 -49 79 -49h25v-36l-149 4l-149 -4v36h24c77 0 79 11 79 45v192l-237 340c-20 29 -42 34 -94 34h-20v36s80 -4 132 -4l154 4v-36c-25 0 -65 0 -65 -22c0 -4 0 -6 9 -18l201 -288l182 260c5 8 14 20 14 33 c0 20 -18 35 -51 35v36c6 0 80 -4 120 -4c30 0 69 1 98 4v-36zM529 891c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13 c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE33E: [704,204,600,30,568,'568 395c-16 0 -67 -1 -95 -62l-194 -418c-14 -30 -63 -119 -148 -119c-54 0 -101 35 -101 82c0 26 18 44 44 44c25 0 43 -18 43 -43c0 -33 -29 -43 -29 -43c10 -7 18 -12 43 -12c68 0 100 69 122 117c9 20 19 39 28 59l-168 360c-15 32 -26 35 -82 35v36 c29 -3 68 -4 98 -4l115 4v-36c-17 0 -51 0 -51 -23c0 -7 3 -13 6 -19l123 -264l111 237c4 10 9 19 9 31c0 16 -8 36 -41 38v36c27 -3 64 -4 91 -4c29 0 48 2 76 4v-36zM407 639c0 -21 -15 -36 -34 -44c-45 -20 -69 -37 -69 -64v-18c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12 v18c0 35 23 63 55 84c8 6 13 14 13 24c0 15 -3 25 -9 30c-11 9 -26 12 -47 12c-24 0 -44 -5 -58 -13c11 -5 19 -15 19 -29c0 -19 -14 -31 -30 -31c-17 0 -31 12 -31 30v3c1 43 49 63 100 63c32 0 58 -3 82 -15c19 -10 33 -29 33 -50'], + 0xE33F: [833,0,843,24,818,'818 647c-29 0 -93 -3 -136 -65l-216 -309v-188c0 -39 2 -49 79 -49h25v-36l-149 4l-149 -4v36h24c77 0 79 11 79 45v192l-237 340c-20 29 -42 34 -94 34h-20v36s80 -4 132 -4l154 4v-36c-25 0 -65 0 -65 -22c0 -4 0 -6 9 -18l201 -288l182 260c5 8 14 20 14 33 c0 20 -18 35 -51 35v36c6 0 80 -4 120 -4c30 0 69 1 98 4v-36zM606 813c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE340: [652,204,600,30,568,'568 395c-16 0 -67 -1 -95 -62l-194 -418c-14 -30 -63 -119 -148 -119c-54 0 -101 35 -101 82c0 26 18 44 44 44c25 0 43 -18 43 -43c0 -33 -29 -43 -29 -43c10 -7 18 -12 43 -12c68 0 100 69 122 117c9 20 19 39 28 59l-168 360c-15 32 -26 35 -82 35v36 c29 -3 68 -4 98 -4l115 4v-36c-17 0 -51 0 -51 -23c0 -7 3 -13 6 -19l123 -264l111 237c4 10 9 19 9 31c0 16 -8 36 -41 38v36c27 -3 64 -4 91 -4c29 0 48 2 76 4v-36zM484 632c-63 -64 -78 -80 -119 -80c-22 0 -43 9 -79 26c-8 5 -38 20 -64 20c-28 0 -57 -15 -86 -46 l-20 20c63 64 78 80 119 80c22 0 43 -9 79 -26c8 -5 38 -20 64 -20c28 0 57 15 86 46'], + 0xE341: [908,0,692,70,628,'628 273l-18 -273h-512c-20 0 -28 0 -28 20c0 9 0 11 9 23l428 604h-175c-133 0 -204 -45 -213 -194h-34l12 230h496c19 0 28 0 28 -19c0 -6 0 -11 -8 -22l-428 -602h186c196 0 214 99 223 233h34zM497 860c-3 -19 -13 -24 -31 -32c-21 -12 -89 -42 -175 -85l-19 30 l155 121c9 8 18 14 30 14c25 0 44 -23 40 -48'], + 0xE342: [698,0,508,39,453,'453 194l-18 -194h-368c-18 0 -28 0 -28 18c0 5 0 9 9 20l302 365h-118c-114 0 -137 -34 -144 -139h-34l12 167h356c16 0 28 0 28 -16c0 -7 -2 -10 -9 -19l-301 -364h123c125 0 146 45 156 162h34zM391 657c0 -19 -9 -26 -25 -37l-158 -114l-23 26l131 146 c10 11 18 20 34 20c24 0 41 -22 41 -41'], + 0xE343: [866,0,692,70,628,'628 273l-18 -273h-512c-20 0 -28 0 -28 20c0 9 0 11 9 23l428 604h-175c-133 0 -204 -45 -213 -194h-34l12 230h496c19 0 28 0 28 -19c0 -6 0 -11 -8 -22l-428 -602h186c196 0 214 99 223 233h34zM498 850l-151 -117l-151 117l12 16l140 -66l140 66'], + 0xE344: [690,0,508,39,453,'453 194l-18 -194h-368c-18 0 -28 0 -28 18c0 5 0 9 9 20l302 365h-118c-114 0 -137 -34 -144 -139h-34l12 167h356c16 0 28 0 28 -16c0 -7 -2 -10 -9 -19l-301 -364h123c125 0 146 45 156 162h34zM406 676l-152 -162l-152 162l13 14l139 -108l139 108'], + 0xE345: [868,0,692,70,628,'628 273l-18 -273h-512c-20 0 -28 0 -28 20c0 9 0 11 9 23l428 604h-175c-133 0 -204 -45 -213 -194h-34l12 230h496c19 0 28 0 28 -19c0 -6 0 -11 -8 -22l-428 -602h186c196 0 214 99 223 233h34zM404 810c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57 c32 0 57 -26 57 -58'], + 0xE346: [660,0,508,39,453,'453 194l-18 -194h-368c-18 0 -28 0 -28 18c0 5 0 9 9 20l302 365h-118c-114 0 -137 -34 -144 -139h-34l12 167h356c16 0 28 0 28 -16c0 -7 -2 -10 -9 -19l-301 -364h123c125 0 146 45 156 162h34zM311 602c0 -29 -23 -57 -57 -57c-32 0 -57 26 -57 58c0 29 23 57 57 57 c32 0 57 -26 57 -58'], + 0xE347: [694,-385,538,89,434,'219 442c0 -27 -19 -57 -57 -57c-49 0 -73 50 -73 109c0 123 90 200 102 200c7 0 14 -9 14 -15c0 -5 -2 -8 -9 -14c-79 -70 -79 -152 -79 -184c7 9 16 19 44 19c40 0 58 -30 58 -58zM434 442c0 -27 -19 -57 -57 -57c-49 0 -73 50 -73 109c0 123 90 200 102 200 c7 0 14 -9 14 -15c0 -5 -2 -8 -9 -14c-79 -70 -79 -152 -79 -184c7 9 16 19 44 19c40 0 58 -30 58 -58'], + 0xE348: [114,195,538,104,449,'234 5c0 -123 -90 -200 -102 -200c-7 0 -14 9 -14 15c0 5 2 8 9 14c79 70 79 152 79 184c-7 -9 -16 -19 -44 -19c-40 0 -58 30 -58 58c0 27 19 57 57 57c49 0 73 -50 73 -109zM449 5c0 -123 -90 -200 -102 -200c-7 0 -14 9 -14 15c0 5 2 8 9 14c79 70 79 152 79 184 c-7 -9 -16 -19 -44 -19c-40 0 -58 30 -58 58c0 27 19 57 57 57c49 0 73 -50 73 -109'], + 0xE349: [694,-385,538,104,449,'234 585c0 -123 -90 -200 -102 -200c-7 0 -14 9 -14 15c0 5 2 8 9 14c79 70 79 152 79 184c-7 -9 -16 -19 -44 -19c-40 0 -58 30 -58 58c0 27 19 57 57 57c49 0 73 -50 73 -109zM449 585c0 -123 -90 -200 -102 -200c-7 0 -14 9 -14 15c0 5 2 8 9 14c79 70 79 152 79 184 c-7 -9 -16 -19 -44 -19c-40 0 -58 30 -58 58c0 27 19 57 57 57c49 0 73 -50 73 -109'], + 0xE34A: [683,0,860,58,789,'789 336c0 -188 -153 -336 -337 -336h-394v36h24c77 0 79 11 79 45v243h-103v36h103v242c0 35 -2 45 -79 45h-24v36h394c186 0 337 -157 337 -347zM686 336c0 87 -16 163 -57 217c-46 59 -120 94 -205 94h-124c-47 0 -48 -8 -48 -39v-248h178v-36h-178v-249 c0 -31 1 -39 48 -39h125c80 0 152 31 197 82c35 42 64 102 64 218'], + 0xE34B: [122,0,458,168,290,'290 61c0 -33 -28 -61 -61 -61s-61 28 -61 61s28 61 61 61s61 -28 61 -61'], + 0xE34C: [122,194,458,168,304,'304 9c0 -125 -94 -203 -107 -203c-9 0 -18 12 -18 18c0 7 2 9 12 17c27 22 79 77 79 173c-11 -10 -26 -14 -41 -14c-38 0 -61 29 -61 61c0 31 23 61 61 61c45 0 75 -45 75 -113'], + 0xE34D: [705,14,597,60,514,'514 607c0 -10 -1 -49 -25 -108c-44 -108 -142 -211 -240 -296c-13 -13 -14 -14 -14 -36c0 -47 11 -147 84 -147c58 0 121 49 156 77c7 5 11 8 16 8c10 0 21 -17 21 -23c0 -4 -1 -8 -6 -11c-27 -23 -109 -85 -189 -85c-77 0 -128 58 -149 147l-66 -53 c-14 -12 -16 -12 -21 -12c-11 0 -21 17 -21 24s5 10 11 15l86 69c4 4 4 6 3 13c-11 202 138 516 276 516c54 0 78 -45 78 -98zM473 614c0 42 -15 57 -38 57c-92 0 -172 -299 -192 -420c49 44 94 90 130 135c78 98 100 177 100 228'], + 0xE34E: [115,0,339,112,227,'227 57c0 -30 -25 -57 -58 -57c-27 0 -57 22 -57 58c0 30 25 57 58 57c27 0 57 -22 57 -58'], + 0xE34F: [115,193,339,112,239,'239 6c0 -119 -85 -199 -99 -199c-6 0 -14 7 -14 14c0 5 3 8 7 12c68 64 78 128 78 183c0 0 -17 -16 -41 -16c-35 0 -58 26 -58 58c0 31 24 57 57 57c46 0 70 -47 70 -109'], + 0xE350: [704,12,478,23,439,'439 617c0 -174 -189 -356 -244 -408c-12 -11 -12 -13 -13 -23c-2 -19 -2 -21 -2 -34c0 -19 0 -136 68 -136c45 0 91 33 134 71c15 15 17 15 22 15c9 0 16 -13 16 -19c0 -12 -52 -49 -69 -59c-36 -23 -72 -36 -104 -36c-85 0 -118 84 -128 149l-38 -33 c-7 -7 -34 -32 -41 -32c-8 0 -17 11 -17 18c0 6 1 7 17 21c10 8 67 59 74 66c0 49 0 84 15 151c11 50 34 132 78 217c16 30 83 159 166 159c66 0 66 -72 66 -87zM407 624c0 36 -12 52 -35 52c-84 0 -163 -323 -181 -425c24 23 79 77 130 149c86 123 86 212 86 224'], + 0xE351: [716,0,1036,104,943,'943 28c0 -16 -7 -28 -24 -28c-20 0 -43 3 -63 3l-64 1l-71 -1c-22 0 -46 -3 -67 -3c-11 0 -18 7 -18 17c0 28 16 28 31 28c5 0 68 0 68 22c0 10 -20 110 -23 128c-3 12 -4 17 -6 29h-303c-19 0 -20 -1 -25 -7l-73 -107c-7 -10 -19 -27 -19 -39c0 -24 39 -26 47 -26 c4 0 19 -1 19 -17c0 -28 -17 -28 -24 -28c-18 0 -39 3 -57 3s-36 1 -55 1c-17 0 -34 -1 -51 -1c-14 0 -31 -3 -45 -3c-4 0 -16 3 -16 17c0 0 0 27 19 28c65 3 100 19 142 80l392 568c10 15 16 23 40 23c22 0 26 -6 30 -27l115 -615c4 -22 5 -29 71 -29c14 0 30 0 30 -17z M698 269l-61 324l-223 -324h284'], + 0xE352: [683,0,1037,121,961,'961 537c0 -100 -141 -166 -240 -179c136 -17 194 -84 194 -146c0 -100 -146 -212 -326 -212h-435c-17 0 -33 0 -33 17c0 28 16 28 42 28c76 0 77 8 85 38l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-24 0 -37 0 -37 17c0 28 16 28 35 28h410c136 0 235 -62 235 -146z M854 534c0 53 -47 104 -146 104h-183c-42 0 -42 -2 -50 -33l-58 -233h189c140 0 248 81 248 162zM805 216c0 63 -51 122 -153 122h-244l-68 -273c-2 -8 -2 -10 -3 -18c10 -2 24 -2 32 -2h193c124 0 243 74 243 171'], + 0xE353: [705,22,996,115,975,'975 691l-63 -255c-5 -19 -5 -22 -24 -22c-9 0 -23 0 -23 15c0 6 2 11 2 33c0 115 -81 198 -209 198c-62 0 -194 -14 -310 -124c-63 -60 -122 -176 -122 -288c0 -175 151 -225 268 -225c113 0 279 62 327 220c4 12 10 13 21 13c7 0 21 0 21 -14c0 0 -15 -108 -143 -191 c-61 -39 -150 -73 -251 -73c-214 0 -354 130 -354 293c0 219 253 434 528 434c131 0 192 -65 212 -87l5 -3s9 7 11 9l69 69c12 11 13 12 19 12c16 0 16 -14 16 -14'], + 0xE354: [683,0,1110,119,1028,'1028 412c0 -222 -239 -412 -474 -412h-402c-17 0 -33 0 -33 17c0 28 16 28 41 28c77 0 78 8 86 38l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 15 28 35 28h410c172 0 304 -106 304 -271zM923 438c0 70 -22 111 -59 145c-42 37 -109 55 -179 55 h-158c-42 0 -42 -2 -50 -33l-135 -540c-2 -7 -2 -9 -3 -18c10 -2 24 -2 32 -2h166c101 0 212 35 287 119s99 211 99 274'], + 0xE355: [679,0,1007,117,964,'964 661l-2 -15l-16 -178c-2 -19 -3 -28 -22 -28c-11 0 -21 5 -21 19s3 32 3 47c0 104 -41 128 -184 128h-194c-42 0 -42 -2 -50 -33l-57 -226h122c93 0 125 13 148 95c4 15 6 22 23 22s21 -11 21 -17c0 -5 -2 -11 -3 -15l-57 -224c-4 -17 -6 -23 -23 -23 c-20 0 -20 17 -20 17s1 6 1 9c6 25 6 35 6 42c0 32 -3 49 -99 49h-130l-66 -265c-2 -8 -2 -10 -3 -18c10 -2 24 -2 32 -2h201c178 0 235 46 307 200c11 25 12 27 27 27c17 0 21 -11 21 -17c0 -5 -4 -13 -6 -17l-101 -219c-9 -19 -10 -19 -35 -19h-637c-17 0 -33 0 -33 17 c0 28 16 28 41 28c77 0 78 8 86 38l130 520c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 15 28 35 28h620c18 0 33 0 33 -18'], + 0xE356: [679,0,867,117,946,'946 661l-2 -15l-16 -178c-2 -19 -3 -28 -22 -28c-11 0 -21 5 -21 19c0 0 3 28 3 50c0 99 -35 125 -177 125h-183c-42 0 -42 -2 -50 -33l-60 -239h117c95 0 122 15 145 94c4 17 6 23 23 23c20 0 20 -17 20 -17l-59 -241c-4 -17 -9 -21 -23 -21c-17 0 -21 11 -21 17 c0 0 1 4 1 7c2 5 7 30 7 46c0 33 -8 47 -97 47h-124l-59 -233c-4 -14 -4 -16 -4 -22c0 -12 7 -13 31 -15c26 -2 34 -2 58 -2c26 0 40 0 40 -17c0 -28 -20 -28 -26 -28c-27 0 -56 3 -83 3l-83 1l-77 -1c-22 0 -47 -3 -69 -3c-11 0 -18 9 -18 17c0 28 16 28 41 28 c77 0 78 8 86 38l130 520c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 15 28 35 28h602c18 0 33 0 33 -18'], + 0xE357: [705,22,1064,115,974,'974 691l-63 -255c-5 -19 -5 -22 -24 -22c-9 0 -23 0 -23 15c0 6 2 11 2 33c0 114 -80 198 -209 198c-70 0 -196 -19 -301 -117c-86 -79 -130 -200 -130 -293c0 -170 146 -227 282 -227c66 0 194 13 220 94c3 12 23 92 23 99c0 9 -6 10 -13 12c-20 4 -58 5 -79 5h-21 c-17 0 -32 0 -32 17c0 28 19 28 26 28c28 0 59 -3 87 -3l89 -1l67 1c20 0 42 3 62 3c9 0 17 -7 17 -17c0 -28 -17 -28 -30 -28c-57 -1 -62 -5 -69 -22l-31 -124l-19 -77c-3 -7 -10 -10 -13 -10c-12 0 -41 33 -53 54c-14 -15 -48 -44 -121 -61c-53 -13 -108 -15 -144 -15 c-235 0 -359 142 -359 293c0 220 254 434 527 434c130 0 190 -63 212 -86c3 -3 5 -4 5 -4s9 7 11 9l69 69c12 11 13 12 19 12c16 0 16 -14 16 -14'], + 0xE358: [683,0,1110,117,1089,'1089 666c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-131 -526c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17 c0 28 16 28 41 28c76 0 78 8 86 38l63 250h-381l-65 -261c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17c0 28 16 28 41 28c77 0 78 8 86 38 l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 18 28 25 28c22 0 47 -3 70 -3l74 -1l73 1c22 0 46 3 67 3c17 0 18 -17 18 -17c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-55 -220h381l57 229c3 11 3 13 3 25c-21 6 -54 6 -64 6 c-25 0 -37 0 -37 17c0 28 18 28 25 28c22 0 47 -3 70 -3l74 -1l73 1c22 0 46 3 67 3c17 0 18 -17 18 -17'], + 0xE359: [683,0,627,112,610,'610 666c0 -28 -14 -28 -41 -28c-82 0 -83 -7 -92 -41l-130 -519c-2 -6 -4 -14 -4 -19c0 -9 1 -10 29 -12c17 -2 27 -2 43 -2c20 0 35 0 35 -17c0 -28 -19 -28 -25 -28c-23 0 -49 3 -72 3l-77 1l-77 -1c-22 0 -47 -3 -69 -3c-10 0 -18 6 -18 17c0 28 14 28 41 28 c82 0 83 7 92 41l131 522c2 9 2 11 2 16c0 9 -1 10 -28 12c-20 2 -39 2 -43 2c-21 0 -36 0 -36 17c0 28 20 28 26 28c23 0 49 -3 72 -3l77 -1l77 1c22 0 47 3 69 3c12 0 18 -9 18 -17'], + 0xE35A: [683,22,773,152,791,'791 666c0 -28 -17 -28 -34 -28c-56 0 -57 -6 -65 -36l-115 -458c-27 -107 -151 -166 -258 -166c-100 0 -167 46 -167 112c0 58 43 84 74 84c28 0 51 -18 51 -48c0 -25 -17 -65 -68 -72c30 -40 95 -42 108 -42c64 0 140 51 162 139l113 450c2 7 4 15 4 20 c0 8 -4 10 -10 12c-20 5 -85 5 -85 5c-25 0 -39 0 -39 17c0 28 19 28 26 28c26 0 54 -3 80 -3l83 -1c20 0 41 1 61 1s42 3 62 3c9 0 17 -8 17 -17'], + 0xE35B: [683,0,1139,117,1112,'1112 666c0 -27 -15 -27 -27 -28c-42 -2 -81 -17 -112 -31c-46 -22 -106 -61 -273 -167c-14 -9 -39 -27 -39 -27s3 -7 6 -12l201 -324c15 -25 35 -32 74 -32c11 0 28 0 28 -17c0 -16 -8 -28 -24 -28c0 0 -42 3 -57 3c-18 0 -37 1 -55 1l-70 -1c-22 0 -46 -3 -67 -3 c-12 0 -18 9 -18 17c0 28 17 28 29 28c7 0 44 0 44 19c0 4 0 6 -10 20l-159 259c-9 13 -11 14 -11 14s-10 -6 -12 -7l-160 -102c-11 -8 -12 -9 -14 -14c-1 -3 -24 -94 -25 -101c-6 -25 -18 -71 -18 -75c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17 c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17c0 28 16 28 41 28c77 0 78 8 86 38l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 18 28 25 28c22 0 47 -3 70 -3l74 -1l73 1c22 0 46 3 67 3 c17 0 18 -17 18 -17c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-76 -305l458 292c11 8 13 8 25 18c9 9 18 16 18 24c0 4 0 10 -22 11c-18 1 -18 17 -18 17c0 15 6 28 24 28c20 0 43 -3 64 -3l64 -1c22 0 51 0 85 4c3 -1 13 -3 13 -17'], + 0xE35C: [683,0,956,117,842,'842 255c0 -6 -79 -206 -89 -232c-9 -22 -10 -23 -36 -23h-567c-17 0 -33 0 -33 17c0 28 16 28 42 28c76 0 77 8 85 38l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-24 0 -37 0 -37 17c0 28 18 28 25 28c22 0 48 -3 71 -3l77 -1l83 1c26 0 54 3 80 3c11 0 19 -6 19 -17 c0 -28 -13 -28 -43 -28c-27 0 -47 0 -75 -4c-25 -3 -31 -11 -37 -36l-133 -533c-2 -8 -2 -10 -3 -18c10 -2 24 -2 32 -2h139c165 0 229 70 282 198c11 26 12 29 27 29c16 0 21 -10 21 -17'], + 0xE35D: [683,0,1284,123,1291,'1291 666c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-131 -526c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -69 3l-69 1l-68 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17 c0 28 16 28 41 28c76 0 78 8 86 38l139 556l-1 1l-447 -617c-14 -19 -26 -23 -36 -23c-19 0 -22 12 -26 29l-137 603h-1l-131 -526c-2 -10 -4 -16 -4 -23c0 -24 19 -37 69 -38c11 0 26 0 26 -17c0 -21 -11 -28 -24 -28c-18 0 -39 3 -57 3c-20 0 -39 1 -59 1 c-19 0 -38 -1 -57 -1c-18 0 -39 -3 -57 -3c-9 0 -17 8 -17 17c0 27 17 28 25 28c93 2 102 40 109 67l124 495c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 15 28 35 28h160c27 0 33 -1 39 -27l128 -565l415 572c15 20 26 20 48 20h151c17 0 32 0 32 -17'], + 0xE35E: [683,0,1076,117,1089,'1089 666c0 -27 -18 -28 -26 -28c-91 -3 -101 -41 -108 -69l-136 -543c-5 -21 -6 -26 -26 -26c-11 0 -17 0 -27 18l-344 590l-125 -502c-2 -10 -4 -16 -4 -23c0 -24 19 -37 69 -38c11 0 26 0 26 -17c0 -21 -11 -28 -24 -28c-18 0 -39 3 -57 3c-20 0 -39 1 -59 1 c-19 0 -38 -1 -57 -1c-18 0 -39 -3 -57 -3c-9 0 -17 8 -17 17c0 27 17 28 25 28c93 2 102 40 109 67l131 522c-25 4 -65 4 -68 4c-24 0 -37 0 -37 17c0 28 15 28 35 28h155c24 0 26 0 36 -17l300 -515l108 430c1 6 3 11 3 18c0 17 -4 38 -70 39c-10 0 -25 0 -25 17 c0 28 17 28 24 28c18 0 39 -3 57 -3c20 0 39 -1 59 -1c19 0 38 1 56 1s39 3 57 3c14 0 17 -13 17 -17'], + 0xE35F: [705,22,1048,114,967,'967 417c0 -223 -248 -439 -517 -439c-204 0 -336 124 -336 285c0 218 245 442 518 442c204 0 335 -127 335 -288zM859 446c0 151 -110 222 -237 222c-214 0 -394 -189 -394 -419c0 -180 131 -233 232 -233c107 0 215 56 284 136c91 107 115 234 115 294'], + 0xE360: [683,0,875,119,957,'957 521c0 -124 -180 -218 -334 -218h-218l-57 -231c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17c0 28 16 28 41 28c77 0 78 8 86 38 l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 15 28 35 28h394c145 0 249 -69 249 -162zM846 535c0 76 -69 103 -171 103h-148c-42 0 -42 -2 -50 -33l-66 -263h189c40 0 118 4 175 45s71 119 71 148'], + 0xE361: [705,194,1082,114,967,'967 417c0 -168 -143 -340 -345 -410c27 -76 53 -87 90 -87c17 0 107 5 134 84c5 12 16 12 16 12c7 0 17 -6 17 -16c0 -30 -69 -194 -196 -194c-100 0 -107 93 -115 186c-58 -14 -104 -14 -118 -14c-204 0 -336 124 -336 285c0 218 245 442 518 442 c204 0 335 -127 335 -288zM860 438c0 154 -109 230 -238 230c-232 0 -401 -220 -401 -425c0 -93 40 -179 150 -215c-4 7 -4 16 -4 24c0 55 60 102 123 102c65 0 96 -46 118 -107c189 83 252 277 252 391zM564 31c-8 66 -32 89 -74 89c-45 0 -89 -31 -89 -68s43 -37 59 -37 c18 0 54 1 104 16'], + 0xE362: [683,22,1030,119,990,'828 532c0 79 -75 106 -187 106h-114c-42 0 -42 -2 -50 -33l-62 -246h154c120 0 177 37 186 42c49 33 73 88 73 131zM990 97c0 -23 -47 -119 -146 -119c-62 0 -164 18 -164 114c0 19 8 51 14 76c6 23 15 57 15 69c0 62 -71 88 -144 88h-158l-63 -253 c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-21 0 -46 3 -68 3l-74 1l-72 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17c0 28 16 28 41 28c77 0 78 8 86 38l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6 c-25 0 -37 0 -37 17c0 28 15 28 35 28h346c158 0 281 -68 281 -159s-117 -155 -230 -183c31 -11 99 -37 99 -115c0 -6 0 -10 -4 -39c-3 -25 -11 -81 -11 -103c0 -64 28 -72 54 -72c37 0 81 32 98 83c5 13 7 19 22 19c6 0 21 0 21 -17'], + 0xE363: [705,22,856,123,818,'818 691l-53 -214c-5 -19 -5 -21 -23 -21c-5 0 -20 0 -20 14c0 6 2 20 2 36c0 125 -96 157 -185 157c-123 0 -224 -78 -224 -156c0 -27 13 -50 33 -66c30 -23 47 -26 116 -41l131 -27c82 -20 136 -82 136 -155c0 -117 -132 -240 -299 -240c-76 0 -163 14 -220 69l-51 -55 c-14 -13 -15 -14 -21 -14c-16 0 -17 14 -17 14l4 16l49 199c5 19 10 20 23 20c7 0 21 0 21 -15c0 -3 -1 -4 -2 -8c-3 -14 -5 -29 -5 -43c0 -123 149 -138 222 -138c135 0 231 92 231 172c0 31 -14 57 -38 76c-27 22 -45 26 -131 44l-116 24c-76 21 -131 73 -131 145 c0 112 135 221 292 221c106 0 161 -40 186 -72c12 13 41 46 53 58c12 13 13 14 21 14c16 0 16 -14 16 -14'], + 0xE364: [675,0,832,86,927,'927 658c0 -4 0 -6 -2 -16l-25 -179c-2 -18 -4 -27 -23 -27c-15 0 -21 8 -21 18l1 9c7 48 7 67 7 74c0 62 -14 93 -126 93h-107c-42 0 -42 -2 -50 -33l-129 -513c-4 -14 -4 -16 -4 -21c0 -11 6 -12 14 -13c26 -5 53 -5 79 -5h22c17 0 32 0 32 -17c0 -28 -19 -28 -26 -28 c-30 0 -62 3 -92 3l-97 1l-93 -1c-30 0 -62 -3 -92 -3c-16 0 -20 11 -20 17c0 7 4 18 9 23c5 4 6 5 27 5h22c105 0 108 10 116 42l134 535v6c-10 2 -24 2 -32 2h-108c-136 0 -165 -48 -210 -167c-9 -24 -10 -27 -26 -27c-17 0 -21 11 -21 17c0 0 5 15 6 17l66 184 c8 21 9 21 35 21h701c17 0 33 0 33 -17'], + 0xE365: [683,22,944,143,957,'957 666c0 -27 -18 -28 -26 -28c-91 -3 -101 -41 -108 -69l-86 -343c-35 -139 -184 -248 -339 -248c-154 0 -255 92 -255 205c0 12 2 30 5 42l61 247l36 140c1 5 1 7 1 20c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 18 28 25 28c22 0 47 -3 70 -3l74 -1l73 1 c22 0 46 3 67 3c17 0 18 -17 18 -17c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-94 -374c-5 -21 -8 -42 -8 -64c0 -117 102 -137 160 -137c140 0 258 95 288 201l90 361c1 5 2 9 2 14c0 17 -4 38 -70 39c-10 0 -25 0 -25 17c0 28 17 28 24 28 c17 0 38 -3 56 -3c20 0 39 -1 59 -1c19 0 38 1 56 1s39 3 57 3c14 0 17 -13 17 -17'], + 0xE366: [683,22,828,128,1000,'1000 666c0 -27 -16 -27 -27 -28c-65 -4 -94 -34 -112 -54c-13 -14 -13 -16 -20 -25l-405 -558c-17 -23 -30 -23 -42 -23c-25 0 -27 8 -32 29l-137 603c-5 21 -6 28 -65 28c-18 0 -32 0 -32 17c0 28 17 28 24 28c18 0 40 -3 59 -3l64 -1l71 1c22 0 46 3 67 3 c12 0 18 -9 18 -17c0 -28 -17 -28 -30 -28c-35 0 -67 -6 -67 -20c0 -3 0 -5 2 -15l116 -510l351 482c14 19 18 31 18 38c0 20 -26 24 -41 25c-7 0 -23 1 -23 17c0 17 8 28 24 28c18 0 39 -3 57 -3s36 -1 55 -1c15 0 31 1 46 1s31 3 45 3c12 0 16 -11 16 -17'], + 0xE367: [683,22,1279,126,1349,'1349 666c0 -13 -6 -27 -18 -28c-39 -2 -80 -5 -128 -79l-362 -557c-10 -15 -17 -24 -38 -24c-23 0 -24 9 -27 29l-76 504l-332 -511c-7 -11 -14 -22 -37 -22c-22 0 -24 10 -27 28l-90 603c-4 24 -4 29 -60 29c-13 0 -28 0 -28 17c0 21 11 28 24 28c0 0 46 -3 58 -3 c19 0 39 -1 59 -1l70 1c22 0 46 3 67 3c11 0 18 -9 18 -17c0 -28 -17 -28 -34 -28c-6 0 -68 0 -68 -24l2 -13l73 -490l289 445c7 10 7 13 7 13c0 6 -7 55 -10 59c-7 10 -37 10 -54 10c-13 0 -29 0 -29 17c0 16 7 28 24 28c18 0 39 -3 58 -3s39 -1 59 -1l69 1c22 0 46 3 67 3 c8 0 18 -5 18 -17c0 -28 -15 -28 -34 -28c-29 0 -56 -3 -68 -21l76 -506l301 463c6 9 14 21 14 33c0 27 -43 30 -55 31c-8 0 -23 1 -23 17c0 21 10 28 24 28c19 0 40 -3 59 -3l59 -1c15 0 31 1 45 1s29 3 42 3c4 0 16 -3 16 -17'], + 0xE368: [683,0,1113,97,1058,'1058 666c0 -10 -6 -27 -20 -28c-60 -2 -113 -13 -173 -67l-214 -190l186 -311c9 -14 15 -25 80 -25c18 0 33 0 33 -17c0 -16 -7 -28 -24 -28c-20 0 -43 3 -63 3l-64 1l-70 -1c-23 0 -49 -3 -72 -3c-10 0 -18 6 -18 17c0 27 17 28 23 28c36 2 53 15 53 19l-6 12l-140 232 l-236 -213c-2 -3 -16 -19 -16 -30c0 -6 4 -18 32 -20c4 0 19 -1 19 -17c0 -21 -10 -28 -24 -28c-20 0 -42 3 -62 3c-21 0 -42 1 -64 1c-17 0 -35 -1 -52 -1s-36 -3 -53 -3c-7 0 -16 6 -16 17c0 0 1 27 19 28c95 3 134 34 175 68c4 2 13 8 16 11l242 219l-161 269 c-9 15 -15 26 -81 26c-18 0 -33 0 -33 17c0 16 7 28 24 28c20 0 42 -3 63 -3l64 -1l70 1c23 0 49 3 72 3c8 0 18 -5 18 -17c0 -27 -17 -28 -23 -28c-18 -1 -38 -5 -54 -18l122 -204l167 151c32 29 41 37 41 51c0 15 -18 19 -32 20c-8 0 -19 3 -19 17c0 28 17 28 24 28 c19 0 42 -3 61 -3c21 0 42 -1 64 -1c17 0 35 1 52 1s37 3 53 3c9 0 17 -8 17 -17'], + 0xE369: [683,0,824,105,989,'989 666c0 -27 -14 -27 -28 -28c-70 -4 -109 -35 -136 -57l-28 -23l-298 -285l-40 -161c-12 -45 -12 -47 -12 -54c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -18 -28 -25 -28c-21 0 -46 3 -68 3l-74 1l-72 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17 c0 28 16 28 39 28c74 0 79 1 91 46l45 183l-183 335c-12 22 -16 29 -80 29c-18 0 -32 0 -32 17c0 21 10 28 24 28c0 0 51 -3 64 -3l64 -1l72 1c23 0 49 3 72 3c8 0 18 -5 18 -17c0 -28 -16 -28 -31 -28c-8 0 -51 0 -51 -13c0 0 0 -3 6 -13l155 -285l264 253c8 8 32 30 32 44 c0 7 -6 13 -31 14c-7 0 -19 3 -19 17c0 21 11 28 24 28c17 0 37 -3 54 -3l59 -1c16 0 32 1 47 1s31 3 45 3c4 0 16 -3 16 -17'], + 0xE36A: [683,0,943,129,917,'917 670c0 -17 -8 -25 -18 -34l-629 -588h216c179 0 239 59 292 211c6 16 8 22 24 22c4 0 21 0 21 -17c0 -9 -69 -212 -79 -240c-8 -23 -9 -24 -35 -24h-551c-21 0 -29 0 -29 14c0 13 6 25 16 34l633 590h-205c-130 0 -221 -31 -273 -179c-4 -14 -11 -15 -21 -15 c-17 0 -21 11 -21 17c0 3 4 14 5 18l57 182c7 22 10 22 35 22h533c19 0 29 0 29 -13'], + 0xE36B: [442,11,774,105,684,'684 144c0 -7 -14 -60 -40 -99c-21 -33 -48 -56 -88 -56c-45 0 -100 21 -118 70c-12 -12 -76 -70 -158 -70c-100 0 -175 72 -175 174c0 142 140 279 281 279c63 0 101 -34 120 -60c8 28 32 40 50 40c24 0 37 -18 37 -35c0 -5 -10 -42 -15 -63l-42 -168 c-6 -27 -16 -65 -16 -80c0 -31 12 -53 40 -53c35 0 61 39 79 113c5 16 6 22 24 22c4 0 21 0 21 -14zM490 321c-16 60 -59 87 -104 87c-42 0 -93 -25 -132 -80c-35 -52 -59 -157 -59 -203c0 -83 53 -102 88 -102c50 0 102 31 139 73c18 20 18 22 22 37'], + 0xE36C: [693,11,633,111,563,'563 268c0 -139 -137 -279 -282 -279c-96 0 -170 69 -170 173c0 22 3 38 8 59l83 335c6 22 16 61 16 67c0 8 -1 11 -20 13c-15 2 -34 2 -34 2c-14 0 -30 0 -30 17c0 6 3 18 7 23c5 4 7 5 24 6l123 9c16 1 31 1 31 -16c0 -5 0 -7 -4 -21l-67 -268c49 38 98 54 140 54 c103 0 175 -75 175 -174zM473 306c0 76 -45 102 -88 102c-84 0 -154 -87 -157 -97c-1 -6 -18 -71 -21 -83c-8 -34 -16 -66 -16 -98c0 -81 49 -107 92 -107c49 0 105 35 139 94c32 58 51 152 51 189'], + 0xE36D: [442,11,649,107,596,'596 98c0 -11 -40 -57 -107 -83c-68 -26 -148 -26 -167 -26c-151 0 -215 95 -215 182c0 133 147 271 316 271c55 0 152 -13 152 -88c0 -50 -38 -69 -62 -69c-25 0 -44 15 -44 41c0 34 28 55 46 60c-31 22 -81 22 -92 22c-158 0 -224 -167 -224 -269 c0 -69 40 -116 124 -116c100 0 184 30 229 81c16 16 17 17 22 17c9 0 22 -15 22 -23'], + 0xE36E: [693,11,740,105,684,'684 144c0 -7 -14 -60 -40 -99c-21 -33 -48 -56 -88 -56c-45 0 -100 21 -118 70c-12 -12 -76 -70 -158 -70c-100 0 -175 72 -175 174c0 142 140 279 281 279c63 0 101 -34 120 -60l47 188c4 18 12 48 12 53c0 8 -1 11 -20 13c-15 2 -34 2 -34 2c-14 0 -30 0 -30 17 c0 6 3 18 7 23c5 4 7 5 24 6l123 9c16 1 31 1 31 -16c0 -5 0 -7 -4 -21l-138 -548c-3 -10 -4 -21 -4 -32c0 -31 12 -53 40 -53c35 0 61 39 79 113c5 16 6 22 24 22c4 0 21 0 21 -14zM490 321c-16 60 -59 87 -104 87c-42 0 -93 -25 -132 -80c-35 -52 -59 -157 -59 -203 c0 -83 53 -102 88 -102c50 0 102 31 139 73c18 20 18 22 22 37'], + 0xE36F: [442,11,677,112,596,'596 98c0 -11 -40 -57 -107 -83s-147 -26 -166 -26c-152 0 -211 105 -211 196c0 166 173 257 309 257c92 0 144 -39 144 -90c0 -115 -179 -127 -280 -127h-72c-10 -40 -10 -66 -10 -76c0 -75 39 -126 121 -126c90 0 179 26 228 81c16 16 17 17 22 17c9 0 22 -15 22 -23z M514 351c0 37 -44 57 -94 57c-30 0 -153 -10 -198 -149h58c47 0 234 0 234 92'], + 0xE370: [705,205,684,120,692,'692 628c0 -44 -36 -66 -62 -66c-25 0 -44 16 -44 41c0 4 0 40 40 57c-21 11 -43 11 -49 11c-17 0 -33 -8 -48 -24c-13 -15 -33 -142 -45 -216h107c17 0 32 0 32 -17c0 -6 -3 -19 -8 -23s-6 -5 -27 -5h-112l-56 -322c-1 -3 -24 -136 -64 -192c-23 -31 -67 -77 -125 -77 c-39 0 -111 16 -111 77c0 44 36 66 62 66c25 0 44 -16 44 -41c0 -21 -13 -46 -40 -58c18 -9 40 -10 46 -10c39 0 63 51 69 75c28 106 70 384 89 482h-87c-17 0 -32 0 -32 17c0 28 16 28 35 28h91c17 94 11 67 20 110s34 164 161 164c48 0 114 -19 114 -77'], + 0xE371: [442,205,701,99,635,'635 387c0 -3 0 -5 -5 -23l-106 -426c-24 -97 -126 -143 -263 -143c-60 0 -162 0 -162 67c0 38 30 66 62 66c33 0 45 -24 45 -41c0 -10 -5 -32 -23 -48l-4 -3c0 -6 73 -7 81 -7c29 0 73 0 120 32c46 32 53 62 62 98l24 95c-23 -19 -77 -54 -141 -54 c-95 0 -175 66 -175 171c0 141 141 271 278 271c44 0 87 -15 120 -59c8 25 30 39 50 39c24 0 37 -18 37 -35zM532 321c0 9 -21 87 -104 87c-53 0 -105 -38 -132 -82c-38 -58 -56 -153 -56 -192c0 -79 50 -100 89 -100c52 0 98 31 135 68c19 20 20 24 24 40l41 164 c2 6 3 15 3 15'], + 0xE372: [693,11,828,124,737,'737 144c0 -25 -55 -155 -161 -155c-59 0 -109 36 -109 88c0 17 3 25 18 61c14 35 57 142 57 198c0 43 -19 72 -70 72c-79 0 -138 -56 -179 -118c-28 -43 -28 -45 -43 -105l-18 -69c-15 -64 -19 -78 -22 -88c-6 -24 -28 -39 -48 -39s-38 13 -38 36c0 6 0 8 4 23l138 552 c5 18 5 20 5 23c0 8 -1 11 -20 13c-15 2 -34 2 -34 2c-14 0 -30 0 -30 17c0 6 3 18 7 23c5 4 7 5 24 6l123 9c16 1 31 1 31 -16c0 -5 0 -7 -4 -21l-78 -310c30 33 88 96 187 96c102 0 149 -50 149 -119c0 -53 -44 -162 -55 -189c-9 -24 -21 -53 -21 -73c0 -22 7 -38 30 -38 c50 0 95 57 112 112c6 19 7 23 24 23c4 0 21 0 21 -14'], + 0xE373: [667,11,534,91,443,'396 624c0 -30 -29 -60 -62 -60c-21 0 -43 15 -43 43c0 33 33 60 61 60c26 0 44 -19 44 -43zM443 144c0 -25 -56 -155 -161 -155c-60 0 -109 36 -109 88c0 17 6 31 11 45c15 34 15 36 22 53l66 159c6 19 6 32 6 36c0 27 -11 38 -30 38c-43 0 -91 -44 -113 -115 c-5 -15 -6 -20 -23 -20c-5 0 -21 0 -21 14c0 27 56 155 161 155c63 0 109 -40 109 -88c0 -17 -6 -30 -14 -50l-57 -138l-21 -54c-8 -19 -13 -30 -13 -51c0 -22 7 -38 30 -38c50 0 95 57 112 112c6 19 7 23 24 23c4 0 21 0 21 -14'], + 0xE374: [667,205,588,37,510,'510 624c0 -28 -28 -60 -62 -60c-25 0 -44 19 -44 43c0 30 31 60 62 60c27 0 44 -20 44 -43zM474 345c0 -14 -3 -23 -5 -33l-90 -358c-31 -124 -161 -159 -229 -159s-113 26 -113 69c0 33 28 64 62 64c33 0 45 -24 45 -41c0 -13 -7 -39 -31 -53c8 -2 19 -5 36 -5 c61 0 124 50 143 126l94 374c2 8 3 12 3 26c0 17 -2 53 -42 53c-34 0 -102 -23 -148 -121c-5 -10 -7 -14 -22 -14c-5 0 -21 0 -21 14c0 20 74 155 195 155c70 0 123 -40 123 -97'], + 0xE375: [693,11,758,124,668,'668 144c0 -12 -40 -155 -142 -155c-58 0 -122 36 -122 107c0 6 0 12 3 26c3 12 3 16 3 23c0 71 -125 78 -151 79l-45 -184c-4 -14 -13 -51 -52 -51c-20 0 -38 13 -38 36c0 6 0 8 4 23l138 552c5 18 5 20 5 23c0 8 -1 11 -20 13c-15 2 -34 2 -34 2c-14 0 -30 0 -30 17 c0 6 3 18 7 23c5 4 7 5 24 6l123 9c16 1 31 1 31 -16c0 -5 0 -7 -4 -21l-97 -388c40 16 73 41 108 69c73 59 131 105 199 105c48 0 86 -30 86 -79c0 -55 -42 -71 -62 -71c-33 0 -45 24 -45 41c0 3 0 44 46 60l8 3c-6 6 -12 12 -35 12c-57 0 -112 -43 -169 -88 c-16 -14 -58 -48 -86 -64c66 -5 176 -20 176 -108c0 -8 -1 -18 -5 -34c-4 -17 -4 -32 -4 -32c0 -22 5 -59 42 -59c54 0 83 77 93 112c5 18 7 23 24 23c4 0 21 0 21 -14'], + 0xE376: [693,11,480,106,355,'355 144c0 -6 -15 -66 -44 -107c-24 -33 -51 -48 -84 -48c-62 0 -121 37 -121 97c0 14 2 23 5 34l121 480c3 12 4 23 4 31c-11 4 -19 7 -54 7c-14 0 -30 0 -30 17c0 6 3 18 7 23c5 4 7 5 24 6l123 9c16 1 31 1 31 -16c0 -5 0 -7 -4 -21l-138 -548c-3 -10 -4 -21 -4 -32 c0 -31 12 -53 40 -53c39 0 63 48 79 113c5 16 6 22 24 22c4 0 21 0 21 -14'], + 0xE377: [442,11,1228,91,1138,'1138 144c0 -25 -55 -155 -162 -155c-59 0 -109 36 -109 88c0 17 5 30 10 42c23 57 65 160 65 217c0 45 -21 72 -70 72c-122 0 -194 -140 -207 -167c-2 -4 -2 -6 -36 -141l-19 -78c-11 -25 -33 -33 -48 -33c-19 0 -37 13 -37 35c0 7 9 42 14 63l39 156c8 31 18 71 18 93 c0 43 -19 72 -70 72c-65 0 -107 -38 -123 -52c-49 -43 -85 -116 -87 -120c-5 -23 -11 -45 -16 -67l-18 -69l-19 -78c-11 -25 -33 -33 -48 -33c-19 0 -37 13 -37 35c0 5 11 49 17 74l23 89l22 90c6 26 16 64 16 78c0 21 -7 53 -41 53c-42 0 -65 -58 -80 -116 c-4 -13 -6 -19 -23 -19c-5 0 -21 0 -21 14c0 0 29 155 129 155c25 0 117 -11 121 -99c36 38 92 99 190 99c41 0 140 -8 149 -110c40 53 105 110 198 110c95 0 148 -45 148 -119c0 -55 -46 -169 -63 -209c-9 -22 -13 -32 -13 -53c0 -22 7 -38 30 -38c48 0 94 52 113 112 c6 19 7 23 24 23c4 0 21 0 21 -14'], + 0xE378: [442,11,881,91,791,'791 144c0 -25 -55 -155 -162 -155c-59 0 -109 36 -109 88c0 17 5 30 10 42c23 57 65 160 65 217c0 45 -21 72 -70 72c-122 0 -194 -140 -207 -167c-2 -4 -2 -6 -36 -141l-19 -78c-11 -25 -33 -33 -48 -33c-19 0 -37 13 -37 35c0 5 11 49 17 74l23 89l22 90 c6 26 16 64 16 78c0 21 -7 53 -41 53c-42 0 -65 -58 -80 -116c-4 -13 -6 -19 -23 -19c-5 0 -21 0 -21 14c0 0 29 155 129 155c37 0 117 -17 122 -99c35 44 98 99 189 99c95 0 148 -45 148 -119c0 -55 -46 -169 -63 -209c-9 -22 -13 -32 -13 -53c0 -22 7 -38 30 -38 c48 0 94 52 113 112c6 19 7 23 24 23c4 0 21 0 21 -14'], + 0xE379: [442,11,703,106,632,'632 260c0 -134 -149 -271 -316 -271c-127 0 -210 80 -210 182c0 135 149 271 316 271c128 0 210 -82 210 -182zM540 291c0 89 -65 117 -120 117c-57 0 -116 -30 -154 -74c-55 -66 -68 -164 -68 -194c0 -94 71 -117 120 -117s115 24 161 84c49 63 61 156 61 184'], + 0xE37A: [442,194,740,55,670,'670 268c0 -141 -140 -279 -281 -279c-55 0 -95 26 -120 60c-30 -119 -46 -180 -46 -186c0 -12 22 -12 55 -12c14 0 31 0 31 -17c0 -21 -12 -28 -25 -28c-17 0 -38 3 -55 3c-20 0 -39 1 -59 1c-17 0 -34 -1 -50 -1s-34 -3 -49 -3c-7 0 -16 6 -16 17c0 28 17 28 32 28 c45 0 46 6 53 32l112 446c2 8 3 12 3 26c0 20 -6 53 -41 53c-47 0 -68 -74 -79 -114c-4 -16 -6 -21 -23 -21c-6 0 -21 0 -21 15c0 5 13 57 39 99c25 39 55 55 89 55c37 0 97 -16 117 -70c20 19 81 70 159 70c102 0 175 -74 175 -174zM580 306c0 76 -47 102 -88 102 c-48 0 -99 -28 -139 -72c-17 -20 -18 -22 -22 -38l-43 -170c-1 -5 -3 -11 -3 -16c0 -8 21 -89 104 -89c38 0 98 22 140 95c28 48 51 144 51 188'], + 0xE37B: [442,194,659,106,603,'603 425c0 -5 0 -7 -4 -21l-130 -520l-5 -21c0 -12 22 -12 55 -12c14 0 31 0 31 -17c0 -21 -12 -28 -25 -28c-19 0 -41 3 -60 3s-39 1 -59 1s-39 -1 -59 -1c-18 0 -39 -3 -57 -3c-14 0 -17 13 -17 17c0 28 15 28 34 28c63 1 66 7 72 23l42 170c-29 -24 -80 -55 -141 -55 c-98 0 -174 71 -174 174c0 143 141 279 280 279c68 0 107 -39 124 -67c16 25 63 67 77 67c3 0 16 -3 16 -17zM490 319c0 8 -21 89 -104 89c-51 0 -106 -38 -137 -90c-33 -57 -53 -151 -53 -193c0 -84 54 -102 88 -102c40 0 93 23 137 72c17 19 18 20 22 37l44 172 c1 4 3 10 3 15'], + 0xE37C: [442,11,671,91,652,'652 360c0 -44 -34 -68 -62 -68c-33 0 -45 24 -45 41c0 0 0 43 43 58c-32 17 -80 17 -92 17c-35 0 -66 -7 -101 -35c-33 -28 -65 -80 -69 -97l-12 -44c-3 -15 -13 -53 -16 -68l-23 -89c-5 -20 -13 -52 -17 -60c-10 -17 -28 -26 -44 -26c-19 0 -37 13 -37 35 c0 5 11 49 17 74l23 89l22 90c6 26 16 64 16 78c0 21 -7 53 -41 53c-37 0 -61 -46 -77 -107c-7 -25 -8 -28 -25 -28c-6 0 -21 0 -21 15c0 5 13 57 39 99c26 39 55 55 89 55c49 0 107 -25 119 -78c68 78 136 78 160 78c49 0 154 -8 154 -82'], + 0xE37D: [442,11,670,115,558,'558 354c0 -53 -41 -62 -53 -62c-17 0 -38 11 -38 36c0 10 5 40 40 50c-26 28 -79 30 -105 30c-144 0 -144 -84 -144 -84c0 -41 49 -49 120 -60c52 -9 162 -26 162 -116c0 -41 -35 -159 -240 -159c-29 0 -185 0 -185 98c0 45 30 72 64 72c22 0 43 -13 43 -41 c0 -24 -16 -53 -52 -61c32 -31 94 -34 132 -34c184 0 184 104 184 104c0 51 -70 62 -133 72c-53 9 -83 13 -111 33c-18 14 -39 35 -39 71s32 139 201 139c75 0 154 -21 154 -88'], + 0xE37E: [626,11,564,84,473,'473 144c0 -20 -74 -155 -195 -155c-70 0 -123 40 -123 97c0 12 8 43 13 65l59 235h-111c-18 0 -32 0 -32 17c0 28 15 28 35 28h119c47 187 35 140 40 157c8 27 32 38 49 38c24 0 37 -18 37 -35c0 -6 -12 -51 -18 -77l-21 -83h110c17 0 32 0 32 -17c0 -6 -3 -19 -8 -23 s-6 -5 -27 -5h-118l-71 -282c-2 -9 -3 -12 -3 -28c0 -30 10 -53 42 -53c52 0 114 46 147 118c5 13 7 17 23 17c4 0 21 0 21 -14'], + 0xE37F: [442,11,846,91,756,'756 144c0 -6 -14 -62 -41 -101c-24 -37 -52 -54 -87 -54c-18 0 -93 5 -116 69c-38 -41 -89 -69 -145 -69c-65 0 -160 22 -160 134c0 27 0 54 54 187c13 29 17 40 17 60c0 27 -11 38 -30 38c-46 0 -93 -48 -113 -115c-5 -15 -6 -20 -23 -20c-5 0 -21 0 -21 14 c0 27 56 155 161 155c62 0 109 -39 109 -88c0 -17 -6 -30 -16 -56c-29 -69 -55 -137 -55 -189c0 -72 44 -86 82 -86c86 0 140 95 141 98c1 6 6 27 10 40l31 125l21 83c7 27 15 62 55 62c19 0 37 -13 37 -35c0 -5 0 -7 -5 -24c-39 -155 -70 -275 -70 -296 c0 -31 12 -53 40 -53c34 0 60 36 79 113c5 16 6 22 24 22c4 0 21 0 21 -14'], + 0xE380: [443,11,722,91,641,'641 357c0 -18 -11 -148 -83 -255c-36 -54 -94 -113 -175 -113c-97 0 -176 41 -176 138c0 38 15 86 54 183c13 29 17 40 17 60c0 27 -11 38 -30 38c-46 0 -93 -48 -113 -115c-5 -15 -6 -20 -23 -20c-5 0 -21 0 -21 14c0 26 55 155 161 155c62 0 109 -39 109 -88 c0 -17 -7 -33 -13 -49c-30 -74 -57 -140 -57 -190c0 -72 45 -92 97 -92c119 0 195 198 195 252c0 46 -28 68 -39 76c-6 5 -19 15 -19 34c0 27 30 58 58 58c21 0 58 -20 58 -86'], + 0xE381: [443,11,1009,91,918,'918 357c0 -48 -51 -368 -241 -368c-104 0 -146 46 -160 72c-49 -72 -105 -72 -125 -72c-81 0 -184 26 -184 141c0 24 0 50 53 180c13 29 17 40 17 60c0 27 -11 38 -30 38c-45 0 -92 -46 -113 -115c-5 -15 -6 -20 -23 -20c-5 0 -21 0 -21 14c0 27 56 155 161 155 c62 0 109 -39 109 -88c0 -17 -6 -32 -14 -52c-42 -102 -55 -143 -55 -184c0 -11 0 -48 26 -71c26 -22 64 -24 79 -24c16 0 58 0 96 66c9 17 12 22 9 38c1 27 10 65 18 97c15 56 15 58 29 115c6 22 15 59 19 66c10 17 28 26 44 26c19 0 37 -13 37 -35c0 -5 0 -7 -4 -23 l-52 -208c-7 -30 -7 -51 -7 -51c0 -79 58 -91 96 -91c128 0 178 226 178 252c0 29 -11 55 -39 76c-6 5 -19 15 -19 34c0 26 28 58 59 58c17 0 57 -17 57 -86'], + 0xE382: [442,11,792,93,682,'682 360c0 -44 -34 -68 -62 -68c-33 0 -45 24 -45 41c0 0 0 45 46 59c-23 16 -57 16 -60 16c-51 0 -84 -40 -97 -66c-8 -18 -35 -129 -52 -199c-8 -34 -8 -41 -8 -53c0 -56 41 -67 71 -67c44 0 121 30 150 120c3 9 5 15 22 15c4 0 21 0 21 -14c0 -36 -71 -155 -197 -155 c-31 0 -95 8 -135 68c-24 -36 -69 -68 -124 -68c-51 0 -119 21 -119 82c0 48 37 68 62 68c22 0 44 -13 44 -42c0 -4 0 -42 -45 -58c24 -16 53 -16 60 -16c43 0 89 34 104 91c34 133 52 202 52 227c0 53 -38 67 -71 67c-38 0 -120 -25 -150 -123c-4 -11 -12 -12 -21 -12 c-5 0 -21 0 -21 14c0 37 71 155 196 155c36 0 100 -11 133 -68c20 26 62 68 127 68c53 0 119 -23 119 -82'], + 0xE383: [442,205,731,91,666,'666 396c0 0 0 -8 -4 -23l-94 -374c-32 -128 -167 -204 -281 -204c-84 0 -135 39 -135 89c0 46 34 70 63 70c21 0 44 -12 44 -41c0 -10 -5 -49 -50 -60c23 -21 60 -24 78 -24c62 0 109 38 132 61c47 48 58 92 72 148c-25 -21 -67 -49 -124 -49c-67 0 -160 23 -160 134 c0 40 9 76 58 195c7 18 13 32 13 52c0 27 -11 38 -30 38c-45 0 -92 -46 -113 -115c-5 -15 -6 -20 -23 -20c-5 0 -21 0 -21 14c0 27 56 155 161 155c62 0 109 -39 109 -88c0 -17 -7 -33 -12 -45c-29 -72 -59 -145 -59 -200c0 -64 36 -86 82 -86c85 0 139 94 140 98 c1 6 6 27 10 40l31 125l21 83c7 27 15 62 55 62c19 0 37 -13 37 -35'], + 0xE384: [442,11,689,105,613,'613 428c0 -10 -34 -54 -84 -101c-42 -40 -85 -73 -152 -121c-56 -40 -106 -76 -148 -115c7 1 9 1 25 1c14 0 30 0 86 -9c29 -5 55 -8 76 -8c38 0 117 11 140 71c4 12 6 16 22 16c4 0 21 0 21 -14c0 -40 -77 -159 -194 -159c-29 0 -52 10 -80 31c-36 28 -50 38 -78 38 c-35 0 -71 -20 -100 -60c-6 -8 -9 -9 -21 -9c-6 0 -21 0 -21 14s47 68 87 104c46 44 89 75 161 126c75 54 106 80 135 106c-17 0 -29 0 -66 6c-52 8 -73 11 -101 11c-80 0 -90 -24 -94 -36c-5 -10 -10 -12 -21 -12c-7 0 -21 0 -21 15c0 31 59 119 150 119 c38 0 60 -17 94 -43c31 -23 46 -26 62 -26c17 0 40 4 78 57c8 11 9 12 23 12c6 0 21 0 21 -14'], + 0xE385: [442,11,534,91,443,'443 144c0 -25 -56 -155 -161 -155c-60 0 -109 36 -109 88c0 17 6 31 11 45c15 34 15 36 22 53l66 159c6 19 6 32 6 36c0 27 -11 38 -30 38c-43 0 -91 -44 -113 -115c-5 -15 -6 -20 -23 -20c-5 0 -21 0 -21 14c0 27 56 155 161 155c63 0 109 -40 109 -88 c0 -17 -6 -30 -14 -50l-57 -138l-21 -54c-8 -19 -13 -30 -13 -51c0 -22 7 -38 30 -38c50 0 95 57 112 112c6 19 7 23 24 23c4 0 21 0 21 -14'], + 0xE386: [442,205,553,37,474,'474 345c0 -14 -3 -23 -5 -33l-90 -358c-29 -116 -143 -159 -220 -159c-81 0 -122 28 -122 68c0 35 29 65 62 65s45 -24 45 -41c0 0 -1 -34 -30 -52c15 -4 24 -6 45 -6c69 0 118 65 133 125l94 375c2 8 3 12 3 26c0 20 -5 53 -42 53c-34 0 -102 -23 -148 -121 c-5 -10 -7 -14 -22 -14c-5 0 -21 0 -21 14c0 20 74 155 195 155c68 0 123 -40 123 -97'], + 0xE387: [713,0,859,57,810,'810 21c0 -13 -7 -21 -20 -21c-18 0 -39 2 -57 3l-59 1c-29 0 -100 -4 -129 -4c-13 0 -16 10 -16 14c0 22 14 22 26 22c59 0 65 16 69 26l-24 166h-286l-80 -124c-5 -9 -15 -26 -15 -38c0 -27 36 -29 44 -30c4 0 17 -1 17 -14c0 -22 -15 -22 -20 -22c-30 0 -71 4 -103 4 c-27 0 -60 -4 -86 -4c-5 0 -14 4 -14 15c0 20 13 20 23 21c59 4 91 30 126 84l367 570c9 14 15 23 34 23s21 -7 24 -28l88 -617c3 -24 5 -32 63 -32c16 0 28 0 28 -15zM595 264l-47 327l-210 -327h257'], + 0xE388: [683,0,863,72,837,'837 541c0 -86 -101 -162 -222 -184c106 -11 171 -72 171 -143c0 -99 -129 -214 -297 -214h-387c-18 0 -30 0 -30 15c0 21 13 21 30 21c77 0 79 8 88 42l133 531c4 15 4 22 4 22c0 10 -2 12 -23 14c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 13 22 32 22h364 c130 0 207 -66 207 -142zM739 542c0 38 -23 105 -125 105h-152c-42 0 -43 -3 -51 -34l-61 -244h164c134 0 225 92 225 173zM685 221c0 58 -36 120 -130 120h-212l-69 -274c-4 -15 -4 -21 -4 -21c0 -9 1 -10 32 -10h161c121 0 222 86 222 185'], + 0xE389: [703,20,819,70,843,'843 690l-62 -251c-5 -19 -5 -22 -21 -22c-5 0 -18 0 -18 13c0 6 3 13 3 41c0 112 -68 196 -184 196c-95 0 -200 -46 -269 -123c-115 -126 -122 -284 -122 -313c0 -158 118 -215 224 -215c121 0 261 84 302 221c3 11 5 16 18 16c5 0 17 0 17 -13c0 -8 -22 -95 -101 -162 c-103 -87 -199 -98 -253 -98c-179 0 -307 119 -307 282c0 226 238 441 481 441c123 0 179 -77 188 -89l73 77c9 10 11 12 18 12c10 0 13 -8 13 -13'], + 0xE38A: [683,0,934,71,893,'893 422c0 -218 -213 -422 -435 -422h-357c-18 0 -30 0 -30 14c0 22 12 22 30 22c78 0 80 8 88 42l133 531c4 15 4 22 4 22c0 10 -2 12 -22 14c-18 2 -22 2 -38 2c-22 0 -33 0 -33 14c0 22 12 22 32 22h364c163 0 264 -115 264 -261zM798 455c0 136 -94 192 -206 192 h-128c-42 0 -43 -3 -51 -34l-137 -546c-4 -15 -4 -21 -4 -21c0 -9 1 -10 32 -10h136c123 0 209 64 248 109c100 114 110 287 110 310'], + 0xE38B: [679,0,839,69,841,'841 649l-18 -174c-2 -17 -3 -26 -18 -26c-14 0 -17 9 -17 17c0 5 4 35 4 61c0 89 -33 116 -164 116h-163c-42 0 -43 -3 -51 -34l-60 -238h105c85 0 115 13 136 91c6 21 7 26 20 26c9 0 17 -4 17 -14c0 0 0 -3 -3 -15l-55 -219c-4 -17 -5 -22 -19 -22 c-16 0 -17 14 -17 14s0 3 3 12c4 17 7 34 7 45c0 33 -12 46 -91 46h-112l-67 -268c-4 -15 -4 -21 -4 -21c0 -9 1 -10 32 -10h170c163 0 214 50 279 194c12 26 13 27 15 29c4 4 11 4 11 4c13 0 17 -8 17 -14c0 0 0 -5 -6 -18l-94 -213c-8 -18 -9 -18 -34 -18h-565 c-18 0 -30 0 -30 14c0 22 12 22 30 22c78 0 79 7 89 46l131 523c1 5 4 15 4 22c0 10 -2 12 -22 14c-18 2 -22 2 -38 2c-22 0 -33 0 -33 14c0 22 12 22 32 22h550c25 0 32 0 29 -30'], + 0xE38C: [679,0,725,69,825,'825 649l-18 -174c-2 -17 -3 -26 -18 -26c-14 0 -17 9 -17 17s4 29 4 62c0 83 -25 115 -158 115h-153c-42 0 -43 -3 -51 -34l-63 -251h100c85 0 114 15 134 93c5 18 6 24 20 24c10 0 17 -5 17 -15c0 0 -3 -17 -4 -20l-54 -212c-5 -18 -6 -23 -19 -23c-10 0 -17 5 -17 15 c0 3 1 6 3 12c7 28 7 30 7 45c0 33 -13 45 -89 45h-107l-62 -249c-3 -11 -3 -14 -3 -18c0 -14 10 -15 31 -17c25 -2 52 -2 52 -2c23 0 35 0 35 -14c0 -22 -15 -22 -22 -22c-25 0 -53 3 -79 3l-77 1c-29 0 -103 -4 -132 -4c-9 0 -16 5 -16 15c0 21 13 21 30 21 c78 0 79 7 89 46l131 523c1 5 4 15 4 22c0 10 -2 12 -23 14c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 13 22 32 22h534c25 0 32 0 29 -30'], + 0xE38D: [703,20,889,70,843,'843 690l-62 -251c-5 -19 -5 -22 -21 -22c-5 0 -18 0 -18 13c0 6 3 13 3 41c0 112 -68 196 -184 196c-56 0 -163 -16 -266 -118c-74 -75 -124 -209 -124 -316c0 -169 131 -217 231 -217c78 0 171 27 200 88c4 10 15 55 22 83c7 26 7 28 7 32c0 12 -1 16 -33 19 c-19 2 -39 2 -58 2c-25 0 -36 0 -36 14c0 22 15 22 22 22c25 0 54 -2 79 -3l83 -1c35 0 77 4 110 4c8 0 15 -5 15 -15c0 -21 -15 -21 -22 -21c-59 -1 -60 -2 -72 -47l-22 -90l-19 -77c-5 -21 -7 -25 -16 -25c-12 0 -39 36 -49 58c-52 -56 -145 -79 -233 -79 c-192 0 -310 127 -310 282c0 226 238 441 481 441c123 0 179 -77 188 -89l73 77c9 10 11 12 18 12c10 0 13 -8 13 -13'], + 0xE38E: [683,0,936,69,960,'960 669c0 -22 -12 -22 -34 -22c-74 0 -76 -8 -85 -45l-132 -527c-1 -6 -4 -16 -4 -22c0 -10 0 -12 22 -15c18 -2 22 -2 38 -2c23 0 33 0 33 -15c0 -21 -16 -21 -21 -21c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-9 0 -16 5 -16 15c0 21 13 21 30 21 c78 0 80 8 88 42l65 259h-335l-66 -262c-4 -15 -4 -22 -4 -22c0 -10 0 -12 22 -15c18 -2 22 -2 38 -2c23 0 33 0 33 -15c0 -21 -16 -21 -21 -21c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-9 0 -16 5 -16 15c0 21 13 21 30 21c78 0 80 8 88 42l133 531 c4 15 4 22 4 22c0 10 -2 12 -23 14c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 15 22 21 22c19 0 43 -2 63 -3c17 -1 52 -1 69 -1c29 0 102 4 131 4c13 0 16 -10 16 -14c0 -22 -13 -22 -30 -22c-77 0 -79 -8 -88 -42l-58 -232h335l59 236c4 15 4 22 4 22c0 10 -2 12 -23 14 c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 15 22 21 22c19 0 43 -2 63 -3c17 -1 52 -1 69 -1c29 0 102 4 131 4c13 0 16 -10 16 -14'], + 0xE38F: [683,0,506,64,536,'536 668c0 -21 -12 -21 -37 -21c-75 0 -77 -9 -86 -43l-133 -529c-4 -15 -4 -22 -4 -22c0 -9 0 -13 23 -15c20 -2 43 -2 43 -2c20 0 32 0 32 -14c0 -22 -15 -22 -21 -22c-22 0 -47 3 -69 3l-69 1c-30 0 -105 -4 -135 -4c-16 0 -16 14 -16 14c0 22 10 22 37 22 c75 0 78 10 86 43l133 531c2 8 4 15 4 21c0 11 -7 12 -27 14c-17 2 -38 2 -38 2c-22 0 -33 0 -33 14c0 22 15 22 21 22c22 0 47 -3 69 -3l69 -1l68 1c21 0 46 3 67 3c9 0 16 -6 16 -15'], + 0xE390: [683,20,632,102,689,'689 668c0 -21 -14 -21 -26 -21c-56 0 -57 -6 -66 -41l-116 -463c-25 -100 -136 -163 -234 -163c-84 0 -145 45 -145 110c0 56 40 78 67 78c22 0 46 -15 46 -43c0 -18 -13 -65 -71 -65c23 -49 86 -52 100 -52c65 0 129 63 148 138l115 458c4 14 4 16 4 23 c0 12 -3 15 -32 18c-25 2 -29 2 -52 2c-30 0 -39 0 -39 15c0 21 15 21 22 21c25 0 54 -2 79 -3l77 -1c24 0 84 4 108 4c7 0 15 -4 15 -15'], + 0xE391: [683,0,960,69,979,'979 669c0 -20 -12 -21 -23 -22c-71 -6 -133 -50 -265 -143l-101 -71c-23 -16 -24 -19 -24 -19l6 -12l171 -333c17 -32 48 -33 66 -33c10 0 23 0 23 -15c0 -14 -7 -21 -20 -21c-28 0 -68 4 -98 4c-28 0 -100 -4 -128 -4c-16 0 -17 14 -17 14c0 22 14 22 26 22 c18 0 46 3 46 26c0 5 0 6 -7 19l-145 281l-166 -117c-37 -147 -47 -184 -47 -192c0 -10 0 -13 23 -15c18 -2 38 -2 38 -2c20 0 32 0 32 -14c0 -22 -15 -22 -21 -22c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-16 0 -16 14 -16 14c0 22 12 22 30 22 c78 0 80 8 88 42l133 531c4 15 4 22 4 22c0 10 -2 12 -22 14c-18 2 -22 2 -38 2c-22 0 -33 0 -33 14c0 22 15 22 21 22c19 0 43 -2 63 -3c17 -1 52 -1 69 -1c29 0 102 4 131 4c10 0 16 -6 16 -15c0 -21 -14 -21 -30 -21c-78 0 -79 -8 -88 -42l-79 -315l417 294 c13 9 44 31 44 49c0 11 -13 13 -25 14c-15 1 -15 14 -15 14c0 22 15 22 21 22c27 0 94 -4 121 -4c22 0 48 3 69 3c6 0 13 -5 13 -13'], + 0xE392: [683,0,784,69,721,'721 249c0 -8 -75 -202 -85 -229c-8 -19 -9 -20 -34 -20h-503c-18 0 -30 0 -30 15c0 21 13 21 30 21c77 0 79 8 88 42l133 531c4 15 4 22 4 22c0 10 -2 12 -23 14c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 15 22 21 22c20 0 44 -3 65 -3l69 -1l80 1c24 1 51 3 74 3 c16 0 17 -14 17 -14c0 -22 -10 -22 -41 -22c-92 0 -95 -10 -104 -46l-134 -534c-4 -15 -4 -21 -4 -21c0 -9 1 -10 32 -10h113c183 0 227 111 265 206c6 16 8 21 20 21c15 0 17 -11 17 -14'], + 0xE393: [683,0,1089,74,1140,'1140 668c0 -21 -13 -21 -34 -21c-74 0 -76 -8 -85 -45l-132 -527c-1 -6 -4 -16 -4 -22c0 -10 0 -13 23 -15c18 -2 38 -2 38 -2c20 0 32 0 32 -14c0 -22 -15 -22 -21 -22c-28 0 -99 4 -127 4l-63 -1c-20 0 -43 -3 -62 -3c-16 0 -16 14 -16 14c0 22 12 22 30 22 c78 0 80 8 88 42l141 566l-1 1l-420 -623c-7 -11 -15 -22 -29 -22c-15 0 -17 9 -20 27l-107 608h-1l-133 -532c-4 -16 -4 -21 -4 -25c0 -14 0 -40 64 -42c9 0 22 -1 22 -14c0 -22 -15 -22 -20 -22c-24 0 -82 4 -106 4c-32 0 -74 -4 -104 -4c-14 0 -15 14 -15 14 c0 21 13 22 21 22c80 3 95 37 104 71l126 502c4 15 4 22 4 22c0 10 -2 12 -22 14c-18 2 -22 2 -38 2c-22 0 -34 0 -34 14c0 22 13 22 33 22h143c30 0 30 -1 35 -27l99 -563l386 570c13 19 14 20 43 20h136c18 0 30 0 30 -15'], + 0xE394: [683,0,905,69,960,'960 669c0 -21 -15 -22 -20 -22c-80 -2 -96 -35 -106 -73l-139 -553c-5 -18 -5 -21 -21 -21c-10 0 -14 1 -22 17l-292 598l-128 -512c-4 -16 -4 -21 -4 -25c0 -14 0 -40 63 -42c11 0 23 -1 23 -15c0 -16 -10 -21 -20 -21c-24 0 -82 4 -106 4c-34 0 -71 -4 -104 -4 c-7 0 -15 4 -15 15c0 20 14 21 21 21c78 3 95 33 104 71l134 535c-21 4 -43 5 -64 5s-33 0 -33 14c0 22 13 22 32 22h137c24 0 26 0 34 -17l254 -520l109 436c3 11 4 16 4 24c0 25 -17 40 -64 41c-9 0 -22 1 -22 14c0 22 15 22 20 22c24 0 82 -4 106 -4c34 0 71 4 104 4 c10 0 15 -8 15 -14'], + 0xE395: [703,20,869,69,829,'829 425c0 -227 -231 -445 -469 -445c-172 0 -291 113 -291 274c0 225 231 449 470 449c177 0 290 -121 290 -278zM731 460c0 145 -96 211 -200 211c-89 0 -186 -49 -253 -131c-92 -114 -106 -256 -106 -307c0 -148 90 -220 196 -220c78 0 169 41 239 121 c93 107 124 253 124 326'], + 0xE396: [683,0,727,71,834,'834 527c0 -109 -143 -217 -312 -217h-181l-59 -235c-4 -15 -4 -22 -4 -22c0 -10 0 -13 23 -15c18 -2 38 -2 38 -2c20 0 32 0 32 -14c0 -22 -15 -22 -21 -22c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-16 0 -16 14 -16 14c0 22 12 22 30 22 c78 0 79 7 89 46l132 527c4 15 4 22 4 22c0 10 -2 12 -22 14c-18 2 -22 2 -38 2c-22 0 -33 0 -33 14c0 22 12 22 32 22h350c137 0 219 -72 219 -156zM732 548c0 71 -58 99 -151 99h-117c-42 0 -43 -3 -51 -34l-68 -271h160c72 0 129 19 165 51c50 45 62 124 62 155'], + 0xE397: [703,194,900,69,829,'829 425c0 -177 -143 -354 -321 -417c18 -80 39 -97 79 -97c34 0 100 20 124 90c1 4 4 13 14 13c8 0 14 -7 14 -14c0 -22 -58 -194 -179 -194c-82 0 -95 69 -95 134v54c-52 -13 -86 -14 -105 -14c-172 0 -291 113 -291 274c0 225 231 449 470 449 c177 0 290 -121 290 -278zM732 452c0 146 -92 219 -201 219c-93 0 -190 -55 -253 -132c-91 -113 -112 -246 -112 -310c0 -134 74 -186 126 -204c-3 7 -4 8 -4 26c0 53 55 100 111 100c59 0 85 -42 101 -105c183 91 232 306 232 406zM465 30c-3 77 -30 93 -66 93 c-42 0 -83 -34 -83 -72c0 -39 35 -39 51 -39c39 0 76 10 98 18'], + 0xE398: [683,20,861,71,849,'716 544c0 103 -115 103 -208 103h-64c-22 -3 -24 -6 -31 -34l-64 -257h129c69 0 131 16 172 48c47 36 66 99 66 140zM849 96c0 -18 -40 -116 -132 -116c-74 0 -147 31 -147 110c0 17 4 32 16 78c5 23 14 57 14 70c0 47 -37 90 -123 90h-136l-63 -253 c-4 -15 -4 -22 -4 -22c0 -10 0 -12 22 -15c18 -2 22 -2 38 -2c23 0 33 0 33 -15c0 -21 -16 -21 -21 -21c-21 0 -46 3 -67 3l-64 1l-66 -1c-20 0 -43 -3 -62 -3c-9 0 -16 5 -16 15c0 21 13 21 30 21c78 0 80 8 88 42l133 531c4 15 4 22 4 22c0 10 -2 12 -23 14 c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 13 22 32 22h307c145 0 247 -68 247 -154c0 -89 -106 -161 -225 -189c22 -8 49 -21 68 -42c28 -30 28 -62 28 -74c0 -10 0 -20 -4 -47s-10 -79 -10 -104c0 -54 19 -65 45 -65c42 0 79 41 93 85c3 10 5 17 18 17 c15 0 17 -11 17 -14'], + 0xE399: [703,20,702,75,710,'710 690l-52 -212c-4 -17 -5 -22 -20 -22c-5 0 -17 0 -17 14c0 9 4 32 4 45c0 95 -52 156 -160 156c-104 0 -193 -80 -193 -159c0 -57 42 -82 67 -91c9 -3 42 -11 63 -16c129 -30 144 -34 179 -70c22 -23 40 -63 40 -107c0 -118 -122 -248 -273 -248 c-60 0 -138 12 -191 70c-11 -12 -37 -44 -48 -56c-13 -13 -14 -14 -20 -14c-10 0 -14 6 -14 12c0 5 2 11 3 15l51 200c4 18 5 20 19 20c4 0 16 0 16 -13c0 0 0 -2 -1 -6c-4 -18 -6 -40 -6 -50c0 -111 106 -142 194 -142c114 0 199 95 199 176c0 75 -61 97 -93 105l-85 20 c-68 16 -105 25 -139 65c-30 37 -33 77 -33 92c0 115 125 229 266 229c61 0 124 -18 162 -71l49 57c13 13 14 14 20 14c10 0 13 -8 13 -13'], + 0xE39A: [676,0,675,43,790,'790 662l-27 -191c-2 -16 -4 -25 -19 -25c-10 0 -17 5 -17 15l2 11c7 52 7 65 7 81c0 36 -2 65 -47 79c-25 8 -51 8 -112 8c-20 0 -55 0 -60 -1c-22 -2 -24 -5 -31 -34l-132 -525c-4 -14 -4 -16 -4 -23c0 -12 2 -16 36 -19c19 -1 39 -2 58 -2c31 0 41 0 41 -14 c0 -22 -15 -22 -23 -22c-27 0 -57 2 -84 3l-90 1l-86 -1c-28 0 -58 -3 -86 -3c-15 0 -17 11 -17 14c0 22 9 22 45 22c105 0 108 10 117 47l132 526c4 15 4 21 4 21c0 9 -1 10 -31 10h-42c-152 0 -185 -10 -243 -170c-6 -19 -8 -24 -21 -24c-15 0 -17 10 -17 14 c0 5 4 14 5 18l63 177c7 21 9 21 34 21h615c18 0 30 0 30 -14'], + 0xE39B: [683,20,778,92,833,'833 669c0 -21 -15 -22 -20 -22c-80 -2 -96 -34 -106 -73l-88 -351c-33 -131 -167 -243 -305 -243c-120 0 -222 74 -222 198c0 20 0 28 10 69l57 229l22 88c6 22 16 61 16 67c0 10 -2 12 -23 14c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 15 22 21 22c19 0 43 -2 63 -3 c17 -1 52 -1 69 -1c29 0 102 4 131 4c13 0 16 -10 16 -14c0 -22 -13 -22 -30 -22c-77 0 -79 -8 -88 -42l-97 -385c-6 -23 -9 -47 -9 -71c0 -99 71 -133 138 -133c82 0 199 51 255 179c13 31 86 332 101 397c1 4 2 9 2 14c0 25 -17 40 -64 41c-9 0 -22 1 -22 14 c0 22 15 22 20 22c30 0 72 -4 105 -4s71 4 103 4c10 0 15 -8 15 -14'], + 0xE39C: [683,20,675,79,861,'861 669c0 -20 -11 -21 -23 -22c-54 -4 -86 -29 -123 -83l-382 -562c-10 -15 -15 -22 -34 -22s-20 6 -24 27l-109 608c-5 26 -6 32 -62 32c-11 0 -25 0 -25 14c0 19 11 22 20 22c25 0 86 -4 111 -4c29 0 100 4 129 4c16 0 17 -14 17 -14c0 -22 -13 -22 -30 -22 c-7 0 -63 0 -63 -27c0 -4 0 -6 2 -15l91 -511l328 484c11 16 18 26 18 40c0 15 -9 27 -41 29c-4 0 -18 1 -18 14c0 19 11 22 20 22c30 0 72 -4 104 -4c25 0 56 4 80 4c12 0 14 -11 14 -14'], + 0xE39D: [683,20,1074,78,1171,'1171 669c0 -20 -12 -21 -23 -22c-49 -4 -73 -29 -94 -56l-18 -26l-343 -564c-7 -12 -13 -21 -30 -21c-15 0 -20 5 -22 26l-55 508l-312 -514c-6 -11 -13 -20 -30 -20c-18 0 -19 7 -21 27l-67 609c-3 25 -3 31 -50 31c-16 0 -28 0 -28 15c0 17 10 21 20 21 c30 0 72 -4 105 -4c29 0 100 4 129 4c13 0 16 -10 16 -14c0 -22 -14 -22 -27 -22c-8 0 -70 0 -70 -29c0 0 2 -11 2 -15l53 -490l275 452c-4 31 -6 59 -7 65c-3 10 -8 17 -51 17c-13 0 -26 0 -26 14c0 22 15 22 20 22c23 0 82 -4 105 -4c20 0 46 0 66 1c19 1 43 3 62 3 c16 0 17 -14 17 -14c0 -22 -14 -22 -27 -22c-12 0 -70 -1 -70 -29l55 -505l282 463c4 7 15 25 15 36c0 28 -33 34 -55 35c-4 0 -18 1 -18 14c0 22 16 22 21 22c33 0 76 -4 111 -4c24 0 53 4 76 4c8 0 14 -7 14 -14'], + 0xE39E: [683,0,937,50,933,'933 668c0 -20 -12 -20 -25 -21c-90 -5 -129 -44 -257 -170l-95 -95l161 -318c9 -17 14 -28 72 -28c16 0 29 0 29 -14c0 -22 -16 -22 -21 -22c-16 0 -37 2 -54 3c-18 1 -42 1 -59 1l-65 -1c-21 0 -46 -3 -67 -3c-16 0 -17 14 -17 14c0 21 13 21 22 22c35 3 53 19 53 25 c0 0 -1 3 -6 13l-121 237l-203 -199c-22 -22 -35 -35 -35 -51c0 -21 21 -24 31 -25c6 0 18 -1 18 -15c0 -21 -16 -21 -21 -21c-17 0 -39 2 -57 3c-17 1 -42 1 -59 1c-30 0 -64 -4 -93 -4c-11 0 -14 10 -14 14c0 21 11 21 25 22c90 4 131 46 253 167l84 82l56 56l-140 276 c-10 20 -15 30 -73 30c-16 0 -29 0 -29 14c0 22 16 22 21 22c16 0 37 -2 54 -3c18 -1 42 -1 59 -1l65 1c21 0 46 3 67 3c16 0 17 -14 17 -14c0 -21 -14 -22 -21 -22c-34 -2 -53 -18 -53 -25c0 -4 3 -11 5 -14l101 -196l172 169c10 10 25 26 25 41c0 22 -25 24 -34 25 c-15 1 -15 14 -15 14c0 19 12 22 20 22c26 0 90 -4 116 -4c30 0 65 4 94 4c3 0 14 -3 14 -15'], + 0xE39F: [683,0,672,58,853,'853 669c0 -21 -12 -21 -23 -22c-13 -1 -50 -3 -91 -31c-22 -15 -42 -33 -61 -53l-266 -280c-10 -10 -10 -12 -14 -27c-2 -4 -23 -91 -31 -123c-7 -27 -19 -75 -19 -81c0 -10 3 -12 22 -14c18 -2 22 -2 38 -2c22 0 34 0 34 -14c0 -22 -16 -22 -22 -22c-21 0 -46 3 -67 3 l-64 1l-66 -1c-20 0 -43 -3 -62 -3c-9 0 -16 5 -16 15c0 21 13 21 30 21c78 1 79 4 92 55l45 183l-155 342c-10 22 -14 31 -72 31c-14 0 -27 0 -27 14c0 19 12 22 20 22c25 0 89 -4 114 -4c30 0 104 4 134 4c16 0 16 -14 16 -14c0 -22 -13 -22 -26 -22c-6 0 -54 0 -54 -18 c0 0 0 -3 7 -17l132 -293l250 261c6 6 11 13 17 22c7 9 13 17 13 26c0 6 0 17 -29 19c-5 0 -18 1 -18 14c0 22 15 22 20 22c30 0 72 -4 104 -4c26 0 56 4 81 4c8 0 14 -7 14 -14'], + 0xE3A0: [683,0,778,80,797,'797 672c0 -13 -6 -20 -14 -28l-583 -604h191c174 0 225 70 271 207c7 22 9 26 22 26c16 0 16 -14 16 -14s0 -3 -4 -16l-72 -223c-6 -19 -7 -20 -33 -20h-484c-18 0 -27 0 -27 11c0 16 10 26 17 33l583 603h-180c-129 0 -207 -37 -255 -178c-3 -10 -5 -16 -18 -16 s-17 9 -17 14c0 3 0 4 4 16l56 180c6 19 7 20 33 20h467c19 0 27 0 27 -11'], + 0xE3A1: [441,10,620,61,571,'571 143c0 -4 -13 -61 -35 -100c-18 -31 -43 -53 -79 -53c-26 0 -84 10 -103 70c-40 -39 -88 -70 -142 -70c-86 0 -151 69 -151 166c0 144 130 285 258 285c48 0 82 -26 103 -59c6 28 29 40 46 40c16 0 34 -10 34 -32c0 -5 -12 -52 -18 -78c-9 -33 -10 -39 -20 -76 l-22 -90c-7 -26 -15 -62 -15 -79c0 -27 7 -49 33 -49c42 0 61 59 73 107c7 27 8 31 22 31c3 0 16 0 16 -13zM408 326c0 11 -19 87 -89 87c-28 0 -79 -15 -125 -95c-23 -40 -52 -150 -52 -203c0 -71 36 -97 73 -97c43 0 83 32 92 40c22 19 44 39 51 67l47 187c1 3 3 10 3 14'], + 0xE3A2: [694,10,502,66,471,'471 274c0 -148 -133 -284 -258 -284c-83 0 -147 64 -147 165c0 12 0 25 5 49l66 266l23 92c6 23 16 63 16 70c0 8 0 15 -48 15c-12 0 -26 0 -26 14c0 21 14 22 22 23c25 2 108 10 128 10c12 0 16 -9 16 -14c0 0 -3 -14 -4 -16l-69 -278c30 26 74 55 126 55 c69 0 150 -50 150 -167zM391 316c0 68 -34 97 -73 97c-36 0 -81 -22 -119 -66c-19 -22 -19 -24 -25 -43c-28 -113 -37 -147 -37 -184c0 -59 28 -102 77 -102c51 0 101 48 125 97c30 58 52 160 52 201'], + 0xE3A3: [441,10,511,62,495,'495 103c0 -14 -79 -113 -248 -113c-125 0 -185 88 -185 174c0 139 139 277 289 277c54 0 132 -19 132 -87c0 -48 -35 -64 -57 -64c-18 0 -39 10 -39 37c0 22 15 50 51 56c-25 28 -73 30 -87 30c-50 0 -102 -28 -140 -77c-52 -69 -66 -178 -66 -207 c0 -62 32 -111 104 -111c18 0 135 0 213 92c8 8 10 10 16 10c8 0 17 -11 17 -17'], + 0xE3A4: [694,10,595,61,575,'575 680c0 0 -3 -14 -4 -16l-139 -556c-3 -13 -5 -22 -5 -41c0 -27 7 -49 33 -49c42 0 61 59 73 107c7 27 8 31 22 31c3 0 16 0 16 -13c0 -4 -13 -61 -35 -100c-18 -31 -43 -53 -79 -53c-26 0 -84 10 -103 70c-40 -39 -88 -70 -142 -70c-86 0 -151 69 -151 166 c0 144 130 285 258 285c48 0 82 -26 103 -59l57 228c2 9 4 15 4 22c0 8 0 15 -48 15c-12 0 -26 0 -26 14c0 21 14 22 22 23c25 2 108 10 128 10c12 0 16 -9 16 -14zM408 326c0 11 -19 87 -89 87c-28 0 -79 -15 -125 -95c-23 -40 -52 -150 -52 -203c0 -71 36 -97 73 -97 c43 0 83 32 92 40c22 19 44 39 51 67l47 187c1 3 3 10 3 14'], + 0xE3A5: [441,10,542,67,495,'495 103c0 -14 -79 -113 -248 -113c-117 0 -180 87 -180 188c0 171 162 263 282 263c69 0 124 -33 124 -88c0 -30 -14 -78 -88 -104c-54 -19 -133 -21 -161 -21h-63c-12 -55 -12 -75 -12 -89c0 -81 40 -121 100 -121c18 0 135 0 213 92c8 8 10 10 16 10 c8 0 17 -11 17 -17zM430 353c0 38 -37 60 -81 60c-28 0 -139 -12 -180 -157h49c43 0 212 0 212 97'], + 0xE3A6: [704,204,557,73,604,'604 633c0 -38 -30 -61 -57 -61c-23 0 -40 15 -40 37c0 6 3 42 44 55c-19 12 -47 12 -47 12c-24 0 -46 -21 -51 -43c-8 -29 -16 -75 -39 -202h93c18 0 31 0 31 -14c0 -22 -13 -22 -33 -22h-98l-56 -309c-2 -12 -25 -135 -61 -202c-12 -22 -56 -88 -120 -88 c-50 0 -97 26 -97 71c0 38 30 61 57 61c23 0 40 -15 40 -37c0 -6 -3 -42 -44 -55c19 -12 44 -12 44 -12c48 0 65 76 70 98l88 473h-74c-18 0 -31 0 -31 14c0 22 13 22 33 22h79c21 116 29 161 49 198c27 50 76 75 120 75c51 0 100 -25 100 -71'], + 0xE3A7: [441,204,557,43,536,'536 390c0 0 0 -6 -4 -21l-109 -436c-14 -57 -81 -137 -238 -137c-56 0 -142 1 -142 61c0 38 29 61 57 61c20 0 39 -13 39 -37c0 -14 -7 -38 -32 -50c18 -4 31 -7 77 -7c25 0 68 0 112 37c38 34 45 61 56 103c16 64 6 27 22 90c-35 -31 -79 -54 -125 -54 c-82 0 -152 61 -152 164c0 143 131 277 256 277c52 0 86 -30 103 -57c4 19 23 38 46 38c16 0 34 -10 34 -32zM442 328c0 10 -19 85 -89 85c-34 0 -81 -20 -123 -90c-26 -44 -53 -156 -53 -200c0 -52 24 -95 75 -95c38 0 86 26 121 68c17 20 17 22 21 37l45 180 c3 11 3 15 3 15'], + 0xE3A8: [694,10,669,75,620,'620 143c0 -15 -44 -153 -144 -153c-51 0 -95 33 -95 86c0 17 4 26 15 54c16 42 59 153 59 213c0 24 -3 70 -59 70c-78 0 -128 -57 -160 -106c-20 -32 -20 -33 -30 -71c-3 -15 -13 -53 -16 -68l-23 -89c-5 -21 -14 -57 -17 -63c-11 -21 -30 -26 -41 -26 c-22 0 -34 17 -34 32c0 0 0 4 5 22l141 566c2 9 4 15 4 22c0 8 0 15 -48 15c-12 0 -26 0 -26 14c0 21 14 22 22 23c25 2 108 10 128 10c12 0 16 -9 16 -14c0 0 -3 -14 -4 -16l-76 -306c37 43 90 83 163 83c47 0 76 -14 93 -27c37 -29 37 -71 37 -87c0 -56 -41 -162 -53 -193 c-18 -45 -23 -58 -23 -81c0 -21 4 -35 25 -35c39 0 83 41 106 121c4 11 5 17 19 17c3 0 16 0 16 -13'], + 0xE3A9: [663,10,404,47,350,'324 625c0 -27 -27 -55 -56 -55c-27 0 -40 21 -40 38c0 29 29 55 56 55c28 0 40 -22 40 -38zM350 143c0 -15 -44 -153 -144 -153c-55 0 -95 38 -95 85c0 17 5 29 9 42l63 161c25 62 31 77 31 100c0 27 -9 35 -25 35c-37 0 -81 -36 -107 -122c-3 -11 -4 -16 -18 -16 c-3 0 -17 0 -17 13c0 17 46 153 145 153c55 0 95 -38 95 -85c0 -10 -3 -22 -6 -32l-49 -127l-32 -80c-9 -22 -16 -41 -16 -64c0 -22 5 -35 25 -35c39 0 83 41 106 121c4 11 5 17 19 17c3 0 16 0 16 -13'], + 0xE3AA: [663,204,473,0,439,'439 625c0 -29 -29 -55 -56 -55c-28 0 -40 22 -40 38c0 27 27 55 56 55c27 0 40 -21 40 -38zM402 347c0 -15 -2 -24 -5 -35l-90 -358c-31 -122 -148 -158 -208 -158s-99 25 -99 63c0 32 26 59 57 59c20 0 39 -13 39 -37c0 -15 -8 -39 -34 -51c11 -4 23 -6 36 -6 c59 0 112 58 129 127l96 383c1 5 3 19 3 30c0 32 -9 49 -34 49c-58 0 -110 -62 -135 -120c-7 -15 -8 -18 -20 -18c-3 0 -17 0 -17 13c0 14 64 153 175 153c60 0 107 -39 107 -94'], + 0xE3AB: [694,10,607,75,567,'567 371c0 -42 -30 -64 -57 -64c-23 0 -40 15 -40 37c0 15 9 49 52 56c-8 10 -21 13 -33 13c-56 0 -106 -47 -157 -95c-17 -15 -54 -48 -83 -66c42 -3 162 -17 162 -106c0 -11 -4 -28 -5 -31c-6 -26 -6 -28 -6 -45c0 -27 8 -52 35 -52c49 0 76 71 88 114c5 19 6 24 20 24 c3 0 16 0 16 -13c0 0 -30 -153 -127 -153c-48 0 -106 32 -106 103c0 11 0 16 4 31c2 10 2 15 2 20c0 52 -57 75 -128 82c-4 -14 -47 -190 -49 -194c-6 -22 -19 -42 -46 -42c-22 0 -34 17 -34 32c0 0 0 4 5 22l141 566c2 9 4 15 4 22c0 8 0 15 -48 15c-12 0 -26 0 -26 14 c0 21 14 22 22 23c25 2 108 10 128 10c12 0 16 -9 16 -14c0 0 -3 -14 -4 -16l-99 -399c41 17 74 48 116 88c51 47 103 88 160 88c53 0 77 -37 77 -70'], + 0xE3AC: [694,10,361,62,286,'286 680c0 0 -3 -14 -4 -16l-139 -556c-3 -11 -6 -30 -6 -41c0 -24 7 -49 34 -49c43 0 62 64 75 114c4 18 6 24 20 24c3 0 16 0 16 -13c0 -4 -14 -63 -35 -100c-26 -45 -56 -53 -80 -53c-48 0 -105 31 -105 95c0 10 1 21 4 31l124 494c2 9 4 15 4 22c0 8 0 15 -48 15 c-11 0 -25 0 -25 14c0 21 14 22 21 23c25 2 108 10 128 10c12 0 16 -9 16 -14'], + 0xE3AD: [441,10,1014,47,965,'965 143c0 -15 -44 -153 -144 -153c-51 0 -95 33 -95 86c0 17 4 26 15 54c16 42 59 153 59 213c0 24 -3 70 -59 70c-78 0 -128 -57 -160 -106c-20 -31 -20 -33 -31 -76c-5 -23 -11 -45 -17 -67l-22 -90c-5 -21 -13 -53 -18 -62s-21 -22 -39 -22c-16 0 -34 10 -34 32 c0 5 9 39 14 59l42 168c14 56 17 69 17 94c0 19 -1 70 -59 70c-75 0 -122 -52 -150 -92c-29 -41 -31 -49 -42 -90c-5 -23 -11 -45 -17 -67l-22 -90c-5 -21 -13 -53 -18 -62s-21 -22 -39 -22c-16 0 -34 10 -34 32c0 3 6 28 10 41l32 128l22 90c7 27 16 64 16 83 c0 27 -7 49 -33 49c-39 0 -58 -49 -73 -108c-7 -27 -8 -30 -22 -30c-3 0 -17 0 -17 13c0 5 14 62 36 99c13 23 36 54 79 54c41 0 100 -22 107 -91c30 40 86 91 169 91c51 0 122 -16 130 -101c32 42 87 101 177 101c47 0 76 -14 93 -27c37 -29 37 -71 37 -87 c0 -56 -41 -162 -53 -193c-18 -45 -23 -58 -23 -81c0 -21 4 -35 25 -35c40 0 83 41 106 121c4 11 5 17 19 17c3 0 16 0 16 -13'], + 0xE3AE: [441,10,706,47,658,'658 143c0 -15 -44 -153 -144 -153c-51 0 -95 33 -95 86c0 17 4 26 15 54c16 42 59 153 59 213c0 19 -1 70 -59 70c-75 0 -122 -52 -150 -92c-29 -41 -31 -49 -42 -90c-5 -23 -11 -45 -17 -67l-22 -90c-5 -21 -13 -53 -18 -62s-21 -22 -39 -22c-16 0 -34 10 -34 32 c0 3 6 28 10 41l32 128l22 90c7 27 16 64 16 83c0 27 -7 49 -33 49c-39 0 -58 -49 -73 -108c-7 -27 -8 -30 -22 -30c-3 0 -17 0 -17 13c0 5 14 62 36 99c13 23 36 54 79 54c41 0 100 -22 107 -91c30 40 86 91 169 91c53 0 130 -17 130 -114c0 -56 -41 -162 -53 -193 c-18 -45 -23 -58 -23 -81c0 -21 4 -35 25 -35c40 0 83 41 106 121c4 11 5 17 19 17c3 0 16 0 16 -13'], + 0xE3AF: [441,10,564,62,531,'531 266c0 -144 -144 -276 -287 -276c-109 0 -182 75 -182 175c0 137 140 276 288 276c98 0 181 -64 181 -175zM449 302c0 74 -46 111 -100 111c-45 0 -103 -26 -146 -88c-39 -57 -58 -155 -58 -196c0 -79 50 -111 100 -111s110 32 148 91c44 70 56 169 56 193'], + 0xE3B0: [441,194,589,-1,557,'557 274c0 -149 -135 -284 -257 -284c-60 0 -91 39 -103 59l-37 -149c-4 -15 -11 -41 -11 -46c0 -12 27 -12 49 -12c12 0 26 0 26 -14c0 -19 -11 -22 -20 -22c-33 0 -71 4 -105 4c-27 0 -60 -4 -86 -4c-5 0 -14 4 -14 15c0 21 14 21 27 21c40 0 42 8 49 36l114 456 c1 6 3 19 3 30c0 27 -7 49 -33 49c-39 0 -58 -50 -73 -108c-7 -27 -8 -30 -22 -30c-3 0 -17 0 -17 13c0 6 16 66 36 100c16 27 40 53 79 53c30 0 86 -13 103 -70c27 28 80 70 142 70c69 0 150 -50 150 -167zM477 316c0 68 -34 97 -73 97c-32 0 -82 -15 -140 -92l-50 -201 c-1 -4 -3 -11 -3 -15c0 -10 18 -87 89 -87c51 0 100 48 125 97c30 58 52 160 52 201'], + 0xE3B1: [441,194,524,61,511,'511 427c0 -5 -1 -11 -2 -15l-134 -536c-5 -17 -5 -19 -5 -22c0 -12 27 -12 49 -12c12 0 26 0 26 -14c0 -19 -11 -22 -20 -22c-31 0 -73 4 -107 4s-71 -4 -104 -4c-10 0 -15 8 -15 14c0 22 14 22 26 22c62 1 63 2 77 57l36 146c-22 -19 -69 -55 -126 -55 c-86 0 -151 69 -151 166c0 144 130 285 258 285c64 0 97 -46 107 -66c20 32 62 66 72 66c9 0 13 -8 13 -14zM408 326c0 10 -19 87 -89 87c-28 0 -79 -15 -125 -95c-23 -40 -52 -150 -52 -203c0 -71 36 -97 73 -97c39 0 86 27 125 73c13 16 13 18 18 35l47 185c1 4 3 10 3 15 '], + 0xE3B2: [441,10,530,47,512,'512 368c0 -42 -33 -61 -56 -61s-40 15 -40 37c0 18 12 46 44 55c-20 13 -45 14 -55 14c-43 0 -70 -20 -81 -28c-32 -24 -61 -74 -63 -82c-2 -5 -25 -95 -26 -101l-27 -108c-6 -25 -17 -69 -19 -75c-8 -20 -28 -29 -43 -29c-16 0 -34 10 -34 32c0 3 6 28 10 41l32 128 l22 90c7 27 16 64 16 83c0 27 -7 49 -33 49c-39 0 -58 -47 -73 -108c-7 -27 -8 -30 -22 -30c-3 0 -17 0 -17 13c0 5 14 63 37 102c16 28 41 51 78 51c24 0 85 -10 103 -71c44 50 89 71 141 71c51 0 106 -21 106 -73'], + 0xE3B3: [441,10,539,71,470,'470 354c0 -51 -38 -57 -48 -57c-13 0 -33 9 -33 32c0 20 16 41 42 47c-22 34 -74 37 -95 37c-17 0 -52 -2 -79 -19c-22 -14 -40 -41 -40 -64c0 -22 18 -43 55 -50c6 -2 31 -6 40 -8c37 -7 138 -25 138 -117c0 -39 -34 -165 -218 -165c-97 0 -161 37 -161 97 c0 44 29 67 58 67c21 0 39 -12 39 -37c0 -28 -22 -53 -55 -57c23 -33 80 -42 120 -42c12 0 61 0 100 22c42 25 53 63 53 80c0 50 -64 62 -85 66c-69 12 -87 16 -113 36c-14 12 -35 36 -35 73c0 31 28 146 184 146c61 0 133 -22 133 -87'], + 0xE3B4: [625,10,432,42,380,'380 417c0 -22 -13 -22 -32 -22h-102l-72 -287c-2 -10 -6 -31 -6 -41c0 -36 14 -49 35 -49c55 0 106 56 134 119c8 17 9 19 21 19c3 0 16 0 16 -13s-63 -153 -174 -153c-57 0 -107 36 -107 95c0 13 9 49 15 74l59 236h-95c-18 0 -30 0 -30 14c0 22 13 22 32 22h102 c44 174 31 126 38 151c7 26 22 43 47 43c20 0 34 -14 34 -32c0 -4 -2 -9 -3 -14l-37 -148h95c17 0 30 0 30 -14'], + 0xE3B5: [441,10,675,47,628,'628 143c0 -3 -14 -61 -36 -100c-19 -33 -45 -53 -79 -53c-12 0 -79 2 -101 66c-33 -32 -67 -66 -130 -66c-35 0 -74 8 -103 32c-37 32 -37 78 -37 95c0 27 0 56 54 194c10 23 18 44 18 67c0 24 -8 35 -25 35c-39 0 -83 -40 -107 -122c-3 -11 -4 -16 -18 -16 c-3 0 -17 0 -17 13c0 16 45 153 145 153c51 0 95 -34 95 -86c0 -16 -6 -31 -14 -51c-28 -73 -56 -144 -56 -203c0 -18 0 -83 69 -83c62 0 102 54 121 85c2 1 11 39 16 59l52 208c8 32 15 61 52 61c17 0 33 -12 33 -32c0 -5 -11 -49 -17 -74l-23 -89l-22 -90 c-7 -26 -15 -62 -15 -79c0 -26 7 -49 33 -49c42 0 61 60 73 107c7 27 8 31 22 31c3 0 17 0 17 -13'], + 0xE3B6: [442,10,571,47,534,'534 363c0 -82 -70 -373 -238 -373c-76 0 -154 32 -154 131c0 36 11 79 54 190c10 23 18 44 18 67c0 24 -8 35 -25 35c-40 0 -83 -40 -107 -122c-3 -11 -4 -16 -18 -16c-3 0 -17 0 -17 13c0 16 45 153 145 153c51 0 95 -34 95 -86c0 -17 -6 -32 -14 -53 c-37 -93 -55 -149 -55 -195c0 -17 0 -89 81 -89c119 0 185 215 185 260c0 40 -20 66 -37 80c-7 6 -17 14 -17 31c0 26 28 53 54 53c3 0 50 -1 50 -79'], + 0xE3B7: [442,10,826,47,780,'780 363c0 -46 -27 -171 -70 -255c-20 -41 -64 -118 -153 -118c-61 0 -116 22 -139 67c-45 -67 -94 -67 -113 -67c-54 0 -161 15 -161 133c0 31 0 51 57 197c5 13 14 35 14 58c0 24 -8 35 -25 35c-40 0 -83 -39 -108 -122c-3 -11 -4 -16 -18 -16c-3 0 -17 0 -17 13 c0 17 45 153 146 153c54 0 95 -37 95 -85c0 -17 -4 -26 -21 -70c-20 -51 -48 -125 -48 -176c0 -78 51 -92 90 -92c34 0 54 17 67 33c24 30 32 49 28 69c1 29 3 37 16 92c15 56 15 58 29 115c7 25 17 67 20 75c6 17 24 29 43 29c17 0 33 -12 33 -32c0 -5 -12 -53 -19 -80 l-28 -112c-14 -57 -18 -73 -18 -100c0 -17 0 -89 81 -89c127 0 169 247 169 260c0 32 -13 60 -37 80c-7 6 -17 14 -17 31c0 26 28 53 54 53c7 0 50 -4 50 -79'], + 0xE3B8: [441,10,648,48,583,'583 368c0 -42 -33 -61 -56 -61s-40 15 -40 37c0 18 12 46 44 55c-21 14 -54 14 -54 14c-33 0 -78 -25 -98 -102c-28 -111 -52 -202 -52 -228c0 -38 21 -65 61 -65c56 0 116 52 137 121c4 12 5 17 19 17c3 0 16 0 16 -13c0 -28 -61 -153 -176 -153c-40 0 -95 18 -119 71 c-25 -42 -66 -71 -112 -71c-49 0 -105 23 -105 73c0 37 29 61 57 61c23 0 40 -15 40 -37c0 -6 -3 -42 -44 -55c21 -14 51 -14 54 -14c51 0 84 54 94 88l34 137c9 34 21 84 21 104c0 48 -27 66 -60 66c-49 0 -112 -43 -137 -121c-5 -13 -6 -17 -19 -17c-3 0 -17 0 -17 13 c0 30 64 153 176 153c56 0 102 -30 120 -71c22 38 62 71 112 71c40 0 104 -17 104 -73'], + 0xE3B9: [441,204,579,47,560,'560 399c0 -6 0 -8 -4 -22l-95 -378c-31 -125 -154 -203 -255 -203c-71 0 -119 37 -119 88c0 46 33 66 58 66c10 0 39 -6 39 -38c0 0 0 -49 -54 -55c21 -33 68 -33 75 -33c53 0 93 33 120 64c42 50 53 92 66 147c-33 -30 -69 -45 -109 -45c-27 0 -69 5 -100 31 c-39 32 -39 79 -39 96c0 44 10 81 58 203c5 13 14 35 14 58c0 24 -8 35 -25 35c-40 0 -83 -39 -108 -122c-3 -11 -4 -16 -18 -16c-3 0 -17 0 -17 13c0 17 45 153 146 153c54 0 95 -37 95 -85c0 -17 -5 -29 -17 -61c-30 -77 -53 -140 -53 -194c0 -18 0 -83 68 -83 c78 0 123 87 123 87l40 161l21 83c5 20 13 52 16 58c11 19 30 24 41 24c17 0 33 -12 33 -32'], + 0xE3BA: [441,10,546,61,521,'521 429c0 -12 -38 -63 -99 -123c-29 -28 -104 -88 -125 -105c-85 -68 -103 -87 -129 -113c6 1 23 1 23 1c18 0 26 0 72 -10c25 -6 50 -11 73 -11c49 0 108 24 127 74c4 11 6 16 18 16c6 0 17 -1 17 -13c0 -34 -67 -155 -174 -155c-32 0 -52 15 -83 45 c-27 25 -42 26 -54 26c-34 0 -65 -23 -92 -61c-5 -8 -7 -10 -17 -10c-4 0 -17 0 -17 12c0 9 29 53 89 112c19 20 46 45 124 107c95 76 113 94 139 121c-25 0 -32 0 -87 12c-14 3 -40 9 -63 9c-16 0 -72 -2 -87 -37c-4 -11 -6 -14 -18 -14c-7 0 -17 3 -17 12 c0 30 54 117 134 117c23 0 45 -7 79 -41c30 -29 45 -30 57 -30c24 0 45 15 76 61c5 8 8 10 17 10c4 0 17 0 17 -12'], + 0xE3BB: [441,10,399,47,350,'350 143c0 -15 -44 -153 -144 -153c-55 0 -95 38 -95 85c0 17 5 29 9 42l63 161c25 62 31 77 31 100c0 27 -9 35 -25 35c-37 0 -81 -36 -107 -122c-3 -11 -4 -16 -18 -16c-3 0 -17 0 -17 13c0 17 46 153 145 153c55 0 95 -38 95 -85c0 -10 -3 -22 -6 -32l-49 -127 l-32 -80c-9 -22 -16 -41 -16 -64c0 -22 5 -35 25 -35c39 0 83 41 106 121c4 11 5 17 19 17c3 0 16 0 16 -13'], + 0xE3BC: [441,204,442,0,402,'402 347c0 -15 -2 -24 -5 -35l-90 -358c-29 -117 -134 -158 -200 -158c-64 0 -107 24 -107 63c0 32 25 59 57 59c20 0 39 -13 39 -37c0 -21 -13 -41 -33 -51c17 -5 22 -6 44 -6c61 0 104 65 120 127l96 383c1 5 3 19 3 30c0 31 -9 49 -34 49c-60 0 -111 -64 -135 -120 c-7 -15 -8 -18 -20 -18c-3 0 -17 0 -17 13c0 14 64 153 175 153c60 0 107 -39 107 -94'], + 0xE3BD: [450,0,319,47,286,'286 0l-117 3l-122 -3v47h69v309c0 39 -7 39 -66 39v47l174 8v-403h62v-47'], + 0xE3BE: [450,200,351,-56,267,'267 -42c0 -106 -95 -158 -181 -158c-82 0 -142 34 -142 91c0 36 25 63 63 63c36 0 62 -27 62 -62c0 -15 -5 -36 -24 -50c15 -4 23 -6 39 -6c60 0 75 72 75 122v397c0 21 0 34 -22 38c-15 2 -37 2 -54 2v47l184 8v-492'], + 0xE3BF: [711,0,1114,72,1042,'1042 0l-167 4l-181 -4v67h83l-70 146h-360l-69 -146h83v-67l-152 4c-46 0 -91 -1 -137 -4v67h102l290 611c16 33 32 33 55 33h76c38 0 43 -10 55 -35l290 -609h102v-67zM676 280l-149 312l-148 -312h297'], + 0xE3C0: [456,8,738,58,716,'716 34c0 -34 -7 -34 -71 -34c-75 0 -145 0 -153 60c-31 -45 -104 -68 -202 -68c-39 0 -232 0 -232 128c0 74 76 109 195 131c99 18 202 16 215 17v19c0 79 -52 113 -142 113c-17 0 -47 0 -84 -8c9 -12 14 -28 14 -45c0 -43 -31 -75 -75 -75c-40 0 -75 28 -75 76 c0 108 148 108 219 108c213 0 276 -86 276 -166v-213c21 -10 58 -10 71 -10h6c21 0 38 0 38 -33zM468 133v87c-48 -2 -277 -10 -277 -99c0 -46 55 -73 126 -73c6 0 59 0 100 16c51 19 51 45 51 69'], + 0xE3C1: [686,0,1057,100,959,'959 189c0 -103 -113 -189 -310 -189h-549v67h106v552h-106v67h511c188 0 308 -77 308 -175c0 -74 -77 -130 -198 -152c151 -17 238 -86 238 -170zM764 510c0 51 -46 109 -165 109h-254v-234h223c119 0 196 55 196 125zM795 191c0 53 -35 138 -183 138h-267v-262h257 c113 0 193 47 193 124'], + 0xE3C2: [694,8,839,84,774,'774 223c0 -123 -105 -231 -314 -231c-51 0 -123 10 -193 60l-28 -52h-83v580c0 39 -8 39 -72 39v67l197 8v-285c31 16 98 43 195 43c213 0 298 -120 298 -229zM624 224c0 54 0 172 -164 172c-42 0 -104 -10 -152 -49c-19 -15 -19 -16 -19 -36v-182 c23 -32 72 -81 157 -81c178 0 178 122 178 176'], + 0xE3C3: [703,17,1081,98,983,'983 230c0 -137 -147 -247 -388 -247c-352 0 -497 185 -497 360c0 180 152 360 495 360c34 0 150 0 263 -70l69 59c12 10 14 11 28 11c30 0 30 -14 30 -35v-217c0 -30 -5 -35 -35 -35h-24c-15 0 -31 0 -34 18c-8 34 -21 98 -94 150c-68 47 -133 52 -175 52 c-119 0 -196 -28 -251 -65c-79 -55 -100 -146 -100 -228c0 -206 136 -293 355 -293c146 0 268 67 275 176c2 30 9 32 35 32h13c19 0 35 0 35 -28'], + 0xE3C4: [456,8,678,65,621,'621 110c0 -11 -24 -65 -90 -94c-57 -24 -124 -24 -151 -24c-236 0 -315 128 -315 230c0 76 48 234 323 234c68 0 217 0 217 -108c0 -47 -34 -76 -75 -76c-43 0 -75 32 -75 75c0 15 3 30 11 42c-10 2 -32 5 -76 5c-112 0 -175 -43 -175 -169c0 -63 20 -105 55 -131 c39 -30 91 -40 141 -40c85 0 113 35 127 62c9 16 12 16 41 16c23 0 42 0 42 -22'], + 0xE3C5: [686,0,1138,96,1039,'1039 337c0 -198 -171 -337 -431 -337h-512v67h106v552h-106v67h512c255 0 431 -140 431 -349zM875 338c0 131 -37 186 -88 224c-59 43 -145 57 -220 57h-217v-552h218c300 0 307 179 307 271'], + 0xE3C6: [694,8,839,65,755,'755 0l-205 -8v49c-46 -28 -109 -49 -186 -49c-212 0 -299 120 -299 229c0 119 99 231 313 231c79 0 140 -20 180 -41v169c0 39 -8 39 -72 39v67l197 8v-588c0 -39 8 -39 72 -39v-67zM550 132v181c0 20 0 21 -21 38c-42 34 -92 45 -136 45c-178 0 -178 -122 -178 -176 c0 -53 0 -172 163 -172c57 0 122 20 172 84'], + 0xE3C7: [452,0,436,101,363,'363 0c-43 3 -86 4 -129 4c-44 0 -89 -1 -133 -4v67h72v271c0 39 -7 39 -69 39v67l194 8v-385h65v-67'], + 0xE3C8: [452,202,476,-40,354,'354 -35c0 -118 -118 -167 -223 -167c-98 0 -171 35 -171 106c0 43 31 75 75 75c43 0 75 -31 75 -75c0 -15 -3 -27 -11 -41l-1 -3c0 -4 33 -6 38 -6c46 0 93 36 93 114v369c0 21 0 33 -22 37c-15 3 -39 3 -57 3v67l204 8v-487'], + 0xE3C9: [678,0,978,92,921,'921 229l-58 -229h-771v67h106v544h-106v67h749l39 -206h-83c-27 129 -123 139 -234 139h-209v-226h89c64 0 120 4 122 83h83v-233h-83c-2 79 -58 83 -122 83h-89v-251h223c121 0 224 14 261 162h83'], + 0xE3CA: [456,8,692,57,635,'635 110c0 -14 -26 -67 -94 -94c-60 -24 -129 -24 -154 -24c-245 0 -330 128 -330 234c0 107 85 230 309 230c99 0 159 -23 205 -63c42 -38 64 -106 64 -164c0 -32 -18 -32 -38 -32h-389c9 -94 75 -143 202 -143c106 0 134 48 144 67c9 14 17 14 36 14h7 c14 0 38 0 38 -25zM534 248c-5 67 -31 152 -167 152c-156 0 -158 -116 -159 -152h326'], + 0xE3CB: [661,17,758,77,681,'681 186c0 -203 -256 -203 -305 -203c-102 0 -299 11 -299 179c0 95 68 143 144 171c-35 18 -103 65 -103 147c0 151 155 181 265 181c82 0 257 -8 257 -154c0 -46 -22 -100 -113 -140c101 -40 154 -104 154 -181zM540 506c0 90 -105 99 -167 99 c-119 0 -155 -25 -155 -70c0 -30 24 -41 93 -71l141 -63c57 22 88 57 88 105zM565 136c0 45 -58 70 -62 72l-200 88c-70 -28 -110 -71 -110 -133c0 -103 112 -119 190 -119c136 0 182 35 182 92'], + 0xE3CC: [678,0,938,92,860,'860 472h-83c-25 129 -121 139 -226 139h-197v-238h83c67 0 117 6 119 83h83v-233h-83c-2 77 -52 83 -119 83h-83v-239h132v-67c-50 4 -152 4 -206 4l-188 -4v67h106v544h-106v67h729'], + 0xE3CD: [702,0,476,73,563,'563 603c0 -48 -37 -74 -74 -74c-32 0 -73 23 -73 74c0 13 3 25 9 37l1 3s0 3 -12 3c-17 0 -58 -3 -90 -28c-34 -28 -34 -69 -34 -85v-89h159v-67h-151v-310h90v-67c-35 2 -93 4 -149 4c-46 0 -92 -1 -138 -4v67h72v310h-100v67h100v91c0 114 117 167 252 167 c95 0 138 -50 138 -99'], + 0xE3CE: [661,17,758,89,669,'669 201c0 -110 -99 -218 -321 -218c-159 0 -259 72 -259 170c0 56 43 81 79 81c40 0 79 -30 79 -79c0 -14 -3 -48 -40 -69c48 -41 122 -42 139 -42c167 0 167 103 167 163c0 59 0 152 -129 152c-110 0 -152 -41 -167 -56c-18 -17 -19 -18 -40 -18c-33 0 -38 7 -38 39 v301c0 14 0 36 22 36c3 0 5 0 15 -4c66 -18 132 -28 200 -28c93 0 164 19 203 29c7 3 11 3 11 3c22 0 22 -23 22 -28c0 -15 -2 -17 -15 -30c-42 -43 -132 -116 -284 -116c0 0 -42 0 -80 4v-110c46 24 96 34 156 34c201 0 280 -113 280 -214'], + 0xE3CF: [669,0,758,57,701,'701 0c-53 4 -148 4 -204 4c-54 0 -161 0 -210 -4v67h141v88h-371v67l362 430c12 15 16 17 42 17h71c32 0 38 -7 38 -38v-409h131v-67h-131v-88h131v-67zM445 222v358l-301 -358h301'], + 0xE3D0: [703,17,1169,98,1084,'1084 203h-101v-168c0 -14 0 -35 -22 -35c-8 0 -57 20 -78 31c-56 -45 -165 -48 -266 -48c-78 0 -257 0 -394 107c-70 55 -125 146 -125 253c0 180 152 360 495 360c34 0 150 0 263 -70l69 59c12 10 14 11 28 11c30 0 30 -14 30 -35v-217c0 -30 -5 -35 -35 -35h-24 c-15 0 -31 0 -34 18c-8 34 -21 98 -94 150c-68 47 -133 52 -175 52c-119 0 -196 -28 -251 -65c-82 -57 -100 -153 -100 -227c0 -227 161 -294 380 -294c177 0 177 33 177 72v81h-181v67c51 -4 188 -4 246 -4l192 4v-67'], + 0xE3D1: [461,203,758,57,721,'721 383c0 -41 -34 -59 -58 -59c-30 0 -59 22 -59 59c0 8 0 10 4 21c-17 -2 -46 -8 -66 -15c7 -6 40 -40 40 -91c0 -60 -52 -153 -244 -153c-43 0 -100 5 -146 26c-3 -6 -4 -8 -4 -20c0 -17 9 -35 23 -46c20 -14 29 -14 80 -14h58c111 0 173 0 242 -23 c99 -34 110 -107 110 -137c0 -105 -175 -134 -322 -134c-219 0 -322 58 -322 131c0 52 53 77 101 89c-21 23 -37 54 -37 95c0 35 13 63 29 83c-18 16 -55 47 -55 104c0 60 52 153 244 153c36 0 102 -2 159 -32c56 36 109 41 133 41c59 0 90 -41 90 -78zM457 299 c0 45 -9 97 -119 97c-111 0 -118 -54 -118 -98c0 -45 9 -97 119 -97c111 0 118 54 118 98zM596 -71c0 47 -144 47 -257 47h-57c-37 0 -120 0 -120 -47c0 -34 63 -76 217 -76s217 42 217 76'], + 0xE3D2: [686,0,1153,92,1061,'1061 0l-184 4l-184 -4v67h106v256h-445v-256h106v-67l-184 4l-184 -4v67h106v552h-106v67l184 -4l184 4v-67h-106v-229h445v229h-106v67l184 -4l184 4v-67h-106v-552h106v-67'], + 0xE3D3: [694,0,839,97,776,'776 0c-44 3 -101 4 -138 4l-139 -4v67h72v231c0 72 -20 98 -84 98c-62 0 -185 -32 -185 -154v-175h72v-67c-44 3 -101 4 -138 4l-139 -4v67h72v513c0 39 -8 39 -72 39v67l197 8v-336c47 59 118 94 216 94c74 0 194 -9 194 -157v-228h72v-67'], + 0xE3D4: [686,0,550,86,464,'464 0c-61 4 -128 4 -189 4s-128 0 -189 -4v67h111v552h-111v67c61 -4 128 -4 189 -4s128 0 189 4v-67h-111v-552h111v-67'], + 0xE3D5: [686,17,775,66,659,'659 619h-79v-469c0 -98 -92 -167 -272 -167c-51 0 -242 0 -242 130c0 61 47 88 87 88c39 0 86 -28 86 -87c0 -36 -21 -59 -23 -61c40 -14 83 -14 91 -14c89 0 125 45 125 113v467h-137v67c50 -4 147 -4 201 -4l163 4v-67'], + 0xE3D6: [686,0,1154,92,1076,'1076 0c-52 3 -100 4 -153 4l-182 -4v67h52l-277 269l-162 -106v-163h106v-67l-184 4l-184 -4v67h106v552h-106v67l184 -4l184 4v-67h-106v-290l444 290h-42v67l171 -4c43 0 86 0 129 4v-67h-107l-320 -210l352 -342h95v-67'], + 0xE3D7: [694,0,799,84,757,'757 0c-44 4 -73 4 -116 4c-23 0 -88 -1 -135 -4v67h15l-150 138l-99 -64v-74h72v-67c-43 3 -87 4 -130 4c-3 0 -79 -1 -130 -4v67h72v513c0 39 -8 39 -72 39v67l197 8v-449l204 132h-15v67l147 -4c43 0 70 1 108 4v-67h-87l-173 -112l215 -198h77v-67'], + 0xE3D8: [686,0,897,92,820,'820 229l-39 -229h-689v67h106v552h-106v67l188 -4c54 0 156 0 206 4v-67h-132v-552h152c88 0 203 17 231 162h83'], + 0xE3D9: [694,0,436,101,370,'370 0c-53 4 -131 4 -135 4c-45 0 -89 -1 -134 -4v67h72v513c0 39 -8 39 -72 39v67l197 8v-627h72v-67'], + 0xE3DA: [686,0,1394,104,1290,'1290 0l-172 4l-171 -4v67h106v549h-1l-325 -587c-16 -29 -38 -29 -54 -29s-38 0 -54 29l-317 573h-1v-535h106v-67l-152 4l-151 -4v67h106v552h-106v67h235c18 0 40 0 56 -29l302 -546l302 546c16 29 38 29 56 29h235v-67h-106v-552h106v-67'], + 0xE3DB: [452,0,1242,97,1180,'1180 0c-44 3 -101 4 -138 4l-139 -4v67h72v230c0 75 -21 99 -85 99c-60 0 -185 -32 -185 -154v-175h72v-67c-44 3 -101 4 -138 4l-139 -4v67h72v230c0 75 -21 99 -85 99c-60 0 -185 -32 -185 -154v-175h72v-67c-44 3 -101 4 -138 4l-139 -4v67h72v271c0 39 -8 39 -72 39 v67l188 8v-107c23 35 87 107 226 107c99 0 158 -23 186 -95c66 82 153 95 217 95c76 0 194 -11 194 -157v-228h72v-67'], + 0xE3DC: [686,0,1153,92,1061,'1061 619h-106v-581c0 -32 -7 -38 -38 -38h-15c-22 0 -23 0 -38 14l-575 549v-496h106v-67l-152 4l-151 -4v67h106v552h-106v67h235c18 0 24 0 37 -12l500 -478v423h-106v67l152 -4l151 4v-67'], + 0xE3DD: [452,0,839,97,776,'776 0c-44 3 -101 4 -138 4l-139 -4v67h72v231c0 72 -20 98 -84 98c-62 0 -185 -32 -185 -154v-175h72v-67c-44 3 -101 4 -138 4l-139 -4v67h72v271c0 39 -8 39 -72 39v67l188 8v-107c25 39 90 107 225 107c74 0 194 -9 194 -157v-228h72v-67'], + 0xE3DE: [661,17,758,77,681,'681 328c0 -221 -155 -345 -362 -345c-34 0 -205 0 -205 137c0 54 41 77 75 77c40 0 75 -29 75 -75c0 -41 -30 -62 -30 -62c31 -16 74 -16 84 -16c35 0 114 6 164 71c40 53 41 127 42 185c-34 -43 -87 -81 -171 -81c-167 0 -276 89 -276 220c0 65 22 125 103 174 c65 40 124 48 201 48c211 0 300 -131 300 -333zM521 432c0 77 -14 173 -140 173c-147 0 -147 -88 -147 -166c0 -83 0 -164 132 -164c82 0 155 56 155 157'], + 0xE3DF: [703,17,1122,98,1024,'1024 338c0 -175 -135 -355 -463 -355c-327 0 -463 179 -463 355c0 180 135 365 463 365c327 0 463 -184 463 -365zM852 355c0 68 -12 159 -78 217c-65 57 -148 69 -213 69s-153 -13 -215 -70c-65 -62 -76 -150 -76 -216c0 -168 71 -308 291 -308c206 0 291 124 291 308'], + 0xE3E0: [456,8,758,57,701,'701 217c0 -106 -87 -225 -322 -225c-234 0 -322 119 -322 225c0 110 85 239 322 239c234 0 322 -127 322 -239zM551 229c0 78 0 171 -172 171s-172 -92 -172 -171c0 -82 0 -175 172 -175s172 93 172 175'], + 0xE3E1: [661,0,758,136,640,'640 0c-49 4 -191 4 -248 4s-199 0 -248 -4v67h181v488c-73 -25 -150 -25 -162 -25h-27v67h27c23 0 152 0 237 64h21c32 0 38 -7 38 -38v-556h181v-67'], + 0xE3E2: [686,0,1017,96,919,'919 481c0 -125 -150 -199 -317 -199h-244v-215h106v-67l-184 4l-184 -4v67h106v552h-106v67h494c199 0 329 -87 329 -205zM747 481c0 70 -13 138 -185 138h-212v-276h211c173 0 186 70 186 138'], + 0xE3E3: [452,194,839,84,774,'774 223c0 -122 -105 -231 -314 -231c-85 0 -143 28 -171 45v-164h72v-67l-139 4l-138 -4v67h72v470c0 28 0 34 -55 34h-17v67l197 8v-44c80 41 164 44 203 44c209 0 290 -121 290 -229zM624 222c0 96 -56 168 -166 168c-40 0 -118 -10 -169 -63v-199 c49 -65 109 -80 156 -80c105 0 179 64 179 174'], + 0xE3E4: [703,194,1122,98,1032,'1032 -6c0 -85 -65 -188 -173 -188c-101 0 -137 84 -180 185c-59 -8 -108 -8 -118 -8c-327 0 -463 179 -463 355c0 180 135 365 463 365c327 0 463 -184 463 -365c0 -140 -84 -266 -243 -321c42 -39 70 -39 106 -39c91 0 93 13 95 25c4 18 18 22 25 22 c25 0 25 -26 25 -31zM860 338c0 64 -11 159 -72 221c-64 64 -146 82 -227 82c-97 0 -174 -27 -232 -87c-46 -49 -67 -128 -67 -216c0 -120 39 -229 171 -274c-1 4 -1 7 -1 12c0 60 63 89 127 89c72 0 114 -41 162 -88c117 54 139 170 139 261zM647 53c-28 48 -61 56 -88 56 c-20 0 -71 -6 -71 -33c0 -31 50 -31 73 -31c18 0 46 0 86 8'], + 0xE3E5: [452,194,799,65,755,'755 -194l-139 4l-138 -4v67h72v166c-43 -23 -99 -47 -187 -47c-206 0 -298 116 -298 229c0 121 101 231 309 231c88 0 156 -31 203 -73l31 73h75v-579h72v-67zM558 142v111c0 57 -64 137 -165 137c-97 0 -178 -56 -178 -169c0 -101 60 -173 165 -173c66 0 139 30 178 94 '], + 0xE3E6: [686,17,1103,96,1082,'1082 101c0 -20 -15 -118 -154 -118c-69 0 -132 8 -170 25c-79 37 -79 89 -79 166c0 59 0 83 -38 109c-40 27 -89 32 -124 32h-167v-248h106v-67l-180 4l-180 -4v67h106v552h-106v67h442c218 0 367 -81 367 -190c0 -63 -52 -123 -171 -156c85 -38 97 -100 102 -129 l16 -82c10 -51 37 -90 88 -90c20 0 54 11 59 65c2 26 22 26 41 26c20 0 42 0 42 -29zM733 495c0 81 -45 124 -202 124h-181v-248h181c159 0 202 47 202 124'], + 0xE3E7: [452,0,622,84,565,'565 357c0 -44 -32 -73 -73 -73s-73 30 -73 73c0 23 4 29 10 39c-85 -7 -148 -91 -148 -199v-130h90v-67c-35 2 -93 4 -149 4c-46 0 -92 -1 -138 -4v67h72v271c0 39 -8 39 -72 39v67l180 8v-121h1c27 59 86 121 174 121c68 0 126 -37 126 -95'], + 0xE3E8: [703,17,839,98,741,'741 197c0 -67 -42 -214 -288 -214c-88 0 -188 11 -256 49c-20 -20 -22 -20 -30 -28c-23 -21 -25 -21 -39 -21c-30 0 -30 14 -30 35v174c0 31 5 36 36 36h12c13 0 33 0 35 -19c3 -57 10 -159 273 -159c182 0 187 98 187 114c0 66 -76 100 -131 110l-167 28 c-49 8 -128 22 -186 75c-40 37 -59 80 -59 125c0 88 69 201 282 201c70 0 151 -10 219 -53l44 42c11 11 17 11 28 11c30 0 30 -14 30 -35v-175c0 -30 -5 -35 -35 -35h-13c-29 0 -32 5 -36 27c-22 110 -107 157 -238 157c-132 0 -181 -55 -181 -103c0 -76 110 -95 146 -102 l143 -24c71 -12 137 -23 206 -93c10 -11 48 -55 48 -123'], + 0xE3E9: [456,8,605,65,540,'540 140c0 -148 -193 -148 -233 -148c-28 0 -93 0 -149 29c-7 -4 -23 -14 -30 -17c-20 -12 -22 -12 -33 -12c-30 0 -30 14 -30 35v98c0 31 5 36 36 36h12c25 0 28 -2 36 -21c25 -64 70 -92 160 -92c25 0 150 0 150 67c0 50 -65 58 -184 74c-75 11 -210 29 -210 134 c0 30 14 79 76 108c57 25 122 25 159 25c31 0 84 0 127 -15c15 7 34 15 46 15c30 0 30 -14 30 -35v-69c0 -30 -5 -35 -35 -35h-13c-24 0 -33 2 -35 26c-4 36 -23 63 -126 63c-118 0 -148 -29 -148 -55c0 -37 59 -45 128 -55c120 -16 145 -20 195 -47c29 -15 71 -50 71 -109'], + 0xE3EA: [667,17,758,98,721,'721 644c0 -16 0 -45 -1 -49c-2 -5 -4 -9 -8 -13l-102 -93l-62 -55c-66 -62 -132 -123 -134 -366c0 -18 0 -44 -22 -65c-6 -5 -23 -20 -53 -20c-11 0 -75 4 -75 82c0 54 11 174 111 306c32 42 59 66 130 131h-182c-34 0 -78 0 -103 -3c-10 -1 -11 -2 -17 -8 c-12 -17 -18 -38 -22 -58h-83l43 234h83c1 -9 4 -21 30 -21l218 -2h249'], + 0xE3EB: [661,17,758,77,681,'681 206c0 -91 -45 -138 -98 -173c-70 -46 -139 -50 -199 -50c-210 0 -307 125 -307 336c0 214 159 342 380 342c159 0 187 -86 187 -137c0 -54 -41 -77 -75 -77c-40 0 -75 29 -75 75c0 40 27 60 35 65c-26 18 -61 18 -72 18c-78 0 -137 -31 -166 -62 c-50 -55 -53 -108 -57 -198c41 53 104 81 171 81c165 0 276 -87 276 -220zM524 207c0 83 0 163 -132 163c-99 0 -155 -75 -155 -149c0 -81 14 -177 147 -177c140 0 140 80 140 163'], + 0xE3EC: [669,0,1042,69,973,'973 463h-83c-15 112 -61 139 -171 139h-120v-535h149v-67c-48 4 -173 4 -227 4s-179 0 -227 -4v67h149v535h-120c-110 0 -156 -27 -171 -139h-83l27 206h850'], + 0xE3ED: [635,8,597,44,499,'499 119c0 -101 -100 -127 -173 -127c-65 0 -174 13 -174 126v259h-108v56c102 3 156 100 158 202h83v-191h190v-67h-190v-256c0 -27 0 -67 63 -67c58 0 68 39 68 69v44h83v-48'], + 0xE3EE: [661,17,758,77,681,'681 181c0 -78 -67 -198 -314 -198c-191 0 -290 67 -290 166c0 54 37 88 87 88s86 -37 86 -86c0 -32 -15 -57 -36 -72c51 -33 129 -35 150 -35c136 0 145 88 145 138c0 55 -12 138 -146 138h-69c-19 0 -35 0 -35 28c0 7 0 24 18 28c7 1 52 3 63 3c120 5 145 94 145 136 c0 48 -21 90 -119 90c-33 0 -85 -6 -126 -35c2 -1 40 -22 40 -71c0 -51 -40 -81 -81 -81c-37 0 -81 26 -81 82c0 93 93 161 253 161c179 0 269 -66 269 -148c0 -92 -79 -142 -138 -162c97 -23 179 -81 179 -170'], + 0xE3EF: [661,0,758,89,669,'669 211l-39 -211h-541v31c0 22 0 26 17 38l279 203c64 46 125 105 125 183c0 92 -88 139 -186 139c-23 0 -60 -2 -96 -20c5 -5 26 -26 26 -62c0 -55 -43 -83 -83 -83c-33 0 -82 24 -82 84c0 147 221 148 268 148c198 0 312 -81 312 -205c0 -104 -83 -150 -195 -212 c-43 -23 -104 -61 -168 -102h149c34 0 77 0 101 3c9 2 23 27 30 66h83'], + 0xE3F0: [686,17,1133,92,1041,'1041 619h-106v-388c0 -115 -91 -248 -355 -248c-266 0 -382 121 -382 249v387h-106v67l184 -4l184 4v-67h-106v-388c0 -100 44 -181 229 -181c136 0 258 43 258 184v385h-106v67c33 -2 88 -4 153 -4s123 3 153 4v-67'], + 0xE3F1: [452,8,839,97,776,'776 0l-197 -8v65c-65 -65 -160 -65 -194 -65c-95 0 -216 10 -216 126v220c0 39 -8 39 -72 39v67l205 8v-340c0 -44 0 -64 104 -64c68 0 165 17 165 110v180c0 39 -8 39 -72 39v67l205 8v-346c0 -39 8 -39 72 -39v-67'], + 0xE3F2: [686,17,1114,53,1061,'1061 619h-98l-313 -606c-16 -30 -33 -30 -54 -30h-78c-24 0 -39 1 -56 33l-311 603h-98v67l164 -4l181 4v-67h-81l270 -523l270 523h-80v67l151 -4c43 0 90 1 133 4v-67'], + 0xE3F3: [444,8,799,53,746,'746 377h-73l-187 -356c-15 -29 -32 -29 -54 -29h-65c-36 0 -44 9 -55 31l-186 354h-73v67c52 -4 76 -4 125 -4l136 4v-67h-47l156 -298l156 298h-47v67c35 -3 78 -4 113 -4c34 0 67 1 101 4v-67'], + 0xE3F4: [686,17,1517,50,1467,'1467 619h-90l-257 -603c-9 -21 -14 -33 -52 -33h-63c-19 0 -39 0 -52 30l-195 458l-194 -458c-13 -30 -33 -30 -52 -30h-63c-21 0 -39 0 -53 33l-256 603h-90v67l157 -4l179 4v-67h-86l216 -506l197 464l-18 42h-89v67l157 -4l178 4v-67h-85l216 -506l215 506h-96v67 l152 -4c39 0 85 0 124 4v-67'], + 0xE3F5: [444,8,1081,50,1031,'1031 377h-66l-150 -354c-13 -31 -33 -31 -52 -31h-63c-19 0 -39 0 -52 30l-108 254l-107 -254c-13 -30 -33 -30 -52 -30h-63c-19 0 -39 0 -52 31l-150 354h-66v67c38 -3 82 -4 120 -4l134 4v-67h-52l120 -284l121 284h-62v67c33 -3 72 -4 106 -4c40 0 81 1 121 4v-67 h-52l134 -316l135 316h-60v67c39 -3 79 -4 118 -4c44 0 77 2 98 4v-67'], + 0xE3F6: [686,0,1114,71,1043,'1043 0l-171 4c-57 0 -133 0 -189 -4v67h55l-207 213l-207 -213h66v-67l-168 4c-62 0 -109 -2 -151 -4v67h122l273 280l-264 272h-111v67l171 -4c57 0 133 0 189 4v-67h-55l167 -172l167 172h-67v67l169 -4l150 4v-67h-121l-233 -239l305 -313h110v-67'], + 0xE3F7: [444,0,799,58,741,'741 0c-46 4 -75 4 -119 4s-88 -1 -132 -4v67c5 0 7 0 12 1l-113 100l-113 -101h16v-67c-41 3 -82 4 -123 4c-40 0 -69 0 -111 -4v67h93l176 157l-173 153h-88v67c46 -4 75 -4 119 -4s88 1 132 4v-67c-5 0 -7 0 -12 -1l97 -86l97 87h-16v67c41 -3 82 -4 123 -4 c40 0 69 0 111 4v-67h-93l-160 -142l189 -168h88v-67'], + 0xE3F8: [686,0,1114,53,1061,'1061 619h-110l-320 -344v-208h105v-67l-179 4l-180 -4v67h106v207l-320 345h-110v67l176 -4c57 0 137 0 193 4v-67h-58l230 -247l229 247h-57v67l156 -4c46 0 93 1 139 4v-67'], + 0xE3F9: [444,202,799,45,745,'745 377h-73l-239 -448c-58 -109 -185 -131 -251 -131c-83 0 -137 50 -137 108c0 46 34 71 71 71s71 -25 71 -71c0 -11 -2 -29 -14 -45c-2 -2 -3 -5 -3 -5s8 -2 14 -2c116 0 149 62 168 99c9 16 24 44 24 47c0 0 0 2 -6 12l-236 365h-76v67c42 -3 85 -4 127 -4 c25 0 90 1 138 4v-67h-40l162 -251l133 251h-47v67c36 -3 77 -4 113 -4c42 0 74 2 101 4v-67'], + 0xE3FA: [686,0,919,98,830,'830 240l-23 -240h-671c-30 0 -38 5 -38 37c0 20 0 22 13 35l500 547h-173c-42 0 -223 0 -237 -139h-83l16 206h649c24 0 38 -1 38 -35c0 -18 0 -20 -13 -33l-498 -545h187c85 0 233 5 250 167h83'], + 0xE3FB: [444,0,678,57,601,'601 178l-23 -178h-483c-21 0 -38 0 -38 33c0 19 2 20 13 31l337 324h-91c-82 0 -144 -8 -156 -99h-83l16 155h466c20 0 38 0 38 -31c0 -17 -2 -19 -13 -29l-335 -322h98c88 0 156 10 171 116h83'], + 0xE3FC: [661,17,758,73,685,'685 317c0 -174 -48 -334 -306 -334c-254 0 -306 156 -306 334c0 172 44 344 306 344c265 0 306 -176 306 -344zM535 332c0 66 0 149 -16 195c-20 58 -81 78 -140 78c-70 0 -122 -28 -139 -73c-17 -48 -17 -127 -17 -200c0 -72 1 -153 14 -202c22 -81 103 -91 142 -91 c37 0 117 9 141 89c15 49 15 143 15 204'], + 0xE3FD: [687,0,436,101,363,'363 0c-43 3 -86 4 -129 4c-44 0 -89 -1 -133 -4v67h72v271c0 39 -7 39 -69 39v67l194 8v-385h65v-67zM304 603c0 -45 -38 -83 -86 -83c-46 0 -86 36 -86 84c0 45 38 83 86 83c46 0 86 -36 86 -84'], + 0xE3FE: [687,202,476,-40,354,'354 -35c0 -118 -118 -167 -223 -167c-98 0 -171 35 -171 106c0 43 31 75 75 75c43 0 75 -31 75 -75c0 -15 -3 -27 -11 -41l-1 -3c0 -4 33 -6 38 -6c46 0 93 36 93 114v369c0 21 0 33 -22 37c-15 3 -39 3 -57 3v67l204 8v-487zM354 603c0 -45 -38 -83 -86 -83 c-46 0 -86 36 -86 84c0 45 38 83 86 83c46 0 86 -36 86 -84'], + 0xE3FF: [704,0,968,51,916,'916 0l-165 4c-53 0 -130 0 -182 -4v56h90l-63 140h-305l-54 -121l-5 -11c0 -8 83 -8 86 -8v-56l-142 4c-45 0 -121 -4 -125 -4v56h30c17 0 27 0 46 2c25 3 26 4 32 16l269 602c13 28 25 28 56 28c30 0 42 0 55 -28l278 -620h99v-56zM571 252l-128 284l-127 -284h255'], + 0xE400: [453,6,629,36,619,'619 28c0 -28 -16 -28 -35 -28h-59c-82 0 -109 25 -109 68c-17 -26 -64 -74 -170 -74c-100 0 -210 28 -210 121c0 148 311 152 360 152v27c0 85 -52 113 -122 113c-7 0 -71 -2 -71 -7c0 0 1 -4 3 -7c3 -3 12 -18 12 -40c0 -38 -26 -69 -70 -69c-37 0 -69 26 -69 70 c0 99 140 99 198 99c180 0 246 -76 246 -158v-208c0 -23 0 -31 60 -31c21 0 36 0 36 -28zM396 137v91c-100 -3 -234 -30 -234 -112c0 -45 48 -76 104 -76c6 0 53 0 91 23c39 24 39 53 39 74'], + 0xE401: [686,0,914,59,838,'838 187c0 -100 -97 -187 -276 -187h-503v56h107v574h-107v56h469c170 0 274 -76 274 -174c0 -66 -57 -130 -181 -153c155 -19 217 -97 217 -172zM652 512c0 61 -39 118 -137 118h-211v-250h183c98 0 165 51 165 132zM682 189c0 36 -13 145 -154 145h-224v-278h214 c116 0 164 66 164 133'], + 0xE402: [694,6,718,55,670,'670 223c0 -132 -105 -229 -277 -229c-33 0 -99 4 -166 61c-9 -11 -29 -39 -38 -50c-5 -4 -6 -5 -22 -5h-45v591c0 39 -8 39 -67 39v56l187 8v-289c45 28 101 45 165 45c174 0 263 -106 263 -227zM531 225c0 61 0 179 -138 179c-63 0 -116 -29 -144 -63v-229 c33 -47 78 -72 132 -72c150 0 150 123 150 185'], + 0xE403: [698,12,931,75,855,'855 228c0 -124 -131 -240 -337 -240c-295 0 -443 166 -443 355c0 192 152 355 442 355c30 0 125 0 224 -68l67 58c10 9 12 10 24 10c23 0 23 -12 23 -32v-213c0 -29 -3 -32 -32 -32h-7c-29 0 -29 2 -34 29c-20 104 -112 192 -241 192c-62 0 -146 -11 -215 -64 c-68 -53 -88 -140 -88 -235c0 -79 14 -163 71 -220c60 -59 152 -79 234 -79c87 0 240 39 249 192c1 17 17 17 31 17c21 0 32 0 32 -25'], + 0xE404: [453,6,576,47,535,'535 114c0 -6 -15 -55 -72 -89c-40 -23 -91 -31 -140 -31c-189 0 -276 111 -276 228c0 93 59 231 282 231c58 0 192 -3 192 -99c0 -42 -29 -70 -70 -70c-39 0 -69 28 -69 69c0 22 9 37 11 40l2 4c0 4 -57 5 -63 5c-134 0 -146 -101 -146 -176c0 -41 0 -181 161 -181 c77 0 109 38 124 71c7 15 9 16 32 16c15 0 32 0 32 -18'], + 0xE405: [686,0,985,57,909,'909 338c0 -211 -163 -338 -383 -338h-469v56h107v574h-107v56h468c228 0 384 -139 384 -348zM753 338c0 91 0 292 -270 292h-175v-574h176c269 0 269 192 269 282'], + 0xE406: [694,6,718,47,662,'662 0l-194 -6v48c-40 -28 -93 -48 -157 -48c-171 0 -264 103 -264 227c0 127 98 229 277 229c33 0 89 -4 151 -42v183c0 39 -8 39 -67 39v56l187 8v-599c0 -39 8 -39 67 -39v-56zM468 116v228c-3 4 -48 60 -132 60c-150 0 -150 -123 -150 -185c0 -59 0 -179 137 -179 c73 0 122 43 145 76'], + 0xE407: [450,0,363,67,315,'315 0c-41 3 -81 4 -122 4c-45 0 -126 -4 -126 -4v56h67v291c0 39 -7 39 -64 39v56l184 8v-394h61v-56'], + 0xE408: [450,200,399,-55,304,'304 -38c0 -114 -111 -162 -201 -162c-85 0 -158 30 -158 99c0 38 28 69 70 69c38 0 69 -28 69 -69c0 -22 -9 -37 -12 -40c-2 -3 -4 -8 -4 -8c0 -3 30 -5 34 -5c53 0 82 51 82 118v382c0 40 -8 40 -74 40v56l194 8v-488'], + 0xE409: [679,0,844,57,803,'803 269l-51 -269h-695v56h107v567h-107v56h677l34 -239h-63c-20 144 -77 183 -217 183h-173v-243h66c86 0 114 24 114 110h63v-276h-63c0 87 -29 110 -114 110h-66v-268h183c172 0 215 70 242 213h63'], + 0xE40A: [453,6,592,40,551,'551 114c0 -10 -18 -58 -77 -89c-50 -27 -108 -31 -144 -31c-198 0 -290 112 -290 231c0 118 88 228 273 228c55 0 129 -8 183 -62c48 -49 55 -124 55 -153c0 -30 -14 -30 -35 -30h-337c2 -46 7 -163 165 -163c17 0 108 0 144 74c8 16 13 17 31 17c10 0 32 0 32 -22z M452 250c-2 43 -9 157 -138 157s-134 -118 -135 -157h273'], + 0xE40B: [656,12,647,57,589,'589 188c0 -111 -85 -200 -268 -200c-81 0 -264 14 -264 175c0 83 53 136 132 167c-10 6 -96 55 -96 148c0 97 71 178 233 178c38 0 227 0 227 -149c0 -57 -33 -103 -105 -138c43 -22 141 -70 141 -181zM465 506c0 67 -53 104 -145 104c-88 0 -139 -22 -139 -73 c0 -20 11 -38 46 -56l163 -82c44 24 75 57 75 107zM487 135c0 45 -38 64 -92 92l-142 71c-58 -29 -94 -73 -94 -135c0 -84 70 -124 166 -124c75 0 162 18 162 96'], + 0xE40C: [679,0,809,57,751,'751 440h-63c-19 137 -68 183 -210 183h-163v-255h62c89 0 111 29 111 110h63v-276h-63c0 82 -23 110 -111 110h-62v-256h134v-56c-26 2 -70 2 -96 3l-111 1c-8 0 -159 -2 -185 -4v56h107v567h-107v56h660'], + 0xE40D: [700,0,399,52,491,'491 606c0 -46 -36 -69 -69 -69c-29 0 -68 21 -68 69c0 20 8 35 12 41c2 2 3 5 3 5s0 2 -11 2c-110 0 -110 -99 -110 -116v-94h135v-56h-128v-332h84v-56l-143 4c-47 0 -124 -4 -128 -4v56h67v332h-83v56h83v96c0 113 114 160 230 160c85 0 126 -48 126 -94'], + 0xE40E: [656,12,647,68,578,'578 201c0 -113 -96 -213 -285 -213c-135 0 -225 77 -225 169c0 51 38 75 74 75c35 0 73 -25 73 -74c0 -15 -4 -57 -54 -70c29 -33 81 -49 128 -49c138 0 138 99 138 166c0 72 0 159 -104 159c-95 0 -132 -40 -151 -61c-8 -8 -15 -8 -25 -8c-29 0 -29 14 -29 34v296 c0 15 0 31 18 31c0 0 4 0 18 -5c66 -22 128 -27 169 -27c46 0 105 6 171 28c12 4 16 4 16 4c18 0 18 -19 18 -23c0 -30 -69 -81 -98 -98c-74 -44 -143 -44 -167 -44c-12 0 -38 0 -74 5v-119c48 28 100 33 139 33c172 0 250 -103 250 -209'], + 0xE40F: [662,0,647,40,606,'606 0c-25 2 -157 4 -179 4c-52 0 -142 0 -191 -4v56h124v98h-320v56l367 437c13 15 21 15 40 15h15c30 0 35 -5 35 -35v-417h109v-56h-109v-98h109v-56zM373 210v314l-264 -314h264'], + 0xE410: [698,12,1012,75,945,'945 219h-89v-187c0 -15 0 -32 -18 -32c-8 0 -68 26 -91 42c-51 -52 -167 -54 -221 -54c-336 0 -451 194 -451 355c0 193 153 355 442 355c32 0 124 0 225 -68l67 58c10 9 12 10 24 10c23 0 23 -12 23 -32v-213c0 -29 -3 -32 -32 -32h-7c-28 0 -29 3 -33 24 c-25 129 -131 197 -243 197c-62 0 -161 -13 -227 -74c-53 -50 -76 -123 -76 -224c0 -126 36 -189 83 -229c79 -67 189 -71 234 -71c150 0 150 56 150 82v93h-160v56c29 -2 79 -3 108 -3l122 -1l170 4v-56'], + 0xE411: [456,201,647,40,624,'624 389c0 -34 -28 -51 -51 -51c-20 0 -50 15 -50 51c0 6 1 14 3 19c-21 -2 -44 -9 -60 -15c9 -8 40 -42 40 -93c0 -61 -50 -149 -219 -149c-21 0 -79 0 -131 25c-7 -9 -7 -20 -7 -26c0 -24 13 -39 23 -47c17 -14 31 -14 66 -14h54c102 0 168 0 228 -27 c83 -39 86 -111 86 -131c0 -79 -99 -132 -283 -132c-213 0 -283 69 -283 129c0 52 55 77 90 85c-26 26 -40 59 -40 96c0 31 9 60 32 88c-18 15 -53 47 -53 104c0 64 55 149 218 149c24 0 87 0 146 -32c30 22 75 38 116 38c50 0 75 -36 75 -67zM387 301c0 40 0 103 -100 103 c-99 0 -99 -64 -99 -104c0 -39 0 -103 99 -103c100 0 100 63 100 104zM508 -72c0 53 -130 53 -155 53h-133c-13 0 -82 0 -82 -52c0 -37 48 -84 185 -84c143 0 185 50 185 83'], + 0xE412: [686,0,1002,57,944,'944 0c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v273h-371v-273h107v-56c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v574h-107v56c22 -2 161 -4 183 -4c16 0 159 2 182 4v-56h-107v-245h371v245h-107v56c22 -2 161 -4 183 -4c16 0 159 2 182 4v-56h-107 v-574h107v-56'], + 0xE413: [694,0,718,64,679,'679 0c0 0 -82 4 -131 4c-48 0 -130 -4 -130 -4v56h67v253c0 72 -19 95 -63 95c-60 0 -164 -39 -164 -155v-193h67v-56s-82 4 -131 4c-48 0 -130 -4 -130 -4v56h67v535c0 39 -8 39 -67 39v56l187 8v-338c23 34 79 94 190 94c92 0 171 -26 171 -149v-245h67v-56'], + 0xE414: [686,0,479,51,428,'428 0c-50 4 -136 4 -189 4s-138 0 -188 -4v56h113v574h-113v56c50 -4 136 -4 189 -4s138 0 188 4v-56h-113v-574h113v-56'], + 0xE415: [686,12,665,36,580,'580 630h-80v-480c0 -99 -94 -162 -249 -162c-143 0 -215 50 -215 126c0 52 40 82 82 82c38 0 81 -27 81 -82c0 -28 -11 -50 -33 -66c34 -14 77 -14 81 -14c109 0 109 95 109 117v479h-139v56c27 -2 69 -3 96 -3l110 -1l157 4v-56'], + 0xE416: [686,0,1003,57,944,'944 0l-147 4c-53 0 -131 0 -183 -4v56c40 0 42 0 64 6l-240 275l-123 -91v-190h107v-56c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v574h-107v56c22 -2 161 -4 183 -4c16 0 159 2 182 4v-56h-107v-306l402 300c-24 6 -40 6 -58 6v56l161 -4c45 0 107 4 107 4 v-56h-27c-67 0 -74 -5 -86 -14l-270 -201l301 -345c9 -11 12 -14 60 -14h39v-56'], + 0xE417: [694,0,683,55,656,'656 0c-36 3 -71 4 -107 4l-130 -4v56c8 0 21 0 21 6c0 0 -1 2 -9 11l-126 137l-69 -49v-105h67v-56s-76 4 -124 4c-43 0 -118 -4 -124 -4v56h67v533c0 41 -6 41 -67 41v56l187 8v-452l183 131c3 2 10 7 12 9c-4 3 -7 6 -20 6v56c5 0 85 -4 129 -4c27 0 55 2 82 4v-56 c-72 0 -78 -4 -92 -14l-143 -102l182 -198c12 -12 14 -14 21 -15c9 -3 30 -3 60 -3v-56'], + 0xE418: [686,0,773,57,715,'715 269l-34 -269h-624v56h107v574h-107v56c55 -4 123 -4 185 -4l107 1c24 0 77 1 100 3v-56h-134v-574h118c176 0 208 124 219 213h63'], + 0xE419: [694,0,363,67,321,'321 0c-3 0 -78 4 -127 4c-46 0 -124 -4 -127 -4v56h67v535c0 39 -8 39 -67 39v56l187 8v-638h67v-56'], + 0xE41A: [686,0,1215,63,1151,'1151 0l-172 4l-173 -4v56h107v571h-1l-297 -600c-13 -27 -33 -27 -42 -27c-26 0 -35 14 -42 28l-290 585h-1v-532c0 -20 1 -21 24 -23c15 -1 35 -2 50 -2h33v-56l-142 4l-142 -4v56h33c12 0 62 0 71 6c2 2 3 3 3 19v549h-107v56h230c21 0 36 0 50 -28l264 -533l264 534 c13 27 31 27 50 27h230v-56h-107v-574h107v-56'], + 0xE41B: [450,0,1073,64,1035,'1035 0c0 0 -82 4 -131 4c-48 0 -130 -4 -130 -4v56h67v252c0 74 -19 96 -64 96c-57 0 -164 -37 -164 -155v-193h67v-56s-82 4 -131 4c-48 0 -130 -4 -130 -4v56h67v252c0 74 -19 96 -64 96c-57 0 -164 -37 -164 -155v-193h67v-56s-82 4 -131 4c-48 0 -130 -4 -130 -4v56 h67v291c0 39 -8 39 -67 39v56l181 8v-104c20 34 77 104 197 104c54 0 140 -7 165 -94c33 49 94 94 190 94c88 0 171 -24 171 -149v-245h67v-56'], + 0xE41C: [686,0,1002,57,944,'944 630h-33c-12 0 -62 0 -71 -6c-2 -2 -3 -3 -3 -19v-570c0 -30 -5 -35 -35 -35c-20 0 -23 0 -34 12l-534 569v-500c0 -20 1 -21 24 -23c15 -1 35 -2 50 -2h33v-56l-142 4l-142 -4v56h33c12 0 62 0 71 6c2 2 3 3 3 19v549h-107v56h235c21 0 23 0 35 -13l440 -469v401 c0 20 -1 21 -24 23c-15 1 -35 2 -50 2h-33v56l142 -4l142 4v-56'], + 0xE41D: [450,0,718,64,679,'679 0c0 0 -82 4 -131 4c-48 0 -130 -4 -130 -4v56h67v253c0 72 -19 95 -63 95c-60 0 -164 -39 -164 -155v-193h67v-56s-82 4 -131 4c-48 0 -130 -4 -130 -4v56h67v291c0 39 -8 39 -67 39v56l181 8v-104c19 32 75 104 196 104c92 0 171 -26 171 -149v-245h67v-56'], + 0xE41E: [656,12,647,57,589,'589 328c0 -233 -151 -340 -319 -340c-132 0 -181 64 -181 132c0 43 29 71 70 71c42 0 69 -31 69 -69c0 -29 -14 -52 -41 -64c31 -19 72 -19 81 -19c57 0 110 24 141 73c29 47 33 120 33 190c-52 -77 -116 -77 -140 -77c-141 0 -245 81 -245 215c0 130 105 216 268 216 c215 0 264 -170 264 -328zM440 435c0 0 0 86 -17 117c-10 19 -37 58 -97 58c-122 0 -122 -83 -122 -171c0 -92 0 -168 109 -168c71 0 127 61 127 164'], + 0xE41F: [698,12,968,75,892,'892 339c0 -190 -135 -351 -409 -351c-268 0 -408 157 -408 351c0 192 134 359 409 359c269 0 408 -163 408 -359zM729 354c0 61 0 293 -246 293c-78 0 -147 -29 -189 -81c-50 -64 -56 -145 -56 -212c0 -55 4 -149 50 -217c52 -75 133 -96 195 -96c74 0 152 28 198 99 c39 62 48 138 48 214'], + 0xE420: [453,6,647,40,606,'606 218c0 -116 -88 -224 -283 -224c-194 0 -283 107 -283 224c0 118 85 235 283 235c196 0 283 -116 283 -235zM467 230c0 80 0 177 -144 177s-144 -97 -144 -177c0 -86 0 -185 144 -185s144 99 144 185'], + 0xE421: [656,0,647,102,553,'553 0c-29 2 -81 3 -111 3l-108 1c-54 0 -174 0 -223 -4v56h158v501c-42 -14 -103 -21 -143 -21h-24v56h24c80 0 162 14 224 64c42 0 49 0 49 -35v-565h154v-56'], + 0xE422: [686,0,879,57,803,'803 487c0 -110 -110 -195 -293 -195h-195v-236h107v-56c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v574h-107v56h453c186 0 293 -90 293 -199zM640 487c0 64 0 143 -164 143h-168v-287h166c166 0 166 79 166 144'], + 0xE423: [450,194,718,55,670,'670 223c0 -132 -105 -229 -277 -229c-70 0 -119 26 -144 43v-175h67v-56s-82 4 -131 4c-48 0 -130 -4 -130 -4v56h67v489c0 19 0 30 -17 33c-13 2 -33 2 -50 2v56l187 8v-46c58 36 119 46 171 46c170 0 257 -106 257 -227zM531 223c0 108 -54 176 -139 176 c-21 0 -80 -4 -128 -46c-14 -13 -15 -14 -15 -33v-209c12 -17 55 -71 131 -71s151 53 151 183'], + 0xE424: [698,194,968,75,899,'899 -7c0 -78 -51 -187 -153 -187c-100 0 -130 94 -159 191c-41 -8 -80 -9 -104 -9c-268 0 -408 157 -408 351c0 192 134 359 409 359c269 0 408 -163 408 -359c0 -99 -40 -251 -223 -320c39 -50 71 -50 98 -50c65 0 85 11 88 29c1 7 3 24 22 24c22 0 22 -22 22 -29z M736 339c0 57 -5 144 -49 210c-52 75 -135 98 -204 98c-59 0 -144 -16 -202 -97c-48 -68 -50 -169 -50 -211c0 -76 7 -222 142 -279c-1 4 -1 6 -1 15c0 53 53 85 111 85c65 0 103 -43 140 -85c104 62 113 185 113 264zM566 50c-21 47 -47 64 -83 64c-26 0 -65 -11 -65 -39 c0 -36 54 -36 66 -36c41 0 76 9 82 11'], + 0xE425: [450,194,683,47,663,'663 -194c0 0 -82 4 -131 4c-48 0 -130 -4 -130 -4v56h67v183c-42 -31 -95 -51 -157 -51c-174 0 -265 106 -265 227c0 131 103 229 274 229c68 0 126 -25 173 -77l46 77h56v-588h67v-56zM476 134v135c0 53 -55 130 -139 130c-76 0 -151 -52 -151 -178 c0 -121 63 -181 138 -181c62 0 118 34 152 94'], + 0xE426: [686,12,960,57,951,'951 99c0 -22 -16 -111 -135 -111c-231 0 -231 95 -231 175c0 72 0 96 -36 124c-41 33 -83 33 -102 33h-139v-264h107v-56l-179 4c-9 0 -155 -2 -179 -4v56h107v574h-107v56h410c198 0 328 -80 328 -188c0 -97 -110 -142 -165 -159c94 -35 102 -95 112 -162 c10 -78 19 -143 84 -143c22 0 57 13 62 67c2 23 17 23 31 23s32 0 32 -25zM632 498c0 65 -14 132 -175 132h-149v-264h145c166 0 179 69 179 132'], + 0xE427: [450,0,535,55,495,'495 361c0 -39 -28 -68 -68 -68s-68 29 -68 68c0 25 14 43 14 43c-90 -5 -131 -104 -131 -194v-154h84v-56l-143 4c-47 0 -124 -4 -128 -4v56h67v291c0 39 -8 39 -67 39v56l174 8v-110h1c27 62 75 110 147 110c62 0 118 -34 118 -89'], + 0xE428: [698,12,718,75,642,'642 203c0 -96 -63 -215 -252 -215c-69 0 -155 9 -224 52c-11 -9 -36 -35 -47 -45c-7 -6 -9 -7 -21 -7c-23 0 -23 12 -23 32v176c0 29 3 32 32 32s30 -6 31 -26c2 -34 12 -91 82 -126c61 -29 137 -32 169 -32c151 0 151 102 151 113c0 58 -50 96 -99 109l-86 16 c-125 24 -173 34 -227 88c-30 31 -53 74 -53 127c0 93 68 201 249 201c57 0 124 -10 181 -48c6 -5 8 -5 8 -5s2 0 10 8l34 32c13 13 15 13 26 13c23 0 23 -12 23 -32v-176c0 -29 -3 -32 -32 -32c-28 0 -28 3 -33 29c-24 130 -131 160 -217 160c-117 0 -147 -60 -147 -102 c0 -43 36 -85 109 -99l164 -32c96 -19 192 -96 192 -211'], + 0xE429: [453,6,512,47,464,'464 142c0 -148 -172 -148 -205 -148c-23 0 -77 0 -129 29c-6 -4 -22 -13 -28 -16c-21 -13 -23 -13 -32 -13c-23 0 -23 12 -23 32v98c0 29 3 32 32 32c25 0 26 -2 32 -19c19 -54 54 -97 149 -97c24 0 123 0 123 68c0 52 -73 63 -134 72c-70 11 -202 31 -202 139 c0 23 8 75 65 107c50 27 111 27 140 27c21 0 63 0 104 -13c4 -2 7 -2 7 -2c4 0 17 6 19 7c16 8 19 8 26 8c24 0 24 -12 24 -32v-69c0 -29 -3 -32 -32 -32c-23 0 -29 2 -31 22c-3 24 -7 70 -120 70c-21 0 -121 0 -121 -56c0 -40 59 -49 116 -58c83 -13 126 -20 173 -59 c23 -19 47 -51 47 -97'], + 0xE42A: [674,12,647,75,624,'624 644c0 -37 0 -39 -2 -42c-1 -3 -3 -6 -5 -9l-170 -175c-60 -61 -89 -150 -89 -311c0 -67 0 -77 -16 -96c-5 -5 -22 -23 -54 -23c-5 0 -69 0 -69 77c0 153 84 292 152 365c34 36 47 47 74 77h-163c-70 0 -110 -4 -113 -5c-10 -1 -23 -29 -31 -86h-63l38 258h63 c2 -11 4 -24 42 -24c6 0 8 0 15 1l69 -3l71 -4h251'], + 0xE42B: [656,12,647,57,589,'589 206c0 -132 -102 -218 -262 -218c-234 0 -270 195 -270 330c0 236 165 338 334 338c126 0 166 -71 166 -132c0 -43 -29 -71 -70 -71c-42 0 -69 31 -69 69c0 31 18 56 47 67c-15 12 -41 21 -72 21c-21 0 -100 -3 -149 -72c-36 -50 -40 -127 -40 -195 c50 77 118 77 140 77c143 0 245 -82 245 -214zM442 207c0 91 0 167 -109 167c-86 0 -127 -83 -127 -155c0 -61 1 -180 120 -180c116 0 116 75 116 168'], + 0xE42C: [673,0,897,50,846,'846 434h-63c-11 110 -25 183 -170 183h-89v-561h152v-56c-29 2 -76 3 -105 3l-123 1l-119 -1c-27 0 -82 -1 -108 -3v56h152v561h-90c-145 0 -159 -74 -170 -183h-63l24 239h748'], + 0xE42D: [635,6,505,28,429,'429 121c0 -81 -64 -127 -143 -127c-87 0 -168 28 -168 127v267h-90v46c106 3 153 108 154 201h63v-191h163v-56h-163v-267c0 -27 1 -76 59 -76c20 0 62 11 62 80v48h63v-52'], + 0xE42E: [656,12,647,57,589,'589 181c0 -84 -70 -193 -279 -193c-142 0 -253 55 -253 157c0 47 32 82 82 82c48 0 81 -35 81 -81c0 -43 -26 -66 -47 -75c43 -27 106 -32 133 -32c120 0 120 101 120 143c0 53 -5 143 -124 143h-53c-19 0 -32 0 -32 23c0 6 0 18 13 22c6 2 31 3 56 4 c100 5 120 97 120 143c0 28 0 93 -98 93c-20 0 -73 -4 -114 -34c10 -3 50 -21 50 -72c0 -38 -26 -75 -76 -75c-39 0 -75 27 -75 77c0 83 84 150 220 150c160 0 240 -64 240 -142c0 -84 -67 -136 -139 -163c114 -23 175 -93 175 -170'], + 0xE42F: [656,0,647,68,578,'578 228l-34 -228h-476v24c0 20 1 21 13 33l238 211c58 51 110 115 110 192c0 86 -67 140 -152 140c-12 0 -58 -1 -94 -24c3 -1 40 -21 40 -69c0 -53 -42 -78 -78 -78c-30 0 -77 21 -77 79c0 95 102 148 238 148c159 0 272 -75 272 -195c0 -100 -83 -153 -164 -205 c-58 -37 -114 -78 -169 -119h137c23 0 83 0 104 4c18 4 27 75 29 87h63'], + 0xE430: [686,12,985,57,927,'927 630h-33c-12 0 -62 0 -71 -6c-2 -2 -3 -3 -3 -19v-375c0 -116 -86 -242 -310 -242c-239 0 -346 118 -346 243v399h-107v56c22 -2 161 -4 183 -4c16 0 159 2 182 4v-56h-107v-402c0 -70 12 -184 199 -184c114 0 235 42 235 190v371c0 20 -1 21 -24 23 c-15 1 -35 2 -50 2h-33v56l143 -4l142 4v-56'], + 0xE431: [450,6,718,64,679,'679 0l-187 -6v71c-57 -71 -131 -71 -164 -71c-86 0 -197 11 -197 127v226c0 39 -8 39 -67 39v56l194 8v-340c0 -48 1 -70 87 -70c76 0 140 39 140 122v185c0 39 -8 39 -67 39v56l194 8v-355c0 -39 8 -39 67 -39v-56'], + 0xE432: [686,12,968,35,932,'932 630h-27c-67 0 -70 -5 -76 -18l-288 -594c-11 -23 -17 -30 -50 -30h-15c-23 0 -36 0 -50 29l-297 613h-94v56l160 -4c54 0 130 0 183 4v-56h-88l234 -485l231 479c-26 5 -45 6 -84 6v56l142 -4c34 0 104 3 119 4v-56'], + 0xE433: [444,6,683,36,646,'646 388c-7 0 -32 0 -44 -1c-21 -2 -22 -3 -29 -16l-179 -349c-14 -26 -23 -28 -53 -28s-40 2 -53 28l-187 366h-65v56c39 -3 78 -4 117 -4l130 4v-56h-47l137 -269l134 263c-12 4 -18 6 -44 6v56c30 -3 69 -4 99 -4c32 0 53 2 84 4v-56'], + 0xE434: [686,12,1323,33,1289,'1289 630h-23c-50 0 -65 0 -72 -18l-246 -595c-10 -24 -16 -29 -49 -29c-24 0 -39 0 -51 29l-187 454l-188 -454c-12 -28 -21 -29 -50 -29c-34 0 -39 6 -49 29l-254 613h-87v56l154 -4l180 4v-56h-91l191 -463l160 386l-32 77h-87v56l154 -4c54 0 128 0 181 4v-56h-92 l192 -463l183 443c1 3 4 9 4 12c0 8 -73 8 -80 8h-18v56l147 -4c37 0 73 1 110 4v-56'], + 0xE435: [444,6,931,33,897,'897 388c-20 0 -28 0 -43 -2c-17 -2 -18 -3 -25 -17l-151 -348c-12 -27 -27 -27 -50 -27c-24 0 -39 0 -51 28l-112 259l-112 -260c-12 -27 -29 -27 -51 -27c-23 0 -38 0 -50 27l-159 367h-60v56c6 0 74 -4 112 -4l130 4v-56h-51l110 -252l92 212c1 2 4 9 4 12s0 5 -11 28 h-60v56c30 -3 71 -4 101 -4c42 0 115 4 118 4v-56h-50l120 -277l117 271c-16 4 -24 6 -54 6v56c35 -3 69 -4 104 -4c27 0 55 2 82 4v-56'], + 0xE436: [686,0,968,47,921,'921 0l-166 4c-53 0 -137 0 -187 -4v56h72l-187 227l-187 -220c29 -7 56 -7 82 -7v-56l-162 4c-47 0 -131 -4 -139 -4v56h39c16 0 37 1 53 2c29 2 30 3 41 15l227 266l-241 291h-102v56l165 -4c53 0 138 0 188 4v-56h-72l152 -185l151 178c-30 7 -56 7 -82 7v56l162 -4 c51 0 128 4 138 4v-56h-38c-16 0 -38 -1 -54 -2c-29 -3 -30 -4 -41 -15l-190 -223l276 -334h102v-56'], + 0xE437: [444,0,683,35,648,'648 0c-37 3 -75 4 -112 4c-46 0 -127 -4 -127 -4v56h26l-111 115l-108 -108c7 -5 11 -7 27 -7v-56c-13 1 -84 4 -111 4c-32 0 -65 -1 -97 -4v56c5 0 40 0 56 1c31 2 32 3 45 15l144 145l-164 171h-75v56c38 -3 75 -4 113 -4c42 0 121 4 127 4v-56h-27l97 -101l94 95 c-7 4 -14 6 -27 6v56c8 -1 77 -4 111 -4c32 0 65 1 97 4v-56c-43 0 -69 0 -93 -7l-138 -139l179 -186h74v-56'], + 0xE438: [686,0,968,31,936,'936 630h-30c-15 0 -35 -1 -50 -2c-24 -2 -25 -3 -34 -14l-267 -340v-218h107v-56l-179 4c-9 0 -155 -2 -179 -4v56h107v218l-279 356h-101v56l168 -4c52 0 142 0 191 4v-56h-75l215 -273l209 267c-24 6 -47 6 -69 6v56l144 -4c41 0 81 1 122 4v-56'], + 0xE439: [444,200,683,29,646,'646 388c-4 0 -33 0 -45 -1c-21 -3 -22 -4 -30 -18l-227 -440c-45 -87 -123 -129 -197 -129c-66 0 -118 44 -118 100c0 43 32 65 65 65s65 -22 65 -65c0 -22 -9 -41 -26 -53c4 -1 6 -1 15 -1c35 0 89 18 122 78c3 5 33 63 39 76l-207 388h-66v56c3 0 73 -4 118 -4 c47 0 128 4 131 4v-56h-46l138 -258l129 252c-15 5 -19 6 -43 6v56c30 -3 69 -4 99 -4c28 0 56 2 84 4v-56'], + 0xE43A: [686,0,789,75,720,'720 280l-20 -280h-590c-22 0 -35 0 -35 31c0 16 0 18 10 30l441 569h-142c-62 0 -216 -4 -228 -183h-63l14 239h571c21 0 35 0 35 -30c0 -15 -1 -16 -11 -29l-439 -566h157c159 0 225 59 237 219h63'], + 0xE43B: [444,0,576,40,518,'518 203l-20 -203h-423c-19 0 -35 0 -35 28c0 12 0 14 12 27l298 343h-83c-93 0 -139 -22 -147 -130h-63l14 176h408c18 0 35 0 35 -26c0 -8 0 -14 -10 -25l-299 -342h90c118 0 150 44 160 152h63'], + 0xE43C: [656,12,647,54,592,'592 318c0 -127 -16 -330 -269 -330s-269 204 -269 330c0 122 13 338 269 338s269 -215 269 -338zM453 331c0 64 0 147 -11 194c-16 69 -81 85 -119 85c-41 0 -103 -18 -119 -83c-11 -48 -11 -127 -11 -196c0 -227 17 -242 44 -265c24 -21 54 -32 86 -32 c37 0 106 17 120 98c10 56 10 129 10 199'], + 0xE43D: [684,0,363,67,315,'315 0c-41 3 -81 4 -122 4c-45 0 -126 -4 -126 -4v56h67v291c0 39 -7 39 -64 39v56l184 8v-394h61v-56zM264 602c0 -43 -36 -81 -82 -81c-45 0 -82 36 -82 82c0 43 36 81 82 81c45 0 82 -36 82 -82'], + 0xE43E: [684,200,399,-55,304,'304 -38c0 -114 -111 -162 -201 -162c-85 0 -158 30 -158 99c0 38 28 69 70 69c38 0 69 -28 69 -69c0 -22 -9 -37 -12 -40c-2 -3 -4 -8 -4 -8c0 -3 30 -5 34 -5c53 0 82 51 82 118v382c0 40 -8 40 -74 40v56l194 8v-488zM304 602c0 -43 -36 -81 -82 -81 c-45 0 -82 36 -82 82c0 43 36 81 82 81c45 0 82 -36 82 -82'], + 0xE43F: [452,8,394,32,359,'359 148c0 -22 -51 -156 -155 -156c-62 0 -114 37 -114 90c0 9 3 21 8 34l67 173c24 60 33 82 33 105c0 19 -6 22 -16 22c-21 0 -72 -16 -103 -121c-4 -13 -11 -13 -23 -13c-9 0 -24 0 -24 14c0 22 51 156 155 156c62 0 114 -37 114 -90c0 -9 -3 -21 -8 -34l-67 -173 c-24 -60 -33 -82 -33 -105c0 -19 6 -22 16 -22c21 0 72 16 103 121c4 13 11 13 23 13c9 0 24 0 24 -14'], + 0xE440: [452,202,439,-14,413,'413 354c0 -14 -2 -23 -5 -34l-92 -366c-30 -121 -154 -156 -218 -156s-112 25 -112 72c0 39 34 72 71 72c33 0 50 -24 50 -46c0 -5 -2 -38 -34 -60c13 -2 15 -2 24 -2c51 0 90 53 107 121l96 381c3 13 6 24 6 43c0 37 -15 37 -24 37c-39 0 -95 -32 -133 -118 c-7 -15 -8 -16 -25 -16c-9 0 -24 0 -24 14c0 17 68 156 187 156c62 0 126 -33 126 -98'], + 0xE441: [715,0,1147,93,1068,'1068 42c0 -7 -5 -25 -8 -30c-7 -12 -19 -12 -27 -12c-22 0 -47 3 -70 3l-77 1l-83 -1c-24 0 -50 -3 -74 -3c-12 0 -25 9 -25 25c0 28 12 40 31 42c17 1 51 1 73 2l-31 147h-353l-102 -144c5 -1 31 -5 50 -5c8 0 35 0 35 -25c0 -3 -4 -24 -8 -30c-8 -12 -19 -12 -27 -12 c-22 0 -46 3 -68 3l-69 1c-20 0 -41 -1 -61 -1c-18 0 -39 -3 -57 -3c-12 0 -24 12 -24 25c0 0 4 23 11 32c6 10 17 10 28 10c82 0 91 13 104 31l416 585c21 29 32 32 63 32h72c26 0 42 0 49 -34l128 -613c13 -1 28 -1 41 -1h23c16 0 40 0 40 -25zM763 283l-66 317l-225 -317 h291'], + 0xE442: [686,0,1134,115,1065,'914 530c0 42 -34 89 -146 89h-229c-9 0 -19 0 -26 -1l-58 -233h223c155 0 236 80 236 145zM1065 539c0 -85 -90 -154 -239 -180c119 -14 200 -63 200 -142c0 -91 -117 -217 -363 -217h-508c-16 0 -40 0 -40 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l137 549 c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 6 3 26 10 34c8 8 15 8 34 8h482c154 0 269 -52 269 -147zM868 220c0 109 -133 109 -160 109h-267l-65 -262h257c147 0 235 70 235 153'], + 0xE443: [705,19,1088,98,1078,'1078 683c0 -4 -2 -11 -3 -15l-57 -225c-6 -24 -7 -27 -39 -27h-20c-16 0 -37 0 -37 22l1 24c0 89 -66 176 -215 176c-150 0 -252 -46 -308 -91c-111 -88 -139 -234 -139 -299c0 -71 22 -120 86 -157c65 -37 153 -43 207 -43c164 0 294 83 325 179c9 30 10 31 45 31 c22 0 42 0 42 -22c0 -6 -11 -57 -54 -108c-83 -98 -238 -147 -395 -147c-272 0 -419 116 -419 291c0 196 195 433 588 433c32 0 153 0 249 -72l101 72c21 0 42 0 42 -22'], + 0xE444: [686,0,1210,110,1151,'1151 418c0 -203 -194 -418 -529 -418h-472c-16 0 -40 0 -40 25c0 5 4 26 10 34c8 8 15 8 34 8h33l50 2l137 549c-11 1 -26 1 -37 1h-33c-14 0 -40 0 -40 25c0 0 4 25 11 34c8 8 15 8 34 8h484c192 0 358 -80 358 -268zM996 440c0 49 -9 101 -75 141 c-45 27 -114 38 -184 38h-194c-9 0 -19 0 -26 -1l-137 -551h221c106 0 211 23 282 88c90 81 113 229 113 285'], + 0xE445: [678,0,1057,106,1020,'1020 511c0 -37 -9 -39 -42 -39c-25 0 -41 0 -42 32c-3 52 -27 85 -69 96c-35 9 -94 11 -123 11h-199c-9 0 -19 0 -26 -1l-56 -225h97c83 0 113 9 131 63c7 20 17 20 42 20c16 0 42 0 42 -25l-4 -16l-40 -162c-7 -30 -14 -30 -44 -30c-19 0 -42 0 -42 25c0 6 3 16 3 21 c0 27 -8 37 -92 37h-110l-62 -251h222c150 0 224 24 299 147c9 15 14 15 40 15c19 0 42 0 42 -25c0 -7 -11 -26 -18 -39l-86 -148c-10 -17 -14 -17 -39 -17h-698c-16 0 -40 0 -40 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l135 541c-11 1 -26 1 -37 1h-32 c-17 0 -40 0 -40 25c0 6 3 26 10 34c8 8 15 8 34 8h677c34 0 40 -6 40 -39v-128'], + 0xE446: [678,0,882,106,1000,'1000 511c0 -37 -9 -39 -42 -39c-38 0 -40 8 -42 35c-6 91 -64 104 -184 104h-187c-9 0 -19 0 -26 -1l-59 -237h92c84 0 110 10 128 63c7 20 17 20 42 20c16 0 42 0 42 -25l-4 -16l-40 -162c-7 -30 -14 -30 -44 -30c-19 0 -42 0 -42 25c0 6 3 15 3 22c0 26 -7 36 -89 36 h-105l-59 -238c16 0 32 -1 48 -1h50c16 0 40 0 40 -25c0 -4 -4 -24 -9 -31c-8 -11 -18 -11 -28 -11c-29 0 -61 3 -91 3l-97 1l-86 -1c-26 0 -54 -3 -80 -3c-13 0 -25 11 -25 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l135 541c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25 c0 6 3 26 10 34c8 8 15 8 34 8h657c34 0 40 -6 40 -39v-128'], + 0xE447: [705,19,1153,98,1078,'1078 683c0 -4 -2 -11 -3 -15l-57 -225c-6 -24 -7 -27 -39 -27h-20c-16 0 -37 0 -37 22l1 24c0 89 -66 176 -215 176c-188 0 -288 -72 -322 -102c-109 -100 -125 -243 -125 -287c0 -175 171 -201 319 -201c85 0 186 3 204 63l22 90l-62 2h-71c-17 0 -40 0 -40 25 c0 4 4 25 9 32c9 10 17 10 29 10c34 0 70 -3 104 -3l111 -1l83 1c25 0 51 3 75 3c13 0 25 -12 25 -25c0 0 -3 -25 -11 -33c-8 -9 -14 -9 -33 -9h-24c-9 0 -40 0 -43 -4c-4 -6 -37 -144 -42 -164c-5 -21 -8 -35 -26 -35c-7 0 -44 17 -64 30c-70 -46 -178 -49 -285 -49 c-68 0 -208 0 -316 67c-81 50 -127 124 -127 224c0 196 195 433 588 433c32 0 153 0 249 -72l101 72c21 0 42 0 42 -22'], + 0xE448: [686,0,1259,106,1250,'1250 661c0 0 -3 -25 -11 -34c-8 -8 -15 -8 -34 -8h-32c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17l-133 -533c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -5 -5 -25 -9 -30c-7 -12 -18 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3 c-13 0 -25 11 -25 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l63 254h-451l-63 -255c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -5 -5 -25 -9 -30c-7 -12 -18 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3c-13 0 -25 11 -25 25c0 4 3 25 11 33 c8 9 13 9 33 9h33l50 2l137 549c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 8 4 24 8 30c7 12 19 12 27 12c27 0 56 -3 83 -3l83 -1l79 1c27 0 55 3 81 3c16 0 26 -14 26 -25c0 0 -3 -25 -11 -34c-8 -8 -15 -8 -34 -8h-32c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17 l-53 -211h451l57 228c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 8 4 24 8 30c7 12 19 12 27 12c27 0 56 -3 83 -3l83 -1l79 1c27 0 55 3 81 3c16 0 26 -14 26 -25'], + 0xE449: [686,0,659,100,653,'653 661c0 0 -3 -24 -11 -33s-13 -9 -33 -9h-36c-10 0 -27 0 -37 -1c-14 -1 -15 -2 -19 -17l-133 -533c12 -1 27 -1 39 -1h35c17 0 40 0 40 -25c0 -8 -4 -24 -8 -30c-7 -12 -19 -12 -27 -12c-28 0 -59 3 -88 3l-83 1l-86 -1c-26 0 -54 -3 -80 -3c-17 0 -26 15 -26 25 c0 0 3 25 11 34c8 8 15 8 34 8l81 1c2 1 4 1 7 1l137 549c-12 1 -27 1 -39 1h-36c-14 0 -40 0 -40 25c0 4 4 23 9 30c8 12 17 12 27 12c27 0 56 -3 83 -3l88 -1l86 1c26 0 54 3 80 3c14 0 25 -11 25 -25'], + 0xE44A: [686,19,826,113,848,'848 661c0 -3 -1 -40 -29 -42c0 0 -56 0 -69 -1l-118 -473c-25 -102 -137 -164 -303 -164c-55 0 -216 3 -216 111c0 68 54 106 101 106c40 0 71 -28 71 -67c0 -38 -26 -69 -40 -80c37 -14 77 -14 85 -14c69 0 139 31 161 118l116 463c-17 0 -34 1 -51 1h-53 c-16 0 -40 0 -40 25c0 6 4 24 9 30c7 12 17 12 27 12c31 0 64 -3 95 -3l90 -1l72 1c22 0 46 3 67 3c15 0 25 -14 25 -25'], + 0xE44B: [686,0,1253,106,1237,'1237 661c0 -4 -4 -26 -11 -34c-9 -8 -12 -8 -30 -8c-48 0 -97 -8 -139 -32l-316 -179l253 -325c10 -11 11 -12 23 -14c16 -2 25 -2 40 -2c23 0 45 0 45 -25c0 -8 -5 -25 -8 -29c-7 -13 -19 -13 -26 -13l-63 3l-69 1l-82 -1c-24 0 -50 -3 -74 -3c-17 0 -26 15 -26 25 c0 0 2 32 20 40c9 4 30 1 53 3l-210 270l-193 -109l-40 -161c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -4 -4 -23 -9 -30c-8 -12 -17 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3c-14 0 -25 11 -25 25c0 0 3 24 11 33s13 9 33 9h33l50 2l137 549 c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 8 4 24 8 30c7 12 19 12 27 12c27 0 56 -3 83 -3l83 -1l79 1c27 0 55 3 81 3c17 0 26 -15 26 -25c0 0 -3 -25 -11 -34c-8 -8 -15 -8 -34 -8h-32c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17l-68 -272l508 288v1 c-22 0 -45 2 -45 26c0 8 4 24 8 30c7 12 19 12 27 12c24 0 51 -3 76 -3l83 -1c18 0 37 1 55 1c14 0 53 3 53 3c11 0 23 -10 23 -25'], + 0xE44C: [686,0,1011,106,887,'887 204c0 -6 -11 -28 -17 -42l-65 -139c-11 -23 -15 -23 -42 -23h-617c-16 0 -40 0 -40 25c0 5 4 26 10 34c8 8 15 8 34 8h33l50 2l137 549c-11 1 -26 1 -37 1h-33c-14 0 -40 0 -40 25c0 0 4 23 9 30c7 12 19 12 27 12c19 0 68 -3 87 -3l83 -1l94 1c29 0 61 3 90 3 c19 0 27 -15 27 -25c0 0 -3 -24 -11 -33s-14 -9 -33 -9h-50c-21 0 -54 0 -61 -3c0 0 -2 -2 -5 -15l-133 -534h154c118 0 208 31 267 148c8 14 17 14 40 14c19 0 42 0 42 -25'], + 0xE44D: [686,0,1460,119,1479,'1479 661c0 0 -3 -25 -11 -33c-8 -9 -14 -9 -33 -9h-33c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17l-133 -533c13 -1 24 -1 36 -1h33c16 0 40 0 40 -25c0 -5 -4 -24 -9 -30c-7 -12 -18 -12 -27 -12c-24 0 -51 3 -76 3l-77 1l-73 -1c-25 0 -51 -3 -75 -3 c-14 0 -25 11 -25 25c0 5 4 26 10 34c8 8 15 8 34 8h33l50 2l137 547h-1l-472 -589c-22 -27 -47 -27 -60 -27c-24 0 -39 2 -49 34l-171 567h-1l-132 -528c27 -6 62 -6 68 -6c17 0 40 0 40 -25c0 -5 -4 -24 -8 -30c-8 -12 -20 -12 -27 -12l-69 3l-69 1l-65 -1 c-22 0 -46 -3 -67 -3c-11 0 -24 10 -24 25c0 6 4 25 10 32c6 10 15 10 36 10c8 0 49 0 82 9l136 542c-11 1 -26 1 -37 1h-33c-14 0 -40 0 -40 25c0 0 4 25 11 34c8 8 15 8 34 8h204c26 0 42 0 52 -34l165 -546l444 553c22 27 46 27 64 27h192c14 0 40 0 40 -25'], + 0xE44E: [686,0,1218,106,1250,'1250 661c0 -3 -4 -24 -10 -32c-7 -10 -15 -10 -38 -10c-4 0 -48 0 -81 -9l-145 -580c-7 -30 -13 -30 -48 -30c-32 0 -33 0 -47 18l-431 547l-123 -492c27 -6 62 -6 65 -6c18 0 43 0 43 -25c0 -14 -5 -42 -35 -42l-69 3l-69 1l-65 -1c-22 0 -46 -3 -67 -3 c-11 0 -24 10 -24 25c0 6 4 25 9 32c9 10 15 10 37 10c8 0 49 0 82 9l136 542c-7 1 -17 1 -26 1h-43c-17 0 -40 0 -40 25c0 6 3 26 10 34c8 8 15 8 34 8h194c25 0 27 0 40 -16l382 -485l106 425c0 4 -1 5 -28 7c-17 2 -35 2 -38 2c-17 0 -40 0 -40 25c0 23 9 42 34 42 c22 0 47 -3 69 -3l69 -1l65 1c22 0 46 3 67 3c14 0 25 -13 25 -25'], + 0xE44F: [705,19,1103,95,1044,'1044 423c0 -202 -186 -442 -563 -442c-254 0 -386 109 -386 276c0 183 173 448 566 448c233 0 383 -97 383 -282zM884 453c0 26 0 106 -75 152c-59 35 -123 38 -164 38c-379 0 -384 -380 -384 -399c0 -156 117 -199 236 -199c334 0 387 322 387 408'], + 0xE450: [686,0,937,110,1060,'1060 517c0 -127 -163 -235 -373 -235h-246l-53 -214c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -5 -4 -24 -9 -30c-7 -12 -18 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3c-13 0 -25 11 -25 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l137 549 c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 6 3 26 10 34c8 8 15 8 34 8h466c169 0 285 -62 285 -169zM895 530c0 40 -14 57 -48 72c-32 14 -81 17 -115 17h-189c-9 0 -19 0 -26 -1l-68 -275h214c61 0 119 9 164 36c48 31 68 110 68 151'], + 0xE451: [705,194,1144,95,1044,'1044 423c0 -157 -112 -338 -341 -410c31 -40 61 -40 95 -40c97 0 104 18 110 33c2 6 7 19 24 19c15 0 25 -13 25 -25c0 -41 -80 -194 -216 -194c-104 0 -121 93 -138 184c-60 -9 -106 -9 -122 -9c-254 0 -386 109 -386 276c0 183 173 448 566 448 c233 0 383 -97 383 -282zM889 443c0 160 -125 200 -244 200c-341 0 -394 -315 -394 -404c0 -39 3 -135 122 -178c4 79 90 104 145 104c60 0 99 -29 143 -92c225 90 228 356 228 370zM588 52c-16 50 -44 57 -71 57c-41 0 -88 -16 -88 -46c0 -20 39 -20 67 -20c14 0 49 0 92 9 '], + 0xE452: [686,19,1133,110,1120,'878 530c0 41 -17 62 -62 76c-33 10 -77 13 -117 13h-156c-9 0 -19 0 -26 -1l-61 -247h180c112 0 162 26 176 34c41 26 66 78 66 125zM1120 104c0 -19 -39 -123 -177 -123c-79 0 -219 8 -219 118c0 18 5 35 16 82c5 19 13 49 13 59c0 55 -71 75 -138 75h-174l-61 -247 c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -6 -5 -25 -9 -30c-7 -12 -18 -12 -27 -12c-25 0 -53 3 -78 3l-83 1l-82 -1c-24 0 -51 -3 -75 -3c-14 0 -25 11 -25 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l137 549c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 6 3 26 10 34 c8 8 15 8 34 8h413c177 0 322 -55 322 -162c0 -60 -43 -138 -218 -186c74 -39 74 -98 74 -118l-5 -102c0 -64 25 -81 60 -81c21 0 61 12 81 71c8 22 19 22 42 22c16 0 42 0 42 -26'], + 0xE453: [705,19,918,114,887,'887 683c0 -6 -2 -11 -3 -16l-46 -181c-7 -28 -11 -28 -44 -28c-27 0 -42 0 -42 27c0 16 0 18 1 20c0 109 -89 139 -192 139c-154 0 -219 -74 -219 -128c0 -19 7 -37 34 -54c29 -17 47 -21 132 -36l101 -18c40 -7 46 -8 65 -14c87 -29 137 -90 137 -162 c0 -80 -78 -251 -341 -251c-90 0 -186 11 -247 51l-56 -45c-9 -6 -12 -6 -24 -6c-6 0 -29 0 -29 22c0 8 51 208 53 213c6 12 15 12 40 12c21 0 41 0 41 -22c0 0 0 -6 -2 -11c-4 -19 -4 -20 -4 -34c0 -47 27 -76 80 -93c49 -17 112 -20 154 -20c183 0 228 98 228 141 c0 56 -59 79 -115 89l-126 23c-80 14 -130 23 -179 65c-24 21 -49 56 -49 106c0 91 93 233 331 233c38 0 138 -2 207 -54l58 45c10 8 11 9 26 9c6 0 30 0 30 -22'], + 0xE454: [669,0,857,78,992,'992 629l-10 -131c-3 -35 -14 -35 -43 -35c-22 0 -42 0 -42 28c0 7 0 16 1 20c-1 73 -25 91 -128 91h-110c-17 0 -19 0 -23 -1c-2 -1 -3 -2 -7 -16l-125 -500c-2 -9 -3 -11 -3 -14c0 0 1 -3 26 -3c10 0 19 -1 29 -1h61c16 0 40 0 40 -25c0 -6 -4 -25 -9 -31 c-7 -11 -17 -11 -28 -11c-33 0 -68 3 -101 3l-111 1l-110 -1c-32 0 -66 -3 -97 -3c-19 0 -27 14 -27 25c0 6 3 26 10 34c8 8 15 8 34 8h61c23 0 60 0 67 3c0 0 2 2 6 15l130 517h-124c-102 0 -150 -18 -195 -114c-11 -25 -12 -25 -44 -25c-19 0 -42 0 -42 25c0 4 0 5 6 19 l58 137c11 25 17 25 42 25h769c26 0 42 0 39 -40'], + 0xE455: [686,19,1050,112,1082,'1082 661c0 -3 -4 -24 -10 -32c-7 -10 -15 -10 -38 -10c-4 0 -48 0 -81 -9l-96 -385c-28 -114 -152 -244 -410 -244c-245 0 -328 105 -328 207c0 22 3 34 7 52l51 201c4 18 42 171 42 174c0 4 -12 4 -35 4h-32c-17 0 -40 0 -40 25c0 8 4 24 8 30c7 12 19 12 27 12 c27 0 56 -3 83 -3l83 -1l79 1c27 0 55 3 81 3c16 0 26 -13 26 -25c0 0 -4 -25 -11 -34c-8 -8 -15 -8 -34 -8h-32c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17l-95 -378c-5 -20 -7 -28 -7 -57c0 -27 3 -71 61 -97c33 -14 70 -21 127 -21c140 0 274 47 310 192l92 370 c0 4 -1 5 -28 7c-17 2 -35 2 -38 2c-17 0 -40 0 -40 25c0 23 9 42 34 42l70 -3l69 -1l67 1c22 0 46 3 67 3c13 0 25 -12 25 -25'], + 0xE456: [686,19,906,119,1131,'1131 661c0 0 -3 -26 -13 -35c-7 -7 -13 -7 -31 -7c-70 0 -83 -14 -96 -31l-433 -577c-23 -30 -42 -30 -64 -30h-74c-41 0 -43 10 -50 36l-148 585c-4 14 -5 15 -14 16c-13 1 -21 1 -29 1h-20c-17 0 -40 0 -40 25c0 26 11 42 34 42l70 -3l74 -1l83 1c24 0 50 3 74 3 c13 0 25 -11 25 -25c0 0 0 -39 -29 -42c-17 -1 -51 -1 -73 -2l133 -528l394 525c-17 3 -32 5 -47 5c-9 0 -35 0 -35 25c0 8 2 42 35 42c22 0 46 -3 68 -3l69 -1c19 0 38 1 56 1c19 0 39 3 57 3c12 0 24 -13 24 -25'], + 0xE457: [686,19,1429,116,1537,'1537 661c0 0 -3 -26 -13 -35c-7 -7 -12 -7 -31 -7c-64 -1 -72 -13 -85 -32l-384 -575c-21 -31 -37 -31 -61 -31h-60c-40 0 -42 10 -46 36l-76 454l-307 -461c-19 -29 -40 -29 -61 -29h-59c-33 0 -42 4 -47 36l-98 584l-2 14c-2 4 -13 4 -41 4c-29 0 -50 0 -50 25 c0 26 11 42 34 42l68 -3l69 -1l81 1c24 0 50 3 74 3c13 0 25 -11 25 -25c0 -5 -4 -26 -10 -33c-6 -6 -7 -7 -33 -9h-12c-17 -1 -35 -1 -52 -2l86 -512l316 475s-4 33 -7 37c-3 2 -31 2 -41 2c-29 0 -31 0 -37 4c-7 5 -12 13 -12 21c0 3 4 21 8 30c7 12 21 12 27 12 c15 0 53 -3 68 -3l69 -1l79 1c24 0 51 3 75 3c16 0 26 -14 26 -25c0 0 -3 -25 -11 -33c-6 -6 -7 -7 -32 -9h-12l-52 -2l85 -512l339 508c-9 2 -39 6 -63 6c-11 0 -35 0 -35 25c0 12 3 42 35 42c22 0 47 -3 70 -3l69 -1c18 0 36 1 54 1c16 0 34 3 49 3c12 0 24 -13 24 -25'], + 0xE458: [686,0,1223,93,1164,'1164 661c0 0 -4 -23 -11 -32c-6 -10 -14 -10 -36 -10c-91 0 -111 -17 -130 -33l-251 -208l211 -298c8 -10 9 -11 23 -12c13 -1 15 -1 33 -1h26c14 0 40 0 40 -25c0 -8 -2 -42 -35 -42c-23 0 -49 3 -73 3l-77 1l-83 -1c-26 0 -54 -3 -80 -3c-15 0 -26 13 -26 25 c0 14 7 34 19 40c10 4 13 0 56 4l-150 212l-254 -211c15 -2 28 -2 43 -3c12 -1 23 -12 23 -25c0 -5 -4 -24 -9 -30c-7 -12 -18 -12 -27 -12c-24 0 -50 3 -74 3l-77 1l-66 -1c-20 0 -42 -3 -62 -3c-11 0 -24 10 -24 25c0 6 4 25 10 32c6 10 14 10 36 10c83 0 109 14 131 33 l301 250l-182 256c-8 10 -9 11 -23 12c-16 1 -18 1 -33 1h-25c-17 0 -40 0 -40 25c0 5 4 24 8 30c8 12 20 12 27 12c23 0 49 -3 73 -3l77 -1l83 1c26 0 54 3 80 3c12 0 25 -9 25 -25c0 0 -1 -32 -19 -40c-10 -4 -20 0 -56 -4l121 -170l203 169c-15 2 -28 2 -43 3 c-12 1 -23 12 -23 25c0 3 4 24 9 30c8 12 17 12 27 12c24 0 50 -3 74 -3l77 -1l66 1c20 0 42 3 62 3c15 0 25 -14 25 -25'], + 0xE459: [686,0,902,99,1110,'1110 661c0 -6 -3 -27 -12 -35c-7 -7 -12 -7 -33 -7c-82 -1 -103 -18 -120 -33l-364 -312l-51 -206c11 -1 26 -1 37 -1h33c14 0 40 0 40 -25c0 0 -4 -23 -9 -30c-7 -12 -20 -12 -27 -12c-25 0 -53 3 -79 3l-83 1l-81 -1c-24 0 -51 -3 -75 -3c-14 0 -25 11 -25 25 c0 4 3 25 11 33c8 9 13 9 33 9h33c11 0 25 0 35 1c14 1 15 2 19 17l48 189l-221 332c-7 11 -8 11 -22 12c-12 1 -14 1 -33 1h-25c-17 0 -40 0 -40 25c0 5 4 24 8 30c8 12 20 12 27 12c25 0 52 -3 77 -3l77 -1l88 1c26 0 54 3 80 3c13 0 25 -11 25 -25c0 -15 -6 -35 -21 -40 c-6 -3 -44 -2 -57 -3l163 -246l285 245l-42 3c-15 5 -18 19 -18 24c0 8 2 42 35 42c22 0 46 -3 68 -3l74 -1c21 0 42 1 62 1c18 0 39 3 57 3c8 0 23 -8 23 -25'], + 0xE45A: [686,0,1018,119,1004,'1004 667c0 -3 -2 -31 -21 -47l-646 -547h195c94 0 223 6 281 139c12 28 13 28 45 28c17 0 42 0 42 -25c0 -6 -66 -184 -73 -201c-7 -14 -19 -14 -38 -14h-636c-18 0 -34 0 -34 19c0 7 4 23 6 30c3 9 4 10 16 20l648 550h-182c-78 0 -123 -11 -150 -20 c-81 -30 -104 -79 -115 -105c-7 -14 -18 -14 -40 -14c-16 0 -42 0 -42 25c0 0 0 5 5 18l48 135c9 26 13 28 42 28h614c19 0 35 0 35 -19'], + 0xE45B: [454,10,869,88,794,'530 325c0 6 -17 73 -112 73c-59 0 -112 -29 -141 -76c-33 -55 -53 -163 -53 -192c0 -68 47 -84 96 -84c70 0 123 39 143 60c17 18 17 20 22 38l42 166c1 2 3 15 3 15zM794 148c0 -18 -46 -158 -161 -158c-21 0 -103 3 -141 52c-35 -23 -95 -52 -178 -52 c-132 0 -226 62 -226 181c0 129 115 283 331 283c51 0 102 -11 143 -43c3 3 24 24 55 24c26 0 55 -16 55 -53c0 -11 -10 -50 -17 -75c-8 -33 -52 -200 -52 -219c0 -32 21 -42 37 -42c41 0 62 74 67 95c8 29 11 29 45 29c22 0 42 0 42 -22'], + 0xE45C: [694,10,699,97,648,'648 273c0 -127 -113 -283 -331 -283c-131 0 -220 61 -220 179c0 30 11 74 20 110l48 194l36 145c-11 1 -37 0 -48 1c-6 1 -27 3 -27 25c0 5 4 24 9 31c4 6 10 11 30 12l142 6c2 1 3 1 8 1c23 0 28 -16 28 -25c0 -6 0 -8 -4 -22l-56 -224c42 21 89 31 140 31 c130 0 225 -61 225 -181zM512 314c0 66 -44 84 -95 84c-55 0 -118 -26 -159 -80c0 0 -40 -133 -40 -182c0 -54 28 -90 101 -90c43 0 107 17 145 84c24 45 48 149 48 184'], + 0xE45D: [454,10,706,89,672,'672 63c0 -20 -42 -50 -125 -63c-61 -10 -130 -10 -168 -10c-55 0 -130 0 -197 36c-58 31 -93 83 -93 152c0 122 120 276 370 276c110 0 181 -34 181 -102c0 -49 -38 -91 -87 -91c-47 0 -63 35 -63 58c0 0 0 41 34 67c-28 12 -52 12 -68 12c-61 0 -119 -19 -162 -63 c-46 -48 -66 -151 -66 -191c0 -98 98 -98 150 -98c133 0 188 18 230 57c4 3 9 8 18 8c14 0 46 -35 46 -48'], + 0xE45E: [694,10,829,88,794,'794 148c0 -18 -46 -158 -161 -158c-21 0 -103 3 -141 52c-35 -23 -95 -52 -178 -52c-132 0 -226 62 -226 181c0 129 115 283 331 283c49 0 96 -9 135 -37l49 201c-11 1 -37 0 -48 1c-6 1 -27 3 -27 25c0 6 4 24 9 31c4 6 10 11 30 12l142 6c2 1 3 1 8 1 c23 0 28 -16 28 -25c0 -6 0 -8 -4 -22l-134 -533c-4 -16 -4 -21 -4 -26c0 -32 21 -42 37 -42c41 0 62 74 67 95c8 29 11 29 45 29c22 0 42 0 42 -22zM530 325c0 6 -17 73 -112 73c-59 0 -112 -29 -141 -76c-33 -55 -53 -163 -53 -192c0 -68 47 -84 96 -84 c70 0 123 39 143 60c17 18 17 20 22 38l42 166c1 2 3 15 3 15'], + 0xE45F: [454,10,746,89,672,'672 63c0 -20 -42 -50 -125 -63c-61 -10 -130 -10 -168 -10c-54 0 -129 0 -195 35c-68 36 -95 93 -95 153c0 123 122 276 369 276c127 0 186 -47 186 -109c0 -65 -51 -112 -142 -133c-61 -14 -142 -18 -215 -18h-32h-18c-7 -1 -9 -42 -9 -50c0 -98 98 -98 150 -98 c133 0 188 18 230 57c4 3 9 8 18 8c14 0 46 -35 46 -48zM550 343c0 38 -45 55 -94 55c-159 0 -197 -113 -208 -148c96 0 147 4 178 9c32 5 124 20 124 84'], + 0xE460: [704,204,724,109,747,'747 610c0 -55 -44 -90 -87 -90c-36 0 -62 24 -62 59c0 3 0 37 31 64c-7 2 -15 5 -29 5c-15 0 -35 -7 -42 -31c-2 -6 -5 -19 -16 -83l-15 -90h135c16 0 40 0 40 -25c0 -5 -4 -26 -10 -34c-8 -8 -15 -8 -34 -8h-141l-45 -281c-2 -14 -26 -162 -69 -217 c-23 -29 -78 -83 -154 -83c-61 0 -140 24 -140 94c0 55 44 90 87 90c36 0 62 -24 62 -59c0 -4 -1 -39 -31 -65c3 -1 13 -4 25 -4c27 0 44 34 49 45c11 23 24 95 31 136l56 344h-112c-16 0 -40 0 -40 25c0 4 3 25 11 33c8 9 13 9 33 9h119c17 110 22 149 48 190 c34 52 95 70 154 70c74 0 146 -28 146 -94'], + 0xE461: [454,204,744,68,688,'546 327c0 8 -17 71 -112 71c-67 0 -113 -36 -132 -64c-42 -60 -59 -172 -59 -196c0 -14 1 -43 25 -62c11 -9 34 -20 70 -20c22 0 88 4 141 58c19 18 19 20 24 37l41 162c1 3 2 10 2 14zM688 382c0 -6 0 -8 -5 -27l-105 -424c-33 -135 -229 -135 -306 -135 c-82 0 -204 0 -204 85c0 47 40 89 87 89c30 0 62 -18 62 -59c0 -18 -7 -35 -17 -50l-1 -3c0 -6 64 -6 72 -6c29 0 69 0 114 20c54 24 62 57 68 78c15 58 5 21 20 80c-47 -21 -92 -30 -140 -30c-150 0 -227 76 -227 178c0 121 111 276 329 276c34 0 93 -4 144 -42 c5 5 25 23 54 23c26 0 55 -16 55 -53'], + 0xE462: [694,10,911,102,836,'836 148c0 -36 -69 -158 -199 -158c-73 0 -144 32 -144 94c0 16 6 30 14 49c16 38 64 150 64 205c0 23 -2 60 -71 60c-141 0 -225 -173 -228 -185l-42 -168c-7 -26 -34 -55 -72 -55c-32 0 -56 23 -56 53c0 5 0 7 5 26l136 549c-11 1 -37 0 -48 1c-6 1 -27 3 -27 25 c0 6 4 24 9 31c4 6 10 11 30 12l142 6c2 1 3 1 8 1c23 0 28 -16 28 -25c0 -6 0 -8 -4 -22l-67 -267c92 73 162 74 195 74c46 0 188 -4 188 -129c0 -55 -48 -168 -66 -210c-11 -26 -11 -28 -11 -40c0 -11 1 -29 24 -29c40 0 89 41 107 100c7 24 12 24 43 24c22 0 42 0 42 -22 '], + 0xE463: [695,10,596,73,521,'521 148c0 -36 -69 -158 -199 -158c-70 0 -143 30 -143 94c0 9 0 15 6 32l50 115l50 115c1 4 4 15 4 23c0 23 -11 29 -24 29c-41 0 -89 -41 -107 -100c-7 -24 -12 -24 -43 -24c-22 0 -42 0 -42 22c0 36 69 158 199 158c70 0 143 -30 143 -94c0 -9 0 -15 -6 -32l-50 -115 l-50 -115c-1 -4 -4 -15 -4 -23c0 -23 11 -29 24 -29c41 0 89 41 107 100c7 24 12 24 43 24c22 0 42 0 42 -22zM446 634c0 -44 -43 -84 -86 -84c-40 0 -62 31 -62 60c0 44 43 85 86 85c32 0 62 -21 62 -61'], + 0xE464: [695,204,613,14,547,'513 352c0 -13 -2 -23 -5 -33l-91 -361c-37 -145 -217 -162 -271 -162c-96 0 -132 45 -132 86c0 45 38 88 87 88c30 0 62 -18 62 -59c0 -29 -17 -52 -24 -59c72 0 133 46 151 116l91 362c4 16 4 21 4 26c0 26 -12 42 -39 42c-43 0 -111 -30 -148 -107 c-8 -17 -13 -17 -42 -17c-22 0 -42 0 -42 22c0 26 82 158 239 158c84 0 160 -33 160 -102zM547 634c0 -40 -40 -84 -87 -84c-31 0 -61 21 -61 60c0 48 45 85 86 85c38 0 62 -29 62 -61'], + 0xE465: [694,10,830,102,755,'755 148c0 -27 -56 -158 -177 -158c-71 0 -162 25 -162 102c0 10 4 25 4 25s2 10 2 18c0 42 -51 55 -155 59c-18 -75 -20 -80 -32 -131c-5 -19 -19 -73 -77 -73c-32 0 -56 23 -56 53c0 5 0 7 5 26l136 549c-11 1 -37 0 -48 1c-6 1 -27 3 -27 25c0 5 4 24 9 31 c4 6 10 11 30 12l142 6c2 1 3 1 8 1c23 0 28 -16 28 -25c0 -6 0 -8 -4 -22l-95 -378c24 12 44 21 111 73c72 56 145 112 224 112c71 0 98 -58 98 -107c0 -79 -52 -107 -90 -107c-36 0 -62 24 -62 59c0 4 2 66 69 84c-1 15 -15 15 -19 15c-55 0 -113 -41 -137 -58 c-45 -32 -85 -67 -125 -92c75 -8 195 -21 195 -114c0 0 0 -11 -3 -26c-3 -11 -3 -16 -3 -19c0 -30 19 -43 41 -43c32 0 65 33 85 101c7 23 12 23 43 23c22 0 42 0 42 -22'], + 0xE466: [694,10,508,74,393,'393 148c0 -19 -47 -158 -161 -158c-74 0 -158 28 -158 102c0 13 2 22 5 33l123 493c-11 1 -37 0 -48 1c-6 1 -27 3 -27 25c0 4 4 24 9 31c4 6 10 11 30 12l142 6c2 1 3 1 8 1c23 0 28 -16 28 -25c0 -6 0 -8 -4 -22l-134 -533c-4 -16 -4 -21 -4 -26c0 -30 18 -42 37 -42 c41 0 62 75 67 95c8 29 11 29 45 29c22 0 42 0 42 -22'], + 0xE467: [454,10,1402,73,1327,'1327 148c0 -36 -69 -158 -199 -158c-73 0 -144 32 -144 94c0 16 6 30 14 49c16 38 64 150 64 205c0 23 -2 60 -71 60c-76 0 -139 -49 -188 -116c-35 -48 -39 -64 -43 -80l-39 -157c-10 -32 -40 -55 -73 -55c-28 0 -55 19 -55 53c0 8 10 49 16 73l17 67l20 78 c6 26 14 58 14 77c0 29 -7 60 -72 60c-81 0 -143 -56 -184 -111c-38 -52 -43 -69 -47 -85l-39 -157c-10 -32 -40 -55 -73 -55c-28 0 -55 19 -55 53c0 6 6 29 9 44l54 216c4 18 11 44 11 53c0 31 -19 42 -37 42c-41 0 -62 -74 -67 -95c-8 -29 -11 -29 -45 -29 c-22 0 -42 0 -42 22c0 18 46 158 161 158c30 0 139 -6 156 -85c94 82 171 85 207 85c42 0 160 -3 185 -95c86 79 155 95 218 95c46 0 188 -4 188 -129c0 -55 -48 -169 -66 -210c-11 -26 -11 -28 -11 -40c0 -11 1 -29 24 -29c40 0 88 40 107 100c7 24 12 24 43 24 c22 0 42 0 42 -22'], + 0xE468: [454,10,999,73,924,'924 148c0 -36 -69 -158 -199 -158c-72 0 -144 32 -144 94c0 16 6 30 14 49c16 38 64 150 64 205c0 23 -2 60 -71 60c-76 0 -139 -49 -188 -116c-35 -48 -39 -64 -43 -80l-39 -157c-10 -32 -40 -55 -73 -55c-28 0 -55 19 -55 53c0 6 6 29 9 44l54 216c4 18 11 44 11 53 c0 31 -19 42 -37 42c-41 0 -62 -74 -67 -95c-8 -29 -11 -29 -45 -29c-22 0 -42 0 -42 22c0 18 46 158 161 158c32 0 139 -7 156 -85c94 82 169 85 207 85c46 0 188 -4 188 -129c0 -55 -48 -168 -66 -210c-11 -26 -11 -28 -11 -40c0 -11 1 -29 24 -29c40 0 88 41 107 100 c7 24 12 24 43 24c22 0 42 0 42 -22'], + 0xE469: [454,10,779,89,728,'728 266c0 -118 -115 -276 -372 -276c-189 0 -267 86 -267 188c0 118 115 276 372 276c189 0 267 -86 267 -188zM589 300c0 72 -52 98 -131 98c-78 0 -131 -31 -154 -54c-69 -67 -76 -187 -76 -200c0 -72 52 -98 131 -98c78 0 131 31 154 54c69 67 76 187 76 200'], + 0xE46A: [454,194,829,73,779,'779 273c0 -129 -115 -283 -331 -283c-49 0 -96 9 -135 37l-38 -153c13 -1 41 0 49 -1c6 -1 27 -3 27 -25c0 -6 -1 -42 -34 -42c-19 0 -41 3 -60 3c-20 0 -39 1 -59 1c-17 0 -35 -1 -52 -1c-16 0 -34 -3 -49 -3c-12 0 -24 12 -24 25c0 0 2 32 20 40c8 3 40 2 53 3 l114 456c4 16 4 20 4 26c0 32 -21 42 -37 42c-41 0 -62 -74 -67 -95c-8 -29 -11 -29 -45 -29c-22 0 -42 0 -42 22c0 18 46 158 161 158c21 0 103 -3 141 -52c35 23 95 52 178 52c132 0 226 -62 226 -181zM643 314c0 68 -47 84 -96 84c-70 0 -123 -39 -143 -60 c-17 -18 -17 -20 -22 -38l-42 -166c-1 -2 -3 -15 -3 -15c0 -6 17 -73 112 -73c59 0 112 29 141 76c33 55 53 163 53 192'], + 0xE46B: [454,194,727,88,684,'684 429c0 -6 0 -8 -4 -22l-134 -533c13 -1 41 0 49 -1c6 -1 27 -3 27 -25s-10 -42 -34 -42c-19 0 -40 3 -59 3c-21 0 -42 1 -64 1c-20 0 -40 -1 -60 -1c-18 0 -39 -3 -57 -3c-10 0 -24 9 -24 25c0 19 7 39 25 41c6 1 51 1 68 2l36 147c-42 -21 -89 -31 -140 -31 c-130 0 -225 61 -225 181c0 129 116 283 330 283c62 0 111 -16 144 -44c31 28 93 44 97 44c14 0 25 -11 25 -25zM529 325c0 4 -7 35 -40 55c-26 16 -56 18 -72 18c-43 0 -107 -17 -145 -84c-24 -45 -48 -149 -48 -184c0 -66 44 -84 95 -84c46 0 101 18 143 60 c17 18 17 19 22 38l42 166c1 2 3 15 3 15'], + 0xE46C: [454,10,733,73,701,'701 337c0 -68 -50 -97 -88 -97c-36 0 -62 24 -62 59c0 7 3 54 51 78c-15 16 -35 21 -57 21c-78 0 -124 -63 -143 -88c-10 -14 -29 -47 -31 -52c-2 -10 -9 -36 -11 -43c-3 -15 -13 -53 -16 -68l-26 -102c-10 -32 -40 -55 -73 -55c-28 0 -55 19 -55 53c0 6 6 29 9 44 l54 216c4 18 11 44 11 53c0 34 -22 42 -37 42c-41 0 -62 -74 -67 -95c-8 -29 -11 -29 -45 -29c-22 0 -42 0 -42 22c0 19 46 158 161 158c17 0 120 -1 151 -69c47 43 103 69 165 69c79 0 151 -42 151 -117'], + 0xE46D: [454,10,705,98,608,'608 364c0 -52 -42 -83 -78 -83c-28 0 -56 19 -56 53c0 25 14 45 22 54c-31 10 -59 10 -79 10c-142 0 -142 -63 -142 -67c0 -29 51 -36 116 -45c72 -10 110 -15 153 -41c30 -18 52 -47 52 -86c0 -52 -39 -107 -90 -133c-67 -34 -132 -36 -189 -36c-82 0 -219 4 -219 100 c0 58 44 94 88 94c36 0 62 -25 62 -59c0 -25 -16 -53 -32 -67c36 -12 94 -12 109 -12c187 0 187 77 187 84c0 36 -63 45 -143 56c-64 9 -98 14 -136 39c-21 15 -42 40 -42 77c0 9 0 152 234 152c46 0 183 0 183 -90'], + 0xE46E: [645,10,618,63,544,'544 148c0 -27 -83 -158 -238 -158c-90 0 -161 35 -161 102l68 285h-110c-14 0 -40 0 -40 25c0 0 4 25 11 34c8 8 15 8 34 8h122c17 66 16 65 33 131c4 16 18 70 76 70c36 0 56 -25 56 -53c0 -8 -11 -50 -17 -75l-18 -73h110c14 0 40 0 40 -25c0 0 -3 -25 -11 -33 c-8 -9 -14 -9 -33 -9h-123l-66 -263c-4 -16 -4 -21 -4 -26c0 -28 15 -42 40 -42c40 0 109 28 147 107c8 17 13 17 42 17c22 0 42 0 42 -22'], + 0xE46F: [454,10,959,73,884,'884 148c0 -18 -46 -158 -161 -158c-18 0 -108 2 -144 56c-76 -56 -136 -56 -159 -56c-52 0 -203 5 -203 146c0 42 16 90 57 184c15 34 15 36 15 49c0 11 -1 29 -24 29c-40 0 -88 -40 -107 -100c-7 -24 -12 -24 -43 -24c-22 0 -42 0 -42 22c0 36 69 158 199 158 c73 0 144 -32 144 -94c0 -17 -4 -26 -24 -73c-38 -88 -49 -130 -49 -166c0 -21 0 -75 84 -75c50 0 96 29 132 74c15 19 15 21 21 43l54 216c17 65 69 65 75 65c34 0 56 -24 56 -52c0 -7 -2 -16 -4 -23l-54 -216c-5 -22 -14 -56 -14 -65c0 -32 21 -42 37 -42 c41 0 62 74 67 95c8 29 11 29 45 29c22 0 42 0 42 -22'], + 0xE470: [455,10,793,73,721,'721 344c0 -146 -114 -354 -284 -354c-99 0 -219 25 -219 150c0 35 10 74 56 180c15 34 15 36 15 49c0 11 -1 29 -24 29c-41 0 -89 -41 -107 -100c-7 -24 -12 -24 -43 -24c-22 0 -42 0 -42 22c0 36 69 158 199 158c73 0 144 -32 144 -94c0 -17 -8 -34 -15 -51 c-43 -99 -57 -142 -57 -182c0 -25 1 -81 101 -81c117 0 180 196 180 222c0 25 -25 39 -38 47c-14 7 -35 20 -35 54c0 45 45 86 85 86c10 0 84 -7 84 -111'], + 0xE471: [455,10,1125,73,1043,'1043 344c0 -99 -75 -354 -264 -354c-62 0 -143 9 -191 62c-57 -62 -115 -62 -140 -62c-51 0 -230 3 -230 152c0 35 13 78 51 165c8 21 20 48 20 62c0 11 -1 29 -24 29c-40 0 -88 -41 -107 -100c-7 -24 -12 -24 -43 -24c-22 0 -42 0 -42 22c0 36 69 158 199 158 c73 0 144 -32 144 -94c0 -17 -7 -31 -13 -45c-41 -97 -58 -143 -58 -185c0 -33 6 -84 112 -84c19 0 60 0 103 79c0 38 1 40 13 91l27 109c6 21 15 59 17 65c10 32 41 54 72 54c34 0 56 -24 56 -52c0 -16 -31 -133 -38 -159c-19 -74 -21 -87 -21 -106c0 -23 0 -81 101 -81 c37 0 74 17 109 79c33 59 51 132 51 143c0 25 -25 39 -38 47c-14 7 -35 20 -35 54c0 45 45 86 85 86c13 0 84 -9 84 -111'], + 0xE472: [454,10,866,65,779,'779 148c0 -41 -75 -158 -246 -158c-70 0 -123 15 -162 49c-35 -31 -87 -49 -138 -49c-79 0 -150 42 -150 117c0 68 50 97 88 97c36 0 62 -24 62 -59c0 -7 -3 -54 -51 -78c16 -18 41 -21 54 -21c27 0 48 12 60 21c27 19 32 41 37 62c3 8 3 10 31 122c8 32 20 80 20 95 c0 34 -24 52 -78 52c-68 0 -136 -41 -155 -100c-8 -24 -11 -24 -44 -24c-22 0 -42 0 -42 22c0 41 76 158 245 158c45 0 117 -7 162 -49c32 28 83 49 138 49c80 0 151 -42 151 -117c0 -68 -50 -97 -88 -97c-36 0 -62 24 -62 59c0 7 3 54 51 78c-17 18 -40 21 -54 21 c-27 0 -49 -11 -69 -27c-20 -17 -25 -37 -30 -57c-22 -85 -9 -37 -30 -122c-8 -31 -20 -79 -20 -95c0 -40 36 -51 79 -51c65 0 135 40 155 100c8 24 11 24 44 24c22 0 42 0 42 -22'], + 0xE473: [454,204,817,73,764,'764 392c0 -8 0 -10 -4 -24l-95 -379c-25 -99 -153 -193 -331 -193c-34 0 -172 0 -172 90c0 46 38 90 88 90c36 0 62 -25 62 -59c0 0 -1 -30 -19 -53c-2 -1 -4 -6 -4 -6c0 -3 32 -6 48 -6c76 0 182 51 207 172c-34 -19 -69 -34 -124 -34c-44 0 -203 2 -203 146 c0 42 17 92 57 184c15 34 15 36 15 49c0 11 -1 29 -24 29c-40 0 -88 -40 -107 -100c-7 -24 -12 -24 -43 -24c-22 0 -42 0 -42 22c0 36 69 158 199 158c73 0 144 -32 144 -94c0 -17 -5 -28 -24 -73c-38 -87 -49 -129 -49 -166c0 -21 0 -75 84 -75c90 0 146 95 147 99l32 126 l27 108c17 65 69 65 75 65c34 0 56 -24 56 -52'], + 0xE474: [454,10,756,74,684,'684 160c0 -7 -12 -68 -79 -117c-55 -40 -117 -53 -159 -53c-38 0 -67 12 -102 29c-32 16 -61 31 -92 31c-10 0 -56 0 -97 -49c-9 -10 -10 -11 -39 -11c-22 0 -42 0 -42 22c0 21 73 94 131 137c96 73 174 109 276 187c-21 -1 -72 -6 -93 -7c-30 -2 -106 -2 -137 -6 c-12 -3 -14 -4 -19 -11c-8 -10 -13 -10 -38 -10c-20 0 -42 0 -42 22c0 42 72 130 188 130c36 0 64 -10 100 -28c31 -16 62 -32 93 -32c14 0 27 11 54 47c10 12 11 13 41 13c22 0 42 0 42 -22c0 -20 -69 -92 -147 -150c-84 -61 -174 -107 -262 -176c27 0 34 1 143 10 c15 1 51 1 65 2h18c61 5 100 8 113 45c7 19 15 19 42 19c20 0 42 0 42 -22'], + 0xE475: [454,10,596,73,521,'521 148c0 -36 -69 -158 -199 -158c-70 0 -143 30 -143 94c0 9 0 15 6 32l50 115l50 115c1 4 4 15 4 23c0 23 -11 29 -24 29c-41 0 -89 -41 -107 -100c-7 -24 -12 -24 -43 -24c-22 0 -42 0 -42 22c0 36 69 158 199 158c70 0 143 -30 143 -94c0 -9 0 -15 -6 -32l-50 -115 l-50 -115c-1 -4 -4 -15 -4 -23c0 -23 11 -29 24 -29c41 0 89 41 107 100c7 24 12 24 43 24c22 0 42 0 42 -22'], + 0xE476: [454,204,572,14,513,'513 352c0 -13 -2 -23 -5 -33l-91 -362c-32 -126 -177 -161 -259 -161c-106 0 -144 43 -144 86c0 45 38 88 87 88c30 0 62 -18 62 -59c0 -26 -14 -46 -17 -51c-3 -3 -4 -6 -4 -6s10 -2 17 -2c45 0 111 35 131 116l91 362c4 16 4 21 4 26c0 28 -15 42 -40 42 c-40 0 -109 -28 -147 -107c-8 -17 -13 -17 -42 -17c-22 0 -42 0 -42 22c0 27 83 158 238 158c90 0 161 -35 161 -102'], + 0xE477: [710,0,976,61,928,'928 34c0 -34 -23 -34 -31 -34c-22 0 -47 3 -69 3l-69 1l-79 -1c-24 0 -50 -3 -74 -3c-16 0 -23 14 -23 22c0 0 2 19 10 27c6 6 7 7 33 7c11 0 54 0 54 7c0 4 0 6 -2 14l-24 123h-308l-94 -136c19 -8 43 -8 49 -8c8 0 30 0 30 -22c0 -26 -14 -34 -30 -34 c-27 0 -93 4 -120 4c-32 0 -68 -4 -99 -4c-10 0 -21 9 -21 22c0 34 21 34 36 34c71 1 82 17 96 37l409 588c20 29 30 29 63 29c32 0 44 0 50 -32l116 -604c3 -16 4 -16 15 -17c13 -1 26 -1 39 -1c24 0 43 0 43 -22zM643 256l-56 290l-201 -290h257'], + 0xE478: [686,0,969,71,939,'793 541c0 89 -95 89 -118 89h-181c-16 0 -18 0 -24 -1c-5 -1 -6 -2 -10 -16l-58 -233h183c138 0 208 89 208 161zM939 543c0 -80 -79 -159 -225 -184c110 -13 179 -63 179 -140c0 -89 -103 -219 -329 -219h-456c-16 0 -37 0 -37 22c0 6 0 22 13 30c4 4 6 4 36 4 c14 0 33 0 47 1c18 2 19 3 23 18l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 22 34 40 34h433c150 0 238 -56 238 -143zM742 229c0 105 -101 105 -129 105h-223l-69 -278h213c140 0 208 87 208 173'], + 0xE479: [702,16,920,68,943,'943 684c0 0 0 -3 -4 -17l-55 -221c-6 -25 -9 -25 -38 -25c-22 0 -36 0 -36 20c0 8 2 19 2 27c0 91 -60 178 -190 178c-67 0 -184 -14 -274 -98c-110 -102 -128 -282 -128 -320c0 -58 16 -101 55 -133c57 -49 145 -55 189 -55c112 0 261 57 304 197c5 16 13 16 31 16 c14 0 32 0 32 -18c0 -5 -11 -53 -51 -104c-66 -82 -195 -147 -346 -147c-199 0 -366 82 -366 280c0 202 187 438 536 438c76 0 153 -20 209 -71l97 71c16 0 33 0 33 -18'], + 0xE47A: [686,0,1042,68,1009,'1009 429c0 -209 -180 -429 -481 -429h-423c-16 0 -37 0 -37 22c0 6 0 22 13 30c4 4 6 4 36 4c14 0 33 0 47 1c18 2 19 3 23 18l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 22 34 40 34h434c149 0 310 -64 310 -257zM864 461c0 26 0 85 -58 128 c-54 39 -134 41 -162 41h-147c-16 0 -18 0 -24 -1c-5 -1 -6 -2 -10 -16l-139 -557h178c100 0 189 27 256 95c75 77 106 251 106 310'], + 0xE47B: [679,0,903,67,902,'902 662l-14 -188c-2 -25 -3 -34 -32 -34c-9 0 -31 0 -31 22l1 34c0 102 -41 127 -167 127h-158c-9 0 -22 0 -30 -1l-60 -242h73c83 0 110 14 131 87c6 22 14 23 32 23c9 0 32 0 32 -22c0 -5 0 -7 -4 -21l-52 -205c-5 -21 -7 -28 -33 -28c-9 0 -32 0 -32 22c0 3 0 4 2 9 c0 0 5 23 5 37c0 30 -10 42 -84 42h-84l-67 -268h186c161 0 219 53 286 186c13 25 14 27 36 27c9 0 32 0 32 -22c0 -4 0 -6 -9 -22l-97 -205c-4 -9 -6 -12 -11 -15c-5 -5 -10 -5 -28 -5h-621c-17 0 -37 0 -37 22c0 34 18 34 49 34c14 0 33 0 47 1c18 2 19 3 23 18l135 543 c0 3 -2 3 -7 4c-13 1 -31 1 -44 1c-28 0 -48 0 -48 22c0 8 5 23 11 28c6 6 12 6 30 6h602c15 0 33 0 37 -17'], + 0xE47C: [679,0,759,67,885,'885 662l-14 -188c-2 -25 -3 -34 -32 -34c-9 0 -31 0 -31 22c0 3 1 18 1 36c0 98 -36 125 -161 125h-147c-9 0 -22 0 -30 -1l-63 -254h70c80 0 108 15 128 87c6 22 14 23 32 23c9 0 32 0 32 -22c0 -5 0 -7 -4 -21l-52 -205c-5 -21 -7 -28 -33 -28c-9 0 -32 0 -32 22 c0 4 1 5 3 13s4 22 4 34c0 29 -8 41 -82 41h-80l-64 -254h9c7 -1 39 -2 48 -2h33c17 0 37 0 37 -22c0 -34 -22 -34 -33 -34c-29 0 -61 3 -90 3l-90 1l-80 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22c0 6 0 22 13 30c4 4 6 4 36 4c14 0 33 0 47 1c18 2 19 3 23 18l135 543 c0 3 -2 3 -7 4c-13 1 -31 1 -44 1c-29 0 -48 0 -48 22c0 9 4 22 11 28c6 6 10 6 30 6h585c15 0 33 0 37 -17'], + 0xE47D: [702,16,988,68,943,'943 684c0 0 0 -3 -4 -17l-55 -221c-6 -25 -9 -25 -38 -25c-22 0 -36 0 -36 20c0 8 2 19 2 27c0 91 -60 178 -190 178c-67 0 -184 -14 -274 -98c-104 -96 -127 -265 -127 -317c0 -48 9 -105 71 -147c58 -38 137 -44 184 -44c57 0 146 9 175 68l19 76c3 10 7 29 7 29 s-1 3 -15 4c-11 1 -39 2 -52 2h-47c-17 0 -37 0 -37 22c0 34 22 34 33 34c33 0 68 -2 101 -3l101 -1l73 1c21 0 46 3 67 3c14 0 23 -11 23 -22c0 -12 -4 -23 -13 -30c-4 -4 -6 -4 -35 -4c-12 0 -29 0 -41 -1c-7 -2 -8 -3 -12 -17l-45 -177c-4 -14 -6 -24 -19 -24 c-9 0 -56 24 -77 41c-65 -55 -185 -57 -241 -57c-241 0 -373 106 -373 280c0 202 187 438 536 438c76 0 153 -20 209 -71l97 71c16 0 33 0 33 -18'], + 0xE47E: [686,0,1087,67,1114,'1114 664c0 -34 -22 -34 -40 -34h-20c-20 0 -50 -3 -56 -3l-138 -553c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22c0 6 0 22 13 30c4 4 6 4 36 4 c15 0 33 0 47 1c18 2 19 3 23 18l63 254h-377l-64 -255c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22c0 6 0 22 13 30c4 4 6 4 36 4c15 0 33 0 47 1 c18 2 19 3 23 18l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 24 34 32 34c25 0 53 -3 79 -3l77 -1l79 1c24 0 50 3 74 3c14 0 23 -11 23 -22c0 -34 -22 -34 -40 -34h-20c-20 0 -50 -3 -56 -3l-60 -242h378l56 227c1 3 3 13 3 13c0 3 0 5 -42 5h-20 c-16 0 -37 0 -37 22c0 34 24 34 32 34c25 0 53 -3 79 -3l77 -1l79 1c24 0 50 3 74 3c14 0 23 -11 23 -22'], + 0xE47F: [686,0,560,61,593,'593 664c0 -34 -21 -34 -40 -34h-22c-20 0 -39 -1 -59 -3l-142 -569c15 -1 34 -2 46 -2h22c16 0 38 0 38 -22c0 -34 -25 -34 -32 -34c-25 0 -54 2 -79 3l-83 1l-83 -1c-24 -1 -51 -3 -74 -3c-18 0 -24 14 -24 22c0 9 4 22 11 28c6 6 10 6 30 6h22c14 0 27 0 41 1 c16 2 17 3 21 18l138 553c-8 0 -40 2 -46 2h-22c-16 0 -37 0 -37 22c0 34 23 34 32 34c24 0 53 -2 78 -3l83 -1l78 1c26 0 54 3 80 3c14 0 23 -11 23 -22'], + 0xE480: [686,16,701,74,750,'750 664c0 -34 -23 -34 -31 -34c-24 0 -43 0 -58 -2l-120 -483c-26 -103 -137 -161 -279 -161c-111 0 -188 37 -188 109c0 63 50 99 94 99c37 0 66 -25 66 -63c0 0 0 -55 -53 -83c33 -16 70 -16 78 -16c64 0 122 40 142 121l119 477l-59 2h-36c-16 0 -37 0 -37 22 c0 34 24 34 33 34c28 0 60 -2 89 -3l90 -1l66 1c20 0 43 3 62 3c12 0 22 -10 22 -22'], + 0xE481: [686,0,1079,67,1097,'1097 664c0 -33 -22 -34 -30 -34c-60 -1 -80 -11 -108 -24c-22 -10 -24 -12 -24 -12l-286 -179l216 -342c8 -13 11 -17 55 -17c16 0 38 0 38 -22c0 0 -3 -19 -8 -25c-7 -9 -16 -9 -23 -9c-18 0 -40 2 -58 3c-16 1 -48 1 -64 1l-78 -1c-24 -1 -51 -3 -74 -3 c-19 0 -24 16 -24 22c0 34 24 34 35 34c0 0 24 0 41 3l-177 280l-151 -94l-43 -171c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22c0 6 0 22 13 30 c4 4 6 4 36 4c14 0 33 0 47 1c18 2 19 3 23 18l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 24 34 32 34c25 0 53 -3 79 -3l77 -1l79 1c24 0 50 3 74 3c14 0 23 -11 23 -22c0 -34 -22 -34 -40 -34h-20c-20 0 -50 -3 -56 -3l-76 -304l486 304c-9 1 -36 3 -38 4 c0 0 -18 3 -18 21c0 34 23 34 31 34c21 0 48 -2 69 -3c17 -1 52 -1 69 -1c26 0 57 4 82 4c8 0 20 -8 20 -22'], + 0xE482: [686,0,852,67,781,'781 247c0 -4 -12 -33 -18 -49l-26 -64l-47 -118c-7 -16 -15 -16 -37 -16h-549c-17 0 -37 0 -37 22c0 34 18 34 49 34c14 0 33 0 47 1c18 2 19 3 23 18l137 550c0 3 -3 3 -8 4c-13 1 -31 1 -44 1c-28 0 -47 0 -47 22c0 0 3 19 8 26c7 7 13 8 24 8c26 0 55 -3 81 -3l77 -1 l91 1c28 0 58 3 85 3c22 0 25 -19 25 -22c0 -8 -5 -23 -11 -28c-6 -6 -12 -6 -30 -6h-33c-51 0 -66 -4 -66 -4s-2 -2 -6 -15l-139 -555h121c176 0 230 112 265 191c9 20 12 22 33 22c8 0 32 0 32 -22'], + 0xE483: [686,0,1264,74,1320,'1320 664c0 -34 -22 -34 -40 -34h-20c-20 0 -50 -3 -56 -3l-138 -553c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34l-70 3c-18 1 -58 1 -77 1l-70 -1c-23 0 -49 -3 -72 -3c-18 0 -23 15 -23 22c0 6 0 22 13 30c4 4 6 4 36 4 c15 0 33 0 47 1c18 2 19 3 23 18l137 551h-1l-447 -600c-19 -26 -39 -26 -48 -26c-28 0 -31 13 -36 34l-144 578h-1l-132 -531c-1 -6 -3 -11 -4 -17c21 -7 44 -8 61 -8c16 0 37 0 37 -22c0 -27 -15 -34 -30 -34c-26 0 -93 4 -119 4c-36 0 -81 -4 -115 -4 c-15 0 -22 13 -22 22s4 23 10 29c7 5 13 5 26 5c4 0 34 0 56 5c24 5 26 7 30 23l134 541c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 22 34 40 34h192c33 0 40 -4 47 -34l131 -531l401 537c21 28 37 28 60 28h181c16 0 37 0 37 -22'], + 0xE484: [686,0,1051,67,1114,'1114 664c0 -34 -21 -34 -41 -34c-11 0 -50 0 -77 -13l-147 -587c-6 -26 -8 -30 -38 -30c-22 0 -23 1 -35 17l-391 567l-126 -503c-1 -6 -3 -11 -4 -17c21 -7 44 -8 61 -8c16 0 37 0 37 -22c0 -27 -15 -34 -30 -34c-26 0 -93 4 -119 4c-36 0 -81 -4 -115 -4 c-15 0 -22 13 -22 22s4 23 10 29c7 5 13 5 26 5c4 0 34 0 56 5c24 5 26 7 30 23l136 545c-11 1 -26 1 -38 1h-26c-16 0 -37 0 -37 22c0 34 22 34 40 34h190c26 0 27 -1 39 -18l326 -473l107 427c-10 3 -26 8 -66 8c-11 0 -33 0 -33 22c0 14 5 34 30 34c27 0 93 -4 120 -4 c36 0 81 4 115 4c12 0 22 -10 22 -22'], + 0xE485: [702,16,938,65,906,'906 433c0 -200 -170 -449 -509 -449c-198 0 -332 88 -332 264c0 193 168 454 511 454c194 0 330 -89 330 -269zM756 473c0 78 -28 111 -52 134c-12 10 -56 44 -141 44c-92 0 -178 -40 -232 -102c-95 -112 -111 -292 -111 -326c0 -56 15 -106 50 -137 c49 -46 111 -49 140 -49c108 0 193 57 237 115c90 117 109 277 109 321'], + 0xE486: [686,0,802,68,934,'934 525c0 -110 -121 -233 -349 -233h-195l-55 -218c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22c0 6 0 22 13 30c4 4 6 4 36 4c15 0 33 0 47 1 c18 2 19 3 23 18l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 22 34 40 34h418c152 0 251 -59 251 -161zM780 548c0 61 -56 82 -144 82h-139c-16 0 -18 0 -24 -1c-5 -1 -6 -2 -10 -16l-67 -270h168c51 0 120 8 160 47c49 49 56 158 56 158'], + 0xE487: [702,194,974,65,906,'906 433c0 -123 -74 -335 -320 -419c29 -49 55 -49 81 -49c42 0 92 6 104 37c4 9 9 20 23 20c12 0 22 -10 22 -22c0 -31 -68 -194 -196 -194c-102 0 -109 95 -116 187c-8 -1 -53 -9 -107 -9c-198 0 -332 88 -332 264c0 193 168 454 511 454c194 0 330 -89 330 -269z M760 464c0 49 -12 103 -52 138c-50 45 -113 49 -145 49c-71 0 -164 -25 -235 -104c-94 -106 -117 -281 -117 -328c0 -74 26 -133 95 -164c0 80 85 105 128 105c71 0 101 -52 122 -90c193 94 204 377 204 394zM498 47c-9 57 -34 67 -64 67c-40 0 -82 -23 -82 -53 c0 -26 36 -26 57 -26c11 0 44 0 89 12'], + 0xE488: [686,16,969,68,978,'769 545c0 20 -1 52 -52 71c-12 4 -38 14 -101 14h-119c-16 0 -18 0 -24 -1c-5 -1 -6 -2 -10 -16l-62 -247h146c98 0 145 26 163 40c49 39 59 115 59 139zM978 102c0 -17 -37 -118 -157 -118c-89 0 -202 17 -202 114c0 18 4 33 17 83c5 20 12 49 12 60 c0 38 -29 79 -114 79h-144l-62 -246c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-24 0 -51 3 -76 3l-77 1l-74 -1c-24 0 -51 -3 -75 -3c-18 0 -23 15 -23 22c0 6 0 22 13 30c4 4 6 4 36 4c15 0 33 0 47 1c18 2 19 3 23 18 l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 22 34 40 34h374c151 0 286 -48 286 -158c0 -60 -45 -143 -211 -189c75 -35 78 -89 78 -111c0 -13 -4 -47 -6 -71c-3 -21 -6 -48 -6 -59c0 -59 26 -68 51 -68c37 0 72 34 84 72c6 21 12 22 32 22c9 0 31 0 31 -22'], + 0xE489: [702,16,776,80,782,'782 684c0 -5 -2 -11 -3 -16l-47 -188c-5 -22 -13 -22 -33 -22c-17 0 -32 0 -32 20c0 4 2 13 2 30c0 114 -89 143 -174 143c-138 0 -183 -86 -183 -129c0 -61 71 -76 95 -81l84 -17c96 -19 123 -25 171 -73c3 -3 40 -45 40 -108c0 -89 -81 -259 -308 -259 c-76 0 -160 14 -212 54c-30 -24 -49 -40 -58 -46c-8 -6 -10 -8 -21 -8c-10 0 -23 3 -23 18c0 5 52 211 52 211c4 15 14 15 31 15c13 0 31 0 31 -18c0 0 0 -2 -1 -6c-5 -22 -5 -24 -5 -41c0 -104 122 -123 211 -123c152 0 190 104 190 144c0 69 -71 84 -104 90l-102 21 c-58 12 -101 20 -147 68c-8 9 -37 44 -37 99c0 95 91 240 299 240c63 0 132 -13 180 -56l56 46c13 9 13 10 25 10c4 0 23 0 23 -18'], + 0xE48A: [673,0,719,39,860,'860 651c0 0 -1 -9 -2 -15l-21 -170c-4 -32 -16 -32 -34 -32c-9 0 -31 0 -31 23c0 4 2 17 3 21c3 25 3 27 3 48c0 91 -52 91 -159 91c-22 0 -61 0 -65 -2c0 0 -2 -2 -6 -15l-136 -542l65 -2h42c16 0 38 0 38 -22c0 -34 -24 -34 -33 -34c-32 0 -66 2 -98 3l-102 1l-98 -1 c-32 0 -66 -3 -97 -3c-21 0 -25 17 -25 22c0 9 4 22 11 28c6 6 10 6 30 6h42c25 0 66 0 75 4c0 0 2 2 6 16l135 541h-94c-129 0 -163 -49 -204 -155c-9 -24 -10 -28 -34 -28c-10 0 -32 0 -32 22c0 4 3 15 5 19l65 174c9 24 16 24 40 24h673c16 0 38 0 38 -22'], + 0xE48B: [686,16,894,78,956,'956 664c0 -34 -21 -34 -41 -34c-11 0 -50 0 -77 -13l-98 -392c-30 -118 -146 -241 -367 -241c-210 0 -295 95 -295 200c0 19 0 20 5 42l61 246c5 17 38 147 38 153c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 24 34 32 34c25 0 53 -3 79 -3l77 -1l79 1c24 0 50 3 74 3 c14 0 23 -11 23 -22c0 -34 -22 -34 -40 -34h-20c-20 0 -50 -3 -56 -3l-101 -408c-10 -40 -10 -60 -10 -67c0 -83 67 -112 160 -112c128 0 253 54 289 196l97 386c-10 3 -26 8 -66 8c-11 0 -33 0 -33 22c0 14 5 34 30 34c27 0 94 -4 121 -4c26 0 90 4 116 4 c12 0 22 -10 22 -22'], + 0xE48C: [686,16,763,84,984,'984 664c0 -34 -22 -34 -34 -34c-59 -1 -78 -12 -97 -38l-424 -582c-19 -26 -36 -26 -63 -26c-36 0 -44 0 -52 33l-137 595c-4 15 -5 16 -16 17c-13 1 -29 1 -34 1c-24 0 -43 0 -43 22c0 34 23 34 31 34c20 0 44 -2 65 -3l69 -1l79 1c24 1 51 3 74 3c14 0 23 -11 23 -22 c0 -33 -22 -34 -34 -34c-5 0 -40 -1 -62 -3l113 -489l354 485c-19 7 -47 7 -47 7c-8 0 -30 0 -30 22c0 26 14 34 30 34c27 0 93 -4 120 -4c30 0 65 4 94 4c10 0 21 -9 21 -22'], + 0xE48D: [686,16,1224,82,1341,'1341 664c0 -34 -21 -34 -33 -34c-62 -1 -73 -17 -87 -38l-384 -580c-16 -25 -24 -28 -55 -28c-36 0 -39 5 -44 34l-73 454l-304 -460c-19 -28 -31 -28 -56 -28c-28 0 -39 0 -44 34l-95 593c-3 16 -4 17 -12 18c-11 1 -21 1 -34 1c-19 0 -38 0 -38 22c0 34 22 34 30 34 c20 0 44 -3 65 -3l64 -1l76 1c24 0 50 3 74 3c18 0 24 -15 24 -22c0 0 -2 -20 -10 -28c-6 -6 -8 -6 -34 -6c-13 0 -19 0 -34 -1c-19 -2 -20 -3 -20 -8l1 -13l72 -449l254 385c7 10 7 12 7 12l-11 72c-12 1 -39 2 -52 2c-8 0 -30 1 -30 22c0 0 3 19 8 25c7 8 12 9 23 9 c20 0 44 -3 64 -3l64 -1l77 1c24 0 50 3 74 3c15 0 23 -12 23 -22c0 -33 -22 -34 -33 -34c-30 -1 -45 -1 -66 -4l75 -467l305 463c-20 6 -40 8 -61 8c-7 0 -30 0 -30 22c0 27 16 34 31 34c28 0 96 -4 124 -4c27 0 59 4 85 4c5 0 20 -5 20 -22'], + 0xE48E: [686,0,1053,57,1036,'1036 664c0 -8 -4 -34 -24 -34c-103 -1 -114 -11 -169 -60l-168 -154l-31 -29l7 -12l176 -304c7 -12 8 -13 24 -14c13 -1 26 -1 39 -1c22 0 43 0 43 -22c0 -28 -17 -34 -31 -34c-22 0 -48 3 -71 3l-69 1l-82 -1c-23 -1 -51 -3 -74 -3c-17 0 -24 13 -24 22 c0 30 19 33 26 34c12 1 35 2 52 4l-131 224l-243 -221c14 -4 27 -7 47 -7c26 -1 26 -22 26 -22c0 -27 -16 -34 -31 -34c-22 0 -47 2 -69 3l-69 1c-25 0 -86 -4 -111 -4c-12 0 -22 10 -22 22c0 34 21 34 39 34c81 1 108 19 128 37l273 248l-160 274c-7 12 -8 13 -24 14 c-13 1 -26 1 -39 1c-22 0 -42 0 -42 22c0 34 24 34 31 34c22 0 47 -3 70 -3l69 -1l83 1c19 1 57 3 74 3c11 0 23 -7 23 -22c0 -7 -2 -33 -26 -34c-27 -1 -31 -1 -52 -4l106 -182l197 179c-15 5 -29 7 -43 7c-8 0 -29 1 -29 22c0 34 24 34 31 34c21 0 46 -2 68 -3l69 -1 c25 0 86 4 111 4c9 0 22 -6 22 -22'], + 0xE48F: [686,0,759,62,970,'970 664c0 0 -2 -19 -10 -27c-6 -7 -10 -7 -27 -7c-44 -1 -81 -7 -112 -37l-331 -319l-54 -216c21 -1 38 -2 59 -2c24 0 42 -1 42 -22c0 -34 -25 -34 -32 -34c-24 0 -52 3 -76 3l-77 1l-74 -1c-24 0 -51 -3 -75 -3c-18 0 -23 15 -23 22c0 5 0 20 11 29c5 5 7 5 30 5 c25 0 50 1 75 3l54 215l-184 340c-7 13 -8 14 -22 15c-13 1 -26 1 -39 1c-23 0 -43 0 -43 22c0 34 24 34 31 34c21 0 47 -2 68 -3c19 -1 55 -1 74 -1l80 1c26 0 54 3 80 3c17 0 24 -13 24 -22c0 -16 -8 -32 -23 -34c-6 0 -31 1 -58 -2l146 -271l280 269c-16 4 -32 4 -35 4 c-6 0 -29 0 -29 22c0 14 5 34 30 34c27 0 95 -4 122 -4c31 0 67 4 97 4c10 0 21 -9 21 -22'], + 0xE490: [686,0,865,84,884,'884 669c0 -9 -4 -26 -18 -39l-588 -569h165c157 0 229 51 283 201c6 18 17 18 31 18c9 0 31 0 31 -22c0 -3 0 -4 -4 -16l-72 -216c-5 -15 -7 -21 -20 -26h-576c-19 0 -32 0 -32 17c0 12 5 29 19 43l589 570h-150c-115 0 -213 -28 -265 -165c-7 -18 -17 -18 -31 -18 c-9 0 -32 0 -32 22c0 0 0 4 5 17l61 190c7 10 19 10 35 10h536c18 0 33 0 33 -17'], + 0xE491: [452,8,722,58,677,'455 346c0 7 -21 60 -94 60c-48 0 -97 -28 -125 -82c-27 -51 -54 -169 -54 -207c0 -55 33 -79 79 -79c50 0 95 27 118 49c16 15 16 17 20 33l54 212c1 4 2 10 2 14zM677 148c0 -6 -33 -156 -141 -156c-54 0 -106 21 -127 52c-20 -16 -74 -52 -154 -52 c-102 0 -197 50 -197 172c0 133 110 288 303 288c66 0 104 -26 120 -41c2 2 24 24 54 24s53 -19 53 -50c0 -7 -8 -40 -13 -60l-39 -156c-8 -30 -20 -78 -20 -91c0 -15 3 -40 27 -40c39 0 57 61 70 106c5 21 8 22 32 22c15 0 32 0 32 -18'], + 0xE492: [694,8,586,64,562,'562 280c0 -131 -108 -288 -304 -288c-110 0 -194 55 -194 170c0 15 0 28 6 56l65 262l22 88l14 57c0 5 -13 5 -32 5c-14 0 -35 0 -35 22c0 33 23 34 36 35l134 6s3 1 7 1c23 0 26 -17 26 -22s0 -7 -4 -21l-57 -228c21 11 64 29 119 29c102 0 197 -50 197 -172zM438 327 c0 55 -33 79 -79 79c-21 0 -77 -4 -132 -64c-2 -2 -8 -24 -11 -36l-21 -87c-13 -49 -17 -66 -17 -96c0 -16 0 -85 81 -85c48 0 98 29 125 82c27 51 54 169 54 207'], + 0xE493: [452,8,584,59,576,'576 80c0 -18 -51 -57 -109 -72c-53 -15 -102 -16 -157 -16c-49 0 -251 0 -251 180c0 125 115 280 337 280c103 0 158 -40 158 -96c0 -45 -34 -84 -80 -84c-40 0 -56 28 -56 52c0 16 9 51 43 70c-4 2 -29 12 -65 12c-63 0 -114 -28 -143 -65c-52 -66 -67 -188 -67 -209 c0 -94 87 -94 119 -94c149 0 194 43 219 67c7 6 11 10 18 10c11 0 34 -24 34 -35'], + 0xE494: [694,8,687,58,677,'677 148c0 -6 -33 -156 -141 -156c-54 0 -106 21 -127 52c-20 -16 -74 -52 -154 -52c-102 0 -197 50 -197 172c0 133 110 288 303 288c41 0 81 -10 113 -35l48 194c2 8 3 14 3 14c0 5 -14 5 -32 5c-14 0 -35 0 -35 22c0 33 23 34 36 35l134 6s3 1 7 1c23 0 26 -17 26 -22 s0 -7 -4 -21l-136 -540c-5 -19 -5 -22 -5 -33c0 -15 3 -40 27 -40c39 0 57 61 70 106c5 21 8 22 32 22c15 0 32 0 32 -18zM455 347c0 5 -20 59 -94 59c-48 0 -97 -28 -125 -82c-27 -51 -54 -169 -54 -207c0 -55 33 -79 79 -79c76 0 131 59 135 70c2 5 2 11 4 17l52 208'], + 0xE495: [452,8,625,61,576,'576 80c0 -18 -51 -57 -109 -72c-53 -15 -102 -16 -157 -16c-50 0 -249 0 -249 184c0 143 128 276 335 276c94 0 158 -39 158 -102c0 -62 -46 -103 -118 -124c-48 -14 -119 -19 -190 -19h-49c-5 -24 -10 -53 -10 -72c0 -97 87 -97 118 -97c149 0 194 43 219 67 c7 6 11 10 18 10c11 0 34 -24 34 -35zM479 349c0 34 -34 57 -85 57c-140 0 -175 -118 -185 -153c104 0 270 0 270 96'], + 0xE496: [702,202,632,76,682,'682 616c0 -49 -40 -82 -79 -82c-31 0 -56 20 -56 53c0 14 8 41 27 57c2 3 6 7 6 7s-20 5 -29 5c-27 0 -39 -23 -39 -23c-6 -14 -21 -114 -35 -189h124c16 0 37 0 37 -22c0 -34 -21 -34 -40 -34h-130l-49 -287c-1 -9 -24 -144 -62 -205c-30 -47 -88 -98 -155 -98 c-61 0 -126 27 -126 86c0 49 40 82 79 82c31 0 56 -20 56 -53c0 -15 -8 -41 -27 -57c-2 -3 -7 -7 -7 -7c0 -3 19 -5 27 -5c13 0 25 6 36 23c16 23 17 29 27 79l77 442h-102c-16 0 -38 0 -38 22c0 8 5 23 11 28c6 6 12 6 30 6h109c17 111 26 149 50 186c29 44 80 72 147 72 c69 0 131 -28 131 -86'], + 0xE497: [452,202,619,24,595,'463 347c0 10 -24 59 -95 59c-39 0 -95 -19 -129 -87c-21 -43 -48 -154 -48 -195c0 -47 23 -78 79 -78c43 0 89 21 118 49c15 15 16 16 20 32l51 205zM595 385c0 -4 0 -6 -5 -25l-105 -422c-28 -113 -150 -140 -282 -140c-68 0 -179 0 -179 76c0 42 34 82 80 82 c18 0 55 -9 55 -53c0 -19 -8 -36 -19 -51c-2 -2 -3 -4 -3 -4c0 -4 59 -4 64 -4c30 0 63 0 105 25c44 27 52 59 59 85c14 54 5 20 19 75c-18 -9 -63 -29 -120 -29c-114 0 -198 58 -198 170c0 128 108 282 302 282c45 0 88 -11 121 -41c19 21 44 24 53 24c30 0 53 -19 53 -50'], + 0xE498: [694,8,759,65,714,'714 148c0 -29 -60 -156 -174 -156c-64 0 -129 32 -129 92c0 15 3 23 16 55c16 41 61 152 61 208c0 32 -9 59 -57 59c-53 0 -95 -29 -114 -46c-23 -20 -68 -70 -76 -103c-3 -10 -3 -11 -17 -70c-15 -56 -15 -58 -29 -116c-8 -29 -9 -36 -17 -47c-16 -24 -42 -32 -60 -32 c-27 0 -53 18 -53 51c0 3 0 8 4 24l136 544c2 7 3 14 3 14c0 5 -14 5 -32 5c-14 0 -35 0 -35 22c0 33 23 34 36 35l134 6s3 1 7 1c23 0 26 -17 26 -22s0 -7 -4 -21l-66 -264c64 53 117 65 166 65c30 0 168 0 168 -122c0 -54 -47 -170 -56 -192c-18 -46 -23 -57 -23 -76 c0 -24 11 -24 17 -24c43 0 86 49 103 106c6 20 8 22 33 22c15 0 32 0 32 -18'], + 0xE499: [695,8,468,44,423,'423 148c0 -29 -59 -156 -174 -156c-53 0 -128 25 -128 92c0 17 2 22 13 50l61 147c14 32 14 34 23 57c5 11 10 25 10 44c0 17 -3 24 -17 24c-40 0 -84 -46 -102 -106c-6 -20 -8 -22 -33 -22c-15 0 -32 0 -32 18c0 29 59 156 174 156c53 0 128 -25 128 -92 c0 -17 -2 -22 -13 -50l-61 -147c-14 -32 -14 -34 -23 -57c-5 -11 -10 -25 -10 -44c0 -17 3 -24 17 -24c40 0 84 46 102 106c6 20 8 22 33 22c15 0 32 0 32 -18zM377 641c0 -44 -41 -77 -78 -77c-38 0 -56 30 -56 54c0 39 39 77 79 77c25 0 55 -16 55 -54'], + 0xE49A: [695,202,521,-7,487,'452 353c0 -13 -2 -20 -4 -29l-93 -370c-32 -126 -179 -156 -247 -156c-69 0 -115 30 -115 78c0 46 38 80 79 80c18 0 55 -9 55 -53c0 -35 -27 -58 -27 -58v-1c73 0 118 59 133 119l93 369c3 11 5 23 5 34c0 35 -16 40 -29 40c-35 0 -98 -26 -138 -110 c-7 -17 -8 -18 -32 -18c-15 0 -32 0 -32 18c0 22 75 156 209 156c71 0 143 -33 143 -99zM487 641c0 -43 -41 -77 -78 -77c-38 0 -56 30 -56 54c0 39 39 77 79 77c25 0 55 -16 55 -54'], + 0xE49B: [694,8,688,65,643,'643 148c0 -17 -45 -156 -154 -156c-68 0 -144 32 -144 102c0 4 0 11 3 23c1 5 3 15 3 21c0 43 -55 61 -123 67l-35 -138c-6 -24 -18 -75 -75 -75c-27 0 -53 18 -53 51c0 3 0 8 4 24l136 544c2 7 3 14 3 14c0 5 -14 5 -32 5c-14 0 -35 0 -35 22c0 33 23 34 36 35l134 6 s3 1 7 1c23 0 26 -17 26 -22s0 -7 -4 -21l-95 -378c34 19 61 41 106 79c51 44 116 100 189 100c61 0 86 -49 86 -94c0 -75 -52 -96 -81 -96c-31 0 -56 20 -56 53c0 25 19 69 70 78c-4 13 -18 13 -22 13c-51 0 -100 -37 -133 -64c-31 -25 -77 -67 -112 -90c5 0 13 -2 17 -3 c62 -7 165 -19 165 -108c0 -7 0 -15 -3 -29c0 0 -5 -18 -5 -31c0 -14 3 -43 29 -43c47 0 74 72 84 106c5 21 8 22 32 22c15 0 32 0 32 -18'], + 0xE49C: [694,8,404,42,323,'323 148c0 -5 -33 -156 -140 -156c-63 0 -141 29 -141 99c0 14 2 23 5 34l122 486c2 6 3 14 3 14c0 5 -14 5 -32 5c-13 0 -35 0 -35 22c0 33 24 34 35 35l135 6s3 1 7 1c23 0 26 -17 26 -22s0 -7 -4 -21l-136 -540c-5 -19 -5 -22 -5 -33c0 -15 3 -40 27 -40 c38 0 57 59 69 106c5 21 9 22 32 22c15 0 32 0 32 -18'], + 0xE49D: [452,8,1178,44,1133,'1133 148c0 -29 -60 -156 -174 -156c-64 0 -129 32 -129 92c0 15 3 23 16 55c16 41 61 152 61 208c0 32 -9 59 -57 59c-53 0 -95 -29 -114 -46c-27 -23 -69 -73 -76 -102c-3 -10 -3 -12 -17 -70c-15 -56 -15 -58 -29 -116c-8 -30 -21 -80 -78 -80c-25 0 -52 15 -52 50 c0 8 9 45 15 68l39 156c11 43 15 60 15 81c0 33 -10 59 -58 59c-45 0 -82 -20 -112 -45c-27 -22 -71 -75 -78 -103c-3 -9 -3 -11 -17 -70c-15 -56 -15 -58 -29 -116c-8 -30 -21 -80 -78 -80c-25 0 -52 15 -52 50c0 8 13 59 20 88l26 102c9 37 9 39 19 77c8 32 11 44 11 57 c0 14 -3 40 -27 40c-39 0 -58 -62 -70 -106c-5 -21 -8 -22 -32 -22c-15 0 -32 0 -32 18c0 7 34 156 140 156c9 0 117 0 139 -79c47 43 100 79 181 79c29 0 141 0 165 -88c50 53 117 88 190 88c30 0 168 0 168 -122c0 -54 -47 -170 -56 -192c-18 -46 -23 -57 -23 -76 c0 -24 11 -24 17 -24c43 0 86 49 103 106c6 20 8 22 33 22c15 0 32 0 32 -18'], + 0xE49E: [452,8,823,44,778,'778 148c0 -29 -60 -156 -174 -156c-64 0 -129 32 -129 92c0 15 3 23 16 55c16 41 61 152 61 208c0 32 -9 59 -57 59c-53 0 -95 -29 -114 -46c-27 -23 -69 -73 -76 -102c-3 -10 -3 -12 -17 -70c-15 -56 -15 -58 -29 -116c-8 -30 -21 -80 -78 -80c-25 0 -52 15 -52 50 c0 8 13 59 20 88l26 102c9 37 9 39 19 77c8 32 11 44 11 57c0 15 -3 40 -27 40c-40 0 -58 -64 -70 -106c-5 -21 -8 -22 -32 -22c-15 0 -32 0 -32 18c0 8 35 156 140 156c9 0 117 0 139 -79c81 79 156 79 181 79c30 0 168 0 168 -122c0 -54 -47 -170 -56 -192 c-18 -46 -23 -57 -23 -76c0 -24 11 -24 17 -24c43 0 86 49 103 106c6 20 8 22 33 22c15 0 32 0 32 -18'], + 0xE49F: [452,8,657,59,632,'632 272c0 -121 -110 -280 -339 -280c-154 0 -234 73 -234 180c0 121 110 280 339 280c154 0 234 -73 234 -180zM505 312c0 16 -1 49 -29 71c-25 19 -58 23 -80 23c-59 0 -112 -25 -143 -65c-52 -66 -67 -188 -67 -209c0 -16 1 -49 29 -71c25 -19 58 -23 80 -23 c59 0 112 25 143 65c52 66 67 188 67 209'], + 0xE4A0: [452,194,687,18,663,'663 280c0 -133 -110 -288 -303 -288c-41 0 -81 10 -113 35l-40 -164c10 -1 35 0 45 -1c18 -2 23 -12 23 -22c0 -26 -14 -34 -30 -34c-25 0 -88 4 -113 4c-30 0 -64 -4 -93 -4c-7 0 -21 6 -21 22c0 34 21 34 36 34c8 0 19 0 26 2c0 0 2 2 6 15l114 454c5 19 5 22 5 33 c0 15 -3 40 -27 40c-39 0 -57 -61 -70 -106c-5 -21 -8 -22 -32 -22c-15 0 -32 0 -32 18c0 6 33 156 141 156c54 0 106 -21 127 -52c20 16 74 52 154 52c102 0 197 -50 197 -172zM539 327c0 55 -33 79 -79 79c-76 0 -131 -59 -135 -70c-2 -5 -2 -11 -4 -17l-52 -208l-3 -14 c0 -5 20 -59 94 -59c48 0 97 28 125 82c27 51 54 169 54 207'], + 0xE4A1: [452,194,612,58,600,'600 430l-2 -15l-138 -552c10 -1 35 0 45 -1c18 -2 23 -12 23 -22c0 -26 -14 -34 -30 -34c-25 0 -89 4 -114 4c-35 0 -77 -4 -110 -4c-13 0 -22 10 -22 22c0 0 0 33 26 34c20 1 37 0 58 2l39 158c-22 -12 -64 -30 -120 -30c-102 0 -197 50 -197 172 c0 133 110 288 303 288c69 0 106 -28 121 -42c33 28 96 42 96 42c15 0 22 -13 22 -22zM455 346c0 7 -21 60 -94 60c-48 0 -97 -28 -125 -82c-27 -51 -54 -169 -54 -207c0 -55 33 -79 79 -79c49 0 95 26 118 50c15 15 16 16 20 32l54 212c1 4 2 10 2 14'], + 0xE4A2: [452,8,606,44,580,'580 351c0 -61 -45 -89 -80 -89c-31 0 -56 20 -56 53c0 18 11 61 58 75c-11 12 -26 16 -42 16c-46 0 -75 -22 -88 -32c-22 -17 -52 -57 -55 -66c-3 -15 -7 -29 -10 -43c-3 -9 -9 -33 -11 -43l-43 -173c-11 -42 -48 -57 -72 -57c-25 0 -52 15 -52 50c0 8 13 59 20 88 l26 102c9 37 9 39 19 77c8 32 11 44 11 57c0 14 -3 40 -27 40c-39 0 -58 -62 -70 -106c-5 -21 -8 -22 -32 -22c-15 0 -32 0 -32 18c0 7 34 156 140 156c40 0 109 -13 134 -63c45 43 95 63 145 63c70 0 117 -45 117 -101'], + 0xE4A3: [452,8,595,68,529,'529 363c0 -48 -39 -74 -69 -74c-20 0 -49 13 -49 47c0 12 6 40 31 56c-28 14 -65 14 -79 14c-113 0 -119 -59 -119 -69c0 -31 48 -38 83 -44c63 -10 96 -15 130 -36c29 -19 57 -47 57 -93c0 -6 0 -172 -251 -172c-41 0 -195 0 -195 99c0 52 40 86 80 86 c34 0 56 -24 56 -53c0 -16 -9 -51 -43 -70c33 -14 80 -16 106 -16c159 0 159 79 159 85c0 39 -59 48 -110 56c-60 10 -85 14 -114 35c-22 15 -46 39 -46 82c0 3 0 156 211 156c37 0 162 -3 162 -89'], + 0xE4A4: [643,8,488,36,444,'444 148c0 -22 -75 -156 -210 -156c-69 0 -143 32 -143 99l71 297h-89c-16 0 -37 0 -37 22c0 8 4 23 10 28c6 6 12 6 30 6h101l31 124c5 23 18 75 75 75c30 0 53 -19 53 -50c0 -7 -11 -51 -17 -76c-10 -38 -10 -40 -18 -73h90c16 0 37 0 37 -22c0 -8 -4 -23 -10 -28 c-6 -6 -12 -6 -30 -6h-101l-70 -276c-5 -19 -5 -21 -5 -34c0 -34 14 -40 29 -40c39 0 100 30 138 109c9 18 9 19 33 19c15 0 32 0 32 -18'], + 0xE4A5: [452,8,787,44,743,'743 148c0 -7 -34 -156 -140 -156c-72 0 -116 32 -130 54c-45 -40 -92 -54 -138 -54c-84 0 -180 27 -180 138c0 47 21 105 58 195c9 20 16 38 16 57c0 24 -11 24 -17 24c-43 0 -86 -49 -103 -106c-6 -20 -8 -22 -33 -22c-15 0 -32 0 -32 18c0 29 60 156 174 156 c64 0 129 -32 129 -92c0 -15 -4 -26 -15 -54c-30 -72 -57 -140 -57 -195c0 -20 0 -73 68 -73c45 0 80 26 106 55c14 15 14 17 21 44l31 125l26 104c7 28 20 78 77 78c25 0 52 -15 52 -50c0 -8 -9 -46 -15 -69l-42 -168c-7 -26 -17 -66 -17 -79c0 -14 3 -40 27 -40 c39 0 58 62 70 106c5 21 8 22 32 22c15 0 32 0 32 -18'], + 0xE4A6: [453,8,651,44,613,'613 353c0 -109 -88 -361 -262 -361c-83 0 -195 21 -195 142c0 40 13 82 58 192c7 19 15 37 15 56c0 24 -11 24 -17 24c-43 0 -86 -49 -103 -106c-6 -20 -8 -22 -33 -22c-15 0 -32 0 -32 18c0 29 60 156 174 156c64 0 129 -32 129 -92c0 -16 -5 -28 -14 -51 c-35 -84 -57 -143 -57 -192c0 -22 1 -79 83 -79c113 0 176 203 176 230c0 20 -14 36 -45 54c-13 7 -34 18 -34 50c0 40 41 81 80 81c20 0 77 -15 77 -100'], + 0xE4A7: [453,8,944,44,897,'897 353c0 -49 -50 -361 -245 -361c-53 0 -126 8 -168 58c-48 -58 -106 -58 -123 -58c-58 0 -205 8 -205 144c0 34 11 76 54 182c13 29 19 45 19 64c0 24 -11 24 -17 24c-43 0 -86 -49 -103 -106c-6 -20 -8 -22 -33 -22c-15 0 -32 0 -32 18c0 29 60 156 174 156 c64 0 129 -32 129 -92c0 -16 -5 -28 -15 -52c-44 -107 -55 -147 -55 -188c0 -22 0 -82 92 -82c14 0 55 0 91 66c-3 13 -3 23 -3 30c0 24 2 33 16 90l41 163c13 45 50 57 72 57c25 0 52 -15 52 -50c0 -8 -10 -46 -15 -70l-16 -62l-18 -73c-6 -24 -12 -47 -12 -72 c0 -21 0 -79 83 -79c17 0 62 0 106 77c31 56 53 140 53 153c0 22 -17 38 -47 54c-11 7 -32 18 -32 50c0 40 41 81 80 81c21 0 77 -16 77 -100'], + 0xE4A8: [452,8,737,51,668,'668 148c0 -39 -74 -156 -217 -156c-35 0 -107 5 -151 54c-20 -22 -61 -54 -119 -54c-66 0 -129 37 -129 103c0 54 41 87 80 87c31 0 56 -20 56 -53c0 -18 -12 -58 -54 -74c19 -17 46 -17 50 -17c30 0 49 18 62 31c18 19 21 33 35 88l36 144c9 37 9 42 9 55s0 50 -64 50 c-36 0 -118 -21 -148 -113c-5 -15 -12 -15 -31 -15c-15 0 -32 0 -32 18c0 38 73 156 217 156c39 0 108 -7 150 -54c27 28 69 54 119 54c68 0 130 -38 130 -103c0 -54 -41 -87 -80 -87c-31 0 -56 20 -56 53c0 18 12 58 54 74c-20 16 -43 17 -50 17c-33 0 -53 -21 -62 -30 c-18 -20 -22 -34 -36 -89l-36 -144c-9 -37 -9 -42 -9 -55c0 -14 0 -50 65 -50c35 0 118 21 148 113c5 15 12 15 31 15c15 0 32 0 32 -18'], + 0xE4A9: [452,202,677,44,656,'656 394c0 -4 0 -9 -4 -25l-93 -371c-33 -132 -182 -200 -303 -200c-100 0 -152 37 -152 88c0 45 36 83 80 83c34 0 56 -24 56 -53c0 -13 -8 -47 -35 -64c23 -8 44 -8 52 -8c73 0 158 62 184 178c-47 -27 -76 -30 -106 -30c-84 0 -180 27 -180 138c0 47 21 105 58 195 c9 20 16 38 16 57c0 24 -11 24 -17 24c-43 0 -86 -49 -103 -106c-6 -20 -8 -22 -33 -22c-15 0 -32 0 -32 18c0 29 60 156 174 156c64 0 129 -32 129 -92c0 -15 -4 -26 -15 -54c-30 -72 -57 -140 -57 -195c0 -20 0 -73 68 -73c45 0 80 26 106 55c14 15 14 17 21 44l31 125 l26 104c7 28 20 78 77 78c25 0 52 -15 52 -50'], + 0xE4AA: [452,8,633,50,594,'594 434c0 -15 -50 -71 -86 -103c-46 -43 -96 -78 -178 -135c-16 -11 -88 -60 -127 -95l72 4c25 1 50 5 75 8c34 3 65 0 99 4c54 6 70 19 79 42c6 15 14 15 31 15c13 0 32 0 32 -19c0 -3 -11 -63 -73 -112c-49 -39 -100 -51 -135 -51c-38 0 -64 13 -106 37 c-17 10 -44 26 -73 26c-15 0 -54 -4 -92 -52c-9 -11 -10 -11 -31 -11c-13 0 -31 0 -31 18c0 4 23 73 232 216c50 34 119 81 158 116c-41 -2 -81 -7 -122 -11c-21 -2 -118 0 -127 -10c-10 -11 -12 -11 -30 -11c-13 0 -32 0 -32 19c0 33 62 123 164 123c33 0 59 -11 95 -32 c28 -16 54 -31 83 -31c20 0 38 20 57 47c12 15 13 16 35 16c13 0 31 0 31 -18'], + 0xE4AB: [452,8,468,44,423,'423 148c0 -29 -59 -156 -174 -156c-53 0 -128 25 -128 92c0 17 2 22 13 50l61 147c14 32 14 34 23 57c5 11 10 25 10 44c0 17 -3 24 -17 24c-40 0 -84 -46 -102 -106c-6 -20 -8 -22 -33 -22c-15 0 -32 0 -32 18c0 29 59 156 174 156c53 0 128 -25 128 -92 c0 -17 -2 -22 -13 -50l-61 -147c-14 -32 -14 -34 -23 -57c-5 -11 -10 -25 -10 -44c0 -17 3 -24 17 -24c40 0 84 46 102 106c6 20 8 22 33 22c15 0 32 0 32 -18'], + 0xE4AC: [452,202,486,-7,453,'453 353c0 -13 -2 -20 -4 -29l-93 -370c-30 -119 -162 -156 -238 -156c-67 0 -125 24 -125 78c0 46 38 80 79 80c18 0 55 -9 55 -53c0 -25 -14 -44 -21 -53c-2 -2 -3 -4 -3 -4s11 -2 16 -2c43 0 95 39 115 119l93 369c5 19 5 21 5 34c0 34 -14 40 -29 40 c-40 0 -101 -31 -138 -109c-9 -18 -9 -19 -33 -19c-15 0 -32 0 -32 18c0 22 75 156 210 156c69 0 143 -32 143 -99'], + 0xE4AD: [605,105,572,56,516,'516 583c0 -4 -1 -8 -3 -12l-416 -666c-4 -6 -11 -10 -19 -10c-12 0 -22 10 -22 22c0 4 1 8 3 12l416 666c4 6 11 10 19 10c12 0 22 -10 22 -22'], + 0xE4AE: [605,105,572,56,516,'516 -83c0 -12 -10 -22 -22 -22c-8 0 -15 4 -19 10l-416 666c-2 4 -3 8 -3 12c0 12 10 22 22 22c8 0 15 -4 19 -10l416 -666c2 -4 3 -8 3 -12'], + 0xE4AF: [608,107,577,57,522,'522 583c0 -5 -2 -9 -4 -13l-416 -666c-5 -7 -12 -11 -21 -11c-14 0 -24 10 -24 24c0 5 1 9 3 13l416 666c5 7 12 12 21 12c14 0 25 -11 25 -25'], + 0xE4B0: [608,107,577,57,522,'522 -83c0 -14 -11 -24 -25 -24c-9 0 -16 4 -21 11l-416 666c-2 4 -3 8 -3 13c0 14 10 25 24 25c9 0 16 -5 21 -12l416 -666c2 -4 4 -8 4 -13'], + 0xE4B1: [610,109,581,57,526,'526 583c0 -5 -2 -10 -5 -14l-416 -666c-4 -8 -13 -12 -22 -12c-15 0 -26 11 -26 26c0 5 1 10 4 14l416 666c4 8 13 13 22 13c15 0 27 -12 27 -27'], + 0xE4B2: [610,109,581,57,526,'526 -83c0 -15 -12 -26 -27 -26c-9 0 -18 4 -22 12l-416 666c-3 4 -4 9 -4 14c0 15 11 27 26 27c9 0 18 -5 22 -13l416 -666c3 -4 5 -9 5 -14'], + 0xE4B3: [613,113,588,56,532,'532 583c0 -6 -2 -11 -5 -16l-416 -666c-5 -8 -14 -14 -25 -14c-17 0 -30 13 -30 30c0 6 2 11 5 16l416 666c5 8 14 14 25 14c17 0 30 -13 30 -30'], + 0xE4B4: [613,113,588,56,532,'532 -83c0 -17 -13 -30 -30 -30c-11 0 -20 6 -25 14l-416 666c-3 5 -5 10 -5 16c0 17 13 30 30 30c11 0 20 -6 25 -14l416 -666c3 -5 5 -10 5 -16'], + 0xE4B5: [616,115,593,57,538,'538 583c0 -6 -2 -12 -5 -17l-416 -666c-6 -9 -16 -15 -28 -15c-18 0 -32 14 -32 32c0 6 1 12 4 17l416 666c6 9 16 16 28 16c18 0 33 -15 33 -33'], + 0xE4B6: [616,115,593,57,538,'538 -83c0 -18 -15 -32 -33 -32c-12 0 -22 6 -28 15l-416 666c-3 5 -4 11 -4 17c0 18 14 33 32 33c12 0 22 -7 28 -16l416 -666c3 -5 5 -11 5 -17'], + 0xE4B7: [619,119,600,56,544,'544 583c0 -7 -2 -14 -5 -19l-416 -666c-7 -10 -18 -17 -31 -17c-20 0 -36 16 -36 36c0 7 2 14 5 19l416 666c7 10 18 17 31 17c20 0 36 -16 36 -36'], + 0xE4B8: [619,119,600,56,544,'544 -83c0 -20 -16 -36 -36 -36c-13 0 -24 7 -31 17l-416 666c-3 5 -5 12 -5 19c0 20 16 36 36 36c13 0 24 -7 31 -17l416 -666c3 -5 5 -12 5 -19'], + 0xE4B9: [623,122,607,57,552,'552 583c0 -8 -3 -15 -6 -21l-416 -666c-7 -11 -20 -18 -34 -18c-22 0 -39 17 -39 39c0 8 2 15 5 21l416 666c7 11 20 19 34 19c22 0 40 -18 40 -40'], + 0xE4BA: [623,122,607,57,552,'552 -83c0 -22 -18 -39 -40 -39c-14 0 -27 7 -34 18l-416 666c-3 6 -5 13 -5 21c0 22 17 40 39 40c14 0 27 -8 34 -19l416 -666c3 -6 6 -13 6 -21'], + 0xE4BB: [634,-94,489,82,407,'407 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36c35 0 64 -29 64 -64'], + 0xE4BC: [634,-94,489,82,407,'407 94h-46l-269 443c-6 9 -10 21 -10 33c0 35 29 64 64 64c27 0 50 -17 57 -36'], + 0xE4BD: [634,-94,789,82,707,'407 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36c35 0 64 -29 64 -64zM707 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36c35 0 64 -29 64 -64'], + 0xE4BE: [634,-94,789,82,707,'407 94h-46l-269 443c-6 9 -10 21 -10 33c0 35 29 64 64 64c27 0 50 -17 57 -36zM707 94h-46l-269 443c-6 9 -10 21 -10 33c0 35 29 64 64 64c27 0 50 -17 57 -36'], + 0xE4BF: [634,-94,1089,82,1007,'407 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36c35 0 64 -29 64 -64zM707 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36c35 0 64 -29 64 -64zM1007 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36 c35 0 64 -29 64 -64'], + 0xE4C0: [634,-94,1089,82,1007,'407 94h-46l-269 443c-6 9 -10 21 -10 33c0 35 29 64 64 64c27 0 50 -17 57 -36zM707 94h-46l-269 443c-6 9 -10 21 -10 33c0 35 29 64 64 64c27 0 50 -17 57 -36zM1007 94h-46l-269 443c-6 9 -10 21 -10 33c0 35 29 64 64 64c27 0 50 -17 57 -36'], + 0xE4C1: [634,-94,1389,82,1307,'407 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36c35 0 64 -29 64 -64zM707 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36c35 0 64 -29 64 -64zM1007 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36 c35 0 64 -29 64 -64zM1307 570c0 -12 -4 -24 -10 -33l-269 -443h-46l204 504c7 19 30 36 57 36c35 0 64 -29 64 -64'], + 0xE4C2: [716,216,527,56,471,'471 636c0 -31 -23 -42 -41 -42c-20 0 -40 15 -40 40c0 32 24 40 42 41c-2 3 -15 19 -38 19c-43 0 -54 -63 -62 -127l-16 -147c-22 -246 -72 -491 -81 -527c-14 -55 -44 -109 -101 -109c-49 0 -78 43 -78 80c0 31 23 42 41 42c20 0 40 -15 40 -40c0 -32 -24 -40 -42 -41 c2 -3 15 -19 38 -19c42 0 53 61 60 116l18 158c22 246 72 491 81 527c14 55 44 109 101 109c49 0 78 -43 78 -80'], + 0xE4C3: [693,0,708,75,632,'632 64c0 -51 -23 -63 -29 -63c-10 0 -11 8 -11 13c-1 12 -3 45 -50 93l-321 329c-37 -69 -41 -157 -41 -188c0 -35 6 -47 52 -97c21 -23 49 -54 49 -91c0 -50 -60 -60 -111 -60h-67c-19 0 -28 0 -28 11s8 11 18 11c79 2 79 28 79 39c0 21 -9 44 -31 81 c-30 50 -36 73 -36 99c0 85 56 174 91 220c-55 61 -43 44 -69 73c-52 60 -52 75 -52 96c0 51 23 63 29 63c10 0 11 -8 11 -13c1 -12 3 -45 50 -93l314 -322c3 28 12 76 19 111c3 15 20 98 24 146c-75 64 -75 87 -75 108c0 51 23 63 29 63c4 0 8 -2 10 -5c5 -16 9 -24 47 -77 c23 -34 26 -36 59 -63c40 -34 40 -57 40 -74c0 -54 -23 -64 -29 -64c-9 0 -10 7 -11 12c-1 14 -3 35 -38 71c-4 -38 -19 -107 -22 -126c-19 -92 -20 -125 -20 -128c0 -7 0 -9 16 -26c104 -105 104 -121 104 -149'], + 0xE4C4: [693,0,875,98,775,'775 64c0 -51 -28 -63 -35 -63c-12 0 -14 8 -14 13c-1 12 -4 45 -61 93l-389 329c-45 -69 -50 -157 -50 -188c0 -35 7 -47 63 -97c25 -23 59 -54 59 -91c0 -50 -72 -60 -134 -60h-82c-23 0 -34 0 -34 11s10 11 22 11c96 2 96 28 96 39c0 21 -10 44 -38 81 c-36 50 -43 73 -43 99c0 85 68 174 110 220c-67 61 -52 44 -83 73c-64 60 -64 75 -64 96c0 51 29 63 36 63c12 0 13 -8 13 -13c1 -12 4 -45 61 -93l381 -322c4 28 15 76 23 111c4 15 25 98 29 146c-91 64 -91 87 -91 108c0 51 28 63 35 63c5 0 10 -2 12 -5 c7 -16 11 -24 57 -77c29 -34 32 -36 72 -63c49 -34 49 -57 49 -74c0 -54 -28 -64 -35 -64c-11 0 -12 7 -14 12c-1 14 -4 35 -46 71c-5 -38 -23 -107 -27 -126c-23 -92 -24 -125 -24 -128c0 -7 0 -9 20 -26c126 -105 126 -121 126 -149'], + 0xE4C5: [720,39,700,75,626,'626 26c-10 -27 -30 -37 -57 -37h-437c-16 0 -28 -5 -36 -21c-6 -11 -21 -10 -21 3v55c10 25 32 35 56 36h368c21 73 56 206 56 290c0 35 2 80 -7 120c-14 71 -41 104 -113 114c-44 7 -103 7 -141 7c-67 0 -115 1 -143 12c-25 10 -33 22 -40 39v65c0 13 19 16 22 3 c6 -19 18 -21 28 -27c21 -11 72 -9 133 -9c62 0 186 -8 224 -27c70 -36 86 -125 88 -219c2 -109 -36 -272 -63 -368c29 0 55 2 61 20c5 12 22 10 22 -3v-53'], + 0xE4C6: [720,39,865,98,767,'767 26c-12 -27 -36 -37 -69 -37h-530c-20 0 -34 -5 -44 -21c-7 -11 -26 -10 -26 3v55c12 25 40 35 68 36h448c25 73 68 206 68 290c0 35 2 80 -9 120c-17 71 -50 104 -137 114c-54 7 -125 7 -171 7c-82 0 -140 1 -174 12c-30 10 -40 22 -49 39v65c0 13 23 16 27 3 c7 -19 22 -21 34 -27c26 -11 87 -9 162 -9s225 -8 272 -27c84 -36 104 -125 106 -219c3 -109 -44 -272 -76 -368c35 0 66 2 74 20c6 12 26 10 26 -3v-53'], + 0xE4C7: [720,29,615,75,541,'540 61c4 -42 -4 -38 -21 -70c-3 -7 -10 -9 -16 -4c-64 48 -92 191 -106 283c-20 -93 -87 -252 -140 -270c-17 -6 -24 -7 -36 -7c-16 0 -24 7 -57 8c-24 2 -52 -5 -69 -25c-8 -10 -20 -6 -20 6l1 66c21 26 58 38 89 35c33 -1 41 -9 55 -9c5 0 16 1 29 6 c67 24 120 179 142 250c-5 73 -33 196 -60 212c-68 37 -111 6 -171 38c-25 13 -38 20 -48 46v84c0 13 15 15 21 3c9 -20 19 -43 38 -53c62 -34 130 0 184 -51c65 -58 59 -287 81 -419c7 -45 55 -127 90 -120c8 2 12 -1 14 -9'], + 0xE4C8: [720,29,762,98,664,'663 61c5 -42 -5 -38 -25 -70c-4 -7 -12 -9 -20 -4c-78 48 -112 191 -128 283c-25 -93 -106 -252 -170 -270c-21 -6 -30 -7 -44 -7c-20 0 -30 7 -69 8c-30 2 -64 -5 -84 -25c-10 -10 -25 -6 -25 6l2 66c25 26 70 38 108 35c40 -1 49 -9 67 -9c5 0 19 1 35 6 c81 24 146 179 172 250c-6 73 -40 196 -72 212c-83 37 -135 6 -208 38c-30 13 -47 20 -59 46v84c0 13 19 15 26 3c11 -20 23 -43 46 -53c75 -34 158 0 223 -51c79 -58 72 -287 99 -419c9 -45 67 -127 109 -120c10 2 15 -1 17 -9'], + 0xE4C9: [709,17,667,75,592,'592 579c0 -13 -17 -15 -21 -3c-7 18 -34 20 -63 20c15 -94 28 -244 28 -352c0 -116 -22 -212 -83 -258c-5 -5 -11 -4 -15 2c-19 25 -27 66 -16 91c51 21 62 217 62 336c0 70 -12 128 -18 182h-334c-26 0 -46 10 -57 35v67c0 13 15 14 21 3c8 -16 20 -21 36 -21h403 c27 0 47 -19 57 -46v-56'], + 0xE4CA: [709,17,825,98,726,'726 579c0 -13 -20 -15 -25 -3c-9 18 -41 20 -77 20c18 -94 34 -244 34 -352c0 -116 -27 -212 -100 -258c-7 -5 -14 -4 -19 2c-23 25 -33 66 -19 91c62 21 75 217 75 336c0 70 -14 128 -22 182h-405c-32 0 -56 10 -70 35v67c0 13 19 14 26 3c10 -16 24 -21 44 -21h489 c33 0 57 -19 69 -46v-56'], + 0xE4CB: [444,0,239,81,156,'156 0h-75v444h75v-444'], + 0xE4CC: [444,205,267,-61,184,'184 -59c0 -94 -62 -146 -125 -146c-26 0 -72 6 -120 34l21 61c22 -21 46 -31 74 -31c18 0 75 5 75 72v513h75v-503'], + 0xE4CD: [444,0,239,81,250,'250 444l-94 -444h-75l94 444h75'], + 0xE4CE: [444,205,267,-97,278,'278 444l-107 -503c-20 -94 -93 -146 -156 -146c-26 0 -70 6 -112 34l34 61c17 -21 39 -31 67 -31c18 0 76 5 90 72l109 513h75'], + 0xE4CF: [458,0,256,61,194,'194 48c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v362c0 37 12 48 48 48h37c41 0 48 -16 48 -48v-362'], + 0xE4D0: [458,205,286,-71,224,'224 -32c0 -99 -39 -173 -149 -173c-63 0 -146 28 -146 47c0 3 7 22 11 32c9 26 10 27 18 27c4 0 8 -3 10 -4c22 -14 45 -18 63 -18c60 0 60 40 60 65v466c0 35 10 48 48 48h37c41 0 48 -16 48 -48v-442'], + 0xE4D1: [458,0,256,68,283,'281 410l-77 -362c-7 -35 -20 -48 -58 -48h-37c-37 0 -45 12 -38 48l77 362c8 37 22 48 58 48h37c41 0 45 -16 38 -48'], + 0xE4D2: [458,205,286,-105,313,'311 410l-94 -442c-21 -99 -76 -173 -186 -173c-63 0 -140 28 -136 47c1 3 12 22 18 32c15 26 16 27 24 27c4 0 7 -3 9 -4c19 -14 41 -18 59 -18c60 0 69 40 74 65l99 466c8 35 20 48 58 48h37c41 0 45 -16 38 -48'], + 0xE4D3: [431,0,279,55,223,'223 36c0 -33 -3 -36 -35 -36h-97c-32 0 -36 4 -36 36v359c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-359zM183 40v351h-88v-351h88'], + 0xE4D4: [431,216,389,0,333,'333 19c0 -115 -55 -235 -168 -235c-90 0 -165 61 -165 81c0 11 10 20 20 20c9 0 12 -4 20 -11c21 -21 61 -48 125 -50v571c0 32 4 36 36 36h97c32 0 35 -3 35 -36v-376zM293 24v367h-88v-559c63 27 88 113 88 192'], + 0xE4D5: [694,15,982,40,943,'943 675l-19 -9c-13 -8 -18 -18 -22 -36l-73 -290c-17 -70 -34 -141 -45 -211c-4 -24 -5 -48 11 -65c7 -6 17 -8 26 -8c16 0 31 6 46 14c19 10 36 20 56 33l15 -17c-38 -30 -78 -55 -122 -75c-27 -13 -57 -26 -87 -26c-16 0 -32 4 -39 14c-8 8 -10 19 -11 30 c-1 16 2 32 7 49l39 158h-266c-60 -87 -146 -164 -195 -198c-41 -28 -90 -48 -137 -48c-27 0 -53 9 -69 25c-17 19 -21 44 -15 70c4 13 13 27 28 37c12 8 25 9 38 9c15 0 27 -5 34 -14c5 -4 6 -11 4 -18c-1 -4 -4 -11 -6 -16c-5 -8 -8 -16 -10 -24s3 -13 7 -18 c7 -7 17 -10 28 -10c20 0 38 7 55 19c31 21 59 52 82 78c24 26 100 137 149 207c45 65 87 126 139 189c33 40 70 81 120 106c31 16 66 31 101 42c40 13 95 19 129 22zM824 638l-7 11c-23 -4 -49 -15 -71 -30c-45 -31 -77 -73 -108 -114c-55 -73 -102 -150 -147 -226h243'], + 0xE4D6: [712,1,888,40,847,'845 554c-11 -44 -39 -78 -84 -109c-31 -21 -63 -38 -99 -52l2 -8c50 -8 109 -20 133 -45c25 -27 34 -71 25 -109c-13 -51 -63 -100 -114 -136c-97 -66 -232 -96 -344 -96h-324l45 53c60 0 107 13 158 48c33 24 63 58 79 91c27 51 45 112 58 165l74 296 c-50 -4 -132 -25 -188 -63c-27 -18 -52 -41 -59 -68c-2 -11 -1 -22 -2 -33c1 -10 3 -18 0 -28c-3 -12 -7 -24 -18 -32c-13 -9 -31 -15 -46 -15c-9 0 -16 4 -20 10c-15 14 -12 35 -7 55c10 43 46 83 90 114c75 51 167 77 257 88l80 32l10 -7l-5 -23c63 0 126 0 185 -8 c37 -5 74 -15 94 -38c22 -22 27 -52 20 -82zM755 527c8 32 4 63 -17 85c-17 18 -44 27 -70 33c-41 8 -85 10 -129 10l-64 -254c-3 -13 16 -15 27 -15c63 0 130 15 186 53c37 25 58 52 67 88zM731 219c8 34 1 75 -22 99c-15 16 -37 28 -63 34c-32 9 -68 9 -104 9 c-27 0 -54 -2 -82 -4c-21 -53 -45 -115 -83 -165c-36 -48 -104 -106 -155 -133l4 -8h198c44 0 94 2 141 9c28 4 54 14 81 34c42 31 74 80 85 125'], + 0xE4D7: [697,15,749,40,709,'704 554c-12 -47 -43 -93 -91 -126c-46 -33 -104 -47 -158 -47c-46 0 -90 6 -117 33c-15 15 -17 36 -12 58c3 13 9 27 22 36c11 9 27 11 41 11c13 0 27 -3 34 -11c9 -11 2 -27 -5 -41c-9 -16 -14 -34 -2 -46c10 -10 28 -10 43 -10c34 0 67 13 95 32c37 26 55 64 64 99 c8 34 8 65 -15 89c-24 25 -64 34 -106 34c-63 0 -128 -15 -182 -52c-43 -30 -75 -66 -98 -106c-33 -55 -53 -111 -67 -168c-13 -53 -20 -106 -12 -156c6 -41 21 -81 50 -112c30 -31 74 -52 127 -52c46 0 95 16 134 43c32 22 52 53 66 83l15 7l43 -47 c-15 -19 -33 -38 -55 -54c-71 -49 -160 -66 -241 -66c-76 0 -143 24 -185 69c-29 30 -43 68 -49 109c-7 48 -1 100 12 151c15 61 38 123 76 181c30 48 70 90 122 125c82 56 179 77 274 77c61 0 125 -8 160 -46c26 -26 26 -60 17 -97'], + 0xE4D8: [716,-4,1005,40,965,'953 392c-26 -103 -101 -202 -206 -275c-107 -73 -233 -113 -358 -113h-349l46 50c70 0 141 25 200 66c29 21 49 51 62 80c24 48 37 98 49 147l77 309c-73 0 -147 -17 -211 -61c-22 -15 -38 -40 -43 -61c-6 -22 -2 -39 -8 -61c-3 -12 -8 -24 -21 -33 c-11 -8 -25 -14 -38 -14c-14 0 -24 8 -29 15c-6 11 -6 29 -1 49c10 42 43 82 85 111c85 58 186 79 274 84l80 31l8 -4l-6 -24c78 0 153 -2 223 -20c53 -14 102 -35 136 -70c51 -53 49 -131 30 -206zM864 387c18 73 12 147 -37 200c-27 26 -64 41 -104 51 c-53 14 -107 18 -167 18l-58 -234c-16 -64 -39 -129 -75 -191c-29 -47 -68 -94 -118 -130l-52 -37l3 -10h146c56 0 114 0 171 14c45 11 90 32 128 59c43 29 74 67 100 107c31 49 50 101 63 153'], + 0xE4D9: [702,12,695,40,655,'653 605c-5 -21 -10 -38 -32 -57c-18 -16 -47 -23 -61 -23s-20 1 -27 8c-4 4 -5 12 -3 20c3 9 8 16 16 24c11 10 21 21 25 37c4 18 -3 32 -13 40c-14 12 -33 17 -62 17c-34 0 -73 -6 -102 -26c-43 -31 -72 -74 -83 -117c-9 -35 -2 -70 22 -94c16 -18 42 -27 67 -33 c38 -9 78 -12 119 -12l-6 -25c-56 0 -111 -3 -167 -14c-38 -7 -81 -19 -114 -41c-46 -32 -74 -75 -86 -121c-11 -45 -7 -90 24 -122c32 -34 91 -42 147 -42c53 0 106 23 151 54c27 19 45 45 56 73l16 3l41 -48c-12 -13 -26 -31 -37 -38c-76 -52 -166 -80 -255 -80 c-47 0 -93 4 -134 16c-33 10 -65 25 -86 47c-31 32 -34 77 -23 122c14 54 56 106 111 145c51 35 113 54 175 61l3 10c-32 10 -62 24 -82 45c-26 28 -28 67 -18 106c10 41 40 81 83 110c64 44 132 52 205 52c45 0 89 -7 115 -34c14 -14 21 -39 15 -63'], + 0xE4DA: [699,15,1038,39,998,'998 683l-64 -73c-15 -17 -43 -35 -69 -35c-15 0 -33 4 -49 9c-50 12 -130 34 -145 39l-64 -248h172l-32 -28h-147l-12 -49c-11 -44 -28 -88 -55 -129c-21 -34 -44 -61 -85 -92c-79 -59 -184 -92 -281 -92c-46 0 -85 14 -111 41c-15 15 -19 36 -14 56c3 12 9 20 22 29 c12 8 27 12 43 12c18 0 23 -2 34 -38c3 -13 11 -25 20 -34c19 -20 48 -26 80 -26c51 0 105 25 144 56c29 22 49 46 66 73c21 34 32 70 43 105l24 88h-194l23 28h178l72 265c-27 6 -64 9 -93 9c-60 0 -116 -11 -170 -48c-27 -19 -59 -54 -63 -70c-4 -14 -5 -25 -5 -39 c1 -11 4 -25 1 -36c-3 -12 -9 -21 -21 -30c-11 -7 -24 -14 -37 -14c-16 0 -25 6 -33 14c-12 12 -10 29 -6 46c13 51 58 98 111 134c82 57 168 72 262 72c20 0 56 -2 74 -4l64 25l8 -3l-7 -28c56 -12 111 -22 171 -30c12 -2 29 -4 37 -4c19 0 42 10 54 22l37 36'], + 0xE4DB: [697,130,774,40,733,'731 582c-7 -27 -23 -53 -51 -73c-30 -21 -64 -37 -100 -37c-6 0 -36 6 -54 9l8 17c29 0 55 3 82 21c19 14 27 35 31 54c6 22 -2 40 -18 56c-21 24 -64 34 -94 34c-53 0 -108 -13 -154 -44c-62 -43 -102 -102 -117 -163c-14 -56 -16 -115 22 -155c28 -29 68 -48 117 -48 c54 0 106 14 153 46c17 12 50 52 64 81l67 13l-33 -132c-15 -63 -37 -126 -70 -187c-23 -42 -54 -80 -98 -110c-86 -59 -184 -94 -283 -94c-54 0 -109 8 -139 41c-19 20 -29 46 -21 75c3 12 14 25 26 34c13 9 31 11 47 11c12 0 21 -3 28 -10c9 -9 8 -24 8 -37 c0 -18 1 -36 14 -49c20 -22 58 -28 94 -28c55 0 109 23 155 55c35 25 61 56 81 88c25 41 43 79 53 122l20 96c-56 -30 -121 -45 -181 -45c-76 0 -145 22 -188 66c-42 44 -39 106 -24 166c16 66 63 133 134 174c86 49 173 68 263 68c40 0 110 -7 140 -40 c20 -21 25 -46 18 -75'], + 0xE4DC: [690,8,1232,40,1192,'1192 642c-7 -26 -35 -37 -54 -37c-11 0 -24 6 -28 13c-9 10 -15 17 -33 17c-17 0 -35 -5 -50 -15c-20 -14 -38 -26 -55 -49c-21 -27 -35 -50 -47 -77c-37 -79 -58 -162 -78 -244c-12 -45 -21 -90 -22 -134c2 -27 4 -54 21 -74c8 -9 19 -12 33 -12s43 12 57 23 c22 16 41 32 61 50l21 -17c-28 -25 -48 -41 -68 -56c-36 -24 -68 -38 -111 -38c-27 0 -51 5 -66 20c-19 22 -30 51 -32 81c-1 44 10 89 21 134c7 30 24 82 38 123h-267c-18 -56 -42 -113 -71 -166c-24 -44 -63 -84 -109 -116c-64 -44 -134 -74 -209 -74c-34 0 -66 4 -87 24 c-13 14 -20 32 -15 52c2 10 7 19 18 26c10 7 24 10 36 10c13 0 29 0 35 -7c6 -6 8 -14 10 -23c3 -8 6 -19 11 -25c12 -13 33 -15 53 -15c26 0 67 13 98 34c42 29 70 70 90 109c32 63 52 128 68 192l70 281c-42 0 -80 -2 -123 -10c-30 -6 -59 -13 -84 -30 c-24 -18 -52 -40 -58 -66c-4 -13 -4 -26 -5 -38l1 -40c-2 -10 -5 -20 -17 -27c-13 -10 -27 -19 -42 -19c-12 0 -21 7 -26 13c-8 7 -9 17 -9 27c1 16 3 31 7 47c12 45 54 84 101 115c34 24 78 42 119 50c52 10 95 15 145 15l139 -3l-6 -17l-64 -22l-67 -259h273 c22 55 51 108 90 159c28 37 66 74 109 101c42 26 73 42 120 42c57 0 61 -36 58 -48'], + 0xE4DD: [685,14,696,39,656,'656 679l-21 -20l-60 -10c-29 -117 -65 -228 -94 -344c-23 -94 -76 -192 -174 -260c-48 -33 -106 -59 -163 -59c-34 0 -68 7 -87 27c-14 15 -21 35 -16 56c3 11 7 26 18 33c9 7 24 12 36 12c14 0 21 -8 28 -16c2 -2 3 -18 3 -28c1 -12 4 -24 12 -33c9 -9 25 -9 41 -9 c34 0 65 16 94 35c35 24 59 57 76 89c25 47 42 97 55 146c29 119 67 232 96 351c-40 0 -80 -3 -120 -12c-30 -7 -60 -16 -85 -34c-19 -13 -36 -31 -41 -51c-2 -7 -3 -15 -2 -22c1 -12 3 -29 2 -35c-3 -12 -12 -23 -25 -32c-8 -5 -17 -8 -27 -8c-11 0 -18 4 -24 10 c-13 14 -13 34 -8 53c9 37 35 72 72 98c39 26 84 41 131 51c61 13 122 18 184 18c33 0 66 -5 99 -6'], + 0xE4DE: [692,129,784,39,744,'744 674l-82 -23l-6 -23l-102 -407c-13 -53 -32 -105 -63 -156c-23 -39 -55 -76 -97 -105c-37 -26 -78 -49 -120 -66c-37 -14 -72 -23 -108 -23c-40 0 -81 5 -104 29c-20 22 -27 52 -19 84c11 43 37 86 70 125c41 47 92 89 146 127c76 52 161 88 251 114l75 300 c-65 -7 -132 -17 -187 -55c-36 -25 -55 -60 -64 -95c-5 -21 -12 -48 -30 -60c-11 -8 -24 -17 -36 -17c-13 0 -24 5 -31 13c-10 11 -8 26 -5 41c12 45 51 84 96 116c102 70 225 99 344 99h72v-18zM496 316c-71 -22 -141 -52 -201 -94c-79 -55 -144 -125 -163 -203 c-7 -29 -13 -60 8 -81c15 -17 44 -23 73 -23c44 0 89 19 126 45c34 23 57 54 75 85c25 43 41 87 52 131c12 47 18 93 30 140'], + 0xE4DF: [690,12,1142,40,1102,'1101 635c-3 -13 -12 -26 -26 -36c-13 -9 -29 -16 -45 -16c-19 0 -26 13 -26 25c0 14 -15 23 -31 23c-24 0 -49 -12 -69 -25c-33 -21 -60 -39 -87 -63l-181 -161s-6 -5 -8 -7l-3 -18l69 -175c16 -44 41 -84 74 -119c12 -12 28 -21 47 -21c20 0 40 7 58 19 c19 13 32 27 46 44l17 -16c-16 -23 -35 -44 -59 -62c-33 -22 -71 -39 -109 -39c-36 0 -70 9 -89 31c-17 17 -27 38 -34 60l-89 247h-33c-25 -97 -79 -195 -178 -264c-58 -40 -127 -67 -195 -67c-37 0 -75 7 -96 30c-12 13 -16 29 -12 47c3 10 8 20 19 28c10 7 23 11 35 11 c11 0 24 0 29 -4c7 -7 12 -15 16 -23c5 -10 9 -20 17 -29c11 -11 27 -17 46 -17c39 0 76 17 108 39s54 48 72 79c25 39 40 81 51 122l93 374c-72 0 -147 -15 -212 -56c-22 -14 -41 -33 -46 -54c-3 -12 -5 -23 -5 -35c-1 -12 1 -23 -2 -34c-3 -13 -6 -27 -20 -36 c-11 -9 -26 -14 -40 -14c-12 0 -23 4 -31 12c-14 15 -8 39 -3 60c10 40 42 80 84 106c102 63 216 87 330 87c3 0 64 0 96 -2l-9 -17l-60 -17l-75 -297h21l233 204c33 29 70 57 109 83c23 17 39 25 66 36c20 9 48 12 68 12c24 0 41 -5 55 -19c10 -11 18 -20 14 -36'], + 0xE4E0: [685,7,878,40,837,'836 607c-15 -60 -70 -61 -70 -61c-15 0 -27 4 -34 12c-6 5 -2 21 1 32c3 14 -3 34 -12 45c-11 12 -25 16 -48 16c-25 0 -52 -9 -76 -26c-25 -17 -39 -28 -52 -51c-22 -35 -53 -101 -72 -146c-17 -42 -36 -78 -68 -125c-17 -29 -45 -58 -71 -78c-28 -22 -56 -40 -77 -49 l2 -6c96 0 147 -36 147 -36c25 -17 95 -43 130 -51c23 -6 48 -11 75 -11c39 0 68 12 97 39c31 28 45 51 54 89c4 17 7 41 8 55l31 5c0 -17 -6 -47 -8 -58c-14 -56 -35 -113 -92 -154c-42 -30 -79 -55 -131 -55c-28 0 -82 4 -107 13c-43 15 -62 24 -89 45 c-69 43 -125 64 -157 64c-27 0 -71 -16 -89 -35c-28 -28 -51 -59 -68 -86l-20 17c12 33 34 66 72 105c16 17 50 34 66 43c20 10 47 26 68 40c46 31 99 134 127 204c20 48 38 93 73 137c27 34 63 68 103 94c55 36 122 51 184 51c38 0 71 -6 89 -26c14 -13 19 -32 14 -52'], + 0xE4E1: [699,13,1333,40,1293,'1293 654c-3 -9 -6 -19 -17 -25c-12 -10 -29 -16 -44 -16c-9 0 -20 0 -23 4c-4 5 -9 10 -12 16c0 5 -1 11 -4 15c-6 6 -14 11 -25 11s-23 -4 -33 -10c-17 -13 -32 -37 -36 -54l-81 -325c-14 -53 -23 -106 -25 -158c-1 -29 -2 -46 16 -67c8 -6 16 -10 28 -10 c19 0 39 8 56 20c21 14 41 31 58 49l19 -15c-22 -21 -47 -40 -73 -58c-32 -22 -68 -44 -107 -44c-28 0 -53 10 -68 26c-23 25 -22 49 -19 84l65 271c18 70 30 140 52 210c-91 -63 -160 -143 -218 -225c-77 -107 -132 -214 -179 -328l-61 -35l-10 7c13 123 18 239 2 357 c-6 43 -15 86 -31 127c-11 31 -26 61 -50 86l-57 -226c-16 -65 -39 -130 -76 -193c-25 -46 -58 -90 -107 -124c-32 -22 -70 -34 -107 -34c-30 0 -55 10 -73 27c-9 11 -15 25 -11 41c3 12 11 21 23 30c10 7 23 11 35 11c21 0 33 -10 39 -25c4 -17 22 -28 43 -28s42 12 59 24 c30 21 49 50 66 79c23 41 36 83 47 125l82 330c-18 24 -48 40 -86 40c-27 0 -55 -11 -79 -27c-32 -22 -51 -53 -65 -84l-25 -1c12 26 24 51 40 75c13 18 29 35 47 49c38 26 84 43 129 43c51 0 94 -19 122 -50h4c53 -55 74 -122 94 -194c22 -88 31 -174 31 -267l7 -2 c50 90 105 168 175 250c58 68 123 133 202 186c58 40 129 76 199 76c20 0 40 -5 52 -18c7 -7 12 -16 10 -26'], + 0xE4E2: [706,7,1161,39,1120,'1119 656c-2 -8 -5 -18 -15 -24c-14 -6 -43 -16 -43 -16c-9 0 -21 0 -24 4c-6 6 -11 13 -13 21c0 10 -7 18 -19 18c-9 0 -20 -2 -27 -7c-22 -15 -31 -36 -38 -56c-10 -25 -31 -104 -44 -156l-101 -417l-66 -30c-68 190 -149 388 -261 542l-45 -157 c-23 -70 -57 -178 -74 -209c-23 -46 -51 -86 -104 -125c-38 -28 -84 -48 -131 -48c-24 0 -47 6 -61 21c-10 10 -16 23 -12 38c3 14 15 27 29 37c9 6 19 10 29 10c12 0 23 -2 30 -9c2 -2 8 -14 12 -20c5 -10 17 -14 30 -14c29 0 55 12 78 28c32 23 48 53 64 84 c24 50 40 101 53 152l65 259c-17 17 -34 33 -57 45c-16 9 -32 16 -52 16c-25 0 -52 -6 -72 -21c-33 -21 -49 -55 -63 -85l-27 -5c12 49 34 98 84 133c38 26 84 36 127 36c56 0 97 -30 128 -63c41 -43 69 -95 97 -147l178 -367l11 12c21 112 47 229 76 344 c10 41 25 83 46 123c12 25 28 52 55 71c31 21 68 32 104 32c18 0 33 -5 44 -15c9 -9 12 -22 9 -35'], + 0xE4E3: [686,18,807,40,767,'766 532c5 -52 -8 -105 -21 -158c-16 -63 -43 -125 -80 -184c-30 -48 -69 -92 -121 -128c-81 -56 -182 -80 -277 -80c-74 0 -134 28 -175 72c-29 29 -43 68 -48 108c-8 48 -3 99 10 149c29 115 97 229 216 311c20 15 43 26 67 37l14 -12c-114 -79 -178 -188 -205 -297 c-14 -56 -22 -112 -18 -165c3 -39 11 -79 39 -107c33 -36 82 -57 142 -57c59 0 120 17 170 52c47 33 80 74 107 118c35 59 59 120 74 181c13 52 26 105 23 155c-2 36 -14 71 -40 97c-16 18 -45 29 -75 29c-38 0 -76 -9 -107 -31c-25 -17 -46 -40 -52 -64 c-8 -29 10 -50 29 -70c9 -9 8 -22 4 -35c-5 -21 -32 -33 -56 -33c-16 0 -30 5 -38 15c-18 19 -17 45 -10 71c12 51 45 98 97 134c45 32 100 46 151 46c57 0 106 -20 136 -52c27 -28 41 -65 44 -102'], + 0xE4E4: [710,11,875,39,834,'745 508c10 40 1 78 -26 107c-16 16 -41 24 -66 31c-35 9 -73 9 -111 9l-84 -335c65 0 136 10 192 49c52 36 82 88 95 139zM829 515c-14 -55 -51 -109 -108 -149c-80 -54 -178 -76 -270 -76c-5 -20 -12 -40 -19 -60c-24 -71 -51 -138 -123 -188 c-50 -34 -107 -53 -163 -53c-37 0 -72 11 -92 33c-15 16 -17 39 -11 62c4 14 13 26 27 36c10 7 24 10 37 10c11 0 22 -3 27 -9c13 -13 9 -29 5 -47c-4 -15 -4 -32 7 -43c8 -8 22 -10 37 -10c30 0 54 14 78 31c28 19 46 48 59 73c20 39 33 79 43 120l103 410 c-29 0 -141 -1 -199 -41c-30 -21 -61 -47 -69 -77c-2 -11 -2 -27 -2 -41c2 -9 6 -18 3 -27c-3 -12 -9 -24 -20 -33c-12 -7 -25 -13 -38 -13c-11 0 -21 4 -27 11c-15 15 -9 38 -4 59c12 48 54 93 104 126c73 48 168 66 259 66l76 25l10 -3l-5 -20c57 0 109 -2 161 -15 c39 -10 71 -21 95 -46c27 -29 29 -71 19 -111'], + 0xE4E5: [694,24,817,40,777,'776 545c4 -44 0 -85 -11 -131c-25 -98 -84 -196 -186 -266c-46 -32 -98 -56 -152 -69c7 -5 16 -8 33 -14c13 -4 105 -23 121 -23c19 0 36 11 52 22c28 18 44 39 61 62l21 -8c-21 -34 -42 -68 -81 -97c-22 -17 -50 -32 -78 -32c-25 0 -49 0 -70 5l-220 42 c-24 4 -49 7 -74 7c-26 0 -57 -1 -81 -16c-14 -9 -35 -33 -47 -51l-24 9c22 32 52 69 82 90c34 23 76 30 115 30c18 0 40 0 55 -2c25 -3 52 -6 75 -6c57 0 114 22 162 55c40 28 66 65 88 102c31 52 49 106 63 160c11 44 19 84 14 127c-1 31 -12 59 -34 82 c-29 30 -78 44 -128 44c-59 0 -124 -11 -177 -47c-37 -25 -65 -56 -87 -91c-27 -42 -43 -83 -55 -128c-15 -63 -14 -128 30 -174c22 -23 58 -33 94 -41l-16 -21c-57 0 -109 15 -140 49c-49 52 -65 122 -47 195c21 83 69 160 155 219c77 53 172 66 261 66 c75 0 146 -17 189 -62c24 -24 35 -54 37 -87'], + 0xE4E6: [712,6,940,40,899,'807 515c10 41 6 81 -21 110c-13 14 -37 19 -59 23c-40 6 -79 7 -121 7l-82 -316c16 -3 32 -3 49 -3c48 0 103 15 143 44c52 35 79 86 91 135zM895 526c-13 -50 -42 -101 -94 -137c-48 -33 -109 -61 -161 -71l24 -99c13 -55 32 -107 72 -149c7 -9 23 -14 37 -14 c13 0 26 7 37 14c16 12 24 21 34 36l17 -12c-19 -29 -38 -51 -68 -72c-22 -15 -47 -28 -73 -28c-22 0 -43 2 -56 14c-20 22 -37 47 -45 75l-57 221l-46 4c-23 -51 -43 -101 -77 -149c-23 -34 -55 -68 -92 -93c-62 -43 -130 -71 -202 -71c-32 0 -65 4 -84 23 c-14 15 -25 31 -19 52c2 11 9 23 21 31c10 7 23 11 35 11c11 0 19 -4 25 -10c7 -8 13 -17 17 -26s8 -19 14 -25c10 -11 31 -12 50 -12c38 0 74 15 106 38c33 22 53 51 70 81c24 42 39 86 50 129l93 363c-72 0 -141 -11 -204 -54c-23 -15 -47 -36 -52 -58 c-3 -10 -4 -22 -5 -33c0 -12 4 -23 1 -35c-3 -11 -13 -22 -25 -31c-12 -7 -24 -14 -38 -14c-12 0 -18 6 -23 13c-13 15 -13 32 -8 52c10 43 47 83 91 114c83 57 192 74 271 80l82 28l10 -4l-5 -21c59 0 109 -1 165 -9c34 -5 69 -14 90 -36c28 -30 32 -74 22 -116'], + 0xE4E7: [702,12,708,40,668,'664 596c-4 -18 -15 -37 -35 -51c-30 -21 -66 -36 -102 -36c-15 0 -29 2 -43 5l7 16c20 0 47 5 65 19c17 13 25 28 30 46c4 18 -2 33 -16 46c-18 21 -51 28 -86 28c-41 0 -81 -9 -116 -34c-28 -19 -47 -39 -54 -66c-9 -37 -2 -71 22 -97c30 -31 71 -51 115 -69 c49 -21 97 -44 130 -79c29 -30 35 -72 24 -115c-12 -51 -44 -103 -98 -140c-79 -55 -174 -81 -266 -81c-62 0 -143 13 -177 49c-25 27 -28 65 -19 103c10 41 42 83 84 112c39 27 81 34 124 34c30 0 64 -4 79 -22c10 -10 16 -22 12 -35c-2 -8 -4 -17 -12 -23 c-12 -8 -26 -15 -39 -15c-11 0 -21 3 -27 10c-5 5 -6 13 -6 21c0 9 -4 19 -11 26c-5 6 -23 6 -34 6c-19 0 -29 -5 -45 -16c-24 -17 -41 -40 -47 -63c-10 -41 -4 -81 23 -110c25 -26 80 -41 125 -41c54 0 117 14 163 46c42 29 66 64 76 104c9 37 14 77 -12 105 c-29 29 -62 53 -105 70c-29 11 -59 24 -85 39c-18 10 -37 22 -52 36c-32 33 -36 78 -25 124c10 39 32 72 71 99c63 43 134 55 206 55c56 0 111 -5 144 -38c18 -19 19 -41 12 -68'], + 0xE4E8: [693,6,888,40,849,'849 682c-27 -32 -52 -56 -87 -83c-27 -21 -62 -32 -94 -32c-28 0 -91 11 -136 19l-68 -269c-14 -56 -29 -112 -60 -166c-23 -40 -56 -79 -99 -108c-48 -33 -101 -49 -157 -49c-35 0 -70 6 -90 26c-16 18 -15 41 -8 66c3 12 13 24 26 33c11 8 24 14 37 14 c15 0 27 -7 35 -15c7 -9 2 -23 -2 -34c-7 -17 -12 -35 0 -47c9 -9 24 -10 40 -10c27 0 50 6 74 22c28 20 48 48 61 75c23 43 37 88 48 132l83 343c-58 15 -136 35 -183 35c-31 0 -70 -10 -98 -29c-26 -19 -39 -35 -46 -61c-2 -9 1 -16 4 -23c6 -11 13 -21 22 -29 c6 -6 5 -15 3 -23c-3 -12 -13 -21 -25 -29c-11 -8 -24 -16 -39 -16s-26 9 -34 18c-15 16 -19 39 -13 62c12 48 53 86 101 119c59 41 134 61 202 61c41 0 118 -12 175 -25c63 -13 135 -28 194 -28c24 0 47 10 68 24c19 13 30 23 44 38'], + 0xE4E9: [699,16,867,41,827,'827 688c-15 -6 -31 -13 -44 -22c-21 -13 -35 -29 -49 -47c-18 -23 -32 -47 -44 -71c-49 -101 -81 -204 -106 -306c-10 -39 -18 -78 -17 -117c1 -24 3 -49 21 -67c6 -8 16 -11 29 -11c17 0 30 4 44 14c21 14 39 34 55 52l21 -14c-22 -28 -46 -54 -75 -74 c-30 -20 -66 -34 -101 -34c-21 0 -42 6 -53 19c-27 27 -31 61 -32 97l-56 -41c-69 -47 -151 -82 -233 -82c-44 0 -81 17 -105 43c-13 12 -16 29 -18 46c-1 23 3 48 9 72c16 63 44 126 74 188c32 64 62 129 78 195c9 35 16 67 -9 93c-7 9 -24 15 -38 15s-30 -6 -43 -14 c-28 -20 -40 -40 -47 -68c-5 -19 -8 -44 -10 -63l-37 -9c3 24 6 53 12 78c10 40 31 74 73 103c29 20 66 29 99 29c30 0 60 -6 77 -24c14 -14 16 -32 18 -50c1 -27 -1 -48 -8 -76c-18 -70 -51 -139 -85 -207c-24 -48 -49 -99 -60 -145c-7 -28 -10 -56 -7 -84 c1 -20 6 -39 19 -54c17 -17 42 -25 70 -25c56 0 109 29 155 61c27 19 53 38 78 58c39 159 100 324 160 485c53 26 109 50 167 68'], + 0xE4EA: [709,9,832,40,792,'789 594c-11 -41 -23 -68 -54 -105c-54 -68 -132 -147 -197 -211c-89 -88 -172 -173 -241 -259l-69 -28l-6 9c19 104 24 211 27 317c4 69 0 136 -5 204c-2 34 -7 74 -33 102c-7 8 -18 14 -33 14c-17 0 -33 -5 -47 -15c-23 -15 -49 -58 -63 -89l-28 3c11 29 30 58 49 86 c12 19 28 39 50 54c28 19 62 28 95 28c27 0 44 -10 60 -26c16 -18 22 -41 26 -65c8 -39 11 -79 8 -120l-12 -382l15 3l198 202c40 40 81 83 112 128c25 36 42 73 54 111c7 27 9 55 -9 75c-15 14 -36 23 -61 23c-22 0 -43 -1 -62 -14c-33 -23 -55 -54 -70 -86l-26 3 c19 42 46 84 90 115c36 24 78 38 120 38c38 0 72 -9 93 -31c22 -22 26 -53 19 -84'], + 0xE4EB: [702,5,1214,40,1174,'1169 573c-10 -40 -36 -78 -63 -116c-44 -62 -94 -122 -146 -181c-74 -84 -139 -162 -204 -251l-61 -23l-9 5c16 99 3 187 -24 277c-18 66 -32 140 -39 208c-60 -71 -123 -150 -177 -224c-61 -85 -128 -163 -181 -241c-3 -3 -17 -11 -20 -13c-19 -7 -38 -12 -57 -19 l-12 8c34 138 62 272 68 408c3 43 2 85 -6 126c-6 28 -15 55 -34 77c-11 10 -23 21 -42 21c-13 0 -28 -4 -39 -13c-31 -24 -49 -65 -54 -87l-29 2c13 51 43 105 96 142c26 18 57 22 87 22c32 0 51 -14 67 -32c19 -20 29 -44 34 -70c5 -36 7 -81 6 -120 c-4 -118 -26 -232 -55 -352h11l138 163c59 71 116 142 163 217c34 54 63 110 77 166l78 29l12 -8c-15 -29 -27 -54 -34 -83c-24 -95 -10 -186 17 -272c22 -70 36 -143 41 -218c73 79 150 159 210 243c38 53 70 107 84 164c5 21 9 41 8 61c-1 14 -4 27 -13 37 c-15 15 -33 23 -59 23c-34 0 -61 -15 -87 -36l-20 11c12 11 24 20 38 30c42 29 89 48 138 48c32 0 57 -7 73 -26c26 -27 29 -65 19 -103'], + 0xE4EC: [706,9,998,40,958,'957 640c-3 -11 -8 -22 -19 -30c-12 -8 -27 -18 -40 -18c-9 0 -17 1 -21 6s-6 11 -8 17c-1 6 -5 11 -10 16c-8 9 -21 13 -36 13c-21 0 -44 -8 -61 -20c-47 -31 -79 -73 -111 -113c-43 -55 -77 -108 -107 -167c-4 -64 -8 -118 1 -180c4 -39 19 -78 46 -108 c11 -11 31 -14 50 -14c21 0 42 12 60 24c37 26 59 59 73 95l26 -4c-12 -50 -50 -92 -100 -127c-33 -23 -75 -39 -114 -39c-33 0 -65 6 -83 25c-19 21 -25 48 -30 75c-11 44 -14 91 -17 137c-45 -67 -95 -134 -169 -185c-48 -33 -103 -52 -160 -52c-28 0 -55 7 -72 24 c-13 14 -18 32 -13 52c3 11 6 22 18 30c11 8 25 16 39 16c12 0 22 -3 29 -10c9 -8 12 -20 11 -32c0 -9 2 -16 8 -23c8 -8 20 -11 33 -11c30 0 59 11 83 28c39 27 70 59 100 93c39 47 75 98 107 148c7 79 14 152 7 229c-2 25 -7 50 -14 73c-5 17 -15 33 -28 45 c-13 15 -37 17 -60 17c-27 0 -50 -5 -74 -20c-17 -10 -27 -21 -30 -35c-3 -10 -5 -19 -4 -28c0 -13 7 -25 3 -39c-2 -9 -16 -22 -26 -29c-11 -7 -19 -9 -32 -9c-12 0 -20 5 -27 11c-12 13 -7 34 -3 52c8 32 36 63 69 86c51 35 106 47 165 47c42 0 84 -6 109 -32 c21 -22 26 -53 31 -84c7 -48 7 -100 4 -148c11 25 65 88 98 124c29 32 61 65 100 91c36 25 78 42 121 42c27 0 52 -6 67 -22c10 -10 15 -23 11 -37'], + 0xE4ED: [702,136,698,40,659,'659 691l-119 -438c-29 -116 -96 -240 -216 -323c-57 -39 -125 -66 -193 -66c-33 0 -59 5 -77 25c-17 18 -15 41 -9 67c8 32 25 62 51 90c36 39 71 73 116 104c53 36 176 96 261 135l28 109c-89 -61 -181 -115 -264 -115c-34 -1 -81 17 -95 31c-18 20 -20 64 -11 100 l39 140c4 18 10 35 14 53c1 5 2 10 -2 13c-4 4 -9 6 -16 6c-20 0 -57 -25 -84 -43l-21 9c23 23 48 47 72 64c31 21 63 41 99 41c13 0 26 -5 33 -13c14 -15 7 -43 2 -65l-49 -169c-6 -21 -10 -43 -9 -64c0 -13 2 -27 11 -37c15 -14 34 -24 60 -24c25 0 50 8 74 18 c33 14 63 32 92 51c27 19 62 44 72 72l55 208l74 32zM462 244c-71 -22 -148 -60 -208 -102c-35 -24 -67 -51 -95 -81c-20 -25 -38 -52 -45 -80c-5 -22 -10 -42 4 -57c14 -16 37 -23 64 -23c35 0 66 12 95 32c47 32 82 75 107 119c36 60 63 130 78 192'], + 0xE4EE: [696,11,824,41,785,'785 642c-231 -181 -392 -347 -592 -521c36 12 71 20 107 20c45 0 83 -16 118 -33l118 -60c16 -8 35 -16 54 -16c23 0 44 9 64 23c11 7 17 21 20 32c3 14 -3 28 -12 38c-9 11 -13 24 -10 36c3 10 12 19 24 26c9 7 23 9 34 9c15 0 26 -5 33 -13c13 -13 17 -31 13 -49 c-9 -36 -39 -68 -76 -94c-48 -33 -105 -51 -160 -51c-24 0 -47 5 -67 15l-76 38c-29 15 -59 28 -91 39c-20 6 -41 13 -65 13c-28 0 -59 -13 -84 -30c-8 -6 -54 -59 -59 -64l-34 6l-3 20l588 529c-9 -2 -23 -2 -34 -2c-30 0 -82 30 -117 54c-26 17 -53 35 -89 35 c-25 0 -54 -4 -76 -19c-22 -14 -38 -31 -43 -52c-3 -10 -4 -27 3 -38c9 -13 10 -32 10 -35c-3 -9 -7 -19 -16 -26c-13 -8 -27 -15 -41 -15c-15 0 -27 5 -35 14c-11 12 -6 32 -2 50c13 49 57 87 106 122c43 29 90 53 141 53c19 0 39 -6 55 -12c25 -10 46 -22 66 -36l75 -45 c11 -5 22 -9 37 -9c8 0 22 8 30 15c10 7 18 16 26 26l22 29h19'], + 0xE4EF: [694,15,938,40,898,'898 675l-17 -9c-12 -8 -18 -18 -22 -36l-73 -290c-17 -70 -34 -141 -45 -211c-4 -24 -5 -48 10 -65c6 -6 15 -8 24 -8c15 0 30 6 44 14c17 10 33 20 52 33l14 -17c-36 -30 -74 -55 -115 -75c-26 -13 -55 -26 -83 -26c-15 0 -30 4 -37 14c-7 8 -8 19 -10 30 c0 16 3 32 8 49l39 158h-250c-58 -87 -141 -164 -187 -198c-39 -28 -85 -48 -129 -48c-26 0 -50 9 -66 25c-15 19 -18 44 -12 70c4 13 13 27 27 37c11 8 23 9 36 9s25 -5 31 -14c4 -4 6 -11 4 -18c-1 -4 -4 -11 -7 -16c-4 -8 -7 -16 -9 -24s3 -13 6 -18c7 -7 16 -10 27 -10 c19 0 36 7 52 19c29 21 56 52 78 78c23 26 96 137 143 207c44 65 84 126 134 189c32 40 67 81 114 106c30 16 63 31 96 42c38 13 90 19 122 22zM787 638l-8 11c-21 -4 -45 -15 -66 -30c-43 -31 -74 -73 -104 -114c-53 -73 -98 -150 -142 -226h230'], + 0xE4F0: [712,1,850,40,809,'807 554c-11 -44 -39 -78 -82 -109c-28 -21 -59 -38 -93 -52l2 -8c46 -8 102 -20 124 -45c24 -27 31 -71 22 -109c-13 -51 -60 -100 -109 -136c-93 -66 -220 -96 -326 -96h-305l44 53c56 0 100 13 149 48c32 24 60 58 76 91c26 51 44 112 57 165l74 296 c-47 -4 -125 -25 -178 -63c-25 -18 -50 -41 -57 -68c-2 -11 -1 -22 -2 -33c0 -10 3 -18 0 -28c-3 -12 -7 -24 -18 -32c-12 -9 -29 -15 -44 -15c-8 0 -15 4 -18 10c-14 14 -11 35 -6 55c10 43 44 83 86 114c72 51 159 77 243 88l76 32l10 -7l-5 -23c60 0 119 0 174 -8 c35 -5 69 -15 88 -38c20 -22 25 -52 18 -82zM722 527c8 32 4 63 -16 85c-15 18 -40 27 -65 33c-39 8 -80 10 -121 10l-64 -254c-3 -13 15 -15 25 -15c60 0 123 15 176 53c35 25 56 52 65 88zM694 219c8 34 2 75 -19 99c-14 16 -35 28 -58 34c-31 9 -65 9 -99 9 c-25 0 -51 -2 -77 -4c-21 -53 -44 -115 -80 -165c-35 -48 -100 -106 -148 -133l4 -8h186c41 0 88 2 133 9c26 4 51 14 77 34c39 31 70 80 81 125'], + 0xE4F1: [697,15,716,40,676,'671 554c-12 -47 -42 -93 -87 -126s-99 -47 -150 -47c-43 0 -85 6 -110 33c-14 15 -16 36 -11 58c3 13 9 27 22 36c11 9 25 11 39 11c12 0 25 -3 32 -11c8 -11 1 -27 -6 -41c-8 -16 -13 -34 -3 -46c10 -10 27 -10 41 -10c32 0 63 13 90 32c35 26 53 64 62 99 c8 34 8 65 -13 89c-22 25 -60 34 -99 34c-60 0 -121 -15 -173 -52c-41 -30 -71 -66 -94 -106c-32 -55 -51 -111 -65 -168c-13 -53 -21 -106 -13 -156c4 -41 18 -81 45 -112s69 -52 118 -52c44 0 90 16 128 43c29 22 49 53 63 83l14 7l40 -47c-14 -19 -32 -38 -53 -54 c-67 -49 -151 -66 -228 -66c-71 0 -134 24 -173 69c-27 30 -39 68 -44 109c-6 48 0 100 13 151c15 61 38 123 74 181c29 48 68 90 117 125c78 56 170 77 259 77c58 0 118 -8 151 -46c23 -26 23 -60 14 -97'], + 0xE4F2: [716,-4,958,40,917,'905 392c-26 -103 -97 -202 -197 -275c-102 -73 -222 -113 -339 -113h-329l45 50c65 0 132 25 188 66c28 21 47 51 60 80c23 48 36 98 48 147l77 309c-69 0 -138 -17 -199 -61c-21 -15 -37 -40 -42 -61c-6 -22 -2 -39 -8 -61c-3 -12 -8 -24 -21 -33 c-9 -8 -23 -14 -35 -14c-14 0 -23 8 -27 15c-6 11 -5 29 0 49c10 42 41 82 81 111c81 58 177 79 259 84l76 31l7 -4l-6 -24c74 0 145 -2 210 -20c50 -14 96 -35 127 -70c47 -53 44 -131 25 -206zM822 387c18 73 13 147 -33 200c-24 26 -59 41 -96 51c-50 14 -101 18 -158 18 l-58 -234c-16 -64 -39 -129 -73 -191c-28 -47 -66 -94 -113 -130l-49 -37l2 -10h138c53 0 107 0 161 14c42 11 85 32 121 59c41 29 71 67 96 107c30 49 49 101 62 153'], + 0xE4F3: [702,12,666,40,626,'624 605c-5 -21 -10 -38 -31 -57c-17 -16 -45 -23 -58 -23s-19 1 -25 8c-3 4 -5 12 -3 20c3 9 9 16 16 24c10 10 20 21 24 37c4 18 -3 32 -12 40c-13 12 -31 17 -58 17c-31 0 -68 -6 -96 -26c-41 -31 -69 -74 -80 -117c-9 -35 -3 -70 19 -94c15 -18 39 -27 63 -33 c35 -9 73 -12 111 -12l-6 -25c-52 0 -103 -3 -156 -14c-36 -7 -78 -19 -109 -41c-44 -32 -71 -75 -83 -121c-11 -45 -7 -90 21 -122c30 -34 85 -42 138 -42c50 0 100 23 143 54c26 19 43 45 54 73l15 3l38 -48c-11 -13 -25 -31 -35 -38c-73 -52 -158 -80 -242 -80 c-44 0 -87 4 -126 16c-31 10 -60 25 -80 47c-28 32 -31 77 -20 122c14 54 54 106 107 145c49 35 107 54 165 61l3 10c-29 10 -58 24 -76 45c-24 28 -26 67 -16 106c10 41 40 81 80 110c61 44 125 52 194 52c42 0 84 -7 108 -34c13 -14 19 -39 13 -63'], + 0xE4F4: [699,15,991,39,951,'951 683l-61 -73c-15 -17 -41 -35 -65 -35c-15 0 -32 4 -47 9c-46 12 -122 34 -135 39l-65 -248h163l-31 -28h-139l-12 -49c-11 -44 -27 -88 -53 -129c-21 -34 -42 -61 -82 -92c-74 -59 -174 -92 -266 -92c-43 0 -79 14 -103 41c-14 15 -18 36 -13 56c3 12 9 20 22 29 c11 8 25 12 40 12c17 0 22 -2 32 -38c2 -13 10 -25 18 -34c17 -20 45 -26 75 -26c48 0 99 25 136 56c28 22 47 46 63 73c21 34 32 70 42 105l24 88h-183l23 28h167l72 265c-25 6 -60 9 -87 9c-57 0 -110 -11 -161 -48c-26 -19 -56 -54 -60 -70c-4 -14 -5 -25 -6 -39 c1 -11 3 -25 0 -36c-3 -12 -8 -21 -19 -30c-11 -7 -23 -14 -36 -14c-15 0 -23 6 -31 14c-10 12 -9 29 -5 46c13 51 57 98 107 134c78 57 159 72 248 72c18 0 52 -2 69 -4l61 25l8 -3l-7 -28c52 -12 104 -22 160 -30c11 -2 27 -4 35 -4c18 0 39 10 51 22l35 36'], + 0xE4F5: [697,130,743,40,703,'700 582c-7 -27 -23 -53 -50 -73c-29 -21 -61 -37 -95 -37c-5 0 -33 6 -50 9l8 17c27 0 52 3 77 21c19 14 26 35 30 54c6 22 -1 40 -15 56c-20 24 -60 34 -89 34c-49 0 -102 -13 -145 -44c-60 -43 -98 -102 -113 -163c-14 -56 -17 -115 18 -155c26 -29 64 -48 110 -48 c51 0 100 14 144 46c17 12 48 52 62 81l63 13l-33 -132c-15 -63 -37 -126 -68 -187c-23 -42 -52 -80 -94 -110c-82 -59 -174 -94 -268 -94c-51 0 -102 8 -130 41c-18 20 -27 46 -19 75c3 12 13 25 25 34s29 11 44 11c11 0 20 -3 26 -10c9 -9 8 -24 7 -37c1 -18 1 -36 13 -49 c19 -22 54 -28 88 -28c52 0 103 23 147 55c33 25 58 56 78 88c23 41 41 79 51 122l21 96c-54 -30 -115 -45 -172 -45c-71 0 -136 22 -176 66c-39 44 -35 106 -20 166c16 66 62 133 129 174c82 49 164 68 249 68c37 0 103 -7 131 -40c19 -21 23 -46 16 -75'], + 0xE4F6: [690,8,1174,40,1134,'1134 642c-7 -26 -33 -37 -51 -37c-10 0 -23 6 -27 13c-8 10 -14 17 -31 17c-16 0 -33 -5 -47 -15c-19 -14 -36 -26 -52 -49c-20 -27 -34 -50 -45 -77c-36 -79 -57 -162 -77 -244c-12 -45 -22 -90 -23 -134c1 -27 3 -54 18 -74c7 -9 18 -12 31 -12c14 0 41 12 54 23 c21 16 40 32 59 50l19 -17c-27 -25 -46 -41 -65 -56c-34 -24 -65 -38 -105 -38c-25 0 -48 5 -62 20c-18 22 -28 51 -28 81c-1 44 10 89 21 134c7 30 24 82 38 123h-252c-17 -56 -42 -113 -69 -166c-23 -44 -61 -84 -105 -116c-61 -44 -126 -74 -198 -74c-31 0 -62 4 -81 24 c-12 14 -19 32 -14 52c2 10 8 19 18 26s23 10 34 10c13 0 27 0 33 -7c5 -6 8 -14 9 -23c2 -8 5 -19 10 -25c11 -13 31 -15 50 -15c24 0 63 13 93 34c39 29 66 70 85 109c32 63 52 128 68 192l70 281c-40 0 -76 -2 -117 -10c-28 -6 -56 -13 -79 -30c-23 -18 -49 -40 -55 -66 c-4 -13 -5 -26 -6 -38c1 -14 0 -40 0 -40c-2 -10 -5 -20 -16 -27c-12 -10 -25 -19 -40 -19c-11 0 -19 7 -24 13c-7 7 -8 17 -8 27c1 16 3 31 7 47c12 45 53 84 97 115c33 24 74 42 113 50c49 10 89 15 137 15l131 -3l-6 -17l-61 -22l-67 -259h258c20 55 49 108 86 159 c27 37 63 74 104 101c40 26 70 42 114 42c54 0 57 -36 54 -48'], + 0xE4F7: [685,14,669,40,630,'630 679l-21 -20l-56 -10c-29 -117 -65 -228 -94 -344c-23 -94 -74 -192 -168 -260c-45 -33 -100 -59 -154 -59c-32 0 -64 7 -81 27c-13 15 -19 35 -14 56c3 11 7 26 16 33s24 12 35 12c12 0 20 -8 25 -16c3 -2 3 -18 4 -28c0 -12 3 -24 10 -33c8 -9 24 -9 38 -9 c32 0 62 16 90 35c33 24 56 57 73 89c24 47 41 97 54 146c29 119 65 232 94 351c-37 0 -74 -3 -112 -12c-28 -7 -57 -16 -80 -34c-19 -13 -36 -31 -41 -51c-2 -7 -2 -15 -1 -22c0 -12 2 -29 1 -35c-3 -12 -12 -23 -24 -32c-8 -5 -17 -8 -26 -8c-10 0 -17 4 -22 10 c-12 14 -12 34 -7 53c9 37 34 72 69 98c38 26 80 41 124 51c59 13 116 18 174 18c31 0 62 -5 94 -6'], + 0xE4F8: [692,129,754,40,714,'714 674l-77 -23l-6 -23l-102 -407c-13 -53 -32 -105 -62 -156c-23 -39 -53 -76 -93 -105c-35 -26 -74 -49 -114 -66c-34 -14 -68 -23 -102 -23c-37 0 -76 5 -97 29c-19 22 -25 52 -17 84c11 43 36 86 68 125c39 47 87 89 139 127c72 52 153 88 238 114l75 300 c-62 -7 -124 -17 -176 -55c-35 -25 -54 -60 -63 -95c-5 -21 -12 -48 -28 -60c-11 -8 -24 -17 -35 -17c-12 0 -23 5 -29 13c-9 11 -7 26 -4 41c12 45 49 84 92 116c97 70 214 99 326 99h67v-18zM476 316c-67 -22 -134 -52 -192 -94c-75 -55 -137 -125 -156 -203 c-7 -29 -12 -60 6 -81c15 -17 42 -23 69 -23c42 0 84 19 119 45c32 23 55 54 72 85c25 43 40 87 51 131c12 47 19 93 31 140'], + 0xE4F9: [690,12,1088,40,1048,'1047 635c-3 -13 -11 -26 -25 -36c-12 -9 -27 -16 -42 -16c-18 0 -24 13 -25 25c1 14 -13 23 -29 23c-22 0 -45 -12 -64 -25c-32 -21 -58 -39 -83 -63l-173 -161s-6 -5 -8 -7l-3 -18l62 -175c15 -44 38 -84 69 -119c10 -12 25 -21 43 -21c19 0 39 7 55 19 c19 13 31 27 44 44l16 -16c-15 -23 -33 -44 -57 -62c-30 -22 -67 -39 -102 -39c-34 0 -66 9 -84 31c-16 17 -25 38 -31 60l-80 247h-31c-25 -97 -77 -195 -172 -264c-55 -40 -120 -67 -184 -67c-35 0 -71 7 -91 30c-10 13 -14 29 -10 47c3 10 8 20 18 28c10 7 22 11 34 11 c10 0 22 0 27 -4c6 -7 11 -15 14 -23c5 -10 9 -20 16 -29c10 -11 25 -17 43 -17c36 0 72 17 102 39c31 22 51 48 70 79c23 39 38 81 49 122l93 374c-68 0 -139 -15 -201 -56c-21 -14 -38 -33 -43 -54c-3 -12 -5 -23 -6 -35s1 -23 -2 -34c-3 -13 -6 -27 -19 -36 c-11 -9 -25 -14 -38 -14c-12 0 -22 4 -29 12c-13 15 -7 39 -2 60c10 40 41 80 80 106c98 63 205 87 313 87c0 0 60 0 90 -2l-9 -17l-56 -17l-75 -297h19l222 204c32 29 68 57 104 83c22 17 38 25 63 36c19 9 45 12 64 12c23 0 39 -5 52 -19c9 -11 16 -20 12 -36'], + 0xE4FA: [685,7,840,40,800,'798 607c-15 -60 -67 -61 -67 -61c-13 0 -25 4 -32 12c-4 5 -1 21 2 32c3 14 -2 34 -10 45c-11 12 -23 16 -45 16c-24 0 -49 -9 -72 -26c-25 -17 -37 -28 -50 -51c-21 -35 -51 -101 -70 -146c-17 -42 -35 -78 -66 -125c-16 -29 -43 -58 -68 -78c-26 -22 -53 -40 -73 -49 l1 -6c92 0 139 -36 139 -36c23 -17 88 -43 121 -51c22 -6 46 -11 71 -11c37 0 64 12 92 39c30 28 43 51 52 89c4 17 7 41 8 55l30 5c0 -17 -7 -47 -9 -58c-14 -56 -35 -113 -89 -154c-39 -30 -75 -55 -124 -55c-27 0 -77 4 -100 13c-41 15 -59 24 -84 45 c-64 43 -116 64 -146 64c-26 0 -68 -16 -85 -35c-27 -28 -49 -59 -65 -86l-19 17c12 33 33 66 69 105c16 17 48 34 63 43c19 10 45 26 65 40c43 31 95 134 123 204c19 48 37 93 70 137c26 34 61 68 99 94c52 36 115 51 174 51c35 0 66 -6 83 -26c13 -13 17 -32 12 -52'], + 0xE4FB: [699,13,1268,40,1228,'1228 654c-3 -9 -6 -19 -16 -25c-12 -10 -28 -16 -43 -16c-8 0 -18 0 -21 4c-4 5 -9 10 -11 16c0 5 0 11 -4 15c-5 6 -13 11 -23 11s-21 -4 -31 -10c-17 -13 -31 -37 -35 -54l-81 -325c-14 -53 -23 -106 -26 -158c-1 -29 -2 -46 15 -67c7 -6 15 -10 26 -10 c18 0 37 8 52 20c20 14 40 31 56 49l18 -15c-21 -21 -45 -40 -69 -58c-31 -22 -66 -44 -102 -44c-27 0 -50 10 -64 26c-21 25 -20 49 -16 84c6 38 42 181 64 271c18 70 31 140 52 210c-86 -63 -152 -143 -208 -225c-74 -107 -128 -214 -174 -328l-57 -35l-10 7 c15 123 21 239 8 357c-6 43 -13 86 -28 127c-10 31 -23 61 -46 86l-57 -226c-16 -65 -38 -130 -74 -193c-24 -46 -55 -90 -103 -124c-30 -22 -66 -34 -101 -34c-28 0 -52 10 -68 27c-8 11 -13 25 -9 41c3 12 10 21 21 30c10 7 22 11 34 11c19 0 31 -10 36 -25 c4 -17 20 -28 40 -28c19 0 39 12 56 24c28 21 47 50 63 79c22 41 35 83 46 125l82 330c-16 24 -45 40 -80 40c-26 0 -53 -11 -75 -27c-31 -22 -49 -53 -63 -84l-23 -1c11 26 23 51 39 75c12 18 27 35 45 49c36 26 80 43 122 43c48 0 88 -19 114 -50h4 c49 -55 68 -122 85 -194c20 -88 27 -174 26 -267l6 -2c48 90 101 168 169 250c55 68 117 133 192 186c56 40 123 76 189 76c19 0 37 -5 49 -18c6 -7 11 -16 9 -26'], + 0xE4FC: [706,7,1107,39,1066,'1065 656c-2 -8 -5 -18 -15 -24c-13 -6 -40 -16 -40 -16c-9 0 -20 0 -23 4c-6 6 -10 13 -12 21c0 10 -6 18 -17 18c-9 0 -19 -2 -26 -7c-21 -15 -29 -36 -37 -56c-9 -25 -30 -104 -43 -156l-102 -417l-62 -30c-62 190 -135 388 -238 542c-13 -51 -28 -103 -45 -157 c-22 -70 -56 -178 -72 -209c-23 -46 -49 -86 -100 -125c-36 -28 -80 -48 -124 -48c-22 0 -44 6 -57 21c-9 10 -15 23 -11 38c3 14 15 27 28 37c9 6 18 10 28 10c11 0 21 -2 27 -9c2 -2 7 -14 11 -20c5 -10 16 -14 29 -14c27 0 51 12 73 28c31 23 46 53 62 84 c23 50 39 101 52 152l65 259c-16 17 -32 33 -53 45c-15 9 -30 16 -49 16c-24 0 -49 -6 -68 -21c-31 -21 -47 -55 -60 -85l-26 -5c12 49 34 98 81 133c37 26 79 36 120 36c53 0 91 -30 119 -63c39 -43 65 -95 90 -147c38 -76 110 -244 162 -367l11 12c21 112 47 229 76 344 c10 41 26 83 46 123c11 25 26 52 53 71c28 21 64 32 98 32c17 0 31 -5 41 -15c8 -9 11 -22 8 -35'], + 0xE4FD: [686,18,769,40,728,'728 532c4 -52 -9 -105 -22 -158c-16 -63 -42 -125 -77 -184c-29 -48 -66 -92 -116 -128c-77 -56 -173 -80 -262 -80c-70 0 -126 28 -164 72c-27 29 -39 68 -44 108c-6 48 -1 99 12 149c29 115 95 229 208 311c19 15 41 26 63 37l13 -12c-108 -79 -170 -188 -197 -297 c-14 -56 -22 -112 -19 -165c2 -39 9 -79 35 -107c30 -36 76 -57 133 -57c55 0 113 17 161 52c45 33 76 74 102 118c34 59 57 120 72 181c13 52 26 105 24 155c-1 36 -12 71 -35 97c-16 18 -43 29 -71 29c-35 0 -71 -9 -101 -31c-24 -17 -44 -40 -50 -64c-8 -29 8 -50 26 -70 c8 -9 7 -22 3 -35c-5 -21 -30 -33 -53 -33c-14 0 -28 5 -35 15c-17 19 -15 45 -8 71c12 51 43 98 93 134c43 32 94 46 143 46c53 0 99 -20 127 -52c24 -28 37 -65 39 -102'], + 0xE4FE: [710,11,836,39,795,'711 508c10 40 2 78 -23 107c-15 16 -38 24 -62 31c-33 9 -68 9 -104 9l-84 -335c61 0 129 10 182 49c49 36 78 88 91 139zM790 515c-14 -55 -50 -109 -104 -149c-76 -54 -168 -76 -255 -76c-5 -20 -12 -40 -18 -60c-25 -71 -51 -138 -120 -188 c-47 -34 -101 -53 -154 -53c-35 0 -67 11 -86 33c-14 16 -16 39 -10 62c4 14 13 26 26 36c10 7 24 10 36 10c10 0 21 -3 25 -9c12 -13 8 -29 4 -47c-4 -15 -4 -32 6 -43c7 -8 21 -10 34 -10c29 0 52 14 75 31c27 19 44 48 56 73c20 39 33 79 43 120l103 410 c-28 0 -134 -1 -189 -41c-28 -21 -58 -47 -66 -77c-2 -11 -1 -27 -2 -41c1 -9 5 -18 2 -27c-3 -12 -8 -24 -19 -33c-11 -7 -24 -13 -36 -13c-10 0 -19 4 -25 11c-14 15 -8 38 -3 59c12 48 52 93 100 126c69 48 159 66 245 66l72 25l8 -3l-5 -20c55 0 103 -2 152 -15 c37 -10 67 -21 89 -46c25 -29 26 -71 16 -111'], + 0xE4FF: [694,24,781,40,741,'740 545c4 -44 -1 -85 -12 -131c-25 -98 -81 -196 -178 -266c-45 -32 -93 -56 -145 -69c7 -5 15 -8 31 -14c13 -4 99 -23 114 -23c18 0 33 11 49 22c26 18 42 39 59 62l19 -8c-21 -34 -41 -68 -78 -97c-21 -17 -48 -32 -74 -32c-23 0 -46 0 -65 5l-207 42 c-23 4 -46 7 -70 7s-53 -1 -76 -16c-14 -9 -33 -33 -46 -51l-21 9c20 32 49 69 78 90c32 23 71 30 109 30c17 0 37 0 52 -2c22 -3 49 -6 70 -6c53 0 108 22 153 55c39 28 63 65 85 102c30 52 47 106 61 160c11 44 19 84 15 127c-1 31 -11 59 -31 82c-26 30 -72 44 -120 44 c-55 0 -117 -11 -166 -47c-36 -25 -63 -56 -84 -91c-26 -42 -42 -83 -54 -128c-15 -63 -15 -128 26 -174c20 -23 54 -33 88 -41l-16 -21c-53 0 -102 15 -130 49c-46 52 -60 122 -42 195c21 83 67 160 149 219c73 53 163 66 247 66c71 0 137 -17 177 -62 c22 -24 32 -54 33 -87'], + 0xE500: [712,6,897,40,857,'769 515c10 41 8 81 -18 110c-12 14 -35 19 -55 23c-38 6 -74 7 -113 7l-83 -316c15 -3 31 -3 47 -3c45 0 96 15 135 44c50 35 75 86 87 135zM852 526c-13 -50 -40 -101 -90 -137c-45 -33 -103 -61 -153 -71l22 -99c11 -55 28 -107 66 -149c6 -9 20 -14 34 -14 c12 0 25 7 34 14c16 12 24 21 33 36l16 -12c-18 -29 -36 -51 -65 -72c-21 -15 -44 -28 -69 -28c-21 0 -41 2 -53 14c-18 22 -34 47 -40 75l-52 221l-43 4c-22 -51 -42 -101 -74 -149c-23 -34 -53 -68 -89 -93c-58 -43 -123 -71 -190 -71c-31 0 -62 4 -79 23 c-13 15 -24 31 -18 52c2 11 10 23 21 31c10 7 22 11 33 11s17 -4 23 -10c7 -8 12 -17 16 -26c3 -9 7 -19 13 -25c9 -11 29 -12 47 -12c36 0 69 15 100 38c31 22 51 51 68 81c22 42 38 86 49 129l92 363c-68 0 -133 -11 -193 -54c-22 -15 -45 -36 -50 -58 c-3 -10 -4 -22 -4 -33c-1 -12 2 -23 -1 -35c-3 -11 -12 -22 -23 -31c-11 -7 -24 -14 -36 -14c-11 0 -17 6 -22 13c-12 15 -11 32 -6 52c10 43 45 83 87 114c79 57 182 74 256 80l78 28l9 -4l-5 -21c55 0 103 -1 155 -9c32 -5 65 -14 85 -36c26 -30 28 -74 18 -116'], + 0xE501: [702,12,679,40,638,'634 596c-4 -18 -14 -37 -33 -51c-29 -21 -63 -36 -97 -36c-14 0 -27 2 -40 5l6 16c20 0 45 5 62 19c17 13 24 28 29 46c4 18 -1 33 -14 46c-17 21 -48 28 -81 28c-38 0 -77 -9 -110 -34c-26 -19 -45 -39 -52 -66c-9 -37 -2 -71 20 -97c27 -31 66 -51 108 -69 c45 -21 90 -44 121 -79c27 -30 32 -72 21 -115c-12 -51 -44 -103 -95 -140c-76 -55 -165 -81 -252 -81c-58 0 -134 13 -165 49c-24 27 -26 65 -17 103c10 41 41 83 81 112c37 27 77 34 117 34c28 0 60 -4 74 -22c10 -10 15 -22 11 -35c-2 -8 -4 -17 -12 -23 c-11 -8 -24 -15 -37 -15c-10 0 -19 3 -25 10c-5 5 -5 13 -5 21c-1 9 -4 19 -10 26c-5 6 -22 6 -32 6c-18 0 -28 -5 -42 -16c-24 -17 -40 -40 -46 -63c-10 -41 -5 -81 20 -110c23 -26 74 -41 117 -41c51 0 111 14 155 46c39 29 62 64 72 104c9 37 15 77 -9 105 c-27 29 -58 53 -98 70c-28 11 -55 24 -80 39c-17 10 -34 22 -48 36c-29 33 -33 78 -22 124c10 39 31 72 69 99c59 43 127 55 195 55c52 0 104 -5 134 -38c17 -19 17 -41 10 -68'], + 0xE502: [693,6,846,40,807,'807 682c-26 -32 -50 -56 -83 -83c-26 -21 -59 -32 -90 -32c-26 0 -85 11 -127 19l-68 -269c-14 -56 -29 -112 -59 -166c-22 -40 -54 -79 -95 -108c-45 -33 -95 -49 -149 -49c-32 0 -65 6 -84 26c-14 18 -14 41 -7 66c3 12 13 24 25 33c11 8 24 14 36 14 c14 0 25 -7 32 -15c7 -9 2 -23 -2 -34c-6 -17 -11 -35 -1 -47c8 -9 23 -10 38 -10c26 0 47 6 70 22c27 20 46 48 59 75c22 43 35 88 46 132l84 343c-55 15 -128 35 -172 35c-29 0 -66 -10 -92 -29s-38 -35 -45 -61c-2 -9 1 -16 3 -23c6 -11 12 -21 20 -29c6 -6 5 -15 3 -23 c-3 -12 -13 -21 -24 -29s-23 -16 -36 -16c-15 0 -25 9 -33 18c-14 16 -17 39 -11 62c12 48 52 86 97 119c56 41 127 61 191 61c39 0 111 -12 165 -25c59 -13 126 -28 182 -28c22 0 45 10 64 24c18 13 29 23 42 38'], + 0xE503: [699,16,824,41,784,'784 688c-14 -6 -29 -13 -42 -22c-19 -13 -34 -29 -47 -47c-17 -23 -31 -47 -42 -71c-48 -101 -80 -204 -105 -306c-10 -39 -17 -78 -17 -117c0 -24 2 -49 19 -67c6 -8 15 -11 27 -11c16 0 28 4 42 14c19 14 37 34 52 52l20 -14c-22 -28 -45 -54 -72 -74 c-29 -20 -63 -34 -95 -34c-21 0 -40 6 -51 19c-24 27 -28 61 -28 97c-8 -7 -36 -28 -54 -41c-65 -47 -143 -82 -220 -82c-41 0 -76 17 -98 43c-12 12 -15 29 -16 46c-1 23 3 48 9 72c16 63 43 126 73 188c30 64 60 129 76 195c9 35 16 67 -8 93c-6 9 -22 15 -35 15 s-28 -6 -41 -14c-26 -20 -38 -40 -45 -68c-5 -19 -8 -44 -10 -63l-35 -9c3 24 6 53 12 78c10 40 31 74 70 103c28 20 63 29 94 29c29 0 57 -6 72 -24c13 -14 15 -32 17 -50c0 -27 -2 -48 -9 -76c-18 -70 -50 -139 -83 -207c-23 -48 -47 -99 -58 -145c-7 -28 -11 -56 -9 -84 c1 -20 6 -39 18 -54c15 -17 39 -25 65 -25c53 0 103 29 147 61c25 19 51 38 74 58c39 159 99 324 158 485c50 26 104 50 158 68'], + 0xE504: [709,9,788,40,748,'745 594c-11 -41 -23 -68 -52 -105c-52 -68 -127 -147 -189 -211c-84 -88 -164 -173 -231 -259l-64 -28l-6 9c19 104 26 211 30 317c5 69 1 136 -2 204c-1 34 -6 74 -29 102c-7 8 -18 14 -31 14c-16 0 -32 -5 -45 -15c-22 -15 -47 -58 -60 -89l-26 3c10 29 28 58 46 86 c12 19 27 39 48 54c27 19 59 28 90 28c26 0 42 -10 56 -26c15 -18 21 -41 24 -65c7 -39 9 -79 6 -120l-17 -382l14 3l189 202c39 40 78 83 108 128c24 36 41 73 52 111c7 27 9 55 -7 75c-14 14 -34 23 -57 23c-21 0 -41 -1 -59 -14c-32 -23 -52 -54 -67 -86l-25 3 c19 42 45 84 87 115c34 24 74 38 114 38c35 0 67 -9 87 -31s23 -53 16 -84'], + 0xE505: [702,5,1148,40,1108,'1103 573c-10 -40 -35 -78 -60 -116c-43 -62 -90 -122 -140 -181c-71 -84 -134 -162 -197 -251l-57 -23l-9 5c17 99 6 187 -18 277c-16 66 -28 140 -34 208c-57 -71 -118 -150 -170 -224c-58 -85 -122 -163 -174 -241c-2 -3 -15 -11 -19 -13c-18 -7 -36 -12 -53 -19 l-12 8c34 138 62 272 70 408c3 43 3 85 -4 126c-5 28 -13 55 -31 77c-10 10 -20 21 -39 21c-12 0 -26 -4 -36 -13c-30 -24 -48 -65 -53 -87l-27 2c13 51 42 105 92 142c25 18 54 22 82 22c31 0 48 -14 63 -32c18 -20 27 -44 31 -70c4 -36 6 -81 4 -120 c-5 -118 -28 -232 -57 -352h11l132 163c57 71 111 142 157 217c32 54 61 110 75 166l73 29l12 -8c-15 -29 -26 -54 -33 -83c-24 -95 -12 -186 12 -272c19 -70 32 -143 35 -218c70 79 143 159 201 243c37 53 68 107 82 164c5 21 9 41 8 61c0 14 -3 27 -11 37 c-14 15 -31 23 -56 23c-32 0 -58 -15 -83 -36l-18 11c12 11 23 20 36 30c40 29 84 48 131 48c30 0 53 -7 68 -26c24 -27 26 -65 16 -103'], + 0xE506: [706,9,953,39,912,'911 640c-3 -11 -7 -22 -18 -30s-26 -18 -38 -18c-8 0 -16 1 -19 6c-4 5 -6 11 -8 17c-1 6 -5 11 -9 16c-7 9 -20 13 -33 13c-21 0 -42 -8 -59 -20c-44 -31 -75 -73 -106 -113c-41 -55 -74 -108 -103 -167c-4 -64 -9 -118 -2 -180c4 -39 18 -78 42 -108 c11 -11 29 -14 47 -14c20 0 40 12 57 24c35 26 57 59 70 95l24 -4c-12 -50 -48 -92 -95 -127c-32 -23 -71 -39 -109 -39c-30 0 -61 6 -77 25c-18 21 -23 48 -27 75c-10 44 -13 91 -14 137c-44 -67 -92 -134 -162 -185c-46 -33 -98 -52 -151 -52c-27 0 -52 7 -68 24 c-12 14 -16 32 -11 52c3 11 6 22 17 30s24 16 36 16s22 -3 28 -10c8 -8 11 -20 10 -32c0 -9 2 -16 7 -23c7 -8 19 -11 31 -11c29 0 55 11 79 28c37 27 67 59 95 93c38 47 72 98 103 148c8 79 16 152 10 229c-2 25 -6 50 -13 73c-3 17 -13 33 -25 45c-12 15 -34 17 -56 17 c-26 0 -48 -5 -70 -20c-16 -10 -25 -21 -28 -35c-3 -10 -5 -19 -5 -28c0 -13 6 -25 2 -39c-2 -9 -15 -22 -25 -29s-18 -9 -30 -9c-11 0 -18 5 -25 11c-11 13 -6 34 -2 52c8 32 34 63 66 86c49 35 100 47 156 47c39 0 79 -6 102 -32c19 -22 24 -53 28 -84 c6 -48 5 -100 1 -148c11 25 63 88 95 124c28 32 59 65 95 91c34 25 74 42 115 42c25 0 49 -6 63 -22c9 -10 13 -23 9 -37'], + 0xE507: [702,136,674,40,634,'634 691l-119 -438c-29 -116 -94 -240 -207 -323c-55 -39 -119 -66 -184 -66c-30 0 -55 5 -72 25c-15 18 -13 41 -7 67c8 32 25 62 50 90c34 39 67 73 110 104c50 36 167 96 248 135l28 109c-85 -61 -172 -115 -250 -115c-32 -1 -77 17 -90 31c-17 20 -17 64 -8 100 l38 140c4 18 10 35 14 53c1 5 2 10 -1 13c-4 4 -9 6 -15 6c-20 0 -55 -25 -80 -43l-20 9c22 23 46 47 69 64c29 21 60 41 94 41c12 0 24 -5 31 -13c13 -15 6 -43 1 -65l-49 -169c-6 -21 -10 -43 -9 -64c-1 -13 1 -27 9 -37c14 -14 32 -24 56 -24s47 8 71 18 c31 14 60 32 87 51c26 19 59 44 69 72l54 208l71 32zM442 244c-67 -22 -140 -60 -198 -102c-33 -24 -64 -51 -90 -81c-19 -25 -37 -52 -44 -80c-5 -22 -10 -42 3 -57c13 -16 35 -23 60 -23c33 0 63 12 90 32c45 32 78 75 103 119c34 60 61 130 76 192'], + 0xE508: [696,11,789,41,750,'750 642c-219 -181 -374 -347 -564 -521c33 12 67 20 101 20c41 0 77 -16 110 -33l111 -60c15 -8 32 -16 50 -16c21 0 41 9 60 23c11 7 16 21 19 32c3 14 -2 28 -10 38c-8 11 -12 24 -9 36c3 10 12 19 23 26c9 7 22 9 33 9c13 0 23 -5 30 -13c12 -13 16 -31 12 -49 c-9 -36 -38 -68 -74 -94c-45 -33 -98 -51 -150 -51c-23 0 -45 5 -63 15l-71 38c-28 15 -56 28 -85 39c-20 6 -39 13 -62 13c-26 0 -56 -13 -79 -30c-8 -6 -52 -59 -57 -64l-32 6l-2 20l561 529c-8 -2 -21 -2 -32 -2c-28 0 -76 30 -109 54c-24 17 -49 35 -83 35 c-24 0 -51 -4 -72 -19c-21 -14 -36 -31 -41 -52c-3 -10 -5 -27 2 -38c8 -13 9 -32 9 -35c-3 -9 -7 -19 -16 -26c-12 -8 -25 -15 -39 -15s-25 5 -32 14c-11 12 -6 32 -2 50c13 49 55 87 102 122c41 29 86 53 133 53c18 0 38 -6 53 -12c22 -10 42 -22 61 -36 c23 -16 59 -39 70 -45c10 -5 21 -9 34 -9c8 0 21 8 29 15c9 7 17 16 25 26l21 29h18'], + 0xE509: [711,17,1064,39,1024,'1024 711l-2 -29c-30 -6 -48 -14 -52 -29l-111 -446c-13 -52 -33 -130 -13 -150c10 -8 24 -12 39 -12c22 0 39 10 57 21c18 12 32 24 48 37l17 -16c-22 -20 -45 -41 -73 -59c-39 -26 -87 -45 -134 -45c-31 0 -59 9 -75 27c-21 20 -24 49 -23 77c-2 45 8 92 19 138h-245 c-29 -42 -58 -76 -95 -112c-27 -27 -65 -52 -98 -74c-42 -28 -91 -50 -142 -50c-34 0 -67 8 -87 27c-15 15 -17 37 -11 59c4 16 17 32 35 43c16 10 35 14 53 14c16 0 28 -6 37 -14c7 -7 10 -22 8 -34c-2 -11 1 -26 7 -32c7 -5 15 -7 25 -7c14 0 28 6 39 13 c51 34 123 153 171 236c40 70 86 147 137 213c34 46 69 83 121 118c78 51 169 65 263 78c24 3 43 5 85 8zM826 645l-7 5c-28 -6 -56 -18 -78 -32c-41 -27 -67 -63 -91 -99c-43 -62 -107 -166 -142 -244h226'], + 0xE50A: [727,1,1007,40,966,'963 552c-10 -40 -34 -72 -79 -101c-34 -23 -72 -44 -113 -56v-6c52 0 100 -15 130 -43c25 -26 35 -63 26 -99c-11 -44 -50 -87 -94 -122c-39 -31 -116 -72 -158 -90c-36 -16 -104 -36 -165 -36h-470l71 88c35 0 80 3 115 13c27 7 59 24 78 40c31 28 44 56 59 88 c23 51 38 102 51 154l67 269c-49 -6 -98 -19 -142 -43c-33 -18 -64 -43 -71 -73c-2 -7 -3 -15 -4 -22c1 -13 0 -26 -3 -39c-4 -13 -13 -25 -26 -33c-15 -11 -37 -15 -56 -15c-15 0 -29 3 -38 11c-13 14 -12 33 -8 51c11 43 52 79 96 109c82 53 170 80 268 93l122 37l13 -8 l-6 -25c71 0 143 -3 209 -16c43 -8 89 -20 114 -48c18 -22 21 -49 14 -78zM788 201c9 35 9 78 -17 103c-27 27 -70 45 -117 49h-97c-9 -1 -24 -3 -26 -7c-19 -40 -47 -94 -73 -124c-14 -16 -49 -46 -69 -60c-32 -23 -71 -50 -107 -67l3 -8h290c41 0 119 0 154 23 c35 22 52 60 59 91zM828 511c9 35 11 73 -15 98c-19 19 -47 30 -76 38c-39 10 -80 14 -121 14l-64 -258c-2 -6 5 -9 11 -9c32 0 69 0 97 4c42 6 83 18 119 42c31 20 42 43 49 71'], + 0xE50B: [709,15,819,40,779,'774 560c-12 -47 -42 -94 -94 -127c-53 -35 -120 -50 -183 -50c-54 0 -111 5 -142 36c-17 14 -25 33 -20 53c5 19 17 37 38 50c13 10 31 13 48 13c14 0 29 -2 39 -10c8 -8 14 -18 11 -29l-5 -21c-6 -10 -14 -31 -14 -31c-1 -5 -1 -10 3 -13c11 -12 31 -16 51 -16 c28 0 56 15 79 30c42 28 64 67 74 106c8 32 8 66 -17 89c-24 24 -66 33 -110 33c-53 0 -110 -14 -154 -43c-49 -32 -83 -74 -111 -117c-36 -56 -56 -114 -71 -172c-13 -53 -19 -106 -11 -156c7 -40 23 -79 54 -110c33 -32 84 -50 142 -50c38 0 80 11 114 33 c39 26 62 62 71 99l19 8l61 -62c-14 -14 -28 -29 -47 -41c-83 -55 -187 -77 -285 -77c-82 0 -163 15 -210 62c-33 32 -52 74 -59 117c-9 52 -4 107 10 162c26 107 84 218 203 295c95 62 211 88 321 88c68 0 136 -8 176 -46c28 -27 29 -65 19 -103'], + 0xE50C: [727,1,1112,40,1072,'1061 388c-22 -90 -80 -180 -179 -244c-63 -41 -131 -77 -202 -108c-54 -23 -113 -37 -170 -37h-470l71 88c35 0 80 3 115 13c27 7 59 24 78 40c31 28 45 52 59 88c11 27 12 33 22 71l88 352c-49 -6 -102 -19 -145 -43c-33 -18 -64 -43 -71 -73c-2 -7 -3 -15 -4 -22 c0 -13 0 -26 -3 -39c-4 -13 -13 -25 -26 -33c-16 -11 -37 -15 -56 -15c-15 0 -30 3 -38 11c-13 14 -12 33 -8 51c11 43 51 79 96 109c81 53 170 80 268 93l121 37l13 -8l-7 -26c90 0 178 -5 260 -21c54 -11 110 -26 144 -60c61 -58 65 -142 44 -224zM918 482 c-7 40 -24 78 -53 108c-24 24 -62 38 -100 48c-50 12 -104 17 -161 17l-63 -253c-12 -48 -28 -97 -53 -144c-16 -26 -47 -60 -99 -96c-32 -23 -71 -50 -107 -67l3 -8h337c62 0 128 18 181 52c30 20 46 46 60 72c22 40 36 81 46 121c13 51 18 102 9 150'], + 0xE50D: [708,12,770,39,730,'728 606c-6 -21 -17 -42 -37 -58c-15 -12 -32 -20 -52 -20c-18 0 -34 6 -45 16c-7 7 -9 16 -6 26c2 10 7 19 16 28c8 9 14 20 16 30c3 13 0 24 -9 33c-14 14 -40 16 -65 16c-38 0 -77 -13 -110 -34c-44 -29 -72 -70 -82 -111c-9 -36 -2 -71 25 -97c17 -16 45 -23 73 -29 c42 -8 86 -10 131 -10l-7 -29c-58 0 -119 -3 -181 -14c-39 -7 -82 -18 -117 -40c-49 -32 -74 -78 -85 -122c-12 -47 1 -91 35 -124c30 -29 78 -41 129 -41s102 17 144 45c38 24 54 60 66 94l29 9l74 -68c-13 -16 -30 -31 -49 -43c-83 -54 -186 -75 -282 -75 c-55 0 -111 3 -161 14c-36 7 -71 17 -93 38c-33 33 -54 76 -42 124c14 55 48 111 109 151c57 36 124 57 187 65c-34 9 -70 22 -94 45c-28 28 -36 66 -26 105c10 43 37 86 84 117c74 48 165 61 251 61c34 0 69 -2 100 -10c24 -6 42 -14 57 -28c18 -17 23 -40 17 -64'], + 0xE50E: [731,14,1105,40,1066,'1066 686l-72 -71c-16 -15 -32 -29 -51 -39c-12 -7 -23 -11 -37 -11c-19 0 -37 5 -55 10l-141 40l-59 -224h194l-56 -50h-151c-13 -52 -28 -103 -59 -153c-24 -38 -54 -75 -98 -103c-43 -28 -92 -51 -142 -70c-48 -17 -99 -29 -148 -29c-51 0 -103 8 -133 37 c-16 14 -21 34 -15 55c4 17 17 33 36 44c15 11 35 15 54 15c17 0 33 -6 43 -15c8 -10 15 -29 17 -43c2 -13 7 -31 12 -36c9 -10 27 -13 44 -13c46 0 91 21 130 46c28 18 48 45 63 70c27 48 44 103 67 195l-202 -1l50 51h165l70 251c-27 8 -63 13 -85 13 c-45 0 -94 -6 -132 -32c-33 -21 -69 -50 -76 -81c-2 -5 -4 -24 -2 -34c2 -9 3 -19 1 -29c-4 -17 -18 -31 -36 -43c-14 -9 -31 -11 -48 -11c-15 0 -26 4 -34 13c-15 13 -14 33 -9 52c14 56 64 101 124 140c77 50 163 63 252 63c24 0 48 -1 72 -4l107 42l11 -6l-10 -43 l194 -34c11 -2 25 -4 34 -4c13 0 28 4 39 13l54 45'], + 0xE50F: [705,138,860,39,820,'818 590c-7 -26 -22 -54 -46 -72c-32 -24 -74 -43 -116 -43c-22 0 -57 5 -81 9l10 22c16 0 32 1 50 4c12 2 23 6 34 12c21 15 33 37 38 57c5 21 6 44 -9 59c-26 24 -70 32 -114 32c-52 0 -109 -15 -153 -44c-66 -43 -97 -104 -112 -163c-15 -61 -6 -122 39 -166 c24 -22 61 -33 101 -33c43 0 88 10 125 34c24 21 44 44 61 79l123 28l-51 -205c-13 -51 -28 -92 -59 -141c-25 -38 -61 -79 -103 -108c-81 -57 -190 -89 -290 -89c-46 0 -91 2 -134 11c-29 6 -55 16 -73 34c-17 16 -21 39 -16 62c5 17 17 35 34 47c17 11 35 16 54 16 s36 -3 46 -15c10 -11 13 -26 11 -40c-1 -22 2 -44 17 -60c16 -16 52 -16 82 -16c61 0 124 24 176 58c30 19 55 54 72 80c22 34 39 75 47 110l25 121c-64 -30 -122 -43 -188 -43c-75 0 -159 16 -202 58c-46 45 -57 108 -41 172c16 63 59 124 129 169c92 60 207 79 313 79 c39 0 79 -3 115 -11c25 -6 47 -13 63 -29c20 -20 30 -46 23 -75'], + 0xE510: [699,12,1315,39,1275,'1275 650c-4 -13 -10 -25 -23 -37s-32 -19 -50 -19c-12 0 -20 2 -31 10c-6 4 -12 12 -12 19c-1 7 -6 12 -10 16c-3 3 -12 5 -21 5c-13 0 -27 -5 -39 -12c-22 -15 -41 -33 -55 -52c-18 -27 -32 -56 -44 -84c-24 -67 -43 -134 -60 -201c-13 -51 -22 -98 -25 -149 c-3 -30 3 -66 25 -87c11 -9 27 -14 44 -14c18 0 44 13 64 26l51 39l17 -18l-50 -40c-54 -42 -116 -64 -181 -64c-33 0 -58 14 -78 33c-11 10 -20 26 -23 41c-5 21 -9 43 -8 65c2 40 8 81 18 121c8 31 16 60 26 91h-242c-25 -99 -80 -200 -188 -271 c-69 -45 -152 -79 -234 -79c-36 0 -68 9 -89 29c-13 11 -20 26 -16 43c4 13 10 28 26 37c15 11 34 17 52 17c13 0 24 -2 32 -9c8 -8 11 -27 13 -42c1 -7 9 -14 15 -20c7 -7 21 -11 34 -11c28 0 53 12 76 27c17 11 29 25 41 40c15 21 28 43 38 65c33 65 52 132 69 198l72 290 c-34 0 -69 -2 -104 -9c-26 -5 -53 -14 -75 -29c-23 -14 -43 -35 -48 -57c-4 -14 0 -28 3 -42c5 -14 9 -28 5 -44s-15 -32 -33 -43c-14 -10 -34 -17 -54 -17c-14 0 -27 5 -35 13c-18 18 -15 53 -9 78c11 45 50 87 98 119c40 27 91 44 141 56c63 14 126 20 188 20l119 -4 l-7 -22l-51 -20l-67 -264h249c31 97 102 187 206 255c51 34 109 56 170 56c22 0 44 -1 56 -13c9 -9 17 -23 14 -36'], + 0xE511: [703,18,777,39,737,'737 699l-13 -24l-40 -17l-49 -196c-15 -57 -31 -114 -53 -171c-16 -40 -35 -80 -62 -118c-29 -41 -63 -82 -110 -113c-69 -45 -151 -78 -233 -78c-45 0 -87 12 -113 37c-16 16 -28 35 -23 58c4 16 16 32 33 44c17 10 36 15 55 15c26 0 42 -14 48 -24c4 -5 10 -25 9 -40 c0 -10 7 -25 10 -28c11 -11 30 -16 51 -16c27 0 54 11 77 26c33 22 53 54 71 85c25 48 40 97 52 145l94 374c-33 0 -69 -2 -104 -9c-26 -5 -53 -14 -75 -29c-22 -14 -43 -35 -48 -57c-4 -14 0 -28 3 -42c5 -14 8 -28 4 -44s-14 -32 -31 -43c-15 -10 -36 -17 -55 -17 c-14 0 -26 5 -34 13c-19 18 -17 53 -11 78c11 45 51 87 99 119c41 27 90 44 141 56c63 14 126 20 188 20c23 0 86 -1 119 -4'], + 0xE512: [701,137,837,40,797,'797 698l-7 -16l-78 -33l-94 -370c-17 -69 -41 -140 -81 -207c-26 -47 -59 -94 -112 -128c-73 -49 -163 -81 -252 -81c-41 0 -84 6 -108 30c-26 25 -29 61 -21 96c11 43 40 85 74 123c45 48 99 90 157 128c78 52 160 83 216 100l78 311c-53 -8 -107 -22 -152 -52 c-28 -19 -56 -44 -63 -71c-2 -8 -4 -16 -4 -24c1 -9 -1 -24 -3 -33c-3 -13 -18 -33 -34 -42c-18 -12 -34 -20 -57 -20c-13 0 -27 10 -34 17c-13 13 -13 32 -9 50c12 46 54 83 103 115c122 79 271 110 412 110c23 0 45 -1 69 -3zM482 304c-37 -6 -126 -52 -162 -77 c-92 -60 -156 -142 -177 -227c-7 -30 -2 -59 20 -80c14 -13 36 -18 60 -18c15 0 29 5 44 11c19 8 38 18 55 29c37 25 57 58 75 92c27 51 44 104 57 157'], + 0xE513: [709,9,1212,39,1171,'1170 644c-5 -20 -16 -39 -37 -53c-15 -11 -39 -21 -55 -21s-31 2 -40 10c-4 5 -8 11 -8 18c0 11 -5 24 -22 24c-24 0 -48 -13 -68 -26c-24 -15 -52 -37 -65 -47l-167 -137l61 -152c23 -58 51 -114 97 -160c13 -13 35 -18 58 -18c16 0 31 7 45 16c23 15 42 31 61 48 l17 -16c-34 -39 -70 -80 -114 -108c-28 -19 -64 -31 -98 -31c-42 0 -80 13 -104 36c-23 23 -39 51 -51 80c-4 1 -66 150 -94 225h-17c-24 -98 -91 -194 -198 -264c-66 -43 -143 -76 -222 -76c-36 0 -71 7 -93 27c-12 12 -19 28 -15 45c4 14 9 27 23 37c19 12 33 17 54 17 c11 0 27 -3 33 -9c8 -8 16 -23 19 -36c2 -9 9 -23 12 -27c9 -9 22 -11 38 -11c11 0 25 5 35 9c15 7 30 15 43 24c37 24 58 57 77 90c27 50 44 102 57 153l86 345c-33 0 -68 -2 -103 -9c-26 -5 -54 -14 -75 -29c-23 -14 -43 -35 -49 -57c-3 -14 0 -28 4 -42s8 -28 4 -44 s-14 -32 -32 -43c-14 -10 -35 -17 -54 -17c-14 0 -27 5 -35 13c-18 18 -17 53 -10 78c11 45 50 87 98 119c41 27 90 44 141 56c64 14 126 20 188 20c23 0 86 -1 119 -4l-6 -22l-58 -19l-70 -281h17l349 271c26 18 55 34 85 47c21 8 43 16 65 16c26 0 48 -6 62 -21 c12 -11 16 -28 12 -44'], + 0xE514: [710,12,954,40,915,'915 278l-18 -69c-15 -60 -56 -120 -122 -164c-51 -33 -111 -57 -172 -57c-33 0 -67 3 -97 11c-50 14 -99 35 -140 57c-29 15 -64 28 -95 37c-22 6 -44 9 -69 9c-26 0 -52 -5 -75 -22c-25 -20 -44 -52 -59 -80l-28 13c15 46 37 94 84 130c17 13 37 25 57 37 c13 9 27 18 39 28c25 18 47 42 62 65c23 29 49 75 76 138c18 45 47 98 73 135c28 41 40 57 77 86c62 46 148 78 260 78c48 0 90 -7 115 -31c15 -16 23 -33 17 -55c-5 -22 -19 -43 -41 -58c-16 -10 -36 -17 -53 -17c-18 0 -37 3 -47 13c-13 11 -11 33 -7 51c4 16 3 33 -7 43 c-9 10 -25 14 -43 14c-22 0 -49 -8 -69 -22c-24 -16 -37 -31 -50 -53c-26 -39 -43 -77 -61 -116c-21 -47 -44 -93 -75 -139c-18 -28 -47 -54 -79 -77c-32 -24 -82 -51 -124 -71l-1 -9c101 0 146 -20 209 -48c48 -21 145 -46 202 -46c44 0 91 7 129 32c17 11 34 26 45 41 c15 21 25 42 35 64c8 17 19 51 19 51'], + 0xE515: [710,17,1420,40,1380,'1379 656c-3 -11 -10 -29 -23 -37c-16 -10 -27 -13 -45 -13c-12 0 -21 4 -28 10c-6 6 -11 13 -11 22c1 12 -5 26 -23 26c-10 0 -18 -4 -26 -10c-34 -23 -62 -123 -79 -189c-25 -101 -49 -203 -65 -304c-4 -25 -6 -50 -4 -75c0 -16 1 -29 12 -40c6 -6 17 -8 29 -8 c15 0 38 12 53 22l53 38l17 -16l-68 -54c-33 -25 -87 -45 -133 -45c-32 0 -64 6 -83 25c-17 17 -20 50 -19 74c0 42 5 79 15 121l51 224c12 49 25 98 40 144c-88 -67 -158 -146 -215 -229c-71 -99 -124 -203 -164 -307l-9 -12l-113 -35c19 119 9 236 -6 351 c-4 36 -11 72 -22 106c-9 25 -20 50 -37 72l-55 -223c-14 -53 -33 -106 -66 -157c-23 -38 -55 -76 -98 -105c-40 -26 -89 -45 -136 -45c-26 0 -51 7 -66 21c-13 13 -17 30 -13 47c3 13 11 26 26 35c15 10 34 17 53 17c16 0 29 -3 37 -12c5 -4 7 -17 8 -26 c2 -11 7 -24 24 -24s37 5 52 14c31 21 51 49 67 77c23 41 38 83 48 125l77 307c-8 11 -18 21 -27 31c-23 22 -53 40 -93 40c-19 0 -40 -6 -56 -16c-34 -23 -57 -54 -69 -85l-26 4c12 48 42 97 95 132c44 30 101 36 153 36c57 0 103 -21 135 -52c34 -32 56 -71 73 -112 c22 -52 35 -108 45 -164c9 -52 15 -110 15 -167l8 -3c49 79 110 166 177 239c57 63 120 122 197 172c73 47 158 84 244 84c29 0 51 -5 66 -20c7 -7 11 -20 8 -31'], + 0xE516: [712,13,1206,40,1166,'1166 664c-3 -12 -10 -30 -25 -39c-16 -11 -31 -14 -52 -14c-18 0 -31 9 -31 23l-3 18c-3 4 -8 9 -16 9c-6 0 -11 -1 -16 -5c-20 -12 -30 -31 -36 -48c-12 -26 -28 -86 -39 -128l-113 -453l-99 -40c-46 102 -90 204 -145 302c-42 77 -87 158 -136 233l-29 -114 c-21 -83 -50 -164 -87 -246c-14 -29 -30 -57 -49 -84c-17 -20 -36 -39 -60 -53c-32 -22 -71 -36 -110 -36c-29 0 -58 6 -71 25c-6 8 -10 20 -7 32c4 16 9 33 27 45c14 10 33 17 50 17c16 0 30 -4 39 -12c4 -4 10 -14 12 -22c2 -11 10 -22 26 -22c13 0 27 5 38 13 c33 24 53 63 68 97c24 60 49 159 69 239l43 170c-26 28 -61 54 -110 54c-21 0 -41 -3 -59 -15c-31 -20 -42 -42 -55 -69l-33 -6c6 25 19 51 34 76c12 19 27 37 49 51c46 30 100 40 155 40s100 -21 131 -51c34 -33 62 -68 86 -107c35 -54 63 -103 90 -156l116 -228l88 350 c8 34 20 69 39 102c12 23 29 46 54 63c32 21 71 37 111 37c20 0 33 -5 44 -16c9 -8 15 -20 12 -32'], + 0xE517: [707,20,908,40,868,'866 543c7 -55 -5 -113 -20 -170c-15 -60 -41 -119 -76 -178c-28 -47 -74 -87 -122 -123c-89 -66 -209 -92 -318 -92c-94 0 -178 26 -232 78c-34 32 -49 74 -55 117c-7 55 -1 112 13 169c26 103 93 208 199 278c26 18 60 37 92 48l15 -11c-43 -27 -73 -71 -97 -112 c-33 -61 -57 -123 -73 -186c-14 -59 -19 -118 -11 -174c6 -44 20 -86 52 -118c30 -29 75 -46 127 -46c61 0 125 13 176 46c45 29 76 69 96 109c26 54 51 109 65 165c15 59 26 121 24 176c-1 39 -15 79 -44 108c-21 20 -51 34 -88 34s-75 -12 -107 -32 c-20 -13 -34 -31 -39 -50s6 -35 23 -47c11 -8 22 -17 28 -28c4 -7 6 -23 4 -32c-4 -17 -13 -29 -30 -41c-17 -10 -36 -15 -55 -15s-35 7 -46 18c-22 21 -22 52 -15 82c12 48 43 96 96 131c63 41 143 60 218 60c59 0 112 -18 146 -51c31 -31 50 -71 54 -113'], + 0xE518: [726,13,968,40,928,'921 511c-14 -56 -54 -111 -115 -151c-80 -52 -180 -73 -274 -76c-32 -86 -82 -173 -176 -235c-60 -39 -134 -62 -205 -62c-38 0 -75 8 -97 30c-13 12 -16 29 -12 47c3 11 15 28 28 36c19 13 36 20 60 20c28 0 44 -26 45 -48c2 -11 9 -22 17 -31c7 -7 15 -12 27 -12 c22 0 45 11 63 24c35 22 55 54 71 85c26 50 39 100 51 151l91 361c-50 -6 -103 -19 -146 -43c-34 -18 -64 -43 -71 -73c-2 -7 -3 -15 -4 -22c1 -13 0 -26 -4 -39c-3 -13 -12 -25 -25 -33c-17 -11 -38 -15 -57 -15c-15 0 -29 3 -37 11c-13 14 -13 33 -8 51 c11 43 51 79 96 109c80 53 170 80 267 93l122 37l13 -8l-7 -28c58 0 116 -5 168 -17c40 -10 78 -24 102 -48c32 -30 27 -74 17 -114zM777 491c11 43 8 88 -24 119c-29 28 -79 40 -129 40l-84 -334c52 5 108 19 153 47c49 34 72 82 84 128'], + 0xE519: [705,42,920,41,880,'870 429c-21 -87 -66 -177 -163 -240c-58 -39 -127 -64 -195 -79l-1 -8c31 -7 75 -17 118 -17c42 0 91 18 127 41c24 16 40 36 57 58l20 -7c-35 -53 -75 -107 -138 -148c-35 -23 -78 -42 -122 -42c-47 0 -124 14 -183 24c-60 11 -122 21 -186 21c-28 0 -59 -6 -82 -22 c-23 -15 -42 -33 -57 -52l-24 12c32 49 73 95 129 132c32 21 75 29 112 29c52 0 96 -5 150 -14c49 6 95 21 135 48c42 27 73 69 96 105c29 50 49 103 62 155c11 42 16 85 10 125c-4 32 -14 62 -38 85c-28 26 -71 39 -118 39c-61 0 -128 -14 -179 -48 c-36 -24 -63 -54 -85 -85c-25 -39 -41 -80 -51 -121c-9 -37 -16 -74 -13 -110c1 -24 5 -49 25 -67c10 -10 26 -17 41 -22c22 -7 44 -10 69 -13l-12 -24c-41 0 -82 5 -122 17c-31 9 -61 22 -82 42c-49 48 -64 114 -47 181c18 73 65 146 144 198c98 65 220 83 334 83 c49 0 95 -4 139 -15c33 -9 65 -22 87 -44c57 -57 63 -138 43 -217'], + 0xE51A: [732,12,1015,40,975,'972 117c-28 -31 -60 -63 -98 -88c-31 -20 -66 -41 -104 -41c-23 0 -44 4 -58 17c-20 20 -29 47 -36 73l-62 223l-46 7c-34 -88 -93 -176 -191 -239c-67 -44 -145 -79 -225 -79c-38 0 -73 9 -95 30c-13 12 -20 29 -15 47c4 15 11 29 28 39c13 9 28 14 44 14 c18 0 37 -2 46 -12c8 -8 14 -18 15 -29c0 -12 2 -24 11 -33c7 -7 21 -9 34 -9c22 0 43 8 61 19c43 28 72 65 96 102c30 50 50 102 63 154l86 344c-49 -6 -103 -19 -146 -43c-33 -18 -63 -43 -71 -73c-2 -7 -3 -15 -3 -22c0 -13 -1 -26 -4 -39s-12 -25 -25 -33 c-17 -11 -38 -15 -57 -15c-15 0 -29 3 -37 11c-14 14 -13 33 -9 51c11 43 51 79 97 109c80 53 170 80 267 93l121 37l13 -8l-7 -30c64 0 126 -4 184 -16c40 -8 79 -20 104 -44c25 -25 26 -61 18 -96c-12 -47 -39 -96 -92 -130c-42 -27 -95 -54 -136 -70 c10 -55 23 -106 44 -159c12 -30 25 -61 51 -83c8 -6 16 -12 27 -12c16 0 34 7 46 16c16 10 35 26 41 33zM816 519c9 38 9 77 -19 104c-13 13 -33 20 -53 25c-28 6 -58 8 -89 8l-81 -323c55 0 108 18 154 47c54 35 76 91 88 139'], + 0xE51B: [715,18,788,40,748,'745 605c-5 -21 -20 -40 -42 -55c-36 -23 -79 -39 -122 -39c-16 0 -39 2 -54 4l9 18c23 1 43 4 61 17c19 12 30 32 34 49s5 35 -8 47c-21 20 -54 30 -92 30c-37 0 -77 -5 -109 -26c-29 -19 -54 -44 -61 -71c-9 -34 7 -65 32 -89s57 -44 90 -61c42 -19 109 -52 123 -60 c16 -8 31 -17 44 -28c36 -36 42 -87 29 -137c-14 -57 -63 -110 -124 -150c-40 -26 -84 -42 -130 -53c-56 -14 -112 -19 -167 -19c-78 0 -152 19 -196 63c-25 25 -25 61 -17 96c11 42 37 84 83 115c48 31 107 37 163 37c30 0 60 -6 77 -23c13 -12 18 -24 13 -42 c-2 -9 -12 -29 -23 -36c-16 -11 -34 -16 -54 -16c-15 0 -24 5 -33 13c-2 3 -7 15 -5 23c2 11 3 26 -4 32c-6 6 -15 11 -27 11c-13 0 -27 -6 -39 -14c-26 -17 -40 -43 -47 -68c-9 -39 -6 -80 24 -108c29 -29 78 -42 130 -42c56 0 117 16 166 48c36 24 60 57 69 91 c9 39 0 78 -29 106c-31 30 -74 51 -117 70c-51 23 -96 51 -131 86c-35 33 -32 81 -20 126c10 41 33 83 80 112c29 20 65 31 101 39c50 10 99 14 147 14c64 0 128 -13 165 -49c16 -16 17 -39 11 -61'], + 0xE51C: [697,11,997,40,957,'957 684l-29 -31c-16 -18 -49 -50 -86 -73c-16 -11 -42 -25 -60 -31c-13 -5 -28 -8 -41 -8c-15 0 -84 14 -115 22l-64 -255c-23 -94 -88 -186 -190 -253c-18 -12 -113 -66 -228 -66c-37 0 -68 8 -89 29c-16 15 -17 37 -12 57c3 14 15 28 28 37c18 11 39 16 58 16 c14 0 32 -5 40 -16c5 -7 10 -20 12 -34c0 -11 3 -26 7 -31c10 -8 23 -10 38 -10c26 0 52 7 74 22c14 9 43 35 51 48c40 56 62 102 77 161l80 319l-14 5c-53 22 -111 41 -177 41c-23 0 -48 -5 -68 -18c-18 -12 -31 -27 -35 -43c-3 -14 6 -26 14 -36c15 -17 28 -33 23 -53 c-4 -15 -16 -30 -31 -41c-17 -10 -36 -17 -54 -17c-17 0 -32 5 -42 14c-19 18 -18 44 -12 69c11 45 45 87 94 118c69 47 156 71 239 71c62 0 140 -18 205 -36c51 -13 102 -26 159 -26c36 0 67 16 96 37l28 25'], + 0xE51D: [709,13,944,40,905,'905 695c-18 -8 -42 -23 -61 -36c-17 -12 -31 -28 -41 -43c-18 -23 -33 -47 -43 -72c-40 -86 -68 -173 -90 -261c-12 -47 -24 -95 -24 -141c0 -29 5 -58 25 -79c6 -6 18 -9 29 -9c17 0 28 6 45 17c13 8 42 34 58 50l19 -17c-20 -19 -37 -36 -59 -55 c-5 -6 -16 -14 -23 -19c-36 -23 -79 -39 -122 -39c-30 0 -63 5 -81 23c-21 22 -36 55 -38 90c-50 -36 -104 -66 -162 -88c-44 -16 -91 -29 -138 -29s-93 11 -121 38c-34 34 -31 84 -19 131c19 76 59 157 97 234c21 46 41 92 52 138c4 16 7 31 5 46c-1 10 -3 21 -11 28 c-9 9 -21 16 -37 16c-17 0 -35 -5 -48 -14c-26 -17 -33 -35 -38 -58c-4 -13 -4 -36 -5 -50l-31 -9c-2 23 -5 46 1 70c11 43 33 79 81 110c32 22 76 32 114 32s71 -12 93 -33c12 -13 20 -27 22 -44c3 -22 1 -39 -5 -63c-15 -61 -50 -135 -82 -202c-24 -51 -51 -110 -62 -154 c-7 -26 -11 -52 -8 -78c3 -19 8 -37 23 -51c17 -16 41 -25 69 -25c25 0 51 7 75 17c31 12 60 28 88 46c10 7 35 27 48 39c39 156 90 311 149 466l229 92'], + 0xE51E: [702,16,872,40,832,'829 586c-11 -43 -38 -77 -72 -118c-56 -68 -117 -130 -186 -196c-86 -83 -204 -197 -241 -255l-105 -33h-15c10 118 20 250 19 350c-1 63 -2 145 -7 189c-3 27 -9 55 -30 75c-8 8 -19 15 -34 15c-14 0 -27 -5 -39 -12c-26 -17 -43 -46 -55 -70l-24 5 c22 58 50 106 107 144c26 17 60 22 92 22c27 0 53 -8 68 -24c25 -24 33 -55 39 -87c10 -49 12 -114 11 -165l-5 -308l13 3l155 155c44 41 90 91 122 137c27 37 41 68 51 107c7 29 5 59 -16 79c-15 14 -30 21 -55 21c-17 0 -40 -7 -55 -15c-19 -10 -41 -31 -55 -46l-18 11 c19 35 45 65 82 89c40 26 89 41 136 41c41 0 80 -9 102 -32c20 -19 22 -54 15 -82'], + 0xE51F: [710,8,1287,40,1246,'1239 568c-9 -38 -38 -75 -64 -110c-44 -60 -95 -119 -148 -175c-77 -83 -146 -167 -207 -255l-92 -31l-9 3c15 105 2 207 -29 304c-15 50 -31 128 -32 170c-94 -129 -271 -333 -358 -458l-107 -24l-10 11l31 132c25 107 46 212 48 306c0 32 -2 64 -10 97 c-6 23 -20 46 -38 63c-10 10 -25 15 -41 15c-19 0 -38 -7 -52 -17c-25 -16 -45 -47 -57 -69l-24 5c12 50 43 98 97 133c34 23 76 36 116 36c39 0 73 -12 96 -33c36 -36 44 -86 48 -135c4 -75 -15 -189 -31 -266l-28 -127l11 3l159 194c87 102 138 213 183 324l100 39l13 -5 c-32 -126 -28 -250 16 -362c22 -56 44 -113 52 -172c58 65 113 128 166 195c33 42 58 90 70 135c11 45 13 92 -20 124c-12 11 -31 17 -52 17c-27 0 -52 -13 -76 -27l-17 16c13 11 34 28 51 39c45 30 94 47 149 47c32 0 61 -8 78 -25c32 -31 29 -75 18 -117'], + 0xE520: [712,11,1066,40,1025,'1024 634c-5 -18 -16 -35 -35 -48c-13 -8 -29 -15 -44 -15c0 0 -28 0 -38 11c-8 7 -10 17 -9 28c1 9 0 18 -5 24c-6 6 -15 8 -24 8c-13 0 -27 -5 -38 -12c-37 -24 -64 -51 -90 -81c-42 -48 -74 -92 -107 -143c-7 -70 -10 -139 -1 -206c7 -42 15 -86 48 -117 c11 -11 30 -14 49 -14s41 5 56 16c36 23 57 53 74 84l30 -4c-26 -50 -57 -99 -111 -135c-40 -26 -87 -39 -133 -39c-37 0 -74 5 -95 26c-24 24 -38 55 -46 87c-11 41 -15 99 -12 144c-31 -46 -70 -97 -109 -137c-27 -26 -54 -51 -86 -72c-46 -31 -103 -50 -158 -50 c-34 0 -64 9 -84 27c-14 14 -19 34 -14 54c4 17 19 31 37 43c13 9 29 14 44 14c17 0 32 -2 42 -12c11 -11 10 -30 9 -47c0 -14 2 -33 24 -33c26 0 51 11 73 25c43 29 79 64 112 101c42 48 77 99 109 151c6 73 11 145 3 216c-4 25 -8 49 -17 73c-6 17 -14 33 -28 46 c-15 15 -40 23 -67 23c-15 0 -30 -5 -44 -14c-14 -10 -25 -24 -28 -38c-3 -9 -5 -18 -6 -27c-1 -11 2 -21 -1 -32c-3 -12 -14 -24 -27 -33c-18 -11 -39 -22 -60 -22s-35 10 -46 20c-12 12 -12 28 -8 44c8 33 40 62 75 85c61 40 138 59 210 59c58 0 114 -11 147 -43 c17 -16 24 -38 31 -59c9 -33 15 -83 16 -121c42 54 105 128 168 169c38 24 83 44 128 44c28 0 58 -2 74 -18c14 -13 16 -32 12 -50'], + 0xE521: [709,135,799,39,759,'759 691l-107 -383s-44 -144 -84 -214c-32 -56 -77 -106 -138 -145c-79 -53 -176 -84 -271 -84c-40 0 -81 4 -104 27c-19 17 -17 43 -11 68c9 35 31 69 60 100c36 39 79 73 126 104c87 57 188 99 290 134l27 102c-51 -28 -106 -55 -158 -80c-49 -23 -101 -43 -153 -43 c-40 0 -73 13 -95 35c-12 11 -11 28 -10 44c4 27 16 75 25 113l26 103c3 11 1 27 -6 35c-5 5 -12 9 -20 9c-21 0 -61 -29 -89 -51l-18 15c31 32 66 69 99 90c31 21 68 39 106 39c24 0 47 -7 60 -20s12 -31 9 -48c-1 -27 -15 -81 -25 -122c-14 -57 -35 -140 -10 -164 c9 -9 23 -13 38 -13c32 1 63 14 92 28c49 24 98 52 142 80c17 68 38 137 55 205l131 49zM510 261c-71 -25 -139 -59 -200 -99c-67 -44 -128 -99 -144 -163c-4 -14 -7 -29 -7 -43c1 -9 3 -19 11 -26c13 -12 32 -20 55 -20c43 0 84 17 119 40c38 24 64 55 87 88 c35 52 46 91 79 223'], + 0xE522: [705,14,872,40,832,'832 667l-1 -9c-57 -42 -113 -85 -165 -131l-409 -361c42 9 71 10 105 10c26 0 49 -7 72 -14c33 -11 63 -26 93 -41c41 -21 92 -48 135 -48c19 0 39 5 55 16c16 10 27 21 30 36c3 10 3 22 -5 29c-8 8 -25 14 -39 16c-21 3 -35 9 -46 20c-11 10 -16 22 -13 35 c5 18 16 30 34 42c20 13 45 19 68 19c26 0 47 -14 62 -28c21 -22 17 -57 10 -87c-13 -53 -43 -102 -101 -140c-44 -29 -99 -45 -151 -45c-26 0 -49 7 -69 14c-36 11 -69 25 -101 41c-28 13 -56 25 -88 34c-22 7 -51 15 -76 15c-32 0 -64 -10 -91 -28l-58 -62l-40 8l-3 15 l578 514c-14 -7 -32 -7 -49 -7c-21 0 -40 5 -56 12c-24 9 -46 21 -65 34c-21 15 -41 28 -64 42c-14 8 -34 15 -53 15c-16 0 -33 -7 -47 -16s-22 -22 -25 -34c-4 -16 1 -31 14 -41c8 -6 18 -11 24 -17c8 -8 9 -20 7 -31c-3 -12 -12 -25 -26 -34c-17 -11 -36 -22 -56 -22 c-19 0 -36 7 -46 17c-18 17 -20 41 -14 64c13 51 56 97 111 133c52 34 92 53 155 53c22 0 42 -8 60 -17c30 -13 55 -30 80 -48c23 -17 72 -37 102 -37c19 0 39 7 53 17c29 19 47 43 62 68l18 3'], + 0xE523: [711,17,1020,39,980,'980 711l-2 -29c-29 -6 -46 -14 -50 -29l-111 -446c-13 -52 -33 -130 -14 -150c8 -8 22 -12 36 -12c21 0 38 10 54 21c17 12 32 24 47 37l15 -16c-21 -20 -43 -41 -69 -59c-37 -26 -83 -45 -128 -45c-29 0 -56 9 -71 27c-20 20 -21 49 -21 77c0 45 9 92 20 138h-232 c-27 -42 -55 -76 -91 -112c-26 -27 -62 -52 -94 -74c-40 -28 -87 -50 -135 -50c-32 0 -63 8 -82 27c-14 15 -15 37 -9 59c4 16 16 32 33 43c15 10 33 14 50 14c15 0 27 -6 36 -14c6 -7 9 -22 7 -34c-2 -11 0 -26 6 -32c6 -5 14 -7 23 -7c13 0 27 6 38 13 c48 34 118 153 165 236c38 70 83 147 132 213c33 46 67 83 116 118c74 51 161 65 250 78c23 3 41 5 81 8zM791 645l-6 5c-27 -6 -53 -18 -75 -32c-39 -27 -64 -63 -87 -99c-41 -62 -103 -166 -138 -244h214'], + 0xE524: [727,1,965,40,924,'921 552c-10 -40 -33 -72 -75 -101c-33 -23 -69 -44 -108 -56v-6c49 0 94 -15 122 -43c23 -26 33 -63 24 -99c-11 -44 -49 -87 -91 -122c-37 -31 -111 -72 -151 -90c-34 -16 -99 -36 -156 -36h-446l68 88c34 0 76 3 109 13c26 7 57 24 75 40c30 28 43 56 57 88 c23 51 38 102 51 154l67 269c-47 -6 -94 -19 -135 -43c-32 -18 -62 -43 -69 -73c-2 -7 -3 -15 -4 -22c1 -13 0 -26 -3 -39c-4 -13 -13 -25 -25 -33c-15 -11 -35 -15 -54 -15c-13 0 -27 3 -35 11c-12 14 -11 33 -7 51c11 43 50 79 92 109c78 53 162 80 255 93l116 37l12 -8 l-6 -25c67 0 136 -3 198 -16c41 -8 84 -20 107 -48c17 -22 19 -49 12 -78zM751 201c9 35 10 78 -15 103c-25 27 -65 45 -110 49h-92c-9 -1 -22 -3 -25 -7c-18 -40 -45 -94 -70 -124c-14 -16 -48 -46 -66 -60c-31 -23 -68 -50 -103 -67l3 -8h275c39 0 113 0 146 23 c33 22 50 60 57 91zM793 511c9 35 12 73 -13 98c-18 19 -43 30 -71 38c-37 10 -76 14 -115 14l-64 -258c-2 -6 5 -9 11 -9c30 0 65 0 92 4c39 6 79 18 112 42c30 20 41 43 48 71'], + 0xE525: [709,15,785,40,744,'739 560c-12 -47 -41 -94 -91 -127c-50 -35 -113 -50 -173 -50c-52 0 -105 5 -135 36c-15 14 -23 33 -18 53c5 19 17 37 37 50c12 10 30 13 46 13c13 0 27 -2 36 -10c8 -8 13 -18 10 -29l-5 -21c-5 -10 -13 -31 -13 -31c-1 -5 -1 -10 2 -13c11 -12 29 -16 49 -16 c26 0 53 15 75 30c40 28 61 67 71 106c8 32 9 66 -14 89c-23 24 -63 33 -105 33c-50 0 -103 -14 -146 -43c-46 -32 -80 -74 -107 -117c-34 -56 -54 -114 -69 -172c-13 -53 -19 -106 -13 -156c6 -40 21 -79 50 -110c31 -32 79 -50 134 -50c36 0 76 11 109 33 c37 26 59 62 68 99l19 8l56 -62c-13 -14 -27 -29 -45 -41c-79 -55 -178 -77 -270 -77c-79 0 -155 15 -198 62c-32 32 -49 74 -55 117c-8 52 -3 107 11 162c26 107 83 218 196 295c91 62 202 88 306 88c64 0 128 -8 165 -46c26 -27 27 -65 17 -103'], + 0xE526: [727,1,1064,40,1023,'1012 388c-22 -90 -78 -180 -173 -244c-60 -41 -125 -77 -192 -108c-51 -23 -108 -37 -161 -37h-446l68 88c34 0 76 3 109 13c26 7 57 24 75 40c30 28 43 52 57 88c11 27 12 33 22 71l88 352c-47 -6 -97 -19 -138 -43c-32 -18 -61 -43 -68 -73c-2 -7 -3 -15 -4 -22 c0 -13 -1 -26 -4 -39c-4 -13 -12 -25 -25 -33c-15 -11 -35 -15 -53 -15c-14 0 -28 3 -36 11c-12 14 -11 33 -7 51c11 43 50 79 92 109c78 53 163 80 255 93l116 37l12 -8l-7 -26c85 0 168 -5 246 -21c51 -11 104 -26 136 -60c56 -58 59 -142 38 -224zM878 482 c-6 40 -21 78 -49 108c-22 24 -58 38 -94 48c-47 12 -98 17 -152 17l-63 -253c-12 -48 -28 -97 -52 -144c-16 -26 -45 -60 -95 -96c-31 -23 -68 -50 -103 -67l3 -8h319c59 0 122 18 173 52c28 20 44 46 57 72c22 40 35 81 45 121c13 51 19 102 11 150'], + 0xE527: [708,12,741,40,701,'699 606c-6 -21 -17 -42 -36 -58c-14 -12 -30 -20 -49 -20c-18 0 -33 6 -42 16c-7 7 -9 16 -6 26c2 10 7 19 15 28s14 20 16 30c3 13 0 24 -8 33c-13 14 -38 16 -61 16c-37 0 -74 -13 -105 -34c-42 -29 -69 -70 -79 -111c-9 -36 -3 -71 22 -97c16 -16 42 -23 69 -29 c40 -8 81 -10 124 -10l-7 -29c-55 0 -113 -3 -172 -14c-37 -7 -78 -18 -111 -40c-47 -32 -71 -78 -82 -122c-12 -47 0 -91 31 -124c29 -29 74 -41 122 -41s97 17 137 45c36 24 51 60 64 94l27 9l69 -68c-13 -16 -28 -31 -46 -43c-80 -54 -178 -75 -269 -75 c-52 0 -105 3 -152 14c-34 7 -67 17 -87 38c-32 33 -51 76 -39 124c14 55 48 111 106 151c54 36 117 57 177 65c-32 9 -65 22 -88 45c-26 28 -34 66 -24 105c10 43 37 86 82 117c71 48 157 61 239 61c32 0 65 -2 94 -10c22 -6 40 -14 54 -28c16 -17 21 -40 15 -64'], + 0xE528: [731,14,1059,40,1020,'1020 686l-69 -71c-16 -15 -31 -29 -49 -39c-11 -7 -22 -11 -35 -11c-18 0 -35 5 -52 10l-133 40l-59 -224h184l-54 -50h-143c-13 -52 -28 -103 -58 -153c-23 -38 -52 -75 -94 -103c-41 -28 -88 -51 -136 -70c-45 -17 -93 -29 -140 -29c-48 0 -98 8 -125 37 c-15 14 -20 34 -14 55c4 17 17 33 35 44c15 11 33 15 51 15c16 0 31 -6 41 -15c7 -10 13 -29 15 -43c2 -13 6 -31 11 -36c9 -10 26 -13 42 -13c44 0 86 21 123 46c27 18 46 45 61 70c26 48 43 103 66 195l-192 -1l49 51h156l69 251c-25 8 -59 13 -80 13 c-43 0 -89 -6 -126 -32c-30 -21 -65 -50 -72 -81c-2 -5 -5 -24 -3 -34c3 -9 3 -19 1 -29c-4 -17 -18 -31 -35 -43c-14 -9 -30 -11 -46 -11c-13 0 -24 4 -31 13c-14 13 -13 33 -8 52c14 56 62 101 119 140c73 50 155 63 240 63c22 0 45 -1 67 -4l102 42l11 -6l-10 -43 l183 -34c10 -2 24 -4 32 -4c13 0 27 4 37 13l52 45'], + 0xE529: [705,138,827,39,787,'785 590c-7 -26 -21 -54 -45 -72c-31 -24 -71 -43 -110 -43c-21 0 -54 5 -76 9l9 22c15 0 31 1 48 4c11 2 21 6 32 12c20 15 31 37 36 57c5 21 7 44 -7 59c-24 24 -66 32 -108 32c-49 0 -103 -15 -145 -44c-63 -43 -93 -104 -108 -163c-15 -61 -7 -122 34 -166 c23 -22 57 -33 96 -33c41 0 83 10 118 34c23 21 43 44 60 79l116 28l-51 -205c-13 -51 -27 -92 -58 -141c-24 -38 -58 -79 -98 -108c-78 -57 -182 -89 -276 -89c-44 0 -87 2 -127 11c-27 6 -52 16 -68 34c-17 16 -20 39 -15 62c5 17 16 35 33 47c16 11 33 16 51 16 s34 -3 43 -15c10 -11 12 -26 11 -40c-2 -22 0 -44 14 -60c16 -16 50 -16 78 -16c58 0 118 24 168 58c28 19 52 54 69 80c21 34 37 75 45 110l26 121c-61 -30 -116 -43 -179 -43c-71 0 -150 16 -190 58c-43 45 -53 108 -37 172c16 63 58 124 125 169c87 60 196 79 297 79 c37 0 75 -3 109 -11c24 -6 44 -13 60 -29c18 -20 27 -46 20 -75'], + 0xE52A: [699,12,1257,39,1217,'1217 650c-4 -13 -9 -25 -21 -37c-13 -12 -31 -19 -48 -19c-12 0 -19 2 -29 10c-6 4 -11 12 -11 19c-2 7 -6 12 -10 16c-3 3 -11 5 -20 5c-12 0 -25 -5 -37 -12c-21 -15 -39 -33 -52 -52c-18 -27 -32 -56 -43 -84c-24 -67 -43 -134 -60 -201c-13 -51 -22 -98 -26 -149 c-3 -30 2 -66 23 -87c10 -9 25 -14 41 -14c17 0 43 13 62 26l48 39l17 -18l-49 -40c-52 -42 -110 -64 -172 -64c-31 0 -55 14 -74 33c-9 10 -18 26 -21 41c-4 21 -8 43 -6 65c2 40 8 81 18 121c8 31 16 60 26 91h-229c-25 -99 -79 -200 -182 -271c-66 -45 -144 -79 -222 -79 c-35 0 -65 9 -84 29c-12 11 -19 26 -15 43c4 13 10 28 25 37c15 11 33 17 50 17c12 0 23 -2 30 -9c8 -8 10 -27 12 -42c1 -7 8 -14 14 -20c6 -7 19 -11 32 -11c26 0 50 12 72 27c16 11 28 25 39 40c15 21 27 43 38 65c32 65 50 132 67 198l72 290c-32 0 -65 -2 -98 -9 c-25 -5 -51 -14 -72 -29c-22 -14 -41 -35 -46 -57c-4 -14 0 -28 2 -42c5 -14 8 -28 4 -44s-14 -32 -31 -43c-14 -10 -33 -17 -51 -17c-14 0 -26 5 -34 13c-16 18 -14 53 -8 78c11 45 49 87 96 119c38 27 86 44 134 56c59 14 119 20 178 20l112 -4l-6 -22l-49 -20l-67 -264 h236c30 97 99 187 199 255c48 34 103 56 161 56c21 0 42 -1 53 -13c8 -9 15 -23 12 -36'], + 0xE52B: [703,18,748,39,708,'708 699l-12 -24l-38 -17l-49 -196c-15 -57 -31 -114 -53 -171c-15 -40 -34 -80 -60 -118c-28 -41 -60 -82 -106 -113c-66 -45 -143 -78 -221 -78c-43 0 -83 12 -107 37c-15 16 -26 35 -21 58c4 16 15 32 32 44c16 10 34 15 53 15c24 0 39 -14 45 -24c4 -5 8 -25 8 -40 c-1 -10 6 -25 9 -28c10 -11 28 -16 47 -16c26 0 52 11 74 26c32 22 51 54 68 85c25 48 40 97 52 145l94 374c-32 0 -66 -2 -99 -9c-25 -5 -50 -14 -72 -29c-21 -14 -41 -35 -46 -57c-4 -14 0 -28 2 -42c5 -14 8 -28 4 -44s-14 -32 -30 -43c-15 -10 -34 -17 -52 -17 c-14 0 -25 5 -33 13c-17 18 -14 53 -8 78c11 45 48 87 95 119c39 27 86 44 134 56c59 14 119 20 178 20c21 0 81 -1 112 -4'], + 0xE52C: [701,137,807,40,767,'767 698l-7 -16l-75 -33l-94 -370c-17 -69 -40 -140 -79 -207c-25 -47 -57 -94 -108 -128c-69 -49 -155 -81 -239 -81c-39 0 -80 6 -102 30c-24 25 -27 61 -19 96c11 43 39 85 72 123c43 48 95 90 151 128c74 52 152 83 205 100l78 311c-50 -8 -102 -22 -144 -52 c-28 -19 -54 -44 -61 -71c-2 -8 -4 -16 -4 -24c0 -9 -2 -24 -4 -33c-3 -13 -17 -33 -32 -42c-18 -12 -33 -20 -54 -20c-13 0 -26 10 -33 17c-12 13 -11 32 -7 50c12 46 52 83 99 115c116 79 258 110 392 110c21 0 42 -1 65 -3zM463 304c-35 -6 -119 -52 -154 -77 c-88 -60 -150 -142 -171 -227c-7 -30 -3 -59 18 -80c13 -13 34 -18 57 -18c13 0 27 5 41 11c18 8 36 18 53 29c35 25 55 58 72 92c26 51 43 104 56 157'], + 0xE52D: [709,9,1160,39,1119,'1118 644c-5 -20 -15 -39 -36 -53c-14 -11 -37 -21 -52 -21s-30 2 -37 10c-5 5 -8 11 -8 18c0 11 -5 24 -21 24c-22 0 -46 -13 -65 -26c-22 -15 -49 -37 -62 -47l-159 -137l55 -152c21 -58 47 -114 90 -160c12 -13 33 -18 54 -18c16 0 30 7 44 16c21 15 40 31 58 48 l16 -16c-33 -39 -68 -80 -109 -108c-28 -19 -62 -31 -94 -31c-39 0 -75 13 -98 36c-22 23 -36 51 -47 80c-4 1 -61 150 -86 225h-17c-24 -98 -88 -194 -190 -264c-63 -43 -136 -76 -211 -76c-35 0 -68 7 -88 27c-11 12 -18 28 -14 45c4 14 9 27 23 37c18 12 32 17 51 17 c11 0 26 -3 31 -9c8 -8 15 -23 17 -36c3 -9 9 -23 12 -27c8 -9 20 -11 35 -11c11 0 24 5 33 9c15 7 29 15 42 24c35 24 56 57 74 90c26 50 43 102 56 153l86 345c-32 0 -65 -2 -98 -9c-25 -5 -51 -14 -71 -29c-22 -14 -41 -35 -47 -57c-3 -14 -1 -28 3 -42 c3 -14 8 -28 4 -44s-15 -32 -32 -43c-14 -10 -33 -17 -51 -17c-14 0 -26 5 -33 13c-17 18 -15 53 -8 78c11 45 48 87 94 119c39 27 86 44 134 56c61 14 120 20 178 20c22 0 82 -1 113 -4l-6 -22l-56 -19l-70 -281h17l334 271c25 18 53 34 82 47c19 8 40 16 61 16 c25 0 45 -6 58 -21c11 -11 15 -28 11 -44'], + 0xE52E: [710,12,911,40,872,'872 278l-18 -69c-15 -60 -55 -120 -118 -164c-49 -33 -106 -57 -164 -57c-31 0 -63 3 -91 11c-47 14 -94 35 -133 57c-27 15 -60 28 -89 37c-21 6 -41 9 -65 9s-50 -5 -71 -22c-24 -20 -43 -52 -57 -80l-26 13c14 46 36 94 81 130c16 13 35 25 54 37c13 9 26 18 38 28 c23 18 44 42 59 65c22 29 48 75 74 138c18 45 46 98 71 135c27 41 39 57 74 86c59 46 141 78 247 78c45 0 85 -7 109 -31c13 -16 21 -33 15 -55c-5 -22 -19 -43 -40 -58c-15 -10 -34 -17 -50 -17c-17 0 -35 3 -44 13c-12 11 -10 33 -6 51c4 16 3 33 -7 43 c-8 10 -23 14 -40 14c-21 0 -46 -8 -66 -22c-23 -16 -35 -31 -48 -53c-24 -39 -42 -77 -59 -116c-21 -47 -43 -93 -73 -139c-18 -28 -45 -54 -75 -77c-31 -24 -79 -51 -119 -71l-1 -9c95 0 138 -20 197 -48c45 -21 137 -46 191 -46c41 0 86 7 122 32c17 11 33 26 43 41 c15 21 25 42 35 64c7 17 18 51 18 51'], + 0xE52F: [710,17,1358,40,1318,'1317 656c-3 -11 -11 -29 -23 -37c-15 -10 -26 -13 -43 -13c-11 0 -19 4 -26 10c-5 6 -11 13 -10 22c1 12 -5 26 -22 26c-9 0 -16 -4 -24 -10c-33 -23 -61 -123 -78 -189c-25 -101 -49 -203 -65 -304c-4 -25 -7 -50 -6 -75c1 -16 1 -29 12 -40c5 -6 16 -8 27 -8 c15 0 37 12 50 22l51 38l16 -16l-65 -54c-32 -25 -83 -45 -126 -45c-31 0 -61 6 -79 25c-16 17 -18 50 -17 74c1 42 6 79 16 121l51 224c12 49 25 98 40 144c-84 -67 -152 -146 -207 -229c-68 -99 -119 -203 -159 -307l-9 -12l-107 -35c19 119 12 236 -1 351 c-4 36 -10 72 -20 106c-8 25 -18 50 -33 72l-55 -223c-14 -53 -34 -106 -65 -157c-23 -38 -53 -76 -94 -105c-38 -26 -85 -45 -130 -45c-25 0 -48 7 -62 21c-12 13 -16 30 -12 47c3 13 11 26 25 35c15 10 33 17 51 17c15 0 27 -3 35 -12c4 -4 6 -17 6 -26 c3 -11 7 -24 23 -24s36 5 49 14c30 21 50 49 65 77c22 41 37 83 47 125l77 307c-7 11 -16 21 -25 31c-22 22 -50 40 -87 40c-18 0 -39 -6 -53 -16c-33 -23 -55 -54 -67 -85l-25 4c12 48 41 97 92 132c42 30 96 36 146 36c53 0 96 -21 127 -52c31 -32 51 -71 67 -112 c20 -52 32 -108 40 -164c8 -52 13 -110 13 -167l7 -3c47 79 107 166 171 239c54 63 115 122 188 172c70 47 152 84 233 84c27 0 48 -5 63 -20c6 -7 10 -20 7 -31'], + 0xE530: [712,13,1155,40,1114,'1114 664c-3 -12 -9 -30 -24 -39c-15 -11 -29 -14 -49 -14c-17 0 -29 9 -29 23l-2 18c-4 4 -8 9 -16 9c-5 0 -10 -1 -14 -5c-20 -12 -30 -31 -36 -48c-11 -26 -27 -86 -38 -128l-113 -453l-95 -40c-41 102 -82 204 -133 302c-38 77 -80 158 -126 233l-29 -114 c-21 -83 -49 -164 -85 -246c-14 -29 -29 -57 -48 -84c-16 -20 -35 -39 -57 -53c-30 -22 -68 -36 -105 -36c-27 0 -54 6 -67 25c-6 8 -9 20 -6 32c4 16 9 33 26 45c14 10 32 17 48 17c15 0 28 -4 37 -12c3 -4 9 -14 11 -22c2 -11 9 -22 24 -22c12 0 26 5 36 13 c31 24 52 63 65 97c24 60 49 159 69 239l43 170c-24 28 -56 54 -104 54c-19 0 -38 -3 -55 -15c-30 -20 -41 -42 -53 -69l-31 -6c6 25 18 51 33 76c11 19 26 37 47 51c43 30 95 40 147 40s94 -21 124 -51c31 -33 57 -68 80 -107c32 -54 57 -103 83 -156l107 -228l88 350 c8 34 20 69 37 102c13 23 28 46 53 63c30 21 68 37 105 37c19 0 31 -5 42 -16c8 -8 13 -20 10 -32'], + 0xE531: [707,20,868,40,828,'827 543c6 -55 -6 -113 -21 -170c-15 -60 -41 -119 -74 -178c-27 -47 -72 -87 -118 -123c-85 -66 -198 -92 -302 -92c-89 0 -169 26 -219 78c-31 32 -45 74 -50 117c-6 55 0 112 14 169c26 103 91 208 192 278c25 18 57 37 88 48l14 -11c-40 -27 -70 -71 -93 -112 c-32 -61 -56 -123 -72 -186c-14 -59 -19 -118 -13 -174c5 -44 18 -86 48 -118c29 -29 71 -46 120 -46c58 0 119 13 167 46c43 29 73 69 92 109c26 54 50 109 64 165c15 59 27 121 26 176c-1 39 -14 79 -41 108c-19 20 -47 34 -83 34c-35 0 -71 -12 -102 -32 c-19 -13 -33 -31 -38 -50s6 -35 22 -47c10 -8 20 -17 26 -28c4 -7 6 -23 4 -32c-4 -17 -13 -29 -30 -41c-16 -10 -34 -15 -52 -15s-33 7 -43 18c-21 21 -20 52 -13 82c12 48 42 96 93 131c60 41 136 60 206 60c57 0 107 -18 138 -51c30 -31 46 -71 50 -113'], + 0xE532: [726,13,927,40,887,'880 511c-14 -56 -53 -111 -111 -151c-76 -52 -171 -73 -260 -76c-31 -86 -80 -173 -170 -235c-57 -39 -127 -62 -195 -62c-36 0 -70 8 -91 30c-12 12 -15 29 -11 47c3 11 15 28 27 36c19 13 34 20 57 20c27 0 41 -26 42 -48c2 -11 8 -22 16 -31c7 -7 14 -12 25 -12 c21 0 42 11 60 24c33 22 53 54 68 85c25 50 38 100 50 151l91 361c-47 -6 -97 -19 -138 -43c-33 -18 -61 -43 -68 -73c-2 -7 -3 -15 -4 -22c0 -13 -1 -26 -5 -39c-3 -13 -11 -25 -24 -33c-16 -11 -36 -15 -54 -15c-14 0 -27 3 -35 11c-12 14 -12 33 -7 51 c11 43 50 79 92 109c77 53 163 80 254 93l117 37l12 -8l-7 -28c55 0 110 -5 159 -17c38 -10 73 -24 96 -48c29 -30 24 -74 14 -114zM743 491c11 43 9 88 -20 119c-27 28 -75 40 -122 40l-84 -334c49 5 103 19 145 47c48 34 69 82 81 128'], + 0xE533: [705,42,883,41,843,'832 429c-21 -87 -65 -177 -157 -240c-56 -39 -122 -64 -186 -79l-1 -8c29 -7 70 -17 112 -17c39 0 86 18 120 41c23 16 38 36 54 58l20 -7c-35 -53 -73 -107 -134 -148c-32 -23 -74 -42 -115 -42c-44 0 -117 14 -173 24c-57 11 -115 21 -176 21c-27 0 -56 -6 -78 -22 c-22 -15 -40 -33 -54 -52l-23 12c31 49 70 95 124 132c30 21 71 29 106 29c50 0 91 -5 142 -14c47 6 90 21 128 48c41 27 71 69 93 105c28 50 47 103 60 155c11 42 17 85 12 125c-4 32 -13 62 -35 85c-26 26 -67 39 -112 39c-58 0 -120 -14 -169 -48 c-35 -24 -61 -54 -82 -85c-24 -39 -40 -80 -50 -121c-9 -37 -16 -74 -13 -110c0 -24 4 -49 22 -67c9 -10 24 -17 38 -22c22 -7 42 -10 66 -13l-12 -24c-39 0 -78 5 -116 17c-29 9 -57 22 -76 42c-46 48 -59 114 -42 181c18 73 63 146 139 198c93 65 209 83 317 83 c46 0 90 -4 131 -15c31 -9 61 -22 82 -44c54 -57 58 -138 38 -217'], + 0xE534: [732,12,973,40,932,'928 538c-12 -47 -38 -96 -88 -130c-41 -27 -91 -54 -131 -70c10 -55 21 -106 40 -159c11 -30 23 -61 47 -83c7 -6 15 -12 26 -12c15 0 32 7 43 16c16 10 34 26 40 33l19 -16c-27 -31 -58 -63 -95 -88c-29 -20 -62 -41 -99 -41c-21 0 -41 4 -54 17c-19 20 -27 47 -33 73 l-56 223l-43 7c-34 -88 -91 -176 -184 -239c-65 -44 -139 -79 -215 -79c-35 0 -69 9 -89 30c-12 12 -19 29 -14 47c4 15 11 29 27 39c13 9 27 14 42 14c17 0 35 -2 44 -12c7 -8 13 -18 13 -29c0 -12 2 -24 10 -33c7 -7 20 -9 33 -9c20 0 40 8 57 19c41 28 70 65 92 102 c29 50 49 102 62 154l86 344c-46 -6 -97 -19 -138 -43c-32 -18 -61 -43 -69 -73c-2 -7 -3 -15 -3 -22c0 -13 -1 -26 -4 -39s-12 -25 -24 -33c-16 -11 -36 -15 -55 -15c-13 0 -26 3 -34 11c-13 14 -12 33 -8 51c11 43 50 79 93 109c77 53 162 80 254 93l116 37l12 -8l-7 -30 c60 0 119 -4 174 -16c37 -8 74 -20 98 -44c23 -25 23 -61 15 -96zM781 519c9 38 9 77 -17 104c-12 13 -30 20 -49 25c-26 6 -55 8 -84 8l-81 -323c51 0 102 18 146 47c51 35 73 91 85 139'], + 0xE535: [715,18,758,40,718,'715 605c-5 -21 -20 -40 -41 -55c-34 -23 -75 -39 -116 -39c-15 0 -37 2 -51 4l9 18c21 1 40 4 58 17c18 12 29 32 33 49s4 35 -8 47c-19 20 -50 30 -86 30c-35 0 -73 -5 -104 -26c-28 -19 -52 -44 -59 -71c-9 -34 7 -65 30 -89c24 -24 53 -44 84 -61 c40 -19 103 -52 116 -60c15 -8 29 -17 41 -28c34 -36 39 -87 26 -137c-14 -57 -61 -110 -120 -150c-38 -26 -80 -42 -124 -53c-53 -14 -105 -19 -158 -19c-74 0 -144 19 -185 63c-23 25 -23 61 -15 96c11 42 36 84 81 115s102 37 154 37c29 0 57 -6 73 -23 c12 -12 17 -24 12 -42c-2 -9 -12 -29 -22 -36c-16 -11 -33 -16 -52 -16c-14 0 -23 5 -30 13c-3 3 -7 15 -6 23c3 11 4 26 -3 32c-5 6 -14 11 -25 11c-12 0 -26 -6 -37 -14c-25 -17 -39 -43 -46 -68c-9 -39 -7 -80 22 -108c27 -29 73 -42 122 -42c54 0 111 16 158 48 c35 24 58 57 67 91c9 39 0 78 -27 106c-28 30 -69 51 -109 70c-49 23 -91 51 -124 86c-32 33 -29 81 -17 126c10 41 33 83 77 112c29 20 63 31 97 39c47 10 94 14 139 14c61 0 121 -13 156 -49c15 -16 16 -39 10 -61'], + 0xE536: [697,11,957,40,917,'917 684l-28 -31c-15 -18 -47 -50 -82 -73c-16 -11 -41 -25 -57 -31c-13 -5 -27 -8 -40 -8c-14 0 -79 14 -108 22l-64 -255c-23 -94 -86 -186 -183 -253c-18 -12 -108 -66 -217 -66c-35 0 -65 8 -84 29c-15 15 -16 37 -11 57c3 14 15 28 27 37c17 11 38 16 56 16 c12 0 30 -5 37 -16c5 -7 10 -20 11 -34c0 -11 2 -26 7 -31c8 -8 21 -10 35 -10c25 0 49 7 70 22c14 9 41 35 50 48c38 56 59 102 74 161l80 319l-13 5c-49 22 -104 41 -166 41c-23 0 -46 -5 -65 -18c-17 -12 -30 -27 -34 -43c-3 -14 5 -26 13 -36c14 -17 26 -33 21 -53 c-4 -15 -16 -30 -31 -41c-15 -10 -33 -17 -51 -17c-16 0 -30 5 -39 14c-18 18 -16 44 -10 69c11 45 43 87 90 118c66 47 148 71 228 71c58 0 131 -18 193 -36c48 -13 96 -26 150 -26c34 0 64 16 92 37l26 25'], + 0xE537: [709,13,901,40,861,'861 695c-17 -8 -41 -23 -58 -36c-17 -12 -30 -28 -40 -43c-17 -23 -32 -47 -42 -72c-39 -86 -66 -173 -88 -261c-12 -47 -24 -95 -25 -141c0 -29 4 -58 23 -79c6 -6 16 -9 27 -9c16 0 27 6 43 17c12 8 40 34 56 50l17 -17c-19 -19 -35 -36 -56 -55 c-6 -6 -16 -14 -22 -19c-35 -23 -75 -39 -116 -39c-29 0 -60 5 -76 23c-21 22 -34 55 -36 90c-48 -36 -99 -66 -154 -88c-42 -16 -87 -29 -131 -29c-45 0 -88 11 -114 38c-32 34 -28 84 -16 131c19 76 57 157 94 234c21 46 40 92 51 138c4 16 7 31 6 46c-1 10 -3 21 -10 28 c-9 9 -20 16 -35 16c-16 0 -33 -5 -46 -14c-25 -17 -31 -35 -36 -58c-4 -13 -5 -36 -6 -50l-29 -9c-2 23 -4 46 2 70c11 43 31 79 78 110c31 22 72 32 108 32s67 -12 88 -33c11 -13 18 -27 20 -44c2 -22 0 -39 -6 -63c-15 -61 -49 -135 -80 -202c-23 -51 -50 -110 -61 -154 c-7 -26 -11 -52 -8 -78c2 -19 7 -37 21 -51c15 -16 38 -25 65 -25c23 0 48 7 71 17c30 12 57 28 84 46c9 7 33 27 46 39c39 156 89 311 147 466c72 33 145 63 218 92'], + 0xE538: [702,16,831,40,791,'788 586c-11 -43 -37 -77 -70 -118c-54 -68 -112 -130 -178 -196c-83 -83 -196 -197 -232 -255l-100 -33h-14c11 118 22 250 23 350c0 63 -1 145 -5 189c-2 27 -7 55 -27 75c-7 8 -18 15 -32 15c-13 0 -26 -5 -37 -12c-25 -17 -42 -46 -53 -70l-23 5 c22 58 49 106 103 144c26 17 58 22 88 22c25 0 50 -8 64 -24c23 -24 31 -55 36 -87c8 -49 10 -114 8 -165l-8 -308l11 3l150 155c42 41 86 91 117 137c26 37 40 68 50 107c7 29 5 59 -15 79c-14 14 -28 21 -51 21c-16 0 -39 -7 -52 -15c-19 -10 -40 -31 -53 -46l-18 11 c19 35 44 65 79 89c38 26 85 41 130 41c39 0 75 -9 96 -32c18 -19 20 -54 13 -82'], + 0xE539: [710,8,1224,40,1183,'1176 568c-9 -38 -36 -75 -62 -110c-42 -60 -92 -119 -142 -175c-75 -83 -140 -167 -200 -255l-87 -31l-9 3c16 105 5 207 -23 304c-14 50 -28 128 -28 170c-91 -129 -261 -333 -345 -458l-102 -24l-9 11l31 132c25 107 46 212 49 306c1 32 -1 64 -8 97 c-6 23 -18 46 -35 63c-9 10 -23 15 -39 15c-17 0 -35 -7 -49 -17c-24 -16 -44 -47 -55 -69l-23 5c12 50 42 98 94 133c33 23 72 36 111 36c36 0 68 -12 90 -33c34 -36 40 -86 43 -135c3 -75 -16 -189 -33 -266l-28 -127l11 3l153 194c84 102 133 213 177 324l96 39l12 -5 c-32 -126 -30 -250 10 -362c21 -56 41 -113 47 -172c56 65 109 128 160 195c32 42 56 90 68 135c11 45 14 92 -17 124c-11 11 -30 17 -49 17c-26 0 -50 -13 -73 -27l-16 16c13 11 34 28 49 39c44 30 90 47 143 47c30 0 56 -8 73 -25c29 -31 26 -75 15 -117'], + 0xE53A: [712,11,1021,40,981,'979 634c-5 -18 -15 -35 -33 -48c-13 -8 -28 -15 -42 -15c0 0 -26 0 -36 11c-8 7 -9 17 -8 28c1 9 1 18 -5 24c-5 6 -14 8 -23 8c-11 0 -25 -5 -36 -12c-35 -24 -61 -51 -86 -81c-40 -48 -71 -92 -102 -143c-9 -70 -12 -139 -4 -206c6 -42 13 -86 44 -117 c9 -11 28 -14 46 -14s38 5 53 16c34 23 55 53 71 84l28 -4c-25 -50 -55 -99 -107 -135c-38 -26 -82 -39 -126 -39c-35 0 -70 5 -89 26c-23 24 -36 55 -43 87c-10 41 -13 99 -10 144c-29 -46 -67 -97 -104 -137c-27 -26 -52 -51 -83 -72c-44 -31 -98 -50 -151 -50 c-32 0 -60 9 -78 27c-13 14 -18 34 -13 54c4 17 19 31 36 43c12 9 27 14 41 14c16 0 31 -2 40 -12c11 -11 10 -30 8 -47c0 -14 2 -33 22 -33c25 0 49 11 69 25c42 29 76 64 108 101c41 48 74 99 105 151c8 73 13 145 6 216c-4 25 -7 49 -15 73c-6 17 -12 33 -26 46 c-14 15 -37 23 -63 23c-14 0 -29 -5 -42 -14c-13 -10 -24 -24 -27 -38c-3 -9 -5 -18 -6 -27c-1 -11 2 -21 -1 -32c-3 -12 -14 -24 -26 -33c-17 -11 -37 -22 -58 -22c-19 0 -32 10 -43 20c-11 12 -11 28 -7 44c8 33 39 62 72 85c58 40 132 59 200 59c55 0 108 -11 139 -43 c15 -16 22 -38 28 -59c8 -33 13 -83 14 -121c41 54 101 128 162 169c36 24 78 44 121 44c27 0 54 -2 70 -18c13 -13 14 -32 10 -50'], + 0xE53B: [709,135,771,39,731,'731 691l-107 -383s-43 -144 -82 -214c-31 -56 -74 -106 -132 -145c-76 -53 -169 -84 -258 -84c-38 0 -76 4 -98 27c-18 17 -16 43 -10 68c9 35 31 69 58 100c35 39 76 73 121 104c83 57 179 99 276 134l27 102c-49 -28 -100 -55 -150 -80c-47 -23 -97 -43 -146 -43 c-37 0 -69 13 -89 35c-11 11 -11 28 -9 44c4 27 16 75 25 113l26 103c3 11 2 27 -5 35c-5 5 -12 9 -19 9c-20 0 -58 -29 -85 -51l-16 15c29 32 63 69 94 90c30 21 65 39 101 39c23 0 44 -7 56 -20s12 -31 9 -48c-2 -27 -16 -81 -26 -122c-14 -57 -35 -140 -11 -164 c8 -9 22 -13 36 -13c29 1 59 14 87 28c46 24 93 52 135 80c17 68 39 137 56 205l124 49zM489 261c-67 -25 -132 -59 -190 -99c-64 -44 -123 -99 -139 -163c-4 -14 -7 -29 -7 -43c1 -9 3 -19 10 -26c12 -12 31 -20 52 -20c41 0 80 17 114 40c36 24 61 55 83 88 c34 52 44 91 77 223'], + 0xE53C: [705,14,839,40,799,'799 667l-1 -9c-55 -42 -108 -85 -158 -131l-392 -361c40 9 68 10 100 10c24 0 46 -7 67 -14c32 -11 60 -26 88 -41c39 -21 86 -48 127 -48c18 0 37 5 52 16c16 10 26 21 29 36c3 10 3 22 -4 29c-7 8 -23 14 -37 16c-19 3 -32 9 -43 20c-10 10 -15 22 -12 35 c5 18 16 30 33 42c19 13 42 19 65 19c24 0 44 -14 58 -28c20 -22 15 -57 8 -87c-13 -53 -42 -102 -97 -140c-42 -29 -95 -45 -144 -45c-24 0 -46 7 -65 14c-34 11 -65 25 -95 41c-26 13 -53 25 -83 34c-21 7 -49 15 -72 15c-30 0 -61 -10 -86 -28l-56 -62l-37 8l-4 15 l555 514c-14 -7 -31 -7 -47 -7c-19 0 -38 5 -53 12c-22 9 -43 21 -61 34c-20 15 -38 28 -60 42c-13 8 -32 15 -50 15c-15 0 -31 -7 -45 -16c-13 -9 -21 -22 -24 -34c-4 -16 1 -31 13 -41c7 -6 17 -11 22 -17c8 -8 9 -20 7 -31c-3 -12 -12 -25 -25 -34 c-17 -11 -35 -22 -54 -22c-17 0 -33 7 -43 17c-17 17 -18 41 -12 64c13 51 54 97 107 133c49 34 88 53 147 53c21 0 39 -8 57 -17c28 -13 51 -30 74 -48c22 -17 68 -37 97 -37c17 0 36 7 50 17c28 19 45 43 60 68l17 3'], + 0xE53D: [697,27,1054,123,948,'948 85l-173 -112c-37 49 -57 98 -76 150l-243 -150c-17 23 -36 45 -58 64c-29 23 -77 40 -117 40c-45 0 -84 -17 -126 -40l-20 11l135 85c79 49 169 106 217 158c41 44 52 107 52 161c0 47 -17 94 -58 128c-40 33 -91 53 -148 53c-38 0 -74 -12 -102 -35 c-19 -15 -31 -38 -31 -60c0 -10 6 -19 13 -27c11 -14 24 -26 38 -37c18 -15 34 -31 48 -48c8 -12 15 -24 15 -38c0 -26 -17 -50 -37 -70c-29 -27 -65 -47 -103 -63l-19 11c21 10 40 23 56 39c12 12 20 26 20 41c0 10 -6 19 -13 27c-11 13 -24 25 -37 37 c-31 26 -58 58 -58 96c0 40 35 70 68 98c29 24 136 82 232 82c56 0 108 -13 149 -46c40 -34 63 -77 63 -124c0 -68 -22 -136 -58 -197l-214 -164c48 0 78 -21 105 -43l57 -48c15 1 113 53 173 85v325c0 42 -3 88 -6 127l153 96l19 -11c-18 -13 -43 -32 -51 -42 c-8 -9 -12 -21 -13 -32c-6 -54 -6 -156 -6 -234c0 -61 2 -121 6 -181c1 -11 2 -23 6 -32c14 -30 30 -61 52 -85c2 -3 7 -4 11 -4c6 0 12 2 16 3c20 7 38 14 56 22'], + 0xE53E: [691,27,1278,156,1075,'1075 494c-45 -14 -84 -26 -123 -48l-107 -63c132 0 211 -65 211 -159c0 -43 -9 -63 -27 -101c-141 -99 -214 -150 -286 -150c-68 0 -135 21 -195 41c-54 18 -107 34 -150 34c-61 0 -121 -22 -171 -48l-15 21l149 73c150 74 173 130 176 158c4 32 7 103 9 150 c0 162 -114 226 -190 226c-47 0 -67 -7 -95 -30c-19 -15 -21 -36 -21 -57c0 -14 21 -38 46 -63c29 -29 61 -64 61 -89c0 -72 -108 -118 -148 -134l-18 11c32 15 77 48 77 81c0 12 -23 39 -53 70c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 107 86 220 86 c69 0 140 -56 172 -111c27 23 64 46 95 64c45 24 94 42 148 42c27 0 56 -4 77 -21c12 -10 19 -37 26 -66c8 -34 17 -71 37 -88c7 -5 21 -6 30 -6c18 2 36 6 53 11v-22zM917 455c-13 5 -20 16 -26 26c-10 19 -15 39 -19 59c-5 26 -14 59 -27 70c-16 13 -42 24 -64 24 c-47 0 -72 -13 -96 -35c-22 -20 -40 -51 -50 -76c7 -25 12 -81 12 -124c0 -14 -2 -35 -3 -49c47 14 126 38 156 49c36 12 67 27 117 56zM954 175c0 42 -19 82 -55 111c-44 37 -101 55 -162 55c-33 0 -65 -5 -95 -16c-5 -41 -17 -81 -40 -118l-140 -90c71 0 138 -21 204 -43 c50 -16 119 -37 153 -37c32 0 62 9 83 27c36 29 52 70 52 111'], + 0xE53F: [686,24,928,168,833,'833 568c-42 -17 -94 -36 -141 -41c-32 16 -68 64 -96 101c-15 -4 -29 -11 -38 -21c-19 -20 -21 -38 -21 -47c0 -18 8 -48 16 -68c6 -16 24 -62 24 -93c0 -35 -8 -71 -38 -96c-46 -37 -107 -56 -171 -64l-14 16c33 7 63 22 89 43c19 16 19 45 19 69c0 23 -14 70 -25 107 c-7 19 -12 40 -12 60c0 10 2 20 4 30c-42 -1 -81 -15 -108 -42c-43 -45 -57 -103 -57 -160c0 -84 24 -169 96 -229c71 -60 170 -87 270 -87c41 0 70 6 87 13l102 47v-20c-50 -35 -115 -71 -172 -102c-32 -6 -66 -8 -99 -8c-105 0 -211 28 -285 89c-37 30 -56 66 -71 106 c-19 48 -24 98 -24 148c0 63 18 125 51 181c62 39 128 75 198 101l39 -16c75 45 162 74 248 101l34 -81c4 -9 6 -12 12 -18c4 -4 13 -5 23 -5c19 0 45 5 60 9v-23'], + 0xE540: [690,27,1191,129,992,'992 410c0 -96 -25 -174 -66 -263c-75 -69 -195 -174 -266 -174c-25 0 -94 22 -134 35c-50 17 -90 27 -141 40c-33 8 -68 16 -102 16c-25 0 -48 -10 -67 -22c-25 -15 -45 -36 -61 -58l-20 16c32 51 76 96 129 133c47 0 95 7 135 28c30 15 57 38 57 68c0 28 -17 53 -39 74 c-8 8 -64 67 -64 85c0 16 1 32 10 46c12 19 29 35 47 50c37 31 82 55 129 75l19 -11c-17 -9 -31 -20 -46 -32c-15 -13 -30 -27 -42 -42c-7 -10 -14 -21 -14 -32c0 -14 30 -51 50 -75c24 -28 58 -69 58 -90c0 -30 -21 -56 -45 -77c-34 -31 -91 -54 -133 -69 c52 -9 111 -25 160 -40c54 -16 141 -43 165 -43c26 0 51 1 70 12c22 13 52 49 71 73s30 52 37 80c10 37 13 74 13 112c0 71 -20 145 -83 197c-80 67 -194 90 -307 90c-99 0 -206 -16 -277 -76c-53 -44 -77 -110 -80 -169l-26 11c0 82 32 157 102 215c36 30 83 55 131 68 c59 16 121 29 183 29c73 0 135 -1 214 -20c52 -12 108 -45 149 -79c58 -48 84 -114 84 -181'], + 0xE541: [686,24,988,200,866,'866 568c-43 -17 -96 -36 -143 -41c-31 15 -67 63 -94 100c-15 -4 -27 -14 -38 -23c-9 -11 -20 -24 -21 -38c0 -20 3 -41 11 -60c18 -45 27 -69 27 -137l123 62c25 -29 56 -55 92 -75v-9l-80 -38l-71 42c-6 3 -12 5 -18 5c-17 0 -33 -6 -46 -15c-7 -27 -27 -50 -50 -70 c-18 -15 -41 -25 -64 -32c-31 -11 -63 -17 -96 -21l-19 16c35 5 66 20 96 37c8 8 13 18 16 28c3 14 4 31 4 45c0 44 -13 87 -27 130c-6 19 -11 38 -11 58c0 10 1 21 5 32c-42 -1 -83 -15 -108 -42c-43 -45 -59 -103 -59 -160c0 -84 24 -169 96 -229s171 -87 271 -87 c17 0 33 1 49 2c48 14 106 40 141 58v-20c-54 -37 -113 -70 -173 -102c-32 -5 -65 -8 -98 -8c-106 0 -211 28 -280 84c-36 30 -60 67 -76 107c-19 48 -25 102 -25 152c0 63 18 125 51 181c62 39 127 75 198 101l38 -16c77 45 163 74 250 101l33 -81c5 -9 7 -13 13 -18 c5 -4 14 -5 25 -5c20 0 44 4 58 8v-22'], + 0xE542: [686,155,927,110,843,'843 629c-28 -31 -66 -72 -100 -99c-18 -14 -39 -30 -64 -30c-28 0 -60 11 -87 25c-34 -9 -75 -29 -94 -47c-16 -15 -30 -38 -30 -63c0 -18 8 -36 18 -51c15 -24 33 -49 53 -71l146 117c28 -24 52 -49 65 -80l-52 -59c-14 21 -33 43 -63 43c-21 0 -59 -22 -85 -40 l103 -112c20 -23 26 -59 26 -88c0 -52 -26 -101 -71 -138c-66 -55 -155 -91 -248 -91c-40 0 -76 15 -102 38c-32 25 -37 79 -37 109c0 19 2 37 4 56c3 14 4 29 4 44c0 42 -8 54 -17 62c-6 6 -16 8 -25 8c-28 0 -58 -12 -71 -18l-6 21c70 39 126 54 158 54c13 0 25 -3 34 -12 c17 -17 27 -47 27 -73s0 -39 -8 -65c-5 -21 -9 -42 -9 -64c0 -54 20 -78 35 -90c20 -18 46 -35 76 -35c42 0 80 14 108 38c36 30 52 78 52 119c0 24 -12 47 -28 69c-25 36 -51 72 -80 107c-26 30 -52 61 -72 94c-12 19 -24 39 -24 60c0 33 23 61 47 85c37 37 83 66 132 91 c-42 21 -85 40 -131 55c-30 10 -61 19 -94 19c-31 0 -60 -13 -82 -32c-39 -32 -53 -78 -64 -122l-19 11c7 58 26 117 77 159c42 35 99 53 159 53c36 0 70 -10 102 -21c52 -18 100 -40 148 -64c23 -11 49 -21 77 -21s71 37 101 63'], + 0xE543: [692,25,1136,176,950,'950 303c0 -79 -44 -152 -111 -207l-185 -104c-37 -11 -61 -17 -100 -17c-103 0 -215 33 -277 85c-82 68 -101 164 -101 259c0 37 5 70 16 106c10 28 22 52 37 77c59 36 122 70 194 99l39 -16l134 75l12 -11c-32 -23 -63 -53 -63 -90c0 -26 19 -96 31 -137l61 27 c40 22 94 57 129 86c-58 16 -113 53 -125 93l82 64c15 -24 33 -45 57 -62c19 -13 41 -23 65 -23c16 0 36 7 53 22l6 -23l-212 -154c19 2 37 3 54 3c68 0 116 -23 137 -37c40 -27 67 -70 67 -115zM846 255c0 37 -28 76 -58 99c-40 31 -91 48 -148 48c-20 0 -40 -2 -61 -6 c0 -44 -6 -93 -44 -125c-43 -35 -98 -50 -156 -58l-19 16c36 7 67 27 89 53c14 17 21 45 21 66c0 32 -5 59 -14 88c-11 33 -22 65 -22 97c0 10 2 20 4 31c-40 -2 -73 -11 -101 -36c-48 -42 -65 -103 -65 -161c0 -88 25 -177 100 -239c62 -52 135 -89 223 -89 c61 0 114 7 168 44c62 43 83 113 83 172'], + 0xE544: [667,133,1058,87,871,'871 239c0 -87 -8 -175 -52 -255c-61 -47 -152 -117 -198 -117c-31 0 -61 8 -82 26l57 64c13 -22 40 -37 70 -37c14 0 28 3 38 9c12 6 23 23 31 37c14 26 21 62 26 90c6 45 7 90 7 135c0 38 -3 75 -15 111c-8 26 -19 52 -42 70c-28 24 -69 32 -109 32 c-35 0 -71 -11 -99 -29c-35 -23 -54 -36 -87 -68c25 -52 34 -98 34 -122c0 -18 -3 -38 -13 -51c-38 -41 -126 -134 -149 -150c-19 14 -38 26 -57 36c-14 9 -31 16 -49 16c-36 0 -64 -25 -81 -40l-14 14c35 52 94 106 143 106c39 0 82 -30 107 -54c25 25 27 44 28 69 c0 25 -12 63 -28 87c-28 42 -49 85 -71 130c-13 27 -21 54 -21 83c0 42 31 77 62 109c49 50 110 90 174 127c41 -34 94 -60 154 -60c12 0 25 5 34 11c9 4 43 26 69 43l15 -15c-51 -42 -132 -108 -170 -108c-25 0 -49 5 -72 12c-35 9 -79 27 -110 40c-20 -16 -34 -31 -47 -53 c-9 -16 -12 -40 -12 -58c0 -39 36 -103 62 -149c64 55 138 100 217 138c77 0 155 -14 218 -53c19 -57 32 -116 32 -176'], + 0xE545: [686,27,858,131,737,'737 655c-57 -44 -118 -82 -186 -112l-155 47c-23 6 -45 11 -69 11c-36 0 -70 -10 -96 -32c-34 -29 -63 -75 -80 -113l-20 11c15 35 38 78 57 112c13 23 31 49 52 67c31 30 67 40 114 40c50 0 125 -29 185 -53c20 -8 40 -16 63 -16c18 0 42 6 57 13c25 11 46 27 64 41z M714 578c-24 -18 -47 -41 -64 -64c-11 -16 -14 -32 -14 -50c0 -22 2 -54 3 -65c9 -51 15 -106 15 -154c0 -62 -17 -126 -71 -171c-68 -57 -157 -101 -256 -101c-44 0 -82 24 -115 48l-63 -37l-6 16c39 44 130 124 136 128c33 -58 39 -68 54 -81c21 -17 54 -29 83 -29 c36 0 58 12 82 32c20 16 32 46 39 68c11 29 14 59 14 89c0 48 -7 89 -12 127c-5 33 -10 67 -10 95c0 12 1 23 2 34c48 44 107 90 168 122'], + 0xE546: [686,139,856,75,723,'723 591c-62 -27 -154 -65 -192 -75c-36 6 -66 24 -94 43c-33 21 -68 43 -110 43c-28 0 -56 -10 -76 -25c-30 -22 -52 -52 -71 -81l-18 10c23 48 53 93 95 131c28 26 64 49 109 49c21 0 42 -7 61 -16c29 -13 54 -30 79 -47c17 -12 35 -23 54 -32c13 -6 28 -11 42 -11 c43 0 83 16 121 32v-21zM679 522c-26 -22 -50 -44 -68 -72c-14 -19 -15 -45 -15 -67c0 -36 6 -78 15 -117c15 -60 36 -160 36 -181c0 -59 -34 -113 -83 -154c-48 -41 -111 -70 -179 -70c-43 0 -90 6 -121 32c-27 23 -34 55 -39 85c-3 28 -9 66 -19 80c-9 14 -26 22 -44 22 c-24 0 -61 -9 -81 -20l-6 13c27 18 64 41 94 54c22 9 44 17 70 17c20 0 42 -4 56 -16c19 -16 19 -49 19 -75s3 -52 9 -78c4 -16 11 -35 24 -46c21 -19 52 -32 82 -32c32 0 60 8 82 27c34 27 47 74 47 113c0 53 -16 110 -33 160c-17 52 -33 113 -33 162c0 10 1 20 2 29 c47 54 103 102 166 144'], + 0xE547: [681,27,995,116,925,'925 60c-26 -22 -64 -50 -96 -66c-20 -11 -42 -21 -67 -21c-24 0 -48 11 -60 27c-20 25 -25 54 -30 85c-6 44 -19 102 -45 122c-19 17 -48 22 -76 22c-38 0 -75 -9 -108 -22c0 -26 -2 -53 -6 -79c-30 -38 -65 -73 -106 -102c-34 -24 -65 -40 -105 -51 c-48 3 -85 27 -110 57l68 66h13c8 -15 19 -30 33 -42c12 -11 32 -20 50 -20c25 0 42 9 52 17c25 20 28 58 28 91c0 50 -15 100 -33 149c-16 43 -38 106 -38 134c0 13 6 28 7 30c26 53 66 99 114 139c66 55 156 85 250 85c37 0 74 -5 109 -17c29 -10 54 -25 70 -47v-18 c0 -33 -7 -67 -20 -99l-19 -5c0 34 -15 67 -44 91c-43 36 -101 48 -167 48c-70 0 -118 -17 -158 -51c-23 -19 -45 -64 -45 -93c0 -34 9 -83 24 -123c42 37 85 71 137 98c34 19 72 35 113 35c19 0 36 -4 51 -16c21 -16 35 -48 47 -75c7 -16 23 -50 67 -50c7 0 19 2 25 5 l8 -16l-202 -76v-1c18 0 40 -4 55 -16c23 -18 34 -61 44 -103c5 -25 13 -60 34 -80c11 -10 26 -19 44 -19c28 0 64 9 88 24zM707 314c-27 13 -39 46 -47 69c-6 16 -25 35 -40 44c-11 6 -31 9 -39 9c-32 0 -64 -13 -88 -30c-34 -22 -54 -49 -76 -79c14 -28 21 -66 27 -97 c47 18 90 32 142 40c40 13 83 28 121 44'], + 0xE548: [686,27,993,135,871,'871 186c-9 -38 -18 -78 -35 -116c-10 -23 -21 -47 -42 -65c-33 -28 -83 -32 -128 -32c-48 0 -95 9 -142 20c-67 16 -132 37 -197 60c-24 9 -50 16 -76 16c-36 0 -73 -43 -102 -84l-14 15c24 47 46 88 86 127c9 9 32 14 48 16h37c19 5 57 23 73 39c15 15 22 30 22 45 c0 23 -33 76 -54 108c-16 25 -32 51 -44 78c-7 18 -14 36 -14 55c0 23 11 44 23 63c18 26 41 49 67 70c67 57 160 85 256 85c43 0 86 -6 117 -32c24 -19 32 -47 32 -83c0 -11 -1 -22 -3 -33c-2 -19 -2 -47 -2 -55c0 -7 4 -14 10 -19c11 -10 48 -12 70 -12v-18l-141 -30h-3 c-17 0 -48 21 -48 46c0 12 1 32 6 61c1 11 2 21 2 31c0 29 -5 53 -28 72c-27 22 -62 30 -99 30c-47 0 -93 -14 -127 -42c-24 -20 -36 -52 -36 -80c0 -20 5 -37 12 -55c10 -26 25 -54 40 -79c20 -35 50 -90 50 -121c0 -7 -2 -13 -6 -17c-45 -46 -108 -104 -133 -118 c54 -19 121 -40 179 -52c40 -9 84 -16 127 -16c50 0 103 6 140 37c31 26 46 61 58 96'], + 0xE549: [692,27,1452,129,1356,'1356 554c-49 -21 -95 -48 -133 -80c-16 -26 -24 -54 -29 -82c-9 -38 -10 -77 -10 -115c0 -47 0 -107 12 -139c9 -21 11 -24 28 -40c9 -8 27 -18 37 -18c7 0 44 10 70 21v-19l-173 -109l-69 126l-1 172c0 43 9 86 19 128c27 34 59 64 96 91c-8 1 -18 9 -26 16 c-6 5 -18 35 -25 53c-9 21 -21 51 -33 58c-10 8 -24 11 -38 11c-30 0 -67 -8 -90 -25c-26 -19 -41 -31 -60 -57c7 -31 17 -79 17 -110c0 -106 -28 -211 -77 -308l-148 -150c-22 17 -60 43 -82 43c-11 0 -23 0 -32 -5c-15 -7 -25 -16 -39 -30l-16 14c30 36 81 90 106 101 c6 3 12 3 19 3c8 0 17 -1 25 -3c11 -2 50 -24 69 -35c30 24 38 53 46 83c20 64 20 145 20 218c0 43 -2 85 -10 127c-5 27 -11 53 -29 75c-18 23 -51 32 -83 32c-25 0 -53 -9 -69 -23c-18 -13 -31 -31 -42 -49c8 -28 12 -75 12 -82c0 -113 -16 -227 -87 -325l-204 -149 c-16 15 -36 28 -57 39c-13 8 -28 14 -45 14c-34 0 -62 -20 -82 -42l-14 16c21 28 45 55 74 78c19 14 40 28 67 28c18 0 34 -6 50 -14c19 -9 49 -31 66 -44c21 13 41 28 63 46c31 26 43 69 51 104c16 56 21 112 21 169v41c-2 52 -16 111 -48 148c-33 38 -86 74 -142 74 c-47 0 -71 -8 -94 -23c-16 -11 -25 -34 -25 -43c0 -33 28 -66 45 -83c14 -14 37 -37 48 -54c8 -11 16 -28 16 -38c0 -29 -17 -52 -38 -72c-26 -25 -70 -46 -109 -62l-18 11c21 10 43 26 58 42c12 12 19 24 19 39c0 10 -8 19 -16 27c-10 13 -25 30 -37 43 c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 116 86 219 86c56 0 107 -34 143 -71c16 -16 29 -37 40 -59c3 2 6 5 8 8c17 18 35 36 58 48c42 24 89 43 140 43c28 0 57 -5 77 -21c20 -18 34 -39 43 -62c27 26 58 48 91 67c42 25 88 48 141 48c21 0 43 -8 57 -21 s24 -38 33 -59c6 -15 12 -32 25 -43c10 -7 23 -9 35 -9c19 0 37 4 54 9v-15'], + 0xE54A: [686,29,1192,132,1093,'1093 76l-173 -105l-76 133l1 167c0 40 0 96 7 117c2 8 7 15 12 22c25 28 48 48 78 74c-22 4 -32 15 -39 23c-9 11 -18 33 -26 57c-6 18 -17 35 -32 48c-12 10 -28 16 -45 16c-37 0 -77 -18 -104 -39c-37 -32 -54 -51 -80 -88c9 -42 19 -107 19 -150 c0 -78 -9 -159 -52 -229c-6 -9 -16 -24 -19 -26c-51 -37 -100 -68 -158 -100c-13 -7 -41 -18 -57 -18c-42 0 -81 30 -103 58l67 65h15c5 -13 16 -29 32 -43c13 -11 35 -18 53 -18c33 0 58 20 81 39c22 18 30 44 37 69c11 39 14 78 14 118c0 121 -34 241 -71 284 c-33 38 -85 72 -142 72c-47 0 -72 -4 -99 -25c-15 -11 -21 -25 -21 -46c0 -20 29 -59 47 -76c14 -14 36 -37 47 -54c8 -11 17 -28 17 -38c0 -29 -18 -52 -39 -72c-26 -25 -70 -46 -109 -62l-18 11c22 10 43 26 58 42c12 12 19 24 19 39c0 10 -8 19 -15 27l-38 43 c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 107 86 220 86c55 0 107 -34 142 -71c19 -19 36 -50 48 -81c16 15 56 61 63 71c35 48 111 82 179 82c20 0 39 -1 58 -5c15 -3 28 -7 38 -16c15 -13 25 -34 32 -53c5 -15 16 -40 19 -43c11 -8 23 -15 39 -15c18 0 38 4 54 11 v-14c-36 -21 -74 -44 -106 -67c-12 -8 -23 -19 -25 -32c-15 -57 -19 -116 -19 -175c0 -42 3 -84 16 -125c9 -28 18 -46 44 -67c4 -4 15 -9 22 -9c27 0 56 13 76 22v-22'], + 0xE54B: [729,27,1187,110,992,'992 399c0 -59 -7 -118 -29 -174c-15 -42 -39 -84 -80 -113c-53 -40 -109 -76 -173 -103c-45 -20 -95 -36 -146 -36c-66 0 -131 12 -192 32c-21 7 -42 15 -64 21c-20 6 -42 11 -63 11c-47 0 -89 -21 -116 -53l-19 16c34 37 70 73 109 106c53 15 102 51 102 101 c0 15 -6 29 -13 43c-11 19 -24 36 -38 53l-63 74c-7 10 -14 21 -14 33c0 35 18 67 43 95c31 35 72 63 118 86l25 -11c-23 -14 -44 -30 -61 -50c-12 -13 -23 -29 -23 -46s7 -33 16 -49c10 -24 26 -46 43 -68c24 -34 56 -77 56 -106c0 -26 -13 -49 -30 -70 c-23 -30 -58 -56 -91 -79c15 0 34 -4 47 -8c38 -10 75 -23 113 -35c61 -19 133 -33 200 -33c89 0 158 37 194 105c32 57 40 127 40 189c0 44 -5 88 -19 131c-12 32 -29 63 -58 87c-20 18 -48 28 -77 36c-37 9 -75 12 -114 12l-103 -3c-23 0 -47 3 -67 13 c-14 7 -28 18 -28 33c0 40 54 59 83 90h19c-5 -7 -12 -17 -12 -26c0 -16 24 -23 44 -27c22 -5 102 -10 153 -14c42 -3 83 -9 123 -20c30 -9 60 -22 81 -41c64 -53 84 -128 84 -202'], + 0xE54C: [692,219,1181,104,1062,'937 138c0 16 -10 37 -17 52c-12 21 -26 41 -43 60c-25 30 -58 67 -58 96c0 20 14 38 27 54c21 24 51 45 80 64c-16 3 -36 15 -49 26c-16 12 -18 41 -19 64c-1 22 -4 51 -19 63c-15 13 -38 16 -58 16c-29 0 -54 -5 -77 -18c-52 -30 -80 -61 -115 -106v-387h1l174 -48 c23 -5 57 -12 76 -12c29 0 56 8 75 25c18 14 22 31 22 51zM1062 522c-37 -16 -72 -34 -102 -59c-13 -12 -27 -24 -37 -37c-8 -8 -15 -17 -15 -27c0 -29 24 -59 46 -85c24 -31 44 -64 44 -101c0 -69 -39 -132 -102 -176c-37 -25 -79 -48 -128 -48c-12 0 -26 3 -37 6l-142 42 c0 -62 4 -124 13 -186l-115 -70l-25 11c6 12 14 56 19 85c11 62 13 123 13 186c-39 10 -75 17 -96 17c-32 0 -61 -14 -84 -32c-23 -20 -43 -42 -63 -64l-12 21c22 38 46 76 82 107c30 25 71 42 116 42c15 0 36 -3 57 -8v250c0 54 -14 115 -48 154c-32 38 -85 72 -141 72 c-48 0 -77 -7 -101 -25c-15 -12 -21 -25 -21 -46c0 -25 30 -59 48 -76c14 -14 37 -37 48 -54c7 -11 16 -28 16 -38c0 -29 -17 -52 -38 -72c-27 -25 -71 -46 -109 -62l-19 11c22 10 43 26 59 42c12 12 18 24 18 39c0 10 -8 19 -15 27c-11 13 -25 30 -38 43 c-27 28 -49 52 -49 90c0 40 28 70 61 98c29 24 108 86 220 86c55 0 107 -34 143 -71c20 -20 36 -47 46 -74c3 3 6 6 9 8c22 23 44 45 71 64c60 43 129 80 210 80c24 0 48 -7 65 -21c20 -18 27 -59 31 -91c2 -13 5 -30 13 -37c11 -9 24 -13 38 -13c15 0 31 4 45 8'], + 0xE54D: [729,69,1187,110,1037,'1037 -6l-141 -63c-39 10 -78 23 -115 40c-24 11 -48 23 -68 39l-3 -1c-45 -20 -95 -36 -146 -36c-66 0 -131 12 -192 32c-21 7 -42 15 -64 21c-20 6 -42 11 -63 11c-47 0 -89 -21 -116 -53l-19 16c34 37 70 73 109 106c53 15 102 51 102 101c0 15 -6 29 -13 43 c-11 19 -24 36 -38 53l-63 74c-7 10 -14 21 -14 33c0 35 18 67 43 95c31 35 72 63 118 86l25 -11c-23 -14 -44 -30 -61 -50c-12 -13 -23 -29 -23 -46s7 -33 16 -49c10 -24 26 -46 43 -68c24 -34 56 -77 56 -106c0 -26 -13 -49 -30 -70c-23 -30 -62 -59 -93 -78 c15 0 36 -5 49 -9c38 -10 75 -23 113 -35c61 -19 129 -32 195 -32c89 0 167 41 203 109c31 57 36 122 36 184c0 44 -5 88 -19 131c-12 32 -29 63 -58 87c-20 18 -48 28 -77 36c-37 9 -75 12 -114 12l-103 -3c-23 0 -47 3 -67 13c-14 7 -28 18 -28 33c0 8 1 21 13 32l70 58 h19c-5 -7 -12 -17 -12 -26c0 -4 2 -7 5 -11c10 -9 25 -13 39 -16c22 -5 102 -10 153 -14c42 -3 83 -9 123 -20c30 -9 60 -22 81 -41c64 -53 84 -128 84 -202c0 -103 -26 -225 -109 -287c-20 -15 -41 -30 -62 -44c21 -20 42 -39 68 -54c18 -10 37 -20 59 -20 c32 0 62 12 89 27v-27'], + 0xE54E: [686,27,1187,129,1088,'908 463c-15 1 -32 6 -44 16c-9 7 -17 44 -19 69c-2 19 -9 37 -20 53c-9 16 -28 27 -50 27c-30 0 -62 -10 -83 -28c-30 -24 -53 -50 -80 -88c2 -5 7 -48 7 -61c0 -33 0 -69 -4 -103c26 11 84 33 139 40zM1088 74l-159 -101l-77 117c2 31 4 60 4 89c0 98 -21 117 -35 129 c-26 21 -65 35 -100 35c-28 0 -78 -11 -110 -19c-4 -22 -9 -45 -15 -67c-14 -51 -33 -94 -67 -138c-68 -45 -136 -100 -202 -146c-26 22 -72 53 -97 53c-37 0 -66 -18 -87 -42l-14 16c20 25 41 55 74 78c19 14 39 28 67 28c14 0 40 -7 58 -17c21 -13 38 -26 55 -41 c42 24 75 52 98 90c17 28 23 59 29 90c7 46 12 92 12 139s-1 127 -48 184c-32 39 -85 72 -142 72c-47 0 -67 -7 -95 -30c-19 -15 -21 -35 -21 -57c0 -12 25 -43 43 -60c14 -14 36 -37 47 -54c8 -11 17 -28 17 -38c0 -29 -18 -52 -39 -72c-26 -25 -70 -46 -109 -62l-18 11 c22 10 43 26 58 42c12 12 19 24 19 39c0 10 -8 19 -15 27l-38 43c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 107 86 220 86c55 0 107 -34 142 -71c18 -18 33 -42 44 -67l4 5c20 20 41 41 63 59c50 42 114 74 186 74c26 0 53 -9 69 -26c18 -18 24 -45 27 -69 c2 -16 1 -33 6 -50c4 -14 9 -28 56 -28c16 0 32 2 46 4l8 -13c-35 -11 -71 -27 -104 -41c-42 -18 -105 -47 -147 -75c60 0 90 -15 122 -37c3 -66 8 -170 19 -197c8 -22 18 -43 32 -63c9 -10 17 -22 31 -22c6 0 47 13 71 21v-16'], + 0xE54F: [689,27,1187,164,1004,'1004 655c-9 -32 -29 -62 -56 -86c-34 -28 -78 -44 -123 -58c-37 3 -103 35 -152 58c-34 17 -68 32 -104 44c-22 8 -45 15 -69 15c-60 0 -111 -29 -153 -64c-59 -49 -83 -118 -83 -186c0 -98 37 -196 121 -266c67 -57 163 -86 258 -86c77 0 155 5 210 51 c38 33 56 84 56 130c0 37 -13 76 -45 102c-27 22 -64 32 -102 32c-39 0 -90 -9 -135 -16c-45 -8 -94 -16 -140 -16c-30 0 -61 3 -83 21c-19 16 -32 36 -32 58c0 29 15 55 38 75c27 21 59 37 94 45l15 -13c-15 -4 -27 -12 -38 -21c-14 -13 -19 -31 -19 -48 c0 -16 6 -32 19 -43c14 -12 36 -16 58 -16c26 0 93 13 140 21c50 10 114 22 154 22c46 0 93 -15 127 -43c29 -24 38 -57 38 -90c0 -74 -33 -145 -96 -197c-93 -78 -227 -107 -357 -107c-92 0 -186 20 -252 75c-82 68 -129 164 -129 261s47 186 130 255 c80 68 201 106 313 125c64 -28 143 -62 187 -78c29 -10 58 -20 89 -20c26 0 47 6 66 21c18 15 26 38 32 54'], + 0xE550: [703,27,996,126,908,'908 681l-83 -90c-25 -13 -54 -16 -82 -16c-46 0 -109 5 -154 14c-27 -18 -35 -25 -56 -51c-15 -18 -33 -52 -33 -75c0 -13 6 -25 13 -36c10 -16 23 -30 38 -44c25 -23 48 -48 67 -74c12 -17 23 -34 23 -54c0 -25 -17 -47 -35 -66c-30 -33 -67 -60 -104 -86 c51 -20 117 -45 164 -45c26 0 51 9 74 20c31 14 60 34 85 55l14 -16c-34 -32 -69 -62 -107 -89c-30 -22 -63 -41 -97 -55c-53 6 -101 27 -148 48c-34 15 -70 27 -108 27c-23 0 -44 -7 -65 -15c-30 -12 -56 -27 -83 -44l-12 16c46 40 95 77 147 112c12 1 24 1 36 1 c23 0 45 -1 66 -6c25 12 48 28 66 47c13 14 24 30 24 48c0 14 -7 26 -16 37c-12 18 -26 34 -42 49c-36 34 -83 79 -90 111c10 34 28 64 49 93c29 36 62 69 99 99c-63 18 -127 27 -192 27c-54 0 -110 -8 -149 -40c-20 -17 -31 -43 -31 -67c0 -39 35 -71 78 -85l-77 -64 c-38 25 -61 58 -61 98c0 55 49 118 98 156c59 46 132 65 213 65c68 0 136 -9 204 -21c46 -7 96 -16 140 -16c50 0 95 23 127 54v-22'], + 0xE551: [697,27,968,66,896,'896 80l-173 -107l-80 147l-137 -126c-20 -13 -44 -21 -69 -21c-54 0 -105 16 -154 32c-46 15 -96 32 -140 32c-11 0 -21 -6 -28 -11c-14 -9 -26 -20 -37 -32l-12 17l96 90c29 2 59 28 83 48c31 27 44 64 44 101c0 19 -7 37 -14 54c-12 26 -27 50 -44 74 c-27 40 -63 93 -63 128c0 20 12 39 25 56c19 26 44 49 71 71c29 24 60 47 96 64l12 -16c-18 -11 -35 -24 -51 -37c-30 -24 -51 -56 -51 -90c0 -32 24 -73 44 -107c17 -28 33 -57 43 -86c9 -23 15 -45 15 -68c0 -26 -5 -52 -18 -75l-121 -112c34 0 82 -14 121 -26 c39 -14 96 -32 121 -32c37 0 68 20 95 42c27 23 61 51 71 75c6 16 6 56 6 85c0 116 -3 231 -12 346l152 90l19 -10c-21 -18 -41 -39 -50 -64c-19 -48 -19 -99 -19 -149v-202c0 -22 1 -43 6 -64c9 -38 20 -77 51 -107c8 -7 19 -11 30 -11c29 0 60 15 72 22v-21'], + 0xE552: [686,27,1191,132,1088,'979 548c-35 0 -66 16 -96 32c-32 18 -67 37 -108 37c-35 0 -80 -36 -80 -36c-33 -27 -59 -59 -78 -95c0 -100 -17 -182 -66 -262l-112 -73c47 -3 83 -22 157 -61c79 -41 137 -58 172 -58c31 0 61 7 84 25c17 15 23 35 27 54c9 32 11 64 11 96c0 24 -3 57 -7 86 c-2 33 -6 67 -6 101c0 23 5 47 13 69zM1088 607c-19 -11 -36 -24 -51 -38c-44 -35 -70 -82 -70 -133c0 -34 6 -67 12 -101c8 -39 19 -96 19 -117c0 -31 -8 -62 -25 -90c-13 -22 -28 -42 -52 -57l-140 -85c-17 -11 -42 -13 -64 -13c-35 0 -91 9 -178 53 c-24 12 -132 64 -185 64c-59 0 -111 -27 -148 -64l-13 16c46 43 96 82 154 112c55 0 104 26 134 64c17 22 24 47 29 73c7 37 11 74 12 112c-1 52 -16 110 -48 148c-33 38 -85 72 -142 72c-47 0 -78 -9 -102 -27c-11 -8 -18 -23 -18 -44c0 -24 29 -59 47 -76 c14 -14 36 -37 47 -54c8 -11 17 -28 17 -38c0 -29 -18 -52 -39 -72c-26 -25 -70 -46 -109 -62l-18 11c22 10 43 26 58 42c12 12 19 24 19 39c0 10 -8 19 -15 27l-38 43c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 107 86 220 86c55 0 107 -34 142 -71 c20 -21 41 -60 52 -89c16 22 33 44 66 75c27 25 59 46 94 63c24 12 50 22 78 22c43 0 81 -16 115 -37c45 -27 77 -32 97 -32c11 0 21 2 31 6v-16'], + 0xE553: [686,28,1449,122,1363,'1242 548c-22 0 -61 22 -90 37c-31 17 -65 32 -102 32c-27 0 -51 -10 -70 -23c-31 -21 -51 -38 -73 -64c3 -33 5 -68 5 -103c0 -79 -9 -156 -35 -227c-17 -19 -67 -75 -94 -99c51 0 138 -33 203 -59c19 -7 41 -10 64 -10c38 0 69 15 89 42c13 18 21 45 21 112 c0 39 -3 79 -8 117c-3 29 -6 59 -6 88c0 39 5 63 12 77c3 6 8 12 13 17zM825 362c0 52 -8 104 -34 152c-20 37 -54 75 -99 91c-33 -25 -68 -51 -94 -80c2 -9 9 -38 9 -49c0 -15 -5 -87 -22 -148c-13 -48 -32 -95 -66 -137c-50 -34 -96 -59 -141 -81c54 -35 123 -68 192 -68 c71 0 137 28 186 70c30 24 42 59 51 93c15 51 18 104 18 157zM1363 628l-7 -21c-39 -24 -75 -50 -96 -85c-15 -28 -18 -54 -18 -88c0 -23 2 -45 6 -67c7 -51 12 -103 12 -154c0 -25 -3 -50 -11 -74c-7 -18 -17 -34 -34 -47c-50 -40 -106 -75 -165 -106 c-24 -6 -48 -11 -72 -11c-36 0 -73 7 -107 19c-58 21 -121 43 -179 43c-49 -19 -97 -39 -141 -64c-7 0 -13 -1 -20 -1c-53 0 -108 16 -152 39c-32 17 -74 37 -103 37c-14 0 -41 -8 -56 -16c-24 -14 -46 -26 -68 -43l-17 16c45 43 94 82 148 117h4c56 0 110 20 150 53 c30 25 45 58 56 92c15 43 19 89 19 135c-1 52 -15 111 -48 149c-32 38 -85 72 -141 72c-48 0 -79 -8 -104 -27c-14 -11 -16 -20 -16 -42c0 -30 28 -61 46 -78c14 -14 37 -37 48 -54c7 -11 16 -28 16 -38c0 -29 -17 -52 -38 -72c-27 -25 -71 -46 -109 -62l-19 11 c22 10 43 26 59 42c12 12 18 24 18 39c0 10 -8 19 -15 27c-11 13 -25 30 -38 43c-27 28 -49 52 -49 90c0 40 28 70 61 98c29 24 108 86 220 86c55 0 107 -34 143 -71c17 -17 31 -40 42 -64l14 13c51 46 107 85 166 122c63 -30 110 -96 128 -127c39 34 79 67 125 94 c28 17 58 33 92 33c21 0 40 -5 58 -12c28 -9 53 -22 77 -35c21 -12 46 -19 71 -19c15 0 30 3 44 8'], + 0xE554: [689,27,1056,129,948,'948 585l-123 -58c-24 9 -44 22 -63 37c-18 15 -45 38 -51 52c-18 -10 -37 -23 -50 -37c-20 -23 -37 -51 -50 -79c-21 -42 -28 -87 -28 -133h211l-44 -42c-55 6 -112 7 -167 8c0 -41 2 -82 13 -115c13 -47 35 -93 77 -128c29 -24 67 -37 108 -37c47 0 89 21 127 43v-22 l-133 -90c-19 -5 -44 -11 -58 -11c-40 0 -80 14 -109 38c-45 38 -69 90 -83 143l-50 -42c-40 -33 -82 -65 -128 -91c-22 -12 -44 -23 -68 -32c-14 -5 -31 -11 -48 -11c-43 0 -79 24 -102 54l71 69c18 -31 53 -53 95 -53c46 0 87 21 118 47c50 41 67 99 81 155 c5 20 6 51 6 83c-71 0 -140 0 -211 -8l44 42h167c0 36 0 71 -6 107c-6 34 -20 62 -50 87c-21 18 -48 33 -78 33c-39 0 -69 -7 -96 -30c-21 -17 -44 -37 -59 -52l-20 15l177 159c53 -2 107 -16 144 -47c16 -13 27 -30 35 -46c13 -25 22 -51 30 -77c18 31 41 61 70 85 c45 38 97 68 156 88c14 -23 26 -47 40 -69c4 -7 9 -13 15 -19c11 -8 24 -13 38 -13c13 0 35 9 52 16v-19'], + 0xE555: [686,219,1194,129,986,'986 341c0 -69 -6 -137 -20 -204c-11 -53 -28 -105 -58 -153c-53 -67 -127 -120 -210 -160c-51 -24 -107 -43 -167 -43c-34 0 -69 6 -100 19c-26 11 -48 28 -59 51l80 71h12c12 -50 68 -93 133 -93c72 0 115 21 161 60c30 24 55 64 75 95c24 41 34 86 42 131 c12 66 15 132 15 199c0 72 -5 144 -32 213c-31 29 -65 59 -108 74c-9 -3 -91 -35 -139 -89c3 -14 4 -30 4 -44c-2 -91 -21 -183 -84 -261l-139 -92c29 -7 63 -21 90 -32c30 -13 63 -25 95 -25c41 0 76 23 102 48l11 -16c-28 -30 -55 -59 -88 -85c-17 -12 -39 -26 -62 -26 c-36 0 -91 23 -127 41c-45 21 -92 34 -120 34c-56 0 -108 -32 -152 -58l-12 15c44 39 98 78 146 113c26 0 61 0 82 -2c21 10 54 32 80 53c30 25 48 58 61 92c15 42 22 86 23 130c0 53 -14 114 -48 154c-33 38 -86 72 -142 72c-47 0 -83 -13 -104 -27 c-16 -12 -17 -24 -17 -45s30 -58 47 -75c14 -14 37 -37 48 -54c8 -11 16 -28 16 -38c0 -29 -17 -52 -38 -72c-26 -25 -70 -46 -109 -62l-18 11c21 10 43 26 58 42c12 12 19 24 19 39c0 10 -8 19 -16 27c-10 13 -25 30 -37 43c-27 28 -49 52 -49 90c0 40 27 70 61 98 c29 24 107 86 219 86c56 0 107 -34 143 -71c20 -21 37 -49 48 -78l6 5c33 27 67 52 103 75c40 27 82 51 128 69c34 -36 81 -64 128 -90c19 -80 19 -170 19 -255'], + 0xE556: [729,139,916,110,737,'737 197c0 -88 -38 -172 -96 -245c-83 -57 -186 -91 -294 -91c-39 0 -77 3 -116 11c0 25 0 61 -1 74c-1 10 -2 20 -11 27c-8 7 -20 11 -32 11c-14 0 -43 -14 -62 -26l-15 15c28 19 58 35 89 48c25 9 50 16 77 16c19 0 42 0 51 -16c6 -10 6 -42 6 -64c0 -17 0 -39 14 -50 c13 -11 42 -16 61 -16c55 0 94 15 133 47c30 25 53 64 65 97c15 40 21 82 21 124c0 23 -2 46 -9 68c-6 16 -15 32 -29 44c-40 34 -96 48 -152 48c-39 0 -76 -7 -110 -21l-13 11l52 63c53 3 97 28 134 59c36 30 58 70 58 112c0 14 -7 27 -19 37c-20 15 -45 21 -71 21 c-28 0 -55 -3 -83 -5l-96 -5c-25 0 -52 1 -70 16c-8 7 -13 16 -13 26l83 96h19c-5 -7 -9 -16 -9 -24c0 -7 3 -14 9 -19c19 -15 59 -15 90 -15l70 2c19 0 38 3 57 3c22 0 44 -1 64 -5c14 -3 29 -8 38 -16c20 -16 33 -36 33 -59c0 -50 -28 -97 -71 -133 c-41 -34 -89 -65 -135 -89l5 -2c20 3 48 6 66 6c74 0 150 -17 192 -69c14 -37 20 -74 20 -112'], + 0xE557: [471,36,794,174,693,'693 83l-147 -110l-52 73l-2 45l-210 -127c-36 32 -71 66 -105 101c-1 30 -3 61 -3 91c0 70 7 141 25 209l203 106c33 -19 72 -33 111 -40l81 34l9 -6c-12 -67 -18 -135 -18 -203l2 -137l43 -45c26 7 38 13 55 22zM492 119l-1 246c-57 0 -116 13 -171 27 c-29 -25 -36 -62 -42 -97c-5 -31 -7 -62 -7 -94c0 -27 1 -53 4 -80c15 -17 46 -44 72 -65c0 0 4 -1 8 -1c18 0 65 23 137 64'], + 0xE558: [686,31,809,200,629,'629 313c0 -72 -6 -145 -23 -216c-88 -47 -178 -92 -274 -128c-44 33 -103 77 -132 102c17 73 17 157 17 236c0 121 -1 241 -8 361l20 4l20 -77l10 4l144 87l20 -13l-36 -26c-52 -38 -72 -91 -75 -148c-3 -43 -3 -92 -3 -134l9 -2c54 38 110 77 168 107 c45 -22 92 -43 140 -61c2 -32 3 -64 3 -96zM533 227c0 41 0 72 -5 113c-11 12 -39 24 -102 46c-37 -4 -83 -33 -115 -54v-209c38 -33 96 -81 128 -81c19 0 35 11 48 22c19 17 28 39 34 61c9 34 12 68 12 102'], + 0xE559: [466,29,660,183,528,'528 92l-207 -121c-48 34 -91 73 -132 113c-4 45 -6 89 -6 134c0 29 1 89 15 145l198 103c47 -3 90 -22 129 -44l-62 -79l-11 -3c-39 29 -100 54 -144 54c-21 -30 -26 -99 -26 -148c0 -35 4 -69 9 -99c22 -29 64 -61 101 -89c39 10 85 31 126 51'], + 0xE55A: [612,34,791,113,614,'614 328c0 -31 -2 -61 -5 -79c-4 -48 -9 -96 -31 -140l-224 -143c-60 34 -119 69 -166 115c-2 30 -3 57 -3 85c0 44 2 93 7 169c50 40 105 83 158 112l23 -4c-56 -50 -69 -77 -78 -97c-10 -23 -15 -56 -15 -92c0 -39 4 -83 8 -119c15 -16 35 -29 54 -41 c27 -16 56 -30 86 -43c4 -1 6 -2 10 -2c6 0 12 3 18 10c33 44 50 95 56 146c3 21 4 41 4 62c0 44 -6 88 -15 132c-46 41 -98 79 -157 109c-39 21 -84 38 -132 38c-9 0 -25 0 -29 -1l-55 -18l-15 16c51 24 111 48 165 69c108 -12 231 -88 331 -157c1 -18 5 -75 5 -127'], + 0xE55B: [467,31,674,181,534,'534 358c-83 -66 -186 -146 -256 -192c0 -9 3 -18 6 -26c4 -14 72 -61 120 -79c5 1 22 1 28 3l89 39l6 -16c-65 -42 -132 -82 -203 -118c-48 37 -96 74 -137 116c-4 34 -6 69 -6 103c0 60 6 119 17 178l194 101c40 -42 89 -78 142 -109zM437 312c-45 24 -90 53 -129 84 l-2 1c-10 0 -17 -22 -19 -28c-11 -32 -12 -123 -12 -176c55 34 117 78 162 119'], + 0xE55C: [679,238,588,133,486,'486 388l-15 -37h-127l-5 -206c0 -67 0 -151 -15 -198c-12 -34 -30 -67 -52 -97l-60 -88l-23 7l32 90c8 23 14 48 16 72c3 35 4 131 4 197l-1 223h-107l18 35h88l-17 67c-7 25 -16 61 -16 75c0 44 29 81 66 112c17 14 35 27 55 39c51 0 111 -7 149 -40l-56 -92l-12 -1 c-10 17 -22 33 -37 46c-16 12 -36 23 -57 23c-15 0 -35 -3 -47 -12c-10 -10 -14 -22 -14 -35c0 -17 14 -41 25 -59l60 -95c6 -8 9 -17 11 -26h137'], + 0xE55D: [470,209,797,116,643,'643 -17c-61 -64 -125 -127 -196 -184c-14 -4 -33 -8 -43 -8c-38 0 -75 9 -110 21c-45 16 -85 38 -123 63l-42 -19l-13 13c54 31 107 68 161 107l-86 89c-3 34 -5 69 -5 103c0 67 6 134 18 200c63 37 128 70 194 102c41 -23 89 -36 137 -45l86 40l8 -6 c-17 -29 -20 -62 -22 -94c-5 -55 -5 -143 -5 -215c0 -14 3 -28 6 -41zM540 -45c0 22 -19 95 -33 142c-80 -47 -159 -99 -234 -152c28 -23 59 -45 93 -60c26 -12 55 -20 85 -20c24 0 47 10 64 24c18 16 25 45 25 66zM516 351c-70 8 -154 21 -211 43c-20 -40 -22 -90 -22 -134 c0 -45 1 -91 6 -136c18 -29 52 -60 82 -83l134 82c0 76 2 153 11 228'], + 0xE55E: [689,198,819,188,619,'619 246c0 -54 -2 -109 -8 -162c-5 -39 -11 -78 -24 -115c-54 -66 -123 -119 -197 -167l-19 14l76 55c14 8 23 19 32 31c20 34 27 72 33 109c10 60 12 121 12 182c0 28 -7 107 -12 161c-31 19 -66 36 -105 36c-38 0 -83 -29 -113 -49l-6 -215l65 -77l-99 -75l-66 91 c9 122 13 244 13 366c0 81 -1 163 -7 244l15 2l28 -76l146 88l20 -11c-100 -77 -108 -142 -108 -197l-1 -110c39 26 117 72 177 107c40 -30 89 -48 140 -61c4 -57 8 -114 8 -171'], + 0xE55F: [675,21,528,114,419,'419 83c-47 -37 -98 -72 -148 -104l-65 76c3 53 4 93 4 139c0 58 -1 114 -5 173l-25 24c-13 -4 -35 -12 -51 -22l-15 13c41 28 85 61 126 93c23 -20 45 -39 72 -55c-9 -60 -10 -120 -10 -181c0 -39 1 -79 6 -111c2 -19 23 -40 39 -53c4 0 12 1 15 3c18 7 40 18 48 24z M321 616l-68 -60c-25 19 -48 40 -70 61c24 20 51 37 72 58c22 -21 48 -47 66 -59'], + 0xE560: [673,202,530,86,332,'332 422l-7 -396c-1 -25 -6 -51 -26 -70c-54 -55 -118 -107 -194 -158l-19 18c35 22 70 45 100 71c15 13 25 30 31 47c19 56 22 179 22 269c0 50 0 119 -12 149c-7 17 -31 37 -38 37c-3 0 -10 -3 -10 -3l-35 -19l-17 13l127 95c26 -16 52 -34 78 -53zM317 615l-70 -60 c-22 15 -44 40 -65 61l73 57c20 -21 39 -40 62 -58'], + 0xE561: [686,26,660,126,533,'533 95c-52 -37 -134 -82 -202 -121l-128 95c4 19 7 40 7 58v181h-84l11 35h74c0 227 -1 262 -8 326l20 4c10 -24 22 -80 22 -80c49 32 103 68 156 93l19 -10c-31 -24 -67 -52 -81 -73c-22 -32 -31 -69 -34 -105c50 32 99 57 152 87c20 -16 38 -34 53 -54 c11 -15 19 -31 19 -48c0 -18 -12 -36 -28 -49l-103 -91h114l-17 -35h-190v-180c28 -24 64 -48 98 -68c39 16 79 29 114 50zM443 446c0 13 -8 24 -15 35c-12 14 -26 26 -42 37c-24 -10 -47 -23 -61 -42c-11 -16 -14 -34 -17 -52c-3 -25 -3 -54 -3 -81c42 0 76 13 104 40 c18 18 34 39 34 63'], + 0xE562: [686,20,528,213,429,'429 87l-154 -107l-62 76c8 108 10 217 10 326c0 96 -1 191 -7 286l20 4l21 -78l153 92l19 -13c-26 -19 -52 -36 -70 -60c-42 -54 -43 -106 -43 -222l2 -269c11 -14 31 -29 51 -41c16 4 33 14 47 23'], + 0xE563: [475,26,1113,105,1006,'1006 88l-152 -107c-12 19 -46 54 -71 79c8 42 13 75 13 214c0 26 0 50 -3 68c-1 6 -2 12 -10 15c-33 17 -72 26 -110 34c-28 -12 -53 -24 -78 -38v-218c0 -8 0 -17 5 -22c0 0 36 -45 55 -66l-103 -73c-16 26 -44 52 -65 72c11 39 17 81 17 202c0 33 -1 66 -6 99 c-30 22 -85 35 -126 44l-73 -42v-197c0 -16 0 -40 6 -46l52 -58l-99 -70l-59 80c7 40 9 80 9 119l-5 188l-32 26l-51 -24l-15 12l134 93l60 -52v-44l152 99c46 -23 94 -43 144 -57v-39c53 30 106 61 155 95c46 -21 102 -46 145 -56c-5 -57 -3 -114 -4 -171l-1 -121 c13 -16 28 -33 45 -47c24 7 33 10 56 26'], + 0xE564: [475,23,825,119,722,'722 93l-152 -112l-66 84c7 35 10 81 10 130c0 54 -3 111 -7 163c-34 15 -82 24 -121 27l-78 -44l-5 -207c0 -10 5 -24 9 -28l48 -54l-105 -75c-16 25 -36 48 -58 69c9 46 12 104 12 165l-4 154l-29 23l-42 -20l-15 12l124 90c15 -13 42 -31 65 -45v-58l173 108 c42 -24 88 -43 136 -58c-5 -43 -11 -102 -11 -164l6 -126c9 -13 19 -27 31 -40c4 -4 10 -5 16 -5c0 0 8 3 12 5l37 22'], + 0xE565: [481,28,779,176,593,'593 302c0 -71 -8 -141 -27 -210c-86 -46 -176 -88 -271 -120c-42 30 -85 62 -119 96c0 89 6 198 22 296c73 35 143 75 211 117c54 -30 113 -55 178 -66c3 -38 6 -75 6 -113zM498 356c-54 3 -125 25 -179 45c-16 -22 -23 -35 -33 -72c-8 -30 -13 -75 -13 -118 c0 -33 3 -64 8 -88c20 -21 43 -40 69 -55c22 -12 43 -21 69 -24c6 0 20 13 26 19c28 28 38 67 44 107c9 62 9 89 9 186'], + 0xE566: [538,214,794,111,613,'613 282l-2 -66c-3 -43 -8 -87 -26 -127l-160 -107c-39 26 -82 48 -130 55c0 -69 1 -138 5 -207l-96 -44l-13 7l10 254c-27 0 -55 -7 -76 -23l-14 14c30 23 75 57 92 67v247l-50 56c-3 4 -6 9 -6 14c0 8 4 15 9 22c25 34 56 66 91 94l17 -9c-12 -12 -22 -26 -22 -42 c0 -13 6 -26 15 -38c10 -16 25 -30 40 -43l-2 -34c59 33 114 69 170 106c42 -28 92 -48 142 -64c3 -44 6 -88 6 -132zM516 230c0 41 -3 82 -7 123c-30 13 -79 28 -115 38c-35 -11 -66 -27 -98 -44v-241c48 0 130 -30 189 -54c19 30 31 83 31 178'], + 0xE567: [480,224,780,168,599,'599 473c-18 -85 -23 -220 -23 -332c0 -107 0 -215 8 -320l-99 -45l-14 10l9 307c-67 -46 -135 -84 -208 -122l-101 94c-2 29 -3 57 -3 86c0 73 8 147 27 218c69 31 138 63 198 104c35 -18 72 -34 112 -41l84 48zM486 367c-61 3 -121 16 -180 31c-17 -25 -25 -54 -31 -82 c-9 -38 -12 -77 -12 -116c0 -19 0 -53 1 -56c0 -7 1 -14 7 -19c26 -22 61 -54 88 -75c28 13 83 48 121 71c0 80 1 166 6 246'], + 0xE568: [474,21,660,115,570,'570 400l-71 -55c-11 -8 -25 -10 -40 -10c-14 0 -28 5 -39 11c-19 10 -43 25 -60 38c-20 -12 -37 -25 -45 -34v-198c0 -16 12 -29 23 -41c19 -19 41 -36 65 -51l107 42l2 -19l-175 -104c-44 29 -84 62 -124 96c8 59 8 109 8 170l-2 77c-1 32 -9 43 -9 43 c-11 8 -23 15 -35 22l-46 -16l-14 10l121 93c25 -21 52 -41 79 -60v-32l131 87c12 -18 27 -36 43 -52c10 -9 22 -19 36 -19s35 10 45 15v-13'], + 0xE569: [479,30,724,63,585,'585 441l-110 -78c-86 4 -151 27 -182 52c-24 -19 -24 -56 -24 -79c0 -25 2 -50 14 -73c5 -9 11 -21 24 -21c7 0 14 0 20 2l148 56c26 -7 47 -22 67 -38c2 -26 4 -52 4 -77c0 -46 -5 -91 -19 -135c-65 -24 -131 -49 -192 -80c-27 21 -56 41 -88 57c-20 10 -42 20 -66 20 c-36 0 -69 -16 -106 -44l-12 9l89 76c22 17 52 23 81 23c31 0 60 -8 86 -22l97 -54l5 -1c7 0 14 5 18 14c11 30 13 61 13 92c0 25 -4 63 -15 74c-18 17 -33 22 -48 22c-16 0 -26 -3 -41 -10l-123 -58c-18 19 -37 45 -51 67c0 49 1 97 7 142l182 102l98 -46c9 -4 19 -6 31 -6 c27 0 55 13 87 30'], + 0xE56A: [641,21,593,128,516,'516 78l-165 -99l-116 83l1 289h-108l19 35h88v172l136 83l16 -14l-32 -26c-6 -5 -10 -12 -11 -19c-13 -64 -14 -131 -14 -196h129l-20 -35h-108l1 -228c24 -18 53 -39 76 -50c6 -3 13 -5 20 -5c18 0 44 9 84 32'], + 0xE56B: [474,26,814,107,714,'714 88c-51 -34 -100 -69 -147 -106l-9 2c-23 32 -47 67 -62 103c-81 -45 -183 -113 -183 -113c-31 17 -106 62 -150 74c16 22 25 51 32 79c11 45 18 91 18 137c0 28 0 55 -8 82c-7 18 -17 37 -35 50l-45 -20l-18 10l133 88c19 -19 38 -38 62 -53l1 -65l-2 -92 c-2 -54 -11 -108 -29 -160l122 -48l105 59c4 50 4 100 4 149c0 52 0 105 -3 160l102 44l9 -6c-12 -79 -16 -158 -16 -237c0 -32 2 -64 7 -94c3 -14 10 -28 21 -40c4 -5 12 -8 20 -8c12 0 52 15 64 20'], + 0xE56C: [533,28,807,158,624,'624 245c0 -37 -18 -119 -39 -159l-258 -114c-37 33 -80 65 -123 94c5 55 8 101 8 165c0 31 -2 69 -5 114c0 8 -4 13 -10 19c-11 12 -21 18 -30 30c-5 8 -9 16 -9 24c0 6 6 20 10 26c25 32 54 62 86 89l17 -4c-11 -14 -19 -29 -19 -46c0 -10 13 -31 23 -45 c6 -8 21 -20 32 -30v-34l172 103c43 -24 88 -45 138 -61c7 -66 7 -100 7 -171zM528 243c0 38 -4 77 -10 115c-27 21 -65 32 -102 38c-33 -2 -75 -27 -109 -48l-4 -193c0 -25 17 -47 41 -62l45 -29c14 -8 32 -15 50 -15c16 0 29 9 40 19c13 11 21 25 28 40 c16 40 21 99 21 135'], + 0xE56D: [533,28,1121,150,929,'929 268c0 -93 -23 -133 -50 -196l-224 -100c-53 27 -107 52 -161 74c6 59 10 118 10 176c0 40 -2 80 -6 119c-28 16 -67 37 -84 44c-9 3 -20 7 -28 7c-6 0 -16 -2 -21 -5c-25 -12 -45 -25 -68 -39l-2 -190c0 -24 7 -49 24 -70c10 -14 22 -29 32 -40l-90 -75 c-20 29 -42 57 -70 79c9 51 12 103 12 155c0 46 0 92 -4 138c-1 8 -5 13 -11 19c-10 12 -20 18 -30 30c-4 8 -8 16 -8 24c0 6 6 20 9 26c26 32 54 62 87 89l17 -4c-11 -14 -20 -29 -20 -46c0 -10 14 -31 23 -45c6 -8 22 -20 33 -30v-32c51 30 103 61 147 97 c49 -26 101 -48 154 -68l-1 -37l170 103c49 -24 100 -46 151 -66c6 -28 9 -92 9 -137zM829 264c0 28 -5 53 -14 84c-35 18 -81 33 -120 38c-27 0 -76 -33 -96 -45c-1 -37 -3 -71 -3 -106c0 -26 1 -53 4 -81c1 -23 15 -44 35 -59c32 -25 70 -51 120 -51c9 0 20 7 28 14 c21 17 30 45 35 69c9 45 11 91 11 137'], + 0xE56E: [473,188,659,109,541,'541 398l-80 -59c-34 14 -57 42 -72 51c-17 -9 -50 -33 -58 -43c-4 -18 -6 -41 -6 -58c-1 -55 1 -115 6 -172c23 -20 48 -38 76 -54c4 -3 10 -4 15 -4c6 1 16 0 26 5l76 34l4 -18l-179 -105c-30 28 -65 52 -101 74c-20 -16 -39 -33 -54 -54c-11 -15 -19 -31 -19 -49 c0 -20 12 -37 29 -51c26 -22 83 -31 117 -34v-9l-76 -40c-40 8 -81 19 -111 44c-15 12 -25 29 -25 46c0 25 16 47 31 68c25 34 49 59 82 89c7 42 8 91 8 133c0 54 1 108 -3 161c-11 10 -26 23 -36 28c-4 2 -12 5 -12 5c-4 0 -10 -2 -15 -4c-11 -5 -35 -14 -35 -14l-15 9 c39 34 81 65 125 96c30 -22 75 -57 91 -66l-3 -31l131 89c21 -28 51 -48 83 -67'], + 0xE56F: [524,219,791,151,621,'621 228c0 -80 -9 -174 -36 -251c-15 -46 -139 -145 -222 -196l-45 17c41 17 80 36 113 62c26 22 43 51 55 80c13 32 19 66 23 99c6 50 8 100 8 150c0 56 -6 112 -13 167c-29 15 -64 30 -96 35c-18 0 -70 -28 -108 -51c0 -64 -3 -81 -3 -188c0 -38 19 -66 55 -104 l-90 -75c-21 29 -47 61 -71 79c11 61 13 126 13 203c0 31 0 35 -4 81c-1 8 -4 13 -10 19c-11 12 -21 19 -30 31c-5 6 -9 14 -9 24c0 4 6 19 10 25c25 32 54 62 86 89l17 -4c-11 -14 -19 -29 -19 -46c0 -10 13 -31 22 -45c6 -8 22 -20 33 -30v-32l170 106 c45 -22 89 -44 138 -59c9 -60 13 -130 13 -186'], + 0xE570: [471,215,662,89,474,'474 64c0 -55 -12 -110 -29 -163l-164 -116c-54 0 -106 15 -149 41c-22 14 -39 34 -43 58c8 27 64 91 104 129c51 49 98 89 152 134c-42 16 -85 30 -132 34v11l88 67c19 15 41 33 41 56s-19 45 -40 57c-15 9 -32 16 -48 16c-8 0 -12 -2 -20 -6c-29 -14 -55 -30 -81 -47 l-13 12c54 45 112 87 175 124c29 -12 59 -25 82 -44c12 -9 23 -20 30 -31c6 -8 11 -17 11 -26c0 -13 -7 -26 -18 -36l-97 -87c44 -13 94 -29 134 -49c13 -43 17 -89 17 -134zM385 20c0 37 -5 74 -18 110c-49 -35 -97 -71 -136 -114c-24 -27 -48 -56 -48 -89 c0 -17 12 -31 27 -42c27 -24 66 -39 107 -39c12 0 18 4 27 12c12 10 22 37 27 57c8 35 14 70 14 105'], + 0xE571: [697,27,832,47,796,'796 85l-157 -112c-34 49 -52 98 -69 150l-221 -150c-15 23 -33 45 -52 64c-26 23 -70 40 -107 40c-40 0 -76 -17 -115 -40l-17 11l122 85c72 49 154 106 197 158c37 44 47 107 47 161c0 47 -15 94 -52 128c-36 33 -83 53 -134 53c-35 0 -68 -12 -93 -35 c-17 -15 -28 -38 -28 -60c0 -10 5 -19 12 -27c10 -14 22 -26 34 -37c16 -15 31 -31 43 -48c8 -12 14 -24 14 -38c0 -26 -15 -50 -33 -70c-27 -27 -59 -47 -94 -63l-18 11c20 10 37 23 52 39c11 12 18 26 18 41c0 10 -5 19 -12 27c-10 13 -22 25 -34 37c-28 26 -52 58 -52 96 c0 40 31 70 62 98c26 24 123 82 211 82c50 0 98 -13 135 -46c36 -34 56 -77 56 -124c0 -68 -19 -136 -52 -197l-194 -164c44 0 71 -21 95 -43l52 -48c13 1 103 53 157 85v325c0 42 -3 88 -5 127l138 96l18 -11c-17 -13 -40 -32 -46 -42c-8 -9 -11 -21 -12 -32 c-6 -54 -6 -156 -6 -234c0 -61 2 -121 6 -181c1 -11 2 -23 5 -32c13 -30 28 -61 47 -85c3 -3 6 -4 10 -4c5 0 11 2 15 3c18 7 34 14 50 22'], + 0xE572: [691,27,1030,71,905,'905 494c-40 -14 -76 -26 -111 -48l-98 -63c120 0 192 -65 192 -159c0 -43 -8 -63 -24 -101c-129 -99 -195 -150 -260 -150c-62 0 -122 21 -178 41c-48 18 -96 34 -135 34c-56 0 -110 -22 -156 -48l-13 21l135 73c137 74 157 130 160 158c3 32 7 103 8 150 c0 162 -104 226 -172 226c-43 0 -61 -7 -87 -30c-17 -15 -19 -36 -19 -57c0 -14 19 -38 42 -63c27 -29 55 -64 55 -89c0 -72 -98 -118 -134 -134l-17 11c30 15 70 48 70 81c0 12 -20 39 -48 70c-24 28 -44 52 -44 90c0 40 25 70 55 98c26 24 98 86 200 86 c62 0 127 -56 156 -111c24 23 58 46 87 64c40 24 85 42 134 42c25 0 51 -4 69 -21c12 -10 18 -37 24 -66c8 -34 16 -71 34 -88c6 -5 19 -6 28 -6c16 2 32 6 47 11v-22zM762 455c-12 5 -18 16 -24 26c-8 19 -13 39 -17 59c-4 26 -13 59 -25 70c-14 13 -38 24 -58 24 c-42 0 -65 -13 -87 -35c-19 -20 -36 -51 -45 -76c6 -25 10 -81 10 -124c0 -14 -1 -35 -2 -49l142 49c32 12 60 27 106 56zM795 175c0 42 -17 82 -50 111c-39 37 -91 55 -147 55c-29 0 -59 -5 -86 -16c-4 -41 -15 -81 -36 -118l-128 -90c65 0 126 -21 186 -43 c46 -16 108 -37 139 -37c29 0 56 9 76 27c32 29 46 70 46 111'], + 0xE573: [686,24,720,90,694,'694 568c-38 -17 -85 -36 -128 -41c-29 16 -62 64 -87 101c-14 -4 -26 -11 -35 -21c-17 -20 -18 -38 -18 -47c0 -18 6 -48 14 -68c5 -16 22 -62 22 -93c0 -35 -8 -71 -35 -96c-42 -37 -97 -56 -155 -64l-13 16c31 7 58 22 81 43c17 16 17 45 17 69c0 23 -12 70 -23 107 c-5 19 -10 40 -10 60c0 10 1 20 4 30c-38 -1 -74 -15 -98 -42c-40 -45 -53 -103 -53 -160c0 -84 22 -169 87 -229s155 -87 246 -87c37 0 63 6 79 13l93 47v-20c-46 -35 -105 -71 -157 -102c-29 -6 -59 -8 -89 -8c-96 0 -192 28 -260 89c-33 30 -50 66 -64 106 c-18 48 -22 98 -22 148c0 63 16 125 47 181c56 39 115 75 180 101l35 -16c68 45 147 74 225 101l31 -81c4 -9 5 -12 11 -18c4 -4 11 -5 21 -5c17 0 41 5 54 9v-23'], + 0xE574: [690,27,955,51,834,'834 410c0 -96 -23 -174 -60 -263c-68 -69 -177 -174 -242 -174c-22 0 -85 22 -121 35c-46 17 -82 27 -128 40c-31 8 -62 16 -93 16c-23 0 -43 -10 -61 -22c-23 -15 -40 -36 -55 -58l-18 16c28 51 69 96 117 133c42 0 86 7 123 28c27 15 51 38 51 68c0 28 -15 53 -35 74 c-7 8 -59 67 -59 85c0 16 1 32 10 46c11 19 26 35 43 50c33 31 74 55 116 75l18 -11c-15 -9 -29 -20 -42 -32c-14 -13 -27 -27 -38 -42c-6 -10 -13 -21 -13 -32c0 -14 27 -51 46 -75c22 -28 52 -69 52 -90c0 -30 -18 -56 -40 -77c-32 -31 -83 -54 -121 -69 c47 -9 100 -25 145 -40c49 -16 128 -43 150 -43c23 0 46 1 64 12c20 13 46 49 64 73c17 24 27 52 34 80c8 37 12 74 12 112c0 71 -19 145 -76 197c-73 67 -176 90 -279 90c-90 0 -187 -16 -251 -76c-48 -44 -70 -110 -73 -169l-23 11c0 82 28 157 92 215c33 30 76 55 119 68 c54 16 110 29 166 29c66 0 122 -1 195 -20c47 -12 98 -45 135 -79c52 -48 76 -114 76 -181'], + 0xE575: [686,24,772,117,722,'722 568c-39 -17 -87 -36 -130 -41c-28 15 -61 63 -86 100c-13 -4 -24 -14 -34 -23c-9 -11 -18 -24 -19 -38c0 -20 3 -41 10 -60c16 -45 25 -69 25 -137l111 62c23 -29 51 -55 84 -75v-9l-73 -38l-65 42c-5 3 -11 5 -16 5c-15 0 -29 -6 -41 -15c-7 -27 -25 -50 -46 -70 c-17 -15 -37 -25 -58 -32c-28 -11 -58 -17 -87 -21l-18 16c32 5 60 20 88 37c7 8 12 18 14 28c3 14 4 31 4 45c0 44 -12 87 -25 130c-6 19 -10 38 -10 58c0 10 2 21 5 32c-39 -1 -76 -15 -98 -42c-40 -45 -54 -103 -54 -160c0 -84 22 -169 87 -229c66 -60 156 -87 247 -87 c15 0 30 1 44 2c44 14 96 40 128 58v-20c-49 -37 -102 -70 -157 -102c-29 -5 -59 -8 -89 -8c-96 0 -191 28 -254 84c-34 30 -55 67 -69 107c-18 48 -23 102 -23 152c0 63 16 125 46 181c56 39 115 75 180 101l35 -16c69 45 148 74 226 101l31 -81c4 -9 6 -13 12 -18 c4 -4 13 -5 23 -5c17 0 39 4 52 8v-22'], + 0xE576: [686,155,721,40,705,'705 629c-25 -31 -60 -72 -91 -99c-16 -14 -35 -30 -58 -30c-25 0 -54 11 -79 25c-31 -9 -68 -29 -85 -47c-15 -15 -28 -38 -28 -63c0 -18 8 -36 17 -51c14 -24 30 -49 48 -71l133 117c25 -24 47 -49 59 -80l-47 -59c-13 21 -31 43 -58 43c-19 0 -53 -22 -77 -40l94 -112 c18 -23 23 -59 23 -88c0 -52 -24 -101 -64 -138c-60 -55 -141 -91 -226 -91c-36 0 -68 15 -92 38c-29 25 -34 79 -34 109c0 19 2 37 4 56c2 14 3 29 3 44c0 42 -6 54 -15 62c-6 6 -14 8 -23 8c-25 0 -52 -12 -64 -18l-5 21c63 39 114 54 143 54c11 0 23 -3 31 -12 c15 -17 24 -47 24 -73s0 -39 -7 -65c-5 -21 -8 -42 -8 -64c0 -54 18 -78 31 -90c19 -18 43 -35 70 -35c38 0 72 14 98 38c33 30 47 78 47 119c0 24 -11 47 -25 69c-24 36 -47 72 -73 107c-24 30 -47 61 -66 94c-10 19 -21 39 -21 60c0 33 20 61 42 85c34 37 75 66 120 91 c-38 21 -77 40 -119 55c-27 10 -55 19 -85 19c-28 0 -54 -13 -75 -32c-35 -32 -48 -78 -58 -122l-17 11c6 58 24 117 70 159c38 35 90 53 145 53c32 0 63 -10 92 -21c47 -18 91 -40 134 -64c21 -11 45 -21 70 -21c26 0 65 37 92 63'], + 0xE577: [692,25,904,93,796,'796 303c0 -79 -40 -152 -101 -207l-168 -104c-34 -11 -56 -17 -91 -17c-93 0 -195 33 -251 85c-75 68 -92 164 -92 259c0 37 5 70 15 106c8 28 20 52 33 77c54 36 111 70 177 99l34 -16l122 75l11 -11c-29 -23 -57 -53 -57 -90c0 -26 17 -96 28 -137l56 27 c36 22 85 57 116 86c-52 16 -102 53 -112 93l74 64c13 -24 29 -45 51 -62c18 -13 37 -23 59 -23c15 0 33 7 49 22l5 -23l-192 -154c17 2 33 3 49 3c62 0 105 -23 124 -37c36 -27 61 -70 61 -115zM701 255c0 37 -25 76 -52 99c-37 31 -83 48 -135 48c-18 0 -36 -2 -55 -6 c0 -44 -5 -93 -40 -125c-39 -35 -89 -50 -142 -58l-17 16c32 7 61 27 80 53c14 17 20 45 20 66c0 32 -4 59 -13 88c-10 33 -19 65 -19 97c0 10 1 20 3 31c-36 -2 -66 -11 -92 -36c-44 -42 -59 -103 -59 -161c0 -88 23 -177 91 -239c56 -52 123 -89 202 -89 c56 0 104 7 153 44c57 43 75 113 75 172'], + 0xE578: [667,133,840,18,730,'730 239c0 -87 -7 -175 -46 -255c-56 -47 -139 -117 -180 -117c-29 0 -56 8 -76 26l53 64c12 -22 36 -37 63 -37c13 0 26 3 35 9c10 6 20 23 28 37c13 26 19 62 23 90c6 45 7 90 7 135c0 38 -3 75 -13 111c-8 26 -18 52 -39 70c-26 24 -63 32 -99 32 c-31 0 -64 -11 -90 -29c-31 -23 -49 -36 -79 -68c23 -52 31 -98 31 -122c0 -18 -3 -38 -12 -51c-34 -41 -114 -134 -135 -150c-17 14 -35 26 -52 36c-13 9 -28 16 -45 16c-32 0 -57 -25 -73 -40l-13 14c32 52 86 106 130 106c35 0 75 -30 97 -54c23 25 25 44 26 69 c0 25 -11 63 -26 87c-25 42 -44 85 -64 130c-12 27 -20 54 -20 83c0 42 29 77 57 109c45 50 100 90 158 127c37 -34 85 -60 140 -60c11 0 23 5 31 11c8 4 39 26 62 43l14 -15c-46 -42 -119 -108 -154 -108c-23 0 -45 5 -66 12c-31 9 -71 27 -100 40c-18 -16 -30 -31 -42 -53 c-9 -16 -11 -40 -11 -58c0 -39 32 -103 56 -149c58 55 126 100 198 138c69 0 140 -14 197 -53c17 -57 29 -116 29 -176'], + 0xE579: [686,27,662,61,612,'612 655c-52 -44 -107 -82 -169 -112l-141 47c-21 6 -40 11 -62 11c-33 0 -64 -10 -87 -32c-32 -29 -58 -75 -73 -113l-19 11c14 35 35 78 53 112c12 23 28 49 46 67c29 30 62 40 104 40c46 0 113 -29 168 -53c18 -8 37 -16 58 -16c16 0 37 6 51 13c23 11 42 27 59 41z M592 578c-22 -18 -43 -41 -59 -64c-10 -16 -13 -32 -13 -50c0 -22 2 -54 3 -65c8 -51 14 -106 14 -154c0 -62 -16 -126 -65 -171c-62 -57 -143 -101 -232 -101c-40 0 -75 24 -105 48l-57 -37l-6 16c36 44 119 124 124 128c30 -58 36 -68 49 -81c19 -17 49 -29 75 -29 c33 0 54 12 75 32c18 16 29 46 36 68c10 29 12 59 12 89c0 48 -6 89 -11 127c-5 33 -9 67 -9 95c0 12 1 23 2 34c44 44 97 90 153 122'], + 0xE57A: [686,139,663,14,602,'602 591c-56 -27 -140 -65 -174 -75c-33 6 -60 24 -86 43c-30 21 -61 43 -99 43c-27 0 -52 -10 -70 -25c-27 -22 -47 -52 -64 -81l-17 10c21 48 48 93 86 131c26 26 59 49 99 49c20 0 39 -7 56 -16c26 -13 49 -30 72 -47c15 -12 32 -23 49 -32c12 -6 25 -11 38 -11 c39 0 75 16 110 32v-21zM562 522c-24 -22 -46 -44 -62 -72c-12 -19 -13 -45 -13 -67c0 -36 5 -78 13 -117c14 -60 33 -160 33 -181c0 -59 -31 -113 -76 -154c-43 -41 -100 -70 -162 -70c-39 0 -82 6 -110 32c-24 23 -31 55 -35 85c-3 28 -9 66 -17 80c-9 14 -24 22 -41 22 c-22 0 -55 -9 -73 -20l-5 13c24 18 57 41 85 54c19 9 40 17 63 17c18 0 38 -4 51 -16c18 -16 18 -49 18 -75s2 -52 7 -78c5 -16 11 -35 22 -46c19 -19 48 -32 75 -32c29 0 55 8 74 27c31 27 43 74 43 113c0 53 -14 110 -30 160c-15 52 -30 113 -30 162c0 10 1 20 2 29 c43 54 94 102 151 144'], + 0xE57B: [681,27,780,42,776,'776 60c-24 -22 -57 -50 -87 -66c-18 -11 -38 -21 -61 -21c-22 0 -43 11 -54 27c-18 25 -23 54 -28 85c-5 44 -17 102 -40 122c-17 17 -44 22 -70 22c-34 0 -67 -9 -98 -22c0 -26 -1 -53 -5 -79c-28 -38 -59 -73 -96 -102c-31 -24 -59 -40 -96 -51c-43 3 -76 27 -99 57 l62 66h11c7 -15 17 -30 30 -42c11 -11 29 -20 45 -20c23 0 39 9 48 17c22 20 25 58 25 91c0 50 -13 100 -29 149c-15 43 -35 106 -35 134c0 13 5 28 6 30c24 53 60 99 104 139c60 55 141 85 226 85c34 0 68 -5 100 -17c26 -10 49 -25 63 -47c0 -6 1 -12 1 -18 c0 -33 -8 -67 -19 -99l-17 -5c0 34 -14 67 -40 91c-40 36 -92 48 -152 48c-63 0 -107 -17 -144 -51c-20 -19 -40 -64 -40 -93c0 -34 8 -83 22 -123c38 37 77 71 124 98c31 19 65 35 102 35c18 0 34 -4 47 -16c19 -16 32 -48 42 -75c7 -16 21 -50 62 -50c6 0 16 2 22 5l7 -16 l-183 -76v-1c17 0 36 -4 50 -16c21 -18 31 -61 40 -103c5 -25 12 -60 31 -80c10 -10 23 -19 39 -19c27 0 59 9 81 24zM578 314c-24 13 -35 46 -43 69c-5 16 -22 35 -36 44c-9 6 -27 9 -35 9c-29 0 -58 -13 -80 -30c-31 -22 -49 -49 -69 -79c12 -28 19 -66 24 -97 c43 18 82 32 129 40c37 13 75 28 110 44'], + 0xE57C: [686,27,779,60,729,'729 186c-8 -38 -17 -78 -32 -116c-9 -23 -20 -47 -38 -65c-31 -28 -75 -32 -117 -32c-43 0 -86 9 -128 20c-61 16 -120 37 -179 60c-22 9 -46 16 -70 16c-33 0 -66 -43 -92 -84l-13 15c22 47 42 88 78 127c8 9 30 14 44 16h33c18 5 52 23 67 39c13 15 19 30 19 45 c0 23 -29 76 -49 108c-14 25 -28 51 -39 78c-7 18 -13 36 -13 55c0 23 10 44 21 63c16 26 37 49 61 70c61 57 145 85 232 85c39 0 78 -6 107 -32c21 -19 28 -47 28 -83c0 -11 -1 -22 -2 -33c-2 -19 -2 -47 -2 -55c0 -7 4 -14 9 -19c10 -10 44 -12 64 -12v-18l-128 -30h-3 c-15 0 -44 21 -44 46c0 12 1 32 6 61c1 11 2 21 2 31c0 29 -5 53 -26 72c-25 22 -56 30 -90 30c-43 0 -85 -14 -115 -42c-22 -20 -33 -52 -33 -80c0 -20 4 -37 11 -55c9 -26 23 -54 36 -79c18 -35 45 -90 45 -121c0 -7 -1 -13 -5 -17c-41 -46 -98 -104 -121 -118 c49 -19 110 -40 163 -52c37 -9 76 -16 115 -16c46 0 94 6 128 37c28 26 41 61 52 96'], + 0xE57D: [692,27,1178,37,1151,'1151 554c-45 -21 -86 -48 -121 -80c-14 -26 -22 -54 -26 -82c-8 -38 -9 -77 -9 -115c0 -47 0 -107 11 -139c8 -21 10 -24 26 -40c7 -8 24 -18 33 -18c6 0 40 10 63 21v-19l-157 -109l-62 126l-1 172c0 43 8 86 17 128c24 34 54 64 88 91c-8 1 -17 9 -24 16 c-6 5 -17 35 -23 53c-8 21 -19 51 -30 58c-10 8 -22 11 -35 11c-27 0 -60 -8 -81 -25c-24 -19 -38 -31 -55 -57c7 -31 15 -79 15 -110c0 -106 -25 -211 -69 -308l-134 -150c-21 17 -55 43 -76 43c-9 0 -20 0 -28 -5c-14 -7 -23 -16 -36 -30l-14 14c27 36 73 90 96 101 c5 3 11 3 17 3c8 0 16 -1 23 -3c10 -2 45 -24 63 -35c26 24 34 53 42 83c17 64 17 145 17 218c0 43 -1 85 -9 127c-4 27 -9 53 -26 75c-16 23 -47 32 -75 32c-23 0 -48 -9 -63 -23c-16 -13 -28 -31 -38 -49c7 -28 11 -75 11 -82c0 -113 -15 -227 -79 -325l-185 -149 c-15 15 -33 28 -52 39c-12 8 -26 14 -41 14c-31 0 -56 -20 -75 -42l-12 16c19 28 40 55 67 78c17 14 37 28 61 28c16 0 31 -6 45 -14c17 -9 45 -31 60 -44c19 13 37 28 57 46c28 26 39 69 47 104c14 56 18 112 18 169v41c-1 52 -14 111 -43 148c-30 38 -78 74 -129 74 c-43 0 -64 -8 -85 -23c-14 -11 -23 -34 -23 -43c0 -33 25 -66 41 -83c13 -14 34 -37 44 -54c7 -11 14 -28 14 -38c0 -29 -15 -52 -34 -72c-24 -25 -64 -46 -99 -62l-17 11c20 10 39 26 53 42c11 12 17 24 17 39c0 10 -8 19 -14 27c-10 13 -23 30 -34 43 c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 105 86 199 86c50 0 97 -34 130 -71c14 -16 26 -37 36 -59c3 2 5 5 7 8c16 18 32 36 53 48c38 24 80 43 127 43c25 0 52 -5 70 -21c19 -18 31 -39 39 -62c24 26 53 48 83 67c38 25 80 48 128 48c19 0 39 -8 52 -21 c12 -13 22 -38 29 -59c6 -15 11 -32 23 -43c9 -7 21 -9 32 -9c17 0 34 4 49 9v-15'], + 0xE57E: [686,29,952,49,922,'922 76l-157 -105l-69 133v167c0 40 0 96 7 117c2 8 6 15 11 22c23 28 43 48 71 74c-20 4 -29 15 -35 23c-9 11 -17 33 -24 57c-6 18 -15 35 -30 48c-10 10 -25 16 -40 16c-34 0 -70 -18 -94 -39c-34 -32 -50 -51 -73 -88c8 -42 17 -107 17 -150c0 -78 -8 -159 -47 -229 c-6 -9 -15 -24 -18 -26c-46 -37 -91 -68 -143 -100c-12 -7 -38 -18 -52 -18c-38 0 -73 30 -93 58l61 65h13c5 -13 15 -29 29 -43c12 -11 32 -18 48 -18c31 0 53 20 74 39c20 18 27 44 34 69c10 39 12 78 12 118c0 121 -31 241 -64 284c-30 38 -78 72 -129 72 c-43 0 -66 -4 -90 -25c-14 -11 -19 -25 -19 -46c0 -20 26 -59 42 -76c13 -14 34 -37 44 -54c6 -11 14 -28 14 -38c0 -29 -15 -52 -35 -72c-23 -25 -64 -46 -98 -62l-17 11c19 10 39 26 53 42c11 12 17 24 17 39c0 10 -8 19 -14 27c-10 13 -23 30 -34 43 c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86c50 0 97 -34 130 -71c17 -19 32 -50 43 -81c15 15 50 61 57 71c32 48 101 82 162 82c19 0 36 -1 54 -5c13 -3 25 -7 34 -16c14 -13 23 -34 29 -53c5 -15 14 -40 17 -43c10 -8 21 -15 35 -15c17 0 35 4 49 11v-14 c-32 -21 -66 -44 -96 -67c-10 -8 -20 -19 -22 -32c-13 -57 -18 -116 -18 -175c0 -42 3 -84 15 -125c8 -28 17 -46 40 -67c4 -4 14 -9 20 -9c24 0 51 13 69 22v-22'], + 0xE57F: [729,27,952,34,835,'835 399c0 -59 -6 -118 -26 -174c-14 -42 -36 -84 -73 -113c-48 -40 -99 -76 -157 -103c-41 -20 -86 -36 -133 -36c-60 0 -119 12 -174 32c-19 7 -39 15 -58 21s-38 11 -58 11c-43 0 -81 -21 -105 -53l-17 16c30 37 63 73 99 106c48 15 93 51 93 101c0 15 -6 29 -12 43 c-10 19 -22 36 -35 53l-57 74c-6 10 -13 21 -13 33c0 35 16 67 39 95c29 35 66 63 107 86l23 -11c-21 -14 -40 -30 -56 -50c-10 -13 -20 -29 -20 -46s6 -33 14 -49c10 -24 24 -46 39 -68c22 -34 51 -77 51 -106c0 -26 -12 -49 -27 -70c-21 -30 -53 -56 -82 -79 c13 0 30 -4 42 -8c35 -10 69 -23 102 -35c56 -19 121 -33 182 -33c81 0 144 37 177 105c28 57 36 127 36 189c0 44 -4 88 -18 131c-10 32 -26 63 -52 87c-18 18 -43 28 -70 36c-33 9 -68 12 -103 12l-94 -3c-21 0 -42 3 -61 13c-13 7 -25 18 -25 33c0 40 49 59 75 90h18 c-6 -7 -11 -17 -11 -26c0 -16 21 -23 39 -27c21 -5 93 -10 139 -14c39 -3 76 -9 112 -20c27 -9 54 -22 74 -41c58 -53 76 -128 76 -202'], + 0xE580: [692,219,944,26,896,'783 138c0 16 -9 37 -16 52c-11 21 -24 41 -39 60c-23 30 -52 67 -52 96c0 20 12 38 24 54c19 24 47 45 72 64c-14 3 -32 15 -44 26c-14 12 -16 41 -17 64c-1 22 -4 51 -18 63c-13 13 -34 16 -52 16c-26 0 -49 -5 -70 -18c-47 -30 -73 -61 -105 -106v-387h2l158 -48 c20 -5 51 -12 68 -12c26 0 51 8 68 25c17 14 21 31 21 51zM896 522c-34 -16 -65 -34 -93 -59c-12 -12 -24 -24 -34 -37c-6 -8 -13 -17 -13 -27c0 -29 22 -59 42 -85c22 -31 40 -64 40 -101c0 -69 -36 -132 -93 -176c-33 -25 -71 -48 -116 -48c-11 0 -23 3 -34 6l-129 42 c0 -62 4 -124 12 -186c-6 -5 -69 -47 -104 -70l-23 11c5 12 13 56 17 85c10 62 12 123 12 186c-36 10 -68 17 -87 17c-29 0 -55 -14 -76 -32c-21 -20 -39 -42 -58 -64l-11 21c21 38 43 76 75 107c28 25 65 42 105 42c14 0 33 -3 52 -8v250c0 54 -13 115 -43 154 c-30 38 -78 72 -129 72c-43 0 -70 -7 -91 -25c-14 -12 -20 -25 -20 -46c0 -25 28 -59 44 -76c13 -14 34 -37 44 -54c7 -11 14 -28 14 -38c0 -29 -15 -52 -34 -72c-24 -25 -64 -46 -99 -62l-17 11c20 10 39 26 53 42c11 12 17 24 17 39c0 10 -8 19 -14 27 c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86c50 0 97 -34 130 -71c18 -20 33 -47 42 -74c3 3 5 6 8 8c20 23 40 45 64 64c55 43 118 80 191 80c22 0 44 -7 59 -21c18 -18 24 -59 28 -91c2 -13 5 -30 12 -37c10 -9 22 -13 35 -13 c14 0 28 4 40 8'], + 0xE581: [729,69,950,32,874,'874 -6l-128 -63c-36 10 -71 23 -104 40c-22 11 -44 23 -63 39l-2 -1c-41 -20 -86 -36 -133 -36c-60 0 -119 12 -174 32c-19 7 -38 15 -58 21c-18 6 -38 11 -58 11c-42 0 -80 -21 -104 -53l-18 16c31 37 63 73 99 106c48 15 93 51 93 101c0 15 -5 29 -12 43 c-10 19 -22 36 -35 53c-18 25 -49 63 -56 74c-7 10 -14 21 -14 33c0 35 17 67 40 95c28 35 65 63 107 86l22 -11c-20 -14 -40 -30 -55 -50c-11 -13 -21 -29 -21 -46s7 -33 14 -49c10 -24 24 -46 40 -68c21 -34 51 -77 51 -106c0 -26 -12 -49 -27 -70 c-21 -30 -57 -59 -85 -78c13 0 32 -5 44 -9c35 -10 69 -23 103 -35c55 -19 117 -32 177 -32c81 0 152 41 185 109c28 57 32 122 32 184c0 44 -4 88 -17 131c-11 32 -26 63 -53 87c-18 18 -43 28 -69 36c-34 9 -69 12 -104 12l-94 -3c-20 0 -42 3 -61 13c-13 7 -25 18 -25 33 c0 8 0 21 12 32l64 58h17c-5 -7 -11 -17 -11 -26c0 -4 1 -7 4 -11c9 -9 23 -13 35 -16c21 -5 93 -10 140 -14c38 -3 75 -9 111 -20c27 -9 54 -22 74 -41c58 -53 76 -128 76 -202c0 -103 -23 -225 -99 -287c-18 -15 -37 -30 -56 -44c19 -20 38 -39 62 -54 c16 -10 33 -20 53 -20c30 0 57 12 81 27v-27'], + 0xE582: [686,27,948,47,918,'754 463c-14 1 -29 6 -40 16c-8 7 -15 44 -17 69c-2 19 -8 37 -18 53c-8 16 -26 27 -46 27c-27 0 -56 -10 -75 -28c-27 -24 -48 -50 -72 -88c1 -5 6 -48 6 -61c0 -33 -1 -69 -4 -103c24 11 76 33 126 40zM918 74l-145 -101l-70 117c2 31 4 60 4 89c0 98 -19 117 -32 129 c-23 21 -59 35 -90 35c-26 0 -71 -11 -101 -19c-3 -22 -7 -45 -13 -67c-13 -51 -30 -94 -61 -138c-61 -45 -123 -100 -183 -146c-24 22 -66 53 -88 53c-34 0 -60 -18 -80 -42l-12 16c17 25 37 55 67 78c17 14 36 28 61 28c13 0 36 -7 52 -17c19 -13 35 -26 50 -41 c38 24 69 52 89 90c16 28 21 59 27 90c6 46 10 92 10 139s-1 127 -43 184c-29 39 -78 72 -129 72c-43 0 -61 -7 -86 -30c-17 -15 -19 -35 -19 -57c0 -12 22 -43 38 -60c13 -14 34 -37 44 -54c7 -11 15 -28 15 -38c0 -29 -16 -52 -35 -72c-24 -25 -64 -46 -99 -62l-17 11 c20 10 39 26 53 42c11 12 17 24 17 39c0 10 -7 19 -14 27c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86c50 0 97 -34 130 -71c16 -18 29 -42 39 -67l5 5c17 20 37 41 56 59c46 42 104 74 169 74c24 0 48 -9 63 -26c17 -18 22 -45 24 -69 c2 -16 2 -33 6 -50c4 -14 8 -28 51 -28c14 0 29 2 42 4l7 -13c-31 -11 -65 -27 -95 -41c-38 -18 -95 -47 -133 -75c55 0 82 -15 110 -37c4 -66 8 -170 18 -197c8 -22 16 -43 29 -63c8 -10 16 -22 29 -22c5 0 42 13 64 21v-16'], + 0xE583: [689,27,949,80,844,'844 655c-9 -32 -27 -62 -52 -86c-30 -28 -71 -44 -111 -58c-34 3 -94 35 -138 58c-31 17 -62 32 -95 44c-20 8 -40 15 -62 15c-55 0 -102 -29 -140 -64c-53 -49 -75 -118 -75 -186c0 -98 34 -196 110 -266c61 -57 148 -86 234 -86c70 0 141 5 191 51c35 33 51 84 51 130 c0 37 -12 76 -41 102c-24 22 -58 32 -93 32s-81 -9 -122 -16c-41 -8 -86 -16 -127 -16c-28 0 -56 3 -76 21c-17 16 -29 36 -29 58c0 29 14 55 35 75c24 21 53 37 85 45l14 -13c-14 -4 -25 -12 -35 -21c-13 -13 -17 -31 -17 -48c0 -16 5 -32 17 -43c13 -12 33 -16 53 -16 c24 0 85 13 127 21c46 10 104 22 140 22c42 0 85 -15 115 -43c26 -24 35 -57 35 -90c0 -74 -30 -145 -87 -197c-85 -78 -206 -107 -325 -107c-83 0 -169 20 -229 75c-74 68 -117 164 -117 261s43 186 118 255c73 68 183 106 285 125c57 -28 129 -62 170 -78 c26 -10 52 -20 80 -20c24 0 43 6 60 21s24 38 30 54'], + 0xE584: [703,27,781,51,761,'761 681l-75 -90c-23 -13 -49 -16 -75 -16c-41 0 -99 5 -140 14c-24 -18 -32 -25 -50 -51c-14 -18 -30 -52 -30 -75c0 -13 5 -25 12 -36c8 -16 20 -30 34 -44c22 -23 43 -48 61 -74c10 -17 20 -34 20 -54c0 -25 -15 -47 -31 -66c-27 -33 -61 -60 -95 -86 c47 -20 107 -45 149 -45c24 0 47 9 68 20c28 14 54 34 77 55l12 -16c-30 -32 -62 -62 -97 -89c-27 -22 -57 -41 -88 -55c-48 6 -92 27 -134 48c-31 15 -63 27 -98 27c-21 0 -41 -7 -59 -15c-27 -12 -51 -27 -75 -44l-11 16c41 40 86 77 133 112c11 1 22 1 33 1 c20 0 40 -1 59 -6c23 12 44 28 60 47c12 14 22 30 22 48c0 14 -6 26 -14 37c-11 18 -24 34 -38 49c-33 34 -75 79 -82 111c9 34 25 64 45 93c26 36 55 69 89 99c-57 18 -115 27 -174 27c-49 0 -100 -8 -135 -40c-19 -17 -29 -43 -29 -67c0 -39 32 -71 71 -85l-70 -64 c-35 25 -55 58 -55 98c0 55 44 118 89 156c54 46 120 65 193 65c62 0 124 -9 185 -21c43 -7 87 -16 128 -16c46 0 86 23 115 54v-22'], + 0xE585: [697,27,758,-1,753,'753 80l-157 -107l-73 147l-124 -126c-19 -13 -40 -21 -63 -21c-49 0 -95 16 -140 32c-41 15 -87 32 -127 32c-10 0 -19 -6 -25 -11c-14 -9 -24 -20 -34 -32l-11 17l87 90c26 2 54 28 75 48c29 27 41 64 41 101c0 19 -7 37 -13 54c-11 26 -24 50 -40 74 c-25 40 -57 93 -57 128c0 20 10 39 22 56c18 26 41 49 65 71c26 24 54 47 87 64l11 -16c-17 -11 -32 -24 -46 -37c-27 -24 -47 -56 -47 -90c0 -32 22 -73 40 -107c16 -28 30 -57 40 -86c7 -23 13 -45 13 -68c0 -26 -5 -52 -17 -75l-110 -112c32 0 76 -14 110 -26 c36 -14 88 -32 111 -32c33 0 62 20 86 42c25 23 55 51 64 75c5 16 5 56 5 85c0 116 -2 231 -10 346l138 90l17 -10c-19 -18 -37 -39 -45 -64c-18 -48 -18 -99 -18 -149v-202c0 -22 1 -43 6 -64c8 -38 18 -77 46 -107c8 -7 17 -11 28 -11c26 0 54 15 65 22v-21'], + 0xE586: [686,27,951,49,918,'819 548c-32 0 -60 16 -88 32c-29 18 -61 37 -98 37c-31 0 -72 -36 -72 -36c-30 -27 -54 -59 -72 -95c0 -100 -15 -182 -59 -262l-102 -73c43 -3 75 -22 143 -61c71 -41 125 -58 156 -58c28 0 55 7 76 25c15 15 21 35 25 54c8 32 10 64 10 96c0 24 -3 57 -7 86 c-2 33 -5 67 -5 101c0 23 4 47 12 69zM918 607c-18 -11 -33 -24 -47 -38c-39 -35 -63 -82 -63 -133c0 -34 5 -67 11 -101c7 -39 17 -96 17 -117c0 -31 -8 -62 -23 -90c-12 -22 -25 -42 -47 -57l-127 -85c-15 -11 -38 -13 -58 -13c-32 0 -83 9 -162 53 c-22 12 -120 64 -168 64c-54 0 -100 -27 -134 -64l-12 16c41 43 87 82 139 112c50 0 95 26 122 64c16 22 22 47 26 73c7 37 11 74 11 112c-1 52 -14 110 -43 148c-30 38 -78 72 -129 72c-43 0 -71 -9 -92 -27c-11 -8 -17 -23 -17 -44c0 -24 26 -59 42 -76 c13 -14 34 -37 44 -54c7 -11 14 -28 14 -38c0 -29 -15 -52 -34 -72c-24 -25 -64 -46 -99 -62l-17 11c20 10 39 26 53 42c11 12 17 24 17 39c0 10 -7 19 -14 27c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86c50 0 97 -34 130 -71 c18 -21 37 -60 47 -89c14 22 30 44 60 75c24 25 53 46 85 63c22 12 46 22 71 22c39 0 74 -16 104 -37c41 -27 71 -32 88 -32c10 0 20 2 29 6v-16'], + 0xE587: [686,28,1175,30,1158,'1047 548c-19 0 -55 22 -81 37c-29 17 -59 32 -93 32c-24 0 -46 -10 -64 -23c-28 -21 -46 -38 -66 -64c3 -33 5 -68 5 -103c0 -79 -9 -156 -32 -227c-15 -19 -61 -75 -86 -99c47 0 126 -33 185 -59c18 -7 37 -10 58 -10c35 0 63 15 81 42c12 18 19 45 19 112 c0 39 -3 79 -7 117c-3 29 -6 59 -6 88c0 39 5 63 11 77c3 6 8 12 12 17zM669 362c0 52 -7 104 -31 152c-18 37 -49 75 -90 91c-30 -25 -62 -51 -85 -80c2 -9 8 -38 8 -49c0 -15 -5 -87 -20 -148c-12 -48 -29 -95 -60 -137c-46 -34 -88 -59 -129 -81c49 -35 113 -68 175 -68 c64 0 124 28 169 70c27 24 38 59 47 93c13 51 16 104 16 157zM1158 628l-7 -21c-35 -24 -68 -50 -87 -85c-14 -28 -16 -54 -16 -88c0 -23 2 -45 5 -67c6 -51 11 -103 11 -154c0 -25 -2 -50 -10 -74c-7 -18 -15 -34 -31 -47c-45 -40 -97 -75 -150 -106 c-21 -6 -43 -11 -65 -11c-33 0 -66 7 -97 19c-53 21 -110 43 -163 43c-44 -19 -88 -39 -128 -64c-6 0 -12 -1 -18 -1c-49 0 -98 16 -138 39c-29 17 -68 37 -94 37c-13 0 -37 -8 -50 -16c-23 -14 -42 -26 -62 -43l-16 16c41 43 85 82 135 117h3c51 0 100 20 136 53 c27 25 41 58 51 92c14 43 17 89 18 135c-1 52 -14 111 -44 149s-77 72 -129 72c-43 0 -71 -8 -93 -27c-13 -11 -15 -20 -15 -42c0 -30 26 -61 42 -78c12 -14 33 -37 43 -54c7 -11 15 -28 15 -38c0 -29 -16 -52 -35 -72c-24 -25 -64 -46 -99 -62l-17 11c20 10 39 26 53 42 c11 12 17 24 17 39c0 10 -7 19 -14 27c-9 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 26 70 56 98c26 24 98 86 200 86c50 0 97 -34 129 -71c16 -17 29 -40 39 -64l12 13c46 46 97 85 151 122c57 -30 100 -96 117 -127c34 34 71 67 113 94c25 17 52 33 84 33 c18 0 36 -5 52 -12c25 -9 48 -22 70 -35c19 -12 41 -19 64 -19c14 0 27 3 41 8'], + 0xE588: [689,27,834,52,796,'796 585l-111 -58c-22 9 -41 22 -58 37s-41 38 -47 52c-16 -10 -33 -23 -45 -37c-18 -23 -34 -51 -46 -79c-18 -42 -25 -87 -25 -133h192l-40 -42c-50 6 -102 7 -152 8c0 -41 3 -82 12 -115c12 -47 32 -93 70 -128c26 -24 61 -37 98 -37c43 0 81 21 116 43v-22l-121 -90 c-18 -5 -41 -11 -53 -11c-37 0 -73 14 -99 38c-41 38 -63 90 -75 143l-46 -42c-36 -33 -74 -65 -116 -91c-20 -12 -40 -23 -61 -32c-14 -5 -29 -11 -44 -11c-39 0 -72 24 -93 54l65 69c16 -31 48 -53 86 -53c41 0 79 21 107 47c45 41 61 99 74 155c4 20 5 51 5 83 c-64 0 -127 0 -192 -8l41 42h151c0 36 0 71 -5 107c-6 34 -19 62 -46 87c-19 18 -44 33 -71 33c-35 0 -62 -7 -87 -30c-19 -17 -40 -37 -54 -52l-18 15l161 159c48 -2 97 -16 131 -47c14 -13 24 -30 32 -46c12 -25 19 -51 27 -77c16 31 37 61 63 85c42 38 88 68 142 88 c13 -23 24 -47 37 -69c3 -7 7 -13 13 -19c10 -8 22 -13 35 -13c12 0 31 9 47 16v-19'], + 0xE589: [686,219,958,50,829,'829 341c0 -69 -6 -137 -18 -204c-10 -53 -25 -105 -53 -153c-48 -67 -115 -120 -190 -160c-47 -24 -97 -43 -152 -43c-32 0 -63 6 -92 19c-22 11 -43 28 -53 51l73 71h10c12 -50 63 -93 121 -93c66 0 105 21 147 60c27 24 50 64 68 95c21 41 31 86 38 131 c11 66 14 132 14 199c0 72 -4 144 -29 213c-29 29 -59 59 -99 74c-8 -3 -82 -35 -126 -89c3 -14 4 -30 4 -44c-2 -91 -19 -183 -76 -261l-127 -92c26 -7 58 -21 82 -32c27 -13 57 -25 86 -25c38 0 69 23 93 48l10 -16c-25 -30 -50 -59 -80 -85c-15 -12 -35 -26 -56 -26 c-32 0 -82 23 -116 41c-41 21 -83 34 -109 34c-50 0 -98 -32 -137 -58l-12 15c40 39 90 78 133 113c23 0 56 0 74 -2c20 10 49 32 73 53c27 25 44 58 56 92c13 42 20 86 20 130c0 53 -12 114 -43 154c-30 38 -78 72 -129 72c-43 0 -76 -13 -94 -27c-15 -12 -16 -24 -16 -45 s27 -58 43 -75c13 -14 34 -37 44 -54c7 -11 14 -28 14 -38c0 -29 -15 -52 -35 -72c-23 -25 -64 -46 -98 -62l-17 11c19 10 39 26 53 42c11 12 17 24 17 39c0 10 -8 19 -14 27c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86 c50 0 97 -34 130 -71c18 -21 33 -49 43 -78l6 5c29 27 61 52 94 75c36 27 74 51 115 69c32 -36 74 -64 117 -90c17 -80 17 -170 17 -255'], + 0xE58A: [729,139,715,44,612,'612 197c0 -88 -33 -172 -87 -245c-75 -57 -169 -91 -267 -91c-35 0 -70 3 -104 11c0 25 0 61 -1 74c-2 10 -3 20 -10 27c-8 7 -19 11 -30 11c-12 0 -39 -14 -56 -26l-13 15c25 19 52 35 80 48c23 9 46 16 70 16c17 0 38 0 47 -16c5 -10 5 -42 5 -64c0 -17 0 -39 12 -50 s38 -16 56 -16c50 0 86 15 121 47c27 25 48 64 59 97c14 40 19 82 19 124c0 23 -2 46 -8 68c-6 16 -13 32 -27 44c-36 34 -87 48 -138 48c-35 0 -69 -7 -99 -21l-12 11l47 63c48 3 88 28 122 59c32 30 52 70 52 112c0 14 -6 27 -17 37c-18 15 -41 21 -65 21 c-25 0 -50 -3 -75 -5l-87 -5c-23 0 -47 1 -63 16c-8 7 -12 16 -12 26l75 96h17c-4 -7 -8 -16 -8 -24c0 -7 2 -14 8 -19c18 -15 54 -15 82 -15l63 2c18 0 35 3 53 3c19 0 39 -1 57 -5c14 -3 27 -8 35 -16c18 -16 30 -36 30 -59c0 -50 -25 -97 -65 -133 c-37 -34 -80 -65 -123 -89l6 -2c17 3 43 6 60 6c66 0 136 -17 174 -69c12 -37 17 -74 17 -112'], + 0xE58B: [471,36,603,101,572,'572 83l-134 -110l-46 73l-3 45l-190 -127c-33 32 -65 66 -95 101c-2 30 -3 61 -3 91c0 70 6 141 22 209l185 106c30 -19 65 -33 101 -40l73 34l9 -6c-11 -67 -17 -135 -17 -203l1 -137l40 -45c23 7 34 13 50 22zM389 119l-1 246c-51 0 -104 13 -155 27 c-26 -25 -32 -62 -38 -97c-4 -31 -6 -62 -6 -94c0 -27 1 -53 3 -80c14 -17 43 -44 65 -65c2 -1 5 -1 8 -1c16 0 59 23 124 64'], + 0xE58C: [686,31,619,126,516,'516 313c0 -72 -6 -145 -22 -216c-79 -47 -161 -92 -248 -128c-41 33 -94 77 -120 102c15 73 15 157 15 236l-7 361l18 4l19 -77l8 4l131 87l19 -13l-33 -26c-48 -38 -65 -91 -69 -148l-2 -134l8 -2c49 38 100 77 152 107c42 -22 84 -43 128 -61c2 -32 3 -64 3 -96z M428 227c0 41 0 72 -5 113c-9 12 -35 24 -92 46c-34 -4 -75 -33 -105 -54v-209c35 -33 87 -81 117 -81c17 0 31 11 43 22c18 17 25 39 31 61c9 34 11 68 11 102'], + 0xE58D: [466,29,488,115,428,'428 92l-188 -121c-43 34 -82 73 -119 113c-4 45 -6 89 -6 134c0 29 0 89 13 145l180 103c43 -3 82 -22 118 -44l-57 -79l-10 -3c-36 29 -90 54 -131 54c-19 -30 -23 -99 -23 -148c0 -35 3 -69 8 -99c20 -29 58 -61 92 -89c35 10 77 31 114 51'], + 0xE58E: [612,34,606,50,505,'505 328c0 -31 -2 -61 -4 -79c-4 -48 -8 -96 -28 -140l-204 -143c-54 34 -108 69 -150 115c-2 30 -3 57 -3 85l6 169c46 40 96 83 144 112l21 -4c-51 -50 -63 -77 -71 -97c-10 -23 -14 -56 -14 -92c0 -39 4 -83 7 -119c15 -16 32 -29 49 -41c25 -16 52 -30 79 -43 c3 -1 5 -2 8 -2c6 0 12 3 17 10c30 44 46 95 51 146c3 21 4 41 4 62c0 44 -5 88 -14 132c-42 41 -89 79 -142 109c-36 21 -77 38 -120 38c-9 0 -23 0 -26 -1l-51 -18l-14 16c47 24 102 48 151 69c98 -12 209 -88 300 -157c1 -18 4 -75 4 -127'], + 0xE58F: [467,31,500,112,433,'433 358c-75 -66 -169 -146 -232 -192c0 -9 3 -18 5 -26c4 -14 66 -61 110 -79c4 1 19 1 25 3l80 39l6 -16c-59 -42 -120 -82 -185 -118c-43 37 -87 74 -124 116c-4 34 -6 69 -6 103c0 60 6 119 16 178l177 101c36 -42 80 -78 128 -109zM346 312c-42 24 -83 53 -118 84 l-2 1c-8 0 -15 -22 -17 -28c-10 -32 -11 -123 -11 -176c50 34 106 78 148 119'], + 0xE590: [679,238,426,73,393,'393 388l-13 -37h-115l-5 -206c0 -67 0 -151 -14 -198c-11 -34 -27 -67 -47 -97l-55 -88l-20 7c9 27 21 64 28 90c8 23 13 48 16 72l3 197l-1 223h-97l16 35h80s-10 45 -16 67c-6 25 -14 61 -14 75c0 44 26 81 60 112c15 14 32 27 50 39c46 0 101 -7 136 -40l-52 -92 l-11 -1c-8 17 -19 33 -33 46c-15 12 -33 23 -52 23c-14 0 -31 -3 -42 -12c-10 -10 -13 -22 -13 -35c0 -17 13 -41 23 -59l54 -95c6 -8 8 -17 10 -26h124'], + 0xE591: [470,209,611,52,531,'531 -17c-56 -64 -114 -127 -178 -184c-13 -4 -30 -8 -39 -8c-35 0 -69 9 -100 21c-41 16 -78 38 -112 63l-38 -19l-12 13c49 31 98 68 146 107l-78 89c-3 34 -4 69 -4 103c0 67 5 134 16 200c58 37 116 70 176 102c37 -23 81 -36 125 -45l78 40l7 -6 c-16 -29 -18 -62 -20 -94c-4 -55 -4 -143 -4 -215c0 -14 2 -28 5 -41zM437 -45c0 22 -17 95 -30 142c-73 -47 -144 -99 -212 -152c25 -23 53 -45 84 -60c24 -12 50 -20 77 -20c22 0 43 10 58 24c16 16 23 45 23 66zM415 351c-63 8 -140 21 -192 43c-17 -40 -19 -90 -19 -134 c0 -45 1 -91 5 -136c16 -29 47 -60 74 -83l122 82c0 76 3 153 10 228'], + 0xE592: [689,198,628,116,507,'507 246c0 -54 -2 -109 -7 -162c-5 -39 -10 -78 -22 -115c-49 -66 -112 -119 -178 -167l-18 14l69 55c12 8 21 19 29 31c18 34 25 72 30 109c9 60 11 121 11 182c0 28 -6 107 -11 161c-28 19 -60 36 -96 36c-34 0 -75 -29 -102 -49l-6 -215l59 -77l-89 -75l-60 91 c8 122 12 244 12 366c0 81 -1 163 -7 244l13 2l27 -76l131 88l19 -11c-91 -77 -98 -142 -98 -197l-1 -110l161 107c36 -30 81 -48 127 -61c4 -57 7 -114 7 -171'], + 0xE593: [675,21,375,59,335,'335 83c-42 -37 -88 -72 -134 -104l-59 76c3 53 4 93 4 139c0 58 -1 114 -5 173l-22 24c-12 -4 -32 -12 -46 -22l-14 13c37 28 77 61 114 93c21 -20 41 -39 65 -55c-7 -60 -8 -120 -8 -181c0 -39 1 -79 5 -111c2 -19 21 -40 35 -53c4 0 11 1 14 3c17 7 36 18 44 24z M247 616l-62 -60c-23 19 -44 40 -63 61c22 20 46 37 65 58c20 -21 44 -47 60 -59'], + 0xE594: [673,202,380,38,261,'261 422l-6 -396c-1 -25 -6 -51 -24 -70c-49 -55 -107 -107 -176 -158l-17 18c31 22 63 45 90 71c14 13 23 30 29 47c16 56 19 179 19 269c0 50 0 119 -11 149c-6 17 -27 37 -34 37c-3 0 -9 -3 -9 -3l-32 -19l-15 13l115 95c24 -16 48 -34 71 -53zM247 615l-63 -60 c-20 15 -40 40 -59 61l66 57c18 -21 35 -40 56 -58'], + 0xE595: [686,26,490,65,434,'434 95c-47 -37 -121 -82 -183 -121l-116 95c4 19 6 40 6 58v181h-76l10 35h67c0 227 -1 262 -7 326l18 4c9 -24 20 -80 20 -80c44 32 93 68 141 93l18 -10c-29 -24 -61 -52 -73 -73c-21 -32 -29 -69 -32 -105c46 32 91 57 139 87c18 -16 34 -34 48 -54 c9 -15 17 -31 17 -48c0 -18 -11 -36 -25 -49l-94 -91h104l-16 -35h-173v-180c26 -24 59 -48 90 -68c35 16 72 29 103 50zM353 446c0 13 -7 24 -14 35c-10 14 -24 26 -38 37c-22 -10 -42 -23 -55 -42c-10 -16 -13 -34 -16 -52c-3 -25 -3 -54 -3 -81c38 0 70 13 95 40 c16 18 31 39 31 63'], + 0xE596: [686,20,371,145,341,'341 87l-141 -107l-55 76c7 108 8 217 8 326c0 96 0 191 -6 286l19 4l18 -78l140 92l17 -13c-24 -19 -47 -36 -64 -60c-38 -54 -39 -106 -39 -222l2 -269c10 -14 28 -29 46 -41c15 4 31 14 43 23'], + 0xE597: [475,26,884,29,847,'847 88l-138 -107c-10 19 -42 54 -64 79c7 42 12 75 12 214c0 26 -1 50 -3 68c-1 6 -2 12 -9 15c-30 17 -65 26 -100 34c-25 -12 -48 -24 -71 -38v-218c0 -8 0 -17 4 -22c0 0 33 -45 50 -66l-93 -73c-14 26 -40 52 -59 72c10 39 15 81 15 202c0 33 -1 66 -5 99 c-28 22 -78 35 -115 44l-66 -42v-197c0 -16 0 -40 5 -46l48 -58l-90 -70l-54 80c6 40 8 80 8 119l-4 188l-29 26l-47 -24l-13 12l121 93l55 -52v-44l138 99c42 -23 85 -43 131 -57v-39c48 30 96 61 141 95c42 -21 92 -46 131 -56c-4 -57 -2 -114 -3 -171l-1 -121 c12 -16 25 -33 40 -47c22 7 31 10 51 26'], + 0xE598: [475,23,633,51,599,'599 93l-138 -112l-60 84c7 35 9 81 9 130c0 54 -3 111 -5 163c-32 15 -75 24 -111 27l-70 -44l-5 -207c0 -10 5 -24 8 -28l43 -54l-94 -75c-16 25 -33 48 -54 69c9 46 12 104 12 165l-4 154l-26 23l-38 -20l-15 12l114 90c13 -13 38 -31 59 -45v-58l157 108 c38 -24 79 -43 123 -58c-5 -43 -10 -102 -10 -164l5 -126c9 -13 18 -27 29 -40c3 -4 8 -5 14 -5c0 0 8 3 11 5l34 22'], + 0xE599: [481,28,594,106,485,'485 302c0 -71 -7 -141 -24 -210c-79 -46 -161 -88 -247 -120c-38 30 -77 62 -108 96c0 89 6 198 20 296c66 35 130 75 192 117c49 -30 102 -55 161 -66c4 -38 6 -75 6 -113zM399 356c-50 3 -114 25 -163 45c-15 -22 -21 -35 -30 -72c-8 -30 -11 -75 -11 -118 c0 -33 2 -64 6 -88c19 -21 39 -40 63 -55c20 -12 40 -21 63 -24c6 0 18 13 24 19c25 28 34 67 40 107c8 62 8 89 8 186'], + 0xE59A: [538,214,609,49,505,'505 282l-2 -66c-3 -43 -7 -87 -23 -127l-146 -107c-35 26 -74 48 -118 55l4 -207l-87 -44l-12 7l10 254c-25 0 -50 -7 -70 -23l-12 14c27 23 68 57 83 67v247l-45 56c-3 4 -5 9 -5 14c0 8 3 15 8 22c22 34 51 66 82 94l16 -9c-11 -12 -20 -26 -20 -42 c0 -13 5 -26 13 -38c10 -16 23 -30 37 -43l-2 -34c53 33 104 69 155 106c38 -28 83 -48 128 -64c3 -44 6 -88 6 -132zM416 230c0 41 -2 82 -6 123c-27 13 -71 28 -104 38c-32 -11 -60 -27 -89 -44v-241c44 0 118 -30 172 -54c17 30 27 83 27 178'], + 0xE59B: [480,224,595,99,490,'490 473c-16 -85 -21 -220 -21 -332c0 -107 0 -215 8 -320l-90 -45l-13 10l9 307c-61 -46 -123 -84 -189 -122l-92 94c-2 29 -3 57 -3 86c0 73 7 147 25 218c62 31 125 63 180 104c31 -18 65 -34 101 -41l76 48zM388 367c-56 3 -110 16 -164 31c-15 -25 -23 -54 -28 -82 c-8 -38 -11 -77 -11 -116c0 -19 0 -53 1 -56c0 -7 1 -14 7 -19c24 -22 55 -54 80 -75c25 13 75 48 110 71c0 80 0 166 5 246'], + 0xE59C: [474,21,489,54,468,'468 400l-65 -55c-10 -8 -23 -10 -36 -10s-26 5 -36 11c-18 10 -39 25 -54 38c-18 -12 -34 -25 -41 -34v-198c0 -16 11 -29 21 -41c17 -19 37 -36 59 -51l97 42l2 -19l-159 -104c-41 29 -77 62 -113 96c7 59 7 109 7 170l-1 77c-2 32 -9 43 -9 43c-10 8 -21 15 -32 22 l-41 -16l-13 10l110 93c23 -21 47 -41 72 -60v-32l119 87c11 -18 24 -36 39 -52c9 -9 20 -19 33 -19c12 0 31 10 41 15v-13'], + 0xE59D: [479,30,548,8,483,'483 441l-101 -78c-78 4 -137 27 -165 52c-22 -19 -22 -56 -22 -79c0 -25 2 -50 13 -73c4 -9 10 -21 22 -21c6 0 13 0 18 2l134 56c24 -7 43 -22 61 -38c2 -26 4 -52 4 -77c0 -46 -5 -91 -18 -135c-59 -24 -119 -49 -174 -80c-24 21 -50 41 -80 57c-18 10 -38 20 -60 20 c-32 0 -62 -16 -96 -44l-11 9c17 16 57 55 81 76c20 17 47 23 73 23c28 0 55 -8 79 -22l88 -54l4 -1c7 0 13 5 17 14c9 30 12 61 12 92c0 25 -4 63 -15 74c-15 17 -29 22 -42 22c-16 0 -24 -3 -38 -10l-111 -58c-17 19 -34 45 -47 67c0 49 1 97 6 142l166 102l89 -46 c8 -4 17 -6 28 -6c25 0 50 13 78 30'], + 0xE59E: [641,21,430,67,420,'420 78l-150 -99l-106 83l2 289h-99l18 35h79v172l124 83l15 -14l-30 -26c-5 -5 -8 -12 -9 -19c-12 -64 -13 -131 -13 -196h117l-18 -35h-98l1 -228c22 -18 48 -39 68 -50c6 -3 12 -5 19 -5c16 0 40 9 76 32'], + 0xE59F: [474,26,624,41,593,'593 88c-46 -34 -91 -69 -133 -106l-9 2c-21 32 -42 67 -56 103c-73 -45 -166 -113 -166 -113c-29 17 -96 62 -137 74c15 22 23 51 30 79c10 45 16 91 16 137c0 28 0 55 -7 82c-7 18 -16 37 -32 50l-41 -20l-17 10l121 88c18 -19 35 -38 57 -53c0 -22 1 -43 1 -65l-2 -92 c-2 -54 -10 -108 -26 -160l110 -48l96 59c3 50 4 100 4 149l-3 160l92 44l8 -6c-11 -79 -14 -158 -14 -237c0 -32 2 -64 6 -94c3 -14 9 -28 19 -40c4 -5 11 -8 18 -8c12 0 47 15 58 20'], + 0xE5A0: [533,28,618,90,512,'512 245c0 -37 -16 -119 -34 -159l-235 -114c-34 33 -73 65 -112 94c5 55 8 101 8 165c0 31 -2 69 -5 114c0 8 -4 13 -9 19c-10 12 -19 18 -28 30c-4 8 -7 16 -7 24c0 6 5 20 8 26c23 32 49 62 79 89l15 -4c-10 -14 -17 -29 -17 -46c0 -10 12 -31 20 -45 c6 -8 20 -20 30 -30v-34l156 103c39 -24 80 -45 125 -61c6 -66 6 -100 6 -171zM426 243c0 38 -4 77 -9 115c-26 21 -59 32 -93 38c-31 -2 -69 -27 -99 -48l-4 -193c0 -25 16 -47 37 -62c0 0 28 -19 41 -29c13 -8 29 -15 46 -15c14 0 26 9 36 19c12 11 19 25 26 40 c14 40 19 99 19 135'], + 0xE5A1: [533,28,893,71,778,'778 268c0 -93 -21 -133 -44 -196l-204 -100c-48 27 -97 52 -146 74c5 59 8 118 8 176c0 40 -1 80 -5 119c-25 16 -61 37 -76 44c-8 3 -18 7 -26 7c-5 0 -14 -2 -19 -5c-22 -12 -41 -25 -62 -39l-1 -190c0 -24 6 -49 21 -70c9 -14 20 -29 30 -40l-82 -75 c-18 29 -38 57 -64 79c9 51 11 103 11 155c0 46 0 92 -4 138c-1 8 -4 13 -9 19c-10 12 -19 18 -27 30c-5 8 -8 16 -8 24c0 6 5 20 9 26c22 32 49 62 78 89l15 -4c-10 -14 -17 -29 -17 -46c0 -10 12 -31 21 -45c5 -8 19 -20 29 -30v-32c47 30 94 61 134 97 c45 -26 92 -48 140 -68l-2 -37l155 103c45 -24 91 -46 138 -66c5 -28 7 -92 7 -137zM688 264c0 28 -5 53 -13 84c-32 18 -74 33 -109 38c-25 0 -69 -33 -87 -45c-1 -37 -3 -71 -3 -106c0 -26 1 -53 4 -81c1 -23 13 -44 31 -59c30 -25 64 -51 109 -51c9 0 19 7 26 14 c19 17 28 45 32 69c8 45 10 91 10 137'], + 0xE5A2: [473,188,489,50,443,'443 398l-74 -59c-31 14 -51 42 -65 51c-16 -9 -45 -33 -52 -43c-4 -18 -6 -41 -6 -58c-1 -55 1 -115 5 -172c21 -20 44 -38 69 -54c4 -3 10 -4 14 -4c6 1 15 0 24 5l69 34l3 -18l-162 -105c-27 28 -59 52 -92 74c-18 -16 -36 -33 -49 -54c-10 -15 -17 -31 -17 -49 c0 -20 11 -37 26 -51c24 -22 75 -31 107 -34v-9l-70 -40c-36 8 -73 19 -100 44c-14 12 -23 29 -23 46c0 25 14 47 28 68c23 34 45 59 74 89c7 42 8 91 8 133c0 54 1 108 -3 161c-10 10 -23 23 -33 28c-3 2 -11 5 -11 5c-3 0 -9 -2 -13 -4c-10 -5 -32 -14 -32 -14l-14 9 c36 34 74 65 114 96c27 -22 68 -57 82 -66l-2 -31l119 89c19 -28 46 -48 76 -67'], + 0xE5A3: [524,219,605,84,511,'511 228c0 -80 -9 -174 -33 -251c-14 -46 -127 -145 -202 -196l-41 17c37 17 73 36 102 62c24 22 40 51 50 80c12 32 18 66 21 99c6 50 8 100 8 150c0 56 -6 112 -12 167c-26 15 -58 30 -87 35c-17 0 -64 -28 -98 -51c0 -64 -3 -81 -3 -188c0 -38 17 -66 50 -104l-82 -75 c-19 29 -42 61 -65 79c11 61 12 126 12 203c0 31 0 35 -3 81c-1 8 -4 13 -9 19c-10 12 -19 19 -28 31c-4 6 -7 14 -7 24c0 4 5 19 8 25c23 32 49 62 79 89l15 -4c-10 -14 -18 -29 -18 -46c0 -10 12 -31 21 -45c6 -8 20 -20 30 -30v-32l154 106c41 -22 81 -44 126 -59 c7 -60 12 -130 12 -186'], + 0xE5A4: [471,215,495,35,384,'384 64c0 -55 -10 -110 -26 -163l-149 -116c-49 0 -96 15 -135 41c-20 14 -35 34 -39 58c7 27 58 91 94 129c47 49 90 89 139 134c-38 16 -78 30 -120 34v11l79 67c18 15 38 33 38 56s-17 45 -37 57c-13 9 -29 16 -43 16c-7 0 -11 -2 -19 -6c-26 -14 -50 -30 -73 -47 l-12 12c49 45 102 87 160 124c26 -12 53 -25 74 -44c11 -9 20 -20 27 -31c5 -8 10 -17 10 -26c0 -13 -7 -26 -17 -36l-88 -87c40 -13 86 -29 122 -49c12 -43 15 -89 15 -134zM304 20c0 37 -5 74 -17 110c-44 -35 -88 -71 -123 -114c-22 -27 -43 -56 -43 -89 c0 -17 11 -31 24 -42c25 -24 60 -39 97 -39c11 0 17 4 25 12c10 10 19 37 24 57c7 35 13 70 13 105'], + 0xE5A5: [475,21,528,114,419,'419 83c-47 -37 -98 -72 -148 -104l-65 76c3 53 4 93 4 139c0 58 -1 114 -5 173l-25 24c-13 -4 -35 -12 -51 -22l-15 13c41 28 85 61 126 93c23 -20 45 -39 72 -55c-9 -60 -10 -120 -10 -181c0 -39 1 -79 6 -111c2 -19 23 -40 39 -53c4 0 12 1 15 3c18 7 40 18 48 24'], + 0xE5A6: [475,202,530,86,332,'332 422l-7 -396c-1 -25 -6 -51 -26 -70c-54 -55 -118 -107 -194 -158l-19 18c35 22 70 45 100 71c15 13 25 30 31 47c19 56 22 179 22 269c0 50 0 119 -12 149c-7 17 -31 37 -38 37c-3 0 -10 -3 -10 -3l-35 -19l-17 13l127 95c26 -16 52 -34 78 -53'], + 0xE5A7: [475,21,375,59,335,'335 83c-42 -37 -88 -72 -134 -104l-59 76c3 53 4 93 4 139c0 58 -1 114 -5 173l-22 24c-12 -4 -32 -12 -46 -22l-14 13c37 28 77 61 114 93c21 -20 41 -39 65 -55c-7 -60 -8 -120 -8 -181c0 -39 1 -79 5 -111c2 -19 21 -40 35 -53c4 0 11 1 14 3c17 7 36 18 44 24'], + 0xE5A8: [475,202,380,38,261,'261 422l-6 -396c-1 -25 -6 -51 -24 -70c-49 -55 -107 -107 -176 -158l-17 18c31 22 63 45 90 71c14 13 23 30 29 47c16 56 19 179 19 269c0 50 0 119 -11 149c-6 17 -27 37 -34 37c-3 0 -9 -3 -9 -3l-32 -19l-15 13l115 95c24 -16 48 -34 71 -53'], + 0xE5A9: [475,21,279,14,268,'268 83c-39 -37 -81 -72 -123 -104l-54 76c3 53 3 93 3 139l-4 173l-21 24c-11 -4 -29 -12 -42 -22l-13 13c34 28 71 61 105 93c19 -20 38 -39 60 -55c-7 -60 -8 -120 -8 -181c0 -39 1 -79 5 -111c2 -19 19 -40 32 -53c4 0 10 1 13 3c15 7 33 18 40 24'], + 0xE5AA: [475,202,280,-9,196,'196 422l-6 -396c-1 -25 -5 -51 -22 -70c-45 -55 -98 -107 -161 -158l-16 18c29 22 58 45 83 71c13 13 21 30 26 47c16 56 18 179 18 269c0 50 0 119 -10 149c-6 17 -25 37 -32 37l-8 -3l-29 -19l-14 13l106 95c22 -16 43 -34 65 -53'], + 0xE5AB: [688,31,1141,137,1015,'1015 77c-59 -35 -115 -73 -175 -106l-13 3l-81 150l-255 -155c-30 29 -61 57 -99 80c-23 14 -47 24 -77 24c-37 0 -102 -23 -146 -42l-24 17l220 128c29 17 57 36 83 56c76 59 110 141 110 223c0 49 -30 95 -75 130c-31 24 -77 39 -123 39c-39 0 -64 -7 -86 -24 c-18 -14 -24 -35 -24 -54c0 -12 7 -23 14 -33c13 -15 27 -28 42 -41c18 -14 36 -28 49 -45c9 -10 16 -20 16 -32c0 -30 -24 -56 -50 -77c-36 -27 -77 -50 -121 -69l-21 15c21 11 39 24 56 40c10 11 20 23 20 37c0 16 -33 48 -57 70c-17 16 -32 33 -46 52 c-7 13 -15 26 -15 40c0 28 18 56 51 83c56 47 188 102 268 102c64 0 128 -15 174 -50c42 -33 65 -77 65 -123c0 -69 -28 -136 -66 -198l-213 -158c28 0 55 -9 80 -21c34 -16 63 -37 90 -59c40 9 106 46 156 74v429l191 105l16 -13l-56 -51c-9 -49 -10 -215 -10 -323 c0 -40 2 -81 5 -121l63 -101l58 21'], + 0xE5AC: [685,31,1357,167,1164,'1164 491l-224 -103v-5c161 -17 211 -80 211 -167c0 -45 -17 -79 -49 -116l-190 -111c-28 -13 -68 -20 -106 -20c-144 0 -260 72 -400 72c-70 0 -134 -20 -194 -50l-15 24l165 83c41 22 83 45 119 73c63 50 64 116 64 184c0 37 0 76 -8 112c-16 70 -77 160 -169 160 c-49 0 -90 -31 -90 -71c0 -44 126 -112 126 -160c0 -55 -124 -117 -193 -150l-22 13l7 4c36 21 85 49 85 83c0 40 -114 92 -114 163c0 29 44 69 77 95c64 50 142 81 226 81c88 0 156 -49 190 -108c77 49 171 108 267 108c24 0 48 -4 67 -18c38 -29 36 -162 103 -162 c23 0 45 4 67 10v-24zM1015 144c0 116 -99 183 -228 183c-36 0 -71 -4 -106 -11c-4 -25 -15 -51 -26 -75l-159 -104c91 -2 180 -23 265 -49c55 -17 114 -34 169 -34c71 0 85 50 85 90zM961 433c-24 12 -42 26 -46 45c-12 24 -9 141 -85 141c-63 0 -113 -43 -152 -99 c7 -30 8 -58 8 -101l-2 -73c91 19 191 46 277 87'], + 0xE5AD: [677,32,1005,183,907,'907 553c-30 -11 -116 -40 -154 -40c-48 0 -87 60 -110 98c-35 -7 -46 -33 -46 -56c0 -40 44 -107 44 -160c0 -32 -7 -66 -37 -89c-49 -38 -121 -59 -188 -79l-13 -4l-22 14c55 14 110 61 110 104c0 67 -39 137 -39 192c0 9 1 16 4 22c-107 -8 -132 -108 -132 -184 c0 -88 30 -177 111 -240c69 -53 161 -86 257 -86c24 0 50 1 69 9l127 54l5 -27l-183 -103c-31 -6 -62 -10 -94 -10c-112 0 -227 20 -306 82c-87 67 -127 162 -127 256c0 62 20 123 52 179c23 16 136 77 214 108l28 -25c90 52 190 93 301 109c10 -39 29 -105 88 -105 c9 0 29 3 41 6v-25'], + 0xE5AE: [685,29,1289,138,1091,'1091 372c0 -76 -31 -160 -86 -231c-89 -68 -170 -117 -274 -170c-52 0 -111 18 -164 34c-86 26 -193 58 -263 58c-65 0 -110 -41 -146 -77l-19 19c46 58 108 108 171 156c75 0 188 1 188 71c0 51 -116 113 -116 164c0 63 107 119 177 153l24 -11 c-30 -22 -68 -52 -68 -75c0 -50 118 -111 118 -174s-95 -109 -177 -137c65 -10 189 -40 287 -64c27 -7 57 -13 87 -13c93 0 133 118 133 203c0 87 -28 173 -108 235c-85 65 -218 84 -337 84c-98 0 -201 -17 -271 -71c-56 -43 -78 -101 -81 -161l-28 7c0 85 35 169 114 230 c87 67 237 83 362 83c138 0 279 -26 376 -101c73 -57 101 -134 101 -212'], + 0xE5AF: [687,29,1070,185,911,'911 584l-3 -27l-144 -40c-4 -1 -8 -1 -12 -1c-16 0 -33 14 -43 26l-65 76c-21 -12 -40 -28 -40 -48c0 -61 42 -130 42 -189l134 80c22 -36 49 -65 90 -89v-12l-98 -55c-14 7 -28 13 -49 26l-39 25c-5 3 -11 6 -17 6c-10 0 -17 -4 -25 -9c-34 -63 -146 -104 -232 -127 l-24 14c48 17 108 52 108 93c0 30 -5 63 -15 94c-11 33 -27 69 -27 102c0 13 2 26 6 38c-96 -18 -138 -129 -138 -196c0 -164 162 -317 359 -317c78 0 152 23 215 58v-27l-171 -103c-42 -7 -85 -11 -127 -11c-104 0 -210 24 -285 81c-87 67 -126 159 -126 253 c0 61 13 122 45 178c66 43 139 81 213 116l47 -18c87 47 185 80 286 106l2 -7c12 -38 35 -103 82 -103c15 0 37 4 51 7'], + 0xE5B0: [684,147,1003,124,912,'912 626c-50 -45 -128 -114 -166 -140c-44 2 -93 13 -134 24c-51 -14 -107 -40 -107 -87c0 -42 44 -88 82 -124l165 119c34 -25 54 -57 76 -94l-74 -60c-21 28 -37 49 -74 49c-23 0 -52 -17 -73 -33c58 -55 136 -131 136 -189c0 -156 -227 -238 -342 -238 c-42 0 -88 7 -118 30c-34 26 -43 66 -43 103c0 44 16 77 16 130c0 26 -19 53 -58 53c-18 0 -49 -13 -70 -23l-4 23c60 31 126 61 198 61c38 0 69 -25 69 -54c0 -60 -27 -110 -27 -192c0 -46 27 -91 94 -91c64 0 162 32 162 142c0 36 -49 91 -93 135l-22 22 c-49 51 -114 124 -114 168c0 66 102 127 181 162c-75 32 -179 74 -236 74c-89 0 -122 -75 -138 -131l-28 16c26 101 97 203 253 203c52 0 142 -27 206 -52l22 -9c47 -18 110 -42 137 -42c28 0 77 36 111 61'], + 0xE5B1: [692,27,1229,186,1033,'1033 291c0 -95 -69 -176 -175 -227l-164 -82c-39 -5 -75 -9 -106 -9c-264 0 -402 173 -402 345c0 61 12 126 53 178c68 39 137 72 205 100l38 -12c49 30 103 56 159 78l24 -12c-47 -18 -85 -60 -85 -100c0 -29 19 -97 34 -144l73 34l125 86c-58 9 -110 29 -131 86 l124 80c17 -56 54 -80 115 -80c13 0 47 8 72 19l3 -24c-80 -49 -151 -96 -225 -149c132 0 263 -53 263 -167zM895 216c0 94 -79 173 -203 173c-25 0 -49 -1 -74 -9c2 -11 3 -23 3 -35c0 -74 -68 -92 -151 -118l-42 -13l-12 18c37 13 73 38 73 79c0 13 -12 70 -23 102 c-17 50 -23 80 -23 100c0 19 1 39 14 55c-95 -7 -142 -99 -142 -177c0 -180 164 -342 375 -342c130 0 205 69 205 167'], + 0xE5B2: [684,127,1145,105,933,'933 242c0 -87 -16 -173 -56 -254l-176 -100c-15 -8 -33 -15 -51 -15c-42 0 -80 17 -107 40l65 70l17 1c7 -14 18 -28 32 -38c11 -8 24 -15 40 -15c23 0 41 8 57 20c41 31 41 150 41 227c0 34 -4 138 -50 172c-28 22 -67 38 -108 38c-25 0 -50 -2 -73 -9 c-20 -7 -48 -19 -89 -48c26 -40 50 -94 50 -126c0 -27 -7 -58 -30 -78l-183 -145c-18 15 -38 29 -58 40c-15 7 -30 14 -48 14c-36 0 -73 -30 -83 -39l-18 18c52 47 128 117 176 117c46 0 84 -29 109 -56c19 20 32 40 32 64c0 34 -45 101 -79 149c-36 48 -67 100 -67 156 c0 25 15 48 31 69c27 33 59 62 93 90c36 30 83 55 127 80c23 -18 49 -35 76 -48c19 -9 40 -17 62 -17c38 0 97 34 123 51l14 -18c-38 -32 -98 -80 -152 -111c-17 -4 -35 -7 -52 -7c-65 0 -122 27 -173 56c-22 -18 -41 -40 -41 -65c0 -23 7 -45 17 -66c15 -35 37 -71 58 -102 c62 43 138 88 206 122c70 0 163 -23 205 -45c11 -5 33 -29 37 -40c22 -58 26 -91 26 -152'], + 0xE5B3: [683,25,929,139,790,'790 655c-67 -48 -146 -98 -225 -133l-121 36c-36 9 -73 18 -111 18c-35 0 -74 -12 -99 -31c-30 -23 -51 -53 -71 -82h-7l-17 14c21 37 43 73 68 108c17 22 34 44 57 61c34 24 78 37 122 37c41 0 97 -19 145 -34c39 -13 101 -33 122 -33s37 5 56 13c25 11 49 26 71 41z M773 568c-27 -17 -43 -31 -62 -53c-13 -16 -25 -40 -25 -60c0 -24 0 -54 3 -72c9 -48 17 -97 17 -145c0 -60 -27 -122 -83 -165c-71 -56 -156 -98 -259 -98c-53 0 -102 21 -141 47l-69 -38l-7 18c51 48 115 96 175 138c25 -42 41 -67 81 -97c14 -11 34 -15 54 -15 c26 0 46 8 65 21c16 13 27 38 34 56c9 25 9 51 9 77c0 10 -9 75 -13 112c-4 26 -6 52 -6 77c0 21 1 42 4 62c57 55 122 104 195 145'], + 0xE5B4: [681,142,927,96,782,'782 586c-75 -33 -163 -64 -246 -85c-31 12 -76 37 -82 41c-40 19 -82 37 -129 37c-26 0 -57 -7 -75 -21c-24 -18 -39 -40 -55 -62l-20 14c29 46 61 91 108 127c33 26 77 44 125 44c18 0 35 -7 50 -14c26 -11 51 -24 75 -38c23 -14 47 -28 73 -39c15 -6 31 -11 49 -11 c35 0 85 16 127 30v-23zM734 517c-50 -40 -90 -88 -91 -145c0 -44 8 -87 22 -129c16 -52 33 -105 33 -159c0 -56 -23 -111 -75 -151c-57 -44 -132 -75 -213 -75c-41 0 -85 3 -115 26c-33 25 -47 59 -53 94c-5 29 -13 73 -26 83c-12 9 -28 15 -46 15c-22 0 -44 -8 -64 -17 l-10 18c33 20 68 39 107 53c29 11 59 19 91 19c22 0 45 -5 62 -18c11 -8 13 -21 14 -33c1 -6 1 -67 1 -100s12 -65 42 -88c13 -10 31 -17 48 -17c29 0 55 7 75 23c29 22 35 59 35 90c0 47 -19 111 -38 165c-16 46 -28 93 -28 140c0 17 2 34 6 51c55 62 120 117 196 164'], + 0xE5B5: [682,26,1077,127,999,'999 69c-34 -26 -70 -51 -111 -71c-25 -12 -53 -24 -82 -24c-19 0 -40 1 -53 11c-36 29 -49 69 -56 108c-2 11 -13 72 -41 108c-9 11 -32 29 -80 29c-38 0 -77 -11 -108 -24c2 -13 3 -25 3 -37c0 -14 -2 -28 -7 -45c-47 -46 -103 -93 -165 -127c-15 -8 -30 -14 -43 -19 c-42 0 -80 14 -103 30c-3 2 -17 15 -26 24l95 85h15c9 -20 19 -39 39 -54c9 -8 23 -17 38 -17c11 0 24 2 32 8c16 14 20 33 20 53c0 34 -27 91 -45 133c-26 55 -49 111 -49 169c0 30 14 59 33 85c25 35 59 65 95 93c76 59 178 95 286 95c128 0 171 -35 201 -64 c2 -10 3 -19 3 -30c0 -22 -5 -50 -24 -98l-22 -6c-8 39 -27 58 -54 79c-50 39 -123 62 -193 62c-60 0 -119 -15 -162 -48c-30 -24 -42 -57 -42 -90c0 -43 11 -84 25 -125c46 39 94 75 151 104c40 19 84 36 131 36c24 0 48 -4 66 -17c18 -15 31 -44 41 -68 c6 -18 13 -35 24 -44c7 -6 18 -10 29 -10c13 0 26 0 50 6l6 -21l-216 -65c87 -15 105 -46 119 -126c8 -41 30 -67 49 -79c14 -8 32 -11 50 -11c27 0 52 11 74 24zM717 312c-14 9 -32 36 -39 55c-4 17 -13 35 -30 47c-12 9 -26 18 -42 18c-41 0 -80 -15 -107 -37 c-27 -20 -48 -52 -64 -81c9 -26 18 -58 25 -84c35 14 113 46 196 59'], + 0xE5B6: [684,28,1074,138,945,'945 200c-11 -40 -24 -81 -43 -119c-12 -24 -24 -48 -47 -66c-33 -25 -76 -43 -123 -43c-102 0 -200 23 -294 53c-54 17 -131 41 -166 41c-21 0 -42 -6 -57 -17c-13 -11 -41 -44 -59 -67l-18 13c31 59 72 115 129 161c11 6 27 9 45 9c8 0 16 0 24 -2c16 4 40 12 52 21 c16 12 22 30 22 47c0 22 -41 78 -67 115c-23 32 -42 67 -42 104c0 25 12 50 28 72c21 30 50 57 82 81c73 57 178 81 281 81c44 0 91 -5 122 -29c15 -12 19 -27 22 -43c5 -23 4 -47 0 -70c-2 -13 -3 -21 -3 -34c0 -17 10 -31 27 -42c7 -5 49 -5 69 -5v-18l-189 -49 c-11 0 -23 1 -32 7c-14 12 -23 27 -23 43c0 14 4 26 6 40c3 17 6 48 6 52c0 23 -9 46 -30 62c-27 21 -66 30 -104 30c-36 0 -72 -8 -97 -27c-27 -21 -39 -49 -39 -78c0 -40 20 -78 41 -115c15 -26 29 -53 37 -82c5 -15 9 -31 9 -47c0 -5 -1 -17 -6 -22 c-25 -29 -74 -72 -127 -104l168 -47c62 -17 128 -24 194 -24c46 0 92 11 125 37c32 24 47 58 56 92'], + 0xE5B7: [686,33,1572,134,1460,'1460 548c-53 -25 -80 -41 -127 -72c-6 -4 -28 -28 -31 -39c-10 -36 -10 -61 -10 -97c0 -55 2 -110 15 -164c5 -19 11 -37 20 -55c7 -13 11 -18 23 -27c8 -6 22 -9 33 -9c10 0 45 2 67 9v-18l-197 -109l-88 111c0 105 1 237 7 289c37 48 69 77 111 103 c-13 3 -20 5 -29 17c-9 14 -24 40 -34 62c-7 18 -17 36 -32 48c-10 8 -25 15 -40 15c-27 0 -54 -5 -76 -16c-28 -14 -44 -26 -66 -45c5 -28 9 -72 9 -101c0 -107 -16 -216 -76 -313l-187 -165c-14 12 -31 24 -50 33c-12 6 -25 12 -40 12c-20 0 -40 -5 -54 -16l-18 -14 l-19 15c28 28 73 71 86 82c21 17 49 33 81 33c27 0 62 -24 84 -41c30 34 40 72 50 112c14 59 15 124 15 183c0 40 -3 80 -16 119c-10 27 -23 54 -49 74c-15 12 -35 23 -57 23c-17 0 -31 -4 -45 -10c-18 -9 -35 -21 -55 -35c9 -31 15 -62 15 -94c0 -107 -37 -221 -95 -318 l-241 -155c-15 15 -31 29 -50 39c-15 8 -32 14 -49 14c-22 0 -43 -5 -60 -17c-11 -8 -26 -20 -33 -26l-16 15c32 32 72 72 100 92c25 20 59 31 94 31c18 0 34 -7 47 -15c19 -11 38 -28 53 -44c15 10 28 19 38 28c30 25 43 60 55 95c17 51 22 104 22 157c0 46 -4 94 -20 139 c-12 32 -29 66 -60 90c-34 27 -77 46 -128 46c-23 0 -56 -1 -74 -15c-14 -11 -25 -23 -25 -39c0 -17 40 -59 67 -85c47 -43 64 -67 64 -84c0 -29 -23 -55 -49 -76c-39 -29 -82 -51 -128 -72l-20 17c23 10 42 20 58 35c11 11 22 24 22 38c0 20 -30 54 -55 76 c-28 26 -63 63 -63 89c0 18 13 35 25 51c20 24 45 45 71 65c59 45 151 67 207 67c53 0 115 -15 153 -44c26 -20 51 -47 64 -74c33 23 68 44 108 59c28 11 60 20 93 20c39 0 75 -12 103 -32c14 -12 25 -25 36 -38c39 30 83 58 133 78c39 16 81 28 126 28c17 0 35 -2 48 -12 c11 -9 27 -37 37 -55c9 -16 19 -32 34 -44c10 -9 23 -14 38 -14c17 0 33 3 50 8v-18'], + 0xE5B8: [681,33,1290,134,1170,'1170 542c-32 -13 -73 -37 -119 -66c-5 -4 -27 -28 -31 -39c-9 -36 -10 -61 -10 -97c0 -55 2 -110 16 -164c4 -19 11 -37 20 -55c6 -13 10 -18 23 -27c7 -6 22 -9 33 -9c10 0 45 2 67 9v-18l-197 -109l-88 111c0 105 0 237 7 289c36 48 69 79 111 105c-16 0 -29 7 -39 15 c-14 12 -25 27 -32 42c-11 25 -27 57 -45 71c-12 8 -26 14 -42 14c-27 0 -59 -16 -79 -30c-39 -28 -63 -50 -90 -83c17 -48 26 -113 26 -166c0 -72 -14 -144 -48 -210l-226 -143c-10 -4 -25 -10 -32 -10c-56 0 -102 27 -140 57l96 94h21c6 -14 22 -33 42 -49 c16 -11 35 -17 57 -17c28 0 51 14 71 28c16 13 21 31 25 49c8 29 10 58 10 88c0 70 -9 140 -34 208c-19 51 -47 100 -96 138c-34 26 -77 47 -126 47c-23 0 -49 -3 -66 -16c-14 -11 -21 -24 -21 -39s10 -30 18 -43c16 -20 34 -38 54 -56c16 -13 30 -27 41 -43 c8 -10 11 -21 11 -33c0 -26 -19 -46 -41 -65c-35 -31 -77 -55 -122 -78l-24 16c20 11 39 24 53 39c10 11 18 23 18 37c0 20 -20 39 -39 55c-20 18 -37 36 -51 56c-10 15 -18 30 -18 47c0 20 10 39 22 57c17 24 38 46 64 64c58 39 135 68 215 68c54 0 108 -15 146 -45 c37 -28 63 -63 77 -101c24 22 49 43 75 63c55 43 123 80 204 80c27 0 58 -3 78 -19c11 -9 26 -36 39 -64c6 -13 16 -24 28 -34c6 -7 14 -13 25 -13c20 0 40 3 57 9'], + 0xE5B9: [726,29,1283,117,1074,'1074 378c0 -86 -32 -170 -89 -244c-63 -51 -129 -88 -203 -121c-53 -23 -110 -42 -171 -42c-70 0 -139 18 -206 37c-45 13 -99 28 -137 28c-52 0 -95 -25 -128 -54l-23 22l98 110c39 8 77 17 105 38c16 12 24 29 24 47c0 19 -9 37 -19 55c-15 26 -34 50 -57 76 c-29 32 -55 74 -56 104c0 44 84 117 164 157l16 -14c-28 -18 -62 -42 -62 -77c0 -16 28 -67 52 -98c26 -32 44 -59 65 -93c6 -9 11 -23 11 -33c0 -22 -8 -41 -23 -60c-25 -30 -61 -62 -97 -83c24 0 46 -2 77 -9c64 -14 129 -31 191 -50c53 -17 90 -27 162 -27 c28 0 55 15 76 29c36 25 53 66 66 101c17 49 22 100 22 150c0 40 -5 81 -20 119c-12 30 -28 59 -57 81c-26 20 -61 29 -97 36c-50 10 -81 13 -134 13c-28 0 -52 -1 -75 -3c-16 -1 -32 -1 -48 -1c-51 0 -70 26 -70 36c0 24 3 35 38 60c19 13 57 45 68 58h28 c-7 -9 -12 -19 -12 -30c0 -9 11 -15 22 -17c13 -3 76 -5 113 -7c62 -3 123 -10 182 -24c44 -12 86 -27 119 -53c32 -24 50 -55 63 -87c17 -42 22 -86 22 -130'], + 0xE5BA: [685,223,1284,126,1143,'1143 511c-49 -20 -97 -41 -138 -69c-17 -12 -32 -27 -32 -45c0 -32 20 -61 42 -88c25 -31 59 -74 59 -104c0 -24 -5 -48 -21 -69c-26 -35 -53 -63 -91 -94c-22 -18 -46 -36 -74 -47c-21 -9 -44 -15 -67 -15c-59 0 -120 18 -173 39c0 -54 6 -106 16 -160l-152 -82l-30 14 c14 35 18 70 22 105c6 52 8 106 8 158c-30 11 -66 22 -95 22c-40 0 -73 -18 -101 -40c-20 -15 -39 -30 -56 -48l-16 19c35 47 77 104 117 135c28 21 63 37 103 37c13 0 29 -1 47 -6v196c0 43 -7 87 -23 128c-13 33 -32 64 -63 88c-26 20 -58 34 -96 34 c-41 0 -63 -12 -78 -22c-16 -13 -24 -30 -24 -49c0 -12 11 -26 20 -36c14 -16 29 -32 46 -46c29 -24 57 -59 57 -80c0 -11 -1 -21 -7 -30c-9 -14 -18 -28 -31 -39c-40 -32 -83 -57 -131 -82l-18 19c21 12 32 21 48 38c11 12 19 26 19 41c0 16 -29 46 -50 67 c-16 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 12 44 26 64c20 27 46 51 74 73c50 38 114 67 199 67c59 0 107 -17 147 -48c27 -20 53 -53 67 -80c46 36 96 71 153 94c43 17 90 30 137 30c23 0 47 -2 64 -15c16 -12 23 -42 26 -65c3 -20 12 -39 28 -56c11 -11 25 -22 44 -22 c14 0 33 4 45 7zM978 109c0 15 -8 34 -17 47c-13 21 -29 40 -46 59c-30 32 -63 76 -63 100c0 19 10 37 25 52c28 28 60 53 93 76c-21 3 -43 9 -53 17c-8 6 -25 22 -25 62c0 15 -3 30 -7 44c-3 10 -8 20 -17 27c-15 12 -35 19 -56 19c-40 0 -76 -17 -104 -39 c-11 -9 -39 -33 -60 -55v-376l193 -63c28 -9 55 -17 85 -17c13 0 26 4 35 11c13 10 17 22 17 36'], + 0xE5BB: [726,82,1283,117,1114,'1114 -3c-59 -28 -118 -55 -180 -79c-66 22 -128 48 -186 83c-39 -17 -92 -30 -137 -30c-70 0 -139 18 -206 37c-45 13 -99 28 -137 28c-52 0 -95 -25 -128 -54l-23 22l98 110c39 8 77 17 105 38c16 12 24 29 24 47c0 19 -9 37 -19 55c-15 26 -34 50 -57 76 c-29 32 -55 74 -56 104c0 44 84 117 164 157l16 -14c-28 -18 -62 -42 -62 -77c0 -16 28 -67 52 -98c26 -32 44 -59 65 -93c6 -9 11 -23 11 -33c0 -22 -8 -41 -23 -60c-25 -30 -61 -62 -97 -83c24 0 46 -2 77 -9c64 -14 129 -31 191 -50c53 -17 90 -27 162 -27 c28 0 55 15 76 29c36 25 53 66 66 101c17 49 22 100 22 150c0 40 -5 81 -20 119c-12 30 -28 59 -57 81c-26 20 -61 29 -97 36c-50 10 -81 13 -134 13c-28 0 -52 -1 -75 -3c-16 -1 -32 -1 -48 -1c-51 0 -70 26 -70 36c0 24 3 35 38 60c19 13 57 45 68 58h28 c-7 -9 -12 -19 -12 -30c0 -9 11 -15 22 -17c13 -3 76 -5 113 -7c62 -3 123 -10 182 -24c44 -12 86 -27 119 -53c32 -24 50 -55 63 -87c17 -42 22 -86 22 -130c0 -86 -32 -170 -89 -244c-24 -24 -62 -48 -93 -68c22 -18 44 -33 70 -47c18 -8 36 -17 57 -17c32 0 64 7 95 16 v-21'], + 0xE5BC: [689,29,1284,126,1180,'1180 72l-187 -101c-26 46 -63 92 -98 137c0 46 0 118 -3 139c-3 18 -10 45 -27 59c-22 16 -43 29 -73 34c-16 3 -34 4 -50 4c-22 0 -44 -7 -65 -15c-12 -68 -33 -118 -74 -179l-253 -178l-56 41c-11 8 -25 15 -39 15c-15 0 -27 -3 -39 -9c-18 -9 -32 -22 -45 -37l-18 16 c50 53 125 126 174 126c24 0 38 -7 49 -14c20 -13 39 -28 57 -43c14 9 28 19 42 29c31 24 41 59 49 93c14 55 18 111 18 168c0 43 -7 86 -23 128c-15 33 -38 65 -71 91c-31 24 -68 43 -118 43c-31 0 -64 -12 -79 -22c-16 -13 -24 -30 -24 -49c0 -12 11 -26 20 -36 c14 -16 29 -32 46 -46c29 -24 57 -59 57 -80c0 -11 -1 -21 -7 -30c-9 -14 -18 -28 -31 -39c-40 -32 -83 -57 -131 -82l-18 19c21 12 32 21 48 38c11 12 19 26 19 41c0 16 -29 46 -50 67c-16 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 12 44 26 64c20 27 46 51 74 73 c50 38 120 71 206 71c69 0 119 -19 164 -54c29 -22 56 -52 68 -81c38 35 84 72 134 98c36 18 77 33 120 33c28 0 55 -7 75 -23c23 -17 27 -48 31 -74c3 -23 6 -53 23 -66c13 -10 31 -12 49 -12c12 0 28 1 41 5l6 -13c-102 -36 -160 -62 -231 -101c38 -4 81 -22 103 -45 c0 -58 2 -127 9 -163c4 -22 13 -45 27 -63c13 -16 26 -30 43 -43c8 -6 24 -6 37 -6c16 0 32 7 48 14zM961 458c-16 0 -33 6 -45 16c-16 13 -22 41 -26 64c-3 23 -10 55 -23 65c-10 8 -22 15 -36 15c-32 0 -59 -14 -81 -31c-31 -25 -49 -43 -71 -73c3 -17 4 -47 4 -64 c0 -31 -2 -59 -4 -92c47 18 115 43 172 47'], + 0xE5BD: [685,31,1285,195,1102,'1102 261c0 -69 -49 -129 -112 -177c-103 -80 -247 -115 -391 -115c-108 0 -211 32 -287 91c-84 64 -117 151 -117 252c0 100 50 184 139 253c86 65 180 91 316 120c48 -16 93 -37 140 -55c55 -21 121 -46 172 -46c27 0 50 7 70 22c19 14 27 28 37 47l27 -14 c-13 -31 -37 -59 -67 -82c-36 -28 -83 -47 -132 -58c-20 -4 -40 -9 -61 -9c-28 0 -53 12 -78 23l-144 67c-30 14 -64 30 -98 30c-38 0 -74 -14 -101 -34c-64 -49 -89 -118 -89 -187c0 -95 34 -192 123 -260c74 -57 174 -88 279 -88c86 0 174 18 236 66c31 24 45 58 45 91 c0 32 -17 63 -47 85c-40 31 -98 39 -153 39c-48 0 -95 -8 -141 -17c-46 -8 -122 -22 -137 -22c-37 0 -73 7 -98 27c-22 17 -31 40 -31 64c0 37 25 70 59 96c31 24 74 37 114 45l14 -14c-12 -4 -23 -12 -33 -19c-19 -14 -33 -33 -33 -53c0 -16 5 -31 20 -42 c20 -15 50 -15 77 -15c53 0 103 5 154 13c49 7 97 21 146 21c47 0 96 -10 130 -36c36 -29 52 -69 52 -109'], + 0xE5BE: [691,30,1077,138,983,'983 659l-133 -118c-32 -9 -66 -13 -102 -13c-46 0 -107 8 -152 15c-36 -28 -53 -49 -53 -85c0 -16 9 -36 21 -49c16 -19 35 -39 55 -56c37 -32 90 -77 90 -106c0 -35 -76 -91 -128 -127c53 -19 129 -46 171 -46c21 0 42 6 60 14c31 11 58 27 84 43l12 -24 c-60 -50 -129 -95 -199 -137c-58 0 -113 18 -165 38c-43 16 -94 34 -135 34c-20 0 -41 0 -57 -5c-39 -13 -64 -30 -96 -52l-14 18c63 51 131 97 211 132c33 0 68 -1 100 -8c19 15 32 33 32 55c0 24 -47 66 -80 94c-21 18 -40 37 -58 57c-12 14 -22 29 -27 45 c35 63 83 122 147 171c-83 14 -210 37 -246 37c-30 0 -69 -3 -89 -19c-15 -11 -20 -27 -20 -41c0 -39 38 -68 79 -89l2 -10l-91 -68c-35 25 -64 58 -64 96c0 51 34 98 80 135c70 53 159 90 258 90c40 0 136 -14 203 -25c54 -7 109 -14 165 -14c51 0 103 23 139 50v-32'], + 0xE5BF: [689,39,1145,123,1063,'1063 72l-220 -111l-78 123l-140 -105c-20 -11 -45 -13 -60 -13c-50 0 -98 14 -142 30c-57 21 -128 42 -182 42c-19 0 -48 -8 -98 -50l-20 20l116 109c36 5 78 15 96 25c20 11 57 38 67 65c4 11 4 26 4 37c0 20 -6 40 -16 60c-12 27 -30 53 -48 78c-29 39 -65 90 -65 122 c0 7 0 16 2 22c16 25 69 80 114 114c23 18 50 34 78 49l26 -16c-18 -10 -35 -22 -51 -34c-19 -14 -33 -32 -33 -53c0 -37 18 -73 39 -107c25 -40 45 -83 54 -127c5 -17 7 -34 7 -51c0 -18 -2 -35 -9 -52c-42 -42 -105 -103 -137 -121c29 -4 103 -26 149 -41 c40 -13 87 -24 125 -24c34 0 60 18 84 36c16 13 25 30 26 47c4 67 7 134 7 201c0 82 -5 164 -14 246c74 24 141 57 206 92l18 -15l-27 -24c-27 -26 -37 -60 -42 -93c-7 -58 -9 -115 -9 -173c0 -61 2 -121 6 -182c2 -18 2 -22 16 -52c10 -21 25 -44 39 -59 c9 -9 22 -13 37 -13c16 0 48 10 71 18'], + 0xE5C0: [687,29,1289,132,1168,'1168 604c-20 -10 -38 -22 -54 -35c-41 -31 -80 -69 -80 -115c0 -27 0 -58 6 -81l19 -95c4 -22 7 -45 7 -68c0 -46 -18 -88 -62 -120c-51 -39 -116 -82 -137 -93c-31 -15 -63 -26 -100 -26c-28 0 -56 8 -83 16c-44 13 -86 29 -128 46c-36 15 -73 29 -111 40 c-24 7 -49 13 -74 13s-49 -7 -71 -16c-31 -12 -60 -28 -85 -46l-14 18c55 42 120 82 182 121c33 7 61 22 85 40c22 17 32 41 38 65c12 36 15 74 15 111c0 42 -6 84 -21 124c-12 31 -30 61 -60 84c-27 21 -59 37 -102 37c-33 0 -66 -17 -80 -27c-17 -13 -24 -30 -24 -49 c0 -12 11 -26 20 -36c14 -16 28 -32 46 -46c28 -24 57 -59 57 -80c0 -11 -1 -21 -8 -30c-9 -14 -17 -28 -31 -39c-39 -32 -82 -57 -130 -82l-18 19c21 12 32 21 47 38c11 12 20 26 20 41c0 16 -30 46 -51 67c-15 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 13 44 27 64 c20 27 46 51 74 73c49 38 120 69 205 69c57 0 103 -13 139 -41c35 -27 62 -69 72 -107c46 40 96 81 151 111c32 17 66 35 104 35c18 0 37 -5 55 -10c24 -8 47 -19 69 -31s54 -29 70 -29c23 0 45 3 68 14zM1020 527c-44 0 -83 16 -120 35c-30 17 -68 36 -102 36 c-24 0 -44 -14 -60 -27c-31 -22 -56 -49 -78 -76c2 -14 2 -29 2 -43c0 -65 -13 -130 -49 -190l-129 -88c46 -1 158 -46 235 -75c51 -20 115 -44 163 -44c14 0 32 4 41 12c11 8 15 22 15 34c0 17 -2 38 -6 56l-25 129c-5 21 -5 41 -5 62c0 29 0 71 14 86c29 31 68 63 104 93'], + 0xE5C1: [682,30,1568,139,1469,'1469 628l-1 -25c-40 -26 -92 -61 -124 -98c-19 -22 -26 -47 -26 -74c0 -23 11 -62 20 -93c12 -42 23 -81 23 -124c0 -22 -2 -43 -7 -65c-5 -15 -10 -29 -22 -41l-200 -123c-26 -8 -52 -13 -80 -13c-38 0 -82 14 -121 25c-64 19 -127 35 -195 42 c-46 -19 -95 -42 -138 -64c-11 -4 -24 -5 -39 -5c-57 0 -110 20 -159 43c-35 16 -74 32 -109 32c-23 0 -44 -6 -63 -15c-26 -11 -49 -27 -71 -44l-15 22c56 48 120 90 184 132c59 0 99 14 134 41c30 23 46 53 59 84c15 42 19 86 19 129c0 67 -16 136 -79 184 c-29 24 -66 39 -113 39c-33 0 -67 -10 -82 -20c-16 -13 -24 -30 -24 -49c0 -12 11 -26 20 -36c14 -16 29 -32 46 -46c29 -24 58 -59 58 -80c0 -11 -2 -21 -8 -30c-9 -14 -18 -28 -31 -39c-40 -32 -83 -57 -131 -82l-18 19c21 12 32 21 48 38c11 12 20 26 20 41 c0 16 -30 46 -51 67c-15 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 12 44 27 64c19 27 46 51 73 73c50 38 120 64 204 64c68 0 122 -19 166 -53c26 -20 45 -46 57 -73c70 45 122 76 196 114c38 -19 66 -48 111 -110c41 32 86 65 134 91c31 15 62 31 99 31 c41 0 77 -16 111 -33c33 -16 68 -33 108 -33c12 0 33 7 44 12zM874 349c0 42 -3 85 -16 126c-8 28 -19 55 -46 76c-16 12 -35 22 -55 31c-33 -18 -58 -36 -81 -53c3 -14 5 -48 5 -62c0 -93 -25 -185 -97 -261l-149 -75c18 -5 73 -26 109 -42c40 -18 84 -34 131 -34 c7 0 15 2 23 5c34 14 74 30 95 50c30 27 53 57 64 91c17 50 17 96 17 148zM1319 527c-2 -1 -15 -1 -26 -1c-25 0 -70 20 -89 33c-24 16 -77 28 -98 28c-22 0 -46 -3 -65 -12c-23 -13 -39 -25 -55 -43c8 -36 15 -81 15 -118c0 -70 -22 -137 -56 -202c-30 -37 -54 -62 -84 -82 c53 0 153 -32 221 -54c31 -10 62 -20 97 -20c14 0 27 6 38 12c12 8 18 21 18 52c0 34 -14 96 -28 140c-13 41 -21 81 -21 120c0 19 1 42 59 86'], + 0xE5C2: [682,35,1143,140,1024,'1024 578l-145 -64c-52 17 -91 50 -119 87c-84 -58 -117 -93 -117 -235c71 0 161 0 213 4l-70 -58c-47 3 -120 3 -149 3c0 -79 22 -160 96 -217c33 -26 80 -38 128 -38c35 0 82 16 121 30v-24c-51 -27 -98 -59 -146 -91c-25 -7 -67 -10 -70 -10c-45 0 -88 14 -120 38 c-20 15 -34 34 -47 52c-18 27 -32 56 -44 84c-64 -54 -132 -106 -212 -146c-22 -11 -53 -25 -71 -25c-34 0 -90 30 -132 53l89 81c19 -15 40 -29 64 -39c17 -8 35 -14 56 -14c16 0 31 4 44 10c20 9 38 21 54 33c29 23 43 56 53 86c14 45 19 91 19 137c-77 0 -173 0 -230 -3 l71 56l161 -2c0 38 -2 77 -13 115c-8 24 -19 46 -42 64s-52 33 -85 33c-41 0 -75 -11 -102 -33l-45 -37l-20 20c58 54 123 104 190 152c56 -5 112 -17 153 -48c37 -29 66 -66 72 -107c27 30 59 57 92 83c43 33 96 57 153 74c15 -30 32 -60 62 -82c10 -9 27 -10 42 -10 c16 0 33 4 46 7v-19'], + 0xE5C3: [689,214,1291,140,1072,'1072 339c0 -123 -30 -246 -90 -360c-56 -56 -122 -105 -202 -142c-64 -30 -137 -51 -213 -51c-67 0 -133 17 -180 53l55 97l16 -2c10 -25 23 -50 47 -69c30 -23 73 -31 114 -31c66 0 131 16 178 52c54 42 79 98 98 154c27 82 34 166 34 251c0 53 -2 107 -15 159 c-8 31 -18 63 -44 86c-24 20 -54 31 -88 31c-22 0 -56 -6 -74 -17c-23 -13 -34 -20 -49 -38c4 -18 7 -48 7 -66c0 -77 -14 -151 -65 -217c-50 -34 -110 -70 -158 -96c11 -1 75 -21 107 -34c30 -12 64 -20 96 -20c19 0 35 8 51 15c26 12 49 27 72 43l7 -21 c-51 -55 -107 -107 -180 -143c-64 9 -124 32 -182 57c-30 13 -70 20 -100 20c-25 0 -51 -7 -73 -17c-29 -13 -55 -31 -79 -50l-21 19c55 50 110 100 176 142c16 3 29 4 43 4c15 0 30 -1 48 -2c20 9 44 21 63 36c26 21 33 49 41 77c11 46 14 93 14 139c0 69 -25 138 -89 187 c-25 20 -54 37 -93 37c-34 0 -64 -15 -78 -25c-17 -13 -25 -30 -25 -49c0 -12 11 -26 20 -36c14 -16 29 -32 46 -46c29 -24 58 -59 58 -80c0 -11 -1 -21 -8 -30c-9 -14 -18 -28 -31 -39c-40 -32 -82 -57 -131 -82l-17 19c20 12 32 21 47 38c11 12 20 26 20 41 c0 16 -30 46 -51 67c-15 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 12 44 27 64c19 27 46 51 73 73c50 38 122 65 208 65c57 0 101 -17 138 -45c29 -23 49 -62 62 -96c46 32 93 62 142 91c36 20 72 40 111 56c39 -40 89 -71 145 -95c13 -85 26 -172 26 -255'], + 0xE5C4: [718,137,1008,124,801,'801 232c0 -55 -9 -111 -31 -164c-18 -43 -46 -84 -88 -117c-73 -56 -172 -88 -276 -88c-39 0 -89 0 -120 2c-15 2 -37 5 -37 20l1 51c0 11 -4 22 -14 29c-8 7 -19 11 -31 11c-25 0 -49 -9 -70 -20l-11 15c33 22 70 41 110 56c30 11 64 19 98 19c17 0 36 -3 48 -12 c15 -12 16 -37 16 -49c0 -11 -2 -22 -4 -32c-3 -13 -3 -28 -3 -41c0 -10 12 -16 23 -19c6 -2 15 -3 24 -3c50 0 96 16 130 43c31 23 46 60 57 92c17 42 21 87 21 131c0 29 -3 76 -30 96c-38 29 -93 37 -146 37c-40 0 -79 -8 -118 -17l-18 13l61 81c54 9 101 32 140 61 c35 27 47 64 47 101c0 9 -2 18 -11 25c-19 14 -45 18 -70 18c-33 0 -66 -2 -98 -5l-105 -11c-25 0 -49 7 -68 21c-6 5 -13 20 -16 33c29 37 73 84 101 108l20 1c-3 -6 -5 -13 -5 -20c0 -8 3 -17 12 -24c11 -8 28 -10 43 -10l195 6c40 0 81 -5 110 -27c15 -12 26 -28 26 -46 c0 -62 -47 -115 -103 -159c-29 -22 -75 -46 -110 -62c113 0 209 -4 276 -66c14 -14 24 -62 24 -78'], + 0xE5C5: [472,32,872,192,751,'751 82l-160 -111c-22 30 -48 58 -79 83l-1 26l-205 -112c-43 32 -79 68 -112 105c-1 20 -2 39 -2 59c0 79 9 157 23 235c76 30 147 67 217 105c44 -16 91 -25 138 -32l73 28l9 -7c-19 -66 -19 -133 -19 -200l3 -118l58 -63c12 0 35 12 51 20zM510 110l-2 256 c-54 0 -108 11 -160 23c-17 -24 -30 -61 -30 -153c0 -32 2 -65 5 -98c27 -25 57 -52 89 -72c15 0 69 27 98 44'], + 0xE5C6: [691,32,857,200,659,'659 314c0 -73 -5 -146 -21 -218c-95 -48 -192 -94 -298 -128c-50 32 -99 65 -140 103c14 112 14 227 14 340c0 85 -3 171 -14 255l22 8l27 -78c59 34 124 71 184 95l17 -13c-29 -19 -49 -36 -73 -58c-15 -13 -25 -30 -30 -47c-9 -26 -10 -52 -10 -78v-107l10 -4l156 90 c39 -17 101 -41 153 -60c2 -33 3 -67 3 -100zM529 252c0 32 -2 63 -6 95c-44 20 -71 29 -104 37c-24 -4 -61 -23 -80 -36l1 -216c24 -18 52 -40 82 -55c21 -11 43 -20 67 -23c22 40 32 83 36 126c3 25 4 49 4 72'], + 0xE5C7: [473,26,719,201,571,'571 429l-85 -96h-11c-52 42 -99 57 -126 63c-14 -19 -19 -96 -19 -126c0 -38 4 -78 7 -116c35 -29 71 -57 111 -82l117 42v-21c-69 -41 -185 -104 -217 -119c-52 34 -99 73 -143 114c-3 42 -4 87 -4 130c0 53 3 104 14 148l215 107c50 -8 98 -22 141 -44'], + 0xE5C8: [632,29,856,104,667,'667 368c0 -88 -16 -176 -48 -260c-54 -40 -154 -93 -235 -137c-64 33 -126 71 -181 114c-3 18 -5 45 -5 78c0 46 3 106 8 172c52 43 122 89 182 124l24 -10c-22 -15 -51 -41 -72 -60c-11 -48 -11 -88 -11 -135c0 -35 2 -71 5 -106c43 -34 93 -62 148 -82 c27 40 55 109 55 243c0 34 -2 68 -5 102c-55 40 -114 78 -180 109c-40 20 -85 38 -134 38c-33 0 -69 -9 -99 -20l-15 19c62 30 129 53 196 75c59 -2 109 -24 160 -49c65 -31 139 -71 199 -108c6 -36 8 -72 8 -107'], + 0xE5C9: [471,28,728,193,577,'577 362c-67 -51 -176 -122 -265 -181c0 0 6 -38 19 -45c29 -20 59 -38 112 -68c34 5 82 23 121 40l10 -16c-71 -41 -142 -82 -217 -120c-58 34 -110 73 -159 114c-3 36 -5 72 -5 108c0 59 5 118 15 176l212 101c49 -38 100 -76 157 -109zM461 316 c-43 24 -112 71 -128 83c-17 -69 -23 -114 -23 -185c50 31 105 67 151 102'], + 0xE5CA: [681,242,635,146,531,'531 398l-18 -39h-133c0 -117 0 -236 -21 -347c-3 -15 -11 -32 -20 -46l-124 -208l-22 4c16 34 44 97 49 131c7 38 10 83 10 125v341h-106v8l16 38h80c-14 40 -19 75 -27 115c14 48 37 92 83 127c29 23 71 34 112 34c16 0 34 -5 47 -12c22 -10 40 -23 58 -38l-80 -82h-18 c-12 17 -22 30 -40 43c-12 9 -29 19 -45 19s-31 -2 -43 -11c-12 -10 -19 -25 -19 -39c0 -33 29 -61 58 -85c16 -13 30 -26 41 -41c8 -11 10 -16 14 -30h148v-7'], + 0xE5CB: [473,208,863,123,700,'560 -74c0 37 -19 106 -35 157l-218 -133c61 -30 152 -75 195 -75c18 0 36 1 48 11c10 7 10 26 10 40zM700 -22c-67 -66 -141 -128 -222 -184c-11 -1 -23 -2 -34 -2c-35 0 -70 6 -104 14c-56 15 -108 39 -156 65l-42 -24l-19 15l185 115l-102 93c-4 38 -6 77 -6 115 c0 61 6 121 24 181c70 38 142 75 216 107c46 -19 100 -41 141 -47l95 39l14 -4c-16 -30 -24 -62 -30 -94c-7 -45 -9 -90 -9 -135c0 -86 35 -169 49 -254zM532 343c-63 8 -132 35 -178 57c-12 -52 -19 -112 -19 -166c0 -34 2 -68 7 -102c27 -25 60 -54 98 -70l86 49v66 c0 56 3 111 6 166'], + 0xE5CC: [687,203,886,202,662,'662 271l-3 -121c-3 -61 -7 -122 -22 -181c-53 -57 -127 -117 -210 -172l-28 14c25 15 56 39 82 61c19 17 30 44 38 68c10 33 20 87 20 175c0 74 -7 148 -14 222c-35 17 -82 35 -121 42l-59 -32c-4 -39 -6 -78 -6 -117c0 -34 2 -68 6 -102c17 -24 37 -46 59 -68 c-46 -24 -88 -54 -127 -84c-21 30 -47 59 -75 86c9 123 17 246 17 370c0 77 -3 155 -11 232l21 9l27 -76c56 31 117 65 170 90l20 -15c-13 -7 -25 -14 -37 -23c-50 -37 -62 -90 -62 -142l-2 -130c56 28 109 62 158 94c50 -23 103 -43 156 -61'], + 0xE5CD: [686,26,574,107,465,'465 87c-63 -34 -121 -74 -179 -113l-80 82c8 58 11 117 11 176c0 45 -2 89 -5 134l-42 21l-43 -17l-20 12c52 31 103 61 150 96c14 -10 59 -38 90 -56c-3 -56 -5 -112 -5 -169l3 -115c0 -10 5 -20 13 -29c9 -11 22 -27 34 -27c5 0 17 3 19 4l48 19zM371 615l-88 -75 c-35 22 -68 47 -98 73l100 73c26 -25 55 -50 86 -71'], + 0xE5CE: [683,207,574,84,367,'367 256c0 -95 -7 -191 -28 -285c-68 -61 -156 -127 -238 -178l-17 18c38 21 77 46 105 71c29 27 40 64 44 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -5 30 -18 41c-9 7 -21 12 -34 12l-42 -17l-16 19l143 101c31 -21 60 -39 93 -58c4 -56 6 -112 6 -169zM364 614 l-90 -73c-30 22 -61 44 -88 70l90 72c10 -10 58 -46 88 -69'], + 0xE5CF: [683,25,720,141,580,'580 90l-218 -115l-142 96c3 15 4 29 5 44l5 193h-89l16 38h75c0 107 0 244 -13 319l23 8l30 -76c50 34 107 62 165 86l17 -16c-29 -14 -45 -26 -63 -47c-12 -15 -22 -31 -25 -48c-7 -23 -8 -49 -8 -73c45 29 104 64 152 86c17 -19 35 -39 48 -60c9 -14 14 -25 14 -41 c0 -21 -16 -38 -32 -54l-91 -84h106l-19 -38h-182c0 -55 1 -118 7 -172l99 -68c11 0 76 25 110 41zM475 435c0 30 -22 60 -45 83c-18 -10 -36 -21 -48 -34c-13 -15 -18 -35 -20 -52c-3 -28 -4 -57 -4 -86h35c18 0 40 19 54 33c18 17 28 36 28 56'], + 0xE5D0: [682,24,579,215,451,'451 86l-166 -110l-70 79c9 73 12 162 12 257l-9 349l22 4l21 -72c52 32 110 63 169 89l12 -9c-16 -10 -33 -26 -43 -35c-19 -17 -29 -34 -35 -56c-9 -31 -13 -63 -13 -95l-2 -157c0 -76 2 -151 10 -218l29 -29c10 0 35 9 54 18'], + 0xE5D1: [476,31,1223,123,1095,'1095 78c-64 -33 -123 -70 -181 -108c-25 31 -52 61 -83 89c12 34 16 92 16 154c0 45 -2 91 -4 131c-33 13 -82 30 -118 38l-60 -34c-3 -39 -4 -76 -4 -115l2 -102l62 -73l-132 -86l-65 81c10 43 11 99 11 157l-2 136c-27 11 -82 24 -116 31l-66 -34l-1 -65 c0 -51 2 -102 6 -152l61 -74l-126 -83c-23 31 -47 63 -72 90c6 45 9 95 9 146s-3 103 -5 152l-39 27l-51 -19l-14 13l148 98c25 -21 54 -40 86 -56l-5 -51c60 30 115 64 166 103c49 -21 98 -43 152 -56l-3 -40l162 95c51 -21 104 -39 158 -53c-11 -56 -15 -112 -15 -168 c0 -42 2 -84 5 -126l31 -38c4 -4 12 -9 19 -9c0 0 12 3 16 5l38 18'], + 0xE5D2: [474,28,928,108,774,'774 88c-57 -32 -115 -74 -168 -114c-25 32 -58 64 -88 94c9 48 12 99 12 151c0 42 -2 84 -4 126c-34 15 -81 27 -118 36l-69 -31l1 -221l68 -67l-124 -90c-26 26 -54 53 -86 76c9 25 11 69 11 120c0 64 -4 139 -7 198l-27 22l-47 -21l-20 14l143 93 c29 -18 61 -38 91 -50c-2 -16 -2 -48 -2 -48c59 29 114 62 166 98c46 -22 106 -44 162 -63c-8 -70 -12 -140 -12 -211l1 -68l52 -52c11 3 39 15 55 24'], + 0xE5D3: [482,34,879,222,672,'672 337c0 -39 -2 -77 -5 -116c-3 -44 -9 -89 -23 -132c-80 -48 -168 -89 -260 -123c-57 30 -111 62 -160 99c-1 20 -2 39 -2 59c0 80 9 159 25 238c78 38 154 78 228 120c59 -33 126 -56 195 -72zM550 272c0 27 -1 55 -4 82c-56 7 -109 24 -159 43 c-17 -25 -35 -79 -35 -159c0 -35 4 -71 8 -107c46 -33 99 -62 160 -76c20 71 30 144 30 217'], + 0xE5D4: [558,208,873,103,676,'676 310c0 -85 -8 -143 -33 -226c-61 -29 -116 -65 -167 -103c-32 22 -72 36 -115 41c0 -61 5 -122 10 -183l-124 -47l-19 6l7 234c-45 0 -86 -18 -119 -41l-13 17c39 33 91 77 131 89v262c-26 21 -50 51 -58 78c34 44 75 83 119 121l22 -6c-11 -13 -21 -27 -21 -42 c0 -14 8 -26 17 -37c13 -17 30 -32 48 -45v-42l158 96l148 -57c6 -26 9 -87 9 -115zM549 202c0 50 -4 100 -11 147c-36 14 -83 32 -122 42l-55 -35v-226c60 -8 120 -25 173 -53c12 42 15 80 15 125'], + 0xE5D5: [485,212,864,201,672,'672 479c-34 -103 -34 -291 -34 -438c0 -71 5 -141 10 -212l-124 -41l-21 10c13 93 16 187 16 280l-207 -108l-108 103c-2 22 -3 44 -3 67c0 77 11 155 29 232l214 106c44 -16 90 -29 137 -36l77 43zM521 358c-61 4 -125 23 -159 39c-18 -29 -30 -92 -30 -187 c0 -20 0 -41 1 -62c23 -28 53 -61 83 -83c33 11 68 29 99 45c0 83 0 173 6 248'], + 0xE5D6: [473,26,714,118,603,'603 394c-31 -26 -72 -51 -112 -74c-3 -2 -6 -4 -13 -4c-17 0 -26 6 -42 18l-50 39c-6 -3 -16 -10 -20 -14c-2 -18 -4 -73 -4 -123c0 -30 0 -60 2 -89c1 -11 8 -21 17 -29l68 -48l98 31l1 -21l-190 -106c-42 37 -89 70 -138 102c14 43 15 111 15 146c0 44 -1 74 -5 118 c-16 15 -32 29 -51 40l-49 -12l-12 14l153 91l94 -62v-31l117 91c18 -23 36 -49 58 -66c6 -5 15 -7 24 -7c10 0 27 5 39 9v-13'], + 0xE5D7: [480,35,784,79,635,'635 442l-157 -100c-20 0 -45 9 -66 17c-32 14 -62 31 -90 49c-6 -23 -10 -46 -10 -69c0 -33 10 -70 31 -100c56 17 114 40 170 63c24 -10 47 -22 68 -36c6 -33 10 -67 10 -101c0 -41 -6 -82 -21 -121c-73 -23 -147 -48 -215 -79c-28 21 -57 41 -92 56 c-24 11 -49 20 -78 20c-35 0 -67 -15 -94 -31l-12 16l138 99c19 4 38 6 57 6c43 0 128 -55 182 -93c5 23 5 50 5 74c0 27 -2 55 -5 83c-17 15 -36 30 -63 30c-17 0 -33 -5 -48 -11l-105 -47c-16 13 -32 33 -45 51c-4 6 -5 13 -5 20v139l205 103l73 -38c19 -10 41 -14 63 -14 c26 0 66 17 92 33'], + 0xE5D8: [654,27,642,157,553,'553 84l-196 -111c-35 32 -74 61 -117 87c7 74 7 200 7 299h-90v8l16 38h74v148l183 101l13 -14c-22 -16 -44 -34 -52 -42c-10 -9 -15 -118 -15 -193h117v-7l-17 -39h-102c0 -75 0 -149 6 -223c1 -7 3 -14 9 -19c19 -20 51 -39 77 -44c9 1 58 20 82 31'], + 0xE5D9: [473,35,856,115,769,'769 88l-175 -120l-70 105c-68 -25 -137 -73 -179 -108c-46 32 -116 60 -166 77c17 23 29 47 38 73c11 36 19 73 19 109c0 45 -10 88 -21 132c-12 12 -25 23 -46 28l-39 -19l-15 14l147 94l86 -59l4 -155c0 -31 -3 -62 -9 -93c-6 -21 -14 -43 -29 -62 c36 -7 87 -26 129 -42l73 36l-4 326l133 44l15 -9c-16 -100 -18 -200 -18 -301c0 -9 15 -54 40 -74c2 -1 8 -5 12 -5c3 0 11 1 14 2l55 20'], + 0xE5DA: [546,28,874,167,663,'663 316c0 -36 -2 -72 -6 -108c-5 -44 -12 -88 -36 -128l-278 -108c-39 36 -84 67 -133 94c9 37 9 97 9 146c0 46 -3 96 -6 143c-21 21 -46 47 -46 67c0 34 65 87 111 124l22 -4c-12 -12 -20 -27 -20 -42c0 -21 40 -58 68 -84l-2 -29l160 89l153 -61c2 -33 4 -66 4 -99z M533 263c0 28 -1 57 -3 86c-34 16 -96 40 -108 40c-26 0 -56 -16 -76 -28v-209c0 -6 0 -14 2 -19c3 -7 10 -13 18 -19c25 -19 64 -38 101 -55c3 -1 11 -3 15 -3s16 2 19 11c25 64 32 129 32 196'], + 0xE5DB: [549,33,1218,166,1002,'1002 409c-2 -75 -3 -150 -15 -225c-6 -44 -16 -89 -43 -128c-78 -27 -154 -55 -226 -89c-36 20 -72 39 -109 55c-28 12 -56 22 -87 29c11 35 13 111 13 186l-1 95c-31 20 -98 50 -107 50c-14 0 -47 -11 -73 -27c-2 -28 -3 -57 -3 -85c0 -52 3 -104 7 -157l56 -63 l-120 -80c-27 32 -61 71 -90 89c12 29 21 86 21 157c0 46 -3 93 -7 140l-40 39c-9 9 -12 22 -12 33c0 4 1 8 4 11c33 38 71 80 110 110l18 -2c-12 -14 -17 -31 -17 -47c0 -21 44 -57 75 -81v-37c42 22 101 59 150 89c51 -26 105 -48 161 -67v-34l185 100 c47 -23 98 -43 150 -61zM872 336c-37 17 -105 42 -117 42s-59 -18 -85 -33c-4 -41 -6 -83 -6 -124c0 -23 0 -45 2 -68c1 -12 7 -25 20 -32c37 -22 77 -41 121 -57c2 -1 9 -3 12 -3s11 4 16 17c16 34 23 69 28 104c8 51 9 102 9 154'], + 0xE5DC: [471,188,713,114,599,'599 388l-87 -75c-11 2 -22 4 -31 9c-24 14 -61 43 -67 48c-4 -2 -23 -18 -27 -24c-5 -24 -7 -49 -7 -85c0 -43 0 -97 3 -129c0 0 2 -6 3 -8c5 -7 26 -20 86 -56c13 0 62 18 96 32l2 -18l-197 -111l-100 73c-21 -3 -36 -15 -50 -27c-19 -15 -27 -35 -27 -55 c0 -13 7 -26 19 -36c39 -31 95 -40 150 -48l2 -11l-103 -55c-31 7 -63 17 -92 31c-20 10 -40 23 -50 40c-6 8 -8 17 -8 26c0 10 2 20 5 30c38 46 77 92 127 131c6 43 6 92 6 138c0 44 -1 88 -5 131c0 7 -7 16 -10 18l-51 24c-10 0 -33 -10 -42 -16l-18 12 c50 33 118 77 156 94l101 -58v-36l123 91c26 -31 58 -62 93 -80'], + 0xE5DD: [559,222,857,171,672,'672 289c0 -88 -6 -170 -14 -250c0 -40 -31 -73 -62 -105c-34 -34 -68 -68 -110 -98c-31 -22 -74 -43 -107 -58l-34 25c37 16 91 41 101 48c25 19 43 39 53 66c7 19 15 43 20 63c13 67 16 134 16 202c0 52 -3 104 -8 156c-31 18 -67 34 -105 43l-65 -25v-215 c0 -11 0 -24 9 -33l48 -55l-104 -92c-29 31 -75 78 -105 99c20 57 20 196 20 295c0 4 -2 10 -5 12c-22 19 -49 44 -49 65c0 14 10 27 20 39c19 22 61 60 93 88l20 -6c-11 -15 -19 -29 -19 -46c0 -13 13 -30 25 -42c16 -17 30 -27 49 -39v-41l154 93c50 -25 101 -47 155 -66 c3 -42 4 -83 4 -123'], + 0xE5DE: [472,215,717,96,520,'520 74c0 -60 -14 -117 -34 -177l-172 -112c-60 0 -124 6 -168 40c-22 17 -39 38 -50 60c75 98 166 188 275 264c-36 23 -98 32 -147 35v10l101 65c19 12 39 27 39 47c0 17 -19 40 -37 50c-20 11 -32 15 -56 15c-14 0 -27 -5 -41 -10c-19 -8 -37 -19 -54 -30l-17 15 c58 47 123 88 190 126c31 -10 60 -22 83 -40c24 -19 45 -40 45 -67c0 -12 -20 -29 -35 -42l-71 -59c46 -13 89 -30 131 -50c12 -46 18 -93 18 -140zM390 -4c0 33 -2 74 -8 124c-67 -50 -165 -123 -165 -166c0 -20 13 -36 32 -49c56 -38 109 -39 119 -39c7 13 22 44 22 130'], + 0xE5DF: [688,31,927,62,876,'876 77c-55 -35 -107 -73 -163 -106l-12 3l-74 150l-237 -155c-28 29 -57 57 -92 80c-21 14 -44 24 -71 24c-35 0 -95 -23 -136 -42l-22 17l204 128c27 17 53 36 77 56c71 59 102 141 102 223c0 49 -27 95 -69 129c-30 25 -72 40 -114 40c-37 0 -60 -7 -80 -24 c-17 -14 -22 -35 -22 -54c0 -12 6 -23 13 -33c11 -15 24 -28 39 -41c16 -14 32 -28 45 -45c8 -10 15 -20 15 -32c0 -30 -23 -56 -47 -77c-33 -27 -71 -50 -112 -69l-20 15c20 11 37 24 52 40c10 11 19 23 19 37c0 16 -31 48 -52 70c-17 16 -31 33 -43 52 c-7 13 -14 26 -14 40c0 28 16 56 46 83c53 47 175 102 249 102c60 0 119 -15 162 -50c38 -33 60 -77 60 -123c0 -69 -26 -136 -61 -198l-197 -158c26 0 51 -9 73 -21c32 -16 59 -37 84 -59c37 9 99 46 145 74v429l177 105l14 -13l-52 -51c-8 -49 -8 -215 -8 -323 c0 -40 1 -81 4 -121l58 -101l54 21'], + 0xE5E0: [685,31,1127,89,1014,'1014 491l-208 -103v-5c26 -3 47 -6 77 -14c24 -7 48 -16 66 -31c39 -32 53 -77 53 -122s-16 -79 -46 -116l-175 -111c-26 -13 -64 -20 -99 -20c-65 0 -127 16 -186 35s-120 37 -185 37s-124 -20 -180 -50l-13 24l141 77c43 24 85 49 122 79c20 18 40 41 46 64 c9 36 13 81 13 120c0 37 0 76 -7 112c-9 44 -30 90 -68 122c-25 20 -54 38 -89 38c-24 0 -46 -9 -62 -23c-15 -12 -22 -31 -22 -48c0 -13 8 -24 16 -34c14 -18 30 -34 47 -50c15 -13 29 -27 40 -43c7 -10 14 -21 14 -33c0 -10 -3 -21 -10 -30c-9 -13 -23 -26 -35 -36 c-40 -34 -86 -60 -134 -84l-20 13c23 15 44 30 66 48c12 10 19 24 19 39c0 16 -24 40 -43 58c-18 17 -34 36 -47 57c-9 15 -16 31 -16 48c0 29 41 70 72 95c59 50 132 81 210 81c81 0 144 -49 176 -108c43 30 87 59 137 80c34 15 71 28 110 28c22 0 46 -4 62 -18 c15 -12 29 -60 37 -92c5 -18 13 -36 25 -51c9 -9 19 -19 34 -19c21 0 42 4 62 10v-24zM876 144c0 48 -14 99 -55 133c-41 35 -99 50 -157 50c-33 0 -66 -4 -98 -11c-4 -25 -14 -51 -24 -75l-148 -104c85 -2 167 -23 246 -49c51 -17 106 -34 157 -34c19 0 39 5 52 16 c23 19 27 48 27 74zM826 433c-10 5 -22 12 -28 19c-7 8 -13 17 -15 26c-1 2 -8 40 -13 60c-5 24 -11 51 -29 67c-10 8 -24 14 -37 14c-25 0 -48 -9 -67 -21c-28 -18 -52 -45 -74 -78c7 -30 7 -58 7 -101l-1 -73c84 19 177 46 257 87'], + 0xE5E1: [677,32,801,104,776,'776 553c-28 -11 -108 -40 -143 -40c-9 0 -17 1 -24 5c-10 6 -21 13 -28 22c-19 22 -36 47 -50 71c-9 -2 -18 -5 -24 -10c-13 -12 -19 -30 -19 -46c0 -17 11 -49 21 -74c12 -28 20 -61 20 -86c0 -32 -6 -66 -34 -89c-20 -17 -45 -28 -69 -40c-38 -16 -78 -30 -118 -43 l-20 14c26 7 46 22 64 37c22 18 38 41 38 67c0 32 -7 63 -16 94c-10 33 -21 71 -21 98c0 9 2 16 4 22c-24 -2 -48 -11 -65 -26c-21 -17 -34 -40 -43 -64c-11 -30 -14 -62 -14 -94c0 -88 28 -177 103 -240c64 -53 149 -86 239 -86c21 0 46 1 63 9l118 54l4 -27l-169 -103 c-29 -6 -57 -10 -87 -10c-104 0 -210 21 -284 82c-81 68 -118 162 -118 256c0 62 19 123 48 179c22 16 127 77 199 108l26 -25c83 52 176 93 279 109c8 -36 20 -72 51 -98c8 -7 20 -7 31 -7c8 0 26 3 38 6v-25'], + 0xE5E2: [685,29,1064,63,946,'946 372c0 -76 -29 -160 -80 -231c-82 -68 -157 -117 -254 -170c-48 0 -103 18 -152 34c-79 26 -178 58 -243 58c-31 0 -61 -10 -82 -28c-19 -16 -38 -32 -54 -49l-17 19c42 58 100 108 158 156c33 0 66 1 99 7c20 3 40 7 55 19c14 12 20 28 20 45c0 13 -7 25 -14 36 c-12 18 -26 34 -41 49s-27 29 -39 46c-7 10 -13 21 -13 33c0 14 3 28 12 40c13 17 26 31 43 45c34 25 70 48 109 68l22 -11c-27 -22 -63 -52 -63 -75c0 -21 23 -47 47 -75c14 -16 37 -42 49 -60c8 -11 14 -25 14 -39c0 -25 -14 -48 -35 -66c-35 -29 -80 -53 -129 -71 c62 -10 182 -42 266 -64c25 -7 53 -13 80 -13c26 0 46 13 63 28c24 18 36 45 44 71c13 34 17 69 17 104c0 86 -26 174 -100 235c-36 30 -82 49 -130 62c-59 16 -121 22 -184 22c-90 0 -184 -17 -250 -71c-52 -44 -72 -100 -76 -161l-25 7c0 85 32 169 106 230 c36 31 84 49 134 61c66 16 134 22 201 22c128 0 258 -25 349 -101c67 -56 93 -134 93 -212'], + 0xE5E3: [687,29,861,106,780,'780 584l-3 -27l-134 -40c-4 -1 -7 -1 -11 -1s-9 0 -12 2c-11 7 -20 14 -28 24l-60 76c-20 -12 -37 -28 -37 -48c0 -28 8 -66 19 -96s20 -66 20 -93l124 80c20 -36 46 -65 83 -89v-12l-91 -55c-12 7 -25 13 -45 26l-36 25c-5 3 -11 6 -16 6c-9 0 -16 -4 -23 -9 c-7 -15 -18 -27 -31 -38c-51 -42 -116 -69 -184 -89l-23 14c27 10 49 23 69 40c18 14 32 32 32 53c0 30 -5 63 -14 94c-9 28 -15 51 -23 79c-2 8 -3 15 -3 23c0 13 2 26 6 38c-20 -4 -37 -14 -53 -26c-53 -45 -75 -107 -75 -170c0 -87 39 -171 113 -233 c59 -49 137 -84 220 -84c73 0 141 23 199 58v-27l-158 -103c-39 -7 -78 -11 -118 -11c-96 0 -195 24 -264 81c-81 67 -117 159 -117 253c0 61 13 122 42 178c61 43 129 81 197 116l44 -18c81 47 171 80 265 106c6 -22 14 -44 25 -65c8 -15 15 -25 28 -36c7 -6 15 -9 25 -9 c14 0 34 4 48 7'], + 0xE5E4: [684,147,799,49,781,'781 626c-47 -45 -120 -114 -154 -140c-41 2 -87 13 -125 24c-29 -9 -53 -19 -75 -37c-16 -13 -24 -32 -24 -50c0 -19 9 -37 20 -55c15 -25 34 -47 56 -69l153 119c31 -25 50 -57 71 -94l-69 -60c-8 12 -21 28 -29 35c-8 8 -25 14 -40 14c-21 0 -49 -17 -68 -33 c34 -34 69 -73 95 -112c16 -24 32 -49 32 -77c0 -51 -22 -101 -66 -137c-67 -57 -154 -101 -252 -101c-38 0 -80 7 -109 30c-31 27 -40 66 -40 103c0 27 4 49 10 75c2 13 5 39 5 55c0 15 -3 29 -17 40c-9 8 -23 13 -36 13c-17 0 -46 -13 -66 -23l-4 23c33 18 67 35 102 47 c27 9 54 14 82 14c19 0 32 -5 45 -15c11 -10 19 -26 19 -39c0 -22 -2 -45 -8 -69c-11 -43 -17 -87 -17 -123c0 -26 6 -53 28 -72c17 -12 38 -19 59 -19c42 0 82 16 112 41c31 26 38 65 38 101c0 39 -56 101 -97 147c-30 35 -61 70 -86 109c-15 21 -29 44 -29 69 c0 17 7 33 18 48c12 19 29 37 49 53c29 24 65 44 102 61c-71 32 -167 74 -220 74c-22 0 -47 -4 -63 -18c-37 -30 -54 -71 -64 -113l-27 16c14 58 40 115 91 157c38 32 91 46 144 46c29 0 58 -7 84 -15c42 -11 82 -27 121 -43c44 -18 107 -45 133 -45s72 36 103 61'], + 0xE5E5: [692,27,1009,107,893,'893 291c0 -95 -66 -179 -162 -227l-153 -82c-36 -5 -70 -9 -98 -9c-93 0 -185 25 -249 81c-84 73 -124 166 -124 264c0 36 6 73 15 108c7 25 17 46 34 70c64 39 127 72 190 100l36 -12c45 30 95 56 147 78l22 -12c-44 -18 -78 -60 -78 -100c0 -29 17 -97 31 -144l68 34 l116 86c-36 6 -65 16 -92 37c-13 12 -24 33 -30 49l115 80c7 -21 15 -43 33 -58c20 -16 47 -22 74 -22c12 0 43 8 66 19l3 -24c-74 -49 -140 -96 -208 -149c68 0 138 -13 187 -54c36 -30 57 -71 57 -113zM764 216c0 48 -17 96 -58 130c-33 28 -82 43 -129 43 c-24 0 -46 -1 -70 -9c2 -11 4 -23 4 -35c0 -24 -6 -48 -26 -65c-17 -14 -39 -25 -60 -34c-32 -13 -60 -22 -94 -32l-11 18c16 6 29 12 44 24c15 16 24 35 24 55c0 13 -11 70 -21 102c-16 50 -22 80 -22 100c0 19 2 39 13 55c-31 -2 -52 -15 -74 -33 c-43 -36 -57 -95 -57 -144c0 -96 39 -190 121 -258c60 -51 140 -84 227 -84c48 0 97 12 132 39c41 31 57 81 57 128'], + 0xE5E6: [684,127,931,32,800,'800 242c0 -87 -15 -173 -52 -254l-163 -100c-14 -8 -31 -15 -48 -15c-39 0 -74 17 -99 40l60 70l16 1c7 -14 17 -28 30 -38c10 -8 22 -15 37 -15c21 0 37 8 53 20c38 31 38 150 38 227c0 34 -4 138 -46 172c-27 22 -63 38 -100 38c-24 0 -47 -2 -68 -9 c-19 -7 -45 -19 -83 -48c24 -40 47 -94 47 -126c0 -27 -7 -58 -29 -78l-169 -145c-17 15 -35 29 -54 40c-14 7 -28 14 -44 14c-34 0 -68 -30 -78 -39l-16 18c48 47 118 117 163 117c43 0 78 -29 101 -56c18 20 30 40 30 64c0 34 -42 101 -74 149s-62 100 -62 156 c0 25 14 48 30 69c24 33 54 62 85 90c34 30 78 55 119 80c21 -18 45 -35 70 -48c17 -9 37 -17 57 -17c35 0 90 34 114 51l14 -18c-36 -32 -91 -80 -142 -111c-15 -4 -32 -7 -48 -7c-60 0 -113 27 -160 56c-21 -18 -38 -40 -38 -65c0 -23 6 -45 15 -66c15 -35 34 -71 54 -102 c58 43 128 88 191 122c65 0 151 -23 190 -45c10 -5 31 -29 35 -40c20 -58 24 -91 24 -152'], + 0xE5E7: [683,25,731,64,667,'667 655c-62 -48 -135 -98 -209 -133l-112 36c-34 9 -67 18 -103 18c-33 0 -68 -12 -92 -31c-27 -23 -47 -53 -65 -82h-7l-15 14c19 37 39 73 63 108c15 22 31 44 53 61c30 24 71 37 112 37c39 0 91 -19 135 -34c36 -13 94 -33 113 -33s35 5 52 13c23 11 45 26 66 41z M651 568c-24 -17 -40 -31 -57 -53c-12 -16 -23 -40 -23 -60c0 -24 0 -54 3 -72c8 -48 15 -97 15 -145c0 -60 -25 -122 -77 -165c-66 -56 -144 -98 -240 -98c-49 0 -94 21 -131 47l-63 -38l-7 18c48 48 107 96 162 138c24 -42 38 -67 75 -97c14 -11 32 -15 50 -15 c25 0 43 8 61 21c15 13 25 38 31 56c8 25 8 51 8 77c0 10 -8 75 -12 112c-3 26 -5 52 -5 77c0 21 1 42 4 62c52 55 112 104 181 145'], + 0xE5E8: [681,142,729,24,659,'659 586c-69 -33 -151 -64 -227 -85c-29 12 -71 37 -77 41c-36 19 -75 37 -119 37c-24 0 -53 -7 -69 -21c-23 -18 -37 -40 -51 -62l-19 14c27 46 56 91 100 127c31 26 72 44 115 44c18 0 33 -7 47 -14c25 -11 47 -24 70 -38c21 -14 44 -28 67 -39c14 -6 30 -11 46 -11 c33 0 79 16 117 30v-23zM615 517c-46 -40 -83 -88 -84 -145c0 -44 7 -87 20 -129c15 -52 31 -105 31 -159c0 -56 -22 -111 -70 -151c-53 -44 -122 -75 -197 -75c-38 0 -79 3 -107 26c-30 25 -43 59 -48 94c-6 29 -13 73 -25 83c-11 9 -27 15 -43 15c-20 0 -40 -8 -59 -17 l-9 18c30 20 63 39 99 53c26 11 55 19 84 19c21 0 42 -5 58 -18c10 -8 12 -21 13 -33c1 -6 1 -67 1 -100s11 -65 39 -88c12 -10 28 -17 44 -17c27 0 51 7 70 23c26 22 32 59 32 90c0 47 -18 111 -35 165c-15 46 -26 93 -26 140c0 17 2 34 5 51c51 62 112 117 182 164'], + 0xE5E9: [682,26,868,52,861,'861 69c-31 -26 -65 -51 -103 -71c-23 -12 -49 -24 -76 -24c-18 0 -37 1 -49 11c-34 29 -46 69 -52 108c-2 11 -12 72 -38 108c-8 11 -30 29 -74 29c-36 0 -72 -11 -100 -24c1 -13 3 -25 3 -37c0 -14 -2 -28 -7 -45c-44 -46 -95 -93 -153 -127c-14 -8 -28 -14 -40 -19 c-39 0 -74 14 -95 30c-3 2 -16 15 -25 24l88 85h14c9 -20 18 -39 36 -54c9 -8 22 -17 36 -17c10 0 23 2 29 8c16 14 19 33 19 53c0 34 -25 91 -42 133c-24 55 -45 111 -45 169c0 30 13 59 31 85c23 35 54 65 87 93c71 59 166 95 266 95c119 0 158 -35 186 -64 c2 -10 3 -19 3 -30c0 -22 -5 -50 -22 -98l-21 -6c-7 39 -25 58 -50 79c-46 39 -114 62 -179 62c-55 0 -110 -15 -150 -48c-28 -24 -39 -57 -39 -90c0 -43 10 -84 24 -125c42 39 86 75 139 104c37 19 78 36 122 36c22 0 45 -4 61 -17c16 -15 29 -44 38 -68 c6 -18 12 -35 22 -44c6 -6 17 -10 27 -10c12 0 24 0 47 6l5 -21l-200 -65c80 -15 97 -46 110 -126c7 -41 28 -67 46 -79c13 -8 29 -11 46 -11c25 0 48 11 68 24zM599 312c-13 9 -29 36 -36 55c-4 17 -12 35 -27 47c-11 9 -25 18 -40 18c-38 0 -73 -15 -99 -37 c-24 -20 -44 -52 -59 -81c8 -26 17 -58 23 -84c33 14 105 46 182 59'], + 0xE5EA: [684,28,865,63,811,'811 200c-10 -40 -22 -81 -39 -119c-12 -24 -23 -48 -44 -66c-31 -25 -71 -43 -115 -43c-94 0 -185 23 -272 53c-50 17 -121 41 -154 41c-19 0 -39 -6 -53 -17c-12 -11 -38 -44 -55 -67l-16 13c28 59 66 115 119 161c11 6 25 9 42 9c7 0 14 0 22 -2c15 4 37 12 48 21 c15 12 21 30 21 47c0 22 -38 78 -63 115c-21 32 -38 67 -38 104c0 25 11 50 26 72c19 30 46 57 76 81c68 57 165 81 261 81c40 0 83 -5 113 -29c13 -12 17 -27 20 -43c4 -23 3 -47 0 -70c-2 -13 -3 -21 -3 -34c0 -17 9 -31 25 -42c6 -5 46 -5 64 -5v-18l-175 -49 c-11 0 -22 1 -30 7c-13 12 -21 27 -21 43c0 14 4 26 6 40c2 17 5 48 5 52c0 23 -8 46 -28 62c-25 21 -61 30 -97 30c-32 0 -66 -8 -89 -27c-25 -21 -36 -49 -36 -78c0 -40 18 -78 38 -115c14 -26 26 -53 34 -82c5 -15 8 -31 8 -47c0 -5 -1 -17 -5 -22 c-24 -29 -69 -72 -118 -104l156 -47c57 -17 118 -24 180 -24c42 0 85 11 116 37c29 24 43 58 52 92'], + 0xE5EB: [686,33,1327,59,1289,'1289 548c-49 -25 -75 -41 -119 -72c-5 -4 -25 -28 -28 -39c-9 -36 -9 -61 -9 -97c0 -55 2 -110 14 -164c4 -19 10 -37 18 -55c6 -13 10 -18 22 -27c7 -6 20 -9 30 -9c9 0 42 2 62 9v-18l-182 -109l-82 111c0 105 1 237 7 289c33 48 64 77 102 103c-11 3 -18 5 -26 17 c-9 14 -23 40 -32 62c-7 18 -16 36 -29 48c-11 8 -24 15 -38 15c-25 0 -50 -5 -70 -16c-26 -14 -41 -26 -62 -45c5 -28 9 -72 9 -101c0 -107 -15 -216 -71 -313l-173 -165c-14 12 -29 24 -46 33c-11 6 -24 12 -38 12c-18 0 -37 -5 -50 -16l-16 -14l-18 15c26 28 68 71 80 82 c19 17 45 33 74 33c26 0 58 -24 79 -41c28 34 37 72 46 112c13 59 14 124 14 183c0 40 -3 80 -15 119c-9 27 -22 54 -45 74c-14 12 -33 23 -53 23c-15 0 -29 -4 -42 -10c-16 -9 -32 -21 -51 -35c8 -31 14 -62 14 -94c0 -107 -34 -221 -88 -318l-224 -155 c-13 15 -28 29 -46 39c-14 8 -29 14 -45 14c-21 0 -40 -5 -56 -17c-10 -8 -24 -20 -30 -26l-15 15c29 32 67 72 92 92c24 20 55 31 88 31c16 0 31 -7 43 -15c18 -11 36 -28 49 -44c14 10 26 19 36 28c28 25 39 60 51 95c15 51 20 104 20 157c0 46 -4 94 -18 139 c-12 32 -28 66 -56 90c-32 27 -72 46 -119 46c-21 0 -52 -1 -68 -15c-13 -11 -24 -23 -24 -39c0 -17 37 -59 63 -85c43 -43 59 -67 59 -84c0 -29 -22 -55 -46 -76c-36 -29 -76 -51 -118 -72l-19 17c22 10 39 20 54 35c10 11 21 24 21 38c0 20 -28 54 -51 76 c-27 26 -59 63 -59 89c0 18 12 35 23 51c18 24 42 45 66 65c54 45 140 67 192 67c49 0 106 -15 142 -44c24 -20 47 -47 59 -74c31 23 63 44 100 59c26 11 56 20 87 20c35 0 69 -12 94 -32c14 -12 24 -25 34 -38c37 30 78 58 124 78c36 16 75 28 117 28c15 0 31 -2 44 -12 c10 -9 25 -37 34 -55c9 -16 18 -32 32 -44c9 -9 21 -14 35 -14c16 0 31 3 47 8v-18'], + 0xE5EC: [681,33,1065,59,1019,'1019 542c-30 -13 -67 -37 -110 -66c-5 -4 -25 -28 -28 -39c-9 -36 -10 -61 -10 -97c0 -55 3 -110 15 -164c4 -19 10 -37 18 -55c6 -13 10 -18 22 -27c7 -6 20 -9 30 -9c9 0 42 2 62 9v-18l-182 -109l-82 111c0 105 1 237 7 289c33 48 64 79 102 105c-14 0 -26 7 -35 15 c-14 12 -24 27 -30 42c-10 25 -25 57 -42 71c-11 8 -24 14 -39 14c-25 0 -54 -16 -73 -30c-36 -28 -58 -50 -84 -83c16 -48 25 -113 25 -166c0 -72 -13 -144 -45 -210l-209 -143c-9 -4 -24 -10 -30 -10c-52 0 -95 27 -130 57l89 94h20c5 -14 20 -33 39 -49 c14 -11 32 -17 53 -17c25 0 47 14 65 28c15 13 19 31 23 49c8 29 10 58 10 88c0 70 -9 140 -32 208c-17 51 -44 100 -89 138c-31 26 -71 47 -117 47c-22 0 -45 -3 -61 -16c-13 -11 -20 -24 -20 -39s10 -30 18 -43c14 -20 31 -38 50 -56c14 -13 27 -27 37 -43 c8 -10 11 -21 11 -33c0 -26 -18 -46 -38 -65c-33 -31 -72 -55 -113 -78l-23 16c19 11 36 24 49 39c9 11 18 23 18 37c0 20 -20 39 -37 55c-19 18 -35 36 -47 56c-9 15 -17 30 -17 47c0 20 9 39 20 57c16 24 36 46 60 64c53 39 125 68 199 68c50 0 100 -15 136 -45 c33 -28 58 -63 71 -101c23 22 45 43 69 63c51 43 115 80 189 80c26 0 54 -3 73 -19c10 -9 24 -36 36 -64c6 -13 15 -24 26 -34c6 -7 13 -13 23 -13c19 0 37 3 53 9'], + 0xE5ED: [726,29,1059,43,931,'931 378c0 -86 -30 -170 -83 -244c-58 -51 -119 -88 -189 -121c-49 -23 -102 -42 -158 -42c-65 0 -128 18 -191 37c-41 13 -91 28 -127 28c-48 0 -88 -25 -118 -54l-22 22l91 110c36 8 71 17 97 38c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -32 50 -53 76 c-27 32 -51 74 -52 104c0 44 78 117 153 157l14 -14c-26 -18 -57 -42 -57 -77c0 -16 25 -67 48 -98c24 -32 41 -59 60 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -57 -62 -90 -83c23 0 42 -2 72 -9c59 -14 119 -31 176 -50c50 -17 84 -27 150 -27 c27 0 52 15 71 29c34 25 49 66 62 101c15 49 20 100 20 150c0 40 -5 81 -18 119c-12 30 -27 59 -53 81c-25 20 -57 29 -90 36c-47 10 -76 13 -125 13c-25 0 -48 -1 -69 -3c-16 -1 -30 -1 -45 -1c-47 0 -65 26 -65 36c0 24 4 35 36 60c18 13 53 45 63 58h25 c-6 -9 -11 -19 -11 -30c0 -9 10 -15 21 -17c12 -3 70 -5 105 -7c57 -3 114 -10 168 -24c41 -12 80 -27 111 -53c30 -24 46 -55 58 -87c16 -42 21 -86 21 -130'], + 0xE5EE: [685,223,1060,51,995,'995 511c-46 -20 -91 -41 -129 -69c-15 -12 -29 -27 -29 -45c0 -32 18 -61 39 -88c23 -31 55 -74 55 -104c0 -24 -5 -48 -20 -69c-24 -35 -49 -63 -84 -94c-20 -18 -43 -36 -69 -47c-19 -9 -41 -15 -62 -15c-55 0 -111 18 -160 39c0 -54 5 -106 14 -160l-141 -82l-27 14 c12 35 16 70 20 105c5 52 7 106 7 158c-27 11 -61 22 -87 22c-38 0 -69 -18 -94 -40c-19 -15 -37 -30 -52 -48l-15 19c32 47 71 104 109 135c25 21 58 37 95 37c12 0 27 -1 43 -6v196c0 43 -6 87 -21 128c-12 33 -30 64 -58 88c-25 20 -54 34 -89 34c-39 0 -59 -12 -72 -22 c-16 -13 -23 -30 -23 -49c0 -12 10 -26 19 -36c13 -16 26 -32 42 -46c27 -24 53 -59 53 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-37 -32 -77 -57 -122 -82l-16 19c19 12 30 21 44 38c10 12 18 26 18 41c0 16 -27 46 -47 67c-14 15 -31 29 -42 46c-8 9 -8 23 -8 35 c0 23 12 44 25 64c18 27 43 51 68 73c46 38 106 67 185 67c55 0 99 -17 137 -48c24 -20 48 -53 61 -80c43 36 89 71 143 94c39 17 82 30 126 30c21 0 44 -2 59 -15c15 -12 21 -42 25 -65c2 -20 11 -39 25 -56c10 -11 24 -22 41 -22c13 0 31 4 42 7zM842 109 c0 15 -8 34 -16 47c-13 21 -27 40 -43 59c-27 32 -58 76 -58 100c0 19 9 37 23 52c26 28 55 53 86 76c-20 3 -40 9 -49 17c-8 6 -24 22 -24 62c0 15 -2 30 -6 44c-3 10 -7 20 -15 27c-14 12 -33 19 -52 19c-38 0 -71 -17 -97 -39c-10 -9 -36 -33 -55 -55v-376l178 -63 c27 -9 51 -17 79 -17c12 0 24 4 33 11c12 10 16 22 16 36'], + 0xE5EF: [726,82,1059,43,967,'967 -3c-54 -28 -109 -55 -166 -79c-61 22 -119 48 -172 83c-37 -17 -86 -30 -128 -30c-65 0 -128 18 -191 37c-41 13 -91 28 -127 28c-48 0 -88 -25 -118 -54l-22 22l91 110c36 8 71 17 97 38c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -32 50 -53 76 c-27 32 -51 74 -52 104c0 44 78 117 153 157l14 -14c-26 -18 -57 -42 -57 -77c0 -16 25 -67 48 -98c24 -32 41 -59 60 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -57 -62 -90 -83c23 0 42 -2 72 -9c59 -14 119 -31 176 -50c50 -17 84 -27 150 -27 c27 0 52 15 71 29c34 25 49 66 62 101c15 49 20 100 20 150c0 40 -5 81 -18 119c-12 30 -27 59 -53 81c-25 20 -57 29 -90 36c-47 10 -76 13 -125 13c-25 0 -48 -1 -69 -3c-16 -1 -30 -1 -45 -1c-47 0 -65 26 -65 36c0 24 4 35 36 60c18 13 53 45 63 58h25 c-6 -9 -11 -19 -11 -30c0 -9 10 -15 21 -17c12 -3 70 -5 105 -7c57 -3 114 -10 168 -24c41 -12 80 -27 111 -53c30 -24 46 -55 58 -87c16 -42 21 -86 21 -130c0 -86 -30 -170 -83 -244c-22 -24 -57 -48 -86 -68c20 -18 40 -33 65 -47c16 -8 33 -17 53 -17c29 0 59 7 87 16 v-21'], + 0xE5F0: [689,29,1060,51,1029,'1029 72l-174 -101c-23 46 -58 92 -91 137c0 46 0 118 -3 139c-2 18 -9 45 -24 59c-21 16 -40 29 -67 34c-16 3 -32 4 -47 4c-21 0 -42 -7 -61 -15c-11 -68 -31 -118 -68 -179l-235 -178l-52 41c-10 8 -23 15 -36 15c-14 0 -25 -3 -36 -9c-17 -9 -30 -22 -42 -37l-16 16 c45 53 115 126 161 126c22 0 35 -7 45 -14c19 -13 37 -28 53 -43c13 9 26 19 39 29c29 24 38 59 46 93c13 55 16 111 16 168c0 43 -6 86 -21 128c-14 33 -35 65 -66 91c-28 24 -63 43 -109 43c-29 0 -60 -12 -73 -22c-16 -13 -23 -30 -23 -49c0 -12 10 -26 19 -36 c13 -16 26 -32 42 -46c27 -24 53 -59 53 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-37 -32 -77 -57 -122 -82l-16 19c19 12 30 21 44 38c10 12 18 26 18 41c0 16 -27 46 -47 67c-14 15 -31 29 -42 46c-8 9 -8 23 -8 35c0 23 12 44 25 64c18 27 43 51 68 73 c46 38 111 71 191 71c64 0 111 -19 153 -54c26 -22 51 -52 62 -81c36 35 79 72 125 98c33 18 71 33 111 33c26 0 51 -7 69 -23c22 -17 26 -48 29 -74c3 -23 6 -53 21 -66c12 -10 30 -12 46 -12c11 0 26 1 38 5l6 -13c-95 -36 -149 -62 -214 -101c34 -4 74 -22 95 -45 c0 -58 1 -127 8 -163c4 -22 12 -45 25 -63c12 -16 25 -30 40 -43c7 -6 22 -6 35 -6c14 0 29 7 44 14zM826 458c-15 0 -31 6 -42 16c-15 13 -20 41 -24 64c-3 23 -9 55 -21 65c-9 8 -21 15 -34 15c-29 0 -55 -14 -75 -31c-29 -25 -45 -43 -66 -73c3 -17 4 -47 4 -64 c0 -31 -2 -59 -4 -92c44 18 107 43 160 47'], + 0xE5F1: [685,31,1061,116,956,'956 261c0 -69 -45 -129 -103 -177c-96 -80 -229 -115 -363 -115c-100 0 -196 32 -266 91c-78 64 -108 151 -108 252c0 100 46 184 128 253c80 65 167 91 293 120c45 -16 87 -37 130 -55c51 -21 113 -46 160 -46c25 0 47 7 65 22c17 14 25 28 34 47l25 -14 c-12 -31 -35 -59 -62 -82c-34 -28 -77 -47 -123 -58c-18 -4 -36 -9 -56 -9c-26 0 -50 12 -72 23l-134 67c-28 14 -59 30 -91 30c-35 0 -69 -14 -93 -34c-60 -49 -83 -118 -83 -187c0 -95 32 -192 114 -260c69 -57 161 -88 258 -88c81 0 163 18 220 66c28 24 41 58 41 91 c0 32 -16 63 -43 85c-37 31 -91 39 -142 39c-45 0 -88 -8 -131 -17c-43 -8 -113 -22 -127 -22c-34 0 -68 7 -91 27c-20 17 -29 40 -29 64c0 37 24 70 55 96c29 24 68 37 106 45l13 -14c-11 -4 -22 -12 -31 -19c-17 -14 -30 -33 -30 -53c0 -16 5 -31 18 -42 c18 -15 47 -15 71 -15c49 0 96 5 143 13c46 7 90 21 136 21c44 0 89 -10 120 -36c34 -29 48 -69 48 -109'], + 0xE5F2: [691,30,868,63,846,'846 659l-123 -118c-30 -9 -62 -13 -94 -13c-43 0 -100 8 -142 15c-33 -28 -49 -49 -49 -85c0 -16 9 -36 19 -49c15 -19 33 -39 51 -56c35 -32 84 -77 84 -106c0 -35 -71 -91 -119 -127c49 -19 120 -46 159 -46c19 0 39 6 56 14c28 11 53 27 77 43l12 -24 c-57 -50 -120 -95 -185 -137c-54 0 -105 18 -153 38c-40 16 -87 34 -125 34c-19 0 -38 0 -52 -5c-37 -13 -61 -30 -90 -52l-12 18c58 51 121 97 194 132c31 0 64 -1 93 -8c19 15 30 33 30 55c0 24 -43 66 -74 94c-19 18 -37 37 -54 57c-11 14 -20 29 -25 45 c32 63 77 122 136 171c-76 14 -194 37 -228 37c-28 0 -63 -3 -83 -19c-13 -11 -18 -27 -18 -41c0 -39 36 -68 73 -89l2 -10l-84 -68c-33 25 -59 58 -59 96c0 51 31 98 74 135c64 53 147 90 239 90c37 0 126 -14 188 -25c50 -7 101 -14 153 -14c47 0 96 23 129 50v-32'], + 0xE5F3: [689,39,931,48,920,'920 72l-204 -111l-72 123l-130 -105c-18 -11 -41 -13 -56 -13c-46 0 -90 14 -131 30c-53 21 -119 42 -169 42c-18 0 -44 -8 -91 -50l-19 20l108 109c34 5 72 15 89 25c19 11 53 38 62 65c4 11 4 26 4 37c0 20 -6 40 -15 60c-11 27 -27 53 -45 78c-26 39 -60 90 -60 122 c0 7 0 16 2 22c15 25 64 80 106 114c22 18 46 34 73 49l23 -16c-16 -10 -31 -22 -47 -34c-17 -14 -30 -32 -30 -53c0 -37 16 -73 35 -107c24 -40 42 -83 51 -127c4 -17 7 -34 7 -51c0 -18 -3 -35 -9 -52c-38 -42 -97 -103 -127 -121c27 -4 95 -26 138 -41 c37 -13 81 -24 116 -24c31 0 56 18 78 36c15 13 23 30 24 47c4 67 7 134 7 201c0 82 -5 164 -13 246c68 24 130 57 190 92l18 -15l-26 -24c-25 -26 -34 -60 -39 -93c-7 -58 -8 -115 -8 -173c0 -61 1 -121 5 -182c2 -18 2 -22 16 -52c9 -21 22 -44 36 -59c8 -9 20 -13 34 -13 s44 10 65 18'], + 0xE5F4: [687,29,1064,58,1017,'1017 604c-18 -10 -34 -22 -50 -35c-37 -31 -73 -69 -73 -115c0 -27 0 -58 5 -81l17 -95c4 -22 7 -45 7 -68c0 -46 -16 -88 -57 -120c-47 -39 -108 -82 -128 -93c-28 -15 -58 -26 -92 -26c-26 0 -52 8 -77 16c-41 13 -80 29 -119 46c-33 15 -67 29 -103 40 c-22 7 -45 13 -68 13c-24 0 -46 -7 -66 -16c-29 -12 -56 -28 -79 -46l-13 18c51 42 111 82 169 121c31 7 56 22 79 40c20 17 29 41 35 65c10 36 14 74 14 111c0 42 -6 84 -20 124c-11 31 -27 61 -55 84c-25 21 -55 37 -95 37c-30 0 -61 -17 -74 -27c-16 -13 -23 -30 -23 -49 c0 -12 11 -26 19 -36c13 -16 27 -32 43 -46c26 -24 53 -59 53 -80c0 -11 -1 -21 -8 -30c-8 -14 -16 -28 -28 -39c-37 -32 -77 -57 -122 -82l-16 19c20 12 30 21 44 38c10 12 18 26 18 41c0 16 -27 46 -47 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64 c18 27 43 51 68 73c46 38 112 69 191 69c53 0 95 -13 129 -41c32 -27 58 -69 67 -107c43 40 89 81 140 111c29 17 61 35 96 35c17 0 34 -5 51 -10c22 -8 43 -19 64 -31c20 -12 50 -29 65 -29c21 0 42 3 63 14zM881 527c-41 0 -78 16 -112 35c-28 17 -63 36 -94 36 c-23 0 -41 -14 -57 -27c-28 -22 -50 -49 -71 -76c1 -14 2 -29 2 -43c0 -65 -12 -130 -46 -190l-119 -88c42 -1 146 -46 217 -75c48 -20 107 -44 151 -44c13 0 30 4 39 12c10 8 13 22 13 34c0 17 -2 38 -5 56l-23 129c-4 21 -4 41 -4 62c0 29 0 71 12 86c27 31 63 63 97 93'], + 0xE5F5: [682,30,1323,64,1296,'1296 603c-37 -26 -85 -61 -115 -98c-18 -22 -24 -47 -24 -74c0 -23 10 -62 18 -93c12 -42 22 -81 22 -124c0 -22 -2 -43 -7 -65c-4 -15 -9 -29 -21 -41l-184 -123c-25 -8 -49 -13 -75 -13c-35 0 -76 14 -112 25c-59 19 -118 35 -181 42c-42 -19 -88 -42 -128 -64 c-10 -4 -22 -5 -36 -5c-53 0 -102 20 -148 43c-32 16 -68 32 -101 32c-21 0 -40 -6 -58 -15c-24 -11 -46 -27 -66 -44l-13 22c52 48 111 90 170 132c55 0 92 14 124 41c28 23 43 53 55 84c14 42 18 86 18 129c0 67 -15 136 -74 184c-27 24 -61 39 -105 39 c-30 0 -62 -10 -75 -20c-15 -13 -23 -30 -23 -49c0 -12 11 -26 19 -36c13 -16 27 -32 43 -46c26 -24 53 -59 53 -80c0 -11 -1 -21 -7 -30c-9 -14 -17 -28 -29 -39c-37 -32 -76 -57 -121 -82l-17 19c20 12 30 21 44 38c10 12 19 26 19 41c0 16 -28 46 -47 67 c-15 15 -32 29 -43 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 43 51 68 73c46 38 111 64 189 64c64 0 113 -19 154 -53c25 -20 42 -46 53 -73c65 45 113 76 182 114c36 -19 61 -48 103 -110c38 32 79 65 124 91c29 15 57 31 92 31c38 0 71 -16 103 -33 c31 -16 63 -33 100 -33c11 0 30 7 40 12v-25zM745 349c0 42 -3 85 -14 126c-8 28 -19 55 -43 76c-15 12 -33 22 -51 31c-31 -18 -54 -36 -76 -53c3 -14 5 -48 5 -62c0 -93 -23 -185 -90 -261l-138 -75c16 -5 68 -26 101 -42c37 -18 77 -34 121 -34c8 0 15 2 22 5 c31 14 68 30 88 50c28 27 49 57 60 91c15 50 15 96 15 148zM1158 527c-2 -1 -14 -1 -24 -1c-24 0 -66 20 -83 33c-22 16 -72 28 -91 28c-20 0 -43 -3 -60 -12c-21 -13 -36 -25 -51 -43c8 -36 13 -81 13 -118c0 -70 -20 -137 -51 -202c-28 -37 -50 -62 -78 -82 c49 0 142 -32 205 -54c28 -10 58 -20 90 -20c13 0 25 6 35 12c11 8 17 21 17 52c0 34 -13 96 -26 140c-12 41 -20 81 -20 120c0 19 2 42 55 86'], + 0xE5F6: [682,35,929,65,884,'884 578l-134 -64c-49 17 -85 50 -111 87c-77 -58 -108 -93 -108 -235c66 0 149 0 198 4l-66 -58c-43 3 -111 3 -137 3c0 -79 20 -160 88 -217c31 -26 75 -38 119 -38c32 0 76 16 112 30v-24c-47 -27 -91 -59 -135 -91c-23 -7 -62 -10 -65 -10c-42 0 -82 14 -111 38 c-19 15 -32 34 -44 52c-16 27 -29 56 -41 84c-59 -54 -122 -106 -197 -146c-20 -11 -49 -25 -65 -25c-32 0 -84 30 -122 53l82 81c18 -15 37 -29 59 -39c16 -8 33 -14 52 -14c15 0 29 4 41 10c19 9 35 21 50 33c27 23 40 56 49 86c13 45 18 91 18 137c-72 0 -161 0 -214 -3 l67 56l149 -2c0 38 -2 77 -13 115c-7 24 -17 46 -38 64c-22 18 -48 33 -79 33c-38 0 -69 -11 -95 -33l-42 -37l-18 20c54 54 114 104 176 152c52 -5 104 -17 142 -48c35 -29 61 -66 67 -107c25 30 55 57 85 83c40 33 89 57 142 74c14 -30 30 -60 57 -82c10 -9 26 -10 40 -10 s30 4 42 7v-19'], + 0xE5F7: [689,214,1066,65,929,'929 339c0 -123 -28 -246 -84 -360c-52 -56 -113 -105 -187 -142c-60 -30 -127 -51 -198 -51c-62 0 -123 17 -167 53l51 97l15 -2c10 -25 22 -50 44 -69c28 -23 68 -31 105 -31c62 0 122 16 166 52c50 42 73 98 90 154c26 82 32 166 32 251c0 53 -2 107 -14 159 c-7 31 -17 63 -41 86c-22 20 -50 31 -82 31c-20 0 -51 -6 -68 -17c-21 -13 -31 -20 -45 -38c4 -18 6 -48 6 -66c0 -77 -12 -151 -60 -217c-47 -34 -102 -70 -147 -96c11 -1 69 -21 100 -34c27 -12 59 -20 89 -20c17 0 32 8 47 15c24 12 46 27 67 43l6 -21 c-47 -55 -99 -107 -167 -143c-59 9 -115 32 -169 57c-27 13 -65 20 -92 20c-24 0 -47 -7 -68 -17c-27 -13 -51 -31 -73 -50l-19 19c51 50 102 100 163 142c14 3 27 4 39 4c14 0 29 -1 45 -2c18 9 40 21 59 36c23 21 30 49 37 77c11 46 14 93 14 139c0 69 -24 138 -83 187 c-23 20 -50 37 -87 37c-31 0 -59 -15 -72 -25c-15 -13 -23 -30 -23 -49c0 -12 11 -26 19 -36c13 -16 27 -32 43 -46c26 -24 53 -59 53 -80c0 -11 -1 -21 -7 -30c-9 -14 -17 -28 -29 -39c-37 -32 -76 -57 -121 -82l-17 19c20 12 30 21 44 38c10 12 19 26 19 41 c0 16 -28 46 -47 67c-15 15 -32 29 -43 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 43 51 68 73c46 38 113 65 193 65c53 0 94 -17 128 -45c27 -23 45 -62 58 -96c42 32 86 62 131 91c33 20 67 40 103 56c36 -40 83 -71 134 -95c12 -85 25 -172 25 -255'], + 0xE5F8: [718,137,804,49,678,'678 232c0 -55 -8 -111 -29 -164c-17 -43 -43 -84 -81 -117c-69 -56 -161 -88 -257 -88c-36 0 -82 0 -111 2c-14 2 -34 5 -34 20l1 51c0 11 -4 22 -14 29c-7 7 -17 11 -28 11c-24 0 -46 -9 -65 -20l-11 15c31 22 66 41 102 56c29 11 59 19 91 19c16 0 34 -3 45 -12 c14 -12 15 -37 15 -49c0 -11 -2 -22 -4 -32c-3 -13 -3 -28 -3 -41c0 -10 12 -16 22 -19c6 -2 14 -3 22 -3c46 0 89 16 120 43c29 23 43 60 53 92c16 42 20 87 20 131c0 29 -3 76 -28 96c-35 29 -86 37 -135 37c-37 0 -74 -8 -110 -17l-17 13l57 81c50 9 94 32 130 61 c32 27 44 64 44 101c0 9 -2 18 -11 25c-17 14 -41 18 -65 18c-30 0 -61 -2 -91 -5c-31 -4 -93 -11 -97 -11c-23 0 -45 7 -63 21c-6 5 -12 20 -15 33c27 37 68 84 94 108l18 1c-2 -6 -4 -13 -4 -20c0 -8 3 -17 11 -24c10 -8 26 -10 40 -10l181 6c36 0 75 -5 102 -27 c14 -12 24 -28 24 -46c0 -62 -44 -115 -96 -159c-26 -22 -69 -46 -102 -62c105 0 194 -4 256 -66c13 -14 23 -62 23 -78'], + 0xE5F9: [472,32,678,113,631,'631 82l-148 -111c-21 30 -45 58 -74 83l-1 26l-189 -112c-40 32 -74 68 -104 105c-1 20 -2 39 -2 59c0 79 8 157 21 235c70 30 137 67 201 105c41 -16 85 -25 128 -32l68 28l8 -7c-17 -66 -17 -133 -17 -200l3 -118l53 -63c11 0 33 12 48 20zM407 110l-2 256 c-50 0 -100 11 -148 23c-15 -24 -27 -61 -27 -153c0 -32 1 -65 4 -98c25 -25 53 -52 83 -72c14 0 63 27 90 44'], + 0xE5FA: [691,32,664,120,546,'546 314c0 -73 -5 -146 -19 -218c-89 -48 -179 -94 -277 -128c-47 32 -92 65 -130 103c13 112 13 227 13 340c0 85 -3 171 -13 255l20 8l26 -78c55 34 115 71 170 95l16 -13c-27 -19 -46 -36 -68 -58c-13 -13 -22 -30 -28 -47c-8 -26 -9 -52 -9 -78v-107l9 -4l145 90 c36 -17 94 -41 142 -60c2 -33 3 -67 3 -100zM425 252c0 32 -2 63 -5 95c-41 20 -66 29 -97 37c-22 -4 -56 -23 -74 -36l1 -216c22 -18 48 -40 76 -55c19 -11 40 -20 62 -23c20 40 30 83 34 126c2 25 3 49 3 72'], + 0xE5FB: [473,26,536,121,464,'464 429l-79 -96h-10c-49 42 -92 57 -117 63c-12 -19 -17 -96 -17 -126c0 -38 3 -78 6 -116c33 -29 65 -57 103 -82l108 42v-21c-64 -41 -171 -104 -201 -119c-48 34 -91 73 -132 114c-3 42 -4 87 -4 130c0 53 3 104 13 148l199 107c47 -8 92 -22 131 -44'], + 0xE5FC: [632,29,663,31,553,'553 368c0 -88 -14 -176 -45 -260c-50 -40 -142 -93 -217 -137c-60 33 -117 71 -168 114c-3 18 -5 45 -5 78c0 46 3 106 8 172c48 43 113 89 168 124l23 -10c-21 -15 -47 -41 -67 -60c-10 -48 -11 -88 -11 -135c0 -35 3 -71 5 -106c40 -34 87 -62 138 -82 c24 40 51 109 51 243c0 34 -2 68 -5 102c-51 40 -105 78 -166 109c-38 20 -80 38 -125 38c-31 0 -64 -9 -92 -20l-14 19c57 30 119 53 182 75c55 -2 101 -24 148 -49c60 -31 129 -71 185 -108c5 -36 7 -72 7 -107'], + 0xE5FD: [471,28,544,114,470,'470 362c-63 -51 -164 -122 -246 -181c0 0 5 -38 18 -45c27 -20 54 -38 103 -68c32 5 77 23 112 40l10 -16c-66 -41 -132 -82 -201 -120c-54 34 -102 73 -147 114c-3 36 -5 72 -5 108c0 59 4 118 14 176l196 101c46 -38 93 -76 146 -109zM362 316c-39 24 -104 71 -119 83 c-15 -69 -21 -114 -21 -185c46 31 98 67 140 102'], + 0xE5FE: [681,242,458,70,427,'427 398l-17 -39h-123c0 -117 0 -236 -19 -347c-3 -15 -11 -32 -19 -46l-115 -208l-21 4c15 34 41 97 47 131c5 38 9 83 9 125v341h-99v8l15 38h74c-13 40 -17 75 -25 115c13 48 35 92 76 127c28 23 67 34 105 34c15 0 31 -5 43 -12c21 -10 38 -23 54 -38l-74 -82h-16 c-12 17 -21 30 -38 43c-11 9 -27 19 -42 19c-14 0 -28 -2 -40 -11c-11 -10 -17 -25 -17 -39c0 -33 27 -61 54 -85c14 -13 28 -26 38 -41c7 -11 9 -16 13 -30h137v-7'], + 0xE5FF: [473,208,669,48,584,'454 -74c0 37 -18 106 -32 157l-202 -133c56 -30 140 -75 180 -75c17 0 34 1 45 11c9 7 9 26 9 40zM584 -22c-62 -66 -131 -128 -206 -184c-11 -1 -21 -2 -32 -2c-32 0 -65 6 -96 14c-52 15 -101 39 -145 65l-38 -24l-19 15l173 115l-95 93c-4 38 -6 77 -6 115 c0 61 6 121 22 181c65 38 132 75 201 107c42 -19 92 -41 131 -47l87 39l14 -4c-16 -30 -23 -62 -28 -94c-7 -45 -9 -90 -9 -135c0 -86 33 -169 46 -254zM428 343c-58 8 -122 35 -165 57c-12 -52 -18 -112 -18 -166c0 -34 2 -68 6 -102c26 -25 56 -54 92 -70l80 49v66 c0 56 2 111 5 166'], + 0xE600: [687,203,691,122,549,'549 271l-3 -121c-3 -61 -7 -122 -20 -181c-50 -57 -119 -117 -196 -172l-25 14c23 15 51 39 75 61c18 17 28 44 36 68c9 33 18 87 18 175c0 74 -6 148 -12 222c-33 17 -76 35 -113 42l-55 -32c-3 -39 -5 -78 -5 -117c0 -34 2 -68 5 -102c17 -24 35 -46 55 -68 c-42 -24 -81 -54 -118 -84c-19 30 -43 59 -69 86c9 123 16 246 16 370c0 77 -3 155 -10 232l19 9l25 -76c52 31 109 65 158 90l18 -15c-12 -7 -23 -14 -34 -23c-46 -37 -58 -90 -58 -142l-2 -130c52 28 101 62 147 94c46 -23 95 -43 145 -61'], + 0xE601: [686,26,401,34,366,'366 87c-59 -34 -113 -74 -166 -113l-74 82c7 58 10 117 10 176c0 45 -2 89 -5 134l-39 21l-40 -17l-18 12c48 31 95 61 139 96c13 -10 55 -38 83 -56c-3 -56 -5 -112 -5 -169l3 -115c0 -10 5 -20 13 -29c8 -11 20 -27 31 -27c5 0 16 3 18 4l44 19zM279 615l-82 -75 c-32 22 -63 47 -91 73l93 73c24 -25 51 -50 80 -71'], + 0xE602: [683,207,401,13,275,'275 256c0 -95 -6 -191 -26 -285c-63 -61 -144 -127 -220 -178l-16 18c34 21 71 46 97 71c27 27 37 64 40 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -4 30 -16 41c-8 7 -19 12 -32 12l-38 -17l-16 19l133 101c29 -21 56 -39 87 -58c3 -56 5 -112 5 -169zM272 614 l-83 -73c-28 22 -57 44 -82 70l83 72c10 -10 54 -46 82 -69'], + 0xE603: [683,25,537,66,473,'473 90l-202 -115l-132 96c2 15 3 29 4 44l5 193h-82l14 38h69c0 107 0 244 -11 319l22 8l27 -76c46 34 99 62 153 86l15 -16c-26 -14 -41 -26 -58 -47c-11 -15 -20 -31 -23 -48c-6 -23 -7 -49 -7 -73c41 29 96 64 140 86c17 -19 33 -39 45 -60c8 -14 14 -25 14 -41 c0 -21 -16 -38 -31 -54l-84 -84h98l-17 -38h-169c0 -55 1 -118 7 -172l91 -68c10 0 71 25 102 41zM375 435c0 30 -21 60 -42 83c-16 -10 -33 -21 -44 -34c-12 -15 -17 -35 -18 -52c-3 -28 -4 -57 -4 -86h32c17 0 37 19 50 33c17 17 26 36 26 56'], + 0xE604: [682,24,406,134,353,'353 86l-154 -110l-65 79c8 73 11 162 11 257l-8 349l20 4l20 -72c48 32 102 63 156 89l11 -9c-14 -10 -30 -26 -40 -35c-17 -17 -26 -34 -32 -56c-8 -31 -12 -63 -12 -95l-2 -157c0 -76 2 -151 10 -218l26 -29c10 0 33 9 51 18'], + 0xE605: [476,31,1003,48,950,'950 78c-59 -33 -114 -70 -168 -108c-23 31 -48 61 -77 89c11 34 15 92 15 154c0 45 -2 91 -4 131c-30 13 -76 30 -109 38l-56 -34c-3 -39 -4 -76 -4 -115l2 -102l58 -73l-122 -86l-60 81c8 43 10 99 10 157l-2 136c-26 11 -77 24 -108 31l-61 -34l-1 -65 c0 -51 2 -102 6 -152l56 -74l-117 -83c-21 31 -43 63 -67 90c6 45 8 95 8 146l-4 152l-37 27l-46 -19l-14 13l138 98c23 -21 50 -40 80 -56c-2 -17 -4 -51 -4 -51c55 30 106 64 152 103c46 -21 92 -43 142 -56l-3 -40l150 95c48 -21 97 -39 147 -53 c-10 -56 -14 -112 -14 -168c0 -42 2 -84 5 -126l28 -38c5 -4 12 -9 18 -9c0 0 11 3 15 5l35 18'], + 0xE606: [474,28,730,35,652,'652 88c-53 -32 -106 -74 -156 -114c-22 32 -53 64 -82 94c10 48 12 99 12 151l-3 126c-32 15 -76 27 -111 36l-63 -31l1 -221l62 -67l-114 -90c-24 26 -50 53 -79 76c8 25 10 69 10 120c0 64 -4 139 -7 198l-25 22l-44 -21l-18 14l133 93c26 -18 56 -38 83 -50 c-1 -16 -1 -48 -1 -48c54 29 105 62 154 98c42 -22 98 -44 150 -63c-7 -70 -11 -140 -11 -211l1 -68l48 -52c10 3 36 15 51 24'], + 0xE607: [482,34,685,141,558,'558 337c0 -39 -2 -77 -5 -116c-3 -44 -8 -89 -21 -132c-75 -48 -156 -89 -241 -123c-53 30 -103 62 -149 99c-1 20 -1 39 -1 59c0 80 8 159 23 238c72 38 142 78 211 120c55 -33 117 -56 181 -72zM445 272c0 27 -1 55 -4 82c-52 7 -101 24 -148 43 c-16 -25 -32 -79 -32 -159c0 -35 3 -71 8 -107c42 -33 91 -62 148 -76c19 71 28 144 28 217'], + 0xE608: [558,208,679,30,561,'561 310c0 -85 -7 -143 -30 -226c-56 -29 -107 -65 -155 -103c-30 22 -67 36 -106 41c0 -61 4 -122 9 -183l-115 -47l-18 6l6 234c-41 0 -79 -18 -110 -41l-12 17c37 33 85 77 121 89v262c-23 21 -46 51 -53 78c31 44 70 83 110 121l21 -6c-10 -13 -20 -27 -20 -42 c0 -14 8 -26 16 -37c12 -17 27 -32 45 -45v-42l146 96l137 -57c5 -26 8 -87 8 -115zM444 202c0 50 -4 100 -10 147c-34 14 -78 32 -113 42l-51 -35v-226c55 -8 111 -25 160 -53c11 42 14 80 14 125'], + 0xE609: [485,212,670,121,557,'557 479c-30 -103 -30 -291 -30 -438c0 -71 4 -141 9 -212l-115 -41l-20 10c12 93 15 187 15 280l-192 -108l-100 103c-2 22 -3 44 -3 67c0 77 11 155 27 232l198 106c41 -16 84 -29 128 -36l71 43zM418 358c-57 4 -116 23 -147 39c-17 -29 -29 -92 -29 -187 c0 -20 1 -41 1 -62c22 -28 49 -61 78 -83c30 11 63 29 91 45c0 83 0 173 6 248'], + 0xE60A: [473,26,532,44,494,'494 394c-28 -26 -67 -51 -104 -74c-3 -2 -6 -4 -13 -4c-15 0 -23 6 -38 18l-47 39c-5 -3 -14 -10 -18 -14c-2 -18 -4 -73 -4 -123c0 -30 0 -60 2 -89c1 -11 8 -21 16 -29l63 -48l91 31l1 -21l-176 -106c-39 37 -83 70 -128 102c12 43 14 111 14 146c0 44 -1 74 -5 118 c-15 15 -29 29 -48 40l-45 -12l-11 14l142 91l87 -62v-31l109 91c16 -23 32 -49 53 -66c6 -5 14 -7 22 -7c10 0 26 5 37 9v-13'], + 0xE60B: [480,35,596,8,524,'524 442l-146 -100c-19 0 -42 9 -61 17c-30 14 -58 31 -84 49c-6 -23 -9 -46 -9 -69c0 -33 9 -70 28 -100c52 17 106 40 158 63c23 -10 44 -22 64 -36c5 -33 9 -67 9 -101c0 -41 -6 -82 -20 -121c-68 -23 -136 -48 -199 -79c-26 21 -54 41 -85 56c-23 11 -46 20 -73 20 c-32 0 -62 -15 -87 -31l-11 16l128 99c17 4 35 6 53 6c40 0 118 -55 168 -93c5 23 5 50 5 74c0 27 -2 55 -5 83c-15 15 -33 30 -58 30c-16 0 -30 -5 -45 -11l-97 -47c-15 13 -29 33 -41 51c-4 6 -5 13 -5 20v139l190 103l68 -38c17 -10 37 -14 58 -14c24 0 61 17 85 33'], + 0xE60C: [654,27,464,80,447,'447 84l-181 -111c-33 32 -69 61 -109 87c7 74 7 200 7 299h-84v8l15 38h69v148l169 101l12 -14c-20 -16 -41 -34 -48 -42c-9 -9 -14 -118 -14 -193h109v-7l-16 -39h-94c0 -75 0 -149 5 -223c1 -7 3 -14 8 -19c17 -20 48 -39 72 -44c8 1 53 20 76 31'], + 0xE60D: [473,35,663,41,648,'648 88l-162 -120l-65 105c-64 -25 -128 -73 -167 -108c-42 32 -107 60 -154 77c17 23 28 47 36 73c10 36 17 73 17 109c0 45 -9 88 -19 132c-11 12 -23 23 -43 28l-36 -19l-14 14l137 94c3 -3 53 -40 79 -59c2 -52 5 -104 5 -155c0 -31 -4 -62 -10 -93 c-5 -21 -12 -43 -26 -62c33 -7 80 -26 119 -42l68 36l-4 326l124 44l14 -9c-15 -100 -17 -200 -17 -301c0 -9 14 -54 37 -74c2 -1 8 -5 11 -5s11 1 13 2l51 20'], + 0xE60E: [546,28,680,89,549,'549 316c0 -36 -1 -72 -5 -108c-5 -44 -11 -88 -34 -128l-258 -108c-35 36 -77 67 -123 94c9 37 9 97 9 146c0 46 -3 96 -6 143c-19 21 -43 47 -43 67c0 34 60 87 103 124l21 -4c-12 -12 -19 -27 -19 -42c0 -21 37 -58 63 -84l-2 -29l149 89l142 -61c2 -33 3 -66 3 -99z M429 263c0 28 -1 57 -3 86c-32 16 -89 40 -100 40c-24 0 -52 -16 -71 -28v-209c0 -6 0 -14 2 -19c3 -7 10 -13 17 -19c23 -19 59 -38 94 -55c3 -1 10 -3 13 -3c4 0 15 2 18 11c23 64 30 129 30 196'], + 0xE60F: [549,33,999,88,863,'863 409c-1 -75 -2 -150 -13 -225c-6 -44 -15 -89 -40 -128c-72 -27 -143 -55 -210 -89c-32 20 -66 39 -101 55c-25 12 -52 22 -80 29c9 35 12 111 12 186l-1 95c-29 20 -91 50 -99 50c-13 0 -44 -11 -68 -27c-2 -28 -3 -57 -3 -85c0 -52 3 -104 7 -157l52 -63l-112 -80 c-25 32 -57 71 -83 89c11 29 19 86 19 157c0 46 -3 93 -6 140l-38 39c-8 9 -11 22 -11 33c0 4 1 8 4 11c31 38 66 80 102 110l16 -2c-10 -14 -15 -31 -15 -47c0 -21 41 -57 70 -81v-37c38 22 93 59 139 89c47 -26 97 -48 149 -67v-34l172 100c43 -23 90 -43 138 -61z M743 336c-34 17 -98 42 -108 42c-12 0 -55 -18 -79 -33c-4 -41 -6 -83 -6 -124l2 -68c1 -12 6 -25 19 -32c34 -22 71 -41 112 -57c2 -1 8 -3 11 -3c0 0 10 4 15 17c15 34 22 69 26 104c7 51 8 102 8 154'], + 0xE610: [471,188,531,41,490,'490 388l-81 -75c-10 2 -20 4 -29 9c-21 14 -56 43 -61 48c-4 -2 -22 -18 -26 -24c-4 -24 -6 -49 -6 -85c0 -43 0 -97 3 -129c0 0 2 -6 3 -8c5 -7 24 -20 80 -56c12 0 57 18 88 32l2 -18l-182 -111l-93 73c-19 -3 -34 -15 -47 -27c-17 -15 -24 -35 -24 -55 c0 -13 6 -26 17 -36c36 -31 88 -40 139 -48l2 -11l-95 -55c-30 7 -59 17 -86 31c-18 10 -36 23 -47 40c-5 8 -6 17 -6 26c0 10 2 20 4 30c35 46 72 92 118 131c6 43 6 92 6 138c0 44 -1 88 -5 131c0 7 -6 16 -10 18l-47 24c-9 0 -30 -10 -39 -16l-17 12c47 33 110 77 145 94 l94 -58v-36l114 91c24 -31 53 -62 86 -80'], + 0xE611: [559,222,664,93,558,'558 289c0 -88 -5 -170 -13 -250c0 -40 -29 -73 -58 -105c-31 -34 -63 -68 -102 -98c-28 -22 -68 -43 -99 -58l-31 25c34 16 84 41 93 48c24 19 40 39 49 66c7 19 14 43 19 63c12 67 15 134 15 202c0 52 -3 104 -7 156c-30 18 -63 34 -98 43l-60 -25v-215 c0 -11 0 -24 8 -33l45 -55l-97 -92c-27 31 -69 78 -97 99c18 57 18 196 18 295c0 4 -2 10 -4 12c-20 19 -46 44 -46 65c0 14 9 27 19 39c17 22 57 60 86 88l19 -6c-11 -15 -18 -29 -18 -46c0 -13 12 -30 23 -42c15 -17 28 -27 46 -39v-41l142 93c46 -25 94 -47 144 -66 c3 -42 4 -83 4 -123'], + 0xE612: [472,215,534,24,417,'417 74c0 -60 -13 -117 -32 -177l-159 -112c-56 0 -115 6 -156 40c-21 17 -36 38 -46 60c69 98 154 188 255 264c-34 23 -91 32 -136 35l-1 10l94 65c17 12 36 27 36 47c0 17 -18 40 -34 50c-18 11 -30 15 -52 15c-13 0 -25 -5 -38 -10c-18 -8 -34 -19 -50 -30l-16 15 c54 47 114 88 176 126c29 -10 56 -22 77 -40c22 -19 42 -40 42 -67c0 -12 -19 -29 -33 -42l-65 -59c43 -13 82 -30 121 -50c11 -46 17 -93 17 -140zM296 -4c0 33 -2 74 -7 124c-62 -50 -153 -123 -153 -166c0 -20 12 -36 30 -49c52 -38 100 -39 110 -39c6 13 20 44 20 130'], + 0xE613: [478,26,574,107,465,'465 87c-63 -34 -121 -74 -179 -113l-80 82c8 58 11 117 11 176c0 45 -2 89 -5 134l-42 21l-43 -17l-20 12c52 31 103 61 150 96c14 -10 59 -38 90 -56c-3 -56 -5 -112 -5 -169l3 -115c0 -10 5 -20 13 -29c9 -11 22 -27 34 -27c5 0 17 3 19 4l48 19'], + 0xE614: [483,207,574,84,367,'367 256c0 -95 -7 -191 -28 -285c-68 -61 -156 -127 -238 -178l-17 18c38 21 77 46 105 71c29 27 40 64 44 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -5 30 -18 41c-9 7 -21 12 -34 12l-42 -17l-16 19l143 101c31 -21 60 -39 93 -58c4 -56 6 -112 6 -169'], + 0xE615: [478,26,401,34,366,'366 87c-59 -34 -113 -74 -166 -113l-74 82c7 58 10 117 10 176c0 45 -2 89 -5 134l-39 21l-40 -17l-18 12c48 31 95 61 139 96c13 -10 55 -38 83 -56c-3 -56 -5 -112 -5 -169l3 -115c0 -10 5 -20 13 -29c8 -11 20 -27 31 -27c5 0 16 3 18 4l44 19'], + 0xE616: [483,207,401,13,275,'275 256c0 -95 -6 -191 -26 -285c-63 -61 -144 -127 -220 -178l-16 18c34 21 71 46 97 71c27 27 37 64 40 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -4 30 -16 41c-8 7 -19 12 -32 12l-38 -17l-16 19l133 101c29 -21 56 -39 87 -58c3 -56 5 -112 5 -169'], + 0xE617: [478,26,331,2,327,'327 87c-57 -34 -110 -74 -162 -113l-73 82c7 58 10 117 10 176c0 45 -2 89 -5 134l-38 21l-39 -17l-18 12c47 31 93 61 136 96c13 -10 54 -38 82 -56c-3 -56 -5 -112 -5 -169l3 -115c0 -10 5 -20 12 -29c8 -11 20 -27 31 -27c5 0 15 3 17 4l44 19'], + 0xE618: [483,207,331,-19,238,'238 256c0 -95 -6 -191 -25 -285c-62 -61 -142 -127 -216 -178l-16 18c34 21 70 46 95 71c27 27 37 64 40 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -4 30 -16 41c-8 7 -19 12 -31 12l-38 -17l-15 19l130 101c28 -21 55 -39 85 -58c3 -56 5 -112 5 -169'], + 0xE619: [431,0,525,78,455,'455 30c0 -30 -26 -30 -41 -30h-295c-15 0 -41 0 -41 30c0 31 25 31 41 31h121v309h-113c-15 0 -41 0 -41 31c0 30 26 30 41 30h142c34 0 40 -10 40 -41v-329h105c15 0 41 0 41 -31'], + 0xE61A: [431,228,525,48,368,'368 -44c0 -64 -36 -184 -181 -184c-41 0 -139 0 -139 76c0 29 22 46 45 46c21 0 44 -17 44 -45c0 -7 0 -9 -1 -12c15 -2 27 -4 56 -4c23 0 54 0 81 38c26 35 26 73 26 90v409h-130c-15 0 -40 0 -40 30c0 31 25 31 41 31h158c34 0 40 -10 40 -41v-434'], + 0xE61B: [683,33,1153,117,1036,'1036 672c0 -3 0 -4 -7 -15l-413 -668c-11 -17 -18 -22 -40 -22c-23 0 -30 7 -39 22l-413 668c-7 11 -7 12 -7 15c0 11 9 11 25 11h869c16 0 25 0 25 -11zM938 594h-654l327 -529'], + 0xE61C: [683,30,954,69,884,'884 673c0 0 0 -3 -7 -14l-369 -670c-9 -16 -19 -19 -31 -19c-20 0 -23 5 -33 23l-368 666c-7 11 -7 14 -7 14c0 10 8 10 24 10h767c16 0 24 0 24 -10zM806 603h-593l296 -536h1'], + 0xE61D: [716,0,1097,89,1007,'1007 11c0 -11 -9 -11 -25 -11h-868c-16 0 -25 0 -25 11c0 3 0 4 7 15l412 667c11 18 19 23 40 23c22 0 29 -5 40 -23l412 -667c7 -11 7 -12 7 -15zM835 91l-323 524l-324 -524h647'], + 0xE61E: [679,0,831,83,750,'750 441h-42c-19 137 -45 194 -214 194h-145c-49 0 -49 -7 -49 -38v-511c0 -32 0 -42 96 -42h43v-44c-56 4 -130 4 -187 4l-169 -4v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h634'], + 0xE61F: [716,0,911,71,839,'839 0c-52 3 -126 4 -139 4l-161 -4v44c27 0 87 0 87 24c0 3 -3 11 -4 14l-200 493l-190 -465c-5 -12 -5 -21 -5 -21c0 -28 33 -45 77 -45v-44l-128 4c-15 0 -64 -1 -105 -4v44c23 0 88 1 112 59l238 587c7 17 11 26 34 26s27 -9 34 -26l249 -614c11 -27 28 -32 81 -32 h20v-44'], + 0xE620: [705,0,958,84,873,'873 176l-40 -176h-206c-22 0 -31 0 -31 24c0 75 41 154 76 221c38 73 71 137 71 209c0 135 -122 218 -265 218c-139 0 -264 -82 -264 -218c0 -72 33 -135 68 -204c40 -77 79 -152 79 -226c0 -24 -9 -24 -30 -24h-207l-40 176h42c2 -8 12 -57 21 -77c6 -12 10 -20 74 -20 h96c-17 44 -40 77 -97 142c-62 70 -123 141 -123 233c0 137 164 251 382 251c215 0 381 -113 381 -251c0 -93 -63 -165 -123 -233c-62 -70 -81 -101 -97 -142h96c64 0 68 8 74 20c9 20 19 69 21 77h42'], + 0xE621: [683,0,958,97,860,'860 341c0 -95 -133 -180 -336 -194v-61c0 -32 0 -42 96 -42h43v-44c-61 4 -127 4 -188 4s-127 0 -188 -4v44h43c96 0 96 11 96 42v62c-171 10 -329 88 -329 194c0 103 154 182 329 193v62c0 32 0 42 -96 42h-43v44c61 -4 127 -4 188 -4s127 0 188 4v-44h-43 c-96 0 -96 -11 -96 -42v-61c199 -14 336 -97 336 -195zM426 181v321c-107 -7 -216 -47 -216 -161c0 -109 102 -153 216 -160zM747 342c0 140 -167 158 -223 161v-323c63 4 223 24 223 162'], + 0xE622: [679,0,981,83,897,'897 0l-164 4l-164 -4v44h30c81 0 81 10 81 41v550h-380v-550c0 -31 0 -41 81 -41h30v-44l-164 4l-164 -4v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h814v-44h-30c-81 0 -81 -10 -81 -41v-509c0 -31 0 -41 81 -41h30v-44'], + 0xE623: [683,0,1028,97,930,'930 529c0 -14 -13 -15 -21 -16c-67 -8 -69 -94 -69 -116c-1 -51 -25 -131 -81 -177c-52 -42 -112 -66 -200 -72v-62c0 -32 0 -42 96 -42h43v-44c-61 4 -127 4 -188 4s-127 0 -188 -4v44h43c96 0 96 11 96 42v62c-241 18 -272 188 -274 247c-1 38 -2 110 -76 118 c-7 1 -14 7 -14 16c0 17 15 17 31 17h43c84 0 113 -69 114 -150c2 -113 61 -196 176 -213v414c0 32 0 42 -96 42h-43v44c61 -4 127 -4 188 -4s127 0 188 4v-44h-43c-96 0 -96 -11 -96 -42v-414c171 23 182 175 183 212c1 72 24 151 114 151h44c16 0 30 0 30 -17'], + 0xE624: [683,0,958,97,860,'860 250l-33 -250h-699c-16 0 -31 0 -31 17c0 7 2 8 13 18l293 267l-297 337c-8 9 -9 11 -9 22c0 22 11 22 31 22h699l33 -238h-42c-13 96 -57 151 -97 169c-38 17 -110 25 -192 25h-281l246 -279c8 -9 10 -12 10 -18c0 -4 0 -9 -11 -19l-295 -267h331c11 0 135 0 191 24 c29 13 82 56 98 170h42'], + 0xE625: [705,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM821 339c0 218 -149 333 -308 333c-153 0 -307 -111 -307 -333c0 -215 149 -327 308 -327c154 0 307 109 307 327zM751 263h-42v34h-391v-34h-42v159h42 v-34h391v34h42v-159'], + 0xE626: [705,0,1028,97,930,'930 551c0 -21 -13 -21 -22 -21c-20 0 -21 8 -22 21c-7 62 -94 66 -120 66c-142 0 -199 -156 -199 -273v-258c0 -32 0 -42 96 -42h43v-44c-60 4 -131 4 -192 4s-132 0 -192 -4v44h43c96 0 96 11 96 42v258c0 116 -58 273 -200 273c-21 0 -113 0 -120 -70 c-2 -17 -14 -17 -22 -17c-9 0 -22 0 -22 21c0 72 65 154 167 154c118 0 214 -93 249 -253h1c32 145 121 253 249 253c102 0 167 -82 167 -154'], + 0xE627: [675,0,889,80,808,'801 505h-42c-1 23 -4 65 -16 78c-6 8 -85 8 -85 8h-428c-13 0 -77 0 -84 -7c-13 -10 -16 -56 -17 -79h-42l10 170h694zM808 181l-10 -181h-708l-10 181h42c3 -63 9 -78 15 -88c6 -9 85 -9 92 -9h430s85 0 91 9c11 13 14 47 16 88h42zM686 253h-42v56h-400v-56h-42v196 h42v-56h400v56h42v-196'], + 0xE628: [684,21,958,85,874,'874 508h-42c-2 8 -12 57 -21 77c-6 12 -10 20 -74 20h-96c17 -44 40 -77 97 -142c62 -70 123 -141 123 -233c0 -137 -164 -251 -382 -251c-215 0 -381 113 -381 251c0 93 63 165 123 233c62 70 81 101 97 142h-96c-64 0 -68 -8 -74 -20c-9 -20 -19 -69 -21 -77h-42 l40 176h206c22 0 31 0 31 -24c0 -75 -41 -154 -76 -221c-38 -73 -71 -137 -71 -209c0 -135 122 -218 265 -218c139 0 264 82 264 218c0 72 -33 135 -68 204c-40 77 -79 152 -79 226c0 24 9 24 30 24h207'], + 0xE629: [705,0,958,84,873,'873 176l-40 -176h-206c-22 0 -31 0 -31 24c0 75 41 154 76 221c38 73 71 137 71 209c0 135 -122 218 -265 218c-139 0 -264 -82 -264 -218c0 -72 33 -135 68 -204c40 -77 79 -152 79 -226c0 -24 -9 -24 -30 -24h-207l-40 176h42c2 -8 12 -57 21 -77c6 -12 10 -20 74 -20 h96c-17 44 -40 77 -97 142c-62 70 -123 141 -123 233c0 137 164 251 382 251c215 0 381 -113 381 -251c0 -93 -63 -165 -123 -233c-62 -70 -81 -101 -97 -142h96c64 0 68 8 74 20c9 20 19 69 21 77h42'], + 0xE62A: [716,0,981,71,909,'909 0l-147 4l-162 -4v44c29 0 86 0 86 24c0 0 0 3 -6 15l-61 140h-321l-52 -118c-3 -8 -5 -11 -5 -17c0 -19 20 -44 76 -44v-44c-46 3 -117 4 -130 4c-37 0 -79 -1 -116 -4v44c50 0 104 9 126 59l258 589c9 20 17 24 35 24c24 0 27 -8 35 -26l269 -613 c12 -27 27 -33 89 -33h26v-44zM600 267l-142 322l-141 -322h283'], + 0xE62B: [683,0,935,87,837,'837 185c0 -99 -121 -185 -275 -185h-475v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44h442c149 0 273 -78 273 -171c0 -80 -98 -138 -199 -154c162 -21 234 -102 234 -173zM693 511c0 62 -64 128 -171 128h-177c-49 0 -49 -7 -49 -38v-229h199 c110 0 198 66 198 139zM724 186c0 65 -58 153 -192 153h-236v-257c0 -31 0 -38 49 -38h179c117 0 200 67 200 142'], + 0xE62C: [679,0,900,83,836,'836 271l-50 -271h-703v44h30c81 0 81 10 81 41v509c0 31 0 41 -81 41h-30v44h686l33 -238h-42c-22 154 -67 194 -234 194h-177c-49 0 -49 -7 -49 -38v-223h116c100 0 128 21 128 117h42v-278h-42c0 96 -28 117 -128 117h-116v-248c0 -31 0 -38 49 -38h186 c191 0 230 63 259 227h42'], + 0xE62D: [683,0,819,97,727,'727 280l-20 -280h-580c-21 0 -30 0 -30 24c0 11 0 14 10 26l480 589h-201c-125 0 -217 -33 -229 -194h-42l13 238h563c20 0 30 0 30 -23c0 -10 0 -13 -10 -25l-479 -588h211c190 0 230 77 242 233h42'], + 0xE62E: [683,0,981,83,897,'897 0l-164 4l-164 -4v44h30c81 0 81 10 81 41v248h-380v-248c0 -31 0 -41 81 -41h30v-44l-164 4l-164 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-221h380v221c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30 c-81 0 -81 -10 -81 -41v-513c0 -31 0 -41 81 -41h30v-44'], + 0xE62F: [683,0,494,77,417,'417 0l-170 4l-170 -4v44h33c84 0 84 10 84 41v513c0 31 0 41 -84 41h-33v44l170 -4l170 4v-44h-33c-84 0 -84 -10 -84 -41v-513c0 -31 0 -41 84 -41h33v-44'], + 0xE630: [683,0,1015,83,934,'934 0c-49 4 -84 4 -131 4l-161 -4v44c18 0 51 0 51 24c0 11 -11 25 -17 31l-224 258l-152 -116v-156c0 -31 0 -41 81 -41h30v-44l-164 4l-164 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44l164 -4l164 4v-44h-30c-81 0 -81 -10 -81 -41v-304l380 288 c16 12 22 22 22 33c0 22 -26 24 -33 24v44l146 -4c45 0 63 1 102 4v-44c-77 0 -132 -30 -163 -53l-226 -172l280 -322c36 -41 52 -48 126 -48v-44'], + 0xE631: [683,0,1189,89,1099,'1099 0l-158 4l-158 -4v44h30c81 0 81 10 81 41v556h-1l-295 -618c-4 -9 -11 -23 -30 -23c-14 0 -23 7 -31 24l-290 609h-1v-522c0 -26 0 -67 111 -67v-44c-41 3 -106 4 -134 4c-45 0 -89 -1 -134 -4v44c111 0 111 41 111 67v487c0 31 0 41 -81 41h-30v44h193 c21 0 32 0 43 -24l269 -565l270 566c11 23 20 23 42 23h193v-44h-30c-81 0 -81 -10 -81 -41v-513c0 -31 0 -41 81 -41h30v-44'], + 0xE632: [683,0,981,83,897,'897 639c-111 0 -111 -41 -111 -67v-542c0 -21 0 -30 -23 -30c-11 0 -15 0 -25 12l-498 594v-495c0 -26 0 -67 111 -67v-44c-41 3 -106 4 -134 4c-45 0 -89 -1 -134 -4v44c111 0 111 41 111 67v505c0 16 -1 17 -4 19c-10 3 -56 4 -68 4h-39v44h194c20 0 22 0 32 -12 l431 -514v415c0 26 0 67 -111 67v44c41 -3 106 -4 134 -4c45 0 89 1 134 4v-44'], + 0xE633: [705,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM813 354c0 214 -150 315 -300 315c-144 0 -299 -97 -299 -315c0 -229 149 -339 300 -339c145 0 299 106 299 339'], + 0xE634: [683,0,900,85,802,'802 491c0 -111 -147 -187 -281 -187h-219v-219c0 -31 0 -41 81 -41h30v-44l-164 4l-164 -4v44h30c81 0 81 10 81 41v513c0 31 0 41 -81 41h-30v44h426c159 0 291 -87 291 -192zM685 491c0 78 -35 148 -198 148h-140c-49 0 -49 -7 -49 -38v-259h188c160 0 199 67 199 149 '], + 0xE635: [675,0,958,73,884,'884 437h-42c-17 183 -55 194 -217 194c-22 0 -56 0 -65 -1c-26 -3 -28 -8 -28 -37v-507c0 -32 0 -42 107 -42h50v-44c-50 4 -155 4 -210 4s-160 0 -210 -4v44h50c107 0 107 10 107 42v507c0 31 -2 35 -30 37c-7 1 -43 1 -64 1c-162 0 -200 -12 -217 -194h-42l23 238h765 '], + 0xE636: [683,0,981,65,916,'916 0c-52 3 -108 4 -148 4l-165 -4v44c35 0 60 12 60 24c0 0 0 4 -8 12l-192 227l-172 -201c-6 -7 -12 -14 -12 -25c0 -15 14 -36 55 -37v-44c-33 2 -88 4 -144 4c-46 0 -78 0 -125 -4v44c50 0 122 8 164 57l206 240l-227 269c-19 23 -40 29 -99 29h-27v44l147 -4l166 4 v-44c-37 0 -60 -12 -60 -23c0 -3 0 -5 9 -15l155 -184l137 159c7 9 13 15 13 26c0 13 -12 36 -55 37v44c33 -2 88 -4 144 -4c46 0 78 0 125 4v-44c-70 0 -126 -14 -163 -57l-172 -199l259 -306c19 -23 28 -33 102 -33h27v-44'], + 0xE637: [713,0,939,61,876,'876 10c0 -10 -8 -10 -24 -10h-767c-16 0 -24 0 -24 10c0 0 0 3 7 14l369 670c9 16 19 19 31 19c20 0 23 -5 33 -23l368 -666c7 -11 7 -14 7 -14zM729 82l-294 533l-294 -533h588'], + 0xE638: [679,0,706,56,651,'651 449h-34c-17 138 -42 194 -194 194h-121c-47 0 -48 -8 -48 -39v-522c0 -33 0 -46 94 -46h35v-36l-175 4l-152 -4v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h565'], + 0xE639: [713,0,782,45,736,'736 0c-11 1 -83 4 -124 4l-150 -4v36c27 0 82 0 82 28c0 3 0 5 -5 18l-180 493l-171 -470c-5 -12 -5 -14 -5 -20c0 -24 22 -48 74 -49v-36l-119 4c-31 0 -62 -1 -93 -4v36c43 1 84 12 103 65l215 589c5 15 8 23 28 23c9 0 20 -1 27 -21l224 -616c15 -40 30 -40 94 -40 v-36'], + 0xE63A: [703,0,816,57,757,'757 168l-36 -168h-179c-23 0 -29 0 -29 23c0 72 38 160 60 210c34 78 64 147 64 222c0 141 -112 220 -230 220c-117 0 -230 -78 -230 -220c0 -74 28 -139 66 -227c21 -49 58 -134 58 -206c0 -22 -7 -22 -28 -22h-180l-36 168h34s12 -59 20 -78c5 -11 9 -19 69 -19h85 c-16 53 -48 98 -77 136c-70 94 -118 159 -118 247c0 135 145 249 337 249s337 -114 337 -249c0 -81 -44 -147 -93 -213c-56 -75 -85 -114 -102 -170h85c62 0 65 8 71 24c8 23 17 70 18 73h34'], + 0xE63B: [683,0,816,70,744,'744 341c0 -104 -132 -190 -296 -202v-57c0 -33 0 -46 94 -46h35v-36c-10 1 -114 4 -173 4l-173 -4v36h35c94 0 94 13 94 46v58c-170 14 -290 102 -290 202c0 96 115 187 290 201v58c0 33 0 46 -94 46h-35v36c10 -1 114 -4 173 -4l173 4v-36h-35c-94 0 -94 -13 -94 -46 v-57c159 -11 296 -95 296 -203zM360 168v347c-79 -8 -187 -42 -187 -174c0 -128 104 -165 187 -173zM641 342c0 126 -102 166 -193 173v-347c84 6 193 42 193 174'], + 0xE63C: [679,0,843,56,786,'786 0l-151 4l-150 -4v36h24c77 0 79 11 79 45v562h-334v-562c0 -35 2 -45 79 -45h24v-36l-151 4l-150 -4v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h730v-36h-24c-77 0 -79 -11 -79 -45v-517c0 -35 2 -45 79 -45h24v-36'], + 0xE63D: [683,0,877,70,806,'806 538c0 -7 -5 -13 -12 -13c-18 -3 -36 -6 -51 -35c-15 -32 -16 -62 -16 -96c-1 -43 -19 -126 -65 -172c-24 -25 -69 -70 -183 -82v-58c0 -33 0 -46 94 -46h35v-36c-10 1 -114 4 -173 4l-173 -4v36h35c94 0 94 13 94 46v58c-79 8 -140 39 -177 80 c-64 71 -65 157 -65 199c0 7 -1 98 -64 105c-3 0 -15 2 -15 14c0 14 14 14 29 14h37c100 0 101 -122 101 -134c0 -68 5 -215 154 -248v431c0 33 0 46 -94 46h-35v36c10 -1 114 -4 173 -4l173 4v-36h-35c-94 0 -94 -13 -94 -46v-431c132 23 159 151 160 227 c0 64 11 155 101 155h38c15 0 28 0 28 -14'], + 0xE63E: [683,0,816,70,744,'744 242l-30 -242h-615c-16 0 -29 0 -29 14c0 6 2 7 13 19l260 268l-273 356c0 25 4 26 29 26h615l30 -230h-34c-23 170 -96 194 -261 194h-252l224 -291c1 -2 7 -9 7 -14s0 -7 -12 -18l-268 -276h299c42 0 48 1 83 4c71 7 159 16 180 190h34'], + 0xE63F: [703,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM706 339c0 235 -144 336 -268 336s-268 -101 -268 -336s147 -329 268 -329c120 0 268 93 268 329zM643 268h-34v34h-342v-34h-34v150h34v-34h342v34h34v-150'], + 0xE640: [703,0,877,70,806,'806 552c0 -7 0 -20 -18 -20c-16 0 -17 8 -18 20c-7 57 -75 71 -109 71c-128 0 -175 -157 -175 -276v-265c0 -33 0 -46 94 -46h35v-36l-177 4c-24 0 -153 -2 -176 -4v36h35c94 0 94 13 94 46v265c0 120 -48 276 -176 276c-28 0 -102 -11 -109 -71c-1 -12 -2 -20 -18 -20 c-18 0 -18 13 -18 20c0 64 51 151 146 151c117 0 195 -102 222 -249h1c24 141 102 249 221 249c94 0 146 -87 146 -151'], + 0xE641: [676,0,754,54,699,'693 515h-34c-1 17 -3 67 -14 79c-7 7 -67 7 -79 7h-379c-19 0 -74 0 -80 -10c-10 -14 -12 -61 -13 -76h-34l9 161h615zM699 172l-9 -172h-627l-9 172h34c1 -17 3 -66 12 -85c6 -12 55 -12 86 -12h381c12 0 78 0 84 10c11 14 13 70 14 87h34zM591 262h-34v52h-361v-52 h-34v179h34v-52h361v52h34v-179'], + 0xE642: [684,19,816,59,759,'759 516h-34s-12 59 -20 78c-5 11 -9 19 -69 19h-85c16 -53 48 -98 77 -136c70 -94 118 -159 118 -247c0 -135 -145 -249 -337 -249s-337 114 -337 249c0 81 44 147 93 213c56 75 85 114 102 170h-85c-62 0 -65 -8 -71 -24c-8 -23 -17 -70 -18 -73h-34l36 168h179 c23 0 29 0 29 -23c0 -72 -38 -160 -60 -210c-34 -78 -64 -147 -64 -222c0 -141 112 -220 230 -220c117 0 230 78 230 220c0 74 -28 139 -66 227c-21 49 -58 134 -58 206c0 22 7 22 28 22h180'], + 0xE643: [703,0,816,57,757,'757 168l-36 -168h-179c-23 0 -29 0 -29 23c0 72 38 160 60 210c34 78 64 147 64 222c0 141 -112 220 -230 220c-117 0 -230 -78 -230 -220c0 -74 28 -139 66 -227c21 -49 58 -134 58 -206c0 -22 -7 -22 -28 -22h-180l-36 168h34s12 -59 20 -78c5 -11 9 -19 69 -19h85 c-16 53 -48 98 -77 136c-70 94 -118 159 -118 247c0 135 145 249 337 249s337 -114 337 -249c0 -81 -44 -147 -93 -213c-56 -75 -85 -114 -102 -170h85c62 0 65 8 71 24c8 23 17 70 18 73h34'], + 0xE644: [713,0,843,45,797,'797 0c-11 1 -86 4 -133 4l-149 -4v36c27 0 81 0 81 28c0 5 -3 12 -5 17l-58 146h-284l-48 -123c-4 -10 -5 -12 -5 -20c0 -28 28 -48 72 -48v-36c-6 0 -80 4 -120 4c-34 0 -69 -1 -103 -4v36c90 0 107 44 117 69l231 585c6 16 9 23 28 23s22 -7 28 -23l243 -616 c11 -28 18 -38 85 -38h20v-36zM519 263l-128 325l-128 -325h256'], + 0xE645: [683,0,799,60,728,'728 183c0 -95 -103 -183 -244 -183h-424v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h394c139 0 244 -80 244 -170c0 -77 -82 -138 -180 -156c122 -13 210 -87 210 -174zM598 513c0 63 -52 134 -151 134h-148c-47 0 -48 -8 -48 -39v-239h165 c115 0 182 73 182 144zM625 185c0 70 -55 156 -161 156h-213v-266c0 -31 1 -39 48 -39h150c110 0 176 75 176 149'], + 0xE646: [679,0,768,56,728,'728 263l-45 -263h-627v36h24c77 0 79 11 79 45v517c0 35 -2 45 -79 45h-24v36h611l30 -230h-34c-18 140 -47 194 -211 194h-150c-47 0 -48 -8 -48 -39v-233h101c101 0 116 30 116 117h34v-270h-34c0 87 -15 117 -116 117h-101v-260c0 -31 1 -39 48 -39h158 c185 0 208 76 234 227h34'], + 0xE647: [683,0,692,70,628,'628 273l-18 -273h-512c-20 0 -28 0 -28 20c0 9 0 11 9 23l428 604h-175c-133 0 -204 -45 -213 -194h-34l12 230h496c19 0 28 0 28 -19c0 -6 0 -11 -8 -22l-428 -602h186c196 0 214 99 223 233h34'], + 0xE648: [683,0,843,56,786,'786 0l-151 4l-150 -4v36h24c77 0 79 11 79 45v256h-334v-256c0 -35 2 -45 79 -45h24v-36l-151 4l-150 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-229h334v229c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36 h-24c-77 0 -79 -11 -79 -45v-521c0 -35 2 -45 79 -45h24v-36'], + 0xE649: [683,0,413,51,362,'362 0l-156 4l-155 -4v36h26c82 0 82 12 82 46v519c0 34 0 46 -82 46h-26v36l156 -4l155 4v-36h-26c-82 0 -82 -12 -82 -46v-519c0 -34 0 -46 82 -46h26v-36'], + 0xE64A: [683,0,874,56,819,'819 0c-14 1 -80 4 -115 4l-149 -4v36c18 0 53 0 53 27c0 13 -9 24 -15 32l-204 266l-135 -115v-165c0 -35 2 -45 79 -45h24v-36l-151 4l-150 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36l151 -4l150 4v-36h-24c-77 0 -79 -11 -79 -45v-311l355 304 c5 5 9 16 9 23c0 24 -23 29 -37 29v36l138 -4c28 0 57 2 85 4v-36c-48 -1 -99 -16 -148 -58l-203 -173l251 -328c38 -50 61 -52 115 -52v-36'], + 0xE64B: [683,0,1028,62,965,'965 0l-145 4l-145 -4v36h24c77 0 79 11 79 45v564l-1 1l-264 -625c-8 -18 -17 -21 -24 -21c-15 0 -20 11 -25 23l-260 613l-1 -1v-527c0 -27 0 -72 103 -72v-36c-41 3 -81 4 -122 4s-81 -1 -122 -4v36c103 0 103 45 103 72v494c0 35 -2 45 -79 45h-24v36h175 c21 0 29 0 38 -22l239 -565l240 567c8 20 17 20 37 20h174v-36h-24c-77 0 -79 -11 -79 -45v-521c0 -35 2 -45 79 -45h24v-36'], + 0xE64C: [683,0,843,56,786,'786 647c-103 0 -103 -45 -103 -72v-547c0 -19 0 -28 -19 -28c-12 0 -13 1 -23 15l-444 598v-505c0 -27 0 -72 103 -72v-36c-41 3 -81 4 -122 4s-81 -1 -122 -4v36c103 0 103 45 103 72v533c-5 1 -30 6 -73 6h-30v36h173c20 0 21 -1 32 -15l384 -517v424 c0 27 0 72 -103 72v36c41 -3 81 -4 122 -4s81 1 122 4v-36'], + 0xE64D: [703,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM699 354c0 232 -147 317 -261 317s-261 -85 -261 -317c0 -246 144 -341 261 -341s261 95 261 341'], + 0xE64E: [683,0,768,58,697,'697 495c0 -101 -114 -185 -259 -185h-182v-229c0 -35 2 -45 79 -45h24v-36l-151 4l-150 -4v36h24c77 0 79 11 79 45v521c0 35 -2 45 -79 45h-24v36h380c147 0 259 -89 259 -188zM590 495c0 58 -10 152 -177 152h-113c-47 0 -48 -8 -48 -39v-266h161 c177 0 177 109 177 153'], + 0xE64F: [676,0,816,48,766,'766 446h-34l-9 78c-1 5 -8 69 -53 96c-35 20 -78 20 -134 20c-20 0 -49 0 -59 -1c-22 -4 -22 -15 -22 -38v-519c0 -33 0 -46 104 -46h42v-36c-49 4 -141 4 -193 4s-145 0 -194 -4v36h42c104 0 104 13 104 46v519c0 23 0 34 -22 38c-10 1 -39 1 -59 1 c-154 0 -183 -21 -197 -194h-34l21 230h676'], + 0xE650: [683,0,843,38,805,'805 0c-6 0 -84 4 -131 4l-153 -4v36c40 1 59 16 59 28c0 4 -5 11 -7 14l-176 233l-159 -207c-11 -14 -11 -24 -11 -27c0 -15 13 -39 55 -41v-36c-5 0 -85 4 -133 4c-37 0 -74 -1 -111 -4v36c96 0 134 40 154 66l182 238l-205 273c-20 27 -37 34 -96 34h-20v36 c6 0 83 -4 131 -4l152 4v-36c-36 -1 -59 -15 -59 -28c0 -3 0 -5 9 -15l144 -191l127 166c7 9 12 15 12 27c0 11 -9 39 -55 41v36l133 -4c37 0 74 1 111 4v-36c-28 0 -105 -1 -151 -62l-155 -202l237 -313c18 -24 30 -34 96 -34h20v-36'], + 0xE651: [442,11,925,136,865,'865 60c6 -23 -20 -71 -87 -71c-64 0 -114 43 -142 87c-93 -77 -189 -87 -238 -87c-129 0 -230 81 -256 182c-33 135 82 271 248 271c92 0 222 -47 273 -196c9 -29 9 -31 18 -54c18 31 49 95 52 177c0 21 0 24 18 24c6 0 20 0 23 -14c6 -22 -8 -159 -77 -238 c32 -100 54 -118 75 -118c9 0 45 4 51 38c2 13 6 13 18 13c8 0 21 0 24 -14zM618 113c-22 60 -37 113 -46 134c-22 59 -74 161 -176 161c-63 0 -114 -36 -137 -78c-34 -64 -25 -157 -17 -190c22 -86 88 -117 150 -117c117 0 194 62 226 90'], + 0xE652: [706,194,821,163,668,'668 186c0 -57 -35 -107 -81 -140c-56 -40 -124 -57 -192 -57c-76 0 -146 33 -189 85l-1 -258c0 -6 -5 -10 -11 -10h-14c-8 0 -15 6 -17 17v611c0 142 91 272 225 272c57 0 114 -17 160 -52c31 -24 55 -56 64 -94c3 -10 5 -22 4 -33c0 -49 -26 -93 -65 -123 c-5 -3 -10 -7 -15 -10c17 -10 33 -21 48 -35c38 -32 66 -75 78 -122c4 -16 6 -34 6 -51zM581 193c0 23 -3 46 -8 68c-7 29 -20 56 -41 78c-11 13 -26 24 -41 33c-30 -12 -63 -17 -97 -17c-48 0 -105 0 -113 33c0 0 -1 5 -1 8c0 35 59 35 107 35c33 0 65 -5 95 -15 c6 4 12 9 18 14c27 27 38 65 38 104c0 14 -2 29 -5 43c-5 21 -15 40 -31 56c-28 27 -68 39 -107 39c-117 0 -189 -119 -190 -245l1 -241c0 -13 1 -25 4 -37c19 -75 94 -127 178 -127c53 0 104 15 143 50c35 30 49 75 50 121zM433 394c-13 2 -25 3 -38 3c-30 0 -72 0 -72 -8 l65 -1c15 0 30 2 45 6'], + 0xE653: [442,216,856,94,706,'706 417c1 -3 1 -5 -4 -20c-29 -92 -42 -150 -46 -171c-5 -23 -33 -169 -27 -215c9 -70 8 -141 6 -178c-2 -36 -10 -49 -24 -49c-20 0 -26 25 -27 29c-8 29 -6 128 -1 197c1 24 1 27 -9 68c-31 124 -105 277 -282 277c-51 0 -146 -17 -154 -89c-2 -15 -2 -17 -18 -17 c-8 0 -21 0 -25 14c-2 9 -1 67 43 116c35 37 88 63 148 63c155 0 267 -184 311 -299c18 133 64 276 69 283c2 5 9 5 15 5s21 0 25 -14'], + 0xE654: [716,11,717,133,563,'563 183c1 -103 -70 -194 -169 -194c-67 0 -133 23 -183 67c-34 30 -60 70 -71 114c-4 16 -6 32 -7 49c0 61 29 118 75 158c34 29 74 48 116 58c-54 57 -108 121 -122 177c-4 17 -5 32 -2 47c5 17 15 33 30 42c16 9 34 13 51 15h14c43 0 112 -13 165 -23 c18 -3 31 -16 35 -32c1 -6 2 -13 0 -19c-4 -17 -19 -28 -36 -28c-4 0 -8 1 -12 2c-54 17 -103 51 -159 57c-4 1 -7 1 -11 1c-9 0 -17 -1 -25 -5c-9 -5 -16 -14 -18 -24c-1 -4 -1 -8 0 -12c11 -43 112 -121 183 -176c43 -33 83 -72 109 -119c12 -23 21 -46 27 -70 c7 -28 10 -56 10 -85zM485 161c0 21 -3 42 -8 62c-5 23 -15 44 -26 64c-24 41 -56 75 -89 108l-8 9c-34 -8 -65 -26 -89 -52c-33 -38 -45 -89 -45 -140c1 -23 2 -45 8 -67c6 -25 17 -49 35 -69c32 -35 78 -54 125 -54c63 0 96 69 97 139'], + 0xE655: [431,11,656,148,593,'593 46c4 -18 -60 -41 -60 -41c-44 -16 -78 -16 -91 -16c-138 0 -258 86 -287 203c-38 153 108 239 246 239h54c20 0 36 0 42 -21c6 -24 -18 -24 -34 -24h-49c-92 0 -157 -39 -166 -122h208c17 0 36 0 41 -20c6 -25 -20 -25 -35 -25h-216c2 -28 8 -52 9 -56 c32 -125 141 -140 180 -140c47 0 87 21 119 42c9 7 11 7 15 7c11 0 21 -17 24 -26'], + 0xE656: [701,205,786,149,654,'651 -80c13 -51 -11 -125 -85 -125c-49 0 -132 26 -138 48c-2 9 3 17 14 17c3 0 5 0 19 -7c44 -22 88 -24 97 -24c37 0 37 37 33 54c-6 24 -25 39 -43 48c-12 5 -65 18 -99 27c-100 24 -144 36 -195 76c-24 19 -73 58 -95 145c-43 173 64 338 195 410 c-18 23 -26 54 -26 54c-2 9 -14 58 13 58c9 0 21 -6 25 -20c2 -7 0 -19 5 -40c5 -22 15 -37 15 -37c28 10 51 10 71 10c54 0 101 -4 108 -35c11 -41 -64 -41 -101 -41c-27 0 -50 0 -82 22c-101 -57 -195 -205 -159 -347c30 -120 128 -144 207 -164l58 -14 c66 -16 92 -23 118 -45c10 -9 35 -30 45 -70zM512 576c-16 3 -28 4 -49 4c-15 0 -30 0 -43 -4c12 -4 14 -4 37 -4c33 0 43 2 55 4'], + 0xE657: [442,216,786,59,645,'645 272l-1 -440c0 -12 0 -48 -39 -48c-19 0 -40 12 -46 35c-1 3 -2 8 -2 24l1 441c0 17 0 28 -6 52c-11 43 -37 72 -88 72c-65 0 -97 -38 -110 -52c-38 -43 -56 -116 -57 -120c1 -23 0 -45 1 -67l-1 -69l1 -78c-5 -25 -25 -33 -40 -33c-19 0 -40 13 -46 35 c-1 5 -1 49 -1 74v89v90c-1 26 0 64 -4 78c-5 20 -19 53 -54 53c-47 0 -49 -74 -50 -114c0 -16 -1 -21 -18 -21c-6 0 -21 0 -25 15c-1 5 -1 57 14 99c16 39 42 55 76 55c25 0 119 -10 145 -99c27 38 68 99 166 99c102 0 161 -50 178 -119c6 -24 6 -35 6 -51'], + 0xE658: [705,11,734,135,599,'584 474c56 -227 -49 -485 -213 -485c-98 0 -186 95 -220 231c-58 234 52 485 212 485c108 0 190 -110 221 -231zM501 370c-1 89 -9 129 -16 159c-20 79 -59 142 -115 142c-47 0 -135 -52 -136 -301h267zM500 324h-267c2 -74 6 -121 16 -160c8 -30 40 -141 115 -141 c50 0 136 61 136 301'], + 0xE659: [442,11,508,124,448,'448 144c1 -4 6 -63 -52 -110c-47 -37 -104 -45 -136 -45c-71 0 -123 43 -134 88c-7 27 9 103 10 135l3 57c2 16 1 59 2 76c2 15 -2 56 2 70c5 16 20 27 39 27c24 0 41 -18 45 -35c2 -7 5 -166 -14 -293c-4 -23 -5 -33 0 -53c9 -38 31 -38 41 -38c45 0 144 25 151 120 c1 9 2 15 19 15c4 0 21 0 24 -14'], + 0xE65A: [442,11,786,141,726,'726 144c3 -11 0 -155 -103 -155c-58 0 -131 36 -149 107c-1 6 -3 12 -4 27c0 0 1 15 -2 24c-13 52 -78 70 -171 76l-68 2c-1 -179 0 -180 0 -195c-1 -33 -26 -41 -40 -41c-19 0 -40 13 -46 35c-2 10 -2 382 0 391c5 16 20 27 39 27c24 0 41 -18 45 -35c2 -6 2 -45 1 -68 c0 -51 1 -22 1 -73c39 11 71 32 129 77c48 37 112 88 184 88c40 0 54 -26 58 -42c7 -30 -12 -61 -47 -61c-18 0 -45 10 -53 42c-3 11 -3 14 -3 17c-35 -12 -64 -31 -121 -75c-24 -19 -48 -37 -77 -55c88 -5 230 -13 255 -112c3 -11 3 -13 3 -30c1 -3 1 -18 5 -34 c4 -18 18 -58 56 -58c54 0 64 78 65 112c1 18 2 23 19 23c4 0 21 0 24 -14'], + 0xE65B: [442,12,890,65,825,'825 135c0 -35 -18 -144 -139 -144c-73 0 -121 52 -121 126c0 53 9 112 27 167c-124 -107 -221 -210 -331 -284c-13 -9 -26 -12 -37 -12c-24 0 -42 16 -42 35c0 9 5 19 16 28c47 63 86 184 86 267c0 60 -36 82 -76 82c-42 0 -100 -9 -100 -104c0 -14 -8 -18 -19 -18 c-10 0 -19 0 -23 10c-3 9 -1 154 139 154c74 0 121 -52 121 -126c0 -55 -11 -121 -30 -178c170 135 222 203 335 295c6 5 13 7 21 7c15 0 31 -8 38 -14c9 -7 14 -16 14 -24c0 -7 -4 -14 -11 -20c-62 -112 -85 -183 -85 -267c0 -60 41 -81 75 -81c46 0 101 8 101 103 c0 14 7 17 19 18c8 0 17 0 21 -10c1 -1 1 -5 1 -10'], + 0xE65C: [694,13,799,84,764,'764 3c4 -14 -8 -14 -26 -14h-25c-20 0 -23 0 -42 9c0 0 -16 7 -28 19c-12 13 -133 177 -204 267l-218 -278c-7 -8 -15 -19 -33 -19c-21 0 -42 17 -47 38c-5 18 7 34 13 40l255 260l-127 167l-73 97c-22 28 -52 66 -95 71c-13 1 -25 2 -29 16c-4 18 12 18 33 18 c96 0 132 -23 161 -60l435 -575c14 -17 26 -33 40 -43c5 -3 9 -7 10 -13'], + 0xE65D: [442,216,786,141,726,'726 144c2 -7 1 -60 -15 -99c-13 -33 -34 -56 -74 -56c-33 0 -104 14 -137 74c-33 -44 -78 -74 -142 -74c-36 0 -85 6 -130 30v-96c1 -66 1 -29 1 -94c-1 -33 -19 -45 -40 -45c-19 0 -40 12 -46 35c-1 3 -2 8 -2 24l1 550c0 12 0 49 40 49c24 0 41 -18 45 -35 c2 -5 2 -41 2 -62v-67v-90c-1 -29 0 -50 5 -73c18 -71 66 -92 120 -92c63 0 101 41 123 81c12 21 11 23 12 48v130c-1 41 -1 43 0 86c0 29 -1 63 39 63c19 0 41 -13 46 -35c1 -5 2 -7 1 -24c0 -154 -1 -275 4 -296c8 -31 25 -53 53 -53c35 0 52 39 51 113c1 16 1 22 19 22 c4 0 21 0 24 -14'], + 0xE65E: [442,0,751,47,609,'608 407c4 -14 8 -155 -116 -267c-108 -96 -235 -130 -307 -140h-17c-11 0 -23 4 -26 17v37v288c0 19 -1 21 -4 37c-12 4 -20 7 -55 7c-14 0 -30 0 -35 17c-1 6 -1 18 2 23c4 4 5 5 22 6l121 9c16 1 31 1 35 -16c1 -5 2 -7 1 -21v-359c89 25 160 76 204 125 c84 97 89 188 90 234c1 24 20 38 40 38c24 0 41 -18 45 -35'], + 0xE65F: [701,205,786,149,653,'651 -92c12 -50 -14 -113 -85 -113c-18 0 -53 3 -92 15c-28 8 -59 18 -63 33c-2 8 3 17 13 17c3 0 5 0 24 -8c46 -19 92 -23 109 -23c38 0 34 34 32 43c-5 21 -20 25 -52 34l-151 43c-83 23 -132 37 -171 68c-19 16 -50 40 -62 86c-15 60 14 152 98 201 c-17 8 -79 37 -97 108c-19 75 21 160 155 191c-7 15 -10 19 -16 40c-2 9 -14 58 13 58c9 0 21 -6 25 -20c2 -7 0 -19 5 -40c4 -18 5 -19 12 -31c30 4 44 4 69 4c52 0 106 -2 114 -35c11 -41 -65 -41 -101 -41c-25 0 -56 0 -89 27c-90 -37 -101 -113 -90 -155 c6 -25 22 -54 58 -78c48 15 87 15 109 15c41 0 105 0 114 -35c10 -41 -67 -41 -108 -41c-24 0 -72 0 -123 15c-85 -44 -96 -121 -88 -152c13 -52 76 -70 168 -96l92 -26l92 -26c23 -7 72 -21 86 -78zM478 576c-22 4 -35 4 -52 4c-23 0 -28 0 -43 -3c12 -5 14 -5 39 -5 c36 0 47 2 56 4zM478 309c-13 3 -23 4 -53 4c-21 0 -32 0 -55 -4c19 -4 28 -4 50 -4c36 0 43 2 58 4'], + 0xE660: [431,11,856,60,709,'708 399c4 -14 -3 -28 -7 -34c-12 -10 -22 -10 -40 -10h-142c3 -34 8 -74 16 -108c5 -18 27 -106 92 -181c10 -12 15 -17 18 -28c6 -26 -16 -49 -40 -49c-44 0 -93 94 -110 163c-20 79 -19 188 -19 203h-131l-4 -239c-3 -81 -5 -127 -47 -127c-20 0 -41 13 -47 36 c-3 10 -3 12 5 38c20 63 45 167 49 292h-71c-61 0 -103 -22 -126 -65c-6 -9 -6 -10 -20 -10c-6 0 -20 0 -23 14c-3 12 29 63 50 87c46 50 91 50 113 50h429c17 0 47 0 55 -32'], + 0xE661: [442,216,734,141,598,'592 266c36 -145 -77 -277 -220 -277c-54 0 -102 22 -143 63v-211c-1 -24 -1 -57 -40 -57c-19 0 -40 12 -46 35c-1 3 -2 8 -2 24l1 374c0 133 106 225 222 225c104 0 201 -70 228 -176zM493 302c-21 82 -80 106 -123 106c-42 0 -137 -27 -141 -178c0 0 -1 -115 0 -118 c3 -10 45 -89 134 -89c45 0 99 26 124 91c19 52 16 145 6 188'], + 0xE662: [431,11,873,136,726,'725 399c4 -15 -2 -29 -7 -34c-12 -10 -22 -10 -40 -10h-124c29 -30 49 -65 59 -105c37 -149 -88 -261 -231 -261c-110 0 -214 66 -240 170c-30 121 65 272 236 272h293c16 0 46 0 54 -32zM527 258c-18 69 -71 97 -146 97c-193 0 -158 -190 -150 -221 c23 -92 99 -111 144 -111c134 0 177 133 152 235'], + 0xE663: [431,13,786,60,639,'638 399c4 -14 -2 -28 -7 -34c-12 -10 -21 -10 -40 -10h-210l20 -317c1 -26 -7 -51 -39 -51c-20 0 -41 13 -46 35c-2 6 1 46 2 69l16 264h-104c-52 0 -101 -15 -126 -65c-6 -9 -6 -10 -20 -10c-6 0 -20 0 -23 14c-4 13 32 68 52 89c46 48 88 48 111 48h360 c16 0 46 0 54 -32'], + 0xE664: [443,11,786,59,671,'662 357c1 -6 34 -148 -29 -259c-27 -46 -80 -109 -173 -109c-94 0 -215 29 -244 145c-8 30 -8 70 9 176c5 29 7 40 2 60c-7 27 -21 38 -40 38c-45 0 -80 -46 -84 -115c-1 -15 -1 -20 -18 -20c-5 0 -21 0 -25 14c-6 27 18 155 123 155c62 0 118 -39 131 -88 c4 -18 1 -33 -2 -52c-20 -122 -15 -153 -9 -177c25 -102 128 -102 152 -102c134 0 187 180 169 252c-7 29 -24 55 -58 76c-7 5 -22 15 -27 34c-7 26 13 58 44 58c17 0 62 -17 79 -86'], + 0xE665: [694,205,925,142,782,'778 253c31 -125 -89 -257 -295 -267l1 -169c0 -18 0 -22 -18 -22c-7 0 -21 0 -25 15c-1 5 0 94 0 177c-145 6 -268 88 -294 192c-31 126 92 253 282 265c9 1 11 3 11 3l1 15v209c0 20 1 23 18 23c7 0 21 0 24 -14c0 0 1 -3 1 -15v-221c161 -8 271 -99 294 -191zM441 21 v389c-169 -13 -235 -136 -208 -245c26 -103 127 -141 208 -144zM692 266c-28 111 -138 141 -208 144v-389c169 13 236 133 208 245'], + 0xE666: [442,205,925,59,865,'865 -131c4 -19 -13 -74 -93 -74c-112 0 -154 48 -182 81c-57 65 -100 130 -141 190l-137 -164l-70 -84c-8 -9 -12 -12 -19 -12c-11 0 -22 9 -25 20c-1 5 1 11 8 21l208 249c6 6 7 10 7 10c-2 8 -201 302 -269 302c-17 0 -45 -10 -50 -41c-1 -8 -1 -13 -17 -13 c-5 0 -21 0 -25 14c-4 18 12 74 93 74c111 0 152 -47 176 -73c52 -59 108 -138 147 -198l154 185l50 60c11 12 13 15 21 15c11 0 23 -9 25 -20c2 -8 -1 -12 -10 -23l-205 -247c-6 -8 -7 -10 -7 -10c2 -8 201 -302 269 -302c25 0 46 17 49 38c1 12 2 16 18 16 c6 0 21 0 25 -14'], + 0xE667: [694,205,925,59,809,'805 197c-8 -39 -30 -78 -57 -110c-86 -98 -192 -98 -229 -98c0 -88 0 -87 -1 -174c0 -16 -1 -20 -18 -20c-5 0 -20 0 -23 14l-2 182c-104 5 -232 42 -260 152c-4 18 -10 43 11 169c3 23 6 37 1 58c-7 27 -21 38 -40 38c-46 0 -81 -48 -84 -115c-1 -15 -1 -20 -18 -20 c-5 0 -21 0 -25 14c-6 27 18 155 123 155c62 0 118 -39 131 -88c4 -17 1 -31 -3 -57c-19 -119 -13 -143 -10 -158c19 -76 93 -106 175 -114v646c0 20 1 23 18 23c6 0 21 0 24 -14c0 0 1 -14 0 -16v-641c180 0 268 162 245 252c-11 45 -42 66 -58 76c-8 5 -23 16 -27 34 c-7 27 15 58 43 58c21 0 63 -20 80 -86c8 -34 13 -116 4 -160'], + 0xE668: [442,11,925,114,806,'806 238c0 -126 -60 -249 -173 -249c-72 0 -131 39 -169 97c-33 -58 -85 -97 -152 -97c-96 0 -163 77 -188 174c-6 26 -9 54 -9 82c-1 64 15 126 49 180c4 7 12 11 20 11c5 0 10 -1 15 -4c7 -5 13 -12 15 -19s0 -13 -3 -19c-29 -48 -54 -100 -54 -156c0 -15 2 -29 5 -43 c17 -68 72 -119 143 -119c54 0 101 30 129 74c-3 7 -5 14 -7 21c-6 24 -9 49 -9 74c0 26 15 51 39 51c22 0 37 -17 43 -40c1 -5 2 -12 3 -18c-1 -31 -5 -63 -13 -92c29 -42 79 -70 136 -70c82 0 138 81 138 169c0 9 -2 19 -4 27c-8 33 -30 62 -61 80c-13 8 -21 20 -24 33 c-3 11 -2 24 5 35c9 14 24 22 39 22c9 0 18 -3 27 -8c28 -17 43 -45 51 -77c9 -36 9 -79 9 -119'], + 0xE669: [453,22,778,137,588,'588 87c3 -11 -10 -53 -61 -81c-37 -20 -90 -28 -141 -28c-140 0 -228 68 -245 136c-10 37 1 87 58 126c-29 15 -51 38 -59 67c-21 84 101 146 235 146c67 0 117 -19 152 -36c11 -5 23 -10 28 -27c4 -18 -9 -35 -27 -35c-8 0 -10 1 -25 8c-58 28 -106 28 -126 28 c-103 0 -208 -29 -195 -83c8 -33 52 -48 52 -48s3 0 9 2c40 15 77 18 107 18c47 0 93 -4 101 -35c10 -41 -56 -41 -94 -41c-34 0 -65 0 -114 16c-47 -26 -69 -67 -61 -101c20 -79 168 -79 205 -79c101 0 150 10 168 51c3 8 5 13 13 13c7 0 18 -7 20 -17zM401 241 c-15 3 -28 5 -44 5c-33 0 -52 -5 -58 -6c15 -2 36 -2 51 -2c21 0 38 0 51 3'], + 0xE66A: [705,11,786,59,719,'718 339c3 -10 0 -19 -10 -19c-8 0 -50 6 -61 8c-1 -140 -70 -339 -223 -339c-72 0 -179 16 -207 128c-7 27 -7 50 -6 123c-1 16 -1 43 0 62c0 36 0 40 -4 53c-5 20 -19 53 -54 53c-47 0 -49 -74 -50 -114c0 -16 -1 -21 -18 -21c-6 0 -21 0 -25 15c-1 5 -1 57 14 99 c16 39 42 55 76 55c61 0 130 -36 145 -97c3 -11 3 -39 3 -59c-1 -19 -1 -47 0 -62c0 -39 -1 -93 6 -119c7 -28 24 -82 116 -82c89 0 140 145 134 322c-145 28 -240 81 -264 175c-27 107 49 185 134 185c105 0 180 -114 208 -225c2 -6 14 -54 15 -119l40 -5 c19 -3 28 -5 31 -17zM555 378c-1 46 -3 104 -16 155c-9 34 -40 138 -109 138c-64 0 -119 -66 -98 -150c17 -69 88 -117 223 -143'], + 0xE66B: [431,11,1168,60,1020,'1020 399c0 0 11 -44 -42 -44h-30c4 -5 22 -37 30 -69c28 -112 -43 -297 -199 -297c-105 0 -159 92 -181 163c-37 -96 -117 -163 -213 -163c-89 0 -140 76 -157 145c-28 109 22 191 40 221c-63 0 -81 0 -111 -14c-35 -17 -48 -40 -53 -50c-6 -10 -7 -11 -20 -11 c-6 0 -20 0 -23 14c-3 12 27 61 48 84c46 53 93 53 115 53h741c17 0 47 0 55 -32zM936 286c-9 34 -30 67 -32 69h-584c-25 -35 -73 -116 -53 -196c15 -57 55 -94 112 -94c78 0 194 61 200 222c1 12 10 12 18 12c7 0 21 0 25 -15c1 -3 0 -4 1 -11c0 -34 6 -56 9 -70 c21 -82 68 -138 141 -138c110 0 189 114 163 221'], + 0xE66C: [442,194,734,141,598,'592 266c36 -145 -77 -277 -220 -277c-86 0 -150 47 -185 93c1 -35 5 -80 12 -112c14 -56 35 -69 172 -69c29 0 108 0 143 -6c21 -4 57 -10 68 -55c8 -34 -5 -34 -16 -34c-10 0 -21 0 -25 19c-17 5 -19 5 -50 5c-52 0 -67 -5 -127 -5c-114 0 -180 19 -205 117 c-5 21 -10 63 -12 84c-7 90 -5 206 -5 209c9 115 105 207 222 207c104 0 201 -70 228 -176zM493 302c-21 82 -80 106 -123 106c-47 0 -97 -28 -121 -82c-29 -64 -21 -156 -12 -192c22 -88 86 -111 127 -111c40 0 97 23 123 91c19 52 16 145 6 188'], + 0xE66D: [442,108,717,148,585,'583 8c12 -49 -14 -116 -85 -116c0 0 -81 3 -87 28c-3 12 8 17 14 17c3 0 8 -1 13 -3c18 -5 34 -8 51 -8c34 0 34 35 31 45c-6 25 -27 33 -43 39c-28 11 -30 11 -51 20l-101 39c-56 22 -149 58 -172 150c-26 107 70 223 276 223c11 0 46 0 79 -6c48 -9 56 -18 59 -30 c3 -13 -5 -24 -18 -24c-4 0 -5 0 -14 3c-42 15 -71 23 -108 23c-140 0 -235 -70 -214 -155c14 -56 76 -80 110 -93c18 -8 57 -23 68 -27l85 -33c53 -20 93 -36 107 -92'], + 0xE66E: [442,218,925,115,809,'803 288c39 -156 -101 -299 -305 -299c-11 0 -27 0 -39 1l12 -168c1 -23 -16 -40 -40 -40c-20 0 -40 14 -45 35c-2 5 -2 8 -1 33c7 71 9 87 11 148c-139 22 -249 93 -274 196c-12 46 -9 148 30 208c17 29 22 29 33 29c6 0 21 0 25 -14c1 -5 0 -6 -12 -23 c-47 -62 -42 -166 -36 -190c25 -99 161 -127 240 -134c6 102 10 171 44 248c31 70 86 124 166 124c86 0 167 -59 191 -154zM763 271c-16 65 -85 95 -143 95c-84 0 -181 -74 -170 -239c2 -19 4 -54 5 -57c1 -5 10 -5 15 -5h20c200 0 298 108 273 206'], + 0xE66F: [716,22,856,133,722,'711 435c32 -125 15 -457 -283 -457c-62 0 -123 11 -185 56c-59 42 -91 85 -103 135c-7 27 -24 122 49 197c75 78 148 93 219 93c117 0 184 -73 210 -120c1 45 -1 94 -13 141c-40 159 -166 197 -243 197c-88 0 -128 -36 -143 -65c0 0 38 -7 47 -42c7 -31 -11 -61 -47 -61 c-27 0 -47 17 -53 41c-9 34 3 166 189 166c167 0 315 -116 356 -281zM611 286c-17 67 -81 139 -189 139c-25 0 -101 0 -154 -72c-49 -68 -27 -202 -23 -215c13 -55 62 -118 176 -118c200 0 202 216 190 266'], + 0xE670: [441,10,748,83,728,'728 60c5 -21 -19 -70 -77 -70c-30 0 -83 12 -125 85c-45 -43 -118 -85 -210 -85c-116 0 -203 82 -226 174c-35 140 72 277 219 277c100 0 191 -64 231 -163c4 -9 23 -76 27 -91c29 54 47 115 48 181c2 22 1 25 15 25c5 0 17 0 20 -13c3 -11 -1 -144 -69 -239 c36 -123 53 -123 67 -123c12 0 41 6 46 44c0 6 1 10 14 10c5 0 17 0 20 -12zM511 107c-18 53 -34 124 -50 167c-24 62 -66 139 -146 139c-35 0 -88 -17 -119 -77c-35 -69 -21 -178 -14 -207c17 -67 65 -111 131 -111c38 0 120 9 198 89'], + 0xE671: [704,194,656,110,556,'556 187c0 -55 -28 -105 -71 -140c-48 -39 -109 -57 -171 -57c-71 0 -132 36 -169 90v-265c0 -6 -4 -9 -10 -9h-10c-7 0 -13 5 -14 14v613c-1 138 72 271 197 271c52 0 103 -16 143 -50c26 -23 47 -54 56 -88c2 -11 3 -23 3 -35c1 -46 -21 -89 -57 -119 c-6 -6 -13 -10 -20 -15c18 -10 36 -23 50 -38c33 -32 55 -72 66 -115c5 -18 8 -38 7 -57zM478 193c0 26 -1 53 -8 79c-6 26 -17 50 -35 72c-10 13 -23 25 -38 34c-26 -10 -55 -15 -83 -15c-42 0 -90 0 -97 29c0 0 -1 5 -1 8c0 31 50 31 92 31c28 0 56 -5 82 -14 c6 5 11 10 17 16c26 28 34 66 34 104c0 16 -1 32 -5 48c-5 19 -13 37 -27 52c-24 26 -59 40 -95 40c-111 0 -169 -124 -169 -249v-241c0 -15 2 -29 5 -43c18 -72 82 -126 159 -126c47 0 92 17 126 51c32 32 43 78 43 124zM353 398c-13 3 -26 5 -39 5c-27 0 -64 0 -63 -9 c-1 -3 34 -3 57 -3c15 0 31 2 45 7'], + 0xE672: [441,214,687,50,588,'588 419c1 -4 0 -8 -1 -13c-26 -87 -35 -134 -41 -165c-9 -48 -31 -183 -27 -218c10 -72 10 -146 7 -185c-3 -52 -14 -52 -21 -52c-13 0 -20 13 -23 24c-7 30 -5 141 0 216c1 11 1 22 -11 72c-26 102 -87 263 -248 263c-67 0 -132 -36 -138 -95c-2 -15 -2 -17 -15 -17 c-3 0 -16 0 -19 12c-1 3 -5 67 42 122c22 26 65 58 124 58c163 0 258 -243 277 -301c15 122 55 265 62 286c1 5 10 5 13 5s16 0 19 -12'], + 0xE673: [714,10,564,82,464,'464 183c0 -100 -59 -193 -151 -193c-61 0 -119 24 -162 67c-31 30 -52 67 -62 107c-4 18 -7 36 -6 54c0 59 24 116 65 157c30 30 67 50 108 59c-49 57 -98 120 -112 175c-5 18 -5 35 -1 50c4 16 13 29 26 38c14 9 29 13 44 16c7 0 14 1 21 1c40 0 94 -11 139 -21 c16 -3 27 -14 31 -28c1 -6 1 -12 -1 -18c-4 -15 -18 -24 -33 -24c-3 0 -7 0 -10 2c-48 15 -89 48 -140 51h-6c-9 0 -18 -1 -26 -5c-9 -5 -15 -14 -18 -24c-1 -4 0 -9 1 -14c11 -45 102 -124 166 -180c39 -34 74 -73 96 -121c10 -18 15 -36 20 -56c8 -30 12 -62 11 -93z M394 162c0 24 -3 48 -9 72c-5 19 -12 38 -21 56c-21 41 -51 77 -80 111l-6 7c-31 -8 -58 -27 -78 -53c-32 -40 -40 -92 -40 -143c0 -25 3 -51 9 -76c6 -23 15 -45 30 -64c27 -34 67 -54 109 -54c62 0 85 73 86 144'], + 0xE674: [431,10,500,96,490,'490 45c1 -6 0 -9 -17 -20c-46 -30 -87 -35 -117 -35c-116 0 -224 79 -253 196c-38 152 87 245 220 245h43c19 0 33 0 38 -17c4 -19 -15 -19 -31 -19h-38c-88 0 -142 -44 -149 -135h179c19 0 34 0 38 -17c5 -19 -14 -19 -29 -19h-188c1 -38 6 -58 9 -72 c29 -114 117 -134 157 -134c41 0 78 19 107 42c5 4 7 5 11 5c15 0 19 -17 20 -20'], + 0xE675: [699,204,625,96,551,'548 -81c13 -52 -12 -123 -82 -123c-51 0 -117 33 -121 48c-1 5 -1 14 10 14c5 0 8 -2 15 -6c40 -24 72 -28 89 -28c33 0 42 32 35 59c-11 44 -51 56 -89 66c-137 39 -165 46 -206 79c-51 42 -78 89 -92 144c-45 179 59 355 172 421c-15 21 -20 39 -23 51 c-4 17 -14 55 9 55c9 0 18 -8 20 -16v-7c1 -11 4 -30 5 -34c4 -18 13 -32 15 -36c23 10 46 10 63 10c37 0 89 -1 97 -31c9 -37 -59 -37 -90 -37c-18 0 -48 0 -73 20c-91 -56 -175 -216 -138 -364c11 -42 29 -76 64 -106c32 -29 61 -37 144 -60c30 -8 79 -22 90 -26 c40 -16 75 -49 86 -93zM427 582c-21 5 -25 6 -53 6c-15 0 -29 0 -43 -6c12 -6 14 -6 38 -6c28 0 45 2 58 6'], + 0xE676: [441,214,625,18,535,'535 -166c1 -14 0 -48 -36 -48c-16 0 -36 10 -42 32c0 0 -1 6 -1 21l1 449c0 19 0 28 -7 55c-6 24 -20 70 -76 70c-78 0 -114 -57 -134 -106c-12 -31 -11 -33 -12 -76c1 -23 1 -45 0 -67l1 -90c0 -21 0 -53 -3 -62s-16 -22 -34 -22c-16 0 -36 10 -41 32c-1 3 -1 28 -1 41 v128v90c0 27 0 64 -5 83c-7 27 -19 49 -45 49c-39 0 -46 -50 -46 -108c0 -27 -1 -30 -15 -30c-3 0 -17 0 -20 13c-1 6 0 66 11 100c9 27 27 53 66 53c31 0 103 -15 128 -90c46 79 105 90 147 90c47 0 79 -14 100 -27c44 -29 54 -71 58 -87c6 -23 6 -27 6 -55v-438'], + 0xE677: [704,10,579,83,494,'478 487c56 -224 -34 -497 -186 -497c-92 0 -162 98 -192 217c-57 229 36 497 186 497c98 0 166 -112 192 -217zM405 365c0 84 -7 142 -16 181c-5 19 -33 130 -97 130c-59 0 -121 -95 -118 -311h231zM405 329h-231c-1 -37 0 -115 16 -181c14 -54 42 -130 97 -130 c44 0 72 47 90 99c18 49 27 103 28 212'], + 0xE678: [441,10,379,73,358,'358 143c0 0 5 -56 -39 -102c-33 -33 -80 -51 -125 -51c-67 0 -109 45 -119 85c-7 28 7 101 9 133l2 46c1 16 1 59 3 75c1 19 -2 67 0 86c3 12 17 26 36 26c20 0 37 -14 42 -32c1 -4 4 -160 -14 -304c-5 -30 -1 -45 1 -52c8 -32 22 -35 36 -35c61 0 128 46 135 119 c0 15 1 19 14 19c3 0 16 0 19 -13'], + 0xE679: [441,10,625,87,604,'604 143c0 0 9 -153 -89 -153c-48 0 -113 32 -131 103c-3 10 -4 15 -5 31c0 12 -1 22 -1 22c-20 77 -159 81 -211 81c0 -100 1 -182 0 -187c0 -17 0 -50 -36 -50c-16 0 -36 10 -41 32c-2 7 -3 381 -1 393c3 12 17 26 36 26c20 0 37 -14 42 -32c1 -5 1 -49 0 -73v-73 c24 7 48 18 111 76c43 41 98 92 165 92c26 0 46 -13 52 -38c7 -27 -10 -55 -42 -55c-23 0 -43 14 -49 38c-1 5 -2 13 -1 17c-29 -11 -50 -25 -106 -77c-5 -4 -44 -40 -75 -62c31 0 207 0 233 -106c3 -12 4 -22 3 -33c1 -26 1 -28 6 -45c6 -27 21 -52 48 -52 c51 0 58 75 59 114c0 19 0 24 14 24c3 0 16 0 19 -13'], + 0xE67A: [442,12,736,54,682,'682 135c0 -35 -14 -144 -111 -144c-59 0 -97 52 -97 126c0 53 9 126 23 181c-99 -103 -198 -224 -286 -298c-11 -9 -21 -12 -30 -12c-19 0 -33 16 -33 35c0 9 3 19 12 28c38 63 69 184 69 267c0 60 -21 90 -61 91c-40 0 -80 -18 -80 -113c0 -14 -6 -18 -15 -18 c-8 0 -15 0 -18 10c-3 9 -1 154 111 154c59 0 97 -52 97 -126c0 -55 -11 -130 -26 -187c136 135 201 222 290 304c5 5 11 6 17 6c12 0 25 -7 30 -13c7 -7 11 -15 11 -24c0 -7 -3 -14 -9 -20c-49 -112 -68 -183 -68 -267c0 -60 20 -89 60 -90c40 0 81 17 81 112 c0 14 6 17 15 18c7 0 14 0 17 -10c0 -1 1 -5 1 -10'], + 0xE67B: [694,12,634,39,644,'644 2c2 -12 -8 -12 -27 -12h-20c-16 0 -34 0 -58 24c-15 13 -108 158 -186 272l-192 -282c-2 -3 -11 -16 -30 -16c-14 0 -36 10 -42 34c-5 17 1 25 11 35l228 266l-189 280c-39 57 -59 60 -80 63c-6 1 -16 2 -19 14c-3 14 11 14 23 14c106 0 137 -45 148 -63l388 -576 c7 -9 22 -32 37 -43c3 -2 6 -5 8 -10'], + 0xE67C: [441,214,625,88,604,'604 143c1 -4 3 -61 -10 -100c-10 -31 -30 -53 -66 -53c-15 0 -84 3 -120 72c-2 -2 -41 -72 -127 -72c-36 0 -77 8 -114 29c1 -98 1 -178 0 -183c0 -17 0 -50 -36 -50c-16 0 -36 10 -42 32c0 0 -1 6 -1 21l1 555c0 12 0 47 36 47c20 0 37 -14 42 -32c1 -4 0 -42 1 -63 v-56v-90c0 -54 0 -67 6 -93c5 -18 23 -89 105 -89c57 0 91 39 111 83c6 13 5 15 6 40v125v83c0 20 0 52 1 58c7 19 24 24 35 24c17 0 36 -12 41 -32c2 -5 2 -49 2 -74l-1 -89l1 -90c-1 -26 0 -62 4 -79c7 -27 20 -49 46 -49c42 0 46 59 46 107c0 27 0 31 14 31 c3 0 16 0 19 -13'], + 0xE67D: [441,0,595,4,505,'505 409c0 0 13 -132 -93 -253c-83 -95 -198 -142 -284 -156h-16c-4 0 -19 0 -22 14c-1 4 -1 24 -1 124l-1 202c1 13 1 33 -1 39c-2 9 -3 15 -51 15c-12 0 -26 0 -30 14c-5 21 7 22 22 23c19 2 37 3 55 5c7 0 64 5 64 5c16 0 19 -14 19 -14c2 -5 2 -11 2 -15v-372 c158 50 253 203 258 345c2 28 2 56 37 56c20 0 37 -14 42 -32'], + 0xE67E: [699,204,625,96,549,'547 -95c11 -46 -13 -109 -82 -109c-54 0 -132 30 -136 48c-3 10 4 14 10 14c4 0 6 0 15 -6c49 -25 89 -28 104 -28c34 0 37 33 33 47c-6 25 -20 29 -73 46l-45 14l-111 36c-35 11 -139 45 -162 136c-10 42 -3 142 94 206c-54 28 -83 67 -93 107c-16 65 10 152 139 189 c-8 13 -14 35 -15 39c-4 17 -14 55 9 55c9 0 18 -8 20 -16v-7c1 -11 2 -23 5 -34c3 -13 11 -30 11 -30c27 4 49 4 64 4c37 0 93 0 101 -31c9 -37 -59 -37 -90 -37c-25 0 -50 0 -79 25c-66 -35 -90 -105 -76 -162c6 -24 21 -56 54 -78c37 14 67 14 91 14c35 0 92 0 100 -31 c9 -37 -59 -37 -95 -37c-18 0 -61 0 -107 14c-74 -45 -89 -123 -80 -159c14 -58 73 -76 178 -110c12 -3 147 -46 156 -50c24 -11 50 -31 60 -69zM397 582c-18 5 -24 6 -55 6c-21 0 -29 0 -46 -5c14 -7 26 -7 42 -7c40 0 51 4 59 6zM396 313c-20 5 -24 6 -55 6 c-23 0 -32 0 -56 -6c20 -6 32 -6 51 -6c34 0 47 2 60 6'], + 0xE67F: [431,10,687,19,592,'592 402c1 -5 2 -21 -10 -31c-9 -8 -17 -8 -35 -8h-125c4 -71 14 -111 19 -130c20 -82 53 -139 81 -176c8 -10 11 -14 13 -22c6 -24 -13 -45 -36 -45c-16 0 -29 4 -58 54c-11 22 -23 49 -33 89c-20 79 -21 170 -21 230h-119l-2 -238c-2 -90 -2 -135 -42 -135 c-23 0 -38 16 -42 32c-2 7 -1 11 -1 15c2 4 7 25 9 38c15 60 40 178 43 288h-61c-22 0 -84 0 -117 -70c-4 -9 -4 -11 -15 -11c-4 0 -17 0 -20 12c-3 9 23 63 43 86c35 42 60 51 101 51h377c17 0 43 0 51 -29'], + 0xE680: [441,214,579,88,494,'487 272c37 -146 -66 -282 -194 -282c-69 0 -112 47 -125 62l-1 -204c1 -32 0 -62 -36 -62c-16 0 -36 10 -42 32c0 0 -1 6 -1 21l1 375c-1 141 99 227 197 227c88 0 175 -63 201 -169zM396 312c-18 72 -64 101 -105 101c-40 0 -83 -29 -106 -82c-18 -44 -18 -67 -17 -190 v-36c3 -13 44 -87 118 -87c31 0 77 16 105 87c18 50 17 161 5 207'], + 0xE681: [431,10,702,83,607,'606 403c2 -7 3 -21 -8 -32c-9 -8 -18 -8 -35 -8h-115c42 -45 53 -90 57 -106c38 -153 -78 -267 -204 -267c-102 0 -188 70 -211 163c-30 120 50 278 210 278h256c17 0 43 0 50 -28zM427 268c-19 76 -76 95 -127 95c-172 0 -138 -208 -130 -238c18 -71 72 -107 126 -107 c38 0 89 20 117 75c32 67 19 157 14 175'], + 0xE682: [431,12,625,19,530,'529 403c10 -40 -32 -40 -43 -40h-186l20 -325c0 -14 2 -50 -36 -50c-8 0 -34 5 -41 32c-1 6 -2 7 -1 23l19 320h-89c-23 0 -84 0 -117 -70c-4 -9 -4 -11 -15 -11c-4 0 -17 0 -20 12c-2 8 21 61 44 87c40 48 71 50 100 50h315c17 0 43 0 50 -28'], + 0xE683: [442,10,625,18,557,'548 363c5 -20 26 -143 -16 -248c-12 -31 -57 -125 -161 -125s-192 42 -216 138c-6 24 -11 60 8 181c3 21 7 45 1 69s-17 35 -34 35c-39 0 -73 -40 -77 -122c0 -11 0 -16 -14 -16c-3 0 -17 0 -20 13c-4 16 7 153 107 153c52 0 104 -35 116 -86c5 -17 2 -32 -1 -51 c-15 -111 -16 -149 -6 -187c3 -14 13 -51 48 -76c33 -22 75 -23 86 -23c126 0 168 192 150 261c-12 48 -48 73 -60 82c-5 3 -17 11 -21 28c-6 25 15 53 41 53c0 0 50 0 69 -79'], + 0xE684: [694,204,748,90,657,'652 257c34 -136 -92 -262 -261 -269v-168c0 -21 0 -24 -15 -24c-3 0 -16 0 -19 12c-1 3 -1 40 -1 87v94c-112 4 -232 72 -260 185c-34 134 85 261 260 269v229c0 17 0 22 15 22c5 0 17 0 20 -13l1 -239c123 -5 234 -80 260 -185zM356 17v397 c-167 -16 -208 -157 -183 -257c23 -94 105 -136 183 -140zM575 274c-24 95 -107 137 -184 140v-397c158 14 211 148 184 257'], + 0xE685: [441,204,748,18,728,'728 -135c4 -17 -13 -69 -80 -69c-24 0 -100 2 -147 61c-55 66 -112 162 -141 211c-10 -16 -39 -55 -51 -70l-63 -86c-16 -21 -52 -75 -68 -95c-7 -8 -10 -11 -17 -11c-8 0 -18 8 -20 16c-1 6 1 8 6 17l192 264c-78 129 -86 142 -124 195c-22 30 -84 115 -116 115 c-15 0 -42 -10 -46 -42c0 -7 -1 -12 -14 -12c-4 0 -17 0 -20 13c-3 14 10 69 81 69c70 0 118 -24 153 -69c47 -60 62 -85 135 -203l180 248c8 11 9 14 17 14c9 0 18 -7 20 -16c2 -7 0 -10 -8 -21l-188 -260c41 -75 185 -310 240 -310c18 0 41 14 44 42c2 7 2 12 14 12 c5 0 17 0 21 -13'], + 0xE686: [694,204,748,18,680,'677 202c-7 -44 -26 -79 -46 -107c-79 -105 -171 -105 -210 -105c0 -121 0 -52 1 -173c0 -16 -1 -21 -15 -21c-4 0 -16 0 -19 13c-1 4 -2 157 -1 183c-76 4 -204 32 -233 147c-4 18 -10 41 9 167c3 30 6 49 1 72c-6 24 -17 35 -34 35c-39 0 -73 -40 -77 -122 c0 -11 0 -16 -14 -16c-3 0 -17 0 -20 13c-4 16 7 153 107 153c51 0 103 -34 116 -86c5 -17 2 -34 -1 -56c-19 -124 -12 -152 -8 -167c17 -67 70 -102 154 -112v652c1 18 0 22 15 22c3 0 16 0 19 -12c0 0 1 -5 0 -15l1 -649c171 0 242 176 221 260c-11 44 -42 69 -61 83 c-5 3 -17 11 -21 28c-7 26 15 53 41 53c3 0 50 -1 69 -79c12 -46 11 -128 6 -161'], + 0xE687: [440,10,748,66,679,'679 239c0 -123 -45 -249 -153 -249c-67 0 -118 40 -150 99c-28 -58 -74 -99 -137 -99c-86 0 -140 71 -162 159c-8 31 -11 63 -11 96c0 63 13 125 43 181c3 7 10 10 17 10c4 0 8 -1 12 -3c7 -3 12 -10 14 -17c1 -5 1 -10 -2 -15c-28 -50 -50 -105 -50 -162 c0 -18 2 -36 7 -53c16 -65 62 -117 126 -117c54 0 94 34 118 82l-3 8c-7 28 -10 56 -10 86c0 24 10 48 32 48c18 0 30 -15 34 -34c2 -6 3 -13 2 -20c0 -31 -3 -62 -10 -92c26 -46 71 -78 125 -78c80 0 123 87 124 176c-1 10 -1 21 -4 31c-8 34 -31 63 -61 83 c-10 7 -17 18 -20 29s-2 23 6 34c8 12 21 18 34 18c9 0 19 -2 26 -7c24 -16 36 -40 43 -70c10 -38 10 -83 10 -124'], + 0xE688: [451,20,627,84,484,'484 86c4 -16 -28 -106 -180 -106c-111 0 -197 57 -215 130c-16 63 23 107 54 129c0 0 -45 27 -56 68c-20 80 85 144 207 144c15 0 50 0 98 -18c21 -8 57 -22 62 -42c5 -17 -10 -32 -24 -32c-8 0 -15 5 -22 9c-52 28 -95 28 -111 28c-101 0 -189 -34 -176 -88 c6 -22 25 -41 51 -52c44 20 87 20 101 20c43 0 82 -4 89 -31c9 -37 -50 -37 -82 -37c-29 0 -59 0 -101 15c-59 -35 -64 -84 -58 -107c6 -25 30 -52 74 -67c39 -14 86 -14 111 -14c106 0 135 17 150 56c2 4 4 8 10 8c8 0 16 -6 18 -13zM326 243c-21 4 -26 5 -48 5 c-30 0 -49 -5 -59 -8c19 -4 39 -4 54 -4c37 0 40 1 53 7'], + 0xE689: [704,10,625,18,600,'600 338c1 -5 -1 -15 -10 -15c-5 0 -34 5 -52 8c-2 -152 -66 -341 -199 -341c-76 0 -159 25 -182 120c-6 22 -7 47 -8 69c0 9 1 62 0 77l1 57c-1 26 0 33 -5 51c-7 27 -19 49 -45 49c-39 0 -46 -50 -46 -108c0 -27 -1 -30 -15 -30c-3 0 -17 0 -20 13c-1 6 0 66 11 100 c9 27 27 53 66 53c56 0 115 -37 129 -94c4 -13 4 -39 4 -58c-1 -18 0 -49 -1 -57c1 -90 0 -108 7 -135c8 -32 29 -79 102 -79c46 0 71 41 96 118c20 64 20 147 21 214c-84 22 -205 65 -231 172c-23 92 33 182 116 182c103 0 162 -129 183 -211c3 -11 15 -61 16 -134l35 -6 c16 -3 24 -5 27 -15zM454 378c-1 53 -3 113 -17 171c-16 63 -44 127 -93 127c-63 0 -106 -79 -87 -154c24 -97 149 -131 197 -144'], + 0xE68A: [431,10,964,19,869,'868 403c9 -33 -21 -40 -41 -40h-28c21 -33 29 -65 30 -71c26 -104 -27 -302 -175 -302c-119 0 -151 128 -160 162c-35 -105 -110 -162 -191 -162c-88 0 -123 83 -135 131c-30 121 20 210 38 242c-63 0 -75 0 -102 -15c-27 -16 -40 -36 -48 -55c-5 -9 -5 -11 -16 -11 c-4 0 -17 0 -20 12c-3 9 21 61 42 86c38 45 66 51 102 51h654c16 0 43 0 50 -28zM795 292c-1 3 -10 37 -31 71h-516c-64 -99 -59 -176 -49 -213c4 -18 27 -92 99 -92c94 0 176 89 182 223c0 10 0 16 14 16c4 0 17 0 20 -13c1 -3 0 -4 1 -10c0 -28 3 -59 11 -89 c17 -68 53 -127 123 -127c108 0 172 129 146 234'], + 0xE68B: [441,194,579,88,494,'487 272c36 -145 -65 -282 -195 -282c-47 0 -115 19 -167 98c2 -39 4 -88 14 -127c6 -24 11 -47 46 -59c29 -9 67 -9 119 -9c111 0 161 0 174 -55c8 -32 -2 -32 -12 -32c-5 0 -17 0 -20 14c0 0 -1 4 -3 5c-7 5 -40 5 -43 5c-31 0 -68 -5 -110 -5c-136 0 -167 44 -183 108 c-6 23 -10 48 -14 105c-4 63 -6 126 -4 188c4 128 97 215 197 215c88 0 175 -63 201 -169zM396 312c-18 72 -64 101 -105 101c-39 0 -86 -28 -110 -93c-20 -59 -15 -156 -5 -196c17 -69 63 -106 111 -106c25 0 74 12 104 87c18 50 17 161 5 207'], + 0xE68C: [441,107,564,96,488,'486 5c12 -48 -15 -112 -80 -112c-16 0 -72 7 -77 26c-1 3 1 14 11 14c3 0 5 -1 12 -4c20 -7 46 -8 46 -8c30 0 35 29 31 48c-7 28 -26 37 -53 48l-105 46c-61 26 -147 62 -170 153c-28 114 75 225 243 225c4 0 114 0 122 -33c2 -7 -1 -20 -16 -20c-4 0 -6 1 -13 4 c-33 12 -60 21 -94 21c-118 0 -211 -75 -189 -163c15 -61 66 -83 149 -118c34 -15 118 -50 134 -61c39 -25 47 -59 49 -66'], + 0xE68D: [441,216,748,66,680,'673 295c40 -158 -89 -305 -269 -305c-11 0 -23 0 -34 1c10 -119 14 -170 10 -185s-22 -22 -33 -22s-35 5 -42 32c-2 9 -1 28 10 183c-136 28 -220 105 -242 194c-11 43 -11 147 28 216c13 22 17 22 26 22c3 0 16 0 19 -12c1 -4 1 -6 -4 -13c-59 -90 -37 -203 -37 -203 c19 -74 101 -124 215 -139l10 126c9 75 38 251 176 251c78 0 145 -57 167 -146zM642 275c-13 52 -61 98 -130 98c-50 0 -96 -28 -126 -89c-32 -65 -28 -110 -20 -225c10 -1 24 -1 33 -1c172 0 269 116 243 217'], + 0xE68E: [714,20,687,81,604,'592 445c35 -142 11 -465 -248 -465c-156 0 -238 114 -256 183c-10 40 -6 81 -4 98c13 90 103 195 243 195c94 0 154 -60 183 -118c0 80 -4 115 -15 158c-35 142 -136 189 -211 189c-17 0 -99 0 -130 -75c19 -2 41 -11 48 -38c6 -24 -7 -55 -42 -55s-47 28 -49 36 c-8 31 5 161 168 161c134 0 270 -98 313 -269zM501 292c-15 60 -66 136 -163 136c-113 0 -152 -92 -158 -138c-4 -25 -7 -123 3 -162c8 -31 42 -116 155 -116c168 0 180 213 163 280'], + 0xE68F: [446,10,569,39,529,'529 213c0 -124 -110 -223 -245 -223s-245 99 -245 223c0 125 107 233 245 233s245 -108 245 -233zM438 222c0 48 -3 98 -31 137c-22 31 -64 59 -123 59c-51 0 -93 -22 -118 -51c-35 -43 -36 -102 -36 -145c0 -46 3 -98 30 -139c33 -49 87 -61 124 -61c49 0 95 20 122 58 c29 41 32 94 32 142'], + 0xE690: [448,11,681,65,615,'615 213c0 -120 -118 -224 -275 -224c-156 0 -275 104 -275 224c0 125 118 235 275 235s275 -110 275 -235zM515 223c0 45 0 192 -175 192s-175 -147 -175 -192c0 -49 0 -198 175 -198s175 149 175 198'], + 0xE691: [713,0,939,61,876,'876 10c0 -10 -8 -10 -24 -10h-767c-16 0 -24 0 -24 10c0 0 0 3 7 14l369 670c9 16 19 19 31 19c20 0 23 -5 33 -23l368 -666c7 -11 7 -14 7 -14zM729 82l-294 533l-294 -533h588'], + 0xE692: [716,0,1097,89,1007,'1007 11c0 -11 -9 -11 -25 -11h-868c-16 0 -25 0 -25 11c0 3 0 4 7 15l412 667c11 18 19 23 40 23c22 0 29 -5 40 -23l412 -667c7 -11 7 -12 7 -15zM835 91l-323 524l-324 -524h647'], + 0xE693: [686,29,1275,107,1166,'1166 670c0 -4 0 -6 -9 -18l-420 -650c-17 -26 -28 -31 -62 -31h-77c-24 0 -43 0 -62 30l-422 652c-3 5 -7 10 -7 17c0 16 14 16 32 16h995c18 0 32 0 32 -16zM983 555h-626l313 -485'], + 0xE694: [686,24,1081,73,1007,'1007 666l-404 -662c-17 -28 -31 -28 -63 -28s-46 0 -63 28l-404 662c0 20 7 20 30 20h874c23 0 30 0 30 -20zM858 559h-547l274 -448'], + 0xE695: [711,0,1242,91,1151,'1151 16c0 -16 -16 -16 -30 -16h-1000c-14 0 -30 0 -30 16c0 5 2 7 8 17l421 647c19 29 33 31 60 31h82c27 0 42 -3 60 -31l422 -649c6 -10 7 -10 7 -15zM890 136l-306 470l-306 -470h612'], + 0xE696: [678,0,897,92,820,'820 472h-83c-25 127 -108 139 -211 139h-172v-544h132v-67c-50 4 -152 4 -206 4l-188 -4v67h106v544h-106v67h689'], + 0xE697: [711,0,1033,70,963,'963 0l-163 4l-182 -4v67h85l-220 506l-220 -506h85v-67l-150 4c-47 0 -79 0 -128 -4v67h90l267 612c11 26 20 32 52 32h75c21 0 39 0 53 -32l266 -612h90v-67'], + 0xE698: [703,0,1081,81,1000,'1000 188l-47 -188h-255c-20 0 -38 0 -38 32c0 78 45 160 82 227c35 64 69 128 69 198c0 159 -159 190 -271 190c-152 0 -270 -55 -270 -190c0 -72 36 -137 74 -206c30 -55 77 -140 77 -219c0 -32 -18 -32 -38 -32h-255l-47 188h83c16 -68 19 -69 87 -69h84 c-29 45 -94 103 -116 122c-93 84 -121 153 -121 215c0 109 106 247 443 247c334 0 442 -136 442 -247c0 -102 -74 -170 -155 -245c-39 -37 -65 -66 -82 -92h84c68 0 71 1 87 69h83'], + 0xE699: [686,0,1081,98,983,'983 343c0 -95 -144 -163 -381 -172v-104h132v-67c-52 4 -147 4 -202 4s-149 0 -201 -4v67h132v105c-143 3 -365 51 -365 171s222 168 365 171v105h-132v67c52 -4 146 -4 201 -4s150 0 202 4v-67h-132v-104c238 -9 381 -77 381 -172zM463 227v232 c-82 -4 -201 -18 -201 -116c0 -99 122 -112 201 -116zM819 343c0 101 -129 116 -217 116v-232c87 0 217 15 217 116'], + 0xE69A: [678,0,1153,92,1061,'1061 0l-184 4l-184 -4v67h106v544h-445v-544h106v-67l-184 4l-184 -4v67h106v544h-106v67h969v-67h-106v-544h106v-67'], + 0xE69B: [686,0,1161,98,1063,'1063 509c0 -25 -18 -27 -28 -28c-60 -6 -62 -58 -63 -80c-2 -50 -28 -131 -114 -178c-55 -29 -124 -47 -216 -52v-104h132v-67c-52 4 -147 4 -202 4s-149 0 -201 -4v67h132v105c-90 4 -160 26 -203 51c-88 52 -109 123 -111 194c-1 23 -20 59 -59 64c-16 1 -32 3 -32 28 c0 28 21 28 38 28h69c69 0 121 -44 123 -135c2 -100 68 -160 175 -172v389h-132v67c52 -4 146 -4 201 -4s150 0 202 4v-67h-132v-390c104 11 188 61 191 172c1 23 2 65 31 97c31 32 58 39 92 39h69c17 0 38 0 38 -28'], + 0xE69C: [686,0,1081,98,983,'983 223l-39 -223h-808c-14 0 -38 0 -38 25c0 8 5 17 14 24l333 260l-333 311c-12 11 -14 14 -14 32c0 34 16 34 38 34h808l39 -206h-83c-17 76 -80 112 -119 123c-59 15 -165 16 -183 16h-256l270 -253c10 -9 13 -12 13 -23c0 -12 -5 -16 -16 -25l-299 -234h299 c70 0 138 6 179 17c36 10 97 47 112 122h83'], + 0xE69D: [703,17,1161,98,1063,'1063 338c0 -169 -132 -355 -483 -355c-346 0 -482 183 -482 355c0 174 134 365 483 365c344 0 482 -188 482 -365zM908 339c0 212 -131 308 -328 308c-187 0 -327 -89 -327 -308c0 -213 138 -297 328 -297c181 0 327 78 327 297zM826 243h-83v34h-325v-34h-83v204h83 v-34h325v34h83v-204'], + 0xE69E: [703,0,1161,98,1063,'1063 552c0 -28 -21 -28 -37 -28h-20c-16 0 -32 0 -37 21c-3 15 -5 29 -103 29c-33 0 -98 0 -152 -68c-41 -52 -55 -112 -55 -164v-275h132v-67c-50 4 -155 4 -210 4s-160 0 -210 -4v67h132v275c0 35 -6 104 -58 167c-53 65 -118 65 -150 65c-33 0 -98 0 -103 -23 c-5 -26 -13 -27 -37 -27h-20c-16 0 -37 0 -37 28c0 87 96 151 212 151c155 0 242 -132 271 -239c46 156 150 239 270 239c116 0 212 -64 212 -151'], + 0xE69F: [669,0,1000,77,923,'915 482h-83c-1 32 -11 56 -20 58c-12 3 -63 4 -78 4h-468c-32 0 -71 -3 -75 -3c-21 -4 -23 -59 -23 -59h-83l12 187h806zM923 194l-12 -194h-822l-12 194h83c2 -54 20 -64 20 -64c7 -3 52 -5 84 -5h472c28 0 66 0 83 4c8 2 20 20 21 65h83zM782 237h-83v48h-398v-48h-83 v221h83v-48h398v48h83v-221'], + 0xE6A0: [711,0,1114,72,1042,'1042 0l-167 4l-181 -4v67h83l-70 146h-360l-69 -146h83v-67l-152 4c-46 0 -91 -1 -137 -4v67h102l290 611c16 33 32 33 55 33h76c38 0 43 -10 55 -35l290 -609h102v-67zM676 280l-149 312l-148 -312h297'], + 0xE6A1: [686,0,1057,100,959,'959 189c0 -103 -113 -189 -310 -189h-549v67h106v552h-106v67h511c188 0 308 -77 308 -175c0 -74 -77 -130 -198 -152c151 -17 238 -86 238 -170zM764 510c0 51 -46 109 -165 109h-254v-234h223c119 0 196 55 196 125zM795 191c0 53 -35 138 -183 138h-267v-262h257 c113 0 193 47 193 124'], + 0xE6A2: [678,0,978,92,921,'921 229l-58 -229h-771v67h106v544h-106v67h749l39 -206h-83c-27 129 -123 139 -234 139h-209v-226h89c64 0 120 4 122 83h83v-233h-83c-2 79 -58 83 -122 83h-89v-251h223c121 0 224 14 261 162h83'], + 0xE6A3: [686,0,919,98,830,'830 240l-23 -240h-671c-30 0 -38 5 -38 37c0 20 0 22 13 35l500 547h-173c-42 0 -223 0 -237 -139h-83l16 206h649c24 0 38 -1 38 -35c0 -18 0 -20 -13 -33l-498 -545h187c85 0 233 5 250 167h83'], + 0xE6A4: [686,0,1153,92,1061,'1061 0l-184 4l-184 -4v67h106v256h-445v-256h106v-67l-184 4l-184 -4v67h106v552h-106v67l184 -4l184 4v-67h-106v-229h445v229h-106v67l184 -4l184 4v-67h-106v-552h106v-67'], + 0xE6A5: [686,0,550,86,464,'464 0c-61 4 -128 4 -189 4s-128 0 -189 -4v67h111v552h-111v67c61 -4 128 -4 189 -4s128 0 189 4v-67h-111v-552h111v-67'], + 0xE6A6: [686,0,1154,92,1076,'1076 0c-52 3 -100 4 -153 4l-182 -4v67h52l-277 269l-162 -106v-163h106v-67l-184 4l-184 -4v67h106v552h-106v67l184 -4l184 4v-67h-106v-290l444 290h-42v67l171 -4c43 0 86 0 129 4v-67h-107l-320 -210l352 -342h95v-67'], + 0xE6A7: [686,0,1394,104,1290,'1290 0l-172 4l-171 -4v67h106v549h-1l-325 -587c-16 -29 -38 -29 -54 -29s-38 0 -54 29l-317 573h-1v-535h106v-67l-152 4l-151 -4v67h106v552h-106v67h235c18 0 40 0 56 -29l302 -546l302 546c16 29 38 29 56 29h235v-67h-106v-552h106v-67'], + 0xE6A8: [686,0,1153,92,1061,'1061 619h-106v-581c0 -32 -7 -38 -38 -38h-15c-22 0 -23 0 -38 14l-575 549v-496h106v-67l-152 4l-151 -4v67h106v552h-106v67h235c18 0 24 0 37 -12l500 -478v423h-106v67l152 -4l151 4v-67'], + 0xE6A9: [703,17,1122,98,1024,'1024 338c0 -175 -135 -355 -463 -355c-327 0 -463 179 -463 355c0 180 135 365 463 365c327 0 463 -184 463 -365zM852 355c0 68 -12 159 -78 217c-65 57 -148 69 -213 69s-153 -13 -215 -70c-65 -62 -76 -150 -76 -216c0 -168 71 -308 291 -308c206 0 291 124 291 308'], + 0xE6AA: [686,0,1017,96,919,'919 481c0 -125 -150 -199 -317 -199h-244v-215h106v-67l-184 4l-184 -4v67h106v552h-106v67h494c199 0 329 -87 329 -205zM747 481c0 70 -13 138 -185 138h-212v-276h211c173 0 186 70 186 138'], + 0xE6AB: [669,0,1042,69,973,'973 463h-83c-15 112 -61 139 -171 139h-120v-535h149v-67c-48 4 -173 4 -227 4s-179 0 -227 -4v67h149v535h-120c-110 0 -156 -27 -171 -139h-83l27 206h850'], + 0xE6AC: [686,0,1114,71,1043,'1043 0l-171 4c-57 0 -133 0 -189 -4v67h55l-207 213l-207 -213h66v-67l-168 4c-62 0 -109 -2 -151 -4v67h122l273 280l-264 272h-111v67l171 -4c57 0 133 0 189 4v-67h-55l167 -172l167 172h-67v67l169 -4l150 4v-67h-121l-233 -239l305 -313h110v-67'], + 0xE6AD: [704,0,1073,69,1003,'1003 14c0 -14 -13 -14 -28 -14h-878c-15 0 -28 0 -28 14c0 4 0 6 7 16l397 646c17 28 33 28 54 28h18c21 0 37 0 54 -28l397 -646c7 -10 7 -12 7 -16zM757 130l-268 436l-268 -436h536'], + 0xE6AE: [679,0,773,57,715,'715 440h-63c-17 131 -60 183 -196 183h-141v-567h134v-56c-26 2 -70 2 -96 3l-111 1c-8 0 -159 -2 -185 -4v56h107v567h-107v56h624'], + 0xE6AF: [704,0,897,50,846,'846 0l-158 4c-53 0 -132 0 -184 -4v56h91l-190 460l-182 -440l-4 -11c0 -9 73 -9 87 -9v-56l-142 4c-28 0 -100 -3 -114 -4v56h24c13 0 30 1 43 2c21 2 22 3 28 17l249 600c11 26 20 29 47 29h14c20 0 36 0 48 -29l255 -619h88v-56'], + 0xE6B0: [698,0,931,61,869,'869 203l-41 -203h-217c-21 0 -36 0 -36 30c0 73 36 160 59 214c31 75 58 142 58 213c0 155 -119 195 -227 195c-111 0 -227 -43 -227 -195c0 -71 27 -137 59 -213c23 -57 58 -141 58 -214c0 -30 -14 -30 -35 -30h-218l-41 203h63c17 -88 17 -91 88 -91h73 c-19 36 -47 69 -96 122c-60 66 -114 135 -114 222c0 109 98 242 390 242c293 0 390 -133 390 -242c0 -92 -61 -163 -119 -228c-33 -35 -68 -75 -91 -116h73c71 0 71 3 88 91h63'], + 0xE6B1: [686,0,931,75,855,'855 343c0 -84 -97 -167 -316 -182c-10 -1 -11 -2 -11 -19v-86h134v-56c-48 4 -151 4 -203 4s-155 0 -203 -4v56h134v105c-246 19 -315 113 -315 182c0 71 71 163 315 182v105h-134v56c48 -4 151 -4 203 -4s155 0 203 4v-56h-134v-86c0 -17 1 -18 13 -19 c202 -14 314 -90 314 -182zM390 207v272c-119 -10 -159 -60 -159 -136c0 -78 43 -126 159 -136zM699 343c0 78 -41 129 -171 137v-274c130 8 171 59 171 137'], + 0xE6B2: [679,0,1002,57,944,'944 0c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v567h-371v-567h107v-56c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v567h-107v56h887v-56h-107v-567h107v-56'], + 0xE6B3: [686,0,1002,75,926,'926 520c0 -20 -17 -22 -25 -23c-46 -6 -48 -74 -48 -98c0 -22 -10 -125 -99 -182c-57 -36 -121 -51 -191 -56v-105h134v-56c-48 4 -151 4 -203 4s-155 0 -203 -4v56h134v105c-49 4 -136 17 -200 70c-59 50 -76 129 -77 166c-1 39 -2 94 -54 100c-5 1 -19 6 -19 23 c0 23 21 23 36 23h72c102 0 103 -119 103 -123c1 -55 2 -179 139 -208v418h-134v56c48 -4 151 -4 203 -4s155 0 203 4v-56h-134v-419c113 20 151 100 152 188c1 86 28 144 103 144h73c15 0 35 0 35 -23'], + 0xE6B4: [686,0,931,75,855,'855 258l-34 -258h-710c-14 0 -36 0 -36 22c0 10 4 13 16 23l302 252l-307 334c-11 12 -11 16 -11 27c0 28 17 28 36 28h710l34 -239h-63c-10 73 -46 132 -100 158c-35 16 -100 25 -179 25h-221l237 -258c19 -19 19 -21 19 -29c0 -10 -4 -13 -16 -23l-294 -245h278 c132 0 253 12 276 183h63'], + 0xE6B5: [698,12,1002,75,926,'926 339c0 -185 -136 -351 -426 -351c-286 0 -425 163 -425 351c0 186 134 359 426 359c289 0 425 -171 425 -359zM776 339c0 49 -5 150 -58 217c-60 76 -145 96 -218 96c-81 0 -161 -28 -211 -88c-52 -64 -64 -146 -64 -225c0 -51 5 -144 56 -208 c64 -81 158 -95 219 -95c249 0 276 198 276 303zM704 245h-63v34h-281v-34h-63v198h63v-34h281v34h63v-198'], + 0xE6B6: [698,0,1002,75,926,'926 553c0 -26 -16 -26 -36 -26c-24 0 -31 1 -35 24c-2 10 -7 25 -95 25c-155 0 -184 -165 -184 -233v-287h134v-56c-48 4 -158 4 -210 4s-161 0 -209 -4v56h134v287c0 69 -29 233 -184 233c-86 0 -93 -15 -95 -25c-4 -24 -12 -24 -35 -24c-20 0 -36 0 -36 26 c0 73 74 145 178 145c130 0 215 -108 247 -231h1c26 108 108 231 247 231c104 0 178 -72 178 -145'], + 0xE6B7: [673,0,860,57,802,'795 472h-63c-1 19 -3 66 -18 75c-7 5 -69 6 -81 6h-407c-13 0 -76 0 -84 -7c-12 -13 -14 -54 -15 -74h-63l10 201h711zM802 211l-10 -211h-725l-10 211h63c2 -41 5 -68 15 -81c6 -10 78 -10 89 -10h411c14 0 79 0 87 8c14 11 16 64 17 83h63zM677 249h-63v41h-369v-41 h-63v202h63v-41h369v41h63v-202'], + 0xE6B8: [704,0,968,51,916,'916 0l-165 4c-53 0 -130 0 -182 -4v56h90l-63 140h-305l-54 -121l-5 -11c0 -8 83 -8 86 -8v-56l-142 4c-45 0 -121 -4 -125 -4v56h30c17 0 27 0 46 2c25 3 26 4 32 16l269 602c13 28 25 28 56 28c30 0 42 0 55 -28l278 -620h99v-56zM571 252l-128 284l-127 -284h255'], + 0xE6B9: [686,0,914,59,838,'838 187c0 -100 -97 -187 -276 -187h-503v56h107v574h-107v56h469c170 0 274 -76 274 -174c0 -66 -57 -130 -181 -153c155 -19 217 -97 217 -172zM652 512c0 61 -39 118 -137 118h-211v-250h183c98 0 165 51 165 132zM682 189c0 36 -13 145 -154 145h-224v-278h214 c116 0 164 66 164 133'], + 0xE6BA: [679,0,844,57,803,'803 269l-51 -269h-695v56h107v567h-107v56h677l34 -239h-63c-20 144 -77 183 -217 183h-173v-243h66c86 0 114 24 114 110h63v-276h-63c0 87 -29 110 -114 110h-66v-268h183c172 0 215 70 242 213h63'], + 0xE6BB: [686,0,789,75,720,'720 280l-20 -280h-590c-22 0 -35 0 -35 31c0 16 0 18 10 30l441 569h-142c-62 0 -216 -4 -228 -183h-63l14 239h571c21 0 35 0 35 -30c0 -15 -1 -16 -11 -29l-439 -566h157c159 0 225 59 237 219h63'], + 0xE6BC: [686,0,1002,57,944,'944 0c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v273h-371v-273h107v-56c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v574h-107v56c22 -2 161 -4 183 -4c16 0 159 2 182 4v-56h-107v-245h371v245h-107v56c22 -2 161 -4 183 -4c16 0 159 2 182 4v-56h-107 v-574h107v-56'], + 0xE6BD: [686,0,479,51,428,'428 0c-50 4 -136 4 -189 4s-138 0 -188 -4v56h113v574h-113v56c50 -4 136 -4 189 -4s138 0 188 4v-56h-113v-574h113v-56'], + 0xE6BE: [686,0,1003,57,944,'944 0l-147 4c-53 0 -131 0 -183 -4v56c40 0 42 0 64 6l-240 275l-123 -91v-190h107v-56c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v574h-107v56c22 -2 161 -4 183 -4c16 0 159 2 182 4v-56h-107v-306l402 300c-24 6 -40 6 -58 6v56l161 -4c45 0 107 4 107 4 v-56h-27c-67 0 -74 -5 -86 -14l-270 -201l301 -345c9 -11 12 -14 60 -14h39v-56'], + 0xE6BF: [686,0,1215,63,1151,'1151 0l-172 4l-173 -4v56h107v571h-1l-297 -600c-13 -27 -33 -27 -42 -27c-26 0 -35 14 -42 28l-290 585h-1v-532c0 -20 1 -21 24 -23c15 -1 35 -2 50 -2h33v-56l-142 4l-142 -4v56h33c12 0 62 0 71 6c2 2 3 3 3 19v549h-107v56h230c21 0 36 0 50 -28l264 -533l264 534 c13 27 31 27 50 27h230v-56h-107v-574h107v-56'], + 0xE6C0: [686,0,1002,57,944,'944 630h-33c-12 0 -62 0 -71 -6c-2 -2 -3 -3 -3 -19v-570c0 -30 -5 -35 -35 -35c-20 0 -23 0 -34 12l-534 569v-500c0 -20 1 -21 24 -23c15 -1 35 -2 50 -2h33v-56l-142 4l-142 -4v56h33c12 0 62 0 71 6c2 2 3 3 3 19v549h-107v56h235c21 0 23 0 35 -13l440 -469v401 c0 20 -1 21 -24 23c-15 1 -35 2 -50 2h-33v56l142 -4l142 4v-56'], + 0xE6C1: [698,12,968,75,892,'892 339c0 -190 -135 -351 -409 -351c-268 0 -408 157 -408 351c0 192 134 359 409 359c269 0 408 -163 408 -359zM729 354c0 61 0 293 -246 293c-78 0 -147 -29 -189 -81c-50 -64 -56 -145 -56 -212c0 -55 4 -149 50 -217c52 -75 133 -96 195 -96c74 0 152 28 198 99 c39 62 48 138 48 214'], + 0xE6C2: [686,0,879,57,803,'803 487c0 -110 -110 -195 -293 -195h-195v-236h107v-56c-22 2 -161 4 -183 4c-16 0 -159 -2 -182 -4v56h107v574h-107v56h453c186 0 293 -90 293 -199zM640 487c0 64 0 143 -164 143h-168v-287h166c166 0 166 79 166 144'], + 0xE6C3: [673,0,897,50,846,'846 434h-63c-11 110 -25 183 -170 183h-89v-561h152v-56c-29 2 -76 3 -105 3l-123 1l-119 -1c-27 0 -82 -1 -108 -3v56h152v561h-90c-145 0 -159 -74 -170 -183h-63l24 239h748'], + 0xE6C4: [686,0,968,47,921,'921 0l-166 4c-53 0 -137 0 -187 -4v56h72l-187 227l-187 -220c29 -7 56 -7 82 -7v-56l-162 4c-47 0 -131 -4 -139 -4v56h39c16 0 37 1 53 2c29 2 30 3 41 15l227 266l-241 291h-102v56l165 -4c53 0 138 0 188 4v-56h-72l152 -185l151 178c-30 7 -56 7 -82 7v56l162 -4 c51 0 128 4 138 4v-56h-38c-16 0 -38 -1 -54 -2c-29 -3 -30 -4 -41 -15l-190 -223l276 -334h102v-56'], + 0xE6C5: [454,10,1013,110,991,'990 55c1 -4 16 -65 -111 -65c-108 0 -163 68 -175 82c-38 -25 -132 -82 -275 -82c-183 0 -286 82 -312 188c-31 122 51 276 301 276c40 0 124 -3 210 -53c67 -38 104 -92 126 -150c18 40 28 78 29 126c1 23 7 23 37 23c22 0 42 0 48 -22c5 -20 -7 -143 -75 -222 c5 -13 22 -50 32 -67c25 -43 33 -43 43 -43c6 0 34 0 37 17c4 15 14 15 38 15c21 0 42 0 47 -23zM666 135l-40 97c-36 84 -98 166 -197 166c-68 0 -118 -26 -139 -54c-52 -67 -29 -187 -26 -200c16 -63 65 -98 158 -98c96 0 179 35 244 89'], + 0xE6C6: [704,194,892,141,745,'745 192c-1 -61 -37 -116 -89 -149c-67 -41 -148 -53 -227 -53c-76 0 -150 21 -203 59l-1 -227c1 -9 -7 -16 -17 -16h-39c-13 0 -24 10 -27 22l-1 5v617c0 145 128 254 277 254c13 0 27 0 40 -1c20 -2 40 -5 59 -10c32 -7 63 -20 90 -39c36 -25 63 -61 73 -103 c3 -12 5 -25 5 -39c0 -46 -21 -89 -55 -120c7 -4 14 -9 22 -15c43 -32 73 -78 86 -130c5 -18 7 -36 7 -55zM615 203c1 24 -1 49 -7 72c-6 25 -16 47 -35 65c-4 5 -8 8 -13 12c-41 -16 -86 -21 -131 -21c-72 0 -156 0 -168 49c-1 4 -1 8 -1 13c0 51 86 51 158 51 c41 0 82 -4 121 -14c20 25 26 60 25 93c0 17 0 34 -4 50s-12 31 -24 43c-28 26 -68 33 -107 33c-113 0 -203 -95 -204 -210l1 -247c0 -10 1 -21 4 -30c18 -73 101 -116 189 -116c54 0 110 8 152 42c33 27 45 72 44 115zM504 390c-26 5 -51 6 -77 6c-42 0 -100 0 -100 -12 c0 -5 54 -5 90 -5c30 0 60 3 87 11'], + 0xE6C7: [454,213,932,60,787,'787 422c1 -5 1 -7 -6 -26c-42 -116 -74 -229 -88 -328c-1 -6 -1 -8 2 -24c9 -49 14 -123 11 -184c-2 -33 -9 -73 -44 -73c-23 0 -43 18 -51 48c-9 35 -5 147 3 211c1 14 1 16 -1 21c-15 63 -60 151 -98 188c-70 68 -171 68 -221 68c-83 0 -142 -5 -148 -46 c-3 -21 -7 -21 -37 -21c-22 0 -42 0 -47 22c-3 11 -5 75 60 125c55 40 128 51 176 51c157 0 279 -124 342 -240c22 93 33 136 61 213c7 16 8 17 38 17c22 0 42 0 48 -22'], + 0xE6C8: [728,10,771,111,625,'625 193c0 -111 -87 -203 -196 -203c-80 0 -161 16 -226 63c-43 31 -73 75 -85 124c-4 17 -7 34 -7 51c1 66 32 127 86 166c35 26 76 41 119 50c-57 57 -110 118 -124 171c-4 16 -3 30 -1 44c6 22 19 41 38 53c19 11 42 15 64 16c6 0 134 -23 201 -35 c26 -5 46 -24 52 -47c2 -9 2 -18 0 -28c-6 -24 -29 -39 -53 -39c-5 0 -11 1 -17 3c-61 20 -111 67 -175 79c-5 1 -11 2 -17 2c-7 0 -12 -1 -19 -4c-9 -4 -15 -13 -18 -23c-5 -23 125 -105 211 -159c50 -31 94 -70 125 -120c15 -24 24 -50 31 -78s11 -57 11 -86zM507 162 c0 19 -2 38 -7 57c-5 21 -14 42 -26 61c-23 38 -56 69 -89 99l-15 14c-31 -7 -62 -20 -85 -43c-36 -34 -44 -84 -44 -133c-1 -22 1 -45 6 -66c6 -23 16 -44 33 -60c36 -35 88 -45 139 -45c55 0 87 57 88 116'], + 0xE6C9: [444,10,727,136,674,'674 48c4 -15 -7 -20 -22 -26c-72 -32 -136 -32 -160 -32c-207 0 -323 86 -350 193c-22 88 22 161 77 201c84 60 185 60 255 60c19 0 53 0 57 -1c16 -2 30 -15 34 -30c9 -36 -30 -36 -42 -36h-66c-155 0 -167 -88 -172 -121h224c17 0 47 0 55 -31c3 -11 0 -21 -7 -29 c-7 -7 -15 -7 -33 -7h-240c1 -11 3 -21 6 -31c6 -24 16 -62 70 -88c43 -21 96 -24 117 -24c29 0 87 30 113 43c22 11 31 16 37 16c15 0 23 -14 28 -22s18 -29 19 -35'], + 0xE6CA: [713,205,852,142,723,'513 553c-21 1 -23 1 -40 -1c29 0 31 0 40 1zM720 -69c13 -52 -7 -136 -95 -136c-14 0 -49 1 -99 12c-45 9 -63 13 -69 35c-3 13 5 28 24 28c4 0 5 0 17 -3c60 -16 109 -16 113 -16c9 0 27 0 21 25c-8 31 -41 38 -79 47c-11 2 -49 10 -63 14c-124 27 -180 39 -251 97 c-28 23 -70 71 -87 140c-41 162 57 320 216 404c-10 17 -15 38 -17 45c-7 30 -18 90 31 90c21 0 42 -16 47 -37c1 -4 1 -12 1 -17c0 -23 5 -45 6 -55c22 5 43 5 59 5c46 0 118 -1 131 -52c15 -62 -83 -62 -120 -62c-27 0 -60 0 -98 31c-86 -45 -193 -171 -159 -305 c19 -77 84 -118 161 -138l130 -29c78 -17 95 -21 125 -42c10 -8 43 -33 55 -81'], + 0xE6CB: [454,213,852,20,731,'731 -147c-1 -66 -53 -66 -59 -66c-36 0 -62 25 -69 53c-3 10 -2 17 -2 25v443c0 5 -2 19 -4 30c-6 23 -17 60 -86 60c-76 0 -127 -49 -159 -116c-23 -48 -23 -64 -23 -80v-157c-2 -32 -27 -55 -60 -55c-28 0 -59 19 -68 53c-1 6 -1 29 -2 44v216c0 18 0 44 -2 53 c-8 32 -31 42 -47 42c-41 0 -44 -74 -44 -95c0 -29 -3 -29 -37 -29c-22 0 -42 0 -48 22c-4 18 7 158 122 158c29 0 140 -6 177 -85c73 82 148 85 186 85c46 0 189 -4 220 -129c5 -22 6 -31 5 -46v-426'], + 0xE6CC: [704,10,791,110,679,'664 468c52 -209 -26 -478 -264 -478c-117 0 -235 73 -275 235c-12 47 -41 213 41 353c39 67 118 126 223 126c92 0 229 -50 275 -236zM533 381c-1 93 -9 124 -14 144c-6 22 -31 123 -120 123c-35 0 -83 -21 -111 -82c-29 -59 -30 -134 -31 -185h276zM532 313h-275 c0 -32 1 -95 13 -145c19 -75 60 -122 120 -122c37 0 143 21 142 267'], + 0xE6CD: [454,10,529,97,507,'506 148c11 -42 -34 -158 -235 -158c-82 0 -156 33 -171 94c-8 33 8 76 9 111l4 31l3 48c1 14 0 51 2 65c1 7 -1 24 1 30c0 7 -1 24 -1 30c5 26 18 55 60 55c28 0 59 -19 68 -53c4 -15 4 -167 -17 -285c-3 -22 -4 -27 -1 -41c8 -29 24 -29 36 -29c63 0 151 31 157 98 c2 26 5 26 38 26c22 0 42 0 47 -22'], + 0xE6CE: [454,10,852,119,830,'829 148c7 -27 -17 -158 -138 -158c-72 0 -168 26 -187 102c-4 15 -1 26 -4 37c-9 36 -63 50 -118 58c-24 3 -76 7 -133 7v-136c-1 -55 -33 -68 -60 -68c-28 0 -59 19 -68 53c-2 8 -1 54 -2 82v274c2 32 27 55 60 55c28 0 59 -19 68 -53c2 -8 1 -46 2 -69v-67 c44 18 76 41 121 77c63 48 132 102 214 102c65 0 80 -54 81 -59c9 -38 -13 -86 -66 -86c-39 0 -68 26 -77 60c-1 6 -2 8 -1 11c-29 -13 -46 -21 -124 -82c-10 -8 -35 -27 -54 -39c7 0 8 -2 16 -2c111 -7 246 -25 269 -118c5 -20 1 -24 5 -40c8 -32 33 -43 52 -43 c30 0 56 30 59 101c2 23 7 23 38 23c22 0 42 0 47 -22'], + 0xE6CF: [452,13,1000,80,918,'918 128c0 -20 -10 -136 -162 -136c-80 0 -142 39 -142 124v26c0 33 1 47 8 88c-131 -91 -198 -152 -318 -230c-14 -9 -28 -13 -42 -13s-27 5 -37 15c-11 12 -18 29 -18 45c0 14 5 26 15 33c50 62 97 169 97 250c0 37 -19 63 -75 64c-54 0 -98 -15 -98 -75 c0 -24 -18 -28 -30 -28c-11 0 -36 3 -36 25c0 20 11 136 163 136c81 0 142 -39 142 -124c0 -54 -1 -63 -8 -114c186 133 199 149 319 229c7 5 15 6 23 6c17 0 34 -7 41 -13c13 -9 25 -36 25 -54c0 -8 -2 -15 -7 -18c-52 -62 -98 -169 -98 -250c0 -37 19 -64 74 -64 c43 0 98 3 98 75c0 24 18 28 30 28s36 -3 36 -25'], + 0xE6D0: [694,12,854,64,862,'862 12c5 -22 -16 -22 -33 -22h-54c-19 0 -46 2 -62 9c-8 4 -9 5 -30 30l-173 200l-24 25s-2 -1 -10 -7l-246 -240c-8 -8 -19 -19 -42 -19c-38 0 -64 31 -70 56c-9 36 15 55 25 62l280 223l-214 249c-48 56 -91 59 -105 60c-10 1 -33 2 -39 27c-1 3 -3 18 10 26 c7 3 28 3 42 3c154 0 172 -22 192 -44l500 -580c18 -20 22 -27 37 -39c9 -7 14 -10 16 -19'], + 0xE6D1: [454,213,852,118,829,'829 148c5 -18 -7 -158 -122 -158c-25 0 -114 4 -162 61c-65 -61 -139 -61 -162 -61c-40 0 -90 4 -134 20l-1 -151c0 -16 0 -72 -58 -72c-36 0 -62 25 -69 53c-3 10 -2 17 -2 25v522c1 67 51 67 60 67c28 0 59 -19 68 -53c2 -8 2 -36 2 -54v-62c-1 -34 0 -45 0 -83 c0 -43 0 -53 5 -75c8 -31 27 -81 124 -81c103 0 143 101 143 109l1 134c-1 15 0 53 -1 68l1 33c2 32 27 54 58 54c34 0 62 -24 69 -52c2 -7 2 -16 2 -23v-216c0 -22 0 -56 2 -65c8 -32 32 -42 48 -42c41 0 43 74 43 95c1 29 4 29 38 29c22 0 42 0 47 -22'], + 0xE6D2: [454,0,811,35,689,'688 401c1 -5 21 -131 -106 -245c-107 -96 -288 -143 -397 -156h-28c-31 0 -37 25 -37 25s-1 14 0 16v317c0 10 0 12 -1 15c-1 4 -21 4 -37 4c-13 0 -39 0 -45 25c0 0 -9 38 15 42c7 0 56 3 67 3c30 1 64 5 94 5c25 0 34 -20 35 -25v-16l1 -339l11 2l23 8 c165 55 272 166 278 300c0 22 2 72 59 72c28 0 59 -19 68 -53'], + 0xE6D3: [712,206,852,142,726,'473 553l-30 1c-4 0 -10 -2 -10 -2c29 0 31 0 40 1zM473 289c-25 1 -27 1 -46 -1c35 0 37 0 46 1zM723 -82c13 -49 -9 -124 -98 -124c-76 0 -157 21 -161 22c-7 2 -22 6 -26 25c-4 14 6 28 24 28c4 0 5 0 14 -3c70 -16 132 -16 132 -16c11 0 25 0 21 17c0 0 -1 6 -7 9 l-29 8l-143 35c-32 9 -34 9 -87 22c-57 15 -190 48 -216 151c-9 37 -10 123 81 191c-27 17 -67 50 -81 104c-9 38 -21 163 171 208l-7 26c-8 30 -20 91 30 91c21 0 42 -16 47 -37c1 -4 1 -12 2 -17c0 -17 1 -34 5 -52c17 2 21 2 52 2c52 0 126 0 139 -52 c16 -62 -83 -62 -119 -62c-27 0 -65 0 -104 35c-55 -29 -84 -87 -70 -143c8 -33 33 -57 33 -57c57 16 95 16 124 16c47 0 123 0 136 -51c15 -63 -79 -63 -128 -63c-27 0 -86 0 -159 20c-76 -50 -62 -116 -62 -116c9 -34 63 -48 115 -62l119 -30l173 -43 c43 -14 70 -44 79 -82'], + 0xE6D4: [444,11,932,20,803,'802 396c2 -8 14 -66 -61 -66h-129c-15 0 -17 0 -19 -1c-4 -3 6 -46 7 -50c26 -104 85 -158 106 -178c5 -5 19 -18 24 -37c9 -37 -20 -75 -58 -75c-51 0 -122 88 -150 198c-8 32 -14 71 -18 143h-117c1 -144 -6 -211 -8 -222c-5 -60 -12 -118 -68 -118 c-31 0 -62 21 -70 54c-4 17 -1 25 8 51c32 87 46 176 51 235h-76c-89 0 -107 -23 -120 -39c-7 -9 -8 -10 -35 -10c-25 0 -42 0 -48 22c-5 21 50 77 64 89c62 52 117 52 139 52h505c16 0 61 0 73 -48'], + 0xE6D5: [454,213,791,120,678,'672 271c31 -124 -44 -281 -270 -281c-41 0 -99 6 -153 39v-158c0 -31 0 -33 -2 -41c-7 -31 -36 -43 -57 -43c-36 0 -62 25 -69 53c-1 3 -1 5 -1 24v366c0 107 78 224 270 224c155 0 255 -75 282 -183zM525 311c-9 37 -26 54 -43 66c-4 2 -32 21 -82 21 c-147 0 -151 -127 -152 -167c0 -27 2 -13 0 -116c34 -60 102 -69 141 -69c58 0 111 24 132 80c17 48 13 150 4 185'], + 0xE6D6: [444,10,952,110,823,'822 396c2 -8 14 -66 -61 -66h-114c22 -32 29 -61 32 -74c36 -145 -63 -266 -275 -266c-160 0 -261 68 -288 173c-28 114 44 281 274 281h359c16 0 61 0 73 -48zM552 256c-14 55 -50 74 -148 74c-34 0 -107 0 -140 -42c-41 -54 -18 -152 -18 -152c17 -67 75 -90 148 -90 c32 0 96 4 136 53c29 37 32 116 22 157'], + 0xE6D7: [444,13,852,20,723,'722 396c8 -30 -11 -50 -11 -50c-15 -16 -31 -16 -50 -16h-229l17 -273c4 -70 -53 -70 -58 -70c-31 0 -61 20 -69 52c-2 10 0 43 1 65l16 226h-115c-89 0 -107 -23 -120 -39c-7 -9 -8 -10 -35 -10c-25 0 -42 0 -48 22c-5 21 49 76 63 88c62 53 117 53 140 53h425 c16 0 61 0 73 -48'], + 0xE6D8: [455,10,852,19,747,'738 343c11 -43 27 -156 -40 -248c-60 -84 -132 -105 -198 -105c-60 0 -257 2 -295 156c-6 24 -10 52 9 161c3 21 8 48 5 62c-3 11 -8 29 -31 29c-40 0 -79 -41 -82 -100c-1 -24 -6 -24 -37 -24c-22 0 -42 0 -48 22c-9 36 30 158 160 158c73 0 152 -32 167 -94 c4 -17 2 -28 -6 -71c-19 -108 -13 -132 -8 -152c15 -61 64 -91 161 -91c137 0 177 179 166 222c-2 9 -8 27 -49 46c-13 6 -40 19 -49 54c-12 48 24 87 63 87c4 0 85 -2 112 -112'], + 0xE6D9: [694,204,1013,123,887,'882 260c32 -129 -77 -267 -334 -275c0 -23 1 -171 -2 -178c-3 -11 -10 -11 -35 -11c-22 0 -42 0 -48 22c-1 5 -1 61 0 167c-212 13 -310 103 -334 199c-32 129 77 267 334 275v205c0 30 3 30 37 30c22 0 42 0 47 -22c1 -5 2 -11 2 -15l-1 -198 c213 -13 310 -103 334 -199zM761 273c-19 76 -83 122 -213 130l1 -361c242 19 223 188 212 231zM463 41v361c-243 -19 -223 -188 -213 -231c19 -76 83 -122 213 -130'], + 0xE6DA: [454,204,1013,20,990,'990 -115c3 -12 2 -89 -129 -89c-105 0 -167 19 -215 61c-54 46 -99 107 -159 187c-38 -36 -228 -227 -241 -234c-3 -2 -7 -4 -17 -4c-24 0 -43 20 -47 38c-5 20 6 31 14 39l231 227c2 3 3 4 8 10c-31 46 -87 122 -149 180c-35 32 -106 98 -139 98c-11 0 -38 -7 -41 -37 c-3 -18 -8 -18 -38 -18c-23 0 -42 0 -47 22c0 0 -7 39 34 67c33 22 74 22 96 22c126 0 173 -29 206 -54c2 -1 58 -42 167 -194c47 44 230 229 239 234c8 3 11 4 18 4c22 0 42 -16 48 -38c5 -21 -6 -32 -14 -40l-231 -227c-7 -7 -7 -9 -7 -9s69 -104 140 -172 c25 -24 112 -106 147 -106c13 0 38 8 41 37c2 18 8 18 37 18c25 0 42 0 48 -22'], + 0xE6DB: [694,204,1013,19,909,'902 194c-30 -111 -161 -204 -314 -204v-182c-3 -12 -12 -12 -37 -12c-21 0 -42 0 -48 22c-1 5 0 82 0 174c-55 4 -263 17 -299 162c-5 17 -11 41 10 153c3 21 8 48 5 62c-3 11 -8 29 -31 29c-40 0 -78 -40 -82 -100c-1 -24 -6 -24 -37 -24c-22 0 -42 0 -48 22 c-9 36 30 158 160 158c73 0 152 -32 167 -94c4 -16 1 -32 -2 -45c-22 -129 -18 -146 -14 -164c17 -66 83 -94 171 -102v615c1 30 4 30 38 30c24 0 39 0 47 -22l1 -626c171 9 249 159 233 222c-2 9 -8 27 -49 46c-13 6 -40 19 -49 54c-12 48 24 87 63 87c4 0 85 -2 112 -112 c9 -33 16 -99 3 -149'], + 0xE6DC: [454,10,1013,103,907,'907 217c-1 -122 -90 -227 -208 -227c-74 0 -140 28 -188 75c-42 -46 -103 -75 -170 -75c-111 0 -205 77 -230 180c-5 19 -8 38 -8 58c0 72 19 145 60 205c9 13 22 20 37 20c11 0 22 -4 30 -10c13 -8 21 -20 25 -34c3 -12 1 -25 -6 -37c-31 -47 -61 -98 -61 -155 c0 -7 1 -13 3 -19c13 -52 76 -78 140 -78c46 0 91 13 121 38c-3 5 -4 10 -5 16c-5 17 -7 35 -7 54c0 35 26 66 60 66c33 0 59 -24 67 -56l3 -21c0 -23 -4 -44 -10 -65c32 -22 80 -32 128 -32c69 0 133 43 134 108c-1 7 -1 14 -3 21c-8 30 -30 55 -58 71 c-20 11 -33 30 -38 50c-5 17 -3 35 6 51c13 21 36 33 60 33c12 0 24 -3 37 -10c39 -22 59 -58 69 -101c10 -39 11 -84 12 -126'], + 0xE6DD: [462,20,816,116,639,'376 222l-30 1l-8 -2c27 0 29 0 38 1zM639 94c5 -21 -21 -68 -76 -91c-53 -23 -122 -23 -156 -23c-234 0 -279 103 -287 137c-12 49 13 87 36 107c-2 2 -28 28 -36 61c-20 81 58 177 268 177c20 0 65 0 123 -20c78 -26 84 -42 89 -60c7 -28 -14 -54 -41 -54 c-6 0 -12 0 -30 9c-63 30 -108 30 -138 30c-139 0 -199 -35 -187 -81c2 -10 6 -19 14 -27c55 19 109 19 139 19c44 0 110 0 122 -50c16 -64 -74 -64 -111 -64c-22 0 -85 0 -140 20c-27 -20 -28 -49 -25 -58c12 -51 126 -51 194 -51c120 0 173 7 191 35c4 4 8 11 18 11 c15 0 29 -13 33 -27'], + 0xE6DE: [704,10,852,20,810,'598 390c-1 47 -4 99 -14 138c-10 41 -40 120 -114 120c-39 0 -122 -26 -99 -119c15 -62 77 -109 227 -139zM809 339c5 -17 -1 -34 -17 -34c-5 0 -15 2 -20 3c-4 0 -31 3 -37 4c-6 -148 -73 -322 -278 -322c-93 0 -219 12 -251 138c-4 17 -7 27 -6 70l-1 71 c1 29 1 77 -2 87c-8 32 -31 42 -47 42c-41 0 -44 -74 -44 -95c0 -29 -3 -29 -37 -29c-22 0 -42 0 -48 22c-4 18 7 158 122 158c71 0 164 -27 183 -102c3 -11 3 -20 3 -49l-1 -52l1 -71c0 -19 0 -43 5 -64c10 -39 34 -70 120 -70c146 0 144 222 144 288 c-108 21 -278 63 -311 195s90 175 172 175c93 0 218 -54 262 -231c4 -16 12 -50 14 -106l44 -5c6 -1 26 -4 30 -23'], + 0xE6DF: [444,10,1295,20,1166,'1165 396c5 -19 -1 -41 -15 -54c-14 -12 -21 -12 -69 -12c2 -5 15 -31 22 -58c37 -148 -80 -282 -229 -282c-81 0 -158 42 -207 125c-27 -35 -97 -125 -233 -125c-99 0 -183 63 -205 150c-17 67 7 137 35 190h-40c-89 0 -107 -23 -120 -39c-7 -9 -8 -10 -35 -10 c-25 0 -42 0 -48 22c-5 21 52 78 64 89c61 52 118 52 139 52h868c16 0 61 0 73 -48zM1019 272c-1 6 -7 30 -24 58h-633c-58 -87 -55 -156 -52 -171c10 -40 68 -55 112 -55c70 0 195 38 202 167c2 18 14 18 38 18c20 0 42 0 48 -23v-11c0 -16 3 -28 5 -34 c16 -66 72 -117 149 -117c63 0 188 38 155 168'], + 0xE6E0: [454,194,791,119,678,'525 311c-9 37 -26 54 -43 66c-4 2 -32 21 -82 21c-56 0 -106 -23 -128 -64c-33 -57 -24 -161 -16 -195c4 -16 13 -50 50 -72c23 -14 54 -21 84 -21c51 0 108 20 131 80c17 48 13 150 4 185zM672 271c31 -122 -42 -281 -271 -281c-64 0 -132 12 -191 55 c0 -10 3 -36 8 -57c6 -24 9 -35 58 -44c33 -5 78 -5 123 -5c95 0 136 -3 168 -8c46 -8 65 -29 75 -67c14 -58 -1 -58 -33 -58c-27 0 -40 0 -48 24c-10 1 -18 1 -33 1c-11 0 -26 0 -56 -3c-41 -3 -67 -3 -86 -3c-178 0 -226 37 -248 128c-6 22 -12 50 -15 107 c-5 81 -3 174 -3 185c4 90 76 209 270 209c155 0 255 -75 282 -183'], + 0xE6E1: [454,107,771,142,650,'647 27c15 -60 -18 -134 -99 -134c-21 0 -44 4 -64 8c-23 6 -43 10 -48 30c-3 14 7 29 24 29c5 0 10 -2 16 -3c28 -8 36 -8 57 -8c26 0 19 26 19 26c-2 8 -8 14 -15 17c-5 3 -49 18 -75 27l-128 44c-49 17 -162 56 -187 157c-30 119 78 234 315 234c17 0 58 0 95 -8 c44 -10 64 -21 69 -43c4 -14 -3 -38 -29 -38c-5 0 -8 0 -23 6c-63 27 -86 27 -111 27c-188 0 -240 -74 -226 -130c9 -35 51 -54 72 -64l188 -65c18 -6 66 -23 70 -24c39 -15 70 -46 80 -88'], + 0xE6E2: [454,216,1013,102,909,'820 251c-16 65 -89 89 -140 89c-50 0 -99 -21 -136 -69c-42 -58 -38 -106 -33 -167h47c48 0 299 0 262 147zM902 272c47 -189 -146 -282 -344 -282h-40l11 -140c3 -58 -41 -66 -58 -66c-35 0 -62 24 -69 52c-3 11 -2 17 3 82l6 79c-133 14 -272 60 -303 183 c-10 42 -11 161 42 239c18 25 19 25 50 25c21 0 42 0 48 -22c2 -9 -1 -13 -11 -25c-53 -64 -52 -179 -46 -204c10 -41 49 -80 228 -87c2 26 3 48 6 72c22 165 116 276 244 276c108 0 206 -75 233 -182'], + 0xE6E3: [713,19,932,121,807,'647 277c-17 69 -86 126 -191 126c-41 0 -116 -2 -161 -68c-31 -49 -17 -186 -14 -199c7 -29 27 -56 64 -75c25 -13 56 -19 109 -19c95 0 141 38 161 69c31 44 42 124 32 166zM797 434c24 -99 9 -252 -52 -333c-57 -77 -139 -120 -280 -120c-61 0 -131 4 -197 38 c-63 32 -121 78 -139 151c-6 21 -28 129 55 205c86 80 184 84 246 84c134 0 200 -71 224 -101c2 66 -9 118 -12 129c-12 51 -39 97 -88 128c-59 37 -126 42 -161 42c-72 0 -111 -27 -130 -57c0 0 31 -17 40 -50c9 -39 -12 -86 -66 -86c-42 0 -69 29 -76 58 c-8 31 -10 191 221 191c196 0 368 -91 415 -279'], + 0xE6E4: [452,8,847,71,844,'564 122c-31 81 -41 123 -63 168c-41 81 -89 116 -145 116c-33 0 -105 -8 -136 -85c-17 -44 -15 -149 -5 -189c19 -74 78 -94 135 -94c70 0 148 25 214 84zM844 57c5 -19 -10 -65 -97 -65c-52 0 -109 22 -156 80c-69 -55 -154 -80 -235 -80c-147 0 -250 69 -278 180 c-31 124 43 280 268 280c72 0 244 -22 303 -208c27 61 29 113 30 133c0 22 1 24 27 24c14 0 32 0 36 -18c3 -9 2 -117 -57 -210c-8 -9 -7 -11 -6 -15c0 0 14 -41 26 -70c7 -14 22 -50 38 -50c0 0 34 0 37 25c3 13 12 13 28 13c13 0 31 0 36 -19'], + 0xE6E5: [702,194,741,107,635,'635 194c-1 -59 -30 -114 -78 -148c-58 -41 -130 -54 -201 -54s-138 26 -185 69v-242c0 -8 -6 -13 -15 -13h-27c-10 0 -20 8 -22 22v621c1 137 105 253 240 253c60 0 120 -13 168 -50c31 -24 52 -57 62 -95c3 -13 5 -27 4 -42c1 -46 -17 -89 -50 -121c8 -5 15 -11 23 -18 c37 -31 62 -74 73 -120c5 -20 7 -41 8 -62zM511 202c0 30 -2 61 -9 90c-5 21 -13 40 -27 57c-2 3 -4 5 -6 7c-35 -14 -74 -19 -113 -19c-60 0 -127 2 -137 45c-1 4 -1 8 -2 13c0 49 70 49 130 49c35 0 70 -4 103 -13c18 26 19 60 20 93c0 20 -1 42 -6 61c-4 14 -9 27 -19 39 c-22 25 -56 33 -89 33c-109 0 -185 -103 -185 -217v-246c0 -12 2 -24 4 -35c18 -72 91 -121 172 -121c47 0 94 11 127 43c31 31 37 77 37 121zM404 393c-15 4 -32 6 -49 6c-32 0 -74 0 -73 -13c-1 -3 38 -3 64 -3c20 0 41 3 58 10'], + 0xE6E6: [452,210,776,36,671,'671 426c1 -4 1 -6 -4 -22c-15 -46 -60 -177 -79 -333c-1 -6 -1 -8 2 -21c14 -89 10 -183 9 -203c-2 -20 -7 -57 -36 -57c-23 0 -37 21 -42 41c-6 26 -8 115 4 227c0 9 0 11 -7 37c-15 61 -47 143 -94 184c-61 53 -150 53 -178 53c-138 0 -142 -39 -145 -62 c-2 -14 -11 -14 -28 -14c-15 0 -31 0 -36 19c-1 7 -3 70 53 122c42 37 97 55 150 55c171 0 277 -188 305 -248c16 77 40 161 60 218c6 21 7 22 30 22c13 0 31 0 36 -18'], + 0xE6E7: [723,8,634,70,528,'528 195c0 -107 -71 -203 -172 -203c-74 0 -148 17 -206 63c-36 30 -61 71 -73 117c-4 17 -7 36 -7 55c0 63 27 124 76 164c33 27 72 43 112 52c-49 55 -96 115 -110 168c-4 17 -4 34 0 49c5 18 16 35 33 46c16 11 35 15 54 17c18 1 119 -18 179 -30c23 -5 40 -21 45 -42 c2 -8 2 -17 0 -26c-6 -21 -26 -34 -47 -34c-6 0 -11 1 -17 3c-53 19 -95 64 -152 72c-5 1 -9 1 -13 1c-7 0 -13 -1 -20 -4c-9 -4 -14 -13 -17 -22c-1 -2 0 -6 0 -6c8 -30 120 -107 195 -159c45 -31 85 -72 109 -122c8 -18 15 -37 20 -57c8 -33 12 -67 11 -102zM416 160 c0 24 -3 48 -8 70c-5 18 -11 36 -19 52c-20 39 -49 73 -78 104l-13 13c-26 -8 -49 -21 -67 -42c-33 -37 -37 -89 -36 -139c-1 -27 0 -55 7 -80c5 -20 12 -39 26 -55c30 -33 75 -45 119 -45c52 0 69 63 69 122'], + 0xE6E8: [444,8,586,98,574,'574 49c3 -11 -3 -14 -16 -21c-31 -18 -78 -36 -143 -36c-174 0 -283 81 -310 190c-19 73 6 144 45 183c79 79 181 79 250 79h49c15 -2 25 -13 29 -26c7 -30 -25 -30 -38 -30h-52c-137 0 -149 -83 -152 -130h196c17 0 40 0 46 -26c8 -30 -25 -30 -39 -30h-204 c0 -19 1 -31 7 -55c10 -39 30 -65 60 -83c41 -25 95 -26 104 -26c14 0 44 0 107 40c14 8 20 12 26 12c19 0 34 -38 35 -41'], + 0xE6E9: [707,202,705,103,625,'622 -67c14 -58 -13 -135 -93 -135c-25 0 -57 5 -83 12c-51 15 -61 22 -64 35c-3 12 6 24 19 24c5 0 11 -3 17 -5c53 -20 96 -20 100 -20c17 0 27 9 21 31c-8 34 -44 43 -70 50c-18 4 -40 10 -55 13c-113 28 -153 39 -213 87c-34 28 -70 75 -87 144 c-47 188 76 350 187 414c-7 15 -12 32 -13 38c-10 39 -16 86 20 86c19 0 32 -16 35 -27c1 -4 2 -10 1 -13c1 -5 1 -30 8 -61c25 8 43 8 61 8c34 0 104 0 115 -47c16 -61 -73 -61 -105 -61c-25 0 -56 0 -90 32c-72 -47 -164 -182 -129 -320c22 -88 88 -122 144 -139l104 -26 c74 -18 97 -24 127 -50c12 -11 34 -34 43 -70zM464 562c-2 6 -40 6 -45 6c-14 0 -27 0 -43 -7c11 -9 16 -9 36 -9c43 0 52 10 52 10'], + 0xE6EA: [452,210,705,1,627,'627 280l-1 -426c0 -64 -51 -64 -57 -64c-36 0 -59 26 -65 49c-2 10 -2 17 -2 25l1 432c0 16 0 28 -6 51c-8 32 -23 59 -71 59c-53 0 -88 -29 -103 -46c-21 -23 -51 -73 -50 -102c-1 -10 0 -12 0 -70c-1 -56 0 -58 0 -116c0 -30 -1 -80 -58 -80c-25 0 -56 15 -64 50 c-2 8 -2 59 -2 88v102c0 37 -1 39 0 77c0 32 0 44 -3 57c-4 15 -13 40 -37 40c-39 0 -42 -61 -44 -106c0 -21 -2 -22 -26 -22c-15 0 -32 0 -37 18c-1 6 -6 156 102 156c8 0 116 0 158 -79c61 79 136 79 161 79c30 0 168 0 199 -122c5 -23 5 -34 5 -50'], + 0xE6EB: [702,8,652,71,579,'564 480c26 -104 21 -253 -26 -348c-60 -119 -155 -140 -207 -140c-101 0 -206 68 -244 222c-22 88 -24 235 19 333c62 139 168 155 215 155c80 0 200 -48 243 -222zM443 375c-1 64 -1 116 -14 170c-22 86 -65 111 -99 111c-53 0 -87 -53 -100 -91 c-20 -58 -21 -121 -23 -190h236zM443 319h-236c1 -49 2 -119 15 -170c16 -65 52 -111 100 -111c42 0 79 36 98 90c23 61 23 147 23 191'], + 0xE6EC: [452,8,421,59,418,'418 148c0 0 8 -60 -50 -108c-32 -26 -89 -48 -152 -48c-80 0 -142 40 -155 91c-7 31 7 70 8 102c1 40 1 6 3 46l3 48c2 18 0 65 3 82c0 8 -2 27 -1 34c3 18 9 57 58 57c25 0 56 -15 65 -50c4 -17 3 -170 -15 -289c-2 -17 -5 -33 0 -51c6 -24 17 -24 26 -24 c25 0 135 13 143 113c2 15 9 15 28 15c15 0 32 0 36 -18'], + 0xE6ED: [452,8,705,77,702,'702 148c4 -17 -6 -156 -115 -156c-68 0 -152 32 -169 102c-1 4 -3 11 -3 23c0 13 -2 21 -2 21c-11 43 -62 60 -154 67c-19 1 -38 1 -58 2l1 -137c0 -28 -1 -78 -58 -78c-25 0 -56 15 -64 50c-2 8 -2 59 -3 89l1 123l-1 141c2 43 35 57 58 57c25 0 56 -15 65 -50 c2 -9 2 -44 2 -66v-67c25 11 55 33 91 66c68 60 125 109 199 109c43 0 65 -27 71 -53c11 -41 -16 -78 -58 -78c-34 0 -61 21 -69 53c-2 8 -3 10 -3 14c-31 -16 -53 -32 -102 -76c-28 -26 -54 -46 -64 -53c92 -3 244 -16 269 -114c2 -10 3 -24 2 -26c1 -10 1 -20 4 -30 c4 -16 15 -43 40 -43c47 0 56 72 57 106c0 21 3 22 27 22c15 0 32 0 36 -18'], + 0xE6EE: [452,10,833,50,782,'782 128c0 -20 -9 -136 -135 -136c-67 0 -119 39 -119 124c0 54 1 82 18 138l-309 -254c-9 -7 -18 -10 -27 -10c-29 0 -54 31 -54 58c0 10 4 20 12 27c42 62 81 174 81 255c0 37 -16 75 -62 76c-45 0 -82 -15 -82 -87c0 -24 -15 -28 -25 -28c-9 0 -30 3 -30 25 c0 20 9 136 136 136c67 0 118 -39 118 -124c0 -54 0 -82 -18 -138c155 133 211 173 311 253c6 5 12 6 19 6c14 0 28 -7 34 -13c11 -9 21 -33 21 -50c0 -7 -2 -14 -6 -17c-43 -62 -82 -174 -82 -255c0 -37 16 -75 62 -76c45 0 82 15 82 87c0 24 15 28 25 28s30 -3 30 -25'], + 0xE6EF: [694,12,708,34,745,'745 10c4 -18 -12 -18 -30 -18h-55c-29 0 -59 5 -72 21l-190 249l-210 -250c-11 -13 -26 -24 -45 -24c-31 0 -60 26 -67 54c-8 32 10 48 36 71l107 96l131 115l-44 58l-131 171c-54 71 -70 91 -111 95c-5 1 -23 2 -28 22c-6 24 14 24 43 24c139 0 158 -26 174 -47 l445 -581c15 -20 23 -31 36 -42c5 -4 9 -7 11 -14'], + 0xE6F0: [452,210,705,77,702,'702 148c2 -6 6 -156 -102 -156c-53 0 -116 21 -146 59c-57 -59 -115 -59 -139 -59c-34 0 -79 5 -114 16v-146c0 -19 0 -72 -57 -72c-36 0 -59 26 -65 49c-2 10 -2 17 -2 25l1 524c1 62 45 64 57 64c25 0 56 -15 65 -50c2 -8 1 -42 1 -63l1 -73v-73c-1 -30 0 -51 6 -76 c6 -26 23 -79 104 -79c82 0 120 79 119 90c1 14 1 28 0 43c1 9 1 33 1 43l-1 173c1 42 34 57 58 57c25 0 56 -15 65 -50c2 -8 2 -46 2 -69v-168c-1 -26 -1 -66 3 -79c3 -15 13 -40 37 -40c39 0 41 61 43 106c0 21 3 22 27 22c15 0 32 0 36 -18'], + 0xE6F1: [452,0,670,1,591,'590 402c4 -19 9 -141 -99 -243c-119 -114 -287 -151 -351 -159h-29c-27 0 -32 22 -32 22c-2 5 -2 11 -2 15l1 333c0 3 -1 13 -1 13c-1 5 -16 5 -34 5c-12 0 -35 0 -40 22c-9 33 15 34 27 35l132 6c2 1 3 1 8 1c25 0 31 -22 31 -22c1 -5 1 -11 1 -15v-351l16 5 c16 7 48 19 82 41c121 79 163 177 167 285c3 47 38 57 58 57c25 0 56 -15 65 -50'], + 0xE6F2: [707,202,705,103,626,'623 -80c13 -51 -13 -122 -95 -122c-28 0 -65 5 -93 12c-40 10 -66 17 -70 35c-3 11 5 24 18 24c5 0 10 -2 17 -4c38 -14 78 -21 116 -21c6 0 25 0 19 22c-1 6 -5 11 -13 15l-192 55c-65 18 -116 33 -156 65c-19 14 -54 42 -66 92c-10 40 -8 126 78 196 c-34 24 -66 57 -78 104c-12 49 -9 159 151 207c-3 7 -3 10 -6 21c-10 39 -16 86 20 86c19 0 32 -16 35 -27c0 0 2 -7 2 -14c0 -17 2 -38 5 -55c26 3 38 3 59 3c40 0 108 0 119 -47c16 -61 -73 -61 -105 -61c-27 0 -57 0 -92 34c-54 -41 -64 -108 -52 -155c0 0 8 -31 26 -53 c44 15 84 15 104 15c39 0 107 0 119 -47c15 -61 -72 -61 -111 -61c-22 0 -71 0 -126 18l-9 2c-12 0 -70 -64 -56 -119c11 -42 70 -59 131 -77l79 -22l143 -41c35 -11 67 -34 79 -80zM429 562c-2 6 -46 6 -46 6c-29 0 -42 -6 -42 -6c2 -10 30 -10 36 -10c43 0 52 10 52 10z M430 296c-18 4 -20 5 -48 5c-12 0 -28 0 -48 -4c-12 -2 -7 -2 -13 -4c21 -8 41 -8 54 -8c42 0 47 4 55 11'], + 0xE6F3: [444,9,776,1,690,'688 399c7 -25 -4 -41 -10 -47c-15 -16 -29 -16 -50 -16h-135c2 -21 11 -54 11 -54c6 -26 26 -105 96 -179c13 -14 22 -24 26 -40c9 -36 -22 -72 -57 -72c-56 0 -106 94 -124 166c-17 66 -17 145 -18 179h-114l-2 -216c0 -38 -3 -75 -5 -84c-4 -22 -24 -44 -54 -44 c-37 0 -62 27 -67 50c-4 16 0 30 6 47c17 51 49 158 55 247h-66c-87 0 -104 -25 -115 -43c-5 -8 -7 -8 -27 -8c-16 0 -31 0 -36 18c-4 16 34 66 53 86c52 55 99 55 123 55h441c18 0 58 0 69 -45'], + 0xE6F4: [452,210,652,77,580,'573 278c32 -128 -38 -286 -241 -286c-43 0 -89 10 -130 37v-161c-1 -27 -1 -29 -3 -39c-6 -25 -31 -39 -55 -39c-36 0 -59 26 -65 49c-2 10 -2 17 -2 25l1 362c0 134 93 226 243 226c132 0 225 -68 252 -174zM437 322c-16 64 -63 84 -107 84c-22 0 -71 -5 -104 -54 c-24 -39 -24 -91 -25 -140v-116c35 -51 92 -58 119 -58c57 0 101 32 115 88c14 54 10 164 2 196'], + 0xE6F5: [444,8,794,71,707,'706 399c6 -22 -3 -40 -10 -47c-15 -16 -29 -16 -50 -16h-101c15 -24 26 -50 31 -72c34 -136 -42 -272 -244 -272c-131 0 -228 60 -254 165c-27 109 30 287 245 287h314c18 0 58 0 69 -45zM454 268c-12 49 -45 68 -122 68c-68 0 -102 -15 -122 -54 c-21 -38 -15 -128 -8 -159c15 -58 56 -85 122 -85c51 0 95 21 117 61c29 54 18 151 13 169'], + 0xE6F6: [444,12,705,1,619,'617 399c7 -25 -4 -41 -10 -47c-15 -16 -29 -16 -50 -16h-204l25 -279c6 -69 -52 -69 -57 -69c-31 0 -58 21 -65 49c-3 13 2 61 10 143l13 156h-99c-87 0 -104 -25 -115 -43c-5 -8 -7 -8 -27 -8c-16 0 -31 0 -36 18c-4 16 37 69 51 85c54 56 100 56 124 56h371 c18 0 58 0 69 -45'], + 0xE6F7: [453,8,705,0,637,'628 353c4 -17 32 -157 -36 -261c-48 -72 -104 -100 -174 -100c-85 0 -231 16 -264 149c-6 23 -12 47 11 185c2 19 5 37 1 56c-6 24 -17 24 -23 24c-43 0 -74 -49 -77 -106c-1 -20 -2 -22 -27 -22c-15 0 -32 0 -37 18c-7 29 21 156 135 156c64 0 137 -32 152 -92 c4 -16 2 -28 -2 -49c-15 -101 -19 -144 -9 -184c10 -37 33 -89 137 -89c131 0 167 187 156 230c-5 22 -25 37 -59 54c-14 7 -38 18 -46 50c-10 40 21 81 60 81c21 0 81 -16 102 -100'], + 0xE6F8: [694,202,847,80,765,'760 264c29 -116 -51 -264 -296 -276c-4 0 -8 0 -8 -3c-1 -2 -1 -38 -1 -58v-86c0 -32 0 -34 -1 -36c-6 -6 -7 -7 -27 -7c-13 0 -31 0 -35 18c-1 4 -2 154 -1 172c-187 10 -281 97 -305 192c-29 116 51 264 296 276c5 0 7 0 8 3l1 15l1 196c0 22 0 24 27 24 c13 0 31 0 35 -18l1 -220c188 -10 281 -97 305 -192zM642 285c-22 89 -99 120 -187 125v-375c232 16 194 221 187 250zM391 34v375c-232 -16 -194 -221 -187 -250c20 -79 84 -119 187 -125'], + 0xE6F9: [452,202,847,1,844,'844 -119c2 -8 3 -83 -112 -83c-156 0 -196 44 -272 154c-28 38 -7 11 -60 94l-93 -106l-95 -112c-17 -18 -20 -22 -33 -22c-17 0 -32 13 -36 29c-3 14 5 24 11 30l211 245c-44 76 -85 142 -135 196c-48 50 -97 100 -123 100c-14 0 -38 -10 -41 -41 c-2 -14 -9 -14 -28 -14c-16 0 -32 0 -36 18c-1 5 -5 83 111 83s160 -27 191 -53c7 -6 72 -71 141 -196l98 111l94 111c11 12 16 19 29 19c15 0 32 -11 36 -29c2 -6 4 -15 -11 -32l-209 -242c71 -126 100 -161 162 -224c20 -22 70 -73 96 -73c3 0 35 0 40 42c2 13 8 13 28 13 c16 0 31 0 36 -18'], + 0xE6FA: [694,202,847,0,778,'777 218c-15 -108 -123 -226 -287 -226v-182c-1 -12 -12 -12 -28 -12c-14 0 -31 0 -35 18c-1 3 0 29 -1 44c1 64 0 66 1 134c-69 3 -241 23 -274 155c-4 16 -11 42 10 169c5 29 7 45 3 64c-6 24 -17 24 -23 24c-43 0 -74 -49 -77 -106c-1 -20 -2 -22 -27 -22 c-15 0 -32 0 -37 18c-7 29 21 156 135 156c64 0 137 -32 152 -92c4 -16 2 -28 -2 -55c-14 -87 -18 -132 -11 -162c16 -61 67 -93 151 -102v628c0 22 0 25 27 25c14 0 32 0 36 -18c0 0 1 -3 0 -17l1 -621c167 6 237 170 222 230c-5 22 -26 38 -60 54c-13 7 -37 18 -45 50 c-10 40 21 81 60 81c21 0 81 -16 102 -100c10 -39 10 -105 7 -135'], + 0xE6FB: [452,8,847,68,777,'777 226c0 -121 -73 -234 -186 -234c-64 0 -122 27 -163 71c-36 -43 -88 -71 -147 -71c-101 0 -180 77 -205 176c-5 21 -8 44 -8 67c0 69 17 139 52 199c6 11 18 16 29 16c7 0 14 -2 20 -5c11 -6 19 -16 22 -27c2 -9 0 -18 -4 -26c-30 -51 -55 -107 -55 -166 c0 -9 1 -17 3 -24c13 -55 73 -90 137 -90c39 0 77 12 105 34c-4 9 -7 18 -9 27c-5 20 -7 40 -8 62c1 33 26 61 58 61c31 0 57 -23 64 -52c2 -6 3 -12 3 -18c0 -29 -5 -57 -14 -83c31 -21 70 -31 111 -31c71 0 131 53 131 123c0 6 -1 12 -2 18c-8 32 -35 56 -66 73 c-20 10 -32 28 -37 47c-4 15 -3 32 5 47c12 21 34 32 57 32c11 0 23 -3 33 -8c36 -20 54 -52 64 -91s10 -84 10 -127'], + 0xE6FC: [460,16,682,76,536,'536 96c5 -19 -19 -61 -61 -83c-51 -27 -109 -29 -146 -29c-154 0 -231 63 -249 135c-14 58 18 98 33 113c-17 16 -30 39 -34 56c-17 70 41 172 237 172c17 0 57 0 110 -20c60 -22 71 -37 76 -55c6 -25 -14 -50 -38 -50c-11 0 -18 4 -28 10c-55 28 -90 28 -119 28 c-111 0 -188 -27 -174 -84c4 -18 14 -28 14 -28c56 23 102 23 131 23c36 0 96 0 108 -46c15 -62 -67 -62 -99 -62c-69 0 -101 11 -124 19c-4 2 -6 2 -6 2c-5 0 -33 -36 -25 -68c14 -58 117 -58 182 -58c66 0 149 1 169 33c6 10 8 14 17 14c3 0 21 -2 26 -22zM331 233 c-1 5 -24 5 -36 5c-9 0 -44 0 -74 -9c12 -3 31 -7 65 -7c6 0 48 0 45 11'], + 0xE6FD: [702,8,705,1,690,'689 342c1 -6 7 -28 -14 -28c-4 0 -43 7 -46 7c-2 -144 -61 -329 -248 -329c-105 0 -199 24 -225 130c-8 29 -7 79 -7 118c-1 15 -1 43 0 62c-1 45 0 51 -3 64c-4 15 -13 40 -37 40c-39 0 -42 -61 -44 -106c0 -21 -2 -22 -26 -22c-15 0 -32 0 -37 18c-1 6 -6 156 102 156 c62 0 148 -29 166 -99c3 -11 2 -34 3 -51v-58l-1 -76c1 -39 6 -59 7 -62c9 -38 32 -68 101 -68c61 0 88 65 97 87c23 67 24 143 22 219c-95 20 -233 63 -262 182c-30 120 67 176 146 176s189 -50 231 -217c4 -16 14 -55 16 -119l35 -5c5 -1 20 -4 24 -19zM500 390 c0 24 -2 105 -15 158s-43 108 -94 108c-43 0 -114 -36 -91 -129c16 -64 76 -108 200 -137'], + 0xE6FE: [444,8,1096,1,1010,'1008 399c5 -18 1 -37 -14 -51c-13 -12 -24 -12 -63 -12c11 -24 17 -48 18 -52c35 -141 -60 -292 -201 -292c-82 0 -147 52 -185 136c-32 -68 -108 -136 -209 -136c-92 0 -155 72 -173 146c-13 50 -7 124 31 198c-71 0 -119 0 -145 -40c-8 -10 -9 -11 -29 -11 c-16 0 -31 0 -36 18c-4 17 38 70 54 88c52 53 99 53 122 53h761c17 0 58 0 69 -45zM886 284c-5 20 -13 41 -19 52h-582c-43 -71 -51 -143 -44 -172c11 -43 58 -64 104 -64c64 0 180 40 188 179c2 14 14 14 28 14c12 0 31 0 36 -19c0 0 1 -4 0 -7c1 -23 5 -39 7 -47 c17 -66 63 -120 136 -120c65 0 180 49 146 184'], + 0xE6FF: [452,194,652,77,580,'437 322c-16 64 -63 84 -107 84c-60 0 -101 -37 -116 -78c-19 -56 -14 -163 -5 -201c5 -18 23 -89 113 -89c45 0 97 24 113 88c14 54 10 164 2 196zM573 278c30 -123 -33 -286 -243 -286c-98 0 -152 37 -184 66c2 -43 7 -63 9 -71c7 -27 10 -41 59 -49 c38 -5 61 -5 124 -5c124 0 189 0 205 -67c4 -13 5 -34 4 -43c0 -17 -8 -17 -27 -17c-18 0 -30 0 -36 19c-1 4 -2 5 -14 6h-21c-9 0 -29 0 -66 -3c-27 -3 -46 -3 -66 -3c-141 0 -199 26 -222 117c-22 92 -18 297 -16 308c12 133 114 202 242 202c132 0 225 -68 252 -174'], + 0xE700: [452,105,634,103,560,'557 26c14 -58 -20 -131 -96 -131c-14 0 -32 2 -57 8c-20 5 -35 9 -39 26c-3 9 1 23 18 23c4 0 5 0 15 -3c23 -7 50 -8 50 -8c23 0 22 20 19 29c-4 19 -20 25 -36 32l-114 44c-82 32 -104 40 -136 66c-53 42 -67 80 -73 104c-30 119 78 236 280 236c20 0 130 0 141 -45 c3 -10 -1 -33 -25 -33c-6 0 -10 1 -22 6c-54 24 -73 26 -95 26c-127 0 -214 -64 -196 -139c12 -48 63 -68 123 -92l66 -25c44 -18 46 -18 80 -31c30 -12 81 -32 97 -93'], + 0xE701: [452,215,847,67,778,'712 258c-14 56 -75 86 -133 86c-64 0 -106 -38 -127 -71c-39 -59 -35 -100 -28 -173c52 0 134 0 199 25c81 31 101 85 89 133zM771 284c26 -102 -18 -178 -79 -223c-95 -69 -195 -69 -257 -69l14 -142c5 -57 -42 -65 -57 -65c-13 0 -54 8 -65 49c-2 10 -3 12 0 44 l14 124c-146 23 -243 88 -268 185c-11 44 -9 159 36 231c16 26 18 26 39 26c14 0 31 0 36 -18c2 -8 -2 -14 -4 -16c-63 -84 -47 -206 -45 -212c9 -36 37 -60 84 -75c40 -13 98 -19 132 -21c6 78 15 164 61 248c19 35 67 102 158 102c90 0 175 -64 201 -168'], + 0xE702: [710,16,776,85,689,'538 284c-12 47 -55 125 -157 125c-88 0 -124 -41 -138 -75c-21 -54 -14 -183 -7 -210c22 -89 114 -89 142 -89c90 0 127 51 137 69c24 43 35 133 23 180zM678 446c14 -56 72 -462 -291 -462c-62 0 -128 7 -192 49c-51 33 -89 75 -103 131c-4 17 -29 128 49 209 c75 77 165 82 219 82c81 0 141 -36 186 -102c-1 82 -5 120 -13 152c-10 38 -27 85 -79 121c-27 19 -75 38 -132 38c-81 0 -114 -41 -124 -61c31 -9 45 -32 50 -50c8 -34 -10 -78 -60 -78c-41 0 -63 29 -69 52c-8 34 1 183 196 183c156 0 316 -77 363 -264'], + 0xE703: [453,6,647,40,606,'606 218c0 -116 -88 -224 -283 -224c-194 0 -283 107 -283 224c0 118 85 235 283 235c196 0 283 -116 283 -235zM467 230c0 80 0 177 -144 177s-144 -97 -144 -177c0 -86 0 -185 144 -185s144 99 144 185'], + 0xE704: [456,8,758,57,701,'701 217c0 -106 -87 -225 -322 -225c-234 0 -322 119 -322 225c0 110 85 239 322 239c234 0 322 -127 322 -239zM551 229c0 78 0 171 -172 171s-172 -92 -172 -171c0 -82 0 -175 172 -175s172 93 172 175'], + 0xE705: [679,0,833,117,911,'911 661l-2 -15l-16 -178c-2 -19 -3 -28 -22 -28c-11 0 -21 5 -21 19c0 17 4 40 4 58c0 94 -39 117 -165 117h-161c-42 0 -42 -2 -50 -33l-130 -517c-4 -14 -4 -16 -4 -22c0 -12 7 -13 31 -15c26 -2 34 -2 58 -2c26 0 40 0 40 -17c0 -28 -20 -28 -26 -28 c-27 0 -56 3 -83 3l-83 1l-77 -1c-22 0 -47 -3 -69 -3c-11 0 -18 9 -18 17c0 28 16 28 42 28c76 0 77 8 85 38l130 520c3 11 3 13 3 25c-21 6 -54 6 -64 6c-24 0 -37 0 -37 17c0 28 16 28 35 28h567c18 0 33 0 33 -18'], + 0xE706: [716,0,1153,120,1039,'1039 14c0 -14 -13 -14 -30 -14h-865c-19 0 -24 0 -24 8c0 4 0 6 10 17l579 667c15 17 21 24 46 24c20 0 28 -2 37 -26l241 -658c6 -14 6 -18 6 -18zM891 89l-194 529l-459 -529h653'], + 0xE707: [705,22,1048,114,967,'967 417c0 -223 -248 -439 -517 -439c-204 0 -336 124 -336 285c0 218 245 442 518 442c204 0 335 -127 335 -288zM864 438c0 151 -106 233 -241 233c-234 0 -406 -222 -406 -427c0 -158 114 -231 242 -231c231 0 405 212 405 425zM797 404c0 -7 -26 -106 -30 -122 c-2 -9 -5 -19 -22 -19c-15 0 -21 9 -21 17c0 6 2 12 4 17h-396l-7 -23c-1 -3 -5 -11 -19 -11c-15 0 -21 9 -21 17c0 7 26 106 30 122c2 9 5 19 22 19c15 0 21 -9 21 -17c0 -6 -2 -12 -4 -17h396l7 23c1 3 5 11 19 11c15 0 21 -9 21 -17'], + 0xE708: [716,0,967,103,875,'875 28c0 -28 -17 -28 -24 -28c0 0 -47 3 -60 3c-19 0 -39 1 -59 1l-72 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17c0 28 17 28 34 28c5 0 68 1 68 23c0 3 0 5 -2 14l-78 497l-309 -470c-6 -10 -15 -23 -15 -36c0 -23 29 -27 45 -28c7 0 22 -1 22 -17s-7 -28 -24 -28 s-38 3 -55 3c-19 0 -36 1 -55 1c-15 0 -30 -1 -45 -1c-13 0 -29 -3 -42 -3c-8 0 -16 6 -16 17c0 0 1 27 19 28c40 2 80 9 118 67c3 2 3 4 10 13l374 569c8 13 14 22 38 22s26 -7 29 -29l96 -613c4 -24 5 -29 56 -29c18 0 32 0 32 -17'], + 0xE709: [675,0,1018,122,984,'984 658l-22 -127c-4 -21 -11 -24 -23 -24c-5 0 -21 0 -21 18l3 16c3 19 3 27 3 49c0 0 -47 3 -78 3h-444c-12 0 -74 -1 -82 -4c-11 -4 -24 -43 -27 -54c-8 -23 -10 -28 -26 -28c-4 0 -21 0 -21 17c0 4 0 6 5 19l36 110c7 22 9 22 35 22h629c17 0 33 0 33 -17zM876 162 c0 -3 -42 -140 -46 -150c-6 -12 -11 -12 -32 -12h-643c-17 0 -33 0 -33 17c0 7 19 107 22 122c7 36 7 40 26 40c21 0 21 -17 21 -17l-2 -13c-2 -7 -7 -38 -7 -51c0 -12 1 -12 10 -13c24 -3 49 -3 73 -3h447c23 0 66 0 87 5c10 2 28 56 29 58c11 32 11 34 28 34 c20 0 20 -17 20 -17zM823 431c0 -3 -2 -11 -3 -14l-35 -141c-5 -21 -13 -21 -23 -21c-5 0 -21 0 -21 16c0 5 5 24 9 39h-401c-2 -7 -7 -29 -9 -35c-4 -14 -6 -20 -22 -20c-5 0 -21 0 -21 16c0 9 33 136 38 157c5 17 10 19 23 19c4 0 21 0 21 -16c0 -4 -6 -26 -9 -39h401 c6 24 2 11 8 36c4 15 8 19 23 19c4 0 21 0 21 -16'], + 0xE70A: [679,0,1110,117,1088,'1088 662c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-130 -522c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17 c0 28 16 28 41 28c76 0 78 8 86 38l138 551h-381l-140 -562c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17c0 28 16 28 41 28c77 0 78 8 86 38 l130 520c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 15 28 35 28h745c17 0 32 0 32 -17'], + 0xE70B: [683,0,1065,129,1023,'1023 665l-2 -15l-16 -178c-2 -19 -3 -28 -22 -28c-11 0 -21 5 -21 19c0 8 2 21 2 29c0 40 -12 106 -58 124c-53 22 -161 22 -181 22h-296l185 -291c-1 -14 -1 -15 -14 -25l-356 -266h322c69 0 131 8 131 8c54 6 138 16 205 165c8 17 10 21 24 21c8 0 21 -2 21 -17 c0 -4 -17 -45 -26 -67l-28 -70l-32 -80c-7 -16 -10 -16 -33 -16h-666c-17 0 -33 0 -33 17c0 5 2 10 16 20l362 270l-218 342c0 34 12 34 35 34h666c18 0 33 0 33 -18'], + 0xE70C: [705,0,840,90,928,'928 583c0 -52 -16 -53 -30 -53c-8 0 -20 0 -20 13c0 5 2 5 2 18c0 44 -55 58 -105 58c-119 0 -224 -119 -267 -273l-64 -258c-5 -21 -5 -23 -5 -26c0 -12 7 -13 31 -15c26 -2 34 -2 58 -2c26 0 40 0 40 -17c0 -28 -20 -28 -26 -28c-27 0 -56 3 -83 3l-88 1l-88 -1 c-26 0 -54 -3 -80 -3c-17 0 -18 17 -18 17c0 9 2 19 9 25c3 3 5 3 31 3c100 1 104 9 110 24c3 7 19 71 68 269c13 54 14 79 14 101c0 101 -44 180 -141 180c-37 0 -117 -6 -140 -72c-6 -17 -18 -17 -26 -17s-20 0 -20 13c0 38 77 162 208 162s185 -111 185 -236 c0 -7 0 -15 -1 -22c22 44 58 117 127 179c51 45 115 79 186 79c75 0 133 -47 133 -122'], + 0xE70D: [683,0,944,87,858,'858 367c0 -120 -203 -209 -386 -219l-20 -86c0 -12 7 -13 31 -15c26 -2 34 -2 58 -2c26 0 40 0 40 -17c0 -28 -20 -28 -26 -28c-27 0 -56 3 -84 3l-83 1l-84 -1c-26 0 -54 -3 -80 -3c-17 0 -18 17 -18 17s1 17 7 23c5 5 7 5 34 5c98 0 103 10 109 23c3 8 6 19 20 80 c-150 9 -289 73 -289 168c0 115 188 204 369 218c16 1 17 2 19 7c8 31 19 74 19 80c0 11 -1 12 -33 15c-24 2 -35 2 -58 2c-25 0 -38 0 -38 17c0 28 18 28 26 28c27 0 56 -3 84 -3l83 -1l84 1c26 0 54 3 80 3c8 0 18 -4 18 -17c0 -28 -13 -28 -41 -28c-27 0 -55 0 -80 -4 c-26 -5 -28 -14 -36 -43l-14 -56c144 -8 289 -71 289 -168zM465 501c-223 -12 -269 -134 -269 -192c0 -95 102 -122 189 -127zM749 374c0 100 -114 123 -188 127l-80 -319c216 12 268 130 268 192'], + 0xE70E: [683,0,893,86,919,'919 529c0 -15 -13 -16 -20 -17c-66 -7 -94 -79 -100 -97c-14 -50 -40 -137 -137 -202c-58 -38 -125 -59 -207 -65l-20 -86c0 -12 7 -13 31 -15c26 -2 34 -2 58 -2c26 0 40 0 40 -17c0 -28 -20 -28 -26 -28c-27 0 -56 3 -84 3l-83 1l-84 -1c-26 0 -54 -3 -80 -3 c-17 0 -18 17 -18 17s1 17 7 23c5 5 7 5 34 5s57 0 80 4c26 5 28 13 36 44l14 56c-132 12 -220 73 -220 197c0 6 1 33 7 59c4 17 6 26 6 42c0 60 -34 63 -51 65c-8 1 -16 8 -16 17c0 17 17 17 33 17h36c18 0 93 0 93 -99c0 -13 0 -21 -5 -41c-6 -25 -10 -51 -10 -75 c0 -59 19 -132 136 -147l105 420c1 5 3 11 3 17c0 11 -1 12 -33 15c-24 2 -35 2 -58 2c-25 0 -38 0 -38 17c0 28 18 28 26 28c27 0 56 -3 84 -3l83 -1l84 1c26 0 54 3 80 3c9 0 18 -5 18 -17c0 -28 -13 -28 -43 -28c-27 0 -47 0 -75 -4c-25 -3 -31 -11 -37 -36l-103 -413 c182 29 223 175 240 236c6 21 41 125 146 125h36c18 0 32 0 32 -17'], + 0xE70F: [705,0,1061,152,1007,'1007 492c0 -108 -98 -196 -187 -274c-57 -51 -100 -92 -129 -140h93c15 0 49 1 62 5c13 3 28 32 49 70c10 19 11 22 26 22c20 0 20 -17 20 -17c0 -6 -45 -91 -73 -141c-9 -16 -10 -17 -34 -17h-172c-17 0 -33 0 -33 17c0 3 0 59 125 219c76 95 141 179 141 270 c0 115 -107 165 -216 165c-156 0 -334 -101 -334 -284c0 -23 1 -54 24 -135c24 -85 32 -116 32 -168c0 -19 0 -31 -5 -59c-5 -25 -10 -25 -35 -25h-172c-18 0 -27 0 -31 10c-3 6 -6 121 -6 136c0 18 0 29 21 29s21 -14 21 -27c0 -11 2 -58 7 -64s57 -6 60 -6h104 c-5 55 -33 101 -62 146c-43 70 -70 118 -70 183c0 177 228 298 446 298c200 0 328 -96 328 -213'], + 0xE710: [442,11,913,107,802,'802 60c0 -23 -38 -71 -105 -71c-64 0 -103 43 -120 87c-112 -77 -211 -87 -260 -87c-129 0 -210 81 -210 182c0 135 149 271 315 271c92 0 211 -47 224 -196c2 -29 2 -31 5 -54c26 31 73 95 96 177c5 21 6 24 24 24c6 0 20 0 20 -14c0 -22 -48 -159 -137 -238 c7 -100 25 -118 46 -118c9 0 46 4 60 38c5 13 9 13 21 13c8 0 21 0 21 -14zM568 113c-7 60 -9 113 -12 134c-8 59 -34 161 -136 161c-63 0 -123 -36 -157 -78c-50 -64 -64 -157 -64 -190c0 -86 59 -117 121 -117c117 0 209 62 248 90'], + 0xE711: [706,194,791,93,727,'727 560c0 -10 -1 -22 -4 -33c-13 -49 -50 -93 -96 -123c-6 -3 -12 -7 -18 -10c15 -10 28 -21 40 -35c30 -32 47 -75 47 -122c0 -16 -2 -34 -7 -51c-14 -57 -61 -107 -116 -140c-66 -40 -138 -57 -206 -57c-76 0 -138 33 -168 85l-65 -258c-1 -6 -7 -10 -13 -10h-14 c-8 0 -14 6 -13 17l152 611c36 142 159 272 293 272c57 0 110 -17 147 -52c25 -24 41 -56 41 -94zM652 577c0 21 -5 40 -17 56c-21 27 -58 39 -97 39c-117 0 -219 -119 -251 -245l-60 -241c-3 -13 -5 -25 -5 -37c0 -75 62 -127 146 -127c53 0 108 15 156 50 c42 30 68 75 80 121c6 23 9 46 9 68c0 29 -6 56 -21 78c-8 13 -20 24 -33 33c-33 -12 -67 -17 -101 -17c-48 0 -105 0 -105 33c0 0 0 5 1 8c9 35 68 35 116 35c33 0 63 -5 91 -15c7 4 14 9 21 14c34 27 55 65 64 104c4 14 6 29 6 43zM506 394c-12 2 -24 3 -37 3 c-30 0 -72 0 -74 -8l65 -1c15 0 30 2 46 6'], + 0xE712: [442,216,747,74,723,'723 417c0 -3 0 -5 -9 -20c-52 -92 -79 -150 -89 -171c-10 -23 -75 -169 -80 -215c-9 -70 -27 -141 -39 -178c-11 -36 -22 -49 -36 -49c-20 0 -20 25 -20 29c0 29 26 128 48 197c7 24 8 27 8 68c0 124 -35 277 -212 277c-51 0 -151 -17 -177 -89c-5 -15 -6 -17 -22 -17 c-8 0 -21 0 -21 14c0 9 15 67 72 116c44 37 103 63 163 63c155 0 221 -184 237 -299c51 133 133 276 139 283c4 5 11 5 17 5s21 0 21 -14'], + 0xE713: [716,11,654,104,582,'582 661c0 -6 -1 -13 -5 -19c-8 -17 -26 -28 -43 -28c-4 0 -7 1 -11 2c-50 17 -90 51 -145 57c-4 1 -7 1 -11 1c-9 0 -17 -1 -26 -5c-10 -5 -19 -14 -24 -24c-2 -4 -3 -8 -3 -12c0 -43 82 -121 139 -176c35 -33 65 -72 79 -119c7 -23 10 -46 10 -70c0 -28 -4 -56 -11 -85 c-25 -103 -119 -194 -218 -194c-67 0 -127 23 -166 67c-27 30 -43 70 -43 114c0 16 2 32 6 49c15 61 58 118 114 158c41 29 86 48 131 58c-40 57 -78 121 -78 177c0 17 3 32 10 47c9 17 23 33 40 42c18 9 37 13 55 15h14c43 0 109 -13 159 -23c17 -3 27 -16 27 -32zM455 223 c0 23 -4 44 -10 64c-14 41 -38 75 -62 108l-6 9c-36 -8 -72 -26 -102 -52c-43 -38 -67 -89 -80 -140c-5 -23 -9 -45 -9 -67c0 -25 5 -49 18 -69c23 -35 64 -54 111 -54c63 0 114 69 132 139c5 21 8 42 8 62'], + 0xE714: [431,11,614,113,514,'514 46c0 -18 -70 -41 -70 -41c-48 -16 -82 -16 -95 -16c-138 0 -236 86 -236 203c0 153 168 239 306 239h54c20 0 36 0 36 -21c0 -24 -24 -24 -40 -24h-49c-92 0 -166 -39 -196 -122h208c17 0 36 0 36 -20c0 -25 -26 -25 -41 -25h-216c-5 -28 -5 -52 -5 -56 c0 -125 106 -140 145 -140c47 0 92 21 129 42c11 7 13 7 17 7c11 0 17 -17 17 -26'], + 0xE715: [701,205,667,110,616,'616 579c0 -41 -75 -41 -112 -41c-27 0 -50 0 -76 22c-115 -57 -246 -205 -246 -347c0 -120 92 -144 166 -164l55 -14c62 -16 86 -23 107 -45c7 -9 27 -30 27 -70c0 -51 -42 -125 -116 -125c-49 0 -126 26 -126 48c0 9 7 17 18 17c3 0 5 0 17 -7c39 -22 82 -24 91 -24 c37 0 47 37 47 54c0 24 -15 39 -31 48c-11 5 -61 18 -92 27c-94 24 -136 36 -177 76c-19 19 -58 58 -58 145c0 173 148 338 297 410c-12 23 -12 54 -12 54c0 9 0 58 27 58c9 0 20 -6 20 -20c0 -7 -5 -19 -5 -40c0 -22 6 -37 6 -37c30 10 53 10 73 10c54 0 100 -4 100 -35z M562 576c-15 3 -27 4 -48 4c-15 0 -30 0 -44 -4c11 -4 13 -4 36 -4c33 0 43 2 56 4'], + 0xE716: [442,216,744,91,679,'679 323c0 -24 -3 -35 -7 -51l-111 -440c-3 -12 -12 -48 -51 -48c-19 0 -37 12 -37 35c0 3 0 8 4 24l111 441c4 17 7 28 7 52c0 43 -19 72 -70 72c-65 0 -107 -38 -123 -52c-49 -43 -85 -116 -87 -120c-5 -23 -11 -45 -16 -67l-18 -69l-19 -78c-11 -25 -33 -33 -48 -33 c-19 0 -37 13 -37 35c0 5 11 49 17 74l23 89l22 90c6 26 16 64 16 78c0 20 -6 53 -41 53c-47 0 -68 -74 -79 -114c-4 -16 -6 -21 -23 -21c-6 0 -21 0 -21 15c0 5 13 57 39 99c25 39 55 55 89 55c25 0 117 -10 121 -99c36 38 92 99 190 99c102 0 149 -50 149 -119'], + 0xE717: [705,11,677,108,604,'604 474c0 -227 -170 -485 -334 -485c-98 0 -162 95 -162 231c0 234 173 485 333 485c108 0 163 -110 163 -231zM519 529c0 79 -23 142 -79 142c-47 0 -148 -52 -212 -301h267c22 89 24 129 24 159zM483 324h-267c-17 -74 -24 -121 -24 -160c0 -30 5 -141 80 -141 c50 0 151 61 211 301'], + 0xE718: [442,11,550,120,459,'459 144c0 -4 -10 -63 -80 -110c-56 -37 -115 -45 -147 -45c-71 0 -112 43 -112 88c0 27 35 103 44 135l17 57c6 16 16 59 21 76c6 15 12 56 20 70c9 16 26 27 45 27c24 0 37 -18 37 -35c0 -7 -37 -166 -88 -293c-9 -23 -13 -33 -13 -53c0 -38 22 -38 32 -38 c45 0 150 25 181 120c3 9 5 15 22 15c4 0 21 0 21 -14'], + 0xE719: [442,11,828,124,737,'737 144c0 -11 -39 -155 -142 -155c-58 0 -122 36 -122 107c0 6 0 12 3 27c0 0 4 15 4 24c0 52 -61 70 -152 76l-68 2c-46 -179 -45 -180 -49 -195c-9 -33 -36 -41 -50 -41c-19 0 -37 13 -37 35c0 10 93 382 98 391c9 16 26 27 45 27c24 0 37 -18 37 -35 c0 -6 -10 -45 -16 -68c-13 -51 -5 -22 -18 -73c42 11 79 32 149 77c57 37 134 88 206 88c40 0 47 -26 47 -42c0 -30 -27 -61 -62 -61c-18 0 -43 10 -43 42c0 11 1 14 2 17c-38 -12 -72 -31 -140 -75c-29 -19 -57 -37 -91 -55c87 -5 227 -13 227 -112c0 -11 0 -13 -4 -30 c0 -3 -4 -18 -4 -34c0 -18 4 -58 42 -58c54 0 83 78 93 112c5 18 7 23 24 23c4 0 21 0 21 -14'], + 0xE71A: [442,12,890,97,820,'820 145c2 -9 -36 -154 -176 -154c-60 0 -95 35 -95 90c0 11 2 23 5 36c13 53 37 112 69 167c-151 -107 -274 -210 -402 -284c-15 -9 -29 -12 -40 -12c-21 0 -34 12 -34 27c0 12 7 25 24 36c62 63 132 184 152 267c3 11 4 20 4 29c0 38 -26 53 -59 53 c-42 0 -103 -9 -126 -104c-4 -14 -13 -18 -24 -18c-10 0 -19 0 -20 10c-1 9 37 154 177 154c61 0 95 -35 95 -89c0 -12 -2 -24 -5 -37c-14 -55 -41 -121 -75 -178c204 135 273 203 409 295c7 5 15 7 23 7c15 0 29 -8 34 -14c5 -5 8 -12 8 -18c0 -9 -5 -18 -16 -26 c-90 -112 -130 -183 -151 -267c-2 -10 -4 -19 -4 -26c0 -40 30 -55 58 -55c46 0 103 8 127 103c4 14 11 17 24 18c8 0 17 0 18 -10'], + 0xE71B: [694,13,840,122,740,'740 3c0 -14 -12 -14 -30 -14h-25c-20 0 -23 0 -40 9c0 0 -14 7 -23 19c-9 13 -89 177 -137 267l-288 -278c-9 -8 -19 -19 -37 -19c-21 0 -38 17 -38 38c0 18 16 34 23 40l320 260l-85 167l-49 97c-15 28 -35 66 -77 71c-13 1 -25 2 -25 16c0 18 16 18 37 18 c96 0 127 -23 146 -60l292 -575c9 -17 17 -33 29 -43c4 -3 7 -7 7 -13'], + 0xE71C: [442,216,850,95,759,'759 144c0 -7 -14 -60 -40 -99c-21 -33 -48 -56 -88 -56c-33 0 -100 14 -118 74c-44 -44 -97 -74 -161 -74c-36 0 -83 6 -122 30l-24 -96c-16 -66 -6 -29 -23 -94c-9 -33 -30 -45 -51 -45c-19 0 -37 12 -37 35c0 3 0 8 4 24l138 550c3 12 12 49 52 49c24 0 37 -18 37 -35 c0 -5 -9 -41 -14 -62l-17 -67l-22 -90c-8 -29 -13 -50 -13 -73c0 -71 43 -92 97 -92c63 0 111 41 143 81c17 21 17 23 24 48l32 130c10 41 10 43 22 86c7 29 15 63 55 63c19 0 37 -13 37 -35c0 -5 0 -7 -5 -24c-39 -154 -70 -275 -70 -296c0 -31 12 -53 40 -53 c35 0 61 39 79 113c5 16 6 22 24 22c4 0 21 0 21 -14'], + 0xE71D: [442,0,712,121,685,'685 407c0 -14 -31 -155 -183 -267c-132 -96 -268 -130 -342 -140h-17c-11 0 -22 4 -22 17l9 37l72 288c5 19 5 21 6 37c-11 4 -19 7 -54 7c-14 0 -30 0 -30 17c0 6 3 18 7 23c5 4 7 5 24 6l123 9c16 1 31 1 31 -16c0 -5 0 -7 -4 -21l-90 -359c95 25 179 76 235 125 c109 97 136 188 149 234c7 24 29 38 49 38c24 0 37 -18 37 -35'], + 0xE71E: [701,205,667,85,582,'582 579c0 -41 -76 -41 -112 -41c-25 0 -56 0 -82 27c-99 -37 -129 -113 -129 -155c0 -25 9 -54 39 -78c52 15 91 15 113 15c41 0 105 0 105 -35c0 -41 -77 -41 -118 -41c-24 0 -72 0 -120 15c-96 -44 -126 -121 -126 -152c0 -52 59 -70 144 -96c41 -13 81 -25 86 -26 l86 -26c21 -7 66 -21 66 -78c0 -50 -42 -113 -113 -113c-18 0 -52 3 -88 15c-26 8 -55 18 -55 33c0 8 7 17 17 17c3 0 5 0 22 -8c41 -19 86 -23 103 -23c38 0 43 34 43 43c0 21 -14 25 -43 34l-141 43c-77 23 -122 37 -154 68c-15 16 -40 40 -40 86c0 60 52 152 148 201 c-15 8 -70 37 -70 108c0 75 61 160 203 191c-4 15 -6 19 -6 40c0 9 0 58 27 58c9 0 20 -6 20 -20c0 -7 -5 -19 -5 -40c0 -18 0 -19 4 -31c31 4 45 4 70 4c52 0 106 -2 106 -35zM528 576c-21 4 -34 4 -51 4c-23 0 -28 0 -44 -3c11 -5 13 -5 38 -5c36 0 47 2 57 4zM461 309 c-12 3 -22 4 -52 4c-21 0 -32 0 -56 -4c18 -4 27 -4 49 -4c36 0 44 2 59 4'], + 0xE71F: [431,11,831,89,763,'763 399c0 -14 -10 -28 -16 -34c-14 -10 -24 -10 -42 -10h-142c-6 -34 -11 -74 -11 -108c0 -18 0 -106 46 -181c7 -12 11 -17 11 -28c0 -26 -28 -49 -52 -49c-44 0 -69 94 -69 163c0 79 28 188 32 203h-131l-64 -239c-23 -81 -37 -127 -79 -127c-20 0 -38 13 -38 36 c0 10 0 12 15 38c35 63 86 167 122 292h-71c-61 0 -109 -22 -143 -65c-8 -9 -8 -10 -22 -10c-6 0 -20 0 -20 14c0 12 45 63 72 87c59 50 104 50 126 50h429c17 0 47 0 47 -32'], + 0xE720: [442,216,726,95,655,'655 266c0 -145 -146 -277 -289 -277c-54 0 -96 22 -127 63l-53 -211c-7 -24 -15 -57 -54 -57c-19 0 -37 12 -37 35c0 3 0 8 4 24l94 374c33 133 162 225 278 225c104 0 184 -70 184 -176zM565 302c0 82 -53 106 -96 106c-42 0 -144 -27 -186 -178c0 0 -29 -115 -29 -118 c0 -10 23 -89 112 -89c45 0 105 26 146 91c32 52 53 145 53 188'], + 0xE721: [431,11,815,104,747,'747 399c0 -15 -10 -29 -16 -34c-14 -10 -24 -10 -42 -10h-124c21 -30 32 -65 32 -105c0 -149 -153 -261 -296 -261c-110 0 -197 66 -197 170c0 121 133 272 304 272h293c16 0 46 0 46 -32zM513 258c0 69 -46 97 -121 97c-193 0 -206 -190 -206 -221 c0 -92 72 -111 117 -111c134 0 210 133 210 235'], + 0xE722: [431,13,682,89,693,'693 399c0 -14 -9 -28 -16 -34c-14 -10 -23 -10 -42 -10h-210l-60 -317c-5 -26 -19 -51 -51 -51c-20 0 -38 13 -38 35c0 6 13 46 20 69l82 264h-104c-52 0 -105 -15 -143 -65c-8 -9 -8 -10 -22 -10c-6 0 -20 0 -20 14c0 13 49 68 75 89c58 48 100 48 123 48h360 c16 0 46 0 46 -32'], + 0xE723: [443,11,792,91,710,'710 357c0 -6 -3 -148 -94 -259c-38 -46 -107 -109 -200 -109c-94 0 -208 29 -208 145c0 30 10 70 53 176c13 29 17 40 17 60c0 27 -11 38 -30 38c-45 0 -92 -46 -113 -115c-5 -15 -6 -20 -23 -20c-5 0 -21 0 -21 14c0 27 56 155 161 155c62 0 109 -39 109 -88 c0 -18 -7 -33 -15 -52c-50 -122 -53 -153 -53 -177c0 -102 103 -102 127 -102c134 0 232 180 232 252c0 29 -11 55 -39 76c-6 5 -19 15 -19 34c0 26 28 58 59 58c17 0 57 -17 57 -86'], + 0xE724: [694,205,842,114,763,'763 253c0 -125 -153 -257 -361 -267l-42 -169c-4 -18 -5 -22 -23 -22c-7 0 -21 0 -21 15c0 5 23 94 44 177c-144 6 -246 88 -246 192c0 126 155 253 348 265c9 1 10 2 12 3l4 15l53 209c5 20 6 23 23 23c7 0 21 0 21 -14c0 0 0 -3 -3 -15l-55 -221 c159 -8 246 -99 246 -191zM465 410c-172 -13 -269 -136 -269 -245c0 -103 92 -141 172 -144zM680 266c0 111 -102 141 -172 144l-97 -389c172 13 269 133 269 245'], + 0xE725: [442,205,865,92,772,'772 -131c0 -19 -31 -74 -111 -74c-112 0 -142 48 -162 81c-41 65 -68 130 -94 190l-177 -164l-91 -84c-11 -9 -15 -12 -22 -12c-11 0 -20 9 -20 20c0 5 3 11 13 21l270 249c7 6 9 10 9 10c0 8 -125 302 -193 302c-17 0 -48 -10 -60 -41c-3 -8 -5 -13 -21 -13 c-5 0 -21 0 -21 14c0 18 30 74 111 74c111 0 141 -47 158 -73c37 -59 74 -138 98 -198l200 185l65 60c14 12 17 15 25 15c11 0 20 -9 20 -20c0 -8 -4 -12 -16 -23l-267 -247c-8 -8 -9 -10 -9 -10c0 -8 125 -302 193 -302c25 0 51 17 59 38c4 12 6 16 22 16c6 0 21 0 21 -14'], + 0xE726: [694,205,931,91,849,'849 357c0 -34 -16 -116 -36 -160c-18 -39 -49 -78 -84 -110c-111 -98 -217 -98 -254 -98c-22 -88 -21 -87 -44 -174c-4 -16 -6 -20 -23 -20c-5 0 -20 0 -20 14l44 182c-103 5 -222 42 -222 152c0 18 0 43 53 169c9 23 15 37 15 58c0 27 -11 38 -30 38 c-46 0 -93 -48 -113 -115c-5 -15 -6 -20 -23 -20c-5 0 -21 0 -21 14c0 27 56 155 161 155c62 0 109 -39 109 -88c0 -17 -6 -31 -17 -57c-49 -119 -49 -143 -49 -158c0 -76 66 -106 146 -114l162 646c5 20 6 23 23 23c6 0 21 0 21 -14c0 0 -3 -14 -4 -16l-160 -641 c180 0 308 162 308 252c0 45 -26 66 -39 76c-7 5 -19 16 -19 34c0 27 30 58 58 58c21 0 58 -20 58 -86'], + 0xE727: [442,11,886,80,801,'801 357c0 -36 -11 -79 -21 -119c-31 -126 -122 -249 -235 -249c-72 0 -121 39 -145 97c-47 -58 -109 -97 -176 -97c-96 0 -144 77 -144 174c0 26 4 54 11 82c15 64 47 126 94 180c6 7 15 11 23 11c5 0 10 -1 14 -4c6 -5 10 -12 10 -19s-3 -13 -8 -19 c-41 -48 -79 -100 -93 -156c-3 -15 -5 -29 -5 -43c0 -68 42 -119 113 -119c54 0 108 30 147 74c-1 7 -1 14 -1 21c0 24 3 49 9 74c7 26 28 51 52 51c22 0 33 -17 33 -40c0 -5 -1 -12 -2 -18c-8 -31 -20 -63 -36 -92c19 -42 62 -70 119 -70c82 0 158 81 180 169 c2 9 3 19 3 27c0 33 -15 62 -41 80c-11 8 -16 20 -16 33c0 11 4 24 14 35c12 14 29 22 44 22c9 0 18 -3 25 -8c24 -17 32 -45 32 -77'], + 0xE728: [453,22,675,91,574,'574 390c0 -18 -17 -35 -35 -35c-8 0 -10 1 -23 8c-51 28 -99 28 -119 28c-103 0 -216 -29 -216 -83c0 -33 40 -48 40 -48s3 0 9 2c44 15 82 18 112 18c47 0 92 -4 92 -35c0 -41 -66 -41 -104 -41c-34 0 -65 0 -110 16c-54 -26 -86 -67 -86 -101c0 -79 148 -79 185 -79 c101 0 152 10 181 51c5 8 8 13 16 13c7 0 16 -7 16 -17c0 -11 -24 -53 -82 -81c-41 -20 -96 -28 -147 -28c-140 0 -212 68 -212 136c0 37 23 87 90 126c-25 15 -42 38 -42 67c0 84 137 146 271 146c67 0 112 -19 143 -36c10 -5 21 -10 21 -27zM383 241c-14 3 -27 5 -43 5 c-33 0 -53 -5 -59 -6c14 -2 35 -2 50 -2c21 0 38 0 52 3'], + 0xE729: [705,11,855,91,762,'762 339c0 -10 -5 -19 -15 -19c-8 0 -49 6 -59 8c-36 -140 -155 -339 -308 -339c-72 0 -175 16 -175 128c0 27 6 50 25 123c3 16 10 43 15 62c9 36 10 40 10 53c0 20 -6 53 -41 53c-47 0 -68 -74 -79 -114c-4 -16 -6 -21 -23 -21c-6 0 -21 0 -21 15c0 5 13 57 39 99 c25 39 55 55 89 55c61 0 121 -36 121 -97c0 -11 -7 -39 -12 -59c-5 -19 -12 -47 -15 -62c-10 -39 -24 -93 -24 -119c0 -28 4 -82 96 -82c89 0 176 145 214 322c-138 28 -220 81 -220 175c0 107 95 185 180 185c105 0 152 -114 152 -225c0 -6 0 -54 -15 -119l39 -5 c18 -3 27 -5 27 -17zM631 533c0 34 -5 138 -74 138c-64 0 -136 -66 -136 -150c0 -69 59 -117 187 -143c11 46 23 104 23 155'], + 0xE72A: [431,11,1145,89,1075,'1075 399c0 0 0 -44 -53 -44h-30c2 -5 12 -37 12 -69c0 -112 -117 -297 -273 -297c-105 0 -136 92 -140 163c-61 -96 -158 -163 -254 -163c-89 0 -121 76 -121 145c0 109 70 191 96 221c-63 0 -81 0 -115 -14c-39 -17 -58 -40 -65 -50c-9 -10 -10 -11 -23 -11 c-6 0 -20 0 -20 14c0 12 43 61 69 84c60 53 107 53 129 53h741c17 0 47 0 47 -32zM962 286c0 34 -13 67 -14 69h-584c-34 -35 -102 -116 -102 -196c0 -57 31 -94 88 -94c78 0 209 61 256 222c4 12 13 12 21 12c7 0 21 0 21 -15c0 -3 -1 -4 -2 -11c-8 -34 -8 -56 -8 -70 c0 -82 33 -138 106 -138c110 0 218 114 218 221'], + 0xE72B: [442,194,726,142,655,'655 266c0 -145 -146 -277 -289 -277c-86 0 -138 47 -162 93c-7 -35 -15 -80 -15 -112c0 -56 17 -69 154 -69c29 0 108 0 142 -6c20 -4 54 -10 54 -55c0 -34 -13 -34 -24 -34c-10 0 -21 0 -21 19c-15 5 -17 5 -48 5c-52 0 -69 -5 -129 -5c-114 0 -175 19 -175 117 c0 21 5 63 8 84c16 90 47 206 48 209c37 115 156 207 273 207c104 0 184 -70 184 -176zM565 302c0 82 -53 106 -96 106c-47 0 -104 -28 -142 -82c-45 -64 -60 -156 -60 -192c0 -88 59 -111 100 -111c40 0 102 23 145 91c32 52 53 145 53 188'], + 0xE72C: [442,108,578,94,554,'554 406c0 -13 -11 -24 -24 -24c-4 0 -5 0 -13 3c-38 15 -65 23 -102 23c-140 0 -253 -70 -253 -155c0 -56 56 -80 87 -93c16 -8 51 -23 61 -27l77 -33c48 -20 84 -36 84 -92c0 -49 -43 -116 -114 -116c0 0 -80 3 -80 28c0 12 12 17 18 17c3 0 8 -1 13 -3 c16 -5 32 -8 49 -8c34 0 42 35 42 45c0 25 -19 33 -34 39c-25 11 -27 11 -46 20l-91 39c-50 22 -134 58 -134 150c0 107 125 223 331 223c11 0 46 0 78 -6c46 -9 51 -18 51 -30'], + 0xE72D: [442,218,918,113,818,'818 288c0 -156 -176 -299 -380 -299c-11 0 -27 0 -38 1l-30 -168c-5 -23 -26 -40 -50 -40c-20 0 -37 14 -37 35c0 5 0 8 8 33c24 71 30 87 47 148c-133 22 -225 93 -225 196c0 46 28 148 82 208c25 29 30 29 41 29c6 0 21 0 21 -14c0 -5 -1 -6 -18 -23 c-62 -62 -83 -166 -83 -190c0 -99 129 -127 206 -134c32 102 53 171 106 248c49 70 117 124 197 124c86 0 153 -59 153 -154zM774 271c0 65 -62 95 -120 95c-84 0 -199 -74 -229 -239c-3 -19 -10 -54 -10 -57c0 -5 9 -5 14 -5h20c200 0 325 108 325 206'], + 0xE72E: [716,22,749,104,742,'742 435c0 -125 -99 -457 -397 -457c-62 0 -121 11 -172 56c-48 42 -69 85 -69 135c0 27 7 122 98 197c95 78 172 93 243 93c117 0 165 -73 180 -120c12 45 22 94 22 141c0 159 -117 197 -194 197c-88 0 -137 -36 -159 -65c0 0 36 -7 36 -42c0 -31 -26 -61 -62 -61 c-27 0 -43 17 -43 41c0 34 45 166 231 166c167 0 286 -116 286 -281zM604 286c0 67 -46 139 -154 139c-25 0 -101 0 -172 -72c-66 -68 -77 -202 -77 -215c0 -55 33 -118 147 -118c200 0 256 216 256 266'], + 0xE72F: [679,0,694,69,794,'794 649l-18 -174c-2 -17 -3 -26 -18 -26c-14 0 -17 9 -17 17c0 20 5 46 5 67c0 84 -31 110 -147 110h-134c-42 0 -43 -3 -51 -34l-134 -536c-3 -11 -3 -14 -3 -18c0 -14 10 -15 31 -17c25 -2 52 -2 52 -2c23 0 35 0 35 -14c0 -22 -15 -22 -22 -22c-25 0 -53 3 -79 3 l-77 1c-29 0 -103 -4 -132 -4c-9 0 -16 5 -16 15c0 21 13 21 30 21c78 0 79 7 89 46l131 523c1 5 4 15 4 22c0 10 -2 12 -23 14c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 13 22 32 22h503c25 0 32 0 29 -30'], + 0xE730: [713,0,954,72,887,'887 12c0 -12 -12 -12 -29 -12h-763c-22 0 -23 1 -23 8c0 0 0 4 8 14l539 672c8 10 15 19 35 19c21 0 24 -8 29 -25l200 -662c4 -11 4 -14 4 -14zM761 80l-163 537l-431 -537h594'], + 0xE731: [703,20,869,69,829,'829 425c0 -227 -231 -445 -469 -445c-172 0 -291 113 -291 274c0 225 231 449 470 449c177 0 290 -121 290 -278zM735 452c0 150 -94 223 -203 223c-89 0 -184 -51 -249 -126c-95 -111 -120 -248 -120 -320c0 -155 103 -219 204 -219c85 0 180 44 249 123 c98 113 119 258 119 319zM673 402c0 -4 -24 -100 -28 -113c-3 -13 -5 -21 -18 -21c0 0 -17 0 -17 16c0 6 2 13 4 18h-349s-3 -34 -22 -34c0 0 -17 0 -17 16c0 6 24 99 28 113c3 11 5 20 19 20c11 0 16 -8 16 -15c0 -3 -2 -13 -4 -19h349c0 7 3 15 6 23c2 5 7 11 17 11 c11 0 16 -8 16 -15'], + 0xE732: [713,0,798,57,749,'749 22c0 -22 -15 -22 -20 -22c-24 0 -83 4 -107 4c-29 0 -101 -4 -130 -4c-16 0 -16 14 -16 14c0 22 14 22 25 22c61 0 71 18 71 28c0 0 -1 10 -2 15l-57 498l-290 -470c-5 -8 -16 -26 -16 -40c0 -24 26 -30 45 -31c4 0 18 -1 18 -14c0 -22 -16 -22 -21 -22 c-30 0 -71 4 -103 4c-24 0 -53 -4 -76 -4c-9 0 -13 9 -13 14c0 11 5 21 15 22c35 3 73 6 121 84l352 572c8 13 13 21 31 21c20 0 20 -6 23 -29l71 -617c3 -23 4 -31 51 -31c16 0 28 0 28 -14'], + 0xE733: [676,0,845,75,857,'857 662c0 -3 -1 -13 -2 -16l-20 -106c-4 -20 -4 -24 -19 -24c-16 0 -16 14 -16 14c0 3 1 8 1 12c6 30 6 40 6 57c-21 2 -52 3 -73 3h-392c-11 0 -72 0 -78 -6c-9 -7 -21 -41 -26 -58c-5 -16 -7 -22 -20 -22c-9 0 -17 4 -17 14l4 14l35 110c7 21 8 22 33 22h554 c18 0 30 0 30 -14zM746 157c0 -7 -38 -127 -44 -143c-5 -14 -8 -14 -31 -14h-566c-18 0 -30 0 -30 15c0 9 21 116 25 134c2 14 4 22 18 22c10 0 17 -5 17 -15c0 -3 -3 -18 -4 -23c-5 -27 -5 -41 -5 -55c30 -4 32 -4 77 -4h394c13 0 71 0 82 5c9 6 26 58 30 69 c6 18 7 23 20 23s17 -8 17 -14zM705 426c0 0 -2 -11 -3 -14l-32 -127c-4 -16 -5 -22 -19 -22c-11 0 -16 8 -16 15c0 6 5 25 8 37h-360c-5 -22 -2 -10 -8 -32c-3 -11 -5 -20 -19 -20c-11 0 -16 8 -16 15l34 139c4 16 6 24 20 24c11 0 16 -8 16 -15c0 -6 -5 -25 -8 -37h360 c5 22 2 10 8 32c3 11 5 20 19 20c11 0 16 -8 16 -15'], + 0xE734: [679,0,936,69,959,'959 665c0 -22 -13 -22 -30 -22c-77 0 -79 -8 -88 -42l-132 -526c-4 -15 -4 -22 -4 -22c0 -10 0 -12 22 -15c18 -2 22 -2 38 -2c23 0 33 0 33 -15c0 -21 -16 -21 -21 -21c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-9 0 -16 5 -16 15c0 21 13 21 30 21 c78 0 80 8 88 42l141 565h-335l-142 -568c-4 -15 -4 -22 -4 -22c0 -10 0 -12 22 -15c18 -2 22 -2 38 -2c23 0 33 0 33 -15c0 -21 -16 -21 -21 -21c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-9 0 -16 5 -16 15c0 21 13 21 30 21c78 0 79 7 89 46l131 523 c1 5 4 15 4 22c0 10 -2 12 -23 14c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 13 22 32 22h667c17 0 30 0 30 -14'], + 0xE735: [683,0,886,81,889,'889 653l-18 -174c-2 -17 -3 -26 -18 -26c-14 0 -17 8 -17 17c0 6 2 17 2 39c0 59 -16 105 -58 120c-45 16 -122 18 -154 18h-265l151 -290c2 -3 5 -10 5 -15c0 -7 -2 -9 -13 -18l-336 -277h294c126 0 173 19 189 25c46 19 89 72 125 158c5 11 13 11 17 11 c16 0 16 -14 16 -14c0 -5 -2 -11 -4 -16l-76 -192c-8 -18 -9 -19 -33 -19h-585c-17 0 -30 0 -30 14c0 7 2 8 14 18l331 272l-184 356c0 23 14 23 33 23h585c25 0 32 0 29 -30'], + 0xE736: [703,0,678,46,790,'790 587c0 -44 -10 -55 -27 -55c-6 0 -15 2 -15 12c0 0 3 13 3 18c0 33 -32 62 -93 62c-110 0 -205 -118 -247 -287l-62 -245c-7 -32 -7 -34 -7 -37c0 -14 9 -15 33 -17s43 -2 52 -2c22 0 33 0 33 -15c0 -21 -16 -21 -22 -21c-26 0 -55 3 -81 3l-77 1l-81 -1 c-24 -1 -51 -3 -74 -3c-10 0 -17 5 -17 15c0 21 13 21 32 21c70 0 101 1 110 32l46 187c36 141 38 151 38 204c0 77 -24 165 -123 165c-50 0 -109 -22 -127 -73c-4 -10 -7 -19 -23 -19c-6 0 -15 2 -15 11c0 32 67 160 187 160c93 0 160 -66 160 -217c0 -24 0 -26 -1 -35 c45 100 83 144 120 180c16 15 80 72 165 72c74 0 113 -55 113 -116'], + 0xE737: [683,0,770,43,726,'726 372c0 -117 -166 -220 -349 -232c-19 -81 -19 -85 -19 -85c0 -14 10 -15 31 -17c25 -2 52 -2 52 -2c23 0 35 0 35 -14c0 -22 -15 -22 -22 -22c-25 0 -52 3 -77 3l-77 1l-78 -1c-24 0 -51 -3 -74 -3c-16 0 -17 14 -17 14c0 22 10 22 40 22c93 0 95 7 107 54l12 50 c-130 7 -247 75 -247 171c0 120 175 222 348 232c7 29 3 12 11 41c3 15 9 37 9 43c0 15 -6 16 -33 18c-22 2 -52 2 -52 2c-22 0 -33 0 -33 15c0 21 16 21 22 21c24 0 52 -3 77 -3l77 -1l78 1c24 0 50 3 74 3c16 0 17 -14 17 -14c0 -22 -11 -22 -40 -22 c-94 0 -95 -7 -107 -52l-13 -52c143 -9 248 -80 248 -171zM384 515c-235 -20 -243 -198 -243 -219c0 -85 69 -120 156 -128zM627 387c0 20 0 62 -45 93c-21 14 -54 30 -111 35l-86 -347c207 18 242 159 242 219'], + 0xE738: [683,0,717,45,782,'782 538c0 -12 -10 -13 -18 -14c-64 -8 -88 -95 -96 -125c-45 -165 -167 -248 -311 -259c-19 -81 -19 -85 -19 -85c0 -14 9 -15 33 -17s43 -2 52 -2c22 0 33 0 33 -15c0 -21 -16 -21 -22 -21c-24 0 -52 3 -77 3l-77 1l-78 -1c-24 0 -51 -3 -74 -3c-10 0 -17 5 -17 15 c0 21 11 21 40 21c93 0 95 7 107 54l12 50c-111 13 -188 72 -188 191c0 25 4 52 9 76c5 17 9 39 9 56c0 27 -6 57 -37 61c-8 1 -18 2 -18 14c0 14 14 14 30 14h31c21 0 80 0 80 -89c0 -15 -3 -36 -10 -64c-8 -34 -11 -65 -11 -85c0 -64 23 -129 113 -145l109 435 c4 15 4 17 4 23c0 12 -1 15 -31 18c-22 2 -31 2 -52 2c-24 0 -35 0 -35 14c0 22 15 22 22 22c24 0 52 -3 77 -3l77 -1l78 1c24 0 51 3 74 3c16 0 17 -14 17 -14c0 -22 -10 -22 -41 -22c-92 0 -95 -10 -104 -46l-108 -430c125 24 188 125 216 227c24 86 57 154 140 154h31 c18 0 30 0 30 -14'], + 0xE739: [703,0,880,103,872,'872 496c0 -105 -94 -198 -160 -265c-62 -61 -104 -104 -137 -162h84c16 0 58 0 67 10c9 12 28 46 30 51c13 25 13 27 16 29c4 7 11 7 14 7c15 0 17 -10 17 -14c0 -10 -57 -115 -67 -134c-10 -17 -11 -18 -34 -18h-147c-18 0 -30 0 -30 15c0 8 10 45 41 103 c21 39 50 81 84 130c55 80 119 173 119 267c0 113 -90 160 -182 160c-138 0 -301 -107 -301 -301c0 -47 12 -107 19 -140c17 -85 17 -115 17 -139c0 -13 0 -34 -5 -61c-6 -33 -7 -34 -35 -34h-147c-29 0 -31 1 -31 33v52c0 15 -1 29 -1 44c0 28 0 37 17 37s17 -11 17 -25 c0 -11 0 -58 6 -66c5 -6 55 -6 55 -6h93c-2 60 -22 99 -60 176c-21 43 -47 99 -47 158c0 170 201 300 403 300c178 0 285 -96 285 -207'], + 0xE73A: [441,10,743,62,676,'676 380c0 -11 -37 -144 -129 -239c5 -123 22 -123 36 -123c12 0 43 6 57 44c2 6 4 10 17 10c5 0 17 0 17 -12c0 -21 -36 -70 -94 -70c-30 0 -81 12 -104 85c-56 -43 -139 -85 -231 -85c-116 0 -183 82 -183 174c0 140 141 277 288 277c100 0 175 -64 190 -163 c2 -9 4 -76 5 -91c42 54 75 115 93 181c7 22 7 25 21 25c5 0 17 0 17 -13zM469 107c-5 53 -3 124 -9 167c-8 62 -31 139 -111 139c-35 0 -92 -17 -138 -77c-52 -69 -66 -178 -66 -207c0 -67 37 -111 103 -111c38 0 123 9 221 89'], + 0xE73B: [704,194,648,49,632,'632 566c0 -11 -2 -23 -5 -35c-11 -46 -44 -89 -87 -119c-8 -6 -16 -10 -24 -15c16 -10 30 -23 41 -38c25 -32 37 -72 37 -115c0 -18 -2 -38 -7 -57c-14 -55 -55 -105 -106 -140c-58 -39 -123 -57 -185 -57c-71 0 -124 36 -147 90l-66 -265c-2 -6 -6 -9 -12 -9h-10 c-7 0 -12 5 -11 14l153 613c34 138 140 271 265 271c52 0 99 -16 130 -50c21 -23 34 -54 34 -88zM566 585c0 19 -4 37 -14 52c-17 26 -49 40 -85 40c-111 0 -200 -124 -231 -249l-60 -241c-4 -15 -6 -29 -6 -43c0 -72 50 -126 127 -126c47 0 97 17 139 51 c40 32 63 78 74 124c7 26 12 53 12 79s-5 50 -17 72c-7 13 -17 25 -30 34c-28 -10 -58 -15 -86 -15c-42 0 -90 0 -90 29c0 0 0 5 1 8c8 31 58 31 100 31c28 0 54 -5 78 -14c7 5 14 10 21 16c33 28 51 66 60 104c4 16 7 32 7 48zM436 398c-12 3 -24 5 -37 5 c-27 0 -64 0 -66 -9c-1 -3 34 -3 57 -3c15 0 31 2 46 7'], + 0xE73C: [441,214,600,34,611,'611 419c0 -4 -2 -8 -5 -13c-47 -87 -68 -134 -82 -165c-21 -48 -77 -183 -81 -218c-8 -72 -27 -146 -39 -185c-16 -52 -27 -52 -34 -52c-13 0 -17 13 -17 24c0 30 30 141 53 216c4 11 7 22 7 72c0 102 -21 263 -182 263c-67 0 -141 -36 -162 -95c-5 -15 -6 -17 -19 -17 c-3 0 -16 0 -16 12c0 3 12 67 73 122c28 26 79 58 138 58c163 0 197 -243 202 -301c45 122 121 265 133 286c3 5 12 5 15 5s16 0 16 -12'], + 0xE73D: [714,10,519,61,501,'501 665c0 -6 -2 -12 -5 -18c-8 -15 -24 -24 -39 -24c-3 0 -7 0 -10 2c-44 15 -77 48 -127 51h-6c-9 0 -18 -1 -27 -5c-11 -5 -19 -14 -24 -24c-2 -4 -3 -9 -3 -14c0 -45 71 -124 121 -180c31 -34 56 -73 66 -121c5 -18 6 -36 6 -56c0 -30 -4 -62 -12 -93 c-25 -100 -107 -193 -199 -193c-61 0 -114 24 -146 67c-23 30 -35 67 -35 107c0 18 2 36 7 54c15 59 53 116 105 157c37 30 79 50 122 59c-34 57 -68 120 -68 175c0 18 4 35 12 50c8 16 20 29 35 38c16 9 32 13 48 16c7 0 14 1 21 1c40 0 92 -11 134 -21 c15 -3 24 -14 24 -28zM374 234c0 19 -2 38 -7 56c-10 41 -31 77 -52 111l-4 7c-33 -8 -65 -27 -91 -53c-42 -40 -63 -92 -76 -143c-6 -25 -10 -51 -10 -76c0 -23 4 -45 14 -64c18 -34 53 -54 95 -54c62 0 104 73 122 144c6 24 9 48 9 72'], + 0xE73E: [431,10,476,68,426,'426 414c0 -19 -19 -19 -35 -19h-38c-88 0 -153 -44 -183 -135h179c19 0 34 0 34 -17c0 -19 -19 -19 -34 -19h-188c-9 -38 -9 -58 -9 -72c0 -114 83 -134 123 -134c41 0 83 19 118 42c6 4 8 5 12 5c15 0 15 -17 15 -20c0 -6 -2 -9 -22 -20c-53 -30 -95 -35 -125 -35 c-116 0 -205 79 -205 196c0 152 149 245 282 245h43c19 0 33 0 33 -17'], + 0xE73F: [699,204,520,65,526,'526 585c0 -37 -68 -37 -99 -37c-18 0 -48 0 -68 20c-105 -56 -229 -216 -229 -364c0 -42 10 -76 37 -106c25 -29 52 -37 129 -60c28 -8 74 -22 84 -26c36 -16 63 -49 63 -93c0 -52 -43 -123 -113 -123c-51 0 -109 33 -109 48c0 5 3 14 14 14c5 0 7 -2 13 -6 c34 -24 65 -28 82 -28c33 0 50 32 50 59c0 44 -37 56 -73 66c-127 39 -153 46 -186 79c-41 42 -56 89 -56 144c0 179 148 355 277 421c-10 21 -10 39 -10 51c0 17 0 55 23 55c9 0 16 -8 16 -16l-2 -7c-2 -11 -4 -30 -4 -34c0 -18 5 -32 6 -36c26 10 49 10 66 10 c37 0 89 -1 89 -31zM487 582c-19 5 -23 6 -51 6c-15 0 -29 0 -45 -6c11 -6 13 -6 37 -6c28 0 45 2 59 6'], + 0xE740: [441,214,589,47,567,'567 327c0 -23 -1 -27 -8 -55l-109 -438c-3 -14 -12 -48 -48 -48c-16 0 -34 10 -34 32c0 0 0 6 4 21l113 449c5 19 7 28 7 55c0 24 -3 70 -59 70c-78 0 -128 -57 -160 -106c-20 -31 -20 -33 -31 -76c-5 -23 -11 -45 -17 -67l-22 -90c-5 -21 -13 -53 -18 -62 s-21 -22 -39 -22c-16 0 -34 10 -34 32c0 3 6 28 10 41l32 128l22 90c7 27 16 64 16 83c0 27 -7 49 -33 49c-39 0 -58 -50 -73 -108c-7 -27 -8 -30 -22 -30c-3 0 -17 0 -17 13c0 6 16 66 36 100c16 27 40 53 79 53c31 0 99 -15 106 -90c65 79 127 90 169 90 c47 0 76 -14 93 -27c37 -29 37 -71 37 -87'], + 0xE741: [704,10,544,63,511,'511 487c0 -224 -158 -497 -310 -497c-92 0 -138 98 -138 217c0 229 160 497 310 497c98 0 138 -112 138 -217zM436 546c0 19 0 130 -64 130c-59 0 -145 -95 -196 -311h231c21 84 29 142 29 181zM398 329h-231c-10 -37 -29 -115 -29 -181c0 -54 9 -130 64 -130 c44 0 84 47 115 99c30 49 53 103 81 212'], + 0xE742: [441,10,423,74,374,'374 143c0 0 -9 -56 -65 -102c-41 -33 -92 -51 -137 -51c-67 0 -98 45 -98 85c0 28 32 101 42 133l13 46c5 16 16 59 22 75c6 19 15 67 22 86c6 12 23 26 42 26c20 0 34 -14 34 -32c0 -4 -36 -160 -90 -304c-12 -30 -12 -45 -12 -52c0 -32 13 -35 27 -35 c61 0 140 46 165 119c4 15 6 19 19 19c3 0 16 0 16 -13'], + 0xE743: [441,10,669,75,620,'620 143c0 0 -29 -153 -127 -153c-48 0 -106 32 -106 103c0 10 0 15 3 31c3 12 4 22 4 22c0 77 -138 81 -190 81c-25 -100 -45 -182 -47 -187c-4 -17 -12 -50 -48 -50c-16 0 -34 10 -34 32c0 7 93 381 98 393c6 12 23 26 42 26c20 0 34 -14 34 -32c0 -5 -11 -49 -18 -73 l-18 -73c25 7 52 18 130 76c53 41 121 92 188 92c26 0 42 -13 42 -38c0 -27 -24 -55 -56 -55c-23 0 -39 14 -39 38c0 5 1 13 3 17c-32 -11 -56 -25 -125 -77c-6 -4 -54 -40 -91 -62c31 0 207 0 207 -106c0 -12 -2 -22 -5 -33c-6 -26 -6 -28 -6 -45c0 -27 8 -52 35 -52 c51 0 77 75 88 114c5 19 6 24 20 24c3 0 16 0 16 -13'], + 0xE744: [442,12,736,86,677,'677 145c1 -9 -36 -154 -148 -154c-46 0 -72 32 -72 82c0 13 2 28 6 44c13 53 41 126 68 181c-124 -103 -254 -224 -360 -298c-13 -9 -24 -12 -33 -12c-16 0 -26 11 -26 26c0 12 7 26 21 37c53 63 115 184 135 267c4 16 6 30 6 42c0 32 -15 48 -44 49 c-40 0 -85 -18 -108 -113c-4 -14 -11 -18 -20 -18c-8 0 -15 0 -15 10c-1 9 37 154 149 154c46 0 72 -32 72 -82c0 -13 -2 -28 -6 -44c-14 -55 -44 -130 -73 -187c170 135 257 222 366 304c6 5 12 6 18 6c12 0 23 -7 27 -13c4 -5 6 -11 6 -17c0 -9 -5 -19 -15 -27 c-77 -112 -113 -183 -134 -267c-4 -17 -6 -31 -6 -43c0 -31 14 -46 43 -47c40 0 85 17 109 112c4 14 10 17 20 18c7 0 14 0 14 -10'], + 0xE745: [694,12,678,74,624,'624 2c0 -12 -10 -12 -29 -12h-20c-16 0 -34 0 -53 24c-11 13 -68 158 -118 272l-262 -282c-3 -3 -15 -16 -34 -16c-14 0 -34 10 -34 34c0 17 8 25 20 35l295 266l-119 280c-25 57 -44 60 -65 63c-5 1 -15 2 -15 14c0 14 14 14 26 14c106 0 126 -45 133 -63l244 -576 c4 -9 14 -32 26 -43c2 -2 5 -5 5 -10'], + 0xE746: [441,214,695,50,646,'646 143c0 -4 -13 -61 -35 -100c-18 -31 -43 -53 -79 -53c-15 0 -84 3 -103 72c-2 -2 -58 -72 -144 -72c-36 0 -76 8 -107 29c-24 -98 -44 -178 -46 -183c-4 -17 -12 -50 -48 -50c-16 0 -34 10 -34 32c0 0 0 6 4 21l139 555c3 12 12 47 48 47c20 0 34 -14 34 -32 c0 -4 -10 -42 -15 -63l-14 -56l-22 -90c-14 -54 -17 -67 -17 -93c0 -18 0 -89 82 -89c57 0 101 39 132 83c9 13 9 15 16 40l31 125l21 83c5 20 13 52 16 58c11 19 30 24 41 24c17 0 33 -12 33 -32c0 -5 -11 -49 -17 -74l-23 -89l-22 -90c-7 -26 -15 -62 -15 -79 c0 -27 7 -49 33 -49c42 0 61 59 73 107c7 27 8 31 22 31c3 0 16 0 16 -13'], + 0xE747: [441,0,573,73,587,'587 409c0 0 -20 -132 -156 -253c-107 -95 -234 -142 -323 -156h-16c-4 0 -19 0 -19 14c0 4 5 24 30 124l50 202c4 13 9 33 9 39c0 9 0 15 -48 15c-12 0 -26 0 -26 14c0 21 12 22 28 23c19 2 37 3 56 5c7 0 65 5 65 5c16 0 16 -14 16 -14c0 -5 -1 -11 -2 -15l-93 -372 c170 50 304 203 344 345c9 28 16 56 51 56c20 0 34 -14 34 -32'], + 0xE748: [699,204,520,41,496,'496 585c0 -37 -68 -37 -99 -37c-25 0 -50 0 -73 25c-75 -35 -116 -105 -116 -162c0 -24 7 -56 34 -78c41 14 71 14 95 14c35 0 92 0 92 -31c0 -37 -68 -37 -104 -37c-18 0 -61 0 -104 14c-85 -45 -120 -123 -120 -159c0 -58 54 -76 151 -110c11 -3 136 -46 144 -50 c21 -11 42 -31 42 -69c0 -46 -40 -109 -109 -109c-54 0 -124 30 -124 48c0 10 8 14 14 14c4 0 6 0 13 -6c43 -25 82 -28 97 -28c34 0 45 33 45 47c0 25 -13 29 -62 46c-9 3 -34 12 -41 14l-102 36c-32 11 -128 45 -128 136c0 42 32 142 145 206c-47 28 -66 67 -66 107 c0 65 48 152 186 189c-5 13 -5 35 -5 39c0 17 0 55 23 55c9 0 16 -8 16 -16l-2 -7c-2 -11 -4 -23 -4 -34c0 -13 4 -30 4 -30c28 4 50 4 65 4c37 0 93 0 93 -31zM457 582c-16 5 -22 6 -53 6c-21 0 -29 0 -47 -5c12 -7 24 -7 40 -7c40 0 52 4 60 6zM389 313c-19 5 -22 6 -53 6 c-23 0 -32 0 -58 -6c19 -6 31 -6 50 -6c34 0 47 2 61 6'], + 0xE749: [431,10,668,45,644,'644 402c0 -5 -3 -21 -17 -31c-11 -8 -19 -8 -37 -8h-125c-14 -71 -14 -111 -14 -130c0 -82 18 -139 37 -176c6 -10 8 -14 8 -22c0 -24 -24 -45 -47 -45c-16 0 -29 4 -45 54c-6 22 -11 49 -11 89c0 79 22 170 37 230h-119l-62 -238c-24 -90 -35 -135 -75 -135 c-23 0 -35 16 -35 32c0 7 2 11 3 15c3 4 13 25 19 38c30 60 84 178 115 288h-61c-22 0 -84 0 -135 -70c-6 -9 -7 -11 -18 -11c-4 0 -17 0 -17 12c0 9 39 63 65 86c45 42 73 51 114 51h377c17 0 43 0 43 -29'], + 0xE74A: [441,214,593,50,561,'561 272c0 -146 -136 -282 -264 -282c-69 0 -101 47 -110 62l-52 -204c-7 -32 -15 -62 -51 -62c-16 0 -34 10 -34 32c0 0 0 6 4 21l94 375c35 141 156 227 254 227c88 0 159 -63 159 -169zM480 312c0 72 -39 101 -80 101c-40 0 -90 -29 -126 -82 c-29 -44 -35 -67 -65 -190l-9 -36c0 -13 22 -87 96 -87c31 0 81 16 127 87c31 50 57 161 57 207'], + 0xE74B: [431,10,662,59,638,'638 403c0 -7 -3 -21 -16 -32c-11 -8 -20 -8 -37 -8h-115c30 -45 30 -90 30 -106c0 -153 -144 -267 -270 -267c-102 0 -171 70 -171 163c0 120 120 278 280 278h256c17 0 43 0 43 -28zM425 268c0 76 -52 95 -103 95c-172 0 -190 -208 -190 -238c0 -71 45 -107 99 -107 c38 0 94 20 136 75c49 67 58 157 58 175'], + 0xE74C: [431,12,527,45,582,'582 403c0 -40 -42 -40 -53 -40h-186l-62 -325c-3 -14 -10 -50 -48 -50c-8 0 -33 5 -33 32c0 6 0 7 5 23l99 320h-89c-23 0 -84 0 -135 -70c-6 -9 -7 -11 -18 -11c-4 0 -17 0 -17 12c0 8 37 61 66 87c52 48 84 50 113 50h315c17 0 43 0 43 -28'], + 0xE74D: [442,10,633,47,595,'595 363c0 -20 -10 -143 -78 -248c-20 -31 -88 -125 -192 -125s-182 42 -182 138c0 24 4 60 53 181c8 21 18 45 18 69s-8 35 -25 35c-39 0 -83 -40 -107 -122c-3 -11 -4 -16 -18 -16c-3 0 -17 0 -17 13c0 16 45 153 145 153c52 0 95 -35 95 -86c0 -17 -6 -32 -14 -51 c-43 -111 -53 -149 -53 -187c0 -14 0 -51 29 -76c28 -22 69 -23 80 -23c126 0 216 192 216 261c0 48 -30 73 -40 82c-4 3 -14 11 -14 28c0 25 28 53 54 53c0 0 50 0 50 -79'], + 0xE74E: [694,204,687,70,647,'647 257c0 -136 -157 -262 -328 -269l-42 -168c-5 -21 -6 -24 -21 -24c-3 0 -16 0 -16 12c0 3 9 40 21 87l23 94c-111 4 -214 72 -214 185c0 134 151 261 328 269l57 229c4 17 5 22 20 22c5 0 17 0 17 -13l-59 -239c122 -5 214 -80 214 -185zM390 414 c-171 -16 -247 -157 -247 -257c0 -94 71 -136 148 -140zM574 274c0 95 -72 137 -149 140l-99 -397c162 14 248 148 248 257'], + 0xE74F: [441,204,714,50,662,'662 415c0 -7 -3 -10 -14 -21l-253 -260c23 -75 108 -310 163 -310c18 0 45 14 55 42c3 7 5 12 17 12c5 0 17 0 17 -13c0 -17 -30 -69 -97 -69c-24 0 -99 2 -132 61c-38 66 -71 162 -88 211c-14 -16 -53 -55 -69 -70l-84 -86c-21 -21 -71 -75 -92 -95 c-9 -8 -12 -11 -19 -11c-8 0 -16 8 -16 16c0 6 3 8 10 17l258 264c-46 129 -51 142 -76 195c-14 30 -55 115 -87 115c-15 0 -44 -10 -56 -42c-2 -7 -4 -12 -17 -12c-4 0 -17 0 -17 13c0 14 27 69 98 69c70 0 112 -24 136 -69c32 -60 41 -85 84 -203l242 248 c11 11 13 14 21 14c9 0 16 -7 16 -16'], + 0xE750: [694,204,756,47,718,'718 363c0 -46 -21 -128 -35 -161c-18 -44 -45 -79 -72 -107c-105 -105 -197 -105 -236 -105c-31 -121 -13 -52 -43 -173c-4 -16 -6 -21 -20 -21c-4 0 -16 0 -16 13c0 4 38 157 45 183c-75 4 -196 32 -196 147c0 18 0 41 50 167c11 30 19 49 19 72c0 24 -8 35 -25 35 c-39 0 -83 -40 -107 -122c-3 -11 -4 -16 -18 -16c-3 0 -17 0 -17 13c0 16 45 153 145 153c51 0 95 -34 95 -86c0 -17 -7 -34 -15 -56c-50 -124 -50 -152 -50 -167c0 -67 44 -102 126 -112l163 652c5 18 5 22 20 22c3 0 16 0 16 -12c0 0 0 -5 -3 -15l-162 -649 c171 0 286 176 286 260c0 44 -24 69 -40 83c-4 3 -14 11 -14 28c0 26 28 53 54 53c3 0 50 -1 50 -79'], + 0xE751: [440,10,720,34,680,'680 363c0 -38 -11 -83 -21 -124c-31 -123 -107 -249 -215 -249c-67 0 -109 40 -126 99c-42 -58 -98 -99 -161 -99c-86 0 -123 71 -123 159c0 31 5 63 13 96c16 63 44 125 88 181c5 7 13 10 20 10c4 0 8 -1 11 -3c6 -3 10 -10 10 -17c0 -5 -2 -10 -6 -15 c-40 -50 -76 -105 -90 -162c-5 -18 -7 -36 -7 -53c0 -65 33 -117 97 -117c54 0 103 34 139 82l-1 8c0 28 4 56 11 86c6 24 22 48 44 48c18 0 26 -15 26 -34c0 -6 -1 -13 -3 -20c-8 -31 -19 -62 -33 -92c14 -46 51 -78 105 -78c80 0 145 87 168 176c2 10 4 21 4 31 c0 34 -15 63 -40 83c-9 7 -13 18 -13 29s4 23 14 34c11 12 26 18 39 18c9 0 18 -2 24 -7c20 -16 26 -40 26 -70'], + 0xE752: [451,20,540,47,483,'483 391c0 -17 -18 -32 -32 -32c-8 0 -14 5 -20 9c-45 28 -88 28 -104 28c-101 0 -198 -34 -198 -88c0 -22 15 -41 38 -52c49 20 92 20 106 20c43 0 81 -4 81 -31c0 -37 -59 -37 -91 -37c-29 0 -59 0 -97 15c-68 -35 -85 -84 -85 -107c0 -25 17 -52 57 -67 c36 -14 83 -14 108 -14c106 0 139 17 164 56c3 4 6 8 12 8c8 0 14 -6 14 -13c0 -16 -54 -106 -206 -106c-111 0 -183 57 -183 130c0 63 50 107 87 129c0 0 -39 27 -39 68c0 80 121 144 243 144c15 0 50 0 93 -18c19 -8 52 -22 52 -42zM318 243c-20 4 -25 5 -47 5 c-30 0 -50 -5 -61 -8c18 -4 38 -4 53 -4c37 0 40 1 55 7'], + 0xE753: [704,10,690,47,640,'640 338c0 -5 -4 -15 -13 -15c-5 0 -33 5 -50 8c-40 -152 -151 -341 -284 -341c-76 0 -153 25 -153 120c0 22 5 47 10 69c2 9 16 62 19 77l15 57c6 26 8 33 8 51c0 27 -7 49 -33 49c-39 0 -58 -50 -73 -108c-7 -27 -8 -30 -22 -30c-3 0 -17 0 -17 13c0 6 16 66 36 100 c16 27 40 53 79 53c56 0 106 -37 106 -94c0 -13 -6 -39 -11 -58c-5 -18 -12 -49 -15 -57c-22 -90 -27 -108 -27 -135c0 -32 9 -79 82 -79c46 0 82 41 126 118c36 64 57 147 74 214c-78 22 -188 65 -188 172c0 92 79 182 162 182c103 0 130 -129 130 -211 c0 -11 0 -61 -17 -134l33 -6c15 -3 23 -5 23 -15zM530 549c0 63 -12 127 -61 127c-63 0 -126 -79 -126 -154c0 -97 117 -131 161 -144c13 53 26 113 26 171'], + 0xE754: [431,10,950,45,921,'921 403c0 -33 -31 -40 -51 -40h-28c12 -33 12 -65 12 -71c0 -104 -102 -302 -250 -302c-119 0 -120 128 -120 162c-61 -105 -150 -162 -231 -162c-88 0 -103 83 -103 131c0 121 73 210 99 242c-63 0 -75 0 -106 -15c-31 -16 -49 -36 -62 -55c-7 -9 -8 -11 -19 -11 c-4 0 -17 0 -17 12c0 9 37 61 64 86c49 45 79 51 115 51h654c16 0 43 0 43 -28zM820 292c0 3 -1 37 -13 71h-516c-89 -99 -103 -176 -103 -213c0 -18 4 -92 76 -92c94 0 199 89 238 223c3 10 4 16 18 16c4 0 17 0 17 -13c0 -3 -1 -4 -2 -10c-7 -28 -11 -59 -11 -89 c0 -68 21 -127 91 -127c108 0 205 129 205 234'], + 0xE755: [441,194,593,96,561,'561 272c0 -145 -135 -282 -265 -282c-47 0 -111 19 -143 98c-8 -39 -18 -88 -18 -127c0 -24 0 -47 32 -59c26 -9 64 -9 116 -9c111 0 161 0 161 -55c0 -32 -10 -32 -20 -32c-5 0 -17 0 -17 14c0 0 0 4 -2 5c-5 5 -38 5 -41 5c-31 0 -70 -5 -112 -5 c-136 0 -156 44 -156 108c0 23 2 48 12 105c12 63 26 126 43 188c36 128 151 215 251 215c88 0 159 -63 159 -169zM480 312c0 72 -39 101 -80 101c-39 0 -93 -28 -133 -93c-35 -59 -54 -156 -54 -196c0 -69 36 -106 84 -106c25 0 77 12 126 87c31 50 57 161 57 207'], + 0xE756: [441,107,439,50,463,'463 408c0 -7 -6 -20 -21 -20c-4 0 -6 1 -12 4c-30 12 -55 21 -89 21c-118 0 -230 -75 -230 -163c0 -61 46 -83 120 -118c30 -15 105 -50 119 -61c32 -25 32 -59 32 -66c0 -48 -43 -112 -108 -112c-16 0 -70 7 -70 26c0 3 4 14 14 14c3 0 5 -1 11 -4c19 -7 44 -8 44 -8 c30 0 43 29 43 48c0 28 -17 37 -41 48c-31 16 -66 34 -93 46c-55 26 -132 62 -132 153c0 114 131 225 299 225c4 0 114 0 114 -33'], + 0xE757: [441,216,751,69,695,'695 295c0 -158 -165 -305 -345 -305c-11 0 -23 0 -34 1c-20 -119 -29 -170 -36 -185c-8 -15 -28 -22 -39 -22s-34 5 -34 32c0 9 6 28 56 183c-129 28 -194 105 -194 194c0 43 26 147 82 216c19 22 23 22 32 22c3 0 16 0 16 -12c0 -4 -1 -6 -8 -13 c-81 -90 -87 -203 -87 -203c0 -74 70 -124 180 -139l41 126c28 75 101 251 239 251c78 0 131 -57 131 -146zM659 275c0 52 -37 98 -106 98c-50 0 -103 -28 -148 -89c-48 -65 -56 -110 -76 -225c9 -1 23 -1 32 -1c172 0 298 116 298 217'], + 0xE758: [714,20,610,60,634,'634 445c0 -142 -105 -465 -364 -465c-156 0 -210 114 -210 183c0 40 14 81 20 98c36 90 152 195 292 195c94 0 139 -60 153 -118c20 80 25 115 25 158c0 142 -89 189 -164 189c-17 0 -99 0 -149 -75c19 -2 39 -11 39 -38c0 -24 -21 -55 -56 -55s-40 28 -40 36 c0 31 45 161 208 161c134 0 246 -98 246 -269zM505 292c0 60 -32 136 -129 136c-113 0 -175 -92 -193 -138c-10 -25 -37 -123 -37 -162c0 -31 13 -116 126 -116c168 0 233 213 233 280'], + 0xE759: [713,0,859,57,810,'810 21c0 -13 -7 -21 -20 -21c-18 0 -39 2 -57 3l-59 1c-29 0 -100 -4 -129 -4c-13 0 -16 10 -16 14c0 22 14 22 26 22c59 0 65 16 69 26l-24 166h-286l-80 -124c-5 -9 -15 -26 -15 -38c0 -27 36 -29 44 -30c4 0 17 -1 17 -14c0 -22 -15 -22 -20 -22c-30 0 -71 4 -103 4 c-27 0 -60 -4 -86 -4c-5 0 -14 4 -14 15c0 20 13 20 23 21c59 4 91 30 126 84l367 570c9 14 15 23 34 23s21 -7 24 -28l88 -617c3 -24 5 -32 63 -32c16 0 28 0 28 -15zM595 264l-47 327l-210 -327h257'], + 0xE75A: [683,0,863,72,837,'837 541c0 -86 -101 -162 -222 -184c106 -11 171 -72 171 -143c0 -99 -129 -214 -297 -214h-387c-18 0 -30 0 -30 15c0 21 13 21 30 21c77 0 79 8 88 42l133 531c4 15 4 22 4 22c0 10 -2 12 -23 14c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 13 22 32 22h364 c130 0 207 -66 207 -142zM739 542c0 38 -23 105 -125 105h-152c-42 0 -43 -3 -51 -34l-61 -244h164c134 0 225 92 225 173zM685 221c0 58 -36 120 -130 120h-212l-69 -274c-4 -15 -4 -21 -4 -21c0 -9 1 -10 32 -10h161c121 0 222 86 222 185'], + 0xE75B: [679,0,839,69,841,'841 649l-18 -174c-2 -17 -3 -26 -18 -26c-14 0 -17 9 -17 17c0 5 4 35 4 61c0 89 -33 116 -164 116h-163c-42 0 -43 -3 -51 -34l-60 -238h105c85 0 115 13 136 91c6 21 7 26 20 26c9 0 17 -4 17 -14c0 0 0 -3 -3 -15l-55 -219c-4 -17 -5 -22 -19 -22 c-16 0 -17 14 -17 14s0 3 3 12c4 17 7 34 7 45c0 33 -12 46 -91 46h-112l-67 -268c-4 -15 -4 -21 -4 -21c0 -9 1 -10 32 -10h170c163 0 214 50 279 194c12 26 13 27 15 29c4 4 11 4 11 4c13 0 17 -8 17 -14c0 0 0 -5 -6 -18l-94 -213c-8 -18 -9 -18 -34 -18h-565 c-18 0 -30 0 -30 14c0 22 12 22 30 22c78 0 79 7 89 46l131 523c1 5 4 15 4 22c0 10 -2 12 -22 14c-18 2 -22 2 -38 2c-22 0 -33 0 -33 14c0 22 12 22 32 22h550c25 0 32 0 29 -30'], + 0xE75C: [683,0,778,80,797,'797 672c0 -13 -6 -20 -14 -28l-583 -604h191c174 0 225 70 271 207c7 22 9 26 22 26c16 0 16 -14 16 -14s0 -3 -4 -16l-72 -223c-6 -19 -7 -20 -33 -20h-484c-18 0 -27 0 -27 11c0 16 10 26 17 33l583 603h-180c-129 0 -207 -37 -255 -178c-3 -10 -5 -16 -18 -16 s-17 9 -17 14c0 3 0 4 4 16l56 180c6 19 7 20 33 20h467c19 0 27 0 27 -11'], + 0xE75D: [683,0,936,69,960,'960 669c0 -22 -12 -22 -34 -22c-74 0 -76 -8 -85 -45l-132 -527c-1 -6 -4 -16 -4 -22c0 -10 0 -12 22 -15c18 -2 22 -2 38 -2c23 0 33 0 33 -15c0 -21 -16 -21 -21 -21c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-9 0 -16 5 -16 15c0 21 13 21 30 21 c78 0 80 8 88 42l65 259h-335l-66 -262c-4 -15 -4 -22 -4 -22c0 -10 0 -12 22 -15c18 -2 22 -2 38 -2c23 0 33 0 33 -15c0 -21 -16 -21 -21 -21c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-9 0 -16 5 -16 15c0 21 13 21 30 21c78 0 80 8 88 42l133 531 c4 15 4 22 4 22c0 10 -2 12 -23 14c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 15 22 21 22c19 0 43 -2 63 -3c17 -1 52 -1 69 -1c29 0 102 4 131 4c13 0 16 -10 16 -14c0 -22 -13 -22 -30 -22c-77 0 -79 -8 -88 -42l-58 -232h335l59 236c4 15 4 22 4 22c0 10 -2 12 -23 14 c-18 2 -38 2 -38 2c-20 0 -32 0 -32 14c0 22 15 22 21 22c19 0 43 -2 63 -3c17 -1 52 -1 69 -1c29 0 102 4 131 4c13 0 16 -10 16 -14'], + 0xE75E: [683,0,506,64,536,'536 668c0 -21 -12 -21 -37 -21c-75 0 -77 -9 -86 -43l-133 -529c-4 -15 -4 -22 -4 -22c0 -9 0 -13 23 -15c20 -2 43 -2 43 -2c20 0 32 0 32 -14c0 -22 -15 -22 -21 -22c-22 0 -47 3 -69 3l-69 1c-30 0 -105 -4 -135 -4c-16 0 -16 14 -16 14c0 22 10 22 37 22 c75 0 78 10 86 43l133 531c2 8 4 15 4 21c0 11 -7 12 -27 14c-17 2 -38 2 -38 2c-22 0 -33 0 -33 14c0 22 15 22 21 22c22 0 47 -3 69 -3l69 -1l68 1c21 0 46 3 67 3c9 0 16 -6 16 -15'], + 0xE75F: [683,0,960,69,979,'979 669c0 -20 -12 -21 -23 -22c-71 -6 -133 -50 -265 -143l-101 -71c-23 -16 -24 -19 -24 -19l6 -12l171 -333c17 -32 48 -33 66 -33c10 0 23 0 23 -15c0 -14 -7 -21 -20 -21c-28 0 -68 4 -98 4c-28 0 -100 -4 -128 -4c-16 0 -17 14 -17 14c0 22 14 22 26 22 c18 0 46 3 46 26c0 5 0 6 -7 19l-145 281l-166 -117c-37 -147 -47 -184 -47 -192c0 -10 0 -13 23 -15c18 -2 38 -2 38 -2c20 0 32 0 32 -14c0 -22 -15 -22 -21 -22c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-16 0 -16 14 -16 14c0 22 12 22 30 22 c78 0 80 8 88 42l133 531c4 15 4 22 4 22c0 10 -2 12 -22 14c-18 2 -22 2 -38 2c-22 0 -33 0 -33 14c0 22 15 22 21 22c19 0 43 -2 63 -3c17 -1 52 -1 69 -1c29 0 102 4 131 4c10 0 16 -6 16 -15c0 -21 -14 -21 -30 -21c-78 0 -79 -8 -88 -42l-79 -315l417 294 c13 9 44 31 44 49c0 11 -13 13 -25 14c-15 1 -15 14 -15 14c0 22 15 22 21 22c27 0 94 -4 121 -4c22 0 48 3 69 3c6 0 13 -5 13 -13'], + 0xE760: [683,0,1089,74,1140,'1140 668c0 -21 -13 -21 -34 -21c-74 0 -76 -8 -85 -45l-132 -527c-1 -6 -4 -16 -4 -22c0 -10 0 -13 23 -15c18 -2 38 -2 38 -2c20 0 32 0 32 -14c0 -22 -15 -22 -21 -22c-28 0 -99 4 -127 4l-63 -1c-20 0 -43 -3 -62 -3c-16 0 -16 14 -16 14c0 22 12 22 30 22 c78 0 80 8 88 42l141 566l-1 1l-420 -623c-7 -11 -15 -22 -29 -22c-15 0 -17 9 -20 27l-107 608h-1l-133 -532c-4 -16 -4 -21 -4 -25c0 -14 0 -40 64 -42c9 0 22 -1 22 -14c0 -22 -15 -22 -20 -22c-24 0 -82 4 -106 4c-32 0 -74 -4 -104 -4c-14 0 -15 14 -15 14 c0 21 13 22 21 22c80 3 95 37 104 71l126 502c4 15 4 22 4 22c0 10 -2 12 -22 14c-18 2 -22 2 -38 2c-22 0 -34 0 -34 14c0 22 13 22 33 22h143c30 0 30 -1 35 -27l99 -563l386 570c13 19 14 20 43 20h136c18 0 30 0 30 -15'], + 0xE761: [683,0,905,69,960,'960 669c0 -21 -15 -22 -20 -22c-80 -2 -96 -35 -106 -73l-139 -553c-5 -18 -5 -21 -21 -21c-10 0 -14 1 -22 17l-292 598l-128 -512c-4 -16 -4 -21 -4 -25c0 -14 0 -40 63 -42c11 0 23 -1 23 -15c0 -16 -10 -21 -20 -21c-24 0 -82 4 -106 4c-34 0 -71 -4 -104 -4 c-7 0 -15 4 -15 15c0 20 14 21 21 21c78 3 95 33 104 71l134 535c-21 4 -43 5 -64 5s-33 0 -33 14c0 22 13 22 32 22h137c24 0 26 0 34 -17l254 -520l109 436c3 11 4 16 4 24c0 25 -17 40 -64 41c-9 0 -22 1 -22 14c0 22 15 22 20 22c24 0 82 -4 106 -4c34 0 71 4 104 4 c10 0 15 -8 15 -14'], + 0xE762: [441,10,564,62,531,'531 266c0 -144 -144 -276 -287 -276c-109 0 -182 75 -182 175c0 137 140 276 288 276c98 0 181 -64 181 -175zM449 302c0 74 -46 111 -100 111c-45 0 -103 -26 -146 -88c-39 -57 -58 -155 -58 -196c0 -79 50 -111 100 -111s110 32 148 91c44 70 56 169 56 193'], + 0xE763: [703,20,869,69,829,'829 425c0 -227 -231 -445 -469 -445c-172 0 -291 113 -291 274c0 225 231 449 470 449c177 0 290 -121 290 -278zM731 460c0 145 -96 211 -200 211c-89 0 -186 -49 -253 -131c-92 -114 -106 -256 -106 -307c0 -148 90 -220 196 -220c78 0 169 41 239 121 c93 107 124 253 124 326'], + 0xE764: [683,0,727,71,834,'834 527c0 -109 -143 -217 -312 -217h-181l-59 -235c-4 -15 -4 -22 -4 -22c0 -10 0 -13 23 -15c18 -2 38 -2 38 -2c20 0 32 0 32 -14c0 -22 -15 -22 -21 -22c-19 0 -44 2 -64 3c-17 1 -52 1 -69 1c-29 0 -101 -4 -130 -4c-16 0 -16 14 -16 14c0 22 12 22 30 22 c78 0 79 7 89 46l132 527c4 15 4 22 4 22c0 10 -2 12 -22 14c-18 2 -22 2 -38 2c-22 0 -33 0 -33 14c0 22 12 22 32 22h350c137 0 219 -72 219 -156zM732 548c0 71 -58 99 -151 99h-117c-42 0 -43 -3 -51 -34l-68 -271h160c72 0 129 19 165 51c50 45 62 124 62 155'], + 0xE765: [676,0,675,43,790,'790 662l-27 -191c-2 -16 -4 -25 -19 -25c-10 0 -17 5 -17 15l2 11c7 52 7 65 7 81c0 36 -2 65 -47 79c-25 8 -51 8 -112 8c-20 0 -55 0 -60 -1c-22 -2 -24 -5 -31 -34l-132 -525c-4 -14 -4 -16 -4 -23c0 -12 2 -16 36 -19c19 -1 39 -2 58 -2c31 0 41 0 41 -14 c0 -22 -15 -22 -23 -22c-27 0 -57 2 -84 3l-90 1l-86 -1c-28 0 -58 -3 -86 -3c-15 0 -17 11 -17 14c0 22 9 22 45 22c105 0 108 10 117 47l132 526c4 15 4 21 4 21c0 9 -1 10 -31 10h-42c-152 0 -185 -10 -243 -170c-6 -19 -8 -24 -21 -24c-15 0 -17 10 -17 14 c0 5 4 14 5 18l63 177c7 21 9 21 34 21h615c18 0 30 0 30 -14'], + 0xE766: [683,0,937,50,933,'933 668c0 -20 -12 -20 -25 -21c-90 -5 -129 -44 -257 -170l-95 -95l161 -318c9 -17 14 -28 72 -28c16 0 29 0 29 -14c0 -22 -16 -22 -21 -22c-16 0 -37 2 -54 3c-18 1 -42 1 -59 1l-65 -1c-21 0 -46 -3 -67 -3c-16 0 -17 14 -17 14c0 21 13 21 22 22c35 3 53 19 53 25 c0 0 -1 3 -6 13l-121 237l-203 -199c-22 -22 -35 -35 -35 -51c0 -21 21 -24 31 -25c6 0 18 -1 18 -15c0 -21 -16 -21 -21 -21c-17 0 -39 2 -57 3c-17 1 -42 1 -59 1c-30 0 -64 -4 -93 -4c-11 0 -14 10 -14 14c0 21 11 21 25 22c90 4 131 46 253 167l84 82l56 56l-140 276 c-10 20 -15 30 -73 30c-16 0 -29 0 -29 14c0 22 16 22 21 22c16 0 37 -2 54 -3c18 -1 42 -1 59 -1l65 1c21 0 46 3 67 3c16 0 17 -14 17 -14c0 -21 -14 -22 -21 -22c-34 -2 -53 -18 -53 -25c0 -4 3 -11 5 -14l101 -196l172 169c10 10 25 26 25 41c0 22 -25 24 -34 25 c-15 1 -15 14 -15 14c0 19 12 22 20 22c26 0 90 -4 116 -4c30 0 65 4 94 4c3 0 14 -3 14 -15'], + 0xE767: [716,0,1036,104,943,'943 28c0 -16 -7 -28 -24 -28c-20 0 -43 3 -63 3l-64 1l-71 -1c-22 0 -46 -3 -67 -3c-11 0 -18 7 -18 17c0 28 16 28 31 28c5 0 68 0 68 22c0 10 -20 110 -23 128c-3 12 -4 17 -6 29h-303c-19 0 -20 -1 -25 -7l-73 -107c-7 -10 -19 -27 -19 -39c0 -24 39 -26 47 -26 c4 0 19 -1 19 -17c0 -28 -17 -28 -24 -28c-18 0 -39 3 -57 3s-36 1 -55 1c-17 0 -34 -1 -51 -1c-14 0 -31 -3 -45 -3c-4 0 -16 3 -16 17c0 0 0 27 19 28c65 3 100 19 142 80l392 568c10 15 16 23 40 23c22 0 26 -6 30 -27l115 -615c4 -22 5 -29 71 -29c14 0 30 0 30 -17z M698 269l-61 324l-223 -324h284'], + 0xE768: [683,0,1037,121,961,'961 537c0 -100 -141 -166 -240 -179c136 -17 194 -84 194 -146c0 -100 -146 -212 -326 -212h-435c-17 0 -33 0 -33 17c0 28 16 28 42 28c76 0 77 8 85 38l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-24 0 -37 0 -37 17c0 28 16 28 35 28h410c136 0 235 -62 235 -146z M854 534c0 53 -47 104 -146 104h-183c-42 0 -42 -2 -50 -33l-58 -233h189c140 0 248 81 248 162zM805 216c0 63 -51 122 -153 122h-244l-68 -273c-2 -8 -2 -10 -3 -18c10 -2 24 -2 32 -2h193c124 0 243 74 243 171'], + 0xE769: [679,0,1007,117,964,'964 661l-2 -15l-16 -178c-2 -19 -3 -28 -22 -28c-11 0 -21 5 -21 19s3 32 3 47c0 104 -41 128 -184 128h-194c-42 0 -42 -2 -50 -33l-57 -226h122c93 0 125 13 148 95c4 15 6 22 23 22s21 -11 21 -17c0 -5 -2 -11 -3 -15l-57 -224c-4 -17 -6 -23 -23 -23 c-20 0 -20 17 -20 17s1 6 1 9c6 25 6 35 6 42c0 32 -3 49 -99 49h-130l-66 -265c-2 -8 -2 -10 -3 -18c10 -2 24 -2 32 -2h201c178 0 235 46 307 200c11 25 12 27 27 27c17 0 21 -11 21 -17c0 -5 -4 -13 -6 -17l-101 -219c-9 -19 -10 -19 -35 -19h-637c-17 0 -33 0 -33 17 c0 28 16 28 41 28c77 0 78 8 86 38l130 520c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 15 28 35 28h620c18 0 33 0 33 -18'], + 0xE76A: [683,0,943,129,917,'917 670c0 -17 -8 -25 -18 -34l-629 -588h216c179 0 239 59 292 211c6 16 8 22 24 22c4 0 21 0 21 -17c0 -9 -69 -212 -79 -240c-8 -23 -9 -24 -35 -24h-551c-21 0 -29 0 -29 14c0 13 6 25 16 34l633 590h-205c-130 0 -221 -31 -273 -179c-4 -14 -11 -15 -21 -15 c-17 0 -21 11 -21 17c0 3 4 14 5 18l57 182c7 22 10 22 35 22h533c19 0 29 0 29 -13'], + 0xE76B: [683,0,1110,117,1089,'1089 666c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-131 -526c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17 c0 28 16 28 41 28c76 0 78 8 86 38l63 250h-381l-65 -261c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17c0 28 16 28 41 28c77 0 78 8 86 38 l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 18 28 25 28c22 0 47 -3 70 -3l74 -1l73 1c22 0 46 3 67 3c17 0 18 -17 18 -17c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-55 -220h381l57 229c3 11 3 13 3 25c-21 6 -54 6 -64 6 c-25 0 -37 0 -37 17c0 28 18 28 25 28c22 0 47 -3 70 -3l74 -1l73 1c22 0 46 3 67 3c17 0 18 -17 18 -17'], + 0xE76C: [683,0,627,112,610,'610 666c0 -28 -14 -28 -41 -28c-82 0 -83 -7 -92 -41l-130 -519c-2 -6 -4 -14 -4 -19c0 -9 1 -10 29 -12c17 -2 27 -2 43 -2c20 0 35 0 35 -17c0 -28 -19 -28 -25 -28c-23 0 -49 3 -72 3l-77 1l-77 -1c-22 0 -47 -3 -69 -3c-10 0 -18 6 -18 17c0 28 14 28 41 28 c82 0 83 7 92 41l131 522c2 9 2 11 2 16c0 9 -1 10 -28 12c-20 2 -39 2 -43 2c-21 0 -36 0 -36 17c0 28 20 28 26 28c23 0 49 -3 72 -3l77 -1l77 1c22 0 47 3 69 3c12 0 18 -9 18 -17'], + 0xE76D: [683,0,1139,117,1112,'1112 666c0 -27 -15 -27 -27 -28c-42 -2 -81 -17 -112 -31c-46 -22 -106 -61 -273 -167c-14 -9 -39 -27 -39 -27s3 -7 6 -12l201 -324c15 -25 35 -32 74 -32c11 0 28 0 28 -17c0 -16 -8 -28 -24 -28c0 0 -42 3 -57 3c-18 0 -37 1 -55 1l-70 -1c-22 0 -46 -3 -67 -3 c-12 0 -18 9 -18 17c0 28 17 28 29 28c7 0 44 0 44 19c0 4 0 6 -10 20l-159 259c-9 13 -11 14 -11 14s-10 -6 -12 -7l-160 -102c-11 -8 -12 -9 -14 -14c-1 -3 -24 -94 -25 -101c-6 -25 -18 -71 -18 -75c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17 c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17c0 28 16 28 41 28c77 0 78 8 86 38l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 18 28 25 28c22 0 47 -3 70 -3l74 -1l73 1c22 0 46 3 67 3 c17 0 18 -17 18 -17c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-76 -305l458 292c11 8 13 8 25 18c9 9 18 16 18 24c0 4 0 10 -22 11c-18 1 -18 17 -18 17c0 15 6 28 24 28c20 0 43 -3 64 -3l64 -1c22 0 51 0 85 4c3 -1 13 -3 13 -17'], + 0xE76E: [683,0,1284,123,1291,'1291 666c0 -7 -3 -19 -9 -25c-4 -3 -6 -3 -32 -3c-76 0 -78 -8 -86 -40l-131 -526c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -69 3l-69 1l-68 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17 c0 28 16 28 41 28c76 0 78 8 86 38l139 556l-1 1l-447 -617c-14 -19 -26 -23 -36 -23c-19 0 -22 12 -26 29l-137 603h-1l-131 -526c-2 -10 -4 -16 -4 -23c0 -24 19 -37 69 -38c11 0 26 0 26 -17c0 -21 -11 -28 -24 -28c-18 0 -39 3 -57 3c-20 0 -39 1 -59 1 c-19 0 -38 -1 -57 -1c-18 0 -39 -3 -57 -3c-9 0 -17 8 -17 17c0 27 17 28 25 28c93 2 102 40 109 67l124 495c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 15 28 35 28h160c27 0 33 -1 39 -27l128 -565l415 572c15 20 26 20 48 20h151c17 0 32 0 32 -17'], + 0xE76F: [683,0,1076,117,1089,'1089 666c0 -27 -18 -28 -26 -28c-91 -3 -101 -41 -108 -69l-136 -543c-5 -21 -6 -26 -26 -26c-11 0 -17 0 -27 18l-344 590l-125 -502c-2 -10 -4 -16 -4 -23c0 -24 19 -37 69 -38c11 0 26 0 26 -17c0 -21 -11 -28 -24 -28c-18 0 -39 3 -57 3c-20 0 -39 1 -59 1 c-19 0 -38 -1 -57 -1c-18 0 -39 -3 -57 -3c-9 0 -17 8 -17 17c0 27 17 28 25 28c93 2 102 40 109 67l131 522c-25 4 -65 4 -68 4c-24 0 -37 0 -37 17c0 28 15 28 35 28h155c24 0 26 0 36 -17l300 -515l108 430c1 6 3 11 3 18c0 17 -4 38 -70 39c-10 0 -25 0 -25 17 c0 28 17 28 24 28c18 0 39 -3 57 -3c20 0 39 -1 59 -1c19 0 38 1 56 1s39 3 57 3c14 0 17 -13 17 -17'], + 0xE770: [442,11,703,106,632,'632 260c0 -134 -149 -271 -316 -271c-127 0 -210 80 -210 182c0 135 149 271 316 271c128 0 210 -82 210 -182zM540 291c0 89 -65 117 -120 117c-57 0 -116 -30 -154 -74c-55 -66 -68 -164 -68 -194c0 -94 71 -117 120 -117s115 24 161 84c49 63 61 156 61 184'], + 0xE771: [705,22,1048,114,967,'967 417c0 -223 -248 -439 -517 -439c-204 0 -336 124 -336 285c0 218 245 442 518 442c204 0 335 -127 335 -288zM859 446c0 151 -110 222 -237 222c-214 0 -394 -189 -394 -419c0 -180 131 -233 232 -233c107 0 215 56 284 136c91 107 115 234 115 294'], + 0xE772: [683,0,875,119,957,'957 521c0 -124 -180 -218 -334 -218h-218l-57 -231c-3 -10 -3 -14 -3 -14c0 -8 1 -9 26 -11c17 -2 43 -2 43 -2c19 0 33 0 33 -17c0 -28 -19 -28 -25 -28c-22 0 -47 3 -70 3l-74 1l-74 -1c-22 0 -46 -3 -67 -3c-11 0 -18 9 -18 17c0 28 16 28 41 28c77 0 78 8 86 38 l131 524c3 11 3 13 3 25c-21 6 -54 6 -64 6c-25 0 -37 0 -37 17c0 28 15 28 35 28h394c145 0 249 -69 249 -162zM846 535c0 76 -69 103 -171 103h-148c-42 0 -42 -2 -50 -33l-66 -263h189c40 0 118 4 175 45s71 119 71 148'], + 0xE773: [675,0,832,86,927,'927 658c0 -4 0 -6 -2 -16l-25 -179c-2 -18 -4 -27 -23 -27c-15 0 -21 8 -21 18l1 9c7 48 7 67 7 74c0 62 -14 93 -126 93h-107c-42 0 -42 -2 -50 -33l-129 -513c-4 -14 -4 -16 -4 -21c0 -11 6 -12 14 -13c26 -5 53 -5 79 -5h22c17 0 32 0 32 -17c0 -28 -19 -28 -26 -28 c-30 0 -62 3 -92 3l-97 1l-93 -1c-30 0 -62 -3 -92 -3c-16 0 -20 11 -20 17c0 7 4 18 9 23c5 4 6 5 27 5h22c105 0 108 10 116 42l134 535v6c-10 2 -24 2 -32 2h-108c-136 0 -165 -48 -210 -167c-9 -24 -10 -27 -26 -27c-17 0 -21 11 -21 17c0 0 5 15 6 17l66 184 c8 21 9 21 35 21h701c17 0 33 0 33 -17'], + 0xE774: [683,0,1113,97,1058,'1058 666c0 -10 -6 -27 -20 -28c-60 -2 -113 -13 -173 -67l-214 -190l186 -311c9 -14 15 -25 80 -25c18 0 33 0 33 -17c0 -16 -7 -28 -24 -28c-20 0 -43 3 -63 3l-64 1l-70 -1c-23 0 -49 -3 -72 -3c-10 0 -18 6 -18 17c0 27 17 28 23 28c36 2 53 15 53 19l-6 12l-140 232 l-236 -213c-2 -3 -16 -19 -16 -30c0 -6 4 -18 32 -20c4 0 19 -1 19 -17c0 -21 -10 -28 -24 -28c-20 0 -42 3 -62 3c-21 0 -42 1 -64 1c-17 0 -35 -1 -52 -1s-36 -3 -53 -3c-7 0 -16 6 -16 17c0 0 1 27 19 28c95 3 134 34 175 68c4 2 13 8 16 11l242 219l-161 269 c-9 15 -15 26 -81 26c-18 0 -33 0 -33 17c0 16 7 28 24 28c20 0 42 -3 63 -3l64 -1l70 1c23 0 49 3 72 3c8 0 18 -5 18 -17c0 -27 -17 -28 -23 -28c-18 -1 -38 -5 -54 -18l122 -204l167 151c32 29 41 37 41 51c0 15 -18 19 -32 20c-8 0 -19 3 -19 17c0 28 17 28 24 28 c19 0 42 -3 61 -3c21 0 42 -1 64 -1c17 0 35 1 52 1s37 3 53 3c9 0 17 -8 17 -17'], + 0xE775: [683,30,954,72,887,'887 673c0 0 0 -3 -10 -14l-537 -670c-13 -16 -23 -19 -35 -19c-20 0 -22 5 -28 23l-201 666c-4 11 -4 14 -4 14c3 10 11 10 27 10h767c16 0 24 0 21 -10zM792 603h-593l162 -536h1'], + 0xE776: [683,33,1153,119,1039,'1039 672c-1 -3 -1 -4 -11 -15l-580 -668c-15 -17 -23 -22 -45 -22c-23 0 -28 7 -34 22l-246 668c-4 11 -4 12 -3 15c3 11 12 11 28 11h869c16 0 25 0 22 -11zM922 594h-654l194 -529'], + 0xE777: [678,0,842,106,960,'960 511c0 -37 -9 -39 -42 -39c-17 0 -41 0 -42 24c-4 93 -36 115 -169 115h-162c-9 0 -19 0 -26 -1l-135 -542c16 0 32 -1 48 -1h50c17 0 40 0 40 -25c0 -5 -4 -24 -9 -31c-8 -11 -18 -11 -28 -11c-29 0 -61 3 -91 3l-97 1l-86 -1c-26 0 -54 -3 -80 -3 c-13 0 -25 11 -25 25c0 5 4 26 10 34c8 8 15 8 34 8h33l50 2l135 541c-11 1 -26 1 -37 1h-33c-14 0 -40 0 -40 25c0 0 4 25 11 34c8 8 15 8 34 8h617c34 0 40 -6 40 -39v-128'], + 0xE778: [715,0,1275,111,1171,'1171 21c-3 -21 -18 -21 -37 -21h-995c-19 0 -28 0 -28 13c0 6 4 11 12 20l584 653c26 29 48 29 69 29h78c29 0 44 -2 56 -33zM949 131l-191 484l-434 -484h625'], + 0xE779: [705,19,1142,96,1082,'1082 420c0 -194 -184 -439 -582 -439c-251 0 -404 99 -404 280c0 184 179 444 584 444c278 0 402 -123 402 -285zM935 437c0 163 -130 212 -269 212c-360 0 -423 -305 -423 -403c0 -153 120 -206 271 -206c379 0 421 319 421 397zM861 419c0 0 -3 -14 -4 -16l-32 -129 c-7 -29 -14 -29 -43 -29c-18 0 -43 0 -43 25c0 0 1 7 2 9h-335c-2 -34 -23 -34 -44 -34c-18 0 -43 0 -43 25c0 4 38 154 40 160c7 14 17 14 40 14c16 0 42 0 42 -25c0 -3 -1 -6 -2 -9h335c2 34 23 34 45 34c16 0 42 0 42 -25'], + 0xE77A: [715,0,1067,92,990,'990 42c0 -8 -2 -42 -35 -42l-68 3l-74 1l-79 -1c-26 0 -54 -3 -80 -3c-14 0 -25 11 -25 25c0 0 2 24 11 33c6 6 7 7 32 9h12l52 2l-88 512l-341 -509c17 -4 34 -5 51 -5c11 0 35 0 35 -25c0 -12 -3 -42 -35 -42c-21 0 -45 3 -66 3l-69 1c-18 0 -37 -1 -54 -1 s-36 -3 -53 -3c-11 0 -24 11 -24 25c0 4 4 24 10 31c7 11 14 11 32 11c66 0 75 14 87 32l394 586c20 30 36 30 60 30h72c31 0 41 -3 47 -36l102 -594l2 -14c2 -4 11 -4 42 -4c29 0 31 0 37 -3c11 -7 13 -19 13 -22'], + 0xE77B: [669,0,1105,111,1079,'1079 643c0 -10 -17 -108 -20 -126c-5 -30 -14 -30 -43 -30c-20 0 -42 0 -42 26c0 8 2 26 2 34l-70 2h-494l-72 -2c-13 -1 -21 -22 -25 -35c-10 -25 -14 -25 -44 -25c-19 0 -42 0 -42 25c0 6 43 132 47 142c8 15 19 15 38 15h725c17 0 40 0 40 -26zM979 164 c0 -9 -49 -150 -49 -150c-7 -14 -18 -14 -38 -14h-741c-14 0 -40 0 -40 25c0 0 0 4 12 71c5 33 5 38 11 70c4 23 18 23 42 23c20 0 42 0 42 -26c0 -10 -3 -6 -3 -41l75 -2h499l74 2c14 2 20 13 30 42c9 25 15 25 44 25c19 0 42 0 42 -25zM906 435c0 -3 -43 -178 -48 -187 c-7 -13 -19 -13 -38 -13c-17 0 -42 0 -42 26c0 7 4 21 6 27h-393c-12 -50 -13 -53 -50 -53c-17 0 -42 0 -42 26c0 3 43 178 48 187c7 13 19 13 38 13c17 0 42 0 42 -26c0 -7 -4 -21 -6 -27h393c12 50 13 53 50 53c17 0 42 0 42 -26'], + 0xE77C: [678,0,1259,106,1248,'1248 653c0 0 -3 -25 -11 -34c-8 -8 -15 -8 -34 -8h-32c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17l-131 -525c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -5 -5 -25 -9 -30c-7 -12 -18 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3 c-13 0 -25 11 -25 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l135 542h-451l-135 -543c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -5 -5 -25 -9 -30c-7 -12 -18 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3c-13 0 -25 11 -25 25c0 4 3 25 11 33 c8 9 13 9 33 9h33l50 2l135 541c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 6 3 26 10 34c8 8 15 8 34 8h905c14 0 40 0 40 -25'], + 0xE77D: [686,0,1160,119,1125,'1125 519c0 -37 -9 -39 -42 -39c-28 0 -39 1 -42 32c-4 43 -33 80 -88 93s-153 14 -174 14h-281l206 -252c10 -13 13 -16 13 -24c0 -13 -9 -19 -21 -27l-348 -233h286c55 0 110 2 164 10c76 12 133 51 166 109c11 20 14 20 42 20c19 0 42 0 42 -25c0 -7 0 -8 -61 -134 l-23 -49c-8 -14 -17 -14 -38 -14h-767c-14 0 -40 0 -40 25c0 13 8 18 20 26l396 265l-249 305c-10 12 -12 14 -12 23c0 0 3 25 11 33c8 9 13 9 33 9h767c34 0 40 -6 40 -39v-128'], + 0xE77E: [705,0,913,73,1043,'1043 580c0 -56 -23 -56 -57 -56c-29 0 -42 0 -42 19c0 0 1 7 1 10c0 27 -68 27 -101 27c-145 0 -236 -128 -264 -240l-68 -272c16 0 32 -1 48 -1h50c17 0 40 0 40 -25c0 -4 -4 -24 -9 -31c-8 -11 -18 -11 -28 -11c-32 0 -66 3 -98 3l-95 1l-98 -1c-30 0 -62 -3 -91 -3 c-15 0 -26 11 -26 25c0 4 3 26 10 34c8 8 15 8 34 8h50c20 0 43 1 62 2l68 274c6 25 10 41 10 70c0 18 -2 78 -39 122c-39 45 -91 45 -116 45c-104 0 -111 -18 -116 -33c-9 -23 -24 -23 -53 -23s-42 0 -42 19c0 8 14 70 83 114c77 48 154 48 170 48c140 0 207 -112 208 -242 c47 91 165 242 331 242c83 0 178 -37 178 -125'], + 0xE77F: [686,0,1033,70,962,'962 365c0 -18 -7 -54 -46 -88c-102 -89 -303 -102 -376 -106l-25 -103c16 0 32 -1 48 -1h50c17 0 40 0 40 -25c0 -5 -4 -24 -9 -31c-8 -11 -18 -11 -28 -11c-31 0 -64 3 -95 3l-90 1l-95 -1c-28 0 -58 -3 -85 -3c-15 0 -26 11 -26 25c0 6 3 26 10 34c8 8 15 8 34 8h50 c20 0 43 1 62 2l25 102c-63 4 -136 8 -209 33c-72 24 -127 59 -127 117c0 128 241 187 394 193c25 1 27 3 27 3s1 2 5 15l22 86c-17 0 -33 1 -49 1h-50c-14 0 -40 0 -40 25c0 3 4 22 9 31c7 11 20 11 28 11c28 0 59 -3 88 -3l97 -1l96 1c28 0 58 3 85 3c16 0 26 -13 26 -25 c0 0 -3 -24 -11 -33s-14 -9 -33 -9h-50c-21 0 -54 0 -61 -3c0 0 -2 -1 -5 -15l-21 -86c71 -4 120 -7 189 -27c62 -18 146 -54 146 -123zM478 459c-11 0 -98 0 -169 -29c-34 -14 -80 -56 -80 -109c0 -68 74 -93 191 -94zM803 365c0 70 -80 93 -191 94l-57 -232 c40 1 108 6 159 26c61 24 89 75 89 112'], + 0xE780: [686,0,985,62,1030,'1030 512c0 -29 -22 -30 -31 -31c-26 -2 -73 -20 -90 -77c-54 -182 -233 -226 -380 -233l-25 -103c16 0 32 -1 48 -1h50c17 0 40 0 40 -25c0 -4 -4 -24 -9 -31c-8 -11 -18 -11 -28 -11c-31 0 -64 3 -95 3l-90 1l-95 -1c-28 0 -58 -3 -85 -3c-15 0 -26 11 -26 25 c0 4 3 26 10 34c8 8 15 8 34 8h50c20 0 43 1 62 2l25 103c-58 4 -267 17 -267 194c0 10 0 22 6 50c2 8 3 18 3 18c0 43 -38 46 -50 47c-20 2 -25 19 -25 25c0 31 27 31 42 31h59c91 0 107 -67 107 -100c0 -9 0 -15 -4 -33c-3 -12 -7 -32 -7 -50c0 -88 70 -119 151 -125 l97 389c-17 0 -33 1 -49 1h-50c-14 0 -40 0 -40 25c0 0 4 23 9 31c7 11 20 11 28 11c28 0 59 -3 88 -3l97 -1l96 1c28 0 58 3 85 3c15 0 26 -13 26 -25c0 0 -3 -25 -11 -33c-8 -9 -14 -9 -33 -9h-50c-21 0 -54 0 -61 -3c0 0 -2 -2 -5 -15l-93 -371c186 23 220 139 236 196 c7 24 47 111 151 111h59c16 0 40 0 40 -25'], + 0xE781: [705,0,1158,137,1118,'1118 493c0 -119 -118 -208 -204 -273c-39 -29 -95 -71 -123 -105h83c12 0 54 0 63 6c5 2 18 18 30 39c15 23 16 24 46 24c17 0 42 0 42 -25c0 -7 -2 -10 -8 -19l-41 -69c-7 -12 -25 -43 -33 -55c-10 -16 -15 -16 -39 -16h-213c-14 0 -40 0 -40 25c0 0 0 64 123 213 c85 104 149 182 149 271c0 113 -117 140 -229 140c-238 0 -337 -126 -337 -255c0 -38 6 -72 31 -148c24 -71 33 -115 33 -158c0 -9 0 -31 -6 -60c-7 -28 -17 -28 -42 -28h-213c-37 0 -38 9 -41 38c-2 19 -12 106 -12 118c0 28 20 28 42 28c26 0 39 0 43 -31 c2 -21 3 -34 11 -35c16 -3 35 -3 51 -3h101c-6 18 -14 41 -61 97c-59 71 -102 123 -102 202c0 141 157 291 504 291c329 0 392 -133 392 -212'], + 0xE782: [454,10,1030,89,932,'932 55c0 -4 0 -65 -127 -65c-108 0 -147 68 -155 82c-44 -25 -152 -82 -295 -82c-183 0 -266 82 -266 188c0 122 120 276 370 276c40 0 124 -3 197 -53c58 -38 81 -92 89 -150c28 40 47 78 60 126c7 23 13 23 43 23c22 0 42 0 42 -22c0 -20 -42 -143 -130 -222 c2 -13 9 -50 15 -67c14 -43 22 -43 32 -43c6 0 34 0 42 17c7 15 17 15 41 15c21 0 42 0 42 -23zM628 135l-16 97c-15 84 -57 166 -156 166c-68 0 -124 -26 -152 -54c-69 -67 -76 -187 -76 -200c0 -63 40 -98 133 -98c96 0 188 35 267 89'], + 0xE783: [704,194,871,79,798,'798 551c0 -12 -2 -25 -5 -39c-12 -46 -43 -89 -85 -120c6 -4 12 -9 18 -15c35 -32 54 -78 54 -130c0 -18 -2 -36 -7 -55c-16 -61 -66 -116 -126 -149c-78 -41 -161 -53 -240 -53c-76 0 -145 21 -189 59l-57 -227c-2 -9 -11 -16 -21 -16h-39c-13 0 -22 10 -22 22v5 l154 617c37 145 192 254 341 254c13 0 27 0 40 -1c19 -2 38 -5 56 -10c30 -7 58 -20 80 -39c30 -25 48 -61 48 -103zM683 573c0 16 -4 31 -13 43c-22 26 -60 33 -99 33c-113 0 -227 -95 -256 -210l-61 -247c-3 -10 -4 -21 -4 -30c0 -73 72 -116 160 -116c54 0 112 8 163 42 c40 27 63 72 73 115c7 24 11 49 11 72c0 25 -5 47 -19 65c-3 5 -6 8 -10 12c-45 -16 -91 -21 -136 -21c-72 0 -156 0 -156 49c0 4 1 8 2 13c13 51 99 51 171 51c41 0 81 -4 117 -14c27 25 41 60 49 93c4 17 8 34 8 50zM581 390c-24 5 -49 6 -75 6c-42 0 -100 0 -103 -12 c-1 -5 53 -5 89 -5c30 0 60 3 89 11'], + 0xE784: [454,213,798,37,798,'798 422c0 -5 0 -7 -12 -26c-71 -116 -131 -229 -170 -328c-3 -6 -3 -8 -4 -24c-3 -49 -17 -123 -35 -184c-10 -33 -27 -73 -62 -73c-23 0 -39 18 -39 48c0 35 32 147 55 211c5 14 5 16 5 21c0 63 -23 151 -51 188c-53 68 -154 68 -204 68c-83 0 -144 -5 -160 -46 c-8 -21 -12 -21 -42 -21c-22 0 -42 0 -42 22c0 11 14 75 92 125c65 40 140 51 188 51c157 0 248 -124 282 -240c46 93 67 136 115 213c11 16 12 17 42 17c22 0 42 0 42 -22'], + 0xE785: [728,10,707,90,635,'635 646c0 -9 -2 -18 -7 -28c-12 -24 -38 -39 -62 -39c-5 0 -11 1 -17 3c-56 20 -94 67 -155 79c-5 1 -10 2 -16 2c-7 0 -13 -1 -20 -4c-10 -4 -19 -13 -24 -23c-11 -23 99 -105 171 -159c42 -31 77 -70 95 -120c9 -24 12 -50 12 -78s-4 -57 -11 -86 c-28 -111 -137 -203 -246 -203c-80 0 -158 16 -211 63c-35 31 -54 75 -54 124c0 17 2 34 6 51c17 66 64 127 127 166c42 26 87 41 132 50c-43 57 -81 118 -81 171c0 16 4 30 10 44c11 22 29 41 51 53c22 11 46 15 68 16c6 0 128 -23 192 -35c25 -5 40 -24 40 -47zM483 219 c0 21 -4 42 -11 61c-14 38 -39 69 -64 99l-12 14c-33 -7 -67 -20 -96 -43c-44 -34 -65 -84 -77 -133c-6 -22 -10 -45 -10 -66c0 -23 5 -44 18 -60c27 -35 76 -45 127 -45c55 0 102 57 117 116c5 19 8 38 8 57'], + 0xE786: [444,10,669,90,588,'588 48c0 -15 -12 -20 -29 -26c-79 -32 -143 -32 -167 -32c-207 0 -302 86 -302 193c0 88 62 161 127 201c99 60 200 60 270 60c19 0 53 0 57 -1c15 -2 26 -15 26 -30c0 -36 -39 -36 -51 -36h-66c-155 0 -189 -88 -202 -121h224c17 0 47 0 47 -31c0 -11 -5 -21 -14 -29 c-9 -7 -17 -7 -35 -7h-240c-2 -11 -2 -21 -2 -31c0 -24 1 -62 48 -88c38 -21 90 -24 111 -24c29 0 95 30 124 43c25 11 35 16 41 16c15 0 20 -14 23 -22s10 -29 10 -35'], + 0xE787: [713,205,717,90,660,'546 553c-21 1 -23 1 -40 -1c29 0 31 0 40 1zM660 557c0 -62 -98 -62 -135 -62c-27 0 -60 0 -91 31c-97 -45 -235 -171 -235 -305c0 -77 55 -118 127 -138l122 -29c74 -17 90 -21 115 -42c8 -8 35 -33 35 -81c0 -52 -41 -136 -129 -136c-14 0 -49 1 -96 12 c-43 9 -60 13 -60 35c0 13 12 28 31 28c4 0 5 0 16 -3c56 -16 105 -16 109 -16c9 0 27 0 27 25c0 31 -31 38 -67 47c-11 2 -47 10 -60 14c-117 27 -170 39 -227 97c-22 23 -52 71 -52 140c0 162 137 320 317 404c-5 17 -5 38 -5 45c0 30 4 90 53 90c21 0 38 -16 38 -37 c0 -4 -2 -12 -3 -17c-6 -23 -7 -45 -8 -55c23 5 44 5 60 5c46 0 118 -1 118 -52'], + 0xE788: [454,213,835,73,785,'785 325c0 -22 -2 -31 -6 -46l-107 -426c-17 -66 -69 -66 -75 -66c-36 0 -56 25 -56 53c0 10 2 17 4 25l111 443c1 5 3 19 3 30c0 23 -2 60 -71 60c-76 0 -139 -49 -188 -116c-35 -48 -39 -64 -43 -80l-39 -157c-10 -32 -40 -55 -73 -55c-28 0 -55 19 -55 53 c0 6 6 29 9 44l54 216c4 18 11 44 11 53c0 32 -21 42 -37 42c-41 0 -62 -74 -67 -95c-8 -29 -11 -29 -45 -29c-22 0 -42 0 -42 22c0 18 46 158 161 158c29 0 139 -6 156 -85c94 82 169 85 207 85c46 0 188 -4 188 -129'], + 0xE789: [704,10,744,91,691,'691 468c0 -209 -145 -478 -383 -478c-117 0 -217 73 -217 235c0 47 12 213 129 353c56 67 150 126 255 126c92 0 216 -50 216 -236zM560 525c0 22 0 123 -89 123c-35 0 -88 -21 -132 -82c-43 -59 -63 -134 -77 -185h276c22 93 22 124 22 144zM520 313h-275 c-8 -32 -23 -95 -23 -145c0 -75 29 -122 89 -122c37 0 149 21 209 267'], + 0xE78A: [454,10,588,91,513,'513 148c0 -42 -73 -158 -274 -158c-82 0 -148 33 -148 94c0 33 27 76 37 111c2 7 9 24 11 31l15 48c5 14 13 51 19 65c2 7 5 24 8 30c2 7 5 24 7 30c11 26 31 55 73 55c28 0 55 -19 55 -53c0 -15 -38 -167 -88 -285c-9 -22 -11 -27 -11 -41c0 -29 16 -29 28 -29 c63 0 159 31 182 98c8 26 11 26 44 26c22 0 42 0 42 -22'], + 0xE78B: [454,10,911,102,836,'836 148c0 -27 -56 -158 -177 -158c-72 0 -162 26 -162 102c0 15 5 26 5 37c0 36 -50 50 -103 58c-24 3 -75 7 -132 7l-34 -136c-14 -55 -49 -68 -76 -68c-28 0 -55 19 -55 53c0 8 12 54 18 82l69 274c10 32 40 55 73 55c28 0 55 -19 55 -53c0 -8 -10 -46 -15 -69 l-17 -67c49 18 86 41 140 77c75 48 158 102 240 102c65 0 66 -54 66 -59c0 -38 -34 -86 -87 -86c-39 0 -62 26 -62 60c0 6 0 8 1 11c-32 -13 -51 -21 -144 -82c-12 -8 -42 -27 -64 -39c7 0 8 -2 16 -2c109 -7 239 -25 239 -118c0 -20 -5 -24 -5 -40c0 -32 22 -43 41 -43 c30 0 64 30 85 101c7 23 12 23 43 23c22 0 42 0 42 -22'], + 0xE78C: [452,13,1000,118,910,'910 128c-5 -20 -44 -136 -196 -136c-68 0 -116 28 -116 89c0 10 2 22 5 35c13 54 15 64 36 114c-153 -91 -236 -152 -375 -230c-16 -9 -31 -13 -45 -13s-26 5 -34 15c-5 8 -8 18 -8 29c0 19 8 39 25 49c65 62 139 169 159 250c2 7 3 14 3 21c0 25 -17 42 -62 43 c-54 0 -102 -15 -116 -75c-6 -24 -25 -28 -37 -28c-11 0 -36 3 -30 25c5 20 45 136 197 136c69 0 116 -28 116 -88c0 -11 -2 -23 -5 -36c-14 -54 -17 -63 -37 -114c220 133 237 149 376 229c8 5 17 6 25 6c17 0 32 -7 38 -13c8 -7 13 -24 13 -40c0 -14 -4 -27 -13 -32 c-68 -62 -140 -169 -161 -250c-2 -7 -3 -14 -3 -20c0 -26 17 -44 61 -44c43 0 99 3 117 75c6 24 25 28 37 28s35 -3 30 -25'], + 0xE78D: [694,12,913,99,835,'835 12c0 -22 -21 -22 -38 -22h-54c-19 0 -46 2 -60 9c-7 4 -8 5 -23 30l-123 200c-6 9 -18 25 -18 25s-2 -1 -11 -7l-306 -240c-10 -8 -24 -19 -47 -19c-38 0 -56 31 -56 56c0 36 29 55 40 62l336 223l-152 249c-34 56 -76 59 -90 60c-9 1 -32 2 -32 27c0 3 2 18 17 26 c7 3 28 3 42 3c154 0 167 -22 181 -44l355 -580c13 -20 16 -27 28 -39c7 -7 11 -10 11 -19'], + 0xE78E: [454,213,943,83,868,'868 148c0 -18 -46 -158 -161 -158c-25 0 -114 4 -147 61c-80 -61 -154 -61 -177 -61c-40 0 -90 4 -130 20l-38 -151c-4 -16 -18 -72 -76 -72c-36 0 -56 25 -56 53c0 10 2 17 4 25l131 522c17 67 67 67 76 67c28 0 55 -19 55 -53c0 -8 -7 -36 -11 -54l-16 -62 c-9 -34 -11 -45 -21 -83c-10 -43 -13 -53 -13 -75c0 -31 6 -81 103 -81c103 0 169 101 171 109l34 134c3 15 13 53 16 68l9 33c10 32 41 54 72 54c34 0 56 -24 56 -52c0 -7 -2 -16 -4 -23l-54 -216c-5 -22 -14 -56 -14 -65c0 -32 21 -42 37 -42c41 0 62 74 67 95 c8 29 11 29 45 29c22 0 42 0 42 -22'], + 0xE78F: [454,0,769,96,758,'758 401c0 -5 -12 -131 -167 -245c-131 -96 -324 -143 -436 -156h-28c-31 0 -31 25 -31 25s3 14 4 16l79 317c3 10 3 12 3 15c0 4 -20 4 -36 4c-13 0 -39 0 -39 25c0 0 1 38 26 42c7 0 57 3 68 3c30 1 65 5 95 5c25 0 29 -20 29 -25l-4 -16l-84 -339l11 2l25 8 c179 55 314 166 353 300c6 22 20 72 77 72c28 0 55 -19 55 -53'], + 0xE790: [712,206,717,65,620,'506 553l-30 1c-4 0 -10 -2 -10 -2c29 0 31 0 40 1zM440 289c-25 1 -27 1 -46 -1c35 0 37 0 46 1zM620 556c0 -62 -99 -62 -135 -62c-27 0 -65 0 -95 35c-62 -29 -106 -87 -106 -143c0 -33 19 -57 19 -57c61 16 99 16 128 16c47 0 123 0 123 -51c0 -63 -94 -63 -143 -63 c-27 0 -86 0 -154 20c-89 -50 -91 -116 -91 -116c0 -34 51 -48 99 -62l112 -30l162 -43c40 -14 59 -44 59 -82c0 -49 -40 -124 -129 -124c-76 0 -152 21 -156 22c-6 2 -20 6 -20 25c0 14 13 28 31 28c4 0 5 0 14 -3c66 -16 128 -16 128 -16c11 0 25 0 25 17c0 0 0 6 -5 9 l-27 8l-134 35c-30 9 -32 9 -82 22c-53 15 -178 48 -178 151c0 37 21 123 129 191c-23 17 -55 50 -55 104c0 38 19 163 223 208c-1 7 -1 19 -1 26c0 30 3 91 53 91c21 0 38 -16 38 -37c0 -4 -2 -12 -3 -17c-4 -17 -7 -34 -8 -52c18 2 22 2 53 2c52 0 126 0 126 -52'], + 0xE791: [444,11,934,71,875,'875 396c0 -8 -3 -66 -78 -66h-129c-15 0 -17 0 -19 -1c-5 -3 -5 -46 -5 -50c0 -104 45 -158 61 -178c4 -5 15 -18 15 -37c0 -37 -39 -75 -77 -75c-51 0 -100 88 -100 198c0 32 3 71 17 143h-117c-35 -144 -58 -211 -63 -222c-20 -60 -41 -118 -97 -118 c-31 0 -57 21 -57 54c0 17 5 25 21 51c53 87 90 176 109 235h-76c-89 0 -112 -23 -129 -39c-10 -9 -11 -10 -38 -10c-25 0 -42 0 -42 22c0 21 69 77 86 89c75 52 130 52 152 52h505c16 0 61 0 61 -48'], + 0xE792: [454,213,792,83,742,'742 271c0 -124 -114 -281 -340 -281c-41 0 -98 6 -144 39l-39 -158c-8 -31 -8 -33 -12 -41c-15 -31 -47 -43 -68 -43c-36 0 -56 25 -56 53c0 3 0 5 5 24l91 366c27 107 134 224 326 224c155 0 237 -75 237 -183zM605 311c0 37 -13 54 -27 66c-3 2 -27 21 -77 21 c-147 0 -182 -127 -193 -167c-7 -27 -2 -13 -29 -116c19 -60 84 -69 123 -69c58 0 117 24 152 80c29 48 51 150 51 185'], + 0xE793: [444,10,908,85,849,'849 396c0 -8 -3 -66 -78 -66h-114c14 -32 14 -61 14 -74c0 -145 -129 -266 -341 -266c-160 0 -245 68 -245 173c0 114 114 281 344 281h359c16 0 61 0 61 -48zM544 256c0 55 -32 74 -130 74c-34 0 -107 0 -150 -42c-55 -54 -56 -152 -56 -152c0 -67 52 -90 125 -90 c32 0 97 4 150 53c38 37 61 116 61 157'], + 0xE794: [444,13,756,71,795,'795 396c0 -30 -22 -49 -24 -50c-19 -16 -35 -16 -54 -16h-229l-51 -273c-13 -70 -70 -70 -75 -70c-31 0 -56 20 -56 52c0 10 10 43 17 65l72 226h-115c-89 0 -112 -23 -129 -39c-10 -9 -11 -10 -38 -10c-25 0 -42 0 -42 22c0 21 68 76 85 88c75 53 130 53 153 53h425 c16 0 61 0 61 -48'], + 0xE795: [455,10,874,73,802,'802 343c0 -43 -12 -156 -102 -248c-81 -84 -158 -105 -224 -105c-60 0 -257 2 -257 156c0 24 3 52 50 161c8 21 20 48 20 62c0 11 -1 29 -24 29c-40 0 -89 -41 -107 -100c-7 -24 -12 -24 -43 -24c-22 0 -42 0 -42 22c0 36 69 158 199 158c73 0 144 -32 144 -94 c0 -17 -5 -28 -24 -71c-46 -108 -46 -132 -46 -152c0 -61 41 -91 138 -91c137 0 222 179 222 222c0 9 -1 27 -38 46c-11 6 -35 19 -35 54c0 48 46 87 85 87c4 0 84 -2 84 -112'], + 0xE796: [694,204,940,103,875,'875 260c0 -129 -144 -267 -403 -275c-5 -23 -41 -171 -46 -178c-6 -11 -13 -11 -38 -11c-22 0 -42 0 -42 22c0 5 14 61 41 167c-209 13 -284 103 -284 199c0 129 144 267 403 275l51 205c7 30 10 30 44 30c22 0 42 0 42 -22c0 -5 -1 -11 -2 -15l-50 -198 c209 -13 284 -103 284 -199zM757 273c0 76 -52 122 -180 130l-90 -361c247 19 270 188 270 231zM491 402c-247 -19 -270 -188 -270 -231c0 -76 52 -122 180 -130'], + 0xE797: [454,204,954,51,900,'900 -115c0 -12 -20 -89 -151 -89c-105 0 -162 19 -200 61c-42 46 -72 107 -112 187c-47 -36 -285 -227 -299 -234c-4 -2 -8 -4 -18 -4c-24 0 -38 20 -38 38c0 20 14 31 24 39l287 227c3 3 4 4 11 10c-20 46 -57 122 -104 180c-27 32 -82 98 -115 98 c-11 0 -39 -7 -50 -37c-7 -18 -12 -18 -42 -18c-23 0 -42 0 -42 22c0 0 3 39 51 67c38 22 79 22 101 22c126 0 166 -29 193 -54c2 -1 47 -42 118 -194c58 44 288 229 298 234c9 3 12 4 19 4c22 0 38 -16 38 -38c0 -21 -14 -32 -24 -40l-287 -227c-9 -7 -10 -9 -10 -9 s43 -104 98 -172c19 -24 85 -106 120 -106c13 0 40 8 50 37c7 18 13 18 42 18c25 0 42 0 42 -22'], + 0xE798: [694,204,1035,73,963,'963 343c0 -33 -9 -99 -35 -149c-57 -111 -211 -204 -364 -204l-46 -182c-6 -12 -15 -12 -40 -12c-21 0 -42 0 -42 22c0 5 20 82 43 174c-54 4 -259 17 -259 162c0 17 0 41 49 153c8 21 20 48 20 62c0 11 -1 29 -24 29c-40 0 -88 -40 -107 -100c-7 -24 -12 -24 -43 -24 c-22 0 -42 0 -42 22c0 36 69 158 199 158c73 0 144 -32 144 -94c0 -16 -7 -32 -13 -45c-55 -129 -55 -146 -55 -164c0 -66 59 -94 145 -102l154 615c8 30 11 30 45 30c24 0 39 0 42 -22l-156 -626c174 9 289 159 289 222c0 9 -1 27 -38 46c-11 6 -35 19 -35 54 c0 48 46 87 85 87c4 0 84 -2 84 -112'], + 0xE799: [454,10,971,67,895,'895 343c0 -39 -10 -84 -20 -126c-31 -122 -146 -227 -264 -227c-74 0 -134 28 -170 75c-53 -46 -121 -75 -188 -75c-111 0 -186 77 -186 180c0 19 2 38 7 58c18 72 55 145 111 205c12 13 27 20 42 20c11 0 21 -4 28 -10c11 -8 16 -20 16 -34c0 -12 -5 -25 -15 -37 c-43 -47 -86 -98 -100 -155c-2 -7 -2 -13 -2 -19c0 -52 57 -78 121 -78c46 0 94 13 130 38c-1 5 -1 10 -1 16c0 17 2 35 7 54c9 35 42 66 76 66c33 0 53 -24 53 -56c0 -7 -1 -14 -2 -21c-6 -23 -15 -44 -26 -65c26 -22 72 -32 120 -32c69 0 144 43 161 108c1 7 2 14 2 21 c0 30 -16 55 -40 71c-17 11 -26 30 -26 50c0 17 6 35 19 51c18 21 44 33 68 33c12 0 24 -3 35 -10c33 -22 44 -58 44 -101'], + 0xE79A: [462,20,714,77,623,'359 222l-29 1l-9 -2c27 0 29 0 38 1zM623 382c0 -28 -27 -54 -54 -54c-6 0 -12 0 -28 9c-55 30 -100 30 -130 30c-139 0 -208 -35 -208 -81c0 -10 2 -19 8 -27c59 19 113 19 143 19c44 0 110 0 110 -50c0 -64 -90 -64 -127 -64c-22 0 -85 0 -135 20 c-32 -20 -40 -49 -40 -58c0 -51 114 -51 182 -51c120 0 174 7 199 35c5 4 11 11 21 11c15 0 26 -13 26 -27c0 -21 -38 -68 -98 -91c-59 -23 -128 -23 -162 -23c-234 0 -253 103 -253 137c0 49 35 87 63 107c-2 2 -21 28 -21 61c0 81 102 177 312 177c20 0 65 0 118 -20 c72 -26 74 -42 74 -60'], + 0xE79B: [704,10,951,73,872,'694 528c0 41 -10 120 -84 120c-39 0 -129 -26 -129 -119c0 -62 50 -109 192 -139c11 47 21 99 21 138zM872 339c0 -17 -10 -34 -26 -34c-5 0 -14 2 -19 3c-4 0 -30 3 -36 4c-43 -148 -153 -322 -358 -322c-93 0 -217 12 -217 138c0 17 0 27 11 70l17 71 c8 29 20 77 20 87c0 32 -21 42 -37 42c-41 0 -62 -74 -67 -95c-8 -29 -11 -29 -45 -29c-22 0 -42 0 -42 22c0 18 46 158 161 158c71 0 158 -27 158 -102c0 -11 -2 -20 -9 -49c-6 -21 -7 -28 -14 -52l-17 -71c-5 -19 -11 -43 -11 -64c0 -39 16 -70 102 -70 c146 0 200 222 216 288c-102 21 -262 63 -262 195s134 175 216 175c93 0 204 -54 204 -231c0 -16 0 -50 -12 -106l42 -5c6 -1 25 -4 25 -23'], + 0xE79C: [444,10,1293,71,1238,'1238 396c0 -19 -11 -41 -29 -54c-17 -12 -24 -12 -72 -12c1 -5 8 -31 8 -58c0 -148 -150 -282 -299 -282c-81 0 -148 42 -176 125c-36 -35 -128 -125 -264 -125c-99 0 -168 63 -168 150c0 67 41 137 82 190h-40c-89 0 -112 -23 -129 -39c-10 -9 -11 -10 -38 -10 c-25 0 -42 0 -42 22c0 21 71 78 86 89c74 52 131 52 152 52h868c16 0 61 0 61 -48zM1061 272c0 6 0 30 -10 58h-633c-79 -87 -94 -156 -94 -171c0 -40 54 -55 98 -55c70 0 204 38 244 167c6 18 18 18 42 18c20 0 42 0 42 -23l-2 -11c-4 -16 -4 -28 -4 -34 c0 -66 43 -117 120 -117c63 0 197 38 197 168'], + 0xE79D: [454,194,792,128,742,'605 311c0 37 -13 54 -27 66c-3 2 -27 21 -77 21c-56 0 -111 -23 -144 -64c-47 -57 -64 -161 -64 -195c0 -16 0 -50 32 -72c19 -14 48 -21 78 -21c51 0 113 20 151 80c29 48 51 150 51 185zM742 271c0 -122 -112 -281 -341 -281c-64 0 -130 12 -178 55 c-2 -10 -6 -36 -6 -57c0 -24 0 -35 47 -44c32 -5 77 -5 122 -5c95 0 135 -3 166 -8c44 -8 58 -29 58 -67c0 -58 -15 -58 -47 -58c-27 0 -40 0 -42 24c-10 1 -18 1 -33 1c-11 0 -26 0 -57 -3c-42 -3 -68 -3 -87 -3c-178 0 -216 37 -216 128c0 22 1 50 12 107 c15 81 40 174 43 185c27 90 128 209 322 209c155 0 237 -75 237 -183'], + 0xE79E: [454,107,615,76,601,'601 403c0 -14 -13 -38 -39 -38c-5 0 -8 0 -21 6c-57 27 -80 27 -105 27c-188 0 -258 -74 -258 -130c0 -35 37 -54 56 -64l172 -65c16 -6 60 -23 64 -24c35 -15 58 -46 58 -88c0 -60 -52 -134 -133 -134c-21 0 -43 4 -62 8c-21 6 -40 10 -40 30c0 14 14 29 31 29 c5 0 10 -2 15 -3c26 -8 34 -8 55 -8c26 0 26 26 26 26c0 8 -5 14 -11 17c-4 3 -45 18 -68 27l-117 44c-45 17 -148 56 -148 157c0 119 136 234 373 234c17 0 58 0 93 -8c42 -10 59 -21 59 -43'], + 0xE79F: [454,216,997,90,907,'820 251c0 65 -67 89 -118 89c-50 0 -104 -21 -153 -69c-57 -58 -65 -106 -75 -167h47c48 0 299 0 299 147zM907 272c0 -189 -216 -282 -414 -282h-40l-24 -140c-12 -58 -58 -66 -75 -66c-35 0 -56 24 -56 52c0 11 2 17 24 82l25 79c-129 14 -257 60 -257 183 c0 42 29 161 102 239c24 25 25 25 56 25c21 0 42 0 42 -22c0 -9 -4 -13 -17 -25c-69 -64 -97 -179 -97 -204c0 -41 29 -80 206 -87c9 26 15 48 24 72c64 165 185 276 313 276c108 0 188 -75 188 -182'], + 0xE7A0: [713,19,823,99,833,'644 277c0 69 -54 126 -159 126c-41 0 -117 -2 -178 -68c-44 -49 -64 -186 -64 -199c0 -29 13 -56 45 -75c22 -13 51 -19 104 -19c95 0 151 38 179 69c42 44 73 124 73 166zM833 434c0 -99 -54 -252 -135 -333c-76 -77 -169 -120 -310 -120c-61 0 -130 4 -187 38 c-55 32 -102 78 -102 151c0 21 5 129 107 205c106 80 205 84 267 84c134 0 182 -71 198 -101c19 66 21 118 21 129c0 51 -15 97 -56 128c-50 37 -116 42 -151 42c-72 0 -118 -27 -144 -57c0 0 27 -17 27 -50c0 -39 -33 -86 -87 -86c-42 0 -62 29 -62 58c0 31 38 191 269 191 c196 0 345 -91 345 -279'], + 0xE7A1: [679,0,723,67,849,'849 662l-14 -188c-2 -25 -3 -34 -32 -34c-9 0 -31 0 -31 22c0 6 1 10 1 41c0 87 -24 120 -147 120h-125c-9 0 -22 0 -30 -1l-141 -564c5 0 7 0 9 -1l81 -1c16 0 37 0 37 -22c0 -34 -23 -34 -33 -34c-29 0 -61 3 -90 3l-90 1l-80 -1c-24 0 -50 -3 -74 -3 c-11 0 -23 7 -23 22c0 34 18 34 49 34c14 0 33 0 47 1c18 2 19 3 23 18l135 543c0 3 -2 3 -7 4c-13 1 -31 1 -44 1c-28 0 -48 0 -48 22c0 8 5 23 11 28c6 6 12 6 30 6h549c15 0 33 0 37 -17'], + 0xE7A2: [710,0,1081,76,1012,'1012 18c-2 -18 -17 -18 -35 -18h-874c-20 0 -27 0 -27 12c0 0 0 7 11 19l561 651c24 28 34 28 69 28c34 0 47 0 58 -30zM801 127l-161 448l-385 -448h546'], + 0xE7A3: [702,16,972,65,939,'939 429c0 -203 -177 -445 -525 -445c-234 0 -349 110 -349 267c0 187 167 451 528 451c190 0 346 -79 346 -273zM799 458c0 158 -117 198 -218 198c-149 0 -228 -81 -256 -109c-71 -73 -118 -224 -118 -321c0 -26 0 -95 57 -145c58 -49 142 -49 162 -49 c105 0 201 42 263 114c98 115 110 283 110 312zM730 419c0 0 0 -3 -4 -17l-32 -128c-5 -19 -7 -28 -33 -28c-7 0 -32 0 -32 23l2 11h-287c0 -4 -6 -21 -9 -26c-8 -8 -17 -8 -26 -8c-7 0 -32 0 -32 23c0 5 38 153 39 156c5 17 21 17 30 17c7 0 32 0 32 -23l-2 -11h287 c0 4 6 21 9 26c8 8 17 8 26 8c7 0 32 0 32 -23'], + 0xE7A4: [710,0,905,60,858,'858 34c0 -34 -23 -34 -31 -34c-19 0 -43 2 -63 3c-17 1 -51 1 -69 1c-34 0 -120 -4 -154 -4c-15 0 -23 12 -23 22c0 33 22 34 33 34c30 1 45 1 66 4l-74 466l-304 -461v-2c13 -4 37 -7 50 -7c8 0 30 0 30 -22c0 -14 -5 -34 -30 -34c-26 0 -93 4 -119 4 c-29 0 -62 -4 -89 -4c-11 0 -21 9 -21 22c0 34 22 34 33 34c62 1 72 16 86 37l390 590c18 27 30 27 60 27c34 0 44 0 49 -34l96 -601c3 -16 4 -17 7 -18c11 -1 30 -1 34 -1c24 0 43 0 43 -22'], + 0xE7A5: [673,0,942,77,952,'952 651c0 -4 -29 -158 -30 -161c-6 -15 -17 -15 -30 -15c-9 0 -32 0 -32 22c0 3 0 5 2 14c4 18 4 25 4 42c-27 3 -29 3 -73 3h-431c-4 0 -61 -1 -77 -4c-11 -1 -24 -41 -27 -50c-7 -22 -10 -27 -34 -27c-9 0 -32 0 -32 22c0 0 0 3 5 17l41 132c8 27 14 27 40 27h636 c16 0 38 0 38 -22zM852 186c0 -7 -52 -171 -53 -173c-6 -13 -15 -13 -35 -13h-650c-18 0 -37 0 -37 23c0 7 30 165 32 170c5 15 19 15 30 15c9 0 31 0 31 -22c0 0 0 -4 -1 -9c-6 -32 -6 -42 -6 -57c23 -2 54 -3 77 -3h435c13 0 77 1 85 5c9 4 23 48 28 64c7 19 12 22 33 22 c9 0 31 0 31 -22zM790 431c0 -7 -37 -151 -41 -167c-6 -18 -21 -18 -31 -18c-7 0 -32 0 -32 22c0 6 3 17 5 23h-370c-7 -43 -16 -45 -37 -45c-7 0 -32 0 -32 22c0 6 2 12 3 17l36 143c6 24 17 25 33 25c8 0 32 0 32 -23c0 -6 -3 -17 -5 -22h369c8 45 19 45 38 45 c7 0 32 0 32 -22'], + 0xE7A6: [679,0,1087,67,1112,'1112 657c0 -34 -20 -34 -40 -34h-20c-12 0 -26 0 -38 -1c-16 -2 -17 -3 -21 -18l-133 -530c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22 c0 6 0 22 13 30c4 4 6 4 36 4c15 0 33 0 47 1c18 2 19 3 23 18l137 548h-378l-137 -549c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22 c0 6 0 22 13 30c4 4 6 4 36 4c15 0 33 0 47 1c18 2 19 3 23 18l135 543c0 3 -3 4 -7 4c-13 1 -31 1 -44 1c-29 0 -48 0 -48 22c0 9 4 22 11 28c6 6 10 6 30 6h812c17 0 37 0 37 -22'], + 0xE7A7: [686,0,990,85,990,'990 650l-13 -171c-2 -22 -4 -32 -32 -32c-10 0 -32 0 -32 24c0 3 0 14 1 17c-1 80 -36 112 -64 122c-44 17 -116 20 -165 20h-240l187 -281c0 -17 -2 -18 -17 -29l-352 -246h268c139 0 189 23 204 29c7 4 72 33 119 134c9 19 13 20 32 20c9 0 32 0 32 -22 c0 -4 -18 -46 -27 -70l-61 -149c-7 -16 -15 -16 -37 -16h-671c-17 0 -37 0 -37 22c0 11 4 14 17 23l369 258l-222 331c-7 10 -7 18 -7 18c0 34 22 34 41 34h671c25 0 39 0 36 -36'], + 0xE7A8: [702,0,762,43,898,'898 582c0 -55 -20 -55 -45 -55c-19 0 -36 0 -30 27c-4 15 -7 29 -89 29c-139 0 -217 -139 -243 -242l-62 -248l-8 -32s1 -3 25 -4c11 0 20 -1 31 -1h33c16 0 37 0 37 -22c0 -34 -23 -34 -33 -34c-30 0 -62 3 -92 3l-90 1l-92 -1c-28 0 -58 -3 -86 -3 c-18 0 -24 13 -24 22c0 34 21 34 40 34h34c4 0 66 0 69 6c1 2 1 4 5 21l60 240c14 53 16 63 16 102c0 158 -106 158 -134 158c-91 0 -99 -21 -104 -30c-10 -26 -18 -26 -42 -26c-20 0 -31 0 -31 17c0 46 83 158 217 158c180 0 186 -192 188 -235c67 123 168 235 305 235 c76 0 145 -42 145 -120'], + 0xE7A9: [686,0,868,40,827,'827 369c0 -104 -145 -191 -345 -207c-20 -1 -22 -1 -24 -2c0 0 -2 -1 -6 -16l-22 -86h9c7 -1 39 -2 48 -2h33c16 0 37 0 37 -22c0 -34 -23 -34 -32 -34c-28 0 -58 2 -86 3l-90 1l-87 -1c-28 0 -58 -3 -85 -3c-18 0 -24 14 -24 22c0 34 21 34 40 34h34c9 0 63 1 67 5 c3 2 5 12 6 15l21 85c-164 7 -281 66 -281 155c0 110 161 201 372 209l25 103c-5 0 -7 0 -9 1l-80 1c-16 0 -38 0 -38 22c0 0 3 19 8 25c7 9 16 9 25 9c27 0 58 -2 86 -3l90 -1l86 1c28 0 58 3 85 3c22 0 25 -19 25 -22c0 -8 -5 -23 -11 -28c-6 -6 -12 -6 -30 -6h-33 c-51 0 -66 -4 -66 -4s-2 -2 -6 -15l-22 -86c143 -6 280 -56 280 -156zM400 479c-87 -5 -134 -34 -148 -45c-37 -29 -61 -80 -61 -129c0 -53 32 -92 141 -98zM677 381c0 52 -30 91 -142 98l-67 -272c80 5 125 27 150 46c33 27 59 82 59 128'], + 0xE7AA: [686,0,817,36,887,'887 521c0 -21 -18 -23 -25 -24c-53 -6 -73 -75 -80 -99c-49 -172 -204 -226 -321 -236c-18 -1 -20 -3 -20 -3s-1 -2 -5 -15l-22 -86h9c7 -1 39 -2 48 -2h33c16 0 37 0 37 -22c0 -34 -23 -34 -32 -34c-28 0 -58 2 -86 3l-90 1l-87 -1c-28 0 -58 -3 -85 -3 c-18 0 -24 14 -24 22c0 34 21 34 40 34h34c9 0 63 1 67 5c3 2 5 12 6 15l21 86c-130 10 -229 66 -229 191c0 15 2 37 9 65c2 10 4 23 4 32c0 44 -21 46 -31 47c-17 2 -22 14 -22 22c0 24 21 24 38 24h64c19 0 85 0 85 -91c0 -11 0 -22 -7 -52c-5 -22 -9 -44 -9 -66 c0 -89 56 -114 110 -124l104 418c-5 0 -7 0 -9 1l-80 1c-16 0 -38 0 -38 22c0 0 3 19 8 25c7 9 16 9 25 9c27 0 58 -2 86 -3l90 -1l86 1c28 0 58 3 85 3c22 0 25 -19 25 -22c0 -8 -5 -23 -11 -28c-6 -6 -12 -6 -30 -6h-33c-51 0 -66 -4 -66 -4s-2 -2 -6 -15l-100 -399 c150 30 183 151 200 211c12 42 36 78 59 96c32 24 51 24 74 24h64c16 0 37 0 37 -22'], + 0xE7AB: [702,0,986,110,978,'978 497c0 -114 -104 -205 -180 -271c-52 -44 -94 -83 -120 -117h72c15 0 49 0 62 6c9 4 35 53 43 68c8 16 13 17 31 17c9 0 31 0 31 -22c0 -4 -9 -23 -15 -34l-66 -131c-7 -13 -15 -13 -36 -13h-178c-17 0 -37 0 -37 22c0 16 18 64 38 101c24 45 47 80 87 139 c50 74 113 167 113 260c0 110 -99 134 -185 134c-184 0 -295 -114 -295 -282c0 -28 0 -48 16 -134c15 -84 15 -109 15 -134c0 -20 0 -39 -6 -70c-7 -35 -11 -36 -41 -36h-178c-37 0 -37 5 -38 52l-1 89c0 15 0 40 1 44c5 15 19 15 30 15c31 0 32 -12 32 -38 c0 -8 0 -46 7 -49c4 -2 25 -4 52 -4h88c-12 44 -32 75 -65 125c-29 46 -68 106 -68 176c0 134 137 292 452 292c257 0 339 -105 339 -205'], + 0xE7AC: [452,8,864,59,796,'532 122c-10 81 -10 123 -21 168c-20 81 -60 116 -116 116c-33 0 -107 -8 -157 -85c-28 -44 -52 -149 -52 -189c0 -74 54 -94 111 -94c70 0 155 25 235 84zM796 57c0 -19 -26 -65 -113 -65c-52 0 -104 22 -136 80c-83 -55 -174 -80 -255 -80c-147 0 -233 69 -233 180 c0 124 113 280 338 280c72 0 238 -22 251 -208c42 61 57 113 63 133c6 22 7 24 33 24c14 0 32 0 32 -18c0 -9 -28 -117 -110 -210c-10 -9 -10 -11 -10 -15c0 0 4 -41 9 -70c3 -14 9 -50 25 -50c0 0 34 0 44 25c6 13 15 13 31 13c13 0 31 0 31 -19'], + 0xE7AD: [702,194,738,47,700,'700 557c0 -13 -2 -27 -6 -42c-11 -46 -40 -89 -81 -121c7 -5 13 -11 19 -18c29 -31 43 -74 43 -120c0 -20 -3 -41 -8 -62c-15 -59 -58 -114 -115 -148c-68 -41 -143 -54 -214 -54s-132 26 -168 69l-60 -242c-2 -8 -9 -13 -18 -13h-27c-10 0 -18 8 -17 22l155 621 c35 137 168 253 303 253c60 0 117 -13 156 -50c25 -24 38 -57 38 -95zM594 585c0 14 -2 27 -9 39c-16 25 -48 33 -81 33c-109 0 -211 -103 -239 -217l-62 -246c-3 -12 -4 -24 -4 -35c0 -72 60 -121 141 -121c47 0 97 11 138 43c39 31 56 77 67 121c8 30 14 61 14 90 c0 21 -3 40 -13 57c-1 3 -3 5 -4 7c-39 -14 -79 -19 -118 -19c-60 0 -126 2 -126 45c0 4 1 8 2 13c12 49 82 49 142 49c35 0 69 -4 100 -13c24 26 34 60 43 93c5 20 9 42 9 61zM486 393c-14 4 -30 6 -47 6c-32 0 -74 0 -77 -13c-1 -3 38 -3 64 -3c20 0 41 3 60 10'], + 0xE7AE: [452,210,667,17,688,'688 426c0 -4 0 -6 -9 -22c-27 -46 -104 -177 -162 -333c-3 -6 -3 -8 -4 -21c-8 -89 -35 -183 -41 -203c-7 -20 -21 -57 -50 -57c-23 0 -32 21 -32 41c0 26 21 115 60 227c3 9 3 11 3 37c0 61 -12 143 -48 184c-48 53 -137 53 -165 53c-138 0 -152 -39 -161 -62 c-5 -14 -14 -14 -31 -14c-15 0 -31 0 -31 19c0 7 14 70 83 122c51 37 111 55 164 55c171 0 230 -188 243 -248c35 77 80 161 114 218c12 21 13 22 36 22c13 0 31 0 31 -18'], + 0xE7AF: [723,8,589,58,560,'560 651c0 -8 -3 -17 -7 -26c-11 -21 -34 -34 -55 -34c-6 0 -11 1 -17 3c-48 19 -79 64 -134 72c-4 1 -8 1 -12 1c-7 0 -14 -1 -21 -4c-10 -4 -18 -13 -23 -22c-1 -2 -1 -6 -1 -6c0 -30 93 -107 155 -159c37 -31 67 -72 78 -122c4 -18 6 -37 6 -57c0 -33 -5 -67 -14 -102 c-27 -107 -122 -203 -223 -203c-74 0 -144 17 -190 63c-29 30 -44 71 -44 117c0 17 2 36 7 55c15 63 58 124 117 164c39 27 82 43 125 52c-36 55 -68 115 -68 168c0 17 4 34 12 49c9 18 25 35 44 46s39 15 59 17c18 1 114 -18 171 -30c22 -5 35 -21 35 -42zM403 230 c0 18 -2 36 -6 52c-10 39 -30 73 -52 104l-9 13c-28 -8 -55 -21 -78 -42c-42 -37 -59 -89 -71 -139c-7 -27 -13 -55 -13 -80c0 -20 3 -39 13 -55c21 -33 63 -45 107 -45c52 0 85 63 100 122c6 24 9 48 9 70'], + 0xE7B0: [444,8,548,61,497,'497 49c0 -11 -6 -14 -21 -21c-36 -18 -87 -36 -152 -36c-174 0 -263 81 -263 190c0 73 42 144 91 183c99 79 201 79 270 79h49c14 -2 22 -13 22 -26c0 -30 -32 -30 -45 -30h-52c-137 0 -170 -83 -185 -130h196c17 0 40 0 40 -26c0 -30 -33 -30 -47 -30h-204 c-4 -19 -6 -31 -6 -55c0 -39 13 -65 39 -83c35 -25 88 -26 97 -26c14 0 44 0 117 40c16 8 23 12 29 12c19 0 25 -38 25 -41'], + 0xE7B1: [707,202,585,61,575,'575 567c0 -61 -89 -61 -121 -61c-25 0 -56 0 -82 32c-83 -47 -209 -182 -209 -320c0 -88 58 -122 110 -139l97 -26c70 -18 91 -24 115 -50c9 -11 25 -34 25 -70c0 -58 -46 -135 -126 -135c-25 0 -56 5 -80 12c-48 15 -56 22 -56 35c0 12 12 24 25 24c5 0 11 -3 16 -5 c48 -20 91 -20 95 -20c17 0 29 9 29 31c0 34 -33 43 -58 50c-17 4 -37 10 -51 13c-106 28 -144 39 -192 87c-27 28 -51 75 -51 144c0 188 164 350 291 414c-4 15 -4 32 -4 38c0 39 6 86 42 86c19 0 28 -16 28 -27c0 -4 -1 -10 -2 -13c-1 -5 -7 -30 -8 -61c27 8 45 8 63 8 c34 0 104 0 104 -47zM509 562c0 6 -38 6 -43 6c-14 0 -27 0 -45 -7c9 -9 14 -9 34 -9c43 0 54 10 54 10'], + 0xE7B2: [452,210,690,44,672,'672 330c0 -23 -3 -34 -7 -50l-107 -426c-16 -64 -67 -64 -73 -64c-36 0 -53 26 -53 49c0 10 2 17 4 25l109 432c4 16 7 28 7 51c0 32 -9 59 -57 59c-53 0 -95 -29 -114 -46c-27 -23 -69 -73 -76 -102c-3 -10 -3 -12 -17 -70c-15 -56 -15 -58 -29 -116 c-8 -30 -21 -80 -78 -80c-25 0 -52 15 -52 50c0 8 13 59 20 88l26 102c9 37 9 39 19 77c8 32 11 44 11 57c0 15 -3 40 -27 40c-39 0 -57 -61 -70 -106c-5 -21 -8 -22 -32 -22c-15 0 -32 0 -32 18c0 6 33 156 141 156c8 0 116 0 138 -79c81 79 156 79 181 79 c30 0 168 0 168 -122'], + 0xE7B3: [702,8,629,59,603,'603 480c0 -104 -42 -253 -113 -348c-90 -119 -190 -140 -242 -140c-101 0 -189 68 -189 222c0 88 35 235 103 333c96 139 206 155 253 155c80 0 188 -48 188 -222zM484 545c0 86 -37 111 -71 111c-53 0 -100 -53 -123 -91c-34 -58 -51 -121 -70 -190h236 c15 64 28 116 28 170zM442 319h-236c-12 -49 -28 -119 -28 -170c0 -65 24 -111 72 -111c42 0 88 36 121 90c38 61 60 147 71 191'], + 0xE7B4: [452,8,475,57,430,'430 148c0 0 -7 -60 -77 -108c-39 -26 -101 -48 -164 -48c-80 0 -132 40 -132 91c0 31 24 70 33 102c11 40 3 6 15 46l15 48c6 18 16 65 23 82c2 8 5 27 8 34c7 18 23 57 72 57c25 0 52 -15 52 -50c0 -17 -39 -170 -87 -289c-6 -17 -13 -33 -13 -51c0 -24 11 -24 20 -24 c25 0 139 13 172 113c5 15 12 15 31 15c15 0 32 0 32 -18'], + 0xE7B5: [452,8,759,65,714,'714 148c0 -17 -45 -156 -154 -156c-68 0 -144 32 -144 102c0 4 0 11 3 23c3 13 3 21 3 21c0 43 -47 60 -137 67c-19 1 -38 1 -57 2l-34 -137c-7 -28 -20 -78 -77 -78c-25 0 -52 15 -52 50c0 8 13 59 20 89l31 123l35 141c12 43 49 57 72 57c25 0 52 -15 52 -50 c0 -9 -9 -44 -14 -66c-6 -22 -11 -45 -17 -67c28 11 63 33 108 66c83 60 152 109 226 109c43 0 58 -27 58 -53c0 -41 -36 -78 -78 -78c-34 0 -56 21 -56 53c0 8 0 10 1 14c-35 -16 -61 -32 -121 -76c-35 -26 -66 -46 -77 -53c91 -3 240 -16 240 -114c0 -10 -3 -24 -4 -26 c-2 -10 -4 -20 -4 -30c0 -16 4 -43 29 -43c47 0 74 72 84 106c5 21 8 22 32 22c15 0 32 0 32 -18'], + 0xE7B6: [452,10,833,87,774,'774 128c-5 -20 -43 -136 -169 -136c-55 0 -93 26 -93 83c0 13 1 26 5 41c13 54 21 82 52 138l-372 -254c-11 -7 -21 -10 -29 -10c-25 0 -41 23 -41 46c0 14 6 29 20 39c57 62 124 174 144 255c3 9 4 19 4 28c0 26 -13 47 -47 48c-45 0 -86 -15 -103 -87 c-6 -24 -22 -28 -32 -28c-9 0 -30 3 -24 25c5 20 43 136 170 136c55 0 93 -26 93 -83c0 -12 -2 -26 -6 -41c-14 -54 -21 -82 -53 -138c189 133 255 173 374 253c7 5 14 6 21 6c14 0 26 -7 31 -13c6 -7 10 -21 10 -35c0 -13 -4 -26 -12 -32c-58 -62 -125 -174 -146 -255 c-2 -9 -3 -18 -3 -26c0 -27 12 -49 46 -50c45 0 86 15 104 87c6 24 22 28 32 28s29 -3 24 -25'], + 0xE7B7: [694,12,762,61,722,'722 10c0 -18 -16 -18 -34 -18h-55c-29 0 -58 5 -67 21l-128 249l-272 -250c-14 -13 -32 -24 -51 -24c-31 0 -54 26 -54 54c0 32 22 48 54 71l131 96l160 115c-6 13 -23 45 -30 58l-88 171c-36 71 -47 91 -87 95c-5 1 -23 2 -23 22c0 24 20 24 49 24 c139 0 152 -26 163 -47l299 -581c10 -20 16 -31 26 -42c4 -4 7 -7 7 -14'], + 0xE7B8: [452,210,798,53,753,'753 148c0 -6 -33 -156 -141 -156c-53 0 -111 21 -131 59c-72 -59 -130 -59 -154 -59c-34 0 -78 5 -110 16l-36 -146c-5 -19 -18 -72 -75 -72c-36 0 -53 26 -53 49c0 10 2 17 4 25l132 524c16 62 61 64 73 64c25 0 52 -15 52 -50c0 -8 -9 -42 -14 -63l-18 -73l-18 -73 c-8 -30 -13 -51 -13 -76c0 -26 3 -79 84 -79c82 0 140 79 142 90c4 14 8 28 11 43c3 9 9 33 11 43l43 173c11 42 48 57 72 57c25 0 52 -15 52 -50c0 -8 -9 -46 -15 -69l-42 -168c-7 -26 -17 -66 -17 -79c0 -15 3 -40 27 -40c39 0 57 61 70 106c5 21 8 22 32 22 c15 0 32 0 32 -18'], + 0xE7B9: [452,0,649,59,665,'665 402c0 -19 -26 -141 -159 -243c-148 -114 -325 -151 -391 -159h-29c-27 0 -27 22 -27 22c0 5 1 11 2 15l84 333c1 3 3 13 3 13c0 5 -15 5 -33 5c-12 0 -35 0 -35 22c0 33 24 34 36 35l134 6c2 1 3 1 8 1c25 0 25 -22 25 -22c0 -5 -1 -11 -2 -15l-88 -351l17 5 c18 7 53 19 92 41c141 79 208 177 239 285c14 47 52 57 72 57c25 0 52 -15 52 -50'], + 0xE7BA: [707,202,585,36,540,'540 567c0 -61 -89 -61 -121 -61c-27 0 -57 0 -83 34c-64 -41 -91 -108 -91 -155c0 0 0 -31 13 -53c48 15 88 15 108 15c39 0 107 0 107 -47c0 -61 -87 -61 -126 -61c-22 0 -71 0 -122 18l-8 2c-12 0 -86 -64 -86 -119c0 -42 55 -59 112 -77l73 -22l133 -41 c32 -11 59 -34 59 -80c0 -51 -43 -122 -125 -122c-28 0 -64 5 -90 12c-38 10 -62 17 -62 35c0 11 11 24 24 24c5 0 10 -2 16 -4c35 -14 73 -21 111 -21c6 0 25 0 25 22c0 6 -3 11 -10 15l-178 55c-60 18 -108 33 -140 65c-15 14 -43 42 -43 92c0 40 24 126 127 196 c-28 24 -52 57 -52 104c0 49 31 159 203 207c-1 7 -1 10 -1 21c0 39 6 86 42 86c19 0 28 -16 28 -27c0 0 0 -7 -2 -14c-4 -17 -7 -38 -8 -55c26 3 38 3 59 3c40 0 108 0 108 -47zM474 562c0 6 -44 6 -44 6c-29 0 -44 -6 -44 -6c0 -10 28 -10 34 -10c43 0 54 10 54 10z M409 296c-17 4 -19 5 -47 5c-12 0 -28 0 -49 -4c-12 -2 -7 -2 -14 -4c19 -8 39 -8 52 -8c42 0 48 4 58 11'], + 0xE7BB: [444,9,780,42,752,'752 399c0 -25 -15 -41 -22 -47c-19 -16 -33 -16 -54 -16h-135c-3 -21 -3 -54 -3 -54c0 -26 0 -105 52 -179c9 -14 16 -24 16 -40c0 -36 -40 -72 -75 -72c-56 0 -83 94 -83 166c0 66 19 145 27 179h-114l-56 -216c-10 -38 -22 -75 -26 -84c-10 -22 -35 -44 -65 -44 c-37 0 -55 27 -55 50c0 16 8 30 18 47c30 51 89 158 117 247h-66c-87 0 -110 -25 -126 -43c-7 -8 -9 -8 -29 -8c-16 0 -31 0 -31 18c0 16 50 66 74 86c66 55 113 55 137 55h441c18 0 58 0 58 -45'], + 0xE7BC: [452,210,680,53,656,'656 278c0 -128 -109 -286 -312 -286c-43 0 -87 10 -121 37l-40 -161c-8 -27 -8 -29 -13 -39c-12 -25 -40 -39 -64 -39c-36 0 -53 26 -53 49c0 10 2 17 4 25l91 362c34 134 150 226 300 226c132 0 208 -68 208 -174zM531 322c0 64 -42 84 -86 84c-22 0 -72 -5 -117 -54 c-34 -39 -47 -91 -60 -140l-29 -116c22 -51 77 -58 104 -58c57 0 109 32 137 88c28 54 51 164 51 196'], + 0xE7BD: [444,8,772,55,744,'744 399c0 -22 -13 -40 -22 -47c-19 -16 -33 -16 -54 -16h-101c9 -24 13 -50 13 -72c0 -136 -110 -272 -312 -272c-131 0 -213 60 -213 165c0 109 102 287 317 287h314c18 0 58 0 58 -45zM459 268c0 49 -28 68 -105 68c-68 0 -106 -15 -136 -54 c-30 -38 -47 -128 -47 -159c0 -58 34 -85 100 -85c51 0 101 21 133 61c42 54 55 151 55 169'], + 0xE7BE: [444,12,609,42,681,'681 399c0 -25 -15 -41 -22 -47c-19 -16 -33 -16 -54 -16h-204l-45 -279c-11 -69 -69 -69 -74 -69c-31 0 -53 21 -53 49c0 13 17 61 46 143l52 156h-99c-87 0 -110 -25 -126 -43c-7 -8 -9 -8 -29 -8c-16 0 -31 0 -31 18c0 16 54 69 72 85c68 56 114 56 138 56h371 c18 0 58 0 58 -45'], + 0xE7BF: [453,8,722,44,684,'684 353c0 -17 -7 -157 -101 -261c-66 -72 -129 -100 -199 -100c-85 0 -227 16 -227 149c0 23 0 47 57 185c7 19 15 37 15 56c0 24 -11 24 -17 24c-43 0 -86 -49 -103 -106c-6 -20 -8 -22 -33 -22c-15 0 -32 0 -32 18c0 29 60 156 174 156c64 0 129 -32 129 -92 c0 -16 -5 -28 -14 -49c-41 -101 -55 -144 -55 -184c0 -37 10 -89 114 -89c131 0 214 187 214 230c0 22 -16 37 -46 54c-12 7 -33 18 -33 50c0 40 41 81 80 81c21 0 77 -16 77 -100'], + 0xE7C0: [694,202,799,69,764,'764 264c0 -116 -117 -264 -365 -276c-4 0 -8 0 -9 -3c-1 -2 -10 -38 -15 -58l-22 -86c-8 -32 -8 -34 -10 -36c-7 -6 -8 -7 -28 -7c-13 0 -31 0 -31 18c0 4 37 154 42 172c-185 10 -257 97 -257 192c0 116 117 264 365 276c5 0 7 0 9 3l4 15l50 196c6 22 6 24 33 24 c13 0 31 0 31 -18l-54 -220c185 -10 257 -97 257 -192zM651 285c0 89 -69 120 -156 125l-93 -375c236 16 249 221 249 250zM431 409c-236 -16 -249 -221 -249 -250c0 -79 54 -119 155 -125'], + 0xE7C1: [452,202,807,42,762,'762 -119c0 -8 -17 -83 -132 -83c-156 0 -185 44 -234 154c-18 38 -4 11 -37 94l-119 -106l-123 -112c-21 -18 -25 -22 -38 -22c-17 0 -29 13 -29 29c0 14 11 24 18 30l272 245c-25 76 -49 142 -86 196c-35 50 -72 100 -98 100c-14 0 -40 -10 -51 -41 c-5 -14 -12 -14 -31 -14c-16 0 -32 0 -32 18c0 5 16 83 132 83s153 -27 178 -53c5 -6 54 -71 92 -196l125 111l122 111c14 12 21 19 34 19c15 0 29 -11 29 -29c0 -6 0 -15 -19 -32l-270 -242c40 -126 60 -161 106 -224c15 -22 52 -73 78 -73c3 0 35 0 51 42 c5 13 11 13 31 13c16 0 31 0 31 -18'], + 0xE7C2: [694,202,864,44,826,'826 353c0 -39 -16 -105 -27 -135c-42 -108 -179 -226 -343 -226l-45 -182c-4 -12 -15 -12 -31 -12c-14 0 -31 0 -31 18c0 3 7 29 10 44c17 64 17 66 34 134c-68 3 -235 23 -235 155c0 16 0 42 52 169c13 29 19 45 19 64c0 24 -11 24 -17 24c-43 0 -86 -49 -103 -106 c-6 -20 -8 -22 -33 -22c-15 0 -32 0 -32 18c0 29 60 156 174 156c64 0 129 -32 129 -92c0 -16 -5 -28 -16 -55c-36 -87 -51 -132 -51 -162c0 -61 43 -93 125 -102l157 628c6 22 6 25 33 25c14 0 32 0 32 -18c0 0 0 -3 -4 -17l-155 -621c169 6 280 170 280 230 c0 22 -17 38 -47 54c-11 7 -32 18 -32 50c0 40 41 81 80 81c21 0 77 -16 77 -100'], + 0xE7C3: [452,8,814,35,772,'772 353c0 -39 -11 -84 -22 -127c-30 -121 -131 -234 -244 -234c-64 0 -115 27 -145 71c-47 -43 -106 -71 -165 -71c-101 0 -161 77 -161 176c0 21 3 44 9 67c17 69 51 139 101 199c9 11 22 16 33 16c7 0 14 -2 19 -5c10 -6 15 -16 15 -27c0 -9 -4 -18 -10 -26 c-43 -51 -82 -107 -97 -166c-2 -9 -3 -17 -3 -24c0 -55 51 -90 115 -90c39 0 80 12 113 34c-1 9 -2 18 -2 27c0 20 3 40 8 62c9 33 41 61 73 61c31 0 51 -23 51 -52c0 -6 0 -12 -2 -18c-7 -29 -19 -57 -34 -83c25 -21 62 -31 103 -31c71 0 144 53 162 123c1 6 2 12 2 18 c0 32 -21 56 -48 73c-17 10 -25 28 -25 47c0 15 5 32 17 47c17 21 42 32 65 32c11 0 22 -3 31 -8c31 -20 41 -52 41 -91'], + 0xE7C4: [460,16,595,48,536,'536 385c0 -25 -26 -50 -50 -50c-11 0 -17 4 -26 10c-48 28 -83 28 -112 28c-111 0 -195 -27 -195 -84c0 -18 7 -28 7 -28c62 23 108 23 137 23c36 0 96 0 96 -46c0 -62 -82 -62 -114 -62c-69 0 -98 11 -119 19c-4 2 -6 2 -6 2c-5 0 -42 -36 -42 -68 c0 -58 103 -58 168 -58c66 0 149 1 177 33c8 10 11 14 20 14c3 0 21 -2 21 -22c0 -19 -34 -61 -82 -83c-57 -27 -116 -29 -153 -29c-154 0 -215 63 -215 135c0 58 42 98 61 113c-13 16 -20 39 -20 56c0 70 84 172 280 172c17 0 57 0 105 -20c54 -22 62 -37 62 -55zM327 233 c0 5 -23 5 -35 5c-9 0 -44 0 -76 -9c11 -3 29 -7 63 -7c6 0 48 0 48 11'], + 0xE7C5: [702,8,791,44,742,'742 342c0 -6 0 -28 -21 -28c-4 0 -41 7 -44 7c-38 -144 -143 -329 -330 -329c-105 0 -193 24 -193 130c0 29 13 79 23 118c3 15 10 43 15 62c11 45 13 51 13 64c0 15 -3 40 -27 40c-39 0 -57 -61 -70 -106c-5 -21 -8 -22 -32 -22c-15 0 -32 0 -32 18c0 6 33 156 141 156 c62 0 141 -29 141 -99c0 -11 -6 -34 -10 -51l-14 -58l-20 -76c-9 -39 -9 -59 -9 -62c0 -38 15 -68 84 -68c61 0 105 65 119 87c40 67 60 143 77 219c-90 20 -217 63 -217 182c0 120 111 176 190 176s177 -50 177 -217c0 -16 0 -55 -14 -119l34 -5c5 -1 19 -4 19 -19z M590 548c0 53 -16 108 -67 108c-43 0 -123 -36 -123 -129c0 -64 49 -108 165 -137c6 24 25 105 25 158'], + 0xE7C6: [444,8,1101,42,1072,'1072 399c0 -18 -9 -37 -27 -51c-16 -12 -27 -12 -66 -12c5 -24 5 -48 5 -52c0 -141 -133 -292 -274 -292c-82 0 -134 52 -151 136c-49 -68 -142 -136 -243 -136c-92 0 -137 72 -137 146c0 50 24 124 81 198c-71 0 -119 0 -155 -40c-11 -10 -12 -11 -32 -11 c-16 0 -31 0 -31 18c0 17 55 70 76 88c65 53 112 53 135 53h761c17 0 58 0 58 -45zM921 284c0 20 -3 41 -6 52h-582c-61 -71 -87 -143 -87 -172c0 -43 42 -64 88 -64c64 0 190 40 233 179c5 14 17 14 31 14c12 0 31 0 31 -19c0 0 0 -4 -1 -7c-5 -23 -5 -39 -5 -47 c0 -66 33 -120 106 -120c65 0 192 49 192 184'], + 0xE7C7: [452,194,680,95,656,'531 322c0 64 -42 84 -86 84c-60 0 -110 -37 -135 -78c-33 -56 -55 -163 -55 -201c0 -18 0 -89 90 -89c45 0 103 24 135 88c28 54 51 164 51 196zM656 278c0 -123 -104 -286 -314 -286c-98 0 -143 37 -168 66c-8 -43 -8 -63 -8 -71c0 -27 0 -41 47 -49 c36 -5 59 -5 122 -5c124 0 189 0 189 -67c0 -13 -4 -34 -7 -43c-4 -17 -12 -17 -31 -17c-18 0 -30 0 -32 19c0 4 0 5 -12 6h-21c-9 0 -29 0 -67 -3c-28 -3 -47 -3 -67 -3c-141 0 -192 26 -192 117c0 92 56 297 60 308c46 133 165 202 293 202c132 0 208 -68 208 -174'], + 0xE7C8: [452,105,493,46,515,'515 407c0 -10 -10 -33 -34 -33c-6 0 -9 1 -20 6c-48 24 -67 26 -89 26c-127 0 -230 -64 -230 -139c0 -48 46 -68 100 -92c20 -8 39 -17 59 -25c40 -18 42 -18 73 -31c27 -12 73 -32 73 -93c0 -58 -52 -131 -128 -131c-14 0 -32 2 -55 8c-19 5 -33 9 -33 26 c0 9 7 23 24 23c4 0 5 0 14 -3c22 -7 48 -8 48 -8c23 0 27 20 27 29c0 19 -14 25 -29 32l-103 44c-74 32 -94 40 -119 66c-43 42 -47 80 -47 104c0 119 137 236 339 236c20 0 130 0 130 -45'], + 0xE7C9: [452,215,842,62,784,'718 258c0 56 -53 86 -111 86c-64 0 -116 -38 -145 -71c-54 -59 -60 -100 -71 -173c52 0 134 0 205 25c89 31 122 85 122 133zM784 284c0 -102 -63 -178 -135 -223c-112 -69 -212 -69 -274 -69l-21 -142c-10 -57 -59 -65 -74 -65c-13 0 -52 8 -52 49c0 10 0 12 11 44 l44 124c-140 23 -221 88 -221 185c0 44 30 159 93 231c23 26 25 26 46 26c14 0 31 0 31 -18c0 -8 -5 -14 -8 -16c-84 -84 -98 -206 -98 -212c0 -36 22 -60 66 -75c36 -13 93 -19 126 -21c26 78 56 164 123 248c28 35 93 102 184 102c90 0 159 -64 159 -168'], + 0xE7CA: [710,16,701,71,727,'547 284c0 47 -24 125 -126 125c-88 0 -134 -41 -157 -75c-34 -54 -59 -183 -59 -210c0 -89 92 -89 120 -89c90 0 139 51 154 69c35 43 68 133 68 180zM727 446c0 -56 -43 -462 -406 -462c-62 0 -126 7 -180 49c-43 33 -70 75 -70 131c0 17 3 128 101 209 c94 77 186 82 240 82c81 0 132 -36 160 -102c20 82 25 120 25 152c0 38 -6 85 -49 121c-22 19 -65 38 -122 38c-81 0 -124 -41 -139 -61c28 -9 37 -32 37 -50c0 -34 -29 -78 -79 -78c-41 0 -56 29 -56 52c0 34 46 183 241 183c156 0 297 -77 297 -264'], + 0xE7CB: [710,0,976,61,928,'928 34c0 -34 -23 -34 -31 -34c-22 0 -47 3 -69 3l-69 1l-79 -1c-24 0 -50 -3 -74 -3c-16 0 -23 14 -23 22c0 0 2 19 10 27c6 6 7 7 33 7c11 0 54 0 54 7c0 4 0 6 -2 14l-24 123h-308l-94 -136c19 -8 43 -8 49 -8c8 0 30 0 30 -22c0 -26 -14 -34 -30 -34 c-27 0 -93 4 -120 4c-32 0 -68 -4 -99 -4c-10 0 -21 9 -21 22c0 34 21 34 36 34c71 1 82 17 96 37l409 588c20 29 30 29 63 29c32 0 44 0 50 -32l116 -604c3 -16 4 -16 15 -17c13 -1 26 -1 39 -1c24 0 43 0 43 -22zM643 256l-56 290l-201 -290h257'], + 0xE7CC: [686,0,969,71,939,'793 541c0 89 -95 89 -118 89h-181c-16 0 -18 0 -24 -1c-5 -1 -6 -2 -10 -16l-58 -233h183c138 0 208 89 208 161zM939 543c0 -80 -79 -159 -225 -184c110 -13 179 -63 179 -140c0 -89 -103 -219 -329 -219h-456c-16 0 -37 0 -37 22c0 6 0 22 13 30c4 4 6 4 36 4 c14 0 33 0 47 1c18 2 19 3 23 18l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 22 34 40 34h433c150 0 238 -56 238 -143zM742 229c0 105 -101 105 -129 105h-223l-69 -278h213c140 0 208 87 208 173'], + 0xE7CD: [679,0,903,67,902,'902 662l-14 -188c-2 -25 -3 -34 -32 -34c-9 0 -31 0 -31 22l1 34c0 102 -41 127 -167 127h-158c-9 0 -22 0 -30 -1l-60 -242h73c83 0 110 14 131 87c6 22 14 23 32 23c9 0 32 0 32 -22c0 -5 0 -7 -4 -21l-52 -205c-5 -21 -7 -28 -33 -28c-9 0 -32 0 -32 22c0 3 0 4 2 9 c0 0 5 23 5 37c0 30 -10 42 -84 42h-84l-67 -268h186c161 0 219 53 286 186c13 25 14 27 36 27c9 0 32 0 32 -22c0 -4 0 -6 -9 -22l-97 -205c-4 -9 -6 -12 -11 -15c-5 -5 -10 -5 -28 -5h-621c-17 0 -37 0 -37 22c0 34 18 34 49 34c14 0 33 0 47 1c18 2 19 3 23 18l135 543 c0 3 -2 3 -7 4c-13 1 -31 1 -44 1c-28 0 -48 0 -48 22c0 8 5 23 11 28c6 6 12 6 30 6h602c15 0 33 0 37 -17'], + 0xE7CE: [686,0,865,84,884,'884 669c0 -9 -4 -26 -18 -39l-588 -569h165c157 0 229 51 283 201c6 18 17 18 31 18c9 0 31 0 31 -22c0 -3 0 -4 -4 -16l-72 -216c-5 -15 -7 -21 -20 -26h-576c-19 0 -32 0 -32 17c0 12 5 29 19 43l589 570h-150c-115 0 -213 -28 -265 -165c-7 -18 -17 -18 -31 -18 c-9 0 -32 0 -32 22c0 0 0 4 5 17l61 190c7 10 19 10 35 10h536c18 0 33 0 33 -17'], + 0xE7CF: [686,0,1087,67,1114,'1114 664c0 -34 -22 -34 -40 -34h-20c-20 0 -50 -3 -56 -3l-138 -553c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22c0 6 0 22 13 30c4 4 6 4 36 4 c15 0 33 0 47 1c18 2 19 3 23 18l63 254h-377l-64 -255c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22c0 6 0 22 13 30c4 4 6 4 36 4c15 0 33 0 47 1 c18 2 19 3 23 18l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 24 34 32 34c25 0 53 -3 79 -3l77 -1l79 1c24 0 50 3 74 3c14 0 23 -11 23 -22c0 -34 -22 -34 -40 -34h-20c-20 0 -50 -3 -56 -3l-60 -242h378l56 227c1 3 3 13 3 13c0 3 0 5 -42 5h-20 c-16 0 -37 0 -37 22c0 34 24 34 32 34c25 0 53 -3 79 -3l77 -1l79 1c24 0 50 3 74 3c14 0 23 -11 23 -22'], + 0xE7D0: [686,0,560,61,593,'593 664c0 -34 -21 -34 -40 -34h-22c-20 0 -39 -1 -59 -3l-142 -569c15 -1 34 -2 46 -2h22c16 0 38 0 38 -22c0 -34 -25 -34 -32 -34c-25 0 -54 2 -79 3l-83 1l-83 -1c-24 -1 -51 -3 -74 -3c-18 0 -24 14 -24 22c0 9 4 22 11 28c6 6 10 6 30 6h22c14 0 27 0 41 1 c16 2 17 3 21 18l138 553c-8 0 -40 2 -46 2h-22c-16 0 -37 0 -37 22c0 34 23 34 32 34c24 0 53 -2 78 -3l83 -1l78 1c26 0 54 3 80 3c14 0 23 -11 23 -22'], + 0xE7D1: [686,0,1079,67,1097,'1097 664c0 -33 -22 -34 -30 -34c-60 -1 -80 -11 -108 -24c-22 -10 -24 -12 -24 -12l-286 -179l216 -342c8 -13 11 -17 55 -17c16 0 38 0 38 -22c0 0 -3 -19 -8 -25c-7 -9 -16 -9 -23 -9c-18 0 -40 2 -58 3c-16 1 -48 1 -64 1l-78 -1c-24 -1 -51 -3 -74 -3 c-19 0 -24 16 -24 22c0 34 24 34 35 34c0 0 24 0 41 3l-177 280l-151 -94l-43 -171c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22c0 6 0 22 13 30 c4 4 6 4 36 4c14 0 33 0 47 1c18 2 19 3 23 18l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 24 34 32 34c25 0 53 -3 79 -3l77 -1l79 1c24 0 50 3 74 3c14 0 23 -11 23 -22c0 -34 -22 -34 -40 -34h-20c-20 0 -50 -3 -56 -3l-76 -304l486 304c-9 1 -36 3 -38 4 c0 0 -18 3 -18 21c0 34 23 34 31 34c21 0 48 -2 69 -3c17 -1 52 -1 69 -1c26 0 57 4 82 4c8 0 20 -8 20 -22'], + 0xE7D2: [686,0,1264,74,1320,'1320 664c0 -34 -22 -34 -40 -34h-20c-20 0 -50 -3 -56 -3l-138 -553c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34l-70 3c-18 1 -58 1 -77 1l-70 -1c-23 0 -49 -3 -72 -3c-18 0 -23 15 -23 22c0 6 0 22 13 30c4 4 6 4 36 4 c15 0 33 0 47 1c18 2 19 3 23 18l137 551h-1l-447 -600c-19 -26 -39 -26 -48 -26c-28 0 -31 13 -36 34l-144 578h-1l-132 -531c-1 -6 -3 -11 -4 -17c21 -7 44 -8 61 -8c16 0 37 0 37 -22c0 -27 -15 -34 -30 -34c-26 0 -93 4 -119 4c-36 0 -81 -4 -115 -4 c-15 0 -22 13 -22 22s4 23 10 29c7 5 13 5 26 5c4 0 34 0 56 5c24 5 26 7 30 23l134 541c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 22 34 40 34h192c33 0 40 -4 47 -34l131 -531l401 537c21 28 37 28 60 28h181c16 0 37 0 37 -22'], + 0xE7D3: [686,0,1051,67,1114,'1114 664c0 -34 -21 -34 -41 -34c-11 0 -50 0 -77 -13l-147 -587c-6 -26 -8 -30 -38 -30c-22 0 -23 1 -35 17l-391 567l-126 -503c-1 -6 -3 -11 -4 -17c21 -7 44 -8 61 -8c16 0 37 0 37 -22c0 -27 -15 -34 -30 -34c-26 0 -93 4 -119 4c-36 0 -81 -4 -115 -4 c-15 0 -22 13 -22 22s4 23 10 29c7 5 13 5 26 5c4 0 34 0 56 5c24 5 26 7 30 23l136 545c-11 1 -26 1 -38 1h-26c-16 0 -37 0 -37 22c0 34 22 34 40 34h190c26 0 27 -1 39 -18l326 -473l107 427c-10 3 -26 8 -66 8c-11 0 -33 0 -33 22c0 14 5 34 30 34c27 0 93 -4 120 -4 c36 0 81 4 115 4c12 0 22 -10 22 -22'], + 0xE7D4: [452,8,657,59,632,'632 272c0 -121 -110 -280 -339 -280c-154 0 -234 73 -234 180c0 121 110 280 339 280c154 0 234 -73 234 -180zM505 312c0 16 -1 49 -29 71c-25 19 -58 23 -80 23c-59 0 -112 -25 -143 -65c-52 -66 -67 -188 -67 -209c0 -16 1 -49 29 -71c25 -19 58 -23 80 -23 c59 0 112 25 143 65c52 66 67 188 67 209'], + 0xE7D5: [702,16,938,65,906,'906 433c0 -200 -170 -449 -509 -449c-198 0 -332 88 -332 264c0 193 168 454 511 454c194 0 330 -89 330 -269zM756 473c0 78 -28 111 -52 134c-12 10 -56 44 -141 44c-92 0 -178 -40 -232 -102c-95 -112 -111 -292 -111 -326c0 -56 15 -106 50 -137 c49 -46 111 -49 140 -49c108 0 193 57 237 115c90 117 109 277 109 321'], + 0xE7D6: [686,0,802,68,934,'934 525c0 -110 -121 -233 -349 -233h-195l-55 -218c-1 -3 -3 -13 -3 -13s1 -3 8 -4c13 -1 31 -1 44 -1c28 0 47 0 47 -22c0 -34 -24 -34 -31 -34c-26 0 -54 3 -80 3l-77 1l-78 -1c-24 0 -50 -3 -74 -3c-18 0 -23 14 -23 22c0 6 0 22 13 30c4 4 6 4 36 4c15 0 33 0 47 1 c18 2 19 3 23 18l137 550c0 3 0 5 -42 5h-20c-16 0 -37 0 -37 22c0 34 22 34 40 34h418c152 0 251 -59 251 -161zM780 548c0 61 -56 82 -144 82h-139c-16 0 -18 0 -24 -1c-5 -1 -6 -2 -10 -16l-67 -270h168c51 0 120 8 160 47c49 49 56 158 56 158'], + 0xE7D7: [673,0,719,39,860,'860 651c0 0 -1 -9 -2 -15l-21 -170c-4 -32 -16 -32 -34 -32c-9 0 -31 0 -31 23c0 4 2 17 3 21c3 25 3 27 3 48c0 91 -52 91 -159 91c-22 0 -61 0 -65 -2c0 0 -2 -2 -6 -15l-136 -542l65 -2h42c16 0 38 0 38 -22c0 -34 -24 -34 -33 -34c-32 0 -66 2 -98 3l-102 1l-98 -1 c-32 0 -66 -3 -97 -3c-21 0 -25 17 -25 22c0 9 4 22 11 28c6 6 10 6 30 6h42c25 0 66 0 75 4c0 0 2 2 6 16l135 541h-94c-129 0 -163 -49 -204 -155c-9 -24 -10 -28 -34 -28c-10 0 -32 0 -32 22c0 4 3 15 5 19l65 174c9 24 16 24 40 24h673c16 0 38 0 38 -22'], + 0xE7D8: [686,0,1053,57,1036,'1036 664c0 -8 -4 -34 -24 -34c-103 -1 -114 -11 -169 -60l-168 -154l-31 -29l7 -12l176 -304c7 -12 8 -13 24 -14c13 -1 26 -1 39 -1c22 0 43 0 43 -22c0 -28 -17 -34 -31 -34c-22 0 -48 3 -71 3l-69 1l-82 -1c-23 -1 -51 -3 -74 -3c-17 0 -24 13 -24 22 c0 30 19 33 26 34c12 1 35 2 52 4l-131 224l-243 -221c14 -4 27 -7 47 -7c26 -1 26 -22 26 -22c0 -27 -16 -34 -31 -34c-22 0 -47 2 -69 3l-69 1c-25 0 -86 -4 -111 -4c-12 0 -22 10 -22 22c0 34 21 34 39 34c81 1 108 19 128 37l273 248l-160 274c-7 12 -8 13 -24 14 c-13 1 -26 1 -39 1c-22 0 -42 0 -42 22c0 34 24 34 31 34c22 0 47 -3 70 -3l69 -1l83 1c19 1 57 3 74 3c11 0 23 -7 23 -22c0 -7 -2 -33 -26 -34c-27 -1 -31 -1 -52 -4l106 -182l197 179c-15 5 -29 7 -43 7c-8 0 -29 1 -29 22c0 34 24 34 31 34c21 0 46 -2 68 -3l69 -1 c25 0 86 4 111 4c9 0 22 -6 22 -22'], + 0xE7D9: [715,0,1147,93,1068,'1068 42c0 -7 -5 -25 -8 -30c-7 -12 -19 -12 -27 -12c-22 0 -47 3 -70 3l-77 1l-83 -1c-24 0 -50 -3 -74 -3c-12 0 -25 9 -25 25c0 28 12 40 31 42c17 1 51 1 73 2l-31 147h-353l-102 -144c5 -1 31 -5 50 -5c8 0 35 0 35 -25c0 -3 -4 -24 -8 -30c-8 -12 -19 -12 -27 -12 c-22 0 -46 3 -68 3l-69 1c-20 0 -41 -1 -61 -1c-18 0 -39 -3 -57 -3c-12 0 -24 12 -24 25c0 0 4 23 11 32c6 10 17 10 28 10c82 0 91 13 104 31l416 585c21 29 32 32 63 32h72c26 0 42 0 49 -34l128 -613c13 -1 28 -1 41 -1h23c16 0 40 0 40 -25zM763 283l-66 317l-225 -317 h291'], + 0xE7DA: [686,0,1134,115,1065,'914 530c0 42 -34 89 -146 89h-229c-9 0 -19 0 -26 -1l-58 -233h223c155 0 236 80 236 145zM1065 539c0 -85 -90 -154 -239 -180c119 -14 200 -63 200 -142c0 -91 -117 -217 -363 -217h-508c-16 0 -40 0 -40 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l137 549 c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 6 3 26 10 34c8 8 15 8 34 8h482c154 0 269 -52 269 -147zM868 220c0 109 -133 109 -160 109h-267l-65 -262h257c147 0 235 70 235 153'], + 0xE7DB: [678,0,1057,106,1020,'1020 511c0 -37 -9 -39 -42 -39c-25 0 -41 0 -42 32c-3 52 -27 85 -69 96c-35 9 -94 11 -123 11h-199c-9 0 -19 0 -26 -1l-56 -225h97c83 0 113 9 131 63c7 20 17 20 42 20c16 0 42 0 42 -25l-4 -16l-40 -162c-7 -30 -14 -30 -44 -30c-19 0 -42 0 -42 25c0 6 3 16 3 21 c0 27 -8 37 -92 37h-110l-62 -251h222c150 0 224 24 299 147c9 15 14 15 40 15c19 0 42 0 42 -25c0 -7 -11 -26 -18 -39l-86 -148c-10 -17 -14 -17 -39 -17h-698c-16 0 -40 0 -40 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l135 541c-11 1 -26 1 -37 1h-32 c-17 0 -40 0 -40 25c0 6 3 26 10 34c8 8 15 8 34 8h677c34 0 40 -6 40 -39v-128'], + 0xE7DC: [686,0,1018,119,1004,'1004 667c0 -3 -2 -31 -21 -47l-646 -547h195c94 0 223 6 281 139c12 28 13 28 45 28c17 0 42 0 42 -25c0 -6 -66 -184 -73 -201c-7 -14 -19 -14 -38 -14h-636c-18 0 -34 0 -34 19c0 7 4 23 6 30c3 9 4 10 16 20l648 550h-182c-78 0 -123 -11 -150 -20 c-81 -30 -104 -79 -115 -105c-7 -14 -18 -14 -40 -14c-16 0 -42 0 -42 25c0 0 0 5 5 18l48 135c9 26 13 28 42 28h614c19 0 35 0 35 -19'], + 0xE7DD: [686,0,1259,106,1250,'1250 661c0 0 -3 -25 -11 -34c-8 -8 -15 -8 -34 -8h-32c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17l-133 -533c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -5 -5 -25 -9 -30c-7 -12 -18 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3 c-13 0 -25 11 -25 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l63 254h-451l-63 -255c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -5 -5 -25 -9 -30c-7 -12 -18 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3c-13 0 -25 11 -25 25c0 4 3 25 11 33 c8 9 13 9 33 9h33l50 2l137 549c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 8 4 24 8 30c7 12 19 12 27 12c27 0 56 -3 83 -3l83 -1l79 1c27 0 55 3 81 3c16 0 26 -14 26 -25c0 0 -3 -25 -11 -34c-8 -8 -15 -8 -34 -8h-32c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17 l-53 -211h451l57 228c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 8 4 24 8 30c7 12 19 12 27 12c27 0 56 -3 83 -3l83 -1l79 1c27 0 55 3 81 3c16 0 26 -14 26 -25'], + 0xE7DE: [686,0,659,100,653,'653 661c0 0 -3 -24 -11 -33s-13 -9 -33 -9h-36c-10 0 -27 0 -37 -1c-14 -1 -15 -2 -19 -17l-133 -533c12 -1 27 -1 39 -1h35c17 0 40 0 40 -25c0 -8 -4 -24 -8 -30c-7 -12 -19 -12 -27 -12c-28 0 -59 3 -88 3l-83 1l-86 -1c-26 0 -54 -3 -80 -3c-17 0 -26 15 -26 25 c0 0 3 25 11 34c8 8 15 8 34 8l81 1c2 1 4 1 7 1l137 549c-12 1 -27 1 -39 1h-36c-14 0 -40 0 -40 25c0 4 4 23 9 30c8 12 17 12 27 12c27 0 56 -3 83 -3l88 -1l86 1c26 0 54 3 80 3c14 0 25 -11 25 -25'], + 0xE7DF: [686,0,1253,106,1237,'1237 661c0 -4 -4 -26 -11 -34c-9 -8 -12 -8 -30 -8c-48 0 -97 -8 -139 -32l-316 -179l253 -325c10 -11 11 -12 23 -14c16 -2 25 -2 40 -2c23 0 45 0 45 -25c0 -8 -5 -25 -8 -29c-7 -13 -19 -13 -26 -13l-63 3l-69 1l-82 -1c-24 0 -50 -3 -74 -3c-17 0 -26 15 -26 25 c0 0 2 32 20 40c9 4 30 1 53 3l-210 270l-193 -109l-40 -161c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -4 -4 -23 -9 -30c-8 -12 -17 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3c-14 0 -25 11 -25 25c0 0 3 24 11 33s13 9 33 9h33l50 2l137 549 c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 8 4 24 8 30c7 12 19 12 27 12c27 0 56 -3 83 -3l83 -1l79 1c27 0 55 3 81 3c17 0 26 -15 26 -25c0 0 -3 -25 -11 -34c-8 -8 -15 -8 -34 -8h-32c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17l-68 -272l508 288v1 c-22 0 -45 2 -45 26c0 8 4 24 8 30c7 12 19 12 27 12c24 0 51 -3 76 -3l83 -1c18 0 37 1 55 1c14 0 53 3 53 3c11 0 23 -10 23 -25'], + 0xE7E0: [686,0,1460,119,1479,'1479 661c0 0 -3 -25 -11 -33c-8 -9 -14 -9 -33 -9h-33c-15 0 -19 0 -35 -1c-14 -1 -15 -2 -19 -17l-133 -533c13 -1 24 -1 36 -1h33c16 0 40 0 40 -25c0 -5 -4 -24 -9 -30c-7 -12 -18 -12 -27 -12c-24 0 -51 3 -76 3l-77 1l-73 -1c-25 0 -51 -3 -75 -3 c-14 0 -25 11 -25 25c0 5 4 26 10 34c8 8 15 8 34 8h33l50 2l137 547h-1l-472 -589c-22 -27 -47 -27 -60 -27c-24 0 -39 2 -49 34l-171 567h-1l-132 -528c27 -6 62 -6 68 -6c17 0 40 0 40 -25c0 -5 -4 -24 -8 -30c-8 -12 -20 -12 -27 -12l-69 3l-69 1l-65 -1 c-22 0 -46 -3 -67 -3c-11 0 -24 10 -24 25c0 6 4 25 10 32c6 10 15 10 36 10c8 0 49 0 82 9l136 542c-11 1 -26 1 -37 1h-33c-14 0 -40 0 -40 25c0 0 4 25 11 34c8 8 15 8 34 8h204c26 0 42 0 52 -34l165 -546l444 553c22 27 46 27 64 27h192c14 0 40 0 40 -25'], + 0xE7E1: [686,0,1218,106,1250,'1250 661c0 -3 -4 -24 -10 -32c-7 -10 -15 -10 -38 -10c-4 0 -48 0 -81 -9l-145 -580c-7 -30 -13 -30 -48 -30c-32 0 -33 0 -47 18l-431 547l-123 -492c27 -6 62 -6 65 -6c18 0 43 0 43 -25c0 -14 -5 -42 -35 -42l-69 3l-69 1l-65 -1c-22 0 -46 -3 -67 -3 c-11 0 -24 10 -24 25c0 6 4 25 9 32c9 10 15 10 37 10c8 0 49 0 82 9l136 542c-7 1 -17 1 -26 1h-43c-17 0 -40 0 -40 25c0 6 3 26 10 34c8 8 15 8 34 8h194c25 0 27 0 40 -16l382 -485l106 425c0 4 -1 5 -28 7c-17 2 -35 2 -38 2c-17 0 -40 0 -40 25c0 23 9 42 34 42 c22 0 47 -3 69 -3l69 -1l65 1c22 0 46 3 67 3c14 0 25 -13 25 -25'], + 0xE7E2: [454,10,779,89,728,'728 266c0 -118 -115 -276 -372 -276c-189 0 -267 86 -267 188c0 118 115 276 372 276c189 0 267 -86 267 -188zM589 300c0 72 -52 98 -131 98c-78 0 -131 -31 -154 -54c-69 -67 -76 -187 -76 -200c0 -72 52 -98 131 -98c78 0 131 31 154 54c69 67 76 187 76 200'], + 0xE7E3: [705,19,1103,95,1044,'1044 423c0 -202 -186 -442 -563 -442c-254 0 -386 109 -386 276c0 183 173 448 566 448c233 0 383 -97 383 -282zM884 453c0 26 0 106 -75 152c-59 35 -123 38 -164 38c-379 0 -384 -380 -384 -399c0 -156 117 -199 236 -199c334 0 387 322 387 408'], + 0xE7E4: [686,0,937,110,1060,'1060 517c0 -127 -163 -235 -373 -235h-246l-53 -214c13 -1 24 -1 36 -1h33c14 0 40 0 40 -25c0 -5 -4 -24 -9 -30c-7 -12 -18 -12 -27 -12c-27 0 -56 3 -83 3l-83 1l-80 -1c-26 0 -54 -3 -80 -3c-13 0 -25 11 -25 25c0 4 3 25 11 33c8 9 13 9 33 9h33l50 2l137 549 c-11 1 -26 1 -37 1h-32c-17 0 -40 0 -40 25c0 6 3 26 10 34c8 8 15 8 34 8h466c169 0 285 -62 285 -169zM895 530c0 40 -14 57 -48 72c-32 14 -81 17 -115 17h-189c-9 0 -19 0 -26 -1l-68 -275h214c61 0 119 9 164 36c48 31 68 110 68 151'], + 0xE7E5: [669,0,857,78,992,'992 629l-10 -131c-3 -35 -14 -35 -43 -35c-22 0 -42 0 -42 28c0 7 0 16 1 20c-1 73 -25 91 -128 91h-110c-17 0 -19 0 -23 -1c-2 -1 -3 -2 -7 -16l-125 -500c-2 -9 -3 -11 -3 -14c0 0 1 -3 26 -3c10 0 19 -1 29 -1h61c16 0 40 0 40 -25c0 -6 -4 -25 -9 -31 c-7 -11 -17 -11 -28 -11c-33 0 -68 3 -101 3l-111 1l-110 -1c-32 0 -66 -3 -97 -3c-19 0 -27 14 -27 25c0 6 3 26 10 34c8 8 15 8 34 8h61c23 0 60 0 67 3c0 0 2 2 6 15l130 517h-124c-102 0 -150 -18 -195 -114c-11 -25 -12 -25 -44 -25c-19 0 -42 0 -42 25c0 4 0 5 6 19 l58 137c11 25 17 25 42 25h769c26 0 42 0 39 -40'], + 0xE7E6: [686,0,1223,93,1164,'1164 661c0 0 -4 -23 -11 -32c-6 -10 -14 -10 -36 -10c-91 0 -111 -17 -130 -33l-251 -208l211 -298c8 -10 9 -11 23 -12c13 -1 15 -1 33 -1h26c14 0 40 0 40 -25c0 -8 -2 -42 -35 -42c-23 0 -49 3 -73 3l-77 1l-83 -1c-26 0 -54 -3 -80 -3c-15 0 -26 13 -26 25 c0 14 7 34 19 40c10 4 13 0 56 4l-150 212l-254 -211c15 -2 28 -2 43 -3c12 -1 23 -12 23 -25c0 -5 -4 -24 -9 -30c-7 -12 -18 -12 -27 -12c-24 0 -50 3 -74 3l-77 1l-66 -1c-20 0 -42 -3 -62 -3c-11 0 -24 10 -24 25c0 6 4 25 10 32c6 10 14 10 36 10c83 0 109 14 131 33 l301 250l-182 256c-8 10 -9 11 -23 12c-16 1 -18 1 -33 1h-25c-17 0 -40 0 -40 25c0 5 4 24 8 30c8 12 20 12 27 12c23 0 49 -3 73 -3l77 -1l83 1c26 0 54 3 80 3c12 0 25 -9 25 -25c0 0 -1 -32 -19 -40c-10 -4 -20 0 -56 -4l121 -170l203 169c-15 2 -28 2 -43 3 c-12 1 -23 12 -23 25c0 3 4 24 9 30c8 12 17 12 27 12c24 0 50 -3 74 -3l77 -1l66 1c20 0 42 3 62 3c15 0 25 -14 25 -25'], + 0xE7E7: [686,24,1081,75,1010,'1009 666l-570 -662c-24 -28 -38 -28 -70 -28s-46 0 -56 28l-238 662c5 20 12 20 35 20h874c23 0 30 0 25 -20zM833 559h-547l162 -448'], + 0xE7E8: [686,29,1275,109,1169,'1169 670c-1 -4 -2 -6 -14 -18l-582 -650c-24 -26 -36 -31 -70 -31h-77c-24 0 -43 0 -55 30l-259 652c-1 5 -4 10 -2 17c4 16 18 16 36 16h995c18 0 32 0 28 -16zM957 555h-626l192 -485'], + 0xE7E9: [703,20,877,70,806,'806 338c0 -196 -163 -358 -368 -358s-368 162 -368 358c0 200 163 365 368 365c204 0 368 -165 368 -365zM704 384c-17 203 -150 291 -266 291s-249 -88 -266 -291h532zM705 302h-534c15 -208 153 -292 267 -292s252 83 267 292'], + 0xE7EA: [698,12,1002,75,926,'926 339c0 -185 -136 -351 -426 -351c-286 0 -425 163 -425 351c0 186 134 359 426 359c289 0 425 -171 425 -359zM772 409c-6 48 -20 104 -54 147c-60 76 -145 96 -218 96c-81 0 -161 -28 -211 -88c-37 -45 -53 -99 -60 -155h543zM773 279h-545c5 -48 18 -105 53 -148 c64 -81 158 -95 219 -95c207 0 260 137 273 243'], + 0xE7EB: [703,20,869,69,829,'829 425c0 -227 -231 -445 -469 -445c-172 0 -291 113 -291 274c0 225 231 449 470 449c177 0 290 -121 290 -278zM735 452c0 150 -94 223 -203 223c-89 0 -184 -51 -249 -126c-45 -53 -74 -111 -93 -166h539c4 28 6 52 6 69zM709 303h-539c-5 -28 -7 -54 -7 -74 c0 -155 103 -219 204 -219c85 0 180 44 249 123c46 54 76 114 93 170'], + 0xE7EC: [702,16,972,65,939,'939 429c0 -203 -177 -445 -525 -445c-234 0 -349 110 -349 267c0 187 167 451 528 451c190 0 346 -79 346 -273zM799 458c0 158 -117 198 -218 198c-149 0 -228 -81 -256 -109c-33 -34 -61 -85 -81 -139h551c3 24 4 42 4 50zM764 280h-553c-3 -19 -4 -37 -4 -54 c0 -26 0 -95 57 -145c58 -49 142 -49 162 -49c105 0 201 42 263 114c35 41 59 88 75 134'], + 0xE7ED: [705,22,1028,97,930,'930 339c0 -194 -180 -361 -417 -361c-233 0 -416 165 -416 361c0 195 179 366 417 366c235 0 416 -169 416 -366zM818 388c-20 186 -158 284 -305 284c-141 0 -283 -95 -304 -284h609zM819 298h-611c18 -188 157 -286 306 -286c144 0 287 95 305 286'], + 0xE7EE: [703,17,1161,98,1063,'1063 338c0 -169 -132 -355 -483 -355c-346 0 -482 183 -482 355c0 174 134 365 483 365c344 0 482 -188 482 -365zM902 413c-28 160 -150 234 -322 234c-164 0 -292 -69 -321 -234h643zM904 277h-647c25 -167 154 -235 324 -235c163 0 297 63 323 235'], + 0xE7EF: [705,22,1048,114,967,'967 417c0 -223 -248 -439 -517 -439c-204 0 -336 124 -336 285c0 218 245 442 518 442c204 0 335 -127 335 -288zM864 438c0 151 -106 233 -241 233c-179 0 -323 -131 -379 -284h617c2 17 3 34 3 51zM839 297h-618c-3 -18 -4 -35 -4 -53c0 -158 114 -231 242 -231 c179 0 324 127 380 284'], + 0xE7F0: [705,19,1142,96,1082,'1082 420c0 -194 -184 -439 -582 -439c-251 0 -404 99 -404 280c0 184 179 444 584 444c278 0 402 -123 402 -285zM935 437c0 163 -130 212 -269 212c-229 0 -338 -124 -387 -239h655c1 11 1 20 1 27zM903 280h-658c-1 -13 -2 -24 -2 -34c0 -153 120 -206 271 -206 c239 0 344 127 389 240'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/NonUnicode/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Normal/Regular/Main.js new file mode 100644 index 0000000..4259a3b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Normal/Regular/Main.js @@ -0,0 +1,370 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'LatinModernMathJax_Normal', + id: 'LATINMODERNNORMAL', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x210E: [694,11,576,55,546,'546 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 5 32 13 55c24 61 62 170 62 224c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90l-19 -76c-5 -14 -21 -26 -37 -26c-9 0 -29 5 -29 28 c0 6 0 8 4 22l145 576l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-78 -318c37 46 85 77 148 77c75 0 115 -42 115 -107c0 -58 -45 -177 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10'], + 0x1D400: [698,0,869,41,827,'827 0c-35 3 -123 3 -163 3c-43 0 -138 0 -176 -3v47h95l-60 146h-268l-50 -121l-4 -12c0 -13 89 -13 89 -13v-47c-37 3 -93 3 -132 3l-117 -3v47h21c76 0 79 8 85 23l248 602c7 18 11 26 39 26c17 0 29 0 40 -26l256 -625h97v-47zM503 240l-114 278l-114 -278h228'], + 0x1D401: [686,0,818,39,753,'753 186c0 -98 -84 -186 -250 -186h-464v47h108v592h-108v47h434c161 0 248 -80 248 -172c0 -77 -65 -137 -173 -156c119 -9 205 -76 205 -172zM579 514c0 46 -18 125 -119 125h-182v-264h156c97 0 145 62 145 139zM606 187c0 11 0 67 -33 109c-34 43 -81 43 -101 43 h-194v-292h184c144 0 144 128 144 140'], + 0x1D402: [697,11,831,64,766,'766 227c0 -115 -113 -238 -300 -238c-249 0 -402 149 -402 354s153 354 402 354c68 0 135 -18 197 -68l66 59c8 7 10 9 19 9c18 0 18 -9 18 -28v-215c0 -26 -1 -28 -27 -28c-23 0 -24 2 -27 21c-22 127 -117 203 -225 203c-52 0 -139 -11 -204 -77 c-63 -66 -66 -174 -66 -230c0 -90 12 -165 59 -222c52 -61 136 -85 214 -85c101 0 222 61 229 195c1 17 10 17 23 17c17 0 24 -1 24 -21'], + 0x1D403: [686,0,882,39,817,'817 337c0 -214 -150 -337 -347 -337h-431v47h108v592h-108v47h430c198 0 348 -129 348 -349zM670 338c0 93 -8 161 -43 212c-49 70 -132 89 -198 89h-146v-592h146c61 0 149 16 197 84c32 45 44 98 44 207'], + 0x1D404: [680,0,756,39,723,'723 274l-46 -274h-638v47h108v586h-108v47h621l31 -241h-47c-16 121 -42 194 -203 194h-152v-257h55c97 0 106 43 106 117h47v-281h-47c0 74 -10 117 -106 117h-55v-282h152c185 0 213 89 235 227h47'], + 0x1D405: [680,0,724,39,675,'675 439h-47c-15 117 -38 194 -199 194h-140v-269h50c97 0 105 43 105 117h47v-281h-47c0 74 -9 117 -105 117h-50v-270h135v-47c-44 3 -153 3 -202 3c-44 0 -145 0 -183 -3v47h108v586h-108v47h605'], + 0x1D406: [697,11,904,64,845,'845 229h-80v-201c0 -15 0 -28 -14 -28c-7 0 -67 26 -98 53c-50 -62 -153 -64 -186 -64c-258 0 -403 155 -403 354c0 207 155 354 401 354c52 0 124 -10 197 -68l66 59c8 7 10 9 19 9c18 0 18 -9 18 -28v-215c0 -26 -1 -28 -27 -28c-23 0 -24 2 -27 21 c-22 127 -117 203 -224 203c-96 0 -173 -37 -213 -87c-37 -49 -57 -107 -57 -219c0 -91 13 -162 56 -217c49 -62 135 -91 221 -91c32 0 64 6 90 21c39 23 39 52 39 71v101h-144v47c54 -3 147 -3 205 -3c39 0 126 0 161 3v-47'], + 0x1D407: [686,0,900,39,860,'860 0c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v286h-321v-286h108v-47c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v592h-108v47c38 -3 136 -3 179 -3s141 0 179 3v-47h-108v-259h321v259h-108v47c38 -3 136 -3 179 -3s141 0 179 3v-47h-108v-592h108v-47'], + 0x1D408: [686,0,436,33,403,'403 0c-41 3 -139 3 -185 3s-144 0 -185 -3v47h114v592h-114v47c41 -3 139 -3 185 -3s144 0 185 3v-47h-114v-592h114v-47'], + 0x1D409: [686,11,594,23,527,'527 639h-81v-489c0 -104 -96 -161 -230 -161c-114 0 -193 48 -193 125c0 52 40 77 77 77c33 0 76 -23 76 -77c0 -53 -46 -72 -46 -72c31 -14 64 -17 81 -17c99 0 99 105 99 124v490h-141v47c48 -3 146 -3 199 -3c39 0 124 0 159 3v-47'], + 0x1D40A: [686,0,901,39,852,'852 0c-37 3 -106 3 -146 3c-45 0 -135 0 -176 -3v47c35 0 55 0 73 8c-3 6 -3 8 -8 14l-206 271l-100 -83v-210h108v-47c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v592h-108v47c38 -3 136 -3 179 -3s141 0 179 3v-47h-108v-320l370 309c-9 3 3 2 -13 6 c-25 5 -45 5 -58 5v47c36 -3 108 -3 146 -3c5 0 62 0 102 3v-47h-17c-30 0 -72 0 -94 -18l-240 -200l270 -354c12 -16 15 -20 68 -20h29v-47'], + 0x1D40B: [686,0,692,39,643,'643 274l-31 -274h-573v47h108v592h-108v47c38 -3 139 -3 183 -3c49 0 158 0 202 3v-47h-135v-592h103c179 0 196 158 204 227h47'], + 0x1D40C: [686,0,1092,40,1051,'1051 0c-36 3 -130 3 -171 3s-134 0 -170 -3v47h108v592h-1l-279 -615c-4 -9 -12 -24 -32 -24c-11 0 -23 5 -32 25l-272 601h-1v-550c0 -22 1 -23 30 -26c18 -2 35 -3 53 -3h25v-47c-41 3 -93 3 -135 3c-39 0 -96 0 -134 -3v47h25c28 0 30 0 54 3c28 3 29 4 29 26v563 h-108v47h222c22 0 33 0 44 -25l240 -529l240 529c11 25 22 25 44 25h221v-47h-108v-592h108v-47'], + 0x1D40D: [686,0,900,39,860,'860 639h-25c-28 0 -30 0 -54 -3c-28 -3 -29 -4 -29 -26v-578c0 -23 0 -32 -27 -32c-16 0 -17 1 -27 13l-498 586v-523c0 -22 1 -23 30 -26c18 -2 35 -3 53 -3h25v-47c-41 3 -93 3 -135 3c-39 0 -96 0 -134 -3v47h25c28 0 30 0 54 3c28 3 29 4 29 26v563h-108v47h229 c21 0 22 -1 33 -13l398 -468v405c0 22 -1 23 -30 26c-18 2 -35 3 -53 3h-25v47c41 -3 93 -3 135 -3c39 0 96 0 134 3v-47'], + 0x1D40E: [697,11,864,64,799,'799 339c0 -205 -138 -350 -368 -350c-227 0 -367 143 -367 350c0 210 139 358 368 358c222 0 367 -142 367 -358zM646 354c0 68 -4 145 -42 209c-40 66 -109 94 -173 94c-59 0 -126 -25 -167 -86c-44 -68 -47 -153 -47 -217c0 -86 8 -157 41 -219 c41 -76 114 -104 173 -104c54 0 124 22 169 95c42 69 46 158 46 228'], + 0x1D40F: [686,0,786,39,721,'721 491c0 -117 -116 -189 -255 -189h-177v-255h108v-47c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v592h-108v47h417c166 0 265 -85 265 -195zM568 491c0 72 0 148 -150 148h-135v-296h134c151 0 151 77 151 148'], + 0x1D410: [697,194,864,64,805,'805 -8c0 -68 -35 -186 -137 -186c-93 0 -113 79 -141 192c-40 -8 -73 -9 -95 -9c-232 0 -368 146 -368 350c0 210 139 358 368 358c222 0 367 -142 367 -358c0 -109 -43 -257 -207 -321c39 -59 69 -59 92 -59c17 0 79 1 85 39c1 7 3 20 18 20c18 0 18 -18 18 -26z M652 340c0 59 -3 145 -41 212c-48 85 -126 105 -180 105c-45 0 -131 -15 -183 -111c-37 -71 -37 -166 -37 -206c0 -78 3 -230 126 -289c-2 5 -3 16 -3 22c0 48 46 82 97 82c67 0 103 -53 125 -86c96 66 96 215 96 271zM514 45c-20 63 -54 74 -82 74c-33 0 -62 -19 -62 -46 c0 -12 7 -44 62 -44c27 0 57 5 82 16'], + 0x1D411: [686,11,863,39,858,'858 95c0 -16 -13 -106 -120 -106c-41 0 -103 4 -147 26c-70 34 -70 83 -70 149c0 73 0 92 -32 127c-31 34 -75 34 -89 34h-117v-278h108v-47c-36 3 -134 3 -176 3s-140 0 -176 -3v47h108v592h-108v47h380c188 0 298 -84 298 -185c0 -66 -51 -131 -167 -161 c43 -16 98 -47 112 -117c1 -5 9 -74 11 -85c5 -42 14 -113 74 -113c30 0 59 22 64 69c1 13 2 23 23 23c10 0 24 0 24 -22zM564 500c0 61 -2 139 -163 139h-118v-278h116c165 0 165 83 165 139'], + 0x1D412: [697,11,639,64,574,'574 203c0 -101 -62 -214 -227 -214c-41 0 -134 6 -200 55l-46 -46c-8 -7 -10 -9 -19 -9c-18 0 -18 9 -18 28v182c0 23 0 29 24 29c22 0 22 -5 23 -23c8 -149 160 -169 236 -169c104 0 130 69 130 117c0 46 -25 72 -40 87c-22 21 -39 24 -127 43c-109 24 -143 31 -192 80 c-21 22 -54 68 -54 133c0 105 72 201 224 201c48 0 113 -9 171 -55l45 44c11 10 12 11 20 11c18 0 18 -9 18 -28v-183c0 -23 0 -28 -24 -28c-21 0 -21 2 -25 26c-23 136 -124 170 -204 170c-100 0 -128 -62 -128 -105c0 -61 56 -95 96 -104l145 -31 c91 -19 172 -100 172 -211'], + 0x1D413: [675,0,800,42,757,'757 434h-47c-10 114 -20 194 -163 194h-76v-581h153v-47c-54 3 -165 3 -224 3s-170 0 -224 -3v47h153v581h-77c-144 0 -154 -81 -163 -194h-47l21 241h673'], + 0x1D414: [686,11,885,39,845,'845 639h-25c-28 0 -30 0 -54 -3c-28 -3 -29 -4 -29 -26v-381c0 -123 -85 -240 -275 -240c-207 0 -315 109 -315 242v408h-108v47c38 -3 136 -3 179 -3s141 0 179 3v-47h-108v-416c0 -56 2 -187 177 -187c109 0 218 49 218 197v377c0 22 -1 23 -30 26c-18 2 -35 3 -53 3 h-25v47c41 -3 93 -3 135 -3c39 0 96 0 134 3v-47'], + 0x1D415: [686,8,869,26,842,'842 639h-19c-73 0 -77 -9 -83 -22l-266 -601c-11 -24 -24 -24 -40 -24c-28 0 -32 8 -40 26l-276 621h-92v47c35 -3 119 -3 158 -3c43 0 139 0 177 3v-47h-94l213 -479l202 455c1 3 4 8 4 12c0 12 -79 12 -88 12v47c39 -3 91 -3 131 -3l113 3v-47'], + 0x1D416: [686,8,1189,24,1164,'1164 639c-16 0 -37 0 -57 -2c-31 -3 -32 -5 -38 -22l-231 -597c-6 -16 -10 -26 -35 -26s-29 10 -35 26l-174 450l-174 -450c-6 -16 -10 -26 -35 -26s-29 10 -35 26l-240 621h-86v47c35 -3 114 -3 153 -3c43 0 137 0 175 3v-47h-96l177 -458l136 352l-41 106h-86v47 c35 -3 114 -3 153 -3c43 0 137 0 175 3v-47h-96l177 -458l172 447c-29 11 -77 11 -102 11v47c36 -3 98 -3 136 -3c45 0 80 2 107 3v-47'], + 0x1D417: [686,0,869,34,835,'835 0c-35 3 -122 3 -162 3c-45 0 -140 0 -181 -3v47h83l-174 241l-165 -219c-2 -3 -7 -9 -8 -11c35 -11 74 -11 92 -11v-47c-36 3 -113 3 -152 3c-43 0 -92 0 -134 -3v47h29c20 0 41 1 61 3c32 3 34 5 43 17l202 265l-222 307h-98v47c35 -3 122 -3 162 -3 c45 0 140 0 181 3v-47h-83l143 -197l132 175c2 3 7 9 8 11c-35 11 -74 11 -92 11v47c36 -3 113 -3 152 -3c43 0 92 0 134 3v-47h-29c-28 0 -34 0 -58 -3c-35 -3 -36 -4 -47 -18l-168 -221l253 -350h98v-47'], + 0x1D418: [686,0,869,19,849,'849 639h-21c-17 0 -35 -1 -52 -3c-22 -3 -30 -3 -39 -17l-235 -345v-227h109v-47c-38 3 -134 3 -177 3c-42 0 -140 0 -176 -3v47h108v227l-249 365h-98v47c35 -3 125 -3 165 -3c45 0 142 0 183 3v-47h-85l203 -297l187 275c5 6 5 8 7 12c-26 10 -53 10 -76 10v47 c37 -3 93 -3 132 -3l114 3v-47'], + 0x1D419: [686,0,703,64,645,'645 284l-18 -284h-531c-22 0 -32 0 -32 26c0 11 0 14 8 26l400 587h-130c-140 0 -207 -61 -215 -194h-47l12 241h514c21 0 32 0 32 -25c0 -11 0 -12 -8 -24l-399 -586h140c205 0 219 122 227 233h47'], + 0x1D41A: [453,6,559,27,553,'553 24c0 -24 -12 -24 -32 -24h-48c-104 0 -104 46 -104 77c-22 -42 -69 -83 -149 -83c-69 0 -193 18 -193 114c0 145 254 154 325 157v34c0 76 -35 118 -110 118c-12 0 -44 -1 -72 -7c3 -2 22 -19 22 -49c0 -42 -32 -63 -63 -63c-27 0 -62 19 -62 63c0 88 122 92 179 92 c149 0 220 -65 220 -154v-215c0 -23 0 -36 61 -37c13 0 26 0 26 -23zM352 139v95c-50 -3 -208 -17 -208 -125c0 -44 40 -79 91 -79c25 0 117 13 117 109'], + 0x1D41B: [694,6,639,37,600,'600 223c0 -139 -103 -229 -252 -229c-89 0 -138 54 -146 62c-16 -19 -33 -37 -49 -56h-47v600c0 39 -7 39 -69 39v47l177 8v-293c24 20 74 49 147 49c145 0 239 -94 239 -227zM472 223c0 70 0 191 -122 191c-55 0 -103 -29 -130 -64v-251c10 -15 49 -69 119 -69 c32 0 78 11 107 52c26 39 26 94 26 141'], + 0x1D41C: [453,6,511,38,478,'478 117c0 -7 -30 -123 -192 -123c-154 0 -248 95 -248 228c0 116 74 231 253 231c58 0 174 -6 174 -92c0 -42 -32 -63 -63 -63c-27 0 -62 19 -62 63c0 9 2 30 20 46c-13 3 -30 6 -65 6c-129 0 -129 -130 -129 -186c0 -46 0 -193 139 -193c51 0 99 19 125 82 c5 13 6 15 24 15c10 0 24 0 24 -14'], + 0x1D41D: [694,6,639,38,601,'601 0l-183 -6v49c-31 -25 -79 -49 -140 -49c-148 0 -240 95 -240 227c0 141 105 229 251 229c33 0 85 -6 135 -45v195c0 39 -7 39 -69 39v47l177 8v-608c0 -39 7 -39 69 -39v-47zM418 103v250c-22 29 -62 61 -119 61c-31 0 -78 -10 -107 -52c-26 -39 -26 -93 -26 -141 c0 -70 0 -191 122 -191c76 0 117 55 130 73'], + 0x1D41E: [453,6,527,32,494,'494 117c0 -17 -43 -123 -201 -123c-161 0 -261 97 -261 231c0 125 87 228 247 228c69 0 122 -18 159 -54c50 -50 56 -123 56 -154c0 -27 -10 -27 -32 -27h-302c0 -51 1 -184 142 -184c65 0 122 32 143 80c6 16 8 21 25 21c5 0 24 0 24 -18zM399 251 c-1 35 -3 166 -120 166c-29 0 -69 -12 -95 -52c-21 -33 -22 -75 -24 -114h239'], + 0x1D41F: [700,0,351,42,437,'437 613c0 -41 -32 -62 -62 -62c-26 0 -61 19 -61 62c0 19 8 38 23 49c-7 2 -12 2 -17 2c-25 0 -101 -9 -101 -119v-101h121v-47h-115v-350h87v-47c-36 3 -100 3 -138 3l-126 -3v47h69v350h-75v47h75v101c0 113 108 155 206 155c78 0 114 -45 114 -87'], + 0x1D420: [455,201,575,32,558,'558 397c0 -24 -17 -43 -43 -43s-43 18 -43 43c0 6 2 15 4 20c-11 -1 -32 -3 -62 -19c15 -16 40 -49 40 -96c0 -70 -55 -148 -199 -148c-25 0 -76 2 -122 26c-6 -8 -10 -23 -10 -33c0 -18 11 -56 55 -63c5 -1 51 -1 77 -1c96 0 156 0 212 -28c67 -34 75 -97 75 -127 c0 -70 -78 -129 -255 -129c-200 0 -255 75 -255 126c0 63 73 84 86 87c-40 32 -44 81 -44 96c0 21 6 54 34 89c-32 23 -52 64 -52 105c0 70 55 148 199 148c74 0 116 -21 134 -33c44 35 91 38 106 38c46 0 63 -35 63 -58zM343 302c0 45 0 112 -88 112s-88 -67 -88 -112 s0 -112 88 -112s88 67 88 112zM456 -75c0 62 -113 62 -144 62h-117c-14 0 -77 0 -77 -60c0 -46 49 -92 169 -92c130 0 169 54 169 90'], + 0x1D421: [694,0,639,45,615,'615 0l-126 3l-126 -3v47h69v270c0 76 -21 97 -55 97c-63 0 -149 -49 -149 -158v-209h69v-47l-126 3l-126 -3v47h69v553c0 39 -7 39 -69 39v47l177 8v-340h1c22 38 73 96 169 96c100 0 154 -39 154 -144v-259h69v-47'], + 0x1D422: [685,0,319,47,286,'286 0l-117 3l-122 -3v47h69v309c0 39 -7 39 -66 39v47l174 8v-403h62v-47zM238 607c0 -43 -35 -78 -78 -78s-78 35 -78 78s35 78 78 78s78 -35 78 -78'], + 0x1D423: [685,200,351,-56,267,'267 -42c0 -106 -95 -158 -181 -158c-82 0 -142 34 -142 91c0 36 25 63 63 63c36 0 62 -27 62 -62c0 -15 -5 -36 -24 -50c15 -4 23 -6 39 -6c60 0 75 72 75 122v397c0 21 0 34 -22 38c-15 2 -37 2 -54 2v47l184 8v-492zM267 607c0 -43 -35 -78 -78 -78s-78 35 -78 78 s35 78 78 78s78 -35 78 -78'], + 0x1D424: [694,0,607,37,587,'587 0c-34 2 -68 3 -104 3c-5 0 -92 -1 -122 -3v47c13 0 31 0 31 9c0 3 -16 23 -25 35l-101 126c-20 -14 -28 -20 -57 -43v-127h69v-47l-121 3l-120 -3v47h69v553c0 39 -7 39 -69 39v47l177 8v-457l189 149c-8 8 -11 11 -34 11v47l115 -3c26 0 51 0 78 3v-47 c-67 0 -76 -7 -90 -18l-130 -101l169 -211c13 -16 16 -20 59 -20h17v-47'], + 0x1D425: [694,0,319,47,293,'293 0l-123 3l-123 -3v47h69v553c0 39 -7 39 -69 39v47l177 8v-647h69v-47'], + 0x1D426: [450,0,958,45,935,'935 0l-126 3l-126 -3v47h69v270c0 77 -22 97 -56 97c-62 0 -149 -49 -149 -158v-209h69v-47l-126 3l-126 -3v47h69v270c0 77 -22 97 -56 97c-62 0 -149 -49 -149 -158v-209h69v-47l-126 3l-126 -3v47h69v309c0 39 -7 39 -69 39v47l172 8v-108c32 63 89 108 176 108 c38 0 130 -3 150 -96c26 46 78 96 169 96c103 0 154 -41 154 -144v-259h69v-47'], + 0x1D427: [450,0,639,45,615,'615 0l-126 3l-126 -3v47h69v270c0 76 -21 97 -55 97c-63 0 -149 -49 -149 -158v-209h69v-47l-126 3l-126 -3v47h69v309c0 39 -7 39 -69 39v47l172 8v-108c26 51 79 108 175 108c100 0 154 -39 154 -144v-259h69v-47'], + 0x1D428: [453,6,575,32,542,'542 218c0 -123 -87 -224 -255 -224c-167 0 -255 100 -255 224c0 133 91 235 255 235c163 0 255 -101 255 -235zM414 229c0 48 0 103 -21 137c-22 35 -64 51 -106 51c-49 0 -91 -21 -110 -58c-17 -34 -17 -85 -17 -130c0 -87 0 -195 127 -195s127 108 127 195'], + 0x1D429: [450,194,639,37,600,'600 223c0 -139 -102 -229 -252 -229c-41 0 -85 10 -128 45v-186h69v-47l-126 3l-126 -3v47h69v504c0 38 -7 38 -69 38v47l177 8v-49c23 18 76 49 151 49c144 0 235 -94 235 -227zM472 223c0 126 -56 187 -123 187c-22 0 -74 -6 -114 -47c-14 -14 -15 -15 -15 -34v-212 c0 -19 0 -20 11 -33c45 -54 92 -54 106 -54c65 0 135 52 135 193'], + 0x1D42A: [450,194,607,38,601,'601 -194l-126 3l-126 -3v47h69v195c-46 -40 -91 -54 -140 -54c-139 0 -240 87 -240 228c0 139 103 228 249 228c60 0 116 -30 151 -79l53 79h41v-597h69v-47zM424 142v139c0 50 -48 129 -124 129c-60 0 -134 -47 -134 -189c0 -133 60 -191 122 -191c30 0 81 11 121 70 c15 21 15 24 15 42'], + 0x1D42B: [450,0,474,37,442,'442 368c0 -40 -32 -61 -61 -61s-61 20 -61 61c0 29 19 46 19 46c-100 0 -125 -122 -125 -192v-175h87v-47c-36 3 -100 3 -138 3l-126 -3v47h69v309c0 39 -7 39 -69 39v47l166 8v-113c23 63 63 113 133 113c52 0 106 -29 106 -82'], + 0x1D42C: [453,6,454,38,415,'415 140c0 -146 -154 -146 -185 -146c-20 0 -72 0 -118 32l-26 -17c-21 -15 -23 -15 -30 -15c-18 0 -18 9 -18 28v109c0 23 0 29 24 29c14 0 19 0 24 -14c12 -43 38 -116 144 -116c22 0 114 0 114 75c0 59 -75 72 -111 78c-77 14 -115 20 -155 55c-20 17 -40 44 -40 84 c0 131 154 131 184 131c40 0 75 -6 101 -19c39 19 41 19 45 19c18 0 18 -9 18 -28v-80c0 -23 0 -28 -24 -28c-21 0 -22 5 -23 20c-5 55 -43 84 -118 84c-19 0 -112 0 -112 -62c0 -47 65 -58 102 -65c78 -13 110 -19 149 -48c35 -28 55 -63 55 -106'], + 0x1D42D: [635,6,447,21,382,'382 124c0 -73 -45 -130 -121 -130c-71 0 -158 22 -158 129v274h-82v36c99 3 148 102 149 202h47v-191h146v-47h-146v-276c0 -23 0 -87 58 -87c28 0 60 24 60 92v51h47v-53'], + 0x1D42E: [450,6,639,45,615,'615 0l-177 -6v78c-46 -78 -118 -78 -144 -78c-99 0 -180 22 -180 129v233c0 39 -7 39 -69 39v47l183 8v-341c0 -54 3 -79 80 -79c73 0 124 53 124 135v191c0 39 -7 39 -69 39v47l183 8v-364c0 -39 7 -39 69 -39v-47'], + 0x1D42F: [444,4,607,26,580,'580 397c-64 0 -68 -7 -74 -21l-166 -356c-10 -21 -20 -24 -37 -24c-13 0 -26 0 -38 25l-175 376h-64v47l114 -3l124 3v-47h-54l127 -273l116 250c5 10 5 12 5 12c0 8 -29 11 -48 11v47l91 -3c25 0 54 1 79 3v-47'], + 0x1D430: [444,4,831,25,805,'805 397c-59 0 -63 -8 -68 -21l-144 -353c-7 -17 -11 -27 -36 -27s-29 10 -36 27l-106 259l-106 -259c-7 -17 -11 -27 -36 -27s-29 10 -36 27l-153 374h-59v47l109 -3l123 3v-47h-56l105 -258l79 192c1 3 4 9 4 13c0 0 0 3 -21 53h-59v47c16 -1 58 -3 100 -3l114 3v-47 h-56l114 -280l105 256c1 3 4 9 4 12c0 11 -49 12 -58 12v47l96 -3c24 0 54 1 77 3v-47'], + 0x1D431: [444,0,607,22,585,'585 0l-110 3l-120 -3v47h39l-110 130l-97 -109c-7 -8 -7 -10 -7 -10c0 -6 19 -11 37 -11v-47l-103 3l-92 -3v47c48 0 84 0 101 19l131 147l-156 184h-71v47l110 -3l121 3v-47h-40l98 -115l84 94c4 4 4 6 8 12c-12 7 -24 9 -38 9v47l103 -3l92 3v-47 c-83 0 -89 -7 -102 -21l-117 -130l168 -199h71v-47'], + 0x1D432: [444,200,607,22,580,'580 397c-64 0 -67 -7 -74 -21l-215 -457c-27 -57 -85 -119 -162 -119c-60 0 -107 41 -107 92c0 39 29 58 57 58c34 0 58 -24 58 -57c0 -35 -23 -49 -32 -53c8 -3 10 -4 24 -4c71 0 103 68 125 116l23 48l-187 397h-64v47l114 -3l124 3v-47h-54l127 -270l115 246l5 12 c0 12 -47 12 -47 12v47l91 -3c25 0 55 1 79 3v-47'], + 0x1D433: [444,0,511,32,462,'462 202l-18 -202h-380c-19 0 -32 0 -32 22c0 9 0 11 9 22l279 364h-85c-103 0 -134 -36 -140 -139h-47l12 175h367c18 0 32 0 32 -21c0 -9 -2 -11 -10 -22l-277 -361h86c132 0 148 61 157 162h47'], + 0x1D434: [716,0,750,35,721,'721 20c0 -20 -12 -20 -18 -20c-25 0 -88 3 -113 3c-41 0 -84 -3 -125 -3c0 0 -14 0 -14 11c0 20 10 20 24 20c20 0 72 3 72 33c0 10 -14 146 -16 167h-251c-68 -116 -69 -116 -76 -128c-8 -14 -14 -25 -14 -37c0 -25 24 -33 47 -35c7 0 16 -1 16 -12 c0 -19 -13 -19 -19 -19c-32 0 -67 3 -100 3c-28 0 -59 -3 -86 -3c-8 0 -13 5 -13 11c0 19 9 19 21 20c44 3 83 17 123 84l348 584c6 10 10 17 26 17c17 0 17 -4 19 -24l61 -625c3 -29 3 -36 65 -36c13 0 23 0 23 -11zM528 262l-32 330l-197 -330h229'], + 0x1D435: [683,0,759,42,756,'756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196'], + 0x1D436: [705,22,715,50,760,'760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-89 0 -183 -50 -244 -121c-100 -117 -121 -279 -121 -336c0 -156 106 -208 196 -208c52 0 115 17 184 73c69 58 92 129 101 158c2 8 7 10 13 10c0 0 12 0 12 -10 c0 -3 -17 -94 -110 -176c-53 -46 -129 -86 -216 -86c-153 0 -271 109 -271 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10'], + 0x1D437: [683,0,828,40,804,'804 430c0 -219 -197 -430 -405 -430h-331c-19 0 -28 0 -28 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h336c150 0 235 -112 235 -253zM717 467c0 132 -83 185 -181 185 h-107c-43 0 -45 -3 -54 -38l-137 -549c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h113c123 0 202 76 231 113c85 110 105 274 105 323'], + 0x1D438: [680,0,738,38,763,'763 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12s1 12 1 18c4 27 4 29 4 53c0 82 -30 111 -152 111h-141c-44 0 -45 -4 -54 -39l-60 -241h94c92 0 110 23 131 99c3 12 5 18 14 18c7 0 12 -5 12 -11l-57 -234c-4 -15 -7 -20 -15 -20c-9 0 -13 6 -13 11 c0 3 1 6 3 11c7 30 7 42 7 49c0 25 0 46 -85 46h-99l-68 -273c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h146c171 0 208 67 273 215c2 6 4 12 13 12c12 0 12 -11 12 -11s-3 -9 -5 -14l-92 -216c-7 -16 -8 -17 -31 -17h-519c-19 0 -28 0 -28 12 c0 19 11 19 28 19c79 0 81 8 91 47l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h505c25 0 30 0 27 -27'], + 0x1D439: [680,0,643,38,748,'748 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12c0 3 0 5 2 18c3 27 3 31 3 54c0 77 -23 110 -146 110h-132c-44 0 -45 -4 -54 -39l-64 -254h91c85 0 108 18 129 96c4 16 5 21 15 21s12 -11 12 -11c0 -3 0 -5 -3 -16l-55 -217c-5 -18 -5 -21 -15 -21 c-6 0 -12 4 -12 12c0 0 1 6 3 11c7 30 7 42 7 49c0 29 -8 45 -83 45h-97l-62 -249c-4 -15 -4 -23 -4 -23c0 -13 3 -17 32 -20c25 -2 30 -2 52 -2c23 0 25 0 28 -1c0 0 6 -3 6 -11c0 -19 -12 -19 -21 -19l-149 3l-132 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47 l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h490c25 0 30 0 27 -27'], + 0x1D43A: [705,22,786,50,760,'760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-99 0 -196 -61 -250 -129c-105 -130 -115 -295 -115 -326c0 -153 105 -210 201 -210c35 0 165 11 193 121c10 37 21 82 21 91c0 13 -5 16 -31 19c-23 2 -53 2 -53 2 c-22 0 -30 0 -30 11c0 20 12 20 21 20l140 -3c23 0 82 3 105 3c8 0 13 -4 13 -11c0 -19 -11 -20 -16 -20c-57 -1 -58 -3 -69 -48c-4 -17 -9 -34 -13 -51l-19 -77c-5 -21 -15 -59 -17 -61c0 0 -2 -4 -7 -4c-10 0 -36 37 -45 62c-18 -20 -37 -41 -87 -61 c-36 -15 -81 -24 -125 -24c-162 0 -273 115 -273 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10'], + 0x1D43B: [683,0,831,39,881,'881 672c0 -20 -8 -20 -34 -20c-73 0 -75 -10 -84 -46l-135 -540c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3s-14 0 -14 11c0 20 9 20 24 20c62 0 81 1 91 33l69 276h-305l-68 -274 c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3s-14 0 -14 11c0 20 9 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 11 20 19 20 l129 -3l128 3c3 0 14 0 14 -11c0 -20 -8 -20 -34 -20c-72 0 -75 -10 -84 -46l-59 -235h305l60 244c3 13 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 11 20 19 20l129 -3l128 3c3 0 14 0 14 -11'], + 0x1D43C: [683,0,440,34,497,'497 671c0 -19 -8 -19 -32 -19c-79 0 -82 -10 -91 -46l-134 -533c-2 -7 -4 -15 -4 -23c0 -11 4 -15 25 -17c20 -2 25 -2 43 -2c22 0 30 0 30 -12c0 -19 -12 -19 -20 -19l-134 3l-131 -3c-3 0 -15 0 -15 11c0 20 9 20 32 20c79 0 82 10 91 47l135 539c2 9 2 11 2 16 c0 19 -27 19 -69 19c-19 0 -28 0 -28 11c0 20 13 20 20 20l133 -3l132 3c4 0 15 0 15 -12'], + 0x1D43D: [683,22,555,71,633,'633 671c0 -19 -11 -19 -27 -19c-55 0 -57 -9 -65 -42l-117 -467c-25 -99 -129 -165 -221 -165c-79 0 -132 47 -132 109c0 68 49 80 67 80c17 0 44 -10 44 -42c0 -30 -26 -64 -65 -64c0 0 -9 0 -12 1c16 -52 69 -62 95 -62c52 0 120 53 144 150l115 459c2 8 4 15 4 21 c0 14 -7 17 -31 20c-25 2 -35 2 -58 2c-26 0 -34 0 -34 11c0 20 12 20 21 20l147 -3c25 0 86 3 111 3c8 0 14 -3 14 -12'], + 0x1D43E: [683,0,849,38,889,'889 672c0 -18 -10 -19 -18 -20c-30 -3 -69 -7 -163 -76l-175 -135c-11 -8 -29 -23 -29 -23c0 -3 4 -11 5 -14l142 -328c15 -35 28 -44 69 -45c9 0 20 0 20 -11c0 -20 -13 -20 -18 -20c-22 0 -76 3 -98 3c-40 0 -82 -3 -122 -3c0 0 -14 0 -14 11c0 20 11 20 22 20 c9 0 52 1 52 31c0 6 0 8 -12 35l-116 269l-149 -116l-40 -157c-3 -15 -9 -37 -9 -44c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19 c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 13 19 20 19l129 -3l128 3c6 0 14 -2 14 -11c0 -20 -9 -20 -34 -20c-73 0 -75 -10 -84 -46l-80 -321l390 300c6 5 36 28 36 46c0 14 -9 19 -31 21c-7 1 -12 4 -12 11c0 20 12 20 19 20c36 0 75 -3 111 -3 c24 0 49 3 71 3c8 0 11 -7 11 -11'], + 0x1D43F: [683,0,681,39,643,'643 247c0 0 0 -3 -4 -14l-79 -216c-6 -17 -7 -17 -31 -17h-463c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 12 20 19 20l133 -3l148 3c5 0 16 0 16 -12 c0 -19 -8 -19 -38 -19c-94 0 -97 -11 -106 -47l-135 -540c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h94c173 0 217 114 251 206c7 16 8 21 17 21s12 -7 12 -11'], + 0x1D440: [683,0,970,42,1044,'1044 672c0 -20 -9 -20 -32 -20c-75 0 -77 -10 -86 -46l-133 -533c-5 -18 -5 -20 -5 -24c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -19 -20c-41 0 -84 3 -125 3l-124 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l143 573h-1l-404 -633 c-5 -7 -11 -18 -22 -18c-12 0 -13 11 -15 23l-86 620h-1l-136 -545c-3 -11 -4 -16 -4 -23c0 -23 11 -43 68 -44c7 0 18 0 18 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3c-33 0 -68 -3 -100 -3c-8 0 -14 3 -14 12c0 18 13 19 18 19c81 3 98 35 108 75l127 509 c3 12 4 15 4 19c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h137c26 0 28 0 31 -23l78 -566l365 570c12 19 13 19 39 19h132c17 0 27 0 27 -11'], + 0x1D441: [683,0,803,39,881,'881 672c0 -19 -12 -20 -17 -20c-80 -3 -98 -34 -108 -74l-140 -557c-5 -18 -5 -21 -16 -21c-9 0 -12 2 -19 19l-249 589c-5 10 -5 12 -9 18l-132 -528c-3 -11 -4 -16 -4 -23c0 -20 8 -42 66 -44c11 0 20 -1 20 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3 c-33 0 -68 -3 -100 -3c-8 0 -13 4 -13 11c0 19 11 20 17 20c81 3 98 35 108 75l134 537c0 9 -63 9 -68 9c-19 0 -28 0 -28 11c0 20 9 20 29 20h134c23 0 24 -1 32 -19l221 -522l112 445c1 3 3 18 3 21c0 22 -11 43 -68 44c-8 0 -18 0 -18 11c0 20 12 20 18 20 c33 0 68 -3 102 -3c33 0 68 3 101 3c13 0 13 -11 13 -11'], + 0x1D442: [705,22,763,49,740,'740 436c0 -239 -223 -458 -435 -458c-144 0 -256 101 -256 267c0 233 220 460 436 460c149 0 255 -108 255 -269zM651 475c0 149 -90 205 -172 205c-79 0 -177 -52 -246 -156c-77 -117 -91 -263 -91 -307c0 -132 70 -213 169 -213c84 0 166 59 214 120 c99 123 126 279 126 351'], + 0x1D443: [683,0,642,40,754,'754 532c0 -112 -139 -216 -281 -216h-170l-62 -250c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19 c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h324c131 0 197 -74 197 -151zM661 556c0 69 -53 96 -136 96h-96c-43 0 -45 -3 -54 -38l-68 -272h141c44 0 104 8 154 53c39 36 59 122 59 161'], + 0x1D444: [705,194,791,49,740,'740 436c0 -193 -147 -371 -302 -430c10 -76 25 -103 71 -103c35 0 93 25 117 96c2 6 4 11 12 11c4 0 11 -3 11 -10c0 -11 -48 -194 -167 -194c-83 0 -83 78 -83 110c0 13 0 15 4 77c-39 -11 -73 -15 -98 -15c-144 0 -256 101 -256 267c0 233 220 460 436 460 c149 0 255 -108 255 -269zM652 468c0 134 -73 212 -173 212c-73 0 -167 -46 -240 -148c-76 -108 -102 -250 -102 -319c0 -90 34 -168 112 -199c0 0 -6 12 -6 32c0 52 49 102 102 102c73 0 83 -73 88 -108c168 94 219 328 219 428zM406 41c0 61 -19 85 -61 85 s-80 -40 -80 -80c0 -43 32 -43 46 -43c28 0 58 7 84 18c10 4 11 5 11 20'], + 0x1D445: [683,22,759,41,755,'646 553c0 99 -111 99 -182 99c-20 0 -52 0 -61 -1c-19 -3 -22 -13 -28 -37l-65 -261h112c90 0 143 32 169 58c39 39 55 108 55 142zM755 93c0 -14 -35 -115 -120 -115c-13 0 -133 0 -133 108c0 20 9 57 16 85c6 23 14 54 14 69c0 35 -18 91 -109 91h-119l-66 -265 c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20l-127 3l-126 -3s-14 0 -14 11c0 20 9 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 9 20 29 20h285 c131 0 221 -64 221 -150c0 -101 -119 -171 -220 -193c27 -10 94 -41 94 -118c0 -14 -2 -33 -4 -47c-4 -32 -10 -83 -10 -114c0 -39 7 -61 40 -61c23 0 66 17 91 91c2 7 4 14 13 14c0 0 12 0 12 -12'], + 0x1D446: [705,22,613,52,645,'645 695l-54 -219c-4 -17 -5 -20 -15 -20c-12 0 -12 10 -12 10c0 6 4 24 4 56c0 112 -61 155 -144 155c-95 0 -175 -85 -175 -166c0 -53 34 -82 61 -91l67 -18c89 -23 104 -27 127 -50c15 -14 49 -48 49 -117c0 -124 -118 -257 -254 -257c-58 0 -126 14 -169 72l-49 -57 c-12 -14 -13 -15 -18 -15c-6 0 -11 4 -11 10c0 3 56 231 60 235c3 3 5 4 10 4s12 -1 12 -11c0 0 -1 -3 -2 -7c-1 -6 -6 -30 -6 -54c0 -124 111 -146 175 -146c98 0 180 94 180 184c0 82 -55 97 -92 106l-107 28c-51 15 -104 61 -104 142c0 121 120 236 247 236 c65 0 117 -25 143 -72l48 57c12 14 13 15 18 15c9 0 11 -7 11 -10'], + 0x1D447: [677,0,584,24,704,'704 666c0 -3 -1 -13 -2 -17l-27 -174c-2 -15 -4 -23 -15 -23c-9 0 -12 7 -12 13c0 3 2 15 3 19c4 26 8 65 8 80c0 78 -45 82 -146 82c-21 0 -54 0 -63 -2c-12 -3 -16 -9 -23 -37l-133 -531c-4 -15 -4 -21 -4 -21c0 -16 8 -19 37 -22c26 -2 39 -2 64 -2c26 0 34 0 34 -11 c0 -20 -12 -20 -22 -20c-28 0 -58 2 -87 2l-83 1l-85 -1c-27 0 -55 -2 -82 -2c-6 0 -17 0 -17 12c0 19 6 19 42 19c107 0 110 11 119 48l134 534c1 3 4 15 4 21c0 8 0 12 -28 12h-39c-148 0 -174 -18 -228 -173c-6 -16 -7 -21 -17 -21c-7 0 -12 5 -12 11c0 0 5 16 6 18 l60 176c7 19 8 20 32 20h555c17 0 27 0 27 -11'], + 0x1D448: [683,22,683,67,760,'760 672c0 -19 -12 -20 -17 -20c-80 -3 -98 -33 -108 -74l-89 -355c-33 -132 -157 -245 -283 -245c-105 0 -196 70 -196 192c0 15 0 30 7 58l61 247l22 88c6 23 17 65 17 71c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 11 20 19 20l129 -3l128 3 c3 0 14 0 14 -11c0 -20 -8 -20 -34 -20c-73 0 -75 -10 -84 -46l-97 -389c-11 -44 -11 -78 -11 -78c0 -86 54 -130 122 -130c100 0 215 87 249 221l90 357c1 3 3 18 3 21c0 22 -11 43 -68 44c-8 0 -18 0 -18 11c0 20 12 20 18 20c33 0 70 -3 104 -3s69 3 102 3 c13 0 13 -11 13 -11'], + 0x1D449: [683,22,583,56,769,'769 671c0 0 -1 -18 -13 -19c-37 -2 -79 -5 -128 -83l-360 -573c-8 -13 -12 -18 -28 -18c-13 0 -17 3 -20 23l-79 617c-3 25 -4 34 -60 34c-16 0 -25 0 -25 12c0 19 12 19 19 19c17 0 36 -2 54 -2s37 -1 55 -1c41 0 84 3 124 3c6 0 14 -2 14 -11c0 -20 -11 -20 -25 -20 c-46 0 -69 -13 -69 -30l68 -529l307 488s15 23 15 38c0 21 -19 31 -46 33c-7 0 -16 1 -16 12c0 19 13 19 19 19c32 0 66 -3 99 -3c27 0 56 3 82 3c8 0 13 -4 13 -12'], + 0x1D44A: [683,22,944,55,1048,'1048 672c0 -19 -10 -19 -19 -20c-63 -5 -87 -41 -112 -85l-328 -570c-5 -9 -11 -19 -24 -19c-12 0 -14 5 -16 26l-37 505l-294 -510c-9 -15 -12 -21 -24 -21c-14 0 -15 8 -16 26l-45 611c-2 28 -3 37 -53 37c-16 0 -25 0 -25 12c0 19 13 19 18 19c34 0 70 -3 105 -3 c41 0 83 3 123 3c0 0 14 0 14 -11c0 -20 -11 -20 -21 -20c-76 -1 -76 -24 -76 -36l38 -507l253 441l-6 77c-2 19 -9 25 -53 25c-14 0 -24 0 -24 11c0 20 13 20 19 20c23 0 82 -3 105 -3c40 0 82 3 122 3c4 0 15 -1 15 -11c0 -20 -10 -20 -27 -20c-73 -1 -71 -27 -70 -47 l37 -496l270 471c8 14 13 22 13 33c0 30 -35 38 -59 39c-6 0 -15 1 -15 12c0 19 13 19 19 19c33 0 70 -3 104 -3c25 0 53 3 77 3c8 0 12 -7 12 -11'], + 0x1D44B: [683,0,828,27,851,'851 672c0 -19 -9 -19 -22 -20c-60 -3 -98 -27 -127 -51c-32 -28 -137 -147 -205 -217l129 -309c17 -40 19 -43 86 -44c8 0 18 0 18 -12c0 -19 -12 -19 -19 -19c-25 0 -86 3 -111 3l-126 -3c-4 0 -15 0 -15 12c0 17 9 18 20 19c39 4 58 21 58 29l-5 14l-101 239l-90 -98 l-102 -108c-12 -13 -27 -29 -27 -45c0 -28 31 -30 40 -31c0 0 12 -1 12 -11c0 -20 -12 -20 -18 -20c-36 0 -75 3 -112 3c-31 0 -64 -3 -94 -3c-13 0 -13 11 -13 11c0 19 9 19 22 20c51 3 98 19 147 72c6 5 7 6 13 11l211 227l-118 279c-9 22 -15 32 -75 32 c-13 0 -23 0 -23 11c0 20 12 20 18 20c25 0 87 -3 112 -3c42 0 85 3 126 3c3 0 15 0 15 -12c0 -17 -10 -18 -20 -19c-42 -4 -59 -23 -59 -29l5 -13l84 -199l162 174c8 9 19 22 19 36c0 28 -31 30 -40 31c-7 1 -12 4 -12 11c0 20 13 20 19 20c36 0 74 -3 111 -3 c31 0 64 3 94 3c13 0 13 -11 13 -11'], + 0x1D44C: [683,0,581,35,762,'762 671c0 -18 -9 -18 -20 -19c-68 -5 -101 -39 -131 -69l-14 -14l-248 -285c-8 -9 -9 -12 -14 -31l-35 -141c-5 -21 -14 -56 -14 -63c0 -12 6 -14 27 -16c17 -2 38 -2 38 -2c19 0 28 0 28 -11c0 -20 -12 -20 -19 -20l-128 3l-126 -3s-14 0 -14 11c0 20 8 20 27 20 c80 1 81 4 94 59c5 18 45 179 45 182s-3 14 -4 17l-123 329c-9 25 -13 34 -73 34c-13 0 -23 0 -23 11c0 20 13 20 19 20c25 0 87 -3 112 -3l126 3c3 0 15 0 15 -11c0 -20 -10 -20 -24 -20c-10 0 -59 0 -59 -24c0 0 0 -3 6 -17l110 -297l232 267c4 5 27 31 27 48 c0 21 -29 23 -36 23c-5 0 -15 1 -15 12c0 19 13 19 19 19c32 0 67 -3 100 -3c27 0 56 3 82 3c8 0 13 -4 13 -12'], + 0x1D44D: [683,0,683,58,723,'723 674c0 -6 -2 -11 -3 -15l-559 -625h171c170 0 218 72 262 208c7 21 8 25 17 25s13 -6 13 -11c0 -4 -3 -11 -4 -15l-71 -221c-6 -19 -7 -20 -31 -20h-435c-18 0 -25 0 -25 9c0 3 4 18 4 18l559 625h-163c-156 0 -208 -66 -246 -184c-2 -3 -4 -10 -13 -10 c-12 0 -12 11 -12 11s1 9 3 14l55 180c6 19 7 20 31 20h422c20 0 25 0 25 -9'], + 0x1D44E: [442,11,529,40,498,'498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17'], + 0x1D44F: [694,11,429,47,415,'415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212'], + 0x1D450: [442,11,433,41,430,'430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13'], + 0x1D451: [694,11,520,40,516,'516 683l-144 -578c-4 -17 -6 -24 -6 -48c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293 c45 0 74 -27 92 -64l60 237l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 13 6 18 14 19c17 2 112 11 127 11c13 0 13 -11 13 -11zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37 l50 196c1 5 3 11 3 17'], + 0x1D452: [442,11,466,46,430,'430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104'], + 0x1D453: [705,205,490,53,552,'552 636c0 -38 -29 -60 -55 -60c-19 0 -37 12 -37 35c0 15 10 50 54 54c-19 18 -45 18 -49 18c-21 0 -38 -15 -47 -34c-6 -12 -20 -83 -24 -104c-11 -58 -10 -56 -21 -114h83c17 0 27 0 27 -11c0 -20 -10 -20 -30 -20h-86l-60 -317c-1 -7 -24 -128 -56 -191 c-18 -38 -58 -97 -113 -97c-41 0 -85 24 -85 69c0 38 29 60 55 60c19 0 37 -12 37 -35c0 -15 -9 -51 -55 -54c19 -18 44 -18 48 -18c52 0 69 91 87 188l75 395h-66c-19 0 -28 0 -28 12c0 19 11 19 30 19h69c24 126 27 136 33 157c30 99 93 117 127 117c41 0 87 -23 87 -69'], + 0x1D454: [442,205,477,15,474,'474 395c0 -7 -2 -12 -3 -18l-111 -444c-15 -60 -87 -138 -212 -138c-96 0 -133 20 -133 61c0 40 32 58 54 58c27 0 38 -19 38 -35c0 -17 -11 -43 -41 -52c28 -9 61 -10 80 -10c106 0 140 99 144 108l33 132l-1 1c-10 -11 -57 -58 -116 -58c-72 0 -133 59 -133 158 c0 144 124 284 238 284c40 0 75 -26 93 -63c4 36 31 43 41 43c17 0 29 -10 29 -27zM392 334c0 5 -14 86 -80 86c-42 0 -85 -40 -112 -89c-27 -51 -56 -169 -56 -217c0 -40 15 -92 65 -92c29 0 60 18 81 36c22 19 45 44 51 70l48 191c1 4 3 10 3 15'], + 0x1D456: [661,11,345,29,293,'284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10'], + 0x1D457: [661,205,412,-13,397,'397 625c0 -27 -27 -53 -54 -53c-23 0 -37 16 -37 36c0 30 30 53 53 53c24 0 38 -17 38 -36zM360 350c0 -3 0 -17 -5 -37l-92 -366c-25 -99 -118 -152 -188 -152c-48 0 -88 22 -88 62c0 36 29 57 54 57c27 0 38 -19 38 -35c0 -20 -15 -46 -45 -53c18 -9 33 -9 39 -9 c56 0 104 57 123 133l94 373c4 17 7 28 7 51c0 42 -18 46 -32 46c-55 0 -101 -61 -126 -122c-8 -19 -9 -20 -18 -20c0 0 -12 0 -12 10c0 9 57 154 159 154c50 0 92 -35 92 -92'], + 0x1D458: [694,11,521,55,508,'508 379c0 -39 -29 -61 -55 -61c-27 0 -38 19 -38 35c0 12 9 51 57 54c-2 2 -2 3 -4 4c-8 6 -9 6 -21 8c-2 1 -3 1 -9 1c-49 0 -95 -43 -143 -96c-23 -24 -55 -56 -86 -74c85 -11 148 -40 148 -105c0 -10 0 -14 -4 -31c-4 -16 -8 -39 -8 -56c0 -36 13 -47 32 -47 c44 0 67 51 87 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -11 -57 -36 -101c-22 -37 -49 -53 -79 -53c-52 0 -92 40 -92 99c0 11 2 23 4 35c3 10 3 14 3 21c0 66 -82 82 -116 85c-6 -25 -51 -210 -56 -219c-6 -12 -21 -21 -34 -21c-9 0 -29 5 -29 28c0 6 0 8 4 22l145 576 l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-104 -422c38 15 77 55 111 93c72 80 118 88 146 88c45 0 68 -33 68 -63'], + 0x1D459: [694,11,298,44,258,'258 683l-144 -578c-5 -19 -6 -24 -6 -48c0 -14 0 -46 30 -46c40 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -12 -60 -30 -98c-17 -36 -42 -56 -75 -56c-47 0 -91 35 -91 92c0 16 2 23 5 34l126 500l3 20c0 8 -1 17 -49 17c-15 0 -25 0 -25 11 c0 19 11 20 19 21c26 2 99 10 122 10c13 0 13 -11 13 -11'], + 0x1D45A: [442,11,878,29,848,'848 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 4 31 13 55c20 53 62 167 62 224c0 36 -11 70 -54 70c-109 0 -162 -120 -165 -133l-60 -241c-8 -32 -14 -57 -45 -57c-15 0 -29 9 -29 27c0 5 9 39 13 59c9 33 10 39 20 76l28 116c8 30 15 58 15 83 c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43l58 231c13 52 16 63 16 84c0 38 -15 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23 c0 0 -12 0 -12 10c0 3 13 62 31 97c9 18 28 57 74 57c45 0 87 -30 92 -87c17 23 66 87 156 87c25 0 57 -5 82 -26c28 -24 31 -58 32 -71c37 53 88 97 163 97s115 -42 115 -107c0 -57 -42 -168 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10'], + 0x1D45B: [442,11,600,29,571,'571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10'], + 0x1D45C: [442,11,485,41,469,'469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209'], + 0x1D45D: [442,194,503,-32,490,'490 282c0 -147 -125 -293 -241 -293c-51 0 -79 35 -92 64c-7 -25 -49 -188 -49 -200c0 -9 0 -16 50 -16c14 0 24 0 24 -11c0 -20 -13 -20 -18 -20c-32 0 -66 3 -99 3c-28 0 -57 -3 -84 -3c-8 0 -13 4 -13 12c0 19 11 19 23 19c44 0 46 7 54 41l112 445c4 17 7 28 7 51 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c37 0 80 -21 90 -75c33 39 81 75 131 75c76 0 133 -66 133 -160zM418 326c0 59 -24 94 -64 94c-17 0 -46 -7 -81 -38c-18 -15 -45 -43 -52 -70 l-49 -196c-3 -12 -3 -16 -3 -16c0 -6 13 -89 79 -89c37 0 85 33 119 103c18 38 51 153 51 212'], + 0x1D45E: [442,194,446,40,452,'452 431l-138 -556c-2 -9 -4 -15 -4 -22c0 -9 0 -16 48 -16c16 0 26 0 26 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3c-33 0 -68 -3 -100 -3c-13 0 -13 11 -13 11c0 20 10 20 23 20c56 1 64 5 72 33l45 179c-36 -36 -75 -60 -118 -60c-73 0 -132 62 -132 160 c0 145 123 293 241 293c32 0 71 -16 93 -70c17 29 57 69 68 69c7 0 10 -6 10 -10zM360 332c0 7 -14 88 -79 88c-41 0 -93 -42 -124 -116c-17 -42 -46 -151 -46 -199c0 -17 4 -94 64 -94c56 0 112 64 127 92c3 4 58 223 58 229'], + 0x1D45F: [442,11,451,29,436,'436 377c0 -36 -28 -59 -55 -59s-38 19 -38 35c0 26 22 50 52 55c0 0 -16 12 -42 12c-43 0 -72 -26 -80 -33c-24 -22 -52 -69 -56 -82l-32 -130c-4 -18 -38 -154 -40 -158c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43l58 231c13 52 16 63 16 84 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c47 0 83 -32 91 -77c19 28 63 77 128 77c51 0 83 -30 83 -65'], + 0x1D460: [442,11,469,52,420,'420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86'], + 0x1D461: [626,11,361,23,330,'330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11'], + 0x1D462: [442,11,572,29,543,'543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 18c3 0 12 0 12 -10'], + 0x1D463: [442,11,485,29,468,'468 372c0 -52 -57 -383 -225 -383c-46 0 -134 16 -134 124c0 43 13 89 57 205c7 18 17 45 17 70c0 32 -17 32 -25 32c-29 0 -72 -23 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -12 -50 c-31 -83 -58 -156 -58 -212c0 -52 23 -87 74 -87c117 0 178 229 178 271c0 36 -13 62 -34 82c-11 11 -16 17 -16 30c0 22 24 48 49 48c18 0 44 -16 44 -70'], + 0x1D464: [442,11,716,29,691,'691 372c0 -48 -32 -182 -66 -260c-26 -60 -70 -123 -145 -123c-30 0 -99 6 -125 70c-40 -70 -87 -70 -104 -70c-75 0 -142 35 -142 126c0 38 12 84 56 202c7 17 18 45 18 70c0 32 -16 33 -25 33c-35 0 -74 -31 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c49 0 82 -37 82 -82c0 -20 -6 -34 -17 -64c-47 -123 -52 -162 -52 -194c0 -17 0 -91 80 -91c39 0 69 31 92 84c-1 5 -1 7 -1 18c0 18 2 36 9 66c7 26 54 217 57 224c7 20 25 28 37 28c15 0 29 -9 29 -27c0 -6 -10 -43 -15 -65l-42 -168 c-4 -14 -11 -45 -11 -73c0 -57 27 -87 74 -87c49 0 84 35 110 88c26 51 55 149 55 183c0 48 -25 74 -36 85c-9 8 -15 14 -15 27c0 22 25 48 50 48c17 0 44 -15 44 -70'], + 0x1D465: [442,11,572,29,527,'527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66'], + 0x1D466: [442,205,490,29,490,'490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27'], + 0x1D467: [442,11,465,43,467,'467 432c0 -4 -22 -52 -117 -145c-36 -36 -98 -90 -98 -90c-36 -31 -65 -56 -119 -114c9 3 27 3 27 3c21 0 36 -4 70 -17c21 -7 39 -13 59 -13c33 0 97 19 120 84c3 7 5 13 14 13c8 0 12 -5 12 -10c0 -27 -58 -154 -157 -154c-29 0 -47 16 -64 37c-25 29 -35 38 -58 38 c-32 0 -62 -27 -85 -62c-6 -11 -8 -13 -16 -13c0 0 -12 0 -12 10c0 7 35 64 103 131l90 84c19 16 103 88 139 131c-26 0 -37 0 -77 15c-23 8 -42 15 -63 15c-8 0 -66 -1 -85 -47c-2 -6 -4 -11 -13 -11s-12 6 -12 11c0 21 46 114 121 114c33 0 50 -20 69 -43 c15 -17 27 -32 51 -32s45 16 75 64c5 9 8 11 15 11c0 0 11 0 11 -10'], + 0x1D468: [711,0,869,45,834,'834 29c0 -29 -19 -29 -28 -29c-23 0 -47 2 -70 2l-69 1l-149 -3c-11 0 -22 5 -22 18c0 29 17 29 37 29c15 0 46 1 65 5l-23 146h-270l-92 -140c22 -11 50 -11 58 -11s26 0 26 -18c0 -29 -20 -29 -27 -29c-36 0 -74 3 -111 3c-31 0 -65 -3 -95 -3c-12 0 -19 10 -19 18 c0 29 18 29 32 29c73 1 85 19 97 38l393 601c14 21 22 25 44 25c25 0 30 -4 34 -29l94 -615c3 -17 4 -18 16 -19c14 -1 25 -1 39 -1c25 0 40 0 40 -18zM568 245l-44 288l-188 -288h232'], + 0x1D469: [686,0,866,43,854,'854 547c0 -67 -57 -160 -217 -189c92 -8 167 -51 167 -137c0 -89 -94 -221 -303 -221h-424c-16 0 -34 0 -34 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1c18 2 19 3 23 19l143 570c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18c0 29 17 29 37 29h401 c141 0 213 -57 213 -139zM719 552c0 87 -81 87 -101 87h-149c-11 0 -18 0 -27 -1c-6 -1 -7 -2 -11 -17l-62 -246h158c136 0 192 107 192 177zM665 237c0 102 -84 102 -110 102h-195l-72 -291c7 -1 9 -1 24 -1h160c142 0 193 113 193 190'], + 0x1D46A: [703,17,817,55,855,'855 689c0 -6 -2 -11 -3 -16l-57 -225c-5 -21 -6 -22 -28 -22c-14 0 -27 0 -27 15c0 10 3 24 3 35c0 88 -51 180 -173 180c-110 0 -207 -48 -261 -112c-99 -116 -115 -303 -115 -332c0 -27 4 -95 58 -136c41 -32 95 -46 156 -46c114 0 244 72 285 199c5 17 6 19 25 19 c9 0 23 0 23 -14c0 -5 -18 -97 -115 -169c-76 -56 -161 -82 -245 -82c-175 0 -326 81 -326 270c0 205 177 450 499 450c69 0 137 -21 183 -72l93 72c11 0 25 0 25 -14'], + 0x1D46B: [686,0,938,43,915,'915 439c0 -203 -160 -439 -447 -439h-391c-16 0 -34 0 -34 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1c18 2 19 3 23 19l143 570c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18c0 29 17 29 37 29h399c149 0 276 -74 276 -247zM782 474c0 23 0 82 -50 124 c-48 38 -115 41 -144 41h-114c-11 0 -18 0 -27 -1c-6 -1 -7 -2 -11 -17l-143 -573c7 -1 9 -1 24 -1h124c115 0 219 46 277 163c27 56 64 194 64 264'], + 0x1D46C: [680,0,810,43,825,'825 662l-1 -16l-18 -179c-2 -18 -3 -28 -24 -28c-5 0 -24 0 -24 19c0 16 4 38 4 56c0 95 -44 119 -153 119h-131c-10 0 -21 0 -34 -2l-63 -255h60c75 0 105 16 125 91c5 19 7 26 26 26c4 0 24 0 24 -18c0 0 0 -3 -4 -16l-56 -223c-5 -18 -6 -24 -25 -24 c-10 0 -23 3 -23 18l1 10c1 3 8 30 8 46c0 34 -20 43 -79 43h-69l-70 -281c7 -1 9 -1 24 -1h130c169 0 221 66 281 198c12 27 13 29 29 29c5 0 24 0 24 -18c0 0 0 -5 -6 -18l-96 -217c-9 -21 -13 -21 -37 -21h-571c-17 0 -34 0 -34 18c0 4 0 20 12 27c4 2 6 2 32 2 c16 0 36 0 53 1c18 2 19 3 23 19l141 564c-21 1 -40 2 -61 2c-27 0 -41 0 -41 18c0 0 2 19 9 24c5 4 6 5 27 5h554c16 0 33 0 33 -18'], + 0x1D46D: [680,0,689,43,809,'809 662l-1 -16l-18 -179c-2 -18 -3 -28 -24 -28c-5 0 -24 0 -24 19c0 4 4 34 4 58c0 88 -35 117 -149 117h-119c-10 0 -21 0 -34 -2l-66 -267h56c72 0 103 15 123 91c5 19 7 26 26 26c4 0 24 0 24 -18c0 0 0 -3 -4 -16l-56 -223c-5 -18 -6 -24 -25 -24 c-10 0 -23 3 -23 18c0 0 1 7 3 14c3 12 6 31 6 42c0 33 -17 43 -77 43h-65l-67 -266c10 -2 25 -4 63 -4h33c16 0 33 0 33 -18c0 -29 -18 -29 -30 -29c-28 0 -57 2 -86 2l-90 1l-81 -1c-25 0 -51 -2 -76 -2c-22 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1 c18 2 19 3 23 19l141 564c-21 1 -40 2 -61 2c-27 0 -41 0 -41 18c0 0 2 19 9 24c5 4 6 5 27 5h538c16 0 33 0 33 -18'], + 0x1D46E: [703,17,887,55,854,'854 689c0 -6 -2 -11 -3 -16l-57 -225c-5 -21 -6 -22 -28 -22c-14 0 -27 0 -27 15c0 10 3 25 3 36c0 82 -47 179 -173 179c-102 0 -198 -42 -256 -107c-97 -109 -118 -288 -118 -334c0 -22 0 -91 53 -135c47 -38 107 -50 165 -50c63 0 143 26 160 94c0 0 17 65 18 72 c7 24 7 27 7 27c0 6 -55 6 -66 6h-37c-16 0 -34 0 -34 18c0 29 19 29 31 29l178 -3l67 1c23 0 46 2 68 2c18 0 21 -13 21 -18c0 -29 -16 -29 -41 -29c-12 0 -26 0 -38 -2c-7 -1 -8 -2 -12 -17l-47 -187c-4 -15 -6 -23 -16 -23c-7 0 -58 26 -83 52c-32 -34 -102 -69 -207 -69 c-186 0 -327 87 -327 270c0 205 178 450 498 450c111 0 163 -52 183 -72l93 72c11 0 25 0 25 -14'], + 0x1D46F: [686,0,982,43,1027,'1027 668c0 0 -1 -19 -11 -26c-4 -3 -24 -3 -37 -3c-11 0 -46 0 -68 -4l-146 -586c21 -1 40 -2 61 -2c27 0 41 0 41 -18c0 0 -2 -16 -6 -22c-5 -7 -13 -7 -23 -7c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-22 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2 c16 0 36 0 53 1c18 2 19 3 23 19l67 266h-326l-71 -284c21 -1 40 -2 61 -2c27 0 41 0 41 -18c0 0 -2 -16 -6 -22c-5 -7 -13 -7 -23 -7c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-22 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1 c18 2 19 3 23 19l143 570c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18c0 29 20 29 29 29c26 0 53 -2 79 -2l77 -1l75 1c25 0 51 2 76 2c12 0 22 -5 22 -18c0 0 -1 -19 -11 -26c-4 -3 -24 -3 -37 -3c-11 0 -46 0 -68 -4l-63 -255h326l64 257c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18 c0 29 20 29 29 29c26 0 53 -2 79 -2l77 -1l75 1c25 0 51 2 76 2c12 0 22 -5 22 -18'], + 0x1D470: [686,0,511,38,566,'566 668c0 -6 -3 -20 -9 -24c-5 -4 -6 -5 -27 -5h-21c-15 0 -28 0 -43 -1c-20 -2 -21 -3 -25 -20l-142 -569c13 -1 46 -2 53 -2h21c17 0 34 0 34 -18c0 -29 -20 -29 -30 -29c-25 0 -51 2 -77 2l-83 1l-81 -1c-25 0 -51 -2 -76 -2c-11 0 -22 5 -22 18c0 29 17 29 37 29h21 c13 0 31 0 43 2c19 1 20 2 24 18l143 570l-53 2h-21c-18 0 -34 0 -34 18c0 29 18 29 29 29c25 0 52 -2 78 -2l83 -1l80 1c25 0 51 2 76 2c12 0 22 -6 22 -18'], + 0x1D471: [686,17,631,56,694,'694 668c0 -29 -16 -29 -42 -29c-12 0 -26 0 -38 -2c-7 -1 -8 -2 -12 -17l-119 -474c-29 -117 -150 -163 -262 -163c-96 0 -165 40 -165 109c0 63 49 95 89 95c34 0 61 -24 61 -57c0 -27 -18 -74 -72 -87c30 -23 73 -24 82 -24c46 0 109 30 134 132l121 485 c-24 3 -26 3 -65 3h-35c-18 0 -34 0 -34 18c0 29 18 29 30 29l174 -3l69 1c21 0 43 2 63 2s21 -18 21 -18'], + 0x1D472: [686,0,971,43,1003,'1003 668c0 -28 -16 -28 -34 -29c-51 -2 -72 -13 -95 -25c-35 -18 -218 -147 -285 -194l182 -353c8 -16 10 -20 56 -20c15 0 32 0 32 -18c0 -29 -20 -29 -27 -29c-19 0 -40 2 -60 2l-64 1l-148 -3c-21 0 -21 18 -21 18s2 17 6 22c6 7 12 7 25 7c4 0 34 0 54 6l-149 289 l-124 -85l-52 -208c21 -1 40 -2 61 -2c27 0 41 0 41 -18c0 0 -2 -16 -6 -22c-6 -7 -13 -7 -23 -7c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-21 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1c18 2 19 3 23 19l143 570c-21 1 -40 2 -61 2 c-29 0 -42 0 -42 18c0 29 20 29 29 29c26 0 53 -2 79 -2l77 -1l75 1c25 0 51 2 76 2c12 0 22 -5 22 -18c0 0 -1 -19 -11 -26c-4 -3 -24 -3 -37 -3c-11 0 -46 0 -68 -4l-79 -318l456 315c-17 6 -38 7 -46 7c-6 0 -24 0 -24 18c0 29 20 29 28 29c41 0 84 -3 125 -3 c26 0 55 3 80 3c10 0 18 -9 18 -18'], + 0x1D473: [686,0,756,43,707,'707 256c0 -9 -77 -206 -88 -234c-8 -22 -9 -22 -36 -22h-506c-16 0 -34 0 -34 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1c18 2 19 3 23 19l143 570c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18c0 29 20 29 29 29c25 0 51 -2 77 -2l83 -1l84 1c30 0 60 2 89 2 c4 0 23 0 23 -18c0 -29 -16 -29 -36 -29h-33c-52 0 -69 -4 -71 -5s-3 -2 -7 -16l-142 -570c7 -1 9 -1 24 -1h80c170 0 225 132 253 202c8 21 10 25 27 25c9 0 24 -3 24 -18'], + 0x1D474: [686,0,1142,46,1216,'1216 668c0 -29 -13 -29 -48 -29c-11 0 -46 0 -68 -4l-146 -586c21 -1 40 -2 61 -2c28 0 41 0 41 -18c0 0 -1 -16 -7 -22c-5 -7 -13 -7 -21 -7c-23 0 -47 2 -71 2l-77 1l-70 -1c-24 0 -49 -2 -73 -2c-21 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1 c18 2 19 3 23 19l142 570l-1 1l-432 -615c-8 -11 -16 -23 -36 -23c-21 0 -24 15 -27 30l-121 594h-1l-141 -567c24 -10 59 -10 70 -10c13 0 30 0 30 -18c0 -29 -19 -29 -27 -29c-25 0 -89 3 -114 3c-37 0 -75 -3 -111 -3c-15 0 -20 12 -20 18c0 29 17 29 36 29 c3 0 33 0 57 6c25 5 25 6 30 26l140 558c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18c0 29 17 29 37 29h188c25 0 34 0 40 -28l107 -529l375 532c15 22 20 25 51 25h178c18 0 34 0 34 -18'], + 0x1D475: [686,0,950,43,1027,'1027 668c0 -29 -17 -29 -35 -29c-16 0 -41 -2 -58 -5c-24 -6 -24 -7 -29 -26l-147 -584c-5 -20 -6 -24 -28 -24c-15 0 -19 0 -30 18l-349 584l-136 -545c24 -10 60 -10 69 -10c13 0 31 0 31 -18c0 -29 -20 -29 -27 -29c-25 0 -89 3 -114 3c-37 0 -75 -3 -111 -3 c-18 0 -20 15 -20 18c0 29 17 29 36 29c3 0 33 0 57 6c25 5 25 6 30 26l136 541c1 4 3 10 3 14c0 3 0 5 -44 5h-24c-18 0 -34 0 -34 18c0 29 17 29 37 29h189c24 0 27 0 37 -17l282 -471l108 431c-24 10 -61 10 -70 10c-14 0 -31 0 -31 18c0 29 20 29 27 29 c25 0 89 -3 114 -3c37 0 75 3 111 3c13 0 20 -9 20 -18'], + 0x1D476: [703,17,837,53,815,'815 445c0 -206 -163 -462 -470 -462c-167 0 -292 80 -292 255c0 200 162 465 471 465c173 0 291 -88 291 -258zM679 491c0 127 -82 172 -165 172c-58 0 -141 -23 -208 -105c-82 -103 -112 -290 -112 -353c0 -23 0 -90 44 -134c38 -39 84 -46 117 -46 c57 0 148 22 223 132c65 94 101 269 101 334'], + 0x1D477: [686,0,723,43,849,'849 532c0 -118 -126 -230 -310 -230h-177l-63 -253c21 -1 40 -2 61 -2c29 0 41 0 41 -19c0 -28 -19 -28 -29 -28c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-22 0 -22 18 -22 18c0 5 0 20 13 26c3 3 5 3 31 3c16 0 36 0 53 1c18 2 19 3 23 19l143 570 c-21 1 -40 2 -61 2c-28 0 -42 0 -42 18c0 29 18 29 37 29h385c132 0 224 -52 224 -154zM709 560c0 69 -75 79 -131 79h-104c-11 0 -18 0 -27 -1c-6 -1 -7 -2 -11 -17l-70 -278h137c90 0 135 28 156 55c37 48 50 150 50 162'], + 0x1D478: [703,194,869,53,815,'815 445c0 -114 -63 -345 -305 -434c25 -58 51 -58 73 -58c10 0 84 0 103 50c2 5 6 15 18 15c10 0 18 -8 18 -18c0 -21 -57 -194 -181 -194c-90 0 -97 86 -97 137v50c-50 -10 -87 -10 -99 -10c-167 0 -292 80 -292 255c0 200 162 465 471 465c173 0 291 -88 291 -258z M682 483c0 132 -82 180 -168 180c-65 0 -150 -29 -214 -111c-86 -112 -114 -294 -114 -351c0 -67 20 -128 82 -158c-1 4 -1 5 -1 13c0 56 60 99 115 99c61 0 88 -43 108 -92c179 107 192 413 192 420zM443 39c-2 73 -34 80 -60 80c-41 0 -80 -31 -80 -63 c0 -33 34 -33 52 -33c41 0 81 13 88 16'], + 0x1D479: [686,17,872,43,881,'702 556c0 83 -94 83 -185 83c-25 0 -69 0 -75 -2c0 0 -2 -2 -6 -16l-65 -260h116c100 0 145 31 159 45c52 52 56 150 56 150zM881 99c0 -16 -37 -116 -143 -116c-52 0 -186 8 -186 112c0 16 4 31 14 73c7 25 16 61 16 75c0 75 -70 82 -99 82h-121l-69 -276 c21 -1 40 -2 61 -2c27 0 41 0 41 -18c0 0 -2 -17 -7 -22c-5 -7 -13 -7 -21 -7l-153 3l-73 -1c-25 0 -51 -2 -76 -2c-21 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1c18 2 19 3 23 19l143 570c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18c0 29 17 29 37 29h347 c150 0 257 -53 257 -153c0 -51 -32 -146 -211 -194c65 -24 86 -69 86 -108c0 -9 -3 -28 -5 -40c-13 -80 -14 -96 -14 -111c0 -50 19 -61 46 -61c38 0 74 38 87 78c4 15 7 20 24 20c6 0 24 0 24 -18'], + 0x1D47A: [703,17,693,64,714,'714 688c0 0 -3 -17 -4 -20l-48 -188c-5 -20 -6 -22 -25 -22c-10 0 -24 0 -24 15c0 3 3 21 3 39c0 113 -76 148 -159 148c-121 0 -165 -89 -165 -137c0 -39 27 -70 71 -80l78 -18c84 -19 108 -24 144 -60c23 -23 45 -63 45 -117c0 -102 -87 -265 -283 -265 c-48 0 -133 8 -189 58c-16 -13 -54 -46 -57 -48c-11 -9 -11 -10 -20 -10c-8 0 -17 3 -17 14l51 208c5 19 6 23 26 23c9 0 23 0 23 -14c0 0 -1 -7 -1 -10c-5 -19 -5 -33 -5 -41c0 -20 0 -68 57 -103c46 -27 112 -30 136 -30c130 0 171 105 171 153c0 72 -62 86 -79 90l-78 18 c-74 17 -98 22 -133 53c-24 23 -48 61 -48 114c0 102 91 245 276 245c67 0 120 -18 159 -58l55 46c13 12 15 12 22 12s18 -2 18 -15'], + 0x1D47B: [675,0,637,25,772,'772 655l-28 -193c-3 -20 -6 -28 -25 -28c-6 0 -24 0 -24 19c0 0 2 12 2 18c4 24 7 42 7 68c0 84 -49 89 -145 89h-42c-19 -1 -20 -2 -24 -18l-140 -560c24 -3 48 -3 72 -3h41c17 0 34 0 34 -18c0 -29 -19 -29 -31 -29c-32 0 -64 2 -96 2l-102 1l-99 -1 c-32 0 -64 -2 -95 -2c-7 0 -24 0 -24 19c0 28 17 28 36 28h42c51 0 77 4 83 5l143 575c-20 1 -22 1 -52 1c-142 0 -177 -23 -229 -169c-8 -20 -10 -25 -27 -25c-5 0 -24 0 -24 18l6 18l64 185c7 20 13 20 36 20h607c20 0 34 0 34 -20'], + 0x1D47C: [686,17,800,63,877,'877 668c0 -29 -16 -29 -35 -29c-16 0 -41 -2 -58 -5c-24 -6 -24 -7 -29 -26l-96 -382c-34 -137 -154 -243 -333 -243c-151 0 -263 64 -263 195c0 19 0 27 9 63l61 247l22 88l15 58c0 5 -32 5 -56 5c-33 0 -46 0 -46 18c0 29 19 29 29 29c26 0 53 -2 79 -2l77 -1l75 1 c25 0 51 2 76 2c11 0 22 -5 22 -18c0 -29 -13 -29 -48 -29c-11 0 -46 0 -68 -4l-105 -419c-6 -25 -10 -50 -10 -75c0 -72 44 -111 138 -111c120 0 238 60 274 205l99 394c-24 10 -61 10 -70 10c-14 0 -31 0 -31 18c0 29 20 29 27 29c25 0 89 -3 114 -3c37 0 75 3 111 3 c12 0 20 -7 20 -18'], + 0x1D47D: [686,17,678,66,885,'885 668c0 -29 -18 -29 -30 -29c-69 -1 -81 -18 -96 -40l-407 -590c-13 -19 -18 -26 -46 -26c-19 0 -30 0 -35 28l-114 608c-3 17 -4 18 -15 19c-14 1 -26 1 -39 1c-21 0 -37 0 -37 18c0 29 19 29 28 29c21 0 44 -2 66 -2l69 -1l73 1c25 0 51 2 76 2c12 0 22 -5 22 -18 c0 -29 -16 -29 -38 -29c-7 0 -61 0 -61 -8c0 -3 1 -11 2 -14l88 -468l330 480c-22 10 -51 10 -56 10c-9 0 -26 0 -26 18c0 29 19 29 27 29c35 0 74 -3 110 -3c30 0 62 3 91 3c13 0 18 -12 18 -18'], + 0x1D47E: [686,17,1093,65,1207,'1207 668c0 -29 -18 -29 -30 -29c-63 -1 -75 -19 -87 -38l-373 -592c-11 -18 -19 -26 -41 -26c-24 0 -27 7 -30 30l-59 455l-289 -459c-12 -19 -21 -26 -42 -26c-24 0 -26 10 -29 30l-81 624c-13 1 -33 2 -48 2c-17 0 -33 0 -33 18c0 29 19 29 27 29c0 0 39 -2 66 -2 l64 -1l148 3c21 0 21 -18 21 -18s-2 -18 -8 -23c-5 -5 -6 -6 -29 -6c-15 0 -46 -1 -65 -5l60 -463l221 350c8 11 8 13 8 16l-13 100c-13 1 -33 2 -48 2c-16 0 -33 0 -33 18c0 29 20 29 27 29c0 0 38 -2 67 -2l64 -1l147 3c21 0 21 -18 21 -18c0 -29 -16 -29 -37 -29 c-15 0 -46 -1 -65 -5l60 -463l289 457c-26 11 -66 11 -70 11c-7 0 -25 0 -25 18c0 29 19 29 27 29c37 0 77 -3 115 -3c28 0 58 3 85 3c10 0 18 -9 18 -18'], + 0x1D47F: [686,0,947,39,953,'953 668c0 -3 -2 -29 -21 -29c-104 -1 -116 -13 -156 -51l-62 -63l-132 -130l158 -331c7 -13 8 -14 23 -16c15 -1 25 -1 39 -1c24 0 40 0 40 -18c0 -29 -20 -29 -28 -29c-23 0 -47 2 -70 2l-69 1l-153 -3c-21 0 -22 15 -22 18c0 29 19 29 29 29c24 0 58 6 58 6l-113 236 l-233 -232c19 -7 39 -10 59 -10c8 0 26 0 26 -18c0 -29 -20 -29 -28 -29l-130 3c-24 0 -85 -3 -109 -3c-15 0 -20 11 -20 18c0 29 17 29 35 29c89 1 110 22 128 39l251 248l-138 289c-6 12 -7 13 -21 15c-14 1 -25 1 -39 1c-28 0 -41 0 -41 19c0 28 19 28 28 28 c23 0 47 -2 70 -2l69 -1l152 3c13 0 22 -5 22 -19c0 -28 -18 -28 -29 -28c-17 0 -48 -4 -58 -6l92 -193l191 189c-4 1 -30 9 -60 10c-9 0 -25 1 -25 19c0 28 20 28 28 28l130 -3c36 0 74 3 109 3c16 0 20 -12 20 -18'], + 0x1D480: [686,0,675,44,875,'875 668c0 -29 -18 -29 -29 -29c-67 -1 -90 -16 -112 -39l-305 -326l-56 -225c21 -1 40 -2 61 -2c28 0 42 0 42 -18c0 -29 -20 -29 -29 -29l-153 3l-73 -1c-25 0 -51 -2 -76 -2c-21 0 -22 18 -22 18c0 7 4 20 10 25c4 4 6 4 36 4c18 0 35 0 52 2c18 1 19 2 23 19l52 206 l-152 349c-6 13 -8 13 -20 15c-14 1 -26 1 -39 1c-27 0 -41 0 -41 18c0 29 18 29 28 29c23 0 48 -2 72 -2l69 -1l155 3c11 0 22 -5 22 -18c0 -28 -17 -29 -34 -29c-27 0 -28 0 -56 -4l128 -293l271 290c-15 5 -35 7 -45 7s-27 0 -27 18c0 29 20 29 27 29c36 0 74 -3 111 -3 c30 0 63 3 92 3c13 0 18 -12 18 -18'], + 0x1D481: [686,0,773,68,805,'805 672c0 -14 -7 -25 -15 -34l-549 -587h144c190 0 237 93 280 220c5 13 16 13 23 13c10 0 23 -3 23 -18c0 0 0 -3 -3 -14l-74 -229c-7 -23 -10 -23 -36 -23h-500c-20 0 -30 0 -30 14c0 19 10 30 18 38l549 587h-134c-138 0 -213 -50 -258 -177c-5 -14 -9 -17 -24 -17 c-6 0 -23 1 -23 18c0 0 0 5 5 20l55 179c7 24 11 24 37 24h483c18 0 29 0 29 -14'], + 0x1D482: [452,8,633,45,599,'599 148c0 -5 -13 -59 -38 -99c-21 -36 -50 -57 -87 -57c-11 0 -77 0 -115 54c-16 -15 -68 -54 -139 -54c-83 0 -175 42 -175 165c0 137 108 295 282 295c58 0 91 -26 106 -42c12 15 32 25 51 25c21 0 47 -12 47 -44c0 -9 -10 -49 -16 -74l-23 -89l-22 -90 c-10 -40 -14 -56 -14 -73c0 -33 12 -37 23 -37c25 0 48 20 68 100c6 25 6 27 8 29c5 5 9 5 20 5c9 0 24 0 24 -14zM412 358c0 11 -24 58 -83 58c-41 0 -90 -25 -121 -98c-16 -39 -50 -162 -50 -214c0 -22 5 -76 67 -76c48 0 95 31 124 65l61 251'], + 0x1D483: [694,8,521,52,506,'506 287c0 -132 -103 -295 -284 -295c-75 0 -170 35 -170 163c0 23 0 35 14 91l69 276l28 115c-13 2 -31 2 -42 2c-7 0 -26 0 -26 18c0 28 18 29 32 30l129 6c2 1 3 1 7 1c11 0 22 -5 22 -18c0 0 0 -3 -4 -17l-59 -239c21 13 61 32 109 32c83 0 175 -42 175 -165z M393 340c0 22 -5 76 -67 76c-61 0 -118 -51 -123 -68l-34 -137c-7 -31 -17 -68 -17 -100c0 -62 33 -83 72 -83c29 0 85 17 119 98c16 39 50 162 50 214'], + 0x1D484: [452,8,513,46,511,'511 92c0 -12 -40 -53 -98 -76c-60 -23 -129 -24 -155 -24c-156 0 -212 83 -212 173c0 131 112 287 313 287c88 0 140 -40 140 -93c0 -41 -30 -77 -72 -77c-41 0 -50 31 -50 46c0 0 1 52 54 68c-26 19 -58 20 -71 20c-42 0 -103 -18 -143 -86c-30 -52 -56 -174 -56 -209 c0 -60 33 -93 99 -93c78 0 157 22 211 79c7 8 9 11 15 11c9 0 25 -18 25 -26'], + 0x1D485: [694,8,610,45,604,'604 676c0 0 0 -3 -4 -17l-138 -551c-4 -14 -6 -28 -6 -43c0 -33 12 -37 23 -37c25 0 48 20 68 100c6 25 6 27 8 29c5 5 9 5 20 5c9 0 24 0 24 -14c0 -5 -13 -59 -38 -99c-21 -36 -50 -57 -87 -57c-11 0 -77 0 -115 54c-16 -15 -68 -54 -139 -54c-83 0 -175 42 -175 165 c0 137 108 295 282 295c53 0 86 -22 101 -36l54 221c-13 2 -31 2 -42 2c-8 0 -26 0 -26 18c0 28 18 29 32 30l129 6c2 1 3 1 7 1c11 0 22 -5 22 -18zM412 358c0 11 -24 58 -83 58c-41 0 -90 -25 -121 -98c-16 -39 -50 -162 -50 -214c0 -22 5 -76 67 -76c48 0 95 31 124 65 l61 251'], + 0x1D486: [452,8,554,49,511,'511 92c0 -12 -40 -53 -98 -76c-60 -23 -129 -24 -155 -24c-132 0 -209 65 -209 180c0 155 128 280 309 280c82 0 137 -38 137 -96c0 -32 -14 -89 -99 -118c-42 -14 -107 -20 -174 -20h-44c-11 -41 -15 -74 -15 -93c0 -57 26 -97 98 -97c78 0 156 22 210 79 c7 8 9 11 15 11c9 0 25 -18 25 -26zM435 355c0 45 -41 61 -77 61c-31 0 -77 -11 -112 -46c-17 -16 -41 -43 -59 -116c97 0 248 0 248 101'], + 0x1D487: [702,202,568,62,626,'626 622c0 -38 -31 -74 -72 -74c-25 0 -49 16 -49 46c0 27 18 53 42 65c-12 5 -21 7 -35 7c-5 0 -16 0 -29 -12c-10 -9 -10 -11 -13 -29l-33 -181h112c17 0 34 0 34 -18c0 -29 -18 -29 -37 -29h-117l-54 -302c-3 -17 -26 -144 -69 -210c-8 -13 -60 -87 -135 -87 c-52 0 -109 26 -109 80c0 38 31 74 72 74c25 0 49 -16 49 -46c0 -28 -19 -54 -44 -66c7 -3 15 -6 34 -6c32 0 48 46 50 51c5 14 16 77 18 86l76 426h-92c-16 0 -33 0 -33 18c0 29 17 29 36 29h98c19 107 25 146 48 183c35 56 91 75 138 75c62 0 114 -29 114 -80'], + 0x1D488: [452,202,545,6,534,'534 391c0 -4 0 -10 -4 -26l-107 -426c-30 -120 -168 -141 -258 -141c-71 0 -159 4 -159 70c0 46 38 74 71 74s50 -24 50 -46c0 -4 -2 -37 -31 -58c26 -4 44 -4 68 -4c27 0 60 0 102 35c35 28 42 58 49 87l19 75c-18 -11 -58 -31 -110 -31c-86 0 -175 45 -175 163 c0 131 104 289 281 289c59 0 92 -26 106 -41c13 15 31 24 51 24c21 0 47 -12 47 -44zM416 360c0 7 -22 56 -84 56c-30 0 -87 -14 -122 -100c-15 -37 -48 -157 -48 -205c0 -53 29 -75 68 -75c9 0 56 0 109 48c12 11 12 15 16 29l58 232c3 11 3 15 3 15'], + 0x1D489: [694,8,668,50,634,'634 148c0 -20 -50 -156 -156 -156c-55 0 -113 32 -113 90c0 17 3 24 14 51c19 49 63 166 63 224c0 49 -24 59 -50 59c-83 0 -133 -68 -149 -90c-15 -20 -15 -22 -20 -41l-60 -237c-14 -56 -59 -56 -65 -56c-29 0 -48 21 -48 45c0 4 3 19 4 23l144 577c-13 2 -31 2 -42 2 c-8 0 -26 0 -26 18c0 28 18 29 32 30l129 6c2 1 3 1 7 1c11 0 22 -5 22 -18c0 0 0 -3 -4 -17l-67 -269c68 62 129 62 151 62c72 0 149 -24 149 -116c0 -56 -46 -173 -65 -222c-6 -16 -17 -43 -17 -65c0 -21 10 -21 17 -21c16 0 71 10 103 121c4 13 11 13 23 13 c9 0 24 0 24 -14'], + 0x1D48A: [694,8,405,32,359,'334 646c0 -34 -34 -69 -71 -69c-29 0 -49 21 -49 48c0 34 33 69 71 69c28 0 49 -21 49 -48zM359 148c0 -22 -51 -156 -155 -156c-62 0 -114 37 -114 90c0 9 3 21 8 34l67 173c24 60 33 82 33 105c0 19 -6 22 -16 22c-21 0 -72 -16 -103 -121c-4 -13 -11 -13 -23 -13 c-9 0 -24 0 -24 14c0 22 51 156 155 156c62 0 114 -37 114 -90c0 -9 -3 -21 -8 -34l-67 -173c-24 -60 -33 -82 -33 -105c0 -19 6 -22 16 -22c21 0 72 16 103 121c4 13 11 13 23 13c9 0 24 0 24 -14'], + 0x1D48B: [694,202,471,-14,450,'450 646c0 -34 -33 -69 -71 -69c-28 0 -49 21 -49 48c0 34 34 69 71 69c29 0 49 -21 49 -48zM413 354c0 -14 -2 -23 -5 -34l-92 -366c-31 -125 -165 -156 -228 -156c-62 0 -102 30 -102 71c0 43 36 73 71 73c33 0 50 -24 50 -46c0 -3 0 -38 -35 -60c6 -2 11 -2 16 -2 c53 0 100 55 116 120l96 382c3 13 6 24 6 43c0 35 -14 37 -24 37c-39 0 -95 -32 -133 -118c-7 -15 -8 -16 -25 -16c-9 0 -24 0 -24 14c0 17 68 156 187 156c62 0 126 -34 126 -98'], + 0x1D48C: [694,8,604,50,570,'570 148c0 -8 -37 -156 -137 -156c-66 0 -128 38 -128 103c0 10 0 11 3 24c3 11 3 14 3 21c0 61 -87 73 -106 75l-46 -183c-14 -31 -43 -40 -61 -40c-29 0 -48 21 -48 45c0 4 3 19 4 23l144 577c-13 2 -31 2 -42 2c-7 0 -26 0 -26 18c0 28 18 29 32 30l129 6c2 1 3 1 7 1 c11 0 22 -5 22 -18c0 0 0 -3 -4 -17l-96 -386c38 21 86 67 96 78c59 57 114 101 175 101c43 0 76 -30 76 -82c0 -71 -53 -84 -72 -84c-33 0 -50 24 -50 46c0 25 19 65 69 72c0 0 -7 12 -26 12c-30 0 -72 -12 -149 -88c-55 -53 -79 -69 -89 -76c72 -7 173 -23 173 -108 c0 -7 0 -14 -3 -25c-6 -23 -8 -42 -8 -52c0 -30 10 -39 26 -39c51 0 75 85 83 114c5 18 7 20 25 20c9 0 24 0 24 -14'], + 0x1D48D: [694,8,348,33,288,'288 676c0 0 0 -3 -4 -17l-138 -551c-3 -14 -6 -24 -6 -44c0 -26 8 -36 23 -36c27 0 49 24 68 100c6 25 6 27 8 29c5 5 9 5 20 5c9 0 24 0 24 -14c0 -6 -14 -60 -38 -99c-22 -36 -50 -57 -87 -57c-59 0 -125 32 -125 98c0 14 2 23 5 34l128 513c-13 2 -31 2 -42 2 c-7 0 -26 0 -26 18c0 28 18 29 32 30l129 6c2 1 3 1 7 1c11 0 22 -5 22 -18'], + 0x1D48E: [452,8,1032,32,998,'998 148c0 -20 -50 -156 -156 -156c-55 0 -113 32 -113 90c0 17 3 24 14 51c19 50 63 167 63 224c0 49 -24 59 -50 59c-70 0 -117 -48 -143 -82c-21 -28 -23 -33 -26 -48c-10 -41 -55 -230 -63 -251c-15 -34 -46 -43 -63 -43c-31 0 -47 23 -47 44c0 7 11 49 17 74l45 180 c4 15 11 44 11 67c0 49 -24 59 -50 59c-42 0 -75 -17 -103 -39c-33 -27 -61 -72 -62 -78c-2 -3 -27 -106 -31 -119l-28 -112c-7 -30 -19 -76 -71 -76c-31 0 -47 23 -47 44c0 7 5 26 8 40l36 140l22 90c10 40 14 56 14 73c0 27 -8 37 -23 37c-26 0 -48 -22 -68 -100 c-6 -25 -6 -27 -8 -29c-5 -5 -9 -5 -20 -5c-9 0 -24 0 -24 14c0 5 13 59 38 99c22 36 50 57 87 57c54 0 109 -26 123 -76c71 76 144 76 165 76c11 0 61 0 97 -21c38 -21 45 -52 48 -65c75 86 151 86 174 86c72 0 149 -24 149 -116c0 -56 -46 -173 -62 -214 c-10 -25 -20 -50 -20 -73c0 -21 10 -21 17 -21c16 0 70 10 103 121c4 13 11 13 23 13c9 0 24 0 24 -14'], + 0x1D48F: [452,8,713,32,679,'679 148c0 -20 -50 -156 -156 -156c-55 0 -113 32 -113 90c0 17 3 24 14 51c19 50 63 167 63 224c0 49 -24 59 -50 59c-42 0 -75 -17 -103 -39c-33 -27 -61 -72 -62 -78c-2 -3 -27 -106 -31 -119l-28 -112c-7 -30 -19 -76 -71 -76c-31 0 -47 23 -47 44c0 7 5 26 8 40 l36 140l22 90c10 40 14 56 14 73c0 27 -8 37 -23 37c-26 0 -48 -22 -68 -100c-6 -25 -6 -27 -8 -29c-5 -5 -9 -5 -20 -5c-9 0 -24 0 -24 14c0 5 13 59 38 99c22 36 50 57 87 57c54 0 109 -26 123 -76c71 76 144 76 165 76c72 0 149 -24 149 -116c0 -56 -46 -173 -62 -214 c-10 -25 -20 -50 -20 -73c0 -21 10 -21 17 -21c16 0 70 10 103 121c4 13 11 13 23 13c9 0 24 0 24 -14'], + 0x1D490: [452,8,585,46,569,'569 279c0 -126 -107 -287 -315 -287c-131 0 -208 66 -208 173c0 126 107 287 315 287c131 0 208 -66 208 -173zM454 323c0 76 -53 93 -95 93c-45 0 -105 -22 -142 -87c-30 -53 -56 -173 -56 -208c0 -76 53 -93 95 -93c45 0 105 22 142 87c30 53 56 173 56 208'], + 0x1D491: [452,194,601,-15,586,'586 287c0 -137 -108 -295 -282 -295c-53 0 -86 22 -101 36l-43 -174c13 -1 29 -1 43 -1c10 0 26 -1 26 -18c0 -29 -19 -29 -26 -29c-34 0 -72 3 -107 3c-30 0 -63 -3 -92 -3c-11 0 -19 8 -19 19c0 28 18 28 35 28c9 0 20 0 26 2c0 0 2 2 6 16l117 465c4 14 6 28 6 43 c0 33 -12 37 -23 37c-25 0 -48 -20 -68 -100c-6 -25 -6 -27 -8 -29c-5 -5 -9 -5 -20 -5c-9 0 -24 0 -24 14c0 5 13 59 38 99c21 36 50 57 87 57c11 0 77 0 115 -54c16 15 68 54 139 54c83 0 175 -42 175 -165zM473 340c0 22 -5 76 -67 76c-48 0 -95 -31 -124 -65l-61 -251 l-2 -14c0 -11 24 -58 83 -58c41 0 90 25 121 98c16 39 50 162 50 214'], + 0x1D492: [452,194,542,45,543,'543 434l-144 -580c13 -1 29 -1 43 -1c9 0 26 -1 26 -18c0 -29 -19 -29 -26 -29c-36 0 -74 3 -111 3c-35 0 -72 -3 -106 -3c-16 0 -20 12 -20 18c0 0 3 17 8 23s11 6 28 6c11 0 27 0 38 2c7 1 8 2 12 17l38 152c-21 -13 -61 -32 -109 -32c-83 0 -175 42 -175 165 c0 137 108 295 282 295c59 0 93 -27 107 -43c31 29 91 43 91 43c14 0 18 -13 18 -18zM412 358c0 11 -24 58 -83 58c-41 0 -90 -25 -121 -98c-16 -39 -50 -162 -50 -214c0 -22 5 -76 67 -76c35 0 77 18 109 50c11 10 11 12 16 29l60 237c1 3 2 10 2 14'], + 0x1D493: [452,8,529,32,505,'505 365c0 -51 -38 -79 -72 -79c-33 0 -50 24 -50 46c0 10 6 59 61 70c-3 3 -14 14 -39 14c-50 0 -87 -29 -110 -58c-13 -15 -13 -17 -17 -32l-70 -281c-11 -41 -46 -53 -66 -53c-31 0 -47 23 -47 44c0 7 12 52 18 78l20 82l28 108c11 47 14 58 14 76c0 26 -8 36 -23 36 c-27 0 -49 -24 -68 -100c-6 -25 -6 -27 -8 -29c-5 -5 -9 -5 -20 -5c-9 0 -24 0 -24 14c0 6 14 60 38 99c22 36 50 57 87 57c36 0 93 -14 117 -60c30 32 77 60 133 60c62 0 98 -41 98 -87'], + 0x1D494: [452,8,531,57,476,'476 364c0 -48 -37 -68 -61 -68c-22 0 -43 15 -43 41c0 14 9 44 42 57c-27 20 -63 22 -83 22c-112 0 -112 -77 -112 -77c0 -37 39 -44 94 -54c35 -6 73 -13 104 -40c23 -20 40 -47 40 -81c0 0 0 -172 -228 -172c-102 0 -172 34 -172 99c0 50 38 78 72 78 c20 0 49 -10 49 -46c0 -30 -21 -59 -55 -69c22 -16 59 -26 108 -26c149 0 149 91 149 95c0 45 -60 56 -90 61c-68 13 -85 16 -113 38c-22 18 -36 46 -36 76c0 25 16 83 61 117c46 35 102 37 131 37c90 0 143 -35 143 -88'], + 0x1D495: [643,8,415,25,379,'379 148c0 -17 -68 -156 -187 -156c-62 0 -126 33 -126 98c0 11 10 53 17 79l57 228h-81c-18 0 -34 0 -34 18c0 29 17 29 37 29h90c16 63 16 65 20 82c7 28 19 74 23 82c16 28 43 35 58 35c21 0 47 -12 47 -44c0 -4 0 -10 -4 -26l-32 -129h80c16 0 33 0 33 -18 c0 -6 -3 -20 -9 -24c-5 -5 -7 -5 -27 -5h-89l-73 -289c-3 -13 -6 -24 -6 -43c0 -37 15 -37 24 -37c39 0 95 32 133 118c7 15 8 16 25 16c9 0 24 0 24 -14'], + 0x1D496: [452,8,681,32,647,'647 148c0 -5 -13 -59 -38 -99c-21 -36 -50 -57 -87 -57c-24 0 -82 6 -114 55c-54 -51 -98 -55 -127 -55c-59 0 -159 16 -159 130c0 49 19 105 61 210c4 12 16 40 16 63c0 21 -10 21 -17 21c-16 0 -70 -10 -103 -121c-4 -13 -11 -13 -23 -13c-9 0 -24 0 -24 14 c0 20 50 156 156 156c55 0 113 -32 113 -90c0 -17 -3 -24 -13 -50c-28 -72 -59 -150 -59 -211c0 -23 1 -73 60 -73c51 0 90 41 108 65c2 18 9 47 15 70l57 228c13 44 50 53 66 53c31 0 47 -23 47 -44c0 -7 -12 -55 -19 -83l-23 -89l-22 -90c-10 -40 -14 -56 -14 -73 c0 -27 8 -37 23 -37c26 0 48 22 68 100c6 25 6 27 8 29c5 5 9 5 20 5c9 0 24 0 24 -14'], + 0x1D497: [453,8,567,32,541,'541 362c0 -86 -73 -370 -245 -370c-87 0 -173 28 -173 134c0 48 15 93 61 209c3 8 15 37 15 60c0 21 -10 21 -17 21c-18 0 -71 -13 -103 -121c-4 -13 -11 -13 -23 -13c-9 0 -24 0 -24 14c0 20 50 156 156 156c55 0 113 -32 113 -90c0 -16 -3 -25 -11 -45 c-32 -80 -60 -153 -60 -211c0 -18 0 -78 72 -78c117 0 175 219 175 241c0 20 -8 38 -50 63c-9 5 -30 17 -30 45c0 34 36 76 76 76c0 0 68 0 68 -91'], + 0x1D498: [453,8,831,32,797,'797 362c0 -52 -31 -178 -71 -253c-46 -88 -99 -117 -159 -117c-78 0 -123 22 -150 56c-46 -56 -92 -56 -112 -56c-86 0 -182 26 -182 136c0 42 15 91 54 188c12 31 22 56 22 79c0 21 -11 21 -17 21c-16 0 -70 -10 -103 -121c-4 -13 -11 -13 -23 -13c-9 0 -24 0 -24 14 c0 20 50 156 156 156c55 0 113 -32 113 -90c0 -17 -10 -41 -18 -61c-40 -102 -52 -149 -52 -191c0 -21 0 -82 81 -82c58 0 85 61 85 66c0 6 -3 5 -3 32c0 13 0 26 8 61l51 204c13 45 50 53 66 53c31 0 47 -22 47 -44c0 -5 -6 -30 -10 -45l-14 -56l-25 -101 c-12 -50 -16 -65 -16 -91c0 -20 1 -79 73 -79c43 0 75 26 103 76c31 55 56 150 56 165c0 22 -11 40 -50 63c-9 5 -30 17 -30 45c0 36 38 76 76 76c0 0 68 0 68 -91'], + 0x1D499: [452,8,659,38,604,'604 364c0 -49 -37 -78 -72 -78c-33 0 -50 24 -50 46c0 25 18 59 54 69c-20 15 -43 15 -48 15c-35 0 -70 -31 -85 -91l-35 -136c-9 -37 -22 -90 -22 -111c0 -32 18 -50 56 -50c41 0 113 30 142 121c4 13 11 13 23 13c9 0 24 0 24 -14c0 -33 -68 -156 -194 -156 c-57 0 -113 19 -138 61c-13 -18 -50 -61 -107 -61c-61 0 -114 35 -114 88c0 49 37 78 72 78c33 0 50 -24 50 -46c0 -25 -18 -59 -54 -69c20 -15 43 -15 48 -15c34 0 70 30 85 91l34 137c9 36 23 91 23 110c0 32 -18 50 -56 50c-41 0 -113 -30 -142 -121 c-4 -13 -11 -13 -23 -13c-9 0 -24 0 -24 14c0 33 68 156 194 156c57 0 113 -19 138 -61c13 18 50 61 107 61c61 0 114 -35 114 -88'], + 0x1D49A: [452,202,590,32,582,'582 400c0 -3 0 -5 -5 -23l-94 -378c-31 -124 -163 -201 -278 -201c-81 0 -134 36 -134 87c0 44 35 76 72 76c20 0 49 -10 49 -46c0 -27 -16 -54 -48 -67c20 -12 48 -14 61 -14c69 0 144 65 172 188c-37 -26 -71 -30 -96 -30c-59 0 -159 16 -159 130c0 51 21 108 60 208 c6 16 17 42 17 65c0 21 -10 21 -17 21c-15 0 -70 -10 -103 -121c-4 -13 -11 -13 -23 -13c-9 0 -24 0 -24 14c0 20 50 156 156 156c55 0 113 -32 113 -90c0 -17 -3 -24 -13 -50c-28 -72 -59 -150 -59 -211c0 -23 1 -73 60 -73c33 0 57 17 68 24c3 2 34 26 39 48l42 166 l26 104c7 27 19 74 71 74c31 0 47 -22 47 -44'], + 0x1D49B: [452,8,555,42,538,'538 438c0 -4 -22 -69 -224 -223c-102 -77 -118 -93 -146 -120l223 10c67 8 77 33 86 52c3 9 14 9 21 9s24 0 24 -14c0 -38 -73 -160 -185 -160c-38 0 -63 18 -94 40c-15 11 -38 28 -65 28c-16 0 -53 -7 -89 -57c-7 -10 -8 -11 -24 -11c-9 0 -23 0 -23 14 c0 4 22 69 224 223c101 76 117 92 145 119l-129 -6c-14 -1 -27 0 -41 -1h-20c-30 -2 -37 -3 -51 -10c-3 -13 -14 -13 -23 -13c-8 0 -24 0 -24 14c0 31 57 120 145 120c37 0 62 -18 86 -36c23 -16 45 -32 71 -32c24 0 43 23 67 58c6 10 8 10 23 10c9 0 23 0 23 -14'], + 0x1D6A4: [442,11,322,29,293,'293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53 c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10'], + 0x1D6A5: [442,205,384,-13,361,'361 350c0 -3 0 -17 -5 -37l-92 -366c-23 -92 -106 -152 -182 -152c-39 0 -95 14 -95 62c0 36 30 57 54 57c27 0 38 -19 38 -35c0 -25 -20 -47 -43 -53c17 -8 38 -9 46 -9c57 0 97 62 115 133l94 373c4 17 7 28 7 51c0 43 -18 46 -32 46c-44 0 -93 -42 -127 -122 c-9 -19 -10 -20 -18 -20c0 0 -12 0 -12 10c0 8 57 154 160 154c50 0 92 -35 92 -92'], + 0x1D6A8: [698,0,869,41,827,'827 0c-35 3 -123 3 -163 3c-43 0 -138 0 -176 -3v47h95l-60 146h-268l-50 -121l-4 -12c0 -13 89 -13 89 -13v-47c-37 3 -93 3 -132 3l-117 -3v47h21c76 0 79 8 85 23l248 602c7 18 11 26 39 26c17 0 29 0 40 -26l256 -625h97v-47zM503 240l-114 278l-114 -278h228'], + 0x1D6A9: [686,0,818,39,753,'753 186c0 -98 -84 -186 -250 -186h-464v47h108v592h-108v47h434c161 0 248 -80 248 -172c0 -77 -65 -137 -173 -156c119 -9 205 -76 205 -172zM579 514c0 46 -18 125 -119 125h-182v-264h156c97 0 145 62 145 139zM606 187c0 11 0 67 -33 109c-34 43 -81 43 -101 43 h-194v-292h184c144 0 144 128 144 140'], + 0x1D6AA: [680,0,692,39,643,'643 439h-47c-15 117 -34 194 -191 194h-116v-586h135v-47c-44 3 -153 3 -202 3c-44 0 -145 0 -183 -3v47h108v586h-108v47h573'], + 0x1D6AB: [698,0,958,57,900,'900 12c0 -12 -10 -12 -26 -12h-791c-16 0 -26 0 -26 12c0 0 0 4 7 15l369 646c14 25 27 25 46 25c17 0 31 0 45 -25l369 -646c7 -11 7 -15 7 -15zM676 121l-249 434l-249 -434h498'], + 0x1D6AC: [680,0,756,39,723,'723 274l-46 -274h-638v47h108v586h-108v47h621l31 -241h-47c-16 121 -42 194 -203 194h-152v-257h55c97 0 106 43 106 117h47v-281h-47c0 74 -10 117 -106 117h-55v-282h152c185 0 213 89 235 227h47'], + 0x1D6AD: [686,0,703,64,645,'645 284l-18 -284h-531c-22 0 -32 0 -32 26c0 11 0 14 8 26l400 587h-130c-140 0 -207 -61 -215 -194h-47l12 241h514c21 0 32 0 32 -25c0 -11 0 -12 -8 -24l-399 -586h140c205 0 219 122 227 233h47'], + 0x1D6AE: [686,0,900,39,860,'860 0c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v286h-321v-286h108v-47c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v592h-108v47c38 -3 136 -3 179 -3s141 0 179 3v-47h-108v-259h321v259h-108v47c38 -3 136 -3 179 -3s141 0 179 3v-47h-108v-592h108v-47'], + 0x1D6AF: [697,11,894,64,829,'829 340c0 -202 -139 -351 -383 -351c-239 0 -382 145 -382 351c0 197 132 357 383 357c244 0 382 -155 382 -357zM687 340c0 81 -10 156 -47 217c-44 72 -120 104 -194 104c-67 0 -144 -27 -192 -102c-40 -65 -48 -146 -48 -219c0 -62 5 -141 42 -204 c53 -90 142 -109 198 -109c66 0 141 24 188 91c48 69 53 157 53 222zM622 250h-47v34h-257v-34h-47v189h47v-34h257v34h47v-189'], + 0x1D6B0: [686,0,436,33,403,'403 0c-41 3 -139 3 -185 3s-144 0 -185 -3v47h114v592h-114v47c41 -3 139 -3 185 -3s144 0 185 3v-47h-114v-592h114v-47'], + 0x1D6B1: [686,0,901,39,852,'852 0c-37 3 -106 3 -146 3c-45 0 -135 0 -176 -3v47c35 0 55 0 73 8c-3 6 -3 8 -8 14l-206 271l-100 -83v-210h108v-47c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v592h-108v47c38 -3 136 -3 179 -3s141 0 179 3v-47h-108v-320l370 309c-9 3 3 2 -13 6 c-25 5 -45 5 -58 5v47c36 -3 108 -3 146 -3c5 0 62 0 102 3v-47h-17c-30 0 -72 0 -94 -18l-240 -200l270 -354c12 -16 15 -20 68 -20h29v-47'], + 0x1D6B2: [698,0,806,40,765,'765 0c-35 3 -117 3 -156 3c-45 0 -137 0 -178 -3v47h96l-172 452l-163 -427l-4 -12c0 -13 90 -13 90 -13v-47c-37 3 -92 3 -130 3c-39 0 -76 -2 -108 -3v47c16 0 37 0 55 2c31 4 32 5 39 21l231 603c7 17 10 25 38 25c27 0 31 -8 37 -25l239 -626h86v-47'], + 0x1D6B3: [686,0,1092,40,1051,'1051 0c-36 3 -130 3 -171 3s-134 0 -170 -3v47h108v592h-1l-279 -615c-4 -9 -12 -24 -32 -24c-11 0 -23 5 -32 25l-272 601h-1v-550c0 -22 1 -23 30 -26c18 -2 35 -3 53 -3h25v-47c-41 3 -93 3 -135 3c-39 0 -96 0 -134 -3v47h25c28 0 30 0 54 3c28 3 29 4 29 26v563 h-108v47h222c22 0 33 0 44 -25l240 -529l240 529c11 25 22 25 44 25h221v-47h-108v-592h108v-47'], + 0x1D6B4: [686,0,900,39,860,'860 639h-25c-28 0 -30 0 -54 -3c-28 -3 -29 -4 -29 -26v-578c0 -23 0 -32 -27 -32c-16 0 -17 1 -27 13l-498 586v-523c0 -22 1 -23 30 -26c18 -2 35 -3 53 -3h25v-47c-41 3 -93 3 -135 3c-39 0 -96 0 -134 -3v47h25c28 0 30 0 54 3c28 3 29 4 29 26v563h-108v47h229 c21 0 22 -1 33 -13l398 -468v405c0 22 -1 23 -30 26c-18 2 -35 3 -53 3h-25v47c41 -3 93 -3 135 -3c39 0 96 0 134 3v-47'], + 0x1D6B5: [675,0,767,48,718,'712 477h-47c0 13 -2 69 -15 79c-9 7 -67 7 -80 7h-374c-11 0 -76 0 -82 -9c-11 -17 -12 -59 -13 -77h-47l9 198h640zM718 209l-9 -209h-652l-9 209h47c2 -35 4 -71 13 -85c8 -12 61 -12 87 -12h376c5 0 78 0 86 9c10 14 12 48 14 88h47zM606 248h-47v47h-352v-47h-47 v206h47v-47h352v47h47v-206'], + 0x1D6B6: [697,11,864,64,799,'799 339c0 -205 -138 -350 -368 -350c-227 0 -367 143 -367 350c0 210 139 358 368 358c222 0 367 -142 367 -358zM646 354c0 68 -4 145 -42 209c-40 66 -109 94 -173 94c-59 0 -126 -25 -167 -86c-44 -68 -47 -153 -47 -217c0 -86 8 -157 41 -219 c41 -76 114 -104 173 -104c54 0 124 22 169 95c42 69 46 158 46 228'], + 0x1D6B7: [680,0,900,39,860,'860 0c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v586h-321v-586h108v-47c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v586h-108v47h821v-47h-108v-586h108v-47'], + 0x1D6B8: [686,0,786,39,721,'721 491c0 -117 -116 -189 -255 -189h-177v-255h108v-47c-38 3 -136 3 -179 3s-141 0 -179 -3v47h108v592h-108v47h417c166 0 265 -85 265 -195zM568 491c0 72 0 148 -150 148h-135v-296h134c151 0 151 77 151 148'], + 0x1D6B9: [697,11,894,64,829,'829 340c0 -202 -139 -351 -383 -351c-239 0 -382 145 -382 351c0 197 132 357 383 357c244 0 382 -155 382 -357zM684 405c-4 56 -17 108 -44 152c-44 72 -120 104 -194 104c-67 0 -144 -27 -192 -102c-28 -46 -41 -100 -45 -154h475zM685 285h-477 c3 -50 13 -104 40 -149c53 -90 142 -109 198 -109c66 0 141 24 188 91c35 51 47 112 51 167'], + 0x1D6BA: [686,0,831,64,766,'766 260l-31 -260h-639c-15 0 -32 0 -32 18c0 9 6 14 12 19l283 251l-285 351c-10 11 -10 13 -10 23c0 24 12 24 32 24h639l31 -241h-47c-22 167 -110 194 -258 194h-204l228 -281c3 -4 7 -9 7 -15c0 -9 -6 -14 -12 -19l-291 -258h269c140 0 240 21 261 194h47'], + 0x1D6BB: [675,0,800,42,757,'757 434h-47c-10 114 -20 194 -163 194h-76v-581h153v-47c-54 3 -165 3 -224 3s-170 0 -224 -3v47h153v581h-77c-144 0 -154 -81 -163 -194h-47l21 241h673'], + 0x1D6BC: [697,0,894,64,829,'829 554c0 -23 -13 -23 -27 -23c-12 0 -23 0 -26 17s-5 34 -86 34c-33 0 -85 0 -130 -70c-28 -45 -42 -111 -42 -167v-298h135v-47c-44 3 -156 3 -206 3s-162 0 -206 -3v47h135v298c0 15 0 95 -41 164c-43 73 -101 73 -132 73c-64 0 -82 -9 -86 -31 c-3 -19 -11 -20 -26 -20c-14 0 -27 0 -27 23c0 64 57 143 153 143c106 0 192 -80 229 -226h1c42 164 138 226 229 226c96 0 153 -79 153 -143'], + 0x1D6BD: [686,0,831,64,766,'766 343c0 -47 -32 -171 -291 -191v-105h135v-47c-44 3 -152 3 -201 3s-156 0 -200 -3v47h135v106c-156 10 -280 83 -280 190s124 180 280 190v106h-135v47c44 -3 152 -3 201 -3s156 0 200 3v-47h-135v-105c257 -20 291 -142 291 -191zM344 190v306 c-125 -18 -133 -95 -133 -153c0 -57 8 -135 133 -153zM619 343c0 73 -17 139 -144 154v-308c127 15 144 81 144 154'], + 0x1D6BE: [686,0,869,34,835,'835 0c-35 3 -122 3 -162 3c-45 0 -140 0 -181 -3v47h83l-174 241l-165 -219c-2 -3 -7 -9 -8 -11c35 -11 74 -11 92 -11v-47c-36 3 -113 3 -152 3c-43 0 -92 0 -134 -3v47h29c20 0 41 1 61 3c32 3 34 5 43 17l202 265l-222 307h-98v47c35 -3 122 -3 162 -3 c45 0 140 0 181 3v-47h-83l143 -197l132 175c2 3 7 9 8 11c-35 11 -74 11 -92 11v47c36 -3 113 -3 152 -3c43 0 92 0 134 3v-47h-29c-28 0 -34 0 -58 -3c-35 -3 -36 -4 -47 -18l-168 -221l253 -350h98v-47'], + 0x1D6BF: [686,0,894,64,829,'829 529c0 -15 -13 -17 -20 -18c-41 -7 -42 -69 -42 -114c0 -13 -4 -108 -73 -173c-35 -32 -94 -63 -187 -71v-106h135v-47c-44 3 -152 3 -201 3s-156 0 -200 -3v47h135v106c-71 7 -140 28 -190 82c-59 64 -60 153 -60 188c0 5 -1 81 -39 88c-11 1 -23 3 -23 18 c0 18 17 18 32 18h72c60 0 88 -42 89 -131c0 -63 4 -187 119 -221v444h-135v47c44 -3 152 -3 201 -3s156 0 200 3v-47h-135v-445c85 23 128 90 129 211c1 138 55 142 89 142h72c15 0 32 0 32 -18'], + 0x1D6C0: [697,0,831,51,779,'779 200l-37 -200h-191c-22 0 -32 0 -32 27c0 70 29 158 48 218c25 74 46 142 46 212c0 80 -23 124 -53 153c-36 36 -93 51 -145 51c-30 0 -95 -5 -144 -49c-49 -45 -54 -116 -54 -155c0 -73 23 -145 49 -224c15 -44 45 -136 45 -206c0 -27 -10 -27 -32 -27h-191l-37 200 h47c2 -10 11 -59 18 -77c5 -10 9 -20 68 -20h72c-20 42 -45 76 -80 121c-55 69 -112 141 -112 233c0 108 90 240 351 240s351 -132 351 -240c0 -91 -56 -163 -112 -235c-31 -39 -59 -74 -80 -119h72c60 0 64 10 69 23c7 18 15 60 17 74h47'], + 0x1D6C1: [686,25,958,57,900,'900 674c0 0 0 -4 -7 -16l-370 -657c-11 -20 -15 -26 -45 -26c-27 0 -33 5 -45 27l-370 658c-6 10 -6 14 -6 14c0 12 10 12 28 12h787c18 0 28 0 28 -12zM782 568h-508l254 -451'], + 0x1D6C2: [452,8,743,52,744,'744 59c6 -21 -17 -67 -83 -67c-61 0 -111 37 -140 79c-43 -38 -115 -79 -211 -79c-125 0 -223 63 -250 173c-32 129 38 287 242 287c47 0 115 -10 180 -63c67 -54 83 -113 96 -161c14 31 31 86 33 153c0 19 1 21 20 21c9 0 24 0 27 -14c1 -3 7 -116 -60 -224 c5 -20 36 -136 61 -136c0 0 34 3 39 32c2 13 7 13 20 13c9 0 23 0 26 -14zM498 115c-6 24 -21 68 -28 93c-28 98 -67 208 -160 208c-51 0 -106 -29 -122 -93c-15 -58 -10 -169 -2 -202c16 -66 64 -93 120 -93c24 0 67 3 121 29c22 11 74 46 71 58'], + 0x1D6C3: [703,194,647,92,562,'562 194c0 -57 -24 -112 -69 -148c-51 -40 -117 -54 -183 -54c-68 0 -129 30 -170 78v-254c-1 -6 -5 -10 -12 -10h-19c-8 0 -15 6 -17 17v625c0 133 86 255 211 255c55 0 111 -14 153 -49c26 -23 44 -54 53 -88c3 -14 6 -29 6 -44c-1 -47 -18 -92 -53 -123 c10 -7 20 -15 29 -24c32 -30 53 -69 63 -111c6 -23 8 -46 8 -70zM450 201c0 34 0 69 -8 101c-5 19 -13 37 -24 54c-3 4 -6 7 -8 10c-31 -13 -65 -18 -100 -18c-49 0 -104 4 -113 41c-1 3 -2 7 -2 11c0 43 58 44 109 44c31 0 63 -4 92 -13c18 28 19 64 19 98c0 22 0 45 -6 66 c-3 13 -8 26 -17 37c-19 25 -51 35 -82 35c-106 0 -170 -110 -170 -226v-247c0 -14 2 -28 5 -41c18 -72 82 -125 158 -125c43 0 87 13 114 45c30 35 33 82 33 128zM362 399c-16 6 -34 9 -52 9c-29 0 -66 0 -66 -15c0 -9 34 -9 60 -9c20 0 41 5 58 15'], + 0x1D6C4: [452,211,679,26,594,'594 430c1 -4 -6 -23 -9 -34c-39 -128 -58 -244 -66 -319c-1 -8 -1 -10 1 -22c14 -103 10 -193 8 -217c-1 -12 -4 -49 -28 -49s-31 27 -33 35c-9 37 -5 145 2 226c1 21 2 28 -8 68c-11 41 -39 123 -76 163c-46 48 -115 61 -170 61c-52 0 -133 -10 -139 -74 c-2 -12 -10 -12 -21 -12c-9 0 -23 0 -27 15c-10 41 39 181 180 181c155 0 252 -195 278 -262c30 161 62 248 63 250c4 4 8 4 18 4c9 0 23 0 27 -14'], + 0x1D6C5: [718,8,551,53,466,'466 195c1 -105 -60 -203 -156 -203c-68 0 -135 18 -186 64c-31 29 -53 67 -63 108c-5 20 -7 41 -7 62c-1 62 22 123 68 165c31 27 67 44 106 54c-45 54 -88 113 -101 164c-5 19 -5 36 0 52c4 16 14 31 28 41c14 9 31 14 48 16h8c33 0 105 -15 155 -25 c19 -4 34 -19 38 -36c2 -7 2 -15 0 -23c-6 -19 -23 -30 -42 -30c-5 0 -10 1 -16 3c-47 17 -85 58 -137 64c-3 0 -6 1 -9 1c-7 0 -15 -1 -21 -5c-9 -4 -15 -12 -16 -22c-2 -2 -1 -4 0 -7c8 -33 110 -110 179 -163c43 -32 79 -74 98 -124c7 -13 10 -27 14 -41 c9 -37 13 -76 12 -115zM365 160c0 28 -3 56 -10 84c-3 14 -8 29 -14 43c-18 41 -44 77 -73 110l-9 11c-24 -8 -45 -23 -61 -43c-31 -41 -32 -95 -33 -146c0 -31 1 -62 8 -91c5 -19 12 -36 24 -52c24 -33 65 -48 106 -48c54 0 63 69 62 132'], + 0x1D6C6: [461,17,597,57,471,'471 94c4 -16 -25 -111 -188 -111c-134 0 -204 61 -221 130c-12 48 2 89 34 123c-8 7 -28 28 -35 58c-18 71 40 167 212 167c15 0 53 0 102 -20c41 -18 61 -31 65 -49c6 -23 -13 -45 -34 -45c-7 0 -14 3 -24 8c-50 30 -82 30 -109 30c-119 0 -179 -36 -165 -91 c2 -11 10 -25 20 -35c47 25 101 25 121 25c31 0 85 0 95 -41c14 -55 -62 -55 -89 -55c-18 0 -72 0 -118 22c-30 -26 -34 -64 -29 -84c16 -67 110 -67 173 -67c86 0 147 4 159 49c0 0 4 3 9 3c10 0 19 -8 22 -17zM297 243c-13 4 -16 5 -43 5c-10 0 -48 0 -81 -13 c31 -11 57 -11 74 -11c48 0 49 7 50 19'], + 0x1D6C7: [703,202,615,83,559,'556 -70c15 -58 -15 -132 -89 -132c-48 0 -125 27 -131 48c-2 8 4 18 15 18c6 0 7 -1 16 -5c39 -20 70 -25 91 -25c34 0 27 37 26 41c-9 38 -45 48 -91 60c-136 38 -165 46 -215 88c-44 39 -71 90 -84 140c-43 175 50 349 169 426c-8 15 -12 32 -14 38 c-4 17 -19 76 14 76c0 0 22 -1 27 -21c0 -3 1 -4 1 -12c0 -4 0 -34 9 -62c26 10 46 10 63 10c43 0 92 -3 102 -42c14 -54 -67 -54 -94 -54c-20 0 -53 0 -83 30c-77 -57 -148 -204 -114 -340c27 -109 106 -131 152 -144l95 -27c44 -12 116 -32 135 -111zM418 575 c-16 6 -20 7 -49 7c-18 0 -32 0 -50 -11c12 -13 29 -13 43 -13c0 0 23 0 36 2c15 3 16 5 20 15'], + 0x1D6C8: [452,211,615,-3,555,'555 280l-1 -430c0 -60 -40 -61 -51 -61c-21 0 -50 12 -58 44c-1 4 -3 10 -3 26l1 441c0 18 0 32 -6 57c-12 49 -39 59 -65 59c-42 0 -71 -17 -93 -39c-26 -27 -43 -72 -43 -78c-1 -3 0 -106 -1 -119v-112c1 -30 0 -76 -52 -76c-31 0 -53 23 -58 44c-2 7 -1 26 -2 40 l1 140v90c0 40 0 56 -5 73c-8 33 -21 37 -32 37c-25 0 -43 -20 -43 -100c0 -25 1 -27 -1 -29c-3 -5 -7 -5 -18 -5c-9 0 -24 0 -28 14c-1 5 -2 59 13 99c12 36 36 57 73 57c54 0 116 -26 142 -76c52 76 125 76 146 76c72 0 155 -24 178 -116c6 -25 7 -38 6 -56'], + 0x1D6C9: [702,8,567,52,513,'498 490c18 -75 31 -234 -22 -357c-44 -102 -122 -141 -189 -141c-90 0 -182 66 -219 211c-20 81 -23 217 5 311c41 136 128 188 207 188c61 0 174 -36 218 -212zM387 371c1 42 1 129 -15 192c-14 59 -43 103 -85 103c-48 0 -76 -53 -89 -94c-17 -52 -20 -143 -20 -201 h209zM387 323h-209c0 -43 1 -136 16 -193c0 0 10 -40 28 -67c22 -31 44 -35 58 -35c35 0 112 27 107 295'], + 0x1D6CA: [452,8,359,43,361,'361 148c2 -8 2 -64 -48 -108c-46 -41 -100 -48 -129 -48c-67 0 -125 37 -138 90c-8 31 5 64 6 95c1 45 1 3 3 48c0 18 2 45 3 58c1 18 -1 64 2 82c0 7 -2 27 -1 34c3 15 7 53 53 53c31 0 53 -23 58 -44c2 -9 5 -159 -14 -295c-2 -17 -5 -43 0 -64s15 -21 24 -21 c36 0 127 24 134 121c1 13 8 13 20 13c9 0 24 0 27 -14'], + 0x1D6CB: [452,8,615,59,617,'617 148c2 -8 2 -156 -98 -156c-66 0 -138 39 -154 103c-2 10 -2 24 -2 24c0 6 -1 17 -2 23c-15 60 -104 73 -189 75c-1 -77 0 -76 -1 -153c1 -26 0 -72 -52 -72c-31 0 -53 23 -58 44c-2 7 -2 31 -1 46v176l-1 141c2 43 35 53 53 53c31 0 53 -23 58 -44c2 -8 2 -23 2 -72 v-67c31 16 52 35 101 83c37 37 91 92 160 92c46 0 61 -34 64 -47c8 -31 -11 -70 -54 -70c-27 0 -53 16 -60 47c-2 8 -2 15 -2 18c-21 -12 -36 -20 -88 -72c-28 -27 -50 -50 -73 -66c96 -8 109 -10 148 -21c17 -5 87 -26 103 -90c2 -8 3 -20 4 -33c-1 -18 4 -42 4 -42 c10 -39 26 -40 36 -40c51 0 54 85 55 114c0 18 2 20 20 20c9 0 24 0 27 -14'], + 0x1D6CC: [694,12,618,21,663,'663 6c3 -14 -9 -14 -27 -14h-50c-35 0 -56 10 -70 28c-5 8 -19 27 -24 35l-150 216c-28 -37 -93 -135 -120 -173c-3 -4 -40 -55 -41 -58c-20 -30 -35 -52 -63 -52c-25 0 -53 20 -60 48c-7 27 9 44 19 53l231 233c-36 52 -200 290 -217 309c-22 24 -33 25 -49 27 c0 0 -16 2 -20 17c-4 19 13 19 36 19c123 0 143 -28 162 -56l400 -577c11 -16 25 -35 35 -43c2 -3 6 -7 8 -12'], + 0x1D6CD: [452,211,615,59,617,'617 148c1 -5 2 -59 -13 -99c-12 -36 -36 -57 -73 -57s-96 14 -132 60c-46 -54 -91 -60 -125 -60c-13 0 -58 0 -103 16c1 -31 2 -168 -1 -180c-7 -28 -31 -39 -50 -39c-21 0 -50 12 -58 44c-1 4 -3 10 -3 26l1 531c0 12 0 62 52 62c31 0 53 -23 58 -44c2 -7 2 -50 2 -76 l-1 -156c1 -18 1 -42 7 -69c8 -30 26 -79 94 -79c27 0 55 9 80 36c14 15 27 32 27 50l-1 277c1 41 33 53 53 53c31 0 53 -23 58 -44c2 -7 2 -47 2 -70v-90v-102c0 -40 0 -56 4 -73c8 -33 21 -37 32 -37c25 0 43 20 43 100c0 25 -1 27 1 29c4 5 8 5 19 5c9 0 24 0 27 -14'], + 0x1D6CE: [452,0,583,-16,522,'521 408c3 -11 12 -136 -93 -248c-88 -93 -209 -143 -312 -160h-28c-11 0 -24 4 -27 18l-2 377c-12 1 -30 2 -42 2c-9 0 -27 0 -32 18c-7 28 11 29 26 30l123 6c13 1 32 2 37 -17l1 -380c92 33 146 99 170 130c45 61 66 133 68 215c3 46 39 53 53 53c31 0 53 -22 58 -44'], + 0x1D6CF: [703,202,615,83,559,'557 -83c11 -47 -13 -119 -91 -119c-50 0 -140 24 -146 48c-1 6 2 18 16 18c4 0 6 -1 14 -5c51 -24 100 -25 106 -25c29 0 25 27 24 30c-2 8 -9 17 -18 21c-8 4 -55 19 -82 27c-69 22 -71 22 -125 39c-64 21 -147 61 -167 143c-10 38 -8 131 79 202 c-32 19 -67 57 -79 104c-19 76 21 166 136 203c-2 7 -5 16 -6 23c-5 18 -20 77 13 77c0 0 22 -1 27 -21c0 -3 1 -4 1 -12c0 0 0 -25 7 -56c27 4 52 4 62 4c42 0 96 -1 106 -42c14 -54 -67 -54 -94 -54c-24 0 -53 0 -83 30c-44 -38 -55 -114 -42 -167c4 -17 12 -35 22 -51 c42 13 73 13 92 13c33 0 95 0 106 -42c13 -54 -69 -54 -100 -54c-27 0 -59 0 -112 17c-5 2 -7 2 -7 2c-13 0 -71 -71 -56 -130c12 -48 75 -68 113 -80l72 -22l143 -46c22 -8 58 -32 69 -75zM387 575c-17 6 -20 7 -51 7c-14 0 -32 0 -50 -9c13 -15 29 -15 45 -15 c10 0 48 0 55 11c2 4 1 6 1 6zM387 304c-17 6 -21 7 -53 7c-17 0 -39 0 -64 -10c21 -14 43 -14 59 -14c12 0 49 0 57 11'], + 0x1D6D0: [453,6,575,32,542,'542 218c0 -123 -87 -224 -255 -224c-167 0 -255 100 -255 224c0 133 91 235 255 235c163 0 255 -101 255 -235zM414 229c0 48 0 103 -21 137c-22 35 -64 51 -106 51c-49 0 -91 -21 -110 -58c-17 -34 -17 -85 -17 -130c0 -87 0 -195 127 -195s127 108 127 195'], + 0x1D6D1: [444,9,679,-3,610,'609 405c6 -23 -4 -35 -10 -42c-11 -15 -27 -15 -46 -15h-124c4 -40 7 -50 13 -74c6 -27 26 -104 92 -185c13 -15 17 -21 20 -33c8 -32 -20 -65 -53 -65c-48 0 -85 76 -102 144c-14 59 -19 120 -20 213h-112l-1 -299c0 -21 0 -25 -11 -40c-6 -6 -18 -17 -39 -17 c-26 0 -52 18 -59 45c-4 14 -2 19 7 49c28 101 48 183 53 262h-60c-19 0 -85 0 -111 -47c-6 -11 -7 -12 -22 -12c-11 0 -23 0 -27 14c-2 10 24 61 51 93c41 48 84 48 105 48h393c18 0 53 0 63 -39'], + 0x1D6D2: [452,211,567,59,513,'506 285c32 -130 -32 -293 -218 -293c-56 0 -96 23 -117 39c0 -125 0 -193 -1 -202c-7 -31 -33 -40 -50 -40c-21 0 -50 12 -58 44c0 0 -3 10 -3 26l1 370c0 129 84 223 219 223c111 0 200 -59 227 -167zM382 127c7 41 10 159 -3 208c-3 13 -20 81 -93 81 c-38 0 -68 -21 -80 -39c-14 -17 -32 -43 -35 -122l1 -118c-1 -17 -1 -49 0 -52c2 -9 39 -57 106 -57c45 0 91 27 104 99'], + 0x1D6D3: [452,105,551,84,499,'496 21c14 -59 -21 -126 -91 -126c-7 0 -77 4 -83 29c-2 9 2 18 14 18c4 0 6 0 12 -2c25 -9 47 -9 47 -9c31 0 23 35 23 35c-2 10 -11 24 -29 34c-17 8 -54 24 -82 35c-60 25 -110 46 -140 68c-38 29 -67 68 -77 111c-30 120 75 238 251 238c14 0 116 0 126 -39 c3 -12 -4 -28 -21 -28c-5 0 -8 0 -24 8c-48 23 -72 23 -83 23c-107 0 -198 -68 -177 -152c6 -22 23 -47 50 -66c21 -14 88 -42 115 -53c26 -11 96 -41 110 -49c23 -14 49 -35 59 -75'], + 0x1D6D4: [444,8,695,52,626,'625 405c6 -23 -4 -35 -10 -42c-11 -15 -27 -15 -46 -15h-96c16 -24 27 -51 33 -76c36 -142 -36 -280 -219 -280c-107 0 -201 51 -228 159c-26 104 18 293 224 293h279c18 0 53 0 63 -39zM397 278c-9 36 -28 70 -110 70c-76 0 -101 -30 -113 -64 c-14 -37 -12 -132 -2 -170c4 -16 21 -86 108 -86c28 0 84 9 109 71c20 49 15 149 8 179'], + 0x1D6D5: [444,12,615,-3,546,'545 405c0 0 6 -25 -10 -42c-12 -15 -25 -15 -46 -15h-185l27 -294c6 -66 -45 -66 -52 -66c-25 0 -51 16 -58 44c-3 11 3 64 6 95l11 115l9 106h-90c-19 0 -85 0 -111 -47c-6 -11 -7 -12 -22 -12c-11 0 -23 0 -27 14c-2 10 24 61 51 93c41 48 84 48 105 48h329 c17 0 53 0 63 -39'], + 0x1D6D6: [453,8,615,-3,563,'554 362c7 -30 27 -163 -30 -268c-38 -69 -89 -102 -157 -102c-86 0 -207 21 -237 141c-11 42 -8 83 9 202c1 8 6 37 0 60c-5 21 -15 21 -22 21c-16 0 -68 -10 -73 -121c0 -13 -7 -13 -19 -13c-9 0 -24 0 -28 14c-5 20 11 156 117 156c55 0 121 -32 136 -90 c4 -17 3 -21 -3 -59c-10 -76 -17 -137 -5 -186c13 -51 46 -89 123 -89c128 0 158 199 148 241c-6 22 -21 40 -66 63c-9 4 -34 17 -41 45c-9 34 18 76 57 76c0 0 68 0 91 -91'], + 0x1D6D7: [452,216,743,51,690,'683 295c43 -169 -98 -303 -279 -303c-12 0 -14 0 -24 1l14 -138c1 -13 8 -71 -51 -71c-14 0 -49 8 -58 44c-3 11 0 38 3 56l11 119c-125 24 -218 94 -241 187c-10 38 -13 156 33 235c12 18 13 19 29 19c9 0 23 0 27 -14c1 -4 1 -6 -9 -20c-45 -71 -41 -183 -35 -206 c16 -64 85 -99 206 -112c16 152 39 360 197 360c90 0 156 -72 177 -157zM640 266c-14 55 -68 90 -127 90c-60 0 -103 -38 -127 -83c-31 -61 -25 -109 -16 -185c53 0 134 0 202 40c72 43 76 104 68 138'], + 0x1D6D8: [452,202,743,-3,744,'744 -125c2 -7 1 -77 -94 -77c-88 0 -145 19 -183 64c-30 36 -63 81 -119 190c-98 -125 -175 -233 -185 -241c0 0 -4 -5 -12 -5c-14 0 -24 11 -27 21c-2 9 0 12 8 23l190 253c-52 102 -70 138 -113 195c-3 4 -89 118 -124 118c-17 0 -37 -15 -41 -40 c0 -14 -2 -15 -20 -15c-11 0 -23 0 -27 14c-2 10 2 77 95 77c42 0 125 -3 173 -53c50 -52 98 -143 130 -202l175 232c9 12 11 15 21 15c9 0 23 -7 27 -22c2 -9 0 -12 -9 -23l-190 -252c51 -98 74 -141 121 -204c5 -6 83 -109 117 -109c16 0 38 14 40 40c2 14 4 15 21 15 c10 0 23 0 26 -14'], + 0x1D6D9: [694,202,743,-3,690,'686 204c-22 -102 -109 -212 -259 -212c0 -88 1 -87 -1 -174c0 -19 -2 -20 -20 -20c-9 0 -23 0 -26 14c-1 4 -1 64 -1 96c-1 10 0 79 -1 82c0 0 -1 3 -10 4c-47 4 -207 18 -240 150c-8 33 -4 84 9 172c4 31 8 56 2 79c-5 21 -16 21 -22 21c-16 0 -67 -10 -73 -121 c0 -13 -7 -13 -19 -13c-9 0 -24 0 -28 14c-5 20 11 156 117 156c55 0 121 -32 136 -90c4 -17 3 -23 -2 -60c-17 -117 -13 -144 -7 -168c9 -38 34 -92 138 -103v640c0 21 1 23 21 23c10 0 23 0 26 -15c1 -4 2 -6 1 -20v-631c163 1 229 179 214 241c-6 22 -21 40 -66 63 c-10 5 -34 17 -41 45c-9 36 19 76 57 76c0 0 68 0 91 -91c12 -51 9 -133 4 -158'], + 0x1D6DA: [453,8,743,51,689,'689 233c0 -121 -56 -241 -164 -241c-63 0 -115 32 -150 80c-31 -48 -78 -80 -137 -80c-91 0 -153 73 -176 166c-7 26 -11 54 -11 81c0 69 13 137 45 198c5 9 14 14 24 14c5 0 11 -1 15 -3c9 -5 17 -14 19 -23c2 -7 0 -14 -3 -20c-28 -54 -51 -111 -51 -172 c0 -11 1 -22 4 -32c14 -57 66 -99 128 -99c42 0 79 18 105 47c-3 6 -4 11 -5 17c-6 23 -9 48 -9 73c0 30 17 57 44 57c24 0 43 -20 49 -44c2 -6 2 -13 2 -19c0 -30 -3 -59 -12 -86c28 -28 69 -45 113 -45c71 0 123 64 122 137c1 7 -1 13 -2 19c-9 34 -39 60 -72 78 c-17 9 -29 25 -34 43c-3 14 -2 29 6 43c11 20 31 31 52 31c11 0 22 -3 31 -8c32 -17 49 -47 58 -83c9 -39 9 -86 9 -129'], + 0x1D6DB: [711,17,679,67,610,'597 459c19 -73 65 -476 -259 -476c-57 0 -110 8 -158 39c-35 22 -88 65 -105 135c-3 13 -29 130 37 207c58 70 123 91 205 91c21 0 106 0 160 -103c1 55 1 111 -13 167c-6 24 -19 79 -71 117c-46 33 -95 36 -115 36c-54 0 -96 -20 -121 -65c14 -2 47 -12 56 -47 c7 -29 -8 -70 -53 -70c-43 0 -59 33 -62 46c-8 31 2 175 175 175c140 0 281 -77 324 -252zM469 296c-6 25 -35 123 -136 123c-82 0 -109 -49 -118 -69c-22 -51 -16 -200 -7 -238c19 -77 84 -86 125 -86c66 0 107 40 124 80c13 32 27 129 12 190'], + 0x1D6DC: [444,8,506,78,505,'505 47c4 -16 -46 -37 -50 -38c-43 -17 -76 -17 -90 -17c-117 0 -245 51 -279 187c-19 79 2 145 39 187c67 78 173 78 227 78h42c15 -1 23 -13 25 -21c7 -26 -20 -26 -34 -26h-42c-119 0 -137 -75 -138 -137h171c19 0 38 0 44 -22c6 -25 -18 -25 -33 -25h-182 c0 -25 1 -50 8 -76c26 -104 121 -109 146 -109s55 6 106 42c8 7 10 7 14 7c13 0 24 -19 26 -30'], + 0x1D6DD: [702,8,615,-3,608,'608 344c3 -11 -1 -22 -11 -22c-7 0 -26 4 -40 6c-2 -181 -72 -336 -223 -336c-58 0 -174 6 -203 122c-2 7 -7 28 -8 78c1 9 1 61 1 76c0 37 0 93 -5 111c-8 33 -21 37 -32 37c-25 0 -43 -20 -43 -100c0 -25 1 -27 -1 -29c-3 -5 -7 -5 -18 -5c-9 0 -24 0 -28 14 c-1 5 -2 59 13 99c12 36 36 57 73 57c58 0 133 -31 150 -98c3 -12 2 -43 3 -64v-58c-1 -44 -1 -109 6 -135c10 -39 32 -69 91 -69c52 0 77 59 88 97c17 60 18 144 18 228c-81 23 -202 63 -230 174c-27 108 51 175 127 175c61 0 163 -39 205 -206c15 -60 17 -118 16 -132 c19 -3 21 -3 30 -5c7 -2 18 -4 21 -15zM439 390c-1 34 -1 118 -15 176c-9 36 -32 100 -82 100c-55 0 -106 -57 -86 -137c12 -50 53 -103 183 -139'], + 0x1D6DE: [452,10,724,35,689,'689 128c0 -20 -8 -136 -118 -136c-58 0 -103 39 -103 124v33c0 40 1 77 13 121l-284 -270c-8 -7 -16 -10 -24 -10c-25 0 -46 28 -46 54c0 10 3 19 10 26c37 62 71 179 71 260c0 37 -14 85 -54 86c-39 0 -71 -25 -71 -97c0 -24 -13 -28 -22 -28c-8 0 -26 3 -26 25 c0 20 8 136 118 136c58 0 103 -39 103 -124v-33c0 -40 -1 -77 -13 -121c134 133 198 189 285 269c5 5 11 6 17 6c12 0 24 -7 29 -13c9 -9 18 -31 18 -46c0 -7 -2 -13 -5 -16c-37 -62 -71 -179 -71 -260c0 -37 14 -85 54 -86c39 0 71 25 71 97c0 24 13 28 22 28 c8 0 26 -3 26 -25'], + 0x1D6DF: [694,202,743,61,681,'675 270c32 -129 -59 -269 -259 -281c-16 -1 -18 -1 -20 -2c0 0 -1 -2 -1 -31v-140c0 -17 -5 -18 -21 -18c-9 0 -23 0 -26 14l-1 177c-148 5 -253 78 -279 185c-32 127 55 269 258 281c17 1 18 2 20 3c0 0 0 2 1 15v198c0 21 1 23 21 23c9 0 23 0 26 -14c0 0 1 -3 1 -15 v-210c149 -5 253 -78 280 -185zM347 25v394c-80 -7 -129 -41 -153 -85c-36 -66 -24 -158 -17 -186c20 -81 83 -118 170 -123zM565 296c-20 81 -82 118 -170 123v-394c80 7 130 41 154 85c35 66 23 158 16 186'], + 0x1D6E0: [452,194,567,59,514,'506 285c32 -128 -29 -293 -219 -293c-80 0 -140 34 -176 77c3 -60 7 -77 10 -91c11 -41 15 -57 174 -57c109 0 169 0 183 -59c2 -6 4 -17 4 -38c0 -16 -3 -18 -20 -18c-8 0 -29 2 -27 16l-1 5c-8 4 -25 4 -37 4c-20 0 -22 0 -47 -2c-37 -4 -55 -4 -75 -4 c-133 0 -177 28 -197 108c-24 96 -18 314 -17 320c12 132 106 199 218 199c111 0 200 -59 227 -167zM382 127c7 41 10 159 -3 208c-3 13 -20 81 -93 81c-38 0 -85 -23 -104 -83c-16 -56 -12 -180 -3 -218c17 -66 62 -87 101 -87c33 0 87 19 102 99'], + 0x1D6E1: [444,8,966,-3,897,'896 405c7 -27 -8 -43 -14 -48c-12 -9 -19 -9 -59 -9c11 -24 17 -48 18 -53c34 -133 -40 -303 -179 -303c-81 0 -136 58 -166 145c-39 -90 -109 -145 -192 -145c-74 0 -128 57 -148 138c-22 88 7 172 30 218c-59 0 -113 0 -140 -49c-6 -9 -7 -10 -22 -10 c-11 0 -23 0 -27 14c-2 10 24 61 51 93c41 48 84 48 105 48h680c18 0 53 0 63 -39zM794 295c-2 10 -6 27 -19 53h-535c-59 -114 -43 -179 -42 -185c8 -32 39 -75 99 -75c68 0 170 51 177 195c1 12 12 12 21 12c7 0 23 0 27 -15c0 0 1 -4 1 -11c1 -19 3 -41 8 -59 c13 -55 49 -122 124 -122c78 0 173 73 139 207'], + 0x1D6E2: [716,0,750,35,721,'721 20c0 -20 -12 -20 -18 -20c-25 0 -88 3 -113 3c-41 0 -84 -3 -125 -3c0 0 -14 0 -14 11c0 20 10 20 24 20c20 0 72 3 72 33c0 10 -14 146 -16 167h-251c-68 -116 -69 -116 -76 -128c-8 -14 -14 -25 -14 -37c0 -25 24 -33 47 -35c7 0 16 -1 16 -12 c0 -19 -13 -19 -19 -19c-32 0 -67 3 -100 3c-28 0 -59 -3 -86 -3c-8 0 -13 5 -13 11c0 19 9 19 21 20c44 3 83 17 123 84l348 584c6 10 10 17 26 17c17 0 17 -4 19 -24l61 -625c3 -29 3 -36 65 -36c13 0 23 0 23 -11zM528 262l-32 330l-197 -330h229'], + 0x1D6E3: [683,0,759,42,756,'756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196'], + 0x1D6E4: [680,0,615,39,720,'720 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12c0 3 0 5 2 18c3 27 3 57 3 57c0 69 -14 107 -135 107h-115c-44 0 -45 -4 -54 -39l-134 -534c-4 -15 -4 -23 -4 -23c0 -13 3 -17 32 -20c25 -2 30 -2 52 -2c23 0 25 0 28 -1c0 0 6 -3 6 -11 c0 -19 -13 -19 -21 -19l-149 3l-132 -3s-14 0 -14 11c0 20 10 20 27 20c79 0 81 8 91 47l133 529c4 14 4 16 4 24c0 18 -27 18 -67 18c-16 0 -26 0 -26 11c0 20 10 20 30 20h462c25 0 30 0 27 -27'], + 0x1D6E5: [716,0,833,49,787,'787 10c0 -10 -9 -10 -26 -10h-690c-21 0 -22 1 -22 6c0 0 0 4 8 14l506 677c14 19 22 19 31 19c18 0 19 -4 24 -24l167 -668c1 -4 2 -10 2 -14zM679 72l-137 550l-412 -550h549'], + 0x1D6E6: [680,0,738,38,763,'763 653l-20 -173c-2 -19 -3 -25 -14 -25c-9 0 -12 7 -12 12s1 12 1 18c4 27 4 29 4 53c0 82 -30 111 -152 111h-141c-44 0 -45 -4 -54 -39l-60 -241h94c92 0 110 23 131 99c3 12 5 18 14 18c7 0 12 -5 12 -11l-57 -234c-4 -15 -7 -20 -15 -20c-9 0 -13 6 -13 11 c0 3 1 6 3 11c7 30 7 42 7 49c0 25 0 46 -85 46h-99l-68 -273c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h146c171 0 208 67 273 215c2 6 4 12 13 12c12 0 12 -11 12 -11s-3 -9 -5 -14l-92 -216c-7 -16 -8 -17 -31 -17h-519c-19 0 -28 0 -28 12 c0 19 11 19 28 19c79 0 81 8 91 47l132 529c5 18 5 20 5 24c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h505c25 0 30 0 27 -27'], + 0x1D6E7: [683,0,683,58,723,'723 674c0 -6 -2 -11 -3 -15l-559 -625h171c170 0 218 72 262 208c7 21 8 25 17 25s13 -6 13 -11c0 -4 -3 -11 -4 -15l-71 -221c-6 -19 -7 -20 -31 -20h-435c-18 0 -25 0 -25 9c0 3 4 18 4 18l559 625h-163c-156 0 -208 -66 -246 -184c-2 -3 -4 -10 -13 -10 c-12 0 -12 11 -12 11s1 9 3 14l55 180c6 19 7 20 31 20h422c20 0 25 0 25 -9'], + 0x1D6E8: [683,0,831,39,881,'881 672c0 -20 -8 -20 -34 -20c-73 0 -75 -10 -84 -46l-135 -540c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3s-14 0 -14 11c0 20 9 20 24 20c62 0 81 1 91 33l69 276h-305l-68 -274 c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3s-14 0 -14 11c0 20 9 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 11 20 19 20 l129 -3l128 3c3 0 14 0 14 -11c0 -20 -8 -20 -34 -20c-72 0 -75 -10 -84 -46l-59 -235h305l60 244c3 13 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 11 20 19 20l129 -3l128 3c3 0 14 0 14 -11'], + 0x1D6E9: [705,22,763,49,740,'740 436c0 -239 -223 -458 -435 -458c-144 0 -256 101 -256 267c0 233 220 460 436 460c149 0 255 -108 255 -269zM655 469c0 129 -70 214 -175 214c-86 0 -171 -60 -222 -123c-114 -141 -124 -313 -124 -347c0 -131 73 -212 176 -212c88 0 178 60 235 137 c98 132 110 291 110 331zM596 400c0 -5 -24 -96 -27 -109s-5 -19 -15 -19c-6 0 -12 4 -12 12c0 3 4 19 5 22h-322l-6 -21c-1 -7 -3 -13 -13 -13c-6 0 -12 4 -12 12c0 5 24 96 27 109s5 19 15 19c6 0 12 -4 12 -12c0 -3 -4 -19 -5 -22h322l6 21c1 7 3 13 13 13 c6 0 12 -4 12 -12'], + 0x1D6EA: [683,0,440,34,497,'497 671c0 -19 -8 -19 -32 -19c-79 0 -82 -10 -91 -46l-134 -533c-2 -7 -4 -15 -4 -23c0 -11 4 -15 25 -17c20 -2 25 -2 43 -2c22 0 30 0 30 -12c0 -19 -12 -19 -20 -19l-134 3l-131 -3c-3 0 -15 0 -15 11c0 20 9 20 32 20c79 0 82 10 91 47l135 539c2 9 2 11 2 16 c0 19 -27 19 -69 19c-19 0 -28 0 -28 11c0 20 13 20 20 20l133 -3l132 3c4 0 15 0 15 -12'], + 0x1D6EB: [683,0,849,38,889,'889 672c0 -18 -10 -19 -18 -20c-30 -3 -69 -7 -163 -76l-175 -135c-11 -8 -29 -23 -29 -23c0 -3 4 -11 5 -14l142 -328c15 -35 28 -44 69 -45c9 0 20 0 20 -11c0 -20 -13 -20 -18 -20c-22 0 -76 3 -98 3c-40 0 -82 -3 -122 -3c0 0 -14 0 -14 11c0 20 11 20 22 20 c9 0 52 1 52 31c0 6 0 8 -12 35l-116 269l-149 -116l-40 -157c-3 -15 -9 -37 -9 -44c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19 c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 13 19 20 19l129 -3l128 3c6 0 14 -2 14 -11c0 -20 -9 -20 -34 -20c-73 0 -75 -10 -84 -46l-80 -321l390 300c6 5 36 28 36 46c0 14 -9 19 -31 21c-7 1 -12 4 -12 11c0 20 12 20 19 20c36 0 75 -3 111 -3 c24 0 49 3 71 3c8 0 11 -7 11 -11'], + 0x1D6EC: [716,0,694,35,666,'666 19c0 -19 -13 -19 -19 -19c-24 0 -82 3 -106 3c-41 0 -83 -3 -123 -3c-4 0 -15 0 -15 12c0 19 11 19 23 19c77 1 76 26 74 48l-37 500l-271 -475c-10 -17 -14 -24 -14 -37c0 -28 29 -35 50 -36c3 0 14 -1 14 -11c0 -20 -13 -20 -18 -20c-32 0 -66 3 -99 3 c-26 0 -53 -3 -78 -3c-6 0 -12 4 -12 12c0 17 9 18 20 19c61 5 85 42 109 83l334 583c8 13 12 19 27 19c10 0 17 -1 18 -17c0 -3 1 -6 1 -9l45 -622c2 -30 3 -37 52 -37c16 0 25 0 25 -12'], + 0x1D6ED: [683,0,970,42,1044,'1044 672c0 -20 -9 -20 -32 -20c-75 0 -77 -10 -86 -46l-133 -533c-5 -18 -5 -20 -5 -24c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -19 -20c-41 0 -84 3 -125 3l-124 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l143 573h-1l-404 -633 c-5 -7 -11 -18 -22 -18c-12 0 -13 11 -15 23l-86 620h-1l-136 -545c-3 -11 -4 -16 -4 -23c0 -23 11 -43 68 -44c7 0 18 0 18 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3c-33 0 -68 -3 -100 -3c-8 0 -14 3 -14 12c0 18 13 19 18 19c81 3 98 35 108 75l127 509 c3 12 4 15 4 19c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h137c26 0 28 0 31 -23l78 -566l365 570c12 19 13 19 39 19h132c17 0 27 0 27 -11'], + 0x1D6EE: [683,0,803,39,881,'881 672c0 -19 -12 -20 -17 -20c-80 -3 -98 -34 -108 -74l-140 -557c-5 -18 -5 -21 -16 -21c-9 0 -12 2 -19 19l-249 589c-5 10 -5 12 -9 18l-132 -528c-3 -11 -4 -16 -4 -23c0 -20 8 -42 66 -44c11 0 20 -1 20 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3 c-33 0 -68 -3 -100 -3c-8 0 -13 4 -13 11c0 19 11 20 17 20c81 3 98 35 108 75l134 537c0 9 -63 9 -68 9c-19 0 -28 0 -28 11c0 20 9 20 29 20h134c23 0 24 -1 32 -19l221 -522l112 445c1 3 3 18 3 21c0 22 -11 43 -68 44c-8 0 -18 0 -18 11c0 20 12 20 18 20 c33 0 68 -3 102 -3c33 0 68 3 101 3c13 0 13 -11 13 -11'], + 0x1D6EF: [677,0,742,53,777,'777 666l-2 -17l-20 -102c-3 -17 -4 -22 -14 -22c-8 0 -13 5 -13 12c0 0 0 3 2 13c3 15 6 27 6 44c0 12 -1 13 -7 14c-17 3 -42 3 -63 3h-355c-11 0 -71 0 -76 -7c-11 -11 -24 -54 -26 -61c-4 -12 -6 -18 -15 -18s-13 6 -13 11c0 4 3 11 4 15l33 106c6 19 7 20 32 20h500 c17 0 27 0 27 -11zM662 152c0 -5 -37 -124 -42 -139c-5 -12 -6 -13 -29 -13h-510c-20 0 -28 0 -28 12c0 10 21 111 25 129c3 16 4 22 14 22c8 0 13 -5 13 -12l-3 -13c-7 -38 -7 -50 -7 -68c26 -4 28 -4 73 -4h357c13 0 69 0 78 6c10 5 24 50 27 61c3 7 6 18 8 24 c0 0 5 6 11 6c9 0 13 -6 13 -11zM633 424c0 -5 -2 -11 -3 -15l-31 -121c-4 -17 -5 -20 -15 -20c-8 0 -12 5 -12 12c0 3 6 26 9 39h-337c-2 -7 -6 -25 -8 -30c-4 -17 -5 -21 -15 -21c-8 0 -12 5 -12 12c0 5 2 11 3 15l31 121c4 17 5 20 15 20c8 0 12 -5 12 -12 c0 -3 -6 -26 -9 -39h337c2 7 6 25 8 30c4 17 5 21 15 21c8 0 12 -5 12 -12'], + 0x1D6F0: [705,22,763,49,740,'740 436c0 -239 -223 -458 -435 -458c-144 0 -256 101 -256 267c0 233 220 460 436 460c149 0 255 -108 255 -269zM651 475c0 149 -90 205 -172 205c-79 0 -177 -52 -246 -156c-77 -117 -91 -263 -91 -307c0 -132 70 -213 169 -213c84 0 166 59 214 120 c99 123 126 279 126 351'], + 0x1D6F1: [680,0,831,39,880,'880 669c0 -20 -9 -20 -27 -20c-79 0 -81 -8 -91 -47l-134 -536c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3s-14 0 -14 11c0 20 9 20 27 20c79 0 81 8 91 47l143 571h-305l-145 -583 c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -12 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3s-14 0 -14 11c0 20 9 20 27 20c79 0 81 8 91 47l134 536c1 6 3 11 3 17c0 18 -28 18 -65 18c-19 0 -28 0 -28 11c0 20 10 20 30 20h622c18 0 27 0 27 -11 '], + 0x1D6F2: [683,0,642,40,754,'754 532c0 -112 -139 -216 -281 -216h-170l-62 -250c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19 c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h324c131 0 197 -74 197 -151zM661 556c0 69 -53 96 -136 96h-96c-43 0 -45 -3 -54 -38l-68 -272h141c44 0 104 8 154 53c39 36 59 122 59 161'], + 0x1D6F3: [705,22,763,49,740,'740 436c0 -239 -223 -458 -435 -458c-144 0 -256 101 -256 267c0 233 220 460 436 460c149 0 255 -108 255 -269zM655 469c0 129 -70 214 -175 214c-86 0 -171 -60 -222 -123c-48 -59 -78 -124 -96 -182h483c8 42 10 76 10 91zM628 306h-484c-8 -45 -10 -80 -10 -93 c0 -131 73 -212 176 -212c88 0 178 60 235 137c41 55 67 114 83 168'], + 0x1D6F4: [683,0,780,58,806,'806 670l-2 -13l-19 -174c-2 -17 -3 -25 -14 -25c-12 0 -13 12 -13 12c0 15 4 35 4 52c0 107 -46 130 -195 130h-243l130 -296c4 -9 5 -14 5 -14c0 -5 -2 -8 -12 -17l-316 -284h272c175 0 231 31 292 180c4 8 6 14 14 14c9 0 12 -6 12 -11c0 0 -4 -14 -5 -16l-72 -191 c-6 -16 -7 -17 -31 -17h-527c-19 0 -28 0 -28 11c0 4 1 5 12 15l308 278l-151 343c-6 12 -6 16 -6 16c0 20 10 20 30 20h527c20 0 28 0 28 -13'], + 0x1D6F5: [677,0,584,24,704,'704 666c0 -3 -1 -13 -2 -17l-27 -174c-2 -15 -4 -23 -15 -23c-9 0 -12 7 -12 13c0 3 2 15 3 19c4 26 8 65 8 80c0 78 -45 82 -146 82c-21 0 -54 0 -63 -2c-12 -3 -16 -9 -23 -37l-133 -531c-4 -15 -4 -21 -4 -21c0 -16 8 -19 37 -22c26 -2 39 -2 64 -2c26 0 34 0 34 -11 c0 -20 -12 -20 -22 -20c-28 0 -58 2 -87 2l-83 1l-85 -1c-27 0 -55 -2 -82 -2c-6 0 -17 0 -17 12c0 19 6 19 42 19c107 0 110 11 119 48l134 534c1 3 4 15 4 21c0 8 0 12 -28 12h-39c-148 0 -174 -18 -228 -173c-6 -16 -7 -21 -17 -21c-7 0 -12 5 -12 11c0 0 5 16 6 18 l60 176c7 19 8 20 32 20h555c17 0 27 0 27 -11'], + 0x1D6F6: [705,0,583,28,701,'701 593c0 -35 -5 -58 -25 -58c0 0 -12 0 -12 9c0 4 2 11 2 21c0 33 -26 67 -82 67c-106 0 -188 -117 -232 -293l-68 -270c-1 -6 -2 -11 -2 -16c0 -13 3 -17 32 -20c25 -2 30 -2 52 -2c23 0 25 0 28 -1c0 0 6 -3 6 -11c0 -19 -12 -19 -21 -19c-25 0 -51 2 -77 2l-77 1 l-75 -1c-25 0 -51 -2 -76 -2c-4 0 -16 0 -16 11c0 20 10 20 27 20c22 0 73 0 92 7c17 7 21 24 26 45l45 179c34 134 40 159 40 221c0 47 -6 149 -108 149c-35 0 -98 -18 -121 -83c-3 -8 -6 -14 -19 -14c0 0 -12 0 -12 9c0 25 58 161 172 161c104 0 142 -88 142 -197 c0 -15 -1 -36 -3 -51c56 134 143 248 263 248c76 0 99 -66 99 -112'], + 0x1D6F7: [683,0,667,23,643,'643 376c0 -112 -142 -227 -322 -241c-7 -27 -19 -75 -19 -82c0 -13 3 -17 32 -20c25 -2 30 -2 52 -2c23 0 25 0 28 -1c0 0 6 -3 6 -11c0 -19 -12 -19 -21 -19l-151 3l-72 -1c-25 0 -51 -2 -76 -2c-4 0 -16 0 -16 11c0 20 8 20 37 20c95 0 98 9 109 54l12 50 c-127 9 -219 80 -219 172c0 116 149 228 323 241l10 39c3 15 9 38 9 43c0 13 -3 17 -32 20c-24 2 -30 2 -52 2c-26 0 -34 0 -34 11c0 20 12 20 21 20c24 0 49 -2 73 -2l77 -1l73 1c25 0 51 2 76 2c5 0 16 0 16 -12c0 -19 -8 -19 -37 -19c-95 0 -98 -9 -109 -52l-13 -52 c136 -11 219 -87 219 -172zM340 526c-196 -22 -226 -183 -226 -242c0 -18 0 -61 41 -92c24 -19 54 -30 93 -35zM552 399c0 37 -10 67 -40 91c-36 29 -84 35 -93 36l-92 -369c217 28 225 216 225 242'], + 0x1D6F8: [683,0,828,27,851,'851 672c0 -19 -9 -19 -22 -20c-60 -3 -98 -27 -127 -51c-32 -28 -137 -147 -205 -217l129 -309c17 -40 19 -43 86 -44c8 0 18 0 18 -12c0 -19 -12 -19 -19 -19c-25 0 -86 3 -111 3l-126 -3c-4 0 -15 0 -15 12c0 17 9 18 20 19c39 4 58 21 58 29l-5 14l-101 239l-90 -98 l-102 -108c-12 -13 -27 -29 -27 -45c0 -28 31 -30 40 -31c0 0 12 -1 12 -11c0 -20 -12 -20 -18 -20c-36 0 -75 3 -112 3c-31 0 -64 -3 -94 -3c-13 0 -13 11 -13 11c0 19 9 19 22 20c51 3 98 19 147 72c6 5 7 6 13 11l211 227l-118 279c-9 22 -15 32 -75 32 c-13 0 -23 0 -23 11c0 20 12 20 18 20c25 0 87 -3 112 -3c42 0 85 3 126 3c3 0 15 0 15 -12c0 -17 -10 -18 -20 -19c-42 -4 -59 -23 -59 -29l5 -13l84 -199l162 174c8 9 19 22 19 36c0 28 -31 30 -40 31c-7 1 -12 4 -12 11c0 20 13 20 19 20c36 0 74 -3 111 -3 c31 0 64 3 94 3c13 0 13 -11 13 -11'], + 0x1D6F9: [683,0,612,27,693,'693 543c0 -9 -8 -10 -13 -11c-47 -6 -71 -50 -93 -129c-45 -165 -147 -253 -289 -268c-7 -27 -19 -75 -19 -82c0 -13 3 -17 32 -20c25 -2 30 -2 52 -2c23 0 25 0 28 -1c0 0 6 -3 6 -11c0 -19 -12 -19 -21 -19l-151 3l-72 -1c-25 0 -51 -2 -76 -2c-4 0 -16 0 -16 11 c0 20 8 20 37 20c95 0 98 8 110 56c4 15 4 17 11 49c-117 14 -166 87 -166 184c0 38 9 76 13 95c7 27 9 50 9 61c0 52 -23 55 -35 56c-4 0 -13 1 -13 11c0 11 9 11 28 11h28c24 0 70 0 70 -78c0 -23 -5 -47 -10 -71c-11 -41 -15 -74 -15 -104c0 -26 0 -123 98 -142l112 450 c2 8 4 15 4 21c0 13 -3 17 -32 20c-24 2 -30 2 -52 2c-26 0 -34 0 -34 11c0 20 12 20 21 20c24 0 49 -2 73 -2l77 -1l73 1c25 0 51 2 76 2c5 0 16 0 16 -12c0 -19 -8 -19 -38 -19c-94 0 -97 -11 -106 -47l-112 -445c147 33 190 192 207 253c38 141 96 141 127 141h28 c18 0 27 0 27 -11'], + 0x1D6FA: [705,0,772,80,786,'786 502c0 -100 -82 -195 -143 -260c-89 -96 -120 -139 -139 -180h78c58 0 62 6 69 18c11 17 30 53 31 57c8 15 10 18 10 18c2 2 5 4 9 4c9 0 12 -6 12 -11c0 -7 -54 -115 -63 -132c-8 -15 -9 -16 -31 -16h-129c-20 0 -28 0 -28 12c0 6 9 40 34 93c20 41 51 90 75 128 c61 98 121 194 121 292c0 114 -82 158 -158 158c-112 0 -279 -98 -279 -326c0 -22 0 -48 11 -124c10 -75 10 -109 10 -124c0 -63 -11 -100 -12 -102c-4 -6 -5 -7 -27 -7h-129c-21 0 -27 0 -28 12v39c0 16 0 81 1 93c1 7 1 15 13 15c5 0 11 -4 11 -10c1 -2 1 -4 1 -29 c0 -17 0 -49 6 -53c5 -3 30 -5 52 -5h86c0 61 -17 103 -45 170c-32 77 -43 116 -43 166c0 177 193 307 371 307c160 0 253 -95 253 -203'], + 0x1D6FB: [683,33,833,50,789,'789 675c0 0 -1 -3 -8 -12l-508 -678c-10 -13 -13 -18 -30 -18s-18 5 -22 18l-168 678c-3 9 -2 12 -2 12c2 8 8 8 24 8h694c16 0 22 0 20 -8zM708 612h-550l137 -551h1'], + 0x1D6FC: [442,11,640,41,602,'602 383c0 0 -21 -117 -115 -235c-10 -12 -10 -14 -10 -35c0 -24 0 -102 31 -102c0 0 38 0 56 49c3 7 6 10 13 10c6 0 12 -3 12 -10c0 -16 -31 -71 -84 -71c-45 0 -78 31 -91 84c-76 -61 -148 -84 -211 -84c-102 0 -162 76 -162 169c0 141 132 284 269 284 c74 0 167 -49 167 -206v-62c47 59 80 135 98 198c5 18 5 21 15 21c11 0 12 -10 12 -10zM410 99c-2 17 -2 75 -2 112c0 78 0 209 -99 209c-35 0 -89 -19 -136 -92c-32 -51 -58 -159 -58 -208c0 -64 30 -109 90 -109c40 0 117 11 205 88'], + 0x1D6FD: [706,194,566,30,574,'574 574c0 -12 -2 -24 -5 -37c-11 -45 -41 -86 -81 -116c-10 -8 -20 -14 -30 -20c17 -11 31 -26 43 -43c20 -31 30 -68 30 -108c0 -20 -3 -42 -8 -64c-14 -53 -51 -104 -99 -140c-52 -38 -113 -57 -170 -57c-68 0 -114 40 -131 98l-68 -274c-1 -4 -5 -7 -10 -7h-5 c-6 0 -10 4 -10 12l154 615c34 136 125 273 245 273c47 0 89 -18 116 -50c18 -22 29 -51 29 -82zM518 592c0 19 -3 36 -12 51c-16 26 -44 40 -78 40c-110 0 -188 -129 -220 -255l-60 -242c-4 -17 -6 -33 -6 -49c0 -71 41 -126 113 -126c44 0 91 19 129 52 c39 35 61 82 73 128c7 29 12 59 12 87c0 25 -4 48 -14 69c-7 16 -17 29 -30 39c-25 -9 -50 -13 -75 -13c-35 0 -76 0 -76 24c0 0 0 5 1 7c7 27 49 27 85 27c24 0 47 -5 67 -13c9 5 18 12 26 19c31 29 49 67 58 105c5 17 7 34 7 50zM395 403c-11 3 -23 5 -36 5 c-24 0 -57 0 -60 -9c-1 -4 30 -4 52 -4c14 0 29 3 44 8'], + 0x1D6FE: [442,215,518,18,543,'543 421c0 -4 -12 -26 -19 -38c-40 -79 -104 -228 -136 -327c-4 -13 -6 -26 -8 -39c-4 -31 -14 -88 -37 -172c-11 -38 -19 -60 -32 -60c-8 0 -13 7 -13 18c0 26 30 142 52 215c7 20 12 37 12 98c0 79 -11 254 -162 254c-11 0 -120 -1 -159 -116l-4 -5c-10 0 -19 0 -19 10 c0 31 70 183 195 183c69 0 109 -49 133 -110c39 -97 40 -173 41 -204c40 101 80 201 132 296c3 7 9 7 12 7c0 0 12 0 12 -10'], + 0x1D6FF: [712,11,444,43,452,'452 667c0 -6 -2 -12 -5 -18c-7 -13 -22 -22 -36 -22c-3 0 -7 1 -11 2c-38 16 -66 48 -111 50c-11 0 -21 -1 -32 -6c-9 -5 -17 -14 -22 -23c-3 -5 -4 -11 -4 -17c0 -45 63 -124 107 -181c28 -35 49 -75 58 -122c2 -15 3 -30 3 -46c0 -33 -5 -68 -14 -102 c-24 -98 -96 -193 -184 -193c-56 0 -103 26 -130 68c-19 29 -28 63 -28 100c0 20 2 40 8 61c14 58 48 115 98 158c35 30 75 51 116 60c-30 56 -61 120 -61 173c0 19 3 36 12 51c7 14 18 26 31 34c14 9 29 13 43 16c8 1 17 2 26 2c36 0 78 -10 115 -19c13 -3 21 -13 21 -26z M330 244c0 17 -1 34 -5 50c-8 42 -26 80 -46 116l-3 5c-31 -9 -62 -29 -86 -55c-40 -42 -60 -95 -73 -147c-7 -28 -13 -57 -13 -84c0 -22 4 -43 12 -61c15 -34 45 -57 86 -57c63 0 99 79 118 152c7 27 10 55 10 81'], + 0x1D700: [453,22,466,26,429,'429 396c0 -14 -14 -27 -27 -27c-7 0 -9 2 -20 10c-40 28 -76 28 -92 28c-90 0 -188 -36 -188 -97c0 -27 17 -46 40 -58c37 17 72 19 93 19c38 0 73 -3 73 -27c0 -31 -55 -31 -81 -31c-24 0 -53 0 -86 14c-61 -30 -89 -83 -89 -117c0 -71 85 -86 146 -86 c120 0 144 37 158 60c2 3 5 7 10 7c6 0 11 -4 11 -10c0 -15 -56 -103 -188 -103c-106 0 -163 61 -163 126c0 46 32 102 91 135c-4 3 -40 28 -40 71c0 76 108 143 223 143c68 0 129 -38 129 -57zM282 243c-18 5 -22 6 -47 6c-17 0 -38 -1 -61 -9c19 -5 31 -5 53 -5 c38 0 40 1 55 8'], + 0x1D701: [697,205,438,46,474,'474 592c0 -31 -64 -31 -89 -31c-20 0 -43 0 -61 18c-101 -54 -223 -229 -223 -384c0 -19 0 -76 42 -114c24 -21 40 -26 120 -53c59 -20 78 -26 95 -45c8 -8 27 -29 27 -67c0 -57 -47 -121 -109 -121c-53 0 -96 38 -96 48c0 7 5 11 10 11c4 0 5 -1 12 -7 c21 -18 48 -30 74 -30c37 0 56 39 56 66c0 47 -41 61 -62 68c-29 10 -31 10 -61 21c-72 24 -163 54 -163 195c0 194 158 378 263 431c-8 15 -11 33 -11 50c0 3 0 49 18 49c7 0 12 -5 12 -13c0 0 -5 -23 -5 -37c0 -21 2 -26 7 -38c26 10 53 10 64 10c40 0 80 -2 80 -27z M448 591c-18 5 -22 6 -55 6c-13 0 -31 0 -46 -7c11 -7 18 -7 39 -7c44 0 54 5 62 8'], + 0x1D702: [442,216,497,29,496,'496 335c0 -27 -3 -40 -8 -58l-114 -453c-3 -11 -10 -40 -41 -40c-17 0 -28 12 -28 27c0 0 0 4 3 16l114 460c10 40 10 58 10 63c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90 c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43l58 231c13 52 16 63 16 84c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c45 0 87 -30 92 -87 c24 35 76 87 155 87c75 0 115 -42 115 -107'], + 0x1D703: [705,11,469,42,455,'455 500c0 -224 -152 -511 -293 -511c-91 0 -120 111 -120 205c0 229 154 511 293 511c102 0 120 -139 120 -205zM389 562c0 57 -6 121 -55 121c-45 0 -82 -56 -109 -105c-40 -71 -60 -151 -77 -215h209c24 99 32 150 32 199zM348 331h-208c-26 -98 -32 -156 -32 -198 c0 -93 21 -122 54 -122c43 0 81 49 116 117c38 72 59 157 70 203'], + 0x1D704: [442,11,354,56,324,'324 143c0 -33 -70 -154 -184 -154c-56 0 -84 41 -84 82c0 32 24 79 32 107c2 10 11 35 14 45c3 13 28 101 30 106c6 19 15 68 22 87c8 19 26 26 37 26c17 0 29 -10 29 -27c0 -8 -41 -176 -86 -297c-10 -27 -18 -50 -18 -74c0 -30 12 -33 26 -33c43 0 126 33 157 131 c2 7 4 11 13 11c3 0 12 0 12 -10'], + 0x1D705: [442,11,576,55,546,'546 143c0 0 -12 -60 -37 -102c-20 -34 -46 -52 -78 -52c-52 0 -92 40 -92 99c0 8 1 19 5 35c2 10 2 15 2 22c0 65 -87 82 -171 85c-43 -168 -37 -149 -47 -185c-8 -32 -14 -56 -44 -56c-15 0 -29 9 -29 27c0 7 0 9 4 23l92 367c9 36 37 36 40 36c17 0 29 -10 29 -27 c0 -5 -12 -52 -18 -78l-20 -78c36 12 60 27 128 85c44 37 103 87 164 87c36 0 40 -26 40 -35c0 -25 -22 -54 -54 -54c-31 0 -38 23 -38 35c0 5 3 17 5 22c-40 -17 -69 -41 -115 -80c-27 -23 -59 -50 -92 -68c56 -2 194 -9 194 -103c0 -11 -3 -24 -5 -33 c-4 -17 -8 -41 -8 -56c0 -35 11 -48 32 -48c45 0 68 55 87 124c3 14 4 18 14 18c3 0 12 0 12 -10'], + 0x1D706: [694,13,583,53,548,'548 -1c0 -3 -1 -9 -11 -10h-22c-27 0 -37 0 -53 22c-16 23 -64 176 -105 281l-241 -284c-8 -10 -17 -21 -33 -21s-30 12 -30 29c0 13 6 19 18 31l276 274l-97 272c-25 68 -32 74 -65 80c0 0 -9 2 -9 10c0 11 13 11 18 11c47 0 101 -13 122 -71l204 -569 c7 -20 13 -35 23 -46c3 -4 5 -6 5 -9'], + 0x1D707: [442,216,603,30,572,'572 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-44 0 -81 28 -90 73c-24 -28 -63 -73 -133 -73c-20 0 -65 4 -97 31c-38 -154 -51 -206 -55 -215c-2 -3 -14 -21 -35 -21c-17 0 -28 12 -28 27c0 0 0 4 3 16l144 579c9 35 37 36 40 36c17 0 29 -10 29 -27 c0 -5 -10 -43 -15 -64l-42 -168c-7 -28 -14 -56 -14 -85c0 -54 24 -87 74 -87c81 0 129 91 130 96l26 102l47 187c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104c0 -20 3 -46 30 -46 c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10'], + 0x1D708: [442,0,494,53,524,'524 415c0 -9 -27 -145 -159 -268c-103 -96 -212 -135 -282 -147h-14c-6 0 -16 1 -16 12l11 45l61 245c7 27 19 74 19 81c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-98 -398c114 37 266 149 330 376 c8 29 31 33 39 33c17 0 29 -10 29 -27'], + 0x1D709: [697,205,438,23,446,'446 592c0 -31 -64 -31 -89 -31c-23 0 -46 0 -64 22c-75 -37 -111 -114 -111 -170c0 -19 4 -52 30 -78c37 12 66 12 84 12c39 0 82 -2 82 -27c0 -31 -63 -31 -93 -31c-21 0 -51 0 -88 13c-84 -42 -123 -129 -123 -170c0 -42 30 -71 75 -89l60 -24c21 -7 41 -15 61 -23 l61 -23c11 -5 48 -23 48 -71c0 -49 -42 -107 -104 -107c-56 0 -109 36 -109 48c0 4 2 11 10 11c4 0 5 -1 11 -5c11 -8 44 -32 88 -32c31 0 49 30 49 53c0 29 -20 36 -35 43c-59 23 -61 23 -121 47c-75 28 -84 32 -116 65c-2 3 -29 31 -29 79c0 36 22 130 131 202l13 10 c-47 27 -65 69 -65 106c0 77 68 157 175 187c-1 4 -7 19 -7 39c0 3 0 49 18 49c7 0 12 -5 12 -13c0 0 -5 -23 -5 -37c0 -17 2 -24 5 -33c26 5 50 5 63 5c39 0 83 -1 83 -27zM420 591c-18 5 -22 6 -56 6c-11 0 -32 0 -48 -5c11 -9 23 -9 42 -9c44 0 54 5 62 8zM352 319 c-18 5 -22 6 -57 6c-12 0 -34 0 -57 -6c18 -8 27 -8 50 -8c46 0 56 4 64 8'], + 0x1D70A: [442,11,485,41,469,'469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209'], + 0x1D70B: [431,11,570,27,567,'567 407c0 -34 -36 -34 -49 -34h-114c-11 -52 -18 -106 -18 -159c0 -28 0 -93 29 -165c6 -14 6 -16 6 -22c0 -20 -21 -38 -41 -38c-15 0 -26 6 -36 50c-8 34 -8 61 -8 76c0 67 9 110 42 258h-113l-56 -221c-13 -50 -13 -52 -27 -98c-12 -37 -20 -65 -50 -65 c-13 0 -29 8 -29 27c0 7 0 9 8 24c42 91 96 212 128 333h-57c-20 0 -78 0 -127 -77c-6 -8 -8 -12 -16 -12c-12 0 -12 10 -12 10c0 5 26 51 61 90c44 47 82 47 104 47h335c19 0 40 0 40 -24'], + 0x1D70C: [442,216,517,30,502,'502 279c0 -149 -129 -290 -246 -290c-47 0 -79 27 -99 67c-27 -108 -59 -242 -64 -251c-2 -3 -14 -21 -35 -21c-17 0 -28 12 -28 27c0 0 0 4 3 16l98 393c30 122 135 222 232 222c73 0 139 -57 139 -163zM430 322c0 69 -32 98 -69 98c-31 0 -81 -22 -124 -95 c-22 -40 -32 -76 -60 -188c-3 -13 -8 -33 -8 -37c0 -9 16 -89 86 -89c38 0 86 32 119 95c27 49 56 161 56 216'], + 0x1D70D: [442,108,363,31,409,'409 412c0 -8 -9 -17 -17 -17c-3 0 -6 2 -15 6c-35 16 -56 19 -77 19c-109 0 -217 -83 -217 -174c0 -62 42 -85 79 -106c45 -26 47 -26 65 -36c76 -42 99 -54 99 -104c0 -53 -45 -108 -102 -108c-16 0 -61 8 -61 23c0 6 6 10 11 10c3 0 7 -1 9 -2c18 -8 35 -9 41 -9 c29 0 46 28 46 53c0 31 -18 41 -39 53l-94 52c-43 23 -106 58 -106 143c0 112 123 227 275 227c39 0 103 -8 103 -30'], + 0x1D70E: [431,11,571,38,567,'567 407c0 -34 -36 -34 -49 -34h-110c31 -44 31 -92 31 -109c0 -154 -133 -275 -251 -275c-91 0 -150 70 -150 158c0 119 111 284 262 284h228c18 0 39 0 39 -24zM375 276c0 31 -8 97 -92 97c-34 0 -94 -14 -136 -83c-35 -59 -47 -141 -47 -171c0 -72 40 -108 89 -108 c39 0 93 26 132 85c34 51 54 133 54 180'], + 0x1D70F: [431,12,437,27,511,'511 407c0 -34 -36 -34 -49 -34h-168l-67 -342c-3 -15 -8 -43 -41 -43c-22 0 -29 16 -29 27c0 4 6 25 10 37l98 321h-83c-21 0 -78 0 -127 -77c-6 -8 -8 -12 -16 -12c-12 0 -12 10 -12 10c0 6 28 54 61 90c44 47 83 47 103 47h280c19 0 40 0 40 -24'], + 0x1D710: [442,11,540,29,524,'524 372c0 -16 -11 -153 -81 -265c-23 -36 -83 -118 -173 -118c-73 0 -160 28 -160 132c0 30 8 70 50 181c13 35 23 60 23 86c0 32 -17 32 -25 32c-34 0 -74 -29 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82 c0 -19 -6 -36 -11 -47c-41 -110 -57 -162 -57 -204c0 -21 4 -51 25 -73c21 -21 54 -25 73 -25c126 0 208 205 208 271c0 48 -25 74 -36 85c-9 8 -15 14 -15 27c0 22 25 48 50 48c17 0 44 -14 44 -70'], + 0x1D711: [442,218,654,50,619,'619 304c0 -158 -154 -315 -320 -315c-17 0 -24 1 -33 2c-27 -142 -32 -175 -35 -183c-10 -23 -32 -26 -37 -26c-10 0 -29 6 -29 28c0 5 1 7 5 20l53 168c-107 25 -173 98 -173 192c0 96 77 241 105 241c10 0 12 -6 12 -10c0 0 0 -4 -8 -13c-60 -69 -83 -179 -83 -207 c0 -72 56 -128 164 -148c60 195 120 389 265 389c75 0 114 -60 114 -138zM591 282c0 48 -27 102 -96 102c-89 0 -167 -96 -198 -224l-20 -108c0 -3 1 -4 13 -4c8 -1 10 -1 18 -1c154 0 283 122 283 235'], + 0x1D712: [442,205,626,31,594,'594 419c0 -3 0 -5 -11 -16l-238 -267c22 -77 90 -319 141 -319c19 0 44 16 53 40c3 10 4 14 14 14s12 -6 12 -11c0 -13 -27 -65 -85 -65c-89 0 -111 50 -124 80c-24 56 -36 95 -68 199l-229 -257c-4 -4 -9 -11 -16 -11c-6 0 -12 6 -12 12c0 3 0 5 11 16l230 257 c8 8 8 11 8 11c0 3 -32 119 -64 198c-17 44 -47 120 -77 120c-6 0 -38 -4 -53 -43c-2 -5 -4 -11 -13 -11c-12 0 -12 10 -12 10c0 14 26 66 84 66c88 0 110 -50 121 -73c23 -53 31 -78 71 -205l229 255c6 7 10 12 16 12c8 0 12 -6 12 -12'], + 0x1D713: [694,205,651,29,635,'635 372c0 -44 -22 -131 -31 -156c-11 -30 -32 -74 -73 -120c-94 -107 -182 -107 -219 -107l-38 -149c-3 -14 -9 -39 -12 -41c-2 -4 -9 -4 -9 -4c-12 0 -12 10 -12 10c0 3 20 84 23 95c14 53 14 55 22 91c-96 6 -174 47 -174 142c0 17 0 43 48 169c13 35 23 60 23 86 c0 32 -17 32 -25 32c-34 0 -74 -29 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -7 -37 -11 -49c-54 -140 -54 -166 -54 -186c0 -66 38 -103 114 -112l166 661c4 18 5 20 15 20c5 0 12 -1 12 -11c0 -5 -2 -11 -3 -15 l-165 -657c36 0 100 0 188 89c35 36 87 118 87 182c0 48 -25 74 -36 85c-9 8 -15 14 -15 27c0 22 25 48 50 48c17 0 44 -14 44 -70'], + 0x1D714: [442,11,622,13,604,'604 372c0 -40 -12 -90 -23 -133c-30 -121 -93 -250 -197 -250c-67 0 -102 44 -113 106c-38 -62 -90 -106 -153 -106c-76 0 -105 62 -105 143c0 35 5 74 15 112c16 63 41 127 82 184c5 6 12 9 18 9c3 0 6 0 9 -2c5 -3 9 -8 9 -14c0 -4 -2 -9 -5 -13 c-38 -53 -74 -109 -89 -169c-5 -22 -8 -45 -8 -65c0 -63 26 -113 87 -113c55 0 103 39 136 93c1 29 5 59 13 90c5 22 15 47 34 47c14 0 19 -11 19 -26c0 -8 -2 -17 -4 -26c-7 -30 -17 -60 -30 -88c9 -52 42 -90 98 -90c79 0 137 92 160 183c3 12 4 25 4 37 c0 35 -13 66 -38 88c-7 7 -11 15 -11 25c0 11 5 22 14 32c10 10 23 16 35 16c9 0 17 -3 23 -9c15 -13 20 -35 20 -61'], + 0x1D715: [716,22,531,40,566,'566 457c0 -143 -104 -479 -342 -479c-140 0 -184 116 -184 178c0 31 7 124 90 207c78 78 143 94 204 94c78 0 119 -56 129 -118c22 81 28 132 28 171c0 129 -70 181 -143 181c-29 0 -100 -6 -144 -80c16 0 47 0 47 -35c0 -23 -21 -53 -54 -53c-30 0 -38 21 -38 35 c0 28 46 158 191 158c123 0 216 -100 216 -259zM445 303c0 20 -2 132 -111 132c-62 0 -111 -32 -151 -89c-41 -60 -66 -200 -66 -227c0 -10 0 -113 110 -113c154 0 218 225 218 297'], + 0x1D716: [431,11,406,47,376,'376 417c0 -17 -16 -17 -33 -17h-31c-91 0 -147 -58 -171 -143h162c17 0 29 0 29 -14c0 -17 -18 -17 -34 -17h-165c-3 -12 -11 -50 -11 -85c0 -88 50 -130 108 -130c37 0 74 17 105 37c9 6 13 6 13 6c9 0 10 -11 10 -14c0 -11 -65 -51 -130 -51c-106 0 -181 79 -181 189 c0 153 134 253 264 253h35c17 0 30 0 30 -14'], + 0x1D717: [705,11,591,29,561,'561 338c0 -9 -6 -12 -10 -12c-6 0 -35 7 -45 9c-51 -188 -158 -346 -264 -346c-65 0 -135 20 -135 115c0 29 6 54 14 84l18 73c9 37 23 91 23 113c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57 s91 -32 91 -92c0 -15 -5 -36 -10 -53l-12 -48l-19 -77c-5 -23 -13 -55 -13 -81c0 -29 6 -80 74 -80c59 0 107 99 120 127c33 68 49 126 71 216c-70 23 -164 71 -164 168c0 78 65 183 148 183c105 0 111 -162 111 -199c0 -12 0 -66 -20 -150l29 -6c14 -3 21 -4 21 -12z M471 564c0 104 -27 119 -52 119c-70 0 -122 -98 -122 -160c0 -91 96 -130 145 -147c13 57 29 125 29 188'], + 0x1D718: [442,12,624,70,582,'582 145c0 -9 -37 -154 -132 -154c-38 0 -58 29 -58 75c0 16 3 33 7 51c13 53 40 128 66 183c-110 -103 -242 -226 -335 -300c-11 -9 -21 -12 -28 -12c-14 0 -21 10 -21 24c0 13 6 27 19 39c47 63 107 184 127 267c4 17 6 33 6 46c0 32 -12 51 -36 52 c-34 0 -73 -25 -99 -120c-5 -16 -9 -18 -16 -18s-12 0 -12 10c0 9 37 154 132 154c38 0 58 -29 58 -75c0 -16 -3 -33 -7 -51c-14 -55 -42 -132 -69 -189l339 306c5 5 11 6 16 6c10 0 19 -7 22 -13c3 -5 4 -10 4 -16c0 -9 -4 -20 -13 -28c-70 -112 -106 -183 -127 -267 c-4 -17 -6 -32 -6 -45c0 -33 12 -51 36 -52c34 0 72 24 99 119c5 16 9 18 16 18s12 0 12 -10'], + 0x1D719: [694,205,596,49,573,'573 262c0 -134 -145 -269 -306 -274l-38 -149c-3 -14 -9 -38 -11 -40c-3 -3 -5 -4 -10 -4s-12 1 -12 11c0 3 10 41 22 88l23 94c-122 7 -192 86 -192 181c0 136 147 269 306 274l58 231c4 17 5 20 15 20c12 0 12 -10 12 -10l-3 -14l-56 -227c139 -10 192 -102 192 -181z M349 421c-149 -13 -235 -153 -235 -273c0 -100 72 -135 132 -138zM508 283c0 88 -57 134 -133 138l-103 -411c150 12 236 155 236 273'], + 0x1D71A: [442,194,517,74,502,'502 279c0 -147 -127 -290 -247 -290c-64 0 -111 43 -128 107c-23 -100 -23 -138 -23 -146c0 -67 46 -67 136 -67c100 0 144 0 144 -49c0 -24 -6 -28 -15 -28c-11 0 -11 6 -12 12c-1 8 -5 9 -20 10c-6 1 -8 1 -26 1c-40 0 -60 -4 -97 -4c-122 0 -140 47 -140 98 c0 89 60 310 64 321c46 128 145 198 225 198c73 0 139 -57 139 -163zM430 322c0 69 -32 98 -69 98c-33 0 -83 -25 -124 -95c-26 -46 -55 -146 -55 -209c0 -82 41 -105 73 -105c38 0 86 32 119 95c27 49 56 161 56 216'], + 0x1D71B: [431,11,828,27,817,'817 407c0 -17 -14 -28 -23 -32c-6 -2 -33 -2 -50 -2c7 -24 11 -49 11 -74c0 -98 -89 -310 -235 -310c-81 0 -104 66 -104 137c0 9 0 20 1 26l-1 1c-47 -84 -118 -164 -215 -164c-74 0 -88 65 -88 116c0 108 47 197 104 268c-63 0 -74 0 -103 -18 c-26 -15 -44 -35 -59 -58c-6 -10 -8 -13 -16 -13c-12 0 -12 10 -12 10c0 5 26 51 61 90c44 47 82 47 104 47h585c19 0 40 0 40 -24zM730 299c0 16 -4 50 -12 74h-470c-59 -70 -105 -153 -105 -235c0 -59 22 -91 68 -91c62 0 173 50 229 236c2 9 5 11 13 11c0 0 12 0 12 -10 c0 0 0 -3 -4 -19c-12 -54 -13 -89 -13 -102c0 -69 21 -116 82 -116c112 0 200 148 200 252'], + 0x1D71C: [711,0,869,45,834,'834 29c0 -29 -19 -29 -28 -29c-23 0 -47 2 -70 2l-69 1l-149 -3c-11 0 -22 5 -22 18c0 29 17 29 37 29c15 0 46 1 65 5l-23 146h-270l-92 -140c22 -11 50 -11 58 -11s26 0 26 -18c0 -29 -20 -29 -27 -29c-36 0 -74 3 -111 3c-31 0 -65 -3 -95 -3c-12 0 -19 10 -19 18 c0 29 18 29 32 29c73 1 85 19 97 38l393 601c14 21 22 25 44 25c25 0 30 -4 34 -29l94 -615c3 -17 4 -18 16 -19c14 -1 25 -1 39 -1c25 0 40 0 40 -18zM568 245l-44 288l-188 -288h232'], + 0x1D71D: [686,0,866,43,854,'854 547c0 -67 -57 -160 -217 -189c92 -8 167 -51 167 -137c0 -89 -94 -221 -303 -221h-424c-16 0 -34 0 -34 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1c18 2 19 3 23 19l143 570c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18c0 29 17 29 37 29h401 c141 0 213 -57 213 -139zM719 552c0 87 -81 87 -101 87h-149c-11 0 -18 0 -27 -1c-6 -1 -7 -2 -11 -17l-62 -246h158c136 0 192 107 192 177zM665 237c0 102 -84 102 -110 102h-195l-72 -291c7 -1 9 -1 24 -1h160c142 0 193 113 193 190'], + 0x1D71E: [680,0,657,43,777,'777 662l-1 -16l-18 -179c-2 -18 -3 -28 -24 -28c-5 0 -24 0 -24 19s5 45 5 65c0 110 -66 110 -189 110c-27 0 -67 0 -82 -2l-145 -580c10 -2 25 -4 63 -4h33c16 0 33 0 33 -18c0 0 -1 -16 -7 -22c-5 -7 -13 -7 -23 -7c-28 0 -57 2 -86 2l-90 1l-81 -1 c-25 0 -51 -2 -76 -2c-21 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1c18 2 19 3 23 19l141 564c-21 1 -40 2 -61 2c-27 0 -41 0 -41 18c0 6 3 20 9 24c5 5 7 5 27 5h506c16 0 33 0 33 -18'], + 0x1D71F: [711,0,958,60,904,'904 15c0 -15 -16 -15 -32 -15h-787c-18 0 -25 0 -25 9c0 3 0 5 9 16l539 663c13 16 19 23 48 23c31 0 33 -7 40 -30l204 -651c1 -4 4 -11 4 -15zM713 118l-142 451l-366 -451h508'], + 0x1D720: [680,0,810,43,825,'825 662l-1 -16l-18 -179c-2 -18 -3 -28 -24 -28c-5 0 -24 0 -24 19c0 16 4 38 4 56c0 95 -44 119 -153 119h-131c-10 0 -21 0 -34 -2l-63 -255h60c75 0 105 16 125 91c5 19 7 26 26 26c4 0 24 0 24 -18c0 0 0 -3 -4 -16l-56 -223c-5 -18 -6 -24 -25 -24 c-10 0 -23 3 -23 18l1 10c1 3 8 30 8 46c0 34 -20 43 -79 43h-69l-70 -281c7 -1 9 -1 24 -1h130c169 0 221 66 281 198c12 27 13 29 29 29c5 0 24 0 24 -18c0 0 0 -5 -6 -18l-96 -217c-9 -21 -13 -21 -37 -21h-571c-17 0 -34 0 -34 18c0 4 0 20 12 27c4 2 6 2 32 2 c16 0 36 0 53 1c18 2 19 3 23 19l141 564c-21 1 -40 2 -61 2c-27 0 -41 0 -41 18c0 0 2 19 9 24c5 4 6 5 27 5h554c16 0 33 0 33 -18'], + 0x1D721: [686,0,773,68,805,'805 672c0 -14 -7 -25 -15 -34l-549 -587h144c190 0 237 93 280 220c5 13 16 13 23 13c10 0 23 -3 23 -18c0 0 0 -3 -3 -14l-74 -229c-7 -23 -10 -23 -36 -23h-500c-20 0 -30 0 -30 14c0 19 10 30 18 38l549 587h-134c-138 0 -213 -50 -258 -177c-5 -14 -9 -17 -24 -17 c-6 0 -23 1 -23 18c0 0 0 5 5 20l55 179c7 24 11 24 37 24h483c18 0 29 0 29 -14'], + 0x1D722: [686,0,982,43,1027,'1027 668c0 0 -1 -19 -11 -26c-4 -3 -24 -3 -37 -3c-11 0 -46 0 -68 -4l-146 -586c21 -1 40 -2 61 -2c27 0 41 0 41 -18c0 0 -2 -16 -6 -22c-5 -7 -13 -7 -23 -7c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-22 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2 c16 0 36 0 53 1c18 2 19 3 23 19l67 266h-326l-71 -284c21 -1 40 -2 61 -2c27 0 41 0 41 -18c0 0 -2 -16 -6 -22c-5 -7 -13 -7 -23 -7c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-22 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1 c18 2 19 3 23 19l143 570c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18c0 29 20 29 29 29c26 0 53 -2 79 -2l77 -1l75 1c25 0 51 2 76 2c12 0 22 -5 22 -18c0 0 -1 -19 -11 -26c-4 -3 -24 -3 -37 -3c-11 0 -46 0 -68 -4l-63 -255h326l64 257c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18 c0 29 20 29 29 29c26 0 53 -2 79 -2l77 -1l75 1c25 0 51 2 76 2c12 0 22 -5 22 -18'], + 0x1D723: [703,17,867,53,844,'844 440c0 -205 -166 -457 -484 -457c-176 0 -307 81 -307 259c0 195 163 461 486 461c169 0 305 -78 305 -263zM715 476c0 49 -10 98 -44 136c-27 30 -75 55 -141 55c-61 0 -159 -23 -236 -120c-87 -112 -112 -288 -112 -339c0 -143 97 -187 187 -187 c84 0 177 39 241 124c83 113 105 279 105 331zM650 419c0 0 0 -3 -4 -16l-32 -127c-5 -19 -6 -25 -25 -25c-4 0 -24 0 -24 18c0 5 4 16 4 16h-268l-7 -25c-6 -9 -15 -9 -21 -9c-4 0 -24 0 -24 18c0 0 0 3 4 16l32 127c5 19 6 25 25 25c4 0 24 0 24 -18c0 -5 -4 -16 -4 -16 h268l7 25c6 9 15 9 21 9c4 0 24 0 24 -18'], + 0x1D724: [686,0,511,38,566,'566 668c0 -6 -3 -20 -9 -24c-5 -4 -6 -5 -27 -5h-21c-15 0 -28 0 -43 -1c-20 -2 -21 -3 -25 -20l-142 -569c13 -1 46 -2 53 -2h21c17 0 34 0 34 -18c0 -29 -20 -29 -30 -29c-25 0 -51 2 -77 2l-83 1l-81 -1c-25 0 -51 -2 -76 -2c-11 0 -22 5 -22 18c0 29 17 29 37 29h21 c13 0 31 0 43 2c19 1 20 2 24 18l143 570l-53 2h-21c-18 0 -34 0 -34 18c0 29 18 29 29 29c25 0 52 -2 78 -2l83 -1l80 1c25 0 51 2 76 2c12 0 22 -6 22 -18'], + 0x1D725: [686,0,971,43,1003,'1003 668c0 -28 -16 -28 -34 -29c-51 -2 -72 -13 -95 -25c-35 -18 -218 -147 -285 -194l182 -353c8 -16 10 -20 56 -20c15 0 32 0 32 -18c0 -29 -20 -29 -27 -29c-19 0 -40 2 -60 2l-64 1l-148 -3c-21 0 -21 18 -21 18s2 17 6 22c6 7 12 7 25 7c4 0 34 0 54 6l-149 289 l-124 -85l-52 -208c21 -1 40 -2 61 -2c27 0 41 0 41 -18c0 0 -2 -16 -6 -22c-6 -7 -13 -7 -23 -7c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-21 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1c18 2 19 3 23 19l143 570c-21 1 -40 2 -61 2 c-29 0 -42 0 -42 18c0 29 20 29 29 29c26 0 53 -2 79 -2l77 -1l75 1c25 0 51 2 76 2c12 0 22 -5 22 -18c0 0 -1 -19 -11 -26c-4 -3 -24 -3 -37 -3c-11 0 -46 0 -68 -4l-79 -318l456 315c-17 6 -38 7 -46 7c-6 0 -24 0 -24 18c0 29 20 29 28 29c41 0 84 -3 125 -3 c26 0 55 3 80 3c10 0 18 -9 18 -18'], + 0x1D726: [711,0,806,45,772,'772 29c0 -29 -19 -29 -27 -29l-134 3l-150 -3c-21 0 -21 18 -21 18c0 29 16 29 37 29c15 0 46 1 65 5l-57 461l-285 -456c15 -6 41 -10 60 -10c7 0 25 0 25 -18c0 -29 -20 -29 -27 -29c-35 0 -73 3 -109 3c-28 0 -59 -3 -86 -3c-14 0 -18 13 -18 18c0 29 18 29 28 29 c64 1 75 18 88 38l375 601c16 25 28 25 44 25c28 0 29 -6 32 -32l79 -630c12 -1 33 -2 47 -2c18 0 34 0 34 -18'], + 0x1D727: [686,0,1142,46,1216,'1216 668c0 -29 -13 -29 -48 -29c-11 0 -46 0 -68 -4l-146 -586c21 -1 40 -2 61 -2c28 0 41 0 41 -18c0 0 -1 -16 -7 -22c-5 -7 -13 -7 -21 -7c-23 0 -47 2 -71 2l-77 1l-70 -1c-24 0 -49 -2 -73 -2c-21 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1 c18 2 19 3 23 19l142 570l-1 1l-432 -615c-8 -11 -16 -23 -36 -23c-21 0 -24 15 -27 30l-121 594h-1l-141 -567c24 -10 59 -10 70 -10c13 0 30 0 30 -18c0 -29 -19 -29 -27 -29c-25 0 -89 3 -114 3c-37 0 -75 -3 -111 -3c-15 0 -20 12 -20 18c0 29 17 29 36 29 c3 0 33 0 57 6c25 5 25 6 30 26l140 558c-21 1 -40 2 -61 2c-29 0 -42 0 -42 18c0 29 17 29 37 29h188c25 0 34 0 40 -28l107 -529l375 532c15 22 20 25 51 25h178c18 0 34 0 34 -18'], + 0x1D728: [686,0,950,43,1027,'1027 668c0 -29 -17 -29 -35 -29c-16 0 -41 -2 -58 -5c-24 -6 -24 -7 -29 -26l-147 -584c-5 -20 -6 -24 -28 -24c-15 0 -19 0 -30 18l-349 584l-136 -545c24 -10 60 -10 69 -10c13 0 31 0 31 -18c0 -29 -20 -29 -27 -29c-25 0 -89 3 -114 3c-37 0 -75 -3 -111 -3 c-18 0 -20 15 -20 18c0 29 17 29 36 29c3 0 33 0 57 6c25 5 25 6 30 26l136 541c1 4 3 10 3 14c0 3 0 5 -44 5h-24c-18 0 -34 0 -34 18c0 29 17 29 37 29h189c24 0 27 0 37 -17l282 -471l108 431c-24 10 -61 10 -70 10c-14 0 -31 0 -31 18c0 29 20 29 27 29 c25 0 89 -3 114 -3c37 0 75 3 111 3c13 0 20 -9 20 -18'], + 0x1D729: [675,0,841,62,867,'867 656l-29 -150c-4 -19 -5 -27 -25 -27c-4 0 -24 0 -24 18c0 0 0 3 2 13c6 27 6 42 6 52c-18 2 -53 3 -72 3h-392c-13 0 -70 -1 -79 -5c-9 -3 -24 -50 -26 -58c-6 -16 -8 -23 -26 -23c-4 0 -24 0 -24 18c0 5 3 12 4 16l44 141c7 21 9 21 35 21h572c19 0 34 0 34 -19z M765 189c0 -7 -46 -158 -52 -176c-5 -13 -13 -13 -33 -13h-584c-19 0 -34 0 -34 19c0 12 27 142 32 165c3 17 6 23 25 23c6 0 23 -1 23 -18c0 -5 -2 -15 -3 -21c-3 -14 -6 -28 -6 -42c0 -11 1 -12 10 -13c22 -3 24 -3 66 -3h394c12 0 77 0 85 6c10 10 22 49 28 68 c5 17 7 23 26 23c6 0 23 -1 23 -18zM715 436c0 -12 -35 -145 -41 -168c-3 -11 -6 -21 -25 -21c-21 0 -23 12 -23 19c0 3 0 5 6 30h-351c-6 -26 -6 -28 -8 -33c-2 -8 -6 -16 -23 -16c-21 0 -23 12 -23 19c0 4 1 11 2 14l38 149c5 18 7 26 26 26c13 0 23 -6 23 -19 c0 -5 -5 -24 -7 -30h351c2 8 7 28 8 34c5 15 18 15 24 15c13 0 23 -6 23 -19'], + 0x1D72A: [703,17,837,53,815,'815 445c0 -206 -163 -462 -470 -462c-167 0 -292 80 -292 255c0 200 162 465 471 465c173 0 291 -88 291 -258zM679 491c0 127 -82 172 -165 172c-58 0 -141 -23 -208 -105c-82 -103 -112 -290 -112 -353c0 -23 0 -90 44 -134c38 -39 84 -46 117 -46 c57 0 148 22 223 132c65 94 101 269 101 334'], + 0x1D72B: [680,0,982,43,1026,'1026 662c0 -4 0 -20 -12 -27c-4 -2 -6 -2 -32 -2c-16 0 -36 0 -53 -1c-18 -2 -19 -3 -23 -19l-141 -564c21 -1 40 -2 61 -2c27 0 41 0 41 -18c0 0 -2 -16 -6 -22c-5 -7 -13 -7 -23 -7c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-22 0 -22 18 -22 18 c0 4 0 20 12 27c4 2 6 2 32 2c16 0 36 0 53 1c18 2 19 3 23 19l142 566h-326l-146 -584c21 -1 40 -2 61 -2c27 0 41 0 41 -18c0 0 -2 -16 -6 -22c-5 -7 -13 -7 -23 -7c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-22 0 -22 18 -22 18c0 4 0 20 12 27c4 2 6 2 32 2 c16 0 36 0 53 1c18 2 19 3 23 19l141 564c-21 1 -40 2 -61 2c-27 0 -41 0 -41 18c0 0 2 19 9 24c5 4 6 5 27 5h754c17 0 34 0 34 -18'], + 0x1D72C: [686,0,723,43,849,'849 532c0 -118 -126 -230 -310 -230h-177l-63 -253c21 -1 40 -2 61 -2c29 0 41 0 41 -19c0 -28 -19 -28 -29 -28c-25 0 -52 2 -78 2l-77 1l-76 -1c-25 0 -51 -2 -76 -2c-22 0 -22 18 -22 18c0 5 0 20 13 26c3 3 5 3 31 3c16 0 36 0 53 1c18 2 19 3 23 19l143 570 c-21 1 -40 2 -61 2c-28 0 -42 0 -42 18c0 29 18 29 37 29h385c132 0 224 -52 224 -154zM709 560c0 69 -75 79 -131 79h-104c-11 0 -18 0 -27 -1c-6 -1 -7 -2 -11 -17l-70 -278h137c90 0 135 28 156 55c37 48 50 150 50 162'], + 0x1D72D: [703,17,867,53,844,'844 440c0 -205 -166 -457 -484 -457c-176 0 -307 81 -307 259c0 195 163 461 486 461c169 0 305 -78 305 -263zM715 476c0 49 -10 98 -44 136c-27 30 -75 55 -141 55c-61 0 -159 -23 -236 -120c-33 -42 -57 -94 -74 -144h488c5 32 7 57 7 73zM679 285h-489 c-6 -34 -8 -61 -8 -77c0 -143 97 -187 187 -187c84 0 177 39 241 124c31 42 53 92 69 140'], + 0x1D72E: [686,0,885,69,901,'901 652l-18 -177c-2 -20 -3 -30 -25 -30c-14 0 -23 5 -23 21c0 10 2 22 2 32c0 120 -65 141 -208 141h-219l157 -280c6 -11 7 -12 7 -16c0 -9 -3 -10 -16 -20l-352 -258h262c149 0 243 20 308 172c8 19 10 22 27 22c6 0 23 -1 23 -18c0 -10 -73 -193 -84 -221 c-8 -20 -10 -20 -36 -20h-603c-18 0 -34 0 -34 18c0 5 0 10 15 21l347 253l-195 347c-6 11 -8 13 -8 18c0 0 2 19 10 24c5 4 6 5 27 5h603c26 0 36 0 33 -34'], + 0x1D72F: [675,0,637,25,772,'772 655l-28 -193c-3 -20 -6 -28 -25 -28c-6 0 -24 0 -24 19c0 0 2 12 2 18c4 24 7 42 7 68c0 84 -49 89 -145 89h-42c-19 -1 -20 -2 -24 -18l-140 -560c24 -3 48 -3 72 -3h41c17 0 34 0 34 -18c0 -29 -19 -29 -31 -29c-32 0 -64 2 -96 2l-102 1l-99 -1 c-32 0 -64 -2 -95 -2c-7 0 -24 0 -24 19c0 28 17 28 36 28h42c51 0 77 4 83 5l143 575c-20 1 -22 1 -52 1c-142 0 -177 -23 -229 -169c-8 -20 -10 -25 -27 -25c-5 0 -24 0 -24 18l6 18l64 185c7 20 13 20 36 20h607c20 0 34 0 34 -20'], + 0x1D730: [703,0,671,32,802,'802 586c0 -55 -19 -55 -35 -55c-13 0 -23 0 -23 15c0 0 0 9 1 11c-1 14 -3 36 -84 36c-116 0 -184 -119 -214 -202c-14 -41 -65 -249 -81 -315c-5 -20 -5 -23 -5 -23c0 -6 48 -6 62 -6h32c19 0 34 0 34 -19c0 -28 -18 -28 -30 -28c-30 0 -61 2 -91 2l-90 1l-88 -1 c-30 0 -60 -2 -89 -2c-4 0 -23 0 -23 18c0 29 17 29 36 29h32c15 0 72 0 75 8l10 41l49 193c23 92 27 109 27 154c0 14 0 69 -27 107c-26 38 -62 43 -90 43c-89 0 -99 -28 -104 -43c-7 -19 -18 -19 -31 -19c-12 0 -23 0 -23 14c0 36 70 158 193 158c169 0 170 -195 170 -231 c20 37 55 103 115 157c46 41 105 74 172 74c74 0 120 -50 120 -117'], + 0x1D731: [686,0,767,28,738,'738 374c0 -91 -107 -206 -339 -222l-25 -101c10 -2 25 -4 63 -4h33c16 0 33 0 33 -18c0 0 -2 -16 -7 -22c-5 -7 -13 -7 -23 -7c-28 0 -57 2 -86 2l-90 1l-90 -1c-27 0 -55 -2 -82 -2c-10 0 -23 4 -23 18c0 9 3 19 9 25c6 4 10 4 28 4h32c42 0 68 3 71 5c5 1 7 13 8 16 l20 84c-139 10 -242 64 -242 160c0 62 58 196 338 223l25 101c-26 3 -28 3 -63 3h-32c-18 0 -34 0 -34 18c0 29 19 29 30 29c28 0 57 -2 86 -2l90 -1l84 1c29 0 59 2 88 2c4 0 23 0 23 -18c0 -29 -17 -29 -36 -29h-33c-52 0 -69 -4 -71 -5s-3 -2 -7 -16l-21 -84 c181 -14 243 -89 243 -160zM357 497c-21 -2 -94 -12 -139 -60c-35 -38 -53 -110 -53 -148c0 -32 6 -86 114 -100zM601 398c0 56 -37 90 -115 99l-77 -308c45 6 103 21 141 63c35 41 51 113 51 146'], + 0x1D732: [686,0,947,39,953,'953 668c0 -3 -2 -29 -21 -29c-104 -1 -116 -13 -156 -51l-62 -63l-132 -130l158 -331c7 -13 8 -14 23 -16c15 -1 25 -1 39 -1c24 0 40 0 40 -18c0 -29 -20 -29 -28 -29c-23 0 -47 2 -70 2l-69 1l-153 -3c-21 0 -22 15 -22 18c0 29 19 29 29 29c24 0 58 6 58 6l-113 236 l-233 -232c19 -7 39 -10 59 -10c8 0 26 0 26 -18c0 -29 -20 -29 -28 -29l-130 3c-24 0 -85 -3 -109 -3c-15 0 -20 11 -20 18c0 29 17 29 35 29c89 1 110 22 128 39l251 248l-138 289c-6 12 -7 13 -21 15c-14 1 -25 1 -39 1c-28 0 -41 0 -41 19c0 28 19 28 28 28 c23 0 47 -2 70 -2l69 -1l152 3c13 0 22 -5 22 -19c0 -28 -18 -28 -29 -28c-17 0 -48 -4 -58 -6l92 -193l191 189c-4 1 -30 9 -60 10c-9 0 -25 1 -25 19c0 28 20 28 28 28l130 -3c36 0 74 3 109 3c16 0 20 -12 20 -18'], + 0x1D733: [686,0,714,27,792,'792 529c0 -15 -14 -17 -20 -18c-34 -5 -56 -43 -72 -99c-33 -123 -110 -241 -320 -260l-25 -101c10 -2 25 -4 63 -4h32c19 0 34 0 34 -19c0 -28 -18 -28 -30 -28c-28 0 -57 2 -86 2l-90 1l-90 -1c-27 0 -55 -2 -82 -2c-11 0 -22 4 -22 18c0 29 17 29 36 29h32 c42 0 68 3 71 5c4 1 7 12 8 16l21 85c-16 2 -95 9 -147 56c-44 39 -53 88 -53 132c0 19 0 36 10 76c4 19 7 35 7 53c0 38 -12 40 -24 41c-18 2 -18 18 -18 18c0 18 18 18 34 18h65c24 0 71 0 71 -77c0 -16 0 -27 -10 -70c-7 -29 -12 -62 -12 -84c0 -78 37 -110 87 -123 l110 443c-26 3 -28 3 -63 3h-32c-17 0 -34 0 -34 18c0 29 19 29 30 29c28 0 57 -2 86 -2l90 -1l90 1c27 0 55 2 82 2c4 0 23 0 23 -18c0 -29 -17 -29 -37 -29h-32c-52 0 -69 -4 -71 -5s-3 -2 -7 -16l-105 -422c131 34 167 169 180 218c35 133 91 133 121 133h65 c18 0 34 0 34 -18'], + 0x1D734: [703,0,879,93,886,'886 503c0 -115 -93 -203 -197 -302c-30 -30 -70 -74 -89 -101h72c58 0 62 6 69 15c8 11 20 35 34 65c6 12 9 17 25 17c4 0 24 0 24 -18c0 -4 -10 -24 -16 -36l-60 -127c-8 -16 -11 -16 -35 -16h-155c-19 0 -34 0 -34 19c0 8 12 51 41 111c17 33 26 51 72 126 c45 76 107 180 107 279c0 109 -88 132 -158 132c-160 0 -273 -118 -273 -318c0 -42 9 -123 9 -126c3 -25 6 -72 6 -97c0 0 0 -43 -6 -79c-8 -46 -9 -47 -40 -47h-155c-34 0 -34 2 -34 42l1 59c0 13 0 50 1 62c2 25 2 34 24 34c17 0 24 -6 24 -25c0 -7 -1 -13 -1 -20 c0 -4 0 -45 6 -48c10 -4 41 -4 52 -4h83c-6 38 -17 65 -55 134c-39 73 -56 120 -56 172c0 140 136 297 414 297c220 0 300 -97 300 -200'], + 0x1D735: [686,25,958,60,904,'904 674c0 0 -1 -4 -11 -16l-535 -657c-16 -20 -21 -26 -51 -26c-27 0 -32 5 -38 27l-206 658c-3 10 -2 14 -2 14c3 12 13 12 31 12h787c18 0 28 0 25 -12zM759 568h-508l141 -451'], + 0x1D736: [452,8,761,46,704,'704 59c0 -21 -34 -67 -100 -67c-61 0 -102 37 -120 79c-53 -38 -135 -79 -231 -79c-125 0 -207 63 -207 173c0 129 110 287 314 287c47 0 112 -10 164 -63c54 -54 55 -113 56 -161c22 31 52 86 71 153c5 19 6 21 25 21c9 0 24 0 24 -14c0 -3 -22 -116 -116 -224 c0 -20 2 -136 27 -136c0 0 35 3 47 32c5 13 10 13 23 13c9 0 23 0 23 -14zM472 115c0 24 -4 68 -5 93c-4 98 -15 208 -108 208c-51 0 -113 -29 -145 -93c-30 -58 -53 -169 -53 -202c0 -66 41 -93 97 -93c24 0 68 3 128 29c25 11 86 46 86 58'], + 0x1D737: [703,194,660,35,638,'638 566c0 -14 -1 -29 -5 -44c-12 -47 -41 -92 -83 -123c8 -7 16 -15 23 -24c24 -30 35 -69 35 -111c0 -23 -4 -46 -10 -70c-14 -57 -52 -112 -106 -148c-61 -40 -130 -54 -196 -54c-68 0 -122 30 -151 78l-63 -254c-2 -6 -7 -10 -14 -10h-19c-8 0 -14 6 -13 17l156 625 c33 133 150 255 275 255c55 0 107 -14 140 -49c21 -23 31 -54 31 -88zM546 595c0 13 -2 26 -8 37c-13 25 -42 35 -73 35c-106 0 -198 -110 -227 -226l-62 -247c-3 -14 -5 -28 -5 -41c0 -72 51 -125 127 -125c43 0 90 13 125 45c39 35 54 82 65 128c9 34 17 69 17 101 c0 19 -3 37 -10 54c-2 4 -4 7 -6 10c-34 -13 -69 -18 -104 -18c-49 0 -103 4 -103 41c0 3 0 7 1 11c11 43 69 44 120 44c31 0 62 -4 89 -13c25 28 35 64 43 98c6 22 11 45 11 66zM450 399c-15 6 -32 9 -50 9c-29 0 -66 0 -70 -15c-2 -9 32 -9 58 -9c20 0 42 5 62 15'], + 0x1D738: [452,211,590,12,617,'617 430c0 -4 -11 -23 -17 -34c-71 -128 -119 -244 -146 -319c-3 -8 -3 -10 -4 -22c-12 -103 -38 -193 -46 -217c-4 -12 -17 -49 -41 -49s-24 27 -24 35c0 37 31 145 58 226c7 21 9 28 9 68c0 41 -8 123 -35 163c-34 48 -100 61 -155 61c-52 0 -135 -10 -157 -74 c-5 -12 -13 -12 -24 -12c-9 0 -23 0 -23 15c0 41 84 181 225 181c155 0 203 -195 212 -262c71 161 124 248 126 250c5 4 9 4 19 4c9 0 23 0 23 -14'], + 0x1D739: [718,8,522,47,513,'513 657c0 -7 -2 -15 -6 -23c-10 -19 -30 -30 -49 -30c-5 0 -10 1 -15 3c-43 17 -71 58 -121 64c-3 0 -6 1 -9 1c-7 0 -15 -1 -22 -5c-10 -4 -18 -12 -22 -22c-2 -2 -2 -4 -2 -7c0 -33 83 -110 139 -163c35 -32 60 -74 67 -124c3 -13 3 -27 3 -41c0 -37 -6 -76 -16 -115 c-26 -105 -111 -203 -207 -203c-68 0 -131 18 -170 64c-24 29 -36 67 -36 108c0 20 3 41 8 62c15 62 53 123 110 165c37 27 78 44 119 54c-31 54 -60 113 -60 164c0 19 4 36 13 52c8 16 22 31 38 41c17 9 35 14 52 16h8c33 0 102 -15 149 -25c18 -4 29 -19 29 -36zM361 244 c0 14 -1 29 -3 43c-8 41 -25 77 -46 110l-6 11c-26 -8 -51 -23 -72 -43c-41 -41 -56 -95 -69 -146c-8 -31 -15 -62 -15 -91c0 -19 3 -36 11 -52c16 -33 53 -48 94 -48c54 0 80 69 95 132c7 28 11 56 11 84'], + 0x1D73A: [461,17,529,35,483,'483 392c0 -23 -24 -45 -45 -45c-7 0 -14 3 -22 8c-43 30 -75 30 -102 30c-119 0 -188 -36 -188 -91c0 -11 4 -25 12 -35c53 25 107 25 127 25c31 0 85 0 85 -41c0 -55 -76 -55 -103 -55c-18 0 -72 0 -113 22c-36 -26 -50 -64 -50 -84c0 -67 94 -67 157 -67 c86 0 148 4 171 49c0 0 5 3 10 3c10 0 17 -8 17 -17c0 -16 -52 -111 -215 -111c-134 0 -189 61 -189 130c0 48 24 89 65 123c-6 7 -21 28 -21 58c0 71 82 167 254 167c15 0 53 0 97 -20c37 -18 53 -31 53 -49zM303 243c-12 4 -15 5 -42 5c-10 0 -48 0 -84 -13 c28 -11 54 -11 71 -11c48 0 51 7 55 19'], + 0x1D73B: [703,202,508,48,522,'522 576c0 -54 -81 -54 -108 -54c-20 0 -53 0 -75 30c-91 -57 -199 -204 -199 -340c0 -109 73 -131 116 -144l88 -27c41 -12 108 -32 108 -111c0 -58 -48 -132 -122 -132c-48 0 -119 27 -119 48c0 8 8 18 19 18c6 0 7 -1 15 -5c34 -20 64 -25 85 -25c34 0 36 37 36 41 c0 38 -33 48 -76 60c-127 38 -154 46 -193 88c-35 39 -49 90 -49 140c0 175 137 349 275 426c-4 15 -4 32 -4 38c0 17 0 76 33 76c0 0 21 -1 21 -21c0 -3 0 -4 -2 -12c-1 -4 -8 -34 -6 -62c28 10 48 10 65 10c43 0 92 -3 92 -42zM475 575c-15 6 -19 7 -48 7 c-18 0 -32 0 -52 -11c8 -13 25 -13 39 -13c0 0 23 0 37 2c16 3 17 5 24 15'], + 0x1D73C: [452,211,600,32,594,'594 336c0 -25 -3 -38 -8 -56l-108 -430c-15 -60 -56 -61 -67 -61c-21 0 -47 12 -47 44c0 4 0 10 4 26l111 441c4 18 8 32 8 57c0 49 -24 59 -50 59c-42 0 -75 -17 -103 -39c-33 -27 -61 -72 -62 -78c-2 -3 -27 -106 -31 -119l-28 -112c-7 -30 -19 -76 -71 -76 c-31 0 -47 23 -47 44c0 7 5 26 8 40l36 140l22 90c10 40 14 56 14 73c0 33 -12 37 -23 37c-25 0 -48 -20 -68 -100c-6 -25 -6 -27 -8 -29c-5 -5 -9 -5 -20 -5c-9 0 -24 0 -24 14c0 5 13 59 38 99c21 36 50 57 87 57c54 0 109 -26 123 -76c71 76 144 76 165 76 c72 0 149 -24 149 -116'], + 0x1D73D: [702,8,562,46,547,'547 490c0 -75 -27 -234 -111 -357c-69 -102 -157 -141 -224 -141c-90 0 -166 66 -166 211c0 81 31 217 82 311c75 136 175 188 254 188c61 0 165 -36 165 -212zM440 563c0 59 -18 103 -60 103c-48 0 -89 -53 -112 -94c-30 -52 -56 -143 -70 -201h209 c11 42 33 129 33 192zM395 323h-209c-11 -43 -33 -136 -33 -193c0 0 0 -40 12 -67c14 -31 35 -35 49 -35c35 0 119 27 181 295'], + 0x1D73E: [452,8,412,46,378,'378 148c0 -8 -14 -64 -75 -108c-56 -41 -112 -48 -141 -48c-67 0 -116 37 -116 90c0 31 21 64 30 95c12 45 2 3 15 48c5 18 13 45 18 58c5 18 15 64 22 82c2 7 5 27 8 34c6 15 20 53 66 53c31 0 47 -23 47 -44c0 -9 -35 -159 -88 -295c-6 -17 -16 -43 -16 -64 s10 -21 19 -21c36 0 133 24 164 121c4 13 11 13 23 13c9 0 24 0 24 -14'], + 0x1D73F: [452,8,668,50,634,'634 148c0 -8 -37 -156 -137 -156c-66 0 -128 39 -128 103c0 10 4 24 4 24c1 6 3 17 3 23c0 60 -85 73 -170 75c-20 -77 -19 -76 -39 -153c-6 -26 -18 -72 -70 -72c-31 0 -47 23 -47 44c0 7 6 31 10 46l44 176l35 141c12 43 48 53 66 53c31 0 47 -23 47 -44 c0 -8 -4 -23 -16 -72c-6 -22 -11 -45 -17 -67c35 16 61 35 122 83c46 37 114 92 183 92c46 0 52 -34 52 -47c0 -31 -28 -70 -71 -70c-27 0 -49 16 -49 47c0 8 2 15 3 18c-24 -12 -41 -20 -106 -72c-35 -27 -63 -50 -90 -66c94 -8 107 -10 143 -21c16 -5 81 -26 81 -90 c0 -8 -2 -20 -5 -33c-5 -18 -6 -42 -6 -42c0 -39 16 -40 26 -40c51 0 75 85 83 114c5 18 7 20 25 20c9 0 24 0 24 -14'], + 0x1D740: [694,12,671,47,644,'644 6c0 -14 -12 -14 -30 -14h-50c-35 0 -54 10 -63 28c-3 8 -12 27 -15 35l-96 216c-38 -37 -127 -135 -164 -173c-4 -4 -53 -55 -55 -58c-28 -30 -48 -52 -76 -52c-25 0 -48 20 -48 48c0 27 20 44 32 53l289 233c-23 52 -127 290 -139 309c-16 24 -27 25 -43 27 c0 0 -15 2 -15 17c0 19 17 19 40 19c123 0 136 -28 148 -56l256 -577c7 -16 16 -35 24 -43c2 -3 5 -7 5 -12'], + 0x1D741: [452,211,708,40,674,'674 148c0 -5 -13 -59 -38 -99c-21 -36 -50 -57 -87 -57s-93 14 -117 60c-60 -54 -106 -60 -140 -60c-13 0 -58 0 -99 16c-7 -31 -40 -168 -46 -180c-14 -28 -41 -39 -60 -39c-21 0 -47 12 -47 44c0 4 0 10 4 26l133 531c3 12 16 62 68 62c31 0 47 -23 47 -44 c0 -7 -11 -50 -17 -76l-40 -156c-4 -18 -10 -42 -10 -69c0 -30 6 -79 74 -79c27 0 57 9 89 36c18 15 35 32 39 50l69 277c11 41 46 53 66 53c31 0 47 -23 47 -44c0 -7 -10 -47 -16 -70l-22 -90l-26 -102c-10 -40 -14 -56 -14 -73c0 -33 12 -37 23 -37c25 0 48 20 68 100 c6 25 6 27 8 29c5 5 9 5 20 5c9 0 24 0 24 -14'], + 0x1D742: [452,0,577,45,603,'603 408c0 -11 -22 -136 -155 -248c-111 -93 -245 -143 -352 -160h-28c-11 0 -23 4 -23 18l93 377c-12 1 -30 2 -42 2c-9 0 -27 0 -27 18c0 28 18 29 33 30l125 6c13 1 32 2 32 -17l-94 -380c101 33 171 99 203 130c60 61 99 133 122 215c14 46 52 53 66 53 c31 0 47 -22 47 -44'], + 0x1D743: [703,202,508,24,491,'491 576c0 -54 -81 -54 -108 -54c-24 0 -53 0 -75 30c-54 -38 -84 -114 -84 -167c0 -17 3 -35 9 -51c46 13 77 13 96 13c33 0 95 0 95 -42c0 -54 -82 -54 -113 -54c-27 0 -59 0 -108 17c-5 2 -7 2 -7 2c-13 0 -88 -71 -88 -130c0 -48 58 -68 93 -80l66 -22l132 -46 c20 -8 50 -32 50 -75c0 -47 -42 -119 -120 -119c-50 0 -134 24 -134 48c0 6 6 18 20 18c4 0 6 -1 13 -5c45 -24 94 -25 100 -25c29 0 31 27 31 30c0 8 -5 17 -13 21c-7 4 -50 19 -75 27c-63 22 -65 22 -115 39c-59 21 -132 61 -132 143c0 38 25 131 130 202 c-27 19 -53 57 -53 104c0 76 62 166 187 203c-1 7 -1 16 -1 23c0 18 0 77 33 77c0 0 21 -1 21 -21c0 -3 0 -4 -2 -12c0 0 -6 -25 -7 -56c28 4 53 4 63 4c42 0 96 -1 96 -42zM444 575c-16 6 -19 7 -50 7c-14 0 -32 0 -52 -9c9 -15 25 -15 41 -15c10 0 48 0 58 11c3 4 3 6 3 6 zM376 304c-16 6 -19 7 -51 7c-17 0 -39 0 -67 -10c18 -14 40 -14 56 -14c12 0 49 0 59 11'], + 0x1D744: [452,8,585,46,569,'569 279c0 -126 -107 -287 -315 -287c-131 0 -208 66 -208 173c0 126 107 287 315 287c131 0 208 -66 208 -173zM454 323c0 76 -53 93 -95 93c-45 0 -105 -22 -142 -87c-30 -53 -56 -173 -56 -208c0 -76 53 -93 95 -93c45 0 105 22 142 87c30 53 56 173 56 208'], + 0x1D745: [444,9,682,31,668,'668 405c0 -23 -13 -35 -20 -42c-15 -15 -31 -15 -50 -15h-124c-6 -40 -6 -50 -6 -74c0 -27 0 -104 46 -185c9 -15 12 -21 12 -33c0 -32 -36 -65 -69 -65c-48 0 -66 76 -66 144c0 59 11 120 33 213h-112l-76 -299c-5 -21 -6 -25 -21 -40c-7 -6 -22 -17 -43 -17 c-26 0 -48 18 -48 45c0 14 3 19 19 49c54 101 94 183 119 262h-60c-19 0 -85 0 -123 -47c-9 -11 -10 -12 -25 -12c-11 0 -23 0 -23 14c0 10 39 61 74 93c53 48 96 48 117 48h393c18 0 53 0 53 -39'], + 0x1D746: [452,211,612,40,597,'597 285c0 -130 -105 -293 -291 -293c-56 0 -90 23 -107 39c-31 -125 -48 -193 -52 -202c-14 -31 -43 -40 -60 -40c-21 0 -47 12 -47 44c0 0 0 10 4 26l93 370c32 129 140 223 275 223c111 0 185 -59 185 -167zM483 335c0 13 0 81 -73 81c-38 0 -73 -21 -90 -39 c-18 -17 -43 -43 -65 -122l-29 -118c-5 -17 -13 -49 -13 -52c0 -9 25 -57 92 -57c45 0 98 27 129 99c17 41 49 159 49 208'], + 0x1D747: [452,105,424,35,462,'462 413c0 -12 -11 -28 -28 -28c-5 0 -8 0 -22 8c-42 23 -66 23 -77 23c-107 0 -215 -68 -215 -152c0 -22 11 -47 33 -66c18 -14 78 -42 102 -53c23 -11 86 -41 98 -49c19 -14 40 -35 40 -75c0 -59 -52 -126 -122 -126c-7 0 -76 4 -76 29c0 9 7 18 19 18c4 0 6 0 11 -2 c23 -9 45 -9 45 -9c31 0 32 35 32 35c0 10 -5 24 -21 34c-15 8 -48 24 -73 35c-54 25 -99 46 -123 68c-31 29 -50 68 -50 111c0 120 135 238 311 238c14 0 116 0 116 -39'], + 0x1D748: [444,8,686,42,671,'671 405c0 -23 -13 -35 -20 -42c-15 -15 -31 -15 -50 -15h-96c10 -24 14 -51 14 -76c0 -142 -106 -280 -289 -280c-107 0 -188 51 -188 159c0 104 91 293 297 293h279c18 0 53 0 53 -39zM411 278c0 36 -10 70 -92 70c-76 0 -109 -30 -129 -64c-23 -37 -45 -132 -45 -170 c0 -16 0 -86 87 -86c28 0 86 9 127 71c32 49 52 149 52 179'], + 0x1D749: [444,12,521,31,604,'604 405c0 0 0 -25 -20 -42c-16 -15 -29 -15 -50 -15h-185l-47 -294c-10 -66 -61 -66 -68 -66c-25 0 -47 16 -47 44c0 11 19 64 30 95l39 115l36 106h-90c-19 0 -85 0 -123 -47c-9 -11 -10 -12 -25 -12c-11 0 -23 0 -23 14c0 10 39 61 74 93c53 48 96 48 117 48h329 c17 0 53 0 53 -39'], + 0x1D74A: [453,8,631,32,605,'605 362c0 -30 -13 -163 -97 -268c-55 -69 -114 -102 -182 -102c-86 0 -202 21 -202 141c0 42 13 83 60 202c3 8 15 37 15 60c0 21 -10 21 -17 21c-16 0 -71 -10 -103 -121c-4 -13 -11 -13 -23 -13c-9 0 -24 0 -24 14c0 20 50 156 156 156c55 0 113 -32 113 -90 c0 -17 -2 -21 -17 -59c-29 -76 -52 -137 -52 -186c0 -51 24 -89 101 -89c128 0 208 199 208 241c0 22 -11 40 -50 63c-8 4 -30 17 -30 45c0 34 37 76 76 76c0 0 68 0 68 -91'], + 0x1D74B: [452,216,747,52,704,'704 295c0 -169 -174 -303 -355 -303c-12 0 -14 0 -24 1l-20 -138c-2 -13 -10 -71 -69 -71c-14 0 -47 8 -47 44c0 11 10 38 17 56l41 119c-119 24 -195 94 -195 187c0 38 26 156 92 235c17 18 18 19 34 19c9 0 23 0 23 -14c0 -4 0 -6 -14 -20c-62 -71 -86 -183 -86 -206 c0 -64 60 -99 178 -112c54 152 129 360 287 360c90 0 138 -72 138 -157zM653 266c0 55 -45 90 -104 90c-60 0 -113 -38 -148 -83c-46 -61 -52 -109 -62 -185c53 0 134 0 212 40c83 43 102 104 102 138'], + 0x1D74C: [452,202,718,37,679,'679 422c0 -9 -3 -12 -14 -23l-253 -252c26 -98 38 -141 70 -204c3 -6 56 -109 90 -109c16 0 41 14 50 40c5 14 7 15 24 15c10 0 23 0 23 -14c0 -7 -18 -77 -113 -77c-88 0 -141 19 -167 64c-21 36 -43 81 -72 190c-129 -125 -233 -233 -245 -241c0 0 -5 -5 -13 -5 c-14 0 -22 11 -22 21c0 9 3 12 14 23l253 253c-27 102 -36 138 -65 195c-2 4 -59 118 -94 118c-17 0 -41 -15 -51 -40c-4 -14 -6 -15 -24 -15c-11 0 -23 0 -23 14c0 10 21 77 114 77c42 0 124 -3 160 -53c37 -52 62 -143 79 -202l233 232c12 12 15 15 25 15 c9 0 21 -7 21 -22'], + 0x1D74D: [694,202,758,32,733,'733 362c0 -51 -24 -133 -35 -158c-48 -102 -162 -212 -312 -212c-22 -88 -21 -87 -44 -174c-5 -19 -7 -20 -25 -20c-9 0 -23 0 -23 14c0 4 15 64 23 96c2 10 20 79 20 82c0 0 -1 3 -10 4c-46 4 -202 18 -202 150c0 33 17 84 52 172c12 31 22 56 22 79 c0 21 -11 21 -17 21c-16 0 -70 -10 -103 -121c-4 -13 -11 -13 -23 -13c-9 0 -24 0 -24 14c0 20 50 156 156 156c55 0 113 -32 113 -90c0 -17 -2 -23 -17 -60c-46 -117 -49 -144 -49 -168c0 -38 11 -92 113 -103l160 640c5 21 6 23 26 23c10 0 23 0 23 -15c0 -4 0 -6 -4 -20 l-158 -631c163 1 274 179 274 241c0 22 -11 40 -50 63c-9 5 -30 17 -30 45c0 36 38 76 76 76c0 0 68 0 68 -91'], + 0x1D74E: [453,8,718,22,691,'691 362c0 -39 -12 -86 -23 -129c-30 -121 -116 -241 -224 -241c-63 0 -107 32 -130 80c-43 -48 -98 -80 -157 -80c-91 0 -135 73 -135 166c0 26 3 54 10 81c17 69 47 137 94 198c7 9 18 14 28 14c5 0 10 -1 14 -3c8 -5 13 -14 13 -23c0 -7 -3 -14 -8 -20 c-41 -54 -79 -111 -94 -172c-3 -11 -4 -22 -4 -32c0 -57 41 -99 103 -99c42 0 84 18 117 47c-1 6 -1 11 -1 17c0 23 3 48 10 73c7 30 31 57 58 57c24 0 38 -20 38 -44c0 -6 -1 -13 -3 -19c-7 -30 -18 -59 -33 -86c21 -28 57 -45 101 -45c71 0 139 64 157 137c2 7 2 13 2 19 c0 34 -24 60 -52 78c-15 9 -23 25 -23 43c0 14 5 29 16 43c16 20 39 31 60 31c11 0 21 -3 29 -8c28 -17 37 -47 37 -83'], + 0x1D74F: [711,17,628,59,657,'657 459c0 -73 -54 -476 -378 -476c-57 0 -108 8 -149 39c-29 22 -71 65 -71 135c0 13 4 130 89 207c75 70 146 91 228 91c21 0 106 0 134 -103c15 55 29 111 29 167c0 24 0 79 -42 117c-38 33 -86 36 -106 36c-54 0 -101 -20 -137 -65c13 -2 44 -12 44 -47 c0 -29 -26 -70 -71 -70c-43 0 -50 33 -50 46c0 31 46 175 219 175c140 0 261 -77 261 -252zM488 296c0 25 -4 123 -105 123c-82 0 -122 -49 -136 -69c-34 -51 -66 -200 -66 -238c0 -77 62 -86 103 -86c66 0 117 40 144 80c21 32 60 129 60 190'], + 0x1D750: [444,8,483,50,444,'444 423c0 -26 -27 -26 -41 -26h-42c-119 0 -156 -75 -172 -137h171c19 0 38 0 38 -22c0 -25 -24 -25 -39 -25h-182c-6 -25 -11 -50 -11 -76c0 -104 94 -109 119 -109s56 6 116 42c10 7 12 7 16 7c13 0 19 -19 19 -30c0 -16 -56 -37 -60 -38c-47 -17 -80 -17 -94 -17 c-117 0 -232 51 -232 187c0 79 38 145 85 187c87 78 193 78 247 78h42c15 -1 20 -13 20 -21'], + 0x1D751: [702,8,692,32,655,'655 344c0 -11 -7 -22 -17 -22c-7 0 -25 4 -38 6c-47 -181 -156 -336 -307 -336c-58 0 -173 6 -173 122c0 7 0 28 12 78c3 9 16 61 20 76c9 37 23 93 23 111c0 33 -12 37 -23 37c-25 0 -48 -20 -68 -100c-6 -25 -6 -27 -8 -29c-5 -5 -9 -5 -20 -5c-9 0 -24 0 -24 14 c0 5 13 59 38 99c21 36 50 57 87 57c58 0 125 -31 125 -98c0 -12 -8 -43 -13 -64l-14 -58c-12 -44 -28 -109 -28 -135c0 -39 15 -69 74 -69c52 0 92 59 112 97c32 60 54 144 75 228c-75 23 -186 63 -186 174c0 108 94 175 170 175c61 0 154 -39 154 -206 c0 -60 -13 -118 -17 -132c18 -3 20 -3 29 -5c6 -2 17 -4 17 -15zM526 566c0 36 -7 100 -57 100c-55 0 -120 -57 -120 -137c0 -50 27 -103 148 -139c8 34 29 118 29 176'], + 0x1D752: [452,10,724,72,681,'681 128c-5 -20 -42 -136 -152 -136c-46 0 -78 25 -78 79c0 13 2 28 6 45c13 54 22 98 51 154l-351 -270c-10 -7 -19 -10 -27 -10c-21 0 -34 20 -34 42c0 14 5 28 18 38c53 62 116 179 136 260c3 11 5 23 5 35c0 27 -10 50 -37 51c-39 0 -78 -25 -95 -97 c-6 -24 -20 -28 -29 -28c-8 0 -26 3 -20 25c5 20 42 136 152 136c46 0 78 -25 78 -79c0 -13 -2 -28 -6 -45c-14 -54 -23 -98 -52 -154l352 269c6 5 13 6 19 6c12 0 22 -7 26 -13c5 -6 8 -19 8 -31c0 -13 -3 -25 -11 -31c-52 -62 -115 -179 -136 -260c-3 -11 -4 -23 -4 -35 c0 -27 9 -50 37 -51c39 0 77 25 95 97c6 24 20 28 29 28c8 0 25 -3 20 -25'], + 0x1D753: [694,202,713,56,687,'687 270c0 -129 -126 -269 -329 -281c-16 -1 -18 -1 -20 -2c0 0 -2 -2 -9 -31l-35 -140c-4 -17 -9 -18 -25 -18c-9 0 -23 0 -23 14l43 177c-147 5 -233 78 -233 185c0 127 123 269 329 281c17 1 18 2 20 3c0 0 1 2 5 15l50 198c5 21 6 23 26 23c9 0 23 0 23 -14 c0 0 0 -3 -3 -15l-52 -210c147 -5 233 -78 233 -185zM397 419c-82 -7 -140 -41 -175 -85c-52 -66 -63 -158 -63 -186c0 -81 53 -118 139 -123zM584 296c0 81 -53 118 -139 123l-99 -394c82 7 140 41 175 85c52 66 63 158 63 186'], + 0x1D754: [452,194,612,81,597,'597 285c0 -128 -102 -293 -292 -293c-80 0 -132 34 -157 77c-12 -60 -12 -77 -12 -91c0 -41 0 -57 159 -57c109 0 169 0 169 -59c0 -6 -1 -17 -6 -38c-4 -16 -7 -18 -24 -18c-8 0 -29 2 -23 16v5c-7 4 -24 4 -36 4c-20 0 -22 0 -48 -2c-38 -4 -56 -4 -76 -4 c-133 0 -170 28 -170 108c0 96 61 314 63 320c45 132 156 199 268 199c111 0 185 -59 185 -167zM483 335c0 13 0 81 -73 81c-38 0 -91 -23 -125 -83c-30 -56 -57 -180 -57 -218c0 -66 40 -87 79 -87c33 0 92 19 127 99c17 41 49 159 49 208'], + 0x1D755: [444,8,975,31,955,'955 405c0 -27 -19 -43 -26 -48c-14 -9 -21 -9 -61 -9c5 -24 5 -48 5 -53c0 -133 -116 -303 -255 -303c-81 0 -122 58 -130 145c-61 -90 -145 -145 -228 -145c-74 0 -114 57 -114 138c0 88 50 172 85 218c-59 0 -113 0 -152 -49c-9 -9 -10 -10 -25 -10 c-11 0 -23 0 -23 14c0 10 39 61 74 93c53 48 96 48 117 48h680c18 0 53 0 53 -39zM826 295c0 10 0 27 -6 53h-535c-88 -114 -88 -179 -88 -185c0 -32 20 -75 80 -75c68 0 183 51 226 195c4 12 15 12 24 12c7 0 23 0 23 -15c0 0 0 -4 -2 -11c-4 -19 -7 -41 -7 -59 c0 -55 19 -122 94 -122c78 0 191 73 191 207'], + 0x1D7CE: [655,11,575,45,529,'529 319c0 -100 -2 -330 -242 -330c-241 0 -242 231 -242 330c0 98 1 336 242 336s242 -239 242 -336zM401 331c0 82 0 188 -17 225c-19 44 -60 63 -97 63c-24 0 -94 -10 -106 -99c-8 -52 -8 -117 -8 -189c0 -55 0 -159 9 -211c13 -73 69 -95 105 -95c30 0 93 14 107 107 c7 52 7 143 7 199'], + 0x1D7CF: [655,0,575,85,494,'494 0c-44 3 -150 3 -199 3s-155 0 -199 -3v47h139v517c-59 -19 -114 -20 -130 -20h-20v47h20c21 0 124 0 201 57c9 7 11 7 22 7c26 0 26 -10 26 -32v-576h140v-47'], + 0x1D7D0: [655,0,575,57,517,'517 222l-31 -222h-429v18c0 20 0 22 13 34l201 205c70 71 108 139 108 208c0 75 -46 143 -132 143c-36 0 -74 -11 -103 -35c15 -4 57 -20 57 -72c0 -50 -40 -72 -72 -72c-24 0 -72 15 -72 74c0 90 94 152 215 152c141 0 245 -74 245 -189c0 -95 -64 -142 -178 -226 c-45 -33 -97 -76 -144 -115h147c16 0 91 0 102 6c14 7 23 71 26 91h47'], + 0x1D7D1: [655,11,575,48,526,'526 180c0 -91 -73 -191 -252 -191c-129 0 -226 60 -226 150c0 51 35 78 77 78c44 0 76 -31 76 -76c0 -41 -25 -66 -58 -75c48 -30 100 -34 126 -34c104 0 104 102 104 149c0 51 0 149 -109 149h-44c-18 0 -28 0 -28 18c0 6 2 16 12 17c5 1 7 2 48 4 c104 6 105 137 105 150c0 33 -3 97 -86 97c-31 0 -75 -8 -110 -36c4 -1 58 -12 58 -70c0 -37 -25 -69 -70 -69c-38 0 -69 27 -69 70c0 80 78 144 197 144c141 0 217 -62 217 -139c0 -86 -73 -143 -142 -164c145 -31 174 -117 174 -172'], + 0x1D7D2: [656,0,575,32,542,'542 0c-35 3 -122 3 -162 3c-43 0 -134 0 -172 -3v47h112v109h-288v47l349 437c12 15 13 16 34 16c28 0 30 -5 30 -32v-421h97v-47h-97v-109h97v-47zM331 203v310l-247 -310h247'], + 0x1D7D3: [655,11,575,57,517,'517 201c0 -122 -98 -212 -258 -212c-124 0 -202 85 -202 170c0 61 52 70 67 70c24 0 67 -15 67 -68c0 -41 -29 -65 -65 -67c42 -57 105 -62 129 -62c120 0 120 100 120 173c0 80 0 168 -89 168c-41 0 -95 -10 -134 -56c-7 -8 -9 -12 -22 -12c-22 0 -22 13 -22 31v292 c0 16 0 27 14 27c3 0 4 -1 13 -4c26 -9 79 -28 155 -28c43 0 96 6 153 28c11 4 12 4 15 4c12 0 14 -11 14 -18c0 -25 -92 -138 -238 -138c-34 0 -45 2 -73 7v-132c47 32 100 35 129 35c148 0 227 -93 227 -208'], + 0x1D7D4: [655,11,575,48,526,'526 205c0 -134 -96 -216 -235 -216c-70 0 -146 24 -193 100c-41 69 -50 149 -50 228c0 252 165 338 301 338c106 0 148 -63 148 -125c0 -38 -24 -64 -63 -64s-62 28 -62 62c0 30 18 57 54 62c-23 23 -57 26 -75 26c-61 0 -115 -36 -139 -83c-7 -15 -28 -58 -28 -172v-19 c42 76 98 76 120 76c121 0 222 -73 222 -213zM390 207c0 100 0 175 -95 175c-55 0 -109 -47 -109 -172c0 -18 0 -91 16 -123c8 -16 35 -55 87 -55c101 0 101 74 101 175'], + 0x1D7D5: [676,11,575,64,558,'558 644c0 -35 0 -37 -10 -48l-155 -180c-35 -41 -56 -100 -65 -167c-7 -47 -10 -95 -10 -143v-46c0 -66 -47 -71 -63 -71c-6 0 -62 0 -62 70c0 148 72 283 168 395c18 22 37 43 55 65h-169c-17 0 -98 0 -109 -6c-4 -2 -17 -15 -27 -91h-47l35 254h47c2 -10 3 -19 24 -23 c14 -4 161 -9 184 -9h204'], + 0x1D7D6: [655,11,575,48,526,'526 187c0 -110 -81 -198 -241 -198c-129 0 -237 51 -237 172c0 74 44 131 128 168c-78 44 -96 107 -96 151c0 96 70 175 209 175c114 0 205 -45 205 -147c0 -58 -31 -102 -101 -138c49 -28 133 -75 133 -183zM419 507c0 68 -50 109 -134 109c-40 0 -130 -7 -130 -77 c0 -34 28 -51 44 -60l150 -84c44 29 70 63 70 112zM440 132c0 48 -37 69 -81 94l-137 76c-35 -20 -88 -63 -88 -141s57 -129 155 -129c57 0 151 16 151 100'], + 0x1D7D7: [655,11,575,48,526,'526 329c0 -256 -157 -340 -287 -340c-111 0 -162 57 -162 125c0 38 24 64 63 64s62 -28 62 -62c0 -45 -37 -59 -49 -62c30 -20 66 -22 84 -22c69 0 112 45 129 84c15 34 24 93 24 166v22c-38 -70 -85 -77 -120 -77c-123 0 -222 75 -222 213c0 134 99 215 241 215 c237 0 237 -259 237 -326zM389 428c0 34 0 92 -12 125c-4 10 -27 63 -86 63c-107 0 -107 -80 -107 -178c0 -100 0 -175 95 -175c84 0 110 102 110 165'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Normal/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Operators/Regular/Main.js new file mode 100644 index 0000000..cec90f2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Operators/Regular/Main.js @@ -0,0 +1,111 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'LatinModernMathJax_Operators', + id: 'LATINMODERNOPERATORS', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x2206: [716,0,833,47,785,'785 8c0 -8 -6 -8 -22 -8h-694c-16 0 -22 0 -22 8c0 0 0 3 5 12l338 678c7 13 9 18 26 18s19 -5 26 -18l338 -678c5 -9 5 -12 5 -12zM653 76l-269 540l-270 -540h539'], + 0x220A: [443,-57,498,56,442,'442 77c0 -11 -9 -20 -20 -20h-173c-106 0 -193 86 -193 193s87 193 193 193h173c11 0 20 -9 20 -20s-9 -20 -20 -20h-173c-78 0 -142 -58 -152 -133h325c27 0 27 -40 0 -40h-325c10 -75 74 -133 152 -133h173c11 0 20 -9 20 -20'], + 0x220C: [730,230,667,80,587,'587 250c0 -162 -131 -293 -293 -293h-45l-64 -174c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l58 160h-105c-11 0 -20 9 -20 20s9 20 20 20h120l84 233h-204c-27 0 -27 40 0 40h219l77 211c-32 14 -66 22 -103 22h-193c-11 0 -20 9 -20 20s9 20 20 20h193 c41 0 81 -9 117 -24l72 198c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-74 -203c85 -51 141 -144 141 -250zM546 270c-6 80 -50 150 -114 192l-69 -192h183zM546 230h-198l-85 -233h31c133 0 242 103 252 233'], + 0x220E: [554,0,666,56,610,'610 20c0 -11 -9 -20 -20 -20h-514c-11 0 -20 9 -20 20v514c0 11 9 20 20 20h514c11 0 20 -9 20 -20v-514'], + 0x220F: [750,250,944,56,887,'887 -250h-303v40c103 0 103 49 103 79v841h-431v-841c0 -30 0 -79 103 -79v-40h-303v40c103 0 103 49 103 79v762c0 30 0 79 -103 79v40h831v-40c-103 0 -103 -49 -103 -79v-762c0 -30 0 -79 103 -79v-40'], + 0x2210: [750,250,944,56,887,'887 -250h-831v40c103 0 103 49 103 79v762c0 30 0 79 -103 79v40h303v-40c-103 0 -103 -49 -103 -79v-841h431v841c0 30 0 79 -103 79v40h303v-40c-103 0 -103 -49 -103 -79v-762c0 -30 0 -79 103 -79v-40'], + 0x2211: [750,250,1056,56,999,'999 -1l-86 -249h-829c-18 0 -27 0 -27 11c0 4 1 6 9 16l355 439l-365 502c0 31 1 32 28 32h829l86 -234h-25c-70 187 -300 194 -414 194h-396l325 -446c6 -9 7 -10 7 -14s-2 -7 -9 -16l-347 -429h425c147 0 216 24 232 29c85 29 152 90 177 165h25'], + 0x221F: [679,-13,778,56,722,'722 33c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20v626c0 11 9 20 20 20s20 -9 20 -20v-606h606c11 0 20 -9 20 -20'], + 0x222C: [805,306,1035,56,979,'609 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41 c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83zM979 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249 c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83'], + 0x222D: [805,306,1405,56,1349,'609 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41 c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83zM979 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249 c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83zM1349 722 c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41 c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83'], + 0x222E: [805,306,665,56,609,'609 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-9 -123c87 -25 152 -106 152 -202c0 -110 -85 -200 -193 -209c-10 -78 -20 -146 -26 -169c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83 c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l9 123c-87 25 -151 106 -151 201c0 111 84 201 192 210c11 80 21 149 26 173c17 76 56 173 151 173c60 0 110 -35 110 -83zM510 249c0 75 -49 139 -115 161l-7 -85 l-26 -244c83 11 148 82 148 168zM317 418c-83 -11 -147 -82 -147 -169c0 -74 48 -137 114 -160l7 85'], + 0x222F: [805,306,1035,56,979,'979 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-12 -159c94 -39 155 -100 155 -166c0 -73 -76 -140 -189 -178c-12 -91 -24 -174 -30 -200c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83 c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l10 126c-40 -7 -83 -12 -127 -12c-60 0 -116 8 -166 20c-11 -86 -22 -164 -28 -188c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43 c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l12 159c-94 39 -154 100 -154 165c0 74 75 141 188 179c12 92 24 177 30 204c17 76 56 173 151 173c60 0 110 -35 110 -83c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41 c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-10 -126c40 7 83 11 128 11c59 0 115 -7 165 -19c11 87 22 166 28 192c17 76 56 173 151 173c60 0 110 -35 110 -83zM880 249c0 53 -46 98 -118 128l-4 -52l-22 -213c87 30 144 79 144 137zM313 387 c-87 -30 -143 -79 -143 -138c0 -52 45 -97 117 -127l4 52zM685 402c-48 11 -103 17 -160 17c-46 0 -90 -4 -131 -11l-6 -83l-24 -228c48 -11 103 -18 161 -18c45 0 89 5 130 12l6 83'], + 0x2230: [805,306,1405,56,1349,'1349 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-13 -165c33 -11 60 -24 82 -39c49 -32 74 -73 74 -121c0 -47 -25 -88 -74 -120c-29 -20 -67 -36 -114 -49c-12 -95 -24 -183 -31 -209 c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l10 137h-2c-80 -14 -178 -22 -293 -22c-10 -79 -20 -146 -26 -169c-22 -90 -70 -177 -165 -177 c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l9 115c-98 2 -182 9 -252 22l-38 7c-12 -90 -24 -173 -30 -198c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43 c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l13 165c-33 11 -60 24 -82 39c-49 32 -73 73 -73 120c0 48 24 89 73 121c29 20 67 36 114 49c12 96 25 185 31 213c17 76 56 173 151 173c60 0 110 -35 110 -83c0 -30 -22 -43 -42 -43 c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-10 -137h2c80 14 178 22 293 22c11 80 21 149 26 173c17 76 56 173 151 173c60 0 110 -35 110 -83c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21 c-45 0 -79 -25 -93 -209l-9 -115c98 -2 182 -9 252 -22l39 -7c11 92 23 175 29 202c17 76 56 173 151 173c60 0 110 -35 110 -83zM1250 249c0 35 -20 64 -56 88c-17 11 -38 22 -63 31l-3 -43l-21 -202c35 11 64 24 87 39c36 24 56 53 56 87zM312 376 c-35 -11 -64 -24 -87 -39c-36 -24 -55 -53 -55 -88c0 -34 19 -63 55 -87c17 -11 38 -22 63 -31l3 43zM687 419c-110 0 -204 -8 -281 -21l-13 -2l-5 -71l-23 -216l41 -8c69 -12 152 -19 248 -21l7 94zM1054 390l-41 8c-69 12 -152 19 -248 21l-7 -94l-26 -245 c110 0 204 8 281 21l13 2l5 71'], + 0x2231: [805,306,695,56,667,'667 346c1 -7 -2 -15 -9 -19c-30 -21 -50 -53 -54 -89c-1 -9 -8 -16 -17 -17c-9 -2 -17 3 -21 10c-17 32 -46 56 -82 65c-7 2 -13 8 -14 16c-2 11 5 21 16 23h8c21 -6 41 -15 58 -27c-21 74 -79 133 -154 154l-10 -137c-8 -111 -44 -402 -57 -454 c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249l33 295c-114 -8 -204 -103 -204 -220c0 -11 -9 -20 -20 -20c-12 0 -20 9 -20 20c0 140 110 255 249 260 c8 58 15 104 19 123c17 76 56 173 151 173c60 0 110 -35 110 -83c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-5 -72c92 -23 165 -95 189 -187c12 17 27 32 45 45c2 1 5 2 8 3c10 2 21 -6 23 -17'], + 0x2232: [805,306,700,56,672,'671 332c4 -11 -1 -22 -12 -26c-2 -1 -5 -2 -8 -1c-22 1 -42 7 -61 16c6 -23 10 -47 10 -72c0 -139 -111 -254 -250 -259c-8 -56 -15 -101 -19 -119c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41 c21 -18 51 -21 64 -21c57 0 93 45 106 209l5 72c-113 28 -197 130 -197 252c0 140 110 255 249 260c8 58 15 104 19 123c17 76 56 173 151 173c60 0 110 -35 110 -83c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21 c-45 0 -79 -25 -93 -209l-5 -72c33 -8 64 -23 91 -43c5 -3 8 -9 8 -16c0 -11 -9 -20 -20 -20c-4 0 -8 2 -12 4c-21 16 -45 27 -71 35l-10 -137l-32 -295c114 8 204 103 204 219c0 20 -3 39 -8 57c-8 -19 -20 -37 -35 -52c-2 -2 -5 -3 -7 -4c-11 -4 -22 1 -26 11 c-3 8 -1 16 4 21c26 26 40 61 38 98c-1 8 4 16 13 19c8 3 17 1 22 -6c23 -28 56 -46 93 -48c7 -1 14 -6 17 -13zM324 469c-114 -8 -204 -103 -204 -220c0 -101 68 -186 161 -212l10 137'], + 0x2233: [805,306,682,56,644,'643 407c3 -8 1 -16 -5 -22c-25 -25 -39 -61 -37 -97c0 -8 -5 -17 -13 -20s-17 0 -23 7c-22 28 -56 46 -92 48c-7 0 -14 5 -17 13c-4 10 1 22 11 26c3 1 6 1 9 1c21 -2 42 -7 61 -16c-28 55 -78 98 -139 115l-10 -137l-32 -295c96 7 175 76 197 167c2 8 10 15 20 15 c11 0 20 -9 20 -20c0 -2 -1 -3 -1 -5c-27 -110 -125 -193 -242 -197c-8 -56 -15 -101 -19 -119c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l5 72 c-113 28 -197 130 -197 252c0 140 110 255 249 260c8 58 15 104 19 123c17 76 56 173 151 173c60 0 110 -35 110 -83c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-5 -72c76 -19 139 -71 172 -141 c9 19 21 37 36 53c2 2 4 3 7 4c10 4 22 -1 26 -11zM324 469c-114 -8 -204 -103 -204 -220c0 -101 68 -186 161 -212l10 137'], + 0x2236: [422,-78,278,86,192,'192 369c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM192 131c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2237: [422,-78,516,86,430,'192 369c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM192 131c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM430 369c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM430 131c0 -29 -24 -53 -53 -53 s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2238: [504,-230,778,56,722,'722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM442 451c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2239: [422,-78,906,56,850,'616 250c0 -11 -9 -20 -20 -20h-520c-11 0 -20 9 -20 20s9 20 20 20h520c11 0 20 -9 20 -20zM850 369c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM850 131c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x223A: [504,4,778,56,722,'722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM162 451c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM162 49c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM722 451 c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM722 49c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x223B: [536,36,773,56,717,'717 354c-4 -116 -34 -183 -119 -211c-15 -4 -30 -7 -45 -7c-66 0 -130 46 -184 95c-44 39 -93 81 -146 81c-10 0 -21 -1 -31 -5c-70 -23 -109 -67 -112 -161c0 -7 -6 -12 -12 -12c-7 0 -12 5 -12 12c4 116 34 183 120 211c14 4 29 7 44 7c66 0 130 -46 184 -95 c44 -39 93 -81 146 -81c11 0 21 1 32 5c69 23 108 67 111 161c0 7 6 12 12 12c7 0 12 -5 12 -12zM440 483c0 -29 -24 -53 -53 -53c-30 0 -53 24 -53 53s23 53 53 53c29 0 53 -24 53 -53zM440 17c0 -29 -24 -53 -53 -53c-30 0 -53 24 -53 53s23 53 53 53c29 0 53 -24 53 -53'], + 0x223E: [466,-34,901,56,845,'845 232c0 -64 -32 -131 -102 -175c-25 -16 -51 -23 -78 -23c-92 0 -186 89 -244 201c-44 86 -110 167 -178 167c-16 0 -33 -4 -50 -15c-58 -37 -87 -94 -87 -148c0 -59 35 -114 106 -131c5 -2 9 -6 9 -12c0 -7 -6 -12 -12 -12h-3c-97 25 -150 103 -150 184 c0 64 33 131 102 175c25 16 52 23 78 23c93 0 186 -89 244 -201c44 -86 110 -167 178 -167c17 0 33 4 50 15c58 37 87 94 87 148c0 59 -35 114 -105 131c-5 2 -9 6 -9 12c0 7 5 12 12 12h3c96 -25 149 -103 149 -184'], + 0x223F: [492,-8,778,56,722,'722 250v-4c-35 -166 -87 -238 -176 -238c-111 0 -168 118 -189 236c-16 86 -44 182 -124 182c-69 0 -111 -54 -137 -180c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4c35 166 87 238 177 238c110 0 167 -118 188 -236c16 -86 44 -182 125 -182c68 0 110 54 136 180 c2 9 10 16 20 16c11 0 20 -9 20 -20'], + 0x2244: [603,103,778,56,722,'722 140c0 -11 -9 -20 -20 -20h-339l-76 -210c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l71 196h-244c-11 0 -20 9 -20 20s9 20 20 20h259l59 162l-22 18c-43 37 -91 76 -143 76c-9 0 -19 -1 -29 -4c-68 -20 -109 -61 -118 -148c0 -6 -5 -11 -12 -11 c-6 0 -12 5 -12 13c11 108 43 171 127 196c14 4 28 6 41 6c65 0 126 -43 180 -88l7 -6l78 216c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-83 -229c32 -24 66 -43 103 -43c9 0 19 1 29 4c68 20 109 61 118 148c0 6 5 11 12 11c6 0 12 -5 12 -13 c-11 -108 -43 -171 -127 -196c-14 -4 -28 -6 -41 -6c-44 0 -86 19 -124 46l-50 -138h324c11 0 20 -9 20 -20'], + 0x2247: [603,103,778,56,722,'722 56c0 -11 -9 -20 -20 -20h-369l-46 -126c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l41 112h-214c-11 0 -20 9 -20 20s9 20 20 20h228l56 154h-284c-11 0 -20 9 -20 20s9 20 20 20h299l43 118c-16 11 -31 24 -46 36c-43 37 -91 76 -143 76 c-9 0 -19 -1 -29 -4c-68 -20 -109 -61 -118 -148c0 -6 -5 -11 -12 -11c-6 0 -12 5 -12 13c11 108 43 171 127 196c14 4 28 6 41 6c65 0 126 -43 180 -88l30 -25l55 151c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-59 -162c25 -15 51 -26 79 -26c9 0 19 1 29 4 c68 20 109 61 118 148c0 6 5 11 12 11c6 0 12 -5 12 -13c-11 -108 -43 -171 -127 -196c-14 -4 -28 -6 -41 -6c-35 0 -68 12 -100 30l-34 -96h284c11 0 20 -9 20 -20s-9 -20 -20 -20h-299l-56 -154h355c11 0 20 -9 20 -20'], + 0x2249: [603,103,773,56,717,'717 218v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-62 0 -120 37 -172 76l-8 6l-79 -215c-2 -8 -10 -13 -18 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l82 226c-31 20 -63 36 -96 36c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124c-1 -5 -6 -9 -12 -9 c-7 0 -12 5 -12 12v2c20 93 56 149 139 169c12 3 24 4 35 4c41 0 80 -16 117 -38l45 125l-21 15c-43 32 -89 67 -138 67c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169c12 3 24 4 35 4c62 0 120 -37 172 -76 l9 -6l78 215c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-82 -226c31 -20 63 -36 97 -36c8 0 16 1 25 3c67 17 111 49 127 124c2 5 6 9 12 9c7 0 12 -5 12 -12v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-41 0 -80 16 -117 38l-45 -125l21 -15 c43 -32 89 -67 139 -67c8 0 16 1 25 3c67 17 111 49 127 124c2 5 6 9 12 9c7 0 12 -5 12 -12'], + 0x224B: [541,41,773,56,717,'717 522v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-62 0 -120 37 -172 76c-43 32 -89 67 -138 67c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169c12 3 24 4 35 4c62 0 120 -37 172 -76 c43 -32 89 -67 139 -67c8 0 16 1 25 3c67 17 111 49 127 124c2 5 6 9 12 9c7 0 12 -5 12 -12zM717 328v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4c-62 0 -120 37 -172 76c-43 32 -89 67 -138 67c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124 c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169c12 3 24 4 35 4c62 0 120 -37 172 -76c43 -32 89 -67 139 -67c8 0 16 1 25 3c67 17 111 49 127 124c2 5 6 9 12 9c7 0 12 -5 12 -12zM717 134v-2c-20 -93 -56 -149 -139 -169c-11 -3 -23 -4 -35 -4 c-62 0 -120 37 -172 76c-43 32 -89 67 -138 67c-9 0 -17 -1 -26 -3c-67 -17 -111 -49 -127 -124c-1 -5 -6 -9 -12 -9c-7 0 -12 5 -12 12v2c20 93 56 149 139 169c12 3 24 4 35 4c62 0 120 -37 172 -76c43 -32 89 -67 139 -67c8 0 16 1 25 3c67 17 111 49 127 124 c2 5 6 9 12 9c7 0 12 -5 12 -12'], + 0x224C: [541,-36,778,56,722,'720 366c0 -7 -6 -12 -12 -12s-11 4 -12 9c-17 75 -60 107 -128 124c-8 2 -17 3 -25 3c-50 0 -96 -35 -138 -67c-52 -39 -111 -76 -172 -76c-12 0 -24 1 -36 4c-83 20 -118 76 -138 169c-1 1 -1 2 -1 2c0 7 6 12 12 12s11 -4 12 -9c17 -75 60 -107 128 -124 c8 -2 17 -3 25 -3c50 0 96 35 138 67c52 39 111 76 172 76c12 0 24 -1 36 -4c83 -20 118 -76 138 -169c1 -1 1 -2 1 -2zM722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 56c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20 s9 20 20 20h626c11 0 20 -9 20 -20'], + 0x2254: [422,-78,906,56,850,'850 347c0 -11 -9 -20 -20 -20h-520c-11 0 -20 9 -20 20s9 20 20 20h520c11 0 20 -9 20 -20zM850 153c0 -11 -9 -20 -20 -20h-520c-11 0 -20 9 -20 20s9 20 20 20h520c11 0 20 -9 20 -20zM162 369c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53z M162 131c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2255: [422,-78,906,56,850,'616 347c0 -11 -9 -20 -20 -20h-520c-11 0 -20 9 -20 20s9 20 20 20h520c11 0 20 -9 20 -20zM616 153c0 -11 -9 -20 -20 -20h-520c-11 0 -20 9 -20 20s9 20 20 20h520c11 0 20 -9 20 -20zM850 369c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53z M850 131c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x2258: [619,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 468c0 -11 -9 -20 -20 -20c-6 0 -11 3 -14 6c-79 80 -187 125 -299 125 s-220 -45 -299 -125c-3 -3 -8 -6 -14 -6c-11 0 -20 9 -20 20c0 6 2 11 6 14c86 88 204 137 327 137s241 -49 327 -137c4 -3 6 -8 6 -14'], + 0x2259: [752,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM546 505c14 -23 -21 -43 -34 -20l-123 210l-123 -210c-13 -23 -48 -3 -34 20 l137 235c9 16 31 16 40 0'], + 0x225A: [752,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM546 722l-137 -236c-9 -15 -31 -15 -40 0l-137 236c-14 23 21 43 34 20l123 -211 l123 211c13 23 48 3 34 -20'], + 0x225B: [810,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM560 686c1 -4 0 -7 -3 -9l-118 -63l58 -121c2 -3 1 -7 -2 -9s-7 -1 -9 1l-97 92 l-97 -92c-2 -2 -6 -3 -9 -1s-4 6 -2 9l58 121l-118 63c-3 2 -4 5 -3 9c1 3 4 5 8 5l132 -18l24 131c1 4 4 6 7 6s6 -2 7 -6l24 -131l132 18c4 0 7 -2 8 -5'], + 0x225D: [793,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM306 495l-80 -5v21c-14 -10 -35 -21 -64 -21c-64 0 -104 46 -104 98 c0 55 44 98 109 98c28 0 48 -9 60 -17v70c0 17 -4 18 -34 18v28l79 4v-248c0 -16 4 -18 34 -18v-28zM226 547v89c-18 25 -45 27 -56 27c-19 0 -31 -7 -44 -21c-17 -18 -17 -44 -17 -54c0 -12 1 -34 13 -50c13 -17 23 -24 42 -24c16 0 43 6 62 33zM528 549 c0 -9 -22 -59 -91 -59c-65 0 -109 46 -109 100c0 52 37 99 103 99c81 0 97 -58 97 -87c0 -14 -6 -14 -18 -14h-131c0 -13 1 -33 14 -49c7 -6 16 -23 47 -23c21 0 49 9 60 34c4 9 5 11 14 11c4 0 14 -1 14 -12zM486 610c-1 16 -8 56 -55 56c-17 0 -44 -11 -50 -56h105z M720 754c0 -15 -9 -26 -26 -26c-16 0 -25 11 -25 25c0 7 3 12 7 16h-4c-17 0 -31 -15 -31 -49v-40h60v-28h-59v-118c0 -11 1 -13 27 -13h16v-26h-121v26h12c21 0 22 2 22 12v119h-40v28h40v40c0 48 36 73 75 73c31 0 47 -19 47 -39'], + 0x225E: [684,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM580 495h-114v26h12c21 0 22 2 22 12v90c0 23 -6 38 -33 38 c-23 0 -55 -15 -55 -57v-71c0 -10 1 -12 22 -12h12v-26h-114v26h12c21 0 22 2 22 12v90c0 23 -6 38 -32 38c-25 0 -56 -14 -56 -57v-71c0 -10 1 -12 22 -12h12v-26h-114v26h12c21 0 22 2 22 12v101c0 17 -4 18 -34 18v28l77 4v-29c11 15 28 29 63 29c15 0 54 0 69 -32 c11 18 28 32 65 32c33 0 74 -7 74 -62v-89c0 -10 1 -12 22 -12h12v-26'], + 0x225F: [803,-133,778,56,722,'722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM483 736c0 -24 -20 -45 -35 -57c-28 -21 -55 -29 -55 -73v-11 c0 -11 -1 -18 -13 -18c-6 0 -15 -1 -15 10v14c0 31 10 68 49 99c8 7 17 25 17 32c0 11 1 46 -45 46c-7 0 -32 0 -51 -14c9 -4 15 -13 15 -24c0 -18 -15 -28 -28 -28c-10 0 -27 7 -27 29c0 32 26 62 91 62c91 0 97 -51 97 -67zM410 511c0 -17 -14 -31 -30 -31 c-17 0 -32 14 -32 31s15 31 32 31s30 -14 30 -31'], + 0x2262: [730,230,778,56,722,'722 56c0 -11 -9 -20 -20 -20h-370l-92 -253c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l87 239h-214c-11 0 -20 9 -20 20s9 20 20 20h228l56 154h-284c-11 0 -20 9 -20 20s9 20 20 20h299l56 154h-355c-11 0 -20 9 -20 20s9 20 20 20h370l92 253 c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-87 -239h214c11 0 20 -9 20 -20s-9 -20 -20 -20h-228l-56 -154h284c11 0 20 -9 20 -20s-9 -20 -20 -20h-299l-56 -154h355c11 0 20 -9 20 -20'], + 0x2263: [561,61,778,56,722,'722 541c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626 c11 0 20 -9 20 -20zM722 -41c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20'], + 0x226D: [730,230,778,56,722,'722 22c0 -11 -9 -20 -20 -20c-6 0 -11 2 -14 6c-79 80 -187 125 -299 125l-22 -1l-127 -349c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l120 331c-88 -14 -169 -56 -233 -120c-3 -4 -8 -6 -14 -6c-11 0 -20 9 -20 20c0 6 2 11 6 14c74 76 172 123 277 134 l57 157h-7c-123 0 -241 49 -327 137c-4 3 -6 8 -6 14c0 11 9 20 20 20c6 0 11 -2 14 -6c79 -80 187 -125 299 -125l22 1l127 349c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-120 -331c88 14 169 56 233 120c3 4 8 6 14 6c11 0 20 -9 20 -20c0 -6 -2 -11 -6 -14 c-74 -76 -172 -123 -277 -134l-57 -157h7c123 0 241 -49 327 -137c4 -3 6 -8 6 -14'], + 0x2274: [691,191,776,55,719,'718 51v-2c-20 -93 -56 -149 -138 -169c-12 -3 -24 -5 -36 -5c-61 0 -120 38 -172 77c-18 14 -37 28 -57 40l-61 -169c-3 -8 -11 -14 -19 -14c-11 0 -20 9 -20 20c0 3 0 5 1 7l63 174c-15 5 -30 8 -45 8c-9 0 -17 0 -26 -3c-67 -16 -111 -48 -127 -123 c-1 -6 -6 -10 -12 -10s-12 6 -12 12v3c21 93 56 149 139 169c12 3 24 4 35 4c23 0 44 -5 65 -13l72 198l-298 110c-19 7 -19 34 0 40l408 151l44 121c3 8 10 14 19 14c11 0 20 -9 20 -20c0 -3 -1 -5 -1 -7l-33 -90l166 61c25 9 38 -28 13 -37l-197 -73l-89 -246l286 -106 c25 -9 12 -47 -13 -37l-287 105l-73 -201c24 -13 48 -29 70 -46c43 -32 89 -67 139 -67c8 0 17 1 25 3c67 17 111 48 128 124c1 5 6 9 11 9c7 0 12 -5 12 -12zM460 507l-329 -122l251 -92'], + 0x2275: [691,191,776,55,719,'718 51v-2c-20 -93 -56 -149 -138 -169c-12 -3 -24 -5 -36 -5c-61 0 -120 38 -172 77c-18 14 -37 28 -57 40l-61 -169c-3 -8 -11 -14 -19 -14c-11 0 -20 9 -20 20c0 3 0 5 1 7l63 174c-15 5 -30 8 -45 8c-9 0 -17 0 -26 -3c-67 -16 -111 -48 -127 -123 c-1 -6 -6 -10 -12 -10s-12 6 -12 12v3c21 93 56 149 139 169c12 3 24 4 35 4c23 0 44 -5 65 -13l66 182l-279 -103c-25 -10 -39 28 -14 37l311 115l63 172l-374 138c-25 9 -11 46 14 37l374 -138l65 180c3 8 10 14 19 14c11 0 20 -9 20 -20c0 -3 -1 -5 -1 -7l-66 -181 l212 -78c18 -6 18 -33 0 -40l-294 -108l-79 -217c24 -13 48 -29 70 -46c43 -32 89 -67 139 -67c8 0 17 1 25 3c67 17 111 48 128 124c1 5 6 9 11 9c7 0 12 -5 12 -12zM644 385l-164 61l-50 -140'], + 0x2278: [776,276,778,76,701,'690 221c24 -11 8 -48 -16 -37l-248 109l-37 -102l297 -130c18 -8 18 -33 0 -40l-428 -188l-35 -96c-2 -8 -10 -13 -18 -13c-12 0 -20 8 -20 20c0 2 0 4 1 6l22 61l-104 -46c-24 -10 -40 26 -16 37l139 61l111 307l-250 109c-24 11 -8 48 16 37l248 -109l37 102l-297 130 c-18 8 -18 33 0 40l428 188l35 96c2 8 10 13 19 13c11 0 20 -8 20 -20c0 -2 -1 -4 -2 -6l-22 -61l104 46c24 10 40 -26 16 -37l-139 -61l-111 -307zM501 615l-355 -156l257 -113zM632 41l-257 113l-98 -269'], + 0x2279: [776,276,778,76,701,'690 -198c24 -11 8 -47 -16 -37l-380 167l-71 -195c-2 -8 -10 -13 -19 -13c-11 0 -20 8 -20 20c0 2 1 4 2 6l72 198l-166 73c-18 7 -18 32 0 40l246 108l51 140l-285 -125c-24 -11 -40 26 -16 37l320 140l62 169l-382 168c-24 11 -8 47 16 37l380 -167l71 195 c2 8 10 13 18 13c12 0 20 -8 20 -20c0 -2 0 -4 -1 -6l-72 -198l166 -73c18 -7 18 -32 0 -40l-246 -108l-51 -140l285 125c24 11 40 -26 16 -37l-320 -140l-62 -169zM632 459l-125 55l-48 -131zM319 117l-173 -76l125 -55'], + 0x2284: [730,230,778,85,693,'693 -23c0 -11 -9 -20 -20 -20h-295c-18 0 -36 2 -53 5l-65 -179c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l63 175c-117 38 -201 148 -201 278c0 162 131 293 293 293h116l64 174c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-58 -160h136 c11 0 20 -9 20 -20s-9 -20 -20 -20h-151l-183 -503c13 -2 26 -3 39 -3h295c11 0 20 -9 20 -20zM480 503h-102c-140 0 -253 -113 -253 -253c0 -112 73 -208 175 -241'], + 0x2285: [730,230,778,85,693,'693 250c0 -162 -131 -293 -293 -293h-116l-64 -174c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l58 160h-136c-11 0 -20 9 -20 20s9 20 20 20h151l183 503c-13 2 -26 3 -39 3h-295c-11 0 -20 9 -20 20s9 20 20 20h295c18 0 36 -2 53 -5l65 179 c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-63 -175c117 -38 201 -148 201 -278zM653 250c0 112 -73 208 -175 241l-180 -494h102c140 0 253 113 253 253'], + 0x228C: [604,20,667,61,607,'607 202c0 -121 -121 -222 -273 -222s-273 101 -273 222v382c0 11 9 20 20 20s20 -9 20 -20v-382c0 -102 105 -182 233 -182s233 80 233 182v382c0 11 9 20 20 20s20 -9 20 -20v-382zM486 292c0 -8 -7 -15 -15 -15h-205c19 -16 35 -36 45 -59c1 -2 2 -4 2 -6 c0 -8 -7 -15 -15 -15c-7 0 -12 4 -14 9c-16 34 -45 60 -81 72c-6 2 -10 7 -10 14s4 12 10 14c36 12 65 38 81 72c2 5 7 9 14 9c8 0 15 -7 15 -15c0 -2 -1 -4 -2 -6c-10 -23 -26 -43 -45 -59h205c8 0 15 -7 15 -15'], + 0x228D: [604,20,667,61,607,'607 202c0 -121 -121 -222 -273 -222s-273 101 -273 222v382c0 11 9 20 20 20s20 -9 20 -20v-382c0 -102 105 -182 233 -182s233 80 233 182v382c0 11 9 20 20 20s20 -9 20 -20v-382zM387 292c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53'], + 0x229C: [592,92,796,56,740,'740 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342zM700 250c0 167 -135 302 -302 302s-302 -135 -302 -302s135 -302 302 -302s302 135 302 302zM631 166c0 -11 -9 -20 -20 -20h-426c-11 0 -20 9 -20 20s9 20 20 20h426 c11 0 20 -9 20 -20zM631 334c0 -11 -9 -20 -20 -20h-426c-11 0 -20 9 -20 20s9 20 20 20h426c11 0 20 -9 20 -20'], + 0x22A6: [684,0,445,56,389,'389 342c0 -11 -9 -20 -20 -20h-273v-302c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-302h273c11 0 20 -9 20 -20'], + 0x22A7: [684,0,445,56,389,'389 245c0 -11 -9 -20 -20 -20h-273v-205c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-205h273c11 0 20 -9 20 -20s-9 -20 -20 -20h-273v-154h273c11 0 20 -9 20 -20'], + 0x22AB: [684,0,653,56,597,'96 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-644zM597 245c0 -11 -9 -20 -20 -20h-313v-205c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-205h313c11 0 20 -9 20 -20s-9 -20 -20 -20h-313v-154h313 c11 0 20 -9 20 -20'], + 0x22B6: [400,-100,1078,56,1022,'1022 250c0 -83 -67 -150 -150 -150c-76 0 -139 57 -149 130h-368c-10 -73 -73 -130 -149 -130c-83 0 -150 67 -150 150s67 150 150 150c76 0 139 -57 149 -130h368c10 73 73 130 149 130c83 0 150 -67 150 -150zM316 250c0 61 -49 110 -110 110s-110 -49 -110 -110 s49 -110 110 -110s110 49 110 110'], + 0x22B7: [400,-100,1078,56,1022,'1022 250c0 -83 -67 -150 -150 -150c-76 0 -139 57 -149 130h-368c-10 -73 -73 -130 -149 -130c-83 0 -150 67 -150 150s67 150 150 150c76 0 139 -57 149 -130h368c10 73 73 130 149 130c83 0 150 -67 150 -150zM982 250c0 61 -49 110 -110 110s-110 -49 -110 -110 s49 -110 110 -110s110 49 110 110'], + 0x22B9: [603,103,818,56,762,'762 250c0 -11 -9 -20 -20 -20h-236c-11 0 -20 9 -20 20s9 20 20 20h236c11 0 20 -9 20 -20zM429 347c0 -11 -9 -20 -20 -20s-20 9 -20 20v236c0 11 9 20 20 20s20 -9 20 -20v-236zM332 250c0 -11 -9 -20 -20 -20h-236c-11 0 -20 9 -20 20s9 20 20 20h236 c11 0 20 -9 20 -20zM429 -83c0 -11 -9 -20 -20 -20s-20 9 -20 20v236c0 11 9 20 20 20s20 -9 20 -20v-236'], + 0x22BD: [684,17,642,55,585,'583 540l-243 -544c-7 -18 -32 -18 -40 0l-242 544c-11 24 25 41 36 16l226 -507l227 507c11 25 47 8 36 -16zM585 664c0 -11 -9 -20 -20 -20h-489c-11 0 -20 9 -20 20s9 20 20 20h489c11 0 20 -9 20 -20'], + 0x22BE: [679,109,900,56,844,'844 33c0 -11 -9 -20 -20 -20h-136c-2 -35 -8 -71 -17 -107c-2 -8 -10 -15 -19 -15c-12 0 -20 9 -20 20v6c9 32 14 64 15 96h-449c-11 0 -20 9 -20 20v449c-32 -1 -64 -6 -96 -15h-6c-11 0 -20 8 -20 20c0 9 7 17 15 19c36 9 72 15 107 17v136c0 11 9 20 20 20 s20 -9 20 -20v-136c253 -10 460 -217 470 -470h136c11 0 20 -9 20 -20zM648 53c-10 231 -199 420 -430 430v-430h430'], + 0x22BF: [679,-13,778,56,722,'722 33c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20c0 6 2 11 6 14l626 626c3 4 8 6 14 6c11 0 20 -9 20 -20v-626zM682 611l-558 -558h558v558'], + 0x22C0: [780,264,833,51,781,'780 -226c13 -36 -42 -55 -55 -19l-309 892l-309 -892c-12 -36 -67 -17 -54 19l343 992c7 19 34 19 40 0'], + 0x22C1: [764,280,833,51,781,'780 726l-344 -992c-6 -19 -33 -19 -40 0l-343 992c-13 36 42 55 54 19l309 -892l309 892c13 36 68 17 55 -19'], + 0x22C2: [772,250,833,50,784,'784 -221c0 -16 -13 -29 -29 -29s-29 13 -29 29v694c0 135 -140 241 -309 241s-309 -106 -309 -241v-694c0 -16 -13 -29 -29 -29s-29 13 -29 29v694c0 163 163 299 367 299s367 -136 367 -299v-694'], + 0x22C3: [750,272,833,50,784,'784 27c0 -163 -163 -299 -367 -299s-367 136 -367 299v694c0 16 13 29 29 29s29 -13 29 -29v-694c0 -135 140 -241 309 -241s309 106 309 241v694c0 16 13 29 29 29s29 -13 29 -29v-694'], + 0x22C7: [586,86,802,56,745,'740 -81c-8 -7 -21 -7 -29 0l-302 303l-302 -303c-8 -7 -21 -7 -29 0c-7 8 -7 21 0 29l283 282h-285c-11 0 -20 9 -20 20s9 20 20 20h285l-283 282c-7 8 -7 21 0 29c8 7 21 7 29 0l302 -303l302 303c8 7 21 7 29 0c7 -8 7 -21 0 -29l-283 -282h245c11 0 20 -9 20 -20 s-9 -20 -20 -20h-245l283 -282c7 -8 7 -21 0 -29zM462 -7c0 -30 -24 -53 -53 -53s-53 23 -53 53c0 29 24 53 53 53s53 -24 53 -53zM462 507c0 -29 -24 -53 -53 -53s-53 24 -53 53c0 30 24 53 53 53s53 -23 53 -53'], + 0x22D5: [750,250,778,56,722,'722 140c0 -11 -9 -20 -20 -20h-196v-350c0 -11 -9 -20 -20 -20s-20 9 -20 20v350h-154v-350c0 -11 -9 -20 -20 -20s-20 9 -20 20v350h-196c-11 0 -20 9 -20 20s9 20 20 20h196v180h-196c-11 0 -20 9 -20 20s9 20 20 20h196v350c0 11 9 20 20 20s20 -9 20 -20v-350h154 v350c0 11 9 20 20 20s20 -9 20 -20v-350h196c11 0 20 -9 20 -20s-9 -20 -20 -20h-196v-180h196c11 0 20 -9 20 -20zM466 340h-154v-180h154v180'], + 0x22DC: [631,119,778,76,702,'690 -81c24 -11 7 -47 -17 -36l-582 275c-17 8 -17 32 0 40l582 275c24 11 41 -25 17 -36l-547 -259zM702 611c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x22DD: [631,119,778,76,702,'687 158l-582 -275c-24 -11 -41 25 -17 36l547 259l-547 259c-24 11 -7 47 17 36l582 -275c17 -8 17 -32 0 -40zM702 611c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20'], + 0x22E2: [730,230,778,76,702,'702 -107c0 -11 -9 -20 -20 -20h-409l-33 -90c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l27 76h-134c-11 0 -20 9 -20 20s9 20 20 20h149l47 128h-196c-11 0 -20 9 -20 20v546c0 11 9 20 20 20h409l33 90c2 8 10 13 19 13c11 0 20 -9 20 -20 c0 -2 -1 -5 -2 -7l-27 -76h134c11 0 20 -9 20 -20s-9 -20 -20 -20h-149l-184 -506h333c11 0 20 -9 20 -20s-9 -20 -20 -20h-348l-46 -128h394c11 0 20 -9 20 -20zM490 587h-374v-506h190'], + 0x22E3: [730,230,778,76,702,'702 -107c0 -11 -9 -20 -20 -20h-409l-33 -90c-2 -8 -10 -13 -18 -13c-12 0 -20 9 -20 20c0 2 0 5 1 7l27 76h-134c-11 0 -20 9 -20 20s9 20 20 20h149l47 128h-196c-11 0 -20 9 -20 20s9 20 20 20h210l184 506h-394c-11 0 -20 9 -20 20s9 20 20 20h409l33 90 c2 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -2 -7l-27 -76h134c11 0 20 -9 20 -20v-546c0 -11 -9 -20 -20 -20h-348l-46 -128h394c11 0 20 -9 20 -20zM662 81v506h-129l-184 -506h313'], + 0x22E4: [627,211,778,76,702,'702 61c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20v546c0 11 9 20 20 20h586c11 0 20 -9 20 -20s-9 -20 -20 -20h-566v-506h566c11 0 20 -9 20 -20zM702 -107c0 -11 -9 -20 -20 -20h-284l-73 -78c-4 -4 -9 -6 -14 -6c-12 0 -20 9 -20 20c0 5 2 10 5 14l47 50h-247 c-11 0 -20 9 -20 20s9 20 20 20h284l73 78c4 4 9 6 15 6c11 0 20 -9 20 -20c0 -5 -3 -10 -6 -14l-47 -50h247c11 0 20 -9 20 -20'], + 0x22E5: [627,211,778,76,702,'702 61c0 -11 -9 -20 -20 -20h-586c-11 0 -20 9 -20 20s9 20 20 20h566v506h-566c-11 0 -20 9 -20 20s9 20 20 20h586c11 0 20 -9 20 -20v-546zM702 -107c0 -11 -9 -20 -20 -20h-284l-73 -78c-4 -4 -9 -6 -14 -6c-12 0 -20 9 -20 20c0 5 2 10 5 14l47 50h-247 c-11 0 -20 9 -20 20s9 20 20 20h284l73 78c4 4 9 6 15 6c11 0 20 -9 20 -20c0 -5 -3 -10 -6 -14l-47 -50h247c11 0 20 -9 20 -20'], + 0x22F0: [500,0,613,56,556,'359 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM556 447c0 -29 -23 -53 -53 -53c-29 0 -53 24 -53 53c0 30 24 53 53 53c30 0 53 -23 53 -53zM162 53c0 -30 -24 -53 -53 -53c-30 0 -53 23 -53 53c0 29 23 53 53 53c29 0 53 -24 53 -53'], + 0x2A00: [743,243,1111,63,1049,'1049 250c0 -272 -221 -493 -493 -493s-493 221 -493 493s221 493 493 493s493 -221 493 -493zM632 250c0 -42 -34 -76 -76 -76s-76 34 -76 76s34 76 76 76s76 -34 76 -76zM991 250c0 240 -195 435 -435 435s-435 -195 -435 -435s195 -435 435 -435s435 195 435 435'], + 0x2A01: [743,243,1111,63,1049,'990 279c-14 217 -188 391 -405 405v-405h405zM527 684c-217 -14 -391 -188 -405 -405h405v405zM527 -184v405h-405c14 -217 188 -391 405 -405zM990 221h-405v-405c217 14 391 188 405 405zM1049 250c0 -272 -221 -493 -493 -493s-493 221 -493 493s221 493 493 493 s493 -221 493 -493'], + 0x2A02: [743,243,1111,63,1049,'991 250c0 110 -40 210 -107 287l-287 -287l287 -287c67 77 107 177 107 287zM843 578c-77 67 -177 107 -287 107s-210 -40 -287 -107l287 -287zM515 250l-287 287c-67 -77 -107 -177 -107 -287s40 -210 107 -287zM843 -78l-287 287l-287 -287c77 -67 177 -107 287 -107 s210 40 287 107zM1049 250c0 -272 -221 -493 -493 -493s-493 221 -493 493s221 493 493 493s493 -221 493 -493'], + 0x2A03: [750,272,833,50,784,'784 27c0 -163 -163 -299 -367 -299s-367 136 -367 299v694c0 16 13 29 29 29s29 -13 29 -29v-694c0 -135 140 -241 309 -241s309 106 309 241v694c0 16 13 29 29 29s29 -13 29 -29v-694zM493 250c0 -42 -34 -76 -76 -76s-76 34 -76 76s34 76 76 76s76 -34 76 -76'], + 0x2A04: [750,272,833,50,784,'784 27c0 -163 -163 -299 -367 -299s-367 136 -367 299v694c0 16 13 29 29 29s29 -13 29 -29v-694c0 -135 140 -241 309 -241s309 106 309 241v694c0 16 13 29 29 29s29 -13 29 -29v-694zM633 250c0 -16 -13 -29 -29 -29h-158v-158c0 -16 -13 -29 -29 -29s-29 13 -29 29 v158h-158c-16 0 -29 13 -29 29s13 29 29 29h158v158c0 16 13 29 29 29s29 -13 29 -29v-158h158c16 0 29 -13 29 -29'], + 0x2A05: [764,264,833,50,784,'784 -235c0 -16 -13 -29 -29 -29s-29 13 -29 29v941h-618v-941c0 -16 -13 -29 -29 -29s-29 13 -29 29v970c0 16 13 29 29 29h676c16 0 29 -13 29 -29v-970'], + 0x2A06: [764,264,833,50,784,'784 -235c0 -16 -13 -29 -29 -29h-676c-16 0 -29 13 -29 29v970c0 16 13 29 29 29s29 -13 29 -29v-941h618v941c0 16 13 29 29 29s29 -13 29 -29v-970'], + 0x2A09: [740,240,1092,55,1036,'1028 -232c-12 -11 -30 -11 -41 0l-441 441l-441 -441c-11 -11 -29 -11 -41 0c-11 12 -11 30 0 41l441 441l-441 441c-11 11 -11 29 0 41c12 11 30 11 41 0l441 -441l441 441c11 11 29 11 41 0c11 -12 11 -30 0 -41l-441 -441l441 -441c11 -11 11 -29 0 -41'], + 0x2A0C: [805,306,1775,56,1719,'609 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41 c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83zM979 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249 c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83zM1349 722 c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41 c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83zM1719 722c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249 c-8 -111 -44 -402 -57 -454c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21c57 0 93 45 106 209l19 249c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83'], + 0x2A11: [805,306,695,56,667,'667 153c-2 -11 -13 -19 -23 -17c-3 1 -6 2 -8 3c-18 13 -33 28 -45 45c-28 -108 -125 -190 -241 -194c-8 -56 -15 -101 -19 -119c-22 -90 -70 -177 -165 -177c-60 0 -110 35 -110 83c0 30 22 43 42 43c19 0 41 -13 41 -42c0 -14 -8 -37 -37 -41c21 -18 51 -21 64 -21 c57 0 93 45 106 209l5 72c-113 28 -197 130 -197 252c0 12 8 20 20 20c11 0 20 -8 20 -20c0 -101 68 -186 161 -212l10 137c9 121 45 403 57 458c17 76 56 173 151 173c60 0 110 -35 110 -83c0 -30 -22 -43 -42 -43c-19 0 -41 13 -41 42c0 14 8 37 37 41 c-22 19 -53 21 -63 21c-45 0 -79 -25 -93 -209l-19 -249l-32 -295c94 7 172 73 196 161c-17 -12 -37 -21 -58 -27h-8c-11 2 -18 12 -16 23c1 8 7 14 14 16c36 9 65 33 82 65c4 7 12 12 21 10c9 -1 16 -8 17 -17c4 -36 24 -68 54 -89c7 -4 10 -12 9 -19'], + 0x2A2F: [496,-3,778,142,636,'625 68c15 -15 15 -39 0 -53c-15 -15 -38 -15 -53 0l-183 182l-182 -182c-15 -15 -38 -15 -53 0c-15 14 -15 38 0 53l182 182l-182 182c-15 15 -15 39 0 53c15 15 38 15 53 0l183 -182l182 182c15 15 38 15 53 0c15 -14 15 -38 0 -53l-182 -182'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Operators/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/SansSerif/Regular/Main.js new file mode 100644 index 0000000..d38d685 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/SansSerif/Regular/Main.js @@ -0,0 +1,372 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'LatinModernMathJax_SansSerif', + id: 'LATINMODERNSANSSERIF', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x1D5A0: [694,0,667,28,638,'638 0h-92l-76 204h-291l-77 -204h-74l261 694h88zM448 260l-91 257c-23 66 -30 91 -32 105h-1c-7 -37 -38 -122 -59 -181c-51 -143 -14 -38 -65 -181h248'], + 0x1D5A1: [694,0,667,97,610,'610 188c0 -98 -105 -188 -249 -188h-264v694h237c142 0 249 -82 249 -174c0 -76 -75 -134 -166 -157c106 -17 193 -88 193 -175zM505 519c0 66 -88 119 -199 119h-126v-247h116c138 0 209 68 209 128zM529 189c0 80 -98 141 -204 141h-145v-274h153 c108 0 196 58 196 133'], + 0x1D5A2: [706,11,639,66,587,'587 45c-30 -18 -61 -36 -95 -45c-34 -10 -69 -11 -104 -11c-88 0 -169 40 -228 105c-62 69 -94 160 -94 253s32 184 94 254c59 65 140 105 228 105c32 0 64 -2 95 -8c32 -6 63 -16 93 -28l-14 -82c-26 18 -54 33 -84 42c-29 9 -60 12 -90 12c-65 0 -124 -35 -165 -86 c-46 -59 -68 -134 -68 -209s22 -149 68 -208c41 -51 100 -86 165 -86c34 0 69 1 101 12c34 10 63 29 92 49'], + 0x1D5A3: [694,0,722,96,665,'665 341c0 -189 -136 -341 -306 -341h-263v694h262c172 0 307 -159 307 -353zM579 341c0 176 -104 297 -244 297h-153v-582h153c140 0 244 115 244 285'], + 0x1D5A4: [691,0,597,94,554,'554 0h-460v691h446v-65h-183c-12 0 -24 1 -36 1h-138v-237h330v-61h-330v-259h209c12 0 24 1 36 1h126v-71'], + 0x1D5A5: [691,0,569,94,526,'526 626h-176c-12 0 -24 1 -36 1h-131v-251h302v-61h-302v-315h-89v691h432v-65'], + 0x1D5A6: [706,11,667,66,598,'598 38c-65 -32 -137 -49 -210 -49c-87 0 -169 40 -228 105c-62 69 -94 160 -94 253s32 184 94 254c59 65 141 105 228 105c35 0 70 -3 104 -11c34 -9 67 -22 98 -39l-15 -82c-26 22 -55 41 -88 52c-32 12 -65 16 -99 16c-65 0 -124 -35 -165 -86 c-46 -59 -68 -134 -68 -209s22 -149 68 -208c41 -51 100 -86 165 -86c45 0 90 7 132 21v165h-132v61h210v-262'], + 0x1D5A7: [694,0,708,94,613,'613 0h-89v330h-341v-330h-89v694h89v-303h341v303h89v-694'], + 0x1D5A8: [694,0,278,94,183,'183 0h-89v694h89v-694'], + 0x1D5A9: [694,22,472,42,388,'388 149c0 -113 -72 -171 -175 -171c-84 0 -147 30 -171 42l14 75c34 -38 86 -56 128 -56c118 0 118 96 118 113v542h86v-545'], + 0x1D5AA: [694,0,694,96,651,'651 0h-92l-245 364l-133 -137v-227h-85v694h85v-371l363 371h93l-268 -274'], + 0x1D5AB: [694,0,542,94,499,'499 0h-405v694h89v-630h49l267 2v-66'], + 0x1D5AC: [694,0,875,100,774,'774 0h-78v620l-1 1c-5 -23 -32 -95 -42 -124l-48 -127l-133 -348h-73l-148 389c-26 68 -66 177 -72 209h-1v-620h-78v694h113l34 -87l157 -414c15 -42 27 -79 32 -100h1c11 47 58 171 93 262l130 339h114v-694'], + 0x1D5AD: [694,0,708,96,611,'611 0h-124l-245 486l-67 137h-1v-623h-78v694h124l245 -486l67 -137h1v623h78v-694'], + 0x1D5AE: [716,22,736,56,679,'679 345c0 -210 -145 -367 -312 -367c-163 0 -311 155 -311 367c0 208 142 371 312 371c166 0 311 -161 311 -371zM590 360c0 179 -107 292 -223 292c-112 0 -222 -109 -222 -292c0 -192 105 -317 223 -317c114 0 222 122 222 317'], + 0x1D5AF: [694,0,639,96,582,'582 492c0 -112 -106 -203 -230 -203h-167v-289h-89v694h249c138 0 237 -95 237 -202zM501 492c0 85 -68 146 -178 146h-141v-291h141c115 0 178 66 178 145'], + 0x1D5B0: [716,125,736,56,679,'679 345c0 -105 -37 -227 -146 -312l119 -158h-103l-86 121c-43 -17 -80 -18 -96 -18c-163 0 -311 155 -311 367c0 208 142 371 312 371c166 0 311 -161 311 -371zM593 345c0 185 -106 307 -226 307c-116 0 -225 -120 -225 -307c0 -186 108 -303 226 -303c29 0 56 9 56 9 l-101 143h89l79 -105c90 82 102 191 102 256'], + 0x1D5B1: [694,0,646,96,617,'617 0h-89l-188 317h-158v-317h-86v694h241c143 0 252 -87 252 -186c0 -81 -67 -152 -170 -182zM508 508c0 71 -66 130 -182 130h-144v-260h144c118 0 182 59 182 130'], + 0x1D5B2: [716,22,556,44,499,'499 189c0 -110 -92 -211 -224 -211c-63 0 -143 14 -231 69l15 81c84 -71 174 -81 215 -81c91 0 146 66 146 132c0 43 -22 76 -42 93c-28 25 -38 28 -123 49c-59 14 -103 26 -145 71c-40 42 -54 84 -54 127c0 99 87 197 226 197c73 0 128 -17 183 -50l-15 -80 c-37 31 -85 64 -169 64c-92 0 -146 -60 -146 -119c0 -44 28 -73 35 -79c30 -26 46 -30 104 -44c92 -23 125 -32 172 -82c22 -24 53 -72 53 -137'], + 0x1D5B3: [688,0,681,36,644,'644 623h-134c-12 0 -24 1 -36 1h-89v-624h-89v624h-90c-12 0 -24 -1 -36 -1h-134v65h608v-65'], + 0x1D5B4: [694,22,688,94,593,'593 233c0 -145 -113 -255 -247 -255c-135 0 -252 109 -252 255v461h89v-462c0 -135 82 -198 164 -198c84 0 168 66 168 198v462h78v-461'], + 0x1D5B5: [694,0,667,14,652,'652 694l-273 -694h-92l-273 694h93l173 -448c9 -24 52 -134 60 -174h1c9 46 84 239 100 280l133 342h78'], + 0x1D5B6: [694,0,944,14,929,'929 694l-203 -694h-87l-115 401c-27 95 -51 190 -55 220h-1c-6 -52 -49 -201 -70 -274l-100 -347h-81l-203 694h86l81 -282l47 -167c8 -33 35 -131 39 -171h1c5 56 55 231 77 308l90 312h81l98 -341c66 -228 72 -281 72 -281h1c5 51 53 219 79 308l91 314h72'], + 0x1D5B7: [694,0,667,14,652,'652 0h-104l-222 306l-216 -306h-96l269 366l-255 328h104l194 -261l188 261h96l-241 -328'], + 0x1D5B8: [694,0,667,3,663,'663 694l-287 -417v-277h-86v278l-287 416h105l198 -290c17 -24 17 -26 36 -57l61 95c7 11 12 19 17 26l155 226h88'], + 0x1D5B9: [694,0,611,56,560,'560 0h-504v43l385 590h-136c-12 0 -24 -1 -36 -1h-200v62h485v-41l-385 -589h32l263 2h96v-66'], + 0x1D5BA: [461,11,481,54,409,'409 0h-75v36c-58 -45 -152 -47 -166 -47c-87 0 -114 81 -114 124c0 88 127 130 277 132v43c0 74 -40 114 -87 114c-49 0 -99 -13 -151 -50l-6 66c47 27 92 43 157 43c92 0 165 -70 165 -172v-289zM331 132v62c-43 -2 -205 -9 -205 -79c0 -42 45 -65 93 -65 c11 0 49 1 78 19c34 19 34 44 34 63'], + 0x1D5BB: [694,11,517,82,480,'480 223c0 -134 -86 -234 -186 -234c-67 0 -110 35 -134 57v-46h-78v694h75v-298c60 49 122 59 161 59c94 0 162 -108 162 -232zM402 223c0 128 -76 171 -135 171c-55 0 -91 -35 -107 -59v-221c25 -46 58 -64 97 -64c61 0 145 43 145 173'], + 0x1D5BC: [461,11,444,36,415,'415 40c-54 -37 -109 -51 -163 -51c-125 0 -216 109 -216 233c0 118 81 239 220 239c61 0 95 -9 154 -43l-12 -65c-55 36 -89 44 -141 44c-106 0 -143 -96 -143 -174c0 -98 56 -170 139 -170c51 0 105 14 156 54'], + 0x1D5BD: [694,11,517,36,434,'434 0h-78v52c-56 -54 -115 -63 -148 -63c-95 0 -172 102 -172 233c0 129 78 233 177 233c37 0 93 -11 146 -55v294h75v-694zM356 139v200c-22 32 -52 55 -97 55c-59 0 -145 -41 -145 -173c0 -124 73 -171 135 -171c26 0 51 8 74 28c32 29 33 47 33 61'], + 0x1D5BE: [461,11,444,35,414,'414 219h-309c3 -98 67 -169 147 -169c23 0 89 4 152 56l6 -65c-39 -28 -96 -52 -159 -52c-120 0 -216 105 -216 237c0 129 90 235 201 235c36 0 97 -11 138 -73c39 -60 40 -135 40 -169zM357 274c-13 92 -69 126 -121 126c-57 0 -110 -50 -126 -126h247'], + 0x1D5BF: [705,0,306,27,347,'347 627c-34 15 -61 17 -81 17c-26 0 -93 -7 -93 -81v-119h113v-58h-110v-386h-75v386h-74v58h74v90c0 100 72 171 166 171c37 0 68 -8 80 -11v-67'], + 0x1D5C0: [455,206,500,28,485,'485 392c0 0 -41 3 -59 3c-24 0 -52 -4 -74 -4l-4 1c11 -15 33 -52 33 -100c0 -89 -70 -163 -160 -163c-37 0 -70 14 -91 29c-7 -9 -11 -25 -11 -36c0 -53 45 -53 58 -53h88c39 0 206 0 206 -139c0 -77 -99 -136 -222 -136c-122 0 -221 60 -221 135c0 26 12 72 64 103 c-17 21 -26 50 -26 76c0 5 0 44 29 85c-20 26 -33 62 -33 99c0 91 73 163 159 163c40 0 74 -15 95 -32c30 13 88 32 158 32zM311 292c0 78 -47 106 -90 106c-37 0 -89 -23 -89 -106s52 -106 89 -106c43 0 90 28 90 106zM401 -72c0 69 -113 69 -135 69h-90 c-78 0 -78 -65 -78 -68c0 -47 71 -78 152 -78c82 0 151 33 151 77'], + 0x1D5C1: [694,0,517,81,435,'435 0h-78v291c0 32 -1 103 -97 103c-76 0 -101 -83 -101 -149v-245h-78v694h75v-311c32 41 80 72 142 72c122 0 137 -91 137 -157v-298'], + 0x1D5C2: [655,0,239,75,164,'156 0h-75v444h75v-444zM164 566h-89v89h89v-89'], + 0x1D5C3: [655,205,267,-61,184,'184 -59c0 -94 -62 -146 -125 -146c-26 0 -72 6 -120 34l21 61c22 -21 46 -31 74 -31c18 0 75 5 75 72v513h75v-503zM184 566h-89v89h89v-89'], + 0x1D5C4: [694,0,489,84,471,'471 0h-82l-156 224l-80 -83v-141h-69v694h72v-458l203 208h90l-168 -172'], + 0x1D5C5: [694,0,239,81,156,'156 0h-75v694h75v-694'], + 0x1D5C6: [455,0,794,81,713,'713 0h-78v291c0 38 -5 103 -98 103c-74 0 -101 -81 -101 -149v-245h-78v291c0 38 -5 103 -98 103c-74 0 -101 -81 -101 -149v-245h-78v450h72v-72c27 36 74 77 146 77c32 0 102 -6 128 -82c37 54 89 82 149 82c121 0 137 -90 137 -157v-298'], + 0x1D5C7: [455,0,517,81,435,'435 0h-78v291c0 32 -1 103 -97 103c-76 0 -101 -83 -101 -149v-245h-78v450h72v-71c6 8 55 76 145 76c122 0 137 -91 137 -157v-298'], + 0x1D5C8: [461,11,500,30,469,'469 220c0 -130 -100 -231 -220 -231c-117 0 -219 99 -219 231c0 131 97 241 220 241c119 0 219 -107 219 -241zM391 230c0 118 -72 170 -142 170c-65 0 -141 -49 -141 -170s72 -177 141 -177c74 0 142 59 142 177'], + 0x1D5C9: [455,194,517,82,480,'480 223c0 -136 -88 -234 -185 -234c-60 0 -104 28 -135 57v-240h-78v638h75v-49c46 39 104 60 164 60c96 0 159 -112 159 -232zM402 223c0 92 -60 168 -136 168c-43 0 -82 -23 -106 -58v-201c0 -18 0 -20 10 -35c20 -27 47 -47 86 -47c75 0 146 70 146 173'], + 0x1D5CA: [455,194,517,36,434,'434 -194h-78v244c-42 -38 -95 -61 -151 -61c-96 0 -169 105 -169 232c0 135 86 234 186 234c78 0 127 -55 137 -68v68h75v-649zM359 140v140c0 40 -31 111 -100 111c-73 0 -145 -68 -145 -170c0 -93 60 -171 136 -171c36 0 73 17 99 57c10 13 10 15 10 33'], + 0x1D5CB: [455,0,342,82,327,'327 388c-98 -2 -170 -74 -170 -174v-214h-75v450h70v-91c31 46 86 95 175 96v-67'], + 0x1D5CC: [461,11,383,28,360,'360 128c0 -43 -17 -83 -48 -107c-43 -32 -98 -32 -116 -32c-81 0 -136 28 -168 44l12 68c18 -12 74 -49 155 -49c15 0 94 0 94 69c0 53 -58 65 -94 72c-55 11 -77 15 -108 37c-25 19 -54 51 -54 100c0 131 141 131 166 131c51 0 92 -8 144 -32l-12 -65 c-57 34 -110 38 -142 38c-13 0 -85 0 -85 -62c0 -49 46 -59 101 -70c50 -9 77 -15 116 -50c2 -3 39 -37 39 -92'], + 0x1D5CD: [571,11,361,19,332,'332 27c-25 -13 -76 -38 -146 -38c-69 0 -83 70 -83 130v267h-84v58h87v127h69v-127h141v-58h-141v-250c0 -53 14 -83 51 -83c32 0 64 12 90 33'], + 0x1D5CE: [444,11,517,81,435,'435 0h-75v48c-49 -43 -120 -59 -173 -59c-83 0 -106 48 -106 120v335h78v-331c0 -43 7 -69 78 -69c64 0 120 35 120 110v290h78v-444'], + 0x1D5CF: [444,0,461,14,446,'446 444l-172 -444h-88l-172 444h78l97 -259c10 -27 36 -96 42 -132h1c8 47 39 128 60 183l79 208h75'], + 0x1D5D0: [444,0,683,14,668,'668 444l-137 -444h-88l-73 248c-13 43 -30 112 -32 140h-1c-3 -37 -31 -136 -45 -182l-62 -206h-79l-137 444h76l52 -173c16 -55 49 -168 54 -216h1c4 51 38 166 49 201l57 188h70l65 -213c17 -57 42 -146 46 -177h1c5 43 35 142 46 178l64 212h73'], + 0x1D5D1: [444,0,461,0,460,'460 0h-83l-150 188l-145 -188h-82l194 229l-188 215h83l138 -165l134 165h82l-183 -215'], + 0x1D5D2: [444,205,461,14,446,'446 444l-218 -535c-41 -102 -78 -114 -113 -114c-22 0 -50 3 -72 8l-6 65c30 -12 62 -16 78 -16c14 0 31 0 57 58l36 90l-194 444h79l54 -125c4 -9 84 -195 90 -262h1c1 23 3 69 133 387h75'], + 0x1D5D3: [444,0,435,28,402,'402 0h-374v41l267 345h-78c-12 0 -24 -1 -36 -1h-139v59h358v-39l-266 -344h85c12 0 24 1 36 1h147v-62'], + 0x1D5D4: [694,0,733,42,690,'690 27c0 -27 -25 -27 -39 -27h-54c-48 0 -55 20 -67 55l-34 96h-277l-39 -111c-14 -40 -45 -40 -63 -40h-36c-14 0 -39 0 -39 27c0 5 0 7 5 20l211 604c15 43 44 43 64 43h88c20 0 49 0 64 -43l211 -604c5 -13 5 -15 5 -20zM466 237l-95 281c-8 23 -8 25 -13 49h-1 c-8 -36 -21 -74 -36 -118l-72 -212h217'], + 0x1D5D5: [694,0,733,91,671,'671 194c0 -181 -184 -194 -258 -194h-274c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h246c42 0 255 0 255 -180c0 -78 -53 -130 -145 -151c37 -6 176 -28 176 -169zM504 511c0 94 -116 97 -155 97h-117v-211h116c25 0 156 0 156 114zM532 196c0 129 -139 129 -174 129 h-126v-239h145c48 0 155 7 155 110'], + 0x1D5D6: [706,11,703,61,646,'646 58c0 -6 -3 -10 -6 -12c-33 -19 -66 -36 -102 -46s-74 -11 -111 -11c-100 0 -203 20 -274 90c-70 69 -92 170 -92 268c0 99 22 200 92 269c71 69 174 90 274 90c33 0 67 -2 101 -8c33 -6 66 -16 98 -28c4 -2 8 -6 8 -14l-19 -107c-1 -5 -6 -10 -13 -10 c-3 0 -6 1 -8 3c-23 21 -48 38 -77 49s-60 15 -90 15c-62 0 -124 -17 -164 -64c-45 -53 -55 -125 -55 -195s10 -142 55 -195c40 -46 102 -63 164 -63c34 0 69 1 102 12s62 31 89 52c3 1 5 2 8 2c6 0 12 -5 12 -11'], + 0x1D5D7: [694,0,794,91,732,'732 342c0 -196 -85 -342 -329 -342h-264c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h264c65 0 185 -12 260 -105c56 -71 69 -168 69 -247zM588 342c0 112 -9 266 -225 266h-128v-522h129c213 0 224 143 224 256'], + 0x1D5D8: [691,0,642,91,595,'595 48c0 -35 -10 -48 -48 -48h-408c-37 0 -48 12 -48 48v595c0 37 12 48 48 48h393c41 0 48 -16 48 -48v-8c0 -48 -23 -48 -58 -48l-235 3h-49v-185h263c35 0 48 -10 48 -47c0 -40 -17 -47 -48 -47h-263v-205l146 2l155 2c33 0 56 0 56 -48v-14'], + 0x1D5D9: [691,0,611,91,564,'564 635c0 -48 -23 -48 -57 -48l-226 3h-43v-197h232c35 0 48 -10 48 -47c0 -40 -17 -47 -48 -47h-232v-251c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v595c0 37 12 48 48 48h377c41 0 48 -16 48 -48v-8'], + 0x1D5DA: [706,11,733,61,658,'658 50c0 -5 -3 -9 -7 -11c-70 -33 -147 -50 -224 -50c-100 0 -203 20 -274 90c-70 69 -92 170 -92 268c0 99 22 200 92 269c71 69 174 90 274 90c37 0 74 -3 110 -12c37 -8 72 -22 105 -38c4 -2 7 -7 7 -14l-19 -106c-1 -6 -6 -11 -12 -11c-4 0 -7 2 -9 4 c-24 24 -51 46 -83 59c-31 13 -65 18 -99 18c-62 0 -124 -17 -164 -64c-45 -53 -55 -125 -55 -195s10 -142 55 -195c40 -46 102 -63 164 -63c32 0 64 4 95 11v130h-83c-7 0 -12 6 -12 13v69c0 7 5 13 12 13h207c7 0 12 -6 12 -13v-262'], + 0x1D5DB: [694,0,794,91,702,'702 48c0 -35 -10 -48 -48 -48h-51c-41 0 -48 16 -48 48v266h-317v-266c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-238h317v238c0 35 10 48 48 48h51c41 0 48 -16 48 -48v-598'], + 0x1D5DC: [694,0,331,92,239,'239 48c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-598'], + 0x1D5DD: [694,22,519,46,427,'427 149c0 -117 -85 -171 -192 -171c-45 0 -105 9 -164 35c-19 8 -25 11 -25 20c0 4 10 57 15 88c2 10 4 19 14 19c6 0 8 -2 16 -12c14 -18 46 -50 104 -50c88 0 88 56 88 77v491c0 35 10 48 48 48h48c41 0 48 -16 48 -48v-497'], + 0x1D5DE: [694,0,764,91,701,'701 29c0 -29 -14 -29 -35 -29h-60c-19 0 -34 0 -50 21l-224 300l-111 -105v-168c0 -35 -10 -48 -48 -48h-34c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h34c41 0 48 -16 48 -48v-276l322 304c21 20 41 20 58 20h61c14 0 34 0 34 -21c0 -4 0 -10 -12 -21l-263 -247'], + 0x1D5DF: [694,0,581,91,534,'534 48c0 -35 -10 -48 -48 -48h-347c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-545l249 4c46 0 47 -25 47 -48v-9'], + 0x1D5E0: [694,0,978,91,886,'886 48c0 -35 -10 -48 -48 -48h-27c-41 0 -48 16 -48 48v517h-1c-7 -26 -61 -162 -71 -186l-128 -314c-18 -43 -42 -43 -76 -43s-58 0 -76 43l-116 285c-24 59 -69 170 -80 215h-1v-517c0 -35 -10 -48 -48 -48h-27c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h83 c18 0 50 0 67 -41l128 -316c21 -53 62 -152 71 -188h1c8 35 45 127 66 178l132 324c17 41 42 43 67 43h84c41 0 48 -16 48 -48v-598'], + 0x1D5E1: [694,0,794,91,702,'702 48c0 -35 -10 -48 -48 -48h-93c-20 0 -50 0 -71 40l-275 533h-1v-525c0 -35 -10 -48 -48 -48h-27c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h93c20 0 50 0 71 -40l275 -533h1v525c0 35 10 48 48 48h27c41 0 48 -16 48 -48v-598'], + 0x1D5E2: [716,22,794,61,732,'732 342c0 -205 -78 -364 -336 -364c-270 0 -335 177 -335 364c0 183 59 374 336 374c262 0 335 -173 335 -374zM585 358c0 90 0 280 -189 280c-188 0 -188 -192 -188 -280c0 -91 0 -300 189 -300c188 0 188 211 188 300'], + 0x1D5E3: [694,0,703,91,641,'641 478c0 -144 -94 -210 -251 -210h-152v-220c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h250c154 0 252 -65 252 -216zM502 478c0 70 -13 130 -144 130h-123v-261h122c134 0 145 64 145 131'], + 0x1D5E4: [716,106,794,61,732,'732 342c0 -72 -7 -237 -134 -314l65 -84c13 -18 15 -20 15 -28c0 -22 -23 -22 -36 -22h-80c-33 0 -36 3 -57 35l-37 54c-32 -5 -55 -5 -72 -5c-270 0 -335 177 -335 364c0 183 59 374 336 374c262 0 335 -173 335 -374zM588 343c0 89 0 295 -192 295 c-191 0 -191 -207 -191 -295c0 -89 0 -287 191 -287c4 0 20 2 20 2c0 3 -17 27 -20 32c-18 25 -50 70 -50 81c0 23 22 23 36 23h61c20 0 24 0 34 -11l55 -71c56 64 56 168 56 231'], + 0x1D5E5: [694,0,703,91,653,'653 30c0 -30 -17 -30 -37 -30h-59c-22 0 -33 0 -47 24l-164 287h-111v-263c0 -35 -10 -48 -48 -48h-48c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h240c45 0 262 0 262 -197c0 -124 -95 -162 -158 -177zM502 496c0 66 -21 112 -137 112h-130v-225h130 c123 0 137 54 137 113'], + 0x1D5E6: [716,22,611,49,549,'549 200c0 -155 -94 -222 -244 -222c-26 0 -80 2 -147 23c-5 2 -109 38 -109 59c0 3 0 5 2 13l15 87c3 15 8 18 14 18c4 0 6 0 18 -12c50 -45 123 -79 207 -79c33 0 119 3 119 97c0 38 -21 59 -31 69c-22 20 -44 25 -100 38c-78 18 -125 28 -176 80 c-19 20 -56 66 -56 137c0 187 155 208 244 208c51 0 110 -5 181 -40c25 -13 26 -14 26 -22c0 -3 0 -5 -2 -13l-15 -87c-3 -15 -8 -18 -14 -18c-4 0 -5 1 -21 16c-49 48 -99 61 -155 61c-34 0 -119 -2 -119 -87c0 -57 62 -80 84 -85l96 -22c100 -23 183 -107 183 -219'], + 0x1D5E7: [688,0,733,40,692,'692 632c0 -48 -24 -48 -52 -48l-200 3v-539c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v539l-201 -3c-28 0 -52 0 -52 48v8c0 37 12 48 48 48h556c41 0 48 -16 48 -48v-8'], + 0x1D5E8: [694,22,764,91,672,'672 229c0 -217 -174 -251 -288 -251c-127 0 -293 41 -293 252v416c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-420c0 -103 31 -162 147 -162c122 0 151 65 151 163v419c0 35 10 48 48 48h40c41 0 48 -16 48 -48v-417'], + 0x1D5E9: [694,0,733,27,705,'705 667c0 -5 -1 -6 -5 -18l-223 -605c-16 -44 -44 -44 -65 -44h-92c-20 0 -49 0 -64 42l-224 607c-4 12 -5 13 -5 18c0 27 25 27 39 27h54c21 0 49 0 65 -43l162 -447c15 -41 26 -76 27 -79l52 154l135 371c16 44 45 44 66 44h39c14 0 39 0 39 -27'], + 0x1D5EA: [694,0,1039,24,1014,'1014 665c0 0 0 -5 -4 -19l-164 -604c-11 -42 -39 -42 -60 -42h-72c-20 0 -48 0 -59 42l-102 377c-18 65 -24 90 -36 148h-1c-10 -48 -17 -76 -32 -130l-105 -391c-12 -46 -40 -46 -61 -46h-66c-21 0 -49 0 -60 42l-164 604c-4 14 -4 19 -4 19c0 29 27 29 41 29h34 c19 0 48 0 60 -43l86 -320c17 -63 41 -151 49 -203h1c2 16 10 48 21 95l25 99l88 328c12 44 40 44 61 44h66c29 0 49 -5 60 -44l108 -405c24 -88 24 -90 29 -117h1c9 44 18 77 32 128l106 394c12 44 40 44 60 44h21c14 0 41 0 41 -29'], + 0x1D5EB: [694,0,733,37,694,'694 22c0 -22 -23 -22 -36 -22h-83c-19 0 -35 0 -50 22l-167 240l-161 -238c-12 -18 -16 -24 -49 -24h-75c-14 0 -36 0 -36 23c0 7 1 8 10 20l236 325l-219 284c-10 12 -10 14 -10 20c0 22 21 22 35 22h83c21 0 34 0 51 -23l135 -185l131 187c15 21 32 21 49 21h75 c14 0 36 0 36 -23c0 -7 -1 -8 -10 -20l-206 -283l252 -326c4 -5 9 -13 9 -20'], + 0x1D5EC: [694,0,733,24,708,'708 671c0 -7 -5 -16 -9 -21l-261 -373v-230c0 -37 -13 -47 -48 -47h-48c-37 0 -48 12 -48 48v230l-261 373c-6 8 -9 13 -9 20c0 23 22 23 36 23h66c36 0 58 -8 81 -41l113 -162c20 -28 40 -57 55 -88c17 36 36 63 71 113l98 140c27 38 58 38 79 38h49c14 0 36 0 36 -23'], + 0x1D5ED: [694,0,672,61,616,'616 48c0 -35 -10 -48 -48 -48h-459c-37 0 -48 12 -48 48v8c0 20 0 22 10 35l362 508h-35l-261 -3c-40 0 -61 0 -61 49c0 32 6 49 48 49h438c47 0 48 -23 48 -50c0 -22 0 -24 -10 -37l-360 -506l319 4c34 0 57 0 57 -48v-9'], + 0x1D5EE: [475,11,525,41,474,'474 48c0 -35 -10 -48 -48 -48h-37c-41 0 -48 16 -48 48v20c-47 -69 -122 -79 -156 -79c-88 0 -144 74 -144 144c0 147 262 149 297 149v35c0 59 -16 92 -70 92c-62 0 -112 -22 -155 -67c-3 -3 -6 -6 -11 -6c-7 0 -12 5 -13 11c-1 8 -7 66 -7 73c0 11 5 14 26 23 c67 28 117 32 164 32c50 0 202 -1 202 -159v-268zM338 154v87c-28 -1 -167 -8 -167 -106c0 -38 27 -74 69 -74c3 0 98 0 98 93'], + 0x1D5EF: [694,11,561,61,523,'523 231c0 -50 0 -242 -213 -242c-16 0 -67 0 -113 50c-1 -39 -31 -39 -48 -39h-40c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h37c41 0 48 -16 48 -48v-233c9 10 59 56 141 56c188 0 188 -190 188 -238zM387 230c0 75 0 167 -101 167c-46 0 -76 -23 -89 -35v-262 c11 -14 36 -39 78 -39c112 0 112 95 112 169'], + 0x1D5F0: [475,11,489,37,457,'457 50c0 -10 -1 -11 -29 -26c-67 -34 -127 -35 -154 -35c-151 0 -237 75 -237 241c0 175 93 245 242 245c70 0 100 -10 148 -32c17 -8 24 -12 24 -21c0 -5 -10 -61 -12 -69c-1 -4 -3 -13 -13 -13c-4 0 -6 0 -18 11c-36 30 -63 46 -128 46c-102 0 -107 -84 -107 -165 c0 -64 0 -165 104 -165c82 0 129 41 146 56c10 10 12 10 16 10c10 0 12 -10 12 -13c2 -13 6 -59 6 -70'], + 0x1D5F1: [694,11,561,37,499,'499 48c0 -35 -10 -48 -48 -48h-40c-34 0 -48 10 -48 47c-43 -46 -86 -58 -128 -58c-198 0 -198 193 -198 239c0 49 0 241 203 241c31 0 81 -7 126 -50v227c0 35 10 48 48 48h37c41 0 48 -16 48 -48v-598zM363 125v241c-22 21 -49 31 -78 31c-112 0 -112 -94 -112 -169 s0 -167 101 -167c12 0 35 2 60 18c29 20 29 29 29 46'], + 0x1D5F2: [475,11,511,31,479,'479 260c0 -45 -25 -46 -48 -46h-272c3 -64 15 -153 128 -153c32 0 92 7 151 58c11 10 13 10 17 10c9 0 10 -1 14 -32c1 -8 4 -37 4 -44c0 -12 -7 -15 -29 -26c-66 -33 -123 -38 -161 -38c-157 0 -252 80 -252 244c0 152 79 242 239 242c149 0 209 -86 209 -215zM368 267 c-3 78 -18 136 -98 136c-87 0 -107 -75 -110 -136h208'], + 0x1D5F3: [705,0,336,30,381,'381 621c0 -16 0 -26 -13 -26c-5 0 -8 2 -15 10c-20 19 -40 28 -72 28c-65 0 -65 -40 -65 -66v-109h51c12 0 48 0 48 -36s-36 -36 -48 -36h-48v-338c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v338c-22 0 -56 0 -56 36s35 36 56 36v80c0 150 120 167 195 167 c15 0 36 0 65 -6c34 -7 35 -8 35 -32v-46'], + 0x1D5F4: [469,206,550,25,534,'534 405c0 -7 -5 -13 -13 -13c-3 0 -10 2 -14 4c-41 11 -76 11 -93 11c9 -11 31 -46 31 -104c0 -165 -159 -165 -201 -165c-21 0 -80 0 -127 26c-1 -6 -2 -8 -2 -15c0 -26 17 -41 21 -45c14 -12 28 -12 64 -12h48c135 0 276 0 276 -156c0 -142 -191 -142 -250 -142 c-47 0 -114 1 -171 27c-63 29 -78 81 -78 112c0 64 52 82 67 88c-21 27 -27 60 -27 79c0 5 0 44 27 81c-38 33 -49 83 -49 123c0 165 159 165 201 165c43 0 95 -4 142 -35c38 23 88 35 119 35c18 0 18 -2 22 -26c2 -10 7 -34 7 -38zM317 304c0 55 -3 93 -73 93 s-73 -39 -73 -94s3 -93 73 -93s73 39 73 94zM421 -67c0 36 -42 50 -123 50h-116c-23 0 -54 0 -54 -47c0 -70 107 -70 147 -70c32 0 146 0 146 67'], + 0x1D5F5: [694,0,561,60,500,'500 48c0 -35 -10 -48 -48 -48h-40c-41 0 -48 16 -48 48v275c0 51 -10 74 -58 74c-52 0 -110 -41 -110 -128v-221c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h37c41 0 48 -16 48 -48v-274h1c14 28 60 97 160 97c102 0 146 -41 146 -144v-277'], + 0x1D5F6: [673,0,256,54,201,'194 48c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v362c0 37 12 48 48 48h37c41 0 48 -16 48 -48v-362zM201 606c0 -30 -6 -48 -48 -48h-51c-43 0 -48 19 -48 48v19c0 35 10 48 48 48h51c41 0 48 -16 48 -48v-19'], + 0x1D5F7: [673,205,286,-71,224,'224 -32c0 -99 -39 -173 -149 -173c-63 0 -146 28 -146 47c0 3 7 22 11 32c9 26 10 27 18 27c4 0 8 -3 10 -4c22 -14 45 -18 63 -18c60 0 60 40 60 65v466c0 35 10 48 48 48h37c41 0 48 -16 48 -48v-442zM224 606c0 -30 -6 -48 -48 -48h-51c-43 0 -48 19 -48 48v19 c0 35 10 48 48 48h51c41 0 48 -16 48 -48v-19'], + 0x1D5F8: [694,0,531,69,497,'497 22c0 -22 -22 -22 -36 -22h-48c-29 0 -36 3 -53 25l-130 170c-16 -14 -31 -29 -47 -43v-104c0 -35 -10 -48 -48 -48h-18c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h21c41 0 48 -16 48 -48v-343l144 134c23 21 42 21 60 21h58c14 0 34 0 34 -21c0 -8 -3 -11 -15 -22 l-154 -143l174 -228c10 -13 10 -22 10 -22'], + 0x1D5F9: [694,0,256,61,194,'194 48c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h37c41 0 48 -16 48 -48v-598'], + 0x1D5FA: [469,0,867,60,806,'806 48c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v275c0 53 -11 74 -59 74c-49 0 -110 -38 -110 -128v-221c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v275c0 53 -11 74 -59 74c-49 0 -110 -38 -110 -128v-221c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48 v368c0 37 12 48 48 48h34c41 0 48 -16 48 -48v-50h1c7 15 27 47 58 70c45 33 87 33 106 33c42 0 127 -3 143 -99c36 66 91 99 162 99c102 0 146 -41 146 -144v-277'], + 0x1D5FB: [469,0,561,60,500,'500 48c0 -35 -10 -48 -48 -48h-40c-41 0 -48 16 -48 48v275c0 51 -10 74 -58 74c-52 0 -110 -41 -110 -128v-221c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v368c0 37 12 48 48 48h34c41 0 48 -16 48 -48v-50h1c13 27 58 103 163 103c102 0 146 -41 146 -144v-277'], + 0x1D5FC: [475,11,550,31,518,'518 225c0 -164 -87 -236 -244 -236s-243 73 -243 236c0 161 77 250 244 250c163 0 243 -86 243 -250zM382 237c0 78 0 166 -108 166c-107 0 -107 -89 -107 -166c0 -80 0 -170 108 -170c107 0 107 91 107 170'], + 0x1D5FD: [469,194,561,61,523,'523 231c0 -50 0 -242 -212 -242c-14 0 -69 0 -114 50v-185c0 -35 -10 -48 -48 -48h-40c-37 0 -48 12 -48 48v556c0 37 12 48 48 48h37c34 0 48 -10 48 -47c36 34 89 58 148 58c181 0 181 -189 181 -238zM387 229c0 44 -1 162 -103 162c-43 0 -76 -23 -87 -33v-240 c0 -18 0 -23 24 -40c12 -9 30 -17 53 -17c113 0 113 128 113 168'], + 0x1D5FE: [469,194,561,37,499,'499 -146c0 -35 -10 -48 -48 -48h-40c-41 0 -48 16 -48 48v194c-34 -39 -71 -59 -124 -59c-186 0 -202 161 -202 239c0 80 16 241 209 241c17 0 76 0 120 -67v19c0 35 10 48 48 48h37c41 0 48 -16 48 -48v-567zM366 115v198c0 12 0 30 -26 55c-18 19 -39 23 -55 23 c-112 0 -112 -124 -112 -164c0 -39 0 -166 102 -166c46 0 73 29 91 54'], + 0x1D5FF: [469,0,372,61,356,'356 395c0 -26 -2 -26 -20 -27c-63 -4 -142 -43 -142 -138v-182c0 -35 -10 -48 -48 -48h-37c-37 0 -48 12 -48 48v368c0 37 12 48 48 48h32c41 0 48 -16 48 -48v-65h1c47 108 120 118 148 118c18 0 18 -7 18 -27v-47'], + 0x1D600: [475,11,422,31,396,'396 141c0 -148 -126 -152 -177 -152c-17 0 -58 0 -113 17c0 0 -75 24 -75 42c0 10 12 67 14 81c1 6 3 15 13 15c6 0 9 -3 14 -8c47 -56 103 -69 147 -69c39 0 78 7 78 54c0 44 -51 53 -80 58c-57 11 -96 18 -131 50c-27 24 -49 54 -49 103c0 143 134 143 179 143 c26 0 58 -1 98 -12c11 -4 64 -18 64 -34c0 -5 -10 -61 -12 -69c-1 -4 -3 -13 -13 -13c-4 0 -6 0 -16 10c-26 22 -62 47 -129 47c-39 0 -72 -8 -72 -49c0 -39 40 -47 95 -57c42 -8 77 -14 117 -50c18 -16 48 -51 48 -107'], + 0x1D601: [589,11,404,20,373,'373 47c0 -19 -58 -37 -75 -42c-52 -16 -96 -16 -105 -16c-69 0 -105 43 -105 144v253h-20c-12 0 -48 0 -48 36s37 36 48 36h23v83c0 37 12 48 48 48h31c41 0 48 -16 48 -48v-83h89c12 0 48 0 48 -36s-36 -36 -48 -36h-89v-236c0 -66 15 -83 39 -83c42 0 69 22 80 30 c6 6 7 7 12 7c9 0 11 -6 16 -26c6 -21 8 -28 8 -31'], + 0x1D602: [458,11,561,60,500,'500 48c0 -35 -10 -48 -48 -48h-37c-41 0 -48 16 -48 48v26c-47 -85 -118 -85 -145 -85c-104 0 -162 30 -162 137v284c0 37 12 48 48 48h40c41 0 48 -16 48 -48v-293c0 -53 6 -67 62 -67c71 0 106 57 106 123v237c0 35 10 48 48 48h40c41 0 48 -16 48 -48v-362'], + 0x1D603: [458,0,500,26,473,'473 430c0 -3 0 -5 -5 -19l-119 -369c-14 -42 -45 -42 -63 -42h-73c-18 0 -49 0 -63 42l-119 369c-5 14 -5 16 -5 19c0 28 25 28 40 28h24c48 0 55 -22 62 -43l99 -302l99 302c9 28 20 43 62 43h21c15 0 40 0 40 -28'], + 0x1D604: [458,0,744,24,719,'719 430l-107 -384c-10 -34 -20 -46 -63 -46h-68c-50 0 -55 19 -66 55c-13 47 -57 205 -63 262l-1 -1c-4 -52 -40 -178 -63 -261c-11 -40 -19 -55 -66 -55h-28c-25 0 -51 0 -64 46l-106 384c3 28 24 28 43 28h20c41 0 52 -11 62 -45l80 -283c35 117 79 290 88 305 c14 23 37 23 52 23c46 0 53 -23 59 -45l85 -300l81 290c14 52 26 55 73 55c31 0 49 0 52 -28'], + 0x1D605: [458,0,500,24,474,'474 22c0 -22 -21 -22 -35 -22h-44c-21 0 -33 0 -47 20l-102 144l-86 -128c-22 -33 -24 -36 -57 -36h-43c-14 0 -36 0 -36 22c0 8 4 13 10 20l158 195l-151 180c-7 8 -10 12 -10 19c0 22 22 22 35 22h44c23 0 34 -1 51 -22l86 -108c17 23 82 110 87 115 c14 15 26 15 44 15h43c15 0 35 0 35 -22c0 -5 0 -9 -10 -21l-145 -178l162 -194c7 -9 11 -13 11 -21'], + 0x1D606: [458,205,500,29,473,'473 431c0 -5 0 -7 -5 -20l-163 -474c-8 -24 -57 -142 -181 -142c-16 0 -70 2 -79 14c-3 4 -9 73 -9 81c0 12 8 15 13 15c3 0 5 -1 10 -4c11 -7 34 -21 67 -21c54 0 71 45 83 78c3 10 6 21 14 42l-189 416c-2 5 -5 12 -5 16c0 26 25 26 39 26h26c50 0 57 -15 85 -78 c43 -96 84 -189 89 -238h1c5 67 86 288 89 293c15 23 37 23 53 23h22c13 0 40 0 40 -27'], + 0x1D607: [458,0,476,31,441,'441 37c0 -37 -35 -37 -48 -37h-314c-17 0 -48 0 -48 42c0 16 2 21 12 34l244 309h-37l-145 -2c-27 0 -59 0 -59 37c0 38 35 38 48 38h296c17 0 48 0 48 -42c0 -16 -2 -21 -12 -34l-244 -309h46l153 2c29 0 60 0 60 -38'], + 0x1D608: [694,0,667,28,638,'638 0h-92l-33 204h-291l-120 -204h-74l409 694h88zM503 260l-36 257c-9 66 -11 91 -10 105h-1c-15 -37 -64 -122 -97 -181c-82 -143 -22 -38 -104 -181h248'], + 0x1D609: [694,0,667,97,696,'694 520c-17 -76 -104 -134 -200 -157c103 -17 174 -88 156 -175c-21 -98 -145 -188 -289 -188h-264l148 694h237c142 0 231 -82 212 -174zM615 519c14 66 -62 119 -173 119h-126l-53 -247h116c138 0 224 68 236 128zM569 189c17 80 -68 141 -174 141h-145l-58 -274h153 c108 0 208 58 224 133'], + 0x1D60A: [706,11,639,130,718,'718 670l-31 -82c-22 18 -47 33 -75 42c-27 9 -58 12 -88 12c-65 0 -131 -35 -183 -86c-58 -59 -96 -134 -112 -209s-10 -149 24 -208c30 -51 81 -86 146 -86c34 0 69 1 104 12c36 10 69 29 102 49l-8 -69c-34 -18 -69 -36 -105 -45c-36 -10 -71 -11 -106 -11 c-88 0 -161 40 -206 105c-47 69 -60 160 -40 253s71 184 148 254c73 65 162 105 250 105c32 0 64 -2 93 -8c31 -6 60 -16 87 -28'], + 0x1D60B: [694,0,722,96,746,'737 341c-40 -189 -208 -341 -378 -341h-263l148 694h262c172 0 273 -159 231 -353zM651 341c38 176 -40 297 -180 297h-153l-124 -582h153c140 0 268 115 304 285'], + 0x1D60C: [691,0,597,94,687,'687 691l-14 -65h-183c-12 0 -24 1 -36 1h-138l-50 -237h330l-13 -61h-330l-55 -259h209c12 0 24 1 36 1h126l-15 -71h-460l147 691h446'], + 0x1D60D: [691,0,569,94,673,'673 691l-14 -65h-176c-12 0 -24 1 -36 1h-131l-53 -251h302l-13 -61h-302l-67 -315h-89l147 691h432'], + 0x1D60E: [706,11,667,130,729,'729 656l-32 -82c-21 22 -46 41 -77 52c-29 12 -62 16 -96 16c-65 0 -131 -35 -183 -86c-58 -59 -96 -134 -112 -209s-10 -149 24 -208c30 -51 81 -86 146 -86c45 0 92 7 137 21l35 165h-132l13 61h210l-56 -262c-72 -32 -147 -49 -220 -49c-87 0 -161 40 -206 105 c-47 69 -60 160 -40 253s71 184 148 254c73 65 163 105 250 105c35 0 69 -3 102 -11c32 -9 62 -22 89 -39'], + 0x1D60F: [694,0,708,94,761,'761 694l-148 -694h-89l70 330h-341l-70 -330h-89l148 694h89l-65 -303h341l65 303h89'], + 0x1D610: [694,0,278,94,331,'331 694l-148 -694h-89l148 694h89'], + 0x1D611: [694,22,472,46,536,'536 694l-116 -545c-24 -113 -109 -171 -212 -171c-84 0 -140 30 -162 42l30 75c26 -38 74 -56 116 -56c118 0 139 96 142 113l116 542h86'], + 0x1D612: [694,0,694,96,785,'785 694l-327 -274l193 -420h-92l-168 364l-162 -137l-48 -227h-85l148 694h85l-79 -371l442 371h93'], + 0x1D613: [694,0,542,94,513,'513 66l-14 -66h-405l148 694h89l-134 -630h49'], + 0x1D614: [694,0,875,100,922,'922 694l-148 -694h-78l132 620l-1 1c-10 -23 -52 -95 -68 -124l-75 -127l-207 -348h-73l-66 389c-11 68 -28 177 -27 209h-1l-132 -620h-78l148 694h113l15 -87l69 -414c6 -42 10 -79 11 -100h1c21 47 94 171 148 262l203 339h114'], + 0x1D615: [694,0,708,96,759,'759 694l-148 -694h-124l-142 486l-38 137h-1l-132 -623h-78l148 694h124l141 -486l38 -137h1l133 623h78'], + 0x1D616: [716,22,736,119,762,'752 345c-44 -210 -223 -367 -390 -367c-163 0 -278 155 -233 367c45 208 221 371 391 371c166 0 277 -161 232 -371zM667 360c38 179 -45 292 -161 292c-112 0 -246 -109 -284 -292c-41 -192 37 -317 155 -317c114 0 248 122 290 317'], + 0x1D617: [694,0,639,96,690,'687 492c-24 -112 -150 -203 -274 -203h-167l-61 -289h-89l148 694h249c138 0 216 -95 194 -202zM606 492c18 85 -37 146 -147 146h-141l-62 -291h141c115 0 192 66 209 145'], + 0x1D618: [716,125,736,119,762,'752 345c-22 -105 -85 -227 -212 -312l85 -158h-103l-60 121c-46 -17 -84 -18 -100 -18c-163 0 -278 155 -233 367c45 208 221 371 391 371c166 0 277 -161 232 -371zM666 345c40 185 -40 307 -160 307c-116 0 -251 -120 -291 -307c-39 -186 44 -303 162 -303 c29 0 58 9 58 9l-71 143h89l57 -105c107 82 143 191 156 256'], + 0x1D619: [694,0,646,96,700,'697 508c-17 -81 -99 -152 -209 -182l129 -326h-89l-121 317h-158l-67 -317h-86l148 694h241c143 0 233 -87 212 -186zM616 508c15 71 -38 130 -154 130h-144l-56 -260h144c118 0 195 59 210 130'], + 0x1D61A: [716,22,556,54,607,'607 666l-32 -80c-31 31 -72 64 -156 64c-92 0 -159 -60 -171 -119c-9 -44 12 -73 18 -79c25 -26 40 -30 95 -44c87 -23 118 -32 154 -82c17 -24 38 -72 24 -137c-23 -110 -137 -211 -269 -211c-63 0 -140 14 -216 69l32 81c69 -71 157 -81 198 -81c91 0 160 66 174 132 c9 43 -6 76 -22 93c-23 25 -32 28 -113 49c-56 14 -97 26 -130 71c-31 42 -36 84 -27 127c21 99 129 197 268 197c73 0 125 -17 173 -50'], + 0x1D61B: [688,0,681,168,790,'790 688l-14 -65h-134c-12 0 -23 1 -35 1h-89l-133 -624h-89l133 624h-90c-12 0 -25 -1 -37 -1h-134l14 65h608'], + 0x1D61C: [694,22,688,137,741,'741 694l-98 -461c-31 -145 -168 -255 -302 -255c-135 0 -229 109 -197 255l98 461h89l-99 -462c-28 -135 40 -198 122 -198c84 0 182 66 210 198l99 462h78'], + 0x1D61D: [694,0,667,162,800,'800 694l-421 -694h-92l-125 694h93l77 -448c4 -24 24 -134 23 -174h1c19 46 135 239 160 280l206 342h78'], + 0x1D61E: [694,0,944,162,1077,'1077 694l-351 -694h-87l-30 401c-7 95 -10 190 -8 220h-1c-17 -52 -92 -201 -128 -274l-174 -347h-81l-55 694h86l21 -282l11 -167c1 -33 7 -131 3 -171h1c17 56 104 231 142 308l157 312h81l25 -341c18 -228 12 -281 12 -281h1c16 51 100 219 145 308l158 314h72'], + 0x1D61F: [694,0,667,14,758,'758 694l-311 -328l205 -366h-104l-157 306l-281 -306h-96l347 366l-185 328h104l138 -261l244 261h96'], + 0x1D620: [694,0,667,151,811,'811 694l-376 -417l-59 -277h-86l59 278l-198 416h105l136 -290c12 -24 11 -26 24 -57l81 95l22 26l204 226h88'], + 0x1D621: [694,0,611,56,702,'702 694l-9 -41l-510 -589h32l263 2h96l-14 -66h-504l9 43l511 590h-136c-12 0 -25 -1 -37 -1h-200l14 62h485'], + 0x1D622: [461,11,481,75,474,'470 289l-61 -289h-75l8 36c-68 -45 -162 -47 -176 -47c-87 0 -97 81 -88 124c19 88 155 130 305 132l9 43c16 74 -16 114 -63 114c-49 0 -101 -13 -161 -50l8 66c53 27 101 43 166 43c92 0 150 -70 128 -172zM372 194c-43 -2 -207 -9 -222 -79c-8 -42 32 -65 80 -65 c11 0 49 1 82 19c38 19 43 44 47 63'], + 0x1D623: [694,11,517,82,534,'527 223c-28 -134 -135 -234 -235 -234c-67 0 -103 35 -122 57l-10 -46h-78l148 694h75l-64 -298c71 49 135 59 174 59c94 0 139 -108 112 -232zM449 223c28 128 -39 171 -98 171c-55 0 -99 -35 -120 -59l-47 -221c15 -46 45 -64 84 -64c61 0 154 43 181 173'], + 0x1D624: [461,11,444,77,499,'499 418l-26 -65c-47 36 -80 44 -132 44c-106 0 -163 -96 -180 -174c-20 -98 20 -170 103 -170c51 0 108 14 168 54l-8 -67c-62 -37 -120 -51 -174 -51c-125 0 -193 109 -167 233c25 118 132 239 271 239c61 0 93 -9 145 -43'], + 0x1D625: [694,11,517,75,582,'582 694l-148 -694h-78l11 52c-67 -54 -128 -63 -161 -63c-95 0 -151 102 -123 233c28 129 128 233 227 233c37 0 90 -11 134 -55l63 294h75zM428 339c-15 32 -40 55 -85 55c-59 0 -154 -41 -182 -173c-26 -124 37 -171 99 -171c26 0 52 8 80 28c38 29 43 47 46 61'], + 0x1D626: [461,11,444,77,471,'461 219h-309c-18 -98 31 -169 111 -169c23 0 89 4 164 56l-8 -65c-45 -28 -107 -52 -170 -52c-120 0 -194 105 -166 237c27 129 140 235 251 235c36 0 95 -11 122 -73c27 -60 12 -135 5 -169zM415 274c7 92 -42 126 -94 126c-57 0 -121 -50 -153 -126h247'], + 0x1D627: [705,0,306,101,495,'495 694l-15 -67c-31 15 -57 17 -77 17c-26 0 -95 -7 -110 -81l-26 -119h113l-12 -58h-110l-82 -386h-75l82 386h-74l12 58h74l20 90c21 100 108 171 202 171c37 0 66 -8 78 -11'], + 0x1D628: [455,206,500,11,571,'571 455l-3 -63s-40 3 -58 3c-24 0 -53 -4 -75 -4l-4 1c8 -15 22 -52 12 -100c-19 -89 -105 -163 -195 -163c-37 0 -67 14 -84 29c-9 -9 -17 -25 -19 -36c-11 -53 34 -53 47 -53h88c39 0 206 0 176 -139c-16 -77 -128 -136 -251 -136c-122 0 -208 60 -192 135 c5 26 27 72 86 103c-13 21 -16 50 -10 76c1 5 9 44 47 85c-14 26 -20 62 -12 99c19 91 108 163 194 163c40 0 71 -15 88 -32c33 13 95 32 165 32zM373 292c17 78 -24 106 -67 106c-37 0 -94 -23 -112 -106s30 -106 67 -106c43 0 95 28 112 106zM386 -72 c14 69 -99 69 -121 69h-90c-78 0 -91 -65 -92 -68c-10 -47 54 -78 135 -78c82 0 158 33 168 77'], + 0x1D629: [694,0,517,81,505,'498 298l-63 -298h-78l62 291c7 32 21 103 -75 103c-76 0 -119 -83 -133 -149l-52 -245h-78l148 694h75l-67 -311c41 41 96 72 158 72c122 0 117 -91 103 -157'], + 0x1D62A: [655,0,239,81,303,'250 444l-94 -444h-75l94 444h75zM303 655l-19 -89h-89l19 89h89'], + 0x1D62B: [655,205,267,-97,323,'278 444l-107 -503c-20 -94 -93 -146 -156 -146c-26 0 -70 6 -112 34l34 61c17 -21 39 -31 67 -31c18 0 76 5 90 72l109 513h75zM323 655l-19 -89h-89l19 89h89'], + 0x1D62C: [694,0,489,84,543,'543 444l-204 -172l132 -272h-82l-108 224l-98 -83l-30 -141h-69l148 694h72l-98 -458l247 208h90'], + 0x1D62D: [694,0,239,81,304,'304 694l-148 -694h-75l148 694h75'], + 0x1D62E: [455,0,794,81,783,'776 298l-63 -298h-78l62 291c8 38 17 103 -76 103c-74 0 -118 -81 -133 -149l-52 -245h-78l62 291c8 38 17 103 -76 103c-74 0 -118 -81 -133 -149l-52 -245h-78l96 450h72l-16 -72c35 36 91 77 163 77c32 0 100 -6 110 -82c49 54 107 82 167 82c121 0 118 -90 103 -157 '], + 0x1D62F: [455,0,517,81,505,'498 298l-63 -298h-78l62 291c7 32 21 103 -75 103c-76 0 -119 -83 -133 -149l-52 -245h-78l96 450h72l-15 -71c7 8 71 76 161 76c122 0 117 -91 103 -157'], + 0x1D630: [461,11,500,71,521,'516 220c-28 -130 -149 -231 -269 -231c-117 0 -198 99 -170 231c28 131 148 241 271 241c119 0 196 -107 168 -241zM440 230c25 118 -36 170 -106 170c-65 0 -151 -49 -177 -170s34 -177 103 -177c74 0 155 59 180 177'], + 0x1D631: [455,194,517,41,534,'527 223c-29 -136 -137 -234 -234 -234c-60 0 -98 28 -123 57l-51 -240h-78l135 638h75l-10 -49c54 39 117 60 177 60c96 0 135 -112 109 -232zM449 223c20 92 -24 168 -100 168c-43 0 -87 -23 -118 -58l-43 -201c-4 -18 -4 -20 3 -35c14 -27 37 -47 76 -47 c75 0 161 70 182 173'], + 0x1D632: [455,194,517,75,531,'531 455l-138 -649h-78l52 244c-50 -38 -108 -61 -164 -61c-96 0 -147 105 -120 232c29 135 136 234 236 234c78 0 115 -55 122 -68l15 68h75zM419 280c8 40 -8 111 -77 111c-73 0 -159 -68 -181 -170c-20 -93 24 -171 100 -171c36 0 76 17 111 57c13 13 13 15 17 33'], + 0x1D633: [455,0,342,82,424,'424 455l-15 -67c-98 -2 -185 -74 -207 -174l-45 -214h-75l96 450h70l-20 -91c41 46 106 95 196 96'], + 0x1D634: [461,11,383,35,434,'434 429l-26 -65c-49 34 -102 38 -134 38c-13 0 -85 0 -98 -62c-10 -49 34 -59 86 -70c48 -9 74 -15 106 -50c1 -3 31 -37 19 -92c-9 -43 -34 -83 -71 -107c-49 -32 -104 -32 -122 -32c-81 0 -130 28 -159 44l26 68c16 -12 64 -49 145 -49c15 0 94 0 109 69 c11 53 -44 65 -79 72c-53 11 -74 15 -100 37c-21 19 -43 51 -33 100c28 131 169 131 194 131c51 0 90 -8 137 -32'], + 0x1D635: [571,11,361,101,410,'410 444l-12 -58h-141l-53 -250c-11 -53 -4 -83 33 -83c32 0 67 12 97 33l4 -59c-28 -13 -84 -38 -154 -38c-69 0 -68 70 -56 130l57 267h-84l12 58h87l27 127h69l-27 -127h141'], + 0x1D636: [444,11,517,98,529,'529 444l-94 -444h-75l10 48c-58 -43 -132 -59 -185 -59c-83 0 -96 48 -81 120l71 335h78l-70 -331c-9 -43 -8 -69 63 -69c64 0 128 35 144 110l61 290h78'], + 0x1D637: [444,0,461,108,540,'540 444l-266 -444h-88l-78 444h78l42 -259c5 -27 16 -96 14 -132h1c18 47 66 128 99 183l123 208h75'], + 0x1D638: [444,0,683,108,762,'762 444l-231 -444h-88l-20 248c-4 43 -6 112 -3 140h-1c-10 -37 -59 -136 -83 -182l-106 -206h-79l-43 444h76l16 -173c4 -55 13 -168 8 -216h1c15 51 73 166 91 201l97 188h70l20 -213c5 -57 11 -146 8 -177h1c15 43 66 142 84 178l109 212h73'], + 0x1D639: [444,0,461,0,537,'537 444l-228 -215l151 -229h-83l-110 188l-185 -188h-82l243 229l-143 215h83l103 -165l169 165h82'], + 0x1D63A: [444,205,461,1,540,'540 444l-331 -535c-63 -102 -103 -114 -138 -114c-22 0 -49 3 -70 8l8 65c27 -12 59 -16 75 -16c14 0 31 0 69 58l55 90l-100 444h79l28 -125c2 -9 42 -195 34 -262h1c6 23 18 69 215 387h75'], + 0x1D63B: [444,0,435,28,494,'494 444l-8 -39l-339 -344h85c12 0 24 1 36 1h147l-13 -62h-374l9 41l340 345h-78c-12 0 -24 -1 -36 -1h-139l12 59h358'], + 0x1D63C: [694,0,733,47,696,'696 27c-6 -27 -31 -27 -45 -27h-54c-48 0 -51 20 -55 55l-14 96h-277l-62 -111c-23 -40 -54 -40 -72 -40h-36c-14 0 -39 0 -33 27c1 5 1 7 9 20l339 604c25 43 54 43 74 43h88c20 0 49 0 54 -43l83 -604c2 -13 2 -15 1 -20zM516 237l-35 281c-3 23 -3 25 -2 49h-1 c-16 -36 -37 -74 -62 -118l-117 -212h217'], + 0x1D63D: [694,0,733,98,753,'749 514c-16 -78 -80 -130 -177 -151c36 -6 170 -28 140 -169c-38 -181 -225 -194 -299 -194h-274c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h246c42 0 255 0 216 -180zM613 511c20 94 -96 97 -135 97h-117l-45 -211h116c25 0 156 0 181 114zM574 196 c27 129 -112 129 -147 129h-126l-51 -239h145c48 0 157 7 179 110'], + 0x1D63E: [706,11,703,122,773,'773 656l-41 -107c-2 -5 -8 -10 -15 -10c-3 0 -6 1 -8 3c-18 21 -40 38 -66 49c-27 11 -57 15 -87 15c-62 0 -128 -17 -178 -64c-56 -53 -81 -125 -96 -195s-20 -142 13 -195c31 -46 89 -63 151 -63c34 0 69 1 104 12c36 11 69 31 101 52c3 1 5 2 8 2c6 0 11 -5 10 -11 l-11 -86c-1 -6 -5 -10 -8 -12c-37 -19 -74 -36 -112 -46s-76 -11 -113 -11c-100 0 -199 20 -255 90c-56 69 -56 170 -35 268c21 99 64 200 149 269c86 69 193 90 293 90c33 0 67 -2 99 -8s63 -16 92 -28c4 -2 7 -6 5 -14'], + 0x1D63F: [694,0,794,98,818,'805 342c-42 -196 -158 -342 -402 -342h-264c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h264c65 0 182 -12 237 -105c41 -71 33 -168 17 -247zM661 342c23 112 47 266 -169 266h-128l-111 -522h129c213 0 255 143 279 256'], + 0x1D640: [691,0,642,98,719,'717 643l-2 -8c-10 -48 -33 -48 -68 -48l-235 3h-49l-39 -185h263c35 0 46 -10 38 -47c-8 -40 -27 -47 -58 -47h-263l-43 -205l146 2l155 2c33 0 56 0 46 -48l-3 -14c-7 -35 -20 -48 -58 -48h-408c-37 0 -45 12 -38 48l127 595c8 37 22 48 58 48h393c41 0 44 -16 38 -48'], + 0x1D641: [691,0,611,98,703,'701 643l-2 -8c-10 -48 -33 -48 -67 -48l-226 3h-43l-41 -197h232c35 0 45 -10 38 -47c-9 -40 -27 -47 -58 -47h-232l-54 -251c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l127 595c8 37 22 48 58 48h377c41 0 44 -16 38 -48'], + 0x1D642: [706,11,733,122,785,'785 642l-41 -106c-2 -6 -8 -11 -14 -11c-4 0 -7 2 -9 4c-18 24 -41 46 -70 59c-28 13 -61 18 -95 18c-62 0 -128 -17 -178 -64c-56 -53 -81 -125 -96 -195s-20 -142 13 -195c31 -46 89 -63 151 -63c32 0 65 4 97 11l28 130h-83c-7 0 -11 6 -9 13l14 69c2 7 8 13 15 13 h207c7 0 11 -6 9 -13l-55 -262c-1 -5 -5 -9 -10 -11c-77 -33 -157 -50 -234 -50c-100 0 -199 20 -255 90c-56 69 -56 170 -35 268c21 99 64 200 149 269c86 69 193 90 293 90c37 0 73 -3 108 -12c35 -8 67 -22 96 -38c4 -2 6 -7 4 -14'], + 0x1D643: [694,0,794,98,841,'839 646l-127 -598c-7 -35 -20 -48 -58 -48h-51c-41 0 -45 16 -38 48l57 266h-317l-57 -266c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h51c41 0 44 -16 37 -48l-50 -238h317l50 238c8 35 21 48 59 48h51c41 0 44 -16 37 -48'], + 0x1D644: [694,0,331,99,378,'376 646l-127 -598c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h51c41 0 44 -16 37 -48'], + 0x1D645: [694,22,519,52,566,'564 646l-105 -497c-25 -117 -122 -171 -229 -171c-45 0 -103 9 -156 35c-18 8 -23 11 -21 20c1 4 22 57 34 88c4 10 8 19 18 19c6 0 7 -2 13 -12c10 -18 36 -50 94 -50c88 0 99 56 104 77l104 491c8 35 21 48 59 48h48c41 0 44 -16 37 -48'], + 0x1D646: [694,0,764,98,839,'839 673c-1 -4 -2 -10 -16 -21l-316 -247l200 -376c-6 -29 -20 -29 -41 -29h-60c-19 0 -34 0 -46 21l-160 300l-133 -105l-36 -168c-7 -35 -20 -48 -58 -48h-34c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h34c41 0 44 -16 37 -48l-58 -276l386 304c26 20 46 20 63 20 h61c14 0 34 0 29 -21'], + 0x1D647: [694,0,581,98,548,'546 57l-2 -9c-7 -35 -20 -48 -58 -48h-347c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h51c41 0 44 -16 37 -48l-116 -545l250 4c46 0 42 -25 37 -48'], + 0x1D648: [694,0,978,98,1025,'1023 646l-127 -598c-7 -35 -20 -48 -58 -48h-27c-41 0 -45 16 -38 48l110 517h-1c-12 -26 -95 -162 -110 -186l-195 -314c-27 -43 -51 -43 -85 -43s-58 0 -67 43l-56 285c-11 59 -32 170 -34 215h-1l-110 -517c-7 -35 -20 -48 -58 -48h-27c-37 0 -45 12 -38 48l127 598 c8 37 23 48 59 48h83c18 0 50 0 58 -41l61 -316c9 -53 29 -152 31 -188h1c15 35 72 127 104 178l200 324c26 41 52 43 77 43h84c41 0 44 -16 37 -48'], + 0x1D649: [694,0,794,98,841,'839 646l-127 -598c-7 -35 -20 -48 -58 -48h-93c-20 0 -50 0 -62 40l-162 533h-1l-112 -525c-7 -35 -20 -48 -58 -48h-27c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h93c20 0 50 0 62 -40l162 -533h1l111 525c8 35 21 48 59 48h27c41 0 44 -16 37 -48'], + 0x1D64A: [716,22,794,119,819,'805 342c-44 -205 -156 -364 -414 -364c-270 0 -297 177 -257 364c39 183 138 374 415 374c262 0 298 -173 256 -374zM661 358c19 90 60 280 -129 280c-188 0 -229 -192 -248 -280c-19 -91 -64 -300 125 -300c188 0 233 211 252 300'], + 0x1D64B: [694,0,703,98,749,'743 478c-31 -144 -139 -210 -296 -210h-152l-47 -220c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h250c154 0 238 -65 206 -216zM604 478c14 70 14 130 -117 130h-123l-55 -261h122c134 0 158 64 173 131'], + 0x1D64C: [716,106,794,119,819,'805 342c-16 -72 -58 -237 -201 -314l47 -84c9 -18 11 -20 9 -28c-5 -22 -28 -22 -41 -22h-80c-33 0 -35 3 -49 35l-26 54c-33 -5 -56 -5 -73 -5c-270 0 -297 177 -257 364c39 183 138 374 415 374c262 0 298 -173 256 -374zM661 343c19 89 63 295 -129 295 c-191 0 -235 -207 -254 -295c-19 -89 -61 -287 130 -287c4 0 20 2 20 2c1 3 -11 27 -13 32c-13 25 -35 70 -33 81c5 23 27 23 41 23h61c20 0 24 0 32 -11l40 -71c69 64 92 168 105 231'], + 0x1D64D: [694,0,703,98,752,'747 497c-27 -124 -130 -162 -196 -177l108 -290c-6 -30 -23 -30 -43 -30h-59c-22 0 -33 0 -42 24l-103 287h-111l-56 -263c-7 -35 -20 -48 -58 -48h-48c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h240c45 0 262 0 220 -197zM607 496c14 66 3 112 -113 112h-130 l-48 -225h130c123 0 149 54 161 113'], + 0x1D64E: [716,22,611,61,651,'651 654c-1 -3 -1 -5 -5 -13l-33 -87c-6 -15 -12 -18 -18 -18c-4 0 -5 1 -18 16c-38 48 -86 61 -142 61c-34 0 -119 -2 -137 -87c-12 -57 45 -80 66 -85l91 -22c95 -23 160 -107 137 -219c-33 -155 -142 -222 -292 -222c-26 0 -79 2 -142 23c-4 2 -101 38 -96 59 c0 3 1 5 5 13l33 87c6 15 12 18 18 18c4 0 6 0 15 -12c41 -45 106 -79 190 -79c33 0 120 3 140 97c8 38 -8 59 -16 69c-18 20 -39 25 -92 38c-74 18 -119 28 -159 80c-15 20 -42 66 -27 137c40 187 199 208 288 208c51 0 109 -5 173 -40c22 -13 23 -14 21 -22'], + 0x1D64F: [688,0,733,171,830,'828 640l-2 -8c-10 -48 -34 -48 -62 -48l-199 3l-115 -539c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l115 539l-202 -3c-28 0 -52 0 -42 48l2 8c8 37 22 48 58 48h556c41 0 45 -16 38 -48'], + 0x1D650: [694,22,764,132,811,'809 646l-88 -417c-46 -217 -228 -251 -342 -251c-127 0 -284 41 -239 252l88 416c8 37 23 48 59 48h51c41 0 44 -16 37 -48l-89 -420c-22 -103 -3 -162 113 -162c122 0 164 65 185 163l89 419c8 35 21 48 59 48h40c41 0 44 -16 37 -48'], + 0x1D651: [694,0,733,168,847,'847 667c-1 -5 -3 -6 -9 -18l-352 -605c-25 -44 -53 -44 -74 -44h-92c-20 0 -49 0 -55 42l-95 607c-2 12 -2 13 -1 18c6 27 31 27 45 27h54c21 0 49 0 55 -43l67 -447c7 -41 10 -76 11 -79l84 154l214 371c26 44 55 44 76 44h39c14 0 39 0 33 -27'], + 0x1D652: [694,0,1039,164,1156,'1155 665c0 0 -1 -5 -8 -19l-292 -604c-20 -42 -48 -42 -69 -42h-72c-20 0 -48 0 -50 42l-22 377c-4 65 -5 90 -4 148h-1l-60 -130l-188 -391c-22 -46 -50 -46 -71 -46h-66c-21 0 -49 0 -51 42l-36 604c-1 14 0 19 0 19c7 29 34 29 48 29h34c19 0 48 0 50 -43l18 -320 c4 -63 9 -151 6 -203h1l41 95l46 99l158 328c22 44 50 44 71 44h66c29 0 47 -5 50 -44l22 -405c5 -88 5 -90 4 -117h1l59 128l190 394c22 44 50 44 70 44h21c14 0 41 0 34 -29'], + 0x1D653: [694,0,733,41,792,'792 671c-2 -7 -3 -8 -15 -20l-266 -283l183 -326c3 -5 6 -13 5 -20c-5 -22 -28 -22 -41 -22h-83c-19 0 -35 0 -45 22l-116 240l-212 -238c-16 -18 -21 -24 -54 -24h-75c-14 0 -36 0 -31 23c1 7 3 8 14 20l305 325l-158 284c-8 12 -7 14 -6 20c5 22 26 22 40 22h83 c21 0 34 0 46 -23l95 -185l171 187c20 21 37 21 54 21h75c14 0 36 0 31 -23'], + 0x1D654: [694,0,733,166,851,'851 671c-2 -7 -9 -16 -14 -21l-340 -373l-49 -230c-8 -37 -23 -47 -58 -47h-48c-37 0 -45 12 -38 48l49 230l-182 373c-4 8 -6 13 -4 20c5 23 27 23 41 23h66c36 0 56 -8 72 -41l78 -162c14 -28 28 -57 37 -88c24 36 49 63 95 113l127 140c36 38 67 38 88 38h49 c14 0 36 0 31 -23'], + 0x1D655: [694,0,672,68,750,'747 644c-5 -22 -5 -24 -18 -37l-468 -506l320 4c34 0 57 0 47 -48l-2 -9c-7 -35 -20 -48 -58 -48h-459c-37 0 -45 12 -38 48l2 8c4 20 5 22 17 35l470 508h-35l-261 -3c-40 0 -61 0 -51 49c7 32 17 49 59 49h438c47 0 43 -23 37 -50'], + 0x1D656: [475,11,525,65,545,'541 316l-57 -268c-7 -35 -20 -48 -58 -48h-37c-41 0 -45 16 -38 48l4 20c-61 -69 -138 -79 -172 -79c-88 0 -129 74 -114 144c32 147 294 149 329 149l7 35c13 59 4 92 -50 92c-62 0 -117 -22 -169 -67c-4 -3 -8 -6 -13 -6c-7 0 -11 5 -10 11c0 8 7 66 8 73 c3 11 8 14 31 23c73 28 124 32 171 32c50 0 202 -1 168 -159zM389 241c-28 -1 -168 -8 -189 -106c-8 -38 11 -74 53 -74c3 0 98 0 118 93'], + 0x1D657: [694,11,561,68,582,'572 231c-11 -50 -51 -242 -264 -242c-16 0 -67 0 -103 50c-9 -39 -39 -39 -56 -39h-40c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h37c41 0 44 -16 37 -48l-49 -233c11 10 71 56 153 56c188 0 147 -190 137 -238zM436 230c16 75 35 167 -66 167 c-46 0 -81 -23 -96 -35l-56 -262c8 -14 28 -39 70 -39c112 0 132 95 148 169'], + 0x1D658: [475,11,489,77,541,'541 422c-1 -5 -23 -61 -27 -69c-2 -4 -6 -13 -16 -13c-4 0 -6 0 -15 11c-30 30 -54 46 -119 46c-102 0 -124 -84 -142 -165c-13 -64 -35 -165 69 -165c82 0 138 41 158 56c12 10 14 10 18 10c10 0 10 -10 10 -13c-1 -13 -7 -59 -9 -70c-2 -10 -4 -11 -35 -26 c-74 -34 -134 -35 -161 -35c-151 0 -221 75 -186 241c37 175 145 245 294 245c70 0 98 -10 141 -32c15 -8 22 -12 20 -21'], + 0x1D659: [694,11,561,75,638,'636 646l-127 -598c-7 -35 -20 -48 -58 -48h-40c-34 0 -46 10 -38 47c-53 -46 -98 -58 -140 -58c-198 0 -157 193 -148 239c11 49 52 241 255 241c31 0 79 -7 115 -50l48 227c8 35 21 48 59 48h37c41 0 44 -16 37 -48zM441 366c-18 21 -43 31 -72 31 c-112 0 -132 -94 -148 -169c-15 -75 -35 -167 66 -167c12 0 35 2 64 18c33 20 35 29 39 46'], + 0x1D65A: [475,11,511,72,542,'534 260c-9 -45 -35 -46 -58 -46h-272c-10 -64 -17 -153 96 -153c32 0 93 7 163 58c13 10 15 10 19 10c9 0 10 -1 8 -32c-1 -8 -4 -37 -6 -44c-2 -12 -10 -15 -34 -26c-73 -33 -131 -38 -169 -38c-157 0 -235 80 -200 244c32 152 130 242 290 242c149 0 191 -86 163 -215 zM425 267c13 78 11 136 -69 136c-87 0 -123 -75 -139 -136h208'], + 0x1D65B: [705,0,336,93,525,'523 667l-10 -46c-3 -16 -6 -26 -19 -26c-5 0 -7 2 -12 10c-16 19 -34 28 -66 28c-65 0 -74 -40 -79 -66l-24 -109h51c12 0 48 0 41 -36c-8 -36 -44 -36 -56 -36h-48l-72 -338c-7 -35 -20 -48 -58 -48h-37c-37 0 -45 12 -38 48l72 338c-22 0 -56 0 -48 36 c7 36 42 36 63 36l17 80c32 150 156 167 231 167c15 0 36 0 64 -6c32 -7 33 -8 28 -32'], + 0x1D65C: [469,206,550,8,621,'621 443c0 -10 0 -34 -1 -38c-1 -7 -8 -13 -16 -13c-3 0 -9 2 -13 4c-38 11 -73 11 -90 11c6 -11 21 -46 8 -104c-35 -165 -194 -165 -236 -165c-21 0 -80 0 -121 26c-2 -6 -4 -8 -5 -15c-6 -26 8 -41 11 -45c12 -12 26 -12 62 -12h48c135 0 276 0 242 -156 c-30 -142 -221 -142 -280 -142c-47 0 -114 1 -165 27c-57 29 -61 81 -54 112c13 64 69 82 85 88c-15 27 -14 60 -10 79c1 5 10 44 44 81c-31 33 -31 83 -22 123c35 165 194 165 236 165c43 0 94 -4 134 -35c43 23 96 35 127 35c18 0 17 -2 16 -26zM382 304 c11 55 16 93 -54 93s-81 -39 -93 -94c-11 -55 -16 -93 54 -93s81 39 93 94zM407 -67c7 36 -32 50 -113 50h-116c-23 0 -54 0 -64 -47c-14 -70 93 -70 133 -70c32 0 146 0 160 67'], + 0x1D65D: [694,0,561,67,575,'569 325l-59 -277c-7 -35 -20 -48 -58 -48h-40c-41 0 -45 16 -38 48l59 275c10 51 5 74 -43 74c-52 0 -118 -41 -137 -128l-47 -221c-7 -35 -20 -48 -58 -48h-40c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h37c41 0 44 -16 37 -48l-58 -274h1c20 28 81 97 181 97 c102 0 137 -41 115 -144'], + 0x1D65E: [673,0,256,68,336,'281 410l-77 -362c-7 -35 -20 -48 -58 -48h-37c-37 0 -45 12 -38 48l77 362c8 37 22 48 58 48h37c41 0 45 -16 38 -48zM334 625l-4 -19c-7 -30 -16 -48 -58 -48h-51c-43 0 -44 19 -38 48l4 19c7 35 20 48 58 48h51c41 0 45 -16 38 -48'], + 0x1D65F: [673,205,286,-105,359,'311 410l-94 -442c-21 -99 -76 -173 -186 -173c-63 0 -140 28 -136 47c1 3 12 22 18 32c15 26 16 27 24 27c4 0 7 -3 9 -4c19 -14 41 -18 59 -18c60 0 69 40 74 65l99 466c8 35 20 48 58 48h37c41 0 45 -16 38 -48zM357 625l-4 -19c-7 -30 -16 -48 -58 -48h-51 c-43 0 -44 19 -38 48l4 19c7 35 20 48 58 48h51c41 0 45 -16 38 -48'], + 0x1D660: [694,0,531,76,575,'575 437c-2 -8 -5 -11 -20 -22l-184 -143l125 -228c8 -13 6 -22 6 -22c-5 -22 -27 -22 -41 -22h-48c-29 0 -35 3 -48 25l-94 170c-19 -14 -37 -29 -56 -43l-22 -104c-7 -35 -20 -48 -58 -48h-18c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h21c41 0 44 -16 37 -48 l-73 -343l173 134c27 21 46 21 64 21h58c14 0 34 0 30 -21'], + 0x1D661: [694,0,256,68,333,'331 646l-127 -598c-7 -35 -20 -48 -58 -48h-37c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h37c41 0 44 -16 37 -48'], + 0x1D662: [469,0,867,67,881,'875 325l-59 -277c-7 -35 -20 -48 -58 -48h-40c-37 0 -45 12 -38 48l59 275c11 53 4 74 -44 74c-49 0 -118 -38 -137 -128l-47 -221c-7 -35 -20 -48 -58 -48h-40c-37 0 -45 12 -38 48l59 275c11 53 4 74 -44 74c-49 0 -118 -38 -137 -128l-47 -221 c-7 -35 -20 -48 -58 -48h-40c-37 0 -45 12 -38 48l78 368c8 37 23 48 59 48h34c41 0 44 -16 37 -48l-10 -50h1c10 15 37 47 73 70c52 33 94 33 113 33c42 0 126 -3 122 -99c50 66 112 99 183 99c102 0 137 -41 115 -144'], + 0x1D663: [469,0,561,67,575,'569 325l-59 -277c-7 -35 -20 -48 -58 -48h-40c-41 0 -45 16 -38 48l59 275c10 51 5 74 -43 74c-52 0 -118 -41 -137 -128l-47 -221c-7 -35 -20 -48 -58 -48h-40c-37 0 -45 12 -38 48l78 368c8 37 23 48 59 48h34c41 0 44 -16 37 -48l-10 -50h1c19 27 80 103 185 103 c102 0 137 -41 115 -144'], + 0x1D664: [475,11,550,70,575,'566 225c-35 -164 -137 -236 -294 -236s-228 73 -193 236c34 161 130 250 297 250c163 0 225 -86 190 -250zM432 237c17 78 36 166 -72 166c-107 0 -126 -89 -143 -166c-17 -80 -36 -170 72 -170c107 0 127 91 143 170'], + 0x1D665: [469,194,561,27,583,'572 231c-11 -50 -51 -242 -263 -242c-14 0 -69 0 -104 50l-39 -185c-7 -35 -20 -48 -58 -48h-40c-37 0 -46 12 -38 48l118 556c8 37 22 48 58 48h37c34 0 46 -10 38 -47c44 34 102 58 161 58c181 0 141 -189 130 -238zM436 229c9 44 33 162 -69 162 c-43 0 -81 -23 -94 -33l-51 -240c-4 -18 -5 -23 16 -40c10 -9 26 -17 49 -17c113 0 140 128 149 168'], + 0x1D666: [469,194,561,75,590,'588 421l-120 -567c-7 -35 -20 -48 -58 -48h-40c-41 0 -45 16 -38 48l41 194c-42 -39 -83 -59 -136 -59c-186 0 -168 161 -152 239c17 80 68 241 261 241c17 0 76 0 105 -67l4 19c8 35 21 48 59 48h37c41 0 44 -16 37 -48zM433 313c2 12 6 30 -15 55 c-14 19 -34 23 -50 23c-112 0 -138 -124 -147 -164c-8 -39 -35 -166 67 -166c46 0 79 29 102 54'], + 0x1D667: [469,0,372,68,452,'450 442l-10 -47c-6 -26 -8 -26 -26 -27c-64 -4 -151 -43 -171 -138l-39 -182c-7 -35 -20 -48 -58 -48h-37c-37 0 -45 12 -38 48l78 368c8 37 23 48 59 48h32c41 0 44 -16 37 -48l-13 -65h1c70 108 145 118 173 118c18 0 16 -7 12 -27'], + 0x1D668: [475,11,422,40,469,'469 429c-1 -5 -23 -61 -26 -69c-2 -4 -6 -13 -16 -13c-4 0 -6 0 -14 10c-21 22 -52 47 -119 47c-39 0 -74 -8 -83 -49c-8 -39 30 -47 83 -57c41 -8 74 -14 107 -50c14 -16 37 -51 25 -107c-31 -148 -158 -152 -209 -152c-17 0 -58 0 -110 17c0 0 -70 24 -66 42 c2 10 26 67 31 81c3 6 7 15 17 15c6 0 8 -3 12 -8c35 -56 88 -69 132 -69c39 0 80 7 90 54c9 44 -40 53 -68 58c-55 11 -92 18 -120 50c-22 24 -38 54 -27 103c30 143 164 143 209 143c26 0 58 -1 95 -12c11 -4 61 -18 57 -34'], + 0x1D669: [589,11,404,108,445,'445 422c-8 -36 -44 -36 -56 -36h-89l-50 -236c-14 -66 -3 -83 21 -83c42 0 74 22 87 30c7 6 8 7 13 7c9 0 10 -6 11 -26c1 -21 2 -28 1 -31c-4 -19 -66 -37 -84 -42c-55 -16 -99 -16 -108 -16c-69 0 -96 43 -75 144l54 253h-20c-12 0 -48 0 -40 36c7 36 44 36 55 36h23 l18 83c8 37 22 48 58 48h31c41 0 45 -16 38 -48l-18 -83h89c12 0 48 0 41 -36'], + 0x1D66A: [458,11,561,81,589,'587 410l-77 -362c-7 -35 -20 -48 -58 -48h-37c-41 0 -45 16 -38 48l6 26c-65 -85 -136 -85 -163 -85c-104 0 -156 30 -133 137l60 284c8 37 22 48 58 48h40c41 0 45 -16 38 -48l-62 -293c-11 -53 -8 -67 48 -67c71 0 118 57 132 123l50 237c8 35 20 48 58 48h40 c41 0 45 -16 38 -48'], + 0x1D66B: [458,0,500,116,564,'564 430c0 -3 -1 -5 -9 -19l-197 -369c-23 -42 -54 -42 -72 -42h-73c-18 0 -49 0 -54 42l-41 369c-2 14 -1 16 -1 19c6 28 31 28 46 28h24c48 0 51 -22 53 -43l35 -302l163 302c15 28 29 43 71 43h21c15 0 40 0 34 -28'], + 0x1D66C: [458,0,744,115,810,'810 430l-188 -384c-17 -34 -30 -46 -73 -46h-68c-50 0 -51 19 -54 55c-3 47 -14 205 -8 262l-1 -1c-15 -52 -78 -178 -118 -261c-20 -40 -31 -55 -78 -55h-28c-25 0 -51 0 -54 46l-25 384c9 28 30 28 49 28h20c41 0 50 -11 53 -45l20 -283c60 117 140 290 152 305 c19 23 42 23 57 23c46 0 48 -23 50 -45l21 -300l143 290c25 52 37 55 84 55c31 0 49 0 46 -28'], + 0x1D66D: [458,0,500,28,549,'549 436c-1 -5 -2 -9 -15 -21l-183 -178l121 -194c5 -9 8 -13 7 -21c-5 -22 -26 -22 -40 -22h-44c-21 0 -33 0 -43 20l-71 144l-113 -128c-29 -33 -32 -36 -65 -36h-43c-14 0 -36 0 -31 22c1 8 6 13 14 20l199 195l-112 180c-6 8 -8 12 -6 19c4 22 26 22 39 22h44 c23 0 34 -1 47 -22l63 -108c22 23 105 110 111 115c17 15 29 15 47 15h43c15 0 35 0 31 -22'], + 0x1D66E: [458,205,500,3,565,'565 431c-1 -5 -2 -7 -10 -20l-263 -474c-13 -24 -88 -142 -212 -142c-16 0 -69 2 -76 14c-2 4 7 73 9 81c2 12 11 15 16 15c3 0 5 -1 9 -4c9 -7 29 -21 62 -21c54 0 81 45 100 78c5 10 11 21 23 42l-101 416c-1 5 -2 12 -1 16c5 26 30 26 44 26h26c50 0 54 -15 69 -78 c22 -96 44 -189 38 -238h1c19 67 147 288 151 293c20 23 42 23 58 23h22c13 0 40 0 35 -27'], + 0x1D66F: [458,0,476,38,527,'526 416c-3 -16 -6 -21 -19 -34l-309 -309h46l153 2c29 0 60 0 52 -38c-8 -37 -43 -37 -56 -37h-314c-17 0 -48 0 -39 42c3 16 6 21 19 34l310 309h-37l-146 -2c-27 0 -59 0 -51 37c8 38 43 38 56 38h296c17 0 48 0 39 -42'], + 0x1D756: [694,0,733,42,690,'690 27c0 -27 -25 -27 -39 -27h-54c-48 0 -55 20 -67 55l-34 96h-277l-39 -111c-14 -40 -45 -40 -63 -40h-36c-14 0 -39 0 -39 27c0 5 0 7 5 20l211 604c15 43 44 43 64 43h88c20 0 49 0 64 -43l211 -604c5 -13 5 -15 5 -20zM466 237l-95 281c-8 23 -8 25 -13 49h-1 c-8 -36 -21 -74 -36 -118l-72 -212h217'], + 0x1D757: [694,0,733,91,671,'671 194c0 -181 -184 -194 -258 -194h-274c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h246c42 0 255 0 255 -180c0 -78 -53 -130 -145 -151c37 -6 176 -28 176 -169zM504 511c0 94 -116 97 -155 97h-117v-211h116c25 0 156 0 156 114zM532 196c0 129 -139 129 -174 129 h-126v-239h145c48 0 155 7 155 110'], + 0x1D758: [691,0,581,91,534,'534 635c0 -48 -23 -48 -55 -48l-209 3h-32v-542c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v595c0 37 12 48 48 48h347c41 0 48 -16 48 -48v-8'], + 0x1D759: [694,0,917,60,856,'856 25c0 -25 -25 -25 -38 -25h-720c-13 0 -38 0 -38 25c0 4 0 6 7 20l278 610c18 39 49 39 68 39h90c19 0 50 0 68 -39l279 -612c6 -12 6 -14 6 -18zM648 132l-201 440l-201 -440h402'], + 0x1D75A: [691,0,642,91,595,'595 48c0 -35 -10 -48 -48 -48h-408c-37 0 -48 12 -48 48v595c0 37 12 48 48 48h393c41 0 48 -16 48 -48v-8c0 -48 -23 -48 -58 -48l-235 3h-49v-185h263c35 0 48 -10 48 -47c0 -40 -17 -47 -48 -47h-263v-205l146 2l155 2c33 0 56 0 56 -48v-14'], + 0x1D75B: [694,0,672,61,616,'616 48c0 -35 -10 -48 -48 -48h-459c-37 0 -48 12 -48 48v8c0 20 0 22 10 35l362 508h-35l-261 -3c-40 0 -61 0 -61 49c0 32 6 49 48 49h438c47 0 48 -23 48 -50c0 -22 0 -24 -10 -37l-360 -506l319 4c34 0 57 0 57 -48v-9'], + 0x1D75C: [694,0,794,91,702,'702 48c0 -35 -10 -48 -48 -48h-51c-41 0 -48 16 -48 48v266h-317v-266c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-238h317v238c0 35 10 48 48 48h51c41 0 48 -16 48 -48v-598'], + 0x1D75D: [716,22,856,61,794,'794 342c0 -249 -128 -364 -367 -364c-250 0 -366 127 -366 364c0 248 121 374 367 374c250 0 366 -131 366 -374zM653 343c0 88 0 301 -226 301c-225 0 -225 -215 -225 -301c0 -87 0 -290 225 -290c224 0 226 199 226 290zM591 330c0 -40 -15 -48 -52 -48h-223 c-39 0 -52 10 -52 48v37c0 40 15 48 52 48h223c39 0 52 -10 52 -48v-37'], + 0x1D75E: [694,0,331,92,239,'239 48c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h51c41 0 48 -16 48 -48v-598'], + 0x1D75F: [694,0,764,91,701,'701 29c0 -29 -14 -29 -35 -29h-60c-19 0 -34 0 -50 21l-224 300l-111 -105v-168c0 -35 -10 -48 -48 -48h-34c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h34c41 0 48 -16 48 -48v-276l322 304c21 20 41 20 58 20h61c14 0 34 0 34 -21c0 -4 0 -10 -12 -21l-263 -247'], + 0x1D760: [694,0,672,40,631,'631 28c0 -28 -28 -28 -41 -28h-55c-26 0 -49 3 -61 43l-112 373c-8 28 -13 45 -20 75c-4 14 -15 57 -17 73h-1c-1 -14 -3 -29 -24 -105l-38 -135l-85 -281c-12 -40 -35 -43 -61 -43h-35c-13 0 -41 0 -41 28c0 3 1 5 5 18l186 605c12 40 34 43 61 43h87 c28 0 49 -4 61 -43l186 -605c4 -13 5 -15 5 -18'], + 0x1D761: [694,0,978,91,886,'886 48c0 -35 -10 -48 -48 -48h-27c-41 0 -48 16 -48 48v517h-1c-7 -26 -61 -162 -71 -186l-128 -314c-18 -43 -42 -43 -76 -43s-58 0 -76 43l-116 285c-24 59 -69 170 -80 215h-1v-517c0 -35 -10 -48 -48 -48h-27c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h83 c18 0 50 0 67 -41l128 -316c21 -53 62 -152 71 -188h1c8 35 45 127 66 178l132 324c17 41 42 43 67 43h84c41 0 48 -16 48 -48v-598'], + 0x1D762: [694,0,794,91,702,'702 48c0 -35 -10 -48 -48 -48h-93c-20 0 -50 0 -71 40l-275 533h-1v-525c0 -35 -10 -48 -48 -48h-27c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h93c20 0 50 0 71 -40l275 -533h1v525c0 35 10 48 48 48h27c41 0 48 -16 48 -48v-598'], + 0x1D763: [688,0,733,46,686,'680 614c0 -48 -19 -48 -69 -48l-245 2l-245 -2c-49 0 -69 0 -69 48v26c0 37 12 48 48 48h532c41 0 48 -16 48 -48v-26zM686 48c0 -35 -10 -48 -48 -48h-544c-37 0 -48 12 -48 48v26c0 48 19 48 70 48l250 -2l250 2c51 0 70 0 70 -48v-26zM610 346c0 -35 -10 -48 -48 -48 h-392c-41 0 -48 16 -48 48v24c0 37 12 48 48 48h392c41 0 48 -16 48 -48v-24'], + 0x1D764: [716,22,794,61,732,'732 342c0 -205 -78 -364 -336 -364c-270 0 -335 177 -335 364c0 183 59 374 336 374c262 0 335 -173 335 -374zM585 358c0 90 0 280 -189 280c-188 0 -188 -192 -188 -280c0 -91 0 -300 189 -300c188 0 188 211 188 300'], + 0x1D765: [691,0,794,91,702,'702 48c0 -35 -10 -48 -48 -48h-51c-41 0 -48 16 -48 48v549h-317v-549c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v595c0 37 12 48 48 48h515c41 0 48 -16 48 -48v-595'], + 0x1D766: [694,0,703,91,641,'641 478c0 -144 -94 -210 -251 -210h-152v-220c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v598c0 37 12 48 48 48h250c154 0 252 -65 252 -216zM502 478c0 70 -13 130 -144 130h-123v-261h122c134 0 145 64 145 131'], + 0x1D767: [716,22,856,61,794,'794 342c0 -249 -128 -364 -367 -364c-250 0 -366 127 -366 364c0 248 121 374 367 374c250 0 366 -131 366 -374zM651 415c-9 99 -47 229 -224 229c-175 0 -214 -131 -223 -229h447zM651 283h-447c6 -97 41 -230 223 -230s218 132 224 230'], + 0x1D768: [694,0,794,61,732,'732 48c0 -35 -10 -48 -48 -48h-575c-11 0 -48 0 -48 36c0 8 3 17 13 29l228 272l-229 266c-12 14 -12 17 -12 41c0 28 2 50 48 50h575c41 0 48 -16 48 -48v-8c0 -48 -19 -48 -69 -48l-331 3h-57l188 -218c7 -8 13 -15 13 -28c0 -11 -5 -20 -13 -29l-175 -209h58l319 3 c47 0 67 0 67 -48v-16'], + 0x1D769: [688,0,733,40,692,'692 632c0 -48 -24 -48 -52 -48l-200 3v-539c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v539l-201 -3c-28 0 -52 0 -52 48v8c0 37 12 48 48 48h556c41 0 48 -16 48 -48v-8'], + 0x1D76A: [716,0,856,61,794,'794 558c0 -39 -34 -39 -49 -39h-38c-19 0 -46 0 -49 39c-3 31 -33 48 -61 48c-69 0 -96 -73 -96 -214v-344c0 -35 -10 -48 -48 -48h-51c-37 0 -48 12 -48 48v344c0 141 -28 214 -96 214c-26 0 -58 -15 -61 -48c-3 -39 -29 -39 -49 -39h-38c-15 0 -49 0 -49 39 c0 89 91 158 194 158c95 0 148 -70 172 -190h1c20 104 68 190 172 190c103 0 194 -69 194 -158'], + 0x1D76B: [694,0,794,61,732,'732 347c0 -175 -136 -231 -268 -241v-58c0 -35 -10 -48 -48 -48h-45c-37 0 -48 12 -48 48v59c-130 11 -262 67 -262 240c0 174 133 229 262 240v59c0 37 12 48 48 48h45c41 0 48 -16 48 -48v-58c134 -10 268 -67 268 -241zM323 181v332c-110 -20 -118 -104 -118 -166 s7 -146 118 -166zM588 347c0 58 -5 149 -124 167v-334c118 18 124 109 124 167'], + 0x1D76C: [694,0,733,37,694,'694 22c0 -22 -23 -22 -36 -22h-83c-19 0 -35 0 -50 22l-167 240l-161 -238c-12 -18 -16 -24 -49 -24h-75c-14 0 -36 0 -36 23c0 7 1 8 10 20l236 325l-219 284c-10 12 -10 14 -10 20c0 22 21 22 35 22h83c21 0 34 0 51 -23l135 -185l131 187c15 21 32 21 49 21h75 c14 0 36 0 36 -23c0 -7 -1 -8 -10 -20l-206 -283l252 -326c4 -5 9 -13 9 -20'], + 0x1D76D: [694,0,856,61,794,'794 583c0 -6 -2 -33 -37 -36c-15 -27 -15 -75 -15 -125c0 -72 0 -287 -247 -314v-60c0 -35 -10 -48 -48 -48h-45c-37 0 -48 12 -48 48v60c-240 30 -241 236 -241 325c0 69 -5 96 -15 114c-35 3 -37 30 -37 36c0 36 37 36 48 36h48c77 0 97 -59 97 -181 c0 -93 0 -216 100 -251v459c0 37 12 48 48 48h45c41 0 48 -16 48 -48v-459c97 29 106 141 106 227c0 105 0 205 97 205h48c12 0 48 0 48 -36'], + 0x1D76E: [716,0,794,49,744,'744 48c0 -35 -10 -48 -48 -48h-198c-17 0 -48 0 -48 42c0 81 43 168 75 232c45 89 60 137 60 191c0 127 -61 179 -189 179c-131 0 -188 -55 -188 -179c0 -59 19 -109 62 -197c32 -64 73 -148 73 -226c0 -42 -31 -42 -48 -42h-198c-37 0 -48 12 -48 48v12 c0 48 21 48 62 48c16 0 33 -1 49 -1h74c13 0 15 0 22 -1c-19 40 -38 67 -89 130c-58 70 -106 137 -106 228c0 52 16 147 106 202c73 44 156 50 230 50c60 0 167 -3 245 -61c80 -60 90 -150 90 -191c0 -94 -53 -163 -108 -232c-45 -55 -67 -83 -87 -126c6 1 8 1 22 1h74 c16 0 33 1 49 1c40 0 62 0 62 -48v-12'], + 0x1D76F: [694,0,917,60,856,'856 669c0 -4 0 -6 -7 -20l-278 -610c-18 -39 -49 -39 -68 -39h-90c-19 0 -50 0 -68 39l-279 612c-6 12 -6 14 -6 18c0 25 25 25 38 25h720c13 0 38 0 38 -25zM670 562h-402l201 -440'], + 0x1D770: [469,12,837,56,781,'781 83c0 -79 -88 -95 -150 -95c-57 0 -93 33 -124 80c-54 -50 -122 -80 -201 -80c-68 0 -138 15 -188 61c-47 46 -62 114 -62 180s15 135 62 180c50 47 120 60 188 60c77 0 149 -31 200 -84v39c0 8 4 12 12 12h111c8 0 13 -4 13 -12c0 -114 -17 -172 -45 -231 c10 -50 34 -128 37 -128c7 0 11 5 11 18c0 8 4 12 12 12h111c8 0 13 -4 13 -12zM461 172l-22 64c-24 77 -57 161 -133 161c-35 0 -70 -9 -90 -37c-25 -37 -24 -86 -24 -131s-1 -94 24 -130c20 -29 55 -38 90 -38c73 0 123 46 155 111'], + 0x1D771: [705,195,606,56,550,'550 204c0 -61 -17 -122 -63 -161c-48 -43 -116 -55 -181 -55c-40 0 -79 9 -114 24v-194c0 -9 -4 -13 -13 -13h-111c-8 0 -12 5 -12 13v640c0 138 112 247 250 247c53 0 108 -10 147 -46c37 -35 51 -88 51 -139c0 -41 -7 -82 -29 -114c66 -56 75 -127 75 -202zM368 520 c0 31 0 68 -13 90c-10 17 -29 23 -49 23c-74 0 -110 -93 -114 -193c40 9 75 18 114 18c20 0 39 0 59 -4c3 21 3 47 3 66zM414 204c0 45 -3 109 -25 148c-23 -10 -55 -18 -83 -18c-38 0 -80 10 -114 20l-1 -168c8 -66 51 -125 115 -125c32 0 66 7 85 32c23 30 23 72 23 111'], + 0x1D772: [469,217,698,56,641,'641 443c-22 -96 -53 -189 -79 -284c16 -83 19 -170 19 -256c0 -59 -18 -120 -69 -120c-50 0 -67 61 -67 120c0 68 3 138 9 207c-19 48 -40 96 -62 143c-23 49 -63 93 -116 93c-44 0 -84 -28 -84 -69c0 -9 -4 -13 -13 -13h-111c-8 0 -12 5 -12 13c0 112 103 192 220 192 c85 0 162 -44 211 -112l19 92c1 6 6 9 12 9h111c10 0 14 -5 12 -15'], + 0x1D773: [733,12,541,56,485,'485 211c0 -112 -74 -223 -173 -223c-70 0 -141 14 -192 61c-48 45 -64 114 -64 180s16 135 64 180c26 25 57 40 91 49c-55 76 -104 162 -90 205c14 45 47 68 94 70c59 3 116 -29 173 -41c72 -16 36 -119 -30 -93c-46 20 -91 56 -142 56c-13 0 -23 -2 -26 -14 c-12 -35 99 -108 165 -167c87 -77 130 -148 130 -263zM363 156c0 95 -40 144 -103 234c-17 -6 -33 -16 -43 -30c-26 -37 -25 -86 -25 -131s-1 -93 25 -130c22 -28 59 -38 95 -38c37 0 51 52 51 95'], + 0x1D774: [480,23,512,56,456,'454 84c-18 -72 -96 -107 -175 -107c-106 0 -223 33 -223 166c0 32 16 75 35 103c-17 23 -25 51 -25 80c0 115 112 154 213 154c47 0 91 -17 130 -45c58 -42 -5 -128 -62 -86c-20 14 -44 25 -68 25c-35 0 -79 -2 -79 -48c0 -8 1 -28 2 -42c15 3 31 7 46 7 c46 0 92 -10 92 -51s-46 -52 -92 -52c-15 0 -32 5 -48 7c-4 -15 -8 -35 -8 -52c0 -52 45 -59 87 -59c49 0 106 -4 118 40c6 26 72 19 57 -40'], + 0x1D775: [750,208,566,56,510,'510 -85c0 -61 -42 -123 -107 -123c-49 0 -87 14 -133 31c-28 12 -15 80 42 58c33 -13 54 -17 74 -17c12 0 14 9 14 18c0 5 -4 11 -9 13l-136 55c-140 43 -199 151 -199 302c0 137 97 274 184 335c-8 28 -11 62 -11 95c0 91 136 91 136 0c0 -18 -13 -40 -26 -61 c56 -3 103 -16 103 -60c0 -45 -55 -62 -107 -62c-24 0 -43 8 -59 23c-53 -47 -109 -146 -109 -241c0 -97 30 -171 121 -198l143 -57c54 -20 79 -65 79 -111'], + 0x1D776: [469,217,735,56,679,'679 -149c0 -91 -136 -91 -136 0v447c0 27 -1 55 -15 79c-8 13 -23 20 -39 20c-99 0 -111 -125 -114 -253l1 -87c0 -91 -137 -91 -137 0v287c0 25 -3 53 -24 53s-22 -55 -22 -91c0 -9 -4 -13 -13 -13h-112c-8 0 -12 5 -12 13c0 85 81 163 159 163c55 0 106 -21 135 -57 c36 36 82 57 139 57c51 0 105 -7 143 -41c36 -32 47 -81 47 -130v-447'], + 0x1D777: [705,12,567,56,511,'511 347c0 -92 -7 -188 -55 -266c-38 -58 -104 -93 -173 -93s-135 35 -172 93c-49 78 -55 174 -55 266s6 188 55 267c37 58 103 91 172 91c68 2 135 -33 173 -91c48 -79 55 -175 55 -267zM375 383c0 66 -3 135 -21 186c-12 34 -36 64 -71 64s-59 -30 -71 -64 c-18 -51 -20 -120 -20 -186h183zM375 311h-183c0 -65 2 -134 20 -186c12 -34 36 -64 71 -64s59 30 71 64c18 52 21 121 21 186'], + 0x1D778: [469,12,477,56,421,'421 153c0 -103 -98 -165 -210 -165c-82 0 -163 56 -154 129c13 93 16 190 16 284c0 91 136 91 136 0c0 -96 -4 -192 -17 -288c-3 -24 -1 -52 19 -52c47 0 74 43 74 92c0 8 4 12 12 12h111c8 0 13 -4 13 -12'], + 0x1D779: [469,12,675,56,619,'619 153c0 -106 -91 -165 -172 -165c-85 0 -162 56 -162 137c0 65 -22 83 -93 88v-156c0 -91 -136 -91 -136 0v344c0 91 136 91 136 0v-95c83 48 150 162 251 162c75 0 75 -111 0 -111c-24 0 -40 12 -48 28c-38 -25 -84 -72 -126 -105c77 -10 152 -55 152 -155 c0 -30 0 -64 26 -64c15 0 35 26 35 92c0 8 4 12 12 12h112c8 0 13 -4 13 -12'], + 0x1D77A: [694,12,764,56,708,'702 11c12 -9 7 -23 -8 -23h-107c-17 0 -44 11 -52 23l-150 228l-165 -223c-55 -73 -165 9 -109 83l198 256l-151 231c-15 23 -39 36 -65 36c-49 0 -49 72 0 72c66 0 158 -3 178 -33l377 -575c18 -26 46 -69 54 -75'], + 0x1D77B: [469,217,735,56,679,'679 153c0 -85 -82 -165 -160 -165c-47 0 -92 17 -122 44c-33 -27 -74 -44 -121 -44c-28 0 -57 3 -84 9v-146c0 -91 -136 -91 -136 0v550c0 91 136 91 136 0l-1 -241c2 -25 8 -50 21 -70c14 -21 39 -29 64 -29c67 0 80 76 84 154v175c0 91 136 91 136 0v-275 c0 -25 2 -54 23 -54s23 56 23 92c0 8 4 12 12 12h112c8 0 13 -4 13 -12'], + 0x1D77C: [469,0,574,56,518,'518 401c0 -194 -149 -332 -349 -393c-9 -3 -27 -7 -42 -8c-13 -1 -25 -1 -38 0c-22 2 -33 14 -33 36v392c0 24 12 36 36 36h64c24 0 36 -12 36 -36v-333c120 54 190 172 190 306c0 91 136 91 136 0'], + 0x1D77D: [750,226,574,56,518,'518 -103c0 -61 -42 -123 -107 -123c-49 0 -87 14 -133 31c-28 12 -15 80 42 58c33 -13 54 -17 74 -17c12 0 14 9 14 18c0 6 -3 11 -9 13l-195 67c-81 28 -148 92 -148 175c0 64 26 121 67 162c-42 35 -67 84 -67 142c0 82 63 149 139 180c-5 25 -7 52 -7 79 c0 91 136 91 136 0c0 -18 -13 -40 -26 -61c57 -3 103 -15 103 -60s-54 -62 -107 -62c-24 0 -43 9 -60 24c-22 -24 -41 -62 -41 -100c0 -31 6 -63 20 -87c23 7 47 11 71 11c53 0 107 -16 107 -61s-54 -63 -107 -63c-31 0 -59 6 -87 15c-22 -23 -36 -55 -36 -89 c0 -38 38 -59 76 -72l206 -71c53 -18 75 -63 75 -109'], + 0x1D77E: [475,11,599,56,543,'543 225c0 -164 -87 -236 -244 -236s-243 73 -243 236c0 161 77 250 244 250c163 0 243 -86 243 -250zM407 237c0 78 0 166 -108 166c-107 0 -107 -89 -107 -166c0 -80 0 -170 108 -170c107 0 107 91 107 170'], + 0x1D77F: [458,12,760,55,703,'664 101c58 -70 -47 -157 -105 -88c-73 89 -99 204 -104 321h-58c-2 -100 -7 -199 -34 -295c-24 -87 -156 -51 -131 36c24 81 28 170 29 259h-14c-23 0 -46 -7 -55 -27c-2 -5 -6 -8 -11 -8h-112c-12 0 -16 7 -11 18c36 79 104 141 189 141h396c81 0 81 -124 0 -124h-53 c3 -86 19 -169 74 -233'], + 0x1D780: [469,217,567,56,511,'511 229c0 -65 -13 -132 -57 -180c-43 -45 -108 -61 -171 -61c-31 0 -62 4 -90 13l-1 -150c0 -91 -136 -91 -136 0v378c0 74 12 132 57 180c42 45 107 60 170 60s128 -15 171 -60c44 -48 57 -115 57 -180zM375 229c0 45 0 96 -20 132c-14 24 -42 36 -72 36 c-29 0 -58 -12 -72 -36c-20 -36 -19 -87 -19 -132s-1 -96 19 -131c15 -25 43 -37 72 -37s57 12 72 37c20 35 20 86 20 131'], + 0x1D781: [469,109,524,56,468,'398 431c51 -52 -14 -99 -39 -74c-18 18 -38 40 -60 40c-71 0 -138 -40 -138 -106c0 -39 29 -73 65 -90l163 -76c129 -61 87 -234 -29 -234c-29 0 -55 10 -82 20c-28 12 -14 80 43 58c12 -5 26 -6 39 -6c11 0 3 24 -28 39l-148 70c-75 34 -128 104 -128 186 c0 123 114 211 243 211c37 0 72 -13 99 -38'], + 0x1D782: [458,12,683,56,627,'565 334h-80c15 -38 20 -81 20 -123c0 -61 -15 -124 -57 -166c-45 -43 -107 -57 -168 -57s-125 14 -168 57c-43 42 -56 105 -56 166c0 66 11 135 56 184c41 47 105 63 168 63h285c83 0 83 -124 0 -124zM368 211c0 34 1 74 -18 99c-16 21 -44 24 -70 24 c-27 0 -55 -3 -71 -24c-19 -25 -17 -65 -17 -99c0 -41 -1 -85 18 -117c14 -24 42 -33 70 -33s55 9 69 33c19 32 19 76 19 117'], + 0x1D783: [458,11,699,55,642,'582 334h-145v-277c0 -91 -136 -91 -136 0v277h-54c-23 0 -46 -7 -55 -27c-2 -5 -6 -8 -11 -8h-112c-12 0 -16 7 -11 18c36 79 104 141 189 141h335c81 0 81 -124 0 -124'], + 0x1D784: [470,12,728,56,672,'672 261c0 -131 -78 -273 -193 -273c-67 0 -137 7 -189 49c-46 35 -51 95 -51 153c0 39 8 105 15 156c3 23 1 51 -19 51c-42 0 -42 -51 -42 -91c0 -9 -4 -13 -13 -13h-112c-8 0 -12 5 -12 13c0 88 73 163 179 163c82 0 164 -55 154 -127c-8 -51 -14 -113 -14 -152 c0 -35 -8 -73 16 -98c22 -24 56 -31 88 -31c55 0 57 116 57 200c0 34 -9 78 -24 96c-59 68 42 158 102 89c42 -50 58 -119 58 -185'], + 0x1D785: [469,217,716,56,660,'660 250c0 -142 -116 -252 -257 -261v-138c0 -91 -136 -91 -136 0v154c-121 34 -211 123 -211 245c0 72 6 145 48 203c2 3 7 5 10 5h111c13 0 17 -9 10 -19c-38 -54 -43 -123 -43 -189c0 -51 30 -88 75 -110v13c0 158 57 316 197 316c112 0 196 -102 196 -219zM524 250 c0 47 -18 96 -60 96c-77 0 -61 -104 -61 -193v-40c68 8 121 66 121 137'], + 0x1D786: [469,206,849,56,793,'793 -79c0 -67 -66 -127 -154 -127c-71 0 -142 6 -180 84l-55 128l-145 -176c-58 -70 -163 17 -106 87l189 229l-67 176c-17 34 -49 75 -64 75c-16 0 -18 -27 -18 -54c0 -9 -4 -13 -13 -13h-112c-8 0 -12 5 -12 13c0 67 69 126 153 126c71 0 160 -35 181 -84l46 -126 l144 175c58 70 162 -17 105 -87l-189 -229l77 -174c19 -35 37 -79 64 -79c16 0 19 27 19 56c0 8 4 12 12 12h112c8 0 13 -4 13 -12'], + 0x1D787: [694,206,870,56,814,'814 261c-2 -124 -136 -260 -246 -270v-184c0 -9 -4 -13 -13 -13h-111c-8 0 -12 5 -12 13v184c-113 6 -203 89 -203 199c0 39 8 104 15 156c3 23 1 51 -19 51c-30 0 -32 -51 -32 -91c0 -9 -4 -13 -13 -13h-112c-8 0 -12 5 -12 13c0 89 57 163 169 163 c82 0 155 -55 145 -127c-7 -50 -11 -113 -11 -152c0 -51 18 -112 73 -120v612c0 8 4 12 12 12h111c8 0 13 -4 13 -12v-613c72 28 109 116 110 192c0 34 -9 78 -24 96c-59 68 44 158 102 89c42 -50 58 -119 58 -185'], + 0x1D788: [470,12,731,56,675,'675 250c0 -131 -67 -262 -181 -262c-53 0 -96 23 -131 59c-30 -36 -71 -59 -121 -59c-119 0 -186 129 -186 262c0 63 20 125 56 178c49 76 162 1 114 -75c-20 -31 -34 -66 -34 -103c0 -63 -5 -138 50 -138c26 0 49 12 68 30c-12 34 -17 70 -17 108c0 41 27 77 67 77 s69 -36 69 -77c0 -35 -5 -72 -15 -104c22 -20 50 -34 80 -34c42 0 45 77 45 138c0 39 -9 88 -26 109c-56 70 49 156 107 85c43 -53 55 -125 55 -194'], + 0x1D789: [716,22,569,56,513,'513 340c0 -103 0 -362 -233 -362c-77 0 -125 19 -166 65c-52 58 -58 115 -58 193c0 57 0 243 195 243c55 0 105 -33 132 -91c-36 221 -143 228 -225 228c-25 0 -41 5 -41 20v52c0 19 9 28 35 28c266 0 361 -285 361 -376zM371 248c0 83 -24 159 -95 159 c-80 0 -80 -71 -80 -170c0 -98 0 -165 85 -165c79 0 90 90 90 176'], + 0x1D78A: [458,12,519,56,462,'461 47c3 -6 2 -12 -4 -16c-35 -26 -73 -43 -121 -43c-76 0 -154 15 -210 67c-54 48 -70 122 -70 195c0 60 17 119 63 157c51 41 120 51 187 51h61c47 0 47 -72 0 -72h-61c-33 0 -70 -5 -91 -31c-16 -19 -22 -43 -23 -69h175c47 0 47 -73 0 -73h-176c2 -39 8 -77 33 -108 c26 -33 70 -44 112 -44c40 0 51 36 59 62c4 14 16 14 23 2'], + 0x1D78B: [705,12,811,56,755,'755 331c0 -10 -5 -13 -15 -12c-17 2 -34 5 -51 8c-1 -85 -10 -172 -54 -245c-34 -59 -99 -94 -167 -94c-60 0 -134 4 -180 44c-42 37 -59 96 -59 151v161c0 25 -3 53 -24 53c-18 0 -12 -55 -12 -91c0 -9 -4 -13 -13 -13h-112c-8 0 -12 5 -12 13c0 85 45 163 149 163 c83 0 160 -70 160 -145v-141c0 -34 9 -70 28 -98c15 -20 50 -24 75 -24c34 0 55 31 66 64c20 63 19 151 19 231c-128 37 -229 130 -229 220c0 82 64 129 154 129c69 0 122 -34 157 -92c38 -64 49 -138 52 -213c18 -4 38 -7 57 -10c7 -1 11 -5 11 -12v-47zM552 445 c-2 45 -7 90 -18 124c-11 33 -23 64 -56 64c-19 0 -18 -29 -18 -57c0 -61 38 -103 92 -131'], + 0x1D78C: [469,10,609,56,553,'553 395c0 -37 -16 -68 -35 -93c0 -25 -3 -57 2 -126c1 -17 18 -99 18 -118c0 -91 -136 -91 -136 0c0 19 -11 133 -11 152c-30 -13 -53 -28 -84 -42c-66 -29 -91 -51 -95 -98c-5 -56 -40 -80 -82 -80c-44 0 -74 18 -74 74c0 37 16 68 35 93c0 26 3 57 -2 126 c-1 17 -18 99 -18 118c0 91 136 91 136 0c0 -19 11 -133 11 -152c30 13 62 32 84 42c65 29 91 51 95 98c5 56 40 80 82 80c44 0 74 -18 74 -74'], + 0x1D78D: [694,206,730,56,674,'674 229c0 -69 -25 -139 -80 -181c-46 -36 -103 -51 -161 -56v-185c0 -9 -4 -13 -13 -13h-111c-8 0 -12 5 -12 13v185c-59 5 -116 20 -163 56c-55 42 -78 112 -78 181c0 70 23 139 78 181c47 36 104 51 163 56v216c0 8 4 12 12 12h111c8 0 13 -4 13 -12v-216 c58 -5 115 -20 161 -56c55 -42 80 -111 80 -181zM543 229c0 47 -6 96 -40 129c-20 18 -44 28 -70 34v-325c26 5 51 15 70 34c34 32 40 81 40 128zM297 67v326c-27 -6 -51 -16 -71 -35c-35 -33 -40 -82 -40 -129s5 -96 39 -128c20 -19 45 -29 72 -34'], + 0x1D78E: [469,245,567,56,511,'511 229c0 -65 -13 -132 -57 -180c-43 -45 -108 -61 -171 -61c-30 0 -60 4 -88 12c1 -12 3 -21 4 -26c11 -29 50 -36 84 -36c137 0 191 -88 191 -170c0 -9 -4 -13 -13 -13h-101c-8 0 -12 5 -12 13c0 40 -25 47 -45 47c-104 0 -171 31 -207 88c-32 52 -40 189 -40 326 c0 65 12 132 57 180c42 45 107 60 170 60s128 -15 171 -60c44 -48 57 -115 57 -180zM375 229c0 45 0 96 -20 132c-14 24 -42 36 -72 36c-29 0 -58 -12 -72 -36c-20 -36 -19 -87 -19 -132s-1 -96 19 -131c15 -25 43 -37 72 -37s57 12 72 37c20 35 20 86 20 131'], + 0x1D78F: [458,12,1035,55,978,'918 334h-34c9 -27 14 -55 14 -84c0 -164 -66 -262 -183 -262c-63 0 -114 32 -151 79c-35 -47 -85 -79 -147 -79c-110 0 -190 101 -190 216c0 45 9 89 26 130h-6c-23 0 -46 -7 -55 -27c-2 -5 -6 -8 -11 -8h-112c-12 0 -16 7 -11 18c36 79 104 141 189 141h671 c81 0 81 -124 0 -124zM762 250c0 29 -6 57 -16 84h-355c-17 -41 -27 -85 -27 -130s13 -92 53 -92c73 0 79 90 79 162c0 8 4 12 12 12h110c8 0 13 -4 13 -12c0 -74 10 -162 84 -162c53 0 47 75 47 138'], + 0x1D790: [694,0,733,47,696,'696 27c-6 -27 -31 -27 -45 -27h-54c-48 0 -51 20 -55 55l-14 96h-277l-62 -111c-23 -40 -54 -40 -72 -40h-36c-14 0 -39 0 -33 27c1 5 1 7 9 20l339 604c25 43 54 43 74 43h88c20 0 49 0 54 -43l83 -604c2 -13 2 -15 1 -20zM516 237l-35 281c-3 23 -3 25 -2 49h-1 c-16 -36 -37 -74 -62 -118l-117 -212h217'], + 0x1D791: [694,0,733,98,753,'749 514c-16 -78 -80 -130 -177 -151c36 -6 170 -28 140 -169c-38 -181 -225 -194 -299 -194h-274c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h246c42 0 255 0 216 -180zM613 511c20 94 -96 97 -135 97h-117l-45 -211h116c25 0 156 0 181 114zM574 196 c27 129 -112 129 -147 129h-126l-51 -239h145c48 0 157 7 179 110'], + 0x1D792: [691,0,581,98,673,'671 643l-2 -8c-10 -48 -33 -48 -65 -48l-209 3h-32l-115 -542c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l127 595c8 37 22 48 58 48h347c41 0 44 -16 38 -48'], + 0x1D793: [694,0,917,64,861,'861 25c-5 -25 -30 -25 -43 -25h-720c-13 0 -38 0 -33 25c1 4 2 6 12 20l407 610c27 39 58 39 77 39h90c19 0 50 0 59 -39l149 -612c4 -12 3 -14 2 -18zM676 132l-107 440l-295 -440h402'], + 0x1D794: [691,0,642,98,719,'717 643l-2 -8c-10 -48 -33 -48 -68 -48l-235 3h-49l-39 -185h263c35 0 46 -10 38 -47c-8 -40 -27 -47 -58 -47h-263l-43 -205l146 2l155 2c33 0 56 0 46 -48l-3 -14c-7 -35 -20 -48 -58 -48h-408c-37 0 -45 12 -38 48l127 595c8 37 22 48 58 48h393c41 0 44 -16 38 -48'], + 0x1D795: [694,0,672,68,750,'747 644c-5 -22 -5 -24 -18 -37l-468 -506l320 4c34 0 57 0 47 -48l-2 -9c-7 -35 -20 -48 -58 -48h-459c-37 0 -45 12 -38 48l2 8c4 20 5 22 17 35l470 508h-35l-261 -3c-40 0 -61 0 -51 49c7 32 17 49 59 49h438c47 0 43 -23 37 -50'], + 0x1D796: [694,0,794,98,841,'839 646l-127 -598c-7 -35 -20 -48 -58 -48h-51c-41 0 -45 16 -38 48l57 266h-317l-57 -266c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h51c41 0 44 -16 37 -48l-50 -238h317l50 238c8 35 21 48 59 48h51c41 0 44 -16 37 -48'], + 0x1D797: [716,22,856,120,880,'867 342c-53 -249 -206 -364 -445 -364c-250 0 -339 127 -288 364c52 248 200 374 446 374c250 0 338 -131 287 -374zM726 343c19 88 64 301 -162 301c-225 0 -271 -215 -289 -301c-19 -87 -62 -290 163 -290c224 0 269 199 288 290zM669 367l-8 -37 c-8 -40 -25 -48 -62 -48h-223c-39 0 -50 10 -42 48l8 37c9 40 25 48 62 48h223c39 0 50 -10 42 -48'], + 0x1D798: [694,0,331,99,378,'376 646l-127 -598c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h51c41 0 44 -16 37 -48'], + 0x1D799: [694,0,764,98,839,'839 673c-1 -4 -2 -10 -16 -21l-316 -247l200 -376c-6 -29 -20 -29 -41 -29h-60c-19 0 -34 0 -46 21l-160 300l-133 -105l-36 -168c-7 -35 -20 -48 -58 -48h-34c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h34c41 0 44 -16 37 -48l-58 -276l386 304c26 20 46 20 63 20 h61c14 0 34 0 29 -21'], + 0x1D79A: [694,0,672,45,637,'637 28c-6 -28 -34 -28 -47 -28h-55c-26 0 -48 3 -52 43l-33 373l-4 75c-1 14 -3 57 -1 73h-1c-4 -14 -9 -29 -46 -105l-67 -135l-145 -281c-20 -40 -44 -43 -70 -43h-35c-13 0 -41 0 -35 28c1 3 2 5 9 18l314 605c21 40 44 43 71 43h87c28 0 48 -4 51 -43l58 -605 c1 -13 2 -15 1 -18'], + 0x1D79B: [694,0,978,98,1025,'1023 646l-127 -598c-7 -35 -20 -48 -58 -48h-27c-41 0 -45 16 -38 48l110 517h-1c-12 -26 -95 -162 -110 -186l-195 -314c-27 -43 -51 -43 -85 -43s-58 0 -67 43l-56 285c-11 59 -32 170 -34 215h-1l-110 -517c-7 -35 -20 -48 -58 -48h-27c-37 0 -45 12 -38 48l127 598 c8 37 23 48 59 48h83c18 0 50 0 58 -41l61 -316c9 -53 29 -152 31 -188h1c15 35 72 127 104 178l200 324c26 41 52 43 77 43h84c41 0 44 -16 37 -48'], + 0x1D79C: [694,0,794,98,841,'839 646l-127 -598c-7 -35 -20 -48 -58 -48h-93c-20 0 -50 0 -62 40l-162 533h-1l-112 -525c-7 -35 -20 -48 -58 -48h-27c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h93c20 0 50 0 62 -40l162 -533h1l111 525c8 35 21 48 59 48h27c41 0 44 -16 37 -48'], + 0x1D79D: [688,0,733,53,818,'816 640l-5 -26c-11 -48 -30 -48 -80 -48l-244 2l-246 -2c-49 0 -69 0 -58 48l5 26c8 37 22 48 58 48h532c41 0 45 -16 38 -48zM702 74l-6 -26c-7 -35 -20 -48 -58 -48h-544c-37 0 -45 12 -38 48l6 26c10 48 29 48 80 48l250 -2l250 2c51 0 70 0 60 -48zM689 370l-5 -24 c-8 -35 -21 -48 -59 -48h-392c-41 0 -44 16 -37 48l5 24c8 37 22 48 58 48h392c41 0 44 -16 38 -48'], + 0x1D79E: [716,22,794,119,819,'805 342c-44 -205 -156 -364 -414 -364c-270 0 -297 177 -257 364c39 183 138 374 415 374c262 0 298 -173 256 -374zM661 358c19 90 60 280 -129 280c-188 0 -229 -192 -248 -280c-19 -91 -64 -300 125 -300c188 0 233 211 252 300'], + 0x1D79F: [691,0,794,98,841,'839 643l-127 -595c-7 -35 -20 -48 -58 -48h-51c-41 0 -45 16 -38 48l117 549h-317l-117 -549c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l127 595c8 37 22 48 58 48h515c41 0 44 -16 38 -48'], + 0x1D7A0: [694,0,703,98,749,'743 478c-31 -144 -139 -210 -296 -210h-152l-47 -220c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l127 598c8 37 23 48 59 48h250c154 0 238 -65 206 -216zM604 478c14 70 14 130 -117 130h-123l-55 -261h122c134 0 158 64 173 131'], + 0x1D7A1: [716,22,856,120,880,'867 342c-53 -249 -206 -364 -445 -364c-250 0 -339 127 -288 364c52 248 200 374 446 374c250 0 338 -131 287 -374zM739 415c13 99 2 229 -175 229c-175 0 -242 -131 -271 -229h446zM712 283h-448c-15 -97 -8 -230 174 -230s246 132 274 230'], + 0x1D7A2: [694,0,794,67,871,'869 646l-1 -8c-11 -48 -30 -48 -80 -48l-330 3h-57l142 -218c5 -8 10 -15 7 -28c-3 -11 -9 -20 -19 -29l-220 -209h58l320 3c47 0 67 0 57 -48l-4 -16c-7 -35 -20 -48 -58 -48h-575c-11 0 -48 0 -40 36c1 8 6 17 19 29l286 272l-173 266c-9 14 -8 17 -3 41 c6 28 13 50 59 50h575c41 0 44 -16 37 -48'], + 0x1D7A3: [688,0,733,171,830,'828 640l-2 -8c-10 -48 -34 -48 -62 -48l-199 3l-115 -539c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l115 539l-202 -3c-28 0 -52 0 -42 48l2 8c8 37 22 48 58 48h556c41 0 45 -16 38 -48'], + 0x1D7A4: [716,0,856,178,915,'913 558c-9 -39 -43 -39 -58 -39h-38c-19 0 -46 0 -40 39c3 31 -23 48 -51 48c-69 0 -112 -73 -142 -214l-73 -344c-7 -35 -20 -48 -58 -48h-51c-37 0 -45 12 -38 48l73 344c30 141 18 214 -50 214c-26 0 -61 -15 -71 -48c-12 -39 -38 -39 -58 -39h-38 c-15 0 -49 0 -40 39c19 89 124 158 227 158c95 0 133 -70 132 -190h1c42 104 108 190 212 190c103 0 180 -69 161 -158'], + 0x1D7A5: [694,0,794,128,812,'806 347c-37 -175 -185 -231 -319 -241l-13 -58c-7 -35 -20 -48 -58 -48h-45c-37 0 -45 12 -38 48l13 59c-128 11 -248 67 -211 240c37 174 181 229 313 240l12 59c8 37 23 48 59 48h45c41 0 44 -16 37 -48l-12 -58c132 -10 254 -67 217 -241zM432 513 c-114 -20 -140 -104 -153 -166s-24 -146 82 -166zM662 347c12 58 26 149 -89 167l-71 -334c122 18 147 109 160 167'], + 0x1D7A6: [694,0,769,60,811,'811 671c-2 -7 -3 -8 -15 -20l-266 -283l183 -326c3 -5 6 -13 5 -20c-5 -22 -28 -22 -41 -22h-83c-19 0 -35 0 -45 22l-116 240l-212 -238c-16 -18 -21 -24 -54 -24h-75c-14 0 -36 0 -31 23c1 7 3 8 14 20l305 325l-158 284c-8 12 -7 14 -6 20c5 22 26 22 40 22h83 c21 0 34 0 46 -23l95 -185l171 187c20 21 37 21 54 21h75c14 0 36 0 31 -23'], + 0x1D7A7: [694,0,856,184,919,'918 583c-1 -6 -9 -33 -45 -36c-20 -27 -31 -75 -41 -125c-16 -72 -61 -287 -314 -314l-13 -60c-7 -35 -20 -48 -58 -48h-45c-37 0 -45 12 -38 48l13 60c-234 30 -191 236 -172 325c15 69 15 96 9 114c-34 3 -30 30 -29 36c8 36 45 36 56 36h48c77 0 84 -59 58 -181 c-20 -93 -46 -216 47 -251l97 459c8 37 23 48 59 48h45c41 0 44 -16 37 -48l-97 -459c103 29 136 141 154 227c22 105 44 205 141 205h48c12 0 48 0 40 -36'], + 0x1D7A8: [716,0,794,56,836,'831 464c-20 -94 -88 -163 -158 -232c-56 -55 -84 -83 -113 -126c6 1 8 1 22 1h74c16 0 33 1 49 1c40 0 62 0 52 -48l-3 -12c-7 -35 -20 -48 -58 -48h-198c-17 0 -48 0 -39 42c17 81 79 168 124 232c64 89 89 137 101 191c27 127 -23 179 -151 179 c-131 0 -200 -55 -226 -179c-13 -59 -4 -109 20 -197c18 -64 42 -148 25 -226c-9 -42 -40 -42 -57 -42h-198c-37 0 -45 12 -38 48l3 12c10 48 31 48 72 48c16 0 33 -1 49 -1h74c13 0 15 0 22 -1c-11 40 -24 67 -62 130c-43 70 -77 137 -57 228c11 52 47 147 149 202 c82 44 166 50 240 50c60 0 167 -3 232 -61c67 -60 58 -150 50 -191'], + 0x1D7A9: [682,12,917,130,927,'927 657c-1 -4 -2 -6 -12 -20l-407 -610c-27 -39 -58 -39 -77 -39h-90c-19 0 -50 0 -59 39l-149 612c-4 12 -3 14 -2 18c5 25 30 25 43 25h720c13 0 38 0 33 -25zM718 550h-402l107 -440'], + 0x1D7AA: [469,12,837,96,799,'799 83c-17 -79 -109 -95 -171 -95c-57 0 -86 33 -107 80c-64 -50 -139 -80 -218 -80c-68 0 -134 15 -175 61c-37 46 -37 114 -23 180s43 135 100 180c60 47 133 60 201 60c77 0 142 -31 182 -84c1 6 7 33 8 39c2 8 7 12 15 12h111c8 0 12 -4 10 -12 c-24 -114 -53 -172 -94 -231c-1 -50 7 -128 10 -128c7 0 12 5 15 18c1 8 6 12 14 12h111c8 0 12 -4 11 -12zM498 172l-9 64c-7 77 -23 161 -99 161c-35 0 -72 -9 -97 -37c-33 -37 -43 -86 -52 -131c-10 -45 -21 -94 -4 -130c14 -29 47 -38 82 -38c73 0 133 46 179 111'], + 0x1D7AB: [705,195,606,16,620,'615 520c-9 -41 -25 -82 -54 -114c54 -56 48 -127 32 -202c-13 -61 -43 -122 -97 -161c-57 -43 -128 -55 -193 -55c-40 0 -77 9 -108 24l-42 -194c-2 -9 -6 -13 -15 -13h-111c-8 0 -11 5 -10 13l136 640c30 138 165 247 303 247c53 0 106 -10 137 -46 c30 -35 32 -88 22 -139zM485 610c-7 17 -24 23 -44 23c-74 0 -130 -93 -155 -193c41 9 78 18 117 18c20 0 39 0 58 -4c8 21 13 47 18 66c6 31 14 68 6 90zM464 352c-25 -10 -59 -18 -87 -18c-38 0 -78 10 -110 20l-36 -168c-6 -66 24 -125 88 -125c32 0 67 7 92 32 c29 30 38 72 46 111c10 45 21 109 7 148'], + 0x1D7AC: [469,217,697,114,736,'735 443c-42 -96 -93 -189 -139 -284c-2 -83 -17 -170 -36 -256c-12 -59 -43 -120 -94 -120c-50 0 -54 61 -42 120c15 68 33 138 53 207c-8 48 -19 96 -31 143c-13 49 -43 93 -96 93c-44 0 -90 -28 -99 -69c-2 -9 -7 -13 -16 -13h-111c-8 0 -11 5 -9 13 c24 112 144 192 261 192c85 0 152 -44 187 -112l38 92c3 6 8 9 14 9h111c10 0 13 -5 9 -15'], + 0x1D7AD: [733,12,541,96,566,'535 692c69 -16 11 -119 -50 -93c-41 20 -79 56 -130 56c-13 0 -23 -2 -29 -14c-19 -35 76 -108 130 -167c70 -77 98 -148 74 -263c-24 -112 -122 -223 -221 -223c-70 0 -138 14 -179 61c-38 45 -39 114 -25 180s44 135 102 180c31 25 65 40 101 49 c-38 76 -69 162 -46 205c23 45 61 68 109 70c59 3 110 -29 164 -41zM396 156c20 95 -9 144 -53 234c-18 -6 -37 -16 -49 -30c-34 -37 -44 -86 -53 -131c-10 -45 -21 -93 -3 -130c16 -28 51 -38 87 -38c37 0 62 52 71 95'], + 0x1D7AE: [480,23,513,81,516,'501 435c50 -42 -32 -128 -80 -86c-17 14 -39 25 -63 25c-35 0 -79 -2 -89 -48c-1 -8 -5 -28 -7 -42c16 3 33 7 48 7c46 0 90 -10 81 -51s-57 -52 -103 -52c-15 0 -31 5 -47 7c-7 -15 -15 -35 -19 -52c-11 -52 33 -59 75 -59c49 0 105 -4 126 40c12 26 76 19 49 -40 c-33 -72 -119 -107 -198 -107c-106 0 -216 33 -188 166c7 32 32 75 57 103c-12 23 -14 51 -8 80c25 115 145 154 246 154c47 0 87 -17 120 -45'], + 0x1D7AF: [750,208,566,98,562,'561 561c-9 -45 -68 -62 -120 -62c-24 0 -41 8 -54 23c-63 -47 -140 -146 -160 -241c-21 -97 -7 -171 79 -198l131 -57c49 -20 65 -65 55 -111c-13 -61 -68 -123 -133 -123c-49 0 -84 14 -127 31c-25 12 2 80 55 58c30 -13 50 -17 70 -17c12 0 16 9 18 18 c1 5 -2 11 -6 13l-125 55c-130 43 -167 151 -134 302c29 137 155 274 255 335c-2 28 2 62 9 95c19 91 155 91 136 0c-4 -18 -22 -40 -39 -61c55 -3 100 -16 90 -60'], + 0x1D7B0: [469,217,735,120,748,'742 298l-95 -447c-19 -91 -155 -91 -136 0l95 447c6 27 11 55 2 79c-5 13 -19 20 -35 20c-99 0 -137 -125 -167 -253l-18 -87c-19 -91 -156 -91 -137 0l61 287c5 25 8 53 -13 53s-33 -55 -41 -91c-2 -9 -7 -13 -16 -13h-112c-8 0 -11 5 -9 13c18 85 116 163 194 163 c55 0 101 -21 123 -57c43 36 94 57 151 57c51 0 103 -7 134 -41c29 -32 30 -81 19 -130'], + 0x1D7B1: [705,12,567,109,605,'587 614c31 -79 17 -175 -2 -267c-20 -92 -47 -188 -112 -266c-50 -58 -124 -93 -193 -93s-127 35 -152 93c-32 78 -18 174 2 266c19 92 46 188 112 267c49 58 122 91 191 91c68 2 128 -33 154 -91zM475 569c-5 34 -22 64 -57 64s-66 -30 -85 -64 c-29 -51 -46 -120 -60 -186h183c14 66 26 135 19 186zM441 311h-183c-14 -65 -26 -134 -19 -186c4 -34 22 -64 57 -64s65 30 85 64c29 52 46 121 60 186'], + 0x1D7B2: [469,12,477,76,454,'454 153c-22 -103 -134 -165 -246 -165c-82 0 -151 56 -126 129c33 93 56 190 76 284c20 91 156 91 136 0c-20 -96 -45 -192 -78 -288c-8 -24 -12 -52 8 -52c47 0 83 43 94 92c1 8 6 12 14 12h111c8 0 12 -4 11 -12'], + 0x1D7B3: [469,12,676,66,652,'652 153c-23 -106 -127 -165 -208 -165c-85 0 -150 56 -132 137c13 65 -5 83 -75 88l-33 -156c-19 -91 -155 -91 -136 0l73 344c20 91 156 91 136 0l-20 -95c93 48 184 162 285 162c75 0 52 -111 -23 -111c-24 0 -38 12 -42 28c-43 -25 -99 -72 -148 -105 c74 -10 140 -55 119 -155c-7 -30 -14 -64 12 -64c15 0 40 26 55 92c1 8 6 12 14 12h112c8 0 12 -4 11 -12'], + 0x1D7B4: [694,12,764,105,708,'704 11c10 -9 2 -23 -13 -23h-107c-17 0 -41 11 -47 23l-101 228l-213 -223c-70 -73 -163 9 -91 83l252 256l-101 231c-11 23 -32 36 -58 36c-49 0 -33 72 16 72c66 0 157 -3 170 -33l255 -575c13 -26 32 -69 38 -75'], + 0x1D7B5: [469,217,736,22,712,'712 153c-19 -85 -118 -165 -196 -165c-47 0 -88 17 -112 44c-39 -27 -84 -44 -131 -44c-28 0 -56 3 -82 9l-31 -146c-19 -91 -155 -91 -136 0l117 550c20 91 156 91 136 0l-52 -241c-3 -25 -3 -50 6 -70c10 -21 33 -29 58 -29c67 0 96 76 117 154l37 175 c19 91 155 91 136 0l-59 -275c-5 -25 -9 -54 12 -54s35 56 43 92c1 8 6 12 14 12h112c8 0 12 -4 11 -12'], + 0x1D7B6: [469,0,574,62,605,'603 401c-41 -194 -219 -332 -432 -393c-10 -3 -29 -7 -44 -8c-13 -1 -25 -1 -38 0c-22 2 -30 14 -25 36l83 392c5 24 20 36 44 36h64c24 0 33 -12 28 -36l-71 -333c132 54 227 172 255 306c20 91 156 91 136 0'], + 0x1D7B7: [750,226,574,77,521,'520 561c-9 -45 -67 -62 -120 -62c-24 0 -41 9 -55 24c-27 -24 -54 -62 -62 -100c-7 -31 -7 -63 1 -87c25 7 50 11 74 11c53 0 103 -16 94 -61c-10 -45 -68 -63 -121 -63c-31 0 -57 6 -83 15c-27 -23 -48 -55 -55 -89c-8 -38 25 -59 60 -72l191 -71 c49 -18 62 -63 52 -109c-13 -61 -68 -123 -133 -123c-49 0 -84 14 -126 31c-26 12 2 80 54 58c30 -13 50 -17 70 -17c12 0 16 9 18 18c1 6 -1 11 -6 13l-181 67c-75 28 -128 92 -111 175c14 64 52 121 102 162c-35 35 -49 84 -37 142c17 82 95 149 177 180c0 25 4 52 10 79 c19 91 155 91 136 0c-4 -18 -22 -40 -39 -61c56 -3 100 -15 90 -60'], + 0x1D7B8: [475,11,599,95,600,'591 225c-35 -164 -137 -236 -294 -236s-228 73 -193 236c34 161 130 250 297 250c163 0 225 -86 190 -250zM457 237c17 78 36 166 -72 166c-107 0 -126 -89 -143 -166c-17 -80 -36 -170 72 -170c107 0 127 91 143 170'], + 0x1D7B9: [458,12,760,121,789,'740 458c81 0 55 -124 -26 -124h-53c-15 -86 -17 -169 24 -233c44 -70 -80 -157 -123 -88c-54 89 -56 204 -36 321h-58c-23 -100 -49 -199 -97 -295c-42 -87 -167 -51 -123 36c41 81 64 170 84 259h-14c-23 0 -47 -7 -61 -27c-3 -5 -7 -8 -12 -8h-112c-12 0 -15 7 -8 18 c53 79 134 141 219 141h396'], + 0x1D7BA: [469,217,568,22,568,'560 229c-14 -65 -41 -132 -96 -180c-52 -45 -121 -61 -184 -61c-31 0 -61 4 -87 13l-33 -150c-19 -91 -155 -91 -136 0l81 378c15 74 40 132 95 180c51 45 120 60 183 60s124 -15 158 -60c34 -48 32 -115 19 -180zM432 361c-9 24 -35 36 -65 36c-29 0 -60 -12 -79 -36 c-28 -36 -38 -87 -47 -132c-10 -45 -22 -96 -9 -131c10 -25 35 -37 64 -37s60 12 80 37c27 35 38 86 48 131c9 45 20 96 8 132'], + 0x1D7BB: [469,109,524,106,501,'490 431c40 -52 -35 -99 -55 -74c-14 18 -30 40 -52 40c-71 0 -146 -40 -160 -106c-8 -39 13 -73 46 -90l147 -76c116 -61 37 -234 -79 -234c-29 0 -53 10 -78 20c-25 12 3 80 55 58c11 -5 25 -6 38 -6c11 0 8 24 -20 39l-133 70c-67 34 -106 104 -88 186 c26 123 159 211 288 211c37 0 69 -13 91 -38'], + 0x1D7BC: [458,12,683,92,712,'662 458c83 0 57 -124 -26 -124h-80c7 -38 3 -81 -6 -123c-13 -61 -42 -124 -92 -166c-55 -43 -120 -57 -181 -57s-122 14 -155 57c-35 42 -34 105 -21 166c14 66 40 135 95 184c51 47 118 63 181 63h285zM416 310c-12 21 -39 24 -65 24c-27 0 -56 -3 -76 -24 c-24 -25 -31 -65 -38 -99c-9 -41 -19 -85 -7 -117c9 -24 35 -33 63 -33s57 9 76 33c26 32 35 76 44 117c7 34 17 74 3 99'], + 0x1D7BD: [458,11,699,121,728,'679 458c81 0 55 -124 -26 -124h-145l-59 -277c-19 -91 -155 -91 -136 0l59 277h-54c-23 0 -47 -7 -61 -27c-3 -5 -7 -8 -12 -8h-112c-12 0 -15 7 -8 18c53 79 134 141 219 141h335'], + 0x1D7BE: [470,12,728,120,736,'727 261c-27 -131 -136 -273 -251 -273c-67 0 -135 7 -178 49c-39 35 -31 95 -19 153c9 39 31 105 49 156c7 23 11 51 -9 51c-42 0 -52 -51 -61 -91c-2 -9 -7 -13 -16 -13h-112c-8 0 -11 5 -9 13c19 88 108 163 214 163c82 0 152 -55 127 -127c-19 -51 -38 -113 -47 -152 c-7 -35 -23 -73 -4 -98c16 -24 49 -31 81 -31c55 0 82 116 99 200c8 34 8 78 -3 96c-45 68 75 158 121 89c31 -50 33 -119 18 -185'], + 0x1D7BF: [469,217,716,103,718,'713 250c-30 -142 -169 -252 -312 -261l-30 -138c-19 -91 -155 -91 -136 0l33 154c-114 34 -185 123 -159 245c15 72 37 145 91 203c3 3 8 5 11 5h111c13 0 15 -9 6 -19c-49 -54 -69 -123 -83 -189c-11 -51 11 -88 52 -110l3 13c33 158 124 316 264 316 c112 0 174 -102 149 -219zM577 250c10 47 3 96 -39 96c-77 0 -84 -104 -102 -193l-9 -40c70 8 135 66 150 137'], + 0x1D7C0: [469,206,849,108,786,'776 -79c-14 -67 -93 -127 -181 -127c-71 0 -141 6 -162 84l-28 128l-182 -176c-73 -70 -160 17 -88 87l238 229l-30 176c-9 34 -33 75 -48 75c-16 0 -23 -27 -29 -54c-2 -9 -7 -13 -16 -13h-112c-8 0 -11 5 -9 13c14 67 96 126 180 126c71 0 152 -35 163 -84l19 -126 l181 175c73 70 159 -17 87 -87l-238 -229l40 -174c12 -35 20 -79 47 -79c16 0 25 27 31 56c2 8 7 12 15 12h112c8 0 12 -4 10 -12'], + 0x1D7C1: [694,206,870,120,878,'869 261c-28 -124 -191 -260 -303 -270l-39 -184c-2 -9 -7 -13 -16 -13h-111c-8 0 -11 5 -9 13l39 184c-112 6 -184 89 -161 199c9 39 30 104 49 156c7 23 11 51 -9 51c-30 0 -42 -51 -51 -91c-2 -9 -7 -13 -16 -13h-112c-8 0 -11 5 -9 13c19 89 92 163 204 163 c82 0 143 -55 118 -127c-18 -50 -35 -113 -44 -152c-10 -51 -5 -112 48 -120l130 612c2 8 7 12 15 12h111c8 0 12 -4 10 -12l-130 -613c78 28 133 116 150 192c8 34 8 78 -3 96c-45 68 77 158 121 89c31 -50 33 -119 18 -185'], + 0x1D7C2: [470,12,731,100,738,'728 250c-28 -131 -123 -262 -237 -262c-53 0 -91 23 -118 59c-38 -36 -84 -59 -134 -59c-119 0 -158 129 -130 262c14 63 47 125 94 178c65 76 162 1 98 -75c-27 -31 -48 -66 -56 -103c-13 -63 -34 -138 21 -138c26 0 51 12 74 30c-5 34 -2 70 6 108c9 41 44 77 84 77 s61 -36 52 -77c-7 -35 -20 -72 -37 -104c18 -20 43 -34 73 -34c42 0 61 77 74 138c8 39 10 88 -3 109c-41 70 82 156 125 85c32 -53 29 -125 14 -194'], + 0x1D7C3: [716,22,569,93,589,'585 340c-22 -103 -77 -362 -310 -362c-77 0 -121 19 -152 65c-40 58 -33 115 -17 193c12 57 52 243 247 243c55 0 98 -33 112 -91c11 221 -94 228 -176 228c-25 0 -40 5 -37 20l11 52c4 19 15 28 41 28c266 0 301 -285 281 -376zM424 248c17 83 10 159 -61 159 c-80 0 -96 -71 -117 -170c-20 -98 -35 -165 50 -165c79 0 109 90 128 176'], + 0x1D7C4: [458,12,519,99,492,'471 47c2 -6 -1 -12 -7 -16c-41 -26 -83 -43 -131 -43c-76 0 -150 15 -195 67c-44 48 -44 122 -29 195c13 60 42 119 97 157c59 41 130 51 197 51h61c47 0 32 -72 -15 -72h-61c-33 0 -71 -5 -98 -31c-20 -19 -31 -43 -37 -69h175c47 0 31 -73 -16 -73h-176 c-6 -39 -8 -77 10 -108c19 -33 61 -44 103 -44c40 0 59 36 72 62c7 14 19 14 24 2'], + 0x1D7C5: [705,12,811,120,835,'835 378l-10 -47c-2 -10 -7 -13 -17 -12c-17 2 -33 5 -49 8c-20 -85 -47 -172 -107 -245c-46 -59 -119 -94 -187 -94c-60 0 -133 4 -170 44c-34 37 -39 96 -27 151l34 161c5 25 8 53 -13 53c-18 0 -23 -55 -31 -91c-2 -9 -7 -13 -16 -13h-112c-8 0 -11 5 -9 13 c18 85 80 163 184 163c83 0 145 -70 129 -145l-30 -141c-7 -34 -6 -70 7 -98c11 -20 45 -24 70 -24c34 0 62 31 80 64c33 63 51 151 68 231c-120 37 -202 130 -183 220c18 82 92 129 182 129c69 0 115 -34 137 -92c25 -64 20 -138 7 -213c17 -4 37 -7 55 -10 c7 -1 10 -5 8 -12zM655 569c-4 33 -9 64 -42 64c-19 0 -25 -29 -31 -57c-13 -61 17 -103 65 -131c7 45 12 90 8 124'], + 0x1D7C6: [469,10,609,67,639,'637 395c-8 -37 -30 -68 -55 -93c-5 -25 -15 -57 -25 -126c-2 -17 -3 -99 -7 -118c-19 -91 -155 -91 -136 0c4 19 18 133 22 152c-33 -13 -59 -28 -93 -42c-72 -29 -102 -51 -116 -98c-17 -56 -57 -80 -99 -80c-44 0 -70 18 -58 74c7 37 30 68 54 93c6 26 15 57 25 126 c3 17 3 99 7 118c20 91 156 91 136 0c-4 -19 -17 -133 -21 -152c33 13 69 32 93 42c71 29 102 51 116 98c17 56 57 80 99 80c44 0 70 -18 58 -74'], + 0x1D7C7: [694,206,730,98,729,'723 229c-15 -69 -55 -139 -119 -181c-53 -36 -114 -51 -173 -56l-39 -185c-2 -9 -7 -13 -16 -13h-111c-8 0 -11 5 -9 13l39 185c-58 5 -111 20 -151 56c-46 42 -54 112 -39 181c15 70 52 139 116 181c55 36 115 51 175 56l46 216c2 8 7 12 15 12h111c8 0 12 -4 10 -12 l-46 -216c57 -5 111 -20 149 -56c46 -42 57 -111 42 -181zM592 229c10 47 14 96 -13 129c-16 18 -38 28 -63 34l-69 -325c27 5 54 15 77 34c41 32 58 81 68 128zM381 393c-29 -6 -55 -16 -79 -35c-42 -33 -57 -82 -67 -129s-16 -96 11 -128c16 -19 39 -29 65 -34'], + 0x1D7C8: [469,245,567,66,568,'560 229c-14 -65 -41 -132 -96 -180c-52 -45 -121 -61 -184 -61c-30 0 -59 4 -85 12c-2 -12 -1 -21 -2 -26c5 -29 43 -36 77 -36c137 0 172 -88 155 -170c-2 -9 -7 -13 -16 -13h-101c-8 0 -11 5 -9 13c8 40 -15 47 -35 47c-104 0 -165 31 -189 88c-21 52 1 189 30 326 c13 65 40 132 95 180c51 45 120 60 183 60s124 -15 158 -60c34 -48 32 -115 19 -180zM432 361c-9 24 -35 36 -65 36c-29 0 -60 -12 -79 -36c-28 -36 -38 -87 -47 -132c-10 -45 -22 -96 -9 -131c10 -25 35 -37 64 -37s60 12 80 37c27 35 38 86 48 131c9 45 20 96 8 132'], + 0x1D7C9: [458,12,1035,121,1064,'1015 458c81 0 55 -124 -26 -124h-34c3 -27 2 -55 -4 -84c-35 -164 -122 -262 -239 -262c-63 0 -107 32 -134 79c-45 -47 -102 -79 -164 -79c-110 0 -168 101 -144 216c10 45 28 89 54 130h-6c-23 0 -47 -7 -61 -27c-3 -5 -7 -8 -12 -8h-112c-12 0 -15 7 -8 18 c53 79 134 141 219 141h671zM817 334h-355c-26 -41 -45 -85 -55 -130c-9 -45 -6 -92 34 -92c73 0 98 90 113 162c2 8 7 12 15 12h110c8 0 12 -4 10 -12c-15 -74 -24 -162 50 -162c53 0 63 75 76 138c6 29 6 57 2 84'], + 0x1D7E2: [678,22,500,42,457,'457 326c0 -107 -10 -173 -40 -238c-32 -69 -95 -110 -168 -110c-57 0 -133 27 -173 123c-30 73 -34 146 -34 225c0 80 5 163 38 236c41 89 111 116 170 116c51 0 120 -24 161 -99c42 -81 46 -174 46 -253zM379 338c0 62 0 129 -19 185c-7 18 -33 94 -111 94 c-81 0 -106 -82 -112 -101c-17 -55 -17 -115 -17 -178c0 -78 1 -132 17 -189c20 -72 61 -110 113 -110c32 0 85 16 111 107c18 63 18 126 18 192'], + 0x1D7E3: [678,0,500,89,424,'424 0h-329v58h125v520c-50 -21 -98 -23 -131 -24v58c48 2 131 5 190 66h20v-620h125v-58'], + 0x1D7E4: [678,0,500,42,449,'449 0h-399v64l124 124l77 71c59 60 116 117 116 202c0 78 -51 153 -145 153c-91 0 -119 -78 -139 -155c-10 14 -20 27 -22 29c-2 3 -7 9 -19 26c24 86 80 164 194 164c132 0 213 -100 213 -215c0 -85 -54 -138 -99 -183c-19 -18 -70 -60 -89 -78 c-31 -29 -107 -104 -139 -132h109c12 0 24 1 36 1h182v-71'], + 0x1D7E5: [678,22,500,42,457,'457 180c0 -105 -88 -202 -210 -202c-40 0 -132 10 -205 104l11 60c44 -68 123 -103 192 -103c77 0 123 64 123 142c0 50 -22 143 -130 143h-71v61c71 6 73 6 79 7c61 14 102 73 102 134c0 64 -49 94 -101 94c-61 0 -126 -36 -155 -106l-36 54c42 70 115 110 192 110 c99 0 182 -66 182 -152c0 -63 -35 -131 -111 -172c68 -21 138 -83 138 -174'], + 0x1D7E6: [656,0,500,28,471,'471 171h-99v-171h-79v171h-265v61l253 424h91v-424h99v-61zM299 232v380c-1 -57 -141 -294 -193 -380h193'], + 0x1D7E7: [656,22,500,39,449,'449 203c0 -126 -100 -225 -219 -225c-81 0 -150 41 -191 98l33 56c29 -54 90 -93 157 -93c9 0 131 0 131 166c0 120 -54 161 -101 161c-58 0 -95 -39 -112 -79h-66v369h335v-64h-263v-206c29 26 67 41 107 41c103 0 189 -99 189 -224'], + 0x1D7E8: [678,22,500,42,457,'457 222c0 -79 -19 -125 -64 -176c-39 -45 -82 -68 -142 -68c-85 0 -209 61 -209 344c0 215 126 356 267 356c14 0 55 0 106 -20v-59c-35 14 -67 21 -105 21c-92 0 -171 -80 -184 -241c61 75 137 83 169 83c96 0 162 -112 162 -240zM375 222c0 45 -2 80 -23 117 c-20 37 -48 62 -96 62c-83 0 -128 -80 -128 -154c-1 -12 -1 -14 -1 -28c3 -33 18 -180 124 -180c57 0 83 34 100 62c24 41 24 87 24 121'], + 0x1D7E9: [656,11,500,42,457,'457 591c-78 -88 -221 -302 -221 -602h-84c0 234 89 434 237 597h-121c-12 0 -24 -1 -36 -1h-190v71h415v-65'], + 0x1D7EA: [678,22,500,42,457,'457 180c0 -106 -89 -202 -208 -202c-115 0 -207 93 -207 202c0 87 65 150 137 175c-89 29 -123 95 -123 148c0 92 82 175 194 175c108 0 193 -81 193 -175c0 -53 -34 -119 -123 -148c67 -23 137 -84 137 -175zM373 503c0 65 -45 117 -124 117c-74 0 -123 -48 -123 -117 s47 -118 124 -118c72 0 123 46 123 118zM376 181c0 103 -69 143 -127 143c-54 0 -126 -38 -126 -143c0 -94 58 -142 127 -142c64 0 126 45 126 142'], + 0x1D7EB: [678,22,500,42,457,'457 335c0 -218 -121 -357 -252 -357c-62 0 -99 21 -133 46l31 53c36 -30 69 -38 103 -38c79 0 156 77 167 238c-43 -54 -107 -83 -169 -83c-96 0 -162 112 -162 240c0 43 2 109 65 177c35 37 76 67 146 67c85 0 204 -63 204 -343zM371 411c0 7 0 17 -1 24 c-2 49 -19 185 -117 185c-52 0 -80 -28 -100 -57c-28 -44 -29 -85 -29 -129c0 -43 1 -80 23 -119c21 -37 49 -60 96 -60c79 0 128 74 128 156'], + 0x1D7EC: [716,22,550,43,506,'506 343c0 -139 0 -365 -232 -365c-231 0 -231 228 -231 365c0 139 0 373 232 373c231 0 231 -236 231 -373zM370 357c0 53 0 132 -7 183c-3 20 -15 104 -89 104c-76 0 -86 -88 -89 -115c-6 -49 -6 -113 -6 -172c0 -41 0 -135 7 -188c3 -27 14 -119 88 -119 c75 0 86 91 89 117c7 55 7 133 7 190'], + 0x1D7ED: [716,0,550,76,473,'473 36c0 -36 -37 -36 -48 -36h-285c-13 0 -48 0 -48 36s35 36 48 36h78v516c-29 -8 -64 -13 -94 -13c-13 0 -48 0 -48 36c0 29 26 36 44 36c99 2 137 39 155 55c12 12 16 14 36 14c44 0 44 -29 44 -48v-596h70c11 0 48 0 48 -36'], + 0x1D7EE: [716,0,550,46,494,'494 48c0 -35 -10 -48 -48 -48h-343c-37 0 -48 12 -48 48v8c0 17 0 19 10 29l191 204c60 64 98 131 98 195c0 61 -32 132 -110 132c-64 0 -98 -42 -118 -111c-3 -12 -5 -19 -14 -19c-7 0 -10 4 -16 12l-50 64c18 67 64 103 73 110c48 39 105 44 140 44 c147 0 235 -108 235 -230c0 -89 -55 -142 -110 -196c-15 -14 -53 -45 -68 -58l-132 -125h162l68 1c20 0 52 0 59 -4c21 -9 21 -28 21 -44v-12'], + 0x1D7EF: [716,22,550,46,503,'503 203c0 -133 -68 -225 -240 -225c-131 0 -217 81 -217 94c0 5 12 69 12 69c1 2 3 11 13 11c4 0 5 -1 14 -10c67 -63 141 -70 173 -70c91 0 98 66 98 133c0 77 -11 134 -102 134h-44c-26 0 -27 1 -27 27v18c0 16 0 22 7 25c3 2 22 3 33 4c30 2 55 4 79 32 c31 38 31 86 31 100c0 49 -9 82 -73 82c-13 0 -84 0 -135 -73c-5 -7 -7 -11 -14 -11c0 0 -7 0 -15 12l-28 40s-7 9 -7 15c0 8 67 106 204 106c65 0 208 -13 208 -173c0 -57 -27 -122 -108 -166c90 -23 138 -84 138 -174'], + 0x1D7F0: [694,0,550,31,518,'518 200c0 -40 -17 -47 -48 -47h-42v-105c0 -35 -10 -48 -48 -48h-28c-41 0 -48 16 -48 48v105h-225c-41 0 -48 16 -48 48v25c0 18 0 21 8 36l222 409c12 23 27 23 46 23h73c37 0 48 -12 48 -48v-399h42c35 0 48 -10 48 -47zM310 247v342h-1c-5 -17 -14 -48 -174 -342 h175'], + 0x1D7F1: [694,22,550,37,494,'494 221c0 -162 -88 -243 -249 -243c-143 0 -208 108 -208 116c0 7 23 42 37 65c6 8 8 13 16 13c7 0 10 -6 13 -12c40 -79 108 -88 139 -88c105 0 105 76 105 153c0 78 0 154 -65 154c-42 0 -76 -20 -100 -59c-14 -24 -23 -24 -49 -24c-27 0 -50 1 -50 46v306 c0 40 16 46 48 46h278c48 0 48 -24 48 -50c0 -27 -1 -50 -48 -50h-196v-156c24 9 48 13 73 13c153 0 208 -98 208 -230'], + 0x1D7F2: [716,22,550,46,503,'503 236c0 -78 -6 -135 -58 -193c-41 -46 -89 -65 -166 -65c-233 0 -233 259 -233 362c0 88 0 376 288 376c10 0 37 0 63 -10c35 -13 35 -14 35 -38v-37c0 -15 0 -27 -12 -27c-5 0 -8 2 -15 7c-24 13 -50 16 -68 16c-35 0 -101 -9 -130 -85c-15 -40 -16 -62 -21 -152 c27 58 67 89 122 89c195 0 195 -186 195 -243zM363 237c0 99 0 170 -80 170c-71 0 -95 -76 -95 -159c0 -86 11 -176 90 -176c85 0 85 67 85 165'], + 0x1D7F3: [695,11,550,46,503,'503 644c0 -18 0 -26 -8 -36c-120 -151 -207 -332 -210 -580c0 -39 -32 -39 -48 -39h-46c-41 0 -48 16 -48 48c0 51 0 303 224 550h-169l-70 -1c-21 0 -54 0 -61 4c-21 9 -21 28 -21 44v13c0 48 20 48 68 48h63l284 -1c42 -1 42 -28 42 -50'], + 0x1D7F4: [716,22,550,46,503,'503 203c0 -150 -78 -225 -229 -225c-144 0 -228 69 -228 225c0 63 20 142 123 171c-90 30 -108 94 -108 147c0 156 105 195 214 195c119 0 213 -48 213 -195c0 -45 -12 -115 -108 -147c80 -23 123 -80 123 -171zM360 520c0 71 -7 107 -86 107s-85 -38 -85 -107 c0 -60 2 -109 86 -109s85 51 85 109zM364 205c0 66 0 134 -90 134c-89 0 -89 -69 -89 -134c0 -77 2 -133 90 -133c87 0 89 58 89 133'], + 0x1D7F5: [716,22,550,46,503,'503 356c0 -90 0 -378 -274 -378c-98 0 -150 53 -150 61c0 6 14 29 33 61c5 8 7 13 15 13c5 0 8 -2 13 -8c27 -25 56 -33 87 -33c110 0 128 101 133 162c3 43 2 62 3 71c-13 -31 -48 -90 -122 -90c-64 0 -110 15 -150 67c-43 57 -45 114 -45 177c0 77 7 127 49 182 c52 64 118 75 180 75c227 0 228 -253 228 -360zM362 445c0 105 -16 182 -85 182c-91 0 -91 -72 -91 -169c0 -99 0 -171 80 -171c96 0 96 144 96 158'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Script/Regular/Main.js new file mode 100644 index 0000000..0ec641f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Script/Regular/Main.js @@ -0,0 +1,80 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Script'] = { + directory: 'Script/Regular', + family: 'LatinModernMathJax_Script', + id: 'LATINMODERNSCRIPT', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x210B: [690,8,1065,40,1024,'1024 642c-7 -26 -30 -37 -46 -37c-9 0 -19 6 -23 13c-7 10 -12 17 -27 17c-14 0 -29 -5 -42 -15c-17 -14 -32 -26 -48 -49c-18 -27 -31 -50 -42 -77c-34 -79 -55 -162 -75 -244c-12 -45 -22 -90 -24 -134c0 -27 1 -54 14 -74c6 -9 15 -12 27 -12s36 12 48 23 c19 16 36 32 54 50l16 -17c-24 -25 -42 -41 -59 -56c-30 -24 -58 -38 -94 -38c-22 0 -42 5 -54 20c-15 22 -23 51 -23 81c1 44 12 89 23 134c7 30 23 82 37 123h-223c-17 -56 -40 -113 -66 -166c-22 -44 -56 -84 -96 -116c-55 -44 -114 -74 -177 -74c-28 0 -55 4 -71 24 c-11 14 -16 32 -11 52c2 10 7 19 16 26s21 10 31 10c11 0 24 0 29 -7c4 -6 6 -14 7 -23c2 -8 4 -19 8 -25c10 -13 27 -15 44 -15c21 0 56 13 83 34c36 29 61 70 79 109c30 63 49 128 65 192l70 281c-35 0 -67 -2 -103 -10c-25 -6 -50 -13 -71 -30c-21 -18 -45 -40 -51 -66 c-4 -13 -5 -26 -6 -38l-1 -40c-2 -10 -5 -20 -15 -27c-11 -10 -23 -19 -36 -19c-10 0 -17 7 -21 13c-6 7 -7 17 -6 27c1 16 3 31 7 47c12 45 49 84 89 115c30 24 67 42 102 50c43 10 79 15 121 15c39 0 82 -1 116 -3l-6 -17l-54 -22l-67 -259h228c20 55 47 108 81 159 c25 37 58 74 95 101c36 26 63 42 102 42c48 0 49 -36 46 -48'], + 0x2110: [685,14,620,40,580,'580 679l-19 -20l-50 -10c-29 -117 -64 -228 -93 -344c-23 -94 -71 -192 -156 -260c-41 -33 -90 -59 -138 -59c-28 0 -56 7 -71 27c-11 15 -16 35 -11 56c3 11 7 26 16 33c8 7 21 12 31 12c11 0 17 -8 22 -16c2 -2 2 -18 2 -28c0 -12 2 -24 8 -33c7 -9 21 -9 34 -9 c28 0 55 16 80 35c30 24 51 57 67 89c23 47 39 97 52 146c29 119 65 232 94 351c-33 0 -66 -3 -100 -12c-25 -7 -51 -16 -72 -34c-17 -13 -32 -31 -37 -51c-2 -7 -3 -15 -2 -22c0 -12 1 -29 0 -35c-3 -12 -11 -23 -22 -32c-7 -5 -15 -8 -23 -8c-9 0 -15 4 -20 10 c-10 14 -9 34 -4 53c9 37 32 72 64 98c34 26 72 41 111 51c52 13 103 18 154 18c28 0 55 -5 83 -6'], + 0x2112: [685,7,770,40,730,'728 607c-15 -60 -61 -61 -61 -61c-12 0 -22 4 -28 12c-4 5 0 21 3 32c3 14 -2 34 -9 45c-9 12 -20 16 -39 16c-21 0 -43 -9 -64 -26c-22 -17 -34 -28 -46 -51c-19 -35 -48 -101 -66 -146c-16 -42 -33 -78 -62 -125c-15 -29 -40 -58 -62 -78c-24 -22 -48 -40 -67 -49 l2 -6c80 0 121 -36 121 -36c20 -17 77 -43 106 -51c19 -6 40 -11 62 -11c33 0 57 12 83 39c27 28 39 51 48 89c4 17 8 41 10 55l25 5c0 -17 -7 -47 -9 -58c-14 -56 -34 -113 -83 -154c-36 -30 -68 -55 -111 -55c-24 0 -69 4 -88 13c-37 15 -52 24 -73 45 c-55 43 -102 64 -128 64c-23 0 -60 -16 -76 -35c-24 -28 -45 -59 -60 -86l-16 17c11 33 31 66 64 105c14 17 43 34 57 43c17 10 40 26 58 40c40 31 88 134 115 204c18 48 35 93 66 137c24 34 56 68 90 94c47 36 104 51 156 51c31 0 58 -6 73 -26c11 -13 14 -32 9 -52'], + 0x211B: [712,6,818,40,778,'698 515c10 41 9 81 -13 110c-10 14 -30 19 -48 23c-33 6 -65 7 -100 7l-82 -316c13 -3 27 -3 41 -3c40 0 86 15 121 44c45 35 69 86 81 135zM772 526c-13 -50 -39 -101 -84 -137c-41 -33 -93 -61 -137 -71l16 -99c8 -55 22 -107 54 -149c5 -9 18 -14 30 -14 c11 0 22 7 31 14c14 12 21 21 30 36l14 -12c-17 -29 -34 -51 -60 -72c-19 -15 -40 -28 -62 -28c-18 0 -36 2 -46 14c-16 22 -29 47 -34 75l-39 221l-38 4c-21 -51 -40 -101 -70 -149c-21 -34 -49 -68 -81 -93c-53 -43 -111 -71 -171 -71c-27 0 -54 4 -69 23 c-11 15 -20 31 -14 52c2 11 9 23 19 31c9 7 20 11 30 11c9 0 15 -4 20 -10c6 -8 10 -17 13 -26s6 -19 11 -25c8 -11 25 -12 41 -12c32 0 62 15 90 38c28 22 46 51 62 81c21 42 36 86 47 129l93 363c-60 0 -119 -11 -173 -54c-20 -15 -41 -36 -46 -58c-3 -10 -4 -22 -5 -33 c-1 -12 2 -23 -1 -35c-3 -11 -12 -22 -22 -31c-10 -7 -21 -14 -32 -14c-10 0 -15 6 -19 13c-10 15 -9 32 -4 52c10 43 42 83 80 114c72 57 163 74 229 80l70 28l8 -4l-5 -21c49 0 91 -1 137 -9c28 -5 57 -14 74 -36c22 -30 23 -74 13 -116'], + 0x212C: [712,1,778,40,737,'734 554c-11 -44 -36 -78 -75 -109c-26 -21 -54 -38 -84 -52l1 -8c41 -8 90 -20 109 -45c20 -27 25 -71 16 -109c-13 -51 -56 -100 -100 -136c-84 -66 -198 -96 -291 -96h-270l40 53c50 0 89 13 133 48c29 24 55 58 70 91c25 51 42 112 55 165l74 296 c-41 -4 -111 -25 -159 -63c-23 -18 -45 -41 -52 -68c-2 -11 -2 -22 -3 -33c0 -10 2 -18 -1 -28c-3 -12 -7 -24 -17 -32c-11 -9 -26 -15 -39 -15c-7 0 -13 4 -16 10c-12 14 -8 35 -3 55c10 43 41 83 79 114c65 51 143 77 218 88l68 32l8 -7l-5 -23c53 0 106 0 154 -8 c30 -5 61 -15 77 -38c17 -22 20 -52 13 -82zM658 527c8 32 6 63 -11 85c-13 18 -35 27 -57 33c-34 8 -70 10 -107 10l-64 -254c-3 -13 13 -15 22 -15c53 0 109 15 157 53c32 25 51 52 60 88zM625 219c8 34 4 75 -14 99c-12 16 -30 28 -51 34c-27 9 -57 9 -87 9 c-22 0 -45 -2 -68 -4c-20 -53 -42 -115 -76 -165c-32 -48 -91 -106 -135 -133l3 -8h165c37 0 78 2 118 9c23 4 46 14 69 34c36 31 65 80 76 125'], + 0x2130: [702,12,613,40,573,'571 605c-5 -21 -10 -38 -29 -57c-16 -16 -40 -23 -52 -23s-16 1 -22 8c-3 4 -4 12 -2 20c3 9 8 16 15 24c9 10 18 21 22 37c4 18 -1 32 -9 40c-11 12 -27 17 -51 17c-28 0 -61 -6 -86 -26c-37 -31 -63 -74 -74 -117c-9 -35 -5 -70 14 -94c13 -18 34 -27 55 -33 c31 -9 64 -12 98 -12l-6 -25c-46 0 -92 -3 -139 -14c-32 -7 -69 -19 -97 -41c-40 -32 -65 -75 -77 -121c-11 -45 -9 -90 15 -122c25 -34 74 -42 121 -42c44 0 89 23 128 54c23 19 39 45 50 73l13 3l32 -48c-10 -13 -23 -31 -32 -38c-66 -52 -142 -80 -216 -80 c-39 0 -77 4 -111 16c-27 10 -53 25 -70 47c-24 32 -25 77 -14 122c14 54 51 106 99 145c44 35 96 54 148 61l3 10c-26 10 -51 24 -66 45c-21 28 -21 67 -11 106c10 41 37 81 74 110c55 44 112 52 173 52c37 0 74 -7 94 -34c11 -14 16 -39 10 -63'], + 0x2131: [699,15,904,40,865,'865 683l-56 -73c-14 -17 -38 -35 -59 -35c-13 0 -28 4 -41 9c-41 12 -107 34 -119 39l-64 -248h144l-28 -28h-123l-12 -49c-11 -44 -27 -88 -51 -129c-19 -34 -39 -61 -75 -92c-68 -59 -157 -92 -238 -92c-38 0 -70 14 -90 41c-12 15 -15 36 -10 56c3 12 9 20 20 29 c10 8 23 12 36 12c15 0 19 -2 27 -38c2 -13 8 -25 15 -34c15 -20 39 -26 66 -26c42 0 88 25 122 56c25 22 43 46 58 73c19 34 30 70 40 105l24 88h-162l21 28h148l71 265c-22 6 -53 9 -77 9c-50 0 -97 -11 -144 -48c-23 -19 -51 -54 -55 -70c-4 -14 -5 -25 -6 -39 c0 -11 2 -25 -1 -36c-3 -12 -8 -21 -18 -30c-10 -7 -21 -14 -32 -14c-13 0 -20 6 -27 14c-9 12 -7 29 -3 46c13 51 53 98 98 134c71 57 143 72 222 72c16 0 46 -2 61 -4l55 25l6 -3l-7 -28c46 -12 92 -22 141 -30c10 -2 24 -4 31 -4c16 0 35 10 46 22l32 36'], + 0x2133: [699,13,1149,40,1109,'1109 654c-3 -9 -6 -19 -15 -25c-11 -10 -25 -16 -38 -16c-7 0 -16 0 -19 4c-3 5 -7 10 -9 16c0 5 0 11 -3 15c-4 6 -11 11 -20 11s-19 -4 -28 -10c-15 -13 -28 -37 -32 -54l-81 -325c-14 -53 -24 -106 -28 -158c-2 -29 -3 -46 11 -67c6 -6 13 -10 23 -10 c16 0 33 8 47 20c18 14 36 31 51 49l15 -15c-19 -21 -41 -40 -63 -58c-28 -22 -59 -44 -91 -44c-24 0 -44 10 -56 26c-18 25 -16 49 -12 84l65 271c18 70 31 140 52 210c-78 -63 -139 -143 -191 -225c-68 -107 -119 -214 -163 -328l-52 -35l-8 7c16 123 25 239 17 357 c-4 43 -9 86 -21 127c-8 31 -19 61 -38 86l-57 -226c-16 -65 -38 -130 -71 -193c-23 -46 -52 -90 -95 -124c-27 -22 -59 -34 -90 -34c-25 0 -46 10 -60 27c-7 11 -11 25 -7 41c3 12 10 21 20 30c9 7 20 11 30 11c17 0 27 -10 31 -25c3 -17 17 -28 35 -28c17 0 35 12 50 24 c26 21 43 50 58 79c21 41 34 83 45 125l82 330c-14 24 -39 40 -70 40c-23 0 -47 -11 -67 -27c-28 -22 -45 -53 -58 -84l-21 -1c11 26 22 51 37 75c11 18 25 35 41 49c33 26 72 43 109 43c43 0 78 -19 100 -50h3c42 -55 57 -122 70 -194c15 -88 19 -174 15 -267l6 -2 c45 90 94 168 156 250c51 68 108 133 176 186c50 40 111 76 169 76c17 0 33 -5 43 -18c5 -7 9 -16 7 -26'], + 0x1D49C: [694,15,857,39,817,'817 675l-16 -9c-11 -8 -16 -18 -20 -36l-73 -290c-17 -70 -34 -141 -46 -211c-4 -24 -6 -48 7 -65c5 -6 13 -8 21 -8c13 0 26 6 39 14c16 10 30 20 48 33l11 -17c-32 -30 -67 -55 -104 -75c-23 -13 -49 -26 -74 -26c-13 0 -26 4 -32 14c-6 8 -7 19 -8 30c0 16 3 32 8 49 l39 158h-221c-54 -87 -129 -164 -171 -198c-35 -28 -77 -48 -116 -48c-23 0 -44 9 -57 25c-13 19 -15 44 -9 70c4 13 12 27 25 37c10 8 21 9 32 9c12 0 22 -5 27 -14c4 -4 5 -11 3 -18c-1 -4 -4 -11 -6 -16c-4 -8 -7 -16 -9 -24s2 -13 5 -18c6 -7 14 -10 23 -10 c17 0 32 7 47 19c26 21 51 52 71 78c21 26 89 137 133 207c40 65 78 126 124 189c29 40 62 81 104 106c27 16 56 31 86 42c34 13 80 19 109 22v-19zM717 638l-6 11c-19 -4 -41 -15 -60 -30c-39 -31 -67 -73 -95 -114c-49 -73 -91 -150 -132 -226h203'], + 0x1D49E: [697,15,654,39,614,'608 554c-12 -47 -40 -93 -81 -126c-40 -33 -89 -47 -134 -47c-38 0 -75 6 -96 33c-12 15 -13 36 -8 58c3 13 9 27 20 36c10 9 23 11 35 11c11 0 22 -3 28 -11c7 -11 0 -27 -6 -41c-8 -16 -13 -34 -4 -46c8 -10 23 -10 36 -10c28 0 56 13 80 32c32 26 49 64 58 99 c8 34 9 65 -9 89c-19 25 -52 34 -87 34c-53 0 -107 -15 -154 -52c-37 -30 -65 -66 -86 -106c-30 -55 -49 -111 -63 -168c-13 -53 -21 -106 -16 -156c3 -41 14 -81 37 -112s59 -52 103 -52c39 0 80 16 114 43c27 22 45 53 58 83l13 7l34 -47c-13 -19 -29 -38 -48 -54 c-61 -49 -136 -66 -204 -66c-63 0 -118 24 -151 69c-23 30 -33 68 -36 109c-4 48 3 100 16 151c15 61 37 123 71 181c27 48 62 90 107 125c70 56 152 77 231 77c51 0 104 -8 132 -46c20 -26 19 -60 10 -97'], + 0x1D49F: [716,-4,871,40,831,'817 392c-26 -103 -92 -202 -183 -275c-92 -73 -199 -113 -303 -113h-291l41 50c58 0 118 25 169 66c25 21 43 51 55 80c22 48 35 98 47 147l77 309c-61 0 -123 -17 -178 -61c-19 -15 -34 -40 -39 -61c-6 -22 -3 -39 -9 -61c-3 -12 -8 -24 -19 -33c-9 -8 -21 -14 -32 -14 c-12 0 -20 8 -23 15c-5 11 -4 29 1 49c10 42 39 82 75 111c73 58 158 79 231 84l69 31l6 -4l-6 -24c65 0 128 -2 185 -20c44 -14 84 -35 111 -70c40 -53 35 -131 16 -206zM743 387c18 73 16 147 -23 200c-21 26 -51 41 -84 51c-44 14 -89 18 -139 18l-58 -234 c-16 -64 -38 -129 -70 -191c-26 -47 -61 -94 -104 -130l-44 -37l1 -10h122c47 0 95 0 143 14c38 11 76 32 109 59c37 29 65 67 88 107c28 49 46 101 59 153'], + 0x1D4A2: [697,130,685,39,644,'641 582c-7 -27 -22 -53 -46 -73c-26 -21 -55 -37 -85 -37c-5 0 -29 6 -44 9l7 17c24 0 46 3 69 21c17 14 24 35 28 54c6 22 0 40 -12 56c-17 24 -52 34 -77 34c-44 0 -91 -13 -130 -44c-54 -43 -90 -102 -105 -163c-14 -56 -18 -115 12 -155c22 -29 55 -48 96 -48 c45 0 89 14 129 46c15 12 44 52 57 81l56 13l-33 -132c-15 -63 -36 -126 -66 -187c-21 -42 -48 -80 -86 -110c-74 -59 -157 -94 -240 -94c-45 0 -90 8 -114 41c-15 20 -22 46 -14 75c3 12 12 25 23 34s26 11 39 11c10 0 18 -3 23 -10c7 -9 6 -24 5 -37c0 -18 0 -36 10 -49 c16 -22 47 -28 77 -28c46 0 92 23 132 55c30 25 53 56 71 88c22 41 39 79 49 122l21 96c-48 -30 -103 -45 -153 -45c-63 0 -120 22 -154 66c-33 44 -28 106 -13 166c16 66 58 133 119 174c74 49 147 68 222 68c33 0 91 -7 115 -40c16 -21 19 -46 12 -75'], + 0x1D4A5: [692,129,698,40,658,'658 692l-1 -18l-69 -23l-6 -23l-102 -407c-13 -53 -31 -105 -59 -156c-21 -39 -49 -76 -85 -105c-32 -26 -67 -49 -103 -66c-31 -14 -61 -23 -91 -23c-33 0 -67 5 -85 29c-16 22 -21 52 -13 84c11 43 35 86 64 125c36 47 80 89 127 127c65 52 138 88 214 114l75 300 c-55 -7 -111 -17 -158 -55c-31 -25 -49 -60 -58 -95c-5 -21 -12 -48 -27 -60c-10 -8 -21 -17 -31 -17c-11 0 -20 5 -25 13c-8 11 -6 26 -3 41c12 45 46 84 85 116c88 70 192 99 291 99h60zM436 316c-60 -22 -120 -52 -172 -94c-68 -55 -125 -125 -144 -203 c-7 -29 -13 -60 3 -81c12 -17 36 -23 60 -23c37 0 75 19 107 45c29 23 50 54 66 85c23 43 38 87 49 131c12 47 19 93 31 140'], + 0x1D4A6: [690,12,989,40,949,'948 635c-3 -13 -11 -26 -23 -36c-11 -9 -25 -16 -38 -16c-16 0 -21 13 -21 25c1 14 -11 23 -25 23c-20 0 -41 -12 -58 -25c-29 -21 -52 -39 -75 -63l-158 -161l-7 -7l-3 -18l50 -175c12 -44 31 -84 57 -119c9 -12 22 -21 38 -21c17 0 34 7 49 19c17 13 28 27 40 44 l14 -16c-14 -23 -31 -44 -52 -62c-28 -22 -61 -39 -92 -39c-30 0 -58 9 -73 31c-14 17 -21 38 -26 60l-64 247h-27c-25 -97 -74 -195 -160 -264c-50 -40 -108 -67 -165 -67c-31 0 -62 7 -79 30c-9 13 -12 29 -8 47c3 10 8 20 17 28c9 7 20 11 30 11c9 0 20 0 24 -4 c5 -7 9 -15 12 -23c4 -10 7 -20 13 -29c9 -11 22 -17 38 -17c32 0 64 17 91 39c28 22 47 48 64 79c22 39 36 81 47 122l93 374c-60 0 -123 -15 -179 -56c-19 -14 -35 -33 -40 -54c-3 -12 -5 -23 -6 -35s0 -23 -3 -34c-3 -13 -6 -27 -18 -36c-10 -9 -22 -14 -34 -14 c-10 0 -19 4 -25 12c-11 15 -5 39 0 60c10 40 38 80 74 106c88 63 184 87 279 87c0 0 53 0 80 -2l-9 -17l-50 -17l-75 -297h17l203 204c29 29 61 57 94 83c20 17 34 25 57 36c17 9 40 12 57 12c20 0 34 -5 45 -19c8 -11 14 -20 10 -36'], + 0x1D4A9: [706,7,1007,40,967,'966 656c-2 -8 -5 -18 -14 -24l-36 -16c-8 0 -18 0 -20 4c-5 6 -9 13 -10 21c0 10 -5 18 -15 18c-8 0 -17 -2 -23 -7c-19 -15 -27 -36 -34 -56c-9 -25 -30 -104 -43 -156l-102 -417l-56 -30c-49 190 -108 388 -195 542l-44 -157c-22 -70 -55 -178 -70 -209 c-21 -46 -46 -86 -92 -125c-33 -28 -72 -48 -111 -48c-20 0 -39 6 -50 21c-8 10 -13 23 -9 38c3 14 14 27 26 37c8 6 16 10 25 10c10 0 19 -2 24 -9c2 -2 6 -14 9 -20c4 -10 14 -14 25 -14c24 0 46 12 66 28c28 23 42 53 57 84c22 50 37 101 50 152l65 259 c-13 17 -27 33 -45 45c-13 9 -26 16 -43 16c-21 0 -44 -6 -61 -21c-28 -21 -43 -55 -56 -85l-23 -5c12 49 33 98 76 133c33 26 71 36 107 36c47 0 80 -30 104 -63c33 -43 54 -95 75 -147l133 -367l10 12l77 344c10 41 25 83 44 123c11 25 25 52 49 71c26 21 58 32 88 32 c15 0 27 -5 36 -15c7 -9 9 -22 6 -35'], + 0x1D4AA: [686,18,699,40,659,'659 532c2 -52 -11 -105 -24 -158c-16 -63 -41 -125 -74 -184c-27 -48 -61 -92 -106 -128c-70 -56 -155 -80 -234 -80c-62 0 -111 28 -143 72c-23 29 -33 68 -36 108c-4 48 2 99 15 149c29 115 90 229 193 311c17 15 37 26 57 37l11 -12c-98 -79 -156 -188 -183 -297 c-14 -56 -23 -112 -22 -165c1 -39 6 -79 28 -107c26 -36 66 -57 116 -57c49 0 101 17 144 52c41 33 70 74 94 118c32 59 54 120 69 181c13 52 26 105 26 155c0 36 -9 71 -29 97c-13 18 -37 29 -62 29c-31 0 -63 -9 -90 -31c-22 -17 -40 -40 -46 -64c-8 -29 6 -50 21 -70 c7 -9 6 -22 2 -35c-5 -21 -28 -33 -48 -33c-13 0 -25 5 -31 15c-14 19 -12 45 -5 71c12 51 41 98 86 134c39 32 85 46 128 46c47 0 87 -20 111 -52c21 -28 31 -65 32 -102'], + 0x1D4AB: [710,11,763,40,723,'647 508c10 40 4 78 -17 107c-13 16 -33 24 -54 31c-29 9 -60 9 -92 9l-84 -335c54 0 114 10 162 49c45 36 72 88 85 139zM717 515c-14 -55 -47 -109 -96 -149c-69 -54 -151 -76 -228 -76c-5 -20 -11 -40 -18 -60c-23 -71 -49 -138 -111 -188c-43 -34 -91 -53 -138 -53 c-31 0 -59 11 -75 33c-12 16 -13 39 -7 62c4 14 12 26 24 36c9 7 21 10 32 10c9 0 18 -3 22 -9c10 -13 6 -29 2 -47c-4 -15 -5 -32 4 -43c6 -8 18 -10 30 -10c25 0 46 14 67 31c24 19 40 48 52 73c18 39 31 79 41 120l103 410c-25 0 -118 -1 -168 -41 c-26 -21 -53 -47 -61 -77c-2 -11 -2 -27 -3 -41c1 -9 4 -18 1 -27c-3 -12 -8 -24 -18 -33c-10 -7 -21 -13 -32 -13c-9 0 -17 4 -22 11c-12 15 -6 38 -1 59c12 48 49 93 92 126c63 48 143 66 219 66l65 25l7 -3l-5 -20c48 0 91 -2 134 -15c32 -10 58 -21 77 -46 c21 -29 21 -71 11 -111'], + 0x1D4AC: [694,24,716,40,676,'676 545c2 -44 -3 -85 -14 -131c-25 -98 -78 -196 -166 -266c-40 -32 -84 -56 -130 -69c6 -5 13 -8 27 -14c11 -4 87 -23 100 -23c16 0 30 11 44 22c24 18 39 39 54 62l17 -8c-19 -34 -38 -68 -72 -97c-19 -17 -43 -32 -66 -32c-21 0 -41 0 -58 5l-182 42 c-20 4 -40 7 -61 7c-22 0 -48 -1 -68 -16c-12 -9 -30 -33 -42 -51l-19 9c19 32 46 69 72 90c29 23 64 30 97 30c15 0 33 0 46 -2c20 -3 43 -6 62 -6c47 0 96 22 137 55c35 28 58 65 78 102c28 52 45 106 59 160c11 44 19 84 17 127c0 31 -8 59 -25 82c-23 30 -63 44 -105 44 c-49 0 -104 -11 -149 -47c-32 -25 -57 -56 -77 -91c-24 -42 -39 -83 -51 -128c-15 -63 -17 -128 18 -174c17 -23 47 -33 77 -41l-15 -21c-47 0 -90 15 -114 49c-39 52 -49 122 -31 195c21 83 64 160 138 219c66 53 146 66 220 66c63 0 121 -17 155 -62c19 -24 27 -54 27 -87 '], + 0x1D4AE: [702,12,625,40,585,'581 596c-4 -18 -14 -37 -31 -51c-26 -21 -57 -36 -87 -36c-12 0 -24 2 -35 5l6 16c17 0 39 5 55 19c15 13 22 28 27 46c4 18 0 33 -11 46c-14 21 -42 28 -71 28c-34 0 -68 -9 -98 -34c-24 -19 -41 -39 -48 -66c-9 -37 -4 -71 15 -97c23 -31 57 -51 93 -69 c40 -21 79 -44 105 -79c23 -30 26 -72 15 -115c-12 -51 -41 -103 -88 -140c-68 -55 -148 -81 -225 -81c-51 0 -118 13 -145 49c-20 27 -21 65 -12 103c10 41 39 83 75 112c34 27 69 34 105 34c25 0 53 -4 65 -22c8 -10 12 -22 8 -35c-2 -8 -4 -17 -11 -23 c-10 -8 -22 -15 -33 -15c-9 0 -17 3 -22 10c-4 5 -4 13 -4 21c0 9 -3 19 -8 26c-4 6 -19 6 -28 6c-16 0 -25 -5 -38 -16c-21 -17 -36 -40 -42 -63c-10 -41 -7 -81 14 -110c20 -26 65 -41 103 -41c45 0 98 14 138 46c36 29 57 64 67 104c9 37 15 77 -5 105 c-23 29 -50 53 -85 70c-24 11 -48 24 -69 39c-15 10 -30 22 -42 36c-25 33 -27 78 -16 124c10 39 30 72 64 99c54 43 114 55 174 55c46 0 92 -5 118 -38c14 -19 14 -41 7 -68'], + 0x1D4AF: [693,6,776,39,736,'736 682c-24 -32 -46 -56 -76 -83c-23 -21 -53 -32 -80 -32c-23 0 -75 11 -112 19l-68 -269c-14 -56 -29 -112 -57 -166c-21 -40 -50 -79 -87 -108c-41 -33 -86 -49 -133 -49c-29 0 -58 6 -74 26c-12 18 -11 41 -4 66c3 12 12 24 23 33c10 8 21 14 32 14 c12 0 22 -7 28 -15c6 -9 1 -23 -3 -34c-6 -17 -11 -35 -2 -47c7 -9 20 -10 33 -10c23 0 42 6 63 22c24 20 42 48 54 75c21 43 34 88 45 132l84 343c-48 15 -112 35 -151 35c-26 0 -59 -10 -83 -29c-23 -19 -34 -35 -41 -61c-2 -9 0 -16 2 -23c5 -11 10 -21 17 -29 c5 -6 4 -15 2 -23c-3 -12 -12 -21 -22 -29s-21 -16 -33 -16c-13 0 -22 9 -28 18c-12 16 -14 39 -8 62c12 48 48 86 89 119c51 41 114 61 171 61c34 0 98 -12 145 -25c52 -13 111 -28 160 -28c20 0 40 10 58 24c16 13 26 23 38 38'], + 0x1D4B0: [699,16,744,41,704,'704 688c-12 -6 -26 -13 -37 -22c-18 -13 -31 -29 -43 -47c-16 -23 -29 -47 -40 -71c-45 -101 -76 -204 -101 -306c-10 -39 -18 -78 -19 -117c0 -24 1 -49 15 -67c5 -8 13 -11 24 -11c14 0 25 4 37 14c18 14 34 34 48 52l17 -14c-20 -28 -41 -54 -66 -74 c-26 -20 -56 -34 -85 -34c-18 0 -35 6 -44 19c-21 27 -23 61 -22 97l-49 -41c-59 -47 -129 -82 -197 -82c-37 0 -67 17 -86 43c-10 12 -12 29 -13 46c0 23 4 48 10 72c16 63 42 126 70 188c29 64 57 129 73 195c9 35 16 67 -4 93c-5 9 -19 15 -31 15c-11 0 -25 -6 -36 -14 c-24 -20 -35 -40 -42 -68c-5 -19 -8 -44 -11 -63l-31 -9c3 24 7 53 13 78c10 40 29 74 65 103c25 20 56 29 84 29c25 0 50 -6 63 -24c11 -14 12 -32 13 -50c0 -27 -3 -48 -10 -76c-18 -70 -48 -139 -79 -207c-22 -48 -45 -99 -56 -145c-7 -28 -11 -56 -10 -84 c0 -20 4 -39 14 -54c13 -17 34 -25 57 -25c47 0 92 29 132 61c23 19 46 38 67 58c39 159 97 324 154 485c45 26 93 50 142 68'], + 0x1D4B1: [709,9,710,40,669,'666 594c-11 -41 -22 -68 -49 -105c-48 -68 -116 -147 -173 -211c-77 -88 -151 -173 -212 -259l-58 -28l-5 9c20 104 29 211 36 317c6 69 5 136 4 204c0 34 -3 74 -23 102c-6 8 -15 14 -27 14c-14 0 -28 -5 -40 -15c-20 -15 -43 -58 -56 -89l-23 3c10 29 27 58 44 86 c11 19 25 39 44 54c24 19 53 28 80 28c23 0 37 -10 49 -26c13 -18 17 -41 19 -65c5 -39 6 -79 2 -120l-26 -382l13 3l173 202c35 40 71 83 99 128c22 36 38 73 49 111c7 27 10 55 -4 75c-12 14 -29 23 -50 23c-18 0 -36 -1 -52 -14c-29 -23 -48 -54 -62 -86l-22 3 c18 42 42 84 80 115c31 24 67 38 102 38c31 0 59 -9 76 -31s19 -53 12 -84'], + 0x1D4B2: [702,5,1028,40,988,'982 573c-10 -40 -33 -78 -57 -116c-39 -62 -83 -122 -129 -181c-65 -84 -123 -162 -181 -251l-51 -23l-8 5c18 99 11 187 -8 277c-12 66 -21 140 -24 208c-53 -71 -109 -150 -157 -224c-54 -85 -113 -163 -161 -241c-2 -3 -14 -11 -17 -13c-16 -7 -32 -12 -48 -19l-10 8 c34 138 63 272 74 408c4 43 5 85 0 126c-4 28 -10 55 -25 77c-9 10 -18 21 -34 21c-11 0 -24 -4 -33 -13c-27 -24 -44 -65 -49 -87l-24 2c13 51 40 105 86 142c22 18 48 22 73 22c27 0 42 -14 55 -32c15 -20 22 -44 25 -70c3 -36 3 -81 0 -120c-8 -118 -31 -232 -60 -352h9 l122 163c52 71 102 142 145 217c30 54 57 110 71 166l66 29l10 -8c-14 -29 -25 -54 -32 -83c-24 -95 -16 -186 3 -272c15 -70 24 -143 25 -218c64 79 131 159 185 243c34 53 63 107 77 164c5 21 9 41 9 61c0 14 -2 27 -9 37c-12 15 -27 23 -49 23c-28 0 -51 -15 -74 -36 l-16 11c11 11 21 20 33 30c36 29 76 48 117 48c27 0 47 -7 60 -26c20 -27 21 -65 11 -103'], + 0x1D4B3: [706,9,870,39,829,'828 640c-3 -11 -7 -22 -17 -30s-23 -18 -34 -18c-7 0 -14 1 -17 6s-5 11 -6 17s-4 11 -8 16c-6 9 -17 13 -29 13c-18 0 -37 -8 -52 -20c-40 -31 -69 -73 -97 -113c-38 -55 -69 -108 -96 -167c-6 -64 -12 -118 -7 -180c2 -39 13 -78 34 -108c9 -11 25 -14 41 -14 c18 0 36 12 51 24c32 26 52 59 65 95l21 -4c-12 -50 -45 -92 -88 -127c-29 -23 -64 -39 -97 -39c-27 0 -54 6 -68 25c-15 21 -19 48 -22 75c-7 44 -8 91 -8 137c-41 -67 -85 -134 -149 -185c-41 -33 -88 -52 -135 -52c-24 0 -46 7 -59 24c-11 14 -14 32 -9 52 c3 11 6 22 16 30s22 16 33 16c10 0 19 -3 24 -10c7 -8 9 -20 8 -32c0 -9 1 -16 6 -23c6 -8 16 -11 27 -11c25 0 49 11 70 28c34 27 61 59 87 93c35 47 67 98 96 148c9 79 18 152 15 229c-1 25 -4 50 -9 73c-3 17 -11 33 -21 45c-10 15 -30 17 -49 17c-23 0 -42 -5 -63 -20 c-14 -10 -23 -21 -26 -35c-3 -10 -5 -19 -5 -28c0 -13 5 -25 1 -39c-2 -9 -14 -22 -23 -29s-16 -9 -27 -9c-10 0 -16 5 -22 11c-9 13 -4 34 0 52c8 32 32 63 61 86c44 35 90 47 139 47c35 0 70 -6 90 -32c16 -22 19 -53 22 -84c4 -48 2 -100 -3 -148c10 25 58 88 87 124 c26 32 54 65 87 91c31 25 67 42 103 42c22 0 43 -6 55 -22c8 -10 11 -23 7 -37'], + 0x1D4B4: [702,136,628,40,588,'588 691l-118 -438c-29 -116 -90 -240 -193 -323c-49 -39 -107 -66 -164 -66c-27 0 -49 5 -63 25c-13 18 -11 41 -5 67c8 32 24 62 47 90c31 39 62 73 101 104c45 36 150 96 223 135l28 109c-78 -61 -156 -115 -225 -115c-28 -1 -67 17 -78 31c-15 20 -14 64 -5 100 l38 140c4 18 10 35 14 53c1 5 2 10 -1 13c-3 4 -7 6 -13 6c-17 0 -49 -25 -72 -43l-17 9c20 23 42 47 63 64c26 21 54 41 84 41c11 0 21 -5 27 -13c11 -15 4 -43 -1 -65l-48 -169c-6 -21 -10 -43 -10 -64c-1 -13 0 -27 7 -37c12 -14 28 -24 49 -24s42 8 63 18 c28 14 54 32 79 51c23 19 53 44 63 72l54 208l63 32zM405 244c-60 -22 -126 -60 -178 -102c-30 -24 -58 -51 -82 -81c-18 -25 -34 -52 -41 -80c-5 -22 -10 -42 1 -57c11 -16 30 -23 52 -23c29 0 56 12 81 32c40 32 71 75 94 119c32 60 58 130 73 192'], + 0x1D4B5: [696,11,726,41,687,'687 642c-200 -181 -341 -347 -515 -521c30 12 60 20 90 20c37 0 68 -16 97 -33l96 -60c13 -8 28 -16 44 -16c19 0 37 9 54 23c10 7 15 21 18 32c3 14 -1 28 -8 38c-7 11 -10 24 -7 36c3 10 11 19 21 26c8 7 20 9 29 9c12 0 21 -5 27 -13c10 -13 13 -31 9 -49 c-9 -36 -36 -68 -68 -94c-41 -33 -89 -51 -135 -51c-20 0 -39 5 -55 15l-62 38c-24 15 -48 28 -74 39c-17 6 -34 13 -54 13c-23 0 -50 -13 -71 -30c-7 -6 -48 -59 -52 -64l-28 6l-2 20l512 529c-7 -2 -19 -2 -28 -2c-25 0 -67 30 -95 54c-21 17 -43 35 -73 35 c-21 0 -45 -4 -64 -19c-19 -14 -33 -31 -38 -52c-3 -10 -5 -27 1 -38c7 -13 7 -32 7 -35c-3 -9 -7 -19 -15 -26c-11 -8 -23 -15 -35 -15s-22 5 -28 14c-9 12 -4 32 0 50c13 49 51 87 94 122c37 29 77 53 119 53c16 0 33 -6 46 -12c20 -10 37 -22 53 -36 c20 -16 52 -39 61 -45c8 -5 18 -9 30 -9c7 0 19 8 26 15c8 7 15 16 23 26l19 29h16'], + 0x1D4D0: [711,17,969,40,930,'930 711l-2 -29c-27 -6 -43 -14 -47 -29l-111 -446c-13 -52 -33 -130 -16 -150c8 -8 21 -12 34 -12c19 0 35 10 51 21c16 12 29 24 44 37l14 -16c-20 -20 -41 -41 -66 -59c-35 -26 -78 -45 -120 -45c-27 0 -52 9 -66 27c-18 20 -19 49 -18 77c0 45 10 92 21 138h-217 c-26 -42 -53 -76 -87 -112c-25 -27 -59 -52 -89 -74c-38 -28 -82 -50 -127 -50c-30 0 -59 8 -76 27c-13 15 -14 37 -8 59c4 16 16 32 32 43c14 10 31 14 47 14c14 0 25 -6 33 -14c6 -7 8 -22 6 -34c-2 -11 0 -26 5 -32c6 -5 13 -7 22 -7c12 0 25 6 35 13 c46 34 113 153 158 236c37 70 81 147 127 213c31 46 64 83 111 118c70 51 151 65 235 78c21 3 38 5 75 8zM753 645l-6 5c-25 -6 -50 -18 -70 -32c-37 -27 -61 -63 -83 -99c-40 -62 -99 -166 -133 -244h200'], + 0x1D4D1: [727,1,916,40,876,'872 552c-10 -40 -32 -72 -72 -101c-31 -23 -65 -44 -102 -56v-6c46 0 88 -15 114 -43c21 -26 29 -63 20 -99c-11 -44 -47 -87 -87 -122c-35 -31 -105 -72 -142 -90c-33 -16 -93 -36 -147 -36h-416l65 88c31 0 71 3 102 13c24 7 54 24 70 40c29 28 41 56 55 88 c22 51 37 102 50 154l67 269c-44 -6 -88 -19 -127 -43c-30 -18 -58 -43 -65 -73c-2 -7 -3 -15 -4 -22c0 -13 -1 -26 -4 -39c-4 -13 -12 -25 -24 -33c-14 -11 -33 -15 -50 -15c-13 0 -26 3 -33 11c-11 14 -10 33 -6 51c11 43 48 79 88 109c74 53 153 80 240 93l109 37l11 -8 l-6 -25c63 0 127 -3 185 -16c38 -8 78 -20 99 -48c16 -22 17 -49 10 -78zM707 201c9 35 11 78 -12 103c-23 27 -60 45 -102 49h-86c-8 -1 -21 -3 -23 -7c-18 -40 -45 -94 -68 -124c-13 -16 -45 -46 -63 -60c-29 -23 -64 -50 -97 -67l3 -8h257c36 0 105 0 137 23 c31 22 47 60 54 91zM752 511c9 35 12 73 -11 98c-16 19 -40 30 -66 38c-34 10 -70 14 -107 14l-64 -258c-2 -6 5 -9 10 -9c28 0 61 0 86 4c37 6 74 18 106 42c28 20 39 43 46 71'], + 0x1D4D2: [709,15,745,40,705,'699 560c-12 -47 -40 -94 -87 -127c-47 -35 -107 -50 -163 -50c-48 0 -98 5 -125 36c-14 14 -21 33 -16 53c5 19 16 37 35 50c12 10 28 13 43 13c13 0 26 -2 34 -10c7 -8 12 -18 9 -29l-5 -21c-5 -10 -13 -31 -13 -31c-1 -5 -1 -10 2 -13c10 -12 27 -16 45 -16 c25 0 50 15 71 30c38 28 58 67 68 106c8 32 9 66 -12 89c-21 24 -58 33 -97 33c-47 0 -97 -14 -137 -43c-44 -32 -76 -74 -102 -117c-33 -56 -53 -114 -68 -172c-13 -53 -19 -106 -14 -156c5 -40 18 -79 45 -110c28 -32 73 -50 124 -50c34 0 71 11 102 33c35 26 57 62 66 99 l17 8l52 -62c-13 -14 -26 -29 -43 -41c-75 -55 -168 -77 -254 -77c-73 0 -144 15 -184 62c-29 32 -44 74 -49 117c-7 52 -1 107 13 162c26 107 81 218 188 295c86 62 190 88 287 88c60 0 120 -8 154 -46c24 -27 24 -65 14 -103'], + 0x1D4D3: [727,1,1007,40,966,'954 388c-22 -90 -76 -180 -165 -244c-57 -41 -118 -77 -182 -108c-48 -23 -101 -37 -151 -37h-416l65 88c31 0 71 3 102 13c24 7 54 24 70 40c29 28 41 52 55 88c11 27 12 33 22 71l88 352c-44 -6 -91 -19 -130 -43c-30 -18 -58 -43 -65 -73c-2 -7 -3 -15 -4 -22 c0 -13 -1 -26 -4 -39c-4 -13 -12 -25 -24 -33c-14 -11 -33 -15 -50 -15c-13 0 -26 3 -33 11c-11 14 -10 33 -6 51c11 43 48 79 88 109c74 53 153 80 240 93l109 37l11 -8l-7 -26c79 0 157 -5 229 -21c48 -11 97 -26 126 -60c52 -58 53 -142 32 -224zM831 482 c-5 40 -19 78 -44 108c-21 24 -54 38 -87 48c-44 12 -92 17 -142 17l-63 -253c-12 -48 -28 -97 -51 -144c-16 -26 -44 -60 -91 -96c-29 -23 -64 -50 -97 -67l3 -8h298c55 0 114 18 162 52c27 20 42 46 55 72c21 40 34 81 44 121c13 51 19 102 13 150'], + 0x1D4D4: [708,12,705,40,665,'663 606c-6 -21 -16 -42 -34 -58c-14 -12 -29 -20 -47 -20c-16 0 -30 6 -39 16c-6 7 -8 16 -5 26c2 10 7 19 15 28c7 9 13 20 15 30c3 13 1 24 -7 33c-12 14 -35 16 -57 16c-34 0 -69 -13 -98 -34c-40 -29 -66 -70 -76 -111c-9 -36 -4 -71 19 -97c15 -16 39 -23 64 -29 c37 -8 76 -10 116 -10l-7 -29c-52 0 -106 -3 -161 -14c-35 -7 -73 -18 -105 -40c-44 -32 -67 -78 -78 -122c-12 -47 -2 -91 27 -124c26 -29 68 -41 113 -41s91 17 129 45c34 24 49 60 61 94l26 9l63 -68c-12 -16 -27 -31 -44 -43c-75 -54 -167 -75 -252 -75 c-49 0 -98 3 -142 14c-32 7 -62 17 -81 38c-29 33 -46 76 -34 124c14 55 46 111 101 151c51 36 111 57 167 65c-30 9 -61 22 -82 45c-24 28 -30 66 -20 105c10 43 36 86 78 117c67 48 148 61 224 61c30 0 61 -2 88 -10c21 -6 37 -14 50 -28c15 -17 19 -40 13 -64'], + 0x1D4D5: [731,14,1005,40,966,'966 686l-66 -71c-15 -15 -29 -29 -46 -39c-11 -7 -21 -11 -33 -11c-17 0 -33 5 -49 10l-123 40l-59 -224h172l-51 -50h-134c-13 -52 -28 -103 -57 -153c-22 -38 -50 -75 -89 -103s-83 -51 -128 -70c-43 -17 -88 -29 -132 -29c-45 0 -91 8 -116 37c-14 14 -18 34 -12 55 c4 17 16 33 33 44c14 11 31 15 48 15c15 0 29 -6 38 -15c7 -10 12 -29 14 -43c2 -13 5 -31 9 -36c8 -10 24 -13 39 -13c41 0 81 21 116 46c26 18 44 45 58 70c25 48 42 103 65 195l-179 -1l46 51h146l69 251c-24 8 -55 13 -75 13c-40 0 -83 -6 -118 -32 c-29 -21 -62 -50 -69 -81c-2 -5 -4 -24 -3 -34c2 -9 2 -19 0 -29c-4 -17 -17 -31 -33 -43c-13 -9 -28 -11 -43 -11c-13 0 -23 4 -29 13c-13 13 -12 33 -7 52c14 56 60 101 114 140c69 50 146 63 225 63c21 0 42 -1 63 -4l96 42l10 -6l-10 -43l170 -34c10 -2 23 -4 30 -4 c12 0 25 4 35 13l49 45'], + 0x1D4D6: [705,138,790,39,749,'747 590c-7 -26 -21 -54 -43 -72c-29 -24 -67 -43 -104 -43c-19 0 -50 5 -71 9l9 22c14 0 29 1 45 4c10 2 20 6 30 12c19 15 30 37 35 57c5 21 7 44 -6 59c-22 24 -61 32 -100 32c-46 0 -97 -15 -137 -44c-59 -43 -88 -104 -103 -163c-15 -61 -9 -122 29 -166 c21 -22 53 -33 89 -33c38 0 78 10 111 34c22 21 41 44 57 79l109 28l-51 -205c-13 -51 -27 -92 -56 -141c-23 -38 -56 -79 -94 -108c-74 -57 -171 -89 -259 -89c-41 0 -81 2 -119 11c-25 6 -48 16 -63 34c-15 16 -18 39 -13 62c5 17 16 35 32 47c15 11 31 16 48 16 s31 -3 40 -15c9 -11 11 -26 9 -40c-2 -22 0 -44 13 -60c14 -16 46 -16 72 -16c54 0 111 24 158 58c27 19 50 54 66 80c20 34 36 75 44 110l26 121c-58 -30 -109 -43 -168 -43c-66 0 -140 16 -177 58c-39 45 -47 108 -31 172c16 63 56 124 119 169c83 60 185 79 279 79 c35 0 70 -3 102 -11c22 -6 41 -13 55 -29c17 -20 25 -46 18 -75'], + 0x1D4D7: [699,12,1191,39,1150,'1150 650c-4 -13 -9 -25 -21 -37s-29 -19 -45 -19c-11 0 -17 2 -27 10c-5 4 -10 12 -10 19c-1 7 -5 12 -9 16c-2 3 -10 5 -18 5c-12 0 -24 -5 -35 -12c-20 -15 -37 -33 -50 -52c-17 -27 -30 -56 -41 -84c-24 -67 -42 -134 -59 -201c-13 -51 -23 -98 -27 -149 c-3 -30 1 -66 20 -87c9 -9 23 -14 38 -14c16 0 40 13 58 26l46 39l15 -18l-46 -40c-49 -42 -104 -64 -162 -64c-29 0 -51 14 -68 33c-9 10 -17 26 -19 41c-4 21 -7 43 -5 65c3 40 9 81 19 121c8 31 16 60 26 91h-214c-25 -99 -77 -200 -175 -271c-62 -45 -136 -79 -209 -79 c-32 0 -60 9 -78 29c-11 11 -17 26 -13 43c4 13 10 28 24 37c14 11 31 17 47 17c11 0 21 -2 28 -9c7 -8 9 -27 10 -42c1 -7 8 -14 13 -20c6 -7 18 -11 30 -11c24 0 47 12 68 27c15 11 26 25 37 40c14 21 26 43 36 65c31 65 49 132 66 198l72 290c-30 0 -61 -2 -92 -9 c-23 -5 -47 -14 -67 -29c-21 -14 -39 -35 -44 -57c-4 -14 -1 -28 1 -42c4 -14 7 -28 3 -44s-14 -32 -30 -43c-13 -10 -31 -17 -48 -17c-13 0 -24 5 -31 13c-15 18 -12 53 -6 78c11 45 47 87 91 119c36 27 81 44 126 56c56 14 112 20 167 20c20 0 75 -2 105 -4l-7 -22 l-45 -20l-67 -264h220c30 97 96 187 190 255c46 34 98 56 152 56c19 0 39 -1 49 -13c8 -9 14 -23 11 -36'], + 0x1D4D8: [703,18,715,39,675,'675 699l-12 -24l-36 -17l-49 -196c-15 -57 -31 -114 -52 -171c-15 -40 -33 -80 -58 -118c-27 -41 -58 -82 -101 -113c-62 -45 -135 -78 -208 -78c-40 0 -77 12 -99 37c-14 16 -24 35 -19 58c4 16 15 32 31 44c15 10 32 15 49 15c23 0 37 -14 42 -24c4 -5 7 -25 7 -40 c-1 -10 5 -25 8 -28c9 -11 26 -16 44 -16c24 0 48 11 69 26c30 22 49 54 65 85c24 48 39 97 51 145l94 374c-30 0 -62 -2 -93 -9c-23 -5 -47 -14 -67 -29c-20 -14 -39 -35 -44 -57c-4 -14 -1 -28 1 -42c4 -14 7 -28 3 -44s-14 -32 -29 -43c-14 -10 -32 -17 -49 -17 c-13 0 -23 5 -30 13c-16 18 -13 53 -7 78c11 45 47 87 91 119c37 27 81 44 126 56c56 14 112 20 167 20c20 0 76 -1 105 -4'], + 0x1D4D9: [701,137,771,40,732,'732 698l-7 -16l-70 -33l-94 -370c-17 -69 -40 -140 -77 -207c-25 -47 -55 -94 -103 -128c-66 -49 -147 -81 -225 -81c-37 0 -75 6 -95 30c-22 25 -24 61 -16 96c11 43 38 85 69 123c41 48 90 90 143 128c70 52 144 83 194 100l78 311c-47 -8 -96 -22 -136 -52 c-26 -19 -51 -44 -58 -71c-2 -8 -4 -16 -4 -24c0 -9 -2 -24 -4 -33c-3 -13 -17 -33 -31 -42c-17 -12 -31 -20 -51 -20c-12 0 -24 10 -30 17c-11 13 -10 32 -6 50c12 46 50 83 94 115c110 79 243 110 368 110c20 0 40 -1 61 -3zM442 304c-33 -6 -113 -52 -146 -77 c-83 -60 -142 -142 -163 -227c-7 -30 -4 -59 15 -80c12 -13 32 -18 53 -18c13 0 26 5 39 11c17 8 34 18 50 29c33 25 52 58 69 92c25 51 42 104 55 157'], + 0x1D4DA: [709,9,1099,39,1058,'1057 644c-5 -20 -15 -39 -34 -53c-14 -11 -35 -21 -49 -21s-28 2 -35 10c-4 5 -7 11 -7 18c0 11 -4 24 -19 24c-21 0 -43 -13 -61 -26c-21 -15 -47 -37 -59 -47l-151 -137l49 -152c19 -58 42 -114 82 -160c11 -13 30 -18 50 -18c15 0 28 7 41 16c20 15 38 31 55 48 l15 -16c-31 -39 -65 -80 -104 -108c-26 -19 -58 -31 -88 -31c-37 0 -70 13 -91 36c-20 23 -33 51 -43 80c-3 1 -54 150 -77 225h-15c-24 -98 -86 -194 -182 -264c-60 -43 -129 -76 -199 -76c-32 0 -63 7 -82 27c-10 12 -16 28 -12 45c4 14 9 27 22 37c17 12 30 17 48 17 c10 0 24 -3 29 -9c7 -8 14 -23 16 -36c2 -9 7 -23 10 -27c7 -9 19 -11 33 -11c10 0 22 5 31 9c14 7 27 15 39 24c33 24 53 57 71 90c25 50 42 102 55 153l86 345c-30 0 -61 -2 -92 -9c-23 -5 -48 -14 -67 -29c-21 -14 -39 -35 -45 -57c-3 -14 -1 -28 2 -42s7 -28 3 -44 s-14 -32 -30 -43c-13 -10 -31 -17 -48 -17c-13 0 -24 5 -31 13c-15 18 -13 53 -6 78c11 45 46 87 90 119c37 27 81 44 126 56c57 14 112 20 167 20c20 0 77 -1 105 -4l-6 -22l-52 -19l-70 -281h15l317 271c24 18 50 34 77 47c18 8 38 16 58 16c23 0 42 -6 54 -21 c10 -11 13 -28 9 -44'], + 0x1D4DB: [710,12,861,40,822,'822 278l-18 -69c-15 -60 -53 -120 -113 -164c-46 -33 -100 -57 -154 -57c-29 0 -59 3 -85 11c-44 14 -87 35 -123 57c-25 15 -55 28 -83 37c-19 6 -38 9 -60 9c-23 0 -47 -5 -67 -22c-23 -20 -41 -52 -55 -80l-24 13c14 46 35 94 78 130c15 13 33 25 51 37 c12 9 25 18 36 28c22 18 42 42 56 65c21 29 46 75 71 138c18 45 45 98 70 135c25 41 36 57 70 86c56 46 133 78 232 78c42 0 79 -7 101 -31c12 -16 19 -33 13 -55c-5 -22 -18 -43 -38 -58c-14 -10 -32 -17 -47 -17c-16 0 -33 3 -41 13c-11 11 -9 33 -5 51c4 16 4 33 -5 43 c-7 10 -22 14 -38 14c-19 0 -43 -8 -61 -22c-22 -16 -34 -31 -46 -53c-24 -39 -41 -77 -57 -116c-21 -47 -42 -93 -71 -139c-17 -28 -43 -54 -72 -77c-28 -24 -73 -51 -112 -71l-1 -9c89 0 129 -20 184 -48c42 -21 127 -46 177 -46c39 0 81 7 115 32c16 11 31 26 41 41 c14 21 23 42 33 64c7 17 18 51 18 51'], + 0x1D4DC: [710,17,1284,40,1244,'1243 656c-3 -11 -10 -29 -22 -37c-14 -10 -24 -13 -40 -13c-10 0 -18 4 -24 10c-5 6 -10 13 -9 22c1 12 -4 26 -20 26c-9 0 -16 -4 -23 -10c-31 -23 -59 -123 -76 -189c-25 -101 -49 -203 -66 -304c-4 -25 -7 -50 -6 -75c0 -16 0 -29 10 -40c5 -6 15 -8 25 -8 c14 0 35 12 48 22l48 38l14 -16l-62 -54c-29 -25 -78 -45 -118 -45c-29 0 -57 6 -73 25c-15 17 -16 50 -15 74c2 42 7 79 17 121l51 224c12 49 25 98 40 144c-80 -67 -144 -146 -197 -229c-65 -99 -115 -203 -154 -307l-8 -12l-101 -35c20 119 15 236 5 351 c-3 36 -8 72 -17 106c-7 25 -16 50 -30 72l-55 -223c-14 -53 -33 -106 -63 -157c-22 -38 -51 -76 -90 -105c-36 -26 -80 -45 -122 -45c-23 0 -45 7 -58 21c-11 13 -14 30 -10 47c3 13 11 26 24 35c14 10 31 17 48 17c13 0 25 -3 32 -12c4 -4 6 -17 6 -26c2 -11 6 -24 21 -24 s33 5 46 14c28 21 47 49 62 77c21 41 36 83 46 125l77 307c-7 11 -15 21 -23 31c-20 22 -46 40 -81 40c-17 0 -36 -6 -50 -16c-31 -23 -52 -54 -64 -85l-23 4c12 48 40 97 88 132c40 30 91 36 137 36c50 0 90 -21 118 -52c29 -32 47 -71 61 -112c18 -52 28 -108 35 -164 c6 -52 10 -110 9 -167l6 -3c46 79 103 166 164 239c52 63 110 122 179 172c66 47 143 84 219 84c25 0 45 -5 58 -20c6 -7 9 -20 6 -31'], + 0x1D4DD: [712,13,1095,40,1054,'1054 664c-3 -12 -9 -30 -23 -39c-14 -11 -28 -14 -46 -14c-16 0 -27 9 -27 23l-2 18c-3 4 -7 9 -14 9c-5 0 -10 -1 -14 -5c-18 -12 -28 -31 -34 -48c-11 -26 -27 -86 -38 -128l-113 -453l-89 -40c-37 102 -73 204 -119 302c-35 77 -73 158 -114 233l-29 -114 c-21 -83 -48 -164 -84 -246c-14 -29 -28 -57 -46 -84c-15 -20 -33 -39 -54 -53c-29 -22 -64 -36 -99 -36c-25 0 -50 6 -62 25c-5 8 -8 20 -5 32c4 16 9 33 25 45c13 10 30 17 45 17c14 0 26 -4 34 -12c3 -4 9 -14 10 -22c2 -11 8 -22 22 -22c12 0 24 5 34 13 c30 24 49 63 63 97c23 60 48 159 68 239l43 170c-22 28 -52 54 -96 54c-18 0 -36 -3 -52 -15c-28 -20 -39 -42 -51 -69l-29 -6c6 25 18 51 32 76c11 19 25 37 45 51c41 30 90 40 138 40c49 0 88 -21 115 -51c29 -33 53 -68 73 -107c29 -54 52 -103 75 -156l96 -228l88 350 c8 34 20 69 37 102c12 23 27 46 50 63c29 21 64 37 99 37c18 0 29 -5 39 -16c7 -8 12 -20 9 -32'], + 0x1D4DE: [707,20,822,40,781,'781 543c4 -55 -8 -113 -23 -170c-15 -60 -39 -119 -72 -178c-26 -47 -68 -87 -112 -123c-80 -66 -187 -92 -284 -92c-83 0 -157 26 -203 78c-29 32 -41 74 -45 117c-5 55 2 112 16 169c26 103 88 208 184 278c24 18 54 37 83 48l13 -11c-39 -27 -67 -71 -89 -112 c-31 -61 -54 -123 -70 -186c-14 -59 -20 -118 -15 -174c4 -44 15 -86 43 -118c26 -29 65 -46 111 -46c54 0 111 13 157 46c41 29 69 69 88 109c25 54 48 109 62 165c15 59 27 121 27 176c0 39 -11 79 -36 108c-18 20 -44 34 -77 34s-67 -12 -96 -32c-18 -13 -31 -31 -36 -50 s5 -35 19 -47c10 -8 19 -17 24 -28c4 -7 5 -23 3 -32c-4 -17 -12 -29 -28 -41c-15 -10 -32 -15 -49 -15s-31 7 -40 18c-19 21 -18 52 -11 82c12 48 41 96 89 131c57 41 128 60 194 60c53 0 99 -18 128 -51c27 -31 42 -71 45 -113'], + 0x1D4DF: [726,13,880,40,840,'832 511c-14 -56 -51 -111 -106 -151c-72 -52 -161 -73 -244 -76c-31 -86 -78 -173 -163 -235c-54 -39 -120 -62 -183 -62c-34 0 -66 8 -85 30c-11 12 -13 29 -9 47c3 11 14 28 25 36c18 13 33 20 54 20c25 0 38 -26 39 -48c1 -11 7 -22 14 -31c6 -7 13 -12 23 -12 c20 0 40 11 57 24c31 22 50 54 65 85c24 50 37 100 49 151l91 361c-44 -6 -91 -19 -130 -43c-31 -18 -58 -43 -65 -73c-2 -7 -3 -15 -4 -22c0 -13 -1 -26 -5 -39c-3 -13 -11 -25 -23 -33c-15 -11 -34 -15 -51 -15c-13 0 -25 3 -32 11c-11 14 -11 33 -6 51 c11 43 48 79 88 109c73 53 153 80 239 93l110 37l11 -8l-7 -28c51 0 102 -5 148 -17c35 -10 68 -24 89 -48c27 -30 21 -74 11 -114zM704 491c11 43 10 88 -17 119c-25 28 -69 40 -113 40l-84 -334c46 5 96 19 136 47c45 34 66 82 78 128'], + 0x1D4E0: [705,42,839,41,799,'788 429c-21 -87 -64 -177 -151 -240c-52 -39 -115 -64 -175 -79l-1 -8c27 -7 65 -17 104 -17c37 0 81 18 113 41c22 16 37 36 52 58l18 -7c-33 -53 -70 -107 -127 -148c-31 -23 -70 -42 -109 -42c-41 0 -109 14 -161 24c-53 11 -107 21 -164 21c-25 0 -52 -6 -73 -22 c-21 -15 -38 -33 -52 -52l-21 12c30 49 67 95 118 132c29 21 67 29 100 29c46 0 85 -5 132 -14c44 6 85 21 121 48c38 27 67 69 88 105c27 50 46 103 59 155c11 42 17 85 13 125c-3 32 -11 62 -31 85c-24 26 -62 39 -104 39c-54 0 -113 -14 -159 -48 c-33 -24 -58 -54 -78 -85c-23 -39 -39 -80 -49 -121c-9 -37 -16 -74 -14 -110c0 -24 3 -49 20 -67c8 -10 22 -17 35 -22c20 -7 39 -10 61 -13l-11 -24c-37 0 -73 5 -108 17c-27 9 -53 22 -71 42c-42 48 -53 114 -36 181c18 73 61 146 133 198c88 65 197 83 298 83 c43 0 84 -4 122 -15c29 -9 57 -22 76 -44c49 -57 52 -138 32 -217'], + 0x1D4E1: [732,12,923,40,882,'878 538c-12 -47 -37 -96 -85 -130c-38 -27 -86 -54 -123 -70c8 -55 18 -106 35 -159c9 -30 20 -61 42 -83c7 -6 14 -12 24 -12c14 0 30 7 41 16c15 10 32 26 38 33l17 -16c-26 -31 -55 -63 -90 -88c-28 -20 -59 -41 -93 -41c-20 0 -39 4 -51 17c-17 20 -24 47 -29 73 l-49 223l-40 7c-33 -88 -88 -176 -176 -239c-61 -44 -131 -79 -202 -79c-33 0 -64 9 -83 30c-11 12 -17 29 -12 47c4 15 11 29 26 39c12 9 25 14 39 14c16 0 33 -2 41 -12c7 -8 12 -18 12 -29c0 -12 1 -24 9 -33c6 -7 18 -9 30 -9c19 0 38 8 54 19c39 28 66 65 88 102 c28 50 47 102 60 154l86 344c-43 -6 -91 -19 -130 -43c-30 -18 -57 -43 -65 -73c-2 -7 -3 -15 -3 -22c-1 -13 -2 -26 -5 -39s-11 -25 -23 -33c-15 -11 -34 -15 -51 -15c-13 0 -25 3 -32 11c-12 14 -11 33 -7 51c11 43 48 79 89 109c73 53 153 80 239 93l109 37l11 -8l-7 -30 c56 0 111 -4 162 -16c35 -8 69 -20 91 -44c21 -25 21 -61 13 -96zM740 519c9 38 10 77 -14 104c-11 13 -28 20 -46 25c-24 6 -51 8 -78 8l-81 -323c48 0 96 18 137 47c49 35 70 91 82 139'], + 0x1D4E2: [715,18,722,40,682,'679 605c-5 -21 -19 -40 -39 -55c-32 -23 -71 -39 -109 -39c-14 0 -34 2 -47 4l8 18c20 1 38 4 55 17c17 12 27 32 31 49s5 35 -6 47c-18 20 -47 30 -80 30s-69 -5 -98 -26c-26 -19 -49 -44 -56 -71c-9 -34 5 -65 26 -89c22 -24 49 -44 78 -61c37 -19 95 -52 107 -60 c14 -8 27 -17 38 -28c31 -36 35 -87 22 -137c-14 -57 -59 -110 -114 -150c-36 -26 -76 -42 -117 -53c-50 -14 -99 -19 -148 -19c-69 0 -134 19 -172 63c-21 25 -20 61 -12 96c11 42 35 84 77 115c43 31 96 37 145 37c27 0 53 -6 68 -23c11 -12 15 -24 10 -42 c-2 -9 -11 -29 -21 -36c-15 -11 -31 -16 -49 -16c-13 0 -21 5 -28 13c-2 3 -6 15 -5 23c3 11 4 26 -2 32c-5 6 -13 11 -23 11c-12 0 -25 -6 -35 -14c-24 -17 -37 -43 -44 -68c-9 -39 -8 -80 18 -108c25 -29 68 -42 114 -42c50 0 104 16 148 48c33 24 55 57 64 91 c9 39 2 78 -23 106c-26 30 -64 51 -101 70c-45 23 -84 51 -114 86c-30 33 -26 81 -14 126c10 41 32 83 74 112c27 20 59 31 91 39c44 10 88 14 130 14c57 0 113 -13 145 -49c14 -16 14 -39 8 -61'], + 0x1D4E3: [697,11,910,39,870,'870 684l-27 -31c-15 -18 -45 -50 -78 -73c-15 -11 -38 -25 -54 -31c-12 -5 -25 -8 -37 -8c-13 0 -74 14 -101 22l-64 -255c-23 -94 -83 -186 -175 -253c-17 -12 -102 -66 -204 -66c-33 0 -60 8 -78 29c-14 15 -14 37 -9 57c3 14 14 28 26 37c16 11 35 16 52 16 c12 0 28 -5 35 -16c4 -7 8 -20 9 -34c0 -11 2 -26 6 -31c8 -8 20 -10 33 -10c23 0 46 7 66 22c13 9 39 35 47 48c37 56 57 102 72 161l80 319l-12 5c-46 22 -97 41 -155 41c-21 0 -43 -5 -61 -18c-16 -12 -28 -27 -32 -43c-3 -14 4 -26 11 -36c13 -17 24 -33 19 -53 c-4 -15 -15 -30 -29 -41c-15 -10 -32 -17 -48 -17c-15 0 -28 5 -37 14c-16 18 -14 44 -8 69c11 45 42 87 86 118c63 47 140 71 214 71c55 0 123 -18 180 -36c45 -13 90 -26 140 -26c32 0 60 16 86 37l26 25'], + 0x1D4E4: [709,13,853,39,813,'813 695c-16 -8 -38 -23 -55 -36c-16 -12 -28 -28 -38 -43c-16 -23 -30 -47 -40 -72c-38 -86 -65 -173 -87 -261c-12 -47 -24 -95 -25 -141c-1 -29 2 -58 20 -79c5 -6 15 -9 25 -9c15 0 25 6 40 17c12 8 38 34 53 50l16 -17c-18 -19 -33 -36 -53 -55 c-5 -6 -15 -14 -21 -19c-33 -23 -71 -39 -109 -39c-27 0 -56 5 -71 23c-19 22 -31 55 -32 90c-45 -36 -93 -66 -145 -88c-40 -16 -82 -29 -123 -29c-42 0 -82 11 -106 38c-29 34 -25 84 -13 131c19 76 56 157 92 234c20 46 39 92 50 138c4 16 7 31 6 46c-1 10 -2 21 -9 28 c-8 9 -18 16 -32 16c-15 0 -31 -5 -43 -14c-24 -17 -30 -35 -35 -58c-4 -13 -5 -36 -6 -50l-28 -9c-1 23 -3 46 3 70c11 43 31 79 75 110c29 22 68 32 102 32c33 0 62 -12 81 -33c10 -13 17 -27 18 -44c2 -22 0 -39 -6 -63c-15 -61 -48 -135 -79 -202 c-22 -51 -48 -110 -59 -154c-7 -26 -11 -52 -9 -78c2 -19 6 -37 19 -51c14 -16 35 -25 60 -25c22 0 45 7 67 17c28 12 54 28 79 46c9 7 32 27 44 39c39 156 88 311 145 466c68 33 136 63 205 92'], + 0x1D4E5: [702,16,784,40,744,'740 586c-11 -43 -36 -77 -67 -118c-52 -68 -107 -130 -170 -196c-79 -83 -186 -197 -221 -255l-94 -33h-13c12 118 25 250 27 350c1 63 2 145 -1 189c-2 27 -6 55 -24 75c-7 8 -17 15 -30 15c-12 0 -24 -5 -35 -12c-23 -17 -39 -46 -51 -70l-21 5c22 58 48 106 99 144 c24 17 54 22 82 22c24 0 47 -8 60 -24c21 -24 28 -55 32 -87c7 -49 7 -114 5 -165l-13 -308l11 3l142 155c40 41 82 91 112 137c25 37 38 68 48 107c7 29 6 59 -12 79c-13 14 -26 21 -48 21c-15 0 -36 -7 -49 -15c-17 -10 -37 -31 -50 -46l-16 11c18 35 42 65 75 89 c36 26 80 41 122 41c36 0 70 -9 89 -32c17 -19 18 -54 11 -82'], + 0x1D4E6: [710,8,1150,40,1110,'1102 568c-9 -38 -35 -75 -59 -110c-41 -60 -88 -119 -136 -175c-71 -83 -134 -167 -191 -255l-82 -31l-8 3c16 105 8 207 -17 304c-12 50 -24 128 -23 170c-87 -129 -250 -333 -330 -458l-96 -24l-8 11l31 132c25 107 47 212 51 306c1 32 0 64 -6 97 c-5 23 -16 46 -32 63c-8 10 -21 15 -36 15c-16 0 -33 -7 -46 -17c-23 -16 -41 -47 -52 -69l-22 5c12 50 41 98 90 133c31 23 68 36 104 36c34 0 64 -12 84 -33c31 -36 36 -86 38 -135c2 -75 -18 -189 -35 -266l-28 -127l10 3l146 194c80 102 128 213 171 324l90 39l11 -5 c-32 -126 -32 -250 4 -362c18 -56 36 -113 41 -172c53 65 104 128 153 195c30 42 53 90 65 135c11 45 15 92 -14 124c-10 11 -27 17 -45 17c-24 0 -47 -13 -69 -27l-14 16c12 11 31 28 46 39c41 30 85 47 134 47c28 0 53 -8 68 -25c27 -31 23 -75 12 -117'], + 0x1D4E7: [712,11,970,40,930,'928 634c-5 -18 -15 -35 -32 -48c-12 -8 -26 -15 -39 -15c0 0 -25 0 -34 11c-7 7 -8 17 -7 28c1 9 1 18 -4 24s-13 8 -21 8c-11 0 -24 -5 -34 -12c-33 -24 -58 -51 -82 -81c-38 -48 -68 -92 -98 -143c-9 -70 -13 -139 -7 -206c5 -42 11 -86 39 -117c9 -11 26 -14 43 -14 s36 5 50 16c32 23 52 53 68 84l26 -4c-24 -50 -53 -99 -102 -135c-36 -26 -78 -39 -119 -39c-32 0 -65 5 -83 26c-21 24 -32 55 -38 87c-9 41 -11 99 -7 144c-28 -46 -64 -97 -100 -137c-25 -26 -49 -51 -78 -72c-42 -31 -93 -50 -142 -50c-30 0 -56 9 -73 27 c-12 14 -16 34 -11 54c4 17 18 31 34 43c12 9 26 14 39 14c15 0 29 -2 37 -12c10 -11 9 -30 7 -47c-1 -14 1 -33 20 -33c23 0 46 11 65 25c39 29 72 64 102 101c39 48 71 99 101 151c8 73 14 145 9 216c-3 25 -6 49 -13 73c-5 17 -11 33 -23 46c-13 15 -35 23 -59 23 c-13 0 -27 -5 -39 -14c-13 -10 -23 -24 -26 -38c-3 -9 -5 -18 -6 -27c-1 -11 1 -21 -2 -32c-3 -12 -13 -24 -25 -33c-16 -11 -35 -22 -54 -22c-18 0 -30 10 -40 20c-10 12 -10 28 -6 44c8 33 38 62 69 85c55 40 124 59 188 59c51 0 100 -11 129 -43c14 -16 20 -38 25 -59 c7 -33 11 -83 11 -121c39 54 97 128 154 169c34 24 74 44 114 44c25 0 51 -2 65 -18c12 -13 13 -32 9 -50'], + 0x1D4E8: [709,135,738,39,698,'698 691l-106 -383s-43 -144 -80 -214c-30 -56 -71 -106 -126 -145c-72 -53 -159 -84 -243 -84c-35 0 -71 4 -91 27c-16 17 -14 43 -8 68c9 35 30 69 56 100c33 39 72 73 115 104c78 57 169 99 260 134l27 102c-46 -28 -95 -55 -142 -80c-44 -23 -91 -43 -137 -43 c-35 0 -64 13 -83 35c-10 11 -9 28 -7 44c4 27 16 75 25 113l26 103c3 11 2 27 -4 35c-4 5 -11 9 -18 9c-18 0 -54 -29 -80 -51l-15 15c28 32 60 69 90 90c28 21 61 39 95 39c21 0 41 -7 52 -20s10 -31 7 -48c-2 -27 -16 -81 -26 -122c-14 -57 -35 -140 -13 -164 c7 -9 20 -13 33 -13c28 1 56 14 82 28c44 24 88 52 128 80c17 68 38 137 55 205l117 49zM465 261c-63 -25 -124 -59 -179 -99c-61 -44 -117 -99 -133 -163c-4 -14 -7 -29 -7 -43c1 -9 2 -19 9 -26c11 -12 28 -20 48 -20c38 0 75 17 107 40c34 24 58 55 79 88 c33 52 43 91 76 223'], + 0x1D4E9: [705,14,800,40,760,'760 667l-1 -9c-52 -42 -103 -85 -150 -131l-372 -361c37 9 63 10 93 10c23 0 43 -7 63 -14c29 -11 55 -26 81 -41c36 -21 80 -48 118 -48c17 0 35 5 49 16c15 10 25 21 28 36c3 10 3 22 -4 29c-6 8 -21 14 -34 16c-18 3 -30 9 -40 20c-9 10 -13 22 -10 35 c5 18 15 30 31 42c18 13 40 19 61 19c23 0 41 -14 54 -28c18 -22 13 -57 6 -87c-13 -53 -41 -102 -93 -140c-40 -29 -89 -45 -135 -45c-23 0 -43 7 -61 14c-31 11 -60 25 -88 41c-24 13 -49 25 -77 34c-19 7 -45 15 -67 15c-28 0 -57 -10 -81 -28l-53 -62l-35 8l-3 15 l527 514c-13 -7 -29 -7 -44 -7c-18 0 -35 5 -49 12c-21 9 -40 21 -57 34c-18 15 -35 28 -55 42c-12 8 -30 15 -47 15c-14 0 -29 -7 -42 -16c-12 -9 -20 -22 -23 -34c-4 -16 0 -31 12 -41c6 -6 15 -11 20 -17c7 -8 8 -20 6 -31c-3 -12 -12 -25 -24 -34 c-16 -11 -33 -22 -51 -22c-16 0 -31 7 -40 17c-15 17 -16 41 -10 64c13 51 52 97 102 133c47 34 83 53 138 53c20 0 37 -8 53 -17c26 -13 48 -30 69 -48c20 -17 63 -37 90 -37c16 0 34 7 47 17c26 19 43 43 57 68l16 3'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Shapes/Regular/Main.js new file mode 100644 index 0000000..17a59ba --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Shapes/Regular/Main.js @@ -0,0 +1,67 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'LatinModernMathJax_Shapes', + id: 'LATINMODERNSHAPES', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x2422: [694,11,556,28,521,'521 216c0 -129 -104 -227 -223 -227c-74 0 -116 50 -131 73l-36 -62h-25v485l-53 -50c-2 -2 -6 -4 -10 -4c-8 0 -15 7 -15 15c0 4 2 8 5 11l73 70v69c0 49 -8 56 -78 56v31l144 11v-104l71 67c3 3 6 4 10 4c9 0 15 -6 15 -15c0 -4 -1 -8 -4 -11l-92 -87v-171 c16 18 59 65 137 65c114 0 212 -99 212 -226zM438 217c0 41 -3 98 -29 139c-24 38 -60 64 -105 64c-24 0 -79 -8 -118 -64c-11 -16 -11 -17 -11 -36v-206c0 -18 0 -21 14 -42c24 -37 60 -61 105 -61c54 0 92 33 113 64c29 45 31 105 31 142'], + 0x2423: [249,105,500,42,458,'458 -97c0 -4 -4 -8 -8 -8h-400c-4 0 -8 4 -8 8v339c0 10 16 10 16 0v-331h384v331c0 10 16 10 16 0v-339'], + 0x2500: [270,-230,666,-20,686,'666 230h-666c-27 0 -27 40 0 40h666c27 0 27 -40 0 -40'], + 0x2502: [770,270,666,313,353,'353 -250c0 -27 -40 -27 -40 0v1000c0 27 40 27 40 0v-1000'], + 0x251C: [770,-230,666,313,686,'666 230h-313h-20c-13 0 -20 10 -20 20v500c0 27 40 27 40 0v-480h313c27 0 27 -40 0 -40'], + 0x2524: [270,270,666,-20,353,'353 -250c0 -27 -40 -27 -40 0v480h-313c-27 0 -27 40 0 40h313h20c13 0 20 -10 20 -20v-500'], + 0x252C: [270,270,666,313,686,'666 230h-313v-480c0 -27 -40 -27 -40 0v480v20c0 13 10 20 20 20h333c27 0 27 -40 0 -40'], + 0x2534: [770,-230,666,-20,353,'353 250c0 -13 -10 -20 -20 -20h-333c-27 0 -27 40 0 40h313v480c0 27 40 27 40 0v-480v-20'], + 0x253C: [770,270,666,-20,686,'666 230h-313v-480c0 -27 -40 -27 -40 0v480h-313c-27 0 -27 40 0 40h313v480c0 27 40 27 40 0v-480h313c27 0 27 -40 0 -40'], + 0x2581: [83,0,664,0,664,'664 0h-664v83h664v-83'], + 0x2588: [664,0,664,0,664,'664 0h-664v664h664v-664'], + 0x2591: [664,0,664,0,664,'28 0h-28v28h28v-28zM194 0h-56v28h56v-28zM360 0h-56v28h56v-28zM526 0h-56v28h56v-28zM664 0h-28v28h28v-28zM111 55h-56v56h56v-56zM277 55h-56v56h56v-56zM443 55h-56v56h56v-56zM609 55h-56v56h56v-56zM28 138h-28v56h28v-56zM194 138h-56v56h56v-56zM360 138h-56 v56h56v-56zM526 138h-56v56h56v-56zM664 138h-28v56h28v-56zM111 221h-56v56h56v-56zM277 221h-56v56h56v-56zM443 221h-56v56h56v-56zM609 221h-56v56h56v-56zM28 304h-28v56h28v-56zM194 304h-56v56h56v-56zM360 304h-56v56h56v-56zM526 304h-56v56h56v-56zM664 304h-28 v56h28v-56zM111 387h-56v56h56v-56zM277 387h-56v56h56v-56zM443 387h-56v56h56v-56zM609 387h-56v56h56v-56zM28 470h-28v56h28v-56zM194 470h-56v56h56v-56zM360 470h-56v56h56v-56zM526 470h-56v56h56v-56zM664 470h-28v56h28v-56zM111 553h-56v56h56v-56zM277 553h-56 v56h56v-56zM443 553h-56v56h56v-56zM609 553h-56v56h56v-56zM28 636h-28v28h28v-28zM194 636h-56v28h56v-28zM360 636h-56v28h56v-28zM526 636h-56v28h56v-28zM664 636h-28v28h28v-28'], + 0x2592: [664,0,664,0,664,'39 0h-39v39h39v-39zM205 0h-78v39h78v-39zM371 0h-78v39h78v-39zM537 0h-78v39h78v-39zM664 0h-39v39h39v-39zM122 44h-78v78h78v-78zM288 44h-78v78h78v-78zM454 44h-78v78h78v-78zM620 44h-78v78h78v-78zM39 127h-39v78h39v-78zM205 127h-78v78h78v-78zM371 127h-78 v78h78v-78zM537 127h-78v78h78v-78zM664 127h-39v78h39v-78zM122 210h-78v78h78v-78zM288 210h-78v78h78v-78zM454 210h-78v78h78v-78zM620 210h-78v78h78v-78zM39 293h-39v78h39v-78zM205 293h-78v78h78v-78zM371 293h-78v78h78v-78zM537 293h-78v78h78v-78zM664 293h-39 v78h39v-78zM122 376h-78v78h78v-78zM288 376h-78v78h78v-78zM454 376h-78v78h78v-78zM620 376h-78v78h78v-78zM39 459h-39v78h39v-78zM205 459h-78v78h78v-78zM371 459h-78v78h78v-78zM537 459h-78v78h78v-78zM664 459h-39v78h39v-78zM122 542h-78v78h78v-78zM288 542h-78 v78h78v-78zM454 542h-78v78h78v-78zM620 542h-78v78h78v-78zM39 625h-39v39h39v-39zM205 625h-78v39h78v-39zM371 625h-78v39h78v-39zM537 625h-78v39h78v-39zM664 625h-39v39h39v-39'], + 0x2593: [664,0,664,0,664,'197 52v62h-62v-62h62zM363 52v62h-62v-62h62zM529 52v62h-62v-62h62zM114 135v62h-62v-62h62zM280 135v62h-62v-62h62zM446 135v62h-62v-62h62zM612 135v62h-62v-62h62zM197 218v62h-62v-62h62zM363 218v62h-62v-62h62zM529 218v62h-62v-62h62zM114 301v62h-62v-62h62z M280 301v62h-62v-62h62zM446 301v62h-62v-62h62zM612 301v62h-62v-62h62zM197 384v62h-62v-62h62zM363 384v62h-62v-62h62zM529 384v62h-62v-62h62zM114 467v62h-62v-62h62zM280 467v62h-62v-62h62zM446 467v62h-62v-62h62zM612 467v62h-62v-62h62zM197 550v62h-62v-62h62z M363 550v62h-62v-62h62zM529 550v62h-62v-62h62zM664 0h-52v31h-62v-31h-104v31h-62v-31h-104v31h-62v-31h-104v31h-62v-31h-52v52h31v62h-31v104h31v62h-31v104h31v62h-31v104h31v62h-31v52h52v-31h62v31h104v-31h62v31h104v-31h62v31h104v-31h62v31h52v-52h-31v-62h31 v-104h-31v-62h31v-104h-31v-62h31v-104h-31v-62h31v-52'], + 0x25AA: [358,-142,328,56,272,'272 162c0 -11 -9 -20 -20 -20h-176c-11 0 -20 9 -20 20v176c0 11 9 20 20 20h176c11 0 20 -9 20 -20v-176'], + 0x25AB: [358,-142,328,56,272,'272 162c0 -11 -9 -20 -20 -20h-176c-11 0 -20 9 -20 20v176c0 11 9 20 20 20h176c11 0 20 -9 20 -20v-176zM232 182v136h-136v-136h136'], + 0x25AC: [417,-84,778,56,722,'722 104c0 -12 -9 -20 -20 -20h-626c-11 0 -20 8 -20 20v293c0 11 9 20 20 20h626c11 0 20 -9 20 -20v-293'], + 0x25AD: [417,-84,778,56,722,'722 104c0 -12 -9 -20 -20 -20h-626c-11 0 -20 8 -20 20v293c0 11 9 20 20 20h626c11 0 20 -9 20 -20v-293zM682 377h-586v-254l586 1v253'], + 0x25B7: [678,178,858,56,802,'802 250c0 -7 -4 -14 -10 -17l-706 -408c-3 -2 -6 -3 -10 -3c-11 0 -20 9 -20 20v816c0 11 9 20 20 20c4 0 7 -1 10 -3l706 -408c6 -3 10 -10 10 -17zM742 250l-646 373v-746'], + 0x25C1: [678,178,858,56,802,'802 -158c0 -11 -9 -20 -20 -20c-3 0 -7 1 -10 3l-706 408c-6 3 -10 10 -10 17s4 14 10 17l706 408c3 2 7 3 10 3c11 0 20 -9 20 -20v-816zM762 -123v746l-646 -373'], + 0x25CB: [592,92,796,56,740,'740 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342zM700 250c0 167 -135 302 -302 302s-302 -135 -302 -302s135 -302 302 -302s302 135 302 302'], + 0x25CF: [592,92,796,56,740,'740 250c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342'], + 0x25E6: [445,-55,500,55,445,'445 250c0 -108 -87 -195 -195 -195s-195 87 -195 195s87 195 195 195s195 -87 195 -195zM405 250c0 86 -69 155 -155 155s-155 -69 -155 -155s69 -155 155 -155s155 69 155 155'], + 0x2664: [727,130,778,56,722,'722 203c0 -74 -15 -225 -134 -225c-22 0 -125 7 -129 92h-50c0 -34 2 -88 24 -163c4 -13 4 -17 4 -17c0 -20 -19 -20 -33 -20h-30c-14 0 -33 0 -33 20c0 0 0 4 3 11c20 71 24 116 25 169h-50c-5 -92 -121 -92 -129 -92c-121 0 -134 155 -134 225c0 127 85 211 178 296 c73 66 106 136 135 211c2 6 6 17 20 17s17 -9 22 -22c52 -132 98 -175 149 -222c93 -85 162 -165 162 -280zM682 203c0 104 -65 175 -149 251c-50 45 -95 88 -144 201c-28 -66 -64 -127 -128 -186c-84 -77 -165 -151 -165 -266c0 -55 -2 -185 94 -185c5 0 86 -6 89 54 c1 25 15 38 40 38h140c25 5 39 -13 40 -38c3 -56 75 -54 89 -54c94 0 94 126 94 185'], + 0x2665: [716,33,778,56,722,'722 489c0 -151 -111 -258 -214 -356c-57 -53 -76 -91 -99 -149c-2 -6 -6 -17 -20 -17c-10 0 -16 7 -18 12c-40 98 -61 118 -133 184c-95 89 -182 196 -182 326c0 122 47 227 166 227c57 0 126 -30 167 -111c40 79 108 111 167 111c116 0 166 -100 166 -227'], + 0x2666: [727,163,778,56,722,'722 282c0 -7 -4 -12 -8 -17c-5 -4 -16 -14 -20 -18c-74 -69 -190 -202 -282 -388c-8 -16 -11 -22 -23 -22s-17 9 -19 14c-115 234 -251 363 -306 414c-5 5 -8 11 -8 17s3 12 8 17c5 4 16 14 20 18c74 69 190 202 282 388c8 16 11 22 23 22s17 -9 19 -14 c116 -236 254 -366 305 -413c5 -5 9 -10 9 -18'], + 0x2667: [727,130,778,28,750,'750 174c0 -106 -71 -196 -171 -196c-42 0 -118 19 -120 92h-50c0 -34 2 -88 24 -163c4 -13 4 -17 4 -17c0 -20 -19 -20 -33 -20h-30c-14 0 -33 0 -33 20c0 0 0 4 3 11c20 71 24 116 25 169h-50c-2 -73 -78 -92 -120 -92c-100 0 -171 90 -171 196c0 96 52 194 146 194 c48 0 79 -26 93 -42l21 46c-48 37 -76 98 -76 160c0 104 76 195 177 195c100 0 177 -90 177 -195c0 -65 -30 -124 -76 -161l22 -45c14 17 44 42 92 42c94 0 146 -98 146 -194zM710 174c0 74 -34 154 -106 154c-32 0 -52 -16 -61 -27c-24 -29 -50 -27 -67 7l-22 45 c-9 19 -5 36 11 49c37 30 61 78 61 130c0 82 -58 155 -137 155s-137 -73 -137 -155c0 -50 22 -99 60 -128c17 -13 21 -30 12 -49l-21 -46c-15 -33 -40 -35 -66 -9c-10 10 -31 28 -63 28c-72 0 -106 -80 -106 -154c0 -83 53 -156 131 -156c27 0 79 7 80 53c1 26 14 39 40 39 h140c26 0 39 -13 40 -39c1 -46 53 -53 80 -53c78 0 131 73 131 156'], + 0x266A: [695,29,611,55,556,'556 146c0 -12 -7 -24 -20 -24h-2c-21 2 -18 25 -19 40c0 62 -31 127 -55 182l-73 153v-291l-1 -71c0 -5 1 -11 1 -16c-4 -96 -88 -148 -165 -148c-84 0 -167 61 -167 150c0 90 94 131 169 131c45 0 90 -14 123 -44v457c0 13 2 30 20 30c14 0 20 -15 20 -28v-9 c0 -9 2 -17 3 -26c19 -145 121 -261 155 -402c6 -28 9 -56 11 -84'], + 0x26AD: [467,-36,500,-78,577,'577 251c0 -112 -90 -215 -206 -215c-26 0 -52 5 -76 14c-15 6 -38 24 -45 24c-3 0 -6 -2 -8 -3c-37 -22 -69 -35 -109 -35c-118 0 -211 99 -211 215c0 122 89 202 195 215c5 0 10 1 15 1c35 0 75 -12 103 -31c4 -3 9 -8 14 -8c3 0 6 2 8 3c37 22 69 35 110 35 c117 0 210 -100 210 -215zM220 103c-35 42 -55 94 -55 147c0 54 19 107 55 149c-31 13 -57 21 -89 21c-102 0 -163 -79 -163 -169c0 -105 74 -169 164 -169c32 0 58 10 88 21zM531 251c0 95 -66 169 -163 169c-32 0 -58 -8 -89 -21c36 -42 55 -95 55 -149 c0 -53 -20 -105 -55 -147c30 -11 56 -21 88 -21c98 0 164 75 164 169zM303 251c0 49 -19 90 -53 126h-1c-33 -35 -52 -76 -52 -126c0 -47 17 -95 53 -126c33 36 53 76 53 126'], + 0x26AE: [606,104,500,-189,688,'688 252c0 -103 -67 -217 -179 -217c-105 0 -171 115 -171 215c0 99 58 204 160 216c5 0 9 1 14 1c110 0 176 -117 176 -215zM161 252c0 -98 -62 -217 -174 -217c-111 0 -176 118 -176 216c0 103 61 202 166 215c4 0 9 1 13 1c105 0 171 -115 171 -215zM285 -84 c0 -17 -5 -20 -17 -20h-42c-5 1 -9 3 -11 8v13c0 49 5 98 8 147l5 269c0 77 -4 153 -11 230c-1 8 -2 17 -2 26v6c0 5 3 8 7 10c3 1 6 1 9 1h42c7 -1 12 -5 12 -14c0 -4 -1 -8 -2 -12c-7 -82 -12 -166 -12 -248l1 -97v-44c2 -84 3 -168 11 -252c1 -7 2 -15 2 -23zM129 255 c0 82 -52 164 -140 164c-100 0 -132 -96 -132 -169c0 -81 42 -168 132 -168c100 0 133 89 139 161c1 4 1 8 1 12zM642 250c0 98 -53 169 -132 169c-91 0 -140 -88 -140 -168v-7c8 -86 53 -162 140 -162c97 0 132 94 132 168'], + 0x2B04: [520,20,1062,56,1006,'1006 250c0 -10 -7 -18 -17 -20c-133 -21 -246 -111 -294 -237c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20v133h-250v-133c0 -11 -9 -20 -20 -20c-9 0 -16 5 -19 13c-48 126 -161 216 -294 237c-10 2 -17 10 -17 20s7 18 17 20c133 21 246 111 294 237c3 8 10 13 19 13 c11 0 20 -9 20 -20v-133h250v133c0 11 9 20 20 20c9 0 16 -5 19 -13c48 -126 161 -216 294 -237c10 -2 17 -10 17 -20zM906 250c-87 31 -160 90 -210 167v-70c0 -11 -9 -20 -20 -20h-290c-11 0 -20 9 -20 20v70c-50 -77 -123 -136 -210 -167c87 -31 160 -90 210 -167v70 c0 11 9 20 20 20h290c11 0 20 -9 20 -20v-70c50 77 123 136 210 167'], + 0x2B05: [468,-31,977,56,921,'921 173c0 -11 -9 -20 -20 -20h-568v-113c0 -9 -12 -12 -16 -3c-52 101 -144 176 -255 205c-8 2 -8 14 0 16c111 29 203 104 255 205c4 9 16 6 16 -3v-113h568c11 0 20 -9 20 -20v-154'], + 0x2B06: [672,193,612,87,524,'519 411c9 -4 6 -16 -3 -16h-113v-568c0 -11 -9 -20 -20 -20h-154c-11 0 -20 9 -20 20v568h-113c-9 0 -12 12 -3 16c101 52 176 145 205 255c2 8 14 8 16 0c29 -110 104 -203 205 -255'], + 0x2B07: [693,172,612,87,524,'519 89c-101 -52 -176 -145 -205 -255c-2 -8 -14 -8 -16 0c-29 110 -104 203 -205 255c-9 4 -6 16 3 16h113v568c0 11 9 20 20 20h154c11 0 20 -9 20 -20v-568h113c9 0 12 -12 3 -16'], + 0x2B0C: [468,-31,1022,89,933,'927 242c-110 -29 -203 -104 -255 -205c-4 -9 -16 -6 -16 3v113h-290v-113c0 -9 -12 -12 -16 -3c-52 101 -145 176 -255 205c-8 2 -8 14 0 16c110 29 203 104 255 205c4 9 16 6 16 -3v-113h290v113c0 9 12 12 16 3c52 -101 145 -176 255 -205c8 -2 8 -14 0 -16'], + 0x2B0D: [672,172,549,56,492,'488 411c8 -4 5 -16 -4 -16h-113v-290h113c9 0 12 -12 4 -16c-102 -52 -177 -145 -206 -255c-2 -8 -14 -8 -16 0c-29 110 -103 203 -205 255c-8 4 -5 16 3 16h113v290h-113c-8 0 -11 12 -3 16c102 52 176 145 205 255c2 8 14 8 16 0c29 -110 104 -203 206 -255'], + 0x2B1A: [640,240,960,40,920,'235 -240h-110v40h110v-40zM435 -240h-110v40h110v-40zM635 -240h-110v40h110v-40zM835 -240h-110v40h110v-40zM235 600h-110v40h110v-40zM435 600h-110v40h110v-40zM635 600h-110v40h110v-40zM835 600h-110v40h110v-40zM80 -155h-40v110h40v-110zM80 45h-40v110h40v-110 zM80 245h-40v110h40v-110zM80 445h-40v110h40v-110zM920 -155h-40v110h40v-110zM920 45h-40v110h40v-110zM920 245h-40v110h40v-110zM920 445h-40v110h40v-110'], + 0x2B31: [990,490,997,56,941,'941 -230c0 -11 -9 -20 -20 -20h-766c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144c0 -15 -9 -24 -20 -24c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c28 35 48 77 58 123c-10 46 -30 88 -58 123 c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c28 35 48 77 58 123c-10 46 -30 88 -58 123c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -24 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h766c11 0 20 -9 20 -20s-9 -20 -20 -20h-766c29 -20 56 -44 78 -72c32 -42 55 -91 66 -148c-11 -57 -34 -106 -66 -148c-22 -28 -49 -52 -78 -72h766c11 0 20 -9 20 -20s-9 -20 -20 -20h-766c29 -20 56 -44 78 -72 c32 -42 55 -91 66 -148c-11 -57 -34 -106 -66 -148c-22 -28 -49 -52 -78 -72h766c11 0 20 -9 20 -20'], + 0x2B33: [510,10,1463,56,1407,'1407 250c0 -11 -9 -20 -20 -20h-52c-37 0 -59 22 -74 53c-11 23 -18 53 -30 77c-8 16 -18 30 -38 30c-43 0 -58 -30 -66 -67c-9 -47 -8 -107 -18 -154c-11 -58 -38 -99 -105 -99c-66 0 -93 41 -105 99c-10 47 -8 107 -18 154c-8 37 -23 67 -66 67s-58 -30 -66 -67 c-9 -47 -8 -107 -18 -154c-11 -58 -38 -99 -105 -99c-66 0 -93 41 -105 99c-10 47 -8 107 -18 154c-8 37 -23 67 -66 67c-20 0 -30 -14 -38 -30c-11 -24 -18 -54 -30 -77c-15 -31 -36 -53 -73 -53h-141c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20 c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h141c19 0 29 14 37 30 c12 24 19 54 30 77c15 31 37 53 74 53c67 0 94 -41 105 -99c10 -47 9 -107 18 -154c8 -37 23 -67 66 -67s58 30 66 67c10 47 8 107 18 154c12 58 39 99 105 99c67 0 94 -41 105 -99c10 -47 9 -107 18 -154c8 -37 23 -67 66 -67s58 30 66 67c10 47 8 107 18 154 c12 58 39 99 105 99c38 0 59 -22 74 -53c12 -23 19 -53 30 -77c8 -16 18 -30 38 -30h52c11 0 20 -9 20 -20'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Shapes/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size1/Regular/Main.js new file mode 100644 index 0000000..58d2169 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size1/Regular/Main.js @@ -0,0 +1,203 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'LatinModernMathJax_Size1', + id: 'LATINMODERNSIZE1', + 0x20: [0,0,332,0,0,''], + 0x28: [797,297,422,116,362,'362 -287c0 -6 -4 -10 -10 -10c-2 0 -5 0 -6 2c-119 89 -230 306 -230 493v104c0 187 111 404 230 493c1 2 4 2 6 2c6 0 10 -4 10 -10c0 -3 -1 -6 -4 -8c-111 -84 -186 -301 -186 -477v-104c0 -176 75 -393 186 -477c3 -2 4 -5 4 -8'], + 0x29: [797,297,422,60,306,'306 198c0 -187 -111 -404 -230 -493c-1 -2 -4 -2 -6 -2c-6 0 -10 4 -10 10c0 3 1 6 4 8c111 84 186 301 186 477v104c0 176 -75 393 -186 477c-3 2 -4 5 -4 8c0 6 4 10 10 10c2 0 5 0 6 -2c119 -89 230 -306 230 -493v-104'], + 0x2F: [905,405,617,56,561,'561 883c0 -3 0 -5 -1 -8l-461 -1266c-3 -8 -11 -14 -21 -14c-12 0 -22 10 -22 22c0 3 0 5 1 8l461 1266c3 8 11 14 21 14c12 0 22 -10 22 -22'], + 0x5B: [800,300,340,161,313,'313 -279c0 -12 -9 -21 -21 -21h-131v1100h131c12 0 21 -9 21 -21s-9 -21 -21 -21h-89v-1016h89c12 0 21 -9 21 -21'], + 0x5C: [905,405,617,56,561,'561 -383c0 -12 -10 -22 -22 -22c-10 0 -18 6 -21 14l-461 1266c-1 3 -1 5 -1 8c0 12 10 22 22 22c10 0 18 -6 21 -14l461 -1266c1 -3 1 -5 1 -8'], + 0x5D: [800,300,340,27,179,'179 800v-1100h-131c-11 0 -21 9 -21 21s10 21 21 21h89v1016h-89c-11 0 -21 9 -21 21s10 21 21 21h131'], + 0x7B: [800,300,540,86,454,'454 -287c0 -7 -6 -13 -14 -13c-110 6 -204 63 -204 137v276c0 60 -58 120 -138 124c-7 0 -12 6 -12 13s5 13 12 13c80 4 138 64 138 124v276c0 74 94 131 204 137c8 0 14 -6 14 -13s-5 -13 -12 -13c-79 -4 -138 -58 -138 -111v-276c0 -63 -55 -114 -130 -137 c75 -23 130 -74 130 -137v-276c0 -53 59 -107 138 -111c7 0 12 -6 12 -13'], + 0x7C: [851,351,278,117,161,'161 -329c0 -12 -10 -22 -22 -22s-22 10 -22 22v1158c0 12 10 22 22 22s22 -10 22 -22v-1158'], + 0x7D: [800,300,540,86,454,'454 250c0 -7 -6 -13 -12 -13c-80 -4 -138 -64 -138 -124v-276c0 -74 -94 -131 -204 -137c-8 0 -14 6 -14 13s5 13 12 13c79 4 138 58 138 111v276c0 63 55 114 130 137c-75 23 -130 74 -130 137v276c0 53 -59 107 -138 111c-7 0 -12 6 -12 13s6 13 14 13 c110 -6 204 -63 204 -137v-276c0 -60 58 -120 138 -124c6 0 12 -6 12 -13'], + 0xA0: [0,0,332,0,0,''], + 0x302: [746,-572,644,0,644,'644 596l-10 -24c-105 34 -210 72 -312 114c-103 -42 -207 -80 -312 -114l-10 24c105 55 212 106 322 150c110 -44 217 -95 322 -150'], + 0x303: [751,-550,652,0,652,'652 738c0 -2 0 -3 -1 -5c-34 -82 -69 -134 -136 -153c-15 -4 -30 -6 -44 -6c-55 0 -108 25 -158 51c-41 22 -85 45 -129 45c-10 0 -21 -1 -32 -4c-55 -15 -100 -41 -128 -109c-2 -4 -6 -7 -11 -7c-7 0 -13 5 -13 12c0 2 0 3 1 5c34 82 69 134 136 153c15 4 30 6 45 6 c54 0 107 -25 157 -51c41 -22 85 -45 129 -45c11 0 21 1 32 4c55 15 100 41 128 109c2 4 7 8 12 8c7 0 12 -6 12 -13'], + 0x305: [670,-630,568,0,568,'568 650c0 -11 -9 -20 -20 -20h-528c-11 0 -20 9 -20 20s9 20 20 20h528c11 0 20 -9 20 -20'], + 0x306: [742,-578,658,0,658,'658 734c-42 -125 -191 -156 -329 -156c-139 0 -287 31 -329 156l24 8c36 -108 180 -108 305 -108s269 0 305 108'], + 0x30C: [740,-566,644,0,644,'644 716c-105 -55 -212 -106 -322 -150c-110 44 -217 95 -322 150l10 24c105 -34 209 -72 312 -114c102 42 207 80 312 114'], + 0x311: [756,-592,658,0,658,'658 600l-24 -8c-36 108 -180 108 -305 108s-269 0 -305 -108l-24 8c42 125 190 156 329 156c138 0 287 -31 329 -156'], + 0x32C: [-96,270,644,0,644,'644 -119c-105 -56 -212 -106 -322 -151c-110 45 -217 95 -322 151l10 23c105 -34 209 -72 312 -113c102 41 207 79 312 113'], + 0x32D: [-108,282,644,0,644,'644 -259l-10 -23c-105 34 -210 72 -312 113c-103 -41 -207 -79 -312 -113l-10 23c105 56 212 106 322 151c110 -45 217 -95 322 -151'], + 0x32E: [-96,260,658,0,658,'658 -104c-42 -125 -191 -156 -329 -156c-139 0 -287 31 -329 156l24 8c36 -108 180 -108 305 -108s269 0 305 108'], + 0x32F: [-118,282,658,0,658,'658 -274l-24 -8c-36 108 -180 108 -305 108s-269 0 -305 -108l-24 8c42 125 190 156 329 156c138 0 287 -31 329 -156'], + 0x330: [-118,319,652,0,652,'652 -130c0 -2 0 -4 -1 -5c-34 -82 -69 -135 -136 -154c-15 -4 -30 -6 -44 -6c-55 0 -108 25 -158 52c-41 22 -85 45 -129 45c-10 0 -21 -1 -32 -4c-55 -16 -100 -42 -128 -109c-2 -5 -6 -8 -11 -8c-7 0 -13 6 -13 13c0 1 0 3 1 4c34 82 69 135 136 154c15 4 30 6 45 6 c54 0 107 -25 157 -52c41 -22 85 -45 129 -45c11 0 21 1 32 4c55 16 100 42 128 109c2 5 7 8 12 8c7 0 12 -6 12 -12'], + 0x332: [-103,143,568,0,568,'568 -123c0 -11 -9 -20 -20 -20h-528c-11 0 -20 9 -20 20s9 20 20 20h528c11 0 20 -9 20 -20'], + 0x333: [-103,293,568,0,568,'568 -123c0 -11 -9 -20 -20 -20h-528c-11 0 -20 9 -20 20s9 20 20 20h528c11 0 20 -9 20 -20zM568 -273c0 -11 -9 -20 -20 -20h-528c-11 0 -20 9 -20 20s9 20 20 20h528c11 0 20 -9 20 -20'], + 0x33F: [820,-630,568,0,568,'568 650c0 -11 -9 -20 -20 -20h-528c-11 0 -20 9 -20 20s9 20 20 20h528c11 0 20 -9 20 -20zM568 800c0 -11 -9 -20 -20 -20h-528c-11 0 -20 9 -20 20s9 20 20 20h528c11 0 20 -9 20 -20'], + 0x2016: [851,351,354,56,298,'100 -329c0 -12 -10 -22 -22 -22s-22 10 -22 22v1158c0 12 10 22 22 22s22 -10 22 -22v-1158zM298 -329c0 -12 -10 -22 -22 -22s-22 10 -22 22v1158c0 12 10 22 22 22s22 -10 22 -22v-1158'], + 0x2044: [905,405,617,56,561,'561 883c0 -3 0 -5 -1 -8l-461 -1266c-3 -8 -11 -14 -21 -14c-12 0 -22 10 -22 22c0 3 0 5 1 8l461 1266c3 8 11 14 21 14c12 0 22 -10 22 -22'], + 0x20D0: [711,-601,667,56,611,'611 616c0 -8 -7 -15 -15 -15h-525c-8 0 -15 7 -15 15c0 7 4 12 10 14c36 12 66 38 81 72c3 5 8 9 14 9c8 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-11 -23 -26 -43 -45 -59h466c8 0 15 -7 15 -15'], + 0x20D1: [711,-601,667,56,611,'611 616c0 -8 -7 -15 -15 -15h-525c-8 0 -15 7 -15 15s7 15 15 15h466c-19 16 -34 36 -45 59c-1 2 -1 4 -1 6c0 8 7 15 15 15c6 0 11 -4 14 -9c15 -34 45 -60 80 -72c7 -2 11 -7 11 -14'], + 0x20D6: [711,-521,659,56,603,'603 616c0 -8 -6 -15 -15 -15h-458c19 -16 34 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -7 -15 -15 -15c-6 0 -11 4 -14 9c-15 34 -45 60 -81 72c-6 2 -10 7 -10 14s4 12 10 14c36 12 66 38 81 72c3 5 8 9 14 9c8 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-11 -23 -26 -43 -45 -59h458 c9 0 15 -7 15 -15'], + 0x20D7: [711,-521,659,56,603,'603 616c0 -7 -4 -12 -10 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -14 -9c-8 0 -15 7 -15 15c0 2 1 4 2 6c10 23 26 43 45 59h-459c-8 0 -15 7 -15 15s7 15 15 15h459c-19 16 -35 36 -45 59c-1 2 -2 4 -2 6c0 8 7 15 15 15c7 0 12 -4 14 -9c16 -34 45 -60 81 -72 c6 -2 10 -7 10 -14'], + 0x20E1: [711,-521,715,56,659,'659 616c0 -7 -5 -12 -11 -14c-36 -12 -65 -38 -80 -72c-3 -5 -8 -9 -14 -9c-8 0 -15 7 -15 15c0 2 0 4 1 6c11 23 26 43 45 59h-455c19 -16 34 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -7 -15 -15 -15c-6 0 -11 4 -14 9c-15 34 -45 60 -81 72c-6 2 -10 7 -10 14s4 12 10 14 c36 12 66 38 81 72c3 5 8 9 14 9c8 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-11 -23 -26 -43 -45 -59h455c-19 16 -34 36 -45 59c-1 2 -1 4 -1 6c0 8 7 15 15 15c6 0 11 -4 14 -9c15 -34 44 -60 80 -72c6 -2 11 -7 11 -14'], + 0x20E9: [730,-546,735,0,735,'735 567c0 -11 -9 -21 -21 -21s-21 10 -21 21v121h-651v-121c0 -11 -9 -21 -21 -21s-21 10 -21 21v163h735v-163'], + 0x20EC: [-171,281,667,56,611,'611 -186c0 -7 -4 -12 -11 -14c-35 -12 -65 -38 -80 -72c-3 -5 -8 -9 -14 -9c-8 0 -15 7 -15 15c0 2 0 4 1 6c11 23 26 43 45 59h-466c-8 0 -15 7 -15 15s7 15 15 15h525c8 0 15 -7 15 -15'], + 0x20ED: [-171,281,667,56,611,'611 -186c0 -8 -7 -15 -15 -15h-466c19 -16 34 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -7 -15 -15 -15c-6 0 -11 4 -14 9c-15 34 -45 60 -81 72c-6 2 -10 7 -10 14c0 8 7 15 15 15h525c8 0 15 -7 15 -15'], + 0x20EE: [-91,281,659,56,603,'603 -186c0 -8 -6 -15 -15 -15h-458c19 -16 34 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -7 -15 -15 -15c-6 0 -11 4 -14 9c-15 34 -45 60 -81 72c-6 2 -10 7 -10 14s4 12 10 14c36 12 66 38 81 72c3 5 8 9 14 9c8 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-11 -23 -26 -43 -45 -59h458 c9 0 15 -7 15 -15'], + 0x20EF: [-91,281,659,56,603,'603 -186c0 -7 -4 -12 -10 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -14 -9c-8 0 -15 7 -15 15c0 2 1 4 2 6c10 23 26 43 45 59h-459c-8 0 -15 7 -15 15s7 15 15 15h459c-19 16 -35 36 -45 59c-1 2 -2 4 -2 6c0 8 7 15 15 15c7 0 12 -4 14 -9c16 -34 45 -60 81 -72 c6 -2 10 -7 10 -14'], + 0x2190: [510,10,1463,56,1407,'1407 250c0 -11 -9 -20 -20 -20h-1232c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127 c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h1232c11 0 20 -9 20 -20'], + 0x2191: [912,436,500,20,480,'480 674c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-1213c0 -11 -9 -20 -20 -20s-20 9 -20 20v1213c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19 c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0x2192: [510,10,1463,56,1407,'1407 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1232c-11 0 -20 9 -20 20s9 20 20 20h1232c-30 20 -56 44 -78 72 c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x2193: [936,412,500,20,480,'480 -174c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65 v1213c0 11 9 20 20 20s20 -9 20 -20v-1213c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x2194: [510,10,1442,56,1386,'1386 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1132c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4 c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72 h1132c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x2195: [757,257,572,56,516,'516 -19c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65 v784c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19 c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-784c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x2196: [947,436,1495,56,1439,'1439 -416c0 -11 -9 -20 -20 -20c-6 0 -11 2 -14 6l-1261 1261c7 -35 8 -71 4 -106c-7 -52 -25 -103 -55 -149c-4 -5 -10 -9 -17 -9c-11 0 -20 9 -20 20c0 5 1 8 3 12c27 40 43 85 49 131c7 57 4 116 -23 170c-1 2 -1 4 -1 6c0 7 6 13 13 13c2 0 4 0 6 -1 c54 -27 113 -30 170 -23c46 6 91 22 131 49c4 2 7 3 12 3c11 0 20 -9 20 -20c0 -7 -4 -13 -9 -17c-46 -30 -97 -48 -149 -55c-35 -4 -71 -3 -106 4l1261 -1261c4 -3 6 -8 6 -14'], + 0x2197: [947,436,1495,56,1439,'1439 587c0 -11 -9 -20 -20 -20c-7 0 -13 4 -17 9c-30 46 -48 97 -55 149c-4 35 -3 71 4 106l-1261 -1261c-3 -4 -8 -6 -14 -6c-11 0 -20 9 -20 20c0 6 2 11 6 14l1261 1261c-35 -7 -71 -8 -106 -4c-52 7 -103 25 -149 55c-5 4 -9 10 -9 17c0 11 9 20 20 20 c5 0 8 -1 12 -3c40 -27 85 -43 131 -49c57 -7 116 -4 170 23c2 1 4 1 6 1c7 0 13 -6 13 -13c0 -2 0 -4 -1 -6c-27 -54 -30 -113 -23 -170c6 -46 22 -91 49 -131c2 -4 3 -7 3 -12'], + 0x2198: [936,447,1495,56,1439,'1439 -87c0 -5 -1 -8 -3 -12c-27 -40 -43 -85 -49 -131c-7 -57 -4 -116 23 -170c1 -2 1 -4 1 -6c0 -7 -6 -13 -13 -13c-2 0 -4 0 -6 1c-54 27 -113 30 -170 23c-46 -6 -91 -22 -131 -49c-4 -2 -7 -3 -12 -3c-11 0 -20 9 -20 20c0 7 4 13 9 17c46 30 97 48 149 55 c35 4 71 3 106 -4l-1261 1261c-4 3 -6 8 -6 14c0 11 9 20 20 20c6 0 11 -2 14 -6l1261 -1261c-7 35 -8 71 -4 106c7 52 25 103 55 149c4 5 10 9 17 9c11 0 20 -9 20 -20'], + 0x2199: [936,447,1495,56,1439,'1439 916c0 -6 -2 -11 -6 -14l-1261 -1261c35 7 71 8 106 4c52 -7 103 -25 149 -55c5 -4 9 -10 9 -17c0 -11 -9 -20 -20 -20c-5 0 -8 1 -12 3c-40 27 -85 43 -131 49c-57 7 -116 4 -170 -23c-2 -1 -4 -1 -6 -1c-7 0 -13 6 -13 13c0 2 0 4 1 6c27 54 30 113 23 170 c-6 46 -22 91 -49 131c-2 4 -3 7 -3 12c0 11 9 20 20 20c7 0 13 -4 17 -9c30 -46 48 -97 55 -149c4 -35 3 -71 -4 -106l1261 1261c3 4 8 6 14 6c11 0 20 -9 20 -20'], + 0x219A: [510,10,1463,56,1407,'1407 250c0 -11 -9 -20 -20 -20h-641l-83 -227c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l78 213h-548c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104 c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h563l82 227c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-78 -213h627 c11 0 20 -9 20 -20'], + 0x219B: [510,10,1463,56,1407,'1407 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-563l-82 -227c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l78 213h-627 c-11 0 -20 9 -20 20s9 20 20 20h641l83 227c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -1 -7l-78 -213h548c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104 c5 -2 9 -7 9 -13'], + 0x219E: [510,10,1463,56,1407,'1407 250c0 -11 -9 -20 -20 -20h-1092c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-31 40 -70 76 -117 97h-69c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20 c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h69c47 21 86 57 117 97 c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h1092c11 0 20 -9 20 -20'], + 0x219F: [912,436,572,56,516,'516 524c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-1063c0 -11 -9 -20 -20 -20s-20 9 -20 20v1063c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19 c44 13 84 37 116 68c34 33 64 71 80 117v69c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68 c8 -3 14 -10 14 -19c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-69c16 -46 46 -84 80 -117c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0x21A0: [510,10,1463,56,1407,'1407 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-69c-48 -21 -86 -57 -118 -97c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16 c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1092c-11 0 -20 9 -20 20s9 20 20 20h1092c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c32 -40 70 -76 118 -97h69 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21A1: [936,412,572,56,516,'516 -174c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65 v69c-16 46 -46 84 -80 117c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v1063c0 11 9 20 20 20s20 -9 20 -20v-1063c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20 c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-34 -33 -64 -71 -80 -117v-69c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x21A2: [510,10,1658,56,1602,'1602 10c0 -11 -9 -20 -20 -20c-10 0 -18 7 -19 16c-21 104 -95 189 -194 224h-1214c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13 c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h1214c99 35 173 120 194 224c1 9 9 16 19 16c11 0 20 -9 20 -20v-4c-21 -103 -87 -189 -179 -236c92 -47 158 -133 179 -236v-4'], + 0x21A3: [510,10,1658,56,1602,'1602 250c0 -6 -4 -11 -9 -13c-56 -19 -101 -59 -136 -104c-29 -36 -49 -80 -59 -127c-1 -9 -9 -16 -19 -16c-11 0 -20 9 -20 20v4c11 53 34 102 66 144c22 28 49 52 79 72h-1215c-99 -35 -173 -120 -193 -224c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4 c21 103 87 189 179 236c-92 47 -158 133 -179 236v4c0 11 9 20 20 20c10 0 18 -7 20 -16c20 -104 94 -189 193 -224h1215c-30 20 -57 44 -79 72c-32 42 -55 91 -66 144v4c0 11 9 20 20 20c10 0 18 -7 19 -16c10 -47 30 -91 59 -127c35 -45 80 -85 136 -104c5 -2 9 -7 9 -13'], + 0x21A4: [510,10,1443,56,1387,'1387 10c0 -27 -40 -27 -40 0v220h-1192c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16 c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h1192v220c0 27 40 27 40 0v-480'], + 0x21A5: [912,416,632,55,576,'556 -416h-480c-27 0 -27 40 0 40h220v1173c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141 c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-1173h220c27 0 27 -40 0 -40'], + 0x21A6: [510,10,1443,56,1387,'1387 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1192v-220c0 -27 -40 -27 -40 0v480c0 27 40 27 40 0v-220h1192 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21A7: [916,412,632,55,576,'556 876h-220v-1173c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68 c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v1173h-220c-27 0 -27 40 0 40h480c27 0 27 -40 0 -40'], + 0x21A9: [550,10,1463,56,1407,'1407 390c0 -88 -72 -160 -160 -160h-1092c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127 c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h1092c66 0 120 54 120 120s-54 120 -120 120h-40c-11 0 -20 9 -20 20s9 20 20 20h40c88 0 160 -72 160 -160'], + 0x21AA: [550,10,1463,56,1407,'1407 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1092c-88 0 -160 72 -160 160s72 160 160 160h40c11 0 20 -9 20 -20s-9 -20 -20 -20 h-40c-66 0 -120 -54 -120 -120s54 -120 120 -120h1092c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21AB: [550,50,1463,56,1407,'1407 390c0 -88 -72 -160 -160 -160h-120v-260c0 -11 -9 -20 -20 -20s-20 9 -20 20v260h-932c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13 c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h932v120c0 88 71 160 160 160c88 0 160 -72 160 -160zM1367 390c0 66 -54 120 -120 120s-120 -54 -120 -120v-120h120 c66 0 120 54 120 120'], + 0x21AC: [550,50,1463,56,1407,'1407 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-932v-260c0 -11 -9 -20 -20 -20s-20 9 -20 20v260h-120c-88 0 -160 72 -160 160 s72 160 160 160s160 -72 160 -160v-120h932c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13zM336 390c0 66 -54 120 -120 120s-120 -54 -120 -120 s54 -120 120 -120h120v120'], + 0x21AD: [510,10,1442,56,1386,'1386 250c0 -6 -4 -11 -10 -13c-56 -19 -100 -59 -136 -104c-29 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 0 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-141c-20 0 -30 -14 -38 -30c-11 -24 -18 -54 -30 -77c-15 -31 -36 -53 -74 -53 c-66 0 -93 41 -105 99c-10 47 -8 107 -18 154c-8 37 -23 67 -66 67s-58 -30 -66 -67c-9 -47 -8 -107 -18 -154c-11 -58 -38 -99 -105 -99c-66 0 -93 41 -105 99c-10 47 -8 107 -18 154c-8 37 -23 67 -66 67c-20 0 -30 -14 -38 -30c-11 -24 -18 -54 -30 -77 c-15 -31 -36 -53 -73 -53h-141c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16 c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h141c19 0 29 14 37 30c12 24 19 54 30 77c15 31 37 53 74 53c67 0 94 -41 105 -99c10 -47 9 -107 18 -154c8 -37 23 -67 66 -67s58 30 66 67c10 47 8 107 18 154c12 58 39 99 105 99 c67 0 94 -41 105 -99c10 -47 9 -107 18 -154c8 -37 23 -67 66 -67c20 0 30 14 38 30c12 24 19 54 30 77c15 31 37 53 74 53h141c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c-1 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 29 -91 58 -127 c36 -45 80 -85 136 -104c6 -2 10 -7 10 -13'], + 0x21AE: [510,10,1442,56,1386,'1386 250c0 -6 -4 -11 -10 -13c-56 -19 -100 -59 -136 -104c-29 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 0 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-552l-83 -227c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l78 213h-537 c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h552l82 227c3 8 11 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-78 -213h538c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c-1 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 29 -91 58 -127 c36 -45 80 -85 136 -104c6 -2 10 -7 10 -13'], + 0x21B0: [834,334,797,56,741,'741 -314c0 -11 -9 -20 -20 -20s-20 9 -20 20v868h-546c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127 c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h566c11 0 20 -9 20 -20v-888'], + 0x21B1: [834,334,797,56,741,'741 574c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-546v-868c0 -11 -9 -20 -20 -20s-20 9 -20 20v888c0 11 9 20 20 20h566 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21B2: [834,334,797,56,741,'741 -74c0 -11 -9 -20 -20 -20h-566c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16 c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h546v868c0 11 9 20 20 20s20 -9 20 -20v-888'], + 0x21B3: [834,334,797,56,741,'741 -74c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-566c-11 0 -20 9 -20 20v888c0 11 9 20 20 20s20 -9 20 -20v-868h546 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21B6: [659,-229,1330,56,1274,'1274 250c0 -11 -9 -20 -20 -20c-12 0 -20 9 -20 20c0 227 -234 369 -480 369c-218 0 -396 -112 -459 -302c27 25 58 46 92 61c48 22 101 32 156 30c10 -1 19 -9 19 -20s-9 -20 -21 -20c-48 2 -95 -7 -138 -26c-52 -24 -102 -57 -134 -107c-2 -4 -6 -6 -11 -6 c-7 0 -13 5 -13 12c-5 59 -33 112 -68 158c-29 36 -66 66 -110 87c-6 3 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2c49 -23 91 -57 123 -99c21 -27 38 -57 50 -89c69 203 261 325 496 325c269 0 520 -161 520 -409'], + 0x21B7: [659,-229,1330,56,1274,'1274 504c0 -8 -5 -15 -12 -18c-43 -21 -81 -51 -109 -87c-35 -46 -63 -99 -68 -158c-1 -7 -7 -12 -14 -12c-4 0 -8 2 -11 6c-32 50 -82 83 -134 107c-42 19 -89 28 -137 26c-12 0 -21 9 -21 20s8 19 19 20c54 2 107 -8 155 -30c34 -15 66 -36 93 -61 c-63 190 -241 302 -459 302c-247 0 -480 -142 -480 -369c0 -11 -9 -20 -20 -20s-20 9 -20 20c0 248 250 409 520 409c235 0 427 -122 496 -325c12 32 28 62 49 89c33 42 75 76 124 99c3 1 6 2 9 2c11 0 20 -9 20 -20'], + 0x21BC: [503,-230,1478,56,1422,'1422 250c0 -11 -9 -20 -20 -20h-1332c-8 0 -14 6 -14 13c0 6 4 10 8 12c49 23 87 60 121 99s60 85 76 135c2 8 10 14 19 14c11 0 20 -9 20 -20c0 -2 -1 -4 -1 -6c-17 -55 -46 -106 -84 -149c-19 -23 -43 -42 -68 -58h1255c11 0 20 -9 20 -20'], + 0x21BD: [270,3,1478,56,1422,'1422 250c0 -11 -9 -20 -20 -20h-1255c25 -16 48 -35 68 -58c38 -43 66 -94 83 -149c1 -2 1 -4 1 -6c0 -11 -9 -20 -20 -20c-9 0 -16 6 -19 14c-15 50 -41 96 -75 135c-35 39 -73 76 -121 99c-5 2 -8 6 -8 12c0 7 6 13 13 13h1333c11 0 20 -9 20 -20'], + 0x21BE: [930,436,441,112,385,'385 706c0 -11 -9 -20 -20 -20c-2 0 -4 1 -6 1c-55 17 -106 46 -149 84c-23 19 -42 43 -58 68v-1255c0 -11 -9 -20 -20 -20s-20 9 -20 20v1332c0 8 6 14 13 14c6 0 10 -4 12 -8c23 -49 60 -87 99 -121s85 -60 135 -76c8 -2 14 -10 14 -19'], + 0x21BF: [930,436,441,56,329,'329 916v-1332c0 -11 -9 -20 -20 -20s-20 9 -20 20v1255c-16 -25 -35 -49 -58 -68c-43 -38 -93 -67 -149 -84c-2 0 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 17 14 19c50 16 96 42 135 76s77 72 99 121c2 4 7 8 12 8c7 0 13 -6 13 -14'], + 0x21C0: [503,-230,1478,56,1422,'1422 243c0 -7 -6 -13 -14 -13h-1332c-11 0 -20 9 -20 20s9 20 20 20h1255c-25 16 -49 35 -68 58c-38 43 -67 94 -84 149c0 2 -1 4 -1 6c0 11 9 20 20 20c9 0 17 -6 19 -14c16 -50 42 -96 76 -135s72 -76 121 -99c4 -2 8 -6 8 -12'], + 0x21C1: [270,3,1478,56,1422,'1422 257c0 -6 -4 -10 -8 -12c-49 -23 -87 -60 -121 -99s-60 -85 -76 -135c-2 -8 -10 -14 -19 -14c-11 0 -20 9 -20 20c0 2 1 4 1 6c17 55 46 106 84 149c19 23 43 42 68 58h-1255c-11 0 -20 9 -20 20s9 20 20 20h1332c8 0 14 -6 14 -13'], + 0x21C2: [936,430,441,112,385,'385 -206c0 -9 -6 -17 -14 -19c-50 -16 -96 -42 -135 -76s-76 -72 -99 -121c-2 -4 -6 -8 -12 -8c-7 0 -13 6 -13 14v1332c0 11 9 20 20 20s20 -9 20 -20v-1255c16 25 35 49 58 68c43 38 94 67 149 84c2 0 4 1 6 1c11 0 20 -9 20 -20'], + 0x21C3: [936,430,441,56,329,'329 -416c0 -8 -6 -14 -13 -14c-5 0 -10 4 -12 8c-22 49 -60 87 -99 121s-85 60 -135 76c-8 2 -14 10 -14 19c0 11 9 20 20 20c2 0 4 -1 6 -1c56 -17 106 -46 149 -84c23 -19 42 -43 58 -68v1255c0 11 9 20 20 20s20 -9 20 -20v-1332'], + 0x21C4: [672,172,1484,56,1428,'1428 88c0 -11 -9 -20 -20 -20h-1232c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127 c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h1232c11 0 20 -9 20 -20zM1407 412c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20 c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1232c-11 0 -20 9 -20 20s9 20 20 20h1232c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21C5: [936,436,896,56,840,'516 674c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-1213c0 -11 -9 -20 -20 -20s-20 9 -20 20v1213c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19 c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19zM840 -174c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10 c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v1213c0 11 9 20 20 20s20 -9 20 -20v-1213c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x21C6: [672,172,1484,56,1428,'1407 88c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-1232c-11 0 -20 9 -20 20s9 20 20 20h1232c-30 20 -56 44 -78 72 c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13zM1428 412c0 -11 -9 -20 -20 -20h-1232c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20 c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h1232c11 0 20 -9 20 -20'], + 0x21C7: [750,250,1463,56,1407,'1407 10c0 -11 -9 -20 -20 -20h-1232c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144c0 -15 -9 -24 -20 -24c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c28 35 48 77 58 123c-10 46 -30 88 -58 123 c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -24c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h1232c11 0 20 -9 20 -20s-9 -20 -20 -20h-1232c29 -20 56 -44 78 -72 c32 -42 55 -91 66 -148c-11 -57 -34 -106 -66 -148c-22 -28 -49 -52 -78 -72h1232c11 0 20 -9 20 -20'], + 0x21C8: [912,436,992,56,936,'936 674c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-1213c0 -11 -9 -20 -20 -20s-20 9 -20 20v1213c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -138 -78c-56 16 -101 43 -138 78c-20 20 -37 42 -52 65v-1213 c0 -11 -9 -20 -20 -20s-20 9 -20 20v1213c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c31 -30 68 -53 110 -66 c42 13 79 36 110 66c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0x21C9: [750,250,1463,56,1407,'1407 10c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -19 24c10 53 33 102 66 144c22 28 48 52 78 72h-1232c-11 0 -20 9 -20 20s9 20 20 20h1232c-30 20 -56 44 -78 72c-33 42 -56 91 -66 148 c10 57 33 106 66 148c22 28 48 52 78 72h-1232c-11 0 -20 9 -20 20s9 20 20 20h1232c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c-1 15 8 24 19 24c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13s-4 -11 -9 -13 c-57 -19 -101 -59 -137 -104c-28 -35 -47 -77 -57 -123c10 -46 29 -88 57 -123c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21CA: [936,412,992,56,936,'936 -174c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-31 30 -68 53 -110 66c-42 -13 -79 -36 -110 -66c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10 c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v1213c0 11 9 20 20 20s20 -9 20 -20v-1213c15 23 32 45 52 65c37 35 82 62 138 78c56 -16 101 -43 138 -78 c20 -20 37 -42 52 -65v1213c0 11 9 20 20 20s20 -9 20 -20v-1213c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0x21CB: [600,100,1484,56,1428,'1422 160c0 -6 -4 -10 -8 -12c-49 -23 -87 -60 -121 -99s-60 -85 -76 -135c-2 -8 -10 -14 -19 -14c-11 0 -20 9 -20 20c0 2 1 4 1 6c17 55 46 106 84 149c19 23 43 42 68 58h-1255c-11 0 -20 9 -20 20s9 20 20 20h1332c8 0 14 -6 14 -13zM1428 347c0 -11 -9 -20 -20 -20 h-1332c-8 0 -14 6 -14 13c0 6 4 10 8 12c49 23 87 60 121 99s60 85 76 135c2 8 10 14 19 14c11 0 20 -9 20 -20c0 -2 -1 -4 -1 -6c-17 -55 -46 -106 -84 -149c-19 -23 -43 -42 -68 -58h1255c11 0 20 -9 20 -20'], + 0x21CC: [600,100,1484,56,1428,'1428 153c0 -11 -9 -20 -20 -20h-1255c25 -16 49 -35 68 -58c38 -43 67 -94 84 -149c0 -2 1 -4 1 -6c0 -11 -9 -20 -20 -20c-9 0 -17 6 -19 14c-16 50 -42 96 -76 135s-72 76 -121 99c-4 2 -8 6 -8 12c0 7 6 13 14 13h1332c11 0 20 -9 20 -20zM1422 340 c0 -7 -6 -13 -14 -13h-1332c-11 0 -20 9 -20 20s9 20 20 20h1255c-25 16 -49 35 -68 58c-38 43 -67 94 -84 149c-1 2 -1 4 -1 6c0 11 9 20 20 20c9 0 17 -6 19 -14c16 -50 42 -96 76 -135s72 -76 121 -99c4 -2 8 -6 8 -12'], + 0x21CD: [520,20,1457,56,1401,'1401 153c0 -11 -8 -20 -20 -20h-674l-50 -140c-3 -8 -11 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l46 126h-357c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13 s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11c11 0 20 -9 20 -20c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h442l51 140c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -1 -7l-46 -126h588c12 0 20 -9 20 -20s-8 -20 -20 -20h-603l-56 -154h659 c12 0 20 -9 20 -20zM735 327h-471c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h415'], + 0x21CE: [520,20,1534,56,1478,'1478 250c0 -6 -4 -11 -10 -13c-71 -19 -133 -60 -187 -107c-44 -39 -81 -86 -108 -139c-4 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-480l-51 -140c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l46 126h-395 c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11c11 0 20 -9 20 -20c0 -3 0 -6 -2 -9 c-23 -46 -54 -88 -89 -124h480l51 140c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-46 -126h395c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 14 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 187 -107c6 -2 10 -7 10 -13zM1401 250 c-47 19 -91 45 -131 77h-454l-56 -154h510c40 32 84 58 131 77zM774 327h-510c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h454'], + 0x21CF: [520,20,1457,56,1401,'1401 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-442l-50 -140c-3 -8 -11 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l46 126h-589c-11 0 -20 9 -20 20 s9 20 20 20h603l56 154h-659c-11 0 -20 9 -20 20s9 20 20 20h674l51 140c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -1 -7l-46 -126h356c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107 c5 -2 9 -7 9 -13zM1325 250c-48 19 -92 45 -132 77h-415l-56 -154h471c40 32 84 58 132 77'], + 0x21D0: [520,20,1457,56,1401,'1401 153c0 -11 -9 -20 -20 -20h-1073c35 -36 65 -78 89 -124c1 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-8 0 -15 4 -18 11c-27 53 -64 100 -108 139c-54 47 -116 88 -188 107c-5 2 -9 7 -9 13s4 11 9 13c72 19 134 60 188 107c44 39 81 86 108 139c3 7 10 11 18 11 c11 0 20 -9 20 -20c0 -3 -1 -6 -2 -9c-24 -46 -54 -88 -89 -124h1073c11 0 20 -9 20 -20s-9 -20 -20 -20h-1117c-40 -32 -84 -58 -132 -77c48 -19 92 -45 132 -77h1117c11 0 20 -9 20 -20'], + 0x21D1: [909,436,652,56,596,'596 586c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2c-46 24 -88 54 -124 89v-1073c0 -11 -9 -20 -20 -20s-20 9 -20 20v1117c-32 40 -58 84 -77 132c-19 -48 -45 -92 -77 -132v-1117c0 -11 -9 -20 -20 -20s-20 9 -20 20v1073c-36 -35 -78 -65 -124 -89c-3 -1 -6 -2 -9 -2 c-11 0 -20 9 -20 20c0 8 4 15 11 18c53 27 100 64 139 108c47 54 88 116 107 188c2 5 7 9 13 9s11 -4 13 -9c19 -72 60 -134 107 -188c39 -44 86 -81 139 -108c7 -3 11 -10 11 -18'], + 0x21D2: [520,20,1457,56,1401,'1401 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-1073c-11 0 -20 9 -20 20s9 20 20 20h1117c40 32 84 58 132 77c-48 19 -92 45 -132 77h-1117 c-11 0 -20 9 -20 20s9 20 20 20h1073c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13'], + 0x21D3: [936,409,652,56,596,'596 -86c0 -8 -4 -15 -11 -18c-53 -27 -100 -64 -139 -108c-47 -54 -88 -116 -107 -188c-2 -5 -7 -9 -13 -9s-11 4 -13 9c-19 72 -60 134 -107 188c-39 44 -86 81 -139 108c-7 3 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2c46 -24 88 -54 124 -89v1073 c0 11 9 20 20 20s20 -9 20 -20v-1117c32 -40 58 -84 77 -132c19 48 45 92 77 132v1117c0 11 9 20 20 20s20 -9 20 -20v-1073c36 35 78 65 124 89c3 1 6 2 9 2c11 0 20 -9 20 -20'], + 0x21D4: [520,20,1534,56,1478,'1478 250c0 -6 -4 -11 -10 -13c-71 -19 -133 -60 -187 -107c-44 -39 -81 -86 -108 -139c-4 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-918c35 -36 65 -78 89 -124c1 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-8 0 -14 4 -18 11 c-27 53 -64 100 -108 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 108 139c4 7 10 11 18 11c11 0 20 -9 20 -20c0 -3 -1 -6 -2 -9c-24 -46 -54 -88 -89 -124h918c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9c0 11 9 20 20 20 c8 0 14 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 187 -107c6 -2 10 -7 10 -13zM1401 250c-47 19 -92 45 -131 77h-1006c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h1006c39 32 84 58 131 77'], + 0x21D5: [961,461,652,56,596,'596 -138c0 -8 -4 -14 -11 -18c-53 -27 -100 -64 -139 -108c-47 -54 -88 -116 -107 -187c-2 -6 -7 -10 -13 -10s-11 4 -13 10c-19 71 -60 133 -107 187c-39 44 -86 81 -139 108c-7 4 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2c46 -24 88 -54 124 -89v918 c-36 -35 -78 -65 -124 -89c-3 -1 -6 -2 -9 -2c-11 0 -20 9 -20 20c0 8 4 14 11 18c53 27 100 64 139 108c47 54 88 116 107 187c2 6 7 10 13 10s11 -4 13 -10c19 -71 60 -133 107 -187c39 -44 86 -81 139 -108c7 -4 11 -10 11 -18c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2 c-46 24 -88 54 -124 89v-918c36 35 78 65 124 89c3 1 6 2 9 2c11 0 20 -9 20 -20zM403 753c-32 39 -58 84 -77 131c-19 -47 -45 -92 -77 -131v-1006c32 -39 58 -84 77 -131c19 47 45 92 77 131v1006'], + 0x21D6: [915,505,1532,56,1476,'1476 -347c0 -11 -9 -20 -20 -20c-6 0 -11 2 -14 5l-1181 1181c-50 5 -100 18 -147 38c20 -47 33 -97 39 -147l1180 -1180c3 -4 6 -9 6 -15c0 -11 -9 -20 -20 -20c-6 0 -11 3 -14 6l-1150 1149c0 -50 -8 -101 -24 -150c-3 -8 -10 -14 -19 -14c-11 0 -20 9 -20 20 c0 2 0 4 1 6c18 57 25 116 21 175c-4 72 -19 144 -56 208c-1 2 -2 5 -2 7c0 7 6 13 13 13c3 0 5 0 7 -2c64 -37 136 -51 208 -56c59 -4 118 3 175 22c2 0 4 1 6 1c11 0 20 -9 20 -20c0 -9 -6 -17 -14 -20c-49 -15 -99 -24 -150 -24l1149 -1149c4 -4 6 -9 6 -14'], + 0x21D7: [915,505,1532,56,1476,'1476 902c0 -2 -1 -5 -2 -7c-37 -64 -52 -136 -57 -208c-3 -59 4 -118 22 -175c1 -2 1 -4 1 -6c0 -11 -9 -20 -20 -20c-9 0 -16 6 -19 14c-16 49 -24 100 -25 150l-1149 -1149c-3 -3 -8 -6 -14 -6c-11 0 -20 9 -20 20c0 6 2 11 6 15l1180 1180c6 50 18 100 39 147 c-47 -20 -97 -33 -148 -38l-1180 -1181c-3 -3 -8 -5 -14 -5c-11 0 -20 9 -20 20c0 5 2 10 6 14l1149 1149c-51 0 -101 9 -151 24c-8 3 -13 11 -13 20c0 11 9 20 20 20c2 0 4 -1 6 -1c57 -19 116 -26 174 -22c72 5 145 19 209 56c2 2 4 2 7 2c7 0 13 -6 13 -13'], + 0x21D8: [1005,415,1532,56,1476,'1476 -402c0 -7 -6 -13 -13 -13c-3 0 -5 0 -7 2c-64 37 -137 51 -209 56c-58 4 -117 -3 -174 -22c-2 0 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 5 17 13 20c50 15 100 24 151 24l-1149 1149c-4 4 -6 9 -6 14c0 11 9 20 20 20c6 0 11 -2 14 -5l1180 -1181 c51 -5 101 -18 148 -38c-21 47 -33 97 -39 147l-1180 1180c-4 4 -6 9 -6 15c0 11 9 20 20 20c6 0 11 -3 14 -6l1149 -1149c1 50 9 101 25 150c3 8 10 14 19 14c11 0 20 -9 20 -20c0 -2 0 -4 -1 -6c-18 -57 -25 -116 -22 -175c5 -72 20 -144 57 -208c1 -2 2 -5 2 -7'], + 0x21D9: [1005,415,1532,56,1476,'1476 847c0 -5 -2 -10 -6 -14l-1149 -1149c51 0 101 -9 150 -24c8 -3 14 -11 14 -20c0 -11 -9 -20 -20 -20c-2 0 -4 1 -6 1c-57 19 -116 26 -175 22c-72 -5 -144 -19 -208 -56c-2 -2 -4 -2 -7 -2c-7 0 -13 6 -13 13c0 2 1 5 2 7c37 64 52 136 56 208c4 59 -3 118 -21 175 c-1 2 -1 4 -1 6c0 11 9 20 20 20c9 0 16 -6 19 -14c16 -49 24 -100 24 -150l1150 1149c3 3 8 6 14 6c11 0 20 -9 20 -20c0 -6 -3 -11 -6 -15l-1180 -1180c-6 -50 -19 -100 -39 -147c47 20 97 33 147 38l1181 1181c3 3 8 5 14 5c11 0 20 -9 20 -20'], + 0x21DA: [617,117,1461,56,1405,'1405 56c0 -11 -9 -20 -20 -20h-1016c27 -39 49 -81 66 -126c1 -2 1 -4 1 -7c0 -11 -9 -20 -20 -20c-8 0 -15 5 -18 13c-27 69 -66 132 -116 186c-60 66 -132 123 -217 156c-5 1 -9 6 -9 12s4 11 9 12c85 33 157 90 217 156c50 54 89 117 116 186c3 8 10 13 18 13 c11 0 20 -9 20 -20c0 -3 0 -5 -1 -7c-17 -45 -39 -87 -66 -126h1016c11 0 20 -9 20 -20s-9 -20 -20 -20h-1045c-9 -11 -18 -22 -28 -33c-44 -48 -96 -89 -153 -121h1226c11 0 20 -9 20 -20s-9 -20 -20 -20h-1226c57 -32 109 -73 153 -121c10 -11 19 -22 28 -33h1045 c11 0 20 -9 20 -20'], + 0x21DB: [617,117,1461,56,1405,'1405 250c0 -6 -4 -11 -9 -12c-85 -33 -157 -90 -217 -156c-50 -54 -89 -117 -116 -186c-2 -8 -10 -13 -18 -13c-11 0 -20 9 -20 20c0 3 0 5 1 7c17 45 39 87 66 126h-1016c-11 0 -20 9 -20 20s9 20 20 20h1045c9 11 18 22 28 33c44 48 96 89 153 121h-1226 c-11 0 -20 9 -20 20s9 20 20 20h1226c-57 32 -109 73 -153 121c-10 11 -19 22 -28 33h-1045c-11 0 -20 9 -20 20s9 20 20 20h1016c-27 39 -49 81 -66 126c-1 2 -1 4 -1 7c0 11 9 20 20 20c8 0 16 -5 18 -13c27 -69 66 -132 116 -186c60 -66 132 -123 217 -156 c5 -1 9 -6 9 -12'], + 0x21DC: [510,10,1463,56,1407,'1407 250c0 -11 -9 -20 -20 -20h-52c-37 0 -59 22 -74 53c-11 23 -18 53 -30 77c-8 16 -18 30 -38 30c-43 0 -58 -30 -66 -67c-9 -47 -8 -107 -18 -154c-11 -58 -38 -99 -105 -99c-66 0 -93 41 -105 99c-10 47 -8 107 -18 154c-8 37 -23 67 -66 67s-58 -30 -66 -67 c-9 -47 -8 -107 -18 -154c-11 -58 -38 -99 -105 -99c-66 0 -93 41 -105 99c-10 47 -8 107 -18 154c-8 37 -23 67 -66 67c-20 0 -30 -14 -38 -30c-11 -24 -18 -54 -30 -77c-15 -31 -36 -53 -73 -53h-141c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20 c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h141c19 0 29 14 37 30 c12 24 19 54 30 77c15 31 37 53 74 53c67 0 94 -41 105 -99c10 -47 9 -107 18 -154c8 -37 23 -67 66 -67s58 30 66 67c10 47 8 107 18 154c12 58 39 99 105 99c67 0 94 -41 105 -99c10 -47 9 -107 18 -154c8 -37 23 -67 66 -67s58 30 66 67c10 47 8 107 18 154 c12 58 39 99 105 99c38 0 59 -22 74 -53c12 -23 19 -53 30 -77c8 -16 18 -30 38 -30h52c11 0 20 -9 20 -20'], + 0x21DD: [510,10,1463,56,1407,'1407 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-141c-37 0 -59 22 -74 53c-11 23 -18 53 -30 77c-8 16 -18 30 -37 30 c-44 0 -59 -30 -66 -67c-10 -47 -9 -107 -18 -154c-12 -58 -39 -99 -105 -99c-67 0 -94 41 -106 99c-9 47 -8 107 -18 154c-7 37 -22 67 -65 67c-44 0 -59 -30 -66 -67c-10 -47 -9 -107 -18 -154c-12 -58 -39 -99 -105 -99c-67 0 -94 41 -106 99c-9 47 -8 107 -18 154 c-7 37 -22 67 -65 67c-20 0 -30 -14 -38 -30c-12 -24 -19 -54 -30 -77c-15 -31 -37 -53 -74 -53h-52c-11 0 -20 9 -20 20s9 20 20 20h52c20 0 30 14 38 30c11 24 18 54 30 77c15 31 36 53 74 53c66 0 93 -41 105 -99c9 -47 8 -107 18 -154c7 -37 22 -67 66 -67 c43 0 58 30 65 67c10 47 9 107 18 154c12 58 39 99 106 99c66 0 93 -41 105 -99c9 -47 8 -107 18 -154c7 -37 22 -67 66 -67c43 0 58 30 65 67c10 47 9 107 18 154c12 58 39 99 106 99c37 0 58 -22 73 -53c12 -23 19 -53 30 -77c8 -16 18 -30 38 -30h141 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x21E6: [520,20,1496,56,1440,'1440 153c0 -11 -9 -20 -20 -20h-1014v-133c0 -11 -9 -20 -20 -20c-9 0 -16 5 -19 13c-48 126 -161 216 -294 237c-10 2 -17 10 -17 20s7 18 17 20c133 21 246 111 294 237c3 8 10 13 19 13c11 0 20 -9 20 -20v-133h1014c11 0 20 -9 20 -20v-194zM1400 327h-1014 c-11 0 -20 9 -20 20v70c-50 -77 -123 -136 -210 -167c87 -31 160 -90 210 -167v70c0 11 9 20 20 20h1014v154'], + 0x21E7: [948,436,652,56,596,'596 618c0 -11 -9 -20 -20 -20h-133v-1014c0 -11 -9 -20 -20 -20h-194c-11 0 -20 9 -20 20v1014h-133c-11 0 -20 9 -20 20c0 9 5 16 13 19c126 48 216 161 237 294c2 10 10 17 20 17s18 -7 20 -17c21 -133 111 -246 237 -294c8 -3 13 -10 13 -19zM493 638 c-77 50 -136 123 -167 210c-31 -87 -90 -160 -167 -210h70c11 0 20 -9 20 -20v-1014h154v1014c0 11 9 20 20 20h70'], + 0x21E8: [520,20,1496,56,1440,'1440 250c0 -10 -7 -18 -17 -20c-133 -21 -246 -111 -294 -237c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20v133h-1014c-11 0 -20 9 -20 20v194c0 11 9 20 20 20h1014v133c0 11 9 20 20 20c9 0 16 -5 19 -13c48 -126 161 -216 294 -237c10 -2 17 -10 17 -20zM1340 250 c-87 31 -160 90 -210 167v-70c0 -11 -9 -20 -20 -20h-1014v-154h1014c11 0 20 -9 20 -20v-70c50 77 123 136 210 167'], + 0x21E9: [936,448,652,56,596,'596 -118c0 -9 -5 -16 -13 -19c-126 -48 -216 -161 -237 -294c-2 -10 -10 -17 -20 -17s-18 7 -20 17c-21 133 -111 246 -237 294c-8 3 -13 10 -13 19c0 11 9 20 20 20h133v1014c0 11 9 20 20 20h194c11 0 20 -9 20 -20v-1014h133c11 0 20 -9 20 -20zM493 -138h-70 c-11 0 -20 9 -20 20v1014h-154v-1014c0 -11 -9 -20 -20 -20h-70c77 -50 136 -123 167 -210c31 87 90 160 167 210'], + 0x21F3: [948,448,652,56,596,'596 -118c0 -9 -5 -16 -13 -19c-126 -48 -216 -161 -237 -294c-2 -10 -10 -17 -20 -17s-18 7 -20 17c-21 133 -111 246 -237 294c-8 3 -13 10 -13 19c0 11 9 20 20 20h133v696h-133c-11 0 -20 9 -20 20c0 9 5 16 13 19c126 48 216 161 237 294c2 10 10 17 20 17 s18 -7 20 -17c21 -133 111 -246 237 -294c8 -3 13 -10 13 -19c0 -11 -9 -20 -20 -20h-133v-696h133c11 0 20 -9 20 -20zM493 638c-77 50 -136 123 -167 210c-31 -87 -90 -160 -167 -210h70c11 0 20 -9 20 -20v-736c0 -11 -9 -20 -20 -20h-70c77 -50 136 -123 167 -210 c31 87 90 160 167 210h-70c-11 0 -20 9 -20 20v736c0 11 9 20 20 20h70'], + 0x21F5: [936,436,896,56,840,'516 -174c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65 v1213c0 11 9 20 20 20s20 -9 20 -20v-1213c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20zM840 674c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-1213c0 -11 -9 -20 -20 -20s-20 9 -20 20v1213 c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0x21F6: [990,490,1463,56,1407,'1407 -230c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -19 24c10 53 33 102 66 144c22 28 48 52 78 72h-1232c-11 0 -20 9 -20 20s9 20 20 20h1232c-30 20 -56 44 -78 72c-33 42 -56 91 -66 148 c10 57 33 106 66 148c22 28 48 52 78 72h-1232c-11 0 -20 9 -20 20s9 20 20 20h1232c-30 20 -56 44 -78 72c-33 42 -56 91 -66 148c10 57 33 106 66 148c22 28 48 52 78 72h-1232c-11 0 -20 9 -20 20s9 20 20 20h1232c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144 c-1 15 8 24 19 24c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13s-4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -35 -48 -77 -57 -123c9 -46 29 -88 57 -123c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13s-4 -11 -9 -13 c-57 -19 -101 -59 -137 -104c-28 -35 -48 -77 -57 -123c9 -46 29 -88 57 -123c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0x220F: [950,450,1278,56,1221,'1221 -450h-481v54c132 0 164 45 164 110v1182h-531v-1182c0 -64 31 -110 164 -110v-54h-481v54c132 0 164 45 164 110v1072c0 64 -31 110 -164 110v54h1165v-54c-132 0 -164 -45 -164 -110v-1072c0 -64 31 -110 164 -110v-54'], + 0x2210: [950,450,1278,56,1221,'1221 -450h-1165v54c132 0 164 45 164 110v1072c0 64 -31 110 -164 110v54h481v-54c-132 0 -164 -45 -164 -110v-1182h531v1182c0 64 -31 110 -164 110v54h481v-54c-132 0 -164 -45 -164 -110v-1072c0 -64 31 -110 164 -110v-54'], + 0x2211: [950,450,1444,56,1387,'1387 -130l-121 -320h-1182c-18 0 -27 0 -27 11c0 0 0 6 10 18l518 607l-529 724c0 11 0 30 1 33c3 6 4 7 27 7h1182l121 -281h-25c-34 81 -102 126 -127 142c-79 50 -166 67 -220 75c-9 2 -100 16 -234 16h-548l466 -637c7 -10 7 -15 7 -15c0 -5 -2 -8 -9 -16l-509 -597 h603c192 0 290 26 311 31c115 30 221 98 260 202h25'], + 0x221A: [850,350,1000,110,1020,'1020 830c0 -3 0 -5 -7 -18l-547 -1142c-10 -19 -11 -20 -42 -20l-228 531l-71 -54l-15 16l139 107l213 -496l516 1076c5 11 9 20 22 20c12 0 20 -9 20 -20'], + 0x2223: [851,351,278,117,161,'161 -329c0 -12 -10 -22 -22 -22s-22 10 -22 22v1158c0 12 10 22 22 22s22 -10 22 -22v-1158'], + 0x2225: [851,351,354,56,298,'100 -329c0 -12 -10 -22 -22 -22s-22 10 -22 22v1158c0 12 10 22 22 22s22 -10 22 -22v-1158zM298 -329c0 -12 -10 -22 -22 -22s-22 10 -22 22v1158c0 12 10 22 22 22s22 -10 22 -22v-1158'], + 0x222B: [1361,861,999,56,943,'943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50 c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93'], + 0x222C: [1361,861,1419,56,1363,'943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50 c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93zM1363 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49 c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261 c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93'], + 0x222D: [1361,861,1839,56,1783,'943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50 c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93zM1363 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49 c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261 c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93zM1783 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542 c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313 c55 0 109 -39 109 -93'], + 0x222E: [1361,861,999,56,943,'943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-15 -86c114 -43 196 -154 196 -283c0 -167 -136 -303 -303 -303h-8l-66 -284c-71 -290 -128 -524 -280 -524 c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459l15 86c-114 43 -195 154 -195 283c0 167 135 303 303 303h7c65 297 117 488 119 495c55 204 111 313 187 313 c55 0 109 -39 109 -93zM778 250c0 107 -65 198 -158 237l-97 -494c141 1 255 116 255 257zM518 507c-140 -1 -254 -116 -254 -257c0 -107 65 -198 157 -237'], + 0x222F: [1361,861,1419,56,1363,'1363 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-22 -128c123 -57 203 -145 203 -241c0 -121 -125 -229 -305 -277l-72 -310c-71 -290 -128 -524 -280 -524 c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459l12 72c-32 -4 -65 -6 -99 -6c-76 0 -148 10 -212 27l-72 -311c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93 c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459l22 129c-123 56 -202 144 -202 240c0 121 124 229 305 277c67 312 122 514 124 521c55 204 111 313 187 313c55 0 109 -39 109 -93 c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-12 -72c32 4 65 6 100 6c75 0 147 -10 211 -27c68 313 123 515 125 522c55 204 111 313 187 313c55 0 109 -39 109 -93zM1198 250 c0 80 -65 150 -165 197l-84 -425c147 43 249 127 249 228zM512 478c-147 -43 -248 -127 -248 -228c0 -80 64 -150 164 -197zM933 482c-61 16 -130 25 -202 25c-38 0 -74 -2 -109 -7l-94 -482c62 -16 130 -25 203 -25c37 0 73 2 108 7'], + 0x2230: [1361,861,1839,56,1783,'1783 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-23 -135c46 -18 84 -39 114 -62c60 -47 90 -104 90 -172s-30 -125 -90 -172c-49 -38 -120 -69 -212 -91l-75 -324 c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459l15 85c-90 -12 -194 -19 -312 -19h-8l-66 -284c-71 -290 -128 -524 -280 -524 c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459l12 68c-106 4 -199 14 -278 31l-31 6l-74 -323c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50 c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459l24 136c-47 17 -85 38 -115 61c-60 47 -89 104 -89 172s29 125 89 172c49 38 121 69 213 91c69 320 125 528 127 535c55 204 111 313 187 313c55 0 109 -39 109 -93 c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-15 -85c90 12 194 19 313 19h7c65 297 117 488 119 495c55 204 111 313 187 313c55 0 109 -39 109 -93c0 -35 -25 -50 -49 -50 c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-12 -68c107 -4 199 -14 278 -31l31 -6c69 319 125 527 127 534c55 204 111 313 187 313c55 0 109 -39 109 -93zM1618 250c0 54 -25 99 -72 135 c-25 20 -57 38 -95 53l-79 -401c74 19 133 45 174 78c47 36 72 81 72 135zM509 463c-74 -19 -132 -45 -174 -78c-47 -36 -71 -81 -71 -135s24 -99 71 -135c26 -20 57 -38 95 -52zM938 507c-121 0 -228 -7 -318 -21l-89 -455l31 -6c78 -16 170 -26 276 -30zM1350 469l-30 6 c-78 16 -171 26 -277 30l-100 -512c121 0 228 7 318 21'], + 0x2231: [1361,861,999,56,943,'943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-11 -66c103 -38 181 -127 205 -236c11 16 25 29 41 40c2 2 5 3 8 3c10 2 21 -5 23 -16c1 -8 -2 -16 -9 -20 c-30 -20 -49 -53 -54 -89c-1 -8 -8 -15 -17 -17c-8 -1 -17 3 -21 11c-17 32 -46 55 -81 64c-8 2 -14 8 -15 16c-2 11 5 22 16 24c3 0 6 0 8 -1c21 -5 39 -14 56 -25c-19 91 -83 166 -168 200c-50 -283 -109 -565 -177 -844c-71 -290 -128 -524 -280 -524 c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459l125 646h-2c-153 0 -277 -124 -277 -277c0 -13 -11 -23 -23 -23c-13 0 -23 10 -23 23c0 178 144 323 323 323h12 c63 286 112 468 114 475c55 204 111 313 187 313c55 0 109 -39 109 -93'], + 0x2232: [1361,861,999,56,943,'943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-11 -66c28 -10 55 -25 79 -42c6 -5 10 -11 10 -19c0 -13 -11 -23 -23 -23c-5 0 -10 2 -14 5c-18 13 -39 24 -60 33 l-105 -534h2c153 0 277 124 277 277c0 41 -9 79 -25 114c-6 -19 -16 -37 -29 -53c-1 -3 -3 -4 -6 -6c-10 -5 -22 -1 -27 9c-4 7 -2 16 2 22c23 28 33 65 27 100c-1 9 3 17 11 21s17 3 23 -3c25 -26 61 -40 97 -39c7 1 15 -3 19 -11c4 -9 1 -21 -9 -26c-3 -2 -6 -2 -8 -3 c-20 0 -40 2 -58 8c18 -41 29 -86 29 -133c0 -178 -145 -323 -323 -323h-13l-61 -264c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459 l11 66c-123 45 -211 164 -211 303c0 178 144 323 323 323h12c63 286 112 468 114 475c55 204 111 313 187 313c55 0 109 -39 109 -93zM523 527h-2c-153 0 -277 -124 -277 -277c0 -116 72 -216 173 -257'], + 0x2233: [1361,861,999,56,943,'943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-11 -66c95 -34 169 -112 198 -210c10 17 23 32 38 44c2 2 5 3 8 4c11 2 21 -4 24 -15c2 -8 -1 -16 -7 -20 c-28 -23 -45 -57 -48 -93c0 -8 -6 -16 -15 -18c-8 -2 -17 2 -22 9c-19 31 -50 52 -86 58c-7 1 -14 7 -16 15c-2 11 4 21 15 24c3 1 5 1 8 1c20 -4 39 -11 57 -22c-25 81 -85 146 -162 177l-105 -534h2c130 0 239 90 269 210c2 10 11 18 22 18c13 0 23 -10 23 -23 c0 -2 0 -4 -1 -6c-35 -140 -162 -245 -313 -245h-13l-61 -264c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459l11 66 c-123 45 -211 164 -211 303c0 178 144 323 323 323h12c63 286 112 468 114 475c55 204 111 313 187 313c55 0 109 -39 109 -93zM523 527h-2c-153 0 -277 -124 -277 -277c0 -116 72 -216 173 -257'], + 0x22A2: [684,184,946,56,890,'890 250c0 -11 -9 -20 -20 -20h-774v-394c0 -11 -9 -20 -20 -20s-20 9 -20 20v828c0 11 9 20 20 20s20 -9 20 -20v-394h774c11 0 20 -9 20 -20'], + 0x22A3: [684,184,946,56,890,'890 -164c0 -11 -9 -20 -20 -20s-20 9 -20 20v394h-774c-11 0 -20 9 -20 20s9 20 20 20h774v394c0 11 9 20 20 20s20 -9 20 -20v-828'], + 0x22A4: [684,184,986,56,930,'930 664c0 -11 -9 -20 -20 -20h-397v-808c0 -11 -9 -20 -20 -20s-20 9 -20 20v808h-397c-11 0 -20 9 -20 20s9 20 20 20h834c11 0 20 -9 20 -20'], + 0x22A5: [684,184,946,56,890,'890 -164c0 -11 -9 -20 -20 -20h-794c-11 0 -20 9 -20 20s9 20 20 20h377v808c0 11 9 20 20 20s20 -9 20 -20v-808h377c11 0 20 -9 20 -20'], + 0x22C0: [957,435,1111,66,1043,'1041 -393c14 -40 -46 -62 -60 -21l-426 1221l-426 -1221c-14 -41 -74 -19 -60 21l466 1337c7 18 34 18 40 0'], + 0x22C1: [935,457,1111,66,1043,'1041 893l-466 -1337c-6 -18 -33 -18 -40 0l-466 1337c-14 40 46 62 60 21l426 -1221l426 1221c14 41 74 19 60 -21'], + 0x22C2: [939,417,1111,66,1046,'1046 -385c0 -17 -14 -32 -32 -32s-32 15 -32 32v925c0 187 -193 335 -426 335s-426 -148 -426 -335v-925c0 -17 -14 -32 -32 -32s-32 15 -32 32v925c0 218 218 399 490 399s490 -181 490 -399v-925'], + 0x22C3: [917,439,1111,66,1046,'1046 -40c0 -218 -218 -399 -490 -399s-490 181 -490 399v925c0 17 14 32 32 32s32 -15 32 -32v-925c0 -187 193 -335 426 -335s426 148 426 335v925c0 17 14 32 32 32s32 -15 32 -32v-925'], + 0x2308: [800,300,458,178,429,'429 779c0 -12 -9 -21 -21 -21h-188v-1037c0 -12 -9 -21 -21 -21s-21 9 -21 21v1079h230c12 0 21 -9 21 -21'], + 0x2309: [800,300,458,29,280,'280 -279c0 -12 -10 -21 -21 -21c-12 0 -21 9 -21 21v1037h-188c-12 0 -21 9 -21 21s9 21 21 21h230v-1079'], + 0x230A: [800,300,458,178,429,'429 -279c0 -12 -9 -21 -21 -21h-230v1079c0 12 9 21 21 21s21 -9 21 -21v-1037h188c12 0 21 -9 21 -21'], + 0x230B: [800,300,458,29,280,'280 779v-1079h-230c-12 0 -21 9 -21 21s9 21 21 21h188v1037c0 12 9 21 21 21c11 0 21 -9 21 -21'], + 0x2329: [800,300,428,124,372,'372 -279c0 -12 -9 -21 -21 -21c-9 0 -17 6 -20 13l-206 529c0 3 -1 5 -1 8s1 5 1 8l206 529c3 7 11 13 20 13c12 0 21 -9 21 -21c0 -3 -1 -5 -1 -8l-203 -521l203 -521c0 -3 1 -5 1 -8'], + 0x232A: [800,300,428,56,304,'304 250c0 -3 0 -5 -1 -8l-206 -529c-3 -7 -11 -13 -20 -13c-11 0 -21 9 -21 21c0 3 1 5 2 8l203 521l-203 521c-1 3 -2 5 -2 8c0 12 10 21 21 21c9 0 17 -6 20 -13l206 -529c1 -3 1 -5 1 -8'], + 0x23B4: [730,-546,735,0,735,'735 567c0 -11 -9 -21 -21 -21s-21 10 -21 21v121h-651v-121c0 -11 -9 -21 -21 -21s-21 10 -21 21v163h735v-163'], + 0x23B5: [-116,300,735,0,735,'735 -300h-735v163c0 11 9 21 21 21s21 -10 21 -21v-121h651v121c0 11 9 21 21 21s21 -10 21 -21v-163'], + 0x23DC: [745,-540,1006,0,1006,'1006 553c0 -8 -6 -13 -13 -13c-4 0 -7 1 -9 3c-88 88 -283 146 -429 146h-104c-146 0 -341 -58 -429 -146c-2 -2 -5 -3 -9 -3c-7 0 -13 5 -13 13c0 3 1 7 4 9c93 93 291 183 447 183h104c156 0 354 -90 447 -183c3 -2 4 -6 4 -9'], + 0x23DD: [-110,315,1006,0,1006,'1006 -123c0 -3 -1 -7 -4 -9c-93 -93 -291 -183 -447 -183h-104c-156 0 -354 90 -447 183c-3 2 -4 6 -4 9c0 8 6 13 13 13c4 0 7 -1 9 -3c88 -88 283 -146 429 -146h104c146 0 341 58 429 146c2 2 5 3 9 3c7 0 13 -5 13 -13'], + 0x23DE: [815,-509,993,1,994,'994 516c0 -4 -3 -7 -7 -7c-3 0 -5 2 -6 4c-27 73 -100 121 -152 121h-174c-79 0 -139 56 -158 126c-19 -70 -79 -126 -158 -126h-174c-52 0 -125 -48 -152 -121c-1 -2 -3 -4 -6 -4c-4 0 -6 3 -6 7v2c32 89 100 172 164 172h174c78 0 152 46 152 119c0 3 2 6 6 6 s7 -3 7 -6c0 -73 73 -119 151 -119h174c64 0 132 -83 164 -172c0 -1 1 -2 1 -2'], + 0x23DF: [-79,385,993,0,993,'993 -85c0 -1 -1 -2 -1 -3c-32 -89 -100 -172 -164 -172h-174c-78 0 -151 -46 -151 -118c0 -4 -3 -7 -7 -7s-6 3 -6 7c0 72 -74 118 -152 118h-174c-64 0 -132 83 -164 172v3c0 3 2 6 6 6c3 0 5 -2 6 -4c27 -73 100 -121 152 -121h174c79 0 139 -56 158 -126 c19 70 79 126 158 126h174c52 0 125 48 152 121c1 2 3 4 6 4c4 0 7 -3 7 -6'], + 0x23E0: [853,-613,1048,0,1048,'1048 613h-68l-172 172h-568l-172 -172h-68l240 240h568'], + 0x23E1: [-183,423,1048,0,1048,'1048 -183l-240 -240h-568l-240 240h68l172 -172h568l172 172h68'], + 0x27A1: [468,-31,1423,56,1367,'1361 258c8 -2 8 -14 0 -16c-110 -29 -203 -104 -255 -205c-4 -9 -16 -6 -16 3v113h-1014c-11 0 -20 9 -20 20v154c0 11 9 20 20 20h1014v113c0 9 12 12 16 3c52 -101 145 -176 255 -205'], + 0x27E6: [800,300,444,130,422,'422 -279c0 -12 -9 -21 -21 -21h-271v1100h271c12 0 21 -9 21 -21s-9 -21 -21 -21h-93v-1016h93c12 0 21 -9 21 -21zM266 758h-94v-1016h94v1016'], + 0x27E7: [800,300,444,22,314,'314 800v-1100h-271c-12 0 -21 9 -21 21s9 21 21 21h93v1016h-93c-12 0 -21 9 -21 21s9 21 21 21h271zM272 758h-94v-1016h94v1016'], + 0x27E8: [800,300,428,124,372,'372 -279c0 -12 -9 -21 -21 -21c-9 0 -17 6 -20 13l-206 529c0 3 -1 5 -1 8s1 5 1 8l206 529c3 7 11 13 20 13c12 0 21 -9 21 -21c0 -3 -1 -5 -1 -8l-203 -521l203 -521c0 -3 1 -5 1 -8'], + 0x27E9: [800,300,428,56,304,'304 250c0 -3 0 -5 -1 -8l-206 -529c-3 -7 -11 -13 -20 -13c-11 0 -21 9 -21 21c0 3 1 5 2 8l203 521l-203 521c-1 3 -2 5 -2 8c0 12 10 21 21 21c9 0 17 -6 20 -13l206 -529c1 -3 1 -5 1 -8'], + 0x27EA: [800,300,623,124,567,'372 -279c0 -12 -9 -21 -21 -21c-9 0 -17 6 -20 13l-206 529c0 3 -1 5 -1 8s1 5 1 8l206 529c3 7 11 13 20 13c12 0 21 -9 21 -21c0 -3 -1 -5 -1 -8l-203 -521l203 -521c0 -3 1 -5 1 -8zM567 -279c0 -12 -10 -21 -21 -21c-9 0 -17 6 -20 13l-206 529c-1 3 -1 5 -1 8 s0 5 1 8l206 529c3 7 11 13 20 13c11 0 21 -9 21 -21c0 -3 -1 -5 -2 -8l-203 -521l203 -521c1 -3 2 -5 2 -8'], + 0x27EB: [800,300,623,56,499,'499 250c0 -3 0 -5 -1 -8l-206 -529c-3 -7 -11 -13 -20 -13c-11 0 -21 9 -21 21c0 3 1 5 2 8l203 521l-203 521c-1 3 -2 5 -2 8c0 12 10 21 21 21c9 0 17 -6 20 -13l206 -529c1 -3 1 -5 1 -8zM304 250c0 -3 0 -5 -1 -8l-206 -529c-3 -7 -11 -13 -20 -13 c-11 0 -21 9 -21 21c0 3 1 5 2 8l203 521l-203 521c-1 3 -2 5 -2 8c0 12 10 21 21 21c9 0 17 -6 20 -13l206 -529c1 -3 1 -5 1 -8'], + 0x27EE: [813,313,305,108,249,'249 -300c0 -7 -6 -13 -13 -13c-4 0 -7 1 -9 4c-57 56 -119 276 -119 494v130c0 218 62 438 119 494c2 3 5 4 9 4c7 0 13 -6 13 -13c0 -4 -1 -7 -4 -9c-54 -54 -81 -269 -81 -476v-130c0 -207 27 -422 81 -476c3 -2 4 -5 4 -9'], + 0x27EF: [813,313,305,56,197,'197 185c0 -218 -62 -438 -119 -494c-2 -3 -5 -4 -9 -4c-7 0 -13 6 -13 13c0 4 1 7 4 9c54 54 81 269 81 476v130c0 207 -27 422 -81 476c-3 2 -4 5 -4 9c0 7 6 13 13 13c4 0 7 -1 9 -4c57 -56 119 -276 119 -494v-130'], + 0x2906: [520,20,1437,56,1381,'1381 0c0 -27 -40 -27 -40 0v133h-1033c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11 c11 0 20 -9 20 -20c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h1033v133c0 27 40 27 40 0v-500zM1341 327h-1077c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h1077v154'], + 0x2907: [520,20,1437,56,1381,'1381 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-1033v-133c0 -27 -40 -27 -40 0v500c0 27 40 27 40 0v-133h1033c-35 36 -65 78 -89 124c-1 3 -2 6 -2 9 c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13zM1305 250c-48 19 -92 45 -132 77h-1077v-154h1077c40 32 84 58 132 77'], + 0x2A00: [902,402,1511,104,1408,'1408 250c0 -360 -292 -652 -652 -652s-652 292 -652 652s292 652 652 652s652 -292 652 -652zM840 250c0 -46 -38 -84 -84 -84s-84 38 -84 84s38 84 84 84s84 -38 84 -84zM1344 250c0 325 -263 588 -588 588s-588 -263 -588 -588s263 -588 588 -588s588 263 588 588'], + 0x2A01: [902,402,1511,104,1408,'1343 282c-16 299 -256 539 -555 555v-555h555zM724 837c-299 -16 -539 -256 -555 -555h555v555zM724 -337v555h-555c16 -299 256 -539 555 -555zM1343 218h-555v-555c299 16 539 256 555 555zM1408 250c0 -360 -292 -652 -652 -652s-652 292 -652 652s292 652 652 652 s652 -292 652 -652'], + 0x2A02: [902,402,1511,104,1408,'1344 250c0 151 -57 288 -150 392l-393 -392l393 -392c93 104 150 241 150 392zM1148 688c-104 93 -241 150 -392 150s-288 -57 -392 -150l392 -393zM711 250l-393 392c-93 -104 -150 -241 -150 -392s57 -288 150 -392zM1148 -188l-392 393l-392 -393 c104 -93 241 -150 392 -150s288 57 392 150zM1408 250c0 -360 -292 -652 -652 -652s-652 292 -652 652s292 652 652 652s652 -292 652 -652'], + 0x2A03: [917,439,1111,66,1046,'1046 -40c0 -218 -218 -399 -490 -399s-490 181 -490 399v925c0 17 14 32 32 32s32 -15 32 -32v-925c0 -187 193 -335 426 -335s426 148 426 335v925c0 17 14 32 32 32s32 -15 32 -32v-925zM640 250c0 -46 -38 -84 -84 -84s-84 38 -84 84s38 84 84 84s84 -38 84 -84'], + 0x2A04: [917,439,1111,66,1046,'1046 -40c0 -218 -218 -399 -490 -399s-490 181 -490 399v925c0 17 14 32 32 32s32 -15 32 -32v-925c0 -187 193 -335 426 -335s426 148 426 335v925c0 17 14 32 32 32s32 -15 32 -32v-925zM854 250c0 -18 -14 -32 -32 -32h-234v-234c0 -18 -14 -32 -32 -32 s-32 14 -32 32v234h-234c-18 0 -32 14 -32 32s14 32 32 32h234v234c0 18 14 32 32 32s32 -14 32 -32v-234h234c18 0 32 -14 32 -32'], + 0x2A05: [936,436,1111,66,1046,'1046 -404c0 -17 -14 -32 -32 -32s-32 15 -32 32v1276h-852v-1276c0 -17 -14 -32 -32 -32s-32 15 -32 32v1308c0 17 14 32 32 32h916c18 0 32 -15 32 -32v-1308'], + 0x2A06: [936,436,1111,66,1046,'1046 -404c0 -17 -14 -32 -32 -32h-916c-18 0 -32 15 -32 32v1308c0 17 14 32 32 32s32 -15 32 -32v-1276h852v1276c0 17 14 32 32 32s32 -15 32 -32v-1308'], + 0x2A09: [879,379,1371,56,1315,'1306 -370c-12 -13 -33 -13 -45 0l-575 575l-575 -575c-12 -13 -33 -13 -45 0c-13 12 -13 33 0 45l575 575l-575 575c-13 12 -13 33 0 45c12 13 33 13 45 0l575 -575l575 575c12 13 33 13 45 0c13 -12 13 -33 0 -45l-575 -575l575 -575c13 -12 13 -33 0 -45'], + 0x2A0C: [1361,861,2259,56,2203,'943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50 c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93zM1363 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49 c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261 c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93zM1783 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542 c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313 c55 0 109 -39 109 -93zM2203 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542c-54 -321 -119 -640 -196 -956c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93 c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459c110 654 246 1156 249 1167c55 204 111 313 187 313c55 0 109 -39 109 -93'], + 0x2A11: [1361,861,999,56,943,'943 1268c0 -35 -25 -50 -49 -50c-23 0 -48 16 -48 49c0 25 17 47 50 49c-4 4 -29 23 -60 23c-39 0 -73 -129 -85 -178c-34 -129 -71 -329 -108 -542l-124 -646h2c133 0 245 95 271 220c-17 -11 -35 -20 -56 -25c-2 -1 -5 -1 -8 -1c-11 2 -18 13 -16 24c1 8 7 14 15 16 c35 9 64 32 81 64c4 8 13 12 21 11c9 -2 16 -9 17 -17c5 -36 24 -69 54 -89c7 -4 10 -12 9 -20c-2 -11 -13 -18 -23 -16c-3 0 -6 1 -8 3c-16 11 -30 24 -41 40c-31 -146 -161 -256 -316 -256h-13l-61 -264c-71 -290 -128 -524 -280 -524c-61 0 -111 42 -111 93 c0 35 25 50 49 50c23 0 48 -16 48 -49c0 -25 -17 -47 -49 -49c0 0 25 -23 61 -23c81 0 127 188 145 261c33 139 62 306 88 459l11 66c-123 45 -211 164 -211 303c0 13 10 23 23 23c12 0 23 -10 23 -23c0 -116 72 -216 173 -257c106 598 227 1045 230 1055 c55 204 111 313 187 313c55 0 109 -39 109 -93'], + 0x2B04: [520,20,1508,56,1452,'1452 250c0 -10 -7 -18 -17 -20c-133 -21 -246 -111 -294 -237c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20v133h-696v-133c0 -11 -9 -20 -20 -20c-9 0 -16 5 -19 13c-48 126 -161 216 -294 237c-10 2 -17 10 -17 20s7 18 17 20c133 21 246 111 294 237c3 8 10 13 19 13 c11 0 20 -9 20 -20v-133h696v133c0 11 9 20 20 20c9 0 16 -5 19 -13c48 -126 161 -216 294 -237c10 -2 17 -10 17 -20zM1352 250c-87 31 -160 90 -210 167v-70c0 -11 -9 -20 -20 -20h-736c-11 0 -20 9 -20 20v70c-50 -77 -123 -136 -210 -167c87 -31 160 -90 210 -167v70 c0 11 9 20 20 20h736c11 0 20 -9 20 -20v-70c50 77 123 136 210 167'], + 0x2B05: [468,-31,1423,56,1367,'1367 173c0 -11 -9 -20 -20 -20h-1014v-113c0 -9 -12 -12 -16 -3c-52 101 -144 176 -255 205c-8 2 -8 14 0 16c111 29 203 104 255 205c4 9 16 6 16 -3v-113h1014c11 0 20 -9 20 -20v-154'], + 0x2B06: [895,416,612,87,524,'519 634c9 -4 6 -16 -3 -16h-113v-1014c0 -11 -9 -20 -20 -20h-154c-11 0 -20 9 -20 20v1014h-113c-9 0 -12 12 -3 16c101 52 176 145 205 255c2 8 14 8 16 0c29 -110 104 -203 205 -255'], + 0x2B07: [916,395,612,87,524,'519 -134c-101 -52 -176 -145 -205 -255c-2 -8 -14 -8 -16 0c-29 110 -104 203 -205 255c-9 4 -6 16 3 16h113v1014c0 11 9 20 20 20h154c11 0 20 -9 20 -20v-1014h113c9 0 12 -12 3 -16'], + 0x2B0C: [468,-31,1468,89,1379,'1373 242c-110 -29 -203 -104 -255 -205c-4 -9 -16 -6 -16 3v113h-736v-113c0 -9 -12 -12 -16 -3c-52 101 -145 176 -255 205c-8 2 -8 14 0 16c110 29 203 104 255 205c4 9 16 6 16 -3v-113h736v113c0 9 12 12 16 3c52 -101 145 -176 255 -205c8 -2 8 -14 0 -16'], + 0x2B0D: [895,395,549,56,492,'488 634c8 -4 5 -16 -4 -16h-113v-736h113c9 0 12 -12 4 -16c-102 -52 -177 -145 -206 -255c-2 -8 -14 -8 -16 0c-29 110 -103 203 -205 255c-8 4 -5 16 3 16h113v736h-113c-8 0 -11 12 -3 16c102 52 176 145 205 255c2 8 14 8 16 0c29 -110 104 -203 206 -255'], + 0x2B31: [990,490,1463,56,1407,'1407 -230c0 -11 -9 -20 -20 -20h-1232c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144c0 -15 -9 -24 -20 -24c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c28 35 48 77 58 123 c-10 46 -30 88 -58 123c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c28 35 48 77 58 123c-10 46 -30 88 -58 123c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16 c11 0 20 -9 20 -24c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h1232c11 0 20 -9 20 -20s-9 -20 -20 -20h-1232c29 -20 56 -44 78 -72c32 -42 55 -91 66 -148c-11 -57 -34 -106 -66 -148c-22 -28 -49 -52 -78 -72h1232c11 0 20 -9 20 -20s-9 -20 -20 -20h-1232 c29 -20 56 -44 78 -72c32 -42 55 -91 66 -148c-11 -57 -34 -106 -66 -148c-22 -28 -49 -52 -78 -72h1232c11 0 20 -9 20 -20'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size1/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size2/Regular/Main.js new file mode 100644 index 0000000..e01889a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size2/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'LatinModernMathJax_Size2', + id: 'LATINMODERNSIZE2', + 0x20: [0,0,332,0,0,''], + 0x28: [847,347,458,131,395,'395 -336c0 -6 -5 -11 -11 -11c-3 0 -5 1 -7 2c-127 96 -246 330 -246 531v128c0 201 119 435 246 531c2 1 4 2 7 2c6 0 11 -5 11 -11c0 -4 -2 -7 -4 -9c-120 -90 -202 -324 -202 -513v-128c0 -189 82 -423 202 -513c2 -2 4 -5 4 -9'], + 0x29: [847,347,458,63,327,'327 186c0 -201 -119 -435 -246 -531c-2 -1 -4 -2 -7 -2c-6 0 -11 5 -11 11c0 4 2 7 4 9c120 90 202 324 202 513v128c0 189 -82 423 -202 513c-2 2 -4 5 -4 9c0 6 5 11 11 11c3 0 5 -1 7 -2c127 -96 246 -330 246 -531v-128'], + 0x2F: [1108,608,768,57,713,'713 1084c0 -3 -1 -6 -2 -9l-607 -1667c-3 -9 -12 -16 -23 -16c-14 0 -24 11 -24 24c0 3 0 6 1 9l607 1667c3 9 12 16 23 16c14 0 25 -11 25 -24'], + 0x5B: [850,350,417,217,383,'383 -327c0 -13 -10 -23 -23 -23h-143v1200h143c13 0 23 -10 23 -23s-10 -23 -23 -23h-97v-1108h97c13 0 23 -10 23 -23'], + 0x5C: [1108,608,768,55,711,'711 -584c0 -13 -10 -24 -24 -24c-11 0 -20 7 -23 16l-607 1667c-1 3 -2 6 -2 9c0 13 11 24 25 24c11 0 20 -7 23 -16l607 -1667c1 -3 1 -6 1 -9'], + 0x5D: [850,350,417,34,200,'200 850v-1200h-143c-13 0 -23 10 -23 23s10 23 23 23h97v1108h-97c-13 0 -23 10 -23 23s10 23 23 23h143'], + 0x7B: [850,350,583,98,486,'486 -336c0 -8 -6 -14 -14 -14h-1c-115 12 -214 75 -214 150v300c0 62 -62 128 -146 136c-7 1 -13 7 -13 14s6 13 13 14c84 8 146 74 146 136v300c0 75 99 138 214 150h1c8 0 14 -6 14 -14c0 -7 -6 -13 -13 -14c-84 -8 -146 -67 -146 -122v-300c0 -67 -63 -124 -146 -150 c83 -26 146 -83 146 -150v-300c0 -55 62 -114 146 -122c7 -1 13 -7 13 -14'], + 0x7C: [972,472,278,115,164,'164 -448c0 -14 -11 -24 -25 -24s-24 10 -24 24v1396c0 14 10 24 24 24s25 -10 25 -24v-1396'], + 0x7D: [850,350,583,97,485,'485 250c0 -7 -6 -13 -13 -14c-84 -8 -146 -74 -146 -136v-300c0 -75 -99 -138 -214 -150h-1c-8 0 -14 6 -14 14c0 7 6 13 13 14c84 8 146 67 146 122v300c0 67 63 124 146 150c-83 26 -146 83 -146 150v300c0 55 -62 114 -146 122c-7 1 -13 7 -13 14c0 8 6 14 14 14h1 c115 -12 214 -75 214 -150v-300c0 -62 62 -128 146 -136c7 -1 13 -7 13 -14'], + 0xA0: [0,0,332,0,0,''], + 0x302: [746,-572,768,0,768,'768 596l-8 -24c-127 34 -252 72 -376 114c-124 -42 -249 -80 -376 -114l-8 24c126 56 254 106 384 150c130 -44 258 -94 384 -150'], + 0x303: [753,-548,778,0,778,'778 740c0 -2 0 -4 -1 -6c-45 -81 -90 -134 -172 -154c-16 -4 -33 -6 -49 -6c-61 0 -121 25 -178 50c-50 22 -101 45 -153 45c-13 0 -26 -2 -38 -5c-70 -16 -125 -41 -164 -110c-2 -4 -6 -6 -10 -6c-7 0 -13 5 -13 12c0 2 1 4 2 6c45 81 90 134 171 154c17 4 33 6 49 6 c61 0 121 -25 179 -50c49 -22 100 -45 153 -45c12 0 25 2 38 5c69 16 124 41 163 110c2 4 6 7 11 7c7 0 12 -6 12 -13'], + 0x306: [742,-578,784,0,784,'784 734c-49 -145 -230 -156 -392 -156s-344 11 -392 156l24 8c36 -107 219 -107 368 -107c148 0 332 0 368 107'], + 0x30C: [740,-566,768,0,768,'768 716c-126 -56 -254 -106 -384 -150c-130 44 -258 94 -384 150l8 24c127 -34 252 -72 376 -114c124 42 249 80 376 114'], + 0x311: [757,-592,784,0,784,'784 600l-24 -8c-36 107 -220 108 -368 108c-149 0 -332 -1 -368 -108l-24 8c48 145 230 157 392 157s343 -12 392 -157'], + 0x32C: [-96,270,768,0,768,'768 -120c-126 -55 -254 -106 -384 -150c-130 44 -258 95 -384 150l8 24c127 -33 252 -71 376 -114c124 43 249 81 376 114'], + 0x32D: [-108,282,768,0,768,'768 -258l-8 -24c-127 34 -252 71 -376 114c-124 -43 -249 -80 -376 -114l-8 24c126 55 254 106 384 150c130 -44 258 -95 384 -150'], + 0x32E: [-96,260,784,0,784,'784 -104c-49 -145 -230 -156 -392 -156s-344 11 -392 156l24 8c36 -107 219 -107 368 -107c148 0 332 0 368 107'], + 0x32F: [-118,282,784,0,784,'784 -275l-24 -7c-36 107 -220 107 -368 107c-149 0 -332 0 -368 -107l-24 7c48 145 230 157 392 157s343 -12 392 -157'], + 0x330: [-118,323,778,0,778,'778 -130c0 -3 0 -5 -1 -7c-45 -80 -90 -134 -172 -153c-16 -4 -33 -6 -49 -6c-61 0 -121 24 -178 49c-50 22 -101 45 -153 45c-13 0 -26 -1 -38 -4c-70 -17 -125 -42 -164 -111c-2 -3 -6 -6 -10 -6c-7 0 -13 6 -13 13c0 2 1 4 2 6c45 80 90 134 171 153c17 4 33 6 49 6 c61 0 121 -24 179 -49c49 -22 100 -45 153 -45c12 0 25 1 38 4c69 17 124 42 163 111c2 3 6 6 11 6c7 0 12 -6 12 -12'], + 0x2016: [972,472,364,57,309,'106 -448c0 -14 -11 -24 -25 -24s-24 10 -24 24v1396c0 14 10 24 24 24s25 -10 25 -24v-1396zM309 -448c0 -14 -11 -24 -25 -24s-24 10 -24 24v1396c0 14 10 24 24 24s25 -10 25 -24v-1396'], + 0x2044: [1108,608,768,57,713,'713 1084c0 -3 -1 -6 -2 -9l-607 -1667c-3 -9 -12 -16 -23 -16c-14 0 -24 11 -24 24c0 3 0 6 1 9l607 1667c3 9 12 16 23 16c14 0 25 -11 25 -24'], + 0x20E9: [735,-541,1110,0,1110,'1110 735v-171c0 -12 -10 -23 -23 -23s-23 11 -23 23v125h-1018v-125c0 -12 -10 -23 -23 -23s-23 11 -23 23v171h1110'], + 0x221A: [1150,650,1000,110,1020,'1020 1130c0 0 0 -5 -5 -20l-549 -1736c-8 -24 -9 -24 -42 -24l-230 802l-68 -80l-16 15l139 163l215 -750l513 1624c4 13 8 26 23 26c12 0 20 -9 20 -20'], + 0x2223: [972,472,278,115,164,'164 -448c0 -14 -11 -24 -25 -24s-24 10 -24 24v1396c0 14 10 24 24 24s25 -10 25 -24v-1396'], + 0x2225: [972,472,364,57,309,'106 -448c0 -14 -11 -24 -25 -24s-24 10 -24 24v1396c0 14 10 24 24 24s25 -10 25 -24v-1396zM309 -448c0 -14 -11 -24 -25 -24s-24 10 -24 24v1396c0 14 10 24 24 24s25 -10 25 -24v-1396'], + 0x2308: [850,350,472,182,443,'443 827c0 -13 -10 -23 -23 -23h-192v-1131c0 -13 -10 -23 -23 -23s-23 10 -23 23v1177h238c13 0 23 -10 23 -23'], + 0x2309: [850,350,472,29,290,'290 -327c0 -13 -10 -23 -23 -23s-23 10 -23 23v1131h-192c-13 0 -23 10 -23 23s10 23 23 23h238v-1177'], + 0x230A: [850,350,472,182,443,'443 -327c0 -13 -10 -23 -23 -23h-238v1177c0 13 10 23 23 23s23 -10 23 -23v-1131h192c13 0 23 -10 23 -23'], + 0x230B: [850,350,472,29,290,'290 827v-1177h-238c-13 0 -23 10 -23 23s10 23 23 23h192v1131c0 13 10 23 23 23s23 -10 23 -23'], + 0x2329: [850,350,472,139,411,'411 -327c0 -13 -10 -23 -23 -23c-10 0 -18 6 -21 15l-226 577c-1 2 -2 5 -2 8s1 6 2 8l226 577c3 9 11 15 21 15c13 0 23 -10 23 -23c0 -3 -1 -6 -2 -8l-222 -569l222 -569c1 -2 2 -5 2 -8'], + 0x232A: [850,350,472,61,333,'333 250c0 -3 -1 -6 -2 -8l-226 -577c-3 -9 -11 -15 -21 -15c-13 0 -23 10 -23 23c0 3 1 6 2 8l222 569l-222 569c-1 2 -2 5 -2 8c0 13 10 23 23 23c10 0 18 -6 21 -15l226 -577c1 -2 2 -5 2 -8'], + 0x23B4: [735,-541,1110,0,1110,'1110 735v-171c0 -12 -10 -23 -23 -23s-23 11 -23 23v125h-1018v-125c0 -12 -10 -23 -23 -23s-23 11 -23 23v171h1110'], + 0x23B5: [-111,305,1110,0,1110,'1110 -305h-1110v171c0 12 10 23 23 23s23 -11 23 -23v-125h1018v125c0 12 10 23 23 23s23 -11 23 -23v-171'], + 0x23DC: [761,-511,1508,0,1508,'1508 525c0 -8 -6 -14 -14 -14c-4 0 -7 2 -10 4c-112 112 -398 188 -633 188h-194c-235 0 -521 -76 -633 -188c-3 -2 -6 -4 -10 -4c-8 0 -14 6 -14 14c0 4 2 7 4 10c117 117 407 226 653 226h194c246 0 536 -109 653 -226c2 -3 4 -6 4 -10'], + 0x23DD: [-81,331,1508,0,1508,'1508 -95c0 -4 -2 -7 -4 -10c-117 -117 -407 -226 -653 -226h-194c-246 0 -536 109 -653 226c-2 3 -4 6 -4 10c0 8 6 14 14 14c4 0 7 -2 10 -4c112 -112 398 -188 633 -188h194c235 0 521 76 633 188c3 2 6 4 10 4c8 0 14 -6 14 -14'], + 0x23DE: [818,-509,1494,0,1494,'1494 516c0 -4 -3 -7 -7 -7c-3 0 -6 1 -7 4c-27 76 -132 121 -222 121h-282c-115 0 -204 63 -229 136c-25 -73 -114 -136 -229 -136h-282c-90 0 -195 -45 -222 -121c-1 -3 -4 -4 -7 -4c-4 0 -7 3 -7 7v2c32 87 132 174 236 174h282c117 0 222 43 222 119c0 3 3 7 7 7 s7 -4 7 -7c0 -76 105 -119 222 -119h282c104 0 204 -87 236 -174v-2'], + 0x23DF: [-78,387,1494,0,1494,'1494 -85v-3c-32 -87 -132 -174 -236 -174h-282c-117 0 -222 -43 -222 -118c0 -4 -3 -7 -7 -7s-7 3 -7 7c0 75 -105 118 -222 118h-282c-104 0 -204 87 -236 174v3c0 3 3 7 7 7c3 0 6 -2 7 -5c27 -76 132 -121 222 -121h282c115 0 204 -63 229 -136 c25 73 114 136 229 136h282c90 0 195 45 222 121c1 3 4 5 7 5c4 0 7 -4 7 -7'], + 0x23E0: [854,-612,1550,0,1550,'1550 612h-70l-172 172h-1066l-172 -172h-70l242 242h1066'], + 0x23E1: [-182,424,1550,0,1550,'1550 -182l-242 -242h-1066l-242 242h70l172 -172h1066l172 172h70'], + 0x27E6: [850,350,480,142,458,'458 -327c0 -13 -10 -23 -23 -23h-293v1200h293c13 0 23 -10 23 -23s-10 -23 -23 -23h-100v-1108h100c13 0 23 -10 23 -23zM289 804h-101v-1108h101v1108'], + 0x27E7: [850,350,480,22,338,'338 -350h-293c-13 0 -23 10 -23 23s10 23 23 23h100v1108h-100c-13 0 -23 10 -23 23s10 23 23 23h293v-1200zM292 -304v1108h-101v-1108h101'], + 0x27E8: [850,350,472,139,411,'411 -327c0 -13 -10 -23 -23 -23c-10 0 -18 6 -21 15l-226 577c-1 2 -2 5 -2 8s1 6 2 8l226 577c3 9 11 15 21 15c13 0 23 -10 23 -23c0 -3 -1 -6 -2 -8l-222 -569l222 -569c1 -2 2 -5 2 -8'], + 0x27E9: [850,350,472,61,333,'333 250c0 -3 -1 -6 -2 -8l-226 -577c-3 -9 -11 -15 -21 -15c-13 0 -23 10 -23 23c0 3 1 6 2 8l222 569l-222 569c-1 2 -2 5 -2 8c0 13 10 23 23 23c10 0 18 -6 21 -15l226 -577c1 -2 2 -5 2 -8'], + 0x27EA: [850,350,682,139,621,'411 -327c0 -13 -10 -23 -23 -23c-10 0 -18 6 -21 15l-226 577c-1 2 -2 5 -2 8s1 6 2 8l226 577c3 9 11 15 21 15c13 0 23 -10 23 -23c0 -3 -1 -6 -2 -8l-222 -569l222 -569c1 -2 2 -5 2 -8zM621 -327c0 -13 -10 -23 -23 -23c-10 0 -18 6 -22 15l-226 577c-1 2 -1 5 -1 8 s0 6 1 8l226 577c4 9 12 15 22 15c13 0 23 -10 23 -23c0 -3 -1 -6 -2 -8l-222 -569l222 -569c1 -2 2 -5 2 -8'], + 0x27EB: [850,350,682,61,543,'543 250c0 -3 -1 -6 -2 -8l-226 -577c-3 -9 -11 -15 -21 -15c-13 0 -23 10 -23 23c0 3 0 6 1 8l223 569l-223 569c-1 2 -1 5 -1 8c0 13 10 23 23 23c10 0 18 -6 21 -15l226 -577c1 -2 2 -5 2 -8zM333 250c0 -3 -1 -6 -2 -8l-226 -577c-3 -9 -11 -15 -21 -15 c-13 0 -23 10 -23 23c0 3 1 6 2 8l222 569l-222 569c-1 2 -2 5 -2 8c0 13 10 23 23 23c10 0 18 -6 21 -15l226 -577c1 -2 2 -5 2 -8'], + 0x27EE: [864,364,323,118,267,'267 -350c0 -8 -6 -14 -14 -14c-4 0 -7 2 -10 4c-60 60 -125 290 -125 517v186c0 227 65 457 125 517c3 2 6 4 10 4c8 0 14 -6 14 -14c0 -4 -2 -7 -4 -10c-57 -57 -87 -281 -87 -497v-186c0 -216 30 -440 87 -497c2 -3 4 -6 4 -10'], + 0x27EF: [864,364,323,56,205,'205 157c0 -227 -65 -457 -125 -517c-3 -2 -6 -4 -10 -4c-8 0 -14 6 -14 14c0 4 2 7 4 10c57 57 87 281 87 497v186c0 216 -30 440 -87 497c-2 3 -4 6 -4 10c0 8 6 14 14 14c4 0 7 -2 10 -4c60 -60 125 -290 125 -517v-186'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size2/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size3/Regular/Main.js new file mode 100644 index 0000000..c6c261d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size3/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'LatinModernMathJax_Size3', + id: 'LATINMODERNSIZE3', + 0x20: [0,0,332,0,0,''], + 0x28: [972,472,523,156,461,'461 -459c0 -7 -6 -13 -13 -13c-3 0 -6 1 -8 3c-147 111 -284 390 -284 633v172c0 243 137 522 284 633c2 2 5 3 8 3c7 0 13 -6 13 -13c0 -4 -2 -8 -5 -10c-140 -105 -236 -383 -236 -613v-172c0 -230 96 -508 236 -613c3 -2 5 -6 5 -10'], + 0x29: [972,472,523,62,367,'367 164c0 -243 -137 -522 -284 -633c-3 -2 -5 -3 -8 -3c-7 0 -13 6 -13 13c0 4 2 8 5 10c140 105 236 383 236 613v172c0 230 -96 508 -236 613c-3 2 -5 6 -5 10c0 7 6 13 13 13c3 0 5 -1 8 -3c147 -111 284 -390 284 -633v-172'], + 0x2F: [1374,874,964,57,909,'909 1348c0 -4 -1 -7 -2 -10l-799 -2195c-4 -10 -14 -17 -25 -17c-15 0 -26 12 -26 26c0 4 0 7 1 10l799 2195c4 10 14 17 25 17c15 0 27 -12 27 -26'], + 0x5B: [975,475,444,226,414,'414 -451c0 -13 -11 -24 -24 -24h-164v1450h164c13 0 24 -11 24 -24s-11 -24 -24 -24h-116v-1354h116c13 0 24 -11 24 -24'], + 0x5C: [1374,874,964,56,908,'908 -848c0 -14 -12 -26 -27 -26c-11 0 -21 7 -25 17l-799 2195c-1 3 -1 6 -1 10c0 14 11 26 26 26c11 0 21 -7 25 -17l799 -2195c1 -3 2 -6 2 -10'], + 0x5D: [975,475,444,30,218,'218 975v-1450h-164c-14 0 -24 11 -24 24s10 24 24 24h116v1354h-116c-14 0 -24 11 -24 24s10 24 24 24h164'], + 0x7B: [975,475,624,100,524,'524 -459c0 -9 -7 -16 -16 -16h-2c-124 19 -232 96 -232 182v361c0 73 -67 152 -160 166c-8 1 -14 8 -14 16s6 15 14 16c93 14 160 93 160 166v361c0 86 108 163 232 182h2c9 0 16 -7 16 -16c0 -8 -6 -15 -14 -16c-92 -14 -160 -86 -160 -150v-361 c0 -79 -73 -149 -168 -182c95 -33 168 -103 168 -182v-361c0 -64 68 -136 160 -150c8 -1 14 -8 14 -16'], + 0x7C: [1117,617,278,113,166,'166 -591c0 -15 -12 -26 -27 -26s-26 11 -26 26v1682c0 15 11 26 26 26s27 -11 27 -26v-1682'], + 0x7D: [975,475,624,100,524,'524 250c0 -8 -6 -15 -14 -16c-93 -14 -160 -93 -160 -166v-361c0 -86 -108 -163 -232 -182h-2c-9 0 -16 7 -16 16c0 8 5 15 13 16c93 14 161 86 161 150v361c0 79 73 149 167 182c-94 33 -167 103 -167 182v361c0 64 -68 136 -161 150c-8 1 -13 8 -13 16c0 9 7 16 16 16 h2c124 -19 232 -96 232 -182v-361c0 -73 67 -152 160 -166c8 -1 14 -8 14 -16'], + 0xA0: [0,0,332,0,0,''], + 0x302: [747,-572,919,0,919,'919 596l-7 -24c-152 33 -303 71 -452 113c-150 -42 -301 -80 -453 -113l-7 24c151 56 305 106 460 151c155 -45 308 -95 459 -151'], + 0x303: [757,-543,931,0,931,'931 744c0 -3 -1 -5 -2 -7c-55 -80 -113 -135 -213 -156c-19 -4 -38 -6 -57 -6c-69 0 -137 23 -203 47c-60 22 -121 44 -182 44c-16 0 -31 -1 -47 -5c-88 -18 -155 -42 -203 -112c-3 -4 -7 -6 -11 -6c-7 0 -13 6 -13 13c0 3 1 5 2 7c55 80 113 135 213 156 c19 4 38 6 57 6c69 0 137 -23 204 -47c59 -22 120 -44 181 -44c16 0 31 1 47 5c89 18 155 42 204 112c2 4 6 6 10 6c7 0 13 -6 13 -13'], + 0x306: [742,-577,937,0,937,'937 734c-53 -157 -278 -157 -469 -157c-190 0 -416 0 -468 157l25 8c35 -106 267 -106 443 -106c177 0 408 0 444 106'], + 0x30C: [740,-565,919,0,919,'919 716c-151 -56 -304 -106 -459 -151c-155 45 -309 95 -460 151l7 24c152 -33 303 -71 453 -113c149 42 300 80 452 113'], + 0x311: [758,-592,937,0,937,'937 600l-25 -8c-36 106 -267 107 -444 107c-176 0 -408 -1 -443 -107l-25 8c52 157 278 158 468 158c191 0 416 -1 469 -158'], + 0x32C: [-96,271,919,0,919,'919 -121c-151 -56 -304 -106 -459 -150c-155 44 -309 94 -460 150l7 25c152 -33 303 -71 453 -114c149 43 300 81 452 114'], + 0x32D: [-108,283,919,0,919,'919 -258l-7 -25c-152 33 -303 71 -452 114c-150 -43 -301 -81 -453 -114l-7 25c151 56 305 106 460 150c155 -44 308 -94 459 -150'], + 0x32E: [-96,262,937,0,937,'937 -104c-53 -158 -278 -158 -469 -158c-190 0 -416 0 -468 158l25 8c35 -107 267 -107 443 -107c177 0 408 0 444 107'], + 0x32F: [-118,284,937,0,937,'937 -275l-25 -9c-36 107 -267 107 -444 107c-176 0 -408 0 -443 -107l-25 9c52 157 278 157 468 157c191 0 416 0 469 -157'], + 0x330: [-118,332,931,0,931,'931 -131c0 -3 -1 -5 -2 -7c-55 -80 -113 -135 -213 -156c-19 -4 -38 -6 -57 -6c-69 0 -137 23 -203 47c-60 22 -121 44 -182 44c-16 0 -31 -1 -47 -5c-88 -18 -155 -42 -203 -112c-3 -4 -7 -6 -11 -6c-7 0 -13 6 -13 13c0 3 1 5 2 7c55 80 113 135 213 156 c19 4 38 6 57 6c69 0 137 -23 204 -47c59 -22 120 -44 181 -44c16 0 31 1 47 5c89 18 155 42 204 112c2 4 6 6 10 6c7 0 13 -6 13 -13'], + 0x2016: [1117,617,372,57,317,'110 -591c0 -15 -12 -26 -27 -26s-26 11 -26 26v1682c0 15 11 26 26 26s27 -11 27 -26v-1682zM317 -591c0 -15 -12 -26 -27 -26s-26 11 -26 26v1682c0 15 11 26 26 26s27 -11 27 -26v-1682'], + 0x2044: [1374,874,964,57,909,'909 1348c0 -4 -1 -7 -2 -10l-799 -2195c-4 -10 -14 -17 -25 -17c-15 0 -26 12 -26 26c0 4 0 7 1 10l799 2195c4 10 14 17 25 17c15 0 27 -12 27 -26'], + 0x20E9: [742,-535,1485,0,1485,'1485 742v-183c0 -13 -11 -24 -24 -24s-24 11 -24 24v135h-1389v-135c0 -13 -11 -24 -24 -24s-24 11 -24 24v183h1485'], + 0x221A: [1450,950,1000,111,1020,'1020 1430c0 -5 -2 -14 -4 -21l-550 -2333c-6 -26 -9 -26 -42 -26l-231 1073l-68 -107s-14 12 -14 16c0 0 0 3 7 12l131 206l216 -1002h1l512 2175c3 14 6 27 22 27c12 0 20 -9 20 -20'], + 0x2223: [1117,617,278,113,166,'166 -591c0 -15 -12 -26 -27 -26s-26 11 -26 26v1682c0 15 11 26 26 26s27 -11 27 -26v-1682'], + 0x2225: [1117,617,372,57,317,'110 -591c0 -15 -12 -26 -27 -26s-26 11 -26 26v1682c0 15 11 26 26 26s27 -11 27 -26v-1682zM317 -591c0 -15 -12 -26 -27 -26s-26 11 -26 26v1682c0 15 11 26 26 26s27 -11 27 -26v-1682'], + 0x2308: [975,475,499,189,471,'471 951c0 -13 -11 -24 -24 -24h-210v-1378c0 -13 -11 -24 -24 -24s-24 11 -24 24v1426h258c13 0 24 -11 24 -24'], + 0x2309: [975,475,499,28,310,'310 -451c0 -13 -11 -24 -24 -24s-24 11 -24 24v1378h-210c-13 0 -24 11 -24 24s11 24 24 24h258v-1426'], + 0x230A: [975,475,499,189,471,'471 -451c0 -13 -11 -24 -24 -24h-258v1426c0 13 11 24 24 24s24 -11 24 -24v-1378h210c13 0 24 -11 24 -24'], + 0x230B: [975,475,499,28,310,'310 951v-1426h-258c-13 0 -24 11 -24 24s11 24 24 24h210v1378c0 13 11 24 24 24s24 -11 24 -24'], + 0x2329: [975,475,537,154,476,'476 -451c0 -13 -11 -24 -24 -24c-10 0 -19 6 -22 15l-274 701c-1 3 -2 6 -2 9s1 6 2 9l274 701c3 9 12 15 22 15c13 0 24 -11 24 -24c0 -3 -1 -6 -2 -9l-270 -692l270 -692c1 -3 2 -6 2 -9'], + 0x232A: [975,475,537,61,383,'383 250c0 -3 -1 -6 -2 -9l-274 -701c-3 -9 -12 -15 -22 -15c-13 0 -24 11 -24 24c0 3 1 6 2 9l270 692l-270 692c-1 3 -2 6 -2 9c0 13 11 24 24 24c10 0 19 -6 22 -15l274 -701c1 -3 2 -6 2 -9'], + 0x23B4: [742,-535,1485,0,1485,'1485 742v-183c0 -13 -11 -24 -24 -24s-24 11 -24 24v135h-1389v-135c0 -13 -11 -24 -24 -24s-24 11 -24 24v183h1485'], + 0x23B5: [-105,312,1485,0,1485,'1485 -312h-1485v183c0 13 11 24 24 24s24 -11 24 -24v-135h1389v135c0 13 11 24 24 24s24 -11 24 -24v-183'], + 0x23DC: [767,-509,2012,0,2012,'2012 525c0 -9 -7 -16 -16 -16c-4 0 -8 2 -11 5c-114 113 -486 189 -826 189h-306c-340 0 -712 -76 -826 -189c-3 -3 -7 -5 -11 -5c-9 0 -16 7 -16 16c0 4 2 8 5 11c118 118 495 231 848 231h306c353 0 730 -113 848 -231c3 -3 5 -7 5 -11'], + 0x23DD: [-79,337,2012,0,2012,'2012 -95c0 -4 -2 -8 -5 -11c-118 -118 -495 -231 -848 -231h-306c-353 0 -730 113 -848 231c-3 3 -5 7 -5 11c0 9 7 16 16 16c4 0 8 -2 11 -5c114 -113 486 -189 826 -189h306c340 0 712 76 826 189c3 3 7 5 11 5c9 0 16 -7 16 -16'], + 0x23DE: [825,-506,1996,0,1996,'1996 514c0 -5 -4 -8 -8 -8c-3 0 -6 2 -8 5c-28 79 -162 122 -287 122h-400c-149 0 -264 69 -295 144c-31 -75 -146 -144 -295 -144h-400c-125 0 -259 -43 -287 -122c-2 -3 -5 -5 -8 -5c-4 0 -8 3 -8 8v2c33 89 162 181 303 181h400c153 0 287 41 287 120c0 4 4 8 8 8 s8 -4 8 -8c0 -79 134 -120 287 -120h400c141 0 270 -92 303 -181v-2'], + 0x23DF: [-75,394,1996,0,1996,'1996 -83v-3c-33 -89 -162 -181 -303 -181h-400c-153 0 -287 -41 -287 -119c0 -5 -4 -8 -8 -8s-8 3 -8 8c0 78 -134 119 -287 119h-400c-141 0 -270 92 -303 181v3c0 4 4 8 8 8c3 0 6 -3 8 -6c28 -79 162 -122 287 -122h400c149 0 264 -69 295 -144 c31 75 146 144 295 144h400c125 0 259 43 287 122c2 3 5 6 8 6c4 0 8 -4 8 -8'], + 0x23E0: [858,-610,2056,0,2056,'2056 610h-76l-172 172h-1560l-172 -172h-76l248 248h1560'], + 0x23E1: [-180,428,2056,0,2056,'2056 -180l-248 -248h-1560l-248 248h76l172 -172h1560l172 172h76'], + 0x27E6: [975,475,555,170,532,'532 -451c0 -13 -11 -24 -24 -24h-338v1450h338c13 0 24 -11 24 -24s-11 -24 -24 -24h-121v-1354h121c13 0 24 -11 24 -24zM339 927h-121v-1354h121v1354'], + 0x27E7: [975,475,555,23,385,'385 -475h-338c-13 0 -24 11 -24 24s11 24 24 24h121v1354h-121c-13 0 -24 11 -24 24s11 24 24 24h338v-1450zM337 927h-121v-1354h121v1354'], + 0x27E8: [975,475,537,154,476,'476 -451c0 -13 -11 -24 -24 -24c-10 0 -19 6 -22 15l-274 701c-1 3 -2 6 -2 9s1 6 2 9l274 701c3 9 12 15 22 15c13 0 24 -11 24 -24c0 -3 -1 -6 -2 -9l-270 -692l270 -692c1 -3 2 -6 2 -9'], + 0x27E9: [975,475,537,61,383,'383 250c0 -3 -1 -6 -2 -9l-274 -701c-3 -9 -12 -15 -22 -15c-13 0 -24 11 -24 24c0 3 1 6 2 9l270 692l-270 692c-1 3 -2 6 -2 9c0 13 11 24 24 24c10 0 19 -6 22 -15l274 -701c1 -3 2 -6 2 -9'], + 0x27EA: [975,475,781,154,720,'476 -451c0 -13 -11 -24 -24 -24c-10 0 -19 6 -22 15l-274 701c-1 3 -2 6 -2 9s1 6 2 9l274 701c3 9 12 15 22 15c13 0 24 -11 24 -24c0 -3 -1 -6 -2 -9l-270 -692l270 -692c1 -3 2 -6 2 -9zM720 -451c0 -13 -11 -24 -24 -24c-10 0 -19 6 -23 15l-274 701c-1 3 -1 6 -1 9 s0 6 1 9l274 701c4 9 13 15 23 15c13 0 24 -11 24 -24c0 -3 -1 -6 -2 -9l-270 -692l270 -692c1 -3 2 -6 2 -9'], + 0x27EB: [975,475,781,61,627,'627 250c0 -3 -1 -6 -2 -9l-274 -701c-3 -9 -12 -15 -22 -15c-13 0 -24 11 -24 24c0 3 0 6 1 9l271 692l-271 692c-1 3 -1 6 -1 9c0 13 11 24 24 24c10 0 19 -6 22 -15l274 -701c1 -3 2 -6 2 -9zM383 250c0 -3 -1 -6 -2 -9l-274 -701c-3 -9 -12 -15 -22 -15 c-13 0 -24 11 -24 24c0 3 1 6 2 9l270 692l-270 692c-1 3 -2 6 -2 9c0 13 11 24 24 24c10 0 19 -6 22 -15l274 -701c1 -3 2 -6 2 -9'], + 0x27EE: [991,491,370,142,314,'314 -475c0 -9 -7 -16 -16 -16c-4 0 -8 2 -11 5c-71 70 -145 336 -145 598v276c0 262 74 528 145 598c3 3 7 5 11 5c9 0 16 -7 16 -16c0 -4 -2 -8 -5 -11c-66 -67 -103 -327 -103 -576v-276c0 -249 37 -509 103 -576c3 -3 5 -7 5 -11'], + 0x27EF: [991,491,370,56,228,'228 112c0 -262 -74 -528 -145 -598c-3 -3 -7 -5 -11 -5c-9 0 -16 7 -16 16c0 4 2 8 5 11c66 67 103 327 103 576v276c0 249 -37 509 -103 576c-3 3 -5 7 -5 11c0 9 7 16 16 16c4 0 8 -2 11 -5c71 -70 145 -336 145 -598v-276'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size3/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size4/Regular/Main.js new file mode 100644 index 0000000..11498fb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size4/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'LatinModernMathJax_Size4', + id: 'LATINMODERNSIZE4', + 0x20: [0,0,332,0,0,''], + 0x28: [1146,646,597,179,539,'539 -632c0 -8 -6 -14 -14 -14c-3 0 -6 1 -9 2c-175 132 -337 475 -337 776v236c0 301 162 644 337 776c3 1 6 2 9 2c8 0 14 -6 14 -14c0 -5 -2 -9 -5 -12c-167 -125 -283 -466 -283 -752v-236c0 -286 116 -627 283 -752c3 -3 5 -7 5 -12'], + 0x29: [1146,646,597,58,418,'418 132c0 -301 -162 -644 -337 -776c-3 -1 -6 -2 -9 -2c-8 0 -14 6 -14 14c0 5 2 9 5 12c167 125 283 466 283 752v236c0 286 -116 627 -283 752c-3 3 -5 7 -5 12c0 8 6 14 14 14c3 0 6 -1 9 -2c175 -132 337 -475 337 -776v-236'], + 0x2F: [1722,1222,1222,56,1166,'1166 1692c0 -3 -1 -7 -2 -10l-1050 -2885c-4 -11 -15 -19 -28 -19c-17 0 -30 13 -30 30c0 3 1 7 2 10l1050 2885c4 11 15 19 28 19c17 0 30 -13 30 -30'], + 0x5B: [1150,650,472,226,448,'448 -624c0 -14 -12 -26 -26 -26h-196v1800h196c14 0 26 -12 26 -26s-12 -26 -26 -26h-144v-1696h144c14 0 26 -12 26 -26'], + 0x5C: [1722,1222,1222,56,1166,'1166 -1192c0 -17 -13 -30 -30 -30c-13 0 -24 8 -28 19l-1050 2885c-1 3 -2 7 -2 10c0 17 13 30 30 30c13 0 24 -8 28 -19l1050 -2885c1 -3 2 -7 2 -10'], + 0x5D: [1150,650,472,24,246,'246 1150v-1800h-196c-14 0 -26 12 -26 26s12 26 26 26h144v1696h-144c-14 0 -26 12 -26 26s12 26 26 26h196'], + 0x7B: [1150,650,667,97,569,'569 -632c0 -10 -8 -18 -18 -18h-4c-136 28 -256 123 -256 225v450c0 87 -74 186 -180 207c-8 2 -14 9 -14 18s6 16 14 18c106 21 180 120 180 207v450c0 102 120 197 256 225h4c10 0 18 -8 18 -18c0 -9 -6 -16 -14 -18c-105 -21 -180 -111 -180 -189v-450 c0 -95 -87 -184 -196 -225c109 -41 196 -130 196 -225v-450c0 -78 75 -168 180 -189c8 -2 14 -9 14 -18'], + 0x7C: [1292,792,278,109,169,'169 -762c0 -17 -13 -30 -30 -30s-30 13 -30 30v2024c0 17 13 30 30 30s30 -13 30 -30v-2024'], + 0x7D: [1150,650,667,98,570,'570 250c0 -9 -6 -16 -14 -18c-106 -21 -180 -120 -180 -207v-450c0 -102 -120 -197 -256 -225h-4c-10 0 -18 8 -18 18c0 9 6 16 14 18c105 21 180 111 180 189v450c0 95 87 184 196 225c-109 41 -196 130 -196 225v450c0 78 -75 168 -180 189c-8 2 -14 9 -14 18 c0 10 8 18 18 18h4c136 -28 256 -123 256 -225v-450c0 -87 74 -186 180 -207c8 -2 14 -9 14 -18'], + 0xA0: [0,0,332,0,0,''], + 0x302: [747,-571,1100,0,1100,'1100 597l-6 -26c-182 33 -364 71 -544 114c-180 -43 -361 -81 -544 -114l-6 26c182 56 365 106 550 150c185 -44 369 -94 550 -150'], + 0x303: [762,-539,1115,0,1115,'1115 748c0 -3 -1 -6 -3 -9c-64 -78 -137 -135 -261 -157c-23 -5 -45 -6 -67 -6c-79 0 -158 22 -235 45c-71 21 -143 42 -216 42c-19 0 -38 -1 -58 -5c-112 -20 -193 -44 -251 -115c-3 -3 -6 -4 -10 -4c-8 0 -14 6 -14 13c0 3 1 6 3 9c64 78 137 135 261 157 c23 5 45 6 67 6c80 0 158 -22 235 -45c71 -21 143 -42 216 -42c19 0 39 1 58 5c113 20 193 44 251 115c3 3 7 5 11 5c7 0 13 -7 13 -14'], + 0x306: [742,-576,1120,0,1120,'1120 734c-53 -158 -335 -158 -560 -158s-507 0 -560 158l26 8c35 -105 323 -105 534 -105c210 0 499 0 534 105'], + 0x30C: [741,-565,1100,0,1100,'1100 715c-181 -56 -365 -106 -550 -150c-185 44 -368 94 -550 150l6 26c183 -33 364 -71 544 -114c180 43 362 81 544 114'], + 0x311: [759,-592,1120,0,1120,'1120 600l-26 -8c-35 105 -324 106 -534 106c-211 0 -499 -1 -534 -106l-26 8c53 158 335 159 560 159s507 -1 560 -159'], + 0x32C: [-96,273,1100,0,1100,'1100 -122c-181 -56 -365 -106 -550 -151c-185 45 -368 95 -550 151l6 26c183 -33 364 -71 544 -114c180 43 362 81 544 114'], + 0x32D: [-108,285,1100,0,1100,'1100 -258l-6 -27c-182 33 -364 71 -544 114c-180 -43 -361 -81 -544 -114l-6 27c182 56 365 106 550 150c185 -44 369 -94 550 -150'], + 0x32E: [-96,263,1120,0,1120,'1120 -105c-53 -158 -335 -158 -560 -158s-507 0 -560 158l26 9c35 -106 323 -106 534 -106c210 0 499 0 534 106'], + 0x32F: [-118,285,1120,0,1120,'1120 -276l-26 -9c-35 106 -324 106 -534 106c-211 0 -499 0 -534 -106l-26 9c53 158 335 158 560 158s507 0 560 -158'], + 0x330: [-118,341,1115,0,1115,'1115 -131c0 -4 -1 -7 -3 -9c-64 -78 -137 -136 -261 -158c-23 -4 -45 -6 -67 -6c-79 0 -158 22 -235 45c-71 21 -143 43 -216 43c-19 0 -38 -2 -58 -5c-112 -20 -193 -44 -251 -115c-3 -3 -6 -5 -10 -5c-8 0 -14 6 -14 14c0 3 1 6 3 8c64 78 137 136 261 158 c23 4 45 6 67 6c80 0 158 -22 235 -45c71 -21 143 -43 216 -43c19 0 39 2 58 5c113 20 193 44 251 115c3 3 7 5 11 5c7 0 13 -6 13 -13'], + 0x2016: [1292,792,386,56,330,'116 -762c0 -17 -13 -30 -30 -30s-30 13 -30 30v2024c0 17 13 30 30 30s30 -13 30 -30v-2024zM330 -762c0 -17 -13 -30 -30 -30s-30 13 -30 30v2024c0 17 13 30 30 30s30 -13 30 -30v-2024'], + 0x2044: [1722,1222,1222,56,1166,'1166 1692c0 -3 -1 -7 -2 -10l-1050 -2885c-4 -11 -15 -19 -28 -19c-17 0 -30 13 -30 30c0 3 1 7 2 10l1050 2885c4 11 15 19 28 19c17 0 30 -13 30 -30'], + 0x20E9: [750,-527,1860,0,1860,'1860 553c0 -14 -12 -26 -26 -26s-26 12 -26 26v145h-1756v-145c0 -14 -12 -26 -26 -26s-26 12 -26 26v197h1860v-197'], + 0x221A: [1750,1250,1000,111,1020,'1020 1730l-554 -2954c-5 -26 -11 -26 -42 -26l-231 1343l-68 -132s-14 12 -14 16c0 0 1 3 6 13l132 260l216 -1255h1l512 2725c3 17 6 30 22 30c12 0 20 -9 20 -20'], + 0x2223: [1292,792,278,109,169,'169 -762c0 -17 -13 -30 -30 -30s-30 13 -30 30v2024c0 17 13 30 30 30s30 -13 30 -30v-2024'], + 0x2225: [1292,792,386,56,330,'116 -762c0 -17 -13 -30 -30 -30s-30 13 -30 30v2024c0 17 13 30 30 30s30 -13 30 -30v-2024zM330 -762c0 -17 -13 -30 -30 -30s-30 13 -30 30v2024c0 17 13 30 30 30s30 -13 30 -30v-2024'], + 0x2308: [1150,650,528,196,502,'502 1124c0 -14 -12 -26 -26 -26h-228v-1722c0 -14 -12 -26 -26 -26s-26 12 -26 26v1774h280c14 0 26 -12 26 -26'], + 0x2309: [1150,650,528,26,332,'332 -624c0 -14 -12 -26 -26 -26s-26 12 -26 26v1722h-228c-14 0 -26 12 -26 26s12 26 26 26h280v-1774'], + 0x230A: [1150,650,528,196,502,'502 -624c0 -14 -12 -26 -26 -26h-280v1774c0 14 12 26 26 26s26 -12 26 -26v-1722h228c14 0 26 -12 26 -26'], + 0x230B: [1150,650,528,26,332,'332 1124v-1774h-280c-14 0 -26 12 -26 26s12 26 26 26h228v1722c0 14 12 26 26 26s26 -12 26 -26'], + 0x2329: [1150,650,611,159,555,'555 -624c0 -14 -12 -26 -26 -26c-11 0 -20 7 -24 16l-344 874c-1 3 -2 7 -2 10s1 7 2 10l344 874c4 9 13 16 24 16c14 0 26 -12 26 -26c0 -3 -1 -7 -2 -10l-340 -864l340 -864c1 -3 2 -7 2 -10'], + 0x232A: [1150,650,611,56,452,'452 250c0 -3 -1 -7 -2 -10l-344 -874c-4 -9 -13 -16 -24 -16c-14 0 -26 12 -26 26c0 3 1 7 2 10l340 864l-340 864c-1 3 -2 7 -2 10c0 14 12 26 26 26c11 0 20 -7 24 -16l344 -874c1 -3 2 -7 2 -10'], + 0x23B4: [750,-527,1860,0,1860,'1860 553c0 -14 -12 -26 -26 -26s-26 12 -26 26v145h-1756v-145c0 -14 -12 -26 -26 -26s-26 12 -26 26v197h1860v-197'], + 0x23B5: [-97,320,1860,0,1860,'1860 -320h-1860v197c0 14 12 26 26 26s26 -12 26 -26v-145h1756v145c0 14 12 26 26 26s26 -12 26 -26v-197'], + 0x23DC: [774,-506,2516,0,2516,'2516 524c0 -10 -8 -18 -18 -18c-5 0 -9 2 -13 6c-116 116 -569 190 -1006 190h-442c-437 0 -890 -74 -1006 -190c-4 -4 -8 -6 -13 -6c-10 0 -18 8 -18 18c0 5 2 10 5 13c120 120 580 237 1032 237h442c452 0 912 -117 1032 -237c3 -3 5 -8 5 -13'], + 0x23DD: [-76,344,2516,0,2516,'2516 -94c0 -5 -2 -10 -5 -13c-120 -120 -580 -237 -1032 -237h-442c-452 0 -912 117 -1032 237c-3 3 -5 8 -5 13c0 10 8 18 18 18c5 0 9 -2 13 -6c116 -116 569 -190 1006 -190h442c437 0 890 74 1006 190c4 4 8 6 13 6c10 0 18 -8 18 -18'], + 0x23DE: [833,-502,2498,0,2498,'2498 511c0 -5 -4 -9 -9 -9c-4 0 -7 2 -8 5c-30 82 -191 124 -346 124h-532c-178 0 -318 74 -354 153c-36 -79 -176 -153 -354 -153h-532c-155 0 -316 -42 -346 -124c-1 -3 -4 -5 -8 -5c-5 0 -9 4 -9 9c0 1 0 2 1 3c33 91 189 189 362 189h532c184 0 345 39 345 121 c0 4 4 9 9 9s9 -5 9 -9c0 -82 161 -121 345 -121h532c173 0 329 -98 362 -189c1 -1 1 -2 1 -3'], + 0x23DF: [-71,402,2498,0,2498,'2498 -80c0 -2 0 -3 -1 -4c-33 -91 -189 -189 -362 -189h-532c-184 0 -345 -39 -345 -120c0 -5 -4 -9 -9 -9s-9 4 -9 9c0 81 -161 120 -345 120h-532c-173 0 -329 98 -362 189c-1 1 -1 2 -1 4c0 4 4 9 9 9c4 0 7 -3 8 -6c30 -82 191 -124 346 -124h532 c178 0 318 -74 354 -153c36 79 176 153 354 153h532c155 0 316 42 346 124c1 3 4 6 8 6c5 0 9 -5 9 -9'], + 0x23E0: [863,-607,2564,0,2564,'2564 607h-84l-172 172h-2052l-172 -172h-84l256 256h2052'], + 0x23E1: [-177,433,2564,0,2564,'2564 -177l-256 -256h-2052l-256 256h84l172 -172h2052l172 172h84'], + 0x27E6: [1150,650,660,211,637,'637 -624c0 -14 -12 -26 -26 -26h-400v1800h400c14 0 26 -12 26 -26s-12 -26 -26 -26h-148v-1696h148c14 0 26 -12 26 -26zM411 -598v1696h-148v-1696h148'], + 0x27E7: [1150,650,660,23,449,'449 1150v-1800h-400c-14 0 -26 12 -26 26s12 26 26 26h148v1696h-148c-14 0 -26 12 -26 26s12 26 26 26h400zM397 -598v1696h-148v-1696h148'], + 0x27E8: [1150,650,611,159,555,'555 -624c0 -14 -12 -26 -26 -26c-11 0 -20 7 -24 16l-344 874c-1 3 -2 7 -2 10s1 7 2 10l344 874c4 9 13 16 24 16c14 0 26 -12 26 -26c0 -3 -1 -7 -2 -10l-340 -864l340 -864c1 -3 2 -7 2 -10'], + 0x27E9: [1150,650,611,56,452,'452 250c0 -3 -1 -7 -2 -10l-344 -874c-4 -9 -13 -16 -24 -16c-14 0 -26 12 -26 26c0 3 1 7 2 10l340 864l-340 864c-1 3 -2 7 -2 10c0 14 12 26 26 26c11 0 20 -7 24 -16l344 -874c1 -3 2 -7 2 -10'], + 0x27EA: [1150,650,905,159,849,'555 -624c0 -14 -12 -26 -26 -26c-11 0 -20 7 -24 16l-344 874c-1 3 -2 7 -2 10s1 7 2 10l344 874c4 9 13 16 24 16c14 0 26 -12 26 -26c0 -3 -1 -7 -2 -10l-340 -864l340 -864c1 -3 2 -7 2 -10zM849 -624c0 -14 -11 -26 -26 -26c-11 0 -20 7 -24 16l-344 874 c-1 3 -2 7 -2 10s1 7 2 10l344 874c4 9 13 16 24 16c15 0 26 -12 26 -26c0 -3 0 -7 -2 -10l-340 -864l340 -864c2 -3 2 -7 2 -10'], + 0x27EB: [1150,650,905,56,746,'746 250c0 -3 0 -7 -2 -10l-344 -874c-3 -9 -13 -16 -24 -16c-14 0 -26 12 -26 26c0 3 1 7 2 10l340 864l-340 864c-1 3 -2 7 -2 10c0 14 12 26 26 26c11 0 21 -7 24 -16l344 -874c2 -3 2 -7 2 -10zM452 250c0 -3 -1 -7 -2 -10l-344 -874c-4 -9 -13 -16 -24 -16 c-14 0 -26 12 -26 26c0 3 1 7 2 10l340 864l-340 864c-1 3 -2 7 -2 10c0 14 12 26 26 26c11 0 20 -7 24 -16l344 -874c1 -3 2 -7 2 -10'], + 0x27EE: [1168,668,432,176,376,'376 -650c0 -10 -8 -18 -18 -18c-5 0 -9 2 -13 5c-82 83 -169 398 -169 709v408c0 311 87 626 169 709c4 3 8 5 13 5c10 0 18 -8 18 -18c0 -5 -2 -9 -5 -13c-79 -78 -123 -387 -123 -683v-408c0 -296 44 -605 123 -683c3 -4 5 -8 5 -13'], + 0x27EF: [1168,668,432,56,256,'256 46c0 -311 -87 -626 -169 -709c-4 -3 -8 -5 -13 -5c-10 0 -18 8 -18 18c0 5 2 9 5 13c79 78 123 387 123 683v408c0 296 -44 605 -123 683c-3 4 -5 8 -5 13c0 10 8 18 18 18c5 0 9 -2 13 -5c82 -83 169 -398 169 -709v-408'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size4/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size5/Regular/Main.js new file mode 100644 index 0000000..7fe4bc7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size5/Regular/Main.js @@ -0,0 +1,74 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'LatinModernMathJax_Size5', + id: 'LATINMODERNSIZE5', + 0x20: [0,0,332,0,0,''], + 0x28: [1296,796,663,201,608,'608 -780c0 -9 -7 -16 -16 -16c-4 0 -7 1 -10 3c-199 150 -381 545 -381 893v300c0 348 182 743 381 893c3 2 6 3 10 3c9 0 16 -7 16 -16c0 -5 -3 -10 -6 -13c-190 -142 -323 -535 -323 -867v-300c0 -332 133 -725 323 -867c3 -3 6 -8 6 -13'], + 0x29: [1296,796,663,55,462,'462 100c0 -348 -182 -743 -382 -893c-2 -2 -6 -3 -9 -3c-9 0 -16 7 -16 16c0 5 2 10 6 13c190 142 323 535 323 867v300c0 332 -133 725 -323 867c-4 3 -6 8 -6 13c0 9 7 16 16 16c3 0 7 -1 9 -3c200 -150 382 -545 382 -893v-300'], + 0x2F: [2179,1679,1557,57,1502,'1502 2146c0 -3 -1 -7 -2 -11l-1380 -3793c-5 -12 -17 -21 -31 -21c-18 0 -32 15 -32 33c0 3 0 7 1 11l1380 3793c5 12 17 21 31 21c18 0 33 -15 33 -33'], + 0x5B: [1300,800,499,230,478,'478 -773c0 -15 -12 -27 -27 -27h-221v2100h221c15 0 27 -12 27 -27s-12 -27 -27 -27h-167v-1992h167c15 0 27 -12 27 -27'], + 0x5C: [2179,1679,1557,56,1501,'1501 -1646c0 -18 -15 -33 -33 -33c-14 0 -26 9 -31 21l-1380 3793c-1 4 -1 8 -1 11c0 18 14 33 32 33c14 0 26 -9 31 -21l1380 -3793c1 -4 2 -8 2 -11'], + 0x5D: [1300,800,499,21,269,'269 -800h-221c-15 0 -27 12 -27 27s12 27 27 27h167v1992h-167c-15 0 -27 12 -27 27s12 27 27 27h221v-2100'], + 0x7B: [1300,800,707,100,608,'608 -780c0 -11 -9 -20 -20 -20c-2 0 -3 0 -5 1c-145 37 -273 148 -273 261v526c0 99 -81 213 -195 243c-9 2 -15 10 -15 19s6 17 15 19c114 30 195 144 195 243v526c0 113 128 224 273 261c2 1 3 1 5 1c11 0 20 -9 20 -20c0 -9 -6 -17 -15 -19 c-114 -29 -195 -134 -195 -223v-526c0 -108 -96 -212 -215 -262c119 -50 215 -154 215 -262v-526c0 -89 81 -194 195 -223c9 -2 15 -10 15 -19'], + 0x7C: [1501,1001,278,107,172,'172 -969c0 -18 -15 -32 -33 -32s-32 14 -32 32v2438c0 18 14 32 32 32s33 -14 33 -32v-2438'], + 0x7D: [1300,800,707,99,607,'607 250c0 -9 -6 -17 -15 -19c-114 -30 -195 -144 -195 -243v-526c0 -113 -128 -224 -273 -261c-1 -1 -3 -1 -5 -1c-11 0 -20 9 -20 20c0 9 7 17 15 19c114 29 195 134 195 223v526c0 108 97 212 216 262c-119 50 -216 154 -216 262v526c0 89 -81 194 -195 223 c-8 2 -15 10 -15 19c0 11 9 20 20 20c2 0 4 0 5 -1c145 -37 273 -148 273 -261v-526c0 -99 81 -213 195 -243c9 -2 15 -10 15 -19'], + 0xA0: [0,0,332,0,0,''], + 0x302: [748,-570,1320,0,1320,'1320 598l-6 -28l-654 114l-654 -114l-6 28c219 56 439 106 660 150c221 -44 441 -94 660 -150'], + 0x303: [766,-534,1335,0,1335,'1335 752c0 -4 -1 -7 -4 -10c-73 -76 -163 -136 -318 -160c-27 -4 -54 -6 -80 -6c-92 0 -183 22 -273 43c-84 21 -170 42 -256 42c-24 0 -48 -2 -72 -6c-143 -22 -240 -46 -308 -117c-2 -2 -6 -4 -10 -4c-8 0 -14 6 -14 14c0 4 1 7 4 10c73 76 163 136 318 160 c27 4 54 6 81 6c91 0 182 -22 272 -43c84 -21 170 -42 256 -42c24 0 48 2 72 6c143 22 240 46 308 117c3 2 6 4 10 4c8 0 14 -6 14 -14'], + 0x306: [742,-575,1341,0,1341,'1341 734c-53 -159 -404 -159 -671 -159c-266 0 -617 0 -670 159l27 8c35 -104 392 -104 643 -104c252 0 609 0 644 104'], + 0x30C: [742,-564,1320,0,1320,'1320 714c-219 -56 -439 -106 -660 -150c-221 44 -441 94 -660 150l6 28l654 -114l654 114'], + 0x311: [760,-592,1341,0,1341,'1341 600l-27 -8c-35 104 -392 105 -644 105c-251 0 -608 -1 -643 -105l-27 8c53 159 404 160 670 160c267 0 618 -1 671 -160'], + 0x32C: [-96,274,1320,0,1320,'1320 -123c-219 -57 -439 -107 -660 -151c-221 44 -441 94 -660 151l6 27l654 -114l654 114'], + 0x32D: [-108,286,1320,0,1320,'1320 -258l-6 -28l-654 114l-654 -114l-6 28c219 56 439 106 660 150c221 -44 441 -94 660 -150'], + 0x32E: [-96,264,1341,0,1341,'1341 -105c-53 -159 -404 -159 -671 -159c-266 0 -617 0 -670 159l27 9c35 -105 392 -105 643 -105c252 0 609 0 644 105'], + 0x32F: [-118,286,1341,0,1341,'1341 -277l-27 -9c-35 105 -392 105 -644 105c-251 0 -608 0 -643 -105l-27 9c53 159 404 159 670 159c267 0 618 0 671 -159'], + 0x330: [-118,350,1335,0,1335,'1335 -132c0 -4 -1 -7 -4 -10c-73 -76 -163 -136 -318 -160c-27 -4 -54 -6 -80 -6c-92 0 -183 22 -273 43c-84 21 -170 42 -256 42c-24 0 -48 -2 -72 -6c-143 -22 -240 -46 -308 -117c-2 -2 -6 -4 -10 -4c-8 0 -14 6 -14 14c0 4 1 7 4 10c73 76 163 136 318 160 c27 4 54 6 81 6c91 0 182 -22 272 -43c84 -21 170 -42 256 -42c24 0 48 2 72 6c143 22 240 46 308 117c3 2 6 4 10 4c8 0 14 -6 14 -14'], + 0x2016: [1501,1001,396,57,341,'122 -969c0 -18 -15 -32 -33 -32s-32 14 -32 32v2438c0 18 14 32 32 32s33 -14 33 -32v-2438zM341 -969c0 -18 -15 -32 -33 -32s-32 14 -32 32v2438c0 18 14 32 32 32s33 -14 33 -32v-2438'], + 0x2044: [2179,1679,1557,57,1502,'1502 2146c0 -3 -1 -7 -2 -11l-1380 -3793c-5 -12 -17 -21 -31 -21c-18 0 -32 15 -32 33c0 3 0 7 1 11l1380 3793c5 12 17 21 31 21c18 0 33 -15 33 -33'], + 0x20E9: [757,-521,2235,0,2235,'2235 757v-209c0 -15 -12 -27 -27 -27s-27 12 -27 27v155h-2127v-155c0 -15 -12 -27 -27 -27s-27 12 -27 27v209h2235'], + 0x2223: [1501,1001,278,107,172,'172 -969c0 -18 -15 -32 -33 -32s-32 14 -32 32v2438c0 18 14 32 32 32s33 -14 33 -32v-2438'], + 0x2225: [1501,1001,396,57,341,'122 -969c0 -18 -15 -32 -33 -32s-32 14 -32 32v2438c0 18 14 32 32 32s33 -14 33 -32v-2438zM341 -969c0 -18 -15 -32 -33 -32s-32 14 -32 32v2438c0 18 14 32 32 32s33 -14 33 -32v-2438'], + 0x2308: [1300,800,555,203,528,'528 1273c0 -15 -12 -27 -27 -27h-244v-2019c0 -15 -12 -27 -27 -27s-27 12 -27 27v2073h298c15 0 27 -12 27 -27'], + 0x2309: [1300,800,555,27,352,'352 -773c0 -15 -12 -27 -27 -27s-27 12 -27 27v2019h-244c-15 0 -27 12 -27 27s12 27 27 27h298v-2073'], + 0x230A: [1300,800,555,203,528,'528 -773c0 -15 -12 -27 -27 -27h-298v2073c0 15 12 27 27 27s27 -12 27 -27v-2019h244c15 0 27 -12 27 -27'], + 0x230B: [1300,800,555,27,352,'352 1273v-2073h-298c-15 0 -27 12 -27 27s12 27 27 27h244v2019c0 15 12 27 27 27s27 -12 27 -27'], + 0x2329: [1300,800,677,165,623,'623 -773c0 -15 -12 -27 -27 -27c-11 0 -21 7 -25 17l-404 1023c-1 3 -2 7 -2 10s1 7 2 10l404 1023c4 10 14 17 25 17c15 0 27 -12 27 -27c0 -3 -1 -7 -2 -10l-400 -1013l400 -1013c1 -3 2 -7 2 -10'], + 0x232A: [1300,800,677,54,512,'512 250c0 -3 -1 -7 -2 -10l-404 -1023c-4 -10 -14 -17 -25 -17c-15 0 -27 12 -27 27c0 3 1 7 2 10l400 1013l-400 1013c-1 3 -2 7 -2 10c0 15 12 27 27 27c11 0 21 -7 25 -17l404 -1023c1 -3 2 -7 2 -10'], + 0x23B4: [757,-521,2235,0,2235,'2235 757v-209c0 -15 -12 -27 -27 -27s-27 12 -27 27v155h-2127v-155c0 -15 -12 -27 -27 -27s-27 12 -27 27v209h2235'], + 0x23B5: [-91,327,2235,0,2235,'2235 -327h-2235v209c0 15 12 27 27 27s27 -12 27 -27v-155h2127v155c0 15 12 27 27 27s27 -12 27 -27v-209'], + 0x23DC: [780,-506,3020,0,3020,'3020 526c0 -11 -9 -20 -20 -20c-6 0 -11 2 -14 6c-117 116 -645 190 -1174 190h-604c-529 0 -1057 -74 -1174 -190c-3 -4 -8 -6 -14 -6c-11 0 -20 9 -20 20c0 5 2 10 6 14c120 120 657 240 1202 240h604c545 0 1082 -120 1202 -240c4 -4 6 -9 6 -14'], + 0x23DD: [-76,350,3020,0,3020,'3020 -96c0 -5 -2 -10 -6 -14c-120 -120 -657 -240 -1202 -240h-604c-545 0 -1082 120 -1202 240c-4 4 -6 9 -6 14c0 11 9 20 20 20c6 0 11 -2 14 -6c117 -116 645 -190 1174 -190h604c529 0 1057 74 1174 190c3 4 8 6 14 6c11 0 20 -9 20 -20'], + 0x23DE: [838,-500,3000,0,3000,'3000 510c0 -6 -4 -10 -10 -10c-4 0 -8 3 -9 7c-31 83 -215 123 -399 123h-674c-205 0 -367 78 -408 159c-41 -81 -203 -159 -408 -159h-674c-184 0 -368 -40 -399 -123c-1 -4 -5 -7 -9 -7c-6 0 -10 4 -10 10c0 1 0 2 1 3c33 93 214 195 417 195h674 c214 0 398 37 398 120c0 6 4 10 10 10s10 -4 10 -10c0 -83 184 -120 398 -120h674c203 0 384 -102 417 -195c1 -1 1 -2 1 -3'], + 0x23DF: [-70,408,3000,0,3000,'3000 -80c0 -1 0 -2 -1 -3c-33 -93 -214 -195 -417 -195h-674c-214 0 -398 -37 -398 -120c0 -6 -4 -10 -10 -10s-10 4 -10 10c0 83 -184 120 -398 120h-674c-203 0 -384 102 -417 195c-1 1 -1 2 -1 3c0 6 4 10 10 10c4 0 8 -3 9 -7c31 -83 215 -123 399 -123h674 c205 0 367 -78 408 -159c41 81 203 159 408 159h674c184 0 368 40 399 123c1 4 5 7 9 7c6 0 10 -4 10 -10'], + 0x23E0: [866,-607,3068,0,3068,'3068 607h-88l-171 171h-2550l-171 -171h-88l259 259h2550'], + 0x23E1: [-177,436,3068,0,3068,'3068 -177l-259 -259h-2550l-259 259h88l171 -171h2550l171 171h88'], + 0x27E6: [1300,800,750,247,727,'727 -773c0 -15 -12 -27 -27 -27h-453v2100h453c15 0 27 -12 27 -27s-12 -27 -27 -27h-172v-1992h172c15 0 27 -12 27 -27zM474 1246h-173v-1992h173v1992'], + 0x27E7: [1300,800,750,23,503,'503 1300v-2100h-453c-15 0 -27 12 -27 27s12 27 27 27h172v1992h-172c-15 0 -27 12 -27 27s12 27 27 27h453zM449 -746v1992h-173v-1992h173'], + 0x27E8: [1300,800,677,165,623,'623 -773c0 -15 -12 -27 -27 -27c-11 0 -21 7 -25 17l-404 1023c-1 3 -2 7 -2 10s1 7 2 10l404 1023c4 10 14 17 25 17c15 0 27 -12 27 -27c0 -3 -1 -7 -2 -10l-400 -1013l400 -1013c1 -3 2 -7 2 -10'], + 0x27E9: [1300,800,677,54,512,'512 250c0 -3 -1 -7 -2 -10l-404 -1023c-4 -10 -14 -17 -25 -17c-15 0 -27 12 -27 27c0 3 1 7 2 10l400 1013l-400 1013c-1 3 -2 7 -2 10c0 15 12 27 27 27c11 0 21 -7 25 -17l404 -1023c1 -3 2 -7 2 -10'], + 0x27EA: [1300,800,1011,165,957,'623 -773c0 -15 -12 -27 -27 -27c-11 0 -21 7 -25 17l-404 1023c-1 3 -2 7 -2 10s1 7 2 10l404 1023c4 10 14 17 25 17c15 0 27 -12 27 -27c0 -3 -1 -7 -2 -10l-400 -1013l400 -1013c1 -3 2 -7 2 -10zM957 -773c0 -15 -12 -27 -27 -27c-12 0 -21 7 -25 17l-404 1023 c-2 3 -2 7 -2 10s0 7 2 10l404 1023c4 10 13 17 25 17c15 0 27 -12 27 -27c0 -3 -1 -7 -2 -10l-400 -1013l400 -1013c1 -3 2 -7 2 -10'], + 0x27EB: [1300,800,1011,54,846,'846 250c0 -3 -1 -7 -2 -10l-404 -1023c-4 -10 -14 -17 -25 -17c-15 0 -27 12 -27 27c0 3 0 7 2 10l400 1013l-400 1013c-2 3 -2 7 -2 10c0 15 12 27 27 27c11 0 21 -7 25 -17l404 -1023c1 -3 2 -7 2 -10zM512 250c0 -3 -1 -7 -2 -10l-404 -1023c-4 -10 -14 -17 -25 -17 c-15 0 -27 12 -27 27c0 3 1 7 2 10l400 1013l-400 1013c-1 3 -2 7 -2 10c0 15 12 27 27 27c11 0 21 -7 25 -17l404 -1023c1 -3 2 -7 2 -10'], + 0x27EE: [1320,820,485,206,429,'429 -800c0 -11 -9 -20 -20 -20c-6 0 -11 2 -14 6c-93 93 -189 444 -189 789v550c0 345 96 696 189 789c3 4 8 6 14 6c11 0 20 -9 20 -20c0 -6 -2 -11 -6 -14c-88 -89 -139 -432 -139 -761v-550c0 -329 51 -672 139 -761c4 -3 6 -8 6 -14'], + 0x27EF: [1320,820,485,56,279,'279 -25c0 -345 -96 -696 -189 -789c-3 -4 -8 -6 -14 -6c-11 0 -20 9 -20 20c0 6 2 11 6 14c88 89 139 432 139 761v550c0 329 -51 672 -139 761c-4 3 -6 8 -6 14c0 11 9 20 20 20c6 0 11 -2 14 -6c93 -93 189 -444 189 -789v-550'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size5/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size6/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size6/Regular/Main.js new file mode 100644 index 0000000..4299031 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size6/Regular/Main.js @@ -0,0 +1,74 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Size6/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Size6'] = { + directory: 'Size6/Regular', + family: 'LatinModernMathJax_Size6', + id: 'LATINMODERNSIZE6', + 0x20: [0,0,332,0,0,''], + 0x28: [1446,946,736,226,682,'682 -928c0 -10 -8 -18 -18 -18c-4 0 -8 2 -11 4c-222 167 -427 613 -427 1006v372c0 393 205 839 427 1006c3 2 7 4 11 4c10 0 18 -8 18 -18c0 -6 -3 -11 -7 -14c-213 -160 -361 -603 -361 -978v-372c0 -375 148 -818 361 -978c4 -3 7 -8 7 -14'], + 0x29: [1446,946,736,54,510,'510 64c0 -393 -205 -839 -427 -1006c-3 -2 -7 -4 -11 -4c-10 0 -18 8 -18 18c0 6 3 11 7 14c213 160 361 603 361 978v372c0 375 -148 818 -361 978c-4 3 -7 8 -7 14c0 10 8 18 18 18c4 0 8 -2 11 -4c222 -167 427 -613 427 -1006v-372'], + 0x2F: [2777,2277,1997,56,1941,'1941 2741c0 -4 -1 -9 -2 -12l-1813 -4982c-5 -14 -18 -24 -34 -24c-20 0 -36 16 -36 36c0 4 1 9 2 12l1813 4982c5 14 18 24 34 24c20 0 36 -16 36 -36'], + 0x5B: [1450,950,528,233,509,'509 -921c0 -16 -13 -29 -29 -29h-247v2400h247c16 0 29 -13 29 -29s-13 -29 -29 -29h-189v-2284h189c16 0 29 -13 29 -29'], + 0x5C: [2777,2277,1997,56,1941,'1941 -2241c0 -20 -16 -36 -36 -36c-16 0 -29 10 -34 24l-1813 4982c-1 3 -2 8 -2 12c0 20 16 36 36 36c16 0 29 -10 34 -24l1813 -4982c1 -3 2 -8 2 -12'], + 0x5D: [1450,950,528,19,295,'295 1450v-2400h-247c-16 0 -29 13 -29 29s13 29 29 29h189v2284h-189c-16 0 -29 13 -29 29s13 29 29 29h247'], + 0x7B: [1450,950,750,102,648,'648 -928c0 -12 -10 -22 -22 -22c-2 0 -4 0 -6 1c-155 48 -292 176 -292 299v600c0 110 -87 241 -210 279c-9 3 -16 11 -16 21s7 18 16 21c123 38 210 169 210 279v600c0 123 137 251 292 299c2 1 4 1 6 1c12 0 22 -10 22 -22c0 -10 -7 -18 -16 -21 c-122 -38 -210 -159 -210 -257v-600c0 -120 -107 -240 -237 -300c130 -60 237 -180 237 -300v-600c0 -98 88 -219 210 -257c9 -3 16 -11 16 -21'], + 0x7C: [1752,1252,278,103,175,'175 -1216c0 -20 -16 -36 -36 -36s-36 16 -36 36v2932c0 20 16 36 36 36s36 -16 36 -36v-2932'], + 0x7D: [1450,950,750,102,648,'648 250c0 -10 -7 -18 -16 -21c-123 -38 -210 -169 -210 -279v-600c0 -123 -137 -251 -292 -299c-2 -1 -4 -1 -6 -1c-12 0 -22 10 -22 22c0 10 7 18 16 21c122 38 210 159 210 257v600c0 120 107 240 237 300c-130 60 -237 180 -237 300v600c0 98 -88 219 -210 257 c-9 3 -16 11 -16 21c0 12 10 22 22 22c2 0 4 0 6 -1c155 -48 292 -176 292 -299v-600c0 -110 87 -241 210 -279c9 -3 16 -11 16 -21'], + 0xA0: [0,0,332,0,0,''], + 0x302: [748,-570,1581,0,1581,'1581 598l-5 -28l-786 114l-785 -114l-5 28l790 150'], + 0x303: [769,-532,1599,0,1599,'1599 754c0 -4 -2 -8 -4 -11c-82 -75 -194 -135 -387 -160c-32 -5 -63 -6 -95 -6c-107 0 -214 20 -320 42c-101 20 -203 41 -305 41c-30 0 -59 -2 -88 -6c-182 -24 -299 -48 -376 -119c-2 -2 -6 -3 -9 -3c-9 0 -15 6 -15 14c0 4 2 8 5 11c81 75 193 135 386 160 c32 5 64 6 95 6c107 0 214 -20 320 -42c101 -20 203 -41 305 -41c30 0 59 2 89 6c181 24 298 48 375 119c2 2 6 4 10 4c8 0 14 -7 14 -15'], + 0x306: [743,-574,1604,0,1604,'1604 733c-54 -159 -486 -159 -802 -159s-749 0 -802 159l28 10c34 -105 473 -105 774 -105c300 0 739 0 774 105'], + 0x30C: [742,-564,1581,0,1581,'1581 714l-791 -150l-790 150l5 28l785 -114l786 114'], + 0x311: [760,-591,1604,0,1604,'1604 601l-28 -10c-35 105 -474 105 -774 105c-301 0 -740 0 -774 -105l-28 10c53 159 486 159 802 159s748 0 802 -159'], + 0x32C: [-96,275,1581,0,1581,'1581 -125l-791 -150l-790 150l5 29l785 -114l786 114'], + 0x32D: [-108,287,1581,0,1581,'1581 -258l-5 -29l-786 114l-785 -114l-5 29l790 150'], + 0x32E: [-96,265,1604,0,1604,'1604 -105c-54 -160 -486 -160 -802 -160s-749 0 -802 160l28 9c34 -105 473 -105 774 -105c300 0 739 0 774 105'], + 0x32F: [-118,287,1604,0,1604,'1604 -277l-28 -10c-35 105 -474 105 -774 105c-301 0 -740 0 -774 -105l-28 10c53 159 486 159 802 159s748 0 802 -159'], + 0x330: [-118,355,1599,0,1599,'1599 -132c0 -5 -2 -9 -4 -11c-82 -75 -194 -135 -387 -161c-32 -4 -63 -6 -95 -6c-107 0 -214 21 -320 42c-101 20 -203 41 -305 41c-30 0 -59 -2 -88 -6c-182 -24 -299 -47 -376 -118c-2 -3 -6 -4 -9 -4c-9 0 -15 6 -15 15c0 4 2 8 5 10c81 75 193 135 386 161 c32 4 64 6 95 6c107 0 214 -21 320 -42c101 -20 203 -41 305 -41c30 0 59 2 89 6c181 24 298 47 375 118c2 3 6 4 10 4c8 0 14 -6 14 -14'], + 0x2016: [1752,1252,410,56,354,'128 -1216c0 -20 -16 -36 -36 -36s-36 16 -36 36v2932c0 20 16 36 36 36s36 -16 36 -36v-2932zM354 -1216c0 -20 -16 -36 -36 -36s-36 16 -36 36v2932c0 20 16 36 36 36s36 -16 36 -36v-2932'], + 0x2044: [2777,2277,1997,56,1941,'1941 2741c0 -4 -1 -9 -2 -12l-1813 -4982c-5 -14 -18 -24 -34 -24c-20 0 -36 16 -36 36c0 4 1 9 2 12l1813 4982c5 14 18 24 34 24c20 0 36 -16 36 -36'], + 0x20E9: [764,-513,2610,0,2610,'2610 764v-222c0 -16 -13 -29 -29 -29s-29 13 -29 29v164h-2494v-164c0 -16 -13 -29 -29 -29s-29 13 -29 29v222h2610'], + 0x2223: [1752,1252,278,103,175,'175 -1216c0 -20 -16 -36 -36 -36s-36 16 -36 36v2932c0 20 16 36 36 36s36 -16 36 -36v-2932'], + 0x2225: [1752,1252,410,56,354,'128 -1216c0 -20 -16 -36 -36 -36s-36 16 -36 36v2932c0 20 16 36 36 36s36 -16 36 -36v-2932zM354 -1216c0 -20 -16 -36 -36 -36s-36 16 -36 36v2932c0 20 16 36 36 36s36 -16 36 -36v-2932'], + 0x2308: [1450,950,583,210,555,'555 1421c0 -16 -13 -29 -29 -29h-258v-2313c0 -16 -13 -29 -29 -29s-29 13 -29 29v2371h316c16 0 29 -13 29 -29'], + 0x2309: [1450,950,583,28,373,'373 -921c0 -16 -13 -29 -29 -29s-29 13 -29 29v2313h-258c-16 0 -29 13 -29 29s13 29 29 29h316v-2371'], + 0x230A: [1450,950,583,210,555,'555 -921c0 -16 -13 -29 -29 -29h-316v2371c0 16 13 29 29 29s29 -13 29 -29v-2313h258c16 0 29 -13 29 -29'], + 0x230B: [1450,950,583,28,373,'373 -950h-316c-16 0 -29 13 -29 29s13 29 29 29h258v2313c0 16 13 29 29 29s29 -13 29 -29v-2371'], + 0x2329: [1450,950,750,173,697,'697 -921c0 -16 -13 -29 -29 -29c-12 0 -23 8 -27 18l-466 1171c-1 4 -2 7 -2 11s1 7 2 11l466 1171c4 10 15 18 27 18c16 0 29 -13 29 -29c0 -4 -1 -7 -2 -11l-462 -1160l462 -1160c1 -4 2 -7 2 -11'], + 0x232A: [1450,950,750,53,577,'577 250c0 -4 -1 -7 -2 -11l-466 -1171c-4 -10 -15 -18 -27 -18c-16 0 -29 13 -29 29c0 4 1 7 2 11l462 1160l-462 1160c-1 4 -2 7 -2 11c0 16 13 29 29 29c12 0 23 -8 27 -18l466 -1171c1 -4 2 -7 2 -11'], + 0x23B4: [764,-513,2610,0,2610,'2610 764v-222c0 -16 -13 -29 -29 -29s-29 13 -29 29v164h-2494v-164c0 -16 -13 -29 -29 -29s-29 13 -29 29v222h2610'], + 0x23B5: [-83,334,2610,0,2610,'2610 -334h-2610v222c0 16 13 29 29 29s29 -13 29 -29v-164h2494v164c0 16 13 29 29 29s29 -13 29 -29v-222'], + 0x23DC: [787,-505,3524,0,3524,'3524 527c0 -12 -10 -22 -22 -22c-6 0 -12 2 -16 6c-117 118 -715 188 -1330 188h-788c-615 0 -1213 -70 -1330 -188c-4 -4 -10 -6 -16 -6c-12 0 -22 10 -22 22c0 6 2 12 6 16c121 121 729 244 1362 244h788c633 0 1241 -123 1362 -244c4 -4 6 -10 6 -16'], + 0x23DD: [-75,357,3524,0,3524,'3524 -97c0 -6 -2 -12 -6 -16c-121 -121 -729 -244 -1362 -244h-788c-633 0 -1241 123 -1362 244c-4 4 -6 10 -6 16c0 12 10 22 22 22c6 0 12 -2 16 -6c117 -118 715 -188 1330 -188h788c615 0 1213 70 1330 188c4 4 10 6 16 6c12 0 22 -10 22 -22'], + 0x23DE: [845,-498,3502,0,3502,'3502 509c0 -7 -5 -11 -11 -11c-5 0 -9 3 -10 7c-32 85 -237 122 -446 122h-828c-229 0 -411 83 -456 167c-45 -84 -227 -167 -456 -167h-828c-209 0 -414 -37 -446 -122c-1 -4 -5 -7 -10 -7c-6 0 -11 4 -11 11c0 1 0 2 1 3c34 94 236 203 466 203h828 c239 0 445 33 445 119c0 6 5 11 11 11s11 -5 11 -11c0 -86 206 -119 445 -119h828c230 0 432 -109 466 -203c1 -1 1 -2 1 -3'], + 0x23DF: [-67,414,3502,0,3502,'3502 -78c0 -2 0 -3 -1 -4c-34 -94 -236 -203 -466 -203h-828c-239 0 -445 -33 -445 -118c0 -7 -5 -11 -11 -11s-11 4 -11 11c0 85 -206 118 -445 118h-828c-230 0 -432 109 -466 203c-1 1 -1 2 -1 4c0 6 5 11 11 11c5 0 9 -4 10 -8c32 -85 237 -122 446 -122h828 c229 0 411 -83 456 -167c45 84 227 167 456 167h828c209 0 414 37 446 122c1 4 5 8 10 8c6 0 11 -5 11 -11'], + 0x23E0: [869,-606,3574,0,3574,'3574 606h-94l-169 169h-3048l-169 -169h-94l263 263h3048'], + 0x23E1: [-176,439,3574,0,3574,'3574 -176l-263 -263h-3048l-263 263h94l169 -169h3048l169 169h94'], + 0x27E6: [1450,950,838,282,816,'816 -921c0 -16 -13 -29 -29 -29h-505v2400h505c16 0 29 -13 29 -29s-13 -29 -29 -29h-194v-2284h194c16 0 29 -13 29 -29zM535 -892v2284h-195v-2284h195'], + 0x27E7: [1450,950,838,22,556,'556 -950h-505c-16 0 -29 13 -29 29s13 29 29 29h194v2284h-194c-16 0 -29 13 -29 29s13 29 29 29h505v-2400zM498 -892v2284h-195v-2284h195'], + 0x27E8: [1450,950,750,173,697,'697 -921c0 -16 -13 -29 -29 -29c-12 0 -23 8 -27 18l-466 1171c-1 4 -2 7 -2 11s1 7 2 11l466 1171c4 10 15 18 27 18c16 0 29 -13 29 -29c0 -4 -1 -7 -2 -11l-462 -1160l462 -1160c1 -4 2 -7 2 -11'], + 0x27E9: [1450,950,750,53,577,'577 250c0 -4 -1 -7 -2 -11l-466 -1171c-4 -10 -15 -18 -27 -18c-16 0 -29 13 -29 29c0 4 1 7 2 11l462 1160l-462 1160c-1 4 -2 7 -2 11c0 16 13 29 29 29c12 0 23 -8 27 -18l466 -1171c1 -4 2 -7 2 -11'], + 0x27EA: [1450,950,1124,173,1071,'697 -921c0 -16 -13 -29 -29 -29c-12 0 -23 8 -27 18l-466 1171c-1 4 -2 7 -2 11s1 7 2 11l466 1171c4 10 15 18 27 18c16 0 29 -13 29 -29c0 -4 -1 -7 -2 -11l-462 -1160l462 -1160c1 -4 2 -7 2 -11zM1071 -921c0 -16 -13 -29 -29 -29c-12 0 -22 8 -27 18l-466 1171 c-1 4 -2 7 -2 11s1 7 2 11l466 1171c5 10 15 18 27 18c16 0 29 -13 29 -29c0 -4 0 -7 -2 -11l-461 -1160l461 -1160c2 -4 2 -7 2 -11'], + 0x27EB: [1450,950,1124,53,951,'951 250c0 -4 0 -7 -2 -11l-466 -1171c-4 -10 -14 -18 -27 -18c-16 0 -29 13 -29 29c0 4 1 7 2 11l462 1160l-462 1160c-1 4 -2 7 -2 11c0 16 13 29 29 29c13 0 23 -8 27 -18l466 -1171c2 -4 2 -7 2 -11zM577 250c0 -4 -1 -7 -2 -11l-466 -1171c-4 -10 -15 -18 -27 -18 c-16 0 -29 13 -29 29c0 4 1 7 2 11l462 1160l-462 1160c-1 4 -2 7 -2 11c0 16 13 29 29 29c12 0 23 -8 27 -18l466 -1171c1 -4 2 -7 2 -11'], + 0x27EE: [1472,972,541,235,485,'485 -950c0 -12 -10 -22 -22 -22c-6 0 -12 2 -16 6c-104 105 -212 486 -212 859v714c0 373 108 754 212 859c4 4 10 6 16 6c12 0 22 -10 22 -22c0 -6 -2 -12 -6 -16c-100 -99 -156 -472 -156 -827v-714c0 -355 56 -728 156 -827c4 -4 6 -10 6 -16'], + 0x27EF: [1472,972,541,56,306,'306 -107c0 -373 -108 -754 -212 -859c-4 -4 -10 -6 -16 -6c-12 0 -22 10 -22 22c0 6 2 12 6 16c100 99 156 472 156 827v714c0 355 -56 728 -156 827c-4 4 -6 10 -6 16c0 12 10 22 22 22c6 0 12 -2 16 -6c104 -105 212 -486 212 -859v-714'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size6/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size7/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size7/Regular/Main.js new file mode 100644 index 0000000..e2c26a0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Size7/Regular/Main.js @@ -0,0 +1,383 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Size7/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Size7'] = { + directory: 'Size7/Regular', + family: 'LatinModernMathJax_Size7', + id: 'LATINMODERNSIZE7', + 0x20: [0,0,332,0,0,''], + 0x28: [1745,1245,875,277,823,'823 -1224c0 -11 -10 -21 -21 -21c-5 0 -9 2 -12 4c-268 202 -513 751 -513 1241v500c0 490 245 1039 513 1241c3 2 7 4 12 4c11 0 21 -10 21 -21c0 -7 -3 -13 -9 -17c-255 -192 -435 -739 -435 -1207v-500c0 -468 180 -1015 435 -1207c6 -4 9 -10 9 -17'], + 0x29: [1745,1245,875,52,598,'598 0c0 -490 -245 -1039 -513 -1241c-3 -2 -7 -4 -12 -4c-11 0 -21 10 -21 21c0 7 3 13 9 17c255 192 435 739 435 1207v500c0 468 -180 1015 -435 1207c-6 4 -9 10 -9 17c0 11 10 21 21 21c5 0 9 -2 12 -4c268 -202 513 -751 513 -1241v-500'], + 0x2F: [3560,3060,2572,57,2517,'2517 3521c0 -5 -1 -10 -3 -14l-2381 -6541c-5 -15 -20 -26 -37 -26c-22 0 -39 17 -39 39c0 5 0 10 2 14l2381 6541c5 15 20 26 37 26c22 0 40 -17 40 -39'], + 0x5B: [1750,1250,667,321,647,'647 -1220c0 -17 -13 -30 -30 -30h-296v3000h296c17 0 30 -13 30 -30s-13 -30 -30 -30h-236v-2880h236c17 0 30 -13 30 -30'], + 0x5C: [3560,3060,2572,55,2515,'2515 -3021c0 -22 -17 -39 -39 -39c-17 0 -32 11 -37 26l-2381 6541c-2 4 -3 9 -3 14c0 22 18 39 40 39c17 0 32 -11 37 -26l2381 -6541c2 -4 2 -9 2 -14'], + 0x5D: [1750,1250,667,20,346,'346 -1250h-296c-17 0 -30 13 -30 30s13 30 30 30h236v2880h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-3000'], + 0x7B: [1750,1250,902,147,755,'755 -1224c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v750c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v750c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26c0 -11 -7 -21 -17 -24 c-138 -51 -236 -202 -236 -325v-750c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-750c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24'], + 0x7C: [2053,1553,278,100,179,'179 -1514c0 -21 -18 -39 -40 -39s-39 18 -39 39v3528c0 21 17 39 39 39s40 -18 40 -39v-3528'], + 0x7D: [1750,1250,902,147,755,'755 250c0 -11 -7 -21 -17 -24c-139 -51 -236 -214 -236 -351v-750c0 -151 -151 -312 -320 -373c-3 -1 -6 -2 -9 -2c-14 0 -26 12 -26 26c0 11 7 21 17 24c138 51 236 202 236 325v750c0 147 120 300 265 375c-145 75 -265 228 -265 375v750c0 123 -98 274 -236 325 c-10 3 -17 13 -17 24c0 14 12 26 26 26c3 0 6 -1 9 -2c169 -61 320 -222 320 -373v-750c0 -137 97 -300 236 -351c10 -3 17 -13 17 -24'], + 0xA0: [0,0,332,0,0,''], + 0x302: [749,-569,1896,0,1896,'1896 599l-4 -30l-944 114l-944 -114l-4 30l948 150'], + 0x303: [773,-527,1915,0,1915,'1915 758c0 -5 -2 -9 -5 -12c-90 -74 -226 -135 -467 -162c-39 -5 -78 -7 -117 -7c-125 0 -250 20 -374 40c-120 20 -241 40 -362 40c-37 0 -73 -2 -110 -6c-230 -26 -370 -50 -455 -121c-3 -2 -6 -3 -10 -3c-8 0 -15 7 -15 15c0 5 2 9 5 12c90 74 226 135 467 162 c39 5 78 7 117 7c125 0 250 -20 374 -40c120 -20 241 -40 362 -40c37 0 74 2 110 6c230 26 370 50 456 121c2 2 6 3 9 3c8 0 15 -7 15 -15'], + 0x306: [743,-573,1920,0,1920,'1920 733c-53 -160 -584 -160 -960 -160c-375 0 -907 0 -960 160l28 10c35 -104 573 -104 932 -104s897 0 932 104'], + 0x30C: [743,-563,1896,0,1896,'1896 713l-948 -150l-948 150l4 30l944 -114l944 114'], + 0x311: [761,-591,1920,0,1920,'1920 601l-28 -10c-35 104 -573 104 -932 104s-897 0 -932 -104l-28 10c53 160 585 160 960 160c376 0 907 0 960 -160'], + 0x32C: [-96,276,1896,0,1896,'1896 -126l-948 -150l-948 150l4 30l944 -114l944 114'], + 0x32D: [-108,288,1896,0,1896,'1896 -258l-4 -30l-944 113l-944 -113l-4 30l948 150'], + 0x32E: [-96,266,1920,0,1920,'1920 -105c-53 -161 -584 -161 -960 -161c-375 0 -907 0 -960 161l28 9c35 -104 573 -104 932 -104s897 0 932 104'], + 0x32F: [-118,288,1920,0,1920,'1920 -278l-28 -10c-35 104 -573 104 -932 104s-897 0 -932 -104l-28 10c53 160 585 160 960 160c376 0 907 0 960 -160'], + 0x330: [-118,364,1915,0,1915,'1915 -133c0 -5 -2 -9 -5 -12c-90 -74 -226 -135 -467 -162c-39 -5 -78 -7 -117 -7c-125 0 -250 20 -374 40c-120 20 -241 40 -362 40c-37 0 -73 -2 -110 -6c-230 -26 -370 -50 -455 -121c-3 -2 -6 -3 -10 -3c-8 0 -15 7 -15 15c0 5 2 9 5 12c90 74 226 135 467 162 c39 5 78 7 117 7c125 0 250 -20 374 -40c120 -20 241 -40 362 -40c37 0 74 2 110 6c230 26 370 50 456 121c2 2 6 3 9 3c8 0 15 -7 15 -15'], + 0x2016: [2053,1553,424,57,369,'136 -1514c0 -21 -18 -39 -40 -39s-39 18 -39 39v3528c0 21 17 39 39 39s40 -18 40 -39v-3528zM369 -1514c0 -21 -18 -39 -40 -39s-39 18 -39 39v3528c0 21 17 39 39 39s40 -18 40 -39v-3528'], + 0x2044: [3560,3060,2572,57,2517,'2517 3521c0 -5 -1 -10 -3 -14l-2381 -6541c-5 -15 -20 -26 -37 -26c-22 0 -39 17 -39 39c0 5 0 10 2 14l2381 6541c5 15 20 26 37 26c22 0 40 -17 40 -39'], + 0x20E9: [772,-504,2985,0,2985,'2985 534c0 -16 -13 -30 -30 -30s-30 14 -30 30v178h-2865v-178c0 -16 -13 -30 -30 -30s-30 14 -30 30v238h2985v-238'], + 0x2223: [2053,1553,278,100,179,'179 -1514c0 -21 -18 -39 -40 -39s-39 18 -39 39v3528c0 21 17 39 39 39s40 -18 40 -39v-3528'], + 0x2225: [2053,1553,424,57,369,'136 -1514c0 -21 -18 -39 -40 -39s-39 18 -39 39v3528c0 21 17 39 39 39s40 -18 40 -39v-3528zM369 -1514c0 -21 -18 -39 -40 -39s-39 18 -39 39v3528c0 21 17 39 39 39s40 -18 40 -39v-3528'], + 0x2308: [1750,1250,623,221,595,'595 1720c0 -17 -13 -30 -30 -30h-284v-2910c0 -17 -13 -30 -30 -30s-30 13 -30 30v2970h344c17 0 30 -13 30 -30'], + 0x2309: [1750,1250,623,28,402,'402 -1220c0 -17 -13 -30 -30 -30s-30 13 -30 30v2910h-284c-17 0 -30 13 -30 30s13 30 30 30h344v-2970'], + 0x230A: [1750,1250,623,221,595,'595 -1220c0 -17 -13 -30 -30 -30h-344v2970c0 17 13 30 30 30s30 -13 30 -30v-2910h284c17 0 30 -13 30 -30'], + 0x230B: [1750,1250,623,28,402,'402 1720v-2970h-344c-17 0 -30 13 -30 30s13 30 30 30h284v2910c0 17 13 30 30 30s30 -13 30 -30'], + 0x2329: [1750,1250,908,204,852,'852 -1220c0 -17 -13 -30 -30 -30c-13 0 -23 8 -28 19l-588 1470c-1 3 -2 7 -2 11s1 8 2 11l588 1470c5 11 15 19 28 19c17 0 30 -13 30 -30c0 -4 -1 -8 -2 -11l-584 -1459l584 -1459c1 -3 2 -7 2 -11'], + 0x232A: [1750,1250,908,56,704,'704 250c0 -4 -1 -8 -2 -11l-588 -1470c-5 -11 -15 -19 -28 -19c-17 0 -30 13 -30 30c0 4 1 8 2 11l584 1459l-584 1459c-1 3 -2 7 -2 11c0 17 13 30 30 30c13 0 23 -8 28 -19l588 -1470c1 -3 2 -7 2 -11'], + 0x23B4: [772,-504,2985,0,2985,'2985 534c0 -16 -13 -30 -30 -30s-30 14 -30 30v178h-2865v-178c0 -16 -13 -30 -30 -30s-30 14 -30 30v238h2985v-238'], + 0x23B5: [-74,342,2985,0,2985,'2985 -342h-2985v238c0 16 13 30 30 30s30 -14 30 -30v-178h2865v178c0 16 13 30 30 30s30 -14 30 -30v-238'], + 0x23DC: [796,-502,4032,0,4032,'4032 528c0 -14 -12 -26 -26 -26c-7 0 -14 3 -18 8c-118 118 -781 184 -1474 184h-996c-693 0 -1356 -66 -1474 -184c-4 -5 -11 -8 -18 -8c-14 0 -26 12 -26 26c0 8 3 14 8 19c121 121 795 249 1510 249h996c715 0 1389 -128 1510 -249c5 -5 8 -11 8 -19'], + 0x23DD: [-72,366,4032,0,4032,'4032 -98c0 -8 -3 -14 -8 -19c-121 -121 -795 -249 -1510 -249h-996c-715 0 -1389 128 -1510 249c-5 5 -8 11 -8 19c0 14 12 26 26 26c7 0 14 -3 18 -8c118 -118 781 -184 1474 -184h996c693 0 1356 66 1474 184c4 5 11 8 18 8c14 0 26 -12 26 -26'], + 0x23DE: [854,-493,4006,0,4006,'4006 506c0 -8 -6 -13 -13 -13c-6 0 -10 3 -12 8c-32 88 -256 121 -485 121h-996c-249 0 -446 89 -497 176c-51 -87 -248 -176 -497 -176h-996c-229 0 -453 -33 -485 -121c-2 -5 -6 -8 -12 -8c-7 0 -13 5 -13 13c0 1 0 3 1 4c35 97 255 214 509 214h996 c260 0 484 29 484 117c0 7 6 13 13 13s13 -6 13 -13c0 -88 224 -117 484 -117h996c254 0 474 -117 509 -214c1 -1 1 -3 1 -4'], + 0x23DF: [-62,423,4006,0,4006,'4006 -75c0 -2 0 -4 -1 -5c-35 -97 -255 -214 -509 -214h-996c-260 0 -484 -29 -484 -116c0 -8 -6 -13 -13 -13s-13 5 -13 13c0 87 -224 116 -484 116h-996c-254 0 -474 117 -509 214c-1 1 -1 3 -1 5c0 7 6 13 13 13c6 0 10 -4 12 -9c32 -88 256 -121 485 -121h996 c249 0 446 -89 497 -176c51 87 248 176 497 176h996c229 0 453 33 485 121c2 5 6 9 12 9c7 0 13 -6 13 -13'], + 0x23E0: [873,-605,4082,0,4082,'4082 605h-102l-166 166h-3546l-166 -166h-102l268 268h3546'], + 0x23E1: [-175,443,4082,0,4082,'4082 -175l-268 -268h-3546l-268 268h102l166 -166h3546l166 166h102'], + 0x27E6: [1750,1250,1007,353,985,'985 -1220c0 -17 -13 -30 -30 -30h-602v3000h602c17 0 30 -13 30 -30s-13 -30 -30 -30h-241v-2880h241c17 0 30 -13 30 -30zM654 -1190v2880h-241v-2880h241'], + 0x27E7: [1750,1250,1007,22,654,'654 -1250h-602c-17 0 -30 13 -30 30s13 30 30 30h241v2880h-241c-17 0 -30 13 -30 30s13 30 30 30h602v-3000zM594 1690h-241v-2880h241v2880'], + 0x27E8: [1750,1250,908,204,852,'852 -1220c0 -17 -13 -30 -30 -30c-13 0 -23 8 -28 19l-588 1470c-1 3 -2 7 -2 11s1 8 2 11l588 1470c5 11 15 19 28 19c17 0 30 -13 30 -30c0 -4 -1 -8 -2 -11l-584 -1459l584 -1459c1 -3 2 -7 2 -11'], + 0x27E9: [1750,1250,908,56,704,'704 250c0 -4 -1 -8 -2 -11l-588 -1470c-5 -11 -15 -19 -28 -19c-17 0 -30 13 -30 30c0 4 1 8 2 11l584 1459l-584 1459c-1 3 -2 7 -2 11c0 17 13 30 30 30c13 0 23 -8 28 -19l588 -1470c1 -3 2 -7 2 -11'], + 0x27EA: [1750,1250,1362,204,1306,'852 -1220c0 -17 -13 -30 -30 -30c-13 0 -23 8 -28 19l-588 1470c-1 3 -2 7 -2 11s1 8 2 11l588 1470c5 11 15 19 28 19c17 0 30 -13 30 -30c0 -4 -1 -8 -2 -11l-584 -1459l584 -1459c1 -3 2 -7 2 -11zM1306 -1220c0 -17 -14 -30 -30 -30c-13 0 -24 8 -28 19l-588 1470 c-2 3 -2 7 -2 11s0 8 2 11l588 1470c4 11 15 19 28 19c16 0 30 -13 30 -30c0 -4 -1 -8 -3 -11l-583 -1459l583 -1459c2 -3 3 -7 3 -11'], + 0x27EB: [1750,1250,1362,56,1158,'1158 250c0 -4 -1 -8 -3 -11l-588 -1470c-4 -11 -15 -19 -27 -19c-17 0 -30 13 -30 30c0 4 0 8 2 11l583 1459l-583 1459c-2 3 -2 7 -2 11c0 17 13 30 30 30c12 0 23 -8 27 -19l588 -1470c2 -3 3 -7 3 -11zM704 250c0 -4 -1 -8 -2 -11l-588 -1470c-5 -11 -15 -19 -28 -19 c-17 0 -30 13 -30 30c0 4 1 8 2 11l584 1459l-584 1459c-1 3 -2 7 -2 11c0 17 13 30 30 30c13 0 23 -8 28 -19l588 -1470c1 -3 2 -7 2 -11'], + 0x27EE: [1776,1276,647,294,591,'591 -1250c0 -14 -12 -26 -26 -26c-7 0 -14 3 -18 8c-125 124 -253 577 -253 1018v1000c0 441 128 894 253 1018c4 5 11 8 18 8c14 0 26 -12 26 -26c0 -7 -3 -14 -8 -18c-118 -119 -187 -562 -187 -982v-1000c0 -420 69 -863 187 -982c5 -4 8 -11 8 -18'], + 0x27EF: [1776,1276,647,56,353,'353 -250c0 -441 -128 -894 -253 -1018c-4 -5 -11 -8 -18 -8c-14 0 -26 12 -26 26c0 7 3 14 8 18c118 119 187 562 187 982v1000c0 420 -69 863 -187 982c-5 4 -8 11 -8 18c0 14 12 26 26 26c7 0 14 -3 18 -8c125 -124 253 -577 253 -1018v-1000'], + 0xE000: [367,-133,222,0,222,'222 327h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40zM222 133h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40'], + 0xE001: [367,-133,222,0,222,'222 367v-40h-222v40h222zM222 173v-40h-222v40h222'], + 0xE002: [367,-133,222,0,222,'222 347c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20zM222 153c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20'], + 0xE003: [748,0,902,400,502,'502 0h-102v748h102v-748'], + 0xE004: [1202,0,278,100,179,'179 39c0 -21 -18 -39 -40 -39s-39 18 -39 39v1163h78'], + 0xE005: [1202,0,278,100,179,'179 0h-79v1202h78'], + 0xE006: [1202,0,278,100,179,'179 0h-79v1163c0 21 17 39 39 39s40 -18 40 -39v-1163'], + 0xE007: [748,0,902,400,502,'502 0h-102v748h102v-748'], + 0xE008: [711,-601,208,0,208,'208 631v-30h-193c-8 0 -15 7 -15 15c0 7 4 12 10 14c36 12 66 38 81 72c3 5 8 9 14 9c8 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-11 -23 -26 -43 -45 -59h134'], + 0xE009: [631,-601,139,0,139,'139 601h-139v30h139v-30'], + 0xE00A: [631,-601,208,0,208,'208 616c0 -8 -7 -15 -15 -15h-193v30h193c8 0 15 -7 15 -15'], + 0xE00B: [631,-601,208,0,208,'208 631v-30h-193c-8 0 -15 7 -15 15s7 15 15 15h193'], + 0xE00C: [631,-601,139,0,139,'139 631v-30h-139v30h139'], + 0xE00D: [711,-601,208,0,208,'208 616c0 -8 -7 -15 -15 -15h-193v30h134c-19 16 -34 36 -45 59c-1 2 -1 4 -1 6c0 8 7 15 15 15c6 0 11 -4 14 -9c15 -34 45 -60 80 -72c7 -2 11 -7 11 -14'], + 0xE00E: [711,-521,205,0,205,'205 601h-131c19 -16 34 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -7 -15 -15 -15c-6 0 -11 4 -14 9c-15 34 -45 60 -81 72c-6 2 -10 7 -10 14s4 12 10 14c36 12 66 38 81 72c3 5 8 9 14 9c8 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-11 -23 -26 -43 -45 -59h131v-30'], + 0xE00F: [631,-601,137,0,137,'137 631v-30h-137v30h137'], + 0xE010: [631,-601,205,0,205,'205 616c0 -8 -6 -15 -15 -15h-190v30h190c9 0 15 -7 15 -15'], + 0xE011: [631,-601,205,0,205,'205 601h-190c-8 0 -15 7 -15 15s7 15 15 15h190v-30'], + 0xE012: [631,-601,137,0,137,'137 601h-137v30h137v-30'], + 0xE013: [711,-521,205,0,205,'205 616c0 -7 -4 -12 -10 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -14 -9c-8 0 -15 7 -15 15c0 2 1 4 2 6c10 23 26 43 45 59h-132v30h132c-19 16 -35 36 -45 59c-1 2 -2 4 -2 6c0 8 7 15 15 15c7 0 12 -4 14 -9c16 -34 45 -60 81 -72c6 -2 10 -7 10 -14'], + 0xE014: [711,-521,226,0,226,'226 601h-152c19 -16 34 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -7 -15 -15 -15c-6 0 -11 4 -14 9c-15 34 -45 60 -81 72c-6 2 -10 7 -10 14s4 12 10 14c36 12 66 38 81 72c3 5 8 9 14 9c8 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-11 -23 -26 -43 -45 -59h152v-30'], + 0xE015: [631,-601,151,0,151,'151 601h-151v30h151v-30'], + 0xE016: [711,-521,226,0,226,'226 616c0 -7 -5 -12 -11 -14c-36 -12 -65 -38 -80 -72c-3 -5 -8 -9 -14 -9c-8 0 -15 7 -15 15c0 2 0 4 1 6c11 23 26 43 45 59h-152v30h152c-19 16 -34 36 -45 59c-1 2 -1 4 -1 6c0 8 7 15 15 15c6 0 11 -4 14 -9c15 -34 44 -60 80 -72c6 -2 11 -7 11 -14'], + 0xE017: [-171,201,208,0,208,'208 -201h-193c-8 0 -15 7 -15 15s7 15 15 15h193v-30'], + 0xE018: [-171,201,139,0,139,'139 -201h-139v30h139v-30'], + 0xE019: [-171,281,208,0,208,'208 -186c0 -7 -4 -12 -11 -14c-35 -12 -65 -38 -80 -72c-3 -5 -8 -9 -14 -9c-8 0 -15 7 -15 15c0 2 0 4 1 6c11 23 26 43 45 59h-134v30h193c8 0 15 -7 15 -15'], + 0xE01A: [-171,281,208,0,208,'208 -201h-134c19 -16 34 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -7 -15 -15 -15c-6 0 -11 4 -14 9c-15 34 -45 60 -81 72c-6 2 -10 7 -10 14c0 8 7 15 15 15h193v-30'], + 0xE01B: [-171,201,139,0,139,'139 -171v-30h-139v30h139'], + 0xE01C: [-171,201,208,0,208,'208 -186c0 -8 -7 -15 -15 -15h-193v30h193c8 0 15 -7 15 -15'], + 0xE01D: [-91,281,205,0,205,'205 -201h-131c19 -16 34 -36 45 -59c1 -2 1 -4 1 -6c0 -8 -7 -15 -15 -15c-6 0 -11 4 -14 9c-15 34 -45 60 -81 72c-6 2 -10 7 -10 14s4 12 10 14c36 12 66 38 81 72c3 5 8 9 14 9c8 0 15 -7 15 -15c0 -2 0 -4 -1 -6c-11 -23 -26 -43 -45 -59h131v-30'], + 0xE01E: [-171,201,137,0,137,'137 -171v-30h-137v30h137'], + 0xE01F: [-171,201,205,0,205,'205 -186c0 -8 -6 -15 -15 -15h-190v30h190c9 0 15 -7 15 -15'], + 0xE020: [-171,201,205,0,205,'205 -201h-190c-8 0 -15 7 -15 15s7 15 15 15h190v-30'], + 0xE021: [-171,201,137,0,137,'137 -201h-137v30h137v-30'], + 0xE022: [-91,281,205,0,205,'205 -186c0 -7 -4 -12 -10 -14c-36 -12 -65 -38 -81 -72c-2 -5 -7 -9 -14 -9c-8 0 -15 7 -15 15c0 2 1 4 2 6c10 23 26 43 45 59h-132v30h132c-19 16 -35 36 -45 59c-1 2 -2 4 -2 6c0 8 7 15 15 15c7 0 12 -4 14 -9c16 -34 45 -60 81 -72c6 -2 10 -7 10 -14'], + 0xE023: [510,10,507,0,507,'507 230h-408c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h408v-40'], + 0xE024: [270,-230,337,0,337,'337 230h-337v40h337v-40'], + 0xE025: [270,-230,507,0,507,'507 250c0 -11 -9 -20 -20 -20h-487v40h487c11 0 20 -9 20 -20'], + 0xE026: [270,-230,507,0,507,'507 230h-487c-11 0 -20 9 -20 20s9 20 20 20h487v-40'], + 0xE027: [270,-230,337,0,337,'337 230h-337v40h337v-40'], + 0xE028: [510,10,507,0,507,'507 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-408v40h408c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4 c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0xE029: [506,0,500,230,270,'270 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v486h40v-486'], + 0xE02A: [337,0,500,230,270,'270 337v-337h-40v337h40'], + 0xE02B: [505,0,500,20,480,'480 267c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-390h-40v390c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141 c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0xE02C: [505,0,500,20,480,'480 238c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65 v390h40v-390c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0xE02D: [337,0,500,230,270,'270 337v-337h-40v337h40'], + 0xE02E: [506,0,500,230,270,'270 0h-40v486c0 11 9 20 20 20s20 -9 20 -20v-486'], + 0xE02F: [510,10,386,0,386,'386 230h-287c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h287v-40'], + 0xE030: [270,-230,97,0,97,'97 230h-97v40h97v-40'], + 0xE031: [510,10,386,0,386,'386 230h-179l-83 -227c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l78 213h-164v40h179l82 227c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-78 -213h165v-40'], + 0xE032: [270,-230,386,0,386,'386 250c0 -11 -9 -20 -20 -20h-366v40h366c11 0 20 -9 20 -20'], + 0xE033: [270,-230,386,0,386,'386 270v-40h-366c-11 0 -20 9 -20 20s9 20 20 20h366'], + 0xE034: [270,-230,96,0,96,'96 270v-40h-96v40h96'], + 0xE035: [510,10,386,0,386,'386 230h-179l-82 -227c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l78 213h-165v40h179l83 227c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -1 -7l-78 -213h164v-40'], + 0xE036: [510,10,386,0,386,'386 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-287v40h287c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4 c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0xE037: [510,10,499,0,499,'499 270v-40h-400c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h400'], + 0xE038: [270,-230,332,0,332,'332 230h-332v40h332v-40'], + 0xE039: [510,10,499,0,499,'499 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-400v40h400c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4 c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0xE03A: [380,0,572,56,516,'516 238c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65 v265h40v-265c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0xE03B: [254,0,572,266,306,'306 0h-40v254h40v-254'], + 0xE03C: [380,0,572,56,516,'516 142c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-265h-40v265c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141 c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0xE03D: [510,10,380,0,380,'380 270v-40h-281c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h281'], + 0xE03E: [270,-230,95,0,95,'95 270v-40h-95v40h95'], + 0xE03F: [510,10,380,0,380,'380 230h-176l-83 -227c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l78 213h-161v40h176l82 227c3 8 11 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-78 -213h162v-40'], + 0xE040: [510,10,380,0,380,'380 250c0 -6 -4 -11 -10 -13c-56 -19 -100 -59 -136 -104c-29 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 0 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-281v40h281c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c-1 1 -1 3 -1 4 c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 29 -91 58 -127c36 -45 80 -85 136 -104c6 -2 10 -7 10 -13'], + 0xE041: [510,10,507,0,507,'507 230h-268c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-31 40 -70 76 -117 97h-69c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16 c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h69c47 21 86 57 117 97c29 36 49 80 59 127 c2 9 10 16 19 16c11 0 20 -9 20 -20v-4c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h268v-40'], + 0xE042: [270,-230,337,0,337,'337 270v-40h-337v40h337'], + 0xE043: [270,-230,507,0,507,'507 250c0 -11 -9 -20 -20 -20h-487v40h487c11 0 20 -9 20 -20'], + 0xE044: [270,-230,507,0,507,'507 270v-40h-487c-11 0 -20 9 -20 20s9 20 20 20h487'], + 0xE045: [270,-230,337,0,337,'337 270v-40h-337v40h337'], + 0xE046: [510,10,507,0,507,'507 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-69c-48 -21 -86 -57 -118 -97c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16 c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-268v40h268c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c32 -40 70 -76 118 -97h69c-30 20 -56 44 -78 72 c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0xE047: [506,0,572,266,306,'306 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v486h40v-486'], + 0xE048: [337,0,572,266,306,'306 337v-337h-40v337h40'], + 0xE049: [505,0,572,56,516,'516 117c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-240h-40v240c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c34 33 64 71 80 117v69 c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19c0 -11 -9 -20 -20 -20 c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-69c16 -46 46 -84 80 -117c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0xE04A: [505,0,572,56,516,'516 238c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v69 c-16 46 -46 84 -80 117c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v240h40v-240c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20c0 -9 -6 -16 -14 -19 c-44 -13 -84 -37 -116 -68c-34 -33 -64 -71 -80 -117v-69c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0xE04B: [337,0,572,266,306,'306 337v-337h-40v337h40'], + 0xE04C: [506,0,572,266,306,'306 0h-40v486c0 11 9 20 20 20s20 -9 20 -20v-486'], + 0xE04D: [510,10,580,0,580,'580 270v-40h-481c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h481'], + 0xE04E: [270,-230,386,0,386,'386 270v-40h-386v40h386'], + 0xE04F: [510,10,580,0,580,'580 10c0 -11 -9 -20 -20 -20c-10 0 -18 7 -19 16c-21 104 -95 189 -194 224h-347v40h347c99 35 173 120 194 224c1 9 9 16 19 16c11 0 20 -9 20 -20v-4c-21 -103 -87 -189 -179 -236c92 -47 158 -133 179 -236v-4'], + 0xE050: [510,10,580,0,580,'580 270v-40h-347c-99 -35 -173 -120 -193 -224c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20v4c21 103 87 189 179 236c-92 47 -158 133 -179 236v4c0 11 9 20 20 20c10 0 18 -7 20 -16c20 -104 94 -189 193 -224h347'], + 0xE051: [270,-230,386,0,386,'386 270v-40h-386v40h386'], + 0xE052: [510,10,580,0,580,'580 250c0 -6 -4 -11 -9 -13c-56 -19 -101 -59 -136 -104c-29 -36 -49 -80 -59 -127c-1 -9 -9 -16 -19 -16c-11 0 -20 9 -20 20v4c11 53 34 102 66 144c22 28 49 52 79 72h-482v40h482c-30 20 -57 44 -79 72c-32 42 -55 91 -66 144v4c0 11 9 20 20 20c10 0 18 -7 19 -16 c10 -47 30 -91 59 -127c35 -45 80 -85 136 -104c5 -2 9 -7 9 -13'], + 0xE053: [510,10,499,0,499,'499 270v-40h-400c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h400'], + 0xE054: [270,-230,333,0,333,'333 270v-40h-333v40h333'], + 0xE055: [510,10,499,0,499,'499 10c0 -27 -40 -27 -40 0v220h-459v40h459v220c0 27 40 27 40 0v-480'], + 0xE056: [510,10,499,0,499,'499 230h-459v-220c0 -27 -40 -27 -40 0v480c0 27 40 27 40 0v-220h459v-40'], + 0xE057: [270,-230,333,0,333,'333 270v-40h-333v40h333'], + 0xE058: [510,10,499,0,499,'499 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-400v40h400c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4 c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0xE059: [498,0,632,55,576,'556 0h-480c-27 0 -27 40 0 40h220v458h40v-458h220c27 0 27 -40 0 -40'], + 0xE05A: [332,0,632,296,336,'336 0h-40v332h40v-332'], + 0xE05B: [498,0,632,86,546,'546 260c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-383h-40v383c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141 c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0xE05C: [498,0,632,86,546,'546 238c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65 v383h40v-383c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0xE05D: [332,0,632,296,336,'336 0h-40v332h40v-332'], + 0xE05E: [498,0,632,55,576,'556 458h-220v-458h-40v458h-220c-27 0 -27 40 0 40h480c27 0 27 -40 0 -40'], + 0xE05F: [550,-230,507,0,507,'507 270v-40h-347c-88 0 -160 72 -160 160s72 160 160 160h40c11 0 20 -9 20 -20s-9 -20 -20 -20h-40c-66 0 -120 -54 -120 -120s54 -120 120 -120h347'], + 0xE060: [270,-230,337,0,337,'337 270v-40h-337v40h337'], + 0xE061: [510,10,507,0,507,'507 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-408v40h408c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4 c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0xE062: [510,10,507,0,507,'507 230h-408c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h408v-40'], + 0xE063: [270,-230,337,0,337,'337 230h-337v40h337v-40'], + 0xE064: [550,-230,507,0,507,'507 390c0 -88 -72 -160 -160 -160h-347v40h347c66 0 120 54 120 120s-54 120 -120 120h-40c-11 0 -20 9 -20 20s9 20 20 20h40c88 0 160 -72 160 -160'], + 0xE065: [550,50,507,0,507,'507 230h-187v-260c0 -11 -9 -20 -20 -20s-20 9 -20 20v260h-120c-88 0 -160 72 -160 160s72 160 160 160s160 -72 160 -160v-120h187v-40zM280 390c0 66 -54 120 -120 120s-120 -54 -120 -120s54 -120 120 -120h120v120'], + 0xE066: [270,-230,337,0,337,'337 230h-337v40h337v-40'], + 0xE067: [510,10,507,0,507,'507 250c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-408v40h408c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4 c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0xE068: [510,10,507,0,507,'507 270v-40h-408c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144v-4c0 -11 -9 -20 -20 -20c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -20v-4 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h408'], + 0xE069: [270,-230,337,0,337,'337 230h-337v40h337v-40'], + 0xE06A: [550,50,507,0,507,'507 390c0 -88 -72 -160 -160 -160h-120v-260c0 -11 -9 -20 -20 -20s-20 9 -20 20v260h-187v40h187v120c0 88 71 160 160 160c88 0 160 -72 160 -160zM467 390c0 66 -54 120 -120 120s-120 -54 -120 -120v-120h120c66 0 120 54 120 120'], + 0xE06B: [503,-230,513,0,513,'513 270v-40h-499c-8 0 -14 6 -14 13c0 6 3 10 8 12c48 23 86 60 121 99c34 39 60 85 75 135c3 8 10 14 19 14c11 0 20 -9 20 -20c0 -2 0 -4 -1 -6c-17 -55 -45 -106 -83 -149c-20 -23 -43 -42 -68 -58h422'], + 0xE06C: [270,-230,341,0,341,'341 270v-40h-341v40h341'], + 0xE06D: [270,-230,512,0,512,'512 250c0 -11 -9 -20 -20 -20h-492v40h492c11 0 20 -9 20 -20'], + 0xE06E: [270,-230,512,0,512,'512 230h-492c-11 0 -20 9 -20 20s9 20 20 20h492v-40'], + 0xE06F: [270,-230,341,0,341,'341 270v-40h-341v40h341'], + 0xE070: [503,-230,513,0,513,'513 243c0 -7 -6 -13 -14 -13h-499v40h422c-25 16 -49 35 -68 58c-38 43 -67 94 -84 149c0 2 -1 4 -1 6c0 11 9 20 20 20c9 0 17 -6 19 -14c16 -50 42 -96 76 -135s72 -76 121 -99c4 -2 8 -6 8 -12'], + 0xE071: [270,3,512,0,512,'512 270v-40h-421c25 -16 48 -35 68 -58c38 -43 66 -94 83 -149c1 -2 1 -4 1 -6c0 -11 -9 -20 -20 -20c-9 0 -16 6 -19 14c-15 50 -41 96 -75 135c-35 39 -73 76 -121 99c-5 2 -8 6 -8 12c0 7 6 13 13 13h499'], + 0xE072: [270,-230,341,0,341,'341 270v-40h-341v40h341'], + 0xE073: [270,-230,513,0,513,'513 250c0 -11 -9 -20 -20 -20h-493v40h493c11 0 20 -9 20 -20'], + 0xE074: [270,-230,512,0,512,'512 270v-40h-492c-11 0 -20 9 -20 20s9 20 20 20h492'], + 0xE075: [270,-230,341,0,341,'341 230h-341v40h341v-40'], + 0xE076: [270,3,513,0,513,'513 257c0 -6 -4 -10 -8 -12c-49 -23 -87 -60 -121 -99s-60 -85 -76 -135c-2 -8 -10 -14 -19 -14c-11 0 -20 9 -20 20c0 2 1 4 1 6c17 55 46 106 84 149c19 23 43 42 68 58h-422v40h499c8 0 14 -6 14 -13'], + 0xE077: [512,0,441,112,152,'152 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v492h40v-492'], + 0xE078: [341,0,441,112,152,'152 0h-40v341h40v-341'], + 0xE079: [513,0,441,112,385,'385 289c0 -11 -9 -20 -20 -20c-2 0 -4 1 -6 1c-55 17 -106 46 -149 84c-23 19 -42 43 -58 68v-422h-40v499c0 8 6 14 13 14c6 0 10 -4 12 -8c23 -49 60 -87 99 -121s85 -60 135 -76c8 -2 14 -10 14 -19'], + 0xE07A: [513,0,441,112,385,'385 223c0 -9 -6 -16 -14 -19c-50 -15 -96 -41 -135 -75c-39 -35 -76 -73 -99 -121c-2 -5 -6 -8 -12 -8c-7 0 -13 6 -13 14v499h40v-422c16 25 35 48 58 68c43 38 94 66 149 83c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0xE07B: [341,0,441,112,152,'152 341v-341h-40v341h40'], + 0xE07C: [512,0,441,112,152,'152 492v-492h-40v492c0 11 9 20 20 20s20 -9 20 -20'], + 0xE07D: [512,0,441,289,329,'329 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v492h40v-492'], + 0xE07E: [341,0,441,289,329,'329 0h-40v341h40v-341'], + 0xE07F: [513,0,441,56,329,'329 0h-40v422c-16 -25 -35 -49 -58 -68c-43 -38 -93 -67 -149 -84c-2 0 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 17 14 19c50 16 96 42 135 76s77 72 99 121c2 4 7 8 12 8c7 0 13 -6 13 -14v-499'], + 0xE080: [513,0,441,56,329,'329 13c0 -7 -6 -13 -13 -13c-5 0 -10 3 -12 8c-22 48 -60 86 -99 121c-39 34 -85 60 -135 75c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c56 -17 106 -45 149 -83c23 -20 42 -43 58 -68v422h40v-500'], + 0xE081: [341,0,441,289,329,'329 341v-341h-40v341h40'], + 0xE082: [512,0,441,289,329,'329 0h-40v492c0 11 9 20 20 20s20 -9 20 -20v-492'], + 0xE083: [432,172,515,0,515,'515 108v-40h-395c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13c57 19 101 59 137 104c28 36 49 80 58 127c2 9 10 16 20 16 c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h395zM515 432v-40h-495c-11 0 -20 9 -20 20s9 20 20 20h495'], + 0xE084: [432,-68,343,0,343,'343 68h-343v40h343v-40zM343 432v-40h-343v40h343'], + 0xE085: [672,-68,514,0,514,'514 88c0 -11 -9 -20 -20 -20h-494v40h494c11 0 20 -9 20 -20zM493 412c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-394v40h394 c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0xE086: [672,-68,514,0,514,'514 68h-494c-11 0 -20 9 -20 20s9 20 20 20h494v-40zM514 432v-40h-394c30 -20 56 -44 78 -72c33 -42 56 -91 66 -144c0 -1 1 -3 1 -4c0 -11 -9 -20 -20 -20c-10 0 -18 7 -20 16c-9 47 -30 91 -58 127c-36 45 -80 85 -137 104c-5 2 -9 7 -9 13s4 11 9 13 c57 19 101 59 137 104c28 36 49 80 58 127c2 9 10 16 20 16c11 0 20 -9 20 -20c0 -1 -1 -3 -1 -4c-10 -53 -33 -102 -66 -144c-22 -28 -48 -52 -78 -72h394'], + 0xE087: [432,-68,343,0,343,'343 68h-343v40h343v-40zM343 392h-343v40h343v-40'], + 0xE088: [432,172,515,0,515,'494 88c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -20 20c0 1 1 3 1 4c10 53 33 102 66 144c22 28 48 52 78 72h-395v40h395c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c0 1 -1 3 -1 4 c0 11 9 20 20 20c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13zM515 412c0 -11 -9 -20 -20 -20h-495v40h495c11 0 20 -9 20 -20'], + 0xE089: [515,0,896,266,840,'306 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v495h40v-495zM840 262c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20 c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v376h40v-376c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0xE08A: [343,0,896,266,630,'306 0h-40v343h40v-343zM630 343v-343h-40v343h40'], + 0xE08B: [514,0,896,56,630,'516 252c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-375h-40v375c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141 c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19zM630 0h-40v494c0 11 9 20 20 20s20 -9 20 -20v-494'], + 0xE08C: [514,0,896,56,630,'516 262c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65 v375h40v-375c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20zM630 514v-494c0 -11 -9 -20 -20 -20s-20 9 -20 20v494h40'], + 0xE08D: [343,0,896,266,630,'306 0h-40v343h40v-343zM630 0h-40v343h40v-343'], + 0xE08E: [515,0,896,266,840,'306 0h-40v495c0 11 9 20 20 20s20 -9 20 -20v-495zM840 253c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-376h-40v376c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19 c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0xE08F: [750,250,507,0,507,'507 -10h-408c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144c0 -15 -9 -24 -20 -24c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c28 35 48 77 58 123c-10 46 -30 88 -58 123c-35 45 -80 85 -136 104 c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -24c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h408v-40h-408c29 -20 56 -44 78 -72c32 -42 55 -91 66 -148c-11 -57 -34 -106 -66 -148 c-22 -28 -49 -52 -78 -72h408v-40'], + 0xE090: [510,10,337,0,337,'337 -10h-337v40h337v-40zM337 470h-337v40h337v-40'], + 0xE091: [510,10,507,0,507,'507 10c0 -11 -9 -20 -20 -20h-487v40h487c11 0 20 -9 20 -20zM507 490c0 -11 -9 -20 -20 -20h-487v40h487c11 0 20 -9 20 -20'], + 0xE092: [510,10,507,0,507,'507 470h-487c-11 0 -20 9 -20 20s9 20 20 20h487v-40zM507 -10h-487c-11 0 -20 9 -20 20s9 20 20 20h487v-40'], + 0xE093: [510,10,337,0,337,'337 510v-40h-337v40h337zM337 30v-40h-337v40h337'], + 0xE094: [750,250,507,0,507,'507 10c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -19 24c10 53 33 102 66 144c22 28 48 52 78 72h-408v40h408c-30 20 -56 44 -78 72c-33 42 -56 91 -66 148c10 57 33 106 66 148c22 28 48 52 78 72 h-408v40h408c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c-1 15 8 24 19 24c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13s-4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -35 -47 -77 -57 -123c10 -46 29 -88 57 -123 c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13'], + 0xE095: [506,0,992,266,726,'306 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v486h40v-486zM726 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v486h40v-486'], + 0xE096: [337,0,992,266,726,'306 337v-337h-40v337h40zM726 337v-337h-40v337h40'], + 0xE097: [505,0,992,56,936,'936 267c0 -11 -9 -20 -20 -20c-2 0 -4 0 -6 1c-50 15 -95 42 -132 77c-20 20 -37 42 -52 65v-390h-40v390c-15 -23 -32 -45 -52 -65c-37 -35 -82 -62 -138 -78c-56 16 -101 43 -138 78c-20 20 -37 42 -52 65v-390h-40v390c-15 -23 -32 -45 -52 -65 c-37 -35 -82 -62 -132 -77c-2 -1 -4 -1 -6 -1c-11 0 -20 9 -20 20c0 9 6 16 14 19c44 13 84 37 116 68c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10c13 -56 47 -102 87 -141c31 -30 68 -53 110 -66c42 13 79 36 110 66c40 39 74 85 87 141c1 6 7 10 13 10s12 -4 13 -10 c13 -56 47 -102 87 -141c32 -31 72 -55 116 -68c8 -3 14 -10 14 -19'], + 0xE098: [505,0,992,56,936,'936 238c0 -9 -6 -16 -14 -19c-44 -13 -84 -37 -116 -68c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10c-13 56 -47 102 -87 141c-31 30 -68 53 -110 66c-42 -13 -79 -36 -110 -66c-40 -39 -74 -85 -87 -141c-1 -6 -7 -10 -13 -10s-12 4 -13 10 c-13 56 -47 102 -87 141c-32 31 -72 55 -116 68c-8 3 -14 10 -14 19c0 11 9 20 20 20c2 0 4 0 6 -1c50 -15 95 -42 132 -77c20 -20 37 -42 52 -65v390h40v-390c15 23 32 45 52 65c37 35 82 62 138 78c56 -16 101 -43 138 -78c20 -20 37 -42 52 -65v390h40v-390 c15 23 32 45 52 65c37 35 82 62 132 77c2 1 4 1 6 1c11 0 20 -9 20 -20'], + 0xE099: [337,0,992,266,726,'726 0h-40v337h40v-337zM306 337v-337h-40v337h40'], + 0xE09A: [506,0,992,266,726,'726 0h-40v486c0 11 9 20 20 20s20 -9 20 -20v-486zM306 0h-40v486c0 11 9 20 20 20s20 -9 20 -20v-486'], + 0xE09B: [750,250,507,0,507,'507 710h-487c-11 0 -20 9 -20 20s9 20 20 20h487v-40zM507 230h-487c-11 0 -20 9 -20 20s9 20 20 20h487v-40zM507 -250h-487c-11 0 -20 9 -20 20s9 20 20 20h487v-40'], + 0xE09C: [750,250,337,0,337,'337 750v-40h-337v40h337zM337 270v-40h-337v40h337zM337 -210v-40h-337v40h337'], + 0xE09D: [990,490,507,0,507,'507 -230c0 -6 -4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -36 -49 -80 -58 -127c-2 -9 -10 -16 -20 -16c-11 0 -20 9 -19 24c10 53 33 102 66 144c22 28 48 52 78 72h-408v40h408c-30 20 -56 44 -78 72c-33 42 -56 91 -66 148c10 57 33 106 66 148 c22 28 48 52 78 72h-408v40h408c-30 20 -56 44 -78 72c-33 42 -56 91 -66 148c10 57 33 106 66 148c22 28 48 52 78 72h-408v40h408c-30 20 -56 44 -78 72c-33 42 -56 91 -66 144c-1 15 8 24 19 24c10 0 18 -7 20 -16c9 -47 30 -91 58 -127c36 -45 80 -85 137 -104 c5 -2 9 -7 9 -13s-4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -35 -48 -77 -57 -123c9 -46 29 -88 57 -123c36 -45 80 -85 137 -104c5 -2 9 -7 9 -13s-4 -11 -9 -13c-57 -19 -101 -59 -137 -104c-28 -35 -48 -77 -57 -123c9 -46 29 -88 57 -123c36 -45 80 -85 137 -104 c5 -2 9 -7 9 -13'], + 0xE09E: [990,490,507,0,507,'507 -250h-408c29 -20 56 -44 78 -72c32 -42 55 -91 66 -144c0 -15 -9 -24 -20 -24c-9 0 -17 7 -19 16c-10 47 -30 91 -59 127c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c28 35 48 77 58 123c-10 46 -30 88 -58 123 c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c28 35 48 77 58 123c-10 46 -30 88 -58 123c-35 45 -80 85 -136 104c-5 2 -9 7 -9 13s4 11 9 13c56 19 101 59 136 104c29 36 49 80 59 127c2 9 10 16 19 16c11 0 20 -9 20 -24 c-11 -53 -34 -102 -66 -144c-22 -28 -49 -52 -78 -72h408v-40h-408c29 -20 56 -44 78 -72c32 -42 55 -91 66 -148c-11 -57 -34 -106 -66 -148c-22 -28 -49 -52 -78 -72h408v-40h-408c29 -20 56 -44 78 -72c32 -42 55 -91 66 -148c-11 -57 -34 -106 -66 -148 c-22 -28 -49 -52 -78 -72h408v-40'], + 0xE09F: [750,250,337,0,337,'337 -210v-40h-337v40h337zM337 270v-40h-337v40h337zM337 750v-40h-337v40h337'], + 0xE0A0: [750,250,507,0,507,'507 -230c0 -11 -9 -20 -20 -20h-487v40h487c11 0 20 -9 20 -20zM507 250c0 -11 -9 -20 -20 -20h-487v40h487c11 0 20 -9 20 -20zM507 730c0 -11 -9 -20 -20 -20h-487v40h487c11 0 20 -9 20 -20'], + 0xE0A1: [600,-133,515,0,515,'515 173v-40h-495c-11 0 -20 9 -20 20s9 20 20 20h495zM515 367v-40h-495c-8 0 -14 6 -14 13c0 6 4 10 8 12c49 23 87 60 121 99s60 85 76 135c2 8 10 14 19 14c11 0 20 -9 20 -20c0 -2 -1 -4 -1 -6c-17 -55 -46 -106 -84 -149c-19 -23 -43 -42 -68 -58h418'], + 0xE0A2: [367,-133,343,0,343,'343 133h-343v40h343v-40zM343 327h-343v40h343v-40'], + 0xE0A3: [367,100,514,0,514,'508 160c0 -6 -4 -10 -8 -12c-49 -23 -87 -60 -121 -99s-60 -85 -76 -135c-2 -8 -10 -14 -19 -14c-11 0 -20 9 -20 20c0 2 1 4 1 6c17 55 46 106 84 149c19 23 43 42 68 58h-417v40h494c8 0 14 -6 14 -13zM514 347c0 -11 -9 -20 -20 -20h-494v40h494c11 0 20 -9 20 -20'], + 0xE0A4: [367,100,514,0,514,'514 133h-417c25 -16 49 -35 68 -58c38 -43 67 -94 84 -149c0 -2 1 -4 1 -6c0 -11 -9 -20 -20 -20c-9 0 -17 6 -19 14c-16 50 -42 96 -76 135s-72 76 -121 99c-4 2 -8 6 -8 12c0 7 6 13 14 13h494v-40zM514 367v-40h-494c-11 0 -20 9 -20 20s9 20 20 20h494'], + 0xE0A5: [367,-133,343,0,343,'343 173v-40h-343v40h343zM343 367v-40h-343v40h343'], + 0xE0A6: [600,-133,515,0,515,'515 153c0 -11 -9 -20 -20 -20h-495v40h495c11 0 20 -9 20 -20zM509 340c0 -7 -6 -13 -14 -13h-495v40h418c-25 16 -49 35 -68 58c-38 43 -67 94 -84 149c0 2 -1 4 -1 6c0 11 9 20 20 20c9 0 17 -6 19 -14c16 -50 42 -96 76 -135s72 -76 121 -99c4 -2 8 -6 8 -12'], + 0xE0A7: [520,20,504,0,504,'504 133h-252c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11c11 0 20 -9 20 -20 c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h252v-40h-296c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h296v-40'], + 0xE0A8: [367,-133,336,0,336,'336 133h-336v40h336v-40zM336 327h-336v40h336v-40'], + 0xE0A9: [367,-133,505,0,505,'505 153c0 -11 -9 -20 -20 -20h-485v40h485c11 0 20 -9 20 -20zM505 347c0 -11 -9 -20 -20 -20h-485v40h485c11 0 20 -9 20 -20'], + 0xE0AA: [367,-133,505,0,505,'505 327h-485c-11 0 -20 9 -20 20s9 20 20 20h485v-40zM505 133h-485c-11 0 -20 9 -20 20s9 20 20 20h485v-40'], + 0xE0AB: [367,-133,336,0,336,'336 367v-40h-336v40h336zM336 133h-336v40h336v-40'], + 0xE0AC: [520,20,504,0,504,'504 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-252v40h296c40 32 84 58 132 77c-48 19 -92 45 -132 77h-296v40h252c-35 36 -65 78 -89 124 c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13'], + 0xE0AD: [505,0,652,209,443,'249 505v-485c0 -11 -9 -20 -20 -20s-20 9 -20 20v485h40zM443 505v-485c0 -11 -9 -20 -20 -20s-20 9 -20 20v485h40'], + 0xE0AE: [336,0,652,209,443,'249 0h-40v336h40v-336zM443 0h-40v336h40v-336'], + 0xE0AF: [504,0,652,56,596,'596 181c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2c-46 24 -88 54 -124 89v-252h-40v296c-32 40 -58 84 -77 132c-19 -48 -45 -92 -77 -132v-296h-40v252c-36 -35 -78 -65 -124 -89c-3 -1 -6 -2 -9 -2c-11 0 -20 9 -20 20c0 8 4 15 11 18c53 27 100 64 139 108 c47 54 88 116 107 188c2 5 7 9 13 9s11 -4 13 -9c19 -72 60 -134 107 -188c39 -44 86 -81 139 -108c7 -3 11 -10 11 -18'], + 0xE0B0: [504,0,652,56,596,'596 323c0 -8 -4 -15 -11 -18c-53 -27 -100 -64 -139 -108c-47 -54 -88 -116 -107 -188c-2 -5 -7 -9 -13 -9s-11 4 -13 9c-19 72 -60 134 -107 188c-39 44 -86 81 -139 108c-7 3 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2c46 -24 88 -54 124 -89v252h40v-296 c32 -40 58 -84 77 -132c19 48 45 92 77 132v296h40v-252c36 35 78 65 124 89c3 1 6 2 9 2c11 0 20 -9 20 -20'], + 0xE0B1: [336,0,652,209,443,'443 0h-40v336h40v-336zM249 0h-40v336h40v-336'], + 0xE0B2: [505,0,652,209,443,'443 485v-485h-40v485c0 11 9 20 20 20s20 -9 20 -20zM249 0h-40v485c0 11 9 20 20 20s20 -9 20 -20v-485'], + 0xE0B3: [520,20,533,0,533,'533 367v-40h-325c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h325v-40h-281c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107 c44 39 81 86 109 139c3 7 10 11 17 11c11 0 20 -9 20 -20c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h281'], + 0xE0B4: [367,-133,356,0,356,'356 367v-40h-356v40h356zM356 133h-356v40h356v-40'], + 0xE0B5: [520,20,533,0,533,'533 250c0 -6 -4 -11 -10 -13c-71 -19 -133 -60 -187 -107c-44 -39 -81 -86 -108 -139c-4 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-281v40h325c40 32 84 58 131 77c-47 19 -91 45 -131 77h-325v40h281c-35 36 -65 78 -89 124 c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 14 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 187 -107c6 -2 10 -7 10 -13'], + 0xE0B6: [533,0,652,56,596,'596 323c0 -8 -4 -14 -11 -18c-53 -27 -100 -64 -139 -108c-47 -54 -88 -116 -107 -187c-2 -6 -7 -10 -13 -10s-11 4 -13 10c-19 71 -60 133 -107 187c-39 44 -86 81 -139 108c-7 4 -11 10 -11 18c0 11 9 20 20 20c3 0 6 -1 9 -2c46 -24 88 -54 124 -89v281h40v-325 c32 -39 58 -84 77 -131c19 47 45 92 77 131v325h40v-281c36 35 78 65 124 89c3 1 6 2 9 2c11 0 20 -9 20 -20'], + 0xE0B7: [356,0,652,209,443,'249 356v-356h-40v356h40zM443 0h-40v356h40v-356'], + 0xE0B8: [533,0,652,56,596,'596 210c0 -11 -9 -20 -20 -20c-3 0 -6 1 -9 2c-46 24 -88 54 -124 89v-281h-40v325c-32 39 -58 84 -77 131c-19 -47 -45 -92 -77 -131v-325h-40v281c-36 -35 -78 -65 -124 -89c-3 -1 -6 -2 -9 -2c-11 0 -20 9 -20 20c0 8 4 14 11 18c53 27 100 64 139 108 c47 54 88 116 107 187c2 6 7 10 13 10s11 -4 13 -10c19 -71 60 -133 107 -187c39 -44 86 -81 139 -108c7 -4 11 -10 11 -18'], + 0xE0B9: [520,20,384,0,384,'384 133h-132c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11c11 0 20 -9 20 -20 c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h132v-40h-176c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h176v-40'], + 0xE0BA: [367,-133,97,0,97,'97 367v-40h-97v40h97zM97 133h-97v40h97v-40'], + 0xE0BB: [520,20,384,0,384,'384 173v-40h-214l-50 -140c-3 -8 -11 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l46 126h-128v40h142l56 154h-198v40h213l51 140c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -1 -7l-46 -126h128v-40h-143l-56 -154h199'], + 0xE0BC: [367,-133,384,0,384,'384 153c0 -11 -8 -20 -20 -20h-364v40h364c12 0 20 -9 20 -20zM384 347c0 -11 -8 -20 -20 -20h-364v40h364c12 0 20 -9 20 -20'], + 0xE0BD: [367,-133,384,0,384,'384 367v-40h-364c-11 0 -20 9 -20 20s9 20 20 20h364zM384 173v-40h-364c-11 0 -20 9 -20 20s9 20 20 20h364'], + 0xE0BE: [367,-133,97,0,97,'97 367v-40h-97v40h97zM97 133h-97v40h97v-40'], + 0xE0BF: [520,20,384,0,384,'384 367v-40h-143l-56 -154h199v-40h-214l-50 -140c-3 -8 -11 -13 -19 -13c-11 0 -20 9 -20 20c0 2 0 5 1 7l46 126h-128v40h142l56 154h-198v40h213l51 140c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 -1 -5 -1 -7l-46 -126h128'], + 0xE0C0: [520,20,384,0,384,'384 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-132v40h176c40 32 84 58 132 77c-48 19 -92 45 -132 77h-176v40h132c-35 36 -65 78 -89 124 c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13'], + 0xE0C1: [520,20,406,0,406,'406 367v-40h-198c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h198v-40h-154c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107 c44 39 81 86 109 139c3 7 10 11 17 11c11 0 20 -9 20 -20c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h154'], + 0xE0C2: [367,-133,102,0,102,'102 367v-40h-102v40h102zM102 133h-102v40h102v-40'], + 0xE0C3: [520,20,406,0,406,'406 173v-40h-224l-51 -140c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20c0 2 1 5 1 7l46 126h-139v40h154l56 154h-210v40h224l51 140c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -2 0 -5 -1 -7l-46 -126h139v-40h-154l-56 -154h210'], + 0xE0C4: [520,20,406,0,406,'406 250c0 -6 -4 -11 -10 -13c-71 -19 -133 -60 -187 -107c-44 -39 -81 -86 -108 -139c-4 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-154v40h198c40 32 84 58 131 77c-47 19 -91 45 -131 77h-198v40h154c-35 36 -65 78 -89 124 c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 14 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 187 -107c6 -2 10 -7 10 -13'], + 0xE0C5: [520,20,497,0,497,'497 173v-40h-245c35 -36 66 -78 89 -124c2 -3 2 -6 2 -9c0 -11 -9 -20 -20 -20c-7 0 -14 4 -17 11c-28 53 -65 100 -109 139c-54 47 -116 88 -187 107c-6 2 -10 7 -10 13s4 11 10 13c71 19 133 60 187 107c44 39 81 86 109 139c3 7 10 11 17 11c11 0 20 -9 20 -20 c0 -3 0 -6 -2 -9c-23 -46 -54 -88 -89 -124h245v-40h-289c-39 -32 -84 -58 -131 -77c47 -19 92 -45 131 -77h289'], + 0xE0C6: [367,-133,331,0,331,'331 327h-331v40h331v-40zM331 173v-40h-331v40h331'], + 0xE0C7: [520,20,497,0,497,'497 0c0 -27 -40 -27 -40 0v133h-457v40h457v154h-457v40h457v133c0 27 40 27 40 0v-500'], + 0xE0C8: [520,20,497,0,497,'497 173v-40h-457v-133c0 -27 -40 -27 -40 0v500c0 27 40 27 40 0v-133h457v-40h-457v-154h457'], + 0xE0C9: [367,-133,331,0,331,'331 367v-40h-331v40h331zM331 133h-331v40h331v-40'], + 0xE0CA: [520,20,497,0,497,'497 250c0 -6 -4 -11 -9 -13c-72 -19 -134 -60 -188 -107c-44 -39 -81 -86 -108 -139c-3 -7 -10 -11 -18 -11c-11 0 -20 9 -20 20c0 3 1 6 2 9c24 46 54 88 89 124h-245v40h289c40 32 84 58 132 77c-48 19 -92 45 -132 77h-289v40h245c-35 36 -65 78 -89 124 c-1 3 -2 6 -2 9c0 11 9 20 20 20c8 0 15 -4 18 -11c27 -53 64 -100 108 -139c54 -47 116 -88 188 -107c5 -2 9 -7 9 -13'], + 0xE0CB: [617,117,506,0,506,'506 76v-40h-193c27 -39 49 -81 66 -126c1 -2 1 -4 1 -7c0 -11 -9 -20 -20 -20c-8 0 -15 5 -18 13c-27 69 -66 132 -116 186c-60 66 -132 123 -217 156c-5 1 -9 6 -9 12s4 11 9 12c85 33 157 90 217 156c50 54 89 117 116 186c3 8 10 13 18 13c11 0 20 -9 20 -20 c0 -3 0 -5 -1 -7c-17 -45 -39 -87 -66 -126h193v-40h-222c-9 -11 -18 -22 -28 -33c-44 -48 -96 -89 -153 -121h403v-40h-403c57 -32 109 -73 153 -121c10 -11 19 -22 28 -33h222'], + 0xE0CC: [464,-36,337,0,337,'337 76v-40h-337v40h337zM337 230h-337v40h337v-40zM337 424h-337v40h337v-40'], + 0xE0CD: [464,-36,506,0,506,'506 56c0 -11 -9 -20 -20 -20h-486v40h486c11 0 20 -9 20 -20zM506 250c0 -11 -9 -20 -20 -20h-486v40h486c11 0 20 -9 20 -20zM506 444c0 -11 -9 -20 -20 -20h-486v40h486c11 0 20 -9 20 -20'], + 0xE0CE: [464,-36,506,0,506,'506 424h-486c-11 0 -20 9 -20 20s9 20 20 20h486v-40zM506 230h-486c-11 0 -20 9 -20 20s9 20 20 20h486v-40zM506 36h-486c-11 0 -20 9 -20 20s9 20 20 20h486v-40'], + 0xE0CF: [464,-36,337,0,337,'337 424h-337v40h337v-40zM337 230h-337v40h337v-40zM337 36h-337v40h337v-40'], + 0xE0D0: [617,117,506,0,506,'506 250c0 -6 -4 -11 -9 -12c-85 -33 -157 -90 -217 -156c-50 -54 -89 -117 -116 -186c-2 -8 -10 -13 -18 -13c-11 0 -20 9 -20 20c0 3 0 5 1 7c17 45 39 87 66 126h-193v40h222c9 11 18 22 28 33c44 48 96 89 153 121h-403v40h403c-57 32 -109 73 -153 121 c-10 11 -19 22 -28 33h-222v40h193c-27 39 -49 81 -66 126c-1 2 -1 4 -1 7c0 11 9 20 20 20c8 0 16 -5 18 -13c27 -69 66 -132 116 -186c60 -66 132 -123 217 -156c5 -1 9 -6 9 -12'], + 0xE0D1: [520,20,519,0,519,'519 367v-40h-189c-11 0 -20 9 -20 20v70c-50 -77 -123 -136 -210 -167c87 -31 160 -90 210 -167v70c0 11 9 20 20 20h189v-40h-169v-133c0 -11 -9 -20 -20 -20c-9 0 -16 5 -19 13c-48 126 -161 216 -294 237c-10 2 -17 10 -17 20s7 18 17 20c133 21 246 111 294 237 c3 8 10 13 19 13c11 0 20 -9 20 -20v-133h169'], + 0xE0D2: [367,-133,346,0,346,'346 367v-40h-346v40h346zM346 133h-346v40h346v-40'], + 0xE0D3: [367,-133,519,0,519,'519 153c0 -11 -9 -20 -20 -20h-499v40h479v154h-479v40h499c11 0 20 -9 20 -20v-194'], + 0xE0D4: [367,-133,519,0,519,'519 173v-40h-499c-11 0 -20 9 -20 20v194c0 11 9 20 20 20h499v-40h-479v-154h479'], + 0xE0D5: [367,-133,346,0,346,'346 327h-346v40h346v-40zM346 173v-40h-346v40h346'], + 0xE0D6: [520,20,519,0,519,'519 250c0 -10 -7 -18 -17 -20c-133 -21 -246 -111 -294 -237c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20v133h-169v40h189c11 0 20 -9 20 -20v-70c50 77 123 136 210 167c-87 31 -160 90 -210 167v-70c0 -11 -9 -20 -20 -20h-189v40h169v133c0 11 9 20 20 20 c9 0 16 -5 19 -13c48 -126 161 -216 294 -237c10 -2 17 -10 17 -20'], + 0xE0D7: [519,0,652,209,443,'443 20c0 -11 -9 -20 -20 -20h-194c-11 0 -20 9 -20 20v499h40v-479h154v479h40v-499'], + 0xE0D8: [346,0,652,209,443,'249 0h-40v346h40v-346zM443 0h-40v346h40v-346'], + 0xE0D9: [519,0,652,56,596,'596 189c0 -11 -9 -20 -20 -20h-133v-169h-40v189c0 11 9 20 20 20h70c-77 50 -136 123 -167 210c-31 -87 -90 -160 -167 -210h70c11 0 20 -9 20 -20v-189h-40v169h-133c-11 0 -20 9 -20 20c0 9 5 16 13 19c126 48 216 161 237 294c2 10 10 17 20 17s18 -7 20 -17 c21 -133 111 -246 237 -294c8 -3 13 -10 13 -19'], + 0xE0DA: [519,0,652,56,596,'596 330c0 -9 -5 -16 -13 -19c-126 -48 -216 -161 -237 -294c-2 -10 -10 -17 -20 -17s-18 7 -20 17c-21 133 -111 246 -237 294c-8 3 -13 10 -13 19c0 11 9 20 20 20h133v169h40v-189c0 -11 -9 -20 -20 -20h-70c77 -50 136 -123 167 -210c31 87 90 160 167 210h-70 c-11 0 -20 9 -20 20v189h40v-169h133c11 0 20 -9 20 -20'], + 0xE0DB: [346,0,652,209,443,'249 346v-346h-40v346h40zM443 0h-40v346h40v-346'], + 0xE0DC: [519,0,652,209,443,'443 0h-40v479h-154v-479h-40v499c0 11 9 20 20 20h194c11 0 20 -9 20 -20v-499'], + 0xE0DD: [524,0,652,56,596,'596 330c0 -9 -5 -16 -13 -19c-126 -48 -216 -161 -237 -294c-2 -10 -10 -17 -20 -17s-18 7 -20 17c-21 133 -111 246 -237 294c-8 3 -13 10 -13 19c0 11 9 20 20 20h133v174h40v-194c0 -11 -9 -20 -20 -20h-70c77 -50 136 -123 167 -210c31 87 90 160 167 210h-70 c-11 0 -20 9 -20 20v194h40v-174h133c11 0 20 -9 20 -20'], + 0xE0DE: [349,0,652,209,443,'249 0h-40v349h40v-349zM443 0h-40v349h40v-349'], + 0xE0DF: [523,0,652,56,596,'596 193c0 -11 -9 -20 -20 -20h-133v-173h-40v193c0 11 9 20 20 20h70c-77 50 -136 123 -167 210c-31 -87 -90 -160 -167 -210h70c11 0 20 -9 20 -20v-193h-40v173h-133c-11 0 -20 9 -20 20c0 9 5 16 13 19c126 48 216 161 237 294c2 10 10 17 20 17s18 -7 20 -17 c21 -133 111 -246 237 -294c8 -3 13 -10 13 -19'], + 0xE0E0: [520,20,524,0,524,'524 133h-174v-133c0 -11 -9 -20 -20 -20c-9 0 -16 5 -19 13c-48 126 -161 216 -294 237c-10 2 -17 10 -17 20s7 18 17 20c133 21 246 111 294 237c3 8 10 13 19 13c11 0 20 -9 20 -20v-133h174v-40h-194c-11 0 -20 9 -20 20v70c-50 -77 -123 -136 -210 -167 c87 -31 160 -90 210 -167v70c0 11 9 20 20 20h194v-40'], + 0xE0E1: [367,-133,349,0,349,'349 367v-40h-349v40h349zM349 133h-349v40h349v-40'], + 0xE0E2: [520,20,523,0,523,'523 250c0 -10 -7 -18 -17 -20c-133 -21 -246 -111 -294 -237c-3 -8 -10 -13 -19 -13c-11 0 -20 9 -20 20v133h-173v40h193c11 0 20 -9 20 -20v-70c50 77 123 136 210 167c-87 31 -160 90 -210 167v-70c0 -11 -9 -20 -20 -20h-193v40h173v133c0 11 9 20 20 20 c9 0 16 -5 19 -13c48 -126 161 -216 294 -237c10 -2 17 -10 17 -20'], + 0xE0E3: [468,-31,492,0,492,'492 153h-215v-113c0 -9 -12 -12 -16 -3c-52 101 -144 176 -255 205c-8 2 -8 14 0 16c111 29 203 104 255 205c4 9 16 6 16 -3v-113h215v-194'], + 0xE0E4: [347,-153,327,0,327,'327 347v-194h-327v194h327'], + 0xE0E5: [347,-153,492,0,492,'492 173c0 -11 -9 -20 -20 -20h-472v194h472c11 0 20 -9 20 -20v-154'], + 0xE0E6: [347,-153,492,0,492,'492 347v-194h-472c-11 0 -20 9 -20 20v154c0 11 9 20 20 20h472'], + 0xE0E7: [347,-153,327,0,327,'327 153h-327v194h327v-194'], + 0xE0E8: [468,-31,492,0,492,'486 258c8 -2 8 -14 0 -16c-110 -29 -203 -104 -255 -205c-4 -9 -16 -6 -16 3v113h-215v194h215v113c0 9 12 12 16 3c52 -101 145 -176 255 -205'], + 0xE0E9: [492,0,612,209,403,'403 20c0 -11 -9 -20 -20 -20h-154c-11 0 -20 9 -20 20v472h194v-472'], + 0xE0EA: [327,0,612,209,403,'403 0h-194v327h194v-327'], + 0xE0EB: [492,0,612,87,524,'519 231c9 -4 6 -16 -3 -16h-113v-215h-194v215h-113c-9 0 -12 12 -3 16c101 52 176 145 205 255c2 8 14 8 16 0c29 -110 104 -203 205 -255'], + 0xE0EC: [492,0,612,87,524,'519 261c-101 -52 -176 -145 -205 -255c-2 -8 -14 -8 -16 0c-29 110 -104 203 -205 255c-9 4 -6 16 3 16h113v215h194v-215h113c9 0 12 -12 3 -16'], + 0xE0ED: [327,0,612,209,403,'403 0h-194v327h194v-327'], + 0xE0EE: [492,0,612,209,403,'403 0h-194v472c0 11 9 20 20 20h154c11 0 20 -9 20 -20v-472'], + 0xE0EF: [468,-31,484,0,484,'484 153h-207v-113c0 -9 -12 -12 -16 -3c-52 101 -144 176 -255 205c-8 2 -8 14 0 16c111 29 203 104 255 205c4 9 16 6 16 -3v-113h207v-194'], + 0xE0F0: [347,-153,322,0,322,'322 153h-322v194h322v-194'], + 0xE0F1: [468,-31,484,0,484,'478 242c-110 -29 -203 -104 -255 -205c-4 -9 -16 -6 -16 3v113h-207v194h207v113c0 9 12 12 16 3c52 -101 145 -176 255 -205c8 -2 8 -14 0 -16'], + 0xE0F2: [484,0,549,56,492,'488 261c-102 -52 -177 -145 -206 -255c-2 -8 -14 -8 -16 0c-29 110 -103 203 -205 255c-8 4 -5 16 3 16h113v207h194v-207h113c9 0 12 -12 4 -16'], + 0xE0F3: [322,0,549,177,371,'371 322v-322h-194v322h194'], + 0xE0F4: [484,0,549,56,492,'488 223c8 -4 5 -16 -4 -16h-113v-207h-194v207h-113c-8 0 -11 12 -3 16c102 52 176 145 205 255c2 8 14 8 16 0c29 -110 104 -203 206 -255'], + 0xE0F5: [-103,143,189,0,189,'189 -143h-169c-11 0 -20 9 -20 20s9 20 20 20h169v-40'], + 0xE0F6: [-103,143,190,0,190,'190 -143h-190v40h190v-40'], + 0xE0F7: [-103,143,189,0,189,'189 -123c0 -11 -9 -20 -20 -20h-169v40h169c11 0 20 -9 20 -20'], + 0xE0F8: [-103,293,189,0,189,'189 -143h-169c-11 0 -20 9 -20 20s9 20 20 20h169v-40zM189 -293h-169c-11 0 -20 9 -20 20s9 20 20 20h169v-40'], + 0xE0F9: [-103,293,190,0,190,'190 -143h-190v40h190v-40zM190 -293h-190v40h190v-40'], + 0xE0FA: [-103,293,189,0,189,'189 -123c0 -11 -9 -20 -20 -20h-169v40h169c11 0 20 -9 20 -20zM189 -273c0 -11 -9 -20 -20 -20h-169v40h169c11 0 20 -9 20 -20'], + 0xE0FB: [670,-630,189,0,189,'189 630h-169c-11 0 -20 9 -20 20s9 20 20 20h169v-40'], + 0xE0FC: [670,-630,190,0,190,'190 630h-190v40h190v-40'], + 0xE0FD: [670,-630,189,0,189,'189 650c0 -11 -9 -20 -20 -20h-169v40h169c11 0 20 -9 20 -20'], + 0xE0FE: [820,-630,189,0,189,'189 630h-169c-11 0 -20 9 -20 20s9 20 20 20h169v-40zM189 780h-169c-11 0 -20 9 -20 20s9 20 20 20h169v-40'], + 0xE0FF: [820,-630,190,0,190,'190 630h-190v40h190v-40zM190 780h-190v40h190v-40'], + 0xE100: [820,-630,189,0,189,'189 650c0 -11 -9 -20 -20 -20h-169v40h169c11 0 20 -9 20 -20zM189 800c0 -11 -9 -20 -20 -20h-169v40h169c11 0 20 -9 20 -20'], + 0xE101: [1526,0,647,294,591,'591 26c0 -14 -12 -26 -26 -26c-7 0 -14 3 -18 8c-125 124 -253 577 -253 1018v500h102v-500c0 -420 69 -863 187 -982c5 -4 8 -11 8 -18'], + 0xE102: [998,0,647,294,396,'396 0h-102v998h102v-998'], + 0xE103: [1526,0,647,294,591,'591 1500c0 -7 -3 -14 -8 -18c-118 -119 -187 -562 -187 -982v-500h-102v500c0 441 128 894 253 1018c4 5 11 8 18 8c14 0 26 -12 26 -26'], + 0xE104: [1526,0,647,56,353,'353 1026c0 -441 -128 -894 -253 -1018c-4 -5 -11 -8 -18 -8c-14 0 -26 12 -26 26c0 7 3 14 8 18c118 119 187 562 187 982v500h102v-500'], + 0xE105: [998,0,647,251,353,'353 998v-998h-102v998h102'], + 0xE106: [1526,0,647,56,353,'353 0h-102v500c0 420 -69 863 -187 982c-5 4 -8 11 -8 18c0 14 12 26 26 26c7 0 14 -3 18 -8c125 -124 253 -577 253 -1018v-500'], + 0xE107: [1000,0,1007,353,985,'985 30c0 -17 -13 -30 -30 -30h-602v1000h60v-940h241v940h60v-940h241c17 0 30 -13 30 -30'], + 0xE108: [1000,0,1007,353,714,'413 1000v-1000h-60v1000h60zM714 1000v-1000h-60v1000h60'], + 0xE109: [1000,0,1007,353,985,'985 970c0 -17 -13 -30 -30 -30h-241v-940h-60v940h-241v-940h-60v1000h602c17 0 30 -13 30 -30'], + 0xE10A: [1000,0,1007,22,654,'654 0h-602c-17 0 -30 13 -30 30s13 30 30 30h241v940h60v-940h241v940h60v-1000'], + 0xE10B: [1000,0,1007,293,654,'353 1000v-1000h-60v1000h60zM654 0h-60v1000h60v-1000'], + 0xE10C: [1000,0,1007,22,654,'654 0h-60v940h-241v-940h-60v940h-241c-17 0 -30 13 -30 30s13 30 30 30h602v-1000'], + 0xE10D: [724,-493,1002,0,1002,'1002 622h-492c-229 0 -453 -33 -485 -121c-2 -5 -6 -8 -12 -8c-7 0 -13 5 -13 13c0 1 0 3 1 4c35 97 255 214 509 214h492v-102'], + 0xE10E: [724,-622,994,0,994,'994 622h-989h-5v102h5h989v-102'], + 0xE10F: [854,-622,2003,0,2003,'2003 724v-102h-505c-249 0 -446 89 -497 176c-51 -87 -248 -176 -497 -176h-504v102h504c260 0 484 29 484 117c0 7 6 13 13 13s13 -6 13 -13c0 -88 224 -117 484 -117h505'], + 0xE110: [724,-493,1001,0,1001,'1001 506c0 -8 -6 -13 -13 -13c-6 0 -10 3 -12 8c-32 88 -256 121 -485 121h-491v102h491c254 0 474 -117 509 -214c1 -1 1 -3 1 -4'], + 0xE111: [-62,294,1002,0,1002,'1002 -294h-492c-254 0 -474 117 -509 214c-1 1 -1 3 -1 5c0 7 6 13 13 13c6 0 10 -4 12 -9c32 -88 256 -121 485 -121h492v-102'], + 0xE112: [-192,294,994,0,994,'994 -294h-989h-5v102h5h989v-102'], + 0xE113: [-192,423,2003,0,2003,'2003 -192v-102h-505c-260 0 -484 -29 -484 -116c0 -8 -6 -13 -13 -13s-13 5 -13 13c0 87 -224 116 -484 116h-504v102h504c249 0 446 -89 497 -176c51 87 248 176 497 176h505'], + 0xE114: [-62,294,1001,0,1001,'1001 -75c0 -2 0 -4 -1 -5c-35 -97 -255 -214 -509 -214h-491v102h491c229 0 453 33 485 121c2 5 6 9 12 9c7 0 13 -6 13 -13'], + 0xE115: [796,-502,2016,0,2016,'2016 694h-498c-693 0 -1356 -66 -1474 -184c-4 -5 -11 -8 -18 -8c-14 0 -26 12 -26 26c0 8 3 14 8 19c121 121 795 249 1510 249h498v-102'], + 0xE116: [796,-694,994,0,994,'994 694h-969h-25v102h25h969v-102'], + 0xE117: [796,-502,2016,0,2016,'2016 528c0 -14 -12 -26 -26 -26c-7 0 -14 3 -18 8c-118 118 -781 184 -1474 184h-498v102h498c715 0 1389 -128 1510 -249c5 -5 8 -11 8 -19'], + 0xE118: [-72,366,2016,0,2016,'2016 -366h-498c-715 0 -1389 128 -1510 249c-5 5 -8 11 -8 19c0 14 12 26 26 26c7 0 14 -3 18 -8c118 -118 781 -184 1474 -184h498v-102'], + 0xE119: [-264,366,994,0,994,'994 -366h-969h-25v102h25h969v-102'], + 0xE11A: [-72,366,2016,0,2016,'2016 -98c0 -8 -3 -14 -8 -19c-121 -121 -795 -249 -1510 -249h-498v102h498c693 0 1356 66 1474 184c4 5 11 8 18 8c14 0 26 -12 26 -26'], + 0xE11B: [772,-504,1493,0,1493,'1493 712h-1433v-178c0 -16 -13 -30 -30 -30s-30 14 -30 30v238h1493v-60'], + 0xE11C: [772,-712,995,0,995,'995 712h-995v60h995v-60'], + 0xE11D: [772,-504,1492,0,1492,'1492 534c0 -16 -13 -30 -30 -30s-30 14 -30 30v178h-1432v60h1492v-238'], + 0xE11E: [-74,342,1493,0,1493,'1493 -342h-1493v238c0 16 13 30 30 30s30 -14 30 -30v-178h1433v-60'], + 0xE11F: [-282,342,995,0,995,'995 -342h-995v60h995v-60'], + 0xE120: [-74,342,1492,0,1492,'1492 -342h-1492v60h1432v178c0 16 13 30 30 30s30 -14 30 -30v-238'], + 0xE121: [873,-605,2041,0,2041,'2041 771h-1773l-166 -166h-102l268 268h1773v-102'], + 0xE122: [873,-771,1360,0,1360,'1360 873v-102h-1360v102h1360'], + 0xE123: [873,-605,2041,0,2041,'2041 605h-102l-166 166h-1773v102h1773'], + 0xE124: [-175,443,2041,0,2041,'2041 -443h-1773l-268 268h102l166 -166h1773v-102'], + 0xE125: [-341,443,1360,0,1360,'1360 -341v-102h-1360v102h1360'], + 0xE126: [-175,443,2041,0,2041,'2041 -175l-268 -268h-1773v102h1773l166 166h102'], + 0xE127: [270,-230,222,0,222,'222 230h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40'], + 0xE128: [270,-230,222,0,222,'222 270v-40h-222v40h222'], + 0xE129: [270,-230,222,0,222,'222 250c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20'], + 0xE12A: [1202,0,424,57,369,'136 39c0 -21 -18 -39 -40 -39s-39 18 -39 39v1163h78zM369 39c0 -21 -18 -39 -40 -39s-39 18 -39 39v1163h78'], + 0xE12B: [1202,0,424,57,369,'136 1202v-1202h-79v1202h79zM369 1202v-1202h-79v1202h79'], + 0xE12C: [1202,0,424,57,369,'136 0h-79v1163c0 21 17 39 39 39s40 -18 40 -39v-1163zM369 0h-79v1163c0 21 17 39 39 39s40 -18 40 -39v-1163'], + 0xE12D: [464,-36,222,0,222,'222 424h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40zM222 230h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40zM222 36h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40'], + 0xE12E: [464,-36,222,0,222,'222 464v-40h-222v40h222zM222 270v-40h-222v40h222zM222 76v-40h-222v40h222'], + 0xE12F: [464,-36,222,0,222,'222 444c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20zM222 250c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20zM222 56c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20'], + 0xE130: [561,61,222,0,222,'222 521h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40zM222 327h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40zM222 133h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40zM222 -61h-202c-11 0 -20 9 -20 20s9 20 20 20h202v-40'], + 0xE131: [561,61,222,0,222,'222 561v-40h-222v40h222zM222 367v-40h-222v40h222zM222 173v-40h-222v40h222zM222 -21v-40h-222v40h222'], + 0xE132: [561,61,222,0,222,'222 541c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20zM222 347c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20zM222 153c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20zM222 -41c0 -11 -9 -20 -20 -20h-202v40h202c11 0 20 -9 20 -20'], + 0xE133: [640,0,1056,702,742,'742 0h-40v640h40v-640'], + 0xE134: [620,0,1056,702,1076,'1076 580h-334v-580h-40v584c0 33 4 36 36 36h338v-40'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size7/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Symbols/Regular/Main.js new file mode 100644 index 0000000..0821615 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Symbols/Regular/Main.js @@ -0,0 +1,79 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'LatinModernMathJax_Symbols', + id: 'LATINMODERNSYMBOLS', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x2300: [596,96,778,43,735,'662 250c0 68 -25 130 -66 178l-385 -385c47 -41 110 -66 178 -66c151 0 273 122 273 273zM567 457c-47 41 -110 66 -178 66c-151 0 -273 -122 -273 -273c0 -68 25 -130 66 -178zM729 562l-105 -105c49 -55 78 -128 78 -207c0 -173 -140 -313 -313 -313 c-79 0 -152 29 -207 78l-105 -105c-8 -8 -20 -8 -28 0s-8 20 0 28l105 105c-49 55 -78 128 -78 207c0 173 140 313 313 313c79 0 152 -29 207 -78l105 105c8 8 20 8 28 0s8 -20 0 -28'], + 0x2305: [270,155,778,56,722,'722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM546 -125c14 -23 -21 -43 -34 -20l-123 211l-123 -211c-13 -23 -48 -3 -34 20l137 236c9 15 31 15 40 0'], + 0x2306: [367,252,778,56,722,'722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM546 -222c14 -23 -21 -43 -34 -20l-123 211l-123 -211c-13 -23 -48 -3 -34 20 l137 236c9 15 31 15 40 0'], + 0x2310: [367,-133,667,47,620,'620 347c0 -11 -9 -20 -20 -20h-513v-174c0 -11 -9 -20 -20 -20s-20 9 -20 20v194c0 11 9 20 20 20h533c11 0 20 -9 20 -20'], + 0x2319: [367,-133,667,47,620,'620 153c0 -11 -9 -20 -20 -20h-533c-11 0 -20 9 -20 20v194c0 11 9 20 20 20s20 -9 20 -20v-174h513c11 0 20 -9 20 -20'], + 0x231C: [770,-490,392,56,336,'336 750c0 -11 -9 -20 -20 -20h-220v-220c0 -11 -9 -20 -20 -20s-20 9 -20 20v240c0 11 9 20 20 20h240c11 0 20 -9 20 -20'], + 0x231D: [770,-490,392,56,336,'336 510c0 -11 -9 -20 -20 -20s-20 9 -20 20v220h-220c-11 0 -20 9 -20 20s9 20 20 20h240c11 0 20 -9 20 -20v-240'], + 0x231E: [10,270,392,56,336,'336 -250c0 -11 -9 -20 -20 -20h-240c-11 0 -20 9 -20 20v240c0 11 9 20 20 20s20 -9 20 -20v-220h220c11 0 20 -9 20 -20'], + 0x231F: [10,270,392,56,336,'336 -250c0 -11 -9 -20 -20 -20h-240c-11 0 -20 9 -20 20s9 20 20 20h220v220c0 11 9 20 20 20s20 -9 20 -20v-240'], + 0x2320: [1344,0,1185,551,1129,'1129 1232c0 -43 -30 -61 -59 -61c-28 0 -58 20 -58 60c0 30 20 56 60 59c-4 5 -35 28 -72 28c-47 0 -89 -156 -103 -216c-41 -156 -86 -398 -131 -656l-81 -446h-134c111 563 217 955 220 966c67 246 134 378 226 378c67 0 132 -47 132 -112'], + 0x2321: [1322,22,1185,56,685,'685 1322l-156 -710c-86 -351 -155 -634 -339 -634c-73 0 -134 51 -134 113c0 42 30 60 59 60c28 0 58 -19 58 -59c0 -31 -20 -57 -59 -60c0 0 30 -27 74 -27c98 0 154 227 175 315c40 169 75 371 107 556l81 446h134'], + 0x2329: [750,250,389,110,336,'336 -230c0 -11 -9 -20 -20 -20c-8 0 -16 5 -19 13l-186 480c-1 2 -1 4 -1 7s0 5 1 7l186 480c3 8 11 13 19 13c11 0 20 -9 20 -20c0 -3 0 -5 -1 -7l-184 -473l184 -473c1 -2 1 -4 1 -7'], + 0x232A: [750,250,389,53,279,'279 250c0 -3 0 -5 -1 -7l-186 -480c-3 -8 -11 -13 -19 -13c-11 0 -20 9 -20 20c0 3 0 5 1 7l184 473l-184 473c-1 2 -1 4 -1 7c0 11 9 20 20 20c8 0 16 -5 19 -13l186 -480c1 -2 1 -4 1 -7'], + 0x239B: [1495,0,875,277,823,'823 1474c0 -7 -3 -13 -9 -17c-255 -192 -435 -739 -435 -1207v-250h-102v250c0 490 245 1039 513 1241c3 2 7 4 12 4c11 0 21 -10 21 -21'], + 0x239C: [498,0,875,277,379,'379 0h-102v498h102v-498'], + 0x239D: [1495,0,875,277,823,'823 21c0 -12 -10 -21 -21 -21c-5 0 -9 2 -12 4c-268 201 -513 751 -513 1241v250h102v-250c0 -469 180 -1015 435 -1208c6 -3 9 -9 9 -16'], + 0x239E: [1495,0,875,52,598,'598 0h-102v250c0 468 -180 1015 -435 1207c-6 4 -9 10 -9 17c0 11 10 21 21 21c5 0 9 -2 12 -4c268 -202 513 -751 513 -1241v-250'], + 0x239F: [498,0,875,496,598,'598 498v-498h-102v498h102'], + 0x23A0: [1495,0,875,52,598,'598 1245c0 -490 -245 -1040 -513 -1241c-3 -2 -7 -4 -12 -4c-11 0 -21 9 -21 21c0 7 3 13 9 16c255 193 435 739 435 1208v250h102v-250'], + 0x23A1: [1500,0,667,321,647,'647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30'], + 0x23A2: [1000,0,667,321,381,'381 0h-60v1000h60v-1000'], + 0x23A3: [1500,0,667,321,647,'647 30c0 -17 -13 -30 -30 -30h-296v1500h60v-1440h236c17 0 30 -13 30 -30'], + 0x23A4: [1500,0,667,20,346,'346 0h-60v1440h-236c-17 0 -30 13 -30 30s13 30 30 30h296v-1500'], + 0x23A5: [1000,0,667,286,346,'346 1000v-1000h-60v1000h60'], + 0x23A6: [1500,0,667,20,346,'346 0h-296c-17 0 -30 13 -30 30s13 30 30 30h236v1440h60v-1500'], + 0x23A7: [750,0,902,400,755,'755 724c0 -11 -7 -21 -17 -24c-138 -51 -236 -202 -236 -325v-375h-102v375c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26'], + 0x23A8: [1500,0,902,147,502,'502 1500v-375c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-375h-102v375c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v375h102'], + 0x23A9: [750,0,902,400,755,'755 26c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v375h102v-375c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24'], + 0x23AA: [748,0,902,400,502,'502 0h-102v748h102v-748'], + 0x23AB: [750,0,902,147,502,'502 0h-102v375c0 123 -98 274 -236 325c-10 3 -17 13 -17 24c0 14 12 26 26 26c3 0 6 -1 9 -2c169 -61 320 -222 320 -373v-375'], + 0x23AC: [1500,0,902,400,755,'755 750c0 -11 -7 -21 -17 -24c-139 -51 -236 -214 -236 -351v-375h-102v375c0 147 120 300 265 375c-145 75 -265 228 -265 375v375h102v-375c0 -137 97 -300 236 -351c10 -3 17 -13 17 -24'], + 0x23AD: [750,0,902,147,502,'502 375c0 -151 -151 -312 -320 -373c-3 -1 -6 -2 -9 -2c-14 0 -26 12 -26 26c0 11 7 21 17 24c138 51 236 202 236 325v375h102v-375'], + 0x23B2: [846,0,1576,56,1520,'1520 506h-27c-38 98 -113 153 -140 172c-87 61 -183 81 -242 91c-10 2 -110 19 -257 19h-603l512 -770c7 -10 8 -16 8 -18h-185l-530 798c0 13 0 36 1 40c3 7 5 8 30 8h1300'], + 0x23B3: [847,0,1576,57,1520,'1520 387l-133 -387h-1300c-20 0 -30 0 -30 13c0 0 0 8 11 22l570 735l-51 77h184c0 -6 -2 -10 -10 -19l-560 -723h664c211 0 319 32 342 38c126 36 243 118 286 244h27'], + 0x23B7: [1820,0,1056,111,742,'742 36c0 -30 -2 -36 -40 -36l-493 1495l-83 -162l-15 16l139 273l451 -1367h1v1565h40v-1784'], + 0x27C2: [684,0,778,56,722,'722 20c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h293v624c0 11 9 20 20 20s20 -9 20 -20v-624h293c11 0 20 -9 20 -20'], + 0x27D8: [684,184,946,56,890,'890 -164c0 -11 -9 -20 -20 -20h-794c-11 0 -20 9 -20 20s9 20 20 20h377v808c0 11 9 20 20 20s20 -9 20 -20v-808h377c11 0 20 -9 20 -20'], + 0x27D9: [684,184,986,56,930,'930 664c0 -11 -9 -20 -20 -20h-397v-808c0 -11 -9 -20 -20 -20s-20 9 -20 20v808h-397c-11 0 -20 9 -20 20s9 20 20 20h834c11 0 20 -9 20 -20'], + 0x27DA: [684,0,1026,56,970,'970 245c0 -11 -9 -20 -20 -20h-333v-205c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-205h333c11 0 20 -9 20 -20s-9 -20 -20 -20h-333v-154h333c11 0 20 -9 20 -20zM449 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v205h-333c-11 0 -20 9 -20 20 s9 20 20 20h333v154h-333c-11 0 -20 9 -20 20s9 20 20 20h333v205c0 11 9 20 20 20s20 -9 20 -20v-644'], + 0x27DB: [684,0,1026,56,970,'970 342c0 -11 -9 -20 -20 -20h-333v-302c0 -11 -9 -20 -20 -20s-20 9 -20 20v644c0 11 9 20 20 20s20 -9 20 -20v-302h333c11 0 20 -9 20 -20zM449 20c0 -11 -9 -20 -20 -20s-20 9 -20 20v302h-333c-11 0 -20 9 -20 20s9 20 20 20h333v302c0 11 9 20 20 20s20 -9 20 -20 v-644'], + 0x27DC: [400,-100,948,56,892,'892 250c0 -11 -9 -20 -20 -20h-517c-10 -73 -73 -130 -149 -130c-83 0 -150 67 -150 150s67 150 150 150c76 0 139 -57 149 -130h517c11 0 20 -9 20 -20zM316 250c0 61 -49 110 -110 110s-110 -49 -110 -110s49 -110 110 -110s110 49 110 110'], + 0x27DD: [684,184,946,56,890,'890 250c0 -11 -9 -20 -20 -20h-774v-394c0 -11 -9 -20 -20 -20s-20 9 -20 20v828c0 11 9 20 20 20s20 -9 20 -20v-394h774c11 0 20 -9 20 -20'], + 0x27DE: [684,184,946,56,890,'890 -164c0 -11 -9 -20 -20 -20s-20 9 -20 20v394h-774c-11 0 -20 9 -20 20s9 20 20 20h774v394c0 11 9 20 20 20s20 -9 20 -20v-828'], + 0x27E0: [610,110,572,56,516,'516 250c0 -4 -1 -7 -3 -10l-210 -340c-3 -6 -10 -10 -17 -10s-14 4 -17 10l-210 340c-2 3 -3 6 -3 10s1 7 3 10l210 340c3 6 10 10 17 10s14 -4 17 -10l210 -340c2 -3 3 -6 3 -10zM460 270l-174 282l-174 -282h348zM460 230h-348l174 -282'], + 0x27E1: [501,1,614,56,558,'462 250c-70 29 -126 85 -155 155c-29 -70 -85 -126 -155 -155c70 -29 126 -85 155 -155c29 70 85 126 155 155zM558 250c0 -10 -8 -19 -17 -20c-112 -14 -200 -102 -214 -214c-1 -9 -10 -17 -20 -17s-19 8 -20 17c-14 112 -102 200 -214 214c-9 1 -17 10 -17 20 s8 19 17 20c112 14 200 102 214 214c1 9 10 17 20 17s19 -8 20 -17c14 -112 102 -200 214 -214c9 -1 17 -10 17 -20'], + 0x27E2: [501,1,730,56,674,'674 250c0 -10 -8 -19 -17 -20c-112 -14 -200 -102 -214 -214c-1 -9 -10 -17 -20 -17s-19 8 -20 17c-14 111 -102 199 -212 214h-115c-11 0 -20 9 -20 20s9 20 20 20h115c110 15 198 103 212 214c1 9 10 17 20 17s19 -8 20 -17c14 -112 102 -200 214 -214 c9 -1 17 -10 17 -20zM578 250c-70 29 -126 85 -155 155c-29 -70 -85 -126 -155 -155c70 -29 126 -85 155 -155c29 70 85 126 155 155'], + 0x27E3: [501,1,730,56,674,'674 250c0 -11 -9 -20 -20 -20h-115c-110 -15 -198 -103 -212 -214c-1 -9 -10 -17 -20 -17s-19 8 -20 17c-14 112 -102 200 -214 214c-9 1 -17 10 -17 20s8 19 17 20c112 14 200 102 214 214c1 9 10 17 20 17s19 -8 20 -17c14 -111 102 -199 212 -214h115 c11 0 20 -9 20 -20zM462 250c-70 29 -126 85 -155 155c-29 -70 -85 -126 -155 -155c70 -29 126 -85 155 -155c29 70 85 126 155 155'], + 0x27E6: [750,250,410,118,388,'388 -230c0 -11 -9 -20 -20 -20h-250v1000h250c11 0 20 -9 20 -20s-9 -20 -20 -20h-85v-920h85c11 0 20 -9 20 -20zM243 710h-85v-920h85v920'], + 0x27E7: [750,250,410,22,292,'292 750v-1000h-250c-11 0 -20 9 -20 20s9 20 20 20h85v920h-85c-11 0 -20 9 -20 20s9 20 20 20h250zM252 -210v920h-85v-920h85'], + 0x27EA: [750,250,570,110,517,'336 -230c0 -11 -9 -20 -20 -20c-8 0 -16 5 -19 13l-186 480c-1 2 -1 4 -1 7s0 5 1 7l186 480c3 8 11 13 19 13c11 0 20 -9 20 -20c0 -3 0 -5 -1 -7l-184 -473l184 -473c1 -2 1 -4 1 -7zM517 -230c0 -11 -9 -20 -20 -20c-9 0 -16 5 -19 13l-186 480c-1 2 -1 4 -1 7 s0 5 1 7l186 480c3 8 10 13 19 13c11 0 20 -9 20 -20c0 -3 -1 -5 -2 -7l-183 -473l183 -473c1 -2 2 -4 2 -7'], + 0x27EB: [750,250,570,53,460,'460 250c0 -3 -1 -5 -2 -7l-186 -480c-2 -8 -10 -13 -18 -13c-11 0 -20 9 -20 20c0 3 0 5 1 7l183 473l-183 473c-1 2 -1 4 -1 7c0 11 9 20 20 20c8 0 16 -5 18 -13l186 -480c1 -2 2 -4 2 -7zM279 250c0 -3 0 -5 -1 -7l-186 -480c-3 -8 -11 -13 -19 -13 c-11 0 -20 9 -20 20c0 3 0 5 1 7l184 473l-184 473c-1 2 -1 4 -1 7c0 11 9 20 20 20c8 0 16 -5 19 -13l186 -480c1 -2 1 -4 1 -7'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Symbols/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Variants/Regular/Main.js new file mode 100644 index 0000000..955cbfb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/Variants/Regular/Main.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['LatinModernMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'LatinModernMathJax_Variants', + id: 'LATINMODERNVARIANTS', + 0x20: [0,0,332,0,0,''], + 0xA0: [0,0,332,0,0,''], + 0x2032: [549,-96,407,67,340,'340 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29c30 0 54 -24 54 -53'], + 0x2033: [549,-96,647,67,580,'340 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29c30 0 54 -24 54 -53zM580 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29c30 0 54 -24 54 -53'], + 0x2034: [549,-96,887,67,820,'340 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29c30 0 54 -24 54 -53zM580 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29c30 0 54 -24 54 -53zM820 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29 c30 0 54 -24 54 -53'], + 0x2035: [549,-96,407,67,340,'340 96h-39l-226 372c-5 8 -8 18 -8 28c0 29 24 53 54 53c22 0 41 -14 48 -29'], + 0x2036: [549,-96,647,67,580,'340 96h-39l-226 372c-5 8 -8 18 -8 28c0 29 24 53 54 53c22 0 41 -14 48 -29zM580 96h-39l-226 372c-5 8 -8 18 -8 28c0 29 24 53 54 53c22 0 41 -14 48 -29'], + 0x2037: [549,-96,887,67,820,'340 96h-39l-226 372c-5 8 -8 18 -8 28c0 29 24 53 54 53c22 0 41 -14 48 -29zM580 96h-39l-226 372c-5 8 -8 18 -8 28c0 29 24 53 54 53c22 0 41 -14 48 -29zM820 96h-39l-226 372c-5 8 -8 18 -8 28c0 29 24 53 54 53c22 0 41 -14 48 -29'], + 0x2057: [549,-96,1127,67,1060,'340 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29c30 0 54 -24 54 -53zM580 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29c30 0 54 -24 54 -53zM820 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29 c30 0 54 -24 54 -53zM1060 496c0 -10 -3 -20 -8 -28l-227 -372h-38l171 424c6 15 26 29 48 29c30 0 54 -24 54 -53'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Variants/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/fontdata-extra.js new file mode 100644 index 0000000..7697828 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/fontdata-extra.js @@ -0,0 +1,785 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/fontdata-extra.js + * + * Adds extra stretchy characters to the Latin-Modern fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG) { + var VERSION = "2.3"; + + var DELIMITERS = SVG.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "LatinModernMathJax_Alphabets", + ARROWS = "LatinModernMathJax_Arrows", + DOUBLESTRUCK = "LatinModernMathJax_DoubleStruck", + FRAKTUR = "LatinModernMathJax_Fraktur", + LATIN = "LatinModernMathJax_Latin", + MAIN = "LatinModernMathJax_Main", + MARKS = "LatinModernMathJax_Marks", + MISC = "LatinModernMathJax_Misc", + MONOSPACE = "LatinModernMathJax_Monospace", + NONUNICODE = "LatinModernMathJax_NonUnicode", + NORMAL = "LatinModernMathJax_Normal", + OPERATORS = "LatinModernMathJax_Operators", + SANSSERIF = "LatinModernMathJax_SansSerif", + SCRIPT = "LatinModernMathJax_Script", + SHAPES = "LatinModernMathJax_Shapes", + SIZE1 = "LatinModernMathJax_Size1", + SIZE2 = "LatinModernMathJax_Size2", + SIZE3 = "LatinModernMathJax_Size3", + SIZE4 = "LatinModernMathJax_Size4", + SIZE5 = "LatinModernMathJax_Size5", + SIZE6 = "LatinModernMathJax_Size6", + SIZE7 = "LatinModernMathJax_Size7", + SYMBOLS = "LatinModernMathJax_Symbols", + VARIANTS = "LatinModernMathJax_Variants"; + + var delim = { + 0x306: + { + dir: H, + HW: [[374,MAIN], [658,SIZE1], [784,SIZE2], [937,SIZE3], [1120,SIZE4], [1341,SIZE5], [1604,SIZE6], [1920,SIZE7]] + }, + 0x311: + { + dir: H, + HW: [[374,MARKS], [658,SIZE1], [784,SIZE2], [937,SIZE3], [1120,SIZE4], [1341,SIZE5], [1604,SIZE6], [1920,SIZE7]] + }, + 0x32C: + { + dir: H, + HW: [[364,MARKS], [644,SIZE1], [768,SIZE2], [919,SIZE3], [1100,SIZE4], [1320,SIZE5], [1581,SIZE6], [1896,SIZE7]] + }, + 0x32D: + { + dir: H, + HW: [[364,MARKS], [644,SIZE1], [768,SIZE2], [919,SIZE3], [1100,SIZE4], [1320,SIZE5], [1581,SIZE6], [1896,SIZE7]] + }, + 0x32E: + { + dir: H, + HW: [[374,MARKS], [658,SIZE1], [784,SIZE2], [937,SIZE3], [1120,SIZE4], [1341,SIZE5], [1604,SIZE6], [1920,SIZE7]] + }, + 0x32F: + { + dir: H, + HW: [[374,MARKS], [658,SIZE1], [784,SIZE2], [937,SIZE3], [1120,SIZE4], [1341,SIZE5], [1604,SIZE6], [1920,SIZE7]] + }, + 0x330: + { + dir: H, + HW: [[370,MARKS], [652,SIZE1], [778,SIZE2], [931,SIZE3], [1115,SIZE4], [1335,SIZE5], [1599,SIZE6], [1915,SIZE7]] + }, + 0x333: + { + dir: H, + HW: [[392,MARKS], [568,SIZE1]], + stretch: {left:[0xE0F8,SIZE7], rep:[0xE0F9,SIZE7], right:[0xE0FA,SIZE7]} + }, + 0x33F: + { + dir: H, + HW: [[392,MARKS], [568,SIZE1]], + stretch: {left:[0xE0FE,SIZE7], rep:[0xE0FF,SIZE7], right:[0xE100,SIZE7]} + }, + 0x20D0: + { + dir: H, + HW: [[422,MARKS], [555,SIZE1]], + stretch: {left:[0xE008,SIZE7], rep:[0xE009,SIZE7], right:[0xE00A,SIZE7]} + }, + 0x20D1: + { + dir: H, + HW: [[422,MARKS], [555,SIZE1]], + stretch: {left:[0xE00B,SIZE7], rep:[0xE00C,SIZE7], right:[0xE00D,SIZE7]} + }, + 0x20D6: + { + dir: H, + HW: [[416,MARKS], [547,SIZE1]], + stretch: {left:[0xE00E,SIZE7], rep:[0xE00F,SIZE7], right:[0xE010,SIZE7]} + }, + 0x20D7: + { + dir: H, + HW: [[416,MAIN], [547,SIZE1]], + stretch: {left:[0xE011,SIZE7], rep:[0xE012,SIZE7], right:[0xE013,SIZE7]} + }, + 0x20E1: + { + dir: H, + HW: [[470,MARKS], [603,SIZE1]], + stretch: {left:[0xE014,SIZE7], rep:[0xE015,SIZE7], right:[0xE016,SIZE7]} + }, + 0x20E9: + { + dir: H, + HW: [[360,MARKS], [735,SIZE1], [1110,SIZE2], [1485,SIZE3], [1860,SIZE4], [2235,SIZE5], [2610,SIZE6], [2985,SIZE7]], + stretch: {left:[0xE11B,SIZE7], rep:[0xE11C,SIZE7], right:[0xE11D,SIZE7]} + }, + 0x20EC: + { + dir: H, + HW: [[422,MARKS], [555,SIZE1]], + stretch: {left:[0xE017,SIZE7], rep:[0xE018,SIZE7], right:[0xE019,SIZE7]} + }, + 0x20ED: + { + dir: H, + HW: [[422,MARKS], [555,SIZE1]], + stretch: {left:[0xE01A,SIZE7], rep:[0xE01B,SIZE7], right:[0xE01C,SIZE7]} + }, + 0x20EE: + { + dir: H, + HW: [[416,MARKS], [547,SIZE1]], + stretch: {left:[0xE01D,SIZE7], rep:[0xE01E,SIZE7], right:[0xE01F,SIZE7]} + }, + 0x20EF: + { + dir: H, + HW: [[416,MARKS], [547,SIZE1]], + stretch: {left:[0xE020,SIZE7], rep:[0xE021,SIZE7], right:[0xE022,SIZE7]} + }, + 0x2196: + { + dir: V, + HW: [[917,MAIN], [1383,SIZE1]] + }, + 0x2197: + { + dir: V, + HW: [[917,MAIN], [1383,SIZE1]] + }, + 0x2198: + { + dir: V, + HW: [[917,MAIN], [1383,SIZE1]] + }, + 0x2199: + { + dir: V, + HW: [[917,MAIN], [1383,SIZE1]] + }, + 0x219A: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE02F,SIZE7], rep:[0xE030,SIZE7], mid:[0xE031,SIZE7], right:[0xE032,SIZE7]} + }, + 0x219B: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE033,SIZE7], rep:[0xE034,SIZE7], mid:[0xE035,SIZE7], right:[0xE036,SIZE7]} + }, + 0x219E: + { + dir: H, + HW: [[905,MAIN], [1351,SIZE1]], + stretch: {left:[0xE041,SIZE7], rep:[0xE042,SIZE7], right:[0xE043,SIZE7]} + }, + 0x219F: + { + dir: V, + HW: [[902,ARROWS], [1348,SIZE1]], + stretch: {bot:[0xE047,SIZE7], ext:[0xE048,SIZE7], top:[0xE049,SIZE7]} + }, + 0x21A0: + { + dir: H, + HW: [[905,MAIN], [1351,SIZE1]], + stretch: {left:[0xE044,SIZE7], rep:[0xE045,SIZE7], right:[0xE046,SIZE7]} + }, + 0x21A1: + { + dir: V, + HW: [[902,ARROWS], [1348,SIZE1]], + stretch: {bot:[0xE04A,SIZE7], ext:[0xE04B,SIZE7], top:[0xE04C,SIZE7]} + }, + 0x21A2: + { + dir: H, + HW: [[1080,MAIN], [1546,SIZE1]], + stretch: {left:[0xE04D,SIZE7], rep:[0xE04E,SIZE7], right:[0xE04F,SIZE7]} + }, + 0x21A3: + { + dir: H, + HW: [[1080,MAIN], [1546,SIZE1]], + stretch: {left:[0xE050,SIZE7], rep:[0xE051,SIZE7], right:[0xE052,SIZE7]} + }, + 0x21A5: + { + dir: V, + HW: [[862,ARROWS], [1328,SIZE1]], + stretch: {bot:[0xE059,SIZE7], ext:[0xE05A,SIZE7], top:[0xE05B,SIZE7]} + }, + 0x21A7: + { + dir: V, + HW: [[862,ARROWS], [1328,SIZE1]], + stretch: {bot:[0xE05C,SIZE7], ext:[0xE05D,SIZE7], top:[0xE05E,SIZE7]} + }, + 0x21A9: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE062,SIZE7], rep:[0xE063,SIZE7], right:[0xE064,SIZE7]} + }, + 0x21AA: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE05F,SIZE7], rep:[0xE060,SIZE7], right:[0xE061,SIZE7]} + }, + 0x21AB: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE068,SIZE7], rep:[0xE069,SIZE7], right:[0xE06A,SIZE7]} + }, + 0x21AC: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE065,SIZE7], rep:[0xE066,SIZE7], right:[0xE067,SIZE7]} + }, + 0x21AD: + { + dir: H, + HW: [[884,MAIN], [1330,SIZE1]] + }, + 0x21AE: + { + dir: H, + HW: [[884,MAIN], [1330,SIZE1]], + stretch: {left:[0xE03D,SIZE7], rep:[0xE03E,SIZE7], mid:[0xE03F,SIZE7], right:[0xE040,SIZE7]} + }, + 0x21B0: + { + dir: V, + HW: [[858,MAIN], [1168,SIZE1]] + }, + 0x21B1: + { + dir: V, + HW: [[858,MAIN], [1168,SIZE1]] + }, + 0x21B2: + { + dir: V, + HW: [[858,ARROWS], [1168,SIZE1]] + }, + 0x21B3: + { + dir: V, + HW: [[858,ARROWS], [1168,SIZE1]] + }, + 0x21B6: + { + dir: H, + HW: [[868,MAIN], [1218,SIZE1]] + }, + 0x21B7: + { + dir: H, + HW: [[868,MAIN], [1218,SIZE1]] + }, + 0x21BC: + { + dir: H, + HW: [[900,MAIN], [1366,SIZE1]], + stretch: {left:[0xE06B,SIZE7], rep:[0xE06C,SIZE7], right:[0xE06D,SIZE7]} + }, + 0x21BD: + { + dir: H, + HW: [[900,MAIN], [1366,SIZE1]], + stretch: {left:[0xE071,SIZE7], rep:[0xE072,SIZE7], right:[0xE073,SIZE7]} + }, + 0x21BE: + { + dir: V, + HW: [[900,MAIN], [1366,SIZE1]], + stretch: {bot:[0xE077,SIZE7], ext:[0xE078,SIZE7], top:[0xE079,SIZE7]} + }, + 0x21BF: + { + dir: V, + HW: [[900,MAIN], [1366,SIZE1]], + stretch: {bot:[0xE07D,SIZE7], ext:[0xE07E,SIZE7], top:[0xE07F,SIZE7]} + }, + 0x21C0: + { + dir: H, + HW: [[900,MAIN], [1366,SIZE1]], + stretch: {left:[0xE06E,SIZE7], rep:[0xE06F,SIZE7], right:[0xE070,SIZE7]} + }, + 0x21C1: + { + dir: H, + HW: [[900,MAIN], [1366,SIZE1]], + stretch: {left:[0xE074,SIZE7], rep:[0xE075,SIZE7], right:[0xE076,SIZE7]} + }, + 0x21C2: + { + dir: V, + HW: [[900,MAIN], [1366,SIZE1]], + stretch: {bot:[0xE07A,SIZE7], ext:[0xE07B,SIZE7], top:[0xE07C,SIZE7]} + }, + 0x21C3: + { + dir: V, + HW: [[900,MAIN], [1366,SIZE1]], + stretch: {bot:[0xE080,SIZE7], ext:[0xE081,SIZE7], top:[0xE082,SIZE7]} + }, + 0x21C4: + { + dir: H, + HW: [[906,MAIN], [1372,SIZE1]], + stretch: {left:[0xE083,SIZE7], rep:[0xE084,SIZE7], right:[0xE085,SIZE7]} + }, + 0x21C5: + { + dir: V, + HW: [[906,ARROWS], [1372,SIZE1]], + stretch: {bot:[0xE089,SIZE7], ext:[0xE08A,SIZE7], top:[0xE08B,SIZE7]} + }, + 0x21C6: + { + dir: H, + HW: [[906,MAIN], [1372,SIZE1]], + stretch: {left:[0xE086,SIZE7], rep:[0xE087,SIZE7], right:[0xE088,SIZE7]} + }, + 0x21C7: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE08F,SIZE7], rep:[0xE090,SIZE7], right:[0xE091,SIZE7]} + }, + 0x21C8: + { + dir: V, + HW: [[882,MAIN], [1348,SIZE1]], + stretch: {bot:[0xE095,SIZE7], ext:[0xE096,SIZE7], top:[0xE097,SIZE7]} + }, + 0x21C9: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE092,SIZE7], rep:[0xE093,SIZE7], right:[0xE094,SIZE7]} + }, + 0x21CA: + { + dir: V, + HW: [[882,MAIN], [1348,SIZE1]], + stretch: {bot:[0xE098,SIZE7], ext:[0xE099,SIZE7], top:[0xE09A,SIZE7]} + }, + 0x21CB: + { + dir: H, + HW: [[906,MAIN], [1372,SIZE1]], + stretch: {left:[0xE0A1,SIZE7], rep:[0xE0A2,SIZE7], right:[0xE0A3,SIZE7]} + }, + 0x21CC: + { + dir: H, + HW: [[906,MAIN], [1372,SIZE1]], + stretch: {left:[0xE0A4,SIZE7], rep:[0xE0A5,SIZE7], right:[0xE0A6,SIZE7]} + }, + 0x21CD: + { + dir: H, + HW: [[879,MAIN], [1345,SIZE1]], + stretch: {left:[0xE0B9,SIZE7], rep:[0xE0BA,SIZE7], mid:[0xE0BB,SIZE7], right:[0xE0BC,SIZE7]} + }, + 0x21CE: + { + dir: H, + HW: [[956,MAIN], [1422,SIZE1]], + stretch: {left:[0xE0C1,SIZE7], rep:[0xE0C2,SIZE7], mid:[0xE0C3,SIZE7], right:[0xE0C4,SIZE7]} + }, + 0x21CF: + { + dir: H, + HW: [[879,MAIN], [1345,SIZE1]], + stretch: {left:[0xE0BD,SIZE7], rep:[0xE0BE,SIZE7], mid:[0xE0BF,SIZE7], right:[0xE0C0,SIZE7]} + }, + 0x21D6: + { + dir: V, + HW: [[954,ARROWS], [1420,SIZE1]] + }, + 0x21D7: + { + dir: V, + HW: [[954,ARROWS], [1420,SIZE1]] + }, + 0x21D8: + { + dir: V, + HW: [[954,ARROWS], [1420,SIZE1]] + }, + 0x21D9: + { + dir: V, + HW: [[954,ARROWS], [1420,SIZE1]] + }, + 0x21DA: + { + dir: H, + HW: [[903,MAIN], [1349,SIZE1]], + stretch: {left:[0xE0CB,SIZE7], rep:[0xE0CC,SIZE7], right:[0xE0CD,SIZE7]} + }, + 0x21DB: + { + dir: H, + HW: [[903,MAIN], [1349,SIZE1]], + stretch: {left:[0xE0CE,SIZE7], rep:[0xE0CF,SIZE7], right:[0xE0D0,SIZE7]} + }, + 0x21DC: + { + dir: H, + HW: [[885,ARROWS], [1351,SIZE1]] + }, + 0x21DD: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]] + }, + 0x21E6: + { + dir: H, + HW: [[938,ARROWS], [1384,SIZE1]], + stretch: {left:[0xE0D1,SIZE7], rep:[0xE0D2,SIZE7], right:[0xE0D3,SIZE7]} + }, + 0x21E7: + { + dir: V, + HW: [[938,ARROWS], [1384,SIZE1]], + stretch: {bot:[0xE0D7,SIZE7], ext:[0xE0D8,SIZE7], top:[0xE0D9,SIZE7]} + }, + 0x21E8: + { + dir: H, + HW: [[938,ARROWS], [1384,SIZE1]], + stretch: {left:[0xE0D4,SIZE7], rep:[0xE0D5,SIZE7], right:[0xE0D6,SIZE7]} + }, + 0x21E9: + { + dir: V, + HW: [[938,ARROWS], [1384,SIZE1]], + stretch: {bot:[0xE0DA,SIZE7], ext:[0xE0DB,SIZE7], top:[0xE0DC,SIZE7]} + }, + 0x21F3: + { + dir: V, + HW: [[950,ARROWS], [1396,SIZE1]], + stretch: {bot:[0xE0DD,SIZE7], ext:[0xE0DE,SIZE7], top:[0xE0DF,SIZE7]} + }, + 0x21F5: + { + dir: V, + HW: [[906,ARROWS], [1372,SIZE1]], + stretch: {bot:[0xE08C,SIZE7], ext:[0xE08D,SIZE7], top:[0xE08E,SIZE7]} + }, + 0x21F6: + { + dir: H, + HW: [[885,ARROWS], [1351,SIZE1]], + stretch: {left:[0xE09B,SIZE7], rep:[0xE09C,SIZE7], right:[0xE09D,SIZE7]} + }, + 0x220F: + { + dir: V, + HW: [[1000,OPERATORS], [1400,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[1000,OPERATORS], [1400,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[1000,OPERATORS], [1400,SIZE1]] + }, + 0x222B: + { + dir: V, + HW: [[1111,MAIN], [2222,SIZE1]] + }, + 0x222C: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x222D: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x222E: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x222F: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x2230: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x2231: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x2232: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x2233: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x2261: + { + dir: H, + HW: [[666,MAIN]], + stretch: {left:[0xE12D,SIZE7], rep:[0xE12E,SIZE7], right:[0xE12F,SIZE7]} + }, + 0x2263: + { + dir: H, + HW: [[666,OPERATORS]], + stretch: {left:[0xE130,SIZE7], rep:[0xE131,SIZE7], right:[0xE132,SIZE7]} + }, + 0x22A2: + { + dir: V, + HW: [[684,MAIN], [868,SIZE1]] + }, + 0x22A3: + { + dir: V, + HW: [[684,MAIN], [868,SIZE1]] + }, + 0x22A4: + { + dir: V, + HW: [[684,MAIN], [868,SIZE1]] + }, + 0x22A5: + { + dir: V, + HW: [[684,MAIN], [868,SIZE1]] + }, + 0x22C0: + { + dir: V, + HW: [[1044,OPERATORS], [1393,SIZE1]] + }, + 0x22C1: + { + dir: V, + HW: [[1044,OPERATORS], [1393,SIZE1]] + }, + 0x22C2: + { + dir: V, + HW: [[1022,OPERATORS], [1356,SIZE1]] + }, + 0x22C3: + { + dir: V, + HW: [[1022,OPERATORS], [1356,SIZE1]] + }, + 0x23B4: + { + dir: H, + HW: [[360,MAIN], [735,SIZE1], [1110,SIZE2], [1485,SIZE3], [1860,SIZE4], [2235,SIZE5], [2610,SIZE6], [2985,SIZE7]], + stretch: {left:[0xE11B,SIZE7], rep:[0xE11C,SIZE7], right:[0xE11D,SIZE7]} + }, + 0x23B5: + { + dir: H, + HW: [[360,MAIN], [735,SIZE1], [1110,SIZE2], [1485,SIZE3], [1860,SIZE4], [2235,SIZE5], [2610,SIZE6], [2985,SIZE7]], + stretch: {left:[0xE11E,SIZE7], rep:[0xE11F,SIZE7], right:[0xE120,SIZE7]} + }, + 0x23DC: + { + dir: H, + HW: [[504,MAIN], [1006,SIZE1], [1508,SIZE2], [2012,SIZE3], [2516,SIZE4], [3020,SIZE5], [3524,SIZE6], [4032,SIZE7]], + stretch: {left:[0xE115,SIZE7], rep:[0xE116,SIZE7], right:[0xE117,SIZE7]} + }, + 0x23DD: + { + dir: H, + HW: [[504,MAIN], [1006,SIZE1], [1508,SIZE2], [2012,SIZE3], [2516,SIZE4], [3020,SIZE5], [3524,SIZE6], [4032,SIZE7]], + stretch: {left:[0xE118,SIZE7], rep:[0xE119,SIZE7], right:[0xE11A,SIZE7]} + }, + 0x23E0: + { + dir: H, + HW: [[546,MAIN], [1048,SIZE1], [1550,SIZE2], [2056,SIZE3], [2564,SIZE4], [3068,SIZE5], [3574,SIZE6], [4082,SIZE7]], + stretch: {left:[0xE121,SIZE7], rep:[0xE122,SIZE7], right:[0xE123,SIZE7]} + }, + 0x23E1: + { + dir: H, + HW: [[546,MAIN], [1048,SIZE1], [1550,SIZE2], [2056,SIZE3], [2564,SIZE4], [3068,SIZE5], [3574,SIZE6], [4082,SIZE7]], + stretch: {left:[0xE124,SIZE7], rep:[0xE125,SIZE7], right:[0xE126,SIZE7]} + }, + 0x27A1: + { + dir: H, + HW: [[865,MISC], [1311,SIZE1]], + stretch: {left:[0xE0E6,SIZE7], rep:[0xE0E7,SIZE7], right:[0xE0E8,SIZE7]} + }, + 0x27E6: + { + dir: V, + HW: [[1000,SYMBOLS], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {bot:[0xE107,SIZE7], ext:[0xE108,SIZE7], top:[0xE109,SIZE7]} + }, + 0x27E7: + { + dir: V, + HW: [[1000,SYMBOLS], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {bot:[0xE10A,SIZE7], ext:[0xE10B,SIZE7], top:[0xE10C,SIZE7]} + }, + 0x27EA: + { + dir: V, + HW: [[1000,SYMBOLS], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]] + }, + 0x27EB: + { + dir: V, + HW: [[1000,SYMBOLS], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]] + }, + 0x2A00: + { + dir: V, + HW: [[986,OPERATORS], [1304,SIZE1]] + }, + 0x2A01: + { + dir: V, + HW: [[986,OPERATORS], [1304,SIZE1]] + }, + 0x2A02: + { + dir: V, + HW: [[986,OPERATORS], [1304,SIZE1]] + }, + 0x2A03: + { + dir: V, + HW: [[1022,OPERATORS], [1356,SIZE1]] + }, + 0x2A04: + { + dir: V, + HW: [[1022,OPERATORS], [1356,SIZE1]] + }, + 0x2A05: + { + dir: V, + HW: [[1028,OPERATORS], [1372,SIZE1]] + }, + 0x2A06: + { + dir: V, + HW: [[1028,OPERATORS], [1372,SIZE1]] + }, + 0x2A09: + { + dir: V, + HW: [[980,OPERATORS], [1259,SIZE1]] + }, + 0x2A0C: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x2A11: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x2B04: + { + dir: H, + HW: [[950,SHAPES], [1396,SIZE1]], + stretch: {left:[0xE0E0,SIZE7], rep:[0xE0E1,SIZE7], right:[0xE0E2,SIZE7]} + }, + 0x2B05: + { + dir: H, + HW: [[865,SHAPES], [1311,SIZE1]], + stretch: {left:[0xE0E3,SIZE7], rep:[0xE0E4,SIZE7], right:[0xE0E5,SIZE7]} + }, + 0x2B06: + { + dir: V, + HW: [[865,SHAPES], [1311,SIZE1]], + stretch: {bot:[0xE0E9,SIZE7], ext:[0xE0EA,SIZE7], top:[0xE0EB,SIZE7]} + }, + 0x2B07: + { + dir: V, + HW: [[865,SHAPES], [1311,SIZE1]], + stretch: {bot:[0xE0EC,SIZE7], ext:[0xE0ED,SIZE7], top:[0xE0EE,SIZE7]} + }, + 0x2B0C: + { + dir: H, + HW: [[844,SHAPES], [1290,SIZE1]], + stretch: {left:[0xE0EF,SIZE7], rep:[0xE0F0,SIZE7], right:[0xE0F1,SIZE7]} + }, + 0x2B0D: + { + dir: V, + HW: [[844,SHAPES], [1290,SIZE1]], + stretch: {bot:[0xE0F2,SIZE7], ext:[0xE0F3,SIZE7], top:[0xE0F4,SIZE7]} + }, + 0x2B31: + { + dir: H, + HW: [[885,SHAPES], [1351,SIZE1]], + stretch: {left:[0xE09E,SIZE7], rep:[0xE09F,SIZE7], right:[0xE0A0,SIZE7]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(SVG.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["SVG"]); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/fontdata.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/fontdata.js new file mode 100644 index 0000000..202f889 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Latin-Modern/fontdata.js @@ -0,0 +1,691 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Latin-Modern/fontdata.js + * + * Initializes the SVG OutputJax to use the Latin-Modern fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG,MML,AJAX,HUB) { + + var VERSION = "2.3"; + + var ALPHABETS = "LatinModernMathJax_Alphabets", + ARROWS = "LatinModernMathJax_Arrows", + DOUBLESTRUCK = "LatinModernMathJax_DoubleStruck", + FRAKTUR = "LatinModernMathJax_Fraktur", + LATIN = "LatinModernMathJax_Latin", + MAIN = "LatinModernMathJax_Main", + MARKS = "LatinModernMathJax_Marks", + MISC = "LatinModernMathJax_Misc", + MONOSPACE = "LatinModernMathJax_Monospace", + NONUNICODE = "LatinModernMathJax_NonUnicode", + NORMAL = "LatinModernMathJax_Normal", + OPERATORS = "LatinModernMathJax_Operators", + SANSSERIF = "LatinModernMathJax_SansSerif", + SCRIPT = "LatinModernMathJax_Script", + SHAPES = "LatinModernMathJax_Shapes", + SIZE1 = "LatinModernMathJax_Size1", + SIZE2 = "LatinModernMathJax_Size2", + SIZE3 = "LatinModernMathJax_Size3", + SIZE4 = "LatinModernMathJax_Size4", + SIZE5 = "LatinModernMathJax_Size5", + SIZE6 = "LatinModernMathJax_Size6", + SIZE7 = "LatinModernMathJax_Size7", + SYMBOLS = "LatinModernMathJax_Symbols", + VARIANTS = "LatinModernMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + SVG.Augment({ + FONTDATA: { + version: VERSION, + + + baselineskip: 1200, + lineH: 800, lineD: 200, + + FONTS: { + "LatinModernMathJax_Alphabets": "Alphabets/Regular/Main.js", + "LatinModernMathJax_Arrows": "Arrows/Regular/Main.js", + "LatinModernMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "LatinModernMathJax_Fraktur": "Fraktur/Regular/Main.js", + "LatinModernMathJax_Latin": "Latin/Regular/Main.js", + "LatinModernMathJax_Main": "Main/Regular/Main.js", + "LatinModernMathJax_Marks": "Marks/Regular/Main.js", + "LatinModernMathJax_Misc": "Misc/Regular/Main.js", + "LatinModernMathJax_Monospace": "Monospace/Regular/Main.js", + "LatinModernMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "LatinModernMathJax_Normal": "Normal/Regular/Main.js", + "LatinModernMathJax_Operators": "Operators/Regular/Main.js", + "LatinModernMathJax_SansSerif": "SansSerif/Regular/Main.js", + "LatinModernMathJax_Script": "Script/Regular/Main.js", + "LatinModernMathJax_Shapes": "Shapes/Regular/Main.js", + "LatinModernMathJax_Size1": "Size1/Regular/Main.js", + "LatinModernMathJax_Size2": "Size2/Regular/Main.js", + "LatinModernMathJax_Size3": "Size3/Regular/Main.js", + "LatinModernMathJax_Size4": "Size4/Regular/Main.js", + "LatinModernMathJax_Size5": "Size5/Regular/Main.js", + "LatinModernMathJax_Size6": "Size6/Regular/Main.js", + "LatinModernMathJax_Size7": "Size7/Regular/Main.js", + "LatinModernMathJax_Symbols": "Symbols/Regular/Main.js", + "LatinModernMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, offsetA: 0x1D434, offsetG: 0x1D6E2, remap: {0x1D455: 0x210E}}, + "bolditalic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true, offsetA: 0x1D468, offsetG: 0x1D71C}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Latin-Modern-variant": {fonts: [VARIANTS,MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x0305, + + REMAP: { + 0x25C2: 0x25C0, + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x2758: 0x2223, + 0x25B8: 0x25B6, + 0x03D2: 0x03A5, + 0x25B4: 0x25B2, + 0x25B5: 0x25B3, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF, + 0x02B9: 0x2032, + 0x25FB: 0x25A1, + 0x25FC: 0x25A0, + 0x25BE: 0x25BC, + 0x203E: 0x0305, + 0x25BF: 0x25BD + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[996,MAIN], [1094,SIZE1], [1194,SIZE2], [1444,SIZE3], [1792,SIZE4], [2092,SIZE5], [2392,SIZE6], [2990,SIZE7]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[996,MAIN], [1094,SIZE1], [1194,SIZE2], [1444,SIZE3], [1792,SIZE4], [2092,SIZE5], [2392,SIZE6], [2990,SIZE7]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0x305, dir: H}, + 0x2F: + { + dir: V, + HW: [[1000,MAIN], [1310,SIZE1], [1716,SIZE2], [1771,SIZE2,1.032], [2248,SIZE3], [2944,SIZE4], [3858,SIZE5], [5054,SIZE6], [6620,SIZE7]] + }, + 0x3D: + { + dir: H, + HW: [[666,MAIN]], + stretch: {left:[0xE000,SIZE7], rep:[0xE001,SIZE7], right:[0xE002,SIZE7]} + }, + 0x5B: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[1000,MAIN], [1310,SIZE1], [1716,SIZE2], [1771,SIZE2,1.032], [2248,SIZE3], [2944,SIZE4], [3858,SIZE5], [5054,SIZE6], [6620,SIZE7]] + }, + 0x5D: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5E: {alias: 0x302, dir: H}, + 0x5F: {alias: 0x332, dir: H}, + 0x7B: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0xE003,SIZE7], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[1000,MAIN], [1202,SIZE1], [1444,SIZE2], [1734,SIZE3], [2084,SIZE4], [2502,SIZE5], [3004,SIZE6], [3606,SIZE7]], + stretch: {bot:[0xE004,SIZE7], ext:[0xE005,SIZE7], top:[0xE006,SIZE7]} + }, + 0x7D: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0xE007,SIZE7], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0x7E: {alias: 0x303, dir: H}, + 0xAF: {alias: 0x332, dir: H}, + 0x2C6: {alias: 0x302, dir: H}, + 0x2C9: {alias: 0x305, dir: H}, + 0x2DC: {alias: 0x303, dir: H}, + 0x302: + { + dir: H, + HW: [[364,MAIN], [644,SIZE1], [768,SIZE2], [919,SIZE3], [1100,SIZE4], [1320,SIZE5], [1581,SIZE6], [1896,SIZE7]] + }, + 0x303: + { + dir: H, + HW: [[370,MAIN], [652,SIZE1], [778,SIZE2], [931,SIZE3], [1115,SIZE4], [1335,SIZE5], [1599,SIZE6], [1915,SIZE7]] + }, + 0x305: + { + dir: H, + HW: [[392,MARKS], [568,SIZE1]], + stretch: {left:[0xE0FB,SIZE7], rep:[0xE0FC,SIZE7], right:[0xE0FD,SIZE7]} + }, + 0x306: EXTRAH, + 0x30C: + { + dir: H, + HW: [[364,MAIN], [644,SIZE1], [768,SIZE2], [919,SIZE3], [1100,SIZE4], [1320,SIZE5], [1581,SIZE6], [1896,SIZE7]] + }, + 0x311: EXTRAH, + 0x32C: EXTRAH, + 0x32D: EXTRAH, + 0x32E: EXTRAH, + 0x32F: EXTRAH, + 0x330: EXTRAH, + 0x332: + { + dir: H, + HW: [[392,MARKS], [568,SIZE1]], + stretch: {left:[0xE0F5,SIZE7], rep:[0xE0F6,SIZE7], right:[0xE0F7,SIZE7]} + }, + 0x333: EXTRAH, + 0x33F: EXTRAH, + 0x2015: {alias: 0x305, dir: H}, + 0x2016: + { + dir: V, + HW: [[1000,MAIN], [1202,SIZE1], [1444,SIZE2], [1734,SIZE3], [2084,SIZE4], [2502,SIZE5], [3004,SIZE6], [3606,SIZE7]], + stretch: {bot:[0xE12A,SIZE7], ext:[0xE12B,SIZE7], top:[0xE12C,SIZE7]} + }, + 0x2017: {alias: 0x305, dir: H}, + 0x203E: {alias: 0x305, dir: H}, + 0x2044: + { + dir: V, + HW: [[1000,MAIN], [1310,SIZE1], [1716,SIZE2], [2248,SIZE3], [2944,SIZE4], [3858,SIZE5], [5054,SIZE6], [6620,SIZE7]] + }, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: EXTRAH, + 0x20E1: EXTRAH, + 0x20E9: EXTRAH, + 0x20EC: EXTRAH, + 0x20ED: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2190: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE023,SIZE7], rep:[0xE024,SIZE7], right:[0xE025,SIZE7]} + }, + 0x2191: + { + dir: V, + HW: [[882,MAIN], [1348,SIZE1]], + stretch: {bot:[0xE029,SIZE7], ext:[0xE02A,SIZE7], top:[0xE02B,SIZE7]} + }, + 0x2192: + { + dir: H, + HW: [[885,MAIN], [1351,SIZE1]], + stretch: {left:[0xE026,SIZE7], rep:[0xE027,SIZE7], right:[0xE028,SIZE7]} + }, + 0x2193: + { + dir: V, + HW: [[882,MAIN], [1348,SIZE1]], + stretch: {bot:[0xE02C,SIZE7], ext:[0xE02D,SIZE7], top:[0xE02E,SIZE7]} + }, + 0x2194: + { + dir: H, + HW: [[884,MAIN], [1330,SIZE1]], + stretch: {left:[0xE037,SIZE7], rep:[0xE038,SIZE7], right:[0xE039,SIZE7]} + }, + 0x2195: + { + dir: V, + HW: [[1014,MAIN], [1014,SIZE1]], + stretch: {bot:[0xE03A,SIZE7], ext:[0xE03B,SIZE7], top:[0xE03C,SIZE7]} + }, + 0x2196: EXTRAV, + 0x2197: EXTRAV, + 0x2198: EXTRAV, + 0x2199: EXTRAV, + 0x219A: EXTRAH, + 0x219B: EXTRAH, + 0x219E: EXTRAH, + 0x219F: EXTRAV, + 0x21A0: EXTRAH, + 0x21A1: EXTRAV, + 0x21A2: EXTRAH, + 0x21A3: EXTRAH, + 0x21A4: + { + dir: H, + HW: [[865,ARROWS], [1331,SIZE1]], + stretch: {left:[0xE053,SIZE7], rep:[0xE054,SIZE7], right:[0xE055,SIZE7]} + }, + 0x21A5: EXTRAV, + 0x21A6: + { + dir: H, + HW: [[865,MAIN], [1331,SIZE1]], + stretch: {left:[0xE056,SIZE7], rep:[0xE057,SIZE7], right:[0xE058,SIZE7]} + }, + 0x21A7: EXTRAV, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21AB: EXTRAH, + 0x21AC: EXTRAH, + 0x21AD: EXTRAH, + 0x21AE: EXTRAH, + 0x21B0: EXTRAV, + 0x21B1: EXTRAV, + 0x21B2: EXTRAV, + 0x21B3: EXTRAV, + 0x21B6: EXTRAH, + 0x21B7: EXTRAH, + 0x21BC: EXTRAH, + 0x21BD: EXTRAH, + 0x21BE: EXTRAV, + 0x21BF: EXTRAV, + 0x21C0: EXTRAH, + 0x21C1: EXTRAH, + 0x21C2: EXTRAV, + 0x21C3: EXTRAV, + 0x21C4: EXTRAH, + 0x21C5: EXTRAV, + 0x21C6: EXTRAH, + 0x21C7: EXTRAH, + 0x21C8: EXTRAV, + 0x21C9: EXTRAH, + 0x21CA: EXTRAV, + 0x21CB: EXTRAH, + 0x21CC: EXTRAH, + 0x21CD: EXTRAH, + 0x21CE: EXTRAH, + 0x21CF: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[879,MAIN], [1345,SIZE1]], + stretch: {left:[0xE0A7,SIZE7], rep:[0xE0A8,SIZE7], right:[0xE0A9,SIZE7]} + }, + 0x21D1: + { + dir: V, + HW: [[879,MAIN], [1345,SIZE1]], + stretch: {bot:[0xE0AD,SIZE7], ext:[0xE0AE,SIZE7], top:[0xE0AF,SIZE7]} + }, + 0x21D2: + { + dir: H, + HW: [[879,MAIN], [1345,SIZE1]], + stretch: {left:[0xE0AA,SIZE7], rep:[0xE0AB,SIZE7], right:[0xE0AC,SIZE7]} + }, + 0x21D3: + { + dir: V, + HW: [[879,MAIN], [1345,SIZE1]], + stretch: {bot:[0xE0B0,SIZE7], ext:[0xE0B1,SIZE7], top:[0xE0B2,SIZE7]} + }, + 0x21D4: + { + dir: H, + HW: [[956,MAIN], [1422,SIZE1]], + stretch: {left:[0xE0B3,SIZE7], rep:[0xE0B4,SIZE7], right:[0xE0B5,SIZE7]} + }, + 0x21D5: + { + dir: V, + HW: [[956,MAIN], [1422,SIZE1]], + stretch: {bot:[0xE0B6,SIZE7], ext:[0xE0B7,SIZE7], top:[0xE0B8,SIZE7]} + }, + 0x21D6: EXTRAV, + 0x21D7: EXTRAV, + 0x21D8: EXTRAV, + 0x21D9: EXTRAV, + 0x21DA: EXTRAH, + 0x21DB: EXTRAH, + 0x21DC: EXTRAH, + 0x21DD: EXTRAH, + 0x21E6: EXTRAH, + 0x21E7: EXTRAV, + 0x21E8: EXTRAH, + 0x21E9: EXTRAV, + 0x21F3: EXTRAV, + 0x21F5: EXTRAV, + 0x21F6: EXTRAH, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: + { + dir: H, + HW: [[666,MAIN]], + stretch: {left:[0xE127,SIZE7], rep:[0xE128,SIZE7], right:[0xE129,SIZE7]} + }, + 0x2215: {alias: 0x2044, dir: V}, + 0x221A: + { + dir: V, + HW: [[1000,MAIN], [1200,SIZE1], [1800,SIZE2], [2400,SIZE3], [3000,SIZE4]], + stretch: {bot:[0x23B7,SYMBOLS], ext:[0xE133,SIZE7], top:[0xE134,SIZE7]} + }, + 0x2223: + { + dir: V, + HW: [[1000,MAIN], [1202,SIZE1], [1444,SIZE2], [1734,SIZE3], [2084,SIZE4], [2502,SIZE5], [3004,SIZE6], [3606,SIZE7]], + stretch: {bot:[0xE004,SIZE7], ext:[0xE005,SIZE7], top:[0xE006,SIZE7]} + }, + 0x2225: + { + dir: V, + HW: [[1000,MAIN], [1202,SIZE1], [1444,SIZE2], [1734,SIZE3], [2084,SIZE4], [2502,SIZE5], [3004,SIZE6], [3606,SIZE7]], + stretch: {bot:[0xE12A,SIZE7], ext:[0xE12B,SIZE7], top:[0xE12C,SIZE7]} + }, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x2261: EXTRAH, + 0x2263: EXTRAH, + 0x22A2: EXTRAV, + 0x22A3: EXTRAV, + 0x22A4: EXTRAV, + 0x22A5: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: + { + dir: V, + HW: [[1000,SYMBOLS], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]] + }, + 0x232A: + { + dir: V, + HW: [[1000,SYMBOLS], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]] + }, + 0x23AA: + { + dir: V, + HW: [[748,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: {alias: 0x305, dir: H}, + 0x23B0: + { + dir: V, + HW: [[750,SYMBOLS,null,0x23A7]], + stretch: {top:[0x23A7,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23AD,SYMBOLS]} + }, + 0x23B1: + { + dir: V, + HW: [[750,SYMBOLS,null,0x23AB]], + stretch: {top:[0x23AB,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23A9,SYMBOLS]} + }, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: + { + dir: V, + HW: [[1000,MAIN,null,0x7C], [1309,MAIN,1.309,0x7C], [1771,MAIN,1.771,0x7C], [2233,MAIN,2.233,0x7C], [2695,MAIN,2.695,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[492,MAIN], [993,SIZE1], [1494,SIZE2], [1996,SIZE3], [2498,SIZE4], [3000,SIZE5], [3502,SIZE6], [4006,SIZE7]], + stretch: {left:[0xE10D,SIZE7], rep:[0xE10E,SIZE7], mid:[0xE10F,SIZE7], right:[0xE110,SIZE7]} + }, + 0x23DF: + { + dir: H, + HW: [[492,MAIN], [993,SIZE1], [1494,SIZE2], [1996,SIZE3], [2498,SIZE4], [3000,SIZE5], [3502,SIZE6], [4006,SIZE7]], + stretch: {left:[0xE111,SIZE7], rep:[0xE112,SIZE7], mid:[0xE113,SIZE7], right:[0xE114,SIZE7]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x305, dir: H}, + 0x27A1: EXTRAH, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]] + }, + 0x27E9: + { + dir: V, + HW: [[1000,MAIN], [1100,SIZE1], [1200,SIZE2], [1450,SIZE3], [1800,SIZE4], [2100,SIZE5], [2400,SIZE6], [3000,SIZE7]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: + { + dir: V, + HW: [[1024,MAIN], [1126,SIZE1], [1228,SIZE2], [1482,SIZE3], [1836,SIZE4], [2140,SIZE5], [2444,SIZE6], [3052,SIZE7]], + stretch: {bot:[0xE101,SIZE7], ext:[0xE102,SIZE7], top:[0xE103,SIZE7]} + }, + 0x27EF: + { + dir: V, + HW: [[1024,MAIN], [1126,SIZE1], [1228,SIZE2], [1482,SIZE3], [1836,SIZE4], [2140,SIZE5], [2444,SIZE6], [3052,SIZE7]], + stretch: {bot:[0xE104,SIZE7], ext:[0xE105,SIZE7], top:[0xE106,SIZE7]} + }, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: + { + dir: H, + HW: [[879,ARROWS], [1325,SIZE1]], + stretch: {left:[0xE0C5,SIZE7], rep:[0xE0C6,SIZE7], right:[0xE0C7,SIZE7]} + }, + 0x2907: + { + dir: H, + HW: [[879,ARROWS], [1325,SIZE1]], + stretch: {left:[0xE0C8,SIZE7], rep:[0xE0C9,SIZE7], right:[0xE0CA,SIZE7]} + }, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A11: EXTRAV, + 0x2B04: EXTRAH, + 0x2B05: EXTRAH, + 0x2B06: EXTRAV, + 0x2B07: EXTRAV, + 0x2B0C: EXTRAH, + 0x2B0D: EXTRAV, + 0x2B31: EXTRAH, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(SVG.fontDir+"/Size7/Regular/Main.js",function () { + var u; + u = SVG.FONTDATA.DELIMITERS[0x23DE].stretch.rep[0]; + SVG.FONTDATA.FONTS[SIZE7][u][0] += 200; // adjust height for brace extender + SVG.FONTDATA.FONTS[SIZE7][u][1] += 200; // adjust depth for brace extender + u = SVG.FONTDATA.DELIMITERS[0x23DF].stretch.rep[0]; + SVG.FONTDATA.FONTS[SIZE7][u][0] += 200; // adjust height for brace extender + SVG.FONTDATA.FONTS[SIZE7][u][1] += 200; // adjust depth for brace extender + }); + MathJax.Hub.Register.LoadHook(SVG.fontDir+"/Size1/Regular/Main.js",function () { + SVG.FONTDATA.FONTS[SIZE1][0x222B][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x222C][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x222D][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x222E][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x222F][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x2230][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x2231][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x2232][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x2233][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x2A0C][2] -= 425; + SVG.FONTDATA.FONTS[SIZE1][0x2A11][2] -= 425; + }); + AJAX.loadComplete(SVG.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax.SVG,MathJax.ElementJax.mml,MathJax.Ajax,MathJax.Hub); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Alphabets/Regular/Main.js new file mode 100644 index 0000000..293cc70 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Alphabets/Regular/Main.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'NeoEulerMathJax_Alphabets', + id: 'NEOEULERALPHABETS', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x2126: [689,2,875,25,844,'835 60l9 -9l-25 -53c-115 9 -231 9 -346 1l9 58c47 11 90 36 124 70c27 26 43 61 54 97c14 47 19 96 19 144c0 84 -22 169 -82 229c-40 40 -97 57 -153 57c-62 0 -126 -17 -170 -62c-31 -30 -51 -69 -65 -110c-16 -49 -23 -101 -23 -153c0 -81 21 -164 79 -223 c29 -29 69 -45 110 -53l-21 -55c-110 10 -219 14 -329 6l17 61c61 -3 137 -6 190 -11l6 15c-26 14 -50 30 -71 51c-24 25 -40 56 -51 90c-13 41 -18 85 -18 128c0 95 28 190 96 257c70 71 171 94 269 94c44 0 89 -5 131 -19c35 -12 68 -29 94 -55c60 -60 81 -146 81 -230 c0 -93 -23 -189 -90 -256c-29 -28 -58 -51 -95 -66v-12c85 4 181 9 251 9'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Alphabets/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Arrows/Regular/Main.js new file mode 100644 index 0000000..92c5bdf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Arrows/Regular/Main.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'NeoEulerMathJax_Arrows', + id: 'NEOEULERARROWS', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x21A4: [500,0,1000,56,944,'944 50v400h-40v-180h-778c38 47 90 126 115 230h-40c-31 -130 -113 -220 -145 -250c30 -28 114 -119 145 -250h40c-25 105 -78 184 -115 230h778v-180h40'], + 0x27FB: [500,0,1690,56,1634,'1634 50v400h-40v-180h-1468c38 47 90 126 115 230h-40c-31 -130 -113 -220 -145 -250c30 -28 114 -119 145 -250h40c-25 105 -78 184 -115 230h1468v-180h40'], + 0x27FD: [598,98,1700,76,1643,'1603 328v-156h-1352c-31 29 -64 55 -99 78c35 23 68 49 99 78h1352zM76 250c145 -72 257 -196 312 -348h40c-31 85 -78 163 -138 230h1313v-182h40v600h-40v-182h-1313c60 67 107 145 138 230h-40c-55 -152 -167 -276 -312 -348'], + 0x27FE: [598,98,1700,75,1643,'1643 250c-146 -72 -258 -196 -313 -348h-40c31 85 78 163 138 230h-1313v-182h-40v600h40v-182h1313c-60 67 -107 145 -138 230h40c55 -152 167 -276 313 -348zM115 328v-156h1352c31 29 64 55 99 78c-35 23 -68 49 -99 78h-1352'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Arrows/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Fraktur/Regular/Main.js new file mode 100644 index 0000000..bb823ae --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Fraktur/Regular/Main.js @@ -0,0 +1,130 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'NeoEulerMathJax_Fraktur', + id: 'NEOEULERFRAKTUR', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x210C: [667,133,720,-8,645,'368 -107l48 64c11 -22 33 -37 58 -37c12 0 24 3 32 9c9 6 19 23 26 37c12 26 17 62 21 90c5 45 6 90 6 135c0 38 -2 75 -12 111c-7 26 -16 52 -35 70c-24 24 -58 32 -91 32c-29 0 -59 -11 -83 -29c-29 -23 -45 -36 -72 -68c21 -52 28 -98 28 -122c0 -18 -2 -38 -10 -51 c-32 -41 -106 -134 -125 -150c-15 14 -31 26 -47 36c-12 9 -27 16 -42 16c-29 0 -52 -25 -66 -40l-12 14c29 52 78 106 119 106c32 0 69 -30 89 -54c20 25 22 44 24 69c0 25 -11 63 -24 87c-23 42 -41 85 -59 130c-11 27 -18 54 -18 83c0 42 26 77 52 109 c41 50 92 90 145 127c34 -34 78 -60 128 -60c10 0 21 5 29 11c7 4 35 26 57 43l13 -15c-43 -42 -110 -108 -142 -108c-21 0 -41 5 -60 12c-29 9 -66 27 -92 40c-16 -16 -28 -31 -39 -53c-8 -16 -10 -40 -10 -58c0 -39 30 -103 52 -149c53 55 115 100 181 138 c64 0 129 -14 181 -53c16 -57 27 -116 27 -176c0 -87 -7 -175 -43 -255c-51 -47 -127 -117 -165 -117c-26 0 -51 8 -69 26'], + 0x2128: [729,139,602,11,533,'181 309l43 63c44 3 81 28 112 59c30 30 48 70 48 112c0 14 -6 27 -16 37c-16 15 -37 21 -59 21c-23 0 -46 -3 -69 -5c-27 -2 -76 -5 -80 -5c-21 0 -43 1 -58 16c-7 7 -11 16 -11 26l69 96h16c-4 -7 -8 -16 -8 -24c0 -7 3 -14 8 -19c16 -15 49 -15 75 -15c8 0 39 1 58 2 c16 0 32 3 48 3c18 0 36 -1 53 -5c12 -3 24 -8 32 -16c16 -16 27 -36 27 -59c0 -50 -23 -97 -59 -133c-34 -34 -74 -65 -113 -89l5 -2c16 3 40 6 55 6c61 0 125 -17 160 -69c11 -37 16 -74 16 -112c0 -88 -31 -172 -80 -245c-69 -57 -155 -91 -245 -91c-32 0 -64 3 -96 11 c0 25 0 61 -1 74c-1 10 -2 20 -9 27s-17 11 -27 11c-11 0 -36 -14 -52 -26l-12 15c23 19 48 35 74 48c21 9 42 16 64 16c16 0 35 0 43 -16c5 -10 5 -42 5 -64c0 -17 0 -39 11 -50s35 -16 51 -16c46 0 79 15 111 47c25 25 44 64 54 97c13 40 18 82 18 124c0 23 -2 46 -8 68 c-5 16 -12 32 -24 44c-33 34 -80 48 -127 48c-32 0 -63 -7 -91 -21'], + 0x212D: [686,24,612,59,613,'267 601l32 -16c63 45 135 74 207 101l28 -81c4 -9 5 -12 10 -18c4 -4 11 -5 19 -5c16 0 38 5 50 9v-23c-35 -17 -78 -36 -117 -41c-27 16 -57 64 -80 101c-13 -4 -24 -11 -32 -21c-16 -20 -17 -38 -17 -47c0 -18 6 -48 13 -68c5 -16 20 -62 20 -93c0 -35 -7 -71 -32 -96 c-38 -37 -89 -56 -142 -64l-12 16c28 7 53 22 74 43c16 16 16 45 16 69c0 23 -11 70 -21 107c-5 19 -9 40 -9 60c0 10 1 20 3 30c-35 -1 -68 -15 -90 -42c-36 -45 -48 -103 -48 -160c0 -84 20 -169 80 -229c59 -60 142 -87 225 -87c34 0 58 6 72 13l86 47v-20 c-42 -35 -96 -71 -144 -102c-27 -6 -54 -8 -82 -8c-88 0 -176 28 -238 89c-30 30 -46 66 -59 106c-16 48 -20 98 -20 148c0 63 15 125 43 181c51 39 106 75 165 101'], + 0x1D504: [697,27,717,22,709,'400 319l-178 -164c40 0 65 -21 87 -43l48 -48c12 1 94 53 144 85v325c0 42 -3 88 -5 127l127 96l16 -11c-15 -13 -36 -32 -42 -42c-7 -9 -10 -21 -11 -32c-5 -54 -5 -156 -5 -234c0 -61 2 -121 5 -181c1 -11 2 -23 5 -32c12 -30 25 -61 43 -85c2 -3 6 -4 9 -4 c5 0 10 2 14 3c16 7 31 14 46 22l6 -16l-144 -112c-31 49 -47 98 -63 150l-203 -150c-14 23 -30 45 -48 64c-24 23 -64 40 -98 40c-37 0 -69 -17 -105 -40l-16 11l112 85c66 49 141 106 181 158c34 44 43 107 43 161c0 47 -14 94 -48 128c-33 33 -76 53 -123 53 c-32 0 -62 -12 -85 -35c-16 -15 -26 -38 -26 -60c0 -10 5 -19 11 -27c9 -14 20 -26 31 -37c15 -15 29 -31 40 -48c7 -12 13 -24 13 -38c0 -26 -14 -50 -31 -70c-24 -27 -54 -47 -86 -63l-16 11c18 10 34 23 47 39c10 12 17 26 17 41c0 10 -5 19 -11 27c-9 13 -20 25 -31 37 c-26 26 -48 58 -48 96c0 40 29 70 57 98c24 24 113 82 193 82c46 0 90 -13 124 -46c33 -34 52 -77 52 -124c0 -68 -18 -136 -48 -197'], + 0x1D505: [691,27,904,49,815,'538 -27c-56 0 -112 21 -162 41c-45 18 -89 34 -125 34c-51 0 -101 -22 -143 -48l-12 21l124 73c125 74 144 130 147 158c3 32 6 103 7 150c0 162 -95 226 -158 226c-40 0 -56 -7 -79 -30c-16 -15 -18 -36 -18 -57c0 -14 18 -38 38 -63c25 -29 51 -64 51 -89 c0 -72 -90 -118 -123 -134l-15 11c27 15 64 48 64 81c0 12 -19 39 -44 70c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c58 0 117 -56 144 -111c22 23 53 46 79 64c37 24 78 42 123 42c23 0 47 -4 64 -21c10 -10 16 -37 22 -66c7 -34 14 -71 31 -88 c6 -5 17 -6 25 -6c15 2 30 6 44 11v-22c-37 -14 -70 -26 -103 -48l-89 -63c110 0 176 -65 176 -159c0 -43 -7 -63 -22 -101c-118 -99 -179 -150 -239 -150zM456 350c39 14 104 38 130 49c30 12 56 27 98 56c-11 5 -17 16 -22 26c-8 19 -13 39 -16 59c-4 26 -12 59 -23 70 c-13 13 -35 24 -53 24c-39 0 -60 -13 -80 -35c-18 -20 -34 -51 -42 -76c6 -25 10 -81 10 -124c0 -14 -1 -35 -2 -49zM421 207l-117 -90c59 0 115 -21 170 -43c42 -16 99 -37 128 -37c26 0 51 9 69 27c30 29 43 70 43 111c0 42 -16 82 -46 111c-36 37 -84 55 -135 55 c-27 0 -54 -5 -79 -16c-4 -41 -14 -81 -33 -118'], + 0x1D507: [690,27,831,27,746,'368 559l16 -11c-14 -9 -26 -20 -38 -32c-13 -13 -25 -27 -35 -42c-6 -10 -12 -21 -12 -32c0 -14 25 -51 42 -75c20 -28 48 -69 48 -90c0 -30 -17 -56 -37 -77c-29 -31 -76 -54 -111 -69c43 -9 92 -25 134 -40c44 -16 117 -43 137 -43c21 0 42 1 58 12c19 13 43 49 59 73 s25 52 31 80c8 37 11 74 11 112c0 71 -17 145 -69 197c-67 67 -162 90 -256 90c-83 0 -172 -16 -231 -76c-44 -44 -64 -110 -67 -169l-21 11c0 82 26 157 85 215c30 30 69 55 109 68c49 16 101 29 152 29c61 0 113 -1 179 -20c43 -12 90 -45 124 -79c48 -48 70 -114 70 -181 c0 -96 -21 -174 -55 -263c-63 -69 -163 -174 -222 -174c-21 0 -79 22 -112 35c-42 17 -74 27 -117 40c-28 8 -57 16 -85 16c-21 0 -40 -10 -56 -22c-21 -15 -37 -36 -51 -58l-16 16c26 51 63 96 107 133c39 0 79 7 113 28c25 15 47 38 47 68c0 28 -14 53 -32 74 c-7 8 -54 67 -54 85c0 16 1 32 9 46c10 19 24 35 39 50c31 31 68 55 107 75'], + 0x1D508: [686,24,662,86,641,'293 601l32 -16c64 45 136 74 208 101l28 -81c4 -9 6 -13 11 -18c4 -4 12 -5 21 -5c16 0 36 4 48 8v-22c-36 -17 -80 -36 -119 -41c-26 15 -56 63 -79 100c-12 -4 -22 -14 -31 -23c-8 -11 -17 -24 -18 -38c0 -20 3 -41 9 -60c15 -45 23 -69 23 -137l102 62 c21 -29 47 -55 77 -75v-9l-67 -38l-59 42c-5 3 -10 5 -15 5c-14 0 -27 -6 -38 -15c-6 -27 -23 -50 -42 -70c-15 -15 -34 -25 -53 -32c-26 -11 -53 -17 -80 -21l-16 16c29 5 55 20 80 37c7 8 11 18 13 28c3 14 4 31 4 45c0 44 -11 87 -23 130c-5 19 -9 38 -9 58 c0 10 1 21 4 32c-35 -1 -69 -15 -90 -42c-36 -45 -49 -103 -49 -160c0 -84 20 -169 80 -229s143 -87 226 -87c14 0 27 1 41 2c40 14 88 40 117 58v-20c-45 -37 -94 -70 -144 -102c-27 -5 -54 -8 -82 -8c-88 0 -175 28 -233 84c-30 30 -50 67 -63 107c-16 48 -21 102 -21 152 c0 63 15 125 42 181c52 39 106 75 165 101'], + 0x1D509: [686,155,611,11,621,'368 293l122 117c23 -24 43 -49 54 -80l-43 -59c-12 21 -28 43 -53 43c-17 0 -49 -22 -71 -40l87 -112c16 -23 21 -59 21 -88c0 -52 -22 -101 -59 -138c-55 -55 -129 -91 -207 -91c-33 0 -63 15 -85 38c-27 25 -31 79 -31 109c0 19 2 37 4 56c2 14 3 29 3 44 c0 42 -6 54 -14 62c-5 6 -13 8 -21 8c-24 0 -48 -12 -59 -18l-5 21c58 39 105 54 131 54c11 0 21 -3 29 -12c14 -17 22 -47 22 -73s0 -39 -6 -65c-5 -21 -8 -42 -8 -64c0 -54 17 -78 29 -90c17 -18 39 -35 64 -35c35 0 66 14 90 38c30 30 43 78 43 119c0 24 -10 47 -23 69 c-22 36 -43 72 -67 107c-22 30 -43 61 -60 94c-10 19 -20 39 -20 60c0 33 19 61 39 85c31 37 69 66 110 91c-35 21 -71 40 -109 55c-25 10 -51 19 -78 19c-26 0 -50 -13 -69 -32c-32 -32 -44 -78 -53 -122l-16 11c6 58 22 117 64 159c35 35 83 53 133 53c30 0 58 -10 85 -21 c43 -18 83 -40 123 -64c19 -11 41 -21 64 -21c24 0 60 37 84 63l9 -14c-23 -31 -55 -72 -83 -99c-15 -14 -32 -30 -53 -30c-23 0 -50 11 -73 25c-28 -9 -62 -29 -78 -47c-14 -15 -25 -38 -25 -63c0 -18 7 -36 15 -51c13 -24 28 -49 44 -71'], + 0x1D50A: [692,25,785,66,711,'672 606l-176 -154c16 2 30 3 45 3c57 0 97 -23 114 -37c33 -27 56 -70 56 -115c0 -79 -37 -152 -93 -207l-154 -104c-31 -11 -51 -17 -83 -17c-86 0 -179 33 -231 85c-68 68 -84 164 -84 259c0 37 4 70 13 106c8 28 19 52 31 77c50 36 102 70 162 99l32 -16l112 75 l10 -11c-27 -23 -53 -53 -53 -90c0 -26 16 -96 26 -137l51 27c33 22 78 57 107 86c-47 16 -94 53 -103 93l68 64c12 -24 27 -45 47 -62c16 -13 34 -23 54 -23c14 0 30 7 45 22zM235 213l-16 16c30 7 56 27 74 53c12 17 18 45 18 66c0 32 -4 59 -12 88c-9 33 -18 65 -18 97 c0 10 1 20 3 31c-33 -2 -61 -11 -84 -36c-40 -42 -54 -103 -54 -161c0 -88 21 -177 83 -239c52 -52 113 -89 186 -89c51 0 95 7 140 44c52 43 69 113 69 172c0 37 -23 76 -48 99c-34 31 -76 48 -124 48c-16 0 -33 -2 -50 -6c0 -44 -5 -93 -37 -125c-36 -35 -82 -50 -130 -58 '], + 0x1D50D: [686,139,552,-18,522,'69 496l-15 10c19 48 44 93 79 131c24 26 54 49 91 49c18 0 35 -7 51 -16c24 -13 45 -30 66 -47c14 -12 29 -23 45 -32c11 -6 23 -11 35 -11c36 0 69 16 101 32v-21c-52 -27 -129 -65 -160 -75c-30 6 -55 24 -79 43c-27 21 -56 43 -91 43c-24 0 -47 -10 -64 -25 c-25 -22 -43 -52 -59 -81zM-13 60l-5 13c22 18 53 41 78 54c18 9 37 17 58 17c17 0 35 -4 47 -16c16 -16 16 -49 16 -75s2 -52 7 -78c4 -16 9 -35 20 -46c18 -19 44 -32 69 -32c26 0 50 8 68 27c28 27 39 74 39 113c0 53 -13 110 -27 160c-15 52 -28 113 -28 162 c0 10 1 20 2 29c39 54 86 102 138 144l16 -10c-22 -22 -42 -44 -57 -72c-11 -19 -12 -45 -12 -67c0 -36 5 -78 12 -117c13 -60 30 -160 30 -181c0 -59 -28 -113 -69 -154c-40 -41 -92 -70 -149 -70c-36 0 -75 6 -101 32c-22 23 -28 55 -32 85c-3 28 -8 66 -16 80 s-22 22 -37 22c-20 0 -50 -9 -67 -20'], + 0x1D50E: [681,27,668,16,690,'634 348l-168 -76v-1c15 0 33 -4 46 -16c19 -18 28 -61 36 -103c5 -25 11 -60 29 -80c9 -10 21 -19 36 -19c24 0 54 9 74 24l3 -17c-22 -22 -53 -50 -80 -66c-17 -11 -35 -21 -56 -21c-20 0 -40 11 -50 27c-16 25 -21 54 -25 85c-5 44 -16 102 -37 122 c-16 17 -40 22 -64 22c-31 0 -62 -9 -90 -22c0 -26 -1 -53 -5 -79c-25 -38 -54 -73 -88 -102c-28 -24 -54 -40 -88 -51c-39 3 -70 27 -91 57l57 66h10c7 -15 16 -30 28 -42c10 -11 26 -20 41 -20c21 0 36 9 44 17c20 20 23 58 23 91c0 50 -12 100 -27 149 c-13 43 -32 106 -32 134c0 13 5 28 6 30c21 53 55 99 95 139c55 55 130 85 208 85c31 0 62 -5 91 -17c24 -10 45 -25 58 -47c0 -6 1 -12 1 -18c0 -33 -7 -67 -17 -99l-16 -5c0 34 -13 67 -37 91c-36 36 -84 48 -139 48c-58 0 -98 -17 -132 -51c-19 -19 -37 -64 -37 -93 c0 -34 7 -83 20 -123c35 37 71 71 114 98c28 19 60 35 94 35c16 0 31 -4 43 -16c17 -16 29 -48 39 -75c6 -16 19 -50 56 -50c5 0 15 2 21 5zM289 230c39 18 75 32 119 40c33 13 68 28 100 44c-22 13 -32 46 -39 69c-5 16 -21 35 -33 44c-9 6 -26 9 -33 9 c-26 0 -53 -13 -73 -30c-28 -22 -45 -49 -63 -79c11 -28 17 -66 22 -97'], + 0x1D50F: [686,27,666,32,645,'629 197l16 -11c-7 -38 -15 -78 -29 -116c-9 -23 -18 -47 -35 -65c-28 -28 -69 -32 -107 -32c-40 0 -79 9 -118 20c-56 16 -110 37 -164 60c-20 9 -42 16 -64 16c-30 0 -60 -43 -84 -84l-12 15c20 47 38 88 71 127c8 9 27 14 40 16h31c16 5 48 23 61 39 c13 15 18 30 18 45c0 23 -27 76 -45 108c-13 25 -26 51 -36 78c-6 18 -12 36 -12 55c0 23 9 44 19 63c15 26 34 49 56 70c56 57 133 85 213 85c36 0 72 -6 98 -32c20 -19 26 -47 26 -83c0 -11 -1 -22 -2 -33c-2 -19 -2 -47 -2 -55c0 -7 4 -14 8 -19c10 -10 41 -12 59 -12 v-18l-117 -30h-3c-14 0 -40 21 -40 46c0 12 1 32 5 61c1 11 2 21 2 31c0 29 -5 53 -24 72c-22 22 -52 30 -82 30c-40 0 -78 -14 -106 -42c-20 -20 -30 -52 -30 -80c0 -20 4 -37 10 -55c8 -26 21 -54 33 -79c17 -35 42 -90 42 -121c0 -7 -2 -13 -5 -17 c-38 -46 -90 -104 -111 -118c45 -19 101 -40 149 -52c34 -9 70 -16 106 -16c42 0 86 6 117 37c26 26 38 61 48 96'], + 0x1D510: [692,27,1049,27,1049,'421 569c14 18 29 36 48 48c35 24 74 43 117 43c23 0 47 -5 64 -21c17 -18 28 -39 36 -62c22 26 48 48 76 67c35 25 73 48 117 48c18 0 36 -8 48 -21c11 -13 20 -38 27 -59c5 -15 10 -32 21 -43c8 -7 19 -9 29 -9c16 0 31 4 45 9v-15c-41 -21 -79 -48 -111 -80 c-13 -26 -20 -54 -24 -82c-7 -38 -8 -77 -8 -115c0 -47 0 -107 10 -139c7 -21 9 -24 24 -40c6 -8 22 -18 30 -18c6 0 37 10 58 21v-19l-144 -109l-57 126l-1 172c0 43 7 86 16 128c22 34 49 64 80 91c-7 1 -15 9 -22 16c-5 5 -15 35 -21 53c-7 21 -17 51 -27 58 c-9 8 -20 11 -32 11c-25 0 -56 -8 -75 -25c-22 -19 -34 -31 -50 -57c6 -31 14 -79 14 -110c0 -106 -23 -211 -64 -308l-123 -150c-18 17 -50 43 -69 43c-9 0 -19 0 -26 -5c-13 -7 -21 -16 -33 -30l-13 14c25 36 67 90 88 101c5 3 10 3 16 3c7 0 14 -1 21 -3 c9 -2 42 -24 58 -35c24 24 31 53 38 83c16 64 16 145 16 218c0 43 -1 85 -8 127c-4 27 -9 53 -24 75c-15 23 -43 32 -69 32c-21 0 -44 -9 -58 -23c-15 -13 -26 -31 -35 -49c7 -28 10 -75 10 -82c0 -113 -13 -227 -72 -325l-170 -149c-14 15 -30 28 -48 39 c-11 8 -23 14 -37 14c-29 0 -52 -20 -69 -42l-11 16c17 28 37 55 61 78c16 14 34 28 56 28c15 0 29 -6 42 -14c15 -9 41 -31 55 -44c17 13 34 28 52 46c26 26 36 69 43 104c13 56 17 112 17 169v41c-1 52 -13 111 -40 148c-27 38 -71 74 -118 74c-39 0 -59 -8 -78 -23 c-13 -11 -21 -34 -21 -43c0 -33 23 -66 38 -83c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27c-9 13 -21 30 -31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98 c24 24 97 86 183 86c46 0 89 -34 119 -71c13 -16 24 -37 33 -59c3 2 5 5 7 8'], + 0x1D511: [686,29,832,29,830,'422 533c13 15 46 61 52 71c30 48 93 82 149 82c17 0 33 -1 49 -5c12 -3 23 -7 31 -16c13 -13 21 -34 27 -53c4 -15 13 -40 16 -43c9 -8 19 -15 32 -15c15 0 32 4 45 11v-14c-30 -21 -61 -44 -88 -67c-10 -8 -19 -19 -21 -32c-12 -57 -16 -116 -16 -175 c0 -42 3 -84 14 -125c7 -28 15 -46 36 -67c4 -4 13 -9 19 -9c22 0 46 13 63 22v-22l-144 -105l-64 133l1 167c0 40 0 96 6 117c2 8 6 15 10 22c21 28 40 48 65 74c-18 4 -26 15 -32 23c-8 11 -15 33 -22 57c-5 18 -14 35 -27 48c-10 10 -23 16 -37 16c-31 0 -65 -18 -87 -39 c-31 -32 -45 -51 -66 -88c7 -42 15 -107 15 -150c0 -78 -7 -159 -43 -229c-5 -9 -13 -24 -16 -26c-42 -37 -83 -68 -131 -100c-12 -7 -35 -18 -48 -18c-35 0 -68 30 -86 58l56 65h12c5 -13 14 -29 27 -43c11 -11 29 -18 44 -18c28 0 49 20 68 39c18 18 25 44 31 69 c9 39 11 78 11 118c0 121 -28 241 -59 284c-27 38 -71 72 -118 72c-40 0 -61 -4 -83 -25c-12 -11 -17 -25 -17 -46c0 -20 24 -59 39 -76c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42 c10 12 15 24 15 39c0 10 -7 19 -13 27c-9 13 -21 30 -31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c16 -19 30 -50 40 -81'], + 0x1D512: [729,27,828,11,746,'432 596l-86 -3c-19 0 -39 3 -56 13c-12 7 -23 18 -23 33c0 40 45 59 69 90h16c-5 -7 -10 -17 -10 -26c0 -16 20 -23 36 -27c19 -5 85 -10 128 -14c35 -3 69 -9 102 -20c25 -9 50 -22 68 -41c53 -53 70 -128 70 -202c0 -59 -6 -118 -24 -174c-13 -42 -33 -84 -67 -113 c-44 -40 -91 -76 -144 -103c-38 -20 -79 -36 -122 -36c-55 0 -109 12 -160 32c-17 7 -35 15 -53 21c-17 6 -35 11 -53 11c-39 0 -74 -21 -96 -53l-16 16c28 37 58 73 91 106c44 15 85 51 85 101c0 15 -5 29 -11 43c-9 19 -20 36 -32 53c-17 25 -45 63 -52 74 c-6 10 -12 21 -12 33c0 35 15 67 36 95c26 35 60 63 98 86l21 -11c-19 -14 -37 -30 -51 -50c-10 -13 -19 -29 -19 -46s6 -33 13 -49c9 -24 22 -46 36 -68c20 -34 47 -77 47 -106c0 -26 -11 -49 -25 -70c-19 -30 -49 -56 -76 -79c12 0 28 -4 39 -8c32 -10 63 -23 94 -35 c51 -19 111 -33 167 -33c74 0 132 37 162 105c26 57 33 127 33 189c0 44 -4 88 -16 131c-10 32 -24 63 -48 87c-17 18 -40 28 -64 36c-31 9 -63 12 -95 12'], + 0x1D513: [692,219,823,6,804,'410 509v-387h1c49 -16 137 -45 145 -48c19 -5 48 -12 63 -12c24 0 47 8 63 25c14 14 18 31 18 51c0 16 -8 37 -14 52c-10 21 -22 41 -36 60c-21 30 -48 67 -48 96c0 20 11 38 22 54c18 24 43 45 66 64c-13 3 -29 15 -40 26c-13 12 -15 41 -16 64c-1 22 -3 51 -16 63 c-12 13 -31 16 -48 16c-24 0 -45 -5 -64 -18c-44 -30 -67 -61 -96 -106zM398 540c2 3 5 6 7 8c18 23 37 45 59 64c50 43 108 80 175 80c20 0 40 -7 54 -21c17 -18 23 -59 26 -91c1 -13 4 -30 11 -37c9 -9 20 -13 32 -13s25 4 37 8l5 -16c-31 -16 -60 -34 -85 -59 c-11 -12 -22 -24 -31 -37c-6 -8 -12 -17 -12 -27c0 -29 20 -59 38 -85c20 -31 37 -64 37 -101c0 -69 -33 -132 -85 -176c-31 -25 -66 -48 -107 -48c-10 0 -21 3 -31 6l-118 42c0 -62 3 -124 11 -186c-6 -5 -64 -47 -96 -70l-21 11c5 12 12 56 16 85c9 62 11 123 11 186 c-33 10 -63 17 -80 17c-27 0 -51 -14 -70 -32c-19 -20 -36 -42 -53 -64l-10 21c19 38 39 76 69 107c25 25 59 42 96 42c13 0 30 -3 48 -8v250c0 54 -12 115 -40 154c-27 38 -71 72 -118 72c-39 0 -64 -7 -84 -25c-12 -12 -18 -25 -18 -46c0 -25 26 -59 41 -76 c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27c-9 13 -21 30 -31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 89 86 183 86c46 0 89 -34 119 -71 c17 -20 30 -47 39 -74'], + 0x1D514: [729,69,828,11,783,'432 596l-86 -3c-19 0 -39 3 -56 13c-12 7 -23 18 -23 33c0 8 0 21 11 32l58 58h16c-5 -7 -10 -17 -10 -26c0 -4 1 -7 4 -11c8 -9 21 -13 32 -16c19 -5 85 -10 128 -14c35 -3 69 -9 102 -20c25 -9 50 -22 68 -41c53 -53 70 -128 70 -202c0 -103 -22 -225 -91 -287 c-17 -15 -34 -30 -52 -44c18 -20 35 -39 57 -54c15 -10 31 -20 49 -20c27 0 52 12 74 27v-27l-117 -63c-33 10 -65 23 -96 40c-20 11 -40 23 -57 39l-2 -1c-38 -20 -79 -36 -122 -36c-55 0 -109 12 -160 32c-17 7 -35 15 -53 21c-17 6 -35 11 -53 11c-39 0 -74 -21 -96 -53 l-16 16c28 37 58 73 91 106c44 15 85 51 85 101c0 15 -5 29 -11 43c-9 19 -20 36 -32 53c-17 25 -45 63 -52 74c-6 10 -12 21 -12 33c0 35 15 67 36 95c26 35 60 63 98 86l21 -11c-19 -14 -37 -30 -51 -50c-10 -13 -19 -29 -19 -46s6 -33 13 -49c9 -24 22 -46 36 -68 c20 -34 47 -77 47 -106c0 -26 -11 -49 -25 -70c-19 -30 -52 -59 -77 -78c12 0 29 -5 40 -9c32 -10 63 -23 94 -35c51 -19 108 -32 163 -32c74 0 139 41 169 109c26 57 30 122 30 184c0 44 -4 88 -16 131c-10 32 -24 63 -48 87c-17 18 -40 28 -64 36c-31 9 -63 12 -95 12'], + 0x1D516: [689,27,828,56,756,'339 508l13 -13c-13 -4 -23 -12 -32 -21c-12 -13 -16 -31 -16 -48c0 -16 5 -32 16 -43c12 -12 30 -16 48 -16c22 0 78 13 117 21c42 10 95 22 128 22c39 0 78 -15 106 -43c24 -24 32 -57 32 -90c0 -74 -28 -145 -80 -197c-78 -78 -189 -107 -298 -107 c-76 0 -155 20 -210 75c-68 68 -107 164 -107 261s39 186 108 255c67 68 168 106 261 125c53 -28 119 -62 156 -78c24 -10 48 -20 74 -20c22 0 39 6 55 21c15 15 22 38 27 54l19 -11c-8 -32 -24 -62 -47 -86c-28 -28 -65 -44 -102 -58c-31 3 -86 35 -127 58 c-28 17 -57 32 -87 44c-18 8 -37 15 -57 15c-50 0 -93 -29 -128 -64c-49 -49 -69 -118 -69 -186c0 -98 31 -196 101 -266c56 -57 136 -86 215 -86c64 0 129 5 175 51c32 33 47 84 47 130c0 37 -11 76 -38 102c-22 22 -53 32 -85 32s-75 -9 -112 -16c-38 -8 -79 -16 -117 -16 c-25 0 -51 3 -69 21c-16 16 -27 36 -27 58c0 29 13 55 32 75c22 21 49 37 78 45'], + 0x1D517: [703,27,669,24,676,'607 133l11 -16c-28 -32 -57 -62 -89 -89c-25 -22 -52 -41 -81 -55c-44 6 -84 27 -123 48c-28 15 -58 27 -90 27c-19 0 -37 -7 -54 -15c-25 -12 -47 -27 -69 -44l-10 16c38 40 79 77 122 112c10 1 20 1 30 1c19 0 37 -1 55 -6c21 12 40 28 55 47c11 14 20 30 20 48 c0 14 -6 26 -13 37c-10 18 -22 34 -35 49c-30 34 -69 79 -75 111c8 34 23 64 41 93c24 36 51 69 82 99c-52 18 -106 27 -160 27c-45 0 -92 -8 -124 -40c-17 -17 -26 -43 -26 -67c0 -39 29 -71 65 -85l-64 -64c-32 25 -51 58 -51 98c0 55 41 118 82 156c49 46 110 65 177 65 c57 0 114 -9 170 -21c39 -7 80 -16 117 -16c42 0 79 23 106 54v-22l-69 -90c-21 -13 -45 -16 -69 -16c-38 0 -91 5 -128 14c-23 -18 -30 -25 -47 -51c-12 -18 -27 -52 -27 -75c0 -13 5 -25 11 -36c8 -16 19 -30 31 -44c21 -23 40 -48 56 -74c10 -17 19 -34 19 -54 c0 -25 -14 -47 -29 -66c-25 -33 -56 -60 -87 -86c43 -20 98 -45 137 -45c22 0 43 9 62 20c26 14 50 34 71 55'], + 0x1D518: [697,27,645,-26,666,'455 120l-114 -126c-17 -13 -37 -21 -58 -21c-45 0 -87 16 -128 32c-38 15 -80 32 -117 32c-9 0 -17 -6 -23 -11c-12 -9 -22 -20 -31 -32l-10 17l80 90c24 2 50 28 69 48c26 27 37 64 37 101c0 19 -6 37 -12 54c-10 26 -22 50 -36 74c-23 40 -53 93 -53 128 c0 20 10 39 21 56c16 26 37 49 59 71c24 24 50 47 80 64l10 -16c-15 -11 -29 -24 -42 -37c-25 -24 -43 -56 -43 -90c0 -32 20 -73 37 -107c14 -28 27 -57 36 -86c7 -23 12 -45 12 -68c0 -26 -4 -52 -15 -75l-101 -112c29 0 69 -14 101 -26c33 -14 80 -32 101 -32 c31 0 57 20 79 42c23 23 51 51 59 75c5 16 5 56 5 85c0 116 -2 231 -10 346l127 90l16 -10c-18 -18 -34 -39 -42 -64c-16 -48 -16 -99 -16 -149v-202c0 -22 1 -43 5 -64c8 -38 17 -77 43 -107c6 -7 15 -11 25 -11c24 0 50 15 60 22v-21l-144 -107'], + 0x1D519: [686,27,831,29,826,'378 224l-93 -73c39 -3 69 -22 131 -61c66 -41 114 -58 143 -58c26 0 51 7 70 25c14 15 19 35 23 54c7 32 9 64 9 96c0 24 -3 57 -6 86c-2 33 -5 67 -5 101c0 23 4 47 11 69l74 85c-29 0 -55 16 -80 32c-27 18 -56 37 -90 37c-29 0 -66 -36 -66 -36 c-28 -27 -50 -59 -66 -95c0 -100 -14 -182 -55 -262zM480 601c22 25 49 46 78 63c20 12 42 22 65 22c36 0 68 -16 96 -37c38 -27 65 -32 81 -32c9 0 18 2 26 6v-16c-16 -11 -30 -24 -43 -38c-36 -35 -58 -82 -58 -133c0 -34 5 -67 10 -101c7 -39 16 -96 16 -117 c0 -31 -7 -62 -21 -90c-11 -22 -23 -42 -43 -57l-117 -85c-14 -11 -35 -13 -53 -13c-30 0 -76 9 -149 53c-20 12 -110 64 -154 64c-49 0 -92 -27 -123 -64l-11 16c38 43 80 82 128 112c46 0 87 26 112 64c14 22 20 47 24 73c6 37 10 74 10 112c-1 52 -13 110 -40 148 s-71 72 -118 72c-40 0 -65 -9 -85 -27c-10 -8 -15 -23 -15 -44c0 -24 24 -59 39 -76c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27c-9 13 -21 30 -31 43 c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c17 -21 34 -60 43 -89c13 22 28 44 55 75'], + 0x1D51A: [686,28,1046,21,1055,'895 485l59 63c-18 0 -51 22 -75 37c-26 17 -54 32 -85 32c-22 0 -42 -10 -58 -23c-26 -21 -43 -38 -61 -64c2 -33 4 -68 4 -103c0 -79 -8 -156 -29 -227c-14 -19 -56 -75 -79 -99c43 0 116 -33 170 -59c16 -7 34 -10 53 -10c32 0 58 15 74 42c11 18 18 45 18 112 c0 39 -3 79 -7 117c-3 29 -5 59 -5 88c0 39 4 63 10 77c3 6 7 12 11 17zM352 191c-42 -34 -81 -59 -118 -81c45 -35 103 -68 160 -68c59 0 114 28 155 70c25 24 35 59 43 93c12 51 15 104 15 157c0 52 -7 104 -29 152c-16 37 -45 75 -82 91c-28 -25 -57 -51 -78 -80 c1 -9 7 -38 7 -49c0 -15 -4 -87 -18 -148c-11 -48 -27 -95 -55 -137zM409 551l12 13c42 46 89 85 138 122c53 -30 92 -96 107 -127c32 34 66 67 104 94c23 17 48 33 77 33c17 0 33 -5 48 -12c23 -9 44 -22 64 -35c18 -12 38 -19 59 -19c12 0 25 3 37 8l-6 -21 c-32 -24 -62 -50 -80 -85c-12 -28 -15 -54 -15 -88c0 -23 2 -45 5 -67c6 -51 10 -103 10 -154c0 -25 -2 -50 -9 -74c-6 -18 -14 -34 -28 -47c-42 -40 -89 -75 -138 -106c-20 -6 -40 -11 -60 -11c-30 0 -61 7 -89 19c-48 21 -101 43 -149 43c-41 -19 -81 -39 -118 -64 c-5 0 -11 -1 -16 -1c-45 0 -90 16 -127 39c-27 17 -62 37 -86 37c-11 0 -34 -8 -46 -16c-21 -14 -39 -26 -57 -43l-14 16c37 43 78 82 123 117h3c47 0 92 20 125 53c25 25 38 58 47 92c12 43 16 89 16 135c-1 52 -13 111 -40 149s-71 72 -118 72c-40 0 -65 -8 -86 -27 c-12 -11 -14 -20 -14 -42c0 -30 24 -61 39 -78c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27c-9 13 -21 30 -31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98 c24 24 90 86 183 86c46 0 89 -34 119 -71c14 -17 26 -40 35 -64'], + 0x1D51B: [689,27,719,27,709,'78 527l148 159c44 -2 89 -16 120 -47c13 -13 22 -30 29 -46c11 -25 18 -51 25 -77c15 31 34 61 58 85c38 38 81 68 130 88c12 -23 22 -47 34 -69c3 -7 7 -13 12 -19c9 -8 20 -13 32 -13c11 0 29 9 43 16v-19l-102 -58c-20 9 -37 22 -53 37c-15 15 -37 38 -42 52 c-15 -10 -31 -23 -42 -37c-17 -23 -31 -51 -42 -79c-17 -42 -23 -87 -23 -133h176l-37 -42c-46 6 -93 7 -139 8c0 -41 2 -82 11 -115c11 -47 29 -93 64 -128c24 -24 56 -37 90 -37c39 0 74 21 106 43v-22l-111 -90c-16 -5 -37 -11 -48 -11c-34 0 -67 14 -91 38 c-38 38 -58 90 -69 143l-42 -42c-33 -33 -68 -65 -107 -91c-18 -12 -36 -23 -56 -32c-12 -5 -26 -11 -40 -11c-36 0 -66 24 -85 54l59 69c15 -31 44 -53 79 -53c38 0 73 21 99 47c41 41 55 99 67 155c4 20 5 51 5 83c-59 0 -117 0 -176 -8l37 42h139c0 36 0 71 -5 107 c-5 34 -17 62 -42 87c-17 18 -40 33 -65 33c-32 0 -57 -7 -80 -30c-17 -17 -37 -37 -49 -52'], + 0x1D51C: [686,219,834,26,741,'353 397c0 53 -12 114 -40 154c-27 38 -71 72 -118 72c-39 0 -69 -13 -87 -27c-13 -12 -14 -24 -14 -45s25 -58 40 -75c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39 c0 10 -7 19 -13 27c-9 13 -21 30 -31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 89 86 183 86c46 0 89 -34 119 -71c17 -21 31 -49 40 -78l5 5c27 27 56 52 86 75c33 27 68 51 106 69c29 -36 68 -64 107 -90c16 -80 16 -170 16 -255c0 -69 -5 -137 -17 -204 c-9 -53 -23 -105 -48 -153c-44 -67 -106 -120 -175 -160c-43 -24 -89 -43 -139 -43c-29 0 -58 6 -84 19c-21 11 -40 28 -49 51l67 71h10c10 -50 56 -93 110 -93c61 0 96 21 135 60c25 24 46 64 62 95c20 41 29 86 35 131c10 66 13 132 13 199c0 72 -4 144 -27 213 c-26 29 -54 59 -90 74c-8 -3 -76 -35 -116 -89c3 -14 4 -30 4 -44c-2 -91 -18 -183 -70 -261l-116 -92c24 -7 52 -21 74 -32c26 -13 53 -25 80 -25c34 0 63 23 85 48l9 -16c-23 -30 -46 -59 -73 -85c-14 -12 -33 -26 -51 -26c-30 0 -76 23 -107 41c-37 21 -76 34 -100 34 c-46 0 -90 -32 -126 -58l-11 15c37 39 82 78 122 113c22 0 52 0 68 -2c18 10 45 32 67 53c25 25 40 58 51 92c13 42 19 86 19 130'], + 0x1D51E: [471,36,500,65,497,'329 91l-175 -127c-30 32 -59 66 -87 101c-2 30 -2 61 -2 91c0 70 5 141 20 209l169 106c28 -19 60 -33 93 -40l67 34l8 -6c-10 -67 -15 -135 -15 -203c0 -46 0 -91 1 -137l36 -45c21 7 32 13 46 22l7 -13l-123 -110l-43 73zM329 119l-1 246c-47 0 -96 13 -142 27 c-24 -25 -30 -62 -35 -97c-4 -31 -6 -62 -6 -94c0 -27 1 -53 3 -80c13 -17 39 -44 60 -65c1 -1 4 -1 7 -1c15 0 54 23 114 64'], + 0x1D51F: [686,31,513,86,444,'135 599l120 87l17 -13c-1 0 -20 -17 -30 -26c-44 -38 -60 -91 -63 -148c-2 -43 -2 -92 -2 -134l7 -2c45 38 92 77 140 107c38 -22 77 -43 117 -61c2 -32 3 -64 3 -96c0 -72 -5 -145 -20 -216c-73 -47 -148 -92 -228 -128c-37 33 -86 77 -110 102c14 73 14 157 14 236 c0 121 -1 241 -7 361l17 4l17 -77zM178 332v-209c32 -33 80 -81 107 -81c16 0 29 11 40 22c16 17 23 39 28 61c8 34 10 68 10 102c0 41 0 72 -4 113c-9 12 -32 24 -85 46c-31 -4 -69 -33 -96 -54'], + 0x1D520: [466,29,389,72,359,'359 92l-172 -121c-40 34 -76 73 -110 113c-3 45 -5 89 -5 134c0 29 0 89 12 145l165 103c39 -3 75 -22 108 -44l-52 -79l-9 -3c-33 29 -83 54 -120 54c-18 -30 -21 -99 -21 -148c0 -35 2 -69 7 -99c18 -29 53 -61 84 -89c32 10 71 31 105 51'], + 0x1D521: [612,34,498,13,430,'401 109l-187 -143c-50 34 -99 69 -138 115c-2 30 -3 57 -3 85c0 44 2 93 6 169c42 40 88 83 132 112l19 -4c-46 -50 -57 -77 -65 -97c-9 -23 -13 -56 -13 -92c0 -39 4 -83 7 -119c13 -16 29 -29 45 -41c23 -16 47 -30 72 -43c3 -1 5 -2 8 -2c5 0 11 3 15 10 c28 44 42 95 47 146c2 21 3 41 3 62c0 44 -4 88 -12 132c-39 41 -82 79 -131 109c-33 21 -70 38 -110 38c-8 0 -21 0 -24 -1l-46 -18l-13 16c43 24 93 48 138 69c90 -12 192 -88 276 -157c1 -18 3 -75 3 -127c0 -31 -1 -61 -3 -79c-4 -48 -8 -96 -26 -140'], + 0x1D522: [467,31,400,70,364,'84 366l162 101c33 -42 74 -78 118 -109c-69 -66 -155 -146 -213 -192c0 -9 2 -18 5 -26c3 -14 60 -61 100 -79c4 1 18 1 23 3l74 39l5 -16c-54 -42 -110 -82 -169 -118c-40 37 -80 74 -114 116c-4 34 -5 69 -5 103c0 60 5 119 14 178zM148 193c46 34 98 78 136 119 c-38 24 -76 53 -108 84c0 1 -1 1 -2 1c-8 0 -14 -22 -16 -28c-9 -32 -10 -123 -10 -176'], + 0x1D523: [679,238,329,30,324,'206 351l-4 -206c0 -67 0 -151 -13 -198c-10 -34 -25 -67 -43 -97l-50 -88l-19 7c8 27 19 64 26 90c7 23 12 48 14 72c2 35 3 131 3 197c0 15 0 147 -1 223h-89l15 35h73c0 1 -9 45 -14 67c-6 25 -13 61 -13 75c0 44 24 81 55 112c14 14 29 27 46 39c42 0 92 -7 124 -40 l-47 -92l-10 -1c-8 17 -18 33 -31 46c-13 12 -30 23 -47 23c-13 0 -29 -3 -39 -12c-9 -10 -12 -22 -12 -35c0 -17 12 -41 21 -59l50 -95c5 -8 7 -17 9 -26h114l-12 -37h-106'], + 0x1D524: [470,209,503,16,455,'16 -131c45 31 89 68 134 107l-72 89c-2 34 -4 69 -4 103c0 67 5 134 15 200c53 37 107 70 162 102c34 -23 74 -36 114 -45l72 40l6 -6c-14 -29 -16 -62 -18 -94c-4 -55 -4 -143 -4 -215c0 -14 2 -28 5 -41l29 -126c-51 -64 -104 -127 -163 -184c-12 -4 -28 -8 -36 -8 c-32 0 -63 9 -92 21c-37 16 -71 38 -102 63l-35 -19zM342 97c-67 -47 -133 -99 -195 -152c23 -23 49 -45 77 -60c22 -12 46 -20 71 -20c20 0 39 10 53 24c15 16 21 45 21 66c0 22 -16 95 -27 142zM228 41l112 82c0 76 2 153 9 228c-58 8 -128 21 -176 43 c-16 -40 -18 -90 -18 -134c0 -45 1 -91 5 -136c15 -29 43 -60 68 -83'], + 0x1D525: [689,198,521,76,435,'228 -184l64 55c11 8 19 19 26 31c17 34 23 72 28 109c8 60 10 121 10 182c0 28 -6 107 -10 161c-26 19 -55 36 -88 36c-31 0 -69 -29 -94 -49l-5 -215l54 -77l-82 -75l-55 91c7 122 11 244 11 366c0 81 -1 163 -6 244l12 2l24 -76c40 30 120 88 121 88l17 -11 c-83 -77 -90 -142 -90 -197l-1 -110c33 26 98 72 148 107c33 -30 74 -48 116 -61c4 -57 7 -114 7 -171c0 -54 -2 -109 -7 -162c-4 -39 -9 -78 -20 -115c-45 -66 -102 -119 -164 -167'], + 0x1D526: [675,21,279,14,268,'27 369l-13 13c34 28 71 61 105 93c19 -20 38 -39 60 -55c-7 -60 -8 -120 -8 -181c0 -39 1 -79 5 -111c2 -19 19 -40 32 -53c4 0 10 1 13 3c15 7 33 18 40 24l7 -19c-39 -37 -81 -72 -123 -104l-54 76c3 53 3 93 3 139c0 58 -1 114 -4 173l-21 24c-11 -4 -29 -12 -42 -22 zM187 616l-57 -60c-21 19 -40 40 -58 61c20 20 42 37 60 58c18 -21 40 -47 55 -59'], + 0x1D527: [673,202,280,-9,196,'168 -44c-45 -55 -98 -107 -161 -158l-16 18c29 22 58 45 83 71c13 13 21 30 26 47c16 56 18 179 18 269c0 50 0 119 -10 149c-6 17 -25 37 -32 37c-2 0 -7 -2 -8 -3l-29 -19l-14 13l106 95c22 -16 43 -34 65 -53c0 -52 -1 -268 -6 -396c-1 -25 -5 -51 -22 -70zM183 615 l-58 -60c-18 15 -37 40 -54 61l61 57c16 -21 32 -40 51 -58'], + 0x1D528: [686,26,389,24,363,'350 110l13 -15c-43 -37 -111 -82 -168 -121l-107 95c4 19 6 40 6 58v181h-70l9 35h62c0 227 -1 262 -7 326l17 4c8 -24 18 -79 18 -80c41 32 86 68 130 93l16 -10c-26 -24 -56 -52 -67 -73c-19 -32 -26 -69 -29 -105c42 32 83 57 127 87c17 -16 32 -34 44 -54 c9 -15 16 -31 16 -48c0 -18 -10 -36 -23 -49l-86 -91h95l-14 -35h-159v-180c24 -24 54 -48 82 -68c32 16 66 29 95 50zM173 343c35 0 64 13 87 40c15 18 28 39 28 63c0 13 -6 24 -12 35c-10 14 -22 26 -35 37c-20 -10 -39 -23 -51 -42c-9 -16 -12 -34 -14 -52 c-3 -25 -3 -54 -3 -81'], + 0x1D529: [686,20,279,97,277,'261 686l16 -13c-22 -19 -43 -36 -59 -60c-35 -54 -36 -106 -36 -222c0 -90 1 -179 2 -269c9 -14 26 -29 42 -41c14 4 29 14 40 23l10 -17l-128 -107l-51 76c6 108 8 217 8 326c0 96 -1 191 -6 286l17 4l17 -78'], + 0x1D52A: [475,26,766,7,757,'168 376l127 99c38 -23 78 -43 120 -57v-39c44 30 88 61 129 95c39 -21 85 -46 121 -56c-5 -57 -3 -114 -4 -171v-121c11 -16 23 -33 37 -47c20 7 28 10 47 26l12 -17l-126 -107c-10 19 -39 54 -59 79c6 42 11 75 11 214c0 26 -1 50 -3 68c-1 6 -2 12 -8 15 c-28 17 -60 26 -92 34c-23 -12 -44 -24 -65 -38v-218c0 -8 0 -17 4 -22c0 -1 30 -45 46 -66l-86 -73c-13 26 -36 52 -54 72c9 39 14 81 14 202c0 33 -1 66 -5 99c-25 22 -71 35 -105 44l-61 -42v-197c0 -16 0 -40 5 -46c0 -1 29 -39 44 -58l-83 -70l-49 80c5 40 7 80 7 119 c0 63 -1 125 -4 188l-26 26l-43 -24l-12 12l111 93c17 -17 50 -51 50 -52v-44'], + 0x1D52B: [475,23,526,18,521,'176 367l144 108c35 -24 73 -43 113 -58c-4 -43 -8 -102 -8 -164l4 -126c8 -13 16 -27 26 -40c3 -4 8 -5 13 -5c1 0 7 3 10 5l31 22l12 -16l-127 -112l-55 84c6 35 8 81 8 130c0 54 -2 111 -5 163c-29 15 -68 24 -101 27l-65 -44l-4 -207c0 -10 4 -24 7 -28l40 -54 l-87 -75c-14 25 -30 48 -49 69c8 46 11 104 11 165c0 52 -2 105 -4 154l-24 23l-35 -20l-13 12c34 30 103 90 104 90c12 -13 35 -31 54 -45v-58'], + 0x1D52C: [481,28,488,66,413,'165 -28c-35 30 -71 62 -99 96c0 89 5 198 18 296c61 35 119 75 176 117c45 -30 94 -55 148 -66c3 -38 5 -75 5 -113c0 -71 -6 -141 -22 -210c-72 -46 -147 -88 -226 -120zM268 44c6 0 17 13 22 19c23 28 32 67 37 107c7 62 7 89 7 186c-45 3 -104 25 -149 45 c-13 -22 -19 -35 -27 -72c-8 -30 -11 -75 -11 -118c0 -33 2 -64 6 -88c17 -21 36 -40 58 -55c18 -12 36 -21 57 -24'], + 0x1D52D: [538,214,500,12,430,'169 -170l-80 -44l-11 7c4 83 9 199 9 254c-23 0 -46 -7 -64 -23l-11 14c25 23 62 57 76 67v247c-13 18 -41 55 -41 56c-3 4 -5 9 -5 14c0 8 3 15 7 22c21 34 47 66 76 94l14 -9c-10 -12 -18 -26 -18 -42c0 -13 5 -26 12 -38c9 -16 21 -30 34 -43c0 -1 -1 -22 -2 -34 c49 33 95 69 142 106c35 -28 76 -48 118 -64c3 -44 5 -88 5 -132c0 -22 -1 -44 -2 -66c-2 -43 -6 -87 -21 -127l-134 -107c-32 26 -68 48 -108 55c0 -69 1 -138 4 -207zM166 347v-241c40 0 108 -30 157 -54c16 30 26 83 26 178c0 41 -3 82 -6 123c-25 13 -66 28 -96 38 c-29 -11 -54 -27 -81 -44'], + 0x1D52E: [480,224,489,59,418,'406 -179l-83 -45l-11 10c4 98 8 208 8 307c-56 -46 -113 -84 -174 -122l-84 94c-2 29 -3 57 -3 86c0 73 6 147 23 218c57 31 115 63 165 104c29 -18 60 -34 93 -41l70 48l8 -7c-15 -85 -19 -220 -19 -332c0 -107 0 -215 7 -320zM218 50c24 13 70 48 101 71 c0 80 1 166 5 246c-51 3 -101 16 -150 31c-14 -25 -21 -54 -26 -82c-7 -38 -10 -77 -10 -116c0 -19 0 -53 1 -56c0 -7 1 -14 6 -19c22 -22 50 -54 73 -75'], + 0x1D52F: [474,21,389,15,395,'182 382l109 87c10 -18 22 -36 36 -52c8 -9 18 -19 30 -19c11 0 29 10 38 15l-1 -13l-59 -55c-9 -8 -21 -10 -33 -10s-24 5 -33 11c-16 10 -36 25 -50 38c-16 -12 -31 -25 -37 -34v-198c0 -16 10 -29 19 -41c16 -19 34 -36 54 -51l89 42l2 -19l-146 -104 c-37 29 -70 62 -103 96c6 59 6 109 6 170c0 26 0 54 -1 77c-1 32 -8 43 -8 43c-9 8 -19 15 -29 22l-38 -16l-12 10l101 93c21 -21 43 -41 66 -60v-32'], + 0x1D530: [479,30,442,-28,407,'192 244l123 56c22 -7 39 -22 56 -38c2 -26 3 -52 3 -77c0 -46 -4 -91 -16 -135c-54 -24 -109 -49 -160 -80c-22 21 -46 41 -73 57c-17 10 -35 20 -55 20c-30 0 -57 -16 -89 -44l-9 9c15 16 52 55 74 76c18 17 43 23 67 23c26 0 50 -8 72 -22l81 -54c1 -1 2 -1 4 -1 c6 0 11 5 15 14c9 30 11 61 11 92c0 25 -3 63 -13 74c-14 17 -27 22 -39 22c-14 0 -22 -3 -35 -10l-102 -58c-15 19 -31 45 -43 67c0 49 1 97 6 142l152 102l81 -46c8 -4 16 -6 26 -6c23 0 46 13 72 30l6 -16l-92 -78c-72 4 -126 27 -152 52c-20 -19 -20 -56 -20 -79 c0 -25 2 -50 12 -73c4 -9 9 -21 20 -21c6 0 12 0 17 2'], + 0x1D531: [641,21,333,26,349,'228 641l14 -14l-27 -26c-5 -5 -8 -12 -9 -19c-11 -64 -12 -131 -12 -196h108l-17 -35h-90l1 -228c20 -18 44 -39 63 -50c5 -3 11 -5 17 -5c15 0 36 9 70 32l3 -22l-137 -99l-97 83c0 1 0 192 1 289h-90l16 35h73v172'], + 0x1D532: [474,26,517,8,514,'421 468l7 -6c-10 -79 -13 -158 -13 -237c0 -32 2 -64 6 -94c2 -14 8 -28 17 -40c4 -5 10 -8 17 -8c10 0 43 15 53 20l6 -15c-42 -34 -83 -69 -122 -106l-8 2c-19 32 -39 67 -51 103c-68 -45 -153 -113 -153 -113c-26 17 -88 62 -125 74c13 22 21 51 27 79 c9 45 15 91 15 137c0 28 0 55 -7 82c-6 18 -14 37 -29 50l-38 -20l-15 10l111 88c16 -19 32 -38 52 -53c0 -22 1 -43 1 -65c0 -31 -1 -62 -2 -92c-2 -54 -9 -108 -24 -160l101 -48l88 59c3 50 4 100 4 149c0 52 -1 105 -3 160'], + 0x1D533: [533,28,511,51,439,'96 231c0 31 -2 69 -4 114c0 8 -4 13 -9 19c-9 12 -17 18 -25 30c-4 8 -7 16 -7 24c0 6 5 20 8 26c21 32 45 62 72 89l14 -4c-9 -14 -16 -29 -16 -46c0 -10 11 -31 19 -45c5 -8 18 -20 27 -30v-34l143 103c36 -24 74 -45 115 -61c6 -66 6 -100 6 -171 c0 -37 -15 -119 -32 -159l-215 -114c-31 33 -67 65 -103 94c5 55 7 101 7 165zM175 348l-3 -193c0 -25 14 -47 34 -62c1 0 25 -19 37 -29c12 -8 27 -15 42 -15c13 0 24 9 33 19c11 11 18 25 24 40c13 40 17 99 17 135c0 38 -3 77 -8 115c-23 21 -54 32 -85 38 c-28 -2 -63 -27 -91 -48'], + 0x1D534: [533,28,773,44,693,'418 368l142 103c41 -24 83 -46 126 -66c5 -28 7 -92 7 -137c0 -93 -19 -133 -41 -196l-187 -100c-44 27 -89 52 -134 74c5 59 8 118 8 176c0 40 -1 80 -5 119c-23 16 -56 37 -70 44c-7 3 -16 7 -24 7c-4 0 -12 -2 -16 -5c-22 -12 -38 -25 -58 -39c0 -34 -1 -126 -1 -190 c0 -24 6 -49 20 -70c8 -14 18 -29 27 -40l-75 -75c-17 29 -35 57 -59 79c8 51 10 103 10 155c0 46 0 92 -3 138c-1 8 -4 13 -9 19c-9 12 -17 18 -25 30c-4 8 -7 16 -7 24c0 6 5 20 8 26c21 32 45 62 72 89l14 -4c-9 -14 -16 -29 -16 -46c0 -10 11 -31 19 -45 c5 -8 18 -20 27 -30v-32c43 30 86 61 123 97c41 -26 84 -48 128 -68zM498 386c-22 0 -63 -33 -80 -45c-1 -37 -2 -71 -2 -106c0 -26 1 -53 3 -81c1 -23 12 -44 29 -59c27 -25 59 -51 100 -51c8 0 17 7 24 14c17 17 25 45 29 69c7 45 9 91 9 137c0 28 -4 53 -12 84 c-29 18 -68 33 -100 38'], + 0x1D535: [473,188,388,10,370,'192 376l109 89c17 -28 42 -48 69 -67l-67 -59c-28 14 -47 42 -59 51c-15 -9 -42 -33 -49 -43c-4 -18 -5 -41 -5 -58c-1 -55 1 -115 5 -172c19 -20 40 -38 63 -54c4 -3 9 -4 13 -4c5 1 13 0 22 5l63 34l3 -18l-149 -105c-25 28 -54 52 -84 74c-17 -16 -33 -33 -45 -54 c-9 -15 -16 -31 -16 -49c0 -20 10 -37 24 -51c22 -22 69 -31 98 -34v-9l-64 -40c-33 8 -67 19 -92 44c-13 12 -21 29 -21 46c0 25 13 47 26 68c21 34 41 59 68 89c6 42 7 91 7 133c0 54 1 108 -3 161c-9 10 -21 23 -30 28c-3 2 -8 5 -10 5c-3 0 -8 -2 -12 -4 c-9 -5 -28 -14 -29 -14l-13 9c33 34 68 65 104 96c25 -22 63 -57 76 -66'], + 0x1D536: [524,219,498,45,437,'89 255c0 31 0 35 -3 81c-1 8 -4 13 -9 19c-9 12 -17 19 -25 31c-4 6 -7 14 -7 24c0 4 5 19 8 25c21 32 45 62 72 89l14 -4c-9 -14 -16 -29 -16 -46c0 -10 11 -31 19 -45c5 -8 18 -20 27 -30v-32l142 106c37 -22 74 -44 115 -59c7 -60 11 -130 11 -186 c0 -80 -8 -174 -30 -251c-13 -46 -117 -145 -185 -196l-38 17c34 17 67 36 94 62c22 22 36 51 46 80c11 32 16 66 19 99c5 50 7 100 7 150c0 56 -5 112 -11 167c-24 15 -53 30 -80 35c-15 0 -59 -28 -89 -51c-1 -64 -3 -81 -3 -188c0 -38 15 -66 45 -104l-75 -75 c-17 29 -39 61 -59 79c10 61 11 126 11 203'], + 0x1D537: [471,215,390,-7,314,'290 -99l-137 -116c-45 0 -88 15 -124 41c-18 14 -32 34 -36 58c7 27 54 91 87 129c42 49 82 89 127 134c-35 16 -71 30 -110 34v11c1 0 48 44 73 67c16 15 34 33 34 56s-16 45 -34 57c-12 9 -26 16 -39 16c-7 0 -10 -2 -17 -6c-24 -14 -46 -30 -67 -47l-11 12 c45 45 93 87 146 124c24 -12 49 -25 68 -44c10 -9 19 -20 25 -31c5 -8 9 -17 9 -26c0 -13 -6 -26 -15 -36l-81 -87c37 -13 79 -29 112 -49c11 -43 14 -89 14 -134c0 -55 -10 -110 -24 -163zM225 130c-41 -35 -81 -71 -113 -114c-20 -27 -40 -56 -40 -89c0 -17 10 -31 22 -42 c23 -24 55 -39 89 -39c10 0 16 4 23 12c10 10 18 37 22 57c7 35 12 70 12 105c0 37 -4 74 -15 110'], + 0x1D56C: [688,31,847,29,827,'583 124l-232 -155c-27 29 -56 57 -90 80c-21 14 -43 24 -70 24c-34 0 -93 -23 -133 -42l-22 17l200 128c27 17 52 36 76 56c69 59 100 141 100 223c0 49 -27 95 -68 129c-29 25 -70 40 -112 40c-36 0 -58 -7 -78 -24c-17 -14 -22 -35 -22 -54c0 -12 6 -23 13 -33 c11 -15 24 -28 38 -41c16 -14 32 -28 44 -45c8 -10 15 -20 15 -32c0 -30 -22 -56 -46 -77c-32 -27 -70 -50 -110 -69l-19 15c19 11 36 24 51 40c9 11 18 23 18 37c0 16 -30 48 -51 70c-16 16 -30 33 -42 52c-7 13 -14 26 -14 40c0 28 16 56 46 83c51 47 171 102 244 102 c58 0 116 -15 158 -50c38 -33 59 -77 59 -123c0 -69 -25 -136 -60 -198l-193 -158c25 0 50 -9 72 -21c31 -16 58 -37 82 -59c37 9 97 46 142 74v429l174 105l14 -13l-51 -51c-8 -49 -8 -215 -8 -323c0 -40 1 -81 4 -121l57 -101l53 21l5 -22c-53 -35 -104 -73 -159 -106 l-12 3'], + 0x1D56D: [685,31,1043,56,963,'906 100l-172 -111c-25 -13 -62 -20 -97 -20c-63 0 -124 16 -182 35s-118 37 -181 37c-64 0 -122 -20 -177 -50l-13 24l139 77c42 24 83 49 119 79c20 18 39 41 45 64c9 36 13 81 13 120c0 37 0 76 -7 112c-9 44 -29 90 -67 122c-24 20 -52 38 -87 38 c-23 0 -45 -9 -61 -23c-14 -12 -21 -31 -21 -48c0 -13 8 -24 16 -34c13 -18 29 -34 46 -50c14 -13 28 -27 39 -43c7 -10 14 -21 14 -33c0 -10 -3 -21 -10 -30c-9 -13 -23 -26 -35 -36c-39 -34 -84 -60 -131 -84l-20 13c23 15 44 30 65 48c12 10 19 24 19 39 c0 16 -24 40 -42 58c-18 17 -34 36 -46 57c-9 15 -16 31 -16 48c0 29 40 70 70 95c58 50 130 81 206 81c80 0 142 -49 173 -108c42 30 85 59 134 80c34 15 70 28 108 28c22 0 45 -4 61 -18c15 -12 28 -60 36 -92c5 -18 13 -36 25 -51c8 -9 18 -19 33 -19c21 0 41 4 61 10 v-24l-204 -103v-5c26 -3 46 -6 75 -14c24 -7 47 -16 65 -31c38 -32 52 -77 52 -122s-16 -79 -45 -116zM500 241l-145 -104c83 -2 164 -23 241 -49c50 -17 104 -34 154 -34c19 0 38 5 51 16c23 19 26 48 26 74c0 48 -13 99 -53 133c-41 35 -98 50 -154 50 c-33 0 -65 -4 -96 -11c-4 -25 -14 -51 -24 -75zM526 346c83 19 174 46 252 87c-9 5 -21 12 -27 19c-7 8 -13 17 -15 26c-1 2 -8 40 -12 60c-5 24 -11 51 -29 67c-10 8 -23 14 -36 14c-25 0 -47 -9 -66 -21c-27 -18 -51 -45 -72 -78c6 -30 7 -58 7 -101c0 -25 -1 -51 -2 -73'], + 0x1D56E: [677,32,723,71,729,'313 593l25 -25c82 52 173 93 274 109c8 -36 19 -72 50 -98c8 -7 19 -7 30 -7c8 0 26 3 37 6v-25c-27 -11 -105 -40 -140 -40c-8 0 -16 1 -23 5c-10 6 -21 13 -28 22c-18 22 -35 47 -49 71c-9 -2 -17 -5 -23 -10c-13 -12 -19 -30 -19 -46c0 -17 11 -49 21 -74 c11 -28 19 -61 19 -86c0 -32 -6 -66 -33 -89c-20 -17 -44 -28 -68 -40c-37 -16 -76 -30 -115 -43l-20 14c25 7 45 22 63 37c21 18 37 41 37 67c0 32 -7 63 -16 94c-9 33 -20 71 -20 98c0 9 1 16 4 22c-24 -2 -47 -11 -64 -26c-21 -17 -33 -40 -42 -64 c-11 -30 -14 -62 -14 -94c0 -88 27 -177 101 -240c63 -53 146 -86 234 -86c21 0 45 1 62 9l116 54l4 -27l-166 -103c-28 -6 -56 -10 -85 -10c-102 0 -206 21 -279 82c-79 68 -115 162 -115 256c0 62 18 123 47 179c21 16 124 77 195 108'], + 0x1D56F: [685,29,981,30,896,'413 549l22 -11c-27 -22 -62 -52 -62 -75c0 -21 22 -47 45 -75c14 -16 37 -42 49 -60c8 -11 13 -25 13 -39c0 -25 -13 -48 -34 -66c-34 -29 -78 -53 -127 -71c61 -10 179 -42 261 -64c25 -7 52 -13 79 -13c25 0 45 13 62 28c23 18 35 45 43 71c12 34 16 69 16 104 c0 86 -25 174 -98 235c-35 30 -80 49 -127 62c-58 16 -119 22 -180 22c-89 0 -181 -17 -246 -71c-51 -44 -71 -100 -74 -161l-25 7c0 85 32 169 104 230c36 31 83 49 132 61c64 16 131 22 197 22c125 0 253 -25 342 -101c66 -56 91 -134 91 -212c0 -76 -28 -160 -78 -231 c-81 -68 -154 -117 -249 -170c-47 0 -101 18 -149 34c-78 26 -175 58 -239 58c-30 0 -59 -10 -80 -28c-19 -16 -37 -32 -53 -49l-17 19c42 58 98 108 155 156c33 0 65 1 97 7c20 3 40 7 54 19s20 28 20 45c0 13 -7 25 -14 36c-12 18 -26 34 -40 49s-27 29 -38 46 c-7 10 -13 21 -13 33c0 14 3 28 12 40c12 17 25 31 42 45c33 25 69 48 107 68'], + 0x1D570: [687,29,782,73,733,'614 461c20 -36 45 -65 81 -89v-12l-89 -55c-12 7 -25 13 -44 26l-36 25c-4 3 -10 6 -15 6c-9 0 -16 -4 -23 -9c-7 -15 -17 -27 -30 -38c-50 -42 -114 -69 -181 -89l-22 14c26 10 48 23 68 40c17 14 31 32 31 53c0 30 -4 63 -14 94c-9 28 -15 51 -22 79c-2 8 -3 15 -3 23 c0 13 2 26 6 38c-20 -4 -37 -14 -52 -26c-52 -45 -74 -107 -74 -170c0 -87 38 -171 111 -233c58 -49 134 -84 216 -84c71 0 138 23 195 58v-27l-155 -103c-38 -7 -77 -11 -116 -11c-94 0 -191 24 -259 81c-79 67 -114 159 -114 253c0 61 12 122 41 178c60 43 126 81 193 116 l43 -18c79 47 168 80 260 106c6 -22 14 -44 24 -65c8 -15 15 -25 28 -36c7 -6 15 -9 25 -9c13 0 33 4 46 7l-3 -27c-42 -13 -130 -40 -131 -40c-4 -1 -7 -1 -11 -1s-9 0 -12 2c-10 7 -19 14 -27 24l-59 76c-19 -12 -36 -28 -36 -48c0 -28 8 -66 19 -96s19 -66 19 -93'], + 0x1D571: [684,147,721,17,734,'438 299l150 119c31 -25 50 -57 70 -94l-68 -60c-8 12 -20 28 -28 35c-8 8 -25 14 -39 14c-21 0 -48 -17 -67 -33c33 -34 68 -73 93 -112c16 -24 31 -49 31 -77c0 -51 -21 -101 -64 -137c-66 -57 -151 -101 -247 -101c-38 0 -79 7 -107 30c-31 27 -39 66 -39 103 c0 27 4 49 9 75c3 13 5 39 5 55c0 15 -3 29 -16 40c-9 8 -23 13 -36 13c-17 0 -45 -13 -64 -23l-4 23c32 18 65 35 100 47c26 9 53 14 80 14c19 0 31 -5 44 -15c11 -10 19 -26 19 -39c0 -22 -2 -45 -8 -69c-11 -43 -17 -87 -17 -123c0 -26 6 -53 28 -72 c16 -12 37 -19 58 -19c41 0 80 16 109 41c31 26 38 65 38 101c0 39 -55 101 -95 147c-30 35 -60 70 -85 109c-14 21 -28 44 -28 69c0 17 7 33 17 48c12 19 29 37 48 53c29 24 64 44 100 61c-69 32 -163 74 -215 74c-22 0 -46 -4 -62 -18c-36 -30 -53 -71 -63 -113l-26 16 c14 58 39 115 89 157c37 32 89 46 141 46c29 0 57 -7 83 -15c41 -11 80 -27 118 -43c43 -18 105 -45 131 -45c25 0 70 36 101 61l12 -16c-46 -45 -117 -114 -151 -140c-40 2 -85 13 -122 24c-29 -9 -52 -19 -74 -37c-15 -13 -23 -32 -23 -50c0 -19 9 -37 19 -55 c15 -25 34 -47 55 -69'], + 0x1D572: [692,27,927,74,844,'308 596l35 -12c44 30 93 56 144 78l22 -12c-43 -18 -77 -60 -77 -100c0 -29 17 -97 31 -144l66 34l114 86c-35 6 -64 16 -90 37c-13 12 -24 33 -29 49l112 80c8 -21 15 -43 33 -58c19 -16 46 -22 72 -22c12 0 42 8 65 19l3 -24c-72 -49 -137 -96 -204 -149 c67 0 135 -13 183 -54c36 -30 56 -71 56 -113c0 -95 -65 -179 -159 -227l-150 -82c-35 -5 -68 -9 -96 -9c-91 0 -181 25 -244 81c-82 73 -121 166 -121 264c0 36 5 73 14 108c7 25 17 46 34 70c62 39 124 72 186 100zM293 214l-11 18c16 6 28 12 43 24c16 16 24 35 24 55 c0 13 -11 70 -21 102c-15 50 -21 80 -21 100c0 19 1 39 13 55c-30 -2 -51 -15 -73 -33c-42 -36 -56 -95 -56 -144c0 -96 38 -190 119 -258c59 -51 137 -84 222 -84c47 0 96 12 130 39c40 31 56 81 56 128c0 48 -17 96 -57 130c-33 28 -81 43 -127 43c-23 0 -45 -1 -68 -9 c2 -11 3 -23 3 -35c0 -24 -6 -48 -25 -65c-17 -14 -38 -25 -59 -34c-31 -13 -59 -22 -92 -32'], + 0x1D573: [684,127,850,0,753,'354 127l-166 -145c-16 15 -34 29 -53 40c-13 7 -27 14 -43 14c-33 0 -67 -30 -76 -39l-16 18c47 47 116 117 160 117c42 0 76 -29 99 -56c17 20 29 40 29 64c0 34 -41 101 -72 149c-32 48 -61 100 -61 156c0 25 14 48 29 69c24 33 53 62 84 90c33 30 76 55 116 80 c21 -18 44 -35 69 -48c17 -9 36 -17 56 -17c35 0 88 34 111 51l14 -18c-35 -32 -89 -80 -139 -111c-15 -4 -31 -7 -47 -7c-59 0 -111 27 -157 56c-20 -18 -37 -40 -37 -65c0 -23 6 -45 15 -66c14 -35 33 -71 53 -102c57 43 125 88 187 122c64 0 148 -23 186 -45 c10 -5 31 -29 34 -40c20 -58 24 -91 24 -152c0 -87 -15 -173 -51 -254c-1 0 -107 -67 -160 -100c-14 -8 -30 -15 -47 -15c-38 0 -72 17 -97 40l59 70l16 1c6 -14 16 -28 29 -38c10 -8 22 -15 36 -15c21 0 37 8 52 20c37 31 37 150 37 227c0 34 -3 138 -45 172 c-26 22 -61 38 -98 38c-23 0 -46 -2 -67 -9c-18 -7 -43 -19 -81 -48c24 -40 46 -94 46 -126c0 -27 -7 -58 -28 -78'], + 0x1D574: [683,25,654,31,623,'614 670l9 -15c-61 -48 -133 -98 -205 -133l-110 36c-33 9 -66 18 -101 18c-32 0 -67 -12 -90 -31c-27 -23 -46 -53 -64 -82h-7l-15 14c19 37 39 73 62 108c15 22 31 44 52 61c30 24 70 37 110 37c38 0 89 -19 132 -34c36 -13 92 -33 111 -33s34 5 51 13 c23 11 44 26 65 41zM45 -16l-7 18c47 48 105 96 159 138c23 -42 37 -67 74 -97c13 -11 31 -15 49 -15c24 0 42 8 59 21c15 13 25 38 31 56c8 25 8 51 8 77c0 10 -8 75 -12 112c-3 26 -5 52 -5 77c0 21 1 42 4 62c51 55 110 104 177 145l25 -10c-24 -17 -39 -31 -56 -53 c-12 -16 -23 -40 -23 -60c0 -24 0 -54 3 -72c8 -48 15 -97 15 -145c0 -60 -24 -122 -75 -165c-65 -56 -142 -98 -236 -98c-48 0 -92 21 -128 47'], + 0x1D575: [681,142,652,-8,615,'615 609v-23c-68 -33 -148 -64 -223 -85c-28 12 -69 37 -75 41c-36 19 -74 37 -117 37c-24 0 -52 -7 -68 -21c-22 -18 -36 -40 -50 -62l-18 14c26 46 55 91 98 127c30 26 70 44 113 44c17 0 32 -7 46 -14c24 -11 46 -24 68 -38c21 -14 43 -28 66 -39c14 -6 29 -11 45 -11 c32 0 77 16 115 30zM1 59l-9 18c30 20 62 39 97 53c26 11 54 19 83 19c20 0 41 -5 56 -18c10 -8 12 -21 13 -33c1 -6 1 -67 1 -100s11 -65 38 -88c12 -10 28 -17 44 -17c26 0 50 7 68 23c26 22 32 59 32 90c0 47 -18 111 -35 165c-15 46 -25 93 -25 140c0 17 1 34 5 51 c50 62 109 117 178 164l25 -9c-46 -40 -82 -88 -83 -145c0 -44 7 -87 20 -129c15 -52 30 -105 30 -159c0 -56 -21 -111 -68 -151c-52 -44 -120 -75 -194 -75c-37 0 -77 3 -104 26c-30 25 -43 59 -48 94c-5 29 -12 73 -24 83c-11 9 -26 15 -42 15c-20 0 -40 -8 -58 -17'], + 0x1D576: [682,26,789,20,813,'738 348l-197 -65c79 -15 95 -46 108 -126c7 -41 27 -67 45 -79c12 -8 29 -11 45 -11c25 0 47 11 67 24l7 -22c-31 -26 -64 -51 -101 -71c-23 -12 -48 -24 -75 -24c-17 0 -36 1 -48 11c-33 29 -45 69 -51 108c-2 11 -12 72 -37 108c-8 11 -29 29 -73 29 c-34 0 -70 -11 -98 -24c2 -13 3 -25 3 -37c0 -14 -2 -28 -6 -45c-43 -46 -94 -93 -151 -127c-14 -8 -27 -14 -39 -19c-38 0 -72 14 -93 30c-3 2 -16 15 -24 24l86 85h14c8 -20 17 -39 35 -54c9 -8 21 -17 35 -17c10 0 22 2 29 8c15 14 18 33 18 53c0 34 -24 91 -41 133 c-23 55 -44 111 -44 169c0 30 13 59 30 85c23 35 53 65 86 93c69 59 162 95 260 95c117 0 156 -35 183 -64c2 -10 3 -19 3 -30c0 -22 -5 -50 -22 -98l-20 -6c-8 39 -25 58 -49 79c-46 39 -112 62 -176 62c-54 0 -108 -15 -147 -48c-27 -24 -38 -57 -38 -90 c0 -43 10 -84 23 -125c41 39 85 75 137 104c36 19 76 36 119 36c22 0 44 -4 60 -17c16 -15 28 -44 37 -68c6 -18 12 -35 22 -44c6 -6 16 -10 26 -10c12 0 24 0 46 6zM323 230c31 14 102 46 178 59l55 23c-13 9 -29 36 -35 55c-4 17 -12 35 -27 47c-11 9 -24 18 -39 18 c-37 0 -72 -15 -97 -37c-24 -20 -44 -52 -58 -81c8 -26 16 -58 23 -84'], + 0x1D577: [684,28,786,30,764,'367 257c-24 -29 -68 -72 -116 -104c1 0 106 -32 153 -47c56 -17 116 -24 176 -24c42 0 84 11 114 37c29 24 42 58 51 92l19 -11c-10 -40 -22 -81 -39 -119c-11 -24 -22 -48 -43 -66c-30 -25 -69 -43 -112 -43c-93 0 -182 23 -267 53c-49 17 -119 41 -151 41 c-19 0 -38 -6 -52 -17c-12 -11 -37 -44 -54 -67l-16 13c28 59 65 115 117 161c11 6 25 9 41 9c7 0 14 0 22 -2c15 4 36 12 47 21c15 12 20 30 20 47c0 22 -37 78 -61 115c-21 32 -38 67 -38 104c0 25 11 50 26 72c19 30 45 57 74 81c67 57 162 81 256 81c40 0 82 -5 111 -29 c13 -12 17 -27 20 -43c4 -23 3 -47 0 -70c-2 -13 -3 -21 -3 -34c0 -17 9 -31 24 -42c6 -5 45 -5 63 -5v-18l-172 -49c-10 0 -21 1 -29 7c-13 12 -21 27 -21 43c0 14 4 26 6 40c2 17 5 48 5 52c0 23 -8 46 -27 62c-25 21 -60 30 -95 30c-32 0 -65 -8 -88 -27 c-24 -21 -35 -49 -35 -78c0 -40 18 -78 37 -115c14 -26 26 -53 34 -82c5 -15 8 -31 8 -47c0 -5 -1 -17 -5 -22'], + 0x1D578: [686,33,1239,26,1232,'1223 76l-179 -109l-80 111c0 105 0 237 6 289c33 48 63 77 101 103c-12 3 -18 5 -26 17c-9 14 -22 40 -31 62c-7 18 -16 36 -29 48c-10 8 -23 15 -37 15c-24 0 -49 -5 -69 -16c-25 -14 -40 -26 -60 -45c5 -28 8 -72 8 -101c0 -107 -14 -216 -69 -313l-170 -165 c-13 12 -28 24 -45 33c-11 6 -23 12 -37 12c-18 0 -36 -5 -49 -16l-16 -14l-17 15c25 28 66 71 78 82c19 17 44 33 73 33c25 0 57 -24 77 -41c27 34 36 72 45 112c13 59 14 124 14 183c0 40 -3 80 -15 119c-9 27 -21 54 -44 74c-14 12 -32 23 -52 23c-15 0 -28 -4 -41 -10 c-16 -9 -32 -21 -50 -35c8 -31 14 -62 14 -94c0 -107 -34 -221 -87 -318l-219 -155c-13 15 -28 29 -45 39c-14 8 -29 14 -45 14c-20 0 -39 -5 -54 -17c-10 -8 -24 -20 -30 -26l-15 15c29 32 66 72 91 92c23 20 54 31 86 31c16 0 30 -7 42 -15c18 -11 35 -28 48 -44 c14 10 26 19 35 28c28 25 39 60 50 95c15 51 20 104 20 157c0 46 -4 94 -18 139c-11 32 -27 66 -55 90c-31 27 -70 46 -116 46c-21 0 -51 -1 -67 -15c-13 -11 -23 -23 -23 -39c0 -17 36 -59 61 -85c43 -43 58 -67 58 -84c0 -29 -21 -55 -45 -76c-35 -29 -74 -51 -116 -72 l-18 17c21 10 38 20 53 35c10 11 20 24 20 38c0 20 -28 54 -50 76c-26 26 -58 63 -58 89c0 18 12 35 23 51c18 24 41 45 65 65c53 45 137 67 188 67c48 0 104 -15 139 -44c24 -20 46 -47 58 -74c30 23 62 44 98 59c26 11 55 20 85 20c35 0 68 -12 93 -32 c13 -12 23 -25 33 -38c36 30 76 58 121 78c36 16 74 28 115 28c15 0 31 -2 43 -12c10 -9 25 -37 34 -55c8 -16 17 -32 31 -44c9 -9 21 -14 34 -14c16 0 31 3 46 8v-18c-48 -25 -73 -41 -116 -72c-5 -4 -25 -28 -28 -39c-9 -36 -9 -61 -9 -97c0 -55 2 -110 14 -164 c4 -19 10 -37 18 -55c6 -13 10 -18 21 -27c7 -6 20 -9 30 -9c9 0 41 2 61 9v-18'], + 0x1D579: [681,33,982,26,968,'860 476c-5 -4 -25 -28 -28 -39c-9 -36 -9 -61 -9 -97c0 -55 2 -110 14 -164c4 -19 10 -37 18 -55c6 -13 10 -18 21 -27c7 -6 20 -9 30 -9c9 0 41 2 61 9v-18l-179 -109l-80 111c0 105 0 237 6 289c33 48 63 79 101 105c-14 0 -26 7 -35 15c-13 12 -23 27 -29 42 c-10 25 -25 57 -41 71c-11 8 -24 14 -38 14c-25 0 -53 -16 -72 -30c-36 -28 -57 -50 -82 -83c16 -48 24 -113 24 -166c0 -72 -13 -144 -44 -210l-205 -143c-9 -4 -23 -10 -29 -10c-51 0 -93 27 -128 57l88 94h19c5 -14 20 -33 38 -49c14 -11 32 -17 52 -17c25 0 46 14 64 28 c15 13 19 31 23 49c7 29 9 58 9 88c0 70 -8 140 -31 208c-17 51 -43 100 -87 138c-31 26 -70 47 -115 47c-21 0 -44 -3 -60 -16c-12 -11 -19 -24 -19 -39s9 -30 17 -43c14 -20 31 -38 49 -56c14 -13 27 -27 37 -43c7 -10 10 -21 10 -33c0 -26 -17 -46 -37 -65 c-32 -31 -70 -55 -111 -78l-22 16c18 11 35 24 48 39c9 11 17 23 17 37c0 20 -19 39 -36 55c-18 18 -34 36 -46 56c-9 15 -17 30 -17 47c0 20 9 39 20 57c16 24 35 46 59 64c52 39 122 68 195 68c49 0 98 -15 133 -45c33 -28 57 -63 70 -101c22 22 44 43 68 63 c50 43 112 80 185 80c25 0 53 -3 71 -19c11 -9 24 -36 36 -64c5 -13 14 -24 25 -34c6 -7 13 -13 23 -13c18 0 36 3 52 9l5 -15c-29 -13 -66 -37 -108 -66'], + 0x1D57A: [726,29,976,11,881,'296 608c0 24 4 35 35 60c18 13 52 45 62 58h25c-6 -9 -11 -19 -11 -30c0 -9 10 -15 20 -17c12 -3 69 -5 103 -7c56 -3 112 -10 165 -24c40 -12 79 -27 109 -53c29 -24 45 -55 57 -87c15 -42 20 -86 20 -130c0 -86 -29 -170 -81 -244c-57 -51 -117 -88 -185 -121 c-48 -23 -100 -42 -155 -42c-64 0 -126 18 -187 37c-41 13 -90 28 -125 28c-47 0 -86 -25 -116 -54l-21 22l89 110c35 8 70 17 95 38c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -31 50 -52 76c-26 32 -50 74 -51 104c0 44 77 117 150 157l14 -14c-26 -18 -56 -42 -56 -77 c0 -16 25 -67 47 -98c24 -32 40 -59 59 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -56 -62 -88 -83c22 0 41 -2 70 -9c58 -14 117 -31 173 -50c49 -17 82 -27 147 -27c26 0 51 15 70 29c32 25 48 66 60 101c15 49 20 100 20 150c0 40 -5 81 -18 119 c-11 30 -26 59 -52 81c-24 20 -56 29 -88 36c-46 10 -74 13 -122 13c-25 0 -47 -1 -68 -3c-15 -1 -30 -1 -44 -1c-46 0 -64 26 -64 36'], + 0x1D57B: [685,223,977,19,944,'508 -141l-138 -82l-27 14c12 35 16 70 20 105c5 52 7 106 7 158c-27 11 -60 22 -86 22c-37 0 -67 -18 -92 -40c-18 -15 -36 -30 -51 -48l-15 19c32 47 70 104 107 135c25 21 57 37 93 37c12 0 26 -1 43 -6v196c0 43 -6 87 -21 128c-12 33 -29 64 -57 88 c-24 20 -53 34 -87 34c-38 0 -58 -12 -71 -22c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41 c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 104 67 181 67c54 0 97 -17 134 -48c24 -20 48 -53 60 -80c42 36 88 71 140 94c39 17 81 30 124 30c21 0 43 -2 58 -15c15 -12 21 -42 24 -65c3 -20 11 -39 25 -56 c10 -11 23 -22 40 -22c13 0 30 4 41 7l7 -19c-45 -20 -89 -41 -126 -69c-15 -12 -29 -27 -29 -45c0 -32 18 -61 38 -88c23 -31 54 -74 54 -104c0 -24 -5 -48 -19 -69c-24 -35 -48 -63 -83 -94c-20 -18 -42 -36 -67 -47c-19 -9 -40 -15 -61 -15c-54 0 -109 18 -157 39 c0 -54 5 -106 14 -160zM494 518v-376l175 -63c26 -9 50 -17 77 -17c12 0 24 4 32 11c12 10 16 22 16 36c0 15 -8 34 -16 47c-12 21 -26 40 -42 59c-27 32 -57 76 -57 100c0 19 9 37 23 52c25 28 54 53 84 76c-19 3 -39 9 -48 17c-7 6 -23 22 -23 62c0 15 -2 30 -6 44 c-3 10 -7 20 -15 27c-14 12 -32 19 -51 19c-37 0 -69 -17 -95 -39c-10 -9 -35 -33 -54 -55'], + 0x1D57C: [726,82,976,11,917,'716 66c20 -18 39 -33 63 -47c16 -8 33 -17 52 -17c29 0 58 7 86 16v-21c-53 -28 -107 -55 -163 -79c-60 22 -117 48 -169 83c-36 -17 -84 -30 -125 -30c-64 0 -126 18 -187 37c-41 13 -90 28 -125 28c-47 0 -86 -25 -116 -54l-21 22l89 110c35 8 70 17 95 38 c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -31 50 -52 76c-26 32 -50 74 -51 104c0 44 77 117 150 157l14 -14c-26 -18 -56 -42 -56 -77c0 -16 25 -67 47 -98c24 -32 40 -59 59 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -56 -62 -88 -83c22 0 41 -2 70 -9 c58 -14 117 -31 173 -50c49 -17 82 -27 147 -27c26 0 51 15 70 29c32 25 48 66 60 101c15 49 20 100 20 150c0 40 -5 81 -18 119c-11 30 -26 59 -52 81c-24 20 -56 29 -88 36c-46 10 -74 13 -122 13c-25 0 -47 -1 -68 -3c-15 -1 -30 -1 -44 -1c-46 0 -64 26 -64 36 c0 24 4 35 35 60c18 13 52 45 62 58h25c-6 -9 -11 -19 -11 -30c0 -9 10 -15 20 -17c12 -3 69 -5 103 -7c56 -3 112 -10 165 -24c40 -12 79 -27 109 -53c29 -24 45 -55 57 -87c15 -42 20 -86 20 -130c0 -86 -29 -170 -81 -244c-22 -24 -56 -48 -84 -68'], + 0x1D57D: [689,29,977,19,977,'205 619c-29 0 -59 -12 -72 -22c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67 c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 109 71 187 71c63 0 109 -19 150 -54c26 -22 50 -52 61 -81c35 35 77 72 122 98c33 18 70 33 109 33c26 0 50 -7 68 -23c21 -17 25 -48 28 -74c3 -23 6 -53 21 -66c12 -10 29 -12 45 -12 c11 0 26 1 37 5l6 -13c-93 -36 -146 -62 -210 -101c34 -4 73 -22 94 -45c0 -58 1 -127 7 -163c4 -22 12 -45 25 -63c12 -16 24 -30 39 -43c7 -6 22 -6 34 -6c14 0 29 7 43 14l1 -23l-170 -101c-23 46 -57 92 -89 137c0 46 0 118 -3 139c-2 18 -9 45 -24 59 c-20 16 -39 29 -66 34c-15 3 -31 4 -46 4c-20 0 -40 -7 -59 -15c-11 -68 -30 -118 -67 -179l-230 -178l-51 41c-10 8 -23 15 -36 15s-24 -3 -35 -9c-16 -9 -29 -22 -41 -37l-16 16c45 53 113 126 158 126c21 0 34 -7 44 -14c19 -13 36 -28 52 -43c13 9 26 19 38 29 c29 24 38 59 45 93c13 55 16 111 16 168c0 43 -6 86 -21 128c-13 33 -34 65 -64 91c-28 24 -62 43 -107 43zM778 458c-14 0 -30 6 -41 16c-14 13 -20 41 -23 64s-9 55 -21 65c-9 8 -20 15 -33 15c-29 0 -54 -14 -74 -31c-28 -25 -44 -43 -64 -73c3 -17 3 -47 3 -64 c0 -31 -1 -59 -3 -92c43 18 104 43 156 47'], + 0x1D57E: [685,31,978,82,906,'594 513l-131 67c-28 14 -58 30 -89 30c-35 0 -68 -14 -92 -34c-58 -49 -81 -118 -81 -187c0 -95 31 -192 112 -260c67 -57 158 -88 253 -88c79 0 159 18 215 66c28 24 41 58 41 91c0 32 -16 63 -43 85c-36 31 -89 39 -139 39c-44 0 -86 -8 -128 -17 c-42 -8 -111 -22 -125 -22c-33 0 -66 7 -89 27c-20 17 -28 40 -28 64c0 37 23 70 54 96c28 24 67 37 103 45l13 -14c-11 -4 -21 -12 -30 -19c-17 -14 -30 -33 -30 -53c0 -16 5 -31 18 -42c18 -15 46 -15 70 -15c48 0 94 5 140 13c45 7 88 21 133 21c43 0 87 -10 118 -36 c33 -29 47 -69 47 -109c0 -69 -44 -129 -101 -177c-94 -80 -225 -115 -356 -115c-98 0 -192 32 -261 91c-76 64 -106 151 -106 252c0 100 45 184 126 253c78 65 164 91 287 120c44 -16 85 -37 128 -55c50 -21 110 -46 156 -46c25 0 46 7 64 22c17 14 24 28 33 47l25 -14 c-12 -31 -34 -59 -61 -82c-33 -28 -75 -47 -120 -58c-18 -4 -36 -9 -55 -9c-26 0 -49 12 -71 23'], + 0x1D57F: [691,30,789,30,798,'798 659l-121 -118c-29 -9 -60 -13 -92 -13c-42 0 -98 8 -139 15c-32 -28 -48 -49 -48 -85c0 -16 8 -36 19 -49c15 -19 32 -39 50 -56c34 -32 82 -77 82 -106c0 -35 -69 -91 -116 -127c48 -19 117 -46 155 -46c19 0 38 6 55 14c28 11 52 27 76 43l11 -24 c-55 -50 -117 -95 -181 -137c-53 0 -103 18 -150 38c-39 16 -85 34 -123 34c-18 0 -37 0 -51 -5c-36 -13 -59 -30 -88 -52l-12 18c57 51 119 97 191 132c30 0 62 -1 91 -8c18 15 29 33 29 55c0 24 -42 66 -72 94c-19 18 -37 37 -53 57c-11 14 -20 29 -25 45 c32 63 76 122 134 171c-75 14 -191 37 -224 37c-27 0 -62 -3 -81 -19c-13 -11 -18 -27 -18 -41c0 -39 35 -68 72 -89l2 -10l-83 -68c-32 25 -58 58 -58 96c0 51 31 98 73 135c63 53 144 90 234 90c37 0 124 -14 185 -25c49 -7 99 -14 150 -14c46 0 94 23 126 50v-32'], + 0x1D580: [689,39,850,16,871,'363 249c-38 -42 -95 -103 -125 -121c26 -4 94 -26 136 -41c36 -13 79 -24 113 -24c31 0 55 18 77 36c14 13 22 30 23 47c4 67 7 134 7 201c0 82 -5 164 -13 246c67 24 128 57 187 92l17 -15l-25 -24c-25 -26 -34 -60 -38 -93c-7 -58 -8 -115 -8 -173 c0 -61 1 -121 5 -182c1 -18 2 -22 15 -52c9 -21 22 -44 36 -59c7 -9 19 -13 33 -13s43 10 64 18l4 -20l-200 -111l-71 123l-127 -105c-19 -11 -41 -13 -55 -13c-45 0 -89 14 -129 30c-52 21 -116 42 -165 42c-18 0 -44 -8 -90 -50l-18 20l106 109c32 5 71 15 87 25 c18 11 51 38 61 65c3 11 4 26 4 37c0 20 -6 40 -15 60c-11 27 -27 53 -44 78c-26 39 -59 90 -59 122c0 7 0 16 2 22c15 25 63 80 104 114c21 18 45 34 71 49l23 -16c-16 -10 -31 -22 -46 -34c-17 -14 -30 -32 -30 -53c0 -37 16 -73 35 -107c23 -40 41 -83 50 -127 c4 -17 6 -34 6 -51c0 -18 -2 -35 -8 -52'], + 0x1D581: [687,29,981,25,966,'303 687c52 0 93 -13 126 -41c32 -27 57 -69 66 -107c42 40 87 81 137 111c29 17 60 35 94 35c17 0 34 -5 50 -10c22 -8 43 -19 63 -31s49 -29 64 -29c21 0 41 3 61 14l2 -25c-18 -10 -34 -22 -49 -35c-37 -31 -72 -69 -72 -115c0 -27 0 -58 5 -81l17 -95 c4 -22 7 -45 7 -68c0 -46 -16 -88 -56 -120c-47 -39 -106 -82 -126 -93c-27 -15 -56 -26 -90 -26c-26 0 -51 8 -76 16c-40 13 -78 29 -116 46c-33 15 -66 29 -101 40c-22 7 -44 13 -67 13s-45 -7 -65 -16c-28 -12 -54 -28 -77 -46l-13 18c50 42 109 82 166 121 c30 7 55 22 77 40c20 17 29 41 35 65c10 36 13 74 13 111c0 42 -5 84 -19 124c-11 31 -27 61 -54 84c-25 21 -54 37 -93 37c-30 0 -60 -17 -73 -27c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30 c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 109 69 187 69zM462 262l-117 -88c41 -1 143 -46 213 -75 c47 -20 105 -44 148 -44c13 0 29 4 38 12c10 8 13 22 13 34c0 17 -2 38 -5 56l-23 129c-4 21 -4 41 -4 62c0 29 0 71 12 86c27 31 62 63 95 93c-40 0 -76 16 -109 35c-28 17 -62 36 -93 36c-22 0 -40 -14 -55 -27c-28 -22 -50 -49 -70 -76c1 -14 2 -29 2 -43 c0 -65 -12 -130 -45 -190'], + 0x1D582: [682,30,1235,31,1240,'219 617c-29 0 -61 -10 -74 -20c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67 c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 109 64 185 64c63 0 111 -19 151 -53c24 -20 41 -46 52 -73c64 45 111 76 178 114c35 -19 60 -48 101 -110c37 32 78 65 122 91c28 15 56 31 90 31c37 0 70 -16 101 -33 c30 -16 62 -33 98 -33c11 0 30 7 40 12l-1 -25c-36 -26 -83 -61 -112 -98c-18 -22 -24 -47 -24 -74c0 -23 10 -62 18 -93c11 -42 21 -81 21 -124c0 -22 -2 -43 -7 -65c-4 -15 -9 -29 -20 -41l-181 -123c-24 -8 -48 -13 -73 -13c-35 0 -75 14 -110 25c-58 19 -116 35 -177 42 c-42 -19 -87 -42 -126 -64c-10 -4 -22 -5 -35 -5c-52 0 -100 20 -145 43c-32 16 -67 32 -99 32c-21 0 -40 -6 -57 -15c-24 -11 -45 -27 -65 -44l-13 22c51 48 109 90 167 132c54 0 90 14 122 41c27 23 42 53 53 84c14 42 18 86 18 129c0 67 -15 136 -72 184 c-27 24 -60 39 -103 39zM435 206l-135 -75c16 -5 67 -26 99 -42c36 -18 76 -34 119 -34c7 0 14 2 21 5c31 14 67 30 87 50c27 27 48 57 58 91c15 50 15 96 15 148c0 42 -3 85 -14 126c-8 28 -18 55 -42 76c-15 12 -32 22 -50 31c-30 -18 -53 -36 -74 -53c3 -14 4 -48 4 -62 c0 -93 -22 -185 -88 -261zM764 212c-28 -37 -50 -62 -76 -82c48 0 138 -32 200 -54c28 -10 57 -20 88 -20c13 0 25 6 34 12c12 8 17 21 17 52c0 34 -13 96 -25 140c-12 41 -20 81 -20 120c0 19 2 42 54 86l68 61c-2 -1 -14 -1 -24 -1c-23 0 -64 20 -81 33 c-21 16 -70 28 -89 28c-20 0 -42 -3 -59 -12c-21 -13 -35 -25 -51 -43c9 -36 14 -81 14 -118c0 -70 -20 -137 -50 -202'], + 0x1D583: [682,35,849,32,835,'835 578l-131 -64c-48 17 -83 50 -109 87c-76 -58 -106 -93 -106 -235c65 0 146 0 194 4l-64 -58c-43 3 -109 3 -135 3c0 -79 20 -160 87 -217c30 -26 73 -38 116 -38c32 0 75 16 110 30v-24c-46 -27 -89 -59 -132 -91c-23 -7 -61 -10 -64 -10c-41 0 -80 14 -109 38 c-18 15 -31 34 -43 52c-16 27 -29 56 -40 84c-58 -54 -120 -106 -193 -146c-20 -11 -48 -25 -64 -25c-31 0 -82 30 -120 53l81 81c17 -15 36 -29 58 -39c15 -8 32 -14 51 -14c14 0 28 4 40 10c18 9 34 21 49 33c26 23 39 56 48 86c13 45 17 91 17 137c-70 0 -157 0 -209 -3 l65 56c41 -2 97 -2 146 -2c0 38 -2 77 -12 115c-7 24 -17 46 -38 64s-47 33 -77 33c-37 0 -68 -11 -93 -33l-41 -37l-18 20c53 54 112 104 173 152c51 -5 102 -17 139 -48c34 -29 60 -66 65 -107c25 30 54 57 84 83c39 33 87 57 139 74c14 -30 29 -60 56 -82 c10 -9 25 -10 39 -10s30 4 41 7v-19'], + 0x1D584: [689,214,983,32,879,'217 622c-31 0 -58 -15 -71 -25c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67 c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 111 65 189 65c52 0 92 -17 125 -45c27 -23 45 -62 57 -96c41 32 84 62 129 91c32 20 65 40 101 56c35 -40 81 -71 131 -95c12 -85 24 -172 24 -255c0 -123 -27 -246 -82 -360 c-51 -56 -111 -105 -183 -142c-59 -30 -125 -51 -194 -51c-61 0 -121 17 -164 53l50 97l15 -2c9 -25 21 -50 43 -69c27 -23 66 -31 103 -31c60 0 119 16 162 52c49 42 72 98 89 154c25 82 31 166 31 251c0 53 -2 107 -14 159c-7 31 -16 63 -40 86c-21 20 -49 31 -80 31 c-20 0 -50 -6 -67 -17c-21 -13 -30 -20 -44 -38c4 -18 6 -48 6 -66c0 -77 -12 -151 -59 -217c-46 -34 -100 -70 -144 -96c10 -1 68 -21 98 -34c27 -12 58 -20 87 -20c17 0 32 8 46 15c24 12 45 27 66 43l6 -21c-46 -55 -97 -107 -164 -143c-58 9 -113 32 -165 57 c-27 13 -64 20 -91 20c-23 0 -46 -7 -66 -17c-27 -13 -50 -31 -72 -50l-19 19c50 50 100 100 160 142c14 3 26 4 39 4s27 -1 43 -2c18 9 40 21 58 36c23 21 30 49 37 77c10 46 13 93 13 139c0 69 -23 138 -81 187c-23 20 -49 37 -85 37'], + 0x1D585: [718,137,726,17,633,'253 664l177 6c36 0 74 -5 100 -27c14 -12 24 -28 24 -46c0 -62 -43 -115 -94 -159c-26 -22 -68 -46 -100 -62c102 0 190 -4 250 -66c14 -14 23 -62 23 -78c0 -55 -8 -111 -28 -164c-17 -43 -42 -84 -80 -117c-67 -56 -157 -88 -251 -88c-36 0 -81 0 -109 2 c-14 2 -34 5 -34 20l1 51c0 11 -4 22 -13 29c-7 7 -17 11 -28 11c-23 0 -45 -9 -64 -20l-10 15c30 22 64 41 100 56c28 11 58 19 89 19c16 0 33 -3 44 -12c13 -12 14 -37 14 -49c0 -11 -1 -22 -3 -32c-3 -13 -3 -28 -3 -41c0 -10 11 -16 21 -19c6 -2 14 -3 22 -3 c45 0 87 16 118 43c28 23 42 60 52 92c15 42 19 87 19 131c0 29 -3 76 -27 96c-35 29 -85 37 -133 37c-36 0 -72 -8 -107 -17l-17 13l56 81c49 9 92 32 127 61c32 27 43 64 43 101c0 9 -2 18 -10 25c-17 14 -41 18 -64 18c-30 0 -60 -2 -89 -5c-31 -4 -92 -11 -95 -11 c-23 0 -45 7 -62 21c-6 5 -12 20 -15 33c27 37 67 84 92 108l18 1c-3 -6 -4 -13 -4 -20c0 -8 3 -17 11 -24c10 -8 25 -10 39 -10'], + 0x1D586: [472,32,602,80,587,'369 80l-186 -112c-39 32 -72 68 -102 105c-1 20 -1 39 -1 59c0 79 7 157 20 235c69 30 134 67 197 105c40 -16 83 -25 126 -32l66 28l8 -7c-17 -66 -17 -133 -17 -200c0 -39 1 -79 3 -118l52 -63c11 0 32 12 47 20l5 -18l-145 -111c-20 30 -44 58 -72 83zM368 110 l-2 256c-49 0 -98 11 -145 23c-16 -24 -27 -61 -27 -153c0 -32 2 -65 4 -98c25 -25 52 -52 81 -72c14 0 63 27 89 44'], + 0x1D587: [691,32,589,86,504,'220 384l142 90c35 -17 92 -41 139 -60c2 -33 3 -67 3 -100c0 -73 -5 -146 -19 -218c-87 -48 -175 -94 -271 -128c-46 32 -90 65 -128 103c13 112 13 227 13 340c0 85 -3 171 -13 255l20 8l25 -78c54 34 113 71 167 95l16 -13c-27 -19 -45 -36 -67 -58 c-13 -13 -22 -30 -27 -47c-8 -26 -9 -52 -9 -78v-107zM380 347c-40 20 -65 29 -95 37c-22 -4 -55 -23 -72 -36c0 -72 0 -193 1 -216c21 -18 47 -40 74 -55c19 -11 39 -20 61 -23c20 40 29 83 33 126c3 25 4 49 4 72c0 32 -2 63 -6 95'], + 0x1D588: [473,26,463,87,424,'424 429l-78 -96h-10c-47 42 -90 57 -114 63c-13 -19 -17 -96 -17 -126c0 -38 3 -78 6 -116c32 -29 64 -57 101 -82l106 42v-21c-63 -41 -168 -104 -197 -119c-47 34 -90 73 -130 114c-3 42 -4 87 -4 130c0 53 3 104 13 148l195 107c46 -8 90 -22 129 -44'], + 0x1D589: [632,29,588,-1,511,'257 459l22 -10c-20 -15 -46 -41 -65 -60c-10 -48 -11 -88 -11 -135c0 -35 2 -71 5 -106c39 -34 85 -62 135 -82c24 40 50 109 50 243c0 34 -2 68 -5 102c-50 40 -103 78 -163 109c-37 20 -78 38 -122 38c-30 0 -63 -9 -90 -20l-14 19c56 30 117 53 178 75 c54 -2 99 -24 146 -49c58 -31 126 -71 181 -108c5 -36 7 -72 7 -107c0 -88 -14 -176 -44 -260c-49 -40 -140 -93 -213 -137c-59 33 -115 71 -165 114c-3 18 -4 45 -4 78c0 46 2 106 7 172c47 43 111 89 165 124'], + 0x1D58A: [471,28,471,80,429,'417 108l9 -16c-64 -41 -129 -82 -197 -120c-53 34 -100 73 -144 114c-3 36 -5 72 -5 108c0 59 5 118 14 176c64 34 163 87 192 101c45 -38 91 -76 143 -109c-61 -51 -160 -122 -241 -181c0 -1 6 -38 18 -45c26 -20 53 -38 101 -68c31 5 75 23 110 40zM186 214 c45 31 96 67 138 102c-39 24 -102 71 -117 83c-15 -69 -21 -114 -21 -185'], + 0x1D58B: [681,242,387,37,387,'253 405h134v-7l-16 -39h-121c0 -117 0 -236 -19 -347c-3 -15 -10 -32 -18 -46l-113 -208l-20 4c14 34 40 97 45 131c6 38 9 83 9 125v341h-97v8l15 38h73c-13 40 -17 75 -25 115c13 48 34 92 75 127c27 23 65 34 102 34c15 0 31 -5 43 -12c20 -10 37 -23 53 -38l-73 -82 h-16c-11 17 -20 30 -37 43c-11 9 -26 19 -41 19c-14 0 -28 -2 -39 -11c-11 -10 -17 -25 -17 -39c0 -33 26 -61 53 -85c14 -13 27 -26 37 -41c7 -11 9 -16 13 -30'], + 0x1D58C: [473,208,594,16,541,'382 83l-198 -133c55 -30 138 -75 177 -75c16 0 33 1 44 11c9 7 9 26 9 40c0 37 -18 106 -32 157zM16 -138l169 115l-93 93c-3 38 -6 77 -6 115c0 61 6 121 22 181c64 38 129 75 197 107c41 -19 90 -41 128 -47l86 39l13 -4c-15 -30 -22 -62 -27 -94 c-7 -45 -9 -90 -9 -135c0 -86 32 -169 45 -254c-61 -66 -128 -128 -202 -184c-10 -1 -21 -2 -31 -2c-32 0 -64 6 -94 14c-51 15 -99 39 -142 65l-38 -24zM383 111v66c0 56 2 111 5 166c-57 8 -120 35 -162 57c-11 -52 -17 -112 -17 -166c0 -34 2 -68 6 -102 c25 -25 55 -54 90 -70'], + 0x1D58D: [687,203,615,88,507,'220 507l-2 -130c51 28 99 62 144 94c45 -23 93 -43 142 -61c2 -47 3 -93 3 -139c0 -40 -1 -81 -3 -121c-3 -61 -7 -122 -20 -181c-49 -57 -116 -117 -192 -172l-24 14c22 15 50 39 73 61c18 17 28 44 35 68c9 33 18 87 18 175c0 74 -6 148 -12 222 c-32 17 -74 35 -110 42l-54 -32c-3 -39 -5 -78 -5 -117c0 -34 1 -68 5 -102c16 -24 34 -46 54 -68c-42 -24 -80 -54 -116 -84c-19 30 -42 59 -68 86c9 123 16 246 16 370c0 77 -3 155 -10 232l19 9l24 -76c51 31 107 65 155 90l18 -15c-12 -7 -23 -14 -34 -23 c-45 -37 -56 -90 -56 -142'], + 0x1D58E: [686,26,331,2,327,'278 86l44 19l5 -18c-57 -34 -110 -74 -162 -113l-73 82c7 58 10 117 10 176c0 45 -2 89 -5 134l-38 21l-39 -17l-18 12c47 31 93 61 136 96c13 -10 54 -38 82 -56c-3 -56 -5 -112 -5 -169c0 -38 1 -77 3 -115c0 -10 5 -20 12 -29c8 -11 20 -27 31 -27c5 0 15 3 17 4z M73 613l91 73c23 -25 50 -50 78 -71l-80 -75c-32 22 -62 47 -89 73'], + 0x1D58F: [683,207,331,-19,238,'18 382l130 101c28 -21 55 -39 85 -58c3 -56 5 -112 5 -169c0 -95 -6 -191 -25 -285c-62 -61 -142 -127 -216 -178l-16 18c34 21 70 46 95 71c27 27 37 64 40 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -4 30 -16 41c-8 7 -19 12 -31 12c-1 0 -25 -11 -38 -17z M235 614l-81 -73c-28 22 -56 44 -80 70l81 72c10 -10 53 -46 80 -69'], + 0x1D590: [683,25,464,33,432,'109 115l5 193h-81l14 38h68c0 107 0 244 -11 319l21 8c9 -25 27 -75 27 -76c45 34 97 62 150 86l15 -16c-26 -14 -41 -26 -57 -47c-11 -15 -20 -31 -23 -48c-6 -23 -7 -49 -7 -73c41 29 95 64 138 86c16 -19 32 -39 44 -60c8 -14 13 -25 13 -41c0 -21 -15 -38 -30 -54 l-82 -84h96l-17 -38h-166c0 -55 1 -118 7 -172l90 -68c10 0 69 25 100 41l9 -19l-198 -115l-129 96c2 15 3 29 4 44zM230 346h32c16 0 36 19 49 33c16 17 25 36 25 56c0 30 -20 60 -41 83c-16 -10 -32 -21 -43 -34c-12 -15 -16 -35 -18 -52c-3 -28 -4 -57 -4 -86'], + 0x1D591: [682,24,336,100,315,'315 86l-151 -110c-22 26 -64 78 -64 79c8 73 11 162 11 257c0 113 -4 239 -8 349l19 4l20 -72c47 32 100 63 153 89l11 -9c-14 -10 -30 -26 -39 -35c-17 -17 -26 -34 -32 -56c-8 -31 -11 -63 -11 -95c-1 -51 -2 -104 -2 -157c0 -76 2 -151 9 -218l26 -29c9 0 32 9 49 18 '], + 0x1D592: [476,31,921,16,900,'511 376l147 95c47 -21 95 -39 144 -53c-10 -56 -14 -112 -14 -168c0 -42 2 -84 5 -126l28 -38c4 -4 11 -9 17 -9c2 0 11 3 15 5l34 18l13 -22c-58 -33 -112 -70 -165 -108c-22 31 -47 61 -75 89c11 34 14 92 14 154c0 45 -1 91 -3 131c-30 13 -75 30 -107 38l-55 -34 c-3 -39 -4 -76 -4 -115c0 -34 1 -68 2 -102l57 -73l-120 -86c-20 27 -59 80 -59 81c8 43 10 99 10 157c0 46 -1 93 -2 136c-25 11 -75 24 -105 31l-61 -34v-65c0 -51 2 -102 5 -152l55 -74l-114 -83c-21 31 -43 63 -66 90c6 45 8 95 8 146s-2 103 -4 152l-36 27l-46 -19 l-13 13l135 98c23 -21 49 -40 78 -56c-2 -17 -4 -50 -4 -51c54 30 104 64 150 103c45 -21 90 -43 139 -56c-1 -13 -3 -39 -3 -40'], + 0x1D593: [474,28,653,3,608,'214 129l61 -67l-112 -90c-24 26 -49 53 -78 76c8 25 10 69 10 120c0 64 -4 139 -7 198l-24 22l-43 -21l-18 14l130 93c26 -18 55 -38 82 -50c-1 -16 -1 -47 -1 -48c53 29 103 62 151 98c41 -22 96 -44 147 -63c-8 -70 -11 -140 -11 -211c0 -22 0 -45 1 -68l47 -52 c10 3 35 15 51 24l8 -16c-52 -32 -104 -74 -153 -114c-22 32 -52 64 -80 94c9 48 12 99 12 151c0 42 -2 84 -4 126c-31 15 -74 27 -108 36l-62 -31c0 -2 0 -146 1 -221'], + 0x1D594: [482,34,609,107,515,'254 -34c-52 30 -101 62 -146 99c-1 20 -1 39 -1 59c0 80 8 159 22 238c71 38 140 78 207 120c54 -33 115 -56 178 -72c1 -24 1 -49 1 -73c0 -39 -1 -77 -4 -116c-3 -44 -8 -89 -21 -132c-73 -48 -153 -89 -236 -123zM377 55c19 71 28 144 28 217c0 27 -2 55 -4 82 c-51 7 -99 24 -145 43c-15 -25 -31 -79 -31 -159c0 -35 3 -71 7 -107c42 -33 90 -62 145 -76'], + 0x1D595: [558,208,603,-2,519,'242 -161l-113 -47l-17 6c0 1 4 156 6 234c-41 0 -78 -18 -108 -41l-12 17c36 33 83 77 119 89v262c-23 21 -45 51 -52 78c30 44 68 83 108 121l20 -6c-10 -13 -19 -27 -19 -42c0 -14 7 -26 15 -37c12 -17 27 -32 44 -45v-42l143 96l135 -57c5 -26 8 -87 8 -115 c0 -85 -7 -143 -30 -226c-55 -29 -105 -65 -152 -103c-29 22 -65 36 -104 41c0 -61 4 -122 9 -183zM283 391l-50 -35v-226c54 -8 109 -25 157 -53c11 42 14 80 14 125c0 50 -4 100 -10 147c-33 14 -76 32 -111 42'], + 0x1D596: [485,212,595,87,515,'494 -171l-113 -41l-19 10c12 93 14 187 14 280l-188 -108l-98 103c-2 22 -3 44 -3 67c0 77 11 155 27 232l194 106c40 -16 82 -29 125 -36l70 43l12 -6c-30 -103 -30 -291 -30 -438c0 -71 4 -141 9 -212zM378 358c-55 4 -114 23 -144 39c-16 -29 -28 -92 -28 -187 c0 -20 1 -41 1 -62c21 -28 48 -61 76 -83c30 11 62 29 90 45c0 83 0 173 5 248'], + 0x1D597: [473,26,459,12,453,'301 334l-46 39c-5 -3 -14 -10 -18 -14c-2 -18 -4 -73 -4 -123c0 -30 1 -60 2 -89c1 -11 8 -21 16 -29c1 0 42 -32 62 -48l89 31l1 -21l-173 -106c-38 37 -81 70 -125 102c12 43 13 111 13 146c0 44 -1 74 -4 118c-15 15 -29 29 -47 40l-44 -12l-11 14l139 91l85 -62v-31 l107 91c16 -23 32 -49 52 -66c6 -5 14 -7 22 -7c9 0 25 5 36 9v-13c-28 -26 -66 -51 -102 -74c-3 -2 -6 -4 -12 -4c-15 0 -23 6 -38 18'], + 0x1D598: [480,35,522,-24,482,'482 442l-143 -100c-18 0 -41 9 -60 17c-29 14 -56 31 -82 49c-5 -23 -9 -46 -9 -69c0 -33 9 -70 28 -100c51 17 104 40 155 63c22 -10 43 -22 62 -36c5 -33 9 -67 9 -101c0 -41 -5 -82 -19 -121c-67 -23 -134 -48 -196 -79c-25 21 -52 41 -83 56c-22 11 -45 20 -71 20 c-32 0 -61 -15 -86 -31l-11 16l126 99c17 4 34 6 52 6c39 0 116 -55 165 -93c4 23 5 50 5 74c0 27 -2 55 -5 83c-15 15 -33 30 -57 30c-16 0 -30 -5 -44 -11c-20 -9 -63 -31 -95 -47c-15 13 -29 33 -41 51c-4 6 -5 13 -5 20v139l187 103l66 -38c17 -10 37 -14 57 -14 c24 0 60 17 84 33'], + 0x1D599: [654,27,393,47,407,'245 359c0 -75 0 -149 5 -223c1 -7 3 -14 8 -19c17 -20 47 -39 70 -44c8 1 53 20 75 31l4 -20l-178 -111c-32 32 -67 61 -106 87c6 74 6 200 6 299h-82v8l15 38h67v148l166 101l12 -14c-20 -16 -40 -34 -47 -42c-9 -9 -14 -118 -14 -193h107v-7l-16 -39h-92'], + 0x1D59A: [473,35,588,9,604,'370 424l121 44l14 -9c-15 -100 -17 -200 -17 -301c0 -9 14 -54 37 -74c1 -1 7 -5 11 -5c2 0 10 1 12 2l50 20l6 -13l-159 -120l-64 105c-62 -25 -125 -73 -163 -108c-42 32 -105 60 -151 77c16 23 27 47 35 73c10 36 17 73 17 109c0 45 -9 88 -19 132 c-11 12 -23 23 -42 28l-35 -19l-14 14l134 94c3 -3 52 -40 78 -59c2 -52 4 -104 4 -155c0 -31 -3 -62 -9 -93c-5 -21 -12 -43 -26 -62c33 -7 79 -26 117 -42l67 36c0 103 0 214 -4 326'], + 0x1D59B: [546,28,604,56,507,'469 80l-253 -108c-35 36 -76 67 -121 94c9 37 9 97 9 146c0 46 -3 96 -6 143c-19 21 -42 47 -42 67c0 34 59 87 101 124l20 -4c-11 -12 -18 -27 -18 -42c0 -21 36 -58 62 -84l-2 -29l146 89l139 -61c2 -33 3 -66 3 -99c0 -36 -1 -72 -5 -108c-5 -44 -11 -88 -33 -128z M288 389c-24 0 -51 -16 -69 -28v-209c0 -6 0 -14 2 -19c3 -7 9 -13 16 -19c23 -19 58 -38 92 -55c3 -1 10 -3 14 -3c3 0 14 2 17 11c22 64 29 129 29 196c0 28 -1 57 -3 86c-31 16 -87 40 -98 40'], + 0x1D59C: [549,33,917,55,815,'511 370l168 100c43 -23 89 -43 136 -61c-1 -75 -2 -150 -13 -225c-6 -44 -15 -89 -39 -128c-71 -27 -140 -55 -206 -89c-32 20 -65 39 -99 55c-25 12 -51 22 -79 29c10 35 12 111 12 186c0 33 -1 66 -1 95c-28 20 -90 50 -97 50c-13 0 -43 -11 -67 -27 c-2 -28 -3 -57 -3 -85c0 -52 3 -104 7 -157l51 -63l-109 -80c-25 32 -56 71 -82 89c11 29 19 86 19 157c0 46 -3 93 -6 140l-37 39c-8 9 -11 22 -11 33c0 4 1 8 4 11c30 38 65 80 100 110l16 -2c-10 -14 -15 -31 -15 -47c0 -21 40 -57 68 -81v-37c38 22 92 59 137 89 c46 -26 95 -48 146 -67v-34zM591 378c-11 0 -54 -18 -77 -33c-4 -41 -6 -83 -6 -124c0 -23 1 -45 2 -68c1 -12 6 -25 18 -32c34 -22 70 -41 110 -57c2 -1 8 -3 11 -3c2 0 10 4 15 17c14 34 21 69 25 104c7 51 8 102 8 154c-33 17 -96 42 -106 42'], + 0x1D59D: [471,188,458,8,449,'423 82l-179 -111l-91 73c-19 -3 -33 -15 -46 -27c-17 -15 -24 -35 -24 -55c0 -13 6 -26 17 -36c35 -31 86 -40 136 -48l2 -11l-93 -55c-29 7 -58 17 -84 31c-18 10 -36 23 -46 40c-5 8 -7 17 -7 26c0 10 2 20 5 30c34 46 70 92 115 131c6 43 6 92 6 138 c0 44 -1 88 -5 131c0 7 -6 16 -9 18l-46 24c-9 0 -30 -10 -39 -16l-16 12c46 33 107 77 142 94l92 -58v-36l112 91c23 -31 52 -62 84 -80l-79 -75c-10 2 -20 4 -28 9c-22 14 -56 43 -61 48c-3 -2 -21 -18 -25 -24c-4 -24 -6 -49 -6 -85c0 -43 0 -97 3 -129c0 -1 2 -6 3 -8 c4 -7 23 -20 78 -56c12 0 56 18 87 32'], + 0x1D59E: [559,222,589,60,515,'512 412c2 -42 3 -83 3 -123c0 -88 -5 -170 -12 -250c0 -40 -29 -73 -57 -105c-30 -34 -62 -68 -100 -98c-28 -22 -67 -43 -97 -58l-30 25c33 16 82 41 91 48c23 19 39 39 48 66c7 19 14 43 18 63c12 67 15 134 15 202c0 52 -3 104 -7 156c-29 18 -61 34 -96 43l-59 -25 v-215c0 -11 0 -24 8 -33l44 -55l-95 -92c-26 31 -68 78 -95 99c18 57 18 196 18 295c0 4 -2 10 -4 12c-20 19 -45 44 -45 65c0 14 9 27 18 39c17 22 56 60 85 88l18 -6c-10 -15 -17 -29 -17 -46c0 -13 12 -30 22 -42c15 -17 27 -27 45 -39v-41l140 93c45 -25 92 -47 141 -66 '], + 0x1D59F: [472,215,461,-8,377,'346 -103l-156 -112c-55 0 -113 6 -153 40c-20 17 -35 38 -45 60c68 98 151 188 250 264c-33 23 -89 32 -133 35l-1 10l92 65c17 12 35 27 35 47c0 17 -17 40 -33 50c-18 11 -29 15 -51 15c-13 0 -25 -5 -37 -10c-18 -8 -34 -19 -49 -30l-16 15c53 47 112 88 173 126 c28 -10 54 -22 75 -40c22 -19 41 -40 41 -67c0 -12 -18 -29 -32 -42l-64 -59c42 -13 81 -30 119 -50c11 -46 16 -93 16 -140c0 -60 -12 -117 -31 -177zM252 120c-61 -50 -150 -123 -150 -166c0 -20 12 -36 29 -49c51 -38 99 -39 108 -39c6 13 20 44 20 130 c0 33 -2 74 -7 124'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Main/Regular/Main.js new file mode 100644 index 0000000..f8821e7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Main/Regular/Main.js @@ -0,0 +1,347 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Main'] = { + directory: 'Main/Regular', + family: 'NeoEulerMathJax_Main', + id: 'NEOEULERMAIN', + 0x1: [0,0,333,0,0,''], + 0x20: [0,0,333,0,0,''], + 0x21: [690,11,295,90,204,'90 46c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM132 184l-27 383c-2 19 -3 41 -3 58c0 12 1 24 4 36c2 7 5 15 12 20c10 7 22 9 34 9c9 0 18 -2 24 -8c11 -10 13 -24 13 -38c0 -29 -2 -58 -5 -87l-36 -371'], + 0x22: [695,-432,214,9,196,'34 432l-20 152c-3 24 -5 49 -5 73c0 10 0 22 9 29c7 6 16 9 25 9c8 0 16 0 22 -5c5 -4 11 -8 11 -15v-52l-21 -191h-21zM155 432l-22 193c-2 14 -5 38 -5 43s2 11 7 15c8 8 20 9 32 9c8 0 17 -1 23 -8c3 -3 6 -7 6 -11c0 -16 0 -32 -1 -47l-19 -194h-21'], + 0x23: [690,0,500,4,493,'469 268v-40h-107l-35 -228h-41l35 228h-164l-35 -228h-41l35 228h-112v40h118l26 166h-117v40h123l33 216h41l-33 -216h164l33 216h41l-33 -216h93v-40h-99l-26 -166h101zM327 268l26 166h-164l-26 -166h164'], + 0x24: [708,107,557,84,480,'477 555l-58 -51l-12 3c-6 26 -15 53 -34 72c-15 14 -32 24 -51 28v-246l12 -5c34 -15 81 -42 98 -59c28 -27 48 -69 48 -107c0 -48 -22 -92 -56 -126c-29 -29 -64 -51 -102 -64v-99l-40 -8l-1 96c-17 -3 -34 -5 -52 -5c-43 0 -81 11 -111 42c-15 15 -27 33 -34 52l52 61 l16 -1c8 -28 19 -57 39 -77c22 -22 46 -35 76 -35c5 0 9 0 14 1l1 263c-41 18 -93 42 -116 65c-30 30 -47 72 -47 114c0 43 14 87 44 118c33 32 75 49 119 55v58l40 8v-64c45 -1 90 -9 122 -41c14 -14 24 -31 33 -48zM322 268v-229c16 7 30 17 42 29c24 24 35 60 35 94 c0 22 -15 52 -32 71c-11 12 -28 24 -45 35zM281 381v228c-24 -4 -45 -16 -61 -33c-19 -19 -27 -47 -27 -75c0 -33 17 -62 40 -85c13 -13 30 -25 48 -35'], + 0x25: [708,20,840,58,789,'656 344c31 -9 60 -26 82 -49c30 -29 51 -67 51 -109c0 -51 -25 -98 -60 -133c-29 -29 -64 -53 -105 -53c-29 0 -56 12 -76 32c-29 29 -41 71 -41 112c0 50 23 96 58 131c27 27 57 51 91 69zM612 293c-16 -10 -24 -20 -30 -30c-16 -23 -22 -55 -22 -84 c0 -39 11 -78 39 -105c16 -16 40 -29 62 -29c20 0 30 1 44 11c26 18 33 67 33 97c0 37 -13 74 -40 101c-19 19 -58 37 -86 39zM208 688c31 -9 60 -26 82 -49c30 -29 51 -67 51 -109c0 -51 -25 -98 -60 -133c-29 -29 -65 -53 -106 -53c-29 0 -56 11 -76 31 c-29 29 -41 71 -41 112c0 50 23 97 58 132c27 27 58 51 92 69zM163 637c-16 -10 -24 -21 -30 -31c-16 -23 -22 -55 -22 -84c0 -39 11 -78 39 -105c16 -16 41 -28 63 -28c20 0 29 1 43 11c26 18 34 67 34 97c0 37 -14 74 -41 101c-19 19 -58 37 -86 39zM603 702l4 -11 l-357 -711l-32 10l-2 14l354 703l11 1'], + 0x26: [698,11,737,49,734,'346 356l2 43c56 -3 133 -3 200 -3c52 0 126 0 156 3l-3 -48c-41 7 -98 7 -147 7c5 -21 9 -42 9 -63c0 -67 -33 -127 -74 -180l3 -3c16 -17 34 -32 55 -44c15 -8 32 -15 50 -15c24 0 47 9 64 26c29 29 42 67 52 110l21 -5c-10 -58 -29 -116 -71 -158 c-26 -26 -61 -37 -97 -37c-50 0 -95 25 -130 59l-5 4c-40 -32 -95 -60 -153 -60c-61 0 -123 12 -167 55c-39 40 -62 93 -62 148c0 47 13 89 47 123c24 24 70 54 111 79c-16 39 -26 81 -26 123c0 50 17 99 53 135c29 29 69 43 110 43c29 0 57 -11 77 -32 c16 -15 25 -37 25 -60c0 -44 -14 -81 -47 -111c-30 -28 -104 -71 -121 -79c24 -53 58 -114 92 -163c29 -42 68 -85 104 -122c26 38 38 87 38 135c0 30 -15 58 -36 79c-16 16 -39 16 -61 16c-23 0 -46 -2 -69 -5zM416 68c-37 41 -75 92 -105 138c-35 52 -71 113 -95 170 c-23 -15 -43 -37 -51 -45c-26 -30 -38 -72 -38 -113c0 -54 21 -105 59 -143c28 -28 67 -44 107 -44c53 0 91 11 123 37zM270 435c27 17 56 37 70 51c25 25 34 61 34 96c0 21 -10 42 -25 57c-10 10 -29 24 -42 24c-23 0 -31 -3 -45 -17c-18 -18 -20 -62 -20 -87 c0 -43 11 -84 28 -124'], + 0x27: [695,-436,212,68,134,'88 436l-18 193c-1 12 -2 24 -2 37c0 8 3 15 9 20c7 6 17 9 27 9c8 0 16 -1 22 -7c6 -7 8 -17 8 -26c0 -11 -2 -27 -4 -40l-26 -186h-16'], + 0x28: [738,187,388,113,301,'301 -163v-24c-48 4 -90 42 -118 79c-31 43 -43 95 -52 146c-14 80 -18 161 -18 242c0 77 5 155 20 230c11 54 27 108 58 154c25 35 69 67 110 74v-27c-32 -8 -65 -38 -81 -72c-22 -47 -33 -98 -41 -150c-11 -71 -14 -143 -14 -215c0 -86 3 -172 17 -256 c6 -29 12 -58 22 -86c7 -20 16 -39 30 -55c17 -20 47 -36 67 -40'], + 0x29: [736,189,388,86,276,'86 709v27c34 -7 66 -28 90 -54c40 -44 60 -101 75 -158c20 -83 25 -167 25 -252c0 -84 -4 -169 -20 -252c-11 -53 -26 -106 -61 -148c-27 -33 -78 -57 -109 -61v24c27 7 59 22 79 47c12 15 19 33 25 51c9 27 16 52 20 79c13 87 14 176 14 264c0 79 -5 158 -19 235 c-11 53 -24 106 -55 151c-16 22 -39 38 -64 47'], + 0x2A: [692,-448,277,28,239,'157 448h-40c6 38 8 68 9 111c-27 -21 -53 -44 -77 -72l-21 35c34 17 61 35 87 53c-29 21 -56 37 -85 52l27 28c22 -21 43 -40 68 -59c0 32 0 63 -8 96h40c-7 -33 -9 -62 -11 -95c25 20 48 41 68 62l25 -31c-32 -15 -60 -32 -88 -52c31 -23 60 -43 88 -56l-26 -29 c-17 19 -41 41 -67 61c1 -35 3 -68 11 -104'], + 0x2B: [586,74,755,46,709,'396 276h313l-5 -40h-308v-303l-40 -7v310h-310l7 40h303v304l40 6v-310'], + 0x2C: [138,210,277,67,214,'110 -210l-19 14c20 26 48 68 58 93c5 12 8 29 8 42c0 15 -4 30 -13 42l-70 83c-4 5 -7 16 -7 26c0 13 13 28 23 36c8 6 26 12 36 12c8 0 26 -8 34 -18c15 -20 37 -73 46 -96c6 -16 8 -34 8 -51c0 -25 -10 -47 -22 -69c-18 -32 -39 -64 -82 -114'], + 0x2D: [276,-236,544,40,504,'498 236h-458l7 40h457'], + 0x2E: [119,15,277,77,211,'77 52c0 37 30 67 67 67s67 -30 67 -67s-30 -67 -67 -67s-67 30 -67 67'], + 0x2F: [720,192,501,39,463,'458 715l5 -11l-389 -896l-32 8l-3 14l386 888l11 2'], + 0x30: [704,14,499,34,460,'290 704c50 -32 86 -72 115 -122c40 -69 55 -148 55 -226c0 -61 -8 -122 -28 -179c-16 -48 -42 -94 -78 -131c-39 -38 -92 -60 -147 -60c-33 0 -65 13 -89 36c-31 31 -52 72 -63 114c-16 56 -21 109 -21 167c0 120 45 241 130 326c33 33 82 57 126 75zM234 640 c-19 -12 -37 -26 -53 -45c-52 -63 -80 -143 -80 -224c0 -58 5 -117 21 -172c13 -43 31 -84 62 -115c19 -19 48 -32 68 -32c31 0 64 9 85 31c23 23 36 52 46 83c12 38 15 79 15 119c0 90 -24 176 -68 254c-6 12 -51 82 -96 101'], + 0x31: [712,5,499,92,314,'308 712l6 -12c-5 -89 -7 -179 -7 -268c0 -136 0 -334 3 -410l-84 -27l-12 5c5 139 8 279 8 419c0 49 0 122 -1 147s-21 46 -46 46h-83v27'], + 0x32: [708,-2,499,12,472,'472 80l-23 -78h-437v16c57 58 113 117 166 179c35 41 70 83 98 129c35 56 58 117 58 182c0 29 -6 70 -34 99c-20 22 -50 33 -79 33c-22 0 -44 -4 -63 -14c-28 -15 -50 -30 -74 -50l-20 19c30 33 64 63 104 84c33 18 69 29 107 29c41 0 80 -15 109 -44 c30 -29 42 -70 42 -111c0 -53 -22 -102 -48 -148c-25 -46 -56 -88 -88 -130c-45 -60 -93 -118 -143 -176c-1 -1 -2 -4 -1 -6c2 -4 7 -5 12 -5h309'], + 0x33: [702,17,499,18,446,'241 382v-8c34 -3 67 -8 100 -19c23 -8 47 -19 65 -37c27 -27 40 -64 40 -103c0 -59 -27 -114 -69 -156c-52 -51 -123 -76 -196 -76c-57 0 -111 20 -156 55l-7 11l42 72h10c12 -20 25 -38 41 -54c25 -26 59 -44 95 -44c37 0 73 13 100 40c32 32 46 78 46 123 c0 43 -20 83 -49 114c-18 19 -43 28 -68 34c-36 9 -73 11 -110 11l1 26c30 7 61 15 89 28c22 10 43 22 59 38c28 28 43 65 43 103c0 27 -10 52 -29 71c-21 21 -50 28 -80 28c-17 0 -34 -6 -51 -13c-25 -11 -48 -25 -71 -40l-14 22c31 26 65 51 101 70c25 13 52 24 80 24 c39 0 80 -8 108 -37c26 -25 38 -61 38 -97c0 -45 -15 -90 -47 -122c-31 -30 -70 -52 -111 -64'], + 0x34: [704,5,499,-1,473,'361 704l7 -6c-1 -27 -1 -299 -1 -454l7 -9h94l5 -7l-16 -37h-82l-8 -8c0 -54 0 -133 3 -155l-80 -33l-5 6c5 35 5 118 5 181l-7 9h-284v44l286 434zM290 243v342c0 2 -1 5 -1 6c-2 3 -7 2 -9 0c-34 -39 -64 -85 -93 -130c-38 -59 -122 -197 -123 -219l5 -7h215'], + 0x35: [687,11,499,12,448,'125 594v-181v-7c41 20 86 37 132 37c51 0 102 -14 138 -50c38 -37 53 -90 53 -142c0 -67 -23 -133 -70 -180c-53 -53 -125 -82 -200 -82c-63 0 -124 26 -165 75l-1 12l44 56h11c12 -26 25 -52 46 -73c19 -19 45 -33 73 -33c41 0 82 13 112 43c39 39 54 98 54 154 c0 50 -11 102 -47 138c-24 24 -58 34 -92 34c-44 0 -85 -22 -117 -53l-13 11v327l7 7h335l-27 -78c-87 -2 -213 -5 -261 -5c-6 0 -12 -4 -12 -10'], + 0x36: [700,13,499,45,471,'471 688l-20 -54l-9 -4c-20 8 -38 11 -58 11c-61 0 -115 -27 -156 -65c-79 -73 -98 -174 -99 -270l7 -1c53 43 116 72 185 72c38 0 76 -16 103 -43c32 -33 47 -78 47 -123c0 -60 -30 -113 -72 -155c-43 -43 -101 -69 -163 -69c-45 0 -89 15 -121 47 c-53 53 -70 130 -70 204c0 125 45 249 134 338c35 37 75 69 120 92c36 19 76 32 117 32c15 0 40 -6 55 -12zM132 265c0 -41 4 -86 16 -126c9 -29 26 -58 47 -79c18 -17 43 -28 68 -28c32 0 65 8 88 31c29 28 41 68 41 109c0 40 -17 79 -46 107c-23 24 -57 35 -90 35 c-41 0 -102 -28 -124 -49'], + 0x37: [694,8,499,49,494,'494 674l-154 -252c-78 -128 -143 -264 -175 -410l-84 -20l-6 8c24 82 109 232 163 324c0 0 98 171 160 270l-6 12h-336l-7 9l21 79c18 -6 171 -8 216 -8h208v-12'], + 0x38: [706,10,499,40,461,'238 334c-27 -14 -57 -33 -79 -55c-26 -27 -36 -65 -36 -102c0 -41 13 -82 42 -112c21 -20 51 -33 80 -33c33 0 68 8 92 32c26 26 37 67 37 104c0 41 -21 77 -50 106c-15 13 -64 46 -86 60zM312 385c37 -25 86 -61 103 -78c29 -29 46 -68 46 -110c0 -48 -17 -95 -51 -130 c-50 -50 -119 -77 -191 -77c-48 0 -102 10 -137 45c-32 32 -42 77 -42 122c0 42 12 85 43 115c25 25 75 55 118 80v11c-32 22 -59 46 -82 78c-17 27 -30 57 -30 89c0 40 14 81 45 108c35 31 77 51 120 68c30 1 57 -3 85 -12c21 -7 44 -19 60 -35c24 -24 36 -57 36 -91 s-15 -66 -35 -93c-24 -32 -54 -58 -88 -79v-11zM279 412c42 29 72 78 72 131c0 21 -9 51 -29 75c-23 26 -56 41 -99 41c-15 -10 -33 -25 -41 -36c-12 -17 -16 -41 -16 -61c0 -26 12 -50 28 -71c21 -30 55 -58 85 -79'], + 0x39: [702,9,499,40,462,'214 11l-85 -20l-10 8c20 46 68 110 113 168c0 0 85 114 117 169l-5 6c-30 -16 -61 -28 -91 -36c-18 -5 -40 -7 -59 -7c-28 0 -75 18 -102 45c-29 29 -52 75 -52 121c0 52 10 97 39 133s117 82 167 104c50 0 80 -5 99 -11c25 -8 49 -21 68 -40c32 -32 49 -77 49 -123 c0 -38 -13 -75 -28 -111c-23 -52 -52 -100 -84 -147c-34 -50 -67 -101 -95 -155c-18 -33 -35 -67 -41 -104zM351 384c25 25 31 63 31 98c0 47 -19 92 -52 125c-25 25 -69 37 -111 37c-7 0 -10 0 -17 -1c-46 -27 -73 -70 -73 -128c0 -48 15 -96 49 -129c21 -21 52 -34 81 -34 c33 0 68 8 92 32'], + 0x3A: [455,12,216,50,164,'50 45c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM50 398c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57'], + 0x3B: [457,190,216,48,179,'48 400c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM89 -190l-15 13c17 23 29 48 40 74c6 13 7 26 7 39c0 14 -5 27 -13 38l-34 51c-5 8 -9 17 -9 26c0 12 1 27 9 35l2 2c9 7 20 11 32 11c8 0 16 -4 21 -11c17 -18 31 -38 40 -60 c6 -16 10 -33 10 -50c0 -27 -10 -52 -23 -75c-19 -33 -43 -63 -67 -93'], + 0x3C: [531,36,756,59,680,'680 505l-2 -9l-522 -241v-12l519 -241l5 -10l-11 -23l-10 -5l-600 280v12l601 275l11 -3'], + 0x3D: [369,-132,756,54,722,'716 329h-662l7 40h661zM716 132h-662l7 40h661'], + 0x3E: [531,36,756,76,698,'78 494l-2 10l10 24l10 3l602 -275v-12l-600 -280l-10 5l-8 24l4 9l518 243v9'], + 0x3F: [693,11,362,45,358,'106 46c0 31 25 57 56 57c32 0 58 -26 58 -57s-26 -57 -58 -57c-31 0 -56 26 -56 57zM186 211l-46 -32c-23 14 -42 41 -42 71c0 21 14 38 26 55c22 28 48 52 75 76c49 42 88 98 88 164c0 30 -13 61 -34 82c-17 17 -40 34 -64 34s-45 -8 -62 -25c-10 -11 -19 -31 -19 -47 c0 -24 13 -46 32 -61l-67 -40c-18 16 -28 43 -28 69c0 29 14 55 34 75c40 40 94 61 150 61c33 0 68 -8 92 -32c25 -25 37 -60 37 -96c0 -33 -13 -60 -30 -89c-18 -30 -73 -79 -103 -106c-36 -32 -66 -71 -66 -96c0 -20 11 -40 27 -52v-11'], + 0x40: [688,31,744,26,718,'389 20c121 0 208 61 263 133l11 -2l28 -18v-12c-63 -84 -167 -152 -304 -152c-200 0 -361 152 -361 352c0 91 36 182 99 248c70 74 170 118 272 119h3c168 0 318 -118 318 -287c0 -51 -15 -103 -44 -145c-36 -53 -106 -112 -175 -116c-11 0 -24 3 -32 12 c-9 10 -11 22 -13 35l-12 3c-22 -14 -43 -27 -67 -36c-20 -8 -40 -14 -62 -14c-29 0 -59 10 -79 33c-30 36 -37 83 -37 129c0 62 16 126 61 170c34 32 80 46 127 46c25 0 59 -10 84 -28l42 25l4 -4c-5 -89 -5 -180 -3 -269c0 -20 6 -58 31 -53c34 8 84 55 107 99 c16 31 24 66 24 101c0 147 -128 247 -274 247h-3c-85 -1 -169 -37 -229 -98c-56 -57 -89 -136 -89 -216c0 -172 136 -302 310 -302zM368 192c35 0 62 20 84 36v182c0 21 0 41 -13 54c-14 15 -33 26 -53 26c-28 0 -54 -10 -75 -30c-19 -17 -41 -61 -43 -141 c0 -33 4 -66 22 -94c17 -26 49 -33 78 -33'], + 0x41: [680,10,770,25,743,'536 76l-54 188c-2 4 -8 9 -11 9h-225c-4 0 -8 -4 -10 -8l-117 -248l-91 -19l-3 10c119 200 234 404 339 612c1 3 1 4 1 7s-3 9 -12 11l-90 15v27h194c15 -83 60 -243 93 -363c22 -81 49 -178 85 -238c9 -15 24 -24 41 -28c7 -1 15 -2 23 -2c14 0 29 2 43 3l1 -26 l-104 -30c-15 -4 -30 -6 -45 -6c-11 0 -20 5 -27 13c-14 13 -24 47 -31 73zM382 572l-116 -244c-1 -2 -1 -8 -1 -9c0 -3 4 -7 7 -7h188c5 0 7 4 7 7c0 0 -2 8 -2 9l-70 244c-1 2 -4 4 -7 4s-6 -3 -6 -4'], + 0x42: [686,1,655,50,574,'215 324v-258c0 -13 5 -17 11 -21s32 -6 64 -6c54 0 110 12 149 50c31 32 44 75 44 119c0 33 -8 68 -33 93c-18 18 -42 27 -67 34c-34 9 -70 11 -106 11c-18 0 -47 0 -52 -1c-4 0 -8 -3 -10 -7v-14zM215 411v-20c1 -4 5 -7 8 -8c8 -3 31 -2 46 -2c51 0 101 15 137 50 c30 30 43 72 43 114c0 29 -14 55 -34 75c-12 12 -30 17 -47 21c-26 6 -53 7 -80 7c-20 0 -40 -2 -60 -5c-7 -1 -11 -7 -13 -14v-218zM381 378l-1 -8c31 -4 67 -12 97 -21c20 -6 42 -19 57 -34c31 -31 40 -71 40 -114c0 -50 -18 -98 -53 -133c-55 -56 -136 -69 -212 -69 c-66 1 -197 2 -198 2l-1 10c6 9 18 25 18 26c2 3 3 6 4 10c0 1 1 23 1 34v530c0 17 -15 27 -17 28c-17 8 -41 16 -66 23l1 17l7 7h247c41 0 81 -2 121 -12c27 -7 54 -16 74 -36c22 -23 34 -53 34 -85c0 -41 -14 -81 -43 -110c-30 -31 -70 -48 -110 -65'], + 0x43: [699,15,714,87,672,'615 528l-14 1c-12 32 -29 61 -52 84c-33 33 -81 45 -127 45c-61 0 -123 -21 -167 -65c-28 -29 -46 -65 -58 -103c-15 -47 -21 -97 -21 -146c0 -92 48 -190 81 -223c55 -55 97 -83 179 -83c68 0 131 29 187 67l17 -29c-72 -49 -152 -91 -239 -91c-79 0 -161 17 -218 74 c-70 70 -96 169 -96 267c0 96 21 195 91 264c73 73 174 109 278 109c65 0 131 -16 177 -63c15 -15 28 -32 39 -50'], + 0x44: [686,-2,828,51,738,'212 575v-405c1 -40 3 -102 18 -117c13 -13 52 -13 79 -13c49 0 98 5 145 20c37 12 73 29 101 57c68 68 89 166 89 260c0 61 -17 158 -73 214c-22 22 -48 35 -90 44c-33 7 -142 10 -189 10c-43 0 -60 -1 -66 -4s-8 -6 -11 -12c-2 -3 -3 -23 -3 -54zM106 2v10 c20 15 21 29 22 67v494c0 16 -1 32 -2 47c-1 10 -8 17 -17 21c-19 7 -39 12 -58 18v19l7 8h313c62 0 124 -5 184 -20c43 -11 85 -27 116 -58c25 -25 40 -57 50 -91c13 -42 17 -87 17 -132c0 -127 -22 -211 -99 -294c-31 -34 -81 -54 -125 -67c-57 -17 -117 -22 -177 -22 h-231'], + 0x45: [688,0,604,46,559,'456 336c-39 3 -79 6 -118 6c-38 0 -101 -2 -119 -3c-7 -1 -10 -5 -10 -12v-139c0 -38 1 -87 15 -112c6 -12 18 -20 30 -26c12 -5 38 -6 66 -6c47 0 70 0 234 14l5 -5l-13 -53h-388c-9 5 -15 15 -20 25c-5 12 -6 27 -6 41v492c0 14 0 44 -9 64c-2 6 -10 11 -17 16 c-8 6 -38 13 -59 16l-1 20l7 7l148 1c70 0 171 6 242 6c18 0 33 0 46 -1l-2 -50l-4 -7c-69 4 -202 10 -209 10h-40c-5 -1 -10 -4 -13 -9c-8 -12 -11 -44 -11 -67v-166c0 -7 3 -11 10 -12c39 -3 159 -1 236 5l6 -7'], + 0x46: [690,2,499,39,467,'125 360l2 161c0 30 -1 60 -4 90c-1 17 -12 32 -29 36l-55 13v21l7 7c142 0 348 0 421 2v-53l-8 -8c-72 5 -144 20 -216 20c-13 0 -27 -6 -32 -23c-4 -14 -7 -24 -7 -235c0 -5 4 -13 13 -13c73 0 163 9 235 12l-1 -49l-5 -5c-70 4 -158 5 -229 5c-5 0 -12 -4 -12 -11 c0 -101 1 -216 5 -317l-92 -15c4 121 7 241 7 362'], + 0x47: [699,17,765,90,676,'376 296l276 11c2 -91 5 -273 5 -274c-88 -23 -196 -50 -269 -50c-76 0 -151 26 -205 80c-68 68 -93 166 -93 261c0 98 22 199 92 269c75 75 180 106 285 106c64 0 128 -20 173 -65c11 -11 25 -31 36 -48l-58 -57l-12 1c-13 26 -28 51 -48 71c-36 36 -85 49 -136 49 c-59 0 -118 -14 -161 -56c-29 -29 -47 -66 -60 -105c-15 -48 -21 -98 -21 -149c0 -88 24 -160 82 -228c44 -52 118 -77 196 -77c32 0 63 3 94 10c10 2 17 11 18 21c2 31 3 62 2 93c0 23 -1 47 -3 69c-1 14 -11 27 -25 28c-44 5 -108 7 -162 9l-6 5v26'], + 0x48: [690,2,783,52,744,'744 14l-6 -6l-149 -8l-11 21c2 97 5 216 5 313c0 5 -3 12 -12 12h-343c-7 0 -13 -5 -13 -12c0 -67 -1 -163 0 -230c0 -26 2 -52 5 -78l-92 -28l-6 5c10 113 10 242 10 364c0 83 -1 166 -6 249c-1 9 -3 20 -13 24c-4 1 -40 12 -60 19l-1 19l7 7h162l5 -5 c-4 -22 -6 -46 -7 -69c-2 -65 -6 -149 -6 -214c0 -5 2 -12 12 -12h346c11 0 12 6 12 12c0 86 -3 190 -3 276l88 17l5 -6c-3 -39 -7 -80 -8 -119c-4 -162 -5 -324 1 -486c0 -17 13 -30 29 -34c18 -5 47 -13 48 -13'], + 0x49: [683,1,394,78,348,'346 -1h-265v26c20 4 43 9 61 14c13 5 24 17 26 31c1 11 1 43 2 64v363c0 39 0 77 -3 115c-1 13 -9 26 -22 29c-1 0 -45 9 -67 14v22l7 6h250l6 -6v-21l-67 -15c-13 -3 -21 -14 -22 -26c-3 -20 -3 -78 -3 -116c0 -124 -1 -228 2 -330c0 -33 1 -66 4 -99 c1 -16 14 -26 28 -30c22 -5 64 -17 65 -17'], + 0x4A: [690,234,402,50,351,'260 608v-517c0 -41 -1 -83 -13 -122c-14 -45 -37 -88 -71 -121c-27 -25 -77 -64 -112 -82l-14 18c22 14 48 37 64 54c21 24 32 55 43 93c10 34 18 105 18 165v512c0 11 -4 34 -16 37l-72 18v21l7 6h250l7 -6l-2 -24l-68 -14c-12 -3 -21 -20 -21 -38'], + 0x4B: [683,7,668,49,632,'221 319l-9 -1c0 -98 0 -196 6 -293l-81 -29l-11 5l3 147v447c0 10 -1 21 -5 31c-3 6 -7 13 -14 15c-20 6 -60 18 -61 18l2 17l8 7h158l7 -7c-4 -12 -8 -49 -8 -50c-2 -27 -7 -155 -7 -268l8 -1l287 326h90l-1 -9l-291 -294c-3 -3 -8 -8 -8 -11s1 -5 5 -9 c107 -107 272 -271 333 -325l-1 -11l-85 -31c-105 112 -217 217 -325 326'], + 0x4C: [690,5,559,50,534,'534 48l-14 -53c-74 7 -275 7 -413 7v14c7 10 12 22 15 31c4 10 7 82 7 96v478c0 14 -6 30 -21 33c-20 4 -57 12 -58 12l1 17l7 7h237l6 -6v-21c-1 0 -44 -9 -65 -14c-12 -2 -17 -14 -18 -25c-10 -177 -5 -383 1 -568c1 -6 8 -13 13 -13c104 0 286 14 292 15'], + 0x4D: [690,6,1044,79,1010,'800 690h103v-12c-6 -3 -15 -10 -19 -19c-6 -15 -6 -51 -6 -76c0 -164 2 -317 18 -481c2 -17 10 -34 24 -45c10 -7 22 -11 34 -11c13 0 38 4 56 6v-24c-44 -16 -96 -34 -136 -34c-14 0 -28 2 -41 6s-22 21 -22 29v182c0 25 -8 271 -10 337c0 8 -3 15 -8 15 c-3 0 -8 -3 -11 -8l-286 -554h-30c-75 180 -169 409 -232 537c-3 5 -7 10 -11 10s-7 -4 -8 -11c-23 -170 -40 -342 -54 -514l-75 -26l-7 3c38 196 73 393 100 591c2 12 2 26 -6 36c-5 7 -12 12 -21 15l-68 19l2 22l7 7h176c55 -161 149 -361 232 -538c2 -4 7 -14 11 -14 s10 5 12 9'], + 0x4E: [694,5,829,49,710,'704 694l6 -8c-13 -227 -15 -459 -15 -686h-36c-23 26 -37 42 -67 80l-159 198c-102 126 -184 221 -234 277c-3 4 -8 10 -12 9c-6 -2 -6 -11 -6 -17c0 -129 13 -348 24 -522l-70 -30l-9 9c10 201 16 403 12 604c0 8 0 16 -6 22c-4 5 -9 10 -15 11c-1 0 -43 10 -64 15 l-4 27l8 7h162c133 -176 295 -391 412 -517c3 -3 7 -8 11 -8c5 0 6 6 6 8c0 102 -3 201 -24 505'], + 0x4F: [700,18,803,72,726,'72 318c0 129 27 214 101 294c64 68 168 88 261 88c76 0 153 -22 208 -76c29 -30 48 -68 61 -108c16 -48 23 -100 23 -152c0 -65 -1 -131 -41 -212c-47 -98 -177 -170 -334 -170c-66 0 -140 20 -187 68c-71 70 -92 168 -92 268zM165 348c0 -94 17 -180 79 -248 c60 -67 121 -77 160 -77c58 0 106 20 146 59c29 30 47 68 61 108c15 46 21 96 21 146c0 96 -24 202 -93 270c-38 40 -84 54 -137 54c-57 0 -120 -24 -158 -64c-28 -29 -45 -64 -57 -102c-15 -46 -22 -96 -22 -146'], + 0x50: [679,6,576,55,550,'281 640h-56c-7 0 -9 -6 -9 -11c-4 -88 -6 -201 -6 -288c0 -9 7 -12 11 -12c35 0 76 4 109 15c27 8 52 20 71 39c33 33 53 77 53 123c0 36 -12 72 -38 98c-14 14 -33 22 -52 27c-27 7 -55 9 -83 9zM217 22l-83 -28l-7 7c2 140 7 281 7 422c0 59 -1 118 -5 177 c-1 18 -9 36 -27 43c-15 6 -31 9 -47 11v18l7 7h257c36 0 73 -2 108 -10c24 -5 49 -12 68 -28c38 -31 55 -79 55 -127c0 -58 -22 -115 -64 -156c-20 -21 -46 -34 -74 -44c-35 -12 -71 -18 -108 -21c-25 -2 -57 -4 -82 -6c-8 -1 -12 -6 -12 -13c0 -25 6 -151 7 -252'], + 0x51: [698,235,828,85,774,'767 -174l7 -20c-39 -16 -104 -41 -155 -41c-49 0 -103 28 -137 61c-37 37 -89 114 -116 158c-69 0 -146 18 -195 73c-57 64 -86 156 -85 248c1 135 28 229 101 304c68 70 163 89 258 89c77 0 155 -18 213 -76c63 -63 83 -173 83 -256c0 -97 -5 -115 -19 -156 c-14 -44 -26 -77 -68 -123c-45 -49 -115 -79 -178 -94l-4 -10c16 -30 42 -79 62 -105c15 -21 58 -67 146 -67c16 0 64 9 87 15zM410 22c74 0 112 21 151 58c65 63 85 168 85 258c0 52 -5 97 -21 147c-14 41 -36 86 -68 117c-38 39 -82 58 -136 58c-57 0 -126 -23 -165 -66 c-29 -32 -44 -66 -57 -105c-15 -50 -20 -103 -20 -155c0 -89 23 -178 85 -242c38 -40 93 -70 146 -70'], + 0x52: [679,8,609,54,582,'213 370c0 -6 2 -15 9 -15c13 0 26 0 38 1c46 4 94 15 127 49c31 31 51 73 51 118c0 30 -12 60 -33 81c-14 14 -33 22 -52 27c-27 7 -55 9 -82 9h-40c-8 0 -11 -7 -12 -26c-2 -64 -6 -239 -6 -244zM321 331l-2 -8l263 -296v-9l-99 -26c-93 119 -220 282 -249 311 c-5 5 -14 9 -20 9c0 -96 0 -193 5 -289l-83 -29l-11 9c8 145 9 291 9 436c0 15 -2 115 -3 172c0 14 -10 26 -23 30c-18 5 -53 15 -54 15l1 17l6 6h272c34 0 68 -3 100 -12c24 -7 47 -16 64 -34c25 -25 39 -59 39 -94c0 -48 -4 -62 -19 -96c-32 -70 -113 -103 -196 -112'], + 0x53: [702,15,557,45,483,'480 606l-63 -56l-13 3c-7 28 -16 58 -37 79c-23 22 -54 33 -85 33s-61 -15 -82 -37c-21 -21 -29 -51 -29 -81c0 -36 19 -68 44 -93c27 -27 70 -48 109 -65c37 -16 89 -45 107 -64c30 -29 52 -75 52 -116c0 -52 -24 -100 -61 -137c-56 -56 -133 -87 -212 -87 c-47 0 -95 12 -128 46c-16 16 -29 35 -37 56l57 66l17 -1c9 -30 20 -61 42 -83c24 -24 58 -38 91 -38c38 0 77 18 105 45c26 26 38 65 38 102c0 24 -16 56 -35 77c-21 22 -58 47 -86 59c-46 20 -106 48 -132 74c-33 33 -51 78 -51 124c0 47 14 94 47 128 c44 43 104 62 165 62c51 0 104 -7 141 -44c15 -15 26 -33 36 -52'], + 0x54: [697,10,492,26,575,'575 689l-2 -48l-8 -7c-168 8 -189 10 -210 10c-6 0 -9 -5 -9 -11c-1 -14 -4 -115 -4 -195c0 -121 6 -300 13 -421l-100 -27l-9 9c8 127 13 254 13 381c0 82 -1 226 -2 256c0 4 -4 6 -9 6c-24 0 -103 -3 -214 -7l-8 7v48l7 7c95 -3 95 -11 272 -11c75 0 174 6 262 10'], + 0x55: [694,9,774,34,746,'210 542l-8 -273c0 -35 4 -70 14 -104c8 -26 18 -52 38 -71c32 -32 78 -42 124 -42c62 0 122 27 176 59c0 183 2 366 4 548l88 35l6 -7c-15 -114 -16 -323 -16 -485c0 -50 3 -126 18 -143c7 -9 20 -11 30 -11c20 0 38 6 58 8l4 -17l-5 -7c-51 -16 -122 -37 -153 -37 c-12 0 -30 6 -32 21c-1 16 -1 32 -1 48l-8 6c-70 -45 -150 -79 -233 -79c-28 0 -57 3 -84 11c-21 6 -40 16 -56 31c-26 27 -40 74 -44 94c-7 46 -8 120 -8 181c0 97 4 195 2 293c0 19 -14 34 -32 38c-18 5 -54 14 -56 14l-2 20l8 7h169l7 -6c-2 -14 -8 -115 -8 -132'], + 0x56: [698,16,646,23,729,'637 680l86 17l6 -19c-64 -79 -128 -188 -139 -210c-38 -69 -56 -103 -90 -177c-42 -89 -79 -185 -112 -281l-68 -26l-10 7l-143 482c-14 46 -29 92 -48 136c-4 8 -8 16 -14 22c-5 5 -11 9 -18 11c-12 5 -42 10 -63 13l-1 27l7 6l175 10c39 -191 94 -378 165 -560 c2 -4 6 -6 8 -7c3 1 6 1 8 4c3 3 36 80 63 139l55 128l64 146c20 45 44 89 69 132'], + 0x57: [690,11,986,13,1060,'979 675l81 14v-21l-115 -188c-46 -77 -164 -306 -228 -464l-60 -27l-12 8c-32 181 -69 360 -109 539c-1 5 -2 12 -7 12c-3 0 -7 -7 -9 -12l-28 -63c-54 -121 -135 -300 -182 -455l-64 -29l-11 5c-23 128 -48 255 -78 381c-20 81 -40 162 -70 239c-5 13 -14 24 -27 28 s-30 10 -45 13l-2 24l8 7l156 3c15 -81 74 -351 113 -526c1 -5 5 -6 7 -6c3 0 6 2 7 4c42 83 174 374 219 500l76 29l7 -6c0 -62 31 -213 62 -359c13 -61 26 -121 36 -174c1 -4 6 -12 13 -12c9 0 11 4 13 7l80 170l109 242c22 46 42 86 60 117'], + 0x58: [688,11,666,27,636,'632 672l-187 -206c-30 -35 -63 -79 -67 -86c0 -13 117 -200 156 -249l60 -72c7 -7 29 -21 37 -23l5 -4v-16l-110 -27l-14 6c-18 18 -32 40 -46 62l-143 239h-12c-14 -17 -55 -73 -83 -114c-38 -53 -91 -137 -107 -171l-94 -11v16l271 329c-4 1 -99 163 -145 245 c-11 18 -37 37 -55 44c-14 5 -31 10 -50 15v25l7 6c25 1 101 5 146 8l147 -266h9c5 5 70 90 103 135c32 46 77 117 77 117l95 13v-15'], + 0x59: [693,11,555,23,615,'258 299l-149 295c-6 12 -13 24 -23 34c-6 7 -14 13 -23 15c-13 3 -26 6 -40 8v28l7 7h145l141 -325c1 -2 6 -8 12 -8c4 0 8 4 11 9s46 75 59 98c8 14 92 159 128 216l85 17l4 -18c-111 -145 -185 -241 -268 -369l9 -288l-90 -29l-11 9c3 100 3 201 3 301'], + 0x5A: [695,12,666,46,640,'595 664c-135 -193 -309 -464 -399 -603l6 -7l429 14l9 -9l-18 -71c-129 12 -383 12 -575 12l-1 21l424 606l-7 10c-187 0 -289 -6 -316 -9l-6 5v54l9 8c148 -9 296 -12 445 -12v-19'], + 0x5B: [741,125,277,120,279,'279 712l-119 -13v-782l119 -13v-24c-54 0 -107 0 -159 -5v866c39 -5 105 -5 159 -5v-24'], + 0x5C: [722,192,501,39,463,'428 -192l-389 896l5 11l31 7l388 -893l-3 -13'], + 0x5D: [741,125,277,-1,158,'118 699l-119 13v24c54 0 120 0 159 5v-866c-52 5 -105 5 -159 5v24l119 13v782'], + 0x5E: [735,-452,499,0,495,'251 735l244 -249l-39 -27l-208 214l-225 -221l-23 12'], + 0x5F: [-60,100,450,-7,457,'451 -100h-458l7 40h457'], + 0x60: [677,-506,201,0,201,'201 532l-17 -26l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0x61: [466,12,609,87,596,'433 431l53 31l5 -5c-6 -113 -7 -227 -4 -340c0 -18 1 -36 11 -52c5 -9 16 -13 26 -13c14 0 44 10 65 18l7 -24c-40 -24 -94 -58 -126 -58c-14 0 -30 3 -40 15c-11 13 -14 27 -17 44l-15 4c-28 -18 -54 -33 -84 -45c-25 -10 -51 -18 -79 -18c-37 0 -75 13 -100 42 c-38 45 -48 105 -47 163c0 79 21 159 78 215c43 41 101 58 160 58c32 0 75 -12 107 -35zM411 99v230c0 26 0 52 -16 69c-18 19 -43 33 -68 33c-36 0 -69 -13 -95 -38c-24 -21 -51 -77 -54 -178c0 -42 5 -85 28 -120c21 -33 62 -41 99 -41c17 0 40 7 55 14c21 10 31 16 51 31 '], + 0x62: [684,10,588,27,523,'27 661l6 5l169 18l6 -7c-9 -93 -16 -184 -14 -278l9 -5c53 40 111 74 179 74c36 0 72 -13 98 -38c35 -34 45 -85 43 -133c-1 -41 -6 -81 -19 -120c-10 -31 -24 -61 -47 -84c-58 -60 -134 -103 -219 -103c-33 0 -60 9 -84 33c-18 18 -33 46 -33 100v476 c0 16 -6 30 -24 32c-1 0 -50 6 -70 9v21zM198 347c-2 -34 -4 -79 -4 -118c0 -62 4 -139 31 -165c21 -20 40 -26 68 -26c33 0 65 12 91 33c20 16 32 38 40 61c11 30 16 63 16 95c0 73 -16 115 -30 136c-13 20 -37 43 -75 43c-53 0 -98 -25 -137 -59'], + 0x63: [475,19,486,49,446,'435 114l11 -18c-62 -61 -135 -115 -224 -115c-44 0 -81 8 -110 32c-21 18 -36 44 -46 69c-17 43 -17 89 -17 135c0 67 20 133 65 183c47 52 120 75 188 75c28 0 55 -6 76 -23c24 -19 37 -46 40 -75l-54 -53l-17 6c-5 37 -16 64 -33 82c-13 14 -34 24 -52 24 c-34 0 -57 -10 -85 -43c-35 -40 -45 -93 -45 -145c0 -61 9 -131 57 -172c23 -21 54 -29 84 -29c59 0 109 31 153 69'], + 0x64: [684,19,603,86,597,'314 660l5 4l163 20l8 -9v-565c1 -17 4 -34 11 -47c5 -10 15 -15 27 -15c10 0 41 11 61 19l8 -23c-25 -17 -51 -34 -78 -47c-16 -8 -33 -16 -51 -16c-15 0 -31 5 -40 18c-11 16 -18 35 -19 55c-31 -21 -63 -40 -98 -54c-24 -10 -50 -18 -76 -18c-35 0 -71 11 -96 37 c-41 43 -53 103 -53 161c0 80 20 160 76 218c42 44 101 64 161 64c29 0 56 -6 83 -15l7 4c0 53 0 125 -7 151c-4 13 -14 25 -28 29c-20 5 -42 7 -63 7zM409 95l4 215c0 35 -4 73 -30 99c-16 16 -41 19 -64 19c-33 0 -64 -14 -87 -38c-47 -48 -59 -120 -59 -187 c0 -45 9 -93 42 -126c20 -20 49 -29 76 -29c35 0 91 20 118 47'], + 0x65: [478,12,499,69,463,'198 396c-39 -42 -46 -87 -46 -136c0 -6 1 -12 2 -18l4 -4l202 80c6 2 13 10 13 26c0 3 0 7 -1 10c-6 25 -22 58 -46 74c-12 7 -25 10 -44 10c-33 0 -63 -16 -84 -42zM438 319l-282 -122c3 -33 17 -84 47 -112c22 -21 52 -29 82 -29c29 0 56 9 82 22c25 13 49 28 72 46 l11 -2l13 -18c-33 -31 -69 -59 -109 -81c-36 -21 -77 -35 -119 -35c-35 0 -70 8 -98 30c-20 16 -33 39 -42 62c-19 46 -26 97 -26 146c0 58 12 117 51 162c49 57 121 90 197 90c33 0 66 -7 92 -28c33 -27 50 -68 50 -110c0 -4 0 -7 -1 -8c-3 -5 -13 -10 -20 -13'], + 0x66: [669,12,419,36,422,'47 434h105l6 6c0 35 3 86 18 122c15 34 27 50 54 73c31 25 64 34 99 34c54 0 80 -27 93 -54l-58 -54l-12 4c-2 10 -5 26 -10 34c-6 11 -22 30 -48 30c-13 0 -24 -9 -34 -25c-19 -29 -26 -100 -26 -164l4 -6h124l5 -7l-7 -22l-7 -6h-115l-6 -6v-111c0 -94 3 -189 10 -270 l-79 -24l-17 11c8 99 12 193 13 284v108l-6 8h-112l-5 7l4 22'], + 0x67: [465,233,568,83,494,'399 52c-33 -19 -60 -33 -95 -48c-22 -10 -52 -15 -76 -15c-30 0 -64 13 -88 36c-36 34 -57 91 -57 159c0 58 9 92 21 128c12 32 29 65 53 89c41 41 97 64 155 64c41 0 84 -9 117 -34l51 29l14 -6c-5 -91 -9 -163 -9 -372c0 -38 -1 -110 -22 -168 c-15 -44 -53 -78 -73 -93c-51 -39 -101 -54 -162 -54c-44 0 -89 10 -138 56l49 62h14c18 -36 64 -77 100 -77c38 0 76 17 101 47c18 20 29 46 36 72c9 31 17 81 18 118zM408 99v264c-1 14 -9 31 -18 42c-18 19 -44 26 -71 26c-34 0 -66 -17 -91 -41c-22 -21 -37 -49 -45 -77 c-12 -38 -14 -71 -14 -110c0 -27 16 -79 29 -98c23 -33 57 -53 85 -53c46 0 102 29 125 47'], + 0x68: [681,10,621,27,637,'624 107l13 -10v-11c-28 -30 -51 -53 -84 -72c-23 -14 -45 -24 -73 -24c-19 0 -38 10 -48 26c-12 20 -18 46 -18 73c0 54 4 141 4 177c0 24 -1 47 -5 72c-3 17 -11 36 -25 48c-17 12 -34 18 -56 18s-50 -8 -70 -16c-28 -14 -47 -26 -72 -44c0 -110 -2 -220 -2 -328 l-72 -22l-6 10c7 132 13 264 14 396c0 52 0 125 -3 156c-2 20 -4 42 -17 60c-8 12 -50 20 -77 26v18l5 4l158 17l6 -7c-4 -85 -4 -184 -4 -276l8 -8c36 22 73 42 113 58c28 10 55 18 88 18c15 0 47 -10 65 -28c13 -12 19 -30 21 -48c3 -28 3 -88 3 -130 c0 -44 -1 -108 1 -132c1 -16 3 -34 13 -50c7 -10 18 -16 30 -16c16 0 32 5 46 12c19 11 32 22 44 33'], + 0x69: [683,8,360,14,357,'216 392l-8 -210c0 -41 4 -77 12 -95c6 -13 18 -22 32 -22s30 3 42 9c18 10 34 22 50 36l13 -10v-11c-20 -27 -42 -50 -69 -70c-22 -14 -46 -27 -72 -27c-24 0 -47 7 -64 28c-14 18 -16 40 -16 84l6 221c0 30 -4 56 -11 70c-5 10 -14 15 -24 15c-22 0 -56 -17 -80 -32 l-13 18c24 19 57 42 81 54c18 9 40 21 59 21c14 0 34 -2 46 -18c14 -16 16 -40 16 -61zM230 625c-2 -33 -28 -56 -60 -56s-58 26 -58 58c2 34 34 56 64 56c34 0 54 -28 54 -58'], + 0x6A: [683,231,331,-1,226,'27 375l-13 18c27 21 54 40 84 56c18 9 37 19 57 19c15 0 31 -3 41 -13c15 -14 18 -34 20 -54c7 -43 7 -210 7 -247c0 -20 0 -160 -12 -195c-13 -38 -36 -71 -63 -100c-33 -35 -87 -68 -133 -90l-16 16c74 44 114 89 128 139c17 62 20 186 20 230c0 98 0 164 -3 201 c-2 20 -9 35 -13 39c-11 14 -17 14 -28 14c-16 0 -51 -20 -76 -33zM168 683c30 0 58 -22 58 -54c0 -34 -26 -64 -61 -64c-33 0 -56 28 -56 60s27 58 59 58'], + 0x6B: [686,7,555,27,565,'202 266l134 123c27 24 77 70 80 73c11 9 21 17 33 23l46 -29v-11c-75 -44 -146 -95 -213 -151c-7 -6 -18 -15 -18 -20c0 -6 5 -11 8 -16c47 -60 100 -112 146 -159c14 -14 38 -26 50 -26c33 0 56 16 78 39l19 -20c-27 -36 -51 -62 -97 -92c-6 -4 -20 -7 -30 -7 c-9 0 -27 3 -34 8c-11 6 -28 22 -45 41c0 0 -89 120 -160 199l-10 -7l-2 -221l-71 -20l-6 7c3 120 7 240 10 359c2 79 5 189 -7 235c-4 15 -15 28 -30 34c-10 3 -37 8 -56 10v21l5 4l160 23l6 -7l-9 -413h13'], + 0x6C: [686,11,365,41,360,'338 112h11l11 -12c-19 -31 -42 -59 -71 -81c-24 -17 -52 -29 -81 -30c-19 0 -39 6 -52 19c-23 25 -30 44 -30 122l7 378c0 33 0 76 -5 100c-3 13 -14 22 -27 24c-19 4 -40 5 -60 6v23l6 5l165 20l6 -7c-4 -140 -14 -280 -14 -420c0 -42 0 -102 2 -127 c2 -17 4 -34 13 -49c8 -12 19 -17 33 -18c14 0 29 5 40 12c16 10 31 22 46 35'], + 0x6D: [471,18,915,29,922,'422 -4c0 32 10 159 10 273c0 24 0 51 -5 70c-4 16 -11 31 -23 43c-14 14 -34 18 -54 18c-47 0 -108 -38 -117 -44c-5 -113 -7 -229 -3 -342l-67 -24l-14 8c1 92 7 184 7 275c0 44 -2 110 -13 126c-7 10 -16 13 -27 13c-16 0 -52 -16 -75 -29l-12 19c24 19 49 37 76 51 c19 9 40 17 61 18c17 0 34 -6 46 -17c16 -15 16 -37 16 -57l8 -6c33 18 66 37 102 52c22 9 46 16 70 16c37 0 71 -20 90 -52l16 -2c25 13 50 27 85 39c24 9 49 16 75 16c29 0 59 -6 79 -27c14 -14 16 -34 18 -53c2 -20 2 -88 2 -132v-131c0 -13 2 -38 14 -51 c9 -10 24 -14 37 -14c22 1 52 22 77 40h14l7 -21c-26 -25 -53 -48 -84 -65c-24 -13 -49 -23 -76 -24c-16 0 -35 5 -46 17c-15 16 -22 39 -22 60c0 16 5 136 5 210c0 24 0 47 -6 70c-4 17 -12 31 -24 43c-15 14 -35 18 -55 18c-49 0 -84 -18 -112 -34c-3 -115 -3 -233 4 -348 l-74 -28'], + 0x6E: [471,10,664,5,656,'210 18l-70 -24l-15 7c2 43 8 170 9 256c1 46 2 112 -10 136c-5 11 -14 20 -27 20c-21 0 -46 -16 -75 -35l-17 22c42 30 99 72 136 71c18 0 37 -4 50 -17c16 -15 18 -32 21 -51l8 -6c34 21 67 39 105 53c27 11 55 19 84 19s59 -7 77 -29c20 -23 20 -120 20 -184 c0 -54 0 -126 1 -145c2 -34 24 -51 47 -51s55 21 80 40h13l9 -21c-29 -28 -56 -49 -89 -68c-20 -11 -55 -21 -68 -21c-26 0 -46 8 -58 27c-12 17 -14 40 -14 61l5 171c0 29 -2 59 -7 87c-3 18 -9 35 -20 48c-17 18 -38 26 -63 26c-20 0 -40 -7 -58 -15 c-26 -12 -49 -28 -71 -46c-2 -47 -5 -99 -5 -151c0 -60 -2 -99 2 -180'], + 0x6F: [465,14,563,56,497,'150 316c-6 -25 -8 -51 -8 -77c0 -66 12 -141 63 -186c19 -17 45 -26 72 -26c34 0 65 12 88 37c19 21 29 48 35 75s8 54 8 81c0 64 -8 136 -58 180c-20 19 -47 26 -74 26c-30 0 -68 -14 -94 -42c-18 -19 -26 -43 -32 -68zM250 -14c-44 0 -92 10 -125 40 c-48 43 -65 107 -69 170c0 69 7 143 55 195c47 52 118 74 188 74c47 0 94 -9 130 -41c51 -47 68 -118 68 -185c0 -65 -14 -131 -58 -180c-47 -53 -119 -73 -189 -73'], + 0x70: [470,237,589,-12,518,'199 -206l-81 -31l-10 11c5 58 6 263 6 320v221c0 22 -5 66 -14 80c-6 10 -13 17 -25 17c-21 0 -49 -15 -73 -29l-14 19c24 19 50 37 77 50c19 10 38 18 59 18c16 0 32 -3 44 -15c15 -14 19 -36 21 -60l8 -4c33 26 55 39 91 55c30 13 61 19 93 19c31 0 71 -15 93 -37 c36 -40 44 -78 44 -130c0 -44 -9 -96 -25 -135c-13 -31 -37 -71 -57 -89c-28 -25 -59 -47 -93 -63c-27 -13 -55 -22 -85 -22c-20 0 -40 3 -59 8l-10 -8c1 -46 4 -143 10 -195zM191 66c24 -22 55 -37 88 -37c36 0 71 10 98 36c21 20 34 47 43 75c12 35 14 62 14 99 c0 26 -6 61 -14 86c-5 18 -13 33 -26 48c-18 21 -42 30 -63 30c-51 0 -92 -21 -139 -58c0 -6 -3 -82 -3 -93c0 -82 2 -185 2 -186'], + 0x71: [504,243,605,88,502,'419 -243l-16 16c3 41 5 185 8 281l-7 5c-51 -38 -109 -66 -172 -66c-32 0 -63 12 -86 33c-44 43 -58 106 -57 166c2 87 25 172 92 230c42 37 100 49 148 49c31 0 71 -14 99 -28l9 2l44 59l21 -4c-18 -223 -19 -528 -2 -714zM411 105v226c0 25 0 55 -16 71 c-18 18 -41 32 -67 32c-33 0 -64 -12 -89 -33c-46 -37 -58 -118 -58 -188c0 -26 4 -52 11 -77c4 -18 13 -32 24 -46c19 -23 49 -35 79 -35c39 0 83 21 116 50'], + 0x72: [473,3,432,9,415,'361 339l-12 5c-3 16 -8 32 -19 44c-9 9 -21 14 -34 14c-41 0 -65 -35 -77 -62c-5 -12 -5 -32 -6 -46c-1 -93 -2 -184 2 -276l-70 -21l-15 9c7 70 11 157 12 237c0 53 0 129 -16 154c-6 10 -16 15 -27 15c-23 0 -53 -17 -78 -31l-12 17c25 20 52 40 80 56 c18 9 36 19 55 19c18 0 36 -4 49 -17c14 -14 20 -35 23 -55l10 -4c19 18 40 36 63 51c14 9 29 19 47 19c19 0 42 -4 56 -18s21 -39 23 -61'], + 0x73: [466,17,455,52,387,'376 383l-55 -37l-12 7c-1 18 -3 37 -13 53c-11 18 -32 25 -52 25c-22 0 -44 -8 -59 -23c-16 -15 -23 -36 -23 -58s11 -34 26 -50c12 -12 55 -34 84 -46c32 -14 69 -36 83 -50c18 -18 32 -41 32 -66c0 -35 -12 -69 -36 -94c-39 -42 -95 -61 -152 -61c-38 0 -78 7 -107 33 c-16 14 -30 31 -40 50l49 71l14 -1c2 -30 12 -60 35 -81c22 -21 49 -34 79 -34c22 0 49 12 64 28c12 13 21 30 21 48c0 21 -11 41 -26 56c-19 19 -47 31 -73 42c-31 13 -61 27 -84 47c-23 21 -41 49 -41 81c0 35 14 70 41 94c36 33 83 49 132 49c30 0 62 -4 85 -25 c16 -15 27 -36 28 -58'], + 0x74: [611,9,416,17,399,'138 582l84 29l7 -5c-5 -57 -10 -108 -11 -166l6 -5h128l5 -4l-8 -26l-6 -5h-119l-6 -6v-189c0 -42 4 -106 26 -130c13 -15 28 -20 45 -20c25 0 61 22 91 41l12 -2l7 -15c-27 -25 -56 -48 -88 -65c-24 -13 -49 -23 -76 -23c-23 0 -54 7 -72 31c-21 27 -23 46 -23 181v190 l-6 7h-112l-5 5l7 24l6 6h104l6 6c0 51 0 115 -2 141'], + 0x75: [470,10,642,-1,655,'644 105l11 -19c-30 -26 -61 -50 -94 -70c-21 -12 -43 -24 -67 -24c-18 0 -37 5 -50 18c-14 14 -17 35 -19 54l-8 1c-37 -22 -75 -41 -115 -58c-23 -10 -48 -17 -73 -17c-28 0 -61 7 -80 29c-20 23 -25 72 -25 93c0 33 4 134 4 163c0 91 -4 107 -17 121c-6 7 -16 9 -28 9 c-14 0 -48 -17 -71 -30l-13 20c26 20 53 39 82 55c17 9 35 18 54 18c16 0 34 -3 46 -15c14 -14 16 -34 18 -54s2 -103 2 -155c0 -59 0 -143 27 -170c16 -16 40 -23 63 -23c21 0 41 7 59 15c26 12 47 23 72 38c1 108 3 277 0 331l77 35l13 -11c-8 -93 -12 -186 -12 -278 c0 -36 0 -86 16 -102c9 -9 21 -14 33 -14c13 0 26 6 37 12c18 8 33 18 50 30'], + 0x76: [469,11,495,-21,466,'412 460c3 2 6 2 8 2c3 0 7 0 9 -3c18 -14 37 -43 37 -97c0 -55 -27 -104 -55 -150c-45 -72 -100 -135 -159 -195c-11 -11 -25 -25 -30 -28h-24l-69 258c-13 51 -38 122 -51 144c-6 10 -15 17 -27 17c-22 0 -40 -8 -63 -21l-9 24c23 16 47 31 73 43c17 8 34 15 52 15 c15 0 29 -7 39 -17c17 -17 38 -99 54 -159c14 -58 39 -154 55 -201c3 -9 10 -10 13 -10c5 0 16 14 24 22c30 35 58 73 79 114c16 30 28 61 28 94c0 32 -20 68 -37 100c-1 1 -1 3 -1 5c0 3 2 6 4 8'], + 0x77: [469,8,812,-13,782,'675 416c-1 2 -1 4 -1 6c0 3 0 6 2 7l57 35c1 1 3 1 6 1s6 0 8 -3c21 -27 35 -58 35 -93c0 -55 -27 -106 -56 -153c-44 -74 -100 -140 -158 -203c-10 -10 -21 -21 -35 -21c-11 0 -23 12 -26 21c-17 48 -62 223 -91 337c-2 4 -4 10 -9 10c-4 0 -10 -2 -11 -5 c-56 -103 -124 -231 -179 -350l-42 -13l-7 6l-24 224c-14 126 -35 171 -48 183c-6 5 -9 7 -17 7c-23 0 -56 -17 -83 -31l-9 20c26 19 52 36 81 51c17 9 34 17 53 17c18 0 34 -6 46 -19c20 -22 27 -49 32 -77c15 -80 19 -162 29 -243l11 -2c57 103 114 207 166 313l52 26 l12 -3c26 -126 53 -250 97 -368c3 -7 10 -15 18 -15c4 0 12 6 15 10c32 40 64 81 88 127c15 29 26 61 26 94c0 15 -5 30 -10 44c-7 21 -17 41 -28 60'], + 0x78: [464,12,526,2,512,'422 462l31 -29c1 -1 3 -3 3 -4c0 -3 -1 -4 -3 -5c-56 -39 -120 -104 -172 -165c26 -57 76 -151 107 -178c10 -9 22 -18 37 -18c12 0 23 6 33 11c14 8 25 16 38 27h8l8 -19c-23 -25 -47 -50 -75 -70c-16 -12 -33 -24 -53 -24c-17 0 -31 9 -43 21c-16 14 -27 33 -38 52 c-15 25 -48 87 -70 130h-7c-39 -60 -79 -122 -109 -199l-16 -4l-28 25v8c43 69 93 138 142 202c-29 59 -66 134 -100 169c-9 9 -22 15 -35 15c-21 0 -46 -13 -64 -25l-14 18c23 18 47 34 72 48c15 8 30 16 46 16c17 0 41 -4 54 -19c21 -23 62 -95 91 -151l6 -1 c36 48 95 118 139 169c1 2 3 2 6 2c2 0 4 0 6 -2'], + 0x79: [468,233,593,-17,491,'97 -182l-2 11l44 56h13c21 -38 59 -77 104 -77c37 0 76 14 98 42c28 35 38 87 43 116c6 33 7 66 8 98l-6 5c-34 -21 -69 -41 -106 -57c-26 -10 -53 -20 -82 -20c-25 0 -49 6 -67 24c-35 29 -37 101 -37 141c0 20 1 41 2 61c2 62 6 152 -13 178c-7 10 -19 14 -31 14 c-17 0 -48 -16 -71 -28l-11 19c8 6 49 34 85 51c17 8 35 16 54 16c15 0 32 -4 42 -14c14 -14 21 -35 21 -56c0 -56 -4 -114 -4 -172c3 -93 12 -123 28 -144c15 -19 39 -26 63 -26c21 0 42 4 62 14c26 10 52 26 72 38c4 106 2 216 -6 320l79 38l12 -4c-6 -86 -6 -174 -6 -260 c0 -124 2 -177 -15 -251c-12 -43 -35 -83 -59 -109c-48 -51 -119 -75 -187 -75c-47 0 -100 23 -127 51'], + 0x7A: [462,27,470,12,479,'408 462h6l14 -13c-83 -88 -191 -221 -290 -355l5 -8c98 -10 196 -13 205 -13c24 0 51 10 64 23c17 17 32 35 45 55l22 -12l-41 -80c-10 -21 -22 -41 -42 -53c-16 -10 -36 -14 -55 -14c-11 0 -86 8 -129 13l-117 11c-24 0 -46 -20 -62 -43h-6l-15 19l295 381 c-10 -2 -19 -2 -30 -2c-16 0 -44 6 -66 11c-18 4 -38 8 -54 8s-32 -7 -44 -17s-31 -35 -45 -54l-20 13l50 89c7 11 15 25 24 31c11 8 25 10 38 10c24 0 58 -9 87 -16s61 -15 88 -15c29 0 52 14 73 31'], + 0x7B: [730,178,320,-3,292,'292 -154v-24c-39 0 -92 0 -116 6c-15 4 -28 12 -38 23c-19 21 -23 50 -26 77c-3 24 -3 70 -3 106c0 69 0 174 -25 202c-8 9 -20 15 -33 18c-17 5 -36 5 -54 5v26c39 0 63 1 85 20c16 14 19 37 22 58c4 35 4 100 4 151c0 35 0 96 1 106c3 28 8 56 25 78c9 11 21 20 35 25 c21 7 82 7 123 7v-24c-29 0 -60 0 -87 -8c-12 -3 -19 -9 -25 -20c-8 -12 -12 -27 -15 -42c-6 -39 -6 -78 -6 -118c0 -41 -1 -82 -7 -123c-3 -23 -7 -50 -19 -70c-17 -26 -42 -45 -59 -51v-1c20 -7 38 -18 52 -38c17 -23 24 -49 27 -76c5 -43 6 -86 6 -129 c0 -40 2 -80 8 -119c3 -14 7 -27 15 -39c7 -11 18 -17 30 -20c24 -6 53 -6 80 -6'], + 0x7C: [738,167,213,86,126,'126 -159l-40 -8v897l40 8v-897'], + 0x7D: [733,175,320,23,318,'23 -175v24c27 0 57 1 80 6c12 3 23 9 30 20c8 12 12 25 15 39c6 39 8 79 8 119c0 43 1 86 6 129c3 27 10 53 27 76c14 20 32 31 52 38v1c-17 6 -42 25 -59 51c-12 20 -16 47 -19 70c-6 41 -7 82 -7 123c0 40 0 79 -6 118c-3 15 -7 30 -15 42c-6 11 -13 17 -25 20 c-28 7 -58 8 -87 8v24c41 0 102 0 123 -7c14 -5 26 -14 35 -25c17 -22 22 -50 25 -78c1 -10 1 -71 1 -106c0 -51 0 -116 4 -151c3 -21 6 -44 22 -58c22 -19 46 -20 85 -20v-26c-18 0 -37 0 -54 -5c-13 -3 -25 -9 -33 -18c-25 -28 -25 -133 -25 -202c0 -36 0 -82 -3 -106 c-3 -27 -7 -56 -26 -77c-10 -11 -23 -19 -38 -23c-24 -6 -77 -6 -116 -6'], + 0x7E: [347,-178,551,22,530,'281 291l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66 c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0xA0: [0,0,333,0,0,''], + 0xA7: [701,107,515,56,451,'385 166l3 4c13 18 18 40 18 62c0 29 -16 53 -36 73c-21 22 -62 40 -96 56c-47 22 -121 55 -140 81c-14 -18 -24 -45 -24 -69c0 -23 10 -45 26 -61c28 -28 70 -48 108 -66c50 -23 115 -53 141 -80zM56 23l70 27l8 -5c1 -33 10 -66 33 -90c21 -21 56 -36 85 -36 c33 0 55 17 78 40c21 21 27 60 27 89c0 25 -12 47 -30 65c-20 20 -73 44 -112 63c-38 17 -82 38 -107 63c-26 26 -37 63 -37 99c0 46 22 88 48 126c-6 20 -10 40 -10 61c0 47 15 95 49 129c32 31 76 47 121 47c18 0 37 -2 55 -6c13 -4 26 -9 36 -19c15 -14 27 -33 27 -54 c0 -7 -4 -25 -6 -37l-59 -21l-15 11c0 15 -1 31 -5 46c-3 10 -7 21 -14 29c-13 13 -31 21 -49 21c-23 0 -39 -8 -58 -28c-19 -21 -25 -54 -25 -82c0 -25 8 -49 26 -67c5 -6 12 -10 19 -14c29 -17 60 -32 90 -49c38 -22 82 -34 113 -65c22 -22 37 -50 37 -81 c0 -51 -19 -99 -52 -136c13 -21 18 -48 18 -74c0 -48 -18 -94 -52 -128s-80 -54 -128 -54c-52 0 -106 10 -143 47c-22 22 -35 52 -38 83'], + 0xA8: [642,-542,299,0,299,'299 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM100 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0xAC: [401,-205,773,30,709,'709 401v-196h-50v146h-629v50h679'], + 0xAF: [619,-566,312,0,312,'312 566h-312v53h312v-53'], + 0xB1: [586,74,755,46,710,'396 276h313l-5 -40h-308v-270h314l-6 -40h-658l7 40h303v270h-310l7 40h303v304l40 6v-310'], + 0xB4: [677,-506,201,0,201,'0 532l17 -26l144 90c33 21 40 29 40 47c0 19 -14 34 -31 34c-15 0 -33 -11 -55 -33'], + 0xB5: [466,199,617,96,635,'485 466l8 -11c-3 -41 -6 -92 -6 -123v-167c0 -18 2 -36 6 -54c4 -12 8 -25 18 -34c7 -7 18 -11 28 -11c23 0 53 18 77 33l11 -2l8 -14c-25 -23 -52 -46 -83 -62c-21 -12 -44 -22 -69 -22c-17 0 -36 1 -48 13c-13 13 -18 37 -21 56l-8 5c-58 -33 -134 -76 -183 -76 c-32 0 -45 10 -62 30l-6 -2c0 -66 6 -141 19 -204l-53 -20l-12 6c2 92 4 184 4 276v189c0 55 -13 140 -17 164l83 26l9 -7v-269c0 -41 5 -84 35 -114c15 -15 38 -15 58 -15c21 0 59 11 87 29c16 11 26 18 41 34c1 48 3 121 3 142c0 58 -2 115 -4 172'], + 0xB7: [379,-245,277,72,206,'72 312c0 37 30 67 66 67c38 0 68 -30 68 -67s-30 -67 -68 -67c-36 0 -66 30 -66 67'], + 0xD7: [505,-7,755,133,623,'376 283l222 222l25 -32l-218 -218l214 -214l-23 -34l-220 220l-219 -220l-23 34l214 214l-215 215l24 32'], + 0xF7: [537,36,777,56,720,'714 229h-658l7 40h657zM322 31c0 37 30 67 66 67c38 0 68 -30 68 -67s-30 -67 -68 -67c-36 0 -66 30 -66 67zM322 470c0 37 30 67 66 67c38 0 68 -30 68 -67s-30 -67 -68 -67c-36 0 -66 30 -66 67'], + 0x131: [471,8,333,-2,341,'200 392l-8 -210c0 -41 4 -77 12 -95c6 -13 18 -22 32 -22s30 3 42 9c18 10 34 22 50 36l13 -10v-11c-20 -27 -42 -50 -69 -70c-22 -14 -46 -27 -72 -27c-24 0 -47 7 -64 28c-14 18 -16 40 -16 84l6 221c0 30 -4 56 -11 70c-5 10 -14 15 -24 15c-22 0 -56 -17 -80 -32 l-13 18c24 19 57 42 81 54c18 9 40 21 59 21c14 0 34 -2 46 -18c14 -16 16 -40 16 -61'], + 0x237: [468,231,331,-1,223,'27 375l-13 18c27 21 54 40 84 56c18 9 37 19 57 19c15 0 31 -3 41 -13c15 -14 18 -34 20 -54c7 -43 7 -210 7 -247c0 -20 0 -160 -12 -195c-13 -38 -36 -71 -63 -100c-33 -35 -87 -68 -133 -90l-16 16c74 44 114 89 128 139c17 62 20 186 20 230c0 98 0 164 -3 201 c-2 20 -9 35 -13 39c-11 14 -17 14 -28 14c-16 0 -51 -20 -76 -33'], + 0x2C6: [735,-452,499,0,495,'251 735l244 -249l-39 -27l-208 214l-225 -221l-23 12'], + 0x2C7: [735,-452,495,0,495,'251 452l244 249l-39 27l-208 -214l-225 221l-23 -12'], + 0x2D8: [671,-513,282,0,282,'282 671c-6 -134 -91 -158 -141 -158c-53 0 -135 25 -141 158h30c3 -57 49 -98 111 -98s108 41 111 98h30'], + 0x2D9: [642,-542,100,0,100,'100 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x2DA: [692,-492,200,0,200,'200 592c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM162 592c0 38 -25 64 -61 64c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0x2DC: [640,-540,321,0,322,'101 640c53 -3 99 -45 136 -45c28 0 40 14 61 45l24 -13c-21 -43 -49 -87 -106 -87c-55 0 -102 45 -139 45c-24 0 -39 -20 -53 -45l-24 14c32 66 63 88 101 86'], + 0x300: [677,-506,0,-385,-184,'-184 532l-17 -26l-144 90c-33 21 -40 29 -40 47c0 19 14 34 31 34c15 0 33 -11 55 -33'], + 0x301: [677,-506,0,-315,-114,'-315 532l17 -26l144 90c33 21 40 29 40 47c0 19 -14 34 -31 34c-15 0 -33 -11 -55 -33'], + 0x302: [735,-452,499,0,495,'251 735l244 -249l-39 -27l-208 214l-225 -221l-23 12'], + 0x303: [640,-540,0,-409,-88,'-308 640c53 -3 99 -45 136 -45c28 0 40 14 60 45l24 -13c-20 -43 -48 -87 -105 -87c-55 0 -101 45 -139 45c-24 0 -38 -20 -53 -45l-24 14c32 66 63 88 101 86'], + 0x304: [619,-566,0,-405,-93,'-93 566h-312v53h312v-53'], + 0x306: [671,-513,0,-390,-108,'-108 671c-6 -134 -91 -158 -141 -158c-53 0 -135 25 -141 158h30c3 -57 49 -98 111 -98s108 41 111 98h30'], + 0x307: [642,-542,0,-300,-200,'-200 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x308: [642,-542,0,-399,-100,'-100 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM-299 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x30A: [692,-492,0,-349,-149,'-149 592c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM-187 592c0 38 -25 64 -61 64c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0x30B: [683,-502,0,-346,-3,'-327 502l-19 25l107 123c17 20 39 33 55 33c17 0 31 -15 31 -33c0 -16 -10 -29 -39 -50zM-177 502l-19 25l107 123c17 20 39 33 55 33c17 0 31 -15 31 -33c0 -16 -10 -29 -39 -50'], + 0x30C: [735,-452,499,0,495,'251 452l244 249l-39 27l-208 -214l-225 221l-23 -12'], + 0x338: [720,192,0,39,463,'458 715l5 -11l-389 -896l-32 8l-3 14l386 888l11 2'], + 0x391: [680,10,770,25,743,'536 76l-54 188c-2 4 -8 9 -11 9h-225c-4 0 -8 -4 -10 -8l-117 -248l-91 -19l-3 10c119 200 234 404 339 612c1 3 1 4 1 7s-3 9 -12 11l-90 15v27h194c15 -83 60 -243 93 -363c22 -81 49 -178 85 -238c9 -15 24 -24 41 -28c7 -1 15 -2 23 -2c14 0 29 2 43 3l1 -26 l-104 -30c-15 -4 -30 -6 -45 -6c-11 0 -20 5 -27 13c-14 13 -24 47 -31 73zM382 572l-116 -244c-1 -2 -1 -8 -1 -9c0 -3 4 -7 7 -7h188c5 0 7 4 7 7c0 0 -2 8 -2 9l-70 244c-1 2 -4 4 -7 4s-6 -3 -6 -4'], + 0x392: [686,1,655,50,574,'215 324v-258c0 -13 5 -17 11 -21s32 -6 64 -6c54 0 110 12 149 50c31 32 44 75 44 119c0 33 -8 68 -33 93c-18 18 -42 27 -67 34c-34 9 -70 11 -106 11c-18 0 -47 0 -52 -1c-4 0 -8 -3 -10 -7v-14zM215 411v-20c1 -4 5 -7 8 -8c8 -3 31 -2 46 -2c51 0 101 15 137 50 c30 30 43 72 43 114c0 29 -14 55 -34 75c-12 12 -30 17 -47 21c-26 6 -53 7 -80 7c-20 0 -40 -2 -60 -5c-7 -1 -11 -7 -13 -14v-218zM381 378l-1 -8c31 -4 67 -12 97 -21c20 -6 42 -19 57 -34c31 -31 40 -71 40 -114c0 -50 -18 -98 -53 -133c-55 -56 -136 -69 -212 -69 c-66 1 -197 2 -198 2l-1 10c6 9 18 25 18 26c2 3 3 6 4 10c0 1 1 23 1 34v530c0 17 -15 27 -17 28c-17 8 -41 16 -66 23l1 17l7 7h247c41 0 81 -2 121 -12c27 -7 54 -16 74 -36c22 -23 34 -53 34 -85c0 -41 -14 -81 -43 -110c-30 -31 -70 -48 -110 -65'], + 0x393: [697,7,428,74,507,'496 697l11 -145h-27l-19 52c-9 24 -34 36 -58 40c-57 10 -116 9 -174 6c-13 -1 -22 -8 -27 -19c-8 -16 -9 -65 -9 -82c0 -177 0 -355 3 -533l-77 -23l-10 11c3 183 7 457 7 549c0 20 0 41 -2 62c-1 13 -4 27 -14 36l-26 22l3 20h237c61 0 122 1 182 4'], + 0x394: [696,4,713,30,689,'363 671l58 25c44 -132 91 -257 143 -385c37 -90 81 -182 125 -267l-1 -16l-61 -32c-198 13 -397 21 -595 7l-2 42zM562 50l6 9c-41 94 -201 494 -201 495h-11c-95 -164 -175 -321 -255 -490l3 -12c152 3 306 -2 458 -2'], + 0x395: [688,0,604,46,559,'456 336c-39 3 -79 6 -118 6c-38 0 -101 -2 -119 -3c-7 -1 -10 -5 -10 -12v-139c0 -38 1 -87 15 -112c6 -12 18 -20 30 -26c12 -5 38 -6 66 -6c47 0 70 0 234 14l5 -5l-13 -53h-388c-9 5 -15 15 -20 25c-5 12 -6 27 -6 41v492c0 14 0 44 -9 64c-2 6 -10 11 -17 16 c-8 6 -38 13 -59 16l-1 20l7 7l148 1c70 0 171 6 242 6c18 0 33 0 46 -1l-2 -50l-4 -7c-69 4 -202 10 -209 10h-40c-5 -1 -10 -4 -13 -9c-8 -12 -11 -44 -11 -67v-166c0 -7 3 -11 10 -12c39 -3 159 -1 236 5l6 -7'], + 0x396: [694,12,666,46,640,'595 664c-135 -193 -309 -464 -399 -603l6 -7l429 14l9 -9l-18 -71c-129 12 -383 12 -575 12l-1 21l424 606l-7 10c-187 0 -309 -5 -336 -9l-6 6v52l9 8c148 -7 316 -11 465 -11v-19'], + 0x397: [690,2,783,52,744,'744 14l-6 -6l-149 -8l-11 21c2 97 5 216 5 313c0 5 -3 12 -12 12h-343c-7 0 -13 -5 -13 -12c0 -67 -1 -163 0 -230c0 -26 2 -52 5 -78l-92 -28l-6 5c10 113 10 242 10 364c0 83 -1 166 -6 249c-1 9 -3 20 -13 24c-4 1 -40 12 -60 19l-1 19l7 7h162l5 -5 c-4 -22 -6 -46 -7 -69c-2 -65 -6 -149 -6 -214c0 -5 2 -12 12 -12h346c11 0 12 6 12 12c0 86 -3 190 -3 276l88 17l5 -6c-3 -39 -7 -80 -8 -119c-4 -162 -5 -324 1 -486c0 -17 13 -30 29 -34c18 -5 47 -13 48 -13'], + 0x398: [701,12,757,38,714,'208 350l-1 44c13 -4 35 -6 42 -7c44 -2 104 -3 152 -3c35 0 73 0 105 2c11 1 23 2 43 7v-41v-38c-15 5 -37 8 -48 8c-35 1 -69 4 -104 4c-40 0 -91 -2 -137 -4c-10 0 -26 -1 -52 -6v34zM336 -12c-73 0 -150 17 -203 71c-69 72 -95 173 -95 272c0 96 3 138 44 212 c57 100 191 158 339 158c77 0 157 -20 213 -77c61 -64 80 -155 80 -243c0 -58 -7 -116 -24 -170c-15 -46 -37 -89 -70 -123c-73 -76 -181 -100 -284 -100zM378 31c81 0 131 27 179 77c25 27 40 63 48 99c13 55 14 113 14 170c0 80 -20 162 -74 219c-46 49 -112 67 -177 67 c-75 0 -130 -31 -168 -73c-21 -23 -40 -58 -50 -95c-13 -48 -16 -99 -16 -150c0 -94 24 -188 88 -255c41 -43 99 -59 156 -59'], + 0x399: [683,1,394,78,348,'346 -1h-265v26c20 4 43 9 61 14c13 5 24 17 26 31c1 11 1 43 2 64v363c0 39 0 77 -3 115c-1 13 -9 26 -22 29c-1 0 -45 9 -67 14v22l7 6h250l6 -6v-21l-67 -15c-13 -3 -21 -14 -22 -26c-3 -20 -3 -78 -3 -116c0 -124 -1 -228 2 -330c0 -33 1 -66 4 -99 c1 -16 14 -26 28 -30c22 -5 64 -17 65 -17'], + 0x39A: [683,7,668,49,632,'221 319l-9 -1c0 -98 0 -196 6 -293l-81 -29l-11 5l3 147v447c0 10 -1 21 -5 31c-3 6 -7 13 -14 15c-20 6 -60 18 -61 18l2 17l8 7h158l7 -7c-4 -12 -8 -49 -8 -50c-2 -27 -7 -155 -7 -268l8 -1l287 326h90l-1 -9l-291 -294c-3 -3 -8 -8 -8 -11s1 -5 5 -9 c107 -107 272 -271 333 -325l-1 -11l-85 -31c-105 112 -217 217 -325 326'], + 0x39B: [698,7,770,28,771,'393 673l66 25c54 -215 118 -427 213 -627c6 -12 19 -19 32 -19l67 3l-1 -22c-52 -16 -104 -30 -157 -40l-23 8c-68 186 -127 376 -190 564h-12c-95 -188 -241 -482 -269 -548c-25 -10 -51 -19 -78 -23l-13 10c127 220 250 442 365 669'], + 0x39C: [690,6,1044,79,1010,'800 690h103v-12c-6 -3 -15 -10 -19 -19c-6 -15 -6 -51 -6 -76c0 -164 2 -317 18 -481c2 -17 10 -34 24 -45c10 -7 22 -11 34 -11c13 0 38 4 56 6v-24c-44 -16 -96 -34 -136 -34c-14 0 -28 2 -41 6s-22 21 -22 29v182c0 25 -8 271 -10 337c0 8 -3 15 -8 15 c-3 0 -8 -3 -11 -8l-286 -554h-30c-75 180 -169 409 -232 537c-3 5 -7 10 -11 10s-7 -4 -8 -11c-23 -170 -40 -342 -54 -514l-75 -26l-7 3c38 196 73 393 100 591c2 12 2 26 -6 36c-5 7 -12 12 -21 15l-68 19l2 22l7 7h176c55 -161 149 -361 232 -538c2 -4 7 -14 11 -14 s10 5 12 9'], + 0x39D: [694,5,829,49,710,'704 694l6 -8c-13 -227 -15 -459 -15 -686h-36c-23 26 -37 42 -67 80l-159 198c-102 126 -184 221 -234 277c-3 4 -8 10 -12 9c-6 -2 -6 -11 -6 -17c0 -129 13 -348 24 -522l-70 -30l-9 9c10 201 16 403 12 604c0 8 0 16 -6 22c-4 5 -9 10 -15 11c-1 0 -43 10 -64 15 l-4 27l8 7h162c133 -176 295 -391 412 -517c3 -3 7 -8 11 -8c5 0 6 6 6 8c0 102 -3 201 -24 505'], + 0x39E: [695,6,596,27,569,'547 688l22 -163l-34 -1l-16 61c-1 6 -4 12 -8 17c-10 10 -24 16 -37 16h-346c-10 0 -21 -2 -30 -7s-17 -12 -21 -22l-23 -64l-27 -2c7 57 8 115 13 172zM122 329l17 70c101 -4 201 -2 302 3l-15 -72c-101 2 -203 4 -304 -1zM569 147l-15 -153c-1 0 -344 4 -516 6 c0 1 -7 101 -11 152l26 1l14 -51c2 -9 10 -18 15 -23c6 -5 14 -7 22 -7h301h100c12 0 20 9 23 20c0 1 11 37 16 55h25'], + 0x39F: [701,12,803,66,742,'364 -12c-73 0 -150 17 -203 71c-69 72 -95 173 -95 272c0 96 3 138 44 212c57 100 191 158 339 158c77 0 157 -20 213 -77c61 -64 80 -155 80 -243c0 -58 -7 -116 -24 -170c-15 -46 -37 -89 -70 -123c-73 -76 -181 -100 -284 -100zM406 31c81 0 131 27 179 77 c25 27 40 63 48 99c13 55 14 113 14 170c0 80 -20 162 -74 219c-46 49 -112 67 -177 67c-75 0 -130 -31 -168 -73c-21 -23 -40 -58 -50 -95c-13 -48 -16 -99 -16 -150c0 -94 24 -188 88 -255c41 -43 99 -59 156 -59'], + 0x3A0: [690,14,722,26,693,'693 658l-76 -17c-5 -1 -9 -3 -13 -6c-3 -4 -4 -14 -4 -21c-3 -30 -3 -134 -3 -202c0 -135 2 -269 12 -404l-80 -22l-14 11c3 98 3 195 3 293c0 108 -1 229 -2 337c0 3 -1 6 -3 8c-3 4 -9 5 -10 5h-289c-1 0 -7 0 -10 -4c-3 -3 -4 -9 -4 -10c-7 -101 -7 -202 -7 -304 c0 -82 3 -204 5 -307l-85 -19l-7 6c5 104 8 208 8 312c0 73 1 147 0 220c0 26 -1 51 -6 77c-1 7 -3 17 -7 21s-11 7 -17 10c-2 0 -38 12 -58 18v30c75 -5 150 -9 225 -9h198c44 0 163 3 244 5v-28'], + 0x3A1: [679,6,576,55,550,'281 640h-56c-7 0 -9 -6 -9 -11c-4 -88 -6 -201 -6 -288c0 -9 7 -12 11 -12c35 0 76 4 109 15c27 8 52 20 71 39c33 33 53 77 53 123c0 36 -12 72 -38 98c-14 14 -33 22 -52 27c-27 7 -55 9 -83 9zM217 22l-83 -28l-7 7c2 140 7 281 7 422c0 59 -1 118 -5 177 c-1 18 -9 36 -27 43c-15 6 -31 9 -47 11v18l7 7h257c36 0 73 -2 108 -10c24 -5 49 -12 68 -28c38 -31 55 -79 55 -127c0 -58 -22 -115 -64 -156c-20 -21 -46 -34 -74 -44c-35 -12 -71 -18 -108 -21c-25 -2 -57 -4 -82 -6c-8 -1 -12 -6 -12 -13c0 -25 6 -151 7 -252'], + 0x3A3: [695,-2,646,49,600,'340 362l-175 -256l5 -10c89 -2 177 -2 266 -2c65 0 108 5 118 8c6 2 11 6 12 11c5 11 12 41 16 67h18l-5 -175c-89 3 -187 4 -276 4c-90 0 -180 -7 -270 -7c0 1 5 28 9 47l163 216c19 26 44 60 54 85c-8 22 -22 46 -36 66l-152 225l68 47c138 -3 276 0 414 7l4 -11 l-22 -53l-331 4l-11 -13l137 -222c3 -5 5 -10 5 -16s-7 -15 -11 -22'], + 0x3A4: [697,10,492,26,575,'575 689l-2 -48l-8 -7c-168 8 -189 10 -210 10c-6 0 -9 -5 -9 -11c-1 -14 -4 -115 -4 -195c0 -121 6 -300 13 -421l-100 -27l-9 9c8 127 13 254 13 381c0 82 -1 226 -2 256c0 4 -4 6 -9 6c-24 0 -103 -3 -214 -7l-8 7v48l7 7c95 -3 95 -11 272 -11c75 0 174 6 262 10'], + 0x3A5: [697,11,716,27,682,'682 593l-16 -6c-3 4 -14 13 -21 17c-16 9 -42 14 -58 14c-28 0 -53 -11 -73 -31c-64 -64 -102 -147 -119 -236c-10 -52 -10 -217 -10 -326l-67 -36l-17 7c4 75 4 150 4 225c0 76 -7 152 -27 225c-15 53 -37 106 -76 145c-21 21 -47 34 -77 34c-18 0 -33 -3 -47 -12 c-21 -13 -27 -26 -33 -39l-18 7c9 39 19 61 44 88c22 22 54 28 84 28c38 0 73 -15 99 -41c29 -29 45 -61 57 -100c19 -59 29 -120 35 -181h9c10 57 24 114 46 168c16 41 37 80 69 111c28 29 68 43 109 43c26 0 53 -9 72 -28c13 -13 20 -30 25 -48c2 -6 3 -13 6 -28'], + 0x3A6: [721,33,833,73,748,'362 699l92 22l4 -8c-1 -7 -9 -93 -9 -105l7 -7c47 0 95 -6 141 -19c36 -11 72 -28 99 -55c40 -40 52 -98 52 -154c0 -75 -20 -152 -73 -205c-26 -26 -59 -44 -94 -55c-40 -13 -83 -25 -124 -27l-8 -6c0 -34 1 -53 4 -91l-91 -22l-5 9l8 104l-7 6c-82 1 -166 21 -224 80 c-44 43 -61 105 -61 166c0 65 17 132 64 180c58 58 140 87 222 89l7 7c0 18 -2 71 -4 91zM449 565v-443l6 -8c51 1 103 19 140 56c48 48 61 116 61 182c0 33 -2 67 -11 99c-6 23 -15 46 -32 63c-42 42 -100 58 -157 59zM367 121v444l-7 8c-51 -2 -102 -26 -138 -62 c-43 -43 -57 -104 -57 -164c0 -71 27 -139 77 -189c30 -30 76 -43 118 -44'], + 0x3A7: [688,11,666,27,636,'632 672l-187 -206c-30 -35 -63 -79 -67 -86c0 -13 117 -200 156 -249l60 -72c7 -7 29 -21 37 -23l5 -4v-16l-110 -27l-14 6c-18 18 -32 40 -46 62l-143 239h-12c-14 -17 -55 -73 -83 -114c-38 -53 -91 -137 -107 -171l-94 -11v16l271 329c-4 1 -99 163 -145 245 c-11 18 -37 37 -55 44c-14 5 -31 10 -50 15v25l7 6c25 1 101 5 146 8l147 -266h9c5 5 70 90 103 135c32 46 77 117 77 117l95 13v-15'], + 0x3A8: [694,1,703,-28,698,'409 244l2 -158c1 -21 10 -44 33 -48l58 -12l-1 -27h-266v27l68 12c22 4 29 40 29 49v155l-6 6c-36 0 -71 4 -105 13c-27 8 -53 18 -72 38c-20 19 -29 46 -36 73c-12 41 -18 84 -21 127c-3 33 -8 88 -10 99c-2 13 -4 26 -13 35c-7 7 -17 12 -27 11l-63 -10l-7 22l108 36 c3 2 23 2 35 2s22 -9 31 -18c12 -12 12 -53 12 -81c0 -58 4 -116 17 -173c10 -38 23 -76 51 -104c26 -26 62 -41 100 -43l6 7v83c0 100 0 220 -6 302l86 23l4 -8c-7 -75 -13 -149 -13 -224c0 -59 1 -118 3 -176l7 -6c37 2 71 23 97 49c18 18 26 44 34 69c14 42 22 85 28 129 c7 44 7 89 19 132c34 12 69 20 104 24l3 -18c-24 -15 -35 -44 -42 -71c-5 -18 -13 -68 -19 -102c-6 -40 -14 -80 -28 -118c-8 -24 -17 -48 -35 -66c-42 -42 -101 -52 -159 -53'], + 0x3A9: [689,2,875,25,844,'835 60l9 -9l-25 -53c-115 9 -231 9 -346 1l9 58c47 11 90 36 124 70c27 26 43 61 54 97c14 47 19 96 19 144c0 84 -22 169 -82 229c-40 40 -97 57 -153 57c-62 0 -126 -17 -170 -62c-31 -30 -51 -69 -65 -110c-16 -49 -23 -101 -23 -153c0 -81 21 -164 79 -223 c29 -29 69 -45 110 -53l-21 -55c-110 10 -219 14 -329 6l17 61c61 -3 137 -6 190 -11l6 15c-26 14 -50 30 -71 51c-24 25 -40 56 -51 90c-13 41 -18 85 -18 128c0 95 28 190 96 257c70 71 171 94 269 94c44 0 89 -5 131 -19c35 -12 68 -29 94 -55c60 -60 81 -146 81 -230 c0 -93 -23 -189 -90 -256c-29 -28 -58 -51 -95 -66v-12c85 4 181 9 251 9'], + 0x3B1: [468,20,658,84,673,'403 212c-17 56 -44 142 -69 167c-18 19 -42 32 -68 32c-24 0 -47 -11 -64 -28c-19 -19 -31 -43 -39 -68c-10 -32 -13 -66 -13 -99c0 -49 7 -100 42 -135c12 -12 28 -19 44 -19c13 0 25 5 37 11c16 9 34 23 47 35c25 26 56 66 83 104zM558 468l51 -23 c-46 -69 -138 -207 -138 -208c10 -38 22 -76 37 -112c10 -21 19 -44 36 -61c7 -7 15 -14 25 -14c25 0 60 25 87 46l10 -1l7 -19c-34 -27 -83 -63 -103 -77c-14 -9 -30 -19 -48 -19c-13 0 -26 5 -36 15c-8 8 -15 17 -18 29l-46 134l-11 2l-65 -78c-5 -6 -12 -14 -18 -20 c-21 -21 -45 -41 -71 -55c-21 -11 -43 -19 -67 -19c-21 0 -40 9 -54 24c-41 41 -52 100 -52 157c0 85 23 171 84 232c40 40 92 67 148 67c28 0 54 -10 73 -29c16 -16 28 -36 37 -56c14 -28 22 -52 28 -75l10 -1'], + 0x3B2: [698,202,662,113,569,'381 380c49 -2 104 -14 134 -45c34 -35 54 -85 54 -133c0 -56 -21 -111 -61 -151c-48 -48 -116 -66 -184 -66c-30 0 -59 9 -80 30c-6 6 -10 12 -14 19l49 69l13 -6c-2 -20 5 -39 19 -53s33 -23 53 -23c29 0 54 16 73 35c36 36 47 88 47 138c0 43 -13 87 -43 118 c-32 32 -78 40 -122 40c-21 0 -42 0 -63 -2l2 36c50 0 99 15 134 50c28 27 35 66 35 104c0 56 -41 111 -101 111c-29 0 -60 -9 -81 -30s-30 -49 -37 -76c-10 -42 -14 -85 -15 -129c-1 -31 -1 -138 -1 -208c0 -126 2 -252 9 -377l-76 -33l-12 15c5 190 1 381 9 571 c2 51 10 129 32 176c17 36 30 54 59 82c39 37 93 56 156 56c75 0 136 -60 136 -135c0 -47 -21 -90 -54 -123c-20 -21 -43 -38 -69 -48'], + 0x3B3: [470,198,608,-25,582,'522 470l60 -27c-80 -131 -170 -255 -245 -389l-17 -43c1 -60 -2 -123 -8 -183l-34 -26c-21 7 -39 19 -56 33l53 165c0 39 -31 300 -104 372c-19 18 -44 31 -70 31c-28 0 -65 -7 -87 -30l-23 -27l-16 12c15 23 30 47 48 65c32 32 76 46 121 46c31 0 62 -12 85 -35 c34 -34 52 -81 65 -128c17 -65 24 -146 23 -214l8 -2c65 120 147 280 184 375'], + 0x3B4: [694,9,501,56,438,'384 687l5 -8l-15 -42c-35 2 -73 9 -139 9c-33 0 -65 -9 -65 -41c0 -14 10 -26 19 -36c4 -5 57 -55 86 -83l95 -91c38 -39 68 -89 68 -144c0 -70 -27 -138 -77 -188c-42 -43 -97 -72 -157 -72c-34 0 -69 6 -93 30c-37 37 -55 87 -55 139c0 47 18 92 41 133 c31 55 72 104 117 149c-25 23 -48 46 -68 72c-11 16 -24 32 -24 51c0 13 5 25 11 37c8 16 19 31 31 44c15 18 35 28 56 35c27 9 55 13 84 13c27 0 51 -3 80 -7zM238 422c-70 -72 -105 -134 -105 -210c0 -53 17 -105 54 -143c18 -17 42 -25 67 -25c30 0 58 18 79 39 c29 29 41 81 41 126c0 34 -17 64 -35 92c-26 43 -65 85 -101 121'], + 0x3B5: [471,15,486,78,430,'392 430l-30 -65l-11 1c-5 14 -13 26 -23 36c-20 19 -46 28 -73 28c-26 0 -50 -11 -69 -30c-12 -12 -17 -29 -17 -47c0 -21 3 -41 18 -57c19 -18 45 -20 70 -20c1 0 34 -1 51 -2l-21 -47c-15 4 -30 5 -46 5c-28 0 -55 -10 -75 -30c-14 -13 -18 -33 -18 -51 c0 -33 16 -60 39 -82c27 -25 59 -31 93 -31c22 0 43 7 64 16c24 11 48 27 69 44l9 -2l8 -14c-53 -57 -125 -97 -204 -97c-40 0 -84 12 -113 41c-23 23 -35 52 -35 83c0 33 11 67 34 90c15 14 32 27 51 36v7c-23 14 -43 48 -43 78c0 43 16 77 43 104c32 32 79 47 124 47 c39 0 74 -19 105 -41'], + 0x3B6: [695,136,512,84,491,'419 -136l-21 12c15 27 34 59 34 85c0 11 -8 20 -16 27c-10 9 -22 11 -35 11c-18 0 -36 0 -54 -2c-27 -4 -71 -7 -81 -7c-40 0 -82 6 -111 35c-39 39 -51 95 -51 149c0 66 24 129 55 188c41 76 96 143 157 204c17 16 34 32 52 47l-1 7l-91 8c-24 4 -47 10 -67 23 c-1 1 -2 4 -2 4c0 1 0 2 2 4l28 35c2 1 3 1 5 1s1 0 8 -4c71 -47 131 -52 234 -36v-19c-54 -17 -103 -49 -143 -90c-91 -90 -160 -206 -160 -336c0 -48 16 -96 50 -131c26 -26 63 -32 99 -32c18 0 38 0 53 2c16 1 39 4 48 4c14 0 28 -1 41 -4c10 -3 19 -6 26 -13 c8 -8 13 -19 13 -30c0 -22 -9 -43 -19 -62c-14 -29 -33 -55 -53 -80'], + 0x3B7: [466,199,560,-32,479,'397 -199l-9 11c1 27 1 208 1 313c0 63 0 158 -3 190c-2 25 -5 51 -23 69c-16 15 -38 18 -59 18c-22 0 -42 -6 -62 -15c-26 -11 -50 -26 -74 -43c-2 -24 -2 -107 -2 -160c0 -46 4 -113 7 -170l-72 -25l-9 10v335c0 22 0 50 -14 64c-7 7 -16 10 -25 10 c-19 0 -47 -19 -69 -33l-16 18c23 19 47 37 74 52c17 9 36 18 56 18c19 0 39 -5 53 -19c13 -13 15 -32 16 -51l11 -2c33 22 68 41 105 56c28 11 57 19 86 19c25 0 50 -6 67 -24c17 -16 20 -41 23 -64c3 -33 3 -116 3 -174c0 -123 2 -246 17 -368'], + 0x3B8: [695,11,554,59,486,'231 -11c-36 0 -71 13 -96 38c-31 31 -46 72 -56 114c-16 60 -20 122 -20 184c0 60 2 122 20 180c15 46 37 87 72 122c43 43 105 68 166 68c37 0 73 -14 99 -40c29 -29 42 -69 52 -108c14 -59 18 -119 18 -179s-6 -120 -23 -177c-14 -44 -34 -87 -67 -120 c-45 -45 -101 -82 -165 -82zM142 370h254l5 7c-3 55 -8 108 -20 161c-6 30 -18 62 -40 84c-19 19 -43 26 -69 26c-29 0 -55 -13 -75 -33c-27 -27 -42 -70 -50 -106c-10 -46 -11 -86 -11 -132zM398 333h-255l-7 -7c0 -49 5 -101 18 -147c9 -35 23 -70 49 -95 c23 -23 53 -37 85 -37c27 0 49 17 67 36c23 23 31 56 38 88c10 48 13 103 13 154'], + 0x3B9: [474,9,334,101,332,'319 109l13 -14c-23 -29 -49 -56 -79 -77c-21 -14 -45 -27 -71 -27c-23 0 -44 14 -57 33c-17 22 -24 50 -24 78v347l81 25l11 -10c-15 -89 -17 -179 -17 -269c0 -26 2 -52 7 -78c4 -16 8 -32 20 -44c8 -8 21 -9 32 -9c14 0 26 6 38 13c14 9 25 19 37 31'], + 0x3BA: [472,4,555,112,516,'504 441l-1 -15c-89 -38 -202 -103 -245 -154c-1 -2 -1 -4 -1 -6l4 -11c80 -75 166 -143 255 -207l-1 -14l-67 -36c-85 72 -175 148 -251 218l-9 -4c0 -61 3 -127 6 -190l-63 -26l-16 5c2 146 3 292 -3 438l79 26l5 -6c-2 -58 -6 -164 -7 -195l6 -2 c76 82 164 150 258 210'], + 0x3BB: [690,11,541,21,510,'422 -4l-146 384c-1 3 -4 6 -8 6c-4 -1 -6 -4 -7 -7c-42 -89 -126 -268 -126 -269c-12 -25 -26 -66 -37 -99l-59 -17l-18 13l218 409l13 26c-2 18 -21 79 -42 123c-10 21 -22 41 -39 58c-12 13 -31 23 -49 23c-15 0 -47 -7 -70 -12l-8 25c44 16 94 31 146 31 c33 0 58 -16 90 -78c22 -44 52 -151 76 -216c18 -52 53 -149 154 -369c2 -4 -1 -12 -1 -12l-73 -26'], + 0x3BC: [466,199,617,96,635,'485 466l8 -11c-3 -41 -6 -92 -6 -123v-167c0 -18 2 -36 6 -54c4 -12 8 -25 18 -34c7 -7 18 -11 28 -11c23 0 53 18 77 33l11 -2l8 -14c-25 -23 -52 -46 -83 -62c-21 -12 -44 -22 -69 -22c-17 0 -36 1 -48 13c-13 13 -18 37 -21 56l-8 5c-58 -33 -134 -76 -183 -76 c-32 0 -45 10 -62 30l-6 -2c0 -66 6 -141 19 -204l-53 -20l-12 6c2 92 4 184 4 276v189c0 55 -13 140 -17 164l83 26l9 -7v-269c0 -41 5 -84 35 -114c15 -15 38 -15 58 -15c21 0 59 11 87 29c16 11 26 18 41 34c1 48 3 121 3 142c0 58 -2 115 -4 172'], + 0x3BD: [471,8,599,15,561,'561 444l-136 -274c-24 -48 -46 -96 -66 -146l-56 -32l-7 7c-12 81 -28 162 -55 239c-18 52 -39 99 -78 138c-16 15 -39 26 -61 26c-31 0 -52 -8 -67 -18l-20 26c35 39 78 61 131 61c30 0 63 -11 84 -32c55 -55 92 -219 118 -338h5c24 50 50 107 69 159 c22 62 39 131 56 198l23 10l57 -16'], + 0x3BE: [694,137,553,74,545,'471 -137l-21 15c15 25 34 55 34 79c0 13 -7 25 -16 34c-16 16 -41 17 -63 17s-55 -3 -82 -6c-35 -4 -98 -10 -104 -10c-37 0 -76 7 -103 34s-42 63 -42 100c0 54 24 104 61 141c35 35 79 59 124 73v6c-31 7 -63 19 -87 42c-16 16 -21 40 -21 63c0 35 12 71 38 96 c28 29 62 51 98 65l-1 8c-44 1 -91 6 -132 28l28 46h8c39 -32 90 -45 140 -45c31 0 66 5 98 11v-28c-60 -7 -123 -22 -166 -66c-23 -23 -33 -56 -33 -88c0 -26 6 -53 25 -72c15 -14 34 -24 54 -31c26 -9 53 -14 81 -17v-23c-67 0 -137 -15 -185 -63 c-31 -31 -45 -74 -45 -117c0 -30 11 -58 32 -79c27 -27 67 -30 104 -28c55 4 127 10 163 10c27 0 56 -4 76 -24c8 -7 11 -17 11 -27c0 -21 -9 -41 -19 -60c-15 -30 -35 -57 -55 -84'], + 0x3BF: [465,14,563,56,497,'150 316c-6 -25 -8 -51 -8 -77c0 -66 12 -141 63 -186c19 -17 45 -26 72 -26c34 0 65 12 88 37c19 21 29 48 35 75s8 54 8 81c0 64 -8 136 -58 180c-20 19 -47 26 -74 26c-30 0 -68 -14 -94 -42c-18 -19 -26 -43 -32 -68zM250 -14c-44 0 -92 10 -125 40 c-48 43 -65 107 -69 170c0 69 7 143 55 195c47 52 118 74 188 74c47 0 94 -9 130 -41c51 -47 68 -118 68 -185c0 -65 -14 -131 -58 -180c-47 -53 -119 -73 -189 -73'], + 0x3C0: [488,5,609,21,628,'186 460h323c39 0 77 10 111 28l8 -7l-35 -59c-34 -16 -71 -27 -109 -28l-7 -7c-2 -35 -6 -71 -6 -105c0 -73 0 -176 34 -209c7 -7 19 -10 29 -10c18 0 34 6 49 16l6 -2l10 -17c-19 -17 -39 -33 -62 -45c-16 -8 -33 -15 -51 -15c-19 0 -41 0 -53 12c-14 13 -19 32 -23 50 c-7 28 -8 57 -8 85c0 81 6 161 16 241l-6 6h-143c-27 -130 -72 -261 -116 -389l-11 -10l-55 15l-1 13c67 116 121 259 146 371h-74c-25 0 -51 0 -69 -18c-14 -14 -22 -33 -29 -51l-18 -46l-21 9l28 113c4 13 11 26 21 35c11 11 26 15 41 18c25 5 50 6 75 6'], + 0x3C1: [477,189,548,90,499,'121 -189l-20 8c-6 104 -11 209 -11 314c0 61 3 152 16 197c8 27 24 66 57 95c41 36 98 52 152 52c50 0 99 -18 135 -54c19 -18 29 -43 36 -68c10 -34 13 -69 13 -104c0 -71 -24 -141 -75 -191c-33 -34 -81 -63 -129 -63c-43 0 -77 17 -108 48c-9 9 -16 18 -24 30l-7 -1 c3 -80 7 -152 27 -230c0 -1 -4 -9 -6 -13zM161 231c0 -32 2 -64 11 -95c6 -22 16 -42 30 -58c17 -18 39 -31 64 -31c35 0 68 12 93 37c39 39 52 95 52 150c0 36 -2 73 -11 108c-5 24 -17 52 -32 66c-18 16 -42 33 -68 33c-32 0 -62 -11 -85 -34c-20 -19 -33 -48 -41 -74 c-10 -33 -13 -68 -13 -102'], + 0x3C3: [476,5,605,82,608,'261 462l342 14l5 -10l-14 -57l-7 -6c-64 13 -133 21 -199 29l-1 -6c3 -2 21 -13 46 -38c42 -42 56 -101 56 -160s-14 -120 -57 -163c-47 -47 -98 -70 -175 -70c-53 0 -90 21 -122 53c-19 20 -31 44 -39 70c-10 33 -14 68 -14 103c0 62 10 132 52 178c35 39 74 61 127 63 zM280 429c-28 0 -51 -13 -71 -32c-36 -37 -44 -93 -44 -144c0 -35 3 -69 14 -103c8 -26 17 -52 41 -76c23 -23 44 -38 74 -38c31 0 54 15 73 33c15 15 28 45 33 63c7 28 10 56 10 84c0 36 -3 73 -13 108c-7 25 -21 54 -40 73c-20 20 -49 32 -77 32'], + 0x3C4: [484,9,513,15,519,'142 461h254c38 0 76 7 110 23l13 -9l-43 -67c-27 -6 -55 -10 -83 -10h-68l-9 -8c-2 -34 -11 -111 -11 -165c0 -17 0 -125 29 -153c9 -8 20 -15 32 -15c19 0 45 15 61 25l9 -2l9 -14c-19 -18 -55 -46 -78 -58c-18 -10 -37 -17 -57 -17c-18 0 -34 9 -47 22 c-12 12 -20 30 -23 47c-6 27 -8 54 -8 82c0 83 8 166 15 249l-7 7h-75c-28 0 -65 -2 -85 -22c-13 -14 -30 -60 -43 -94l-22 3c4 19 26 121 39 141c20 30 59 35 88 35'], + 0x3C5: [472,12,587,-12,519,'387 398l-4 18l42 51l20 4c45 -48 74 -109 74 -175c0 -81 -36 -157 -93 -214c-55 -55 -126 -94 -205 -94c-27 0 -55 7 -74 27c-27 27 -34 66 -34 104v211c0 23 -3 54 -12 68c-6 8 -16 16 -26 16c-26 0 -50 -18 -71 -35l-16 22c23 21 47 39 74 53c19 10 40 18 63 18 c17 0 34 -6 46 -18c8 -8 12 -19 15 -30c4 -16 5 -32 5 -48c0 -37 -3 -74 -4 -110c-1 -26 -1 -57 -1 -85c0 -21 2 -42 7 -62c4 -15 10 -29 21 -40c17 -17 41 -28 66 -28c43 0 65 10 90 28c57 41 74 120 74 174s-18 107 -57 145'], + 0x3C6: [467,197,763,91,685,'320 -183l2 168l-7 7c-59 6 -109 16 -161 76c-45 52 -63 112 -63 181c0 57 25 110 65 150c33 33 74 55 118 68l12 -22c-26 -12 -47 -22 -67 -42c-34 -33 -48 -88 -48 -136c0 -67 13 -145 61 -193c38 -37 64 -46 83 -46l7 7v205c0 61 8 126 66 176c43 37 94 48 136 48 c41 0 82 -13 111 -42c37 -38 50 -92 50 -145c0 -69 -19 -138 -68 -187c-58 -58 -135 -86 -216 -97l-7 -8c0 -54 3 -107 8 -161l-69 -21zM401 26c54 2 103 26 141 65c21 21 35 48 44 77c12 35 16 72 16 109c0 12 -6 88 -38 120c-17 17 -36 28 -59 28c-26 0 -43 -3 -67 -19 c-30 -22 -44 -93 -44 -141v-232'], + 0x3C7: [466,197,576,-18,564,'288 206l187 250l20 4l33 -32l1 -7l-179 -206c-16 -19 -33 -38 -48 -59c43 -95 101 -227 149 -274c9 -10 23 -14 36 -14c24 0 48 4 69 15l8 -23c-27 -16 -54 -31 -83 -42c-18 -8 -36 -15 -55 -15c-18 0 -32 12 -45 24c-21 22 -34 49 -47 76c-20 41 -52 118 -78 180h-10 c-34 -51 -65 -101 -95 -152c-22 -38 -43 -76 -59 -116l-17 -6l-50 30c68 100 137 199 211 295c0 1 -73 143 -109 215c-8 17 -21 36 -34 49c-8 8 -20 13 -31 13c-18 0 -46 -22 -65 -37l-15 21l63 48c19 15 44 23 69 23c15 0 30 -6 40 -17c15 -15 25 -32 34 -51l90 -192h10'], + 0x3C8: [695,189,754,-7,684,'353 -182l4 176l-7 8c-40 0 -79 3 -117 11c-26 5 -52 12 -71 30c-33 34 -44 82 -44 129v153c0 16 -2 33 -6 49c-3 11 -7 23 -15 31c-6 6 -14 10 -23 10c-19 0 -44 -17 -64 -30l-17 21c24 19 46 35 73 48c20 10 40 18 62 18c16 0 35 -4 48 -20c10 -13 16 -42 16 -94v-129 c0 -80 12 -121 41 -149c22 -21 73 -44 117 -44l7 6v315c0 96 -6 204 -12 305l80 33l7 -7c-2 -30 -2 -194 -2 -292v-352l6 -7c63 5 116 59 130 77c36 44 47 97 47 153c0 54 -27 103 -63 142l3 13l44 48l21 -3c41 -51 66 -115 66 -181c0 -72 -31 -143 -82 -194 c-46 -46 -98 -74 -165 -88l-7 -8c0 -50 2 -101 9 -150l-76 -35'], + 0x3C9: [472,13,851,67,781,'649 421l42 48l14 3c51 -40 76 -102 76 -166c0 -90 -36 -177 -100 -241c-41 -40 -93 -69 -151 -69c-31 0 -62 6 -84 28c-13 13 -26 40 -37 63h-12c-26 -27 -51 -52 -84 -72c-25 -15 -59 -28 -88 -28c-37 0 -73 12 -99 38c-40 39 -59 95 -59 151c0 88 23 178 87 242 c23 23 55 37 87 48l16 -14c-13 -10 -28 -21 -39 -32c-49 -49 -69 -119 -69 -188c0 -29 3 -59 11 -87c7 -22 16 -44 33 -60c20 -20 47 -35 76 -35c34 0 65 18 89 42c16 16 22 37 27 59c8 32 10 65 10 98v189l75 28l6 -7c-9 -59 -9 -130 -9 -195c0 -37 3 -81 13 -116 c7 -26 16 -46 35 -64c16 -16 38 -23 60 -23c36 0 65 15 90 40c36 35 49 93 49 143c0 61 -20 124 -68 165'], + 0x3D1: [698,14,552,-16,522,'391 370c0 52 -6 102 -22 151c-13 41 -31 80 -62 110c-16 17 -34 28 -58 28c-18 0 -36 -6 -50 -19c-17 -17 -27 -39 -27 -63c0 -55 26 -106 64 -145c41 -41 93 -62 150 -67zM108 118v110c0 25 0 55 -16 71c-7 7 -17 13 -28 13c-22 0 -47 -15 -69 -28l-11 20 c22 19 47 37 74 50c21 10 43 18 66 18c15 0 32 -9 42 -20c12 -12 16 -38 16 -55v-108c0 -53 1 -80 6 -100c3 -13 8 -26 17 -36c13 -12 28 -19 46 -19c29 0 52 11 73 31c28 29 43 65 54 103c14 52 17 105 17 158l-4 5c-40 4 -75 11 -112 25c-31 12 -61 28 -85 52 c-38 38 -64 89 -64 143c0 39 13 77 41 105c29 28 68 42 108 42c34 0 66 -16 90 -40c33 -33 59 -80 72 -124c18 -56 24 -110 24 -167l4 -5l53 -1v-27h-52l-4 -4c0 -53 -7 -100 -24 -150c-15 -43 -41 -87 -73 -119c-43 -43 -97 -75 -157 -75c-28 0 -58 13 -78 33 c-10 10 -15 24 -19 38c-6 20 -7 40 -7 61'], + 0x3D5: [694,192,727,66,659,'405 -156l-72 -36l-17 10c1 57 5 112 5 169l-8 9c-39 1 -75 5 -113 17c-31 9 -61 24 -85 47c-39 40 -49 98 -49 152c0 72 24 142 74 193c21 21 47 37 74 47c32 12 81 21 98 21l9 9c0 57 -2 114 -6 170l82 42l7 -8c-5 -67 -8 -135 -8 -203l8 -10c39 0 77 -4 117 -15 c27 -7 58 -20 78 -40c42 -42 60 -100 60 -159c0 -67 -21 -135 -69 -184c-50 -50 -117 -71 -187 -73l-9 -10c0 -49 4 -99 11 -148zM402 33c47 3 86 29 118 62c44 44 57 106 57 166c0 51 -11 103 -47 140c-34 34 -80 41 -127 42l-9 -9v-392zM312 441c-31 0 -80 -13 -110 -43 c-41 -41 -53 -100 -53 -156c0 -62 16 -124 60 -167c27 -27 65 -46 104 -46l8 9v395'], + 0x3D6: [541,12,875,74,790,'478 330l8 -12v-154c0 -30 13 -62 32 -81s43 -27 70 -27c32 0 61 15 84 37c17 18 29 40 36 63c9 30 15 62 15 93c-1 59 -12 104 -64 158c-27 28 -58 41 -94 51c-53 14 -108 19 -162 19c-90 0 -157 -11 -194 -25c-46 -17 -85 -48 -120 -83l-15 16c33 39 63 76 108 104 c42 26 105 52 260 52c61 0 120 -8 178 -24c42 -11 85 -31 116 -62c39 -39 54 -95 54 -149c0 -93 -38 -181 -104 -246c-39 -39 -86 -72 -142 -72c-33 0 -65 11 -89 35c-17 17 -30 37 -38 60l-8 1c-49 -53 -112 -92 -185 -92c-34 0 -65 15 -89 39c-43 42 -54 104 -54 163 c0 58 28 111 69 152c14 14 36 28 55 41l10 -21c-38 -37 -55 -89 -55 -142s9 -109 47 -147c17 -16 47 -30 65 -30c27 0 59 8 82 31c17 18 28 41 35 64c9 31 13 63 13 94c0 22 -3 44 -5 66'], + 0x3F5: [471,11,550,88,490,'279 256l119 2l-14 -42c-30 1 -94 1 -141 1c-1 0 -43 -2 -69 -3l-5 -6c2 -49 20 -97 55 -132c11 -11 26 -17 41 -21c21 -6 42 -8 64 -8c51 0 102 16 141 49l8 -1l12 -20c-32 -25 -67 -48 -105 -64c-30 -12 -61 -22 -94 -22c-52 0 -106 12 -144 49c-43 44 -59 105 -59 165 c0 75 28 147 81 199c45 45 105 69 168 69c52 0 101 -22 138 -59l-37 -53l-13 -2c-10 14 -24 34 -32 41c-23 23 -57 30 -89 30c-34 0 -66 -13 -90 -37c-34 -34 -42 -82 -43 -128l6 -6c37 0 101 -1 102 -1'], + 0x2016: [738,167,392,86,306,'126 -159l-40 -8v897l40 8v-897zM306 -159l-40 -8v897l40 8v-897'], + 0x2018: [709,-406,214,45,167,'119 532l32 -49c5 -8 16 -27 16 -35c0 -10 -11 -20 -19 -28c-8 -7 -22 -14 -29 -14c-8 0 -21 12 -27 20c-26 34 -47 72 -47 115c0 25 12 47 25 68c21 35 45 68 70 100l14 -14c-15 -26 -28 -52 -40 -79c-6 -12 -9 -25 -9 -39c0 -16 5 -31 14 -45'], + 0x2019: [695,-395,214,44,163,'74 395l-16 11c14 24 29 49 38 72c6 15 10 31 10 47c0 14 -5 27 -13 39l-35 57c-6 10 -14 26 -14 33c0 8 8 16 14 22c10 9 24 19 34 19c8 0 23 -14 30 -25c15 -21 26 -45 34 -69c5 -12 7 -25 7 -37c0 -29 -13 -55 -27 -80c-18 -31 -42 -59 -62 -89'], + 0x2026: [119,15,768,77,691,'77 52c0 37 30 67 67 67s67 -30 67 -67s-30 -67 -67 -67s-67 30 -67 67zM317 52c0 37 30 67 67 67s67 -30 67 -67s-30 -67 -67 -67s-67 30 -67 67zM557 52c0 37 30 67 67 67s67 -30 67 -67s-30 -67 -67 -67s-67 30 -67 67'], + 0x2032: [782,-422,257,48,211,'205 723l-124 -290c-4 -9 -5 -11 -9 -11c-6 0 -24 5 -24 13c0 0 3 8 3 9l83 306c5 19 18 32 37 32c22 0 40 -17 40 -37c0 -7 -3 -13 -6 -22'], + 0x2033: [782,-422,490,48,404,'205 723l-124 -290c-4 -9 -5 -11 -9 -11c-6 0 -24 5 -24 13c0 0 3 8 3 9l83 306c5 19 18 32 37 32c22 0 40 -17 40 -37c0 -7 -3 -13 -6 -22zM397 723l-124 -290c-4 -9 -5 -11 -9 -11c-5 0 -24 5 -24 13c0 0 3 8 3 9l84 306c5 19 17 32 37 32c21 0 40 -17 40 -37 c0 -7 -3 -13 -7 -22'], + 0x2034: [782,-422,724,48,596,'205 723l-124 -290c-4 -9 -5 -11 -9 -11c-6 0 -24 5 -24 13c0 0 3 8 3 9l83 306c5 19 18 32 37 32c22 0 40 -17 40 -37c0 -7 -3 -13 -6 -22zM397 723l-124 -290c-4 -9 -5 -11 -9 -11c-5 0 -24 5 -24 13c0 0 3 8 3 9l84 306c5 19 17 32 37 32c21 0 40 -17 40 -37 c0 -7 -3 -13 -7 -22zM590 723l-124 -290c-4 -9 -5 -11 -9 -11c-6 0 -24 5 -24 13c0 0 3 8 3 9l83 306c5 19 18 32 37 32c22 0 40 -17 40 -37c0 -7 -3 -13 -6 -22'], + 0x2035: [782,-422,241,30,193,'36 723c-3 9 -6 15 -6 22c0 20 18 37 40 37c20 0 32 -13 37 -32l83 -306c0 -1 3 -9 3 -9c0 -8 -18 -13 -24 -13c-4 0 -5 2 -9 11'], + 0x2044: [720,192,501,39,463,'458 715l5 -11l-389 -896l-32 8l-3 14l386 888l11 2'], + 0x2057: [782,-422,958,48,789,'205 723l-124 -290c-4 -9 -5 -11 -9 -11c-6 0 -24 5 -24 13c0 0 3 8 3 9l83 306c5 19 18 32 37 32c22 0 40 -17 40 -37c0 -7 -3 -13 -6 -22zM397 723l-124 -290c-4 -9 -5 -11 -9 -11c-5 0 -24 5 -24 13c0 0 3 8 3 9l84 306c5 19 17 32 37 32c21 0 40 -17 40 -37 c0 -7 -3 -13 -7 -22zM590 723l-124 -290c-4 -9 -5 -11 -9 -11c-6 0 -24 5 -24 13c0 0 3 8 3 9l83 306c5 19 18 32 37 32c22 0 40 -17 40 -37c0 -7 -3 -13 -6 -22zM782 723l-124 -290c-4 -9 -4 -11 -9 -11s-23 5 -23 13c0 0 2 8 2 9l84 306c4 19 17 32 37 32 c21 0 40 -17 40 -37c0 -7 -3 -13 -7 -22'], + 0x20D7: [750,-479,287,0,418,'346 595h-346v40h346l-79 94l21 21l130 -136l-130 -135l-21 21'], + 0x210F: [681,10,621,20,637,'298 516h-278l7 40h277zM624 107l13 -10v-11c-28 -30 -51 -53 -84 -72c-23 -14 -45 -24 -73 -24c-19 0 -38 10 -48 26c-12 20 -18 46 -18 73c0 54 4 141 4 177c0 24 -1 47 -5 72c-3 17 -11 36 -25 48c-17 12 -34 18 -56 18s-50 -8 -70 -16c-28 -14 -47 -26 -72 -44 c0 -110 -2 -220 -2 -328l-72 -22l-6 10c7 132 13 264 14 396c0 52 0 125 -3 156c-2 20 -4 42 -17 60c-8 12 -50 20 -77 26v18l5 4l158 17l6 -7c-4 -85 -4 -184 -4 -276l8 -8c36 22 73 42 113 58c28 10 55 18 88 18c15 0 47 -10 65 -28c13 -12 19 -30 21 -48 c3 -28 3 -88 3 -130c0 -44 -1 -108 1 -132c1 -16 3 -34 13 -50c7 -10 18 -16 30 -16c16 0 32 5 46 12c19 11 32 22 44 33'], + 0x2111: [686,27,554,28,533,'522 671l11 -16c-47 -44 -98 -82 -155 -112c-43 16 -100 37 -129 47c-19 6 -37 11 -57 11c-30 0 -59 -10 -80 -32c-29 -29 -53 -75 -67 -113l-17 11c13 35 32 78 48 112c11 23 26 49 43 67c26 30 56 40 95 40c42 0 104 -29 154 -53c17 -8 34 -16 53 -16c15 0 35 6 47 13 c22 11 39 27 54 41zM43 -16l-5 16c32 44 109 124 114 128c27 -58 32 -68 45 -81c17 -17 45 -29 69 -29c30 0 48 12 68 32c16 16 27 46 33 68c9 29 11 59 11 89c0 48 -5 89 -10 127c-4 33 -8 67 -8 95c0 12 1 23 2 34c40 44 89 90 140 122l12 -7c-20 -18 -39 -41 -53 -64 c-9 -16 -12 -32 -12 -50c0 -22 1 -54 3 -65c7 -51 12 -106 12 -154c0 -62 -14 -126 -59 -171c-57 -57 -131 -101 -213 -101c-37 0 -69 24 -96 48'], + 0x2113: [704,9,388,30,355,'338 122l17 -13l-28 -40c-17 -28 -58 -78 -113 -78c-25 0 -50 7 -68 25c-15 15 -28 35 -34 56c-8 33 -10 72 -12 105l-9 3l-46 -44l-15 18l66 74c-5 93 -3 189 16 280c13 62 32 118 75 164c20 20 52 32 80 32c15 0 34 -3 46 -14c19 -18 25 -44 25 -82 c0 -56 -22 -112 -46 -162c-36 -72 -77 -133 -127 -196c5 -61 14 -149 43 -180c12 -13 25 -19 43 -19c20 0 46 24 55 33zM170 302c78 105 119 200 119 304c0 32 -5 45 -12 55c-6 8 -14 11 -26 11c-9 0 -18 -6 -25 -15c-24 -29 -33 -65 -40 -102c-10 -55 -24 -162 -24 -251'], + 0x2118: [472,196,604,60,566,'285 59l47 43l7 -1c4 -15 11 -30 20 -38c10 -10 23 -14 36 -14c25 0 46 9 59 23c19 19 30 44 38 70c9 30 14 74 14 109c0 49 -8 99 -43 134c-16 16 -37 25 -59 25c-19 0 -29 -2 -57 -13c-39 -16 -102 -108 -142 -170c26 -45 52 -95 71 -143c3 -8 6 -16 9 -25zM198 464 l14 -10c-26 -33 -51 -69 -51 -112c0 -18 5 -35 11 -52c4 -9 7 -17 11 -25h9l18 26c28 44 79 122 149 159c26 14 58 22 87 22c28 0 57 -8 77 -28c36 -36 43 -89 43 -138c0 -93 -25 -188 -91 -255c-17 -16 -35 -31 -55 -42c-15 -9 -32 -15 -49 -15c-30 0 -57 15 -77 36 c4 -15 6 -29 6 -44c0 -51 -11 -105 -48 -142c-23 -23 -53 -40 -86 -40c-25 0 -49 8 -67 25c-28 28 -39 67 -39 106c0 35 11 69 21 101c15 46 55 129 65 148c-9 17 -17 31 -24 49c-9 24 -17 48 -17 73c0 66 42 121 93 158zM161 144c-30 -52 -51 -124 -51 -174 c0 -37 7 -77 34 -102c10 -10 23 -16 38 -16c18 0 37 5 50 18c20 21 27 51 27 79c0 27 -11 53 -22 77c-19 40 -43 80 -67 118h-9'], + 0x211C: [686,27,828,27,826,'432 348c21 11 70 33 115 40l129 75c-13 1 -27 6 -37 16c-7 7 -14 44 -16 69c-1 19 -7 37 -16 53c-8 16 -24 27 -42 27c-25 0 -52 -10 -69 -28c-25 -24 -44 -50 -66 -88c1 -5 5 -48 5 -61c0 -33 0 -69 -3 -103zM418 548l4 5c16 20 34 41 52 59c42 42 95 74 155 74 c22 0 44 -9 58 -26c15 -18 19 -45 22 -69c2 -16 1 -33 5 -50c3 -14 8 -28 47 -28c13 0 26 2 38 4l7 -13c-29 -11 -60 -27 -87 -41c-35 -18 -88 -47 -123 -75c51 0 76 -15 102 -37c3 -66 7 -170 16 -197c7 -22 15 -43 27 -63c7 -10 14 -22 26 -22c5 0 39 13 59 21v-16 l-133 -101l-64 117c1 31 3 60 3 89c0 98 -17 117 -29 129c-21 21 -54 35 -83 35c-23 0 -65 -11 -92 -19c-3 -22 -7 -45 -12 -67c-12 -51 -27 -94 -56 -138c-56 -45 -113 -100 -168 -146c-22 22 -60 53 -81 53c-31 0 -55 -18 -73 -42l-11 16c16 25 34 55 61 78 c16 14 33 28 56 28c12 0 34 -7 48 -17c18 -13 32 -26 46 -41c35 24 63 52 82 90c14 28 19 59 24 90c6 46 10 92 10 139s-1 127 -40 184c-26 39 -71 72 -118 72c-40 0 -56 -7 -79 -30c-16 -15 -18 -35 -18 -57c0 -12 21 -43 36 -60c11 -14 30 -37 40 -54c6 -11 13 -28 13 -38 c0 -29 -14 -52 -32 -72c-22 -25 -59 -46 -91 -62l-15 11c18 10 36 26 49 42c10 12 15 24 15 39c0 10 -7 19 -13 27c-9 13 -21 30 -31 43c-23 28 -41 52 -41 90c0 40 23 70 51 98c24 24 90 86 183 86c46 0 89 -34 119 -71c15 -18 27 -42 36 -67'], + 0x2127: [689,2,875,25,844,'34 627l-9 9l25 53c115 -9 231 -9 346 -1l-9 -58c-47 -11 -90 -36 -124 -70c-27 -26 -43 -61 -54 -97c-14 -47 -19 -96 -19 -144c0 -84 22 -169 82 -229c40 -40 97 -57 153 -57c62 0 126 17 170 62c31 30 51 69 65 110c16 49 23 101 23 153c0 81 -21 164 -79 223 c-29 29 -69 45 -110 53l21 55c110 -10 219 -14 329 -6l-17 -61c-61 3 -137 6 -190 11l-6 -15c26 -14 50 -30 71 -51c24 -25 40 -56 51 -90c13 -41 18 -85 18 -128c0 -95 -28 -190 -96 -257c-70 -71 -171 -94 -269 -94c-44 0 -89 5 -131 19c-35 12 -68 29 -94 55 c-60 60 -81 146 -81 230c0 93 23 189 90 256c29 28 58 51 95 66v12c-85 -4 -181 -9 -251 -9'], + 0x2135: [689,-1,774,78,689,'325 91l-14 -90h-216l25 90c2 52 3 105 12 147c8 37 57 106 101 150c-48 38 -135 108 -155 145v156h31c6 -66 47 -119 98 -160c80 -65 252 -203 253 -203v44c0 67 32 137 80 190c-24 0 -72 0 -82 11c-11 11 -16 14 -16 29v89h24c3 -11 8 -22 16 -30c9 -9 28 -9 43 -9h120 c23 0 44 -16 44 -39v-72l-15 -5c-11 14 -26 27 -44 27h-48c-23 -16 -54 -76 -60 -93c-14 -41 -16 -66 -16 -112c0 -28 19 -79 39 -99c39 -38 101 -83 144 -114l-21 -142h-17c-45 73 -139 161 -212 220l-183 148c-19 -17 -49 -61 -64 -86c-13 -21 -18 -42 -18 -73 c0 -50 38 -119 66 -119h85'], + 0x2190: [500,0,1000,57,945,'945 230h-818c38 -47 90 -126 115 -230h-40c-31 130 -113 220 -145 250c30 28 114 119 145 250h40c-25 -105 -78 -184 -115 -230h818v-40'], + 0x2191: [693,194,500,28,472,'270 617v-811h-40v811c-53 -45 -121 -88 -202 -109v40c79 21 161 71 222 145c55 -66 134 -122 222 -145v-40c-79 21 -148 63 -202 109'], + 0x2192: [500,0,1000,56,944,'874 230h-818v40h818c-38 47 -90 126 -115 230h40c31 -130 113 -220 145 -250c-30 -28 -114 -119 -145 -250h-40c25 105 78 184 115 230'], + 0x2193: [674,193,500,28,472,'270 674v-791c53 45 121 88 202 109v-40c-79 -21 -161 -71 -222 -145c-55 66 -134 122 -222 145v40c79 -21 148 -63 202 -109v791h40'], + 0x2194: [500,0,1000,57,944,'874 230h-747c38 -47 90 -126 115 -230h-40c-31 130 -113 220 -145 250c30 28 114 119 145 250h40c-25 -105 -78 -184 -115 -230h747c-38 47 -90 126 -115 230h40c31 -130 113 -220 145 -250c-30 -28 -114 -119 -145 -250h-40c25 105 78 184 115 230'], + 0x2195: [771,271,500,28,472,'270 695v-890c53 45 121 88 202 109v-40c-79 -21 -161 -71 -222 -145c-55 66 -134 122 -222 145v40c79 -21 148 -63 202 -109v890c-53 -45 -121 -88 -202 -109v40c79 21 161 71 222 145c55 -66 134 -122 222 -145v-40c-79 21 -148 63 -202 109'], + 0x2196: [767,193,1000,-17,943,'121 657l822 -822l-29 -28l-822 822c-11 -120 -62 -213 -81 -243l-28 28c73 122 73 235 73 280c45 0 158 0 280 73l28 -28c-29 -19 -117 -67 -243 -82'], + 0x2197: [767,193,1000,58,1018,'908 629l-822 -822l-28 29l822 822c-120 11 -213 62 -243 81l28 28c122 -73 235 -73 280 -73c0 -45 0 -158 73 -280l-28 -28c-19 29 -67 117 -82 243'], + 0x2198: [694,267,1000,57,1018,'880 -157l-823 823l29 28l823 -823c11 120 62 213 81 243l28 -28c-73 -122 -73 -235 -73 -280c-45 0 -158 0 -280 -73l-28 28c29 19 117 67 243 82'], + 0x2199: [694,267,1000,-17,944,'944 665l-823 -823c120 -11 213 -62 243 -81l-28 -28c-122 73 -235 73 -280 73c0 45 0 158 -73 280l28 28c19 -29 67 -117 82 -243l823 823'], + 0x21A6: [500,0,1000,56,944,'56 50v400h40v-180h778c-38 47 -90 126 -115 230h40c31 -130 113 -220 145 -250c-30 -28 -114 -119 -145 -250h-40c25 105 78 184 115 230h-778v-180h-40'], + 0x21A9: [554,0,1000,56,944,'782 270c67 0 122 55 122 122s-55 122 -122 122v40c89 0 162 -73 162 -162s-73 -162 -162 -162h-656c38 -47 90 -126 115 -230h-40c-31 130 -113 220 -145 250c30 28 114 119 145 250h40c-25 -105 -78 -184 -115 -230h656'], + 0x21AA: [554,0,1000,56,944,'218 270c-67 0 -122 55 -122 122s55 122 122 122v40c-89 0 -162 -73 -162 -162s73 -162 162 -162h656c-38 -47 -90 -126 -115 -230h40c31 130 113 220 145 250c-30 28 -114 119 -145 250h-40c25 -105 78 -184 115 -230h-656'], + 0x21BC: [500,-230,1000,56,945,'910 230h-854c0 12 0 17 1 19c1 1 2 2 16 15c29 23 112 102 129 236h40c-13 -110 -67 -187 -105 -230h773c17 0 35 0 35 -20s-17 -20 -35 -20'], + 0x21BD: [270,0,1000,56,945,'910 230h-773c34 -39 92 -115 105 -230h-40c-12 95 -60 179 -133 240c-12 11 -13 12 -13 30h854c17 0 35 0 35 -20s-17 -20 -35 -20'], + 0x21BE: [693,194,298,28,270,'28 693h20c55 -66 134 -122 222 -145v-40c-79 21 -148 63 -202 109v-776c0 -17 0 -35 -20 -35s-20 17 -20 35v776v76'], + 0x21BF: [693,194,298,28,270,'270 693v-76v-776c0 -18 0 -35 -20 -35s-20 18 -20 35v776c-54 -46 -123 -88 -202 -109v40c88 23 167 79 222 145h20'], + 0x21C0: [500,-230,1000,56,945,'945 230h-854c-17 0 -35 0 -35 20s17 20 35 20h773c-34 39 -92 115 -105 230h40c12 -95 60 -179 133 -240c12 -11 13 -12 13 -30'], + 0x21C1: [270,0,1000,56,945,'864 230h-773c-17 0 -35 0 -35 20s17 20 35 20h854c0 -12 0 -17 -1 -19c-1 -1 -2 -2 -16 -15c-29 -23 -112 -102 -129 -236h-40c13 110 67 187 105 230'], + 0x21C2: [693,194,298,28,270,'28 -194v76v776c0 18 0 35 20 35s20 -18 20 -35v-776c54 46 123 88 202 109v-40c-88 -23 -167 -79 -222 -145h-20'], + 0x21C3: [693,194,298,28,270,'270 -194h-20c-55 66 -134 122 -222 145v40c79 -21 148 -63 202 -109v776c0 17 0 35 20 35s20 -17 20 -35v-776v-76'], + 0x21CB: [599,98,999,55,944,'863 132h-773c-17 0 -35 0 -35 20s17 20 35 20h854c0 -12 0 -17 -1 -19c-1 -1 -2 -2 -16 -15c-29 -23 -112 -102 -129 -236h-40c13 110 67 187 105 230zM909 329h-854c0 12 0 17 1 19c1 1 2 2 16 15c29 23 112 102 129 236h40c-13 -110 -67 -187 -105 -230h773 c17 0 35 0 35 -20s-17 -20 -35 -20'], + 0x21CC: [599,98,999,55,944,'136 132h773c17 0 35 0 35 20s-17 20 -35 20h-854c0 -12 0 -17 1 -19c1 -1 2 -2 16 -15c29 -23 112 -102 129 -236h40c-13 110 -67 187 -105 230zM90 329h854c0 12 0 17 -1 19c-1 1 -2 2 -16 15c-29 23 -112 102 -129 236h-40c13 -110 67 -187 105 -230h-773 c-17 0 -35 0 -35 -20s17 -20 35 -20'], + 0x21D0: [598,98,1000,55,922,'55 250c146 72 258 196 313 348h40c-31 -85 -78 -163 -138 -230h652v-40h-691c-31 -29 -64 -55 -99 -78c35 -23 68 -49 99 -78h691v-40h-652c60 -67 107 -145 138 -230h-40c-55 152 -167 276 -313 348'], + 0x21D1: [694,174,667,12,652,'332 694c61 -143 176 -255 320 -313v-40c-75 30 -143 73 -201 127v-642h-40v682c-30 32 -56 68 -79 106c-22 -38 -49 -74 -78 -106v-682h-40v642c-58 -54 -127 -97 -202 -127v40c145 58 260 170 320 313'], + 0x21D2: [598,98,1000,76,943,'943 250c-146 -72 -258 -196 -313 -348h-40c31 85 78 163 138 230h-652v40h691c31 29 64 55 99 78c-35 23 -68 49 -99 78h-691v40h652c-60 67 -107 145 -138 230h40c55 -152 167 -276 313 -348'], + 0x21D3: [674,194,667,12,652,'332 -194c-60 143 -175 255 -320 313v40c75 -30 144 -73 202 -127v642h40v-682c29 -32 56 -68 78 -106c23 38 49 74 79 106v682h40v-642c58 54 126 97 201 127v-40c-144 -58 -259 -170 -320 -313'], + 0x21D4: [598,98,1000,33,965,'965 250c-123 -83 -214 -206 -257 -348h-41c26 83 66 161 118 230h-572c52 -69 92 -147 118 -230h-41c-43 142 -134 265 -257 348c123 83 214 206 257 348h41c-26 -83 -66 -161 -118 -230h572c-52 69 -92 147 -118 230h41c43 -142 134 -265 257 -348zM818 172 c25 28 52 54 81 78c-29 24 -56 50 -81 78h-638c-25 -28 -52 -54 -81 -78c29 -24 56 -50 81 -78h638'], + 0x21D5: [772,272,667,12,652,'332 -272c-72 121 -185 213 -320 257v41c74 -25 142 -62 202 -109v666c-60 -47 -128 -84 -202 -109v41c135 44 248 136 320 257c72 -121 186 -213 320 -257v-41c-73 25 -141 62 -201 109v-666c60 47 128 84 201 109v-41c-134 -44 -248 -136 -320 -257zM254 -117 c28 -26 55 -55 78 -86c24 31 50 60 79 86v734c-29 26 -55 55 -79 86c-23 -31 -50 -60 -78 -86v-734'], + 0x2200: [681,9,555,1,552,'126 451h301l88 230l37 -14l-257 -676h-37l-257 676l38 14zM142 411l135 -357l135 357h-270'], + 0x2202: [699,7,560,79,485,'101 548l-18 7c13 38 30 76 61 102c31 27 71 42 113 42c54 0 108 -30 142 -71c38 -46 59 -96 73 -155c11 -48 13 -102 13 -151c0 -101 -15 -214 -97 -283c-33 -28 -74 -46 -116 -46c-58 0 -111 9 -146 51c-34 42 -47 112 -47 159c0 76 24 156 83 206c41 34 92 48 144 48 c9 0 17 0 25 -1c11 -1 37 -7 55 -12l4 4c-13 52 -28 98 -59 134c-29 35 -65 60 -111 60c-37 0 -58 -12 -77 -32c-17 -18 -31 -37 -42 -62zM383 125c18 51 25 107 25 161c0 40 -4 80 -12 119c-25 11 -52 20 -79 20c-32 0 -63 -14 -88 -35c-53 -45 -66 -120 -66 -185 c0 -26 7 -92 39 -130c20 -23 51 -42 83 -42c23 0 38 7 56 21c21 18 34 46 42 71'], + 0x2203: [694,0,555,75,498,'89 327v40h369v287h-383v40h423v-694h-423v40h383v287h-369'], + 0x2204: [800,112,555,65,498,'484 795l5 -11l-39 -90h48v-694h-349l-49 -112l-32 8l-3 14l39 90h-29v40h47l124 287h-157v40h175l125 287h-314v40h331l45 104l11 2zM291 327l-125 -287h292v287h-167zM433 654l-125 -287h150v287h-25'], + 0x2205: [720,192,742,55,687,'215 702v-450v450zM55 254c0 174 142 316 316 316c39 0 77 -7 112 -20l73 168l11 2l22 -5l5 -11l-74 -171c99 -54 167 -159 167 -279c0 -174 -142 -316 -316 -316c-36 0 -70 6 -102 17l-64 -147l-32 8l-3 14l61 141c-104 51 -176 159 -176 283zM467 513 c-30 11 -62 17 -96 17c-152 0 -276 -124 -276 -276c0 -108 62 -201 152 -247zM504 496l-219 -504c27 -9 56 -14 86 -14c152 0 276 124 276 276c0 104 -58 195 -143 242'], + 0x2207: [696,4,713,30,689,'356 21l-58 -25c-44 132 -91 257 -143 385c-37 90 -81 182 -125 267l1 16l61 32c198 -13 397 -21 595 -7l2 -42zM157 642l-6 -9c41 -94 201 -494 201 -495h11c95 164 175 321 255 490l-3 12c-152 -3 -306 2 -458 2'], + 0x2208: [541,41,666,83,561,'561 270v-40h-437c11 -131 126 -231 264 -231h173v-40h-173c-165 0 -305 127 -305 291s140 291 305 291h173v-40h-173c-138 0 -253 -100 -264 -231h437'], + 0x2209: [720,192,666,83,561,'561 270v-40h-222l-85 -197c39 -22 85 -34 134 -34h173v-40h-173c-54 0 -106 14 -150 38l-82 -189l-32 8l-3 14l82 189c-72 52 -120 135 -120 231c0 164 140 291 305 291h42l77 177l11 2l22 -5l5 -11l-71 -163h87v-40h-104l-100 -231h204zM312 270l101 231h-25 c-138 0 -253 -100 -264 -231h188zM219 56l76 174h-171c6 -70 42 -132 95 -174'], + 0x220B: [541,41,666,103,581,'103 230v40h438c-11 131 -126 231 -264 231h-174v40h174c165 0 304 -127 304 -291s-139 -291 -304 -291h-174v40h174c138 0 253 100 264 231h-438'], + 0x2212: [276,-236,756,46,710,'704 236h-658l7 40h657'], + 0x2213: [586,74,755,46,710,'396 276h313l-5 -40h-308v-303l-40 -7v310h-310l7 40h303v270h-310l7 40h657l-6 -40h-308v-270'], + 0x2215: [720,192,0,39,463,'458 715l5 -11l-389 -896l-32 8l-3 14l386 888l11 2'], + 0x2216: [722,192,501,39,463,'428 -192l-389 896l5 11l31 7l388 -893l-3 -13'], + 0x2217: [514,-26,482,30,452,'288 26h-80c12 76 16 136 18 222c-54 -42 -106 -88 -154 -144l-42 70c68 34 122 70 174 106c-58 42 -112 74 -170 104l54 56c44 -42 86 -80 136 -118c0 64 0 126 -16 192h80c-14 -66 -18 -124 -22 -190c50 40 96 82 136 124l50 -62c-64 -30 -120 -64 -176 -104 c62 -46 120 -86 176 -112l-52 -58c-34 38 -82 82 -134 122c2 -70 6 -136 22 -208'], + 0x2218: [444,-56,500,55,444,'444 250c0 -107 -89 -194 -194 -194c-108 0 -195 88 -195 194c0 105 87 194 195 194c105 0 194 -87 194 -194zM250 96c83 0 154 68 154 154s-71 154 -154 154c-86 0 -155 -70 -155 -154s68 -154 155 -154'], + 0x2219: [444,-56,500,55,444,'444 250c0 -107 -89 -194 -194 -194c-108 0 -195 88 -195 194c0 105 87 194 195 194c105 0 194 -87 194 -194'], + 0x221A: [988,1,833,70,849,'381 -1h-23l-205 450l-67 -50l-16 16l135 102l185 -406l423 877l36 -17'], + 0x221D: [442,11,815,56,760,'462 197l-50 65c-36 46 -95 122 -175 122c-77 0 -139 -72 -139 -169c0 -88 48 -183 143 -183c88 0 163 64 221 165zM760 -10c-5 -1 -11 -1 -16 -1c-82 0 -151 49 -202 106c-20 22 -27 34 -48 60c-36 -60 -117 -166 -240 -166c-116 0 -198 108 -198 226 c0 119 83 227 201 227c82 0 151 -49 202 -106c20 -22 27 -34 48 -60c36 60 117 166 240 166h13v-43c-88 0 -163 -64 -221 -165l50 -65c35 -45 93 -119 171 -122v-57'], + 0x221E: [442,11,1000,56,945,'462 197l-50 65c-36 46 -95 122 -175 122c-77 0 -139 -72 -139 -169c0 -88 48 -183 143 -183c88 0 163 64 221 165zM507 276c36 60 117 166 240 166c116 0 198 -108 198 -226c0 -119 -83 -227 -201 -227c-82 0 -151 49 -202 106c-20 22 -27 34 -48 60 c-36 -60 -117 -166 -240 -166c-116 0 -198 108 -198 226c0 119 83 227 201 227c82 0 151 -49 202 -106c20 -22 27 -34 48 -60zM539 234l50 -65c36 -46 95 -122 175 -122c77 0 139 72 139 169c0 88 -48 183 -143 183c-88 0 -163 -64 -221 -165'], + 0x2223: [698,97,213,86,126,'126 -89l-40 -8v787l40 8v-787'], + 0x2225: [738,167,392,86,306,'126 -159l-40 -8v897l40 8v-897zM306 -159l-40 -8v897l40 8v-897'], + 0x2227: [714,4,775,11,768,'404 713l364 -711l-42 -6l-328 641l-347 -636l-29 -2l-11 11l384 704'], + 0x2228: [688,12,775,6,756,'756 684l-374 -696h-15l-361 689l42 7l327 -625l338 629h39'], + 0x2229: [598,2,666,55,609,'55 384c0 128 129 214 277 214c149 0 277 -86 277 -214v-386h-40v386c0 107 -113 174 -237 174c-123 0 -237 -67 -237 -174v-386h-40v386'], + 0x222A: [578,22,666,55,609,'95 191c0 -106 114 -173 237 -173c124 0 237 67 237 173v387h40v-387c0 -128 -128 -213 -277 -213c-148 0 -277 85 -277 213v387h40v-387'], + 0x222B: [950,161,556,49,507,'319 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243 c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295'], + 0x2234: [455,12,569,50,517,'228 398c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM460 -12c-31 0 -57 26 -57 58c0 30 26 56 57 56s57 -26 57 -56c0 -32 -26 -58 -57 -58zM107 -12c-31 0 -57 26 -57 58c0 30 26 56 57 56s57 -26 57 -56c0 -32 -26 -58 -57 -58'], + 0x2235: [455,12,569,50,517,'228 44c0 -30 26 -56 58 -56c31 0 56 26 56 56c0 32 -25 58 -56 58c-32 0 -58 -26 -58 -58zM460 455c-31 0 -57 -26 -57 -58c0 -31 26 -56 57 -56s57 25 57 56c0 32 -26 58 -57 58zM107 455c-31 0 -57 -26 -57 -58c0 -31 26 -56 57 -56s57 25 57 56c0 32 -26 58 -57 58'], + 0x223C: [347,-178,551,22,530,'281 291l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66 c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0x223D: [347,-178,551,22,530,'271 291l-74 -46c-22 -14 -47 -26 -74 -26c-19 0 -32 7 -44 17c-14 10 -26 32 -36 50l-21 -11c11 -26 28 -52 47 -70c15 -14 41 -27 65 -27c38 0 73 16 105 36l99 63c24 15 51 28 80 28c19 0 35 -5 50 -18c12 -11 28 -37 40 -59l22 12c-12 24 -27 49 -42 66 c-13 15 -28 28 -47 34c-11 4 -23 7 -35 7c-19 0 -38 -6 -56 -14c-28 -11 -54 -26 -79 -42'], + 0x2240: [422,77,243,54,189,'150 172l-36 -79c-11 -24 -19 -50 -16 -77c3 -19 11 -31 23 -42c12 -12 35 -21 54 -29l-8 -22c-27 8 -55 21 -76 37c-15 13 -32 38 -35 61c-5 38 6 75 22 109l50 107c11 25 21 54 17 83c-3 18 -10 34 -24 47c-13 10 -41 23 -64 32l9 23c25 -9 52 -20 71 -33 c16 -11 31 -24 40 -42c5 -10 10 -22 11 -34c3 -19 -1 -38 -6 -57c-8 -29 -19 -57 -32 -84'], + 0x2241: [454,-32,551,22,530,'372 449l5 -11l-70 -163l48 -30c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-26 16l-85 -198l-32 8l-3 14l86 198l-39 25c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18 c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c25 -10 48 -22 70 -36l67 155l11 2'], + 0x2242: [397,-103,597,54,563,'557 357h-503l7 40h502zM314 216l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12 c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0x2243: [396,-101,597,54,563,'557 101h-503l7 40h502zM314 340l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12 c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0x2245: [597,-102,597,54,563,'557 299h-503l7 40h502zM557 102h-503l7 40h502zM314 541l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18 c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0x2246: [597,8,597,54,563,'402 409l5 -11l-25 -59h181l-6 -40h-193l-67 -157h266l-6 -40h-278l-47 -110l-32 8l-3 14l38 88h-181l7 40h191l68 157h-266l7 40h276l32 73l11 2zM314 541l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70 c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0x2248: [427,-108,551,22,530,'281 371l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66 c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42zM281 221l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28 c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0x224A: [546,-101,597,54,563,'557 101h-503l7 40h502zM313 490l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12 c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42zM314 340l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63 c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0x2260: [720,192,756,54,722,'598 715l5 -11l-145 -335h264l-6 -40h-276l-68 -157h350l-6 -40h-361l-141 -324l-32 8l-3 14l131 302h-256l7 40h267l68 157h-342l7 40h352l152 349l11 2'], + 0x2261: [465,-33,830,81,749,'90 465h659l-9 -39h-659zM90 268h659l-9 -38h-659zM90 72h659l-9 -39h-659'], + 0x2264: [648,150,807,79,700,'680 -150l-572 260l-2 13l11 22l13 2l568 -261l2 -12l-10 -20zM700 622l-2 -9l-522 -241v-12l519 -241l5 -10l-11 -23l-10 -5l-600 280v12l601 275l11 -3'], + 0x2265: [647,149,807,102,724,'680 148l10 -4l10 -20l-2 -12l-568 -261l-13 2l-11 22l2 13zM104 610l-2 10l10 24l10 3l602 -275v-12l-600 -280l-10 5l-8 24l4 9l518 243v9'], + 0x2266: [800,0,756,54,722,'696 772l-2 -8l-538 -205v-12l535 -206l5 -9l-9 -24l-10 -6l-617 239v26l618 233l11 -4zM716 197h-662l7 40h661zM716 0h-662l7 40h661'], + 0x2267: [800,0,756,54,722,'60 772l7 24l11 4l618 -233v-26l-617 -239l-10 6l-9 24l5 9l535 206v12l-538 205zM716 197h-662l7 40h661zM716 0h-662l7 40h661'], + 0x2268: [800,93,756,54,722,'696 772l-2 -8l-538 -205v-12l535 -206l5 -9l-9 -24l-10 -6l-617 239v26l618 233l11 -4zM478 324l5 -11l-33 -76h272l-6 -40h-283l-68 -157h357l-6 -40h-368l-40 -93l-32 8l-3 14l31 71h-250l7 40h260l68 157h-335l7 40h345l39 90l11 2'], + 0x2269: [800,93,756,54,722,'60 772l7 24l11 4l618 -233v-26l-617 -239l-10 6l-9 24l5 9l535 206v12l-538 205zM478 324l5 -11l-33 -76h272l-6 -40h-283l-68 -157h357l-6 -40h-368l-40 -93l-32 8l-3 14l31 71h-250l7 40h260l68 157h-335l7 40h345l39 90l11 2'], + 0x226E: [720,192,756,59,680,'585 715l5 -11l-111 -256l181 83l11 -3l9 -23l-2 -9l-223 -103l-104 -240l324 -151l5 -10l-11 -23l-10 -5l-325 151l-133 -307l-32 8l-3 14l132 303l-239 111v12l365 167l128 295l11 2zM314 170l86 197l-244 -112v-12'], + 0x226F: [720,192,756,76,698,'585 715l5 -11l-144 -333l252 -115v-12l-386 -180l-111 -256l-32 8l-3 14l90 208l-158 -74l-10 5l-8 24l4 9l197 92l111 256l-314 144l-2 10l10 24l10 3l313 -143l143 330l11 2zM429 333l-92 -212l265 124v9'], + 0x2270: [720,192,807,79,700,'585 715l5 -11l-53 -121l143 65l11 -3l9 -23l-2 -9l-184 -85l-118 -270l299 -139l5 -10l-11 -23l-10 -5l-299 139l-68 -157l386 -177l2 -12l-10 -20l-10 -4l-385 175l-94 -217l-32 8l-3 14l92 212l-150 68l-2 13l11 22l13 2l145 -66l68 157l-264 123v12l403 185l70 160 l11 2zM359 275l99 227l-282 -130v-12'], + 0x2271: [720,192,807,102,724,'585 715l5 -11l-98 -226l232 -106v-12l-355 -166l-102 -234l413 188l10 -4l10 -20l-2 -12l-456 -210l-41 -94l-32 8l-3 14l20 47l-56 -26l-13 2l-11 22l2 13l104 47l101 233l-189 -88l-10 5l-8 24l4 9l228 107l100 232l-334 153l-2 10l10 24l10 3l333 -152l97 223l11 2z M475 440l-82 -189l235 110v9'], + 0x2272: [663,52,807,79,716,'716 635l-3 -8l-537 -205v-12l534 -206l6 -9l-10 -24l-9 -6l-618 239v26l619 233l11 -4zM390 61l89 -46c26 -14 56 -26 89 -26c23 0 38 7 53 17c16 10 31 32 43 50l25 -11c-13 -26 -34 -52 -56 -70c-18 -14 -50 -27 -78 -27c-46 0 -88 16 -126 36l-119 63 c-29 15 -61 28 -96 28c-23 0 -42 -5 -60 -18c-15 -11 -34 -37 -48 -59l-27 12c15 24 33 49 51 66c15 15 33 28 56 34c13 4 28 7 42 7c23 0 46 -6 67 -14c34 -11 65 -26 95 -42'], + 0x2273: [663,52,807,88,725,'88 635l7 24l11 4l619 -233v-26l-618 -239l-9 6l-10 24l6 9l534 206v12l-537 205zM424 61l89 -46c26 -14 56 -26 89 -26c23 0 38 7 53 17c16 10 31 32 43 50l25 -11c-13 -26 -34 -52 -56 -70c-18 -14 -50 -27 -78 -27c-46 0 -88 16 -126 36l-119 63c-29 15 -61 28 -96 28 c-23 0 -42 -5 -60 -18c-15 -11 -34 -37 -48 -59l-27 12c15 24 33 49 51 66c15 15 33 28 56 34c13 4 28 7 42 7c23 0 46 -6 67 -14c34 -11 65 -26 95 -42'], + 0x2276: [766,119,807,71,716,'716 738l-3 -8l-537 -205v-12l534 -206l6 -9l-10 -24l-9 -6l-618 239v26l619 233l11 -4zM71 351l7 24l11 4l619 -233v-26l-618 -239l-9 6l-10 24l6 9l534 206v12l-537 205'], + 0x2277: [764,120,807,72,716,'72 736l7 24l11 4l619 -233v-26l-618 -239l-9 6l-10 24l6 9l534 206v12l-537 205zM716 350l-3 -8l-537 -205v-12l534 -206l6 -9l-10 -24l-9 -6l-618 239v26l619 233l11 -4'], + 0x2282: [541,41,777,83,673,'388 501c-145 0 -265 -111 -265 -251s120 -251 265 -251h285v-40h-285c-165 0 -305 127 -305 291s140 291 305 291h285v-40h-285'], + 0x2283: [541,41,777,103,693,'388 541c165 0 305 -127 305 -291s-140 -291 -305 -291h-285v40h285c145 0 265 111 265 251s-120 251 -265 251h-285v40h285'], + 0x2286: [636,143,777,83,673,'388 596c-145 0 -265 -111 -265 -251c0 -141 120 -251 265 -251h285v-40h-285c-165 0 -305 127 -305 291s140 291 305 291h285v-40h-285zM123 -143v40h550v-40h-550'], + 0x2287: [636,143,777,103,693,'388 636c165 0 305 -127 305 -291s-140 -291 -305 -291h-285v40h285c145 0 265 110 265 251c0 140 -120 251 -265 251h-285v40h285zM652 -103v-40h-549v40h549'], + 0x2288: [720,192,777,83,673,'596 715l4 -11l-29 -68h102v-40h-119l-216 -498c16 -3 33 -4 50 -4h285v-40h-285c-23 0 -45 2 -67 7l-71 -164h423v-40h-440l-21 -49l-32 8l-4 14l12 27h-65v40h83l76 175c-115 41 -199 146 -199 273c0 164 140 291 305 291h139l35 82l12 2zM388 596 c-145 0 -265 -111 -265 -251c0 -110 74 -201 175 -236l211 487h-121'], + 0x2289: [720,192,777,103,693,'596 715l4 -11l-49 -113c84 -52 142 -141 142 -246c0 -164 -140 -291 -305 -291h-70l-68 -157h402v-40h-419l-21 -49l-32 8l-4 14l12 27h-85v40h103l68 157h-171v40h188l208 479c-34 15 -71 23 -111 23h-285v40h285c45 0 88 -10 127 -27l47 109l12 2zM535 553l-199 -459 h52c145 0 265 110 265 251c0 88 -47 164 -118 208'], + 0x228A: [636,222,777,83,673,'123 -143v40h251l33 76l11 2l22 -5l5 -11l-27 -62h255v-40h-272l-34 -79l-32 8l-3 14l25 57h-234zM388 596c-145 0 -265 -111 -265 -251c0 -141 120 -251 265 -251h285v-40h-285c-165 0 -305 127 -305 291s140 291 305 291h285v-40h-285'], + 0x228B: [636,222,777,103,693,'652 -103v-40h-251l-34 -79l-32 8l-3 14l25 57h-254v40h271l33 76l11 2l22 -5l5 -11l-27 -62h234zM388 636c165 0 305 -127 305 -291s-140 -291 -305 -291h-285v40h285c145 0 265 110 265 251c0 140 -120 251 -265 251h-285v40h285'], + 0x228E: [578,22,665,55,609,'312 482h40v-157h157v-40h-157v-156h-40v156h-156v40h156v157zM95 191c0 -106 114 -173 237 -173c124 0 237 67 237 173v387h40v-387c0 -128 -128 -213 -277 -213c-148 0 -277 85 -277 213v387h40v-387'], + 0x2291: [636,143,1000,94,693,'134 596v-502h559v-40h-599v582h599v-40h-559zM103 -143v40h590v-40h-590'], + 0x2292: [636,143,1000,83,681,'83 636h598v-582h-598v40h558v502h-558v40zM673 -103v-40h-590v40h590'], + 0x2295: [583,83,777,55,722,'722 250c0 -182 -148 -333 -334 -333c-183 0 -333 149 -333 333c0 182 148 333 334 333c183 0 333 -149 333 -333zM80 263h296v295c-156 -8 -286 -127 -296 -295zM401 558v-295h296c-10 167 -139 287 -296 295zM376 -58v296h-296c10 -171 141 -288 296 -296zM697 238 h-296v-296c154 8 286 125 296 296'], + 0x2296: [583,83,777,55,722,'722 250c0 -182 -148 -333 -334 -333c-183 0 -333 149 -333 333c0 182 148 333 334 333c183 0 333 -149 333 -333zM80 263h617c-10 176 -152 295 -309 295c-153 0 -298 -117 -308 -295zM697 238h-617c10 -179 154 -296 309 -296c151 0 298 114 308 296'], + 0x2297: [583,83,777,55,722,'722 250c0 -182 -148 -333 -334 -333c-183 0 -333 149 -333 333c0 182 148 333 334 333c183 0 333 -149 333 -333zM190 465l199 -198l208 209c-82 77 -174 82 -209 82c-126 0 -207 -78 -207 -82c0 -2 7 -9 9 -11zM161 41l209 209l-209 209c-52 -59 -81 -132 -81 -209 c0 -64 20 -141 81 -209zM615 459l-208 -209l209 -209c52 59 81 132 81 209c0 82 -34 158 -82 209zM587 35l-199 198l-208 -209c82 -77 174 -82 209 -82c126 0 207 78 207 82c0 2 -7 9 -9 11'], + 0x2298: [583,83,777,55,722,'722 250c0 -182 -148 -333 -334 -333c-183 0 -333 149 -333 333c0 182 148 333 334 333c183 0 333 -149 333 -333zM171 51l426 425c-82 77 -174 82 -209 82c-168 0 -308 -136 -308 -308c0 -127 79 -207 82 -207c1 0 1 1 9 8zM615 459l-435 -435c82 -77 174 -82 209 -82 c168 0 308 136 308 308c0 82 -34 158 -82 209'], + 0x2299: [583,83,777,55,722,'722 250c0 -182 -148 -333 -334 -333c-183 0 -333 149 -333 333c0 182 148 333 334 333c183 0 333 -149 333 -333zM389 -58c168 0 308 136 308 308c0 169 -137 308 -309 308c-168 0 -308 -136 -308 -308c0 -169 137 -308 309 -308zM457 250c0 -36 -29 -69 -69 -69 c-37 0 -68 31 -68 69c0 36 29 69 69 69c37 0 68 -31 68 -69'], + 0x22A2: [694,0,673,55,618,'55 694h40v-327h523v-40h-523v-327h-40v694'], + 0x22A3: [694,0,673,55,618,'618 694h-40v-327h-523v-40h523v-327h40v694'], + 0x22A4: [684,0,875,55,820,'55 644v40l765 -1v-40h-362v-643h-40v644h-363'], + 0x22A5: [684,0,875,55,820,'55 40v-40l765 1v40h-362v643h-40v-644h-363'], + 0x22C4: [496,-4,500,3,495,'495 250l-246 -246l-246 246l246 246zM438 250l-189 189l-189 -189l189 -189'], + 0x22C5: [379,-245,277,72,206,'72 312c0 37 30 67 66 67c38 0 68 -30 68 -67s-30 -67 -68 -67c-36 0 -66 30 -66 67'], + 0x22EF: [319,-185,768,77,691,'77 252c0 37 30 67 67 67s67 -30 67 -67s-30 -67 -67 -67s-67 30 -67 67zM317 252c0 37 30 67 67 67s67 -30 67 -67s-30 -67 -67 -67s-67 30 -67 67zM557 252c0 37 30 67 67 67s67 -30 67 -67s-30 -67 -67 -67s-67 30 -67 67'], + 0x22F1: [533,-60,627,76,550,'191 419c-26 -26 -68 -26 -94 0c-27 26 -27 69 0 95c26 26 68 26 94 0c27 -26 27 -69 0 -95zM361 250c-26 -27 -69 -27 -95 0c-26 26 -26 68 0 94c26 27 69 27 95 0c26 -26 26 -68 0 -94zM531 80c-26 -26 -69 -26 -95 0s-26 69 0 95s69 26 95 0s26 -69 0 -95'], + 0x2308: [980,0,511,174,401,'214 940v-940h-40v980h227v-40h-187'], + 0x2309: [980,0,511,41,269,'41 980h228v-980h-40v940h-188v40'], + 0x230A: [980,0,511,174,401,'214 40h187v-40h-227v980h40v-940'], + 0x230B: [980,0,511,41,269,'269 980v-980h-228v40h188v940h40'], + 0x23DC: [770,-582,1037,56,981,'80 582h-24c4 48 42 90 79 118c43 30 95 42 146 52c80 14 161 18 242 18c77 0 155 -6 230 -20c54 -12 108 -28 154 -58c35 -26 67 -70 74 -110h-27c-8 32 -38 64 -72 80c-47 22 -98 34 -150 42c-71 10 -143 14 -215 14c-86 0 -172 -4 -256 -18c-29 -6 -58 -12 -86 -22 c-20 -6 -39 -16 -55 -30c-20 -16 -36 -46 -40 -66'], + 0x23DD: [-32,222,1037,56,981,'954 -32h27c-7 -34 -28 -66 -54 -90c-44 -40 -101 -60 -158 -74c-83 -20 -167 -26 -252 -26c-84 0 -169 4 -252 20c-53 12 -106 26 -148 62c-33 26 -57 78 -61 108h24c7 -26 22 -58 47 -78c15 -12 33 -20 51 -26c27 -8 52 -16 79 -20c87 -12 176 -14 264 -14 c79 0 158 6 235 20c53 10 106 24 151 54c22 16 38 40 47 64'], + 0x23DE: [824,-528,1020,56,964,'80 528h-24c0 40 0 92 6 116c4 16 12 28 23 38c21 20 50 24 77 26c24 4 70 4 106 4c69 0 174 0 202 24c9 8 15 20 18 34c5 16 5 36 5 54h26c0 -40 1 -64 20 -86c14 -16 37 -18 58 -22c35 -4 100 -4 151 -4h106c28 -4 56 -8 78 -26c11 -8 20 -20 25 -34 c7 -22 7 -82 7 -124h-24c0 30 0 60 -8 88c-3 12 -9 18 -20 24c-12 8 -27 12 -42 16c-39 6 -78 6 -118 6c-41 0 -82 0 -123 6c-23 4 -50 8 -70 20c-26 16 -45 42 -51 58h-1c-7 -20 -18 -38 -38 -52c-23 -16 -49 -24 -76 -26c-43 -6 -86 -6 -129 -6c-40 0 -80 -2 -119 -8 c-14 -4 -27 -8 -39 -16c-11 -6 -17 -18 -20 -30c-6 -24 -6 -52 -6 -80'], + 0x23DF: [26,268,1020,56,964,'56 26h24c0 -26 1 -56 6 -80c3 -12 9 -22 20 -30c12 -8 25 -12 39 -14c39 -6 79 -8 119 -8c43 0 86 -2 129 -6c27 -4 53 -10 76 -28c20 -14 31 -32 38 -52h1c6 18 25 42 51 60c20 12 47 16 70 18c41 6 82 8 123 8c40 0 79 0 118 6c15 2 30 6 42 14c11 6 17 14 20 26 c7 28 8 58 8 86h24c0 -40 0 -102 -7 -122c-5 -14 -14 -26 -25 -36c-22 -16 -50 -22 -78 -24c-10 -2 -71 -2 -106 -2c-51 0 -116 0 -151 -4c-21 -2 -44 -6 -58 -22c-19 -22 -20 -46 -20 -84h-26c0 18 0 36 -5 54c-3 12 -9 24 -18 32c-28 26 -133 26 -202 26 c-36 0 -82 0 -106 2c-27 4 -56 8 -77 26c-11 10 -19 24 -23 38c-6 24 -6 78 -6 116'], + 0x27E8: [737,237,388,107,330,'150 250l180 -473l-37 -14l-186 487l186 487l37 -14'], + 0x27E9: [737,237,388,57,280,'94 737l186 -487l-186 -487l-37 14l180 473l-180 473'], + 0x27F5: [500,0,1610,55,1553,'1553 270h-1428c38 47 90 126 115 230h-40c-31 -130 -113 -220 -145 -250c30 -28 114 -119 145 -250h40c-25 105 -78 184 -115 230h1428v40'], + 0x27F6: [500,0,1610,55,1553,'55 270h1428c-38 47 -90 126 -115 230h40c31 -130 113 -220 145 -250c-30 -28 -114 -119 -145 -250h-40c25 105 78 184 115 230h-1428v40'], + 0x27F7: [500,0,1700,57,1644,'1574 230h-1447c38 -47 90 -126 115 -230h-40c-31 130 -113 220 -145 250c30 28 114 119 145 250h40c-25 -105 -78 -184 -115 -230h1447c-38 47 -90 126 -115 230h40c31 -130 113 -220 145 -250c-30 -28 -114 -119 -145 -250h-40c25 105 78 184 115 230'], + 0x27F8: [598,98,1700,55,1622,'55 250c145 72 257 196 312 348h40c-31 -86 -78 -163 -138 -230h1353v-40h-1392c-31 -29 -64 -55 -99 -78c35 -23 68 -49 99 -78h1392v-40h-1353c60 -67 107 -144 138 -230h-40c-55 152 -167 276 -312 348'], + 0x27F9: [598,98,1700,55,1622,'1622 250c-145 72 -257 196 -312 348h-40c31 -86 78 -163 138 -230h-1353v-40h1392c31 -29 64 -55 99 -78c-35 -23 -68 -49 -99 -78h-1392v-40h1353c-60 -67 -107 -144 -138 -230h40c55 152 167 276 312 348'], + 0x27FA: [598,98,1700,33,1665,'1665 250c-123 -83 -214 -206 -257 -348h-41c26 83 66 161 118 230h-1272c52 -69 92 -147 118 -230h-41c-43 142 -134 265 -257 348c123 83 214 206 257 348h41c-26 -83 -66 -161 -118 -230h1272c-52 69 -92 147 -118 230h41c43 -142 134 -265 257 -348zM1518 172 c25 28 52 54 81 78c-29 24 -56 50 -81 78h-1338c-25 -28 -52 -54 -81 -78c29 -24 56 -50 81 -78h1338'], + 0x27FC: [500,0,1690,56,1634,'56 50v400h40v-180h1468c-38 47 -90 126 -115 230h40c31 -130 113 -220 145 -250c-30 -28 -114 -119 -145 -250h-40c25 105 78 184 115 230h-1468v-180h-40'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Marks/Regular/Main.js new file mode 100644 index 0000000..aa673c5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Marks/Regular/Main.js @@ -0,0 +1,48 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'NeoEulerMathJax_Marks', + id: 'NEOEULERMARKS', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x305: [615,-570,0,-445,-53,'-53 570h-392v45h392v-45'], + 0x30F: [683,-502,0,-497,-154,'-173 502l19 25l-107 123c-17 20 -39 33 -55 33c-17 0 -31 -15 -31 -33c0 -16 10 -29 39 -50zM-323 502l19 25l-107 123c-17 20 -39 33 -55 33c-17 0 -31 -15 -31 -33c0 -16 10 -29 39 -50'], + 0x311: [671,-513,0,-390,-108,'-108 513h-30c-3 57 -49 98 -111 98s-108 -41 -111 -98h-30c2 44 8 66 24 93c24 42 66 65 117 65c54 0 97 -25 121 -71c13 -26 18 -46 20 -87'], + 0x323: [-93,193,0,-225,-125,'-125 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x324: [-93,193,0,-399,-100,'-100 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM-299 -143c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x325: [-43,243,0,-349,-149,'-149 -143c0 -56 -45 -100 -100 -100c-56 0 -100 44 -100 101c0 55 45 99 102 99c53 0 98 -45 98 -100zM-187 -143c0 38 -25 64 -61 64c-38 0 -63 -25 -63 -63c0 -40 24 -65 62 -65c37 0 62 26 62 64'], + 0x32E: [-78,207,0,-388,-83,'-83 -78c-6 -84 -65 -129 -153 -129s-147 45 -152 129h32c4 -47 53 -80 120 -80c68 0 117 33 120 80h33'], + 0x32F: [-78,207,0,-388,-83,'-83 -207h-32c-4 47 -53 80 -120 80c-68 0 -117 -33 -120 -80h-33c6 84 65 129 153 129s147 -45 152 -129'], + 0x330: [-95,196,0,-389,-68,'-288 -96c53 -3 99 -45 136 -45c28 0 40 14 60 45l24 -13c-20 -43 -48 -87 -105 -87c-55 0 -101 45 -139 45c-24 0 -38 -20 -53 -45l-24 14c32 66 63 88 101 86'], + 0x331: [-116,169,0,-405,-93,'-93 -169h-312v53h312v-53'], + 0x332: [-120,165,0,-445,-53,'-53 -165h-392v45h392v-45'], + 0x2036: [782,-422,433,30,386,'229 723c-4 9 -7 15 -7 22c0 20 19 37 40 37c20 0 33 -13 38 -32l83 -306c0 -1 3 -9 3 -9c0 -8 -19 -13 -24 -13c-4 0 -5 2 -9 11zM36 723c-3 9 -6 15 -6 22c0 20 18 37 40 37c20 0 32 -13 37 -32l83 -306c0 -1 3 -9 3 -9c0 -8 -18 -13 -24 -13c-4 0 -5 2 -9 11'], + 0x2037: [782,-422,626,30,578,'421 723c-3 9 -6 15 -6 22c0 20 18 37 40 37c19 0 32 -13 37 -32l83 -306c0 -1 3 -9 3 -9c0 -8 -18 -13 -24 -13c-4 0 -5 2 -9 11zM229 723c-4 9 -7 15 -7 22c0 20 19 37 40 37c20 0 33 -13 38 -32l83 -306c0 -1 3 -9 3 -9c0 -8 -19 -13 -24 -13c-4 0 -5 2 -9 11zM36 723 c-3 9 -6 15 -6 22c0 20 18 37 40 37c20 0 32 -13 37 -32l83 -306c0 -1 3 -9 3 -9c0 -8 -18 -13 -24 -13c-4 0 -5 2 -9 11'], + 0x20D6: [750,-479,287,-131,287,'287 595h-346l79 -95l-21 -21l-130 135l130 136l21 -21l-79 -94h346v-40'], + 0x20DB: [642,-542,0,-599,-100,'-499 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM-299 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM-100 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x20DC: [642,-542,0,-799,-100,'-699 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM-499 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM-299 592c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50zM-100 592 c0 -30 -20 -50 -50 -50s-50 20 -50 50s20 50 51 50c29 0 49 -21 49 -50'], + 0x20DD: [716,216,1000,55,944,'944 250c0 -259 -200 -466 -445 -466c-242 0 -444 205 -444 466c0 259 200 466 445 466c242 0 444 -205 444 -466zM500 -176c221 0 404 188 404 426c0 236 -181 426 -405 426c-221 0 -404 -188 -404 -426c0 -236 181 -426 405 -426'], + 0x20E1: [750,-479,449,0,449,'377 635l-79 94l21 21l130 -136l-130 -135l-21 21l79 95h-305l79 -95l-21 -21l-130 135l130 136l21 -21l-79 -94h305'], + 0x20EE: [50,221,287,-131,287,'287 -105h-346l79 -95l-21 -21l-130 135l130 136l21 -21l-79 -94h346v-40'], + 0x20EF: [50,221,287,0,418,'346 -105h-346v40h346l-79 94l21 21l130 -136l-130 -135l-21 21'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Marks/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/NonUnicode/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/NonUnicode/Regular/Main.js new file mode 100644 index 0000000..85622d8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/NonUnicode/Regular/Main.js @@ -0,0 +1,1111 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/NonUnicode/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_NonUnicode'] = { + directory: 'NonUnicode/Regular', + family: 'NeoEulerMathJax_NonUnicode', + id: 'NEOEULERNONUNICODE', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0xE000: [631,28,587,64,512,'262 465l15 -9c-14 -12 -42 -35 -43 -35c-10 -9 -14 -21 -17 -33c-9 -38 -12 -77 -12 -116c0 -32 2 -63 5 -94c2 -17 11 -34 25 -47c30 -30 68 -52 107 -73c28 42 36 91 42 138c5 42 7 83 7 125c0 36 -2 71 -4 107c-68 55 -142 105 -231 132c-12 4 -26 5 -39 5 s-28 -5 -43 -11l-10 19c42 21 94 47 148 58c49 -6 95 -23 138 -44c57 -28 109 -63 159 -101c2 -28 3 -56 3 -85c0 -101 -14 -201 -47 -299c-72 -45 -165 -103 -218 -130c-53 36 -103 73 -151 113c-4 44 -6 89 -6 133c0 49 3 97 10 146c48 39 105 71 162 101'], + 0xE001: [691,242,393,37,408,'408 655l-108 -100c-24 17 -62 43 -77 43c-16 0 -32 -2 -42 -12c-12 -9 -21 -21 -21 -35c0 -15 6 -29 14 -42c14 -23 61 -86 77 -104h136v-7l-16 -39h-121c0 -117 0 -236 -19 -347c-3 -15 -10 -32 -18 -46l-113 -208l-20 4c14 34 40 97 45 131c6 38 9 83 9 125v341h-97v8 l15 38h82v109c0 22 0 44 6 65c4 15 11 28 21 42c17 23 37 44 56 56c19 11 27 14 41 14c57 0 81 -14 114 -34l33 19'], + 0xE002: [688,242,388,37,387,'251 405h136v-7l-16 -39h-121c0 -117 0 -240 -20 -349c-3 -15 -9 -29 -17 -43c0 -1 -80 -150 -113 -209l-21 3c14 34 41 98 46 132c6 38 10 83 10 125v341h-98v8l15 38h83c0 15 -9 39 -17 64c-11 29 -20 63 -20 86c40 48 85 94 136 133c15 -10 30 -20 46 -28 c11 -5 23 -9 35 -9c17 0 33 6 46 16l11 -12l-86 -86c-39 0 -77 7 -114 17c3 -35 19 -69 39 -100c16 -26 27 -48 40 -81'], + 0xE003: [474,212,592,67,531,'510 -49l-151 -147c-33 -8 -67 -16 -102 -16c-72 0 -140 26 -190 69l66 99h10c29 -59 102 -90 176 -90c26 0 55 0 74 16c14 12 17 31 17 47c0 42 -14 109 -25 163l-193 -121c-31 32 -62 64 -97 93c-1 34 -2 68 -2 102c0 68 3 136 14 204c58 39 122 71 186 104 c44 -21 93 -34 141 -45l83 45l14 -12c-28 -62 -32 -128 -32 -194c0 -73 2 -147 14 -220c2 -18 7 -45 7 -53c0 -15 -4 -30 -10 -44zM383 124l2 223c-58 7 -113 26 -163 51c-19 -44 -23 -99 -23 -140c0 -33 2 -66 6 -99c2 -15 9 -30 20 -42c10 -12 44 -38 64 -52'], + 0xE004: [684,27,393,29,387,'218 405h123v-7l-16 -39h-107c0 -77 0 -184 3 -229c26 -20 59 -42 89 -58l63 20l3 -18c-58 -32 -117 -65 -168 -101c-37 33 -76 63 -120 89c15 51 15 197 15 297h-74v8l15 38h59c0 87 0 206 -8 258l15 10l30 -76c50 33 102 62 158 87l16 -8c-30 -15 -51 -41 -69 -67 c-20 -29 -22 -63 -22 -97l118 72c18 -24 33 -49 46 -75l-62 -64l-7 -2c-11 14 -23 28 -37 40c-8 7 -18 14 -30 14c-6 0 -12 -1 -17 -5c-16 -15 -16 -55 -16 -87'], + 0xE005: [586,33,397,47,411,'242 405h111v-7l-16 -39h-95c0 -76 0 -203 3 -227c26 -27 58 -51 96 -65l63 31l7 -21c-57 -37 -170 -110 -171 -110c-36 32 -78 59 -121 84c5 58 8 117 8 175v133h-80v8l15 38h65v127l115 54l12 -9c-4 -56 -12 -171 -12 -172'], + 0xE006: [681,221,980,25,875,'300 681c56 0 98 -19 134 -49c29 -25 47 -58 59 -91c68 52 148 96 227 139c38 -37 86 -64 135 -90c9 -91 20 -200 20 -273c0 -121 -18 -243 -82 -352c-59 -54 -125 -102 -200 -137c-60 -29 -126 -49 -195 -49c-48 0 -97 10 -131 40c-10 8 -25 20 -28 26l105 110l13 -2 c1 -34 17 -66 45 -90c26 -21 62 -29 97 -29c54 0 102 22 139 54c45 38 65 92 80 143c22 76 28 154 28 232c0 83 -2 165 -19 246c-39 26 -81 50 -126 66c-38 -21 -69 -48 -99 -74c3 -21 4 -53 4 -76c0 -70 -15 -140 -59 -200c-17 -9 -93 -58 -138 -86c56 -23 142 -57 178 -57 c18 0 35 6 50 14c22 11 41 25 58 40l6 -22c-47 -52 -102 -100 -162 -143c-3 -1 -8 -2 -10 -2c-30 0 -79 21 -116 38c-45 20 -100 44 -143 44c-27 0 -53 -7 -72 -23c-16 -13 -29 -27 -43 -42l-21 20c27 32 104 100 154 139c53 0 107 12 146 44c18 16 27 38 33 59 c9 31 12 64 12 96c0 49 -5 99 -21 146c-11 35 -27 69 -57 94c-24 20 -51 35 -88 35c-31 0 -61 -12 -74 -22c-15 -13 -22 -30 -22 -49c0 -12 10 -26 18 -36c13 -16 26 -32 42 -46c26 -24 52 -59 52 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-36 -32 -75 -57 -119 -82 l-16 19c19 12 29 21 43 38c10 12 18 26 18 41c0 16 -27 46 -46 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 42 51 67 73c45 38 109 63 184 63'], + 0xE007: [678,148,710,-5,624,'252 360l-12 2l16 19c26 0 51 2 76 7c17 4 34 9 47 20c28 24 35 60 35 93c0 26 -11 51 -33 70c-26 22 -63 31 -100 31c-47 0 -94 -12 -128 -41l-42 -34l-18 23c46 42 95 81 147 117c37 7 75 11 113 11c58 0 119 -7 161 -43c25 -20 35 -49 35 -78c0 -45 -17 -90 -55 -122 c-36 -31 -78 -58 -129 -64v-6c70 0 144 -9 194 -52c47 -39 65 -95 65 -150c0 -79 -25 -160 -92 -216c-66 -57 -153 -95 -248 -95c-43 0 -88 7 -118 33c-33 27 -47 66 -49 104c-1 23 -7 58 -18 68c-11 9 -27 12 -42 12c-20 0 -39 -8 -56 -16l-6 23c30 19 62 37 96 51 c22 9 46 17 71 17c23 0 46 -5 63 -19c17 -15 17 -68 17 -104c0 -20 3 -41 9 -61c5 -14 11 -29 24 -39c19 -16 49 -25 76 -25c33 0 59 13 81 32c23 19 35 51 44 77c11 33 15 69 15 104c0 30 -3 60 -14 89c-8 23 -19 44 -39 61c-18 16 -56 31 -132 31c-29 0 -58 -3 -87 -9 l-11 10'], + 0xE008: [502,11,592,41,533,'313 502c51 -13 100 -32 137 -64c52 -43 83 -102 83 -164c0 -77 -43 -147 -107 -201c-29 -25 -61 -46 -97 -62c-28 -13 -59 -22 -92 -22c-48 0 -93 18 -127 46c-47 40 -69 96 -69 152c0 85 39 166 110 225c46 40 103 68 162 90zM233 424c-30 -15 -43 -29 -57 -51 c-23 -34 -34 -73 -34 -113c0 -58 27 -114 76 -155c24 -21 56 -34 90 -34c29 0 63 3 84 21c15 13 23 29 29 46c7 22 7 50 7 73c0 58 -34 111 -82 152c-30 26 -72 51 -113 61'], + 0xE009: [489,0,592,54,548,'97 451l-2 31l288 7c-10 -82 -16 -164 -16 -247v-180c0 -10 9 -19 21 -20c18 -1 35 -1 53 -1l107 1v-42h-494v48c53 0 107 -2 161 -3c15 0 27 10 27 23c6 89 13 184 13 268c0 22 -1 44 -9 64c-9 22 -33 34 -58 38'], + 0xE00A: [491,0,592,44,564,'537 1l-490 -1l-3 25l129 110c37 32 72 67 99 107c19 28 35 59 35 92c0 24 -6 49 -27 66c-15 13 -35 21 -56 21c-39 0 -88 -22 -129 -41l-18 28c40 23 81 45 125 62c30 11 62 21 95 21c36 0 73 -5 98 -27c25 -20 35 -49 35 -77c0 -25 -12 -49 -26 -71 c-20 -31 -45 -60 -73 -86c-44 -42 -130 -123 -131 -123c-1 -1 -2 -4 -2 -6c3 -5 11 -5 17 -5c113 0 224 5 335 10l14 -4'], + 0xE00B: [488,193,592,36,523,'314 212l4 -11c57 -2 114 -17 155 -52c34 -28 50 -68 50 -108c0 -59 -25 -117 -75 -160c-58 -49 -137 -74 -219 -74c-72 0 -135 22 -193 56l16 25c44 -22 94 -37 146 -37c48 0 96 13 130 42c39 32 56 78 56 124c0 38 -7 79 -40 107c-21 17 -49 25 -78 31 c-42 9 -85 11 -129 11v38c63 0 129 10 175 48c25 22 35 52 35 82c0 27 -15 53 -38 72c-18 15 -44 17 -68 17c-43 0 -80 -20 -116 -40l-18 18c55 48 120 87 200 87c43 0 87 -10 118 -36c25 -21 41 -50 41 -80c0 -38 -18 -75 -49 -102c-30 -25 -64 -45 -103 -58'], + 0xE00C: [495,198,592,13,565,'450 -158l-104 -40l-11 10l6 187h-328v29l350 452l83 15l10 -13c-6 -80 -10 -248 -10 -425c58 0 86 1 119 4l-19 -62h-100c0 -51 1 -106 4 -157zM110 57h230v302l-5 3c-59 -55 -153 -185 -225 -294v-11'], + 0xE00D: [481,191,592,18,518,'516 481l-30 -93h-328c-9 0 -13 -9 -13 -18v-146l10 -5c40 16 83 23 127 23c63 0 129 -10 175 -49c42 -36 61 -85 61 -136c0 -62 -19 -126 -72 -171c-58 -50 -138 -77 -221 -77c-74 0 -146 17 -207 53l17 26c41 -23 87 -40 136 -40c50 0 100 14 135 44 c47 40 65 97 65 152c0 44 -11 90 -48 121c-25 21 -60 28 -94 28c-41 0 -78 -18 -107 -41l-27 10v319h421'], + 0xE00E: [704,12,592,48,548,'537 625l-25 -2c-26 15 -57 23 -88 23c-58 0 -110 -24 -150 -58c-35 -30 -58 -69 -74 -109c-19 -47 -27 -99 -30 -148l10 -3c53 31 113 58 178 58c46 0 92 -11 125 -39c40 -35 63 -82 63 -131c0 -58 -33 -111 -81 -152c-55 -46 -127 -76 -204 -76c-49 0 -93 20 -127 48 c-67 57 -86 138 -86 217c0 126 56 248 161 338c77 64 174 113 284 113c4 0 36 -5 55 -7zM173 286c1 -45 7 -90 22 -133c11 -31 27 -62 54 -85c20 -18 47 -29 77 -29c29 0 61 8 82 25c30 26 42 66 42 101c0 45 -20 89 -57 121c-28 24 -66 36 -105 36c-41 0 -75 -11 -115 -36'], + 0xE00F: [479,198,592,54,591,'169 -198h-110l-5 23l387 533c2 3 3 5 3 8c0 4 -2 9 -10 9c-1 0 -243 -6 -364 -10l-14 11l30 103h505v-23c-167 -205 -306 -426 -422 -654'], + 0xE010: [715,5,592,45,542,'252 336c-25 -11 -48 -26 -64 -46c-23 -29 -29 -61 -29 -94c0 -47 22 -93 61 -126c22 -18 52 -32 82 -32c32 0 67 5 90 25c28 24 39 61 39 94c0 40 -26 76 -59 104c-32 27 -81 55 -120 75zM368 401c35 -20 82 -48 103 -66c41 -34 71 -79 71 -129c0 -54 -28 -104 -73 -142 c-56 -48 -135 -69 -215 -69c-56 0 -112 13 -152 46c-37 32 -57 75 -57 120c0 46 20 92 59 125c34 29 76 52 121 71c-40 28 -72 54 -100 90c-21 26 -37 55 -37 86c0 41 28 76 61 105c43 36 98 58 155 77c36 -2 71 -7 106 -16c24 -6 48 -14 66 -30c26 -22 42 -52 42 -83 c0 -36 -16 -69 -39 -99c-28 -35 -69 -63 -111 -86zM333 424c48 28 73 79 73 127c0 29 -10 58 -35 79c-26 23 -61 40 -96 46c-21 -9 -43 -26 -55 -41c-15 -18 -22 -43 -22 -65s18 -46 35 -63c29 -31 61 -57 100 -83'], + 0xE011: [488,195,592,29,549,'390 104c-30 -21 -75 -42 -107 -51c-19 -5 -49 -10 -68 -10c-47 0 -86 24 -119 52c-44 38 -67 90 -67 143c0 57 18 115 66 156c31 27 115 65 176 94c69 0 139 -14 188 -56c65 -55 90 -134 90 -211c0 -113 -31 -229 -127 -311c-89 -75 -213 -105 -337 -105v31 c76 5 153 19 208 66c60 50 98 124 104 196zM383 130c10 9 16 21 19 33c6 16 7 33 7 50c0 34 -4 69 -16 101c-10 26 -24 56 -47 76c-24 20 -56 45 -88 56c-31 -13 -44 -20 -62 -36c-14 -12 -29 -40 -35 -56c-7 -23 -10 -46 -10 -70c0 -54 31 -105 77 -143 c22 -19 55 -26 86 -26c24 0 51 0 69 15'], + 0xE012: [704,10,378,54,254,'54 624l194 80c2 -3 6 -6 6 -7c-4 -92 -8 -184 -8 -275c0 -135 0 -287 8 -405l-85 -27l-10 8c3 140 5 279 5 419c0 50 0 103 -6 151c-1 17 -15 32 -33 32h-71v24'], + 0xE013: [684,34,497,73,430,'427 439c2 -25 3 -71 3 -111c0 -31 -1 -61 -3 -79c-4 -48 -8 -96 -26 -140l-187 -143c-50 34 -99 69 -138 115c-2 30 -3 57 -3 85c0 44 2 93 6 169c34 32 68 65 104 92c-32 12 -66 26 -86 45c-15 15 -22 35 -22 56c0 61 35 115 79 156l12 -10c-18 -21 -30 -49 -30 -78 c0 -23 11 -45 28 -62c27 -28 64 -45 101 -58c52 -19 106 -30 162 -37zM341 371l-133 48c-27 -35 -37 -56 -43 -73c-9 -23 -13 -56 -13 -92c0 -39 4 -83 7 -119c13 -16 29 -29 45 -41c23 -16 47 -30 72 -43c3 -1 6 -3 9 -3c5 0 10 3 14 10c28 44 42 96 47 147c2 21 3 41 3 62 c0 34 -3 71 -8 104'], + 0xE014: [616,30,498,35,433,'234 451l-59 -55c-17 -40 -19 -99 -19 -136c0 -40 3 -80 8 -120c3 -22 63 -67 116 -97c65 75 67 223 67 271c0 31 -1 61 -3 92c-69 71 -148 125 -242 155c-20 0 -39 -4 -59 -11l-8 19c40 20 81 35 123 47c80 -18 199 -79 272 -157c2 -29 3 -58 3 -87 c0 -162 -30 -245 -39 -270c-60 -49 -124 -91 -189 -132c-45 34 -88 71 -127 112c-2 29 -2 57 -2 86c0 64 4 128 12 192c39 37 83 69 127 100'], + 0xE015: [681,257,333,30,339,'339 665v-16l-71 -83c-16 19 -37 35 -62 35c-15 0 -34 -4 -45 -15c-12 -11 -18 -25 -18 -42c0 -23 9 -45 18 -66c14 -33 28 -62 46 -92h117l-13 -35h-103c0 -144 -2 -391 -18 -421l-99 -187l-18 7c10 30 25 78 39 150c9 46 10 92 10 138v313h-92l15 34h79 c-4 45 -8 100 -8 136c0 48 22 93 56 127c18 18 39 33 64 33s48 -14 68 -29c2 -2 5 -4 8 -4s5 1 7 3'], + 0xE016: [681,242,326,30,324,'208 351l-5 -310c0 -37 -3 -75 -14 -110c-48 -95 -84 -162 -89 -173l-22 2c14 44 37 155 37 156c3 28 6 58 6 87c0 116 2 232 2 348h-93l16 34h77c0 22 -16 85 -25 127c-2 11 -2 34 -2 48c29 46 60 82 97 121c21 -15 44 -33 70 -33c14 0 35 10 45 19l7 -7l-67 -75 c-33 0 -66 6 -98 13c0 -33 14 -64 25 -95c14 -36 29 -80 33 -117h116l-12 -35h-104'], + 0xE017: [470,214,503,51,444,'431 -53l-125 -139c-24 -16 -52 -22 -80 -22c-66 0 -128 25 -175 71l39 95l11 1c5 -24 21 -44 38 -62c31 -30 73 -41 115 -41c33 0 68 10 91 33c15 15 18 40 18 61c0 31 -13 103 -23 154l-181 -129l-83 96c-1 37 -3 74 -3 111c0 115 13 174 17 192c52 36 122 81 161 102 c36 -23 75 -37 115 -46l70 40l8 -5c-9 -23 -13 -43 -17 -69c-6 -37 -7 -85 -7 -122c-1 -45 -2 -132 -2 -133c8 -51 21 -137 21 -153c0 -12 -3 -24 -8 -35zM230 48l110 76c0 68 3 148 8 228c-59 6 -115 18 -170 38c-12 -26 -23 -65 -23 -145c0 -41 2 -82 6 -123 c19 -23 46 -55 69 -74'], + 0xE018: [687,20,333,25,315,'168 351v-233l60 -49c4 -3 7 -5 11 -5c3 0 9 3 13 5c1 0 39 20 59 30l1 -23l-138 -96l-92 86c4 80 6 187 6 285h-63l17 35h47c0 99 -1 198 -7 285l16 5l23 -78c42 31 81 63 125 89l16 -10c-22 -19 -40 -37 -60 -63c-24 -32 -32 -74 -34 -114c34 28 105 83 106 83 c16 -25 30 -51 41 -79l-36 -55c-10 14 -21 27 -33 39c-8 8 -18 18 -29 18c-8 0 -15 -4 -21 -10c-28 -28 -29 -71 -29 -110h112l-17 -35h-94'], + 0xE019: [578,21,334,29,348,'348 84l-137 -105c-32 28 -94 82 -95 82c2 39 2 192 2 290h-89l16 35h73c0 47 0 100 -2 148l83 44l11 -4c-10 -60 -14 -127 -14 -188h117l-18 -35h-99c0 -77 0 -208 1 -228c22 -19 54 -42 71 -54c2 -2 5 -2 7 -2c4 0 8 2 12 4c1 0 37 20 55 30'], + 0xE01A: [474,26,500,8,514,'421 468l7 -6c-10 -79 -15 -158 -15 -237c0 -32 2 -64 6 -94c2 -14 10 -28 19 -40c4 -5 10 -8 17 -8c3 0 8 1 11 2c15 5 28 11 42 18l6 -15c-42 -34 -80 -70 -119 -107l-8 3c-15 36 -27 62 -50 94c-67 -31 -157 -104 -157 -104c-20 16 -88 62 -125 74c13 22 21 51 27 79 c9 45 15 91 15 137c0 28 0 55 -7 82c-6 18 -14 37 -29 50l-38 -20l-15 10l111 88c16 -19 32 -38 52 -53c0 -22 1 -43 1 -65c0 -31 -1 -62 -2 -92c-2 -54 -9 -108 -24 -160l99 -49l90 46c4 50 5 114 5 163c0 52 -2 105 -4 160'], + 0xE01B: [493,13,367,10,365,'348 119l17 -16v-11c-23 -29 -47 -54 -78 -75c-23 -16 -49 -30 -78 -30c-24 0 -47 10 -60 28c-14 18 -17 41 -18 63c-1 15 -1 117 -1 176v117c-1 14 -3 28 -12 39c-5 6 -14 10 -23 10c-22 0 -45 -15 -69 -32l-16 22c29 23 59 45 93 62c22 11 46 21 72 21 c20 0 40 -7 50 -23c8 -13 12 -25 12 -84c0 -40 -3 -81 -3 -121c0 -42 0 -115 1 -125c1 -16 2 -32 10 -46c6 -12 18 -22 32 -22c12 0 23 7 31 13c14 10 27 21 40 34'], + 0xE01C: [493,246,367,-18,251,'38 389l-16 22c30 23 58 43 92 61c21 10 43 21 67 21c16 0 34 -2 46 -13c16 -15 19 -39 21 -59c3 -25 3 -110 3 -165c0 -65 0 -175 -5 -229c-4 -37 -18 -73 -41 -104c-48 -63 -129 -126 -196 -169l-27 19c45 34 84 73 118 110c23 24 40 86 42 117c5 58 3 161 3 231 c0 44 0 113 -3 133c-1 16 -3 30 -12 45c-3 7 -16 11 -23 11c-22 0 -49 -15 -69 -31'], + 0xE01D: [489,202,674,49,633,'329 59l41 46h10c8 -25 27 -49 59 -49c18 0 38 5 51 18c21 19 31 45 39 71c11 37 14 74 14 112c0 46 -9 94 -45 127c-18 16 -41 28 -67 28c-22 0 -43 -5 -62 -15c-25 -12 -48 -31 -68 -50c-29 -26 -53 -57 -75 -90c7 -12 15 -23 22 -35c25 -37 48 -76 65 -117 c6 -15 12 -30 16 -46zM224 489l16 -14c-17 -18 -32 -37 -44 -59c-9 -16 -15 -33 -15 -52c0 -22 14 -50 22 -65h11c26 34 53 65 84 94c30 27 63 51 101 69c29 14 62 24 95 24c34 0 67 -10 91 -32c39 -35 48 -87 48 -136c0 -101 -46 -197 -125 -269c-18 -17 -38 -32 -61 -43 c-18 -9 -38 -15 -58 -15c-19 0 -38 4 -54 12c-3 -64 -23 -126 -74 -172c-24 -22 -57 -33 -91 -33c-27 0 -54 7 -73 24c-30 27 -48 63 -48 102c0 50 14 99 32 146c17 43 39 84 63 124c-8 12 -15 24 -22 37c-11 22 -22 45 -22 70c0 32 14 63 32 90c24 37 57 70 92 98zM162 153 c-12 -21 -22 -43 -31 -65c-13 -33 -24 -67 -24 -103c0 -40 8 -82 40 -111c15 -14 34 -26 56 -26c16 0 32 6 43 17c28 25 35 61 35 96c0 24 -12 47 -24 69c-21 36 -45 71 -71 104l-14 19h-10'], + 0xE01E: [713,9,542,74,383,'368 32l-113 -41l-22 14c22 185 25 371 14 556c0 8 -3 16 -9 21c-7 5 -15 13 -21 13h-143l1 31l285 86c5 2 12 2 16 -2c4 -3 8 -8 7 -13c-12 -137 -19 -275 -19 -413c0 -84 0 -188 4 -252'], + 0xE01F: [999,200,662,127,533,'371 790v-216c0 -63 0 -123 -172 -175c172 -47 172 -119 172 -164v-252c0 -55 0 -101 139 -143c21 -6 23 -8 23 -22c0 -15 -4 -18 -19 -18c-7 0 -121 20 -181 70c-42 34 -42 68 -42 118v234c0 55 0 107 -138 155c-33 11 -25 14 -25 23c0 8 1 14 9 17 c94 32 154 62 154 143v273c0 19 0 47 23 77c50 66 198 89 200 89c15 0 19 -3 19 -18c0 -7 0 -15 -10 -18c-34 -10 -97 -28 -127 -62c-25 -28 -25 -34 -25 -111'], + 0xE020: [999,200,662,128,533,'291 -27v252c0 61 0 124 171 175c-41 11 -168 47 -171 143v273c0 57 0 101 -143 144c-16 5 -20 6 -20 21c0 16 7 18 19 18c10 0 119 -22 175 -63c49 -37 49 -75 49 -125v-234c0 -61 0 -109 153 -160c9 -3 9 -11 9 -18c0 -14 -4 -15 -12 -18c-125 -41 -150 -85 -150 -142 v-273c0 -19 0 -47 -23 -77c-51 -66 -200 -89 -201 -89c-12 0 -19 2 -19 18c0 6 0 15 11 18c138 41 152 78 152 137'], + 0xE021: [1599,200,754,137,616,'335 43v432c0 96 -94 160 -177 196c-20 9 -21 10 -21 29c0 13 0 20 9 23c35 15 101 42 143 93c46 55 46 86 46 152v378c0 56 0 149 167 225c29 13 63 28 89 28c24 0 25 -2 25 -25c0 -14 0 -20 -9 -23c-39 -14 -115 -42 -156 -94c-33 -43 -33 -62 -33 -128v-408 c0 -128 -146 -196 -209 -222c103 -39 209 -111 209 -234v-408c0 -62 0 -141 185 -207c13 -5 13 -7 13 -25c0 -23 -1 -25 -25 -25c-33 0 -125 37 -184 86c-72 59 -72 126 -72 157'], + 0xE022: [1599,200,754,137,616,'335 25v453c0 128 146 196 209 222c-103 39 -209 111 -209 234v408c0 62 0 140 -184 207c-14 5 -14 8 -14 25c0 23 2 25 25 25c33 0 125 -38 184 -86c72 -60 72 -127 72 -157v-432c0 -53 35 -137 176 -195c16 -7 17 -8 19 -9l1 -3c2 -2 2 -4 2 -18c0 -11 0 -20 -7 -22 l-18 -8c-168 -69 -173 -154 -173 -238v-378c0 -56 0 -149 -167 -225c-29 -13 -63 -28 -89 -28c-23 0 -25 2 -25 25c0 19 1 20 19 27c120 44 179 105 179 173'], + 0xE023: [2199,200,846,151,694,'378 158v544c0 53 -28 182 -211 269c-15 7 -16 10 -16 29s1 19 18 28c51 25 118 63 168 140c41 64 41 109 41 193v544c0 162 176 249 219 271c42 21 56 23 71 23c25 0 26 -1 26 -26c0 -19 0 -21 -12 -26c-31 -13 -107 -45 -161 -110c-55 -67 -55 -119 -55 -158v-520 c0 -60 0 -73 -2 -87c-23 -164 -179 -243 -243 -273c106 -46 158 -104 176 -125c69 -85 69 -157 69 -192l1 -590c0 -114 111 -196 211 -239c15 -7 16 -7 16 -27c0 -25 -1 -26 -26 -26c-15 0 -17 0 -29 5c-99 41 -204 107 -244 210c-17 45 -17 60 -17 143'], + 0xE024: [2199,200,846,151,694,'378 185v520c0 7 2 21 3 28c24 131 125 214 243 267c-91 39 -145 90 -171 119c-73 82 -75 159 -75 198l-1 590c0 113 -108 195 -211 239c-15 6 -15 8 -15 27c0 25 2 26 26 26c21 0 41 -9 69 -22c96 -46 169 -110 201 -188c19 -48 19 -65 19 -148v-544 c0 -56 31 -183 212 -269c15 -7 16 -10 16 -29c0 -17 0 -20 -9 -25c-102 -47 -178 -115 -207 -204c-12 -38 -12 -55 -12 -132v-476c0 -65 0 -67 -1 -73c-9 -129 -112 -216 -221 -267c-45 -21 -47 -22 -67 -22c-25 0 -26 2 -26 26c0 18 1 21 17 28c112 49 199 124 209 232 c1 11 1 66 1 99'], + 0xE025: [2799,200,908,165,742,'408 519v410c0 48 -22 229 -230 342c-12 6 -13 8 -13 29c0 19 1 21 16 30c105 58 227 168 227 366l1 743c17 253 281 357 289 359c1 1 3 1 17 1c27 0 27 -1 27 -27c0 -15 0 -22 -6 -25c-37 -19 -110 -57 -162 -125c-75 -97 -75 -161 -75 -244v-711 c0 -97 -66 -269 -265 -368c75 -35 138 -91 183 -148c82 -105 82 -204 82 -271v-632c0 -98 0 -118 17 -169c43 -128 156 -194 219 -227c7 -3 7 -8 7 -25c0 -26 -1 -27 -27 -27c-13 0 -17 0 -20 1c-157 64 -286 215 -287 363c-1 39 -1 79 -1 118c0 79 1 158 1 237'], + 0xE026: [2799,200,908,165,742,'408 221v711c0 97 66 269 265 368c-75 35 -138 91 -183 148c-82 105 -82 204 -82 271l-1 716c-9 160 -128 257 -233 311c-9 4 -9 8 -9 26c0 26 1 27 27 27c13 0 17 0 20 -1c156 -64 285 -214 287 -363v-118v-237v-410c0 -44 18 -229 234 -344c9 -4 9 -7 9 -27 s-1 -22 -16 -30c-101 -55 -227 -165 -227 -366l-1 -743c-17 -253 -281 -357 -289 -359c-1 -1 -3 -1 -17 -1c-26 0 -27 1 -27 27c0 16 0 22 7 26c42 21 116 59 174 141c62 87 62 152 62 227'], + 0xE027: [500,-226,1123,69,1053,'1014 226h-945v25c55 35 137 116 160 249h49c-4 -27 -19 -128 -105 -225h841c18 0 39 0 39 -25c0 -24 -22 -24 -39 -24'], + 0xE028: [275,-1,1123,69,1053,'1014 226h-841c85 -96 101 -195 105 -225h-49c-23 132 -105 213 -160 249v25h945c18 0 39 0 39 -25c0 -24 -22 -24 -39 -24'], + 0xE029: [500,-226,1123,69,1053,'1053 226h-945c-18 0 -39 0 -39 25c0 24 22 24 39 24h841c-85 96 -101 195 -105 225h49c23 -132 105 -213 160 -249v-25'], + 0xE02A: [275,-1,1123,69,1053,'949 226h-841c-18 0 -39 0 -39 25c0 24 22 24 39 24h945v-25c-55 -35 -137 -116 -160 -249h-49c4 27 19 128 105 225'], + 0xE02B: [500,-1,1123,69,1053,'1014 226h-854c27 -34 85 -109 118 -225h-49c-11 36 -48 155 -160 250c79 63 130 153 160 249h49c-33 -116 -91 -191 -118 -225h854c18 0 39 0 39 -25c0 -24 -22 -24 -39 -24'], + 0xE02C: [500,-1,1123,69,1053,'962 226h-854c-18 0 -39 0 -39 25c0 24 22 24 39 24h854c-27 34 -85 109 -118 225h49c11 -36 48 -155 160 -250c-79 -63 -130 -153 -160 -249h-49c33 116 91 191 118 225'], + 0xE02D: [694,194,569,39,530,'309 609v-764c0 -18 0 -39 -25 -39c-24 0 -24 22 -24 39v764c-93 -68 -178 -95 -221 -106v49c150 39 239 134 246 142c13 -15 99 -104 245 -142v-49c-39 10 -125 36 -221 106'], + 0xE02E: [694,194,569,39,530,'309 655v-764c93 68 178 95 221 106v-49c-147 -38 -233 -129 -245 -142h-1c-13 15 -99 104 -245 142v49c39 -10 125 -36 221 -106v764c0 18 0 39 25 39c24 0 24 -22 24 -39'], + 0xE02F: [500,-1,1123,69,1053,'962 226h-802c27 -34 85 -109 118 -225h-49c-11 36 -48 155 -160 250c79 63 130 153 160 249h49c-33 -116 -91 -191 -118 -225h802c-27 34 -85 109 -118 225h49c11 -36 48 -155 160 -250c-79 -63 -130 -153 -160 -249h-49c33 116 91 191 118 225'], + 0xE030: [773,194,1123,69,1101,'1001 615l-886 -798c-9 -8 -12 -11 -21 -11c-16 0 -25 13 -25 25c0 11 5 15 14 23l886 798c-102 15 -179 51 -238 88c7 6 34 31 37 33c119 -79 245 -79 285 -79c-4 -33 -4 -43 -4 -67c0 -59 9 -136 52 -225c-13 -13 -18 -17 -36 -33c-44 87 -58 172 -64 246'], + 0xE031: [694,273,1123,69,1101,'969 -151l-886 797c-9 8 -14 12 -14 23c0 12 9 25 25 25c4 0 10 0 22 -11l886 -798c4 65 16 154 63 246c20 -17 24 -21 36 -33c-52 -107 -52 -195 -52 -225c0 -24 0 -34 4 -67c-40 0 -166 0 -285 -79c-3 2 -30 27 -37 33c39 24 114 68 238 89'], + 0xE032: [612,112,1123,69,1026,'69 250c158 71 281 201 344 362h49c-33 -84 -80 -160 -138 -226h702v-48h-749c-34 -33 -72 -62 -113 -88c41 -26 79 -55 113 -88h749v-48h-702c58 -66 105 -142 138 -226h-49c-63 161 -186 291 -344 362'], + 0xE033: [612,112,1123,94,1051,'1051 250c-158 -71 -281 -201 -344 -362h-49c33 84 80 160 138 226h-702v48h749c35 33 73 62 113 88c-40 26 -78 55 -113 88h-749v48h702c-58 66 -105 142 -138 226h49c63 -161 186 -291 344 -362'], + 0xE034: [694,170,754,19,732,'376 694c76 -144 203 -254 356 -309v-48c-80 29 -155 71 -221 124v-631h-48v674c-32 31 -61 65 -87 102c-27 -37 -56 -71 -88 -102v-674h-48v631c-66 -53 -141 -95 -221 -124v48c153 55 280 165 357 309'], + 0xE035: [670,194,754,19,732,'376 -194c-77 144 -204 254 -357 308v49c80 -29 155 -71 221 -124v631h48v-674c32 -31 61 -66 88 -102c26 36 55 71 87 102v674h48v-631c66 53 141 95 221 124v-49c-153 -54 -280 -164 -356 -308'], + 0xE036: [612,112,1123,49,1071,'1071 250c-134 -84 -234 -212 -283 -362h-48c26 82 66 158 117 226h-594c51 -68 91 -144 118 -226h-49c-49 150 -149 278 -283 362c134 84 234 212 283 362h49c-27 -82 -67 -158 -118 -226h594c-51 68 -91 144 -117 226h48c49 -150 149 -278 283 -362zM897 162 c28 32 59 61 92 88c-33 27 -64 56 -92 88h-673c-29 -32 -59 -61 -93 -88c34 -27 64 -56 93 -88h673'], + 0xE037: [773,194,1123,21,1053,'153 651l886 -797c9 -8 14 -12 14 -23c0 -12 -9 -25 -25 -25c-4 0 -10 0 -22 11l-886 798c-4 -65 -16 -154 -63 -246c-20 17 -24 21 -36 33c52 107 52 195 52 225c0 24 0 34 -4 67c40 0 166 0 285 79c3 -2 30 -27 37 -33c-39 -24 -114 -68 -238 -89'], + 0xE038: [694,273,1123,21,1053,'1039 646l-886 -798c102 -15 179 -51 238 -88l-37 -33c-119 79 -245 79 -285 79c4 33 4 43 4 67c0 59 -9 136 -52 225c13 13 18 17 36 33c44 -87 58 -172 64 -246l886 798c9 8 12 11 21 11c16 0 25 -13 25 -25c0 -11 -5 -15 -14 -23'], + 0xE039: [441,10,1123,69,1053,'518 196c-106 123 -162 182 -248 182c-84 0 -157 -70 -157 -163c0 -97 69 -179 160 -179c107 0 192 78 245 160zM569 277c48 70 142 164 266 164c128 0 218 -108 218 -225c0 -124 -97 -226 -220 -226c-77 0 -140 33 -176 60c-38 27 -55 48 -104 104 c-48 -70 -142 -164 -266 -164c-128 0 -218 108 -218 225c0 124 97 226 220 226c76 0 139 -34 176 -60c38 -28 55 -48 104 -104zM604 235c106 -123 162 -182 248 -182c84 0 157 70 157 163c0 97 -69 179 -160 179c-107 0 -192 -78 -245 -160'], + 0xE03A: [911,0,1000,448,804,'551 445v-417c0 -27 -1 -28 -29 -28h-45c-28 0 -29 1 -29 29v429c0 142 74 321 281 439c25 14 27 14 47 14c28 0 28 -1 28 -28c0 -18 0 -23 -7 -26c-40 -24 -117 -70 -177 -166c-53 -85 -69 -165 -69 -246'], + 0xE03B: [911,200,630,59,570,'275 270v239c-70 -18 -118 -82 -118 -154c0 -69 47 -134 119 -154c0 23 -1 47 -1 69zM358 560c106 -23 168 -113 168 -205c0 -90 -61 -180 -167 -204c0 -173 -8 -197 -22 -235c-27 -70 -72 -116 -147 -116c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58 c0 -31 -18 -45 -22 -47c6 -6 20 -15 40 -15c44 0 85 29 85 183v136c-104 21 -169 110 -169 205c0 89 60 181 168 204v57c0 85 4 148 31 205c18 37 55 89 132 89c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57c-29 0 -61 18 -61 58c0 33 18 45 22 48c-11 10 -25 14 -40 14 c-80 0 -80 -111 -80 -231c0 -29 1 -59 1 -88zM358 510c1 -9 1 -23 1 -32v-276c70 18 118 82 118 154c0 69 -47 134 -119 154'], + 0xE03C: [2022,200,631,21,623,'275 791v368c-136 -29 -205 -142 -205 -248c0 -110 74 -222 207 -248c0 28 -2 100 -2 128zM366 1209c157 -25 257 -157 257 -298c0 -148 -108 -274 -254 -297v-132c0 -419 -9 -682 -179 -682c-71 0 -141 32 -141 98c0 27 16 44 40 44c27 0 50 -22 50 -44 c0 -2 -1 -19 -11 -31c2 -3 25 -35 62 -35c66 0 79 161 83 210c6 85 8 221 8 312c0 66 -3 211 -3 259c-157 25 -257 157 -257 298c0 148 108 274 254 297v133c0 531 38 681 165 681c73 0 141 -34 141 -98c0 -23 -12 -44 -41 -44c-21 0 -49 17 -49 45c0 4 2 18 10 29 c-22 35 -58 36 -61 36c-54 0 -66 -163 -69 -211c-7 -103 -8 -207 -8 -311c0 -65 3 -221 3 -259zM367 1159c0 -29 2 -101 2 -130v-366c136 29 205 142 205 248c0 110 -74 222 -207 248'], + 0xE03D: [800,200,1185,69,1084,'543 300l-328 -397h869l-15 -103h-968c-17 0 -32 0 -32 16c0 5 3 9 11 19l382 463l-319 435v51c2 16 13 16 32 16h832l-15 -79h-728l290 -396c-2 -13 -3 -15 -11 -25'], + 0xE03E: [1200,200,1615,69,1514,'1498 -200h-1397c-17 0 -32 0 -32 16c0 3 0 7 11 19l555 645l-443 645v43c0 30 2 32 32 32h1151l-15 -86h-992l399 -581c-2 -13 -2 -15 -11 -25l-506 -587h1264'], + 0xE03F: [800,200,1185,85,1099,'996 672v-744c0 -30 0 -79 103 -79v-49h-309v49c103 0 103 49 103 79v823h-602v-823c0 -30 0 -79 103 -79v-49h-309v49c103 0 103 49 103 79v744c0 30 0 79 -103 79v49h1014v-49c-103 0 -103 -49 -103 -79'], + 0xE040: [1200,200,1578,69,1508,'1192 -29v1168h-807v-1168c0 -70 39 -110 165 -110v-61h-481v61c121 0 165 36 165 110v1058c0 70 -39 110 -165 110v61h1439v-61c-121 0 -165 -36 -165 -110v-1058c0 -70 39 -110 165 -110v-61h-481v61c121 0 165 36 165 110'], + 0xE041: [911,200,630,59,570,'477 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218v-121c0 -13 0 -266 -3 -303c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47c6 -6 20 -15 40 -15c85 0 85 118 85 246 c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57c-29 0 -61 18 -61 58c0 33 18 45 22 48'], + 0xE042: [2022,200,631,49,581,'275 773v294c0 201 0 409 8 602c9 239 55 353 157 353c73 0 141 -34 141 -98c0 -23 -12 -44 -41 -44c-21 0 -49 17 -49 45c0 4 2 18 10 29c-22 35 -58 36 -61 36c-54 0 -66 -163 -69 -211c-7 -103 -8 -207 -8 -311c0 -133 1 -278 6 -421v-292c0 -99 -1 -198 -1 -297 c0 -367 -2 -658 -178 -658c-71 0 -141 32 -141 98c0 27 16 44 40 44c27 0 50 -22 50 -44c0 -2 -1 -19 -11 -31c2 -3 25 -35 62 -35c66 0 79 161 83 210c6 85 8 221 8 312c0 135 -2 279 -6 419'], + 0xE043: [800,200,1185,85,1099,'996 672v-744c0 -30 0 -79 103 -79v-49h-1014v49c103 0 103 49 103 79v744c0 30 0 79 -103 79v49h309v-49c-103 0 -103 -49 -103 -79v-823h602v823c0 30 0 79 -103 79v49h309v-49c-103 0 -103 -49 -103 -79'], + 0xE044: [1200,200,1578,69,1508,'1508 -200h-1439v61c121 0 165 36 165 110v1058c0 70 -39 110 -165 110v61h481v-61c-121 0 -165 -36 -165 -110v-1168h807v1168c0 70 -39 110 -165 110v61h481v-61c-121 0 -165 -36 -165 -110v-1058c0 -70 39 -110 165 -110v-61'], + 0xE045: [770,270,569,39,528,'283 770c67 -69 152 -118 245 -142v-49c-80 21 -155 57 -220 107v-872c65 50 140 86 220 107v-49c-93 -24 -178 -73 -245 -142c-67 69 -151 118 -244 142v49c80 -21 154 -57 220 -107v872c-66 -50 -140 -86 -220 -107v49c93 24 177 73 244 142'], + 0xE046: [770,270,754,19,732,'376 -270c-88 122 -214 211 -357 254v48c79 -23 153 -59 221 -106v648c-68 -47 -142 -83 -221 -106v48c143 43 269 132 357 254c87 -122 213 -211 356 -254v-48c-79 23 -153 59 -221 106v-648c68 47 142 83 221 106v-48c-143 -43 -269 -132 -356 -254zM288 -110 c31 -25 60 -53 88 -84c27 31 56 59 87 84v720c-31 25 -60 53 -87 84c-28 -31 -57 -59 -88 -84v-720'], + 0xE047: [103,252,466,-20,470,'470 74v-45c0 -20 0 -29 -13 -29c-205 -6 -341 -102 -421 -243c-5 -9 -8 -9 -28 -9c-28 0 -28 1 -28 28c0 17 0 19 2 21c89 182 284 306 462 306c25 0 26 -1 26 -29'], + 0xE048: [103,252,466,-4,486,'-4 29v45c0 28 1 29 26 29c102 0 261 -48 381 -185c55 -64 81 -120 82 -124c1 -1 1 -3 1 -18c0 -27 0 -28 -28 -28c-21 0 -23 0 -29 11c-93 163 -245 235 -416 241c-17 0 -17 6 -17 29'], + 0xE049: [356,0,466,-20,470,'470 74v-45c0 -26 0 -29 -23 -29c-146 0 -352 87 -465 305c-2 3 -2 5 -2 23c0 27 0 28 28 28c22 0 23 -1 33 -18c93 -162 255 -230 402 -234c27 -1 27 -2 27 -30'], + 0xE04A: [356,0,466,-4,486,'-4 29v45c0 38 14 30 40 30c12 0 145 4 269 96c73 54 108 117 125 147c5 9 8 9 28 9c28 0 28 -1 28 -28c0 -17 0 -19 -2 -21c-81 -169 -272 -307 -465 -307c-23 0 -23 3 -23 29'], + 0xE04B: [631,28,662,97,555,'299 465l16 -9c-15 -12 -43 -35 -44 -35c-11 -9 -15 -21 -18 -33c-9 -38 -12 -77 -12 -116c0 -32 2 -63 5 -94c2 -17 11 -34 26 -47c30 -30 69 -52 109 -73c28 42 37 91 43 138c5 42 7 83 7 125c0 36 -2 71 -4 107c-70 55 -145 105 -236 132c-13 4 -26 5 -40 5 c-13 0 -29 -5 -44 -11l-10 19c43 21 96 47 151 58c50 -6 97 -23 141 -44c58 -28 111 -63 162 -101c2 -28 4 -56 4 -85c0 -101 -15 -201 -49 -299c-73 -45 -168 -103 -222 -130c-54 36 -105 73 -154 113c-4 44 -6 89 -6 133c0 49 3 97 10 146c49 39 107 71 165 101'], + 0xE04C: [691,242,464,70,448,'448 655l-110 -100c-24 17 -63 43 -79 43s-32 -2 -42 -12c-13 -9 -22 -21 -22 -35c0 -15 6 -29 14 -42c15 -23 62 -86 79 -104h139v-7l-17 -39h-123c0 -117 0 -236 -19 -347c-3 -15 -11 -32 -19 -46l-115 -208l-21 4c15 34 41 97 47 131c5 38 9 83 9 125v341h-99v8l15 38 h84v109c0 22 0 44 6 65c4 15 11 28 21 42c18 23 38 44 57 56c20 11 28 14 42 14c58 0 83 -14 116 -34l34 19'], + 0xE04D: [688,242,459,70,427,'288 405h139v-7l-17 -39h-123c0 -117 0 -240 -20 -349c-3 -15 -10 -29 -18 -43c0 -1 -81 -150 -115 -209l-21 3c14 34 41 98 47 132c6 38 10 83 10 125v341h-100v8l15 38h85c0 15 -9 39 -18 64c-11 29 -20 63 -20 86c41 48 87 94 139 133c15 -10 30 -20 47 -28 c11 -5 23 -9 35 -9c18 0 34 6 47 16l11 -12l-87 -86c-40 0 -79 7 -117 17c3 -35 20 -69 40 -100c17 -26 28 -48 41 -81'], + 0xE04E: [474,212,667,100,574,'552 -49l-154 -147c-33 -8 -68 -16 -104 -16c-73 0 -143 26 -194 69l68 99h10c29 -59 104 -90 179 -90c27 0 56 0 76 16c14 12 17 31 17 47c0 42 -14 109 -25 163l-197 -121c-32 32 -63 64 -99 93c-1 34 -2 68 -2 102c0 68 3 136 14 204c59 39 125 71 190 104 c45 -21 95 -34 144 -45l84 45l15 -12c-29 -62 -33 -128 -33 -194c0 -73 2 -147 14 -220c2 -18 7 -45 7 -53c0 -15 -4 -30 -10 -44zM423 124l2 223c-59 7 -116 26 -167 51c-19 -44 -23 -99 -23 -140c0 -33 2 -66 6 -99c2 -15 9 -30 21 -42c10 -12 44 -38 65 -52'], + 0xE04F: [684,27,464,62,427,'254 405h126v-7l-16 -39h-110c0 -77 0 -184 3 -229c27 -20 61 -42 91 -58l64 20l4 -18c-60 -32 -120 -65 -172 -101c-38 33 -77 63 -122 89c15 51 15 197 15 297h-75v8l15 38h60c0 87 0 206 -8 258l15 10l31 -76c51 33 104 62 161 87l16 -8c-30 -15 -52 -41 -70 -67 c-20 -29 -23 -63 -23 -97l121 72c18 -24 33 -49 47 -75l-63 -64l-8 -2c-11 14 -23 28 -37 40c-9 7 -19 14 -31 14c-6 0 -13 -1 -17 -5c-17 -15 -17 -55 -17 -87'], + 0xE050: [692,-448,373,75,305,'215 448h-43c6 38 8 68 9 111c-30 -21 -57 -44 -84 -72l-22 35c36 17 66 35 95 53c-32 21 -61 37 -93 52l29 28c24 -21 47 -40 74 -59c0 32 0 63 -8 96h43c-7 -33 -10 -62 -12 -95c28 20 53 41 74 62l28 -31c-36 -15 -65 -32 -96 -52c33 -23 65 -43 96 -56l-29 -29 c-19 19 -45 41 -73 61c1 -35 3 -68 12 -104'], + 0xE051: [586,74,872,72,795,'454 276h341l-6 -40h-335v-303l-44 -7v310h-338l8 40h330v304l44 6v-310'], + 0xE052: [138,210,373,117,277,'163 -210l-20 14c21 26 52 68 63 93c5 12 8 29 8 42c0 15 -4 30 -14 42l-76 83c-5 5 -7 16 -7 26c0 13 13 28 25 36c9 6 27 12 39 12c9 0 29 -8 37 -18c16 -20 40 -73 50 -96c6 -16 9 -34 9 -51c0 -25 -11 -47 -24 -69c-19 -32 -43 -64 -90 -114'], + 0xE053: [276,-236,874,72,796,'789 236h-717l8 40h716'], + 0xE054: [119,15,372,127,273,'127 52c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67'], + 0xE055: [720,192,607,76,538,'532 715l6 -11l-424 -896l-35 8l-3 14l421 888l12 2'], + 0xE056: [713,9,616,107,423,'407 32l-115 -41l-22 14c22 185 25 371 14 556c0 8 -3 16 -9 21c-7 5 -16 13 -22 13h-146l1 31l291 86c5 2 12 2 17 -2c4 -3 8 -8 7 -13c-13 -137 -20 -275 -20 -413c0 -84 0 -188 4 -252'], + 0xE057: [1007,0,938,86,970,'928 1007l42 -23l-529 -984h-35l-227 448l-72 -50l-21 21l150 100l207 -411'], + 0xE058: [455,12,309,101,226,'101 45c0 31 28 57 63 57c34 0 62 -26 62 -57s-28 -57 -62 -57c-35 0 -63 26 -63 57zM101 398c0 31 28 57 63 57c34 0 62 -26 62 -57s-28 -57 -62 -57c-35 0 -63 26 -63 57'], + 0xE059: [457,190,309,99,241,'99 400c0 31 27 57 62 57c34 0 62 -26 62 -57s-28 -57 -62 -57c-35 0 -62 26 -62 57zM143 -190l-17 13c19 23 32 48 44 74c7 13 8 26 8 39c0 14 -6 27 -15 38l-37 51c-5 8 -9 17 -9 26c0 12 1 27 9 35l3 2c9 7 21 11 34 11c9 0 18 -4 23 -11c19 -18 34 -38 44 -60 c7 -16 11 -33 11 -50c0 -27 -11 -52 -25 -75c-21 -33 -47 -63 -73 -93'], + 0xE05A: [369,-132,873,80,808,'802 329h-722l8 40h720zM802 132h-722l8 40h720'], + 0xE05B: [693,11,460,87,428,'153 46c0 31 28 57 62 57s62 -26 62 -57s-28 -57 -62 -57s-62 26 -62 57zM241 211l-51 -32c-24 14 -45 41 -45 71c0 21 15 38 28 55c24 28 52 52 82 76c53 42 96 98 96 164c0 30 -14 61 -37 82c-19 17 -44 34 -70 34s-49 -8 -68 -25c-11 -11 -20 -31 -20 -47 c0 -24 14 -46 34 -61l-73 -40c-19 16 -30 43 -30 69c0 29 15 55 37 75c44 40 102 61 163 61c36 0 75 -8 101 -32c27 -25 40 -60 40 -96c0 -33 -14 -60 -33 -89c-19 -30 -79 -79 -112 -106c-39 -32 -72 -71 -72 -96c0 -20 12 -40 30 -52v-11'], + 0xE05C: [688,31,927,62,876,'627 124l-237 -155c-28 29 -57 57 -92 80c-21 14 -44 24 -71 24c-35 0 -95 -23 -136 -42l-22 17l204 128c27 17 53 36 77 56c71 59 102 141 102 223c0 49 -27 95 -69 129c-30 25 -72 40 -114 40c-37 0 -60 -7 -80 -24c-17 -14 -22 -35 -22 -54c0 -12 6 -23 13 -33 c11 -15 24 -28 39 -41c16 -14 32 -28 45 -45c8 -10 15 -20 15 -32c0 -30 -23 -56 -47 -77c-33 -27 -71 -50 -112 -69l-20 15c20 11 37 24 52 40c10 11 19 23 19 37c0 16 -31 48 -52 70c-17 16 -31 33 -43 52c-7 13 -14 26 -14 40c0 28 16 56 46 83c53 47 175 102 249 102 c60 0 119 -15 162 -50c38 -33 60 -77 60 -123c0 -69 -26 -136 -61 -198l-197 -158c26 0 51 -9 73 -21c32 -16 59 -37 84 -59c37 9 99 46 145 74v429l177 105l14 -13l-52 -51c-8 -49 -8 -215 -8 -323c0 -40 1 -81 4 -121l58 -101l54 21l6 -22c-55 -35 -107 -73 -163 -106 l-12 3'], + 0xE05D: [685,31,1127,89,1014,'956 100l-175 -111c-26 -13 -64 -20 -99 -20c-65 0 -127 16 -186 35s-120 37 -185 37s-124 -20 -180 -50l-13 24l141 77c43 24 85 49 122 79c20 18 40 41 46 64c9 36 13 81 13 120c0 37 0 76 -7 112c-9 44 -30 90 -68 122c-25 20 -54 38 -89 38c-24 0 -46 -9 -62 -23 c-15 -12 -22 -31 -22 -48c0 -13 8 -24 16 -34c14 -18 30 -34 47 -50c15 -13 29 -27 40 -43c7 -10 14 -21 14 -33c0 -10 -3 -21 -10 -30c-9 -13 -23 -26 -35 -36c-40 -34 -86 -60 -134 -84l-20 13c23 15 44 30 66 48c12 10 19 24 19 39c0 16 -24 40 -43 58 c-18 17 -34 36 -47 57c-9 15 -16 31 -16 48c0 29 41 70 72 95c59 50 132 81 210 81c81 0 144 -49 176 -108c43 30 87 59 137 80c34 15 71 28 110 28c22 0 46 -4 62 -18c15 -12 29 -60 37 -92c5 -18 13 -36 25 -51c9 -9 19 -19 34 -19c21 0 42 4 62 10v-24l-208 -103v-5 c26 -3 47 -6 77 -14c24 -7 48 -16 66 -31c39 -32 53 -77 53 -122s-16 -79 -46 -116zM542 241l-148 -104c85 -2 167 -23 246 -49c51 -17 106 -34 157 -34c19 0 39 5 52 16c23 19 27 48 27 74c0 48 -14 99 -55 133c-41 35 -99 50 -157 50c-33 0 -66 -4 -98 -11 c-4 -25 -14 -51 -24 -75zM569 346c84 19 177 46 257 87c-10 5 -22 12 -28 19c-7 8 -13 17 -15 26c-1 2 -8 40 -13 60c-5 24 -11 51 -29 67c-10 8 -24 14 -37 14c-25 0 -48 -9 -67 -21c-28 -18 -52 -45 -74 -78c7 -30 7 -58 7 -101c0 -25 0 -51 -1 -73'], + 0xE05E: [677,32,801,104,776,'351 593l26 -25c83 52 176 93 279 109c8 -36 20 -72 51 -98c8 -7 20 -7 31 -7c8 0 26 3 38 6v-25c-28 -11 -108 -40 -143 -40c-9 0 -17 1 -24 5c-10 6 -21 13 -28 22c-19 22 -36 47 -50 71c-9 -2 -18 -5 -24 -10c-13 -12 -19 -30 -19 -46c0 -17 11 -49 21 -74 c12 -28 20 -61 20 -86c0 -32 -6 -66 -34 -89c-20 -17 -45 -28 -69 -40c-38 -16 -78 -30 -118 -43l-20 14c26 7 46 22 64 37c22 18 38 41 38 67c0 32 -7 63 -16 94c-10 33 -21 71 -21 98c0 9 2 16 4 22c-24 -2 -48 -11 -65 -26c-21 -17 -34 -40 -43 -64 c-11 -30 -14 -62 -14 -94c0 -88 28 -177 103 -240c64 -53 149 -86 239 -86c21 0 46 1 63 9l118 54l4 -27l-169 -103c-29 -6 -57 -10 -87 -10c-104 0 -210 21 -284 82c-81 68 -118 162 -118 256c0 62 19 123 48 179c22 16 127 77 199 108'], + 0xE05F: [685,29,1064,63,946,'453 549l22 -11c-27 -22 -63 -52 -63 -75c0 -21 23 -47 47 -75c14 -16 37 -42 49 -60c8 -11 14 -25 14 -39c0 -25 -14 -48 -35 -66c-35 -29 -80 -53 -129 -71c62 -10 182 -42 266 -64c25 -7 53 -13 80 -13c26 0 46 13 63 28c24 18 36 45 44 71c13 34 17 69 17 104 c0 86 -26 174 -100 235c-36 30 -82 49 -130 62c-59 16 -121 22 -184 22c-90 0 -184 -17 -250 -71c-52 -44 -72 -100 -76 -161l-25 7c0 85 32 169 106 230c36 31 84 49 134 61c66 16 134 22 201 22c128 0 258 -25 349 -101c67 -56 93 -134 93 -212c0 -76 -29 -160 -80 -231 c-82 -68 -157 -117 -254 -170c-48 0 -103 18 -152 34c-79 26 -178 58 -243 58c-31 0 -61 -10 -82 -28c-19 -16 -38 -32 -54 -49l-17 19c42 58 100 108 158 156c33 0 66 1 99 7c20 3 40 7 55 19c14 12 20 28 20 45c0 13 -7 25 -14 36c-12 18 -26 34 -41 49s-27 29 -39 46 c-7 10 -13 21 -13 33c0 14 3 28 12 40c13 17 26 31 43 45c34 25 70 48 109 68'], + 0xE060: [687,29,861,106,780,'658 461c20 -36 46 -65 83 -89v-12l-91 -55c-12 7 -25 13 -45 26l-36 25c-5 3 -11 6 -16 6c-9 0 -16 -4 -23 -9c-7 -15 -18 -27 -31 -38c-51 -42 -116 -69 -184 -89l-23 14c27 10 49 23 69 40c18 14 32 32 32 53c0 30 -5 63 -14 94c-9 28 -15 51 -23 79c-2 8 -3 15 -3 23 c0 13 2 26 6 38c-20 -4 -37 -14 -53 -26c-53 -45 -75 -107 -75 -170c0 -87 39 -171 113 -233c59 -49 137 -84 220 -84c73 0 141 23 199 58v-27l-158 -103c-39 -7 -78 -11 -118 -11c-96 0 -195 24 -264 81c-81 67 -117 159 -117 253c0 61 13 122 42 178c61 43 129 81 197 116 l44 -18c81 47 171 80 265 106c6 -22 14 -44 25 -65c8 -15 15 -25 28 -36c7 -6 15 -9 25 -9c14 0 34 4 48 7l-3 -27c-43 -13 -133 -40 -134 -40c-4 -1 -7 -1 -11 -1s-9 0 -12 2c-11 7 -20 14 -28 24l-60 76c-20 -12 -37 -28 -37 -48c0 -28 8 -66 19 -96s20 -66 20 -93'], + 0xE061: [684,147,799,49,781,'479 299l153 119c31 -25 50 -57 71 -94l-69 -60c-8 12 -21 28 -29 35c-8 8 -25 14 -40 14c-21 0 -49 -17 -68 -33c34 -34 69 -73 95 -112c16 -24 32 -49 32 -77c0 -51 -22 -101 -66 -137c-67 -57 -154 -101 -252 -101c-38 0 -80 7 -109 30c-31 27 -40 66 -40 103 c0 27 4 49 10 75c2 13 5 39 5 55c0 15 -3 29 -17 40c-9 8 -23 13 -36 13c-17 0 -46 -13 -66 -23l-4 23c33 18 67 35 102 47c27 9 54 14 82 14c19 0 32 -5 45 -15c11 -10 19 -26 19 -39c0 -22 -2 -45 -8 -69c-11 -43 -17 -87 -17 -123c0 -26 6 -53 28 -72 c17 -12 38 -19 59 -19c42 0 82 16 112 41c31 26 38 65 38 101c0 39 -56 101 -97 147c-30 35 -61 70 -86 109c-15 21 -29 44 -29 69c0 17 7 33 18 48c12 19 29 37 49 53c29 24 65 44 102 61c-71 32 -167 74 -220 74c-22 0 -47 -4 -63 -18c-37 -30 -54 -71 -64 -113l-27 16 c14 58 40 115 91 157c38 32 91 46 144 46c29 0 58 -7 84 -15c42 -11 82 -27 121 -43c44 -18 107 -45 133 -45s72 36 103 61l13 -16c-47 -45 -120 -114 -154 -140c-41 2 -87 13 -125 24c-29 -9 -53 -19 -75 -37c-16 -13 -24 -32 -24 -50c0 -19 9 -37 20 -55 c15 -25 34 -47 56 -69'], + 0xE062: [692,27,1009,107,893,'346 596l36 -12c45 30 95 56 147 78l22 -12c-44 -18 -78 -60 -78 -100c0 -29 17 -97 31 -144l68 34l116 86c-36 6 -65 16 -92 37c-13 12 -24 33 -30 49l115 80c7 -21 15 -43 33 -58c20 -16 47 -22 74 -22c12 0 43 8 66 19l3 -24c-74 -49 -140 -96 -208 -149 c68 0 138 -13 187 -54c36 -30 57 -71 57 -113c0 -95 -66 -179 -162 -227l-153 -82c-36 -5 -70 -9 -98 -9c-93 0 -185 25 -249 81c-84 73 -124 166 -124 264c0 36 6 73 15 108c7 25 17 46 34 70c64 39 127 72 190 100zM331 214l-11 18c16 6 29 12 44 24c15 16 24 35 24 55 c0 13 -11 70 -21 102c-16 50 -22 80 -22 100c0 19 2 39 13 55c-31 -2 -52 -15 -74 -33c-43 -36 -57 -95 -57 -144c0 -96 39 -190 121 -258c60 -51 140 -84 227 -84c48 0 97 12 132 39c41 31 57 81 57 128c0 48 -17 96 -58 130c-33 28 -82 43 -129 43c-24 0 -46 -1 -70 -9 c2 -11 4 -23 4 -35c0 -24 -6 -48 -26 -65c-17 -14 -39 -25 -60 -34c-32 -13 -60 -22 -94 -32'], + 0xE063: [684,127,931,32,800,'393 127l-169 -145c-17 15 -35 29 -54 40c-14 7 -28 14 -44 14c-34 0 -68 -30 -78 -39l-16 18c48 47 118 117 163 117c43 0 78 -29 101 -56c18 20 30 40 30 64c0 34 -42 101 -74 149s-62 100 -62 156c0 25 14 48 30 69c24 33 54 62 85 90c34 30 78 55 119 80 c21 -18 45 -35 70 -48c17 -9 37 -17 57 -17c35 0 90 34 114 51l14 -18c-36 -32 -91 -80 -142 -111c-15 -4 -32 -7 -48 -7c-60 0 -113 27 -160 56c-21 -18 -38 -40 -38 -65c0 -23 6 -45 15 -66c15 -35 34 -71 54 -102c58 43 128 88 191 122c65 0 151 -23 190 -45 c10 -5 31 -29 35 -40c20 -58 24 -91 24 -152c0 -87 -15 -173 -52 -254c-1 0 -109 -67 -163 -100c-14 -8 -31 -15 -48 -15c-39 0 -74 17 -99 40l60 70l16 1c7 -14 17 -28 30 -38c10 -8 22 -15 37 -15c21 0 37 8 53 20c38 31 38 150 38 227c0 34 -4 138 -46 172 c-27 22 -63 38 -100 38c-24 0 -47 -2 -68 -9c-19 -7 -45 -19 -83 -48c24 -40 47 -94 47 -126c0 -27 -7 -58 -29 -78'], + 0xE064: [683,25,731,64,667,'658 670l9 -15c-62 -48 -135 -98 -209 -133l-112 36c-34 9 -67 18 -103 18c-33 0 -68 -12 -92 -31c-27 -23 -47 -53 -65 -82h-7l-15 14c19 37 39 73 63 108c15 22 31 44 53 61c30 24 71 37 112 37c39 0 91 -19 135 -34c36 -13 94 -33 113 -33s35 5 52 13 c23 11 45 26 66 41zM78 -16l-7 18c48 48 107 96 162 138c24 -42 38 -67 75 -97c14 -11 32 -15 50 -15c25 0 43 8 61 21c15 13 25 38 31 56c8 25 8 51 8 77c0 10 -8 75 -12 112c-3 26 -5 52 -5 77c0 21 1 42 4 62c52 55 112 104 181 145l25 -10c-24 -17 -40 -31 -57 -53 c-12 -16 -23 -40 -23 -60c0 -24 0 -54 3 -72c8 -48 15 -97 15 -145c0 -60 -25 -122 -77 -165c-66 -56 -144 -98 -240 -98c-49 0 -94 21 -131 47'], + 0xE065: [681,142,729,24,659,'659 609v-23c-69 -33 -151 -64 -227 -85c-29 12 -71 37 -77 41c-36 19 -75 37 -119 37c-24 0 -53 -7 -69 -21c-23 -18 -37 -40 -51 -62l-19 14c27 46 56 91 100 127c31 26 72 44 115 44c18 0 33 -7 47 -14c25 -11 47 -24 70 -38c21 -14 44 -28 67 -39 c14 -6 30 -11 46 -11c33 0 79 16 117 30zM33 59l-9 18c30 20 63 39 99 53c26 11 55 19 84 19c21 0 42 -5 58 -18c10 -8 12 -21 13 -33c1 -6 1 -67 1 -100s11 -65 39 -88c12 -10 28 -17 44 -17c27 0 51 7 70 23c26 22 32 59 32 90c0 47 -18 111 -35 165 c-15 46 -26 93 -26 140c0 17 2 34 5 51c51 62 112 117 182 164l25 -9c-46 -40 -83 -88 -84 -145c0 -44 7 -87 20 -129c15 -52 31 -105 31 -159c0 -56 -22 -111 -70 -151c-53 -44 -122 -75 -197 -75c-38 0 -79 3 -107 26c-30 25 -43 59 -48 94c-6 29 -13 73 -25 83 c-11 9 -27 15 -43 15c-20 0 -40 -8 -59 -17'], + 0xE066: [682,26,868,52,861,'784 348l-200 -65c80 -15 97 -46 110 -126c7 -41 28 -67 46 -79c13 -8 29 -11 46 -11c25 0 48 11 68 24l7 -22c-31 -26 -65 -51 -103 -71c-23 -12 -49 -24 -76 -24c-18 0 -37 1 -49 11c-34 29 -46 69 -52 108c-2 11 -12 72 -38 108c-8 11 -30 29 -74 29 c-36 0 -72 -11 -100 -24c1 -13 3 -25 3 -37c0 -14 -2 -28 -7 -45c-44 -46 -95 -93 -153 -127c-14 -8 -28 -14 -40 -19c-39 0 -74 14 -95 30c-3 2 -16 15 -25 24l88 85h14c9 -20 18 -39 36 -54c9 -8 22 -17 36 -17c10 0 23 2 29 8c16 14 19 33 19 53c0 34 -25 91 -42 133 c-24 55 -45 111 -45 169c0 30 13 59 31 85c23 35 54 65 87 93c71 59 166 95 266 95c119 0 158 -35 186 -64c2 -10 3 -19 3 -30c0 -22 -5 -50 -22 -98l-21 -6c-7 39 -25 58 -50 79c-46 39 -114 62 -179 62c-55 0 -110 -15 -150 -48c-28 -24 -39 -57 -39 -90 c0 -43 10 -84 24 -125c42 39 86 75 139 104c37 19 78 36 122 36c22 0 45 -4 61 -17c16 -15 29 -44 38 -68c6 -18 12 -35 22 -44c6 -6 17 -10 27 -10c12 0 24 0 47 6zM361 230c33 14 105 46 182 59l56 23c-13 9 -29 36 -36 55c-4 17 -12 35 -27 47c-11 9 -25 18 -40 18 c-38 0 -73 -15 -99 -37c-24 -20 -44 -52 -59 -81c8 -26 17 -58 23 -84'], + 0xE067: [684,28,865,63,811,'406 257c-24 -29 -69 -72 -118 -104c1 0 108 -32 156 -47c57 -17 118 -24 180 -24c42 0 85 11 116 37c29 24 43 58 52 92l19 -11c-10 -40 -22 -81 -39 -119c-12 -24 -23 -48 -44 -66c-31 -25 -71 -43 -115 -43c-94 0 -185 23 -272 53c-50 17 -121 41 -154 41 c-19 0 -39 -6 -53 -17c-12 -11 -38 -44 -55 -67l-16 13c28 59 66 115 119 161c11 6 25 9 42 9c7 0 14 0 22 -2c15 4 37 12 48 21c15 12 21 30 21 47c0 22 -38 78 -63 115c-21 32 -38 67 -38 104c0 25 11 50 26 72c19 30 46 57 76 81c68 57 165 81 261 81c40 0 83 -5 113 -29 c13 -12 17 -27 20 -43c4 -23 3 -47 0 -70c-2 -13 -3 -21 -3 -34c0 -17 9 -31 25 -42c6 -5 46 -5 64 -5v-18l-175 -49c-11 0 -22 1 -30 7c-13 12 -21 27 -21 43c0 14 4 26 6 40c2 17 5 48 5 52c0 23 -8 46 -28 62c-25 21 -61 30 -97 30c-32 0 -66 -8 -89 -27 c-25 -21 -36 -49 -36 -78c0 -40 18 -78 38 -115c14 -26 26 -53 34 -82c5 -15 8 -31 8 -47c0 -5 -1 -17 -5 -22'], + 0xE068: [686,33,1327,59,1289,'1279 76l-182 -109l-82 111c0 105 1 237 7 289c33 48 64 77 102 103c-11 3 -18 5 -26 17c-9 14 -23 40 -32 62c-7 18 -16 36 -29 48c-11 8 -24 15 -38 15c-25 0 -50 -5 -70 -16c-26 -14 -41 -26 -62 -45c5 -28 9 -72 9 -101c0 -107 -15 -216 -71 -313l-173 -165 c-14 12 -29 24 -46 33c-11 6 -24 12 -38 12c-18 0 -37 -5 -50 -16l-16 -14l-18 15c26 28 68 71 80 82c19 17 45 33 74 33c26 0 58 -24 79 -41c28 34 37 72 46 112c13 59 14 124 14 183c0 40 -3 80 -15 119c-9 27 -22 54 -45 74c-14 12 -33 23 -53 23c-15 0 -29 -4 -42 -10 c-16 -9 -32 -21 -51 -35c8 -31 14 -62 14 -94c0 -107 -34 -221 -88 -318l-224 -155c-13 15 -28 29 -46 39c-14 8 -29 14 -45 14c-21 0 -40 -5 -56 -17c-10 -8 -24 -20 -30 -26l-15 15c29 32 67 72 92 92c24 20 55 31 88 31c16 0 31 -7 43 -15c18 -11 36 -28 49 -44 c14 10 26 19 36 28c28 25 39 60 51 95c15 51 20 104 20 157c0 46 -4 94 -18 139c-12 32 -28 66 -56 90c-32 27 -72 46 -119 46c-21 0 -52 -1 -68 -15c-13 -11 -24 -23 -24 -39c0 -17 37 -59 63 -85c43 -43 59 -67 59 -84c0 -29 -22 -55 -46 -76c-36 -29 -76 -51 -118 -72 l-19 17c22 10 39 20 54 35c10 11 21 24 21 38c0 20 -28 54 -51 76c-27 26 -59 63 -59 89c0 18 12 35 23 51c18 24 42 45 66 65c54 45 140 67 192 67c49 0 106 -15 142 -44c24 -20 47 -47 59 -74c31 23 63 44 100 59c26 11 56 20 87 20c35 0 69 -12 94 -32 c14 -12 24 -25 34 -38c37 30 78 58 124 78c36 16 75 28 117 28c15 0 31 -2 44 -12c10 -9 25 -37 34 -55c9 -16 18 -32 32 -44c9 -9 21 -14 35 -14c16 0 31 3 47 8v-18c-49 -25 -75 -41 -119 -72c-5 -4 -25 -28 -28 -39c-9 -36 -9 -61 -9 -97c0 -55 2 -110 14 -164 c4 -19 10 -37 18 -55c6 -13 10 -18 22 -27c7 -6 20 -9 30 -9c9 0 42 2 62 9v-18'], + 0xE069: [681,33,1065,59,1019,'909 476c-5 -4 -25 -28 -28 -39c-9 -36 -10 -61 -10 -97c0 -55 3 -110 15 -164c4 -19 10 -37 18 -55c6 -13 10 -18 22 -27c7 -6 20 -9 30 -9c9 0 42 2 62 9v-18l-182 -109l-82 111c0 105 1 237 7 289c33 48 64 79 102 105c-14 0 -26 7 -35 15c-14 12 -24 27 -30 42 c-10 25 -25 57 -42 71c-11 8 -24 14 -39 14c-25 0 -54 -16 -73 -30c-36 -28 -58 -50 -84 -83c16 -48 25 -113 25 -166c0 -72 -13 -144 -45 -210l-209 -143c-9 -4 -24 -10 -30 -10c-52 0 -95 27 -130 57l89 94h20c5 -14 20 -33 39 -49c14 -11 32 -17 53 -17c25 0 47 14 65 28 c15 13 19 31 23 49c8 29 10 58 10 88c0 70 -9 140 -32 208c-17 51 -44 100 -89 138c-31 26 -71 47 -117 47c-22 0 -45 -3 -61 -16c-13 -11 -20 -24 -20 -39s10 -30 18 -43c14 -20 31 -38 50 -56c14 -13 27 -27 37 -43c8 -10 11 -21 11 -33c0 -26 -18 -46 -38 -65 c-33 -31 -72 -55 -113 -78l-23 16c19 11 36 24 49 39c9 11 18 23 18 37c0 20 -20 39 -37 55c-19 18 -35 36 -47 56c-9 15 -17 30 -17 47c0 20 9 39 20 57c16 24 36 46 60 64c53 39 125 68 199 68c50 0 100 -15 136 -45c33 -28 58 -63 71 -101c23 22 45 43 69 63 c51 43 115 80 189 80c26 0 54 -3 73 -19c10 -9 24 -36 36 -64c6 -13 15 -24 26 -34c6 -7 13 -13 23 -13c19 0 37 3 53 9l5 -15c-30 -13 -67 -37 -110 -66'], + 0xE06A: [726,29,1059,43,931,'334 608c0 24 4 35 36 60c18 13 53 45 63 58h25c-6 -9 -11 -19 -11 -30c0 -9 10 -15 21 -17c12 -3 70 -5 105 -7c57 -3 114 -10 168 -24c41 -12 80 -27 111 -53c30 -24 46 -55 58 -87c16 -42 21 -86 21 -130c0 -86 -30 -170 -83 -244c-58 -51 -119 -88 -189 -121 c-49 -23 -102 -42 -158 -42c-65 0 -128 18 -191 37c-41 13 -91 28 -127 28c-48 0 -88 -25 -118 -54l-22 22l91 110c36 8 71 17 97 38c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -32 50 -53 76c-27 32 -51 74 -52 104c0 44 78 117 153 157l14 -14c-26 -18 -57 -42 -57 -77 c0 -16 25 -67 48 -98c24 -32 41 -59 60 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -57 -62 -90 -83c23 0 42 -2 72 -9c59 -14 119 -31 176 -50c50 -17 84 -27 150 -27c27 0 52 15 71 29c34 25 49 66 62 101c15 49 20 100 20 150c0 40 -5 81 -18 119 c-12 30 -27 59 -53 81c-25 20 -57 29 -90 36c-47 10 -76 13 -125 13c-25 0 -48 -1 -69 -3c-16 -1 -30 -1 -45 -1c-47 0 -65 26 -65 36'], + 0xE06B: [685,223,1060,51,995,'550 -141l-141 -82l-27 14c12 35 16 70 20 105c5 52 7 106 7 158c-27 11 -61 22 -87 22c-38 0 -69 -18 -94 -40c-19 -15 -37 -30 -52 -48l-15 19c32 47 71 104 109 135c25 21 58 37 95 37c12 0 27 -1 43 -6v196c0 43 -6 87 -21 128c-12 33 -30 64 -58 88 c-25 20 -54 34 -89 34c-39 0 -59 -12 -72 -22c-16 -13 -23 -30 -23 -49c0 -12 10 -26 19 -36c13 -16 26 -32 42 -46c27 -24 53 -59 53 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-37 -32 -77 -57 -122 -82l-16 19c19 12 30 21 44 38c10 12 18 26 18 41 c0 16 -27 46 -47 67c-14 15 -31 29 -42 46c-8 9 -8 23 -8 35c0 23 12 44 25 64c18 27 43 51 68 73c46 38 106 67 185 67c55 0 99 -17 137 -48c24 -20 48 -53 61 -80c43 36 89 71 143 94c39 17 82 30 126 30c21 0 44 -2 59 -15c15 -12 21 -42 25 -65c2 -20 11 -39 25 -56 c10 -11 24 -22 41 -22c13 0 31 4 42 7l7 -19c-46 -20 -91 -41 -129 -69c-15 -12 -29 -27 -29 -45c0 -32 18 -61 39 -88c23 -31 55 -74 55 -104c0 -24 -5 -48 -20 -69c-24 -35 -49 -63 -84 -94c-20 -18 -43 -36 -69 -47c-19 -9 -41 -15 -62 -15c-55 0 -111 18 -160 39 c0 -54 5 -106 14 -160zM536 518v-376l178 -63c27 -9 51 -17 79 -17c12 0 24 4 33 11c12 10 16 22 16 36c0 15 -8 34 -16 47c-13 21 -27 40 -43 59c-27 32 -58 76 -58 100c0 19 9 37 23 52c26 28 55 53 86 76c-20 3 -40 9 -49 17c-8 6 -24 22 -24 62c0 15 -2 30 -6 44 c-3 10 -7 20 -15 27c-14 12 -33 19 -52 19c-38 0 -71 -17 -97 -39c-10 -9 -36 -33 -55 -55'], + 0xE06C: [726,82,1059,43,967,'762 66c20 -18 40 -33 65 -47c16 -8 33 -17 53 -17c29 0 59 7 87 16v-21c-54 -28 -109 -55 -166 -79c-61 22 -119 48 -172 83c-37 -17 -86 -30 -128 -30c-65 0 -128 18 -191 37c-41 13 -91 28 -127 28c-48 0 -88 -25 -118 -54l-22 22l91 110c36 8 71 17 97 38 c15 12 22 29 22 47c0 19 -8 37 -17 55c-14 26 -32 50 -53 76c-27 32 -51 74 -52 104c0 44 78 117 153 157l14 -14c-26 -18 -57 -42 -57 -77c0 -16 25 -67 48 -98c24 -32 41 -59 60 -93c5 -9 10 -23 10 -33c0 -22 -7 -41 -21 -60c-23 -30 -57 -62 -90 -83c23 0 42 -2 72 -9 c59 -14 119 -31 176 -50c50 -17 84 -27 150 -27c27 0 52 15 71 29c34 25 49 66 62 101c15 49 20 100 20 150c0 40 -5 81 -18 119c-12 30 -27 59 -53 81c-25 20 -57 29 -90 36c-47 10 -76 13 -125 13c-25 0 -48 -1 -69 -3c-16 -1 -30 -1 -45 -1c-47 0 -65 26 -65 36 c0 24 4 35 36 60c18 13 53 45 63 58h25c-6 -9 -11 -19 -11 -30c0 -9 10 -15 21 -17c12 -3 70 -5 105 -7c57 -3 114 -10 168 -24c41 -12 80 -27 111 -53c30 -24 46 -55 58 -87c16 -42 21 -86 21 -130c0 -86 -30 -170 -83 -244c-22 -24 -57 -48 -86 -68'], + 0xE06D: [689,29,1060,51,1029,'241 619c-29 0 -60 -12 -73 -22c-16 -13 -23 -30 -23 -49c0 -12 10 -26 19 -36c13 -16 26 -32 42 -46c27 -24 53 -59 53 -80c0 -11 -1 -21 -7 -30c-8 -14 -16 -28 -28 -39c-37 -32 -77 -57 -122 -82l-16 19c19 12 30 21 44 38c10 12 18 26 18 41c0 16 -27 46 -47 67 c-14 15 -31 29 -42 46c-8 9 -8 23 -8 35c0 23 12 44 25 64c18 27 43 51 68 73c46 38 111 71 191 71c64 0 111 -19 153 -54c26 -22 51 -52 62 -81c36 35 79 72 125 98c33 18 71 33 111 33c26 0 51 -7 69 -23c22 -17 26 -48 29 -74c3 -23 6 -53 21 -66c12 -10 30 -12 46 -12 c11 0 26 1 38 5l6 -13c-95 -36 -149 -62 -214 -101c34 -4 74 -22 95 -45c0 -58 1 -127 8 -163c4 -22 12 -45 25 -63c12 -16 25 -30 40 -43c7 -6 22 -6 35 -6c14 0 29 7 44 14l1 -23l-174 -101c-23 46 -58 92 -91 137c0 46 0 118 -3 139c-2 18 -9 45 -24 59 c-21 16 -40 29 -67 34c-16 3 -32 4 -47 4c-21 0 -42 -7 -61 -15c-11 -68 -31 -118 -68 -179l-235 -178l-52 41c-10 8 -23 15 -36 15c-14 0 -25 -3 -36 -9c-17 -9 -30 -22 -42 -37l-16 16c45 53 115 126 161 126c22 0 35 -7 45 -14c19 -13 37 -28 53 -43c13 9 26 19 39 29 c29 24 38 59 46 93c13 55 16 111 16 168c0 43 -6 86 -21 128c-14 33 -35 65 -66 91c-28 24 -63 43 -109 43zM826 458c-15 0 -31 6 -42 16c-15 13 -20 41 -24 64c-3 23 -9 55 -21 65c-9 8 -21 15 -34 15c-29 0 -55 -14 -75 -31c-29 -25 -45 -43 -66 -73c3 -17 4 -47 4 -64 c0 -31 -2 -59 -4 -92c44 18 107 43 160 47'], + 0xE06E: [685,31,1061,116,956,'638 513l-134 67c-28 14 -59 30 -91 30c-35 0 -69 -14 -93 -34c-60 -49 -83 -118 -83 -187c0 -95 32 -192 114 -260c69 -57 161 -88 258 -88c81 0 163 18 220 66c28 24 41 58 41 91c0 32 -16 63 -43 85c-37 31 -91 39 -142 39c-45 0 -88 -8 -131 -17 c-43 -8 -113 -22 -127 -22c-34 0 -68 7 -91 27c-20 17 -29 40 -29 64c0 37 24 70 55 96c29 24 68 37 106 45l13 -14c-11 -4 -22 -12 -31 -19c-17 -14 -30 -33 -30 -53c0 -16 5 -31 18 -42c18 -15 47 -15 71 -15c49 0 96 5 143 13c46 7 90 21 136 21c44 0 89 -10 120 -36 c34 -29 48 -69 48 -109c0 -69 -45 -129 -103 -177c-96 -80 -229 -115 -363 -115c-100 0 -196 32 -266 91c-78 64 -108 151 -108 252c0 100 46 184 128 253c80 65 167 91 293 120c45 -16 87 -37 130 -55c51 -21 113 -46 160 -46c25 0 47 7 65 22c17 14 25 28 34 47l25 -14 c-12 -31 -35 -59 -62 -82c-34 -28 -77 -47 -123 -58c-18 -4 -36 -9 -56 -9c-26 0 -50 12 -72 23'], + 0xE06F: [691,30,868,63,846,'846 659l-123 -118c-30 -9 -62 -13 -94 -13c-43 0 -100 8 -142 15c-33 -28 -49 -49 -49 -85c0 -16 9 -36 19 -49c15 -19 33 -39 51 -56c35 -32 84 -77 84 -106c0 -35 -71 -91 -119 -127c49 -19 120 -46 159 -46c19 0 39 6 56 14c28 11 53 27 77 43l12 -24 c-57 -50 -120 -95 -185 -137c-54 0 -105 18 -153 38c-40 16 -87 34 -125 34c-19 0 -38 0 -52 -5c-37 -13 -61 -30 -90 -52l-12 18c58 51 121 97 194 132c31 0 64 -1 93 -8c19 15 30 33 30 55c0 24 -43 66 -74 94c-19 18 -37 37 -54 57c-11 14 -20 29 -25 45 c32 63 77 122 136 171c-76 14 -194 37 -228 37c-28 0 -63 -3 -83 -19c-13 -11 -18 -27 -18 -41c0 -39 36 -68 73 -89l2 -10l-84 -68c-33 25 -59 58 -59 96c0 51 31 98 74 135c64 53 147 90 239 90c37 0 126 -14 188 -25c50 -7 101 -14 153 -14c47 0 96 23 129 50v-32'], + 0xE070: [689,39,931,48,920,'402 249c-38 -42 -97 -103 -127 -121c27 -4 95 -26 138 -41c37 -13 81 -24 116 -24c31 0 56 18 78 36c15 13 23 30 24 47c4 67 7 134 7 201c0 82 -5 164 -13 246c68 24 130 57 190 92l18 -15l-26 -24c-25 -26 -34 -60 -39 -93c-7 -58 -8 -115 -8 -173 c0 -61 1 -121 5 -182c2 -18 2 -22 16 -52c9 -21 22 -44 36 -59c8 -9 20 -13 34 -13s44 10 65 18l4 -20l-204 -111l-72 123l-130 -105c-18 -11 -41 -13 -56 -13c-46 0 -90 14 -131 30c-53 21 -119 42 -169 42c-18 0 -44 -8 -91 -50l-19 20l108 109c34 5 72 15 89 25 c19 11 53 38 62 65c4 11 4 26 4 37c0 20 -6 40 -15 60c-11 27 -27 53 -45 78c-26 39 -60 90 -60 122c0 7 0 16 2 22c15 25 64 80 106 114c22 18 46 34 73 49l23 -16c-16 -10 -31 -22 -47 -34c-17 -14 -30 -32 -30 -53c0 -37 16 -73 35 -107c24 -40 42 -83 51 -127 c4 -17 7 -34 7 -51c0 -18 -3 -35 -9 -52'], + 0xE071: [687,29,1064,58,1017,'341 687c53 0 95 -13 129 -41c32 -27 58 -69 67 -107c43 40 89 81 140 111c29 17 61 35 96 35c17 0 34 -5 51 -10c22 -8 43 -19 64 -31c20 -12 50 -29 65 -29c21 0 42 3 63 14l1 -25c-18 -10 -34 -22 -50 -35c-37 -31 -73 -69 -73 -115c0 -27 0 -58 5 -81l17 -95 c4 -22 7 -45 7 -68c0 -46 -16 -88 -57 -120c-47 -39 -108 -82 -128 -93c-28 -15 -58 -26 -92 -26c-26 0 -52 8 -77 16c-41 13 -80 29 -119 46c-33 15 -67 29 -103 40c-22 7 -45 13 -68 13c-24 0 -46 -7 -66 -16c-29 -12 -56 -28 -79 -46l-13 18c51 42 111 82 169 121 c31 7 56 22 79 40c20 17 29 41 35 65c10 36 14 74 14 111c0 42 -6 84 -20 124c-11 31 -27 61 -55 84c-25 21 -55 37 -95 37c-30 0 -61 -17 -74 -27c-16 -13 -23 -30 -23 -49c0 -12 11 -26 19 -36c13 -16 27 -32 43 -46c26 -24 53 -59 53 -80c0 -11 -1 -21 -8 -30 c-8 -14 -16 -28 -28 -39c-37 -32 -77 -57 -122 -82l-16 19c20 12 30 21 44 38c10 12 18 26 18 41c0 16 -27 46 -47 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 43 51 68 73c46 38 112 69 191 69zM503 262l-119 -88c42 -1 146 -46 217 -75 c48 -20 107 -44 151 -44c13 0 30 4 39 12c10 8 13 22 13 34c0 17 -2 38 -5 56l-23 129c-4 21 -4 41 -4 62c0 29 0 71 12 86c27 31 63 63 97 93c-41 0 -78 16 -112 35c-28 17 -63 36 -94 36c-23 0 -41 -14 -57 -27c-28 -22 -50 -49 -71 -76c1 -14 2 -29 2 -43 c0 -65 -12 -130 -46 -190'], + 0xE072: [682,30,1323,64,1296,'255 617c-30 0 -62 -10 -75 -20c-15 -13 -23 -30 -23 -49c0 -12 11 -26 19 -36c13 -16 27 -32 43 -46c26 -24 53 -59 53 -80c0 -11 -1 -21 -7 -30c-9 -14 -17 -28 -29 -39c-37 -32 -76 -57 -121 -82l-17 19c20 12 30 21 44 38c10 12 19 26 19 41c0 16 -28 46 -47 67 c-15 15 -32 29 -43 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 43 51 68 73c46 38 111 64 189 64c64 0 113 -19 154 -53c25 -20 42 -46 53 -73c65 45 113 76 182 114c36 -19 61 -48 103 -110c38 32 79 65 124 91c29 15 57 31 92 31c38 0 71 -16 103 -33 c31 -16 63 -33 100 -33c11 0 30 7 40 12v-25c-37 -26 -85 -61 -115 -98c-18 -22 -24 -47 -24 -74c0 -23 10 -62 18 -93c12 -42 22 -81 22 -124c0 -22 -2 -43 -7 -65c-4 -15 -9 -29 -21 -41l-184 -123c-25 -8 -49 -13 -75 -13c-35 0 -76 14 -112 25c-59 19 -118 35 -181 42 c-42 -19 -88 -42 -128 -64c-10 -4 -22 -5 -36 -5c-53 0 -102 20 -148 43c-32 16 -68 32 -101 32c-21 0 -40 -6 -58 -15c-24 -11 -46 -27 -66 -44l-13 22c52 48 111 90 170 132c55 0 92 14 124 41c28 23 43 53 55 84c14 42 18 86 18 129c0 67 -15 136 -74 184 c-27 24 -61 39 -105 39zM476 206l-138 -75c16 -5 68 -26 101 -42c37 -18 77 -34 121 -34c8 0 15 2 22 5c31 14 68 30 88 50c28 27 49 57 60 91c15 50 15 96 15 148c0 42 -3 85 -14 126c-8 28 -19 55 -43 76c-15 12 -33 22 -51 31c-31 -18 -54 -36 -76 -53c3 -14 5 -48 5 -62 c0 -93 -23 -185 -90 -261zM811 212c-28 -37 -50 -62 -78 -82c49 0 142 -32 205 -54c28 -10 58 -20 90 -20c13 0 25 6 35 12c11 8 17 21 17 52c0 34 -13 96 -26 140c-12 41 -20 81 -20 120c0 19 2 42 55 86l69 61c-2 -1 -14 -1 -24 -1c-24 0 -66 20 -83 33 c-22 16 -72 28 -91 28c-20 0 -43 -3 -60 -12c-21 -13 -36 -25 -51 -43c8 -36 13 -81 13 -118c0 -70 -20 -137 -51 -202'], + 0xE073: [682,35,929,65,884,'884 578l-134 -64c-49 17 -85 50 -111 87c-77 -58 -108 -93 -108 -235c66 0 149 0 198 4l-66 -58c-43 3 -111 3 -137 3c0 -79 20 -160 88 -217c31 -26 75 -38 119 -38c32 0 76 16 112 30v-24c-47 -27 -91 -59 -135 -91c-23 -7 -62 -10 -65 -10c-42 0 -82 14 -111 38 c-19 15 -32 34 -44 52c-16 27 -29 56 -41 84c-59 -54 -122 -106 -197 -146c-20 -11 -49 -25 -65 -25c-32 0 -84 30 -122 53l82 81c18 -15 37 -29 59 -39c16 -8 33 -14 52 -14c15 0 29 4 41 10c19 9 35 21 50 33c27 23 40 56 49 86c13 45 18 91 18 137c-72 0 -161 0 -214 -3 l67 56c41 -2 99 -2 149 -2c0 38 -2 77 -13 115c-7 24 -17 46 -38 64c-22 18 -48 33 -79 33c-38 0 -69 -11 -95 -33l-42 -37l-18 20c54 54 114 104 176 152c52 -5 104 -17 142 -48c35 -29 61 -66 67 -107c25 30 55 57 85 83c40 33 89 57 142 74c14 -30 30 -60 57 -82 c10 -9 26 -10 40 -10s30 4 42 7v-19'], + 0xE074: [689,214,1066,65,929,'253 622c-31 0 -59 -15 -72 -25c-15 -13 -23 -30 -23 -49c0 -12 11 -26 19 -36c13 -16 27 -32 43 -46c26 -24 53 -59 53 -80c0 -11 -1 -21 -7 -30c-9 -14 -17 -28 -29 -39c-37 -32 -76 -57 -121 -82l-17 19c20 12 30 21 44 38c10 12 19 26 19 41c0 16 -28 46 -47 67 c-15 15 -32 29 -43 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 43 51 68 73c46 38 113 65 193 65c53 0 94 -17 128 -45c27 -23 45 -62 58 -96c42 32 86 62 131 91c33 20 67 40 103 56c36 -40 83 -71 134 -95c12 -85 25 -172 25 -255c0 -123 -28 -246 -84 -360 c-52 -56 -113 -105 -187 -142c-60 -30 -127 -51 -198 -51c-62 0 -123 17 -167 53l51 97l15 -2c10 -25 22 -50 44 -69c28 -23 68 -31 105 -31c62 0 122 16 166 52c50 42 73 98 90 154c26 82 32 166 32 251c0 53 -2 107 -14 159c-7 31 -17 63 -41 86c-22 20 -50 31 -82 31 c-20 0 -51 -6 -68 -17c-21 -13 -31 -20 -45 -38c4 -18 6 -48 6 -66c0 -77 -12 -151 -60 -217c-47 -34 -102 -70 -147 -96c11 -1 69 -21 100 -34c27 -12 59 -20 89 -20c17 0 32 8 47 15c24 12 46 27 67 43l6 -21c-47 -55 -99 -107 -167 -143c-59 9 -115 32 -169 57 c-27 13 -65 20 -92 20c-24 0 -47 -7 -68 -17c-27 -13 -51 -31 -73 -50l-19 19c51 50 102 100 163 142c14 3 27 4 39 4c14 0 29 -1 45 -2c18 9 40 21 59 36c23 21 30 49 37 77c11 46 14 93 14 139c0 69 -24 138 -83 187c-23 20 -50 37 -87 37'], + 0xE075: [718,137,804,49,678,'290 664l181 6c36 0 75 -5 102 -27c14 -12 24 -28 24 -46c0 -62 -44 -115 -96 -159c-26 -22 -69 -46 -102 -62c105 0 194 -4 256 -66c13 -14 23 -62 23 -78c0 -55 -8 -111 -29 -164c-17 -43 -43 -84 -81 -117c-69 -56 -161 -88 -257 -88c-36 0 -82 0 -111 2 c-14 2 -34 5 -34 20l1 51c0 11 -4 22 -14 29c-7 7 -17 11 -28 11c-24 0 -46 -9 -65 -20l-11 15c31 22 66 41 102 56c29 11 59 19 91 19c16 0 34 -3 45 -12c14 -12 15 -37 15 -49c0 -11 -2 -22 -4 -32c-3 -13 -3 -28 -3 -41c0 -10 12 -16 22 -19c6 -2 14 -3 22 -3 c46 0 89 16 120 43c29 23 43 60 53 92c16 42 20 87 20 131c0 29 -3 76 -28 96c-35 29 -86 37 -135 37c-37 0 -74 -8 -110 -17l-17 13l57 81c50 9 94 32 130 61c32 27 44 64 44 101c0 9 -2 18 -11 25c-17 14 -41 18 -65 18c-30 0 -61 -2 -91 -5c-31 -4 -93 -11 -97 -11 c-23 0 -45 7 -63 21c-6 5 -12 20 -15 33c27 37 68 84 94 108l18 1c-2 -6 -4 -13 -4 -20c0 -8 3 -17 11 -24c10 -8 26 -10 40 -10'], + 0xE076: [741,125,367,169,342,'342 712l-130 -13v-782l130 -13v-24c-59 0 -116 0 -173 -5v866c42 -5 114 -5 173 -5v-24'], + 0xE077: [741,125,378,48,221,'178 699l-130 13v24c59 0 131 0 173 5v-866c-57 5 -114 5 -173 5v24l130 13v782'], + 0xE078: [735,-452,605,34,573,'307 735l266 -249l-42 -27l-227 214l-245 -221l-25 12'], + 0xE079: [472,32,678,113,631,'408 80l-189 -112c-40 32 -74 68 -104 105c-1 20 -2 39 -2 59c0 79 8 157 21 235c70 30 137 67 201 105c41 -16 85 -25 128 -32l68 28l8 -7c-17 -66 -17 -133 -17 -200c0 -39 1 -79 3 -118l53 -63c11 0 33 12 48 20l5 -18l-148 -111c-21 30 -45 58 -74 83zM407 110 l-2 256c-50 0 -100 11 -148 23c-15 -24 -27 -61 -27 -153c0 -32 1 -65 4 -98c25 -25 53 -52 83 -72c14 0 63 27 90 44'], + 0xE07A: [691,32,664,120,546,'256 384l145 90c36 -17 94 -41 142 -60c2 -33 3 -67 3 -100c0 -73 -5 -146 -19 -218c-89 -48 -179 -94 -277 -128c-47 32 -92 65 -130 103c13 112 13 227 13 340c0 85 -3 171 -13 255l20 8l26 -78c55 34 115 71 170 95l16 -13c-27 -19 -46 -36 -68 -58 c-13 -13 -22 -30 -28 -47c-8 -26 -9 -52 -9 -78v-107zM420 347c-41 20 -66 29 -97 37c-22 -4 -56 -23 -74 -36c0 -72 0 -193 1 -216c22 -18 48 -40 76 -55c19 -11 40 -20 62 -23c20 40 30 83 34 126c2 25 3 49 3 72c0 32 -2 63 -5 95'], + 0xE07B: [473,26,536,121,464,'464 429l-79 -96h-10c-49 42 -92 57 -117 63c-12 -19 -17 -96 -17 -126c0 -38 3 -78 6 -116c33 -29 65 -57 103 -82l108 42v-21c-64 -41 -171 -104 -201 -119c-48 34 -91 73 -132 114c-3 42 -4 87 -4 130c0 53 3 104 13 148l199 107c47 -8 92 -22 131 -44'], + 0xE07C: [632,29,663,31,553,'294 459l23 -10c-21 -15 -47 -41 -67 -60c-10 -48 -11 -88 -11 -135c0 -35 3 -71 5 -106c40 -34 87 -62 138 -82c24 40 51 109 51 243c0 34 -2 68 -5 102c-51 40 -105 78 -166 109c-38 20 -80 38 -125 38c-31 0 -64 -9 -92 -20l-14 19c57 30 119 53 182 75 c55 -2 101 -24 148 -49c60 -31 129 -71 185 -108c5 -36 7 -72 7 -107c0 -88 -14 -176 -45 -260c-50 -40 -142 -93 -217 -137c-60 33 -117 71 -168 114c-3 18 -5 45 -5 78c0 46 3 106 8 172c48 43 113 89 168 124'], + 0xE07D: [471,28,544,114,470,'457 108l10 -16c-66 -41 -132 -82 -201 -120c-54 34 -102 73 -147 114c-3 36 -5 72 -5 108c0 59 4 118 14 176c65 34 166 87 196 101c46 -38 93 -76 146 -109c-63 -51 -164 -122 -246 -181c0 -1 5 -38 18 -45c27 -20 54 -38 103 -68c32 5 77 23 112 40zM222 214 c46 31 98 67 140 102c-39 24 -104 71 -119 83c-15 -69 -21 -114 -21 -185'], + 0xE07E: [681,242,458,70,427,'290 405h137v-7l-17 -39h-123c0 -117 0 -236 -19 -347c-3 -15 -11 -32 -19 -46l-115 -208l-21 4c15 34 41 97 47 131c5 38 9 83 9 125v341h-99v8l15 38h74c-13 40 -17 75 -25 115c13 48 35 92 76 127c28 23 67 34 105 34c15 0 31 -5 43 -12c21 -10 38 -23 54 -38l-74 -82 h-16c-12 17 -21 30 -38 43c-11 9 -27 19 -42 19c-14 0 -28 -2 -40 -11c-11 -10 -17 -25 -17 -39c0 -33 27 -61 54 -85c14 -13 28 -26 38 -41c7 -11 9 -16 13 -30'], + 0xE07F: [473,208,669,48,584,'422 83l-202 -133c56 -30 140 -75 180 -75c17 0 34 1 45 11c9 7 9 26 9 40c0 37 -18 106 -32 157zM48 -138l173 115l-95 93c-4 38 -6 77 -6 115c0 61 6 121 22 181c65 38 132 75 201 107c42 -19 92 -41 131 -47l87 39l14 -4c-16 -30 -23 -62 -28 -94 c-7 -45 -9 -90 -9 -135c0 -86 33 -169 46 -254c-62 -66 -131 -128 -206 -184c-11 -1 -21 -2 -32 -2c-32 0 -65 6 -96 14c-52 15 -101 39 -145 65l-38 -24zM423 111v66c0 56 2 111 5 166c-58 8 -122 35 -165 57c-12 -52 -18 -112 -18 -166c0 -34 2 -68 6 -102 c26 -25 56 -54 92 -70'], + 0xE080: [687,203,691,122,549,'256 507l-2 -130c52 28 101 62 147 94c46 -23 95 -43 145 -61c2 -47 3 -93 3 -139c0 -40 -1 -81 -3 -121c-3 -61 -7 -122 -20 -181c-50 -57 -119 -117 -196 -172l-25 14c23 15 51 39 75 61c18 17 28 44 36 68c9 33 18 87 18 175c0 74 -6 148 -12 222 c-33 17 -76 35 -113 42l-55 -32c-3 -39 -5 -78 -5 -117c0 -34 2 -68 5 -102c17 -24 35 -46 55 -68c-42 -24 -81 -54 -118 -84c-19 30 -43 59 -69 86c9 123 16 246 16 370c0 77 -3 155 -10 232l19 9l25 -76c52 31 109 65 158 90l18 -15c-12 -7 -23 -14 -34 -23 c-46 -37 -58 -90 -58 -142'], + 0xE081: [686,26,401,34,366,'316 86l44 19l6 -18c-59 -34 -113 -74 -166 -113l-74 82c7 58 10 117 10 176c0 45 -2 89 -5 134l-39 21l-40 -17l-18 12c48 31 95 61 139 96c13 -10 55 -38 83 -56c-3 -56 -5 -112 -5 -169c0 -38 1 -77 3 -115c0 -10 5 -20 13 -29c8 -11 20 -27 31 -27c5 0 16 3 18 4z M106 613l93 73c24 -25 51 -50 80 -71l-82 -75c-32 22 -63 47 -91 73'], + 0xE082: [683,207,401,13,275,'50 382l133 101c29 -21 56 -39 87 -58c3 -56 5 -112 5 -169c0 -95 -6 -191 -26 -285c-63 -61 -144 -127 -220 -178l-16 18c34 21 71 46 97 71c27 27 37 64 40 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -4 30 -16 41c-8 7 -19 12 -32 12c-1 0 -25 -11 -38 -17z M272 614l-83 -73c-28 22 -57 44 -82 70l83 72c10 -10 54 -46 82 -69'], + 0xE083: [683,25,537,66,473,'143 115l5 193h-82l14 38h69c0 107 0 244 -11 319l22 8c9 -25 27 -75 27 -76c46 34 99 62 153 86l15 -16c-26 -14 -41 -26 -58 -47c-11 -15 -20 -31 -23 -48c-6 -23 -7 -49 -7 -73c41 29 96 64 140 86c17 -19 33 -39 45 -60c8 -14 14 -25 14 -41c0 -21 -16 -38 -31 -54 l-84 -84h98l-17 -38h-169c0 -55 1 -118 7 -172l91 -68c10 0 71 25 102 41l10 -19l-202 -115l-132 96c2 15 3 29 4 44zM267 346h32c17 0 37 19 50 33c17 17 26 36 26 56c0 30 -21 60 -42 83c-16 -10 -33 -21 -44 -34c-12 -15 -17 -35 -18 -52c-3 -28 -4 -57 -4 -86'], + 0xE084: [682,24,406,134,353,'353 86l-154 -110c-22 26 -65 78 -65 79c8 73 11 162 11 257c0 113 -4 239 -8 349l20 4l20 -72c48 32 102 63 156 89l11 -9c-14 -10 -30 -26 -40 -35c-17 -17 -26 -34 -32 -56c-8 -31 -12 -63 -12 -95c-1 -51 -2 -104 -2 -157c0 -76 2 -151 10 -218l26 -29 c10 0 33 9 51 18'], + 0xE085: [476,31,1003,48,950,'553 376l150 95c48 -21 97 -39 147 -53c-10 -56 -14 -112 -14 -168c0 -42 2 -84 5 -126l28 -38c5 -4 12 -9 18 -9c2 0 11 3 15 5l35 18l13 -22c-59 -33 -114 -70 -168 -108c-23 31 -48 61 -77 89c11 34 15 92 15 154c0 45 -2 91 -4 131c-30 13 -76 30 -109 38l-56 -34 c-3 -39 -4 -76 -4 -115c0 -34 1 -68 2 -102l58 -73l-122 -86c-21 27 -60 80 -60 81c8 43 10 99 10 157c0 46 -1 93 -2 136c-26 11 -77 24 -108 31l-61 -34l-1 -65c0 -51 2 -102 6 -152l56 -74l-117 -83c-21 31 -43 63 -67 90c6 45 8 95 8 146s-2 103 -4 152l-37 27l-46 -19 l-14 13l138 98c23 -21 50 -40 80 -56c-2 -17 -4 -50 -4 -51c55 30 106 64 152 103c46 -21 92 -43 142 -56c-1 -13 -3 -39 -3 -40'], + 0xE086: [474,28,730,35,652,'250 129l62 -67l-114 -90c-24 26 -50 53 -79 76c8 25 10 69 10 120c0 64 -4 139 -7 198l-25 22l-44 -21l-18 14l133 93c26 -18 56 -38 83 -50c-1 -16 -1 -47 -1 -48c54 29 105 62 154 98c42 -22 98 -44 150 -63c-7 -70 -11 -140 -11 -211c0 -22 0 -45 1 -68l48 -52 c10 3 36 15 51 24l9 -16c-53 -32 -106 -74 -156 -114c-22 32 -53 64 -82 94c10 48 12 99 12 151c0 42 -2 84 -3 126c-32 15 -76 27 -111 36l-63 -31c0 -2 0 -146 1 -221'], + 0xE087: [482,34,685,141,558,'291 -34c-53 30 -103 62 -149 99c-1 20 -1 39 -1 59c0 80 8 159 23 238c72 38 142 78 211 120c55 -33 117 -56 181 -72c1 -24 2 -49 2 -73c0 -39 -2 -77 -5 -116c-3 -44 -8 -89 -21 -132c-75 -48 -156 -89 -241 -123zM417 55c19 71 28 144 28 217c0 27 -1 55 -4 82 c-52 7 -101 24 -148 43c-16 -25 -32 -79 -32 -159c0 -35 3 -71 8 -107c42 -33 91 -62 148 -76'], + 0xE088: [558,208,679,30,561,'279 -161l-115 -47l-18 6c0 1 4 156 6 234c-41 0 -79 -18 -110 -41l-12 17c37 33 85 77 121 89v262c-23 21 -46 51 -53 78c31 44 70 83 110 121l21 -6c-10 -13 -20 -27 -20 -42c0 -14 8 -26 16 -37c12 -17 27 -32 45 -45v-42l146 96l137 -57c5 -26 8 -87 8 -115 c0 -85 -7 -143 -30 -226c-56 -29 -107 -65 -155 -103c-30 22 -67 36 -106 41c0 -61 4 -122 9 -183zM321 391l-51 -35v-226c55 -8 111 -25 160 -53c11 42 14 80 14 125c0 50 -4 100 -10 147c-34 14 -78 32 -113 42'], + 0xE089: [485,212,670,121,557,'536 -171l-115 -41l-20 10c12 93 15 187 15 280l-192 -108l-100 103c-2 22 -3 44 -3 67c0 77 11 155 27 232l198 106c41 -16 84 -29 128 -36l71 43l12 -6c-30 -103 -30 -291 -30 -438c0 -71 4 -141 9 -212zM418 358c-57 4 -116 23 -147 39c-17 -29 -29 -92 -29 -187 c0 -20 1 -41 1 -62c22 -28 49 -61 78 -83c30 11 63 29 91 45c0 83 0 173 6 248'], + 0xE08A: [473,26,532,44,494,'339 334l-47 39c-5 -3 -14 -10 -18 -14c-2 -18 -4 -73 -4 -123c0 -30 0 -60 2 -89c1 -11 8 -21 16 -29c1 0 43 -32 63 -48l91 31l1 -21l-176 -106c-39 37 -83 70 -128 102c12 43 14 111 14 146c0 44 -1 74 -5 118c-15 15 -29 29 -48 40l-45 -12l-11 14l142 91l87 -62v-31 l109 91c16 -23 32 -49 53 -66c6 -5 14 -7 22 -7c10 0 26 5 37 9v-13c-28 -26 -67 -51 -104 -74c-3 -2 -6 -4 -13 -4c-15 0 -23 6 -38 18'], + 0xE08B: [480,35,596,8,524,'524 442l-146 -100c-19 0 -42 9 -61 17c-30 14 -58 31 -84 49c-6 -23 -9 -46 -9 -69c0 -33 9 -70 28 -100c52 17 106 40 158 63c23 -10 44 -22 64 -36c5 -33 9 -67 9 -101c0 -41 -6 -82 -20 -121c-68 -23 -136 -48 -199 -79c-26 21 -54 41 -85 56c-23 11 -46 20 -73 20 c-32 0 -62 -15 -87 -31l-11 16l128 99c17 4 35 6 53 6c40 0 118 -55 168 -93c5 23 5 50 5 74c0 27 -2 55 -5 83c-15 15 -33 30 -58 30c-16 0 -30 -5 -45 -11c-20 -9 -64 -31 -97 -47c-15 13 -29 33 -41 51c-4 6 -5 13 -5 20v139l190 103l68 -38c17 -10 37 -14 58 -14 c24 0 61 17 85 33'], + 0xE08C: [654,27,464,80,447,'282 359c0 -75 0 -149 5 -223c1 -7 3 -14 8 -19c17 -20 48 -39 72 -44c8 1 53 20 76 31l4 -20l-181 -111c-33 32 -69 61 -109 87c7 74 7 200 7 299h-84v8l15 38h69v148l169 101l12 -14c-20 -16 -41 -34 -48 -42c-9 -9 -14 -118 -14 -193h109v-7l-16 -39h-94'], + 0xE08D: [473,35,663,41,648,'409 424l124 44l14 -9c-15 -100 -17 -200 -17 -301c0 -9 14 -54 37 -74c2 -1 8 -5 11 -5s11 1 13 2l51 20l6 -13l-162 -120l-65 105c-64 -25 -128 -73 -167 -108c-42 32 -107 60 -154 77c17 23 28 47 36 73c10 36 17 73 17 109c0 45 -9 88 -19 132c-11 12 -23 23 -43 28 l-36 -19l-14 14l137 94c3 -3 53 -40 79 -59c2 -52 5 -104 5 -155c0 -31 -4 -62 -10 -93c-5 -21 -12 -43 -26 -62c33 -7 80 -26 119 -42l68 36c0 103 0 214 -4 326'], + 0xE08E: [546,28,680,89,549,'510 80l-258 -108c-35 36 -77 67 -123 94c9 37 9 97 9 146c0 46 -3 96 -6 143c-19 21 -43 47 -43 67c0 34 60 87 103 124l21 -4c-12 -12 -19 -27 -19 -42c0 -21 37 -58 63 -84l-2 -29l149 89l142 -61c2 -33 3 -66 3 -99c0 -36 -1 -72 -5 -108c-5 -44 -11 -88 -34 -128z M326 389c-24 0 -52 -16 -71 -28v-209c0 -6 0 -14 2 -19c3 -7 10 -13 17 -19c23 -19 59 -38 94 -55c3 -1 10 -3 13 -3c4 0 15 2 18 11c23 64 30 129 30 196c0 28 -1 57 -3 86c-32 16 -89 40 -100 40'], + 0xE08F: [549,33,999,88,863,'553 370l172 100c43 -23 90 -43 138 -61c-1 -75 -2 -150 -13 -225c-6 -44 -15 -89 -40 -128c-72 -27 -143 -55 -210 -89c-32 20 -66 39 -101 55c-25 12 -52 22 -80 29c9 35 12 111 12 186c0 33 -1 66 -1 95c-29 20 -91 50 -99 50c-13 0 -44 -11 -68 -27 c-2 -28 -3 -57 -3 -85c0 -52 3 -104 7 -157l52 -63l-112 -80c-25 32 -57 71 -83 89c11 29 19 86 19 157c0 46 -3 93 -6 140l-38 39c-8 9 -11 22 -11 33c0 4 1 8 4 11c31 38 66 80 102 110l16 -2c-10 -14 -15 -31 -15 -47c0 -21 41 -57 70 -81v-37c38 22 93 59 139 89 c47 -26 97 -48 149 -67v-34zM635 378c-12 0 -55 -18 -79 -33c-4 -41 -6 -83 -6 -124c0 -23 1 -45 2 -68c1 -12 6 -25 19 -32c34 -22 71 -41 112 -57c2 -1 8 -3 11 -3c2 0 10 4 15 17c15 34 22 69 26 104c7 51 8 102 8 154c-34 17 -98 42 -108 42'], + 0xE090: [471,188,531,41,490,'463 82l-182 -111l-93 73c-19 -3 -34 -15 -47 -27c-17 -15 -24 -35 -24 -55c0 -13 6 -26 17 -36c36 -31 88 -40 139 -48l2 -11l-95 -55c-30 7 -59 17 -86 31c-18 10 -36 23 -47 40c-5 8 -6 17 -6 26c0 10 2 20 4 30c35 46 72 92 118 131c6 43 6 92 6 138 c0 44 -1 88 -5 131c0 7 -6 16 -10 18l-47 24c-9 0 -30 -10 -39 -16l-17 12c47 33 110 77 145 94l94 -58v-36l114 91c24 -31 53 -62 86 -80l-81 -75c-10 2 -20 4 -29 9c-21 14 -56 43 -61 48c-4 -2 -22 -18 -26 -24c-4 -24 -6 -49 -6 -85c0 -43 0 -97 3 -129c0 -1 2 -6 3 -8 c5 -7 24 -20 80 -56c12 0 57 18 88 32'], + 0xE091: [559,222,664,93,558,'554 412c3 -42 4 -83 4 -123c0 -88 -5 -170 -13 -250c0 -40 -29 -73 -58 -105c-31 -34 -63 -68 -102 -98c-28 -22 -68 -43 -99 -58l-31 25c34 16 84 41 93 48c24 19 40 39 49 66c7 19 14 43 19 63c12 67 15 134 15 202c0 52 -3 104 -7 156c-30 18 -63 34 -98 43l-60 -25 v-215c0 -11 0 -24 8 -33l45 -55l-97 -92c-27 31 -69 78 -97 99c18 57 18 196 18 295c0 4 -2 10 -4 12c-20 19 -46 44 -46 65c0 14 9 27 19 39c17 22 57 60 86 88l19 -6c-11 -15 -18 -29 -18 -46c0 -13 12 -30 23 -42c15 -17 28 -27 46 -39v-41l142 93c46 -25 94 -47 144 -66 '], + 0xE092: [472,215,534,24,417,'385 -103l-159 -112c-56 0 -115 6 -156 40c-21 17 -36 38 -46 60c69 98 154 188 255 264c-34 23 -91 32 -136 35l-1 10l94 65c17 12 36 27 36 47c0 17 -18 40 -34 50c-18 11 -30 15 -52 15c-13 0 -25 -5 -38 -10c-18 -8 -34 -19 -50 -30l-16 15c54 47 114 88 176 126 c29 -10 56 -22 77 -40c22 -19 42 -40 42 -67c0 -12 -19 -29 -33 -42l-65 -59c43 -13 82 -30 121 -50c11 -46 17 -93 17 -140c0 -60 -13 -117 -32 -177zM289 120c-62 -50 -153 -123 -153 -166c0 -20 12 -36 30 -49c52 -38 100 -39 110 -39c6 13 20 44 20 130 c0 33 -2 74 -7 124'], + 0xE093: [695,-432,308,57,260,'84 432l-22 152c-3 24 -5 49 -5 73c0 10 0 22 9 29c8 6 18 9 28 9c8 0 17 0 24 -5c5 -4 12 -8 12 -15v-52l-23 -191h-23zM216 432l-24 193c-2 14 -6 38 -6 43s2 11 8 15c9 8 22 9 35 9c9 0 18 -1 25 -8c3 -3 6 -7 6 -11c0 -16 0 -32 -1 -47l-20 -194h-23'], + 0xE094: [704,10,482,101,319,'101 624l211 80c3 -3 7 -6 7 -7c-4 -92 -9 -184 -9 -275c0 -135 0 -287 9 -405l-93 -27l-11 8c4 140 6 279 6 419c0 50 0 103 -7 151c-1 17 -16 32 -36 32h-77v24'], + 0xE095: [684,34,603,113,503,'499 439c2 -25 4 -71 4 -111c0 -31 -2 -61 -4 -79c-5 -48 -9 -96 -29 -140l-203 -143c-55 34 -108 69 -151 115c-2 30 -3 57 -3 85c0 44 2 93 6 169c37 32 75 65 114 92c-35 12 -72 26 -94 45c-16 15 -24 35 -24 56c0 61 38 115 86 156l13 -10c-19 -21 -32 -49 -32 -78 c0 -23 12 -45 30 -62c30 -28 70 -45 110 -58c57 -19 116 -30 177 -37zM405 371l-145 48c-29 -35 -40 -56 -47 -73c-9 -23 -14 -56 -14 -92c0 -39 4 -83 8 -119c14 -16 31 -29 49 -41c25 -16 51 -30 78 -43c3 -1 6 -3 10 -3c5 0 10 3 15 10c31 44 46 96 51 147 c3 21 4 41 4 62c0 34 -4 71 -9 104'], + 0xE096: [616,30,605,73,507,'290 451l-64 -55c-19 -40 -21 -99 -21 -136c0 -40 4 -80 9 -120c3 -22 68 -67 126 -97c71 75 74 223 74 271c0 31 -2 61 -4 92c-75 71 -161 125 -263 155c-23 0 -44 -4 -65 -11l-9 19c44 20 88 35 134 47c87 -18 217 -79 297 -157c2 -29 3 -58 3 -87 c0 -162 -33 -245 -43 -270c-65 -49 -135 -91 -206 -132c-49 34 -96 71 -138 112c-2 29 -3 57 -3 86c0 64 5 128 14 192c42 37 90 69 138 100'], + 0xE097: [681,257,430,72,409,'409 665v-16l-77 -83c-18 19 -41 35 -68 35c-16 0 -37 -4 -49 -15c-13 -11 -20 -25 -20 -42c0 -23 10 -45 20 -66c15 -33 30 -62 50 -92h128l-15 -35h-112c0 -144 -2 -391 -20 -421l-108 -187l-19 7c11 30 27 78 42 150c10 46 11 92 11 138v313h-100l16 34h87 c-5 45 -9 100 -9 136c0 48 24 93 61 127c19 18 42 33 70 33c27 0 52 -14 74 -29c2 -2 5 -4 8 -4c4 0 6 1 8 3'], + 0xE098: [681,242,423,73,393,'267 351l-6 -310c0 -37 -3 -75 -15 -110c-53 -95 -92 -162 -97 -173l-23 2c15 44 39 155 39 156c4 28 7 58 7 87c0 116 2 232 2 348h-101l17 34h84c0 22 -17 85 -27 127c-3 11 -3 34 -3 48c32 46 66 82 106 121c23 -15 48 -33 77 -33c15 0 38 10 49 19l7 -7l-73 -75 c-36 0 -72 6 -107 13c0 -33 16 -64 28 -95c15 -36 31 -80 36 -117h126l-13 -35h-113'], + 0xE099: [470,214,610,89,517,'504 -53l-137 -139c-26 -16 -56 -22 -87 -22c-72 0 -139 25 -191 71l43 95l12 1c5 -24 23 -44 41 -62c34 -30 80 -41 126 -41c36 0 74 10 99 33c16 15 19 40 19 61c0 31 -14 103 -25 154l-197 -129l-90 96c-2 37 -3 74 -3 111c0 115 13 174 18 192c57 36 133 81 175 102 c40 -23 83 -37 126 -46l76 40l8 -5c-9 -23 -13 -43 -18 -69c-6 -37 -7 -85 -7 -122c-2 -45 -3 -132 -3 -133c9 -51 23 -137 23 -153c0 -12 -3 -24 -8 -35zM284 48l121 76c0 68 3 148 8 228c-64 6 -125 18 -185 38c-13 -26 -25 -65 -25 -145c0 -41 2 -82 6 -123 c21 -23 50 -55 75 -74'], + 0xE09A: [687,20,431,68,384,'224 351v-233l65 -49c5 -3 8 -5 12 -5c3 0 10 3 14 5c1 0 43 20 65 30l1 -23l-151 -96l-100 86c5 80 7 187 7 285h-69l18 35h52c0 99 -1 198 -8 285l18 5l25 -78c45 31 87 63 135 89l18 -10c-24 -19 -44 -37 -65 -63c-26 -32 -35 -74 -38 -114c37 28 115 83 116 83 c18 -25 33 -51 45 -79l-39 -55c-11 14 -23 27 -36 39c-9 8 -20 18 -32 18c-8 0 -17 -4 -22 -10c-31 -28 -32 -71 -32 -110h122l-18 -35h-103'], + 0xE09B: [578,21,431,71,418,'418 84l-149 -105c-35 28 -102 82 -104 82c3 39 3 192 3 290h-97l17 35h80c0 47 0 100 -3 148l91 44l12 -4c-11 -60 -15 -127 -15 -188h127l-19 -35h-108c0 -77 0 -208 1 -228c24 -19 59 -42 77 -54c3 -2 5 -2 8 -2c4 0 9 2 13 4c1 0 40 20 60 30'], + 0xE09C: [474,26,605,41,593,'491 468l8 -6c-11 -79 -16 -158 -16 -237c0 -32 1 -64 6 -94c2 -14 11 -28 21 -40c4 -5 11 -8 18 -8c3 0 10 1 13 2c16 5 30 11 45 18l7 -15c-46 -34 -88 -70 -130 -107l-9 3c-16 36 -29 62 -54 94c-73 -31 -171 -104 -171 -104c-22 16 -96 62 -137 74c15 22 23 51 30 79 c10 45 16 91 16 137c0 28 0 55 -7 82c-7 18 -16 37 -32 50l-41 -20l-17 10l121 88c18 -19 35 -38 57 -53c0 -22 1 -43 1 -65c0 -31 -1 -62 -2 -92c-2 -54 -10 -108 -26 -160l108 -49l98 46c4 50 5 114 5 163c0 52 -2 105 -4 160'], + 0xE09D: [493,13,607,78,531,'318 493c49 -13 95 -38 131 -72c48 -43 82 -99 82 -161c0 -75 -40 -143 -96 -195c-47 -42 -104 -78 -169 -78c-46 0 -91 16 -122 46c-47 43 -66 104 -66 165c0 73 37 141 93 193c44 40 93 75 147 102zM246 418c-24 -14 -38 -31 -48 -45c-25 -34 -35 -81 -35 -124 c0 -57 18 -114 62 -154c26 -23 65 -42 101 -42c31 0 48 2 70 16c41 27 53 99 53 143c0 55 -22 109 -64 148c-31 28 -94 55 -139 58'], + 0xE09E: [469,1,607,83,535,'359 469l11 -8c-11 -77 -13 -154 -13 -232c0 -54 1 -108 3 -162c1 -6 1 -12 6 -16c3 -4 7 -8 13 -8c52 0 103 1 156 3l-1 -47c-76 4 -151 7 -226 7c-74 0 -148 -2 -225 -7v45c53 -1 105 -1 157 -1c7 0 13 1 18 6c3 2 4 12 4 19c2 18 2 128 2 192c0 44 0 102 -7 131 c-5 16 -19 25 -35 30c-18 5 -50 9 -75 12l-1 27c71 0 142 2 213 9'], + 0xE09F: [474,-1,605,96,560,'549 73l11 -6l-27 -66h-435l-2 16c1 0 73 62 109 94c45 38 87 79 121 125c22 30 42 61 42 97c0 23 -12 44 -29 60c-16 14 -38 22 -61 22c-32 0 -83 -27 -122 -48l-11 18c31 25 66 49 103 66c29 13 59 23 91 23c30 0 60 -12 81 -32c20 -19 31 -44 31 -70 c0 -17 -6 -34 -14 -51c-11 -23 -26 -45 -41 -66c-49 -64 -108 -121 -168 -177c-2 -2 -5 -4 -5 -5c0 -8 11 -8 18 -8c103 3 307 8 308 8'], + 0xE0A0: [474,182,609,76,504,'303 210l3 -7c49 0 110 -12 146 -45c34 -31 52 -73 52 -116c0 -56 -25 -110 -69 -149c-53 -50 -128 -75 -203 -75c-55 0 -108 16 -156 41l18 27c39 -19 80 -35 125 -35c46 0 92 10 123 39c41 37 61 87 61 139c0 39 -11 78 -41 106c-19 17 -45 24 -70 29 c-39 7 -78 8 -118 6v34c32 2 64 6 94 16c23 8 46 18 63 34c21 20 37 44 37 72c0 26 -9 52 -30 71c-20 18 -47 25 -75 25c-13 0 -26 -4 -39 -9c-18 -8 -34 -18 -50 -28l-17 11c25 22 51 44 83 59c26 11 54 19 84 19c35 0 71 -7 96 -30c23 -20 35 -47 35 -76 c0 -37 -17 -72 -45 -98c-27 -25 -71 -46 -107 -60'], + 0xE0A1: [476,192,607,45,559,'448 476l6 -3c-3 -83 -5 -167 -5 -251c0 -61 1 -121 3 -182c36 1 71 2 107 5l-8 -46h-95c0 -53 0 -127 2 -161l-85 -30l-13 9c6 61 7 121 7 182h-321l-1 23l315 429zM124 41h243c0 108 0 246 -7 324h-13c-89 -101 -163 -210 -227 -324h4'], + 0xE0A2: [458,184,608,85,515,'493 458l-26 -80h-283c-7 0 -18 -3 -18 -12v-176l10 -5c43 19 91 30 140 30c53 0 106 -12 144 -47c36 -33 55 -79 55 -126c0 -56 -23 -111 -67 -151c-63 -59 -155 -75 -244 -75c-40 0 -81 10 -119 25l13 25c34 -12 70 -20 106 -20c49 0 99 11 134 43c38 35 61 83 61 134 c0 41 -11 83 -42 112c-26 24 -62 34 -98 34c-46 0 -87 -24 -117 -55l-20 11v333h371'], + 0xE0A3: [700,13,606,82,546,'534 691l-10 -57l-7 -5c-21 8 -44 12 -66 12c-66 0 -125 -32 -174 -73c-77 -67 -103 -166 -104 -262l8 -1c58 43 126 72 202 72c41 0 83 -16 112 -43c35 -33 51 -78 51 -123c0 -60 -33 -113 -78 -155c-47 -43 -110 -69 -178 -69c-49 0 -97 15 -132 47 c-58 53 -76 130 -76 204c0 125 49 249 146 338c38 37 82 69 131 92c39 19 83 32 127 32c17 0 33 -4 48 -9zM176 275c4 -42 12 -96 25 -136c9 -29 24 -58 47 -79c19 -17 54 -34 81 -34c35 0 49 1 80 18c38 21 51 87 51 128c0 40 -18 79 -50 107c-25 24 -82 39 -109 39 c-58 0 -85 -16 -125 -43'], + 0xE0A4: [468,181,606,72,575,'356 458h219v-16c-86 -112 -169 -225 -248 -341c-62 -92 -121 -185 -172 -282h-79l-4 13c139 177 265 361 392 545c-2 0 -5 3 -7 5h-362l35 86c75 -8 150 -10 226 -10'], + 0xE0A5: [706,10,607,77,536,'274 344c-30 -14 -54 -35 -71 -58c-24 -31 -35 -72 -35 -109c0 -41 15 -82 46 -112c23 -20 66 -44 98 -44c36 0 58 10 76 19c30 17 54 63 54 128c0 41 -24 77 -55 106c-28 25 -81 50 -113 70zM360 394c42 -27 106 -69 126 -87c31 -29 50 -68 50 -110 c0 -48 -18 -97 -57 -130c-57 -48 -115 -77 -207 -77c-52 0 -106 11 -144 46c-35 32 -51 76 -51 121c0 42 13 85 47 115c38 36 85 63 133 88c-36 22 -69 49 -94 81c-18 27 -33 57 -33 89c0 40 16 81 50 108c38 31 83 51 130 68c33 -2 66 -6 96 -15c23 -7 45 -16 62 -32 c27 -24 40 -57 40 -91s-17 -66 -39 -93c-28 -34 -69 -61 -109 -81zM342 410c45 28 72 81 72 134c0 28 -7 57 -29 78c-29 26 -69 47 -94 55c-22 -7 -56 -30 -68 -54c-9 -18 -11 -40 -11 -60c0 -26 15 -50 32 -71c23 -30 65 -62 98 -82'], + 0xE0A6: [470,182,607,63,544,'425 102l-6 4c-42 -31 -99 -72 -163 -72c-47 3 -94 13 -126 44c-46 41 -67 98 -67 156c0 52 14 106 56 143c38 36 110 67 170 93c36 -2 72 -6 106 -16c27 -9 52 -20 71 -38c28 -25 45 -57 57 -90c14 -41 21 -83 21 -126c0 -105 -44 -207 -126 -282 c-79 -73 -194 -100 -306 -100v28c82 0 167 19 226 73c50 46 76 121 87 183zM403 125c23 21 33 50 33 79c0 63 -15 135 -65 181c-28 25 -77 45 -111 49c-16 -7 -35 -16 -51 -34c-33 -37 -49 -89 -49 -136c0 -51 19 -102 59 -139c22 -20 51 -31 83 -31c37 0 75 7 101 31'], + 0xE0A7: [697,27,832,47,796,'459 319l-194 -164c44 0 71 -21 95 -43l52 -48c13 1 103 53 157 85v325c0 42 -3 88 -5 127l138 96l18 -11c-17 -13 -40 -32 -46 -42c-8 -9 -11 -21 -12 -32c-6 -54 -6 -156 -6 -234c0 -61 2 -121 6 -181c1 -11 2 -23 5 -32c13 -30 28 -61 47 -85c3 -3 6 -4 10 -4 c5 0 11 2 15 3c18 7 34 14 50 22l7 -16l-157 -112c-34 49 -52 98 -69 150l-221 -150c-15 23 -33 45 -52 64c-26 23 -70 40 -107 40c-40 0 -76 -17 -115 -40l-17 11l122 85c72 49 154 106 197 158c37 44 47 107 47 161c0 47 -15 94 -52 128c-36 33 -83 53 -134 53 c-35 0 -68 -12 -93 -35c-17 -15 -28 -38 -28 -60c0 -10 5 -19 12 -27c10 -14 22 -26 34 -37c16 -15 31 -31 43 -48c8 -12 14 -24 14 -38c0 -26 -15 -50 -33 -70c-27 -27 -59 -47 -94 -63l-18 11c20 10 37 23 52 39c11 12 18 26 18 41c0 10 -5 19 -12 27 c-10 13 -22 25 -34 37c-28 26 -52 58 -52 96c0 40 31 70 62 98c26 24 123 82 211 82c50 0 98 -13 135 -46c36 -34 56 -77 56 -124c0 -68 -19 -136 -52 -197'], + 0xE0A8: [691,27,1030,71,905,'604 -27c-62 0 -122 21 -178 41c-48 18 -96 34 -135 34c-56 0 -110 -22 -156 -48l-13 21l135 73c137 74 157 130 160 158c3 32 7 103 8 150c0 162 -104 226 -172 226c-43 0 -61 -7 -87 -30c-17 -15 -19 -36 -19 -57c0 -14 19 -38 42 -63c27 -29 55 -64 55 -89 c0 -72 -98 -118 -134 -134l-17 11c30 15 70 48 70 81c0 12 -20 39 -48 70c-24 28 -44 52 -44 90c0 40 25 70 55 98c26 24 98 86 200 86c62 0 127 -56 156 -111c24 23 58 46 87 64c40 24 85 42 134 42c25 0 51 -4 69 -21c12 -10 18 -37 24 -66c8 -34 16 -71 34 -88 c6 -5 19 -6 28 -6c16 2 32 6 47 11v-22c-40 -14 -76 -26 -111 -48l-98 -63c120 0 192 -65 192 -159c0 -43 -8 -63 -24 -101c-129 -99 -195 -150 -260 -150zM514 350c43 14 114 38 142 49c32 12 60 27 106 56c-12 5 -18 16 -24 26c-8 19 -13 39 -17 59c-4 26 -13 59 -25 70 c-14 13 -38 24 -58 24c-42 0 -65 -13 -87 -35c-19 -20 -36 -51 -45 -76c6 -25 10 -81 10 -124c0 -14 -1 -35 -2 -49zM476 207l-128 -90c65 0 126 -21 186 -43c46 -16 108 -37 139 -37c29 0 56 9 76 27c32 29 46 70 46 111c0 42 -17 82 -50 111c-39 37 -91 55 -147 55 c-29 0 -59 -5 -86 -16c-4 -41 -15 -81 -36 -118'], + 0xE0A9: [686,24,720,90,694,'317 601l35 -16c68 45 147 74 225 101l31 -81c4 -9 5 -12 11 -18c4 -4 11 -5 21 -5c17 0 41 5 54 9v-23c-38 -17 -85 -36 -128 -41c-29 16 -62 64 -87 101c-14 -4 -26 -11 -35 -21c-17 -20 -18 -38 -18 -47c0 -18 6 -48 14 -68c5 -16 22 -62 22 -93c0 -35 -8 -71 -35 -96 c-42 -37 -97 -56 -155 -64l-13 16c31 7 58 22 81 43c17 16 17 45 17 69c0 23 -12 70 -23 107c-5 19 -10 40 -10 60c0 10 1 20 4 30c-38 -1 -74 -15 -98 -42c-40 -45 -53 -103 -53 -160c0 -84 22 -169 87 -229s155 -87 246 -87c37 0 63 6 79 13l93 47v-20 c-46 -35 -105 -71 -157 -102c-29 -6 -59 -8 -89 -8c-96 0 -192 28 -260 89c-33 30 -50 66 -64 106c-18 48 -22 98 -22 148c0 63 16 125 47 181c56 39 115 75 180 101'], + 0xE0AA: [690,27,955,51,834,'422 559l18 -11c-15 -9 -29 -20 -42 -32c-14 -13 -27 -27 -38 -42c-6 -10 -13 -21 -13 -32c0 -14 27 -51 46 -75c22 -28 52 -69 52 -90c0 -30 -18 -56 -40 -77c-32 -31 -83 -54 -121 -69c47 -9 100 -25 145 -40c49 -16 128 -43 150 -43c23 0 46 1 64 12 c20 13 46 49 64 73c17 24 27 52 34 80c8 37 12 74 12 112c0 71 -19 145 -76 197c-73 67 -176 90 -279 90c-90 0 -187 -16 -251 -76c-48 -44 -70 -110 -73 -169l-23 11c0 82 28 157 92 215c33 30 76 55 119 68c54 16 110 29 166 29c66 0 122 -1 195 -20 c47 -12 98 -45 135 -79c52 -48 76 -114 76 -181c0 -96 -23 -174 -60 -263c-68 -69 -177 -174 -242 -174c-22 0 -85 22 -121 35c-46 17 -82 27 -128 40c-31 8 -62 16 -93 16c-23 0 -43 -10 -61 -22c-23 -15 -40 -36 -55 -58l-18 16c28 51 69 96 117 133c42 0 86 7 123 28 c27 15 51 38 51 68c0 28 -15 53 -35 74c-7 8 -59 67 -59 85c0 16 1 32 10 46c11 19 26 35 43 50c33 31 74 55 116 75'], + 0xE0AB: [686,24,772,117,722,'343 601l35 -16c69 45 148 74 226 101l31 -81c4 -9 6 -13 12 -18c4 -4 13 -5 23 -5c17 0 39 4 52 8v-22c-39 -17 -87 -36 -130 -41c-28 15 -61 63 -86 100c-13 -4 -24 -14 -34 -23c-9 -11 -18 -24 -19 -38c0 -20 3 -41 10 -60c16 -45 25 -69 25 -137l111 62 c23 -29 51 -55 84 -75v-9l-73 -38l-65 42c-5 3 -11 5 -16 5c-15 0 -29 -6 -41 -15c-7 -27 -25 -50 -46 -70c-17 -15 -37 -25 -58 -32c-28 -11 -58 -17 -87 -21l-18 16c32 5 60 20 88 37c7 8 12 18 14 28c3 14 4 31 4 45c0 44 -12 87 -25 130c-6 19 -10 38 -10 58 c0 10 2 21 5 32c-39 -1 -76 -15 -98 -42c-40 -45 -54 -103 -54 -160c0 -84 22 -169 87 -229c66 -60 156 -87 247 -87c15 0 30 1 44 2c44 14 96 40 128 58v-20c-49 -37 -102 -70 -157 -102c-29 -5 -59 -8 -89 -8c-96 0 -191 28 -254 84c-34 30 -55 67 -69 107 c-18 48 -23 102 -23 152c0 63 16 125 46 181c56 39 115 75 180 101'], + 0xE0AC: [686,155,721,40,705,'429 293l133 117c25 -24 47 -49 59 -80l-47 -59c-13 21 -31 43 -58 43c-19 0 -53 -22 -77 -40l94 -112c18 -23 23 -59 23 -88c0 -52 -24 -101 -64 -138c-60 -55 -141 -91 -226 -91c-36 0 -68 15 -92 38c-29 25 -34 79 -34 109c0 19 2 37 4 56c2 14 3 29 3 44 c0 42 -6 54 -15 62c-6 6 -14 8 -23 8c-25 0 -52 -12 -64 -18l-5 21c63 39 114 54 143 54c11 0 23 -3 31 -12c15 -17 24 -47 24 -73s0 -39 -7 -65c-5 -21 -8 -42 -8 -64c0 -54 18 -78 31 -90c19 -18 43 -35 70 -35c38 0 72 14 98 38c33 30 47 78 47 119c0 24 -11 47 -25 69 c-24 36 -47 72 -73 107c-24 30 -47 61 -66 94c-10 19 -21 39 -21 60c0 33 20 61 42 85c34 37 75 66 120 91c-38 21 -77 40 -119 55c-27 10 -55 19 -85 19c-28 0 -54 -13 -75 -32c-35 -32 -48 -78 -58 -122l-17 11c6 58 24 117 70 159c38 35 90 53 145 53c32 0 63 -10 92 -21 c47 -18 91 -40 134 -64c21 -11 45 -21 70 -21c26 0 65 37 92 63l10 -14c-25 -31 -60 -72 -91 -99c-16 -14 -35 -30 -58 -30c-25 0 -54 11 -79 25c-31 -9 -68 -29 -85 -47c-15 -15 -28 -38 -28 -63c0 -18 8 -36 17 -51c14 -24 30 -49 48 -71'], + 0xE0AD: [692,25,904,93,796,'754 606l-192 -154c17 2 33 3 49 3c62 0 105 -23 124 -37c36 -27 61 -70 61 -115c0 -79 -40 -152 -101 -207l-168 -104c-34 -11 -56 -17 -91 -17c-93 0 -195 33 -251 85c-75 68 -92 164 -92 259c0 37 5 70 15 106c8 28 20 52 33 77c54 36 111 70 177 99l34 -16l122 75 l11 -11c-29 -23 -57 -53 -57 -90c0 -26 17 -96 28 -137l56 27c36 22 85 57 116 86c-52 16 -102 53 -112 93l74 64c13 -24 29 -45 51 -62c18 -13 37 -23 59 -23c15 0 33 7 49 22zM277 213l-17 16c32 7 61 27 80 53c14 17 20 45 20 66c0 32 -4 59 -13 88c-10 33 -19 65 -19 97 c0 10 1 20 3 31c-36 -2 -66 -11 -92 -36c-44 -42 -59 -103 -59 -161c0 -88 23 -177 91 -239c56 -52 123 -89 202 -89c56 0 104 7 153 44c57 43 75 113 75 172c0 37 -25 76 -52 99c-37 31 -83 48 -135 48c-18 0 -36 -2 -55 -6c0 -44 -5 -93 -40 -125 c-39 -35 -89 -50 -142 -58'], + 0xE0AE: [667,133,840,18,730,'428 -107l53 64c12 -22 36 -37 63 -37c13 0 26 3 35 9c10 6 20 23 28 37c13 26 19 62 23 90c6 45 7 90 7 135c0 38 -3 75 -13 111c-8 26 -18 52 -39 70c-26 24 -63 32 -99 32c-31 0 -64 -11 -90 -29c-31 -23 -49 -36 -79 -68c23 -52 31 -98 31 -122c0 -18 -3 -38 -12 -51 c-34 -41 -114 -134 -135 -150c-17 14 -35 26 -52 36c-13 9 -28 16 -45 16c-32 0 -57 -25 -73 -40l-13 14c32 52 86 106 130 106c35 0 75 -30 97 -54c23 25 25 44 26 69c0 25 -11 63 -26 87c-25 42 -44 85 -64 130c-12 27 -20 54 -20 83c0 42 29 77 57 109 c45 50 100 90 158 127c37 -34 85 -60 140 -60c11 0 23 5 31 11c8 4 39 26 62 43l14 -15c-46 -42 -119 -108 -154 -108c-23 0 -45 5 -66 12c-31 9 -71 27 -100 40c-18 -16 -30 -31 -42 -53c-9 -16 -11 -40 -11 -58c0 -39 32 -103 56 -149c58 55 126 100 198 138 c69 0 140 -14 197 -53c17 -57 29 -116 29 -176c0 -87 -7 -175 -46 -255c-56 -47 -139 -117 -180 -117c-29 0 -56 8 -76 26'], + 0xE0AF: [686,27,662,61,612,'600 671l12 -16c-52 -44 -107 -82 -169 -112c-47 16 -109 37 -141 47c-21 6 -40 11 -62 11c-33 0 -64 -10 -87 -32c-32 -29 -58 -75 -73 -113l-19 11c14 35 35 78 53 112c12 23 28 49 46 67c29 30 62 40 104 40c46 0 113 -29 168 -53c18 -8 37 -16 58 -16 c16 0 37 6 51 13c23 11 42 27 59 41zM78 -16l-6 16c36 44 119 124 124 128c30 -58 36 -68 49 -81c19 -17 49 -29 75 -29c33 0 54 12 75 32c18 16 29 46 36 68c10 29 12 59 12 89c0 48 -6 89 -11 127c-5 33 -9 67 -9 95c0 12 1 23 2 34c44 44 97 90 153 122l14 -7 c-22 -18 -43 -41 -59 -64c-10 -16 -13 -32 -13 -50c0 -22 2 -54 3 -65c8 -51 14 -106 14 -154c0 -62 -16 -126 -65 -171c-62 -57 -143 -101 -232 -101c-40 0 -75 24 -105 48'], + 0xE0B0: [686,139,663,14,602,'109 496l-17 10c21 48 48 93 86 131c26 26 59 49 99 49c20 0 39 -7 56 -16c26 -13 49 -30 72 -47c15 -12 32 -23 49 -32c12 -6 25 -11 38 -11c39 0 75 16 110 32v-21c-56 -27 -140 -65 -174 -75c-33 6 -60 24 -86 43c-30 21 -61 43 -99 43c-27 0 -52 -10 -70 -25 c-27 -22 -47 -52 -64 -81zM19 60l-5 13c24 18 57 41 85 54c19 9 40 17 63 17c18 0 38 -4 51 -16c18 -16 18 -49 18 -75s2 -52 7 -78c5 -16 11 -35 22 -46c19 -19 48 -32 75 -32c29 0 55 8 74 27c31 27 43 74 43 113c0 53 -14 110 -30 160c-15 52 -30 113 -30 162 c0 10 1 20 2 29c43 54 94 102 151 144l17 -10c-24 -22 -46 -44 -62 -72c-12 -19 -13 -45 -13 -67c0 -36 5 -78 13 -117c14 -60 33 -160 33 -181c0 -59 -31 -113 -76 -154c-43 -41 -100 -70 -162 -70c-39 0 -82 6 -110 32c-24 23 -31 55 -35 85c-3 28 -9 66 -17 80 c-9 14 -24 22 -41 22c-22 0 -55 -9 -73 -20'], + 0xE0B1: [681,27,780,42,776,'715 348l-183 -76v-1c17 0 36 -4 50 -16c21 -18 31 -61 40 -103c5 -25 12 -60 31 -80c10 -10 23 -19 39 -19c27 0 59 9 81 24l3 -17c-24 -22 -57 -50 -87 -66c-18 -11 -38 -21 -61 -21c-22 0 -43 11 -54 27c-18 25 -23 54 -28 85c-5 44 -17 102 -40 122 c-17 17 -44 22 -70 22c-34 0 -67 -9 -98 -22c0 -26 -1 -53 -5 -79c-28 -38 -59 -73 -96 -102c-31 -24 -59 -40 -96 -51c-43 3 -76 27 -99 57l62 66h11c7 -15 17 -30 30 -42c11 -11 29 -20 45 -20c23 0 39 9 48 17c22 20 25 58 25 91c0 50 -13 100 -29 149 c-15 43 -35 106 -35 134c0 13 5 28 6 30c24 53 60 99 104 139c60 55 141 85 226 85c34 0 68 -5 100 -17c26 -10 49 -25 63 -47c0 -6 1 -12 1 -18c0 -33 -8 -67 -19 -99l-17 -5c0 34 -14 67 -40 91c-40 36 -92 48 -152 48c-63 0 -107 -17 -144 -51c-20 -19 -40 -64 -40 -93 c0 -34 8 -83 22 -123c38 37 77 71 124 98c31 19 65 35 102 35c18 0 34 -4 47 -16c19 -16 32 -48 42 -75c7 -16 21 -50 62 -50c6 0 16 2 22 5zM339 230c43 18 82 32 129 40c37 13 75 28 110 44c-24 13 -35 46 -43 69c-5 16 -22 35 -36 44c-9 6 -27 9 -35 9 c-29 0 -58 -13 -80 -30c-31 -22 -49 -49 -69 -79c12 -28 19 -66 24 -97'], + 0xE0B2: [686,27,779,60,729,'711 197l18 -11c-8 -38 -17 -78 -32 -116c-9 -23 -20 -47 -38 -65c-31 -28 -75 -32 -117 -32c-43 0 -86 9 -128 20c-61 16 -120 37 -179 60c-22 9 -46 16 -70 16c-33 0 -66 -43 -92 -84l-13 15c22 47 42 88 78 127c8 9 30 14 44 16h33c18 5 52 23 67 39 c13 15 19 30 19 45c0 23 -29 76 -49 108c-14 25 -28 51 -39 78c-7 18 -13 36 -13 55c0 23 10 44 21 63c16 26 37 49 61 70c61 57 145 85 232 85c39 0 78 -6 107 -32c21 -19 28 -47 28 -83c0 -11 -1 -22 -2 -33c-2 -19 -2 -47 -2 -55c0 -7 4 -14 9 -19c10 -10 44 -12 64 -12 v-18l-128 -30h-3c-15 0 -44 21 -44 46c0 12 1 32 6 61c1 11 2 21 2 31c0 29 -5 53 -26 72c-25 22 -56 30 -90 30c-43 0 -85 -14 -115 -42c-22 -20 -33 -52 -33 -80c0 -20 4 -37 11 -55c9 -26 23 -54 36 -79c18 -35 45 -90 45 -121c0 -7 -1 -13 -5 -17 c-41 -46 -98 -104 -121 -118c49 -19 110 -40 163 -52c37 -9 76 -16 115 -16c46 0 94 6 128 37c28 26 41 61 52 96'], + 0xE0B3: [692,27,1178,37,1151,'466 569c16 18 32 36 53 48c38 24 80 43 127 43c25 0 52 -5 70 -21c19 -18 31 -39 39 -62c24 26 53 48 83 67c38 25 80 48 128 48c19 0 39 -8 52 -21c12 -13 22 -38 29 -59c6 -15 11 -32 23 -43c9 -7 21 -9 32 -9c17 0 34 4 49 9v-15c-45 -21 -86 -48 -121 -80 c-14 -26 -22 -54 -26 -82c-8 -38 -9 -77 -9 -115c0 -47 0 -107 11 -139c8 -21 10 -24 26 -40c7 -8 24 -18 33 -18c6 0 40 10 63 21v-19l-157 -109l-62 126l-1 172c0 43 8 86 17 128c24 34 54 64 88 91c-8 1 -17 9 -24 16c-6 5 -17 35 -23 53c-8 21 -19 51 -30 58 c-10 8 -22 11 -35 11c-27 0 -60 -8 -81 -25c-24 -19 -38 -31 -55 -57c7 -31 15 -79 15 -110c0 -106 -25 -211 -69 -308l-134 -150c-21 17 -55 43 -76 43c-9 0 -20 0 -28 -5c-14 -7 -23 -16 -36 -30l-14 14c27 36 73 90 96 101c5 3 11 3 17 3c8 0 16 -1 23 -3 c10 -2 45 -24 63 -35c26 24 34 53 42 83c17 64 17 145 17 218c0 43 -1 85 -9 127c-4 27 -9 53 -26 75c-16 23 -47 32 -75 32c-23 0 -48 -9 -63 -23c-16 -13 -28 -31 -38 -49c7 -28 11 -75 11 -82c0 -113 -15 -227 -79 -325l-185 -149c-15 15 -33 28 -52 39 c-12 8 -26 14 -41 14c-31 0 -56 -20 -75 -42l-12 16c19 28 40 55 67 78c17 14 37 28 61 28c16 0 31 -6 45 -14c17 -9 45 -31 60 -44c19 13 37 28 57 46c28 26 39 69 47 104c14 56 18 112 18 169v41c-1 52 -14 111 -43 148c-30 38 -78 74 -129 74c-43 0 -64 -8 -85 -23 c-14 -11 -23 -34 -23 -43c0 -33 25 -66 41 -83c13 -14 34 -37 44 -54c7 -11 14 -28 14 -38c0 -29 -15 -52 -34 -72c-24 -25 -64 -46 -99 -62l-17 11c20 10 39 26 53 42c11 12 17 24 17 39c0 10 -8 19 -14 27c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98 c26 24 105 86 199 86c50 0 97 -34 130 -71c14 -16 26 -37 36 -59c3 2 5 5 7 8'], + 0xE0B4: [686,29,952,49,922,'477 533c15 15 50 61 57 71c32 48 101 82 162 82c19 0 36 -1 54 -5c13 -3 25 -7 34 -16c14 -13 23 -34 29 -53c5 -15 14 -40 17 -43c10 -8 21 -15 35 -15c17 0 35 4 49 11v-14c-32 -21 -66 -44 -96 -67c-10 -8 -20 -19 -22 -32c-13 -57 -18 -116 -18 -175 c0 -42 3 -84 15 -125c8 -28 17 -46 40 -67c4 -4 14 -9 20 -9c24 0 51 13 69 22v-22l-157 -105l-69 133v167c0 40 0 96 7 117c2 8 6 15 11 22c23 28 43 48 71 74c-20 4 -29 15 -35 23c-9 11 -17 33 -24 57c-6 18 -15 35 -30 48c-10 10 -25 16 -40 16c-34 0 -70 -18 -94 -39 c-34 -32 -50 -51 -73 -88c8 -42 17 -107 17 -150c0 -78 -8 -159 -47 -229c-6 -9 -15 -24 -18 -26c-46 -37 -91 -68 -143 -100c-12 -7 -38 -18 -52 -18c-38 0 -73 30 -93 58l61 65h13c5 -13 15 -29 29 -43c12 -11 32 -18 48 -18c31 0 53 20 74 39c20 18 27 44 34 69 c10 39 12 78 12 118c0 121 -31 241 -64 284c-30 38 -78 72 -129 72c-43 0 -66 -4 -90 -25c-14 -11 -19 -25 -19 -46c0 -20 26 -59 42 -76c13 -14 34 -37 44 -54c6 -11 14 -28 14 -38c0 -29 -15 -52 -35 -72c-23 -25 -64 -46 -98 -62l-17 11c19 10 39 26 53 42 c11 12 17 24 17 39c0 10 -8 19 -14 27c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86c50 0 97 -34 130 -71c17 -19 32 -50 43 -81'], + 0xE0B5: [729,27,952,34,835,'493 596l-94 -3c-21 0 -42 3 -61 13c-13 7 -25 18 -25 33c0 40 49 59 75 90h18c-6 -7 -11 -17 -11 -26c0 -16 21 -23 39 -27c21 -5 93 -10 139 -14c39 -3 76 -9 112 -20c27 -9 54 -22 74 -41c58 -53 76 -128 76 -202c0 -59 -6 -118 -26 -174c-14 -42 -36 -84 -73 -113 c-48 -40 -99 -76 -157 -103c-41 -20 -86 -36 -133 -36c-60 0 -119 12 -174 32c-19 7 -39 15 -58 21s-38 11 -58 11c-43 0 -81 -21 -105 -53l-17 16c30 37 63 73 99 106c48 15 93 51 93 101c0 15 -6 29 -12 43c-10 19 -22 36 -35 53c-19 25 -49 63 -57 74 c-6 10 -13 21 -13 33c0 35 16 67 39 95c29 35 66 63 107 86l23 -11c-21 -14 -40 -30 -56 -50c-10 -13 -20 -29 -20 -46s6 -33 14 -49c10 -24 24 -46 39 -68c22 -34 51 -77 51 -106c0 -26 -12 -49 -27 -70c-21 -30 -53 -56 -82 -79c13 0 30 -4 42 -8c35 -10 69 -23 102 -35 c56 -19 121 -33 182 -33c81 0 144 37 177 105c28 57 36 127 36 189c0 44 -4 88 -18 131c-10 32 -26 63 -52 87c-18 18 -43 28 -70 36c-33 9 -68 12 -103 12'], + 0xE0B6: [692,219,944,26,896,'466 509v-387h2c53 -16 149 -45 158 -48c20 -5 51 -12 68 -12c26 0 51 8 68 25c17 14 21 31 21 51c0 16 -9 37 -16 52c-11 21 -24 41 -39 60c-23 30 -52 67 -52 96c0 20 12 38 24 54c19 24 47 45 72 64c-14 3 -32 15 -44 26c-14 12 -16 41 -17 64c-1 22 -4 51 -18 63 c-13 13 -34 16 -52 16c-26 0 -49 -5 -70 -18c-47 -30 -73 -61 -105 -106zM453 540c3 3 5 6 8 8c20 23 40 45 64 64c55 43 118 80 191 80c22 0 44 -7 59 -21c18 -18 24 -59 28 -91c2 -13 5 -30 12 -37c10 -9 22 -13 35 -13c14 0 28 4 40 8l6 -16c-34 -16 -65 -34 -93 -59 c-12 -12 -24 -24 -34 -37c-6 -8 -13 -17 -13 -27c0 -29 22 -59 42 -85c22 -31 40 -64 40 -101c0 -69 -36 -132 -93 -176c-33 -25 -71 -48 -116 -48c-11 0 -23 3 -34 6l-129 42c0 -62 4 -124 12 -186c-6 -5 -69 -47 -104 -70l-23 11c5 12 13 56 17 85c10 62 12 123 12 186 c-36 10 -68 17 -87 17c-29 0 -55 -14 -76 -32c-21 -20 -39 -42 -58 -64l-11 21c21 38 43 76 75 107c28 25 65 42 105 42c14 0 33 -3 52 -8v250c0 54 -13 115 -43 154c-30 38 -78 72 -129 72c-43 0 -70 -7 -91 -25c-14 -12 -20 -25 -20 -46c0 -25 28 -59 44 -76 c13 -14 34 -37 44 -54c7 -11 14 -28 14 -38c0 -29 -15 -52 -34 -72c-24 -25 -64 -46 -99 -62l-17 11c20 10 39 26 53 42c11 12 17 24 17 39c0 10 -8 19 -14 27c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86c50 0 97 -34 130 -71 c18 -20 33 -47 42 -74'], + 0xE0B7: [729,69,950,32,874,'491 596l-94 -3c-20 0 -42 3 -61 13c-13 7 -25 18 -25 33c0 8 0 21 12 32l64 58h17c-5 -7 -11 -17 -11 -26c0 -4 1 -7 4 -11c9 -9 23 -13 35 -16c21 -5 93 -10 140 -14c38 -3 75 -9 111 -20c27 -9 54 -22 74 -41c58 -53 76 -128 76 -202c0 -103 -23 -225 -99 -287 c-18 -15 -37 -30 -56 -44c19 -20 38 -39 62 -54c16 -10 33 -20 53 -20c30 0 57 12 81 27v-27l-128 -63c-36 10 -71 23 -104 40c-22 11 -44 23 -63 39l-2 -1c-41 -20 -86 -36 -133 -36c-60 0 -119 12 -174 32c-19 7 -38 15 -58 21c-18 6 -38 11 -58 11 c-42 0 -80 -21 -104 -53l-18 16c31 37 63 73 99 106c48 15 93 51 93 101c0 15 -5 29 -12 43c-10 19 -22 36 -35 53c-18 25 -49 63 -56 74c-7 10 -14 21 -14 33c0 35 17 67 40 95c28 35 65 63 107 86l22 -11c-20 -14 -40 -30 -55 -50c-11 -13 -21 -29 -21 -46s7 -33 14 -49 c10 -24 24 -46 40 -68c21 -34 51 -77 51 -106c0 -26 -12 -49 -27 -70c-21 -30 -57 -59 -85 -78c13 0 32 -5 44 -9c35 -10 69 -23 103 -35c55 -19 117 -32 177 -32c81 0 152 41 185 109c28 57 32 122 32 184c0 44 -4 88 -17 131c-11 32 -26 63 -53 87c-18 18 -43 28 -69 36 c-34 9 -69 12 -104 12'], + 0xE0B8: [686,27,948,47,918,'488 348c24 11 76 33 126 40l140 75c-14 1 -29 6 -40 16c-8 7 -15 44 -17 69c-2 19 -8 37 -18 53c-8 16 -26 27 -46 27c-27 0 -56 -10 -75 -28c-27 -24 -48 -50 -72 -88c1 -5 6 -48 6 -61c0 -33 -1 -69 -4 -103zM473 548l5 5c17 20 37 41 56 59c46 42 104 74 169 74 c24 0 48 -9 63 -26c17 -18 22 -45 24 -69c2 -16 2 -33 6 -50c4 -14 8 -28 51 -28c14 0 29 2 42 4l7 -13c-31 -11 -65 -27 -95 -41c-38 -18 -95 -47 -133 -75c55 0 82 -15 110 -37c4 -66 8 -170 18 -197c8 -22 16 -43 29 -63c8 -10 16 -22 29 -22c5 0 42 13 64 21v-16 l-145 -101l-70 117c2 31 4 60 4 89c0 98 -19 117 -32 129c-23 21 -59 35 -90 35c-26 0 -71 -11 -101 -19c-3 -22 -7 -45 -13 -67c-13 -51 -30 -94 -61 -138c-61 -45 -123 -100 -183 -146c-24 22 -66 53 -88 53c-34 0 -60 -18 -80 -42l-12 16c17 25 37 55 67 78 c17 14 36 28 61 28c13 0 36 -7 52 -17c19 -13 35 -26 50 -41c38 24 69 52 89 90c16 28 21 59 27 90c6 46 10 92 10 139s-1 127 -43 184c-29 39 -78 72 -129 72c-43 0 -61 -7 -86 -30c-17 -15 -19 -35 -19 -57c0 -12 22 -43 38 -60c13 -14 34 -37 44 -54c7 -11 15 -28 15 -38 c0 -29 -16 -52 -35 -72c-24 -25 -64 -46 -99 -62l-17 11c20 10 39 26 53 42c11 12 17 24 17 39c0 10 -7 19 -14 27c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86c50 0 97 -34 130 -71c16 -18 29 -42 39 -67'], + 0xE0B9: [689,27,949,80,844,'389 508l14 -13c-14 -4 -25 -12 -35 -21c-13 -13 -17 -31 -17 -48c0 -16 5 -32 17 -43c13 -12 33 -16 53 -16c24 0 85 13 127 21c46 10 104 22 140 22c42 0 85 -15 115 -43c26 -24 35 -57 35 -90c0 -74 -30 -145 -87 -197c-85 -78 -206 -107 -325 -107 c-83 0 -169 20 -229 75c-74 68 -117 164 -117 261s43 186 118 255c73 68 183 106 285 125c57 -28 129 -62 170 -78c26 -10 52 -20 80 -20c24 0 43 6 60 21s24 38 30 54l21 -11c-9 -32 -27 -62 -52 -86c-30 -28 -71 -44 -111 -58c-34 3 -94 35 -138 58c-31 17 -62 32 -95 44 c-20 8 -40 15 -62 15c-55 0 -102 -29 -140 -64c-53 -49 -75 -118 -75 -186c0 -98 34 -196 110 -266c61 -57 148 -86 234 -86c70 0 141 5 191 51c35 33 51 84 51 130c0 37 -12 76 -41 102c-24 22 -58 32 -93 32s-81 -9 -122 -16c-41 -8 -86 -16 -127 -16c-28 0 -56 3 -76 21 c-17 16 -29 36 -29 58c0 29 14 55 35 75c24 21 53 37 85 45'], + 0xE0BA: [703,27,781,51,761,'686 133l12 -16c-30 -32 -62 -62 -97 -89c-27 -22 -57 -41 -88 -55c-48 6 -92 27 -134 48c-31 15 -63 27 -98 27c-21 0 -41 -7 -59 -15c-27 -12 -51 -27 -75 -44l-11 16c41 40 86 77 133 112c11 1 22 1 33 1c20 0 40 -1 59 -6c23 12 44 28 60 47c12 14 22 30 22 48 c0 14 -6 26 -14 37c-11 18 -24 34 -38 49c-33 34 -75 79 -82 111c9 34 25 64 45 93c26 36 55 69 89 99c-57 18 -115 27 -174 27c-49 0 -100 -8 -135 -40c-19 -17 -29 -43 -29 -67c0 -39 32 -71 71 -85l-70 -64c-35 25 -55 58 -55 98c0 55 44 118 89 156c54 46 120 65 193 65 c62 0 124 -9 185 -21c43 -7 87 -16 128 -16c46 0 86 23 115 54v-22l-75 -90c-23 -13 -49 -16 -75 -16c-41 0 -99 5 -140 14c-24 -18 -32 -25 -50 -51c-14 -18 -30 -52 -30 -75c0 -13 5 -25 12 -36c8 -16 20 -30 34 -44c22 -23 43 -48 61 -74c10 -17 20 -34 20 -54 c0 -25 -15 -47 -31 -66c-27 -33 -61 -60 -95 -86c47 -20 107 -45 149 -45c24 0 47 9 68 20c28 14 54 34 77 55'], + 0xE0BB: [697,27,758,-1,753,'523 120l-124 -126c-19 -13 -40 -21 -63 -21c-49 0 -95 16 -140 32c-41 15 -87 32 -127 32c-10 0 -19 -6 -25 -11c-14 -9 -24 -20 -34 -32l-11 17l87 90c26 2 54 28 75 48c29 27 41 64 41 101c0 19 -7 37 -13 54c-11 26 -24 50 -40 74c-25 40 -57 93 -57 128 c0 20 10 39 22 56c18 26 41 49 65 71c26 24 54 47 87 64l11 -16c-17 -11 -32 -24 -46 -37c-27 -24 -47 -56 -47 -90c0 -32 22 -73 40 -107c16 -28 30 -57 40 -86c7 -23 13 -45 13 -68c0 -26 -5 -52 -17 -75l-110 -112c32 0 76 -14 110 -26c36 -14 88 -32 111 -32 c33 0 62 20 86 42c25 23 55 51 64 75c5 16 5 56 5 85c0 116 -2 231 -10 346l138 90l17 -10c-19 -18 -37 -39 -45 -64c-18 -48 -18 -99 -18 -149v-202c0 -22 1 -43 6 -64c8 -38 18 -77 46 -107c8 -7 17 -11 28 -11c26 0 54 15 65 22v-21l-157 -107'], + 0xE0BC: [686,27,951,49,918,'430 224l-102 -73c43 -3 75 -22 143 -61c71 -41 125 -58 156 -58c28 0 55 7 76 25c15 15 21 35 25 54c8 32 10 64 10 96c0 24 -3 57 -7 86c-2 33 -5 67 -5 101c0 23 4 47 12 69l81 85c-32 0 -60 16 -88 32c-29 18 -61 37 -98 37c-31 0 -72 -36 -72 -36 c-30 -27 -54 -59 -72 -95c0 -100 -15 -182 -59 -262zM541 601c24 25 53 46 85 63c22 12 46 22 71 22c39 0 74 -16 104 -37c41 -27 71 -32 88 -32c10 0 20 2 29 6v-16c-18 -11 -33 -24 -47 -38c-39 -35 -63 -82 -63 -133c0 -34 5 -67 11 -101c7 -39 17 -96 17 -117 c0 -31 -8 -62 -23 -90c-12 -22 -25 -42 -47 -57l-127 -85c-15 -11 -38 -13 -58 -13c-32 0 -83 9 -162 53c-22 12 -120 64 -168 64c-54 0 -100 -27 -134 -64l-12 16c41 43 87 82 139 112c50 0 95 26 122 64c16 22 22 47 26 73c7 37 11 74 11 112c-1 52 -14 110 -43 148 c-30 38 -78 72 -129 72c-43 0 -71 -9 -92 -27c-11 -8 -17 -23 -17 -44c0 -24 26 -59 42 -76c13 -14 34 -37 44 -54c7 -11 14 -28 14 -38c0 -29 -15 -52 -34 -72c-24 -25 -64 -46 -99 -62l-17 11c20 10 39 26 53 42c11 12 17 24 17 39c0 10 -7 19 -14 27 c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86c50 0 97 -34 130 -71c18 -21 37 -60 47 -89c14 22 30 44 60 75'], + 0xE0BD: [686,28,1175,30,1158,'983 485l64 63c-19 0 -55 22 -81 37c-29 17 -59 32 -93 32c-24 0 -46 -10 -64 -23c-28 -21 -46 -38 -66 -64c3 -33 5 -68 5 -103c0 -79 -9 -156 -32 -227c-15 -19 -61 -75 -86 -99c47 0 126 -33 185 -59c18 -7 37 -10 58 -10c35 0 63 15 81 42c12 18 19 45 19 112 c0 39 -3 79 -7 117c-3 29 -6 59 -6 88c0 39 5 63 11 77c3 6 8 12 12 17zM391 191c-46 -34 -88 -59 -129 -81c49 -35 113 -68 175 -68c64 0 124 28 169 70c27 24 38 59 47 93c13 51 16 104 16 157c0 52 -7 104 -31 152c-18 37 -49 75 -90 91c-30 -25 -62 -51 -85 -80 c2 -9 8 -38 8 -49c0 -15 -5 -87 -20 -148c-12 -48 -29 -95 -60 -137zM454 551l12 13c46 46 97 85 151 122c57 -30 100 -96 117 -127c34 34 71 67 113 94c25 17 52 33 84 33c18 0 36 -5 52 -12c25 -9 48 -22 70 -35c19 -12 41 -19 64 -19c14 0 27 3 41 8l-7 -21 c-35 -24 -68 -50 -87 -85c-14 -28 -16 -54 -16 -88c0 -23 2 -45 5 -67c6 -51 11 -103 11 -154c0 -25 -2 -50 -10 -74c-7 -18 -15 -34 -31 -47c-45 -40 -97 -75 -150 -106c-21 -6 -43 -11 -65 -11c-33 0 -66 7 -97 19c-53 21 -110 43 -163 43c-44 -19 -88 -39 -128 -64 c-6 0 -12 -1 -18 -1c-49 0 -98 16 -138 39c-29 17 -68 37 -94 37c-13 0 -37 -8 -50 -16c-23 -14 -42 -26 -62 -43l-16 16c41 43 85 82 135 117h3c51 0 100 20 136 53c27 25 41 58 51 92c14 43 17 89 18 135c-1 52 -14 111 -44 149s-77 72 -129 72c-43 0 -71 -8 -93 -27 c-13 -11 -15 -20 -15 -42c0 -30 26 -61 42 -78c12 -14 33 -37 43 -54c7 -11 15 -28 15 -38c0 -29 -16 -52 -35 -72c-24 -25 -64 -46 -99 -62l-17 11c20 10 39 26 53 42c11 12 17 24 17 39c0 10 -7 19 -14 27c-9 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 26 70 56 98 c26 24 98 86 200 86c50 0 97 -34 129 -71c16 -17 29 -40 39 -64'], + 0xE0BE: [689,27,834,52,796,'108 527l161 159c48 -2 97 -16 131 -47c14 -13 24 -30 32 -46c12 -25 19 -51 27 -77c16 31 37 61 63 85c42 38 88 68 142 88c13 -23 24 -47 37 -69c3 -7 7 -13 13 -19c10 -8 22 -13 35 -13c12 0 31 9 47 16v-19l-111 -58c-22 9 -41 22 -58 37s-41 38 -47 52 c-16 -10 -33 -23 -45 -37c-18 -23 -34 -51 -46 -79c-18 -42 -25 -87 -25 -133h192l-40 -42c-50 6 -102 7 -152 8c0 -41 3 -82 12 -115c12 -47 32 -93 70 -128c26 -24 61 -37 98 -37c43 0 81 21 116 43v-22l-121 -90c-18 -5 -41 -11 -53 -11c-37 0 -73 14 -99 38 c-41 38 -63 90 -75 143l-46 -42c-36 -33 -74 -65 -116 -91c-20 -12 -40 -23 -61 -32c-14 -5 -29 -11 -44 -11c-39 0 -72 24 -93 54l65 69c16 -31 48 -53 86 -53c41 0 79 21 107 47c45 41 61 99 74 155c4 20 5 51 5 83c-64 0 -127 0 -192 -8l41 42h151c0 36 0 71 -5 107 c-6 34 -19 62 -46 87c-19 18 -44 33 -71 33c-35 0 -62 -7 -87 -30c-19 -17 -40 -37 -54 -52'], + 0xE0BF: [686,219,958,50,829,'406 397c0 53 -12 114 -43 154c-30 38 -78 72 -129 72c-43 0 -76 -13 -94 -27c-15 -12 -16 -24 -16 -45s27 -58 43 -75c13 -14 34 -37 44 -54c7 -11 14 -28 14 -38c0 -29 -15 -52 -35 -72c-23 -25 -64 -46 -98 -62l-17 11c19 10 39 26 53 42c11 12 17 24 17 39 c0 10 -8 19 -14 27c-10 13 -23 30 -34 43c-25 28 -45 52 -45 90c0 40 25 70 56 98c26 24 97 86 199 86c50 0 97 -34 130 -71c18 -21 33 -49 43 -78l6 5c29 27 61 52 94 75c36 27 74 51 115 69c32 -36 74 -64 117 -90c17 -80 17 -170 17 -255c0 -69 -6 -137 -18 -204 c-10 -53 -25 -105 -53 -153c-48 -67 -115 -120 -190 -160c-47 -24 -97 -43 -152 -43c-32 0 -63 6 -92 19c-22 11 -43 28 -53 51l73 71h10c12 -50 63 -93 121 -93c66 0 105 21 147 60c27 24 50 64 68 95c21 41 31 86 38 131c11 66 14 132 14 199c0 72 -4 144 -29 213 c-29 29 -59 59 -99 74c-8 -3 -82 -35 -126 -89c3 -14 4 -30 4 -44c-2 -91 -19 -183 -76 -261l-127 -92c26 -7 58 -21 82 -32c27 -13 57 -25 86 -25c38 0 69 23 93 48l10 -16c-25 -30 -50 -59 -80 -85c-15 -12 -35 -26 -56 -26c-32 0 -82 23 -116 41c-41 21 -83 34 -109 34 c-50 0 -98 -32 -137 -58l-12 15c40 39 90 78 133 113c23 0 56 0 74 -2c20 10 49 32 73 53c27 25 44 58 56 92c13 42 20 86 20 130'], + 0xE0C0: [729,139,715,44,612,'229 309l47 63c48 3 88 28 122 59c32 30 52 70 52 112c0 14 -6 27 -17 37c-18 15 -41 21 -65 21c-25 0 -50 -3 -75 -5c-29 -2 -83 -5 -87 -5c-23 0 -47 1 -63 16c-8 7 -12 16 -12 26l75 96h17c-4 -7 -8 -16 -8 -24c0 -7 2 -14 8 -19c18 -15 54 -15 82 -15c9 0 43 1 63 2 c18 0 35 3 53 3c19 0 39 -1 57 -5c14 -3 27 -8 35 -16c18 -16 30 -36 30 -59c0 -50 -25 -97 -65 -133c-37 -34 -80 -65 -123 -89l6 -2c17 3 43 6 60 6c66 0 136 -17 174 -69c12 -37 17 -74 17 -112c0 -88 -33 -172 -87 -245c-75 -57 -169 -91 -267 -91c-35 0 -70 3 -104 11 c0 25 0 61 -1 74c-2 10 -3 20 -10 27c-8 7 -19 11 -30 11c-12 0 -39 -14 -56 -26l-13 15c25 19 52 35 80 48c23 9 46 16 70 16c17 0 38 0 47 -16c5 -10 5 -42 5 -64c0 -17 0 -39 12 -50s38 -16 56 -16c50 0 86 15 121 47c27 25 48 64 59 97c14 40 19 82 19 124 c0 23 -2 46 -8 68c-6 16 -13 32 -27 44c-36 34 -87 48 -138 48c-35 0 -69 -7 -99 -21'], + 0xE0C1: [471,36,603,101,572,'389 91l-190 -127c-33 32 -65 66 -95 101c-2 30 -3 61 -3 91c0 70 6 141 22 209l185 106c30 -19 65 -33 101 -40l73 34l9 -6c-11 -67 -17 -135 -17 -203c0 -46 0 -91 1 -137l40 -45c23 7 34 13 50 22l7 -13l-134 -110l-46 73zM389 119l-1 246c-51 0 -104 13 -155 27 c-26 -25 -32 -62 -38 -97c-4 -31 -6 -62 -6 -94c0 -27 1 -53 3 -80c14 -17 43 -44 65 -65c2 -1 5 -1 8 -1c16 0 59 23 124 64'], + 0xE0C2: [686,31,619,126,516,'179 599l131 87l19 -13c-1 0 -22 -17 -33 -26c-48 -38 -65 -91 -69 -148c-2 -43 -2 -92 -2 -134l8 -2c49 38 100 77 152 107c42 -22 84 -43 128 -61c2 -32 3 -64 3 -96c0 -72 -6 -145 -22 -216c-79 -47 -161 -92 -248 -128c-41 33 -94 77 -120 102c15 73 15 157 15 236 c0 121 -1 241 -7 361l18 4l19 -77zM226 332v-209c35 -33 87 -81 117 -81c17 0 31 11 43 22c18 17 25 39 31 61c9 34 11 68 11 102c0 41 0 72 -5 113c-9 12 -35 24 -92 46c-34 -4 -75 -33 -105 -54'], + 0xE0C3: [466,29,488,115,428,'428 92l-188 -121c-43 34 -82 73 -119 113c-4 45 -6 89 -6 134c0 29 0 89 13 145l180 103c43 -3 82 -22 118 -44l-57 -79l-10 -3c-36 29 -90 54 -131 54c-19 -30 -23 -99 -23 -148c0 -35 3 -69 8 -99c20 -29 58 -61 92 -89c35 10 77 31 114 51'], + 0xE0C4: [612,34,606,50,505,'473 109l-204 -143c-54 34 -108 69 -150 115c-2 30 -3 57 -3 85c0 44 2 93 6 169c46 40 96 83 144 112l21 -4c-51 -50 -63 -77 -71 -97c-10 -23 -14 -56 -14 -92c0 -39 4 -83 7 -119c15 -16 32 -29 49 -41c25 -16 52 -30 79 -43c3 -1 5 -2 8 -2c6 0 12 3 17 10 c30 44 46 95 51 146c3 21 4 41 4 62c0 44 -5 88 -14 132c-42 41 -89 79 -142 109c-36 21 -77 38 -120 38c-9 0 -23 0 -26 -1l-51 -18l-14 16c47 24 102 48 151 69c98 -12 209 -88 300 -157c1 -18 4 -75 4 -127c0 -31 -2 -61 -4 -79c-4 -48 -8 -96 -28 -140'], + 0xE0C5: [467,31,500,112,433,'128 366l177 101c36 -42 80 -78 128 -109c-75 -66 -169 -146 -232 -192c0 -9 3 -18 5 -26c4 -14 66 -61 110 -79c4 1 19 1 25 3l80 39l6 -16c-59 -42 -120 -82 -185 -118c-43 37 -87 74 -124 116c-4 34 -6 69 -6 103c0 60 6 119 16 178zM198 193c50 34 106 78 148 119 c-42 24 -83 53 -118 84c0 1 -1 1 -2 1c-8 0 -15 -22 -17 -28c-10 -32 -11 -123 -11 -176'], + 0xE0C6: [679,238,426,73,393,'265 351l-5 -206c0 -67 0 -151 -14 -198c-11 -34 -27 -67 -47 -97l-55 -88l-20 7c9 27 21 64 28 90c8 23 13 48 16 72c2 35 3 131 3 197c0 15 0 147 -1 223h-97l16 35h80c0 1 -10 45 -16 67c-6 25 -14 61 -14 75c0 44 26 81 60 112c15 14 32 27 50 39 c46 0 101 -7 136 -40l-52 -92l-11 -1c-8 17 -19 33 -33 46c-15 12 -33 23 -52 23c-14 0 -31 -3 -42 -12c-10 -10 -13 -22 -13 -35c0 -17 13 -41 23 -59l54 -95c6 -8 8 -17 10 -26h124l-13 -37h-115'], + 0xE0C7: [470,209,611,52,531,'52 -131c49 31 98 68 146 107l-78 89c-3 34 -4 69 -4 103c0 67 5 134 16 200c58 37 116 70 176 102c37 -23 81 -36 125 -45l78 40l7 -6c-16 -29 -18 -62 -20 -94c-4 -55 -4 -143 -4 -215c0 -14 2 -28 5 -41l32 -126c-56 -64 -114 -127 -178 -184c-13 -4 -30 -8 -39 -8 c-35 0 -69 9 -100 21c-41 16 -78 38 -112 63l-38 -19zM407 97c-73 -47 -144 -99 -212 -152c25 -23 53 -45 84 -60c24 -12 50 -20 77 -20c22 0 43 10 58 24c16 16 23 45 23 66c0 22 -17 95 -30 142zM283 41l122 82c0 76 3 153 10 228c-63 8 -140 21 -192 43 c-17 -40 -19 -90 -19 -134c0 -45 1 -91 5 -136c16 -29 47 -60 74 -83'], + 0xE0C8: [689,198,628,116,507,'282 -184l69 55c12 8 21 19 29 31c18 34 25 72 30 109c9 60 11 121 11 182c0 28 -6 107 -11 161c-28 19 -60 36 -96 36c-34 0 -75 -29 -102 -49l-6 -215l59 -77l-89 -75l-60 91c8 122 12 244 12 366c0 81 -1 163 -7 244l13 2l27 -76c43 30 130 88 131 88l19 -11 c-91 -77 -98 -142 -98 -197l-1 -110c36 26 107 72 161 107c36 -30 81 -48 127 -61c4 -57 7 -114 7 -171c0 -54 -2 -109 -7 -162c-5 -39 -10 -78 -22 -115c-49 -66 -112 -119 -178 -167'], + 0xE0C9: [675,21,375,59,335,'73 369l-14 13c37 28 77 61 114 93c21 -20 41 -39 65 -55c-7 -60 -8 -120 -8 -181c0 -39 1 -79 5 -111c2 -19 21 -40 35 -53c4 0 11 1 14 3c17 7 36 18 44 24l7 -19c-42 -37 -88 -72 -134 -104l-59 76c3 53 4 93 4 139c0 58 -1 114 -5 173l-22 24c-12 -4 -32 -12 -46 -22 zM247 616l-62 -60c-23 19 -44 40 -63 61c22 20 46 37 65 58c20 -21 44 -47 60 -59'], + 0xE0CA: [673,202,380,38,261,'231 -44c-49 -55 -107 -107 -176 -158l-17 18c31 22 63 45 90 71c14 13 23 30 29 47c16 56 19 179 19 269c0 50 0 119 -11 149c-6 17 -27 37 -34 37c-3 0 -8 -2 -9 -3l-32 -19l-15 13l115 95c24 -16 48 -34 71 -53c0 -52 -1 -268 -6 -396c-1 -25 -6 -51 -24 -70zM247 615 l-63 -60c-20 15 -40 40 -59 61l66 57c18 -21 35 -40 56 -58'], + 0xE0CB: [686,26,490,65,434,'420 110l14 -15c-47 -37 -121 -82 -183 -121l-116 95c4 19 6 40 6 58v181h-76l10 35h67c0 227 -1 262 -7 326l18 4c9 -24 20 -79 20 -80c44 32 93 68 141 93l18 -10c-29 -24 -61 -52 -73 -73c-21 -32 -29 -69 -32 -105c46 32 91 57 139 87c18 -16 34 -34 48 -54 c9 -15 17 -31 17 -48c0 -18 -11 -36 -25 -49l-94 -91h104l-16 -35h-173v-180c26 -24 59 -48 90 -68c35 16 72 29 103 50zM227 343c38 0 70 13 95 40c16 18 31 39 31 63c0 13 -7 24 -14 35c-10 14 -24 26 -38 37c-22 -10 -42 -23 -55 -42c-10 -16 -13 -34 -16 -52 c-3 -25 -3 -54 -3 -81'], + 0xE0CC: [686,20,371,145,341,'324 686l17 -13c-24 -19 -47 -36 -64 -60c-38 -54 -39 -106 -39 -222c0 -90 1 -179 2 -269c10 -14 28 -29 46 -41c15 4 31 14 43 23l12 -17l-141 -107l-55 76c7 108 8 217 8 326c0 96 0 191 -6 286l19 4l18 -78'], + 0xE0CD: [475,26,884,29,847,'205 376l138 99c42 -23 85 -43 131 -57v-39c48 30 96 61 141 95c42 -21 92 -46 131 -56c-4 -57 -2 -114 -3 -171l-1 -121c12 -16 25 -33 40 -47c22 7 31 10 51 26l14 -17l-138 -107c-10 19 -42 54 -64 79c7 42 12 75 12 214c0 26 -1 50 -3 68c-1 6 -2 12 -9 15 c-30 17 -65 26 -100 34c-25 -12 -48 -24 -71 -38v-218c0 -8 0 -17 4 -22c0 -1 33 -45 50 -66l-93 -73c-14 26 -40 52 -59 72c10 39 15 81 15 202c0 33 -1 66 -5 99c-28 22 -78 35 -115 44l-66 -42v-197c0 -16 0 -40 5 -46c0 -1 32 -39 48 -58l-90 -70l-54 80 c6 40 8 80 8 119c0 63 -1 125 -4 188l-29 26l-47 -24l-13 12l121 93c19 -17 55 -51 55 -52v-44'], + 0xE0CE: [475,23,633,51,599,'224 367l157 108c38 -24 79 -43 123 -58c-5 -43 -10 -102 -10 -164l5 -126c9 -13 18 -27 29 -40c3 -4 8 -5 14 -5c1 0 8 3 11 5l34 22l12 -16l-138 -112l-60 84c7 35 9 81 9 130c0 54 -3 111 -5 163c-32 15 -75 24 -111 27l-70 -44l-5 -207c0 -10 5 -24 8 -28l43 -54 l-94 -75c-16 25 -33 48 -54 69c9 46 12 104 12 165c0 52 -2 105 -4 154l-26 23l-38 -20l-15 12c37 30 113 90 114 90c13 -13 38 -31 59 -45v-58'], + 0xE0CF: [481,28,594,106,485,'214 -28c-38 30 -77 62 -108 96c0 89 6 198 20 296c66 35 130 75 192 117c49 -30 102 -55 161 -66c4 -38 6 -75 6 -113c0 -71 -7 -141 -24 -210c-79 -46 -161 -88 -247 -120zM327 44c6 0 18 13 24 19c25 28 34 67 40 107c8 62 8 89 8 186c-50 3 -114 25 -163 45 c-15 -22 -21 -35 -30 -72c-8 -30 -11 -75 -11 -118c0 -33 2 -64 6 -88c19 -21 39 -40 63 -55c20 -12 40 -21 63 -24'], + 0xE0D0: [538,214,609,49,505,'220 -170l-87 -44l-12 7c4 83 10 199 10 254c-25 0 -50 -7 -70 -23l-12 14c27 23 68 57 83 67v247c-14 18 -45 55 -45 56c-3 4 -5 9 -5 14c0 8 3 15 8 22c22 34 51 66 82 94l16 -9c-11 -12 -20 -26 -20 -42c0 -13 5 -26 13 -38c10 -16 23 -30 37 -43c0 -1 -1 -22 -2 -34 c53 33 104 69 155 106c38 -28 83 -48 128 -64c3 -44 6 -88 6 -132c0 -22 -1 -44 -2 -66c-3 -43 -7 -87 -23 -127l-146 -107c-35 26 -74 48 -118 55c0 -69 1 -138 4 -207zM217 347v-241c44 0 118 -30 172 -54c17 30 27 83 27 178c0 41 -2 82 -6 123c-27 13 -71 28 -104 38 c-32 -11 -60 -27 -89 -44'], + 0xE0D1: [480,224,595,99,490,'477 -179l-90 -45l-13 10c5 98 9 208 9 307c-61 -46 -123 -84 -189 -122l-92 94c-2 29 -3 57 -3 86c0 73 7 147 25 218c62 31 125 63 180 104c31 -18 65 -34 101 -41l76 48l9 -7c-16 -85 -21 -220 -21 -332c0 -107 0 -215 8 -320zM273 50c25 13 75 48 110 71 c0 80 0 166 5 246c-56 3 -110 16 -164 31c-15 -25 -23 -54 -28 -82c-8 -38 -11 -77 -11 -116c0 -19 0 -53 1 -56c0 -7 1 -14 7 -19c24 -22 55 -54 80 -75'], + 0xE0D2: [474,21,489,54,468,'236 382l119 87c11 -18 24 -36 39 -52c9 -9 20 -19 33 -19c12 0 31 10 41 15v-13l-65 -55c-10 -8 -23 -10 -36 -10s-26 5 -36 11c-18 10 -39 25 -54 38c-18 -12 -34 -25 -41 -34v-198c0 -16 11 -29 21 -41c17 -19 37 -36 59 -51l97 42l2 -19l-159 -104 c-41 29 -77 62 -113 96c7 59 7 109 7 170c0 26 0 54 -1 77c-2 32 -9 43 -9 43c-10 8 -21 15 -32 22l-41 -16l-13 10l110 93c23 -21 47 -41 72 -60v-32'], + 0xE0D3: [479,30,548,8,483,'248 244l134 56c24 -7 43 -22 61 -38c2 -26 4 -52 4 -77c0 -46 -5 -91 -18 -135c-59 -24 -119 -49 -174 -80c-24 21 -50 41 -80 57c-18 10 -38 20 -60 20c-32 0 -62 -16 -96 -44l-11 9c17 16 57 55 81 76c20 17 47 23 73 23c28 0 55 -8 79 -22l88 -54c1 -1 2 -1 4 -1 c7 0 13 5 17 14c9 30 12 61 12 92c0 25 -4 63 -15 74c-15 17 -29 22 -42 22c-16 0 -24 -3 -38 -10l-111 -58c-17 19 -34 45 -47 67c0 49 1 97 6 142l166 102l89 -46c8 -4 17 -6 28 -6c25 0 50 13 78 30l7 -16l-101 -78c-78 4 -137 27 -165 52c-22 -19 -22 -56 -22 -79 c0 -25 2 -50 13 -73c4 -9 10 -21 22 -21c6 0 13 0 18 2'], + 0xE0D4: [641,21,430,67,420,'288 641l15 -14l-30 -26c-5 -5 -8 -12 -9 -19c-12 -64 -13 -131 -13 -196h117l-18 -35h-98l1 -228c22 -18 48 -39 68 -50c6 -3 12 -5 19 -5c16 0 40 9 76 32l4 -22l-150 -99l-106 83c0 1 0 192 2 289h-99l18 35h79v172'], + 0xE0D5: [474,26,624,41,593,'491 468l8 -6c-11 -79 -14 -158 -14 -237c0 -32 2 -64 6 -94c3 -14 9 -28 19 -40c4 -5 11 -8 18 -8c12 0 47 15 58 20l7 -15c-46 -34 -91 -69 -133 -106l-9 2c-21 32 -42 67 -56 103c-73 -45 -166 -113 -166 -113c-29 17 -96 62 -137 74c15 22 23 51 30 79 c10 45 16 91 16 137c0 28 0 55 -7 82c-7 18 -16 37 -32 50l-41 -20l-17 10l121 88c18 -19 35 -38 57 -53c0 -22 1 -43 1 -65c0 -31 -1 -62 -2 -92c-2 -54 -10 -108 -26 -160l110 -48l96 59c3 50 4 100 4 149c0 52 -1 105 -3 160'], + 0xE0D6: [533,28,618,90,512,'139 231c0 31 -2 69 -5 114c0 8 -4 13 -9 19c-10 12 -19 18 -28 30c-4 8 -7 16 -7 24c0 6 5 20 8 26c23 32 49 62 79 89l15 -4c-10 -14 -17 -29 -17 -46c0 -10 12 -31 20 -45c6 -8 20 -20 30 -30v-34l156 103c39 -24 80 -45 125 -61c6 -66 6 -100 6 -171 c0 -37 -16 -119 -34 -159l-235 -114c-34 33 -73 65 -112 94c5 55 8 101 8 165zM225 348l-4 -193c0 -25 16 -47 37 -62c2 0 28 -19 41 -29c13 -8 29 -15 46 -15c14 0 26 9 36 19c12 11 19 25 26 40c14 40 19 99 19 135c0 38 -4 77 -9 115c-26 21 -59 32 -93 38 c-31 -2 -69 -27 -99 -48'], + 0xE0D7: [533,28,893,71,778,'478 368l155 103c45 -24 91 -46 138 -66c5 -28 7 -92 7 -137c0 -93 -21 -133 -44 -196l-204 -100c-48 27 -97 52 -146 74c5 59 8 118 8 176c0 40 -1 80 -5 119c-25 16 -61 37 -76 44c-8 3 -18 7 -26 7c-5 0 -14 -2 -19 -5c-22 -12 -41 -25 -62 -39 c-1 -34 -1 -126 -1 -190c0 -24 6 -49 21 -70c9 -14 20 -29 30 -40l-82 -75c-18 29 -38 57 -64 79c9 51 11 103 11 155c0 46 0 92 -4 138c-1 8 -4 13 -9 19c-10 12 -19 18 -27 30c-5 8 -8 16 -8 24c0 6 5 20 9 26c22 32 49 62 78 89l15 -4c-10 -14 -17 -29 -17 -46 c0 -10 12 -31 21 -45c5 -8 19 -20 29 -30v-32c47 30 94 61 134 97c45 -26 92 -48 140 -68zM566 386c-25 0 -69 -33 -87 -45c-1 -37 -3 -71 -3 -106c0 -26 1 -53 4 -81c1 -23 13 -44 31 -59c30 -25 64 -51 109 -51c9 0 19 7 26 14c19 17 28 45 32 69c8 45 10 91 10 137 c0 28 -5 53 -13 84c-32 18 -74 33 -109 38'], + 0xE0D8: [473,188,489,50,443,'248 376l119 89c19 -28 46 -48 76 -67l-74 -59c-31 14 -51 42 -65 51c-16 -9 -45 -33 -52 -43c-4 -18 -6 -41 -6 -58c-1 -55 1 -115 5 -172c21 -20 44 -38 69 -54c4 -3 10 -4 14 -4c6 1 15 0 24 5l69 34l3 -18l-162 -105c-27 28 -59 52 -92 74c-18 -16 -36 -33 -49 -54 c-10 -15 -17 -31 -17 -49c0 -20 11 -37 26 -51c24 -22 75 -31 107 -34v-9l-70 -40c-36 8 -73 19 -100 44c-14 12 -23 29 -23 46c0 25 14 47 28 68c23 34 45 59 74 89c7 42 8 91 8 133c0 54 1 108 -3 161c-10 10 -23 23 -33 28c-3 2 -9 5 -11 5c-3 0 -9 -2 -13 -4 c-10 -5 -31 -14 -32 -14l-14 9c36 34 74 65 114 96c27 -22 68 -57 82 -66'], + 0xE0D9: [524,219,605,84,511,'131 255c0 31 0 35 -3 81c-1 8 -4 13 -9 19c-10 12 -19 19 -28 31c-4 6 -7 14 -7 24c0 4 5 19 8 25c23 32 49 62 79 89l15 -4c-10 -14 -18 -29 -18 -46c0 -10 12 -31 21 -45c6 -8 20 -20 30 -30v-32l154 106c41 -22 81 -44 126 -59c7 -60 12 -130 12 -186 c0 -80 -9 -174 -33 -251c-14 -46 -127 -145 -202 -196l-41 17c37 17 73 36 102 62c24 22 40 51 50 80c12 32 18 66 21 99c6 50 8 100 8 150c0 56 -6 112 -12 167c-26 15 -58 30 -87 35c-17 0 -64 -28 -98 -51c0 -64 -3 -81 -3 -188c0 -38 17 -66 50 -104l-82 -75 c-19 29 -42 61 -65 79c11 61 12 126 12 203'], + 0xE0DA: [471,215,495,35,384,'358 -99l-149 -116c-49 0 -96 15 -135 41c-20 14 -35 34 -39 58c7 27 58 91 94 129c47 49 90 89 139 134c-38 16 -78 30 -120 34v11c1 0 52 44 79 67c18 15 38 33 38 56s-17 45 -37 57c-13 9 -29 16 -43 16c-7 0 -11 -2 -19 -6c-26 -14 -50 -30 -73 -47l-12 12 c49 45 102 87 160 124c26 -12 53 -25 74 -44c11 -9 20 -20 27 -31c5 -8 10 -17 10 -26c0 -13 -7 -26 -17 -36l-88 -87c40 -13 86 -29 122 -49c12 -43 15 -89 15 -134c0 -55 -10 -110 -26 -163zM287 130c-44 -35 -88 -71 -123 -114c-22 -27 -43 -56 -43 -89 c0 -17 11 -31 24 -42c25 -24 60 -39 97 -39c11 0 17 4 25 12c10 10 19 37 24 57c7 35 13 70 13 105c0 37 -5 74 -17 110'], + 0xE0DB: [692,9,648,91,663,'645 692l18 -181l-30 -3l-45 78c-12 20 -33 36 -60 40c-39 5 -78 7 -117 7c-33 0 -66 -2 -99 -3c-15 -1 -31 -10 -31 -24c-4 -37 -4 -127 -4 -190c0 -129 1 -257 10 -385l-126 -40l-19 12c4 179 6 536 6 584c0 21 -5 43 -22 58l-35 30l2 17h352h200'], + 0xE0DC: [699,7,916,57,851,'452 669l136 30c36 -125 76 -249 126 -371c38 -93 84 -183 136 -273l1 -11l-134 -51c-74 6 -405 13 -405 13c-115 0 -230 -6 -252 -7c0 1 -2 21 -3 35c139 209 297 449 395 635zM163 67l484 -12c12 9 22 14 22 14c-75 161 -139 335 -198 499c-4 -2 -14 -4 -15 -4 c-90 -164 -195 -339 -293 -497'], + 0xE0DD: [699,14,1119,116,982,'695 429l16 44h23v-244h-28l-16 56c-3 11 -16 15 -27 16c-48 3 -146 2 -219 0c-14 0 -30 -5 -35 -17l-21 -55h-20v119v125h28l13 -51c1 -4 9 -11 35 -11c73 -2 153 -3 219 -1c14 1 27 8 32 19zM499 -14c-99 0 -201 19 -272 78c-81 67 -111 163 -111 257 c0 103 37 205 124 277c43 35 96 59 153 75c66 19 137 26 207 26c102 0 208 -17 282 -78c74 -62 100 -151 100 -238c0 -107 -29 -217 -122 -294c-94 -79 -230 -103 -361 -103zM569 32c71 0 137 24 186 66c30 25 49 61 61 95c15 45 20 92 20 138c0 52 -6 104 -24 154 c-14 39 -34 76 -68 105c-54 44 -127 65 -202 65c-60 0 -135 -16 -176 -48c-85 -65 -100 -164 -100 -259c0 -93 31 -187 110 -254c51 -42 124 -62 193 -62'], + 0xE0DE: [694,13,987,52,921,'471 672l115 22c26 -98 54 -195 87 -292c25 -72 52 -144 86 -214c20 -38 41 -80 73 -108c15 -13 35 -18 56 -18c10 0 21 1 31 4l2 -27l-203 -52c-31 11 -54 32 -65 58c-12 32 -115 329 -172 494h-17c-104 -173 -190 -339 -277 -519l-122 -24l-13 20 c153 212 293 431 419 656'], + 0xE0DF: [700,14,774,60,711,'711 186l-23 -200l-602 8l-22 192l28 2l18 -52c8 -21 35 -30 62 -30h429c23 0 49 7 57 27l23 56zM194 413h386l5 -7l-33 -98l-294 -1c-30 0 -60 -2 -90 -5l-8 6zM684 693l24 -188h-25l-24 42c-7 13 -22 22 -38 27c-21 8 -44 10 -67 10l-368 1c-24 0 -52 -3 -62 -23 l-31 -57h-33l22 195'], + 0xE0E0: [690,14,983,64,918,'812 214l9 -195l-137 -33l-18 11l6 194c1 40 2 249 2 410c0 16 -17 22 -41 22h-291c-18 0 -36 -8 -39 -24c-5 -37 -5 -188 -5 -283c0 -96 2 -192 9 -289l-133 -36l-17 10c4 102 5 205 5 308c0 99 -4 198 -4 296c0 14 -5 28 -21 33l-73 21v31c77 -3 153 -4 231 -4h441h182 l-2 -33l-65 -12c-24 -5 -39 -26 -40 -46c-2 -41 -2 -83 -2 -124c0 -86 0 -183 3 -257'], + 0xE0E1: [699,1,840,63,750,'443 378l-222 -253c175 0 349 1 523 9l6 -15l-36 -120c-43 3 -88 3 -133 3c-172 1 -345 -1 -518 -1l20 67c85 82 182 192 259 282l-215 276v13l86 51c169 0 339 0 508 9l11 -8l-42 -68c-72 3 -245 3 -371 3l-6 -7l132 -177c11 -14 15 -23 15 -31s-8 -22 -17 -33'], + 0xE0E2: [707,6,929,64,864,'544 27l-133 -33l-21 8c5 66 6 132 6 198c0 76 -9 153 -33 226c-17 54 -43 107 -91 146c-24 20 -57 30 -91 30c-57 0 -79 -35 -96 -72l-21 5c4 46 17 81 57 115c33 27 80 41 126 41s92 -10 125 -37c35 -29 51 -60 63 -99c19 -60 26 -122 29 -184h11c14 63 29 122 57 181 c19 40 41 80 78 110c31 27 73 45 117 45c34 0 65 -4 90 -24c17 -15 28 -36 35 -56c8 -30 12 -60 12 -91l-28 -2c-4 20 -11 36 -27 49c-13 11 -34 18 -53 18c-34 0 -62 -9 -85 -28c-49 -41 -80 -94 -101 -149c-26 -69 -34 -141 -34 -214c0 -61 4 -122 8 -183'], + 0xE0E3: [685,0,1124,117,996,'732 661l-85 -15c-12 -2 -24 -10 -24 -21v-27l11 -11c59 0 123 -5 180 -16c42 -9 85 -22 115 -48c49 -41 67 -99 67 -156c0 -71 -20 -144 -81 -195c-73 -60 -180 -80 -281 -82l-11 -10v-26c2 -6 19 -9 30 -11l89 -15l1 -28h-363l1 27c29 5 92 15 94 15c8 2 10 10 12 17 v21l-12 10c-53 1 -111 7 -162 20c-44 12 -87 30 -121 58c-54 45 -75 110 -75 174c0 63 26 124 79 168c33 27 75 45 119 57c50 14 108 20 161 21c2 0 9 9 11 10v24c0 12 -8 19 -22 22l-85 14v27h352v-24zM634 116c48 2 99 16 134 45c27 22 43 51 55 81c15 38 20 77 20 116 c0 31 -4 62 -15 92c-9 24 -22 47 -43 64c-39 32 -98 41 -151 42l-11 -10v-419zM476 556c-47 -2 -97 -13 -130 -41c-53 -45 -73 -108 -73 -171c0 -62 16 -126 70 -171c35 -29 84 -54 133 -57l11 10v420'], + 0xE0E4: [703,1,915,-1,871,'816 592l-40 -174c-5 -23 -11 -45 -22 -66c-22 -39 -40 -58 -106 -77c-36 -11 -76 -18 -114 -23l-7 -9c0 -57 4 -113 12 -169c1 -12 11 -24 25 -28l83 -20v-27h-362l1 29l77 16c18 3 30 16 30 30v166l-8 9c-40 5 -82 11 -120 21c-25 7 -51 14 -69 30 c-27 21 -43 49 -53 78c-14 37 -18 75 -19 114c0 48 0 122 -22 141c-14 11 -31 16 -49 16c-9 0 -31 -3 -47 -9l-7 24c64 14 175 39 195 39c17 0 34 -2 46 -12c13 -10 17 -26 18 -40c1 -52 0 -88 2 -140c2 -75 23 -155 89 -207c10 -7 25 -15 38 -19l10 6c0 129 0 316 -4 375 l124 32l16 -12c-4 -127 -4 -266 -4 -399l9 -6c8 2 36 9 47 18c30 26 51 59 56 95l31 187c4 26 12 52 30 74c55 15 112 27 169 33l-4 -27c-33 -11 -45 -41 -51 -69'], + 0xE0E5: [700,5,1109,60,1044,'1044 105l-40 -110c-66 4 -173 10 -199 10c-74 0 -150 -1 -224 -6l29 95c48 11 90 33 125 62c29 24 46 56 58 89c15 43 19 88 19 134c0 85 -24 173 -98 234c-40 34 -99 46 -156 46c-61 0 -124 -11 -167 -47c-76 -62 -96 -152 -96 -239c0 -62 17 -123 54 -176 c34 -46 82 -84 144 -102l-36 -92c-65 4 -131 5 -197 5c-64 0 -129 -2 -193 -5l-7 11l31 95c89 -6 172 -12 261 -13l4 12c-134 46 -218 156 -218 277c0 85 36 168 108 229c37 30 84 50 134 63c61 17 125 23 189 23c61 0 121 -6 179 -22c48 -12 93 -31 128 -61 c69 -58 90 -141 90 -222c0 -78 -25 -158 -93 -214c-42 -36 -81 -59 -140 -75l4 -11c95 5 212 10 307 10'], + 0xE0E6: [476,18,842,130,819,'708 476l73 -36l-146 -179l51 -149c5 -14 13 -29 26 -39c7 -6 15 -9 25 -9c12 0 37 17 57 31l14 -1l11 -15c-28 -26 -58 -51 -90 -72c-21 -12 -43 -25 -69 -25c-17 0 -34 3 -46 14c-25 23 -50 105 -67 162l-9 1c-29 -30 -74 -73 -94 -90c-28 -24 -60 -45 -96 -61 c-28 -13 -59 -22 -91 -22c-26 0 -52 7 -70 22c-21 18 -33 41 -42 64c-11 31 -15 64 -15 96c0 89 37 176 113 239c51 42 117 67 188 67c45 0 84 -15 115 -41c21 -17 44 -59 60 -100h11zM528 220c-10 28 -23 61 -35 88s-26 57 -52 78c-19 16 -43 28 -70 28s-53 -11 -72 -28 c-21 -17 -32 -40 -38 -64c-11 -34 -14 -70 -14 -105c0 -26 3 -52 12 -76c6 -19 16 -37 32 -51c13 -11 31 -18 49 -18c33 0 59 18 82 36c24 20 58 50 106 112'], + 0xE0E7: [676,194,827,149,702,'279 -152l-115 -42l-15 10c5 122 5 340 5 510c0 58 2 116 22 171c16 43 39 85 77 117c49 41 122 62 191 62c51 0 105 -6 142 -37c27 -23 44 -54 44 -87c0 -46 -21 -90 -61 -123c-26 -21 -55 -36 -90 -46l-2 -11c32 -3 64 -5 95 -14c28 -9 55 -20 76 -38 c35 -29 54 -72 54 -114c0 -56 -18 -113 -66 -153c-58 -48 -141 -64 -221 -64c-21 0 -43 1 -64 6c-15 4 -30 9 -41 18c-8 6 -13 13 -17 21l66 75l13 -3c4 -20 13 -41 28 -57c14 -13 31 -23 51 -23c26 0 49 9 67 24c19 16 31 38 37 59c10 27 12 56 12 85c0 28 -17 85 -54 115 c-17 14 -41 18 -64 22c-38 6 -77 7 -116 7l1 34c51 0 101 16 137 46s49 72 49 113c0 25 -12 52 -32 69c-24 20 -56 30 -90 30c-35 0 -65 -14 -88 -35c-17 -16 -25 -39 -31 -60c-8 -37 -10 -74 -10 -111c0 -1 6 -384 10 -576'], + 0xE0E8: [475,201,767,29,713,'364 -201l-78 49l66 145c-6 75 -22 181 -46 253c-18 50 -35 100 -80 138c-19 15 -46 24 -72 24c-38 0 -78 -21 -107 -42l-18 25c53 44 121 80 197 80c41 0 83 -11 112 -35c37 -32 60 -73 70 -117c14 -59 19 -111 22 -186l10 -2c72 110 125 211 166 332l21 12l86 -31 c-71 -115 -146 -211 -221 -306c-15 -21 -48 -76 -59 -105c0 -60 0 -145 -9 -199'], + 0xE0E9: [672,11,700,120,582,'309 390c-52 -40 -76 -97 -76 -154c0 -55 18 -111 66 -151c19 -16 43 -27 70 -27c36 0 79 9 101 29c20 18 27 54 27 82c0 32 -20 61 -41 88c-31 39 -69 72 -112 104zM527 655l-20 -43c-22 4 -83 12 -123 12c-20 0 -40 -1 -60 -5c-12 -2 -25 -5 -34 -13 c-9 -7 -14 -18 -14 -29c0 -19 18 -35 33 -49c28 -26 74 -58 113 -85c45 -31 86 -65 118 -105c23 -28 42 -59 42 -94c0 -67 -29 -133 -86 -180c-54 -45 -125 -75 -201 -75c-45 0 -90 10 -121 37c-43 35 -54 87 -54 137c0 100 70 188 163 248c-17 14 -32 28 -46 44 c-18 19 -36 40 -36 63c0 43 26 81 62 111c21 17 47 26 74 32c37 9 74 11 91 11c18 0 63 -5 92 -8'], + 0xE0EA: [471,7,703,124,620,'515 263l-18 -44h-36c-80 0 -161 -1 -201 -3l-7 -9c7 -43 28 -86 67 -118c32 -27 79 -34 124 -34c56 0 110 17 153 45l9 -1l14 -19c-74 -56 -171 -87 -270 -87c-56 0 -116 8 -158 43c-53 44 -68 109 -68 170c0 73 26 144 88 196c53 45 126 69 202 69 c70 0 138 -25 186 -68l-59 -64l-15 3c-13 22 -27 44 -48 61c-22 18 -51 26 -82 26c-35 0 -69 -11 -94 -32c-38 -33 -54 -79 -55 -124l7 -9c40 -2 80 -2 119 -2c47 0 95 0 142 1'], + 0xE0EB: [674,129,634,118,589,'496 -129l-24 14c17 22 31 46 31 73c0 9 -6 19 -13 27c-15 12 -27 14 -57 14c-18 0 -35 -2 -52 -3c-29 -3 -70 -5 -84 -5c-22 0 -90 10 -118 33c-43 36 -61 88 -61 138c0 80 37 155 88 223c44 57 100 107 156 155c17 14 37 27 56 40l-2 9c-29 1 -88 7 -125 14 c-23 4 -47 11 -67 20l-2 11l40 40h12c22 -14 48 -27 72 -34c30 -10 88 -23 146 -23c25 0 50 3 72 6v-24c-51 -14 -99 -34 -140 -63c-53 -38 -93 -86 -125 -138c-36 -57 -56 -111 -56 -184c0 -42 8 -86 43 -117c24 -21 80 -25 90 -25c17 0 38 1 60 3s45 3 63 3 c8 0 54 -3 76 -20c10 -9 14 -20 14 -32c0 -22 -12 -42 -25 -63c-20 -32 -43 -62 -68 -92'], + 0xE0EC: [470,197,773,44,621,'621 -156l-116 -41l-15 12c6 106 6 246 6 369c0 48 0 108 -5 142c-2 20 -8 41 -25 55s-38 21 -60 21c-46 0 -86 -16 -123 -37c0 -74 2 -312 4 -334l-112 -38l-12 10c0 101 9 203 9 304c0 29 0 67 -20 83c-6 5 -14 6 -23 6c-20 0 -47 -15 -68 -27l-17 23 c32 25 57 44 89 59c25 12 51 19 79 19c17 0 34 -4 46 -14c11 -10 17 -25 21 -50l12 -3c31 17 63 32 96 44c35 13 72 22 109 22c34 0 61 -13 84 -32c20 -17 24 -44 26 -67c4 -30 5 -117 5 -175c0 -117 0 -234 10 -351'], + 0xE0ED: [677,14,770,124,646,'436 677c45 0 90 -10 122 -37s52 -62 66 -98c16 -46 22 -95 22 -144c0 -68 -8 -136 -31 -202c-18 -50 -45 -98 -89 -135c-53 -44 -120 -75 -195 -75c-43 0 -85 13 -117 39c-35 29 -53 70 -66 110c-19 57 -24 116 -24 175s3 130 25 186c17 45 41 85 82 116 c56 42 129 65 205 65zM374 361h150l9 9c-3 33 -8 72 -16 102c-11 44 -27 87 -66 119c-21 18 -56 31 -87 31s-57 -10 -80 -29c-24 -19 -36 -47 -44 -74c-13 -48 -15 -114 -15 -148l12 -10h137zM228 306c4 -34 10 -69 21 -102c14 -44 33 -91 71 -123c26 -23 49 -28 77 -28 c34 0 66 5 87 28c19 19 32 48 38 73c10 36 12 110 12 154l-9 9h-150h-136'], + 0xE0EE: [469,11,449,156,411,'398 104l13 -12c-14 -19 -29 -38 -48 -53c-31 -27 -72 -50 -120 -50c-18 0 -40 11 -52 23c-7 7 -19 27 -23 42c-6 28 -6 57 -6 85c0 100 0 199 -6 299l113 31l14 -8c-6 -99 -8 -197 -8 -296c0 -30 2 -74 19 -88c6 -6 15 -9 25 -9c29 0 51 18 71 36h8'], + 0xE0EF: [471,12,699,153,645,'563 467l82 -30v-10c-34 -13 -134 -56 -180 -83c-41 -24 -66 -39 -102 -66c43 -43 84 -82 130 -120s97 -78 143 -109l1 -9l-117 -52c-47 38 -92 77 -136 118l-103 102l-10 -7c0 -60 1 -116 3 -176l-106 -32l-12 6c0 76 2 151 2 227c0 7 -3 141 -5 211l114 34l12 -12 l-8 -200l7 -4c49 43 110 92 146 120c44 33 90 64 139 92'], + 0xE0F0: [679,8,713,64,648,'348 374c-33 -59 -68 -124 -85 -159c-30 -64 -67 -142 -86 -195l-105 -26l-8 13c39 72 81 143 127 213l123 188c6 8 12 19 17 28c-19 48 -41 94 -48 109c-11 20 -25 42 -44 58c-17 14 -38 23 -62 23s-50 -4 -75 -11l-11 23c53 21 110 41 170 41c35 0 69 -11 93 -32 c20 -17 31 -39 42 -61c31 -61 53 -125 81 -188c52 -121 109 -240 171 -357l-2 -12l-110 -37l-26 11c-49 128 -98 244 -154 371h-8'], + 0xE0F1: [474,196,768,136,731,'489 116l1 139c0 52 -2 124 -3 186l106 33l13 -6c-1 -90 -3 -221 -3 -269c0 -36 0 -90 19 -106c6 -5 15 -9 24 -9c23 0 44 13 65 26l9 -1l11 -13c-29 -28 -58 -55 -93 -77c-21 -14 -44 -29 -71 -29c-16 0 -38 4 -49 14c-19 17 -27 43 -29 70c-34 -22 -71 -43 -109 -59 c-30 -12 -60 -21 -92 -21c-29 0 -57 6 -78 28l-9 -3v-46c0 -47 10 -93 29 -137l-77 -32l-17 14c15 208 17 436 17 436c0 61 -4 122 -8 183l114 36l15 -8c-3 -70 -7 -141 -7 -211c0 -38 0 -76 8 -113c4 -22 12 -45 31 -60c13 -12 38 -12 58 -12c47 0 90 25 125 47'], + 0xE0F2: [473,6,759,60,689,'606 471l78 -26l5 -13c-9 -19 -19 -39 -30 -59l-198 -353l-78 -26l-11 5c-18 84 -38 170 -71 252c-11 27 -25 54 -40 79c-10 16 -51 75 -109 75c-25 0 -50 -8 -71 -18l-21 29c44 36 106 57 167 57c38 0 79 -8 106 -32c33 -29 50 -69 65 -108c26 -65 43 -135 59 -202 l10 -1l59 126c25 66 44 133 53 200'], + 0xE0F3: [689,126,703,112,660,'565 -126l-23 16c16 19 37 46 37 64c0 13 -7 26 -18 35c-15 12 -41 14 -61 14c-58 0 -144 -12 -186 -12c-30 0 -61 4 -90 11c-22 6 -44 15 -61 29c-36 30 -51 72 -51 114c0 49 37 90 77 124c29 24 78 50 116 62l-1 11c-10 2 -64 14 -91 35c-23 19 -33 46 -33 72 c0 35 22 65 51 89c19 15 42 27 65 38c18 8 34 14 52 20l-2 10c-31 1 -62 3 -94 8c-25 4 -60 11 -72 26l47 49l9 -1c17 -15 45 -29 69 -37c31 -11 73 -16 108 -16c43 0 74 2 112 6l3 -29c-36 -4 -72 -10 -106 -20c-24 -8 -47 -17 -64 -32c-27 -22 -52 -49 -52 -82 c0 -27 4 -56 28 -76c16 -14 39 -20 61 -25c34 -7 68 -9 101 -10v-26c-71 -5 -144 -18 -195 -61c-31 -26 -59 -59 -59 -97c0 -29 3 -59 28 -80c28 -23 69 -26 109 -26c52 0 131 11 171 11c19 0 39 -1 58 -5c13 -2 25 -5 34 -13c13 -11 18 -26 18 -41c0 -25 -9 -49 -22 -71 c-18 -31 -46 -58 -73 -84'], + 0xE0F4: [523,4,787,52,778,'218 485h406c50 0 108 8 137 38l17 -12c-17 -33 -39 -72 -59 -101c-17 -21 -28 -22 -37 -22h-85c-6 -44 -10 -94 -10 -130c0 -55 0 -132 31 -158c12 -11 30 -19 48 -19s42 13 57 26l11 -2l11 -20c-25 -22 -51 -45 -83 -62c-23 -12 -49 -22 -77 -22c-29 0 -58 5 -79 22 c-16 14 -22 35 -26 55c-8 35 -8 70 -8 105c0 65 6 132 16 197l-8 8h-140c-15 -74 -33 -147 -56 -219c-19 -56 -45 -111 -70 -165l-14 -8l-85 12l-1 13c15 19 76 104 114 179c22 43 45 133 54 188h-103c-14 0 -30 -7 -40 -17c-27 -24 -44 -57 -57 -92l-30 12 c14 64 40 159 66 177c11 8 22 10 35 13c21 4 44 4 65 4'], + 0xE0F5: [474,196,728,145,649,'281 -166l-101 -30c-14 3 -27 8 -27 15c-4 113 -8 236 -8 343c0 51 5 103 20 153c10 35 33 82 65 105c61 44 114 54 188 54c63 0 128 -15 173 -53c48 -39 58 -96 58 -151c0 -44 -4 -87 -19 -129c-12 -32 -28 -62 -55 -86c-44 -36 -109 -57 -157 -57 c-54 0 -111 16 -152 57l-10 -2c0 -68 16 -141 33 -207zM273 133c6 -21 16 -41 35 -56c19 -16 48 -24 75 -24c33 0 60 13 82 32c20 17 34 45 39 69c10 38 12 73 12 112c0 31 -5 66 -14 96c-7 21 -18 41 -35 56c-15 13 -36 21 -58 21c-31 0 -62 -10 -85 -29 c-24 -20 -36 -46 -45 -73c-12 -37 -18 -76 -18 -115c0 -24 2 -62 12 -89'], + 0xE0F6: [475,11,827,126,774,'386 425c-27 0 -52 -11 -71 -28c-24 -20 -52 -73 -52 -169c0 -36 2 -71 13 -106c7 -24 17 -47 37 -65c19 -15 43 -25 69 -25c30 0 57 15 77 32c21 18 32 42 40 65c10 34 13 69 13 104c0 34 -3 69 -12 102c-6 22 -19 43 -37 61c-16 17 -49 29 -77 29zM766 475l8 -4 l-23 -78l-11 -7l-216 35l-6 -7c23 -12 37 -23 58 -42c42 -37 52 -91 52 -141c0 -65 -16 -131 -72 -178c-48 -39 -110 -64 -176 -64s-134 9 -182 49c-58 48 -72 119 -72 186c0 65 8 137 65 184c52 44 122 56 195 56c123 1 256 8 380 11'], + 0xE0F7: [497,7,696,66,668,'576 372h-133l-12 -11c-7 -41 -14 -100 -14 -138c0 -26 2 -57 8 -82c7 -24 16 -43 34 -59c11 -9 26 -13 41 -13c14 0 38 11 58 24l10 -1l11 -15c-24 -22 -59 -49 -90 -64c-23 -11 -48 -20 -75 -20s-56 3 -74 18c-15 13 -28 27 -34 45c-8 23 -9 47 -9 71c0 20 1 53 3 73 c7 60 13 105 19 161l-10 10h-81c-23 0 -66 -3 -85 -18c-25 -21 -38 -55 -49 -85l-28 8c9 39 21 94 27 115c4 16 11 31 24 43c24 19 58 26 90 26h322c46 0 92 12 126 37l13 -9c-11 -42 -40 -75 -71 -107c-6 -6 -13 -9 -21 -9'], + 0xE0F8: [472,2,740,35,653,'478 399l-3 12l90 61l17 -6c56 -44 71 -109 71 -171c0 -87 -44 -169 -117 -230c-51 -42 -118 -67 -190 -67c-44 0 -88 7 -120 33c-36 30 -58 75 -58 114c0 4 -1 107 -2 160c0 29 -4 61 -21 76c-6 6 -16 11 -26 11c-22 0 -46 -11 -67 -21l-17 19c54 33 129 81 170 81 c19 0 37 -6 50 -17c24 -19 24 -74 24 -83v-131c0 -29 3 -60 12 -88c8 -22 20 -42 40 -58c23 -20 56 -29 89 -29c34 0 69 12 93 32c37 32 48 86 48 133c0 63 -33 122 -83 169'], + 0xE0F9: [672,196,1015,126,893,'448 -196l-15 11c4 55 8 112 9 169l-10 9c-50 0 -95 2 -142 14c-32 8 -64 20 -88 40c-57 47 -76 114 -76 180c0 64 17 131 73 177c32 27 93 65 232 65l10 10c-2 53 -5 105 -6 158l115 35l8 -9c-2 -26 -2 -102 -3 -184l11 -10c50 0 102 0 167 -15c36 -9 71 -22 98 -45 c47 -39 62 -96 62 -150c0 -73 -25 -145 -87 -197c-68 -57 -160 -69 -241 -69l-9 -9c0 -48 0 -95 1 -143zM429 437c-46 0 -80 -16 -116 -46c-19 -17 -32 -39 -38 -61c-8 -29 -11 -62 -11 -94c0 -34 5 -69 17 -102c8 -25 22 -50 44 -69c29 -25 62 -37 107 -37l9 10v389z M565 28c53 0 96 18 125 43c23 19 39 45 48 72c12 34 17 70 17 105c0 31 -4 62 -12 92c-8 21 -17 42 -36 58c-45 39 -100 39 -141 39l-11 -9v-392'], + 0xE0FA: [470,197,703,22,684,'678 -116l6 -22c-32 -15 -63 -30 -96 -41c-21 -7 -43 -14 -66 -14s-47 8 -65 22c-26 22 -43 50 -60 77c-19 33 -57 105 -87 165h-12c-26 -30 -88 -115 -150 -262l-15 -6l-90 35c74 100 155 194 238 286c-33 66 -73 146 -90 175c-14 25 -33 56 -53 73c-10 8 -22 14 -35 14 c-6 0 -12 -1 -17 -3c-8 -3 -29 -14 -44 -24l-20 22c26 21 60 45 92 61c20 11 44 20 70 20c14 0 29 -2 40 -11c23 -19 37 -42 50 -66c3 -4 49 -94 84 -163h11l201 242l16 6l60 -34l-3 -11c-78 -91 -174 -170 -258 -258c50 -97 116 -221 166 -264c18 -16 43 -25 70 -25 c19 0 39 3 57 6'], + 0xE0FB: [672,196,958,29,841,'538 672l8 -9c-4 -48 -4 -256 -4 -384v-236l10 -8c49 7 94 26 122 50c50 42 63 105 63 163c0 55 -29 105 -77 142v14l73 61s20 -6 26 -7c50 -44 82 -102 82 -163c0 -78 -33 -159 -99 -214c-39 -32 -87 -54 -137 -68c-16 -5 -38 -8 -54 -11l-9 -10c1 -51 1 -100 2 -151 l-109 -37l-14 11c4 56 6 114 9 172l-9 8c-45 0 -90 2 -133 11c-30 7 -60 16 -82 34c-19 17 -32 38 -40 61c-11 28 -14 58 -14 88c0 35 3 70 3 105c0 66 -8 77 -19 87c-9 7 -21 10 -33 10c-20 0 -43 -11 -60 -20l-14 19c31 22 64 43 100 60c22 11 46 21 72 21 c16 0 34 -4 46 -14c14 -11 24 -29 24 -105c0 -40 -4 -81 -4 -121c0 -34 3 -69 14 -102c7 -25 21 -50 43 -68c26 -21 61 -33 98 -33l9 8v230c0 124 -6 247 -9 371'], + 0xE0FC: [499,9,1123,117,999,'812 432l74 63l23 4c29 -14 54 -46 67 -73c16 -36 23 -74 23 -111c0 -95 -39 -187 -120 -254c-50 -42 -117 -68 -188 -68c-46 0 -97 5 -130 33c-15 12 -27 32 -36 48h-16c-27 -22 -57 -43 -90 -59c-31 -15 -71 -24 -111 -24c-45 0 -89 13 -119 39c-53 44 -72 107 -72 168 c0 89 26 181 104 245c30 25 68 43 110 53l18 -20c-19 -9 -37 -21 -52 -35c-52 -43 -72 -105 -72 -166c0 -64 23 -127 77 -173c24 -20 58 -29 93 -29c34 0 54 13 78 33s30 68 30 101v162c0 12 -3 62 -6 95l117 32l11 -10c-7 -70 -11 -140 -11 -210c0 -38 2 -75 13 -112 c8 -25 19 -50 40 -68c24 -20 54 -29 87 -29c36 0 72 12 97 33c40 34 54 85 54 132c0 68 -28 134 -89 181'], + 0xE0FD: [472,16,643,146,575,'424 286l-34 -64c-15 4 -56 11 -71 11c-18 0 -39 -10 -47 -18c-14 -14 -20 -28 -20 -47c0 -29 15 -57 39 -78c29 -23 70 -29 108 -29c56 0 110 24 154 53l9 -1l13 -17c-41 -33 -85 -62 -135 -83c-42 -17 -88 -29 -133 -29s-89 12 -119 40c-26 24 -42 59 -42 94 c0 34 17 62 44 90c10 10 28 22 56 31v6c-14 4 -23 9 -40 22c-24 20 -34 49 -34 76c0 36 18 62 49 85c40 30 94 44 145 44c52 0 105 -13 142 -45l-47 -75h-12c-9 19 -20 40 -35 53c-22 18 -51 31 -81 31c-21 0 -40 -6 -56 -18c-13 -11 -23 -24 -23 -40c0 -22 9 -43 28 -58 c15 -13 38 -21 58 -26c27 -7 58 -8 84 -8'], + 0xE0FE: [676,8,760,32,699,'46 273l-14 20c53 34 122 77 167 77c16 0 32 -3 44 -13c21 -18 21 -78 21 -120c0 -29 0 -60 9 -88c6 -20 17 -41 36 -56c21 -18 49 -27 79 -27c33 0 46 6 70 24c18 13 45 46 59 105c9 37 14 75 16 112l-8 8l-115 20c-41 11 -83 24 -114 50c-44 37 -73 84 -73 136 c0 41 14 83 50 113c34 28 81 42 129 42c47 0 94 -15 128 -43c95 -79 99 -184 99 -282l7 -9c19 0 50 -1 63 -1v-35c-31 0 -50 0 -66 1l-10 -7c-12 -91 -55 -167 -110 -222c-45 -44 -123 -86 -194 -86c-41 0 -82 8 -110 33c-22 18 -39 43 -47 68c-11 36 -13 73 -13 111 c0 40 -2 60 -15 72c-9 9 -20 15 -36 15s-35 -9 -52 -18zM534 359v18c0 46 -6 91 -22 134c-12 34 -30 67 -60 91c-21 18 -48 31 -79 31c-19 0 -39 -5 -53 -17c-13 -11 -23 -29 -23 -51c0 -66 31 -114 86 -159c35 -29 96 -45 144 -53'], + 0xE0FF: [547,11,1079,124,975,'327 381l11 -14l-2 -3c-21 -9 -39 -21 -55 -35c-35 -29 -53 -69 -53 -110c0 -45 15 -90 54 -122c24 -20 56 -32 90 -32c32 0 63 7 85 26c12 11 20 33 24 52c7 31 7 63 7 92l-1 79l102 32l16 -16c-2 -32 -5 -93 -5 -96c1 -30 2 -59 12 -88c6 -20 16 -42 34 -57 c19 -16 43 -29 71 -29c38 0 76 11 104 33c43 33 60 85 60 134c0 63 -23 126 -76 171c-34 28 -80 45 -126 56c-62 15 -126 19 -190 19c-68 0 -137 -8 -201 -27c-50 -15 -98 -36 -133 -71l-19 14c16 19 29 35 49 52c43 36 109 73 155 84c63 14 137 22 210 22 c70 0 146 -7 212 -23c50 -12 102 -32 139 -63c53 -44 74 -107 74 -170c0 -89 -42 -175 -106 -227c-60 -48 -136 -75 -210 -75c-43 0 -86 13 -116 37c-14 12 -26 28 -32 40l-12 3c-23 -20 -49 -40 -77 -53c-34 -18 -72 -27 -112 -27c-49 0 -96 14 -130 43 c-41 34 -56 82 -56 130c0 60 29 117 80 159c34 28 77 48 123 60'], + 0xE100: [472,201,953,125,835,'395 -201l-16 4c2 43 5 137 5 188l-6 8c-24 1 -41 4 -65 9c-42 9 -84 25 -115 51c-53 44 -73 106 -73 168c0 60 20 120 72 163c50 41 118 70 187 82l10 -24c-33 -9 -63 -24 -88 -45c-43 -36 -55 -87 -55 -137c0 -74 15 -156 80 -210c13 -12 27 -17 47 -20l6 6v228 c0 61 25 95 69 133c36 31 108 65 189 65c46 0 93 -10 126 -37c50 -42 67 -100 67 -158c0 -73 -27 -145 -89 -197c-64 -54 -151 -77 -241 -79l-6 -7c0 -52 3 -128 5 -161zM506 30c27 0 43 2 64 11c25 11 47 23 67 40c53 44 69 112 69 174c0 53 -21 111 -59 147 c-15 13 -38 19 -50 19c-19 0 -42 -3 -55 -14c-18 -15 -27 -29 -33 -47c-9 -27 -10 -72 -10 -104v-218'], + 0xE101: [716,15,663,76,591,'386 716c28 -11 61 -34 80 -49c45 -37 75 -84 97 -134c26 -60 28 -125 28 -189c0 -100 -26 -209 -124 -298c-44 -40 -105 -61 -161 -61c-52 0 -100 18 -136 48c-33 28 -55 65 -69 103c-19 49 -25 99 -25 149c0 125 36 254 146 341c48 38 105 77 164 90zM311 632 c-15 -7 -35 -17 -47 -28c-30 -25 -51 -58 -64 -92c-16 -41 -23 -84 -23 -128c0 -56 8 -112 28 -166c18 -44 43 -85 81 -117c23 -19 52 -34 86 -34c30 0 56 10 74 25s36 43 45 68c10 28 16 64 16 114c0 94 -15 190 -77 269c-16 21 -37 42 -60 58c-18 12 -40 26 -59 31'], + 0xE102: [715,9,663,108,421,'108 626l296 89l17 -18c-12 -137 -16 -275 -16 -413c0 -84 0 -188 3 -252l-117 -41l-22 14c14 118 21 237 21 356c0 67 -2 133 -6 200c-1 8 -6 18 -12 24c-5 5 -18 9 -24 9h-140v32'], + 0xE103: [715,-5,663,48,609,'609 109l-32 -104h-529v20c107 81 204 169 285 269c50 62 90 133 90 209c0 41 -9 84 -45 113c-21 18 -53 25 -82 25c-25 0 -50 -7 -73 -16c-32 -12 -60 -28 -89 -45l-19 24c41 34 81 59 131 81c39 17 82 30 127 30c51 0 104 -10 141 -41c32 -28 53 -65 53 -105 c0 -56 -25 -109 -59 -157c-76 -107 -182 -195 -273 -294c-1 -1 -1 -3 -1 -4c0 -2 3 -5 6 -5h369'], + 0xE104: [708,8,663,59,573,'338 391v-7c37 -3 74 -8 109 -18c28 -8 54 -18 74 -35c34 -28 52 -68 52 -108c0 -57 -23 -113 -72 -153c-64 -53 -151 -78 -240 -78c-74 0 -147 20 -202 61l62 107l21 -2c11 -35 24 -69 55 -94c19 -16 44 -32 72 -32c41 0 82 10 112 35c41 34 53 86 53 134 c0 41 -14 82 -49 111c-22 19 -51 28 -81 35c-41 9 -85 12 -127 12v29c59 3 134 21 182 61c29 24 41 58 41 93c0 28 -10 57 -34 77c-23 19 -54 25 -84 25c-24 0 -47 -6 -69 -14c-29 -11 -57 -26 -84 -42l-19 25c41 28 80 51 128 70c37 14 75 25 116 25c46 0 95 -10 129 -38 c29 -23 45 -55 45 -88c0 -47 -23 -91 -63 -124c-36 -31 -79 -51 -127 -67'], + 0xE105: [708,12,663,34,597,'482 255h111l4 -9l-31 -62h-84l-7 -7c0 -49 2 -97 7 -145l-118 -44l-15 11c7 59 11 119 11 179l-8 6h-318v52l326 443l115 29l9 -10l-9 -435zM360 260v311l-6 10c-4 0 -52 -51 -107 -126c-110 -147 -125 -191 -126 -194l7 -9h223'], + 0xE106: [694,12,663,52,572,'550 694l5 -4l-41 -99h-333v-174l12 -4c49 22 100 33 150 33c61 0 123 -13 166 -50c45 -37 63 -89 63 -141c0 -68 -26 -138 -84 -187c-60 -50 -142 -80 -228 -80c-39 0 -78 4 -116 14c-24 6 -62 28 -92 47v13l53 95h20c11 -33 24 -67 53 -92c25 -21 60 -35 95 -35 c37 0 73 11 99 33c22 18 35 42 45 66c11 32 16 68 16 101c0 50 -13 102 -57 139c-26 21 -64 28 -100 28c-39 0 -101 -25 -132 -56l-22 8v345h428'], + 0xE107: [704,12,663,80,599,'572 625l-20 -2c-26 15 -58 23 -89 23c-59 0 -114 -24 -155 -58c-35 -30 -57 -69 -72 -109c-19 -46 -28 -95 -31 -143l9 -5c54 31 115 55 182 55c47 0 93 -11 126 -39c42 -35 65 -82 65 -131c0 -58 -34 -111 -83 -152c-55 -46 -129 -76 -207 -76c-49 0 -94 20 -129 48 c-67 57 -88 138 -88 217c0 126 58 248 165 338c77 64 176 113 287 113c14 0 50 -7 67 -14zM207 286c3 -45 6 -90 21 -133c11 -31 30 -62 57 -85c21 -18 48 -29 78 -29s58 11 79 28c30 26 47 63 47 98c0 45 -18 90 -56 122c-28 24 -69 33 -108 33c-42 0 -82 -17 -118 -34'], + 0xE108: [696,15,663,86,628,'306 20l-130 -35l-20 19c20 77 63 175 106 246c61 100 165 224 254 332c2 3 3 6 3 10c-3 4 -10 4 -15 4c-104 -1 -207 -1 -311 -1c-19 -1 -39 -9 -45 -25c-3 -7 -15 -58 -21 -90h-41v216c161 -3 361 -3 542 -3v-17c-88 -116 -170 -234 -238 -358 c-51 -92 -77 -198 -84 -298'], + 0xE109: [720,5,663,78,582,'303 330c-26 -11 -54 -26 -75 -43c-28 -24 -35 -58 -35 -91c0 -47 22 -92 60 -126c21 -19 56 -33 86 -33c34 0 67 5 91 25c27 24 40 62 40 95c0 40 -26 76 -60 104c-32 27 -70 49 -107 69zM420 393c33 -20 72 -42 91 -58c42 -34 71 -79 71 -129c0 -54 -28 -104 -73 -142 c-57 -48 -138 -69 -219 -69c-56 0 -114 13 -154 46c-39 32 -58 75 -58 120c0 46 20 92 60 125c27 23 84 49 125 67v7c-36 27 -77 53 -105 87c-20 26 -37 55 -37 86c0 41 27 77 60 106c44 36 112 62 168 81c42 -5 70 -10 104 -21c27 -9 50 -22 68 -38c27 -22 37 -44 37 -75 c0 -36 -16 -69 -39 -99c-27 -32 -63 -60 -99 -84v-10zM375 422c47 29 72 80 72 128c0 29 -13 59 -38 80c-27 23 -66 34 -102 37c-21 -7 -37 -21 -50 -35c-16 -18 -21 -40 -21 -62s15 -45 33 -62c29 -31 68 -62 106 -86'], + 0xE10A: [707,10,663,84,592,'441 342l-7 7c-78 -36 -146 -46 -168 -46c-46 0 -89 18 -122 45c-37 31 -60 73 -60 117c0 47 19 95 55 131c43 44 106 81 168 111c47 0 91 0 136 -9c31 -6 68 -19 88 -36c35 -29 61 -68 61 -111c0 -36 -14 -71 -31 -105c-24 -50 -56 -97 -91 -144 c-41 -55 -80 -110 -118 -168c-24 -38 -48 -77 -64 -118l-116 -26l-17 12c21 34 46 64 72 95zM446 393c10 23 22 52 22 77c0 52 -21 102 -64 138c-31 26 -103 38 -138 38c-42 -30 -65 -78 -65 -123s17 -89 56 -121c27 -23 66 -32 104 -32c32 0 59 10 85 23'], + 0xE10B: [531,36,914,97,800,'800 505l-2 -9l-590 -241v-12l586 -241l5 -10l-13 -23l-11 -5l-678 280v12l680 275l12 -3'], + 0xE10C: [531,36,914,117,820,'120 494l-3 10l11 24l12 3l680 -275v-12l-678 -280l-11 5l-10 24l5 9l586 243v9'], + 0xE10D: [696,18,764,127,640,'156 534l-25 11c16 37 32 75 65 103c40 33 94 48 150 48c60 0 115 -29 157 -64c49 -41 82 -94 102 -149c25 -67 35 -135 35 -204c0 -87 -22 -177 -97 -240c-44 -38 -108 -57 -171 -57c-69 0 -130 21 -178 61c-24 20 -40 51 -50 78c-12 34 -17 69 -17 104 c0 66 18 135 76 183c56 47 131 69 209 69c8 0 26 -1 42 -3l8 10c-18 38 -39 73 -74 101c-27 23 -67 40 -107 40c-32 0 -62 -11 -84 -30c-14 -12 -30 -39 -41 -61zM480 430c-17 6 -37 11 -56 11c-40 0 -82 -10 -112 -35c-22 -18 -33 -42 -41 -67c-11 -32 -16 -65 -16 -99 c0 -39 4 -78 17 -116c10 -28 23 -55 48 -76c18 -15 44 -27 71 -27c24 0 49 8 66 22c25 21 35 53 44 82c12 45 15 91 15 136c0 58 -13 115 -36 169'], + 0xE10E: [687,14,967,35,927,'175 10l-138 -11l-2 10c147 201 283 406 404 619c0 1 1 3 1 5c0 1 -2 4 -4 4l-102 12v38h244l121 -373c21 -65 45 -130 80 -191c8 -14 17 -28 30 -41c18 -16 28 -20 47 -20s43 4 63 8l8 -28c-39 -16 -77 -31 -118 -42c-26 -8 -52 -14 -79 -14c-24 0 -48 6 -64 22 c-20 23 -33 50 -42 78l-56 182h-273c-37 -64 -83 -171 -120 -258zM534 320c4 0 10 2 10 5s0 11 -1 13l-71 205c-2 6 -7 8 -9 8c-3 0 -7 -3 -10 -8l-115 -208c-1 -3 -2 -5 -2 -9c0 -3 8 -6 12 -6h186'], + 0xE10F: [703,2,855,76,731,'491 379v-11c39 -3 77 -9 114 -20c29 -8 56 -20 77 -37c32 -28 49 -65 49 -104c0 -53 -20 -106 -66 -144c-28 -24 -65 -38 -103 -48c-50 -12 -102 -17 -154 -17h-266v16c10 6 26 13 31 22c7 15 8 31 8 48v482c0 26 0 61 -15 74c-13 11 -30 20 -90 36v21l6 6h336 c51 0 100 -3 149 -14c35 -8 70 -19 95 -40c32 -26 43 -63 43 -99c0 -39 -19 -76 -52 -104c-43 -36 -105 -56 -162 -67zM318 117c0 -23 0 -59 9 -67c9 -7 23 -10 35 -10c55 0 113 10 152 43s59 79 59 126c0 36 -20 69 -51 95c-19 17 -47 25 -76 31c-40 9 -87 11 -128 12v-230 zM318 385c36 0 77 2 112 11c26 6 52 16 72 32c36 30 54 72 54 114c0 32 -12 65 -39 88c-15 12 -35 18 -54 23c-29 6 -57 8 -87 8c-14 0 -31 -1 -44 -5c-6 -1 -10 -6 -11 -10c-3 -5 -3 -28 -3 -42v-219'], + 0xE110: [711,18,924,126,851,'851 585l-103 -86l-17 3c-13 46 -34 91 -74 125c-34 28 -82 39 -129 39c-51 0 -100 -15 -136 -45c-82 -68 -106 -166 -106 -261s29 -192 111 -260c46 -38 109 -57 173 -57c89 0 173 29 249 63l23 -25c-92 -59 -201 -99 -316 -99c-56 0 -111 6 -165 21 c-43 12 -85 30 -118 58c-85 70 -117 171 -117 270s28 201 114 272c84 70 199 108 317 108c47 0 95 -4 141 -16c37 -10 72 -24 99 -47c22 -18 38 -41 54 -63'], + 0xE111: [698,1,1043,80,935,'151 -1v14c10 12 27 26 31 40c3 10 4 35 4 53v429c0 30 0 67 -8 90c-3 12 -12 23 -26 29c-20 7 -50 11 -72 14v24l6 6h453c60 0 120 -5 178 -20c45 -12 89 -30 123 -58c74 -61 95 -150 95 -236c0 -99 -29 -201 -115 -272c-95 -80 -229 -113 -362 -113h-307zM322 185 c0 -36 1 -71 8 -106c1 -9 7 -17 15 -23c17 -14 50 -14 76 -14c91 0 183 21 249 75c35 30 57 68 72 107c18 50 25 102 25 154c0 43 -5 87 -20 128c-12 33 -28 64 -57 87c-29 24 -67 37 -105 46c-53 12 -107 16 -162 16c-27 0 -61 0 -85 -4c-10 -2 -13 -12 -15 -20 c-1 -4 -1 -37 -1 -56v-390'], + 0xE112: [709,8,761,44,691,'681 76l10 -8l-28 -76c-124 7 -248 8 -373 8c-35 0 -87 0 -103 4c-17 8 -36 28 -36 47v429c0 44 0 114 -5 132c-4 15 -9 30 -26 36c-24 10 -50 15 -76 18v23l8 7c176 0 398 0 521 13l14 -5v-62l-13 -11c-84 5 -248 14 -249 14c-6 0 -16 -1 -24 -4c-6 -3 -8 -6 -9 -10 c-5 -11 -5 -23 -5 -36v-180c0 -7 4 -14 10 -20c2 -3 7 -6 12 -6c67 0 236 16 240 17c1 0 9 -5 14 -8v-58c-75 3 -163 3 -245 3c-8 0 -17 0 -22 -5c-8 -6 -9 -14 -9 -22c0 -65 0 -142 10 -193c2 -17 5 -34 19 -46c15 -12 33 -16 54 -16c16 0 310 15 311 15'], + 0xE113: [706,12,636,45,570,'291 23l-139 -35l-13 8c7 169 14 337 14 505c0 50 0 105 -5 122c-4 15 -21 30 -39 36c-19 7 -43 9 -64 11v20l9 8c175 0 435 0 516 8v-68l-7 -8c-115 6 -229 14 -247 14c-10 0 -19 -3 -25 -8c-3 -4 -6 -12 -6 -27v-194c0 -7 1 -15 6 -20c5 -4 8 -6 12 -6 c81 0 165 12 246 17l14 -12v-54c-64 3 -168 3 -251 3c-8 0 -16 0 -22 -5c-5 -4 -5 -14 -5 -22c0 -1 5 -195 6 -293'], + 0xE114: [709,14,985,130,859,'466 303l370 13c-8 -93 -5 -187 3 -280c-108 -26 -218 -50 -331 -50c-98 0 -197 23 -267 82c-84 70 -111 169 -111 266c0 102 35 205 122 278c85 70 204 97 321 97c66 0 135 -6 191 -35c43 -21 75 -53 95 -89l-105 -90l-20 8c-15 45 -39 89 -80 122 c-30 26 -73 36 -115 36c-57 0 -112 -18 -153 -52c-35 -29 -56 -66 -72 -105c-18 -49 -25 -100 -25 -151c0 -91 24 -186 103 -252c52 -44 125 -62 199 -62c25 0 51 0 76 3c12 1 24 6 26 17c1 18 1 58 1 87v75c-3 15 -13 31 -32 34c-1 0 -131 7 -196 11v37'], + 0xE115: [711,7,997,76,930,'700 681l142 30l11 -10c-13 -115 -18 -230 -18 -345c0 -87 0 -251 1 -263c2 -18 8 -38 30 -47c18 -7 42 -13 64 -14v-24l-7 -7l-213 -8l-25 21c11 99 15 198 15 298c0 7 -1 16 -6 19c-8 7 -21 8 -33 8h-314c-10 0 -19 -2 -26 -8c-5 -4 -6 -14 -6 -20c0 -94 3 -188 7 -281 l-136 -36c-2 3 -8 8 -8 9c6 119 6 237 6 356v253c0 17 -20 29 -39 35c-23 7 -49 14 -69 18v23l8 8l233 2l9 -8c-5 -95 -12 -194 -12 -277c0 -5 5 -16 9 -18c9 -7 11 -7 25 -7h315c14 0 24 0 30 4c6 6 7 13 7 21v268'], + 0xE116: [696,-1,566,84,454,'335 618l-1 -251c0 -87 0 -209 3 -261c2 -26 14 -55 47 -62l70 -14v-29h-370v28l81 16c18 4 31 20 31 36c2 43 2 194 2 291c0 83 0 169 -7 250c-1 14 -14 25 -30 29l-76 15v26l5 4h352l4 -4v-27l-85 -16c-17 -3 -26 -17 -26 -31'], + 0xE117: [705,192,562,81,481,'364 513v-346c0 -66 -1 -115 -14 -151c-19 -51 -35 -73 -81 -108c-28 -21 -62 -41 -92 -59c-23 -14 -55 -30 -78 -41l-18 28c21 12 53 32 74 50c27 22 46 48 56 77c15 45 17 102 17 165v431c0 24 0 50 -3 72c-2 15 -16 25 -33 30c-26 7 -53 9 -80 9v27l9 8h351l9 -8v-25 c-24 -5 -73 -14 -74 -14c-15 -4 -31 -15 -35 -29c-8 -24 -8 -77 -8 -116'], + 0xE118: [702,12,878,82,826,'337 387l323 310l115 5v-15l-328 -280c-2 -2 -6 -8 -6 -10c0 -4 3 -9 4 -9l381 -318v-16l-151 -59c-108 113 -220 224 -340 329h-11c0 -98 1 -196 12 -294l-142 -42l-10 10c4 113 5 227 5 340c0 92 0 246 -2 276c-2 18 -26 32 -46 38c-12 3 -39 9 -59 13v26l5 4l246 6 l8 -7c-12 -103 -17 -204 -17 -307h13'], + 0xE119: [702,5,739,78,673,'659 75l14 -9l-23 -71c-98 5 -339 5 -509 5v17c10 10 26 23 29 33c4 12 4 46 4 69v446c0 23 -1 41 -6 64c-3 12 -18 28 -32 33c-19 5 -39 8 -58 9v23l9 8h321l9 -8v-27c-21 -2 -46 -5 -70 -12c-13 -5 -30 -13 -33 -29c-2 -14 -4 -53 -4 -82v-291c0 -57 0 -145 6 -180 c2 -13 15 -20 24 -20c112 0 281 18 319 22'], + 0xE11A: [701,16,1325,127,1258,'298 533l-64 -507l-92 -28l-15 5l82 357c18 82 41 183 41 246c0 22 -14 46 -54 56c-18 4 -36 6 -55 7v24l9 8h245c71 -181 147 -360 243 -534c2 -2 4 -4 7 -4c2 0 5 2 7 4c65 98 177 278 177 279c48 82 94 164 123 252l177 2l6 -12l-21 -20c-9 -11 -11 -25 -11 -73v-146 c0 -89 6 -177 15 -265c4 -41 9 -100 29 -116c11 -9 29 -14 44 -14c19 0 46 2 63 4l4 -27c-1 0 -100 -25 -150 -38c-22 -5 -43 -9 -64 -9c-16 0 -31 2 -41 10c-14 12 -23 28 -23 44c0 169 -2 327 -16 495c0 4 -3 11 -8 11c-3 0 -6 -5 -10 -11c-118 -178 -216 -350 -321 -534 h-81c-72 182 -141 355 -228 533c-2 4 -6 7 -10 7s-8 -3 -8 -6'], + 0xE11B: [713,3,1068,89,895,'254 526l30 -492l-90 -37l-14 8c11 186 21 372 21 557c0 23 0 38 -5 52c-5 13 -20 19 -32 31c-27 13 -51 18 -75 24v22l8 8h217c150 -170 311 -333 477 -493l13 2l-19 478l88 27l22 -14c-13 -136 -23 -271 -28 -407c-3 -96 -4 -192 3 -287h-82l-518 528c-3 4 -7 6 -10 6 c-4 0 -6 -4 -6 -13'], + 0xE11C: [720,15,1024,110,928,'110 330c0 108 40 223 132 300c84 70 193 90 323 90c93 0 187 -21 254 -76c80 -67 109 -161 109 -253c0 -58 -9 -116 -31 -171c-17 -46 -44 -89 -85 -123c-93 -78 -224 -112 -356 -112c-87 0 -174 22 -237 74c-38 32 -63 72 -80 115c-21 50 -29 103 -29 156zM261 366 c0 -103 27 -209 115 -283c40 -33 94 -52 151 -52c58 0 116 17 158 51c33 27 50 63 64 99c17 47 23 95 23 144c0 62 -8 124 -29 183c-18 46 -44 91 -85 126c-36 30 -88 46 -139 46c-58 0 -113 -24 -153 -58c-38 -30 -58 -64 -73 -104c-20 -49 -32 -101 -32 -152'], + 0xE11D: [699,6,787,85,705,'326 30l-138 -36l-13 10c7 152 9 303 9 455c0 55 0 133 -5 164c-2 9 -9 19 -17 25c-21 15 -49 18 -77 21v22l9 8h376c38 0 75 -3 112 -12c28 -6 54 -16 75 -33c36 -30 48 -72 48 -114c0 -60 -20 -122 -72 -165c-24 -21 -56 -35 -90 -45c-41 -13 -86 -20 -129 -23 c-21 -2 -45 -2 -69 -2c-7 0 -13 -2 -18 -6c-5 -5 -6 -11 -6 -17c0 -1 3 -168 5 -252zM321 361c0 -5 3 -10 7 -14c6 -4 15 -6 22 -6c49 0 103 14 139 43c42 37 61 87 61 138c0 39 -11 79 -45 107c-28 24 -68 35 -108 35c-21 0 -46 0 -66 -3c-11 -2 -12 -13 -12 -20 c0 -1 1 -187 2 -280'], + 0xE11E: [714,197,1064,126,942,'925 -141l11 -29c-65 -18 -133 -27 -202 -27c-61 0 -119 21 -162 57c-45 38 -89 77 -127 120c-76 3 -152 25 -207 70c-84 70 -112 170 -112 268c0 109 31 220 125 298c84 70 206 98 325 98c94 0 190 -23 257 -79c82 -68 109 -165 109 -260c0 -55 -7 -111 -28 -164 c-17 -43 -43 -87 -79 -118c-55 -48 -125 -78 -202 -96l-7 -14c23 -33 47 -64 80 -92c29 -23 64 -44 104 -44c42 0 80 6 115 12zM538 26c61 0 121 16 164 52c34 28 53 67 66 106c17 53 23 108 23 164c0 54 -8 107 -27 159c-15 41 -39 80 -75 110c-40 34 -97 51 -153 51 c-58 0 -112 -19 -153 -53c-36 -30 -60 -65 -75 -106c-20 -51 -27 -104 -27 -157c0 -102 27 -205 115 -278c36 -31 91 -48 142 -48'], + 0xE11F: [701,10,842,84,756,'320 325l12 -284l-150 -49l-9 9c9 155 14 310 14 465c0 53 0 136 -3 158c-2 9 -4 18 -12 24c-24 17 -57 20 -88 22v26l6 5h350c43 0 88 -3 132 -12c30 -7 61 -17 83 -37c32 -26 44 -63 44 -100c0 -48 -14 -100 -56 -135c-45 -37 -100 -52 -159 -66l-5 -11 c93 -101 216 -234 273 -283l4 -16l-128 -51l-23 2l-271 331c-1 1 -6 2 -14 2zM320 366c50 0 139 15 172 46c36 34 52 78 52 124c0 34 -11 69 -40 93c-32 27 -79 33 -123 33c-14 0 -30 0 -44 -4c-9 -2 -11 -11 -13 -19c-1 -4 -4 -181 -4 -273'], + 0xE120: [723,14,776,120,676,'573 548l-19 5c-5 38 -23 76 -55 103c-24 20 -57 29 -91 29c-30 0 -60 -9 -81 -27c-24 -19 -32 -47 -32 -74c0 -34 13 -68 42 -92c37 -31 83 -54 129 -76c50 -23 110 -51 140 -77c42 -34 68 -78 68 -126c0 -50 -24 -98 -66 -133c-71 -59 -167 -94 -268 -94 c-49 0 -98 12 -140 33c-33 16 -59 41 -80 68l106 109l21 -7c0 -43 17 -87 54 -118c27 -22 63 -36 102 -36c37 0 70 14 96 35c28 23 43 55 43 88c0 38 -27 69 -59 96c-24 20 -77 46 -119 66c-43 21 -83 45 -119 75c-41 34 -71 77 -71 125c0 52 17 103 62 140 c58 48 140 63 221 63c36 0 71 -2 106 -10c25 -6 50 -15 69 -31c19 -17 34 -38 44 -60'], + 0xE121: [714,11,655,56,717,'312 496v133c0 8 -5 14 -10 15c-3 2 -9 3 -17 3l-219 -10l-10 9v58l9 8c105 -2 209 -9 314 -9c109 0 218 7 327 11l11 -10v-50l-13 -9c-12 0 -155 4 -229 4c-11 0 -15 -1 -19 -4c-3 -2 -4 -4 -4 -11v-138c0 -155 7 -311 18 -466l-157 -41l-10 12c6 165 9 330 9 495'], + 0xE122: [717,10,999,63,945,'661 671l153 46l16 -8c-9 -37 -15 -79 -17 -120c-7 -137 -7 -274 -7 -409c0 -37 0 -90 18 -105c11 -9 33 -12 57 -12c21 0 44 2 62 4l2 -18l-9 -10l-172 -44c-14 -4 -29 -5 -43 -5c-12 0 -24 2 -33 10c-12 12 -16 23 -21 39l-12 5c-76 -28 -157 -52 -238 -52 c-63 0 -129 8 -175 46c-28 24 -43 55 -54 87c-15 44 -20 90 -20 135c0 74 8 176 8 264c0 37 0 60 -5 98c-1 10 -6 20 -16 25c-24 13 -64 19 -92 23v26l5 5l250 3l10 -11c-17 -133 -21 -262 -21 -396c0 -40 3 -82 16 -120c11 -30 27 -58 53 -80c39 -32 93 -44 146 -44 c52 0 103 17 147 35c0 195 0 472 -8 583'], + 0xE123: [712,5,876,61,912,'782 697l126 15l4 -14c-90 -108 -156 -188 -239 -338c-61 -110 -122 -220 -168 -335l-106 -30l-12 6l-186 519c-14 40 -35 96 -51 118c-8 10 -18 19 -31 21c-19 4 -56 10 -58 10v27l9 7c73 0 148 2 221 7c28 -93 58 -192 90 -277c31 -86 64 -172 106 -255c0 -1 4 -7 7 -7 c6 0 12 7 13 11l134 255'], + 0xE124: [701,16,1290,47,1316,'1316 699v-15c-146 -213 -265 -438 -378 -665l-115 -35l-15 12l-127 526c-2 7 -4 14 -9 14c-8 0 -11 -6 -14 -13c-83 -169 -161 -330 -231 -503l-109 -32l-16 10c0 1 -97 370 -145 556c-7 27 -15 52 -26 79c-4 11 -14 20 -27 23c-19 5 -55 14 -57 14v22l9 9h216 c35 -177 82 -353 134 -527c1 -4 4 -6 8 -6s7 6 9 9c92 166 176 326 242 501l113 21l7 -5c27 -178 84 -360 132 -543c1 -5 5 -15 10 -15c4 0 8 3 12 11c87 169 185 361 246 536'], + 0xE125: [705,13,867,64,800,'468 448l209 236l123 16v-27c-63 -40 -148 -115 -207 -177c-38 -38 -62 -66 -100 -109c41 -64 85 -127 134 -188c33 -41 75 -90 117 -125c19 -16 38 -28 56 -33v-18l-183 -36c-51 63 -142 195 -210 295h-17c-55 -58 -156 -182 -212 -263l-114 -20v26l304 313l-196 285 c-9 11 -23 18 -38 24c-20 9 -46 14 -70 19v24l8 9l219 6c49 -88 106 -174 162 -257h15'], + 0xE126: [707,4,699,63,775,'775 695l-308 -372c0 -99 4 -194 10 -295l-125 -32l-19 9c2 102 6 291 6 292s-104 191 -153 279c-13 22 -27 42 -41 62c-6 9 -20 16 -32 19l-50 12v26l8 9h200c7 -17 109 -201 163 -302c3 -4 9 -6 13 -6c6 0 9 1 13 5l203 289l111 17'], + 0xE127: [709,11,862,64,798,'552 629l-11 14c-135 -3 -306 -8 -377 -13l-9 8v64l10 7c193 -10 389 -12 580 -12v-27c-166 -192 -301 -387 -454 -586c-1 -1 -1 -3 -1 -4c0 -3 1 -5 3 -8c4 -5 10 -8 18 -8c157 1 314 8 471 16l16 -13l-29 -78c-139 11 -470 11 -705 11v24c173 199 326 400 488 605'], + 0xE128: [704,9,498,65,432,'413 122l19 -13l-31 -40c-20 -28 -66 -78 -128 -78c-28 0 -57 7 -77 25c-17 15 -32 35 -38 56c-10 33 -12 72 -14 105l-11 3l-51 -44l-17 18l74 74c-5 93 -3 189 19 280c14 62 35 118 84 164c22 20 59 32 91 32c17 0 38 -3 52 -14c21 -18 28 -44 28 -82 c0 -56 -25 -112 -52 -162c-41 -72 -87 -133 -144 -196c6 -61 16 -149 49 -180c14 -13 28 -19 49 -19c22 0 52 24 62 33zM223 302c88 105 135 200 135 304c0 32 -6 45 -14 55c-7 8 -15 11 -29 11c-10 0 -20 -6 -29 -15c-26 -29 -37 -65 -45 -102c-11 -55 -27 -162 -27 -251'], + 0xE129: [498,15,787,139,758,'627 493l15 -9c-10 -91 -17 -182 -17 -273c0 -61 1 -113 14 -128c4 -6 13 -10 22 -10c24 0 54 24 76 42l21 -21c-36 -40 -76 -77 -131 -98c-17 -6 -34 -8 -49 -8s-29 2 -40 11c-17 15 -24 35 -28 55l-13 5c-27 -18 -54 -34 -85 -47c-37 -16 -77 -27 -118 -27 c-29 0 -57 7 -78 22c-26 19 -43 46 -54 73c-16 36 -23 74 -23 111c0 56 4 110 25 162c15 40 40 79 79 105c45 30 103 40 160 40c59 0 111 -16 159 -43zM513 331c0 38 -5 80 -37 109c-17 15 -40 20 -64 20c-27 0 -52 -9 -73 -24c-30 -20 -48 -50 -58 -81 c-16 -40 -19 -82 -19 -125c0 -28 3 -56 12 -83c7 -20 15 -40 32 -56c17 -18 43 -28 70 -28c26 0 54 6 77 19c20 12 35 22 51 35c6 44 9 146 9 214'], + 0xE12A: [705,14,797,64,674,'295 693l-8 -275l12 -3c57 43 125 78 203 78c42 0 83 -15 112 -41c48 -41 60 -99 60 -156c0 -83 -32 -166 -105 -224c-64 -50 -144 -86 -232 -86c-47 0 -92 14 -124 43c-23 22 -45 77 -45 132v346c0 39 -1 65 -2 95c0 10 -5 22 -16 28c-9 5 -60 14 -86 16v22l9 9l206 28z M287 367l-3 -134c0 -33 6 -123 29 -151c20 -22 43 -44 78 -44c42 0 82 16 108 46c35 45 45 100 45 154c0 50 -4 102 -38 145c-19 26 -57 36 -91 36c-21 0 -41 -6 -58 -13c-24 -10 -49 -25 -70 -39'], + 0xE12B: [496,10,662,130,611,'594 379l-100 -55l-18 7c0 44 -13 78 -37 103c-11 11 -25 22 -59 22c-9 0 -33 -4 -49 -18c-59 -47 -72 -123 -72 -190c0 -56 12 -115 61 -157c23 -19 53 -32 87 -32c29 0 58 7 85 17c30 12 67 33 94 52l14 -3l11 -14c-74 -68 -170 -121 -281 -121c-52 0 -103 14 -138 45 c-47 43 -62 101 -62 158c0 90 26 182 104 246c50 42 121 57 190 57c48 0 100 -7 133 -37c24 -21 35 -50 37 -80'], + 0xE12C: [699,11,797,124,760,'421 678l208 21l10 -6c-9 -116 -13 -158 -13 -257l-1 -293c0 -20 4 -40 15 -57c5 -6 15 -11 24 -11c21 0 59 23 78 37l18 -22c-29 -28 -61 -56 -99 -76c-26 -15 -49 -25 -81 -25c-16 0 -31 5 -43 14c-19 16 -25 39 -28 62c-34 -22 -72 -42 -112 -56 c-30 -11 -63 -19 -97 -19c-38 0 -77 9 -104 32c-55 45 -72 109 -72 171c0 47 6 94 24 138c14 36 34 71 67 98c50 42 118 66 189 66c33 0 68 -2 98 -12l9 5v93c0 10 -2 21 -7 31s-13 19 -26 23c-11 3 -47 7 -72 10v24zM511 113v249c0 17 -2 34 -7 50c-4 12 -10 23 -21 30 c-18 12 -36 14 -58 14c-38 0 -75 -15 -102 -37c-24 -20 -41 -46 -49 -74c-10 -36 -16 -72 -16 -109c0 -30 3 -61 13 -91c6 -22 20 -43 39 -59c18 -15 45 -23 71 -23c52 0 94 24 130 50'], + 0xE12D: [495,16,732,127,640,'272 258c75 22 203 58 204 58c8 3 17 6 24 12c5 5 6 11 6 16c0 32 -7 65 -35 88c-17 14 -40 23 -64 23c-31 0 -61 -9 -83 -27c-52 -43 -66 -110 -66 -166c0 -4 3 -5 7 -5c2 0 5 1 7 1zM601 101l12 -19c-42 -27 -87 -54 -135 -73c-36 -14 -74 -25 -115 -25 c-62 0 -125 14 -170 51c-52 44 -66 108 -66 169c0 84 29 168 101 228c54 45 129 63 204 63c58 0 120 -8 162 -43c32 -27 46 -65 46 -103c0 -8 -1 -16 -6 -23c-6 -8 -16 -11 -25 -14c-1 0 -235 -66 -351 -99c0 -46 16 -92 54 -125c28 -23 68 -36 107 -36c27 0 53 6 80 13 c29 9 60 26 85 40'], + 0xE12E: [686,10,532,57,528,'306 392c0 -126 10 -264 17 -374l-119 -28l-18 9c4 103 7 262 7 392l-9 9h-121l-6 8l11 29l12 7h105l8 10c3 42 8 88 24 121c14 29 35 54 60 77c37 34 101 34 123 34c21 0 91 -7 128 -77l-76 -51l-18 7c0 48 -37 79 -60 79c-22 0 -52 -27 -62 -73c-6 -28 -6 -54 -6 -117 l9 -9h137l8 -10l-11 -26l-13 -9h-121'], + 0xE12F: [495,242,781,125,626,'622 127c0 -76 -4 -122 -17 -172c-11 -43 -40 -89 -72 -114c-65 -53 -140 -83 -233 -83c-62 0 -135 29 -175 71l66 79h23c14 -22 42 -55 60 -70c22 -18 46 -30 75 -30c42 0 83 18 105 45c47 58 51 93 53 202c-35 -21 -77 -43 -116 -57c-33 -12 -66 -17 -103 -17 c-33 0 -67 12 -92 31c-62 52 -64 132 -64 202c0 42 7 83 20 124c11 34 29 67 58 92c49 42 118 65 190 65c58 0 101 -12 144 -39l68 25l14 -4c-4 -72 -4 -89 -4 -350zM507 114v259c0 24 -8 41 -24 54c-21 19 -46 27 -72 27c-45 0 -84 -15 -107 -43c-34 -41 -46 -73 -46 -142 c0 -42 3 -84 15 -126c6 -19 14 -39 30 -55c19 -19 44 -30 74 -30c47 0 102 22 130 56'], + 0xE130: [696,8,787,65,755,'283 380c0 -118 0 -290 8 -355l-114 -32l-14 11c5 106 5 214 5 321c0 93 0 264 -5 279c-5 16 -19 29 -37 32c-4 1 -42 4 -61 5v27l13 8l203 20l11 -10l-9 -253l9 -7c36 19 81 39 119 52c30 10 61 19 94 19c32 0 63 -9 84 -29c17 -17 23 -39 27 -60c4 -20 6 -40 6 -60 c0 -32 -9 -96 -9 -160c0 -40 2 -63 15 -81c7 -9 21 -19 35 -19c31 0 54 18 74 35l17 -11l1 -12c-25 -28 -52 -55 -84 -78c-22 -15 -46 -30 -74 -30c-27 0 -52 8 -69 24c-24 22 -30 77 -30 139c0 60 4 110 4 155c0 40 -4 80 -22 96c-19 16 -44 22 -70 22 c-19 0 -38 -6 -55 -13c-24 -9 -52 -21 -72 -35'], + 0xE131: [687,13,464,43,430,'160 621c0 36 32 66 71 66c40 0 72 -30 72 -66s-32 -66 -72 -66c-39 0 -71 30 -71 66zM411 119l19 -16v-11c-25 -29 -51 -54 -85 -75c-25 -16 -54 -30 -85 -30c-26 0 -51 10 -66 28s-18 41 -19 63c-1 15 -1 117 -1 176v117c-1 14 -4 28 -13 39c-6 6 -16 10 -25 10 c-24 0 -50 -15 -75 -32l-18 22c32 23 64 45 101 62c24 11 50 21 79 21c22 0 43 -7 54 -23c9 -13 13 -25 13 -84c0 -40 -3 -81 -3 -121c0 -42 0 -115 1 -125c1 -16 2 -32 11 -46c7 -12 20 -22 35 -22c13 0 25 7 34 13c15 10 29 21 43 34'], + 0xE132: [687,246,459,12,314,'170 621c0 36 33 66 72 66c40 0 72 -30 72 -66s-32 -66 -72 -66c-39 0 -72 30 -72 66zM73 389l-17 22c33 23 64 43 101 61c23 10 46 21 72 21c18 0 37 -2 50 -13c18 -15 21 -39 23 -59c4 -25 4 -110 4 -165c0 -65 0 -175 -6 -229c-4 -37 -19 -73 -45 -104 c-52 -63 -140 -126 -213 -169l-30 19c50 34 92 73 130 110c24 24 43 86 45 117c5 58 3 161 3 231c0 44 0 113 -3 133c-1 16 -3 30 -13 45c-4 7 -18 11 -26 11c-24 0 -53 -15 -75 -31'], + 0xE133: [698,6,729,65,700,'291 253l6 -228l-106 -31l-17 9c3 90 3 240 3 360v177c0 22 -1 44 -7 65c-3 14 -18 28 -34 33c-5 1 -47 5 -71 7v29l11 7l219 17l8 -5c-1 -39 -9 -275 -12 -399h16c96 72 178 157 282 221l64 -37l-1 -12c-94 -46 -186 -96 -269 -154c57 -75 138 -171 186 -213 c9 -7 21 -10 30 -10c6 0 24 3 31 6c17 7 27 14 46 30l24 -24c-51 -54 -99 -91 -108 -95c-10 -6 -29 -8 -37 -8c-17 0 -32 3 -43 12c-77 58 -134 170 -205 252'], + 0xE134: [697,7,465,63,433,'291 685l-9 -454c-1 -45 -3 -114 9 -134c6 -10 16 -19 31 -19c14 0 26 4 38 11c15 9 30 22 43 34h13l17 -16c-25 -31 -54 -61 -90 -84c-27 -16 -55 -30 -88 -30c-26 0 -53 5 -68 23c-18 19 -21 43 -23 67c-2 36 0 113 2 170c3 85 1 183 0 274c-1 29 -1 70 -5 87 c-4 13 -15 26 -31 29c-17 4 -45 5 -67 6v23l13 8l200 17'], + 0xE135: [495,9,1140,37,1105,'294 383c0 -119 1 -319 6 -357l-110 -34l-18 8c4 92 7 247 7 290c0 41 0 106 -16 119c-8 7 -19 10 -26 10c-25 0 -55 -15 -79 -30l-21 24c31 22 64 43 99 59c24 11 49 20 76 20c19 0 36 0 50 -12c17 -15 25 -31 27 -52l11 -3c33 18 78 38 117 52c30 10 61 18 94 18 c30 0 55 -5 78 -23c15 -13 29 -32 35 -49l16 -5c36 19 78 42 115 56c29 11 60 20 92 20c33 0 74 -9 95 -33c23 -27 27 -78 27 -146c0 -43 -4 -119 -4 -161c0 -13 1 -36 10 -47c7 -9 23 -16 35 -16c26 0 50 9 72 23h11l12 -21c-30 -26 -65 -55 -102 -77 c-23 -14 -47 -23 -75 -23c-20 0 -37 7 -50 18c-16 13 -31 50 -31 103c0 51 5 118 5 169c0 29 0 60 -7 88c-3 16 -10 32 -24 44c-12 10 -29 16 -48 16c-22 0 -41 -8 -61 -16c-30 -13 -59 -29 -86 -46c0 -119 1 -276 7 -343l-108 -35l-18 8c4 99 5 194 5 290c0 28 0 56 -6 83 c-3 16 -10 34 -24 46c-12 10 -28 15 -46 15c-19 0 -48 -8 -64 -14c-27 -10 -54 -22 -78 -36'], + 0xE136: [497,10,794,32,763,'284 378c0 -117 3 -319 11 -350l-120 -32l-13 7c3 98 7 292 7 293c0 42 0 105 -17 119c-7 6 -15 8 -24 8c-22 0 -62 -25 -76 -33l-20 24c33 24 62 44 99 61c24 12 50 22 78 22c17 0 32 0 45 -11c20 -17 24 -34 27 -58l13 -4c37 21 77 38 118 52c32 10 65 18 99 18 c27 0 54 -4 77 -23c20 -17 26 -40 28 -58c5 -28 5 -93 5 -140c0 -31 -3 -71 -3 -103c0 -57 7 -64 17 -72c8 -7 18 -10 30 -10c28 0 52 12 73 26h13l12 -17c-30 -28 -61 -56 -97 -78c-21 -15 -46 -29 -76 -29c-22 0 -44 7 -59 20c-17 15 -20 38 -23 58c-2 15 -2 115 -2 172 c0 58 0 144 -29 168c-17 14 -40 16 -61 16c-33 0 -92 -26 -132 -46'], + 0xE137: [486,11,796,118,675,'259 234c0 -35 4 -70 16 -104c9 -26 22 -51 45 -70c18 -16 41 -30 70 -30c30 0 64 5 86 24c25 21 38 50 45 79c12 44 13 79 13 135c0 31 -3 62 -13 91c-7 22 -18 43 -38 60c-20 18 -50 27 -80 27c-31 0 -59 -12 -81 -30c-24 -20 -37 -46 -47 -73 c-12 -35 -16 -72 -16 -109zM118 233c0 68 23 135 81 183c55 47 132 70 210 70c70 0 143 -13 193 -55c50 -41 73 -99 73 -157c0 -44 -5 -87 -22 -129c-13 -34 -32 -66 -62 -91c-55 -46 -133 -65 -210 -65c-67 0 -136 8 -184 48c-61 51 -79 125 -79 196'], + 0xE138: [488,247,785,52,678,'300 -217l-132 -30l-13 9c7 163 23 250 23 535c0 37 0 94 -15 106c-7 6 -17 10 -27 10c-20 0 -50 -17 -69 -28l-15 24c30 22 62 43 97 59c24 10 49 20 76 20c17 0 35 -2 48 -13c16 -13 21 -31 23 -50l8 -4c32 19 66 35 101 48c29 10 59 19 89 19c45 0 91 -10 122 -37 c23 -19 37 -43 47 -68c11 -32 15 -65 15 -99c0 -76 -24 -151 -84 -209c-49 -48 -123 -75 -198 -75c-33 0 -65 4 -94 21l-12 -6zM322 69c21 -17 49 -27 78 -27c32 0 65 7 88 26c21 19 34 42 44 67c11 30 16 63 16 95c0 33 -3 67 -12 99c-7 22 -19 41 -39 58s-48 27 -77 27 c-20 0 -39 -5 -57 -12c-25 -9 -49 -22 -70 -36v-203c0 -19 1 -39 6 -57c4 -14 11 -27 23 -37'], + 0xE139: [538,247,795,143,639,'639 -213l-119 -34l-16 7l8 294l-10 5c-33 -19 -75 -41 -111 -54c-32 -11 -65 -18 -100 -18c-38 0 -74 14 -101 37c-21 17 -28 41 -35 64c-10 38 -12 76 -12 114c0 85 23 174 96 235c48 40 113 58 180 58c46 0 94 -11 132 -31l64 74l23 -3c-6 -102 -12 -204 -12 -307 c0 -131 4 -313 13 -441zM512 112v237c0 27 -6 62 -25 78c-21 17 -47 28 -76 28s-59 -11 -78 -28c-25 -21 -38 -48 -48 -77c-13 -37 -16 -76 -16 -115c0 -31 2 -62 12 -91c6 -22 17 -43 37 -59c17 -15 42 -24 67 -24c52 0 94 28 127 51'], + 0xE13A: [489,6,604,47,554,'308 33l-116 -39l-22 7c4 100 8 292 8 293c0 40 0 101 -16 115c-8 6 -13 6 -23 6c-21 0 -54 -15 -74 -30l-18 23c31 22 62 43 97 60c23 11 48 21 75 21c20 0 39 -4 53 -16c9 -7 12 -17 14 -27c4 -15 5 -28 5 -44l12 -5c27 25 54 48 87 66c24 12 50 23 78 23 c22 0 44 -7 60 -20c22 -18 26 -45 26 -70l-82 -58l-14 8c-3 14 -9 29 -21 39c-10 9 -25 16 -41 16c-27 0 -50 -11 -70 -31c-15 -16 -25 -35 -29 -55s-4 -39 -4 -58c0 -32 7 -148 15 -224'], + 0xE13B: [494,15,606,70,495,'489 426l-80 -74l-16 4c-6 32 -21 62 -48 85c-15 13 -37 16 -59 16c-20 0 -39 -6 -55 -18c-16 -14 -16 -34 -16 -54c0 -22 16 -46 31 -57c31 -23 68 -41 105 -57c37 -15 88 -36 106 -52c26 -21 38 -51 38 -81c0 -35 -16 -70 -47 -95c-49 -42 -120 -58 -189 -58 c-43 0 -85 5 -123 21c-27 10 -47 27 -66 46l69 94l16 -1c10 -34 20 -70 50 -95c21 -18 48 -28 78 -28c26 0 51 9 69 24c16 13 21 31 21 49s-10 33 -25 46c-17 15 -61 35 -97 49c-38 15 -70 36 -99 60c-26 21 -43 50 -43 81c0 41 11 83 47 112c45 37 108 51 170 51 c40 0 80 -1 113 -20c21 -12 39 -28 50 -48'], + 0xE13C: [624,11,540,56,479,'188 588l116 36l17 -7c0 -1 -9 -102 -14 -164l9 -8h135l8 -10l-11 -26l-13 -9h-119l-9 -8v-159c0 -52 2 -127 23 -146c8 -8 20 -14 37 -14c15 0 28 5 41 11c16 7 33 18 47 29h11l13 -15c-25 -30 -55 -58 -91 -80c-26 -16 -55 -29 -89 -29c-28 0 -57 8 -76 27 c-13 13 -19 32 -23 50c-7 32 -8 64 -8 97v228l-10 9h-120l-6 8l11 29l12 7h105l7 9c-1 52 -3 134 -3 135'], + 0xE13D: [500,8,794,34,759,'501 466l112 34l13 -10c-4 -91 -5 -181 -5 -273c1 -26 0 -67 1 -77c0 -10 2 -23 8 -31c8 -10 20 -19 35 -19c22 0 50 15 74 28h12l8 -20c-30 -28 -66 -59 -104 -82c-21 -14 -38 -24 -66 -24c-24 0 -40 3 -55 18c-13 14 -20 34 -24 51l-11 6c-37 -18 -84 -40 -123 -55 c-26 -10 -53 -20 -81 -20c-40 0 -79 9 -106 33c-21 17 -24 43 -27 66s-4 68 -4 113v65c0 47 0 117 -10 137c-7 10 -20 14 -32 14c-18 0 -46 -16 -66 -27l-16 25c32 21 63 41 98 58c22 10 45 20 70 20s47 -4 62 -20c19 -20 21 -47 21 -75c0 -41 -8 -114 -8 -175 c0 -56 6 -118 33 -140c18 -15 46 -20 72 -20c51 1 86 22 124 48c2 113 2 240 -5 352'], + 0xE13E: [490,12,659,4,597,'20 386l-16 25c32 21 66 41 102 57c22 9 46 19 71 19c15 0 33 -3 45 -12c26 -19 42 -100 60 -168c10 -41 31 -117 41 -148c4 -13 10 -29 21 -39c4 -4 14 -7 16 -7c11 0 23 5 30 11c32 26 59 57 80 90c17 27 22 58 22 88c0 38 -21 83 -48 114v17l82 57h14 c39 -22 57 -62 57 -101c0 -68 -39 -129 -83 -185c-100 -127 -196 -196 -223 -216h-46l-67 257c-11 40 -23 84 -34 121c-3 12 -8 25 -19 35c-7 8 -19 11 -30 11c-15 0 -51 -12 -75 -26'], + 0xE13F: [496,13,1065,23,1002,'284 382l38 -240l11 -3c76 105 149 212 210 324l59 30l14 -2c27 -126 63 -250 119 -370c2 -5 5 -12 10 -12c6 0 16 2 22 6c33 24 61 53 86 84c24 31 38 66 38 103c0 40 -26 86 -51 121v13l89 60l18 -2c30 -31 55 -67 55 -107c0 -30 -11 -59 -25 -86 c-21 -38 -47 -72 -76 -106c-38 -43 -78 -86 -120 -127c-26 -25 -54 -51 -87 -71c-7 -4 -13 -4 -21 -4c-7 0 -14 4 -19 8c-12 12 -17 27 -22 42l-103 293h-11c-71 -112 -151 -221 -219 -334l-68 -15l-12 6c-4 74 -14 147 -23 220c-9 65 -22 163 -51 187c-7 7 -18 8 -28 8 c-26 0 -57 -8 -78 -20l-16 19c32 23 65 45 102 62c24 11 49 21 76 21c24 0 44 -11 60 -25c8 -5 10 -13 12 -21c2 -7 8 -42 11 -62'], + 0xE140: [491,12,663,7,611,'538 489l40 -36v-10c-87 -47 -163 -111 -227 -176c34 -60 79 -138 121 -173c11 -9 22 -17 37 -17c29 0 58 21 79 40h11l12 -14c-23 -31 -50 -61 -84 -85c-23 -16 -49 -30 -80 -30c-23 0 -43 8 -60 22c-16 14 -27 31 -39 48l-73 124h-10c-52 -56 -97 -120 -128 -186 l-18 -4l-52 25v7c53 70 114 141 182 203c-24 49 -64 114 -75 131c-11 18 -25 36 -42 50c-8 7 -19 10 -30 10c-21 0 -54 -18 -75 -32l-20 24c27 22 56 43 87 60c22 11 46 21 72 21c21 0 43 -2 58 -15c21 -17 35 -39 49 -61c21 -34 39 -70 55 -105h7c59 62 119 124 190 179h13 '], + 0xE141: [491,232,794,44,634,'634 487c-5 -72 -5 -89 -5 -350c0 -76 -3 -122 -16 -172c-11 -43 -48 -89 -80 -114c-65 -53 -139 -83 -233 -83c-62 0 -135 29 -174 71l65 79h23c14 -22 41 -55 60 -70c22 -18 46 -30 75 -30c43 0 83 18 105 45c46 56 50 90 52 191l-11 4c-34 -20 -68 -34 -105 -48 c-32 -10 -71 -21 -101 -21c-31 0 -64 7 -87 26c-16 14 -22 35 -26 55c-8 35 -8 70 -8 106c0 51 6 103 6 154c-1 25 2 60 -19 78c-7 6 -18 9 -28 9c-19 0 -46 -17 -63 -31l-20 25c30 23 59 41 95 57c26 12 53 21 84 21c18 0 36 -7 49 -18c11 -10 20 -25 20 -87 c0 -40 -4 -79 -4 -119c0 -18 -2 -37 -2 -57c0 -29 2 -57 4 -74c3 -20 7 -37 22 -50c19 -15 47 -23 73 -23c45 0 105 31 122 42c6 58 8 121 8 184c0 58 -2 116 -10 169l109 35'], + 0xE142: [492,14,656,51,603,'545 492l23 -18c-68 -78 -148 -162 -224 -234l-125 -124l5 -9c36 0 80 -5 115 -9c35 -3 69 -5 103 -5c33 0 64 10 87 29c17 15 34 32 47 49l27 -16l-50 -86c-12 -21 -25 -42 -45 -59c-19 -16 -48 -18 -74 -18c-52 0 -104 4 -157 12c-46 7 -91 13 -138 13 c-30 0 -49 -18 -63 -31h-10l-15 12c64 80 152 162 230 232c51 46 98 96 142 147c-8 0 -16 -1 -24 -1c-38 0 -75 6 -112 9c-33 3 -68 13 -87 13c-14 0 -32 -9 -43 -16c-16 -12 -30 -26 -43 -40l-29 12l76 114c11 16 36 24 58 24c31 0 62 -8 93 -14c43 -10 86 -16 131 -16 c38 0 72 11 102 30'], + 0xE143: [493,13,464,43,430,'411 119l19 -16v-11c-25 -29 -51 -54 -85 -75c-25 -16 -54 -30 -85 -30c-26 0 -51 10 -66 28s-18 41 -19 63c-1 15 -1 117 -1 176v117c-1 14 -4 28 -13 39c-6 6 -16 10 -25 10c-24 0 -50 -15 -75 -32l-18 22c32 23 64 45 101 62c24 11 50 21 79 21c22 0 43 -7 54 -23 c9 -13 13 -25 13 -84c0 -40 -3 -81 -3 -121c0 -42 0 -115 1 -125c1 -16 2 -32 11 -46c7 -12 20 -22 35 -22c13 0 25 7 34 13c15 10 29 21 43 34'], + 0xE144: [493,246,464,12,306,'73 389l-17 22c33 23 64 43 101 61c23 10 46 21 72 21c18 0 37 -2 50 -13c18 -15 21 -39 23 -59c4 -25 4 -110 4 -165c0 -65 0 -175 -6 -229c-4 -37 -19 -73 -45 -104c-52 -63 -140 -126 -213 -169l-30 19c50 34 92 73 130 110c24 24 43 86 45 117c5 58 3 161 3 231 c0 44 0 113 -3 133c-1 16 -3 30 -13 45c-4 7 -18 11 -26 11c-24 0 -53 -15 -75 -31'], + 0xE145: [489,202,798,85,722,'391 59l45 46h11c8 -25 29 -49 64 -49c19 0 41 5 55 18c23 19 34 45 43 71c12 37 15 74 15 112c0 46 -10 94 -49 127c-20 16 -45 28 -73 28c-24 0 -47 -5 -68 -15c-27 -12 -52 -31 -74 -50c-32 -26 -58 -57 -82 -90c8 -12 17 -23 24 -35c28 -37 53 -76 71 -117 c7 -15 13 -30 18 -46zM276 489l18 -14c-19 -18 -35 -37 -48 -59c-10 -16 -17 -33 -17 -52c0 -22 16 -50 24 -65h12c28 34 58 65 92 94c33 27 68 51 110 69c32 14 67 24 103 24c38 0 73 -10 100 -32c42 -35 52 -87 52 -136c0 -101 -50 -197 -136 -269 c-20 -17 -42 -32 -67 -43c-19 -9 -41 -15 -63 -15c-21 0 -41 4 -59 12c-3 -64 -25 -126 -81 -172c-26 -22 -62 -33 -99 -33c-29 0 -59 7 -79 24c-33 27 -53 63 -53 102c0 50 16 99 35 146c19 43 43 84 69 124c-9 12 -16 24 -24 37c-12 22 -24 45 -24 70c0 32 15 63 35 90 c26 37 62 70 100 98zM209 153c-13 -21 -24 -43 -34 -65c-14 -33 -26 -67 -26 -103c0 -40 8 -82 43 -111c17 -14 37 -26 61 -26c18 0 35 6 47 17c31 25 38 61 38 96c0 24 -13 47 -26 69c-23 36 -49 71 -77 104l-16 19h-10'], + 0xE146: [697,7,543,115,606,'591 697l15 -176l-28 1l-28 82c-8 25 -38 35 -65 39c-64 10 -130 10 -195 7c-15 -1 -25 -8 -31 -19c-9 -16 -10 -65 -10 -82c0 -177 0 -355 3 -533l-87 -23l-11 11c4 183 8 457 8 549c0 20 0 41 -2 62c-1 13 -5 27 -16 36l-29 22l3 20h268c69 0 138 1 205 4'], + 0xE147: [696,4,865,65,810,'441 671l66 25c49 -132 103 -257 161 -385c42 -90 92 -182 142 -267l-2 -16l-68 -32c-224 13 -449 21 -673 7l-2 42zM666 50l7 9c-47 94 -227 494 -227 495h-13c-107 -164 -198 -321 -288 -490l3 -12c172 3 346 -2 518 -2'], + 0xE148: [701,12,915,64,851,'266 349l-3 108h28c0 -19 4 -38 4 -57c0 -11 16 -12 25 -13c50 -3 110 -3 164 -3c40 0 83 0 119 2c12 1 19 11 19 20l-2 51h34l-3 -106v-108l-34 1c3 19 -1 38 -1 57c0 10 -6 21 -19 21c-39 1 -78 4 -117 4c-46 0 -103 -2 -155 -4c-11 0 -28 -2 -28 -16v-66l-33 1z M411 -12c-86 0 -175 17 -238 71c-80 72 -109 173 -109 272c0 96 2 138 51 212c65 100 222 158 394 158c90 0 183 -20 249 -77c71 -64 93 -155 93 -243c0 -58 -8 -116 -28 -170c-17 -46 -43 -89 -81 -123c-86 -76 -212 -100 -331 -100zM459 31c96 0 156 27 213 77 c30 27 45 64 54 101c16 55 19 111 19 168c0 80 -22 162 -87 219c-55 49 -133 67 -210 67c-89 0 -154 -31 -200 -73c-25 -23 -48 -58 -60 -95c-15 -48 -19 -99 -19 -150c0 -94 30 -188 106 -255c49 -43 116 -59 184 -59'], + 0xE149: [698,7,930,63,902,'475 673l75 25c61 -215 133 -427 240 -627c7 -12 22 -19 37 -19l75 3l-1 -22c-59 -16 -117 -30 -177 -40l-26 8c-77 186 -143 376 -215 564h-14c-107 -188 -272 -482 -304 -548c-28 -10 -57 -19 -88 -23l-14 10c143 220 282 442 412 669'], + 0xE14A: [695,6,733,62,674,'650 688l24 -163l-38 -1l-19 61c-1 6 -4 12 -9 17c-11 10 -27 16 -41 16h-391c-12 0 -24 -2 -34 -7s-19 -12 -24 -22l-26 -64l-30 -2c7 57 9 115 14 172zM169 329l19 70c114 -4 227 -2 341 3l-17 -72c-114 2 -229 4 -343 -1zM674 147l-17 -153c-1 0 -389 4 -583 6 c0 1 -8 101 -12 152l29 1l15 -51c3 -9 12 -18 18 -23s15 -7 25 -7h340h113c13 0 22 9 26 20c0 1 12 37 18 55h28'], + 0xE14B: [690,14,875,60,814,'814 658l-86 -17c-5 -1 -10 -3 -14 -6c-4 -4 -5 -14 -5 -21c-3 -30 -3 -134 -3 -202c0 -135 2 -269 13 -404l-90 -22l-16 11c3 98 3 195 3 293c0 108 -1 229 -2 337c0 3 -1 6 -3 8c-4 4 -10 5 -12 5h-326c-1 0 -8 0 -12 -4c-3 -3 -4 -9 -4 -10c-8 -101 -8 -202 -8 -304 c0 -82 3 -204 6 -307l-96 -19l-8 6c5 104 9 208 9 312c0 73 1 147 0 220c0 26 -1 51 -7 77c-1 7 -3 17 -8 21c-4 4 -12 7 -19 10c-2 0 -43 12 -66 18v30c85 -5 170 -9 255 -9h223c50 0 185 3 276 5v-28'], + 0xE14C: [695,-2,789,86,709,'415 362l-198 -256l6 -10c101 -2 200 -2 301 -2c61 0 122 2 182 10l3 -10l-17 -89c-101 3 -200 4 -301 4s-203 -7 -305 -7c0 1 6 28 11 47l184 216c21 26 49 60 61 85c-10 22 -25 46 -41 66l-172 225l77 47c156 -3 312 0 468 7l4 -11l-24 -53l-374 4l-12 -13l154 -222 c3 -5 6 -10 6 -16s-8 -15 -13 -22'], + 0xE14D: [697,11,869,54,805,'805 546l-25 -3c-4 26 -12 42 -33 61c-13 11 -35 14 -53 14c-31 0 -60 -11 -82 -31c-72 -64 -115 -147 -135 -236c-11 -52 -11 -217 -11 -326l-76 -36l-19 7c5 75 5 150 5 225c0 76 -8 152 -31 225c-17 53 -42 106 -86 145c-23 21 -53 34 -87 34c-20 0 -42 -3 -56 -17 c-19 -17 -33 -37 -41 -60l-21 7c9 44 21 82 57 114c25 22 61 28 95 28c43 0 83 -15 112 -41c33 -29 51 -61 64 -100c22 -59 33 -120 40 -181h10c11 57 28 114 52 168c18 41 42 80 78 111c32 29 77 43 123 43c30 0 60 -9 82 -28c14 -13 22 -30 28 -48c8 -24 10 -49 10 -75'], + 0xE14E: [686,-2,1001,113,876,'346 684l293 2v-25l-71 -10c-17 -2 -27 -16 -27 -30v-13l8 -7c53 0 105 -6 157 -19c40 -11 81 -28 111 -55c46 -40 59 -98 59 -154c0 -75 -22 -152 -82 -205c-30 -26 -67 -44 -106 -55c-46 -13 -92 -25 -138 -27l-9 -6c3 -20 18 -37 41 -42l67 -12v-24h-303v21l70 15 c9 2 15 9 20 16c4 8 7 17 7 26l-7 6c-93 1 -188 21 -254 80c-49 43 -69 105 -69 166c0 65 20 132 73 180c65 58 155 87 248 89l9 7v12c0 14 -11 26 -26 28l-71 9v27zM541 565v-443l7 -8c57 1 114 19 155 56c55 48 69 116 69 182c0 33 -2 67 -12 99c-7 23 -17 46 -36 63 c-47 42 -111 58 -175 59zM443 121v444l-7 8c-59 -2 -113 -26 -154 -62c-49 -43 -65 -104 -65 -164c0 -71 31 -139 87 -189c35 -30 84 -43 132 -44'], + 0xE14F: [694,1,854,-1,820,'493 244l2 -158c2 -21 12 -44 38 -48l65 -12l-1 -27h-300v27l76 12c25 4 33 40 33 49v155l-7 6c-40 0 -80 4 -118 13c-31 8 -60 18 -82 38c-22 19 -32 46 -40 73c-14 41 -21 84 -24 127c-3 33 -9 88 -11 99c-3 13 -5 26 -15 35c-8 7 -19 12 -31 11l-71 -10l-8 22l122 36 c4 2 26 2 40 2s25 -9 35 -18c14 -12 14 -53 14 -81c0 -58 4 -116 19 -173c11 -38 26 -76 57 -104c30 -26 70 -41 113 -43l7 7v83c0 100 0 220 -7 302l98 23l4 -8c-8 -75 -15 -149 -15 -224c0 -59 1 -118 4 -176l7 -6c43 2 80 23 110 49c21 18 30 44 39 69 c16 42 25 85 31 129c8 44 8 89 22 132c38 12 78 20 117 24l4 -18c-27 -15 -40 -44 -48 -71c-5 -18 -14 -68 -21 -102c-7 -40 -16 -80 -32 -118c-9 -24 -19 -48 -39 -66c-47 -42 -114 -52 -180 -53'], + 0xE150: [689,2,1048,59,985,'975 60l10 -9l-29 -53c-129 9 -261 9 -391 1l11 58c53 11 101 36 140 70c30 26 48 61 61 97c16 47 21 96 21 144c0 84 -25 169 -92 229c-46 40 -110 57 -173 57c-70 0 -143 -17 -192 -62c-35 -30 -58 -69 -74 -110c-18 -49 -26 -101 -26 -153c0 -81 24 -164 89 -223 c33 -29 78 -45 125 -53l-24 -55c-124 10 -247 14 -372 6l19 61c70 -3 155 -6 215 -11l7 15c-29 14 -57 30 -80 51c-27 25 -45 56 -58 90c-15 41 -20 85 -20 128c0 95 31 190 108 257c79 71 193 94 304 94c50 0 101 -5 148 -19c40 -12 77 -29 106 -55c68 -60 92 -146 92 -230 c0 -93 -26 -189 -102 -256c-32 -28 -65 -51 -107 -66v-12c96 4 205 9 284 9'], + 0xE151: [468,20,803,126,791,'486 212c-19 56 -49 142 -78 167c-20 19 -47 32 -76 32c-28 0 -54 -11 -73 -28c-21 -19 -35 -43 -44 -68c-11 -32 -15 -66 -15 -99c0 -49 8 -100 48 -135c14 -12 32 -19 50 -19c14 0 28 5 41 11c19 9 39 23 54 35c28 26 63 66 93 104zM662 468l57 -23 c-52 -69 -156 -207 -156 -208c12 -38 25 -76 42 -112c11 -21 22 -44 41 -61c8 -7 17 -14 28 -14c28 0 68 25 98 46l11 -1l8 -19c-38 -27 -94 -63 -116 -77c-15 -9 -34 -19 -54 -19c-15 0 -30 5 -41 15c-9 8 -17 17 -20 29l-52 134l-13 2l-73 -78c-6 -6 -13 -14 -20 -20 c-24 -21 -51 -41 -81 -55c-23 -11 -48 -19 -75 -19c-24 0 -46 9 -61 24c-47 41 -59 100 -59 157c0 85 26 171 95 232c45 40 104 67 167 67c32 0 61 -10 83 -29c18 -16 31 -36 41 -56c16 -28 25 -52 32 -75l12 -1'], + 0xE152: [698,202,808,159,674,'461 380c56 -2 118 -14 152 -45c38 -35 61 -85 61 -133c0 -56 -24 -111 -69 -151c-54 -48 -131 -66 -208 -66c-34 0 -67 9 -90 30c-7 6 -12 12 -16 19l55 69l15 -6c-2 -20 6 -39 21 -53c16 -14 38 -23 60 -23c33 0 61 16 83 35c40 36 53 88 53 138c0 43 -15 87 -49 118 c-36 32 -88 40 -138 40c-23 0 -47 0 -71 -2l3 36c56 0 111 15 151 50c32 27 40 66 40 104c0 56 -47 111 -115 111c-32 0 -67 -9 -91 -30s-34 -49 -42 -76c-11 -42 -16 -85 -17 -129c-1 -31 -1 -138 -1 -208c0 -126 2 -252 10 -377l-86 -33l-13 15c5 190 1 381 10 571 c2 51 11 129 37 176c18 36 32 54 66 82c44 37 105 56 176 56c85 0 154 -60 154 -135c0 -47 -24 -90 -61 -123c-23 -21 -49 -38 -78 -48'], + 0xE153: [470,198,747,3,689,'621 470l68 -27c-91 -131 -193 -255 -278 -389l-18 -43c1 -60 -3 -123 -9 -183l-39 -26c-24 7 -44 19 -63 33l60 165c0 39 -35 300 -118 372c-21 18 -49 31 -79 31c-32 0 -73 -7 -98 -30l-26 -27l-18 12c17 23 34 47 54 65c36 32 86 46 137 46c35 0 70 -12 96 -35 c38 -34 59 -81 73 -128c19 -65 28 -146 26 -214l9 -2c74 120 166 280 208 375'], + 0xE154: [694,9,626,94,526,'465 687l6 -8l-18 -42c-39 2 -81 9 -156 9c-38 0 -74 -9 -74 -41c0 -14 11 -26 22 -36c4 -5 64 -55 97 -83l107 -91c43 -39 77 -89 77 -144c0 -70 -31 -138 -87 -188c-48 -43 -110 -72 -177 -72c-39 0 -78 6 -106 30c-41 37 -62 87 -62 139c0 47 21 92 47 133 c35 55 81 104 132 149c-28 23 -54 46 -77 72c-12 16 -27 32 -27 51c0 13 6 25 12 37c9 16 22 31 35 44c17 18 40 28 64 35c30 9 62 13 95 13c30 0 58 -3 90 -7zM299 422c-79 -72 -118 -134 -118 -210c0 -53 19 -105 61 -143c21 -17 48 -25 76 -25c34 0 66 18 89 39 c34 29 47 81 47 126c0 34 -20 64 -40 92c-29 43 -74 85 -115 121'], + 0xE155: [471,11,681,130,585,'346 256l135 2l-16 -42c-34 1 -106 1 -159 1c-1 0 -49 -2 -78 -3l-6 -6c2 -49 23 -97 62 -132c13 -11 30 -17 46 -21c24 -6 48 -8 73 -8c57 0 115 16 160 49l8 -1l14 -20c-36 -25 -76 -48 -119 -64c-34 -12 -69 -22 -106 -22c-59 0 -120 12 -163 49 c-48 44 -67 105 -67 165c0 75 32 147 92 199c51 45 119 69 190 69c59 0 114 -22 156 -59l-42 -53l-15 -2c-11 14 -27 34 -36 41c-26 23 -64 30 -100 30c-39 0 -75 -13 -102 -37c-38 -34 -48 -82 -49 -128l7 -6c42 0 114 -1 115 -1'], + 0xE156: [695,136,638,126,586,'504 -136l-23 12c17 27 38 59 38 85c0 11 -9 20 -18 27c-11 9 -25 11 -39 11c-21 0 -41 0 -61 -2c-31 -4 -81 -7 -92 -7c-45 0 -93 6 -125 35c-45 39 -58 95 -58 149c0 66 27 129 62 188c46 76 109 143 177 204c20 16 39 32 60 47l-2 7l-103 8c-27 4 -53 10 -75 23 c-2 1 -2 4 -2 4c0 1 0 2 1 4l33 35c1 1 3 1 5 1s2 0 8 -4c82 -47 149 -52 265 -36v-19c-61 -17 -116 -49 -161 -90c-103 -90 -181 -206 -181 -336c0 -48 18 -96 56 -131c30 -26 72 -32 112 -32c21 0 43 0 60 2c18 1 44 4 54 4c16 0 32 -1 47 -4c11 -3 21 -6 29 -13 c9 -8 15 -19 15 -30c0 -22 -10 -43 -22 -62c-15 -29 -37 -55 -60 -80'], + 0xE157: [466,199,692,-5,572,'480 -199l-11 11c2 27 2 208 2 313c0 63 0 158 -4 190c-2 25 -5 51 -26 69c-18 15 -43 18 -66 18c-25 0 -48 -6 -71 -15c-29 -11 -56 -26 -83 -43c-2 -24 -2 -107 -2 -160c0 -46 4 -113 7 -170l-81 -25l-10 10v335c0 22 0 50 -16 64c-8 7 -18 10 -28 10 c-22 0 -53 -19 -78 -33l-18 18c26 19 53 37 83 52c20 9 41 18 64 18c21 0 44 -5 60 -19c14 -13 17 -32 18 -51l12 -2c37 22 77 41 119 56c31 11 64 19 97 19c28 0 56 -6 76 -24c19 -16 22 -41 26 -64c3 -33 3 -116 3 -174c0 -123 2 -246 19 -368'], + 0xE158: [695,11,686,98,580,'292 -11c-41 0 -80 13 -108 38c-35 31 -52 72 -64 114c-18 60 -22 122 -22 184c0 60 2 122 22 180c17 46 42 87 82 122c48 43 118 68 187 68c42 0 83 -14 112 -40c33 -29 48 -69 59 -108c16 -59 20 -119 20 -179s-7 -120 -26 -177c-16 -44 -38 -87 -76 -120 c-50 -45 -114 -82 -186 -82zM192 370h286l7 7c-5 55 -9 108 -23 161c-7 30 -21 62 -46 84c-21 19 -48 26 -78 26c-32 0 -62 -13 -84 -33c-31 -27 -48 -70 -57 -106c-12 -46 -12 -86 -12 -132zM481 333h-288l-8 -7c0 -49 5 -101 20 -147c10 -35 26 -70 55 -95 c26 -23 60 -37 96 -37c31 0 56 17 76 36c26 23 35 56 43 88c12 48 15 103 15 154'], + 0xE159: [474,9,437,145,406,'392 109l14 -14c-26 -29 -55 -56 -89 -77c-24 -14 -51 -27 -80 -27c-26 0 -50 14 -65 33c-19 22 -27 50 -27 78v347l92 25l12 -10c-17 -89 -19 -179 -19 -269c0 -26 2 -52 8 -78c4 -16 9 -32 22 -44c9 -8 24 -9 37 -9c15 0 29 6 42 13c16 9 29 19 42 31'], + 0xE15A: [472,4,687,158,614,'601 441l-2 -15c-100 -38 -228 -103 -276 -154c-1 -2 -2 -4 -2 -6l5 -11c90 -75 188 -143 288 -207l-1 -14l-76 -36c-96 72 -198 148 -283 218l-11 -4c0 -61 4 -127 7 -190l-71 -26l-18 5c2 146 3 292 -3 438l89 26l5 -6c-1 -58 -6 -164 -7 -195l6 -2 c86 82 185 150 292 210'], + 0xE15B: [690,11,671,55,608,'508 -4l-165 384c-1 3 -5 6 -9 6c-5 -1 -7 -4 -8 -7c-48 -89 -142 -268 -142 -269c-14 -25 -30 -66 -42 -99l-67 -17l-20 13l246 409l14 26c-2 18 -23 79 -47 123c-11 21 -25 41 -44 58c-13 13 -35 23 -55 23c-17 0 -53 -7 -79 -12l-9 25c49 16 106 31 165 31 c37 0 66 -16 101 -78c25 -44 59 -151 86 -216c21 -52 60 -149 174 -369c3 -4 -1 -12 -1 -12l-82 -26'], + 0xE15C: [466,199,757,139,749,'579 466l9 -11c-3 -41 -7 -92 -7 -123v-167c0 -18 3 -36 7 -54c5 -12 9 -25 20 -34c8 -7 21 -11 32 -11c26 0 60 18 88 33l12 -2l9 -14c-29 -23 -59 -46 -94 -62c-24 -12 -50 -22 -78 -22c-19 0 -41 1 -54 13c-15 13 -21 37 -24 56l-9 5c-65 -33 -151 -76 -207 -76 c-36 0 -51 10 -70 30l-7 -2c0 -66 6 -141 22 -204l-60 -20l-14 6c2 92 5 184 5 276v189c0 55 -15 140 -20 164l94 26l10 -7v-269c0 -41 6 -84 40 -114c17 -15 43 -15 66 -15s66 11 97 29c19 11 30 18 47 34c1 48 4 121 4 142c0 58 -3 115 -5 172'], + 0xE15D: [471,8,736,48,665,'665 444l-154 -274c-27 -48 -52 -96 -74 -146l-64 -32l-8 7c-13 81 -31 162 -62 239c-20 52 -44 99 -88 138c-18 15 -44 26 -69 26c-35 0 -59 -8 -75 -18l-23 26c39 39 88 61 148 61c34 0 71 -11 95 -32c62 -55 104 -219 133 -338h6c27 50 56 107 78 159 c25 62 44 131 63 198l26 10l65 -16'], + 0xE15E: [694,137,684,115,647,'563 -137l-23 15c16 25 38 55 38 79c0 13 -8 25 -18 34c-18 16 -46 17 -71 17s-63 -3 -93 -6c-40 -4 -111 -10 -118 -10c-41 0 -85 7 -116 34c-30 27 -47 63 -47 100c0 54 27 104 69 141c39 35 89 59 140 73v6c-35 7 -71 19 -99 42c-18 16 -23 40 -23 63 c0 35 13 71 43 96c31 29 70 51 110 65v8c-51 1 -104 6 -150 28l32 46h9c44 -32 101 -45 158 -45c35 0 74 5 111 11v-28c-68 -7 -139 -22 -188 -66c-26 -23 -37 -56 -37 -88c0 -26 7 -53 28 -72c17 -14 38 -24 61 -31c29 -9 60 -14 92 -17v-23c-76 0 -155 -15 -209 -63 c-36 -31 -51 -74 -51 -117c0 -30 12 -58 36 -79c30 -27 76 -30 117 -28c62 4 144 10 185 10c30 0 63 -4 85 -24c9 -7 13 -17 13 -27c0 -21 -10 -41 -22 -60c-17 -30 -39 -57 -62 -84'], + 0xE15F: [488,5,748,55,741,'241 460h365c44 0 87 10 126 28l9 -7l-40 -59c-39 -16 -80 -27 -123 -28l-7 -7c-4 -35 -8 -71 -8 -105c0 -73 0 -176 39 -209c8 -7 21 -10 32 -10c21 0 39 6 56 16l7 -2l11 -17c-22 -17 -44 -33 -70 -45c-18 -8 -37 -15 -58 -15s-46 0 -60 12c-16 13 -21 32 -26 50 c-8 28 -9 57 -9 85c0 81 7 161 19 241l-8 6h-161c-31 -130 -81 -261 -131 -389l-13 -10l-62 15l-1 13c76 116 137 259 166 371h-84c-29 0 -58 0 -78 -18c-16 -14 -25 -33 -33 -51l-21 -46l-23 9l31 113c5 13 13 26 24 35c13 11 29 15 46 18c29 5 57 6 85 6'], + 0xE160: [477,189,679,133,595,'168 -189l-23 8c-7 104 -12 209 -12 314c0 61 3 152 18 197c9 27 27 66 64 95c46 36 111 52 172 52c56 0 112 -18 153 -54c21 -18 32 -43 40 -68c11 -34 15 -69 15 -104c0 -71 -27 -141 -85 -191c-37 -34 -91 -63 -146 -63c-48 0 -87 17 -122 48c-10 9 -18 18 -27 30 l-8 -1c4 -80 8 -152 31 -230c0 -1 -5 -9 -7 -13zM213 231c0 -32 2 -64 12 -95c7 -22 18 -42 34 -58c19 -18 44 -31 73 -31c39 0 76 12 105 37c44 39 58 95 58 150c0 36 -2 73 -12 108c-6 24 -20 52 -36 66c-20 16 -48 33 -76 33c-37 0 -71 -11 -97 -34 c-23 -19 -37 -48 -46 -74c-12 -33 -15 -68 -15 -102'], + 0xE161: [476,5,743,124,718,'326 462l386 14l6 -10l-16 -57l-8 -6c-72 13 -150 21 -225 29l-1 -6c4 -2 24 -13 52 -38c48 -42 64 -101 64 -160s-16 -120 -65 -163c-53 -47 -111 -70 -198 -70c-59 0 -101 21 -137 53c-22 20 -35 44 -45 70c-11 33 -15 68 -15 103c0 62 11 132 58 178 c40 39 84 61 144 63zM347 429c-31 0 -57 -13 -80 -32c-41 -37 -50 -93 -50 -144c0 -35 4 -69 16 -103c9 -26 20 -52 47 -76c26 -23 49 -38 83 -38c35 0 61 15 83 33c17 15 32 45 37 63c8 28 11 56 11 84c0 36 -3 73 -14 108c-8 25 -24 54 -46 73c-22 20 -55 32 -87 32'], + 0xE162: [484,9,639,48,617,'191 461h287c43 0 86 7 125 23l14 -9l-48 -67c-31 -6 -62 -10 -94 -10h-77l-10 -8c-2 -34 -12 -111 -12 -165c0 -17 0 -125 32 -153c10 -8 23 -15 37 -15c21 0 50 15 69 25l10 -2l9 -14c-21 -18 -61 -46 -87 -58c-21 -10 -42 -17 -65 -17c-20 0 -38 9 -53 22 c-13 12 -22 30 -26 47c-7 27 -9 54 -9 82c0 83 9 166 17 249l-8 7h-85c-31 0 -73 -2 -96 -22c-14 -14 -34 -60 -48 -94l-25 3c4 19 29 121 44 141c23 30 67 35 99 35'], + 0xE163: [472,12,723,17,617,'468 398l-4 18l47 51l23 4c51 -48 83 -109 83 -175c0 -81 -40 -157 -105 -214c-62 -55 -142 -94 -231 -94c-31 0 -62 7 -84 27c-30 27 -38 66 -38 104v211c0 23 -3 54 -14 68c-6 8 -18 16 -29 16c-30 0 -57 -18 -80 -35l-19 22c26 21 54 39 84 53c22 10 45 18 71 18 c19 0 39 -6 52 -18c9 -8 14 -19 17 -30c5 -16 6 -32 6 -48c0 -37 -4 -74 -5 -110c-1 -26 -1 -57 -1 -85c0 -21 2 -42 8 -62c5 -15 11 -29 24 -40c19 -17 46 -28 74 -28c49 0 74 10 102 28c65 41 84 120 84 174s-21 107 -65 145'], + 0xE164: [467,197,922,134,805,'393 -183l2 168l-8 7c-66 6 -123 16 -182 76c-51 52 -71 112 -71 181c0 57 28 110 73 150c38 33 84 55 134 68l13 -22c-29 -12 -53 -22 -76 -42c-38 -33 -54 -88 -54 -136c0 -67 14 -145 69 -193c43 -37 73 -46 94 -46l8 7v205c0 61 9 126 74 176c49 37 107 48 154 48 c46 0 93 -13 126 -42c41 -38 56 -92 56 -145c0 -69 -21 -138 -77 -187c-66 -58 -152 -86 -244 -97l-8 -8c1 -54 4 -107 9 -161l-78 -21zM484 26c62 2 116 26 159 65c24 21 40 48 50 77c14 35 18 72 18 109c0 12 -6 88 -43 120c-19 17 -40 28 -66 28c-30 0 -49 -3 -75 -19 c-35 -22 -51 -93 -51 -141v-232'], + 0xE165: [466,197,710,11,668,'356 206l212 250l22 4l38 -32l1 -7l-203 -206c-18 -19 -37 -38 -54 -59c49 -95 114 -227 169 -274c10 -10 26 -14 40 -14c27 0 55 4 78 15l9 -23c-30 -16 -61 -31 -93 -42c-21 -8 -41 -15 -63 -15c-20 0 -36 12 -50 24c-24 22 -39 49 -54 76c-22 41 -58 118 -88 180h-11 c-38 -51 -73 -101 -107 -152c-25 -38 -49 -76 -67 -116l-19 -6l-57 30c77 100 155 199 239 295c0 1 -83 143 -123 215c-10 17 -24 36 -39 49c-9 8 -23 13 -35 13c-20 0 -52 -22 -73 -37l-17 21l71 48c21 15 50 23 78 23c17 0 34 -6 45 -17c17 -15 28 -32 38 -51l102 -192h11 '], + 0xE166: [695,189,974,24,804,'430 -182l5 176l-8 8c-45 0 -89 3 -132 11c-30 5 -59 12 -80 30c-38 34 -50 82 -50 129v153c0 16 -2 33 -7 49c-3 11 -8 23 -17 31c-7 6 -16 10 -26 10c-21 0 -50 -17 -72 -30l-19 21c27 19 52 35 82 48c23 10 45 18 70 18c18 0 40 -4 54 -20c12 -13 18 -42 18 -94v-129 c0 -80 14 -121 47 -149c25 -21 82 -44 132 -44l8 6v315c0 96 -7 204 -14 305l91 33l8 -7c-3 -30 -3 -194 -3 -292v-352l7 -7c72 5 131 59 147 77c41 44 53 97 53 153c0 54 -30 103 -71 142l3 13l50 48l24 -3c46 -51 74 -115 74 -181c0 -72 -35 -143 -92 -194 c-53 -46 -111 -74 -187 -88l-8 -8c1 -50 3 -101 11 -150l-86 -35'], + 0xE167: [472,13,1021,107,914,'764 421l48 48l16 3c57 -40 86 -102 86 -166c0 -90 -41 -177 -113 -241c-47 -40 -106 -69 -171 -69c-35 0 -70 6 -95 28c-15 13 -29 40 -42 63h-13c-30 -27 -58 -52 -95 -72c-29 -15 -67 -28 -100 -28c-42 0 -82 12 -112 38c-45 39 -66 95 -66 151c0 88 26 178 98 242 c26 23 62 37 98 48l18 -14c-14 -10 -31 -21 -44 -32c-55 -49 -78 -119 -78 -188c0 -29 4 -59 13 -87c8 -22 18 -44 37 -60c23 -20 53 -35 86 -35c38 0 73 18 101 42c18 16 24 37 30 59c9 32 11 65 11 98v189l85 28l7 -7c-10 -59 -10 -130 -10 -195c0 -37 3 -81 14 -116 c8 -26 18 -46 40 -64c18 -16 43 -23 68 -23c40 0 73 15 101 40c41 35 56 93 56 143c0 61 -23 124 -77 165'], + 0xE168: [471,15,609,119,517,'474 430l-34 -65l-12 1c-6 14 -15 26 -26 36c-23 19 -52 28 -83 28c-29 0 -56 -11 -78 -30c-13 -12 -19 -29 -19 -47c0 -21 3 -41 20 -57c22 -18 51 -20 79 -20c2 0 39 -1 58 -2l-24 -47c-17 4 -34 5 -52 5c-31 0 -62 -10 -84 -30c-16 -13 -21 -33 -21 -51 c0 -33 18 -60 44 -82c30 -25 67 -31 105 -31c25 0 49 7 73 16c27 11 54 27 78 44l10 -2l9 -14c-60 -57 -141 -97 -231 -97c-45 0 -95 12 -127 41c-26 23 -40 52 -40 83c0 33 13 67 39 90c17 14 36 27 57 36v7c-26 14 -48 48 -48 78c0 43 18 77 48 104c36 32 89 47 140 47 c44 0 84 -19 119 -41'], + 0xE169: [698,14,683,13,621,'473 370c-1 52 -7 102 -25 151c-15 41 -35 80 -70 110c-18 17 -39 28 -66 28c-20 0 -40 -6 -56 -19c-19 -17 -31 -39 -31 -63c0 -55 30 -106 73 -145c46 -41 104 -62 169 -67zM153 118v110c0 25 0 55 -18 71c-8 7 -19 13 -32 13c-25 0 -53 -15 -78 -28l-12 20 c25 19 53 37 84 50c23 10 48 18 74 18c17 0 36 -9 48 -20c13 -12 18 -38 18 -55c0 -45 -1 -80 -1 -108c0 -53 1 -80 7 -100c4 -13 9 -26 20 -36c14 -12 31 -19 52 -19c32 0 58 11 82 31c32 29 49 65 61 103c16 52 19 105 19 158l-4 5c-45 4 -85 11 -127 25 c-35 12 -69 28 -96 52c-43 38 -72 89 -72 143c0 39 15 77 46 105c33 28 77 42 122 42c39 0 75 -16 102 -40c37 -33 67 -80 81 -124c20 -56 27 -110 27 -167l5 -5l60 -1v-27h-58l-5 -4c-1 -53 -9 -100 -28 -150c-16 -43 -46 -87 -82 -119c-49 -43 -110 -75 -177 -75 c-32 0 -66 13 -89 33c-11 10 -17 24 -21 38c-7 20 -8 40 -8 61'], + 0xE16A: [541,12,1048,115,924,'571 330l9 -12v-154c0 -30 15 -62 36 -81s49 -27 79 -27c37 0 69 15 95 37c20 18 33 40 41 63c10 30 17 62 17 93c-1 59 -13 104 -72 158c-31 28 -65 41 -107 51c-59 14 -122 19 -183 19c-101 0 -177 -11 -219 -25c-51 -17 -96 -48 -135 -83l-17 16c37 39 71 76 122 104 c47 26 118 52 293 52c69 0 136 -8 202 -24c47 -11 96 -31 131 -62c44 -39 61 -95 61 -149c0 -93 -43 -181 -118 -246c-44 -39 -97 -72 -160 -72c-38 0 -74 11 -101 35c-19 17 -34 37 -42 60l-10 1c-55 -53 -127 -92 -209 -92c-38 0 -73 15 -100 39c-49 42 -61 104 -61 163 c0 58 31 111 77 152c16 14 41 28 63 41l11 -21c-43 -37 -62 -89 -62 -142s10 -109 53 -147c19 -16 53 -30 73 -30c31 0 67 8 93 31c19 18 32 41 40 64c10 31 14 63 14 94c0 22 -3 44 -5 66'], + 0xE16B: [694,192,881,106,776,'489 -156l-82 -36l-19 10c1 57 5 112 6 169l-10 9c-43 1 -84 5 -127 17c-35 9 -69 24 -96 47c-44 40 -55 98 -55 152c0 72 27 142 83 193c24 21 53 37 84 47c36 12 91 21 111 21l10 9c0 57 -3 114 -7 170l93 42l8 -8c-6 -67 -9 -135 -9 -203l9 -10c44 0 86 -4 132 -15 c30 -7 65 -20 88 -40c47 -42 68 -100 68 -159c0 -67 -24 -135 -78 -184c-57 -50 -133 -71 -212 -73l-10 -10c1 -49 5 -99 13 -148zM486 33c52 3 96 29 133 62c49 44 64 106 64 166c0 51 -12 103 -53 140c-38 34 -91 41 -144 42l-10 -9v-392zM384 441c-35 0 -91 -13 -125 -43 c-46 -41 -60 -100 -60 -156c0 -62 18 -124 68 -167c31 -27 74 -46 118 -46l9 9v395'], + 0xE16C: [704,14,623,69,551,'358 704c58 -32 98 -72 131 -122c45 -69 62 -148 62 -226c0 -61 -9 -122 -32 -179c-18 -48 -47 -94 -88 -131c-44 -38 -104 -60 -166 -60c-37 0 -74 13 -101 36c-35 31 -58 72 -71 114c-18 56 -24 109 -24 167c0 120 51 241 147 326c38 33 94 57 142 75zM295 640 c-21 -12 -41 -26 -59 -45c-59 -63 -91 -143 -91 -224c0 -58 6 -117 24 -172c15 -43 35 -84 70 -115c21 -19 54 -32 77 -32c35 0 72 9 96 31c26 23 40 52 52 83c13 38 17 79 17 119c0 90 -27 176 -77 254c-7 12 -58 82 -109 101'], + 0xE16D: [712,5,623,135,386,'379 712l7 -12c-6 -89 -8 -179 -8 -268c0 -136 0 -334 3 -410l-95 -27l-13 5c5 139 9 279 9 419c0 49 0 122 -1 147s-24 46 -52 46h-94v27'], + 0xE16E: [708,-2,623,45,564,'564 80l-26 -78h-493v16c64 58 127 117 187 179c40 41 79 83 111 129c39 56 65 117 65 182c0 29 -7 70 -37 99c-24 22 -57 33 -90 33c-25 0 -50 -4 -71 -14c-32 -15 -58 -30 -85 -50l-22 19c34 33 73 63 118 84c37 18 78 29 121 29c46 0 90 -15 123 -44 c34 -29 47 -70 47 -111c0 -53 -24 -102 -54 -148c-28 -46 -63 -88 -99 -130c-51 -60 -105 -118 -162 -176c-1 -1 -2 -4 -1 -6c2 -4 8 -5 14 -5h349'], + 0xE16F: [702,17,623,51,535,'303 382v-8c39 -3 76 -8 113 -19c26 -8 53 -19 74 -37c30 -27 45 -64 45 -103c0 -59 -31 -114 -78 -156c-59 -51 -139 -76 -221 -76c-65 0 -126 20 -177 55l-8 11l48 72h11c14 -20 28 -38 46 -54c29 -26 67 -44 108 -44c42 0 82 13 113 40c36 32 52 78 52 123 c0 43 -23 83 -56 114c-20 19 -48 28 -76 34c-41 9 -83 11 -125 11l1 26c34 7 69 15 101 28c25 10 49 22 67 38c31 28 48 65 48 103c0 27 -11 52 -33 71c-23 21 -56 28 -90 28c-19 0 -38 -6 -58 -13c-28 -11 -54 -25 -80 -40l-16 22c35 26 74 51 114 70c29 13 59 24 91 24 c44 0 90 -8 122 -37c29 -25 43 -61 43 -97c0 -45 -17 -90 -53 -122c-35 -30 -79 -52 -126 -64'], + 0xE170: [704,5,623,30,565,'439 704l8 -6c-1 -27 -1 -299 -1 -454l8 -9h106l5 -7l-18 -37h-93l-8 -8c0 -54 0 -133 3 -155l-90 -33l-6 6c6 35 6 118 6 181l-9 9h-320v44l323 434zM359 243v342c0 2 -1 5 -1 6c-3 3 -8 2 -11 0c-38 -39 -72 -85 -105 -130c-43 -59 -138 -197 -138 -219l5 -7h243'], + 0xE171: [687,11,623,45,537,'172 594v-181v-7c47 20 97 37 149 37c58 0 116 -14 156 -50c43 -37 60 -90 60 -142c0 -67 -26 -133 -79 -180c-60 -53 -141 -82 -226 -82c-71 0 -140 26 -186 75l-1 12l49 56h13c13 -26 28 -52 52 -73c21 -19 51 -33 82 -33c47 0 93 13 127 43c44 39 61 98 61 154 c0 50 -13 102 -53 138c-27 24 -66 34 -104 34c-50 0 -96 -22 -133 -53l-14 11v327l8 7h378l-30 -78c-99 -2 -241 -5 -295 -5c-7 0 -14 -4 -14 -10'], + 0xE172: [700,13,623,82,563,'563 688l-22 -54l-11 -4c-22 8 -42 11 -65 11c-69 0 -130 -27 -176 -65c-89 -73 -111 -174 -112 -270l8 -1c60 43 131 72 209 72c43 0 86 -16 116 -43c36 -33 53 -78 53 -123c0 -60 -34 -113 -81 -155c-49 -43 -114 -69 -184 -69c-51 0 -101 15 -137 47 c-60 53 -79 130 -79 204c0 125 51 249 151 338c40 37 85 69 136 92c41 19 86 32 132 32c17 0 45 -6 62 -12zM180 265c0 -41 5 -86 18 -126c10 -29 30 -58 53 -79c21 -17 49 -28 77 -28c36 0 74 8 100 31c32 28 46 68 46 109c0 40 -19 79 -52 107c-26 24 -64 35 -102 35 c-46 0 -115 -28 -140 -49'], + 0xE173: [694,8,623,86,589,'589 674l-174 -252c-88 -128 -161 -264 -198 -410l-94 -20l-7 8c27 82 123 232 185 324c0 0 110 171 180 270l-7 12h-380l-8 9l24 79c21 -6 193 -8 245 -8h234v-12'], + 0xE174: [706,10,623,76,552,'300 334c-30 -14 -64 -33 -89 -55c-30 -27 -41 -65 -41 -102c0 -41 15 -82 47 -112c24 -20 58 -33 91 -33c37 0 77 8 104 32c29 26 42 67 42 104c0 41 -24 77 -57 106c-17 13 -72 46 -97 60zM384 385c41 -25 97 -61 116 -78c33 -29 52 -68 52 -110 c0 -48 -19 -95 -58 -130c-56 -50 -134 -77 -216 -77c-54 0 -115 10 -154 45c-36 32 -48 77 -48 122c0 42 14 85 49 115c28 25 85 55 133 80v11c-36 22 -67 46 -93 78c-19 27 -33 57 -33 89c0 40 15 81 50 108c40 31 87 51 136 68c34 1 64 -3 96 -12c24 -7 50 -19 68 -35 c27 -24 41 -57 41 -91s-17 -66 -40 -93c-27 -32 -61 -58 -99 -79v-11zM346 412c48 29 82 78 82 131c0 21 -10 51 -33 75c-26 26 -63 41 -112 41c-17 -10 -37 -25 -46 -36c-14 -17 -18 -41 -18 -61c0 -26 13 -50 31 -71c24 -30 62 -58 96 -79'], + 0xE175: [702,9,623,76,553,'273 11l-96 -20l-12 8c23 46 78 110 128 168c0 0 96 114 133 169l-7 6c-33 -16 -68 -28 -102 -36c-21 -5 -45 -7 -67 -7c-31 0 -85 18 -115 45c-33 29 -59 75 -59 121c0 52 12 97 44 133c33 36 133 82 189 104c56 0 91 -5 112 -11c28 -8 55 -21 77 -40 c36 -32 55 -77 55 -123c0 -38 -15 -75 -32 -111c-26 -52 -58 -100 -95 -147c-38 -50 -75 -101 -107 -155c-20 -33 -39 -67 -46 -104zM428 384c28 25 35 63 35 98c0 47 -21 92 -59 125c-29 25 -78 37 -126 37c-7 0 -11 0 -19 -1c-52 -27 -82 -70 -82 -128 c0 -48 17 -96 55 -129c24 -21 59 -34 92 -34c37 0 77 8 104 32'], + 0xE176: [699,7,692,120,579,'145 548l-20 7c14 38 34 76 69 102c35 27 80 42 127 42c61 0 122 -30 161 -71c43 -46 67 -96 82 -155c13 -48 15 -102 15 -151c0 -101 -17 -214 -110 -283c-37 -28 -83 -46 -131 -46c-65 0 -125 9 -165 51c-38 42 -53 112 -53 159c0 76 27 156 94 206 c46 34 104 48 163 48c10 0 19 0 28 -1c12 -1 42 -7 62 -12l5 4c-15 52 -32 98 -67 134c-33 35 -73 60 -125 60c-42 0 -66 -12 -87 -32c-20 -18 -35 -37 -48 -62zM464 125c20 51 28 107 28 161c0 40 -4 80 -14 119c-28 11 -58 20 -89 20c-36 0 -71 -14 -99 -35 c-60 -45 -75 -120 -75 -185c0 -26 8 -92 44 -130c23 -23 58 -42 94 -42c26 0 43 7 63 21c24 18 39 46 48 71'], + 0xE177: [680,10,930,59,871,'637 76l-62 188c-1 4 -8 9 -12 9h-254c-4 0 -9 -4 -11 -8l-133 -248l-102 -19l-4 10c135 200 265 404 383 612c1 3 1 4 1 7s-3 9 -13 11l-102 15v27h219c17 -83 68 -243 105 -363c26 -81 56 -178 97 -238c9 -15 27 -24 46 -28c8 -1 17 -2 26 -2c16 0 33 2 48 3l2 -26 l-118 -30c-17 -4 -34 -6 -51 -6c-12 0 -22 5 -30 13c-16 13 -27 47 -35 73zM462 572l-130 -244c-1 -2 -1 -8 -1 -9c0 -3 4 -7 8 -7h212c6 0 8 4 8 7c0 0 -2 8 -3 9l-79 244c-1 2 -4 4 -8 4c-3 0 -6 -3 -7 -4'], + 0xE178: [686,1,800,88,680,'274 324v-258c0 -13 5 -17 13 -21c6 -4 36 -6 72 -6c61 0 124 12 168 50c35 32 50 75 50 119c0 33 -9 68 -37 93c-21 18 -48 27 -76 34c-39 9 -79 11 -120 11c-20 0 -53 0 -59 -1c-4 0 -9 -3 -11 -7v-14zM274 411v-20c1 -4 6 -7 9 -8c9 -3 35 -2 52 -2 c58 0 114 15 155 50c34 30 48 72 48 114c0 29 -15 55 -38 75c-14 12 -34 17 -53 21c-30 6 -60 7 -91 7c-22 0 -45 -2 -67 -5c-8 -1 -13 -7 -15 -14v-218zM462 378l-2 -8c35 -4 76 -12 110 -21c23 -6 47 -19 64 -34c35 -31 46 -71 46 -114c0 -50 -21 -98 -60 -133 c-63 -56 -154 -69 -240 -69c-74 1 -222 2 -224 2l-1 10c7 9 21 25 21 26c2 3 3 6 4 10c0 1 1 23 1 34v530c0 17 -16 27 -19 28c-19 8 -47 16 -74 23v17l8 7h280c46 0 91 -2 136 -12c31 -7 61 -16 84 -36c25 -23 38 -53 38 -85c0 -41 -15 -81 -48 -110 c-34 -31 -79 -48 -124 -65'], + 0xE179: [699,15,866,129,790,'726 528l-16 1c-13 32 -33 61 -59 84c-37 33 -91 45 -143 45c-69 0 -139 -21 -189 -65c-31 -29 -52 -65 -65 -103c-17 -47 -24 -97 -24 -146c0 -92 54 -190 91 -223c63 -55 110 -83 203 -83c77 0 148 29 211 67l19 -29c-81 -49 -172 -91 -270 -91c-89 0 -182 17 -246 74 c-79 70 -109 169 -109 267c0 96 24 195 103 264c83 73 197 109 314 109c74 0 148 -16 200 -63c17 -15 32 -32 44 -50'], + 0xE17A: [686,-2,995,89,865,'271 575v-405c1 -40 3 -102 20 -117c15 -13 59 -13 89 -13c56 0 111 5 164 20c42 12 83 29 114 57c77 68 101 166 101 260c0 61 -19 158 -83 214c-25 22 -54 35 -101 44c-38 7 -160 10 -215 10c-47 0 -67 -1 -74 -4c-6 -3 -9 -6 -12 -12c-2 -3 -3 -23 -3 -54zM151 2v10 c23 15 23 29 25 67v494c0 16 -1 32 -3 47c-1 10 -9 17 -19 21c-21 7 -44 12 -65 18v19l8 8h353c70 0 140 -5 208 -20c49 -11 96 -27 131 -58c28 -25 45 -57 57 -91c14 -42 19 -87 19 -132c0 -127 -25 -211 -112 -294c-35 -34 -91 -54 -141 -67c-65 -17 -132 -22 -200 -22 h-261'], + 0xE17B: [688,0,742,83,663,'547 336c-44 3 -90 6 -134 6c-43 0 -114 -2 -134 -3c-8 -1 -12 -5 -12 -12v-139c0 -38 2 -87 18 -112c6 -12 20 -20 33 -26c13 -5 43 -6 74 -6c53 0 80 0 265 14l6 -5l-15 -53h-438c-10 5 -17 15 -23 25c-5 12 -6 27 -6 41v492c0 14 -1 44 -11 64c-2 6 -11 11 -19 16 c-10 6 -44 13 -67 16l-1 20l8 7l168 1c79 0 192 6 273 6c19 0 37 0 52 -1l-2 -50l-5 -7c-78 4 -228 10 -236 10h-45c-6 -1 -11 -4 -15 -9c-9 -12 -13 -44 -13 -67v-166c0 -7 4 -11 12 -12c44 -3 180 -1 267 5l6 -7'], + 0xE17C: [690,2,623,75,559,'172 360l3 161c0 30 -2 60 -5 90c-1 17 -14 32 -33 36l-62 13v21l8 7c161 0 394 0 476 2v-53l-9 -8c-82 5 -163 20 -244 20c-16 0 -31 -6 -37 -23c-4 -14 -7 -24 -7 -235c0 -5 4 -13 14 -13c82 0 184 9 266 12l-1 -49l-6 -5c-79 4 -179 5 -259 5c-6 0 -13 -4 -13 -11 c0 -101 1 -216 5 -317l-104 -15c5 121 8 241 8 362'], + 0xE17D: [699,17,924,133,795,'456 296l312 11c2 -91 5 -273 5 -274c-99 -23 -221 -50 -304 -50c-85 0 -170 26 -231 80c-77 68 -105 166 -105 261c0 98 25 199 104 269c84 75 203 106 322 106c72 0 144 -20 195 -65c13 -11 28 -31 41 -48l-66 -57l-13 1c-15 26 -32 51 -54 71c-41 36 -97 49 -154 49 c-67 0 -133 -14 -182 -56c-33 -29 -53 -66 -68 -105c-17 -48 -24 -98 -24 -149c0 -88 28 -160 93 -228c50 -52 133 -77 222 -77c36 0 71 3 106 10c11 2 19 11 20 21c2 31 3 62 2 93c0 23 -1 47 -3 69c-1 14 -12 27 -28 28c-50 5 -122 7 -183 9l-7 5v26'], + 0xE17E: [690,2,944,89,872,'872 14l-8 -6l-167 -8l-13 21c2 97 6 216 6 313c0 5 -4 12 -14 12h-387c-8 0 -15 -5 -15 -12c0 -67 -1 -163 0 -230c0 -26 2 -52 6 -78l-104 -28l-7 5c11 113 11 242 11 364c0 83 -1 166 -7 249c-1 9 -3 20 -14 24c-5 1 -46 12 -68 19l-2 19l9 7h182l6 -5 c-4 -22 -6 -46 -8 -69c-2 -65 -6 -149 -6 -214c0 -5 2 -12 13 -12h391c12 0 14 6 14 12c0 86 -4 190 -4 276l100 17l6 -6c-4 -39 -8 -80 -10 -119c-5 -162 -5 -324 2 -486c0 -17 14 -30 32 -34c21 -5 53 -13 55 -13'], + 0xE17F: [683,1,505,119,424,'422 -1h-299v26c22 4 48 9 68 14c15 5 28 17 30 31c1 11 1 43 2 64v363c0 39 0 77 -3 115c-1 13 -10 26 -25 29c-1 0 -51 9 -76 14v22l8 6h283l6 -6v-21l-75 -15c-15 -3 -24 -14 -25 -26c-3 -20 -4 -78 -4 -116c0 -124 -1 -228 3 -330c0 -33 1 -66 4 -99 c1 -16 16 -26 32 -30c25 -5 72 -17 73 -17'], + 0xE180: [690,234,514,88,427,'325 608v-517c0 -41 -1 -83 -15 -122c-16 -45 -42 -88 -80 -121c-31 -25 -87 -64 -127 -82l-15 18c25 14 54 37 72 54c24 24 36 55 48 93c12 34 21 105 21 165v512c0 11 -5 34 -18 37l-82 18v21l8 6h283l7 -6l-2 -24l-76 -14c-14 -3 -24 -20 -24 -38'], + 0xE181: [683,7,814,86,745,'281 319l-10 -1c0 -98 0 -196 6 -293l-91 -29l-13 5l4 147v447c0 10 -1 21 -6 31c-3 6 -8 13 -16 15c-22 6 -67 18 -69 18l3 17l9 7h178l8 -7c-4 -12 -9 -49 -9 -50c-2 -27 -8 -155 -8 -268l9 -1l325 326h101l-1 -9l-329 -294c-3 -3 -9 -8 -9 -11s1 -5 6 -9 c120 -107 307 -271 376 -325v-11l-97 -31c-119 112 -245 217 -367 326'], + 0xE182: [690,5,691,88,634,'634 48l-15 -53c-84 7 -311 7 -467 7v14c8 10 13 22 17 31c4 10 8 82 8 96v478c0 14 -7 30 -24 33c-23 4 -64 12 -65 12v17l8 7h269l6 -6v-21c-1 0 -50 -9 -73 -14c-14 -2 -20 -14 -21 -25c-11 -177 -5 -383 1 -568c1 -6 9 -13 15 -13c118 0 323 14 331 15'], + 0xE183: [690,6,1239,120,1172,'935 690h116l1 -12c-8 -3 -18 -10 -22 -19c-7 -15 -7 -51 -7 -76c0 -164 2 -317 20 -481c3 -17 12 -34 28 -45c11 -7 24 -11 38 -11c15 0 43 4 63 6v-24c-49 -16 -108 -34 -153 -34c-16 0 -32 2 -47 6c-14 4 -25 21 -25 29v182c0 25 -8 271 -11 337c0 8 -3 15 -8 15 c-4 0 -10 -3 -13 -8l-324 -554h-33c-85 180 -191 409 -263 537c-3 5 -7 10 -12 10s-8 -4 -9 -11c-26 -170 -45 -342 -61 -514l-85 -26l-8 3c43 196 83 393 113 591c3 12 3 26 -7 36c-5 7 -13 12 -23 15l-77 19l2 22l8 7h199c62 -161 168 -361 262 -538c2 -4 8 -14 13 -14 c4 0 11 5 13 9'], + 0xE184: [694,5,996,86,833,'827 694l6 -8c-14 -227 -17 -459 -17 -686h-40c-26 26 -42 42 -76 80l-180 198c-115 126 -207 221 -264 277c-4 4 -9 10 -14 9c-6 -2 -6 -11 -6 -17c0 -129 14 -348 27 -522l-79 -30l-11 9c12 201 18 403 14 604c0 8 0 16 -7 22c-4 5 -10 10 -17 11c-1 0 -48 10 -72 15 l-5 27l9 7h183c151 -176 334 -391 466 -517c4 -3 8 -8 13 -8s6 6 6 8c0 102 -3 201 -27 505'], + 0xE185: [700,18,967,112,851,'112 318c0 129 31 214 114 294c73 68 190 88 295 88c86 0 173 -22 235 -76c33 -30 55 -68 69 -108c18 -48 26 -100 26 -152c0 -65 -1 -131 -46 -212c-53 -98 -200 -170 -377 -170c-75 0 -159 20 -212 68c-80 70 -104 168 -104 268zM217 348c0 -94 20 -180 90 -248 c68 -67 136 -77 181 -77c65 0 119 20 164 59c33 30 54 68 69 108c17 46 24 96 24 146c0 96 -27 202 -105 270c-43 40 -95 54 -155 54c-64 0 -135 -24 -178 -64c-32 -29 -51 -64 -65 -102c-17 -46 -25 -96 -25 -146'], + 0xE186: [679,6,710,93,652,'349 640h-64c-7 0 -10 -6 -10 -11c-4 -88 -7 -201 -7 -288c0 -9 8 -12 13 -12c39 0 86 4 123 15c30 8 59 20 80 39c37 33 60 77 60 123c0 36 -14 72 -43 98c-16 14 -37 22 -59 27c-30 7 -62 9 -93 9zM276 22l-94 -28l-7 7c2 140 7 281 7 422c0 59 -1 118 -5 177 c-1 18 -10 36 -31 43c-17 6 -35 9 -53 11v18l8 7h290c41 0 83 -2 123 -10c27 -5 55 -12 76 -28c43 -31 62 -79 62 -127c0 -58 -24 -115 -72 -156c-22 -21 -52 -34 -83 -44c-40 -12 -81 -18 -122 -21c-29 -2 -65 -4 -93 -6c-10 -1 -14 -6 -14 -13c0 -25 7 -151 8 -252'], + 0xE187: [698,235,995,127,905,'898 -174l7 -20c-43 -16 -117 -41 -175 -41c-55 0 -116 28 -154 61c-42 37 -101 114 -131 158c-78 0 -165 18 -221 73c-64 64 -97 156 -96 248c1 135 32 229 114 304c77 70 184 89 292 89c87 0 175 -18 240 -76c72 -63 94 -173 94 -256c0 -97 -5 -115 -21 -156 c-16 -44 -30 -77 -77 -123c-51 -49 -130 -79 -201 -94l-4 -10c17 -30 47 -79 69 -105c18 -21 66 -67 165 -67c18 0 72 9 99 15zM494 22c84 0 127 21 171 58c74 63 96 168 96 258c0 52 -6 97 -24 147c-16 41 -40 86 -77 117c-43 39 -92 58 -153 58c-65 0 -143 -23 -187 -66 c-32 -32 -49 -66 -64 -105c-17 -50 -23 -103 -23 -155c0 -89 27 -178 96 -242c44 -40 105 -70 165 -70'], + 0xE188: [679,8,748,92,689,'272 370c0 -6 2 -15 10 -15c14 0 29 0 43 1c52 4 106 15 143 49c35 31 58 73 58 118c0 30 -14 60 -37 81c-16 14 -38 22 -59 27c-31 7 -62 9 -93 9h-45c-9 0 -13 -7 -14 -26c-2 -64 -6 -239 -6 -244zM394 331l-3 -8l298 -296v-9l-112 -26c-105 119 -249 282 -282 311 c-6 5 -15 9 -22 9c0 -96 0 -193 5 -289l-93 -29l-13 9c9 145 10 291 10 436c0 15 -2 115 -3 172c0 14 -11 26 -26 30c-20 5 -60 15 -61 15l1 17l7 6h307c39 0 77 -3 113 -12c27 -7 53 -16 73 -34c28 -25 44 -59 44 -94c0 -48 -4 -62 -22 -96c-36 -70 -127 -103 -221 -112'], + 0xE189: [702,15,689,82,577,'573 606l-71 -56l-14 3c-8 28 -19 58 -42 79c-26 22 -61 33 -96 33s-69 -15 -93 -37c-24 -21 -33 -51 -33 -81c0 -36 22 -68 50 -93c30 -27 79 -48 123 -65c42 -16 101 -45 121 -64c34 -29 59 -75 59 -116c0 -52 -27 -100 -69 -137c-63 -56 -150 -87 -240 -87 c-53 0 -107 12 -144 46c-18 16 -33 35 -42 56l64 66l19 -1c11 -30 23 -61 48 -83c27 -24 65 -38 103 -38c43 0 87 18 118 45c30 26 43 65 43 102c0 24 -17 56 -39 77c-24 22 -66 47 -97 59c-53 20 -120 48 -150 74c-37 33 -57 78 -57 124c0 47 16 94 53 128 c50 43 117 62 186 62c58 0 118 -7 160 -44c17 -15 29 -33 40 -52'], + 0xE18A: [697,10,615,60,680,'680 689l-1 -48l-9 -7c-190 8 -214 10 -238 10c-7 0 -10 -5 -10 -11c-1 -14 -5 -115 -5 -195c0 -121 7 -300 15 -421l-113 -27l-10 9c9 127 15 254 15 381c0 82 -1 226 -3 256c0 4 -4 6 -10 6c-27 0 -116 -3 -241 -7l-10 7v48l8 7c107 -3 108 -11 308 -11 c84 0 196 6 295 10'], + 0xE18B: [694,9,934,70,874,'269 542l-9 -273c0 -35 3 -70 15 -104c9 -26 21 -52 44 -71c36 -32 88 -42 139 -42c71 0 137 27 200 59c0 183 1 366 4 548l98 35l8 -7c-17 -114 -18 -323 -18 -485c0 -50 3 -126 19 -143c9 -9 23 -11 35 -11c23 0 43 6 66 8l4 -17l-5 -7c-59 -16 -138 -37 -173 -37 c-15 0 -34 6 -36 21c-2 16 -2 32 -2 48l-9 6c-79 -45 -169 -79 -264 -79c-31 0 -64 3 -95 11c-23 6 -45 16 -62 31c-30 27 -46 74 -50 94c-8 46 -9 120 -9 181c0 97 5 195 3 293c0 19 -17 34 -38 38c-20 5 -61 14 -62 14l-2 20l9 7h191l7 -6c-2 -14 -8 -115 -8 -132'], + 0xE18C: [698,16,789,57,855,'751 680l97 17l7 -19c-73 -79 -144 -188 -158 -210c-42 -69 -62 -103 -101 -177c-47 -89 -89 -185 -127 -281l-76 -26l-12 7l-161 482c-16 46 -33 92 -55 136c-4 8 -9 16 -15 22c-6 5 -13 9 -21 11c-13 5 -47 10 -71 13l-1 27l8 6l198 10c44 -191 106 -378 186 -560 c2 -4 7 -6 9 -7c4 1 7 1 9 4c3 3 41 80 71 139l63 128l72 146c23 45 49 89 78 132'], + 0xE18D: [690,11,1174,46,1229,'1137 675l92 14v-21l-131 -188c-51 -77 -184 -306 -257 -464l-68 -27l-13 8c-36 181 -78 360 -123 539c-1 5 -3 12 -8 12c-4 0 -8 -7 -10 -12l-32 -63c-61 -121 -153 -300 -206 -455l-72 -29l-12 5c-26 128 -55 255 -89 381c-22 81 -45 162 -79 239c-5 13 -16 24 -30 28 c-15 4 -34 10 -51 13l-2 24l9 7l176 3c17 -81 84 -351 128 -526c1 -5 5 -6 8 -6c4 0 7 2 8 4c48 83 196 374 247 500l86 29l8 -6c0 -62 35 -213 70 -359l41 -174c0 -4 6 -12 14 -12c10 0 13 4 15 7l90 170l123 242c25 46 48 86 68 117'], + 0xE18E: [688,11,812,62,750,'745 672c0 0 -138 -131 -211 -206c-34 -35 -71 -79 -76 -86c0 -13 132 -200 176 -249c28 -31 40 -42 69 -72c7 -7 32 -21 41 -23l6 -4v-16l-125 -27l-15 6c-21 18 -37 40 -52 62l-162 239h-14c-15 -17 -62 -73 -93 -114c-43 -53 -103 -137 -121 -171l-106 -11v16l306 329 c-5 1 -112 163 -164 245c-13 18 -42 37 -62 44c-16 5 -35 10 -57 15v25l8 6c28 1 114 5 165 8l166 -266h10c6 5 80 90 116 135c38 46 88 117 88 117l107 13v-15'], + 0xE18F: [693,11,687,57,726,'323 299l-169 295c-7 12 -15 24 -26 34c-7 7 -16 13 -26 15c-14 3 -29 6 -45 8v28l8 7h164l159 -325c1 -2 7 -8 13 -8c5 0 10 4 13 9c4 5 52 75 67 98c9 14 104 159 144 216l96 17l5 -18c-126 -145 -209 -241 -303 -369l10 -288l-101 -29l-13 9c4 100 4 201 4 301'], + 0xE190: [695,12,812,83,754,'703 664c-152 -193 -349 -464 -450 -603l6 -7l485 14l10 -9l-20 -71c-146 12 -433 12 -650 12l-1 21l479 606l-8 10c-212 0 -326 -6 -357 -9l-7 5v54l10 8c168 -9 335 -12 503 -12v-19'], + 0xE191: [466,12,748,129,704,'520 431l60 31l6 -5c-7 -113 -8 -227 -5 -340c0 -18 1 -36 13 -52c5 -9 18 -13 29 -13c16 0 50 10 74 18l7 -24c-44 -24 -106 -58 -142 -58c-16 0 -34 3 -45 15c-13 13 -16 27 -19 44l-17 4c-32 -18 -61 -33 -95 -45c-28 -10 -58 -18 -89 -18c-42 0 -85 13 -113 42 c-43 45 -55 105 -54 163c0 79 24 159 89 215c48 41 114 58 180 58c36 0 85 -12 121 -35zM495 99v230c0 26 0 52 -18 69c-20 19 -48 33 -76 33c-41 0 -78 -13 -108 -38c-27 -21 -58 -77 -61 -178c0 -42 6 -85 32 -120c24 -33 70 -41 112 -41c19 0 45 7 62 14 c24 10 35 16 57 31'], + 0xE192: [684,10,724,62,622,'62 661l6 5l191 18l7 -7c-10 -93 -18 -184 -16 -278l10 -5c60 40 126 74 203 74c40 0 81 -13 110 -38c40 -34 51 -85 49 -133c-1 -41 -7 -81 -21 -120c-12 -31 -28 -61 -54 -84c-65 -60 -151 -103 -247 -103c-37 0 -68 9 -95 33c-21 18 -37 46 -37 100v476 c0 16 -7 30 -27 32c-1 0 -57 6 -79 9v21zM255 347c-2 -34 -5 -79 -5 -118c0 -62 5 -139 35 -165c24 -20 45 -26 77 -26c37 0 73 12 103 33c22 16 36 38 45 61c13 30 18 63 18 95c0 73 -18 115 -34 136c-14 20 -42 43 -84 43c-60 0 -111 -25 -155 -59'], + 0xE193: [475,19,609,86,535,'522 114l13 -18c-70 -61 -153 -115 -253 -115c-49 0 -92 8 -124 32c-24 18 -41 44 -52 69c-20 43 -20 89 -20 135c0 67 23 133 74 183c53 52 135 75 212 75c32 0 62 -6 86 -23c27 -19 42 -46 45 -75l-61 -53l-19 6c-6 37 -18 64 -37 82c-15 14 -39 24 -59 24 c-38 0 -64 -10 -96 -43c-39 -40 -51 -93 -51 -145c0 -61 10 -131 65 -172c26 -21 61 -29 94 -29c67 0 124 31 173 69'], + 0xE194: [684,19,741,128,706,'386 660l5 4l185 20l8 -9l1 -565c1 -17 4 -34 12 -47c6 -10 17 -15 31 -15c10 0 46 11 69 19l9 -23c-29 -17 -58 -34 -89 -47c-18 -8 -37 -16 -57 -16c-17 0 -35 5 -45 18c-13 16 -21 35 -22 55c-35 -21 -71 -40 -111 -54c-27 -10 -56 -18 -85 -18c-40 0 -81 11 -109 37 c-46 43 -60 103 -60 161c0 80 23 160 86 218c48 44 114 64 182 64c33 0 63 -6 94 -15l8 4c0 53 -1 125 -8 151c-5 13 -16 25 -32 29c-22 5 -47 7 -71 7zM493 95l5 215c0 35 -5 73 -34 99c-18 16 -47 19 -73 19c-37 0 -72 -14 -98 -38c-53 -48 -67 -120 -67 -187 c0 -45 11 -93 48 -126c23 -20 55 -29 86 -29c39 0 102 20 133 47'], + 0xE195: [478,12,623,109,554,'255 396c-45 -42 -52 -87 -52 -136c0 -6 1 -12 2 -18l5 -4l228 80c7 2 15 10 15 26c0 3 -1 7 -2 10c-6 25 -25 58 -52 74c-13 7 -28 10 -49 10c-38 0 -71 -16 -95 -42zM526 319l-319 -122c3 -33 20 -84 53 -112c26 -21 59 -29 93 -29c33 0 63 9 93 22c28 13 55 28 81 46 l12 -2l15 -18c-37 -31 -78 -59 -123 -81c-41 -21 -87 -35 -134 -35c-40 0 -80 8 -111 30c-23 16 -37 39 -48 62c-21 46 -29 97 -29 146c0 58 14 117 58 162c55 57 136 90 222 90c37 0 75 -7 104 -28c37 -27 57 -68 57 -110c0 -4 -1 -7 -1 -8c-4 -5 -15 -10 -23 -13'], + 0xE196: [669,12,533,72,507,'85 434h118l6 6c1 35 4 86 21 122c17 34 30 50 61 73c35 25 72 34 112 34c61 0 91 -27 104 -54l-64 -54l-14 4c-2 10 -6 26 -12 34c-6 11 -25 30 -54 30c-14 0 -27 -9 -39 -25c-21 -29 -29 -100 -29 -164l5 -6h140l6 -7l-8 -22l-8 -6h-130l-7 -6v-111 c0 -94 3 -189 11 -270l-89 -24l-19 11c9 99 14 193 15 284v108l-7 8h-127l-5 7l5 22'], + 0xE197: [465,233,701,125,590,'481 52c-37 -19 -67 -33 -106 -48c-26 -10 -59 -15 -86 -15c-35 0 -73 13 -100 36c-40 34 -64 91 -64 159c0 58 9 92 24 128c13 32 33 65 60 89c46 41 109 64 175 64c46 0 94 -9 132 -34l58 29l16 -6c-6 -91 -11 -163 -11 -372c0 -38 -1 -110 -24 -168 c-18 -44 -60 -78 -83 -93c-57 -39 -115 -54 -183 -54c-50 0 -101 10 -156 56l55 62h16c21 -36 72 -77 113 -77c43 0 85 17 114 47c20 20 33 46 41 72c10 31 19 81 20 118zM491 99l1 264c-2 14 -10 31 -21 42c-19 19 -49 26 -80 26c-38 0 -74 -17 -102 -41 c-25 -21 -42 -49 -52 -77c-13 -38 -16 -71 -16 -110c0 -27 19 -79 34 -98c26 -33 64 -53 96 -53c52 0 115 29 140 47'], + 0xE198: [681,10,761,62,751,'736 107l15 -10v-11c-31 -30 -58 -53 -95 -72c-26 -14 -51 -24 -83 -24c-22 0 -43 10 -54 26c-13 20 -20 46 -20 73c0 54 5 141 5 177c0 24 -2 47 -6 72c-3 17 -13 36 -29 48c-19 12 -38 18 -63 18s-56 -8 -79 -16c-32 -14 -53 -26 -81 -44c0 -110 -3 -220 -3 -328 l-81 -22l-7 10c8 132 15 264 16 396c0 52 0 125 -3 156c-3 20 -5 42 -19 60c-10 12 -57 20 -87 26v18l5 4l178 17l7 -7c-4 -85 -4 -184 -4 -276l9 -8c41 22 82 42 128 58c31 10 62 18 99 18c17 0 53 -10 74 -28c15 -12 21 -30 23 -48c4 -28 4 -88 4 -130 c0 -44 -1 -108 1 -132c1 -16 3 -34 15 -50c7 -10 20 -16 33 -16c18 0 36 5 52 12c22 11 37 22 50 33'], + 0xE199: [683,8,466,47,434,'275 392l-8 -210c0 -41 3 -77 13 -95c7 -13 19 -22 36 -22c16 0 33 3 47 9c20 10 38 22 56 36l15 -10v-11c-23 -27 -47 -50 -78 -70c-24 -14 -51 -27 -80 -27s-54 7 -73 28c-16 18 -18 40 -18 84l6 221c0 30 -4 56 -12 70c-6 10 -15 15 -27 15c-25 0 -63 -17 -90 -32 l-15 18c27 19 64 42 91 54c20 9 46 21 67 21c16 0 38 -2 53 -18s17 -40 17 -61zM290 625c-1 -33 -31 -56 -67 -56c-35 0 -65 26 -65 58c1 34 37 56 72 56c38 0 60 -28 60 -58'], + 0xE19A: [683,231,434,30,286,'62 375l-15 18c30 21 61 40 95 56c20 9 42 19 64 19c17 0 35 -3 46 -13c17 -14 21 -34 23 -54c8 -43 8 -210 8 -247c0 -20 0 -160 -14 -195c-14 -38 -40 -71 -71 -100c-37 -35 -98 -68 -150 -90l-18 16c84 44 128 89 145 139c19 62 22 186 22 230c0 98 0 164 -4 201 c-2 20 -9 35 -14 39c-12 14 -19 14 -32 14c-18 0 -57 -20 -85 -33zM221 683c34 0 65 -22 65 -54c0 -34 -29 -64 -69 -64c-37 0 -63 28 -63 60s31 58 67 58'], + 0xE19B: [686,7,687,62,669,'259 266l152 123c30 24 87 70 90 73c13 9 24 17 37 23l52 -29v-11c-84 -44 -165 -95 -240 -151c-8 -6 -21 -15 -21 -20c0 -6 6 -11 9 -16c53 -60 113 -112 165 -159c16 -14 43 -26 57 -26c37 0 63 16 88 39l21 -20c-30 -36 -58 -62 -109 -92c-7 -4 -23 -7 -34 -7 c-10 0 -31 3 -38 8c-13 6 -32 22 -51 41c0 0 -101 120 -181 199l-11 -7l-3 -221l-80 -20l-7 7l12 359c2 79 5 189 -8 235c-5 15 -17 28 -34 34c-12 3 -42 8 -63 10v21l5 4l181 23l7 -7l-10 -413h14'], + 0xE19C: [686,11,472,77,438,'412 112h14l12 -12c-22 -31 -48 -59 -80 -81c-28 -17 -59 -29 -92 -30c-21 0 -44 6 -59 19c-26 25 -34 44 -34 122l8 378c0 33 0 76 -5 100c-4 13 -16 22 -31 24c-21 4 -45 5 -68 6v23l7 5l186 20l7 -7c-5 -140 -15 -280 -15 -420c0 -42 0 -102 2 -127 c2 -17 4 -34 14 -49c10 -12 22 -17 38 -18c16 0 33 5 45 12c19 10 35 22 51 35'], + 0xE19D: [471,18,1093,64,1073,'507 -4c0 32 12 159 12 273c0 24 0 51 -5 70c-5 16 -13 31 -26 43c-16 14 -39 18 -62 18c-53 0 -122 -38 -132 -44c-5 -113 -8 -229 -3 -342l-76 -24l-16 8c1 92 8 184 8 275c0 44 -3 110 -14 126c-8 10 -18 13 -31 13c-18 0 -59 -16 -85 -29l-13 19c27 19 55 37 86 51 c21 9 45 17 69 18c19 0 38 -6 52 -17c18 -15 18 -37 18 -57l9 -6c37 18 74 37 115 52c25 9 52 16 79 16c42 0 80 -20 101 -52l19 -2c28 13 56 27 96 39c27 9 55 16 85 16c32 0 66 -6 89 -27c16 -14 18 -34 20 -53c2 -20 2 -88 2 -132v-131c0 -13 3 -38 16 -51 c11 -10 27 -14 42 -14c25 1 59 22 87 40h16l8 -21c-30 -25 -60 -48 -95 -65c-27 -13 -55 -23 -86 -24c-18 0 -39 5 -52 17c-17 16 -25 39 -25 60c0 16 6 136 6 210c0 24 0 47 -7 70c-4 17 -13 31 -27 43c-17 14 -40 18 -62 18c-56 0 -95 -18 -127 -34 c-3 -115 -3 -233 5 -348l-84 -28'], + 0xE19E: [471,10,810,37,772,'268 18l-78 -24l-18 7c3 43 9 170 10 256c2 46 3 112 -11 136c-6 11 -16 20 -30 20c-24 0 -52 -16 -85 -35l-19 22c47 30 112 72 153 71c21 0 42 -4 57 -17c18 -15 21 -32 23 -51l10 -6c38 21 75 39 118 53c31 11 62 19 95 19s67 -7 87 -29c23 -23 23 -120 23 -184 c0 -54 -1 -126 1 -145c2 -34 27 -51 53 -51s62 21 91 40h14l10 -21c-32 -28 -63 -49 -100 -68c-23 -11 -62 -21 -77 -21c-30 0 -52 8 -66 27c-13 17 -15 40 -15 61l5 171c0 29 -2 59 -8 87c-3 18 -10 35 -22 48c-20 18 -43 26 -72 26c-22 0 -45 -7 -65 -15 c-29 -12 -55 -28 -80 -46c-2 -47 -6 -99 -6 -151c0 -60 -2 -99 2 -180'], + 0xE19F: [465,14,696,94,593,'200 316c-6 -25 -9 -51 -9 -77c0 -66 14 -141 72 -186c21 -17 51 -26 81 -26c38 0 73 12 99 37c22 21 33 48 40 75s9 54 9 81c0 64 -9 136 -66 180c-22 19 -53 26 -83 26c-34 0 -77 -14 -106 -42c-20 -19 -30 -43 -37 -68zM314 -14c-50 0 -104 10 -142 40 c-54 43 -73 107 -78 170c0 69 8 143 62 195s134 74 213 74c53 0 106 -9 147 -41c57 -47 77 -118 77 -185c0 -65 -16 -131 -66 -180c-53 -53 -134 -73 -213 -73'], + 0xE1A0: [470,237,725,17,616,'256 -206l-92 -31l-11 11c6 58 7 263 7 320v221c0 22 -6 66 -16 80c-7 10 -15 17 -28 17c-24 0 -56 -15 -83 -29l-16 19c28 19 57 37 87 50c22 10 43 18 67 18c18 0 36 -3 50 -15c17 -14 21 -36 24 -60l8 -4c38 26 62 39 103 55c35 13 69 19 106 19c35 0 79 -15 104 -37 c42 -40 50 -78 50 -130c0 -44 -10 -96 -28 -135c-14 -31 -41 -71 -64 -89c-32 -25 -67 -47 -105 -63c-31 -13 -63 -22 -96 -22c-24 0 -46 3 -67 8l-11 -8c0 -46 4 -143 11 -195zM247 66c27 -22 62 -37 99 -37c41 0 81 10 111 36c23 20 38 47 49 75c13 35 15 62 15 99 c0 26 -7 61 -15 86c-6 18 -15 33 -30 48c-20 21 -48 30 -71 30c-58 0 -104 -21 -157 -58c0 -6 -3 -82 -3 -93c0 -82 2 -185 2 -186'], + 0xE1A1: [504,243,743,131,598,'504 -243l-18 16c3 41 6 185 9 281l-8 5c-57 -38 -123 -66 -194 -66c-36 0 -71 12 -97 33c-50 43 -66 106 -64 166c2 87 28 172 104 230c47 37 113 49 167 49c35 0 80 -14 112 -28l10 2l50 59l23 -4c-20 -223 -21 -528 -2 -714zM495 105v226c0 25 0 55 -18 71 c-20 18 -46 32 -75 32c-38 0 -72 -12 -101 -33c-51 -37 -65 -118 -65 -188c0 -26 4 -52 12 -77c4 -18 14 -32 27 -46c22 -23 55 -35 89 -35c44 0 94 21 131 50'], + 0xE1A2: [473,3,548,41,500,'439 339l-14 5c-3 16 -9 32 -21 44c-10 9 -24 14 -39 14c-46 0 -73 -35 -87 -62c-5 -12 -5 -32 -6 -46c-2 -93 -3 -184 2 -276l-79 -21l-17 9c8 70 12 157 13 237c0 53 0 129 -18 154c-7 10 -18 15 -30 15c-26 0 -60 -17 -88 -31l-14 17c28 20 59 40 91 56 c20 9 40 19 62 19c20 0 40 -4 55 -17c16 -14 23 -35 26 -55l11 -4c22 18 46 36 72 51c15 9 32 19 53 19s47 -4 63 -18s24 -39 26 -61'], + 0xE1A3: [466,17,574,90,468,'456 383l-62 -37l-14 7c-1 18 -3 37 -15 53c-12 18 -36 25 -58 25c-25 0 -50 -8 -67 -23c-18 -15 -26 -36 -26 -58s12 -34 29 -50c14 -12 63 -34 95 -46c37 -14 79 -36 94 -50c21 -18 36 -41 36 -66c0 -35 -13 -69 -40 -94c-44 -42 -108 -61 -172 -61 c-43 0 -88 7 -121 33c-18 14 -34 31 -45 50l55 71l16 -1c2 -30 14 -60 39 -81s56 -34 90 -34c25 0 56 12 72 28c14 13 24 30 24 48c0 21 -13 41 -30 56c-21 19 -53 31 -82 42c-35 13 -70 27 -95 47c-26 21 -46 49 -46 81c0 35 16 70 46 94c41 33 94 49 149 49 c34 0 70 -4 96 -25c18 -15 31 -36 32 -58'], + 0xE1A4: [611,9,530,51,482,'187 582l95 29l8 -5c-6 -57 -11 -108 -12 -166l6 -5h145l5 -4l-8 -26l-8 -5h-134l-7 -6v-189c0 -42 4 -106 30 -130c15 -15 31 -20 51 -20c28 0 69 22 103 41l12 -2l9 -15c-31 -25 -63 -48 -100 -65c-27 -13 -55 -23 -85 -23c-26 0 -61 7 -82 31c-24 27 -26 46 -26 181 v190l-6 7h-128l-4 5l7 24l7 6h117l7 6c0 51 0 115 -2 141'], + 0xE1A5: [470,10,785,30,771,'759 105l12 -19c-34 -26 -69 -50 -106 -70c-24 -12 -49 -24 -76 -24c-20 0 -42 5 -56 18c-16 14 -19 35 -22 54l-9 1c-42 -22 -85 -41 -130 -58c-26 -10 -54 -17 -82 -17c-32 0 -69 7 -91 29c-22 23 -28 72 -28 93c0 33 5 134 5 163c0 91 -4 107 -20 121 c-7 7 -18 9 -31 9c-16 0 -54 -17 -80 -30l-15 20c29 20 60 39 93 55c19 9 39 18 61 18c18 0 38 -3 52 -15c15 -14 18 -34 20 -54s2 -103 2 -155c0 -59 0 -143 31 -170c18 -16 45 -23 71 -23c24 0 46 7 66 15c30 12 54 23 82 38c1 108 3 277 0 331l87 35l15 -11 c-9 -93 -14 -186 -14 -278c0 -36 0 -86 18 -102c10 -9 24 -14 37 -14c15 0 30 6 42 12c21 8 38 18 56 30'], + 0xE1A6: [469,11,619,7,558,'496 460c4 2 7 2 10 2s7 0 9 -3c21 -14 43 -43 43 -97c0 -55 -31 -104 -63 -150c-50 -72 -113 -135 -179 -195c-13 -11 -28 -25 -34 -28h-27l-78 258c-15 51 -44 122 -58 144c-6 10 -17 17 -30 17c-25 0 -46 -8 -72 -21l-10 24c26 16 53 31 83 43c19 8 38 15 59 15 c16 0 32 -7 44 -17c19 -17 43 -99 60 -159c17 -58 45 -154 62 -201c4 -9 12 -10 15 -10c6 0 19 14 28 22c33 35 65 73 89 114c18 30 31 61 31 94c0 32 -22 68 -41 100c-1 1 -1 3 -1 5c0 3 2 6 5 8'], + 0xE1A7: [469,8,977,16,915,'794 416c-1 2 -2 4 -2 6c0 3 1 6 3 7l64 35c1 1 4 1 7 1s7 0 9 -3c24 -27 40 -58 40 -93c0 -55 -31 -106 -64 -153c-49 -74 -113 -140 -178 -203c-11 -10 -24 -21 -40 -21c-12 0 -25 12 -29 21c-19 48 -71 223 -103 337c-2 4 -5 10 -10 10s-11 -2 -13 -5 c-63 -103 -140 -231 -202 -350l-47 -13l-8 6l-27 224c-16 126 -39 171 -55 183c-6 5 -10 7 -19 7c-26 0 -63 -17 -94 -31l-10 20c30 19 59 36 92 51c19 9 38 17 60 17c20 0 38 -6 52 -19c22 -22 30 -49 35 -77c17 -80 22 -162 33 -243l13 -2c64 103 128 207 188 313l58 26 l14 -3c29 -126 60 -250 110 -368c3 -7 11 -15 20 -15c4 0 13 6 17 10c36 40 72 81 99 127c17 29 30 61 30 94c0 15 -6 30 -12 44c-8 21 -19 41 -31 60'], + 0xE1A8: [464,12,654,33,610,'508 462l34 -29c2 -1 4 -3 4 -4c0 -3 -1 -4 -3 -5c-63 -39 -135 -104 -195 -165c30 -57 86 -151 121 -178c12 -9 25 -18 42 -18c14 0 26 6 38 11c16 8 28 16 42 27h10l9 -19c-26 -25 -54 -50 -85 -70c-18 -12 -37 -24 -60 -24c-19 0 -35 9 -49 21c-18 14 -30 33 -43 52 c-17 25 -54 87 -79 130h-8c-44 -60 -89 -122 -122 -199l-18 -4l-33 25v8c49 69 106 138 161 202c-33 59 -75 134 -113 169c-10 9 -25 15 -40 15c-23 0 -51 -13 -71 -25l-17 18c26 18 53 34 82 48c17 8 34 16 52 16c19 0 46 -4 61 -19c23 -23 70 -95 102 -151l7 -1 c41 48 108 118 157 169c2 2 4 2 7 2c2 0 5 0 7 -2'], + 0xE1A9: [468,233,730,12,586,'140 -182l-2 11l50 56h15c24 -38 67 -77 118 -77c41 0 85 14 110 42c32 35 43 87 49 116c6 33 7 66 8 98l-7 5c-38 -21 -77 -41 -119 -57c-29 -10 -60 -20 -93 -20c-28 0 -55 6 -75 24c-39 29 -42 101 -42 141c0 20 1 41 2 61c2 62 7 152 -15 178c-7 10 -21 14 -35 14 c-19 0 -54 -16 -80 -28l-12 19c9 6 56 34 96 51c19 8 39 16 61 16c17 0 36 -4 47 -14c16 -14 24 -35 24 -56c0 -56 -4 -114 -4 -172c3 -93 13 -123 31 -144c17 -19 44 -26 71 -26c24 0 48 4 70 14c30 10 60 26 82 38c4 106 2 216 -7 320l89 38l14 -4c-7 -86 -7 -174 -7 -260 c0 -124 2 -177 -17 -251c-14 -43 -39 -83 -67 -109c-54 -51 -135 -75 -211 -75c-53 0 -112 23 -144 51'], + 0xE1AA: [462,27,591,44,572,'492 462h7l16 -13c-94 -88 -216 -221 -328 -355l5 -8c111 -10 222 -13 232 -13c27 0 57 10 73 23c19 17 36 35 50 55l25 -12l-46 -80c-11 -21 -25 -41 -48 -53c-18 -10 -40 -14 -62 -14c-12 0 -97 8 -145 13l-133 11c-27 0 -52 -20 -70 -43h-7l-17 19l334 381 c-11 -2 -22 -2 -34 -2c-18 0 -50 6 -75 11c-20 4 -43 8 -61 8s-36 -7 -49 -17c-14 -10 -35 -35 -51 -54l-23 13l57 89c8 11 17 25 27 31c12 8 28 10 43 10c27 0 65 -9 98 -16s69 -15 100 -15c32 0 58 14 82 31'], + 0xE1AB: [471,8,436,29,416,'256 392l-7 -210c0 -41 3 -77 13 -95c7 -13 19 -22 36 -22c16 0 33 3 47 9c20 10 38 22 56 36l15 -10v-11c-23 -27 -47 -50 -78 -70c-24 -14 -51 -27 -80 -27s-54 7 -73 28c-16 18 -18 40 -18 84l6 221c0 30 -5 56 -12 70c-6 10 -15 15 -28 15c-24 0 -62 -17 -89 -32 l-15 18c27 19 64 42 91 54c20 9 46 21 67 21c16 0 38 -2 52 -18c16 -16 17 -40 17 -61'], + 0xE1AC: [468,231,434,30,283,'62 375l-15 18c30 21 61 40 95 56c20 9 42 19 64 19c17 0 35 -3 46 -13c17 -14 21 -34 23 -54c8 -43 8 -210 8 -247c0 -20 0 -160 -14 -195c-14 -38 -40 -71 -71 -100c-37 -35 -98 -68 -150 -90l-18 16c84 44 128 89 145 139c19 62 22 186 22 230c0 98 0 164 -4 201 c-2 20 -9 35 -14 39c-12 14 -19 14 -32 14c-18 0 -57 -20 -85 -33'], + 0xE1AD: [472,196,742,99,671,'353 59l53 43l8 -1c5 -15 12 -30 23 -38c11 -10 26 -14 40 -14c29 0 52 9 67 23c21 19 34 44 43 70c10 30 16 74 16 109c0 49 -9 99 -49 134c-18 16 -42 25 -66 25c-22 0 -34 -2 -65 -13c-44 -16 -115 -108 -160 -170c29 -45 58 -95 80 -143c3 -8 7 -16 10 -25zM255 464 l16 -10c-30 -33 -58 -69 -58 -112c0 -18 6 -35 12 -52c5 -9 9 -17 13 -25h10l20 26c31 44 90 122 169 159c29 14 65 22 98 22c32 0 64 -8 87 -28c41 -36 49 -89 49 -138c0 -93 -29 -188 -103 -255c-19 -16 -40 -31 -62 -42c-17 -9 -37 -15 -56 -15c-34 0 -64 15 -87 36 c5 -15 7 -29 7 -44c0 -51 -12 -105 -54 -142c-26 -23 -60 -40 -97 -40c-29 0 -56 8 -76 25c-32 28 -44 67 -44 106c0 35 12 69 24 101c16 46 61 129 73 148c-10 17 -19 31 -27 49c-10 24 -19 48 -19 73c0 66 47 121 105 158zM213 144c-34 -52 -58 -124 -58 -174 c0 -37 8 -77 39 -102c11 -10 26 -16 43 -16c20 0 41 5 56 18c23 21 31 51 31 79c0 27 -13 53 -25 77c-22 40 -49 80 -76 118h-10'], + 0xE1AE: [347,-178,684,56,630,'349 291l83 -46c25 -14 53 -26 84 -26c21 0 36 7 50 17c15 10 29 32 40 50l24 -11c-13 -26 -31 -52 -53 -70c-17 -14 -47 -27 -74 -27c-43 0 -82 16 -118 36l-112 63c-27 15 -58 28 -91 28c-21 0 -39 -5 -56 -18c-14 -11 -32 -37 -46 -59l-24 12c13 24 31 49 47 66 c15 15 32 28 53 34c13 4 26 7 40 7c21 0 43 -6 63 -14c32 -11 61 -26 90 -42'], + 0xE1AF: [409,-206,834,59,741,'741 409v-203h-46v163h-636v40h682'], + 0xE1B0: [689,-1,936,119,810,'398 91l-16 -90h-244l29 90c1 52 3 105 14 147c9 37 64 106 113 150c-54 38 -153 108 -175 145v156h35c7 -66 54 -119 111 -160c90 -65 285 -203 286 -203v44c0 67 36 137 90 190c-27 0 -81 0 -92 11c-13 11 -19 14 -19 29v89h28c3 -11 9 -22 18 -30c10 -9 31 -9 48 -9 h136c26 0 50 -16 50 -39v-72l-17 -5c-13 14 -30 27 -50 27h-54c-26 -16 -61 -76 -68 -93c-16 -41 -19 -66 -19 -112c0 -28 22 -79 45 -99c44 -38 113 -83 163 -114l-24 -142h-19c-51 73 -157 161 -240 220l-207 148c-21 -17 -55 -61 -72 -86c-15 -21 -20 -42 -20 -73 c0 -50 42 -119 74 -119h96'], + 0xE1B1: [711,17,1013,43,952,'649 225h-232c-17 -42 -36 -76 -63 -112c-20 -27 -49 -52 -76 -74c-33 -28 -74 -50 -122 -50c-32 0 -65 8 -89 27c-18 15 -24 37 -24 59c0 16 8 32 22 43c13 10 30 14 47 14c15 0 28 -6 39 -14c8 -7 15 -22 16 -34c1 -11 6 -26 14 -32c7 -5 16 -7 25 -7c13 0 25 6 34 13 c40 34 80 153 106 236c21 70 47 147 79 213c22 46 46 83 87 118c61 51 144 65 230 78c22 3 40 5 79 8l5 -29c-27 -6 -42 -14 -42 -29v-446c0 -52 0 -130 24 -150c10 -8 25 -12 39 -12c21 0 35 10 48 21c14 12 26 24 38 37l19 -16c-16 -20 -33 -41 -54 -59 c-31 -26 -72 -45 -117 -45c-29 0 -58 9 -78 27c-25 20 -33 49 -40 77c-11 45 -14 92 -14 138zM649 275v370l-8 5c-25 -6 -48 -18 -67 -32c-32 -27 -48 -63 -62 -99c-25 -62 -61 -166 -77 -244h214'], + 0xE1B2: [727,1,988,73,882,'476 727l14 -8v-25c67 0 137 -3 202 -16c43 -8 89 -20 119 -48c23 -22 32 -49 32 -78c0 -40 -15 -72 -50 -101c-27 -23 -58 -44 -94 -56l2 -6c49 0 97 -15 132 -43c30 -26 49 -63 49 -99c0 -44 -27 -87 -60 -122c-30 -31 -93 -72 -129 -90c-30 -16 -90 -36 -147 -36h-446 l46 88c34 0 75 3 106 13c24 7 51 24 65 40c23 28 29 56 35 88c10 51 12 102 12 154v269c-45 -6 -89 -19 -124 -43c-28 -18 -51 -43 -51 -73c0 -7 1 -15 2 -22c4 -13 6 -26 6 -39s-6 -25 -16 -33c-13 -11 -32 -15 -51 -15c-13 0 -27 3 -37 11c-16 14 -20 33 -20 51 c0 43 30 79 65 109c64 53 142 80 231 93zM311 87h275c39 0 113 0 140 23c28 22 35 60 35 91c0 35 -10 78 -41 103c-32 27 -76 45 -122 49h-92c-9 -1 -22 -3 -24 -7c-8 -40 -21 -94 -39 -124c-10 -16 -36 -46 -51 -60c-25 -23 -55 -50 -86 -67zM489 661v-258c0 -6 7 -9 13 -9 c30 0 65 0 91 4c38 6 75 18 102 42c25 20 30 43 30 71c0 35 -6 73 -37 98c-23 19 -51 30 -81 38c-39 10 -79 14 -118 14'], + 0xE1B3: [709,15,791,95,721,'637 165l71 -62c-9 -14 -20 -29 -35 -41c-65 -55 -158 -77 -250 -77c-79 0 -159 15 -214 62c-40 32 -67 74 -84 117c-21 52 -30 107 -30 162c0 107 29 218 123 295c75 62 180 88 284 88c64 0 130 -8 176 -46c33 -27 43 -65 43 -103c0 -47 -18 -94 -59 -127 c-42 -35 -101 -50 -161 -50c-52 0 -106 5 -144 36c-18 14 -31 33 -31 53c0 19 8 37 24 50c10 10 27 13 43 13c13 0 28 -2 39 -10c10 -8 17 -18 17 -29v-21c-2 -10 -5 -30 -5 -31c0 -5 1 -10 5 -13c14 -12 33 -16 53 -16c26 0 49 15 68 30c33 28 44 67 44 106 c0 32 -7 66 -36 89c-29 24 -71 33 -113 33c-50 0 -100 -14 -136 -43c-38 -32 -61 -74 -77 -117c-20 -56 -26 -114 -26 -172c0 -53 7 -106 26 -156c16 -40 40 -79 77 -110c39 -32 92 -50 147 -50c36 0 73 11 100 33c31 26 44 62 44 99'], + 0xE1B4: [727,1,1067,62,975,'479 719v-26c85 0 169 -5 251 -21c54 -11 110 -26 151 -60c70 -58 94 -142 94 -224c0 -90 -33 -180 -112 -244c-50 -41 -106 -77 -165 -108c-45 -23 -99 -37 -152 -37h-446l46 88c34 0 75 3 106 13c24 7 51 24 65 40c23 28 30 52 35 88c4 27 4 33 4 71v352 c-45 -6 -92 -19 -127 -43c-28 -18 -50 -43 -50 -73c0 -7 1 -15 2 -22c3 -13 5 -26 5 -39s-5 -25 -16 -33c-13 -11 -32 -15 -50 -15c-14 0 -28 3 -38 11c-16 14 -20 33 -20 51c0 43 30 79 65 109c64 53 143 80 231 93l107 37zM311 87h319c59 0 118 18 160 52 c23 20 33 46 39 72c12 40 15 81 15 121c0 51 -7 102 -27 150c-16 40 -40 78 -76 108c-28 24 -67 38 -106 48c-50 12 -102 17 -156 17v-253c0 -48 -3 -97 -16 -144c-9 -26 -30 -60 -71 -96c-25 -23 -55 -50 -86 -67'], + 0xE1B5: [708,12,799,97,704,'326 380l1 1c-35 8 -72 21 -100 44c-33 28 -51 66 -51 105c0 43 16 86 53 117c59 48 142 61 224 61c32 0 65 -2 96 -10c24 -6 44 -14 61 -28c21 -17 31 -40 31 -64c0 -21 -6 -42 -21 -58c-11 -12 -25 -20 -44 -20c-18 0 -35 6 -46 16c-9 7 -13 16 -13 26s3 19 8 28 c6 9 9 20 9 30c0 13 -6 24 -16 33c-17 14 -42 16 -65 16c-37 0 -71 -13 -97 -34c-35 -29 -51 -70 -51 -111c0 -36 15 -71 46 -97c20 -16 48 -23 76 -29c42 -8 84 -10 127 -10v-29c-55 0 -112 -3 -168 -14c-36 -7 -74 -18 -101 -40c-39 -32 -52 -78 -52 -122 c0 -47 23 -91 62 -124c36 -29 84 -41 132 -41s93 17 126 45c30 24 36 60 41 94c1 0 16 6 24 9l86 -68c-9 -16 -20 -31 -35 -43c-66 -54 -159 -75 -250 -75c-52 0 -106 3 -156 14c-35 7 -71 17 -96 38c-40 33 -70 76 -70 124c0 55 20 111 68 151c45 36 103 57 161 65'], + 0xE1B6: [731,14,871,65,890,'570 682l192 -34c10 -2 25 -4 33 -4c13 0 26 4 34 13l40 45l21 -16l-51 -71c-12 -15 -24 -29 -39 -39c-9 -7 -19 -11 -32 -11c-18 0 -37 5 -55 10c-48 14 -142 40 -143 40l-3 -224h184l-41 -50h-143c0 -52 -3 -103 -20 -153c-14 -38 -33 -75 -68 -103 c-34 -28 -76 -51 -119 -70c-41 -17 -86 -29 -133 -29c-48 0 -100 8 -134 37c-18 14 -28 34 -28 55c0 17 9 33 24 44c13 11 30 15 48 15c16 0 32 -6 44 -15c10 -10 21 -29 26 -43c5 -13 14 -31 20 -36c12 -10 29 -13 45 -13c44 0 81 21 112 46c22 18 35 45 43 70 c14 48 18 103 18 195l-192 -1l36 51h156l6 251c-27 8 -62 13 -83 13c-43 0 -87 -6 -118 -32c-25 -21 -52 -50 -52 -81c0 -5 1 -24 6 -34c5 -9 8 -19 8 -29c0 -17 -10 -31 -24 -43c-12 -9 -27 -11 -43 -11c-13 0 -25 4 -35 13c-17 13 -21 33 -21 52c0 56 37 101 84 140 c61 50 140 63 225 63c22 0 45 -1 68 -4l91 42l13 -6v-43'], + 0xE1B7: [705,138,794,88,675,'563 377l109 28v-205c0 -51 -4 -92 -23 -141c-14 -38 -38 -79 -71 -108c-64 -57 -160 -89 -254 -89c-44 0 -87 2 -129 11c-29 6 -56 16 -77 34c-21 16 -30 39 -30 62c0 17 7 35 21 47c13 11 29 16 47 16s35 -3 47 -15c12 -11 18 -26 21 -40c3 -22 11 -44 29 -60 c20 -16 54 -16 82 -16c58 0 112 24 153 58c23 19 39 54 49 80c13 34 18 75 18 110l-5 121c-53 -30 -105 -43 -168 -43c-71 0 -154 16 -204 58c-55 45 -80 108 -80 172c0 63 27 124 82 169c72 60 177 79 278 79c37 0 75 -3 111 -11c26 -6 48 -13 68 -29c23 -20 38 -46 38 -75 c0 -26 -7 -54 -27 -72c-25 -24 -60 -43 -99 -43c-21 0 -55 5 -78 9l3 22c15 0 31 1 47 4c11 2 20 6 29 12c17 15 22 37 22 57c0 21 -4 44 -22 59c-30 24 -74 32 -116 32c-49 0 -99 -15 -134 -44c-52 -43 -67 -104 -67 -163c0 -61 24 -122 76 -166c28 -22 65 -33 104 -33 c41 0 80 10 109 34c18 21 32 44 41 79'], + 0xE1B8: [699,12,1132,63,1091,'541 694v-22l-44 -20l-1 -264h236c6 97 52 187 135 255c40 34 89 56 147 56c21 0 42 -1 56 -13c11 -9 21 -23 21 -36s-2 -25 -11 -37c-10 -12 -27 -19 -44 -19c-12 0 -19 2 -31 10c-7 4 -14 12 -16 19c-4 7 -9 12 -14 16c-4 3 -12 5 -21 5c-12 0 -24 -5 -34 -12 c-17 -15 -31 -33 -39 -52c-11 -27 -18 -56 -22 -84c-7 -67 -10 -134 -10 -201c0 -51 3 -98 11 -149c5 -30 19 -66 45 -87c12 -9 29 -14 45 -14c17 0 39 13 55 26l38 39l22 -18l-39 -40c-42 -42 -94 -64 -156 -64c-31 0 -59 14 -82 33c-12 10 -25 26 -32 41 c-9 21 -18 43 -22 65c-8 40 -12 81 -12 121c0 31 1 60 3 91h-229c0 -99 -29 -200 -114 -271c-55 -45 -124 -79 -202 -79c-35 0 -68 9 -92 29c-14 11 -25 26 -25 43c0 13 3 28 15 37c13 11 29 17 46 17c12 0 24 -2 32 -9c10 -8 17 -27 23 -42c3 -7 11 -14 19 -20 c8 -7 22 -11 35 -11c26 0 47 12 65 27c13 11 22 25 29 40c10 21 16 43 22 65c15 65 17 132 17 198v290c-32 0 -65 -2 -96 -9c-24 -5 -48 -14 -65 -29c-18 -14 -32 -35 -32 -57c0 -14 7 -28 13 -42c8 -14 15 -28 15 -44s-6 -32 -20 -43c-12 -10 -29 -17 -47 -17 c-14 0 -27 5 -37 13c-21 18 -28 53 -28 78c0 45 27 87 66 119c32 27 75 44 120 56c56 14 114 20 173 20c21 0 82 -2 113 -4'], + 0xE1B9: [703,18,666,62,573,'533 658v-196c0 -57 -2 -114 -10 -171c-5 -40 -14 -80 -30 -118c-18 -41 -40 -82 -78 -113c-55 -45 -124 -78 -202 -78c-43 0 -86 12 -116 37c-19 16 -35 35 -35 58c0 16 7 32 21 44c13 10 30 15 49 15c24 0 42 -14 51 -24c5 -5 14 -25 18 -40c1 -10 12 -25 16 -28 c13 -11 32 -16 51 -16c26 0 49 11 67 26c27 22 38 54 47 85c13 48 16 97 16 145v374c-32 0 -65 -2 -96 -9c-24 -5 -47 -14 -65 -29c-18 -14 -32 -35 -32 -57c0 -14 7 -28 13 -42c8 -14 15 -28 15 -44s-6 -32 -20 -43c-12 -10 -29 -17 -47 -17c-14 0 -27 5 -37 13 c-21 18 -27 53 -27 78c0 45 26 87 65 119c32 27 75 44 120 56c56 14 114 20 173 20c21 0 81 -1 113 -4l-6 -24'], + 0xE1BA: [701,137,674,65,610,'610 698l-3 -16l-66 -33c-1 -123 -2 -369 -2 -370c0 -69 -5 -140 -27 -207c-13 -47 -34 -94 -76 -128c-57 -49 -135 -81 -219 -81c-39 0 -81 6 -109 30c-31 25 -43 61 -43 96c0 43 17 85 41 123c31 48 72 90 119 128c61 52 131 83 180 100v311c-48 -8 -96 -22 -131 -52 c-23 -19 -43 -44 -43 -71c0 -8 0 -16 2 -24c2 -9 4 -24 4 -33c0 -13 -9 -33 -21 -42c-15 -12 -28 -20 -49 -20c-13 0 -29 10 -38 17c-15 13 -19 32 -19 50c0 46 31 83 70 115c96 79 231 110 365 110c21 0 42 -1 65 -3zM405 304c-34 -6 -106 -52 -135 -77 c-73 -60 -114 -142 -114 -227c0 -30 12 -59 38 -80c16 -13 38 -18 61 -18c13 0 26 5 39 11c16 8 31 18 45 29c29 25 41 58 49 92c14 51 17 104 17 157v113'], + 0xE1BB: [709,9,1060,61,998,'497 656v-281h17c88 90 266 270 266 271c21 18 45 34 71 47c17 8 36 16 57 16c25 0 46 -6 63 -21c14 -11 22 -28 22 -44c0 -20 -5 -39 -23 -53c-11 -11 -32 -21 -47 -21s-30 2 -39 10c-6 5 -11 11 -13 18c-2 11 -11 24 -27 24c-22 0 -42 -13 -58 -26 c-18 -15 -40 -37 -50 -47l-125 -137l93 -152c35 -58 75 -114 130 -160c15 -13 37 -18 58 -18c16 0 29 7 40 16c18 15 33 31 46 48l20 -16c-23 -39 -48 -80 -82 -108c-23 -19 -54 -31 -86 -31c-39 0 -78 13 -107 36c-28 23 -49 51 -67 80c-4 1 -98 150 -142 225h-17 c0 -98 -40 -194 -124 -264c-52 -43 -117 -76 -192 -76c-35 0 -70 7 -95 27c-14 12 -25 28 -25 45c0 14 2 27 14 37c15 12 27 17 46 17c11 0 27 -3 34 -9c10 -8 20 -23 26 -36c5 -9 14 -23 18 -27c11 -9 23 -11 38 -11c11 0 23 5 31 9c13 7 25 15 36 24c29 24 42 57 51 90 c14 50 18 102 18 153v345c-32 0 -65 -2 -96 -9c-24 -5 -47 -14 -64 -29c-18 -14 -32 -35 -32 -57c0 -14 6 -28 13 -42s15 -28 15 -44s-7 -32 -21 -43c-12 -10 -29 -17 -47 -17c-14 0 -27 5 -36 13c-22 18 -28 53 -28 78c0 45 27 87 65 119c32 27 75 44 120 56 c57 14 115 20 173 20c22 0 82 -1 114 -4l-1 -22'], + 0xE1BC: [710,12,928,60,825,'266 411c7 45 22 98 37 135c17 41 25 57 53 86c47 46 121 78 227 78c45 0 87 -7 117 -31c17 -16 29 -33 29 -55s-8 -43 -26 -58c-12 -10 -29 -17 -45 -17c-17 0 -36 3 -48 13c-14 11 -18 33 -18 51c0 16 -6 33 -18 43c-11 10 -27 14 -44 14c-21 0 -44 -8 -60 -22 c-19 -16 -27 -31 -35 -53c-14 -39 -23 -77 -30 -116c-9 -47 -20 -93 -38 -139c-11 -28 -32 -54 -56 -77c-25 -24 -66 -51 -101 -71l1 -9c95 0 143 -20 209 -48c50 -21 149 -46 203 -46c41 0 84 7 114 32c14 11 26 26 32 41c10 21 15 42 19 64c3 17 6 50 6 51l31 1v-69 c0 -60 -25 -120 -77 -164c-41 -33 -92 -57 -150 -57c-31 0 -64 3 -94 11c-50 14 -103 35 -147 57c-31 15 -67 28 -98 37c-23 6 -44 9 -68 9s-48 -5 -65 -22c-19 -20 -30 -52 -37 -80l-29 13c2 46 12 94 48 130c13 13 29 25 45 37c11 9 21 18 31 28c18 18 33 42 43 65 c14 29 29 75 39 138'], + 0xE1BD: [710,17,1252,61,1189,'649 23l-98 -35c-11 119 -47 236 -89 351c-13 36 -28 72 -46 106c-15 25 -31 50 -51 72v-223c0 -53 -7 -106 -25 -157c-14 -38 -34 -76 -68 -105c-32 -26 -74 -45 -119 -45c-25 0 -50 7 -67 21c-15 13 -24 30 -24 47c0 13 5 26 16 35c13 10 29 17 47 17 c15 0 28 -3 38 -12c5 -4 10 -17 13 -26c5 -11 13 -24 29 -24s34 5 45 14c25 21 38 49 46 77c12 41 16 83 16 125v307c-10 11 -21 21 -33 31c-27 22 -60 40 -97 40c-18 0 -37 -6 -49 -16c-27 -23 -41 -54 -46 -85l-26 4c0 48 17 97 59 132c35 30 87 36 137 36 c53 0 102 -21 140 -52c39 -32 69 -71 95 -112c33 -52 59 -108 81 -164c21 -52 41 -110 55 -167l8 -3c27 79 65 166 111 239c38 63 85 122 145 172c58 47 131 84 212 84c27 0 49 -5 68 -20c8 -7 15 -20 15 -31s-4 -29 -14 -37c-12 -10 -23 -13 -40 -13c-11 0 -20 4 -28 10 c-7 6 -14 13 -16 22c-2 12 -11 26 -28 26c-9 0 -15 -4 -22 -10c-27 -23 -30 -123 -30 -189c0 -101 1 -203 11 -304c2 -25 5 -50 12 -75c5 -16 9 -29 22 -40c7 -6 18 -8 29 -8c15 0 34 12 45 22l41 38l20 -16l-51 -54c-26 -25 -72 -45 -115 -45c-31 0 -62 6 -85 25 c-20 17 -31 50 -36 74c-9 42 -13 79 -14 121c-3 74 -5 150 -5 224c0 49 1 98 4 144c-67 -67 -115 -146 -150 -229c-43 -99 -68 -203 -82 -307'], + 0xE1BE: [712,13,999,59,983,'610 388l164 -228v350c0 34 3 69 12 102c7 23 16 46 37 63c25 21 59 37 96 37c19 0 32 -5 46 -16c10 -8 18 -20 18 -32s-2 -30 -14 -39c-13 -11 -26 -14 -46 -14c-17 0 -31 9 -35 23c-2 6 -5 18 -6 18c-5 4 -10 9 -18 9c-5 0 -10 -1 -13 -5c-17 -12 -22 -31 -24 -48 c-5 -26 -6 -86 -6 -128v-453l-85 -40c-66 102 -133 204 -208 302c-58 77 -120 158 -185 233v-114c0 -83 -8 -164 -24 -246c-6 -29 -14 -57 -27 -84c-11 -20 -25 -39 -43 -53c-25 -22 -59 -36 -96 -36c-27 0 -56 6 -74 25c-8 8 -14 20 -14 32c0 16 1 33 15 45 c12 10 28 17 44 17c15 0 29 -4 40 -12c4 -4 12 -14 16 -22c5 -11 15 -22 30 -22c12 0 25 5 33 13c25 24 36 63 40 97c9 60 10 159 10 239v170c-31 28 -69 54 -117 54c-19 0 -38 -3 -52 -15c-25 -20 -30 -42 -35 -69l-30 -6c0 25 5 51 14 76c6 19 17 37 34 51 c36 30 85 40 137 40s100 -21 137 -51c39 -33 74 -68 107 -107c45 -54 83 -103 122 -156'], + 0xE1BF: [707,20,918,80,822,'278 670l17 -11c-33 -27 -52 -71 -65 -112c-17 -61 -25 -123 -25 -186c0 -59 10 -118 30 -174c16 -44 40 -86 78 -118c36 -29 82 -46 131 -46c58 0 116 13 156 46c35 29 55 69 64 109c13 54 23 109 23 165c0 59 -3 121 -18 176c-11 39 -34 79 -68 108 c-24 20 -55 34 -91 34c-35 0 -68 -12 -94 -32c-16 -13 -26 -31 -26 -50s15 -35 34 -47c12 -8 24 -17 33 -28c6 -7 12 -23 12 -32c0 -17 -6 -29 -20 -41c-13 -10 -30 -15 -48 -15s-35 7 -48 18c-26 21 -33 52 -33 82c0 48 18 96 60 131c50 41 121 60 191 60 c57 0 112 -18 151 -51c38 -31 64 -71 78 -113c20 -55 22 -113 22 -170c0 -60 -12 -119 -30 -178c-15 -47 -50 -87 -87 -123c-69 -66 -175 -92 -279 -92c-89 0 -176 26 -239 78c-39 32 -63 74 -79 117c-20 55 -28 112 -28 169c0 103 39 208 122 278c21 18 48 37 76 48'], + 0xE1C0: [726,13,862,63,794,'480 690c55 0 112 -5 164 -17c40 -10 79 -24 108 -48c36 -30 42 -74 42 -114c0 -56 -25 -111 -73 -151c-63 -52 -153 -73 -241 -76c-10 -86 -37 -173 -111 -235c-48 -39 -112 -62 -180 -62c-36 0 -72 8 -98 30c-15 12 -23 29 -23 47c0 11 8 28 18 36c16 13 29 20 52 20 c27 0 47 -26 54 -48c5 -11 13 -22 24 -31c8 -7 17 -12 28 -12c21 0 39 11 54 24c27 22 39 54 46 85c13 50 13 100 13 151v361c-45 -6 -92 -19 -127 -43c-28 -18 -50 -43 -50 -73c0 -7 1 -15 2 -22c3 -13 5 -26 5 -39s-5 -25 -16 -33c-13 -11 -32 -15 -50 -15 c-14 0 -28 3 -38 11c-16 14 -20 33 -20 51c0 43 30 79 65 109c64 53 143 80 231 93l107 37l14 -8v-28zM480 650v-334c48 5 98 19 133 47c40 34 49 82 49 128c0 43 -13 88 -50 119c-34 28 -85 40 -132 40'], + 0xE1C1: [705,42,882,77,808,'786 184l22 -7c-22 -53 -47 -107 -97 -148c-27 -23 -64 -42 -105 -42c-44 0 -120 14 -179 24c-60 11 -120 21 -181 21c-27 0 -55 -6 -73 -22c-18 -15 -31 -33 -41 -52l-26 12c19 49 47 95 91 132c25 21 64 29 99 29c50 0 92 -5 146 -14c45 6 84 21 116 48 c34 27 53 69 66 105c16 50 22 103 22 155c0 42 -5 85 -20 125c-12 32 -28 62 -56 85c-32 26 -77 39 -122 39c-58 0 -116 -14 -157 -48c-29 -24 -47 -54 -60 -85c-15 -39 -20 -80 -20 -121c0 -37 2 -74 14 -110c6 -24 17 -49 39 -67c12 -10 28 -17 44 -22 c23 -7 44 -10 69 -13l-6 -24c-39 0 -79 5 -120 17c-32 9 -63 22 -87 42c-58 48 -87 114 -87 181c0 73 26 146 89 198c77 65 189 83 297 83c46 0 91 -4 134 -15c34 -9 67 -22 93 -44c69 -57 93 -138 93 -217c0 -87 -21 -177 -97 -240c-47 -39 -106 -64 -167 -79l1 -8 c31 -7 75 -17 117 -17c39 0 81 18 109 41c19 16 29 36 40 58'], + 0xE1C2: [732,12,937,63,933,'505 694c60 0 120 -4 178 -16c39 -8 79 -20 109 -44c30 -25 39 -61 39 -96c0 -47 -14 -96 -55 -130c-34 -27 -78 -54 -114 -70c24 -55 48 -106 80 -159c19 -30 38 -61 68 -83c8 -6 18 -12 29 -12c15 0 30 7 39 16c13 10 27 26 32 33l23 -16c-20 -31 -43 -63 -73 -88 c-24 -20 -52 -41 -89 -41c-21 0 -42 4 -58 17c-24 20 -39 47 -52 73l-111 223l-45 7c-12 -88 -47 -176 -124 -239c-54 -44 -120 -79 -196 -79c-35 0 -71 9 -96 30c-15 12 -26 29 -26 47c0 15 4 29 17 39c11 9 24 14 39 14c17 0 35 -2 47 -12c9 -8 17 -18 20 -29 c3 -12 8 -24 18 -33c9 -7 23 -9 36 -9c20 0 38 8 52 19c34 28 54 65 66 102c17 50 24 102 24 154v344c-45 -6 -92 -19 -127 -43c-28 -18 -51 -43 -51 -73c0 -7 1 -15 2 -22c4 -13 6 -26 6 -39s-6 -25 -16 -33c-13 -11 -32 -15 -51 -15c-13 0 -27 3 -37 11 c-16 14 -20 33 -20 51c0 43 30 79 65 109c64 53 142 80 231 93l107 37l14 -8v-30zM505 656v-323c51 0 97 18 134 47c42 35 50 91 50 139c0 38 -10 77 -43 104c-15 13 -35 20 -55 25c-28 6 -57 8 -86 8'], + 0xE1C3: [715,18,703,39,625,'407 515l5 18c20 1 39 4 53 17c15 12 21 32 21 49s-5 35 -20 47c-24 20 -57 30 -93 30c-35 0 -72 -5 -98 -26c-23 -19 -41 -44 -41 -71c0 -34 23 -65 52 -89c30 -24 64 -44 100 -61c44 -19 116 -52 131 -60c17 -8 33 -17 48 -28c43 -36 60 -87 60 -137 c0 -57 -34 -110 -83 -150c-31 -26 -69 -42 -110 -53c-50 -14 -101 -19 -154 -19c-74 0 -148 19 -200 63c-30 25 -39 61 -39 96c0 42 15 84 52 115s93 37 145 37c29 0 58 -6 78 -23c15 -12 23 -24 23 -42c0 -9 -5 -29 -13 -36c-13 -11 -29 -16 -48 -16c-14 0 -24 5 -33 13 c-4 3 -11 15 -12 23c0 11 -3 26 -11 32c-7 6 -17 11 -28 11c-12 0 -24 -6 -33 -14c-21 -17 -29 -43 -29 -68c0 -39 13 -80 49 -108c34 -29 83 -42 132 -42c54 0 107 16 146 48c29 24 44 57 44 91c0 39 -19 78 -53 106c-36 30 -82 51 -127 70c-54 23 -103 51 -145 86 c-40 33 -49 81 -49 126c0 41 13 83 49 112c24 20 56 31 88 39c44 10 90 14 135 14c61 0 124 -13 168 -49c19 -16 26 -39 26 -61c0 -21 -10 -40 -28 -55c-28 -23 -65 -39 -106 -39c-15 0 -37 2 -52 4'], + 0xE1C4: [697,11,763,60,818,'792 697l26 -13l-20 -31c-11 -18 -35 -50 -64 -73c-13 -11 -35 -25 -49 -31c-12 -5 -25 -8 -38 -8c-14 0 -83 14 -114 22v-255c0 -94 -40 -186 -120 -253c-15 -12 -91 -66 -200 -66c-35 0 -67 8 -92 29c-18 15 -25 37 -25 57c0 14 8 28 18 37c14 11 34 16 52 16 c12 0 31 -5 41 -16c7 -7 15 -20 19 -34c3 -11 9 -26 15 -31c10 -8 24 -10 38 -10c25 0 47 7 64 22c12 9 32 35 38 48c24 56 34 102 34 161v319l-14 5c-55 22 -114 41 -176 41c-23 0 -45 -5 -61 -18c-14 -12 -23 -27 -23 -43c0 -14 11 -26 22 -36c18 -17 34 -33 34 -53 c0 -15 -8 -30 -21 -41c-12 -10 -28 -17 -46 -17c-16 0 -32 5 -43 14c-22 18 -27 44 -27 69c0 45 21 87 60 118c55 47 131 71 211 71c58 0 135 -18 202 -36c51 -13 102 -26 156 -26c34 0 60 16 83 37'], + 0xE1C5: [709,13,918,42,885,'864 121l21 -17c-14 -19 -26 -36 -42 -55c-5 -6 -13 -14 -18 -19c-29 -23 -65 -39 -106 -39c-29 0 -61 5 -82 23c-26 22 -47 55 -58 90c-39 -36 -83 -66 -132 -88c-38 -16 -80 -29 -124 -29c-45 0 -91 11 -123 38c-41 34 -49 84 -49 131c0 76 18 157 35 234 c10 46 17 92 17 138c0 16 -1 31 -6 46c-3 10 -8 21 -17 28c-11 9 -24 16 -39 16c-16 0 -31 -5 -42 -14c-21 -17 -22 -35 -22 -58c0 -13 4 -36 7 -50l-27 -9c-8 23 -15 46 -15 70c0 43 11 79 50 110c26 22 64 32 100 32s70 -12 96 -33c15 -13 25 -27 31 -44 c8 -22 10 -39 10 -63c0 -61 -15 -135 -29 -202c-11 -51 -23 -110 -23 -154c0 -26 2 -52 12 -78c6 -19 16 -37 33 -51c19 -16 45 -25 72 -25c23 0 46 7 66 17c27 12 50 28 73 46c7 7 26 27 36 39c0 156 11 311 31 466c63 33 129 63 195 92l29 -14c-15 -8 -35 -23 -49 -36 c-14 -12 -23 -28 -29 -43c-11 -23 -20 -47 -24 -72c-18 -86 -23 -173 -23 -261c0 -47 0 -95 10 -141c8 -29 19 -58 43 -79c8 -6 18 -9 29 -9c16 0 26 6 39 17c10 8 32 34 44 50'], + 0xE1C6: [702,16,867,61,796,'456 118l11 3l111 155c32 41 63 91 83 137c16 37 23 68 23 107c0 29 -10 59 -35 79c-17 14 -33 21 -56 21c-16 0 -37 -7 -48 -15c-17 -10 -33 -31 -42 -46l-21 11c11 35 28 65 57 89c32 26 75 41 120 41c39 0 77 -9 104 -32c23 -19 33 -54 33 -82c0 -43 -17 -77 -40 -118 c-37 -68 -80 -130 -129 -196c-62 -83 -147 -197 -168 -255l-92 -33h-14c-19 118 -41 250 -65 350c-15 63 -37 145 -52 189c-9 27 -21 55 -46 75c-9 8 -21 15 -35 15c-13 0 -25 -5 -34 -12c-21 -17 -31 -46 -36 -70l-24 5c7 58 22 106 67 144c22 17 52 22 82 22 c25 0 52 -8 70 -24c29 -24 45 -55 58 -87c20 -49 39 -114 49 -165'], + 0xE1C7: [710,8,1261,61,1189,'446 146l105 194c58 102 80 213 96 324l86 39l13 -5c0 -126 33 -250 101 -362c35 -56 69 -113 90 -172c40 65 77 128 111 195c22 42 34 90 34 135s-9 92 -48 124c-13 11 -34 17 -53 17c-26 0 -47 -13 -66 -27l-20 16c10 11 27 28 39 39c37 30 78 47 131 47 c30 0 58 -8 80 -25c36 -31 44 -75 44 -117c0 -38 -17 -75 -35 -110c-27 -60 -62 -119 -98 -175c-54 -83 -98 -167 -136 -255l-79 -31l-10 3c-10 105 -47 207 -99 304c-27 50 -60 128 -71 170c-58 -129 -177 -333 -230 -458l-96 -24l-12 11l-2 132c-2 107 -7 212 -27 306 c-7 32 -17 64 -33 97c-11 23 -29 46 -50 63c-12 10 -27 15 -43 15c-17 0 -33 -7 -45 -17c-20 -16 -32 -47 -38 -69l-24 5c0 50 18 98 61 133c27 23 63 36 102 36c36 0 71 -12 98 -33c43 -36 62 -86 77 -135c22 -75 31 -189 33 -266l4 -127'], + 0xE1C8: [712,11,931,61,860,'816 169l29 -4c-13 -50 -31 -99 -74 -135c-31 -26 -72 -39 -116 -39c-35 0 -71 5 -95 26c-29 24 -50 55 -65 87c-20 41 -38 99 -46 144c-18 -46 -43 -97 -70 -137c-20 -26 -39 -51 -65 -72c-36 -31 -85 -50 -138 -50c-32 0 -63 9 -85 27c-17 14 -27 34 -27 54 c0 17 12 31 26 43c9 9 23 14 37 14c16 0 32 -2 43 -12c14 -11 18 -30 20 -47c3 -14 10 -33 30 -33c25 0 46 11 63 25c35 29 60 64 83 101c29 48 49 99 67 151c-10 73 -23 145 -48 216c-10 25 -19 49 -33 73c-11 17 -21 33 -38 46c-18 15 -43 23 -69 23c-14 0 -27 -5 -38 -14 c-11 -10 -18 -24 -18 -38c0 -9 0 -18 1 -27c2 -11 7 -21 7 -32c0 -12 -8 -24 -18 -33c-14 -11 -31 -22 -52 -22c-19 0 -35 10 -48 20c-14 12 -18 28 -18 44c0 33 23 62 51 85c48 40 117 59 185 59c55 0 111 -11 150 -43c19 -16 31 -38 42 -59c17 -33 34 -83 45 -121 c27 54 69 128 119 169c30 24 67 44 110 44c27 0 55 -2 75 -18c16 -13 22 -32 22 -50s-6 -35 -21 -48c-11 -8 -24 -15 -38 -15c-1 0 -26 0 -39 11c-9 7 -13 17 -15 28c-1 9 -3 18 -11 24c-6 6 -16 8 -25 8c-11 0 -23 -5 -33 -12c-29 -24 -48 -51 -65 -81 c-28 -48 -48 -92 -67 -143c9 -70 23 -139 48 -206c16 -42 34 -86 73 -117c12 -11 32 -14 50 -14s36 5 49 16c28 23 41 53 50 84'], + 0xE1C9: [709,135,791,28,673,'546 655l112 49l15 -13l-11 -383s-7 -144 -29 -214c-17 -56 -47 -106 -95 -145c-63 -53 -148 -84 -237 -84c-38 0 -77 4 -105 27c-22 17 -27 43 -27 68c0 35 14 69 33 100c25 39 58 73 95 104c69 57 154 99 242 134l2 102c-42 -28 -86 -55 -130 -80 c-41 -23 -86 -43 -135 -43c-37 0 -73 13 -98 35c-14 11 -18 28 -20 44c-3 27 -3 75 -3 113v103c0 11 -5 27 -14 35c-6 5 -14 9 -21 9c-20 0 -51 -29 -72 -51l-20 15c21 32 46 69 71 90s56 39 92 39c23 0 45 -7 61 -20c15 -13 19 -31 21 -48c4 -27 4 -81 4 -122 c0 -57 0 -140 30 -164c10 -9 25 -13 39 -13c29 1 56 14 80 28c40 24 80 52 115 80c0 68 5 137 5 205zM539 261c-61 -25 -118 -59 -166 -99c-53 -44 -98 -99 -98 -163c0 -14 0 -29 4 -43c3 -9 8 -19 16 -26c15 -12 36 -20 57 -20c41 0 76 17 104 40c30 24 48 55 61 88 c21 52 22 91 22 223'], + 0xE1CA: [705,14,857,93,796,'568 527l-302 -361c38 9 66 10 98 10c24 0 48 -7 70 -14c35 -11 67 -26 99 -41c44 -21 98 -48 139 -48c18 0 35 5 48 16c13 10 20 21 20 36c0 10 -3 22 -12 29c-9 8 -26 14 -41 16c-19 3 -34 9 -48 20c-12 10 -20 22 -20 35c0 18 8 30 22 42c16 13 37 19 60 19 c24 0 48 -14 65 -28c26 -22 30 -57 30 -87c0 -53 -16 -102 -62 -140c-35 -29 -84 -45 -133 -45c-24 0 -47 7 -68 14c-37 11 -71 25 -105 41c-30 13 -60 25 -92 34c-23 7 -53 15 -76 15c-30 0 -58 -10 -79 -28l-40 -62l-39 8l-8 15l427 514c-13 -7 -30 -7 -46 -7 c-19 0 -39 5 -56 12c-24 9 -48 21 -69 34c-24 15 -45 28 -71 42c-15 8 -35 15 -53 15c-15 0 -30 -7 -41 -16s-16 -22 -16 -34c0 -16 9 -31 23 -41c9 -6 20 -11 27 -17c10 -8 14 -20 14 -31c0 -12 -5 -25 -16 -34c-14 -11 -30 -22 -49 -22c-17 0 -34 7 -47 17 c-21 17 -28 41 -28 64c0 51 30 97 74 133c40 34 75 53 134 53c21 0 41 -8 61 -17c31 -13 58 -30 86 -48c26 -17 77 -37 106 -37c17 0 34 7 46 17c23 19 34 43 43 68l16 3l33 -24l1 -9c-44 -42 -86 -85 -125 -131'], + 0xE1CB: [714,4,937,43,899,'488 713l411 -711l-48 -6l-371 641l-391 -636l-33 -2l-13 11l434 704'], + 0xE1CC: [688,12,937,38,885,'885 684l-422 -696h-17l-408 689l47 7l370 -625l381 629h45'], + 0xE1CD: [730,178,423,28,361,'361 -154v-24c-44 0 -104 0 -131 6c-17 4 -32 12 -43 23c-22 21 -26 50 -29 77c-4 24 -4 70 -4 106c0 69 0 174 -28 202c-9 9 -23 15 -37 18c-20 5 -41 5 -61 5v26c43 0 70 1 96 20c17 14 21 37 25 58c4 35 4 100 4 151c0 35 0 96 1 106c4 28 9 56 28 78 c11 11 24 20 40 25c24 7 93 7 139 7v-24c-33 0 -67 0 -98 -8c-14 -3 -22 -9 -29 -20c-9 -12 -13 -27 -17 -42c-6 -39 -6 -78 -6 -118c0 -41 -1 -82 -8 -123c-4 -23 -8 -50 -22 -70c-19 -26 -47 -45 -66 -51v-1c22 -7 42 -18 59 -38c18 -23 26 -49 30 -76c5 -43 7 -86 7 -129 c0 -40 2 -80 9 -119c3 -14 8 -27 17 -39c8 -11 20 -17 34 -20c26 -6 59 -6 90 -6'], + 0xE1CE: [733,175,423,57,390,'57 -175v24c31 0 64 1 90 6c14 3 26 9 34 20c9 12 14 25 17 39c7 39 9 79 9 119c0 43 2 86 7 129c3 27 12 53 30 76c17 20 37 31 59 38v1c-19 6 -47 25 -66 51c-14 20 -18 47 -22 70c-7 41 -8 82 -8 123c0 40 0 79 -7 118c-3 15 -7 30 -16 42c-7 11 -15 17 -29 20 c-31 7 -65 8 -98 8v24c46 0 115 0 139 -7c16 -5 29 -14 40 -25c19 -22 24 -50 28 -78c1 -10 1 -71 1 -106c0 -51 0 -116 4 -151c4 -21 8 -44 25 -58c26 -19 53 -20 96 -20v-26c-20 0 -41 0 -61 -5c-14 -3 -28 -9 -37 -18c-28 -28 -28 -133 -28 -202c0 -36 0 -82 -4 -106 c-3 -27 -8 -56 -29 -77c-11 -11 -26 -19 -43 -23c-27 -6 -87 -6 -131 -6'], + 0xE1CF: [738,167,302,128,173,'173 -159l-45 -8v897l45 8v-897'], + 0xE1D0: [722,192,628,75,554,'515 -192l-440 896l6 11l35 7l438 -893l-3 -13'], + 0xE1D1: [701,107,643,94,541,'466 166l3 4c15 18 21 40 21 62c0 29 -18 53 -41 73c-24 22 -70 40 -108 56c-53 22 -137 55 -158 81c-17 -18 -28 -45 -28 -69c0 -23 12 -45 30 -61c31 -28 79 -48 122 -66c56 -23 130 -53 159 -80zM94 23l79 27l10 -5c1 -33 11 -66 37 -90c23 -21 63 -36 96 -36 c37 0 62 17 88 40c24 21 30 60 30 89c0 25 -13 47 -33 65c-23 20 -83 44 -127 63c-43 17 -93 38 -121 63c-29 26 -42 63 -42 99c0 46 25 88 54 126c-6 20 -11 40 -11 61c0 47 17 95 56 129c36 31 85 47 136 47c21 0 42 -2 62 -6c15 -4 30 -9 41 -19c17 -14 31 -33 31 -54 c0 -7 -5 -25 -7 -37l-67 -21l-17 11c0 15 -1 31 -5 46c-4 10 -8 21 -16 29c-15 13 -35 21 -56 21c-26 0 -44 -8 -65 -28c-22 -21 -28 -54 -28 -82c0 -25 9 -49 29 -67c6 -6 14 -10 21 -14c33 -17 68 -32 102 -49c43 -22 93 -34 128 -65c25 -22 42 -50 42 -81 c0 -51 -22 -99 -59 -136c15 -21 20 -48 20 -74c0 -48 -20 -94 -59 -128c-38 -34 -90 -54 -144 -54c-59 0 -120 10 -162 47c-25 22 -39 52 -43 83'], + 0xE1D2: [694,15,932,22,863,'723 694l6 -19l-15 -9c-10 -8 -13 -18 -13 -36v-290c0 -70 1 -141 8 -211c2 -24 7 -48 26 -65c7 -6 17 -8 26 -8c15 0 28 6 40 14c15 10 28 20 44 33l18 -17c-28 -30 -60 -55 -96 -75c-23 -13 -48 -26 -76 -26c-15 0 -31 4 -41 14c-9 8 -13 19 -17 30c-4 16 -5 32 -5 49 v158h-250c-36 -87 -100 -164 -138 -198c-32 -28 -73 -48 -117 -48c-26 0 -52 9 -72 25c-20 19 -29 44 -29 70c0 13 6 27 17 37c9 8 21 9 34 9s26 -5 35 -14c5 -4 8 -11 8 -18c0 -4 -1 -11 -3 -16c-2 -8 -3 -16 -3 -24s6 -13 11 -18c8 -7 18 -10 29 -10c19 0 34 7 47 19 c24 21 43 52 59 78s62 137 91 207c28 65 53 126 87 189c22 40 47 81 87 106c26 16 56 31 86 42c35 13 85 19 116 22zM397 279h230v359l-10 11c-20 -4 -42 -15 -59 -30c-35 -31 -56 -73 -75 -114c-35 -73 -61 -150 -86 -226'], + 0xE1D3: [712,1,921,78,803,'615 393l4 -8c48 -8 107 -20 135 -45c31 -27 49 -71 49 -109c0 -51 -35 -100 -75 -136c-76 -66 -196 -96 -302 -96h-305l31 53c56 0 97 13 137 48c26 24 45 58 53 91c13 51 16 112 16 165v296c-46 -4 -119 -25 -162 -63c-21 -18 -40 -41 -40 -68c0 -11 4 -22 6 -33 c2 -10 7 -18 7 -28c0 -12 -1 -24 -10 -32c-10 -9 -25 -15 -40 -15c-8 0 -16 4 -21 10c-17 14 -20 35 -20 55c0 43 24 83 58 114c59 51 140 77 221 88l68 32l12 -7v-23c60 0 119 0 176 -8c37 -5 73 -15 98 -38c25 -22 38 -52 38 -82c0 -44 -19 -78 -54 -109 c-23 -21 -50 -38 -80 -52zM465 386c60 0 120 15 163 53c29 25 43 52 43 88c0 32 -12 63 -37 85c-20 18 -47 27 -73 33c-41 8 -83 10 -124 10v-254c0 -13 18 -15 28 -15zM285 51h186c41 0 88 2 131 9c25 4 47 14 68 34c32 31 50 80 50 125c0 34 -17 75 -44 99 c-18 16 -42 28 -66 34c-33 9 -67 9 -101 9c-25 0 -51 -2 -76 -4c-8 -53 -16 -115 -39 -165c-23 -48 -74 -106 -115 -133'], + 0xE1D4: [697,15,742,110,665,'596 152l52 -47c-10 -19 -23 -38 -40 -54c-55 -49 -134 -66 -211 -66c-71 0 -140 24 -191 69c-34 30 -56 68 -71 109c-18 48 -25 100 -25 151c0 61 8 123 29 181c17 48 46 90 86 125c64 56 151 77 240 77c58 0 120 -8 162 -46c30 -26 38 -60 38 -97 c0 -47 -18 -93 -55 -126s-87 -47 -138 -47c-43 0 -87 6 -119 33c-17 15 -25 36 -25 58c0 13 2 27 13 36c9 9 22 11 36 11c12 0 26 -3 35 -11c11 -11 8 -27 4 -41c-4 -16 -4 -34 9 -46c12 -10 29 -10 43 -10c32 0 60 13 82 32c29 26 37 64 37 99c0 34 -8 65 -35 89 c-28 25 -68 34 -107 34c-60 0 -118 -15 -160 -52c-34 -30 -55 -66 -68 -106c-18 -55 -23 -111 -23 -168c0 -53 6 -106 26 -156c14 -41 38 -81 73 -112s82 -52 131 -52c44 0 86 16 117 43c24 22 36 53 43 83'], + 0xE1D5: [716,-4,999,90,894,'450 716l8 -4v-24c74 0 145 -2 215 -20c53 -14 105 -35 144 -70c61 -53 77 -131 77 -206c0 -103 -47 -202 -128 -275c-84 -73 -194 -113 -311 -113h-329l32 50c65 0 126 25 172 66c23 21 34 51 40 80c11 48 11 98 11 147v309c-69 0 -134 -17 -184 -61 c-17 -15 -27 -40 -27 -61c0 -22 8 -39 8 -61c0 -12 -2 -24 -13 -33c-7 -8 -20 -14 -32 -14c-14 0 -25 8 -30 15c-9 11 -13 29 -13 49c0 42 21 82 54 111c66 58 157 79 238 84zM353 101l-40 -37l4 -10h138c53 0 107 0 158 14c39 11 77 32 106 59c34 29 54 67 69 107 c18 49 24 101 24 153c0 73 -24 147 -83 200c-30 26 -69 41 -109 51c-53 14 -105 18 -162 18v-234c0 -64 -6 -129 -25 -191c-16 -47 -42 -94 -80 -130'], + 0xE1D6: [702,12,749,109,628,'578 154l50 -48c-7 -13 -17 -31 -25 -38c-60 -52 -138 -80 -222 -80c-44 0 -88 4 -130 16c-34 10 -66 25 -92 47c-36 32 -50 77 -50 122c0 54 27 106 70 145c41 35 94 54 150 61l1 10c-32 10 -64 24 -88 45c-31 28 -42 67 -42 106c0 41 20 81 52 110c50 44 112 52 181 52 c42 0 86 -7 117 -34c16 -14 29 -39 29 -63c0 -21 -1 -38 -17 -57c-13 -16 -39 -23 -52 -23s-20 1 -27 8c-4 4 -8 12 -8 20c0 9 5 16 10 24c7 10 14 21 14 37c0 18 -11 32 -22 40c-16 12 -35 17 -62 17c-31 0 -66 -6 -89 -26c-34 -31 -51 -74 -51 -117c0 -35 14 -70 42 -94 c20 -18 46 -27 72 -33c37 -9 76 -12 114 -12v-25c-52 0 -102 -3 -153 -14c-34 -7 -73 -19 -98 -41c-36 -32 -53 -75 -53 -121c0 -45 15 -90 51 -122c39 -34 96 -42 149 -42c50 0 94 23 129 54c22 19 32 45 36 73'], + 0xE1D7: [699,15,795,74,833,'815 692l18 -9l-43 -73c-10 -17 -32 -35 -56 -35c-15 0 -33 4 -49 9c-49 12 -131 34 -145 39l-3 -248h163l-24 -28h-139v-49c0 -44 -5 -88 -20 -129c-13 -34 -27 -61 -59 -92c-60 -59 -151 -92 -243 -92c-43 0 -83 14 -114 41c-17 15 -27 36 -27 56c0 12 4 20 15 29 c9 8 22 12 37 12c17 0 23 -2 42 -38c5 -13 16 -25 26 -34c22 -20 52 -26 82 -26c48 0 92 25 122 56c22 22 35 46 44 73c13 34 15 70 16 105c1 29 2 60 2 88h-183l16 28h167l6 265c-27 6 -62 9 -89 9c-57 0 -108 -11 -149 -48c-22 -19 -43 -54 -43 -70c0 -14 1 -25 4 -39 c4 -11 9 -25 9 -36c0 -12 -3 -21 -12 -30c-9 -7 -19 -14 -32 -14c-15 0 -25 6 -35 14c-13 12 -16 29 -16 46c0 51 32 98 73 134c64 57 141 72 230 72c18 0 53 -2 70 -4l55 25l9 -3v-28c55 -12 109 -22 167 -30c12 -2 28 -4 36 -4c18 0 37 10 46 22'], + 0xE1D8: [697,130,744,112,623,'563 380l60 13v-132c0 -63 -6 -126 -22 -187c-12 -42 -32 -80 -66 -110c-67 -59 -151 -94 -245 -94c-51 0 -104 8 -140 41c-23 20 -38 46 -38 75c0 12 7 25 17 34s26 11 41 11c11 0 21 -3 29 -10c11 -9 14 -24 16 -37c5 -18 10 -36 25 -49c25 -22 61 -28 95 -28 c52 0 97 23 133 55c27 25 44 56 56 88c13 41 22 79 21 122c-1 30 -3 95 -3 96c-47 -30 -104 -45 -161 -45c-71 0 -141 22 -192 66c-50 44 -62 106 -62 166c0 66 29 133 86 174c69 49 147 68 232 68c37 0 104 -7 141 -40c24 -21 34 -46 34 -75c0 -27 -9 -53 -31 -73 c-24 -21 -52 -37 -86 -37c-5 0 -35 6 -52 9l3 17c27 0 52 3 72 21c16 14 17 35 17 54c0 22 -11 40 -29 56c-26 24 -69 34 -98 34c-49 0 -99 -13 -134 -44c-49 -43 -72 -102 -72 -163c0 -56 12 -115 57 -155c33 -29 76 -48 122 -48c51 0 96 14 132 46c14 12 35 52 42 81'], + 0xE1D9: [690,8,1060,68,1017,'524 686l-1 -17l-56 -22l-2 -259h258c6 55 22 108 46 159c18 37 45 74 79 101c33 26 59 42 103 42c54 0 66 -36 66 -48c0 -26 -23 -37 -41 -37c-10 0 -25 6 -31 13c-10 10 -18 17 -35 17c-16 0 -32 -5 -43 -15c-16 -14 -30 -26 -40 -49c-13 -27 -21 -50 -26 -77 c-16 -79 -16 -162 -16 -244c0 -45 1 -90 11 -134c8 -27 16 -54 36 -74c10 -9 21 -12 34 -12c14 0 38 12 49 23c17 16 32 32 46 50l23 -17c-20 -25 -35 -41 -51 -56c-28 -24 -55 -38 -95 -38c-25 0 -49 5 -67 20c-24 22 -41 51 -48 81c-12 44 -13 89 -13 134c0 30 4 82 7 123 h-252c-3 -56 -13 -113 -27 -166c-12 -44 -40 -84 -76 -116c-50 -44 -108 -74 -180 -74c-31 0 -63 4 -87 24c-15 14 -27 32 -27 52c0 10 4 19 12 26s20 10 31 10c13 0 27 0 35 -7c7 -6 12 -14 15 -23c4 -8 10 -19 16 -25c14 -13 35 -15 54 -15c24 0 60 13 84 34 c32 29 49 70 58 109c16 63 20 128 20 192v281c-40 0 -76 -2 -115 -10c-26 -6 -52 -13 -71 -30c-19 -18 -39 -40 -39 -66c0 -13 2 -26 4 -38c4 -14 10 -39 10 -40c0 -10 0 -20 -9 -27c-10 -10 -21 -19 -36 -19c-11 0 -20 7 -27 13c-9 7 -12 17 -15 27c-3 16 -4 31 -4 47 c0 45 32 84 68 115c27 24 63 42 100 50c47 10 86 15 134 15c44 0 92 -1 131 -3'], + 0xE1DA: [685,14,547,62,497,'497 679l-16 -20l-53 -10c0 -117 -8 -228 -8 -344c0 -94 -26 -192 -103 -260c-37 -33 -86 -59 -140 -59c-32 0 -65 7 -87 27c-17 15 -28 35 -28 56c0 11 0 26 7 33c8 7 21 12 32 12c12 0 22 -8 29 -16c4 -2 8 -18 11 -28c3 -12 9 -24 19 -33s26 -9 40 -9 c32 0 58 16 81 35c27 24 42 57 51 89c12 47 17 97 17 146c0 119 7 232 7 351c-37 0 -74 -3 -109 -12c-27 -7 -53 -16 -72 -34c-16 -13 -28 -31 -28 -51c0 -7 2 -15 4 -22c3 -12 10 -29 10 -35c0 -12 -6 -23 -16 -32c-7 -5 -15 -8 -24 -8c-10 0 -18 4 -24 10 c-16 14 -21 34 -21 53c0 37 16 72 45 98c31 26 70 41 111 51c56 13 112 18 170 18c31 0 63 -5 95 -6'], + 0xE1DB: [692,129,633,63,560,'416 350v300c-60 -7 -119 -17 -162 -55c-29 -25 -39 -60 -39 -95c0 -21 0 -48 -13 -60c-9 -8 -20 -17 -31 -17c-12 0 -24 5 -32 13c-12 11 -14 26 -14 41c0 45 28 84 63 116c79 70 189 99 301 99h67l4 -18l-71 -23v-23v-407c0 -53 -6 -105 -23 -156 c-14 -39 -34 -76 -67 -105c-29 -26 -62 -49 -98 -66c-30 -14 -62 -23 -96 -23c-37 0 -77 5 -104 29c-25 22 -38 52 -38 84c0 43 14 86 37 125c27 47 64 89 107 127c59 52 131 88 209 114zM412 316c-62 -22 -121 -52 -169 -94c-61 -55 -105 -125 -105 -203 c0 -29 3 -60 26 -81c20 -17 48 -23 75 -23c42 0 79 19 108 45c26 23 41 54 51 85c14 43 18 87 18 131c0 47 -4 93 -4 140'], + 0xE1DC: [690,12,993,64,928,'519 686l-4 -17l-52 -17l-1 -297h19c56 69 171 203 171 204c25 29 54 57 83 83c18 17 32 25 54 36c17 9 42 12 61 12c23 0 41 -5 57 -19c12 -11 21 -20 21 -36c0 -13 -4 -26 -16 -36c-10 -9 -23 -16 -38 -16c-18 0 -27 13 -31 25c-3 14 -19 23 -35 23 c-22 0 -42 -12 -58 -25c-26 -21 -48 -39 -67 -63c-44 -53 -133 -160 -133 -161s-4 -5 -6 -7c1 -6 2 -17 2 -18s70 -116 105 -175c26 -44 59 -84 99 -119c13 -12 30 -21 48 -21c19 0 38 7 51 19c15 13 24 27 33 44l20 -16c-10 -23 -22 -44 -42 -62c-24 -22 -57 -39 -92 -39 c-34 0 -68 9 -92 31c-20 17 -34 38 -46 60c0 1 -95 166 -142 247h-31c0 -97 -28 -195 -106 -264c-45 -40 -103 -67 -167 -67c-35 0 -73 7 -98 30c-14 13 -22 29 -22 47c0 10 3 20 11 28c8 7 19 11 31 11c10 0 22 0 28 -4c8 -7 15 -15 20 -23c7 -10 14 -20 23 -29 c13 -11 29 -17 47 -17c36 0 68 17 93 39s39 48 50 79c13 39 18 81 18 122v374c-68 0 -135 -15 -187 -56c-18 -14 -30 -33 -30 -54c0 -12 1 -23 3 -35s7 -23 7 -34c0 -13 0 -27 -10 -36c-9 -9 -22 -14 -35 -14c-12 0 -23 4 -32 12c-17 15 -17 39 -17 60c0 40 21 80 54 106 c82 63 183 87 291 87c2 0 60 0 90 -2'], + 0xE1DD: [685,7,869,60,724,'376 134c28 -17 99 -43 134 -51c24 -6 49 -11 74 -11c37 0 61 12 82 39c23 28 30 51 30 89c0 17 -3 41 -6 55l29 5c4 -17 5 -47 5 -58c0 -56 -6 -113 -50 -154c-32 -30 -61 -55 -110 -55c-27 0 -78 4 -104 13c-44 15 -65 24 -95 45c-75 43 -132 64 -162 64 c-26 0 -64 -16 -76 -35c-20 -28 -34 -59 -44 -86l-23 17c4 33 17 66 43 105c12 17 39 34 52 43c17 10 39 26 55 40c35 31 62 134 72 204c7 48 14 93 36 137c17 34 44 68 75 94c43 36 103 51 162 51c35 0 67 -6 89 -26c16 -13 25 -32 25 -52c0 -60 -52 -61 -52 -61 c-13 0 -26 4 -35 12c-5 5 -6 21 -6 32c0 14 -10 34 -21 45c-14 12 -27 16 -49 16c-24 0 -47 -9 -65 -26c-21 -17 -30 -28 -38 -51c-12 -35 -25 -101 -33 -146c-7 -42 -16 -78 -35 -125c-9 -29 -28 -58 -48 -78c-21 -22 -43 -40 -61 -49l2 -6c92 0 148 -36 148 -36'], + 0xE1DE: [699,13,1171,62,1117,'930 595v-325c0 -53 4 -106 14 -158c6 -29 9 -46 32 -67c8 -6 17 -10 28 -10c18 0 35 8 47 20c17 14 32 31 44 49l22 -15c-16 -21 -35 -40 -55 -58c-25 -22 -55 -44 -91 -44c-27 0 -52 10 -70 26c-28 25 -33 49 -37 84c-4 38 -4 181 -4 271c0 70 -4 140 -1 210 c-70 -63 -116 -143 -151 -225c-48 -107 -75 -214 -92 -328l-49 -35l-11 7c-16 123 -39 239 -82 357c-16 43 -34 86 -59 127c-18 31 -39 61 -68 86v-226c0 -65 -6 -130 -26 -193c-13 -46 -33 -90 -72 -124c-25 -22 -58 -34 -93 -34c-28 0 -54 10 -74 27c-11 11 -20 25 -20 41 c0 12 5 21 14 30c8 7 19 11 31 11c19 0 34 -10 42 -25c9 -17 27 -28 47 -28c19 0 36 12 50 24c23 21 35 50 44 79c11 41 14 83 14 125v330c-22 24 -55 40 -90 40c-26 0 -50 -11 -68 -27c-26 -22 -36 -53 -42 -84l-23 -1c4 26 10 51 20 75c8 18 18 35 33 49 c29 26 69 43 111 43c48 0 93 -19 127 -50h4c62 -55 98 -122 133 -194c42 -88 71 -174 93 -267l6 -2c26 90 59 168 107 250c38 68 84 133 145 186c46 40 104 76 170 76c19 0 39 -5 54 -18c8 -7 15 -16 15 -26c0 -9 -1 -19 -9 -25c-10 -10 -24 -16 -39 -16c-8 0 -18 0 -22 4 c-6 5 -12 10 -15 16c-2 5 -3 11 -8 15c-7 6 -16 11 -26 11s-20 -4 -28 -10c-14 -13 -22 -37 -22 -54'], + 0xE1DF: [706,7,936,63,937,'737 124l8 12c-7 112 -10 229 -10 344c0 41 5 83 15 123c5 25 13 52 35 71c23 21 56 32 90 32c17 0 33 -5 45 -15c10 -9 17 -22 17 -35c0 -8 -1 -18 -9 -24c-12 -6 -35 -16 -36 -16c-9 0 -20 0 -24 4c-8 6 -13 13 -17 21c-3 10 -11 18 -22 18c-9 0 -18 -2 -24 -7 c-17 -15 -20 -36 -23 -56c-3 -25 -4 -104 -4 -156c-2 -142 0 -275 2 -417l-54 -30c-110 190 -232 388 -374 542c0 -51 -2 -103 -6 -157c-4 -70 -11 -178 -19 -209c-12 -46 -28 -86 -69 -125c-29 -28 -68 -48 -112 -48c-22 0 -46 6 -62 21c-12 10 -21 23 -21 38 c0 14 8 27 19 37c7 6 15 10 25 10c11 0 22 -2 30 -9c2 -2 10 -14 16 -20c7 -10 19 -14 32 -14c27 0 48 12 66 28c25 23 33 53 41 84c11 50 14 101 14 152v259c-20 17 -40 33 -64 45c-17 9 -34 16 -53 16c-24 0 -47 -6 -63 -21c-25 -21 -33 -55 -38 -85l-25 -5 c0 49 9 98 48 133c30 26 70 36 111 36c53 0 98 -30 134 -63c50 -43 89 -95 127 -147c57 -76 171 -244 254 -367'], + 0xE1E0: [686,18,860,111,746,'295 659l16 -12c-88 -79 -123 -188 -123 -297c0 -56 6 -112 23 -165c11 -39 28 -79 61 -107c39 -36 91 -57 148 -57c55 0 108 17 148 52c36 33 57 74 72 118c19 59 27 120 27 181c0 52 0 105 -15 155c-10 36 -30 71 -59 97c-21 18 -50 29 -78 29c-35 0 -69 -9 -94 -31 c-19 -17 -34 -40 -34 -64c0 -29 21 -50 44 -70c10 -9 12 -22 12 -35c0 -21 -22 -33 -45 -33c-14 0 -29 5 -39 15c-22 19 -26 45 -26 71c0 51 19 98 60 134c35 32 82 46 131 46c53 0 104 -20 140 -52c31 -28 54 -65 65 -102c17 -52 17 -105 17 -158c0 -63 -10 -125 -31 -184 c-17 -48 -43 -92 -84 -128c-63 -56 -153 -80 -242 -80c-70 0 -133 28 -182 72c-34 29 -56 68 -71 108c-18 48 -25 99 -25 149c0 115 38 229 130 311c16 15 35 26 54 37'], + 0xE1E1: [710,11,807,81,752,'449 320c61 0 126 10 170 49c40 36 56 88 56 139c0 40 -18 78 -50 107c-19 16 -44 24 -70 31c-35 9 -70 9 -106 9v-335zM378 685l65 25l9 -3v-20c55 0 104 -2 156 -15c39 -10 72 -21 100 -46c33 -29 44 -71 44 -111c0 -55 -23 -109 -67 -149c-62 -54 -149 -76 -236 -76 c0 -20 -2 -40 -3 -60c-7 -71 -16 -138 -73 -188c-38 -34 -87 -53 -140 -53c-35 0 -70 11 -95 33c-18 16 -25 39 -25 62c0 14 6 26 17 36c8 7 21 10 33 10c10 0 22 -3 28 -9c15 -13 15 -29 15 -47c0 -15 4 -32 17 -43c9 -8 24 -10 37 -10c29 0 48 14 67 31c22 19 32 48 38 73 c10 39 13 79 13 120v410c-28 0 -134 -1 -179 -41c-22 -21 -46 -47 -46 -77c0 -11 5 -27 8 -41c3 -9 9 -18 9 -27c0 -12 -2 -24 -11 -33c-9 -7 -21 -13 -33 -13c-10 0 -20 4 -28 11c-17 15 -17 38 -17 59c0 48 28 93 68 126c57 48 143 66 229 66'], + 0xE1E2: [694,24,810,112,727,'355 186l-10 -21c-53 0 -106 15 -143 49c-59 52 -90 122 -90 195c0 83 27 160 94 219c60 53 146 66 230 66c71 0 142 -17 193 -62c28 -24 45 -54 55 -87c15 -44 20 -85 20 -131c0 -98 -32 -196 -111 -266c-37 -32 -79 -56 -128 -69c8 -5 17 -8 35 -14 c14 -4 104 -23 119 -23c18 0 31 11 44 22c21 18 32 39 43 62l21 -8c-12 -34 -24 -68 -53 -97c-17 -17 -40 -32 -66 -32c-23 0 -46 0 -67 5l-217 42c-24 4 -48 7 -72 7s-53 -1 -72 -16c-12 -9 -25 -33 -33 -51l-23 9c12 32 31 69 55 90c26 23 64 30 102 30c17 0 37 0 52 -2 c23 -3 51 -6 72 -6c53 0 102 22 139 55c32 28 47 65 59 102c17 52 21 106 21 160c0 44 -2 84 -16 127c-9 31 -26 59 -52 82c-33 30 -83 44 -131 44c-55 0 -114 -11 -154 -47c-30 -25 -49 -56 -61 -91c-16 -42 -22 -83 -22 -128c0 -63 17 -128 69 -174c26 -23 62 -33 98 -41'], + 0xE1E3: [712,6,877,68,834,'463 655l-4 -316c16 -3 32 -3 48 -3c45 0 92 15 124 44c41 35 53 86 53 135c0 41 -12 81 -45 110c-16 14 -40 19 -61 23c-40 6 -76 7 -115 7zM610 83l-107 221l-44 4c-9 -51 -17 -101 -37 -149c-14 -34 -36 -68 -66 -93c-47 -43 -105 -71 -172 -71c-31 0 -63 4 -85 23 c-16 15 -31 31 -31 52c0 11 5 23 14 31c8 7 19 11 30 11s18 -4 25 -10c9 -8 17 -17 23 -26c5 -9 12 -19 19 -25c12 -11 32 -12 50 -12c36 0 65 15 91 38c25 22 38 51 47 81c12 42 17 86 17 129c0 122 1 240 1 363c-68 0 -130 -11 -179 -54c-18 -15 -36 -36 -36 -58 c0 -10 2 -22 5 -33c2 -12 7 -23 7 -35c0 -11 -6 -22 -15 -31c-9 -7 -20 -14 -32 -14c-11 0 -19 6 -26 13c-15 15 -19 32 -19 52c0 43 25 83 59 114c65 57 163 74 236 80l71 28l10 -4v-21c55 0 103 -1 157 -9c34 -5 69 -14 94 -36c34 -30 47 -74 47 -116 c0 -50 -14 -101 -55 -137c-37 -33 -88 -61 -136 -71l47 -99c25 -55 55 -107 103 -149c9 -9 24 -14 38 -14c12 0 23 7 30 14c13 12 19 21 24 36l19 -12c-10 -29 -23 -51 -47 -72c-17 -15 -37 -28 -62 -28c-21 0 -41 2 -56 14c-24 22 -46 47 -59 75'], + 0xE1E4: [702,12,674,63,575,'388 514l2 16c20 0 44 5 58 19c13 13 17 28 17 46s-9 33 -25 46c-23 21 -55 28 -88 28c-38 0 -75 -9 -102 -34c-21 -19 -35 -39 -35 -66c0 -37 15 -71 44 -97c35 -31 79 -51 125 -69c50 -21 101 -44 141 -79c34 -30 50 -72 50 -115c0 -51 -19 -103 -60 -140 c-63 -55 -145 -81 -232 -81c-58 0 -137 13 -177 49c-31 27 -43 65 -43 103c0 41 20 83 53 112c30 27 68 34 108 34c28 0 61 -4 80 -22c12 -10 20 -22 20 -35c0 -8 0 -17 -7 -23c-9 -8 -20 -15 -33 -15c-10 0 -20 3 -27 10c-7 5 -9 13 -11 21c-3 9 -8 19 -16 26 c-7 6 -24 6 -34 6c-18 0 -26 -5 -38 -16c-19 -17 -30 -40 -30 -63c0 -41 15 -81 48 -110c29 -26 84 -41 127 -41c51 0 107 14 143 46c32 29 46 64 46 104c0 37 -4 77 -35 105c-34 29 -71 53 -115 70c-31 11 -61 24 -90 39c-20 10 -40 22 -57 36c-37 33 -53 78 -53 124 c0 39 13 72 44 99c48 43 113 55 181 55c52 0 106 -5 144 -38c22 -19 27 -41 27 -68c0 -18 -5 -37 -20 -51c-24 -21 -54 -36 -88 -36c-14 0 -28 2 -42 5'], + 0xE1E5: [693,6,724,60,777,'754 693l23 -11c-18 -32 -36 -56 -62 -83c-21 -21 -51 -32 -82 -32c-26 0 -88 11 -132 19v-269c0 -56 -1 -112 -18 -166c-12 -40 -34 -79 -68 -108c-37 -33 -83 -49 -137 -49c-32 0 -66 6 -90 26c-19 18 -24 41 -24 66c0 12 7 24 17 33c9 8 21 14 33 14 c14 0 26 -7 35 -15c10 -9 8 -23 7 -34c-2 -17 -2 -35 11 -47c10 -9 25 -10 40 -10c26 0 46 6 65 22c22 20 34 48 40 75c11 43 13 88 13 132c0 115 -2 228 -2 343c-59 15 -137 35 -181 35c-29 0 -63 -10 -84 -29c-22 -19 -30 -35 -30 -61c0 -9 5 -16 9 -23 c8 -11 17 -21 27 -29c7 -6 9 -15 9 -23c0 -12 -8 -21 -17 -29s-19 -16 -32 -16c-15 0 -27 9 -38 18c-18 16 -26 39 -26 62c0 48 30 86 67 119c46 41 112 61 176 61c39 0 114 -12 171 -25c62 -13 133 -28 189 -28c22 0 43 10 58 24c15 13 23 23 33 38'], + 0xE1E6: [699,16,868,59,812,'789 113l23 -14c-15 -28 -31 -54 -53 -74c-24 -20 -55 -34 -87 -34c-21 0 -41 6 -56 19c-30 27 -43 61 -52 97c-6 -7 -29 -28 -44 -41c-53 -47 -122 -82 -199 -82c-41 0 -80 17 -109 43c-15 12 -22 29 -27 46c-7 23 -9 48 -9 72c0 63 11 126 26 188c14 64 27 129 27 195 c0 35 -1 67 -31 93c-9 9 -26 15 -39 15s-27 -6 -38 -14c-21 -20 -28 -40 -28 -68c0 -19 3 -44 6 -63l-33 -9c-3 24 -7 53 -7 78c0 40 12 74 44 103c23 20 56 29 87 29c29 0 58 -6 78 -24c16 -14 23 -32 29 -50c7 -27 10 -48 10 -76c0 -70 -15 -139 -31 -207 c-11 -48 -22 -99 -22 -145c0 -28 3 -56 12 -84c6 -20 16 -39 32 -54c19 -17 45 -25 71 -25c53 0 96 29 132 61c20 19 41 38 59 58c0 159 18 324 37 485c44 26 92 50 141 68l20 -11c-13 -6 -26 -13 -37 -22c-15 -13 -26 -29 -35 -47c-11 -23 -19 -47 -24 -71 c-23 -101 -29 -204 -29 -306c0 -39 3 -78 13 -117c6 -24 14 -49 35 -67c8 -8 18 -11 30 -11c16 0 27 4 39 14c15 14 28 34 39 52'], + 0xE1E7: [709,9,812,62,752,'434 114l139 202c29 40 57 83 76 128c15 36 23 73 24 111c0 27 -5 55 -26 75c-17 14 -39 23 -62 23c-21 0 -41 -1 -56 -14c-26 -23 -38 -54 -45 -86l-26 3c8 42 24 84 58 115c28 24 65 38 105 38c35 0 69 -9 94 -31c26 -22 37 -53 37 -84c0 -41 -6 -68 -25 -105 c-35 -68 -91 -147 -137 -211c-62 -88 -120 -173 -166 -259l-57 -28l-8 9c-7 104 -27 211 -49 317c-13 69 -33 136 -53 204c-10 34 -25 74 -55 102c-9 8 -21 14 -34 14c-16 0 -31 -5 -42 -15c-18 -15 -32 -58 -37 -89l-27 3c3 29 13 58 24 86c8 19 18 39 35 54 c22 19 52 28 83 28c26 0 44 -10 62 -26c20 -18 32 -41 41 -65c16 -39 28 -79 36 -120l78 -382'], + 0xE1E8: [702,5,1179,65,1119,'393 127l91 163c40 71 76 142 103 217c19 54 34 110 34 166l65 29l14 -8c-7 -29 -12 -54 -12 -83c0 -95 35 -186 80 -272c37 -70 68 -143 90 -218c50 79 103 159 140 243c24 53 41 107 41 164c0 21 -1 41 -7 61c-4 14 -10 27 -21 37c-17 15 -36 23 -61 23 c-32 0 -55 -15 -74 -36l-21 11c9 11 18 20 28 30c33 29 72 48 119 48c30 0 55 -7 75 -26c31 -27 42 -65 42 -103c0 -40 -16 -78 -31 -116c-28 -62 -60 -122 -95 -181c-50 -84 -94 -162 -134 -251l-52 -23l-10 5c-8 99 -41 187 -87 277c-33 66 -63 140 -86 208 c-39 -71 -81 -150 -114 -224c-37 -85 -81 -163 -114 -241c-1 -3 -12 -11 -16 -13c-16 -7 -33 -12 -48 -19l-14 8c0 138 -6 272 -32 408c-8 43 -18 85 -35 126c-12 28 -27 55 -51 77c-12 10 -25 21 -44 21c-12 0 -25 -4 -33 -13c-24 -24 -31 -65 -31 -87l-27 2 c0 51 15 105 56 142c21 18 49 22 77 22c31 0 51 -14 71 -32c23 -20 38 -44 48 -70c13 -36 26 -81 34 -120c25 -118 30 -232 31 -352h11'], + 0xE1E9: [706,9,871,88,814,'755 161l25 -4c0 -50 -25 -92 -64 -127c-26 -23 -61 -39 -99 -39c-30 0 -62 6 -83 25c-23 21 -35 48 -46 75c-21 44 -36 91 -48 137c-27 -67 -59 -134 -116 -185c-38 -33 -85 -52 -138 -52c-27 0 -54 7 -74 24c-15 14 -24 32 -24 52c0 11 1 22 10 30s20 16 32 16 s22 -3 30 -10c10 -8 16 -20 18 -32c2 -9 6 -16 13 -23c9 -8 22 -11 34 -11c29 0 52 11 72 28c30 27 52 59 71 93c27 47 48 98 66 148c-11 79 -22 152 -47 229c-8 25 -18 50 -31 73c-7 17 -21 33 -36 45c-16 15 -39 17 -61 17c-26 0 -46 -5 -65 -20c-13 -10 -19 -21 -19 -35 c0 -10 0 -19 2 -28c3 -13 12 -25 12 -39c0 -9 -10 -22 -18 -29s-16 -9 -28 -9c-11 0 -19 5 -27 11c-15 13 -15 34 -15 52c0 32 18 63 44 86c40 35 88 47 144 47c39 0 81 -6 110 -32c25 -22 38 -53 49 -84c18 -48 30 -100 38 -148c5 25 41 88 64 124c20 32 43 65 73 91 c27 25 63 42 104 42c25 0 51 -6 69 -22c11 -10 18 -23 18 -37c0 -11 -2 -22 -11 -30s-21 -18 -33 -18c-8 0 -16 1 -21 6s-8 11 -12 17c-2 6 -8 11 -13 16c-9 9 -23 13 -36 13c-21 0 -40 -8 -54 -20c-36 -31 -57 -73 -78 -113c-27 -55 -47 -108 -61 -167 c12 -64 20 -118 43 -180c14 -39 37 -78 69 -108c14 -11 32 -14 50 -14c20 0 37 12 51 24c29 26 43 59 47 95'], + 0xE1EA: [702,136,734,59,598,'247 615l-7 -169c0 -21 1 -43 7 -64c3 -13 8 -27 19 -37c17 -14 38 -24 62 -24s45 8 66 18c28 14 52 32 74 51s48 44 51 72l2 208l63 32l14 -11c-4 -147 -9 -307 -9 -438c0 -116 -34 -240 -127 -323c-45 -39 -102 -66 -167 -66c-30 0 -56 5 -78 25c-20 18 -24 41 -24 67 c0 32 9 62 27 90c25 39 49 73 84 104c41 36 143 96 215 135v109c-69 -61 -143 -115 -221 -115c-32 -1 -81 17 -98 31c-22 20 -33 64 -33 100l3 140c0 18 2 35 1 53c0 5 0 10 -4 13c-5 4 -11 6 -17 6c-20 0 -48 -25 -69 -43l-22 9c16 23 34 47 53 64c24 21 50 41 84 41 c12 0 25 -5 34 -13c17 -15 17 -43 17 -65zM518 244c-62 -22 -125 -60 -173 -102c-27 -24 -51 -51 -69 -81c-13 -25 -24 -52 -24 -80c0 -22 0 -42 17 -57c17 -16 41 -23 66 -23c33 0 60 12 82 32c37 32 59 75 73 119c19 60 28 130 28 192'], + 0xE1EB: [696,11,803,97,745,'433 108l126 -60c17 -8 36 -16 54 -16c21 0 39 9 54 23c9 7 11 21 11 32c0 14 -9 28 -19 38c-11 11 -18 24 -18 36c0 10 7 19 16 26c7 7 20 9 31 9c13 0 24 -5 33 -13c15 -13 24 -31 24 -49c0 -36 -21 -68 -50 -94c-37 -33 -85 -51 -137 -51c-23 0 -47 5 -67 15l-81 38 c-31 15 -63 28 -94 39c-22 6 -43 13 -66 13c-26 0 -52 -13 -71 -30c-7 -6 -37 -59 -41 -64l-34 6l-7 20l429 529c-7 -2 -20 -2 -31 -2c-28 0 -84 30 -123 54c-28 17 -58 35 -92 35c-24 0 -50 -4 -67 -19c-17 -14 -28 -31 -28 -52c0 -10 2 -27 12 -38c11 -13 17 -32 17 -35 c0 -9 -2 -19 -9 -26c-10 -8 -21 -15 -35 -15s-27 5 -36 14c-14 12 -14 32 -14 50c0 49 33 87 71 122c34 29 73 53 120 53c18 0 39 -6 56 -12c24 -10 47 -22 70 -36c27 -16 69 -39 81 -45c11 -5 23 -9 36 -9c8 0 19 8 26 15s13 16 18 26l14 29h18l22 -22 c-173 -181 -287 -347 -433 -521c30 12 62 20 96 20c41 0 81 -16 118 -33'], + 0xE1EC: [502,11,667,74,576,'351 502c52 -13 102 -32 140 -64c53 -43 85 -102 85 -164c0 -77 -44 -147 -109 -201c-30 -25 -63 -46 -99 -62c-29 -13 -61 -22 -94 -22c-49 0 -95 18 -130 46c-48 40 -70 96 -70 152c0 85 40 166 112 225c47 40 105 68 165 90zM270 424c-31 -15 -44 -29 -58 -51 c-24 -34 -35 -73 -35 -113c0 -58 27 -114 77 -155c25 -21 57 -34 92 -34c30 0 64 3 86 21c15 13 23 29 29 46c8 22 8 50 8 73c0 58 -35 111 -84 152c-31 26 -74 51 -115 61'], + 0xE1ED: [489,0,667,87,591,'131 451l-2 31l294 7c-11 -82 -17 -164 -17 -247v-180c0 -10 10 -19 22 -20c18 -1 36 -1 54 -1l109 1v-42h-504v48c54 0 109 -2 164 -3c16 0 28 10 28 23c6 89 13 184 13 268c0 22 -1 44 -9 64c-9 22 -34 34 -59 38'], + 0xE1EE: [491,0,667,77,607,'580 1l-500 -1l-3 25l131 110c38 32 74 67 101 107c20 28 36 59 36 92c0 24 -6 49 -27 66c-16 13 -36 21 -58 21c-39 0 -89 -22 -131 -41l-18 28c40 23 82 45 127 62c31 11 63 21 97 21c37 0 74 -5 100 -27c25 -20 36 -49 36 -77c0 -25 -13 -49 -27 -71 c-20 -31 -46 -60 -74 -86c-45 -42 -133 -123 -134 -123c-1 -1 -2 -4 -2 -6c3 -5 11 -5 17 -5c116 0 229 5 342 10l14 -4'], + 0xE1EF: [488,193,667,69,565,'352 212l4 -11c58 -2 117 -17 158 -52c35 -28 51 -68 51 -108c0 -59 -25 -117 -76 -160c-59 -49 -140 -74 -223 -74c-74 0 -138 22 -197 56l16 25c45 -22 96 -37 149 -37c49 0 98 13 133 42c39 32 57 78 57 124c0 38 -7 79 -41 107c-22 17 -50 25 -80 31 c-43 9 -86 11 -131 11v38c64 0 131 10 178 48c26 22 36 52 36 82c0 27 -15 53 -39 72c-18 15 -45 17 -69 17c-44 0 -82 -20 -118 -40l-19 18c56 48 123 87 204 87c44 0 89 -10 121 -36c25 -21 41 -50 41 -80c0 -38 -18 -75 -50 -102c-30 -25 -65 -45 -105 -58'], + 0xE1F0: [495,198,667,45,608,'491 -158l-106 -40l-11 10l6 187h-335v29l357 452l85 15l10 -13c-6 -80 -10 -248 -10 -425c59 0 88 1 121 4l-19 -62h-102c0 -51 1 -106 4 -157zM144 57h235v302l-5 3c-60 -55 -156 -185 -230 -294v-11'], + 0xE1F1: [481,191,667,50,560,'558 481l-30 -93h-335c-9 0 -13 -9 -13 -18v-146l10 -5c41 16 85 23 130 23c64 0 131 -10 178 -49c43 -36 62 -85 62 -136c0 -62 -19 -126 -73 -171c-59 -50 -141 -77 -225 -77c-76 0 -149 17 -212 53l18 26c42 -23 88 -40 138 -40c51 0 102 14 138 44 c48 40 66 97 66 152c0 44 -11 90 -49 121c-25 21 -61 28 -95 28c-42 0 -80 -18 -110 -41l-27 10v319h429'], + 0xE1F2: [704,12,667,81,591,'580 625l-26 -2c-26 15 -58 23 -90 23c-59 0 -112 -24 -153 -58c-35 -30 -59 -69 -75 -109c-19 -47 -28 -99 -30 -148l9 -3c55 31 116 58 182 58c47 0 94 -11 128 -39c40 -35 64 -82 64 -131c0 -58 -34 -111 -83 -152c-56 -46 -129 -76 -208 -76c-50 0 -95 20 -129 48 c-69 57 -88 138 -88 217c0 126 57 248 164 338c79 64 178 113 290 113c4 0 37 -5 56 -7zM208 286c1 -45 8 -90 23 -133c11 -31 27 -62 55 -85c20 -18 48 -29 79 -29c29 0 62 8 83 25c31 26 43 66 43 101c0 45 -20 89 -58 121c-29 24 -67 36 -107 36c-42 0 -77 -11 -118 -36'], + 0xE1F3: [479,198,667,87,635,'204 -198h-112l-5 23l395 533c2 3 3 5 3 8c0 4 -2 9 -10 9c-1 0 -248 -6 -372 -10l-14 11l31 103h515v-23c-171 -205 -312 -426 -431 -654'], + 0xE1F4: [715,5,667,78,585,'289 336c-25 -11 -49 -26 -65 -46c-24 -29 -30 -61 -30 -94c0 -47 23 -93 62 -126c23 -18 53 -32 84 -32c33 0 68 5 92 25c28 24 40 61 40 94c0 40 -27 76 -61 104c-32 27 -82 55 -122 75zM407 401c36 -20 84 -48 105 -66c42 -34 73 -79 73 -129c0 -54 -29 -104 -75 -142 c-57 -48 -137 -69 -219 -69c-57 0 -114 13 -155 46c-38 32 -58 75 -58 120c0 46 20 92 60 125c35 29 78 52 124 71c-41 28 -74 54 -102 90c-22 26 -38 55 -38 86c0 41 28 76 62 105c44 36 100 58 158 77c37 -2 72 -7 108 -16c25 -6 49 -14 68 -30c26 -22 42 -52 42 -83 c0 -36 -16 -69 -39 -99c-29 -35 -71 -63 -114 -86zM372 424c49 28 74 79 74 127c0 29 -10 58 -36 79c-26 23 -62 40 -97 46c-22 -9 -44 -26 -57 -41c-15 -18 -22 -43 -22 -65s18 -46 36 -63c29 -31 62 -57 102 -83'], + 0xE1F5: [488,195,667,62,592,'430 104c-30 -21 -77 -42 -109 -51c-19 -5 -50 -10 -70 -10c-48 0 -87 24 -121 52c-45 38 -68 90 -68 143c0 57 18 115 67 156c32 27 117 65 179 94c71 0 142 -14 192 -56c66 -55 92 -134 92 -211c0 -113 -32 -229 -130 -311c-90 -75 -217 -105 -343 -105v31 c77 5 156 19 212 66c61 50 99 124 106 196zM423 130c10 9 16 21 19 33c6 16 7 33 7 50c0 34 -4 69 -16 101c-10 26 -25 56 -48 76c-25 20 -57 45 -90 56c-31 -13 -45 -20 -63 -36c-14 -12 -30 -40 -36 -56c-7 -23 -10 -46 -10 -70c0 -54 32 -105 79 -143 c22 -19 56 -26 87 -26c25 0 52 0 71 15'], + 0xE1F6: [465,-33,999,122,877,'132 465h745l-10 -39h-745zM132 269h745l-10 -39h-745zM132 72h745l-10 -39h-745'], + 0xE1F7: [648,152,973,121,824,'804 -152l-654 262l-4 13l12 25l16 3l646 -265l4 -12l-11 -20zM824 622l-2 -9l-590 -241v-12l586 -241l5 -10l-13 -23l-11 -5l-678 280v12l680 275l12 -3'], + 0xE1F8: [648,153,973,146,850,'804 150l9 -6l11 -20l-4 -12l-646 -265l-16 3l-12 25l4 13zM150 611l-3 10l11 24l12 3l680 -275v-12l-678 -280l-11 5l-10 24l5 9l586 243v9'], + 0xE1F9: [631,28,855,175,669,'393 465l17 -9c-16 -12 -46 -35 -48 -35c-11 -9 -15 -21 -18 -33c-10 -38 -14 -77 -14 -116c0 -32 3 -63 6 -94c2 -17 12 -34 28 -47c32 -30 74 -52 117 -73c31 42 40 91 46 138c6 42 8 83 8 125c0 36 -2 71 -4 107c-75 55 -157 105 -254 132c-14 4 -29 5 -43 5 c-15 0 -32 -5 -48 -11l-11 19c47 21 104 47 163 58c54 -6 105 -23 152 -44c63 -28 120 -63 175 -101c2 -28 4 -56 4 -85c0 -101 -16 -201 -53 -299c-79 -45 -181 -103 -239 -130c-59 36 -114 73 -166 113c-5 44 -7 89 -7 133c0 49 3 97 11 146c53 39 115 71 178 101'], + 0xE1FA: [691,242,642,146,554,'554 655l-119 -100c-26 17 -68 43 -85 43s-35 -2 -46 -12c-13 -9 -23 -21 -23 -35c0 -15 7 -29 15 -42c16 -23 67 -86 85 -104h150v-7l-18 -39h-133c0 -117 0 -236 -21 -347c-3 -15 -11 -32 -20 -46l-124 -208l-22 4c16 34 44 97 49 131c7 38 10 83 10 125v341h-106v8 l16 38h90v109c0 22 0 44 7 65c4 15 12 28 23 42c19 23 41 44 62 56c21 11 29 14 45 14c63 0 89 -14 125 -34l36 19'], + 0xE1FB: [688,242,636,146,531,'381 405h150v-7l-18 -39h-133c0 -117 0 -240 -22 -349c-3 -15 -10 -29 -19 -43c0 -1 -88 -150 -124 -209l-23 3c15 34 45 98 50 132c7 38 12 83 12 125v341h-108v8l16 38h92c0 15 -10 39 -20 64c-11 29 -21 63 -21 86c44 48 93 94 149 133c17 -10 33 -20 51 -28 c12 -5 25 -9 39 -9c18 0 36 6 50 16l12 -12l-94 -86c-43 0 -85 7 -126 17c4 -35 22 -69 43 -100c18 -26 30 -48 44 -81'], + 0xE1FC: [474,212,861,179,689,'666 -49l-166 -147c-36 -8 -74 -16 -112 -16c-80 0 -154 26 -209 69l72 99h11c32 -59 112 -90 194 -90c28 0 60 0 81 16c16 12 19 31 19 47c0 42 -15 109 -28 163l-212 -121c-34 32 -68 64 -106 93c-2 34 -3 68 -3 102c0 68 4 136 16 204c63 39 134 71 204 104 c49 -21 103 -34 155 -45l92 45l15 -12c-31 -62 -35 -128 -35 -194c0 -73 2 -147 15 -220c3 -18 8 -45 8 -53c0 -15 -4 -30 -11 -44zM526 124l2 223c-63 7 -124 26 -179 51c-20 -44 -25 -99 -25 -140c0 -33 3 -66 6 -99c3 -15 10 -30 22 -42s49 -38 71 -52'], + 0xE1FD: [684,27,642,137,531,'345 405h135v-7l-18 -39h-117c0 -77 0 -184 3 -229c29 -20 65 -42 98 -58l69 20l4 -18c-64 -32 -129 -65 -185 -101c-41 33 -84 63 -132 89c16 51 16 197 16 297h-81v8l16 38h65c0 87 0 206 -8 258l16 10l33 -76c55 33 112 62 174 87l17 -8c-33 -15 -56 -41 -76 -67 c-22 -29 -24 -63 -24 -97l130 72c20 -24 36 -49 51 -75l-69 -64l-7 -2c-12 14 -25 28 -41 40c-9 7 -20 14 -33 14c-7 0 -14 -1 -19 -5c-17 -15 -17 -55 -17 -87'], + 0xE1FE: [586,33,646,157,557,'371 405h122v-7l-17 -39h-105c0 -76 0 -203 3 -227c29 -27 64 -51 106 -65l69 31l8 -21c-63 -37 -187 -110 -188 -110c-40 32 -86 59 -133 84c5 58 9 117 9 175v133h-88v8l16 38h72v127l126 54l13 -9c-4 -56 -13 -171 -13 -172'], + 0xE1FF: [681,221,1288,132,1068,'435 681c61 0 108 -19 147 -49c32 -25 52 -58 65 -91c75 52 163 96 250 139c42 -37 95 -64 149 -90c9 -91 22 -200 22 -273c0 -121 -20 -243 -91 -352c-65 -54 -137 -102 -220 -137c-66 -29 -138 -49 -214 -49c-53 0 -107 10 -144 40c-11 8 -28 20 -31 26l115 110l15 -2 c1 -34 18 -66 49 -90c29 -21 68 -29 107 -29c59 0 112 22 153 54c49 38 71 92 88 143c24 76 31 154 31 232c0 83 -3 165 -21 246c-43 26 -89 50 -139 66c-41 -21 -76 -48 -109 -74c3 -21 5 -53 5 -76c0 -70 -17 -140 -65 -200c-19 -9 -103 -58 -152 -86 c62 -23 156 -57 196 -57c19 0 38 6 55 14c24 11 45 25 64 40l6 -22c-52 -52 -112 -100 -178 -143c-3 -1 -9 -2 -11 -2c-33 0 -87 21 -128 38c-49 20 -110 44 -157 44c-30 0 -58 -7 -79 -23c-18 -13 -32 -27 -48 -42l-23 20c30 32 115 100 170 139c58 0 118 12 160 44 c20 16 30 38 37 59c10 31 13 64 13 96c0 49 -6 99 -23 146c-12 35 -30 69 -63 94c-26 20 -56 35 -97 35c-33 0 -67 -12 -81 -22c-17 -13 -24 -30 -24 -49c0 -12 11 -26 20 -36c14 -16 28 -32 46 -46c28 -24 57 -59 57 -80c0 -11 -1 -21 -8 -30c-9 -14 -17 -28 -31 -39 c-39 -32 -82 -57 -130 -82l-18 19c21 12 32 21 47 38c11 12 20 26 20 41c0 16 -30 46 -51 67c-15 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 13 44 27 64c20 27 46 51 74 73c49 38 120 63 202 63'], + 0xE200: [678,148,991,100,791,'382 360l-13 2l18 19c28 0 56 2 83 7c19 4 38 9 52 20c31 24 38 60 38 93c0 26 -12 51 -36 70c-28 22 -69 31 -110 31c-52 0 -103 -12 -141 -41l-46 -34l-20 23c51 42 105 81 162 117c41 7 83 11 124 11c64 0 131 -7 177 -43c28 -20 39 -49 39 -78 c0 -45 -19 -90 -61 -122c-39 -31 -85 -58 -142 -64v-6c78 0 159 -9 214 -52c52 -39 71 -95 71 -150c0 -79 -27 -160 -101 -216c-72 -57 -168 -95 -273 -95c-47 0 -96 7 -129 33c-37 27 -52 66 -54 104c-1 23 -8 58 -20 68c-12 9 -30 12 -46 12c-22 0 -43 -8 -62 -16l-6 23 c32 19 68 37 105 51c24 9 51 17 78 17c25 0 51 -5 69 -19c19 -15 19 -68 19 -104c0 -20 3 -41 10 -61c6 -14 12 -29 27 -39c20 -16 53 -25 83 -25c36 0 65 13 89 32c26 19 39 51 49 77c12 33 16 69 16 104c0 30 -3 60 -15 89c-9 23 -21 44 -43 61c-20 16 -61 31 -145 31 c-32 0 -64 -3 -96 -9l-12 10'], + 0xE201: [709,-406,450,151,297,'240 532l38 -49c6 -8 19 -27 19 -35c0 -10 -12 -20 -22 -28c-10 -7 -27 -14 -35 -14c-10 0 -25 12 -33 20c-31 34 -56 72 -56 115c0 25 14 47 30 68c25 35 54 68 84 100l17 -14c-18 -26 -34 -52 -48 -79c-7 -12 -11 -25 -11 -39c0 -16 6 -31 17 -45'], + 0xE202: [695,-395,450,150,293,'186 395l-19 11c16 24 34 49 45 72c7 15 12 31 12 47c0 14 -6 27 -15 39l-42 57c-8 10 -17 26 -17 33c0 8 10 16 17 22c12 9 28 19 40 19c10 0 28 -14 36 -25c18 -21 32 -45 41 -69c6 -12 9 -25 9 -37c0 -29 -16 -55 -33 -80c-21 -31 -50 -59 -74 -89'], + 0xE203: [722,182,860,119,740,'740 713l-560 -895h-61l566 904'], + 0xE204: [713,9,806,186,526,'510 32l-124 -41l-25 14c25 185 28 371 16 556c0 8 -4 16 -10 21c-8 5 -17 13 -23 13h-158l2 31l313 86c5 2 13 2 18 -2c4 -3 8 -8 7 -13c-13 -137 -21 -275 -21 -413c0 -84 0 -188 5 -252'], + 0xE205: [1008,0,1127,135,1137,'1088 1008l49 -26l-603 -982h-36l-258 447l-81 -47l-24 26l164 95l238 -412'], + 0xE206: [455,12,453,158,294,'158 45c0 31 30 57 68 57s68 -26 68 -57s-30 -57 -68 -57s-68 26 -68 57zM158 398c0 31 30 57 68 57s68 -26 68 -57s-30 -57 -68 -57s-68 26 -68 57'], + 0xE207: [457,190,453,155,312,'155 400c0 31 31 57 69 57c37 0 68 -26 68 -57s-31 -57 -68 -57c-38 0 -69 26 -69 57zM204 -190l-18 13c20 23 35 48 48 74c7 13 8 26 8 39c0 14 -6 27 -15 38l-41 51c-6 8 -11 17 -11 26c0 12 1 27 11 35l2 2c11 7 24 11 39 11c9 0 19 -4 25 -11c20 -18 37 -38 48 -60 c7 -16 12 -33 12 -50c0 -27 -12 -52 -28 -75c-23 -33 -51 -63 -80 -93'], + 0xE208: [369,-132,1101,162,963,'956 329h-794l8 40h793zM956 132h-794l8 40h793'], + 0xE209: [693,11,628,151,527,'224 46c0 31 30 57 68 57s68 -26 68 -57s-30 -57 -68 -57s-68 26 -68 57zM320 211l-55 -32c-27 14 -50 41 -50 71c0 21 16 38 31 55c26 28 57 52 90 76c59 42 105 98 105 164c0 30 -15 61 -40 82c-21 17 -48 34 -77 34s-54 -8 -75 -25c-12 -11 -22 -31 -22 -47 c0 -24 15 -46 38 -61l-80 -40c-22 16 -34 43 -34 69c0 29 17 55 41 75c48 40 113 61 180 61c39 0 81 -8 110 -32c30 -25 45 -60 45 -96c0 -33 -16 -60 -36 -89c-22 -30 -88 -79 -124 -106c-44 -32 -79 -71 -79 -96c0 -20 13 -40 32 -52v-11'], + 0xE20A: [688,31,1141,137,1015,'746 124l-255 -155c-30 29 -61 57 -99 80c-23 14 -47 24 -77 24c-37 0 -102 -23 -146 -42l-24 17l220 128c29 17 57 36 83 56c76 59 110 141 110 223c0 49 -30 95 -75 130c-31 24 -77 39 -123 39c-39 0 -64 -7 -86 -24c-18 -14 -24 -35 -24 -54c0 -12 7 -23 14 -33 c13 -15 27 -28 42 -41c18 -14 36 -28 49 -45c9 -10 16 -20 16 -32c0 -30 -24 -56 -50 -77c-36 -27 -77 -50 -121 -69l-21 15c21 11 39 24 56 40c10 11 20 23 20 37c0 16 -33 48 -57 70c-17 16 -32 33 -46 52c-7 13 -15 26 -15 40c0 28 18 56 51 83c56 47 188 102 268 102 c64 0 128 -15 174 -50c42 -33 65 -77 65 -123c0 -69 -28 -136 -66 -198l-213 -158c28 0 55 -9 80 -21c34 -16 63 -37 90 -59c40 9 106 46 156 74v429l191 105l16 -13l-56 -51c-9 -49 -10 -215 -10 -323c0 -40 2 -81 5 -121l63 -101l58 21l6 -22c-59 -35 -115 -73 -175 -106 l-13 3'], + 0xE20B: [685,31,1357,167,1164,'1102 100l-190 -111c-28 -13 -68 -20 -106 -20c-144 0 -260 72 -400 72c-70 0 -134 -20 -194 -50l-15 24l165 83c41 22 83 45 119 73c63 50 64 116 64 184c0 37 0 76 -8 112c-16 70 -77 160 -169 160c-49 0 -90 -31 -90 -71c0 -44 126 -112 126 -160 c0 -55 -124 -117 -193 -150l-22 13l7 4c36 21 85 49 85 83c0 40 -114 92 -114 163c0 29 44 69 77 95c64 50 142 81 226 81c88 0 156 -49 190 -108c77 49 171 108 267 108c24 0 48 -4 67 -18c38 -29 36 -162 103 -162c23 0 45 4 67 10v-24l-224 -103v-5 c161 -17 211 -80 211 -167c0 -45 -17 -79 -49 -116zM655 241l-159 -104c91 -2 180 -23 265 -49c55 -17 114 -34 169 -34c71 0 85 50 85 90c0 116 -99 183 -228 183c-36 0 -71 -4 -106 -11c-4 -25 -15 -51 -26 -75zM684 346c91 19 191 46 277 87c-24 12 -42 26 -46 45 c-12 24 -9 141 -85 141c-63 0 -113 -43 -152 -99c7 -30 8 -58 8 -101c0 -25 -1 -51 -2 -73'], + 0xE20C: [677,32,1005,183,907,'449 593l28 -25c90 52 190 93 301 109c10 -39 29 -105 88 -105c9 0 29 3 41 6v-25c-30 -11 -116 -40 -154 -40c-48 0 -87 60 -110 98c-35 -7 -46 -33 -46 -56c0 -40 44 -107 44 -160c0 -32 -7 -66 -37 -89c-49 -38 -121 -59 -188 -79l-13 -4l-22 14c55 14 110 61 110 104 c0 67 -39 137 -39 192c0 9 1 16 4 22c-107 -8 -132 -108 -132 -184c0 -88 30 -177 111 -240c69 -53 161 -86 257 -86c24 0 50 1 69 9l127 54l5 -27l-183 -103c-31 -6 -62 -10 -94 -10c-112 0 -227 20 -306 82c-87 67 -127 162 -127 256c0 62 20 123 52 179 c23 16 136 77 214 108'], + 0xE20D: [685,29,1289,138,1091,'559 549l24 -11c-30 -22 -68 -52 -68 -75c0 -50 118 -111 118 -174s-95 -109 -177 -137c65 -10 189 -40 287 -64c27 -7 57 -13 87 -13c93 0 133 118 133 203c0 87 -28 173 -108 235c-85 65 -218 84 -337 84c-98 0 -201 -17 -271 -71c-56 -43 -78 -101 -81 -161l-28 7 c0 85 35 169 114 230c87 67 237 83 362 83c138 0 279 -26 376 -101c73 -57 101 -134 101 -212c0 -76 -31 -160 -86 -231c-89 -68 -170 -117 -274 -170c-52 0 -111 18 -164 34c-86 26 -193 58 -263 58c-65 0 -110 -41 -146 -77l-19 19c46 58 108 108 171 156 c75 0 188 1 188 71c0 51 -116 113 -116 164c0 63 107 119 177 153'], + 0xE20E: [687,29,1070,185,911,'780 461c22 -36 49 -65 90 -89v-12l-98 -55c-14 7 -28 13 -49 26l-39 25c-5 3 -11 6 -17 6c-10 0 -17 -4 -25 -9c-34 -63 -146 -104 -232 -127l-24 14c48 17 108 52 108 93c0 30 -5 63 -15 94c-11 33 -27 69 -27 102c0 13 2 26 6 38c-96 -18 -138 -129 -138 -196 c0 -164 162 -317 359 -317c78 0 152 23 215 58v-27l-171 -103c-42 -7 -85 -11 -127 -11c-104 0 -210 24 -285 81c-87 67 -126 159 -126 253c0 61 13 122 45 178c66 43 139 81 213 116l47 -18c87 47 185 80 286 106l2 -7c12 -38 35 -103 82 -103c15 0 37 4 51 7l-3 -27 c-46 -13 -143 -40 -144 -40c-4 -1 -8 -1 -12 -1c-16 0 -33 14 -43 26l-65 76c-21 -12 -40 -28 -40 -48c0 -61 42 -130 42 -189'], + 0xE20F: [684,147,1003,124,912,'587 299l165 119c34 -25 54 -57 76 -94l-74 -60c-21 28 -37 49 -74 49c-23 0 -52 -17 -73 -33c58 -55 136 -131 136 -189c0 -156 -227 -238 -342 -238c-42 0 -88 7 -118 30c-34 26 -43 66 -43 103c0 44 16 77 16 130c0 26 -19 53 -58 53c-18 0 -49 -13 -70 -23l-4 23 c60 31 126 61 198 61c38 0 69 -25 69 -54c0 -60 -27 -110 -27 -192c0 -46 27 -91 94 -91c64 0 162 32 162 142c0 36 -49 91 -93 135l-22 22c-49 51 -114 124 -114 168c0 66 102 127 181 162c-75 32 -179 74 -236 74c-89 0 -122 -75 -138 -131l-28 16c26 101 97 203 253 203 c52 0 142 -27 206 -52l22 -9c47 -18 110 -42 137 -42c28 0 77 36 111 61l13 -16c-50 -45 -128 -114 -166 -140c-44 2 -93 13 -134 24c-51 -14 -107 -40 -107 -87c0 -42 44 -88 82 -124'], + 0xE210: [692,27,1229,186,1033,'444 596l38 -12c49 30 103 56 159 78l24 -12c-47 -18 -85 -60 -85 -100c0 -29 19 -97 34 -144l73 34l125 86c-58 9 -110 29 -131 86l124 80c17 -56 54 -80 115 -80c13 0 47 8 72 19l3 -24c-80 -49 -151 -96 -225 -149c132 0 263 -53 263 -167c0 -95 -69 -176 -175 -227 l-164 -82c-39 -5 -75 -9 -106 -9c-264 0 -402 173 -402 345c0 61 12 126 53 178c68 39 137 72 205 100zM428 214l-12 18c37 13 73 38 73 79c0 13 -12 70 -23 102c-17 50 -23 80 -23 100c0 19 1 39 14 55c-95 -7 -142 -99 -142 -177c0 -180 164 -342 375 -342 c130 0 205 69 205 167c0 94 -79 173 -203 173c-25 0 -49 -1 -74 -9c2 -11 3 -23 3 -35c0 -74 -68 -92 -151 -118'], + 0xE211: [684,127,1145,105,933,'495 127l-183 -145c-18 15 -38 29 -58 40c-15 7 -30 14 -48 14c-36 0 -73 -30 -83 -39l-18 18c52 47 128 117 176 117c46 0 84 -29 109 -56c19 20 32 40 32 64c0 34 -45 101 -79 149c-36 48 -67 100 -67 156c0 25 15 48 31 69c27 33 59 62 93 90c36 30 83 55 127 80 c23 -18 49 -35 76 -48c19 -9 40 -17 62 -17c38 0 97 34 123 51l14 -18c-38 -32 -98 -80 -152 -111c-17 -4 -35 -7 -52 -7c-65 0 -122 27 -173 56c-22 -18 -41 -40 -41 -65c0 -23 7 -45 17 -66c15 -35 37 -71 58 -102c62 43 138 88 206 122c70 0 163 -23 205 -45 c11 -5 33 -29 37 -40c22 -58 26 -91 26 -152c0 -87 -16 -173 -56 -254c-1 0 -117 -67 -176 -100c-15 -8 -33 -15 -51 -15c-42 0 -80 17 -107 40l65 70l17 1c7 -14 18 -28 32 -38c11 -8 24 -15 40 -15c23 0 41 8 57 20c41 31 41 150 41 227c0 34 -4 138 -50 172 c-28 22 -67 38 -108 38c-25 0 -50 -2 -73 -9c-20 -7 -48 -19 -89 -48c26 -40 50 -94 50 -126c0 -27 -7 -58 -30 -78'], + 0xE212: [683,25,929,139,790,'780 670l10 -15c-67 -48 -146 -98 -225 -133l-121 36c-36 9 -73 18 -111 18c-35 0 -74 -12 -99 -31c-30 -23 -51 -53 -71 -82h-7l-17 14c21 37 43 73 68 108c17 22 34 44 57 61c34 24 78 37 122 37c41 0 97 -19 145 -34c39 -13 101 -33 122 -33s37 5 56 13 c25 11 49 26 71 41zM154 -16l-7 18c51 48 115 96 175 138c25 -42 41 -67 81 -97c14 -11 34 -15 54 -15c26 0 46 8 65 21c16 13 27 38 34 56c9 25 9 51 9 77c0 10 -9 75 -13 112c-4 26 -6 52 -6 77c0 21 1 42 4 62c57 55 122 104 195 145l28 -10c-27 -17 -43 -31 -62 -53 c-13 -16 -25 -40 -25 -60c0 -24 0 -54 3 -72c9 -48 17 -97 17 -145c0 -60 -27 -122 -83 -165c-71 -56 -156 -98 -259 -98c-53 0 -102 21 -141 47'], + 0xE213: [681,142,927,96,782,'782 609v-23c-75 -33 -163 -64 -246 -85c-31 12 -76 37 -82 41c-40 19 -82 37 -129 37c-26 0 -57 -7 -75 -21c-24 -18 -39 -40 -55 -62l-20 14c29 46 61 91 108 127c33 26 77 44 125 44c18 0 35 -7 50 -14c26 -11 51 -24 75 -38c23 -14 47 -28 73 -39 c15 -6 31 -11 49 -11c35 0 85 16 127 30zM106 59l-10 18c33 20 68 39 107 53c29 11 59 19 91 19c22 0 45 -5 62 -18c11 -8 13 -21 14 -33c1 -6 1 -67 1 -100s12 -65 42 -88c13 -10 31 -17 48 -17c29 0 55 7 75 23c29 22 35 59 35 90c0 47 -19 111 -38 165 c-16 46 -28 93 -28 140c0 17 2 34 6 51c55 62 120 117 196 164l27 -9c-50 -40 -90 -88 -91 -145c0 -44 8 -87 22 -129c16 -52 33 -105 33 -159c0 -56 -23 -111 -75 -151c-57 -44 -132 -75 -213 -75c-41 0 -85 3 -115 26c-33 25 -47 59 -53 94c-5 29 -13 73 -26 83 c-12 9 -28 15 -46 15c-22 0 -44 -8 -64 -17'], + 0xE214: [682,26,1077,127,999,'916 348l-216 -65c87 -15 105 -46 119 -126c8 -41 30 -67 49 -79c14 -8 32 -11 50 -11c27 0 52 11 74 24l7 -22c-34 -26 -70 -51 -111 -71c-25 -12 -53 -24 -82 -24c-19 0 -40 1 -53 11c-36 29 -49 69 -56 108c-2 11 -13 72 -41 108c-9 11 -32 29 -80 29 c-38 0 -77 -11 -108 -24c2 -13 3 -25 3 -37c0 -14 -2 -28 -7 -45c-47 -46 -103 -93 -165 -127c-15 -8 -30 -14 -43 -19c-42 0 -80 14 -103 30c-3 2 -17 15 -26 24l95 85h15c9 -20 19 -39 39 -54c9 -8 23 -17 38 -17c11 0 24 2 32 8c16 14 20 33 20 53c0 34 -27 91 -45 133 c-26 55 -49 111 -49 169c0 30 14 59 33 85c25 35 59 65 95 93c76 59 178 95 286 95c128 0 171 -35 201 -64c2 -10 3 -19 3 -30c0 -22 -5 -50 -24 -98l-22 -6c-8 39 -27 58 -54 79c-50 39 -123 62 -193 62c-60 0 -119 -15 -162 -48c-30 -24 -42 -57 -42 -90 c0 -43 11 -84 25 -125c46 39 94 75 151 104c40 19 84 36 131 36c24 0 48 -4 66 -17c18 -15 31 -44 41 -68c6 -18 13 -35 24 -44c7 -6 18 -10 29 -10c13 0 26 0 50 6zM460 230c35 14 113 46 196 59l61 23c-14 9 -32 36 -39 55c-4 17 -13 35 -30 47c-12 9 -26 18 -42 18 c-41 0 -80 -15 -107 -37c-27 -20 -48 -52 -64 -81c9 -26 18 -58 25 -84'], + 0xE215: [684,28,1074,138,945,'508 257c-25 -29 -74 -72 -127 -104c2 0 117 -32 168 -47c62 -17 128 -24 194 -24c46 0 92 11 125 37c32 24 47 58 56 92l21 -11c-11 -40 -24 -81 -43 -119c-12 -24 -24 -48 -47 -66c-33 -25 -76 -43 -123 -43c-102 0 -200 23 -294 53c-54 17 -131 41 -166 41 c-21 0 -42 -6 -57 -17c-13 -11 -41 -44 -59 -67l-18 13c31 59 72 115 129 161c11 6 27 9 45 9c8 0 16 0 24 -2c16 4 40 12 52 21c16 12 22 30 22 47c0 22 -41 78 -67 115c-23 32 -42 67 -42 104c0 25 12 50 28 72c21 30 50 57 82 81c73 57 178 81 281 81c44 0 91 -5 122 -29 c15 -12 19 -27 22 -43c5 -23 4 -47 0 -70c-2 -13 -3 -21 -3 -34c0 -17 10 -31 27 -42c7 -5 49 -5 69 -5v-18l-189 -49c-11 0 -23 1 -32 7c-14 12 -23 27 -23 43c0 14 4 26 6 40c3 17 6 48 6 52c0 23 -9 46 -30 62c-27 21 -66 30 -104 30c-36 0 -72 -8 -97 -27 c-27 -21 -39 -49 -39 -78c0 -40 20 -78 41 -115c15 -26 29 -53 37 -82c5 -15 9 -31 9 -47c0 -5 -1 -17 -6 -22'], + 0xE216: [686,33,1572,134,1460,'1450 76l-197 -109l-88 111c0 105 1 237 7 289c37 48 69 77 111 103c-13 3 -20 5 -29 17c-9 14 -24 40 -34 62c-7 18 -17 36 -32 48c-10 8 -25 15 -40 15c-27 0 -54 -5 -76 -16c-28 -14 -44 -26 -66 -45c5 -28 9 -72 9 -101c0 -107 -16 -216 -76 -313l-187 -165 c-14 12 -31 24 -50 33c-12 6 -25 12 -40 12c-20 0 -40 -5 -54 -16l-18 -14l-19 15c28 28 73 71 86 82c21 17 49 33 81 33c27 0 62 -24 84 -41c30 34 40 72 50 112c14 59 15 124 15 183c0 40 -3 80 -16 119c-10 27 -23 54 -49 74c-15 12 -35 23 -57 23c-17 0 -31 -4 -45 -10 c-18 -9 -35 -21 -55 -35c9 -31 15 -62 15 -94c0 -107 -37 -221 -95 -318l-241 -155c-15 15 -31 29 -50 39c-15 8 -32 14 -49 14c-22 0 -43 -5 -60 -17c-11 -8 -26 -20 -33 -26l-16 15c32 32 72 72 100 92c25 20 59 31 94 31c18 0 34 -7 47 -15c19 -11 38 -28 53 -44 c15 10 28 19 38 28c30 25 43 60 55 95c17 51 22 104 22 157c0 46 -4 94 -20 139c-12 32 -29 66 -60 90c-34 27 -77 46 -128 46c-23 0 -56 -1 -74 -15c-14 -11 -25 -23 -25 -39c0 -17 40 -59 67 -85c47 -43 64 -67 64 -84c0 -29 -23 -55 -49 -76c-39 -29 -82 -51 -128 -72 l-20 17c23 10 42 20 58 35c11 11 22 24 22 38c0 20 -30 54 -55 76c-28 26 -63 63 -63 89c0 18 13 35 25 51c20 24 45 45 71 65c59 45 151 67 207 67c53 0 115 -15 153 -44c26 -20 51 -47 64 -74c33 23 68 44 108 59c28 11 60 20 93 20c39 0 75 -12 103 -32 c14 -12 25 -25 36 -38c39 30 83 58 133 78c39 16 81 28 126 28c17 0 35 -2 48 -12c11 -9 27 -37 37 -55c9 -16 19 -32 34 -44c10 -9 23 -14 38 -14c17 0 33 3 50 8v-18c-53 -25 -80 -41 -127 -72c-6 -4 -28 -28 -31 -39c-10 -36 -10 -61 -10 -97c0 -55 2 -110 15 -164 c5 -19 11 -37 20 -55c7 -13 11 -18 23 -27c8 -6 22 -9 33 -9c10 0 45 2 67 9v-18'], + 0xE217: [681,33,1290,134,1170,'1051 476c-5 -4 -27 -28 -31 -39c-9 -36 -10 -61 -10 -97c0 -55 2 -110 16 -164c4 -19 11 -37 20 -55c6 -13 10 -18 23 -27c7 -6 22 -9 33 -9c10 0 45 2 67 9v-18l-197 -109l-88 111c0 105 0 237 7 289c36 48 69 79 111 105c-16 0 -29 7 -39 15c-14 12 -25 27 -32 42 c-11 25 -27 57 -45 71c-12 8 -26 14 -42 14c-27 0 -59 -16 -79 -30c-39 -28 -63 -50 -90 -83c17 -48 26 -113 26 -166c0 -72 -14 -144 -48 -210l-226 -143c-10 -4 -25 -10 -32 -10c-56 0 -102 27 -140 57l96 94h21c6 -14 22 -33 42 -49c16 -11 35 -17 57 -17 c28 0 51 14 71 28c16 13 21 31 25 49c8 29 10 58 10 88c0 70 -9 140 -34 208c-19 51 -47 100 -96 138c-34 26 -77 47 -126 47c-23 0 -49 -3 -66 -16c-14 -11 -21 -24 -21 -39s10 -30 18 -43c16 -20 34 -38 54 -56c16 -13 30 -27 41 -43c8 -10 11 -21 11 -33 c0 -26 -19 -46 -41 -65c-35 -31 -77 -55 -122 -78l-24 16c20 11 39 24 53 39c10 11 18 23 18 37c0 20 -20 39 -39 55c-20 18 -37 36 -51 56c-10 15 -18 30 -18 47c0 20 10 39 22 57c17 24 38 46 64 64c58 39 135 68 215 68c54 0 108 -15 146 -45c37 -28 63 -63 77 -101 c24 22 49 43 75 63c55 43 123 80 204 80c27 0 58 -3 78 -19c11 -9 26 -36 39 -64c6 -13 16 -24 28 -34c6 -7 14 -13 25 -13c20 0 40 3 57 9l6 -15c-32 -13 -73 -37 -119 -66'], + 0xE218: [726,29,1283,117,1074,'431 608c0 24 3 35 38 60c19 13 57 45 68 58h28c-7 -9 -12 -19 -12 -30c0 -9 11 -15 22 -17c13 -3 76 -5 113 -7c62 -3 123 -10 182 -24c44 -12 86 -27 119 -53c32 -24 50 -55 63 -87c17 -42 22 -86 22 -130c0 -86 -32 -170 -89 -244c-63 -51 -129 -88 -203 -121 c-53 -23 -110 -42 -171 -42c-70 0 -139 18 -206 37c-45 13 -99 28 -137 28c-52 0 -95 -25 -128 -54l-23 22l98 110c39 8 77 17 105 38c16 12 24 29 24 47c0 19 -9 37 -19 55c-15 26 -34 50 -57 76c-29 32 -55 74 -56 104c0 44 84 117 164 157l16 -14 c-28 -18 -62 -42 -62 -77c0 -16 28 -67 52 -98c26 -32 44 -59 65 -93c6 -9 11 -23 11 -33c0 -22 -8 -41 -23 -60c-25 -30 -61 -62 -97 -83c24 0 46 -2 77 -9c64 -14 129 -31 191 -50c53 -17 90 -27 162 -27c28 0 55 15 76 29c36 25 53 66 66 101c17 49 22 100 22 150 c0 40 -5 81 -20 119c-12 30 -28 59 -57 81c-26 20 -61 29 -97 36c-50 10 -81 13 -134 13c-28 0 -52 -1 -75 -3c-16 -1 -32 -1 -48 -1c-51 0 -70 26 -70 36'], + 0xE219: [685,223,1284,126,1143,'664 -141l-152 -82l-30 14c14 35 18 70 22 105c6 52 8 106 8 158c-30 11 -66 22 -95 22c-40 0 -73 -18 -101 -40c-20 -15 -39 -30 -56 -48l-16 19c35 47 77 104 117 135c28 21 63 37 103 37c13 0 29 -1 47 -6v196c0 43 -7 87 -23 128c-13 33 -32 64 -63 88 c-26 20 -58 34 -96 34c-41 0 -63 -12 -78 -22c-16 -13 -24 -30 -24 -49c0 -12 11 -26 20 -36c14 -16 29 -32 46 -46c29 -24 57 -59 57 -80c0 -11 -1 -21 -7 -30c-9 -14 -18 -28 -31 -39c-40 -32 -83 -57 -131 -82l-18 19c21 12 32 21 48 38c11 12 19 26 19 41 c0 16 -29 46 -50 67c-16 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 12 44 26 64c20 27 46 51 74 73c50 38 114 67 199 67c59 0 107 -17 147 -48c27 -20 53 -53 67 -80c46 36 96 71 153 94c43 17 90 30 137 30c23 0 47 -2 64 -15c16 -12 23 -42 26 -65c3 -20 12 -39 28 -56 c11 -11 25 -22 44 -22c14 0 33 4 45 7l7 -19c-49 -20 -97 -41 -138 -69c-17 -12 -32 -27 -32 -45c0 -32 20 -61 42 -88c25 -31 59 -74 59 -104c0 -24 -5 -48 -21 -69c-26 -35 -53 -63 -91 -94c-22 -18 -46 -36 -74 -47c-21 -9 -44 -15 -67 -15c-59 0 -120 18 -173 39 c0 -54 6 -106 16 -160zM648 518v-376l193 -63c28 -9 55 -17 85 -17c13 0 26 4 35 11c13 10 17 22 17 36c0 15 -8 34 -17 47c-13 21 -29 40 -46 59c-30 32 -63 76 -63 100c0 19 10 37 25 52c28 28 60 53 93 76c-21 3 -43 9 -53 17c-8 6 -25 22 -25 62c0 15 -3 30 -7 44 c-3 10 -8 20 -17 27c-15 12 -35 19 -56 19c-40 0 -76 -17 -104 -39c-11 -9 -39 -33 -60 -55'], + 0xE21A: [726,82,1283,117,1114,'892 66c22 -18 44 -33 70 -47c18 -8 36 -17 57 -17c32 0 64 7 95 16v-21c-59 -28 -118 -55 -180 -79c-66 22 -128 48 -186 83c-39 -17 -92 -30 -137 -30c-70 0 -139 18 -206 37c-45 13 -99 28 -137 28c-52 0 -95 -25 -128 -54l-23 22l98 110c39 8 77 17 105 38 c16 12 24 29 24 47c0 19 -9 37 -19 55c-15 26 -34 50 -57 76c-29 32 -55 74 -56 104c0 44 84 117 164 157l16 -14c-28 -18 -62 -42 -62 -77c0 -16 28 -67 52 -98c26 -32 44 -59 65 -93c6 -9 11 -23 11 -33c0 -22 -8 -41 -23 -60c-25 -30 -61 -62 -97 -83c24 0 46 -2 77 -9 c64 -14 129 -31 191 -50c53 -17 90 -27 162 -27c28 0 55 15 76 29c36 25 53 66 66 101c17 49 22 100 22 150c0 40 -5 81 -20 119c-12 30 -28 59 -57 81c-26 20 -61 29 -97 36c-50 10 -81 13 -134 13c-28 0 -52 -1 -75 -3c-16 -1 -32 -1 -48 -1c-51 0 -70 26 -70 36 c0 24 3 35 38 60c19 13 57 45 68 58h28c-7 -9 -12 -19 -12 -30c0 -9 11 -15 22 -17c13 -3 76 -5 113 -7c62 -3 123 -10 182 -24c44 -12 86 -27 119 -53c32 -24 50 -55 63 -87c17 -42 22 -86 22 -130c0 -86 -32 -170 -89 -244c-24 -24 -62 -48 -93 -68'], + 0xE21B: [689,29,1284,126,1180,'330 619c-31 0 -64 -12 -79 -22c-16 -13 -24 -30 -24 -49c0 -12 11 -26 20 -36c14 -16 29 -32 46 -46c29 -24 57 -59 57 -80c0 -11 -1 -21 -7 -30c-9 -14 -18 -28 -31 -39c-40 -32 -83 -57 -131 -82l-18 19c21 12 32 21 48 38c11 12 19 26 19 41c0 16 -29 46 -50 67 c-16 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 12 44 26 64c20 27 46 51 74 73c50 38 120 71 206 71c69 0 119 -19 164 -54c29 -22 56 -52 68 -81c38 35 84 72 134 98c36 18 77 33 120 33c28 0 55 -7 75 -23c23 -17 27 -48 31 -74c3 -23 6 -53 23 -66c13 -10 31 -12 49 -12 c12 0 28 1 41 5l6 -13c-102 -36 -160 -62 -231 -101c38 -4 81 -22 103 -45c0 -58 2 -127 9 -163c4 -22 13 -45 27 -63c13 -16 26 -30 43 -43c8 -6 24 -6 37 -6c16 0 32 7 48 14l1 -23l-187 -101c-26 46 -63 92 -98 137c0 46 0 118 -3 139c-3 18 -10 45 -27 59 c-22 16 -43 29 -73 34c-16 3 -34 4 -50 4c-22 0 -44 -7 -65 -15c-12 -68 -33 -118 -74 -179l-253 -178l-56 41c-11 8 -25 15 -39 15c-15 0 -27 -3 -39 -9c-18 -9 -32 -22 -45 -37l-18 16c50 53 125 126 174 126c24 0 38 -7 49 -14c20 -13 39 -28 57 -43c14 9 28 19 42 29 c31 24 41 59 49 93c14 55 18 111 18 168c0 43 -7 86 -23 128c-15 33 -38 65 -71 91c-31 24 -68 43 -118 43zM961 458c-16 0 -33 6 -45 16c-16 13 -22 41 -26 64c-3 23 -10 55 -23 65c-10 8 -22 15 -36 15c-32 0 -59 -14 -81 -31c-31 -25 -49 -43 -71 -73c3 -17 4 -47 4 -64 c0 -31 -2 -59 -4 -92c47 18 115 43 172 47'], + 0xE21C: [685,31,1285,195,1102,'758 513l-144 67c-30 14 -64 30 -98 30c-38 0 -74 -14 -101 -34c-64 -49 -89 -118 -89 -187c0 -95 34 -192 123 -260c74 -57 174 -88 279 -88c86 0 174 18 236 66c31 24 45 58 45 91c0 32 -17 63 -47 85c-40 31 -98 39 -153 39c-48 0 -95 -8 -141 -17 c-46 -8 -122 -22 -137 -22c-37 0 -73 7 -98 27c-22 17 -31 40 -31 64c0 37 25 70 59 96c31 24 74 37 114 45l14 -14c-12 -4 -23 -12 -33 -19c-19 -14 -33 -33 -33 -53c0 -16 5 -31 20 -42c20 -15 50 -15 77 -15c53 0 103 5 154 13c49 7 97 21 146 21c47 0 96 -10 130 -36 c36 -29 52 -69 52 -109c0 -69 -49 -129 -112 -177c-103 -80 -247 -115 -391 -115c-108 0 -211 32 -287 91c-84 64 -117 151 -117 252c0 100 50 184 139 253c86 65 180 91 316 120c48 -16 93 -37 140 -55c55 -21 121 -46 172 -46c27 0 50 7 70 22c19 14 27 28 37 47l27 -14 c-13 -31 -37 -59 -67 -82c-36 -28 -83 -47 -132 -58c-20 -4 -40 -9 -61 -9c-28 0 -53 12 -78 23'], + 0xE21D: [691,30,1077,138,983,'983 659l-133 -118c-32 -9 -66 -13 -102 -13c-46 0 -107 8 -152 15c-36 -28 -53 -49 -53 -85c0 -16 9 -36 21 -49c16 -19 35 -39 55 -56c37 -32 90 -77 90 -106c0 -35 -76 -91 -128 -127c53 -19 129 -46 171 -46c21 0 42 6 60 14c31 11 58 27 84 43l12 -24 c-60 -50 -129 -95 -199 -137c-58 0 -113 18 -165 38c-43 16 -94 34 -135 34c-20 0 -41 0 -57 -5c-39 -13 -64 -30 -96 -52l-14 18c63 51 131 97 211 132c33 0 68 -1 100 -8c19 15 32 33 32 55c0 24 -47 66 -80 94c-21 18 -40 37 -58 57c-12 14 -22 29 -27 45 c35 63 83 122 147 171c-83 14 -210 37 -246 37c-30 0 -69 -3 -89 -19c-15 -11 -20 -27 -20 -41c0 -39 38 -68 79 -89l2 -10l-91 -68c-35 25 -64 58 -64 96c0 51 34 98 80 135c70 53 159 90 258 90c40 0 136 -14 203 -25c54 -7 109 -14 165 -14c51 0 103 23 139 50v-32'], + 0xE21E: [689,39,1145,123,1063,'504 249c-42 -42 -105 -103 -137 -121c29 -4 103 -26 149 -41c40 -13 87 -24 125 -24c34 0 60 18 84 36c16 13 25 30 26 47c4 67 7 134 7 201c0 82 -5 164 -14 246c74 24 141 57 206 92l18 -15l-27 -24c-27 -26 -37 -60 -42 -93c-7 -58 -9 -115 -9 -173 c0 -61 2 -121 6 -182c2 -18 2 -22 16 -52c10 -21 25 -44 39 -59c9 -9 22 -13 37 -13c16 0 48 10 71 18l4 -20l-220 -111l-78 123l-140 -105c-20 -11 -45 -13 -60 -13c-50 0 -98 14 -142 30c-57 21 -128 42 -182 42c-19 0 -48 -8 -98 -50l-20 20l116 109c36 5 78 15 96 25 c20 11 57 38 67 65c4 11 4 26 4 37c0 20 -6 40 -16 60c-12 27 -30 53 -48 78c-29 39 -65 90 -65 122c0 7 0 16 2 22c16 25 69 80 114 114c23 18 50 34 78 49l26 -16c-18 -10 -35 -22 -51 -34c-19 -14 -33 -32 -33 -53c0 -37 18 -73 39 -107c25 -40 45 -83 54 -127 c5 -17 7 -34 7 -51c0 -18 -2 -35 -9 -52'], + 0xE21F: [687,29,1289,132,1168,'438 687c57 0 103 -13 139 -41c35 -27 62 -69 72 -107c46 40 96 81 151 111c32 17 66 35 104 35c18 0 37 -5 55 -10c24 -8 47 -19 69 -31s54 -29 70 -29c23 0 45 3 68 14l2 -25c-20 -10 -38 -22 -54 -35c-41 -31 -80 -69 -80 -115c0 -27 0 -58 6 -81l19 -95 c4 -22 7 -45 7 -68c0 -46 -18 -88 -62 -120c-51 -39 -116 -82 -137 -93c-31 -15 -63 -26 -100 -26c-28 0 -56 8 -83 16c-44 13 -86 29 -128 46c-36 15 -73 29 -111 40c-24 7 -49 13 -74 13s-49 -7 -71 -16c-31 -12 -60 -28 -85 -46l-14 18c55 42 120 82 182 121 c33 7 61 22 85 40c22 17 32 41 38 65c12 36 15 74 15 111c0 42 -6 84 -21 124c-12 31 -30 61 -60 84c-27 21 -59 37 -102 37c-33 0 -66 -17 -80 -27c-17 -13 -24 -30 -24 -49c0 -12 11 -26 20 -36c14 -16 28 -32 46 -46c28 -24 57 -59 57 -80c0 -11 -1 -21 -8 -30 c-9 -14 -17 -28 -31 -39c-39 -32 -82 -57 -130 -82l-18 19c21 12 32 21 47 38c11 12 20 26 20 41c0 16 -30 46 -51 67c-15 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 13 44 27 64c20 27 46 51 74 73c49 38 120 69 205 69zM613 262l-129 -88c46 -1 158 -46 235 -75 c51 -20 115 -44 163 -44c14 0 32 4 41 12c11 8 15 22 15 34c0 17 -2 38 -6 56l-25 129c-5 21 -5 41 -5 62c0 29 0 71 14 86c29 31 68 63 104 93c-44 0 -83 16 -120 35c-30 17 -68 36 -102 36c-24 0 -44 -14 -60 -27c-31 -22 -56 -49 -78 -76c2 -14 2 -29 2 -43 c0 -65 -13 -130 -49 -190'], + 0xE220: [682,30,1568,139,1469,'346 617c-33 0 -67 -10 -82 -20c-16 -13 -24 -30 -24 -49c0 -12 11 -26 20 -36c14 -16 29 -32 46 -46c29 -24 58 -59 58 -80c0 -11 -2 -21 -8 -30c-9 -14 -18 -28 -31 -39c-40 -32 -83 -57 -131 -82l-18 19c21 12 32 21 48 38c11 12 20 26 20 41c0 16 -30 46 -51 67 c-15 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 12 44 27 64c19 27 46 51 73 73c50 38 120 64 204 64c68 0 122 -19 166 -53c26 -20 45 -46 57 -73c70 45 122 76 196 114c38 -19 66 -48 111 -110c41 32 86 65 134 91c31 15 62 31 99 31c41 0 77 -16 111 -33 c33 -16 68 -33 108 -33c12 0 33 7 44 12l-1 -25c-40 -26 -92 -61 -124 -98c-19 -22 -26 -47 -26 -74c0 -23 11 -62 20 -93c12 -42 23 -81 23 -124c0 -22 -2 -43 -7 -65c-5 -15 -10 -29 -22 -41l-200 -123c-26 -8 -52 -13 -80 -13c-38 0 -82 14 -121 25 c-64 19 -127 35 -195 42c-46 -19 -95 -42 -138 -64c-11 -4 -24 -5 -39 -5c-57 0 -110 20 -159 43c-35 16 -74 32 -109 32c-23 0 -44 -6 -63 -15c-26 -11 -49 -27 -71 -44l-15 22c56 48 120 90 184 132c59 0 99 14 134 41c30 23 46 53 59 84c15 42 19 86 19 129 c0 67 -16 136 -79 184c-29 24 -66 39 -113 39zM584 206l-149 -75c18 -5 73 -26 109 -42c40 -18 84 -34 131 -34c7 0 15 2 23 5c34 14 74 30 95 50c30 27 53 57 64 91c17 50 17 96 17 148c0 42 -3 85 -16 126c-8 28 -19 55 -46 76c-16 12 -35 22 -55 31 c-33 -18 -58 -36 -81 -53c3 -14 5 -48 5 -62c0 -93 -25 -185 -97 -261zM945 212c-30 -37 -54 -62 -84 -82c53 0 153 -32 221 -54c31 -10 62 -20 97 -20c14 0 27 6 38 12c12 8 18 21 18 52c0 34 -14 96 -28 140c-13 41 -21 81 -21 120c0 19 1 42 59 86l74 61 c-2 -1 -15 -1 -26 -1c-25 0 -70 20 -89 33c-24 16 -77 28 -98 28c-22 0 -46 -3 -65 -12c-23 -13 -39 -25 -55 -43c8 -36 15 -81 15 -118c0 -70 -22 -137 -56 -202'], + 0xE221: [682,35,1143,140,1024,'1024 578l-145 -64c-52 17 -91 50 -119 87c-84 -58 -117 -93 -117 -235c71 0 161 0 213 4l-70 -58c-47 3 -120 3 -149 3c0 -79 22 -160 96 -217c33 -26 80 -38 128 -38c35 0 82 16 121 30v-24c-51 -27 -98 -59 -146 -91c-25 -7 -67 -10 -70 -10c-45 0 -88 14 -120 38 c-20 15 -34 34 -47 52c-18 27 -32 56 -44 84c-64 -54 -132 -106 -212 -146c-22 -11 -53 -25 -71 -25c-34 0 -90 30 -132 53l89 81c19 -15 40 -29 64 -39c17 -8 35 -14 56 -14c16 0 31 4 44 10c20 9 38 21 54 33c29 23 43 56 53 86c14 45 19 91 19 137c-77 0 -173 0 -230 -3 l71 56c45 -2 107 -2 161 -2c0 38 -2 77 -13 115c-8 24 -19 46 -42 64s-52 33 -85 33c-41 0 -75 -11 -102 -33l-45 -37l-20 20c58 54 123 104 190 152c56 -5 112 -17 153 -48c37 -29 66 -66 72 -107c27 30 59 57 92 83c43 33 96 57 153 74c15 -30 32 -60 62 -82 c10 -9 27 -10 42 -10c16 0 33 4 46 7v-19'], + 0xE222: [689,214,1291,140,1072,'344 622c-34 0 -64 -15 -78 -25c-17 -13 -25 -30 -25 -49c0 -12 11 -26 20 -36c14 -16 29 -32 46 -46c29 -24 58 -59 58 -80c0 -11 -1 -21 -8 -30c-9 -14 -18 -28 -31 -39c-40 -32 -82 -57 -131 -82l-17 19c20 12 32 21 47 38c11 12 20 26 20 41c0 16 -30 46 -51 67 c-15 15 -34 29 -46 46c-8 9 -8 23 -8 35c0 23 12 44 27 64c19 27 46 51 73 73c50 38 122 65 208 65c57 0 101 -17 138 -45c29 -23 49 -62 62 -96c46 32 93 62 142 91c36 20 72 40 111 56c39 -40 89 -71 145 -95c13 -85 26 -172 26 -255c0 -123 -30 -246 -90 -360 c-56 -56 -122 -105 -202 -142c-64 -30 -137 -51 -213 -51c-67 0 -133 17 -180 53l55 97l16 -2c10 -25 23 -50 47 -69c30 -23 73 -31 114 -31c66 0 131 16 178 52c54 42 79 98 98 154c27 82 34 166 34 251c0 53 -2 107 -15 159c-8 31 -18 63 -44 86c-24 20 -54 31 -88 31 c-22 0 -56 -6 -74 -17c-23 -13 -34 -20 -49 -38c4 -18 7 -48 7 -66c0 -77 -14 -151 -65 -217c-50 -34 -110 -70 -158 -96c11 -1 75 -21 107 -34c30 -12 64 -20 96 -20c19 0 35 8 51 15c26 12 49 27 72 43l7 -21c-51 -55 -107 -107 -180 -143c-64 9 -124 32 -182 57 c-30 13 -70 20 -100 20c-25 0 -51 -7 -73 -17c-29 -13 -55 -31 -79 -50l-21 19c55 50 110 100 176 142c16 3 29 4 43 4c15 0 30 -1 48 -2c20 9 44 21 63 36c26 21 33 49 41 77c11 46 14 93 14 139c0 69 -25 138 -89 187c-25 20 -54 37 -93 37'], + 0xE223: [718,137,1008,124,801,'383 664l195 6c40 0 81 -5 110 -27c15 -12 26 -28 26 -46c0 -62 -47 -115 -103 -159c-29 -22 -75 -46 -110 -62c113 0 209 -4 276 -66c14 -14 24 -62 24 -78c0 -55 -9 -111 -31 -164c-18 -43 -46 -84 -88 -117c-73 -56 -172 -88 -276 -88c-39 0 -89 0 -120 2 c-15 2 -37 5 -37 20l1 51c0 11 -4 22 -14 29c-8 7 -19 11 -31 11c-25 0 -49 -9 -70 -20l-11 15c33 22 70 41 110 56c30 11 64 19 98 19c17 0 36 -3 48 -12c15 -12 16 -37 16 -49c0 -11 -2 -22 -4 -32c-3 -13 -3 -28 -3 -41c0 -10 12 -16 23 -19c6 -2 15 -3 24 -3 c50 0 96 16 130 43c31 23 46 60 57 92c17 42 21 87 21 131c0 29 -3 76 -30 96c-38 29 -93 37 -146 37c-40 0 -79 -8 -118 -17l-18 13l61 81c54 9 101 32 140 61c35 27 47 64 47 101c0 9 -2 18 -11 25c-19 14 -45 18 -70 18c-33 0 -66 -2 -98 -5c-34 -4 -101 -11 -105 -11 c-25 0 -49 7 -68 21c-6 5 -13 20 -16 33c29 37 73 84 101 108l20 1c-3 -6 -5 -13 -5 -20c0 -8 3 -17 12 -24c11 -8 28 -10 43 -10'], + 0xE224: [741,130,491,145,354,'354 712l-154 -13v-792l154 -7v-19c-71 0 -140 -5 -209 -11v871c50 -5 138 -5 209 -5v-24'], + 0xE225: [739,132,491,120,334,'279 700l-159 9v24c72 0 152 0 214 6v-871c-71 7 -142 8 -214 8v21l159 11v792'], + 0xE226: [735,-452,857,105,747,'431 735l316 -249l-49 -27l-271 214l-292 -221l-30 12'], + 0xE227: [472,32,872,192,751,'511 80l-205 -112c-43 32 -79 68 -112 105c-1 20 -2 39 -2 59c0 79 9 157 23 235c76 30 147 67 217 105c44 -16 91 -25 138 -32l73 28l9 -7c-19 -66 -19 -133 -19 -200c0 -39 1 -79 3 -118l58 -63c12 0 35 12 51 20l6 -18l-160 -111c-22 30 -48 58 -79 83zM510 110 l-2 256c-54 0 -108 11 -160 23c-17 -24 -30 -61 -30 -153c0 -32 2 -65 5 -98c27 -25 57 -52 89 -72c15 0 69 27 98 44'], + 0xE228: [691,32,857,200,659,'347 384l156 90c39 -17 101 -41 153 -60c2 -33 3 -67 3 -100c0 -73 -5 -146 -21 -218c-95 -48 -192 -94 -298 -128c-50 32 -99 65 -140 103c14 112 14 227 14 340c0 85 -3 171 -14 255l22 8l27 -78c59 34 124 71 184 95l17 -13c-29 -19 -49 -36 -73 -58 c-15 -13 -25 -30 -30 -47c-9 -26 -10 -52 -10 -78v-107zM523 347c-44 20 -71 29 -104 37c-24 -4 -61 -23 -80 -36c0 -72 0 -193 1 -216c24 -18 52 -40 82 -55c21 -11 43 -20 67 -23c22 40 32 83 36 126c3 25 4 49 4 72c0 32 -2 63 -6 95'], + 0xE229: [473,26,719,201,571,'571 429l-85 -96h-11c-52 42 -99 57 -126 63c-14 -19 -19 -96 -19 -126c0 -38 4 -78 7 -116c35 -29 71 -57 111 -82l117 42v-21c-69 -41 -185 -104 -217 -119c-52 34 -99 73 -143 114c-3 42 -4 87 -4 130c0 53 3 104 14 148l215 107c50 -8 98 -22 141 -44'], + 0xE22A: [632,29,856,104,667,'388 459l24 -10c-22 -15 -51 -41 -72 -60c-11 -48 -11 -88 -11 -135c0 -35 2 -71 5 -106c43 -34 93 -62 148 -82c27 40 55 109 55 243c0 34 -2 68 -5 102c-55 40 -114 78 -180 109c-40 20 -85 38 -134 38c-33 0 -69 -9 -99 -20l-15 19c62 30 129 53 196 75 c59 -2 109 -24 160 -49c65 -31 139 -71 199 -108c6 -36 8 -72 8 -107c0 -88 -16 -176 -48 -260c-54 -40 -154 -93 -235 -137c-64 33 -126 71 -181 114c-3 18 -5 45 -5 78c0 46 3 106 8 172c52 43 122 89 182 124'], + 0xE22B: [471,28,728,193,577,'564 108l10 -16c-71 -41 -142 -82 -217 -120c-58 34 -110 73 -159 114c-3 36 -5 72 -5 108c0 59 5 118 15 176c71 34 180 87 212 101c49 -38 100 -76 157 -109c-67 -51 -176 -122 -265 -181c0 -1 6 -38 19 -45c29 -20 59 -38 112 -68c34 5 82 23 121 40zM310 214 c50 31 105 67 151 102c-43 24 -112 71 -128 83c-17 -69 -23 -114 -23 -185'], + 0xE22C: [681,242,635,146,531,'383 405h148v-7l-18 -39h-133c0 -117 0 -236 -21 -347c-3 -15 -11 -32 -20 -46l-124 -208l-22 4c16 34 44 97 49 131c7 38 10 83 10 125v341h-106v8l16 38h80c-14 40 -19 75 -27 115c14 48 37 92 83 127c29 23 71 34 112 34c16 0 34 -5 47 -12c22 -10 40 -23 58 -38 l-80 -82h-18c-12 17 -22 30 -40 43c-12 9 -29 19 -45 19s-31 -2 -43 -11c-12 -10 -19 -25 -19 -39c0 -33 29 -61 58 -85c16 -13 30 -26 41 -41c8 -11 10 -16 14 -30'], + 0xE22D: [473,208,863,123,700,'525 83l-218 -133c61 -30 152 -75 195 -75c18 0 36 1 48 11c10 7 10 26 10 40c0 37 -19 106 -35 157zM123 -138l185 115l-102 93c-4 38 -6 77 -6 115c0 61 6 121 24 181c70 38 142 75 216 107c46 -19 100 -41 141 -47l95 39l14 -4c-16 -30 -24 -62 -30 -94 c-7 -45 -9 -90 -9 -135c0 -86 35 -169 49 -254c-67 -66 -141 -128 -222 -184c-11 -1 -23 -2 -34 -2c-35 0 -70 6 -104 14c-56 15 -108 39 -156 65l-42 -24zM526 111v66c0 56 3 111 6 166c-63 8 -132 35 -178 57c-12 -52 -19 -112 -19 -166c0 -34 2 -68 7 -102 c27 -25 60 -54 98 -70'], + 0xE22E: [687,203,886,202,662,'347 507l-2 -130c56 28 109 62 158 94c50 -23 103 -43 156 -61c2 -47 3 -93 3 -139c0 -40 -1 -81 -3 -121c-3 -61 -7 -122 -22 -181c-53 -57 -127 -117 -210 -172l-28 14c25 15 56 39 82 61c19 17 30 44 38 68c10 33 20 87 20 175c0 74 -7 148 -14 222 c-35 17 -82 35 -121 42l-59 -32c-4 -39 -6 -78 -6 -117c0 -34 2 -68 6 -102c17 -24 37 -46 59 -68c-46 -24 -88 -54 -127 -84c-21 30 -47 59 -75 86c9 123 17 246 17 370c0 77 -3 155 -11 232l21 9l27 -76c56 31 117 65 170 90l20 -15c-13 -7 -25 -14 -37 -23 c-50 -37 -62 -90 -62 -142'], + 0xE22F: [686,26,574,107,465,'411 86l48 19l6 -18c-63 -34 -121 -74 -179 -113l-80 82c8 58 11 117 11 176c0 45 -2 89 -5 134l-42 21l-43 -17l-20 12c52 31 103 61 150 96c14 -10 59 -38 90 -56c-3 -56 -5 -112 -5 -169c0 -38 1 -77 3 -115c0 -10 5 -20 13 -29c9 -11 22 -27 34 -27c5 0 17 3 19 4z M185 613l100 73c26 -25 55 -50 86 -71l-88 -75c-35 22 -68 47 -98 73'], + 0xE230: [683,207,574,84,367,'125 382l143 101c31 -21 60 -39 93 -58c4 -56 6 -112 6 -169c0 -95 -7 -191 -28 -285c-68 -61 -156 -127 -238 -178l-17 18c38 21 77 46 105 71c29 27 40 64 44 100c5 69 5 157 5 235c0 37 0 90 -3 110c-1 15 -5 30 -18 41c-9 7 -21 12 -34 12c-1 0 -27 -11 -42 -17z M364 614l-90 -73c-30 22 -61 44 -88 70l90 72c10 -10 58 -46 88 -69'], + 0xE231: [683,25,720,141,580,'225 115l5 193h-89l16 38h75c0 107 0 244 -13 319l23 8c10 -25 30 -75 30 -76c50 34 107 62 165 86l17 -16c-29 -14 -45 -26 -63 -47c-12 -15 -22 -31 -25 -48c-7 -23 -8 -49 -8 -73c45 29 104 64 152 86c17 -19 35 -39 48 -60c9 -14 14 -25 14 -41 c0 -21 -16 -38 -32 -54l-91 -84h106l-19 -38h-182c0 -55 1 -118 7 -172l99 -68c11 0 76 25 110 41l10 -19l-218 -115l-142 96c3 15 4 29 5 44zM358 346h35c18 0 40 19 54 33c18 17 28 36 28 56c0 30 -22 60 -45 83c-18 -10 -36 -21 -48 -34c-13 -15 -18 -35 -20 -52 c-3 -28 -4 -57 -4 -86'], + 0xE232: [682,24,579,215,451,'451 86l-166 -110c-24 26 -70 78 -70 79c9 73 12 162 12 257c0 113 -4 239 -9 349l22 4l21 -72c52 32 110 63 169 89l12 -9c-16 -10 -33 -26 -43 -35c-19 -17 -29 -34 -35 -56c-9 -31 -13 -63 -13 -95c-1 -51 -2 -104 -2 -157c0 -76 2 -151 10 -218l29 -29 c10 0 35 9 54 18'], + 0xE233: [476,31,1223,123,1095,'667 376l162 95c51 -21 104 -39 158 -53c-11 -56 -15 -112 -15 -168c0 -42 2 -84 5 -126l31 -38c4 -4 12 -9 19 -9c2 0 12 3 16 5l38 18l14 -22c-64 -33 -123 -70 -181 -108c-25 31 -52 61 -83 89c12 34 16 92 16 154c0 45 -2 91 -4 131c-33 13 -82 30 -118 38l-60 -34 c-3 -39 -4 -76 -4 -115c0 -34 1 -68 2 -102l62 -73l-132 -86c-22 27 -65 80 -65 81c10 43 11 99 11 157c0 46 0 93 -2 136c-27 11 -82 24 -116 31l-66 -34l-1 -65c0 -51 2 -102 6 -152l61 -74l-126 -83c-23 31 -47 63 -72 90c6 45 9 95 9 146s-3 103 -5 152l-39 27l-51 -19 l-14 13l148 98c25 -21 54 -40 86 -56c-2 -17 -5 -50 -5 -51c60 30 115 64 166 103c49 -21 98 -43 152 -56c-1 -13 -3 -39 -3 -40'], + 0xE234: [474,28,928,108,774,'340 129l68 -67l-124 -90c-26 26 -54 53 -86 76c9 25 11 69 11 120c0 64 -4 139 -7 198l-27 22l-47 -21l-20 14l143 93c29 -18 61 -38 91 -50c-2 -16 -2 -47 -2 -48c59 29 114 62 166 98c46 -22 106 -44 162 -63c-8 -70 -12 -140 -12 -211c0 -22 0 -45 1 -68l52 -52 c11 3 39 15 55 24l10 -16c-57 -32 -115 -74 -168 -114c-25 32 -58 64 -88 94c9 48 12 99 12 151c0 42 -2 84 -4 126c-34 15 -81 27 -118 36l-69 -31c0 -2 0 -146 1 -221'], + 0xE235: [482,34,879,222,672,'384 -34c-57 30 -111 62 -160 99c-1 20 -2 39 -2 59c0 80 9 159 25 238c78 38 154 78 228 120c59 -33 126 -56 195 -72c1 -24 2 -49 2 -73c0 -39 -2 -77 -5 -116c-3 -44 -9 -89 -23 -132c-80 -48 -168 -89 -260 -123zM520 55c20 71 30 144 30 217c0 27 -1 55 -4 82 c-56 7 -109 24 -159 43c-17 -25 -35 -79 -35 -159c0 -35 4 -71 8 -107c46 -33 99 -62 160 -76'], + 0xE236: [558,208,873,103,676,'371 -161l-124 -47l-19 6c0 1 5 156 7 234c-45 0 -86 -18 -119 -41l-13 17c39 33 91 77 131 89v262c-26 21 -50 51 -58 78c34 44 75 83 119 121l22 -6c-11 -13 -21 -27 -21 -42c0 -14 8 -26 17 -37c13 -17 30 -32 48 -45v-42l158 96l148 -57c6 -26 9 -87 9 -115 c0 -85 -8 -143 -33 -226c-61 -29 -116 -65 -167 -103c-32 22 -72 36 -115 41c0 -61 5 -122 10 -183zM416 391l-55 -35v-226c60 -8 120 -25 173 -53c12 42 15 80 15 125c0 50 -4 100 -11 147c-36 14 -83 32 -122 42'], + 0xE237: [485,212,864,201,672,'648 -171l-124 -41l-21 10c13 93 16 187 16 280l-207 -108l-108 103c-2 22 -3 44 -3 67c0 77 11 155 29 232l214 106c44 -16 90 -29 137 -36l77 43l14 -6c-34 -103 -34 -291 -34 -438c0 -71 5 -141 10 -212zM521 358c-61 4 -125 23 -159 39c-18 -29 -30 -92 -30 -187 c0 -20 0 -41 1 -62c23 -28 53 -61 83 -83c33 11 68 29 99 45c0 83 0 173 6 248'], + 0xE238: [473,26,714,118,603,'436 334l-50 39c-6 -3 -16 -10 -20 -14c-2 -18 -4 -73 -4 -123c0 -30 0 -60 2 -89c1 -11 8 -21 17 -29c1 0 46 -32 68 -48l98 31l1 -21l-190 -106c-42 37 -89 70 -138 102c14 43 15 111 15 146c0 44 -1 74 -5 118c-16 15 -32 29 -51 40l-49 -12l-12 14l153 91l94 -62v-31 l117 91c18 -23 36 -49 58 -66c6 -5 15 -7 24 -7c10 0 27 5 39 9v-13c-31 -26 -72 -51 -112 -74c-3 -2 -6 -4 -13 -4c-17 0 -26 6 -42 18'], + 0xE239: [480,35,784,79,635,'635 442l-157 -100c-20 0 -45 9 -66 17c-32 14 -62 31 -90 49c-6 -23 -10 -46 -10 -69c0 -33 10 -70 31 -100c56 17 114 40 170 63c24 -10 47 -22 68 -36c6 -33 10 -67 10 -101c0 -41 -6 -82 -21 -121c-73 -23 -147 -48 -215 -79c-28 21 -57 41 -92 56 c-24 11 -49 20 -78 20c-35 0 -67 -15 -94 -31l-12 16l138 99c19 4 38 6 57 6c43 0 128 -55 182 -93c5 23 5 50 5 74c0 27 -2 55 -5 83c-17 15 -36 30 -63 30c-17 0 -33 -5 -48 -11c-22 -9 -69 -31 -105 -47c-16 13 -32 33 -45 51c-4 6 -5 13 -5 20v139l205 103l73 -38 c19 -10 41 -14 63 -14c26 0 66 17 92 33'], + 0xE23A: [654,27,642,157,553,'374 359c0 -75 0 -149 6 -223c1 -7 3 -14 9 -19c19 -20 51 -39 77 -44c9 1 58 20 82 31l5 -20l-196 -111c-35 32 -74 61 -117 87c7 74 7 200 7 299h-90v8l16 38h74v148l183 101l13 -14c-22 -16 -44 -34 -52 -42c-10 -9 -15 -118 -15 -193h117v-7l-17 -39h-102'], + 0xE23B: [473,35,856,115,769,'512 424l133 44l15 -9c-16 -100 -18 -200 -18 -301c0 -9 15 -54 40 -74c2 -1 8 -5 12 -5c3 0 11 1 14 2l55 20l6 -13l-175 -120l-70 105c-68 -25 -137 -73 -179 -108c-46 32 -116 60 -166 77c17 23 29 47 38 73c11 36 19 73 19 109c0 45 -10 88 -21 132 c-12 12 -25 23 -46 28l-39 -19l-15 14l147 94c4 -3 58 -40 86 -59c2 -52 4 -104 4 -155c0 -31 -3 -62 -9 -93c-6 -21 -14 -43 -29 -62c36 -7 87 -26 129 -42l73 36c0 103 0 214 -4 326'], + 0xE23C: [546,28,874,167,663,'621 80l-278 -108c-39 36 -84 67 -133 94c9 37 9 97 9 146c0 46 -3 96 -6 143c-21 21 -46 47 -46 67c0 34 65 87 111 124l22 -4c-12 -12 -20 -27 -20 -42c0 -21 40 -58 68 -84l-2 -29l160 89l153 -61c2 -33 4 -66 4 -99c0 -36 -2 -72 -6 -108c-5 -44 -12 -88 -36 -128z M422 389c-26 0 -56 -16 -76 -28v-209c0 -6 0 -14 2 -19c3 -7 10 -13 18 -19c25 -19 64 -38 101 -55c3 -1 11 -3 15 -3s16 2 19 11c25 64 32 129 32 196c0 28 -1 57 -3 86c-34 16 -96 40 -108 40'], + 0xE23D: [549,33,1218,166,1002,'667 370l185 100c47 -23 98 -43 150 -61c-2 -75 -3 -150 -15 -225c-6 -44 -16 -89 -43 -128c-78 -27 -154 -55 -226 -89c-36 20 -72 39 -109 55c-28 12 -56 22 -87 29c11 35 13 111 13 186c0 33 -1 66 -1 95c-31 20 -98 50 -107 50c-14 0 -47 -11 -73 -27 c-2 -28 -3 -57 -3 -85c0 -52 3 -104 7 -157l56 -63l-120 -80c-27 32 -61 71 -90 89c12 29 21 86 21 157c0 46 -3 93 -7 140l-40 39c-9 9 -12 22 -12 33c0 4 1 8 4 11c33 38 71 80 110 110l18 -2c-12 -14 -17 -31 -17 -47c0 -21 44 -57 75 -81v-37c42 22 101 59 150 89 c51 -26 105 -48 161 -67v-34zM755 378c-12 0 -59 -18 -85 -33c-4 -41 -6 -83 -6 -124c0 -23 0 -45 2 -68c1 -12 7 -25 20 -32c37 -22 77 -41 121 -57c2 -1 9 -3 12 -3s11 4 16 17c16 34 23 69 28 104c8 51 9 102 9 154c-37 17 -105 42 -117 42'], + 0xE23E: [471,188,713,114,599,'570 82l-197 -111l-100 73c-21 -3 -36 -15 -50 -27c-19 -15 -27 -35 -27 -55c0 -13 7 -26 19 -36c39 -31 95 -40 150 -48l2 -11l-103 -55c-31 7 -63 17 -92 31c-20 10 -40 23 -50 40c-6 8 -8 17 -8 26c0 10 2 20 5 30c38 46 77 92 127 131c6 43 6 92 6 138 c0 44 -1 88 -5 131c0 7 -7 16 -10 18l-51 24c-10 0 -33 -10 -42 -16l-18 12c50 33 118 77 156 94l101 -58v-36l123 91c26 -31 58 -62 93 -80l-87 -75c-11 2 -22 4 -31 9c-24 14 -61 43 -67 48c-4 -2 -23 -18 -27 -24c-5 -24 -7 -49 -7 -85c0 -43 0 -97 3 -129 c0 -1 2 -6 3 -8c5 -7 26 -20 86 -56c13 0 62 18 96 32'], + 0xE23F: [559,222,857,171,672,'668 412c3 -42 4 -83 4 -123c0 -88 -6 -170 -14 -250c0 -40 -31 -73 -62 -105c-34 -34 -68 -68 -110 -98c-31 -22 -74 -43 -107 -58l-34 25c37 16 91 41 101 48c25 19 43 39 53 66c7 19 15 43 20 63c13 67 16 134 16 202c0 52 -3 104 -8 156c-31 18 -67 34 -105 43 l-65 -25v-215c0 -11 0 -24 9 -33l48 -55l-104 -92c-29 31 -75 78 -105 99c20 57 20 196 20 295c0 4 -2 10 -5 12c-22 19 -49 44 -49 65c0 14 10 27 20 39c19 22 61 60 93 88l20 -6c-11 -15 -19 -29 -19 -46c0 -13 13 -30 25 -42c16 -17 30 -27 49 -39v-41l154 93 c50 -25 101 -47 155 -66'], + 0xE240: [472,215,717,96,520,'486 -103l-172 -112c-60 0 -124 6 -168 40c-22 17 -39 38 -50 60c75 98 166 188 275 264c-36 23 -98 32 -147 35v10l101 65c19 12 39 27 39 47c0 17 -19 40 -37 50c-20 11 -32 15 -56 15c-14 0 -27 -5 -41 -10c-19 -8 -37 -19 -54 -30l-17 15c58 47 123 88 190 126 c31 -10 60 -22 83 -40c24 -19 45 -40 45 -67c0 -12 -20 -29 -35 -42l-71 -59c46 -13 89 -30 131 -50c12 -46 18 -93 18 -140c0 -60 -14 -117 -34 -177zM382 120c-67 -50 -165 -123 -165 -166c0 -20 13 -36 32 -49c56 -38 109 -39 119 -39c7 13 22 44 22 130 c0 33 -2 74 -8 124'], + 0xE241: [695,-432,488,116,359,'149 432l-25 152c-5 24 -8 49 -8 73c0 10 1 22 12 29c9 6 21 9 33 9c10 0 20 0 29 -5c6 -4 14 -8 14 -15v-52l-28 -191h-27zM306 432l-28 193c-2 14 -7 38 -7 43s3 11 9 15c11 8 26 9 42 9c11 0 22 -1 29 -8c5 -3 8 -7 8 -11c0 -16 0 -32 -1 -47l-24 -194h-28'], + 0xE242: [704,10,647,162,402,'162 624l233 80c2 -3 7 -6 7 -7c-5 -92 -10 -184 -10 -275c0 -135 0 -287 10 -405l-102 -27l-12 8c3 140 6 279 6 419c0 50 0 103 -7 151c-2 17 -18 32 -40 32h-85v24'], + 0xE243: [684,34,790,185,614,'609 439c3 -25 5 -71 5 -111c0 -31 -2 -61 -5 -79c-4 -48 -9 -96 -31 -140l-224 -143c-60 34 -119 69 -166 115c-2 30 -3 57 -3 85c0 44 2 93 7 169c40 32 82 65 125 92c-38 12 -80 26 -104 45c-18 15 -26 35 -26 56c0 61 42 115 95 156l14 -10c-21 -21 -36 -49 -36 -78 c0 -23 13 -45 34 -62c32 -28 77 -45 121 -58c62 -19 127 -30 194 -37zM507 371l-160 48c-33 -35 -44 -56 -52 -73c-10 -23 -15 -56 -15 -92c0 -39 4 -83 8 -119c15 -16 35 -29 54 -41c27 -16 56 -30 86 -43c4 -1 7 -3 11 -3c6 0 11 3 17 10c33 44 50 96 56 147 c3 21 4 41 4 62c0 34 -4 71 -9 104'], + 0xE244: [616,30,791,139,616,'378 451l-71 -55c-21 -40 -22 -99 -22 -136c0 -40 3 -80 9 -120c3 -22 75 -67 139 -97c78 75 81 223 81 271c0 31 -2 61 -4 92c-83 71 -177 125 -290 155c-25 0 -48 -4 -72 -11l-9 19c48 20 97 35 148 47c95 -18 238 -79 326 -157c2 -29 3 -58 3 -87 c0 -162 -35 -245 -46 -270c-72 -49 -149 -91 -227 -132c-54 34 -106 71 -152 112c-2 29 -3 57 -3 86c0 64 5 128 15 192c46 37 99 69 152 100'], + 0xE245: [681,257,593,133,504,'504 665v-16l-85 -83c-20 19 -45 35 -75 35c-18 0 -41 -4 -54 -15c-14 -11 -21 -25 -21 -42c0 -23 10 -45 21 -66c17 -33 34 -62 55 -92h141l-16 -35h-123c0 -144 -3 -391 -22 -421l-119 -187l-21 7c12 30 29 78 46 150c11 46 12 92 12 138v313h-110l18 34h95 c-5 45 -10 100 -10 136c0 48 27 93 67 127c22 18 47 33 77 33s58 -14 82 -29c2 -2 6 -4 9 -4c4 0 6 1 9 3'], + 0xE246: [681,242,585,133,486,'347 351l-6 -310c0 -37 -4 -75 -17 -110l-108 -173l-25 2c17 44 44 155 44 156c4 28 7 58 7 87c0 116 3 232 3 348h-112l19 34h93c0 22 -20 85 -30 127c-3 11 -3 34 -3 48c35 46 72 82 117 121c25 -15 52 -33 84 -33c16 0 42 10 53 19l9 -7l-80 -75c-40 0 -80 6 -118 13 c0 -33 17 -64 30 -95c16 -36 35 -80 40 -117h139l-15 -35h-124'], + 0xE247: [470,214,797,158,629,'614 -53l-150 -139c-29 -16 -62 -22 -96 -22c-79 0 -153 25 -210 71l47 95l13 1c6 -24 25 -44 46 -62c37 -30 87 -41 138 -41c39 0 81 10 109 33c18 15 22 40 22 61c0 31 -16 103 -28 154l-217 -129l-100 96c-1 37 -3 74 -3 111c0 115 15 174 20 192 c62 36 146 81 193 102c43 -23 91 -37 138 -46l84 40l9 -5c-10 -23 -15 -43 -20 -69c-7 -37 -8 -85 -8 -122c-1 -45 -2 -132 -2 -133c9 -51 25 -137 25 -153c0 -12 -4 -24 -10 -35zM373 48l133 76c0 68 3 148 9 228c-71 6 -138 18 -204 38c-15 -26 -28 -65 -28 -145 c0 -41 2 -82 7 -123c23 -23 55 -55 83 -74'], + 0xE248: [687,20,593,127,475,'299 351v-233l72 -49c4 -3 8 -5 13 -5c3 0 11 3 15 5c2 0 47 20 71 30l1 -23l-165 -96l-111 86c6 80 8 187 8 285h-76l20 35h57c0 99 -1 198 -9 285l20 5l27 -78c51 31 97 63 150 89l19 -10c-27 -19 -48 -37 -71 -63c-29 -32 -39 -74 -42 -114c41 28 127 83 128 83 c19 -25 36 -51 49 -79l-43 -55c-12 14 -25 27 -40 39c-9 8 -21 18 -35 18c-9 0 -18 -4 -24 -10c-34 -28 -36 -71 -36 -110h135l-20 -35h-113'], + 0xE249: [578,21,594,132,515,'515 84l-165 -105c-38 28 -113 82 -114 82c3 39 3 192 3 290h-107l19 35h88c0 47 0 100 -3 148l100 44l13 -4c-12 -60 -17 -127 -17 -188h141l-22 -35h-119c0 -77 0 -208 1 -228c27 -19 65 -42 86 -54c2 -2 5 -2 8 -2c5 0 10 2 14 4c2 0 45 20 66 30'], + 0xE24A: [474,26,794,107,714,'602 468l9 -6c-12 -79 -18 -158 -18 -237c0 -32 2 -64 7 -94c2 -14 12 -28 23 -40c4 -5 12 -8 20 -8c3 0 10 1 14 2c18 5 32 11 50 18l7 -15c-51 -34 -97 -70 -143 -107l-10 3c-18 36 -32 62 -60 94c-80 -31 -188 -104 -188 -104c-23 16 -106 62 -150 74 c16 22 25 51 32 79c11 45 18 91 18 137c0 28 0 55 -8 82c-7 18 -17 37 -35 50l-45 -20l-18 10l133 88c19 -19 38 -38 62 -53c1 -22 1 -43 1 -65c0 -31 -1 -62 -2 -92c-2 -54 -11 -108 -29 -160l119 -49l108 46c4 50 6 114 6 163c0 52 -2 105 -5 160'], + 0xE24B: [493,13,795,146,644,'410 493c54 -13 105 -38 144 -72c53 -43 90 -99 90 -161c0 -75 -43 -143 -105 -195c-52 -42 -114 -78 -186 -78c-51 0 -100 16 -135 46c-51 43 -72 104 -72 165c0 73 41 141 102 193c48 40 102 75 162 102zM331 418c-27 -14 -42 -31 -53 -45c-28 -34 -38 -81 -38 -124 c0 -57 19 -114 68 -154c28 -23 71 -42 111 -42c34 0 52 2 76 16c46 27 59 99 59 143c0 55 -24 109 -71 148c-33 28 -103 55 -152 58'], + 0xE24C: [469,1,795,152,649,'456 469l12 -8c-12 -77 -15 -154 -15 -232c0 -54 2 -108 4 -162c0 -6 1 -12 6 -16c4 -4 8 -8 14 -8c58 0 114 1 172 3l-1 -47c-83 4 -166 7 -249 7c-81 0 -163 -2 -247 -7v45c58 -1 115 -1 173 -1c7 0 14 1 19 6c4 2 5 12 5 19c2 18 2 128 2 192c0 44 0 102 -8 131 c-5 16 -20 25 -38 30c-20 5 -56 9 -83 12l-1 27c79 0 157 2 235 9'], + 0xE24D: [474,-1,795,168,679,'667 73l12 -6l-30 -66h-479l-2 16c1 0 80 62 120 94c49 38 96 79 133 125c24 30 47 61 47 97c0 23 -13 44 -33 60c-18 14 -42 22 -67 22c-35 0 -91 -27 -134 -48l-12 18c35 25 73 49 114 66c31 13 65 23 99 23s66 -12 89 -32c23 -19 35 -44 35 -70c0 -17 -7 -34 -16 -51 c-12 -23 -28 -45 -45 -66c-54 -64 -119 -121 -185 -177c-2 -2 -5 -4 -5 -5c0 -8 12 -8 19 -8c114 3 339 8 340 8'], + 0xE24E: [474,182,795,143,613,'392 210l4 -7c54 0 121 -12 161 -45c37 -31 56 -73 56 -116c0 -56 -28 -110 -76 -149c-58 -50 -140 -75 -223 -75c-61 0 -119 16 -171 41l19 27c43 -19 89 -35 138 -35c50 0 101 10 135 39c45 37 68 87 68 139c0 39 -12 78 -46 106c-20 17 -49 24 -77 29 c-43 7 -86 8 -129 6v34c34 2 69 6 103 16c25 8 50 18 69 34c23 20 41 44 41 72c0 26 -11 52 -33 71c-22 18 -52 25 -83 25c-15 0 -29 -4 -43 -9c-20 -8 -38 -18 -54 -28l-20 11c28 22 57 44 92 59c28 11 60 19 92 19c38 0 78 -7 106 -30c25 -20 38 -47 38 -76 c0 -37 -18 -72 -49 -98c-30 -25 -78 -46 -118 -60'], + 0xE24F: [476,192,795,109,675,'553 476l6 -3c-3 -83 -5 -167 -5 -251c0 -61 1 -121 4 -182c39 1 78 2 117 5l-9 -46h-105c0 -53 0 -127 3 -161l-94 -30l-14 9c7 61 8 121 8 182h-354l-1 23l347 429zM197 41h267c0 108 0 246 -8 324h-15c-97 -101 -178 -210 -249 -324h5'], + 0xE250: [458,184,795,153,626,'602 458l-29 -80h-310c-9 0 -21 -3 -21 -12v-176l11 -5c48 19 101 30 155 30c57 0 116 -12 158 -47c40 -33 60 -79 60 -126c0 -56 -25 -111 -73 -151c-70 -59 -170 -75 -269 -75c-44 0 -89 10 -131 25l15 25c37 -12 77 -20 116 -20c54 0 109 11 148 43 c42 35 67 83 67 134c0 41 -12 83 -47 112c-29 24 -68 34 -108 34c-50 0 -95 -24 -128 -55l-22 11v333h408'], + 0xE251: [700,13,795,151,662,'649 691l-11 -57l-8 -5c-23 8 -48 12 -72 12c-73 0 -138 -32 -192 -73c-85 -67 -113 -166 -114 -262l8 -1c64 43 139 72 222 72c46 0 91 -16 124 -43c38 -33 56 -78 56 -123c0 -60 -36 -113 -86 -155c-52 -43 -121 -69 -196 -69c-54 0 -107 15 -145 47 c-64 53 -84 130 -84 204c0 125 54 249 161 338c42 37 90 69 144 92c43 19 91 32 140 32c18 0 36 -4 53 -9zM255 275c4 -42 12 -96 27 -136c11 -29 26 -58 51 -79c22 -17 60 -34 90 -34c39 0 55 1 88 18c42 21 56 87 56 128c0 40 -20 79 -55 107c-27 24 -90 39 -120 39 c-64 0 -94 -16 -137 -43'], + 0xE252: [468,181,795,141,695,'453 458h242v-16c-95 -112 -186 -225 -273 -341c-68 -92 -133 -185 -189 -282h-88l-4 13c153 177 292 361 431 545c-1 0 -5 3 -7 5h-398l38 86c83 -8 166 -10 248 -10'], + 0xE253: [706,10,795,145,650,'362 344c-33 -14 -59 -35 -79 -58c-25 -31 -38 -72 -38 -109c0 -41 16 -82 51 -112c25 -20 72 -44 107 -44c40 0 65 10 85 19c32 17 59 63 59 128c0 41 -26 77 -61 106c-30 25 -88 50 -124 70zM457 394c46 -27 116 -69 138 -87c35 -29 55 -68 55 -110 c0 -48 -19 -97 -62 -130c-63 -48 -127 -77 -228 -77c-58 0 -117 11 -159 46c-38 32 -56 76 -56 121c0 42 14 85 52 115c42 36 93 63 146 88c-40 22 -76 49 -103 81c-21 27 -36 57 -36 89c0 40 17 81 54 108c42 31 92 51 144 68c36 -2 72 -6 105 -15c26 -7 50 -16 69 -32 c29 -24 43 -57 43 -91s-18 -66 -42 -93c-31 -34 -77 -61 -120 -81zM436 410c51 28 80 81 80 134c0 28 -8 57 -32 78c-32 26 -76 47 -104 55c-24 -7 -62 -30 -74 -54c-10 -18 -12 -40 -12 -60c0 -26 16 -50 35 -71c25 -30 71 -62 107 -82'], + 0xE254: [470,182,795,129,659,'528 102l-7 4c-46 -31 -108 -72 -179 -72c-52 3 -103 13 -139 44c-51 41 -74 98 -74 156c0 52 16 106 62 143c42 36 121 67 187 93c39 -2 79 -6 116 -16c30 -9 58 -20 79 -38c30 -25 50 -57 63 -90c15 -41 23 -83 23 -126c0 -105 -48 -207 -138 -282 c-88 -73 -214 -100 -338 -100v28c90 0 184 19 249 73c55 46 83 121 96 183zM504 125c25 21 36 50 36 79c0 63 -17 135 -72 181c-30 25 -84 45 -121 49c-19 -7 -39 -16 -57 -34c-37 -37 -54 -89 -54 -136c0 -51 21 -102 65 -139c24 -20 56 -31 91 -31c41 0 83 7 112 31'], + 0xE255: [697,27,1054,123,948,'577 319l-214 -164c48 0 78 -21 105 -43l57 -48c15 1 113 53 173 85v325c0 42 -3 88 -6 127l153 96l19 -11c-18 -13 -43 -32 -51 -42c-8 -9 -12 -21 -13 -32c-6 -54 -6 -156 -6 -234c0 -61 2 -121 6 -181c1 -11 2 -23 6 -32c14 -30 30 -61 52 -85c2 -3 7 -4 11 -4 c6 0 12 2 16 3c20 7 38 14 56 22l7 -16l-173 -112c-37 49 -57 98 -76 150l-243 -150c-17 23 -36 45 -58 64c-29 23 -77 40 -117 40c-45 0 -84 -17 -126 -40l-20 11l135 85c79 49 169 106 217 158c41 44 52 107 52 161c0 47 -17 94 -58 128c-40 33 -91 53 -148 53 c-38 0 -74 -12 -102 -35c-19 -15 -31 -38 -31 -60c0 -10 6 -19 13 -27c11 -14 24 -26 38 -37c18 -15 34 -31 48 -48c8 -12 15 -24 15 -38c0 -26 -17 -50 -37 -70c-29 -27 -65 -47 -103 -63l-19 11c21 10 40 23 56 39c12 12 20 26 20 41c0 10 -6 19 -13 27 c-11 13 -24 25 -37 37c-31 26 -58 58 -58 96c0 40 35 70 68 98c29 24 136 82 232 82c56 0 108 -13 149 -46c40 -34 63 -77 63 -124c0 -68 -22 -136 -58 -197'], + 0xE256: [691,27,1278,156,1075,'743 -27c-68 0 -135 21 -195 41c-54 18 -107 34 -150 34c-61 0 -121 -22 -171 -48l-15 21l149 73c150 74 173 130 176 158c4 32 7 103 9 150c0 162 -114 226 -190 226c-47 0 -67 -7 -95 -30c-19 -15 -21 -36 -21 -57c0 -14 21 -38 46 -63c29 -29 61 -64 61 -89 c0 -72 -108 -118 -148 -134l-18 11c32 15 77 48 77 81c0 12 -23 39 -53 70c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 107 86 220 86c69 0 140 -56 172 -111c27 23 64 46 95 64c45 24 94 42 148 42c27 0 56 -4 77 -21c12 -10 19 -37 26 -66c8 -34 17 -71 37 -88 c7 -5 21 -6 30 -6c18 2 36 6 53 11v-22c-45 -14 -84 -26 -123 -48l-107 -63c132 0 211 -65 211 -159c0 -43 -9 -63 -27 -101c-141 -99 -214 -150 -286 -150zM644 350c47 14 126 38 156 49c36 12 67 27 117 56c-13 5 -20 16 -26 26c-10 19 -15 39 -19 59c-5 26 -14 59 -27 70 c-16 13 -42 24 -64 24c-47 0 -72 -13 -96 -35c-22 -20 -40 -51 -50 -76c7 -25 12 -81 12 -124c0 -14 -2 -35 -3 -49zM602 207l-140 -90c71 0 138 -21 204 -43c50 -16 119 -37 153 -37c32 0 62 9 83 27c36 29 52 70 52 111c0 42 -19 82 -55 111c-44 37 -101 55 -162 55 c-33 0 -65 -5 -95 -16c-5 -41 -17 -81 -40 -118'], + 0xE257: [686,24,928,168,833,'417 601l39 -16c75 45 162 74 248 101l34 -81c4 -9 6 -12 12 -18c4 -4 13 -5 23 -5c19 0 45 5 60 9v-23c-42 -17 -94 -36 -141 -41c-32 16 -68 64 -96 101c-15 -4 -29 -11 -38 -21c-19 -20 -21 -38 -21 -47c0 -18 8 -48 16 -68c6 -16 24 -62 24 -93c0 -35 -8 -71 -38 -96 c-46 -37 -107 -56 -171 -64l-14 16c33 7 63 22 89 43c19 16 19 45 19 69c0 23 -14 70 -25 107c-7 19 -12 40 -12 60c0 10 2 20 4 30c-42 -1 -81 -15 -108 -42c-43 -45 -57 -103 -57 -160c0 -84 24 -169 96 -229c71 -60 170 -87 270 -87c41 0 70 6 87 13l102 47v-20 c-50 -35 -115 -71 -172 -102c-32 -6 -66 -8 -99 -8c-105 0 -211 28 -285 89c-37 30 -56 66 -71 106c-19 48 -24 98 -24 148c0 63 18 125 51 181c62 39 128 75 198 101'], + 0xE258: [690,27,1191,129,992,'539 559l19 -11c-17 -9 -31 -20 -46 -32c-15 -13 -30 -27 -42 -42c-7 -10 -14 -21 -14 -32c0 -14 30 -51 50 -75c24 -28 58 -69 58 -90c0 -30 -21 -56 -45 -77c-34 -31 -91 -54 -133 -69c52 -9 111 -25 160 -40c54 -16 141 -43 165 -43c26 0 51 1 70 12 c22 13 52 49 71 73s30 52 37 80c10 37 13 74 13 112c0 71 -20 145 -83 197c-80 67 -194 90 -307 90c-99 0 -206 -16 -277 -76c-53 -44 -77 -110 -80 -169l-26 11c0 82 32 157 102 215c36 30 83 55 131 68c59 16 121 29 183 29c73 0 135 -1 214 -20c52 -12 108 -45 149 -79 c58 -48 84 -114 84 -181c0 -96 -25 -174 -66 -263c-75 -69 -195 -174 -266 -174c-25 0 -94 22 -134 35c-50 17 -90 27 -141 40c-33 8 -68 16 -102 16c-25 0 -48 -10 -67 -22c-25 -15 -45 -36 -61 -58l-20 16c32 51 76 96 129 133c47 0 95 7 135 28c30 15 57 38 57 68 c0 28 -17 53 -39 74c-8 8 -64 67 -64 85c0 16 1 32 10 46c12 19 29 35 47 50c37 31 82 55 129 75'], + 0xE259: [686,24,988,200,866,'449 601l38 -16c77 45 163 74 250 101l33 -81c5 -9 7 -13 13 -18c5 -4 14 -5 25 -5c20 0 44 4 58 8v-22c-43 -17 -96 -36 -143 -41c-31 15 -67 63 -94 100c-15 -4 -27 -14 -38 -23c-9 -11 -20 -24 -21 -38c0 -20 3 -41 11 -60c18 -45 27 -69 27 -137l123 62 c25 -29 56 -55 92 -75v-9l-80 -38l-71 42c-6 3 -12 5 -18 5c-17 0 -33 -6 -46 -15c-7 -27 -27 -50 -50 -70c-18 -15 -41 -25 -64 -32c-31 -11 -63 -17 -96 -21l-19 16c35 5 66 20 96 37c8 8 13 18 16 28c3 14 4 31 4 45c0 44 -13 87 -27 130c-6 19 -11 38 -11 58 c0 10 1 21 5 32c-42 -1 -83 -15 -108 -42c-43 -45 -59 -103 -59 -160c0 -84 24 -169 96 -229s171 -87 271 -87c17 0 33 1 49 2c48 14 106 40 141 58v-20c-54 -37 -113 -70 -173 -102c-32 -5 -65 -8 -98 -8c-106 0 -211 28 -280 84c-36 30 -60 67 -76 107 c-19 48 -25 102 -25 152c0 63 18 125 51 181c62 39 127 75 198 101'], + 0xE25A: [686,155,927,110,843,'539 293l146 117c28 -24 52 -49 65 -80l-52 -59c-14 21 -33 43 -63 43c-21 0 -59 -22 -85 -40l103 -112c20 -23 26 -59 26 -88c0 -52 -26 -101 -71 -138c-66 -55 -155 -91 -248 -91c-40 0 -76 15 -102 38c-32 25 -37 79 -37 109c0 19 2 37 4 56c3 14 4 29 4 44 c0 42 -8 54 -17 62c-6 6 -16 8 -25 8c-28 0 -58 -12 -71 -18l-6 21c70 39 126 54 158 54c13 0 25 -3 34 -12c17 -17 27 -47 27 -73s0 -39 -8 -65c-5 -21 -9 -42 -9 -64c0 -54 20 -78 35 -90c20 -18 46 -35 76 -35c42 0 80 14 108 38c36 30 52 78 52 119c0 24 -12 47 -28 69 c-25 36 -51 72 -80 107c-26 30 -52 61 -72 94c-12 19 -24 39 -24 60c0 33 23 61 47 85c37 37 83 66 132 91c-42 21 -85 40 -131 55c-30 10 -61 19 -94 19c-31 0 -60 -13 -82 -32c-39 -32 -53 -78 -64 -122l-19 11c7 58 26 117 77 159c42 35 99 53 159 53 c36 0 70 -10 102 -21c52 -18 100 -40 148 -64c23 -11 49 -21 77 -21s71 37 101 63l11 -14c-28 -31 -66 -72 -100 -99c-18 -14 -39 -30 -64 -30c-28 0 -60 11 -87 25c-34 -9 -75 -29 -94 -47c-16 -15 -30 -38 -30 -63c0 -18 8 -36 18 -51c15 -24 33 -49 53 -71'], + 0xE25B: [692,25,1136,176,950,'904 606l-212 -154c19 2 37 3 54 3c68 0 116 -23 137 -37c40 -27 67 -70 67 -115c0 -79 -44 -152 -111 -207l-185 -104c-37 -11 -61 -17 -100 -17c-103 0 -215 33 -277 85c-82 68 -101 164 -101 259c0 37 5 70 16 106c10 28 22 52 37 77c59 36 122 70 194 99l39 -16 l134 75l12 -11c-32 -23 -63 -53 -63 -90c0 -26 19 -96 31 -137l61 27c40 22 94 57 129 86c-58 16 -113 53 -125 93l82 64c15 -24 33 -45 57 -62c19 -13 41 -23 65 -23c16 0 36 7 53 22zM379 213l-19 16c36 7 67 27 89 53c14 17 21 45 21 66c0 32 -5 59 -14 88 c-11 33 -22 65 -22 97c0 10 2 20 4 31c-40 -2 -73 -11 -101 -36c-48 -42 -65 -103 -65 -161c0 -88 25 -177 100 -239c62 -52 135 -89 223 -89c61 0 114 7 168 44c62 43 83 113 83 172c0 37 -28 76 -58 99c-40 31 -91 48 -148 48c-20 0 -40 -2 -61 -6c0 -44 -6 -93 -44 -125 c-43 -35 -98 -50 -156 -58'], + 0xE25C: [667,133,1058,87,871,'539 -107l57 64c13 -22 40 -37 70 -37c14 0 28 3 38 9c12 6 23 23 31 37c14 26 21 62 26 90c6 45 7 90 7 135c0 38 -3 75 -15 111c-8 26 -19 52 -42 70c-28 24 -69 32 -109 32c-35 0 -71 -11 -99 -29c-35 -23 -54 -36 -87 -68c25 -52 34 -98 34 -122 c0 -18 -3 -38 -13 -51c-38 -41 -126 -134 -149 -150c-19 14 -38 26 -57 36c-14 9 -31 16 -49 16c-36 0 -64 -25 -81 -40l-14 14c35 52 94 106 143 106c39 0 82 -30 107 -54c25 25 27 44 28 69c0 25 -12 63 -28 87c-28 42 -49 85 -71 130c-13 27 -21 54 -21 83 c0 42 31 77 62 109c49 50 110 90 174 127c41 -34 94 -60 154 -60c12 0 25 5 34 11c9 4 43 26 69 43l15 -15c-51 -42 -132 -108 -170 -108c-25 0 -49 5 -72 12c-35 9 -79 27 -110 40c-20 -16 -34 -31 -47 -53c-9 -16 -12 -40 -12 -58c0 -39 36 -103 62 -149 c64 55 138 100 217 138c77 0 155 -14 218 -53c19 -57 32 -116 32 -176c0 -87 -8 -175 -52 -255c-61 -47 -152 -117 -198 -117c-31 0 -61 8 -82 26'], + 0xE25D: [686,27,858,131,737,'723 671l14 -16c-57 -44 -118 -82 -186 -112c-52 16 -120 37 -155 47c-23 6 -45 11 -69 11c-36 0 -70 -10 -96 -32c-34 -29 -63 -75 -80 -113l-20 11c15 35 38 78 57 112c13 23 31 49 52 67c31 30 67 40 114 40c50 0 125 -29 185 -53c20 -8 40 -16 63 -16 c18 0 42 6 57 13c25 11 46 27 64 41zM149 -16l-6 16c39 44 130 124 136 128c33 -58 39 -68 54 -81c21 -17 54 -29 83 -29c36 0 58 12 82 32c20 16 32 46 39 68c11 29 14 59 14 89c0 48 -7 89 -12 127c-5 33 -10 67 -10 95c0 12 1 23 2 34c48 44 107 90 168 122l15 -7 c-24 -18 -47 -41 -64 -64c-11 -16 -14 -32 -14 -50c0 -22 2 -54 3 -65c9 -51 15 -106 15 -154c0 -62 -17 -126 -71 -171c-68 -57 -157 -101 -256 -101c-44 0 -82 24 -115 48'], + 0xE25E: [686,139,856,75,723,'180 496l-18 10c23 48 53 93 95 131c28 26 64 49 109 49c21 0 42 -7 61 -16c29 -13 54 -30 79 -47c17 -12 35 -23 54 -32c13 -6 28 -11 42 -11c43 0 83 16 121 32v-21c-62 -27 -154 -65 -192 -75c-36 6 -66 24 -94 43c-33 21 -68 43 -110 43c-28 0 -56 -10 -76 -25 c-30 -22 -52 -52 -71 -81zM81 60l-6 13c27 18 64 41 94 54c22 9 44 17 70 17c20 0 42 -4 56 -16c19 -16 19 -49 19 -75s3 -52 9 -78c4 -16 11 -35 24 -46c21 -19 52 -32 82 -32c32 0 60 8 82 27c34 27 47 74 47 113c0 53 -16 110 -33 160c-17 52 -33 113 -33 162 c0 10 1 20 2 29c47 54 103 102 166 144l19 -10c-26 -22 -50 -44 -68 -72c-14 -19 -15 -45 -15 -67c0 -36 6 -78 15 -117c15 -60 36 -160 36 -181c0 -59 -34 -113 -83 -154c-48 -41 -111 -70 -179 -70c-43 0 -90 6 -121 32c-27 23 -34 55 -39 85c-3 28 -9 66 -19 80 c-9 14 -26 22 -44 22c-24 0 -61 -9 -81 -20'], + 0xE25F: [681,27,995,116,925,'858 348l-202 -76v-1c18 0 40 -4 55 -16c23 -18 34 -61 44 -103c5 -25 13 -60 34 -80c11 -10 26 -19 44 -19c28 0 64 9 88 24l4 -17c-26 -22 -64 -50 -96 -66c-20 -11 -42 -21 -67 -21c-24 0 -48 11 -60 27c-20 25 -25 54 -30 85c-6 44 -19 102 -45 122 c-19 17 -48 22 -76 22c-38 0 -75 -9 -108 -22c0 -26 -2 -53 -6 -79c-30 -38 -65 -73 -106 -102c-34 -24 -65 -40 -105 -51c-48 3 -85 27 -110 57l68 66h13c8 -15 19 -30 33 -42c12 -11 32 -20 50 -20c25 0 42 9 52 17c25 20 28 58 28 91c0 50 -15 100 -33 149 c-16 43 -38 106 -38 134c0 13 6 28 7 30c26 53 66 99 114 139c66 55 156 85 250 85c37 0 74 -5 109 -17c29 -10 54 -25 70 -47v-18c0 -33 -7 -67 -20 -99l-19 -5c0 34 -15 67 -44 91c-43 36 -101 48 -167 48c-70 0 -118 -17 -158 -51c-23 -19 -45 -64 -45 -93 c0 -34 9 -83 24 -123c42 37 85 71 137 98c34 19 72 35 113 35c19 0 36 -4 51 -16c21 -16 35 -48 47 -75c7 -16 23 -50 67 -50c7 0 19 2 25 5zM444 230c47 18 90 32 142 40c40 13 83 28 121 44c-27 13 -39 46 -47 69c-6 16 -25 35 -40 44c-11 6 -31 9 -39 9 c-32 0 -64 -13 -88 -30c-34 -22 -54 -49 -76 -79c14 -28 21 -66 27 -97'], + 0xE260: [686,27,993,135,871,'852 197l19 -11c-9 -38 -18 -78 -35 -116c-10 -23 -21 -47 -42 -65c-33 -28 -83 -32 -128 -32c-48 0 -95 9 -142 20c-67 16 -132 37 -197 60c-24 9 -50 16 -76 16c-36 0 -73 -43 -102 -84l-14 15c24 47 46 88 86 127c9 9 32 14 48 16h37c19 5 57 23 73 39 c15 15 22 30 22 45c0 23 -33 76 -54 108c-16 25 -32 51 -44 78c-7 18 -14 36 -14 55c0 23 11 44 23 63c18 26 41 49 67 70c67 57 160 85 256 85c43 0 86 -6 117 -32c24 -19 32 -47 32 -83c0 -11 -1 -22 -3 -33c-2 -19 -2 -47 -2 -55c0 -7 4 -14 10 -19c11 -10 48 -12 70 -12 v-18l-141 -30h-3c-17 0 -48 21 -48 46c0 12 1 32 6 61c1 11 2 21 2 31c0 29 -5 53 -28 72c-27 22 -62 30 -99 30c-47 0 -93 -14 -127 -42c-24 -20 -36 -52 -36 -80c0 -20 5 -37 12 -55c10 -26 25 -54 40 -79c20 -35 50 -90 50 -121c0 -7 -2 -13 -6 -17 c-45 -46 -108 -104 -133 -118c54 -19 121 -40 179 -52c40 -9 84 -16 127 -16c50 0 103 6 140 37c31 26 46 61 58 96'], + 0xE261: [692,27,1452,129,1356,'602 569c17 18 35 36 58 48c42 24 89 43 140 43c28 0 57 -5 77 -21c20 -18 34 -39 43 -62c27 26 58 48 91 67c42 25 88 48 141 48c21 0 43 -8 57 -21s24 -38 33 -59c6 -15 12 -32 25 -43c10 -7 23 -9 35 -9c19 0 37 4 54 9v-15c-49 -21 -95 -48 -133 -80 c-16 -26 -24 -54 -29 -82c-9 -38 -10 -77 -10 -115c0 -47 0 -107 12 -139c9 -21 11 -24 28 -40c9 -8 27 -18 37 -18c7 0 44 10 70 21v-19l-173 -109l-69 126l-1 172c0 43 9 86 19 128c27 34 59 64 96 91c-8 1 -18 9 -26 16c-6 5 -18 35 -25 53c-9 21 -21 51 -33 58 c-10 8 -24 11 -38 11c-30 0 -67 -8 -90 -25c-26 -19 -41 -31 -60 -57c7 -31 17 -79 17 -110c0 -106 -28 -211 -77 -308l-148 -150c-22 17 -60 43 -82 43c-11 0 -23 0 -32 -5c-15 -7 -25 -16 -39 -30l-16 14c30 36 81 90 106 101c6 3 12 3 19 3c8 0 17 -1 25 -3 c11 -2 50 -24 69 -35c30 24 38 53 46 83c20 64 20 145 20 218c0 43 -2 85 -10 127c-5 27 -11 53 -29 75c-18 23 -51 32 -83 32c-25 0 -53 -9 -69 -23c-18 -13 -31 -31 -42 -49c8 -28 12 -75 12 -82c0 -113 -16 -227 -87 -325l-204 -149c-16 15 -36 28 -57 39 c-13 8 -28 14 -45 14c-34 0 -62 -20 -82 -42l-14 16c21 28 45 55 74 78c19 14 40 28 67 28c18 0 34 -6 50 -14c19 -9 49 -31 66 -44c21 13 41 28 63 46c31 26 43 69 51 104c16 56 21 112 21 169v41c-2 52 -16 111 -48 148c-33 38 -86 74 -142 74c-47 0 -71 -8 -94 -23 c-16 -11 -25 -34 -25 -43c0 -33 28 -66 45 -83c14 -14 37 -37 48 -54c8 -11 16 -28 16 -38c0 -29 -17 -52 -38 -72c-26 -25 -70 -46 -109 -62l-18 11c21 10 43 26 58 42c12 12 19 24 19 39c0 10 -8 19 -16 27c-10 13 -25 30 -37 43c-27 28 -49 52 -49 90c0 40 27 70 61 98 c29 24 116 86 219 86c56 0 107 -34 143 -71c16 -16 29 -37 40 -59c3 2 6 5 8 8'], + 0xE262: [686,29,1192,132,1093,'603 533c16 15 56 61 63 71c35 48 111 82 179 82c20 0 39 -1 58 -5c15 -3 28 -7 38 -16c15 -13 25 -34 32 -53c5 -15 16 -40 19 -43c11 -8 23 -15 39 -15c18 0 38 4 54 11v-14c-36 -21 -74 -44 -106 -67c-12 -8 -23 -19 -25 -32c-15 -57 -19 -116 -19 -175 c0 -42 3 -84 16 -125c9 -28 18 -46 44 -67c4 -4 15 -9 22 -9c27 0 56 13 76 22v-22l-173 -105l-76 133l1 167c0 40 0 96 7 117c2 8 7 15 12 22c25 28 48 48 78 74c-22 4 -32 15 -39 23c-9 11 -18 33 -26 57c-6 18 -17 35 -32 48c-12 10 -28 16 -45 16 c-37 0 -77 -18 -104 -39c-37 -32 -54 -51 -80 -88c9 -42 19 -107 19 -150c0 -78 -9 -159 -52 -229c-6 -9 -16 -24 -19 -26c-51 -37 -100 -68 -158 -100c-13 -7 -41 -18 -57 -18c-42 0 -81 30 -103 58l67 65h15c5 -13 16 -29 32 -43c13 -11 35 -18 53 -18c33 0 58 20 81 39 c22 18 30 44 37 69c11 39 14 78 14 118c0 121 -34 241 -71 284c-33 38 -85 72 -142 72c-47 0 -72 -4 -99 -25c-15 -11 -21 -25 -21 -46c0 -20 29 -59 47 -76c14 -14 36 -37 47 -54c8 -11 17 -28 17 -38c0 -29 -18 -52 -39 -72c-26 -25 -70 -46 -109 -62l-18 11 c22 10 43 26 58 42c12 12 19 24 19 39c0 10 -8 19 -15 27l-38 43c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 107 86 220 86c55 0 107 -34 142 -71c19 -19 36 -50 48 -81'], + 0xE263: [729,27,1187,110,992,'615 596l-103 -3c-23 0 -47 3 -67 13c-14 7 -28 18 -28 33c0 40 54 59 83 90h19c-5 -7 -12 -17 -12 -26c0 -16 24 -23 44 -27c22 -5 102 -10 153 -14c42 -3 83 -9 123 -20c30 -9 60 -22 81 -41c64 -53 84 -128 84 -202c0 -59 -7 -118 -29 -174c-15 -42 -39 -84 -80 -113 c-53 -40 -109 -76 -173 -103c-45 -20 -95 -36 -146 -36c-66 0 -131 12 -192 32c-21 7 -42 15 -64 21c-20 6 -42 11 -63 11c-47 0 -89 -21 -116 -53l-19 16c34 37 70 73 109 106c53 15 102 51 102 101c0 15 -6 29 -13 43c-11 19 -24 36 -38 53l-63 74c-7 10 -14 21 -14 33 c0 35 18 67 43 95c31 35 72 63 118 86l25 -11c-23 -14 -44 -30 -61 -50c-12 -13 -23 -29 -23 -46s7 -33 16 -49c10 -24 26 -46 43 -68c24 -34 56 -77 56 -106c0 -26 -13 -49 -30 -70c-23 -30 -58 -56 -91 -79c15 0 34 -4 47 -8c38 -10 75 -23 113 -35 c61 -19 133 -33 200 -33c89 0 158 37 194 105c32 57 40 127 40 189c0 44 -5 88 -19 131c-12 32 -29 63 -58 87c-20 18 -48 28 -77 36c-37 9 -75 12 -114 12'], + 0xE264: [692,219,1181,104,1062,'589 509v-387h1c59 -16 165 -45 174 -48c23 -5 57 -12 76 -12c29 0 56 8 75 25c18 14 22 31 22 51c0 16 -10 37 -17 52c-12 21 -26 41 -43 60c-25 30 -58 67 -58 96c0 20 14 38 27 54c21 24 51 45 80 64c-16 3 -36 15 -49 26c-16 12 -18 41 -19 64c-1 22 -4 51 -19 63 c-15 13 -38 16 -58 16c-29 0 -54 -5 -77 -18c-52 -30 -80 -61 -115 -106zM574 540c3 3 6 6 9 8c22 23 44 45 71 64c60 43 129 80 210 80c24 0 48 -7 65 -21c20 -18 27 -59 31 -91c2 -13 5 -30 13 -37c11 -9 24 -13 38 -13c15 0 31 4 45 8l6 -16c-37 -16 -72 -34 -102 -59 c-13 -12 -27 -24 -37 -37c-8 -8 -15 -17 -15 -27c0 -29 24 -59 46 -85c24 -31 44 -64 44 -101c0 -69 -39 -132 -102 -176c-37 -25 -79 -48 -128 -48c-12 0 -26 3 -37 6l-142 42c0 -62 4 -124 13 -186c-7 -5 -77 -47 -115 -70l-25 11c6 12 14 56 19 85c11 62 13 123 13 186 c-39 10 -75 17 -96 17c-32 0 -61 -14 -84 -32c-23 -20 -43 -42 -63 -64l-12 21c22 38 46 76 82 107c30 25 71 42 116 42c15 0 36 -3 57 -8v250c0 54 -14 115 -48 154c-32 38 -85 72 -141 72c-48 0 -77 -7 -101 -25c-15 -12 -21 -25 -21 -46c0 -25 30 -59 48 -76 c14 -14 37 -37 48 -54c7 -11 16 -28 16 -38c0 -29 -17 -52 -38 -72c-27 -25 -71 -46 -109 -62l-19 11c22 10 43 26 59 42c12 12 18 24 18 39c0 10 -8 19 -15 27c-11 13 -25 30 -38 43c-27 28 -49 52 -49 90c0 40 28 70 61 98c29 24 108 86 220 86c55 0 107 -34 143 -71 c20 -20 36 -47 46 -74'], + 0xE265: [729,69,1187,110,1037,'615 596l-103 -3c-23 0 -47 3 -67 13c-14 7 -28 18 -28 33c0 8 1 21 13 32l70 58h19c-5 -7 -12 -17 -12 -26c0 -4 2 -7 5 -11c10 -9 25 -13 39 -16c22 -5 102 -10 153 -14c42 -3 83 -9 123 -20c30 -9 60 -22 81 -41c64 -53 84 -128 84 -202c0 -103 -26 -225 -109 -287 c-20 -15 -41 -30 -62 -44c21 -20 42 -39 68 -54c18 -10 37 -20 59 -20c32 0 62 12 89 27v-27l-141 -63c-39 10 -78 23 -115 40c-24 11 -48 23 -68 39l-3 -1c-45 -20 -95 -36 -146 -36c-66 0 -131 12 -192 32c-21 7 -42 15 -64 21c-20 6 -42 11 -63 11 c-47 0 -89 -21 -116 -53l-19 16c34 37 70 73 109 106c53 15 102 51 102 101c0 15 -6 29 -13 43c-11 19 -24 36 -38 53l-63 74c-7 10 -14 21 -14 33c0 35 18 67 43 95c31 35 72 63 118 86l25 -11c-23 -14 -44 -30 -61 -50c-12 -13 -23 -29 -23 -46s7 -33 16 -49 c10 -24 26 -46 43 -68c24 -34 56 -77 56 -106c0 -26 -13 -49 -30 -70c-23 -30 -62 -59 -93 -78c15 0 36 -5 49 -9c38 -10 75 -23 113 -35c61 -19 129 -32 195 -32c89 0 167 41 203 109c31 57 36 122 36 184c0 44 -5 88 -19 131c-12 32 -29 63 -58 87c-20 18 -48 28 -77 36 c-37 9 -75 12 -114 12'], + 0xE266: [686,27,1187,129,1088,'615 348c26 11 84 33 139 40l154 75c-15 1 -32 6 -44 16c-9 7 -17 44 -19 69c-2 19 -9 37 -20 53c-9 16 -28 27 -50 27c-30 0 -62 -10 -83 -28c-30 -24 -53 -50 -80 -88c2 -5 7 -48 7 -61c0 -33 0 -69 -4 -103zM599 548l4 5c20 20 41 41 63 59c50 42 114 74 186 74 c26 0 53 -9 69 -26c18 -18 24 -45 27 -69c2 -16 1 -33 6 -50c4 -14 9 -28 56 -28c16 0 32 2 46 4l8 -13c-35 -11 -71 -27 -104 -41c-42 -18 -105 -47 -147 -75c60 0 90 -15 122 -37c3 -66 8 -170 19 -197c8 -22 18 -43 32 -63c9 -10 17 -22 31 -22c6 0 47 13 71 21v-16 l-159 -101l-77 117c2 31 4 60 4 89c0 98 -21 117 -35 129c-26 21 -65 35 -100 35c-28 0 -78 -11 -110 -19c-4 -22 -9 -45 -15 -67c-14 -51 -33 -94 -67 -138c-68 -45 -136 -100 -202 -146c-26 22 -72 53 -97 53c-37 0 -66 -18 -87 -42l-14 16c20 25 41 55 74 78 c19 14 39 28 67 28c14 0 40 -7 58 -17c21 -13 38 -26 55 -41c42 24 75 52 98 90c17 28 23 59 29 90c7 46 12 92 12 139s-1 127 -48 184c-32 39 -85 72 -142 72c-47 0 -67 -7 -95 -30c-19 -15 -21 -35 -21 -57c0 -12 25 -43 43 -60c14 -14 36 -37 47 -54c8 -11 17 -28 17 -38 c0 -29 -18 -52 -39 -72c-26 -25 -70 -46 -109 -62l-18 11c22 10 43 26 58 42c12 12 19 24 19 39c0 10 -8 19 -15 27l-38 43c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 107 86 220 86c55 0 107 -34 142 -71c18 -18 33 -42 44 -67'], + 0xE267: [689,27,1187,164,1004,'504 508l15 -13c-15 -4 -27 -12 -38 -21c-14 -13 -19 -31 -19 -48c0 -16 6 -32 19 -43c14 -12 36 -16 58 -16c26 0 93 13 140 21c50 10 114 22 154 22c46 0 93 -15 127 -43c29 -24 38 -57 38 -90c0 -74 -33 -145 -96 -197c-93 -78 -227 -107 -357 -107 c-92 0 -186 20 -252 75c-82 68 -129 164 -129 261s47 186 130 255c80 68 201 106 313 125c64 -28 143 -62 187 -78c29 -10 58 -20 89 -20c26 0 47 6 66 21c18 15 26 38 32 54l23 -11c-9 -32 -29 -62 -56 -86c-34 -28 -78 -44 -123 -58c-37 3 -103 35 -152 58 c-34 17 -68 32 -104 44c-22 8 -45 15 -69 15c-60 0 -111 -29 -153 -64c-59 -49 -83 -118 -83 -186c0 -98 37 -196 121 -266c67 -57 163 -86 258 -86c77 0 155 5 210 51c38 33 56 84 56 130c0 37 -13 76 -45 102c-27 22 -64 32 -102 32c-39 0 -90 -9 -135 -16 c-45 -8 -94 -16 -140 -16c-30 0 -61 3 -83 21c-19 16 -32 36 -32 58c0 29 15 55 38 75c27 21 59 37 94 45'], + 0xE268: [703,27,996,126,908,'825 133l14 -16c-34 -32 -69 -62 -107 -89c-30 -22 -63 -41 -97 -55c-53 6 -101 27 -148 48c-34 15 -70 27 -108 27c-23 0 -44 -7 -65 -15c-30 -12 -56 -27 -83 -44l-12 16c46 40 95 77 147 112c12 1 24 1 36 1c23 0 45 -1 66 -6c25 12 48 28 66 47c13 14 24 30 24 48 c0 14 -7 26 -16 37c-12 18 -26 34 -42 49c-36 34 -83 79 -90 111c10 34 28 64 49 93c29 36 62 69 99 99c-63 18 -127 27 -192 27c-54 0 -110 -8 -149 -40c-20 -17 -31 -43 -31 -67c0 -39 35 -71 78 -85l-77 -64c-38 25 -61 58 -61 98c0 55 49 118 98 156 c59 46 132 65 213 65c68 0 136 -9 204 -21c46 -7 96 -16 140 -16c50 0 95 23 127 54v-22l-83 -90c-25 -13 -54 -16 -82 -16c-46 0 -109 5 -154 14c-27 -18 -35 -25 -56 -51c-15 -18 -33 -52 -33 -75c0 -13 6 -25 13 -36c10 -16 23 -30 38 -44c25 -23 48 -48 67 -74 c12 -17 23 -34 23 -54c0 -25 -17 -47 -35 -66c-30 -33 -67 -60 -104 -86c51 -20 117 -45 164 -45c26 0 51 9 74 20c31 14 60 34 85 55'], + 0xE269: [697,27,968,66,896,'643 120l-137 -126c-20 -13 -44 -21 -69 -21c-54 0 -105 16 -154 32c-46 15 -96 32 -140 32c-11 0 -21 -6 -28 -11c-14 -9 -26 -20 -37 -32l-12 17l96 90c29 2 59 28 83 48c31 27 44 64 44 101c0 19 -7 37 -14 54c-12 26 -27 50 -44 74c-27 40 -63 93 -63 128 c0 20 12 39 25 56c19 26 44 49 71 71c29 24 60 47 96 64l12 -16c-18 -11 -35 -24 -51 -37c-30 -24 -51 -56 -51 -90c0 -32 24 -73 44 -107c17 -28 33 -57 43 -86c9 -23 15 -45 15 -68c0 -26 -5 -52 -18 -75l-121 -112c34 0 82 -14 121 -26c39 -14 96 -32 121 -32 c37 0 68 20 95 42c27 23 61 51 71 75c6 16 6 56 6 85c0 116 -3 231 -12 346l152 90l19 -10c-21 -18 -41 -39 -50 -64c-19 -48 -19 -99 -19 -149v-202c0 -22 1 -43 6 -64c9 -38 20 -77 51 -107c8 -7 19 -11 30 -11c29 0 60 15 72 22v-21l-173 -107'], + 0xE26A: [686,27,1191,132,1088,'551 224l-112 -73c47 -3 83 -22 157 -61c79 -41 137 -58 172 -58c31 0 61 7 84 25c17 15 23 35 27 54c9 32 11 64 11 96c0 24 -3 57 -7 86c-2 33 -6 67 -6 101c0 23 5 47 13 69l89 85c-35 0 -66 16 -96 32c-32 18 -67 37 -108 37c-35 0 -80 -36 -80 -36 c-33 -27 -59 -59 -78 -95c0 -100 -17 -182 -66 -262zM673 601c27 25 59 46 94 63c24 12 50 22 78 22c43 0 81 -16 115 -37c45 -27 77 -32 97 -32c11 0 21 2 31 6v-16c-19 -11 -36 -24 -51 -38c-44 -35 -70 -82 -70 -133c0 -34 6 -67 12 -101c8 -39 19 -96 19 -117 c0 -31 -8 -62 -25 -90c-13 -22 -28 -42 -52 -57l-140 -85c-17 -11 -42 -13 -64 -13c-35 0 -91 9 -178 53c-24 12 -132 64 -185 64c-59 0 -111 -27 -148 -64l-13 16c46 43 96 82 154 112c55 0 104 26 134 64c17 22 24 47 29 73c7 37 11 74 12 112c-1 52 -16 110 -48 148 c-33 38 -85 72 -142 72c-47 0 -78 -9 -102 -27c-11 -8 -18 -23 -18 -44c0 -24 29 -59 47 -76c14 -14 36 -37 47 -54c8 -11 17 -28 17 -38c0 -29 -18 -52 -39 -72c-26 -25 -70 -46 -109 -62l-18 11c22 10 43 26 58 42c12 12 19 24 19 39c0 10 -8 19 -15 27l-38 43 c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 107 86 220 86c55 0 107 -34 142 -71c20 -21 41 -60 52 -89c16 22 33 44 66 75'], + 0xE26B: [686,28,1449,122,1363,'1171 485l71 63c-22 0 -61 22 -90 37c-31 17 -65 32 -102 32c-27 0 -51 -10 -70 -23c-31 -21 -51 -38 -73 -64c3 -33 5 -68 5 -103c0 -79 -9 -156 -35 -227c-17 -19 -67 -75 -94 -99c51 0 138 -33 203 -59c19 -7 41 -10 64 -10c38 0 69 15 89 42c13 18 21 45 21 112 c0 39 -3 79 -8 117c-3 29 -6 59 -6 88c0 39 5 63 12 77c3 6 8 12 13 17zM519 191c-50 -34 -96 -59 -141 -81c54 -35 123 -68 192 -68c71 0 137 28 186 70c30 24 42 59 51 93c15 51 18 104 18 157c0 52 -8 104 -34 152c-20 37 -54 75 -99 91c-33 -25 -68 -51 -94 -80 c2 -9 9 -38 9 -49c0 -15 -5 -87 -22 -148c-13 -48 -32 -95 -66 -137zM588 551l14 13c51 46 107 85 166 122c63 -30 110 -96 128 -127c39 34 79 67 125 94c28 17 58 33 92 33c21 0 40 -5 58 -12c28 -9 53 -22 77 -35c21 -12 46 -19 71 -19c15 0 30 3 44 8l-7 -21 c-39 -24 -75 -50 -96 -85c-15 -28 -18 -54 -18 -88c0 -23 2 -45 6 -67c7 -51 12 -103 12 -154c0 -25 -3 -50 -11 -74c-7 -18 -17 -34 -34 -47c-50 -40 -106 -75 -165 -106c-24 -6 -48 -11 -72 -11c-36 0 -73 7 -107 19c-58 21 -121 43 -179 43c-49 -19 -97 -39 -141 -64 c-7 0 -13 -1 -20 -1c-53 0 -108 16 -152 39c-32 17 -74 37 -103 37c-14 0 -41 -8 -56 -16c-24 -14 -46 -26 -68 -43l-17 16c45 43 94 82 148 117h4c56 0 110 20 150 53c30 25 45 58 56 92c15 43 19 89 19 135c-1 52 -15 111 -48 149c-32 38 -85 72 -141 72 c-48 0 -79 -8 -104 -27c-14 -11 -16 -20 -16 -42c0 -30 28 -61 46 -78c14 -14 37 -37 48 -54c7 -11 16 -28 16 -38c0 -29 -17 -52 -38 -72c-27 -25 -71 -46 -109 -62l-19 11c22 10 43 26 59 42c12 12 18 24 18 39c0 10 -8 19 -15 27c-11 13 -25 30 -38 43 c-27 28 -49 52 -49 90c0 40 28 70 61 98c29 24 108 86 220 86c55 0 107 -34 143 -71c17 -17 31 -40 42 -64'], + 0xE26C: [689,27,1056,129,948,'191 527l177 159c53 -2 107 -16 144 -47c16 -13 27 -30 35 -46c13 -25 22 -51 30 -77c18 31 41 61 70 85c45 38 97 68 156 88c14 -23 26 -47 40 -69c4 -7 9 -13 15 -19c11 -8 24 -13 38 -13c13 0 35 9 52 16v-19l-123 -58c-24 9 -44 22 -63 37c-18 15 -45 38 -51 52 c-18 -10 -37 -23 -50 -37c-20 -23 -37 -51 -50 -79c-21 -42 -28 -87 -28 -133h211l-44 -42c-55 6 -112 7 -167 8c0 -41 2 -82 13 -115c13 -47 35 -93 77 -128c29 -24 67 -37 108 -37c47 0 89 21 127 43v-22l-133 -90c-19 -5 -44 -11 -58 -11c-40 0 -80 14 -109 38 c-45 38 -69 90 -83 143l-50 -42c-40 -33 -82 -65 -128 -91c-22 -12 -44 -23 -68 -32c-14 -5 -31 -11 -48 -11c-43 0 -79 24 -102 54l71 69c18 -31 53 -53 95 -53c46 0 87 21 118 47c50 41 67 99 81 155c5 20 6 51 6 83c-71 0 -140 0 -211 -8l44 42h167c0 36 0 71 -6 107 c-6 34 -20 62 -50 87c-21 18 -48 33 -78 33c-39 0 -69 -7 -96 -30c-21 -17 -44 -37 -59 -52'], + 0xE26D: [686,219,1194,129,986,'521 397c0 53 -14 114 -48 154c-33 38 -86 72 -142 72c-47 0 -83 -13 -104 -27c-16 -12 -17 -24 -17 -45s30 -58 47 -75c14 -14 37 -37 48 -54c8 -11 16 -28 16 -38c0 -29 -17 -52 -38 -72c-26 -25 -70 -46 -109 -62l-18 11c21 10 43 26 58 42c12 12 19 24 19 39 c0 10 -8 19 -16 27c-10 13 -25 30 -37 43c-27 28 -49 52 -49 90c0 40 27 70 61 98c29 24 107 86 219 86c56 0 107 -34 143 -71c20 -21 37 -49 48 -78l6 5c33 27 67 52 103 75c40 27 82 51 128 69c34 -36 81 -64 128 -90c19 -80 19 -170 19 -255c0 -69 -6 -137 -20 -204 c-11 -53 -28 -105 -58 -153c-53 -67 -127 -120 -210 -160c-51 -24 -107 -43 -167 -43c-34 0 -69 6 -100 19c-26 11 -48 28 -59 51l80 71h12c12 -50 68 -93 133 -93c72 0 115 21 161 60c30 24 55 64 75 95c24 41 34 86 42 131c12 66 15 132 15 199c0 72 -5 144 -32 213 c-31 29 -65 59 -108 74c-9 -3 -91 -35 -139 -89c3 -14 4 -30 4 -44c-2 -91 -21 -183 -84 -261l-139 -92c29 -7 63 -21 90 -32c30 -13 63 -25 95 -25c41 0 76 23 102 48l11 -16c-28 -30 -55 -59 -88 -85c-17 -12 -39 -26 -62 -26c-36 0 -91 23 -127 41c-45 21 -92 34 -120 34 c-56 0 -108 -32 -152 -58l-12 15c44 39 98 78 146 113c26 0 61 0 82 -2c21 10 54 32 80 53c30 25 48 58 61 92c15 42 22 86 23 130'], + 0xE26E: [729,139,916,110,737,'314 309l52 63c53 3 97 28 134 59c36 30 58 70 58 112c0 14 -7 27 -19 37c-20 15 -45 21 -71 21c-28 0 -55 -3 -83 -5c-32 -2 -91 -5 -96 -5c-25 0 -52 1 -70 16c-8 7 -13 16 -13 26l83 96h19c-5 -7 -9 -16 -9 -24c0 -7 3 -14 9 -19c19 -15 59 -15 90 -15c10 0 47 1 70 2 c19 0 38 3 57 3c22 0 44 -1 64 -5c14 -3 29 -8 38 -16c20 -16 33 -36 33 -59c0 -50 -28 -97 -71 -133c-41 -34 -89 -65 -135 -89l5 -2c20 3 48 6 66 6c74 0 150 -17 192 -69c14 -37 20 -74 20 -112c0 -88 -38 -172 -96 -245c-83 -57 -186 -91 -294 -91c-39 0 -77 3 -116 11 c0 25 0 61 -1 74c-1 10 -2 20 -11 27c-8 7 -20 11 -32 11c-14 0 -43 -14 -62 -26l-15 15c28 19 58 35 89 48c25 9 50 16 77 16c19 0 42 0 51 -16c6 -10 6 -42 6 -64c0 -17 0 -39 14 -50c13 -11 42 -16 61 -16c55 0 94 15 133 47c30 25 53 64 65 97c15 40 21 82 21 124 c0 23 -2 46 -9 68c-6 16 -15 32 -29 44c-40 34 -96 48 -152 48c-39 0 -76 -7 -110 -21'], + 0xE26F: [471,36,794,174,693,'492 91l-210 -127c-36 32 -71 66 -105 101c-1 30 -3 61 -3 91c0 70 7 141 25 209l203 106c33 -19 72 -33 111 -40l81 34l9 -6c-12 -67 -18 -135 -18 -203c0 -46 0 -91 2 -137l43 -45c26 7 38 13 55 22l8 -13l-147 -110l-52 73zM492 119l-1 246c-57 0 -116 13 -171 27 c-29 -25 -36 -62 -42 -97c-5 -31 -7 -62 -7 -94c0 -27 1 -53 4 -80c15 -17 46 -44 72 -65c1 -1 4 -1 8 -1c18 0 65 23 137 64'], + 0xE270: [686,31,809,200,629,'259 599l144 87l20 -13c-1 0 -24 -17 -36 -26c-52 -38 -72 -91 -75 -148c-3 -43 -3 -92 -3 -134l9 -2c54 38 110 77 168 107c45 -22 92 -43 140 -61c2 -32 3 -64 3 -96c0 -72 -6 -145 -23 -216c-88 -47 -178 -92 -274 -128c-44 33 -103 77 -132 102c17 73 17 157 17 236 c0 121 -1 241 -8 361l20 4l20 -77zM311 332v-209c38 -33 96 -81 128 -81c19 0 35 11 48 22c19 17 28 39 34 61c9 34 12 68 12 102c0 41 0 72 -5 113c-11 12 -39 24 -102 46c-37 -4 -83 -33 -115 -54'], + 0xE271: [466,29,660,183,528,'528 92l-207 -121c-48 34 -91 73 -132 113c-4 45 -6 89 -6 134c0 29 1 89 15 145l198 103c47 -3 90 -22 129 -44l-62 -79l-11 -3c-39 29 -100 54 -144 54c-21 -30 -26 -99 -26 -148c0 -35 4 -69 9 -99c22 -29 64 -61 101 -89c39 10 85 31 126 51'], + 0xE272: [612,34,791,113,614,'578 109l-224 -143c-60 34 -119 69 -166 115c-2 30 -3 57 -3 85c0 44 2 93 7 169c50 40 105 83 158 112l23 -4c-56 -50 -69 -77 -78 -97c-10 -23 -15 -56 -15 -92c0 -39 4 -83 8 -119c15 -16 35 -29 54 -41c27 -16 56 -30 86 -43c4 -1 6 -2 10 -2c6 0 12 3 18 10 c33 44 50 95 56 146c3 21 4 41 4 62c0 44 -6 88 -15 132c-46 41 -98 79 -157 109c-39 21 -84 38 -132 38c-9 0 -25 0 -29 -1l-55 -18l-15 16c51 24 111 48 165 69c108 -12 231 -88 331 -157c1 -18 5 -75 5 -127c0 -31 -2 -61 -5 -79c-4 -48 -9 -96 -31 -140'], + 0xE273: [467,31,674,181,534,'198 366l194 101c40 -42 89 -78 142 -109c-83 -66 -186 -146 -256 -192c0 -9 3 -18 6 -26c4 -14 72 -61 120 -79c5 1 22 1 28 3l89 39l6 -16c-65 -42 -132 -82 -203 -118c-48 37 -96 74 -137 116c-4 34 -6 69 -6 103c0 60 6 119 17 178zM275 193c55 34 117 78 162 119 c-45 24 -90 53 -129 84c0 1 -1 1 -2 1c-10 0 -17 -22 -19 -28c-11 -32 -12 -123 -12 -176'], + 0xE274: [679,238,588,133,486,'344 351l-5 -206c0 -67 0 -151 -15 -198c-12 -34 -30 -67 -52 -97l-60 -88l-23 7l32 90c8 23 14 48 16 72c3 35 4 131 4 197c0 15 0 147 -1 223h-107l18 35h88c0 1 -11 45 -17 67c-7 25 -16 61 -16 75c0 44 29 81 66 112c17 14 35 27 55 39c51 0 111 -7 149 -40l-56 -92 l-12 -1c-10 17 -22 33 -37 46c-16 12 -36 23 -57 23c-15 0 -35 -3 -47 -12c-10 -10 -14 -22 -14 -35c0 -17 14 -41 25 -59l60 -95c6 -8 9 -17 11 -26h137l-15 -37h-127'], + 0xE275: [470,209,797,116,643,'116 -131c54 31 107 68 161 107l-86 89c-3 34 -5 69 -5 103c0 67 6 134 18 200c63 37 128 70 194 102c41 -23 89 -36 137 -45l86 40l8 -6c-17 -29 -20 -62 -22 -94c-5 -55 -5 -143 -5 -215c0 -14 3 -28 6 -41l35 -126c-61 -64 -125 -127 -196 -184c-14 -4 -33 -8 -43 -8 c-38 0 -75 9 -110 21c-45 16 -85 38 -123 63l-42 -19zM507 97c-80 -47 -159 -99 -234 -152c28 -23 59 -45 93 -60c26 -12 55 -20 85 -20c24 0 47 10 64 24c18 16 25 45 25 66c0 22 -19 95 -33 142zM371 41l134 82c0 76 2 153 11 228c-70 8 -154 21 -211 43 c-20 -40 -22 -90 -22 -134c0 -45 1 -91 6 -136c18 -29 52 -60 82 -83'], + 0xE276: [689,198,819,188,619,'371 -184l76 55c14 8 23 19 32 31c20 34 27 72 33 109c10 60 12 121 12 182c0 28 -7 107 -12 161c-31 19 -66 36 -105 36c-38 0 -83 -29 -113 -49l-6 -215l65 -77l-99 -75l-66 91c9 122 13 244 13 366c0 81 -1 163 -7 244l15 2l28 -76c48 30 144 88 146 88l20 -11 c-100 -77 -108 -142 -108 -197l-1 -110c39 26 117 72 177 107c40 -30 89 -48 140 -61c4 -57 8 -114 8 -171c0 -54 -2 -109 -8 -162c-5 -39 -11 -78 -24 -115c-54 -66 -123 -119 -197 -167'], + 0xE277: [675,21,528,114,419,'129 369l-15 13c41 28 85 61 126 93c23 -20 45 -39 72 -55c-9 -60 -10 -120 -10 -181c0 -39 1 -79 6 -111c2 -19 23 -40 39 -53c4 0 12 1 15 3c18 7 40 18 48 24l9 -19c-47 -37 -98 -72 -148 -104l-65 76c3 53 4 93 4 139c0 58 -1 114 -5 173l-25 24 c-13 -4 -35 -12 -51 -22zM321 616l-68 -60c-25 19 -48 40 -70 61c24 20 51 37 72 58c22 -21 48 -47 66 -59'], + 0xE278: [673,202,530,86,332,'299 -44c-54 -55 -118 -107 -194 -158l-19 18c35 22 70 45 100 71c15 13 25 30 31 47c19 56 22 179 22 269c0 50 0 119 -12 149c-7 17 -31 37 -38 37c-3 0 -9 -2 -10 -3l-35 -19l-17 13l127 95c26 -16 52 -34 78 -53c0 -52 -1 -268 -7 -396c-1 -25 -6 -51 -26 -70z M317 615l-70 -60c-22 15 -44 40 -65 61l73 57c20 -21 39 -40 62 -58'], + 0xE279: [686,26,660,126,533,'517 110l16 -15c-52 -37 -134 -82 -202 -121l-128 95c4 19 7 40 7 58v181h-84l11 35h74c0 227 -1 262 -8 326l20 4c10 -24 22 -79 22 -80c49 32 103 68 156 93l19 -10c-31 -24 -67 -52 -81 -73c-22 -32 -31 -69 -34 -105c50 32 99 57 152 87c20 -16 38 -34 53 -54 c11 -15 19 -31 19 -48c0 -18 -12 -36 -28 -49l-103 -91h114l-17 -35h-190v-180c28 -24 64 -48 98 -68c39 16 79 29 114 50zM305 343c42 0 76 13 104 40c18 18 34 39 34 63c0 13 -8 24 -15 35c-12 14 -26 26 -42 37c-24 -10 -47 -23 -61 -42c-11 -16 -14 -34 -17 -52 c-3 -25 -3 -54 -3 -81'], + 0xE27A: [686,20,528,213,429,'410 686l19 -13c-26 -19 -52 -36 -70 -60c-42 -54 -43 -106 -43 -222c0 -90 1 -179 2 -269c11 -14 31 -29 51 -41c16 4 33 14 47 23l13 -17l-154 -107l-62 76c8 108 10 217 10 326c0 96 -1 191 -7 286l20 4l21 -78'], + 0xE27B: [475,26,1113,105,1006,'299 376l152 99c46 -23 94 -43 144 -57v-39c53 30 106 61 155 95c46 -21 102 -46 145 -56c-5 -57 -3 -114 -4 -171l-1 -121c13 -16 28 -33 45 -47c24 7 33 10 56 26l15 -17l-152 -107c-12 19 -46 54 -71 79c8 42 13 75 13 214c0 26 0 50 -3 68c-1 6 -2 12 -10 15 c-33 17 -72 26 -110 34c-28 -12 -53 -24 -78 -38v-218c0 -8 0 -17 5 -22c0 -1 36 -45 55 -66l-103 -73c-16 26 -44 52 -65 72c11 39 17 81 17 202c0 33 -1 66 -6 99c-30 22 -85 35 -126 44l-73 -42v-197c0 -16 0 -40 6 -46c0 -1 34 -39 52 -58l-99 -70l-59 80 c7 40 9 80 9 119c0 63 -2 125 -5 188l-32 26l-51 -24l-15 12l134 93c20 -17 60 -51 60 -52v-44'], + 0xE27C: [475,23,825,119,722,'308 367l173 108c42 -24 88 -43 136 -58c-5 -43 -11 -102 -11 -164l6 -126c9 -13 19 -27 31 -40c4 -4 10 -5 16 -5c1 0 8 3 12 5l37 22l14 -16l-152 -112l-66 84c7 35 10 81 10 130c0 54 -3 111 -7 163c-34 15 -82 24 -121 27l-78 -44l-5 -207c0 -10 5 -24 9 -28l48 -54 l-105 -75c-16 25 -36 48 -58 69c9 46 12 104 12 165c0 52 -2 105 -4 154l-29 23l-42 -20l-15 12c40 30 123 90 124 90c15 -13 42 -31 65 -45v-58'], + 0xE27D: [481,28,779,176,593,'295 -28c-42 30 -85 62 -119 96c0 89 6 198 22 296c73 35 143 75 211 117c54 -30 113 -55 178 -66c3 -38 6 -75 6 -113c0 -71 -8 -141 -27 -210c-86 -46 -176 -88 -271 -120zM419 44c6 0 20 13 26 19c28 28 38 67 44 107c9 62 9 89 9 186c-54 3 -125 25 -179 45 c-16 -22 -23 -35 -33 -72c-8 -30 -13 -75 -13 -118c0 -33 3 -64 8 -88c20 -21 43 -40 69 -55c22 -12 43 -21 69 -24'], + 0xE27E: [538,214,794,111,613,'300 -170l-96 -44l-13 7c4 83 10 199 10 254c-27 0 -55 -7 -76 -23l-14 14c30 23 75 57 92 67v247c-16 18 -50 55 -50 56c-3 4 -6 9 -6 14c0 8 4 15 9 22c25 34 56 66 91 94l17 -9c-12 -12 -22 -26 -22 -42c0 -13 6 -26 15 -38c10 -16 25 -30 40 -43c0 -1 -1 -22 -2 -34 c59 33 114 69 170 106c42 -28 92 -48 142 -64c3 -44 6 -88 6 -132c0 -22 -1 -44 -2 -66c-3 -43 -8 -87 -26 -127l-160 -107c-39 26 -82 48 -130 55c0 -69 1 -138 5 -207zM296 347v-241c48 0 130 -30 189 -54c19 30 31 83 31 178c0 41 -3 82 -7 123c-30 13 -79 28 -115 38 c-35 -11 -66 -27 -98 -44'], + 0xE27F: [480,224,780,168,599,'584 -179l-99 -45l-14 10c5 98 9 208 9 307c-67 -46 -135 -84 -208 -122l-101 94c-2 29 -3 57 -3 86c0 73 8 147 27 218c69 31 138 63 198 104c35 -18 72 -34 112 -41l84 48l10 -7c-18 -85 -23 -220 -23 -332c0 -107 0 -215 8 -320zM359 50c28 13 83 48 121 71 c0 80 1 166 6 246c-61 3 -121 16 -180 31c-17 -25 -25 -54 -31 -82c-9 -38 -12 -77 -12 -116c0 -19 0 -53 1 -56c0 -7 1 -14 7 -19c26 -22 61 -54 88 -75'], + 0xE280: [474,21,660,115,570,'315 382l131 87c12 -18 27 -36 43 -52c10 -9 22 -19 36 -19s35 10 45 15v-13l-71 -55c-11 -8 -25 -10 -40 -10c-14 0 -28 5 -39 11c-19 10 -43 25 -60 38c-20 -12 -37 -25 -45 -34v-198c0 -16 12 -29 23 -41c19 -19 41 -36 65 -51l107 42l2 -19l-175 -104 c-44 29 -84 62 -124 96c8 59 8 109 8 170c0 26 -1 54 -2 77c-1 32 -9 43 -9 43c-11 8 -23 15 -35 22l-46 -16l-14 10l121 93c25 -21 52 -41 79 -60v-32'], + 0xE281: [479,30,724,63,585,'327 244l148 56c26 -7 47 -22 67 -38c2 -26 4 -52 4 -77c0 -46 -5 -91 -19 -135c-65 -24 -131 -49 -192 -80c-27 21 -56 41 -88 57c-20 10 -42 20 -66 20c-36 0 -69 -16 -106 -44l-12 9c18 16 63 55 89 76c22 17 52 23 81 23c31 0 60 -8 86 -22l97 -54c1 -1 3 -1 5 -1 c7 0 14 5 18 14c11 30 13 61 13 92c0 25 -4 63 -15 74c-18 17 -33 22 -48 22c-16 0 -26 -3 -41 -10l-123 -58c-18 19 -37 45 -51 67c0 49 1 97 7 142l182 102l98 -46c9 -4 19 -6 31 -6c27 0 55 13 87 30l6 -16l-110 -78c-86 4 -151 27 -182 52c-24 -19 -24 -56 -24 -79 c0 -25 2 -50 14 -73c5 -9 11 -21 24 -21c7 0 14 0 20 2'], + 0xE282: [641,21,593,128,516,'371 641l16 -14l-32 -26c-6 -5 -10 -12 -11 -19c-13 -64 -14 -131 -14 -196h129l-20 -35h-108l1 -228c24 -18 53 -39 76 -50c6 -3 13 -5 20 -5c18 0 44 9 84 32l4 -22l-165 -99l-116 83c0 1 0 192 1 289h-108l19 35h88v172'], + 0xE283: [474,26,814,107,714,'602 468l9 -6c-12 -79 -16 -158 -16 -237c0 -32 2 -64 7 -94c3 -14 10 -28 21 -40c4 -5 12 -8 20 -8c12 0 52 15 64 20l7 -15c-51 -34 -100 -69 -147 -106l-9 2c-23 32 -47 67 -62 103c-81 -45 -183 -113 -183 -113c-31 17 -106 62 -150 74c16 22 25 51 32 79 c11 45 18 91 18 137c0 28 0 55 -8 82c-7 18 -17 37 -35 50l-45 -20l-18 10l133 88c19 -19 38 -38 62 -53c1 -22 1 -43 1 -65c0 -31 -1 -62 -2 -92c-2 -54 -11 -108 -29 -160l122 -48l105 59c4 50 4 100 4 149c0 52 0 105 -3 160'], + 0xE284: [533,28,807,158,624,'212 231c0 31 -2 69 -5 114c0 8 -4 13 -10 19c-11 12 -21 18 -30 30c-5 8 -9 16 -9 24c0 6 6 20 10 26c25 32 54 62 86 89l17 -4c-11 -14 -19 -29 -19 -46c0 -10 13 -31 23 -45c6 -8 21 -20 32 -30v-34l172 103c43 -24 88 -45 138 -61c7 -66 7 -100 7 -171 c0 -37 -18 -119 -39 -159l-258 -114c-37 33 -80 65 -123 94c5 55 8 101 8 165zM307 348l-4 -193c0 -25 17 -47 41 -62c1 0 30 -19 45 -29c14 -8 32 -15 50 -15c16 0 29 9 40 19c13 11 21 25 28 40c16 40 21 99 21 135c0 38 -4 77 -10 115c-27 21 -65 32 -102 38 c-33 -2 -75 -27 -109 -48'], + 0xE285: [533,28,1121,150,929,'599 368l170 103c49 -24 100 -46 151 -66c6 -28 9 -92 9 -137c0 -93 -23 -133 -50 -196l-224 -100c-53 27 -107 52 -161 74c6 59 10 118 10 176c0 40 -2 80 -6 119c-28 16 -67 37 -84 44c-9 3 -20 7 -28 7c-6 0 -16 -2 -21 -5c-25 -12 -45 -25 -68 -39 c-1 -34 -2 -126 -2 -190c0 -24 7 -49 24 -70c10 -14 22 -29 32 -40l-90 -75c-20 29 -42 57 -70 79c9 51 12 103 12 155c0 46 0 92 -4 138c-1 8 -5 13 -11 19c-10 12 -20 18 -30 30c-4 8 -8 16 -8 24c0 6 6 20 9 26c26 32 54 62 87 89l17 -4c-11 -14 -20 -29 -20 -46 c0 -10 14 -31 23 -45c6 -8 22 -20 33 -30v-32c51 30 103 61 147 97c49 -26 101 -48 154 -68zM695 386c-27 0 -76 -33 -96 -45c-1 -37 -3 -71 -3 -106c0 -26 1 -53 4 -81c1 -23 15 -44 35 -59c32 -25 70 -51 120 -51c9 0 20 7 28 14c21 17 30 45 35 69c9 45 11 91 11 137 c0 28 -5 53 -14 84c-35 18 -81 33 -120 38'], + 0xE286: [473,188,659,109,541,'327 376l131 89c21 -28 51 -48 83 -67l-80 -59c-34 14 -57 42 -72 51c-17 -9 -50 -33 -58 -43c-4 -18 -6 -41 -6 -58c-1 -55 1 -115 6 -172c23 -20 48 -38 76 -54c4 -3 10 -4 15 -4c6 1 16 0 26 5l76 34l4 -18l-179 -105c-30 28 -65 52 -101 74c-20 -16 -39 -33 -54 -54 c-11 -15 -19 -31 -19 -49c0 -20 12 -37 29 -51c26 -22 83 -31 117 -34v-9l-76 -40c-40 8 -81 19 -111 44c-15 12 -25 29 -25 46c0 25 16 47 31 68c25 34 49 59 82 89c7 42 8 91 8 133c0 54 1 108 -3 161c-11 10 -26 23 -36 28c-4 2 -10 5 -12 5c-4 0 -10 -2 -15 -4 c-11 -5 -33 -14 -35 -14l-15 9c39 34 81 65 125 96c30 -22 75 -57 91 -66'], + 0xE287: [524,219,791,151,621,'204 255c0 31 0 35 -4 81c-1 8 -4 13 -10 19c-11 12 -21 19 -30 31c-5 6 -9 14 -9 24c0 4 6 19 10 25c25 32 54 62 86 89l17 -4c-11 -14 -19 -29 -19 -46c0 -10 13 -31 22 -45c6 -8 22 -20 33 -30v-32l170 106c45 -22 89 -44 138 -59c9 -60 13 -130 13 -186 c0 -80 -9 -174 -36 -251c-15 -46 -139 -145 -222 -196l-45 17c41 17 80 36 113 62c26 22 43 51 55 80c13 32 19 66 23 99c6 50 8 100 8 150c0 56 -6 112 -13 167c-29 15 -64 30 -96 35c-18 0 -70 -28 -108 -51c0 -64 -3 -81 -3 -188c0 -38 19 -66 55 -104l-90 -75 c-21 29 -47 61 -71 79c11 61 13 126 13 203'], + 0xE288: [471,215,662,89,474,'445 -99l-164 -116c-54 0 -106 15 -149 41c-22 14 -39 34 -43 58c8 27 64 91 104 129c51 49 98 89 152 134c-42 16 -85 30 -132 34v11c2 0 58 44 88 67c19 15 41 33 41 56s-19 45 -40 57c-15 9 -32 16 -48 16c-8 0 -12 -2 -20 -6c-29 -14 -55 -30 -81 -47l-13 12 c54 45 112 87 175 124c29 -12 59 -25 82 -44c12 -9 23 -20 30 -31c6 -8 11 -17 11 -26c0 -13 -7 -26 -18 -36l-97 -87c44 -13 94 -29 134 -49c13 -43 17 -89 17 -134c0 -55 -12 -110 -29 -163zM367 130c-49 -35 -97 -71 -136 -114c-24 -27 -48 -56 -48 -89 c0 -17 12 -31 27 -42c27 -24 66 -39 107 -39c12 0 18 4 27 12c12 10 22 37 27 57c8 35 14 70 14 105c0 37 -5 74 -18 110'], + 0xE289: [692,9,831,168,777,'757 692l20 -181l-33 -3l-47 78c-13 20 -35 36 -64 40c-42 5 -83 7 -125 7c-35 0 -69 -2 -105 -3c-16 -1 -34 -10 -34 -24c-3 -37 -3 -127 -3 -190c0 -129 1 -257 10 -385l-134 -40l-20 12c5 179 6 536 6 584c0 21 -5 43 -23 58l-37 30l2 17h375h212'], + 0xE28A: [699,7,1117,132,976,'552 669l145 30c38 -125 81 -249 134 -371c41 -93 89 -183 144 -273l1 -11l-143 -51c-78 6 -430 13 -430 13c-123 0 -245 -6 -268 -7c0 1 -2 21 -3 35c147 209 315 449 420 635zM244 67l515 -12c14 9 23 14 23 14c-78 161 -147 335 -210 499c-4 -2 -15 -4 -16 -4 c-96 -164 -207 -339 -312 -497'], + 0xE28B: [699,14,1332,194,1117,'810 429l18 44h24v-244h-30l-16 56c-4 11 -18 15 -29 16c-51 3 -156 2 -234 0c-15 0 -32 -5 -37 -17l-22 -55h-22v119v125h30l14 -51c1 -4 10 -11 37 -11c78 -2 163 -3 234 -1c15 1 29 8 33 19zM601 -14c-104 0 -213 19 -288 78c-86 67 -119 163 -119 257 c0 103 40 205 133 277c45 35 102 59 162 75c71 19 146 26 220 26c109 0 222 -17 301 -78c79 -62 107 -151 107 -238c0 -107 -32 -217 -130 -294c-101 -79 -245 -103 -386 -103zM677 32c75 0 145 24 197 66c33 25 52 61 65 95c16 45 22 92 22 138c0 52 -7 104 -25 154 c-16 39 -38 76 -74 105c-56 44 -134 65 -214 65c-64 0 -144 -16 -188 -48c-90 -65 -106 -164 -106 -259c0 -93 33 -187 118 -254c53 -42 131 -62 205 -62'], + 0xE28C: [694,13,1192,126,1052,'572 672l122 22c28 -98 58 -195 93 -292c27 -72 56 -144 92 -214c21 -38 44 -80 77 -108c16 -13 38 -18 60 -18c11 0 22 1 33 4l3 -27l-217 -52c-33 11 -57 32 -69 58c-13 32 -123 329 -183 494h-18c-111 -173 -202 -339 -295 -519l-130 -24l-14 20 c163 212 312 431 446 656'], + 0xE28D: [700,14,966,135,828,'828 186l-25 -200l-640 8l-24 192l30 2l20 -52c8 -21 37 -30 64 -30h458c24 0 52 7 60 27l24 56zM278 413h410l5 -7l-35 -98l-313 -1c-31 0 -64 -2 -95 -5l-9 6zM799 693l25 -188h-26l-26 42c-7 13 -23 22 -41 27c-22 8 -46 10 -70 10l-392 1c-26 0 -55 -3 -67 -23 l-32 -57h-35l23 195'], + 0xE28E: [690,14,1189,139,1048,'936 214l9 -195l-146 -33l-19 11l6 194c1 40 3 249 3 410c0 16 -19 22 -45 22h-310c-18 0 -38 -8 -40 -24c-6 -37 -6 -188 -6 -283c0 -96 2 -192 9 -289l-141 -36l-18 10c4 102 5 205 5 308c0 99 -3 198 -3 296c0 14 -6 28 -24 33l-77 21v31c82 -3 163 -4 246 -4h469h194 l-2 -33l-70 -12c-25 -5 -40 -26 -42 -46c-2 -41 -2 -83 -2 -124c0 -86 0 -183 4 -257'], + 0xE28F: [699,1,1035,137,869,'542 378l-236 -253c186 0 372 1 556 9l7 -15l-38 -120c-46 3 -94 3 -141 3c-184 1 -368 -1 -553 -1l23 67c90 82 193 192 274 282l-228 276v13l92 51c179 0 360 0 540 9l12 -8l-44 -68c-77 3 -261 3 -396 3l-6 -7l141 -177c11 -14 15 -23 15 -31s-8 -22 -18 -33'], + 0xE290: [707,6,1131,139,990,'650 27l-141 -33l-24 8c6 66 7 132 7 198c0 76 -9 153 -34 226c-19 54 -47 107 -98 146c-25 20 -60 30 -96 30c-61 0 -84 -35 -102 -72l-23 5c4 46 18 81 61 115c35 27 85 41 134 41c48 0 98 -10 133 -37c37 -29 54 -60 67 -99c20 -60 28 -122 30 -184h12 c15 63 31 122 61 181c20 40 43 80 83 110c33 27 78 45 125 45c36 0 69 -4 95 -24c19 -15 30 -36 37 -56c10 -30 13 -60 13 -91l-29 -2c-5 20 -12 36 -29 49c-14 11 -36 18 -57 18c-36 0 -66 -9 -90 -28c-52 -41 -85 -94 -107 -149c-28 -69 -37 -141 -37 -214 c0 -61 5 -122 9 -183'], + 0xE291: [685,0,1338,195,1130,'850 661l-91 -15c-13 -2 -25 -10 -25 -21v-27l11 -11c64 0 132 -5 192 -16c45 -9 90 -22 123 -48c52 -41 70 -99 70 -156c0 -71 -20 -144 -85 -195c-78 -60 -192 -80 -300 -82l-11 -10v-26c2 -6 21 -9 32 -11l94 -15l1 -28h-386l1 27c32 5 99 15 100 15c9 2 12 10 13 17 v21l-12 10c-57 1 -119 7 -173 20c-47 12 -93 30 -128 58c-58 45 -81 110 -81 174c0 63 28 124 84 168c36 27 80 45 128 57c53 14 114 20 170 21c2 0 10 9 12 10v24c0 12 -8 19 -23 22l-91 14v27h375v-24zM746 116c51 2 105 16 142 45c29 22 46 51 59 81c15 38 21 77 21 116 c0 31 -5 62 -16 92c-9 24 -23 47 -45 64c-42 32 -105 41 -162 42l-11 -10v-419zM577 556c-49 -2 -102 -13 -138 -41c-57 -45 -78 -108 -78 -171c0 -62 18 -126 75 -171c37 -29 89 -54 141 -57l12 10v420'], + 0xE292: [703,1,1115,70,998,'939 592l-42 -174c-6 -23 -12 -45 -24 -66c-23 -39 -42 -58 -113 -77c-38 -11 -80 -18 -121 -23l-7 -9c0 -57 4 -113 12 -169c2 -12 12 -24 27 -28l88 -20v-27h-385l1 29l83 16c18 3 31 16 31 30v166l-8 9c-43 5 -87 11 -128 21c-26 7 -54 14 -74 30 c-28 21 -45 49 -56 78c-15 37 -19 75 -21 114c0 48 0 122 -23 141c-15 11 -33 16 -52 16c-9 0 -33 -3 -49 -9l-8 24c67 14 186 39 208 39c17 0 36 -2 49 -12s18 -26 18 -40c1 -52 1 -88 2 -140c3 -75 25 -155 96 -207c10 -7 26 -15 40 -19l11 6c0 129 -1 316 -5 375l132 32 l18 -12c-5 -127 -5 -266 -5 -399l9 -6c10 2 39 9 50 18c33 26 55 59 60 95l33 187c5 26 13 52 32 74c58 15 119 27 180 33l-4 -27c-35 -11 -48 -41 -55 -69'], + 0xE293: [700,5,1322,135,1181,'1181 105l-41 -110c-71 4 -185 10 -213 10c-78 0 -158 -1 -237 -6l30 95c51 11 96 33 133 62c32 24 49 56 62 89c16 43 21 88 21 134c0 85 -26 173 -105 234c-43 34 -105 46 -166 46c-65 0 -132 -11 -178 -47c-80 -62 -102 -152 -102 -239c0 -62 18 -123 58 -176 c36 -46 87 -84 153 -102l-39 -92c-69 4 -139 5 -210 5c-68 0 -136 -2 -205 -5l-7 11l33 95c94 -6 183 -12 278 -13l4 12c-143 46 -232 156 -232 277c0 85 38 168 114 229c40 30 90 50 143 63c65 17 133 23 202 23c65 0 129 -6 190 -22c51 -12 99 -31 136 -61 c74 -58 96 -141 96 -222c0 -78 -27 -158 -98 -214c-45 -36 -87 -59 -150 -75l4 -11c101 5 226 10 326 10'], + 0xE294: [476,18,1038,209,943,'824 476l78 -36l-156 -179l55 -149c6 -14 14 -29 28 -39c7 -6 16 -9 27 -9c12 0 39 17 60 31l15 -1l12 -15c-31 -26 -62 -51 -97 -72c-22 -12 -45 -25 -73 -25c-17 0 -36 3 -49 14c-26 23 -53 105 -71 162l-9 1c-31 -30 -79 -73 -101 -90c-30 -24 -63 -45 -102 -61 c-30 -13 -62 -22 -97 -22c-27 0 -55 7 -74 22c-22 18 -35 41 -44 64c-12 31 -17 64 -17 96c0 89 40 176 121 239c53 42 124 67 200 67c47 0 89 -15 123 -41c21 -17 45 -59 63 -100h11zM633 220c-11 28 -24 61 -37 88s-28 57 -56 78c-20 16 -45 28 -74 28s-57 -11 -77 -28 c-22 -17 -33 -40 -40 -64c-12 -34 -15 -70 -15 -105c0 -26 3 -52 12 -76c7 -19 18 -37 35 -51c14 -11 33 -18 52 -18c35 0 63 18 87 36c26 20 62 50 113 112'], + 0xE295: [676,194,1022,229,818,'368 -152l-123 -42l-16 10c6 122 6 340 6 510c0 58 2 116 23 171c18 43 42 85 82 117c53 41 130 62 203 62c55 0 112 -6 151 -37c29 -23 48 -54 48 -87c0 -46 -23 -90 -65 -123c-28 -21 -59 -36 -97 -46l-2 -11c35 -3 69 -5 101 -14c30 -9 59 -20 81 -38 c38 -29 58 -72 58 -114c0 -56 -19 -113 -70 -153c-62 -48 -150 -64 -236 -64c-22 0 -45 1 -67 6c-16 4 -33 9 -44 18c-8 6 -14 13 -19 21l71 75l14 -3c5 -20 14 -41 30 -57c14 -13 33 -23 53 -23c28 0 53 9 72 24c20 16 33 38 40 59c10 27 13 56 13 85c0 28 -19 85 -58 115 c-18 14 -43 18 -68 22c-40 6 -82 7 -124 7l1 34c55 0 108 16 146 46c39 30 53 72 53 113c0 25 -13 52 -35 69c-26 20 -59 30 -95 30c-37 0 -70 -14 -94 -35c-19 -16 -27 -39 -33 -60c-9 -37 -11 -74 -11 -111c0 -1 7 -384 11 -576'], + 0xE296: [475,201,958,102,830,'459 -201l-84 49l71 145c-7 75 -24 181 -50 253c-18 50 -37 100 -85 138c-19 15 -48 24 -76 24c-41 0 -84 -21 -114 -42l-19 25c56 44 128 80 209 80c45 0 89 -11 120 -35c39 -32 63 -73 74 -117c15 -59 21 -111 23 -186l11 -2c77 110 133 211 177 332l22 12l92 -31 c-75 -115 -155 -211 -235 -306c-17 -21 -52 -76 -63 -105c0 -60 0 -145 -9 -199'], + 0xE297: [672,11,887,199,691,'399 390c-54 -40 -81 -97 -81 -154c0 -55 20 -111 71 -151c20 -16 45 -27 74 -27c39 0 85 9 108 29c21 18 29 54 29 82c0 32 -22 61 -44 88c-32 39 -74 72 -119 104zM632 655l-21 -43c-23 4 -88 12 -131 12c-21 0 -43 -1 -64 -5c-13 -2 -27 -5 -36 -13 c-11 -7 -15 -18 -15 -29c0 -19 18 -35 35 -49c30 -26 79 -58 120 -85c48 -31 92 -65 126 -105c24 -28 45 -59 45 -94c0 -67 -32 -133 -92 -180c-58 -45 -133 -75 -214 -75c-48 0 -96 10 -129 37c-45 35 -57 87 -57 137c0 100 74 188 173 248c-18 14 -34 28 -49 44 c-18 19 -38 40 -38 63c0 43 28 81 66 111c22 17 50 26 79 32c39 9 78 11 96 11c20 0 68 -5 98 -8'], + 0xE298: [471,7,890,202,730,'619 263l-19 -44h-39c-85 0 -171 -1 -213 -3l-8 -9c7 -43 30 -86 71 -118c35 -27 85 -34 132 -34c60 0 117 17 163 45l10 -1l14 -19c-77 -56 -181 -87 -286 -87c-61 0 -124 8 -168 43c-57 44 -74 109 -74 170c0 73 28 144 94 196c57 45 135 69 215 69 c75 0 147 -25 198 -68l-62 -64l-17 3c-13 22 -29 44 -51 61c-23 18 -54 26 -87 26c-37 0 -73 -11 -99 -32c-41 -33 -58 -79 -59 -124l7 -9c43 -2 86 -2 127 -2c50 0 101 0 151 1'], + 0xE299: [674,129,816,197,698,'599 -129l-25 14c17 22 32 46 32 73c0 9 -6 19 -14 27c-15 12 -28 14 -61 14c-18 0 -37 -2 -55 -3c-30 -3 -74 -5 -89 -5c-24 0 -96 10 -125 33c-47 36 -65 88 -65 138c0 80 39 155 94 223c46 57 105 107 165 155c19 14 39 27 60 40l-3 9c-30 1 -93 7 -133 14 c-24 4 -49 11 -70 20l-3 11l43 40h13c23 -14 51 -27 77 -34c32 -10 93 -23 155 -23c26 0 53 3 76 6v-24c-54 -14 -105 -34 -148 -63c-57 -38 -100 -86 -134 -138c-38 -57 -59 -111 -59 -184c0 -42 8 -86 45 -117c26 -21 85 -25 96 -25c18 0 40 1 64 3s47 3 67 3 c8 0 58 -3 81 -20c10 -9 15 -20 15 -32c0 -22 -13 -42 -27 -63c-21 -32 -45 -62 -72 -92'], + 0xE29A: [470,197,965,118,731,'731 -156l-123 -41l-16 12c7 106 7 246 7 369c0 48 0 108 -6 142c-2 20 -8 41 -26 55s-41 21 -64 21c-49 0 -92 -16 -131 -37c0 -74 2 -312 4 -334l-119 -38l-13 10c0 101 9 203 9 304c0 29 0 67 -20 83c-6 5 -15 6 -25 6c-21 0 -50 -15 -72 -27l-18 23 c34 25 60 44 95 59c27 12 53 19 83 19c19 0 36 -4 49 -14c12 -10 19 -25 23 -50l12 -3c33 17 68 32 103 44c37 13 77 22 116 22c36 0 65 -13 89 -32c21 -17 26 -44 28 -67c4 -30 5 -117 5 -175c0 -117 0 -234 10 -351'], + 0xE29B: [677,14,961,202,758,'535 677c48 0 95 -10 130 -37c34 -27 55 -62 70 -98c17 -46 23 -95 23 -144c0 -68 -8 -136 -32 -202c-20 -50 -48 -98 -96 -135c-55 -44 -127 -75 -207 -75c-45 0 -91 13 -124 39c-37 29 -57 70 -71 110c-20 57 -26 116 -26 175s4 130 27 186c19 45 44 85 88 116 c59 42 137 65 218 65zM469 361h159l10 9c-3 33 -9 72 -17 102c-11 44 -29 87 -71 119c-22 18 -59 31 -91 31c-34 0 -62 -10 -86 -29c-26 -19 -39 -47 -46 -74c-14 -48 -17 -114 -17 -148l13 -10h146zM314 306c4 -34 10 -69 22 -102c15 -44 35 -91 75 -123 c28 -23 52 -28 83 -28c36 0 69 5 92 28c20 19 34 48 41 73c10 36 13 110 13 154l-11 9h-159h-145'], + 0xE29C: [469,11,620,237,509,'495 104l14 -12c-15 -19 -32 -38 -51 -53c-34 -27 -77 -50 -128 -50c-20 0 -43 11 -56 23c-7 7 -20 27 -24 42c-7 28 -7 57 -7 85c0 100 0 199 -6 299l120 31l15 -8c-6 -99 -8 -197 -8 -296c0 -30 2 -74 19 -88c8 -6 17 -9 27 -9c32 0 55 18 75 36h10'], + 0xE29D: [471,12,886,234,757,'670 467l87 -30v-10c-36 -13 -143 -56 -191 -83c-43 -24 -70 -39 -108 -66c45 -43 89 -82 138 -120c48 -38 103 -78 152 -109l1 -9l-124 -52c-50 38 -99 77 -145 118l-111 102l-10 -7c0 -60 1 -116 4 -176l-113 -32l-13 6c0 76 3 151 3 227c0 7 -4 141 -6 211l122 34 l12 -12l-9 -200l8 -4c52 43 117 92 156 120c46 33 95 64 147 92'], + 0xE29E: [679,8,901,139,761,'441 374c-34 -59 -72 -124 -90 -159c-33 -64 -72 -142 -92 -195l-111 -26l-9 13c41 72 87 143 135 213l131 188c6 8 13 19 18 28c-20 48 -43 94 -51 109c-12 20 -27 42 -47 58c-18 14 -40 23 -66 23c-25 0 -53 -4 -80 -11l-11 23c56 21 117 41 181 41c37 0 73 -11 98 -32 c22 -17 34 -39 45 -61c33 -61 57 -125 86 -188c56 -121 116 -240 183 -357l-3 -12l-116 -37l-28 11c-53 128 -105 244 -164 371h-9'], + 0xE29F: [474,196,959,215,849,'591 116l1 139c0 52 -2 124 -3 186l113 33l14 -6c-1 -90 -3 -221 -3 -269c0 -36 0 -90 20 -106c7 -5 16 -9 25 -9c24 0 48 13 69 26l11 -1l11 -13c-31 -28 -62 -55 -99 -77c-22 -14 -46 -29 -75 -29c-18 0 -41 4 -53 14c-20 17 -29 43 -31 70c-36 -22 -75 -43 -116 -59 c-31 -12 -64 -21 -97 -21c-31 0 -61 6 -84 28l-9 -3v-46c0 -47 10 -93 31 -137l-82 -32l-19 14c17 208 19 436 19 436c0 61 -5 122 -8 183l120 36l17 -8c-4 -70 -7 -141 -7 -211c0 -38 0 -76 8 -113c4 -22 12 -45 32 -60c14 -12 41 -12 63 -12c50 0 95 25 132 47'], + 0xE2A0: [473,6,950,135,804,'716 471l83 -26l5 -13c-10 -19 -20 -39 -32 -59l-210 -353l-83 -26l-12 5c-20 84 -41 170 -75 252c-12 27 -27 54 -43 79c-10 16 -55 75 -116 75c-27 0 -53 -8 -75 -18l-23 29c46 36 113 57 178 57c40 0 84 -8 112 -32c35 -29 54 -69 70 -108c28 -65 46 -135 62 -202 l11 -1l62 126c27 66 48 133 57 200'], + 0xE2A1: [689,126,890,190,773,'672 -126l-24 16c17 19 39 46 39 64c0 13 -8 26 -19 35c-15 12 -43 14 -65 14c-62 0 -154 -12 -198 -12c-32 0 -65 4 -96 11c-23 6 -46 15 -65 29c-38 30 -54 72 -54 114c0 49 39 90 82 124c31 24 84 50 123 62v11c-11 2 -69 14 -97 35c-25 19 -35 46 -35 72 c0 35 23 65 54 89c20 15 44 27 69 38c19 8 36 14 56 20l-3 10c-33 1 -66 3 -100 8c-26 4 -64 11 -77 26l51 49l9 -1c18 -15 47 -29 73 -37c34 -11 78 -16 115 -16c47 0 79 2 119 6l4 -29c-38 -4 -77 -10 -113 -20c-25 -8 -50 -17 -68 -32c-29 -22 -56 -49 -56 -82 c0 -27 5 -56 30 -76c18 -14 42 -20 65 -25c36 -7 72 -9 108 -10v-26c-75 -5 -153 -18 -207 -61c-34 -26 -63 -59 -63 -97c0 -29 2 -59 29 -80c30 -23 74 -26 116 -26c56 0 140 11 182 11c21 0 42 -1 61 -5c14 -2 27 -5 38 -13c14 -11 18 -26 18 -41c0 -25 -9 -49 -23 -71 c-20 -31 -49 -58 -78 -84'], + 0xE2A2: [523,4,980,126,899,'303 485h432c53 0 115 8 146 38l18 -12c-18 -33 -41 -72 -63 -101c-18 -21 -30 -22 -40 -22h-90c-6 -44 -11 -94 -11 -130c0 -55 0 -132 34 -158c13 -11 31 -19 51 -19c19 0 44 13 61 26l12 -2l11 -20c-27 -22 -55 -45 -89 -62c-24 -12 -52 -22 -82 -22s-61 5 -83 22 c-18 14 -24 35 -28 55c-8 35 -8 70 -8 105c0 65 6 132 16 197l-8 8h-149c-16 -74 -36 -147 -60 -219c-20 -56 -47 -111 -74 -165l-15 -8l-90 12l-2 13c16 19 81 104 122 179c23 43 47 133 57 188h-109c-16 0 -32 -7 -43 -17c-29 -24 -47 -57 -61 -92l-32 12 c15 64 43 159 71 177c12 8 23 10 37 13c22 4 46 4 69 4'], + 0xE2A3: [474,196,917,226,762,'370 -166l-107 -30c-16 3 -29 8 -29 15c-5 113 -8 236 -8 343c0 51 4 103 21 153c10 35 35 82 69 105c65 44 121 54 200 54c67 0 137 -15 184 -53c51 -39 62 -96 62 -151c0 -44 -5 -87 -20 -129c-13 -32 -30 -62 -59 -86c-47 -36 -116 -57 -167 -57 c-57 0 -118 16 -162 57l-10 -2c0 -68 17 -141 35 -207zM361 133c7 -21 18 -41 37 -56c21 -16 52 -24 81 -24c34 0 63 13 87 32c22 17 35 45 41 69c11 38 13 73 13 112c0 31 -6 66 -15 96c-7 21 -19 41 -37 56c-16 13 -38 21 -62 21c-33 0 -66 -10 -90 -29 c-26 -20 -38 -46 -48 -73c-12 -37 -19 -76 -19 -115c0 -24 2 -62 12 -89'], + 0xE2A4: [475,11,1022,205,895,'482 425c-29 0 -55 -11 -76 -28c-26 -20 -55 -73 -55 -169c0 -36 2 -71 14 -106c7 -24 17 -47 39 -65c20 -15 46 -25 73 -25c33 0 61 15 83 32c22 18 33 42 41 65c12 34 14 69 14 104c0 34 -2 69 -12 102c-6 22 -21 43 -39 61c-18 17 -53 29 -82 29zM886 475l9 -4 l-25 -78l-12 -7l-229 35l-7 -7c25 -12 39 -23 62 -42c44 -37 56 -91 56 -141c0 -65 -18 -131 -77 -178c-51 -39 -117 -64 -188 -64c-70 0 -143 9 -194 49c-61 48 -76 119 -76 186c0 65 9 137 69 184c56 44 130 56 208 56c131 1 273 8 404 11'], + 0xE2A5: [497,7,882,141,782,'684 372h-141l-14 -11c-6 -41 -15 -100 -15 -138c0 -26 3 -57 10 -82c6 -24 16 -43 36 -59c11 -9 28 -13 43 -13s40 11 61 24l11 -1l12 -15c-25 -22 -62 -49 -96 -64c-24 -11 -51 -20 -80 -20c-28 0 -59 3 -78 18c-16 13 -30 27 -37 45c-8 23 -9 47 -9 71c0 20 1 53 3 73 c8 60 14 105 20 161l-10 10h-86c-25 0 -71 -3 -91 -18c-26 -21 -40 -55 -52 -85l-30 8c9 39 23 94 29 115c5 16 12 31 25 43c26 19 62 26 97 26h342c49 0 97 12 135 37l13 -9c-11 -42 -42 -75 -76 -107c-6 -6 -14 -9 -22 -9'], + 0xE2A6: [472,2,930,108,766,'579 399l-3 12l96 61l19 -6c59 -44 75 -109 75 -171c0 -87 -47 -169 -125 -230c-53 -42 -125 -67 -202 -67c-46 0 -94 7 -128 33c-38 30 -61 75 -61 114c0 4 -1 107 -2 160c0 29 -5 61 -22 76c-7 6 -18 11 -28 11c-23 0 -49 -11 -72 -21l-18 19c57 33 137 81 181 81 c20 0 40 -6 54 -17c25 -19 25 -74 25 -83v-131c0 -29 3 -60 13 -88c8 -22 21 -42 42 -58c24 -20 60 -29 95 -29c36 0 73 12 99 32c40 32 51 86 51 133c0 63 -35 122 -89 169'], + 0xE2A7: [672,196,1222,205,1021,'548 -196l-16 11c4 55 9 112 9 169l-10 9c-53 0 -101 2 -151 14c-35 8 -69 20 -94 40c-60 47 -81 114 -81 180c0 64 18 131 77 177c35 27 100 65 248 65l10 10c-2 53 -5 105 -6 158l122 35l9 -9c-2 -26 -2 -102 -3 -184l11 -10c54 0 109 0 178 -15c38 -9 75 -22 104 -45 c50 -39 66 -96 66 -150c0 -73 -26 -145 -92 -197c-73 -57 -170 -69 -256 -69l-10 -9c0 -48 0 -95 1 -143zM528 437c-49 0 -85 -16 -124 -46c-21 -17 -34 -39 -40 -61c-9 -29 -12 -62 -12 -94c0 -34 5 -69 17 -102c10 -25 25 -50 48 -69c31 -25 66 -37 114 -37l9 10v389z M673 28c56 0 102 18 133 43c24 19 40 45 51 72c12 34 17 70 17 105c0 31 -3 62 -13 92c-8 21 -17 42 -38 58c-48 39 -106 39 -150 39l-11 -9v-392'], + 0xE2A8: [470,197,890,95,799,'793 -116l6 -22c-34 -15 -68 -30 -102 -41c-22 -7 -46 -14 -70 -14c-26 0 -51 8 -70 22c-27 22 -46 50 -63 77c-20 33 -61 105 -93 165h-13c-27 -30 -94 -115 -160 -262l-15 -6l-96 35c78 100 165 194 252 286c-34 66 -77 146 -95 175c-15 25 -35 56 -56 73 c-11 8 -24 14 -38 14c-5 0 -12 -1 -17 -3c-9 -3 -31 -14 -47 -24l-21 22c28 21 63 45 97 61c22 11 48 20 74 20c15 0 32 -2 43 -11c25 -19 40 -42 54 -66c3 -4 52 -94 89 -163h11l214 242l18 6l63 -34l-2 -11c-84 -91 -186 -170 -275 -258c53 -97 123 -221 176 -264 c20 -16 47 -25 74 -25c21 0 42 3 62 6'], + 0xE2A9: [672,196,1162,102,966,'643 672l10 -9c-5 -48 -5 -256 -5 -384v-236l10 -8c52 7 100 26 130 50c54 42 68 105 68 163c0 55 -32 105 -83 142v14l78 61s22 -6 28 -7c53 -44 87 -102 87 -163c0 -78 -35 -159 -106 -214c-40 -32 -91 -54 -145 -68c-18 -5 -41 -8 -57 -11l-10 -10 c1 -51 1 -100 2 -151l-116 -37l-15 11c5 56 7 114 9 172l-9 8c-47 0 -96 2 -141 11c-33 7 -64 16 -87 34c-21 17 -35 38 -43 61c-12 28 -15 58 -15 88c0 35 3 70 3 105c0 66 -9 77 -21 87c-9 7 -22 10 -35 10c-20 0 -45 -11 -63 -20l-15 19c33 22 68 43 106 60 c23 11 49 21 77 21c17 0 36 -4 49 -14c14 -11 25 -29 25 -105c0 -40 -3 -81 -3 -121c0 -34 2 -69 13 -102c9 -25 24 -50 47 -68c28 -21 65 -33 104 -33l10 8v230c0 124 -6 247 -10 371'], + 0xE2AA: [499,9,1337,195,1134,'936 432l78 63l24 4c32 -14 58 -46 72 -73c17 -36 24 -74 24 -111c0 -95 -42 -187 -128 -254c-53 -42 -124 -68 -199 -68c-50 0 -103 5 -139 33c-16 12 -29 32 -38 48h-17c-29 -22 -61 -43 -96 -59c-33 -15 -76 -24 -119 -24c-47 0 -93 13 -126 39 c-57 44 -77 107 -77 168c0 89 28 181 111 245c32 25 73 43 117 53l20 -20c-21 -9 -40 -21 -56 -35c-56 -43 -77 -105 -77 -166c0 -64 25 -127 83 -173c25 -20 61 -29 98 -29s58 13 84 33c25 20 31 68 31 101v162c0 12 -3 62 -6 95l124 32l12 -10c-7 -70 -12 -140 -12 -210 c0 -38 3 -75 14 -112c8 -25 20 -50 43 -68c26 -20 57 -29 92 -29c38 0 76 12 103 33c43 34 58 85 58 132c0 68 -30 134 -95 181'], + 0xE2AB: [472,16,827,227,683,'523 286l-38 -64c-15 4 -59 11 -75 11c-19 0 -41 -10 -50 -18c-15 -14 -21 -28 -21 -47c0 -29 17 -57 42 -78c30 -23 74 -29 115 -29c60 0 117 24 164 53l9 -1l14 -17c-43 -33 -91 -62 -144 -83c-44 -17 -93 -29 -142 -29c-47 0 -94 12 -126 40c-28 24 -44 59 -44 94 c0 34 17 62 46 90c11 10 30 22 60 31l-1 6c-14 4 -24 9 -41 22c-26 20 -38 49 -38 76c0 36 20 62 53 85c43 30 101 44 154 44c56 0 112 -13 152 -45l-50 -75h-13c-10 19 -22 40 -38 53c-23 18 -53 31 -86 31c-22 0 -43 -6 -59 -18c-14 -11 -24 -24 -24 -40 c0 -22 9 -43 29 -58c16 -13 40 -21 62 -26c28 -7 61 -8 90 -8'], + 0xE2AC: [676,8,951,105,815,'120 273l-15 20c57 34 130 77 177 77c18 0 35 -3 48 -13c22 -18 22 -78 22 -120c0 -29 0 -60 9 -88c7 -20 19 -41 39 -56c22 -18 52 -27 84 -27c35 0 49 6 75 24c18 13 48 46 62 105c9 37 15 75 17 112l-8 8l-122 20c-45 11 -89 24 -122 50c-47 37 -78 84 -78 136 c0 41 15 83 53 113c36 28 86 42 137 42s101 -15 137 -43c101 -79 105 -184 105 -282l8 -9c20 0 53 -1 67 -1v-35c-34 0 -53 0 -71 1l-10 -7c-13 -91 -58 -167 -117 -222c-48 -44 -132 -86 -207 -86c-43 0 -87 8 -117 33c-23 18 -41 43 -50 68c-12 36 -14 73 -14 111 c0 40 -2 60 -15 72c-10 9 -22 15 -38 15c-18 0 -38 -9 -56 -18zM640 359v18c0 46 -7 91 -25 134c-12 34 -31 67 -63 91c-22 18 -51 31 -84 31c-21 0 -42 -5 -57 -17c-14 -11 -24 -29 -24 -51c0 -66 34 -114 92 -159c36 -29 102 -45 152 -53'], + 0xE2AD: [547,11,1291,202,1108,'419 381l12 -14l-2 -3c-22 -9 -42 -21 -60 -35c-37 -29 -55 -69 -55 -110c0 -45 16 -90 57 -122c25 -20 60 -32 96 -32c34 0 67 7 90 26c14 11 21 33 26 52c7 31 7 63 7 92l-1 79l109 32l17 -16c-2 -32 -6 -93 -6 -96c2 -30 3 -59 13 -88c7 -20 18 -42 36 -57 c21 -16 46 -29 75 -29c41 0 82 11 112 33c46 33 64 85 64 134c0 63 -25 126 -82 171c-36 28 -84 45 -133 56c-66 15 -135 19 -203 19c-72 0 -145 -8 -213 -27c-54 -15 -105 -36 -142 -71l-20 14c17 19 31 35 51 52c47 36 116 73 166 84c67 14 145 22 223 22 c74 0 155 -7 226 -23c54 -12 108 -32 148 -63c56 -44 78 -107 78 -170c0 -89 -44 -175 -112 -227c-64 -48 -145 -75 -224 -75c-45 0 -91 13 -123 37c-15 12 -28 28 -34 40l-13 3c-25 -20 -52 -40 -82 -53c-36 -18 -76 -27 -119 -27c-52 0 -102 14 -138 43 c-44 34 -61 82 -61 130c0 60 32 117 86 159c36 28 81 48 131 60'], + 0xE2AE: [472,201,1156,204,960,'491 -201l-17 4c3 43 6 137 6 188l-7 8c-25 1 -43 4 -69 9c-45 9 -89 25 -123 51c-55 44 -77 106 -77 168c0 60 22 120 76 163c54 41 126 70 199 82l11 -24c-35 -9 -67 -24 -94 -45c-45 -36 -58 -87 -58 -137c0 -74 16 -156 85 -210c14 -12 29 -17 50 -20l7 6v228 c0 61 26 95 73 133c38 31 115 65 202 65c48 0 98 -10 133 -37c53 -42 72 -100 72 -158c0 -73 -29 -145 -95 -197c-68 -54 -161 -77 -257 -79l-7 -7c0 -52 4 -128 6 -161zM609 30c29 0 46 2 69 11c26 11 50 23 71 40c57 44 73 112 73 174c0 53 -22 111 -63 147 c-16 13 -40 19 -53 19c-20 0 -44 -3 -58 -14c-20 -15 -30 -29 -36 -47c-9 -27 -11 -72 -11 -104v-218'], + 0xE2AF: [716,15,848,151,700,'482 716c29 -11 65 -34 85 -49c47 -37 80 -84 103 -134c28 -60 30 -125 30 -189c0 -100 -28 -209 -132 -298c-47 -40 -112 -61 -172 -61c-54 0 -105 18 -144 48c-36 28 -59 65 -74 103c-20 49 -27 99 -27 149c0 125 39 254 156 341c51 38 112 77 175 90zM402 632 c-16 -7 -37 -17 -50 -28c-32 -25 -54 -58 -68 -92c-18 -41 -25 -84 -25 -128c0 -56 8 -112 30 -166c19 -44 46 -85 86 -117c25 -19 56 -34 92 -34c31 0 59 10 79 25c19 15 38 43 47 68c11 28 18 64 18 114c0 94 -16 190 -83 269c-17 21 -39 42 -63 58c-19 12 -43 26 -63 31'], + 0xE2B0: [715,9,848,186,519,'186 626l315 89l18 -18c-13 -137 -17 -275 -17 -413c0 -84 0 -188 3 -252l-124 -41l-24 14c15 118 22 237 22 356c0 67 -2 133 -6 200c-1 8 -6 18 -12 24c-6 5 -19 9 -26 9h-149v32'], + 0xE2B1: [715,-5,848,122,719,'719 109l-34 -104h-563v20c114 81 217 169 303 269c54 62 96 133 96 209c0 41 -10 84 -48 113c-22 18 -56 25 -87 25c-27 0 -54 -7 -78 -16c-34 -12 -64 -28 -94 -45l-20 24c43 34 85 59 138 81c42 17 89 30 136 30c55 0 110 -10 150 -41c35 -28 57 -65 57 -105 c0 -56 -27 -109 -63 -157c-81 -107 -194 -195 -291 -294c-1 -1 -1 -3 -1 -4c0 -2 3 -5 7 -5h392'], + 0xE2B2: [708,8,848,134,680,'431 391v-7c39 -3 79 -8 116 -18c29 -8 57 -18 79 -35c36 -28 54 -68 54 -108c0 -57 -24 -113 -76 -153c-67 -53 -160 -78 -255 -78c-79 0 -157 20 -215 61l66 107l22 -2c12 -35 26 -69 58 -94c21 -16 48 -32 77 -32c44 0 88 10 119 35c44 34 57 86 57 134 c0 41 -15 82 -52 111c-23 19 -55 28 -86 35c-44 9 -90 12 -136 12v29c63 3 143 21 194 61c31 24 44 58 44 93c0 28 -12 57 -37 77c-24 19 -57 25 -89 25c-26 0 -50 -6 -73 -14c-32 -11 -61 -26 -90 -42l-20 25c44 28 85 51 136 70c40 14 80 25 123 25c50 0 102 -10 138 -38 c30 -23 48 -55 48 -88c0 -47 -25 -91 -67 -124c-39 -31 -85 -51 -135 -67'], + 0xE2B3: [708,12,848,107,707,'584 255h118l5 -9l-34 -62h-89l-8 -7c0 -49 3 -97 8 -145l-125 -44l-16 11c6 59 11 119 11 179l-8 6h-339v52l347 443l122 29l10 -10l-10 -435zM454 260v311l-7 10c-4 0 -55 -51 -113 -126c-118 -147 -133 -191 -134 -194l7 -9h238'], + 0xE2B4: [694,12,848,126,679,'656 694l6 -4l-44 -99h-354v-174l12 -4c53 22 106 33 160 33c65 0 131 -13 177 -50c48 -37 66 -89 66 -141c0 -68 -26 -138 -89 -187c-64 -50 -151 -80 -243 -80c-41 0 -82 4 -123 14c-25 6 -66 28 -98 47v13l57 95h21c11 -33 25 -67 56 -92c27 -21 64 -35 101 -35 c40 0 78 11 106 33c23 18 37 42 47 66c12 32 18 68 18 101c0 50 -14 102 -60 139c-28 21 -69 28 -107 28c-42 0 -108 -25 -141 -56l-23 8v345h455'], + 0xE2B5: [704,12,848,156,708,'680 625l-22 -2c-28 15 -61 23 -95 23c-62 0 -120 -24 -165 -58c-37 -30 -60 -69 -76 -109c-21 -46 -30 -95 -33 -143l10 -5c58 31 122 55 193 55c50 0 99 -11 135 -39c44 -35 68 -82 68 -131c0 -58 -36 -111 -88 -152c-58 -46 -137 -76 -220 -76c-52 0 -100 20 -137 48 c-72 57 -94 138 -94 217c0 126 62 248 175 338c83 64 188 113 306 113c15 0 53 -7 71 -14zM292 286c2 -45 6 -90 22 -133c11 -31 31 -62 60 -85c22 -18 51 -29 84 -29c31 0 61 11 83 28c33 26 50 63 50 98c0 45 -19 90 -59 122c-30 24 -73 33 -115 33 c-45 0 -87 -17 -125 -34'], + 0xE2B6: [696,15,848,163,740,'396 20l-138 -35l-21 19c22 77 68 175 113 246c65 100 175 224 270 332c2 3 4 6 4 10c-4 4 -11 4 -17 4c-110 -1 -220 -1 -330 -1c-21 -1 -42 -9 -49 -25c-2 -7 -15 -58 -22 -90h-43v216c171 -3 384 -3 577 -3v-17c-94 -116 -181 -234 -255 -358 c-53 -92 -81 -198 -89 -298'], + 0xE2B7: [720,5,848,154,691,'394 330c-28 -11 -58 -26 -80 -43c-30 -24 -37 -58 -37 -91c0 -47 23 -92 63 -126c23 -19 60 -33 92 -33c36 0 71 5 96 25c29 24 43 62 43 95c0 40 -28 76 -63 104c-35 27 -75 49 -114 69zM518 393c35 -20 76 -42 96 -58c45 -34 77 -79 77 -129c0 -54 -30 -104 -78 -142 c-61 -48 -147 -69 -233 -69c-60 0 -122 13 -165 46c-40 32 -61 75 -61 120c0 46 22 92 64 125c29 23 90 49 133 67v7c-39 27 -82 53 -111 87c-22 26 -40 55 -40 86c0 41 28 77 64 106c46 36 118 62 179 81c44 -5 73 -10 110 -21c29 -9 53 -22 73 -38c28 -22 39 -44 39 -75 c0 -36 -17 -69 -41 -99c-29 -32 -67 -60 -106 -84v-10zM470 422c50 29 77 80 77 128c0 29 -14 59 -41 80c-29 23 -70 34 -109 37c-22 -7 -39 -21 -53 -35c-16 -18 -22 -40 -22 -62s16 -45 35 -62c31 -31 73 -62 113 -86'], + 0xE2B8: [707,10,848,161,701,'541 342l-8 7c-83 -36 -155 -46 -179 -46c-48 0 -95 18 -130 45c-39 31 -63 73 -63 117c0 47 20 95 58 131c46 44 112 81 178 111c50 0 97 0 146 -9c32 -6 72 -19 93 -36c38 -29 65 -68 65 -111c0 -36 -15 -71 -33 -105c-26 -50 -60 -97 -97 -144 c-44 -55 -86 -110 -125 -168c-25 -38 -51 -77 -68 -118l-125 -26l-17 12c22 34 49 64 77 95zM546 393c10 23 23 52 23 77c0 52 -22 102 -68 138c-33 26 -109 38 -147 38c-45 -30 -69 -78 -69 -123s18 -89 59 -121c29 -23 71 -32 111 -32c34 0 63 10 91 23'], + 0xE2B9: [531,36,1101,168,914,'914 505l-3 -9l-626 -241v-12l622 -241l6 -10l-14 -23l-12 -5l-719 280v12l722 275l12 -3'], + 0xE2BA: [531,36,1101,189,935,'191 494l-2 10l12 24l12 3l722 -275v-12l-720 -280l-12 5l-11 24l6 9l622 243v9'], + 0xE2BB: [696,18,955,206,752,'237 534l-27 11c17 37 34 75 69 103c43 33 101 48 160 48c64 0 123 -29 167 -64c52 -41 87 -94 109 -149c27 -67 37 -135 37 -204c0 -87 -23 -177 -103 -240c-48 -38 -115 -57 -182 -57c-73 0 -138 21 -189 61c-26 20 -43 51 -54 78c-12 34 -18 69 -18 104 c0 66 20 135 81 183c59 47 139 69 223 69c8 0 27 -1 45 -3l7 10c-19 38 -41 73 -78 101c-29 23 -72 40 -115 40c-33 0 -65 -11 -89 -30c-15 -12 -31 -39 -43 -61zM582 430c-19 6 -40 11 -59 11c-43 0 -89 -10 -120 -35c-23 -18 -35 -42 -44 -67c-12 -32 -16 -65 -16 -99 c0 -39 3 -78 17 -116c11 -28 25 -55 51 -76c20 -15 48 -27 76 -27c25 0 52 8 70 22c27 21 38 53 47 82c13 45 16 91 16 136c0 58 -14 115 -38 169'], + 0xE2BC: [687,14,1171,108,1057,'257 10l-146 -11l-3 10c157 201 301 406 430 619c1 1 1 3 1 5c0 1 -2 4 -4 4l-109 12v38h260l129 -373c23 -65 47 -130 85 -191c9 -14 18 -28 32 -41c19 -16 30 -20 50 -20s46 4 67 8l8 -28c-41 -16 -82 -31 -125 -42c-28 -8 -56 -14 -85 -14c-25 0 -51 6 -67 22 c-22 23 -36 50 -45 78l-59 182h-291c-40 -64 -89 -171 -128 -258zM640 320c3 0 10 2 10 5s0 11 -1 13l-75 205c-3 6 -8 8 -11 8c-2 0 -7 -3 -10 -8l-122 -208c-2 -3 -2 -5 -2 -9c0 -3 8 -6 12 -6h199'], + 0xE2BD: [703,2,1052,151,849,'593 379v-11c42 -3 83 -9 122 -20c30 -8 59 -20 81 -37c35 -28 53 -65 53 -104c0 -53 -21 -106 -70 -144c-30 -24 -70 -38 -110 -48c-54 -12 -108 -17 -164 -17h-283v16c11 6 28 13 33 22c8 15 9 31 9 48v482c0 26 0 61 -16 74c-14 11 -32 20 -97 36v21l7 6h358 c54 0 106 -3 159 -14c37 -8 74 -19 100 -40c34 -26 46 -63 46 -99c0 -39 -20 -76 -55 -104c-46 -36 -112 -56 -173 -67zM409 117c0 -23 0 -59 10 -67c10 -7 25 -10 37 -10c58 0 120 10 162 43c41 33 62 79 62 126c0 36 -21 69 -53 95c-21 17 -51 25 -81 31 c-43 9 -93 11 -137 12v-230zM409 385c38 0 82 2 119 11c28 6 56 16 77 32c38 30 58 72 58 114c0 32 -13 65 -42 88c-16 12 -37 18 -58 23c-30 6 -60 8 -91 8c-16 0 -34 -1 -48 -5c-6 -1 -10 -6 -12 -10c-3 -5 -3 -28 -3 -42v-219'], + 0xE2BE: [711,18,1125,205,976,'976 585l-109 -86l-18 3c-14 46 -36 91 -79 125c-36 28 -87 39 -137 39c-55 0 -107 -15 -145 -45c-87 -68 -113 -166 -113 -261s32 -192 119 -260c48 -38 116 -57 184 -57c94 0 183 29 265 63l24 -25c-98 -59 -214 -99 -337 -99c-59 0 -118 6 -175 21 c-46 12 -90 30 -125 58c-90 70 -125 171 -125 270s30 201 122 272c89 70 211 108 337 108c50 0 101 -4 150 -16c39 -10 76 -24 105 -47c24 -18 41 -41 57 -63'], + 0xE2BF: [698,1,1252,156,1065,'231 -1v14c11 12 30 26 34 40c3 10 4 35 4 53v429c0 30 0 67 -9 90c-3 12 -12 23 -27 29c-21 7 -54 11 -77 14v24l7 6h481c64 0 128 -5 189 -20c49 -12 96 -30 132 -58c78 -61 100 -150 100 -236c0 -99 -30 -201 -121 -272c-101 -80 -244 -113 -385 -113h-328zM414 185 c0 -36 1 -71 8 -106c1 -9 8 -17 16 -23c18 -14 53 -14 81 -14c96 0 195 21 265 75c37 30 61 68 76 107c20 50 27 102 27 154c0 43 -5 87 -21 128c-13 33 -30 64 -60 87c-32 24 -72 37 -113 46c-56 12 -114 16 -172 16c-29 0 -65 0 -90 -4c-10 -2 -14 -12 -16 -20 c-1 -4 -1 -37 -1 -56v-390'], + 0xE2C0: [709,8,952,118,807,'795 76l12 -8l-30 -76c-133 7 -265 8 -397 8c-37 0 -93 0 -110 4c-18 8 -39 28 -39 47v429c0 44 0 114 -4 132c-5 15 -11 30 -28 36c-26 10 -53 15 -81 18v23l8 7c187 0 424 0 554 13l15 -5v-62l-13 -11c-90 5 -264 14 -265 14c-7 0 -17 -1 -26 -4c-6 -3 -9 -6 -10 -10 c-4 -11 -5 -23 -5 -36v-180c0 -7 4 -14 11 -20c3 -3 8 -6 13 -6c71 0 251 16 255 17c1 0 10 -5 15 -8v-58c-80 3 -173 3 -261 3c-8 0 -17 0 -23 -5c-8 -6 -10 -14 -10 -22c0 -65 0 -142 11 -193c2 -17 6 -34 21 -46s35 -16 57 -16c16 0 330 15 330 15'], + 0xE2C1: [706,12,819,119,678,'381 23l-148 -35l-14 8c8 169 15 337 15 505c0 50 0 105 -6 122c-4 15 -22 30 -41 36c-21 7 -46 9 -68 11v20l9 8c187 0 463 0 550 8v-68l-8 -8c-122 6 -244 14 -263 14c-11 0 -20 -3 -26 -8c-4 -4 -7 -12 -7 -27v-194c0 -7 1 -15 7 -20c4 -4 8 -6 13 -6 c86 0 175 12 261 17l15 -12v-54c-69 3 -179 3 -267 3c-8 0 -17 0 -23 -5c-6 -4 -6 -14 -6 -22c0 -1 6 -195 7 -293'], + 0xE2C2: [709,14,1190,209,985,'567 303l394 13c-9 -93 -6 -187 2 -280c-114 -26 -232 -50 -351 -50c-104 0 -210 23 -284 82c-90 70 -119 169 -119 266c0 102 38 205 130 278c91 70 217 97 341 97c71 0 144 -6 205 -35c45 -21 78 -53 100 -89l-112 -90l-21 8c-16 45 -42 89 -85 122 c-32 26 -77 36 -123 36c-60 0 -119 -18 -162 -52c-37 -29 -60 -66 -77 -105c-19 -49 -26 -100 -26 -151c0 -91 25 -186 109 -252c55 -44 133 -62 212 -62c27 0 55 0 81 3c13 1 26 6 27 17c1 18 1 58 1 87v75c-2 15 -14 31 -34 34c-1 0 -139 7 -208 11v37'], + 0xE2C3: [711,7,1202,151,1061,'816 681l151 30l11 -10c-13 -115 -18 -230 -18 -345c0 -87 0 -251 1 -263c1 -18 8 -38 31 -47c20 -7 46 -13 69 -14v-24l-8 -7l-226 -8l-27 21c11 99 16 198 16 298c0 7 -2 16 -6 19c-9 7 -23 8 -36 8h-334c-10 0 -20 -2 -28 -8c-4 -4 -5 -14 -5 -20c0 -94 2 -188 7 -281 l-145 -36c-3 3 -9 8 -9 9c6 119 6 237 6 356v253c0 17 -21 29 -40 35c-25 7 -53 14 -75 18v23l10 8l248 2l9 -8c-6 -95 -13 -194 -13 -277c0 -5 6 -16 10 -18c9 -7 11 -7 26 -7h336c15 0 25 0 31 4c7 6 8 13 8 21v268'], + 0xE2C4: [696,-1,744,161,554,'427 618l-1 -251c0 -87 0 -209 4 -261c2 -26 15 -55 50 -62l74 -14v-29h-393v28l86 16c18 4 32 20 32 36c2 43 2 194 2 291c0 83 0 169 -7 250c-1 14 -15 25 -32 29l-80 15v26l4 4h375l5 -4v-27l-91 -16c-18 -3 -28 -17 -28 -31'], + 0xE2C5: [705,192,740,157,583,'459 513v-346c0 -66 -1 -115 -15 -151c-20 -51 -38 -73 -87 -108c-30 -21 -65 -41 -98 -59c-24 -14 -58 -30 -83 -41l-19 28c22 12 56 32 79 50c29 22 49 48 59 77c16 45 19 102 19 165v431c0 24 0 50 -4 72c-2 15 -17 25 -34 30c-28 7 -57 9 -86 9v27l10 8h373l10 -8 v-25c-26 -5 -78 -14 -79 -14c-16 -4 -32 -15 -37 -29c-8 -24 -8 -77 -8 -116'], + 0xE2C6: [702,12,1076,158,949,'430 387l343 310l123 5v-15l-349 -280c-3 -2 -6 -8 -6 -10c0 -4 2 -9 4 -9l404 -318v-16l-160 -59c-114 113 -234 224 -362 329h-11c0 -98 1 -196 13 -294l-151 -42l-12 10c5 113 6 227 6 340c0 92 0 246 -2 276c-3 18 -28 32 -49 38c-13 3 -42 9 -63 13v26l5 4l262 6 l8 -7c-12 -103 -17 -204 -17 -307h14'], + 0xE2C7: [702,5,929,154,787,'772 75l15 -9l-24 -71c-105 5 -361 5 -542 5v17c10 10 28 23 31 33c4 12 4 46 4 69v446c0 23 -1 41 -6 64c-3 12 -20 28 -35 33c-20 5 -40 8 -61 9v23l9 8h342l9 -8v-27c-21 -2 -48 -5 -74 -12c-14 -5 -31 -13 -35 -29c-3 -14 -4 -53 -4 -82v-291c0 -57 0 -145 6 -180 c2 -13 16 -20 26 -20c119 0 299 18 339 22'], + 0xE2C8: [701,16,1552,206,1410,'388 533l-68 -507l-98 -28l-16 5l87 357c20 82 44 183 44 246c0 22 -15 46 -58 56c-19 4 -38 6 -58 7v24l9 8h261c76 -181 157 -360 259 -534c2 -2 4 -4 7 -4s5 2 8 4c69 98 188 278 188 279c51 82 100 164 131 252l188 2l6 -12l-21 -20c-10 -11 -12 -25 -12 -73v-146 c0 -89 6 -177 15 -265c5 -41 11 -100 32 -116c11 -9 31 -14 46 -14c21 0 50 2 67 4l5 -27c-1 0 -107 -25 -160 -38c-23 -5 -45 -9 -69 -9c-16 0 -32 2 -42 10c-16 12 -25 28 -25 44c0 169 -2 327 -18 495c0 4 -2 11 -8 11c-2 0 -6 -5 -11 -11c-125 -178 -229 -350 -341 -534 h-86c-76 182 -150 355 -243 533c-2 4 -6 7 -10 7c-5 0 -9 -3 -9 -6'], + 0xE2C9: [713,3,1279,165,1024,'341 526l32 -492l-95 -37l-15 8c11 186 22 372 22 557c0 23 -1 38 -6 52c-5 13 -21 19 -34 31c-29 13 -54 18 -80 24v22l10 8h230c159 -170 331 -333 507 -493l14 2l-19 478l94 27l23 -14c-14 -136 -25 -271 -30 -407c-4 -96 -5 -192 3 -287h-87l-551 528 c-4 4 -8 6 -11 6c-4 0 -7 -4 -7 -13'], + 0xE2CA: [720,15,1231,189,1059,'189 330c0 108 41 223 140 300c89 70 205 90 343 90c99 0 200 -21 271 -76c84 -67 116 -161 116 -253c0 -58 -10 -116 -33 -171c-19 -46 -48 -89 -90 -123c-100 -78 -239 -112 -380 -112c-93 0 -185 22 -251 74c-41 32 -68 72 -86 115c-22 50 -30 103 -30 156zM349 366 c0 -103 29 -209 123 -283c41 -33 99 -52 160 -52s124 17 168 51c35 27 53 63 68 99c18 47 25 95 25 144c0 62 -8 124 -32 183c-18 46 -46 91 -90 126c-38 30 -93 46 -147 46c-62 0 -121 -24 -164 -58c-39 -30 -62 -64 -78 -104c-21 -49 -33 -101 -33 -152'], + 0xE2CB: [699,6,980,162,821,'418 30l-147 -36l-14 10c8 152 9 303 9 455c0 55 0 133 -4 164c-3 9 -10 19 -19 25c-22 15 -52 18 -81 21v22l9 8h400c41 0 80 -3 120 -12c29 -6 57 -16 79 -33c38 -30 51 -72 51 -114c0 -60 -21 -122 -77 -165c-25 -21 -59 -35 -95 -45c-44 -13 -92 -20 -138 -23 c-22 -2 -48 -2 -73 -2c-7 0 -14 -2 -19 -6c-5 -5 -7 -11 -7 -17c0 -1 4 -168 6 -252zM412 361c0 -5 4 -10 9 -14s15 -6 23 -6c52 0 109 14 147 43c45 37 65 87 65 138c0 39 -12 79 -48 107c-30 24 -71 35 -114 35c-22 0 -49 0 -71 -3c-12 -2 -13 -13 -13 -20 c0 -1 1 -187 2 -280'], + 0xE2CC: [714,197,1274,205,1074,'1056 -141l11 -29c-69 -18 -142 -27 -215 -27c-65 0 -126 21 -173 57c-47 38 -94 77 -134 120c-82 3 -163 25 -221 70c-89 70 -119 170 -119 268c0 109 33 220 133 298c89 70 219 98 346 98c100 0 202 -23 274 -79c87 -68 116 -165 116 -260c0 -55 -9 -111 -31 -164 c-17 -43 -45 -87 -83 -118c-59 -48 -133 -78 -215 -96l-8 -14c24 -33 51 -64 85 -92c31 -23 68 -44 111 -44c44 0 85 6 123 12zM643 26c65 0 129 16 175 52c36 28 56 67 70 106c19 53 24 108 24 164c0 54 -8 107 -27 159c-17 41 -42 80 -81 110c-42 34 -103 51 -163 51 c-62 0 -118 -19 -162 -53c-39 -30 -64 -65 -81 -106c-20 -51 -29 -104 -29 -157c0 -102 29 -205 123 -278c39 -31 97 -48 151 -48'], + 0xE2CD: [701,10,1038,161,875,'411 325l13 -284l-159 -49l-10 9c10 155 15 310 15 465c0 53 0 136 -4 158c-1 9 -3 18 -13 24c-25 17 -60 20 -92 22v26l5 5h373c46 0 94 -3 140 -12c33 -7 65 -17 90 -37c33 -26 46 -63 46 -100c0 -48 -15 -100 -59 -135c-48 -37 -107 -52 -170 -66l-5 -11 c99 -101 230 -234 291 -283l3 -16l-135 -51l-25 2l-289 331c-1 1 -5 2 -15 2zM411 366c54 0 148 15 184 46c38 34 55 78 55 124c0 34 -11 69 -43 93c-33 27 -83 33 -131 33c-15 0 -31 0 -46 -4c-9 -2 -13 -11 -14 -19c-1 -4 -5 -181 -5 -273'], + 0xE2CE: [723,14,968,199,791,'680 548l-19 5c-6 38 -25 76 -60 103c-25 20 -60 29 -96 29c-32 0 -64 -9 -86 -27c-25 -19 -34 -47 -34 -74c0 -34 13 -68 45 -92c39 -31 88 -54 137 -76c53 -23 117 -51 149 -77c44 -34 72 -78 72 -126c0 -50 -25 -98 -71 -133c-75 -59 -177 -94 -284 -94 c-52 0 -104 12 -149 33c-35 16 -63 41 -85 68l112 109l23 -7c0 -43 18 -87 58 -118c29 -22 67 -36 107 -36s76 14 102 35c31 23 47 55 47 88c0 38 -29 69 -63 96c-25 20 -82 46 -126 66c-47 21 -90 45 -128 75c-43 34 -75 77 -75 125c0 52 18 103 66 140 c61 48 150 63 235 63c39 0 76 -2 113 -10c27 -6 53 -15 73 -31c21 -17 37 -38 48 -60'], + 0xE2CF: [714,11,839,131,833,'403 496v133c0 8 -5 14 -10 15c-3 2 -10 3 -19 3l-233 -10l-10 9v58l9 8c112 -2 222 -9 334 -9c116 0 232 7 348 11l11 -10v-50l-12 -9c-13 0 -166 4 -245 4c-12 0 -16 -1 -20 -4c-3 -2 -4 -4 -4 -11v-138c0 -155 8 -311 19 -466l-167 -41l-10 12c6 165 9 330 9 495'], + 0xE2D0: [717,10,1205,137,1076,'774 671l163 46l17 -8c-9 -37 -16 -79 -18 -120c-7 -137 -7 -274 -7 -409c0 -37 0 -90 19 -105c12 -9 35 -12 61 -12c22 0 46 2 66 4l1 -18l-9 -10l-182 -44c-16 -4 -32 -5 -47 -5c-12 0 -25 2 -34 10c-13 12 -18 23 -23 39l-12 5c-82 -28 -168 -52 -255 -52 c-67 0 -136 8 -185 46c-30 24 -47 55 -58 87c-16 44 -21 90 -21 135c0 74 8 176 8 264c0 37 0 60 -5 98c-1 10 -6 20 -17 25c-25 13 -68 19 -99 23v26l6 5l267 3l10 -11c-18 -133 -23 -262 -23 -396c0 -40 4 -82 18 -120c11 -30 29 -58 57 -80c40 -32 98 -44 155 -44 c55 0 109 17 155 35c0 195 0 472 -8 583'], + 0xE2D1: [712,5,1074,136,1041,'903 697l135 15l3 -14c-95 -108 -165 -188 -254 -338c-65 -110 -130 -220 -179 -335l-112 -30l-13 6l-198 519c-15 40 -37 96 -55 118c-8 10 -18 19 -32 21c-21 4 -61 10 -62 10v27l9 7c79 0 158 2 236 7c29 -93 62 -192 95 -277c34 -86 69 -172 113 -255c0 -1 4 -7 8 -7 c6 0 12 7 14 11l142 255'], + 0xE2D2: [701,16,1515,121,1471,'1471 699v-15c-155 -213 -281 -438 -402 -665l-122 -35l-16 12l-136 526c-1 7 -3 14 -9 14c-8 0 -12 -6 -15 -13c-88 -169 -171 -330 -246 -503l-116 -32l-16 10c0 1 -104 370 -155 556c-8 27 -16 52 -27 79c-5 11 -16 20 -29 23c-20 5 -58 14 -61 14v22l10 9h229 c37 -177 87 -353 143 -527c1 -4 4 -6 8 -6s8 6 10 9c97 166 187 326 258 501l119 21l9 -5c29 -178 89 -360 140 -543c1 -5 5 -15 10 -15s9 3 13 11c93 169 197 361 262 536'], + 0xE2D3: [705,13,1064,139,923,'569 448l223 236l131 16v-27c-68 -40 -158 -115 -221 -177c-40 -38 -66 -66 -106 -109c44 -64 90 -127 142 -188c35 -41 80 -90 125 -125c20 -16 40 -28 60 -33v-18l-195 -36c-55 63 -152 195 -224 295h-18c-59 -58 -166 -182 -226 -263l-121 -20v26l323 313l-209 285 c-9 11 -24 18 -39 24c-22 9 -50 14 -75 19v24l9 9l233 6c52 -88 112 -174 172 -257h16'], + 0xE2D4: [707,4,886,137,896,'896 695l-328 -372c0 -99 4 -194 10 -295l-132 -32l-21 9c2 102 7 291 7 292s-111 191 -163 279c-14 22 -29 42 -43 62c-7 9 -22 16 -35 19l-54 12v26l10 9h212c8 -17 116 -201 174 -302c3 -4 9 -6 14 -6c6 0 9 1 14 5l216 289l118 17'], + 0xE2D5: [709,11,1060,139,920,'658 629l-11 14c-144 -3 -326 -8 -402 -13l-9 8v64l11 7c205 -10 414 -12 617 -12v-27c-177 -192 -321 -387 -483 -586c-1 -1 -2 -3 -2 -4c0 -3 2 -5 3 -8c5 -5 12 -8 20 -8c167 1 334 8 501 16l17 -13l-31 -78c-147 11 -500 11 -750 11v24c184 199 346 400 519 605'], + 0xE2D6: [704,9,659,133,523,'502 122l21 -13l-33 -40c-21 -28 -70 -78 -136 -78c-30 0 -60 7 -82 25c-18 15 -33 35 -41 56c-9 33 -12 72 -14 105l-11 3l-55 -44l-18 18l79 74c-6 93 -3 189 19 280c16 62 38 118 90 164c24 20 63 32 96 32c18 0 41 -3 56 -14c22 -18 30 -44 30 -82 c0 -56 -27 -112 -56 -162c-43 -72 -92 -133 -152 -196c6 -61 16 -149 52 -180c15 -13 30 -19 51 -19c24 0 56 24 66 33zM301 302c93 105 143 200 143 304c0 32 -6 45 -15 55c-7 8 -16 11 -31 11c-10 0 -21 -6 -30 -15c-28 -29 -40 -65 -48 -102c-12 -55 -29 -162 -29 -251'], + 0xE2D7: [498,15,980,219,878,'738 493l17 -9c-11 -91 -19 -182 -19 -273c0 -61 1 -113 15 -128c5 -6 14 -10 23 -10c26 0 58 24 82 42l22 -21c-39 -40 -82 -77 -140 -98c-18 -6 -36 -8 -52 -8s-31 2 -43 11c-18 15 -25 35 -29 55l-14 5c-29 -18 -58 -34 -90 -47c-40 -16 -83 -27 -127 -27 c-30 0 -60 7 -82 22c-28 19 -46 46 -58 73c-16 36 -24 74 -24 111c0 56 4 110 26 162c17 40 43 79 85 105c48 30 109 40 169 40c63 0 119 -16 170 -43zM617 331c0 38 -5 80 -40 109c-17 15 -42 20 -67 20c-29 0 -56 -9 -78 -24c-32 -20 -51 -50 -63 -81 c-16 -40 -19 -82 -19 -125c0 -28 3 -56 13 -83c6 -20 16 -40 33 -56c19 -18 47 -28 76 -28c26 0 56 6 81 19c22 12 38 22 54 35c7 44 10 146 10 214'], + 0xE2D8: [705,14,990,139,788,'385 693l-9 -275l13 -3c61 43 134 78 216 78c45 0 88 -15 119 -41c51 -41 64 -99 64 -156c0 -83 -33 -166 -111 -224c-69 -50 -153 -86 -247 -86c-50 0 -99 14 -132 43c-24 22 -48 77 -48 132v346c0 39 -1 65 -2 95c-1 10 -6 22 -17 28c-10 5 -64 14 -92 16v22l9 9 l220 28zM376 367l-3 -134c0 -33 7 -123 31 -151c21 -22 46 -44 83 -44c45 0 88 16 114 46c39 45 49 100 49 154c0 50 -4 102 -40 145c-21 26 -61 36 -98 36c-22 0 -43 -6 -61 -13c-26 -10 -53 -25 -75 -39'], + 0xE2D9: [496,10,846,209,721,'704 379l-108 -55l-19 7c0 44 -14 78 -39 103c-12 11 -27 22 -63 22c-9 0 -34 -4 -52 -18c-62 -47 -77 -123 -77 -190c0 -56 13 -115 65 -157c25 -19 57 -32 93 -32c31 0 62 7 91 17c31 12 71 33 100 52l15 -3l11 -14c-79 -68 -181 -121 -299 -121c-55 0 -109 14 -146 45 c-50 43 -67 101 -67 158c0 90 28 182 111 246c53 42 128 57 203 57c51 0 105 -7 141 -37c26 -21 37 -50 40 -80'], + 0xE2DA: [699,11,990,202,880,'519 678l221 21l11 -6c-9 -116 -14 -158 -14 -257l-1 -293c0 -20 5 -40 16 -57c5 -6 17 -11 26 -11c22 0 62 23 82 37l20 -22c-31 -28 -65 -56 -106 -76c-28 -15 -52 -25 -86 -25c-17 0 -33 5 -46 14c-20 16 -27 39 -29 62c-37 -22 -76 -42 -119 -56 c-33 -11 -68 -19 -104 -19c-40 0 -82 9 -111 32c-58 45 -77 109 -77 171c0 47 7 94 26 138c15 36 37 71 72 98c53 42 125 66 201 66c35 0 72 -2 105 -12l8 5v93c0 10 -1 21 -7 31s-14 19 -28 23c-11 3 -50 7 -76 10v24zM614 113v249c0 17 -2 34 -7 50c-3 12 -10 23 -22 30 c-19 12 -38 14 -61 14c-41 0 -80 -15 -109 -37c-26 -20 -44 -46 -52 -74c-11 -36 -18 -72 -18 -109c0 -30 4 -61 14 -91c7 -22 22 -43 42 -59c20 -15 47 -23 75 -23c56 0 100 24 138 50'], + 0xE2DB: [495,16,921,206,752,'360 258c81 22 216 58 217 58c9 3 19 6 26 12c5 5 7 11 7 16c0 32 -9 65 -38 88c-18 14 -42 23 -68 23c-32 0 -65 -9 -88 -27c-56 -43 -71 -110 -71 -166c0 -4 4 -5 8 -5c2 0 5 1 7 1zM711 101l12 -19c-44 -27 -93 -54 -144 -73c-38 -14 -78 -25 -121 -25 c-66 0 -134 14 -181 51c-56 44 -71 108 -71 169c0 84 31 168 108 228c57 45 137 63 217 63c61 0 127 -8 173 -43c33 -27 48 -65 48 -103c0 -8 -1 -16 -7 -23c-5 -8 -16 -11 -26 -14c-2 0 -250 -66 -374 -99c0 -46 18 -92 58 -125c30 -23 72 -36 114 -36c29 0 57 6 84 13 c32 9 65 26 92 40'], + 0xE2DC: [686,10,708,132,632,'396 392c1 -126 11 -264 19 -374l-127 -28l-19 9c4 103 8 262 8 392l-11 9h-128l-6 8l12 29l12 7h111l10 10c2 42 8 88 25 121c15 29 37 54 64 77c39 34 107 34 131 34c22 0 97 -7 135 -77l-80 -51l-19 7c0 48 -39 79 -64 79c-23 0 -55 -27 -66 -73 c-6 -28 -7 -54 -7 -117l11 -9h145l8 -10l-11 -26l-14 -9h-128'], + 0xE2DD: [495,242,973,204,737,'733 127c0 -76 -4 -122 -18 -172c-12 -43 -43 -89 -76 -114c-70 -53 -149 -83 -249 -83c-66 0 -144 29 -186 71l70 79h25c15 -22 44 -55 63 -70c23 -18 49 -30 81 -30c44 0 88 18 111 45c50 58 54 93 57 202c-37 -21 -82 -43 -124 -57c-35 -12 -71 -17 -110 -17 c-35 0 -71 12 -97 31c-67 52 -69 132 -69 202c0 42 8 83 22 124c11 34 30 67 62 92c52 42 125 65 202 65c61 0 107 -12 153 -39l72 25l15 -4c-4 -72 -4 -89 -4 -350zM611 114v259c0 24 -9 41 -26 54c-22 19 -49 27 -76 27c-48 0 -90 -15 -114 -43c-37 -41 -50 -73 -50 -142 c0 -42 4 -84 17 -126c5 -19 15 -39 31 -55c20 -19 47 -30 79 -30c51 0 109 22 139 56'], + 0xE2DE: [696,8,980,140,875,'372 380c0 -118 0 -290 9 -355l-122 -32l-15 11c6 106 6 214 6 321c0 93 0 264 -6 279c-4 16 -20 29 -39 32c-4 1 -44 4 -65 5v27l14 8l216 20l12 -10l-10 -253l10 -7c38 19 85 39 127 52c31 10 65 19 99 19s68 -9 90 -29c18 -17 24 -39 29 -60c4 -20 6 -40 6 -60 c0 -32 -9 -96 -9 -160c0 -40 2 -63 16 -81c6 -9 22 -19 37 -19c32 0 56 18 79 35l17 -11l2 -12c-27 -28 -56 -55 -90 -78c-23 -15 -49 -30 -79 -30c-28 0 -55 8 -73 24c-26 22 -33 77 -33 139c0 60 6 110 6 155c0 40 -5 80 -24 96c-20 16 -47 22 -74 22 c-21 0 -41 -6 -60 -13c-25 -9 -54 -21 -76 -35'], + 0xE2DF: [687,13,635,117,528,'241 621c0 36 34 66 76 66c43 0 77 -30 77 -66s-34 -66 -77 -66c-42 0 -76 30 -76 66zM509 119l19 -16v-11c-26 -29 -54 -54 -90 -75c-27 -16 -57 -30 -91 -30c-27 0 -54 10 -69 28c-16 18 -19 41 -21 63c-1 15 -1 117 -1 176v117c-1 14 -4 28 -14 39c-6 6 -16 10 -27 10 c-25 0 -52 -15 -80 -32l-18 22c33 23 68 45 107 62c26 11 54 21 84 21c23 0 46 -7 58 -23c9 -13 14 -25 14 -84c0 -40 -4 -81 -4 -121c0 -42 0 -115 2 -125c1 -16 2 -32 11 -46c7 -12 21 -22 37 -22c14 0 27 7 36 13c17 10 31 21 47 34'], + 0xE2E0: [687,246,631,84,405,'252 621c0 36 35 66 77 66s76 -30 76 -66s-34 -66 -76 -66s-77 30 -77 66zM149 389l-18 22c34 23 67 43 107 61c24 10 49 21 77 21c19 0 39 -2 53 -13c19 -15 22 -39 25 -59c3 -25 3 -110 3 -165c0 -65 0 -175 -6 -229c-4 -37 -21 -73 -47 -104 c-56 -63 -150 -126 -227 -169l-32 19c52 34 98 73 138 110c25 24 46 86 48 117c6 58 3 161 3 231c0 44 0 113 -3 133c-1 16 -3 30 -14 45c-4 7 -19 11 -27 11c-26 0 -57 -15 -80 -31'], + 0xE2E1: [698,6,918,140,816,'381 253l6 -228l-113 -31l-18 9c3 90 3 240 3 360v177c0 22 -1 44 -7 65c-3 14 -19 28 -37 33c-4 1 -50 5 -75 7v29l11 7l234 17l9 -5c-2 -39 -10 -275 -13 -399h16c102 72 191 157 301 221l68 -37l-1 -12c-100 -46 -198 -96 -286 -154c60 -75 147 -171 198 -213 c9 -7 22 -10 31 -10c7 0 25 3 33 6c18 7 29 14 50 30l25 -24c-54 -54 -105 -91 -115 -95c-11 -6 -31 -8 -39 -8c-18 0 -34 3 -47 12c-81 58 -142 170 -218 252'], + 0xE2E2: [697,7,636,137,532,'380 685l-9 -454c-2 -45 -3 -114 10 -134c6 -10 16 -19 33 -19c15 0 27 4 40 11c16 9 32 22 45 34h15l18 -16c-27 -31 -58 -61 -96 -84c-28 -16 -58 -30 -93 -30c-28 0 -57 5 -73 23c-19 19 -22 43 -25 67c-2 36 0 113 3 170c3 85 1 183 0 274c-1 29 -1 70 -6 87 c-4 13 -15 26 -33 29c-18 4 -47 5 -72 6v23l14 8l214 17'], + 0xE2E3: [495,9,1356,111,1247,'383 383c0 -119 2 -319 7 -357l-117 -34l-20 8c5 92 9 247 9 290c0 41 0 106 -18 119c-8 7 -20 10 -28 10c-26 0 -58 -15 -83 -30l-22 24c32 22 67 43 104 59c26 11 52 20 81 20c21 0 39 0 54 -12c18 -15 26 -31 29 -52l11 -3c35 18 83 38 124 52c33 10 65 18 100 18 c33 0 59 -5 84 -23c15 -13 31 -32 37 -49l17 -5c38 19 83 42 122 56c31 11 64 20 99 20c34 0 79 -9 101 -33c24 -27 29 -78 29 -146c0 -43 -5 -119 -5 -161c0 -13 1 -36 11 -47c8 -9 24 -16 37 -16c28 0 53 9 76 23h12l13 -21c-32 -26 -69 -55 -108 -77 c-25 -14 -50 -23 -80 -23c-21 0 -40 7 -54 18c-17 13 -32 50 -32 103c0 51 4 118 4 169c0 29 0 60 -7 88c-3 16 -10 32 -25 44c-13 10 -31 16 -51 16c-23 0 -44 -8 -65 -16c-33 -13 -63 -29 -92 -46c0 -119 1 -276 7 -343l-115 -35l-18 8c4 99 4 194 4 290c0 28 0 56 -5 83 c-4 16 -11 34 -26 46c-13 10 -30 15 -49 15c-21 0 -51 -8 -68 -14c-29 -10 -58 -22 -84 -36'], + 0xE2E4: [497,10,987,105,883,'373 378c0 -117 3 -319 12 -350l-128 -32l-14 7c4 98 8 292 8 293c0 42 0 105 -18 119c-7 6 -17 8 -26 8c-23 0 -66 -25 -81 -33l-21 24c35 24 66 44 106 61c25 12 53 22 82 22c18 0 35 0 49 -11c21 -17 25 -34 28 -58l14 -4c39 21 82 38 126 52c33 10 68 18 104 18 c30 0 59 -4 83 -23c20 -17 27 -40 30 -58c4 -28 4 -93 4 -140c0 -31 -3 -71 -3 -103c0 -57 8 -64 18 -72c9 -7 20 -10 33 -10c29 0 54 12 78 26h14l12 -17c-32 -28 -65 -56 -103 -78c-23 -15 -50 -29 -81 -29c-23 0 -46 7 -63 20c-18 15 -22 38 -24 58c-2 15 -2 115 -2 172 c0 58 0 144 -32 168c-17 14 -41 16 -65 16c-34 0 -97 -26 -140 -46'], + 0xE2E5: [486,11,989,197,789,'346 234c0 -35 5 -70 18 -104c9 -26 23 -51 47 -70c20 -16 44 -30 74 -30c33 0 69 5 92 24c27 21 41 50 49 79c13 44 14 79 14 135c0 31 -4 62 -14 91c-8 22 -20 43 -41 60c-22 18 -53 27 -86 27c-32 0 -62 -12 -85 -30c-26 -20 -40 -46 -50 -73 c-13 -35 -18 -72 -18 -109zM197 233c0 68 24 135 85 183c60 47 141 70 224 70c75 0 152 -13 206 -55c53 -41 77 -99 77 -157c0 -44 -5 -87 -23 -129c-14 -34 -35 -66 -66 -91c-59 -46 -141 -65 -224 -65c-71 0 -145 8 -196 48c-65 51 -83 125 -83 196'], + 0xE2E6: [488,247,977,126,793,'390 -217l-140 -30l-14 9c7 163 24 250 24 535c0 37 0 94 -16 106c-7 6 -17 10 -29 10c-21 0 -52 -17 -73 -28l-16 24c32 22 66 43 103 59c26 10 52 20 81 20c19 0 37 -2 51 -13c18 -13 23 -31 24 -50l9 -4c35 19 70 35 108 48c31 10 62 19 95 19c47 0 96 -10 130 -37 c24 -19 39 -43 50 -68c11 -32 16 -65 16 -99c0 -76 -26 -151 -89 -209c-53 -48 -132 -75 -212 -75c-34 0 -69 4 -99 21l-13 -6zM414 69c22 -17 52 -27 83 -27c34 0 69 7 93 26c23 19 37 42 47 67c12 30 17 63 17 95c0 33 -3 67 -13 99c-7 22 -20 41 -41 58 c-22 17 -51 27 -82 27c-21 0 -42 -5 -60 -12c-27 -9 -53 -22 -76 -36v-203c0 -19 1 -39 7 -57c5 -14 12 -27 25 -37'], + 0xE2E7: [538,247,988,223,751,'751 -213l-126 -34l-18 7l8 294l-10 5c-35 -19 -80 -41 -118 -54c-34 -11 -69 -18 -106 -18c-41 0 -79 14 -108 37c-22 17 -30 41 -37 64c-10 38 -13 76 -13 114c0 85 25 174 102 235c51 40 121 58 192 58c49 0 100 -11 140 -31l69 74l24 -3c-7 -102 -13 -204 -13 -307 c0 -131 5 -313 14 -441zM615 112v237c0 27 -5 62 -26 78c-22 17 -50 28 -80 28c-32 0 -63 -11 -84 -28c-27 -21 -40 -48 -51 -77c-14 -37 -17 -76 -17 -115c0 -31 2 -62 12 -91c7 -22 19 -43 40 -59c18 -15 45 -24 72 -24c56 0 100 28 134 51'], + 0xE2E8: [489,6,785,121,661,'398 33l-122 -39l-24 7c4 100 8 292 8 293c0 40 0 101 -17 115c-8 6 -14 6 -24 6c-22 0 -57 -15 -79 -30l-19 23c33 22 66 43 103 60c25 11 52 21 81 21c20 0 40 -4 55 -16c9 -7 13 -17 15 -27c5 -15 6 -28 6 -44l13 -5c28 25 57 48 91 66c26 12 54 23 84 23 c23 0 46 -7 64 -20c23 -18 28 -45 28 -70l-87 -58l-15 8c-4 14 -10 29 -22 39c-12 9 -27 16 -45 16c-29 0 -53 -11 -74 -31c-16 -16 -26 -35 -31 -55s-5 -39 -5 -58c0 -32 8 -148 16 -224'], + 0xE2E9: [494,15,787,146,598,'591 426l-85 -74l-17 4c-6 32 -22 62 -51 85c-16 13 -40 16 -63 16c-21 0 -41 -6 -58 -18c-17 -14 -17 -34 -17 -54c0 -22 17 -46 32 -57c34 -23 73 -41 113 -57c39 -15 93 -36 112 -52c28 -21 41 -51 41 -81c0 -35 -17 -70 -50 -95c-52 -42 -127 -58 -202 -58 c-45 0 -90 5 -131 21c-28 10 -50 27 -69 46l73 94l17 -1c11 -34 21 -70 53 -95c22 -18 51 -28 83 -28c28 0 54 9 74 24c16 13 22 31 22 49s-10 33 -27 46c-18 15 -65 35 -103 49c-40 15 -74 36 -105 60c-28 21 -46 50 -46 81c0 41 12 83 50 112c48 37 115 51 181 51 c42 0 85 -1 120 -20c23 -12 41 -28 53 -48'], + 0xE2EA: [624,11,716,131,581,'271 588l124 36l17 -7c0 -1 -9 -102 -14 -164l9 -8h144l9 -10l-12 -26l-14 -9h-127l-10 -8v-159c0 -52 3 -127 25 -146c8 -8 21 -14 39 -14c16 0 30 5 44 11c17 7 36 18 51 29h11l14 -15c-27 -30 -58 -58 -97 -80c-28 -16 -59 -29 -95 -29c-30 0 -61 8 -81 27 c-13 13 -20 32 -24 50c-7 32 -8 64 -8 97v228l-11 9h-128l-6 8l12 29l12 7h111l8 9c-1 52 -3 134 -3 135'], + 0xE2EB: [500,8,987,107,879,'604 466l119 34l14 -10c-4 -91 -6 -181 -6 -273c2 -26 0 -67 2 -77c0 -10 2 -23 9 -31c8 -10 21 -19 37 -19c24 0 53 15 78 28h13l9 -20c-33 -28 -71 -59 -110 -82c-24 -14 -41 -24 -71 -24c-26 0 -43 3 -58 18c-14 14 -22 34 -26 51l-12 6c-39 -18 -89 -40 -130 -55 c-28 -10 -57 -20 -87 -20c-42 0 -84 9 -113 33c-22 17 -25 43 -29 66c-3 23 -4 68 -4 113c0 23 0 45 1 65c0 47 0 117 -12 137c-7 10 -21 14 -34 14c-19 0 -49 -16 -70 -27l-17 25c34 21 68 41 105 58c23 10 47 20 74 20s50 -4 66 -20c20 -20 22 -47 22 -75 c0 -41 -8 -114 -8 -175c0 -56 6 -118 35 -140c20 -15 49 -20 76 -20c55 1 92 22 133 48c2 113 2 240 -6 352'], + 0xE2EC: [490,12,843,75,706,'92 386l-17 25c35 21 71 41 109 57c23 9 49 19 75 19c17 0 35 -3 48 -12c28 -19 45 -100 64 -168c11 -41 33 -117 44 -148c4 -13 10 -29 22 -39c4 -4 15 -7 17 -7c12 0 24 5 31 11c35 26 64 57 86 90c18 27 24 58 24 88c0 38 -23 83 -52 114v17l87 57h16 c41 -22 60 -62 60 -101c0 -68 -41 -129 -88 -185c-106 -127 -209 -196 -237 -216h-50c-16 63 -46 173 -71 257c-11 40 -24 84 -36 121c-3 12 -9 25 -20 35c-7 8 -20 11 -32 11c-16 0 -54 -12 -80 -26'], + 0xE2ED: [496,13,1276,96,1137,'373 382l41 -240l11 -3c81 105 159 212 224 324l63 30l15 -2c29 -126 67 -250 126 -370c3 -5 6 -12 11 -12c7 0 17 2 23 6c36 24 65 53 91 84s41 66 41 103c0 40 -28 86 -54 121v13l95 60l18 -2c33 -31 59 -67 59 -107c0 -30 -11 -59 -26 -86c-22 -38 -50 -72 -81 -106 c-41 -43 -83 -86 -128 -127c-28 -25 -57 -51 -93 -71c-7 -4 -14 -4 -22 -4c-7 0 -15 4 -20 8c-12 12 -18 27 -24 42l-109 293h-12c-75 -112 -161 -221 -233 -334l-72 -15l-12 6c-5 74 -16 147 -26 220c-9 65 -23 163 -53 187c-8 7 -20 8 -31 8c-27 0 -60 -8 -83 -20l-16 19 c33 23 68 45 108 62c25 11 52 21 81 21c25 0 46 -11 64 -25c8 -5 10 -13 12 -21c3 -7 8 -42 12 -62'], + 0xE2EE: [491,12,848,78,721,'643 489l43 -36v-10c-92 -47 -173 -111 -241 -176c36 -60 83 -138 129 -173c11 -9 23 -17 39 -17c31 0 62 21 84 40h11l13 -14c-24 -31 -53 -61 -89 -85c-25 -16 -53 -30 -85 -30c-24 0 -46 8 -64 22c-17 14 -29 31 -42 48l-78 124h-10c-56 -56 -103 -120 -137 -186 l-18 -4l-56 25v7c56 70 122 141 194 203c-26 49 -69 114 -80 131c-12 18 -27 36 -44 50c-10 7 -21 10 -33 10c-22 0 -57 -18 -80 -32l-21 24c29 22 59 43 93 60c23 11 49 21 77 21c22 0 45 -2 61 -15c22 -17 37 -39 52 -61c23 -34 42 -70 59 -105h7c63 62 128 124 202 179 h14'], + 0xE2EF: [491,232,987,118,745,'745 487c-4 -72 -4 -89 -4 -350c0 -76 -4 -122 -18 -172c-11 -43 -51 -89 -84 -114c-70 -53 -149 -83 -249 -83c-66 0 -143 29 -185 71l69 79h25c15 -22 44 -55 64 -70c23 -18 48 -30 80 -30c45 0 88 18 111 45c49 56 53 90 56 191l-12 4c-36 -20 -73 -34 -113 -48 c-33 -10 -75 -21 -106 -21c-34 0 -69 7 -93 26c-17 14 -23 35 -28 55c-8 35 -8 70 -8 106c0 51 7 103 7 154c-1 25 1 60 -21 78c-8 6 -20 9 -30 9c-20 0 -49 -17 -67 -31l-21 25c31 23 62 41 101 57c28 12 57 21 89 21c20 0 38 -7 52 -18c13 -10 22 -25 22 -87 c0 -40 -4 -79 -4 -119c0 -18 -3 -37 -3 -57c0 -29 3 -57 5 -74c2 -20 7 -37 23 -50c20 -15 50 -23 78 -23c47 0 111 31 130 42c6 58 8 121 8 184c0 58 -2 116 -11 169l116 35'], + 0xE2F0: [492,14,841,125,713,'651 492l25 -18c-73 -78 -158 -162 -239 -234l-132 -124l5 -9c37 0 84 -5 122 -9c37 -3 73 -5 109 -5c35 0 69 10 93 29c19 15 36 32 50 49l29 -16l-54 -86c-12 -21 -26 -42 -47 -59c-21 -16 -51 -18 -79 -18c-56 0 -111 4 -167 12c-49 7 -97 13 -147 13 c-32 0 -52 -18 -67 -31h-11l-16 12c68 80 162 162 244 232c55 46 105 96 152 147c-8 0 -17 -1 -25 -1c-41 0 -80 6 -120 9c-34 3 -71 13 -92 13c-15 0 -34 -9 -46 -16c-17 -12 -32 -26 -46 -40l-30 12l80 114c11 16 38 24 63 24c32 0 64 -8 98 -14c45 -10 92 -16 139 -16 c41 0 77 11 109 30'], + 0xE2F1: [493,13,635,117,528,'509 119l19 -16v-11c-26 -29 -54 -54 -90 -75c-27 -16 -57 -30 -91 -30c-27 0 -54 10 -69 28c-16 18 -19 41 -21 63c-1 15 -1 117 -1 176v117c-1 14 -4 28 -14 39c-6 6 -16 10 -27 10c-25 0 -52 -15 -80 -32l-18 22c33 23 68 45 107 62c26 11 54 21 84 21 c23 0 46 -7 58 -23c9 -13 14 -25 14 -84c0 -40 -4 -81 -4 -121c0 -42 0 -115 2 -125c1 -16 2 -32 11 -46c7 -12 21 -22 37 -22c14 0 27 7 36 13c17 10 31 21 47 34'], + 0xE2F2: [493,246,635,84,396,'149 389l-18 22c34 23 67 43 107 61c24 10 49 21 77 21c19 0 39 -2 53 -13c19 -15 22 -39 25 -59c3 -25 3 -110 3 -165c0 -65 0 -175 -6 -229c-4 -37 -21 -73 -47 -104c-56 -63 -150 -126 -227 -169l-32 19c52 34 98 73 138 110c25 24 46 86 48 117c6 58 3 161 3 231 c0 44 0 113 -3 133c-1 16 -3 30 -14 45c-4 7 -19 11 -27 11c-26 0 -57 -15 -80 -31'], + 0xE2F3: [489,202,991,162,839,'487 59l48 46h11c10 -25 31 -49 68 -49c21 0 44 5 59 18c25 19 36 45 46 71c12 37 16 74 16 112c0 46 -11 94 -52 127c-21 16 -48 28 -78 28c-26 0 -50 -5 -72 -15c-29 -12 -56 -31 -79 -50c-33 -26 -61 -57 -87 -90c8 -12 18 -23 26 -35c29 -37 55 -76 75 -117 c7 -15 14 -30 19 -46zM364 489l19 -14c-19 -18 -37 -37 -51 -59c-10 -16 -17 -33 -17 -52c0 -22 16 -50 25 -65h13c30 34 61 65 98 94c34 27 73 51 117 69c33 14 72 24 110 24c39 0 78 -10 106 -32c45 -35 55 -87 55 -136c0 -101 -53 -197 -145 -269 c-21 -17 -44 -32 -70 -43c-21 -9 -45 -15 -68 -15c-22 0 -44 4 -62 12c-4 -64 -27 -126 -86 -172c-28 -22 -66 -33 -106 -33c-31 0 -62 7 -84 24c-35 27 -56 63 -56 102c0 50 16 99 37 146c20 43 45 84 73 124c-9 12 -17 24 -25 37c-13 22 -26 45 -26 70c0 32 16 63 37 90 c28 37 66 70 106 98zM293 153c-14 -21 -26 -43 -36 -65c-15 -33 -28 -67 -28 -103c0 -40 9 -82 47 -111c17 -14 39 -26 64 -26c19 0 38 6 50 17c33 25 41 61 41 96c0 24 -14 47 -28 69c-24 36 -52 71 -82 104l-16 19h-12'], + 0xE2F4: [697,7,707,186,708,'692 697l16 -176l-30 1l-30 82c-9 25 -40 35 -69 39c-68 10 -138 10 -207 7c-16 -1 -27 -8 -33 -19c-9 -16 -10 -65 -10 -82c0 -177 0 -355 3 -533l-92 -23l-12 11c3 183 8 457 8 549c0 20 0 41 -2 62c-1 13 -5 27 -17 36l-31 22l3 20h285c73 0 146 1 218 4'], + 0xE2F5: [696,4,1049,133,924,'533 671l69 25c53 -132 109 -257 172 -385c44 -90 97 -182 150 -267l-1 -16l-74 -32c-237 13 -476 21 -714 7l-2 42zM771 50l8 9c-50 94 -242 494 -242 495h-13c-114 -164 -210 -321 -306 -490l3 -12c183 3 368 -2 550 -2'], + 0xE2F6: [701,12,1102,132,968,'347 349l-4 108h30c0 -19 5 -38 5 -57c0 -11 17 -12 26 -13c53 -3 117 -3 174 -3c42 0 88 0 126 2c13 1 21 11 21 20l-3 51h36l-2 -106v-108l-36 1c2 19 -1 38 -1 57c0 10 -8 21 -21 21c-42 1 -83 4 -125 4c-48 0 -109 -2 -164 -4c-12 0 -30 -2 -30 -16v-66l-35 1z M500 -12c-91 0 -186 17 -252 71c-85 72 -116 173 -116 272c0 96 2 138 54 212c69 100 236 158 419 158c96 0 194 -20 264 -77c75 -64 99 -155 99 -243c0 -58 -8 -116 -30 -170c-18 -46 -45 -89 -86 -123c-91 -76 -225 -100 -352 -100zM552 31c101 0 165 27 225 77 c33 27 48 64 58 101c17 55 20 111 20 168c0 80 -24 162 -92 219c-59 49 -142 67 -223 67c-95 0 -164 -31 -213 -73c-26 -23 -51 -58 -63 -95c-17 -48 -21 -99 -21 -150c0 -94 33 -188 113 -255c52 -43 124 -59 196 -59'], + 0xE2F7: [698,7,1118,131,1022,'569 673l79 25c65 -215 141 -427 255 -627c8 -12 23 -19 39 -19l80 3l-1 -22c-62 -16 -125 -30 -188 -40l-28 8c-82 186 -152 376 -228 564h-15c-113 -188 -288 -482 -322 -548c-30 -10 -61 -19 -94 -23l-15 10c152 220 300 442 438 669'], + 0xE2F8: [695,6,909,129,780,'754 688l26 -163l-41 -1l-19 61c-1 6 -5 12 -10 17c-12 10 -29 16 -44 16h-415c-12 0 -26 -2 -36 -7c-11 -5 -21 -12 -26 -22l-27 -64l-33 -2c9 57 10 115 16 172zM243 329l21 70c121 -4 241 -2 362 3l-18 -72c-121 2 -243 4 -365 -1zM780 147l-18 -153 c-1 0 -413 4 -619 6c0 1 -9 101 -14 152l32 1l16 -51c3 -9 12 -18 18 -23c8 -5 17 -7 27 -7h361h120c14 0 24 9 28 20c0 1 13 37 19 55h30'], + 0xE2F9: [690,14,1060,128,929,'929 658l-92 -17c-6 -1 -10 -3 -15 -6c-4 -4 -5 -14 -5 -21c-4 -30 -4 -134 -4 -202c0 -135 3 -269 15 -404l-96 -22l-17 11c4 98 4 195 4 293c0 108 -2 229 -3 337c0 3 -1 6 -3 8c-4 4 -11 5 -12 5h-347c-1 0 -9 0 -13 -4c-3 -3 -4 -9 -4 -10c-8 -101 -8 -202 -8 -304 c0 -82 3 -204 6 -307l-102 -19l-9 6c6 104 10 208 10 312c0 73 1 147 0 220c0 26 -1 51 -7 77c-2 7 -4 17 -9 21s-13 7 -20 10c-3 0 -46 12 -70 18v30c90 -5 180 -9 270 -9h238c53 0 195 3 293 5v-28'], + 0xE2FA: [695,-2,969,156,817,'505 362l-210 -256l6 -10c107 -2 213 -2 319 -2c65 0 130 2 193 10l4 -10l-18 -89c-107 3 -212 4 -319 4c-108 0 -216 -7 -324 -7c0 1 6 28 11 47l195 216c23 26 53 60 65 85c-10 22 -26 46 -43 66l-183 225l82 47c166 -3 331 0 497 7l5 -11l-27 -53l-397 4l-13 -13 l164 -222c4 -5 6 -10 6 -16s-8 -15 -13 -22'], + 0xE2FB: [697,11,1053,121,919,'919 546l-26 -3c-5 26 -14 42 -35 61c-15 11 -37 14 -57 14c-33 0 -63 -11 -87 -31c-77 -64 -123 -147 -143 -236c-12 -52 -12 -217 -12 -326l-80 -36l-21 7c5 75 5 150 5 225c0 76 -8 152 -32 225c-18 53 -45 106 -92 145c-25 21 -56 34 -92 34c-22 0 -44 -3 -60 -17 c-20 -17 -35 -37 -43 -60l-23 7c10 44 23 82 61 114c27 22 65 28 101 28c46 0 88 -15 119 -41c35 -29 54 -61 68 -100c23 -59 35 -120 42 -181h11c12 57 29 114 55 168c19 41 45 80 83 111c34 29 82 43 131 43c31 0 63 -9 86 -28c16 -13 24 -30 30 -48c9 -24 11 -49 11 -75'], + 0xE2FC: [686,-2,1193,185,995,'432 684l311 2v-25l-76 -10c-18 -2 -29 -16 -29 -30v-13l9 -7c56 0 111 -6 166 -19c44 -11 87 -28 119 -55c48 -40 63 -98 63 -154c0 -75 -24 -152 -88 -205c-31 -26 -71 -44 -113 -55c-48 -13 -97 -25 -146 -27l-9 -6c2 -20 19 -37 44 -42l70 -12v-24h-321v21l74 15 c10 2 16 9 21 16c5 8 7 17 8 26l-8 6c-98 1 -199 21 -269 80c-53 43 -73 105 -73 166c0 65 20 132 76 180c70 58 166 87 264 89l10 7v12c0 14 -12 26 -28 28l-75 9v27zM638 565v-443l8 -8c61 1 121 19 165 56c58 48 73 116 73 182c0 33 -2 67 -13 99c-7 23 -18 46 -38 63 c-50 42 -118 58 -186 59zM535 121v444l-8 8c-62 -2 -120 -26 -164 -62c-51 -43 -68 -104 -68 -164c0 -71 32 -139 92 -189c37 -30 89 -43 140 -44'], + 0xE2FD: [694,1,1037,63,935,'588 244l2 -158c1 -21 12 -44 40 -48l69 -12l-1 -27h-319v27l82 12c26 4 34 40 34 49v155l-7 6c-43 0 -85 4 -126 13c-32 8 -63 18 -86 38c-24 19 -35 46 -43 73c-15 41 -22 84 -26 127c-3 33 -9 88 -12 99c-2 13 -4 26 -15 35c-9 7 -21 12 -33 11l-75 -10l-9 22l130 36 c4 2 28 2 42 2s26 -9 37 -18c15 -12 15 -53 15 -81c0 -58 4 -116 20 -173c12 -38 28 -76 61 -104c32 -26 74 -41 120 -43l7 7v83c0 100 0 220 -7 302l103 23l5 -8c-8 -75 -15 -149 -15 -224c0 -59 1 -118 3 -176l8 -6c45 2 85 23 117 49c22 18 31 44 41 69 c17 42 26 85 33 129c9 44 9 89 23 132c41 12 83 20 125 24l4 -18c-29 -15 -42 -44 -51 -71c-6 -18 -15 -68 -23 -102c-7 -40 -16 -80 -33 -118c-10 -24 -21 -48 -42 -66c-50 -42 -121 -52 -191 -53'], + 0xE2FE: [689,2,1244,127,1110,'1099 60l11 -9l-30 -53c-138 9 -277 9 -415 1l10 58c57 11 108 36 149 70c33 26 52 61 65 97c17 47 23 96 23 144c0 84 -27 169 -99 229c-48 40 -116 57 -183 57c-75 0 -151 -17 -204 -62c-37 -30 -61 -69 -78 -110c-19 -49 -28 -101 -28 -153c0 -81 25 -164 95 -223 c35 -29 83 -45 132 -53l-25 -55c-132 10 -263 14 -395 6l20 61c74 -3 164 -6 229 -11l6 15c-30 14 -59 30 -85 51c-28 25 -48 56 -61 90c-15 41 -21 85 -21 128c0 95 33 190 115 257c84 71 205 94 323 94c52 0 106 -5 157 -19c42 -12 81 -29 113 -55c72 -60 97 -146 97 -230 c0 -93 -28 -189 -108 -256c-35 -28 -70 -51 -114 -66v-12c102 4 217 9 301 9'], + 0xE2FF: [468,20,983,198,905,'581 212c-21 56 -53 142 -83 167c-22 19 -51 32 -82 32c-29 0 -56 -11 -77 -28c-22 -19 -37 -43 -46 -68c-12 -32 -16 -66 -16 -99c0 -49 8 -100 50 -135c15 -12 34 -19 53 -19c16 0 30 5 45 11c19 9 40 23 56 35c30 26 67 66 100 104zM767 468l61 -23 c-55 -69 -166 -207 -166 -208c12 -38 27 -76 45 -112c12 -21 22 -44 43 -61c8 -7 18 -14 30 -14c29 0 72 25 104 46l12 -1l9 -19c-41 -27 -101 -63 -124 -77c-16 -9 -36 -19 -58 -19c-15 0 -31 5 -43 15c-9 8 -18 17 -21 29l-56 134l-13 2l-78 -78c-6 -6 -14 -14 -21 -20 c-26 -21 -54 -41 -86 -55c-25 -11 -51 -19 -80 -19c-25 0 -48 9 -65 24c-49 41 -62 100 -62 157c0 85 27 171 101 232c48 40 110 67 177 67c34 0 65 -10 88 -29c19 -16 33 -36 44 -56c17 -28 26 -52 34 -75l12 -1'], + 0xE300: [698,202,988,233,780,'554 380c59 -2 125 -14 161 -45c40 -35 65 -85 65 -133c0 -56 -25 -111 -73 -151c-58 -48 -140 -66 -221 -66c-36 0 -71 9 -96 30c-7 6 -12 12 -17 19l59 69l15 -6c-2 -20 6 -39 23 -53s40 -23 64 -23c35 0 65 16 87 35c44 36 57 88 57 138c0 43 -16 87 -52 118 c-38 32 -93 40 -146 40c-25 0 -51 0 -76 -2l3 36c60 0 118 15 160 50c34 27 42 66 42 104c0 56 -49 111 -121 111c-35 0 -72 -9 -97 -30s-36 -49 -44 -76c-12 -42 -17 -85 -18 -129c-2 -31 -2 -138 -2 -208c0 -126 3 -252 11 -377l-91 -33l-14 15c6 190 1 381 10 571 c3 51 13 129 39 176c20 36 35 54 71 82c47 37 111 56 187 56c90 0 163 -60 163 -135c0 -47 -25 -90 -65 -123c-23 -21 -51 -38 -82 -48'], + 0xE301: [470,198,923,67,795,'723 470l72 -27c-96 -131 -204 -255 -294 -389l-19 -43c0 -60 -4 -123 -11 -183l-40 -26c-26 7 -47 19 -68 33l64 165c0 39 -37 300 -125 372c-22 18 -53 31 -84 31c-33 0 -78 -7 -104 -30l-28 -27l-19 12c18 23 36 47 58 65c38 32 91 46 145 46c37 0 74 -12 102 -35 c41 -34 62 -81 78 -128c20 -65 29 -146 27 -214l10 -2c78 120 176 280 221 375'], + 0xE302: [694,9,795,164,623,'558 687l6 -8l-19 -42c-42 2 -86 9 -166 9c-40 0 -78 -9 -78 -41c0 -14 12 -26 23 -36c5 -5 68 -55 103 -83l114 -91c46 -39 82 -89 82 -144c0 -70 -33 -138 -93 -188c-50 -43 -116 -72 -188 -72c-41 0 -83 6 -112 30c-44 37 -66 87 -66 139c0 47 22 92 49 133 c38 55 87 104 141 149c-30 23 -58 46 -82 72c-13 16 -29 32 -29 51c0 13 6 25 14 37c9 16 22 31 37 44c18 18 42 28 67 35c32 9 66 13 101 13c33 0 61 -3 96 -7zM382 422c-84 -72 -125 -134 -125 -210c0 -53 20 -105 64 -143c22 -17 51 -25 81 -25c36 0 69 18 95 39 c35 29 49 81 49 126c0 34 -21 64 -42 92c-31 43 -79 85 -122 121'], + 0xE303: [471,11,854,203,685,'432 256l143 2l-17 -42c-36 1 -113 1 -169 1c-2 0 -52 -2 -83 -3l-6 -6c2 -49 24 -97 66 -132c13 -11 31 -17 49 -21c25 -6 50 -8 77 -8c61 0 122 16 170 49l8 -1l15 -20c-38 -25 -80 -48 -126 -64c-36 -12 -73 -22 -113 -22c-62 0 -127 12 -173 49 c-51 44 -70 105 -70 165c0 75 33 147 97 199c54 45 126 69 201 69c63 0 122 -22 166 -59l-44 -53l-16 -2c-12 14 -29 34 -38 41c-28 23 -69 30 -107 30c-41 0 -79 -13 -108 -37c-40 -34 -51 -82 -52 -128l8 -6c44 0 121 -1 122 -1'], + 0xE304: [695,136,808,198,686,'600 -136l-25 12c18 27 40 59 40 85c0 11 -9 20 -19 27c-11 9 -26 11 -42 11c-21 0 -43 0 -65 -2c-32 -4 -85 -7 -97 -7c-48 0 -98 6 -133 35c-47 39 -61 95 -61 149c0 66 29 129 66 188c49 76 115 143 188 204c21 16 41 32 63 47l-1 7l-110 8c-29 4 -56 10 -80 23 c-2 1 -2 4 -2 4c0 1 0 2 2 4l34 35c2 1 3 1 6 1c2 0 1 0 8 -4c87 -47 158 -52 282 -36v-19c-65 -17 -124 -49 -172 -90c-109 -90 -192 -206 -192 -336c0 -48 19 -96 60 -131c31 -26 76 -32 119 -32c22 0 46 0 64 2c19 1 46 4 57 4c17 0 34 -1 49 -4c12 -3 23 -6 32 -13 c9 -8 15 -19 15 -30c0 -22 -11 -43 -23 -62c-16 -29 -39 -55 -63 -80'], + 0xE305: [466,199,866,59,672,'573 -199l-10 11c1 27 1 208 1 313c0 63 0 158 -4 190c-2 25 -6 51 -27 69c-20 15 -46 18 -71 18c-27 0 -51 -6 -75 -15c-31 -11 -60 -26 -88 -43c-3 -24 -3 -107 -3 -160c0 -46 5 -113 9 -170l-87 -25l-11 10v335c0 22 0 50 -16 64c-9 7 -20 10 -30 10 c-23 0 -57 -19 -83 -33l-19 18c27 19 56 37 88 52c21 9 44 18 68 18c22 0 46 -5 63 -19c16 -13 18 -32 19 -51l14 -2c39 22 81 41 126 56c33 11 68 19 103 19c30 0 60 -6 80 -24c21 -16 24 -41 28 -64c3 -33 3 -116 3 -174c0 -123 3 -246 21 -368'], + 0xE306: [695,11,858,168,680,'374 -11c-43 0 -85 13 -115 38c-37 31 -55 72 -67 114c-19 60 -24 122 -24 184c0 60 2 122 24 180c18 46 44 87 86 122c52 43 126 68 199 68c45 0 88 -14 119 -40c35 -29 51 -69 63 -108c16 -59 21 -119 21 -179s-7 -120 -27 -177c-17 -44 -41 -87 -81 -120 c-54 -45 -121 -82 -198 -82zM268 370h304l7 7c-5 55 -10 108 -25 161c-7 30 -21 62 -48 84c-23 19 -51 26 -83 26c-34 0 -66 -13 -90 -33c-32 -27 -50 -70 -60 -106c-12 -46 -13 -86 -13 -132zM575 333h-306l-9 -7c1 -49 6 -101 22 -147c11 -35 27 -70 59 -95 c27 -23 63 -37 102 -37c32 0 58 17 80 36c28 23 37 56 46 88c12 48 15 103 15 154'], + 0xE307: [474,9,594,218,495,'480 109l15 -14c-27 -29 -58 -56 -94 -77c-26 -14 -54 -27 -86 -27c-27 0 -52 14 -68 33c-20 22 -29 50 -29 78v347l97 25l14 -10c-18 -89 -21 -179 -21 -269c0 -26 3 -52 9 -78c4 -16 9 -32 24 -44c9 -8 25 -9 38 -9c17 0 31 6 46 13c16 9 30 19 44 31'], + 0xE308: [472,4,860,231,716,'702 441l-1 -15c-107 -38 -243 -103 -294 -154c-1 -2 -2 -4 -2 -6l5 -11c96 -75 199 -143 306 -207l-1 -14l-80 -36c-102 72 -210 148 -302 218l-10 -4c0 -61 3 -127 7 -190l-76 -26l-19 5c2 146 4 292 -4 438l95 26l6 -6c-2 -58 -6 -164 -8 -195l7 -2 c91 82 196 150 310 210'], + 0xE309: [690,11,843,122,709,'603 -4l-175 384c-1 3 -5 6 -9 6c-5 -1 -8 -4 -9 -7c-50 -89 -151 -268 -151 -269c-14 -25 -31 -66 -44 -99l-71 -17l-22 13l262 409l15 26c-2 18 -25 79 -50 123c-12 21 -26 41 -47 58c-14 13 -37 23 -59 23c-18 0 -56 -7 -84 -12l-9 25c53 16 113 31 175 31 c40 0 70 -16 108 -78c26 -44 62 -151 91 -216c22 -52 63 -149 185 -369c2 -4 -1 -12 -1 -12l-88 -26'], + 0xE30A: [466,199,934,212,859,'679 466l10 -11c-4 -41 -8 -92 -8 -123v-167c0 -18 3 -36 8 -54c4 -12 9 -25 21 -34c9 -7 22 -11 34 -11c27 0 63 18 93 33l13 -2l9 -14c-30 -23 -62 -46 -100 -62c-25 -12 -52 -22 -82 -22c-21 0 -44 1 -58 13c-16 13 -21 37 -25 56l-9 5c-70 -33 -161 -76 -220 -76 c-38 0 -55 10 -75 30l-7 -2c0 -66 7 -141 23 -204l-64 -20l-14 6c2 92 5 184 5 276v189c0 55 -16 140 -21 164l100 26l11 -7v-269c0 -41 6 -84 42 -114c18 -15 45 -15 69 -15c25 0 71 11 104 29c20 11 32 18 50 34c1 48 3 121 3 142c0 58 -2 115 -4 172'], + 0xE30B: [471,8,912,115,770,'770 444l-163 -274c-29 -48 -55 -96 -79 -146l-67 -32l-9 7c-14 81 -33 162 -66 239c-21 52 -47 99 -93 138c-20 15 -47 26 -74 26c-37 0 -62 -8 -79 -18l-25 26c42 39 94 61 157 61c36 0 76 -11 101 -32c66 -55 110 -219 142 -338h6c28 50 60 107 82 159 c27 62 47 131 68 198l27 10l69 -16'], + 0xE30C: [694,137,857,186,751,'662 -137l-25 15c18 25 41 55 41 79c0 13 -9 25 -19 34c-20 16 -50 17 -76 17s-66 -3 -98 -6c-42 -4 -118 -10 -125 -10c-45 0 -91 7 -124 34c-32 27 -50 63 -50 100c0 54 29 104 73 141c42 35 95 59 149 73v6c-37 7 -76 19 -105 42c-19 16 -25 40 -25 63 c0 35 15 71 46 96c33 29 74 51 117 65v8c-54 1 -110 6 -159 28l33 46h10c47 -32 108 -45 168 -45c37 0 79 5 118 11v-28c-72 -7 -148 -22 -200 -66c-27 -23 -39 -56 -39 -88c0 -26 7 -53 30 -72c18 -14 41 -24 65 -31c31 -9 63 -14 97 -17v-23c-81 0 -165 -15 -222 -63 c-37 -31 -54 -74 -54 -117c0 -30 13 -58 38 -79c33 -27 81 -30 125 -28c66 4 152 10 196 10c32 0 67 -4 91 -24c9 -7 13 -17 13 -27c0 -21 -11 -41 -23 -60c-18 -30 -42 -57 -66 -84'], + 0xE30D: [488,5,924,122,851,'320 460h388c47 0 92 10 133 28l10 -7l-42 -59c-41 -16 -86 -27 -131 -28l-8 -7c-4 -35 -8 -71 -8 -105c0 -73 0 -176 41 -209c8 -7 23 -10 35 -10c22 0 41 6 59 16l7 -2l12 -17c-23 -17 -47 -33 -75 -45c-19 -8 -39 -15 -61 -15c-23 0 -49 0 -63 12 c-17 13 -23 32 -28 50c-8 28 -10 57 -10 85c0 81 7 161 20 241l-8 6h-171c-33 -130 -87 -261 -139 -389l-14 -10l-66 15l-1 13c81 116 145 259 176 371h-89c-30 0 -62 0 -83 -18c-17 -14 -27 -33 -35 -51l-22 -46l-25 9l34 113c5 13 13 26 25 35c13 11 31 15 49 18 c30 5 60 6 90 6'], + 0xE30E: [477,189,851,205,696,'242 -189l-24 8c-7 104 -13 209 -13 314c0 61 4 152 19 197c10 27 29 66 69 95c49 36 117 52 182 52c60 0 119 -18 162 -54c23 -18 35 -43 43 -68c12 -34 16 -69 16 -104c0 -71 -29 -141 -90 -191c-40 -34 -97 -63 -155 -63c-52 0 -92 17 -130 48c-10 9 -19 18 -28 30 l-9 -1c4 -80 9 -152 33 -230c0 -1 -5 -9 -8 -13zM290 231c0 -32 3 -64 13 -95c8 -22 19 -42 36 -58c21 -18 47 -31 77 -31c42 0 82 12 112 37c47 39 62 95 62 150c0 36 -2 73 -13 108c-6 24 -21 52 -38 66c-21 16 -51 33 -81 33c-39 0 -75 -11 -103 -34 c-24 -19 -40 -48 -49 -74c-12 -33 -16 -68 -16 -102'], + 0xE30F: [476,5,920,195,827,'410 462l411 14l6 -10l-17 -57l-9 -6c-76 13 -159 21 -238 29l-2 -6c4 -2 26 -13 56 -38c50 -42 67 -101 67 -160s-17 -120 -69 -163c-56 -47 -117 -70 -210 -70c-63 0 -108 21 -146 53c-23 20 -37 44 -47 70c-12 33 -17 68 -17 103c0 62 12 132 63 178 c42 39 89 61 152 63zM433 429c-34 0 -61 -13 -85 -32c-43 -37 -53 -93 -53 -144c0 -35 4 -69 17 -103c9 -26 20 -52 49 -76c28 -23 53 -38 89 -38c37 0 65 15 87 33c19 15 34 45 40 63c9 28 12 56 12 84c0 36 -4 73 -16 108c-8 25 -25 54 -48 73c-24 20 -58 32 -92 32'], + 0xE310: [484,9,809,115,720,'267 461h305c46 0 91 7 132 23l16 -9l-52 -67c-32 -6 -66 -10 -99 -10h-82l-10 -8c-3 -34 -14 -111 -14 -165c0 -17 0 -125 35 -153c10 -8 24 -15 38 -15c23 0 54 15 74 25l10 -2l10 -14c-22 -18 -65 -46 -93 -58c-21 -10 -44 -17 -68 -17c-22 0 -41 9 -56 22 c-15 12 -24 30 -28 47c-7 27 -10 54 -10 82c0 83 9 166 19 249l-9 7h-90c-34 0 -78 -2 -102 -22c-16 -14 -36 -60 -51 -94l-27 3c4 19 31 121 47 141c24 30 71 35 105 35'], + 0xE311: [472,12,898,83,720,'561 398l-4 18l50 51l24 4c54 -48 89 -109 89 -175c0 -81 -43 -157 -112 -214c-66 -55 -151 -94 -246 -94c-32 0 -66 7 -89 27c-32 27 -40 66 -40 104v211c0 23 -3 54 -15 68c-6 8 -19 16 -31 16c-31 0 -60 -18 -85 -35l-19 22c27 21 56 39 88 53c23 10 48 18 76 18 c20 0 41 -6 55 -18c10 -8 15 -19 18 -30c5 -16 6 -32 6 -48c0 -37 -3 -74 -5 -110c-1 -26 -1 -57 -1 -85c0 -21 3 -42 9 -62c4 -15 12 -29 25 -40c20 -17 49 -28 79 -28c52 0 78 10 108 28c68 41 89 120 89 174s-22 107 -69 145'], + 0xE312: [467,197,1109,206,919,'481 -183l2 168l-8 7c-70 6 -130 16 -193 76c-54 52 -76 112 -76 181c0 57 30 110 78 150c40 33 89 55 142 68l14 -22c-31 -12 -56 -22 -80 -42c-41 -33 -58 -88 -58 -136c0 -67 15 -145 73 -193c46 -37 78 -46 100 -46l8 7v205c0 61 10 126 80 176c51 37 112 48 163 48 c49 0 98 -13 133 -42c44 -38 60 -92 60 -145c0 -69 -23 -138 -82 -187c-70 -58 -161 -86 -259 -97l-8 -8c0 -54 4 -107 9 -161l-82 -21zM578 26c65 2 123 26 169 65c26 21 42 48 53 77c15 35 19 72 19 109c0 12 -6 88 -45 120c-21 17 -43 28 -71 28c-31 0 -52 -3 -80 -19 c-36 -22 -53 -93 -53 -141v-232'], + 0xE313: [466,197,885,75,774,'443 206l224 250l24 4l40 -32l1 -7l-215 -206c-19 -19 -40 -38 -58 -59c52 -95 122 -227 179 -274c11 -10 28 -14 43 -14c29 0 58 4 83 15l10 -23c-33 -16 -65 -31 -100 -42c-21 -8 -43 -15 -66 -15c-21 0 -38 12 -54 24c-25 22 -41 49 -56 76c-24 41 -63 118 -94 180 h-12c-41 -51 -77 -101 -114 -152c-26 -38 -51 -76 -71 -116l-20 -6l-60 30c82 100 164 199 253 295c0 1 -87 143 -131 215c-9 17 -25 36 -40 49c-10 8 -24 13 -38 13c-21 0 -55 -22 -78 -37l-18 21l76 48c23 15 53 23 83 23c18 0 36 -6 48 -17c18 -15 30 -32 41 -51 l108 -192h12'], + 0xE314: [695,189,1098,89,918,'521 -182l4 176l-8 8c-48 0 -94 3 -140 11c-32 5 -63 12 -86 30c-39 34 -52 82 -52 129v153c0 16 -3 33 -8 49c-3 11 -8 23 -18 31c-7 6 -16 10 -27 10c-23 0 -53 -17 -77 -30l-20 21c29 19 55 35 87 48c24 10 48 18 75 18c19 0 42 -4 57 -20c12 -13 19 -42 19 -94v-129 c0 -80 15 -121 50 -149c26 -21 87 -44 140 -44l8 6v315c0 96 -7 204 -14 305l96 33l8 -7c-2 -30 -2 -194 -2 -292v-352l7 -7c76 5 139 59 156 77c43 44 57 97 57 153c0 54 -33 103 -76 142l4 13l52 48l26 -3c49 -51 79 -115 79 -181c0 -72 -37 -143 -99 -194 c-55 -46 -117 -74 -198 -88l-8 -8c0 -50 3 -101 11 -150l-91 -35'], + 0xE315: [472,13,1215,177,1034,'876 421l50 48l17 3c61 -40 91 -102 91 -166c0 -90 -43 -177 -120 -241c-49 -40 -111 -69 -181 -69c-37 0 -74 6 -101 28c-15 13 -31 40 -44 63h-15c-31 -27 -61 -52 -100 -72c-30 -15 -71 -28 -106 -28c-44 0 -88 12 -119 38c-48 39 -71 95 -71 151c0 88 28 178 105 242 c27 23 66 37 104 48l19 -14c-15 -10 -33 -21 -46 -32c-59 -49 -83 -119 -83 -188c0 -29 3 -59 13 -87c8 -22 19 -44 40 -60c24 -20 56 -35 91 -35c41 0 78 18 107 42c19 16 26 37 32 59c10 32 12 65 12 98v189l90 28l7 -7c-11 -59 -11 -130 -11 -195c0 -37 4 -81 16 -116 c8 -26 19 -46 42 -64c19 -16 46 -23 72 -23c43 0 78 15 108 40c43 35 59 93 59 143c0 61 -24 124 -82 165'], + 0xE316: [471,15,777,191,613,'567 430l-36 -65l-13 1c-6 14 -15 26 -27 36c-24 19 -56 28 -88 28c-31 0 -60 -11 -83 -30c-14 -12 -20 -29 -20 -47c0 -21 3 -41 21 -57c23 -18 54 -20 84 -20c2 0 41 -1 62 -2l-26 -47c-18 4 -36 5 -55 5c-33 0 -66 -10 -90 -30c-17 -13 -21 -33 -21 -51 c0 -33 18 -60 46 -82c32 -25 71 -31 112 -31c26 0 52 7 77 16c28 11 57 27 83 44l11 -2l9 -14c-64 -57 -150 -97 -245 -97c-48 0 -101 12 -135 41c-28 23 -42 52 -42 83c0 33 13 67 40 90c19 14 39 27 61 36v7c-28 14 -51 48 -51 78c0 43 19 77 52 104c38 32 94 47 148 47 c47 0 89 -19 126 -41'], + 0xE317: [698,14,856,78,723,'566 370c0 52 -8 102 -26 151c-16 41 -37 80 -75 110c-19 17 -40 28 -69 28c-22 0 -43 -6 -60 -19c-21 -17 -33 -39 -33 -63c0 -55 32 -106 77 -145c49 -41 111 -62 180 -67zM227 118v110c0 25 0 55 -20 71c-8 7 -20 13 -33 13c-27 0 -57 -15 -83 -28l-13 20 c26 19 56 37 89 50c25 10 51 18 79 18c18 0 38 -9 50 -20c15 -12 19 -38 19 -55v-108c0 -53 1 -80 8 -100c3 -13 9 -26 20 -36c16 -12 34 -19 55 -19c35 0 63 11 88 31c33 29 51 65 65 103c16 52 20 105 20 158l-5 5c-47 4 -90 11 -134 25c-37 12 -73 28 -102 52 c-46 38 -77 89 -77 143c0 39 16 77 49 105c35 28 82 42 130 42c41 0 79 -16 108 -40c39 -33 71 -80 86 -124c21 -56 29 -110 29 -167l5 -5l63 -1v-27h-61l-6 -4c0 -53 -9 -100 -29 -150c-18 -43 -49 -87 -87 -119c-52 -43 -117 -75 -189 -75c-33 0 -69 13 -93 33 c-12 10 -18 24 -23 38c-7 20 -8 40 -8 61'], + 0xE318: [541,12,1244,186,1045,'671 330l9 -12v-154c0 -30 16 -62 39 -81c22 -19 51 -27 84 -27c38 0 73 15 100 37c21 18 35 40 44 63c10 30 18 62 18 93c-2 59 -14 104 -77 158c-33 28 -69 41 -113 51c-64 14 -130 19 -194 19c-108 0 -189 -11 -233 -25c-55 -17 -102 -48 -144 -83l-18 16 c39 39 75 76 129 104c51 26 126 52 312 52c74 0 144 -8 214 -24c50 -11 102 -31 139 -62c47 -39 65 -95 65 -149c0 -93 -46 -181 -125 -246c-47 -39 -103 -72 -170 -72c-40 0 -78 11 -107 35c-21 17 -36 37 -45 60l-11 1c-57 -53 -134 -92 -221 -92c-41 0 -78 15 -107 39 c-52 42 -65 104 -65 163c0 58 34 111 83 152c17 14 43 28 66 41l12 -21c-46 -37 -66 -89 -66 -142s11 -109 56 -147c21 -16 57 -30 78 -30c33 0 71 8 99 31c20 18 33 41 42 64c11 31 15 63 15 94c0 22 -3 44 -6 66'], + 0xE319: [694,192,1066,176,888,'583 -156l-86 -36l-21 10c1 57 6 112 6 169l-10 9c-46 1 -90 5 -135 17c-37 9 -73 24 -102 47c-47 40 -59 98 -59 152c0 72 29 142 89 193c25 21 56 37 89 47c38 12 97 21 117 21l11 9c0 57 -2 114 -7 170l98 42l9 -8c-6 -67 -9 -135 -10 -203l10 -10c47 0 92 -4 140 -15 c33 -7 70 -20 94 -40c50 -42 72 -100 72 -159c0 -67 -25 -135 -83 -184c-60 -50 -141 -71 -225 -73l-10 -10c0 -49 5 -99 13 -148zM580 33c56 3 102 29 141 62c53 44 68 106 68 166c0 51 -13 103 -56 140c-40 34 -96 41 -152 42l-11 -9v-392zM472 441 c-38 0 -97 -13 -133 -43c-49 -41 -63 -100 -63 -156c0 -62 19 -124 72 -167c32 -27 78 -46 125 -46l9 9v395'], + 0xE31A: [704,14,792,138,649,'444 704c62 -32 104 -72 139 -122c48 -69 66 -148 66 -226c0 -61 -10 -122 -34 -179c-19 -48 -50 -94 -93 -131c-47 -38 -111 -60 -177 -60c-39 0 -78 13 -106 36c-38 31 -63 72 -76 114c-19 56 -25 109 -25 167c0 120 54 241 156 326c39 33 99 57 150 75zM378 640 c-23 -12 -45 -26 -64 -45c-62 -63 -96 -143 -96 -224c0 -58 6 -117 25 -172c16 -43 38 -84 75 -115c23 -19 57 -32 81 -32c38 0 77 9 102 31c28 23 44 52 56 83c14 38 18 79 18 119c0 90 -29 176 -82 254c-8 12 -62 82 -115 101'], + 0xE31B: [712,5,792,207,474,'467 712l7 -12c-6 -89 -9 -179 -9 -268c0 -136 0 -334 4 -410l-101 -27l-14 5c6 139 9 279 9 419c0 49 0 122 -1 147s-25 46 -55 46h-100v27'], + 0xE31C: [708,-2,792,111,663,'663 80l-27 -78h-525v16c69 58 136 117 200 179c42 41 84 83 117 129c42 56 70 117 70 182c0 29 -8 70 -40 99c-25 22 -61 33 -96 33c-26 0 -53 -4 -75 -14c-34 -15 -61 -30 -90 -50l-23 19c36 33 77 63 125 84c39 18 82 29 128 29c49 0 96 -15 131 -44 c36 -29 50 -70 50 -111c0 -53 -26 -102 -57 -148c-30 -46 -68 -88 -106 -130c-54 -60 -112 -118 -172 -176c-1 -1 -2 -4 -1 -6c3 -4 9 -5 15 -5h370'], + 0xE31D: [702,17,792,119,632,'386 382v-8c41 -3 81 -8 120 -19c28 -8 57 -19 78 -37c33 -27 48 -64 48 -103c0 -59 -32 -114 -83 -156c-62 -51 -147 -76 -235 -76c-68 0 -133 20 -187 55l-8 11l50 72h12c14 -20 30 -38 49 -54c30 -26 71 -44 114 -44c45 0 88 13 120 40c39 32 55 78 55 123 c0 43 -24 83 -58 114c-22 19 -52 28 -82 34c-43 9 -88 11 -132 11l1 26c36 7 73 15 107 28c26 10 52 22 71 38c33 28 51 65 51 103c0 27 -12 52 -34 71c-26 21 -60 28 -96 28c-21 0 -41 -6 -62 -13c-30 -11 -57 -25 -85 -40l-17 22c38 26 78 51 122 70c30 13 62 24 96 24 c46 0 96 -8 129 -37c31 -25 46 -61 46 -97c0 -45 -18 -90 -57 -122c-37 -30 -84 -52 -133 -64'], + 0xE31E: [704,5,792,96,665,'530 704l9 -6c-2 -27 -2 -299 -2 -454l9 -9h113l6 -7l-20 -37h-98l-10 -8c0 -54 1 -133 4 -155l-96 -33l-6 6c6 35 6 118 6 181l-9 9h-340v44l343 434zM445 243v342c0 2 -1 5 -1 6c-3 3 -9 2 -11 0c-41 -39 -77 -85 -112 -130c-45 -59 -146 -197 -147 -219l6 -7h258'], + 0xE31F: [687,11,792,111,635,'247 594v-181v-7c49 20 103 37 158 37c62 0 123 -14 166 -50c46 -37 64 -90 64 -142c0 -67 -28 -133 -84 -180c-64 -53 -150 -82 -240 -82c-76 0 -149 26 -198 75l-2 12l53 56h13c15 -26 31 -52 56 -73c22 -19 54 -33 87 -33c49 0 99 13 135 43c46 39 64 98 64 154 c0 50 -13 102 -56 138c-29 24 -70 34 -110 34c-53 0 -102 -22 -141 -53l-15 11v327l8 7h402l-32 -78c-105 -2 -256 -5 -314 -5c-7 0 -14 -4 -14 -10'], + 0xE320: [700,13,792,151,662,'662 688l-24 -54l-11 -4c-23 8 -45 11 -69 11c-73 0 -138 -27 -187 -65c-95 -73 -118 -174 -119 -270l8 -1c64 43 139 72 222 72c46 0 91 -16 124 -43c38 -33 56 -78 56 -123c0 -60 -36 -113 -86 -155c-52 -43 -121 -69 -196 -69c-54 0 -107 15 -145 47 c-64 53 -84 130 -84 204c0 125 54 249 161 338c42 37 90 69 144 92c43 19 91 32 140 32c18 0 48 -6 66 -12zM255 265c0 -41 5 -86 20 -126c10 -29 31 -58 56 -79c22 -17 52 -28 82 -28c38 0 78 8 105 31c35 28 49 68 49 109c0 40 -20 79 -55 107c-27 24 -68 35 -108 35 c-49 0 -122 -28 -149 -49'], + 0xE321: [694,8,792,156,690,'690 674l-185 -252c-94 -128 -172 -264 -210 -410l-101 -20l-7 8c29 82 131 232 196 324c0 0 117 171 192 270l-8 12h-403l-8 9l25 79c22 -6 205 -8 260 -8h249v-12'], + 0xE322: [706,10,792,145,650,'383 334c-32 -14 -69 -33 -95 -55c-31 -27 -43 -65 -43 -102c0 -41 15 -82 50 -112c25 -20 61 -33 96 -33c40 0 82 8 110 32c32 26 45 67 45 104c0 41 -25 77 -60 106c-18 13 -77 46 -103 60zM471 385c44 -25 104 -61 124 -78c35 -29 55 -68 55 -110 c0 -48 -20 -95 -61 -130c-60 -50 -143 -77 -229 -77c-58 0 -123 10 -165 45c-38 32 -50 77 -50 122c0 42 14 85 52 115c29 25 90 55 141 80v11c-38 22 -71 46 -98 78c-21 27 -36 57 -36 89c0 40 17 81 54 108c42 31 92 51 144 68c36 1 68 -3 102 -12c25 -7 53 -19 72 -35 c29 -24 43 -57 43 -91s-18 -66 -42 -93c-29 -32 -65 -58 -106 -79v-11zM432 412c50 29 86 78 86 131c0 21 -10 51 -35 75c-27 26 -67 41 -118 41c-18 -10 -40 -25 -50 -36c-14 -17 -19 -41 -19 -61c0 -26 15 -50 34 -71c25 -30 66 -58 102 -79'], + 0xE323: [702,9,792,145,651,'354 11l-102 -20l-12 8c24 46 82 110 135 168c0 0 102 114 141 169l-7 6c-36 -16 -72 -28 -108 -36c-22 -5 -48 -7 -71 -7c-33 0 -90 18 -123 45c-34 29 -62 75 -62 121c0 52 13 97 47 133c35 36 141 82 200 104c60 0 97 -5 119 -11c30 -8 59 -21 82 -40 c38 -32 58 -77 58 -123c0 -38 -15 -75 -33 -111c-28 -52 -63 -100 -101 -147c-41 -50 -80 -101 -114 -155c-22 -33 -42 -67 -49 -104zM518 384c30 25 37 63 37 98c0 47 -22 92 -62 125c-30 25 -83 37 -133 37c-9 0 -12 0 -21 -1c-55 -27 -87 -70 -87 -128 c0 -48 18 -96 59 -129c25 -21 62 -34 97 -34c39 0 81 8 110 32'], + 0xE324: [699,7,866,192,679,'218 548l-21 7c15 38 36 76 73 102c37 27 85 42 135 42c65 0 130 -30 171 -71c45 -46 71 -96 87 -155c14 -48 16 -102 16 -151c0 -101 -18 -214 -116 -283c-40 -28 -89 -46 -140 -46c-69 0 -133 9 -175 51c-41 42 -56 112 -56 159c0 76 29 156 99 206 c50 34 111 48 173 48c11 0 21 0 30 -1c13 -1 44 -7 66 -12l6 4c-17 52 -35 98 -72 134c-35 35 -78 60 -133 60c-44 0 -70 -12 -92 -32c-21 -18 -38 -37 -51 -62zM557 125c21 51 30 107 30 161c0 40 -5 80 -15 119c-30 11 -62 20 -95 20c-38 0 -75 -14 -105 -35 c-64 -45 -79 -120 -79 -185c0 -26 8 -92 46 -130c24 -23 62 -42 100 -42c28 0 46 7 67 21c25 18 41 46 51 71'], + 0xE325: [680,10,1118,127,989,'740 76l-65 188c-2 4 -9 9 -13 9h-270c-4 0 -9 -4 -12 -8l-140 -248l-109 -19l-4 10c143 200 281 404 407 612c1 3 1 4 1 7s-3 9 -14 11l-108 15v27h232c18 -83 73 -243 112 -363c27 -81 59 -178 102 -238c10 -15 29 -24 49 -28c9 -1 18 -2 28 -2c17 0 34 2 51 3l2 -26 l-125 -30c-18 -4 -36 -6 -54 -6c-13 0 -24 5 -33 13c-16 13 -28 47 -37 73zM555 572l-138 -244c-2 -2 -2 -8 -2 -9c0 -3 4 -7 9 -7h225c6 0 9 4 9 7c0 0 -3 8 -3 9l-84 244c-1 2 -5 4 -8 4c-4 0 -7 -3 -8 -4'], + 0xE326: [686,1,980,157,786,'355 324v-258c0 -13 6 -17 13 -21s39 -6 77 -6c65 0 132 12 179 50c37 32 53 75 53 119c0 33 -10 68 -40 93c-22 18 -50 27 -80 34c-41 9 -84 11 -128 11c-21 0 -56 0 -62 -1c-5 0 -10 -3 -12 -7v-14zM355 411v-20c1 -4 6 -7 10 -8c9 -3 37 -2 55 -2c61 0 121 15 164 50 c36 30 52 72 52 114c0 29 -17 55 -41 75c-14 12 -36 17 -56 21c-32 6 -64 7 -96 7c-24 0 -48 -2 -72 -5c-9 -1 -14 -7 -16 -14v-218zM554 378l-1 -8c37 -4 80 -12 116 -21c25 -6 51 -19 69 -34c37 -31 48 -71 48 -114c0 -50 -22 -98 -64 -133c-66 -56 -163 -69 -254 -69 c-79 1 -237 2 -238 2l-1 10c7 9 22 25 22 26c2 3 3 6 4 10c0 1 2 23 2 34v530c0 17 -18 27 -21 28c-20 8 -49 16 -79 23l1 17l9 7h296c49 0 97 -2 145 -12c33 -7 65 -16 89 -36c26 -23 41 -53 41 -85c0 -41 -17 -81 -52 -110c-36 -31 -84 -48 -132 -65'], + 0xE327: [699,15,1050,201,903,'835 528l-17 1c-14 32 -35 61 -62 84c-40 33 -97 45 -153 45c-73 0 -147 -21 -200 -65c-34 -29 -55 -65 -70 -103c-18 -47 -25 -97 -25 -146c0 -92 58 -190 97 -223c67 -55 117 -83 215 -83c82 0 157 29 225 67l20 -29c-86 -49 -182 -91 -287 -91c-95 0 -193 17 -261 74 c-84 70 -116 169 -116 267c0 96 26 195 110 264c87 73 208 109 333 109c78 0 157 -16 213 -63c18 -15 33 -32 46 -50'], + 0xE328: [686,-2,1187,158,983,'351 575v-405c2 -40 4 -102 22 -117c16 -13 62 -13 95 -13c59 0 117 5 174 20c44 12 87 29 121 57c82 68 107 166 107 260c0 61 -21 158 -88 214c-26 22 -57 35 -108 44c-40 7 -170 10 -227 10c-51 0 -72 -1 -79 -4s-9 -6 -13 -12c-2 -3 -4 -23 -4 -54zM224 2v10 c25 15 25 29 27 67v494c0 16 -2 32 -3 47c-1 10 -9 17 -20 21c-23 7 -47 12 -70 18v19l9 8h375c75 0 149 -5 221 -20c52 -11 102 -27 139 -58c30 -25 48 -57 60 -91c16 -42 21 -87 21 -132c0 -127 -27 -211 -119 -294c-38 -34 -97 -54 -150 -67c-69 -17 -141 -22 -213 -22 h-277'], + 0xE329: [688,0,918,152,768,'645 391l7 -7l-7 -48c-47 3 -95 6 -142 6c-46 0 -121 -2 -143 -3c-8 -1 -12 -5 -12 -12v-139c0 -38 1 -87 18 -112c7 -12 22 -20 36 -26c14 -5 45 -6 79 -6c56 0 85 0 281 14l6 -5l-15 -53h-466c-11 5 -18 15 -24 25c-6 12 -7 27 -7 41v492c0 14 0 44 -11 64 c-3 6 -12 11 -20 16c-11 6 -47 13 -71 16l-2 20l9 7l178 1c84 0 204 6 290 6c21 0 39 0 55 -1l-2 -50l-5 -7c-83 4 -242 10 -251 10h-48c-6 -1 -12 -4 -15 -9c-10 -12 -14 -44 -14 -67v-166c0 -7 4 -11 12 -12c47 -3 191 -1 284 5'], + 0xE32A: [690,2,792,144,657,'247 360l2 161c0 30 -1 60 -4 90c-2 17 -15 32 -35 36l-66 13v21l9 7c170 0 417 0 504 2v-53l-9 -8c-87 5 -173 20 -259 20c-17 0 -33 -6 -39 -23c-5 -14 -8 -24 -8 -235c0 -5 5 -13 15 -13c88 0 196 9 282 12l-1 -49l-6 -5c-84 4 -189 5 -275 5c-6 0 -14 -4 -14 -11 c0 -101 1 -216 6 -317l-110 -15c4 121 8 241 8 362'], + 0xE32B: [699,17,1112,205,908,'548 296l331 11c3 -91 6 -273 6 -274c-105 -23 -235 -50 -322 -50c-92 0 -182 26 -246 80c-82 68 -112 166 -112 261c0 98 26 199 110 269c90 75 216 106 342 106c77 0 154 -20 208 -65c13 -11 30 -31 43 -48l-69 -57l-15 1c-15 26 -33 51 -57 71c-44 36 -102 49 -164 49 c-70 0 -141 -14 -193 -56c-35 -29 -56 -66 -72 -105c-18 -48 -25 -98 -25 -149c0 -88 29 -160 98 -228c53 -52 142 -77 236 -77c38 0 75 3 112 10c12 2 21 11 22 21c2 31 4 62 2 93c0 23 -1 47 -3 69c-1 14 -13 27 -30 28c-53 5 -130 7 -195 9l-7 5v26'], + 0xE32C: [690,2,1133,159,990,'990 14l-8 -6l-178 -8l-13 21c2 97 6 216 6 313c0 5 -4 12 -15 12h-411c-9 0 -16 -5 -16 -12c0 -67 -1 -163 0 -230c0 -26 2 -52 6 -78l-110 -28l-8 5c12 113 12 242 12 364c0 83 -1 166 -7 249c-1 9 -3 20 -15 24c-5 1 -48 12 -72 19l-2 19l9 7h194l6 -5 c-5 -22 -7 -46 -8 -69c-3 -65 -7 -149 -7 -214c0 -5 2 -12 14 -12h415c13 0 15 6 15 12c0 86 -4 190 -4 276l105 17l7 -6c-4 -39 -9 -80 -10 -119c-5 -162 -6 -324 1 -486c0 -17 16 -30 35 -34c22 -5 56 -13 58 -13'], + 0xE32D: [683,1,666,191,515,'512 -1h-318v26c24 4 52 9 73 14c16 5 29 17 32 31c1 11 1 43 2 64v363c0 39 0 77 -4 115c-1 13 -10 26 -26 29c-1 0 -54 9 -80 14v22l8 6h300l7 -6v-21l-80 -15c-15 -3 -25 -14 -27 -26c-3 -20 -3 -78 -3 -116c0 -124 -1 -228 2 -330c0 -33 1 -66 5 -99 c1 -16 17 -26 34 -30c26 -5 76 -17 78 -17'], + 0xE32E: [690,234,676,157,518,'409 608v-517c0 -41 -1 -83 -16 -122c-16 -45 -44 -88 -85 -121c-32 -25 -92 -64 -134 -82l-17 18c27 14 58 37 77 54c26 24 38 55 51 93c12 34 22 105 22 165v512c0 11 -5 34 -19 37l-87 18v21l9 6h300l8 -6l-2 -24l-82 -14c-14 -3 -25 -20 -25 -38'], + 0xE32F: [683,7,995,156,855,'362 319l-11 -1c0 -98 0 -196 8 -293l-98 -29l-13 5l4 147v447c0 10 -1 21 -6 31c-4 6 -9 13 -17 15c-24 6 -72 18 -73 18l2 17l10 7h189l9 -7c-4 -12 -10 -49 -10 -50c-2 -27 -8 -155 -8 -268l9 -1l345 326h108l-1 -9l-350 -294c-3 -3 -9 -8 -9 -11s1 -5 6 -9 c128 -107 326 -271 399 -325v-11l-103 -31c-126 112 -260 217 -390 326'], + 0xE330: [690,5,864,157,738,'738 48l-17 -53c-89 7 -330 7 -496 7v14c9 10 15 22 18 31c5 10 9 82 9 96v478c0 14 -7 30 -25 33c-24 4 -69 12 -70 12l1 17l8 7h285l7 -6v-21c-1 0 -53 -9 -78 -14c-14 -2 -21 -14 -21 -25c-12 -177 -6 -383 1 -568c0 -6 9 -13 15 -13c125 0 343 14 351 15'], + 0xE331: [690,6,1446,192,1309,'1057 690h124v-12c-8 -3 -19 -10 -23 -19c-7 -15 -7 -51 -7 -76c0 -164 2 -317 21 -481c3 -17 12 -34 29 -45c12 -7 26 -11 41 -11s45 4 67 6v-24c-53 -16 -115 -34 -163 -34c-17 0 -34 2 -49 6s-27 21 -27 29v182c0 25 -9 271 -12 337c0 8 -3 15 -9 15 c-4 0 -10 -3 -14 -8l-343 -554h-36c-90 180 -203 409 -278 537c-4 5 -9 10 -14 10s-8 -4 -9 -11c-28 -170 -48 -342 -65 -514l-90 -26l-8 3c45 196 87 393 120 591c2 12 2 26 -7 36c-6 7 -15 12 -26 15l-81 19l2 22l9 7h211c66 -161 178 -361 278 -538c3 -4 9 -14 13 -14 c5 0 12 5 15 9'], + 0xE332: [694,5,1188,156,949,'942 694l7 -8c-16 -227 -18 -459 -18 -686h-43c-28 26 -45 42 -81 80l-190 198c-122 126 -221 221 -281 277c-4 4 -10 10 -15 9c-7 -2 -7 -11 -7 -17c0 -129 16 -348 29 -522l-84 -30l-11 9c12 201 19 403 15 604c0 8 0 16 -8 22c-4 5 -10 10 -18 11c-1 0 -51 10 -76 15 l-5 27l9 7h195c159 -176 354 -391 494 -517c4 -3 9 -8 14 -8s7 6 7 8c0 102 -4 201 -29 505'], + 0xE333: [700,18,1157,183,968,'183 318c0 129 33 214 122 294c76 68 201 88 313 88c91 0 183 -22 249 -76c35 -30 58 -68 74 -108c19 -48 27 -100 27 -152c0 -65 -1 -131 -49 -212c-56 -98 -212 -170 -401 -170c-79 0 -168 20 -224 68c-85 70 -111 168 -111 268zM295 348c0 -94 20 -180 95 -248 c72 -67 145 -77 192 -77c69 0 127 20 175 59c35 30 56 68 73 108c18 46 25 96 25 146c0 96 -28 202 -111 270c-46 40 -101 54 -165 54c-68 0 -144 -24 -189 -64c-34 -29 -54 -64 -69 -102c-18 -46 -26 -96 -26 -146'], + 0xE334: [679,6,885,163,757,'434 640h-67c-8 0 -11 -6 -11 -11c-4 -88 -7 -201 -7 -288c0 -9 8 -12 13 -12c42 0 91 4 131 15c32 8 62 20 85 39c40 33 64 77 64 123c0 36 -15 72 -46 98c-17 14 -39 22 -62 27c-33 7 -66 9 -100 9zM357 22l-99 -28l-9 7c3 140 9 281 9 422c0 59 -1 118 -6 177 c-1 18 -11 36 -33 43c-18 6 -37 9 -56 11v18l9 7h308c43 0 87 -2 129 -10c29 -5 59 -12 82 -28c46 -31 66 -79 66 -127c0 -58 -26 -115 -77 -156c-24 -21 -55 -34 -89 -44c-42 -12 -85 -18 -129 -21c-30 -2 -69 -4 -99 -6c-10 -1 -14 -6 -14 -13c0 -25 7 -151 8 -252'], + 0xE335: [698,235,1187,199,1025,'1017 -174l8 -20c-46 -16 -124 -41 -185 -41c-59 0 -124 28 -165 61c-44 37 -106 114 -139 158c-83 0 -175 18 -234 73c-68 64 -103 156 -102 248c1 135 34 229 121 304c82 70 196 89 310 89c92 0 186 -18 255 -76c76 -63 100 -173 100 -256c0 -97 -6 -115 -22 -156 c-17 -44 -32 -77 -82 -123c-54 -49 -138 -79 -213 -94l-5 -10c19 -30 50 -79 74 -105c18 -21 70 -67 175 -67c19 0 76 9 104 15zM589 22c89 0 135 21 181 58c79 63 102 168 102 258c0 52 -6 97 -25 147c-17 41 -43 86 -82 117c-45 39 -98 58 -163 58 c-68 0 -151 -23 -198 -66c-35 -32 -53 -66 -68 -105c-18 -50 -24 -103 -24 -155c0 -89 28 -178 102 -242c46 -40 111 -70 175 -70'], + 0xE336: [679,8,924,162,795,'353 370c0 -6 2 -15 10 -15c15 0 32 0 46 1c55 4 113 15 152 49c38 31 62 73 62 118c0 30 -15 60 -40 81c-17 14 -40 22 -62 27c-33 7 -66 9 -99 9h-48c-10 0 -13 -7 -14 -26c-3 -64 -7 -239 -7 -244zM482 331l-2 -8l315 -296v-9l-118 -26c-112 119 -264 282 -299 311 c-7 5 -16 9 -24 9c0 -96 0 -193 6 -289l-100 -29l-13 9c10 145 11 291 11 436c0 15 -3 115 -4 172c0 14 -12 26 -27 30c-22 5 -64 15 -65 15l1 17l8 6h326c40 0 81 -3 120 -12c28 -7 56 -16 76 -34c30 -25 47 -59 47 -94c0 -48 -4 -62 -23 -96c-38 -70 -135 -103 -235 -112'], + 0xE337: [702,15,862,151,677,'673 606l-76 -56l-15 3c-9 28 -19 58 -45 79c-27 22 -64 33 -102 33c-37 0 -73 -15 -98 -37c-25 -21 -35 -51 -35 -81c0 -36 23 -68 53 -93c32 -27 84 -48 131 -65c44 -16 107 -45 128 -64c36 -29 63 -75 63 -116c0 -52 -29 -100 -74 -137c-67 -56 -159 -87 -254 -87 c-56 0 -114 12 -154 46c-19 16 -34 35 -44 56l68 66l21 -1c11 -30 24 -61 50 -83c29 -24 70 -38 109 -38c46 0 93 18 126 45c32 26 46 65 46 102c0 24 -19 56 -42 77c-25 22 -70 47 -103 59c-56 20 -127 48 -159 74c-39 33 -61 78 -61 124c0 47 17 94 57 128 c52 43 124 62 198 62c61 0 124 -7 169 -44c18 -15 31 -33 43 -52'], + 0xE338: [697,10,784,128,787,'787 689l-2 -48l-10 -7c-202 8 -227 10 -252 10c-8 0 -11 -5 -11 -11c-1 -14 -5 -115 -5 -195c0 -121 8 -300 16 -421l-120 -27l-11 9c10 127 16 254 16 381c0 82 -1 226 -3 256c0 4 -4 6 -10 6c-29 0 -124 -3 -257 -7l-10 7v48l9 7c113 -3 114 -11 326 -11 c90 0 209 6 314 10'], + 0xE339: [694,9,1122,138,993,'350 542l-10 -273c0 -35 4 -70 16 -104c9 -26 22 -52 46 -71c39 -32 94 -42 148 -42c76 0 146 27 212 59c0 183 2 366 5 548l105 35l8 -7c-19 -114 -19 -323 -19 -485c0 -50 3 -126 20 -143c10 -9 24 -11 37 -11c24 0 46 6 70 8l5 -17l-7 -7c-61 -16 -146 -37 -183 -37 c-15 0 -36 6 -38 21c-2 16 -2 32 -2 48l-9 6c-85 -45 -180 -79 -281 -79c-33 0 -68 3 -101 11c-25 6 -48 16 -66 31c-32 27 -49 74 -52 94c-9 46 -10 120 -10 181c0 97 5 195 2 293c0 19 -18 34 -39 38c-22 5 -65 14 -66 14l-3 20l10 7h203l7 -6c-2 -14 -8 -115 -8 -132'], + 0xE33A: [698,16,969,125,972,'861 680l104 17l7 -19c-77 -79 -153 -188 -167 -210c-46 -69 -67 -103 -108 -177c-50 -89 -95 -185 -134 -281l-82 -26l-12 7l-172 482c-17 46 -34 92 -57 136c-5 8 -10 16 -17 22c-6 5 -13 9 -22 11c-14 5 -50 10 -75 13l-1 27l8 6l210 10c47 -191 113 -378 198 -560 c2 -4 7 -6 9 -7c4 1 8 1 10 4c3 3 44 80 75 139l67 128l77 146c24 45 52 89 82 132'], + 0xE33B: [690,11,1377,113,1369,'1272 675l97 14v-21l-138 -188c-55 -77 -196 -306 -274 -464l-72 -27l-14 8c-38 181 -83 360 -131 539c-1 5 -3 12 -8 12c-4 0 -8 -7 -11 -12l-34 -63c-65 -121 -162 -300 -218 -455l-77 -29l-13 5c-28 128 -58 255 -94 381c-24 81 -48 162 -84 239c-6 13 -17 24 -32 28 c-16 4 -36 10 -54 13l-2 24l10 7l186 3c18 -81 89 -351 136 -526c2 -5 6 -6 8 -6c5 0 8 2 9 4c51 83 208 374 263 500l91 29l8 -6c0 -62 38 -213 75 -359c16 -61 31 -121 43 -174c1 -4 7 -12 15 -12c11 0 14 4 16 7l96 170l130 242c27 46 52 86 73 117'], + 0xE33C: [688,11,993,129,860,'855 672l-224 -206c-36 -35 -76 -79 -80 -86c0 -13 140 -200 187 -249c29 -31 42 -42 72 -72c8 -7 35 -21 44 -23l6 -4v-16l-132 -27l-17 6c-21 18 -38 40 -55 62l-171 239h-15c-17 -17 -66 -73 -99 -114c-46 -53 -110 -137 -129 -171l-113 -11v16l326 329 c-6 1 -119 163 -174 245c-14 18 -44 37 -66 44c-17 5 -38 10 -60 15v25l8 6c30 1 121 5 175 8l177 -266h10c7 5 85 90 123 135c40 46 93 117 93 117l114 13v-15'], + 0xE33D: [693,11,860,125,835,'407 299l-179 295c-7 12 -16 24 -28 34c-7 7 -17 13 -27 15c-16 3 -32 6 -48 8v28l8 7h174l169 -325c1 -2 8 -8 14 -8c5 0 10 4 14 9s55 75 71 98c9 14 110 159 153 216l102 17l5 -18c-134 -145 -222 -241 -322 -369l11 -288l-108 -29l-13 9c4 100 4 201 4 301'], + 0xE33E: [695,12,993,152,865,'811 664l-479 -603l7 -7l515 14l11 -9l-22 -71c-154 12 -459 12 -690 12l-1 21l509 606l-8 10c-225 0 -347 -6 -380 -9l-7 5v54l11 8c178 -9 355 -12 534 -12v-19'], + 0xE33F: [466,12,924,202,812,'617 431l63 31l6 -5c-7 -113 -8 -227 -5 -340c0 -18 2 -36 14 -52c6 -9 19 -13 31 -13c17 0 53 10 78 18l8 -24c-47 -24 -113 -58 -151 -58c-17 0 -36 3 -48 15c-13 13 -17 27 -20 44l-18 4c-34 -18 -65 -33 -101 -45c-30 -10 -61 -18 -95 -18c-44 0 -90 13 -120 42 c-46 45 -58 105 -56 163c0 79 25 159 93 215c52 41 121 58 192 58c38 0 90 -12 129 -35zM590 99v230c0 26 0 52 -19 69c-22 19 -52 33 -82 33c-43 0 -82 -13 -114 -38c-28 -21 -61 -77 -64 -178c0 -42 6 -85 33 -120c25 -33 75 -41 119 -41c20 0 48 7 66 14 c25 10 37 16 61 31'], + 0xE340: [684,10,899,129,725,'129 661l7 5l203 18l8 -7c-11 -93 -20 -184 -18 -278l11 -5c64 40 134 74 215 74c44 0 87 -13 118 -38c42 -34 54 -85 52 -133c-2 -41 -8 -81 -23 -120c-12 -31 -29 -61 -57 -84c-69 -60 -160 -103 -262 -103c-40 0 -73 9 -101 33c-22 18 -40 46 -40 100v476 c0 16 -7 30 -28 32c-1 0 -61 6 -85 9v21zM335 347c-3 -34 -5 -79 -5 -118c0 -62 4 -139 37 -165c25 -20 48 -26 82 -26c39 0 78 12 109 33c24 16 38 38 48 61c13 30 19 63 19 95c0 73 -19 115 -36 136c-16 20 -44 43 -90 43c-64 0 -118 -25 -164 -59'], + 0xE341: [475,19,777,156,632,'619 114l13 -18c-74 -61 -162 -115 -269 -115c-52 0 -97 8 -132 32c-25 18 -43 44 -55 69c-20 43 -20 89 -20 135c0 67 24 133 78 183c56 52 144 75 225 75c34 0 66 -6 92 -23c28 -19 44 -46 48 -75l-65 -53l-21 6c-6 37 -19 64 -39 82c-16 14 -41 24 -63 24 c-40 0 -68 -10 -102 -43c-41 -40 -54 -93 -54 -145c0 -61 11 -131 69 -172c27 -21 65 -29 101 -29c70 0 131 31 183 69'], + 0xE342: [684,19,917,200,813,'474 660l6 4l196 20l9 -9v-565c1 -17 5 -34 13 -47c7 -10 18 -15 33 -15c11 0 49 11 73 19l9 -23c-30 -17 -61 -34 -93 -47c-19 -8 -40 -16 -61 -16c-18 0 -38 5 -48 18c-14 16 -22 35 -23 55c-37 -21 -76 -40 -118 -54c-29 -10 -60 -18 -91 -18c-42 0 -85 11 -115 37 c-49 43 -64 103 -64 161c0 80 24 160 91 218c51 44 122 64 194 64c35 0 67 -6 100 -15l8 4c0 53 -1 125 -9 151c-5 13 -17 25 -33 29c-24 5 -51 7 -76 7zM588 95l5 215c0 35 -5 73 -36 99c-20 16 -50 19 -77 19c-40 0 -77 -14 -105 -38c-56 -48 -70 -120 -70 -187 c0 -45 10 -93 50 -126c24 -20 58 -29 91 -29c42 0 109 20 142 47'], + 0xE343: [478,12,792,180,653,'335 396c-48 -42 -55 -87 -56 -136c1 -6 1 -12 3 -18l5 -4l242 80c7 2 16 10 16 26c0 3 -1 7 -2 10c-6 25 -26 58 -55 74c-14 7 -30 10 -53 10c-39 0 -75 -16 -100 -42zM623 319l-339 -122c3 -33 21 -84 57 -112c26 -21 62 -29 98 -29c35 0 67 9 98 22c30 13 59 28 87 46 l12 -2l17 -18c-40 -31 -83 -59 -131 -81c-43 -21 -93 -35 -143 -35c-42 0 -84 8 -118 30c-24 16 -39 39 -50 62c-23 46 -31 97 -31 146c0 58 14 117 61 162c59 57 145 90 236 90c40 0 80 -7 111 -28c39 -27 60 -68 60 -110c0 -4 0 -7 -1 -8c-5 -5 -16 -10 -24 -13'], + 0xE344: [669,12,696,140,603,'154 434h125l7 6c1 35 4 86 23 122c17 34 31 50 64 73c37 25 77 34 119 34c65 0 96 -27 111 -54l-69 -54l-14 4c-2 10 -7 26 -13 34c-6 11 -26 30 -57 30c-16 0 -29 -9 -41 -25c-23 -29 -31 -100 -32 -164l6 -6h149l6 -7l-9 -22l-9 -6h-137l-8 -6v-111 c0 -94 3 -189 12 -270l-94 -24l-20 11c9 99 14 193 15 284v108l-8 8h-134l-6 7l5 22'], + 0xE345: [465,233,875,197,690,'575 52c-39 -19 -71 -33 -113 -48c-27 -10 -62 -15 -91 -15c-37 0 -77 13 -106 36c-43 34 -68 91 -68 159c0 58 10 92 25 128c14 32 35 65 64 89c49 41 116 64 186 64c49 0 100 -9 140 -34l61 29l17 -6c-6 -91 -11 -163 -11 -372c0 -38 -1 -110 -26 -168 c-19 -44 -64 -78 -88 -93c-61 -39 -122 -54 -194 -54c-53 0 -107 10 -166 56l59 62h16c23 -36 77 -77 121 -77c46 0 90 17 121 47c21 20 35 46 43 72c11 31 20 81 22 118zM586 99l1 264c-2 14 -11 31 -22 42c-21 19 -53 26 -85 26c-41 0 -79 -17 -109 -41 c-27 -21 -45 -49 -55 -77c-14 -38 -17 -71 -17 -110c0 -27 20 -79 36 -98c27 -33 68 -53 102 -53c55 0 122 29 149 47'], + 0xE346: [681,10,939,129,862,'846 107l16 -10v-11c-34 -30 -62 -53 -101 -72c-28 -14 -55 -24 -88 -24c-23 0 -46 10 -58 26c-14 20 -21 46 -21 73c0 54 5 141 5 177c0 24 -2 47 -6 72c-4 17 -14 36 -30 48c-21 12 -41 18 -68 18c-26 0 -60 -8 -84 -16c-33 -14 -56 -26 -86 -44 c0 -110 -2 -220 -2 -328l-87 -22l-7 10c8 132 16 264 17 396c0 52 0 125 -4 156c-2 20 -5 42 -20 60c-10 12 -60 20 -93 26v18l6 4l190 17l7 -7c-5 -85 -5 -184 -5 -276l10 -8c43 22 88 42 136 58c33 10 66 18 105 18c18 0 56 -10 78 -28c16 -12 23 -30 25 -48 c4 -28 4 -88 4 -130c0 -44 -1 -108 1 -132c1 -16 4 -34 16 -50c8 -10 21 -16 36 -16c19 0 38 5 55 12c23 11 38 22 53 33'], + 0xE347: [683,8,626,114,525,'356 392l-9 -210c0 -41 4 -77 15 -95c7 -13 20 -22 38 -22c17 0 35 3 49 9c22 10 41 22 60 36l16 -10v-11c-24 -27 -50 -50 -83 -70c-25 -14 -54 -27 -85 -27c-30 0 -57 7 -77 28c-17 18 -19 40 -19 84l6 221c0 30 -5 56 -13 70c-6 10 -16 15 -29 15 c-26 0 -66 -17 -95 -32l-16 18c29 19 68 42 97 54c21 9 48 21 71 21c17 0 40 -2 56 -18s18 -40 18 -61zM372 625c-1 -33 -33 -56 -72 -56c-37 0 -68 26 -68 58c1 34 40 56 77 56c39 0 63 -28 63 -58'], + 0xE348: [683,231,591,96,368,'129 375l-15 18c32 21 65 40 101 56c21 9 44 19 68 19c18 0 37 -3 49 -13c18 -14 22 -34 24 -54c8 -43 9 -210 9 -247c0 -20 0 -160 -15 -195c-15 -38 -43 -71 -75 -100c-40 -35 -105 -68 -160 -90l-19 16c89 44 136 89 153 139c21 62 24 186 24 230c0 98 0 164 -4 201 c-2 20 -10 35 -15 39c-13 14 -20 14 -33 14c-20 0 -62 -20 -92 -33zM299 683c36 0 69 -22 69 -54c0 -34 -31 -64 -73 -64c-40 0 -67 28 -67 60s32 58 71 58'], + 0xE349: [686,7,860,129,775,'339 266l161 123c33 24 93 70 96 73c13 9 25 17 40 23l55 -29v-11c-90 -44 -175 -95 -256 -151c-8 -6 -21 -15 -21 -20c0 -6 6 -11 9 -16c57 -60 120 -112 176 -159c16 -14 45 -26 60 -26c39 0 67 16 93 39l23 -20c-32 -36 -62 -62 -116 -92c-7 -4 -24 -7 -36 -7 c-11 0 -33 3 -41 8c-13 6 -34 22 -54 41c0 0 -107 120 -192 199l-12 -7l-3 -221l-85 -20l-7 7l12 359c2 79 6 189 -8 235c-5 15 -18 28 -36 34c-12 3 -45 8 -68 10v21l6 4l192 23l7 -7l-10 -413h15'], + 0xE34A: [686,11,632,146,529,'502 112h14l13 -12c-23 -31 -50 -59 -85 -81c-29 -17 -63 -29 -97 -30c-23 0 -47 6 -63 19c-27 25 -36 44 -36 122l9 378c0 33 0 76 -6 100c-4 13 -17 22 -33 24c-23 4 -48 5 -72 6v23l7 5l198 20l7 -7c-5 -140 -16 -280 -16 -420c0 -42 0 -102 2 -127 c3 -17 5 -34 16 -49c9 -12 23 -17 39 -18c17 0 35 5 48 12c20 10 38 22 55 35'], + 0xE34B: [471,18,1292,132,1203,'603 -4c0 32 12 159 12 273c0 24 0 51 -6 70c-4 16 -13 31 -27 43c-17 14 -41 18 -65 18c-56 0 -130 -38 -140 -44c-6 -113 -9 -229 -4 -342l-80 -24l-17 8c1 92 8 184 8 275c0 44 -3 110 -15 126c-8 10 -20 13 -33 13c-19 0 -62 -16 -90 -29l-14 19c29 19 59 37 91 51 c23 9 48 17 73 18c21 0 41 -6 55 -17c20 -15 20 -37 20 -57l9 -6c40 18 79 37 123 52c26 9 55 16 84 16c44 0 85 -20 107 -52l20 -2c29 13 60 27 102 39c29 9 59 16 90 16c35 0 71 -6 95 -27c16 -14 19 -34 21 -53c3 -20 3 -88 3 -132v-131c0 -13 2 -38 16 -51 c11 -10 29 -14 45 -14c27 1 62 22 92 40h17l8 -21c-31 -25 -63 -48 -100 -65c-29 -13 -59 -23 -92 -24c-19 0 -42 5 -55 17c-18 16 -26 39 -26 60c0 16 6 136 6 210c0 24 0 47 -7 70c-5 17 -15 31 -29 43c-18 14 -43 18 -66 18c-59 0 -101 -18 -135 -34 c-3 -115 -3 -233 5 -348l-89 -28'], + 0xE34C: [471,10,990,103,884,'349 18l-83 -24l-19 7c2 43 10 170 11 256c1 46 2 112 -12 136c-6 11 -17 20 -33 20c-24 0 -55 -16 -90 -35l-20 22c50 30 119 72 163 71c22 0 45 -4 60 -17c19 -15 22 -32 25 -51l10 -6c41 21 80 39 126 53c32 11 66 19 101 19s71 -7 92 -29c24 -23 24 -120 24 -184 c0 -54 0 -126 1 -145c2 -34 30 -51 57 -51s65 21 96 40h15l11 -21c-35 -28 -67 -49 -107 -68c-24 -11 -66 -21 -81 -21c-32 0 -55 8 -70 27c-14 17 -17 40 -17 61l6 171c0 29 -2 59 -8 87c-4 18 -11 35 -24 48c-20 18 -46 26 -76 26c-24 0 -48 -7 -69 -15 c-31 -12 -59 -28 -85 -46c-3 -47 -6 -99 -6 -151c0 -60 -2 -99 2 -180'], + 0xE34D: [465,14,869,164,693,'277 316c-7 -25 -10 -51 -10 -77c0 -66 15 -141 76 -186c23 -17 54 -26 86 -26c41 0 78 12 106 37c23 21 35 48 42 75s10 54 10 81c0 64 -10 136 -70 180c-24 19 -56 26 -89 26c-36 0 -81 -14 -113 -42c-21 -19 -31 -43 -38 -68zM397 -14c-53 0 -110 10 -150 40 c-58 43 -78 107 -83 170c0 69 9 143 66 195s142 74 226 74c56 0 113 -9 156 -41c61 -47 81 -118 81 -185c0 -65 -16 -131 -69 -180c-57 -53 -143 -73 -227 -73'], + 0xE34E: [470,237,900,83,718,'336 -206l-97 -31l-12 11c6 58 7 263 7 320v221c0 22 -6 66 -17 80c-8 10 -16 17 -30 17c-25 0 -59 -15 -88 -29l-16 19c28 19 60 37 92 50c23 10 46 18 71 18c19 0 38 -3 53 -15c18 -14 22 -36 25 -60l9 -4c40 26 66 39 109 55c37 13 74 19 112 19c37 0 85 -15 111 -37 c45 -40 53 -78 53 -130c0 -44 -10 -96 -29 -135c-16 -31 -44 -71 -69 -89c-33 -25 -71 -47 -111 -63c-33 -13 -66 -22 -102 -22c-25 0 -48 3 -71 8l-12 -8c1 -46 4 -143 12 -195zM326 66c29 -22 66 -37 106 -37c43 0 85 10 117 36c25 20 41 47 52 75c14 35 17 62 17 99 c0 26 -8 61 -17 86c-6 18 -16 33 -31 48c-22 21 -51 30 -76 30c-61 0 -110 -21 -166 -58c-1 -6 -4 -82 -4 -93c0 -82 2 -185 2 -186'], + 0xE34F: [504,243,920,203,699,'600 -243l-19 16c3 41 6 185 9 281l-8 5c-61 -38 -131 -66 -207 -66c-38 0 -75 12 -103 33c-53 43 -69 106 -68 166c2 87 30 172 110 230c51 37 120 49 178 49c37 0 84 -14 119 -28l10 2l53 59l25 -4c-21 -223 -22 -528 -2 -714zM590 105v226c0 25 0 55 -19 71 c-22 18 -49 32 -80 32c-40 0 -77 -12 -107 -33c-55 -37 -70 -118 -70 -188c0 -26 5 -52 13 -77c5 -18 16 -32 29 -46c23 -23 59 -35 95 -35c47 0 100 21 139 50'], + 0xE350: [473,3,712,108,595,'530 339l-14 5c-4 16 -10 32 -23 44c-11 9 -25 14 -41 14c-49 0 -77 -35 -93 -62c-5 -12 -5 -32 -6 -46c-2 -93 -3 -184 2 -276l-84 -21l-18 9c9 70 13 157 14 237c0 53 0 129 -19 154c-7 10 -19 15 -32 15c-27 0 -64 -17 -94 -31l-14 17c30 20 62 40 96 56 c21 9 43 19 66 19c21 0 43 -4 59 -17c17 -14 24 -35 27 -55l12 -4c23 18 49 36 76 51c17 9 35 19 56 19c23 0 51 -4 67 -18c17 -14 26 -39 28 -61'], + 0xE351: [466,17,740,159,561,'548 383l-66 -37l-14 7c-1 18 -4 37 -16 53c-13 18 -38 25 -62 25c-27 0 -53 -8 -71 -23c-19 -15 -28 -36 -28 -58s14 -34 32 -50c14 -12 66 -34 100 -46c39 -14 83 -36 100 -50c22 -18 38 -41 38 -66c0 -35 -14 -69 -43 -94c-47 -42 -114 -61 -182 -61 c-46 0 -94 7 -129 33c-19 14 -36 31 -48 50l59 71l17 -1c2 -30 14 -60 42 -81c26 -21 59 -34 95 -34c26 0 59 12 77 28c14 13 25 30 25 48c0 21 -13 41 -31 56c-23 19 -57 31 -88 42c-37 13 -74 27 -101 47c-28 21 -49 49 -49 81c0 35 17 70 49 94c43 33 100 49 159 49 c36 0 74 -4 102 -25c19 -15 32 -36 33 -58'], + 0xE352: [611,9,693,118,576,'263 582l100 29l9 -5c-6 -57 -12 -108 -13 -166l7 -5h154l5 -4l-9 -26l-8 -5h-142l-7 -6v-189c0 -42 4 -106 31 -130c16 -15 33 -20 54 -20c30 0 73 22 109 41l14 -2l9 -15c-33 -25 -67 -48 -106 -65c-29 -13 -59 -23 -91 -23c-28 0 -64 7 -87 31c-25 27 -27 46 -27 181 v190l-7 7h-135l-5 5l8 24l7 6h125l7 6c0 51 0 115 -2 141'], + 0xE353: [470,10,964,96,883,'870 105l13 -19c-36 -26 -73 -50 -113 -70c-25 -12 -51 -24 -80 -24c-22 0 -45 5 -60 18c-17 14 -21 35 -23 54l-10 1c-44 -22 -90 -41 -138 -58c-27 -10 -57 -17 -87 -17c-34 0 -73 7 -96 29c-24 23 -30 72 -30 93c0 33 5 134 5 163c0 91 -5 107 -21 121 c-7 7 -20 9 -33 9c-17 0 -58 -17 -85 -30l-16 20c31 20 63 39 98 55c21 9 42 18 65 18c19 0 41 -3 55 -15c17 -14 19 -34 22 -54c2 -20 2 -103 2 -155c0 -59 0 -143 33 -170c19 -16 48 -23 75 -23c25 0 49 7 71 15c31 12 56 23 86 38c2 108 4 277 0 331l93 35l15 -11 c-9 -93 -14 -186 -14 -278c0 -36 0 -86 19 -102c11 -9 25 -14 40 -14s31 6 44 12c22 8 40 18 60 30'], + 0xE354: [469,11,788,72,656,'591 460c4 2 8 2 10 2c3 0 8 0 11 -3c22 -14 44 -43 44 -97c0 -55 -32 -104 -66 -150c-54 -72 -120 -135 -191 -195c-13 -11 -30 -25 -36 -28h-28l-83 258c-16 51 -46 122 -61 144c-7 10 -18 17 -33 17c-26 0 -48 -8 -75 -21l-11 24c27 16 56 31 87 43c21 8 41 15 63 15 c18 0 35 -7 47 -17c20 -17 46 -99 64 -159c18 -58 48 -154 66 -201c3 -9 12 -10 16 -10c6 0 19 14 29 22c36 35 69 73 95 114c19 30 33 61 33 94c0 32 -24 68 -44 100c-1 1 -1 3 -1 5c0 3 2 6 5 8'], + 0xE355: [469,8,1168,81,1035,'907 416c-1 2 -2 4 -2 6c0 3 1 6 3 7l68 35c2 1 5 1 8 1s7 0 9 -3c25 -27 42 -58 42 -93c0 -55 -32 -106 -67 -153c-53 -74 -120 -140 -189 -203c-12 -10 -26 -21 -42 -21c-14 0 -28 12 -32 21c-20 48 -74 223 -109 337c-2 4 -5 10 -11 10c-5 0 -11 -2 -13 -5 c-67 -103 -149 -231 -215 -350l-50 -13l-8 6l-29 224c-17 126 -42 171 -58 183c-7 5 -11 7 -20 7c-28 0 -67 -17 -100 -31l-11 20c32 19 63 36 98 51c20 9 40 17 63 17c22 0 41 -6 55 -19c24 -22 32 -49 38 -77c18 -80 24 -162 35 -243l13 -2c69 103 137 207 200 313l62 26 l15 -3c31 -126 63 -250 116 -368c4 -7 12 -15 22 -15c5 0 14 6 18 10c38 40 77 81 105 127c18 29 32 61 32 94c0 15 -6 30 -12 44c-9 21 -21 41 -34 60'], + 0xE356: [464,12,825,99,711,'603 462l37 -29c2 -1 4 -3 4 -4c0 -3 -2 -4 -3 -5c-67 -39 -144 -104 -207 -165c31 -57 91 -151 129 -178c12 -9 26 -18 44 -18c14 0 28 6 40 11c17 8 30 16 45 27h10l9 -19c-27 -25 -56 -50 -90 -70c-19 -12 -39 -24 -63 -24c-21 0 -37 9 -52 21c-19 14 -32 33 -45 52 c-19 25 -58 87 -84 130h-9c-47 -60 -94 -122 -130 -199l-19 -4l-34 25v8c51 69 112 138 170 202c-35 59 -79 134 -120 169c-11 9 -26 15 -42 15c-25 0 -55 -13 -76 -25l-18 18c28 18 57 34 87 48c18 8 36 16 55 16c20 0 49 -4 65 -19c25 -23 74 -95 109 -151l7 -1 c44 48 114 118 167 169c2 2 4 2 7 2c2 0 5 0 7 -2'], + 0xE357: [468,233,905,77,686,'213 -182l-2 11l53 56h16c25 -38 71 -77 125 -77c44 0 90 14 117 42c33 35 45 87 51 116c7 33 8 66 10 98l-8 5c-40 -21 -82 -41 -126 -57c-32 -10 -64 -20 -99 -20c-30 0 -59 6 -80 24c-42 29 -44 101 -44 141c0 20 1 41 2 61c2 62 7 152 -16 178c-8 10 -23 14 -37 14 c-20 0 -58 -16 -85 -28l-13 19c9 6 59 34 102 51c20 8 42 16 64 16c18 0 39 -4 51 -14c17 -14 25 -35 25 -56c0 -56 -5 -114 -5 -172c4 -93 15 -123 34 -144c17 -19 47 -26 75 -26c26 0 51 4 75 14c31 10 63 26 86 38c5 106 3 216 -7 320l95 38l14 -4 c-7 -86 -7 -174 -7 -260c0 -124 2 -177 -19 -251c-14 -43 -41 -83 -70 -109c-57 -51 -143 -75 -224 -75c-56 0 -120 23 -153 51'], + 0xE358: [462,27,758,111,672,'587 462h7l17 -13c-100 -88 -230 -221 -348 -355l5 -8c118 -10 235 -13 247 -13c28 0 60 10 76 23c21 17 39 35 54 55l27 -12l-49 -80c-12 -21 -27 -41 -51 -53c-19 -10 -43 -14 -66 -14c-13 0 -103 8 -155 13l-140 11c-29 0 -55 -20 -75 -43h-7l-18 19l355 381 c-13 -2 -24 -2 -37 -2c-19 0 -52 6 -79 11c-21 4 -45 8 -65 8c-19 0 -38 -7 -52 -17c-15 -10 -38 -35 -54 -54l-24 13l60 89c8 11 18 25 28 31c14 8 30 10 46 10c29 0 70 -9 104 -16c35 -7 74 -15 106 -15c35 0 62 14 88 31'], + 0xE359: [471,8,593,95,506,'336 392l-8 -210c0 -41 4 -77 14 -95c8 -13 21 -22 39 -22c17 0 35 3 49 9c22 10 41 22 60 36l16 -10v-11c-24 -27 -50 -50 -83 -70c-25 -14 -54 -27 -85 -27c-30 0 -58 7 -77 28c-17 18 -19 40 -19 84l6 221c0 30 -5 56 -13 70c-6 10 -16 15 -29 15 c-27 0 -67 -17 -95 -32l-16 18c29 19 68 42 96 54c22 9 49 21 72 21c17 0 40 -2 55 -18c17 -16 18 -40 18 -61'], + 0xE35A: [468,231,591,96,365,'129 375l-15 18c32 21 65 40 101 56c21 9 44 19 68 19c18 0 37 -3 49 -13c18 -14 22 -34 24 -54c8 -43 9 -210 9 -247c0 -20 0 -160 -15 -195c-15 -38 -43 -71 -75 -100c-40 -35 -105 -68 -160 -90l-19 16c89 44 136 89 153 139c21 62 24 186 24 230c0 98 0 164 -4 201 c-2 20 -10 35 -15 39c-13 14 -20 14 -33 14c-20 0 -62 -20 -92 -33'], + 0xE35B: [472,196,918,169,776,'439 59l56 43l9 -1c5 -15 13 -30 24 -38c12 -10 27 -14 43 -14c30 0 55 9 71 23c22 19 36 44 45 70c11 30 17 74 17 109c0 49 -9 99 -51 134c-20 16 -45 25 -71 25c-23 0 -35 -2 -69 -13c-46 -16 -121 -108 -170 -170c31 -45 62 -95 85 -143c4 -8 7 -16 11 -25zM335 464 l16 -10c-31 -33 -61 -69 -61 -112c0 -18 6 -35 13 -52c5 -9 9 -17 14 -25h10l22 26c33 44 95 122 179 159c31 14 69 22 104 22c34 0 69 -8 93 -28c43 -36 51 -89 51 -138c0 -93 -30 -188 -109 -255c-20 -16 -42 -31 -66 -42c-18 -9 -38 -15 -59 -15c-36 0 -68 15 -92 36 c5 -15 7 -29 7 -44c0 -51 -13 -105 -58 -142c-27 -23 -63 -40 -103 -40c-30 0 -59 8 -80 25c-34 28 -47 67 -47 106c0 35 13 69 25 101c18 46 66 129 78 148c-11 17 -20 31 -29 49c-10 24 -20 48 -20 73c0 66 50 121 112 158zM290 144c-36 -52 -61 -124 -61 -174 c0 -37 8 -77 41 -102c12 -10 27 -16 45 -16c22 0 45 5 60 18c24 21 33 51 33 79c0 27 -13 53 -27 77c-22 40 -51 80 -80 118h-11'], + 0xE35C: [347,-178,855,123,733,'434 291l89 -46c26 -14 56 -26 89 -26c23 0 38 7 53 17c17 10 31 32 43 50l25 -11c-13 -26 -33 -52 -57 -70c-18 -14 -49 -27 -77 -27c-46 0 -88 16 -126 36l-119 63c-29 15 -61 28 -96 28c-23 0 -43 -5 -60 -18c-15 -11 -34 -37 -49 -59l-26 12c15 24 33 49 51 66 c15 15 33 28 56 34c13 4 28 7 42 7c23 0 46 -6 67 -14c34 -11 65 -26 95 -42'], + 0xE35D: [409,-206,1014,127,851,'851 409v-203h-48v163h-676v40h724'], + 0xE35E: [689,-1,1122,191,924,'487 91l-17 -90h-259l30 90c2 52 4 105 15 147c9 37 68 106 121 150c-58 38 -163 108 -186 145v156h37c7 -66 57 -119 117 -160c96 -65 303 -203 304 -203v44c0 67 38 137 96 190c-29 0 -86 0 -98 11c-14 11 -20 14 -20 29v89h29c4 -11 10 -22 19 -30c11 -9 34 -9 52 -9 h144c28 0 53 -16 53 -39v-72l-18 -5c-13 14 -31 27 -53 27h-58c-27 -16 -64 -76 -72 -93c-16 -41 -19 -66 -19 -112c0 -28 23 -79 47 -99c46 -38 121 -83 173 -114l-25 -142h-21c-54 73 -167 161 -254 220l-220 148c-23 -17 -58 -61 -77 -86c-15 -21 -21 -42 -21 -73 c0 -50 45 -119 79 -119h102'], + 0xE35F: [711,17,1212,116,1077,'757 225h-245c-19 -42 -39 -76 -67 -112c-21 -27 -52 -52 -80 -74c-35 -28 -78 -50 -129 -50c-34 0 -69 8 -94 27c-19 15 -26 37 -26 59c0 16 9 32 24 43c14 10 32 14 50 14c16 0 29 -6 40 -14c9 -7 16 -22 17 -34c1 -11 7 -26 15 -32c8 -5 17 -7 27 -7c14 0 26 6 35 13 c43 34 85 153 112 236c23 70 50 147 84 213c23 46 48 83 92 118c65 51 152 65 243 78c23 3 42 5 83 8l5 -29c-28 -6 -44 -14 -44 -29v-446c0 -52 0 -130 25 -150c12 -8 27 -12 42 -12c22 0 36 10 51 21c15 12 26 24 39 37l21 -16c-17 -20 -35 -41 -58 -59 c-33 -26 -76 -45 -123 -45c-31 0 -61 9 -82 27c-26 20 -36 49 -42 77c-13 45 -15 92 -15 138zM757 275v370l-9 5c-26 -6 -51 -18 -70 -32c-34 -27 -51 -63 -66 -99c-27 -62 -65 -166 -81 -244h226'], + 0xE360: [727,1,1186,148,1002,'574 727l15 -8v-25c71 0 144 -3 213 -16c45 -8 94 -20 126 -48c24 -22 34 -49 34 -78c0 -40 -16 -72 -54 -101c-28 -23 -61 -44 -99 -56l2 -6c52 0 103 -15 140 -43c32 -26 51 -63 51 -99c0 -44 -28 -87 -63 -122c-32 -31 -98 -72 -136 -90c-32 -16 -95 -36 -156 -36 h-470l49 88c35 0 79 3 112 13c25 7 53 24 68 40c24 28 30 56 37 88c10 51 12 102 12 154v269c-47 -6 -93 -19 -131 -43c-29 -18 -53 -43 -53 -73c0 -7 1 -15 2 -22c4 -13 6 -26 6 -39s-6 -25 -17 -33c-13 -11 -34 -15 -53 -15c-15 0 -29 3 -40 11c-17 14 -21 33 -21 51 c0 43 32 79 69 109c68 53 150 80 244 93zM400 87h290c41 0 119 0 148 23c30 22 37 60 37 91c0 35 -11 78 -43 103c-34 27 -81 45 -129 49h-97c-9 -1 -24 -3 -25 -7c-9 -40 -23 -94 -42 -124c-10 -16 -37 -46 -54 -60c-26 -23 -58 -50 -90 -67zM588 661v-258c0 -6 7 -9 13 -9 c32 0 69 0 96 4c41 6 79 18 109 42c26 20 31 43 31 71c0 35 -7 73 -39 98c-24 19 -55 30 -86 38c-41 10 -83 14 -124 14'], + 0xE361: [709,15,978,172,833,'743 165l76 -62c-10 -14 -21 -29 -37 -41c-69 -55 -167 -77 -265 -77c-82 0 -167 15 -226 62c-41 32 -70 74 -88 117c-22 52 -31 107 -31 162c0 107 30 218 130 295c79 62 189 88 299 88c68 0 138 -8 187 -46c35 -27 45 -65 45 -103c0 -47 -19 -94 -62 -127 c-45 -35 -108 -50 -171 -50c-54 0 -112 5 -151 36c-20 14 -33 33 -33 53c0 19 8 37 25 50c11 10 28 13 45 13c14 0 30 -2 42 -10c10 -8 18 -18 18 -29v-21c-3 -10 -6 -30 -6 -31c0 -5 1 -10 6 -13c14 -12 35 -16 55 -16c28 0 52 15 72 30c35 28 47 67 47 106 c0 32 -8 66 -39 89c-30 24 -74 33 -118 33c-53 0 -107 -14 -144 -43c-41 -32 -64 -74 -81 -117c-22 -56 -28 -114 -28 -172c0 -53 7 -106 28 -156c17 -40 42 -79 81 -110c41 -32 97 -50 155 -50c38 0 77 11 105 33c33 26 47 62 47 99'], + 0xE362: [727,1,1269,137,1101,'577 719v-26c90 0 179 -5 265 -21c57 -11 116 -26 159 -60c75 -58 100 -142 100 -224c0 -90 -35 -180 -118 -244c-53 -41 -112 -77 -175 -108c-48 -23 -104 -37 -161 -37h-470l49 88c35 0 79 3 112 13c25 7 53 24 68 40c24 28 32 52 37 88c4 27 4 33 4 71v352 c-47 -6 -97 -19 -134 -43c-29 -18 -53 -43 -53 -73c0 -7 1 -15 2 -22c3 -13 6 -26 6 -39s-6 -25 -17 -33c-14 -11 -34 -15 -53 -15c-15 0 -30 3 -40 11c-17 14 -21 33 -21 51c0 43 31 79 69 109c67 53 150 80 244 93l112 37zM400 87h337c62 0 124 18 168 52 c25 20 35 46 42 72c12 40 16 81 16 121c0 51 -8 102 -29 150c-17 40 -43 78 -80 108c-30 24 -71 38 -112 48c-53 12 -108 17 -165 17v-253c0 -48 -3 -97 -17 -144c-9 -26 -32 -60 -75 -96c-26 -23 -58 -50 -90 -67'], + 0xE363: [708,12,986,174,815,'416 380l1 1c-37 8 -77 21 -106 44c-35 28 -53 66 -53 105c0 43 16 86 55 117c62 48 150 61 236 61c34 0 69 -2 102 -10c26 -6 46 -14 64 -28c23 -17 33 -40 33 -64c0 -21 -6 -42 -22 -58c-12 -12 -27 -20 -47 -20c-18 0 -36 6 -49 16c-9 7 -13 16 -13 26s3 19 9 28 s9 20 9 30c0 13 -6 24 -17 33c-18 14 -44 16 -69 16c-38 0 -74 -13 -102 -34c-37 -29 -54 -70 -54 -111c0 -36 16 -71 49 -97c21 -16 51 -23 80 -29c44 -8 89 -10 134 -10v-29c-58 0 -118 -3 -177 -14c-38 -7 -78 -18 -107 -40c-41 -32 -55 -78 -55 -122 c0 -47 24 -91 66 -124c37 -29 88 -41 139 -41s98 17 133 45c32 24 39 60 43 94c1 0 17 6 26 9l91 -68c-9 -16 -22 -31 -38 -43c-69 -54 -167 -75 -263 -75c-55 0 -112 3 -165 14c-37 7 -75 17 -102 38c-41 33 -73 76 -73 124c0 55 20 111 71 151c48 36 110 57 171 65'], + 0xE364: [731,14,1063,140,1011,'673 682l203 -34c11 -2 26 -4 35 -4c13 0 27 4 36 13l42 45l22 -16l-54 -71c-12 -15 -25 -29 -41 -39c-10 -7 -20 -11 -34 -11c-19 0 -39 5 -58 10c-50 14 -149 40 -151 40l-3 -224h194l-43 -50h-151c0 -52 -3 -103 -21 -153c-15 -38 -35 -75 -72 -103 c-36 -28 -80 -51 -125 -70c-44 -17 -92 -29 -141 -29c-51 0 -105 8 -142 37c-19 14 -29 34 -29 55c0 17 9 33 25 44c13 11 32 15 51 15c17 0 34 -6 46 -15c11 -10 23 -29 28 -43c5 -13 15 -31 21 -36c12 -10 30 -13 47 -13c46 0 86 21 119 46c23 18 37 45 45 70 c15 48 19 103 19 195l-202 -1l37 51h165l7 251c-29 8 -66 13 -88 13c-45 0 -92 -6 -124 -32c-28 -21 -56 -50 -56 -81c0 -5 2 -24 7 -34c4 -9 8 -19 8 -29c0 -17 -10 -31 -25 -43c-12 -9 -28 -11 -45 -11c-15 0 -27 4 -38 13c-18 13 -22 33 -22 52c0 56 39 101 89 140 c65 50 148 63 237 63c24 0 48 -1 73 -4l96 42l13 -6v-43'], + 0xE365: [705,138,981,164,784,'665 377l116 28v-205c0 -51 -5 -92 -24 -141c-15 -38 -41 -79 -76 -108c-67 -57 -168 -89 -268 -89c-46 0 -91 2 -136 11c-31 6 -59 16 -82 34c-21 16 -31 39 -31 62c0 17 8 35 22 47c14 11 31 16 50 16s37 -3 50 -15c12 -11 19 -26 21 -40c4 -22 13 -44 32 -60 c20 -16 56 -16 86 -16c61 0 118 24 161 58c25 19 42 54 52 80c14 34 20 75 20 110l-6 121c-56 -30 -111 -43 -177 -43c-75 0 -163 16 -216 58c-58 45 -84 108 -84 172c0 63 28 124 86 169c77 60 188 79 294 79c39 0 79 -3 117 -11c27 -6 51 -13 71 -29c25 -20 41 -46 41 -75 c0 -26 -8 -54 -28 -72c-26 -24 -63 -43 -105 -43c-22 0 -58 5 -83 9l4 22c16 0 32 1 49 4c12 2 22 6 31 12c18 15 24 37 24 57c0 21 -5 44 -24 59c-32 24 -78 32 -122 32c-52 0 -105 -15 -142 -44c-55 -43 -71 -104 -71 -163c0 -61 25 -122 81 -166c29 -22 69 -33 109 -33 c43 0 85 10 116 34c19 21 33 44 42 79'], + 0xE366: [699,12,1338,138,1224,'643 694l-1 -22l-46 -20l-1 -264h249c7 97 55 187 142 255c43 34 95 56 156 56c22 0 44 -1 59 -13c12 -9 23 -23 23 -36s-3 -25 -13 -37s-28 -19 -46 -19c-12 0 -20 2 -33 10c-7 4 -15 12 -17 19c-3 7 -9 12 -14 16c-4 3 -13 5 -22 5c-13 0 -26 -5 -36 -12 c-18 -15 -33 -33 -42 -52c-11 -27 -18 -56 -23 -84c-7 -67 -10 -134 -10 -201c0 -51 3 -98 12 -149c5 -30 20 -66 47 -87c13 -9 31 -14 48 -14c18 0 40 13 57 26l41 39l22 -18l-40 -40c-44 -42 -100 -64 -165 -64c-33 0 -62 14 -86 33c-14 10 -27 26 -34 41 c-10 21 -19 43 -24 65c-8 40 -12 81 -12 121c0 31 1 60 3 91h-242c0 -99 -30 -200 -120 -271c-58 -45 -132 -79 -214 -79c-36 0 -71 9 -97 29c-15 11 -26 26 -26 43c0 13 3 28 16 37c13 11 30 17 48 17c13 0 25 -2 34 -9c10 -8 18 -27 24 -42c3 -7 12 -14 20 -20 c9 -7 24 -11 37 -11c28 0 50 12 69 27c14 11 23 25 31 40c10 21 17 43 22 65c16 65 19 132 19 198v290c-34 0 -69 -2 -102 -9c-25 -5 -50 -14 -68 -29c-19 -14 -34 -35 -34 -57c0 -14 7 -28 14 -42c8 -14 16 -28 16 -44s-7 -32 -22 -43c-12 -10 -30 -17 -50 -17 c-14 0 -28 5 -38 13c-23 18 -29 53 -29 78c0 45 28 87 68 119c34 27 80 44 127 56c60 14 121 20 183 20c23 0 87 -2 120 -4'], + 0xE367: [703,18,846,137,677,'634 658v-196c0 -57 -2 -114 -10 -171c-6 -40 -15 -80 -32 -118c-19 -41 -43 -82 -82 -113c-58 -45 -132 -78 -214 -78c-45 0 -90 12 -122 37c-20 16 -37 35 -37 58c0 16 8 32 22 44c14 10 32 15 51 15c26 0 45 -14 54 -24c5 -5 16 -25 19 -40c2 -10 13 -25 17 -28 c14 -11 34 -16 55 -16c27 0 51 11 70 26c28 22 40 54 50 85c13 48 16 97 16 145v374c-33 0 -68 -2 -101 -9c-25 -5 -50 -14 -68 -29c-19 -14 -34 -35 -34 -57c0 -14 7 -28 14 -42c8 -14 15 -28 15 -44s-6 -32 -21 -43c-12 -10 -31 -17 -50 -17c-14 0 -28 5 -38 13 c-23 18 -30 53 -30 78c0 45 29 87 69 119c34 27 79 44 127 56c60 14 121 20 183 20c23 0 86 -1 120 -4l-7 -24'], + 0xE368: [701,137,855,140,715,'715 698l-3 -16l-69 -33c-1 -123 -2 -369 -2 -370c0 -69 -6 -140 -29 -207c-14 -47 -36 -94 -80 -128c-61 -49 -143 -81 -232 -81c-41 0 -85 6 -115 30c-33 25 -45 61 -45 96c0 43 18 85 43 123c33 48 76 90 125 128c65 52 139 83 191 100v311c-51 -8 -101 -22 -139 -52 c-23 -19 -45 -44 -45 -71c0 -8 0 -16 2 -24c3 -9 5 -24 5 -33c0 -13 -10 -33 -23 -42c-15 -12 -29 -20 -52 -20c-13 0 -30 10 -39 17c-16 13 -21 32 -21 50c0 46 33 83 74 115c102 79 244 110 385 110c23 0 45 -1 69 -3zM499 304c-36 -6 -113 -52 -143 -77 c-77 -60 -120 -142 -120 -227c0 -30 13 -59 40 -80c17 -13 40 -18 64 -18c15 0 28 5 42 11c17 8 33 18 47 29c31 25 43 58 52 92c15 51 18 104 18 157v113'], + 0xE369: [709,9,1262,136,1125,'597 656v-281h17c93 90 281 270 281 271c22 18 47 34 74 47c19 8 39 16 61 16c26 0 49 -6 67 -21c15 -11 23 -28 23 -44c0 -20 -6 -39 -24 -53c-12 -11 -34 -21 -50 -21s-31 2 -42 10c-5 5 -11 11 -13 18c-2 11 -11 24 -28 24c-24 0 -44 -13 -61 -26 c-20 -15 -43 -37 -53 -47l-133 -137l99 -152c37 -58 79 -114 137 -160c16 -13 39 -18 62 -18c16 0 30 7 41 16c20 15 35 31 49 48l21 -16c-24 -39 -50 -80 -87 -108c-23 -19 -56 -31 -90 -31c-42 0 -83 13 -113 36c-29 23 -52 51 -71 80c-4 1 -103 150 -150 225h-17 c0 -98 -43 -194 -132 -264c-55 -43 -124 -76 -203 -76c-36 0 -73 7 -100 27c-15 12 -26 28 -26 45c0 14 2 27 14 37c16 12 28 17 49 17c11 0 28 -3 36 -9c10 -8 21 -23 28 -36c4 -9 14 -23 18 -27c12 -9 25 -11 41 -11c11 0 24 5 33 9c13 7 26 15 37 24c31 24 44 57 54 90 c15 50 19 102 19 153v345c-33 0 -68 -2 -101 -9c-25 -5 -50 -14 -68 -29c-19 -14 -34 -35 -34 -57c0 -14 7 -28 14 -42c8 -14 15 -28 15 -44s-6 -32 -21 -43c-12 -10 -31 -17 -50 -17c-14 0 -28 5 -38 13c-23 18 -30 53 -30 78c0 45 29 87 69 119c34 27 79 44 127 56 c60 14 121 20 183 20c23 0 86 -1 120 -4l-1 -22'], + 0xE36A: [710,12,1123,134,942,'352 411c7 45 23 98 39 135c18 41 26 57 56 86c50 46 128 78 240 78c48 0 92 -7 123 -31c19 -16 31 -33 31 -55s-8 -43 -27 -58c-13 -10 -31 -17 -48 -17c-18 0 -38 3 -51 13c-15 11 -19 33 -19 51c0 16 -6 33 -18 43s-29 14 -47 14c-22 0 -47 -8 -63 -22 c-20 -16 -29 -31 -37 -53c-16 -39 -24 -77 -32 -116c-9 -47 -21 -93 -40 -139c-11 -28 -34 -54 -60 -77c-26 -24 -69 -51 -106 -71l1 -9c101 0 151 -20 221 -48c53 -21 157 -46 214 -46c44 0 89 7 121 32c14 11 27 26 34 41c10 21 15 42 19 64c4 17 7 50 7 51l32 1v-69 c0 -60 -26 -120 -81 -164c-43 -33 -97 -57 -158 -57c-33 0 -68 3 -100 11c-53 14 -108 35 -154 57c-33 15 -71 28 -104 37c-24 6 -47 9 -72 9c-26 0 -50 -5 -69 -22c-20 -20 -31 -52 -39 -80l-31 13c3 46 13 94 51 130c14 13 31 25 48 37c11 9 22 18 32 28 c20 18 36 42 46 65c15 29 30 75 41 138'], + 0xE36B: [710,17,1465,136,1327,'757 23l-104 -35c-11 119 -50 236 -94 351c-13 36 -29 72 -48 106c-16 25 -33 50 -55 72v-223c0 -53 -6 -106 -26 -157c-14 -38 -36 -76 -72 -105c-34 -26 -78 -45 -125 -45c-26 0 -53 7 -71 21c-16 13 -25 30 -25 47c0 13 5 26 17 35c13 10 30 17 49 17 c16 0 30 -3 40 -12c6 -4 11 -17 15 -26c4 -11 13 -24 30 -24s35 5 48 14c26 21 39 49 48 77c13 41 17 83 17 125v307c-11 11 -23 21 -35 31c-28 22 -63 40 -103 40c-19 0 -38 -6 -52 -16c-28 -23 -43 -54 -48 -85l-27 4c0 48 18 97 62 132c37 30 92 36 144 36 c57 0 109 -21 148 -52c42 -32 74 -71 101 -112c35 -52 62 -108 86 -164c22 -52 43 -110 57 -167l9 -3c29 79 68 166 117 239c41 63 90 122 154 172c61 47 137 84 223 84c29 0 52 -5 71 -20c9 -7 16 -20 16 -31s-3 -29 -14 -37c-13 -10 -24 -13 -42 -13c-12 0 -22 4 -30 10 s-14 13 -17 22c-2 12 -11 26 -29 26c-10 0 -17 -4 -24 -10c-28 -23 -31 -123 -31 -189c0 -101 1 -203 11 -304c2 -25 6 -50 14 -75c4 -16 9 -29 22 -40c8 -6 19 -8 31 -8c15 0 35 12 48 22l43 38l21 -16l-54 -54c-27 -25 -76 -45 -122 -45c-32 0 -65 6 -89 25 c-21 17 -33 50 -38 74c-10 42 -14 79 -15 121c-3 74 -5 150 -5 224c0 49 1 98 4 144c-71 -67 -121 -146 -158 -229c-46 -99 -73 -203 -87 -307'], + 0xE36C: [712,13,1197,133,1110,'715 388l173 -228v350c0 34 3 69 14 102c6 23 17 46 38 63c27 21 62 37 102 37c20 0 34 -5 48 -16c11 -8 20 -20 20 -32s-3 -30 -15 -39c-14 -11 -28 -14 -49 -14c-18 0 -33 9 -37 23c-2 6 -6 18 -7 18c-4 4 -10 9 -18 9c-6 0 -11 -1 -15 -5c-17 -12 -22 -31 -24 -48 c-6 -26 -7 -86 -7 -128v-453l-89 -40c-71 102 -141 204 -220 302c-62 77 -127 158 -195 233v-114c0 -83 -9 -164 -26 -246c-6 -29 -15 -57 -28 -84c-12 -20 -26 -39 -46 -53c-27 -22 -62 -36 -101 -36c-29 0 -60 6 -78 25c-8 8 -15 20 -15 32c0 16 1 33 16 45 c12 10 29 17 46 17c16 0 31 -4 42 -12c5 -4 13 -14 17 -22c5 -11 16 -22 32 -22c13 0 26 5 35 13c27 24 37 63 43 97c9 60 10 159 10 239v170c-33 28 -74 54 -123 54c-21 0 -41 -3 -56 -15c-26 -20 -31 -42 -37 -69l-32 -6c0 25 6 51 15 76c7 19 18 37 36 51 c39 30 90 40 145 40s106 -21 144 -51c42 -33 79 -68 113 -107c48 -54 89 -103 129 -156'], + 0xE36D: [707,20,1112,156,939,'365 670l18 -11c-36 -27 -55 -71 -69 -112c-18 -61 -26 -123 -26 -186c0 -59 10 -118 32 -174c17 -44 42 -86 82 -118c37 -29 86 -46 138 -46c61 0 122 13 165 46c37 29 58 69 68 109c13 54 24 109 24 165c0 59 -4 121 -20 176c-11 39 -35 79 -71 108 c-26 20 -59 34 -96 34s-72 -12 -99 -32c-17 -13 -27 -31 -27 -50s15 -35 35 -47c13 -8 26 -17 35 -28c6 -7 12 -23 12 -32c0 -17 -6 -29 -20 -41c-14 -10 -32 -15 -51 -15s-37 7 -51 18c-27 21 -35 52 -35 82c0 48 19 96 63 131c53 41 128 60 203 60c59 0 117 -18 159 -51 c39 -31 68 -71 82 -113c21 -55 23 -113 23 -170c0 -60 -12 -119 -32 -178c-16 -47 -52 -87 -91 -123c-73 -66 -186 -92 -295 -92c-94 0 -185 26 -252 78c-42 32 -67 74 -84 117c-21 55 -29 112 -29 169c0 103 41 208 129 278c22 18 51 37 80 48'], + 0xE36E: [726,13,1052,138,910,'578 690c58 0 118 -5 173 -17c42 -10 84 -24 114 -48c39 -30 45 -74 45 -114c0 -56 -26 -111 -77 -151c-67 -52 -162 -73 -255 -76c-11 -86 -39 -173 -117 -235c-51 -39 -119 -62 -190 -62c-38 0 -77 8 -104 30c-16 12 -24 29 -24 47c0 11 8 28 19 36c16 13 31 20 55 20 c28 0 50 -26 57 -48c5 -11 14 -22 25 -31c8 -7 18 -12 30 -12c22 0 42 11 57 24c29 22 41 54 49 85c14 50 14 100 14 151v361c-48 -6 -98 -19 -135 -43c-29 -18 -53 -43 -53 -73c0 -7 1 -15 2 -22c4 -13 6 -26 6 -39s-6 -25 -17 -33c-14 -11 -34 -15 -53 -15 c-15 0 -30 3 -40 11c-17 14 -21 33 -21 51c0 43 31 79 69 109c67 53 150 80 244 93l112 37l15 -8v-28zM578 650v-334c51 5 103 19 141 47c41 34 52 82 52 128c0 43 -14 88 -54 119c-36 28 -89 40 -139 40'], + 0xE36F: [705,42,1074,152,924,'902 184l22 -7c-22 -53 -49 -107 -101 -148c-30 -23 -68 -42 -112 -42c-47 0 -127 14 -189 24c-63 11 -127 21 -191 21c-28 0 -58 -6 -77 -22c-19 -15 -33 -33 -44 -52l-27 12c20 49 50 95 96 132c27 21 68 29 105 29c52 0 97 -5 154 -14c47 6 89 21 123 48 c35 27 55 69 69 105c17 50 24 103 24 155c0 42 -6 85 -22 125c-12 32 -29 62 -59 85c-34 26 -81 39 -128 39c-61 0 -124 -14 -167 -48c-30 -24 -49 -54 -63 -85c-16 -39 -21 -80 -21 -121c0 -37 2 -74 14 -110c7 -24 18 -49 42 -67c13 -10 30 -17 47 -22 c23 -7 46 -10 72 -13l-6 -24c-41 0 -83 5 -126 17c-34 9 -67 22 -93 42c-61 48 -92 114 -92 181c0 73 28 146 94 198c82 65 200 83 314 83c49 0 96 -4 142 -15c36 -9 71 -22 98 -44c72 -57 98 -138 98 -217c0 -87 -22 -177 -103 -240c-49 -39 -111 -64 -176 -79l1 -8 c33 -7 80 -17 123 -17c42 0 86 18 116 41c20 16 31 36 43 58'], + 0xE370: [732,12,1132,138,1056,'604 694c64 0 127 -4 188 -16c42 -8 84 -20 115 -44c32 -25 42 -61 42 -96c0 -47 -15 -96 -59 -130c-35 -27 -82 -54 -119 -70c24 -55 50 -106 84 -159c20 -30 40 -61 72 -83c9 -6 19 -12 30 -12c16 0 32 7 42 16c13 10 28 26 33 33l24 -16c-21 -31 -45 -63 -76 -88 c-26 -20 -56 -41 -94 -41c-23 0 -45 4 -62 17c-25 20 -41 47 -55 73l-117 223l-48 7c-12 -88 -49 -176 -131 -239c-56 -44 -126 -79 -206 -79c-38 0 -75 9 -102 30c-16 12 -27 29 -27 47c0 15 4 29 18 39c11 9 25 14 41 14c18 0 37 -2 49 -12c10 -8 18 -18 22 -29 c3 -12 8 -24 19 -33c9 -7 24 -9 37 -9c22 0 41 8 56 19c36 28 56 65 70 102c18 50 25 102 25 154v344c-48 -6 -98 -19 -135 -43c-29 -18 -53 -43 -53 -73c0 -7 1 -15 2 -22c4 -13 6 -26 6 -39s-6 -25 -17 -33c-14 -11 -34 -15 -53 -15c-15 0 -30 3 -40 11 c-17 14 -21 33 -21 51c0 43 31 79 69 109c67 53 150 80 244 93l112 37l15 -8v-30zM604 656v-323c55 0 103 18 142 47c45 35 53 91 53 139c0 38 -10 77 -45 104c-16 13 -38 20 -59 25c-30 6 -60 8 -91 8'], + 0xE371: [715,18,885,113,731,'501 515l5 18c22 1 42 4 56 17c16 12 22 32 22 49s-4 35 -20 47c-26 20 -61 30 -99 30c-37 0 -76 -5 -103 -26c-24 -19 -43 -44 -43 -71c0 -34 23 -65 54 -89s68 -44 106 -61c46 -19 122 -52 138 -60c18 -8 35 -17 51 -28c45 -36 63 -87 63 -137c0 -57 -36 -110 -87 -150 c-33 -26 -73 -42 -116 -53c-53 -14 -108 -19 -163 -19c-78 0 -156 19 -211 63c-32 25 -41 61 -41 96c0 42 16 84 54 115c40 31 98 37 154 37c30 0 61 -6 82 -23c16 -12 24 -24 24 -42c0 -9 -5 -29 -14 -36c-13 -11 -30 -16 -50 -16c-15 0 -25 5 -36 13c-3 3 -11 15 -11 23 c-1 11 -4 26 -12 32s-18 11 -30 11c-13 0 -25 -6 -35 -14c-22 -17 -30 -43 -30 -68c0 -39 14 -80 51 -108c36 -29 88 -42 140 -42c56 0 113 16 154 48c30 24 46 57 46 91c0 39 -19 78 -55 106c-39 30 -87 51 -135 70c-56 23 -108 51 -152 86c-43 33 -52 81 -52 126 c0 41 13 83 52 112c24 20 58 31 92 39c47 10 95 14 143 14c64 0 131 -13 177 -49c20 -16 27 -39 27 -61c0 -21 -10 -40 -29 -55c-30 -23 -69 -39 -112 -39c-16 0 -39 2 -55 4'], + 0xE372: [697,11,949,134,935,'908 697l27 -13l-21 -31c-12 -18 -37 -50 -68 -73c-13 -11 -36 -25 -52 -31c-12 -5 -26 -8 -39 -8c-15 0 -88 14 -121 22v-255c0 -94 -42 -186 -127 -253c-15 -12 -96 -66 -211 -66c-37 0 -70 8 -97 29c-19 15 -26 37 -26 57c0 14 8 28 19 37c15 11 35 16 54 16 c14 0 33 -5 44 -16c7 -7 15 -20 20 -34c3 -11 10 -26 15 -31c12 -8 26 -10 41 -10c26 0 50 7 68 22c12 9 34 35 39 48c26 56 37 102 37 161v319l-15 5c-59 22 -121 41 -187 41c-23 0 -47 -5 -64 -18c-15 -12 -24 -27 -24 -43c0 -14 12 -26 23 -36c19 -17 36 -33 36 -53 c0 -15 -8 -30 -21 -41c-14 -10 -31 -17 -49 -17c-17 0 -34 5 -46 14c-23 18 -29 44 -29 69c0 45 23 87 64 118c58 47 139 71 222 71c62 0 144 -18 214 -36c54 -13 108 -26 165 -26c36 0 63 16 87 37'], + 0xE373: [709,13,1112,115,1006,'983 121l23 -17c-15 -19 -28 -36 -45 -55c-4 -6 -13 -14 -19 -19c-30 -23 -69 -39 -112 -39c-30 0 -64 5 -87 23c-26 22 -49 55 -60 90c-41 -36 -88 -66 -140 -88c-40 -16 -84 -29 -131 -29s-96 11 -130 38c-43 34 -52 84 -52 131c0 76 20 157 38 234c10 46 18 92 18 138 c0 16 -1 31 -7 46c-3 10 -8 21 -18 28c-11 9 -25 16 -41 16c-17 0 -33 -5 -44 -14c-22 -17 -24 -35 -24 -58c0 -13 5 -36 8 -50l-29 -9c-8 23 -16 46 -16 70c0 43 13 79 53 110c27 22 68 32 106 32s74 -12 101 -33c16 -13 27 -27 33 -44c9 -22 11 -39 11 -63 c0 -61 -16 -135 -31 -202c-12 -51 -24 -110 -24 -154c0 -26 2 -52 12 -78c7 -19 17 -37 35 -51c21 -16 48 -25 76 -25c25 0 49 7 70 17c28 12 53 28 77 46c8 7 28 27 38 39c0 156 12 311 33 466c67 33 136 63 206 92l30 -14c-16 -8 -36 -23 -52 -36c-14 -12 -24 -28 -30 -43 c-12 -23 -21 -47 -25 -72c-19 -86 -25 -173 -25 -261c0 -47 0 -95 11 -141c8 -29 20 -58 45 -79c8 -6 20 -9 31 -9c17 0 27 6 41 17c11 8 34 34 46 50'], + 0xE374: [702,16,1058,136,912,'552 118l13 3l116 155c34 41 67 91 88 137c17 37 24 68 24 107c0 29 -10 59 -36 79c-18 14 -35 21 -60 21c-17 0 -38 -7 -51 -15c-17 -10 -34 -31 -44 -46l-21 11c11 35 29 65 60 89c34 26 79 41 126 41c41 0 82 -9 110 -32c25 -19 35 -54 35 -82c0 -43 -18 -77 -42 -118 c-39 -68 -85 -130 -137 -196c-65 -83 -155 -197 -177 -255l-97 -33h-15c-20 118 -43 250 -69 350c-16 63 -38 145 -54 189c-10 27 -23 55 -49 75c-10 8 -22 15 -37 15c-14 0 -26 -5 -36 -12c-22 -17 -32 -46 -38 -70l-25 5c7 58 23 106 71 144c22 17 54 22 86 22 c27 0 55 -8 74 -24c31 -24 47 -55 61 -87c22 -49 41 -114 52 -165'], + 0xE375: [710,8,1474,136,1327,'542 146l111 194c61 102 85 213 102 324l90 39l14 -5c0 -126 35 -250 107 -362c36 -56 72 -113 95 -172c42 65 81 128 117 195c23 42 36 90 36 135s-10 92 -51 124c-14 11 -35 17 -56 17c-27 0 -49 -13 -69 -27l-21 16c10 11 27 28 41 39c38 30 82 47 137 47 c32 0 63 -8 85 -25c39 -31 47 -75 47 -117c0 -38 -19 -75 -37 -110c-29 -60 -65 -119 -104 -175c-56 -83 -104 -167 -143 -255l-84 -31l-10 3c-11 105 -50 207 -105 304c-28 50 -63 128 -75 170c-61 -129 -187 -333 -243 -458l-101 -24l-13 11l-2 132c-2 107 -7 212 -28 306 c-8 32 -18 64 -35 97c-11 23 -31 46 -53 63c-13 10 -29 15 -45 15c-19 0 -36 -7 -48 -17c-21 -16 -33 -47 -40 -69l-25 5c0 50 19 98 64 133c28 23 67 36 107 36c39 0 76 -12 104 -33c45 -36 66 -86 82 -135c23 -75 32 -189 35 -266l4 -127'], + 0xE376: [712,11,1126,136,980,'933 169l31 -4c-14 -50 -33 -99 -78 -135c-33 -26 -77 -39 -123 -39c-37 0 -75 5 -101 26c-30 24 -52 55 -68 87c-21 41 -40 99 -48 144c-20 -46 -46 -97 -75 -137c-20 -26 -41 -51 -68 -72c-38 -31 -90 -50 -145 -50c-34 0 -67 9 -91 27c-18 14 -28 34 -28 54 c0 17 12 31 27 43c10 9 25 14 40 14c17 0 33 -2 45 -12c14 -11 18 -30 21 -47c3 -14 10 -33 32 -33c26 0 48 11 67 25c36 29 63 64 87 101c30 48 52 99 71 151c-12 73 -25 145 -51 216c-10 25 -20 49 -35 73c-11 17 -23 33 -40 46c-19 15 -46 23 -73 23 c-15 0 -28 -5 -40 -14c-12 -10 -19 -24 -19 -38c0 -9 0 -18 1 -27c2 -11 7 -21 7 -32c0 -12 -8 -24 -19 -33c-15 -11 -33 -22 -54 -22s-38 10 -51 20c-15 12 -19 28 -19 44c0 33 24 62 54 85c51 40 123 59 195 59c58 0 117 -11 158 -43c21 -16 33 -38 45 -59 c18 -33 36 -83 47 -121c28 54 73 128 125 169c32 24 72 44 117 44c28 0 59 -2 79 -18c17 -13 24 -32 24 -50s-7 -35 -23 -48c-11 -8 -25 -15 -40 -15c-1 0 -28 0 -41 11c-9 7 -14 17 -16 28c-1 9 -4 18 -11 24s-17 8 -26 8c-13 0 -25 -5 -35 -12c-31 -24 -51 -51 -69 -81 c-30 -48 -51 -92 -72 -143c11 -70 25 -139 51 -206c17 -42 36 -86 77 -117c14 -11 34 -14 53 -14s39 5 52 16c30 23 43 53 53 84'], + 0xE377: [709,135,978,100,782,'647 655l119 49l16 -13l-11 -383s-8 -144 -31 -214c-18 -56 -50 -106 -101 -145c-66 -53 -155 -84 -250 -84c-40 0 -82 4 -111 27c-23 17 -28 43 -28 68c0 35 14 69 35 100c26 39 61 73 100 104c73 57 163 99 256 134l2 102c-44 -28 -92 -55 -138 -80 c-43 -23 -90 -43 -142 -43c-40 0 -77 13 -104 35c-15 11 -18 28 -21 44c-3 27 -3 75 -3 113v103c0 11 -6 27 -15 35c-6 5 -14 9 -22 9c-21 0 -54 -29 -76 -51l-22 15c23 32 49 69 76 90c26 21 59 39 97 39c24 0 48 -7 65 -20c16 -13 19 -31 21 -48c5 -27 5 -81 5 -122 c0 -57 0 -140 31 -164c11 -9 26 -13 41 -13c32 1 60 14 85 28c43 24 85 52 122 80c0 68 4 137 4 205zM641 261c-65 -25 -125 -59 -176 -99c-56 -44 -103 -99 -103 -163c0 -14 0 -29 4 -43c3 -9 8 -19 17 -26c16 -12 37 -20 60 -20c43 0 80 17 109 40c32 24 51 55 65 88 c22 52 24 91 24 223'], + 0xE378: [705,14,1048,169,912,'671 527l-319 -361c40 9 69 10 103 10c26 0 51 -7 75 -14c36 -11 70 -26 104 -41c46 -21 104 -48 147 -48c19 0 37 5 51 16c13 10 21 21 21 36c0 10 -3 22 -13 29c-10 8 -28 14 -43 16c-21 3 -37 9 -51 20c-13 10 -21 22 -21 35c0 18 8 30 23 42c17 13 40 19 63 19 c26 0 51 -14 69 -28c27 -22 32 -57 32 -87c0 -53 -17 -102 -66 -140c-37 -29 -88 -45 -140 -45c-26 0 -50 7 -72 14c-39 11 -75 25 -111 41c-32 13 -63 25 -97 34c-24 7 -55 15 -80 15c-32 0 -61 -10 -84 -28l-42 -62l-42 8l-7 15l450 514c-13 -7 -31 -7 -48 -7 c-21 0 -41 5 -59 12c-26 9 -51 21 -73 34c-25 15 -48 28 -75 42c-16 8 -37 15 -56 15c-16 0 -32 -7 -43 -16c-12 -9 -17 -22 -17 -34c0 -16 9 -31 24 -41c10 -6 21 -11 29 -17c10 -8 14 -20 14 -31c0 -12 -5 -25 -17 -34c-14 -11 -31 -22 -51 -22c-19 0 -37 7 -50 17 c-22 17 -30 41 -30 64c0 51 32 97 78 133c43 34 79 53 142 53c22 0 44 -8 64 -17c33 -13 62 -30 92 -48c27 -17 81 -37 111 -37c19 0 37 7 49 17c24 19 36 43 45 68l17 3l35 -24l1 -9c-46 -42 -91 -85 -132 -131'], + 0xE379: [714,4,1124,110,1019,'582 713l437 -711l-51 -6l-394 641l-415 -636l-36 -2l-13 11l461 704'], + 0xE37A: [688,12,1124,104,1004,'1004 684l-449 -696h-18l-433 689l51 7l392 -625l405 629h47'], + 0xE37B: [730,178,578,93,447,'447 -154v-24c-46 0 -110 0 -139 6c-18 4 -33 12 -45 23c-23 21 -28 50 -32 77c-3 24 -3 70 -3 106c0 69 0 174 -30 202c-10 9 -24 15 -40 18c-20 5 -43 5 -65 5v26c47 0 75 1 102 20c19 14 23 37 27 58c5 35 5 100 5 151c0 35 0 96 1 106c3 28 9 56 30 78 c11 11 25 20 42 25c25 7 98 7 147 7v-24c-34 0 -71 0 -104 -8c-15 -3 -23 -9 -30 -20c-10 -12 -14 -27 -18 -42c-7 -39 -7 -78 -7 -118c0 -41 -1 -82 -9 -123c-3 -23 -8 -50 -23 -70c-20 -26 -50 -45 -70 -51v-1c23 -7 45 -18 62 -38c20 -23 29 -49 33 -76 c5 -43 7 -86 7 -129c0 -40 2 -80 9 -119c4 -14 9 -27 18 -39c9 -11 22 -17 36 -20c29 -6 64 -6 96 -6'], + 0xE37C: [733,175,578,125,479,'125 -175v24c32 0 67 1 96 6c14 3 27 9 36 20c9 12 14 25 18 39c7 39 9 79 9 119c0 43 2 86 7 129c4 27 13 53 33 76c17 20 39 31 62 38v1c-20 6 -50 25 -70 51c-15 20 -20 47 -23 70c-8 41 -9 82 -9 123c0 40 0 79 -7 118c-4 15 -8 30 -18 42c-7 11 -15 17 -30 20 c-33 7 -70 8 -104 8v24c49 0 122 0 147 -7c17 -5 31 -14 42 -25c21 -22 27 -50 30 -78c1 -10 1 -71 1 -106c0 -51 0 -116 5 -151c4 -21 8 -44 27 -58c27 -19 55 -20 102 -20v-26c-22 0 -45 0 -65 -5c-16 -3 -30 -9 -40 -18c-30 -28 -30 -133 -30 -202c0 -36 0 -82 -3 -106 c-4 -27 -9 -56 -32 -77c-12 -11 -27 -19 -45 -23c-29 -6 -93 -6 -139 -6'], + 0xE37D: [738,167,449,200,248,'248 -159l-48 -8v897l48 8v-897'], + 0xE37E: [722,192,795,144,653,'611 -192l-467 896l6 11l37 7l466 -893l-4 -13'], + 0xE37F: [701,107,812,164,638,'559 166l4 4c15 18 21 40 21 62c0 29 -19 53 -43 73c-25 22 -74 40 -115 56c-57 22 -145 55 -168 81c-18 -18 -29 -45 -29 -69c0 -23 12 -45 31 -61c34 -28 84 -48 130 -66c60 -23 138 -53 169 -80zM164 23l84 27l10 -5c1 -33 12 -66 39 -90c26 -21 68 -36 102 -36 c40 0 67 17 94 40c25 21 32 60 32 89c0 25 -14 47 -36 65c-24 20 -87 44 -134 63c-46 17 -98 38 -128 63c-32 26 -45 63 -45 99c0 46 27 88 58 126c-7 20 -12 40 -12 61c0 47 18 95 59 129c38 31 91 47 145 47c21 0 44 -2 66 -6c15 -4 31 -9 43 -19c18 -14 32 -33 32 -54 c0 -7 -4 -25 -7 -37l-71 -21l-18 11c0 15 -1 31 -6 46c-3 10 -8 21 -16 29c-16 13 -38 21 -59 21c-28 0 -47 -8 -70 -28c-23 -21 -30 -54 -30 -82c0 -25 10 -49 31 -67c6 -6 15 -10 23 -14c35 -17 72 -32 108 -49c46 -22 99 -34 136 -65c26 -22 44 -50 44 -81 c0 -51 -23 -99 -62 -136c15 -21 21 -48 21 -74c0 -48 -21 -94 -62 -128s-96 -54 -154 -54c-62 0 -127 10 -171 47c-27 22 -42 52 -46 83'], + 0xE380: [694,15,1118,87,981,'832 694l7 -19l-17 -9c-11 -8 -13 -18 -13 -36v-290c0 -70 1 -141 8 -211c2 -24 7 -48 27 -65c8 -6 19 -8 28 -8c16 0 29 6 42 14c17 10 31 20 48 33l19 -17c-30 -30 -64 -55 -103 -75c-24 -13 -50 -26 -80 -26c-16 0 -33 4 -43 14c-10 8 -15 19 -18 30 c-5 16 -6 32 -6 49v158h-266c-38 -87 -105 -164 -146 -198c-34 -28 -78 -48 -125 -48c-27 0 -55 9 -75 25c-22 19 -32 44 -32 70c0 13 6 27 18 37c10 8 23 9 36 9c15 0 28 -5 38 -14c6 -4 8 -11 8 -18c0 -4 -1 -11 -2 -16c-3 -8 -4 -16 -4 -24s6 -13 12 -18 c8 -7 19 -10 30 -10c20 0 36 7 50 19c26 21 46 52 63 78s66 137 97 207c29 65 56 126 92 189c23 40 50 81 93 106c27 16 59 31 91 42c37 13 90 19 123 22zM486 279h243v359l-9 11c-22 -4 -46 -15 -64 -30c-37 -31 -59 -73 -79 -114c-37 -73 -65 -150 -91 -226'], + 0xE381: [712,1,1107,147,917,'717 393l4 -8c52 -8 114 -20 144 -45c32 -27 52 -71 52 -109c0 -51 -38 -100 -80 -136c-80 -66 -208 -96 -320 -96h-324l32 53c60 0 104 13 146 48c27 24 48 58 56 91c14 51 17 112 17 165v296c-49 -4 -126 -25 -172 -63c-23 -18 -42 -41 -42 -68c0 -11 4 -22 6 -33 c3 -10 7 -18 7 -28c0 -12 -1 -24 -10 -32c-11 -9 -27 -15 -42 -15c-9 0 -17 4 -23 10c-18 14 -21 35 -21 55c0 43 26 83 62 114c62 51 148 77 235 88l72 32l12 -7v-23c63 0 126 0 187 -8c39 -5 78 -15 104 -38c27 -22 40 -52 40 -82c0 -44 -19 -78 -56 -109 c-26 -21 -54 -38 -86 -52zM558 386c63 0 127 15 173 53c31 25 45 52 45 88c0 32 -12 63 -38 85c-22 18 -51 27 -78 33c-43 8 -88 10 -132 10v-254c0 -13 19 -15 30 -15zM366 51h198c44 0 94 2 139 9c27 4 50 14 72 34c35 31 54 80 54 125c0 34 -18 75 -47 99 c-19 16 -44 28 -71 34c-34 9 -70 9 -106 9c-27 0 -54 -2 -81 -4c-8 -53 -17 -115 -42 -165c-24 -48 -78 -106 -122 -133'], + 0xE382: [697,15,916,181,770,'697 152l55 -47c-11 -19 -24 -38 -42 -54c-59 -49 -143 -66 -224 -66c-76 0 -149 24 -203 69c-36 30 -60 68 -76 109c-19 48 -26 100 -26 151c0 61 8 123 31 181c18 48 48 90 91 125c68 56 160 77 255 77c61 0 127 -8 171 -46c33 -26 41 -60 41 -97 c0 -47 -19 -93 -59 -126c-38 -33 -92 -47 -146 -47c-46 0 -92 6 -126 33c-18 15 -26 36 -26 58c0 13 2 27 13 36c9 9 24 11 38 11c13 0 28 -3 37 -11c12 -11 9 -27 5 -41c-5 -16 -5 -34 10 -46c12 -10 30 -10 45 -10c34 0 64 13 87 32c31 26 39 64 39 99c0 34 -8 65 -37 89 c-30 25 -72 34 -114 34c-63 0 -125 -15 -169 -52c-36 -30 -59 -66 -72 -106c-19 -55 -25 -111 -25 -168c0 -53 7 -106 27 -156c16 -41 41 -81 78 -112c38 -31 87 -52 140 -52c46 0 91 16 123 43c27 22 39 53 46 83'], + 0xE383: [716,-4,1190,159,1014,'542 716l9 -4v-24c78 0 153 -2 228 -20c56 -14 111 -35 153 -70c65 -53 82 -131 82 -206c0 -103 -51 -202 -137 -275c-89 -73 -205 -113 -330 -113h-349l33 50c70 0 135 25 184 66c24 21 36 51 42 80c12 48 12 98 12 147v309c-73 0 -143 -17 -196 -61 c-18 -15 -28 -40 -28 -61c0 -22 8 -39 8 -61c0 -12 -2 -24 -13 -33c-9 -8 -22 -14 -35 -14c-14 0 -26 8 -32 15c-9 11 -14 29 -14 49c0 42 23 82 58 111c70 58 166 79 253 84zM439 101l-43 -37l5 -10h146c56 0 114 0 168 14c42 11 82 32 113 59c36 29 57 67 73 107 c19 49 25 101 25 153c0 73 -25 147 -87 200c-33 26 -74 41 -117 51c-56 14 -111 18 -171 18v-234c0 -64 -6 -129 -27 -191c-17 -47 -44 -94 -85 -130'], + 0xE384: [702,12,923,180,731,'678 154l53 -48c-8 -13 -18 -31 -27 -38c-63 -52 -146 -80 -235 -80c-47 0 -94 4 -138 16c-36 10 -71 25 -98 47c-39 32 -53 77 -53 122c0 54 29 106 74 145c43 35 100 54 160 61l1 10c-35 10 -68 24 -94 45c-33 28 -44 67 -44 106c0 41 20 81 55 110 c53 44 119 52 192 52c45 0 91 -7 124 -34c17 -14 31 -39 31 -63c0 -21 -1 -38 -18 -57c-14 -16 -41 -23 -55 -23s-21 1 -29 8c-5 4 -8 12 -8 20c0 9 4 16 10 24c8 10 15 21 15 37c0 18 -11 32 -23 40c-17 12 -37 17 -66 17c-34 0 -71 -6 -95 -26c-36 -31 -54 -74 -54 -117 c0 -35 15 -70 45 -94c21 -18 49 -27 76 -33c40 -9 81 -12 122 -12v-25c-56 0 -110 -3 -164 -14c-36 -7 -76 -19 -103 -41c-38 -32 -56 -75 -56 -121c0 -45 15 -90 54 -122c41 -34 102 -42 158 -42c53 0 100 23 137 54c23 19 34 45 38 73'], + 0xE385: [699,15,972,143,949,'930 692l19 -9l-46 -73c-10 -17 -34 -35 -60 -35c-15 0 -34 4 -51 9c-53 12 -139 34 -155 39l-2 -248h172l-25 -28h-147v-49c0 -44 -6 -88 -22 -129c-13 -34 -29 -61 -62 -92c-65 -59 -161 -92 -258 -92c-46 0 -89 14 -122 41c-18 15 -28 36 -28 56c0 12 4 20 15 29 c10 8 24 12 40 12c18 0 24 -2 44 -38c6 -13 17 -25 28 -34c24 -20 55 -26 87 -26c51 0 98 25 130 56c23 22 37 46 47 73c13 34 15 70 17 105c1 29 2 60 2 88h-194l16 28h178l6 265c-29 6 -66 9 -95 9c-60 0 -114 -11 -158 -48c-23 -19 -46 -54 -46 -70c0 -14 1 -25 5 -39 c4 -11 10 -25 10 -36c0 -12 -4 -21 -14 -30c-9 -7 -20 -14 -33 -14c-16 0 -27 6 -37 14c-15 12 -17 29 -17 46c0 51 33 98 77 134c68 57 150 72 244 72c20 0 57 -2 75 -4l58 25l9 -3v-28c59 -12 116 -22 178 -30c13 -2 30 -4 38 -4c19 0 40 10 49 22'], + 0xE386: [697,130,918,183,726,'662 380l64 13v-132c0 -63 -6 -126 -24 -187c-12 -42 -34 -80 -70 -110c-71 -59 -161 -94 -260 -94c-54 0 -111 8 -149 41c-24 20 -40 46 -40 75c0 12 8 25 18 34c11 9 28 11 44 11c12 0 22 -3 31 -10c11 -9 14 -24 17 -37c4 -18 10 -36 26 -49c26 -22 65 -28 101 -28 c55 0 103 23 141 55c29 25 47 56 59 88c15 41 24 79 23 122c-1 30 -4 95 -4 96c-49 -30 -110 -45 -170 -45c-76 0 -150 22 -204 66c-53 44 -66 106 -66 166c0 66 30 133 91 174c73 49 156 68 246 68c40 0 111 -7 150 -40c25 -21 36 -46 36 -75c0 -27 -9 -53 -32 -73 c-25 -21 -55 -37 -91 -37c-6 0 -38 6 -56 9l3 17c29 0 55 3 77 21c16 14 18 35 18 54c0 22 -12 40 -32 56c-27 24 -73 34 -103 34c-53 0 -105 -13 -143 -44c-51 -43 -76 -102 -76 -163c0 -56 13 -115 61 -155c35 -29 80 -48 129 -48c54 0 102 14 141 46c14 12 37 52 44 81'], + 0xE387: [690,8,1254,137,1144,'620 686l-1 -17l-59 -22l-2 -259h273c8 55 24 108 50 159c19 37 48 74 84 101c35 26 62 42 109 42c57 0 70 -36 70 -48c0 -26 -25 -37 -44 -37c-11 0 -26 6 -32 13c-11 10 -19 17 -37 17c-17 0 -34 -5 -46 -15c-17 -14 -32 -26 -43 -49c-14 -27 -22 -50 -28 -77 c-17 -79 -17 -162 -17 -244c0 -45 2 -90 12 -134c9 -27 17 -54 39 -74c11 -9 22 -12 36 -12s40 12 52 23c18 16 33 32 48 50l25 -17c-21 -25 -37 -41 -54 -56c-30 -24 -58 -38 -101 -38c-27 0 -52 5 -71 20c-25 22 -43 51 -52 81c-12 44 -13 89 -13 134c0 30 4 82 7 123 h-267c-4 -56 -13 -113 -29 -166c-13 -44 -42 -84 -80 -116c-53 -44 -116 -74 -191 -74c-34 0 -67 4 -93 24c-16 14 -28 32 -28 52c0 10 3 19 12 26c8 7 21 10 33 10c13 0 29 0 37 -7c8 -6 12 -14 16 -23c5 -8 11 -19 17 -25c15 -13 37 -15 57 -15c26 0 64 13 89 34 c35 29 53 70 63 109c16 63 20 128 20 192v281c-42 0 -80 -2 -121 -10c-28 -6 -55 -13 -76 -30c-20 -18 -42 -40 -42 -66c0 -13 3 -26 5 -38c4 -14 11 -39 11 -40c0 -10 0 -20 -10 -27c-11 -10 -23 -19 -38 -19c-12 0 -22 7 -29 13c-10 7 -13 17 -16 27c-3 16 -4 31 -4 47 c0 45 33 84 72 115c28 24 67 42 106 50c50 10 92 15 142 15c47 0 98 -1 139 -3'], + 0xE388: [685,14,710,129,591,'591 679l-16 -20l-57 -10c0 -117 -8 -228 -8 -344c0 -94 -28 -192 -109 -260c-40 -33 -92 -59 -149 -59c-34 0 -69 7 -93 27c-18 15 -30 35 -30 56c0 11 0 26 9 33c8 7 21 12 33 12c14 0 23 -8 32 -16c3 -2 8 -18 10 -28c4 -12 10 -24 21 -33s27 -9 43 -9 c34 0 61 16 85 35c29 24 45 57 54 89c13 47 18 97 18 146c0 119 9 232 9 351c-40 0 -80 -3 -117 -12c-29 -7 -56 -16 -77 -34c-16 -13 -28 -31 -28 -51c0 -7 1 -15 3 -22c4 -12 11 -29 11 -35c0 -12 -6 -23 -17 -32c-7 -5 -15 -8 -25 -8c-11 0 -19 4 -26 10 c-17 14 -22 34 -22 53c0 37 17 72 48 98c32 26 74 41 118 51c58 13 118 18 180 18c33 0 67 -5 100 -6'], + 0xE389: [692,129,801,131,659,'506 350v300c-63 -7 -127 -17 -173 -55c-30 -25 -40 -60 -40 -95c0 -21 0 -48 -15 -60c-9 -8 -20 -17 -32 -17c-13 0 -25 5 -34 13c-13 11 -15 26 -15 41c0 45 30 84 67 116c84 70 200 99 319 99h72l4 -18l-76 -23v-23v-407c0 -53 -6 -105 -24 -156 c-14 -39 -36 -76 -71 -105c-31 -26 -66 -49 -104 -66c-33 -14 -66 -23 -102 -23c-40 0 -82 5 -111 29c-26 22 -40 52 -40 84c0 43 15 86 39 125c29 47 69 89 114 127c63 52 139 88 222 114zM501 316c-66 -22 -128 -52 -178 -94c-65 -55 -112 -125 -112 -203 c0 -29 2 -60 28 -81c20 -17 50 -23 79 -23c44 0 84 19 115 45c28 23 43 54 54 85c14 43 19 87 19 131c0 47 -5 93 -5 140'], + 0xE38A: [690,12,1182,132,1050,'615 686l-4 -17l-56 -17l-1 -297h21c60 69 182 203 182 204c26 29 56 57 88 83c19 17 33 25 57 36c18 9 45 12 65 12c24 0 43 -5 60 -19c13 -11 23 -20 23 -36c0 -13 -5 -26 -17 -36c-11 -9 -25 -16 -41 -16c-19 0 -29 13 -32 25c-4 14 -21 23 -37 23 c-24 0 -46 -12 -63 -25c-27 -21 -50 -39 -71 -63c-46 -53 -141 -160 -141 -161s-4 -5 -6 -7c1 -6 2 -17 2 -18s75 -116 112 -175c27 -44 62 -84 104 -119c15 -12 33 -21 52 -21c20 0 39 7 54 19c15 13 25 27 35 44l21 -16c-11 -23 -24 -44 -44 -62c-27 -22 -61 -39 -99 -39 c-36 0 -72 9 -97 31c-21 17 -36 38 -49 60c0 1 -101 166 -151 247h-33c0 -97 -30 -195 -112 -264c-48 -40 -110 -67 -178 -67c-37 0 -77 7 -103 30c-16 13 -24 29 -24 47c0 10 3 20 12 28c8 7 20 11 32 11c11 0 24 0 30 -4c9 -7 16 -15 22 -23c7 -10 14 -20 24 -29 c14 -11 31 -17 50 -17c39 0 72 17 99 39c26 22 42 48 52 79c15 39 20 81 20 122v374c-72 0 -143 -15 -198 -56c-19 -14 -33 -33 -33 -54c0 -12 1 -23 4 -35c2 -12 7 -23 7 -34c0 -13 0 -27 -11 -36c-9 -9 -23 -14 -37 -14c-12 0 -24 4 -34 12c-18 15 -18 39 -18 60 c0 40 22 80 58 106c86 63 194 87 308 87c3 0 64 0 96 -2'], + 0xE38B: [685,7,1052,128,833,'463 134c30 -17 106 -43 143 -51c25 -6 51 -11 78 -11c39 0 65 12 87 39c24 28 32 51 32 89c0 17 -3 41 -6 55l30 5c4 -17 6 -47 6 -58c0 -56 -6 -113 -53 -154c-35 -30 -65 -55 -117 -55c-28 0 -83 4 -111 13c-46 15 -68 24 -100 45c-80 43 -141 64 -173 64 c-27 0 -67 -16 -80 -35c-21 -28 -36 -59 -47 -86l-24 17c4 33 18 66 46 105c12 17 41 34 55 43c18 10 41 26 58 40c38 31 66 134 76 204c8 48 15 93 39 137c18 34 46 68 79 94c46 36 110 51 172 51c38 0 72 -6 95 -26c17 -13 27 -32 27 -52c0 -60 -55 -61 -55 -61 c-15 0 -28 4 -37 12c-7 5 -7 21 -7 32c0 14 -11 34 -23 45c-14 12 -29 16 -52 16c-25 0 -50 -9 -69 -26c-21 -17 -32 -28 -40 -51c-13 -35 -27 -101 -35 -146c-7 -42 -17 -78 -37 -125c-10 -29 -30 -58 -51 -78c-23 -22 -46 -40 -65 -49l3 -6c96 0 156 -36 156 -36'], + 0xE38C: [699,13,1372,129,1250,'1052 595v-325c0 -53 4 -106 15 -158c6 -29 9 -46 33 -67c9 -6 18 -10 30 -10c19 0 37 8 51 20c18 14 33 31 46 49l23 -15c-17 -21 -37 -40 -59 -58c-26 -22 -57 -44 -96 -44c-28 0 -55 10 -74 26c-30 25 -35 49 -40 84c-3 38 -3 181 -3 271c0 70 -5 140 -1 210 c-75 -63 -124 -143 -161 -225c-51 -107 -79 -214 -97 -328l-53 -35l-11 7c-18 123 -42 239 -88 357c-16 43 -36 86 -62 127c-19 31 -42 61 -72 86v-226c0 -65 -7 -130 -28 -193c-14 -46 -36 -90 -76 -124c-27 -22 -62 -34 -99 -34c-30 0 -57 10 -79 27c-12 11 -22 25 -22 41 c0 12 6 21 16 30c8 7 20 11 32 11c21 0 36 -10 45 -25c9 -17 29 -28 50 -28s39 12 53 24c25 21 37 50 47 79c12 41 15 83 15 125v330c-24 24 -58 40 -96 40c-27 0 -52 -11 -72 -27c-27 -22 -38 -53 -44 -84l-25 -1c5 26 11 51 21 75c9 18 20 35 35 49c31 26 73 43 118 43 c51 0 99 -19 135 -50h4c66 -55 104 -122 142 -194c44 -88 75 -174 98 -267l7 -2c28 90 63 168 113 250c41 68 90 133 155 186c48 40 110 76 180 76c20 0 42 -5 57 -18c9 -7 16 -16 16 -26c0 -9 -1 -19 -10 -25c-10 -10 -25 -16 -40 -16c-9 0 -20 0 -24 4c-6 5 -12 10 -16 16 c-2 5 -4 11 -8 15c-8 6 -17 11 -28 11s-22 -4 -30 -10c-14 -13 -23 -37 -23 -54'], + 0xE38D: [706,7,1122,131,1059,'847 124l8 12c-7 112 -10 229 -10 344c0 41 4 83 15 123c6 25 15 52 37 71c26 21 60 32 96 32c18 0 35 -5 48 -15c11 -9 18 -22 18 -35c0 -8 -1 -18 -9 -24c-13 -6 -37 -16 -39 -16c-9 0 -21 0 -25 4c-8 6 -14 13 -18 21c-3 10 -12 18 -24 18c-9 0 -19 -2 -25 -7 c-18 -15 -22 -36 -24 -56c-4 -25 -5 -104 -5 -156c-2 -142 0 -275 3 -417l-58 -30c-116 190 -246 388 -397 542c0 -51 -3 -103 -6 -157c-5 -70 -12 -178 -21 -209c-12 -46 -30 -86 -73 -125c-31 -28 -72 -48 -119 -48c-24 0 -49 6 -66 21c-13 10 -22 23 -22 38 c0 14 8 27 20 37c7 6 16 10 26 10c12 0 24 -2 33 -9c2 -2 11 -14 17 -20c7 -10 20 -14 33 -14c29 0 52 12 71 28c26 23 35 53 43 84c12 50 15 101 15 152v259c-21 17 -42 33 -68 45c-18 9 -36 16 -56 16c-25 0 -50 -6 -67 -21c-27 -21 -35 -55 -41 -85l-26 -5 c0 49 9 98 51 133c31 26 75 36 118 36c56 0 104 -30 143 -63c52 -43 93 -95 134 -147c60 -76 181 -244 270 -367'], + 0xE38E: [686,18,1042,182,857,'378 659l17 -12c-94 -79 -131 -188 -131 -297c0 -56 6 -112 24 -165c12 -39 30 -79 65 -107c42 -36 97 -57 157 -57c59 0 115 17 157 52c38 33 61 74 77 118c20 59 29 120 29 181c0 52 0 105 -16 155c-11 36 -32 71 -64 97c-21 18 -52 29 -82 29c-38 0 -74 -9 -100 -31 c-20 -17 -36 -40 -36 -64c0 -29 23 -50 47 -70c11 -9 13 -22 13 -35c0 -21 -24 -33 -48 -33c-16 0 -31 5 -42 15c-23 19 -28 45 -28 71c0 51 21 98 64 134c37 32 88 46 139 46c57 0 111 -20 149 -52c34 -28 58 -65 70 -102c18 -52 18 -105 18 -158c0 -63 -11 -125 -34 -184 c-18 -48 -46 -92 -89 -128c-67 -56 -162 -80 -257 -80c-74 0 -141 28 -193 72c-36 29 -60 68 -75 108c-20 48 -27 99 -27 149c0 115 40 229 138 311c17 15 37 26 58 37'], + 0xE38F: [710,11,986,150,863,'541 320c65 0 133 10 180 49c43 36 60 88 60 139c0 40 -19 78 -53 107c-20 16 -47 24 -74 31c-37 9 -75 9 -113 9v-335zM465 685l69 25l11 -3v-20c57 0 110 -2 165 -15c41 -10 76 -21 106 -46c35 -29 47 -71 47 -111c0 -55 -24 -109 -71 -149c-66 -54 -159 -76 -251 -76 c0 -20 -2 -40 -4 -60c-6 -71 -16 -138 -76 -188c-41 -34 -93 -53 -149 -53c-37 0 -75 11 -101 33c-19 16 -26 39 -26 62c0 14 6 26 18 36c8 7 21 10 34 10c11 0 23 -3 30 -9c16 -13 16 -29 16 -47c0 -15 4 -32 18 -43c10 -8 25 -10 40 -10c30 0 50 14 70 31 c23 19 34 48 41 73c10 39 13 79 13 120v410c-29 0 -141 -1 -189 -41c-24 -21 -49 -47 -49 -77c0 -11 4 -27 8 -41c4 -9 10 -18 10 -27c0 -12 -3 -24 -12 -33c-10 -7 -22 -13 -35 -13c-11 0 -22 4 -30 11c-18 15 -18 38 -18 59c0 48 30 93 72 126c61 48 152 66 243 66'], + 0xE390: [694,24,988,183,836,'441 186l-10 -21c-57 0 -113 15 -153 49c-62 52 -95 122 -95 195c0 83 29 160 100 219c64 53 155 66 244 66c75 0 151 -17 205 -62c30 -24 48 -54 59 -87c15 -44 21 -85 21 -131c0 -98 -35 -196 -119 -266c-38 -32 -84 -56 -135 -69c8 -5 18 -8 37 -14 c14 -4 110 -23 126 -23c19 0 34 11 47 22c23 18 34 39 45 62l23 -8c-12 -34 -25 -68 -56 -97c-18 -17 -42 -32 -70 -32c-25 0 -49 0 -72 5l-230 42c-25 4 -51 7 -76 7c-26 0 -57 -1 -77 -16c-12 -9 -27 -33 -34 -51l-26 9c14 32 34 69 59 90c28 23 69 30 108 30 c18 0 40 0 55 -2c26 -3 54 -6 77 -6c57 0 108 22 148 55c33 28 50 65 62 102c18 52 23 106 23 160c0 44 -2 84 -17 127c-9 31 -27 59 -55 82c-36 30 -89 44 -139 44c-59 0 -121 -11 -165 -47c-31 -25 -51 -56 -64 -91c-17 -42 -23 -83 -23 -128c0 -63 18 -128 73 -174 c28 -23 66 -33 104 -41'], + 0xE391: [712,6,1060,137,950,'555 655l-3 -316c17 -3 33 -3 50 -3c48 0 99 15 132 44c43 35 57 86 57 135c0 41 -14 81 -48 110c-17 14 -42 19 -65 23c-42 6 -81 7 -123 7zM711 83l-112 221l-47 4c-10 -51 -18 -101 -40 -149c-14 -34 -38 -68 -69 -93c-51 -43 -112 -71 -184 -71c-32 0 -66 4 -90 23 c-17 15 -32 31 -32 52c0 11 4 23 14 31c8 7 20 11 32 11c11 0 20 -4 27 -10c9 -8 18 -17 24 -26s13 -19 20 -25c13 -11 34 -12 53 -12c38 0 70 15 97 38c27 22 40 51 49 81c14 42 18 86 18 129c0 122 2 240 2 363c-72 0 -138 -11 -190 -54c-19 -15 -38 -36 -38 -58 c0 -10 2 -22 4 -33c3 -12 9 -23 9 -35c0 -11 -7 -22 -17 -31c-10 -7 -20 -14 -34 -14c-12 0 -20 6 -27 13c-16 15 -21 32 -21 52c0 43 27 83 63 114c69 57 173 74 251 80l75 28l11 -4v-21c59 0 109 -1 167 -9c36 -5 73 -14 99 -36c36 -30 51 -74 51 -116 c0 -50 -16 -101 -59 -137c-40 -33 -94 -61 -144 -71l49 -99c27 -55 59 -107 109 -149c10 -9 27 -14 41 -14c13 0 24 7 33 14c13 12 19 21 25 36l20 -12c-11 -29 -25 -51 -50 -72c-18 -15 -40 -28 -66 -28c-22 0 -43 2 -59 14c-26 22 -49 47 -64 75'], + 0xE392: [702,12,844,131,674,'476 514l3 16c20 0 46 5 61 19c13 13 18 28 18 46s-10 33 -27 46c-24 21 -58 28 -93 28c-41 0 -79 -9 -108 -34c-23 -19 -37 -39 -37 -66c0 -37 15 -71 46 -97c38 -31 84 -51 132 -69c54 -21 108 -44 150 -79c36 -30 53 -72 53 -115c0 -51 -19 -103 -63 -140 c-66 -55 -154 -81 -246 -81c-62 0 -146 13 -189 49c-32 27 -45 65 -45 103c0 41 21 83 56 112c32 27 72 34 115 34c30 0 65 -4 85 -22c12 -10 21 -22 21 -35c0 -8 0 -17 -7 -23c-10 -8 -22 -15 -35 -15c-11 0 -22 3 -29 10c-7 5 -10 13 -12 21c-2 9 -8 19 -17 26 c-7 6 -25 6 -36 6c-19 0 -27 -5 -41 -16c-19 -17 -31 -40 -31 -63c0 -41 16 -81 51 -110c31 -26 90 -41 135 -41c54 0 113 14 151 46c35 29 50 64 50 104c0 37 -5 77 -38 105c-36 29 -75 53 -122 70c-32 11 -65 24 -95 39c-21 10 -43 22 -61 36c-40 33 -56 78 -56 124 c0 39 14 72 46 99c52 43 120 55 192 55c56 0 113 -5 154 -38c23 -19 29 -41 29 -68c0 -18 -6 -37 -22 -51c-25 -21 -57 -36 -93 -36c-15 0 -30 2 -45 5'], + 0xE393: [693,6,897,128,889,'865 693l24 -11c-19 -32 -38 -56 -66 -83c-22 -21 -54 -32 -86 -32c-28 0 -94 11 -141 19v-269c0 -56 -1 -112 -19 -166c-13 -40 -36 -79 -72 -108c-40 -33 -89 -49 -145 -49c-35 0 -71 6 -96 26c-21 18 -25 41 -25 66c0 12 7 24 18 33c9 8 21 14 34 14 c15 0 28 -7 38 -15c10 -9 8 -23 7 -34c-3 -17 -3 -35 12 -47c11 -9 26 -10 42 -10c27 0 49 6 69 22c23 20 36 48 42 75c12 43 15 88 15 132c0 115 -3 228 -3 343c-62 15 -145 35 -192 35c-31 0 -67 -10 -90 -29c-22 -19 -31 -35 -31 -61c0 -9 5 -16 10 -23 c8 -11 18 -21 29 -29c7 -6 9 -15 9 -23c0 -12 -8 -21 -18 -29c-9 -8 -20 -16 -35 -16s-28 9 -39 18c-19 16 -28 39 -28 62c0 48 31 86 71 119c49 41 119 61 187 61c41 0 121 -12 181 -25c66 -13 142 -28 201 -28c24 0 45 10 62 24c16 13 24 23 35 38'], + 0xE394: [699,16,1050,127,926,'902 113l24 -14c-15 -28 -32 -54 -56 -74c-25 -20 -58 -34 -93 -34c-21 0 -43 6 -58 19c-33 27 -46 61 -56 97c-7 -7 -31 -28 -46 -41c-57 -47 -130 -82 -212 -82c-44 0 -85 17 -116 43c-16 12 -23 29 -29 46c-7 23 -9 48 -9 72c0 63 12 126 27 188c16 64 29 129 29 195 c0 35 -1 67 -32 93c-10 9 -28 15 -42 15s-29 -6 -40 -14c-23 -20 -30 -40 -30 -68c0 -19 3 -44 6 -63l-35 -9c-3 24 -7 53 -7 78c0 40 12 74 47 103c24 20 59 29 92 29c30 0 61 -6 83 -24c17 -14 24 -32 30 -50c8 -27 11 -48 11 -76c0 -70 -16 -139 -33 -207 c-12 -48 -24 -99 -24 -145c0 -28 4 -56 14 -84c6 -20 16 -39 33 -54c21 -17 48 -25 76 -25c56 0 102 29 140 61c22 19 43 38 63 58c0 159 19 324 39 485c47 26 97 50 150 68l21 -11c-14 -6 -28 -13 -39 -22c-17 -13 -27 -29 -37 -47c-12 -23 -20 -47 -26 -71 c-24 -101 -30 -204 -30 -306c0 -39 2 -78 13 -117c7 -24 15 -49 37 -67c8 -8 19 -11 32 -11c17 0 29 4 41 14c17 14 30 34 42 52'], + 0xE395: [709,9,990,129,863,'525 114l148 202c30 40 60 83 80 128c16 36 24 73 26 111c0 27 -5 55 -28 75c-18 14 -41 23 -66 23c-22 0 -43 -1 -59 -14c-27 -23 -41 -54 -48 -86l-27 3c8 42 25 84 61 115c30 24 69 38 111 38c38 0 74 -9 100 -31c28 -22 40 -53 40 -84c0 -41 -6 -68 -27 -105 c-37 -68 -96 -147 -145 -211c-67 -88 -128 -173 -176 -259l-62 -28l-8 9c-7 104 -29 211 -52 317c-14 69 -34 136 -56 204c-11 34 -26 74 -59 102c-9 8 -21 14 -36 14c-17 0 -32 -5 -44 -15c-19 -15 -34 -58 -40 -89l-29 3c4 29 15 58 27 86c8 19 19 39 37 54 c23 19 55 28 88 28c27 0 46 -10 66 -26c21 -18 33 -41 43 -65c17 -39 30 -79 38 -120l83 -382'], + 0xE396: [702,5,1380,133,1253,'481 127l97 163c42 71 81 142 109 217c21 54 36 110 36 166l70 29l14 -8c-7 -29 -13 -54 -13 -83c0 -95 37 -186 85 -272c40 -70 72 -143 96 -218c53 79 110 159 149 243c25 53 43 107 43 164c0 21 -1 41 -7 61c-5 14 -11 27 -23 37c-18 15 -38 23 -64 23 c-34 0 -58 -15 -78 -36l-23 11c9 11 19 20 30 30c35 29 77 48 126 48c32 0 59 -7 80 -26c33 -27 45 -65 45 -103c0 -40 -17 -78 -34 -116c-29 -62 -64 -122 -101 -181c-53 -84 -99 -162 -141 -251l-56 -23l-10 5c-9 99 -44 187 -93 277c-35 66 -67 140 -91 208 c-42 -71 -86 -150 -121 -224c-40 -85 -87 -163 -121 -241c-2 -3 -14 -11 -17 -13c-17 -7 -35 -12 -52 -19l-14 8c0 138 -6 272 -34 408c-8 43 -19 85 -37 126c-13 28 -29 55 -54 77c-13 10 -28 21 -47 21c-13 0 -27 -4 -36 -13c-25 -24 -32 -65 -32 -87l-29 2 c0 51 16 105 60 142c22 18 52 22 82 22c32 0 54 -14 75 -32c24 -20 40 -44 51 -70c14 -36 27 -81 36 -120c26 -118 32 -232 33 -352h11'], + 0xE397: [706,9,1053,157,929,'866 161l27 -4c0 -50 -27 -92 -69 -127c-27 -23 -65 -39 -104 -39c-33 0 -66 6 -89 25c-24 21 -37 48 -49 75c-22 44 -37 91 -51 137c-28 -67 -62 -134 -123 -185c-40 -33 -90 -52 -147 -52c-28 0 -57 7 -78 24c-16 14 -26 32 -26 52c0 11 1 22 11 30c9 8 21 16 35 16 c12 0 22 -3 31 -10c11 -8 17 -20 19 -32c2 -9 6 -16 14 -23c10 -8 23 -11 36 -11c30 0 56 11 76 28c32 27 55 59 76 93c28 47 51 98 70 148c-12 79 -24 152 -50 229c-8 25 -19 50 -32 73c-9 17 -23 33 -39 45c-17 15 -42 17 -65 17c-27 0 -48 -5 -69 -20 c-14 -10 -21 -21 -21 -35c0 -10 0 -19 3 -28c3 -13 13 -25 13 -39c0 -9 -11 -22 -19 -29c-9 -7 -17 -9 -30 -9c-12 0 -21 5 -29 11c-16 13 -16 34 -16 52c0 32 20 63 47 86c42 35 94 47 153 47c42 0 86 -6 117 -32c27 -22 40 -53 52 -84c19 -48 32 -100 41 -148 c5 25 43 88 67 124c21 32 45 65 78 91c29 25 67 42 110 42c27 0 54 -6 73 -22c12 -10 20 -23 20 -37c0 -11 -3 -22 -12 -30c-10 -8 -22 -18 -35 -18c-9 0 -17 1 -23 6c-5 5 -8 11 -12 17c-2 6 -8 11 -14 16c-10 9 -24 13 -39 13c-21 0 -42 -8 -56 -20 c-39 -31 -61 -73 -83 -113c-29 -55 -50 -108 -65 -167c12 -64 21 -118 46 -180c14 -39 38 -78 73 -108c14 -11 34 -14 53 -14c21 0 39 12 54 24c31 26 45 59 50 95'], + 0xE398: [702,136,908,127,699,'326 615l-7 -169c0 -21 1 -43 7 -64c4 -13 9 -27 21 -37c18 -14 40 -24 66 -24c25 0 48 8 69 18c30 14 55 32 79 51c23 19 51 44 54 72l3 208l66 32l15 -11c-4 -147 -9 -307 -9 -438c0 -116 -36 -240 -136 -323c-47 -39 -108 -66 -176 -66c-33 0 -60 5 -83 25 c-22 18 -26 41 -26 67c0 32 9 62 28 90c27 39 53 73 90 104c44 36 152 96 228 135v109c-73 -61 -152 -115 -235 -115c-34 -1 -85 17 -103 31c-23 20 -36 64 -36 100l4 140c0 18 2 35 1 53c0 5 0 10 -5 13c-5 4 -11 6 -18 6c-20 0 -50 -25 -73 -43l-23 9c17 23 36 47 56 64 c26 21 53 41 89 41c13 0 27 -5 36 -13c18 -15 18 -43 18 -65zM614 244c-66 -22 -133 -60 -183 -102c-29 -24 -54 -51 -74 -81c-14 -25 -25 -52 -25 -80c0 -22 0 -42 18 -57c18 -16 43 -23 70 -23c35 0 63 12 87 32c39 32 63 75 77 119c21 60 30 130 30 192'], + 0xE399: [696,11,981,167,855,'524 108l133 -60c18 -8 39 -16 58 -16c23 0 42 9 58 23c9 7 12 21 12 32c0 14 -10 28 -21 38c-12 11 -19 24 -19 36c0 10 7 19 17 26c7 7 21 9 32 9c15 0 27 -5 36 -13c16 -13 25 -31 25 -49c0 -36 -22 -68 -52 -94c-40 -33 -92 -51 -147 -51c-24 0 -49 5 -71 15l-86 38 c-32 15 -66 28 -100 39c-22 6 -45 13 -69 13c-28 0 -55 -13 -76 -30c-7 -6 -39 -59 -43 -64l-36 6l-8 20l456 529c-8 -2 -22 -2 -33 -2c-30 0 -90 30 -131 54c-30 17 -62 35 -98 35c-25 0 -53 -4 -71 -19c-18 -14 -30 -31 -30 -52c0 -10 3 -27 13 -38c12 -13 18 -32 18 -35 c0 -9 -2 -19 -9 -26c-11 -8 -23 -15 -37 -15c-15 0 -29 5 -39 14c-14 12 -14 32 -14 50c0 49 35 87 75 122c36 29 77 53 128 53c19 0 40 -6 58 -12c27 -10 51 -22 75 -36c29 -16 74 -39 86 -45c12 -5 24 -9 39 -9c8 0 20 8 27 15c8 7 14 16 19 26l15 29h19l24 -22 c-185 -181 -305 -347 -461 -521c33 12 66 20 102 20c45 0 87 -16 126 -33'], + 0xE39A: [502,11,861,150,691,'449 502c56 -13 110 -32 151 -64c57 -43 91 -102 91 -164c0 -77 -47 -147 -117 -201c-32 -25 -68 -46 -107 -62c-31 -13 -65 -22 -101 -22c-53 0 -103 18 -140 46c-52 40 -76 96 -76 152c0 85 43 166 121 225c51 40 113 68 178 90zM361 424c-33 -15 -47 -29 -62 -51 c-26 -34 -38 -73 -38 -113c0 -58 30 -114 84 -155c26 -21 61 -34 99 -34c32 0 69 3 92 21c17 13 26 29 32 46c8 22 8 50 8 73c0 58 -38 111 -90 152c-33 26 -80 51 -125 61'], + 0xE39B: [489,0,861,164,708,'212 451l-2 31l316 7c-11 -82 -17 -164 -17 -247v-180c0 -10 10 -19 23 -20c19 -1 39 -1 58 -1l118 1v-42h-544v48c59 0 118 -2 178 -3c16 0 29 10 29 23c7 89 15 184 15 268c0 22 -2 44 -10 64c-10 22 -37 34 -64 38'], + 0xE39C: [491,0,861,153,725,'696 1l-539 -1l-4 25l142 110c41 32 79 67 109 107c21 28 39 59 39 92c0 24 -7 49 -30 66c-17 13 -39 21 -62 21c-43 0 -96 -22 -141 -41l-20 28c44 23 89 45 137 62c33 11 68 21 105 21c39 0 80 -5 108 -27c27 -20 38 -49 38 -77c0 -25 -13 -49 -29 -71 c-22 -31 -49 -60 -80 -86c-48 -42 -143 -123 -144 -123c-1 -1 -2 -4 -2 -6c3 -5 12 -5 19 -5c124 0 246 5 368 10l15 -4'], + 0xE39D: [488,193,861,145,680,'450 212l5 -11c63 -2 125 -17 170 -52c38 -28 55 -68 55 -108c0 -59 -27 -117 -82 -160c-64 -49 -151 -74 -241 -74c-79 0 -149 22 -212 56l17 25c49 -22 104 -37 161 -37c53 0 105 13 143 42c43 32 61 78 61 124c0 38 -7 79 -44 107c-23 17 -53 25 -85 31 c-47 9 -94 11 -142 11v38c69 0 142 10 192 48c28 22 39 52 39 82c0 27 -17 53 -42 72c-20 15 -49 17 -75 17c-47 0 -88 -20 -128 -40l-19 18c60 48 132 87 220 87c47 0 95 -10 129 -36c28 -21 46 -50 46 -80c0 -38 -20 -75 -54 -102c-33 -25 -71 -45 -114 -58'], + 0xE39E: [495,198,861,119,726,'600 -158l-114 -40l-12 10l6 187h-361v29l385 452l92 15l11 -13c-7 -80 -11 -248 -11 -425c63 0 95 1 130 4l-20 -62h-110c0 -51 1 -106 4 -157zM226 57h253v302l-5 3c-65 -55 -169 -185 -248 -294v-11'], + 0xE39F: [481,191,861,125,675,'673 481l-33 -93h-361c-10 0 -15 -9 -15 -18v-146l12 -5c44 16 91 23 139 23c69 0 142 -10 193 -49c46 -36 67 -85 67 -136c0 -62 -21 -126 -79 -171c-64 -50 -152 -77 -244 -77c-81 0 -160 17 -227 53l19 26c45 -23 95 -40 149 -40c55 0 110 14 149 44 c51 40 71 97 71 152c0 44 -12 90 -53 121c-27 21 -66 28 -103 28c-45 0 -86 -18 -118 -41l-29 10v319h463'], + 0xE3A0: [704,12,861,158,708,'696 625l-28 -2c-28 15 -62 23 -97 23c-63 0 -121 -24 -165 -58c-38 -30 -63 -69 -81 -109c-21 -47 -30 -99 -33 -148l11 -3c59 31 124 58 196 58c50 0 101 -11 137 -39c44 -35 70 -82 70 -131c0 -58 -37 -111 -90 -152c-60 -46 -139 -76 -224 -76c-54 0 -102 20 -140 48 c-73 57 -94 138 -94 217c0 126 61 248 177 338c85 64 191 113 312 113c5 0 40 -5 61 -7zM295 286c1 -45 8 -90 25 -133c12 -31 29 -62 59 -85c22 -18 52 -29 85 -29c32 0 67 8 90 25c33 26 46 66 46 101c0 45 -22 89 -63 121c-31 24 -72 36 -115 36c-45 0 -83 -11 -127 -36'], + 0xE3A1: [586,33,468,80,451,'279 405h113v-7l-16 -39h-97c0 -76 0 -203 3 -227c26 -27 59 -51 98 -65l64 31l7 -21c-58 -37 -173 -110 -174 -110c-37 32 -80 59 -124 84c5 58 9 117 9 175v133h-82v8l15 38h67v127l117 54l12 -9c-4 -56 -12 -171 -12 -172'], + 0xE3A2: [690,11,548,206,342,'206 46c0 31 30 57 68 57s68 -26 68 -57s-30 -57 -68 -57s-68 26 -68 57zM255 184l-32 383c-2 19 -4 41 -4 58c0 12 2 24 5 36c3 7 6 15 15 20c12 7 26 9 40 9c11 0 22 -2 29 -8c13 -10 16 -24 16 -38c0 -29 -3 -58 -6 -87l-43 -371'], + 0xE3A3: [681,221,1063,58,924,'338 681c57 0 100 -19 137 -49c29 -25 48 -58 60 -91c69 52 151 96 231 139c39 -37 88 -64 138 -90c9 -91 20 -200 20 -273c0 -121 -18 -243 -83 -352c-60 -54 -128 -102 -204 -137c-61 -29 -129 -49 -199 -49c-49 0 -99 10 -134 40c-10 8 -25 20 -28 26l107 110l13 -2 c1 -34 17 -66 46 -90c27 -21 63 -29 99 -29c55 0 104 22 142 54c46 38 66 92 81 143c23 76 29 154 29 232c0 83 -2 165 -19 246c-40 26 -83 50 -129 66c-38 -21 -70 -48 -101 -74c3 -21 4 -53 4 -76c0 -70 -15 -140 -60 -200c-17 -9 -95 -58 -140 -86 c57 -23 144 -57 181 -57c18 0 35 6 51 14c22 11 42 25 59 40l6 -22c-48 -52 -104 -100 -165 -143c-3 -1 -8 -2 -10 -2c-31 0 -81 21 -119 38c-46 20 -102 44 -146 44c-27 0 -54 -7 -73 -23c-16 -13 -30 -27 -44 -42l-21 20c27 32 106 100 157 139c54 0 109 12 149 44 c18 16 27 38 33 59c10 31 13 64 13 96c0 49 -6 99 -22 146c-11 35 -27 69 -58 94c-24 20 -52 35 -90 35c-31 0 -62 -12 -75 -22c-16 -13 -23 -30 -23 -49c0 -12 11 -26 19 -36c13 -16 27 -32 43 -46c26 -24 53 -59 53 -80c0 -11 -1 -21 -8 -30c-8 -14 -16 -28 -28 -39 c-37 -32 -77 -57 -122 -82l-16 19c20 12 30 21 44 38c10 12 18 26 18 41c0 16 -27 46 -47 67c-14 15 -31 29 -42 46c-7 9 -7 23 -7 35c0 23 11 44 24 64c18 27 43 51 68 73c46 38 112 63 188 63'], + 0xE3A4: [698,11,1078,156,978,'512 356l3 43c67 -3 159 -3 240 -3c62 0 151 0 187 3l-4 -48c-49 7 -117 7 -176 7c6 -21 11 -42 11 -63c0 -67 -40 -127 -89 -180l3 -3c20 -17 41 -32 66 -44c18 -8 39 -15 60 -15c29 0 57 9 77 26c35 29 51 67 63 110l25 -5c-12 -58 -35 -116 -85 -158 c-32 -26 -74 -37 -117 -37c-60 0 -114 25 -156 59l-5 4c-49 -32 -115 -60 -184 -60c-74 0 -148 12 -201 55c-47 40 -74 93 -74 148c0 47 16 89 56 123c28 24 85 54 134 79c-19 39 -32 81 -32 123c0 50 21 99 64 135c35 29 83 43 132 43c35 0 68 -11 92 -32 c19 -15 30 -37 30 -60c0 -44 -17 -81 -56 -111c-37 -28 -125 -71 -145 -79c28 -53 69 -114 110 -163c35 -42 82 -85 125 -122c31 38 45 87 45 135c0 30 -18 58 -43 79c-19 16 -47 16 -73 16c-28 0 -55 -2 -83 -5zM596 68c-45 41 -90 92 -126 138c-42 52 -85 113 -113 170 c-28 -15 -53 -37 -62 -45c-32 -30 -46 -72 -46 -113c0 -54 26 -105 71 -143c34 -28 81 -44 129 -44c63 0 109 11 147 37zM421 435c32 17 67 37 84 51c30 25 41 61 41 96c0 21 -12 42 -30 57c-12 10 -35 24 -51 24c-27 0 -36 -3 -54 -17c-21 -18 -24 -62 -24 -87 c0 -43 14 -84 34 -124'], + 0xE3A5: [678,148,788,27,668,'289 360l-12 2l16 19c27 0 52 2 78 7c17 4 34 9 48 20c28 24 35 60 35 93c0 26 -11 51 -33 70c-27 22 -65 31 -102 31c-48 0 -96 -12 -131 -41l-43 -34l-18 23c47 42 97 81 150 117c38 7 76 11 115 11c59 0 121 -7 164 -43c26 -20 36 -49 36 -78c0 -45 -17 -90 -56 -122 c-37 -31 -80 -58 -132 -64v-6c72 0 147 -9 198 -52c48 -39 66 -95 66 -150c0 -79 -25 -160 -93 -216c-68 -57 -156 -95 -253 -95c-44 0 -90 7 -121 33c-33 27 -48 66 -50 104c-1 23 -7 58 -18 68c-11 9 -28 12 -43 12c-20 0 -40 -8 -57 -16l-6 23c31 19 63 37 98 51 c22 9 47 17 72 17c24 0 47 -5 65 -19c17 -15 17 -68 17 -104c0 -20 3 -41 9 -61c5 -14 11 -29 24 -39c20 -16 50 -25 78 -25c34 0 60 13 83 32s35 51 45 77c11 33 15 69 15 104c0 30 -3 60 -14 89c-9 23 -20 44 -40 61c-19 16 -57 31 -135 31c-30 0 -59 -3 -89 -9l-11 10'], + 0xE3A6: [709,-406,307,96,228,'176 532l35 -49c6 -8 17 -27 17 -35c0 -10 -11 -20 -20 -28c-9 -7 -24 -14 -32 -14s-23 12 -29 20c-29 34 -51 72 -51 115c0 25 13 47 27 68c23 35 49 68 76 100l15 -14c-16 -26 -30 -52 -43 -79c-7 -12 -10 -25 -10 -39c0 -16 5 -31 15 -45'], + 0xE3A7: [695,-395,307,95,224,'127 395l-17 11c15 24 32 49 41 72c7 15 11 31 11 47c0 14 -5 27 -14 39l-38 57c-7 10 -15 26 -15 33c0 8 9 16 15 22c11 9 26 19 37 19c9 0 25 -14 33 -25c16 -21 28 -45 37 -69c5 -12 7 -25 7 -37c0 -29 -14 -55 -29 -80c-20 -31 -46 -59 -68 -89'], + 0xE3A8: [690,11,392,141,266,'141 46c0 31 28 57 63 57c34 0 62 -26 62 -57s-28 -57 -62 -57c-35 0 -63 26 -63 57zM187 184l-30 383c-2 19 -3 41 -3 58c0 12 1 24 4 36c2 7 6 15 13 20c11 7 24 9 37 9c10 0 20 -2 27 -8c12 -10 14 -24 14 -38c0 -29 -2 -58 -6 -87l-39 -371'], + 0xE3A9: [698,11,852,74,821,'398 356l2 43c61 -3 145 -3 218 -3c57 0 137 0 170 3l-3 -48c-45 7 -107 7 -160 7c5 -21 9 -42 9 -63c0 -67 -36 -127 -80 -180l3 -3c17 -17 37 -32 60 -44c16 -8 35 -15 54 -15c27 0 52 9 70 26c32 29 46 67 57 110l23 -5c-11 -58 -32 -116 -78 -158 c-28 -26 -66 -37 -105 -37c-55 0 -104 25 -142 59l-5 4c-44 -32 -104 -60 -167 -60c-67 0 -134 12 -182 55c-43 40 -68 93 -68 148c0 47 15 89 51 123c26 24 77 54 122 79c-18 39 -29 81 -29 123c0 50 19 99 58 135c31 29 75 43 120 43c31 0 62 -11 84 -32 c17 -15 27 -37 27 -60c0 -44 -15 -81 -51 -111c-33 -28 -114 -71 -132 -79c26 -53 63 -114 100 -163c32 -42 74 -85 113 -122c29 38 42 87 42 135c0 30 -17 58 -39 79c-18 16 -43 16 -67 16c-25 0 -50 -2 -75 -5zM474 68c-41 41 -82 92 -114 138c-38 52 -77 113 -103 170 c-26 -15 -48 -37 -56 -45c-29 -30 -42 -72 -42 -113c0 -54 23 -105 65 -143c30 -28 73 -44 116 -44c58 0 99 11 134 37zM315 435c29 17 61 37 76 51c28 25 37 61 37 96c0 21 -10 42 -27 57c-11 10 -31 24 -46 24c-24 0 -33 -3 -49 -17c-19 -18 -21 -62 -21 -87 c0 -43 12 -84 30 -124'], + 0xE3AA: [695,-436,305,121,193,'143 436l-20 193c-1 12 -2 24 -2 37c0 8 3 15 10 20c7 6 18 9 29 9c9 0 18 -1 24 -7c7 -7 9 -17 9 -26c0 -11 -2 -27 -4 -40l-29 -186h-17'], + 0xE3AB: [738,187,488,161,365,'365 -163v-24c-51 4 -98 42 -128 79c-34 43 -47 95 -57 146c-15 80 -19 161 -19 242c0 77 5 155 21 230c12 54 30 108 64 154c27 35 75 67 119 74v-27c-34 -8 -70 -38 -88 -72c-24 -47 -36 -98 -45 -150c-12 -71 -15 -143 -15 -215c0 -86 3 -172 19 -256 c6 -29 13 -58 24 -86c7 -20 17 -39 32 -55c19 -20 52 -36 73 -40'], + 0xE3AC: [736,189,490,133,341,'133 709v27c38 -7 72 -28 99 -54c43 -44 65 -101 81 -158c22 -83 28 -167 28 -252c0 -84 -5 -169 -22 -252c-12 -53 -29 -106 -67 -148c-29 -33 -85 -57 -119 -61v24c30 7 65 22 87 47c13 15 20 33 27 51c10 27 17 52 22 79c14 87 15 176 15 264c0 79 -6 158 -21 235 c-12 53 -26 106 -60 151c-17 22 -42 38 -70 47'], + 0xE3AD: [695,-436,448,179,258,'203 436l-22 193c-1 12 -2 24 -2 37c0 8 3 15 10 20c9 6 21 9 33 9c9 0 19 -1 26 -7c7 -7 10 -17 10 -26c0 -11 -3 -27 -5 -40l-31 -186h-19'], + 0xE3AE: [738,186,697,233,493,'493 -172v-14c-67 8 -120 41 -160 78c-45 43 -61 95 -74 146c-22 80 -26 161 -26 242c0 77 7 155 28 230c16 54 39 108 84 154c36 35 88 61 148 74v-19c-48 -17 -83 -46 -106 -80c-32 -47 -49 -98 -60 -150c-15 -71 -20 -143 -20 -215c0 -86 5 -172 25 -256 c7 -29 17 -58 31 -86c11 -20 23 -39 44 -55c25 -20 51 -42 86 -49'], + 0xE3AF: [735,187,697,198,468,'198 715v20c49 -7 91 -27 125 -53c58 -44 87 -101 108 -158c28 -83 37 -167 37 -252c0 -84 -6 -169 -30 -252c-15 -53 -34 -108 -84 -150c-40 -33 -97 -49 -156 -57v16c42 12 84 26 111 51c18 15 29 33 38 51c13 27 20 54 25 81c18 87 20 176 20 264c0 79 -6 158 -27 235 c-15 53 -35 106 -80 151c-22 22 -51 41 -87 53'], + 0xE3B0: [107,192,537,212,378,'245 -192l-17 18c24 23 42 49 57 75c8 12 10 25 10 38c0 15 -6 30 -18 42l-50 48c-10 10 -15 21 -15 33c0 13 10 26 25 34c14 6 27 11 42 11c16 0 28 -11 36 -20c21 -19 39 -40 51 -63c9 -16 12 -34 12 -51c0 -25 -13 -48 -33 -69c-30 -34 -64 -66 -100 -96'], + 0xE3B1: [275,-236,1227,135,1087,'1068 236h-933l24 39h928'], + 0xE3B2: [102,15,537,195,359,'275 102c45 0 84 -26 84 -58s-38 -59 -84 -59c-47 0 -80 28 -80 59s33 58 80 58'], + 0xE3B3: [479,198,861,164,755,'291 -198h-121l-6 23l426 533c2 3 4 5 4 8c0 4 -2 9 -12 9c-1 0 -267 -6 -400 -10l-15 11l33 103h555v-23c-184 -205 -337 -426 -464 -654'], + 0xE3B4: [715,5,861,154,701,'382 336c-27 -11 -53 -26 -70 -46c-26 -29 -32 -61 -32 -94c0 -47 24 -93 67 -126c24 -18 57 -32 90 -32c35 0 74 5 99 25c31 24 43 61 43 94c0 40 -29 76 -65 104c-35 27 -89 55 -132 75zM509 401c39 -20 91 -48 114 -66c45 -34 78 -79 78 -129c0 -54 -31 -104 -80 -142 c-62 -48 -149 -69 -237 -69c-61 0 -123 13 -167 46c-41 32 -63 75 -63 120c0 46 22 92 65 125c38 29 84 52 133 71c-44 28 -79 54 -110 90c-23 26 -40 55 -40 86c0 41 31 76 67 105c47 36 108 58 170 77c40 -2 79 -7 117 -16c26 -6 53 -14 73 -30c28 -22 46 -52 46 -83 c0 -36 -18 -69 -43 -99c-31 -35 -76 -63 -123 -86zM471 424c53 28 81 79 81 127c0 29 -11 58 -39 79c-29 23 -67 40 -105 46c-23 -9 -47 -26 -61 -41c-16 -18 -24 -43 -24 -65s20 -46 38 -63c32 -31 68 -57 110 -83'], + 0xE3B5: [488,195,861,137,709,'534 104c-33 -21 -82 -42 -118 -51c-20 -5 -54 -10 -74 -10c-52 0 -95 24 -131 52c-49 38 -74 90 -74 143c0 57 20 115 73 156c34 27 126 65 193 94c76 0 153 -14 207 -56c71 -55 99 -134 99 -211c0 -113 -34 -229 -140 -311c-98 -75 -234 -105 -371 -105v31 c84 5 169 19 229 66c66 50 108 124 115 196zM526 130c11 9 18 21 21 33c7 16 8 33 8 50c0 34 -5 69 -18 101c-11 26 -26 56 -51 76c-27 20 -62 45 -97 56c-34 -13 -49 -20 -68 -36c-16 -12 -32 -40 -39 -56c-8 -23 -11 -46 -11 -70c0 -54 34 -105 85 -143 c24 -19 60 -26 94 -26c27 0 56 0 76 15'], + 0xE3B6: [467,-33,1187,193,994,'204 467h790l-11 -39h-790zM204 270h790l-11 -39h-790zM204 72h790l-11 -39h-790'], + 0xE3B7: [648,152,1161,198,944,'913 -152l-694 265l1 11l12 24l17 2l684 -264l6 -12l-14 -22zM944 622l-3 -9l-626 -241v-12l622 -241l6 -10l-14 -23l-12 -5l-719 280v12l722 275l12 -3'], + 0xE3B8: [648,150,1125,219,967,'913 152l12 -4l14 -22l-6 -12l-684 -264l-17 2l-12 24l-1 11zM223 611l-2 10l12 24l12 3l722 -275v-12l-720 -280l-12 5l-11 24l6 9l622 243v9'], + 0xE3B9: [692,-449,537,117,408,'408 516l-25 -21c-35 21 -70 41 -106 60c0 -35 2 -70 10 -106h-38c4 38 5 76 6 114c-42 -22 -82 -44 -121 -68l-17 21c42 19 83 37 124 58c-40 20 -80 38 -124 55l32 24c33 -22 69 -44 106 -64c-1 34 -2 69 -4 103h37c-4 -33 -9 -66 -10 -99c36 19 72 39 107 60l22 -19 c-44 -19 -86 -38 -128 -59c42 -21 84 -40 129 -59'], + 0xE3BA: [598,83,1227,138,1092,'645 282h447l-21 -39h-426v-307l-61 -19v326h-446l21 39h425v302l61 14v-316'], + 0xE3BB: [598,84,1227,135,1092,'645 282h447l-21 -39h-426v-288h442l-19 -39h-933l24 39h425v288h-446l21 39h425v302l61 14v-316'], + 0xE3BC: [599,83,1227,135,1092,'645 282h447l-21 -39h-426v-307l-61 -19v326h-446l21 39h425v278h-449l24 39h928l-19 -39h-423v-278'], + 0xE3BD: [586,74,872,72,796,'454 276h341l-6 -40h-335v-270h342l-7 -40h-717l8 40h330v270h-338l8 40h330v304l44 6v-310'], + 0xE3BE: [586,74,872,72,796,'454 276h341l-6 -40h-335v-303l-44 -7v310h-338l8 40h330v270h-338l8 40h716l-7 -40h-335v-270'], + 0xE3BF: [119,15,925,99,826,'99 52c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67zM390 52c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67zM680 52c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67'], + 0xE3C0: [102,15,1136,178,958,'258 102c45 0 84 -26 84 -58s-38 -59 -84 -59c-47 0 -80 28 -80 59s33 58 80 58zM579 102c45 0 84 -26 84 -58s-38 -59 -84 -59c-47 0 -80 28 -80 59s33 58 80 58zM874 102c45 0 84 -26 84 -58s-38 -59 -84 -59c-47 0 -80 28 -80 59s33 58 80 58'], + 0xE3C1: [911,0,1000,195,551,'551 465v-437c0 -27 -1 -28 -29 -28h-45c-28 0 -29 1 -29 29v426c0 89 -26 171 -72 242c-61 93 -137 137 -174 160c-6 3 -7 4 -7 26c0 27 1 28 28 28c20 0 21 0 56 -20c200 -115 272 -297 272 -426'], + 0xE3C2: [911,0,1000,448,804,'551 883v-417c0 -79 16 -159 65 -239c63 -103 140 -148 181 -173c6 -3 7 -4 7 -26c0 -27 0 -28 -28 -28c-17 0 -19 0 -24 2c-115 53 -304 213 -304 451v429c0 28 1 29 29 29h45c28 0 29 -1 29 -28'], + 0xE3C3: [912,-1,1000,195,551,'448 457v426c0 28 1 29 29 29h45c28 0 29 -1 29 -28v-437c0 -109 -53 -303 -281 -432c-25 -14 -27 -14 -47 -14c-27 0 -28 1 -28 28c0 22 1 23 11 29c190 111 242 279 242 399'], + 0xE3C4: [1824,0,1000,195,551,'551 457v-429c0 -27 -1 -28 -29 -28h-45c-28 0 -29 1 -29 29v419c0 169 -85 335 -234 430c-18 11 -19 13 -19 34s1 22 16 32c160 101 237 272 237 432v419c0 28 1 29 29 29h45c28 0 29 -1 29 -28v-429c0 -102 -47 -315 -286 -455c239 -140 286 -353 286 -455'], + 0xE3C5: [1824,0,1000,448,804,'551 436v-408c0 -27 -1 -28 -29 -28h-45c-28 0 -29 1 -29 29v420c0 145 72 338 286 463c-214 125 -286 318 -286 463v420c0 28 1 29 29 29h45c28 0 29 -1 29 -28v-408c0 -123 36 -209 62 -257c64 -116 136 -161 184 -193c6 -4 7 -5 7 -26s-1 -23 -12 -30 c-172 -111 -241 -276 -241 -446'], + 0xE3C6: [324,0,1000,448,551,'551 296v-268c0 -27 -1 -28 -29 -28h-45c-28 0 -29 1 -29 29v266c0 28 1 29 29 29h45c28 0 29 -1 29 -28'], + 0xE3C7: [694,194,348,39,310,'39 694h25c14 -15 100 -104 246 -142v-49c-40 10 -126 36 -222 106v-764c0 -18 0 -39 -24 -39s-24 22 -24 39'], + 0xE3C8: [694,194,348,39,310,'310 694l-1 -849c0 -17 0 -39 -24 -39c-25 0 -25 21 -25 39v764c-96 -70 -182 -96 -221 -106v49c146 38 232 127 245 142h26'], + 0xE3C9: [694,194,348,39,310,'39 -194l1 849c0 17 0 39 24 39s24 -21 24 -39v-764c96 70 182 96 222 106v-49c-146 -38 -232 -127 -246 -142h-25'], + 0xE3CA: [694,194,348,39,310,'310 -194h-26c-13 15 -99 104 -245 142v49c39 -10 125 -36 221 -106v764c0 18 0 39 25 39c24 0 24 -22 24 -39'], + 0xE3CB: [610,109,1123,69,1053,'949 116h-841c-18 0 -39 0 -39 25c0 24 22 24 39 24h945v-25c-55 -35 -137 -116 -160 -249h-49c4 27 19 128 105 225zM1014 336h-945v25c55 35 137 116 160 249h49c-4 -27 -19 -128 -105 -225h841c18 0 39 0 39 -25c0 -24 -22 -24 -39 -24'], + 0xE3CC: [610,109,1123,69,1053,'173 116c86 -97 101 -198 105 -225h-49c-23 133 -105 214 -160 249v25h945c17 0 39 0 39 -24c0 -25 -21 -25 -39 -25h-841zM108 336c-17 0 -39 0 -39 24c0 25 21 25 39 25h841c-86 97 -101 198 -105 225h49c23 -133 105 -214 160 -249v-25h-945'], + 0xE3CD: [689,2,1244,127,1110,'138 627l-11 9l30 53c138 -9 277 -9 415 -1l-10 -58c-57 -11 -108 -36 -149 -70c-33 -26 -52 -61 -65 -97c-17 -47 -23 -96 -23 -144c0 -84 27 -169 99 -229c48 -40 116 -57 183 -57c75 0 151 17 204 62c37 30 61 69 78 110c19 49 28 101 28 153c0 81 -25 164 -95 223 c-35 29 -83 45 -132 53l25 55c132 -10 263 -14 395 -6l-20 -61c-74 3 -164 6 -229 11l-6 -15c30 -14 59 -30 85 -51c28 -25 48 -56 61 -90c15 -41 21 -85 21 -128c0 -95 -33 -190 -115 -257c-84 -71 -205 -94 -323 -94c-52 0 -106 5 -157 19c-42 12 -81 29 -113 55 c-72 60 -97 146 -97 230c0 93 28 189 108 256c35 28 70 51 114 66v12c-102 -4 -217 -9 -301 -9'], + 0xE3CE: [696,4,1049,133,924,'524 21l400 626l-2 42c-238 -14 -477 -6 -714 7l-74 -32l-1 -16c53 -85 106 -177 150 -267c63 -128 119 -253 172 -385zM286 642c182 0 367 -5 550 -2l3 -12c-96 -169 -192 -326 -306 -490h-13c0 1 -192 401 -242 495'], + 0xE3CF: [689,2,1048,59,985,'69 627l-10 9l29 53c129 -9 261 -9 391 -1l-11 -58c-53 -11 -101 -36 -140 -70c-30 -26 -48 -61 -61 -97c-16 -47 -21 -96 -21 -144c0 -84 25 -169 92 -229c46 -40 110 -57 173 -57c70 0 143 17 192 62c35 30 58 69 74 110c18 49 26 101 26 153c0 81 -24 164 -89 223 c-33 29 -78 45 -125 53l24 55c124 -10 247 -14 372 -6l-19 -61c-70 3 -155 6 -215 11l-7 -15c29 -14 57 -30 80 -51c27 -25 45 -56 58 -90c15 -41 20 -85 20 -128c0 -95 -31 -190 -108 -257c-79 -71 -193 -94 -304 -94c-50 0 -101 5 -148 19c-40 12 -77 29 -106 55 c-68 60 -92 146 -92 230c0 93 26 189 102 256c32 28 65 51 107 66v12c-96 -4 -205 -9 -284 -9'], + 0xE3D0: [696,4,865,65,810,'434 21l376 626l-2 42c-224 -14 -449 -6 -673 7l-68 -32l-2 -16c50 -85 100 -177 142 -267c58 -128 112 -253 161 -385zM209 642c172 0 346 -5 518 -2l3 -12c-90 -169 -181 -326 -288 -490h-13c0 1 -180 401 -227 495'], + 0xE3D1: [347,-178,855,123,733,'422 291c30 16 61 31 95 42c21 8 44 14 67 14c14 0 29 -3 42 -7c23 -6 41 -19 56 -34c18 -17 36 -42 51 -66l-26 -12c-15 22 -34 48 -49 59c-17 13 -37 18 -60 18c-35 0 -67 -13 -96 -28l-119 -63c-38 -20 -80 -36 -126 -36c-28 0 -59 13 -77 27c-24 18 -44 44 -57 70 l25 11c12 -18 26 -40 43 -50c15 -10 30 -17 53 -17c33 0 63 12 89 26'], + 0xE3D2: [347,-178,684,56,630,'337 291c29 16 58 31 90 42c20 8 42 14 63 14c14 0 27 -3 40 -7c21 -6 38 -19 53 -34c16 -17 34 -42 47 -66l-24 -12c-14 22 -32 48 -46 59c-17 13 -35 18 -56 18c-33 0 -64 -13 -91 -28l-112 -63c-36 -20 -75 -36 -118 -36c-27 0 -57 13 -74 27c-22 18 -40 44 -53 70 l24 11c11 -18 25 -40 40 -50c14 -10 29 -17 50 -17c31 0 59 12 84 26'], + 0xE3D3: [559,-38,440,93,370,'360 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16l154 433c5 15 16 46 57 46c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35'], + 0xE3D4: [559,-38,857,93,787,'360 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16l154 433c5 15 16 46 57 46c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35zM777 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16l154 433c5 15 16 46 57 46 c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35'], + 0xE3D5: [559,-38,1274,93,1204,'360 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16l154 433c5 15 16 46 57 46c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35zM777 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16l154 433c5 15 16 46 57 46 c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35zM1194 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16l154 433c5 15 16 46 57 46c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35'], + 0xE3D6: [559,-38,1691,93,1621,'360 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16l154 433c5 15 16 46 57 46c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35zM777 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16l154 433c5 15 16 46 57 46 c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35zM1194 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16l154 433c5 15 16 46 57 46c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35zM1611 465l-207 -410c-6 -12 -8 -17 -17 -17c-1 0 -43 10 -43 26c0 1 0 4 4 16 l154 433c5 15 16 46 57 46c30 0 62 -23 62 -59c0 -15 -9 -34 -10 -35'], + 0xE3D7: [559,-38,440,93,370,'103 465c-1 1 -10 20 -10 35c0 36 32 59 62 59c41 0 52 -31 57 -46l154 -433c4 -12 4 -15 4 -16c0 -16 -42 -26 -43 -26c-9 0 -11 5 -17 17'], + 0xE3D8: [559,-38,857,93,787,'520 465c-1 1 -10 20 -10 35c0 36 32 59 62 59c41 0 52 -31 57 -46l154 -433c4 -12 4 -15 4 -16c0 -16 -42 -26 -43 -26c-9 0 -11 5 -17 17zM103 465c-1 1 -10 20 -10 35c0 36 32 59 62 59c41 0 52 -31 57 -46l154 -433c4 -12 4 -15 4 -16c0 -16 -42 -26 -43 -26 c-9 0 -11 5 -17 17'], + 0xE3D9: [559,-38,1274,93,1204,'937 465c-1 1 -10 20 -10 35c0 36 32 59 62 59c41 0 52 -31 57 -46l154 -433c4 -12 4 -15 4 -16c0 -16 -42 -26 -43 -26c-9 0 -11 5 -17 17zM520 465c-1 1 -10 20 -10 35c0 36 32 59 62 59c41 0 52 -31 57 -46l154 -433c4 -12 4 -15 4 -16c0 -16 -42 -26 -43 -26 c-9 0 -11 5 -17 17zM103 465c-1 1 -10 20 -10 35c0 36 32 59 62 59c41 0 52 -31 57 -46l154 -433c4 -12 4 -15 4 -16c0 -16 -42 -26 -43 -26c-9 0 -11 5 -17 17'], + 0xE3DA: [578,78,769,108,635,'635 274v-48h-478c13 -144 138 -256 288 -256h190v-48h-190c-184 0 -337 145 -337 328s153 328 337 328h190v-48h-190c-150 0 -275 -112 -288 -256h478'], + 0xE3DB: [720,192,769,108,635,'606 715l6 -11l-60 -126h83v-48h-105l-121 -256h226v-48h-249l-100 -210c46 -29 100 -46 159 -46h190v-48h-190c-66 0 -127 18 -179 50l-78 -164l-35 8l-3 14l80 168c-74 60 -122 150 -122 252c0 183 153 328 337 328h60l66 140l12 2zM360 274l122 256h-37 c-150 0 -275 -112 -288 -256h203zM251 43l87 183h-181c7 -73 41 -137 94 -183'], + 0xE3DC: [578,78,769,132,659,'132 226v48h478c-13 144 -138 256 -288 256h-190v48h190c184 0 337 -145 337 -328s-153 -328 -337 -328h-190v48h190c150 0 275 112 288 256h-478'], + 0xE3DD: [720,192,769,132,659,'606 715l6 -11l-90 -190c83 -59 137 -155 137 -264c0 -183 -153 -328 -337 -328h-80l-54 -114l-35 8l-3 14l44 92h-62v48h84l122 256h-206v48h228l105 220c-42 23 -91 36 -143 36h-190v48h190c59 0 115 -15 163 -41l86 181l12 2zM386 226l-121 -256h57 c150 0 275 112 288 256h-224zM501 470l-92 -196h201c-7 80 -48 149 -109 196'], + 0xE3DE: [603,103,944,159,753,'753 278v-56h-536c15 -154 156 -269 322 -269h214v-56h-214c-203 0 -380 151 -380 353s177 353 380 353h214v-56h-214c-166 0 -307 -115 -322 -269h536'], + 0xE3DF: [722,182,944,159,781,'753 278v-56h-279l-131 -209c55 -38 123 -60 196 -60h214v-56h-214c-83 0 -162 25 -226 69l-92 -148h-61l113 180c-70 63 -114 151 -114 252c0 202 177 353 380 353h113l74 119l55 -9l-69 -110h41v-56h-76l-168 -269h244zM448 278l169 269h-78 c-166 0 -307 -115 -322 -269h231zM303 46l110 176h-196c7 -68 38 -129 86 -176'], + 0xE3E0: [603,103,944,187,781,'187 222v56h537c-16 154 -157 269 -323 269h-214v56h214c203 0 380 -151 380 -353s-177 -353 -380 -353h-214v56h214c166 0 307 115 323 269h-537'], + 0xE3E1: [722,182,944,160,781,'187 222v56h261l136 217c-52 33 -115 52 -183 52h-214v56h214c78 0 151 -22 213 -60l112 179l55 -9l-125 -200c76 -64 125 -156 125 -263c0 -202 -177 -353 -380 -353h-131l-49 -79h-61l49 79h-22v56h57l169 269h-226zM474 222l-169 -269h96c166 0 307 115 323 269h-250z M626 465l-117 -187h215c-8 74 -44 139 -98 187'], + 0xE3E2: [722,182,1101,162,963,'585 369l221 353l55 -9l-215 -344h317l-7 -40h-335l-99 -157h441l-7 -40h-459l-196 -314h-61l197 314h-275l8 40h292l98 157h-398l8 40h415'], + 0xE3E3: [720,192,873,80,808,'662 715l6 -11l-159 -335h299l-6 -40h-312l-74 -157h392l-6 -40h-405l-153 -324l-36 8l-2 14l143 302h-269l8 40h280l74 157h-362l8 40h373l165 349l12 2'], + 0xE3E4: [720,192,999,122,877,'724 715l6 -11l-113 -239h260l-10 -39h-268l-74 -157h352l-10 -39h-361l-75 -158h446l-10 -39h-454l-107 -225l-34 8l-4 14l97 203h-243l10 39h251l75 158h-336l10 39h345l74 157h-429l10 39h438l120 253l12 2'], + 0xE3E5: [722,182,1187,193,994,'375 33h-182l11 39h195l100 159h-306l11 39h319l99 158h-429l11 39h442l160 255l55 -9l-154 -246h287l-11 -39h-300l-99 -158h410l-11 -39h-424l-99 -159h534l-11 -39h-547l-135 -215h-61'], + 0xE3E6: [599,-5,769,78,689,'78 385c0 135 142 214 305 214c164 0 306 -79 306 -214v-380h-48v380c0 105 -120 166 -258 166s-257 -62 -257 -166v-380h-48v380'], + 0xE3E7: [575,19,769,78,689,'126 195c0 -105 119 -166 257 -166s258 61 258 166v380h48v-380c0 -136 -142 -214 -306 -214c-163 0 -305 78 -305 214v380h48v-380'], + 0xE3E8: [606,-6,944,125,816,'125 387c0 164 189 219 345 219s346 -55 346 -219v-381h-56v381c0 130 -178 163 -290 163c-111 0 -289 -33 -289 -163v-381h-56v381'], + 0xE3E9: [578,22,944,125,816,'181 197c0 -131 178 -163 289 -163c112 0 290 32 290 163v381h56v-381c0 -164 -190 -219 -346 -219s-345 55 -345 219v381h56v-381'], + 0xE3EA: [578,78,892,108,758,'445 530c-159 0 -289 -124 -289 -280s130 -280 289 -280h313v-48h-313c-184 0 -337 145 -337 328s153 328 337 328h313v-48h-313'], + 0xE3EB: [578,78,892,132,782,'445 578c184 0 337 -145 337 -328s-153 -328 -337 -328h-313v48h313c159 0 289 124 289 280s-130 280 -289 280h-313v48h313'], + 0xE3EC: [685,195,892,108,758,'445 637c-159 0 -289 -124 -289 -280s130 -280 289 -280h313v-48h-313c-184 0 -337 145 -337 328s153 328 337 328h313v-48h-313zM157 -195v48h601v-48h-601'], + 0xE3ED: [685,195,892,132,782,'445 685c184 0 337 -145 337 -328s-153 -328 -337 -328h-313v48h313c159 0 289 124 289 280s-130 280 -289 280h-313v48h313zM733 -147v-48h-601v48h601'], + 0xE3EE: [720,192,892,108,758,'671 715l6 -11l-60 -126h141v-48h-163l-256 -541c33 -12 69 -19 106 -19h313v-48h-313c-45 0 -87 8 -127 24l-65 -138l-35 8l-3 14l64 135c-102 56 -171 162 -171 285c0 183 153 328 337 328h125l66 140l12 2zM445 530c-159 0 -289 -124 -289 -280 c0 -104 58 -194 143 -242l248 522h-102'], + 0xE3EF: [720,192,892,132,782,'671 715l6 -11l-77 -163c107 -54 182 -163 182 -291c0 -183 -153 -328 -337 -328h-138l-54 -114l-35 8l-3 14l44 92h-127v48h149l259 545c-30 10 -62 15 -95 15h-313v48h313c40 0 79 -7 115 -20l76 160l12 2zM579 498l-249 -528h115c159 0 289 124 289 280 c0 108 -63 201 -155 248'], + 0xE3F0: [746,244,892,108,758,'694 741l6 -11l-22 -45h80v-48h-103l-267 -555c18 -3 37 -5 57 -5h313v-48h-313c-27 0 -53 3 -79 9l-89 -185h481v-48h-504l-24 -49l-34 8l-4 14l14 27h-49v48h72l95 198c-125 47 -216 165 -216 306c0 183 153 328 337 328h185l28 59l12 2zM445 637 c-159 0 -289 -124 -289 -280c0 -121 79 -223 189 -263l262 543h-162'], + 0xE3F1: [746,244,892,132,782,'694 741l6 -11l-54 -110c82 -60 136 -155 136 -263c0 -183 -153 -328 -337 -328h-83l-85 -176h456v-48h-479l-24 -49l-34 8l-4 14l14 27h-74v48h97l85 176h-182v48h205l252 523c-43 24 -92 37 -144 37h-313v48h313c60 0 116 -15 165 -42l48 101l12 2zM625 576l-240 -499 h60c159 0 289 124 289 280c0 89 -43 168 -109 219'], + 0xE3F2: [685,249,892,108,758,'449 -249l-36 1l-6 13l10 40h-260v48h271l14 59l11 4h23l9 -9l-13 -54h286v-48h-297zM445 637c-159 0 -289 -124 -289 -280s130 -280 289 -280h313v-48h-313c-184 0 -337 145 -337 328s153 328 337 328h313v-48h-313'], + 0xE3F3: [685,249,892,132,782,'449 -249l-36 1l-6 13l10 40h-285v48h296l14 59l11 4h23l9 -9l-13 -54h261v-48h-272zM445 685c184 0 337 -145 337 -328s-153 -328 -337 -328h-313v48h313c159 0 289 124 289 280s-130 280 -289 280h-313v48h313'], + 0xE3F4: [603,103,1083,159,892,'540 547c-177 0 -325 -130 -325 -297s148 -297 325 -297h352v-56h-352c-204 0 -381 151 -381 353s177 353 381 353h352v-56h-352'], + 0xE3F5: [603,103,1083,187,920,'540 603c203 0 380 -151 380 -353s-177 -353 -380 -353h-353v56h353c176 0 324 130 324 297s-148 297 -324 297h-353v56h353'], + 0xE3F6: [719,228,1083,159,892,'540 663c-177 0 -325 -130 -325 -297s148 -297 325 -297h352v-56h-352c-204 0 -381 151 -381 353s177 353 381 353h352v-56h-352zM216 -228v56h676v-56h-676'], + 0xE3F7: [719,228,1083,187,920,'540 719c203 0 380 -151 380 -353s-177 -353 -380 -353h-353v56h353c176 0 324 130 324 297s-148 297 -324 297h-353v56h353zM864 -172v-56h-677v56h677'], + 0xE3F8: [722,182,1083,159,892,'540 547c-177 0 -325 -130 -325 -297c0 -101 54 -188 135 -241l338 538h-148zM748 547l-352 -563c43 -20 92 -31 144 -31h352v-56h-352c-62 0 -122 14 -174 39l-74 -118h-61l90 143c-97 63 -162 167 -162 289c0 202 177 353 381 353h183l74 119l55 -9l-69 -110h109v-56 h-144'], + 0xE3F9: [722,182,1083,187,920,'672 522c-41 16 -86 25 -132 25h-353v56h353c57 0 112 -12 162 -33l95 152l55 -9l-105 -167c103 -62 173 -169 173 -296c0 -202 -177 -353 -380 -353h-199l-49 -79h-61l49 79h-93v56h128zM718 499l-342 -546h164c176 0 324 130 324 297c0 105 -59 196 -146 249'], + 0xE3FA: [782,269,1083,159,892,'878 771l5 -11l-26 -41h35v-56h-70l-365 -585c26 -6 54 -9 83 -9h352v-56h-352c-40 0 -78 5 -114 16l-126 -201h592v-56h-627l-26 -41l-43 15l-2 14l22 34v34h21l138 220c-126 56 -216 174 -216 318c0 202 177 353 381 353h255l39 62l12 1zM540 663 c-177 0 -325 -130 -325 -297c0 -122 79 -224 189 -270l356 567h-220'], + 0xE3FB: [782,269,1083,187,920,'878 771l5 -11l-85 -135c74 -63 122 -154 122 -259c0 -202 -177 -353 -380 -353h-125l-115 -185h564v-56h-599l-26 -41l-43 15l-2 14l8 12h-15v56h50l116 185h-166v56h201l338 540c-53 34 -117 54 -186 54h-353v56h353c79 0 154 -23 216 -62l78 124l12 1zM768 577 l-318 -508h90c176 0 324 130 324 297c0 83 -37 158 -96 211'], + 0xE3FC: [719,299,1083,159,892,'543 -299l-53 1l-6 13l16 57h-284v56h299l24 84l11 4h40l9 -9l-22 -79h315v-56h-330zM540 663c-177 0 -325 -130 -325 -297s148 -297 325 -297h352v-56h-352c-204 0 -381 151 -381 353s177 353 381 353h352v-56h-352'], + 0xE3FD: [719,299,1083,187,920,'543 -299l-53 1l-6 13l16 57h-313v56h328l24 84l11 4h40l9 -9l-22 -79h287v-56h-302zM540 719c203 0 380 -151 380 -353s-177 -353 -380 -353h-353v56h353c176 0 324 130 324 297s-148 297 -324 297h-353v56h353'], + 0xE3FE: [302,-185,1136,178,958,'258 302c45 0 84 -26 84 -58s-38 -59 -84 -59c-47 0 -80 28 -80 59s33 58 80 58zM579 302c45 0 84 -26 84 -58s-38 -59 -84 -59c-47 0 -80 28 -80 59s33 58 80 58zM874 302c45 0 84 -26 84 -58s-38 -59 -84 -59c-47 0 -80 28 -80 59s33 58 80 58'], + 0xE3FF: [319,-185,925,99,826,'99 252c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67zM390 252c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67zM680 252c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67'], + 0xE400: [607,-64,749,93,653,'302 335c-1 37 30 68 71 70c41 1 74 -28 75 -65s-30 -68 -71 -69c-41 -2 -73 27 -75 64zM93 130c0 37 31 68 72 68c41 1 74 -28 74 -65c1 -37 -30 -68 -71 -69c-41 0 -74 29 -75 66zM507 540c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67'], + 0xE401: [624,-71,934,170,768,'678 624c45 4 86 -18 90 -50c3 -31 -33 -62 -78 -66c-47 -5 -83 20 -86 51s28 61 74 65zM472 416c45 2 85 -22 87 -53c2 -32 -35 -61 -81 -64c-47 -2 -81 24 -83 55c-1 31 30 60 77 62zM246 189c45 3 86 -20 88 -52s-34 -62 -80 -65c-47 -3 -81 23 -83 54 c-3 31 29 60 75 63'], + 0xE402: [607,-64,749,93,653,'444 335c-1 -37 -34 -66 -75 -64c-41 1 -72 32 -71 69c2 37 34 66 75 65c41 -2 72 -33 71 -70zM653 130c0 -37 -33 -66 -74 -66c-41 1 -72 32 -72 69c1 37 34 66 75 65c41 0 72 -31 71 -68zM93 540c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67'], + 0xE403: [624,-71,934,170,768,'260 624c47 -4 77 -34 74 -65s-39 -56 -85 -51c-46 4 -81 35 -78 66c3 32 44 54 89 50zM466 416c47 -2 78 -31 77 -62c-2 -31 -36 -57 -83 -55c-46 3 -82 32 -81 64c2 31 42 55 87 53zM692 189c47 -3 78 -32 76 -63s-37 -57 -84 -54c-46 3 -82 33 -80 65s43 55 88 52'], + 0xE404: [362,-245,537,186,350,'266 362c46 0 84 -26 84 -58s-38 -59 -84 -59s-80 28 -80 59s34 58 80 58'], + 0xE405: [379,-245,372,113,259,'113 312c0 37 32 67 73 67s73 -30 73 -67s-32 -67 -73 -67s-73 30 -73 67'], + 0xE406: [698,97,449,200,248,'248 -89l-48 -8v787l48 8v-787'], + 0xE407: [698,97,302,128,173,'173 -89l-45 -8v787l45 8v-787'], + 0xE408: [735,235,462,134,380,'186 250l194 -466l-44 -19l-202 485l202 485l44 -19'], + 0xE409: [735,235,462,79,326,'124 735l202 -485l-202 -485l-45 19l195 466l-195 466'], + 0xE40A: [734,234,597,186,466,'248 250l218 -460l-51 -24l-229 484l229 484l51 -24'], + 0xE40B: [734,234,597,127,407,'178 734l229 -484l-229 -484l-51 24l218 460l-218 460'], + 0xE40C: [738,167,676,200,476,'476 -159l-48 -8v897l48 8v-897zM248 -159l-48 -8v897l48 8v-897'], + 0xE40D: [738,167,517,128,389,'389 -159l-45 -8v897l45 8v-897zM173 -159l-45 -8v897l45 8v-897'], + 0xE40E: [911,200,990,59,960,'867 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218v-121c0 -13 0 -266 -3 -303c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47c6 -6 20 -15 40 -15c85 0 85 118 85 246 c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57c-29 0 -61 18 -61 58c0 33 18 45 22 48zM477 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218v-121c0 -13 0 -266 -3 -303 c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47c6 -6 20 -15 40 -15c85 0 85 118 85 246c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57 c-29 0 -61 18 -61 58c0 33 18 45 22 48'], + 0xE40F: [911,200,1380,59,1350,'1257 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218v-121c0 -13 0 -266 -3 -303c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47c6 -6 20 -15 40 -15c85 0 85 118 85 246 c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57c-29 0 -61 18 -61 58c0 33 18 45 22 48zM867 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218v-121c0 -13 0 -266 -3 -303 c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47c6 -6 20 -15 40 -15c85 0 85 118 85 246c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57 c-29 0 -61 18 -61 58c0 33 18 45 22 48zM477 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218v-121c0 -13 0 -266 -3 -303c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47 c6 -6 20 -15 40 -15c85 0 85 118 85 246c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57c-29 0 -61 18 -61 58c0 33 18 45 22 48'], + 0xE410: [911,200,1770,59,1740,'1647 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218v-121c0 -13 0 -266 -3 -303c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47c6 -6 20 -15 40 -15c85 0 85 118 85 246 c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57c-29 0 -61 18 -61 58c0 33 18 45 22 48zM1257 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218v-121c0 -13 0 -266 -3 -303 c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47c6 -6 20 -15 40 -15c85 0 85 118 85 246c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57 c-29 0 -61 18 -61 58c0 33 18 45 22 48zM867 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218v-121c0 -13 0 -266 -3 -303c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47 c6 -6 20 -15 40 -15c85 0 85 118 85 246c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95c0 -28 -16 -57 -54 -57c-29 0 -61 18 -61 58c0 33 18 45 22 48zM477 865c-11 10 -25 14 -40 14c-80 0 -80 -111 -80 -231c0 -30 2 -128 2 -218 v-121c0 -13 0 -266 -3 -303c-8 -100 -54 -206 -166 -206c-70 0 -131 31 -131 95c0 28 16 57 54 57c29 0 61 -18 61 -58c0 -31 -18 -45 -22 -47c6 -6 20 -15 40 -15c85 0 85 118 85 246c0 100 -2 156 -2 322c0 68 -1 246 3 303c2 43 24 208 161 208c69 0 131 -30 131 -95 c0 -28 -16 -57 -54 -57c-29 0 -61 18 -61 58c0 33 18 45 22 48'], + 0xE411: [679,5,646,18,626,'158 455h328l96 224l44 -18l-282 -666h-44l-282 666l44 18zM178 407l144 -341l144 341h-288'], + 0xE412: [694,0,646,101,566,'117 323v48h401v275h-417v48h465v-694h-465v48h417v275h-401'], + 0xE413: [507,3,892,193,701,'665 -3l-219 219l-220 -219l-33 36l218 218l-218 218l33 35l220 -219l223 222l32 -37l-220 -220l217 -217'], + 0xE414: [562,61,874,72,796,'503 491c0 -38 -31 -70 -70 -70c-34 0 -69 28 -69 71c0 38 31 70 70 70c34 0 69 -28 69 -71zM503 9c0 -39 -33 -70 -69 -70c-37 0 -70 30 -70 71c0 38 31 70 70 70c34 0 69 -28 69 -71zM789 236h-717l8 40h716'], + 0xE415: [522,22,585,19,563,'563 250l-272 -272l-272 272l272 272zM495 250l-204 204l-204 -204l204 -204'], + 0xE416: [619,118,892,77,815,'815 250c0 -201 -165 -368 -369 -368c-202 0 -369 164 -369 369c0 201 165 368 369 368c202 0 369 -164 369 -369zM112 268h317v317c-184 -11 -312 -161 -317 -317zM463 585v-317h317c-5 156 -134 306 -317 317zM429 -84v318h-318c8 -165 140 -307 318 -318zM781 234 h-318v-318c178 11 310 153 318 318'], + 0xE417: [619,118,892,77,815,'815 250c0 -201 -165 -368 -369 -368c-202 0 -369 164 -369 369c0 201 165 368 369 368c202 0 369 -164 369 -369zM112 268h668c-5 165 -147 317 -334 317s-329 -152 -334 -317zM781 234h-670c9 -174 154 -318 335 -318c182 0 326 144 335 318'], + 0xE418: [619,118,892,77,815,'815 250c0 -201 -165 -368 -369 -368c-202 0 -369 164 -369 369c0 201 165 368 369 368c202 0 369 -164 369 -369zM222 499l224 -224l224 224c-41 37 -118 86 -224 86s-183 -49 -224 -86zM198 27l224 224l-224 223c-52 -54 -87 -136 -87 -224c0 -82 32 -166 87 -223z M694 474l-224 -224l224 -223c52 54 87 136 87 224c0 82 -32 166 -87 223zM670 2l-224 224l-224 -224c41 -37 118 -86 224 -86s183 49 224 86'], + 0xE419: [619,118,892,77,815,'815 250c0 -201 -165 -368 -369 -368c-202 0 -369 164 -369 369c0 201 165 368 369 368c202 0 369 -164 369 -369zM198 27l472 472c-41 37 -118 86 -224 86c-184 0 -335 -149 -335 -335c0 -82 32 -166 87 -223zM694 474l-472 -472c41 -37 118 -86 224 -86 c184 0 335 149 335 335c0 82 -32 166 -87 223'], + 0xE41A: [619,118,892,77,815,'815 250c0 -201 -165 -368 -369 -368c-202 0 -369 164 -369 369c0 201 165 368 369 368c202 0 369 -164 369 -369zM446 -84c184 0 335 149 335 335c0 182 -149 334 -335 334c-184 0 -335 -149 -335 -335c0 -182 149 -334 335 -334zM521 250c0 -39 -31 -74 -75 -74 c-41 0 -75 33 -75 75c0 39 31 74 75 74c41 0 75 -33 75 -75'], + 0xE41B: [714,214,1138,77,1061,'1061 250c0 -254 -218 -464 -492 -464c-275 0 -492 210 -492 464s218 464 492 464c275 0 492 -210 492 -464zM569 -165c248 0 443 188 443 415s-195 415 -443 415s-443 -188 -443 -415s195 -415 443 -415'], + 0xE41C: [465,-36,585,77,507,'507 250c0 -117 -95 -214 -215 -214c-118 0 -215 94 -215 215c0 117 95 214 215 214c118 0 215 -94 215 -215zM292 85c92 0 166 73 166 166c0 89 -72 165 -166 165c-92 0 -166 -73 -166 -166c0 -89 72 -165 166 -165'], + 0xE41D: [465,-36,585,77,507,'507 250c0 -117 -95 -214 -215 -214c-118 0 -215 94 -215 215c0 117 95 214 215 214c118 0 215 -94 215 -215'], + 0xE41E: [678,6,805,58,743,'214 459h373l106 219l50 -24l-317 -660h-50l-318 660l51 24zM241 403l160 -332l159 332h-319'], + 0xE41F: [694,0,805,153,677,'170 319v56h451v263h-468v56h524v-694h-524v56h468v263h-451'], + 0xE420: [538,38,1083,255,831,'788 -37l-247 247l-248 -248l-38 40l247 248l-247 248l39 40l248 -248l247 247l40 -39l-248 -248l250 -251'], + 0xE421: [584,84,1232,135,1087,'687 509c0 -41 -34 -75 -75 -75s-75 34 -75 75s34 75 75 75s75 -34 75 -75zM687 -9c0 -41 -34 -75 -75 -75s-75 34 -75 75s34 75 75 75s75 -34 75 -75zM1068 231h-933l24 39h928'], + 0xE422: [557,57,736,59,673,'673 250l-307 -307l-307 307l307 307zM594 250l-228 228l-228 -228l228 -228'], + 0xE423: [667,167,1083,125,958,'958 250c0 -230 -187 -417 -417 -417c-226 0 -416 185 -416 417c0 230 187 417 417 417c226 0 416 -185 416 -417zM168 271h353v353c-194 -10 -344 -167 -353 -353zM563 624v-353h352c-9 181 -153 342 -352 353zM521 -124v353h-353c9 -185 159 -343 353 -353zM915 229 h-352v-353c199 11 343 172 352 353'], + 0xE424: [667,167,1083,125,958,'958 250c0 -230 -187 -417 -417 -417c-226 0 -416 185 -416 417c0 230 187 417 417 417c226 0 416 -185 416 -417zM168 271h747c-9 193 -170 354 -374 354c-200 0 -364 -159 -373 -354zM915 229h-747c9 -193 170 -354 374 -354c200 0 364 159 373 354'], + 0xE425: [667,167,1083,125,958,'958 250c0 -230 -187 -417 -417 -417c-226 0 -416 185 -416 417c0 230 187 417 417 417c226 0 416 -185 416 -417zM292 529l250 -249l249 250c-88 75 -177 95 -250 95c-81 0 -174 -28 -249 -96zM262 0l250 250l-250 250c-46 -52 -95 -139 -95 -250 c0 -109 47 -196 95 -250zM821 500l-250 -250l250 -250c46 52 95 139 95 250c0 109 -47 196 -95 250zM791 -29l-250 249l-249 -250c87 -75 176 -95 250 -95c81 0 174 28 249 96'], + 0xE426: [667,167,1083,125,958,'958 250c0 -230 -187 -417 -417 -417c-226 0 -416 185 -416 417c0 230 187 417 417 417c226 0 416 -185 416 -417zM262 0l529 530c-88 75 -177 95 -250 95c-206 0 -374 -168 -374 -375c0 -109 47 -196 95 -250zM821 500l-529 -530c87 -75 176 -95 250 -95 c206 0 374 168 374 375c0 109 -47 196 -95 250'], + 0xE427: [667,167,1083,125,958,'958 250c0 -230 -187 -417 -417 -417c-226 0 -416 185 -416 417c0 230 187 417 417 417c226 0 416 -185 416 -417zM542 -125c206 0 374 168 374 375c0 205 -166 375 -375 375c-206 0 -374 -168 -374 -375c0 -205 165 -375 375 -375zM621 250c0 -42 -34 -79 -80 -79 c-43 0 -79 36 -79 79c0 42 34 79 80 79c43 0 79 -36 79 -79'], + 0xE428: [716,216,1361,125,1236,'1236 250c0 -248 -237 -466 -556 -466c-315 0 -555 216 -555 466c0 248 237 466 556 466c315 0 555 -216 555 -466zM681 -160c284 0 499 191 499 410c0 218 -213 410 -500 410c-284 0 -499 -191 -499 -410c0 -218 213 -410 500 -410'], + 0xE429: [493,-7,736,125,611,'611 250c0 -134 -109 -243 -243 -243s-243 109 -243 243s109 243 243 243s243 -109 243 -243zM368 63c103 0 187 84 187 187s-84 187 -187 187s-187 -84 -187 -187s84 -187 187 -187'], + 0xE42A: [493,-7,736,125,611,'611 250c0 -134 -109 -243 -243 -243s-243 109 -243 243s109 243 243 243s243 -109 243 -243'], + 0xE42B: [802,110,646,93,566,'549 797l6 -11l-44 -92h55v-694h-383l-52 -110l-35 8l-3 14l42 88h-34v48h57l130 275h-171v48h194l130 275h-340v48h363l50 106l12 2zM336 323l-130 -275h312v275h-182zM489 646l-130 -275h159v275h-29'], + 0xE42C: [800,104,805,97,718,'170 319v56h227l165 263h-409v56h444l66 106l55 -9l-60 -97h19v-694h-454l-65 -104h-61l65 104h-9v56h44l165 263h-192zM423 319l-165 -263h363v263h-198zM621 636l-163 -261h163v261'], + 0xE42D: [575,19,769,78,689,'359 492h48v-161h161v-48h-161v-160h-48v160h-160v48h160v161zM126 195c0 -105 119 -166 257 -166s258 61 258 166v380h48v-380c0 -136 -142 -214 -306 -214c-163 0 -305 78 -305 214v380h48v-380'], + 0xE42E: [578,22,943,125,816,'442 514h56v-177h177v-56h-177v-177h-56v177h-177v56h177v177zM181 197c0 -131 178 -163 289 -163c112 0 290 32 290 163v381h56v-381c0 -164 -190 -219 -346 -219s-345 55 -345 219v381h56v-381'], + 0xE42F: [685,195,1000,118,782,'166 637v-560h616v-48h-664v656h664v-48h-616zM132 -195v48h650v-48h-650'], + 0xE430: [685,195,1000,108,772,'108 685h664v-656h-664v48h616v560h-616v48zM758 -147v-48h-650v48h650'], + 0xE431: [719,228,1000,171,920,'227 663v-594h693v-56h-749v706h749v-56h-693zM187 -228v56h733v-56h-733'], + 0xE432: [719,228,1000,159,909,'159 719h750v-706h-750v56h694v594h-694v56zM892 -172v-56h-733v56h733'], + 0xE433: [681,10,761,55,751,'353 516h-298l7 40h297zM736 107l15 -10v-11c-31 -30 -58 -53 -95 -72c-26 -14 -51 -24 -83 -24c-22 0 -43 10 -54 26c-13 20 -20 46 -20 73c0 54 5 141 5 177c0 24 -2 47 -6 72c-3 17 -13 36 -29 48c-19 12 -38 18 -63 18s-56 -8 -79 -16c-32 -14 -53 -26 -81 -44 c0 -110 -3 -220 -3 -328l-81 -22l-7 10c8 132 15 264 16 396c0 52 0 125 -3 156c-3 20 -5 42 -19 60c-10 12 -57 20 -87 26v18l5 4l178 17l7 -7c-4 -85 -4 -184 -4 -276l9 -8c41 22 82 42 128 58c31 10 62 18 99 18c17 0 53 -10 74 -28c15 -12 21 -30 23 -48 c4 -28 4 -88 4 -130c0 -44 -1 -108 1 -132c1 -16 3 -34 15 -50c7 -10 20 -16 33 -16c18 0 36 5 52 12c22 11 37 22 50 33'], + 0xE434: [681,10,939,115,862,'443 516h-328l7 40h329zM846 107l16 -10v-11c-34 -30 -62 -53 -101 -72c-28 -14 -55 -24 -88 -24c-23 0 -46 10 -58 26c-14 20 -21 46 -21 73c0 54 5 141 5 177c0 24 -2 47 -6 72c-4 17 -14 36 -30 48c-21 12 -41 18 -68 18c-26 0 -60 -8 -84 -16 c-33 -14 -56 -26 -86 -44c0 -110 -2 -220 -2 -328l-87 -22l-7 10c8 132 16 264 17 396c0 52 0 125 -4 156c-2 20 -5 42 -20 60c-10 12 -60 20 -93 26v18l6 4l190 17l7 -7c-5 -85 -5 -184 -5 -276l10 -8c43 22 88 42 136 58c33 10 66 18 105 18c18 0 56 -10 78 -28 c16 -12 23 -30 25 -48c4 -28 4 -88 4 -130c0 -44 -1 -108 1 -132c1 -16 4 -34 16 -50c8 -10 21 -16 36 -16c19 0 38 5 55 12c23 11 38 22 53 33'], + 0xE435: [699,7,916,57,851,'456 23l-136 -30c-36 125 -76 249 -126 371c-38 93 -84 183 -136 273l-1 11l134 51c74 -6 405 -13 405 -13c115 0 230 6 252 7c0 -1 2 -21 3 -35c-139 -209 -297 -449 -395 -635zM745 625l-484 12c-12 -9 -22 -14 -22 -14c75 -161 139 -335 198 -499c4 2 14 4 15 4 c90 164 195 339 293 497'], + 0xE436: [699,7,1117,132,976,'556 23l-145 -30c-38 125 -81 249 -134 371c-41 93 -89 183 -144 273l-1 11l143 51c78 -6 430 -13 430 -13c123 0 245 6 268 7c0 -1 2 -21 3 -35c-147 -209 -315 -449 -420 -635zM864 625l-515 12c-14 -9 -23 -14 -23 -14c78 -161 147 -335 210 -499c4 2 15 4 16 4 c96 164 207 339 312 497'], + 0xE437: [500,-1,1123,69,1053,'69 50v400h49v-175h844c-27 34 -85 109 -118 225h49c11 -36 48 -155 160 -250c-79 -63 -130 -153 -160 -249h-49c33 116 91 191 118 225h-844v-176h-49'], + 0xE438: [500,-1,1123,70,1054,'1054 50v400h-49v-175h-844c27 34 85 109 118 225h-49c-11 -36 -48 -155 -160 -250c79 -63 130 -153 160 -249h49c-33 116 -91 191 -118 225h844v-176h49'], + 0xE439: [588,-1,1123,70,1053,'252 275c-73 0 -132 59 -132 132s58 131 131 131v50c-100 0 -181 -81 -181 -181s82 -181 182 -181h710c-27 -34 -85 -109 -118 -225h49c30 96 81 186 160 249c-112 95 -149 214 -160 250h-49c33 -116 91 -191 118 -225h-710'], + 0xE43A: [588,-1,1123,70,1053,'871 275c73 0 132 59 132 132s-58 131 -131 131v50c100 0 181 -81 181 -181s-82 -181 -182 -181h-710c27 -34 85 -109 118 -225h-49c-30 96 -81 186 -160 249c112 95 149 214 160 250h49c-33 -116 -91 -191 -118 -225h710'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/NonUnicode/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Normal/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Normal/Regular/Main.js new file mode 100644 index 0000000..7b792b3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Normal/Regular/Main.js @@ -0,0 +1,145 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Normal/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Normal'] = { + directory: 'Normal/Regular', + family: 'NeoEulerMathJax_Normal', + id: 'NEOEULERNORMAL', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x210E: [681,10,621,27,637,'624 107l13 -10v-11c-28 -30 -51 -53 -84 -72c-23 -14 -45 -24 -73 -24c-19 0 -38 10 -48 26c-12 20 -18 46 -18 73c0 54 4 141 4 177c0 24 -1 47 -5 72c-3 17 -11 36 -25 48c-17 12 -34 18 -56 18s-50 -8 -70 -16c-28 -14 -47 -26 -72 -44c0 -110 -2 -220 -2 -328 l-72 -22l-6 10c7 132 13 264 14 396c0 52 0 125 -3 156c-2 20 -4 42 -17 60c-8 12 -50 20 -77 26v18l5 4l158 17l6 -7c-4 -85 -4 -184 -4 -276l8 -8c36 22 73 42 113 58c28 10 55 18 88 18c15 0 47 -10 65 -28c13 -12 19 -30 21 -48c3 -28 3 -88 3 -130 c0 -44 -1 -108 1 -132c1 -16 3 -34 13 -50c7 -10 18 -16 30 -16c16 0 32 5 46 12c19 11 32 22 44 33'], + 0x1D400: [687,14,829,3,821,'131 10l-126 -11l-2 10c135 201 259 406 370 619c1 1 1 3 1 5c0 1 -1 4 -3 4l-94 12v38h224l111 -373c20 -65 41 -130 73 -191c8 -14 16 -28 28 -41c16 -16 26 -20 43 -20s39 4 58 8l7 -28c-36 -16 -71 -31 -108 -42c-24 -8 -48 -14 -73 -14c-22 0 -44 6 -58 22 c-19 23 -31 50 -39 78l-51 182h-251c-34 -64 -76 -171 -110 -258zM461 320c3 0 9 2 9 5s0 11 -1 13l-65 205c-2 6 -7 8 -9 8s-6 -3 -9 -8l-105 -208c-2 -3 -2 -5 -2 -9c0 -3 7 -6 11 -6h171'], + 0x1D401: [703,2,726,40,641,'421 379v-11c36 -3 71 -9 105 -20c26 -8 51 -20 70 -37c30 -28 45 -65 45 -104c0 -53 -18 -106 -60 -144c-26 -24 -60 -38 -95 -48c-46 -12 -93 -17 -141 -17h-244v16c9 6 24 13 28 22c7 15 8 31 8 48v482c0 26 0 61 -14 74c-12 11 -27 20 -83 36v21l6 6h308 c47 0 92 -3 137 -14c32 -8 64 -19 87 -40c29 -26 39 -63 39 -99c0 -39 -17 -76 -47 -104c-40 -36 -97 -56 -149 -67zM262 117c0 -23 0 -59 9 -67c8 -7 21 -10 32 -10c50 0 103 10 139 43s54 79 54 126c0 36 -18 69 -46 95c-18 17 -44 25 -70 31c-37 9 -80 11 -118 12v-230z M262 385c33 0 71 2 103 11c24 6 48 16 66 32c33 30 50 72 50 114c0 32 -11 65 -36 88c-14 12 -32 18 -50 23c-26 6 -52 8 -79 8c-13 0 -29 -1 -41 -5c-5 -1 -9 -6 -10 -10c-3 -5 -3 -28 -3 -42v-219'], + 0x1D402: [711,18,789,86,751,'751 585l-94 -86l-16 3c-12 46 -31 91 -68 125c-31 28 -75 39 -118 39c-47 0 -92 -15 -125 -45c-75 -68 -97 -166 -97 -261s27 -192 102 -260c42 -38 100 -57 159 -57c81 0 158 29 228 63l21 -25c-84 -59 -184 -99 -290 -99c-51 0 -102 6 -151 21c-40 12 -78 30 -108 58 c-78 70 -108 171 -108 270s26 201 105 272c77 70 182 108 291 108c43 0 87 -4 129 -16c34 -10 66 -24 91 -47c20 -18 35 -41 49 -63'], + 0x1D403: [698,1,899,44,828,'109 -1v14c9 12 25 26 29 40c3 10 3 35 3 53v429c0 30 0 67 -7 90c-3 12 -11 23 -24 29c-18 7 -46 11 -66 14v24l6 6h415c55 0 110 -5 163 -20c42 -12 82 -30 113 -58c68 -61 87 -150 87 -236c0 -99 -26 -201 -105 -272c-87 -80 -210 -113 -332 -113h-282zM266 185 c0 -36 1 -71 7 -106c1 -9 7 -17 14 -23c16 -14 46 -14 70 -14c83 0 168 21 228 75c32 30 53 68 66 107c17 50 23 102 23 154c0 43 -4 87 -18 128c-11 33 -26 64 -52 87c-27 24 -62 37 -97 46c-48 12 -98 16 -148 16c-25 0 -56 0 -78 -4c-9 -2 -12 -12 -14 -20 c-1 -4 -1 -37 -1 -56v-390'], + 0x1D404: [709,8,640,11,605,'595 76l10 -8l-26 -76c-114 7 -228 8 -342 8c-32 0 -80 0 -95 4c-15 8 -33 28 -33 47v429c0 44 0 114 -4 132c-4 15 -9 30 -24 36c-22 10 -46 15 -70 18v23l7 7c161 0 365 0 478 13l13 -5v-62l-12 -11c-77 5 -227 14 -228 14c-6 0 -15 -1 -23 -4c-5 -3 -7 -6 -8 -10 c-4 -11 -4 -23 -4 -36v-180c0 -7 3 -14 9 -20c2 -3 7 -6 11 -6c62 0 217 16 220 17c1 0 9 -5 13 -8v-58c-69 3 -149 3 -225 3c-7 0 -15 0 -20 -5c-7 -6 -8 -14 -8 -22c0 -65 0 -142 9 -193c2 -17 5 -34 18 -46c14 -12 30 -16 49 -16c15 0 285 15 285 15'], + 0x1D405: [706,12,525,12,494,'238 23l-128 -35l-12 8c7 169 13 337 13 505c0 50 0 105 -5 122c-4 15 -19 30 -35 36c-18 7 -40 9 -59 11v20l8 8c161 0 399 0 474 8v-68l-7 -8c-105 6 -210 14 -226 14c-10 0 -18 -3 -23 -8c-3 -4 -6 -12 -6 -27v-194c0 -7 1 -15 6 -20c4 -4 7 -6 11 -6 c74 0 151 12 225 17l13 -12v-54c-59 3 -154 3 -230 3c-7 0 -15 0 -20 -5c-5 -4 -5 -14 -5 -22c0 -1 5 -195 6 -293'], + 0x1D406: [709,14,845,90,759,'398 303l340 13c-8 -93 -5 -187 2 -280c-99 -26 -200 -50 -303 -50c-90 0 -181 23 -245 82c-77 70 -102 169 -102 266c0 102 32 205 112 278c78 70 187 97 294 97c61 0 124 -6 176 -35c39 -21 68 -53 87 -89l-97 -90l-18 8c-14 45 -36 89 -73 122c-28 26 -67 36 -106 36 c-52 0 -103 -18 -140 -52c-32 -29 -52 -66 -66 -105c-17 -49 -23 -100 -23 -151c0 -91 22 -186 94 -252c48 -44 115 -62 183 -62c23 0 47 0 70 3c11 1 22 6 23 17c1 18 1 58 1 87v75c-2 15 -12 31 -29 34c-1 0 -120 7 -180 11v37'], + 0x1D407: [711,7,856,40,824,'613 681l130 30l10 -10c-12 -115 -16 -230 -16 -345c0 -87 0 -251 1 -263c1 -18 7 -38 27 -47c17 -7 39 -13 59 -14v-24l-6 -7l-196 -8l-23 21c10 99 14 198 14 298c0 7 -1 16 -6 19c-7 7 -19 8 -30 8h-288c-9 0 -17 -2 -24 -8c-4 -4 -5 -14 -5 -20c0 -94 2 -188 6 -281 l-125 -36c-2 3 -7 8 -7 9c5 119 5 237 5 356v253c0 17 -18 29 -35 35c-21 7 -45 14 -64 18v23l8 8l214 2l8 -8c-5 -95 -11 -194 -11 -277c0 -5 5 -16 8 -18c8 -7 10 -7 23 -7h289c13 0 22 0 27 4c6 6 7 13 7 21v268'], + 0x1D408: [696,-1,461,48,387,'278 618l-1 -251c0 -87 0 -209 3 -261c2 -26 13 -55 43 -62l64 -14v-29h-339v28l74 16c16 4 28 20 28 36c2 43 2 194 2 291c0 83 0 169 -6 250c-1 14 -13 25 -28 29l-69 15v26l4 4h323l4 -4v-27l-78 -16c-16 -3 -24 -17 -24 -31'], + 0x1D409: [705,192,457,45,412,'305 513v-346c0 -66 -1 -115 -13 -151c-17 -51 -32 -73 -75 -108c-26 -21 -56 -41 -84 -59c-21 -14 -51 -30 -71 -41l-17 28c19 12 48 32 68 50c25 22 42 48 51 77c14 45 16 102 16 165v431c0 24 0 50 -3 72c-2 15 -15 25 -30 30c-24 7 -49 9 -74 9v27l9 8h322l8 -8v-25 c-22 -5 -67 -14 -68 -14c-14 -4 -28 -15 -32 -29c-7 -24 -7 -77 -7 -116'], + 0x1D40A: [702,12,747,46,728,'280 387l296 310l106 5v-15l-301 -280c-3 -2 -5 -8 -5 -10c0 -4 2 -9 3 -9l349 -318v-16l-138 -59c-99 113 -202 224 -312 329h-10c0 -98 1 -196 11 -294l-130 -42l-10 10c4 113 5 227 5 340c0 92 0 246 -2 276c-2 18 -24 32 -42 38c-11 3 -36 9 -54 13v26l4 4l226 6 l7 -7c-10 -103 -15 -204 -15 -307h12'], + 0x1D40B: [702,5,620,42,588,'575 75l13 -9l-21 -71c-90 5 -311 5 -467 5v17c9 10 24 23 27 33c3 12 3 46 3 69v446c0 23 -1 41 -5 64c-3 12 -17 28 -30 33c-17 5 -35 8 -53 9v23l8 8h295l8 -8v-27c-19 -2 -42 -5 -64 -12c-12 -5 -27 -13 -30 -29c-3 -14 -4 -53 -4 -82v-291c0 -57 0 -145 5 -180 c2 -13 14 -20 22 -20c103 0 258 18 293 22'], + 0x1D40C: [701,16,1157,87,1125,'244 533l-59 -507l-84 -28l-14 5l75 357c17 82 38 183 38 246c0 22 -13 46 -50 56c-16 4 -33 6 -50 7v24l8 8h225c65 -181 135 -360 223 -534c1 -2 4 -4 6 -4s5 2 7 4c60 98 162 278 162 279c44 82 86 164 113 252l162 2l6 -12l-19 -20c-9 -11 -10 -25 -10 -73v-146 c0 -89 5 -177 13 -265c4 -41 9 -100 27 -116c10 -9 27 -14 40 -14c18 0 43 2 58 4l4 -27c-1 0 -92 -25 -138 -38c-20 -5 -39 -9 -59 -9c-14 0 -28 2 -37 10c-13 12 -21 28 -21 44c0 169 -2 327 -15 495c0 4 -3 11 -8 11c-2 0 -5 -5 -9 -11c-108 -178 -198 -350 -294 -534 h-74c-66 182 -129 355 -209 533c-2 4 -6 7 -9 7c-4 0 -8 -3 -8 -6'], + 0x1D40D: [713,3,922,52,792,'203 526l28 -492l-82 -37l-13 8c10 186 19 372 19 557c0 23 0 38 -5 52c-4 13 -18 19 -29 31c-25 13 -47 18 -69 24v22l8 8h199c137 -170 285 -333 437 -493l12 2l-17 478l81 27l20 -14c-12 -136 -21 -271 -26 -407c-3 -96 -4 -192 3 -287h-75l-475 528c-3 4 -7 6 -9 6 c-4 0 -7 -4 -7 -13'], + 0x1D40E: [720,15,881,72,822,'72 330c0 108 36 223 121 300c77 70 177 90 296 90c85 0 172 -21 233 -76c73 -67 100 -161 100 -253c0 -58 -8 -116 -28 -171c-16 -46 -41 -89 -78 -123c-86 -78 -206 -112 -327 -112c-80 0 -160 22 -217 74c-35 32 -58 72 -74 115c-19 50 -26 103 -26 156zM210 366 c0 -103 25 -209 106 -283c36 -33 86 -52 138 -52c53 0 107 17 145 51c30 27 46 63 59 99c15 47 21 95 21 144c0 62 -7 124 -27 183c-16 46 -40 91 -78 126c-33 30 -80 46 -127 46c-53 0 -104 -24 -141 -58c-34 -30 -53 -64 -67 -104c-18 -49 -29 -101 -29 -152'], + 0x1D40F: [699,6,664,49,617,'270 30l-127 -36l-12 10c7 152 8 303 8 455c0 55 0 133 -4 164c-2 9 -8 19 -16 25c-19 15 -45 18 -70 21v22l8 8h345c35 0 69 -3 103 -12c25 -6 49 -16 68 -33c33 -30 44 -72 44 -114c0 -60 -18 -122 -66 -165c-22 -21 -51 -35 -82 -45c-38 -13 -79 -20 -119 -23 c-19 -2 -41 -2 -63 -2c-6 0 -12 -2 -16 -6c-5 -5 -6 -11 -6 -17c0 -1 3 -168 5 -252zM265 361c0 -5 3 -10 7 -14c5 -4 13 -6 20 -6c45 0 94 14 127 43c39 37 56 87 56 138c0 39 -10 79 -41 107c-26 24 -62 35 -99 35c-19 0 -42 0 -61 -3c-10 -2 -11 -13 -11 -20 c0 -1 1 -187 2 -280'], + 0x1D410: [714,197,918,86,835,'820 -141l9 -29c-59 -18 -122 -27 -185 -27c-56 0 -109 21 -149 57c-41 38 -81 77 -116 120c-70 3 -140 25 -190 70c-77 70 -103 170 -103 268c0 109 29 220 115 298c77 70 189 98 298 98c86 0 174 -23 236 -79c75 -68 100 -165 100 -260c0 -55 -7 -111 -26 -164 c-15 -43 -39 -87 -72 -118c-51 -48 -115 -78 -186 -96l-6 -14c21 -33 43 -64 73 -92c27 -23 59 -44 96 -44c38 0 73 6 106 12zM464 26c56 0 111 16 151 52c31 28 48 67 60 106c16 53 21 108 21 164c0 54 -7 107 -24 159c-14 41 -36 80 -69 110c-37 34 -89 51 -141 51 c-53 0 -102 -19 -140 -53c-33 -30 -55 -65 -69 -106c-18 -51 -25 -104 -25 -157c0 -102 25 -205 106 -278c33 -31 83 -48 130 -48'], + 0x1D411: [701,10,714,48,664,'264 325l11 -284l-137 -49l-9 9c9 155 13 310 13 465c0 53 0 136 -3 158c-1 9 -3 18 -11 24c-22 17 -52 20 -80 22v26l5 5h321c40 0 81 -3 121 -12c28 -7 56 -17 77 -37c29 -26 40 -63 40 -100c0 -48 -13 -100 -51 -135c-42 -37 -92 -52 -147 -66l-4 -11 c86 -101 198 -234 251 -283l3 -16l-117 -51l-21 2l-249 331c-1 1 -5 2 -13 2zM264 366c46 0 128 15 158 46c33 34 48 78 48 124c0 34 -10 69 -37 93c-29 27 -72 33 -113 33c-13 0 -27 0 -40 -4c-8 -2 -11 -11 -12 -19c-1 -4 -4 -181 -4 -273'], + 0x1D412: [723,14,654,81,591,'496 548l-17 5c-5 38 -21 76 -51 103c-22 20 -52 29 -83 29c-28 0 -55 -9 -74 -27c-22 -19 -30 -47 -30 -74c0 -34 12 -68 39 -92c34 -31 76 -54 118 -76c46 -23 101 -51 129 -77c38 -34 62 -78 62 -126c0 -50 -22 -98 -61 -133c-65 -59 -153 -94 -245 -94 c-45 0 -90 12 -129 33c-30 16 -54 41 -73 68l97 109l19 -7c0 -43 16 -87 50 -118c25 -22 58 -36 93 -36c34 0 65 14 88 35c26 23 40 55 40 88c0 38 -25 69 -54 96c-22 20 -71 46 -109 66c-40 21 -77 45 -110 75c-37 34 -65 77 -65 125c0 52 16 103 57 140 c53 48 129 63 203 63c33 0 65 -2 97 -10c23 -6 46 -15 63 -31c18 -17 32 -38 41 -60'], + 0x1D413: [714,11,543,22,628,'257 496v133c0 8 -5 14 -9 15c-3 2 -8 3 -16 3l-201 -10l-9 9v58l8 8c96 -2 192 -9 288 -9c100 0 200 7 300 11l10 -10v-50l-11 -9c-11 0 -143 4 -211 4c-10 0 -13 -1 -17 -4c-3 -2 -4 -4 -4 -11v-138c0 -155 7 -311 17 -466l-144 -41l-9 12c5 165 8 330 8 495'], + 0x1D414: [717,10,858,28,837,'577 671l140 46l15 -8c-8 -37 -14 -79 -16 -120c-6 -137 -6 -274 -6 -409c0 -37 0 -90 17 -105c10 -9 30 -12 52 -12c19 0 40 2 57 4l1 -18l-8 -10l-157 -44c-13 -4 -27 -5 -40 -5c-11 0 -22 2 -30 10c-11 12 -15 23 -19 39l-11 5c-70 -28 -144 -52 -219 -52 c-58 0 -118 8 -160 46c-26 24 -40 55 -50 87c-14 44 -18 90 -18 135c0 74 7 176 7 264c0 37 0 60 -4 98c-2 10 -6 20 -16 25c-21 13 -58 19 -84 23v26l5 5l229 3l10 -11c-16 -133 -20 -262 -20 -396c0 -40 3 -82 15 -120c10 -30 25 -58 49 -80c35 -32 85 -44 134 -44 c47 0 94 17 134 35c0 195 0 472 -7 583'], + 0x1D415: [712,5,745,27,807,'688 697l116 15l3 -14c-82 -108 -143 -188 -219 -338c-56 -110 -112 -220 -154 -335l-97 -30l-11 6l-171 519c-13 40 -32 96 -47 118c-7 10 -16 19 -28 21c-18 4 -52 10 -53 10v27l8 7c67 0 136 2 203 7c25 -93 53 -192 82 -277c29 -86 59 -172 97 -255c0 -1 4 -7 7 -7 c5 0 10 7 12 11l123 255c39 82 84 174 129 260'], + 0x1D416: [701,16,1125,14,1178,'1178 699v-15c-134 -213 -243 -438 -347 -665l-105 -35l-14 12l-117 526c-1 7 -3 14 -8 14c-7 0 -10 -6 -13 -13c-76 -169 -147 -330 -212 -503l-100 -32l-14 10c0 1 -89 370 -133 556c-7 27 -14 52 -24 79c-4 11 -13 20 -25 23c-17 5 -50 14 -52 14v22l8 9h198 c32 -177 75 -353 123 -527c1 -4 4 -6 7 -6c4 0 7 6 9 9c84 166 161 326 222 501l103 21l7 -5c25 -178 77 -360 121 -543c1 -5 5 -15 9 -15s7 3 11 11c80 169 170 361 226 536'], + 0x1D417: [705,13,737,29,705,'400 448l192 236l113 16v-27c-59 -40 -136 -115 -191 -177c-34 -38 -56 -66 -91 -109c38 -64 78 -127 123 -188c30 -41 69 -90 108 -125c17 -16 34 -28 51 -33v-18l-168 -36c-47 63 -131 195 -193 295h-16c-50 -58 -142 -182 -194 -263l-105 -20v26l279 313l-180 285 c-8 11 -21 18 -34 24c-19 9 -43 14 -65 19v24l8 9l201 6c45 -88 97 -174 148 -257h14'], + 0x1D418: [707,4,583,28,682,'682 695l-283 -372c0 -99 4 -194 9 -295l-114 -32l-18 9c2 102 6 291 6 292s-96 191 -141 279c-12 22 -24 42 -37 62c-6 9 -19 16 -30 19l-46 12v26l8 9h183c7 -17 100 -201 150 -302c2 -4 8 -6 12 -6c5 0 8 1 12 5l186 289l102 17'], + 0x1D419: [709,11,733,29,703,'477 629l-10 14c-124 -3 -281 -8 -346 -13l-8 8v64l9 7c177 -10 357 -12 532 -12v-27c-152 -192 -276 -387 -416 -586c-1 -1 -2 -3 -2 -4c0 -3 2 -5 3 -8c4 -5 10 -8 17 -8c144 1 288 8 432 16l15 -13l-27 -78c-127 11 -431 11 -647 11v24c159 199 299 400 448 605'], + 0x1D41A: [498,15,664,98,666,'546 493l14 -9c-9 -91 -16 -182 -16 -273c0 -61 1 -113 13 -128c4 -6 12 -10 20 -10c22 0 50 24 70 42l19 -21c-33 -40 -70 -77 -120 -98c-16 -6 -31 -8 -45 -8s-27 2 -37 11c-16 15 -22 35 -25 55l-13 5c-24 -18 -49 -34 -77 -47c-34 -16 -71 -27 -109 -27 c-26 0 -52 7 -71 22c-24 19 -40 46 -50 73c-14 36 -21 74 -21 111c0 56 4 110 23 162c14 40 37 79 73 105c41 30 94 40 146 40c54 0 102 -16 146 -43zM441 331c0 38 -4 80 -34 109c-15 15 -36 20 -58 20c-25 0 -48 -9 -67 -24c-28 -20 -44 -50 -54 -81 c-14 -40 -17 -82 -17 -125c0 -28 3 -56 11 -83c6 -20 14 -40 29 -56c16 -18 40 -28 65 -28c23 0 49 6 70 19c19 12 33 22 47 35c6 44 8 146 8 214'], + 0x1D41B: [705,14,673,29,589,'241 693l-7 -275l11 -3c52 43 115 78 186 78c39 0 76 -15 103 -41c44 -41 55 -99 55 -156c0 -83 -29 -166 -96 -224c-59 -50 -132 -86 -213 -86c-43 0 -85 14 -114 43c-21 22 -41 77 -41 132v346c0 39 -1 65 -2 95c0 10 -5 22 -15 28c-8 5 -55 14 -79 16v22l9 9l188 28z M234 367l-3 -134c0 -33 6 -123 27 -151c18 -22 39 -44 71 -44c39 0 76 16 99 46c33 45 42 100 42 154c0 50 -4 102 -35 145c-18 26 -52 36 -84 36c-19 0 -37 -6 -53 -13c-22 -10 -45 -25 -64 -39'], + 0x1D41C: [496,10,549,90,531,'516 379l-92 -55l-17 7c0 44 -12 78 -34 103c-10 11 -23 22 -54 22c-8 0 -30 -4 -45 -18c-54 -47 -66 -123 -66 -190c0 -56 11 -115 56 -157c21 -19 49 -32 80 -32c27 0 53 7 78 17c27 12 62 33 87 52l12 -3l10 -14c-68 -68 -156 -121 -258 -121c-47 0 -94 14 -126 45 c-43 43 -57 101 -57 158c0 90 24 182 95 246c46 42 111 57 175 57c44 0 91 -7 122 -37c22 -21 32 -50 34 -80'], + 0x1D41D: [699,11,673,84,668,'357 678l191 21l9 -6c-8 -116 -12 -158 -12 -257l-1 -293c0 -20 4 -40 14 -57c4 -6 14 -11 22 -11c19 0 54 23 71 37l17 -22c-27 -28 -56 -56 -91 -76c-24 -15 -45 -25 -74 -25c-15 0 -29 5 -40 14c-17 16 -23 39 -25 62c-32 -22 -66 -42 -103 -56 c-28 -11 -58 -19 -89 -19c-35 0 -71 9 -96 32c-50 45 -66 109 -66 171c0 47 6 94 22 138c13 36 32 71 62 98c46 42 108 66 173 66c30 0 62 -2 91 -12l7 5v93c0 10 -1 21 -6 31s-12 19 -24 23c-10 3 -43 7 -66 10v24zM439 113v249c0 17 -2 34 -6 50c-3 12 -9 23 -19 30 c-16 12 -33 14 -53 14c-35 0 -69 -15 -94 -37c-22 -20 -38 -46 -45 -74c-9 -36 -15 -72 -15 -109c0 -30 3 -61 12 -91c6 -22 19 -43 36 -59c17 -15 41 -23 65 -23c48 0 86 24 119 50'], + 0x1D41E: [495,16,613,87,558,'220 258c69 22 186 58 187 58c8 3 16 6 22 12c5 5 6 11 6 16c0 32 -7 65 -32 88c-16 14 -37 23 -59 23c-28 0 -56 -9 -76 -27c-48 -43 -61 -110 -61 -166c0 -4 3 -5 7 -5c2 0 4 1 6 1zM522 101l11 -19c-38 -27 -80 -54 -124 -73c-33 -14 -68 -25 -105 -25 c-57 0 -115 14 -156 51c-48 44 -61 108 -61 169c0 84 27 168 93 228c49 45 118 63 187 63c53 0 110 -8 149 -43c29 -27 42 -65 42 -103c0 -8 -1 -16 -6 -23c-5 -8 -14 -11 -23 -14c-1 0 -215 -66 -322 -99c0 -46 15 -92 50 -125c26 -23 62 -36 98 -36c25 0 49 6 73 13 c27 9 56 26 79 40'], + 0x1D41F: [686,10,430,23,455,'251 392c0 -126 9 -264 16 -374l-109 -28l-17 9c4 103 7 262 7 392l-9 9h-111l-5 8l10 29l11 7h96l8 10c2 42 7 88 22 121c13 29 32 54 55 77c34 34 93 34 113 34c19 0 83 -7 117 -77l-70 -51l-16 7c0 48 -34 79 -55 79c-20 0 -48 -27 -57 -73c-6 -28 -6 -54 -6 -117 l9 -9h126l6 -10l-9 -26l-12 -9h-111'], + 0x1D420: [495,242,658,86,545,'541 127c0 -76 -3 -122 -15 -172c-10 -43 -37 -89 -66 -114c-60 -53 -128 -83 -214 -83c-57 0 -124 29 -160 71l60 79h21c13 -22 38 -55 55 -70c20 -18 42 -30 69 -30c39 0 76 18 96 45c43 58 47 93 49 202c-32 -21 -71 -43 -106 -57c-31 -12 -62 -17 -95 -17 c-30 0 -62 12 -84 31c-58 52 -60 132 -60 202c0 42 7 83 19 124c10 34 26 67 54 92c45 42 108 65 174 65c53 0 92 -12 132 -39l62 25l13 -4c-4 -72 -4 -89 -4 -350zM436 114v259c0 24 -8 41 -22 54c-20 19 -42 27 -66 27c-42 0 -77 -15 -98 -43c-32 -41 -43 -73 -43 -142 c0 -42 3 -84 14 -126c5 -19 13 -39 28 -55c17 -19 40 -30 67 -30c44 0 94 22 120 56'], + 0x1D421: [696,8,664,30,664,'230 380c0 -118 0 -290 8 -355l-105 -32l-13 11c5 106 5 214 5 321c0 93 0 264 -5 279c-4 16 -17 29 -34 32c-3 1 -38 4 -56 5v27l12 8l186 20l11 -10l-9 -253l9 -7c33 19 73 39 109 52c27 10 56 19 86 19c29 0 58 -9 77 -29c16 -17 21 -39 25 -60c4 -20 5 -40 5 -60 c0 -32 -8 -96 -8 -160c0 -40 2 -63 14 -81c6 -9 19 -19 32 -19c28 0 49 18 68 35l15 -11l2 -12c-24 -28 -48 -55 -78 -78c-20 -15 -42 -30 -68 -30c-24 0 -47 8 -63 24c-22 22 -28 77 -28 139c0 60 5 110 5 155c0 40 -4 80 -21 96s-40 22 -64 22c-18 0 -35 -6 -51 -13 c-22 -9 -47 -21 -66 -35'], + 0x1D422: [687,13,367,10,365,'117 621c0 36 30 66 66 66s66 -30 66 -66s-30 -66 -66 -66s-66 30 -66 66zM348 119l17 -16v-11c-23 -29 -47 -54 -78 -75c-23 -16 -49 -30 -78 -30c-24 0 -47 10 -60 28c-14 18 -17 41 -18 63c-1 15 -1 117 -1 176v117c-1 14 -3 28 -12 39c-5 6 -14 10 -23 10 c-22 0 -45 -15 -69 -32l-16 22c29 23 59 45 93 62c22 11 46 21 72 21c20 0 40 -7 50 -23c8 -13 12 -25 12 -84c0 -40 -3 -81 -3 -121c0 -42 0 -115 1 -125c1 -16 2 -32 10 -46c6 -12 18 -22 32 -22c12 0 23 7 31 13c14 10 27 21 40 34'], + 0x1D423: [687,246,363,-18,259,'127 621c0 36 30 66 66 66s66 -30 66 -66s-30 -66 -66 -66s-66 30 -66 66zM38 389l-16 22c30 23 58 43 92 61c21 10 43 21 67 21c16 0 34 -2 46 -13c16 -15 19 -39 21 -59c3 -25 3 -110 3 -165c0 -65 0 -175 -5 -229c-4 -37 -18 -73 -41 -104 c-48 -63 -129 -126 -196 -169l-27 19c45 34 84 73 118 110c23 24 40 86 42 117c5 58 3 161 3 231c0 44 0 113 -3 133c-1 16 -3 30 -12 45c-3 7 -16 11 -23 11c-22 0 -49 -15 -69 -31'], + 0x1D424: [698,6,611,30,613,'238 253l5 -228l-97 -31l-16 9c3 90 3 240 3 360v177c0 22 -1 44 -6 65c-3 14 -17 28 -32 33c-4 1 -43 5 -65 7v29l10 7l201 17l8 -5c-1 -39 -8 -275 -11 -399h14c88 72 164 157 259 221l59 -37l-1 -12c-86 -46 -171 -96 -247 -154c52 -75 127 -171 171 -213 c8 -7 19 -10 27 -10c6 0 22 3 28 6c16 7 25 14 43 30l22 -24c-47 -54 -91 -91 -99 -95c-10 -6 -27 -8 -34 -8c-16 0 -30 3 -40 12c-70 58 -123 170 -188 252'], + 0x1D425: [697,7,368,28,368,'237 685l-8 -454c-1 -45 -2 -114 9 -134c5 -10 14 -19 28 -19c13 0 24 4 35 11c13 9 28 22 39 34h12l16 -16c-23 -31 -50 -61 -83 -84c-24 -16 -50 -30 -80 -30c-24 0 -49 5 -63 23c-16 19 -19 43 -21 67c-2 36 0 113 2 170c3 85 1 183 0 274c-1 29 -1 70 -5 87 c-3 13 -13 26 -28 29c-16 4 -41 5 -62 6v23l12 8l184 17'], + 0x1D426: [495,9,988,5,984,'240 383c0 -119 1 -319 6 -357l-101 -34l-17 8c4 92 7 247 7 290c0 41 0 106 -15 119c-7 7 -17 10 -24 10c-23 0 -50 -15 -72 -30l-19 24c28 22 58 43 90 59c22 11 45 20 70 20c18 0 33 0 46 -12c16 -15 23 -31 25 -52l10 -3c30 18 71 38 107 52c28 10 56 18 86 18 c28 0 51 -5 72 -23c13 -13 27 -32 32 -49l15 -5c33 19 71 42 105 56c27 11 55 20 85 20s68 -9 87 -33c21 -27 25 -78 25 -146c0 -43 -4 -119 -4 -161c0 -13 1 -36 9 -47c7 -9 21 -16 32 -16c25 0 46 9 66 23h10l11 -21c-27 -26 -59 -55 -93 -77c-21 -14 -43 -23 -69 -23 c-18 0 -34 7 -46 18c-15 13 -28 50 -28 103c0 51 4 118 4 169c0 29 0 60 -6 88c-3 16 -9 32 -22 44c-11 10 -27 16 -44 16c-20 0 -38 -8 -56 -16c-28 -13 -54 -29 -79 -46c0 -119 1 -276 6 -343l-99 -35l-16 8c4 99 4 194 4 290c0 28 0 56 -5 83c-3 16 -9 34 -22 46 c-11 10 -26 15 -42 15c-18 0 -45 -8 -59 -14c-25 -10 -50 -22 -72 -36'], + 0x1D427: [497,10,670,0,671,'231 378c0 -117 3 -319 10 -350l-110 -32l-12 7c3 98 7 292 7 293c0 42 0 105 -16 119c-6 6 -14 8 -22 8c-20 0 -57 -25 -70 -33l-18 24c30 24 57 44 91 61c22 12 46 22 71 22c16 0 30 0 42 -11c18 -17 22 -34 24 -58l12 -4c34 21 71 38 109 52c29 10 59 18 90 18 c25 0 50 -4 71 -23c18 -17 24 -40 26 -58c4 -28 4 -93 4 -140c0 -31 -3 -71 -3 -103c0 -57 7 -64 16 -72c7 -7 17 -10 28 -10c25 0 47 12 67 26h12l11 -17c-28 -28 -56 -56 -89 -78c-20 -15 -43 -29 -70 -29c-20 0 -40 7 -54 20c-16 15 -19 38 -21 58c-2 15 -2 115 -2 172 c0 58 0 144 -27 168c-15 14 -36 16 -56 16c-30 0 -84 -26 -121 -46'], + 0x1D428: [486,11,672,79,590,'208 234c0 -35 4 -70 15 -104c8 -26 20 -51 41 -70c17 -16 38 -30 64 -30c28 0 59 5 79 24c23 21 35 50 42 79c11 44 12 79 12 135c0 31 -3 62 -12 91c-7 22 -17 43 -35 60c-19 18 -46 27 -74 27s-54 -12 -74 -30c-22 -20 -34 -46 -43 -73c-11 -35 -15 -72 -15 -109z M79 233c0 68 21 135 74 183c51 47 121 70 193 70c64 0 131 -13 177 -55c46 -41 67 -99 67 -157c0 -44 -5 -87 -20 -129c-12 -34 -30 -66 -57 -91c-51 -46 -122 -65 -193 -65c-61 0 -125 8 -169 48c-56 51 -72 125 -72 196'], + 0x1D429: [488,247,662,18,593,'246 -217l-121 -30l-12 9c6 163 21 250 21 535c0 37 0 94 -14 106c-6 6 -15 10 -25 10c-18 0 -45 -17 -63 -28l-14 24c28 22 57 43 89 59c22 10 45 20 70 20c16 0 32 -2 44 -13c15 -13 20 -31 21 -50l8 -4c29 19 60 35 92 48c27 10 54 19 82 19c41 0 83 -10 112 -37 c21 -19 34 -43 43 -68c10 -32 14 -65 14 -99c0 -76 -22 -151 -77 -209c-45 -48 -113 -75 -182 -75c-30 0 -60 4 -86 21l-11 -6zM266 69c19 -17 45 -27 72 -27c29 0 59 7 80 26c20 19 32 42 41 67c10 30 14 63 14 95c0 33 -2 67 -11 99c-6 22 -17 41 -35 58 c-19 17 -44 27 -71 27c-18 0 -36 -5 -52 -12c-23 -9 -45 -22 -65 -36v-203c0 -19 1 -39 6 -57c4 -14 10 -27 21 -37'], + 0x1D42A: [538,247,671,102,557,'557 -213l-109 -34l-15 7l7 294l-9 5c-30 -19 -69 -41 -102 -54c-29 -11 -59 -18 -91 -18c-35 0 -68 14 -93 37c-19 17 -26 41 -32 64c-9 38 -11 76 -11 114c0 85 21 174 88 235c44 40 104 58 165 58c42 0 86 -11 121 -31l59 74l21 -3c-6 -102 -11 -204 -11 -307 c0 -131 4 -313 12 -441zM440 112v237c0 27 -5 62 -23 78c-19 17 -43 28 -69 28c-27 0 -54 -11 -72 -28c-23 -21 -35 -48 -44 -77c-12 -37 -15 -76 -15 -115c0 -31 2 -62 11 -91c6 -22 16 -43 34 -59c16 -15 39 -24 62 -24c48 0 86 28 116 51'], + 0x1D42B: [489,6,496,14,479,'253 33l-106 -39l-20 7c3 100 7 292 7 293c0 40 0 101 -15 115c-7 6 -12 6 -21 6c-19 0 -49 -15 -68 -30l-16 23c28 22 57 43 89 60c21 11 44 21 69 21c18 0 35 -4 48 -16c8 -7 11 -17 13 -27c4 -15 5 -28 5 -44l11 -5c24 25 49 48 79 66c22 12 46 23 72 23 c20 0 40 -7 55 -20c20 -18 24 -45 24 -70l-75 -58l-13 8c-3 14 -8 29 -19 39c-10 9 -23 16 -38 16c-25 0 -46 -11 -64 -31c-14 -16 -23 -35 -27 -55s-4 -39 -4 -58c0 -32 7 -148 14 -224'], + 0x1D42C: [494,15,498,35,425,'419 426l-73 -74l-15 4c-5 32 -19 62 -44 85c-14 13 -34 16 -54 16c-18 0 -36 -6 -50 -18c-15 -14 -15 -34 -15 -54c0 -22 14 -46 28 -57c29 -23 63 -41 97 -57c34 -15 80 -36 97 -52c24 -21 35 -51 35 -81c0 -35 -15 -70 -43 -95c-45 -42 -110 -58 -174 -58 c-39 0 -78 5 -113 21c-24 10 -43 27 -60 46l63 94l15 -1c9 -34 18 -70 46 -95c19 -18 44 -28 71 -28c24 0 47 9 64 24c14 13 19 31 19 49s-9 33 -23 46c-16 15 -56 35 -89 49c-35 15 -64 36 -91 60c-24 21 -39 50 -39 81c0 41 10 83 43 112c41 37 99 51 156 51 c36 0 73 -1 103 -20c20 -12 36 -28 46 -48'], + 0x1D42D: [624,11,437,22,410,'143 588l107 36l15 -7c0 -1 -8 -102 -12 -164l7 -8h125l7 -10l-10 -26l-12 -9h-110l-8 -8v-159c0 -52 2 -127 21 -146c8 -8 18 -14 34 -14c14 0 26 5 38 11c15 7 31 18 43 29h10l12 -15c-23 -30 -50 -58 -83 -80c-24 -16 -51 -29 -82 -29c-26 0 -53 8 -70 27 c-12 13 -17 32 -21 50c-6 32 -7 64 -7 97v228l-9 9h-110l-6 8l10 29l11 7h96l7 9c-1 52 -3 134 -3 135'], + 0x1D42E: [500,8,670,2,667,'430 466l103 34l12 -10c-4 -91 -5 -181 -5 -273c1 -26 0 -67 1 -77c0 -10 2 -23 8 -31c7 -10 18 -19 32 -19c20 0 46 15 68 28h10l8 -20c-28 -28 -61 -59 -95 -82c-20 -14 -35 -24 -61 -24c-22 0 -37 3 -50 18c-12 14 -19 34 -22 51l-10 6c-34 -18 -77 -40 -113 -55 c-24 -10 -49 -20 -75 -20c-36 0 -72 9 -97 33c-19 17 -22 43 -25 66s-4 68 -4 113c0 23 1 45 1 65c0 47 0 117 -10 137c-6 10 -18 14 -29 14c-17 0 -43 -16 -61 -27l-14 25c29 21 58 41 90 58c20 10 41 20 64 20s43 -4 57 -20c17 -20 19 -47 19 -75c0 -41 -7 -114 -7 -175 c0 -56 6 -118 30 -140c17 -15 42 -20 66 -20c47 1 79 22 114 48c2 113 2 240 -5 352'], + 0x1D42F: [490,12,546,-26,518,'-11 386l-15 25c30 21 61 41 94 57c20 9 42 19 65 19c14 0 30 -3 41 -12c24 -19 39 -100 55 -168c10 -41 29 -117 38 -148c4 -13 9 -29 19 -39c4 -4 13 -7 15 -7c10 0 21 5 27 11c30 26 55 57 74 90c15 27 20 58 20 88c0 38 -19 83 -44 114v17l75 57h13 c36 -22 52 -62 52 -101c0 -68 -35 -129 -76 -185c-91 -127 -180 -196 -204 -216h-43c-14 63 -40 173 -61 257c-10 40 -21 84 -31 121c-3 12 -8 25 -18 35c-6 8 -17 11 -27 11c-14 0 -47 -12 -69 -26'], + 0x1D430: [496,13,919,-8,890,'231 382l35 -240l10 -3c70 105 137 212 193 324l54 30l13 -2c25 -126 58 -250 109 -370c2 -5 5 -12 9 -12c6 0 15 2 20 6c31 24 56 53 79 84c22 31 35 66 35 103c0 40 -24 86 -47 121v13l82 60l16 -2c28 -31 51 -67 51 -107c0 -30 -10 -59 -23 -86 c-19 -38 -43 -72 -70 -106c-35 -43 -71 -86 -110 -127c-24 -25 -49 -51 -80 -71c-6 -4 -12 -4 -19 -4c-6 0 -13 4 -17 8c-11 12 -16 27 -21 42l-94 293h-10c-65 -112 -139 -221 -201 -334l-62 -15l-11 6c-4 74 -13 147 -22 220c-8 65 -20 163 -46 187c-7 7 -17 8 -26 8 c-24 0 -52 -8 -72 -20l-14 19c29 23 59 45 93 62c22 11 45 21 70 21c22 0 40 -11 55 -25c7 -5 9 -13 11 -21c2 -7 7 -42 10 -62'], + 0x1D431: [491,12,550,-23,531,'464 489l37 -36v-10c-80 -47 -149 -111 -208 -176c31 -60 72 -138 111 -173c10 -9 20 -17 34 -17c26 0 53 21 72 40h10l11 -14c-21 -31 -46 -61 -77 -85c-21 -16 -45 -30 -73 -30c-21 0 -40 8 -55 22s-25 31 -36 48l-67 124h-10c-47 -56 -88 -120 -117 -186l-16 -4 l-48 25v7c49 70 105 141 167 203c-22 49 -59 114 -69 131c-10 18 -23 36 -38 50c-8 7 -18 10 -28 10c-19 0 -49 -18 -69 -32l-18 24c25 22 51 43 80 60c20 11 42 21 66 21c19 0 39 -2 53 -15c19 -17 32 -39 45 -61c19 -34 36 -70 51 -105h6c54 62 110 124 174 179h12'], + 0x1D432: [491,232,670,11,552,'552 487c-4 -72 -4 -89 -4 -350c0 -76 -3 -122 -15 -172c-10 -43 -44 -89 -73 -114c-60 -53 -128 -83 -214 -83c-57 0 -124 29 -160 71l60 79h21c13 -22 38 -55 55 -70c20 -18 42 -30 69 -30c39 0 76 18 96 45c42 56 46 90 48 191l-10 4c-31 -20 -63 -34 -97 -48 c-29 -10 -65 -21 -92 -21c-29 0 -59 7 -80 26c-15 14 -20 35 -24 55c-7 35 -7 70 -7 106c0 51 6 103 6 154c-1 25 1 60 -18 78c-7 6 -17 9 -26 9c-17 0 -42 -17 -58 -31l-18 25c27 23 54 41 87 57c24 12 49 21 77 21c17 0 33 -7 45 -18c11 -10 18 -25 18 -87 c0 -40 -3 -79 -3 -119c0 -18 -2 -37 -2 -57c0 -29 2 -57 4 -74c2 -20 6 -37 20 -50c17 -15 43 -23 67 -23c41 0 96 31 112 42c5 58 7 121 7 184c0 58 -2 116 -9 169l100 35'], + 0x1D433: [492,14,544,17,524,'471 492l21 -18c-63 -78 -136 -162 -206 -234l-114 -124l4 -9c33 0 73 -5 106 -9c32 -3 63 -5 94 -5c30 0 59 10 80 29c16 15 31 32 43 49l25 -16l-46 -86c-11 -21 -23 -42 -41 -59c-18 -16 -44 -18 -68 -18c-48 0 -96 4 -144 12c-42 7 -84 13 -127 13 c-27 0 -45 -18 -57 -31h-10l-14 12c59 80 140 162 211 232c47 46 90 96 131 147c-7 0 -15 -1 -22 -1c-35 0 -69 6 -103 9c-30 3 -62 13 -80 13c-13 0 -29 -9 -39 -16c-15 -12 -28 -26 -40 -40l-26 12l69 114c10 16 33 24 54 24c28 0 56 -8 85 -14c39 -10 79 -16 120 -16 c35 0 66 11 94 30'], + 0x1D6A8: [687,14,829,3,821,'131 10l-126 -11l-2 10c135 201 259 406 370 619c1 1 1 3 1 5c0 1 -1 4 -3 4l-94 12v38h224l111 -373c20 -65 41 -130 73 -191c8 -14 16 -28 28 -41c16 -16 26 -20 43 -20s39 4 58 8l7 -28c-36 -16 -71 -31 -108 -42c-24 -8 -48 -14 -73 -14c-22 0 -44 6 -58 22 c-19 23 -31 50 -39 78l-51 182h-251c-34 -64 -76 -171 -110 -258zM461 320c3 0 9 2 9 5s0 11 -1 13l-65 205c-2 6 -7 8 -9 8s-6 -3 -9 -8l-105 -208c-2 -3 -2 -5 -2 -9c0 -3 7 -6 11 -6h171'], + 0x1D6A9: [703,2,726,40,641,'421 379v-11c36 -3 71 -9 105 -20c26 -8 51 -20 70 -37c30 -28 45 -65 45 -104c0 -53 -18 -106 -60 -144c-26 -24 -60 -38 -95 -48c-46 -12 -93 -17 -141 -17h-244v16c9 6 24 13 28 22c7 15 8 31 8 48v482c0 26 0 61 -14 74c-12 11 -27 20 -83 36v21l6 6h308 c47 0 92 -3 137 -14c32 -8 64 -19 87 -40c29 -26 39 -63 39 -99c0 -39 -17 -76 -47 -104c-40 -36 -97 -56 -149 -67zM262 117c0 -23 0 -59 9 -67c8 -7 21 -10 32 -10c50 0 103 10 139 43s54 79 54 126c0 36 -18 69 -46 95c-18 17 -44 25 -70 31c-37 9 -80 11 -118 12v-230z M262 385c33 0 71 2 103 11c24 6 48 16 66 32c33 30 50 72 50 114c0 32 -11 65 -36 88c-14 12 -32 18 -50 23c-26 6 -52 8 -79 8c-13 0 -29 -1 -41 -5c-5 -1 -9 -6 -10 -10c-3 -5 -3 -28 -3 -42v-219'], + 0x1D6AA: [692,9,536,54,579,'562 692l17 -181l-28 -3l-41 78c-11 20 -30 36 -55 40c-36 5 -72 7 -108 7c-30 0 -59 -2 -90 -3c-14 -1 -29 -10 -29 -24c-3 -37 -3 -127 -3 -190c0 -129 1 -257 9 -385l-116 -40l-17 12c4 179 5 536 5 584c0 21 -4 43 -20 58l-32 30l2 17h323h183'], + 0x1D6AB: [699,7,782,23,751,'385 669l125 30c33 -125 70 -249 116 -371c35 -93 77 -183 124 -273l1 -11l-123 -51c-68 6 -371 13 -371 13c-106 0 -211 -6 -231 -7c0 1 -2 21 -3 35c127 209 272 449 362 635zM120 67l444 -12c12 9 20 14 20 14c-68 161 -127 335 -181 499c-4 -2 -13 -4 -14 -4 c-83 -164 -179 -339 -269 -497'], + 0x1D6AC: [709,8,640,11,605,'595 76l10 -8l-26 -76c-114 7 -228 8 -342 8c-32 0 -80 0 -95 4c-15 8 -33 28 -33 47v429c0 44 0 114 -4 132c-4 15 -9 30 -24 36c-22 10 -46 15 -70 18v23l7 7c161 0 365 0 478 13l13 -5v-62l-12 -11c-77 5 -227 14 -228 14c-6 0 -15 -1 -23 -4c-5 -3 -7 -6 -8 -10 c-4 -11 -4 -23 -4 -36v-180c0 -7 3 -14 9 -20c2 -3 7 -6 11 -6c62 0 217 16 220 17c1 0 9 -5 13 -8v-58c-69 3 -149 3 -225 3c-7 0 -15 0 -20 -5c-7 -6 -8 -14 -8 -22c0 -65 0 -142 9 -193c2 -17 5 -34 18 -46c14 -12 30 -16 49 -16c15 0 285 15 285 15'], + 0x1D6AD: [709,11,733,29,703,'477 629l-10 14c-124 -3 -281 -8 -346 -13l-8 8v64l9 7c177 -10 357 -12 532 -12v-27c-152 -192 -276 -387 -416 -586c-1 -1 -2 -3 -2 -4c0 -3 2 -5 3 -8c4 -5 10 -8 17 -8c144 1 288 8 432 16l15 -13l-27 -78c-127 11 -431 11 -647 11v24c159 199 299 400 448 605'], + 0x1D6AE: [711,7,856,40,824,'613 681l130 30l10 -10c-12 -115 -16 -230 -16 -345c0 -87 0 -251 1 -263c1 -18 7 -38 27 -47c17 -7 39 -13 59 -14v-24l-6 -7l-196 -8l-23 21c10 99 14 198 14 298c0 7 -1 16 -6 19c-7 7 -19 8 -30 8h-288c-9 0 -17 -2 -24 -8c-4 -4 -5 -14 -5 -20c0 -94 2 -188 6 -281 l-125 -36c-2 3 -7 8 -7 9c5 119 5 237 5 356v253c0 17 -18 29 -35 35c-21 7 -45 14 -64 18v23l8 8l214 2l8 -8c-5 -95 -11 -194 -11 -277c0 -5 5 -16 8 -18c8 -7 10 -7 23 -7h289c13 0 22 0 27 4c6 6 7 13 7 21v268'], + 0x1D6AF: [699,14,968,77,872,'608 429l15 44h21v-244h-26l-14 56c-3 11 -15 15 -25 16c-44 3 -134 2 -201 0c-13 0 -28 -5 -32 -17l-19 -55h-19v119v125h26l12 -51c1 -4 8 -11 32 -11c67 -2 140 -3 201 -1c13 1 25 8 29 19zM428 -14c-90 0 -184 19 -249 78c-74 67 -102 163 -102 257 c0 103 34 205 114 277c39 35 88 59 140 75c61 19 126 26 190 26c94 0 191 -17 259 -78c68 -62 92 -151 92 -238c0 -107 -27 -217 -112 -294c-87 -79 -211 -103 -332 -103zM493 32c65 0 125 24 170 66c28 25 45 61 56 95c14 45 19 92 19 138c0 52 -6 104 -22 154 c-13 39 -32 76 -63 105c-49 44 -116 65 -185 65c-55 0 -124 -16 -162 -48c-77 -65 -91 -164 -91 -259c0 -93 28 -187 101 -254c46 -42 113 -62 177 -62'], + 0x1D6B0: [696,-1,461,48,387,'278 618l-1 -251c0 -87 0 -209 3 -261c2 -26 13 -55 43 -62l64 -14v-29h-339v28l74 16c16 4 28 20 28 36c2 43 2 194 2 291c0 83 0 169 -6 250c-1 14 -13 25 -28 29l-69 15v26l4 4h323l4 -4v-27l-78 -16c-16 -3 -24 -17 -24 -31'], + 0x1D6B1: [702,12,747,46,728,'280 387l296 310l106 5v-15l-301 -280c-3 -2 -5 -8 -5 -10c0 -4 2 -9 3 -9l349 -318v-16l-138 -59c-99 113 -202 224 -312 329h-10c0 -98 1 -196 11 -294l-130 -42l-10 10c4 113 5 227 5 340c0 92 0 246 -2 276c-2 18 -24 32 -42 38c-11 3 -36 9 -54 13v26l4 4l226 6 l7 -7c-10 -103 -15 -204 -15 -307h12'], + 0x1D6B2: [694,13,847,18,816,'403 672l105 22c24 -98 50 -195 80 -292c23 -72 48 -144 79 -214c18 -38 38 -80 67 -108c13 -13 32 -18 51 -18c10 0 20 1 29 4l2 -27l-187 -52c-28 11 -49 32 -59 58c-11 32 -106 329 -158 494h-15c-96 -173 -175 -339 -255 -519l-112 -24l-12 20 c141 212 269 431 385 656'], + 0x1D6B3: [701,16,1157,87,1125,'244 533l-59 -507l-84 -28l-14 5l75 357c17 82 38 183 38 246c0 22 -13 46 -50 56c-16 4 -33 6 -50 7v24l8 8h225c65 -181 135 -360 223 -534c1 -2 4 -4 6 -4s5 2 7 4c60 98 162 278 162 279c44 82 86 164 113 252l162 2l6 -12l-19 -20c-9 -11 -10 -25 -10 -73v-146 c0 -89 5 -177 13 -265c4 -41 9 -100 27 -116c10 -9 27 -14 40 -14c18 0 43 2 58 4l4 -27c-1 0 -92 -25 -138 -38c-20 -5 -39 -9 -59 -9c-14 0 -28 2 -37 10c-13 12 -21 28 -21 44c0 169 -2 327 -15 495c0 4 -3 11 -8 11c-2 0 -5 -5 -9 -11c-108 -178 -198 -350 -294 -534 h-74c-66 182 -129 355 -209 533c-2 4 -6 7 -9 7c-4 0 -8 -3 -8 -6'], + 0x1D6B4: [713,3,922,52,792,'203 526l28 -492l-82 -37l-13 8c10 186 19 372 19 557c0 23 0 38 -5 52c-4 13 -18 19 -29 31c-25 13 -47 18 -69 24v22l8 8h199c137 -170 285 -333 437 -493l12 2l-17 478l81 27l20 -14c-12 -136 -21 -271 -26 -407c-3 -96 -4 -192 3 -287h-75l-475 528c-3 4 -7 6 -9 6 c-4 0 -7 -4 -7 -13'], + 0x1D6B5: [700,14,652,26,623,'623 186l-21 -200l-552 8l-21 192l26 2l17 -52c7 -21 32 -30 56 -30h394c21 0 45 7 52 27l21 56zM149 413h354l4 -7l-30 -98l-270 -1c-27 0 -55 -2 -82 -5l-8 6zM598 693l22 -188h-23l-22 42c-6 13 -20 22 -35 27c-19 8 -40 10 -61 10l-338 1c-22 0 -47 -3 -57 -23 l-28 -57h-30l20 195'], + 0x1D6B6: [720,15,881,72,822,'72 330c0 108 36 223 121 300c77 70 177 90 296 90c85 0 172 -21 233 -76c73 -67 100 -161 100 -253c0 -58 -8 -116 -28 -171c-16 -46 -41 -89 -78 -123c-86 -78 -206 -112 -327 -112c-80 0 -160 22 -217 74c-35 32 -58 72 -74 115c-19 50 -26 103 -26 156zM210 366 c0 -103 25 -209 106 -283c36 -33 86 -52 138 -52c53 0 107 17 145 51c30 27 46 63 59 99c15 47 21 95 21 144c0 62 -7 124 -27 183c-16 46 -40 91 -78 126c-33 30 -80 46 -127 46c-53 0 -104 -24 -141 -58c-34 -30 -53 -64 -67 -104c-18 -49 -29 -101 -29 -152'], + 0x1D6B7: [690,14,844,29,813,'716 214l8 -195l-126 -33l-16 11l5 194c1 40 2 249 2 410c0 16 -16 22 -38 22h-267c-16 0 -33 -8 -35 -24c-5 -37 -5 -188 -5 -283c0 -96 2 -192 8 -289l-122 -36l-15 10c3 102 4 205 4 308c0 99 -3 198 -3 296c0 14 -5 28 -20 33l-67 21v31c71 -3 141 -4 212 -4h405h167 l-2 -33l-60 -12c-22 -5 -35 -26 -36 -46c-2 -41 -2 -83 -2 -124c0 -86 0 -183 3 -257'], + 0x1D6B8: [699,6,664,49,617,'270 30l-127 -36l-12 10c7 152 8 303 8 455c0 55 0 133 -4 164c-2 9 -8 19 -16 25c-19 15 -45 18 -70 21v22l8 8h345c35 0 69 -3 103 -12c25 -6 49 -16 68 -33c33 -30 44 -72 44 -114c0 -60 -18 -122 -66 -165c-22 -21 -51 -35 -82 -45c-38 -13 -79 -20 -119 -23 c-19 -2 -41 -2 -63 -2c-6 0 -12 -2 -16 -6c-5 -5 -6 -11 -6 -17c0 -1 3 -168 5 -252zM265 361c0 -5 3 -10 7 -14c5 -4 13 -6 20 -6c45 0 94 14 127 43c39 37 56 87 56 138c0 39 -10 79 -41 107c-26 24 -62 35 -99 35c-19 0 -42 0 -61 -3c-10 -2 -11 -13 -11 -20 c0 -1 1 -187 2 -280'], + 0x1D6BA: [699,1,712,28,659,'377 378l-204 -253c161 0 321 1 480 9l6 -15l-33 -120c-40 3 -81 3 -122 3c-158 1 -317 -1 -476 -1l19 67c78 82 167 192 237 282l-197 276v13l79 51c155 0 311 0 466 9l10 -8l-38 -68c-66 3 -225 3 -341 3l-5 -7l121 -177c10 -14 13 -23 13 -31s-7 -22 -15 -33'], + 0x1D6BB: [714,11,543,22,628,'257 496v133c0 8 -5 14 -9 15c-3 2 -8 3 -16 3l-201 -10l-9 9v58l8 8c96 -2 192 -9 288 -9c100 0 200 7 300 11l10 -10v-50l-11 -9c-11 0 -143 4 -211 4c-10 0 -13 -1 -17 -4c-3 -2 -4 -4 -4 -11v-138c0 -155 7 -311 17 -466l-144 -41l-9 12c5 165 8 330 8 495'], + 0x1D6BC: [707,6,794,29,763,'470 27l-122 -33l-20 8c5 66 6 132 6 198c0 76 -8 153 -30 226c-16 54 -40 107 -84 146c-22 20 -52 30 -83 30c-53 0 -73 -35 -88 -72l-20 5c4 46 16 81 53 115c30 27 73 41 115 41s85 -10 115 -37c32 -29 47 -60 58 -99c17 -60 24 -122 26 -184h10c13 63 27 122 53 181 c17 40 37 80 71 110c29 27 67 45 108 45c31 0 59 -4 82 -24c16 -15 26 -36 32 -56c8 -30 11 -60 11 -91l-25 -2c-4 20 -11 36 -25 49c-12 11 -31 18 -49 18c-31 0 -57 -9 -78 -28c-45 -41 -73 -94 -92 -149c-24 -69 -32 -141 -32 -214c0 -61 4 -122 8 -183'], + 0x1D6BD: [685,0,973,78,884,'642 661l-78 -15c-11 -2 -22 -10 -22 -21v-27l10 -11c55 0 113 -5 165 -16c39 -9 78 -22 106 -48c45 -41 61 -99 61 -156c0 -71 -18 -144 -74 -195c-67 -60 -165 -80 -258 -82l-10 -10v-26c2 -6 18 -9 28 -11l81 -15l1 -28h-333l1 27c27 5 85 15 86 15c8 2 10 10 11 17 v21l-10 10c-49 1 -103 7 -149 20c-41 12 -80 30 -111 58c-50 45 -69 110 -69 174c0 63 24 124 72 168c31 27 69 45 110 57c46 14 98 20 147 21c2 0 9 9 10 10v24c0 12 -7 19 -20 22l-78 14v27h323v-24zM552 116c44 2 91 16 123 45c25 22 40 51 51 81c13 38 18 77 18 116 c0 31 -4 62 -14 92c-8 24 -20 47 -39 64c-36 32 -90 41 -139 42l-10 -10v-419zM407 556c-42 -2 -88 -13 -119 -41c-49 -45 -67 -108 -67 -171c0 -62 15 -126 64 -171c33 -29 77 -54 122 -57l10 10v420'], + 0x1D6BE: [705,13,737,29,705,'400 448l192 236l113 16v-27c-59 -40 -136 -115 -191 -177c-34 -38 -56 -66 -91 -109c38 -64 78 -127 123 -188c30 -41 69 -90 108 -125c17 -16 34 -28 51 -33v-18l-168 -36c-47 63 -131 195 -193 295h-16c-50 -58 -142 -182 -194 -263l-105 -20v26l279 313l-180 285 c-8 11 -21 18 -34 24c-19 9 -43 14 -65 19v24l8 9l201 6c45 -88 97 -174 148 -257h14'], + 0x1D6BF: [703,1,781,-30,770,'719 592l-36 -174c-5 -23 -10 -45 -21 -66c-20 -39 -36 -58 -97 -77c-33 -11 -70 -18 -104 -23l-7 -9c0 -57 3 -113 11 -169c1 -12 10 -24 23 -28l76 -20v-27h-332l1 29l71 16c16 3 27 16 27 30v166l-7 9c-37 5 -75 11 -110 21c-23 7 -47 14 -64 30c-24 21 -39 49 -48 78 c-13 37 -17 75 -18 114c0 48 0 122 -20 141c-13 11 -29 16 -45 16c-8 0 -28 -3 -43 -9l-6 24c58 14 160 39 179 39c15 0 31 -2 42 -12c12 -10 16 -26 16 -40c1 -52 0 -88 2 -140c2 -75 21 -155 82 -207c9 -7 23 -15 35 -19l9 6c0 129 0 316 -4 375l114 32l15 -12 c-4 -127 -4 -266 -4 -399l8 -6c8 2 33 9 43 18c28 26 47 59 52 95l28 187c4 26 11 52 28 74c50 15 102 27 155 33l-4 -27c-30 -11 -41 -41 -47 -69'], + 0x1D6C0: [700,5,959,26,928,'928 105l-36 -110c-61 4 -159 10 -183 10c-68 0 -137 -1 -205 -6l26 95c44 11 83 33 115 62c27 24 42 56 53 89c14 43 18 88 18 134c0 85 -22 173 -90 234c-37 34 -91 46 -143 46c-56 0 -114 -11 -154 -47c-69 -62 -88 -152 -88 -239c0 -62 16 -123 50 -176 c31 -46 75 -84 132 -102l-33 -92c-60 4 -120 5 -181 5c-59 0 -118 -2 -177 -5l-6 11l28 95c82 -6 158 -12 240 -13l3 12c-123 46 -200 156 -200 277c0 85 33 168 99 229c34 30 77 50 123 63c56 17 115 23 174 23c56 0 111 -6 164 -22c44 -12 85 -31 117 -61 c64 -58 83 -141 83 -222c0 -78 -23 -158 -85 -214c-39 -36 -75 -59 -129 -75l4 -11c87 5 195 10 281 10'], + 0x1D6C1: [699,7,782,23,751,'389 23l-125 -30c-33 125 -70 249 -116 371c-35 93 -77 183 -124 273l-1 11l123 51c68 -6 371 -13 371 -13c106 0 211 6 231 7c0 -1 2 -21 3 -35c-127 -209 -272 -449 -362 -635zM654 625l-444 12c-12 -9 -20 -14 -20 -14c68 -161 127 -335 181 -499c4 2 13 4 14 4 c83 164 179 339 269 497'], + 0x1D6C2: [476,18,714,90,722,'620 476l67 -36l-134 -179l47 -149c5 -14 12 -29 24 -39c6 -6 14 -9 23 -9c10 0 34 17 52 31l13 -1l10 -15c-26 -26 -53 -51 -83 -72c-19 -12 -39 -25 -63 -25c-15 0 -31 3 -42 14c-23 23 -46 105 -62 162l-8 1c-26 -30 -68 -73 -86 -90c-26 -24 -55 -45 -88 -61 c-26 -13 -54 -22 -84 -22c-23 0 -47 7 -64 22c-19 18 -30 41 -38 64c-10 31 -14 64 -14 96c0 89 34 176 104 239c46 42 107 67 172 67c41 0 77 -15 106 -41c18 -17 40 -59 55 -100h9zM455 220c-9 28 -21 61 -32 88s-24 57 -48 78c-17 16 -39 28 -64 28s-49 -11 -66 -28 c-19 -17 -29 -40 -35 -64c-10 -34 -13 -70 -13 -105c0 -26 3 -52 11 -76c6 -19 15 -37 30 -51c12 -11 28 -18 45 -18c30 0 54 18 75 36c22 20 53 50 97 112'], + 0x1D6C3: [676,194,700,107,615,'227 -152l-106 -42l-14 10c5 122 5 340 5 510c0 58 2 116 20 171c15 43 36 85 71 117c45 41 112 62 175 62c47 0 96 -6 130 -37c25 -23 41 -54 41 -87c0 -46 -20 -90 -56 -123c-24 -21 -51 -36 -83 -46l-2 -11c30 -3 59 -5 87 -14c26 -9 51 -20 70 -38 c32 -29 50 -72 50 -114c0 -56 -17 -113 -61 -153c-53 -48 -129 -64 -203 -64c-19 0 -39 1 -58 6c-14 4 -28 9 -38 18c-7 6 -12 13 -16 21l61 75l12 -3c4 -20 12 -41 26 -57c12 -13 28 -23 46 -23c24 0 45 9 62 24c17 16 28 38 34 59c9 27 11 56 11 85c0 28 -16 85 -50 115 c-15 14 -37 18 -58 22c-35 6 -71 7 -107 7l1 34c47 0 93 16 126 46s45 72 45 113c0 25 -11 52 -30 69c-22 20 -51 30 -82 30c-32 0 -60 -14 -81 -35c-16 -16 -23 -39 -28 -60c-8 -37 -10 -74 -10 -111c0 -1 6 -384 10 -576'], + 0x1D6C4: [475,201,645,-3,625,'305 -201l-72 49l61 145c-6 75 -21 181 -43 253c-16 50 -32 100 -73 138c-17 15 -42 24 -66 24c-35 0 -72 -21 -98 -42l-17 25c49 44 111 80 181 80c38 0 76 -11 103 -35c34 -32 54 -73 64 -117c13 -59 18 -111 20 -186l9 -2c66 110 115 211 153 332l19 12l79 -31 c-65 -115 -134 -211 -203 -306c-14 -21 -44 -76 -54 -105c0 -60 0 -145 -8 -199'], + 0x1D6C5: [672,11,584,81,505,'254 390c-47 -40 -70 -97 -70 -154c0 -55 17 -111 61 -151c17 -16 39 -27 64 -27c33 0 73 9 93 29c18 18 25 54 25 82c0 32 -19 61 -38 88c-28 39 -64 72 -103 104zM454 655l-18 -43c-20 4 -76 12 -113 12c-18 0 -37 -1 -55 -5c-11 -2 -23 -5 -31 -13 c-9 -7 -13 -18 -13 -29c0 -19 16 -35 30 -49c26 -26 68 -58 104 -85c41 -31 79 -65 108 -105c21 -28 39 -59 39 -94c0 -67 -27 -133 -79 -180c-50 -45 -115 -75 -185 -75c-41 0 -82 10 -111 37c-39 35 -49 87 -49 137c0 100 64 188 149 248c-15 14 -29 28 -42 44 c-16 19 -33 40 -33 63c0 43 24 81 57 111c19 17 43 26 68 32c34 9 68 11 83 11c17 0 58 -5 85 -8'], + 0x1D6C6: [472,16,532,105,498,'360 286l-32 -64c-13 4 -51 11 -65 11c-16 0 -36 -10 -43 -18c-13 -14 -18 -28 -18 -47c0 -29 14 -57 36 -78c26 -23 64 -29 99 -29c52 0 101 24 141 53l8 -1l12 -17c-37 -33 -78 -62 -124 -83c-38 -17 -80 -29 -122 -29c-41 0 -81 12 -109 40c-24 24 -38 59 -38 94 c0 34 15 62 40 90c9 10 25 22 52 31l-1 6c-12 4 -21 9 -36 22c-22 20 -32 49 -32 76c0 36 17 62 45 85c37 30 87 44 133 44c48 0 97 -13 131 -45l-43 -75h-11c-9 19 -19 40 -33 53c-20 18 -46 31 -74 31c-19 0 -37 -6 -51 -18c-12 -11 -21 -24 -21 -40c0 -22 8 -43 25 -58 c14 -13 35 -21 54 -26c24 -7 53 -8 77 -8'], + 0x1D6C7: [674,129,523,79,511,'426 -129l-22 14c15 22 28 46 28 73c0 9 -5 19 -12 27c-13 12 -25 14 -53 14c-15 0 -31 -2 -47 -3c-26 -3 -64 -5 -77 -5c-20 0 -83 10 -108 33c-40 36 -56 88 -56 138c0 80 34 155 81 223c40 57 91 107 143 155c16 14 33 27 51 40l-2 9c-26 1 -80 7 -115 14 c-21 4 -42 11 -61 20l-2 11l37 40h11c20 -14 44 -27 66 -34c28 -10 81 -23 134 -23c23 0 46 3 66 6v-24c-47 -14 -91 -34 -128 -63c-49 -38 -86 -86 -115 -138c-33 -57 -51 -111 -51 -184c0 -42 7 -86 39 -117c22 -21 73 -25 82 -25c16 0 35 1 56 3c20 2 41 3 57 3 c8 0 50 -3 70 -20c9 -9 13 -20 13 -32c0 -22 -11 -42 -23 -63c-18 -32 -39 -62 -62 -92'], + 0x1D6C8: [470,197,651,11,540,'540 -156l-106 -41l-14 12c6 106 6 246 6 369c0 48 0 108 -5 142c-2 20 -7 41 -23 55c-15 14 -35 21 -55 21c-42 0 -79 -16 -113 -37c0 -74 2 -312 4 -334l-103 -38l-11 10c0 101 8 203 8 304c0 29 0 67 -18 83c-5 5 -13 6 -21 6c-18 0 -43 -15 -62 -27l-16 23 c30 25 52 44 82 59c23 12 46 19 72 19c16 0 31 -4 42 -14s16 -25 20 -50l10 -3c29 17 58 32 89 44c32 13 66 22 100 22c31 0 56 -13 77 -32c18 -17 22 -44 24 -67c3 -30 4 -117 4 -175c0 -117 0 -234 9 -351'], + 0x1D6C9: [677,14,648,84,563,'371 677c41 0 82 -10 112 -37c29 -27 47 -62 60 -98c15 -46 20 -95 20 -144c0 -68 -7 -136 -28 -202c-17 -50 -41 -98 -82 -135c-48 -44 -110 -75 -179 -75c-39 0 -78 13 -107 39c-32 29 -49 70 -61 110c-17 57 -22 116 -22 175s3 130 23 186c16 45 38 85 76 116 c51 42 118 65 188 65zM314 361h137l8 9c-2 33 -7 72 -14 102c-10 44 -25 87 -61 119c-19 18 -51 31 -79 31c-29 0 -53 -10 -74 -29c-22 -19 -33 -47 -40 -74c-12 -48 -14 -114 -14 -148l11 -10h126zM180 306c4 -34 9 -69 19 -102c13 -44 30 -91 65 -123 c24 -23 45 -28 71 -28c31 0 60 5 80 28c17 19 29 48 35 73c8 36 11 110 11 154l-9 9h-137h-125'], + 0x1D6CA: [469,11,354,114,348,'336 104l12 -12c-13 -19 -27 -38 -44 -53c-29 -27 -66 -50 -110 -50c-17 0 -37 11 -48 23c-6 7 -18 27 -21 42c-6 28 -6 57 -6 85c0 100 0 199 -5 299l103 31l13 -8c-5 -99 -7 -197 -7 -296c0 -30 2 -74 17 -88c6 -6 14 -9 23 -9c27 0 47 18 65 36h8'], + 0x1D6CB: [471,12,583,111,562,'487 467l75 -30v-10c-31 -13 -123 -56 -165 -83c-37 -24 -60 -39 -93 -66c39 -43 77 -82 119 -120s89 -78 131 -109l1 -9l-107 -52c-43 38 -85 77 -125 118l-95 102l-9 -7c0 -60 1 -116 3 -176l-97 -32l-11 6c0 76 2 151 2 227c0 7 -3 141 -5 211l105 34l11 -12l-8 -200 l7 -4c45 43 101 92 134 120c40 33 82 64 127 92'], + 0x1D6CC: [679,8,596,29,565,'290 374c-30 -59 -63 -124 -78 -159c-28 -64 -62 -142 -79 -195l-96 -26l-8 13c36 72 75 143 117 213l113 188c5 8 11 19 15 28c-17 48 -37 94 -44 109c-10 20 -23 42 -40 58c-16 14 -35 23 -57 23s-46 -4 -69 -11l-10 23c49 21 101 41 156 41c32 0 63 -11 85 -32 c19 -17 29 -39 39 -61c28 -61 49 -125 74 -188c48 -121 100 -240 157 -357l-2 -12l-100 -37l-24 11c-46 128 -90 244 -142 371h-7'], + 0x1D6CD: [474,196,646,95,641,'419 116l1 139c0 52 -2 124 -3 186l98 33l12 -6c-1 -90 -3 -221 -3 -269c0 -36 0 -90 17 -106c6 -5 14 -9 22 -9c21 0 41 13 60 26l9 -1l9 -13c-26 -28 -53 -55 -85 -77c-19 -14 -40 -29 -65 -29c-15 0 -35 4 -45 14c-18 17 -25 43 -27 70c-31 -22 -65 -43 -100 -59 c-27 -12 -55 -21 -84 -21c-26 0 -52 6 -72 28l-8 -3v-46c0 -47 9 -93 27 -137l-71 -32l-16 14c15 208 16 436 16 436c0 61 -4 122 -7 183l104 36l14 -8c-3 -70 -6 -141 -6 -211c0 -38 0 -76 7 -113c4 -22 11 -45 28 -60c12 -12 35 -12 54 -12c43 0 82 25 114 47'], + 0x1D6CE: [473,6,638,26,603,'527 471l71 -26l5 -13c-9 -19 -18 -39 -28 -59l-181 -353l-72 -26l-10 5c-17 84 -35 170 -65 252c-10 27 -23 54 -37 79c-9 16 -47 75 -100 75c-23 0 -46 -8 -65 -18l-19 29c40 36 97 57 153 57c35 0 73 -8 97 -32c30 -29 46 -69 60 -108c24 -65 40 -135 54 -202l9 -1 l54 126c23 66 41 133 49 200'], + 0x1D6CF: [689,126,587,73,576,'489 -126l-21 16c15 19 34 46 34 64c0 13 -7 26 -17 35c-13 12 -37 14 -56 14c-53 0 -132 -12 -170 -12c-28 0 -56 4 -83 11c-20 6 -40 15 -56 29c-33 30 -47 72 -47 114c0 49 34 90 71 124c27 24 72 50 106 62v11c-10 2 -59 14 -84 35c-21 19 -30 46 -30 72 c0 35 20 65 47 89c17 15 38 27 59 38c17 8 32 14 48 20l-2 10c-28 1 -57 3 -86 8c-23 4 -56 11 -67 26l44 49l8 -1c16 -15 41 -29 63 -37c29 -11 67 -16 99 -16c40 0 68 2 103 6l3 -29c-33 -4 -66 -10 -97 -20c-22 -8 -43 -17 -59 -32c-25 -22 -48 -49 -48 -82 c0 -27 4 -56 26 -76c15 -14 36 -20 56 -25c31 -7 62 -9 93 -10v-26c-65 -5 -132 -18 -179 -61c-29 -26 -54 -59 -54 -97c0 -29 2 -59 25 -80c26 -23 64 -26 100 -26c48 0 121 11 157 11c18 0 36 -1 53 -5c12 -2 23 -5 32 -13c12 -11 16 -26 16 -41c0 -25 -8 -49 -20 -71 c-17 -31 -42 -58 -67 -84'], + 0x1D6D0: [486,11,672,79,590,'208 234c0 -35 4 -70 15 -104c8 -26 20 -51 41 -70c17 -16 38 -30 64 -30c28 0 59 5 79 24c23 21 35 50 42 79c11 44 12 79 12 135c0 31 -3 62 -12 91c-7 22 -17 43 -35 60c-19 18 -46 27 -74 27s-54 -12 -74 -30c-22 -20 -34 -46 -43 -73c-11 -35 -15 -72 -15 -109z M79 233c0 68 21 135 74 183c51 47 121 70 193 70c64 0 131 -13 177 -55c46 -41 67 -99 67 -157c0 -44 -5 -87 -20 -129c-12 -34 -30 -66 -57 -91c-51 -46 -122 -65 -193 -65c-61 0 -125 8 -169 48c-56 51 -72 125 -72 196'], + 0x1D6D1: [523,4,664,18,685,'171 485h372c46 0 99 8 126 38l16 -12c-16 -33 -36 -72 -55 -101c-15 -21 -26 -22 -34 -22h-78c-5 -44 -9 -94 -9 -130c0 -55 0 -132 29 -158c11 -11 27 -19 44 -19c16 0 38 13 52 26l10 -2l10 -20c-23 -22 -47 -45 -76 -62c-21 -12 -45 -22 -71 -22s-53 5 -72 22 c-15 14 -20 35 -24 55c-7 35 -7 70 -7 105c0 65 6 132 14 197l-7 8h-128c-14 -74 -31 -147 -52 -219c-17 -56 -41 -111 -64 -165l-13 -8l-78 12l-1 13c14 19 70 104 105 179c20 43 41 133 49 188h-94c-13 0 -27 -7 -37 -17c-25 -24 -40 -57 -52 -92l-28 12 c13 64 37 159 61 177c10 8 20 10 32 13c19 4 40 4 60 4'], + 0x1D6D2: [474,196,610,104,566,'228 -166l-92 -30c-14 3 -25 8 -25 15c-4 113 -7 236 -7 343c0 51 4 103 18 153c9 35 30 82 60 105c56 44 104 54 172 54c58 0 118 -15 159 -53c44 -39 53 -96 53 -151c0 -44 -4 -87 -17 -129c-11 -32 -26 -62 -51 -86c-40 -36 -100 -57 -144 -57c-49 0 -101 16 -139 57 l-9 -2c0 -68 14 -141 30 -207zM221 133c6 -21 15 -41 32 -56c18 -16 44 -24 69 -24c30 0 55 13 75 32c19 17 31 45 36 69c9 38 11 73 11 112c0 31 -5 66 -13 96c-6 21 -16 41 -32 56c-14 13 -33 21 -53 21c-29 0 -57 -10 -78 -29c-22 -20 -33 -46 -41 -73 c-11 -37 -17 -76 -17 -115c0 -24 2 -62 11 -89'], + 0x1D6D4: [475,11,700,86,681,'325 425c-25 0 -48 -11 -66 -28c-22 -20 -47 -73 -47 -169c0 -36 2 -71 12 -106c6 -24 15 -47 34 -65c17 -15 39 -25 63 -25c28 0 52 15 71 32c19 18 29 42 36 65c10 34 12 69 12 104c0 34 -2 69 -11 102c-5 22 -17 43 -33 61c-15 17 -46 29 -71 29zM673 475l8 -4 l-22 -78l-10 -7l-197 35l-6 -7c21 -12 34 -23 53 -42c38 -37 48 -91 48 -141c0 -65 -15 -131 -66 -178c-44 -39 -101 -64 -162 -64c-60 0 -123 9 -167 49c-53 48 -66 119 -66 186c0 65 8 137 60 184c48 44 112 56 179 56c113 1 235 8 348 11'], + 0x1D6D5: [497,7,580,31,584,'499 372h-122l-11 -11c-6 -41 -13 -100 -13 -138c0 -26 2 -57 8 -82c6 -24 14 -43 31 -59c10 -9 24 -13 37 -13c14 0 35 11 53 24l10 -1l10 -15c-22 -22 -54 -49 -83 -64c-21 -11 -44 -20 -69 -20c-24 0 -51 3 -67 18c-14 13 -26 27 -32 45c-7 23 -8 47 -8 71 c0 20 1 53 3 73c7 60 11 105 17 161l-9 10h-74c-22 0 -61 -3 -78 -18c-23 -21 -35 -55 -45 -85l-26 8c8 39 20 94 25 115c4 16 10 31 22 43c22 19 53 26 83 26h295c42 0 84 12 116 37l12 -9c-10 -42 -37 -75 -66 -107c-5 -6 -12 -9 -19 -9'], + 0x1D6D6: [472,2,621,3,570,'409 399l-3 12l83 61l16 -6c51 -44 65 -109 65 -171c0 -87 -41 -169 -108 -230c-46 -42 -108 -67 -174 -67c-40 0 -81 7 -110 33c-33 30 -53 75 -53 114c0 4 -1 107 -2 160c0 29 -4 61 -19 76c-6 6 -15 11 -24 11c-20 0 -42 -11 -62 -21l-15 19c49 33 118 81 156 81 c17 0 34 -6 46 -17c21 -19 22 -74 22 -83v-131c0 -29 2 -60 11 -88c7 -22 18 -42 36 -58c21 -20 52 -29 82 -29c31 0 63 12 85 32c35 32 44 86 44 133c0 63 -30 122 -76 169'], + 0x1D6D7: [472,201,816,85,737,'333 -201l-15 4c3 43 5 137 5 188l-6 8c-22 1 -37 4 -59 9c-39 9 -77 25 -106 51c-48 44 -67 106 -67 168c0 60 19 120 66 163c46 41 109 70 171 82l10 -24c-30 -9 -58 -24 -81 -45c-39 -36 -50 -87 -50 -137c0 -74 14 -156 73 -210c13 -12 25 -17 43 -20l6 6v228 c0 61 23 95 63 133c33 31 99 65 174 65c42 0 85 -10 115 -37c46 -42 62 -100 62 -158c0 -73 -25 -145 -82 -197c-59 -54 -139 -77 -221 -79l-6 -7c0 -52 3 -128 5 -161zM434 30c25 0 40 2 60 11c23 11 43 23 61 40c49 44 63 112 63 174c0 53 -19 111 -54 147 c-14 13 -35 19 -46 19c-17 0 -38 -3 -50 -14c-17 -15 -25 -29 -31 -47c-8 -27 -9 -72 -9 -104v-218'], + 0x1D6D8: [470,197,587,-9,598,'593 -116l5 -22c-29 -15 -58 -30 -88 -41c-19 -7 -39 -14 -60 -14c-22 0 -44 8 -60 22c-24 22 -40 50 -55 77c-17 33 -52 105 -80 165h-11c-24 -30 -81 -115 -138 -262l-13 -6l-83 35c68 100 142 194 218 286c-30 66 -67 146 -82 175c-13 25 -31 56 -49 73 c-9 8 -20 14 -32 14c-5 0 -11 -1 -15 -3c-7 -3 -27 -14 -41 -24l-18 22c24 21 55 45 84 61c19 11 41 20 64 20c13 0 27 -2 37 -11c21 -19 34 -42 46 -66c3 -4 45 -94 77 -163h10l184 242l15 6l55 -34l-2 -11c-72 -91 -160 -170 -237 -258c46 -97 106 -221 152 -264 c17 -16 40 -25 64 -25c18 0 36 3 53 6'], + 0x1D6D9: [672,196,821,-3,742,'464 672l8 -9c-4 -48 -4 -256 -4 -384v-236l9 -8c45 7 86 26 112 50c46 42 58 105 58 163c0 55 -27 105 -71 142v14l67 61s19 -6 24 -7c46 -44 75 -102 75 -163c0 -78 -30 -159 -91 -214c-35 -32 -79 -54 -125 -68c-15 -5 -35 -8 -50 -11l-8 -10c1 -51 1 -100 2 -151 l-100 -37l-13 11c4 56 6 114 8 172l-8 8c-41 0 -83 2 -122 11c-28 7 -55 16 -75 34c-18 17 -30 38 -37 61c-10 28 -13 58 -13 88c0 35 3 70 3 105c0 66 -7 77 -18 87c-8 7 -19 10 -30 10c-18 0 -39 -11 -55 -20l-13 19c29 22 59 43 92 60c20 11 42 21 66 21 c15 0 31 -4 42 -14c13 -11 22 -29 22 -105c0 -40 -3 -81 -3 -121c0 -34 2 -69 12 -102c7 -25 20 -50 40 -68c24 -21 56 -33 90 -33l8 8v230c0 124 -5 247 -8 371'], + 0x1D6DA: [499,9,972,78,887,'716 432l68 63l20 4c28 -14 50 -46 62 -73c15 -36 21 -74 21 -111c0 -95 -36 -187 -110 -254c-46 -42 -107 -68 -172 -68c-43 0 -89 5 -120 33c-13 12 -24 32 -32 48h-15c-25 -22 -53 -43 -83 -59c-29 -15 -65 -24 -102 -24c-41 0 -81 13 -109 39c-49 44 -66 107 -66 168 c0 89 24 181 95 245c28 25 63 43 101 53l17 -20c-18 -9 -34 -21 -48 -35c-48 -43 -66 -105 -66 -166c0 -64 21 -127 71 -173c22 -20 53 -29 85 -29c31 0 49 13 72 33c21 20 27 68 27 101v162c0 12 -3 62 -5 95l107 32l10 -10c-6 -70 -10 -140 -10 -210c0 -38 2 -75 12 -112 c7 -25 17 -50 37 -68c22 -20 49 -29 79 -29c33 0 66 12 89 33c37 34 50 85 50 132c0 68 -26 134 -82 181'], + 0x1D6DB: [696,18,643,87,558,'114 534l-23 11c14 37 29 75 59 103c37 33 87 48 138 48c55 0 106 -29 144 -64c45 -41 75 -94 94 -149c23 -67 32 -135 32 -204c0 -87 -20 -177 -89 -240c-41 -38 -99 -57 -157 -57c-63 0 -119 21 -163 61c-22 20 -37 51 -46 78c-11 34 -16 69 -16 104 c0 66 17 135 70 183c51 47 120 69 192 69c7 0 23 -1 39 -3l6 10c-16 38 -35 73 -67 101c-25 23 -62 40 -99 40c-29 0 -56 -11 -77 -30c-13 -12 -27 -39 -37 -61zM411 430c-16 6 -34 11 -51 11c-37 0 -76 -10 -103 -35c-20 -18 -30 -42 -38 -67c-10 -32 -14 -65 -14 -99 c0 -39 3 -78 15 -116c9 -28 21 -55 44 -76c17 -15 41 -27 65 -27c22 0 45 8 61 22c23 21 32 53 40 82c11 45 14 91 14 136c0 58 -12 115 -33 169'], + 0x1D6DC: [471,7,587,84,539,'443 263l-16 -44h-34c-73 0 -147 -1 -184 -3l-6 -9c6 -43 26 -86 61 -118c30 -27 73 -34 114 -34c51 0 101 17 140 45l9 -1l12 -19c-67 -56 -156 -87 -247 -87c-52 0 -107 8 -145 43c-49 44 -63 109 -63 170c0 73 24 144 81 196c49 45 116 69 185 69 c65 0 127 -25 171 -68l-54 -64l-14 3c-12 22 -25 44 -44 61c-20 18 -47 26 -75 26c-32 0 -63 -11 -86 -32c-35 -33 -50 -79 -51 -124l7 -9c36 -2 74 -2 109 -2c43 0 87 0 130 1'], + 0x1D6DD: [676,8,639,0,612,'13 273l-13 20c49 34 112 77 153 77c15 0 30 -3 41 -13c19 -18 19 -78 19 -120c0 -29 0 -60 8 -88c6 -20 16 -41 33 -56c19 -18 45 -27 73 -27c30 0 42 6 64 24c16 13 41 46 54 105c8 37 13 75 15 112l-8 8l-105 20c-38 11 -76 24 -105 50c-40 37 -67 84 -67 136 c0 41 13 83 46 113c31 28 74 42 118 42s87 -15 118 -43c87 -79 91 -184 91 -282l6 -9c17 0 46 -1 58 -1v-35c-29 0 -46 0 -61 1l-9 -7c-11 -91 -50 -167 -101 -222c-41 -44 -113 -86 -178 -86c-37 0 -75 8 -101 33c-20 18 -35 43 -43 68c-10 36 -12 73 -12 111 c0 40 -2 60 -13 72c-9 9 -19 15 -33 15c-15 0 -33 -9 -48 -18zM461 359v18c0 46 -6 91 -21 134c-11 34 -27 67 -55 91c-19 18 -44 31 -72 31c-18 0 -36 -5 -49 -17c-12 -11 -21 -29 -21 -51c0 -66 29 -114 79 -159c32 -29 88 -45 132 -53'], + 0x1D6DF: [672,196,873,86,790,'382 -196l-14 11c4 55 8 112 8 169l-9 9c-46 0 -87 2 -130 14c-30 8 -59 20 -81 40c-52 47 -70 114 -70 180c0 64 16 131 67 177c30 27 86 65 213 65l9 10c-1 53 -4 105 -5 158l105 35l8 -9c-2 -26 -2 -102 -3 -184l10 -10c46 0 94 0 153 -15c33 -9 65 -22 90 -45 c43 -39 57 -96 57 -150c0 -73 -23 -145 -80 -197c-62 -57 -147 -69 -221 -69l-8 -9c0 -48 0 -95 1 -143zM365 437c-43 0 -74 -16 -107 -46c-18 -17 -29 -39 -35 -61c-8 -29 -10 -62 -10 -94c0 -34 4 -69 15 -102c8 -25 21 -50 41 -69c27 -25 57 -37 98 -37l8 10v389zM489 28 c49 0 89 18 115 43c21 19 35 45 44 72c11 34 15 70 15 105c0 31 -3 62 -11 92c-7 21 -15 42 -33 58c-41 39 -91 39 -129 39l-10 -9v-392'], + 0x1D6E1: [547,11,932,84,865,'271 381l10 -14l-2 -3c-19 -9 -36 -21 -51 -35c-32 -29 -48 -69 -48 -110c0 -45 14 -90 49 -122c22 -20 52 -32 83 -32c29 0 58 7 78 26c11 11 18 33 22 52c6 31 6 63 6 92l-1 79l94 32l15 -16c-2 -32 -5 -93 -5 -96c1 -30 2 -59 11 -88c6 -20 15 -42 31 -57 c18 -16 40 -29 65 -29c35 0 70 11 96 33c40 33 55 85 55 134c0 63 -21 126 -70 171c-31 28 -73 45 -115 56c-57 15 -116 19 -175 19c-62 0 -125 -8 -184 -27c-46 -15 -90 -36 -122 -71l-17 14c14 19 26 35 44 52c40 36 100 73 143 84c57 14 125 22 192 22 c64 0 134 -7 195 -23c46 -12 93 -32 127 -63c49 -44 68 -107 68 -170c0 -89 -39 -175 -97 -227c-55 -48 -125 -75 -193 -75c-39 0 -79 13 -106 37c-13 12 -24 28 -30 40l-11 3c-21 -20 -44 -40 -70 -53c-31 -18 -66 -27 -103 -27c-45 0 -88 14 -119 43 c-38 34 -52 82 -52 130c0 60 27 117 74 159c31 28 70 48 113 60'], + 0x1D7CE: [716,15,550,40,513,'325 716c25 -11 56 -34 73 -49c41 -37 69 -84 89 -134c24 -60 26 -125 26 -189c0 -100 -24 -209 -114 -298c-41 -40 -96 -61 -148 -61c-47 0 -91 18 -124 48c-31 28 -51 65 -64 103c-17 49 -23 99 -23 149c0 125 33 254 134 341c44 38 96 77 151 90zM256 632 c-14 -7 -32 -17 -43 -28c-28 -25 -47 -58 -59 -92c-15 -41 -21 -84 -21 -128c0 -56 7 -112 26 -166c16 -44 39 -85 74 -117c21 -19 48 -34 79 -34c27 0 51 10 68 25c16 15 33 43 41 68c9 28 15 64 15 114c0 94 -14 190 -71 269c-15 21 -34 42 -55 58c-16 12 -36 26 -54 31'], + 0x1D7CF: [715,9,550,70,357,'70 626l271 89l16 -18c-11 -137 -15 -275 -15 -413c0 -84 0 -188 3 -252l-107 -41l-21 14c13 118 20 237 20 356c0 67 -2 133 -6 200c-1 8 -5 18 -11 24c-5 5 -16 9 -22 9h-128v32'], + 0x1D7D0: [715,-5,550,15,529,'529 109l-29 -104h-485v20c98 81 187 169 261 269c46 62 83 133 83 209c0 41 -9 84 -42 113c-19 18 -48 25 -75 25c-23 0 -46 -7 -67 -16c-29 -12 -55 -28 -81 -45l-18 24c38 34 74 59 120 81c36 17 76 30 117 30c47 0 95 -10 129 -41c30 -28 49 -65 49 -105 c0 -56 -23 -109 -54 -157c-70 -107 -167 -195 -251 -294c-1 -1 -1 -3 -1 -4c0 -2 3 -5 6 -5h338'], + 0x1D7D1: [708,8,550,25,496,'281 391v-7c34 -3 68 -8 100 -18c25 -8 49 -18 68 -35c31 -28 47 -68 47 -108c0 -57 -21 -113 -66 -153c-58 -53 -138 -78 -220 -78c-68 0 -135 20 -185 61l57 107l19 -2c10 -35 22 -69 50 -94c18 -16 41 -32 66 -32c38 0 76 10 103 35c38 34 49 86 49 134 c0 41 -13 82 -45 111c-20 19 -47 28 -74 35c-38 9 -78 12 -117 12v29c54 3 123 21 167 61c27 24 38 58 38 93c0 28 -10 57 -32 77c-21 19 -49 25 -77 25c-22 0 -43 -6 -63 -14c-27 -11 -52 -26 -77 -42l-17 25c38 28 73 51 117 70c34 14 69 25 106 25c43 0 88 -10 119 -38 c26 -23 41 -55 41 -88c0 -47 -21 -91 -58 -124c-33 -31 -73 -51 -116 -67'], + 0x1D7D2: [708,12,550,2,519,'413 255h102l4 -9l-29 -62h-77l-7 -7c0 -49 2 -97 7 -145l-108 -44l-14 11c6 59 10 119 10 179l-7 6h-292v52l299 443l105 29l9 -10l-9 -435zM301 260v311l-6 10c-4 0 -48 -51 -98 -126c-101 -147 -115 -191 -115 -194l6 -9h205'], + 0x1D7D3: [694,12,550,18,495,'475 694l5 -4l-38 -99h-305v-174l10 -4c46 22 92 33 138 33c56 0 113 -13 153 -50c41 -37 57 -89 57 -141c0 -68 -23 -138 -77 -187c-55 -50 -130 -80 -209 -80c-36 0 -71 4 -106 14c-22 6 -57 28 -85 47v13l49 95h18c10 -33 22 -67 49 -92c23 -21 55 -35 87 -35 c34 0 67 11 91 33c20 18 32 42 41 66c10 32 15 68 15 101c0 50 -12 102 -52 139c-24 21 -59 28 -92 28c-36 0 -93 -25 -121 -56l-20 8v345h392'], + 0x1D7D4: [704,12,550,44,520,'496 625l-19 -2c-24 15 -53 23 -82 23c-54 0 -104 -24 -142 -58c-32 -30 -52 -69 -66 -109c-18 -46 -26 -95 -28 -143l8 -5c50 31 106 55 167 55c43 0 85 -11 116 -39c38 -35 59 -82 59 -131c0 -58 -31 -111 -76 -152c-50 -46 -118 -76 -190 -76c-45 0 -86 20 -118 48 c-62 57 -81 138 -81 217c0 126 53 248 151 338c71 64 162 113 264 113c13 0 45 -7 61 -14zM161 286c2 -45 5 -90 19 -133c10 -31 27 -62 52 -85c19 -18 44 -29 72 -29c27 0 53 11 72 28c28 26 43 63 43 98c0 45 -16 90 -51 122c-26 24 -63 33 -99 33c-39 0 -75 -17 -108 -34 '], + 0x1D7D5: [696,15,550,50,547,'251 20l-119 -35l-19 19c19 77 59 175 98 246c56 100 151 224 233 332c2 3 3 6 3 10c-3 4 -9 4 -14 4c-95 -1 -190 -1 -285 -1c-18 -1 -36 -9 -42 -25c-2 -7 -13 -58 -19 -90h-37v216c147 -3 331 -3 497 -3v-17c-81 -116 -156 -234 -219 -358c-46 -92 -70 -198 -77 -298'], + 0x1D7D6: [720,5,550,42,505,'249 330c-24 -11 -50 -26 -69 -43c-26 -24 -32 -58 -32 -91c0 -47 20 -92 55 -126c19 -19 51 -33 79 -33c31 0 61 5 83 25c25 24 37 62 37 95c0 40 -24 76 -55 104c-30 27 -64 49 -98 69zM356 393c30 -20 66 -42 83 -58c39 -34 66 -79 66 -129c0 -54 -26 -104 -67 -142 c-53 -48 -127 -69 -201 -69c-52 0 -105 13 -142 46c-35 32 -53 75 -53 120c0 46 19 92 55 125c25 23 78 49 115 67v7c-34 27 -71 53 -96 87c-19 26 -34 55 -34 86c0 41 24 77 55 106c40 36 102 62 154 81c38 -5 64 -10 95 -21c25 -9 46 -22 63 -38c24 -22 34 -44 34 -75 c0 -36 -15 -69 -36 -99c-25 -32 -58 -60 -91 -84v-10zM315 422c43 29 66 80 66 128c0 29 -12 59 -35 80c-25 23 -61 34 -94 37c-19 -7 -34 -21 -46 -35c-14 -18 -19 -40 -19 -62s14 -45 30 -62c27 -31 63 -62 98 -86'], + 0x1D7D7: [707,10,550,48,514,'376 342l-7 7c-71 -36 -134 -46 -154 -46c-42 0 -82 18 -112 45c-34 31 -55 73 -55 117c0 47 17 95 50 131c40 44 97 81 154 111c43 0 83 0 125 -9c28 -6 62 -19 81 -36c32 -29 56 -68 56 -111c0 -36 -13 -71 -29 -105c-22 -50 -51 -97 -83 -144 c-38 -55 -74 -110 -108 -168c-22 -38 -44 -77 -59 -118l-107 -26l-15 12c19 34 42 64 66 95zM380 393c9 23 20 52 20 77c0 52 -19 102 -59 138c-28 26 -94 38 -126 38c-39 -30 -60 -78 -60 -123s16 -89 51 -121c25 -23 61 -32 96 -32c29 0 54 10 78 23'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Normal/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Operators/Regular/Main.js new file mode 100644 index 0000000..12a751e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Operators/Regular/Main.js @@ -0,0 +1,65 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'NeoEulerMathJax_Operators', + id: 'NEOEULEROPERATORS', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x2206: [696,4,713,30,689,'363 671l58 25c44 -132 91 -257 143 -385c37 -90 81 -182 125 -267l-1 -16l-61 -32c-198 13 -397 21 -595 7l-2 42zM562 50l6 9c-41 94 -201 494 -201 495h-11c-95 -164 -175 -321 -255 -490l3 -12c152 3 306 -2 458 -2'], + 0x220C: [720,192,666,103,581,'103 230v40h209l88 202c-37 19 -79 29 -123 29h-174v40h174c50 0 97 -11 139 -32l91 209l11 2l22 -5l5 -11l-94 -215c78 -53 130 -139 130 -239c0 -164 -139 -291 -304 -291h-55l-66 -151l-32 8l-3 14l56 129h-74v40h91l101 231h-192zM339 230l-100 -231h38 c138 0 253 100 264 231h-202zM435 451l-78 -181h184c-6 75 -47 139 -106 181'], + 0x220F: [950,50,1056,70,985,'882 831v-762c0 -30 0 -79 103 -79v-40h-303v40c103 0 103 49 103 79v841h-515v-841c0 -30 0 -79 103 -79v-40h-303v40c103 0 103 49 103 79v762c0 30 0 79 -103 79v40h915v-40c-103 0 -103 -49 -103 -79'], + 0x2210: [950,50,1056,70,985,'882 831v-762c0 -30 0 -79 103 -79v-40h-915v40c103 0 103 49 103 79v762c0 30 0 79 -103 79v40h303v-40c-103 0 -103 -49 -103 -79v-841h515v841c0 30 0 79 -103 79v40h303v-40c-103 0 -103 -49 -103 -79'], + 0x2211: [950,50,1056,56,971,'484 453l-304 -406h791l-14 -97h-869c-18 0 -32 0 -32 16c0 4 2 8 9 17l346 463l-289 445v46c3 13 13 13 32 13h748l-14 -70h-659l257 -394c3 -4 7 -10 7 -16c0 -4 -2 -8 -9 -17'], + 0x221B: [988,1,833,70,849,'404 797v-4l56 -9c13 -4 26 -10 37 -19c15 -13 23 -32 23 -51c0 -30 -16 -58 -40 -78c-29 -26 -69 -38 -110 -38c-32 0 -63 10 -88 27l-4 5l24 36h5c7 -10 14 -18 23 -26c14 -14 34 -22 54 -22c21 0 41 6 56 20c18 16 26 38 26 61c0 21 -11 41 -28 57 c-10 10 -24 14 -38 17c-20 5 -41 5 -62 5v14c18 3 35 7 51 14c13 4 25 10 33 18c16 14 24 33 24 52c0 14 -5 26 -16 36c-12 10 -28 14 -45 14c-9 0 -19 -4 -29 -7c-14 -5 -27 -13 -40 -20l-8 11c18 13 37 26 57 35c15 7 29 12 45 12c22 0 46 -4 62 -19c14 -12 21 -30 21 -48 c0 -22 -9 -45 -27 -61c-17 -15 -39 -26 -62 -32zM381 -1h-23l-205 450l-67 -50l-16 16l135 102l185 -406l423 877l36 -17'], + 0x221C: [988,1,833,70,849,'474 958l4 -3c-1 -14 -1 -150 -1 -227l4 -5h53l3 -3l-9 -19h-47l-4 -4c0 -27 0 -66 2 -77l-45 -17l-3 3c3 18 3 59 3 91l-5 4h-160v22l162 217zM434 727v171c0 1 -1 3 -1 3c-1 2 -4 1 -5 0c-19 -19 -36 -42 -53 -65c-21 -29 -69 -98 -69 -109l3 -4h121zM381 -1h-23 l-205 450l-67 -50l-16 16l135 102l185 -406l423 877l36 -17'], + 0x222C: [950,161,856,49,807,'619 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243 c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295zM319 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230 c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54 c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295'], + 0x222D: [950,161,1156,49,1107,'919 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243 c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295zM319 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230 c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54 c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295zM619 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54 c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4 c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295'], + 0x222E: [950,161,556,49,507,'244 253c0 53 -1 106 -1 159c0 76 0 113 1 124c-66 -16 -110 -75 -110 -142c0 -63 42 -124 110 -141zM317 577c95 -20 150 -101 150 -183c0 -78 -53 -161 -149 -182c-4 -51 4 -161 -14 -237c-14 -56 -47 -136 -138 -136c-58 0 -117 25 -117 87c0 53 45 54 49 54 c24 0 56 -18 56 -54c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 21 -1 42 -1 62v66c-95 18 -151 100 -151 183c0 77 51 162 150 182c0 180 7 212 12 236c15 63 48 137 135 137c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54 c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -40 1 -79 1 -119zM318 253c66 17 109 77 109 141c0 68 -46 126 -109 142v-105c0 -10 1 -21 1 -30s-1 -20 -1 -30v-118'], + 0x2236: [455,12,216,50,164,'50 45c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM50 398c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57'], + 0x2237: [455,12,569,50,517,'403 45c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM403 398c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM50 45c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM50 398 c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57'], + 0x2238: [455,-206,756,46,710,'321 398c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM704 206h-658l7 40h657'], + 0x2239: [455,12,863,46,817,'703 45c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM703 398c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM704 206h-658l7 40h657'], + 0x223A: [455,12,756,46,710,'704 206h-658l7 40h657zM593 45c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM593 398c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57zM50 45c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57 c-32 0 -58 26 -58 57zM50 398c0 31 26 57 58 57c31 0 56 -26 56 -57s-25 -57 -56 -57c-32 0 -58 26 -58 57'], + 0x223B: [455,12,551,22,530,'218 45c0 31 26 57 58 57s56 -26 56 -57s-24 -57 -56 -57s-58 26 -58 57zM218 398c0 31 26 57 58 57s56 -26 56 -57s-24 -57 -56 -57s-58 26 -58 57zM281 251l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70 c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0x2244: [720,192,597,54,563,'516 715l5 -11l-168 -388l35 -22c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-13 8l-56 -130h286l-6 -40h-298l-127 -293l-32 8l-3 14l118 271h-161l7 40h171l66 152l-51 33 c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42l4 -2l165 380l11 2'], + 0x2247: [740,172,597,54,563,'513 735l5 -11l-105 -243c15 -7 32 -12 49 -12c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-20 0 -39 4 -57 11l-43 -100h212l-6 -40h-224l-68 -157h298l-6 -40h-309l-119 -274l-32 8l-3 14l110 252h-150l7 40h160 l68 157h-235l7 40h246l51 118l-12 7l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42l63 -39l103 236l11 2'], + 0x2249: [720,192,551,22,530,'488 715l5 -11l-159 -366l21 -13c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-37 0 -72 15 -103 35l-32 -73l72 -45c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11 c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-49 31l-160 -367l-32 8l-3 14l160 368l-15 9c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14 c16 -6 31 -14 46 -22l32 74l-66 42c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42l18 -11l156 358l11 2'], + 0x224B: [577,-108,551,22,530,'281 521l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66 c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42zM281 371l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28 c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42zM281 221l74 -46c22 -14 47 -26 74 -26c19 0 32 7 44 17c14 10 26 32 36 50l21 -11c-11 -26 -28 -52 -47 -70 c-15 -14 -41 -27 -65 -27c-38 0 -73 16 -105 36l-99 63c-24 15 -51 28 -80 28c-19 0 -35 -5 -50 -18c-12 -11 -28 -37 -40 -59l-22 12c12 24 27 49 42 66c13 15 28 28 47 34c11 4 23 7 35 7c19 0 38 -6 56 -14c28 -11 54 -26 79 -42'], + 0x224C: [597,-102,597,54,563,'557 299h-503l7 40h502zM557 102h-503l7 40h502zM303 541l-74 -46c-22 -14 -47 -26 -74 -26c-19 0 -32 7 -44 17c-14 10 -26 32 -36 50l-21 -11c11 -26 28 -52 47 -70c15 -14 41 -27 65 -27c38 0 73 16 105 36l99 63c24 15 51 28 80 28c19 0 35 -5 50 -18 c12 -11 28 -37 40 -59l22 12c-12 24 -27 49 -42 66c-13 15 -28 28 -47 34c-11 4 -23 7 -35 7c-19 0 -38 -6 -56 -14c-28 -11 -54 -26 -79 -42'], + 0x2262: [720,192,830,81,749,'621 715l5 -11l-104 -239h227l-9 -39h-235l-68 -158h312l-9 -38h-320l-68 -158h397l-9 -39h-405l-98 -225l-32 8l-3 14l88 203h-209l9 39h217l69 158h-295l9 38h302l69 158h-380l9 39h388l110 253l11 2'], + 0x2263: [661,-33,830,81,749,'90 661h659l-9 -39h-659zM90 465h659l-9 -39h-659zM90 268h659l-9 -38h-659zM90 72h659l-9 -39h-659'], + 0x2274: [770,142,807,84,721,'595 765l5 -11l-67 -155l170 64l11 -4l7 -24l-3 -8l-208 -80l-98 -226l303 -117l6 -9l-10 -24l-9 -6l-306 119l-81 -186c28 -10 55 -23 80 -37l89 -46c27 -14 56 -26 89 -26c23 0 38 7 53 17c16 10 31 32 43 50l25 -11c-13 -26 -34 -52 -56 -70c-18 -14 -50 -27 -78 -27 c-46 0 -88 16 -126 36l-119 63l-18 9l-86 -198l-32 8l-3 14l82 190c-12 3 -26 5 -39 5c-23 0 -42 -5 -60 -18c-15 -11 -34 -37 -48 -59l-27 12c15 24 33 49 51 66c15 15 33 28 56 34c13 4 28 7 42 7c15 0 29 -2 43 -6l82 188l-274 105v26l396 149l82 189l11 2zM374 336 l83 191l-276 -105v-12'], + 0x2275: [770,142,807,88,725,'595 765l5 -11l-103 -238l228 -86v-26l-333 -128l-73 -169c3 -1 7 -3 10 -4c34 -11 65 -26 95 -42l89 -46c27 -14 56 -26 89 -26c23 0 38 7 53 17c16 10 31 32 43 50l25 -11c-13 -26 -34 -52 -56 -70c-18 -14 -50 -27 -78 -27c-46 0 -88 16 -126 36l-119 63 c-14 7 -28 14 -43 19l-90 -208l-32 8l-3 14l85 194c-5 1 -9 1 -13 1c-23 0 -42 -5 -60 -18c-15 -11 -34 -37 -48 -59l-27 12c15 24 33 49 51 66c15 15 33 28 56 34c13 4 28 7 42 7c6 0 11 0 17 -1l60 139l-232 -90l-9 6l-10 24l6 9l268 104l80 185l-351 134l-3 8l7 24l11 4 l353 -133l103 238l11 2zM480 478l-65 -150l213 82v12'], + 0x2278: [770,142,807,71,716,'595 765l5 -11l-13 -30l111 42l11 -4l7 -24l-3 -8l-148 -57l-115 -265l260 -101l6 -9l-10 -24l-9 -6l-264 102l-45 -104l320 -120v-26l-460 -178l-37 -84l-32 8l-3 14l18 42l-104 -41l-9 6l-10 24l6 9l140 54l117 269l-260 100l-3 8l7 24l11 4l261 -99l46 105l-317 122 v26l455 171l28 64l11 2zM372 229l-102 -234l341 131v12zM412 422l100 231l-336 -128v-12'], + 0x2279: [770,142,807,72,716,'716 350l-3 -8l-350 -134l-58 -133l405 -156l6 -9l-10 -24l-9 -6l-408 158l-78 -180l-32 8l-3 14l75 173l-172 66v26l254 95l62 144l-304 -118l-9 6l-10 24l6 9l340 131l60 138l-403 154l-3 8l7 24l11 4l404 -152l68 156l11 2l22 -5l5 -11l-68 -157l177 -66v-26 l-261 -100l-62 -145l312 118l11 -4zM267 90l43 98l-134 -51v-12zM516 560l-45 -103l141 54v12'], + 0x2284: [720,192,777,83,673,'596 715l4 -11l-70 -163h143v-40h-161l-212 -488c28 -9 57 -14 88 -14h285v-40h-285c-36 0 -71 6 -103 17l-73 -168l-32 8l-4 14l71 162c-96 48 -164 144 -164 258c0 164 140 291 305 291h98l76 177l12 2zM388 501c-145 0 -265 -111 -265 -251c0 -97 57 -179 140 -221 l205 472h-80'], + 0x2285: [720,192,777,103,693,'596 715l4 -11l-82 -191c102 -46 175 -145 175 -263c0 -164 -140 -291 -305 -291h-111l-65 -151l-32 8l-4 14l57 129h-130v40h147l214 492c-24 6 -50 10 -76 10h-285v40h285c32 0 63 -5 92 -13l82 190l12 2zM502 477l-208 -478h94c145 0 265 111 265 251 c0 101 -63 187 -151 227'], + 0x22C0: [714,4,775,11,768,'404 713l364 -711l-42 -6l-328 641l-347 -636l-29 -2l-11 11l384 704'], + 0x22C1: [688,12,775,6,756,'756 684l-374 -696h-15l-361 689l42 7l327 -625l338 629h39'], + 0x22C2: [598,2,666,55,609,'55 384c0 128 129 214 277 214c149 0 277 -86 277 -214v-386h-40v386c0 107 -113 174 -237 174c-123 0 -237 -67 -237 -174v-386h-40v386'], + 0x22C3: [578,22,666,55,609,'95 191c0 -106 114 -173 237 -173c124 0 237 67 237 173v387h40v-387c0 -128 -128 -213 -277 -213c-148 0 -277 85 -277 213v387h40v-387'], + 0x22DC: [733,54,807,79,700,'680 733l10 -5l10 -20l-2 -11l-568 -261l-13 2l-11 22l2 13zM700 487l-2 -9l-522 -241v-12l519 -241l5 -10l-11 -23l-10 -5l-600 280v12l601 275l11 -3'], + 0x22DD: [745,52,807,102,724,'680 448l-572 260l-2 13l11 22l13 2l568 -261l2 -12l-10 -20zM104 478l-2 10l10 24l10 3l602 -275v-12l-600 -280l-10 5l-8 24l4 9l518 243v9'], + 0x22F0: [533,-60,627,76,550,'436 419c-26 26 -26 69 0 95s69 26 95 0s26 -69 0 -95s-69 -26 -95 0zM266 250c-26 26 -26 68 0 94c26 27 69 27 95 0c26 -26 26 -68 0 -94c-26 -27 -69 -27 -95 0zM97 80c-27 26 -27 69 0 95c26 26 68 26 94 0c27 -26 27 -69 0 -95c-26 -26 -68 -26 -94 0'], + 0x2A0C: [950,161,1456,49,1407,'1219 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243 c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295zM619 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230 c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54 c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295zM319 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54 c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4 c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295zM919 401l-1 -201c0 -43 -1 -87 -3 -131c-2 -51 -11 -230 -149 -230c-58 0 -117 25 -117 87c0 53 45 54 49 54c24 0 56 -18 56 -54c0 -18 -6 -34 -22 -44c2 -2 8 -6 12 -7c6 -3 8 -3 15 -4c2 -1 3 -1 9 -1 c76 0 78 103 78 214c0 38 -3 205 -3 328c0 81 1 162 2 243c1 106 3 295 146 295c54 0 116 -23 116 -87c0 -52 -44 -54 -49 -54c-25 0 -56 18 -56 54c0 18 6 34 22 44c-1 1 -6 5 -12 7c-6 3 -8 3 -15 4c-1 1 -3 1 -8 1c-73 0 -73 -101 -73 -223c0 -48 3 -265 3 -295'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Operators/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Script/Regular/Main.js new file mode 100644 index 0000000..664deff --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Script/Regular/Main.js @@ -0,0 +1,80 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Script'] = { + directory: 'Script/Regular', + family: 'NeoEulerMathJax_Script', + id: 'NEOEULERSCRIPT', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x210B: [690,8,884,33,872,'436 686l-1 -17l-49 -22l-2 -259h228c6 55 20 108 41 159c16 37 40 74 70 101c29 26 52 42 91 42c48 0 58 -36 58 -48c0 -26 -20 -37 -36 -37c-9 0 -21 6 -27 13c-9 10 -16 17 -31 17c-14 0 -28 -5 -38 -15c-14 -14 -26 -26 -36 -49c-11 -27 -18 -50 -23 -77 c-14 -79 -14 -162 -14 -244c0 -45 1 -90 10 -134c7 -27 14 -54 32 -74c9 -9 18 -12 30 -12s33 12 43 23c15 16 28 32 41 50l20 -17c-17 -25 -31 -41 -45 -56c-24 -24 -48 -38 -84 -38c-22 0 -43 5 -59 20c-21 22 -36 51 -43 81c-10 44 -11 89 -11 134c0 30 3 82 6 123h-223 c-3 -56 -11 -113 -24 -166c-11 -44 -35 -84 -67 -116c-44 -44 -96 -74 -159 -74c-28 0 -56 4 -77 24c-14 14 -24 32 -24 52c0 10 3 19 10 26s18 10 28 10c11 0 24 0 31 -7c6 -6 10 -14 13 -23c4 -8 9 -19 14 -25c13 -13 31 -15 48 -15c21 0 53 13 74 34c29 29 44 70 52 109 c14 63 17 128 17 192v281c-35 0 -67 -2 -101 -10c-23 -6 -46 -13 -63 -30c-17 -18 -35 -40 -35 -66c0 -13 2 -26 4 -38c3 -14 9 -39 9 -40c0 -10 0 -20 -8 -27c-9 -10 -19 -19 -32 -19c-10 0 -18 7 -24 13c-8 7 -11 17 -13 27c-3 16 -4 31 -4 47c0 45 28 84 60 115 c24 24 56 42 89 50c41 10 76 15 118 15c39 0 82 -1 116 -3'], + 0x2110: [685,14,430,27,412,'412 679l-14 -20l-47 -10c0 -117 -7 -228 -7 -344c0 -94 -23 -192 -91 -260c-33 -33 -76 -59 -124 -59c-28 0 -57 7 -77 27c-15 15 -25 35 -25 56c0 11 0 26 7 33s18 12 28 12c11 0 19 -8 26 -16c3 -2 7 -18 9 -28c3 -12 8 -24 17 -33s23 -9 36 -9c28 0 51 16 71 35 c24 24 37 57 45 89c11 47 15 97 15 146c0 119 7 232 7 351c-33 0 -66 -3 -97 -12c-24 -7 -47 -16 -64 -34c-14 -13 -24 -31 -24 -51c0 -7 1 -15 3 -22c3 -12 9 -29 9 -35c0 -12 -5 -23 -14 -32c-6 -5 -13 -8 -21 -8c-9 0 -16 4 -22 10c-14 14 -18 34 -18 53 c0 37 14 72 40 98c27 26 62 41 98 51c49 13 99 18 150 18c28 0 56 -5 84 -6'], + 0x2112: [685,7,715,26,613,'305 134c25 -17 88 -43 119 -51c21 -6 43 -11 65 -11c33 0 54 12 73 39c20 28 26 51 26 89c0 17 -2 41 -4 55l24 5c4 -17 5 -47 5 -58c0 -56 -5 -113 -44 -154c-29 -30 -54 -55 -97 -55c-24 0 -70 4 -92 13c-40 15 -58 24 -84 45c-66 43 -118 64 -144 64 c-23 0 -56 -16 -67 -35c-17 -28 -30 -59 -39 -86l-20 17c3 33 15 66 38 105c10 17 34 34 46 43c15 10 34 26 48 40c32 31 55 134 64 204c6 48 12 93 32 137c15 34 39 68 66 94c38 36 92 51 144 51c31 0 59 -6 79 -26c14 -13 22 -32 22 -52c0 -60 -46 -61 -46 -61 c-12 0 -23 4 -31 12c-5 5 -5 21 -5 32c0 14 -10 34 -20 45c-12 12 -24 16 -43 16c-21 0 -41 -9 -57 -26c-18 -17 -27 -28 -34 -51c-10 -35 -22 -101 -29 -146c-6 -42 -14 -78 -31 -125c-8 -29 -25 -58 -42 -78c-19 -22 -38 -40 -55 -49l3 -6c80 0 130 -36 130 -36'], + 0x211B: [712,6,722,33,711,'382 655l-3 -316c14 -3 28 -3 42 -3c40 0 82 15 110 44c36 35 47 86 47 135c0 41 -11 81 -40 110c-14 14 -35 19 -54 23c-35 6 -67 7 -102 7zM512 83l-94 221l-39 4c-8 -51 -15 -101 -33 -149c-12 -34 -32 -68 -58 -93c-42 -43 -93 -71 -153 -71c-27 0 -55 4 -75 23 c-14 15 -27 31 -27 52c0 11 4 23 12 31c7 7 17 11 27 11c9 0 16 -4 22 -10c8 -8 15 -17 20 -26s11 -19 17 -25c11 -11 28 -12 44 -12c32 0 58 15 81 38c22 22 33 51 41 81c11 42 15 86 15 129c0 122 2 240 2 363c-60 0 -116 -11 -159 -54c-16 -15 -32 -36 -32 -58 c0 -10 2 -22 4 -33c2 -12 7 -23 7 -35c0 -11 -6 -22 -14 -31c-8 -7 -17 -14 -28 -14c-10 0 -17 6 -23 13c-13 15 -17 32 -17 52c0 43 22 83 52 114c58 57 144 74 209 80l63 28l9 -4v-21c49 0 91 -1 139 -9c30 -5 61 -14 83 -36c30 -30 42 -74 42 -116 c0 -50 -13 -101 -49 -137c-33 -33 -78 -61 -120 -71l41 -99c22 -55 49 -107 91 -149c8 -9 22 -14 34 -14c11 0 20 7 27 14c11 12 16 21 21 36l17 -12c-9 -29 -21 -51 -42 -72c-15 -15 -33 -28 -55 -28c-18 0 -36 2 -49 14c-22 22 -41 47 -53 75'], + 0x212C: [712,1,761,42,683,'517 393l3 -8c43 -8 95 -20 120 -45c27 -27 43 -71 43 -109c0 -51 -31 -100 -66 -136c-67 -66 -174 -96 -267 -96h-270l27 53c50 0 86 13 121 48c23 24 40 58 47 91c12 51 14 112 14 165v296c-40 -4 -105 -25 -143 -63c-19 -18 -35 -41 -35 -68c0 -11 3 -22 5 -33 c2 -10 6 -18 6 -28c0 -12 -1 -24 -9 -32c-9 -9 -22 -15 -35 -15c-7 0 -14 4 -19 10c-15 14 -17 35 -17 55c0 43 21 83 51 114c52 51 124 77 196 88l60 32l10 -7v-23c53 0 106 0 156 -8c32 -5 65 -15 87 -38c22 -22 33 -52 33 -82c0 -44 -16 -78 -47 -109 c-21 -21 -45 -38 -71 -52zM384 386c53 0 106 15 144 53c26 25 38 52 38 88c0 32 -10 63 -32 85c-18 18 -42 27 -65 33c-36 8 -73 10 -110 10v-254c0 -13 16 -15 25 -15zM224 51h165c37 0 78 2 116 9c22 4 42 14 60 34c29 31 45 80 45 125c0 34 -15 75 -39 99 c-16 16 -37 28 -59 34c-29 9 -59 9 -89 9c-22 0 -45 -2 -67 -4c-7 -53 -14 -115 -35 -165c-20 -48 -65 -106 -102 -133'], + 0x2130: [702,12,608,69,528,'484 154l44 -48c-6 -13 -15 -31 -22 -38c-53 -52 -122 -80 -196 -80c-39 0 -78 4 -115 16c-30 10 -59 25 -82 47c-32 32 -44 77 -44 122c0 54 24 106 62 145c36 35 83 54 133 61l1 10c-29 10 -57 24 -78 45c-28 28 -37 67 -37 106c0 41 17 81 46 110c44 44 99 52 160 52 c37 0 76 -7 103 -34c14 -14 26 -39 26 -63c0 -21 -1 -38 -15 -57c-12 -16 -34 -23 -46 -23s-17 1 -24 8c-4 4 -7 12 -7 20c0 9 4 16 9 24c6 10 12 21 12 37c0 18 -9 32 -19 40c-14 12 -31 17 -55 17c-28 0 -59 -6 -79 -26c-30 -31 -45 -74 -45 -117c0 -35 12 -70 37 -94 c18 -18 41 -27 64 -33c33 -9 67 -12 101 -12v-25c-46 0 -91 -3 -136 -14c-30 -7 -64 -19 -86 -41c-32 -32 -47 -75 -47 -121c0 -45 13 -90 45 -122c34 -34 85 -42 132 -42c44 0 83 23 114 54c19 19 28 45 32 73'], + 0x2131: [699,15,649,38,710,'694 692l16 -9l-38 -73c-9 -17 -29 -35 -50 -35c-13 0 -29 4 -43 9c-44 12 -116 34 -129 39l-2 -248h144l-21 -28h-123v-49c0 -44 -5 -88 -18 -129c-11 -34 -24 -61 -52 -92c-54 -59 -134 -92 -215 -92c-38 0 -74 14 -101 41c-15 15 -24 36 -24 56c0 12 4 20 13 29 c8 8 20 12 33 12c15 0 20 -2 37 -38c5 -13 14 -25 23 -34c20 -20 46 -26 73 -26c42 0 81 25 108 56c19 22 31 46 39 73c11 34 13 70 14 105c1 29 2 60 2 88h-162l14 28h148l5 265c-24 6 -55 9 -79 9c-50 0 -95 -11 -132 -48c-19 -19 -38 -54 -38 -70c0 -14 1 -25 4 -39 c3 -11 8 -25 8 -36c0 -12 -3 -21 -11 -30c-8 -7 -17 -14 -28 -14c-13 0 -22 6 -31 14c-12 12 -14 29 -14 46c0 51 28 98 64 134c57 57 125 72 204 72c16 0 47 -2 62 -4l49 25l7 -3v-28c49 -12 97 -22 148 -30c11 -2 25 -4 32 -4c16 0 33 10 41 22'], + 0x2133: [699,13,982,27,961,'796 595v-325c0 -53 3 -106 12 -158c5 -29 8 -46 28 -67c7 -6 15 -10 25 -10c16 0 31 8 42 20c15 14 28 31 39 49l19 -15c-14 -21 -31 -40 -49 -58c-22 -22 -48 -44 -80 -44c-24 0 -46 10 -62 26c-25 25 -29 49 -33 84c-3 38 -3 181 -3 271c0 70 -4 140 -1 210 c-62 -63 -103 -143 -134 -225c-42 -107 -66 -214 -81 -328l-44 -35l-9 7c-15 123 -35 239 -73 357c-14 43 -30 86 -52 127c-16 31 -35 61 -60 86v-226c0 -65 -6 -130 -23 -193c-12 -46 -30 -90 -64 -124c-22 -22 -51 -34 -82 -34c-25 0 -48 10 -66 27c-10 11 -18 25 -18 41 c0 12 5 21 13 30c7 7 17 11 27 11c17 0 30 -10 37 -25c8 -17 24 -28 42 -28c17 0 32 12 44 24c21 21 31 50 39 79c10 41 13 83 13 125v330c-20 24 -49 40 -80 40c-23 0 -44 -11 -60 -27c-23 -22 -32 -53 -37 -84l-21 -1c4 26 9 51 18 75c7 18 16 35 29 49c26 26 61 43 98 43 c43 0 83 -19 113 -50h3c55 -55 87 -122 118 -194c37 -88 63 -174 82 -267l6 -2c23 90 52 168 94 250c34 68 75 133 129 186c40 40 92 76 150 76c17 0 35 -5 48 -18c7 -7 13 -16 13 -26c0 -9 -1 -19 -8 -25c-9 -10 -21 -16 -34 -16c-7 0 -16 0 -20 4c-5 5 -10 10 -13 16 c-2 5 -3 11 -7 15c-6 6 -14 11 -23 11s-18 -4 -25 -10c-12 -13 -19 -37 -19 -54'], + 0x1D49C: [694,15,770,-8,736,'613 694l5 -19l-14 -9c-9 -8 -11 -18 -11 -36v-290c0 -70 1 -141 7 -211c2 -24 6 -48 23 -65c6 -6 15 -8 23 -8c13 0 24 6 35 14c14 10 25 20 40 33l15 -17c-24 -30 -53 -55 -85 -75c-20 -13 -42 -26 -67 -26c-13 0 -27 4 -36 14c-8 8 -12 19 -15 30c-4 16 -5 32 -5 49 v158h-221c-32 -87 -88 -164 -122 -198c-28 -28 -65 -48 -104 -48c-23 0 -46 9 -63 25c-18 19 -26 44 -26 70c0 13 5 27 15 37c8 8 19 9 30 9c12 0 23 -5 31 -14c5 -4 7 -11 7 -18c0 -4 -1 -11 -2 -16c-2 -8 -3 -16 -3 -24s5 -13 10 -18c7 -7 16 -10 25 -10c17 0 30 7 42 19 c21 21 38 52 52 78s55 137 81 207c24 65 47 126 77 189c19 40 42 81 77 106c23 16 49 31 76 42c31 13 75 19 103 22zM324 279h203v359l-8 11c-18 -4 -38 -15 -53 -30c-31 -31 -49 -73 -66 -114c-31 -73 -54 -150 -76 -226'], + 0x1D49E: [697,15,602,70,561,'500 152l46 -47c-9 -19 -20 -38 -35 -54c-49 -49 -119 -66 -187 -66c-63 0 -124 24 -169 69c-30 30 -50 68 -63 109c-16 48 -22 100 -22 151c0 61 7 123 26 181c15 48 40 90 76 125c56 56 133 77 212 77c51 0 106 -8 143 -46c27 -26 34 -60 34 -97 c0 -47 -16 -93 -49 -126c-32 -33 -77 -47 -122 -47c-38 0 -77 6 -105 33c-15 15 -22 36 -22 58c0 13 2 27 11 36c8 9 20 11 32 11c11 0 23 -3 31 -11c10 -11 7 -27 4 -41c-4 -16 -4 -34 8 -46c10 -10 25 -10 38 -10c28 0 53 13 72 32c26 26 33 64 33 99c0 34 -7 65 -31 89 c-25 25 -60 34 -95 34c-53 0 -104 -15 -141 -52c-30 -30 -49 -66 -60 -106c-16 -55 -21 -111 -21 -168c0 -53 6 -106 23 -156c13 -41 34 -81 65 -112s72 -52 116 -52c39 0 76 16 103 43c22 22 32 53 38 83'], + 0x1D49F: [716,-4,830,52,764,'371 716l7 -4v-24c65 0 128 -2 190 -20c47 -14 93 -35 128 -70c54 -53 68 -131 68 -206c0 -103 -42 -202 -114 -275c-74 -73 -171 -113 -275 -113h-291l28 50c58 0 112 25 153 66c20 21 30 51 35 80c10 48 10 98 10 147v309c-61 0 -119 -17 -163 -61 c-15 -15 -24 -40 -24 -61c0 -22 7 -39 7 -61c0 -12 -2 -24 -11 -33c-7 -8 -18 -14 -29 -14c-12 0 -22 8 -26 15c-8 11 -12 29 -12 49c0 42 19 82 48 111c58 58 138 79 210 84zM285 101l-35 -37l3 -10h122c47 0 95 0 140 14c35 11 68 32 94 59c30 29 48 67 61 107 c16 49 21 101 21 153c0 73 -21 147 -73 200c-27 26 -61 41 -97 51c-47 14 -93 18 -143 18v-234c0 -64 -5 -129 -22 -191c-14 -47 -37 -94 -71 -130'], + 0x1D4A2: [697,130,604,72,524,'471 380l53 13v-132c0 -63 -5 -126 -20 -187c-10 -42 -28 -80 -58 -110c-59 -59 -134 -94 -217 -94c-45 0 -92 8 -124 41c-20 20 -33 46 -33 75c0 12 6 25 15 34s23 11 36 11c10 0 19 -3 26 -10c9 -9 12 -24 14 -37c4 -18 9 -36 22 -49c22 -22 54 -28 84 -28 c46 0 86 23 118 55c24 25 39 56 49 88c12 41 20 79 19 122c-1 30 -3 95 -3 96c-41 -30 -92 -45 -142 -45c-63 0 -125 22 -170 66c-44 44 -55 106 -55 166c0 66 25 133 76 174c61 49 130 68 205 68c33 0 92 -7 125 -40c21 -21 30 -46 30 -75c0 -27 -8 -53 -27 -73 c-21 -21 -46 -37 -76 -37c-5 0 -31 6 -46 9l2 17c24 0 46 3 64 21c14 14 15 35 15 54c0 22 -10 40 -26 56c-23 24 -61 34 -86 34c-44 0 -88 -13 -119 -44c-43 -43 -64 -102 -64 -163c0 -56 11 -115 51 -155c29 -29 67 -48 108 -48c45 0 85 14 117 46c12 12 31 52 37 81'], + 0x1D4A5: [692,129,506,28,468,'341 350v300c-53 -7 -106 -17 -144 -55c-25 -25 -34 -60 -34 -95c0 -21 0 -48 -12 -60c-8 -8 -17 -17 -27 -17c-11 0 -21 5 -28 13c-11 11 -13 26 -13 41c0 45 25 84 56 116c70 70 167 99 266 99h60l3 -18l-63 -23v-23v-407c0 -53 -5 -105 -20 -156 c-12 -39 -30 -76 -59 -105c-26 -26 -55 -49 -87 -66c-27 -14 -55 -23 -85 -23c-33 0 -68 5 -92 29c-22 22 -34 52 -34 84c0 43 13 86 33 125c24 47 57 89 95 127c52 52 116 88 185 114zM337 316c-55 -22 -107 -52 -149 -94c-54 -55 -93 -125 -93 -203c0 -29 2 -60 23 -81 c17 -17 42 -23 66 -23c37 0 70 19 96 45c23 23 36 54 45 85c12 43 16 87 16 131c0 47 -4 93 -4 140'], + 0x1D4A6: [690,12,824,29,794,'432 686l-4 -17l-46 -17l-1 -297h17c50 69 152 203 152 204c22 29 47 57 73 83c16 17 28 25 48 36c15 9 37 12 54 12c20 0 36 -5 50 -19c11 -11 19 -20 19 -36c0 -13 -4 -26 -14 -36c-9 -9 -21 -16 -34 -16c-16 0 -24 13 -27 25c-3 14 -17 23 -31 23 c-20 0 -38 -12 -52 -25c-23 -21 -42 -39 -59 -63c-39 -53 -118 -160 -118 -161s-3 -5 -5 -7c1 -6 2 -17 2 -18s62 -116 93 -175c23 -44 52 -84 87 -119c12 -12 27 -21 43 -21c17 0 33 7 45 19c13 13 21 27 29 44l18 -16c-9 -23 -20 -44 -37 -62c-22 -22 -51 -39 -82 -39 c-30 0 -60 9 -81 31c-18 17 -30 38 -41 60c0 1 -84 166 -126 247h-27c0 -97 -25 -195 -94 -264c-40 -40 -91 -67 -148 -67c-31 0 -64 7 -86 30c-13 13 -20 29 -20 47c0 10 3 20 10 28c7 7 17 11 27 11c9 0 20 0 25 -4c7 -7 13 -15 18 -23c6 -10 12 -20 20 -29 c12 -11 26 -17 42 -17c32 0 60 17 82 39s35 48 44 79c12 39 16 81 16 122v374c-60 0 -119 -15 -165 -56c-16 -14 -27 -33 -27 -54c0 -12 1 -23 3 -35s6 -23 6 -34c0 -13 0 -27 -9 -36c-8 -9 -19 -14 -31 -14c-10 0 -20 4 -28 12c-15 15 -15 39 -15 60c0 40 18 80 48 106 c72 63 162 87 257 87c2 0 53 0 80 -2'], + 0x1D4A9: [706,7,774,28,802,'625 124l7 12c-6 112 -9 229 -9 344c0 41 4 83 13 123c5 25 12 52 31 71c21 21 50 32 80 32c15 0 29 -5 40 -15c9 -9 15 -22 15 -35c0 -8 -1 -18 -8 -24c-11 -6 -31 -16 -32 -16c-8 0 -18 0 -21 4c-7 6 -12 13 -15 21c-3 10 -10 18 -20 18c-8 0 -16 -2 -21 -7 c-15 -15 -18 -36 -20 -56c-3 -25 -4 -104 -4 -156c-2 -142 0 -275 2 -417l-48 -30c-97 190 -205 388 -331 542c0 -51 -2 -103 -5 -157c-4 -70 -10 -178 -17 -209c-10 -46 -25 -86 -61 -125c-26 -28 -60 -48 -99 -48c-20 0 -41 6 -55 21c-11 10 -19 23 -19 38 c0 14 7 27 17 37c6 6 13 10 22 10c10 0 20 -2 27 -9c2 -2 9 -14 14 -20c6 -10 17 -14 28 -14c24 0 43 12 59 28c22 23 29 53 36 84c10 50 12 101 12 152v259c-17 17 -35 33 -56 45c-15 9 -30 16 -47 16c-21 0 -42 -6 -56 -21c-22 -21 -29 -55 -34 -85l-22 -5 c0 49 8 98 43 133c26 26 62 36 98 36c47 0 87 -30 119 -63c44 -43 78 -95 112 -147c50 -76 151 -244 225 -367'], + 0x1D4AA: [686,18,707,71,633,'234 659l14 -12c-78 -79 -109 -188 -109 -297c0 -56 5 -112 20 -165c10 -39 25 -79 54 -107c35 -36 81 -57 131 -57c49 0 96 17 131 52c32 33 51 74 64 118c17 59 24 120 24 181c0 52 0 105 -13 155c-9 36 -27 71 -53 97c-18 18 -44 29 -69 29c-31 0 -61 -9 -83 -31 c-17 -17 -30 -40 -30 -64c0 -29 19 -50 39 -70c9 -9 11 -22 11 -35c0 -21 -20 -33 -40 -33c-13 0 -26 5 -35 15c-19 19 -23 45 -23 71c0 51 17 98 53 134c31 32 73 46 116 46c47 0 92 -20 124 -52c28 -28 48 -65 58 -102c15 -52 15 -105 15 -158c0 -63 -9 -125 -28 -184 c-15 -48 -38 -92 -74 -128c-56 -56 -135 -80 -214 -80c-62 0 -118 28 -161 72c-30 29 -50 68 -63 108c-16 48 -22 99 -22 149c0 115 33 229 115 311c14 15 31 26 48 37'], + 0x1D4AB: [710,11,660,44,638,'370 320c54 0 111 10 150 49c36 36 50 88 50 139c0 40 -16 78 -44 107c-17 16 -39 24 -62 31c-31 9 -62 9 -94 9v-335zM307 685l58 25l8 -3v-20c48 0 92 -2 138 -15c34 -10 63 -21 88 -46c29 -29 39 -71 39 -111c0 -55 -20 -109 -59 -149c-55 -54 -132 -76 -209 -76 c0 -20 -1 -40 -3 -60c-5 -71 -14 -138 -64 -188c-34 -34 -77 -53 -124 -53c-31 0 -62 11 -84 33c-16 16 -22 39 -22 62c0 14 5 26 15 36c7 7 18 10 29 10c9 0 19 -3 25 -9c13 -13 13 -29 13 -47c0 -15 3 -32 15 -43c8 -8 21 -10 33 -10c25 0 42 14 59 31c19 19 28 48 34 73 c8 39 11 79 11 120v410c-25 0 -118 -1 -158 -41c-20 -21 -41 -47 -41 -77c0 -11 4 -27 7 -41c3 -9 8 -18 8 -27c0 -12 -2 -24 -10 -33c-8 -7 -18 -13 -29 -13c-9 0 -18 4 -25 11c-15 15 -15 38 -15 59c0 48 25 93 60 126c51 48 127 66 203 66'], + 0x1D4AC: [694,24,662,72,616,'287 186l-9 -21c-47 0 -94 15 -127 49c-52 52 -79 122 -79 195c0 83 24 160 83 219c53 53 129 66 203 66c63 0 126 -17 171 -62c25 -24 40 -54 49 -87c13 -44 18 -85 18 -131c0 -98 -29 -196 -99 -266c-32 -32 -70 -56 -113 -69c7 -5 15 -8 31 -14c12 -4 92 -23 105 -23 c16 0 28 11 39 22c19 18 29 39 38 62l19 -8c-10 -34 -21 -68 -47 -97c-15 -17 -35 -32 -58 -32c-21 0 -41 0 -60 5l-192 42c-21 4 -42 7 -63 7c-22 0 -48 -1 -64 -16c-10 -9 -22 -33 -29 -51l-21 9c11 32 28 69 49 90c23 23 57 30 90 30c15 0 33 0 46 -2c21 -3 45 -6 64 -6 c47 0 90 22 123 55c28 28 42 65 52 102c15 52 19 106 19 160c0 44 -2 84 -14 127c-8 31 -23 59 -46 82c-30 30 -74 44 -116 44c-49 0 -101 -11 -137 -47c-26 -25 -43 -56 -54 -91c-14 -42 -19 -83 -19 -128c0 -63 15 -128 61 -174c23 -23 55 -33 87 -41'], + 0x1D4AE: [702,12,542,28,481,'316 514l2 16c17 0 38 5 51 19c11 13 15 28 15 46s-8 33 -22 46c-20 21 -49 28 -78 28c-34 0 -66 -9 -90 -34c-19 -19 -31 -39 -31 -66c0 -37 13 -71 39 -97c31 -31 70 -51 110 -69c45 -21 90 -44 125 -79c30 -30 44 -72 44 -115c0 -51 -16 -103 -53 -140 c-55 -55 -128 -81 -205 -81c-51 0 -121 13 -157 49c-27 27 -38 65 -38 103c0 41 18 83 47 112c27 27 60 34 96 34c25 0 54 -4 71 -22c10 -10 17 -22 17 -35c0 -8 0 -17 -6 -23c-8 -8 -18 -15 -29 -15c-9 0 -18 3 -24 10c-6 5 -8 13 -10 21c-2 9 -7 19 -14 26 c-6 6 -21 6 -30 6c-16 0 -23 -5 -34 -16c-16 -17 -26 -40 -26 -63c0 -41 13 -81 42 -110c26 -26 75 -41 113 -41c45 0 94 14 126 46c29 29 41 64 41 104c0 37 -4 77 -31 105c-30 29 -63 53 -102 70c-27 11 -54 24 -79 39c-18 10 -36 22 -51 36c-33 33 -47 78 -47 124 c0 39 12 72 39 99c43 43 100 55 160 55c46 0 94 -5 128 -38c19 -19 24 -41 24 -68c0 -18 -5 -37 -18 -51c-21 -21 -48 -36 -78 -36c-12 0 -25 2 -37 5'], + 0x1D4AF: [693,6,586,26,660,'640 693l20 -11c-16 -32 -32 -56 -55 -83c-18 -21 -45 -32 -72 -32c-23 0 -78 11 -117 19v-269c0 -56 -1 -112 -16 -166c-11 -40 -30 -79 -60 -108c-33 -33 -74 -49 -121 -49c-29 0 -59 6 -80 26c-17 18 -21 41 -21 66c0 12 6 24 15 33c8 8 18 14 29 14 c12 0 23 -7 31 -15c9 -9 7 -23 6 -34c-2 -17 -2 -35 10 -47c9 -9 22 -10 35 -10c23 0 41 6 58 22c19 20 30 48 35 75c10 43 12 88 12 132c0 115 -2 228 -2 343c-52 15 -121 35 -160 35c-26 0 -56 -10 -75 -29s-26 -35 -26 -61c0 -9 4 -16 8 -23c7 -11 15 -21 24 -29 c6 -6 8 -15 8 -23c0 -12 -7 -21 -15 -29s-17 -16 -29 -16c-13 0 -24 9 -33 18c-16 16 -23 39 -23 62c0 48 26 86 59 119c41 41 99 61 156 61c34 0 101 -12 151 -25c55 -13 118 -28 167 -28c20 0 38 10 52 24c13 13 20 23 29 38'], + 0x1D4B0: [699,16,714,25,691,'671 113l20 -14c-13 -28 -27 -54 -47 -74c-21 -20 -48 -34 -77 -34c-18 0 -36 6 -49 19c-27 27 -38 61 -46 97c-6 -7 -26 -28 -39 -41c-47 -47 -108 -82 -176 -82c-37 0 -71 17 -97 43c-13 12 -19 29 -24 46c-6 23 -8 48 -8 72c0 63 10 126 23 188c13 64 24 129 24 195 c0 35 -1 67 -27 93c-8 9 -23 15 -35 15c-11 0 -24 -6 -33 -14c-19 -20 -25 -40 -25 -68c0 -19 3 -44 5 -63l-29 -9c-3 24 -6 53 -6 78c0 40 10 74 39 103c20 20 49 29 77 29c25 0 51 -6 69 -24c14 -14 20 -32 25 -50c7 -27 9 -48 9 -76c0 -70 -13 -139 -27 -207 c-10 -48 -20 -99 -20 -145c0 -28 3 -56 11 -84c5 -20 14 -39 28 -54c17 -17 40 -25 63 -25c47 0 85 29 117 61c18 19 36 38 52 58c0 159 16 324 33 485c39 26 81 50 125 68l17 -11c-11 -6 -23 -13 -32 -22c-14 -13 -23 -29 -31 -47c-10 -23 -17 -47 -22 -71 c-20 -101 -25 -204 -25 -306c0 -39 2 -78 11 -117c6 -24 13 -49 31 -67c7 -8 16 -11 27 -11c14 0 24 4 34 14c14 14 25 34 35 52'], + 0x1D4B1: [709,9,664,27,638,'357 114l123 202c25 40 50 83 67 128c13 36 20 73 21 111c0 27 -4 55 -23 75c-15 14 -34 23 -55 23c-18 0 -36 -1 -49 -14c-23 -23 -34 -54 -40 -86l-23 3c7 42 21 84 51 115c25 24 58 38 93 38c31 0 61 -9 83 -31c23 -22 33 -53 33 -84c0 -41 -5 -68 -22 -105 c-31 -68 -80 -147 -121 -211c-55 -88 -107 -173 -147 -259l-51 -28l-7 9c-6 104 -24 211 -43 317c-12 69 -29 136 -47 204c-9 34 -22 74 -49 102c-8 8 -18 14 -30 14c-14 0 -27 -5 -37 -15c-16 -15 -28 -58 -33 -89l-24 3c3 29 12 58 22 86c7 19 16 39 31 54 c19 19 46 28 73 28c23 0 39 -10 55 -26c18 -18 28 -41 36 -65c14 -39 25 -79 32 -120l69 -382'], + 0x1D4B2: [702,5,989,30,963,'320 127l81 163c35 71 67 142 91 217c17 54 30 110 30 166l58 29l12 -8c-6 -29 -11 -54 -11 -83c0 -95 31 -186 71 -272c33 -70 60 -143 80 -218c44 79 91 159 124 243c21 53 36 107 36 164c0 21 -1 41 -6 61c-4 14 -9 27 -19 37c-15 15 -32 23 -54 23 c-28 0 -48 -15 -65 -36l-19 11c8 11 16 20 25 30c29 29 64 48 105 48c27 0 49 -7 67 -26c27 -27 37 -65 37 -103c0 -40 -14 -78 -28 -116c-24 -62 -53 -122 -84 -181c-44 -84 -83 -162 -118 -251l-46 -23l-9 5c-7 99 -36 187 -77 277c-29 66 -56 140 -76 208 c-35 -71 -72 -150 -101 -224c-33 -85 -72 -163 -101 -241c-1 -3 -11 -11 -14 -13c-14 -7 -29 -12 -43 -19l-12 8c0 138 -5 272 -28 408c-7 43 -16 85 -31 126c-11 28 -24 55 -45 77c-11 10 -23 21 -39 21c-11 0 -23 -4 -30 -13c-21 -24 -27 -65 -27 -87l-24 2 c0 51 13 105 50 142c18 18 43 22 68 22c27 0 45 -14 63 -32c20 -20 33 -44 42 -70c12 -36 23 -81 30 -120c22 -118 27 -232 28 -352h9'], + 0x1D4B3: [706,9,716,50,693,'641 161l22 -4c0 -50 -22 -92 -57 -127c-23 -23 -54 -39 -87 -39c-27 0 -55 6 -74 25c-20 21 -31 48 -41 75c-18 44 -31 91 -42 137c-24 -67 -52 -134 -103 -185c-33 -33 -75 -52 -122 -52c-24 0 -48 7 -65 24c-14 14 -22 32 -22 52c0 11 1 22 9 30s18 16 29 16 c10 0 19 -3 26 -10c9 -8 14 -20 16 -32c2 -9 5 -16 12 -23c8 -8 19 -11 30 -11c25 0 46 11 63 28c27 27 46 59 63 93c24 47 43 98 59 148c-10 79 -20 152 -42 229c-7 25 -16 50 -27 73c-7 17 -19 33 -32 45c-14 15 -35 17 -54 17c-23 0 -40 -5 -58 -20 c-11 -10 -17 -21 -17 -35c0 -10 0 -19 2 -28c3 -13 11 -25 11 -39c0 -9 -9 -22 -16 -29s-14 -9 -25 -9c-10 0 -17 5 -24 11c-13 13 -13 34 -13 52c0 32 16 63 39 86c35 35 78 47 127 47c35 0 72 -6 98 -32c22 -22 33 -53 43 -84c16 -48 27 -100 34 -148c4 25 36 88 56 124 c18 32 38 65 65 91c24 25 56 42 92 42c22 0 45 -6 61 -22c10 -10 16 -23 16 -37c0 -11 -2 -22 -10 -30s-18 -18 -29 -18c-7 0 -14 1 -19 6c-4 5 -7 11 -10 17c-2 6 -7 11 -12 16c-8 9 -20 13 -32 13c-18 0 -35 -8 -47 -20c-32 -31 -51 -73 -69 -113 c-24 -55 -42 -108 -54 -167c10 -64 17 -118 38 -180c12 -39 32 -78 61 -108c12 -11 28 -14 44 -14c18 0 33 12 45 24c26 26 38 59 42 95'], + 0x1D4B4: [702,136,595,25,502,'191 615l-6 -169c0 -21 1 -43 6 -64c3 -13 7 -27 17 -37c15 -14 34 -24 55 -24s40 8 58 18c25 14 46 32 66 51c19 19 42 44 45 72l2 208l55 32l13 -11c-4 -147 -8 -307 -8 -438c0 -116 -30 -240 -113 -323c-39 -39 -90 -66 -147 -66c-27 0 -50 5 -69 25 c-18 18 -22 41 -22 67c0 32 8 62 24 90c22 39 44 73 75 104c36 36 126 96 190 135v109c-62 -61 -127 -115 -196 -115c-28 -1 -71 17 -86 31c-20 20 -30 64 -30 100l3 140c0 18 2 35 1 53c0 5 0 10 -4 13c-4 4 -9 6 -15 6c-17 0 -42 -25 -61 -43l-19 9c14 23 30 47 47 64 c21 21 44 41 74 41c11 0 22 -5 30 -13c15 -15 15 -43 15 -65zM431 244c-55 -22 -111 -60 -153 -102c-24 -24 -45 -51 -61 -81c-12 -25 -21 -52 -21 -80c0 -22 0 -42 15 -57c15 -16 36 -23 58 -23c29 0 53 12 73 32c32 32 52 75 64 119c17 60 25 130 25 192'], + 0x1D4B5: [696,11,656,58,632,'356 108l111 -60c15 -8 32 -16 48 -16c19 0 35 9 48 23c8 7 10 21 10 32c0 14 -8 28 -17 38c-10 11 -16 24 -16 36c0 10 6 19 14 26c6 7 18 9 27 9c12 0 22 -5 30 -13c13 -13 21 -31 21 -49c0 -36 -19 -68 -44 -94c-33 -33 -76 -51 -122 -51c-20 0 -41 5 -59 15l-72 38 c-27 15 -55 28 -83 39c-19 6 -38 13 -58 13c-23 0 -46 -13 -63 -30c-6 -6 -33 -59 -36 -64l-30 6l-7 20l380 529c-6 -2 -18 -2 -27 -2c-25 0 -75 30 -109 54c-25 17 -52 35 -82 35c-21 0 -44 -4 -59 -19c-15 -14 -25 -31 -25 -52c0 -10 2 -27 11 -38c10 -13 15 -32 15 -35 c0 -9 -2 -19 -8 -26c-9 -8 -19 -15 -31 -15s-24 5 -32 14c-12 12 -12 32 -12 50c0 49 29 87 63 122c30 29 64 53 106 53c16 0 34 -6 49 -12c22 -10 42 -22 62 -36c24 -16 62 -39 72 -45c9 -5 20 -9 32 -9c7 0 17 8 23 15s11 16 16 26l12 29h16l20 -22 c-154 -181 -254 -347 -384 -521c27 12 55 20 85 20c37 0 72 -16 105 -33'], + 0x1D4D0: [711,17,887,10,860,'577 225h-217c-16 -42 -34 -76 -59 -112c-19 -27 -46 -52 -71 -74c-31 -28 -69 -50 -114 -50c-30 0 -61 8 -83 27c-17 15 -23 37 -23 59c0 16 8 32 21 43c12 10 28 14 44 14c14 0 26 -6 36 -14c8 -7 14 -22 15 -34c1 -11 6 -26 13 -32c7 -5 15 -7 24 -7c12 0 23 6 31 13 c38 34 75 153 99 236c20 70 45 147 74 213c20 46 43 83 82 118c57 51 134 65 215 78c20 3 37 5 73 8l5 -29c-25 -6 -39 -14 -39 -29v-446c0 -52 0 -130 22 -150c10 -8 24 -12 37 -12c19 0 32 10 45 21c13 12 23 24 35 37l18 -16c-15 -20 -31 -41 -51 -59 c-29 -26 -67 -45 -109 -45c-27 0 -54 9 -73 27c-23 20 -31 49 -37 77c-11 45 -13 92 -13 138zM577 275v370l-8 5c-23 -6 -45 -18 -62 -32c-30 -27 -45 -63 -58 -99c-24 -62 -57 -166 -72 -244h200'], + 0x1D4D1: [727,1,864,38,794,'415 727l13 -8v-25c63 0 128 -3 189 -16c40 -8 83 -20 111 -48c22 -22 30 -49 30 -78c0 -40 -14 -72 -47 -101c-25 -23 -54 -44 -88 -56l2 -6c46 0 91 -15 124 -43c28 -26 45 -63 45 -99c0 -44 -25 -87 -56 -122c-28 -31 -87 -72 -120 -90c-29 -16 -84 -36 -138 -36h-416 l43 88c31 0 70 3 99 13c22 7 48 24 60 40c22 28 27 56 33 88c9 51 11 102 11 154v269c-42 -6 -83 -19 -116 -43c-26 -18 -47 -43 -47 -73c0 -7 1 -15 2 -22c3 -13 5 -26 5 -39s-5 -25 -15 -33c-12 -11 -30 -15 -47 -15c-13 0 -26 3 -35 11c-15 14 -19 33 -19 51 c0 43 28 79 61 109c60 53 133 80 216 93zM261 87h257c36 0 105 0 131 23c26 22 32 60 32 91c0 35 -9 78 -38 103c-30 27 -71 45 -114 49h-86c-8 -1 -21 -3 -22 -7c-8 -40 -21 -94 -37 -124c-9 -16 -33 -46 -48 -60c-23 -23 -51 -50 -80 -67zM427 661v-258c0 -6 7 -9 12 -9 c28 0 61 0 85 4c36 6 70 18 96 42c23 20 28 43 28 71c0 35 -6 73 -35 98c-21 19 -48 30 -76 38c-36 10 -73 14 -110 14'], + 0x1D4D2: [709,15,680,59,644,'565 165l67 -62c-9 -14 -19 -29 -33 -41c-61 -55 -148 -77 -234 -77c-73 0 -148 15 -200 62c-37 32 -62 74 -78 117c-20 52 -28 107 -28 162c0 107 27 218 115 295c70 62 168 88 265 88c60 0 122 -8 165 -46c31 -27 40 -65 40 -103c0 -47 -17 -94 -55 -127 c-39 -35 -95 -50 -151 -50c-48 0 -99 5 -134 36c-17 14 -29 33 -29 53c0 19 7 37 22 50c10 10 25 13 40 13c13 0 27 -2 37 -10c9 -8 16 -18 16 -29v-21c-2 -10 -5 -30 -5 -31c0 -5 1 -10 5 -13c13 -12 31 -16 49 -16c25 0 46 15 64 30c31 28 41 67 41 106c0 32 -7 66 -34 89 c-27 24 -66 33 -105 33c-47 0 -94 -14 -127 -43c-36 -32 -57 -74 -72 -117c-19 -56 -25 -114 -25 -172c0 -53 7 -106 25 -156c15 -40 37 -79 72 -110c36 -32 86 -50 137 -50c34 0 68 11 93 33c29 26 42 62 42 99'], + 0x1D4D3: [727,1,938,28,881,'418 719v-26c79 0 158 -5 234 -21c51 -11 103 -26 141 -60c66 -58 88 -142 88 -224c0 -90 -31 -180 -104 -244c-47 -41 -99 -77 -155 -108c-42 -23 -92 -37 -142 -37h-416l43 88c31 0 70 3 99 13c22 7 48 24 60 40c22 28 28 52 33 88c4 27 4 33 4 71v352 c-42 -6 -86 -19 -119 -43c-26 -18 -47 -43 -47 -73c0 -7 1 -15 2 -22c3 -13 5 -26 5 -39s-5 -25 -15 -33c-12 -11 -30 -15 -47 -15c-13 0 -26 3 -35 11c-15 14 -19 33 -19 51c0 43 28 79 61 109c60 53 133 80 216 93l100 37zM261 87h298c55 0 110 18 149 52 c22 20 31 46 37 72c11 40 14 81 14 121c0 51 -7 102 -25 150c-15 40 -38 78 -71 108c-27 24 -63 38 -99 48c-47 12 -96 17 -146 17v-253c0 -48 -3 -97 -15 -144c-9 -26 -29 -60 -67 -96c-23 -23 -51 -50 -80 -67'], + 0x1D4D4: [708,12,687,61,628,'275 380l1 1c-33 8 -68 21 -94 44c-31 28 -47 66 -47 105c0 43 15 86 49 117c55 48 133 61 209 61c30 0 61 -2 90 -10c23 -6 41 -14 57 -28c20 -17 29 -40 29 -64c0 -21 -5 -42 -19 -58c-11 -12 -24 -20 -42 -20c-16 0 -32 6 -43 16c-8 7 -12 16 -12 26s3 19 8 28 s8 20 8 30c0 13 -5 24 -15 33c-16 14 -39 16 -61 16c-34 0 -66 -13 -90 -34c-33 -29 -48 -70 -48 -111c0 -36 14 -71 43 -97c19 -16 45 -23 71 -29c39 -8 79 -10 119 -10v-29c-52 0 -105 -3 -157 -14c-34 -7 -69 -18 -95 -40c-36 -32 -48 -78 -48 -122c0 -47 21 -91 58 -124 c33 -29 78 -41 123 -41s87 17 118 45c28 24 34 60 38 94c1 0 15 6 23 9l80 -68c-8 -16 -19 -31 -33 -43c-61 -54 -148 -75 -233 -75c-49 0 -99 3 -146 14c-33 7 -66 17 -90 38c-37 33 -65 76 -65 124c0 55 18 111 63 151c42 36 97 57 151 65'], + 0x1D4D5: [731,14,755,31,802,'503 682l179 -34c10 -2 24 -4 31 -4c12 0 24 4 32 13l37 45l20 -16l-48 -71c-11 -15 -22 -29 -36 -39c-9 -7 -18 -11 -30 -11c-17 0 -35 5 -52 10c-44 14 -132 40 -133 40l-3 -224h172l-38 -50h-134c0 -52 -3 -103 -19 -153c-13 -38 -31 -75 -63 -103s-71 -51 -111 -70 c-39 -17 -81 -29 -125 -29c-45 0 -93 8 -125 37c-17 14 -26 34 -26 55c0 17 8 33 22 44c12 11 28 15 45 15c15 0 30 -6 41 -15c10 -10 20 -29 25 -43c5 -13 13 -31 18 -36c11 -10 27 -13 42 -13c41 0 76 21 105 46c21 18 33 45 40 70c13 48 17 103 17 195l-179 -1l33 51h146 l6 251c-26 8 -58 13 -78 13c-40 0 -81 -6 -110 -32c-24 -21 -49 -50 -49 -81c0 -5 2 -24 6 -34c4 -9 7 -19 7 -29c0 -17 -9 -31 -22 -43c-11 -9 -25 -11 -40 -11c-13 0 -24 4 -33 13c-16 13 -20 33 -20 52c0 56 35 101 79 140c57 50 131 63 210 63c21 0 42 -1 64 -4l85 42 l12 -6v-43'], + 0x1D4D6: [705,138,683,52,601,'496 377l102 28v-205c0 -51 -4 -92 -21 -141c-13 -38 -36 -79 -67 -108c-60 -57 -149 -89 -237 -89c-41 0 -81 2 -121 11c-27 6 -52 16 -72 34c-19 16 -28 39 -28 62c0 17 7 35 20 47c12 11 27 16 44 16s32 -3 44 -15c11 -11 17 -26 19 -40c3 -22 11 -44 28 -60 c18 -16 50 -16 76 -16c54 0 105 24 143 58c22 19 37 54 46 80c12 34 17 75 17 110l-5 121c-50 -30 -98 -43 -157 -43c-66 0 -144 16 -191 58c-51 45 -74 108 -74 172c0 63 25 124 76 169c68 60 166 79 260 79c35 0 70 -3 104 -11c24 -6 45 -13 63 -29c22 -20 36 -46 36 -75 c0 -26 -7 -54 -25 -72c-23 -24 -56 -43 -93 -43c-19 0 -51 5 -73 9l3 22c14 0 29 1 44 4c10 2 19 6 27 12c16 15 21 37 21 57c0 21 -4 44 -21 59c-28 24 -69 32 -108 32c-46 0 -93 -15 -126 -44c-48 -43 -62 -104 -62 -163c0 -61 22 -122 71 -166c26 -22 61 -33 97 -33 c38 0 75 10 102 34c17 21 30 44 38 79'], + 0x1D4D7: [699,12,999,29,990,'476 694l-1 -22l-40 -20l-1 -264h220c6 97 49 187 126 255c38 34 84 56 138 56c19 0 39 -1 52 -13c11 -9 20 -23 20 -36s-2 -25 -11 -37s-25 -19 -41 -19c-11 0 -17 2 -29 10c-6 4 -13 12 -15 19c-3 7 -8 12 -13 16c-3 3 -11 5 -19 5c-12 0 -23 -5 -32 -12 c-16 -15 -29 -33 -37 -52c-10 -27 -16 -56 -20 -84c-7 -67 -9 -134 -9 -201c0 -51 2 -98 10 -149c5 -30 18 -66 42 -87c11 -9 27 -14 42 -14c16 0 36 13 51 26l36 39l20 -18l-36 -40c-39 -42 -88 -64 -146 -64c-29 0 -55 14 -76 33c-12 10 -24 26 -30 41 c-9 21 -17 43 -21 65c-7 40 -11 81 -11 121c0 31 1 60 3 91h-214c0 -99 -27 -200 -107 -271c-51 -45 -116 -79 -189 -79c-32 0 -63 9 -86 29c-13 11 -23 26 -23 43c0 13 3 28 14 37c12 11 27 17 43 17c11 0 22 -2 30 -9c9 -8 16 -27 21 -42c3 -7 11 -14 18 -20 c8 -7 21 -11 33 -11c24 0 44 12 61 27c12 11 20 25 27 40c9 21 15 43 20 65c14 65 16 132 16 198v290c-30 0 -61 -2 -90 -9c-22 -5 -44 -14 -60 -29c-17 -14 -30 -35 -30 -57c0 -14 6 -28 12 -42c7 -14 14 -28 14 -44s-6 -32 -19 -43c-11 -10 -27 -17 -44 -17 c-13 0 -25 5 -34 13c-20 18 -26 53 -26 78c0 45 25 87 61 119c30 27 70 44 112 56c53 14 107 20 162 20c20 0 76 -2 106 -4'], + 0x1D4D8: [703,18,563,28,506,'468 658v-196c0 -57 -2 -114 -9 -171c-5 -40 -13 -80 -28 -118c-17 -41 -38 -82 -73 -113c-51 -45 -116 -78 -189 -78c-40 0 -80 12 -108 37c-18 16 -33 35 -33 58c0 16 7 32 20 44c12 10 28 15 45 15c23 0 40 -14 48 -24c5 -5 13 -25 17 -40c1 -10 11 -25 15 -28 c12 -11 30 -16 48 -16c24 0 45 11 62 26c25 22 36 54 44 85c12 48 15 97 15 145v374c-30 0 -61 -2 -90 -9c-22 -5 -44 -14 -60 -29c-17 -14 -30 -35 -30 -57c0 -14 6 -28 12 -42c7 -14 14 -28 14 -44s-6 -32 -19 -43c-11 -10 -27 -17 -44 -17c-13 0 -25 5 -34 13 c-20 18 -26 53 -26 78c0 45 25 87 61 119c30 27 70 44 112 56c53 14 107 20 162 20c20 0 76 -1 106 -4l-6 -24'], + 0x1D4D9: [701,137,571,31,540,'540 698l-3 -16l-61 -33c-1 -123 -2 -369 -2 -370c0 -69 -5 -140 -25 -207c-13 -47 -32 -94 -71 -128c-54 -49 -127 -81 -205 -81c-37 0 -76 6 -102 30c-29 25 -40 61 -40 96c0 43 16 85 38 123c29 48 67 90 111 128c57 52 123 83 169 100v311c-45 -8 -90 -22 -123 -52 c-21 -19 -40 -44 -40 -71c0 -8 0 -16 2 -24c2 -9 4 -24 4 -33c0 -13 -9 -33 -20 -42c-14 -12 -26 -20 -46 -20c-12 0 -27 10 -35 17c-14 13 -18 32 -18 50c0 46 29 83 65 115c90 79 216 110 341 110c20 0 40 -1 61 -3zM349 304c-32 -6 -100 -52 -127 -77 c-68 -60 -106 -142 -106 -227c0 -30 11 -59 35 -80c15 -13 36 -18 57 -18c13 0 25 5 37 11c15 8 29 18 42 29c27 25 38 58 46 92c13 51 16 104 16 157v113'], + 0x1D4DA: [709,9,931,27,903,'435 656v-281h15c83 90 249 270 249 271c20 18 42 34 66 47c16 8 34 16 54 16c23 0 43 -6 59 -21c13 -11 20 -28 20 -44c0 -20 -5 -39 -21 -53c-11 -11 -30 -21 -44 -21s-28 2 -37 10c-5 5 -10 11 -12 18c-2 11 -10 24 -25 24c-21 0 -39 -13 -54 -26 c-17 -15 -38 -37 -47 -47l-117 -137l87 -152c33 -58 70 -114 122 -160c14 -13 34 -18 54 -18c15 0 27 7 37 16c17 15 31 31 43 48l19 -16c-21 -39 -45 -80 -77 -108c-21 -19 -50 -31 -80 -31c-37 0 -73 13 -100 36c-26 23 -46 51 -63 80c-3 1 -91 150 -133 225h-15 c0 -98 -38 -194 -116 -264c-49 -43 -110 -76 -180 -76c-32 0 -65 7 -89 27c-13 12 -23 28 -23 45c0 14 2 27 13 37c14 12 25 17 43 17c10 0 25 -3 32 -9c9 -8 19 -23 25 -36c4 -9 12 -23 16 -27c10 -9 22 -11 36 -11c10 0 21 5 29 9c12 7 23 15 33 24c27 24 39 57 48 90 c13 50 17 102 17 153v345c-30 0 -61 -2 -90 -9c-22 -5 -44 -14 -60 -29c-17 -14 -30 -35 -30 -57c0 -14 6 -28 12 -42c7 -14 14 -28 14 -44s-6 -32 -19 -43c-11 -10 -27 -17 -44 -17c-13 0 -25 5 -34 13c-20 18 -26 53 -26 78c0 45 25 87 61 119c30 27 70 44 112 56 c53 14 107 20 162 20c20 0 77 -1 106 -4l-1 -22'], + 0x1D4DB: [710,12,808,26,741,'218 411c7 45 21 98 36 135c15 41 22 57 49 86c44 46 113 78 212 78c42 0 81 -7 109 -31c16 -16 27 -33 27 -55s-7 -43 -24 -58c-11 -10 -27 -17 -42 -17c-16 0 -34 3 -45 13c-13 11 -17 33 -17 51c0 16 -5 33 -16 43c-10 10 -26 14 -42 14c-19 0 -41 -8 -55 -22 c-18 -16 -26 -31 -33 -53c-14 -39 -22 -77 -28 -116c-9 -47 -19 -93 -36 -139c-10 -28 -30 -54 -53 -77c-22 -24 -60 -51 -94 -71l1 -9c89 0 134 -20 196 -48c47 -21 139 -46 189 -46c39 0 79 7 107 32c13 11 24 26 30 41c9 21 13 42 17 64c3 17 6 50 6 51l29 1v-69 c0 -60 -23 -120 -72 -164c-38 -33 -86 -57 -140 -57c-29 0 -60 3 -88 11c-47 14 -96 35 -137 57c-29 15 -62 28 -92 37c-21 6 -41 9 -63 9c-23 0 -45 -5 -61 -22c-18 -20 -28 -52 -35 -80l-27 13c2 46 11 94 45 130c12 13 27 25 42 37c10 9 20 18 29 28c17 18 31 42 40 65 c13 29 27 75 36 138'], + 0x1D4DC: [710,17,1111,27,1081,'577 23l-92 -35c-10 119 -44 236 -83 351c-12 36 -26 72 -43 106c-14 25 -29 50 -48 72v-223c0 -53 -6 -106 -23 -157c-13 -38 -32 -76 -64 -105c-30 -26 -69 -45 -111 -45c-23 0 -47 7 -63 21c-14 13 -22 30 -22 47c0 13 5 26 15 35c12 10 27 17 44 17 c13 0 26 -3 35 -12c5 -4 10 -17 13 -26c4 -11 12 -24 27 -24s31 5 42 14c23 21 35 49 43 77c11 41 15 83 15 125v307c-10 11 -20 21 -31 31c-25 22 -56 40 -91 40c-17 0 -34 -6 -46 -16c-25 -23 -38 -54 -43 -85l-24 4c0 48 16 97 55 132c33 30 82 36 128 36 c50 0 96 -21 131 -52c37 -32 65 -71 89 -112c31 -52 55 -108 76 -164c19 -52 38 -110 51 -167l7 -3c26 79 61 166 104 239c36 63 80 122 136 172c54 47 122 84 198 84c25 0 46 -5 63 -20c8 -7 14 -20 14 -31s-3 -29 -13 -37c-11 -10 -21 -13 -37 -13c-10 0 -19 4 -26 10 s-13 13 -15 22c-2 12 -10 26 -26 26c-9 0 -15 -4 -21 -10c-25 -23 -28 -123 -28 -189c0 -101 1 -203 10 -304c2 -25 5 -50 12 -75c4 -16 8 -29 20 -40c7 -6 17 -8 27 -8c14 0 32 12 43 22l38 38l18 -16l-48 -54c-23 -25 -67 -45 -107 -45c-29 0 -58 6 -79 25 c-19 17 -29 50 -34 74c-8 42 -12 79 -13 121c-2 74 -5 150 -5 224c0 49 1 98 4 144c-63 -67 -107 -146 -140 -229c-40 -99 -64 -203 -77 -307'], + 0x1D4DD: [712,13,874,25,889,'540 388l153 -228v350c0 34 3 69 12 102c6 23 15 46 34 63c24 21 55 37 90 37c18 0 30 -5 43 -16c9 -8 17 -20 17 -32s-2 -30 -13 -39c-12 -11 -25 -14 -43 -14c-16 0 -29 9 -33 23c-2 6 -5 18 -6 18c-4 4 -9 9 -16 9c-5 0 -10 -1 -13 -5c-15 -12 -20 -31 -22 -48 c-5 -26 -6 -86 -6 -128v-453l-79 -40c-62 102 -124 204 -194 302c-55 77 -113 158 -173 233v-114c0 -83 -7 -164 -23 -246c-6 -29 -13 -57 -25 -84c-10 -20 -23 -39 -40 -53c-24 -22 -55 -36 -90 -36c-25 0 -52 6 -69 25c-7 8 -13 20 -13 32c0 16 1 33 14 45 c11 10 26 17 41 17c14 0 27 -4 37 -12c4 -4 12 -14 15 -22c5 -11 14 -22 28 -22c12 0 23 5 31 13c24 24 33 63 38 97c8 60 9 159 9 239v170c-29 28 -65 54 -109 54c-18 0 -36 -3 -49 -15c-23 -20 -28 -42 -33 -69l-28 -6c0 25 5 51 13 76c6 19 16 37 32 51 c34 30 80 40 128 40c49 0 94 -21 128 -51c37 -33 70 -68 100 -107c42 -54 78 -103 114 -156'], + 0x1D4DE: [707,20,799,45,738,'230 670l16 -11c-32 -27 -49 -71 -61 -112c-16 -61 -23 -123 -23 -186c0 -59 9 -118 28 -174c15 -44 37 -86 73 -118c33 -29 76 -46 122 -46c54 0 108 13 146 46c33 29 51 69 60 109c12 54 21 109 21 165c0 59 -3 121 -17 176c-10 39 -31 79 -63 108 c-23 20 -52 34 -85 34s-64 -12 -88 -32c-15 -13 -24 -31 -24 -50s14 -35 31 -47c12 -8 23 -17 31 -28c6 -7 11 -23 11 -32c0 -17 -5 -29 -18 -41c-12 -10 -28 -15 -45 -15s-33 7 -45 18c-24 21 -31 52 -31 82c0 48 17 96 56 131c47 41 113 60 179 60c53 0 104 -18 141 -51 c35 -31 60 -71 73 -113c18 -55 20 -113 20 -170c0 -60 -10 -119 -28 -178c-14 -47 -46 -87 -81 -123c-64 -66 -164 -92 -261 -92c-83 0 -164 26 -223 78c-37 32 -59 74 -74 117c-19 55 -26 112 -26 169c0 103 36 208 114 278c20 18 45 37 71 48'], + 0x1D4DF: [726,13,746,29,712,'419 690c51 0 104 -5 153 -17c37 -10 74 -24 101 -48c34 -30 39 -74 39 -114c0 -56 -23 -111 -68 -151c-59 -52 -143 -73 -225 -76c-10 -86 -35 -173 -104 -235c-45 -39 -105 -62 -168 -62c-34 0 -68 8 -92 30c-14 12 -21 29 -21 47c0 11 7 28 16 36c15 13 28 20 49 20 c25 0 44 -26 51 -48c4 -11 12 -22 22 -31c7 -7 16 -12 26 -12c20 0 37 11 51 24c25 22 36 54 43 85c12 50 12 100 12 151v361c-42 -6 -86 -19 -119 -43c-26 -18 -47 -43 -47 -73c0 -7 1 -15 2 -22c3 -13 5 -26 5 -39s-5 -25 -15 -33c-12 -11 -30 -15 -47 -15 c-13 0 -26 3 -35 11c-15 14 -19 33 -19 51c0 43 28 79 61 109c60 53 133 80 216 93l100 37l13 -8v-28zM419 650v-334c45 5 91 19 124 47c37 34 46 82 46 128c0 43 -12 88 -47 119c-32 28 -79 40 -123 40'], + 0x1D4E0: [705,42,765,42,725,'705 184l20 -7c-20 -53 -44 -107 -90 -148c-26 -23 -60 -42 -99 -42c-41 0 -112 14 -167 24c-56 11 -112 21 -169 21c-25 0 -51 -6 -68 -22c-17 -15 -29 -33 -39 -52l-24 12c18 49 44 95 85 132c24 21 60 29 93 29c46 0 86 -5 136 -14c42 6 79 21 109 48 c31 27 49 69 61 105c15 50 21 103 21 155c0 42 -5 85 -19 125c-11 32 -26 62 -52 85c-30 26 -72 39 -114 39c-54 0 -109 -14 -147 -48c-27 -24 -44 -54 -56 -85c-14 -39 -19 -80 -19 -121c0 -37 2 -74 13 -110c6 -24 16 -49 37 -67c11 -10 26 -17 41 -22 c21 -7 41 -10 64 -13l-5 -24c-37 0 -74 5 -112 17c-30 9 -59 22 -82 42c-54 48 -81 114 -81 181c0 73 24 146 83 198c72 65 177 83 278 83c43 0 85 -4 125 -15c32 -9 63 -22 87 -44c64 -57 87 -138 87 -217c0 -87 -20 -177 -91 -240c-43 -39 -99 -64 -156 -79l1 -8 c29 -7 70 -17 109 -17c37 0 76 18 102 41c18 16 28 36 38 58'], + 0x1D4E1: [732,12,816,29,842,'442 694c56 0 112 -4 166 -16c37 -8 74 -20 102 -44c28 -25 37 -61 37 -96c0 -47 -13 -96 -52 -130c-31 -27 -73 -54 -106 -70c22 -55 45 -106 75 -159c17 -30 35 -61 63 -83c8 -6 17 -12 27 -12c14 0 28 7 37 16c12 10 25 26 30 33l21 -16c-19 -31 -40 -63 -68 -88 c-23 -20 -49 -41 -83 -41c-20 0 -40 4 -55 17c-22 20 -36 47 -48 73l-104 223l-42 7c-11 -88 -44 -176 -116 -239c-50 -44 -112 -79 -183 -79c-33 0 -66 9 -90 30c-14 12 -24 29 -24 47c0 15 4 29 16 39c10 9 22 14 36 14c16 0 33 -2 44 -12c9 -8 16 -18 19 -29 c3 -12 7 -24 17 -33c8 -7 21 -9 33 -9c19 0 36 8 49 19c32 28 50 65 62 102c16 50 22 102 22 154v344c-42 -6 -86 -19 -119 -43c-26 -18 -47 -43 -47 -73c0 -7 1 -15 2 -22c3 -13 5 -26 5 -39s-5 -25 -15 -33c-12 -11 -30 -15 -47 -15c-13 0 -26 3 -35 11 c-15 14 -19 33 -19 51c0 43 28 79 61 109c60 53 133 80 216 93l100 37l13 -8v-30zM442 656v-323c48 0 91 18 125 47c40 35 47 91 47 139c0 38 -9 77 -40 104c-14 13 -33 20 -52 25c-26 6 -53 8 -80 8'], + 0x1D4E2: [715,18,598,7,554,'351 515l4 18c19 1 37 4 50 17c14 12 19 32 19 49s-4 35 -18 47c-23 20 -54 30 -87 30s-68 -5 -92 -26c-21 -19 -38 -44 -38 -71c0 -34 21 -65 48 -89c28 -24 60 -44 94 -61c41 -19 108 -52 122 -60c16 -8 31 -17 45 -28c40 -36 56 -87 56 -137c0 -57 -32 -110 -77 -150 c-29 -26 -65 -42 -103 -53c-47 -14 -95 -19 -144 -19c-69 0 -138 19 -187 63c-28 25 -36 61 -36 96c0 42 14 84 48 115c35 31 87 37 136 37c27 0 54 -6 73 -23c14 -12 21 -24 21 -42c0 -9 -4 -29 -12 -36c-12 -11 -27 -16 -45 -16c-13 0 -22 5 -31 13c-3 3 -10 15 -11 23 c0 11 -3 26 -10 32s-16 11 -26 11c-12 0 -23 -6 -31 -14c-20 -17 -27 -43 -27 -68c0 -39 12 -80 45 -108c32 -29 78 -42 124 -42c50 0 100 16 136 48c27 24 41 57 41 91c0 39 -17 78 -49 106c-34 30 -77 51 -119 70c-50 23 -96 51 -135 86c-38 33 -46 81 -46 126 c0 41 12 83 46 112c22 20 52 31 82 39c41 10 84 14 126 14c57 0 116 -13 157 -49c18 -16 24 -39 24 -61c0 -21 -9 -40 -26 -55c-26 -23 -61 -39 -99 -39c-14 0 -34 2 -48 4'], + 0x1D4E3: [697,11,654,26,735,'711 697l24 -13l-19 -31c-11 -18 -33 -50 -60 -73c-12 -11 -32 -25 -46 -31c-11 -5 -23 -8 -35 -8c-13 0 -78 14 -107 22v-255c0 -94 -37 -186 -112 -253c-14 -12 -85 -66 -187 -66c-33 0 -62 8 -86 29c-17 15 -23 37 -23 57c0 14 7 28 17 37c13 11 31 16 48 16 c12 0 29 -5 39 -16c6 -7 13 -20 17 -34c3 -11 9 -26 14 -31c10 -8 23 -10 36 -10c23 0 44 7 60 22c11 9 30 35 35 48c23 56 32 102 32 161v319l-13 5c-52 22 -107 41 -165 41c-21 0 -42 -5 -57 -18c-13 -12 -21 -27 -21 -43c0 -14 10 -26 20 -36c17 -17 32 -33 32 -53 c0 -15 -7 -30 -19 -41c-12 -10 -27 -17 -43 -17c-15 0 -30 5 -41 14c-20 18 -25 44 -25 69c0 45 20 87 56 118c52 47 123 71 197 71c55 0 127 -18 189 -36c48 -13 96 -26 146 -26c32 0 56 16 77 37'], + 0x1D4E4: [709,13,799,9,797,'777 121l20 -17c-13 -19 -24 -36 -39 -55c-4 -6 -12 -14 -17 -19c-27 -23 -61 -39 -99 -39c-27 0 -57 5 -77 23c-24 22 -44 55 -54 90c-36 -36 -77 -66 -123 -88c-36 -16 -75 -29 -116 -29c-42 0 -85 11 -115 38c-38 34 -46 84 -46 131c0 76 17 157 33 234 c9 46 16 92 16 138c0 16 -1 31 -6 46c-3 10 -7 21 -16 28c-10 9 -22 16 -36 16c-15 0 -29 -5 -39 -14c-20 -17 -21 -35 -21 -58c0 -13 4 -36 7 -50l-26 -9c-7 23 -14 46 -14 70c0 43 11 79 47 110c24 22 60 32 94 32c33 0 65 -12 89 -33c14 -13 24 -27 29 -44 c8 -22 10 -39 10 -63c0 -61 -14 -135 -28 -202c-10 -51 -21 -110 -21 -154c0 -26 2 -52 11 -78c6 -19 15 -37 31 -51c18 -16 42 -25 67 -25c22 0 43 7 62 17c25 12 47 28 68 46c7 7 25 27 34 39c0 156 10 311 29 466c59 33 120 63 182 92l27 -14c-14 -8 -32 -23 -46 -36 c-13 -12 -21 -28 -27 -43c-10 -23 -18 -47 -22 -72c-17 -86 -22 -173 -22 -261c0 -47 0 -95 10 -141c7 -29 17 -58 40 -79c7 -6 17 -9 27 -9c15 0 24 6 36 17c10 8 30 34 41 50'], + 0x1D4E5: [702,16,751,27,714,'396 118l11 3l103 155c30 41 59 91 78 137c15 37 21 68 21 107c0 29 -9 59 -32 79c-16 14 -31 21 -53 21c-15 0 -34 -7 -45 -15c-15 -10 -30 -31 -39 -46l-19 11c10 35 26 65 53 89c30 26 70 41 112 41c36 0 72 -9 97 -32c22 -19 31 -54 31 -82c0 -43 -16 -77 -37 -118 c-35 -68 -75 -130 -121 -196c-58 -83 -137 -197 -157 -255l-86 -33h-13c-18 118 -38 250 -61 350c-14 63 -34 145 -48 189c-9 27 -20 55 -43 75c-9 8 -20 15 -33 15c-12 0 -23 -5 -32 -12c-19 -17 -28 -46 -34 -70l-22 5c7 58 21 106 63 144c20 17 48 22 76 22 c24 0 49 -8 66 -24c27 -24 42 -55 54 -87c19 -49 36 -114 46 -165'], + 0x1D4E6: [710,8,1119,27,1081,'387 146l98 194c54 102 75 213 90 324l80 39l12 -5c0 -126 31 -250 95 -362c32 -56 64 -113 84 -172c37 65 72 128 104 195c20 42 31 90 31 135s-8 92 -45 124c-12 11 -31 17 -49 17c-24 0 -44 -13 -62 -27l-18 16c9 11 24 28 36 39c34 30 73 47 122 47 c28 0 55 -8 75 -25c34 -31 41 -75 41 -117c0 -38 -16 -75 -32 -110c-26 -60 -58 -119 -92 -175c-50 -83 -92 -167 -127 -255l-74 -31l-9 3c-10 105 -44 207 -93 304c-25 50 -56 128 -66 170c-54 -129 -166 -333 -215 -458l-90 -24l-11 11l-2 132c-2 107 -6 212 -25 306 c-7 32 -16 64 -31 97c-10 23 -27 46 -47 63c-11 10 -25 15 -40 15c-16 0 -31 -7 -42 -17c-19 -16 -29 -47 -35 -69l-23 5c0 50 17 98 57 133c25 23 59 36 95 36c34 0 67 -12 92 -33c40 -36 58 -86 72 -135c21 -75 29 -189 31 -266l4 -127'], + 0x1D4E7: [712,11,811,27,774,'733 169l27 -4c-12 -50 -29 -99 -69 -135c-29 -26 -68 -39 -109 -39c-32 0 -66 5 -89 26c-27 24 -46 55 -60 87c-19 41 -36 99 -43 144c-17 -46 -40 -97 -66 -137c-18 -26 -36 -51 -60 -72c-34 -31 -80 -50 -129 -50c-30 0 -59 9 -80 27c-16 14 -25 34 -25 54 c0 17 11 31 24 43c9 9 22 14 35 14c15 0 30 -2 40 -12c13 -11 17 -30 19 -47c2 -14 9 -33 28 -33c23 0 43 11 59 25c32 29 56 64 77 101c27 48 46 99 63 151c-10 73 -22 145 -45 216c-9 25 -18 49 -31 73c-10 17 -20 33 -35 46c-17 15 -41 23 -65 23c-13 0 -25 -5 -35 -14 c-11 -10 -17 -24 -17 -38c0 -9 0 -18 1 -27c2 -11 6 -21 6 -32c0 -12 -7 -24 -17 -33c-13 -11 -29 -22 -48 -22c-18 0 -33 10 -45 20c-13 12 -17 28 -17 44c0 33 22 62 48 85c45 40 109 59 173 59c51 0 103 -11 140 -43c18 -16 29 -38 39 -59c16 -33 32 -83 42 -121 c25 54 65 128 111 169c28 24 63 44 103 44c25 0 52 -2 70 -18c15 -13 21 -32 21 -50s-6 -35 -20 -48c-10 -8 -22 -15 -35 -15c-1 0 -25 0 -37 11c-8 7 -12 17 -14 28c-1 9 -3 18 -10 24c-6 6 -15 8 -23 8c-11 0 -22 -5 -31 -12c-27 -24 -45 -51 -61 -81 c-26 -48 -45 -92 -63 -143c9 -70 22 -139 45 -206c15 -42 32 -86 68 -117c12 -11 30 -14 47 -14s34 5 46 16c26 23 38 53 47 84'], + 0x1D4E8: [709,135,680,-4,599,'480 655l105 49l14 -13l-10 -383s-7 -144 -27 -214c-16 -56 -44 -106 -89 -145c-59 -53 -138 -84 -222 -84c-35 0 -72 4 -98 27c-20 17 -25 43 -25 68c0 35 13 69 31 100c23 39 54 73 89 104c64 57 144 99 226 134l2 102c-39 -28 -81 -55 -122 -80 c-38 -23 -80 -43 -126 -43c-35 0 -68 13 -92 35c-13 11 -16 28 -18 44c-3 27 -3 75 -3 113v103c0 11 -5 27 -13 35c-5 5 -13 9 -20 9c-18 0 -47 -29 -67 -51l-19 15c20 32 43 69 67 90c23 21 52 39 86 39c21 0 42 -7 57 -20c14 -13 17 -31 19 -48c4 -27 4 -81 4 -122 c0 -57 0 -140 28 -164c9 -9 23 -13 36 -13c28 1 53 14 75 28c38 24 75 52 108 80c0 68 4 137 4 205zM474 261c-57 -25 -110 -59 -155 -99c-50 -44 -92 -99 -92 -163c0 -14 0 -29 4 -43c3 -9 7 -19 15 -26c14 -12 33 -20 53 -20c38 0 71 17 97 40c28 24 45 55 57 88 c20 52 21 91 21 223'], + 0x1D4E9: [705,14,742,57,714,'501 527l-282 -361c35 9 61 10 91 10c23 0 45 -7 66 -14c32 -11 62 -26 92 -41c41 -21 92 -48 130 -48c17 0 33 5 45 16c12 10 19 21 19 36c0 10 -3 22 -12 29c-8 8 -24 14 -38 16c-18 3 -32 9 -45 20c-11 10 -18 22 -18 35c0 18 7 30 20 42c15 13 35 19 56 19 c23 0 45 -14 61 -28c24 -22 28 -57 28 -87c0 -53 -15 -102 -58 -140c-33 -29 -78 -45 -124 -45c-23 0 -44 7 -64 14c-34 11 -66 25 -98 41c-28 13 -56 25 -86 34c-21 7 -49 15 -71 15c-28 0 -54 -10 -74 -28l-37 -62l-37 8l-7 15l399 514c-12 -7 -28 -7 -43 -7 c-18 0 -36 5 -52 12c-23 9 -45 21 -65 34c-22 15 -42 28 -66 42c-14 8 -33 15 -50 15c-14 0 -28 -7 -38 -16s-15 -22 -15 -34c0 -16 8 -31 22 -41c8 -6 18 -11 25 -17c9 -8 13 -20 13 -31c0 -12 -5 -25 -15 -34c-13 -11 -28 -22 -46 -22c-16 0 -32 7 -44 17 c-19 17 -26 41 -26 64c0 51 28 97 69 133c38 34 70 53 125 53c20 0 39 -8 57 -17c29 -13 55 -30 81 -48c24 -17 72 -37 99 -37c16 0 32 7 43 17c21 19 32 43 40 68l15 3l31 -24l1 -9c-41 -42 -81 -85 -117 -131'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Shapes/Regular/Main.js new file mode 100644 index 0000000..ca2ec8c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Shapes/Regular/Main.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'NeoEulerMathJax_Shapes', + id: 'NEOEULERSHAPES', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x2B1A: [690,6,816,60,756,'660 192c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM660 342c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM660 492c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM60 192c0 26 22 48 48 48s48 -22 48 -48 s-22 -48 -48 -48s-48 22 -48 48zM60 342c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM60 492c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM510 42c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM360 42 c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM210 42c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM510 642c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM360 642c0 26 22 48 48 48s48 -22 48 -48 s-22 -48 -48 -48s-48 22 -48 48zM210 642c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM660 43c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM660 642c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM60 42 c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM60 642c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Shapes/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size1/Regular/Main.js new file mode 100644 index 0000000..76b42d5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size1/Regular/Main.js @@ -0,0 +1,75 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'NeoEulerMathJax_Size1', + id: 'NEOEULERSIZE1', + 0x20: [0,0,333,0,0,''], + 0x28: [999,199,456,153,426,'153 400c0 229 67 453 242 599h31l-15 -16c-154 -157 -189 -384 -189 -583s35 -426 189 -583l15 -16h-31c-175 146 -242 370 -242 599'], + 0x29: [999,199,457,30,304,'304 400c0 -229 -68 -453 -243 -599h-31l16 16c153 157 189 384 189 583s-36 426 -189 583l-16 16h31c175 -146 243 -370 243 -599'], + 0x2F: [999,200,577,55,524,'92 -200l-34 8l-3 14l430 1175l12 2l22 -5l5 -11'], + 0x5B: [1074,125,416,202,394,'202 -125v1199h192v-40h-152v-1119h152v-40h-192'], + 0x5C: [999,200,577,55,524,'487 -200l34 8l3 14l-430 1175l-12 2l-22 -5l-5 -11'], + 0x5D: [1074,125,416,22,214,'214 -125h-192v40h152v1119h-152v40h192v-1199'], + 0x7B: [999,200,583,110,474,'257 562v259c0 34 0 36 3 49c22 100 196 129 198 129c14 0 16 -3 16 -16c0 -5 0 -12 -7 -14c-40 -14 -139 -48 -140 -120c-1 -54 0 -108 0 -162v-105c0 -39 0 -41 -2 -52c-12 -73 -97 -111 -160 -131c67 -20 162 -62 162 -152v-280c0 -48 10 -93 138 -136 c9 -3 9 -7 9 -15c0 -13 -2 -16 -16 -16c-7 0 -196 35 -201 147v277c0 31 0 33 -1 39c-9 56 -61 92 -123 116c-22 8 -23 9 -23 21s4 13 16 18c131 49 131 110 131 144'], + 0x7C: [1297,208,213,86,126,'126 -200l-40 -8v1497l40 8v-1497'], + 0x7D: [999,200,583,110,474,'327 237v-259c0 -46 0 -70 -40 -109c-43 -42 -147 -69 -160 -69c-12 0 -17 2 -17 16c0 5 0 12 9 15c42 15 137 48 138 119c1 54 0 108 0 162v105c0 39 0 41 2 52c12 73 97 111 160 131c-67 20 -162 62 -162 152v280c0 58 -20 95 -137 136c-10 3 -10 9 -10 15 c0 14 5 16 17 16c14 0 116 -28 158 -68c42 -39 42 -58 42 -134v-222c0 -53 0 -109 138 -160c9 -3 9 -7 9 -16c0 -12 -1 -12 -17 -18c-130 -48 -130 -112 -130 -144'], + 0xA0: [0,0,333,0,0,''], + 0x2016: [1297,208,403,86,316,'316 -200l-40 -8v1497l40 8v-1497zM126 -200l-40 -8v1497l40 8v-1497'], + 0x2044: [999,200,577,55,524,'92 -200l-34 8l-3 14l430 1175l12 2l22 -5l5 -11'], + 0x21D0: [598,98,1700,55,1622,'55 250c145 72 257 196 312 348h40c-31 -86 -78 -163 -138 -230h1353v-40h-1392c-31 -29 -64 -55 -99 -78c35 -23 68 -49 99 -78h1392v-40h-1353c60 -67 107 -144 138 -230h-40c-55 152 -167 276 -312 348'], + 0x21D2: [598,98,1700,55,1622,'1622 250c-145 72 -257 196 -312 348h-40c31 -86 78 -163 138 -230h-1353v-40h1392c31 -29 64 -55 99 -78c-35 -23 -68 -49 -99 -78h-1392v-40h1353c-60 -67 -107 -144 -138 -230h40c55 152 167 276 312 348'], + 0x21D4: [598,98,1700,33,1665,'1665 250c-123 -83 -214 -206 -257 -348h-41c26 83 66 161 118 230h-1272c52 -69 92 -147 118 -230h-41c-43 142 -134 265 -257 348c123 83 214 206 257 348h41c-26 -83 -66 -161 -118 -230h1272c-52 69 -92 147 -118 230h41c43 -142 134 -265 257 -348zM1518 172 c25 28 52 54 81 78c-29 24 -56 50 -81 78h-1338c-25 -28 -52 -54 -81 -78c29 -24 56 -50 81 -78h1338'], + 0x220F: [1200,200,1411,56,1354,'1037 -36v1182h-664v-1182c0 -64 31 -110 164 -110v-54h-481v54c132 0 164 45 164 110v1072c0 64 -31 110 -164 110v54h1298v-54c-132 0 -164 -45 -164 -110v-1072c0 -64 31 -110 164 -110v-54h-481v54c132 0 164 45 164 110'], + 0x2210: [1200,200,1411,56,1354,'1354 -200h-1298v54c132 0 164 45 164 110v1072c0 64 -31 110 -164 110v54h481v-54c-132 0 -164 -45 -164 -110v-1182h664v1182c0 64 -31 110 -164 110v54h481v-54c-132 0 -164 -45 -164 -110v-1072c0 -64 31 -110 164 -110v-54'], + 0x2211: [1200,200,1444,56,1361,'1347 -200h-1259c-18 0 -32 0 -32 16c0 1 0 6 9 17l507 639l-405 662v50c1 16 12 16 32 16h1037l-14 -77h-885l354 -578c3 -4 7 -12 7 -17c0 -2 0 -7 -10 -19l-469 -591h1142'], + 0x2215: [999,200,577,55,524,'92 -200l-34 8l-3 14l430 1175l12 2l22 -5l5 -11'], + 0x221A: [1207,2,1000,110,1027,'991 1207l36 -17l-571 -1192h-32l-229 532l-69 -54l-16 16l139 107l213 -496'], + 0x2223: [1297,208,213,86,126,'126 -200l-40 -8v1497l40 8v-1497'], + 0x2225: [738,167,392,86,306,'126 -159l-40 -8v897l40 8v-897zM306 -159l-40 -8v897l40 8v-897'], + 0x2227: [924,74,1124,56,1068,'1068 -54l-482 976l-16 2l-514 -976l20 -20l48 2l454 858l424 -862'], + 0x2228: [874,124,1124,56,1068,'1068 854l-482 -976l-16 -2l-514 976l20 20l48 -2l454 -858l424 862'], + 0x2229: [959,6,833,56,776,'56 614c0 195 165 345 360 345c194 0 360 -150 360 -345v-620h-69v620c0 154 -132 276 -291 276c-160 0 -291 -122 -291 -276v-620h-69v620'], + 0x222A: [924,41,833,56,776,'125 304c0 -154 131 -276 291 -276c159 0 291 122 291 276v620h69v-620c0 -195 -166 -345 -360 -345c-195 0 -360 150 -360 345v620h69v-620'], + 0x222B: [2022,200,555,41,517,'245 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318c0 -29 0 -132 2 -154v-61 c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306c0 21 0 56 -1 63v60 c-2 104 -4 209 -4 314'], + 0x222C: [2022,200,773,41,847,'575 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318c0 -29 0 -132 2 -154v-61 c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306c0 21 0 56 -1 63v60 c-2 104 -4 209 -4 314zM245 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318 c0 -29 0 -132 2 -154v-61c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306 c0 21 0 56 -1 63v60c-2 104 -4 209 -4 314'], + 0x222D: [2022,200,1103,41,1177,'905 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318c0 -29 0 -132 2 -154v-61 c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306c0 21 0 56 -1 63v60 c-2 104 -4 209 -4 314zM575 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318 c0 -29 0 -132 2 -154v-61c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306 c0 21 0 56 -1 63v60c-2 104 -4 209 -4 314zM245 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195 c-2 -27 -8 -113 -8 -318c0 -29 0 -132 2 -154v-61c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30 c61 0 72 157 76 206c2 25 8 105 8 306c0 21 0 56 -1 63v60c-2 104 -4 209 -4 314'], + 0x222E: [2022,200,555,17,556,'243 805v332c-115 -24 -186 -122 -186 -226c0 -97 66 -201 188 -225c-2 25 -2 79 -2 119zM326 1200c0 -9 1 -22 5 -23c176 -38 225 -178 225 -266c0 -126 -92 -244 -227 -265v-69c0 -132 -3 -263 -7 -395c-9 -298 -68 -382 -156 -382c-69 0 -126 35 -126 91 c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306c0 72 -1 144 -2 216c-1 67 -1 85 -6 87c-33 7 -101 23 -159 90c-42 50 -65 111 -65 176c0 126 92 243 226 265v69c0 33 3 247 4 298c1 55 4 110 7 164 c11 194 45 314 137 314c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318c0 -93 1 -185 3 -278zM329 686c116 23 187 122 187 226c0 95 -64 201 -189 225 c2 -23 2 -81 2 -121v-330'], + 0x228E: [924,41,833,56,776,'125 304c0 -154 131 -276 291 -276c159 0 291 122 291 276v620h69v-620c0 -195 -166 -345 -360 -345c-195 0 -360 150 -360 345v620h69v-620zM381 674h69v-153h152v-69h-152v-152h-69v152h-152v69h152v153'], + 0x22C0: [924,74,1124,56,1068,'1068 -54l-482 976l-16 2l-514 -976l20 -20l48 2l454 858l424 -862'], + 0x22C1: [874,124,1124,56,1068,'1068 854l-482 -976l-16 -2l-514 976l20 20l48 -2l454 -858l424 862'], + 0x22C2: [959,6,833,56,776,'56 614c0 195 165 345 360 345c194 0 360 -150 360 -345v-620h-69v620c0 154 -132 276 -291 276c-160 0 -291 -122 -291 -276v-620h-69v620'], + 0x22C3: [924,41,833,56,776,'125 304c0 -154 131 -276 291 -276c159 0 291 122 291 276v620h69v-620c0 -195 -166 -345 -360 -345c-195 0 -360 150 -360 345v620h69v-620'], + 0x2308: [999,200,472,202,449,'202 -200v1199h247v-40h-207v-1159h-40'], + 0x2309: [999,200,472,22,269,'229 -200v1159h-207v40h247v-1199h-40'], + 0x230A: [999,200,472,202,449,'202 -200v1199h40v-1159h207v-40h-247'], + 0x230B: [999,200,472,22,269,'269 -200h-247v40h207v1159h40v-1199'], + 0x2329: [939,237,501,95,392,'139 351l253 -572l-37 -16l-260 588l260 588l37 -16'], + 0x232A: [939,237,568,79,375,'115 939l260 -588l-260 -588l-36 16l252 572l-252 572'], + 0x23DC: [786,-525,1311,56,1255,'66 525c-10 0 -10 8 -10 12c0 18 76 83 88 93c169 131 370 156 512 156c223 0 403 -65 524 -167c15 -13 75 -67 75 -82c0 -4 0 -12 -10 -12c-2 0 -4 0 -13 9c-130 120 -314 183 -577 183c-93 0 -196 -9 -287 -32c-163 -42 -244 -110 -293 -156c-3 -2 -5 -4 -9 -4'], + 0x23DD: [31,230,1311,56,1255,'655 -230c-223 0 -403 65 -524 167c-14 12 -75 67 -75 82c0 5 2 12 10 12c2 0 4 0 13 -9c56 -51 136 -110 276 -148c98 -26 200 -35 301 -35c93 0 196 9 287 32c159 41 240 106 292 154c3 4 6 6 10 6c8 0 10 -7 10 -12c0 -18 -76 -83 -88 -93 c-169 -131 -370 -156 -512 -156'], + 0x23DE: [878,-514,1311,56,1255,'818 732h259c34 0 36 0 49 -4c100 -22 129 -196 129 -198c0 -14 -3 -16 -16 -16c-5 0 -12 0 -14 8c-14 40 -48 138 -120 140h-162h-105c-39 0 -41 0 -52 2c-73 12 -111 96 -131 160c-20 -68 -62 -162 -152 -162h-280c-48 0 -93 -10 -136 -138c-3 -10 -7 -10 -15 -10 c-13 0 -16 2 -16 16c0 8 35 196 147 202h277h39c56 10 92 62 116 124c8 22 9 22 21 22s13 -4 18 -16c49 -130 110 -130 144 -130'], + 0x23DF: [40,324,1311,56,1255,'493 -178h-259c-46 0 -70 0 -109 40c-42 44 -69 148 -69 160s2 18 16 18c5 0 12 0 15 -10c15 -42 48 -136 119 -138h162h105c39 0 41 0 52 -2c73 -12 111 -96 131 -160c20 68 62 162 152 162h280c58 0 95 20 136 138c3 10 9 10 15 10c14 0 16 -6 16 -18 c0 -14 -28 -116 -68 -158c-39 -42 -58 -42 -134 -42h-222c-53 0 -109 0 -160 -138c-3 -8 -7 -8 -16 -8c-12 0 -12 0 -18 16c-48 130 -112 130 -144 130'], + 0x27E8: [737,237,388,107,330,'150 250l180 -473l-37 -14l-186 487l186 487l37 -14'], + 0x27E9: [737,237,388,57,280,'94 737l186 -487l-186 -487l-37 14l180 473l-180 473'], + 0x2A0C: [2022,200,1433,41,1507,'1235 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318c0 -29 0 -132 2 -154v-61 c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306c0 21 0 56 -1 63v60 c-2 104 -4 209 -4 314zM905 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318 c0 -29 0 -132 2 -154v-61c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306 c0 21 0 56 -1 63v60c-2 104 -4 209 -4 314zM575 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195 c-2 -27 -8 -113 -8 -318c0 -29 0 -132 2 -154v-61c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30 c61 0 72 157 76 206c2 25 8 105 8 306c0 21 0 56 -1 63v60c-2 104 -4 209 -4 314zM245 780l-1 246c0 144 1 289 3 433c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30 c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318c0 -29 0 -132 2 -154v-61c1 -56 3 -112 3 -168c0 -100 1 -199 1 -299c0 -178 0 -513 -12 -695c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29 c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306c0 21 0 56 -1 63v60c-2 104 -4 209 -4 314'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size1/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size2/Regular/Main.js new file mode 100644 index 0000000..9d82a39 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size2/Regular/Main.js @@ -0,0 +1,64 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'NeoEulerMathJax_Size2', + id: 'NEOEULERSIZE2', + 0x20: [0,0,333,0,0,''], + 0x28: [1599,199,596,180,574,'180 700c0 336 89 675 346 899h48l-17 -17c-230 -225 -301 -556 -301 -882s71 -657 301 -882l17 -17h-48c-257 224 -346 563 -346 899'], + 0x29: [1599,199,595,22,415,'415 700c0 -336 -89 -675 -346 -899h-47l16 17c231 225 301 556 301 882s-70 657 -301 882l-16 17h47c257 -224 346 -563 346 -899'], + 0x2F: [1599,200,811,53,759,'759 1583l-662 -1783l-41 8l-3 14l660 1775l12 2l29 -5'], + 0x5B: [1674,125,472,226,453,'226 -125v1799h227v-47h-180v-1705h180v-47h-227'], + 0x5C: [1599,200,811,53,759,'53 1583l662 -1783l41 8l3 14l-660 1775l-12 2l-29 -5'], + 0x5D: [1674,125,472,18,245,'198 -78v1705h-180v47h227v-1799h-227v47h180'], + 0x7B: [1599,200,667,119,547,'296 61v416c0 24 -7 127 -167 201c-10 5 -10 7 -10 22c0 12 0 16 8 20c38 17 157 72 168 196c1 8 1 65 1 98v312c0 83 0 120 69 189c35 35 128 84 162 84c19 0 20 -1 20 -20c0 -13 0 -17 -7 -20c-41 -17 -170 -71 -170 -188v-450c-1 -75 -56 -161 -194 -222 c119 -49 192 -133 194 -220v-425c0 -56 0 -145 168 -214c9 -3 9 -6 9 -20c0 -19 -1 -20 -20 -20c-37 0 -127 51 -160 82c-71 69 -71 114 -71 179'], + 0x7C: [1897,208,213,86,126,'126 -200l-40 -8v2097l40 8v-2097'], + 0x7D: [1599,200,667,119,547,'296 28v450c1 75 56 161 194 222c-119 49 -192 133 -194 220v425c0 59 0 143 -167 213c-10 4 -10 9 -10 21c0 19 3 20 21 20c34 0 124 -49 159 -82c71 -69 71 -114 71 -179v-416c0 -7 0 -9 3 -26c19 -109 135 -162 167 -177c7 -3 7 -8 7 -20c0 -10 0 -16 -6 -19 c-40 -18 -159 -73 -170 -197c-1 -8 -1 -65 -1 -98v-312c0 -83 0 -120 -69 -189c-36 -36 -129 -84 -161 -84c-18 0 -21 1 -21 20c0 10 0 16 8 20c42 18 169 72 169 188'], + 0xA0: [0,0,333,0,0,''], + 0x2016: [1897,208,403,86,316,'316 -200l-40 -8v2097l40 8v-2097zM126 -200l-40 -8v2097l40 8v-2097'], + 0x2044: [1599,200,811,53,759,'759 1583l-662 -1783l-41 8l-3 14l660 1775l12 2l29 -5'], + 0x2215: [1599,200,811,53,759,'759 1583l-662 -1783l-41 8l-3 14l660 1775l12 2l29 -5'], + 0x221A: [1800,1,1000,110,1024,'458 -1h-34l-230 802l-68 -80l-16 15l139 163l215 -750l522 1651l38 -12'], + 0x2223: [1897,208,213,86,126,'126 -200l-40 -8v2097l40 8v-2097'], + 0x2225: [1297,208,403,86,316,'316 -200l-40 -8v1497l40 8v-1497zM126 -200l-40 -8v1497l40 8v-1497'], + 0x2227: [1128,267,1549,56,1492,'1492 -238l-681 1360l-24 6l-731 -1373l21 -22l76 2l641 1197l606 -1199'], + 0x2228: [1069,326,1549,56,1492,'1492 1040l-681 -1360l-24 -6l-731 1373l21 22l76 -2l641 -1197l606 1199'], + 0x2229: [1359,-1,1110,56,1053,'56 878c0 271 228 481 499 481c270 0 498 -210 498 -481v-877h-83v877c0 222 -187 398 -415 398s-416 -176 -416 -398v-877h-83v877'], + 0x222A: [1317,41,1110,56,1053,'139 440c0 -222 188 -398 416 -398s415 176 415 398v877h83v-877c0 -271 -228 -481 -498 -481c-271 0 -499 210 -499 481v877h83v-877'], + 0x228E: [1317,41,1110,56,1053,'139 440c0 -222 188 -398 416 -398s415 176 415 398v877h83v-877c0 -271 -228 -481 -498 -481c-271 0 -499 210 -499 481v877h83v-877zM513 989h83v-249h249v-83h-249v-249h-83v249h-249v83h249v249'], + 0x22C0: [1128,267,1549,56,1492,'1492 -238l-681 1360l-24 6l-731 -1373l21 -22l76 2l641 1197l606 -1199'], + 0x22C1: [1069,326,1549,56,1492,'1492 1040l-681 -1360l-24 -6l-731 1373l21 22l76 -2l641 -1197l606 1199'], + 0x22C2: [1359,-1,1110,56,1053,'56 878c0 271 228 481 499 481c270 0 498 -210 498 -481v-877h-83v877c0 222 -187 398 -415 398s-416 -176 -416 -398v-877h-83v877'], + 0x22C3: [1317,41,1110,56,1053,'139 440c0 -222 188 -398 416 -398s415 176 415 398v877h83v-877c0 -271 -228 -481 -498 -481c-271 0 -499 210 -499 481v877h83v-877'], + 0x2308: [1599,200,527,226,509,'226 -200v1799h283v-47h-236v-1752h-47'], + 0x2309: [1599,200,527,18,301,'254 -200v1752h-236v47h283v-1799h-47'], + 0x230A: [1599,200,527,226,509,'226 -200v1799h47v-1752h236v-47h-283'], + 0x230B: [1599,200,527,18,301,'254 -153v1752h47v-1799h-283v47h236'], + 0x2329: [1536,234,629,109,520,'160 651l360 -867l-43 -18l-368 885l368 885l43 -18'], + 0x232A: [1536,234,693,89,500,'133 1536l367 -885l-367 -885l-44 18l360 867l-360 867'], + 0x23DC: [794,-414,1911,56,1855,'67 458l36 40c7 8 23 22 35 32c1 0 42 36 81 64c232 156 500 200 737 200c166 0 327 -24 459 -66c211 -70 350 -176 432 -272c8 -8 8 -10 8 -24c0 -12 0 -18 -10 -18c-2 0 -5 0 -8 2c-177 176 -438 302 -882 302c-240 0 -487 -40 -679 -148c-110 -62 -165 -116 -201 -152 c-3 -2 -5 -4 -9 -4c-9 0 -10 8 -10 10v22c0 2 10 10 11 12'], + 0x23DD: [144,236,1911,56,1855,'956 -236c-161 0 -323 22 -460 66c-211 70 -350 176 -432 272c-8 8 -8 10 -8 24c0 10 0 18 10 18c3 0 6 -2 8 -4c183 -180 448 -300 882 -300c240 0 487 40 679 148c110 62 165 116 200 150c2 2 6 6 10 6c10 0 10 -8 10 -18c0 -14 0 -16 -6 -22c-21 -24 -60 -62 -76 -76 c-225 -196 -530 -264 -817 -264'], + 0x23DE: [912,-484,1911,56,1855,'317 736h416c24 0 127 6 201 166c5 10 7 10 22 10c12 0 16 0 20 -8c17 -38 72 -156 196 -168h98h312c83 0 120 0 189 -70c35 -34 84 -128 84 -162c0 -18 -1 -20 -20 -20c-13 0 -17 0 -20 8c-17 40 -71 170 -188 170h-450c-75 0 -161 56 -222 194 c-49 -120 -133 -192 -220 -194h-425c-56 0 -145 0 -214 -168c-3 -10 -6 -10 -20 -10c-19 0 -20 2 -20 20c0 38 51 128 82 160c69 72 114 72 179 72'], + 0x23DF: [70,358,1911,56,1855,'284 -106h450c75 -2 161 -56 222 -194c49 118 133 192 220 194h425c59 0 143 0 213 166c4 10 9 10 21 10c19 0 20 -2 20 -20c0 -34 -49 -124 -82 -160c-69 -70 -114 -70 -179 -70h-416c-7 0 -9 0 -26 -4c-109 -18 -162 -134 -177 -166c-3 -8 -8 -8 -20 -8 c-10 0 -16 0 -19 6c-18 40 -73 160 -197 170c-8 2 -65 2 -98 2h-312c-83 0 -120 0 -189 68c-36 36 -84 130 -84 162c0 18 1 20 20 20c10 0 16 0 20 -8c18 -42 72 -168 188 -168'], + 0x27E8: [939,237,501,95,392,'139 351l253 -572l-37 -16l-260 588l260 588l37 -16'], + 0x27E9: [939,237,568,79,375,'115 939l260 -588l-260 -588l-36 16l252 572l-252 572'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size2/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size3/Regular/Main.js new file mode 100644 index 0000000..0e1be23 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size3/Regular/Main.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'NeoEulerMathJax_Size3', + id: 'NEOEULERSIZE3', + 0x20: [0,0,333,0,0,''], + 0x28: [2199,199,734,208,714,'208 1000c0 445 116 900 455 1199h51l-17 -17c-320 -310 -406 -767 -406 -1182s86 -872 406 -1182l17 -17h-51c-340 300 -455 755 -455 1199'], + 0x29: [2199,199,734,20,526,'526 1000c0 -445 -116 -900 -455 -1199h-51l17 17c320 310 406 767 406 1182s-86 872 -406 1182l-17 17h51c340 -300 455 -755 455 -1199'], + 0x2F: [2199,200,1044,54,992,'941 2197l12 2l34 -5l5 -11l-889 -2383l-46 8l-3 14'], + 0x5B: [2274,125,527,250,513,'250 -125v2399h263v-55h-208v-2289h208v-55h-263'], + 0x5C: [2199,200,1044,54,992,'105 2197l-12 2l-34 -5l-5 -11l889 -2383l46 8l3 14'], + 0x5D: [2274,125,527,14,277,'222 -70v2289h-208v55h263v-2399h-263v55h208'], + 0x7B: [2199,200,750,131,618,'335 110v594c0 29 -10 174 -188 270c-15 8 -16 9 -16 26c0 13 1 14 3 16s3 3 20 13c91 49 170 137 180 256c1 12 1 62 1 93v462c0 61 0 73 2 88c18 129 123 216 224 262c20 9 22 9 35 9c22 0 22 -1 22 -22c0 -11 0 -14 -3 -17c-1 -1 -2 -2 -19 -10 c-23 -12 -82 -45 -123 -96c-59 -75 -59 -131 -59 -184v-576c0 -66 -40 -204 -227 -295c78 -35 127 -82 160 -122c67 -83 67 -159 67 -207v-576c0 -75 56 -184 184 -245c15 -8 16 -9 18 -10c2 -2 2 -4 2 -17c0 -22 -1 -22 -22 -22c-12 0 -14 0 -31 8 c-75 32 -230 125 -230 302'], + 0x7C: [2498,208,213,86,126,'126 -200l-40 -8v2698l40 8v-2698'], + 0x7D: [2199,200,750,131,618,'335 129v576c0 66 40 204 227 295c-78 35 -127 82 -160 122c-67 83 -67 159 -67 207v576c0 47 -28 169 -185 245c-18 10 -19 11 -19 27c0 21 1 22 22 22c12 0 14 0 31 -8c75 -32 230 -125 230 -302v-594c0 -27 9 -176 195 -273c8 -5 9 -6 9 -23c0 -15 0 -17 -8 -21 c-114 -59 -196 -155 -196 -291v-528c0 -61 0 -73 -2 -88c-18 -129 -123 -216 -224 -262c-20 -9 -22 -9 -35 -9c-21 0 -22 2 -22 22c0 16 1 17 22 27c24 12 82 45 123 96c59 75 59 131 59 184'], + 0xA0: [0,0,333,0,0,''], + 0x2016: [2498,208,403,86,316,'316 -200l-40 -8v2698l40 8v-2698zM126 -200l-40 -8v2698l40 8v-2698'], + 0x2044: [2199,200,1044,54,992,'941 2197l12 2l34 -5l5 -11l-889 -2383l-46 8l-3 14'], + 0x2215: [2199,200,1044,54,992,'941 2197l12 2l34 -5l5 -11l-889 -2383l-46 8l-3 14'], + 0x221A: [2402,1,1000,111,1025,'986 2402l39 -9l-565 -2394h-36l-231 1073l-68 -107c-1 1 -14 12 -14 16c0 1 0 3 7 12l131 206l216 -1002h1'], + 0x2223: [2498,208,213,86,126,'126 -200l-40 -8v2698l40 8v-2698'], + 0x2225: [1897,208,403,86,316,'316 -200l-40 -8v2097l40 8v-2097zM126 -200l-40 -8v2097l40 8v-2097'], + 0x2308: [2199,200,583,250,568,'250 -200v2399h318v-55h-263v-2344h-55'], + 0x2309: [2199,200,583,14,332,'277 -200v2344h-263v55h318v-2399h-55'], + 0x230A: [2199,200,583,250,568,'250 -200v2399h55v-2344h263v-55h-318'], + 0x230B: [2199,200,583,14,332,'277 -145v2344h55v-2399h-318v55h263'], + 0x2329: [2134,232,757,123,648,'181 951l467 -1163l-50 -20l-475 1183l475 1183l50 -20'], + 0x232A: [2134,232,818,100,625,'150 2134l475 -1183l-475 -1183l-50 20l467 1163l-467 1163'], + 0x23DC: [800,-308,2511,56,2455,'66 308c-10 0 -10 8 -10 22s0 16 12 28c36 40 77 78 100 98c299 254 695 344 1088 344c421 0 879 -104 1184 -440c15 -14 15 -16 15 -30s0 -22 -10 -22c-3 0 -5 0 -8 4c-44 44 -126 126 -268 204c-298 166 -645 202 -914 202c-385 0 -710 -74 -968 -234 c-108 -68 -175 -134 -212 -172c-3 -2 -5 -4 -9 -4'], + 0x23DD: [248,244,2511,56,2455,'1255 -244c-421 0 -879 106 -1184 440c-15 16 -15 18 -15 32c0 12 0 20 10 20c3 0 6 -2 9 -4c42 -42 125 -124 267 -204c298 -164 645 -200 914 -200c385 0 710 72 968 234c108 66 175 134 211 168c2 2 6 6 10 6c10 0 10 -8 10 -20c0 -14 0 -16 -12 -28 c-36 -42 -77 -80 -100 -100c-299 -254 -695 -344 -1088 -344'], + 0x23DE: [944,-457,2511,56,2455,'366 740h594c29 0 174 10 270 188c8 15 9 16 26 16c13 0 14 -1 16 -3s3 -3 13 -20c49 -91 137 -170 256 -180c12 -1 62 -1 93 -1h462c61 0 73 0 88 -2c129 -18 216 -123 262 -224c9 -20 9 -22 9 -35c0 -22 -1 -22 -22 -22c-11 0 -14 0 -17 3c-1 1 -2 2 -10 19 c-12 23 -45 82 -96 123c-75 59 -131 59 -184 59h-576c-66 0 -204 40 -295 227c-35 -78 -82 -127 -122 -160c-83 -67 -159 -67 -207 -67h-576c-75 0 -184 -56 -245 -184c-8 -15 -9 -16 -10 -18c-2 -2 -4 -2 -17 -2c-22 0 -22 1 -22 22c0 12 0 14 8 31c32 75 125 230 302 230'], + 0x23DF: [97,390,2511,56,2455,'385 -107h576c66 0 204 -40 295 -227c35 78 82 127 122 160c83 67 159 67 207 67h576c47 0 169 28 245 185c10 18 11 19 27 19c21 0 22 -1 22 -22c0 -12 0 -14 -8 -31c-32 -75 -125 -230 -302 -230h-594c-27 0 -176 -9 -273 -195c-5 -8 -6 -9 -23 -9c-15 0 -17 0 -21 8 c-59 114 -155 196 -291 196h-528c-61 0 -73 0 -88 2c-129 18 -216 123 -262 224c-9 20 -9 22 -9 35c0 21 2 22 22 22c16 0 17 -1 27 -22c12 -24 45 -82 96 -123c75 -59 131 -59 184 -59'], + 0x27E8: [1536,234,629,109,520,'160 651l360 -867l-43 -18l-368 885l368 885l43 -18'], + 0x27E9: [1536,234,693,89,500,'133 1536l367 -885l-367 -885l-44 18l360 867l-360 867'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size3/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size4/Regular/Main.js new file mode 100644 index 0000000..211dcf0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size4/Regular/Main.js @@ -0,0 +1,55 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'NeoEulerMathJax_Size4', + id: 'NEOEULERSIZE4', + 0x20: [0,0,333,0,0,''], + 0x28: [2799,199,790,236,768,'236 1300c0 553 105 1106 481 1499h51l-13 -16c-344 -402 -422 -950 -422 -1483s78 -1081 422 -1483l13 -16h-51c-376 393 -481 946 -481 1499'], + 0x29: [2799,199,790,22,554,'554 1300c0 -553 -105 -1106 -481 -1499h-51l13 16c344 402 422 950 422 1483s-78 1081 -422 1483l-13 16h51c376 -393 481 -946 481 -1499'], + 0x2F: [2799,200,1277,50,1228,'1168 2797l12 2l43 -5l5 -11l-1120 -2983l-55 8l-3 14'], + 0x5B: [2874,125,583,275,571,'275 -125v2999h296v-62h-234v-2875h234v-62h-296'], + 0x5C: [2799,200,1277,50,1228,'110 2797l-12 2l-43 -5l-5 -11l1120 -2983l55 8l3 14'], + 0x5D: [2874,125,583,11,307,'245 -63v2875h-234v62h296v-2999h-296v62h234'], + 0x7B: [2799,200,806,144,661,'361 164v689c0 92 0 117 -13 166c-43 162 -156 232 -196 257c-7 5 -8 6 -8 24c0 17 1 18 13 26c48 30 99 69 144 142c60 99 60 180 60 256v711c0 74 43 248 240 353c19 11 21 11 37 11c22 0 23 -1 23 -23c0 -16 0 -19 -6 -22c-65 -38 -142 -91 -189 -212 c-21 -56 -21 -97 -21 -182v-616c0 -74 0 -81 -2 -101c-14 -141 -104 -266 -242 -344c93 -49 195 -144 232 -284c12 -47 12 -75 12 -157v-616c0 -66 0 -80 2 -96c12 -133 92 -234 203 -298c10 -6 11 -7 11 -25c0 -22 -1 -23 -23 -23c-15 0 -17 0 -30 8 c-210 110 -247 289 -247 356'], + 0x7C: [3098,208,213,86,126,'126 -200l-40 -8v3298l40 8v-3298'], + 0x7D: [2799,200,806,144,661,'361 239v693c0 71 39 254 243 368c-167 88 -243 254 -243 367v690c0 66 0 80 -2 96c-13 139 -97 237 -207 300c-8 4 -8 8 -8 23c0 22 1 23 24 23c14 0 16 0 30 -8c220 -116 247 -303 247 -356v-768c0 -9 0 -83 48 -178c49 -98 132 -149 160 -166c7 -5 8 -6 8 -24 c0 -16 0 -18 -8 -23c-50 -31 -96 -65 -143 -136c-65 -100 -65 -191 -65 -265v-711c0 -45 -20 -215 -211 -336c-45 -28 -52 -28 -66 -28c-23 0 -24 1 -24 23c0 18 1 19 13 26c141 81 180 192 193 241c11 45 11 59 11 149'], + 0xA0: [0,0,333,0,0,''], + 0x2016: [3098,208,403,86,316,'316 -200l-40 -8v3298l40 8v-3298zM126 -200l-40 -8v3298l40 8v-3298'], + 0x2044: [2799,200,1277,50,1228,'1168 2797l12 2l43 -5l5 -11l-1120 -2983l-55 8l-3 14'], + 0x2215: [2799,200,1277,50,1228,'1168 2797l12 2l43 -5l5 -11l-1120 -2983l-55 8l-3 14'], + 0x221A: [3002,1,1000,111,1023,'249 1499l216 -1255h1l518 2758l39 -8l-562 -2995h-37l-231 1343l-68 -132c-1 1 -14 12 -14 16c0 1 1 3 6 13'], + 0x2223: [3098,208,213,86,126,'126 -200l-40 -8v3298l40 8v-3298'], + 0x2225: [2498,208,403,86,316,'316 -200l-40 -8v2698l40 8v-2698zM126 -200l-40 -8v2698l40 8v-2698'], + 0x2308: [2799,200,638,275,627,'275 -200v2999h352v-62h-290v-2937h-62'], + 0x2309: [2799,200,638,11,363,'301 -200v2937h-290v62h352v-2999h-62'], + 0x230A: [2799,200,638,275,627,'275 -200v2999h62v-2937h290v-62h-352'], + 0x230B: [2799,200,638,11,363,'301 -138v2937h62v-2999h-352v62h290'], + 0x2329: [2730,228,803,137,694,'202 1251l492 -1459l-59 -20l-498 1479l498 1479l59 -20'], + 0x232A: [2730,228,859,109,666,'168 2730l498 -1479l-498 -1479l-59 20l492 1459l-492 1459'], + 0x23DC: [814,-293,3111,56,3055,'66 293c-10 0 -10 7 -10 22c0 17 1 18 9 27c104 99 241 194 393 265c342 160 724 207 1098 207c163 0 327 -8 488 -32c298 -45 592 -133 838 -307c110 -78 170 -140 171 -141c2 -2 2 -4 2 -19s0 -22 -10 -22c-4 0 -6 2 -9 4c-108 89 -226 165 -353 223 c-328 148 -702 197 -1128 197c-430 0 -788 -52 -1094 -183c-139 -59 -267 -139 -383 -235c-7 -6 -9 -6 -12 -6'], + 0x23DD: [264,257,3111,56,3055,'1555 -257c-163 0 -327 8 -488 32c-298 45 -592 133 -838 307c-110 78 -170 140 -171 141c-2 2 -2 4 -2 19c0 14 0 22 10 22c3 0 7 -3 9 -4c108 -89 226 -165 353 -223c328 -148 702 -197 1128 -197c430 0 788 52 1094 183c139 59 267 139 383 235c3 2 8 6 12 6 c10 0 10 -8 10 -22c0 -17 -1 -18 -9 -27c-104 -99 -241 -194 -393 -265c-342 -160 -724 -207 -1098 -207'], + 0x23DE: [962,-445,3111,56,3055,'420 745h689c92 0 117 0 166 13c162 43 232 156 257 196c5 7 6 8 24 8c17 0 18 -1 26 -13c30 -48 69 -99 142 -144c99 -60 180 -60 256 -60h711c74 0 248 -43 353 -240c11 -19 11 -21 11 -37c0 -22 -1 -23 -23 -23c-16 0 -19 0 -22 6c-38 65 -91 142 -212 189 c-56 21 -97 21 -182 21h-616c-74 0 -81 0 -101 2c-141 14 -266 104 -344 242c-49 -93 -144 -195 -284 -232c-47 -12 -75 -12 -157 -12h-616c-66 0 -80 0 -96 -2c-133 -12 -234 -92 -298 -203c-6 -10 -7 -11 -25 -11c-22 0 -23 1 -23 23c0 15 0 17 8 30 c110 210 289 247 356 247'], + 0x23DF: [110,407,3111,56,3055,'495 -107h693c71 0 254 -39 368 -243c88 167 254 243 367 243h690c66 0 80 0 96 2c139 13 237 97 300 207c4 8 8 8 23 8c22 0 23 -1 23 -24c0 -14 0 -16 -8 -30c-116 -220 -303 -247 -356 -247h-768c-9 0 -83 0 -178 -48c-98 -49 -149 -132 -166 -160c-5 -7 -6 -8 -24 -8 c-16 0 -18 0 -23 8c-31 50 -65 96 -136 143c-100 65 -191 65 -265 65h-711c-45 0 -215 20 -336 211c-28 45 -28 52 -28 66c0 23 1 24 23 24c18 0 19 -1 26 -13c81 -141 192 -180 241 -193c45 -11 59 -11 149 -11'], + 0x27E8: [2134,232,757,123,648,'181 951l467 -1163l-50 -20l-475 1183l475 1183l50 -20'], + 0x27E9: [2134,232,818,100,625,'150 2134l475 -1183l-475 -1183l-50 20l467 1163l-467 1163'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size4/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size5/Regular/Main.js new file mode 100644 index 0000000..23d69a6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Size5/Regular/Main.js @@ -0,0 +1,54 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'NeoEulerMathJax_Size5', + id: 'NEOEULERSIZE5', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x2225: [3098,208,403,86,316,'316 -200l-40 -8v3298l40 8v-3298zM126 -200l-40 -8v3298l40 8v-3298'], + 0x27E8: [2730,228,803,137,694,'202 1251l492 -1459l-59 -20l-498 1479l498 1479l59 -20'], + 0x27E9: [2730,228,859,109,666,'168 2730l498 -1479l-498 -1479l-59 20l492 1459l-492 1459'], + 0xE000: [3098,208,213,86,126,'126 -200l-40 -8v3298l40 8v-3298'], + 0xE001: [138,167,213,86,126,'126 -159l-40 -8v297l40 8v-297'], + 0xE002: [3098,208,403,86,316,'316 -200l-40 -8v3298l40 8v-3298zM126 -200l-40 -8v3298l40 8v-3298'], + 0xE003: [138,167,403,86,316,'316 -159l-40 -8v297l40 8v-297zM126 -159l-40 -8v297l40 8v-297'], + 0xE004: [635,-595,150,0,150,'0 635h150v-40h-150v40'], + 0xE005: [-65,105,150,0,150,'0 -65h150v-40h-150v40'], + 0xE006: [1820,0,1055,111,742,'702 1820h40v-1820h-40l-493 1495l-83 -162l-15 16l139 273l451 -1367h1v1565'], + 0xE007: [572,-2,1055,702,742,'702 2v570h40v-570h-40'], + 0xE008: [583,2,1055,702,1076,'702 583h374v-40h-334v-545h-40v585'], + 0xE009: [827,-276,1799,0,1809,'1759 827h39c11 -1 11 -7 11 -28v-55c0 -22 0 -28 -14 -28c-677 -1 -1277 -79 -1763 -427c-18 -13 -20 -13 -22 -13c-10 0 -10 8 -10 23c0 16 1 17 2 19c2 4 7 8 25 23c206 167 440 278 662 346c101 31 459 140 1070 140'], + 0xE00A: [828,-718,600,-10,610,'17 828h566c26 0 27 0 27 -28v-54c0 -28 -1 -28 -27 -28h-566c-26 0 -27 0 -27 28v54c0 28 1 28 27 28'], + 0xE00B: [828,-277,1799,-10,1799,'1 828h39c237 0 445 -21 476 -24c364 -37 667 -120 931 -252c201 -101 347 -228 350 -232c2 -2 2 -4 2 -20c0 -15 0 -23 -10 -23c-2 0 -4 0 -13 7c-307 219 -665 352 -1182 406c-249 26 -487 27 -590 27c-14 0 -14 6 -14 28v55c0 21 0 27 11 28'], + 0xE00C: [280,271,1799,0,1809,'1809 -188v-55c0 -21 0 -27 -11 -28h-39c-237 0 -445 21 -476 24c-364 37 -667 120 -931 252c-201 101 -347 228 -350 232c-2 2 -2 4 -2 20s0 23 10 23c2 0 4 0 13 -7c489 -350 1071 -431 1772 -433c14 0 14 -6 14 -28'], + 0xE00D: [-160,271,600,-10,610,'17 -160h566c26 0 27 -1 27 -28v-55c0 -27 -1 -28 -27 -28h-566c-26 0 -27 1 -27 28v55c0 27 1 28 27 28'], + 0xE00E: [281,270,1799,-10,1799,'-10 -242v55c0 22 0 28 14 28c754 1 1310 101 1772 434c9 6 11 6 13 6c10 0 10 -7 10 -23s-1 -17 -2 -19c-2 -4 -7 -8 -25 -23c-206 -167 -440 -278 -662 -346c-101 -31 -459 -140 -1070 -140h-39c-11 1 -11 7 -11 28'], + 0xE00F: [758,-436,450,-24,460,'460 729v-39c0 -20 0 -29 -12 -29c-80 -1 -166 -14 -252 -58c-103 -54 -147 -121 -172 -159c-5 -8 -7 -8 -24 -8s-23 0 -24 10v32c104 177 277 280 478 280c6 -6 6 -8 6 -29'], + 0xE010: [758,-660,300,-10,310,'304 660h-308c-6 6 -6 8 -6 30v38c0 28 1 30 27 30h266c26 0 27 -2 27 -30v-38c0 -22 0 -24 -6 -30'], + 0xE011: [983,-661,1800,-10,1810,'447 661h-451c-6 6 -6 8 -6 29v39c0 28 1 29 27 29h423c56 0 148 9 250 57c109 53 165 132 188 163c3 4 4 5 22 5s19 -1 27 -11c122 -175 320 -214 433 -214h423c26 0 27 -1 27 -29v-39c0 -21 0 -23 -6 -29h-451c-72 0 -298 21 -453 264c-160 -250 -394 -264 -453 -264'], + 0xE012: [758,-436,450,-10,474,'474 478v-34c-2 -8 -7 -8 -24 -8c-15 0 -19 0 -23 7c-29 43 -73 111 -181 164c-105 51 -205 53 -242 54c-14 0 -14 6 -14 29v39c0 21 0 23 6 29c212 0 380 -112 478 -280'], + 0xE013: [120,202,450,-24,460,'460 -134v-39c0 -27 0 -29 -21 -29c-72 0 -314 26 -463 280v34c2 8 7 8 24 8c15 0 19 0 23 -7c29 -43 67 -101 161 -153c78 -42 165 -62 252 -64c24 -1 24 -2 24 -30'], + 0xE014: [-106,202,300,-10,310,'304 -202h-308c-6 6 -6 7 -6 28v40c0 28 1 28 27 28h266c26 0 27 0 27 -28v-40c0 -21 0 -22 -6 -28'], + 0xE015: [-106,428,1800,-10,1810,'425 -202h-429c-6 6 -6 8 -6 28v40c0 28 1 28 27 28h422c171 0 354 -90 461 -264c106 174 288 264 461 264h422c26 0 27 0 27 -28v-40c0 -20 0 -22 -6 -28h-429c-114 0 -207 -26 -287 -70c-96 -54 -140 -116 -166 -152c-3 -4 -4 -4 -22 -4s-19 0 -22 4 c-27 38 -72 100 -170 154c-88 48 -184 68 -283 68'], + 0xE016: [120,202,450,-10,474,'474 110v-32c-147 -250 -384 -280 -463 -280c-21 0 -21 2 -21 29v39c0 23 1 24 6 28c3 1 23 2 35 2c10 0 115 3 228 60c99 51 144 121 167 156c5 8 7 8 24 8s23 0 24 -10'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size5/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Symbols/Regular/Main.js new file mode 100644 index 0000000..a0a2730 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Symbols/Regular/Main.js @@ -0,0 +1,52 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'NeoEulerMathJax_Symbols', + id: 'NEOEULERSYMBOLS', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x2320: [915,0,444,180,452,'180 0c0 117 1 235 2 352c2 177 9 272 10 286c13 169 48 277 135 277c70 0 125 -37 125 -90c0 -23 -12 -41 -37 -41c-18 0 -44 13 -44 41c0 20 6 25 11 29c-11 16 -34 30 -54 30c-47 0 -58 -151 -61 -195c-2 -27 -8 -113 -8 -318c0 -29 0 -132 2 -154v-61 c1 -52 3 -104 3 -156h-84'], + 0x2321: [925,0,444,-23,265,'265 925c0 -186 -1 -464 -11 -624c-13 -209 -61 -301 -151 -301c-69 0 -126 35 -126 91c0 15 7 40 37 40c19 0 44 -14 44 -41c0 -19 -6 -25 -11 -29c9 -13 31 -30 55 -30c61 0 72 157 76 206c2 25 8 105 8 306c0 21 0 56 -1 63v60c-2 86 -4 172 -4 259h84'], + 0x2329: [737,237,388,107,330,'150 250l180 -473l-37 -14l-186 487l186 487l37 -14'], + 0x232A: [737,237,388,57,280,'94 737l186 -487l-186 -487l-37 14l180 473l-180 473'], + 0x239B: [1808,0,883,292,851,'292 10c0 652 93 1306 507 1798h52l-11 -15c-372 -505 -438 -1153 -438 -1783v-10h-110v10'], + 0x239C: [620,0,875,292,403,'403 593v-566c0 -26 -1 -27 -28 -27h-55c-27 0 -28 1 -28 27v566c0 26 1 27 28 27h55c27 0 28 -1 28 -27'], + 0x239D: [1808,0,883,292,851,'799 0c-414 491 -507 1146 -507 1798v10h110v-10c0 -630 66 -1278 438 -1783l11 -15h-52'], + 0x239E: [1808,0,873,22,581,'74 1808c414 -491 507 -1146 507 -1798v-10h-110v10c0 630 -66 1278 -438 1783l-11 15h52'], + 0x239F: [620,0,875,472,583,'583 593v-566c0 -26 -1 -27 -28 -27h-55c-27 0 -28 1 -28 27v566c0 26 1 27 28 27h55c27 0 28 -1 28 -27'], + 0x23A0: [1808,0,873,22,581,'581 1798c0 -652 -93 -1306 -507 -1798h-52l11 15c372 505 438 1153 438 1783v10h110v-10'], + 0x23A1: [1799,0,666,326,659,'326 0v1799h333v-69h-264v-1730h-69'], + 0x23A2: [602,0,666,326,395,'326 0v602h69v-602h-69'], + 0x23A3: [1800,-1,666,326,659,'326 1v1799h69v-1730h264v-69h-333'], + 0x23A4: [1799,0,666,7,340,'271 0v1730h-264v69h333v-1799h-69'], + 0x23A5: [602,0,666,271,340,'271 0v602h69v-602h-69'], + 0x23A6: [1800,-1,666,7,340,'271 70v1730h69v-1799h-333v69h264'], + 0x23A7: [909,0,889,395,718,'492 443v-437c-6 -6 -8 -6 -29 -6h-39c-28 0 -29 1 -29 27v430c0 159 84 343 281 452h34c8 -2 8 -7 8 -24c0 -19 -1 -20 -6 -23c-154 -99 -220 -253 -220 -419'], + 0x23A8: [1820,0,889,170,492,'492 457v-451c-6 -6 -8 -6 -29 -6h-39c-28 0 -29 1 -29 27v423c0 56 -9 148 -57 250c-53 109 -132 165 -163 188c-4 3 -5 4 -5 22s1 19 11 27c175 122 214 320 214 433v423c0 26 1 27 29 27h39c21 0 23 0 29 -6v-451c0 -72 -21 -298 -264 -453 c250 -160 264 -394 264 -453'], + 0x23A9: [909,0,889,395,718,'708 0h-32c-194 108 -281 289 -281 452v430c0 26 1 27 29 27h39c21 0 23 0 29 -6v-437c0 -215 110 -347 211 -413c14 -10 15 -11 15 -29c0 -17 0 -23 -10 -24'], + 0x23AA: [320,0,889,395,492,'492 314v-308c-6 -6 -8 -6 -29 -6h-39c-28 0 -29 1 -29 27v266c0 26 1 27 29 27h39c21 0 23 0 29 -6'], + 0x23AB: [909,0,889,170,492,'492 465v-459c-6 -6 -8 -6 -29 -6h-39c-28 0 -29 1 -29 27v430c0 118 -47 292 -214 401c-10 8 -11 9 -11 27c0 15 0 23 10 24h32c212 -118 280 -315 280 -444'], + 0x23AC: [1820,0,889,395,718,'492 435v-429c-6 -6 -8 -6 -29 -6h-39c-28 0 -29 1 -29 27v422c0 171 90 354 265 461c-174 106 -265 288 -265 461v422c0 26 1 27 29 27h39c21 0 23 0 29 -6v-429c0 -114 26 -207 70 -287c53 -96 115 -140 151 -166c4 -3 5 -4 5 -22s-1 -19 -5 -22 c-37 -27 -100 -72 -153 -170c-49 -88 -68 -184 -68 -283'], + 0x23AD: [909,0,889,170,492,'395 452v430c0 26 1 27 29 27h39c21 0 23 0 29 -6v-459c0 -127 -66 -325 -280 -444c-11 0 -31 0 -33 1c-9 2 -9 8 -9 23c0 19 1 20 6 23c188 121 219 311 219 405'], + 0x23AE: [381,0,444,181,265,'182 0l-1 381h83l1 -381h-83'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Symbols/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Variants/Regular/Main.js new file mode 100644 index 0000000..91d2668 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/Variants/Regular/Main.js @@ -0,0 +1,45 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['NeoEulerMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'NeoEulerMathJax_Variants', + id: 'NEOEULERVARIANTS', + 0x20: [0,0,333,0,0,''], + 0xA0: [0,0,333,0,0,''], + 0x2032: [559,-41,329,48,299,'290 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16l132 433c5 16 17 47 55 47c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32'], + 0x2033: [559,-41,640,48,610,'290 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16l132 433c5 16 17 47 55 47c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32zM601 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16l132 433c5 16 17 47 55 47 c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32'], + 0x2034: [559,-41,950,48,920,'290 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16l132 433c5 16 17 47 55 47c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32zM601 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16l132 433c5 16 17 47 55 47 c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32zM911 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16l132 433c5 16 17 47 55 47c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32'], + 0x2035: [559,-41,329,48,299,'57 472l188 -414c7 -15 8 -17 15 -17c8 0 39 10 39 22c0 1 -4 14 -5 16l-132 433c-5 16 -17 47 -55 47c-31 0 -59 -24 -59 -55c0 -7 1 -15 9 -32'], + 0x2036: [559,-41,640,48,610,'368 472l188 -414c7 -15 8 -17 15 -17c8 0 39 10 39 22c0 1 -4 14 -5 16l-132 433c-5 16 -17 47 -55 47c-31 0 -59 -24 -59 -55c0 -7 1 -15 9 -32zM57 472l188 -414c7 -15 8 -17 15 -17c8 0 39 10 39 22c0 1 -4 14 -5 16l-132 433c-5 16 -17 47 -55 47 c-31 0 -59 -24 -59 -55c0 -7 1 -15 9 -32'], + 0x2037: [559,-41,950,48,919,'677 472l188 -414c7 -15 8 -17 15 -17c8 0 39 10 39 22c0 1 -4 14 -5 16l-132 433c-5 16 -17 47 -55 47c-31 0 -59 -24 -59 -55c0 -7 1 -15 9 -32zM367 472l188 -414c7 -15 8 -17 15 -17c8 0 39 10 39 22c0 1 -4 14 -5 16l-132 433c-5 16 -17 47 -55 47 c-31 0 -59 -24 -59 -55c0 -7 1 -15 9 -32zM57 472l188 -414c7 -15 8 -17 15 -17c8 0 39 10 39 22c0 1 -4 14 -5 16l-132 433c-5 16 -17 47 -55 47c-31 0 -59 -24 -59 -55c0 -7 1 -15 9 -32'], + 0x2057: [559,-41,1260,48,1230,'290 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16l132 433c5 16 17 47 55 47c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32zM601 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16l132 433c5 16 17 47 55 47 c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32zM911 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16l132 433c5 16 17 47 55 47c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32zM1221 472l-188 -414c-7 -15 -8 -17 -15 -17c-8 0 -39 10 -39 22c0 1 4 14 5 16 l132 433c5 16 17 47 55 47c31 0 59 -24 59 -55c0 -7 -1 -15 -9 -32'], + 0xE200: [493,13,501,41,456,'261 493c45 -13 87 -38 120 -72c44 -43 75 -99 75 -161c0 -75 -36 -143 -88 -195c-43 -42 -95 -78 -155 -78c-42 0 -83 16 -112 46c-43 43 -60 104 -60 165c0 73 34 141 85 193c40 40 85 75 135 102zM195 418c-23 -14 -35 -31 -44 -45c-23 -34 -32 -81 -32 -124 c0 -57 16 -114 57 -154c23 -23 59 -42 92 -42c29 0 44 2 64 16c38 27 49 99 49 143c0 55 -20 109 -59 148c-28 28 -86 55 -127 58'], + 0xE201: [469,1,501,46,460,'299 469l10 -8c-10 -77 -12 -154 -12 -232c0 -54 1 -108 3 -162c0 -6 1 -12 5 -16c3 -4 7 -8 12 -8c48 0 95 1 143 3l-1 -47c-69 4 -138 7 -207 7c-68 0 -136 -2 -206 -7v45c48 -1 96 -1 144 -1c6 0 12 1 16 6c3 2 4 12 4 19c2 18 2 128 2 192c0 44 0 102 -7 131 c-4 16 -17 25 -32 30c-16 5 -46 9 -69 12l-1 27c66 0 131 2 196 9'], + 0xE202: [474,-1,501,59,485,'475 73l10 -6l-25 -66h-399l-2 16c1 0 67 62 100 94c41 38 80 79 111 125c20 30 39 61 39 97c0 23 -11 44 -27 60c-15 14 -35 22 -56 22c-29 0 -76 -27 -112 -48l-10 18c29 25 61 49 95 66c26 13 54 23 83 23c28 0 55 -12 74 -32c19 -19 29 -44 29 -70 c0 -17 -6 -34 -13 -51c-10 -23 -24 -45 -38 -66c-45 -64 -99 -121 -154 -177c-2 -2 -4 -4 -4 -5c0 -8 10 -8 16 -8c95 3 282 8 283 8'], + 0xE203: [474,182,501,38,430,'246 210l3 -7c45 0 101 -12 134 -45c31 -31 47 -73 47 -116c0 -56 -23 -110 -63 -149c-49 -50 -117 -75 -186 -75c-51 0 -99 16 -143 41l16 27c36 -19 74 -35 115 -35c42 0 84 10 113 39c37 37 56 87 56 139c0 39 -10 78 -38 106c-17 17 -41 24 -64 29 c-36 7 -72 8 -108 6v34c29 2 58 6 86 16c21 8 42 18 58 34c19 20 34 44 34 72c0 26 -9 52 -28 71c-18 18 -43 25 -69 25c-12 0 -24 -4 -36 -9c-16 -8 -31 -18 -45 -28l-16 11c23 22 47 44 76 59c24 11 50 19 77 19c32 0 65 -7 88 -30c21 -20 32 -47 32 -76 c0 -37 -15 -72 -41 -98c-25 -25 -65 -46 -98 -60'], + 0xE204: [476,192,501,10,482,'380 476l5 -3c-2 -83 -4 -167 -4 -251c0 -61 1 -121 3 -182c33 1 65 2 98 5l-8 -46h-87c0 -53 0 -127 2 -161l-78 -30l-12 9c6 61 7 121 7 182h-295l-1 23l289 429zM83 41h223c0 108 0 246 -7 324h-12c-81 -101 -149 -210 -208 -324h4'], + 0xE205: [458,184,501,47,441,'421 458l-24 -80h-259c-7 0 -17 -3 -17 -12v-176l9 -5c40 19 84 30 129 30c48 0 97 -12 132 -47c33 -33 50 -79 50 -126c0 -56 -21 -111 -61 -151c-58 -59 -142 -75 -224 -75c-37 0 -74 10 -109 25l12 25c31 -12 64 -20 97 -20c45 0 91 11 123 43c35 35 56 83 56 134 c0 41 -10 83 -39 112c-24 24 -57 34 -90 34c-42 0 -79 -24 -107 -55l-18 11v333h340'], + 0xE206: [700,13,501,45,471,'460 691l-9 -57l-7 -5c-19 8 -40 12 -60 12c-61 0 -115 -32 -160 -73c-71 -67 -94 -166 -95 -262l7 -1c53 43 116 72 185 72c38 0 76 -16 103 -43c32 -33 47 -78 47 -123c0 -60 -30 -113 -72 -155c-43 -43 -101 -69 -163 -69c-45 0 -89 15 -121 47 c-53 53 -70 130 -70 204c0 125 45 249 134 338c35 37 75 69 120 92c36 19 76 32 117 32c15 0 30 -4 44 -9zM132 275c3 -42 10 -96 22 -136c9 -29 22 -58 43 -79c18 -17 50 -34 75 -34c32 0 45 1 73 18c35 21 47 87 47 128c0 40 -17 79 -46 107c-23 24 -75 39 -100 39 c-53 0 -78 -16 -114 -43'], + 0xE207: [468,181,501,37,498,'297 458h201v-16c-79 -112 -155 -225 -227 -341c-57 -92 -111 -185 -158 -282h-73l-3 13c127 177 243 361 359 545c-1 0 -4 3 -6 5h-332l32 86c69 -8 138 -10 207 -10'], + 0xE208: [706,10,501,40,461,'220 344c-27 -14 -48 -35 -65 -58c-21 -31 -32 -72 -32 -109c0 -41 14 -82 43 -112c21 -20 60 -44 89 -44c33 0 54 10 71 19c26 17 49 63 49 128c0 41 -22 77 -51 106c-25 25 -74 50 -104 70zM300 394c38 -27 97 -69 115 -87c29 -29 46 -68 46 -110 c0 -48 -16 -97 -52 -130c-52 -48 -106 -77 -190 -77c-48 0 -97 11 -132 46c-32 32 -47 76 -47 121c0 42 12 85 43 115c35 36 78 63 122 88c-33 22 -63 49 -86 81c-17 27 -30 57 -30 89c0 40 14 81 45 108c35 31 77 51 120 68c30 -2 60 -6 88 -15c21 -7 41 -16 57 -32 c24 -24 36 -57 36 -91s-15 -66 -35 -93c-26 -34 -64 -61 -100 -81zM283 410c42 28 66 81 66 134c0 28 -7 57 -27 78c-26 26 -63 47 -86 55c-20 -7 -52 -30 -62 -54c-8 -18 -10 -40 -10 -60c0 -26 13 -50 29 -71c21 -30 60 -62 90 -82'], + 0xE209: [470,182,501,27,468,'359 102l-6 4c-38 -31 -90 -72 -149 -72c-43 3 -86 13 -116 44c-42 41 -61 98 -61 156c0 52 13 106 51 143c35 36 101 67 156 93c33 -2 66 -6 97 -16c25 -9 48 -20 66 -38c25 -25 41 -57 52 -90c13 -41 19 -83 19 -126c0 -105 -40 -207 -115 -282 c-73 -73 -178 -100 -281 -100v28c75 0 153 19 207 73c46 46 70 121 80 183zM339 125c21 21 30 50 30 79c0 63 -14 135 -60 181c-25 25 -70 45 -101 49c-15 -7 -33 -16 -47 -34c-31 -37 -45 -89 -45 -136c0 -51 17 -102 54 -139c20 -20 47 -31 76 -31c34 0 69 7 93 31'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Variants/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/fontdata-extra.js new file mode 100644 index 0000000..4541c53 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/fontdata-extra.js @@ -0,0 +1,177 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/fontdata-extra.js + * + * Adds extra stretchy characters to the Neo-Euler fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG) { + var VERSION = "2.3"; + + var DELIMITERS = SVG.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETS = "NeoEulerMathJax_Alphabets", + ARROWS = "NeoEulerMathJax_Arrows", + FRAKTUR = "NeoEulerMathJax_Fraktur", + MAIN = "NeoEulerMathJax_Main", + MARKS = "NeoEulerMathJax_Marks", + NONUNICODE = "NeoEulerMathJax_NonUnicode", + NORMAL = "NeoEulerMathJax_Normal", + OPERATORS = "NeoEulerMathJax_Operators", + SCRIPT = "NeoEulerMathJax_Script", + SHAPES = "NeoEulerMathJax_Shapes", + SIZE1 = "NeoEulerMathJax_Size1", + SIZE2 = "NeoEulerMathJax_Size2", + SIZE3 = "NeoEulerMathJax_Size3", + SIZE4 = "NeoEulerMathJax_Size4", + SIZE5 = "NeoEulerMathJax_Size5", + SYMBOLS = "NeoEulerMathJax_Symbols", + VARIANTS = "NeoEulerMathJax_Variants", + DOUBLESTRUCK = "NeoEulerMathJax_Normal", + SANSSERIF = "NeoEulerMathJax_Normal", + MONOSPACE = "NeoEulerMathJax_Normal"; + + var delim = { + 0x2044: + { + dir: V, + HW: [[912,MAIN], [1199,SIZE1], [1799,SIZE2], [2399,SIZE3], [2999,SIZE4]] + }, + 0x20E1: + { + dir: H, + HW: [[449,MARKS]], + stretch: {left:[0x20D6,MARKS], rep:[0xE004,SIZE5], right:[0x20D7,MAIN]} + }, + 0x20EE: + { + dir: H, + HW: [[418,MARKS]], + stretch: {left:[0x20EE,MARKS], rep:[0xE005,SIZE5]} + }, + 0x20EF: + { + dir: H, + HW: [[418,MARKS]], + stretch: {rep:[0xE005,SIZE5], right:[0x20EF,MARKS]} + }, + 0x220F: + { + dir: V, + HW: [[1000,OPERATORS], [1400,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[1000,OPERATORS], [1400,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[1000,OPERATORS], [1400,SIZE1]] + }, + 0x2227: + { + dir: V, + HW: [[718,MAIN], [998,SIZE1], [1395,SIZE2]] + }, + 0x2228: + { + dir: V, + HW: [[700,MAIN], [998,SIZE1], [1395,SIZE2]] + }, + 0x2229: + { + dir: V, + HW: [[600,MAIN], [965,SIZE1], [1358,SIZE2]] + }, + 0x222A: + { + dir: V, + HW: [[600,MAIN], [965,SIZE1], [1358,SIZE2]] + }, + 0x222B: + { + dir: V, + HW: [[1111,MAIN], [2222,SIZE1]] + }, + 0x222C: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x222D: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x222E: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + }, + 0x228E: + { + dir: V, + HW: [[600,MAIN], [965,SIZE1], [1358,SIZE2]] + }, + 0x22C0: + { + dir: V, + HW: [[718,OPERATORS], [998,SIZE1], [1395,SIZE2]] + }, + 0x22C1: + { + dir: V, + HW: [[700,OPERATORS], [998,SIZE1], [1395,SIZE2]] + }, + 0x22C2: + { + dir: V, + HW: [[600,OPERATORS], [965,SIZE1], [1358,SIZE2]] + }, + 0x22C3: + { + dir: V, + HW: [[600,OPERATORS], [965,SIZE1], [1358,SIZE2]] + }, + 0x23DC: + { + dir: H, + HW: [[925,MAIN], [1199,SIZE1], [1799,SIZE2], [2399,SIZE3], [2999,SIZE4]], + stretch: {left:[0xE009,SIZE5], rep:[0xE00A,SIZE5], right:[0xE00B,SIZE5]} + }, + 0x23DD: + { + dir: H, + HW: [[925,MAIN], [1199,SIZE1], [1799,SIZE2], [2399,SIZE3], [2999,SIZE4]], + stretch: {left:[0xE00C,SIZE5], rep:[0xE00D,SIZE5], right:[0xE00E,SIZE5]} + }, + 0x2A0C: + { + dir: V, + HW: [[1111,OPERATORS], [2222,SIZE1]] + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(SVG.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["SVG"]); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/fontdata.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/fontdata.js new file mode 100644 index 0000000..1aa7dfc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/Neo-Euler/fontdata.js @@ -0,0 +1,494 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/Neo-Euler/fontdata.js + * + * Initializes the SVG OutputJax to use the Neo-Euler fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG,MML,AJAX,HUB) { + + var VERSION = "2.3"; + + var ALPHABETS = "NeoEulerMathJax_Alphabets", + ARROWS = "NeoEulerMathJax_Arrows", + FRAKTUR = "NeoEulerMathJax_Fraktur", + MAIN = "NeoEulerMathJax_Main", + MARKS = "NeoEulerMathJax_Marks", + NONUNICODE = "NeoEulerMathJax_NonUnicode", + NORMAL = "NeoEulerMathJax_Normal", + OPERATORS = "NeoEulerMathJax_Operators", + SCRIPT = "NeoEulerMathJax_Script", + SHAPES = "NeoEulerMathJax_Shapes", + SIZE1 = "NeoEulerMathJax_Size1", + SIZE2 = "NeoEulerMathJax_Size2", + SIZE3 = "NeoEulerMathJax_Size3", + SIZE4 = "NeoEulerMathJax_Size4", + SIZE5 = "NeoEulerMathJax_Size5", + SYMBOLS = "NeoEulerMathJax_Symbols", + VARIANTS = "NeoEulerMathJax_Variants", + DOUBLESTRUCK = "NeoEulerMathJax_Normal", + SANSSERIF = "NeoEulerMathJax_Normal", + MONOSPACE = "NeoEulerMathJax_Normal"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + SVG.Augment({ + FONTDATA: { + version: VERSION, + + + baselineskip: 1200, + lineH: 800, lineD: 200, + + FONTS: { + "NeoEulerMathJax_Alphabets": "Alphabets/Regular/Main.js", + "NeoEulerMathJax_Arrows": "Arrows/Regular/Main.js", + "NeoEulerMathJax_Fraktur": "Fraktur/Regular/Main.js", + "NeoEulerMathJax_Main": "Main/Regular/Main.js", + "NeoEulerMathJax_Marks": "Marks/Regular/Main.js", + "NeoEulerMathJax_NonUnicode": "NonUnicode/Regular/Main.js", + "NeoEulerMathJax_Normal": "Normal/Regular/Main.js", + "NeoEulerMathJax_Operators": "Operators/Regular/Main.js", + "NeoEulerMathJax_Script": "Script/Regular/Main.js", + "NeoEulerMathJax_Shapes": "Shapes/Regular/Main.js", + "NeoEulerMathJax_Size1": "Size1/Regular/Main.js", + "NeoEulerMathJax_Size2": "Size2/Regular/Main.js", + "NeoEulerMathJax_Size3": "Size3/Regular/Main.js", + "NeoEulerMathJax_Size4": "Size4/Regular/Main.js", + "NeoEulerMathJax_Size5": "Size5/Regular/Main.js", + "NeoEulerMathJax_Symbols": "Symbols/Regular/Main.js", + "NeoEulerMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1]}, + "bold": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], bold:true +, offsetA: 0x1D400, offsetG: 0x1D6A8, offsetN: 0x1D7CE}, + "italic": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], italic:true}, + "bolditalic": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], bold: true, italic:true}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTUR], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPT], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPT], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2 + }, + "bold-sans-serif": { + fonts: [SANSSERIF], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIF], italic: true, + offsetA: 0x1D608 + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIF], bold:true, italic: true, + offsetA: 0x1D63C, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-Neo-Euler-variant": {fonts: [VARIANTS,MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,NONUNICODE,SIZE1]}, + "-tex-caligraphic": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], italic: true}, + "-tex-oldstyle": {offsetN: 0xE200, fonts: [VARIANTS,MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,NONUNICODE,SIZE1]}, + "-tex-caligraphic-bold": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAIN,NORMAL,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,VARIANTS,NONUNICODE,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x00AF, + + REMAP: { + 0x20F0: 0x002A, + 0x2022: 0x2219, + 0x22E3: "\u2292\u0338", + 0x22E2: "\u2291\u0338", + 0x3008: 0x27E8, + 0x02C9: 0x00AF, + 0x2017: 0x005F, + 0x20EC: 0x21C1, + 0x20ED: 0x21BD, + 0x2A2F: 0x00D7, + 0x20D0: 0x21BC, + 0x20D1: 0x21C0, + 0x03D2: 0x03A5, + 0x2014: 0x00AF, + 0x2015: 0x00AF, + 0x3009: 0x27E9, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF, + 0x02B9: 0x2032, + 0x2758: 0x2223, + 0x203E: 0x00AF + }, + + REMAPACCENT: { + "\u007E": "\u0303", + "\u2192": "\u20D7", + "\u0060": "\u0300", + "\u005E": "\u0302", + "\u00B4": "\u0301", + "\u2032": "\u0301", + "\u2035": "\u0300" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[925,MAIN], [1198,SIZE1], [1798,SIZE2], [1961,SIZE2,1.091], [2398,SIZE3], [2998,SIZE4]], + stretch: {bot:[0x239D,SYMBOLS], ext:[0x239C,SYMBOLS], top:[0x239B,SYMBOLS]} + }, + 0x29: + { + dir: V, + HW: [[925,MAIN], [1198,SIZE1], [1798,SIZE2], [1961,SIZE2,1.091], [2398,SIZE3], [2998,SIZE4]], + stretch: {bot:[0x23A0,SYMBOLS], ext:[0x239F,SYMBOLS], top:[0x239E,SYMBOLS]} + }, + 0x2D: {alias: 0xAF, dir: H}, + 0x2F: + { + dir: V, + HW: [[912,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]] + }, + 0x3D: + { + dir: H, + HW: [[668,MAIN]], + stretch: {rep:[0x3D,MAIN]} + }, + 0x5B: + { + dir: V, + HW: [[866,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x5C: + { + dir: V, + HW: [[914,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]] + }, + 0x5D: + { + dir: V, + HW: [[866,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x5F: {alias: 0xAF, dir: H}, + 0x7B: + { + dir: V, + HW: [[908,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]], + stretch: {bot:[0x23A9,SYMBOLS], ext:[0x23AA,SYMBOLS], mid:[0x23A8,SYMBOLS], top:[0x23A7,SYMBOLS]} + }, + 0x7C: + { + dir: V, + HW: [[905,MAIN], [1505,SIZE1], [2105,SIZE2], [2706,SIZE3], [3306,SIZE4]], + stretch: {bot:[0xE000,SIZE5], ext:[0xE001,SIZE5]} + }, + 0x7D: + { + dir: V, + HW: [[908,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]], + stretch: {bot:[0x23AD,SYMBOLS], ext:[0x23AA,SYMBOLS], mid:[0x23AC,SYMBOLS], top:[0x23AB,SYMBOLS]} + }, + 0xAF: + { + dir: H, + HW: [[312,MAIN]], + stretch: {rep:[0xAF,MAIN]} + }, + 0xC9: {alias: 0xAF, dir: H}, + 0x332: {alias: 0xAF, dir: H}, + 0x2015: {alias: 0xAF, dir: H}, + 0x2016: + { + dir: V, + HW: [[905,MAIN], [1505,SIZE1], [2105,SIZE2], [2706,SIZE3], [3306,SIZE4]], + stretch: {bot:[0xE002,SIZE5], ext:[0xE003,SIZE5]} + }, + 0x2017: {alias: 0xAF, dir: H}, + 0x203E: {alias: 0xAF, dir: H}, + 0x2044: EXTRAV, + 0x20D6: + { + dir: H, + HW: [[418,MARKS]], + stretch: {left:[0x20D6,MARKS], rep:[0xE004,SIZE5]} + }, + 0x20D7: + { + dir: H, + HW: [[418,MAIN]], + stretch: {rep:[0xE004,SIZE5], right:[0x20D7,MAIN]} + }, + 0x20E1: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2190: {alias: 0x20D6, dir: H}, + 0x2191: + { + dir: V, + HW: [[887,MAIN]], + stretch: {top:[0x2191,MAIN], ext:[0x7C,MAIN]} + }, + 0x2192: {alias: 0x20D7, dir: H}, + 0x2193: + { + dir: V, + HW: [[867,MAIN]], + stretch: {ext:[0x7C,MAIN], bot:[0x2193,MAIN]} + }, + 0x2194: {alias: 0x20E1, dir: H}, + 0x2195: + { + dir: V, + HW: [[1042,MAIN]], + stretch: {top:[0x2191,MAIN], ext:[0x7C,MAIN], bot:[0x2193,MAIN]} + }, + 0x21D0: + { + dir: H, + HW: [[867,MAIN], [1567,SIZE1]] + }, + 0x21D1: + { + dir: H, + HW: [[640,MAIN]], + stretch: {top:[0x21D1,MAIN], ext:[0x2016,MAIN]} + }, + 0x21D2: + { + dir: H, + HW: [[867,MAIN], [1567,SIZE1]] + }, + 0x21D3: + { + dir: H, + HW: [[640,MAIN]], + stretch: {ext:[0x2016,MAIN], bot:[0x21D3,MAIN]} + }, + 0x21D4: + { + dir: H, + HW: [[867,MAIN,null,0x21D0], [1632,SIZE1]] + }, + 0x21D5: + { + dir: H, + HW: [[640,MAIN]], + stretch: {top:[0x21D1,MAIN], ext:[0x2016,MAIN], bot:[0x21D3,MAIN]} + }, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: {alias: 0xAF, dir: H}, + 0x2215: + { + dir: V, + HW: [[912,MAIN], [1199,SIZE1], [1799,SIZE2], [2399,SIZE3], [2999,SIZE4]] + }, + 0x221A: + { + dir: V, + HW: [[989,MAIN], [1209,SIZE1], [1801,SIZE2], [2403,SIZE3], [3003,SIZE4]], + stretch: {bot:[0xE006,SIZE5], ext:[0xE007,SIZE5], top:[0xE008,SIZE5]} + }, + 0x2223: + { + dir: V, + HW: [[795,MAIN], [1505,SIZE1], [2105,SIZE2], [2706,SIZE3], [3306,SIZE4]] + }, + 0x2225: + { + dir: V, + HW: [[905,MAIN], [905,SIZE1], [1505,SIZE2], [2105,SIZE3], [2706,SIZE4], [3306,SIZE5]], + stretch: {bot:[0xE002,SIZE5], ext:[0xE003,SIZE5]} + }, + 0x2227: EXTRAV, + 0x2228: EXTRAV, + 0x2229: EXTRAV, + 0x222A: EXTRAV, + 0x222B: EXTRAV, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x228E: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[980,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]], + stretch: {ext:[0x23A2,SYMBOLS], top:[0x23A1,SYMBOLS]} + }, + 0x2309: + { + dir: V, + HW: [[980,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]], + stretch: {ext:[0x23A5,SYMBOLS], top:[0x23A4,SYMBOLS]} + }, + 0x230A: + { + dir: V, + HW: [[980,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]], + stretch: {bot:[0x23A3,SYMBOLS], ext:[0x23A2,SYMBOLS]} + }, + 0x230B: + { + dir: V, + HW: [[980,MAIN], [1199,SIZE1], [1799,SIZE2], [1961,SIZE2,1.090], [2399,SIZE3], [2999,SIZE4]], + stretch: {bot:[0x23A6,SYMBOLS], ext:[0x23A5,SYMBOLS]} + }, + 0x2329: + { + dir: V, + HW: [[974,SYMBOLS], [1176,SIZE1], [1770,SIZE2], [2366,SIZE3], [2958,SIZE4]] + }, + 0x232A: + { + dir: V, + HW: [[974,SYMBOLS], [1176,SIZE1], [1770,SIZE2], [2366,SIZE3], [2958,SIZE4]] + }, + 0x23AA: + { + dir: V, + HW: [[320,SYMBOLS]], + stretch: {ext:[0x23AA,SYMBOLS]} + }, + 0x23AF: {alias: 0xAF, dir: H}, + 0x23B0: + { + dir: V, + HW: [[909,SYMBOLS,null,0x23A7]], + stretch: {top:[0x23A7,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23AD,SYMBOLS]} + }, + 0x23B1: + { + dir: V, + HW: [[909,SYMBOLS,null,0x23AB]], + stretch: {top:[0x23AB,SYMBOLS], ext:[0x23AA,SYMBOLS], bot:[0x23A9,SYMBOLS]} + }, + 0x23D0: + { + dir: V, + HW: [[905,MAIN,null,0x7C], [1150,MAIN,1.271,0x7C], [1556,MAIN,1.719,0x7C], [1961,MAIN,2.167,0x7C], [2367,MAIN,2.615,0x7C]], + stretch: {ext:[0x7C,MAIN]} + }, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[908,MAIN], [1199,SIZE1], [1799,SIZE2], [2399,SIZE3], [2999,SIZE4]], + stretch: {left:[0xE00F,SIZE5], rep:[0xE010,SIZE5], mid:[0xE011,SIZE5], right:[0xE012,SIZE5]} + }, + 0x23DF: + { + dir: H, + HW: [[908,MAIN], [1199,SIZE1], [1799,SIZE2], [2399,SIZE3], [2999,SIZE4]], + stretch: {left:[0xE013,SIZE5], rep:[0xE014,SIZE5], mid:[0xE015,SIZE5], right:[0xE016,SIZE5]} + }, + 0x2500: {alias: 0xAF, dir: H}, + 0x2758: {alias: 0x23D0, dir: V}, + 0x27E8: + { + dir: V, + HW: [[974,MAIN], [974,SIZE1], [1176,SIZE2], [1770,SIZE3], [2366,SIZE4], [2958,SIZE5]] + }, + 0x27E9: + { + dir: V, + HW: [[974,MAIN], [974,SIZE1], [1176,SIZE2], [1770,SIZE3], [2366,SIZE4], [2958,SIZE5]] + }, + 0x27EE: {alias: 0x28, dir: V}, + 0x27EF: {alias: 0x29, dir: V}, + 0x27F5: {alias: 0x20D6, dir: H}, + 0x27F6: {alias: 0x20D7, dir: H}, + 0x27F7: {alias: 0x20E1, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x20D6, dir: H}, + 0x27FC: {alias: 0x20D7, dir: H}, + 0x27FD: {alias: 0x21D0, dir: H}, + 0x27FE: {alias: 0x21D2, dir: H}, + 0x2A0C: EXTRAV, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(SVG.fontDir+"/Size5/Regular/Main.js",function () { + var u; + u = SVG.FONTDATA.DELIMITERS[0x23DE].stretch.rep[0]; + SVG.FONTDATA.FONTS[SIZE5][u][0] += 200; // adjust height for brace extender + SVG.FONTDATA.FONTS[SIZE5][u][1] += 200; // adjust depth for brace extender + u = SVG.FONTDATA.DELIMITERS[0x23DF].stretch.rep[0]; + SVG.FONTDATA.FONTS[SIZE5][u][0] += 200; // adjust height for brace extender + SVG.FONTDATA.FONTS[SIZE5][u][1] += 200; // adjust depth for brace extender + }); + AJAX.loadComplete(SVG.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax.SVG,MathJax.ElementJax.mml,MathJax.Ajax,MathJax.Hub); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/Bold/Main.js new file mode 100644 index 0000000..9cc9754 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/Bold/Main.js @@ -0,0 +1,202 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Alphabets-bold'] = { + directory: 'Alphabets/Bold', + family: 'STIXMathJax_Alphabets', + weight: 'bold', + id: 'STIXWEBALPHABETSB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x384: [692,-528,300,118,263,'118 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48'], + 0x385: [692,-528,390,-2,392,'392 591c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM118 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM127 591c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64 c34 0 64 -30 64 -66'], + 0x386: [700,0,722,9,689,'118 536l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522 c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0x387: [472,-303,333,82,251,'251 387c0 -47 -38 -84 -85 -84s-84 37 -84 85c0 47 37 84 85 84c46 0 84 -38 84 -85'], + 0x388: [700,0,800,10,791,'791 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54 c34 28 52 58 82 123h28zM10 536l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48'], + 0x389: [700,0,920,10,904,'904 0h-339v25c73 8 89 22 89 73v228h-241v-228c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-204h241v204c0 56 -19 69 -89 74v25h339v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25z M10 536l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48'], + 0x38A: [700,0,530,10,516,'10 536l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM516 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x38C: [700,19,778,10,743,'743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314zM10 536l61 136c10 23 27 28 47 28 c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48'], + 0x38E: [700,0,860,10,846,'846 670v-25c-11 3 -24 5 -31 5c-94 0 -189 -62 -228 -349v-178c0 -78 13 -91 92 -98v-25h-347v25c83 7 93 28 93 103v136c0 217 -68 362 -192 362c-19 0 -38 -3 -59 -10l-14 24c27 25 81 52 124 52c149 0 245 -61 263 -298h5c8 42 16 71 28 103c48 132 128 185 212 185 c18 0 41 -4 54 -12zM10 536l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48'], + 0x38F: [700,0,780,10,761,'761 0h-302l7 181c88 21 116 121 116 232c0 126 -63 246 -181 246c-115 0 -173 -120 -173 -244c0 -112 28 -213 116 -234l7 -181h-302v197h25c10 -66 28 -77 71 -77h153l-2 29c-128 19 -235 127 -235 261c0 162 151 282 349 282c197 0 339 -120 339 -285 c0 -133 -114 -229 -235 -258l-2 -29h148c45 0 66 12 76 77h25v-197zM10 536l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48'], + 0x390: [692,14,390,-2,392,'392 591c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM118 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM127 591c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64 c34 0 64 -30 64 -66zM318 101l23 -12c-21 -52 -73 -103 -143 -103c-65 0 -92 45 -92 91v299c0 45 -14 56 -54 61v24h193v-349c0 -24 2 -56 24 -56c20 0 36 22 49 45'], + 0x3AA: [915,0,389,20,370,'365 849c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM155 849c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25 c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x3AB: [915,0,703,7,693,'520 849c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM310 849c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM693 670v-25c-11 3 -24 5 -31 5c-94 0 -189 -62 -228 -349v-178c0 -78 13 -91 92 -98 v-25h-347v25c83 7 93 28 93 103v136c0 217 -68 362 -192 362c-19 0 -38 -3 -59 -10l-14 24c27 25 81 52 124 52c149 0 245 -61 263 -298h5c8 42 16 71 28 103c48 132 128 185 212 185c18 0 41 -4 54 -12'], + 0x3AC: [692,14,644,25,618,'249 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM618 461l-129 -270c0 -5 6 -26 9 -35c25 -76 38 -78 52 -78c21 0 39 26 42 76h25c-1 -77 -30 -166 -105 -166c-46 0 -81 26 -105 77c-47 -60 -97 -79 -166 -79 c-124 0 -216 98 -216 240c0 147 95 247 230 247c104 0 156 -67 179 -121h1l29 109h154zM361 198c-3 64 -35 244 -103 244c-69 0 -86 -60 -86 -209c0 -160 22 -216 80 -216c53 0 98 109 109 181'], + 0x3AD: [692,14,444,28,429,'155 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM412 109l17 -18c-46 -70 -110 -105 -203 -105c-100 0 -198 24 -198 132c0 52 29 92 88 123v1c-44 16 -70 56 -70 88c0 70 66 143 203 143c77 0 164 -29 164 -106 c0 -30 -20 -58 -61 -58c-28 0 -57 15 -57 54c0 15 8 31 8 42c0 21 -19 37 -65 37s-79 -46 -79 -100c0 -50 29 -85 74 -85c11 0 24 11 54 11c27 0 39 -13 39 -25c0 -14 -13 -30 -44 -30c-11 0 -27 4 -44 9c-39 0 -86 -32 -86 -87c0 -68 49 -95 109 -95c58 0 124 26 151 69'], + 0x3AE: [692,205,585,12,545,'205 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM545 -205h-138c-21 40 -22 76 -22 152v372c0 59 -17 87 -50 87c-25 0 -49 -12 -71 -34c-11 -11 -17 -20 -17 -24v-348h-139v346c0 24 -2 56 -24 56c-20 0 -36 -24 -49 -48 l-23 11c21 54 70 108 136 108c43 0 98 -17 98 -87h1c35 60 82 87 143 87c82 0 134 -55 134 -145v-380c0 -75 3 -113 21 -153'], + 0x3AF: [692,14,326,15,304,'87 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM281 101l23 -12c-21 -52 -73 -103 -143 -103c-65 0 -92 45 -92 91v299c0 45 -14 56 -54 61v24h193v-349c0 -24 2 -56 24 -56c20 0 36 22 49 45'], + 0x3B0: [692,14,576,12,551,'479 591c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM205 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM214 591c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64 c34 0 64 -30 64 -66zM281 449v24c166 0 270 -86 270 -244c0 -142 -92 -243 -226 -243s-217 50 -217 187v182c0 23 -5 47 -24 47c-20 0 -36 -24 -49 -48l-23 11c21 54 70 108 136 108c43 0 99 -19 99 -92v-156c0 -120 7 -208 78 -208c72 0 79 94 79 209 c0 103 -33 216 -123 223'], + 0x3CA: [666,14,335,-2,337,'337 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM127 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM309 101l23 -12c-21 -52 -73 -103 -143 -103c-65 0 -92 45 -92 91v299 c0 45 -14 56 -54 61v24h193v-349c0 -24 2 -56 24 -56c20 0 36 22 49 45'], + 0x3CB: [666,14,576,12,551,'452 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM242 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM281 449v24c166 0 270 -86 270 -244c0 -142 -92 -243 -226 -243s-217 50 -217 187v182 c0 23 -5 47 -24 47c-20 0 -36 -24 -49 -48l-23 11c21 54 70 108 136 108c43 0 99 -19 99 -92v-156c0 -120 7 -208 78 -208c72 0 79 94 79 209c0 103 -33 216 -123 223'], + 0x3CC: [692,14,500,25,476,'179 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224 c0 -145 21 -201 79 -201s78 52 78 201'], + 0x3CD: [692,14,576,12,551,'209 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM281 449v24c166 0 270 -86 270 -244c0 -142 -92 -243 -226 -243s-217 50 -217 187v182c0 23 -5 47 -24 47c-20 0 -36 -24 -49 -48l-23 11c21 54 70 108 136 108 c43 0 99 -19 99 -92v-156c0 -120 7 -208 78 -208c72 0 79 94 79 209c0 103 -33 216 -123 223'], + 0x3CE: [692,14,733,26,708,'296 528l61 136c10 23 27 28 47 28c24 0 37 -18 37 -44c0 -13 -15 -32 -34 -53l-63 -67h-48zM419 473h29c190 0 260 -113 260 -246c0 -162 -116 -241 -211 -241c-61 0 -106 23 -132 60c-31 -37 -75 -60 -130 -60c-95 0 -209 81 -209 244c0 119 75 243 251 243h34v-25 c-133 0 -138 -108 -138 -224c0 -66 0 -207 75 -207c31 0 72 35 77 95c-21 47 -32 79 -32 132c0 61 22 114 75 114c55 0 69 -65 69 -111c0 -50 -15 -98 -32 -136c6 -62 42 -94 77 -94c68 0 79 128 79 207c0 116 -9 224 -142 224v25'], + 0x401: [916,0,667,16,641,'237 916c34 0 64 -30 64 -66c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64zM446 916c35 0 65 -30 65 -66c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64zM591 676l2 -191h-29c-23 134 -70 157 -233 157c-52 0 -65 -16 -65 -54v-225 c106 1 151 33 163 149h25v-338h-25c-10 119 -54 155 -163 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 81 123h29l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h575'], + 0x402: [676,97,856,40,809,'401 340v-340h-259v25c86 7 97 18 97 92v527c-124 -4 -153 -33 -170 -149h-29l2 181h566l2 -181h-29c-17 116 -57 145 -180 149v-269c42 35 112 45 156 45c149 0 252 -93 252 -253c0 -126 -87 -264 -227 -264c-99 0 -151 52 -151 115c0 37 30 83 76 83 c38 0 66 -22 66 -62c0 -42 -26 -38 -26 -64c0 -20 11 -39 33 -39c57 0 57 119 57 205c0 96 -26 222 -132 222c-23 0 -74 0 -104 -23'], + 0x403: [963,0,632,20,600,'212 778l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM598 676l2 -192h-29c-4 120 -59 157 -193 157h-109v-543c0 -46 23 -68 89 -73v-25h-338v25c76 6 87 33 87 72v481c0 54 -18 69 -86 73v25h577'], + 0x404: [691,19,685,37,638,'215 376h289v-50h-290c1 -97 13 -156 52 -220c28 -46 77 -77 133 -77c42 0 82 12 121 34c30 18 57 43 99 89l19 -25c-89 -115 -156 -146 -265 -146c-194 0 -336 147 -336 342c0 212 145 368 333 368c45 0 93 -11 149 -35c21 -9 34 -14 44 -14c18 0 24 10 38 46h26l4 -235 h-29c-21 62 -33 88 -57 116c-45 53 -98 89 -163 89c-83 0 -167 -94 -167 -282'], + 0x405: [692,19,556,35,513,'484 474h-29c-18 65 -35 95 -69 130c-36 37 -78 56 -123 56c-69 0 -110 -42 -110 -99c0 -49 23 -72 103 -114c49 -26 97 -49 148 -77c64 -35 109 -100 109 -176c0 -126 -100 -213 -248 -213c-44 0 -81 7 -130 24c-22 7 -33 10 -41 10c-16 0 -24 -8 -30 -34h-29v248h29 c17 -71 31 -106 60 -143c38 -48 86 -72 144 -72c77 0 126 44 126 113c0 36 -23 64 -57 88s-79 44 -122 65c-113 54 -171 109 -171 210c0 127 83 201 219 201c39 0 71 -6 117 -23c21 -7 33 -10 42 -10c18 0 25 7 32 34h30v-218'], + 0x406: [676,0,389,20,370,'113 106v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25h-350v25c75 7 93 19 93 81'], + 0x407: [916,0,389,20,370,'89 916c34 0 64 -30 64 -66c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64zM298 916c35 0 65 -30 65 -66c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64zM113 106v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470 c0 -65 19 -76 95 -81v-25h-350v25c75 7 93 19 93 81'], + 0x408: [676,96,500,3,478,'390 556v-430c0 -151 -73 -222 -212 -222c-40 0 -83 6 -108 23c-37 25 -67 68 -67 110c0 37 34 74 71 74c38 0 72 -36 72 -76c0 -30 -27 -40 -27 -66c0 -20 17 -32 45 -32c46 0 64 28 64 90v550c0 58 -20 71 -101 74v25h351v-25c-75 -5 -88 -23 -88 -95'], + 0x409: [676,18,1005,10,958,'137 676h549v-25c-76 -3 -83 -36 -83 -76v-200h73c162 0 282 -52 282 -187c0 -107 -96 -188 -274 -188h-329v25c72 8 86 20 86 75v472c0 41 -8 54 -50 54h-78c-35 0 -43 -12 -43 -54v-303c0 -103 -10 -287 -150 -287c-69 0 -110 27 -110 93c0 51 45 72 76 72 c46 0 60 -32 72 -58c4 -10 9 -18 9 -18c50 0 53 134 53 226v298c0 34 -13 50 -83 56v25zM603 343v-245c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 155 -157 155h-26'], + 0x40A: [676,0,1054,21,1007,'490 103v223h-222v-228c0 -53 16 -65 79 -73v-25h-326v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h326v-25c-60 -5 -79 -18 -79 -74v-204h222v204c0 56 -19 69 -79 74v25h329v-25c-68 -5 -88 -20 -88 -74v-204h73c162 0 282 -50 282 -185c0 -107 -96 -188 -274 -188 h-322v25c63 8 79 22 79 78zM652 341v-243c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 153 -157 153h-26'], + 0x40B: [676,0,883,40,868,'557 0v25c63 8 73 22 73 73v43c0 96 -23 222 -129 222c-23 0 -70 0 -100 -23v-242c0 -53 11 -65 74 -73v-25h-333v25c86 7 97 18 97 92v527c-124 -4 -153 -33 -170 -149h-29l3 181h564l3 -181h-29c-17 116 -57 145 -180 149v-269c42 35 115 45 159 45 c149 0 230 -83 230 -243v-79c0 -53 15 -65 78 -73v-25h-311'], + 0x40C: [923,0,759,21,741,'283 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM358 676v-25c-74 -5 -88 -23 -88 -84v-198c38 0 58 8 82 21c62 33 88 99 115 168c29 75 66 126 156 126c60 0 97 -35 97 -80c0 -40 -27 -73 -68 -73c-67 0 -61 69 -87 69 c-34 0 -44 -29 -69 -98c-20 -56 -47 -99 -91 -132v-2c78 -12 139 -53 193 -165c24 -50 38 -110 86 -157c14 -14 32 -20 57 -21v-25h-243l-90 204c-35 79 -66 121 -138 121v-230c0 -49 15 -61 87 -70v-25h-336v25c74 7 87 19 87 76v472c0 62 -18 74 -87 78v25h337'], + 0x40E: [926,22,722,15,699,'199 869c0 44 35 57 57 57s44 -16 44 -41c0 -33 -19 -31 -19 -47c0 -22 28 -47 90 -47s89 25 89 47c0 16 -19 15 -19 48c0 25 24 40 47 40c22 0 54 -13 54 -57c0 -92 -102 -128 -171 -128c-67 0 -172 36 -172 128zM631 612l-239 -481c-27 -55 -52 -96 -81 -122 c-23 -20 -55 -31 -88 -31c-65 0 -113 29 -113 92c0 47 40 71 68 71c50 0 64 -34 77 -63c4 -9 16 -21 26 -21c9 0 30 16 81 120l-264 415c-25 40 -49 57 -83 59v25h335v-25l-27 -2c-40 -3 -54 -6 -54 -29c0 -9 7 -31 24 -59l140 -229h6l86 174c22 45 38 83 38 103 c0 29 -16 37 -84 42v25h220v-25c-34 -5 -56 -15 -68 -39'], + 0x40F: [676,176,770,21,753,'181 0h-160v25c76 3 83 36 83 76v475c0 42 -8 75 -83 75v25h312v-25c-53 0 -67 -27 -67 -77v-534h242v533c0 49 -15 78 -68 78v25h313v-25c-58 0 -83 -26 -83 -74v-478c0 -40 5 -68 83 -74v-25h-169c-117 0 -167 -60 -183 -176h-28c-17 119 -69 176 -192 176'], + 0x410: [690,0,722,9,689,'689 25v-25h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143zM189 236h195l-101 243'], + 0x411: [676,0,667,16,619,'554 676l2 -172h-29c-3 113 -59 140 -193 140h-25c-33 -3 -45 -13 -45 -49v-220h73c162 0 282 -52 282 -187c0 -107 -96 -188 -274 -188h-329v25c73 8 88 22 88 78v467c0 59 -20 76 -88 81v25h538zM264 343v-245c0 -48 19 -66 63 -66c78 0 120 55 120 156 c0 102 -51 155 -157 155h-26'], + 0x412: [676,0,667,16,619,'16 676h317c161 0 252 -48 252 -151c0 -76 -42 -126 -159 -150v-1c110 -14 193 -91 193 -186c0 -107 -96 -188 -274 -188h-329v25c73 8 88 22 88 78v467c0 59 -20 76 -88 81v25zM264 352v-254c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 164 -157 164h-26z M264 590v-206c125 0 156 36 156 134c0 88 -31 126 -99 126c-40 0 -57 -15 -57 -54'], + 0x413: [676,0,632,20,600,'598 676l2 -192h-29c-4 120 -59 157 -193 157h-109v-543c0 -46 23 -68 89 -73v-25h-338v25c76 6 87 33 87 72v481c0 54 -18 69 -86 73v25h577'], + 0x414: [676,176,715,24,691,'471 0h-244c-111 0 -160 -66 -175 -176h-28v202h20c108 0 143 185 143 548c0 40 -5 71 -75 77v25h579v-25c-76 -3 -83 -36 -83 -76v-479c0 -39 7 -65 83 -71v-201h-28c-17 119 -69 176 -192 176zM160 40h232c35 0 54 7 54 59v465c0 41 -8 62 -50 62h-116 c-35 0 -43 -20 -43 -62c0 -289 -27 -430 -77 -524'], + 0x415: [676,0,667,16,641,'591 676l2 -191h-29c-23 134 -70 157 -233 157c-52 0 -65 -16 -65 -54v-225c106 1 151 33 163 149h25v-338h-25c-10 119 -54 155 -163 155v-241c0 -43 18 -56 83 -56c78 0 135 14 182 53c34 28 52 58 81 123h29l-40 -208h-585v25c74 8 88 24 88 76v479 c0 51 -19 67 -88 71v25h575'], + 0x416: [684,0,1130,32,1091,'484 369v204c0 62 -18 74 -87 78v25h330v-25c-74 -5 -88 -23 -88 -84v-198h22c92 0 123 104 150 189c24 76 66 126 146 126c60 0 99 -33 99 -78c0 -40 -25 -75 -66 -75c-77 0 -56 69 -82 69c-58 0 -65 -201 -150 -240v-2c78 -12 140 -43 194 -155c24 -50 34 -110 82 -157 c14 -14 32 -20 57 -21v-25h-239l-90 204c-29 67 -57 121 -96 121h-27v-230c0 -49 15 -61 87 -70v-25h-329v25c74 7 87 19 87 76v224h-27c-39 0 -67 -54 -96 -121l-90 -204h-239v25c25 1 43 7 57 21c48 47 58 107 82 157c54 112 116 143 194 155v2c-85 39 -92 240 -150 240 c-26 0 -5 -69 -82 -69c-41 0 -66 35 -66 75c0 45 39 78 99 78c80 0 122 -51 146 -126c27 -85 58 -189 150 -189h22'], + 0x417: [691,19,570,22,531,'41 469l4 222h20c5 -22 21 -34 39 -34c17 0 44 10 65 16c38 11 69 18 106 18c84 0 141 -17 178 -46c39 -31 56 -74 56 -125c0 -64 -33 -102 -74 -128c-33 -21 -71 -32 -112 -36v-2c94 -5 208 -55 208 -168c0 -147 -126 -205 -269 -205c-118 0 -182 46 -240 130l22 21 c77 -72 113 -100 188 -100c80 0 128 61 128 153c0 113 -49 147 -170 147v40c68 0 81 8 107 29c30 24 47 64 47 107c0 71 -28 142 -109 142c-112 0 -153 -61 -165 -181h-29'], + 0x418: [676,0,778,21,759,'509 488l-241 -390c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-389l241 389c0 57 -19 69 -89 74v25h339v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25h-339v25c73 8 89 22 89 73v390'], + 0x419: [926,0,778,21,759,'217 869c0 44 35 57 57 57s44 -16 44 -41c0 -33 -19 -31 -19 -47c0 -22 28 -47 90 -47s89 25 89 47c0 16 -19 15 -19 48c0 25 24 40 47 40c22 0 54 -13 54 -57c0 -92 -102 -128 -171 -128c-67 0 -172 36 -172 128zM509 488l-241 -390c0 -53 16 -65 89 -73v-25h-336v25 c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-389l241 389c0 57 -19 69 -89 74v25h339v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25h-339v25c73 8 89 22 89 73v390'], + 0x41A: [684,0,759,21,741,'358 676v-25c-74 -5 -88 -23 -88 -84v-198c38 0 58 8 82 21c62 33 88 99 115 168c29 75 66 126 156 126c60 0 97 -35 97 -80c0 -40 -27 -73 -68 -73c-67 0 -61 69 -87 69c-34 0 -44 -29 -69 -98c-20 -56 -47 -99 -91 -132v-2c78 -12 139 -53 193 -165 c24 -50 38 -110 86 -157c14 -14 32 -20 57 -21v-25h-243l-90 204c-35 79 -66 121 -138 121v-230c0 -49 15 -61 87 -70v-25h-336v25c74 7 87 19 87 76v472c0 62 -18 74 -87 78v25h337'], + 0x41B: [676,18,738,10,719,'137 676h577v-25c-76 -3 -83 -36 -83 -76v-475c0 -54 16 -66 88 -75v-25h-339v25c73 8 89 22 89 74v473c0 41 -8 54 -50 54h-106c-35 0 -43 -12 -43 -54v-303c0 -103 -10 -287 -150 -287c-69 0 -110 27 -110 93c0 51 45 72 76 72c46 0 60 -32 72 -58c4 -10 9 -18 9 -18 c50 0 53 134 53 226v298c0 34 -13 50 -83 56v25'], + 0x41C: [676,0,944,14,921,'678 595l-252 -595h-27l-247 586v-457c0 -76 19 -98 101 -104v-25h-239v25c78 8 91 18 91 83v469c0 54 -16 68 -89 74v25h253l199 -472l201 472h252v-25c-73 -5 -88 -22 -88 -97v-428c0 -73 8 -94 88 -101v-25h-332v25c75 7 89 25 89 84v486'], + 0x41D: [676,0,778,21,759,'509 326h-241v-228c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-204h241v204c0 56 -19 69 -89 74v25h339v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25h-339v25c73 8 89 22 89 73v228'], + 0x41E: [691,19,778,35,743,'394 691c201 0 349 -149 349 -356c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357zM385 658c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314c0 213 -64 330 -181 330'], + 0x41F: [676,0,762,13,751,'412 0v25c73 8 89 22 89 73v476c0 41 -8 62 -49 62h-149c-35 0 -43 -21 -43 -62v-476c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h738v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25h-339'], + 0x420: [676,0,611,16,600,'262 303v-192c0 -67 8 -76 87 -86v-25h-333v25c19 2 34 4 45 9c33 13 39 41 39 92v427c0 78 -14 92 -84 98v25h315c167 0 269 -59 269 -181c0 -80 -46 -141 -129 -172c-43 -16 -77 -19 -209 -20zM262 609v-274c125 1 166 38 166 149s-33 160 -116 160 c-33 0 -50 -12 -50 -35'], + 0x421: [691,19,709,36,674,'644 152l30 -25c-93 -115 -173 -146 -288 -146c-215 0 -350 147 -350 342c0 212 143 368 347 368c48 0 98 -11 156 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-225h-29c-17 55 -38 78 -63 106c-49 55 -102 89 -167 89c-105 0 -184 -113 -184 -313 c0 -101 12 -174 54 -240c29 -46 88 -76 147 -76c44 0 86 12 126 34c32 18 60 43 104 89'], + 0x422: [676,0,667,31,636,'253 117v527c-124 -4 -176 -40 -193 -159h-29l2 191h601l2 -191h-29c-17 119 -69 155 -192 159v-527c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92'], + 0x423: [676,22,722,15,699,'631 612l-239 -481c-27 -55 -52 -96 -81 -122c-23 -20 -55 -31 -88 -31c-65 0 -113 29 -113 92c0 47 40 71 68 71c50 0 64 -34 77 -63c4 -9 16 -21 26 -21c9 0 30 16 81 120l-264 415c-25 40 -49 57 -83 59v25h335v-25l-27 -2c-40 -3 -54 -6 -54 -29c0 -9 7 -31 24 -59 l140 -229h6l86 174c22 45 38 83 38 103c0 29 -16 37 -84 42v25h220v-25c-34 -5 -56 -15 -68 -39'], + 0x424: [676,0,850,25,825,'505 596v-32c140 -5 320 -64 320 -226c0 -171 -207 -233 -320 -233v-24c0 -37 22 -48 95 -56v-25h-353v25c82 6 96 16 96 56v24c-148 0 -318 62 -318 233c0 162 179 221 318 226v34c0 39 -12 53 -95 53v25h352v-25c-80 0 -95 -22 -95 -55zM503 530v-390 c65 0 151 47 151 185c0 149 -67 205 -151 205zM345 140v390c-75 0 -149 -56 -149 -205c0 -140 71 -185 149 -185'], + 0x425: [676,0,722,16,699,'688 676v-25c-75 -7 -96 -28 -182 -145l-84 -115l180 -280c47 -73 63 -85 97 -86v-25h-340v25l28 2c35 2 52 11 52 28c0 12 -9 35 -21 54l-99 159l-38 -51c-75 -101 -92 -129 -92 -150c0 -26 16 -36 77 -42v-25h-250v25c50 6 75 18 104 56l173 227l-196 285 c-31 45 -44 55 -80 58v25h346v-25l-31 -2c-36 -2 -48 -10 -48 -31c0 -12 2 -17 15 -37l95 -147l56 76c45 61 60 82 60 104c0 24 -13 31 -51 35l-21 2v25h250'], + 0x426: [676,176,770,21,753,'533 0h-512v25c76 3 83 36 83 76v475c0 42 -8 75 -83 75v25h312v-25c-53 0 -67 -27 -67 -77v-534h242v533c0 49 -15 78 -68 78v25h313v-25c-58 0 -83 -26 -83 -74v-478c0 -40 5 -68 83 -74v-201h-29c-17 119 -68 176 -191 176'], + 0x427: [676,0,732,7,710,'460 98v197c-66 -30 -115 -37 -162 -37c-117 0 -206 19 -206 182v137c0 50 -20 68 -85 74v25h314v-25c-64 -7 -67 -18 -67 -74v-174c0 -71 22 -98 95 -98c52 0 91 18 111 28v244c0 56 -7 69 -67 74v25h317v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25h-339 v25c73 8 89 22 89 73'], + 0x428: [676,0,1020,21,1001,'756 72v501c0 49 -15 78 -68 78v25h313v-25c-58 0 -83 -26 -83 -74v-478c0 -40 5 -68 83 -74v-25h-980v25c75 7 83 19 83 81v470c0 56 -11 70 -83 75v25h310v-25c-65 -8 -65 -19 -65 -75v-503c0 -27 7 -33 35 -33h99c22 0 30 8 30 32v500c0 51 -8 77 -53 79v25h262v-25 c-30 -2 -47 -27 -47 -77v-501c0 -27 7 -33 35 -33h99c22 0 30 8 30 32'], + 0x429: [676,176,1020,21,1001,'756 72v501c0 49 -15 78 -68 78v25h313v-25c-58 0 -83 -26 -83 -74v-478c0 -40 5 -68 83 -74v-201h-29c-17 119 -68 176 -191 176h-760v25c75 7 83 19 83 81v470c0 56 -11 70 -83 75v25h310v-25c-65 -8 -65 -19 -65 -75v-503c0 -27 7 -33 35 -33h99c22 0 30 8 30 32v502 c0 50 -6 74 -53 77v25h262v-25c-30 -3 -47 -27 -47 -77v-501c0 -27 7 -33 35 -33h99c22 0 30 8 30 32'], + 0x42A: [676,0,805,41,757,'490 676v-25c-76 -3 -88 -24 -88 -81v-195h73c162 0 282 -52 282 -187c0 -107 -96 -188 -274 -188h-331v25c73 8 88 22 88 78v541c-129 0 -156 -63 -170 -159h-29l2 191h447zM402 343v-245c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 155 -157 155h-26'], + 0x42B: [676,0,1004,16,985,'728 106v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25h-350v25c75 7 93 19 93 81zM354 676v-25c-76 -3 -88 -21 -88 -81v-195h73c162 0 282 -52 282 -187c0 -107 -96 -188 -274 -188h-331v25c73 8 88 22 88 78v467 c0 59 -20 76 -88 81v25h338zM266 343v-245c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 155 -157 155h-26'], + 0x42C: [676,0,672,19,624,'357 676v-25c-76 -3 -88 -21 -88 -81v-195h73c162 0 282 -52 282 -187c0 -107 -96 -188 -274 -188h-331v25c73 8 88 22 88 78v467c0 59 -20 76 -88 81v25h338zM269 343v-245c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 155 -157 155h-26'], + 0x42D: [691,19,685,37,648,'181 376h289c0 188 -84 282 -167 282c-55 0 -102 -22 -140 -59c-36 -35 -63 -83 -80 -136h-29v225h26c14 -36 24 -46 42 -46c10 0 24 6 45 15c56 24 103 34 148 34c188 0 333 -156 333 -368c0 -195 -142 -342 -336 -342c-109 0 -186 31 -275 146l30 25 c42 -46 68 -71 98 -89c39 -22 79 -34 121 -34c56 0 105 31 133 77c39 64 51 123 52 220h-290v50'], + 0x42E: [691,19,955,21,920,'268 373h80c14 190 131 318 290 318c163 0 282 -150 282 -356c0 -208 -119 -354 -287 -354c-166 0 -283 142 -286 345h-79v-228c0 -53 0 -65 69 -73v-25h-316v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h316v-25c-65 -7 -69 -18 -69 -74v-204zM630 658 c-89 0 -121 -119 -121 -328c0 -211 33 -316 126 -316s123 108 123 314c0 212 -33 330 -128 330'], + 0x42F: [676,0,736,12,687,'114 111l150 207c-109 16 -182 65 -182 170c0 107 96 188 274 188h331v-25c-73 -8 -88 -22 -88 -78v-467c0 -59 20 -76 88 -81v-25h-338v25c76 3 88 21 88 81v205h-12l-231 -311h-182v32c65 17 79 48 102 79zM437 343v235c0 48 -19 66 -63 66c-78 0 -120 -55 -120 -156 c0 -102 51 -145 157 -145h26'], + 0x430: [473,14,517,42,505,'490 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60 c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM310 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0x431: [691,14,500,25,476,'441 691h25c-3 -37 -12 -112 -85 -141c-55 -22 -135 -8 -189 -27c-60 -22 -102 -68 -121 -157h1c60 94 132 107 182 107c126 0 222 -102 222 -244c0 -141 -97 -243 -226 -243c-136 0 -225 115 -225 271c0 147 37 385 263 385h98c33 0 47 11 55 49zM251 442 c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201c0 171 -19 224 -78 224'], + 0x432: [461,0,492,21,475,'21 461h240c122 0 188 -39 188 -109c0 -52 -31 -92 -114 -103v-2c84 -9 140 -56 140 -119c0 -73 -70 -128 -205 -128h-249v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24zM209 231v-156c0 -33 14 -45 48 -45c59 0 95 30 95 98c0 70 -43 103 -123 103h-20zM209 395v-135 c95 0 121 18 121 85c0 60 -26 87 -77 87c-31 0 -44 -11 -44 -37'], + 0x433: [461,0,451,21,434,'213 402v-317c0 -43 18 -56 53 -61v-24h-245v24c46 11 53 18 53 64v288c0 42 -9 55 -53 61v24h410l3 -173h-24c-18 82 -29 141 -173 141c-14 0 -24 -8 -24 -27'], + 0x434: [461,143,541,19,524,'19 24h26c89 0 97 161 97 351c0 44 -1 55 -45 62v24h427v-24c-43 -7 -53 -22 -53 -65v-285c0 -42 10 -54 53 -63v-167h-25c-28 124 -44 143 -97 143h-251c-53 0 -80 -19 -108 -143h-24v167zM182 393v-35c0 -204 -21 -282 -48 -324v-2h163c26 0 35 12 35 38v317 c0 29 -6 34 -34 34h-81c-35 0 -35 -2 -35 -28'], + 0x435: [473,14,444,25,427,'403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-255c6 -95 24 -187 122 -187c43 0 74 19 115 68zM164 277h134v26c0 52 0 73 -9 92c-14 30 -26 47 -55 47 c-46 0 -70 -45 -70 -165'], + 0x436: [467,0,762,14,748,'318 262v117c0 38 -14 55 -48 58v24h222v-23c-43 -6 -48 -19 -48 -62v-114c70 0 71 88 103 147c19 34 40 58 98 58c52 0 86 -38 86 -82c0 -31 -15 -59 -54 -59c-59 0 -40 74 -76 74c-45 0 -47 -129 -92 -148v-2c53 -5 94 -24 122 -67l92 -144c8 -13 14 -15 25 -15v-24 h-162l-121 214c-6 11 -10 13 -21 13v-143c0 -47 5 -53 52 -60v-24h-226v24c33 3 48 21 48 60v143c-12 0 -15 -2 -21 -13l-121 -214h-162v24c11 0 17 2 25 15l92 144c28 43 69 62 122 67v2c-45 19 -47 148 -92 148c-36 0 -17 -74 -76 -74c-39 0 -54 28 -54 59 c0 45 34 82 86 82c58 0 79 -24 98 -58c32 -59 33 -147 103 -147'], + 0x437: [473,17,446,25,420,'46 311l4 160h18c10 -24 17 -31 30 -31c10 0 17 3 28 9c32 17 67 24 100 24c109 0 173 -52 173 -126c0 -49 -42 -92 -95 -106v-3c40 -4 116 -24 116 -108c0 -96 -110 -147 -220 -147c-76 0 -141 25 -175 78l21 21c50 -41 76 -48 123 -48c73 0 103 45 103 91 c0 49 -34 95 -105 95h-44v32c52 0 82 8 106 26c17 13 32 36 32 74c0 73 -43 85 -80 85c-58 0 -96 -51 -111 -126h-24'], + 0x438: [461,0,556,21,543,'355 84v225l-146 -225c0 -39 11 -55 48 -60v-24h-236v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h236v-24c-44 -7 -48 -18 -48 -61v-225l146 225c0 43 -4 54 -48 61v24h236v-24c-44 -7 -53 -18 -53 -61v-289c0 -42 8 -54 53 -63v-24h-236v24c37 5 48 23 48 60'], + 0x439: [691,0,556,21,543,'111 634c0 44 35 57 57 57s44 -16 44 -41c0 -33 -19 -31 -19 -47c0 -22 28 -47 90 -47s89 25 89 47c0 16 -19 15 -19 48c0 25 24 40 47 40c22 0 54 -13 54 -57c0 -92 -102 -128 -171 -128c-67 0 -172 36 -172 128zM355 84v225l-146 -225c0 -39 11 -55 48 -60v-24h-236v24 c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h236v-24c-44 -7 -48 -18 -48 -61v-225l146 225c0 43 -4 54 -48 61v24h236v-24c-44 -7 -53 -18 -53 -61v-289c0 -42 8 -54 53 -63v-24h-236v24c37 5 48 23 48 60'], + 0x43A: [467,0,556,22,543,'257 461v-23c-43 -6 -48 -19 -48 -62v-117c90 0 101 91 133 150c19 34 46 58 104 58c52 0 90 -31 90 -82c0 -31 -17 -61 -56 -61c-71 0 -46 76 -84 76c-28 0 -42 -53 -53 -77c-10 -24 -25 -53 -49 -71v-2c53 -5 94 -27 122 -67l102 -144c9 -12 14 -15 25 -15v-24h-162 l-127 197c-14 22 -22 30 -45 30v-143c0 -47 5 -53 52 -60v-24h-239v24c33 3 48 21 48 60v295c0 38 -14 55 -48 58v24h235'], + 0x43B: [461,11,546,11,529,'104 461h425v-24c-43 -7 -53 -22 -53 -65v-285c0 -42 12 -54 53 -63v-24h-240v24c37 5 48 23 48 60v303c0 29 -4 34 -32 34h-79c-23 0 -29 -5 -29 -34v-203c0 -70 -2 -195 -110 -195c-24 0 -43 4 -56 15s-20 26 -20 40c0 39 24 58 54 58c41 0 40 -57 55 -57 c35 0 37 96 37 159v168c0 44 -9 58 -53 65v24'], + 0x43C: [461,0,657,20,640,'400 0v24c38 5 48 22 48 63v270l-129 -357h-42l-166 366v-282c0 -37 20 -55 57 -60v-24h-148v24c46 6 57 22 57 63v289c0 43 -9 53 -53 61v24h191l129 -288h1l104 288h191v-24c-44 -7 -53 -19 -53 -61v-289c0 -42 8 -54 53 -63v-24h-240'], + 0x43D: [461,0,560,21,543,'351 84v141h-138v-141c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h240v-24c-44 -7 -48 -18 -48 -61v-119h138v119c0 43 -4 54 -48 61v24h240v-24c-44 -7 -53 -18 -53 -61v-289c0 -42 8 -54 53 -63v-24h-240v24c37 5 48 23 48 60'], + 0x43E: [473,14,500,25,476,'254 473c126 0 222 -102 222 -244c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245zM251 442c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201c0 171 -19 224 -78 224'], + 0x43F: [461,0,556,21,543,'351 84v296c0 32 -12 49 -43 49h-53c-34 0 -42 -16 -42 -49v-296c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h522v-24c-44 -7 -53 -18 -53 -61v-289c0 -42 8 -54 53 -63v-24h-240v24c37 5 48 23 48 60'], + 0x440: [473,205,556,19,524,'212 461v-69c34 60 72 81 131 81c111 0 181 -77 181 -224c0 -155 -72 -262 -192 -262c-45 0 -70 13 -118 60v-126c0 -67 16 -99 77 -102v-24h-272v24c48 8 56 21 56 63v490c0 44 -11 58 -55 65v24h192zM214 346v-239c15 -38 44 -65 77 -65c55 0 85 54 85 192 c0 123 -25 182 -76 182c-23 0 -48 -13 -68 -37c-11 -13 -18 -27 -18 -33'], + 0x441: [473,14,444,25,430,'412 109l18 -18c-55 -75 -111 -105 -191 -105c-125 0 -214 93 -214 236c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -25 -64 -65 -64c-34 0 -59 25 -59 73c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169c0 -136 52 -220 139 -220c41 0 70 14 107 56'], + 0x442: [461,0,509,18,493,'325 402v-317c0 -43 18 -56 53 -61v-24h-245v24c46 11 53 18 53 64v314c0 20 -11 27 -28 27c-77 0 -100 -58 -116 -141h-24l4 173h469l2 -173h-24c-18 82 -32 141 -120 141c-14 0 -24 -8 -24 -27'], + 0x443: [461,205,520,16,502,'502 461v-24c-31 -4 -44 -12 -60 -55l-148 -398c-35 -94 -56 -133 -77 -156c-21 -22 -50 -33 -84 -33c-57 0 -97 32 -97 79c0 38 24 67 62 67c34 0 60 -23 60 -52c0 -4 -1 -9 -2 -14c-1 -3 -1 -6 -1 -6c0 -9 8 -17 17 -17c24 0 49 32 66 82l18 53l-139 290 c-23 49 -58 134 -67 146c-6 8 -12 11 -34 14v24h249v-24l-16 -1c-25 -2 -36 -10 -36 -25c0 -4 7 -31 20 -58l92 -186l68 188c9 26 11 37 11 49c0 24 -11 31 -54 33v24h152'], + 0x444: [676,205,726,31,693,'298 424v153c0 44 -11 71 -66 75v24h194v-252c26 36 64 49 109 49c111 0 158 -117 158 -234c0 -155 -49 -252 -169 -252c-38 0 -70 10 -98 50v-116c0 -67 6 -99 67 -102v-24h-262v24c56 8 67 33 67 103v115c-28 -40 -59 -50 -98 -50c-120 0 -169 97 -169 252 c0 117 47 234 158 234c45 0 83 -13 109 -49zM298 111v238c0 40 -30 66 -56 66c-51 0 -76 -58 -76 -181c0 -138 22 -192 74 -192c33 0 58 29 58 69zM426 350v-239c0 -40 29 -69 62 -69c52 0 70 54 70 192c0 123 -25 182 -76 182c-26 0 -56 -26 -56 -66'], + 0x445: [461,0,500,12,484,'484 24v-24h-241v24c32 2 45 8 45 20s-10 30 -33 64l-42 63l-16 -20c-38 -48 -64 -87 -64 -103c0 -15 14 -22 50 -24v-24h-169v24c37 2 55 18 113 93l65 84l-128 197c-20 30 -26 35 -52 39v24h250v-24c-35 -2 -47 -9 -47 -23s13 -35 34 -62l37 -49l36 46 c27 35 38 49 38 64s-8 20 -31 22l-20 2v24h168v-24c-31 -5 -51 -16 -70 -39l-101 -126l148 -228c7 -11 14 -15 30 -20'], + 0x446: [461,143,556,21,543,'213 377v-296c0 -32 12 -49 43 -49h53c34 0 42 16 42 49v296c0 37 -11 55 -48 60v24h240v-24c-45 -9 -53 -21 -53 -63v-289c0 -43 9 -54 53 -61v-167h-24c-28 124 -55 143 -108 143h-390v24c44 7 53 18 53 61v289c0 42 -8 54 -53 63v24h240v-24c-37 -5 -48 -23 -48 -60'], + 0x447: [461,0,559,20,542,'350 85v110c-45 -20 -78 -25 -111 -25c-80 0 -166 13 -166 125v82c0 42 -9 53 -53 60v24h240v-24c-44 -7 -48 -18 -48 -61v-102c0 -49 12 -69 62 -69c36 0 63 13 76 19v152c0 43 -4 54 -48 61v24h240v-24c-44 -7 -53 -18 -53 -61v-288c0 -43 8 -55 53 -64v-24h-248v24 c46 0 56 23 56 61'], + 0x448: [461,0,841,21,824,'530 32h60c34 0 42 16 42 49v296c0 37 -8 55 -45 60v24h237v-24c-45 -9 -53 -21 -53 -63v-289c0 -43 9 -54 53 -61v-24h-803v24c44 7 53 18 53 61v289c0 42 -8 54 -53 63v24h237v-24c-37 -5 -45 -23 -45 -60v-296c0 -32 12 -49 43 -49h60c30 0 37 17 37 49v296 c0 37 -8 55 -45 60v24h234v-24c-45 -9 -50 -21 -50 -63v-289c0 -43 10 -53 38 -53'], + 0x449: [461,143,841,21,824,'530 32h60c34 0 42 16 42 49v296c0 37 -8 55 -45 60v24h237v-24c-45 -9 -53 -21 -53 -63v-289c0 -43 9 -54 53 -61v-167h-24c-28 121 -54 143 -104 143h-675v24c44 7 53 18 53 61v289c0 42 -8 54 -53 63v24h237v-24c-37 -5 -45 -23 -45 -60v-296c0 -32 12 -49 43 -49h60 c30 0 37 17 37 49v296c0 37 -8 55 -45 60v24h234v-24c-45 -9 -50 -21 -50 -63v-289c0 -43 10 -53 38 -53'], + 0x44A: [461,0,607,15,592,'322 376v-115h78c168 0 192 -70 192 -133c0 -73 -64 -128 -199 -128h-263v24c45 9 53 21 53 63v315c0 20 -11 27 -28 27c-81 0 -102 -59 -116 -141h-24l4 173h356v-24c-44 -8 -53 -18 -53 -61zM322 231v-156c0 -33 19 -45 53 -45c59 0 94 30 94 98c0 70 -37 103 -117 103 h-30'], + 0x44B: [461,0,759,22,741,'211 376v-115h78c168 0 192 -70 192 -133c0 -73 -64 -128 -199 -128h-260v24c45 9 50 21 50 63v289c0 43 -6 54 -50 61v24h239v-24c-40 -7 -50 -18 -50 -61zM211 231v-156c0 -33 19 -45 53 -45c59 0 94 30 94 98c0 70 -37 103 -117 103h-30zM691 373v-288 c0 -43 15 -56 50 -61v-24h-239v24c46 11 50 18 50 64v285c0 45 -7 55 -51 64v24h240v-24c-39 -9 -50 -19 -50 -64'], + 0x44C: [461,0,498,21,483,'213 376v-115h78c168 0 192 -70 192 -133c0 -73 -64 -128 -199 -128h-263v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h245v-24c-40 -7 -53 -18 -53 -61zM213 231v-156c0 -33 19 -45 53 -45c59 0 94 30 94 98c0 70 -37 103 -117 103h-30'], + 0x44D: [473,14,453,24,429,'141 255h147c0 127 -44 187 -106 187c-66 0 -114 -51 -128 -132h-24l3 161h18c10 -24 17 -31 30 -31c7 0 16 6 32 13c39 17 53 20 85 20c137 0 231 -91 231 -253c0 -134 -86 -234 -209 -234c-84 0 -140 29 -196 105l18 18c37 -42 66 -56 108 -56c98 0 135 117 135 162 h-144v40'], + 0x44E: [473,14,785,21,761,'213 257h98c13 131 106 216 228 216c126 0 222 -102 222 -244c0 -141 -97 -243 -226 -243c-122 0 -225 85 -225 239h-97v-141c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h240v-24c-44 -7 -48 -18 -48 -61v-119zM536 442 c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201c0 171 -19 224 -78 224'], + 0x44F: [461,0,526,11,509,'317 85v115h-17l-126 -200h-163v24c31 0 53 29 73 61l74 119v2c-94 18 -111 75 -111 127c0 73 64 128 199 128h263v-24c-45 -9 -53 -21 -53 -63v-289c0 -43 9 -54 53 -61v-24h-245v24c40 7 53 18 53 61zM317 230v156c0 33 -19 45 -53 45c-59 0 -94 -30 -94 -98 c0 -70 37 -103 117 -103h30'], + 0x451: [666,14,444,25,427,'137 666c34 0 64 -30 64 -66c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64zM346 666c35 0 65 -30 65 -66c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64zM403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238 c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-255c6 -95 24 -187 122 -187c43 0 74 19 115 68zM164 277h134v26c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -45 -70 -165'], + 0x452: [676,205,556,15,485,'387 562v-40h-179v-136h1c34 60 81 87 141 87c82 0 135 -55 135 -142v-331c0 -59 -7 -97 -26 -129c-28 -49 -81 -76 -150 -76c-82 0 -130 32 -130 91c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -32 -23 -38 -23 -46c0 -10 3 -21 22 -21c34 0 47 23 47 76v419 c0 56 -16 85 -50 85c-24 0 -48 -12 -70 -34c-10 -10 -18 -20 -18 -24v-263c0 -41 11 -56 48 -61v-24h-240v24c45 9 53 9 53 65v433h-49v40h49v17c0 48 -8 64 -54 73v24h193v-114h179'], + 0x453: [713,0,451,21,434,'142 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM213 402v-317c0 -43 18 -56 53 -61v-24h-245v24c46 11 53 18 53 64v288c0 42 -9 55 -53 61v24h410l3 -173h-24c-18 82 -29 141 -173 141c-14 0 -24 -8 -24 -27'], + 0x454: [473,14,453,24,429,'165 255h147v-40h-144c0 -45 37 -162 135 -162c42 0 71 14 108 56l18 -18c-56 -76 -112 -105 -196 -105c-123 0 -209 100 -209 234c0 162 94 253 231 253c32 0 46 -3 85 -20c16 -7 25 -13 32 -13c13 0 20 7 30 31h18l3 -161h-24c-14 81 -62 132 -128 132 c-62 0 -106 -60 -106 -187'], + 0x455: [473,14,389,25,361,'340 326h-25c-15 43 -26 62 -47 82c-22 21 -48 33 -75 33c-38 0 -66 -25 -66 -58c0 -34 28 -61 96 -89c100 -42 138 -85 138 -156c0 -90 -63 -152 -154 -152c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6c-9 0 -15 -7 -26 -28h-25v165h28c21 -87 67 -134 137 -134 c45 0 75 26 75 65c0 32 -27 59 -96 89c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145'], + 0x456: [691,0,278,15,256,'208 461v-376c0 -43 13 -56 48 -61v-24h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193zM139 691c42 0 76 -35 76 -78c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78'], + 0x457: [666,0,278,-30,309,'208 461v-376c0 -41 13 -56 48 -61v-24h-240v24c46 10 53 20 53 64v286c0 45 -11 54 -55 63v24h194zM35 666c34 0 64 -30 64 -66c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64zM244 666c35 0 65 -30 65 -66c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65 c0 35 29 64 64 64'], + 0x458: [691,203,333,-57,263,'260 461v-459c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v474c0 43 -12 55 -63 59v24h202zM186 691 c42 0 77 -36 77 -78c0 -44 -34 -77 -79 -77c-44 0 -76 33 -76 77s34 78 78 78'], + 0x459: [461,11,760,11,745,'288 0v24c37 5 48 23 48 60v295c0 29 -6 42 -34 42h-76c-23 0 -29 -13 -29 -42v-195c0 -72 -5 -195 -110 -195c-24 0 -43 4 -56 15s-20 26 -20 40c0 39 24 58 54 58c41 0 40 -57 55 -57c35 0 37 96 37 159v168c0 44 -9 58 -53 65v24h414v-24c-43 -7 -43 -21 -43 -65v-117 h78c168 0 192 -64 192 -127c0 -73 -65 -128 -200 -128h-257zM475 225v-155c0 -30 20 -40 53 -40c59 0 94 30 94 98c0 70 -37 97 -117 97h-30'], + 0x45A: [461,0,775,21,760,'351 225h-138v-141c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h240v-24c-44 -7 -48 -18 -48 -61v-119h138v119c0 43 -4 54 -48 61v24h240v-24c-44 -7 -53 -18 -53 -61v-119h78c168 0 192 -66 192 -129c0 -73 -65 -128 -200 -128h-257 v24c37 5 48 21 48 58v143zM490 225v-155c0 -30 20 -40 53 -40c59 0 94 30 94 98c0 70 -37 97 -117 97h-30'], + 0x45B: [676,0,556,15,534,'387 562v-40h-179v-126c49 58 94 77 147 77c82 0 130 -57 130 -136v-250c0 -46 14 -63 49 -63v-24h-234v24c34 4 46 20 46 61v224c0 71 -12 97 -51 97c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-263c0 -41 11 -56 48 -61v-24h-240v24c45 9 53 9 53 65v433h-49v40 h49v29c0 48 -8 52 -54 61v24h193v-114h179'], + 0x45C: [713,0,556,22,543,'169 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM257 461v-23c-43 -6 -48 -19 -48 -62v-117c90 0 101 91 133 150c19 34 46 58 104 58c52 0 90 -31 90 -82c0 -31 -17 -61 -56 -61c-71 0 -46 76 -84 76c-28 0 -42 -53 -53 -77 c-10 -24 -25 -53 -49 -71v-2c53 -5 94 -27 122 -67l102 -144c9 -12 14 -15 25 -15v-24h-162l-127 197c-14 22 -22 30 -45 30v-143c0 -47 5 -53 52 -60v-24h-239v24c33 3 48 21 48 60v295c0 38 -14 55 -48 58v24h235'], + 0x45E: [691,205,500,16,502,'84 634c0 44 35 57 57 57s44 -16 44 -41c0 -33 -19 -31 -19 -47c0 -22 28 -47 90 -47s89 25 89 47c0 16 -19 15 -19 48c0 25 24 40 47 40c22 0 54 -13 54 -57c0 -92 -102 -128 -171 -128c-67 0 -172 36 -172 128zM502 461v-24c-31 -4 -44 -12 -60 -55l-148 -398 c-35 -94 -56 -133 -77 -156c-21 -22 -50 -33 -84 -33c-57 0 -97 32 -97 79c0 38 24 67 62 67c34 0 60 -23 60 -52c0 -4 -1 -9 -2 -14c-1 -3 -1 -6 -1 -6c0 -9 8 -17 17 -17c24 0 49 32 66 82l18 53l-139 290c-23 49 -58 134 -67 146c-6 8 -12 11 -34 14v24h249v-24l-16 -1 c-25 -2 -36 -10 -36 -25c0 -4 7 -31 20 -58l92 -186l68 188c9 26 11 37 11 49c0 24 -11 31 -54 33v24h152'], + 0x45F: [461,143,556,21,543,'213 377v-296c0 -32 12 -49 43 -49h53c34 0 42 16 42 49v296c0 37 -11 55 -48 60v24h240v-24c-45 -9 -53 -21 -53 -63v-289c0 -43 9 -54 53 -61v-24h-141c-53 0 -80 -19 -108 -143h-24c-27 118 -52 143 -100 143h-149v24c44 7 53 18 53 61v289c0 42 -8 54 -53 63v24h240 v-24c-37 -5 -48 -23 -48 -60'], + 0x462: [676,0,793,31,745,'478 676v-25c-76 -3 -88 -21 -88 -81v-13h197l2 -147h-29c-17 96 -53 97 -170 97v-132h73c162 0 282 -52 282 -187c0 -107 -96 -188 -274 -188h-329v25c73 8 88 22 88 78v404c-117 0 -153 -1 -170 -97h-29l2 147h197v13c0 59 -20 76 -88 81v25h336zM390 343v-245 c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 155 -157 155h-26'], + 0x463: [676,0,602,15,587,'317 676v-207h160l3 -181h-24c-12 83 -27 141 -115 141c-13 0 -24 -7 -24 -23v-145h78c168 0 192 -70 192 -133c0 -73 -64 -128 -199 -128h-263v24c45 9 53 21 53 63v319c-2 17 -13 23 -28 23c-77 0 -100 -58 -111 -141h-24l3 181h160v122c0 48 -8 52 -54 61v24h193z M317 231v-156c0 -33 19 -45 53 -45c59 0 94 30 94 98c0 70 -37 103 -117 103h-30'], + 0x46A: [676,0,1123,30,1088,'636 301v-172c0 -78 3 -97 72 -104v-25h-300v25c73 7 73 28 73 103v173c-80 0 -196 -84 -196 -214c0 -20 4 -43 23 -53c8 -4 10 -8 23 -9v-25h-301v25c25 1 43 7 57 21c70 69 68 156 133 221c51 51 136 78 231 78l-199 331h619l-204 -331c94 0 179 -27 230 -78 c65 -65 64 -152 134 -221c14 -14 32 -20 57 -21v-25h-301v25c13 1 15 5 23 9c19 10 23 33 23 53c0 130 -117 214 -197 214zM461 626l156 -271l165 271h-321'], + 0x46B: [461,0,762,14,748,'280 0v24c38 4 38 12 38 60v117c-54 -16 -110 -76 -110 -135c0 -20 5 -42 26 -42v-24h-220v24c29 4 44 16 53 38c33 82 76 171 231 171v2l-155 226h473l-152 -226v-2c155 0 198 -89 231 -171c9 -22 24 -34 53 -38v-24h-220v24c21 0 26 22 26 42c0 59 -56 118 -110 135 v-117c0 -47 5 -53 42 -60v-24h-206zM307 421l116 -177l118 177h-234'], + 0x472: [691,19,778,35,743,'394 691c201 0 349 -149 349 -356c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357zM212 361h1c47 47 71 62 114 62c54 0 101 -84 167 -84c18 0 49 7 72 27c-9 192 -68 292 -181 292c-104 0 -170 -108 -173 -297zM565 315h-2 c-46 -46 -70 -58 -112 -58c-55 0 -111 84 -177 84c-18 0 -39 -7 -62 -27c4 -201 68 -300 178 -300c107 0 171 96 175 301'], + 0x473: [473,14,500,25,476,'254 473c126 0 222 -102 222 -244c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245zM329 230h-1c-11 -32 -36 -43 -50 -43c-40 0 -57 35 -81 35c-7 0 -16 -4 -25 -14c1 -138 22 -191 79 -191c58 0 78 52 78 201v12zM172 243h2 c20 24 32 34 53 34c33 0 47 -31 69 -31c8 0 21 5 32 21c-3 132 -24 175 -77 175c-58 0 -78 -47 -79 -199'], + 0x474: [691,18,793,16,778,'289 541l133 -321h2l120 338c27 77 58 133 138 133c60 0 96 -42 96 -87c0 -40 -22 -69 -63 -69c-62 0 -55 67 -78 67c-32 0 -42 -26 -64 -88l-190 -532h-27l-256 599c-24 56 -34 63 -84 70v25h336v-25l-33 -2c-38 -2 -53 -13 -53 -36c0 -15 3 -24 23 -72'], + 0x475: [470,14,559,21,550,'271 461v-24l-18 -2c-25 -3 -35 -9 -35 -24c0 -7 1 -11 9 -31l73 -189h2l51 148c28 81 52 131 116 131c52 0 81 -34 81 -72c0 -31 -18 -59 -54 -59c-26 0 -38 17 -44 31c-8 18 -6 33 -22 33c-12 0 -18 -7 -23 -21l-140 -396h-26l-120 296c-20 49 -57 129 -66 141 c-6 8 -12 11 -34 14v24h250'], + 0x490: [833,0,626,14,594,'594 641h-331v-543c0 -46 23 -68 89 -73v-25h-338v25c76 6 87 33 87 72v481c0 54 -18 69 -86 73v25h357c134 0 189 37 193 157h29v-192'], + 0x491: [602,0,451,21,434,'431 429h-194c-14 0 -24 -8 -24 -27v-317c0 -43 18 -56 53 -61v-24h-245v24c46 11 53 18 53 64v288c0 42 -9 55 -53 61v24h221c140 0 150 60 168 141h24'], + 0x2105: [688,12,873,38,835,'835 175c0 -109 -75 -187 -174 -187c-97 0 -173 77 -173 187c0 112 74 188 176 188c97 0 171 -79 171 -188zM722 166c0 133 -15 173 -60 173c-48 0 -61 -40 -61 -173c0 -111 16 -154 61 -154c44 0 60 40 60 154zM687 688l-439 -700h-58l441 700h56zM336 402l14 -14 c-42 -57 -86 -80 -147 -80c-96 0 -165 71 -165 181c0 115 80 193 182 193c67 0 119 -35 119 -84c0 -31 -20 -49 -52 -49c-27 0 -44 18 -44 56c0 35 0 53 -32 53c-38 0 -65 -46 -65 -129c0 -105 41 -170 108 -170c31 0 54 10 82 43'], + 0x2107: [691,19,699,65,662,'470 372v-35c-104 0 -124 -2 -172 -31c-39 -24 -61 -71 -61 -122c0 -91 36 -155 164 -155c68 0 110 29 133 60c36 51 40 84 85 84c26 0 43 -16 43 -45c0 -53 -73 -96 -145 -123c-57 -21 -111 -24 -146 -24c-75 0 -140 12 -194 41c-69 36 -112 95 -112 171 c0 113 107 164 200 169v1c-45 5 -85 17 -119 48c-27 25 -47 59 -47 100c0 99 91 180 278 180c40 0 61 -4 101 -15c22 -6 82 -34 101 -34c21 0 30 14 44 46h27v-235h-25c-27 79 -113 205 -234 205c-99 0 -127 -68 -127 -155c0 -41 7 -89 50 -111c41 -20 55 -20 156 -20'], + 0x2116: [691,18,1093,10,1042,'1042 309c0 -91 -68 -164 -160 -164c-88 0 -156 72 -156 162c0 88 58 166 156 166c93 0 160 -62 160 -164zM919 295c0 65 -2 106 -8 123c-6 18 -15 26 -28 26c-30 0 -34 -29 -34 -136c0 -63 2 -101 7 -114s12 -20 26 -20c28 0 37 26 37 121zM1033 -6h-295v90h295v-90z M585 302v111c0 130 14 278 144 278c60 0 110 -21 110 -87c0 -50 -41 -78 -76 -78c-37 0 -61 21 -72 58c-3 10 -7 18 -10 18c-50 0 -52 -91 -52 -176v-444h-28l-337 545v-257c0 -132 -11 -288 -144 -288c-69 0 -110 23 -110 89c0 50 41 76 76 76c37 0 61 -21 72 -58 c3 -10 7 -18 10 -18c52 0 52 131 52 227v280c-47 65 -61 67 -106 73v25h243'], + 0x2117: [691,19,747,26,721,'231 521h166c93 0 146 -33 146 -101c0 -45 -21 -79 -68 -97c-24 -9 -43 -12 -117 -13v-102c0 -37 5 -42 49 -48v-18h-176v18c11 1 19 2 25 5c19 7 22 23 22 52v235c0 44 -8 52 -47 55v14zM358 479v-147c70 0 100 19 100 82c0 62 -25 85 -72 85c-18 0 -28 -7 -28 -20z M721 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 353 354 353c190 0 341 -157 341 -356zM650 338c0 168 -124 301 -280 301c-150 0 -273 -137 -273 -304c0 -168 123 -302 277 -302s276 135 276 305'], + 0x211E: [676,101,722,26,726,'726 0h-195l-27 37l-142 -138l-34 31l148 146l-172 237h-28v-196c0 -73 13 -83 68 -92v-25h-318v25c78 9 88 16 88 95v431c0 78 -14 95 -88 100v25h308c195 0 296 -57 296 -172c0 -45 -16 -91 -45 -118c-28 -25 -54 -41 -112 -57l113 -146l95 94l33 -34l-99 -97l77 -99 c10 -12 16 -22 34 -22v-25zM276 597v-252c131 1 183 27 183 149c0 106 -37 148 -130 148c-39 0 -53 -12 -53 -45'], + 0x2122: [676,-271,1000,24,977,'977 676v-23c-44 -3 -54 -12 -54 -48v-262c0 -43 1 -44 51 -48v-23h-194v23c50 4 50 5 50 48v226l-149 -298h-13l-142 296v-203c0 -55 7 -65 52 -69v-23h-133v23c44 4 52 14 52 69v237c-15 33 -40 51 -70 52v23h139l142 -289l151 289h118zM386 588h-23 c-12 45 -31 64 -66 64h-46v-309c0 -43 1 -44 51 -48v-23h-194v23c49 4 50 5 50 48v309h-46c-35 0 -53 -18 -65 -64h-23v88h362v-88'], + 0x2125: [676,205,448,21,424,'255 254v-2c140 -33 169 -127 169 -209c0 -77 -35 -147 -89 -191c-47 -38 -108 -57 -174 -57c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -23 59 -53c0 -10 -4 -22 -14 -37c-6 -10 -9 -12 -9 -22s13 -17 32 -17c68 0 125 101 125 201c0 94 0 198 -114 198h-75v25 l142 178h-163v25l163 190c-130 0 -137 -5 -162 -100h-25l7 132h364v-26l-164 -189h165v-26'], + 0x2126: [692,0,758,35,723,'262 94l-2 29c-128 22 -225 132 -225 263c0 162 146 306 344 306c197 0 344 -144 344 -309c0 -130 -104 -228 -225 -260l-2 -29h138c45 0 56 22 56 77h25v-171h-302l7 155c88 21 136 123 136 234c0 126 -59 270 -177 270c-115 0 -177 -144 -177 -268 c0 -112 48 -215 136 -236l7 -155h-302v171h25c0 -56 8 -77 51 -77h143'], + 0x2129: [475,0,312,9,244,'244 0h-139v349c0 16 0 56 -24 56c-22 0 -39 -28 -49 -45l-23 12c24 58 79 103 143 103c56 0 92 -35 92 -91v-384'], + 0x212B: [920,0,722,9,689,'448 815c0 -59 -47 -108 -106 -108c-60 0 -107 46 -107 106c0 58 49 107 108 107c57 0 105 -47 105 -105zM400 812c0 34 -28 60 -61 60c-29 0 -56 -27 -56 -58c0 -32 26 -59 57 -59c34 0 60 25 60 57zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34 c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0x214B: [690,17,833,61,788,'61 561l15 25c25 42 41 60 57 73c24 19 62 31 93 31c53 0 90 -22 149 -88c82 62 147 87 222 87c112 0 191 -65 191 -182c0 -89 -52 -160 -196 -221c44 -69 52 -100 52 -144c0 -101 -74 -159 -202 -159c-97 0 -160 50 -160 121c0 64 46 108 152 147l-151 214 c-61 -73 -76 -105 -76 -145c0 -29 5 -34 64 -41v-24h-204v24c43 4 57 10 73 40c48 87 65 110 120 179c-56 72 -81 91 -119 91c-25 0 -43 -13 -60 -40zM649 410c0 62 -28 116 -72 161c-25 27 -59 42 -89 42c-26 0 -51 -11 -90 -39c32 -45 105 -140 177 -258 c55 32 74 56 74 94zM527 72c0 41 -17 84 -74 150c-50 -17 -70 -40 -70 -81c0 -67 43 -125 92 -125c32 0 52 21 52 56'], + 0xE0B3: [691,203,556,14,487,'487 474v-472c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v477c0 26 -9 36 -37 36h-101v-333c0 -41 10 -55 46 -60 v-24h-242v24c47 6 57 20 57 65v328h-56v44h56c6 98 18 149 77 192c35 26 84 38 146 38c110 0 178 -35 178 -92c0 -36 -27 -62 -65 -62s-64 24 -64 55c0 12 3 24 7 35c1 3 2 7 2 7c0 15 -24 27 -54 27c-58 0 -88 -30 -88 -160v-40h104c35 0 96 0 173 13'], + 0xE0DD: [930,0,553,76,483,'483 405l-50 -6c-49 -6 -69 -10 -106 -20v52c-38 -40 -64 -53 -106 -53c-84 0 -145 78 -145 188c0 116 65 202 153 202c37 0 61 -13 96 -50v146c0 37 -8 43 -61 47v19h172v-460c0 -34 10 -44 47 -46v-19zM325 479v194c-12 31 -36 50 -63 50c-46 0 -68 -47 -68 -151 c0 -101 20 -149 63 -149c18 0 36 9 52 29c8 11 16 23 16 27zM363 77c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78'], + 0xE0DE: [926,0,549,67,482,'482 386h-187v19c27 3 37 16 37 49v179c0 57 -10 77 -41 77c-19 0 -39 -9 -56 -27c-8 -8 -14 -16 -14 -19v-210c0 -33 9 -45 39 -49v-19h-192v19c36 7 42 7 42 52v401c0 39 -6 42 -43 49v19h154v-224c39 47 75 62 118 62c65 0 104 -46 104 -109v-200c0 -37 11 -50 39 -50 v-19zM352 77c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78'], + 0xE0DF: [765,0,773,67,706,'706 386h-190v19c31 3 39 14 39 48v182c0 50 -12 76 -43 76c-14 0 -28 -6 -46 -20c-10 -9 -22 -22 -22 -26v-212c0 -31 9 -44 37 -48v-19h-185v19c29 3 37 15 37 48v192c0 48 -12 66 -43 66c-18 0 -67 -30 -67 -50v-208c0 -31 8 -44 36 -48v-19h-191v19c35 7 44 17 44 50 v230c0 37 -10 46 -45 51v19h153v-60h3c30 49 64 70 115 70c50 0 78 -20 102 -70c42 51 72 70 118 70c66 0 108 -43 108 -114v-198c0 -35 9 -46 40 -48v-19zM468 77c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78'], + 0xE0E0: [920,0,552,42,510,'42 920h252c134 0 216 -46 216 -143c0 -64 -37 -111 -104 -136c-34 -13 -61 -15 -167 -16v-151c0 -53 7 -60 70 -68v-20h-267v20c16 1 28 3 36 7c27 10 32 33 32 73v336c0 62 -12 74 -68 78v20zM239 864v-211c100 1 133 26 133 115s-26 124 -93 124c-26 0 -40 -9 -40 -28 zM356 77c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78'], + 0xE0E1: [765,0,378,55,323,'307 648h-20c-12 34 -21 49 -38 65c-18 17 -38 26 -60 26c-30 0 -53 -20 -53 -47s23 -47 77 -70c80 -33 110 -68 110 -125c0 -72 -50 -121 -123 -121c-22 0 -63 8 -86 18c-8 3 -15 5 -19 5c-7 0 -12 -6 -20 -23h-20v132h22c17 -69 54 -105 110 -105c36 0 60 21 60 52 c0 25 -22 45 -77 69c-81 35 -114 72 -114 124c0 68 53 117 126 117c18 0 37 -3 62 -12c13 -4 20 -5 25 -5c10 0 15 4 20 16h18v-116zM263 77c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78'], + 0xE0E2: [754,0,481,63,435,'435 754v-19c-24 -3 -35 -9 -48 -44l-118 -318c-28 -75 -45 -107 -62 -125c-16 -18 -40 -26 -67 -26c-45 0 -77 25 -77 63c0 30 19 53 49 53c27 0 48 -18 48 -41c0 -10 -2 -12 -2 -16c0 -7 6 -14 13 -14c20 0 39 26 53 66l15 42l-96 232c-16 40 -46 107 -53 117 c-5 6 -10 9 -27 11v19h199v-19l-13 -1c-20 -2 -29 -8 -29 -20c0 -3 7 -24 16 -46l58 -149l54 151c7 20 9 29 9 39c0 19 -9 25 -43 26v19h121zM346 77c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78'], + 0xE2FD: [775,235,722,9,689,'689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136l-179 -432h-54l179 432h-171l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l97 -229l130 314h54l-156 -378l97 -229c51 -121 69 -143 110 -143v-25zM372 263 l-89 216l-94 -243h172'], + 0xE2FF: [775,235,667,16,619,'426 365v-1c110 -14 193 -81 193 -176c0 -107 -96 -188 -274 -188h-136l-97 -235h-54l97 235h-139v25c73 8 88 22 88 78v467c0 59 -20 76 -88 81v25h317c36 0 69 -3 98 -9l45 108h54l-50 -121c68 -26 105 -73 105 -138c0 -76 -42 -127 -159 -151zM420 509l-49 -118 c37 20 49 58 49 118zM311 375l92 223c-16 31 -43 48 -82 48c-40 0 -57 -15 -57 -54v-219c17 0 33 0 47 2zM297 343h-33v-81zM264 132v-34c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 81 -33 131 -99 148'], + 0xE301: [775,207,620,16,593,'593 474h-24c-14 72 -24 97 -56 125l-230 -554c16 -13 44 -18 93 -20v-25h-111l-86 -207h-54l86 207h-195v25c74 8 88 22 88 78v472c0 58 -19 72 -88 76v25h475l41 99h54l-41 -99h48v-202zM266 133l204 492c-32 11 -75 17 -134 17c-51 0 -70 -14 -70 -51v-458'], + 0xE303: [775,207,722,33,673,'673 0h-438l-86 -207h-54l86 207h-148l296 690h28l57 -126l88 211h54l-113 -273zM448 120l-86 187l-78 -187h164zM333 369l-50 110l-155 -359h102'], + 0xE305: [775,235,667,16,641,'641 208l-40 -208h-420l-97 -235h-54l97 235h-111v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h391l41 99h54l-41 -99h132v-201h-25c-17 96 -48 141 -125 158l-109 -263c58 15 85 55 94 142h26v-338h-26c-9 99 -40 140 -112 151l-50 -121v-117c0 -43 18 -56 83 -56 c78 0 135 15 182 54c34 28 52 58 82 123h28zM277 363l115 277c-19 1 -39 2 -61 2c-52 0 -65 -16 -65 -54v-225h11'], + 0xE307: [775,235,667,28,634,'634 242l-27 -242h-403l-97 -235h-54l97 235h-122v16l380 622h-118c-15 0 -31 -2 -46 -4c-104 -15 -128 -73 -157 -165h-28l22 207h349l41 99h54l-41 -99h120v-16l-379 -625h119c55 0 120 7 166 40c61 43 75 100 98 167h26'], + 0xE309: [775,235,778,21,759,'759 0h-339v25c73 8 89 22 89 73v228h-105l-117 -283c13 -10 35 -14 70 -18v-25h-88l-97 -235h-54l97 235h-194v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-204h102l110 266c-14 7 -33 10 -60 12v25h75l41 99h54l-41 -99h210v-25 c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25zM509 373v206l-86 -206h86zM350 326h-82v-199'], + 0xE30B: [775,207,778,35,743,'594 775l-48 -115c119 -55 197 -174 197 -324c0 -208 -148 -354 -355 -354c-41 0 -80 6 -116 17l-85 -206h-54l92 223c-117 55 -190 172 -190 319c0 213 151 357 359 357c37 0 72 -5 105 -15l41 98h54zM388 279l-95 -229c27 -23 59 -35 97 -35c115 0 176 108 176 314 c0 112 -18 198 -52 254l-76 -184h9c23 0 31 12 40 57h26c-7 -32 -12 -79 -12 -110c0 -33 6 -86 14 -123h-26c-6 36 -20 56 -43 56h-58zM384 399l94 227c-26 22 -57 33 -93 33c-110 0 -173 -118 -173 -328c0 -105 16 -184 46 -236l76 184c-27 -1 -35 -7 -48 -56h-26 c10 34 15 84 15 118c0 29 -7 82 -15 115h26c15 -46 25 -57 52 -57h46'], + 0xE30D: [775,235,389,-36,436,'436 775l-161 -390v-279c0 -65 19 -76 95 -81v-25h-255l-97 -235h-54l97 235h-41v25c24 2 42 5 56 10l37 89v452c0 56 -21 70 -93 75v25h321l41 99h54zM275 516l54 131c-41 -8 -54 -27 -54 -71v-60'], + 0xE30F: [775,235,778,30,769,'769 0h-334v25c65 2 77 8 77 21c0 11 -6 21 -25 45l-109 134l-76 -185c13 -7 33 -11 64 -15v-25h-81l-97 -235h-54l97 235h-201v25c74 7 87 19 87 76v472c0 62 -18 74 -87 78v25h337v-25c-74 -5 -88 -23 -88 -84v-223l163 165l56 137c-4 1 -10 1 -15 2l-35 3v25h63l41 99 h54l-41 -99h172v-25c-83 -10 -123 -24 -242 -144l-50 -121l275 -340c12 -15 24 -20 49 -21v-25zM343 270l-37 46l-27 -25v-176'], + 0xE311: [775,207,707,9,674,'674 0h-322v25l32 3c33 3 44 11 44 33s-12 54 -45 139l-169 -407h-54l196 474l-80 210h-2l-114 -314c-11 -31 -28 -75 -28 -97c0 -27 20 -37 79 -41v-25h-202v25c46 8 63 27 99 120l213 545h28l91 -221l127 306h54l-154 -372l97 -235c50 -121 69 -143 110 -143v-25'], + 0xE313: [775,235,944,14,921,'921 0h-332v25c75 7 89 25 89 84v496l-252 -605h-27l-29 69l-126 -304h-54l152 368l-195 461v-465c0 -76 19 -98 101 -104v-25h-234v25c78 8 91 18 91 83v469c0 54 -16 68 -89 74v25h253l150 -357l189 456h54l-216 -521l22 -50l201 472h252v-25c-73 -5 -88 -22 -88 -97 v-428c0 -73 8 -94 88 -101v-25'], + 0xE315: [775,235,722,16,701,'701 676v-25c-65 -10 -78 -20 -78 -83v-586h-28l-234 284l-207 -501h-54l97 235h-181v25c73 9 88 23 88 84v470c-42 58 -65 72 -85 72v25h211l164 -202l124 301h54l-41 -99h170zM579 246v299c0 67 -13 91 -60 101l-90 -216zM326 310l-178 217v-396c0 -65 12 -89 62 -101'], + 0xE317: [775,207,647,40,607,'607 0h-407l-86 -207h-54l86 207h-106v232h25c10 -61 21 -85 82 -85h60l62 150h-34c-47 0 -59 -9 -69 -57h-25v223h25c10 -54 25 -56 70 -56h78l62 149h-202c-44 0 -72 -24 -82 -75h-25v195h359l41 99h54l-41 -99h100v-195h-25c-10 57 -25 75 -74 75h-51l-62 -149h49 c39 0 54 3 64 56h25v-223h-25c-10 50 -28 57 -64 57h-94l-62 -150h235c69 0 76 26 86 85h25v-232'], + 0xE319: [775,235,778,35,743,'595 775l-48 -117c119 -54 196 -174 196 -323c0 -208 -148 -354 -355 -354c-41 0 -79 6 -115 17l-96 -233h-54l103 250c-117 55 -191 171 -191 319c0 213 151 357 359 357c37 0 73 -6 106 -15l41 99h54zM515 581l-221 -533c26 -23 58 -34 96 -34c115 0 176 108 176 314 c0 112 -18 197 -51 253zM258 93l220 531c-26 22 -57 34 -93 34c-110 0 -173 -118 -173 -328c0 -106 16 -185 46 -237'], + 0xE31B: [775,207,778,21,759,'759 0h-339v25c73 8 89 22 89 73v531h-3l-234 -566c9 -24 32 -32 85 -38v-25h-111l-86 -207h-54l86 207h-171v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h451l41 99h54l-41 -99h233v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25zM452 629h-184v-446'], + 0xE31D: [775,235,611,16,600,'546 775l-52 -126c68 -29 106 -80 106 -154c0 -80 -46 -141 -129 -172c-31 -12 -58 -17 -120 -19l-89 -215c3 -47 17 -55 87 -64v-25h-124l-97 -235h-54l97 235h-155v25c19 2 34 4 45 9c33 13 39 41 39 92v427c0 78 -14 92 -84 98v25h315c43 0 81 -4 115 -12l46 111h54z M312 341l100 242c-17 40 -49 58 -100 58c-33 0 -50 -12 -50 -35v-268c18 0 35 1 50 3zM428 484v5l-55 -132c40 21 55 60 55 127zM297 303h-35v-84'], + 0xE31F: [775,207,671,28,641,'641 261l-32 -261h-343l-85 -207h-54l86 207h-185v16l278 301l-278 343v16h465l41 99h54l-41 -99h61v-197h-26c-16 69 -37 107 -64 127l-191 -459h133c66 0 125 6 155 114h26zM393 435l79 191c-15 3 -31 4 -48 4h-182zM330 283l-126 -136h70'], + 0xE321: [775,235,667,31,636,'636 475h-29c-12 82 -40 128 -97 151l-95 -231v-278c0 -76 11 -86 98 -92v-25h-262l-97 -235h-54l97 235h-41v25c23 2 41 4 55 8l42 101v510c-124 -4 -176 -50 -193 -169h-29l7 201h439l41 99h54l-41 -99h98zM415 526l47 114c-15 2 -30 3 -47 4v-118'], + 0xE323: [775,207,723,14,700,'700 670v-25c-11 3 -24 5 -31 5c-94 0 -189 -62 -228 -349v-178c0 -78 13 -91 92 -98v-25h-252l-86 -207h-54l86 207h-41v25c24 2 42 5 56 11l37 89v139c0 217 -68 362 -192 362c-19 0 -38 -3 -59 -10l-14 24c27 25 81 52 124 52c144 0 239 -58 261 -277l149 360h54 l-49 -117c29 16 61 24 93 24c18 0 41 -4 54 -12'], + 0xE325: [775,207,836,18,818,'647 775l-90 -216c127 -18 261 -81 261 -221c0 -171 -207 -232 -320 -232v-15c0 -37 22 -58 95 -66v-25h-267l-86 -207h-54l86 207h-32v25c18 1 33 3 45 6l31 75c-143 6 -298 68 -298 232c0 162 179 221 318 226v24c0 39 -2 63 -85 63v25h301l41 99h54zM505 564l35 87 c-39 -10 -42 -40 -42 -65v-22h7zM496 410v-270c65 0 150 47 150 185c0 120 -43 180 -104 198zM338 159v371c-75 0 -148 -56 -148 -205c0 -136 65 -182 140 -185'], + 0xE327: [775,235,722,16,699,'699 0h-340v25l28 2c35 2 52 11 52 28c0 12 -9 35 -21 54l-83 132l-88 -214c6 -1 12 -2 19 -2v-25h-31l-97 -235h-54l97 235h-165v25c50 6 74 19 104 56l175 221l-198 291c-31 45 -44 55 -80 58v25h346v-25l-31 -2c-36 -2 -48 -10 -48 -31c0 -12 2 -17 15 -37l75 -116 l76 185l-12 1v25h23l41 99h54l-41 -99h173v-25c-75 -7 -101 -25 -188 -146l-80 -111l182 -283c47 -73 63 -85 97 -86v-25zM499 638l-61 -149c4 6 9 12 14 19c47 65 58 84 58 106c0 11 -3 19 -11 24zM198 41l66 159c-63 -85 -79 -114 -79 -133c0 -12 4 -20 13 -26'], + 0xE329: [775,207,804,11,793,'793 692v-25c-35 0 -53 -59 -53 -90c0 -12 4 -60 4 -90c0 -167 -129 -223 -260 -223v-141c0 -78 14 -91 92 -98v-25h-255l-86 -207h-54l86 207h-38v25c22 1 39 3 52 8l41 99v132c-135 0 -260 56 -260 223c0 17 4 69 4 90c0 36 -16 90 -55 90v25h33c58 0 106 -33 142 -91 c23 -38 36 -88 36 -142c0 -81 35 -161 100 -161v290c0 39 -2 63 -85 63v25h310l41 99h54l-158 -382v-95c65 0 100 81 100 161c0 54 12 104 35 142c35 58 83 91 141 91h33zM484 524l51 127c-48 -8 -51 -38 -51 -65v-62'], + 0xE32B: [775,207,768,28,740,'740 0h-302l7 181c88 21 116 121 116 232c0 59 -14 117 -41 162l-194 -469l4 -106h-48l-86 -207h-54l86 207h-200v197h25c10 -66 28 -77 71 -77h153l-2 29c-128 19 -235 127 -235 261c0 162 151 282 349 282c42 0 82 -6 119 -16l41 99h54l-48 -116 c106 -47 173 -139 173 -252c0 -133 -114 -229 -235 -258l-2 -29h148c45 0 66 12 76 77h25v-197zM305 186l179 433c-27 25 -62 40 -104 40c-115 0 -173 -120 -173 -244c0 -104 24 -199 98 -229'], + 0xE365: [775,235,669,32,665,'589 775l-39 -93c63 -9 115 -36 115 -83c0 -49 -26 -75 -64 -75c-52 0 -65 35 -89 65l-170 -409c57 -14 113 -29 151 -60c32 -27 45 -62 45 -98c0 -62 -38 -128 -87 -164c-55 -41 -126 -63 -198 -63c-22 0 -44 3 -66 11l-16 -41h-54l26 64c-18 13 -33 30 -45 51l26 24 c9 -15 21 -28 34 -38l83 199c-3 0 -6 0 -9 1c-108 17 -200 67 -200 189c0 251 225 427 465 430l38 90h54zM294 193l177 427c-13 5 -28 9 -48 9c-113 0 -271 -134 -271 -283c0 -96 65 -130 142 -153zM290 54l-86 -209c11 -3 22 -4 34 -4c75 0 151 56 151 131 c0 39 -34 65 -99 82'], + 0xE369: [775,235,667,-13,670,'670 669l-43 -190l-27 5c0 51 -4 80 -20 100c-18 22 -41 35 -72 43l-107 -257h109l-13 -44h-114l-124 -299c7 -1 14 -2 22 -2v-25h-33l-97 -235h-54l97 235h-207v25c58 6 67 24 82 79l121 442c6 23 10 46 10 61c0 20 -11 29 -42 33l-31 4v25h344l45 106h54l-45 -106h145z M347 370l110 265c-13 1 -28 2 -44 2c-41 0 -53 -10 -63 -48l-60 -219h57zM329 326h-51l-53 -194c-8 -30 -15 -50 -15 -63c0 -9 1 -16 4 -22'], + 0xE36D: [793,235,757,-49,758,'758 570l-322 -425c-17 -23 -28 -40 -28 -62c0 -19 15 -29 33 -29c24 0 53 12 77 30l10 -20c-70 -56 -122 -82 -176 -82c-70 0 -95 36 -95 75c0 52 35 88 105 151l178 160v6l-185 -64l-350 -545h-54l335 522l-284 -97l-9 15l321 425c13 17 28 42 28 64 c0 19 -13 29 -31 29c-24 0 -55 -14 -79 -32l-10 20c70 56 122 82 176 82c70 0 96 -35 96 -74c0 -43 -20 -75 -106 -152l-178 -159v-6l191 65l198 308h54l-182 -284l277 95'], + 0xE371: [775,235,734,27,710,'389 685h19c217 0 302 -146 302 -317c0 -276 -227 -546 -503 -573v40c190 52 351 282 351 499c0 29 -4 56 -11 81c-114 -44 -211 -246 -236 -415h-79l-54 -235h-54l54 235h-28c10 61 35 125 70 186l100 433c-9 0 -18 0 -26 -2l-64 -274h-46l60 262 c-70 -11 -132 -47 -192 -102l-25 28c105 95 193 138 307 150l22 94h54zM373 613l-74 -320c67 74 150 135 239 163c-24 76 -85 139 -165 157'], + 0xE37C: [775,235,667,16,641,'641 208l-40 -208h-420l-97 -235h-54l97 235h-111v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h391l41 99h54l-41 -99h132v-201h-25c-17 96 -48 141 -125 158l-109 -263c58 15 85 55 94 142h26v-338h-26c-9 99 -40 140 -112 151l-50 -121v-117c0 -43 18 -56 83 -56 c78 0 135 15 182 54c34 28 52 58 82 123h28zM277 363l115 277c-19 1 -39 2 -61 2c-52 0 -65 -16 -65 -54v-225h11'], + 0xE400: [691,203,556,14,487,'487 474v-472c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v477c0 26 -9 36 -37 36h-101v-333c0 -41 10 -55 46 -60 v-24h-242v24c47 6 57 20 57 65v328h-56v44h56c6 98 18 149 77 192c35 26 84 38 146 38c110 0 178 -35 178 -92c0 -36 -27 -62 -65 -62s-64 24 -64 55c0 12 3 24 7 35c1 3 2 7 2 7c0 15 -24 27 -54 27c-58 0 -88 -30 -88 -160v-40h104c35 0 96 0 173 13'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Alphabets/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/BoldItalic/Main.js new file mode 100644 index 0000000..004e38f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/BoldItalic/Main.js @@ -0,0 +1,207 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Alphabets-bold-italic'] = { + directory: 'Alphabets/BoldItalic', + family: 'STIXMathJax_Alphabets', + weight: 'bold', + style: 'italic', + id: 'STIXWEBALPHABETSBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x384: [680,-516,300,140,319,'140 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48'], + 0x385: [680,-516,380,27,440,'440 580c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM140 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM157 580c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66 c36 0 66 -30 66 -66'], + 0x386: [693,0,667,-68,593,'123 529l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM593 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560 c14 -82 23 -94 86 -98v-25zM346 248l-37 243l-148 -243h185'], + 0x387: [459,-311,333,116,264,'264 385c0 -42 -33 -74 -75 -74s-73 32 -73 74s32 74 75 74c40 0 73 -34 73 -74'], + 0x388: [693,0,700,10,748,'748 669l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541zM10 529l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48'], + 0x389: [693,0,850,9,889,'889 669v-25c-49 0 -68 -21 -82 -74l-111 -408c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79l62 225h-239l-54 -197c-10 -36 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36 l-31 4v25h316v-25c-65 -2 -84 -15 -102 -80l-52 -191h239l47 173c5 19 10 49 10 61c0 20 -10 29 -41 33l-31 4v25h297zM9 529l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48'], + 0x38A: [693,0,450,9,503,'9 529l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM503 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33 l-32 4v25h298'], + 0x38C: [693,18,722,11,691,'11 529l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM547 528 c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398'], + 0x38E: [693,0,700,8,855,'855 628l-17 -19c-24 20 -51 26 -75 26c-42 0 -81 -26 -119 -79c-30 -42 -68 -109 -106 -248l-53 -192c-5 -17 -10 -36 -10 -49c0 -31 17 -42 79 -42v-25h-323v25c66 6 87 16 104 78l56 209c0 84 -17 304 -126 304c-21 0 -38 -6 -68 -29l-18 18c40 61 95 80 150 80 c144 0 185 -144 185 -274h4c44 134 137 266 243 266c38 0 70 -11 94 -49zM8 529l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48'], + 0x38F: [693,0,808,25,774,'279 124v32c-119 48 -150 118 -150 211c0 94 64 201 174 264c63 36 141 54 231 54c160 0 240 -83 240 -216c0 -148 -103 -271 -282 -315l-9 -30h111c69 0 89 10 128 75l25 -6l-64 -193h-295l60 192c110 24 182 161 182 289c0 89 -20 170 -107 170 c-128 0 -250 -162 -250 -313c0 -71 13 -113 67 -146l-29 -192h-286l41 199l25 6c0 -62 33 -81 89 -81h99zM26 529l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48'], + 0x390: [680,9,278,6,419,'419 580c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM119 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM136 580c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66 c36 0 66 -30 66 -66zM250 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61'], + 0x3AA: [905,0,389,-32,486,'486 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM274 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM406 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87 c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298'], + 0x3AB: [905,0,611,21,697,'592 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM380 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM697 628l-17 -19c-24 20 -51 26 -75 26c-42 0 -81 -26 -119 -79 c-30 -42 -68 -109 -106 -248l-53 -192c-5 -17 -10 -36 -10 -49c0 -31 17 -42 79 -42v-25h-323v25c66 6 87 16 104 78l56 209c0 84 -17 304 -126 304c-21 0 -38 -6 -68 -29l-18 18c40 61 95 80 150 80c144 0 185 -144 185 -274h4c44 134 137 266 243 266c38 0 70 -11 94 -49'], + 0x3AC: [680,13,576,-3,574,'251 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM574 449l-158 -255c0 -72 14 -135 38 -135c21 0 43 26 58 77l24 -7c-12 -69 -56 -140 -121 -140c-57 0 -85 41 -92 79c-55 -61 -100 -81 -168 -81c-39 0 -73 8 -100 25 c-36 23 -58 73 -58 133c0 158 113 317 274 317c76 0 119 -43 135 -94l44 81h124zM312 285c0 71 -5 148 -51 148c-52 0 -145 -166 -145 -345c0 -51 23 -71 45 -71c55 0 142 118 143 192c4 22 8 48 8 76'], + 0x3AD: [680,13,454,-5,408,'201 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM83 234v1c-32 18 -44 43 -44 71c0 85 120 156 251 156c60 0 118 -34 118 -90c0 -40 -25 -71 -62 -71c-34 0 -58 23 -58 53c0 29 21 36 21 58c0 10 -18 17 -30 17 c-44 0 -104 -54 -104 -120c0 -33 10 -52 43 -52c11 0 22 9 48 9c17 0 35 -5 35 -23c0 -23 -18 -34 -53 -34c-10 0 -18 6 -33 6c-56 0 -92 -50 -92 -95c0 -36 24 -69 73 -69c44 0 95 16 143 83l28 -18c-37 -54 -104 -129 -207 -129c-123 0 -165 60 -165 120 c0 64 38 105 88 127'], + 0x3AE: [680,205,488,-7,474,'216 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM178 263h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -26 -121l-68 -258c-13 -50 -30 -140 -30 -173c0 -13 0 -26 5 -38h-112 c-13 21 -13 32 -13 50c0 39 42 209 108 448c6 23 11 58 11 76c0 17 -7 21 -20 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l87 309c6 23 12 40 12 55c0 17 -6 21 -17 21c-20 0 -43 -26 -63 -49l-20 18c42 62 101 101 167 101c48 0 58 -25 58 -47 c0 -15 -10 -55 -18 -78'], + 0x3AF: [680,9,278,2,286,'107 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334 c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61'], + 0x3B0: [680,13,536,-7,500,'500 580c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM200 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM217 580c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66 c36 0 66 -30 66 -66zM300 435v27c35 0 64 -4 88 -13c60 -22 89 -71 89 -138c0 -171 -130 -324 -275 -324c-112 0 -160 46 -160 128c0 25 5 54 13 86l24 91c6 22 14 49 15 66c0 16 -3 27 -17 27c-20 0 -45 -26 -64 -49l-20 18c34 52 98 101 168 101c40 0 57 -19 57 -48 c0 -13 -6 -45 -12 -67l-38 -144c-7 -27 -16 -91 -16 -111c0 -50 24 -69 52 -69c96 0 154 268 154 356c0 57 -24 63 -58 63'], + 0x3CA: [655,9,278,2,351,'351 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM139 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63 c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61'], + 0x3CB: [655,13,536,-7,477,'467 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM255 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM300 435v27c35 0 64 -4 88 -13c60 -22 89 -71 89 -138 c0 -171 -130 -324 -275 -324c-112 0 -160 46 -160 128c0 25 5 54 13 86l24 91c6 22 14 49 15 66c0 16 -3 27 -17 27c-20 0 -45 -26 -64 -49l-20 18c34 52 98 101 168 101c40 0 57 -19 57 -48c0 -13 -6 -45 -12 -67l-38 -144c-7 -27 -16 -91 -16 -111c0 -50 24 -69 52 -69 c96 0 154 268 154 356c0 57 -24 63 -58 63'], + 0x3CC: [680,13,500,-3,441,'223 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM322 372 c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64c26 0 50 15 71 49c49 80 86 220 86 307'], + 0x3CD: [680,13,536,-7,477,'216 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM300 435v27c35 0 64 -4 88 -13c60 -22 89 -71 89 -138c0 -171 -130 -324 -275 -324c-112 0 -160 46 -160 128c0 25 5 54 13 86l24 91c6 22 14 49 15 66c0 16 -3 27 -17 27 c-20 0 -45 -26 -64 -49l-20 18c34 52 98 101 168 101c40 0 57 -19 57 -48c0 -13 -6 -45 -12 -67l-38 -144c-7 -27 -16 -91 -16 -111c0 -50 24 -69 52 -69c96 0 154 268 154 356c0 57 -24 63 -58 63'], + 0x3CE: [680,13,735,-3,676,'344 516l98 136c17 24 34 28 54 28c13 0 27 -13 27 -29c0 -27 -15 -39 -50 -68l-81 -67h-48zM473 435v27c114 0 162 -34 186 -81c11 -21 17 -45 17 -72c0 -119 -84 -274 -212 -313c-19 -6 -41 -9 -62 -9c-49 0 -96 16 -112 62c-30 -42 -87 -62 -141 -62 c-31 0 -62 6 -86 20c-41 23 -66 68 -66 120c0 117 43 202 103 260c50 47 112 75 220 75v-27c-44 0 -76 -6 -101 -34c-65 -71 -103 -201 -103 -318c0 -35 13 -67 47 -67c49 0 86 49 108 109c0 12 -1 29 -1 49c0 81 37 197 106 197c24 0 37 -27 37 -65c0 -19 -4 -42 -10 -65 c-11 -40 -47 -103 -54 -115c-2 -13 -3 -26 -3 -38c0 -42 15 -72 53 -72c106 0 158 271 158 334c0 20 -2 37 -8 52c-9 23 -32 33 -76 33'], + 0x401: [905,0,667,-35,645,'593 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM381 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM645 669l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30 c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61c37 27 57 50 91 106l25 -5l-60 -194h-553v25c52 8 65 19 82 80l119 432 c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541'], + 0x402: [669,205,789,80,737,'418 405h1c50 33 100 44 143 44c130 0 175 -84 175 -192c0 -193 -149 -462 -304 -462c-88 0 -138 35 -138 93c0 44 31 76 67 76c35 0 63 -25 63 -65c0 -31 -23 -36 -23 -54c0 -12 8 -15 27 -15c80 0 155 223 155 471c0 74 -31 101 -87 101c-23 0 -54 -10 -89 -32 l-61 -227c-7 -25 -13 -50 -13 -70c0 -28 13 -48 69 -48v-25h-323v25h15c46 0 77 20 91 72l148 537c-102 -2 -164 -25 -215 -131l-25 7l36 159h551l-31 -166l-27 2c0 114 -43 129 -143 129'], + 0x403: [947,0,604,-32,658,'342 766l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM658 669l-46 -203l-27 3c0 99 -33 165 -131 165h-112l-145 -532c-3 -10 -6 -34 -6 -41c1 -27 37 -35 73 -35v-26h-296v26c55 5 67 23 82 77l121 443c3 10 11 53 11 61 c0 20 -10 27 -41 32l-34 5v25h551'], + 0x404: [685,18,657,44,689,'689 685l-51 -235l-32 6c2 13 3 23 3 36c0 93 -46 158 -131 158c-53 0 -107 -30 -145 -73c-48 -54 -88 -121 -112 -201h263l-12 -50h-263c-7 -40 -11 -76 -11 -117c0 -109 61 -192 155 -192c59 0 104 30 104 70c0 10 -5 26 -5 38c0 56 47 87 89 87c30 0 56 -25 56 -56 c0 -32 -26 -67 -47 -89c-63 -67 -153 -85 -239 -85c-163 0 -267 101 -267 252c0 148 62 276 159 358c69 58 156 93 249 93c41 0 86 -7 131 -21c15 -5 30 -8 38 -8c15 0 24 7 38 29h30'], + 0x405: [685,18,556,-22,502,'502 681l-40 -202l-27 4c-5 42 -9 76 -22 101c-23 46 -64 66 -116 66c-53 0 -98 -40 -98 -105c0 -60 36 -86 107 -137c106 -77 138 -127 138 -217c0 -84 -41 -150 -110 -184c-33 -16 -74 -25 -120 -25c-40 0 -73 7 -122 24c-23 8 -36 11 -46 11c-19 0 -26 -6 -38 -35h-30 l36 225l29 -2c8 -66 16 -103 48 -139c27 -31 62 -50 106 -50c38 0 67 11 89 34c23 23 37 47 37 92c0 59 -34 96 -115 154s-130 114 -130 198c0 114 90 191 204 191c88 0 108 -30 146 -30c21 0 35 8 44 26h30'], + 0x406: [669,0,389,-32,406,'406 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298'], + 0x407: [905,0,389,-35,477,'477 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM265 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM403 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87 c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298'], + 0x408: [669,99,500,-8,562,'562 669v-25c-49 -6 -65 -11 -85 -85l-122 -457c-36 -135 -115 -201 -215 -201c-88 0 -148 36 -148 101c0 40 28 72 64 72c35 0 63 -25 63 -65c0 -31 -23 -36 -23 -54c0 -12 8 -18 27 -18c37 0 51 30 88 170l114 432c10 39 13 53 13 64c0 18 -11 31 -41 36l-33 5v25h298'], + 0x409: [669,18,954,-59,896,'601 370h81c182 0 214 -89 214 -164c0 -134 -112 -206 -295 -206h-302v25c48 6 68 24 84 83l115 428c4 16 9 41 10 58c0 17 -13 25 -39 25h-85c-33 0 -47 -19 -58 -61l-79 -292c-28 -102 -78 -284 -222 -284c-53 0 -84 34 -84 75c0 65 43 84 78 84c62 0 43 -71 74 -71 c47 0 86 133 110 224l79 295c2 7 3 13 3 19c0 21 -13 32 -63 36v25h515v-25c-49 0 -68 -21 -82 -74zM593 338l-64 -236c-5 -19 -7 -29 -7 -37c0 -23 18 -33 57 -33c108 0 164 97 164 197c0 93 -58 109 -150 109'], + 0x40A: [669,0,982,-32,924,'629 373h81c182 0 214 -92 214 -167c0 -134 -112 -206 -295 -206h-305v25c57 2 71 24 87 83l60 221h-213l-54 -197c-10 -36 -12 -52 -12 -67s12 -35 66 -40v-25h-290v25c50 7 65 16 81 74l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36l-31 4v25h306v-25 c-65 -2 -74 -15 -92 -80l-52 -191h213l47 173c7 25 11 47 11 57c0 39 -22 41 -61 41v25h295v-25c-63 0 -74 -12 -89 -67zM621 340l-64 -238c-5 -19 -7 -29 -7 -37c0 -23 18 -33 57 -33c108 0 164 97 164 197c0 93 -58 111 -150 111'], + 0x40B: [669,0,830,71,757,'757 0h-311v26c66 4 85 19 101 79l28 107c12 46 23 94 23 118c0 45 -14 72 -101 72c-23 0 -63 -10 -98 -32l-61 -225c-7 -24 -17 -59 -17 -80c0 -16 2 -36 66 -40v-25h-316v25h15c46 0 77 20 91 72l148 537c-102 -2 -164 -25 -215 -131l-25 7l36 159h571l-31 -166l-27 2 c0 114 -63 129 -163 129l-63 -228c50 33 110 43 153 43c93 0 177 -36 177 -119c0 -51 -14 -96 -24 -134l-26 -98c-3 -11 -5 -22 -5 -30c0 -30 22 -41 74 -43v-25'], + 0x40C: [947,0,678,-35,697,'350 766l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM321 572l-55 -202c27 0 66 8 97 26c42 24 79 85 101 131c34 70 71 151 153 151c40 0 80 -29 80 -67c0 -15 -6 -71 -63 -71c-40 0 -52 49 -66 49c-67 0 -62 -155 -194 -234 c24 -20 47 -44 69 -98l76 -188c11 -28 27 -38 85 -44v-25h-202l-105 278c-12 32 -18 45 -43 48l-64 -238c-1 -5 -2 -11 -2 -17c0 -33 13 -42 65 -46v-25h-288v25c45 5 65 15 79 68l123 453c8 28 11 46 11 58c0 22 -10 32 -41 36l-33 4v25h311v-25c-59 -5 -80 -20 -94 -72'], + 0x40E: [951,18,666,99,712,'608 894c0 -92 -102 -128 -171 -128c-67 0 -172 36 -172 128c0 44 35 57 57 57s44 -16 44 -41c0 -33 -19 -31 -19 -47c0 -22 28 -47 90 -47s89 25 89 47c0 16 -19 15 -19 48c0 25 24 40 47 40c22 0 54 -13 54 -57zM712 669v-25c-30 -4 -55 -15 -69 -39l-275 -471 c-57 -97 -104 -152 -179 -152c-46 0 -90 29 -90 72c0 73 54 88 81 88c63 0 46 -83 78 -83c12 0 43 36 96 128l-155 394c-19 47 -23 52 -75 63v25h285v-25c-48 -5 -69 -9 -69 -39c0 -18 11 -66 29 -110l69 -165h2l108 199c14 25 18 42 18 65c0 34 -23 47 -61 50v25h207'], + 0x40F: [669,184,778,-33,791,'791 669v-25c-49 -6 -64 -11 -83 -82l-117 -429c-8 -29 -14 -59 -14 -71c0 -20 15 -30 42 -33l32 -4l-7 -25h-152c-135 0 -196 -71 -229 -184h-28c3 15 5 37 5 51c0 93 -50 133 -134 133h-139v25c49 5 67 17 84 80l112 412c14 51 17 71 17 87c0 28 -14 37 -71 40v25h296 v-25c-49 -6 -64 -11 -83 -82l-143 -522h241l129 477c14 51 17 71 17 87c0 28 -14 37 -71 40v25h296'], + 0x410: [683,0,667,-57,604,'604 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25zM357 248l-37 243l-148 -243h185'], + 0x411: [669,0,635,-18,629,'629 669l-46 -193l-27 3c0 111 -21 155 -148 155c-43 0 -54 -9 -67 -57l-57 -209h76c182 0 219 -87 219 -162c0 -69 -35 -126 -89 -161c-51 -33 -117 -45 -206 -45h-302v25c48 6 68 24 84 83l119 438c7 25 11 47 11 57c0 39 -32 41 -71 41v25h504zM276 338l-64 -236 c-5 -19 -7 -29 -7 -37c0 -23 18 -33 57 -33c108 0 164 97 164 197c0 93 -53 107 -150 109'], + 0x412: [669,0,654,-25,624,'118 669h265c161 0 241 -50 241 -146c0 -109 -86 -149 -189 -168v-1c72 -15 137 -62 137 -148c0 -66 -32 -122 -82 -157c-51 -36 -120 -49 -213 -49h-302v25c48 6 68 24 84 83l119 438c7 25 11 47 11 57c0 39 -32 41 -71 41v25zM334 577l-57 -209c69 5 116 5 153 40 c30 28 47 72 47 128c0 67 -29 101 -87 101c-32 0 -41 -4 -56 -60zM269 338l-64 -236c-5 -19 -7 -29 -7 -37c0 -23 18 -33 57 -33c53 0 90 21 121 59c29 35 43 88 43 138c0 37 -12 67 -35 85c-21 16 -50 22 -115 24'], + 0x413: [669,0,604,-32,658,'658 669l-46 -203l-27 3c0 99 -33 165 -131 165h-112l-145 -532c-3 -10 -6 -34 -6 -41c1 -27 37 -35 73 -35v-26h-296v26c55 5 67 23 82 77l121 443c3 10 11 53 11 61c0 20 -10 27 -41 32l-34 5v25h551'], + 0x414: [669,184,696,-115,718,'718 669v-25c-59 0 -71 -34 -82 -74l-123 -454c-6 -22 -10 -39 -10 -52c0 -25 17 -35 73 -39l-57 -209l-29 4c3 18 4 32 4 47c0 83 -35 133 -132 133h-236c-103 0 -170 -75 -214 -182l-27 -2l57 209h20c101 0 183 184 279 543c4 13 6 25 6 35c0 22 -9 38 -52 41l6 25h517 zM362 104l118 427c4 13 10 48 10 57c0 19 -11 31 -39 31h-103c-33 0 -47 -24 -58 -66c-76 -286 -141 -450 -212 -518h211c35 0 59 18 73 69'], + 0x415: [669,0,667,-35,645,'645 669l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541'], + 0x416: [678,0,927,-63,969,'613 564l-53 -194c27 0 65 8 96 26c104 60 81 282 234 282c40 0 79 -29 79 -67c0 -15 -5 -71 -62 -71c-40 0 -52 49 -66 49c-67 0 -42 -157 -174 -236c25 -19 50 -42 66 -94l59 -190c9 -28 27 -38 85 -44v-25h-200l-88 277c-8 25 -17 45 -41 49l-47 -174 c-14 -51 -17 -71 -17 -87c0 -28 15 -37 61 -40v-25h-291v25c49 6 74 11 93 82l59 219c-26 -3 -48 -14 -69 -43l-206 -283h-194v25c56 6 72 30 92 58l124 171c56 77 103 96 166 104v3c-32 29 -45 70 -45 110c0 27 2 55 2 75c0 26 -4 43 -24 43c-21 0 -17 -49 -67 -49 c-52 0 -57 49 -57 65c0 43 47 73 86 73c63 0 107 -53 107 -110c0 -23 -2 -41 -2 -59c0 -81 16 -138 99 -139l46 166c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h293v-25c-49 -5 -67 -17 -84 -80'], + 0x417: [686,18,561,-10,549,'154 686h30c2 -18 17 -32 33 -32c17 0 10 5 32 12c40 13 74 19 110 19c133 0 190 -74 190 -152c0 -84 -73 -167 -186 -173v-2c67 -16 134 -67 134 -151c0 -80 -56 -145 -118 -180c-72 -41 -133 -45 -208 -45c-90 0 -181 41 -181 143c0 54 43 83 74 83c35 0 65 -22 65 -62 c0 -43 -32 -49 -32 -76c0 -25 31 -43 86 -43c89 0 161 68 161 201c0 88 -62 110 -134 110l12 38c114 0 180 55 180 161c0 77 -49 105 -94 105c-81 0 -141 -49 -170 -146h-27'], + 0x418: [669,0,768,-33,790,'790 669v-25c-49 0 -68 -21 -82 -74l-111 -408c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79l98 357l-329 -329c-7 -28 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36l-31 4 v25h316v-25c-65 -2 -84 -15 -102 -80l-95 -348l329 330c6 28 10 49 10 61c0 20 -10 29 -41 33l-31 4v25h297'], + 0x419: [948,0,768,-33,790,'651 891c0 -92 -92 -125 -161 -125c-67 0 -162 33 -162 125c0 44 35 57 57 57s44 -16 44 -41c0 -33 -19 -31 -19 -47c0 -22 18 -44 80 -44s79 22 79 44c0 16 -19 15 -19 48c0 25 24 40 47 40c22 0 54 -13 54 -57zM790 669v-25c-49 0 -68 -21 -82 -74l-111 -408 c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79l98 357l-329 -329c-7 -28 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36l-31 4v25h316v-25c-65 -2 -84 -15 -102 -80l-95 -348 l329 330c6 28 10 49 10 61c0 20 -10 29 -41 33l-31 4v25h297'], + 0x41A: [678,0,678,-35,697,'321 572l-55 -202c27 0 66 8 97 26c42 24 79 85 101 131c34 70 71 151 153 151c40 0 80 -29 80 -67c0 -15 -6 -71 -63 -71c-40 0 -52 49 -66 49c-67 0 -62 -155 -194 -234c24 -20 47 -44 69 -98l76 -188c11 -28 27 -38 85 -44v-25h-202l-105 278c-12 32 -18 45 -43 48 l-64 -238c-1 -5 -2 -11 -2 -17c0 -33 13 -42 65 -46v-25h-288v25c45 5 65 15 79 68l123 453c8 28 11 46 11 58c0 22 -10 32 -41 36l-33 4v25h311v-25c-59 -5 -80 -20 -94 -72'], + 0x41B: [669,18,742,-59,764,'764 669v-25c-49 0 -68 -21 -82 -74l-111 -408c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79l119 432c4 16 9 41 10 58c0 17 -13 25 -39 25h-114c-33 0 -47 -19 -58 -61l-78 -292c-28 -103 -84 -284 -223 -284c-53 0 -84 34 -84 75 c0 65 43 84 78 84c62 0 43 -71 74 -71c47 0 86 133 110 224l79 295c2 7 3 13 3 19c0 21 -13 32 -63 36v25h542'], + 0x41C: [669,12,890,-34,912,'912 669v-25c-51 -6 -67 -19 -84 -81l-119 -438c-5 -17 -10 -45 -10 -57c0 -32 12 -43 71 -43v-25h-311v25c69 4 85 21 101 79l123 457l-375 -573h-28l-67 559l-101 -369c-14 -50 -20 -75 -20 -92c0 -45 16 -55 80 -61v-25h-206v25c54 12 67 33 103 157l107 369 c7 26 11 44 11 58c0 28 -7 35 -71 35v25h219l54 -480l311 480h212'], + 0x41D: [669,0,769,-32,791,'791 669v-25c-49 0 -68 -21 -82 -74l-111 -408c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79l62 225h-239l-54 -197c-10 -36 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36 l-31 4v25h316v-25c-65 -2 -84 -15 -102 -80l-52 -191h239l47 173c5 19 10 49 10 61c0 20 -10 29 -41 33l-31 4v25h297'], + 0x41E: [685,18,722,53,717,'717 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM573 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388 c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398'], + 0x41F: [669,0,767,-35,789,'789 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l143 522h-240l-130 -477c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71 c0 20 -15 30 -42 33l-32 4v25h684'], + 0x420: [669,0,590,-30,611,'110 669h282c147 0 219 -54 219 -155c0 -53 -21 -98 -59 -131c-48 -42 -122 -66 -214 -66c-27 0 -46 1 -81 5l-54 -199c-5 -17 -11 -48 -11 -58c0 -27 16 -37 72 -40v-25h-294v25c52 8 66 17 84 82l117 426c11 39 13 59 13 74c0 20 -10 29 -41 33l-33 4v25zM328 584 l-61 -229c17 -3 29 -3 42 -3c62 0 96 18 123 62c22 35 33 93 33 136c0 53 -31 87 -84 87c-35 0 -41 -9 -53 -53'], + 0x421: [685,18,667,65,710,'710 685l-51 -235l-32 6c2 13 3 23 3 36c0 93 -46 158 -131 158c-53 0 -107 -30 -145 -73c-77 -87 -135 -220 -135 -368c0 -109 61 -174 155 -174c87 0 138 43 204 119l31 -22c-32 -44 -49 -63 -78 -85c-57 -43 -128 -65 -199 -65c-163 0 -267 101 -267 252 c0 148 62 276 159 358c69 58 156 93 249 93c41 0 86 -7 131 -21c15 -5 30 -8 38 -8c15 0 24 7 38 29h30'], + 0x422: [669,0,611,80,681,'681 669l-36 -192l-27 2c0 109 -24 155 -138 155l-135 -489c-7 -24 -17 -53 -17 -74c0 -29 23 -46 83 -46v-25h-331v25h15c46 0 77 20 91 72l148 537c-102 -2 -170 -51 -221 -157l-25 7l42 185h551'], + 0x423: [669,18,666,99,712,'712 669v-25c-30 -4 -55 -15 -69 -39l-275 -471c-57 -97 -104 -152 -179 -152c-46 0 -90 27 -90 70c0 73 57 90 84 90c63 0 43 -83 75 -83c12 0 43 36 96 128l-155 394c-19 47 -23 52 -75 63v25h285v-25c-48 -5 -69 -9 -69 -39c0 -18 22 -87 29 -110l69 -165h2l108 199 c14 25 18 42 18 65c0 34 -23 47 -61 50v25h207'], + 0x424: [669,0,833,72,816,'588 581l-4 -18c124 -1 232 -50 232 -176c0 -205 -236 -292 -357 -292c-3 -12 -4 -20 -4 -29c0 -28 17 -41 79 -41v-25h-323v25c64 6 88 12 104 70h-8c-134 0 -235 69 -235 194c0 179 205 274 357 274h15c4 19 7 36 7 44c0 20 -18 30 -45 33l-32 4v25h318v-25 c-56 0 -92 -7 -104 -63zM577 529l-108 -400c88 0 203 108 203 242c0 76 -28 158 -95 158zM328 129l109 400c-98 0 -221 -131 -221 -253c0 -78 45 -147 112 -147'], + 0x425: [669,0,607,-61,657,'657 669v-25c-36 -5 -56 -16 -99 -61l-199 -205l75 -237c27 -86 43 -108 115 -116v-25h-307v25c57 5 67 12 67 38c0 22 -11 63 -37 141l-20 60l-130 -144c-23 -25 -32 -42 -32 -55c0 -23 18 -36 63 -40v-25h-214v25c56 10 82 47 231 210l68 74l-83 269 c-17 55 -33 60 -93 66v25h305v-25l-29 -3c-33 -3 -45 -10 -45 -33c0 -15 12 -59 35 -132l17 -55l94 99c52 55 70 80 70 98c0 15 -10 22 -33 24l-21 2v25h202'], + 0x426: [669,184,770,-32,792,'792 669v-25c-49 -6 -64 -11 -83 -82l-117 -429c-8 -29 -14 -59 -14 -71c0 -20 15 -30 42 -33l32 -4l-56 -209l-30 4c3 18 4 32 4 47c0 93 -48 133 -132 133h-470v25c49 5 67 17 84 80l112 412c14 51 17 71 17 87c0 28 -14 37 -71 40v25h296v-25c-49 -6 -64 -11 -83 -82 l-142 -522h239l130 477c14 51 17 71 17 87c0 28 -14 37 -71 40v25h296'], + 0x427: [669,0,758,120,780,'780 669v-25c-49 0 -68 -21 -82 -74l-111 -408c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79l52 188c-70 -30 -131 -37 -175 -37c-88 0 -160 13 -160 102c0 23 4 48 12 79l35 135c6 22 5 28 5 33c0 22 -11 32 -42 36l-31 4v25h306v-25 c-58 -2 -74 -15 -92 -80l-46 -165c-5 -18 -8 -34 -8 -47c0 -38 36 -50 81 -50c38 0 107 20 125 27l59 217c5 19 10 49 10 61c0 20 -10 27 -41 33l-21 4v25h287'], + 0x428: [669,0,960,-33,982,'982 669v-25c-49 -6 -64 -11 -83 -82l-117 -429c-8 -29 -12 -57 -12 -69c0 -27 14 -36 71 -39v-25h-874v25c49 5 67 17 84 80l112 412c14 51 17 71 17 87c0 28 -14 37 -71 40v25h266v-25c-37 -10 -48 -26 -63 -82l-132 -486c-2 -8 -4 -15 -4 -20c0 -12 9 -16 29 -16h85 c26 0 37 6 44 32l126 456c10 37 17 54 17 75c0 23 -3 36 -45 41v25h236v-25c-41 -8 -52 -43 -63 -82l-132 -485c-5 -17 -4 -19 -4 -21c0 -11 6 -16 20 -16h100c25 0 33 6 40 31l121 446c9 35 18 63 18 84c0 23 -11 38 -42 43v25h256'], + 0x429: [669,184,960,-33,982,'982 669v-25c-49 -6 -64 -11 -83 -82l-117 -429c-8 -29 -14 -59 -14 -71c0 -20 15 -30 42 -33l32 -4l-57 -209l-30 4c3 18 4 32 4 47c0 93 -47 133 -131 133h-661v25c49 5 67 17 84 80l112 412c14 51 17 71 17 87c0 28 -14 37 -71 40v25h266v-25c-37 -10 -48 -26 -63 -82 l-132 -486c-2 -8 -4 -15 -4 -20c0 -12 9 -16 29 -16h85c26 0 37 6 44 32l126 456c10 37 17 54 17 75c0 23 -3 36 -45 41v25h236v-25c-41 -8 -52 -43 -63 -82l-132 -485c-5 -17 -4 -19 -4 -21c0 -11 6 -16 20 -16h100c25 0 33 6 40 31l121 446c9 35 18 63 18 84 c0 23 -11 38 -42 43v25h256'], + 0x42A: [669,0,780,107,722,'427 370h81c182 0 214 -89 214 -164c0 -134 -112 -206 -295 -206h-302v25c48 6 68 24 84 83l119 438c7 25 11 47 11 57c0 19 -10 31 -33 31c-55 0 -123 -40 -172 -143l-27 7l39 171h427v-25c-63 0 -74 -12 -89 -67zM419 338l-64 -236c-5 -19 -7 -29 -7 -37 c0 -23 18 -33 57 -33c108 0 164 97 164 197c0 93 -58 109 -150 109'], + 0x42B: [669,0,985,-19,1007,'1007 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298zM283 370h81c182 0 214 -89 214 -164c0 -134 -112 -206 -295 -206h-302v25 c48 6 68 24 84 83l119 438c7 25 11 47 11 57c0 39 -32 41 -71 41v25h305v-25c-63 0 -74 -12 -89 -67zM275 338l-64 -236c-5 -19 -7 -29 -7 -37c0 -23 18 -33 57 -33c108 0 164 97 164 197c0 93 -58 109 -150 109'], + 0x42C: [669,0,636,-19,578,'283 370h81c182 0 214 -89 214 -164c0 -134 -112 -206 -295 -206h-302v25c48 6 68 24 84 83l119 438c7 25 11 47 11 57c0 39 -32 41 -71 41v25h305v-25c-63 0 -74 -12 -89 -67zM275 338l-64 -236c-5 -19 -7 -29 -7 -37c0 -23 18 -33 57 -33c108 0 164 97 164 197 c0 93 -58 109 -150 109'], + 0x42D: [685,18,671,4,648,'157 685h30c2 -18 17 -31 33 -31c10 0 34 4 56 12c31 11 83 19 125 19c130 0 247 -76 247 -247c0 -251 -192 -456 -435 -456c-105 0 -209 34 -209 144c0 54 43 83 74 83c35 0 65 -22 65 -62c0 -43 -32 -49 -32 -76c0 -28 14 -54 89 -54c125 0 225 136 272 306h-255l11 50 h254c9 43 12 79 12 117c0 102 -61 160 -118 160c-90 0 -192 -53 -243 -203h-32'], + 0x42E: [685,18,905,-38,871,'264 373h70c31 84 83 163 144 220c63 58 131 92 201 92c115 0 192 -95 192 -241c0 -127 -73 -271 -166 -366c-62 -62 -134 -96 -212 -96c-118 0 -187 84 -187 239c0 35 5 72 14 108h-68l-54 -197c-10 -36 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74 l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36l-31 4v25h316v-25c-65 -2 -84 -15 -102 -80zM754 528c0 83 -28 123 -79 123c-52 0 -95 -36 -140 -120c-55 -101 -112 -269 -112 -388c0 -75 27 -127 80 -127s92 41 136 114c61 99 115 286 115 398'], + 0x42F: [669,0,710,-65,732,'732 669v-25c-50 -4 -67 -17 -84 -80l-124 -459c-4 -14 -5 -25 -5 -35c0 -31 24 -41 71 -45v-25h-301v25c68 2 73 27 88 82l61 220c-14 -3 -27 -5 -38 -5l-274 -322h-190l-1 25c49 8 59 17 84 46l219 256c-72 26 -105 71 -105 136c1 129 101 206 293 206h306zM447 364 l57 208c3 12 5 22 5 32c0 24 -16 34 -46 34c-112 0 -178 -95 -178 -198c0 -50 28 -83 100 -83c17 0 40 2 62 7'], + 0x430: [462,14,527,20,497,'476 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133 c0 -9 4 -15 12 -15c16 0 32 15 73 70zM344 373c0 27 -15 47 -37 47c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240'], + 0x431: [685,13,499,32,570,'544 685h26c-12 -36 -40 -112 -116 -140c-58 -22 -129 -6 -186 -26c-59 -20 -113 -84 -153 -162l3 -1c51 62 124 106 196 106c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -159 59 -159 174c0 76 20 159 59 242 c57 122 155 234 299 234h92c31 0 47 10 62 48zM352 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64c26 0 50 15 71 49c49 80 86 220 86 307'], + 0x432: [462,13,482,25,458,'324 256v-2c73 -7 112 -35 112 -90c0 -98 -133 -177 -252 -177c-124 0 -159 52 -159 147c0 169 114 328 300 328c79 0 133 -32 133 -86c0 -51 -34 -103 -134 -120zM364 383c0 36 -27 46 -48 46c-89 0 -126 -85 -144 -197c114 20 192 66 192 151zM317 165 c0 34 -25 51 -58 51c-30 0 -70 -14 -95 -25c-4 -15 -13 -70 -13 -91c0 -46 14 -84 46 -84c86 0 120 97 120 149'], + 0x433: [461,14,368,-8,371,'77 342l-19 20c40 50 94 99 188 99c72 0 125 -27 125 -85c0 -59 -34 -96 -86 -121s-111 -46 -146 -84c-17 -19 -28 -45 -28 -74c0 -32 17 -51 51 -51c40 0 84 22 126 72l19 -19c-65 -81 -125 -113 -198 -113c-81 0 -117 34 -117 93c0 76 84 109 142 141 c62 34 118 70 118 130c0 40 -28 51 -57 51c-47 0 -79 -19 -118 -59'], + 0x434: [695,13,496,22,466,'166 672l20 23c113 -16 199 -84 243 -163c28 -51 37 -101 37 -152c0 -209 -119 -393 -286 -393c-87 0 -158 56 -158 147c0 175 137 328 275 328c31 0 54 -12 71 -42l2 4c-14 148 -131 234 -204 248zM347 375c0 36 -18 58 -46 58c-88 0 -160 -239 -160 -347 c0 -47 16 -70 49 -70c51 0 84 63 109 129c27 73 48 173 48 230'], + 0x435: [462,13,431,22,415,'334 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM323 390c0 23 -7 39 -31 39 c-48 0 -91 -76 -127 -215c90 20 158 93 158 176'], + 0x436: [462,13,898,-4,890,'506 249h74c14 47 41 94 70 130c42 52 88 83 144 83c50 0 96 -34 96 -92c0 -42 -27 -70 -58 -70c-28 0 -49 23 -49 53s18 36 18 58c0 10 -10 18 -21 18c-58 0 -100 -206 -100 -276c0 -58 3 -102 40 -102c36 0 61 24 102 91l26 -18c-31 -52 -61 -96 -99 -119 c-19 -12 -42 -18 -69 -18c-76 0 -118 53 -118 151c0 25 5 52 10 77h-75l-59 -215h-112l59 215h-75c-14 -54 -43 -106 -75 -145c-43 -52 -88 -83 -144 -83c-50 0 -95 31 -95 92c0 42 27 70 58 70c28 0 49 -23 49 -53s-18 -36 -18 -58c0 -10 10 -18 21 -18 c58 0 100 206 100 276c0 58 -3 102 -40 102c-36 0 -61 -24 -102 -91l-26 18c31 52 61 96 99 119c19 12 42 18 69 18c76 0 118 -53 118 -151c0 -20 -4 -43 -8 -62h79l54 200h111'], + 0x437: [462,13,400,-11,378,'101 462h23c4 -18 4 -28 14 -28c20 0 44 28 95 28c32 0 67 -4 95 -20c29 -17 50 -46 50 -85c0 -55 -30 -101 -106 -125v-2c58 -7 88 -46 88 -84c0 -53 -29 -93 -73 -119c-45 -27 -107 -40 -166 -40c-60 0 -132 22 -132 92c0 34 23 68 63 68c24 0 54 -15 54 -52 c0 -29 -21 -27 -21 -52c0 -14 21 -23 42 -23c83 0 108 71 108 126c0 35 -7 69 -59 69h-49l10 34h54c56 0 87 53 87 101c0 39 -16 75 -67 75c-64 0 -104 -62 -124 -115h-27'], + 0x438: [462,9,542,34,512,'490 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -60 -16 -75 c0 -17 8 -22 24 -22c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74'], + 0x439: [697,9,542,34,514,'490 697h24c-10 -80 -64 -185 -185 -185c-67 0 -142 42 -142 125c0 45 35 60 57 60s44 -16 44 -39c0 -31 -19 -30 -19 -50c0 -24 39 -46 72 -46c82 0 127 57 149 135zM490 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1 c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -60 -16 -75c0 -17 8 -22 24 -22c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266 c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74'], + 0x43A: [461,8,522,12,527,'258 461l-58 -209c125 21 133 205 260 205c53 0 67 -38 67 -66c0 -43 -24 -66 -59 -66c-42 0 -50 48 -70 48c-39 0 -50 -78 -120 -118v-3c90 -51 77 -189 120 -189c19 0 37 16 64 64l22 -11c-45 -95 -88 -124 -138 -124c-71 0 -95 53 -110 111c-13 51 -32 110 -45 115 l-58 -218h-121l90 328c5 19 11 39 11 50c0 21 -25 27 -58 29v27c77 4 126 10 203 27'], + 0x43B: [462,11,507,-48,477,'455 135l22 -13c-55 -97 -105 -131 -165 -131c-43 0 -73 19 -73 60c0 26 10 77 26 125l50 152c3 10 6 26 6 36c0 17 -7 26 -32 26c-22 0 -33 -8 -51 -24c-69 -61 -94 -279 -135 -333c-19 -25 -51 -44 -81 -44c-38 0 -70 19 -70 64c0 32 21 59 55 59c40 0 36 -40 59 -40 c27 0 50 128 62 162c24 70 55 143 97 179c49 42 89 49 136 49c51 0 83 -28 83 -77c0 -24 -17 -81 -28 -116l-32 -104c-11 -37 -24 -79 -24 -89c0 -12 4 -17 19 -17c17 0 36 14 76 76'], + 0x43C: [449,11,667,-48,637,'615 135l22 -13c-55 -97 -105 -131 -165 -131c-43 0 -68 18 -68 59c0 25 12 78 29 131l40 125h-1l-207 -306h-26c-9 120 -33 223 -37 331h-1c-63 -272 -112 -342 -179 -342c-38 0 -70 19 -70 64c0 32 21 59 55 59c40 0 36 -40 59 -40c45 0 104 286 131 377h105 c7 -107 19 -207 33 -289c62 85 118 179 190 289h101l-82 -287c-5 -17 -24 -80 -24 -86c0 -12 8 -17 19 -17c17 0 36 14 76 76'], + 0x43D: [462,9,543,13,513,'491 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 25 15 79 27 126l10 38h-128l-60 -215h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 141 14 205 28l-60 -213h128l55 200h117l-76 -266c-17 -59 -23 -97 -23 -107s6 -17 14 -17 c17 0 31 14 71 76'], + 0x43E: [462,13,500,24,468,'468 311c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77c100 0 161 -59 161 -151zM349 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64 c26 0 50 15 71 49c49 80 86 220 86 307'], + 0x43F: [462,9,543,13,513,'491 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -66 19 -66 60c0 26 8 77 24 125l55 165c3 10 8 25 8 28c0 17 -13 21 -26 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 135 14 199 28 l-62 -199h1c62 100 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -28 -116l-35 -104c-19 -56 -24 -79 -24 -89s6 -17 14 -17c17 0 31 14 71 76'], + 0x440: [462,205,497,-96,470,'201 347h1c56 87 101 115 158 115c72 0 110 -47 110 -121c0 -185 -135 -354 -277 -354c-21 0 -46 6 -68 22l-12 -41c-19 -66 -24 -100 -24 -114c0 -24 15 -31 65 -32v-27h-250v27c48 0 59 10 78 86l96 380c13 52 22 84 22 94c0 19 -9 23 -54 25v27c52 6 90 12 192 28z M345 336c0 40 -15 55 -39 55c-31 0 -61 -32 -87 -71c-18 -27 -22 -40 -44 -113c-27 -91 -38 -132 -38 -149c0 -20 17 -36 39 -36s43 12 62 30c67 66 107 223 107 284'], + 0x441: [462,13,435,26,423,'349 142l28 -18c-38 -52 -70 -96 -115 -119c-23 -12 -50 -18 -83 -18c-91 0 -153 53 -153 151c0 92 46 177 105 239c50 53 113 85 180 85c60 0 112 -37 112 -90c0 -42 -25 -71 -62 -71c-34 0 -58 21 -58 51s21 38 21 60c0 10 -12 17 -24 17c-38 0 -69 -33 -92 -77 c-36 -69 -54 -167 -54 -212c0 -58 29 -89 73 -89c43 0 74 24 122 91'], + 0x442: [462,9,777,10,747,'725 135l22 -13c-52 -97 -99 -131 -161 -131c-43 0 -66 20 -66 66c0 29 14 87 36 151l44 130c4 13 7 24 7 30c0 11 -11 21 -23 21c-30 0 -70 -41 -112 -116c-36 -63 -43 -81 -101 -273h-120l65 207c32 102 45 143 45 160c0 16 -8 22 -18 22c-15 0 -43 -21 -65 -47 c-57 -68 -94 -153 -147 -342h-121l66 232c28 97 36 135 36 150c0 16 -12 25 -38 25h-18v27c113 9 137 12 200 27l-63 -199h1c49 84 77 115 104 142c32 32 74 58 114 58c42 0 68 -25 68 -67c0 -28 -7 -53 -27 -105c75 133 126 172 198 172c48 0 75 -30 75 -71 c0 -26 -6 -66 -21 -109l-45 -128c-18 -51 -21 -59 -21 -77c0 -12 7 -18 16 -18c13 0 35 21 58 58c4 7 8 13 12 18'], + 0x443: [462,205,447,-94,422,'241 99h2c81 108 115 187 115 218c0 13 -7 19 -25 34c-22 18 -31 29 -31 54s23 57 60 57c39 0 60 -30 60 -64c0 -101 -149 -338 -279 -497c-40 -49 -83 -84 -126 -98c-16 -5 -33 -8 -49 -8c-35 0 -62 28 -62 62c0 29 24 54 50 54c47 0 58 -36 94 -36c17 0 46 22 67 52 c17 24 25 48 25 71c0 31 -16 126 -50 288c-13 59 -24 93 -40 109c-11 11 -15 12 -40 12v27c65 6 105 16 150 28c18 -47 41 -158 64 -282'], + 0x444: [699,205,750,28,717,'465 347l3 4c44 82 94 111 154 111c75 0 95 -53 95 -118c0 -66 -25 -149 -51 -194c-59 -103 -138 -163 -214 -163c-23 0 -47 9 -57 22c-7 8 -11 17 -14 33l-43 -157c-4 -14 -6 -25 -6 -35c0 -18 15 -27 66 -28v-27h-263v27c66 0 76 23 87 63l61 221l-6 -8 c-44 -82 -94 -111 -154 -111c-65 0 -95 48 -95 130c0 55 17 117 52 178c59 103 137 167 213 167c23 0 47 -9 57 -22c7 -9 11 -19 15 -38l45 164c7 24 7 32 7 42c0 28 -10 34 -30 34h-34v27c77 4 132 13 209 30zM428 211l-19 -67c-7 -24 -9 -54 -9 -66c0 -28 12 -48 35 -48 c39 0 86 65 111 115c32 66 53 140 53 188c0 38 -13 57 -39 57c-31 0 -59 -24 -88 -74c-16 -28 -33 -65 -44 -105zM345 371c0 28 -12 48 -35 48c-39 0 -86 -65 -111 -115c-32 -66 -53 -140 -53 -188c0 -38 13 -57 39 -57c31 0 59 24 88 74c35 62 72 180 72 238'], + 0x445: [462,13,456,-38,511,'272 335l9 -30c98 129 125 157 172 157c31 0 58 -24 58 -56c0 -29 -26 -58 -56 -58c-24 0 -34 20 -57 20s-56 -39 -104 -106l43 -147c12 -41 24 -51 43 -51c18 0 28 9 67 59l21 -14c-61 -88 -103 -122 -151 -122c-50 0 -75 40 -111 160l-37 -47 c-69 -87 -94 -113 -144 -113c-38 0 -63 23 -63 58c0 32 23 58 54 58c30 0 41 -22 62 -22c18 0 36 6 60 37l55 72l-42 139c-14 48 -36 80 -68 80c-9 0 -16 0 -35 -2v27l165 28c19 -28 34 -43 59 -127'], + 0x446: [462,179,542,34,512,'490 133l22 -13c-17 -28 -33 -52 -49 -70c-16 -26 -18 -41 -18 -53c0 -23 7 -36 7 -62c0 -44 -7 -66 -120 -114l-9 24c34 15 44 50 44 72c0 3 -2 27 -2 33c0 14 9 34 17 45l-1 1c-6 -2 -21 -5 -28 -5c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1 c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266 c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74'], + 0x447: [462,9,531,48,501,'479 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 25 12 65 25 113l6 22c-46 -19 -96 -38 -129 -38c-88 0 -103 39 -103 92c0 13 3 25 9 48c16 60 22 86 22 95c0 19 -13 23 -55 24v27c56 2 141 14 205 28l-57 -198c-3 -12 -7 -23 -7 -33 c0 -21 12 -36 41 -36c19 0 46 7 81 21l67 233h117l-78 -266c-16 -56 -23 -97 -23 -107s6 -17 14 -17c17 0 31 14 71 76'], + 0x448: [462,9,800,36,770,'748 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -137 -170 -202 -170c-50 0 -75 20 -75 60c0 33 7 57 26 110h-1c-94 -138 -137 -170 -202 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75 c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72c0 -17 10 -25 24 -25c18 0 44 16 74 55c58 76 83 131 137 331h118l-85 -290l-1 -1c-13 -43 -15 -55 -15 -70c0 -17 10 -25 24 -25c18 0 44 16 74 55c58 76 83 131 137 331h118l-73 -266 c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74'], + 0x449: [462,179,800,36,770,'748 133l22 -13c-17 -28 -33 -52 -49 -70c-16 -26 -18 -41 -18 -53c0 -23 7 -36 7 -62c0 -44 -7 -66 -120 -114l-9 24c34 15 44 49 44 71c0 6 -2 31 -2 34c0 14 9 34 17 45l-1 1c-9 -3 -18 -5 -28 -5c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1 c-94 -138 -137 -170 -202 -170c-50 0 -75 20 -75 60c0 29 8 55 26 110h-1c-94 -138 -137 -170 -202 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72c0 -17 10 -25 24 -25 c18 0 44 16 74 55c58 76 83 131 137 331h118l-85 -290l-1 -1c-13 -43 -15 -55 -15 -70c0 -17 10 -25 24 -25c18 0 44 16 74 55c58 76 83 131 137 331h118l-73 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74'], + 0x44A: [462,13,594,29,556,'300 245h1c47 43 96 53 139 53c73 0 116 -38 116 -104c0 -111 -118 -207 -264 -207c-64 0 -146 26 -146 115c0 99 34 170 134 271l-2 2c-26 -9 -52 -10 -75 -10c-39 0 -73 21 -88 21c-25 0 -45 -21 -62 -54l-24 12c33 83 78 118 129 118c61 0 65 -29 129 -29 c31 0 67 11 85 29l21 -17c-33 -45 -72 -112 -93 -200zM437 202c0 30 -16 51 -55 51c-81 0 -123 -135 -123 -191c0 -38 20 -46 46 -46c66 0 132 124 132 186'], + 0x44B: [462,13,754,43,724,'702 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 16 5 44 13 74l92 324h117l-78 -266c-16 -56 -23 -97 -23 -107s6 -17 14 -17c17 0 31 14 71 76zM197 245h1c47 43 96 53 139 53c73 0 116 -38 116 -104c0 -111 -118 -207 -264 -207 c-64 0 -146 20 -146 109c0 25 1 30 15 80l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28zM334 202c0 30 -16 51 -55 51c-81 0 -123 -135 -123 -191c0 -38 20 -46 46 -46c66 0 132 124 132 186'], + 0x44C: [462,13,491,43,453,'197 245h1c47 43 96 53 139 53c73 0 116 -38 116 -104c0 -111 -118 -207 -264 -207c-64 0 -146 20 -146 109c0 25 1 30 15 80l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28zM334 202c0 30 -16 51 -55 51c-81 0 -123 -135 -123 -191 c0 -38 20 -46 46 -46c66 0 132 124 132 186'], + 0x44D: [462,13,444,-12,405,'108 462h23c4 -18 4 -28 14 -28c20 0 48 28 99 28c96 0 161 -44 161 -151c0 -92 -43 -177 -105 -239c-51 -52 -123 -85 -198 -85c-60 0 -114 31 -114 90c0 42 29 70 66 70c34 0 54 -22 54 -52s-21 -32 -21 -54c0 -10 16 -17 28 -17c42 0 79 33 107 84c17 32 30 67 39 104 h-148l11 40h145c4 17 8 44 8 69c0 53 -14 104 -55 104c-64 0 -108 -62 -128 -115h-27'], + 0x44E: [462,13,740,12,710,'203 249h81c16 52 46 101 82 136c51 50 115 77 183 77c100 0 161 -59 161 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 26 3 55 8 80h-81l-59 -215h-122l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 141 14 205 28z M591 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64c26 0 50 15 71 49c49 80 86 220 86 307'], + 0x44F: [449,11,538,2,508,'486 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 25 14 79 27 126l4 14h-23c-37 0 -51 -25 -80 -105c-27 -73 -65 -97 -126 -97c-55 0 -80 43 -80 88c0 21 6 47 15 65h26c-3 -16 -5 -29 -5 -40c0 -12 5 -34 25 -34c13 0 31 14 44 54 c16 47 43 65 65 73v2c-61 13 -82 52 -82 86c0 92 75 166 227 166h185l-78 -266c-16 -56 -23 -97 -23 -107s6 -17 14 -17c17 0 31 14 71 76zM319 221l44 154c2 6 3 12 3 17c0 20 -14 28 -41 28c-58 0 -118 -42 -119 -134c0 -44 25 -65 85 -65h28'], + 0x451: [655,13,434,22,487,'487 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM275 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM334 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147 c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM323 390c0 23 -7 39 -31 39c-48 0 -91 -76 -127 -215c90 20 158 93 158 176'], + 0x452: [699,205,523,12,490,'205 275h1c59 94 71 112 107 146c27 26 65 41 102 41c51 0 75 -28 75 -77c0 -13 -2 -35 -19 -97l-60 -222c-46 -171 -128 -271 -228 -271c-63 0 -95 33 -95 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15c38 0 59 68 103 236 l65 250c2 7 8 42 8 57c0 17 -15 21 -28 21c-18 0 -49 -27 -69 -54c-55 -72 -89 -144 -144 -336h-118l138 510h-79l12 40h78l3 12c6 22 10 38 10 47c0 23 -13 33 -42 33h-22v27c81 7 130 15 207 30l-39 -149h159l-12 -40h-157'], + 0x453: [697,14,368,-8,456,'216 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM77 342l-19 20c40 50 94 99 188 99c72 0 125 -27 125 -85c0 -59 -34 -96 -86 -121s-111 -46 -146 -84c-17 -19 -28 -45 -28 -74c0 -32 17 -51 51 -51c40 0 84 22 126 72 l19 -19c-65 -81 -125 -113 -198 -113c-81 0 -117 34 -117 93c0 76 84 109 142 141c62 34 118 70 118 130c0 40 -28 51 -57 51c-47 0 -79 -19 -118 -59'], + 0x454: [462,13,415,22,450,'450 462l-42 -152h-27c0 52 -3 119 -71 119c-63 0 -123 -97 -143 -177h148l-9 -40h-147c-6 -21 -9 -51 -9 -75c0 -77 34 -113 78 -113c32 0 55 13 55 51c0 14 -5 18 -5 33c0 31 25 54 62 54c27 0 49 -22 49 -50c0 -50 -44 -92 -90 -109c-44 -16 -79 -16 -109 -16 c-119 0 -168 63 -168 152c0 153 141 323 283 323c64 0 71 -31 91 -31c16 0 26 17 31 31h23'], + 0x455: [462,13,389,0,352,'352 461l-23 -154l-27 2c-16 83 -42 120 -88 120c-32 0 -53 -21 -53 -53c0 -23 18 -54 57 -99c60 -70 80 -114 80 -162c0 -75 -66 -128 -148 -128c-21 0 -42 3 -64 12c-13 5 -23 8 -30 8c-13 0 -23 -6 -29 -20h-27l22 166l27 -3c11 -88 42 -133 93 -133c40 0 60 22 60 54 c0 30 -16 59 -56 104c-68 77 -80 107 -80 161c0 80 53 126 134 126c20 0 41 -4 58 -12s27 -10 37 -10c15 0 19 4 28 21h29'], + 0x456: [684,9,278,20,280,'280 616c0 -37 -30 -66 -68 -66s-66 30 -66 69c0 34 31 65 65 65c38 0 69 -31 69 -68zM234 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334 c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61'], + 0x457: [655,9,278,22,382,'382 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM170 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM236 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63 c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61'], + 0x458: [685,207,278,-161,307,'307 617c0 -37 -31 -67 -69 -67c-37 0 -66 30 -66 69c0 35 31 66 66 66c38 0 69 -31 69 -68zM267 462l-116 -444c-42 -160 -107 -225 -207 -225c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15 c28 0 49 36 74 136l89 350c8 30 12 54 12 67c0 21 -12 30 -41 30h-22v27c112 10 149 15 209 28'], + 0x459: [462,13,694,-48,656,'409 246h1c47 43 86 53 129 53c73 0 117 -36 117 -102c0 -111 -109 -210 -255 -210c-64 0 -145 23 -145 112c0 25 0 37 59 229c3 10 6 26 6 36c0 17 -7 26 -32 26c-22 0 -34 -8 -52 -24c-69 -61 -93 -279 -134 -333c-19 -26 -51 -44 -81 -44c-38 0 -70 19 -70 64 c0 32 21 59 55 59c40 0 36 -40 59 -40c27 0 51 128 62 162c22 70 55 143 97 179c49 42 89 49 136 49c51 0 83 -28 83 -77c0 -24 -15 -86 -35 -139zM536 203c0 30 -16 51 -55 51c-81 0 -112 -135 -112 -191c0 -38 20 -47 46 -47c66 0 121 125 121 187'], + 0x45A: [462,13,733,12,695,'449 245h1c47 43 86 53 129 53c73 0 116 -38 116 -104c0 -111 -108 -207 -254 -207c-64 0 -146 20 -146 109c0 25 3 32 16 80l11 39h-128l-58 -215h-124l57 204c33 120 44 167 44 179c0 19 -13 23 -55 24v27c56 2 141 14 205 28l-60 -213h128l16 55c8 29 17 59 17 75 c0 15 -4 25 -45 28v27c51 1 136 15 197 28zM576 202c0 30 -16 51 -55 51c-81 0 -113 -135 -113 -191c0 -38 20 -46 46 -46c66 0 122 124 122 186'], + 0x45B: [699,9,556,12,515,'493 142l22 -15c-66 -103 -106 -136 -167 -136c-39 0 -65 24 -65 64c0 34 0 36 48 183l32 98c5 15 7 27 7 33c0 16 -12 21 -24 21c-27 0 -59 -34 -99 -99c-44 -72 -66 -116 -117 -291h-118l138 510h-79l12 40h78l3 12c6 22 10 38 10 47c0 23 -13 33 -42 33h-22v27 c81 7 129 15 206 30l-39 -149h159l-12 -40h-157l-62 -235c93 143 139 187 207 187c49 0 77 -28 77 -75c0 -19 -7 -56 -27 -118l-57 -178c-3 -8 -3 -13 -3 -16c0 -7 4 -16 16 -16c13 0 32 21 75 83'], + 0x45C: [697,8,522,12,527,'193 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM258 461l-58 -209c125 21 133 205 260 205c53 0 67 -38 67 -66c0 -43 -24 -66 -59 -66c-42 0 -50 48 -70 48c-39 0 -50 -78 -120 -118v-3c90 -51 77 -189 120 -189 c19 0 37 16 64 64l22 -11c-45 -95 -88 -124 -138 -124c-71 0 -95 53 -110 111c-13 51 -32 110 -45 115l-58 -218h-121l90 328c5 19 11 39 11 50c0 21 -25 27 -58 29v27c77 4 126 10 203 27'], + 0x45E: [697,205,447,-94,436,'412 697h24c-10 -80 -64 -185 -185 -185c-67 0 -142 42 -142 125c0 45 35 60 57 60s44 -16 44 -39c0 -31 -19 -30 -19 -50c0 -24 39 -46 72 -46c82 0 127 57 149 135zM241 99h2c81 108 115 187 115 218c0 13 -7 19 -25 34c-22 18 -31 29 -31 54s23 57 60 57 c39 0 60 -30 60 -64c0 -101 -149 -338 -279 -497c-40 -49 -83 -84 -126 -98c-16 -5 -33 -8 -49 -8c-35 0 -62 28 -62 62c0 29 24 54 50 54c47 0 58 -36 94 -36c17 0 46 22 67 52c17 24 25 48 25 71c0 31 -16 126 -50 288c-13 59 -24 93 -40 109c-11 11 -15 12 -40 12v27 c65 6 105 16 150 28c18 -47 41 -158 64 -282'], + 0x45F: [462,179,538,30,508,'486 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-36 -52 -63 -89 -87 -115c-15 -25 -19 -37 -19 -49c0 -28 7 -46 7 -69c0 -67 -48 -67 -120 -107l-9 24c34 15 44 50 44 72c0 3 -2 27 -2 33c0 14 8 32 16 43v2c-8 -2 -19 -4 -28 -4 c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -60 -16 -75c0 -17 8 -22 24 -22c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21 c17 0 37 20 72 74'], + 0x462: [669,0,761,62,707,'412 370h81c182 0 214 -89 214 -164c0 -134 -112 -206 -295 -206h-302v25c48 6 68 24 84 83l109 400h-10c-102 0 -155 -10 -206 -116l-25 7l36 159h218c5 20 8 36 8 45c0 39 -32 41 -71 41v25h305v-25c-63 0 -74 -12 -89 -67l-5 -19h185l-31 -166l-27 2 c0 112 -44 113 -141 114zM404 338l-64 -236c-5 -19 -7 -29 -7 -37c0 -23 18 -33 57 -33c108 0 164 97 164 197c0 93 -58 109 -150 109'], + 0x463: [699,13,569,20,531,'275 245h1c47 43 96 53 139 53c73 0 116 -38 116 -104c0 -111 -118 -207 -264 -207c-64 0 -146 20 -146 109c0 25 5 43 15 80l53 202c2 7 3 12 3 17c0 17 -10 22 -21 22c-77 0 -89 -14 -127 -87h-24l36 127h154l22 84c7 26 9 49 9 66c0 22 -12 34 -54 36v27 c51 1 149 16 210 29l-65 -242h155l-35 -127h-24c0 66 -15 87 -83 87c-13 0 -27 -5 -31 -22zM412 202c0 30 -16 51 -55 51c-81 0 -123 -135 -123 -191c0 -38 20 -46 46 -46c66 0 132 124 132 186'], + 0x46A: [669,0,978,-22,918,'918 0h-278v25c13 1 16 5 26 9c21 10 31 33 37 53c5 19 7 37 7 54c0 99 -56 167 -124 167l-49 -179c-8 -29 -13 -50 -13 -65c0 -26 20 -35 62 -39v-25h-291v25c73 7 77 28 97 103l49 180h-1c-80 0 -200 -92 -235 -221c-3 -8 -4 -18 -4 -26c0 -11 3 -21 13 -27 c6 -4 7 -8 20 -9v-25h-256v25c79 19 92 92 137 166c67 111 178 161 311 161l-101 317h520l-228 -317h1c94 0 154 -27 191 -78c48 -65 -1 -159 51 -228c10 -14 33 -20 58 -21v-25zM747 619h-260l79 -254'], + 0x46B: [449,13,844,-4,825,'799 142l26 -18c-31 -52 -61 -96 -99 -119c-19 -12 -42 -18 -69 -18c-76 0 -128 46 -128 144c0 25 -13 54 -49 65l-53 -196h-113l54 198c-59 -8 -78 -66 -102 -111c-15 -28 -36 -57 -77 -80c-26 -15 -55 -20 -93 -20c-53 0 -100 34 -100 92c0 42 27 70 58 70 c28 0 49 -19 49 -51c0 -30 -18 -38 -18 -60c0 -10 6 -18 17 -18c10 0 22 9 26 25c15 55 46 132 124 165c28 12 59 18 96 19l-87 220h449l-197 -220c38 -2 62 -11 82 -23c48 -27 52 -67 56 -109c2 -23 12 -46 46 -46c36 0 61 24 102 91zM621 409h-219l69 -169'], + 0x472: [685,18,722,53,717,'717 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM573 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-27 -46 -53 -106 -73 -168c59 47 83 62 126 62 c54 0 49 -81 115 -81c17 0 45 3 72 21c14 59 23 117 23 163zM537 317c-58 -46 -82 -58 -124 -58c-55 0 -59 81 -125 81c-18 0 -37 -4 -65 -24c-16 -61 -26 -122 -26 -173c0 -75 39 -127 102 -127c64 0 108 41 157 114c32 48 61 116 81 187'], + 0x473: [462,13,500,24,468,'468 311c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77c100 0 161 -59 161 -151zM166 240h2c26 24 41 34 62 34c33 0 47 -31 69 -31c8 0 21 5 36 20c9 39 14 77 14 109c0 38 -18 61 -47 61 c-21 0 -41 -10 -60 -31c-33 -36 -59 -98 -76 -162zM327 227h-2c-19 -30 -46 -43 -60 -43c-40 0 -55 35 -79 35c-7 0 -17 -4 -28 -13c-10 -45 -15 -89 -15 -126c0 -44 19 -64 49 -64c26 0 50 15 71 49c26 42 49 102 64 162'], + 0x474: [678,18,667,66,750,'339 200l186 343c36 66 72 135 144 135c52 0 81 -33 81 -74c0 -31 -20 -64 -62 -64c-47 0 -45 49 -68 49c-20 0 -33 -10 -51 -43l-306 -564h-32l-76 513c-20 136 -27 149 -89 149v25h296v-25c-68 -6 -75 -11 -75 -45c0 -5 1 -17 2 -23l48 -376h2'], + 0x475: [462,13,487,15,534,'237 174h2c31 74 50 111 86 164c43 64 94 119 150 119c30 0 59 -23 59 -58c0 -31 -25 -58 -58 -58c-23 0 -49 16 -64 16c-20 0 -42 -19 -64 -49c-55 -75 -124 -220 -164 -321h-26c-17 205 -59 333 -93 401c-7 13 -19 19 -50 19v27c82 11 103 16 152 28 c16 -36 59 -132 70 -288'], + 0x490: [834,0,539,-32,641,'641 834l-56 -200h-243l-145 -532c-3 -10 -6 -34 -6 -41c1 -27 37 -35 73 -35v-26h-296v26c55 5 67 23 82 77l121 443c3 10 11 53 11 61c0 20 -10 27 -41 32l-34 5v25h300c128 0 157 42 206 165h28'], + 0x491: [590,9,360,31,457,'457 590l-50 -175h-144c-14 0 -25 -6 -30 -25l-72 -262c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61l14 20l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l60 218c7 24 8 37 8 45c0 19 -16 29 -46 29h-14v27h213 c100 0 132 45 166 141h24'], + 0x2105: [683,14,847,52,795,'795 232c0 -71 -34 -142 -79 -189c-38 -38 -82 -56 -134 -56c-72 0 -125 37 -125 112c0 76 31 144 77 190c38 38 88 58 140 58c73 0 121 -45 121 -115zM703 267c0 28 -13 46 -34 46c-16 0 -31 -8 -46 -24c-46 -52 -73 -142 -73 -219c0 -33 14 -49 37 -49 c20 0 40 11 55 37c35 61 61 144 61 209zM636 683l-435 -697h-58l435 697h58zM295 444l23 -17c-21 -41 -52 -72 -87 -91c-18 -9 -39 -12 -63 -12c-69 0 -116 40 -116 114c0 71 33 134 79 182c39 39 86 63 138 63c45 0 85 -27 85 -67c0 -33 -23 -60 -52 -60 c-21 0 -42 14 -42 37s16 26 16 43c0 8 -9 13 -18 13c-30 0 -49 -17 -70 -56c-24 -45 -38 -95 -38 -146c0 -44 20 -67 54 -67c33 0 56 13 91 64'], + 0x2116: [675,15,1055,24,1031,'1031 374c0 -113 -87 -236 -208 -236c-71 0 -109 47 -109 116c0 46 23 100 49 138c37 53 93 91 159 91s109 -43 109 -109zM944 427c0 18 -12 31 -30 31c-20 0 -32 -13 -42 -29c-26 -43 -68 -180 -68 -230c0 -18 7 -35 28 -35c51 0 76 105 87 143c11 39 25 79 25 120z M961 76l-24 -82h-295l24 82h295zM552 288h2l73 251c19 65 54 136 132 136c44 0 83 -31 83 -77c0 -36 -27 -64 -63 -64c-52 0 -58 62 -78 62c-25 0 -36 -57 -42 -76l-157 -535h-17s-130 523 -128 523h-2l-110 -375c-20 -69 -52 -148 -136 -148c-43 0 -85 29 -85 75 c0 36 29 63 64 63c53 0 57 -63 77 -63c23 0 42 74 47 92l127 427c-11 34 -18 61 -84 61l9 29h196'], + 0xE09C: [775,235,776,40,765,'765 775l-163 -394l46 -213c27 -126 40 -143 91 -143v-25h-295l-97 -235h-54l179 432h-63l-179 -432h-54l179 432h-101l-21 -34c-18 -29 -46 -80 -46 -101c0 -19 11 -34 51 -37v-25h-198v25c47 8 73 25 131 119l336 546h28l8 -38l51 123h54l-87 -209l22 -100l128 309h54z M475 236l-17 80l-33 -80h50zM440 402l-16 75h-2l-148 -241h97zM498 131l-43 -104c38 7 49 31 49 61c0 10 0 20 -3 31'], + 0xE09D: [775,235,759,44,779,'779 676l-45 -193l-25 5c0 68 -10 90 -33 112l-85 -207l-54 -196l-25 4l-69 -167c46 5 88 17 127 41c44 27 89 74 114 124l26 -5l-60 -194h-222l-97 -235h-54l97 235h-63l-97 -235h-54l97 235h-213v25c66 9 78 22 94 78l128 462c3 11 6 31 6 39c0 33 -29 45 -85 47v25 h350l41 99h54l-41 -99h63l41 99h54l-41 -99h71zM547 418l86 208c-16 6 -35 10 -58 12l-107 -259c35 6 59 17 79 39zM523 642h-15c-52 0 -67 -16 -77 -54l-59 -213h41zM387 31l113 274c-10 13 -25 23 -51 29l-124 -301c10 -2 22 -2 37 -2h25zM294 89l104 251 c-11 1 -23 1 -36 1'], + 0xE09E: [775,235,658,44,771,'771 676l-46 -202l-25 4c0 50 -6 86 -27 114l-103 -250l-42 -151l-20 3l-177 -429h-54l97 235h-63l-97 -235h-54l97 235h-213v25c66 9 78 22 94 78l128 462c4 14 6 29 6 38c0 30 -29 45 -85 48v25h350l41 99h54l-41 -99h63l41 99h54l-41 -99h63zM552 430l80 194 c-15 7 -34 11 -57 14l-109 -264c40 7 64 23 86 56zM523 642h-5c-51 0 -75 -14 -85 -51l-62 -222h39zM379 11l116 281c-8 17 -24 28 -48 35l-123 -296c13 -3 31 -5 55 -6v-14zM293 85l103 249c-11 1 -23 1 -35 1l-64 -234c-2 -5 -3 -10 -4 -16'], + 0xE0B3: [703,205,556,-188,517,'27 449h76c39 115 53 155 111 202c38 31 94 52 151 52c88 0 152 -39 152 -95c0 -35 -24 -58 -57 -58s-58 25 -58 56c0 29 12 34 12 50c0 12 -9 17 -26 17c-37 0 -71 -14 -90 -37c-32 -39 -47 -75 -77 -187h117c15 0 89 3 178 13l-116 -444c-42 -160 -107 -223 -207 -223 c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 51 -19 51 -49c0 -21 -17 -21 -17 -35c0 -10 12 -15 24 -15c28 0 49 34 74 134l89 350c8 30 12 54 12 67c0 19 -11 30 -35 30h-124l-94 -385c-13 -52 -46 -121 -77 -160c-33 -42 -82 -67 -131 -67c-56 0 -97 33 -97 78 c0 32 20 55 49 55s51 -21 51 -50c0 -23 -19 -26 -19 -39c0 -6 5 -10 17 -10c44 0 61 35 93 177l89 401h-75'], + 0xE32D: [775,207,671,46,675,'675 461l-167 -260s-1 -6 -1 -13c0 -9 1 -18 1 -24c4 -62 22 -103 44 -103c25 0 43 24 63 68l23 -7c-20 -80 -77 -134 -154 -134c-55 0 -74 29 -85 65c-46 -48 -112 -67 -183 -67h-5l-80 -193h-54l82 199c-20 5 -38 14 -54 27c-36 30 -59 81 -59 140 c0 155 127 314 284 314c9 0 19 -1 28 -3l126 305h54l-132 -320c38 -19 64 -52 75 -84l50 90h144zM224 17h8c63 0 115 122 144 196c4 23 14 64 14 92c0 37 0 72 -6 98zM346 442h-1c-14 0 -38 -9 -58 -32c-61 -68 -106 -178 -106 -308c0 -15 2 -30 6 -43'], + 0xE32F: [775,207,664,-65,706,'706 775l-77 -105c22 -21 35 -52 35 -87c0 -78 -50 -145 -117 -173v-3c33 -5 62 -29 79 -56c13 -21 16 -47 16 -73c0 -133 -112 -292 -295 -292c-26 0 -58 3 -86 22l-33 -116c-12 -41 -22 -73 -33 -99h-136c8 21 20 61 28 92l17 68l-116 -160h-53l199 272l83 318 c20 75 45 120 78 166c60 83 135 157 244 157c19 0 38 -4 54 -11l59 80h54zM553 566l-98 -134c7 -2 14 -5 20 -5c49 16 73 87 78 139zM352 365l194 264c-8 17 -23 25 -43 25c-61 0 -89 -68 -115 -160zM320 248l-9 -35c-24 -91 -31 -137 -31 -155c0 -20 27 -37 51 -37 c96 0 171 180 171 259c0 94 -30 103 -49 103s-21 -4 -36 -4h-1'], + 0xE331: [775,207,588,-100,671,'671 775l-365 -500c-4 -29 -9 -59 -13 -82h2l191 268h161l-367 -443c0 -79 -33 -225 -116 -225c-41 0 -55 37 -55 65c0 66 65 148 123 212c8 28 19 81 25 139l-304 -416h-53l361 494c-3 64 -30 96 -63 96c-28 0 -62 -12 -88 -66l-23 8c12 36 25 75 48 102s49 46 90 46 c55 0 84 -50 87 -116l305 418h54'], + 0xE333: [775,207,571,46,547,'449 563l-27 -64c65 -35 125 -86 125 -190c0 -169 -138 -323 -299 -323c-14 0 -26 0 -38 1l-80 -194h-54l83 200c-10 2 -18 5 -26 9c-57 28 -87 83 -87 152c0 133 120 269 251 289c-53 29 -101 76 -101 129c0 91 95 135 189 135c25 0 47 -2 67 -7l31 75h54l-39 -94 c20 -14 33 -36 33 -64c0 -25 -20 -57 -59 -57c-9 0 -16 1 -23 3zM378 521l29 72c-4 6 -7 13 -10 20c-11 25 -23 50 -58 50c-26 0 -70 -13 -70 -57c0 -39 51 -60 109 -85zM376 388l-153 -369c5 -2 11 -2 18 -2c23 0 45 12 66 30c61 54 105 145 105 215s-15 105 -36 126z M186 59l148 355l-1 1c-88 -34 -152 -202 -152 -312c0 -17 1 -32 5 -44'], + 0xE335: [775,207,508,44,515,'515 775l-126 -305c55 -10 99 -43 99 -90c0 -43 -31 -74 -73 -74c-38 0 -62 25 -62 56c0 24 24 36 24 58c0 4 -2 7 -5 10l-66 -159c9 2 20 4 36 4c19 0 47 -7 47 -26c0 -24 -16 -32 -58 -32c-10 0 -28 5 -44 7l-65 -157c16 -10 36 -14 58 -14c59 0 124 33 147 71l18 -16 c-30 -43 -96 -122 -231 -122c-9 0 -18 0 -26 1l-80 -194h-54l84 203c-58 16 -94 54 -94 111c0 66 51 113 116 137v3c-25 11 -49 33 -49 69c0 76 91 149 224 156l126 303h54zM253 275l66 159c-49 -15 -92 -62 -92 -114c0 -22 10 -37 26 -45zM190 122l36 87 c-21 -13 -36 -37 -36 -76v-11'], + 0xE337: [775,207,505,-54,629,'629 775l-90 -140c1 -2 1 -5 1 -7c0 -31 -22 -57 -55 -77l-274 -428c14 -9 34 -13 58 -13c99 0 161 -44 161 -109c0 -25 -7 -50 -20 -74c-38 -72 -124 -134 -198 -134c-57 0 -83 35 -83 74c0 33 26 62 67 62c49 0 50 -60 83 -60c40 0 88 38 88 83c0 26 -28 42 -61 42 c-36 0 -77 -8 -99 -8c-27 0 -53 5 -75 14l-133 -207h-53l148 231c-30 26 -48 66 -48 120c0 136 87 268 215 381c-34 3 -74 26 -74 64c0 54 47 98 163 118l5 -24c-56 -18 -82 -52 -82 -82c0 -17 4 -29 25 -43c51 44 128 101 191 101c4 0 8 0 11 -1l75 117h54zM180 159 l234 364c-35 -8 -74 -12 -106 -12c-83 -72 -134 -170 -134 -309c0 -16 2 -31 6 -43'], + 0xE339: [775,207,579,20,583,'583 775l-125 -303c5 1 9 1 15 1c49 0 81 -39 81 -86c0 -31 -14 -80 -25 -118l-80 -271c-15 -51 -37 -132 -37 -155c0 -21 2 -38 7 -50h-130c-10 21 -10 39 -10 57c0 32 21 113 82 312c58 190 60 201 60 208c0 3 -1 7 -2 9l-243 -586h-54l239 578 c-18 -16 -39 -40 -62 -75c-49 -72 -66 -121 -117 -296h-142l92 331c4 14 10 32 10 48c0 13 -5 21 -16 21c-21 0 -53 -21 -85 -67l-21 13c51 87 111 127 181 127c53 0 74 -34 74 -74c0 -36 -8 -82 -15 -105h2c40 59 71 100 98 127c12 12 23 21 34 29l135 325h54'], + 0xE33B: [775,207,615,46,602,'528 775l-35 -83c65 -27 109 -91 109 -188c0 -168 -77 -335 -169 -427c-64 -64 -143 -91 -213 -91c-7 0 -13 0 -19 1l-80 -194h-54l84 205c-64 24 -105 87 -105 195c0 170 78 343 184 438c57 51 127 76 188 76c9 0 18 -1 27 -2l29 70h54zM359 368h85c16 63 23 127 23 188 c0 25 -1 45 -4 62zM305 368l126 304c-7 2 -14 4 -22 4c-48 0 -96 -52 -134 -130c-25 -51 -44 -114 -60 -178h90zM432 324h-91l-125 -301c7 -4 14 -6 22 -6c57 0 111 74 151 173c17 42 31 87 43 134zM287 324h-85c-15 -63 -21 -114 -21 -169c0 -30 2 -54 5 -74'], + 0xE33D: [775,207,355,29,483,'483 775l-281 -679v-11c0 -14 4 -26 16 -26c16 0 41 19 68 59l14 21l20 -14c-50 -100 -106 -131 -163 -137l-80 -195h-48l81 195c-32 6 -52 26 -52 62c0 21 4 49 14 85c44 166 54 230 54 267c0 15 -1 25 -1 35c71 5 119 19 169 36l10 -4l-11 -39l143 345h47'], + 0xE33F: [775,207,594,35,656,'656 775l-125 -302c47 -3 68 -40 68 -72c0 -29 -18 -62 -59 -62c-29 0 -43 13 -53 27l-91 -218l39 -71c25 -46 47 -53 106 -53v-24h-206l-86 -207h-54l86 207h-17v24c11 0 20 0 27 1l14 32l-74 144l-54 -201h-142l93 331c6 22 13 46 13 55c0 16 -13 26 -42 26h-22v24 c81 7 167 22 228 37l-59 -216h1c106 130 173 185 225 206l130 312h54zM366 205l81 198c-17 -5 -54 -27 -124 -117'], + 0xE341: [775,207,598,18,642,'642 775l-254 -613c5 -64 28 -86 59 -86c28 0 64 15 93 66l23 -8c-23 -70 -60 -148 -143 -148c-42 0 -68 24 -79 62l-106 -255h-54l155 374c3 41 8 82 12 111h-2l-167 -278h-161l336 463c5 19 5 28 5 50c0 71 -35 104 -70 104c-28 0 -75 -17 -100 -68l-23 8 c24 70 66 150 149 150c70 0 95 -73 95 -156c0 -82 -11 -166 -18 -250l196 474h54'], + 0xE343: [775,207,697,-34,737,'737 775l-230 -314h131l-76 -278c-14 -50 -23 -89 -23 -102c0 -11 3 -22 15 -22c18 0 52 18 88 74l20 -14c-54 -92 -112 -133 -178 -133c-57 0 -78 36 -78 73c0 32 10 67 26 103h-1c-77 -137 -148 -176 -219 -176c-4 0 -8 0 -11 1c-32 -109 -52 -165 -63 -190h-111 c2 5 5 11 7 18l-15 -22h-53l107 147l146 521h139l-60 -214l385 528h54zM496 445l-230 -314c-4 -18 -8 -36 -8 -44c0 -18 10 -28 25 -28c19 0 45 17 77 59c59 78 85 132 136 327'], + 0xE345: [775,207,571,35,584,'558 473l26 -8c-8 -67 -27 -136 -60 -201c-57 -109 -150 -204 -283 -250l-92 -221h-54l85 205c-37 -7 -76 -12 -118 -12l-27 15l91 330c6 22 13 46 13 55c0 16 -13 26 -42 26h-22v24c81 7 170 22 231 37l-95 -343c11 0 16 1 24 2l267 643h54l-261 -631c11 4 22 10 33 15 c127 64 210 209 230 314'], + 0xE347: [775,207,504,-54,629,'629 775l-100 -156v-4c0 -23 -15 -41 -38 -55l-75 -117c5 1 9 1 13 1c36 0 75 -7 75 -36c0 -64 -106 -67 -147 -67h-7l-140 -219c15 -8 34 -12 59 -12c99 0 161 -44 161 -109c0 -25 -7 -50 -20 -74c-38 -72 -124 -134 -198 -134c-57 0 -83 35 -83 74c0 33 26 62 67 62 c49 0 50 -60 83 -60c40 0 88 38 88 83c0 26 -28 42 -61 42c-36 0 -77 -8 -99 -8c-28 1 -53 5 -75 14l-133 -207h-53l147 230c-30 25 -47 62 -47 108c0 106 71 180 180 246c-26 15 -37 41 -37 65c0 42 22 66 64 96v3c-33 4 -57 28 -57 58c0 52 54 89 165 108l6 -24 c-69 -27 -86 -54 -86 -75c0 -22 18 -30 19 -33c43 38 121 76 171 76c8 0 16 0 23 -2l81 126h54zM355 432l66 103c-25 -5 -54 -7 -81 -7c-51 0 -73 -41 -73 -80c0 -18 5 -31 15 -44c22 11 47 21 73 28zM179 156l121 189c-9 2 -17 3 -24 5c-60 -24 -106 -81 -106 -149 c0 -15 2 -31 9 -45'], + 0xE349: [775,235,500,32,506,'506 775l-132 -320c70 -24 102 -74 102 -144c0 -94 -44 -188 -105 -249c-49 -49 -106 -75 -191 -75l-92 -222h-54l96 231c-62 20 -98 69 -98 139c0 100 40 191 100 250c51 50 112 76 191 77l129 313h54zM193 17l1 -1c31 0 56 15 77 49c49 80 86 220 86 307 c0 7 -2 19 -6 27zM154 55l157 378c-22 0 -44 -13 -61 -31c-53 -57 -99 -214 -99 -318c0 -12 2 -19 3 -29'], + 0xE34B: [775,207,652,1,772,'772 775l-230 -314h119l-26 -110h-123c-19 -49 -55 -163 -55 -228c0 -26 11 -47 37 -47c18 0 48 5 77 64l24 -9c-9 -38 -36 -78 -66 -107c-25 -25 -53 -38 -97 -38c-62 0 -91 43 -91 87c0 23 3 47 8 63c11 38 28 80 45 122l-340 -465h-53l138 190c-6 -1 -13 -2 -20 -2 c-48 0 -78 18 -78 53c0 24 10 41 46 53c34 12 68 40 81 69l88 195c-79 0 -116 -20 -161 -70l-21 12c71 104 120 168 242 168h172l230 314h54zM408 351h-81c-5 -28 -19 -98 -44 -171'], + 0xE34D: [775,207,636,27,652,'652 775l-130 -314c13 -4 25 -11 36 -19c30 -22 54 -59 54 -120c0 -89 -38 -187 -100 -249c-52 -52 -118 -84 -187 -87l-80 -193h-54l81 197c-14 3 -28 9 -41 18l-33 -116c-8 -27 -23 -73 -34 -99h-137c8 22 20 61 29 92l77 276c20 70 42 113 75 158 c65 89 140 154 234 154c10 0 20 0 30 -1l126 303h54zM472 326v14l-127 -306c7 5 14 10 22 18c61 61 105 197 105 274zM286 21l163 394c-9 11 -20 16 -32 16c-58 0 -97 -77 -121 -170l-43 -169c-3 -12 -3 -23 -3 -34c0 -16 16 -32 36 -37'], + 0xE34F: [775,207,504,23,514,'484 775l-133 -319c21 5 41 8 60 8c60 0 103 -37 103 -84c0 -28 -18 -63 -64 -63c-60 0 -65 80 -113 80h-10l-114 -275c15 -8 33 -12 56 -12c99 0 161 -44 161 -109c0 -25 -7 -50 -20 -74c-38 -72 -124 -134 -198 -134c-57 0 -83 35 -83 74c0 33 26 62 67 62 c49 0 50 -60 83 -60c40 0 88 38 88 83c0 26 -28 42 -61 42c-36 0 -77 -8 -99 -8c-17 0 -33 2 -48 6l-82 -199h-54l90 217c-41 25 -67 69 -67 134c0 127 124 240 243 291l141 340h54zM176 162l90 217c-62 -33 -100 -106 -100 -167c0 -18 3 -35 10 -50'], + 0xE351: [775,207,595,46,641,'641 461l-27 -110h-188c40 -51 112 -59 112 -150c0 -115 -128 -215 -289 -215c-17 0 -34 2 -49 4l-81 -197h-54l86 208c-68 24 -105 77 -105 154c0 133 105 285 295 304l131 316h54l-131 -314h246zM350 352l-136 -330c7 -3 17 -5 28 -5c88 0 161 107 161 183 c0 84 -10 119 -48 152h-5zM182 77l106 254c-61 -39 -107 -126 -107 -228c0 -9 0 -18 1 -26'], + 0xE353: [775,207,474,20,521,'521 775l-130 -314h116l-26 -110h-136l-79 -192c-2 -12 -3 -25 -3 -36c0 -26 11 -47 37 -47c18 0 48 4 77 64l24 -9c-10 -39 -37 -77 -66 -107c-25 -25 -52 -38 -97 -38c-16 0 -30 3 -41 8l-83 -201h-54l98 236c-8 13 -11 28 -11 44c0 23 3 47 8 63c20 68 56 147 84 215 h-47c-79 0 -120 -43 -151 -96l-21 12c56 112 110 194 232 194h85l130 314h54'], + 0xE355: [775,207,582,20,584,'584 775l-131 -315c69 -25 105 -82 105 -148c0 -109 -50 -191 -108 -247c-54 -52 -123 -78 -193 -79l-80 -193h-54l81 196c-70 8 -123 39 -123 128c0 11 5 47 12 71l39 143c4 16 10 32 10 48c0 13 -5 21 -16 21c-21 0 -53 -21 -85 -67l-21 13c51 87 111 127 181 127 c53 0 74 -34 74 -74c0 -36 -8 -79 -15 -105l-30 -118c-7 -26 -16 -66 -16 -99c0 -18 2 -33 8 -44l168 405c-7 4 -16 8 -26 11l5 24c12 0 24 -1 35 -2l126 304h54zM420 381l-151 -364c88 21 154 205 154 324c0 15 -1 28 -3 40'], + 0xE357: [775,207,726,1,772,'772 775l-223 -305c43 -6 76 -23 100 -45c33 -32 47 -83 47 -129c0 -90 -50 -196 -139 -259c-43 -30 -90 -47 -180 -51l-13 -47c-14 -49 -16 -70 -16 -84c0 -23 11 -37 69 -38v-24h-291v24c55 0 70 15 91 90l22 79c-14 1 -28 3 -41 5l-144 -198h-53l153 209 c-17 6 -31 12 -42 21c-42 31 -62 84 -62 139c0 92 38 174 102 233c53 49 134 78 222 78l25 92c6 22 13 46 13 55c0 16 -13 26 -42 26h-22v24c81 7 167 22 228 37l-57 -205l199 273h54zM486 384l-100 -363c96 17 175 166 175 266c0 82 -15 125 -42 143zM299 201l66 237 c-91 -15 -179 -146 -180 -273c0 -39 6 -72 17 -97zM266 84l-38 -52c6 -5 13 -10 21 -11'], + 0xE359: [775,207,622,-41,730,'730 775l-350 -479v-57l137 222h160l-297 -374v-82c0 -84 23 -122 63 -122c28 0 64 15 93 66l23 -8c-22 -69 -65 -148 -143 -148c-60 0 -86 53 -86 123c0 16 0 50 5 114h-2l-154 -230h-160l311 392c0 11 0 23 -1 35l-317 -434h-53l364 499c-9 51 -27 91 -66 91 c-28 0 -68 -17 -94 -68l-23 8c29 70 66 150 145 150c56 0 83 -47 92 -108l299 410h54'], + 0xE35B: [775,207,720,37,808,'808 775l-371 -506l-68 -248c37 3 77 23 100 49c76 87 38 203 88 302c45 89 100 101 214 101v-23c-108 -32 -94 -166 -124 -258c-44 -131 -122 -201 -288 -206l-53 -193h-135l48 178l-129 -178h-53l145 199c-82 16 -140 64 -140 165c0 77 61 140 61 206 c0 51 -16 79 -66 86v24h55c92 0 128 -54 128 -115c0 -68 -44 -154 -44 -219c0 -53 12 -85 36 -105l41 55l103 372h135l-21 -74l284 388h54'], + 0xE35D: [775,207,782,24,795,'795 775l-221 -303c109 -4 184 -55 184 -163c0 -89 -41 -184 -98 -242c-53 -53 -127 -81 -188 -81s-94 24 -111 64c-46 -48 -85 -64 -143 -64l-141 -193h-53l143 196c-7 1 -14 3 -20 5c-66 22 -101 80 -101 173c0 105 71 203 158 255c52 31 115 51 188 51h13v-24 c-49 -5 -84 -30 -120 -66c-64 -63 -103 -163 -104 -256c0 -35 5 -70 20 -91l124 170c4 69 37 147 110 151l306 418h54zM556 448l-77 -105c15 -13 22 -33 22 -55c0 -70 -51 -142 -88 -186c0 -59 25 -85 58 -85c76 0 152 179 152 292c0 56 -5 100 -33 123c-11 9 -18 14 -34 16 zM329 137l-88 -120c35 3 73 35 92 93c-2 9 -3 18 -4 27'], + 0xE35F: [775,207,608,20,681,'664 506l17 -18c-19 -27 -51 -55 -104 -67c-1 -203 -96 -435 -323 -435h-9l-80 -193h-54l81 197c-64 10 -111 43 -111 127c0 11 5 47 12 71l39 143c4 16 10 32 10 48c0 13 -5 21 -16 21c-21 0 -53 -21 -85 -67l-21 13c51 87 111 127 181 127c53 0 74 -34 74 -74 c0 -36 -8 -79 -15 -105l-30 -118c-7 -26 -16 -66 -16 -99c0 -11 1 -21 3 -29l153 371c-81 24 -139 80 -139 164c0 69 52 124 138 124c41 0 77 -11 108 -31l41 99h54l-56 -133c37 -43 58 -104 60 -179c30 2 61 16 88 43zM398 486l32 76c-14 68 -43 105 -63 105 c-22 0 -36 -25 -36 -59c0 -40 19 -89 67 -122zM420 409l-162 -392c90 5 181 187 181 390c-7 0 -13 1 -19 2'], + 0xE361: [775,207,727,0,771,'771 775l-229 -313c9 2 18 3 28 3c73 0 127 -54 127 -159c0 -170 -126 -309 -321 -320l-51 -193h-139l52 193c-14 1 -28 3 -40 5l-145 -198h-53l153 210c-15 5 -28 12 -38 20c-43 32 -64 83 -64 139c1 176 134 311 321 311h24v-24c-24 -2 -38 -6 -59 -17 c-90 -44 -150 -168 -151 -266c0 -40 5 -73 15 -97l99 135c16 46 32 75 57 109c34 46 68 87 106 115l254 347h54zM440 249l-55 -228c30 6 61 24 86 49c55 55 91 144 91 244c0 91 -14 104 -32 104c-17 0 -35 -19 -51 -51c-15 -29 -27 -70 -39 -118zM265 83l-37 -51 c6 -5 12 -9 20 -11'], + 0xE363: [775,207,925,6,978,'978 461l-26 -110h-101c3 -13 5 -27 5 -42c0 -89 -41 -184 -98 -242c-53 -53 -127 -81 -188 -81s-94 24 -111 64c-45 -47 -84 -63 -141 -64l-141 -193h-53l144 198c-82 15 -124 77 -124 176c0 68 29 132 74 184h-42c-66 0 -104 -20 -149 -70l-21 12 c64 103 132 168 258 168h347l230 314h54l-230 -314h313zM585 351l-42 -58c21 -8 35 -28 35 -49c0 -28 -10 -60 -20 -77c-15 -25 -32 -47 -47 -65c0 -59 25 -85 58 -85c76 0 152 178 152 292c0 15 0 29 -1 42h-135zM531 351h-176c-47 -62 -75 -145 -76 -224 c0 -36 6 -72 21 -93l123 169c8 44 33 75 64 88zM426 134l-85 -117c34 5 71 36 90 93c-2 9 -4 17 -5 24'], + 0xE367: [775,235,475,-35,509,'486 492h23c-23 -182 -120 -228 -247 -233c-13 -1 -26 -1 -39 -1l-69 -167c28 5 63 15 87 15c75 0 116 -56 116 -122c0 -80 -106 -189 -196 -189c-53 0 -76 28 -76 59c0 21 12 54 56 54c47 0 38 -53 69 -53c40 0 73 49 73 96c0 33 -10 47 -53 47c-23 0 -65 -11 -95 -11 c-8 0 -16 1 -24 2l-92 -224h-54l97 235c-43 19 -67 59 -67 118c0 114 101 202 214 237l174 420h54l-168 -406c4 1 9 1 14 2c146 15 181 62 203 121zM100 92l68 164c-28 -2 -54 -7 -73 -22c-26 -20 -38 -45 -38 -69c0 -36 15 -63 43 -73'], + 0xE36B: [775,235,525,-68,651,'651 775l-214 -325h70l-20 -84h-106l-150 -228v-3h153l-12 -50h-153l-63 -275h-124l9 39l-55 -84h-54l138 210l110 475h203l214 325h54zM327 366h-43l-24 -102'], + 0xE36F: [775,235,485,16,466,'466 399l-201 -267v-367h-54v296l-46 -61h-140l186 199v100h-195l195 258v218h54v-146l52 69h140l-192 -199v-100h201zM211 399v44l-43 -44h43zM304 299h-39v-42'], + 0xE373: [775,235,530,12,731,'731 775l-289 -438c16 -46 25 -93 25 -139c0 -152 -46 -296 -136 -403l-36 4c13 29 23 58 30 86c14 53 20 104 20 153c0 45 -5 89 -13 131l-266 -404h-54l239 363l-100 -50l-12 38l155 77l24 36c-10 34 -21 67 -32 101l-184 -92l-12 38l180 90c-44 101 -109 190 -223 239 l24 34c164 -15 288 -122 351 -252l255 388h54'], + 0xE375: [775,235,569,-50,592,'592 449l-154 -146c-21 -43 -46 -129 -46 -170c0 -26 14 -36 36 -36c40 0 57 -26 57 -51s-16 -61 -69 -61c-59 0 -81 51 -81 105c0 46 17 113 39 153l-107 -101l-156 -377h-54l124 299l-67 -64h-164l157 147c21 43 46 126 46 167c0 26 -14 36 -36 36c-40 0 -57 26 -57 51 s16 61 69 61c59 0 81 -51 81 -105c0 -46 -17 -110 -38 -150l112 105l191 463h54l-157 -379l56 53h164'], + 0xE377: [775,207,571,46,547,'533 775l-119 -307c89 -18 133 -81 133 -156c0 -110 -49 -191 -107 -247c-52 -50 -123 -73 -195 -73c-5 0 -10 0 -15 1l-16 -41c25 -7 52 -12 77 -22c34 -13 59 -25 59 -67c0 -22 -11 -48 -43 -70l-19 7c3 7 3 23 3 25c0 25 -53 32 -106 52l-32 -84h-54l40 105 c-7 4 -14 10 -21 15c-39 33 -72 89 -72 192c0 114 38 220 110 289c51 49 119 79 206 79l117 302h54zM396 422l-154 -399c30 0 62 17 88 50c50 64 82 186 82 284c0 27 -5 50 -16 65zM197 46l153 396c-22 -1 -48 -14 -67 -36c-44 -50 -100 -153 -100 -297c0 -26 4 -47 14 -63z M168 -27l13 31c-18 9 -35 23 -52 46l-4 -1c5 -39 21 -61 43 -76'], + 0xE379: [775,207,601,46,579,'535 775l-45 -107c56 -41 89 -116 89 -227c0 -120 -51 -289 -140 -376c-52 -50 -125 -79 -197 -79c-12 0 -23 1 -34 2l-80 -195h-54l85 205c-7 2 -14 5 -20 8c-61 28 -93 83 -93 149c0 97 42 184 100 238c71 66 138 80 210 80l49 119c-26 32 -63 46 -104 46 c-30 0 -59 0 -122 -32l-14 20c43 46 107 81 193 81c32 0 62 -5 88 -15l35 83h54zM441 452h3c0 31 -3 58 -10 81l-27 -66c13 -4 24 -9 34 -15zM391 428l-169 -408c6 -2 12 -3 20 -3c28 0 60 17 86 50c50 64 84 192 84 290c0 31 -6 57 -21 71zM185 62l158 380 c-20 -4 -43 -17 -60 -36c-44 -50 -102 -159 -102 -303c0 -15 1 -29 4 -41'], + 0xE37B: [775,207,525,46,543,'543 775l-130 -312c13 -6 20 -12 36 -12c10 0 19 6 28 20h22l-24 -144l-23 3c0 43 -12 84 -52 100l-67 -162h72l-7 -44h-83l-69 -165c10 -4 20 -6 29 -6c70 0 116 26 157 71l18 -16c-31 -41 -93 -122 -234 -122l-80 -193h-54l82 199c-83 17 -118 77 -118 148 c0 95 39 184 111 245c63 54 133 88 195 88h11l126 302h54zM278 268l70 169c-71 -8 -122 -101 -137 -169h67zM260 224h-60c-6 -23 -8 -45 -8 -69c0 -26 6 -45 15 -61'], + 0xE37E: [775,235,792,-40,777,'713 775l-37 -89c71 -6 101 -34 101 -78c0 -74 -91 -171 -228 -230l-34 -82c67 -9 104 -51 104 -107c0 -57 -44 -118 -103 -159c-33 -23 -83 -40 -130 -45l-91 -220h-54l88 213c-144 0 -238 69 -238 182c0 55 12 108 44 167c-90 20 -175 76 -175 175 c0 100 110 197 287 197c39 0 87 -2 140 -31l-22 -45c-35 21 -85 21 -111 21c-91 0 -203 -38 -203 -140c0 -76 64 -115 116 -120c97 141 291 281 455 304l37 87h54zM653 631l-68 -165c64 37 101 88 101 129c0 13 -7 31 -33 36zM514 426l82 197c-96 -28 -212 -137 -282 -248 l1 -1c46 1 131 20 199 52zM488 231l-76 -183c43 21 93 63 93 126c0 15 -8 41 -17 57zM461 298l22 54c-64 -21 -138 -33 -198 -33c-46 -70 -60 -129 -60 -179c0 -76 59 -107 126 -107l87 210c-69 -5 -103 -61 -116 -135l-50 8c11 98 73 172 189 182'], + 0xE380: [707,14,670,10,662,'662 707l-119 -433h85l-13 -44h-84l-6 -21c-18 -64 -25 -94 -25 -118c0 -11 4 -29 16 -29c20 0 42 13 82 71l21 -14c-59 -97 -115 -132 -169 -132s-83 26 -83 75c0 12 1 27 7 49c-38 -69 -97 -125 -180 -125c-76 0 -124 43 -124 150c0 31 5 63 15 93l-75 1l13 44h79 c13 28 30 55 49 80c46 59 122 119 201 119c46 0 87 -21 97 -68l49 188c3 11 4 19 4 26c0 15 -15 27 -36 27h-31v24c77 6 165 22 227 37zM240 274h165c10 36 15 72 15 102c0 34 -23 55 -46 55c-50 0 -98 -75 -118 -118c-6 -13 -12 -26 -16 -39zM392 230l-166 -1 c-11 -40 -16 -77 -16 -101c0 -45 11 -69 44 -69c43 0 80 42 99 78c15 28 29 60 39 93'], + 0xE382: [707,14,622,14,598,'598 461v-24c-42 -5 -81 -11 -142 -65l-84 -75l5 -23h165l-13 -44h-143c32 -137 56 -167 75 -167s50 22 77 70l22 -13c-45 -95 -87 -134 -163 -134c-91 0 -124 158 -137 227l-32 -25l-51 -188h-142l64 230h-85l13 44h84l81 291c6 22 13 46 13 55c0 16 -13 26 -42 26h-22 v24c50 4 102 10 149 20l54 11l25 6l-25 -92l-54 -198l-39 -143h35l4 3c32 24 71 56 101 83c5 4 12 10 16 14c10 9 16 16 21 23c6 7 7 13 7 17c0 16 -13 21 -52 23v24h215'], + 0xE384: [628,14,411,18,390,'390 415h-97l-40 -141h93l-13 -44h-93c-9 -34 -19 -68 -29 -102c-4 -14 -7 -30 -7 -45c0 -11 2 -24 16 -24c33 0 67 55 84 80l20 -14c-44 -78 -93 -139 -190 -139c-42 0 -74 20 -74 65c0 62 23 120 40 179h-82l13 44h81l41 141h-58v32c100 38 173 90 233 181h25l-48 -169 h85v-44'], + 0xE386: [473,14,355,15,338,'338 274l-13 -44h-87l-18 -63c-7 -26 -18 -54 -18 -82c0 -19 6 -26 15 -26c6 0 13 3 20 7c11 7 23 20 34 32c15 17 25 35 29 41l20 -14c-21 -42 -46 -78 -79 -103c-29 -22 -66 -36 -109 -36c-41 0 -74 19 -74 64c0 29 7 58 14 85l25 95h-82l13 44h80c10 46 18 92 18 128 c0 12 -1 23 -1 35c52 3 98 15 149 29c7 2 14 4 20 7l10 -4l-54 -195h88'], + 0xE388: [666,0,493,25,508,'508 234l-13 -44h-80l20 -190h-40l-17 190h-78l-125 -190h-150l129 190h-60l13 44h77l163 240c-2 27 -10 135 -47 135c-11 0 -18 -7 -18 -18c0 -6 3 -12 3 -18c0 -33 -29 -53 -60 -53c-39 0 -62 30 -62 67c0 54 49 79 97 79c118 0 121 -147 130 -232l21 -200h97zM374 234 l-6 60l-39 -60h45'], + 0xE389: [666,0,480,16,472,'472 434h-91l45 -434h-40l-27 294l-193 -294h-150l295 434h-137v40h164c-2 26 -10 135 -47 135c-11 0 -18 -7 -18 -18c0 -6 3 -12 3 -18c0 -33 -29 -53 -60 -53c-39 0 -62 30 -62 67c0 54 49 79 97 79c58 0 91 -34 107 -88c11 -33 15 -70 19 -104h95v-40'], + 0xE3C5: [462,207,514,47,475,'475 462l-116 -444c-42 -160 -107 -225 -207 -225c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15c28 0 49 36 74 136l89 350c8 30 12 54 12 67c0 21 -12 30 -41 30h-22v27c112 10 149 15 209 28'], + 0xE3C6: [462,9,357,55,274,'255 104l19 -12c-32 -57 -82 -101 -152 -101c-51 0 -67 24 -67 56c0 10 1 20 4 31l66 285c3 13 5 20 5 27c0 11 -5 18 -20 18c-9 0 -21 0 -37 -3l-4 23l197 34l-78 -331c-4 -15 -8 -30 -8 -48c0 -13 9 -25 21 -25c20 0 35 23 54 46'], + 0xE400: [703,205,556,-188,517,'27 449h76c39 115 53 155 111 202c38 31 94 52 151 52c88 0 152 -39 152 -95c0 -35 -24 -58 -57 -58s-58 25 -58 56c0 29 12 34 12 50c0 12 -9 17 -26 17c-37 0 -71 -14 -90 -37c-32 -39 -47 -75 -77 -187h117c15 0 89 3 178 13l-116 -444c-42 -160 -107 -223 -207 -223 c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 51 -19 51 -49c0 -21 -17 -21 -17 -35c0 -10 12 -15 24 -15c28 0 49 34 74 134l89 350c8 30 12 54 12 67c0 19 -11 30 -35 30h-124l-94 -385c-13 -52 -46 -121 -77 -160c-33 -42 -82 -67 -131 -67c-56 0 -97 33 -97 78 c0 32 20 55 49 55s51 -21 51 -50c0 -23 -19 -26 -19 -39c0 -6 5 -10 17 -10c44 0 61 35 93 177l89 401h-75'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Alphabets/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/Italic/Main.js new file mode 100644 index 0000000..41e6b07 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/Italic/Main.js @@ -0,0 +1,204 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Alphabets-italic'] = { + directory: 'Alphabets/Italic', + family: 'STIXMathJax_Alphabets', + style: 'italic', + id: 'STIXWEBALPHABETSI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x384: [649,-494,289,160,322,'160 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34'], + 0x385: [649,-494,333,70,387,'387 543c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM160 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM168 543c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48 c25 0 48 -24 48 -49'], + 0x386: [678,0,611,-51,564,'139 523l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553 c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194'], + 0x387: [441,-330,333,150,261,'261 384c0 -30 -25 -54 -57 -54c-30 0 -54 24 -54 54c0 32 24 57 55 57s56 -25 56 -57'], + 0x388: [678,0,630,7,679,'7 523l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM679 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31 c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497'], + 0x389: [678,0,740,4,821,'821 653v-16c-57 -10 -68 -16 -84 -74l-132 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 79 -42v-16h-274v16c71 5 89 28 102 77l64 233h-285l-66 -244c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-245v16c56 6 68 21 86 86l118 430c7 27 12 49 12 64c0 29 -14 35 -77 41 v16h271v-16c-60 -4 -87 -23 -100 -71l-54 -198h285l46 164c7 26 14 47 14 63c0 24 -16 38 -72 42v16h248zM4 523l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34'], + 0x38A: [678,0,350,3,429,'3 523l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM429 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247'], + 0x38C: [678,18,722,58,699,'58 523l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481 c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x38E: [678,0,580,8,725,'725 604l-16 -7c-9 13 -21 25 -40 25c-135 0 -232 -258 -264 -371l-40 -140c-8 -27 -10 -42 -10 -55c0 -25 14 -34 53 -37l36 -3v-16h-289v16c66 4 89 18 107 82l56 197c8 53 10 89 10 128c0 139 -29 193 -109 193c-18 0 -25 -2 -46 -11l-7 14c42 30 73 49 119 49 c108 0 143 -90 143 -207c0 -15 0 -30 -2 -46h3v1c47 130 142 250 222 250c19 0 34 -4 48 -14c17 -13 22 -30 26 -48zM8 523l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34'], + 0x38F: [678,0,762,-6,739,'50 523l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM242 94l5 37c-108 35 -147 112 -147 203c0 89 53 178 132 243c72 59 161 89 273 89c163 0 234 -96 234 -230c0 -138 -105 -270 -282 -305l-7 -37h128c58 6 99 9 128 85l18 -5l-56 -174 h-280l40 166c118 26 206 158 206 286c0 105 -35 181 -140 181c-77 0 -140 -33 -192 -87c-60 -63 -97 -142 -97 -216c0 -76 25 -145 84 -164l-24 -166h-271l42 179l17 -5c-2 -10 -4 -26 -4 -36c0 -38 27 -44 62 -44h131'], + 0x390: [649,11,278,49,387,'387 543c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM160 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM168 543c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48 c25 0 48 -24 48 -49zM222 114l13 -11c-55 -84 -87 -114 -137 -114c-33 0 -49 18 -49 55c0 20 7 55 22 111l48 177c5 18 9 36 9 44c0 20 -10 23 -64 24v16c39 3 59 6 160 25l4 -3l-94 -343c-5 -17 -10 -30 -10 -44c0 -10 6 -15 14 -15c17 0 41 21 84 78'], + 0x3AA: [856,0,333,-8,460,'460 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM260 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76 c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247'], + 0x3AB: [856,0,556,78,648,'576 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM376 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM648 604l-16 -7c-9 13 -21 25 -40 25c-135 0 -232 -258 -264 -371l-40 -140 c-8 -27 -10 -42 -10 -55c0 -25 14 -34 53 -37l36 -3v-16h-289v16c66 4 89 18 107 82l56 197c8 53 10 89 10 128c0 139 -29 193 -109 193c-18 0 -25 -2 -46 -11l-7 14c42 30 73 49 119 49c108 0 143 -90 143 -207c0 -15 0 -30 -2 -46h3v1c47 130 142 250 222 250 c19 0 34 -4 48 -14c17 -13 22 -30 26 -48'], + 0x3AC: [649,11,552,27,549,'300 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM549 428l-142 -261v-18c0 -48 12 -99 34 -99c14 0 30 19 51 74l16 -7c-22 -74 -53 -126 -101 -126c-38 0 -50 44 -52 105c-50 -61 -119 -107 -194 -107c-97 0 -134 68 -134 152 c0 81 35 166 91 223c44 45 111 77 173 77c85 0 126 -60 126 -119l46 106h86zM359 272c0 68 -13 148 -77 148c-63 0 -173 -136 -173 -295c0 -57 18 -115 69 -115c70 0 138 135 165 191c4 19 16 44 16 71'], + 0x3AD: [649,11,444,30,425,'248 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM360 98l16 -10c-61 -77 -124 -99 -199 -99c-120 0 -147 59 -147 111c0 62 51 113 116 130c-34 6 -53 34 -53 64c1 76 86 147 224 147c65 0 108 -35 108 -83c0 -29 -29 -46 -48 -46 c-24 0 -39 16 -39 40c0 20 15 29 15 48c0 11 -14 20 -37 20c-58 0 -141 -30 -141 -122c0 -35 31 -53 74 -53c10 0 28 7 53 7c18 0 34 -9 34 -21c0 -18 -12 -27 -45 -27c-18 0 -25 9 -46 9c-47 0 -129 -31 -129 -107c0 -61 46 -81 89 -81c53 0 102 16 155 73'], + 0x3AE: [649,205,474,14,442,'231 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM148 228l2 -1c96 154 165 214 221 214c38 0 71 -18 71 -57c0 -22 -3 -36 -10 -63l-87 -321c-17 -62 -30 -140 -30 -171c0 -14 5 -27 8 -34h-73c-9 11 -11 26 -11 44c0 25 5 68 33 170 l75 274c3 10 14 59 14 72c0 15 -1 35 -25 35c-51 0 -175 -150 -215 -284l-32 -106h-75l82 305c7 25 14 48 14 62c0 9 -3 17 -14 17c-18 0 -48 -40 -63 -58l-12 10c3 5 14 23 29 41c29 36 67 61 97 61c31 0 40 -20 40 -45c0 -42 -28 -130 -39 -165'], + 0x3AF: [649,11,278,49,288,'126 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM222 114l13 -11c-55 -84 -87 -114 -137 -114c-33 0 -49 18 -49 55c0 20 7 55 22 111l48 177c5 18 9 36 9 44c0 20 -10 23 -64 24v16c39 3 59 6 160 25l4 -3l-94 -343 c-5 -17 -10 -30 -10 -44c0 -10 6 -15 14 -15c17 0 41 21 84 78'], + 0x3B0: [649,10,478,19,446,'434 543c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM207 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM215 543c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48 c25 0 48 -24 48 -49zM276 426v15c103 0 170 -25 170 -138c0 -124 -120 -313 -267 -313c-100 0 -134 44 -134 104c0 42 15 91 32 146l28 93c5 18 8 32 8 39c0 10 -4 14 -12 14c-14 0 -28 -8 -69 -60l-13 9c47 71 93 106 131 106c28 0 44 -15 44 -45c0 -9 -1 -28 -8 -52 l-50 -181c-7 -25 -11 -51 -11 -74c0 -41 12 -78 57 -78c108 0 180 218 180 316c0 75 -28 93 -86 99'], + 0x3CA: [606,11,278,49,359,'359 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM159 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM222 114l13 -11c-55 -84 -87 -114 -137 -114c-33 0 -49 18 -49 55 c0 20 7 55 22 111l48 177c5 18 9 36 9 44c0 20 -10 23 -64 24v16c39 3 59 6 160 25l4 -3l-94 -343c-5 -17 -10 -30 -10 -44c0 -10 6 -15 14 -15c17 0 41 21 84 78'], + 0x3CB: [606,10,478,19,446,'421 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM221 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM276 426v15c103 0 170 -25 170 -138c0 -124 -120 -313 -267 -313 c-100 0 -134 44 -134 104c0 42 15 91 32 146l28 93c5 18 8 32 8 39c0 10 -4 14 -12 14c-14 0 -28 -8 -69 -60l-13 9c47 71 93 106 131 106c28 0 44 -15 44 -45c0 -9 -1 -28 -8 -52l-50 -181c-7 -25 -11 -51 -11 -74c0 -41 12 -78 57 -78c108 0 180 218 180 316 c0 75 -28 93 -86 99'], + 0x3CC: [649,11,500,27,468,'263 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326 c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x3CD: [649,10,478,19,446,'216 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM276 426v15c103 0 170 -25 170 -138c0 -124 -120 -313 -267 -313c-100 0 -134 44 -134 104c0 42 15 91 32 146l28 93c5 18 8 32 8 39c0 10 -4 14 -12 14c-14 0 -28 -8 -69 -60l-13 9 c47 71 93 106 131 106c28 0 44 -15 44 -45c0 -9 -1 -28 -8 -52l-50 -181c-7 -25 -11 -51 -11 -74c0 -41 12 -78 57 -78c108 0 180 218 180 316c0 75 -28 93 -86 99'], + 0x3CE: [649,11,686,27,654,'355 494l94 132c11 15 22 23 43 23c11 0 25 -7 25 -22s-17 -31 -40 -52l-88 -81h-34zM472 439h18c51 0 92 -10 119 -33c33 -28 45 -73 45 -121c0 -54 -17 -105 -43 -154c-53 -99 -130 -142 -194 -142c-78 0 -98 36 -114 71c-39 -47 -76 -71 -147 -71 c-64 0 -129 42 -129 141c0 27 3 54 10 81c33 121 136 228 277 228h18v-16c-51 0 -96 -18 -134 -65c-50 -63 -87 -171 -87 -254c0 -69 25 -94 57 -94c45 0 103 56 122 111c-2 15 -3 37 -3 51c0 25 4 56 12 86c14 52 44 100 81 100c24 0 35 -19 35 -46 c0 -45 -20 -108 -42 -146c-8 -14 -21 -36 -31 -51c-2 -7 -2 -14 -2 -21c0 -43 23 -84 65 -84c56 0 95 47 117 88c31 58 48 146 48 210c0 18 -1 46 -5 61c-12 47 -51 54 -93 54v16'], + 0x401: [856,0,611,1,631,'585 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM385 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM631 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -36 73 -193 73 c-57 0 -67 -4 -73 -26l-63 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 46 -28 46 -85 46h-78l-31 -112c-23 -83 -35 -134 -35 -146c0 -24 23 -34 79 -34c98 0 150 12 201 39c32 17 56 45 94 98l16 -8l-62 -162h-504v16c56 10 65 16 81 74l119 442 c5 20 11 52 11 64c0 27 -15 35 -77 41v16h496'], + 0x402: [653,208,723,70,663,'341 336h1c51 48 116 88 196 88c72 0 125 -29 125 -108c0 -122 -77 -371 -163 -461c-37 -39 -76 -63 -125 -63c-54 0 -91 40 -91 82c0 41 20 74 62 74c26 0 51 -16 51 -49c0 -32 -28 -39 -28 -51c0 -18 15 -19 23 -19c67 0 171 391 171 458c0 44 -7 90 -65 90 c-56 0 -102 -28 -169 -83l-45 -166c-7 -27 -16 -51 -16 -70c0 -25 16 -41 70 -42v-16h-268v16c69 6 92 17 107 75l140 526h-51c-107 0 -136 -30 -177 -123l-18 4l42 155h512l-43 -159l-18 2c3 17 3 28 3 41c0 53 -37 80 -102 80h-50'], + 0x403: [914,0,569,-36,603,'355 744l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM603 653l-44 -164l-17 2c2 12 3 39 3 48c0 53 -36 78 -101 78h-158l-132 -489c-7 -27 -15 -60 -15 -73c0 -24 17 -35 76 -39v-16h-251v16c59 4 68 24 83 78l123 442 c7 25 10 45 10 61c0 28 -15 40 -61 40v16h484'], + 0x404: [666,18,657,67,680,'680 664l-37 -198l-18 1c-12 107 -51 163 -139 163c-74 0 -144 -38 -199 -97c-45 -48 -76 -109 -93 -175h266l-13 -42h-261c-5 -28 -7 -56 -7 -84c0 -140 77 -213 175 -213c61 0 124 15 124 54c0 12 -11 18 -11 42c0 40 26 66 65 66c31 0 50 -25 50 -49 c0 -33 -19 -62 -40 -82c-53 -53 -147 -68 -214 -68c-153 0 -261 96 -261 261c0 141 77 272 187 350c64 46 140 73 219 73c33 0 65 -2 107 -17c20 -7 32 -7 41 -7c20 0 30 6 38 22h21'], + 0x405: [667,18,500,7,498,'498 667l-40 -200l-18 3c0 102 -22 163 -119 163c-69 0 -112 -37 -112 -100c0 -49 8 -65 99 -156c91 -92 113 -135 113 -200c0 -114 -87 -195 -202 -195c-31 0 -58 7 -104 23c-27 10 -36 12 -47 12c-20 0 -36 -9 -43 -32h-18l34 224l20 -2c-2 -9 -2 -16 -2 -23 c0 -98 60 -167 144 -167c77 0 131 52 131 128c0 43 -14 73 -60 123l-39 42c-14 15 -26 29 -39 42c-60 64 -75 96 -75 150c0 105 82 164 178 164c31 0 64 -5 85 -14c21 -8 33 -11 46 -11c22 0 31 5 45 26h23'], + 0x406: [653,0,333,-7,382,'382 653v-16c-56 -7 -65 -16 -82 -77l-116 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-245v16c55 10 69 19 84 75l117 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247'], + 0x407: [856,0,333,-31,433,'433 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM233 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM358 653v-16c-56 -7 -65 -16 -82 -77l-116 -429c-9 -32 -15 -56 -15 -76 c0 -28 12 -32 69 -39v-16h-245v16c55 10 69 19 84 75l117 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247'], + 0x408: [653,18,444,-34,463,'463 653v-16c-57 -8 -65 -14 -82 -74l-103 -367c-21 -76 -45 -125 -71 -159c-29 -38 -73 -55 -124 -55c-70 0 -117 35 -117 88c0 32 18 56 45 56s51 -21 51 -46c0 -12 -3 -18 -3 -27c0 -28 11 -39 35 -39s42 24 53 64l127 454c8 29 12 49 12 64c0 27 -14 35 -77 41v16 h254'], + 0x409: [653,16,961,-35,901,'588 364h87c103 0 226 -17 226 -132c0 -141 -126 -232 -282 -232h-286v16c55 8 67 21 83 80l129 480c3 12 4 18 4 22c0 14 -8 19 -26 19h-119c-28 0 -37 -11 -44 -38l-89 -323c-18 -65 -48 -172 -101 -226c-29 -30 -65 -46 -114 -46c-47 0 -91 33 -91 78 c0 37 21 55 53 55c57 0 33 -78 83 -78c59 0 94 91 136 246l70 259c5 20 8 35 8 47c0 36 -22 45 -63 46l5 16h464v-16c-39 -5 -66 -20 -75 -55zM578 328l-50 -186c-2 -6 -15 -51 -15 -64c0 -28 25 -42 67 -42c113 0 209 50 209 190c0 77 -64 102 -140 102h-71'], + 0x40A: [653,0,966,-28,906,'591 364h89c54 0 112 0 156 -21c40 -19 70 -60 70 -115c0 -141 -126 -228 -282 -228h-286v16c55 8 67 21 83 80l63 232h-267l-67 -246c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-245v16c56 6 69 21 87 86l117 430c7 27 12 49 12 64c0 29 -14 35 -77 41v16h271v-16 c-60 -4 -87 -23 -100 -71l-55 -202h267l44 168c6 22 12 49 12 62c0 28 -14 36 -71 43v16h247v-16c-39 -5 -66 -20 -76 -55zM583 328l-51 -186c-2 -6 -14 -51 -14 -64c0 -28 24 -42 66 -42c113 0 210 50 210 190c0 77 -62 102 -138 102h-73'], + 0x40B: [653,0,786,70,701,'701 0h-269v16c71 5 86 28 99 77l21 77c8 29 22 83 22 118c0 47 -15 89 -76 89c-56 0 -102 -28 -169 -83l-51 -183c-5 -19 -10 -35 -10 -52c0 -30 20 -39 70 -43v-16h-268v16c69 6 89 16 105 75l143 526h-51c-107 0 -137 -30 -178 -123l-18 4l42 155h512l-43 -159l-18 2 c3 17 3 28 3 41c0 53 -36 80 -101 80h-50l-75 -281h1c50 49 119 88 196 88c79 0 136 -34 136 -109c0 -25 -3 -60 -12 -93l-34 -128c-4 -16 -6 -29 -6 -39c0 -25 17 -32 79 -39v-16'], + 0x40C: [914,0,621,-28,657,'340 744l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM225 370h28c111 0 155 65 201 160c20 41 39 73 59 94c23 24 47 37 84 37c31 0 60 -24 60 -51c0 -12 -1 -54 -50 -54c-32 0 -39 40 -55 40c-28 0 -54 -64 -62 -80 c-51 -97 -89 -151 -167 -174v-2c40 -24 57 -47 84 -107l67 -151c31 -54 41 -60 104 -66v-16h-165l-114 248c-24 53 -28 69 -58 77c-9 2 -15 3 -27 3l-57 -217c-7 -28 -11 -40 -11 -51c0 -31 16 -39 71 -44v-16h-245v16c60 7 68 20 81 71l118 445c7 25 14 46 14 62 c0 27 -17 40 -79 43v16h270v-16c-52 -4 -84 -18 -99 -74'], + 0x40E: [887,14,656,110,716,'629 831c0 -65 -79 -100 -143 -100c-62 0 -144 35 -144 100c0 41 32 56 53 56c20 0 40 -15 40 -38c0 -30 -17 -28 -17 -43c0 -21 21 -43 68 -43c48 0 67 22 67 43c0 15 -17 14 -17 44c0 23 22 37 43 37s50 -15 50 -56zM716 653v-16c-50 -5 -78 -20 -129 -111l-221 -394 c-53 -95 -106 -146 -173 -146c-43 0 -83 25 -83 66c0 45 30 61 53 61c63 0 41 -78 62 -78c39 0 95 81 132 166l-84 281c-40 135 -44 143 -99 155v16h239v-16l-26 -3c-36 -4 -49 -13 -49 -38c0 -10 2 -22 5 -33l79 -261l145 262c9 17 20 34 20 48c0 15 -23 25 -60 25v16h189'], + 0x40F: [653,179,722,-25,747,'747 653v-16c-57 -10 -68 -16 -83 -74l-117 -442c-4 -14 -14 -49 -14 -63c0 -28 14 -35 71 -42l-4 -16h-182c-39 0 -87 -21 -126 -75c-19 -26 -34 -75 -42 -104h-19c2 9 9 63 9 80c0 78 -36 99 -84 99h-181v16c56 6 69 21 86 86l115 430c7 26 12 52 12 64 c0 28 -12 34 -77 41v16h271v-16c-61 -5 -87 -22 -100 -71l-131 -491c-2 -9 -4 -16 -4 -21c0 -17 13 -18 28 -18h214c27 0 37 8 46 40l132 495c2 7 3 15 3 22c0 26 -16 40 -71 44v16h248'], + 0x410: [668,0,611,-49,566,'566 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM371 262l-45 263l-149 -263h194'], + 0x411: [653,0,590,-28,603,'603 653l-44 -165l-17 3c1 11 3 18 3 47c0 52 -36 79 -103 79h-93c-39 0 -56 -3 -64 -35l-58 -218h87c103 0 226 -17 226 -132c0 -141 -126 -232 -282 -232h-286v16c55 8 70 22 86 81l117 435c6 22 12 49 12 62c0 28 -13 36 -70 43v16h486zM217 328l-51 -187 c-2 -6 -13 -50 -13 -63c0 -28 24 -42 66 -42c106 0 169 23 202 141c5 18 7 35 7 49c0 77 -64 102 -140 102h-71'], + 0x412: [653,0,597,-23,571,'113 653h250c139 0 208 -51 208 -130c0 -106 -84 -156 -175 -172v-1c86 -26 128 -79 128 -150c0 -134 -113 -200 -275 -200h-272v16c55 8 71 18 87 80l115 436c7 25 11 49 11 64c0 29 -14 36 -77 41v16zM232 365h37c131 0 201 51 201 150c0 74 -36 102 -117 102 c-39 0 -52 0 -62 -36zM222 329l-32 -117c-21 -76 -32 -121 -32 -134c0 -28 25 -42 67 -42c115 0 191 53 191 164c0 62 -31 106 -69 119c-20 7 -62 10 -125 10'], + 0x413: [653,0,569,-36,603,'603 653l-44 -164l-17 2c2 12 3 39 3 48c0 53 -36 78 -101 78h-158l-132 -489c-7 -27 -15 -60 -15 -73c0 -24 17 -35 76 -39v-16h-251v16c59 4 68 24 83 78l123 442c7 25 10 45 10 61c0 28 -15 40 -61 40v16h484'], + 0x414: [653,179,655,-103,696,'696 653v-16c-57 -8 -68 -16 -84 -75l-120 -448c-5 -20 -9 -38 -9 -52c0 -30 17 -46 67 -46l-52 -195h-19c1 7 9 66 9 80c0 84 -44 99 -97 99h-306c-65 0 -121 -57 -169 -179h-19l53 195h19c101 0 174 139 280 528c6 20 8 35 8 47c0 36 -22 45 -64 46l5 16h498zM387 81 l134 501c2 7 3 13 3 18c0 11 -6 17 -28 17h-151c-28 0 -36 -11 -43 -35c-85 -310 -140 -465 -214 -546h251c28 0 40 16 48 45'], + 0x415: [653,0,611,1,631,'631 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -36 73 -193 73c-57 0 -67 -4 -73 -26l-63 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 46 -28 46 -85 46h-78l-31 -112c-23 -83 -35 -134 -35 -146c0 -24 23 -34 79 -34c98 0 150 12 201 39 c32 17 56 45 94 98l16 -8l-62 -162h-504v16c56 10 65 16 81 74l119 442c5 20 11 52 11 64c0 27 -15 35 -77 41v16h496'], + 0x416: [661,0,956,-55,972,'548 370h17c27 0 71 5 108 26c48 28 83 83 108 134c20 41 36 74 56 95c23 24 38 36 75 36c31 0 60 -24 60 -51c0 -12 -2 -54 -46 -54c-32 0 -31 40 -47 40c-44 0 -67 -125 -143 -196c-29 -27 -59 -47 -97 -58v-2c40 -24 57 -47 84 -107l67 -151c31 -54 41 -60 104 -66 v-16h-165l-114 248c-24 53 -31 69 -61 77c-9 2 -6 3 -16 3l-57 -217c-7 -28 -11 -40 -11 -51c0 -31 8 -39 63 -44v-16h-251v16c60 7 79 18 93 71l65 241c-43 0 -71 -9 -128 -78l-204 -250h-163v16c65 6 67 7 115 66l146 180c46 56 88 79 140 81v2c-47 23 -73 57 -73 119 c0 27 5 54 5 84c0 22 -2 53 -19 53c-16 0 -34 -44 -66 -44s-45 25 -45 45c0 30 36 59 81 59c64 0 88 -42 88 -96c0 -26 -5 -70 -5 -92c0 -88 50 -103 128 -103h10l44 162c7 25 14 46 14 62c0 27 -17 40 -79 43v16h270v-16c-52 -4 -84 -18 -99 -74'], + 0x417: [668,16,564,9,548,'184 667v-3c0 -16 18 -18 34 -18c15 0 33 4 53 9c39 11 66 13 100 13c133 0 177 -74 177 -148c0 -43 -19 -80 -47 -108c-36 -36 -84 -58 -116 -61v-2c43 -6 118 -43 118 -129c0 -109 -75 -181 -165 -213c-50 -18 -96 -23 -151 -23c-117 0 -178 52 -178 135 c0 37 17 72 59 72c36 0 52 -23 52 -50c0 -10 -7 -26 -16 -38c-10 -13 -21 -20 -21 -30c0 -30 50 -52 109 -52c122 0 203 83 203 201c0 68 -46 107 -123 107h-45l9 36h40c101 0 171 64 171 157c0 56 -36 110 -99 110c-98 0 -157 -50 -205 -165l-18 -1l37 201h22'], + 0x418: [653,0,708,-25,749,'749 653v-16c-56 -9 -68 -16 -84 -74l-121 -453c-5 -17 -10 -35 -10 -44c0 -40 12 -43 77 -50v-16h-269v16c75 5 88 29 101 77l109 405l-399 -403c-4 -13 -6 -24 -6 -33c0 -31 21 -44 70 -46v-16h-242v16c64 9 68 20 91 105l110 412c6 23 12 50 12 63c0 30 -14 35 -77 41 v16h267v-16c-53 -4 -84 -18 -104 -94l-101 -381l396 401c4 16 6 27 6 37c0 25 -20 33 -66 37v16h240'], + 0x419: [887,0,708,-25,749,'613 831c0 -65 -79 -100 -143 -100c-62 0 -144 35 -144 100c0 41 32 56 53 56c20 0 40 -15 40 -38c0 -30 -17 -28 -17 -43c0 -21 21 -43 68 -43c48 0 67 22 67 43c0 15 -17 14 -17 44c0 23 22 37 43 37s50 -15 50 -56zM749 653v-16c-56 -9 -68 -16 -84 -74l-121 -453 c-5 -17 -10 -35 -10 -44c0 -40 12 -43 77 -50v-16h-269v16c75 5 88 29 101 77l109 405l-399 -403c-4 -13 -6 -24 -6 -33c0 -31 21 -44 70 -46v-16h-242v16c64 9 68 20 91 105l110 412c6 23 12 50 12 63c0 30 -14 35 -77 41v16h267v-16c-53 -4 -84 -18 -104 -94l-101 -381 l396 401c4 16 6 27 6 37c0 25 -20 33 -66 37v16h240'], + 0x41A: [661,0,621,-28,657,'225 370h28c111 0 155 65 201 160c20 41 39 73 59 94c23 24 47 37 84 37c31 0 60 -24 60 -51c0 -12 -1 -54 -50 -54c-32 0 -39 40 -55 40c-28 0 -54 -64 -62 -80c-51 -97 -89 -151 -167 -174v-2c40 -24 57 -47 84 -107l67 -151c31 -54 41 -60 104 -66v-16h-165l-114 248 c-24 53 -28 69 -58 77c-9 2 -15 3 -27 3l-57 -217c-7 -28 -11 -40 -11 -51c0 -31 16 -39 71 -44v-16h-245v16c60 7 68 20 81 71l118 445c7 25 14 46 14 62c0 27 -17 40 -79 43v16h270v-16c-52 -4 -84 -18 -99 -74'], + 0x41B: [653,16,699,-35,740,'740 653v-16c-57 -9 -68 -16 -84 -74l-129 -481c-2 -8 -3 -14 -3 -24c0 -30 30 -38 79 -42v-16h-271v16c76 5 89 24 111 108l121 455c2 7 3 14 3 19c0 14 -8 19 -26 19h-137c-28 0 -37 -11 -44 -38l-89 -323c-18 -65 -48 -172 -101 -226c-29 -30 -65 -46 -114 -46 c-47 0 -91 26 -91 75c0 37 21 58 53 58c55 0 38 -81 83 -81c59 0 96 100 136 249l70 259c5 20 8 35 8 47c0 36 -22 45 -63 46l5 16h483'], + 0x41C: [653,0,814,-33,855,'855 653v-16c-57 -9 -67 -23 -81 -74l-118 -443c-7 -25 -14 -46 -14 -62c0 -26 18 -40 81 -42l-1 -16h-270v16c65 7 85 24 102 86l123 459l-377 -561h-17l-62 546l-118 -428c-5 -18 -9 -43 -9 -54c0 -28 19 -44 70 -48v-16h-197v16c52 6 68 22 100 134l114 401 c8 27 12 44 12 52c0 19 -24 31 -74 34v16h181l56 -492l335 492h164'], + 0x41D: [653,0,708,-26,749,'749 653v-16c-57 -10 -69 -16 -84 -74l-128 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 79 -42v-16h-272v16c71 5 89 28 102 77l63 233h-287l-66 -244c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-246l2 16c56 6 69 21 86 86l115 430c7 27 12 49 12 64 c0 29 -13 35 -76 41v16h271v-16c-60 -4 -89 -23 -102 -71l-52 -198h286l45 164c7 26 14 47 14 63c0 24 -16 38 -72 42v16h246'], + 0x41E: [666,18,712,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332 c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x41F: [653,0,704,-29,745,'745 653v-16c-57 -10 -69 -16 -84 -74l-128 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 79 -42v-16h-271v16c71 5 89 28 102 77l128 485c2 9 4 16 4 21c0 17 -13 18 -28 18h-215c-27 0 -38 -8 -47 -40l-133 -495c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-245v16 c56 6 71 21 88 86l114 430c7 27 12 49 12 64c0 29 -14 35 -77 41v16h637'], + 0x420: [653,0,568,-24,578,'119 653h241c147 0 218 -52 218 -148c0 -54 -27 -109 -68 -143c-46 -38 -116 -57 -205 -57c-42 0 -63 3 -89 9l-51 -194c-7 -27 -14 -48 -14 -63c0 -23 15 -35 69 -41v-16h-244v16c57 8 66 17 84 82l113 414c13 48 17 68 17 83c0 27 -14 35 -71 42v16zM291 586l-66 -240 c29 -5 33 -5 51 -5c62 0 97 7 128 25c44 25 71 69 71 134c0 89 -50 117 -132 117c-28 0 -46 -8 -52 -31'], + 0x421: [666,18,667,67,690,'690 664l-37 -200l-18 3c-12 107 -61 163 -149 163c-74 0 -144 -38 -199 -97c-72 -77 -108 -191 -108 -301c0 -140 64 -205 175 -205c82 0 142 29 229 119l18 -15c-90 -106 -170 -149 -273 -149c-153 0 -261 96 -261 261c0 141 77 272 187 350c64 46 140 73 219 73 c33 0 75 -2 117 -17c20 -7 32 -7 41 -7c20 0 30 6 38 22h21'], + 0x422: [653,0,556,70,644,'644 653l-43 -159l-18 2c3 17 3 28 3 41c0 53 -36 80 -101 80h-62l-130 -489c-6 -21 -14 -44 -14 -66c0 -31 12 -46 88 -46v-16h-288v16c69 6 93 21 107 75l140 526h-60c-107 0 -137 -30 -178 -123l-18 4l42 155h532'], + 0x423: [653,14,656,110,716,'716 653v-16c-50 -5 -78 -20 -129 -111l-221 -394c-53 -95 -106 -146 -173 -146c-43 0 -83 25 -83 66c0 45 30 61 53 61c63 0 41 -78 62 -78c39 0 93 81 130 166l-82 281c-39 135 -44 143 -99 155v16h239v-16l-26 -3c-36 -4 -49 -13 -49 -38c0 -10 2 -22 5 -33l77 -261 l147 262c9 17 20 34 20 48c0 15 -23 25 -60 25v16h189'], + 0x424: [653,0,772,73,758,'531 582l-12 -42c121 -5 239 -52 239 -179c0 -65 -33 -124 -91 -173s-148 -73 -262 -75c-8 -21 -11 -40 -11 -51c0 -31 25 -46 93 -46v-16h-297v16h9c60 0 91 20 108 97c-120 1 -234 53 -234 178c0 66 31 122 88 171c56 48 144 75 263 78c6 21 14 53 14 64 c0 23 -16 33 -80 33v16h281v-16h-5c-62 0 -94 -23 -103 -55zM509 504l-95 -355c75 0 134 15 179 63s60 93 60 154c0 83 -50 130 -144 138zM316 149l96 355c-75 0 -131 -16 -177 -64c-45 -47 -57 -90 -57 -152c0 -83 44 -132 138 -139'], + 0x425: [653,0,575,-67,617,'617 653v-16c-43 -14 -75 -37 -125 -95l-169 -194l101 -255c24 -60 37 -69 105 -77v-16h-271v16c60 1 77 13 77 37c0 13 -6 31 -14 51l-67 165l-151 -172c-14 -16 -23 -34 -23 -48c0 -22 18 -33 66 -33v-16h-213v16c56 10 83 40 220 200l83 97l-103 255 c-19 48 -37 64 -95 69v16h263v-16c-55 -7 -71 -16 -71 -41c0 -13 5 -29 16 -56l59 -147l145 167c14 16 21 31 21 43c0 19 -18 32 -61 34v16h207'], + 0x426: [653,179,706,-25,747,'747 653v-16c-57 -10 -69 -16 -85 -74l-118 -442c-4 -14 -14 -49 -14 -63c0 -28 17 -35 74 -42l-52 -195h-19c2 7 9 61 9 79c0 85 -43 100 -94 100h-473v16c56 6 69 21 86 86l115 430c7 26 12 52 12 64c0 28 -12 34 -77 41v16h271v-16c-61 -5 -87 -22 -100 -71l-131 -491 c-2 -9 -4 -16 -4 -21c0 -17 13 -18 28 -18h214c27 0 37 8 46 40l132 495c2 7 3 15 3 22c0 26 -16 40 -71 44v16h248'], + 0x427: [653,0,622,54,663,'663 653v-16c-57 -10 -69 -16 -84 -74l-128 -481c-2 -8 -3 -16 -3 -24c0 -28 13 -35 78 -42v-16h-272v16c71 5 89 28 102 77l60 219c-36 -18 -112 -46 -190 -46s-148 13 -148 88c0 18 3 39 10 65l36 134c6 24 8 30 8 43c0 29 -15 35 -78 41v16h271v-16 c-60 -3 -87 -22 -100 -71l-37 -138c-6 -23 -10 -41 -10 -57c0 -44 41 -61 102 -61c67 0 127 28 145 37l50 185c6 23 13 53 13 63c0 24 -14 38 -70 42v16h245'], + 0x428: [653,0,936,-14,977,'977 653v-16c-57 -10 -69 -16 -84 -74l-117 -442c-4 -14 -14 -49 -14 -63c0 -28 22 -35 79 -42l-1 -16h-854v16c56 6 69 21 86 86l115 430c7 26 8 52 8 64c0 28 -9 34 -74 41v16h261v-16c-61 -5 -77 -22 -90 -71l-131 -489c-1 -3 -4 -16 -4 -21c0 -17 13 -20 28 -20h138 c21 0 37 18 45 48l131 487c2 7 3 15 3 22c0 26 -4 40 -59 44v16h232v-16c-57 -10 -65 -16 -81 -74l-132 -486c-2 -6 -4 -15 -4 -21c0 -19 18 -20 29 -20h132c27 0 38 10 47 42l132 493c2 7 3 15 3 22c0 26 -14 40 -69 44v16h245'], + 0x429: [653,179,936,-14,977,'977 653v-16c-57 -10 -69 -16 -84 -74l-117 -442c-4 -14 -14 -49 -14 -63c0 -28 17 -35 74 -42l-52 -195h-19c2 7 9 61 9 79c0 85 -43 100 -94 100h-694v16c56 6 69 21 86 86l115 430c7 26 8 52 8 64c0 28 -9 34 -74 41v16h261v-16c-61 -5 -77 -22 -90 -71l-131 -489 c-1 -3 -4 -16 -4 -21c0 -17 13 -20 28 -20h138c21 0 37 18 45 48l131 487c2 7 3 15 3 22c0 26 -4 40 -59 44v16h232v-16c-57 -10 -65 -16 -81 -74l-132 -486c-2 -6 -4 -15 -4 -21c0 -19 18 -20 29 -20h132c27 0 38 10 47 42l132 493c2 7 3 15 3 22c0 26 -14 40 -69 44v16 h245'], + 0x42A: [653,0,695,63,652,'339 364h87c103 0 226 -17 226 -132c0 -141 -126 -232 -282 -232h-282v16c55 8 67 21 83 80l123 464c1 4 2 18 2 25c0 22 -12 33 -42 33c-109 0 -129 -26 -173 -124l-18 4l42 155h365v-16c-39 -5 -63 -18 -73 -55zM329 328l-51 -186c-2 -6 -14 -51 -14 -64 c0 -28 25 -42 67 -42c113 0 209 50 209 190c0 77 -64 102 -140 102h-71'], + 0x42B: [653,0,852,-28,893,'893 653v-16c-56 -7 -66 -17 -82 -77l-114 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-246v16c55 10 69 19 84 75l117 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h246zM223 364h87c103 0 226 -17 226 -132c0 -141 -126 -232 -282 -232h-282v16 c55 8 67 21 83 80l116 436c6 22 12 49 12 62c0 28 -14 36 -71 43v16h242v-16c-39 -5 -64 -20 -73 -55zM213 328l-49 -186c-2 -6 -15 -51 -15 -64c0 -28 25 -42 67 -42c113 0 208 50 208 190c0 77 -64 102 -140 102h-71'], + 0x42C: [653,0,597,-28,537,'224 364h87c61 0 130 -4 176 -39c27 -20 50 -56 50 -102c0 -131 -126 -223 -282 -223h-283v16c55 8 67 21 83 80l117 436c6 22 12 49 12 62c0 28 -14 36 -71 43v16h244v-16c-39 -5 -64 -20 -74 -55zM214 328l-49 -186c-2 -6 -15 -51 -15 -64c0 -28 25 -42 67 -42 c113 0 208 50 208 190c0 77 -64 102 -140 102h-71'], + 0x42D: [666,18,658,15,636,'157 665h22c3 -16 13 -22 29 -22c15 0 54 6 74 12c40 11 89 11 124 11c128 0 230 -103 230 -259c0 -128 -58 -233 -140 -313c-80 -78 -182 -112 -291 -112c-107 0 -190 41 -190 136c0 37 17 71 59 71c36 0 52 -24 52 -50c0 -37 -37 -49 -37 -68c0 -29 47 -52 117 -52 c92 0 156 38 210 95c51 54 83 126 98 202h-271l11 42h266c3 20 4 40 4 60c0 129 -46 212 -155 212c-112 0 -184 -49 -231 -163l-18 -1'], + 0x42E: [666,18,877,-32,850,'222 368h85c30 76 78 147 135 201c63 60 138 97 214 97c125 0 194 -83 194 -233c0 -160 -86 -300 -196 -380c-59 -44 -126 -71 -192 -71c-114 0 -188 81 -188 223c0 40 6 81 18 121h-82l-64 -244c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-245v16c56 6 69 18 87 86 l114 430c7 27 12 49 12 64c0 29 -14 35 -77 41v16h272v-16c-60 -4 -87 -23 -100 -71zM756 490c0 88 -39 143 -109 143c-66 0 -123 -51 -169 -117c-68 -99 -110 -229 -110 -344c0 -102 37 -157 109 -157c61 0 113 39 155 95c78 104 124 268 124 380'], + 0x42F: [653,0,635,-49,676,'676 653v-15c-57 -11 -69 -17 -84 -75l-117 -442c-6 -22 -11 -43 -11 -58c0 -29 18 -44 77 -47v-16h-274v16c71 5 89 28 102 77l58 212h-31l-293 -305h-152v16c32 2 64 17 96 49l240 245v2c-86 0 -160 58 -160 139c0 46 21 94 53 125c64 61 161 77 275 77h221zM437 347 l51 185c3 10 13 56 13 63c0 20 -8 28 -36 28c-117 0 -235 -47 -235 -178c0 -65 55 -104 143 -104c23 0 51 0 64 6'], + 0x430: [441,11,514,23,482,'469 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 91 52 191 123 258c50 47 108 78 163 78c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21 c-47 -171 -89 -343 -89 -363c0 -9 6 -13 14 -13c9 0 22 8 52 41zM371 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225'], + 0x431: [683,11,498,36,535,'519 683h16c-9 -26 -31 -81 -94 -104c-37 -13 -78 -5 -119 -10c-97 -12 -177 -140 -209 -236l2 -1c24 23 58 56 101 79c39 21 79 30 120 30c81 0 141 -52 141 -140c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 32 6 81 15 115 c35 128 129 402 325 402h60c41 0 64 1 83 38zM393 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x432: [441,11,442,31,423,'276 245v-2c42 0 124 0 124 -92c0 -91 -108 -162 -213 -162c-125 0 -156 70 -156 157c0 110 74 295 283 295c58 0 109 -22 109 -83c0 -64 -67 -100 -147 -113zM357 360c0 40 -24 60 -63 60c-50 0 -135 -42 -171 -197c110 23 234 57 234 137zM313 148c0 50 -22 73 -66 73 c-34 0 -97 -15 -128 -26c-4 -11 -12 -51 -12 -83c0 -59 23 -102 80 -102c81 0 126 73 126 138'], + 0x433: [441,11,390,1,384,'101 348l-10 13c38 36 95 80 182 80c67 0 111 -36 111 -91c0 -137 -300 -130 -300 -258c0 -42 37 -55 79 -55c37 0 73 4 139 50l12 -12c-78 -71 -125 -86 -184 -86c-82 0 -129 34 -129 91c0 123 301 153 301 255c0 32 -25 58 -71 58c-52 0 -84 -11 -130 -45'], + 0x434: [683,11,489,30,470,'211 666l13 17c145 -33 246 -175 246 -324c0 -195 -127 -370 -293 -370c-91 0 -147 46 -147 140c0 152 136 312 280 312c44 0 69 -17 87 -49l2 1c-12 97 -77 234 -188 273zM387 326c0 57 -28 94 -71 94c-44 0 -90 -30 -132 -89c-49 -68 -70 -143 -70 -224 c0 -55 31 -97 78 -97c44 0 87 26 124 82c44 65 71 163 71 234'], + 0x435: [441,11,440,34,422,'368 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -142 54 -142 137c0 155 156 315 306 315c53 0 82 -26 82 -68c0 -86 -115 -164 -294 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 92 16 157 75zM134 209l1 -1c86 21 134 39 171 74c31 30 50 66 50 97 c0 24 -7 39 -35 39c-57 0 -153 -120 -187 -209'], + 0x436: [441,11,799,0,791,'438 242h58c33 101 118 199 223 199c52 0 72 -26 72 -55c0 -31 -21 -41 -36 -41c-56 0 -26 65 -69 65c-17 0 -37 -13 -56 -34c-52 -57 -80 -174 -80 -237c0 -78 30 -115 71 -115c33 0 71 24 102 70l13 -9c-49 -72 -83 -96 -145 -96c-64 0 -112 52 -112 154 c0 23 3 51 10 77h-56l-61 -220h-73l61 220h-57c-27 -99 -105 -231 -218 -231c-24 0 -44 3 -58 11c-17 10 -27 26 -27 43c0 29 25 47 40 47c55 0 11 -70 56 -70c17 0 47 13 66 34c52 57 78 174 78 237c0 78 -30 115 -71 115c-33 0 -71 -24 -102 -70l-13 9c49 72 83 96 145 96 c64 0 112 -40 112 -142c0 -13 -1 -43 -4 -57h58l52 190h73'], + 0x437: [441,11,376,-18,357,'101 441h14c0 -9 3 -17 13 -17c27 0 47 17 98 17c99 0 131 -48 131 -97c0 -73 -73 -107 -132 -115l-1 -1c64 -15 98 -50 98 -96c0 -28 -12 -62 -35 -85c-39 -41 -102 -58 -169 -58c-88 0 -136 37 -136 89c0 36 21 52 46 52s39 -18 39 -42c0 -22 -16 -25 -16 -49 c0 -11 16 -29 52 -29c93 0 132 62 132 127c0 50 -32 81 -86 81c-7 0 -14 0 -22 -1l7 23h30c69 0 117 56 117 105s-26 75 -67 75c-66 0 -106 -47 -133 -108h-16'], + 0x438: [441,11,527,29,495,'481 119l14 -9c-65 -99 -90 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 8 59 27 128l35 129c6 23 17 66 17 78c0 11 -3 17 -10 17c-16 0 -37 -15 -88 -82l-14 10c65 99 96 119 143 119 c30 0 46 -17 46 -48c0 -15 -10 -69 -22 -112l-54 -198c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-83 -303c-5 -19 -15 -62 -15 -74c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x439: [667,11,527,29,495,'458 667h18c-9 -71 -59 -156 -150 -156c-59 0 -129 38 -129 103c0 37 28 53 49 53c20 0 40 -15 40 -38c0 -30 -17 -28 -17 -43c0 -20 24 -43 65 -43c68 0 107 58 124 124zM481 119l14 -9c-65 -99 -90 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197 c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 8 59 27 128l35 129c6 23 17 66 17 78c0 11 -3 17 -10 17c-16 0 -37 -15 -88 -82l-14 10c65 99 96 119 143 119c30 0 46 -17 46 -48c0 -15 -10 -69 -22 -112l-54 -198c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25 c34 0 80 53 142 147c47 71 61 109 110 243h74l-83 -303c-5 -19 -15 -62 -15 -74c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x43A: [441,11,491,18,485,'159 242h11c129 0 135 199 259 199c33 0 56 -27 56 -49c0 -32 -22 -47 -46 -47c-34 0 -31 37 -63 37c-36 0 -71 -125 -153 -152v-2c37 -3 70 -29 88 -63c29 -55 28 -124 52 -124c15 0 31 11 49 42c5 8 10 17 15 26l15 -11c-41 -83 -75 -109 -115 -109 c-56 0 -75 51 -90 105c-14 52 -29 111 -84 126l-60 -220h-75l78 292c12 46 19 68 19 81c0 20 -14 27 -54 27h-11v15c77 11 107 16 160 26l4 -2'], + 0x43B: [441,12,474,-44,442,'428 115l14 -13c-68 -93 -99 -111 -146 -111c-25 0 -47 16 -47 54c0 10 2 23 16 75l44 162c8 31 15 71 15 83c0 24 -14 33 -29 33c-23 0 -40 -12 -58 -29c-23 -22 -43 -63 -64 -134l-18 -61c-13 -43 -32 -118 -67 -155c-19 -20 -41 -31 -73 -31c-31 0 -59 16 -59 51 c0 33 23 46 44 46c13 0 26 -7 34 -24c8 -16 1 -37 11 -37c39 0 60 70 89 170l14 48c48 166 124 199 192 199c40 0 64 -26 64 -61c0 -18 -4 -39 -10 -60l-56 -203c-10 -36 -12 -53 -12 -61c0 -11 3 -18 15 -18c14 0 36 14 66 51'], + 0x43C: [432,12,633,-45,601,'587 116l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -47 16 -47 54c0 53 11 123 58 268l-211 -312h-8l-39 327l-48 -150c-16 -50 -34 -108 -65 -145c-21 -26 -39 -44 -86 -44c-31 0 -60 15 -60 50c0 33 22 46 43 46c13 0 26 -6 34 -23c8 -16 0 -37 10 -37 c39 0 69 72 100 170l75 238h59l39 -308h2l205 308h60c-30 -92 -93 -319 -93 -376c0 -12 4 -19 16 -19c14 0 31 16 61 53'], + 0x43D: [441,9,504,20,472,'458 117l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -47 16 -47 54c0 10 2 23 16 75l24 91h-174l-58 -211h-73l93 350c1 5 2 17 2 23c0 20 -14 26 -65 27v15c79 9 108 15 161 26l4 -2l-58 -206h173l54 199h73l-83 -315c-9 -36 -14 -53 -14 -61c0 -9 4 -18 16 -18 c14 0 32 16 61 53c7 8 14 17 21 26'], + 0x43E: [441,11,489,29,470,'470 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM386 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91 c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x43F: [441,9,511,19,479,'465 117l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -47 16 -47 54c0 10 2 23 16 75l44 162c8 31 14 67 14 79c0 18 -9 29 -24 29c-40 0 -85 -49 -148 -142c-45 -67 -53 -90 -100 -248h-75l96 353c1 5 2 14 2 20c0 20 -14 26 -65 27v15c82 11 109 15 162 26l4 -2l-67 -218 c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-56 -203c-10 -36 -14 -53 -14 -61c0 -9 4 -18 16 -18c14 0 32 16 61 53c7 8 14 17 21 26'], + 0x440: [441,205,483,-77,464,'215 437l-31 -109c54 81 111 113 171 113c74 0 109 -47 109 -125c0 -165 -145 -327 -291 -327c-23 0 -44 4 -69 17c-17 -70 -40 -152 -40 -166c0 -22 15 -29 62 -29v-16h-203v16c43 1 56 16 68 63l115 432c11 40 15 62 15 67c0 24 -28 27 -44 27h-24v15l157 26zM380 313 c0 57 -17 85 -62 85c-53 0 -112 -54 -135 -114c-29 -75 -65 -204 -65 -238c0 -22 20 -38 48 -38c53 0 101 33 145 95c48 67 69 140 69 210'], + 0x441: [441,11,441,27,422,'347 107l16 -10c-61 -77 -114 -108 -189 -108c-93 0 -147 52 -147 154c0 93 52 180 123 237c49 39 106 61 167 61s105 -34 105 -81c0 -27 -22 -48 -48 -48c-28 0 -39 20 -39 40c0 18 15 29 15 48c0 12 -14 20 -37 20c-40 0 -80 -18 -109 -48c-56 -59 -91 -144 -91 -233 c0 -72 32 -114 89 -114c53 0 91 25 145 82'], + 0x442: [441,9,741,17,709,'709 105l-5 -7c-53 -74 -97 -107 -144 -107c-26 0 -40 16 -40 46c0 10 3 27 13 66l58 227c5 20 7 33 7 38c0 12 -9 21 -20 21c-30 0 -81 -47 -131 -117c-49 -69 -69 -118 -108 -272h-75l27 93c44 152 68 258 68 271c0 16 -9 25 -22 25c-34 0 -93 -58 -149 -143 c-34 -52 -48 -88 -96 -246h-75l73 262c16 58 25 109 25 116c0 15 -14 22 -41 22h-25v15c79 11 107 15 162 26l3 -2l-58 -209c89 145 159 211 220 211c40 0 60 -24 60 -60c0 -19 -13 -75 -40 -152c70 111 111 161 160 192c24 15 43 20 63 20c37 0 58 -25 58 -59 c0 -13 -4 -34 -13 -67l-58 -216c-6 -23 -10 -41 -10 -45c0 -11 4 -16 12 -16c17 0 35 16 65 53l21 26'], + 0x443: [441,206,421,-61,389,'206 186l21 -110c85 141 122 213 122 257c0 14 -7 20 -26 32c-20 13 -26 23 -26 39c0 22 17 37 40 37c30 0 52 -25 52 -55c0 -57 -48 -167 -131 -305c-104 -172 -211 -287 -268 -287c-30 0 -51 17 -51 43c0 22 17 40 39 40c35 0 30 -28 56 -28c39 0 106 95 124 124 c6 12 10 24 10 35c0 40 -55 264 -82 332c-19 49 -37 64 -77 64c-11 0 -20 -1 -31 -4v17c11 2 22 4 32 6c20 4 53 10 107 18h4c15 0 68 -166 85 -255'], + 0x444: [683,205,702,29,677,'422 351h2c44 65 80 90 148 90c58 0 105 -58 105 -136c0 -146 -98 -316 -233 -316c-68 0 -93 53 -95 83l-41 -159c-9 -34 -16 -67 -16 -73c0 -22 15 -29 62 -29v-16h-203v16c43 1 56 16 68 63l48 182h-1c-44 -57 -81 -67 -125 -67c-74 0 -112 75 -112 153 c0 131 98 299 233 299c60 0 83 -40 92 -69c40 147 60 239 60 242c-1 22 -25 27 -41 27h-27v15c52 7 105 15 157 27l7 -6zM606 302c0 57 -27 104 -72 104c-53 0 -101 -61 -113 -96c-39 -113 -54 -169 -54 -203c0 -52 41 -83 69 -83c126 0 170 183 170 278zM339 319v4 c0 52 -42 83 -70 83c-117 0 -169 -185 -169 -274c0 -57 26 -108 71 -108c53 0 104 60 114 96'], + 0x445: [441,11,444,-35,439,'235 355l12 -57c70 107 107 143 151 143c24 0 41 -15 41 -37c0 -21 -14 -36 -34 -36c-19 0 -28 17 -52 17c-18 0 -54 -44 -98 -121c0 -7 2 -21 8 -45l32 -134c7 -28 16 -41 30 -41c13 0 24 10 47 40c9 12 13 18 21 28l15 -9c-58 -90 -84 -114 -122 -114 c-32 0 -47 18 -59 68l-29 119l-88 -119c-44 -59 -64 -68 -95 -68s-50 16 -50 42c0 20 14 36 34 36c9 0 19 -4 32 -11c10 -6 20 -9 26 -9c11 0 30 19 51 49l82 116l-28 124c-14 60 -21 68 -46 68c-8 0 -20 -2 -39 -7l-18 -5l-3 16l11 4c61 22 94 29 117 29 c25 0 37 -18 51 -86'], + 0x446: [441,182,527,29,495,'495 110l-34 -52c-21 -32 -23 -52 -23 -68c0 -26 7 -38 7 -61c0 -40 -9 -73 -96 -111l-9 18c29 14 41 27 41 61c0 7 -3 28 -3 32c0 30 24 62 41 82l-1 1c-20 -16 -38 -21 -61 -21c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247 c-35 0 -53 16 -53 53c0 19 8 59 27 128l35 129c6 23 17 66 17 78c0 11 -3 17 -10 17c-16 0 -37 -15 -88 -82l-14 10c65 99 96 119 143 119c30 0 46 -17 46 -48c0 -15 -10 -69 -22 -112l-54 -198c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147 c47 71 61 109 110 243h74l-83 -303c-5 -19 -15 -62 -15 -74c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x447: [441,9,482,42,450,'436 122l14 -9c-65 -99 -95 -122 -142 -122c-30 0 -47 17 -47 48c0 15 11 57 22 100l13 50c-30 -14 -79 -32 -124 -32c-72 0 -104 23 -104 72c0 19 6 38 28 118c4 14 7 26 7 29c0 7 -5 15 -11 18c-9 5 -13 6 -50 6v15c29 3 93 13 150 26l4 -3l-47 -172 c-4 -16 -4 -24 -4 -34c0 -28 13 -45 61 -45c43 0 82 20 97 28l59 217h74l-79 -299c-6 -23 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 36 17 87 84'], + 0x448: [441,11,785,31,753,'739 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 21 17 94 47 197h-2c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 13 69 31 131l29 97h-2l-21 -34c-119 -193 -169 -247 -240 -247c-35 0 -53 16 -53 53c0 19 8 59 27 128l35 129 c6 23 17 66 17 78c0 11 -3 17 -10 17c-16 0 -37 -15 -88 -82l-14 10c65 99 96 119 143 119c30 0 46 -17 46 -48c0 -15 -10 -69 -22 -112l-54 -198c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 62 109 111 243h74l-88 -349c-1 -3 -3 -12 -3 -16 c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x449: [441,182,785,31,753,'739 119l14 -9l-34 -52c-17 -28 -23 -50 -23 -66c0 -26 7 -40 7 -63c0 -40 -9 -73 -96 -111l-9 18c29 14 41 27 41 61c0 7 -3 28 -3 32c0 31 24 62 41 82l-1 1c-19 -16 -40 -21 -61 -21c-30 0 -48 17 -48 48c0 21 17 94 47 197h-2c-118 -194 -168 -247 -239 -247 c-35 0 -53 16 -53 53c0 19 13 69 31 131l29 97h-2l-21 -34c-119 -193 -169 -247 -240 -247c-35 0 -53 16 -53 53c0 19 8 59 27 128l35 129c6 23 17 66 17 78c0 11 -3 17 -10 17c-16 0 -37 -15 -88 -82l-14 10c65 99 96 119 143 119c30 0 46 -17 46 -48 c0 -15 -10 -69 -22 -112l-54 -198c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 62 109 111 243h74l-88 -349c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78 c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x44A: [441,11,567,12,528,'245 213h3c38 36 87 72 157 72c85 0 123 -45 123 -102c0 -103 -114 -194 -246 -194c-107 0 -141 49 -141 124c0 97 67 207 136 267l-1 2c-12 -5 -41 -13 -74 -13c-34 0 -60 14 -106 14c-28 0 -51 -14 -72 -53l-12 6c32 70 54 105 122 105c55 0 81 -23 137 -23 c29 0 51 6 71 23l10 -9c-64 -63 -104 -175 -107 -219zM442 179c0 53 -36 68 -72 68c-44 0 -87 -30 -101 -41c-33 -25 -51 -70 -51 -140c0 -29 25 -53 69 -53c94 0 155 103 155 166'], + 0x44B: [441,11,689,50,657,'643 117l14 -9c-59 -95 -93 -117 -140 -117c-25 0 -47 16 -47 54c0 10 2 23 16 75l82 312h73l-82 -315c-9 -36 -14 -53 -14 -61c0 -9 4 -18 16 -18c16 0 31 16 61 53zM151 214l1 -1c38 36 87 72 157 72c85 0 124 -45 124 -102c0 -103 -115 -194 -247 -194 c-109 0 -136 38 -136 88c0 29 9 61 17 93l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v15c57 7 93 13 150 26l4 -3zM347 179c0 53 -37 68 -73 68c-44 0 -87 -30 -101 -41c-33 -25 -51 -67 -51 -140c0 -29 25 -53 69 -53c94 0 156 103 156 166'], + 0x44C: [441,11,471,50,433,'151 214l1 -1c38 36 87 72 157 72c85 0 124 -45 124 -102c0 -103 -115 -194 -247 -194c-109 0 -136 38 -136 88c0 29 10 64 17 93l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v15c57 7 93 13 150 26l4 -3zM347 179c0 53 -37 68 -73 68 c-44 0 -87 -30 -101 -41c-33 -25 -51 -65 -51 -140c0 -29 25 -53 69 -53c94 0 156 103 156 166'], + 0x44D: [441,11,408,7,391,'105 441h14c0 -9 3 -17 13 -17c27 0 50 17 98 17c110 0 161 -69 161 -163c0 -159 -123 -289 -271 -289c-72 0 -113 40 -113 87c0 38 22 54 46 54c25 0 39 -17 39 -42c0 -22 -16 -25 -16 -49c0 -17 20 -29 45 -29c65 0 107 38 138 88c18 30 32 74 39 117h-137l5 22h135 c3 21 4 35 4 54c0 74 -23 129 -77 129c-74 0 -116 -54 -142 -108h-16'], + 0x44E: [441,11,674,21,655,'160 233h75c30 74 88 140 159 178c39 21 79 30 120 30c81 0 141 -52 141 -140c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 25 5 58 13 83h-72l-58 -211h-76l79 292c12 44 19 68 19 80c0 18 -9 28 -41 28h-25v15c79 11 107 15 162 26 l3 -2zM571 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x44F: [432,9,481,-25,449,'435 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 19 8 76 36 162h-31c-28 0 -75 -5 -121 -122c-26 -66 -57 -88 -107 -88c-34 0 -65 20 -65 79c0 12 2 27 8 40h16c-2 -10 -4 -20 -4 -28c0 -33 15 -49 32 -49c25 0 37 18 54 72c23 72 60 94 111 100l1 2 c-64 6 -102 39 -102 81c0 117 121 144 219 144h129l-80 -298c-5 -20 -18 -67 -18 -79c0 -11 4 -17 11 -17c16 0 32 14 83 81zM304 223l41 157c1 4 2 8 2 11c0 12 -11 19 -23 19c-76 0 -151 -24 -151 -118c0 -43 43 -69 101 -69h30'], + 0x451: [606,11,440,34,475,'475 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM275 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM368 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -142 54 -142 137 c0 155 156 315 306 315c53 0 82 -26 82 -68c0 -86 -115 -164 -294 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 92 16 157 75zM134 209l1 -1c86 21 134 39 171 74c31 30 50 66 50 97c0 24 -7 39 -35 39c-57 0 -153 -120 -187 -209'], + 0x452: [683,208,479,20,448,'154 231h1c97 153 165 210 228 210c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-77 -292c-43 -163 -100 -236 -187 -236c-46 0 -79 26 -79 62c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -13 18 -13c40 0 63 46 97 183l72 293c4 16 17 57 17 71 c0 22 -9 29 -24 29c-35 0 -101 -60 -153 -142c-42 -66 -49 -91 -95 -248h-75l129 491h-103l12 38h101l7 25c9 31 13 48 13 62c0 17 -23 25 -41 25h-27v15c60 7 99 14 157 27l7 -6l-40 -148h169l-12 -38h-168'], + 0x453: [664,11,390,1,455,'232 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM101 348l-10 13c38 36 95 80 182 80c67 0 111 -36 111 -91c0 -137 -300 -130 -300 -258c0 -42 37 -55 79 -55c37 0 73 4 139 50l12 -12c-78 -71 -125 -86 -184 -86 c-82 0 -129 34 -129 91c0 123 301 153 301 255c0 32 -25 58 -71 58c-52 0 -84 -11 -130 -45'], + 0x454: [441,11,428,26,441,'441 441l-36 -129h-16c0 71 -19 108 -63 108c-75 0 -167 -78 -201 -183h161l-5 -22h-161c-6 -22 -8 -50 -8 -72c0 -83 31 -133 87 -133c41 0 67 22 67 68c0 30 21 52 54 52c20 0 35 -17 35 -34c0 -34 -31 -62 -63 -79c-44 -23 -80 -28 -113 -28c-94 0 -153 46 -153 149 c0 148 144 303 294 303c48 0 57 -17 84 -17c12 0 18 8 21 17h16'], + 0x455: [442,13,389,-9,341,'341 442l-20 -140h-16c-10 83 -40 116 -89 116c-35 0 -59 -20 -59 -57c0 -27 15 -56 54 -102c50 -58 68 -97 68 -136c0 -83 -61 -134 -144 -134c-17 0 -32 1 -55 10c-19 8 -33 9 -44 9s-22 -5 -29 -21h-16l20 159h16c14 -95 48 -136 100 -136c47 0 76 28 76 77 c0 32 -17 66 -56 115c-43 54 -63 99 -63 131c0 66 47 108 121 108c17 0 31 -3 56 -10c19 -6 28 -7 36 -7c15 0 22 4 30 18h14'], + 0x456: [654,11,278,43,258,'258 599c0 -28 -23 -51 -49 -51c-29 0 -48 21 -48 53c0 31 20 53 47 53s50 -26 50 -55zM216 114l13 -11c-55 -84 -87 -114 -137 -114c-33 0 -49 18 -49 55c0 20 7 55 22 111l48 177c5 18 9 36 9 44c0 20 -10 23 -64 24v15c40 3 70 6 160 26l4 -3l-94 -343 c-5 -17 -10 -30 -10 -44c0 -10 6 -15 14 -15c17 0 41 21 84 78'], + 0x457: [606,11,278,43,357,'357 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM157 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM217 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57 c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v15c39 3 68 7 159 26l5 -3l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 8 -15 16 -15c17 0 38 22 81 79'], + 0x458: [652,207,278,-172,231,'231 598c0 -27 -24 -50 -50 -50c-30 0 -54 21 -54 52c0 30 25 52 53 52c27 0 51 -26 51 -54zM198 438l-104 -410c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -12 18 -12c40 0 63 44 97 182 l72 292c12 49 16 70 16 80c0 22 -12 31 -48 31h-26v15c32 2 85 11 169 26'], + 0x459: [441,12,679,-44,631,'364 213h1c34 36 77 72 147 72c85 0 119 -45 119 -102c0 -103 -111 -194 -232 -194c-109 0 -136 38 -136 88c0 29 9 64 17 93l29 112c8 31 15 71 15 83c0 24 -14 33 -29 33c-23 0 -40 -12 -58 -29c-23 -22 -43 -64 -64 -134l-18 -61c-13 -43 -32 -118 -67 -155 c-19 -20 -41 -31 -73 -31c-31 0 -59 16 -59 51c0 33 23 46 44 46c13 0 26 -7 34 -24c8 -16 1 -37 11 -37c39 0 60 70 89 170l14 48c48 166 124 199 192 199c40 0 64 -26 64 -61c0 -18 -4 -39 -10 -60zM545 179c0 53 -32 68 -68 68c-44 0 -78 -28 -91 -41 c-25 -25 -51 -65 -51 -140c0 -29 18 -53 62 -53c94 0 148 103 148 166'], + 0x45A: [441,11,697,21,649,'442 438l-59 -225c34 36 77 72 147 72c85 0 119 -45 119 -102c0 -103 -111 -194 -232 -194c-109 0 -136 38 -136 88c0 29 10 64 17 93l10 41h-154l-57 -211h-76l95 350c1 5 1 17 1 23c0 20 -14 26 -65 27v15c79 9 108 15 161 26l4 -2l-58 -206h154l22 76 c9 32 14 53 14 67c0 7 -3 14 -11 18c-11 5 -29 6 -50 6v15c51 6 100 14 150 26zM563 179c0 53 -32 68 -68 68c-44 0 -78 -28 -91 -41c-25 -25 -51 -65 -51 -140c0 -29 18 -53 62 -53c94 0 148 103 148 166'], + 0x45B: [683,9,511,20,479,'466 118l13 -13c-61 -87 -95 -114 -146 -114c-27 0 -44 16 -44 42c0 12 7 43 20 92l55 207c4 16 7 29 7 33c0 15 -5 25 -28 25c-36 0 -100 -61 -152 -140c-40 -61 -56 -96 -96 -250h-75l129 491h-103l12 38h101l7 25c9 31 13 48 13 62c0 17 -23 25 -41 25h-27v15 c60 7 99 14 157 27l7 -6l-40 -148h169l-12 -38h-168l-70 -261c90 146 168 211 230 211c46 0 65 -30 65 -67c0 -25 -18 -99 -48 -193c-17 -52 -33 -114 -33 -125c0 -10 7 -18 16 -18c16 0 28 12 82 80'], + 0x45C: [664,11,491,18,485,'189 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM159 242h11c129 0 135 199 259 199c33 0 56 -27 56 -49c0 -32 -22 -47 -46 -47c-34 0 -31 37 -63 37c-36 0 -71 -125 -153 -152v-2c37 -3 70 -29 88 -63 c29 -55 28 -124 52 -124c15 0 31 11 49 42c5 8 10 17 15 26l15 -11c-41 -83 -75 -109 -115 -109c-56 0 -75 51 -90 105c-14 52 -29 111 -84 126l-60 -220h-75l78 292c12 46 19 68 19 81c0 20 -14 27 -54 27h-11v15c77 11 107 16 160 26l4 -2'], + 0x45E: [667,206,421,-61,417,'399 667h18c-9 -71 -59 -156 -150 -156c-59 0 -129 38 -129 103c0 37 28 53 49 53c20 0 40 -15 40 -38c0 -30 -17 -28 -17 -43c0 -20 24 -43 65 -43c68 0 107 58 124 124zM206 186l21 -110c85 141 122 213 122 257c0 14 -7 20 -26 32c-20 13 -26 23 -26 39 c0 22 17 37 40 37c30 0 52 -25 52 -55c0 -57 -48 -167 -131 -305c-104 -172 -211 -287 -268 -287c-30 0 -51 17 -51 43c0 22 17 40 39 40c35 0 35 -28 61 -28c13 0 25 8 48 33c18 19 63 78 71 91c6 12 10 24 10 35c0 40 -55 264 -82 332c-19 49 -37 64 -77 64 c-11 0 -20 -1 -31 -4v17c11 2 22 4 32 6c20 4 53 10 107 18h4c15 0 68 -166 85 -255'], + 0x45F: [441,182,527,29,495,'481 119l14 -9c-65 -99 -90 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197c-66 -108 -111 -173 -150 -209c-6 -17 -13 -38 -13 -51c0 -26 8 -27 8 -50c0 -33 -9 -69 -96 -108l-9 18c29 14 41 27 41 61c0 7 -3 27 -3 31c0 30 21 51 38 73v1 c-18 -9 -36 -13 -55 -13c-35 0 -53 16 -53 53c0 19 8 59 27 128l35 129c6 23 17 66 17 78c0 11 -3 17 -10 17c-16 0 -37 -15 -88 -82l-14 10c65 99 96 119 143 119c30 0 46 -17 46 -48c0 -15 -10 -69 -22 -112l-54 -198c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25 c34 0 80 53 142 147c47 71 61 109 110 243h74l-83 -303c-5 -19 -15 -62 -15 -74c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x462: [653,0,681,19,621,'308 364h87c103 0 226 -17 226 -132c0 -141 -126 -232 -282 -232h-286l3 16c55 8 67 21 83 80l110 407h-44c-89 0 -121 0 -168 -103l-18 4l32 135h208c5 20 10 43 10 55c0 28 -14 36 -71 43v16h243v-16c-39 -5 -64 -20 -74 -55l-12 -43h204l-37 -139l-18 2 c2 17 3 23 3 36c0 53 -42 65 -107 65h-54zM298 328l-50 -186c-2 -6 -15 -51 -15 -64c0 -28 24 -42 66 -42c113 0 210 50 210 190c0 77 -64 102 -140 102h-71'], + 0x463: [683,11,542,13,504,'221 204l1 -1c38 36 88 72 158 72c85 0 124 -45 124 -102c0 -103 -113 -184 -245 -184c-109 0 -136 38 -136 88c0 28 11 70 17 93l61 232h-55c-76 0 -81 -4 -116 -72h-17l31 102h165l32 119c8 31 14 56 14 64c0 18 -22 26 -40 26h-28v15c57 7 100 14 157 27l7 -6 l-68 -245h165l-26 -102h-18c1 11 1 12 1 21c0 38 -23 51 -81 51h-49zM418 169c0 53 -37 68 -73 68c-44 0 -88 -30 -102 -41c-33 -25 -48 -55 -48 -130c0 -29 25 -53 69 -53c94 0 154 93 154 156'], + 0x46A: [653,0,953,-55,893,'893 0h-280v16c56 3 71 37 71 79c0 19 -4 39 -12 62c-31 87 -81 143 -141 147l-52 -193c-8 -28 -11 -40 -11 -51c0 -31 2 -39 57 -44v-16h-228v16c56 7 61 18 76 71l60 217c-58 -4 -145 -45 -221 -135c-33 -39 -54 -87 -54 -121c0 -17 10 -30 43 -32v-16h-256v16 c53 4 84 39 118 87c88 124 177 236 358 243l-85 307h481l-252 -307c76 -3 131 -54 162 -97c59 -82 48 -224 166 -233v-16zM733 611h-289l71 -264'], + 0x46B: [432,11,741,0,686,'673 94l13 -9c-31 -56 -79 -96 -137 -96c-36 0 -67 22 -77 77c-10 54 -10 114 -69 135l-55 -201h-71l55 201h-1c-123 -45 -100 -212 -253 -212c-52 0 -78 25 -78 54s26 43 41 43c54 0 23 -66 65 -66c14 0 22 8 29 21c25 47 29 91 76 138c24 24 57 40 109 44l-96 209h389 l-189 -207v-2c77 -8 120 -55 120 -120c0 -6 -2 -25 -2 -33c0 -23 5 -46 31 -46c33 0 69 24 100 70zM548 402h-219l76 -158'], + 0x472: [666,18,712,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-34 -46 -61 -99 -80 -153c66 44 95 49 137 49 c66 0 93 -101 165 -101c19 0 43 8 73 28c13 52 20 102 20 142zM559 291c-41 -30 -83 -45 -132 -45c-75 0 -100 101 -169 101c-20 0 -43 -9 -74 -30c-13 -47 -19 -93 -19 -133c0 -109 46 -169 130 -169c67 0 124 39 170 95c41 50 72 116 94 181'], + 0x473: [441,11,489,29,470,'470 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 78 30 119 30c81 0 142 -52 142 -140zM386 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-20 -31 -37 -63 -50 -97c38 29 58 38 84 38 c53 0 62 -63 107 -63c10 0 26 5 43 17c9 34 15 70 15 102zM363 195c-27 -21 -58 -38 -92 -38c-57 0 -54 63 -97 63c-12 0 -29 -6 -47 -19c-9 -33 -14 -67 -14 -100c0 -60 31 -91 78 -91c44 0 82 29 121 83c21 29 39 64 51 102'], + 0x474: [662,18,646,76,742,'306 141l213 386c37 67 77 135 155 135c53 0 68 -31 68 -51c0 -32 -15 -54 -50 -54c-32 0 -36 40 -57 40c-18 0 -29 -7 -50 -43l-326 -572h-19l-82 503c-23 140 -26 145 -82 152v16h240v-16c-63 -7 -76 -17 -76 -51c0 -5 0 -10 1 -15l63 -430h2'], + 0x475: [441,18,464,34,528,'237 115h1c36 101 92 217 158 281c33 32 56 45 88 45c23 0 44 -19 44 -43c0 -33 -21 -46 -48 -46c-21 0 -25 19 -41 19c-90 0 -200 -312 -218 -364c-3 -8 -12 -25 -28 -25c-14 0 -16 20 -16 28c-7 117 -18 199 -46 297c-20 67 -30 94 -67 94h-30v15c47 7 77 12 109 20 c8 2 19 5 23 5c3 0 6 -6 10 -16c39 -97 59 -229 61 -310'], + 0x490: [783,0,524,-30,622,'622 783l-49 -166h-282l-131 -489c-7 -27 -16 -60 -16 -73c0 -24 18 -35 77 -39v-16h-251v16c59 4 68 24 83 78l119 442c7 25 10 45 10 61c0 28 -15 40 -61 40v16h316c69 0 131 6 164 130h21'], + 0x491: [507,11,337,42,404,'404 507l-29 -97h-134c-20 0 -29 -8 -34 -25l-80 -290c-5 -19 -8 -30 -8 -44c0 -10 6 -15 12 -15c17 0 41 21 84 78l13 -11c-55 -84 -87 -114 -137 -114c-33 0 -49 18 -49 55c0 20 7 55 22 111l58 215c3 10 4 18 4 24c0 19 -14 21 -53 23v15h186c87 0 98 4 128 75h17'], + 0x2105: [676,14,855,47,808,'808 234c0 -60 -32 -130 -84 -182c-47 -46 -98 -66 -150 -66c-76 0 -118 41 -118 111c0 89 61 181 144 226c31 16 62 23 96 23c64 0 112 -41 112 -112zM738 248c0 50 -19 76 -54 76s-69 -24 -101 -72c-37 -56 -57 -109 -57 -172c0 -48 22 -72 60 -72c34 0 61 23 92 65 c37 51 60 115 60 175zM646 676l-450 -690h-49l453 690h46zM302 411l12 -9c-48 -61 -90 -86 -149 -86c-75 0 -118 49 -118 131c0 66 33 128 79 170c43 39 86 59 142 59c54 0 94 -34 94 -71c0 -21 -17 -39 -38 -39c-23 0 -32 17 -32 33c0 14 12 23 12 38c0 9 -11 16 -29 16 c-32 0 -65 -15 -87 -38c-45 -47 -70 -103 -70 -174c0 -54 31 -91 69 -91c42 0 72 14 115 61'], + 0x2116: [668,15,1046,19,1031,'1031 355c0 -112 -95 -224 -210 -224c-72 0 -109 59 -109 125c0 110 98 217 210 217c67 0 109 -54 109 -118zM970 395c0 30 -15 53 -47 53c-89 0 -150 -162 -150 -236c0 -31 15 -55 48 -55c85 0 149 167 149 238zM945 49l-17 -60h-280l19 60h278zM536 183l107 386 c14 49 46 99 103 99c39 0 74 -27 74 -68c0 -28 -21 -48 -49 -48c-48 0 -45 50 -64 50c-23 0 -34 -52 -39 -69l-155 -548h-19l-162 550h-2l-123 -429c-15 -54 -46 -121 -112 -121c-42 0 -76 34 -76 76c0 29 20 50 49 50c60 0 42 -65 64 -65c26 0 47 80 53 101l127 449 c-18 32 -51 40 -86 39l5 18h163l140 -470h2'], + 0xE09C: [756,218,753,37,787,'787 756l-180 -435l41 -210c13 -65 20 -86 71 -92v-19h-245l-90 -218h-59l180 434h-53l-179 -434h-59l180 434h-123l-73 -114c-11 -17 -21 -36 -21 -54c0 -21 20 -29 61 -29v-19h-201v19c59 6 77 26 168 167l314 488h20l14 -74l65 156h58l-104 -251l16 -87l141 338h58z M523 260l-17 85l-37 -89h52zM487 441l-17 86h-2l-169 -271h111zM540 160l-58 -141c54 4 72 29 72 65c0 11 -3 26 -6 38'], + 0xE09D: [756,218,706,42,732,'732 756l-39 -94h31l-32 -155l-22 2c2 13 3 34 3 44c0 17 -3 31 -8 41l-230 -553c90 12 144 50 203 134l20 -10l-64 -165h-175l-90 -218h-59l91 218h-53l-90 -218h-59l90 218h-207v19c61 5 73 18 94 95l121 436c6 22 11 42 11 55c0 30 -34 35 -85 38v19h341l39 94h58 l-39 -94h53l39 94h58zM552 463l67 158c-8 1 -40 4 -52 4l-105 -252c37 8 52 31 78 93zM509 625h-84c-28 0 -46 -5 -55 -37l-61 -220h93zM376 37l100 245c-2 30 -19 38 -35 42l-118 -287h53zM385 328h-86l-67 -244c-2 -6 -3 -12 -3 -17c0 -22 23 -26 38 -28'], + 0xE09E: [756,218,624,42,724,'724 662l-32 -155l-22 2c2 13 3 34 3 44c0 34 -10 53 -36 62l-103 -251l-39 -139l-18 3l-184 -446h-59l221 532c-11 5 -27 7 -49 9l-125 -301c9 -2 19 -3 31 -3v-19h-40l-90 -218h-59l90 218h-171v19c61 5 73 18 94 95l121 436c6 22 11 42 11 55c0 30 -34 35 -85 38v19 h305l39 94h58l-39 -94h53l39 94h58l-39 -94h67zM486 390l97 234c-11 1 -24 1 -38 1h-14l-105 -252c27 3 46 9 60 17zM472 625h-47c-28 0 -47 -5 -56 -37l-60 -220c21 0 40 0 57 1zM232 44l117 283c-15 1 -31 1 -52 1l-67 -244c-2 -6 -3 -12 -3 -17c0 -9 1 -16 5 -23'], + 0xE0B3: [681,207,500,-141,504,'51 428h88c35 118 50 153 105 202c35 32 84 51 134 51c37 0 67 -11 85 -28c23 -5 41 -29 41 -54c0 -28 -23 -51 -49 -51c-24 0 -44 14 -50 37c-5 7 -7 16 -7 26c0 11 2 16 9 23c3 4 4 6 4 9c0 10 -13 16 -34 16c-35 0 -60 -8 -86 -42c-34 -44 -46 -78 -75 -189h150 c27 0 54 2 81 6c10 1 14 2 18 2l5 -3v-3c0 -5 -2 -14 -5 -25l-1 -4c-4 -17 -10 -35 -15 -53c-4 -17 -2 -8 -7 -26c-40 -146 -72 -286 -72 -294c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34 c0 -7 6 -12 18 -12c40 0 63 44 97 182l83 341c10 42 11 44 11 48c0 7 -5 10 -16 10h-155l-72 -318c-29 -126 -68 -209 -117 -252c-26 -22 -53 -33 -84 -33c-45 0 -78 24 -78 60c0 23 16 44 37 44s39 -19 39 -40c0 -5 -1 -9 -5 -16c-3 -5 -4 -8 -4 -11c0 -10 5 -13 20 -13 c25 0 44 14 61 47c17 32 32 77 58 224c35 197 61 293 67 308h-88'], + 0xE32C: [756,218,613,42,612,'612 450l-155 -273c4 -92 8 -122 39 -122c13 0 46 19 71 76l16 -5c-23 -76 -80 -133 -133 -133c-57 0 -76 51 -81 95c-71 -83 -126 -96 -178 -98l-86 -208h-59l89 215c-63 19 -93 80 -93 147c0 145 129 310 285 315l123 297h58l-126 -305c53 -22 72 -82 72 -140h2l68 139 h88zM359 397l-156 -379c52 6 112 67 155 159c4 34 12 81 12 126c0 36 -2 70 -11 94zM152 37l163 394c-69 -7 -182 -149 -182 -309c0 -30 2 -64 19 -85'], + 0xE32E: [756,218,595,-47,644,'644 756l-63 -97c24 -20 40 -52 40 -98c0 -72 -65 -145 -131 -169v-1c42 -12 76 -37 76 -103c0 -153 -145 -298 -287 -298c-44 0 -72 11 -92 34l-46 -170c-11 -40 -19 -61 -25 -72h-85c7 14 16 42 23 69l-44 -69h-57l143 220l100 360c54 195 196 321 307 321 c12 0 23 -2 34 -4l50 77h57zM535 589l-118 -181c8 -2 16 -3 24 -3c64 0 105 72 105 135c0 18 -4 35 -11 49zM247 234l254 390c-10 4 -22 7 -35 7c-78 0 -132 -82 -152 -154zM390 366l-185 -283c0 -45 29 -61 62 -61c129 0 207 166 207 272c0 35 -15 79 -32 79 c-19 0 -35 -6 -52 -7'], + 0xE330: [756,218,514,-58,634,'634 756l-365 -560c-1 -14 -2 -28 -3 -40l183 294h93l-282 -405c-5 -53 -11 -101 -19 -143c-15 -75 -46 -120 -86 -120c-27 0 -39 20 -39 46c0 83 70 175 107 237c4 27 7 52 10 75l-233 -358h-58l298 456c0 50 -1 162 -55 162c-23 0 -50 -25 -70 -82l-16 4 c16 69 45 138 105 138c56 0 69 -60 69 -171l304 467h57'], + 0xE332: [756,218,536,40,522,'518 756l-37 -90c24 -11 41 -28 41 -49c0 -22 -13 -43 -47 -43c-11 0 -20 4 -28 10l-48 -117c56 -28 105 -70 105 -155c0 -171 -154 -317 -302 -321l-85 -209h-57l87 214c-65 15 -107 64 -107 142c0 118 121 258 281 278l1 4c-72 34 -123 67 -123 121 c0 98 119 141 195 141c12 0 24 -1 36 -2l31 76h57zM350 488l58 139c-12 7 -31 13 -61 13c-45 0 -106 -30 -106 -68c0 -43 52 -62 109 -84zM366 386l-152 -368c105 1 199 169 199 285c0 38 -14 74 -47 83zM162 32l144 348c-88 -35 -175 -173 -175 -251c0 -45 7 -79 31 -97'], + 0xE334: [756,218,478,29,491,'491 756l-124 -299c63 -11 94 -47 94 -85c0 -34 -20 -60 -55 -60c-18 0 -39 14 -39 38c0 23 17 35 17 51c0 15 -11 27 -28 31l-69 -167c6 1 12 2 21 2c22 0 38 -8 38 -24c0 -17 -14 -29 -47 -29c-12 0 -20 3 -30 5l-76 -182c12 -3 25 -5 40 -5c51 0 113 33 157 87l14 -12 c-73 -97 -136 -117 -216 -117c-5 0 -10 0 -14 1l-86 -209h-59l91 219c-54 20 -78 63 -78 98c0 62 36 110 122 138c-40 12 -55 46 -55 76c0 71 87 142 201 147l123 296h58zM228 261l69 167c-53 -13 -103 -58 -103 -118c0 -25 9 -43 34 -49zM148 70l60 143 c-38 -14 -72 -46 -72 -97c0 -18 4 -34 12 -46'], + 0xE336: [756,218,440,11,482,'470 756l-48 -117c10 2 19 3 27 3c22 0 33 -11 33 -26c0 -31 -44 -70 -108 -93l-182 -442c22 0 36 1 45 1c56 0 131 -11 131 -92c0 -102 -97 -176 -186 -176c-35 0 -56 27 -56 51s14 47 47 47c38 0 43 -33 75 -33c11 0 21 1 31 5c28 12 48 40 48 70s-21 43 -82 43 c-22 0 -53 -7 -91 -7l-86 -208h-57l93 224c-36 22 -62 67 -62 133c0 154 85 278 180 373c-31 2 -64 30 -64 67c0 53 51 96 122 104l4 -17c-50 -18 -74 -48 -74 -73c0 -30 14 -44 42 -52c37 34 72 58 103 74l58 141h57zM138 90l173 418c-13 -1 -26 -2 -39 -2 c-87 -61 -172 -194 -172 -325c0 -45 6 -77 38 -91'], + 0xE338: [756,218,512,32,536,'536 756l-122 -297c52 -4 76 -33 76 -87c0 -13 -5 -45 -19 -95l-87 -315c-15 -53 -21 -114 -21 -145c0 -14 1 -27 5 -35h-81c-2 14 -3 28 -3 43c0 49 12 107 31 179l80 296c4 15 9 43 9 62c0 17 -4 31 -15 38l-254 -618h-57l250 607c-29 -22 -65 -63 -101 -116 c-44 -65 -67 -117 -111 -273h-84l96 344c3 12 7 26 7 38c0 10 -3 18 -13 18c-17 0 -27 -5 -71 -59l-14 9c50 75 92 110 133 110s54 -22 54 -52c0 -27 -9 -63 -19 -93l-23 -69h1c62 120 119 180 169 202l127 308h57'], + 0xE33A: [756,218,529,20,519,'479 756l-35 -86c48 -22 75 -74 75 -162c0 -165 -84 -351 -179 -449c-54 -55 -99 -69 -157 -69c-7 0 -13 0 -20 1l-86 -209h-57l94 226c-46 28 -72 88 -72 174c0 165 66 329 159 421c55 55 118 80 179 80c4 0 6 0 12 -1l30 74h57zM317 363h92c12 57 19 115 19 169 c0 32 -2 59 -8 80zM260 363l120 290c-5 1 -11 2 -17 2c-41 0 -90 -37 -128 -98c-29 -46 -55 -117 -74 -194h99zM401 326h-99l-125 -303c7 -4 15 -5 25 -5c33 0 75 21 111 79c30 48 66 135 88 229zM245 326h-92c-13 -61 -20 -123 -20 -176c0 -30 2 -55 8 -76'], + 0xE33C: [756,217,326,-10,453,'453 756l-294 -705c16 3 38 18 79 66l15 -10c-48 -70 -86 -100 -117 -111l-88 -213h-58l88 212c-17 8 -26 25 -26 51c0 20 13 73 23 110c58 208 59 245 59 284c39 5 41 2 104 20l4 -3l-59 -209l212 508h58'], + 0xE33E: [756,218,546,57,558,'558 756l-127 -307c12 6 28 11 41 11c39 0 57 -23 57 -53c0 -31 -25 -44 -48 -44c-26 0 -44 20 -56 20c-6 0 -16 -2 -23 -5l-80 -195l59 -95c31 -49 47 -70 88 -73v-15h-204v15c22 0 42 7 42 19c0 5 0 11 -5 19l-20 33l-126 -304h-56l148 360l-47 79l-60 -221h-84 l100 350c2 8 4 22 4 28c0 21 -32 23 -57 23v15c84 17 118 30 155 44l8 -2l-63 -224c57 71 106 123 147 159l150 363h57zM287 238l34 81c-15 -15 -32 -33 -50 -55'], + 0xE340: [756,218,557,52,619,'619 756l-205 -498v-103c0 -37 0 -105 31 -105c16 0 42 24 64 82l16 -5c-16 -70 -44 -137 -104 -137c-40 0 -59 35 -59 93c0 16 0 34 1 53l-145 -354h-57l215 522l2 31l-232 -335h-94l326 448c1 8 2 19 2 24c0 7 0 36 -1 47c-5 69 -17 104 -46 104c-19 0 -44 -25 -65 -82 l-16 4c12 53 30 106 64 128c11 7 22 10 36 10c37 0 62 -39 62 -139v-148l148 360h57'], + 0xE342: [756,217,630,0,696,'696 756l-462 -710c4 -1 8 -1 13 -1c32 0 86 51 141 132c44 65 68 117 112 273h84l-91 -327c-5 -17 -11 -41 -11 -55c0 -10 4 -17 13 -17c17 0 42 10 91 68l12 -11c-60 -89 -112 -117 -149 -117c-33 0 -53 19 -53 56c0 20 12 72 37 157h-1c-84 -163 -163 -211 -222 -211 c-4 0 -7 0 -10 1l-37 -57l-22 -83c-8 -29 -18 -60 -24 -71h-117l61 94l159 573h81l-80 -297c-2 -7 -6 -27 -9 -43l421 646h63'], + 0xE344: [756,218,466,32,495,'495 756l-274 -664c114 62 208 216 239 368l16 -3c0 -140 -102 -364 -286 -440l-96 -235h-57l88 216c-21 -4 -44 -7 -67 -7c-17 0 -26 9 -26 19c0 6 1 11 2 15l87 325c3 12 5 22 5 29c0 20 -24 22 -54 22v15c67 11 121 30 155 44l4 -3l-105 -394c10 1 19 2 28 4l284 689 h57'], + 0xE346: [756,218,454,9,468,'468 756l-54 -129c22 -4 32 -16 32 -31c0 -25 -22 -46 -67 -57l-49 -119c14 3 27 4 39 4c31 0 53 -11 53 -30c0 -51 -82 -60 -128 -60l-109 -264c18 0 36 1 43 1c87 0 131 -38 131 -92c0 -81 -85 -164 -162 -164c-34 0 -67 15 -67 52c0 22 16 42 43 42 c30 0 40 -29 65 -29c43 0 81 28 81 69c0 39 -30 50 -76 50c-27 0 -61 -10 -91 -10l-86 -207h-57l89 215c-38 12 -68 43 -68 110c0 112 76 209 175 258c-21 14 -37 37 -37 63c0 36 13 70 58 107c-15 0 -47 19 -47 45c0 44 36 82 117 103l4 -16c-71 -23 -73 -59 -73 -72 c0 -15 12 -26 29 -29c30 20 66 41 98 52l57 138h57zM318 531h-28c-56 0 -85 -67 -85 -95c0 -18 4 -37 26 -53c10 7 22 13 34 18zM131 78l110 267c-2 0 -4 1 -6 2c-69 -23 -154 -113 -154 -184c0 -46 17 -72 50 -85'], + 0xE348: [756,240,533,27,498,'498 756l-133 -320c61 -14 103 -62 103 -135c0 -76 -40 -164 -106 -229c-56 -56 -117 -81 -180 -83l-95 -229h-57l96 234c-65 15 -99 63 -99 134c0 112 75 227 180 283c34 18 68 28 104 30l130 315h57zM354 406l-163 -396c44 0 80 29 119 83c46 63 74 157 74 233 c0 38 -11 65 -30 80zM140 25l162 395c-40 -4 -80 -36 -117 -91c-46 -70 -74 -149 -74 -228c0 -35 10 -61 29 -76'], + 0xE34A: [756,217,591,14,710,'710 756l-199 -306h86l-22 -80h-116l-17 -26c-20 -62 -55 -183 -55 -235c0 -25 6 -44 29 -44c33 0 56 15 88 69l15 -7c-31 -77 -98 -137 -160 -137c-41 0 -55 27 -55 67c0 24 9 65 15 85c2 8 5 17 8 25l-250 -384h-63l382 587h-94c-16 -56 -47 -173 -90 -264 c-32 -68 -72 -120 -119 -120c-31 0 -56 13 -56 44c0 10 1 21 6 30c6 11 18 21 33 25c91 27 157 215 178 285c-62 0 -110 -4 -157 -53l-14 9c46 85 101 124 210 124h155l199 306h63'], + 0xE34C: [756,218,584,32,591,'591 756l-123 -296c57 -7 93 -45 93 -124c0 -176 -141 -346 -284 -346h-3l-86 -208h-59l90 218c-14 5 -25 13 -34 24l-45 -170c-9 -33 -17 -56 -23 -71h-85c7 16 17 49 25 78l77 279c48 174 165 295 275 316l124 300h58zM441 395l-154 -373c32 6 62 29 89 54 c52 49 94 149 94 229c0 48 -11 75 -29 90zM231 29l157 379c-40 -4 -80 -32 -110 -86c-44 -79 -76 -215 -76 -249c0 -23 12 -36 29 -44'], + 0xE34E: [756,218,468,1,460,'460 756l-127 -308c10 1 20 2 30 2c32 0 88 -6 88 -51c0 -24 -14 -44 -44 -44c-40 0 -46 45 -94 45l-131 -319c22 0 36 1 45 1c56 0 131 -11 131 -92c0 -102 -97 -176 -186 -176c-35 0 -56 27 -56 51s14 47 47 47c38 0 43 -33 75 -33c42 0 79 32 79 75 c0 30 -21 43 -82 43c-15 0 -57 -7 -91 -7l-86 -208h-57l93 224c-36 22 -62 67 -62 133c0 132 113 252 238 295l133 322h57zM128 90l123 297c-88 -31 -161 -115 -161 -207c0 -41 4 -75 38 -90'], + 0xE350: [756,218,534,42,560,'560 450l-23 -80h-176c34 -64 101 -68 101 -146c0 -57 -31 -111 -75 -154c-47 -47 -110 -80 -192 -80l-86 -208h-57l89 215c-65 20 -99 70 -99 148c0 175 139 301 286 305l126 306h57l-126 -306h175zM338 337l-131 -319c113 0 168 136 168 221c0 42 -16 75 -37 98z M158 38l136 332c-69 -9 -161 -96 -161 -242c0 -40 6 -71 25 -90'], + 0xE352: [756,218,448,32,537,'537 756l-126 -306h62l-22 -80h-73l-125 -304c34 0 70 32 87 68l15 -7c-28 -70 -81 -125 -133 -135l-87 -210h-57l89 216c-17 8 -27 26 -27 59c0 34 12 76 21 101l78 212h-56c-55 0 -105 -32 -136 -81l-15 7c28 65 91 154 206 154h116l126 306h57zM321 370h-29 c-19 -50 -53 -167 -64 -226'], + 0xE354: [756,218,514,32,545,'545 756l-132 -319c50 -26 74 -73 74 -142c0 -117 -104 -285 -257 -303l-86 -210h-57l86 211c-63 10 -99 59 -99 131c0 39 11 85 22 123l27 97c3 12 7 26 7 38c0 10 -3 18 -13 18c-17 0 -27 -5 -71 -59l-14 9c50 75 92 110 133 110s54 -22 54 -52c0 -27 -11 -62 -19 -93 l-30 -117c-11 -43 -13 -92 -13 -100c0 -34 10 -62 29 -74l168 407c-9 6 -21 10 -35 13v16c16 -1 31 -3 45 -6l124 302h57zM389 379l-146 -355c84 28 153 167 153 280c0 30 -2 55 -7 75'], + 0xE356: [756,218,663,-2,690,'690 756l-195 -300c101 -15 141 -87 141 -169c0 -118 -99 -296 -319 -297l-31 -114c-5 -18 -7 -33 -7 -43c0 -27 10 -35 55 -36v-15h-212v15c56 6 64 20 78 72l33 121c-14 0 -28 2 -40 3l-138 -211h-57l146 223c-67 27 -102 85 -102 157c0 123 114 298 322 298l31 113 c3 12 4 22 4 29c0 19 -32 22 -57 22v15c84 16 106 26 157 44l8 -2l-51 -196l177 271h57zM412 329l-88 -311c121 0 221 158 221 264c0 83 -25 130 -70 145zM309 259l49 173c-115 0 -225 -136 -225 -272c0 -38 14 -81 40 -110zM267 107l-55 -84c9 -3 19 -5 30 -5'], + 0xE358: [756,218,632,4,700,'700 756l-313 -481c0 -21 -2 -50 -5 -87l202 262h93l-291 -363c-1 -31 -2 -59 -2 -83c0 -65 4 -107 9 -132c5 -23 14 -30 24 -30c26 0 42 24 64 82l16 -5c-16 -83 -49 -137 -103 -137c-47 0 -60 45 -60 109c0 26 9 127 14 167l-222 -275h-122l345 531 c-5 57 -21 86 -49 86c-18 0 -48 -24 -68 -81l-16 4c16 67 42 137 102 137c33 0 58 -26 67 -92l252 388h63zM352 163v58l-166 -255'], + 0xE35A: [756,218,668,32,736,'736 756l-404 -620l-32 -118c93 13 154 78 176 188c25 126 59 254 212 254h25v-16c-45 -7 -76 -40 -99 -82c-56 -103 -39 -228 -132 -311c-52 -46 -114 -60 -190 -61l-57 -208h-84l36 131l-85 -131h-57l135 208c-70 6 -127 50 -127 143c0 56 38 137 38 204 c0 40 -12 102 -59 107v16c103 0 145 -39 145 -130c0 -56 -36 -130 -36 -188c0 -80 30 -106 60 -119l28 42l106 385h84l-45 -162l305 468h57'], + 0xE35C: [756,217,733,42,758,'758 756l-194 -298c93 -10 142 -69 142 -156c0 -90 -43 -176 -97 -232c-54 -55 -119 -80 -173 -80c-38 0 -72 15 -93 45c-5 6 -9 14 -13 22c-17 -17 -35 -32 -55 -43l-150 -231h-63l135 208c-4 0 -8 -1 -11 -1c-106 0 -144 85 -144 157c0 169 140 313 301 313v-16 c-121 -14 -210 -160 -210 -328c0 -48 19 -98 65 -98c6 0 12 1 18 2l94 144v16c0 76 26 182 101 182c7 0 15 -3 22 -8l262 402h63zM377 114l-6 -9c4 -43 31 -87 72 -87c92 0 172 159 172 286c0 86 -18 123 -63 136l-102 -158c-8 -55 -39 -118 -73 -168'], + 0xE35E: [756,218,602,32,590,'582 472l8 -12c-24 -25 -54 -47 -93 -52c-1 -196 -87 -418 -295 -418c-4 0 -9 0 -19 1l-87 -209h-57l93 225c-37 21 -58 62 -58 117c0 39 11 85 22 123l27 97c3 12 7 26 7 38c0 10 -3 18 -13 18c-17 0 -27 -5 -71 -59l-14 9c50 75 92 110 133 110s54 -22 54 -52 c0 -27 -11 -62 -19 -93l-30 -117c-11 -43 -13 -92 -13 -100c0 -10 0 -18 2 -27l143 348c-58 27 -100 76 -100 145c0 65 50 119 119 119c30 0 57 -8 81 -23l39 96h57l-55 -133c34 -42 54 -105 54 -181c27 0 58 15 85 30zM325 474l52 127c-20 38 -46 48 -62 48 c-19 0 -49 -8 -49 -59c0 -45 21 -88 59 -116zM401 520l-29 -69c11 -3 22 -5 34 -6c0 29 -2 54 -5 75zM352 402l-157 -382c4 -1 9 -2 15 -2c28 0 62 13 91 43c58 60 104 179 105 335c-18 0 -36 2 -54 6'], + 0xE360: [756,218,666,42,778,'778 756l-198 -305c33 -14 56 -50 56 -126c0 -119 -99 -335 -319 -335l-57 -208h-84l23 86l-56 -86h-57l136 208c-116 4 -180 74 -180 170c0 144 130 300 290 300h5v-16c-103 -15 -204 -154 -204 -285c0 -66 41 -141 107 -141l37 131c28 100 57 155 119 226 c40 46 92 80 132 85l193 296h57zM376 226l118 182c-53 -9 -95 -96 -118 -182zM340 84l-16 -66c130 5 221 162 221 294c0 28 -2 54 -10 71'], + 0xE362: [756,217,889,32,897,'897 450l-22 -80h-80c8 -20 12 -43 12 -68c0 -93 -47 -184 -105 -240c-52 -51 -113 -72 -165 -72c-38 0 -72 15 -93 45c-5 6 -9 14 -13 22c-19 -19 -39 -35 -61 -46l-148 -228h-63l134 207h-6c-106 0 -144 85 -144 157c0 86 36 166 93 223h-53c-55 0 -105 -32 -136 -81 l-15 7c28 65 91 154 206 154h355l199 306h63l-199 -306h241zM478 114l-6 -9c4 -43 31 -87 72 -87c92 0 172 159 172 286c0 26 -2 48 -5 66h-107l-74 -114c-3 -51 -28 -106 -52 -142zM541 370h-224c-52 -62 -83 -154 -83 -254c0 -48 19 -98 65 -98c4 0 9 0 13 1l99 151v10 c0 76 30 134 80 134c4 0 8 -1 12 -2'], + 0xE366: [756,240,444,7,482,'467 458h15c-10 -115 -43 -182 -100 -213c-33 -18 -75 -20 -124 -20l-61 -148c15 5 33 9 47 9c87 0 115 -53 115 -107c0 -26 -10 -59 -28 -85c-30 -45 -89 -79 -134 -79c-34 0 -67 15 -67 52c0 22 16 42 43 42c30 0 40 -29 65 -29c43 0 81 28 81 69c0 39 -30 50 -76 50 c-24 0 -55 -8 -82 -10l-95 -229h-59l98 236c-41 15 -75 43 -75 101c0 59 26 105 64 140c39 35 87 55 138 66l188 453h58l-184 -445c128 8 164 108 173 147zM135 69l63 154c-70 -6 -117 -27 -117 -90c0 -30 13 -57 54 -64'], + 0xE36A: [756,240,528,-57,648,'648 756l-210 -323h75l-13 -56h-99l-165 -255h165l-9 -37h-180l-64 -275h-75l23 97l-96 -147h-57l185 284l91 389h162l210 323h57zM344 377h-63l-36 -153'], + 0xE36E: [756,240,457,31,445,'445 381l-179 -232v-389h-54v319l-61 -79h-100l161 171v136h-181l181 233v216h54v-149l59 76h100l-159 -167v-135h179zM212 381v82l-77 -82h77zM341 307h-75v-79'], + 0xE372: [756,240,528,8,715,'715 756l-300 -459c22 -55 33 -111 33 -173c0 -120 -32 -231 -105 -334l-18 11c41 74 52 156 52 237c0 37 -4 75 -11 115l-67 -34l-234 -359h-57l207 317l-29 -14l-9 27l68 34l91 140c-2 7 -5 15 -8 22l-184 -92l-9 28l181 90c-49 104 -126 172 -223 220l10 20 c155 -47 241 -125 288 -205l267 409h57zM330 167l30 15c-1 7 -3 15 -5 22'], + 0xE374: [756,240,533,-16,559,'559 428l-156 -145c-21 -33 -63 -122 -63 -170c0 -33 27 -41 49 -41c35 0 51 -18 51 -38c0 -23 -21 -47 -59 -47c-44 0 -83 32 -83 87c0 52 16 91 48 154l-1 1l-24 -22l-185 -447h-59l149 361l-133 -121h-109l148 136c14 23 55 134 55 190c0 24 -8 28 -26 28 c-24 0 -55 0 -55 42c0 29 31 45 53 45c41 0 68 -27 68 -77c0 -49 -21 -123 -45 -181l1 -1l111 101l196 473h58l-160 -386l63 58h108'], + 0xE376: [756,218,533,42,525,'525 756l-124 -301c65 -15 105 -61 105 -143c0 -168 -149 -315 -297 -322l-17 -40c48 -22 97 -44 97 -99c0 -32 -25 -57 -66 -69l-14 9c8 9 11 17 11 25c0 27 -25 46 -55 68l-41 -102h-57l56 137c-12 10 -22 22 -32 36c-33 48 -49 102 -49 157c0 169 137 345 304 348 l122 296h57zM384 415l-164 -397c32 1 67 16 100 53c48 54 95 152 95 255c0 40 -9 71 -31 89zM168 29l166 403c-46 0 -85 -25 -119 -66c-44 -53 -82 -154 -82 -238c0 -46 8 -82 35 -99zM146 -24l8 19c-16 5 -31 13 -44 30l-2 -2c9 -21 23 -35 38 -47'], + 0xE378: [756,218,533,35,506,'497 756l-58 -141c45 -57 67 -143 67 -232c0 -185 -99 -393 -308 -393c-6 0 -12 0 -18 1l-86 -209h-59l91 220c-52 21 -84 68 -84 143c0 163 134 294 273 313l55 131c-26 31 -59 51 -98 51c-37 0 -74 -9 -117 -35l-10 13c48 48 109 65 156 65c37 0 69 -10 96 -28l42 101 h58zM419 441l2 1c-1 30 -7 61 -17 88l-30 -70c16 -2 29 -9 45 -19zM361 427l-169 -407c7 -2 15 -2 23 -2c33 0 70 14 105 53c48 54 95 152 95 255c0 52 -14 89 -54 101zM147 52l158 380c-31 -8 -63 -34 -90 -66c-44 -53 -82 -154 -82 -238c0 -31 4 -57 14 -76'], + 0xE37A: [756,218,477,42,539,'539 756l-130 -314c10 1 19 9 23 18h15l-19 -137h-15c-3 27 -4 59 -20 82l-60 -147h10l-10 -37h-16l-78 -189c50 2 109 35 151 87l14 -12c-62 -83 -117 -109 -182 -115l-86 -210h-59l87 210c-81 11 -122 82 -122 161c0 143 134 307 292 307c8 0 16 -1 23 -3l124 299h58z M274 258l72 173c-4 1 -8 1 -12 1c-85 0 -156 -101 -179 -174h119zM259 221h-113c-8 -21 -10 -44 -10 -70c0 -57 19 -92 49 -108'], + 0xE37D: [756,218,710,-50,694,'629 756l-36 -87c61 0 101 -23 101 -75c0 -76 -92 -165 -223 -220l-35 -84c66 -8 103 -41 103 -103c0 -58 -44 -112 -96 -148c-38 -27 -81 -44 -132 -51l-85 -206h-59l85 204c-94 5 -180 63 -180 172c0 58 18 115 48 171c-84 14 -170 67 -170 170c0 95 99 188 256 188 c43 0 99 -5 156 -42l-12 -19c-55 31 -101 31 -136 31c-101 0 -223 -52 -223 -156c0 -89 73 -131 151 -140c98 148 258 262 389 299l40 96h58zM576 629l-88 -214c98 49 165 119 165 177c0 27 -17 40 -50 40c-7 0 -21 -2 -27 -3zM417 385l91 219c-87 -44 -188 -141 -264 -249 l1 -1c51 0 114 10 172 31zM419 247l-94 -225c87 19 150 90 150 151c0 46 -27 66 -56 74zM375 284l28 67c-50 -17 -118 -27 -178 -27c-57 -83 -69 -149 -69 -199c0 -67 48 -109 108 -109l90 218c-48 -23 -101 -86 -108 -171l-22 2c0 100 63 192 151 219'], + 0xE37F: [683,10,606,10,601,'601 681l-109 -407h84l-13 -44h-83l-32 -118c-4 -14 -8 -29 -8 -44c0 -9 3 -17 13 -17c34 0 69 44 90 67l12 -11c-35 -51 -84 -116 -152 -116c-28 0 -44 12 -44 41c0 38 12 74 23 111h-1c-51 -73 -118 -153 -215 -153c-71 0 -104 55 -104 120c0 41 8 82 23 120h-75l13 44 h81c19 35 42 67 69 95c47 48 117 91 186 91c37 0 77 -19 84 -59h1l44 172c2 9 5 19 5 29c0 22 -43 22 -57 22v15c30 6 56 11 82 19c25 7 48 16 75 25zM193 274h215c7 29 12 57 12 80c0 44 -14 78 -63 78c-67 0 -127 -76 -164 -158zM394 230h-219c-14 -40 -22 -78 -22 -106 c0 -40 6 -82 55 -82c35 0 61 24 89 42c6 4 46 51 52 59c16 22 32 54 45 87'], + 0xE381: [683,10,554,39,540,'540 450v-15c-63 -1 -187 -114 -236 -157l1 -4h192l-13 -44h-168c11 -40 46 -180 96 -180c39 0 61 33 80 62l14 -9c-25 -46 -74 -113 -133 -113c-93 0 -128 160 -142 230l-33 -26l-54 -194h-84l63 230h-84l13 44h84l82 299c3 9 4 19 4 29c0 24 -41 22 -57 22v15 c53 11 105 25 155 44l8 -2l-108 -407h34c24 19 163 126 163 147c0 14 -33 14 -42 14v15h165'], + 0xE383: [579,10,353,6,323,'323 450l-9 -32h-96l-39 -144h109l-13 -44h-108l-14 -51c-8 -31 -25 -78 -25 -109c0 -9 5 -20 16 -20c28 0 69 47 87 67l12 -11c-33 -48 -85 -116 -149 -116c-39 0 -52 28 -52 63c0 22 5 43 11 64l30 113h-77l13 44h76l39 144h-74c-1 3 -1 5 -1 8c0 26 41 26 59 33 c9 3 17 8 25 13c29 18 42 40 64 64c12 13 22 43 43 43c5 0 8 -3 8 -8c0 -20 -24 -96 -31 -121h96'], + 0xE385: [460,10,326,15,278,'278 274l-13 -44h-87l-15 -55c-7 -24 -26 -82 -26 -108c0 -8 3 -17 13 -17c28 0 70 47 88 67l15 -10c-32 -47 -87 -117 -149 -117c-35 0 -52 22 -52 56c0 32 14 79 23 110c6 22 13 48 21 74h-81l13 44h79c15 57 27 117 27 166c31 3 76 9 104 20l4 -3l-51 -183h87'], + 0xE387: [668,0,490,30,502,'502 269l-13 -44h-81l26 -225h-44l-23 225h-86l-157 -225h-94l162 225h-87l13 44h105l52 72c21 30 45 58 61 91v24c0 28 -16 128 -53 128c-22 0 -43 -20 -73 -20c-28 0 -48 17 -48 46c0 39 35 58 70 58c100 0 136 -91 145 -176l26 -223h99zM363 269l-7 64l-45 -64h52'], + 0xE389: [668,0,490,30,478,'478 456h-97l53 -456h-44l-34 333l-232 -333h-94l245 341c21 29 45 59 61 91v24h-148v36h144c-3 23 -18 92 -49 92c-22 0 -42 -20 -73 -20c-28 0 -48 17 -48 46c0 39 35 58 70 58c100 0 136 -91 145 -176h101v-36'], + 0xE400: [681,207,500,-141,504,'51 428h88c35 118 50 153 105 202c35 32 84 51 134 51c37 0 67 -11 85 -28c23 -5 41 -29 41 -54c0 -28 -23 -51 -49 -51c-24 0 -44 14 -50 37c-5 7 -7 16 -7 26c0 11 2 16 9 23c3 4 4 6 4 9c0 10 -13 16 -34 16c-35 0 -60 -8 -86 -42c-34 -44 -46 -78 -75 -189h150 c27 0 54 2 81 6c10 1 14 2 18 2l5 -3v-3c0 -5 -2 -14 -5 -25l-1 -4c-4 -17 -10 -35 -15 -53c-4 -17 -2 -8 -7 -26c-40 -146 -72 -286 -72 -294c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34 c0 -7 6 -12 18 -12c40 0 63 44 97 182l83 341c10 42 11 44 11 48c0 7 -5 10 -16 10h-155l-72 -318c-29 -126 -68 -209 -117 -252c-26 -22 -53 -33 -84 -33c-45 0 -78 24 -78 60c0 23 16 44 37 44s39 -19 39 -40c0 -5 -1 -9 -5 -16c-3 -5 -4 -8 -4 -11c0 -10 5 -13 20 -13 c25 0 44 14 61 47c17 32 32 77 58 224c35 197 61 293 67 308h-88'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Alphabets/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/Regular/Main.js new file mode 100644 index 0000000..fe3d2e8 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Alphabets/Regular/Main.js @@ -0,0 +1,216 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Alphabets'] = { + directory: 'Alphabets/Regular', + family: 'STIXMathJax_Alphabets', + id: 'STIXWEBALPHABETS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x384: [662,-507,277,113,240,'113 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34'], + 0x385: [662,-507,333,18,316,'316 557c0 -27 -23 -50 -50 -50c-26 0 -49 23 -49 50c0 26 23 49 49 49c27 0 50 -23 50 -49zM113 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM117 557c0 -27 -23 -50 -50 -50c-26 0 -49 23 -49 50c0 26 23 49 49 49 c27 0 50 -23 50 -49'], + 0x386: [683,0,722,15,707,'113 528l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM707 0h-255v19l45 4c14 1 24 15 24 29c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20 l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275l-115 -275h231'], + 0x387: [459,-348,278,81,192,'192 403c0 -30 -25 -55 -55 -55s-56 25 -56 55c0 32 24 56 56 56c30 0 55 -26 55 -56'], + 0x388: [683,0,750,8,737,'737 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h529l5 -143h-25c-15 90 -38 105 -285 105c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47c179 0 222 26 267 132h28z M8 528l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34'], + 0x389: [683,0,850,8,836,'836 0h-279v19c78 5 88 21 88 105v191h-303v-202c0 -73 13 -90 87 -94l1 -19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h280v-19c-73 -6 -89 -17 -89 -95v-189h303v189c0 79 -13 89 -89 95v19h280v-19c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19z M8 528l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34'], + 0x38A: [683,0,470,8,449,'8 528l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM449 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x38C: [683,14,722,8,688,'688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265 c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267zM8 528l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34'], + 0x38E: [683,0,840,8,818,'818 658v-19c-10 3 -21 5 -32 5c-139 0 -254 -160 -254 -340v-193c0 -78 19 -88 103 -92v-19h-306v19c90 6 101 15 101 104v172c-30 242 -102 328 -205 329c-18 0 -54 -11 -73 -18l-8 16c34 30 88 52 134 52c127 0 205 -82 230 -239h2c29 144 142 236 244 236 c22 0 41 -1 64 -13zM8 528l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34'], + 0x38F: [683,0,744,8,715,'715 0h-286l7 161c85 21 141 131 141 238c0 142 -74 241 -205 241c-136 0 -205 -121 -205 -241c0 -98 52 -213 140 -238l9 -161h-287v171h25c1 -61 18 -76 62 -76h151l-2 37c-139 39 -212 120 -212 265c0 136 117 279 319 279c198 0 319 -130 319 -279 c0 -146 -80 -227 -215 -265l-2 -37h154c41 0 60 24 62 74h25v-169zM8 528l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34'], + 0x390: [662,10,340,18,316,'316 557c0 -27 -23 -50 -50 -50c-26 0 -49 23 -49 50c0 26 23 49 49 49c27 0 50 -23 50 -49zM113 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM117 557c0 -27 -23 -50 -50 -50c-26 0 -49 23 -49 50c0 26 23 49 49 49 c27 0 50 -23 50 -49zM286 107l15 -8c-23 -48 -61 -109 -113 -109c-46 0 -59 45 -59 88v266c0 37 -11 49 -33 49c-9 0 -23 0 -42 -4v18c52 16 103 34 155 53l4 -4v-377c0 -10 5 -23 20 -23c22 0 30 10 53 51'], + 0x3AA: [873,0,333,18,316,'316 823c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM117 823c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19 c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x3AB: [873,0,722,29,703,'515 823c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM316 823c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM703 658v-19c-10 3 -21 5 -32 5c-139 0 -254 -160 -254 -340v-193c0 -78 19 -88 103 -92v-19 h-306v19c90 6 101 15 101 104v172c-30 242 -102 328 -205 329c-18 0 -54 -11 -73 -18l-8 16c34 30 88 52 134 52c127 0 205 -82 230 -239h2c29 144 142 236 244 236c22 0 41 -1 64 -13'], + 0x3AC: [662,10,543,29,529,'217 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM514 129h15c0 -76 -29 -139 -79 -139c-41 0 -66 45 -80 110c-35 -63 -76 -110 -154 -110c-108 0 -187 97 -187 233c0 127 74 237 196 237c87 0 136 -74 154 -146l45 136h97 l-109 -263c10 -46 39 -135 69 -135c14 0 26 20 33 77zM331 208c-11 74 -37 224 -111 224c-50 0 -101 -45 -101 -159c0 -74 17 -255 106 -255c69 0 96 137 106 190'], + 0x3AD: [662,10,439,25,407,'153 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM393 145l14 -9c-45 -105 -117 -146 -192 -146c-173 0 -190 93 -190 132c0 54 45 104 100 113c-48 14 -77 52 -77 94c0 68 68 131 194 131c67 0 156 -25 156 -103 c0 -28 -25 -42 -47 -42c-24 0 -44 17 -44 42c0 19 4 24 4 34c0 27 -31 40 -87 40c-57 0 -93 -45 -93 -97c0 -46 28 -85 84 -85c30 0 36 9 61 9c26 0 38 -10 38 -21c0 -13 -16 -26 -48 -26c-17 0 -23 6 -44 6c-44 0 -107 -25 -107 -88c0 -58 53 -89 105 -89 c74 0 124 37 173 105'], + 0x3AE: [662,217,512,10,452,'168 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM452 -217h-85c-8 15 -15 31 -15 86v439c0 66 -23 97 -73 97c-33 0 -59 -13 -103 -57v-348h-84v313c0 66 -12 75 -20 75c-21 0 -39 -30 -48 -49l-14 6c25 53 60 110 103 110 c46 0 54 -19 60 -76h1c52 59 98 81 144 81c76 0 118 -60 118 -141v-451c0 -39 5 -67 16 -85'], + 0x3AF: [662,10,275,20,267,'80 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM252 107l15 -8c-23 -48 -61 -109 -113 -109c-46 0 -59 45 -59 88v266c0 37 -11 49 -33 49c-9 0 -23 0 -42 -4v18c52 16 103 34 155 53l4 -4v-377c0 -10 5 -23 20 -23 c22 0 30 10 53 51'], + 0x3B0: [662,10,524,16,494,'404 557c0 -27 -23 -50 -50 -50c-26 0 -49 23 -49 50c0 26 23 49 49 49c27 0 50 -23 50 -49zM201 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM205 557c0 -27 -23 -50 -50 -50c-26 0 -49 23 -49 50c0 26 23 49 49 49 c27 0 50 -23 50 -49zM255 460h27c111 0 212 -78 212 -235c0 -130 -93 -235 -216 -235c-146 0 -180 95 -180 208v120c0 38 -3 70 -20 70c-20 0 -39 -30 -48 -49l-14 6c25 53 61 110 103 110s63 -23 63 -70v-211c0 -57 20 -156 102 -156c87 0 120 91 120 191 c0 57 -15 127 -50 173c-28 36 -60 55 -99 58v20'], + 0x3CA: [622,10,340,18,316,'316 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM117 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM276 107l15 -8c-23 -48 -61 -109 -113 -109c-46 0 -59 45 -59 88v266c0 37 -11 49 -33 49 c-9 0 -23 0 -42 -4v18c52 16 103 34 155 53l4 -4v-377c0 -10 5 -23 20 -23c22 0 30 10 53 51'], + 0x3CB: [622,10,524,16,494,'404 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM205 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM255 460h27c111 0 212 -78 212 -235c0 -130 -93 -235 -216 -235c-146 0 -180 95 -180 208 v120c0 38 -3 70 -20 70c-20 0 -39 -30 -48 -49l-14 6c25 53 61 110 103 110s63 -23 63 -70v-211c0 -57 20 -156 102 -156c87 0 120 91 120 191c0 57 -15 127 -50 173c-28 36 -60 55 -99 58v20'], + 0x3CC: [662,10,505,35,473,'191 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM473 228c0 -116 -100 -238 -221 -238c-119 0 -217 92 -217 212c0 127 86 258 224 258c136 0 214 -102 214 -232zM384 191c0 85 -38 237 -145 237c-87 0 -115 -115 -115 -184 c0 -83 42 -222 145 -222c80 0 115 103 115 169'], + 0x3CD: [662,10,524,16,494,'192 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM255 460h27c111 0 212 -78 212 -235c0 -130 -93 -235 -216 -235c-146 0 -180 95 -180 208v120c0 38 -3 70 -20 70c-20 0 -39 -30 -48 -49l-14 6c25 53 61 110 103 110 s63 -23 63 -70v-211c0 -57 20 -156 102 -156c87 0 120 91 120 191c0 57 -15 127 -50 173c-28 36 -60 55 -99 58v20'], + 0x3CE: [662,10,625,29,595,'247 507l59 132c7 15 17 23 38 23c13 0 30 -9 30 -29c0 -12 -11 -26 -27 -45l-66 -81h-34zM361 445v15c133 0 234 -74 234 -249c0 -74 -16 -128 -48 -165s-69 -56 -111 -56c-58 0 -100 32 -124 96c-28 -64 -70 -96 -126 -96c-40 0 -76 19 -109 56c-33 38 -48 92 -48 163 c0 175 103 251 234 251v-15c-83 0 -144 -81 -144 -227c0 -92 11 -200 81 -200c45 0 73 46 85 128c-12 39 -18 62 -18 105c0 73 22 98 45 98s45 -28 45 -96c0 -40 -6 -65 -18 -107c9 -81 47 -128 82 -128c76 0 84 98 84 190c0 154 -51 237 -144 237'], + 0x401: [872,0,629,22,607,'485 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM286 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM607 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-24 c-15 90 -39 105 -155 105h-131c-28 0 -35 -4 -35 -36v-221h151c86 0 101 17 113 96h23v-233h-23c-12 84 -27 97 -113 97h-151v-242c0 -42 27 -47 101 -47h36c143 0 186 25 231 131h28'], + 0x402: [662,189,756,18,700,'327 596v-263c16 21 48 55 89 77c31 17 82 26 116 26c136 0 168 -136 168 -254c0 -100 -14 -217 -58 -292c-28 -48 -69 -79 -127 -79c-53 0 -104 30 -104 81c0 29 18 65 58 65c27 0 51 -20 51 -50c0 -11 -5 -27 -5 -35c0 -15 8 -24 18 -24c52 0 52 228 52 324 c0 115 0 200 -101 200c-43 0 -105 -22 -157 -78v-175c0 -81 15 -96 85 -100v-19h-283v19c78 2 96 13 96 100v469c0 26 -11 36 -34 36h-15c-93 0 -107 -14 -127 -95c-3 -11 -5 -21 -7 -35h-24l7 168h512l5 -168h-24c-1 8 -6 26 -10 40c-23 79 -66 90 -137 90h-9 c-25 0 -35 -7 -35 -28'], + 0x403: [928,0,571,19,544,'251 757l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM544 483h-24c-1 8 -6 36 -10 50c-23 79 -80 91 -126 91h-141c-28 0 -35 -4 -35 -36v-476c0 -75 13 -89 91 -93v-19h-280v19c75 5 87 17 87 95v436c0 74 -12 89 -87 93v19h520'], + 0x404: [676,14,651,38,621,'602 129l19 -18c-55 -81 -138 -125 -251 -125c-93 0 -180 32 -236 89c-58 60 -96 145 -96 244c0 100 32 183 86 249c60 73 144 108 233 108c37 0 76 -4 114 -15c20 -6 53 -18 69 -18c18 0 35 12 40 33h20l4 -228h-24c-11 55 -20 85 -44 112c-42 47 -95 76 -157 76 c-133 0 -216 -111 -224 -269h291v-44h-292c0 -65 11 -122 35 -168c38 -75 106 -125 200 -125c86 0 140 30 213 99'], + 0x405: [676,14,556,62,510,'488 463h-25c-12 44 -23 70 -41 94c-35 45 -85 83 -145 83c-62 0 -101 -45 -101 -100c0 -68 74 -110 179 -171c106 -62 155 -120 155 -196c0 -112 -88 -187 -204 -187c-42 0 -81 7 -118 23c-19 8 -36 11 -47 11c-15 0 -28 -12 -28 -33h-22l-29 212h22 c46 -121 111 -177 206 -177c70 0 118 46 118 112c0 35 -10 58 -29 79c-35 38 -103 82 -167 116c-90 48 -122 110 -122 172c0 109 75 175 174 175c41 0 67 -6 105 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21'], + 0x406: [662,0,333,18,315,'315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x407: [872,0,333,25,323,'323 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM124 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM322 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19 c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x408: [662,14,373,-6,354,'354 662v-19c-81 -6 -92 -17 -92 -94v-364c0 -137 -61 -199 -167 -199c-60 0 -101 25 -101 72c0 26 22 52 49 52c23 0 38 -14 49 -42c10 -25 11 -44 31 -44c31 0 37 20 37 70v456c0 81 -12 86 -93 93v19h287'], + 0x409: [662,14,988,10,954,'576 366h109c154 0 269 -49 269 -184c0 -115 -94 -182 -239 -182h-337v19c79 2 96 18 96 94v472c0 28 -8 39 -35 39h-141c-29 0 -35 -12 -35 -39v-324c0 -100 -2 -275 -151 -275c-58 0 -102 14 -102 73c0 39 33 55 56 55c55 0 50 -79 80 -79c67 0 71 152 71 255v260 c0 77 -28 92 -86 93v19h534v-19c-75 -6 -89 -18 -89 -95v-182zM576 326v-243c0 -34 16 -45 62 -45c112 0 201 22 201 141s-90 147 -185 147h-78'], + 0x40A: [662,0,1017,19,983,'605 366h109c154 0 269 -49 269 -184c0 -115 -94 -182 -239 -182h-337v19c79 2 96 18 96 94v213h-293v-213c0 -73 14 -90 88 -94v-19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h279v-19c-73 -6 -88 -17 -88 -95v-182h293v182c0 79 -12 89 -88 95v19h279v-19 c-74 -6 -89 -18 -89 -95v-182zM605 326v-243c0 -34 16 -45 62 -45c112 0 201 22 201 141s-90 147 -185 147h-78'], + 0x40B: [662,0,803,18,786,'786 0h-283v19c78 2 96 13 96 100v120c0 87 -47 133 -108 133c-48 0 -112 -22 -164 -78v-175c0 -81 19 -96 89 -100v-19h-287v19c78 2 96 13 96 100v469c0 26 -11 36 -34 36h-15c-93 0 -107 -14 -127 -95c-3 -11 -5 -23 -7 -37h-24l7 170h510l5 -168h-24 c-1 8 -6 26 -10 40c-23 79 -64 90 -135 90h-9c-25 0 -35 -7 -35 -28v-263c28 36 72 60 104 77c30 16 63 26 102 26c102 0 168 -64 168 -195v-122c0 -81 15 -96 85 -100v-19'], + 0x40C: [928,0,690,19,686,'255 757l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM686 0h-191c-32 29 -66 83 -118 171c-50 84 -96 128 -109 137c-13 8 -32 13 -56 14v-211c0 -77 16 -86 89 -92v-19h-282v19c79 4 91 23 91 110v420c0 74 -11 89 -90 94v19h282 v-19c-83 -6 -90 -18 -90 -95v-186c33 0 58 2 71 7c76 27 99 90 125 165c28 81 64 142 154 142c50 0 75 -28 75 -63c0 -24 -14 -58 -49 -58c-57 0 -49 57 -75 57c-34 0 -55 -60 -73 -111c-29 -84 -63 -134 -112 -156v-2c56 -23 90 -52 133 -114c55 -80 91 -142 124 -169 s61 -40 101 -41v-19'], + 0x40E: [915,15,711,15,694,'510 848c0 -62 -82 -91 -135 -91s-135 30 -135 91c0 44 34 67 62 67c14 0 24 -8 24 -25c0 -33 -44 -17 -44 -41c0 -22 21 -40 93 -40s93 18 93 40c0 24 -44 8 -44 41c0 17 13 25 27 25c30 0 59 -23 59 -67zM694 662v-18c-49 -6 -85 -39 -111 -100l-127 -300 c-33 -77 -59 -132 -80 -165c-41 -65 -90 -94 -143 -94c-44 0 -80 20 -80 54c0 23 18 42 46 42c13 0 30 -6 49 -17c12 -7 22 -10 28 -10c26 0 55 27 87 80l-240 422c-17 30 -34 51 -49 63s-34 21 -59 25v18h268v-18c-47 -2 -71 -15 -71 -38c0 -17 18 -55 53 -116l144 -254 l106 254c22 53 33 89 33 107c0 26 -21 41 -62 47v18h208'], + 0x40F: [662,153,715,19,696,'696 0h-189c-56 0 -103 -22 -126 -101c-4 -13 -9 -41 -10 -50v-2h-24v2c-2 9 -6 37 -10 50c-23 79 -70 101 -126 101h-192v19c74 6 89 18 89 95v437c0 71 -14 86 -89 92v19h279v-19c-78 -5 -88 -21 -88 -105v-470c0 -26 7 -30 35 -30h225c28 0 35 4 35 31v480 c0 73 -13 90 -87 94v19h278v-19c-78 -5 -89 -17 -89 -103v-426c0 -79 19 -88 89 -95v-19'], + 0x410: [674,0,713,9,701,'701 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19zM441 256l-116 276l-115 -276h231'], + 0x411: [662,0,611,19,577,'217 366h74c125 0 286 -20 286 -184c0 -111 -94 -182 -239 -182h-319v19c78 2 96 18 96 94v437c0 78 -15 88 -96 93v19h512l5 -168h-24c-1 8 -6 26 -10 40c-23 79 -80 90 -126 90h-124c-28 0 -35 -8 -35 -36v-222zM217 326v-243c0 -34 1 -45 44 -45c112 0 201 22 201 141 s-90 147 -185 147h-60'], + 0x412: [662,0,651,19,595,'424 359v-1c66 -11 93 -29 122 -55c32 -29 49 -71 49 -115c0 -111 -94 -188 -239 -188h-337v19c79 2 96 18 96 94v437c0 79 -15 88 -96 93v19h280c173 0 262 -51 262 -157c0 -41 -16 -82 -41 -104c-24 -21 -44 -29 -96 -42zM217 376h92c101 0 150 41 150 124 c0 84 -58 124 -177 124h-41c-17 0 -24 -9 -24 -32v-216zM217 336v-253c0 -34 16 -45 62 -45c84 0 119 4 163 43c25 22 38 65 38 108c0 48 -14 85 -47 107c-60 40 -98 40 -216 40'], + 0x413: [662,0,571,19,544,'544 483h-24c-1 8 -6 36 -10 50c-23 79 -80 91 -126 91h-141c-28 0 -35 -4 -35 -36v-476c0 -75 13 -89 91 -93v-19h-280v19c75 5 87 17 87 95v436c0 74 -12 89 -87 93v19h520'], + 0x414: [662,153,665,14,646,'646 -153h-24c-1 8 -6 38 -10 52c-23 79 -70 101 -126 101h-312c-56 0 -103 -22 -126 -101c-4 -14 -9 -44 -10 -52h-24v172h20c107 0 145 138 146 531c0 77 -28 92 -86 93v19h552v-19c-75 -6 -89 -18 -89 -95v-433c0 -64 11 -96 89 -96v-172zM455 82v506 c0 28 -8 36 -35 36h-159c-25 0 -35 0 -35 -36c0 -313 -18 -468 -73 -550h265c29 0 37 13 37 44'], + 0x415: [662,0,629,22,607,'607 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-24c-15 90 -39 105 -155 105h-131c-28 0 -35 -4 -35 -36v-221h151c86 0 101 17 113 96h23v-233h-23c-12 84 -27 97 -113 97h-151v-242c0 -42 27 -47 101 -47h36c143 0 186 25 231 131 h28'], + 0x416: [676,0,1021,8,1013,'1013 0h-191c-32 29 -65 80 -118 167c-76 125 -74 155 -145 155v-211c0 -77 15 -87 87 -92v-19h-261v19c72 4 77 16 77 92v211c-73 0 -69 -30 -145 -155c-53 -87 -86 -138 -118 -167h-191v19c121 22 138 80 225 206c43 62 72 96 128 119l2 2c-49 22 -76 72 -107 155 c-19 51 -40 108 -74 108c-26 0 -18 -57 -76 -57c-35 0 -49 33 -49 57c0 35 29 67 79 67c86 0 121 -61 151 -142c36 -96 68 -172 175 -172v187c0 76 -8 90 -90 94v19h277v-19c-83 -6 -90 -18 -90 -95v-186c122 0 136 76 174 172c32 81 65 142 151 142c50 0 79 -32 79 -67 c0 -24 -14 -57 -49 -57c-58 0 -50 57 -76 57c-34 0 -55 -57 -74 -108c-31 -83 -58 -133 -107 -155l3 -2c56 -23 85 -57 128 -119c87 -126 104 -184 225 -206v-19'], + 0x417: [676,14,576,28,545,'354 349v-1c91 -6 191 -65 191 -158c0 -74 -39 -129 -100 -164c-49 -28 -96 -40 -163 -40c-115 0 -198 46 -254 128l18 17c74 -70 131 -101 210 -101c114 0 174 54 174 152c0 50 -27 87 -62 110c-43 28 -67 34 -159 34v40c89 0 107 6 142 27c51 30 58 82 58 121 c0 71 -57 124 -148 124c-108 0 -176 -81 -191 -198h-24l4 236h20c5 -21 20 -33 38 -33c16 0 51 12 71 18c37 10 69 15 105 15c164 0 227 -73 227 -169c0 -89 -75 -149 -157 -158'], + 0x418: [662,0,723,19,704,'704 0h-279v19c78 5 88 21 88 105v379l-303 -407c0 -57 19 -74 87 -77l1 -19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h280v-19c-73 -6 -89 -17 -89 -95v-384l303 405c0 57 -21 68 -89 74v19h280v-19c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19'], + 0x419: [915,0,723,19,704,'496 848c0 -62 -82 -91 -135 -91s-135 30 -135 91c0 44 34 67 62 67c14 0 24 -8 24 -25c0 -33 -44 -17 -44 -41c0 -22 21 -40 93 -40s93 18 93 40c0 24 -44 8 -44 41c0 17 13 25 27 25c30 0 59 -23 59 -67zM704 0h-279v19c78 5 88 21 88 105v379l-303 -407 c2 -59 19 -74 87 -77l1 -19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h280v-19c-73 -6 -89 -17 -89 -95v-384l302 405c-3 60 -20 68 -88 74v19h280v-19c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19'], + 0x41A: [676,0,690,19,686,'686 0h-191c-32 29 -66 83 -118 171c-50 84 -96 128 -109 137c-13 8 -32 13 -56 14v-211c0 -77 16 -86 89 -92v-19h-282v19c79 4 91 23 91 110v420c0 74 -11 89 -90 94v19h282v-19c-83 -6 -90 -18 -90 -95v-186c33 0 58 2 71 7c76 27 99 90 125 165c28 81 64 142 154 142 c50 0 75 -28 75 -63c0 -24 -14 -58 -49 -58c-57 0 -49 57 -75 57c-34 0 -55 -60 -73 -111c-29 -84 -63 -134 -112 -156v-2c56 -23 90 -52 133 -114c55 -80 91 -142 124 -169s61 -40 101 -41v-19'], + 0x41B: [662,14,683,9,664,'664 0h-279v19c78 5 88 21 88 106v460c0 28 -8 39 -35 39h-141c-29 0 -35 -12 -35 -39v-324c0 -100 -2 -275 -151 -275c-58 0 -102 14 -102 73c0 39 33 55 56 55c55 0 50 -79 80 -79c67 0 71 152 71 255v260c0 77 -28 92 -86 93v19h534v-19c-75 -6 -89 -18 -89 -95v-437 c0 -71 14 -86 89 -92v-19'], + 0x41C: [662,0,893,19,871,'871 0h-280v19c79 5 90 21 90 104v449l-255 -572h-14l-252 549v-398c0 -110 16 -128 93 -132v-19h-234v19c83 6 97 20 97 132v398c0 76 -13 89 -95 94v19h198l231 -502l221 502h199v-19c-72 -1 -87 -18 -87 -93v-438c0 -71 15 -88 88 -93v-19'], + 0x41D: [662,0,726,19,704,'704 0h-279v19c78 5 88 21 88 105v191h-303v-202c0 -73 14 -90 88 -94v-19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h279v-19c-73 -6 -88 -17 -88 -95v-189h303v189c0 79 -12 89 -88 95v19h279v-19c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19'], + 0x41E: [676,14,729,36,690,'690 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM576 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265 c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0x41F: [662,0,724,19,705,'705 0h-279v19c78 5 88 21 88 105v460c0 31 -10 40 -37 40h-229c-29 0 -38 -9 -38 -41v-470c0 -73 14 -90 88 -94v-19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h686v-19c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19'], + 0x420: [662,0,571,19,535,'19 662h249c100 0 172 -25 217 -63c33 -28 50 -69 50 -119c0 -53 -20 -98 -57 -131c-58 -52 -107 -61 -214 -61c-26 0 -32 1 -59 3v-179c0 -76 13 -89 94 -93v-19h-280v19c78 6 84 17 84 103v429c0 74 -10 86 -84 92v19zM205 588v-257c23 -2 31 -3 51 -3 c110 0 170 57 170 147c0 110 -50 149 -186 149c-29 0 -35 -9 -35 -36'], + 0x421: [676,14,677,36,641,'622 131l19 -18c-58 -83 -155 -127 -273 -127c-91 0 -178 32 -236 89c-61 60 -96 151 -96 250c0 100 33 183 90 247c64 71 150 104 243 104c39 0 79 -4 119 -15c21 -6 52 -18 69 -18c19 0 36 12 42 33h20l9 -227h-23c-12 55 -27 84 -52 111c-44 47 -96 76 -161 76 c-151 0 -240 -122 -240 -295c0 -110 25 -188 72 -239c44 -47 109 -72 178 -72c90 0 145 30 220 101'], + 0x422: [662,0,618,30,592,'592 492h-24c-22 110 -41 128 -147 128h-59v-509c0 -76 14 -88 96 -92v-19h-292v19c83 5 94 16 94 104v497h-60c-106 0 -126 -18 -146 -128h-24l7 170h548'], + 0x423: [662,15,711,15,694,'694 662v-18c-49 -6 -85 -39 -111 -100l-127 -300c-33 -77 -59 -132 -80 -165c-41 -65 -90 -94 -143 -94c-44 0 -80 20 -80 54c0 23 18 42 46 42c13 0 30 -6 49 -17c12 -7 22 -10 28 -10c26 0 55 27 87 80l-240 422c-17 30 -34 51 -49 63s-34 21 -59 25v18h268v-18 c-47 -2 -71 -15 -71 -38c0 -17 18 -55 53 -116l144 -254l106 254c22 53 33 89 33 107c0 26 -21 41 -62 47v18h208'], + 0x424: [662,0,769,38,731,'435 580v-20c139 0 296 -64 296 -230c0 -158 -161 -227 -271 -227h-25v-27c0 -43 19 -53 103 -57v-19h-306v19c66 0 101 16 101 56v28h-17c-188 0 -278 96 -278 227c0 166 153 230 295 230v20c0 45 -15 63 -101 63v19h306v-19c-87 0 -103 -22 -103 -63zM433 523v-383 c93 0 189 65 189 178c0 97 -60 205 -189 205zM335 140v383c-111 0 -188 -107 -188 -205c0 -94 67 -178 188 -178'], + 0x425: [662,0,716,9,703,'703 0h-296v19l26 2c32 2 50 11 50 29c0 16 -17 47 -51 98l-95 141l-119 -149c-37 -46 -53 -74 -53 -89c0 -19 18 -28 76 -32v-19h-232v19c52 5 68 17 145 114l156 195l-106 155c-96 141 -117 153 -183 160v19h301v-19l-29 -2c-28 -2 -46 -5 -46 -28 c0 -29 30 -67 83 -145l44 -64l112 140c30 37 40 52 40 67c0 23 -14 30 -68 32v19h237v-19c-64 -4 -89 -21 -152 -99l-143 -177l192 -274c39 -56 58 -68 111 -74v-19'], + 0x426: [662,153,715,19,696,'696 -153h-24c-1 8 -6 38 -10 52c-23 79 -70 101 -126 101h-517v19c74 6 89 18 89 95v437c0 71 -14 86 -89 92v19h279v-19c-78 -5 -88 -21 -88 -105v-470c0 -26 7 -30 35 -30h225c28 0 35 4 35 31v480c0 73 -13 90 -87 94v19h278v-19c-78 -5 -89 -17 -89 -103v-426 c0 -78 12 -89 89 -95v-172'], + 0x427: [662,0,657,3,639,'639 0h-279v19c74 6 88 18 88 95v201c-34 -18 -99 -46 -182 -46c-101 0 -174 19 -174 154v124c0 79 -12 90 -89 96v19h275v-19c-73 -6 -84 -16 -84 -96v-115c0 -88 29 -119 116 -119c63 0 117 26 138 34v220c0 61 -6 70 -75 76v19h266v-19c-74 -6 -89 -16 -89 -105v-424 c0 -77 14 -89 89 -95v-19'], + 0x428: [662,0,994,29,965,'965 0h-936v19c74 6 89 18 89 95v437c0 71 -14 86 -89 92v19h266v-19c-65 0 -75 -21 -75 -105v-470c0 -26 7 -30 35 -30h151c28 0 35 4 35 31v482c0 71 -9 84 -75 92v19h265v-19c-78 -5 -88 -21 -88 -105v-471c0 -25 7 -29 35 -29h163c25 0 33 4 33 31v480 c0 73 -13 90 -87 94l-1 19h279v-19c-78 -5 -89 -17 -89 -103v-426c0 -78 12 -89 89 -95v-19'], + 0x429: [662,153,994,29,965,'965 -153h-24c0 3 -6 38 -10 52c-23 79 -70 101 -126 101h-776v19c74 6 89 18 89 95v437c0 71 -14 86 -89 92v19h266v-19c-65 0 -75 -21 -75 -105v-470c0 -26 7 -30 35 -30h151c28 0 35 4 35 31v482c0 71 -9 84 -75 92v19h265v-19c-78 -5 -88 -21 -88 -105v-471 c0 -25 7 -29 35 -29h163c25 0 33 4 33 31v480c0 73 -13 90 -87 94l-1 19h279v-19c-78 -5 -89 -17 -89 -103v-426c0 -78 12 -89 89 -95v-172'], + 0x42A: [662,0,737,13,703,'342 366h96c154 0 265 -49 265 -184c0 -115 -96 -182 -241 -182h-318v19c79 2 96 18 96 94v507h-60c-106 0 -123 -17 -143 -128h-24l7 170h418v-19c-74 -6 -96 -18 -96 -95v-182zM342 326v-243c0 -34 9 -45 49 -45c108 0 197 22 197 141s-86 147 -181 147h-65'], + 0x42B: [662,0,884,19,865,'865 0h-280v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h280v-19c-73 -6 -89 -17 -89 -95v-434c0 -73 15 -91 89 -95v-19zM217 366h99c154 0 263 -49 263 -184c0 -115 -94 -182 -239 -182h-321v19c79 2 96 18 96 94v437c0 79 -15 88 -96 93v19h294v-19 c-74 -6 -96 -18 -96 -95v-182zM217 326v-243c0 -34 6 -45 52 -45c112 0 195 22 195 141s-84 147 -179 147h-68'], + 0x42C: [662,0,612,19,578,'217 366h99c154 0 262 -49 262 -184c0 -115 -94 -182 -239 -182h-320v19c79 2 96 18 96 94v437c0 79 -15 88 -96 93v19h294v-19c-74 -6 -96 -18 -96 -95v-182zM217 326v-243c0 -34 6 -45 52 -45c112 0 194 22 194 141s-83 147 -178 147h-68'], + 0x42D: [676,14,651,30,613,'51 676h20c5 -21 22 -33 40 -33c16 0 49 12 69 18c38 11 77 15 114 15c89 0 173 -35 233 -108c54 -66 86 -149 86 -249c0 -99 -38 -184 -96 -244c-56 -57 -143 -89 -236 -89c-113 0 -196 44 -251 125l19 18c73 -69 127 -99 213 -99c94 0 162 50 200 125 c24 46 35 103 35 168h-292v44h291c-8 158 -91 269 -224 269c-62 0 -115 -29 -157 -76c-24 -27 -33 -57 -44 -112h-24'], + 0x42E: [676,14,902,19,863,'210 359h88c9 189 122 317 283 317c169 0 282 -147 282 -345c0 -206 -117 -345 -282 -345c-162 0 -276 131 -283 329h-88v-202c0 -73 14 -90 88 -94v-19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h279v-19c-73 -6 -88 -17 -88 -95v-189zM755 337 c0 114 -20 208 -69 256c-31 30 -65 47 -106 47c-47 0 -90 -22 -124 -67c-36 -49 -50 -146 -50 -241c0 -119 16 -209 68 -265c30 -31 68 -45 108 -45c43 0 81 15 111 48c47 53 62 147 62 267'], + 0x42F: [662,0,637,3,618,'618 0h-280v19c81 4 94 17 94 93v198h-37l-230 -310h-162v19c33 2 69 17 94 50l185 246c-117 14 -197 68 -197 176c0 143 121 171 274 171h259v-19c-74 -6 -84 -18 -84 -92v-429c0 -86 6 -97 84 -103v-19zM432 348v225c0 39 -13 51 -52 51c-46 0 -83 -2 -113 -15 c-46 -20 -73 -59 -73 -121c0 -90 69 -140 179 -140h59'], + 0x430: [460,10,450,37,446,'446 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1c-53 -60 -106 -73 -149 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 71 39 184 81v54c0 62 -37 87 -82 87c-40 0 -70 -19 -70 -46c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46 c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s32 -50 32 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM291 130v134c-62 -22 -107 -47 -132 -70c-24 -22 -34 -38 -34 -69c0 -53 30 -77 69 -77c20 0 45 5 62 16c29 20 35 37 35 66'], + 0x431: [685,10,507,39,478,'84 347l2 -1c44 91 110 114 176 114c122 0 216 -91 216 -229c0 -139 -90 -241 -225 -241c-148 0 -214 130 -214 263c0 134 43 381 260 381h67c46 0 67 12 75 51h20c-2 -27 -9 -94 -73 -118c-38 -14 -85 -6 -130 -11c-103 -12 -168 -108 -174 -209zM388 204 c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -114 -59 -114 -159c0 -79 16 -151 53 -205c22 -32 52 -50 88 -50c74 0 118 70 118 186'], + 0x432: [450,0,474,24,438,'307 237v-1c69 -7 131 -41 131 -110c0 -41 -22 -82 -59 -103c-27 -15 -63 -23 -104 -23h-251v15c54 1 62 10 62 62v297c0 53 -7 57 -62 61v15h211c118 0 175 -42 175 -114c0 -65 -52 -94 -103 -99zM170 391v-113c0 -26 6 -31 51 -31c63 0 107 29 107 86s-27 89 -123 89 c-21 0 -35 -3 -35 -31zM170 193v-125c0 -31 10 -40 42 -40c74 0 135 17 135 97c0 86 -70 94 -129 94c-42 0 -48 -7 -48 -26'], + 0x433: [450,0,394,17,387,'387 309h-17c-13 76 -50 111 -175 111c-26 0 -32 -8 -32 -32v-316c0 -40 11 -53 62 -57v-15h-208v15c51 4 62 6 62 64v309c0 42 -10 45 -62 47v15h365'], + 0x434: [450,137,462,14,439,'439 450v-15c-51 -4 -62 -10 -62 -69v-284c0 -63 10 -63 61 -67v-152h-18c-34 124 -60 137 -98 137h-186c-33 0 -70 -13 -104 -137h-18v152c82 0 99 61 99 184v167c0 54 -22 64 -71 69v15h397zM293 81v298c0 38 -6 43 -40 43h-70c-25 0 -37 -7 -37 -42v-201 c0 -44 -8 -110 -30 -151h135c26 0 42 13 42 53'], + 0x435: [460,10,466,38,437,'421 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -62 34 -116h-308c0 -105 41 -213 153 -213c67 0 109 28 158 102zM112 303h204c-11 81 -32 124 -98 124c-56 0 -95 -49 -106 -124'], + 0x436: [456,0,721,14,707,'707 0h-132l-102 164c-34 54 -37 56 -72 61v-158c0 -35 8 -49 48 -51l20 -1v-15h-218v15l23 2c31 3 43 16 43 50v158c-29 -2 -35 -6 -69 -60l-102 -165h-132v15c23 2 40 8 53 19c13 12 39 41 58 81c40 84 67 109 116 125v2c-88 44 -72 137 -112 137 c-13 0 -32 -15 -56 -15c-27 0 -45 18 -45 44c0 30 26 48 59 48c47 0 70 -24 89 -63c20 -40 40 -94 78 -123c16 -12 37 -17 63 -17v124c0 49 -14 54 -61 59v14h207v-14c-50 -5 -62 -21 -62 -57v-126c25 0 48 6 66 17c31 19 58 88 83 132c20 36 47 54 83 54 c39 0 61 -23 61 -48c0 -26 -20 -44 -46 -44c-22 0 -40 15 -54 15c-45 0 -41 -89 -114 -137v-2c47 -21 75 -44 116 -124c20 -39 46 -71 58 -82s30 -17 53 -19v-15'], + 0x437: [460,10,390,14,357,'228 242v-1c64 -6 129 -40 129 -112c0 -43 -27 -82 -62 -106c-34 -23 -76 -33 -125 -33c-77 0 -118 32 -156 87l14 14c49 -46 77 -65 130 -65c73 0 107 47 107 98c0 76 -52 101 -145 101v28c42 0 65 5 88 17c29 15 45 46 45 74c0 60 -35 88 -83 88 c-74 0 -106 -53 -121 -133h-17l7 161h13c3 -15 14 -23 26 -23c10 0 22 8 36 12c25 7 36 11 58 11c46 0 79 -5 106 -18c38 -19 61 -51 61 -88c0 -59 -56 -102 -111 -112'], + 0x438: [450,0,525,23,502,'502 450v-15c-51 -4 -62 -10 -62 -69v-287c0 -54 12 -59 61 -64v-15h-207v15c50 4 62 15 62 59v256l-187 -258c0 -40 11 -53 62 -57v-15h-208v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h207v-15c-54 -5 -62 -16 -62 -58v-256l187 257c0 42 -11 53 -62 57v15h208'], + 0x439: [704,0,525,23,502,'402 637c0 -62 -82 -91 -135 -91s-135 30 -135 91c0 44 34 67 62 67c14 0 24 -8 24 -25c0 -33 -44 -17 -44 -41c0 -22 21 -40 93 -40s93 18 93 40c0 24 -44 8 -44 41c0 17 13 25 27 25c30 0 59 -23 59 -67zM502 450v-15c-51 -4 -62 -10 -62 -69v-287c0 -54 12 -59 61 -64 v-15h-207v15c50 4 62 15 62 59v256l-187 -258c0 -40 11 -53 62 -57v-15h-208v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h207v-15c-54 -5 -62 -16 -62 -58v-256l187 257c0 42 -11 53 -62 57v15h208'], + 0x43A: [456,0,503,23,495,'495 0h-132l-109 164c-35 52 -39 56 -72 61v-158c0 -35 12 -49 52 -51l23 -1v-15h-234v15l28 2c39 3 47 16 47 50v310c0 49 -14 54 -61 59v14h207v-14c-50 -5 -62 -21 -62 -57v-126c25 0 48 6 66 17c29 18 52 78 75 122c22 42 51 64 91 64c39 0 61 -23 61 -48 c0 -26 -20 -44 -46 -44c-22 0 -40 15 -54 15c-45 0 -41 -89 -114 -137v-2c47 -21 82 -44 123 -124c20 -39 46 -71 58 -82s30 -17 53 -19v-15'], + 0x43B: [450,10,499,8,476,'476 450v-15c-51 -4 -62 -10 -62 -69v-287c0 -54 12 -59 61 -64v-15h-207v15c50 4 62 15 62 59v305c0 38 -6 43 -40 43h-70c-25 0 -37 -10 -37 -45v-198c0 -69 -3 -189 -105 -189c-40 0 -70 10 -70 50c0 27 23 38 38 38c38 0 35 -54 55 -54c46 0 49 104 49 175v167 c0 54 -12 64 -61 69v15h387'], + 0x43C: [450,0,617,23,594,'594 450v-15c-51 -4 -62 -10 -62 -69v-287c0 -54 12 -59 61 -64v-15h-213v15c55 4 68 15 68 59v274h-1l-152 -348h-9l-167 344h-1v-272c0 -40 13 -56 66 -57v-15h-161v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h134l157 -326l143 326h136'], + 0x43D: [450,0,525,23,502,'502 450v-15c-51 -4 -62 -10 -62 -69v-287c0 -54 12 -59 61 -64v-15h-207v15c50 4 62 15 62 59v141h-187v-143c0 -40 11 -53 62 -57v-15h-208v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h207v-15c-54 -5 -62 -16 -62 -58v-129h187v130c0 42 -11 53 -62 57v15h208'], + 0x43E: [460,10,512,35,476,'476 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232c122 0 216 -91 216 -229zM386 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0x43F: [450,0,525,23,502,'502 450v-15c-49 -2 -62 -5 -62 -67v-293c0 -54 12 -55 61 -60v-15h-204v15c50 4 59 15 59 59v298c0 39 -20 50 -45 50h-100c-26 0 -42 -11 -42 -50v-300c0 -39 11 -53 62 -57v-15h-208v15c51 4 62 9 62 63v292c0 62 -12 62 -61 65v15h478'], + 0x440: [460,217,499,-2,463,'152 458v-77c44 55 88 79 144 79c97 0 167 -89 167 -213c0 -145 -85 -257 -204 -257c-42 0 -71 10 -107 43v-159c0 -63 13 -75 88 -76v-15h-242v15c59 6 70 17 70 69v470c0 47 -7 57 -41 57c-9 0 -16 0 -25 -1v16c55 17 91 30 144 51zM152 334v-246c0 -30 57 -68 104 -68 c72 0 121 77 121 187c0 117 -49 193 -123 193c-46 0 -102 -36 -102 -66'], + 0x441: [460,10,456,41,428,'414 156l14 -9c-32 -62 -52 -91 -82 -115c-34 -28 -72 -42 -115 -42c-111 0 -190 93 -190 222c0 83 30 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22c-10 37 -23 49 -59 49c-81 0 -136 -71 -136 -175 c0 -115 63 -195 155 -195c57 0 93 24 141 94'], + 0x442: [450,0,434,8,426,'426 309h-17c-13 76 -38 113 -118 113c-26 0 -32 -8 -32 -32v-318c0 -40 11 -53 62 -57v-15h-208v15c51 4 62 6 62 64v311c0 28 -8 32 -34 32c-78 0 -103 -37 -116 -113h-17l5 141h408'], + 0x443: [450,218,491,8,483,'483 450v-15c-24 -3 -35 -13 -50 -51l-164 -409c-56 -140 -99 -193 -175 -193c-43 0 -70 25 -70 58c0 25 19 46 43 46c18 0 36 -3 54 -13c11 -6 23 -7 29 -7c42 0 93 122 93 146c0 15 -27 66 -46 106l-136 283c-10 22 -27 31 -53 35v14h205v-15c-43 -2 -57 -9 -57 -27 c0 -11 7 -27 13 -41l120 -256l105 274c3 7 4 22 4 26c0 16 -17 24 -48 24v15h133'], + 0x444: [662,217,678,43,635,'379 660v-253c15 29 48 53 91 53c103 0 165 -91 165 -233c0 -86 -21 -156 -60 -197c-26 -27 -59 -40 -103 -40c-42 0 -78 24 -93 53v-169c0 -63 13 -75 88 -76v-15h-238v15c59 6 70 17 70 69v176c-15 -29 -51 -53 -93 -53c-44 0 -77 13 -103 40c-39 41 -60 111 -60 197 c0 142 62 233 165 233c43 0 76 -24 91 -53v132c0 47 -7 57 -41 57c-9 0 -16 0 -25 -1v16c55 17 88 30 140 51zM379 357v-262c0 -29 37 -75 88 -75c24 0 45 23 59 56c17 41 23 99 23 157c0 99 -28 197 -82 197c-50 0 -88 -45 -88 -73zM299 95v260c0 28 -37 75 -88 75 c-54 0 -82 -98 -82 -197c0 -58 6 -116 23 -157c14 -33 35 -56 59 -56c51 0 88 46 88 75'], + 0x445: [450,0,489,14,476,'476 0h-201v15c33 2 40 6 40 24c0 7 -2 12 -6 18l-92 143l-79 -122c-14 -22 -19 -38 -19 -45c0 -13 11 -18 40 -18v-15h-145v15c33 3 47 9 75 50l112 165l-94 145c-31 47 -47 60 -77 60h-9v15h207v-15c-30 -1 -43 -7 -43 -22c0 -13 17 -47 46 -89l18 -26l28 39 c25 35 35 60 35 76c0 14 -10 20 -40 22v15h158v-15c-32 -1 -62 -17 -81 -44l-83 -120l128 -196c28 -43 51 -60 82 -60v-15'], + 0x446: [450,137,525,23,502,'502 450v-15c-51 -4 -62 -9 -62 -63v-292c0 -62 12 -62 61 -65v-152h-15c-38 137 -70 137 -112 137h-351v15c49 2 62 5 62 67v293c0 54 -12 55 -61 60v15h208v-15c-50 -4 -63 -15 -63 -59v-298c0 -39 14 -50 40 -50h105c26 0 42 11 42 50v300c0 39 -14 53 -65 57v15h211'], + 0x447: [450,0,512,18,489,'489 450v-15c-51 -4 -62 -9 -62 -63v-295c0 -52 12 -57 61 -62v-15h-207v15c50 4 62 16 62 62v138c-27 -11 -67 -32 -130 -32c-77 0 -134 12 -134 105v84c0 57 -12 58 -61 63v15h208v-15c-49 -4 -63 -9 -63 -63v-78c0 -60 17 -81 83 -81c48 0 81 18 97 24v142 c0 38 -14 52 -65 56v15h211'], + 0x448: [450,0,768,23,745,'745 450v-15c-51 -4 -62 -10 -62 -69v-287c0 -58 12 -61 61 -64v-15h-721v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h205v-15c-49 -5 -60 -16 -60 -58v-299c0 -39 16 -50 45 -50h86c31 0 42 11 42 49v300c0 42 -20 55 -60 58v15h204v-15c-40 -3 -60 -16 -60 -58 v-299c0 -39 16 -50 45 -50h86c31 0 42 11 42 50v300c0 42 -11 53 -60 57v15h206'], + 0x449: [450,137,768,23,745,'745 450v-15c-51 -4 -62 -10 -62 -69v-287c0 -61 12 -61 61 -64v-152h-15c-34 124 -66 137 -100 137h-606v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h205v-15c-51 -5 -60 -16 -60 -58v-299c0 -39 16 -50 45 -50h86c31 0 42 11 42 49v300c0 42 -20 54 -59 58h-1v15 h204v-15c-41 -4 -60 -16 -60 -58v-299c0 -39 16 -50 45 -50h86c31 0 42 11 42 50v300c0 42 -11 53 -60 57v15h206'], + 0x44A: [450,0,539,8,507,'251 252h66c105 0 190 -36 190 -128c0 -79 -71 -124 -170 -124h-232v15c51 4 62 6 62 64v312c0 27 -21 31 -44 31c-56 0 -81 -23 -98 -101h-17l8 129h297v-15c-54 -5 -62 -16 -62 -58v-125zM251 224v-165c0 -24 3 -31 34 -31c77 0 131 18 131 99s-55 97 -120 97h-45'], + 0x44B: [450,0,670,23,646,'646 0h-208v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h207v-15c-54 -5 -62 -16 -62 -58v-305c0 -40 11 -52 62 -56v-16zM169 252h66c105 0 190 -36 190 -128c0 -79 -71 -124 -170 -124h-232v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h207v-15 c-54 -5 -62 -16 -62 -58v-125zM169 224v-165c0 -24 3 -31 34 -31c77 0 131 18 131 99s-55 97 -120 97h-45'], + 0x44C: [450,0,457,23,425,'169 252h66c105 0 190 -36 190 -128c0 -79 -71 -124 -170 -124h-232v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h207v-15c-54 -5 -62 -16 -62 -58v-125zM169 224v-165c0 -24 3 -31 34 -31c77 0 131 18 131 99s-55 97 -120 97h-45'], + 0x44D: [460,10,444,14,410,'59 457h15c3 -15 9 -23 22 -23c15 0 25 7 37 12c17 7 37 14 70 14c142 0 207 -114 207 -240c0 -132 -80 -230 -208 -230c-108 0 -155 94 -188 157l15 9c46 -72 87 -94 147 -94c95 0 147 73 153 162h-178v33h179c-1 103 -49 175 -133 175c-92 0 -116 -64 -133 -118h-17'], + 0x44E: [460,10,738,23,703,'169 248h93c8 128 96 212 225 212c122 0 216 -91 216 -229c0 -139 -90 -241 -225 -241c-117 0 -211 93 -216 225h-93v-143c0 -40 11 -53 62 -57v-15h-208v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h207v-15c-54 -5 -62 -16 -62 -58v-129zM613 204 c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0x44F: [450,0,471,4,448,'448 450v-15c-50 -4 -62 -10 -62 -69v-287c0 -54 12 -57 61 -62v-17h-202v15c48 2 57 9 57 61v130h-19l-155 -206h-124v15c30 3 55 29 70 47l119 147c-79 10 -141 54 -141 126c0 101 86 115 190 115h206zM302 234v157c0 25 -6 31 -30 31c-65 0 -129 -14 -129 -93 c0 -61 44 -95 119 -95h40'], + 0x451: [622,10,466,38,437,'385 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM186 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM421 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227 c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -62 34 -116h-308c0 -105 41 -213 153 -213c67 0 109 28 158 102zM112 303h204c-11 81 -32 124 -98 124c-56 0 -95 -49 -106 -124'], + 0x452: [683,218,512,6,439,'439 306v-306c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -29 42 -29c14 0 28 9 34 19c11 20 14 45 14 121v349c0 71 -25 102 -74 102c-41 0 -70 -16 -112 -63v-241c0 -69 10 -81 68 -87v-15h-216v15 c58 8 64 17 64 87v429h-79v33h79v13c0 43 -8 47 -51 47c-4 0 -9 0 -12 -1v16l27 8c57 17 80 24 115 36l5 -3v-116h213v-33h-213v-155c46 61 88 84 151 84c76 0 119 -55 119 -154'], + 0x453: [679,0,394,17,387,'108 508l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM387 309h-17c-13 76 -50 111 -175 111c-26 0 -32 -8 -32 -32v-316c0 -40 11 -53 62 -57v-15h-208v15c51 4 62 6 62 64v309c0 42 -10 45 -62 47v15h365'], + 0x454: [460,10,444,34,430,'415 156l15 -9c-33 -63 -80 -157 -188 -157c-128 0 -208 98 -208 230c0 126 65 240 207 240c33 0 53 -7 70 -14c12 -5 22 -12 37 -12c13 0 19 8 22 23h15l12 -143h-16c-17 54 -42 118 -134 118c-84 0 -132 -72 -133 -175h179v-33h-178c6 -89 58 -162 153 -162 c60 0 101 22 147 94'], + 0x455: [459,10,389,49,346,'154 301l104 -63c64 -39 88 -66 88 -123c0 -67 -64 -125 -140 -125c-21 0 -50 1 -73 9c-24 8 -35 9 -46 9c-12 0 -18 -2 -24 -12h-13v157h16c21 -97 58 -141 127 -141c51 0 83 33 83 74c0 31 -20 57 -53 75l-54 30c-83 46 -120 94 -120 145c0 79 56 123 138 123 c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68'], + 0x456: [683,0,278,29,266,'193 632c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51zM266 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l155 55l4 -4v-351c0 -74 8 -85 74 -90v-15'], + 0x457: [622,0,278,1,299,'299 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM100 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM264 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l154 55l5 -4 v-351c0 -74 8 -85 74 -90v-15'], + 0x458: [683,218,278,-77,187,'187 632c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51s51 -23 51 -51zM186 457v-457c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v379 c0 43 -9 60 -32 60c-10 0 -24 0 -40 -3l-5 -1v16c59 18 97 31 156 54'], + 0x459: [450,10,702,8,670,'414 252h66c105 0 190 -36 190 -128c0 -79 -71 -124 -170 -124h-232v15c51 4 62 6 62 64v300c0 38 -6 43 -40 43h-70c-25 0 -37 -10 -37 -45v-198c0 -69 -3 -189 -105 -189c-40 0 -70 10 -70 50c0 27 23 38 38 38c38 0 35 -54 55 -54c46 0 49 104 49 175v167 c0 54 -12 64 -61 69v15h387v-15c-51 -4 -62 -10 -62 -69v-114zM414 224v-165c0 -24 3 -31 34 -31c77 0 131 18 131 99s-55 97 -120 97h-45'], + 0x45A: [450,0,721,23,689,'433 245h66c105 0 190 -29 190 -121c0 -79 -71 -124 -170 -124h-232v15c51 4 62 6 62 64v136h-180v-143c0 -40 11 -53 62 -57v-15h-208v15c51 4 62 6 62 64v287c0 54 -12 64 -61 69v15h207v-15c-54 -5 -62 -16 -62 -58v-132h180v133c0 42 -11 53 -62 57v15h208v-15 c-48 -4 -62 -9 -62 -58v-132zM433 215v-156c0 -24 3 -31 34 -31c77 0 131 16 131 97s-55 90 -120 90h-45'], + 0x45B: [683,0,512,6,499,'499 0h-212v15c58 6 68 18 68 87v198c0 70 -25 106 -74 106c-40 0 -70 -17 -112 -63v-241c0 -69 10 -81 68 -87v-15h-216v15c58 8 64 17 64 87v429h-79v33h79v8c0 43 -8 52 -51 52c-4 0 -9 0 -12 -1v16l27 8c57 17 80 24 115 36l5 -3v-116h213v-33h-213v-155 c46 60 88 84 147 84c82 0 123 -54 123 -159v-199c0 -69 6 -77 60 -87v-15'], + 0x45C: [679,0,503,23,495,'165 508l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM495 0h-132l-109 164c-35 52 -39 56 -72 61v-158c0 -35 12 -49 52 -51l23 -1v-15h-234v15l28 2c39 3 47 16 47 50v310c0 49 -14 54 -61 59v14h207v-14c-50 -5 -62 -21 -62 -57 v-126c25 0 48 6 66 17c29 18 52 78 75 122c22 42 51 64 91 64c39 0 61 -23 61 -48c0 -26 -20 -44 -46 -44c-22 0 -40 15 -54 15c-45 0 -41 -89 -114 -137v-2c47 -21 82 -44 123 -124c20 -39 46 -71 58 -82s30 -17 53 -19v-15'], + 0x45E: [704,218,491,8,483,'393 637c0 -62 -82 -91 -135 -91s-135 30 -135 91c0 44 34 67 62 67c14 0 24 -8 24 -25c0 -33 -44 -17 -44 -41c0 -22 21 -40 93 -40s93 18 93 40c0 24 -44 8 -44 41c0 17 13 25 27 25c30 0 59 -23 59 -67zM483 450v-15c-24 -3 -35 -13 -50 -51l-164 -409 c-56 -140 -99 -193 -175 -193c-43 0 -70 25 -70 58c0 25 19 46 43 46c18 0 36 -3 54 -13c11 -6 23 -7 29 -7c42 0 90 122 90 146c0 15 -26 66 -45 106l-134 283c-10 22 -27 31 -53 35v14h205v-15c-43 -2 -57 -9 -57 -27c0 -11 7 -27 13 -41l117 -256l108 274c3 7 4 22 4 26 c0 16 -17 24 -48 24v15h133'], + 0x45F: [450,137,518,23,495,'495 450v-15c-51 -4 -62 -9 -62 -63v-292c0 -62 12 -62 61 -65v-15h-117c-42 0 -82 0 -110 -137h-17c-28 137 -68 137 -110 137h-117v15c49 2 62 5 62 67v293c0 54 -12 55 -61 60v15h208v-15c-50 -4 -63 -15 -63 -59v-298c0 -39 14 -50 40 -50h98c26 0 42 11 42 50v300 c0 39 -14 53 -65 57v15h211'], + 0x462: [662,0,746,26,713,'335 366h109c154 0 269 -49 269 -184c0 -115 -94 -182 -239 -182h-337v19c79 2 96 18 96 94v392c0 23 -13 31 -34 31h-15c-93 0 -107 -14 -127 -65c-4 -11 -5 -23 -7 -37h-24l7 140h200c0 58 -24 64 -96 69v19h294v-19c-65 -6 -96 -10 -96 -69h200l5 -138h-24 c-1 8 -4 27 -10 40c-23 49 -56 60 -127 60h-9c-23 0 -35 -8 -35 -30v-140zM335 326v-243c0 -34 16 -45 62 -45c112 0 201 22 201 141s-90 147 -185 147h-78'], + 0x463: [683,0,539,8,507,'251 252h66c105 0 190 -36 190 -128c0 -79 -71 -124 -170 -124h-232v15c51 4 62 8 62 64v317c-2 18 -11 26 -34 26c-78 0 -95 -35 -108 -101h-17l8 129h151v114c0 47 -7 53 -41 53c-9 0 -16 0 -25 -1v16c55 17 91 30 144 51l6 -2v-231h151l8 -129h-17 c-13 66 -30 101 -110 101c-26 0 -32 -8 -32 -32v-138zM251 224v-165c0 -24 3 -31 34 -31c77 0 131 18 131 99s-55 97 -120 97h-45'], + 0x46A: [662,0,998,6,992,'992 0h-290v19c45 3 54 20 54 49c0 26 -11 55 -32 89c-55 87 -117 143 -174 147v-193c0 -78 19 -88 93 -92v-19h-286v19c79 6 91 15 91 104v181c-57 -4 -119 -60 -174 -147c-21 -34 -32 -63 -32 -89c0 -29 9 -46 54 -49v-19h-290v19c121 9 137 148 219 230 c42 43 93 79 186 99l-213 314h584l-203 -314c75 -3 152 -56 194 -99c82 -82 98 -221 219 -230v-19zM701 617h-353l179 -269'], + 0x46B: [450,0,722,14,708,'708 0h-204v15c32 2 38 14 38 33c0 18 -8 36 -23 59c-36 56 -78 96 -116 102v-143c0 -46 13 -48 56 -51v-15h-196v15c43 3 56 5 56 51v143c-38 -6 -80 -47 -116 -102c-15 -23 -23 -41 -23 -59c0 -19 6 -31 38 -33v-15h-204v15c86 6 97 108 154 164c29 29 78 57 134 57v2 l-159 212h412l-137 -211v-3c60 0 106 -28 136 -57c57 -56 69 -158 154 -164v-15zM501 422h-233l123 -174'], + 0x472: [676,14,729,36,690,'690 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM575 358c-4 104 -37 190 -90 235c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-41 -47 -67 -140 -69 -219c60 54 100 69 145 69 c66 0 132 -105 204 -105c23 0 48 11 76 40zM576 317c-33 -38 -81 -68 -138 -68c-75 0 -143 105 -212 105c-23 0 -47 -11 -76 -41c3 -110 32 -193 90 -246c34 -31 78 -45 124 -45c50 0 94 15 129 48c52 51 83 144 83 247'], + 0x473: [460,10,512,35,476,'476 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232c122 0 216 -91 216 -229zM384 240c-5 55 -23 107 -48 142c-25 29 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -10 0 -20 1 -30c33 32 63 44 90 44c53 0 83 -65 128 -65c11 0 25 5 40 18z M386 204v10c-22 -23 -56 -44 -92 -44c-57 0 -83 65 -126 65c-12 0 -25 -6 -40 -19c6 -56 22 -107 50 -148c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0x474: [676,11,766,16,760,'399 161l133 373c29 82 62 142 152 142c50 0 76 -28 76 -63c0 -24 -13 -58 -48 -58c-57 0 -49 57 -75 57c-24 0 -39 -30 -52 -67l-202 -556h-15l-244 544c-43 97 -58 109 -108 110v19h265v-19l-28 -2c-32 -2 -45 -11 -45 -31c0 -16 9 -40 39 -107'], + 0x475: [456,14,539,19,532,'280 114l79 219c19 53 51 123 116 123c39 0 57 -23 57 -48c0 -26 -20 -44 -46 -44c-22 0 -33 15 -47 15c-23 0 -36 -31 -50 -68l-105 -277c-14 -37 -22 -48 -28 -48c-8 0 -22 31 -29 47l-117 287c-40 98 -53 113 -91 115v15h196v-15c-34 -3 -46 -10 -46 -27 c0 -10 3 -23 9 -38l99 -256h3'], + 0x490: [803,0,571,19,544,'544 803l-5 -179h-296c-28 0 -35 -4 -35 -36v-476c0 -75 13 -89 91 -93v-19h-280v19c75 5 87 17 87 95v436c0 74 -12 89 -87 93v19h365c46 0 103 12 126 91c4 14 9 42 10 50h24'], + 0x491: [558,0,394,17,387,'387 558l-5 -138h-192c-22 0 -27 -10 -27 -32v-316c0 -40 11 -53 62 -57v-15h-208v15c51 4 62 6 62 64v309c0 42 -10 45 -62 47v15h196c127 0 144 36 157 108h17'], + 0x2105: [676,14,837,48,795,'795 170c0 -106 -70 -184 -173 -184c-92 0 -166 76 -166 183c0 106 70 177 173 177c94 0 166 -69 166 -176zM725 150c0 52 -14 104 -37 136c-20 23 -41 38 -74 38c-52 0 -88 -44 -88 -121c0 -61 12 -115 40 -157c17 -25 42 -38 69 -38c57 0 90 53 90 142zM646 676 l-450 -690h-49l453 690h46zM334 443l10 -7c-24 -48 -39 -70 -62 -88c-26 -22 -55 -32 -88 -32c-86 0 -146 71 -146 170c0 63 22 116 64 150c31 25 68 40 103 40c65 0 119 -36 119 -79c0 -18 -16 -32 -36 -32c-17 0 -30 13 -36 35l-5 17c-8 28 -18 36 -45 36 c-62 0 -105 -53 -105 -132c0 -89 48 -150 119 -150c44 0 71 18 108 72'], + 0x2107: [676,14,598,28,561,'389 366v-40c-92 0 -148 -7 -191 -35c-35 -23 -55 -59 -55 -109c0 -98 69 -152 184 -152c61 0 101 27 121 57c32 49 36 82 76 82c23 0 37 -12 37 -40c0 -52 -64 -98 -129 -120c-53 -18 -99 -23 -131 -23c-67 0 -124 12 -173 40c-61 35 -100 92 -100 166 c0 110 100 150 191 156v1c-41 5 -85 24 -115 54c-25 25 -42 58 -42 98c0 96 75 175 242 175c36 0 68 -5 105 -15c20 -6 55 -18 71 -18c18 0 33 12 38 33h20l10 -227h-23c-15 117 -90 189 -198 189c-112 0 -163 -64 -163 -148c0 -40 19 -77 58 -98c36 -20 78 -26 167 -26'], + 0x2116: [676,14,1012,7,966,'966 307c0 -88 -53 -160 -139 -160c-89 0 -139 74 -139 158c0 86 51 161 139 161c85 0 139 -75 139 -159zM888 304c0 96 -21 140 -63 140c-39 0 -59 -45 -59 -139s19 -136 60 -136c40 0 62 43 62 135zM962 0h-270v87h270v-87zM556 213v188c0 100 0 275 149 275 c58 0 102 -14 102 -73c0 -39 -33 -55 -56 -55c-55 0 -50 79 -80 79c-67 0 -71 -152 -71 -255v-383h-18l-324 503v-231c0 -100 0 -275 -149 -275c-58 0 -102 14 -102 73c0 39 33 55 56 55c55 0 50 -79 80 -79c67 0 71 152 71 255v269c-27 43 -48 67 -63 74s-35 9 -61 10v19 h180'], + 0x2117: [676,14,760,38,722,'246 520h143c54 0 95 -14 119 -34c19 -16 27 -39 27 -67s-10 -53 -31 -72c-31 -29 -60 -34 -117 -34c-15 0 -16 1 -31 2v-97c0 -42 7 -49 51 -51v-15h-161v15c43 3 46 9 46 56v232c0 40 -6 47 -46 50v15zM356 479v-142c13 -1 15 -2 26 -2c60 0 86 32 86 82 c0 61 -19 81 -93 81c-16 0 -19 -5 -19 -19zM722 329c0 -192 -150 -343 -341 -343c-193 0 -343 152 -343 346c0 193 153 344 347 344c186 0 337 -155 337 -347zM667 330c0 169 -129 304 -289 304c-154 0 -285 -140 -285 -303c0 -166 131 -303 288 -303c156 0 286 138 286 302 '], + 0x211E: [667,101,780,69,763,'763 0h-173l-26 33l-138 -134l-27 28l140 136l-195 242c-11 -1 -22 -2 -33 -2c-12 0 -23 1 -35 2v-133v-43c0 -92 35 -102 118 -105v-24h-325v24c83 3 118 13 118 105v54v355c0 92 -35 102 -118 105v24h286c112 0 275 -38 275 -178c0 -98 -98 -154 -183 -172 c52 -64 99 -132 154 -194l135 132l27 -28l-136 -132c41 -42 74 -71 136 -73v-22zM276 567v-232c17 -1 33 -2 50 -2c107 0 202 17 202 147c0 117 -51 155 -164 155c-49 0 -88 -10 -88 -68'], + 0x2122: [662,-256,980,30,957,'957 662v-20c-43 -3 -56 -16 -56 -55v-254c0 -48 0 -49 50 -55v-20h-170v20c31 4 35 5 42 9c5 4 7 13 7 45v236l-154 -312h-11l-151 310v-223c0 -48 10 -60 53 -65v-20h-131v20c42 5 52 17 52 65v249c-13 30 -39 49 -69 50v20h121l154 -309l160 309h103zM375 574h-20 c-14 49 -32 68 -67 68h-50v-308c0 -48 0 -50 50 -56v-20h-171v20c50 6 50 8 50 56v308h-49c-36 0 -55 -19 -68 -68h-20v88h345v-88'], + 0x2125: [662,218,424,35,391,'219 265v-2c119 -22 172 -96 172 -196c0 -162 -102 -285 -260 -285c-54 0 -96 23 -96 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 37 -26 52 -26c56 0 123 98 123 227c0 116 -33 188 -140 188h-55v15l160 170v2h-197v15l199 195v2h-118c-63 0 -78 -15 -87 -88h-19 l4 118h331v-15l-195 -195v-2h195v-15'], + 0x2126: [676,0,744,29,715,'715 0h-286l7 150c85 21 141 132 141 239c0 142 -74 251 -205 251c-136 0 -205 -131 -205 -251c0 -98 52 -214 140 -239l9 -150h-287v160h19c1 -61 24 -76 68 -76h149l-2 37c-139 39 -210 121 -210 266c0 142 117 289 319 289c198 0 319 -140 319 -289 c0 -146 -78 -228 -213 -266l-2 -37h171c39 0 47 24 49 74h19v-158'], + 0x2129: [463,0,360,32,276,'276 0h-124v343c0 29 -5 73 -43 73c-35 0 -42 -41 -47 -68h-30c8 63 46 115 114 115c81 0 130 -38 130 -122v-341'], + 0x212B: [871,0,722,15,707,'141 186l205 487c-49 5 -86 47 -86 99c0 55 45 99 101 99c53 0 98 -46 98 -100c0 -52 -40 -94 -91 -99l245 -561c28 -65 42 -86 94 -92v-19h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41 v-19h-199v19c58 6 67 27 126 167zM425 772c0 36 -30 65 -67 65c-34 0 -64 -30 -64 -65c0 -37 29 -66 64 -66c38 0 67 29 67 66zM447 257l-116 275l-115 -275h231'], + 0x212E: [676,17,843,35,808,'808 330h-630v-176c0 -24 0 -25 16 -44c48 -57 130 -95 230 -95c101 0 183 35 247 113h71c-87 -97 -173 -145 -318 -145c-220 0 -389 153 -389 347c0 187 161 346 389 346c187 0 374 -118 384 -346zM666 387v121c0 25 -7 31 -20 48c-41 52 -135 87 -222 87 c-89 0 -182 -43 -230 -95c-14 -14 -16 -18 -16 -46v-118c0 -17 4 -20 19 -20h446c17 0 23 4 23 23'], + 0x2142: [662,0,559,13,485,'485 0h-87v588h-385l18 74h454v-662'], + 0x2143: [662,0,559,13,485,'485 0h-454l-18 74h385v588h87v-662'], + 0x2144: [662,0,630,21,609,'609 0h-95l-199 300l-199 -300h-95l250 374v288h88v-288'], + 0x214A: [692,0,664,45,602,'291 552h101c125 0 210 -61 210 -177c0 -124 -84 -177 -208 -177h-103v-132h267v-66h-333v486h-114v-180h-66v246h180v140h66v-140zM291 264h100c80 0 145 28 145 111s-64 111 -144 111h-101v-222'], + 0x214B: [676,13,778,28,736,'43 552l-15 11c29 73 84 113 151 113c58 0 107 -26 170 -91c75 66 135 91 216 91c107 0 171 -50 171 -150c0 -81 -55 -159 -157 -218l-38 -22c28 -68 35 -104 35 -149c0 -90 -67 -150 -152 -150c-79 0 -137 45 -137 124c0 72 38 118 155 168c-41 88 -76 143 -132 206 c-65 -86 -92 -134 -92 -180c0 -30 15 -42 65 -47v-21h-216v21c50 0 69 19 94 59c46 73 71 122 126 196c-47 61 -91 92 -152 92c-39 0 -60 -13 -92 -53zM644 489c0 85 -53 134 -124 134c-43 0 -86 -17 -146 -64c58 -68 98 -126 152 -239c87 56 118 100 118 169zM497 102 c0 51 -7 84 -40 145c-86 -39 -117 -81 -117 -140c0 -49 32 -88 78 -88c47 0 79 33 79 83'], + 0x306E: [661,41,901,37,840,'840 308c0 -157 -99 -349 -306 -349c-10 0 -21 0 -31 1c168 31 252 167 252 308c0 173 -123 354 -307 354c-186 0 -327 -155 -327 -301c0 -85 47 -166 160 -214c68 72 121 194 125 364c0 9 -20 10 -20 20c27 9 67 24 100 39c6 -3 9 -9 9 -16c0 -6 -3 -13 -7 -19 c-47 -199 -80 -339 -200 -499c-8 -3 -16 -5 -22 -5c-26 0 -55 9 -74 22c3 3 43 29 54 53c-9 -4 -32 -18 -38 -19c-43 19 -171 107 -171 246c0 240 239 368 438 368c93 0 195 -24 267 -108c58 -67 98 -147 98 -245'], + 0xE053: [450,0,632,26,604,'604 0h-255v15l24 1c48 2 64 16 64 51v140l-30 21l-159 -175c-10 -11 -13 -18 -13 -23c0 -9 11 -15 25 -15h20v-15h-254v15c52 3 95 14 145 68l172 188l-33 24c-155 113 -191 140 -254 140v15h236v-14c-44 0 -60 -8 -60 -27c0 -14 10 -31 32 -46l173 -119v130 c0 47 -13 54 -72 61v15h239v-16c-79 -5 -83 -12 -83 -63v-289c0 -52 0 -55 83 -67v-15'], + 0xE054: [516,10,688,37,679,'649 378l30 -11c-16 -47 -51 -71 -85 -71c-42 0 -82 32 -82 90v81l-78 -47v-306c0 -46 12 -67 30 -67c16 0 26 5 43 19v-28c-30 -38 -56 -48 -90 -48c-36 0 -58 19 -64 69l-3 -2c-34 -47 -72 -67 -128 -67c-111 0 -185 87 -185 215c0 142 93 255 208 255 c40 0 69 -11 107 -43l187 99l6 -4v-124c0 -41 23 -59 48 -59c24 0 49 17 56 49zM354 102v230c0 53 -51 100 -105 100c-76 0 -125 -74 -125 -187c0 -123 54 -203 138 -203c31 0 56 11 74 32c9 10 18 21 18 28'], + 0xE055: [475,14,571,20,563,'533 288l30 -11c-16 -47 -51 -71 -85 -71c-42 0 -82 32 -82 90v59l-46 -14c-8 -6 -18 -10 -31 -10c-26 0 -42 27 -48 49c-13 45 -20 62 -46 62c-52 0 -90 -39 -90 -90c0 -25 13 -50 35 -68c19 -16 37 -20 75 -21v-30h-11c-71 0 -120 -43 -120 -104 c0 -62 44 -107 107 -107c50 0 106 22 156 62l12 -12c-46 -56 -107 -86 -179 -86c-46 0 -97 13 -131 34c-35 21 -59 63 -59 103c0 41 24 82 61 102c22 12 42 18 82 24v2c-77 16 -116 52 -116 107c0 70 66 117 164 117c38 0 88 -13 113 -30c28 -19 41 -48 43 -66l56 17l6 -4 v-94c0 -41 23 -59 48 -59c24 0 49 17 56 49'], + 0xE056: [459,11,632,10,624,'594 292l30 -11c-13 -37 -43 -71 -85 -71c-51 0 -82 42 -82 90v81l-77 -47c12 -31 17 -64 17 -97c0 -75 -25 -148 -84 -197c-38 -31 -86 -51 -135 -51c-58 0 -154 32 -154 103c0 25 23 42 47 42c27 0 41 -23 48 -46c12 -42 13 -70 65 -70c96 0 136 90 136 174 c0 94 -48 195 -155 195c-69 0 -105 -41 -141 -94l-14 9c43 82 93 157 197 157c69 0 127 -37 160 -97l117 68l6 -4v-124c0 -30 14 -59 48 -59c29 0 50 22 56 49'], + 0xE057: [459,12,624,29,595,'263 3v-15c-131 0 -234 77 -234 252c0 71 15 125 48 163c33 37 69 56 109 56c56 0 98 -32 126 -96c24 64 66 96 124 96c42 0 79 -19 111 -56s48 -91 48 -165c0 -175 -101 -250 -234 -250v15c93 0 144 84 144 238c0 92 -8 190 -84 190c-42 0 -75 -42 -97 -116 c20 -51 31 -99 31 -145c0 -68 -20 -101 -43 -101s-43 36 -43 109c0 48 9 94 30 137c-23 76 -49 116 -99 116c-70 0 -81 -108 -81 -200c0 -146 61 -228 144 -228'], + 0xE05D: [459,10,452,16,436,'436 230h-127c55 -35 76 -62 76 -115c0 -67 -64 -125 -140 -125c-21 0 -50 1 -73 9c-24 8 -35 9 -46 9c-12 0 -18 -2 -24 -12h-13v157h16c21 -97 58 -141 127 -141c51 0 83 33 83 74c0 31 -20 57 -53 75l-54 30c-23 13 -43 26 -59 39h-133v31h101c-20 24 -29 49 -29 75 c0 79 56 123 138 123c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68l66 -40h177v-31'], + 0xE068: [683,287,524,9,487,'487 15v-163c0 -77 -47 -139 -108 -139c-70 0 -128 23 -128 55c0 15 12 27 28 27c21 0 29 -16 43 -32s32 -31 54 -31c44 0 56 47 56 91v177h-157v15c58 6 68 18 68 87v198c0 70 -25 106 -74 106c-40 0 -70 -17 -112 -63v-241c0 -69 10 -81 68 -87v-15h-216v15 c58 8 64 17 64 87v471c0 43 -8 51 -51 51c-4 0 -9 0 -12 -1v16l27 8c57 17 80 24 115 36l5 -3v-304c46 60 88 84 147 84c82 0 123 -54 123 -159v-199c0 -69 6 -77 60 -87'], + 0xE0A2: [460,218,561,24,539,'539 17l-116 -55c-18 -134 -107 -180 -218 -180c-104 0 -143 37 -143 69c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -42 72 -42c42 0 99 29 119 108l-116 -54l-17 36l132 61v97c-44 -48 -99 -74 -157 -74c-94 0 -160 89 -160 215c0 144 96 255 220 255 c40 0 70 -8 116 -35l54 32h11v-451l97 48zM341 127v206c0 66 -31 98 -93 98c-85 0 -138 -72 -138 -190c0 -69 22 -134 56 -163c20 -18 46 -27 75 -27c32 0 66 12 88 32c8 7 12 21 12 44'], + 0xE0B3: [683,218,541,32,457,'452 461l5 -4c-1 -33 -2 -66 -2 -99v-358c0 -114 -39 -218 -170 -218c-33 0 -93 12 -93 55c0 23 19 39 41 39c42 0 51 -60 90 -60c14 0 26 7 34 18c16 24 14 94 14 121v405c0 12 0 28 -6 38c-12 17 -51 19 -78 19h-19h-84v-327c0 -55 12 -71 68 -75v-15h-220v15 c61 2 68 24 68 81v321h-67v33h68c9 75 12 133 72 186c40 35 95 47 147 47c43 0 125 -9 125 -68c0 -24 -9 -41 -35 -41c-42 0 -60 84 -121 84c-28 0 -56 -12 -75 -32c-27 -28 -30 -67 -30 -105v-26v-45h154c39 0 76 5 114 11'], + 0xE0BD: [662,218,710,15,660,'660 620h-152c46 -3 83 -28 83 -62c0 -28 -19 -46 -42 -46c-18 0 -37 13 -37 37c0 17 10 20 10 29c0 8 -12 14 -26 14c-56 0 -89 -50 -120 -205h107l-6 -32h-108l-67 -290c-29 -127 -71 -283 -210 -283c-49 0 -77 26 -77 62c0 28 19 46 42 46c18 0 37 -13 37 -37 c0 -17 -10 -20 -10 -29c0 -8 8 -14 22 -14c43 0 69 47 93 155l86 390h-91l7 32h92c22 71 35 104 68 151c28 41 73 78 130 82h-219v42h388v-42'], + 0xE0BE: [757,218,1102,15,1073,'1073 757l-25 -101l-8 1c1 10 1 20 1 27c0 28 -21 48 -57 48h-40l-81 -297c-4 -13 -7 -25 -7 -35c0 -26 6 -34 30 -35l20 -1v-9h-169v9c37 4 50 17 59 49l88 319c-97 0 -116 -13 -140 -72l-12 2l23 95h318zM660 620h-152c46 -3 83 -28 83 -62c0 -28 -19 -46 -42 -46 c-18 0 -37 13 -37 37c0 17 10 20 10 29c0 8 -12 14 -26 14c-56 0 -89 -50 -120 -205h107l-6 -32h-108l-67 -290c-29 -127 -71 -283 -210 -283c-49 0 -77 26 -77 62c0 28 19 46 42 46c18 0 37 -13 37 -37c0 -17 -10 -20 -10 -29c0 -8 8 -14 22 -14c43 0 69 47 93 155l86 390 h-91l7 32h92c22 71 35 104 68 151c28 41 73 78 130 82h-219v42h388v-42'], + 0xE0DD: [933,0,516,73,445,'445 420l-118 -42l-3 3v51c-27 -38 -58 -54 -103 -54c-88 0 -148 70 -148 172c0 114 75 204 167 204c32 0 53 -8 84 -34v125c0 33 -7 41 -37 41c-6 0 -11 0 -18 -1v13c52 13 80 21 118 35l4 -2v-453c0 -37 6 -46 35 -46c4 0 5 0 19 1v-13zM324 468v184 c0 42 -39 80 -82 80c-61 0 -100 -59 -100 -150c0 -98 43 -162 111 -162c24 0 44 9 59 26c7 8 12 16 12 22zM304 51c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE0DE: [933,0,500,57,439,'439 386h-169v12c46 5 54 15 54 70v158c0 56 -20 85 -59 85c-32 0 -56 -13 -90 -50v-193c0 -55 8 -65 55 -70v-12h-173v12c46 7 51 14 51 70v377c0 34 -6 41 -41 41c-3 0 -7 0 -9 -1v13c67 17 85 25 113 35l4 -3v-243c37 48 71 67 118 67c65 0 98 -43 98 -127v-159 c0 -55 5 -62 48 -70v-12zM302 51c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE0DF: [754,0,778,92,699,'699 386h-174v12c44 5 52 14 52 60v165c0 63 -16 89 -62 89c-38 0 -62 -14 -86 -48v-202c0 -52 12 -63 58 -64v-12h-179v12c45 3 54 8 54 57v169c0 55 -17 88 -52 88c-29 0 -69 -15 -85 -34c-5 -6 -10 -12 -10 -14v-222c0 -34 12 -42 54 -44v-12h-177v12 c45 1 56 12 56 58v199c0 39 -7 53 -28 53c-9 0 -15 -1 -26 -4v14c44 12 71 21 111 36l7 -2v-60h1c53 55 87 62 123 62c43 0 70 -22 85 -67c43 46 84 67 130 67c65 0 93 -50 93 -144v-162c0 -36 10 -46 34 -48l21 -2v-12zM447 51c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51 c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE0E0: [920,0,500,40,444,'40 920h193c80 0 130 -20 166 -50c27 -23 45 -62 45 -102c0 -110 -112 -158 -214 -158c-21 0 -34 1 -55 2v-140c0 -61 10 -71 75 -74v-12h-210v12c63 5 68 13 68 82v351c0 60 -8 69 -68 77v12zM175 862v-218c18 -1 33 -2 49 -2c88 0 144 50 144 122 c0 88 -56 127 -165 127c-23 0 -28 -8 -28 -29zM313 51c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE0E1: [757,0,389,81,318,'165 631l83 -51c51 -31 70 -53 70 -98c0 -54 -51 -100 -112 -100c-17 0 -40 1 -58 7c-19 6 -28 7 -37 7c-10 0 -14 -1 -19 -9h-11v125h13c17 -77 47 -113 102 -113c41 0 66 27 66 60c0 24 -16 45 -42 60l-43 24c-66 37 -96 75 -96 116c0 63 44 98 110 98 c19 0 37 -1 54 -9c8 -4 16 -6 22 -6c3 0 6 1 13 8h9l4 -109h-12c-19 72 -43 98 -91 98c-34 0 -60 -16 -60 -54c0 -18 13 -40 35 -54zM254 51c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE0E2: [754,0,500,60,429,'429 754v-12c-19 -2 -29 -11 -40 -41l-120 -327c-42 -113 -79 -154 -140 -154c-35 0 -56 20 -56 46c0 20 15 37 34 37c15 0 27 -2 42 -10c9 -5 16 -6 21 -6c11 0 27 16 40 35c16 23 32 74 32 87c0 12 -19 48 -34 80l-106 226c-8 18 -21 25 -42 28v11h164v-12 c-34 -1 -46 -7 -46 -21c0 -9 6 -22 11 -33l89 -200l78 221c2 5 3 11 3 14c0 13 -12 19 -37 19v12h107zM301 51c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE2FC: [756,218,722,15,707,'707 0h-255v19l45 4c14 1 24 15 24 29c0 15 -7 42 -19 70l-41 94h-3l-179 -434h-59l180 434h-201l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l114 -262l143 344h58l-171 -413l102 -232c29 -65 42 -86 94 -92v-19z M432 293l-101 239l-115 -275h201'], + 0xE2FE: [756,217,667,17,593,'422 349v-1c101 -18 171 -71 171 -170c0 -111 -94 -178 -239 -178h-126l-89 -217h-59l89 217h-152v19c79 2 96 18 96 94v437c0 79 -15 88 -96 93v19h280c55 0 101 -6 139 -18l47 112h58l-55 -134c48 -28 73 -72 73 -127c0 -90 -51 -128 -137 -146zM450 537l-64 -154 c48 19 71 54 71 107c0 17 -2 33 -7 47zM322 368l92 221c-34 25 -91 36 -175 36c-17 0 -24 -9 -24 -32v-227h63c15 0 30 0 44 2zM360 320l-116 -280c9 -2 20 -3 33 -3c112 0 201 23 201 142c0 91 -48 128 -118 141zM215 109l89 216c-8 1 -16 1 -24 1h-65v-217'], + 0xE300: [756,217,587,11,577,'577 494h-25c-8 77 -27 113 -83 125l-243 -588c13 -8 34 -11 66 -12v-19h-79l-90 -217h-59l90 217h-143v19c76 5 88 17 88 105v427c0 73 -10 86 -87 92v19h417l39 94h58l-39 -94h84zM413 624h-176c-28 0 -36 -8 -36 -40v-471'], + 0xE302: [756,218,722,48,675,'675 0h-405l-91 -218h-59l91 218h-163l299 674h20l65 -143l93 225h58l-121 -291zM524 92l-111 253l-105 -253h216zM383 413l-52 119l-195 -440h113'], + 0xE304: [756,217,611,12,597,'597 169l-46 -169h-317l-89 -217h-59l89 217h-163v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h438l39 94h58l-39 -94h33l5 -143h-25c-7 38 -14 62 -40 78l-95 -229c55 6 69 29 79 96h23v-234h-23c-11 78 -25 95 -96 97l-119 -288c14 -2 31 -2 52 -2 c179 0 222 26 267 132h28zM328 368l102 246c-41 8 -102 10 -194 10c-28 0 -35 -4 -35 -36v-220h127zM311 327h-110v-263'], + 0xE306: [756,217,612,10,598,'598 176l-25 -176h-383l-90 -217h-59l90 217h-121v15l259 360c9 12 35 46 41 57c12 24 16 39 26 64l53 128h-156c-43 0 -102 -2 -134 -35c-30 -30 -34 -58 -41 -98h-26l21 171h352l39 94h58l-39 -94h115v-15l-193 -273c-38 -53 -63 -81 -97 -137c-15 -23 -17 -40 -28 -66 l-55 -133h193c39 0 84 4 117 28c37 27 47 68 60 110h23'], + 0xE308: [756,217,722,18,703,'703 0h-279v19c78 5 88 21 88 105v191h-132l-121 -292c11 -2 23 -3 38 -4v-19h-47l-90 -217h-59l90 217h-173v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h280v-19c-73 -6 -89 -17 -89 -95v-189h131l116 280c-9 2 -20 3 -33 4v19h43l39 94h58l-39 -94h179v-19 c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19zM512 359v189c0 30 -2 50 -9 64l-105 -253h114zM322 315h-113v-202c0 -24 1 -42 6 -56'], + 0xE30A: [756,218,722,34,688,'565 756l-48 -117c106 -55 171 -169 171 -308c0 -206 -135 -345 -327 -345c-39 0 -75 6 -108 16l-91 -220h-59l100 241c-105 54 -169 166 -169 311c0 203 132 342 327 342c38 0 74 -6 106 -16l40 96h58zM375 298l-105 -254c28 -15 59 -22 92 -22c50 0 94 15 129 48 c55 53 83 147 83 267c0 107 -30 196 -81 246l-83 -200c43 0 59 24 66 58h25c-7 -28 -11 -51 -11 -80c0 -30 4 -94 11 -125h-25c-9 38 -22 62 -58 62h-43zM352 383l97 233c-27 16 -56 24 -89 24c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -111 25 -197 78 -254 l91 220c-42 0 -53 -21 -67 -62h-25c7 26 10 59 10 87c0 30 -4 86 -11 118h25c14 -41 24 -58 63 -58h40'], + 0xE30C: [756,218,333,-24,438,'438 756l-221 -534v-110c0 -75 16 -90 98 -93v-19h-190l-90 -218h-59l90 218h-48v19c26 1 45 2 59 7l38 91v434c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-188l163 393h58'], + 0xE30E: [756,217,731,33,723,'723 0h-303v19l27 1c29 1 42 10 42 24c0 26 -55 84 -130 163l-77 -185c10 -1 20 -2 33 -3v-19h-42l-90 -217h-59l90 217h-181v19c79 4 91 19 91 106v424c0 74 -11 89 -90 94v19h282v-19c-83 -6 -90 -18 -90 -95v-200l210 190l40 93c-5 7 -16 10 -60 12v19h73l39 94h58 l-39 -94h128v-19c-68 -5 -87 -15 -156 -81l-22 -21l-96 -232l166 -181c83 -91 110 -109 156 -109v-19zM400 449l-67 -65l28 -31zM318 249l-66 68l-26 -21v-185c0 -29 2 -49 9 -62'], + 0xE310: [756,218,702,15,687,'687 0h-255v19c38 2 69 -1 69 33c0 15 -6 37 -19 70l-63 161l-208 -501h-59l239 574l-69 177h-2l-167 -431c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 70 27 126 167l196 488h20l83 -199l117 281h58l-145 -351l123 -294c27 -65 42 -86 94 -92v-19'], + 0xE312: [756,217,889,12,864,'864 0h-280v19c79 5 90 21 90 104v449l-255 -572h-14l-31 67l-118 -284h-59l146 351l-190 415v-398c0 -110 16 -128 93 -132v-19h-234v19c83 6 97 20 97 132v398c0 76 -13 89 -95 94v19h198l184 -400l205 494h58l-232 -561l16 -35l221 502h199v-19 c-72 -1 -87 -18 -87 -93v-438c0 -71 15 -88 88 -93v-19'], + 0xE314: [756,218,722,12,707,'707 662v-19c-38 -4 -53 -7 -66 -18c-19 -17 -29 -39 -29 -118v-518h-18l-187 232l-182 -439h-59l203 487l-216 269v-388c0 -103 16 -120 93 -131v-19h-234v19c82 9 97 24 97 131v440c-33 41 -48 53 -97 53v19h170l230 -289l109 262c-13 4 -28 6 -51 8v19h62l39 94h58 l-39 -94h117zM568 179v340c0 32 -2 56 -7 73l-110 -267'], + 0xE316: [756,217,643,29,614,'614 0h-411l-90 -217h-59l90 217h-115v171h25c0 -60 35 -86 85 -86h40l87 210h-40c-46 0 -57 -32 -63 -77h-23v233h23c0 -56 22 -76 65 -76h71l86 205h-226c-52 0 -71 -20 -81 -89h-25v171h366l39 94h58l-39 -94h113v-169h-25c-10 64 -28 87 -81 87h-41l-85 -205h56 c47 0 65 21 66 76h23v-233h-23c0 51 -25 77 -69 77h-86l-87 -210h259c62 0 92 27 92 86h25v-171'], + 0xE318: [756,218,722,34,688,'580 756l-51 -124c99 -57 159 -168 159 -301c0 -206 -135 -345 -327 -345c-34 0 -65 4 -95 12l-89 -216h-59l97 235c-112 52 -181 166 -181 317c0 203 132 342 327 342c43 0 83 -7 119 -21l42 101h58zM504 572l-221 -535c24 -10 51 -15 79 -15c50 0 94 15 129 48 c55 53 83 147 83 267c0 99 -26 183 -70 235zM236 68l225 541c-30 20 -64 31 -101 31c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -118 28 -208 88 -264'], + 0xE31A: [756,217,722,18,703,'703 0h-279v19c78 5 88 21 88 105v464c0 7 0 14 -2 19l-242 -586c8 -1 18 -2 29 -2v-19h-38l-91 -217h-59l91 217h-182v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h457l39 94h58l-39 -94h170v-19c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19zM459 624 h-214c-26 0 -36 -6 -36 -33v-478c0 -31 2 -52 11 -66'], + 0xE31C: [756,218,557,16,565,'565 756l-67 -162c30 -27 44 -67 44 -114c0 -96 -79 -174 -169 -186l-112 -272c10 -2 21 -3 35 -3v-19h-44l-90 -218h-59l90 218h-177v19c78 6 84 17 84 103v429c0 74 -10 86 -84 92v19h259c74 0 134 -13 178 -36l54 130h58zM333 337l87 210c-24 56 -83 78 -183 78 c-29 0 -35 -9 -35 -36v-258c23 -2 41 -3 61 -3c26 0 50 3 70 9zM212 46l103 244c-14 -1 -30 -2 -44 -2c-26 0 -42 1 -69 3v-179c0 -31 2 -52 10 -66'], + 0xE31E: [756,217,624,30,600,'600 204l-28 -204h-364l-90 -217h-59l90 217h-119v15l241 279l17 40l-258 313v15h394l39 94h58l-39 -94h74v-161h-25c-10 64 -32 96 -70 111l-93 -225l17 -20l-48 -55l-90 -217h211c77 0 104 33 119 109h23zM329 434l79 189c-9 1 -18 1 -27 1h-208zM226 185l-78 -90h41'], + 0xE320: [756,218,611,17,593,'593 492h-25c-15 72 -31 105 -70 119l-142 -343v-157c0 -76 14 -88 96 -92v-19h-207l-90 -218h-59l90 218h-26v19c14 0 28 5 38 10l56 133v458h-60c-106 0 -132 -18 -152 -128h-25l7 170h437l39 94h58l-39 -94h67zM356 408l87 211c-9 1 -18 1 -28 1h-59v-212'], + 0xE322: [756,218,722,29,703,'703 658v-19c-10 3 -21 5 -32 5c-29 0 -57 -7 -83 -19l-171 -415v-99c0 -78 19 -88 103 -92v-19h-190l-91 -218h-59l91 218h-57v19c32 2 55 5 70 11l31 75v190c-30 242 -102 328 -205 329c-18 0 -54 -11 -73 -18l-8 16c34 30 88 52 134 52c127 0 205 -82 230 -239h2 c19 96 77 169 143 207l47 114h58l-37 -88c11 2 22 3 33 3c22 0 41 -1 64 -13zM421 360l80 193c-42 -51 -70 -119 -80 -193'], + 0xE324: [756,217,763,35,728,'598 756l-85 -204c113 -21 215 -88 215 -222c0 -158 -161 -227 -271 -227h-25v-17c0 -54 32 -63 103 -67v-19h-252l-90 -217h-58l94 226v10h4l36 86c-158 14 -234 104 -234 225c0 166 153 230 295 230v20c0 45 -15 63 -101 63v19h272l39 94h58zM458 559l34 81 c-50 -7 -60 -27 -60 -60v-20c9 0 17 -1 26 -1zM430 491l13 31c-5 0 -9 1 -13 1v-32zM430 352v-212c93 0 189 65 189 178c0 78 -40 164 -123 194zM332 256v267c-111 0 -188 -107 -188 -205c0 -81 50 -155 141 -174zM330 85v18h-4l-31 -75c23 10 35 27 35 57'], + 0xE326: [756,217,722,10,704,'704 0h-296v19l26 2c32 2 50 11 50 29c0 16 -17 47 -51 98l-81 119l-200 -484h-59l90 217h-173v19c52 5 68 17 145 114l156 195l-106 155c-96 141 -117 153 -183 160v19h301v-19l-29 -1c-28 -1 -46 -6 -46 -29c0 -29 30 -67 83 -145l29 -43l137 331h58l-39 -94h180v-19 c-64 -4 -89 -21 -152 -99l-143 -177l192 -274c39 -56 58 -68 111 -74v-19zM445 492l42 52c30 37 40 52 40 67c0 14 -5 22 -21 26zM266 198l-47 -58c-32 -40 -53 -74 -53 -89c0 -12 7 -20 28 -26'], + 0xE328: [756,217,743,22,724,'724 676v-19c-43 -9 -47 -33 -47 -67c0 -17 4 -57 4 -79c0 -163 -146 -206 -257 -206v-194c0 -78 19 -88 103 -92v-19h-243l-90 -217h-92l217 522c-110 0 -254 44 -254 206c0 27 4 58 4 79c0 34 -4 58 -47 67v19h8c75 0 149 -36 149 -197c0 -67 47 -137 143 -137v220 c0 49 -10 81 -101 81v19h247l39 94h92l-172 -414c94 1 140 71 140 137c0 161 71 197 149 197h8zM424 556l31 76c-26 -13 -31 -37 -31 -70v-6zM321 87l-22 -52c14 9 20 25 22 52'], + 0xE32A: [756,217,744,29,715,'715 0h-286l7 161c85 21 141 131 141 238c0 83 -26 152 -74 194l-194 -467l7 -126h-60l-90 -217h-58l90 217h-169v171h25c1 -61 18 -76 62 -76h122l16 40c-132 40 -201 120 -201 262c0 136 117 279 319 279c37 0 71 -5 102 -13l39 93h58l-46 -111 c105 -47 166 -143 166 -248c0 -146 -80 -227 -215 -265l-2 -37h154c41 0 60 24 62 74h25v-169zM272 177l185 446c-25 11 -53 17 -85 17c-136 0 -205 -121 -205 -241c0 -84 38 -181 105 -222'], + 0xE364: [756,240,673,55,665,'643 756l-41 -98c38 -9 63 -27 63 -61c0 -32 -18 -53 -53 -53c-22 0 -34 12 -47 25l-164 -396c22 -5 44 -11 64 -18c76 -27 101 -85 101 -132c0 -157 -129 -230 -252 -230c-23 0 -45 3 -67 9l-18 -42h-59l27 63c-21 12 -45 35 -56 53l18 16c10 -14 34 -29 51 -37l95 228 c-117 12 -250 34 -250 169c0 230 260 414 480 414h12l39 90h57zM347 184l173 418c-12 3 -33 6 -46 6c-149 0 -327 -129 -327 -293c0 -101 97 -116 200 -131zM359 72l-95 -231c13 -2 25 -3 37 -3c96 0 175 52 175 129c0 66 -55 92 -117 105'], + 0xE368: [756,218,557,8,645,'645 653l-32 -154l-21 2c3 22 3 27 3 33c0 58 -15 78 -112 84l-107 -257h93l-11 -36h-97l-127 -307c7 -1 16 -2 25 -2v-16h-32l-90 -218h-59l90 218h-160v16c58 4 68 26 83 78l123 442c7 25 10 45 10 61c0 28 -10 34 -76 40v16h291l43 103h58l-43 -103h148zM426 620h-30 c-46 0 -61 -6 -68 -32l-64 -227h54zM303 325h-49l-58 -210c-7 -25 -14 -45 -14 -60c0 -6 0 -11 3 -15'], + 0xE36C: [773,218,645,-72,675,'675 498l-267 -354c-17 -23 -38 -54 -38 -73c0 -26 15 -37 35 -37c29 0 69 17 91 35l8 -15c-58 -49 -99 -72 -146 -72c-58 0 -80 37 -80 71c0 44 12 68 100 162l162 172l-195 -55l-358 -550h-59l345 530l-244 -69l-10 13l278 355c18 22 38 57 38 75c0 21 -15 35 -35 35 c-29 0 -69 -17 -91 -35l-8 15c59 49 99 72 146 72c58 0 80 -32 80 -66c0 -45 -23 -73 -113 -168l-162 -172l193 54l218 335h58l-205 -315l251 71'], + 0xE370: [756,218,708,7,668,'396 756l-24 -90c168 -1 296 -126 296 -325c0 -288 -203 -526 -452 -548v23c202 44 341 280 341 479c0 39 -5 85 -13 120c-160 -28 -260 -277 -292 -415h-53l-57 -218h-59l215 824c-14 0 -28 -1 -44 -4l-75 -280h-43l72 270c-58 -15 -124 -44 -185 -89l-16 18 c109 89 203 132 306 142l25 93h58zM355 600l-97 -372c67 105 162 199 275 223c-29 77 -97 131 -178 149'], + 0xE400: [683,218,541,32,457,'452 461l5 -4c-1 -33 -2 -66 -2 -99v-358c0 -114 -39 -218 -170 -218c-33 0 -93 12 -93 55c0 23 19 39 41 39c42 0 51 -60 90 -60c14 0 26 7 34 18c16 24 14 94 14 121v405c0 12 0 28 -6 38c-12 17 -51 19 -78 19h-19h-84v-327c0 -55 12 -71 68 -75v-15h-220v15 c61 2 68 24 68 81v321h-67v33h68c9 75 12 133 72 186c40 35 95 47 147 47c43 0 125 -9 125 -68c0 -24 -9 -41 -35 -41c-42 0 -60 84 -121 84c-28 0 -56 -12 -75 -32c-27 -28 -30 -67 -30 -105v-26v-45h154c39 0 76 5 114 11'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Alphabets/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Arrows/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Arrows/Bold/Main.js new file mode 100644 index 0000000..c33883f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Arrows/Bold/Main.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Arrows/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Arrows-bold'] = { + directory: 'Arrows/Bold', + family: 'STIXMathJax_Arrows', + weight: 'bold', + id: 'STIXWEBARROWSB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x219C: [462,-72,956,66,890,'890 267l-44 -71c-58 45 -115 55 -160 55s-81 -14 -123 -29c-41 -14 -86 -29 -151 -29c-36 0 -66 8 -89 15l-31 10c-9 3 -18 5 -26 5c-23 0 -36 -13 -36 -31c0 -7 2 -20 5 -29c10 -29 15 -48 24 -79l-33 -12c-16 45 -35 98 -60 149c-26 52 -58 98 -100 135l1 11 c104 5 214 50 301 95l16 -27c-27 -20 -51 -34 -75 -48c-18 -10 -33 -21 -33 -38c0 -40 90 -68 129 -68c47 0 92 15 136 29c41 13 85 29 128 29c96 0 149 -14 221 -72'], + 0x219D: [462,-72,956,66,890,'889 367l1 -11c-42 -37 -74 -83 -100 -135c-25 -51 -44 -104 -60 -149l-33 12c9 31 14 50 24 79c3 9 5 22 5 29c0 18 -13 31 -36 31c-8 0 -17 -2 -26 -5l-31 -10c-23 -7 -53 -15 -89 -15c-65 0 -110 15 -151 29c-42 15 -78 29 -123 29s-102 -10 -160 -55l-44 71 c72 58 125 72 221 72c43 0 87 -16 128 -29c44 -14 89 -29 136 -29c39 0 129 28 129 68c0 17 -15 28 -33 38c-24 14 -48 28 -75 48l16 27c87 -45 197 -90 301 -95'], + 0x219F: [676,165,568,86,482,'482 180l-22 -24c-27 19 -54 39 -78 61c-8 8 -30 30 -41 30c-14 0 -13 -39 -13 -48v-364h-88v364c0 9 1 48 -12 48s-35 -22 -45 -30c-25 -22 -50 -43 -77 -62l-20 25c61 54 113 114 154 185v68c0 9 1 48 -12 48s-35 -22 -45 -30c-25 -22 -50 -43 -77 -62l-20 25 c87 76 146 157 193 262h11c42 -101 109 -191 192 -262l-22 -24c-27 19 -54 39 -78 61c-8 8 -30 30 -41 30c-14 0 -13 -39 -13 -48v-69c40 -70 93 -132 154 -184'], + 0x21A1: [676,165,568,86,482,'460 121l22 -24c-83 -71 -150 -161 -192 -262h-11c-47 105 -106 186 -193 262l20 25c27 -19 52 -40 77 -62c10 -8 32 -30 45 -30s12 39 12 48v68c-41 71 -93 131 -154 185l20 25c27 -19 52 -40 77 -62c10 -8 32 -30 45 -30s12 39 12 48v364h88v-364c0 -9 -1 -48 13 -48 c11 0 33 22 41 30c24 22 51 42 78 61l22 -24c-61 -52 -114 -114 -154 -184v-69c0 -9 -1 -48 13 -48c11 0 33 22 41 30c24 22 51 42 78 61'], + 0x21A4: [451,-55,977,68,909,'909 55h-70v154h-528c-9 0 -48 1 -48 -13c0 -11 22 -33 30 -41c22 -24 42 -51 61 -78l-24 -22c-71 83 -161 150 -262 192v11c106 47 185 106 262 193l25 -20c-19 -27 -40 -52 -62 -77c-8 -10 -30 -33 -30 -45c0 -13 40 -12 48 -12h528v154h70v-396'], + 0x21A5: [676,165,584,94,490,'490 -165h-396v70h154v528c0 8 1 48 -12 48c-12 0 -35 -22 -45 -30c-25 -22 -50 -43 -77 -62l-20 25c87 77 146 156 193 262h11c42 -101 109 -191 192 -262l-22 -24c-27 19 -54 39 -78 61c-8 8 -30 30 -41 30c-14 0 -13 -39 -13 -48v-528h154v-70'], + 0x21A7: [676,165,584,94,490,'468 121l22 -24c-83 -71 -150 -161 -192 -262h-11c-47 106 -106 185 -193 262l20 25c27 -19 52 -40 77 -62c10 -8 33 -30 45 -30c13 0 12 40 12 48v528h-154v70h396v-70h-154v-528c0 -9 -1 -48 13 -48c11 0 33 22 41 30c24 22 51 42 78 61'], + 0x21A8: [732,196,584,94,490,'490 -196h-396v66h193c-47 105 -104 184 -193 262l20 25c30 -21 53 -41 77 -62c5 -4 32 -30 45 -30c11 0 12 27 12 48v376c0 19 -1 48 -13 48c-11 0 -35 -25 -41 -30c-22 -20 -47 -40 -78 -61l-22 24c83 71 149 159 192 262h11c47 -105 104 -184 193 -262l-20 -25 c-30 21 -53 41 -77 62c-5 4 -32 30 -45 30c-9 0 -12 -18 -12 -35v-402c0 -17 4 -35 13 -35c11 0 35 25 41 30c22 20 47 40 78 61l22 -24c-83 -71 -149 -159 -192 -262h192v-66'], + 0x21AF: [683,154,562,68,494,'494 347l-234 -323c-8 -11 -23 -32 -23 -46c0 -13 21 -17 31 -17c31 0 62 5 93 5c6 0 11 -1 17 -1l3 -32c-113 -8 -207 -33 -307 -87l-6 5c12 48 20 98 20 148c0 57 -7 114 -19 170l31 6c9 -29 17 -59 23 -89c2 -8 3 -16 5 -23c3 -8 9 -21 19 -21c14 0 34 25 41 35 l127 182h-239l320 424l73 -49l-211 -287h236'], + 0x21B2: [686,170,584,45,503,'503 -16h-215c-8 0 -48 1 -48 -12c0 -12 22 -35 30 -45c22 -25 43 -50 62 -77l-25 -20c-77 87 -156 146 -262 193v11c101 42 191 109 262 192l24 -22c-19 -27 -39 -54 -61 -78c-8 -8 -30 -30 -30 -41c0 -14 39 -13 48 -13h127v614h88v-702'], + 0x21B3: [686,170,584,81,539,'539 34v-11c-106 -47 -185 -106 -262 -193l-25 20c19 27 40 52 62 77c8 10 30 33 30 45c0 13 -40 12 -48 12h-215v702h88v-614h127c9 0 48 -1 48 13c0 11 -22 33 -30 41c-22 24 -42 51 -61 78l24 22c71 -83 161 -150 262 -192'], + 0x21B4: [686,162,960,66,894,'874 125l20 -25c-89 -78 -146 -157 -193 -262h-11c-43 103 -109 191 -192 262l22 24c31 -21 56 -41 78 -61c6 -5 30 -30 41 -30c12 0 13 29 13 48v517h-586v88h673l1 -605c0 -21 1 -48 12 -48c13 0 40 26 45 30c24 21 47 41 77 62'], + 0x21B5: [686,171,960,56,904,'904 -16l-605 -1c-21 0 -48 -1 -48 -12c0 -13 26 -40 30 -45c21 -24 41 -47 62 -77l-25 -20c-78 89 -157 146 -262 193v11c103 43 191 109 262 192l24 -22c-21 -31 -41 -56 -61 -78c-5 -6 -30 -30 -30 -41c0 -12 29 -13 48 -13h517v615h88v-702'], + 0x21B8: [768,170,977,68,911,'911 680h-835v88h835v-88zM911 -108l-62 -62l-637 638c-13 13 -27 28 -37 28c-13 0 -15 -51 -16 -55c-2 -32 -4 -62 -10 -98h-32c0 118 -8 217 -49 325l8 8c103 -43 213 -50 322 -50v-32c-36 -8 -68 -11 -98 -12c-8 -1 -52 -2 -52 -14c0 -10 16 -25 27 -37'], + 0x21B9: [618,114,977,68,909,'909 -96h-70v396h70v-396zM909 376h-523c-19 0 -48 -1 -48 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h523v-88zM834 89 v-11c-103 -43 -191 -109 -262 -192l-24 22c21 31 41 56 61 78c5 6 30 30 30 41c0 12 -29 13 -48 13h-523v88h523c21 0 48 1 48 12c0 13 -26 40 -30 45c-21 24 -41 47 -62 77l25 20c78 -89 157 -146 262 -193zM138 222h-70v396h70v-396'], + 0x21C5: [676,165,864,66,798,'776 121l22 -24c-83 -71 -149 -159 -192 -262h-11c-47 105 -104 184 -193 262l20 25c30 -21 53 -41 77 -62c5 -4 32 -30 45 -30c11 0 12 27 12 48v598h88v-598c0 -19 1 -48 13 -48c11 0 35 25 41 30c22 20 47 40 78 61zM462 414l-22 -24c-31 21 -56 41 -78 61 c-6 5 -30 30 -41 30c-12 0 -13 -29 -13 -48v-598h-88v598c0 21 -1 48 -12 48c-13 0 -40 -26 -45 -30c-24 -21 -47 -41 -77 -62l-20 25c89 78 146 157 193 262h11c43 -103 109 -191 192 -262'], + 0x21D6: [662,156,926,54,872,'872 50l-62 -62l-582 582c-5 5 -20 7 -26 7c-35 0 -63 -27 -63 -62c0 -6 3 -23 7 -27l582 -582l-62 -62l-460 459c-8 8 -23 23 -36 23c-4 0 -8 -2 -11 -5c-7 -8 -8 -22 -9 -32c-4 -41 -8 -83 -16 -124l-32 1c1 163 -13 330 -48 489l7 7c145 -29 293 -49 440 -49 c17 0 33 0 49 1l4 -32c-41 -7 -82 -10 -124 -13c-12 -1 -26 -3 -35 -12c-3 -3 -5 -7 -5 -11c0 -13 15 -29 24 -38'], + 0x21D7: [662,156,926,54,872,'865 662l7 -7c-35 -159 -49 -326 -48 -489l-32 -1c-8 41 -12 83 -16 124c-1 10 -2 24 -9 32c-3 3 -7 5 -11 5c-13 0 -28 -15 -36 -23l-460 -459l-62 62l582 582c4 4 7 21 7 27c0 35 -28 62 -63 62c-6 0 -21 -2 -26 -7l-582 -582l-62 62l458 458c9 9 24 25 24 38 c0 4 -2 8 -5 11c-9 9 -23 11 -35 12c-42 3 -83 6 -124 13l4 32c16 -1 32 -1 49 -1c147 0 295 20 440 49'], + 0x21D8: [662,156,926,54,872,'872 -149l-7 -7c-145 29 -293 49 -440 49c-17 0 -33 0 -49 -1l-4 32c41 7 82 10 124 13c12 1 26 3 35 12c3 3 5 7 5 11c0 13 -15 29 -24 38l-458 458l62 62l582 -582c5 -5 20 -7 26 -7c35 0 63 27 63 62c0 6 -3 23 -7 27l-582 582l62 62l460 -459c8 -8 23 -23 36 -23 c4 0 8 2 11 5c7 8 8 22 9 32c4 41 8 83 16 124l32 -1c-1 -163 13 -330 48 -489'], + 0x21D9: [662,156,926,54,872,'872 456l-458 -458c-9 -9 -24 -25 -24 -38c0 -4 2 -8 5 -11c9 -9 23 -11 35 -12c42 -3 83 -6 124 -13l-4 -32c-16 1 -32 1 -49 1c-147 0 -295 -20 -440 -49l-7 7c35 159 49 326 48 489l32 1c8 -41 12 -83 16 -124c1 -10 2 -24 9 -32c3 -3 7 -5 11 -5c13 0 28 15 36 23 l460 459l62 -62l-582 -582c-4 -4 -7 -21 -7 -27c0 -35 28 -62 63 -62c6 0 21 2 26 7l582 582'], + 0x21DC: [451,-55,977,62,914,'914 209h-120l-95 -113l-118 171l-123 -171l-98 113h-55c-19 0 -48 -1 -48 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l27 -20c-21 -30 -43 -53 -64 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h97 l54 -60l125 176l120 -175l54 59h159v-88'], + 0x21E6: [551,45,926,60,866,'866 120h-420v-155l-20 -10c-117 116 -243 201 -366 293v10c121 92 249 177 366 293l20 -10v-155h420v-266zM805 181v144h-420v105l-147 -113c-31 -24 -54 -45 -54 -64s21 -37 54 -63l147 -115v106h420'], + 0x21E7: [662,156,685,45,641,'641 296l-10 -20h-155v-432h-266v432h-155l-10 20c116 117 201 243 293 366h10c92 -121 177 -249 293 -366zM520 337l-113 147c-24 31 -45 54 -64 54s-37 -21 -63 -54l-115 -147h106v-432h144v432h105'], + 0x21E8: [551,45,926,60,866,'866 258v-10c-123 -92 -249 -177 -366 -293l-20 10v155h-420v266h420v155l20 10c117 -116 245 -201 366 -293zM541 75l147 115c33 26 54 44 54 63s-23 40 -54 64l-147 113v-105h-420v-144h420v-106'], + 0x21E9: [662,156,685,45,641,'631 230l10 -20c-116 -117 -201 -245 -293 -366h-10c-92 123 -177 249 -293 366l10 20h155v432h266v-432h155zM520 169h-105v432h-144v-432h-106l115 -147c26 -33 44 -54 63 -54s40 23 64 54'], + 0x21EA: [705,201,685,45,641,'641 339l-10 -20h-155v-262h-266v262h-155l-10 20c116 117 201 243 293 366h10c92 -121 177 -249 293 -366zM520 380l-113 147c-20 26 -41 54 -64 54s-41 -26 -63 -54l-115 -147h106v-262h144v262h105zM476 -201h-266v193h266v-193zM415 -140v71h-144v-71h144'], + 0x21F5: [676,165,864,66,798,'798 414l-22 -24c-31 21 -56 41 -78 61c-6 5 -30 30 -41 30c-12 0 -13 -29 -13 -48v-598h-88v598c0 21 -1 48 -12 48c-13 0 -40 -26 -45 -30c-24 -21 -47 -41 -77 -62l-20 25c89 78 146 157 193 262h11c43 -103 109 -191 192 -262zM440 121l22 -24 c-83 -71 -149 -159 -192 -262h-11c-47 105 -104 184 -193 262l20 25c30 -21 53 -41 77 -62c5 -4 32 -30 45 -30c11 0 12 27 12 48v598h88v-598c0 -19 1 -48 13 -48c11 0 35 25 41 30c22 20 47 40 78 61'], + 0xE0B4: [555,-209,282,42,239,'239 209h-17c-100 0 -180 62 -180 173s80 173 181 173h16v-88h-9c-55 0 -100 -31 -100 -85c0 -50 44 -85 100 -85h9v-88'], + 0xE0B5: [555,-209,282,43,240,'43 555h16c101 0 181 -62 181 -173s-80 -173 -180 -173h-17v88h9c56 0 100 35 100 85c0 54 -45 85 -100 85h-9v88'], + 0xE0B6: [478,-56,0,15,142,'142 215h-27v-159h-100v422h100v-159h27v-104'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Arrows/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Arrows/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Arrows/Regular/Main.js new file mode 100644 index 0000000..3df5202 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Arrows/Regular/Main.js @@ -0,0 +1,246 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Arrows/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Arrows'] = { + directory: 'Arrows/Regular', + family: 'STIXMathJax_Arrows', + id: 'STIXWEBARROWS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x219C: [411,-102,926,70,856,'856 238l-38 -51c-55 54 -118 68 -160 68c-84 0 -139 -68 -264 -68c-110 0 -183 63 -201 70c-3 1 -6 2 -9 2c-9 0 -12 -8 -12 -23c0 -43 8 -81 8 -130l-27 -4c-11 99 -27 204 -83 291l6 9c33 -7 80 -16 114 -16c69 0 131 10 197 25l6 -27c-39 -12 -76 -23 -119 -30 c-16 -2 -47 -6 -47 -20c0 -32 76 -81 165 -81c104 0 161 68 257 68c80 0 137 -21 207 -83'], + 0x219D: [411,-102,926,70,856,'850 402l6 -9c-56 -87 -72 -192 -83 -291l-27 4c0 49 8 87 8 130c0 15 -3 23 -12 23c-3 0 -6 -1 -9 -2c-18 -7 -91 -70 -201 -70c-125 0 -180 68 -264 68c-42 0 -105 -14 -160 -68l-38 51c70 62 127 83 207 83c96 0 153 -68 257 -68c89 0 165 49 165 81 c0 14 -31 18 -47 20c-43 7 -80 18 -119 30l6 27c66 -15 128 -25 197 -25c34 0 81 9 114 16'], + 0x219F: [662,154,511,60,451,'451 217l-19 -20c-33 23 -65 52 -96 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-421h-66v422c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c60 52 120 111 162 181v76c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82 l-19 20c75 65 150 141 190 237h10c41 -96 115 -172 191 -238l-19 -20c-33 23 -65 52 -96 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-74c43 -71 102 -130 163 -183'], + 0x21A1: [662,154,511,60,451,'432 104l19 -20c-76 -66 -150 -142 -191 -238h-10c-40 96 -115 172 -190 237l19 20c33 -22 68 -53 96 -82c10 -10 16 -14 25 -14c10 0 22 6 22 26v76c-42 70 -102 129 -162 181l19 20c33 -22 68 -53 96 -82c10 -10 16 -14 25 -14c10 0 22 5 22 26v422h66v-421 c0 -18 10 -26 20 -26c8 0 19 5 28 14c31 30 63 59 96 82l19 -20c-61 -53 -120 -112 -163 -183v-74c0 -18 10 -26 20 -26c8 0 19 5 28 14c31 30 63 59 96 82'], + 0x21A4: [450,-57,926,70,857,'857 57h-50v163h-550c-18 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h549v164h50v-393'], + 0x21A5: [662,154,511,60,451,'451 -154h-391v50h162v579c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c75 65 150 141 190 237h10c41 -96 115 -172 191 -238l-19 -20c-33 23 -65 52 -96 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-578h163v-50'], + 0x21A7: [662,154,511,59,451,'451 612h-163v-579c0 -10 12 -26 22 -26c9 0 15 4 25 14c28 29 63 60 96 82l19 -20c-75 -65 -150 -141 -190 -237h-10c-41 96 -115 172 -191 238l19 20c33 -23 65 -52 96 -82c9 -9 20 -14 28 -14c10 0 20 8 20 26v578h-162v50h391v-50'], + 0x21A8: [662,154,511,59,451,'451 -154h-391v50h190c-41 96 -115 172 -191 238l19 20c33 -23 65 -52 96 -82c9 -9 20 -14 28 -14c10 0 20 8 20 26v391c0 20 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c75 65 150 141 190 237h10c41 -96 115 -172 191 -238l-19 -20 c-33 23 -65 52 -96 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-391c0 -14 12 -26 22 -26c9 0 15 4 25 14c28 29 63 60 96 82l19 -20c-75 -65 -150 -141 -190 -237h191v-50'], + 0x21AF: [662,154,511,60,451,'451 320l-234 -337c-3 -3 -4 -9 -4 -15c0 -16 11 -23 25 -23c3 0 6 0 10 1c36 6 77 12 113 12h14l3 -26c-98 -11 -204 -28 -291 -86l-8 7c7 33 10 67 10 100c0 69 -13 138 -29 203l28 6c14 -37 23 -81 31 -123c3 -15 10 -30 24 -30c7 0 14 4 21 14l157 231h-261l330 408 l60 -39l-242 -303h243'], + 0x21B2: [662,154,463,25,419,'419 0h-196c-18 0 -26 -10 -26 -20c0 -8 5 -24 14 -33c30 -31 49 -49 72 -82l-20 -19c-66 76 -142 141 -238 182v10c96 40 172 106 237 181l20 -19c-22 -33 -43 -59 -72 -87c-10 -10 -14 -16 -14 -25c0 -10 8 -22 26 -22h131v596h66v-662'], + 0x21B3: [662,154,463,39,433,'433 38v-10c-96 -41 -172 -106 -238 -182l-20 19c23 33 42 51 72 82c9 9 14 25 14 33c0 10 -8 20 -26 20h-196v662h66v-596h131c18 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -50 54 -72 87l20 19c65 -75 141 -141 237 -181'], + 0x21B4: [662,154,926,70,856,'837 104l19 -20c-76 -66 -150 -142 -191 -238h-10c-40 96 -115 172 -190 237l19 20c33 -22 68 -53 96 -82c10 -10 16 -14 25 -14c10 0 22 7 22 27v562h-557v66h623v-628c0 -19 10 -26 20 -26c8 0 19 5 28 14c31 30 63 59 96 82'], + 0x21B5: [662,156,926,70,856,'856 0h-598c-19 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -56 82 -89l-20 -19c-66 76 -142 143 -238 184v10c96 40 172 108 237 183l20 -19c-22 -33 -53 -61 -82 -89c-10 -10 -14 -16 -14 -25c0 -10 7 -22 27 -22h532v596h66v-662'], + 0x21B8: [732,156,926,55,872,'856 666h-794v66h794v-66zM872 -110l-47 -46l-658 658c-5 5 -11 9 -18 9c-5 0 -11 -3 -15 -5c-8 -8 -7 -18 -7 -29c0 -42 -3 -85 -10 -126l-29 2c2 29 4 59 4 88c0 73 -10 146 -37 214l7 7c69 -28 143 -37 217 -37c29 0 58 1 87 4v-29c-42 -7 -84 -8 -126 -10 c-10 0 -23 -1 -29 -10c-5 -3 -6 -8 -6 -13c0 -8 5 -15 10 -20'], + 0x21B9: [598,92,926,60,866,'866 380h-567c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 48 -55 69 -85l-20 -19c-66 73 -130 139 -226 180v-180h-50v370h50v-180c96 40 161 105 226 180l20 -19c-21 -33 -40 -58 -69 -86c-10 -10 -14 -16 -14 -25c0 -16 17 -22 27 -22h566v-66zM866 -92h-50v180 c-96 -40 -161 -105 -226 -180l-20 19c21 33 40 58 69 86c10 10 14 16 14 25c0 16 -17 22 -27 22h-566v66h567c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -48 55 -69 85l20 19c66 -73 130 -139 226 -180v180h50v-370'], + 0x21C5: [662,156,773,31,742,'723 102l19 -20c-76 -66 -150 -142 -191 -238h-10c-40 96 -115 172 -190 237l19 20c33 -22 67 -53 96 -82c10 -10 16 -14 25 -14c10 0 22 9 22 26v621h66v-620c0 -18 10 -26 20 -26c8 0 19 5 28 14c31 30 63 59 96 82zM422 424l-19 -20c-33 23 -65 52 -96 82 c-9 9 -20 14 -28 14c-10 0 -20 -7 -20 -26v-620h-66v621c0 19 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c75 65 150 141 190 237h10c41 -96 115 -172 191 -238'], + 0x21D6: [662,156,926,55,874,'874 32l-46 -47l-600 599c-17 5 -34 7 -48 7c-17 0 -32 -4 -41 -13c-10 -9 -13 -23 -13 -39c0 -14 3 -33 6 -49l601 -600l-47 -46l-498 497c-6 6 -13 8 -19 8c-25 0 -28 -26 -28 -51c0 -16 -2 -72 -5 -109h-29c-1 164 -30 314 -52 466l7 7c151 -21 302 -51 466 -52v-29 c-37 -3 -75 -5 -110 -5c-25 0 -34 0 -45 -13c-3 -3 -5 -9 -5 -15s2 -13 8 -19'], + 0x21D7: [662,156,926,55,874,'867 662l7 -7c-22 -152 -51 -302 -52 -466h-29c-3 37 -5 93 -5 109c0 25 -3 51 -28 51c-6 0 -13 -2 -19 -8l-498 -497l-47 46l601 600c3 16 6 35 6 49c0 16 -3 30 -13 39c-9 9 -24 13 -41 13c-14 0 -31 -2 -48 -7l-600 -599l-46 47l498 497c6 6 8 13 8 19s-2 12 -5 15 c-11 13 -20 13 -45 13c-35 0 -73 2 -110 5v29c164 1 315 31 466 52'], + 0x21D8: [662,156,926,55,874,'874 -149l-7 -7c-151 21 -302 51 -466 52v29c37 3 75 5 110 5c25 0 34 0 45 13c3 3 5 9 5 15s-2 13 -8 19l-498 497l46 47l600 -599c17 -5 34 -7 48 -7c17 0 32 4 41 13c10 9 13 23 13 39c0 14 -3 33 -6 49l-601 600l47 46l498 -497c6 -6 13 -8 19 -8c25 0 28 26 28 51 c0 16 2 72 5 109h29c1 -164 30 -314 52 -466'], + 0x21D9: [662,156,926,55,874,'874 474l-498 -497c-6 -6 -8 -13 -8 -19s2 -12 5 -15c11 -13 20 -13 45 -13c35 0 73 -2 110 -5v-29c-164 -1 -315 -31 -466 -52l-7 7c22 152 51 302 52 466h29c3 -37 5 -93 5 -109c0 -25 3 -51 28 -51c6 0 13 2 19 8l498 497l47 -46l-601 -600c-3 -16 -6 -35 -6 -49 c0 -16 3 -30 13 -39c9 -9 24 -13 41 -13c14 0 31 2 48 7l600 599'], + 0x21DC: [449,-58,926,60,866,'866 220h-114l-89 -106l-119 172l-124 -172l-92 106h-83c-8 0 -24 -13 -24 -22s4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h112l60 -66 l124 174l119 -174l60 66h143v-66'], + 0x21DE: [662,156,511,60,451,'451 76h-163v-232h-66v232h-162v50h162v79h-162v50h162v220c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c75 65 150 141 190 237h10c41 -96 115 -172 191 -238l-19 -20c-33 23 -65 52 -96 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-219 h163v-50h-163v-79h163v-50'], + 0x21DF: [662,156,511,60,451,'432 102l19 -20c-76 -66 -150 -142 -191 -238h-10c-40 96 -115 172 -190 237l19 20c33 -22 68 -53 96 -82c10 -10 16 -14 25 -14c10 0 22 16 22 26v220h-162v50h162v79h-162v50h162v232h66v-232h163v-50h-163v-79h163v-50h-163v-219c0 -18 10 -26 20 -26c8 0 19 5 28 14 c31 30 63 59 96 82'], + 0x21E1: [662,156,511,60,451,'451 424l-19 -20c-33 23 -65 52 -96 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-111h-66v112c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c75 65 150 141 190 237h10c41 -96 115 -172 191 -238zM288 190h-66v107h66v-107zM288 17h-66v107 h66v-107zM288 -156h-66v107h66v-107'], + 0x21E3: [662,156,511,60,451,'288 555h-66v107h66v-107zM288 382h-66v107h66v-107zM288 209h-66v107h66v-107zM432 102l19 -20c-76 -66 -150 -142 -191 -238h-10c-40 96 -115 172 -190 237l19 20c33 -22 68 -53 96 -82c10 -10 16 -14 25 -14c10 0 22 9 22 26v112h66v-111c0 -18 10 -26 20 -26 c8 0 19 5 28 14c31 30 63 59 96 82'], + 0x21E4: [450,-58,926,60,866,'866 220h-569c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v-190h-50v392h50v-192c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h568v-66'], + 0x21E5: [450,-58,926,60,866,'866 58h-50v190c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25c0 10 -16 22 -26 22h-569v66h568c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c66 -76 142 -151 238 -192v192h50v-392'], + 0x21E6: [551,45,926,60,866,'866 120h-420v-155l-20 -10c-117 116 -243 201 -366 293v10c121 92 249 177 366 293l20 -10v-155h420v-266zM816 170v166h-420v116l-165 -126c-29 -22 -58 -47 -58 -73s27 -48 58 -72l165 -128v117h420'], + 0x21E7: [662,156,685,45,641,'641 296l-10 -20h-155v-432h-266v432h-155l-10 20c116 117 201 243 293 366h10c92 -121 177 -249 293 -366zM542 326l-126 165c-22 29 -47 58 -73 58s-48 -27 -72 -58l-128 -165h117v-432h166v432h116'], + 0x21E8: [551,45,926,60,866,'866 258v-10c-123 -92 -249 -177 -366 -293l-20 10v155h-420v266h420v155l20 10c117 -116 245 -201 366 -293zM530 53l165 128c31 24 58 46 58 72s-29 51 -58 73l-165 126v-116h-420v-166h420v-117'], + 0x21E9: [662,156,685,45,641,'631 230l10 -20c-116 -117 -201 -245 -293 -366h-10c-92 123 -177 249 -293 366l10 20h155v432h266v-432h155zM542 180h-116v432h-166v-432h-117l128 -165c24 -31 46 -58 72 -58s51 29 73 58'], + 0x21EA: [690,184,685,45,641,'641 324l-10 -20h-155v-262h-266v262h-155l-10 20c116 117 201 243 293 366h10c92 -121 177 -249 293 -366zM542 354l-126 165c-22 29 -47 58 -73 58s-48 -27 -72 -58l-128 -165h117v-262h166v262h116zM476 -184h-266v161h266v-161zM426 -134v61h-166v-61h166'], + 0x21F4: [448,-57,926,70,856,'856 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-127c-15 -69 -76 -120 -150 -120s-135 51 -151 120h-170v66h170c14 70 77 122 151 122c75 0 136 -52 151 -122h127c10 0 26 12 26 22c0 9 -4 15 -14 25 c-29 28 -60 63 -82 96l20 19c65 -75 141 -150 237 -190zM292 286h198c-14 41 -53 72 -99 72s-86 -31 -99 -72zM489 220h-197c14 -41 54 -70 99 -70s84 29 98 70'], + 0x21F5: [662,156,773,31,742,'742 424l-19 -20c-33 23 -65 52 -96 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-620h-66v621c0 17 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c75 65 150 141 190 237h10c41 -96 115 -172 191 -238zM403 102l19 -20 c-76 -66 -150 -142 -191 -238h-10c-40 96 -115 172 -190 237l19 20c33 -22 67 -53 96 -82c10 -10 16 -14 25 -14c10 0 22 7 22 26v621h66v-620c0 -20 10 -26 20 -26c8 0 19 5 28 14c31 30 63 59 96 82'], + 0x21F6: [739,232,926,60,866,'866 -42v-10c-96 -40 -172 -105 -237 -180l-20 19c22 33 47 58 76 86c10 10 14 16 14 25c0 10 -7 22 -25 22h-614v66h613c18 0 26 10 26 20c0 8 -5 15 -14 24c-20 21 -39 37 -77 73l78 72c10 10 13 14 13 23c0 10 -13 22 -25 22h-614v66h613c14 0 26 9 26 20 c0 8 -5 15 -14 24c-20 21 -39 37 -77 73l78 72c10 10 13 14 13 23c0 10 -15 22 -25 22h-614v66h613c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -54 53 -77 86l20 19c66 -76 142 -140 238 -181v-10c-85 -36 -153 -88 -213 -145c61 -57 129 -109 213 -145v-10 c-85 -36 -153 -88 -213 -145c61 -57 129 -109 213 -145'], + 0x21F7: [450,-58,926,60,866,'866 220h-307v-162h-50v162h-262c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h261v164h50v-164h307v-66'], + 0x21F8: [450,-58,926,55,861,'861 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25c0 10 -16 22 -26 22h-257v-162h-50v162h-312v66h312v164h50v-164h256c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c66 -76 142 -151 238 -192'], + 0x21F9: [450,-58,926,48,878,'878 258v-10c-96 -41 -172 -114 -238 -190l-20 19c23 33 52 64 82 95c9 9 14 20 14 28c0 10 -8 20 -26 20h-203v-162h-50v162h-202c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 116 238 192l20 -19 c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h201v164h50v-164h204c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 65 -82 98l20 19c65 -75 141 -152 237 -192'], + 0x21FA: [450,-58,926,60,866,'866 220h-225v-162h-50v162h-79v-162h-50v162h-215c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h214v164h50 v-164h79v164h50v-164h225v-66'], + 0x21FB: [450,-58,926,60,866,'866 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25c0 10 -16 22 -26 22h-215v-162h-50v162h-79v-162h-50v162h-225v66h225v164h50v-164h79v164h50v-164h214c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19 c66 -76 142 -151 238 -192'], + 0x21FC: [450,-58,926,38,888,'888 258v-10c-96 -41 -172 -114 -238 -190l-20 19c23 33 52 64 82 95c9 9 14 20 14 28c0 10 -8 20 -26 20h-147v-162h-50v162h-79v-162h-50v162h-149c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10 c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h148v164h50v-164h79v164h50v-164h148c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 65 -82 98l20 19c65 -75 141 -152 237 -192'], + 0x21FD: [449,-57,926,60,866,'866 220h-538v-158l-10 -5c-65 75 -162 151 -258 191v10c96 41 192 115 258 191l10 -5v-158h538v-66zM278 166v173c-22 -29 -91 -70 -121 -85c30 -15 99 -59 121 -88'], + 0x21FE: [449,-57,926,60,866,'866 258v-10c-96 -41 -192 -115 -258 -191l-10 5v158h-538v66h538v158l10 5c65 -75 162 -151 258 -191zM648 340v-173c22 29 91 70 121 85c-30 15 -99 59 -121 88'], + 0x21FF: [449,-57,926,20,906,'906 258v-10c-96 -41 -192 -115 -258 -191l-10 5v158h-350v-158l-10 -5c-65 75 -162 151 -258 191v10c96 41 192 115 258 191l10 -5v-158h350v158l10 5c65 -75 162 -151 258 -191zM688 340v-173c22 29 91 70 121 85c-30 15 -99 59 -121 88zM238 166v173 c-22 -29 -91 -70 -121 -85c30 -15 99 -59 121 -88'], + 0x27F0: [662,156,1033,69,965,'965 298l-13 -24c-42 15 -96 47 -147 81v-511h-66v557c-49 36 -81 69 -104 88v-645h-66v697c-19 13 -35 23 -52 23c-20 0 -35 -10 -52 -23v-697h-66v642c-25 -20 -57 -51 -104 -85v-557h-66v512c-54 -35 -108 -67 -145 -81l-15 24c137 70 278 186 443 363h13 c136 -152 273 -279 440 -364'], + 0x27F1: [662,156,1033,69,965,'950 231l15 -24c-137 -70 -278 -186 -443 -363h-13c-136 152 -273 279 -440 364l13 24c42 -15 96 -47 147 -81v511h66v-557c49 -36 81 -69 104 -88v645h66v-697c19 -13 35 -23 52 -23c20 0 35 10 52 23v697h66v-642c25 20 57 51 104 85v557h66v-512c54 35 108 67 145 81'], + 0x27F2: [626,116,974,54,882,'54 546l24 13c24 -34 44 -71 65 -108c7 -13 15 -25 26 -25c6 0 13 3 17 9c64 118 195 191 326 191c203 0 370 -164 370 -372c0 -204 -164 -370 -371 -370c-150 0 -284 90 -341 227l59 26c48 -111 165 -188 283 -188c170 0 304 140 304 305c0 170 -138 306 -305 306 c-104 0 -202 -55 -257 -141c-2 -4 -2 -7 -2 -10c0 -11 10 -19 21 -19c6 0 12 2 21 6c37 19 80 35 118 46l12 -25c-92 -37 -189 -84 -258 -162l-10 4c-6 105 -52 199 -102 287'], + 0x27F3: [626,116,974,92,920,'896 559l24 -13c-50 -88 -96 -182 -102 -287l-10 -4c-69 78 -166 125 -258 162l12 25c38 -11 81 -27 118 -46c9 -4 15 -6 21 -6c11 0 21 8 21 19c0 3 0 6 -2 10c-55 86 -153 141 -257 141c-167 0 -305 -136 -305 -306c0 -165 134 -305 304 -305c118 0 235 77 283 188 l59 -26c-57 -137 -191 -227 -341 -227c-207 0 -371 166 -371 370c0 208 167 372 370 372c131 0 262 -73 326 -191c4 -6 11 -9 17 -9c11 0 19 12 26 25c21 37 41 74 65 108'], + 0x27F4: [569,61,1200,52,1147,'1147 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-119c-15 -158 -141 -281 -310 -281c-174 0 -302 107 -317 281h-161v66h161c16 154 141 283 317 283c164 0 295 -117 310 -283h120c10 0 26 12 26 22 c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191zM552 286h223c-14 112 -99 207 -223 217v-217zM502 286v217c-116 -12 -208 -99 -223 -217h223zM775 220h-223v-215c121 10 208 102 223 215zM502 5v215h-223c14 -116 103 -204 223 -215'], + 0x27FB: [450,-57,1574,55,1519,'1519 57h-50v163h-1226c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 117 237 192l20 -19c-22 -33 -53 -70 -82 -98c-10 -10 -14 -16 -14 -25c0 -10 8 -22 26 -22h1227v164h50v-393'], + 0x27FD: [551,45,1574,55,1519,'1519 -45h-50v165h-1098c-18 0 -26 -14 -26 -22c0 -16 6 -25 23 -42c11 -11 50 -53 74 -81l-21 -20c-117 116 -243 201 -366 293v10c121 92 249 177 366 293l21 -20c-24 -28 -50 -56 -75 -82c-14 -15 -22 -21 -22 -41c0 -8 8 -22 26 -22h1098v165h50v-596zM1469 186v134 h-1242c-33 -19 -59 -43 -59 -67s26 -45 58 -67h1243'], + 0x27FE: [551,45,1574,55,1519,'1519 258v-10c-123 -92 -249 -177 -366 -293l-21 20c24 28 63 70 74 81c17 17 23 26 23 42c0 8 -8 22 -26 22h-1098v-165h-50v596h50v-165h1098c18 0 26 14 26 22c0 20 -8 26 -22 41c-25 26 -51 54 -75 82l21 20c117 -116 245 -201 366 -293zM105 186h1243 c32 22 58 43 58 67s-26 48 -59 67h-1242v-134'], + 0x27FF: [449,-58,1574,55,1519,'1519 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25s-16 22 -24 22h-57l-92 -106l-124 172l-119 -172l-124 172l-119 -172l-124 172l-119 -172l-124 172l-119 -172l-89 106h-69v66h98l60 -66l119 174l124 -174l119 174l124 -174 l119 174l124 -174l119 174l124 -174l60 66h86c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191'], + 0x2900: [450,-57,926,56,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-15c-70 -42 -129 -103 -181 -163l-20 19c22 33 53 69 82 97c10 10 14 16 14 25s-14 20 -24 22h-168v-163h-50v163h-266v66h266v164h50v-164h169 c15 0 22 11 22 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c53 -61 112 -122 183 -164h13c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c66 -76 142 -151 238 -192'], + 0x2901: [450,-57,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-15c-70 -42 -129 -103 -181 -163l-20 19c22 33 53 69 82 97c10 10 14 16 14 25s-14 20 -24 22h-135v-163h-50v163h-79v-163h-50v163h-171v66h171v164h50v-164 h79v164h50v-164h136c15 0 22 11 22 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c53 -61 112 -122 183 -164h13c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c66 -76 142 -151 238 -192'], + 0x2902: [551,45,926,55,871,'871 120h-257v-145h-50v145h-193c-18 0 -26 -14 -26 -22c0 -16 6 -25 23 -42c11 -11 50 -53 74 -81l-21 -20c-117 116 -243 201 -366 293v10c121 92 249 177 366 293l21 -20c-24 -28 -50 -56 -75 -82c-14 -15 -22 -21 -22 -41c0 -8 8 -22 26 -22h193v144h50v-144h257v-66 h-257v-134h257v-66zM564 186v134h-337c-33 -19 -59 -43 -59 -67s26 -45 58 -67h338'], + 0x2903: [551,45,926,55,871,'871 258v-10c-123 -92 -249 -177 -366 -293l-21 20c24 28 63 70 74 81c17 17 23 26 23 42c0 8 -8 22 -26 22h-193v-145h-50v145h-257v66h257v134h-257v66h257v144h50v-144h193c18 0 26 14 26 22c0 20 -8 26 -22 41c-25 26 -51 54 -75 82l21 20 c117 -116 245 -201 366 -293zM362 186h338c32 22 58 43 58 67s-26 48 -59 67h-337v-134'], + 0x2904: [551,45,926,20,906,'906 258v-10c-45 -30 -197 -142 -314 -258l-28 21c21 23 69 64 69 93c0 11 -1 16 -30 16h-115v-165h-50v165h-112c-26 0 -35 -2 -35 -18c0 -24 31 -45 70 -89l-23 -23c-121 114 -272 230 -318 258v10c46 33 195 146 318 259l23 -23c-24 -28 -72 -69 -72 -89 c0 -15 18 -19 34 -19h115v165h50v-165h115c20 0 28 12 28 21c0 34 -44 60 -67 86l28 24c122 -112 268 -228 314 -259zM488 186h246c33 19 59 43 59 67s-26 45 -58 67h-247v-134zM438 186v134h-247c-33 -19 -58 -43 -59 -67c0 -23 26 -45 58 -67h248'], + 0x2905: [450,-57,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-15c-70 -42 -129 -103 -181 -163l-20 19c22 33 53 69 82 97c10 10 14 16 14 25s-14 20 -24 22h-435v-163h-50v393h50v-164h436c15 0 22 11 22 20 c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c53 -61 112 -122 183 -164h13c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c66 -76 142 -151 238 -192'], + 0x2906: [551,45,926,55,871,'871 -25h-50v145h-450c-18 0 -26 -14 -26 -22c0 -16 6 -25 23 -42c11 -11 50 -53 74 -81l-21 -20c-117 116 -243 201 -366 293v10c121 92 249 177 366 293l21 -20c-24 -28 -50 -56 -75 -82c-14 -15 -22 -21 -22 -41c0 -8 8 -22 26 -22h450v144h50v-555zM821 186v134h-594 c-33 -19 -59 -43 -59 -67s26 -45 58 -67h595'], + 0x2907: [551,45,926,55,871,'871 258v-10c-123 -92 -249 -177 -366 -293l-21 20c24 28 63 70 74 81c17 17 23 26 23 42c0 8 -8 22 -26 22h-450v-145h-50v555h50v-144h450c18 0 26 14 26 22c0 20 -8 26 -22 41c-25 26 -51 54 -75 82l21 20c117 -116 245 -201 366 -293zM105 186h595c32 22 58 43 58 67 s-26 48 -59 67h-594v-134'], + 0x2908: [662,156,511,59,452,'452 320h-163v-289c0 -10 12 -26 22 -26c9 0 15 4 25 14c28 29 63 60 96 82l19 -20c-75 -65 -150 -141 -190 -237h-10c-41 96 -116 172 -192 238l19 20c33 -23 66 -52 97 -82c9 -9 20 -14 28 -14c10 0 20 8 20 26v288h-163v50h163v292h66v-292h163v-50'], + 0x2909: [662,156,511,59,452,'452 424l-19 -20c-33 23 -66 52 -97 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-288h163v-50h-163v-292h-66v292h-163v50h163v289c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c75 65 150 141 190 237h10c41 -96 116 -172 192 -238'], + 0x290A: [662,156,926,71,854,'854 298l-15 -23c-33 20 -90 59 -140 99h-3v-530h-66v577c-28 24 -64 59 -86 81c-9 9 -20 14 -28 14c-10 0 -20 -7 -20 -26v-646h-66v645c0 20 -12 28 -22 28c-4 0 -15 -3 -25 -14c-17 -20 -63 -63 -87 -81v-578h-66v531h-1c-52 -42 -109 -79 -142 -99l-16 23 c106 70 260 186 387 363h10c105 -152 258 -279 386 -364'], + 0x290B: [662,156,926,72,855,'839 230l16 -23c-106 -70 -260 -186 -387 -363h-10c-105 152 -258 279 -386 364l15 23c33 -20 90 -59 140 -99h3v530h66v-577c28 -24 64 -59 86 -81c9 -9 20 -14 28 -14c10 0 20 7 20 26v646h66v-645c0 -20 12 -28 22 -28c4 0 15 3 25 14c17 20 63 63 87 81v578h66v-531 h1c52 42 109 79 142 99'], + 0x290C: [449,-57,926,55,871,'871 220h-262v66h262v-66zM505 220h-263c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h262v-66'], + 0x290D: [449,-57,926,55,871,'871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-262v66h263c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191zM317 220h-262v66h262v-66'], + 0x290E: [449,-57,926,55,871,'871 220h-154v66h154v-66zM633 220h-154v66h154v-66zM395 220h-153c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28 c0 -10 8 -20 26 -20h152v-66'], + 0x290F: [449,-57,926,55,871,'871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-152v66h153c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191zM447 220h-154v66h154v-66zM209 220h-154v66h154v-66'], + 0x2910: [449,-57,1412,55,1357,'1357 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-15c-70 -42 -129 -103 -181 -163l-20 19c22 33 54 70 83 98c10 10 13 15 13 24c0 8 -15 22 -24 22v66c17 0 23 11 23 20c0 8 -5 19 -14 28 c-30 31 -59 63 -82 96l20 19c53 -61 112 -121 183 -163h14c17 0 25 10 25 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191zM942 220h-144v66h144v-66zM714 220h-144v66h144v-66zM486 220h-144v66h144v-66zM258 286v-66 c-70 -42 -130 -103 -182 -163l-20 19c22 33 55 67 82 97c10 12 28 36 28 80c0 32 -16 64 -29 81c-27 34 -59 63 -82 96l20 19c53 -61 112 -120 183 -163'], + 0x2911: [449,-57,926,55,873,'873 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -4 19 -15 19c-20 0 -31 16 -31 36s11 36 31 36c10 0 14 7 14 17c0 8 -5 19 -14 28c-30 31 -58 63 -81 96l20 19c66 -76 141 -150 237 -191zM616 254c0 -21 -16 -37 -36 -37 s-37 16 -37 37c0 20 17 36 37 36s36 -16 36 -36zM495 254c0 -21 -17 -37 -37 -37c-19 0 -36 16 -36 37c0 20 17 36 36 36c20 0 37 -16 37 -36zM372 253c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM250 254c0 -21 -17 -37 -36 -37c-20 0 -37 16 -37 37 c0 20 17 36 37 36c19 0 36 -16 36 -36zM128 254c0 -21 -17 -37 -37 -37s-36 16 -36 37c0 20 16 36 36 36s37 -16 37 -36'], + 0x2912: [662,156,511,59,452,'452 424l-19 -20c-33 23 -65 52 -96 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-630h-66v630c0 18 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -59 -96 -81l-19 20c61 53 123 114 165 187h-167v50h391v-50h-164c42 -73 103 -134 166 -188'], + 0x2913: [662,156,511,59,452,'452 -156h-391v50h164c-42 73 -103 134 -166 188l19 20c33 -23 65 -52 96 -82c9 -9 20 -14 28 -14c10 0 20 8 20 26v630h66v-630c0 -18 12 -26 22 -26c9 0 15 4 25 14c28 29 63 59 96 81l19 -20c-61 -53 -123 -114 -165 -187h167v-50'], + 0x2914: [450,-57,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-231v-163h-50v163h-146c-70 -42 -129 -103 -181 -163l-20 19c22 33 55 67 82 97c10 12 28 36 28 80c0 32 -16 64 -29 81c-27 35 -59 64 -82 97l20 19 c53 -61 112 -121 183 -164h145v164h50v-164h230c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c66 -76 142 -151 238 -192'], + 0x2915: [450,-57,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-153v-163h-50v163h-79v-163h-50v163h-95c-70 -42 -129 -103 -181 -163l-20 19c22 33 55 67 82 97c10 12 28 36 28 80c0 32 -16 64 -29 81 c-27 35 -59 64 -82 97l20 19c53 -61 112 -121 183 -164h94v164h50v-164h79v164h50v-164h152c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c66 -76 142 -151 238 -192'], + 0x2916: [449,-57,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-16c-70 -42 -129 -103 -181 -163l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 8 -10 22 -24 22h-282c-70 -42 -129 -103 -181 -163l-20 19 c22 33 55 67 82 97c10 12 28 36 28 80c0 32 -16 64 -29 81c-27 34 -59 63 -82 96l20 19c53 -61 112 -120 183 -163h281c14 0 23 11 23 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c53 -61 112 -121 183 -163h14c18 0 26 10 26 20c0 8 -5 19 -14 28 c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191'], + 0x2917: [450,-57,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-16c-70 -42 -129 -103 -181 -163l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 8 -10 22 -24 22h-145v-163h-50v163h-87c-70 -42 -129 -103 -181 -163 l-20 19c22 33 55 67 82 97c10 12 28 36 28 80c0 32 -16 64 -29 81c-27 35 -59 64 -82 97l20 19c53 -61 112 -121 183 -164h86v164h50v-164h145c14 0 23 11 23 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c53 -61 112 -122 183 -164h14c18 0 26 10 26 20 c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c66 -76 142 -151 238 -192'], + 0x2918: [450,-57,926,50,876,'876 258v-10c-96 -40 -162 -116 -227 -191l-20 19c22 33 51 69 80 97c10 10 14 16 14 25c0 10 -15 22 -25 22c-76 -42 -124 -100 -176 -163l-20 19c22 33 51 69 80 97c10 10 14 16 14 25c0 8 -10 22 -24 22h-121v-163h-50v163h-59v-163h-50v163h-51 c-70 -42 -118 -100 -170 -163l-20 19c22 32 48 64 75 94c10 12 29 39 29 83c0 32 -17 64 -30 81c-27 35 -52 64 -75 97l20 19c53 -63 101 -121 172 -164h50v164h50v-164h59v164h50v-164h121c14 0 23 11 23 20c0 8 -5 19 -14 28c-30 31 -56 64 -79 97l20 19 c53 -63 101 -122 176 -164c18 0 24 10 24 20c0 8 -5 19 -14 28c-30 31 -57 64 -80 97l20 19c66 -76 132 -151 228 -192'], + 0x2919: [449,-57,926,55,871,'871 76l-20 -19c-53 61 -112 120 -183 163h-613v66h614c70 42 129 103 181 163l20 -19c-22 -33 -55 -67 -82 -97c-10 -12 -28 -36 -28 -80c0 -32 16 -64 29 -81c27 -34 59 -63 82 -96'], + 0x291A: [449,-57,926,55,871,'871 220h-614c-70 -42 -129 -103 -181 -163l-20 19c22 33 55 67 82 97c10 12 28 36 28 80c0 32 -16 64 -29 81c-27 34 -59 63 -82 96l20 19c53 -61 112 -120 183 -163h613v-66'], + 0x291B: [449,-57,926,55,871,'871 76l-20 -19c-53 61 -112 120 -183 163h-19c-15 -2 -21 -11 -21 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-53 61 -113 120 -184 163h-465v66h466c71 42 130 103 182 163l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25s13 -21 23 -22h19 c70 42 129 103 181 163l20 -19c-22 -33 -55 -67 -82 -97c-10 -12 -28 -36 -28 -80c0 -32 16 -64 29 -81c27 -34 59 -63 82 -96'], + 0x291C: [449,-57,926,55,871,'871 220h-466c-71 -42 -130 -103 -182 -163l-20 19c22 33 53 69 82 97c10 10 14 16 14 25s-13 21 -23 22h-19c-70 -42 -129 -103 -181 -163l-20 19c22 33 55 67 82 97c10 12 28 36 28 80c0 32 -16 64 -29 81c-27 34 -59 63 -82 96l20 19c53 -61 112 -120 183 -163h19 c15 2 21 11 21 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c53 -61 113 -120 184 -163h465v-66'], + 0x291D: [449,-57,926,55,871,'871 220h-418c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 152 -237 192v10c96 41 172 114 238 190l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h417v-66zM261 259v-10c-30 -22 -76 -69 -98 -98 h-10c-23 29 -69 76 -98 98v10c29 22 76 68 98 98h10c22 -30 68 -76 98 -98'], + 0x291E: [449,-57,926,55,871,'871 259v-10c-29 -22 -76 -68 -98 -98h-10c-22 30 -68 76 -98 98v10c30 22 76 69 98 98h10c23 -29 69 -76 98 -98zM660 259v-10c-96 -41 -172 -116 -238 -192l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-417v66h418c10 0 26 12 26 22 c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -150 237 -190'], + 0x291F: [450,-57,926,55,871,'871 57h-50v163h-368c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 152 -237 192v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h367v164h50v-393zM261 259v-10 c-30 -22 -76 -69 -98 -98h-10c-23 29 -69 76 -98 98v10c29 22 76 68 98 98h10c22 -30 68 -76 98 -98'], + 0x2920: [450,-57,926,55,871,'871 259v-10c-29 -22 -76 -68 -98 -98h-10c-22 30 -68 76 -98 98v10c30 22 76 69 98 98h10c23 -29 69 -76 98 -98zM660 259v-10c-96 -41 -172 -116 -238 -192l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-367v-163h-50v393h50v-164h368 c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 65 -82 98l20 19c65 -75 141 -151 237 -191'], + 0x2921: [662,156,926,55,871,'871 -149l-7 -7c-69 28 -143 37 -216 37c-29 0 -58 -2 -87 -4l-1 28c40 7 83 9 126 10c17 0 35 7 35 23c0 6 -3 12 -10 19l-544 546c-4 4 -13 7 -21 7c-18 0 -20 -14 -20 -32c0 -40 -2 -87 -10 -126l-28 1c2 30 4 60 4 91c0 71 -9 144 -37 211l7 7 c69 -28 143 -37 216 -37c29 0 58 2 87 4l1 -28c-40 -7 -83 -9 -126 -10c-17 0 -35 -7 -35 -23c0 -6 3 -12 10 -19l544 -546c4 -4 13 -7 21 -7c18 0 20 14 20 32c0 40 2 87 10 126l28 -1c-2 -30 -4 -60 -4 -91c0 -71 9 -144 37 -211'], + 0x2922: [660,156,926,55,873,'866 660l7 -7c-28 -69 -37 -143 -37 -216c0 -29 2 -58 4 -87l-28 -1c-7 40 -9 83 -10 126c0 17 -7 35 -23 35c-6 0 -12 -3 -19 -10l-546 -544c-4 -4 -7 -13 -7 -21c0 -18 14 -20 32 -20c40 0 87 -2 126 -10l-1 -28c-30 2 -60 4 -91 4c-71 0 -144 -9 -211 -37l-7 7 c28 69 37 143 37 216c0 29 -2 58 -4 87l28 1c7 -40 9 -83 10 -126c0 -17 7 -35 23 -35c6 0 12 3 19 10l546 544c4 4 7 13 7 21c0 18 -14 20 -32 20c-40 0 -87 2 -126 10l1 28c30 -2 60 -4 91 -4c71 0 144 9 211 37'], + 0x2923: [662,156,926,55,871,'231 555l572 -471c40 -33 68 -70 68 -120c0 -75 -59 -120 -123 -120c-39 0 -64 11 -84 31l-60 49l45 52l61 -51c12 -12 28 -15 43 -15c24 0 52 17 52 54c0 23 -6 37 -37 63l-586 482c-5 4 -8 5 -12 5c-23 0 -23 -28 -23 -47c0 -10 2 -36 2 -49c0 -19 0 -38 -3 -60l-29 -2 c-4 99 -11 208 -62 299l6 7c47 -12 96 -21 144 -21c56 0 111 7 164 17l4 -29c-38 -10 -85 -21 -127 -27c-18 -2 -26 -12 -26 -25c0 -7 3 -15 11 -22'], + 0x2924: [662,156,926,55,871,'865 662l6 -7c-51 -91 -58 -200 -62 -299l-29 2c-3 22 -3 41 -3 60c0 13 2 39 2 49c0 19 0 47 -23 47c-4 0 -7 -1 -12 -5l-586 -482c-31 -26 -37 -40 -37 -63c0 -37 28 -54 52 -54c15 0 31 3 43 15l61 51l45 -52l-60 -49c-20 -20 -45 -31 -84 -31c-64 0 -123 45 -123 120 c0 50 28 87 68 120l572 471c8 7 11 15 11 22c0 13 -8 23 -26 25c-42 6 -89 17 -127 27l4 29c53 -10 108 -17 164 -17c48 0 97 9 144 21'], + 0x2925: [662,156,926,55,871,'871 -149l-6 -7c-47 12 -96 21 -144 21c-56 0 -111 -7 -164 -17l-4 29c38 10 85 21 127 27c18 2 26 12 26 25c0 7 -3 15 -11 22l-572 471c-40 33 -68 70 -68 120c0 75 59 120 123 120c39 0 64 -11 84 -31l60 -49l-45 -52l-61 51c-12 12 -28 15 -43 15 c-24 0 -52 -17 -52 -54c0 -23 6 -37 37 -63l586 -482c5 -4 8 -5 12 -5c23 0 23 28 23 47c0 10 -2 36 -2 49c0 19 0 38 3 60l29 2c4 -99 11 -208 62 -299'], + 0x2926: [662,156,926,55,871,'604 582l60 49c20 20 45 31 84 31c64 0 123 -45 123 -120c0 -50 -28 -87 -68 -120l-572 -471c-8 -7 -11 -15 -11 -22c0 -13 8 -23 26 -25c42 -6 89 -17 127 -27l-4 -29c-53 10 -108 17 -164 17c-48 0 -97 -9 -144 -21l-6 7c51 91 58 200 62 299l29 -2c3 -22 3 -41 3 -60 c0 -13 -2 -39 -2 -49c0 -19 0 -47 23 -47c4 0 7 1 12 5l586 482c31 26 37 40 37 63c0 37 -28 54 -52 54c-15 0 -31 -3 -43 -15l-61 -51'], + 0x2927: [662,156,926,55,873,'866 662l7 -7c-28 -69 -37 -143 -37 -216c0 -29 2 -58 4 -87l-28 -1c-7 40 -10 83 -10 126c0 17 -7 35 -23 35c-6 0 -12 -3 -19 -10l-250 -250l361 -361l-47 -47l-361 361l-361 -361l-47 47l361 361l-249 251c-4 4 -13 7 -21 7c-18 0 -20 -14 -20 -32 c0 -40 -2 -87 -10 -126l-28 1c2 30 4 60 4 91c0 71 -9 144 -37 211l7 7c69 -28 143 -37 216 -37c29 0 58 2 87 4l1 -28c-40 -7 -83 -9 -126 -10c-17 0 -35 -7 -35 -23c0 -6 3 -12 10 -19l248 -250l251 251c4 4 7 13 7 21c0 18 -14 20 -32 20c-40 0 -87 2 -126 10l1 28 c30 -2 60 -4 91 -4c71 0 144 9 211 37'], + 0x2928: [662,156,926,53,871,'871 -149l-7 -7c-69 28 -143 37 -216 37c-29 0 -58 -2 -87 -4l-1 28c40 7 83 10 126 10c17 0 35 7 35 23c0 6 -3 12 -10 19l-250 250l-361 -361l-47 47l361 361l-361 361l47 47l361 -361l251 249c4 4 7 13 7 21c0 18 -14 20 -32 20c-40 0 -87 2 -126 10l1 28 c30 -2 60 -4 91 -4c71 0 144 9 211 37l7 -7c-28 -69 -37 -143 -37 -216c0 -29 2 -58 4 -87l-28 -1c-7 40 -9 83 -10 126c0 17 -7 35 -23 35c-6 0 -12 -3 -19 -10l-250 -248l251 -251c4 -4 13 -7 21 -7c18 0 20 14 20 32c0 40 2 87 10 126l28 -1c-2 -30 -4 -60 -4 -91 c0 -71 9 -144 37 -211'], + 0x2929: [662,156,926,53,871,'871 -149l-7 -7c-69 28 -143 37 -216 37c-29 0 -58 -2 -87 -4l-1 28c40 7 83 9 126 10c17 0 35 7 35 23c0 6 -3 12 -10 19l-248 250l-251 -251c-4 -4 -7 -13 -7 -21c0 -18 14 -20 32 -20c40 0 87 -2 126 -10l-1 -28c-30 2 -60 4 -91 4c-71 0 -144 -9 -211 -37l-7 7 c28 69 37 143 37 216c0 29 -2 58 -4 87l28 1c7 -40 10 -83 10 -126c0 -17 7 -35 23 -35c6 0 12 3 19 10l250 250l-361 361l47 47l361 -361l361 361l47 -47l-361 -361l249 -251c4 -4 13 -7 21 -7c18 0 20 14 20 32c0 40 2 87 10 126l28 -1c-2 -30 -4 -60 -4 -91 c0 -71 9 -144 37 -211'], + 0x292A: [662,156,926,55,873,'873 -109l-47 -47l-361 361l-251 -249c-4 -4 -7 -13 -7 -21c0 -18 14 -20 32 -20c40 0 87 -2 126 -10l-1 -28c-30 2 -60 4 -91 4c-71 0 -144 -9 -211 -37l-7 7c28 69 37 143 37 216c0 29 -2 58 -4 87l28 1c7 -40 9 -83 10 -126c0 -17 7 -35 23 -35c6 0 12 3 19 10 l250 248l-251 251c-4 4 -13 7 -21 7c-18 0 -20 -14 -20 -32c0 -40 -2 -87 -10 -126l-28 1c2 30 4 60 4 91c0 71 -9 144 -37 211l7 7c69 -28 143 -37 216 -37c29 0 58 2 87 4l1 -28c-40 -7 -83 -10 -126 -10c-17 0 -35 -7 -35 -23c0 -6 3 -12 10 -19l250 -250l361 361l47 -47 l-361 -361'], + 0x292B: [662,156,926,55,871,'402 361l-47 -47l-300 301l47 47zM871 615l-769 -771l-47 47l769 771zM871 -109l-47 -47l-300 301l47 47'], + 0x292C: [662,156,926,55,871,'871 615l-300 -301l-47 47l300 301zM871 -109l-47 -47l-769 771l47 47zM402 145l-300 -301l-47 47l300 301'], + 0x292D: [662,156,926,55,871,'864 662l7 -7c-28 -69 -37 -143 -37 -216c0 -29 2 -58 4 -87l-28 -1c-7 40 -9 83 -10 126c0 17 -7 35 -23 35c-6 0 -12 -3 -19 -10l-187 -188l-47 47l188 189c4 4 7 13 7 21c0 18 -14 20 -32 20c-40 0 -87 2 -126 10l1 28c30 -2 60 -4 91 -4c71 0 144 9 211 37zM871 -149 l-7 -7c-69 28 -143 37 -216 37c-29 0 -58 -2 -87 -4l-1 28c40 7 83 9 126 10c17 0 35 7 35 23c0 6 -3 12 -10 19l-656 658l47 47l657 -659c4 -4 13 -7 21 -7c18 0 20 14 20 32c0 40 2 87 10 126l28 -1c-2 -30 -4 -60 -4 -91c0 -71 9 -144 37 -211zM402 145l-300 -301l-47 47 l300 301'], + 0x292E: [662,156,926,55,871,'402 361l-47 -47l-300 301l47 47zM864 662l7 -7c-28 -67 -37 -140 -37 -211c0 -31 2 -61 4 -91l-28 -1c-8 39 -10 86 -10 126c0 18 -2 32 -20 32c-8 0 -17 -3 -21 -7l-657 -659l-47 47l656 658c7 7 10 13 10 19c0 16 -18 23 -35 23c-43 1 -86 3 -126 10l1 28 c29 -2 58 -4 87 -4c73 0 147 9 216 37zM871 -149l-7 -7c-67 28 -140 37 -211 37c-31 0 -61 -2 -91 -4l-1 28c39 8 86 10 126 10c18 0 32 2 32 20c0 8 -3 17 -7 21l-188 189l47 47l187 -188c7 -7 13 -10 19 -10c16 0 23 18 23 35c1 43 3 86 10 126l28 -1 c-2 -29 -4 -58 -4 -87c0 -73 9 -147 37 -216'], + 0x292F: [662,156,926,55,871,'864 662l7 -7c-28 -69 -37 -143 -37 -216c0 -29 2 -58 4 -87l-28 -1c-7 40 -9 83 -10 126c0 17 -7 35 -23 35c-6 0 -12 -3 -19 -10l-187 -188l-47 47l188 189c4 4 7 13 7 21c0 18 -14 20 -32 20c-40 0 -87 2 -126 10l1 28c30 -2 60 -4 91 -4c71 0 144 9 211 37zM871 -109 l-47 -47l-769 771l47 47zM402 145l-300 -301l-47 47l300 301'], + 0x2930: [662,154,926,55,873,'873 -147l-7 -7c-69 28 -143 37 -216 37c-29 0 -58 -2 -87 -4l-1 28c40 7 83 9 126 10c17 0 35 7 35 23c0 6 -3 12 -10 19l-188 187l47 47l189 -188c4 -4 13 -7 21 -7c18 0 20 14 20 32c0 40 2 87 10 126l28 -1c-2 -30 -4 -60 -4 -91c0 -71 9 -144 37 -211zM873 615 l-771 -769l-47 47l771 769zM403 362l-47 -47l-301 300l47 47'], + 0x2931: [662,156,926,54,870,'402 361l-47 -47l-187 188c-7 7 -13 10 -19 10c-16 0 -23 -18 -23 -35c-1 -43 -3 -86 -10 -126l-28 1c2 29 4 58 4 87c0 73 -9 147 -37 216l7 7c67 -28 140 -37 211 -37c31 0 61 2 91 4l1 -28c-39 -8 -86 -10 -126 -10c-18 0 -32 -2 -32 -20c0 -8 3 -17 7 -21zM863 662 l7 -7c-28 -69 -37 -143 -37 -216c0 -29 2 -58 4 -87l-28 -1c-7 40 -10 83 -10 126c0 17 -7 35 -23 35c-6 0 -12 -3 -19 -10l-656 -658l-47 47l657 659c4 4 7 13 7 21c0 18 -14 20 -32 20c-40 0 -87 2 -126 10l1 28c30 -2 60 -4 91 -4c71 0 144 9 211 37zM870 -109l-47 -47 l-300 301l47 47'], + 0x2932: [662,156,926,55,871,'863 662l7 -7c-28 -69 -37 -143 -37 -216c0 -29 2 -58 4 -87l-28 -1c-7 40 -9 83 -10 126c0 17 -7 35 -23 35c-6 0 -12 -3 -19 -10l-187 -188l-47 47l188 189c4 4 7 13 7 21c0 18 -14 20 -32 20c-40 0 -87 2 -126 10l1 28c30 -2 60 -4 91 -4c71 0 144 9 211 37zM871 -109 l-47 -47l-656 658c-7 7 -13 10 -19 10c-16 0 -23 -18 -23 -35c0 -43 -3 -86 -10 -126l-28 1c2 29 4 58 4 87c0 73 -9 147 -37 216l7 7c67 -28 140 -37 211 -37c31 0 61 2 91 4l1 -28c-39 -8 -86 -10 -126 -10c-18 0 -32 -2 -32 -20c0 -8 3 -17 7 -21zM402 145l-300 -301 l-47 47l300 301'], + 0x2933: [449,-57,926,55,871,'871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-107c-126 0 -172 154 -280 154c-88 0 -147 -77 -190 -152l-51 34c53 97 137 184 241 184c142 0 202 -154 280 -154h108c10 0 26 12 26 22c0 9 -4 15 -14 25 c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191'], + 0x2934: [562,0,926,141,797,'797 324l-19 -20c-33 23 -65 53 -96 83c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-52c0 -178 -135 -323 -312 -323h-181v66h181c142 0 246 115 246 257v52c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -64 -60 -97 -82l-19 20c75 65 151 141 191 237h10 c41 -96 115 -172 191 -238'], + 0x2935: [562,0,926,141,797,'778 258l19 -20c-76 -66 -150 -142 -191 -238h-10c-40 96 -116 172 -191 237l19 20c33 -22 69 -53 97 -82c10 -10 16 -14 25 -14c10 0 22 16 22 26v52c0 142 -104 257 -246 257h-181v66h181c177 0 312 -145 312 -323v-52c0 -18 10 -26 20 -26c8 0 19 5 28 14 c31 30 63 60 96 83'], + 0x2936: [493,163,784,87,649,'649 493v-181c0 -177 -145 -312 -323 -312h-52c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 60 -63 83 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 116 237 191l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25c0 -10 16 -22 26 -22h52 c142 0 257 104 257 246v181h66'], + 0x2937: [493,163,784,135,697,'697 38v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 53 65 83 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-52c-178 0 -323 135 -323 312v181h66v-181c0 -142 115 -246 257 -246h52c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19 c65 -75 141 -151 237 -191'], + 0x2938: [657,153,511,70,415,'132 595l22 62c149 -46 261 -220 261 -380c0 -129 -58 -258 -167 -332c-7 -5 -10 -10 -10 -15c0 -8 8 -15 20 -18c39 -9 84 -22 120 -39l-7 -26c-68 22 -139 35 -212 35c-28 0 -55 -2 -84 -6l-5 10c60 84 91 179 108 277l26 -5c-2 -40 -8 -82 -19 -125 c-1 -7 -2 -12 -2 -16c0 -11 6 -14 18 -14c33 0 74 52 92 76c37 49 56 135 56 200c0 133 -94 280 -217 316'], + 0x2939: [657,153,511,96,441,'441 -114l-5 -10c-29 4 -56 6 -84 6c-73 0 -144 -13 -212 -35l-7 26c36 17 81 30 120 39c12 3 20 10 20 18c0 5 -3 10 -10 15c-109 74 -167 203 -167 332c0 160 112 334 261 380l22 -62c-123 -36 -217 -183 -217 -316c0 -65 19 -151 56 -200c18 -24 59 -76 92 -76 c12 0 18 3 18 14c0 4 -1 9 -2 16c-11 43 -17 85 -19 125l26 5c17 -98 48 -193 108 -277'], + 0x293A: [423,-78,926,69,866,'866 162l-62 -22c-36 123 -176 217 -309 217c-65 0 -145 -19 -194 -56c-24 -18 -76 -59 -76 -92c0 -12 3 -18 14 -18c4 0 9 1 16 2c43 11 85 17 125 19l5 -26c-98 -17 -193 -48 -277 -108l-10 5c4 29 6 56 6 84c0 73 -13 144 -35 212l26 7c17 -36 30 -81 39 -120 c3 -12 10 -20 18 -20c5 0 10 3 15 10c74 109 207 167 326 167c160 0 327 -112 373 -261'], + 0x293B: [423,-78,926,60,857,'857 122l-26 -7c-17 36 -30 81 -39 120c-3 12 -10 20 -18 20c-5 0 -10 -3 -15 -10c-74 -109 -207 -167 -326 -167c-160 0 -327 112 -373 261l62 22c36 -123 176 -217 309 -217c65 0 145 19 194 56c24 18 76 59 76 92c0 12 -3 18 -14 18c-4 0 -9 -1 -16 -2 c-43 -11 -85 -17 -125 -19l-5 26c98 17 193 48 277 108l10 -5c-4 -29 -6 -56 -6 -84c0 -73 13 -144 35 -212'], + 0x293C: [423,-64,926,59,856,'830 386l26 -7c-22 -68 -35 -139 -35 -212c0 -28 2 -55 6 -84l-10 -5c-84 60 -179 91 -277 108l5 26c40 -2 82 -8 125 -19c7 -1 12 -2 16 -2c11 0 14 6 14 18c0 33 -52 74 -76 92c-49 37 -129 56 -194 56c-133 0 -273 -94 -309 -217l-62 22c46 149 213 261 373 261 c119 0 252 -58 326 -167c5 -7 10 -10 15 -10c8 0 15 8 18 20c9 39 22 84 39 120zM536 64h-256v50h256v-50'], + 0x293D: [423,29,926,69,866,'866 162l-62 -22c-36 123 -176 217 -309 217c-65 0 -145 -19 -194 -56c-24 -18 -76 -59 -76 -92c0 -12 3 -18 14 -18c4 0 9 1 16 2c43 11 85 17 125 19l5 -26c-98 -17 -193 -48 -277 -108l-10 5c4 29 6 56 6 84c0 73 -13 144 -35 212l26 7c17 -36 30 -81 39 -120 c3 -12 10 -20 18 -20c5 0 10 3 15 10c74 109 207 167 326 167c160 0 327 -112 373 -261zM646 64h-104v-93h-50v93h-104v50h104v93h50v-93h104v-50'], + 0x293E: [563,116,926,69,856,'652 508l36 55c101 -66 168 -180 168 -309c0 -204 -166 -370 -370 -370c-135 0 -253 73 -318 181c-6 7 -12 12 -19 12c-9 0 -14 -9 -17 -25c-7 -39 -21 -84 -37 -121l-26 8c19 65 32 132 32 202c0 31 -3 62 -8 94l7 5c88 -59 182 -88 283 -102l-6 -28 c-41 3 -82 8 -126 18c-6 2 -11 3 -15 3c-9 0 -16 -6 -16 -16c0 -6 3 -13 8 -22c53 -86 149 -143 258 -143c168 0 304 136 304 304c0 106 -55 200 -138 254'], + 0x293F: [563,116,926,69,856,'856 -61l-26 -8c-16 37 -30 82 -37 121c-3 16 -8 25 -17 25c-7 0 -13 -5 -19 -12c-65 -108 -183 -181 -318 -181c-204 0 -370 166 -370 370c0 129 67 243 168 309l36 -55c-83 -54 -138 -148 -138 -254c0 -168 136 -304 304 -304c109 0 205 57 258 143c5 9 8 16 8 22 c0 10 -7 16 -16 16c-4 0 -9 -1 -15 -3c-44 -10 -85 -15 -126 -18l-6 28c101 14 195 43 283 102l7 -5c-5 -32 -8 -63 -8 -94c0 -70 13 -137 32 -202'], + 0x2940: [788,116,926,92,834,'572 788l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -9 5 -20 21 -23c178 -35 317 -181 317 -367c0 -205 -166 -371 -371 -371s-371 166 -371 371c0 171 115 315 273 358c98 50 153 112 207 175zM591 416l-20 -19c-50 57 -107 115 -174 157 c-137 -30 -240 -153 -240 -299c0 -169 137 -306 306 -306s306 137 306 306c0 150 -108 275 -251 301h-2c-14 0 -20 -10 -20 -19s4 -15 14 -25c29 -28 59 -63 81 -96'], + 0x2941: [788,116,926,92,834,'334 769l20 19c54 -63 109 -125 207 -175c158 -43 273 -187 273 -358c0 -205 -166 -371 -371 -371s-371 166 -371 371c0 186 139 332 317 367c16 3 21 14 21 23c0 8 -5 19 -14 28c-30 31 -59 63 -82 96zM410 556h-2c-143 -26 -251 -151 -251 -301 c0 -169 137 -306 306 -306s306 137 306 306c0 146 -103 269 -240 299c-67 -42 -124 -100 -174 -157l-20 19c22 33 52 68 81 96c10 10 14 16 14 25s-6 19 -20 19'], + 0x2942: [598,92,926,55,871,'871 418v-10c-96 -41 -170 -107 -236 -180l-20 19c23 30 46 54 76 85c9 9 14 20 14 28c0 10 -8 20 -26 20h-614v66h613c10 0 27 6 27 22c0 9 -4 15 -14 25c-29 28 -54 53 -76 86l20 19c65 -75 140 -140 236 -180zM448 60h-200c-10 0 -27 -6 -27 -22c0 -9 4 -15 14 -25 c29 -28 54 -53 76 -86l-20 -19c-65 75 -140 140 -236 180v10c96 41 170 107 236 180l20 -19c-23 -30 -46 -54 -76 -85c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h201v-66'], + 0x2943: [598,92,926,55,871,'861 380h-614c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 53 -55 76 -85l-20 -19c-66 73 -140 139 -236 180v10c96 40 171 105 236 180l20 -19c-22 -33 -47 -58 -76 -86c-10 -10 -14 -16 -14 -25c0 -16 17 -22 27 -22h613v-66zM871 98v-10 c-96 -40 -171 -105 -236 -180l-20 19c22 33 47 58 76 86c10 10 14 16 14 25c0 16 -17 22 -27 22h-200v66h201c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -53 55 -76 85l20 19c66 -73 140 -139 236 -180'], + 0x2944: [598,92,926,55,871,'871 418v-10c-96 -40 -171 -105 -236 -180l-20 19c22 33 47 58 76 86c10 10 14 16 14 25c0 16 -17 22 -27 22h-200v66h201c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -53 55 -76 85l20 19c66 -73 140 -139 236 -180zM861 60h-614c-18 0 -26 -10 -26 -20 c0 -8 5 -19 14 -28c30 -31 53 -55 76 -85l-20 -19c-66 73 -140 139 -236 180v10c96 40 171 105 236 180l20 -19c-22 -33 -47 -58 -76 -86c-10 -10 -14 -16 -14 -25c0 -16 17 -22 27 -22h613v-66'], + 0x2945: [449,69,926,55,871,'871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-628v66h629c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191zM388 24h-104v-93h-50v93h-104v50h104v93h50v-93h104v-50 '], + 0x2946: [449,69,926,55,871,'871 220h-629c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h628v-66zM796 24h-104v-93h-50v93h-104v50h104v93 h50v-93h104v-50'], + 0x2947: [449,-57,926,55,871,'871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-265l108 -108l-35 -35l-142 142l-142 -142l-35 35l108 108h-225v66h227l-110 110l35 35l142 -142l142 142l35 -35l-110 -110h268c10 0 26 12 26 22 c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191'], + 0x2948: [449,-57,926,38,888,'888 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-87c-15 -69 -76 -120 -150 -120s-135 51 -151 120h-87c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10 c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h86c14 70 77 122 151 122c75 0 136 -52 151 -122h87c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 63 -82 96l20 19c65 -75 141 -150 237 -190zM364 286h198 c-14 41 -53 72 -99 72s-86 -31 -99 -72zM561 220h-197c14 -41 54 -70 99 -70s84 29 98 70'], + 0x2949: [662,154,511,60,451,'451 277l-19 -20c-37 26 -63 53 -96 82c-8 7 -17 14 -28 14c-12 0 -20 -10 -20 -22v-190c68 -17 113 -75 113 -145c0 -83 -67 -150 -150 -150s-150 67 -150 150c0 69 49 132 117 146c1 0 3 1 4 1v187c0 8 -13 24 -22 24c-11 0 -18 -7 -25 -14c-31 -29 -60 -58 -96 -82 l-19 20c61 53 120 111 162 181v16c0 10 -12 26 -22 26c-11 0 -18 -7 -25 -14c-31 -29 -60 -58 -96 -82l-19 20c77 66 150 142 190 237h10c41 -95 114 -171 191 -238l-19 -20c-37 26 -63 53 -96 82c-8 7 -17 14 -28 14c-21 0 -20 -25 -20 -40c43 -70 101 -129 163 -183z M351 -4c0 55 -45 100 -100 100s-100 -45 -100 -100s45 -100 100 -100s100 45 100 100'], + 0x294A: [439,-67,926,38,888,'888 286v-5c-96 -46 -178 -139 -238 -214l-20 19c23 33 42 65 72 96c9 9 14 16 14 24c0 10 -8 14 -26 14h-652v5c96 46 178 139 238 214l20 -19c-23 -33 -42 -65 -72 -96c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h652'], + 0x294B: [439,-67,926,38,888,'888 220h-652c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 49 -63 72 -96l-20 -19c-60 75 -142 168 -238 214v5h652c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -49 63 -72 96l20 19c60 -75 142 -168 238 -214v-5'], + 0x294C: [662,156,511,69,441,'441 424l-19 -20c-33 23 -65 42 -96 72c-9 9 -16 14 -24 14c-10 0 -14 -8 -14 -26v-620h-5c-46 96 -139 178 -214 238l19 20c33 -23 65 -42 96 -72c9 -9 16 -14 24 -14c10 0 14 8 14 26v620h5c46 -96 139 -178 214 -238'], + 0x294D: [662,156,511,69,441,'422 102l19 -20c-75 -60 -168 -142 -214 -238h-5v620c0 18 -4 26 -14 26c-8 0 -15 -5 -24 -14c-31 -30 -63 -49 -96 -72l-19 20c75 60 168 142 214 238h5v-620c0 -18 4 -26 14 -26c8 0 15 5 24 14c31 30 63 49 96 72'], + 0x294E: [439,-220,926,38,888,'888 220h-850v5c96 46 178 139 238 214l20 -19c-23 -33 -42 -65 -72 -96c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h454c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -49 63 -72 96l20 19c60 -75 142 -168 238 -214v-5'], + 0x294F: [662,156,511,222,441,'422 102l19 -20c-75 -60 -168 -142 -214 -238h-5v818h5c46 -96 139 -178 214 -238l-19 -20c-33 23 -65 42 -96 72c-9 9 -16 14 -24 14c-10 0 -14 -8 -14 -26v-422c0 -18 4 -26 14 -26c8 0 15 5 24 14c31 30 63 49 96 72'], + 0x2950: [286,-67,926,38,888,'888 286v-5c-96 -46 -178 -139 -238 -214l-20 19c23 33 42 65 72 96c9 9 14 16 14 24c0 10 -8 14 -26 14h-454c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 49 -63 72 -96l-20 -19c-60 75 -142 168 -238 214v5h850'], + 0x2951: [662,156,511,69,288,'288 -156h-5c-46 96 -139 178 -214 238l19 20c33 -23 65 -42 96 -72c9 -9 16 -14 24 -14c10 0 14 8 14 26v428c0 14 -5 20 -14 20c-8 0 -15 -5 -24 -14c-31 -30 -63 -49 -96 -72l-19 20c75 60 168 142 214 238h5v-818'], + 0x2952: [448,-58,926,55,871,'871 220h-766v-162h-50v390h50v-223c96 46 178 139 238 214l20 -19c-23 -33 -42 -65 -72 -96c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h568v-66'], + 0x2953: [448,-58,926,55,871,'871 58h-50v162h-766v66h568c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -49 63 -72 96l20 19c60 -75 142 -168 238 -214v223h50v-390'], + 0x2954: [662,156,511,60,451,'451 612h-224c46 -96 139 -178 214 -238l-19 -20c-33 23 -65 42 -96 72c-9 9 -16 14 -24 14c-10 0 -14 -8 -14 -26v-570h-66v768h-162v50h391v-50'], + 0x2955: [662,156,511,60,451,'451 -156h-391v50h163v768h66v-570c0 -18 4 -26 14 -26c8 0 15 5 24 14c31 30 63 49 96 72l19 -20c-75 -60 -168 -142 -214 -238h223v-50'], + 0x2956: [448,-58,926,55,871,'871 220h-568c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 49 -63 72 -96l-20 -19c-60 75 -142 168 -238 214v-223h-50v390h50v-162h766v-66'], + 0x2957: [448,-58,926,55,871,'871 58h-50v223c-96 -46 -178 -139 -238 -214l-20 19c23 33 42 65 72 96c9 9 14 16 14 24c0 10 -8 14 -26 14h-568v66h766v162h50v-390'], + 0x2958: [662,156,511,60,451,'451 612h-163v-768h-66v570c0 18 -4 26 -14 26c-8 0 -15 -5 -24 -14c-31 -30 -63 -49 -96 -72l-19 20c75 60 168 142 214 238h-223v50h391v-50'], + 0x2959: [662,156,511,60,451,'451 -156h-391v50h223c-46 96 -139 178 -214 238l19 20c33 -23 65 -42 96 -72c9 -9 16 -14 24 -14c10 0 14 8 14 26v570h66v-768h163v-50'], + 0x295A: [448,-58,926,55,871,'871 58h-50v162h-766v5c96 46 178 139 238 214l20 -19c-23 -33 -42 -65 -72 -96c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h568v162h50v-390'], + 0x295B: [448,-58,926,55,871,'871 220h-766v-162h-50v390h50v-162h568c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -49 63 -72 96l20 19c60 -75 142 -168 238 -214v-5'], + 0x295C: [662,156,511,60,451,'451 -156h-391v50h162v768h5c46 -96 139 -178 214 -238l-19 -20c-33 23 -65 42 -96 72c-9 9 -16 14 -24 14c-10 0 -14 -8 -14 -26v-570h163v-50'], + 0x295D: [662,156,511,60,451,'451 612h-163v-570c0 -18 4 -26 14 -26c8 0 15 5 24 14c31 30 63 49 96 72l19 -20c-75 -60 -168 -142 -214 -238h-5v768h-162v50h391v-50'], + 0x295E: [448,-58,926,55,871,'871 58h-50v162h-568c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 49 -63 72 -96l-20 -19c-60 75 -142 168 -238 214v5h766v162h50v-390'], + 0x295F: [448,-58,926,55,871,'871 286v-5c-96 -46 -178 -139 -238 -214l-20 19c23 33 42 65 72 96c9 9 14 16 14 24c0 10 -8 14 -26 14h-568v-162h-50v390h50v-162h766'], + 0x2960: [662,156,511,59,450,'450 -156h-391v50h163v570c0 18 -4 26 -14 26c-8 0 -15 -5 -24 -14c-31 -30 -63 -49 -96 -72l-19 20c75 60 168 142 214 238h5v-768h162v-50'], + 0x2961: [662,156,511,59,450,'450 612h-162v-768h-5c-46 96 -139 178 -214 238l19 20c33 -23 65 -42 96 -72c9 -9 16 -14 24 -14c10 0 14 8 14 26v570h-163v50h391v-50'], + 0x2962: [539,33,926,55,871,'871 320h-816v5c96 46 178 139 238 214l20 -19c-23 -33 -42 -65 -72 -96c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h618v-66zM871 120h-618c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 49 -63 72 -96l-20 -19c-60 75 -142 168 -238 214v5h816v-66'], + 0x2963: [662,156,685,57,629,'629 424l-19 -20c-33 23 -65 42 -96 72c-9 9 -16 14 -24 14c-10 0 -14 -8 -14 -26v-620h-66v818h5c46 -96 139 -178 214 -238zM276 -156h-66v620c0 18 -4 26 -14 26c-8 0 -15 -5 -24 -14c-31 -30 -63 -49 -96 -72l-19 20c75 60 168 142 214 238h5v-818'], + 0x2964: [539,33,926,55,871,'871 320h-816v66h618c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -49 63 -72 96l20 19c60 -75 142 -168 238 -214v-5zM871 186v-5c-96 -46 -178 -139 -238 -214l-20 19c23 33 42 65 72 96c9 9 14 16 14 24c0 10 -8 14 -26 14h-618v66h816'], + 0x2965: [662,156,685,57,629,'610 102l19 -20c-75 -60 -168 -142 -214 -238h-5v818h66v-620c0 -18 4 -26 14 -26c8 0 15 5 24 14c31 30 63 49 96 72zM276 -156h-5c-46 96 -139 178 -214 238l19 20c33 -23 65 -42 96 -72c9 -9 16 -14 24 -14c10 0 14 8 14 26v620h66v-818'], + 0x2966: [539,-120,926,55,871,'861 320h-806v5c96 46 178 139 238 214l20 -19c-23 -33 -42 -65 -72 -96c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h608v-66zM871 120h-806v66h608c18 0 26 4 26 14c0 8 -5 14 -13 24c-19 22 -28 35 -39 51l21 17c49 -55 114 -121 203 -167v-5'], + 0x2967: [386,33,926,55,871,'861 320h-608c-18 0 -26 -4 -26 -14c0 -8 5 -14 13 -24c19 -22 28 -35 39 -51l-21 -17c-49 55 -114 121 -203 167v5h806v-66zM871 186v-5c-96 -46 -178 -139 -238 -214l-20 19c23 33 42 65 72 96c9 9 14 16 14 24c0 10 -8 14 -26 14h-608v66h806'], + 0x2968: [539,-120,926,55,871,'871 320h-806v66h608c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -54 63 -77 96l20 19c60 -75 147 -168 243 -214v-5zM861 120h-806v5c89 46 154 112 203 167l21 -17c-11 -16 -20 -29 -39 -51c-8 -10 -13 -16 -13 -24c0 -10 8 -14 26 -14h608v-66'], + 0x2969: [386,33,926,55,871,'871 386v-5c-89 -46 -154 -112 -203 -167l-21 17c11 16 20 29 39 51c8 10 13 16 13 24c0 10 -8 14 -26 14h-608v66h806zM861 120h-608c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 49 -63 72 -96l-20 -19c-60 75 -142 168 -238 214v5h806v-66'], + 0x296A: [539,-120,926,55,871,'871 320h-816v5c96 46 178 139 238 214l20 -19c-23 -33 -42 -65 -72 -96c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h618v-66zM871 120h-806v66h806v-66'], + 0x296B: [386,33,926,55,871,'871 320h-806v66h806v-66zM871 120h-618c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 49 -63 72 -96l-20 -19c-60 75 -142 168 -238 214v5h816v-66'], + 0x296C: [539,-120,926,55,871,'871 320h-816v66h618c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -49 63 -72 96l20 19c60 -75 142 -168 238 -214v-5zM861 120h-806v66h806v-66'], + 0x296D: [386,33,926,55,871,'861 320h-806v66h806v-66zM871 186v-5c-96 -46 -178 -139 -238 -214l-20 19c23 33 42 65 72 96c9 9 14 16 14 24c0 10 -8 14 -26 14h-618v66h816'], + 0x296E: [662,156,685,57,629,'610 102l19 -20c-75 -60 -168 -142 -214 -238h-5v808h66v-610c0 -18 4 -26 14 -26c8 0 15 5 24 14c31 30 63 49 96 72zM276 -146h-66v610c0 18 -4 26 -14 26c-8 0 -15 -5 -24 -14c-31 -30 -63 -49 -96 -72l-19 20c75 60 168 142 214 238h5v-808'], + 0x296F: [662,156,685,57,629,'629 424l-19 -20c-33 23 -65 42 -96 72c-9 9 -16 14 -24 14c-10 0 -14 -8 -14 -26v-610h-66v808h5c46 -96 139 -178 214 -238zM276 -156h-5c-46 96 -139 178 -214 238l19 20c33 -23 65 -42 96 -72c9 -9 16 -14 24 -14c10 0 14 8 14 26v610h66v-808'], + 0x2970: [386,-120,926,55,871,'55 386h684c73 0 132 -60 132 -133s-59 -133 -132 -133h-684v66h684c36 0 66 30 66 67c0 36 -30 67 -66 67h-684v66'], + 0x2971: [565,-57,926,55,871,'519 515h-369v50h369v-50zM519 370h-369v50h369v-50zM871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-628v66h629c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191'], + 0x2972: [508,-57,926,55,871,'520 508h19c-4 -58 -52 -138 -114 -138c-61 0 -143 88 -189 88c-43 0 -76 -39 -86 -88h-20c3 69 56 138 117 138s144 -88 189 -88c44 0 74 39 84 88zM871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-628v66h629 c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191'], + 0x2973: [449,2,926,55,871,'871 220h-629c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h628v-66zM776 136h20c-3 -69 -56 -138 -117 -138 s-144 88 -189 88c-44 0 -74 -39 -84 -88h-19c4 58 52 138 114 138c61 0 143 -88 189 -88c43 0 76 39 86 88'], + 0x2974: [449,2,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-629v66h628c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191zM519 136h20c-3 -69 -56 -138 -117 -138 s-144 88 -189 88c-44 0 -74 -39 -84 -88h-19c4 58 52 138 114 138c61 0 143 -88 189 -88c43 0 76 39 86 88'], + 0x2975: [449,141,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-629v66h628c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191zM519 136h20c-3 -69 -56 -138 -117 -138 s-144 88 -189 88c-44 0 -74 -39 -84 -88h-19c4 58 52 138 114 138c61 0 143 -88 189 -88c43 0 76 39 86 88zM519 -3h20c-3 -69 -56 -138 -117 -138s-144 88 -189 88c-44 0 -74 -39 -84 -88h-19c4 58 52 138 114 138c61 0 143 -88 189 -88c43 0 76 39 86 88'], + 0x2976: [607,283,685,64,621,'621 50l-557 274v10l557 273v-67l-421 -211l421 -212v-67zM621 -120h-368c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 116 237 191l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25 c0 -10 16 -22 26 -22h369v-66'], + 0x2977: [532,26,926,45,871,'871 -26l-500 246h-139c-21 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h138l500 246v-65l-355 -181h315v-66 h-316l356 -181v-65'], + 0x2978: [608,282,685,64,621,'621 324l-557 -273v67l421 211l-421 212v67l557 -274v-10zM620 -81v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-368v66h369c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19 c65 -75 141 -151 237 -191'], + 0x2979: [627,262,685,64,621,'621 161h-290c-159 0 -267 86 -267 234s110 232 270 232h287v-66h-287c-114 0 -204 -59 -204 -166s91 -168 205 -168h286v-66zM620 -61v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-368v66h369c10 0 26 12 26 22 c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191'], + 0x297A: [532,26,926,45,871,'871 -26h-290c-147 0 -251 112 -265 246h-84c-21 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 50 -54 72 -87l-20 -19c-65 75 -131 141 -227 181v10c96 41 162 105 228 181l20 -19c-23 -33 -42 -55 -72 -86c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h83 c15 133 120 246 268 246h287v-66h-287c-103 0 -186 -86 -202 -180h449v-66h-449c16 -95 100 -180 203 -180h286v-66'], + 0x297B: [627,262,685,63,620,'63 627h287c160 0 270 -84 270 -232s-108 -234 -267 -234h-290v66h286c114 0 205 61 205 168s-90 166 -204 166h-287v66zM620 -99h-368c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 116 237 191 l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25c0 -10 16 -22 26 -22h369v-66'], + 0x297C: [511,5,926,135,791,'791 220h-510c-38 0 -80 -21 -80 -78c0 -53 41 -81 80 -81v-66c-63 0 -146 49 -146 147c0 50 22 87 52 111c-30 24 -52 61 -52 111c0 98 83 147 146 147v-66c-39 0 -80 -28 -80 -81c0 -55 43 -78 80 -78h510v-66'], + 0x297D: [511,5,926,135,791,'645 445v66c63 0 146 -49 146 -147c0 -50 -22 -87 -52 -111c30 -24 52 -61 52 -111c0 -98 -83 -147 -146 -147v66c39 0 80 28 80 81c0 55 -43 78 -80 78h-510v66h510c38 0 80 21 80 78c0 53 -41 81 -80 81'], + 0x297E: [581,75,685,84,600,'600 435h-66c0 39 -28 80 -81 80c-55 0 -78 -43 -78 -80v-510h-66v510c0 38 -21 80 -78 80c-53 0 -81 -41 -81 -80h-66c0 63 49 146 147 146c50 0 87 -22 111 -52c24 30 61 52 111 52c98 0 147 -83 147 -146'], + 0x297F: [581,75,685,84,600,'534 71h66c0 -63 -49 -146 -147 -146c-50 0 -87 22 -111 52c-24 -30 -61 -52 -111 -52c-98 0 -147 83 -147 146h66c0 -39 28 -80 81 -80c55 0 78 43 78 80v510h66v-510c0 -38 21 -80 78 -80c53 0 81 41 81 80'], + 0xE0B4: [556,-220,313,55,258,'258 220h-39c-105 0 -164 80 -164 168s60 168 165 168h38v-66h-38c-62 0 -99 -47 -99 -102c0 -46 30 -102 101 -102h36v-66'], + 0xE0B5: [556,-220,313,55,258,'55 556h39c105 0 164 -80 164 -168s-60 -168 -165 -168h-38v66h38c62 0 99 47 99 102c0 46 -30 102 -101 102h-36v66'], + 0xE0B6: [449,-57,0,30,124,'124 220h-28v-163h-66v392h66v-163h28v-66'], + 0xE112: [662,156,926,55,872,'865 662l7 -7c-28 -69 -37 -142 -37 -214c0 -30 2 -60 4 -88l-29 -2c-7 39 -10 87 -10 126c0 14 0 21 -7 29c-4 2 -10 5 -15 5c-6 0 -12 -3 -18 -9l-92 -92l-47 47l91 90c7 7 10 14 10 20s-2 11 -6 13c-5 7 -16 10 -29 10c-43 1 -86 3 -126 10v29c29 -3 59 -4 87 -4 c74 0 147 9 217 37zM618 360l-91 -91l-46 47l90 91zM476 218l-91 -91l-46 47l90 90zM335 77l-90 -90l-47 46l90 91zM193 -65l-91 -91l-47 46l91 92'], + 0xE113: [662,156,926,55,872,'476 288l-47 -46l-90 90l46 47zM618 146l-47 -47l-90 91l46 47zM193 571l-47 -47l-91 92l47 46zM335 429l-47 -47l-90 91l47 46zM872 -149l-7 -7c-70 28 -143 37 -217 37c-28 0 -58 -1 -87 -4v29c40 7 83 9 126 10c13 0 24 3 29 10c4 2 6 7 6 13s-3 13 -10 20l-91 90 l47 47l92 -92c6 -6 12 -9 18 -9c5 0 11 3 15 5c7 8 7 15 7 29c0 39 3 87 10 126l29 -2c-2 -28 -4 -58 -4 -88c0 -72 9 -145 37 -214'], + 0xE114: [662,156,926,54,871,'365 629v-29c-40 -7 -83 -9 -126 -10c-13 0 -24 -3 -29 -10c-4 -2 -6 -7 -6 -13s3 -13 10 -20l91 -90l-47 -47l-92 92c-6 6 -12 9 -18 9c-5 0 -11 -3 -15 -5c-7 -8 -7 -15 -7 -29c0 -39 -3 -87 -10 -126l-29 2c2 28 4 58 4 88c0 72 -9 145 -37 214l7 7 c70 -28 143 -37 217 -37c28 0 58 1 87 4zM728 33l-47 -46l-90 90l47 47zM871 -110l-47 -46l-91 91l47 47zM445 316l-46 -47l-91 91l47 47zM587 174l-46 -47l-91 91l47 46'], + 0xE115: [662,156,926,54,871,'871 616l-91 -92l-47 47l91 91zM728 473l-90 -91l-47 47l90 90zM587 332l-90 -90l-47 46l91 91zM445 190l-90 -91l-47 47l91 91zM365 -94v-29c-29 3 -59 4 -87 4c-74 0 -147 -9 -217 -37l-7 7c28 69 37 142 37 214c0 30 -2 60 -4 88l29 2c7 -39 10 -87 10 -126 c0 -14 0 -21 7 -29c4 -2 10 -5 15 -5c6 0 12 3 18 9l92 92l47 -47l-91 -90c-7 -7 -10 -14 -10 -20s2 -11 6 -13c5 -7 16 -10 29 -10c43 -1 86 -3 126 -10'], + 0xE11A: [662,156,511,59,451,'451 425l-19 -20c-33 23 -65 51 -96 81c-9 9 -20 14 -28 14c-10 0 -17 -4 -17 -14c0 -20 -16 -31 -36 -31s-36 11 -36 31c0 11 -9 15 -19 15c-9 0 -15 -4 -25 -14c-28 -29 -64 -60 -97 -82l-19 20c75 65 151 141 191 237h10c41 -96 115 -171 191 -237zM292 369 c0 -20 -16 -37 -36 -37c-21 0 -37 17 -37 37s16 36 37 36c20 0 36 -16 36 -36zM292 247c0 -19 -16 -36 -36 -36c-21 0 -37 17 -37 36c0 20 16 37 37 37c20 0 36 -17 36 -37zM291 125c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM292 3 c0 -20 -16 -37 -36 -37c-21 0 -37 17 -37 37c0 19 16 36 37 36c20 0 36 -17 36 -36zM292 -120c0 -20 -16 -36 -36 -36c-21 0 -37 16 -37 36s16 37 37 37c20 0 36 -17 36 -37'], + 0xE11B: [662,156,511,59,451,'292 626c0 -20 -16 -37 -36 -37c-21 0 -37 17 -37 37s16 36 37 36c20 0 36 -16 36 -36zM292 503c0 -19 -16 -36 -36 -36c-21 0 -37 17 -37 36c0 20 16 37 37 37c20 0 36 -17 36 -37zM291 381c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM292 259 c0 -20 -16 -37 -36 -37c-21 0 -37 17 -37 37c0 19 16 36 37 36c20 0 36 -17 36 -36zM292 137c0 -20 -16 -36 -36 -36c-21 0 -37 16 -37 36s16 37 37 37c20 0 36 -17 36 -37zM432 101l19 -20c-75 -65 -151 -141 -191 -237h-10c-41 96 -115 171 -191 237l19 20 c33 -23 65 -51 96 -81c9 -9 20 -14 28 -14c10 0 17 4 17 14c0 20 16 31 36 31s36 -11 36 -31c0 -11 9 -15 19 -15c9 0 15 4 25 14c28 29 64 60 97 82'], + 0xE11C: [662,156,926,54,872,'865 662l7 -7c-27 -68 -36 -142 -36 -214c0 -30 2 -60 4 -90l-28 -1c-9 52 -3 162 -31 162c-4 0 -6 -2 -14 -8c-5 -4 -16 -7 -25 -7c-19 0 -35 16 -35 35c0 24 16 22 16 36c0 15 -14 22 -35 22h-15c-36 0 -77 3 -111 10l1 28c29 -2 60 -4 90 -4c72 0 145 11 212 38z M686 439c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM593 347c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM499 253c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM405 159c0 -20 -16 -36 -36 -36 s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM312 66c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM219 -27c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM126 -120c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36'], + 0xE11D: [662,156,926,54,872,'686 67c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM872 -149l-7 -7c-67 27 -140 38 -212 38c-30 0 -61 -2 -90 -4l-1 28c34 7 75 10 111 10h15c21 0 35 7 35 22c0 14 -16 12 -16 36c0 19 16 35 35 35c9 0 20 -3 25 -7c8 -6 10 -8 14 -8 c17 0 20 41 22 84c1 28 5 58 9 78l28 -1c-2 -30 -4 -60 -4 -90c0 -72 9 -146 36 -214zM126 626c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM219 533c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM312 440c0 -20 -16 -36 -36 -36 s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM405 347c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM499 253c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM593 159c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36'], + 0xE11E: [662,156,926,54,872,'405 347c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM499 253c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM593 159c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM686 66c0 -20 -16 -36 -36 -36 s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM779 -27c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM872 -120c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM363 628l1 -28c-34 -7 -75 -10 -111 -10h-15c-21 0 -35 -7 -35 -22 c0 -14 16 -12 16 -36c0 -19 -16 -35 -35 -35c-9 0 -20 3 -25 7c-8 6 -10 8 -14 8c-17 0 -20 -41 -22 -84c-1 -28 -5 -58 -9 -78l-28 1c2 30 4 60 4 90c0 72 -9 146 -36 214l7 7c67 -27 140 -38 212 -38c30 0 61 2 90 4zM312 439c0 -20 -16 -36 -36 -36s-36 16 -36 36 s16 36 36 36s36 -16 36 -36'], + 0xE11F: [662,156,926,54,872,'872 626c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM779 533c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM686 440c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM593 347c0 -20 -16 -36 -36 -36 s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM499 253c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM405 159c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM312 67c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36z M364 -94l-1 -28c-29 2 -60 4 -90 4c-72 0 -145 -11 -212 -38l-7 7c27 68 36 142 36 214c0 30 -2 60 -4 90l28 1c6 -21 9 -49 10 -78c2 -43 4 -84 21 -84c4 0 6 2 14 8c5 4 16 7 25 7c19 0 35 -16 35 -35c0 -24 -16 -22 -16 -36c0 -15 14 -22 35 -22h15c36 0 77 -3 111 -10'], + 0xE120: [411,-94,511,220,293,'292 375c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM293 253c0 -20 -16 -37 -36 -37c-21 0 -37 17 -37 37c0 19 16 36 37 36c20 0 36 -17 36 -36zM293 130c0 -20 -16 -36 -36 -36c-21 0 -37 16 -37 36s16 37 37 37c20 0 36 -17 36 -37'], + 0xE121: [290,-217,311,-3,314,'314 253c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM192 254c0 -21 -17 -37 -36 -37c-20 0 -37 16 -37 37c0 20 17 36 37 36c19 0 36 -16 36 -36zM70 254c0 -21 -17 -37 -37 -37s-36 16 -36 37c0 20 16 36 36 36s37 -16 37 -36'], + 0xE122: [382,-123,367,54,313,'126 346c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM219 253c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM313 159c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36'], + 0xE123: [383,-124,367,54,313,'313 347c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM219 253c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM126 160c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36'], + 0xE124: [662,156,511,59,451,'451 425l-19 -20c-33 23 -65 51 -96 81c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-118h-66v119c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -64 -60 -97 -82l-19 20c75 65 151 141 191 237h10c41 -96 115 -171 191 -237zM292 251c0 -19 -16 -36 -36 -36 c-21 0 -37 17 -37 36c0 20 16 37 37 37c20 0 36 -17 36 -37zM288 -15h-66v162h66v-162zM292 -120c0 -19 -16 -36 -36 -36c-21 0 -37 17 -37 36c0 20 16 37 37 37c20 0 36 -17 36 -37'], + 0xE125: [662,156,511,59,451,'292 626c0 -20 -16 -37 -36 -37c-21 0 -37 17 -37 37c0 19 16 36 37 36c20 0 36 -17 36 -36zM288 359h-66v162h66v-162zM292 255c0 -20 -16 -37 -36 -37c-21 0 -37 17 -37 37c0 19 16 36 37 36c20 0 36 -17 36 -36zM432 101l19 -20c-75 -65 -151 -141 -191 -237h-10 c-41 96 -115 171 -191 237l19 20c33 -23 65 -51 96 -81c9 -9 20 -14 28 -14c10 0 20 8 20 26v118h66v-119c0 -10 12 -26 22 -26c9 0 15 4 25 14c28 29 64 60 97 82'], + 0xE126: [449,-57,926,54,872,'872 254c0 -21 -17 -37 -36 -37c-20 0 -37 16 -37 37c0 20 17 36 37 36c19 0 36 -16 36 -36zM731 220h-162v66h162v-66zM501 254c0 -21 -17 -37 -36 -37c-20 0 -37 16 -37 37c0 20 17 36 37 36c19 0 36 -16 36 -36zM360 220h-119c-10 0 -26 -12 -26 -22 c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 171 115 237 191l20 -19c-23 -33 -51 -65 -81 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h118v-66'], + 0xE127: [449,-57,926,54,872,'872 258v-10c-96 -41 -171 -115 -237 -191l-20 19c23 33 51 65 81 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-118v66h119c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191zM498 254c0 -21 -17 -37 -37 -37c-19 0 -36 16 -36 37 c0 20 17 36 36 36c20 0 37 -16 37 -36zM357 220h-162v66h162v-66zM127 254c0 -21 -17 -37 -37 -37c-19 0 -36 16 -36 37c0 20 17 36 36 36c20 0 37 -16 37 -36'], + 0xE128: [662,155,926,54,872,'865 662l7 -7c-27 -68 -36 -140 -36 -212c0 -30 2 -61 4 -91h-28c-7 39 -10 82 -11 125c0 17 -7 35 -23 35c-6 0 -13 -3 -20 -10l-86 -86l-47 47l87 87c4 4 7 13 7 21c0 18 -13 20 -32 20c-40 0 -86 3 -125 11v28c29 -2 59 -4 90 -4c72 0 146 9 213 36zM619 374 c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM540 285l-116 -116l-46 46l116 116zM372 126c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM293 37l-115 -114l-46 46l114 115zM126 -119c0 -20 -16 -36 -36 -36s-36 16 -36 36 s16 36 36 36s36 -16 36 -36'], + 0xE129: [662,156,926,55,872,'127 626c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM294 470l-47 -47l-114 115l46 46zM541 222l-46 -46l-116 116l46 46zM620 133c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM372 380c0 -20 -16 -36 -36 -36s-36 16 -36 36 s16 36 36 36s36 -16 36 -36zM872 -149l-7 -7c-68 27 -140 36 -212 36c-30 0 -61 -2 -91 -4v28c39 7 82 10 125 11c17 0 35 7 35 23c0 6 -3 13 -10 20l-86 86l47 47l87 -87c4 -4 13 -7 21 -7c18 0 20 13 20 32c0 40 3 86 11 125h28c-2 -29 -4 -59 -4 -90 c0 -72 9 -146 36 -213'], + 0xE12A: [662,156,926,54,871,'364 630v-28c-39 -7 -82 -10 -125 -11c-17 0 -35 -7 -35 -23c0 -6 3 -13 10 -20l86 -86l-47 -47l-87 87c-4 4 -13 7 -21 7c-18 0 -20 -13 -20 -32c0 -40 -3 -86 -11 -125h-28c2 29 4 59 4 90c0 72 -9 146 -36 213l7 7c68 -27 140 -36 212 -36c30 0 61 2 91 4zM626 126 c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM378 373c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM547 214l-46 -46l-116 116l46 46zM793 -32l-46 -46l-115 114l47 47zM871 -120c0 -20 -16 -36 -36 -36s-36 16 -36 36 s16 36 36 36s36 -16 36 -36'], + 0xE12B: [661,156,926,54,872,'872 625c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM794 537l-114 -115l-47 47l115 114zM626 380c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM548 291l-116 -116l-46 46l116 116zM379 132c0 -20 -16 -36 -36 -36 s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM364 -96v-28c-29 2 -59 4 -90 4c-72 0 -146 -9 -213 -36l-7 7c27 68 36 140 36 212c0 30 -2 61 -4 91h28c7 -39 10 -82 11 -125c0 -17 7 -35 23 -35c6 0 13 3 20 10l86 86l47 -47l-87 -87c-4 -4 -7 -13 -7 -21 c0 -18 13 -20 32 -20c40 0 86 -3 125 -11'], + 0xE12C: [404,-101,511,220,293,'289 242h-66v162h66v-162zM293 137c0 -19 -16 -36 -36 -36c-21 0 -37 17 -37 36c0 20 16 37 37 37c20 0 36 -17 36 -37'], + 0xE12D: [403,-100,511,220,293,'293 367c0 -20 -16 -37 -36 -37c-21 0 -37 17 -37 37c0 19 16 36 37 36c20 0 36 -17 36 -36zM289 100h-66v162h66v-162'], + 0xE12E: [290,-217,371,14,317,'317 254c0 -21 -17 -37 -36 -37c-20 0 -37 16 -37 37c0 20 17 36 37 36c19 0 36 -16 36 -36zM176 220h-162v66h162v-66'], + 0xE12F: [290,-217,371,54,357,'357 220h-162v66h162v-66zM127 254c0 -21 -17 -37 -37 -37c-19 0 -36 16 -36 37c0 20 17 36 36 36c20 0 37 -16 37 -36'], + 0xE130: [373,-134,379,70,309,'231 258l-46 -46l-115 114l47 47zM309 170c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36'], + 0xE131: [373,-134,379,70,309,'142 337c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM309 181l-47 -47l-114 115l46 46'], + 0xE132: [373,-134,379,70,309,'309 326l-115 -114l-46 46l114 115zM142 170c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36'], + 0xE133: [373,-134,379,70,309,'309 337c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM231 249l-114 -115l-47 47l115 114'], + 0xE134: [486,-20,315,0,315,'315 420h-315v66h315v-66zM315 220h-315v66h315v-66zM315 20h-315v66h315v-66'], + 0xE135: [405,-101,926,230,696,'696 101h-66v304h66v-304zM496 101h-66v304h66v-304zM296 101h-66v304h66v-304'], + 0xE136: [541,35,315,0,315,'315 475h-315v66h315v-66zM315 305h-315v66h315v-66zM315 135h-315v66h315v-66zM315 -35h-315v66h315v-66'], + 0xE137: [405,-101,1033,229,805,'805 101h-66v304h66v-304zM635 101h-66v304h66v-304zM465 101h-66v304h66v-304zM295 101h-66v304h66v-304'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Arrows/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Bold/Main.js new file mode 100644 index 0000000..d35b37a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Bold/Main.js @@ -0,0 +1,86 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_DoubleStruck-bold'] = { + directory: 'DoubleStruck/Bold', + family: 'STIXMathJax_DoubleStruck', + weight: 'bold', + id: 'STIXWEBDOUBLESTRUCKB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2102: [691,19,727,45,672,'626 171l46 -48c-85 -94 -159 -142 -289 -142c-196 0 -338 161 -338 353c0 196 137 357 339 357c109 0 231 -45 283 -147l-46 -47c-73 75 -121 124 -233 124c-45 0 -88 -5 -123 -36v-500c34 -29 79 -34 122 -34c116 0 155 55 239 120zM195 128v414 c-56 -55 -80 -131 -80 -208s26 -151 80 -206'], + 0x210D: [676,0,768,75,693,'693 0h-220v304h-178v-304h-220v676h220v-302h178v302h220v-676zM623 70v536h-80v-536h80zM225 70v536h-80v-536h80'], + 0x2115: [676,0,738,75,663,'663 0h-181l-335 452h-2v-452h-70v676h178l338 -459h2v459h70v-676zM593 70v30l-374 506h-74v-35l371 -501h77'], + 0x2119: [676,0,700,75,670,'75 676h349c137 0 246 -64 246 -212c0 -151 -108 -210 -246 -210h-129v-254h-220v676zM520 594v-259c57 24 80 62 80 124s-21 110 -80 135zM450 328v273c-17 5 -38 5 -56 5h-99v-282h85c23 0 47 3 70 4zM225 70v536h-80v-536h80'], + 0x211A: [691,64,797,45,747,'727 27l20 -62c-36 -18 -55 -29 -96 -29c-55 0 -97 29 -135 66c-39 -14 -81 -21 -123 -21c-195 0 -348 160 -348 354c0 198 148 356 349 356c196 0 348 -164 348 -357c0 -119 -55 -231 -155 -297c17 -16 39 -31 63 -31c27 0 52 13 77 21zM592 538v-403 c56 53 80 124 80 199c0 76 -28 148 -80 204zM522 105v485c-41 20 -86 31 -132 31c-42 0 -88 -12 -125 -31v-485c36 37 76 63 129 63c57 0 90 -25 128 -63zM195 135v403c-54 -54 -80 -127 -80 -203s28 -145 80 -200zM463 60c-16 24 -40 38 -69 38s-55 -15 -73 -37 c25 -7 50 -10 76 -10c22 0 45 4 66 9'], + 0x211D: [676,0,783,75,758,'758 0h-254l-166 271h-43v-271h-220v676h356c132 0 246 -53 246 -201c0 -77 -32 -141 -103 -176zM527 594v-242c56 22 80 61 80 121c0 54 -25 107 -80 121zM457 347v253c-16 5 -40 6 -56 6h-106v-265h107c14 0 42 1 55 6zM634 70l-128 207l-88 -6l123 -201h93zM225 70 v536h-80v-536h80'], + 0x2124: [691,0,777,52,727,'727 0h-675v70l407 551h-359v70h627v-70l-405 -551h405v-70zM642 621h-96l-408 -551h96'], + 0x213C: [461,11,804,55,759,'714 135l45 -47c-18 -19 -69 -72 -89 -82c-30 -16 -64 -17 -97 -17c-90 0 -172 55 -172 152v250h-58v-391h-200v391h-88v70h667v-70h-121v-271c0 -17 0 -45 7 -61c40 6 46 16 72 44c11 11 22 22 34 32zM471 391v-238c0 -41 19 -82 63 -89c-1 18 -3 37 -3 55v272h-60z M273 70v321h-60v-321h60'], + 0x213D: [486,203,646,23,624,'572 479l52 -43c-75 -63 -145 -134 -212 -205c44 -74 77 -153 77 -240c0 -93 -56 -194 -159 -194c-91 0 -140 61 -140 148c0 62 25 122 56 175c-60 91 -148 152 -223 229l161 137c67 -63 133 -123 188 -197c62 67 131 130 200 190zM179 392l-53 -47l11 -11 c55 -52 113 -102 157 -165c64 -92 85 -185 85 -296c34 34 40 83 40 129c0 152 -120 277 -223 374zM309 -94c0 44 -7 94 -23 136c-17 -35 -26 -63 -26 -102c0 -30 14 -67 47 -73c2 13 2 26 2 39'], + 0x213E: [676,0,497,75,643,'643 606h-348v-606h-220v676h568v-70zM225 70v536h-80v-536h80'], + 0x213F: [676,0,768,75,693,'693 0h-220v606h-178v-606h-220v676h618v-676zM623 70v536h-80v-536h80zM225 70v536h-80v-536h80'], + 0x2140: [773,269,976,36,952,'952 -269h-902v95l290 445l-304 406v96h800v-95h-414l307 -404l-301 -448h524v-95zM615 270l-313 408h-154l306 -409l-297 -443h161'], + 0x1D538: [676,0,787,50,737,'737 0h-231l-67 196h-250l-65 -196h-74l230 676h227zM639 70l-182 536h-84l182 -536h84zM415 266l-101 298h-1l-100 -298h202'], + 0x1D539: [676,0,729,75,669,'75 676h336c120 0 249 -45 249 -186c0 -54 -27 -105 -72 -136c55 -32 81 -91 81 -153c0 -164 -129 -201 -267 -201h-327v676zM519 583v-189c50 18 71 44 71 98c0 43 -29 81 -71 91zM449 389v206c-12 8 -33 11 -47 11h-107v-222h107c8 0 40 0 47 5zM519 303v-221 c59 19 80 56 80 117c0 58 -25 89 -80 104zM449 77v232c-8 5 -38 5 -47 5h-107v-244h107c8 0 41 1 47 7zM225 70v536h-80v-536h80'], + 0x1D53B: [676,0,748,75,703,'75 676h289c199 0 339 -136 339 -337c0 -195 -143 -339 -338 -339h-290v676zM553 543v-409c59 52 80 128 80 205c0 74 -20 155 -80 204zM483 97v480c-25 22 -80 29 -111 29h-77v-536h79c32 0 83 7 109 27zM225 70v536h-80v-536h80'], + 0x1D53C: [676,0,650,75,595,'595 0h-520v676h520v-70h-300v-222h270v-70h-270v-244h300v-70zM225 70v536h-80v-536h80'], + 0x1D53D: [676,0,474,75,595,'595 606h-300v-232h260v-70h-260v-304h-220v676h520v-70zM225 70v536h-80v-536h80'], + 0x1D53E: [691,19,751,45,686,'686 351v-254c-95 -82 -174 -116 -300 -116c-196 0 -341 164 -341 356c0 197 141 354 342 354c142 0 204 -28 297 -135l-50 -49c-76 73 -134 114 -243 114c-39 0 -92 -10 -126 -31v-513c32 -20 87 -26 124 -26c12 0 81 2 81 18v212h-107v70h323zM616 140v141h-76v-199 c25 6 59 39 76 58zM195 123v426c-54 -48 -80 -142 -80 -212c0 -72 27 -163 80 -214'], + 0x1D540: [676,0,380,80,300,'300 0h-220v676h220v-676zM230 70v536h-80v-536h80'], + 0x1D541: [676,19,618,50,548,'548 676v-499c0 -138 -123 -196 -245 -196c-132 0 -211 45 -253 173l65 28c45 -104 70 -130 188 -130c8 0 17 0 25 1v623h220zM478 170v436h-80v-537c43 18 80 51 80 101'], + 0x1D542: [676,0,792,75,767,'767 0h-251l-186 302l-35 -31v-271h-220v676h220v-311l359 311l45 -52l-202 -177zM644 70l-200 331l-61 -53l143 -236l28 -42h90zM225 70v536h-80v-536h80'], + 0x1D543: [676,0,662,70,607,'607 0h-537v676h220v-606h317v-70zM220 70v536h-80v-536h80'], + 0x1D544: [676,0,914,75,839,'839 0h-220v403h-2l-129 -403h-218l-124 367h-1v-367h-35h-35v676h193l190 -549l171 549h210v-676zM769 70v536h-80v-536h80zM404 70l-184 536h-75v-25l177 -511h82'], + 0x1D546: [691,19,787,45,742,'742 334c0 -199 -149 -353 -349 -353c-195 0 -348 160 -348 354c0 199 148 356 349 356c196 0 348 -164 348 -357zM592 538v-403c56 53 80 123 80 199c0 77 -28 148 -80 204zM522 83v507c-40 20 -87 31 -132 31c-41 0 -89 -12 -125 -31v-507c39 -21 88 -32 132 -32 c40 0 90 13 125 32zM195 135v403c-55 -55 -80 -126 -80 -203c0 -76 28 -145 80 -200'], + 0x1D54A: [692,19,702,45,657,'657 545l-48 -50c-85 80 -115 127 -242 127c-42 0 -94 -24 -94 -73c0 -71 103 -99 156 -120c97 -38 220 -106 220 -226c0 -162 -164 -222 -301 -222c-139 0 -208 43 -303 139l51 53c102 -78 113 -122 257 -122c52 0 107 30 107 88c0 113 -377 105 -377 336 c0 151 155 217 286 217c139 0 198 -49 288 -147zM517 90l2 -1c39 22 60 64 60 108c0 184 -376 167 -376 331c0 23 7 45 18 65l-3 2c-38 -22 -65 -66 -65 -110c0 -196 377 -176 377 -335c0 -20 -4 -41 -13 -60'], + 0x1D54B: [676,0,556,25,645,'645 606h-200v-606h-220v606h-200v70h620v-70zM375 70v536h-80v-536h80'], + 0x1D54C: [676,19,738,70,668,'668 676v-475c0 -160 -164 -220 -300 -220c-138 0 -298 61 -298 223v472h220v-604c24 -15 49 -21 77 -21c94 0 231 39 231 154v471h70zM220 88v518h-80v-402c0 -51 32 -98 80 -116'], + 0x1D54D: [676,0,627,17,704,'704 676l-230 -676h-227l-230 676h231l192 -564h1l190 564h73zM381 70l-182 536h-85l183 -536h84'], + 0x1D54E: [676,0,996,17,1015,'1015 676l-155 -676h-239l-107 470h-1l-104 -470h-239l-153 676h223l124 -549h3l126 549h198l124 -549h3l126 549h71zM756 70l-120 536h-81l122 -536h79zM306 70l-121 536h-81l121 -536h81'], + 0x1D54F: [676,0,794,20,769,'769 0h-265l-168 235l-220 -235h-96l274 293l-274 383h267l158 -221l206 221h98l-262 -280zM635 70l-384 536h-96l385 -536h95'], + 0x1D550: [676,0,652,23,739,'739 676l-236 -414v-262h-220v269l-260 407h257l200 -311h2l178 311h79zM433 70v240l-190 296h-93l203 -318v-218h80'], + 0x1D552: [473,14,623,50,563,'563 0h-199v35l-2 1c-41 -38 -84 -50 -139 -50c-92 0 -173 34 -173 139c0 195 313 112 313 192c0 31 -23 86 -60 86c-100 0 -116 -42 -182 -103l-52 47c62 92 153 126 261 126c130 0 233 -42 233 -189v-284zM493 70v201c0 67 -18 110 -87 129l-2 -2 c30 -33 29 -83 29 -125v-203h60zM363 162v63c-35 -18 -77 -13 -113 -26v-142c8 -1 15 -1 23 -1c55 0 90 55 90 106zM180 62v129c-34 -10 -60 -30 -60 -68c0 -34 28 -57 60 -61'], + 0x1D553: [676,14,643,60,593,'260 676v-245c32 30 76 42 119 42c134 0 214 -117 214 -242c0 -127 -72 -245 -210 -245c-46 0 -93 17 -125 50v-36h-198v676h200zM462 374v-299c44 29 61 106 61 156c0 49 -17 115 -61 143zM392 62v335c-9 3 -20 6 -29 6c-55 0 -103 -53 -103 -107v-116 c0 -51 39 -124 97 -124c11 0 24 1 35 6zM190 70v536h-60v-536h60'], + 0x1D554: [473,14,574,50,524,'473 176l51 -37c-9 -14 -17 -28 -25 -43c-42 -75 -111 -110 -196 -110c-145 0 -253 95 -253 243c0 149 108 244 254 244c79 0 156 -34 196 -104c7 -13 15 -26 24 -39l-53 -42c-56 69 -63 115 -166 115c-19 0 -37 -4 -54 -13v-319c15 -10 30 -15 48 -15 c114 0 116 50 174 120zM181 86v289c-48 -30 -61 -92 -61 -145s14 -113 61 -144'], + 0x1D555: [676,14,643,50,583,'583 0h-198v36c-32 -33 -79 -50 -125 -50c-138 0 -210 118 -210 245c0 126 79 242 214 242c43 0 88 -12 119 -42v245h200v-676zM513 70v536h-60v-536h60zM383 180v116c0 54 -48 107 -103 107c-11 0 -29 -2 -29 -5v-335c11 -4 23 -7 35 -7c58 0 97 73 97 124zM181 76v297 c-43 -27 -61 -94 -61 -142c0 -52 14 -124 61 -155'], + 0x1D556: [473,14,573,50,523,'523 193h-272v-126c13 -8 34 -11 48 -11c95 0 112 32 178 87l42 -52c-58 -69 -125 -105 -216 -105c-145 0 -253 94 -253 243s108 244 254 244c113 0 219 -77 219 -197v-83zM453 263v23c0 39 -25 80 -60 97v-120h60zM323 263v135c-6 5 -29 5 -35 5c-8 0 -30 -1 -37 -7 v-133h72zM181 86v289c-47 -30 -61 -93 -61 -145s14 -114 61 -144'], + 0x1D557: [676,0,474,25,536,'536 624l-35 -64c-44 29 -75 46 -129 46c-14 0 -29 -2 -43 -5v-150h126v-70h-126v-381h-200v381h-104v70h104v28c0 133 109 197 231 197c62 0 127 -11 176 -52zM259 70v522c-38 -24 -60 -70 -60 -114v-408h60'], + 0x1D558: [473,205,643,50,583,'583 461v-475c0 -137 -152 -191 -267 -191c-96 0 -175 15 -238 94l56 53c8 -6 13 -14 19 -21c33 -37 101 -56 150 -56c20 0 60 1 80 9v162c-30 -36 -78 -50 -123 -50c-138 0 -210 118 -210 245c0 124 81 242 214 242c43 0 87 -12 119 -42v30h200zM513 -13v404h-60v-505 c39 20 60 57 60 101zM383 180v116c0 54 -48 107 -103 107c-10 0 -20 -1 -29 -3v-337c11 -5 23 -7 35 -7c58 0 97 73 97 124zM181 75v298c-44 -27 -61 -93 -61 -142s17 -127 61 -156'], + 0x1D559: [676,0,624,60,564,'564 0h-200v407c-79 -13 -104 -71 -104 -146v-261h-200v676h200v-253h2c33 40 81 50 131 50c100 0 171 -64 171 -166v-307zM494 70v239c0 37 -21 80 -60 89v-328h60zM190 70v536h-60v-536h60'], + 0x1D55A: [691,0,330,65,265,'265 507h-200v184h200v-184zM195 577v44h-60v-44h60zM265 0h-200v461h200v-461zM195 70v321h-60v-321h60'], + 0x1D55B: [691,205,371,-20,311,'311 507h-200v184h200v-184zM241 577v44h-60v-44h60zM311 461v-467c0 -133 -109 -199 -231 -199c-34 0 -68 7 -100 18l21 69c23 -12 48 -17 73 -17c11 0 28 0 37 4v592h200zM241 -5v396h-60v-510c48 17 60 68 60 114'], + 0x1D55C: [676,0,646,60,621,'621 0h-230l-124 196l-7 -5v-191h-200v676h200v-400l276 203l41 -57l-153 -112zM493 70l-126 199l-43 -32l105 -167h64zM190 70v536h-60v-536h60'], + 0x1D55D: [676,0,325,60,265,'265 0h-205v623l161 53h44v-676zM195 70v525l-65 -23v-502h65'], + 0x1D55E: [473,0,908,60,848,'848 0h-200v407c-84 -6 -94 -100 -94 -166v-241h-200v407c-83 -4 -94 -101 -94 -166v-241h-200v461h200v-38h1c33 39 73 50 123 50c54 0 114 -23 144 -70h3c40 52 83 70 147 70c100 0 170 -64 170 -166v-307zM778 70v238c0 39 -21 78 -60 89v-327h60zM484 70v238 c0 33 -24 83 -60 89v-327h60zM190 70v321h-60v-321h60'], + 0x1D55F: [473,0,624,60,564,'564 0h-200v407c-82 0 -104 -101 -104 -166v-241h-200v461h200v-38h2c33 38 81 50 130 50c100 0 172 -64 172 -166v-307zM494 70v240c0 38 -21 79 -60 89v-329h60zM190 70v321h-60v-321h60'], + 0x1D560: [473,14,598,45,553,'553 230c0 -149 -108 -244 -254 -244c-145 0 -254 94 -254 243s108 244 254 244c145 0 254 -94 254 -243zM422 363v-267c42 36 61 77 61 133c0 53 -18 102 -61 134zM352 63v334c-17 3 -35 6 -52 6c-18 0 -36 -3 -54 -6v-334c15 -6 38 -7 54 -7c17 0 36 2 52 7zM176 96 v267c-42 -36 -61 -77 -61 -133c0 -53 18 -102 61 -134'], + 0x1D561: [473,205,643,60,593,'259 431h1c31 30 76 42 119 42c145 0 214 -107 214 -242c0 -127 -72 -245 -210 -245c-48 0 -89 13 -121 49h-2v-240h-200v666h199v-30zM462 373v-297c44 33 61 102 61 155c0 48 -18 115 -61 142zM392 62v338c-9 3 -20 3 -29 3c-55 0 -103 -53 -103 -107v-116 c0 -51 39 -124 97 -124c10 0 25 1 35 6zM190 -135v526h-60v-526h60'], + 0x1D562: [473,205,643,50,583,'583 -205h-200v240h-2c-32 -36 -73 -49 -121 -49c-138 0 -210 118 -210 245c0 135 69 242 214 242c43 0 88 -12 119 -42h1v30h199v-666zM513 -135v526h-60v-526h60zM383 180v116c0 54 -48 107 -103 107c-9 0 -20 0 -29 -3v-338c10 -5 25 -6 35 -6c58 0 97 73 97 124z M181 76v297c-43 -27 -61 -94 -61 -142c0 -53 17 -122 61 -155'], + 0x1D563: [473,0,339,60,445,'445 470v-68c-7 1 -15 1 -23 1h-23c-78 -1 -139 -110 -139 -179v-224h-200v461h200v-62h2c31 46 87 74 143 74c13 0 27 -2 40 -3zM190 70v321h-60v-321h60'], + 0x1D564: [473,14,549,52,497,'496 369l-46 -47c-57 43 -67 81 -152 81c-17 0 -35 -9 -35 -28c0 -39 46 -52 76 -65c73 -32 158 -71 158 -164c0 -119 -132 -160 -229 -160c-50 0 -96 8 -140 34c-32 18 -51 45 -76 70l52 52c55 -55 76 -86 164 -86c24 0 41 13 41 38c0 61 -234 60 -234 218 c0 111 113 161 209 161c99 0 151 -29 212 -104zM371 71l4 -1c31 16 52 38 52 74c0 108 -234 104 -234 214c0 12 3 23 6 34l-1 1c-34 -19 -53 -39 -53 -79c0 -105 234 -107 234 -204c0 -13 -3 -27 -8 -39'], + 0x1D565: [676,14,446,25,411,'411 94v-70c-42 -18 -86 -38 -134 -38c-154 0 -162 63 -162 197v198h-90v70h90v174l161 51h44v-225h86v-70h-86v-320c31 8 62 19 91 33zM250 56v539l-65 -21v-441c0 -48 19 -74 65 -77'], + 0x1D566: [461,16,619,55,559,'559 0h-200v38h-2c-33 -38 -81 -54 -130 -54c-100 0 -172 68 -172 170v307h200v-407c82 0 104 101 104 166v241h200v-461zM489 70v321h-60v-321h60zM185 62v329h-60v-240c0 -38 21 -79 60 -89'], + 0x1D567: [461,0,494,6,544,'544 461l-160 -461h-64h-94h-57l-163 461h210l127 -362h2l125 362h74zM280 70l-113 321h-63l113 -321h63'], + 0x1D568: [461,0,786,22,789,'789 461l-103 -461h-228l-52 240h-3l-52 -240h-229l-100 461h200l78 -356h2l77 356h179l78 -356h2l78 356h73zM572 70l-70 321h-56l69 -321h57zM236 70l-70 321h-57l70 -321h57'], + 0x1D569: [461,0,660,25,635,'635 0h-252l-109 140l-151 -140h-98l208 193l-208 268h252l103 -132l143 132h98l-200 -185zM492 70l-248 321h-77l253 -321h72'], + 0x1D56A: [461,205,471,-9,537,'537 461l-212 -537c-31 -78 -76 -129 -165 -129c-56 0 -114 29 -149 73l43 45c22 -27 72 -48 107 -48c77 0 86 49 110 109l-280 487h228l143 -249h2l97 249h76zM331 126l-150 265h-68l190 -335'], + 0x1D56B: [461,0,513,40,473,'473 0h-433v70l200 321h-182v70h415v-70l-200 -321h200v-70zM391 391h-70l-199 -321h71'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/DoubleStruck/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js new file mode 100644 index 0000000..e56ab07 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_DoubleStruck-bold-italic'] = { + directory: 'DoubleStruck/BoldItalic', + family: 'STIXMathJax_DoubleStruck', + weight: 'bold', + style: 'italic', + id: 'STIXWEBDOUBLESTRUCKBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2102: [685,14,713,35,704,'704 545l-41 -45c-51 77 -115 122 -210 122c-47 0 -99 -2 -134 -38l-137 -502c37 -31 88 -33 134 -33c122 0 181 62 273 128l36 -44c-88 -91 -204 -147 -332 -147c-153 0 -258 100 -258 254c0 236 180 445 423 445c126 0 177 -38 246 -140zM128 116l118 438 c-89 -73 -148 -181 -148 -297c0 -48 11 -97 30 -141'], + 0x210D: [669,0,773,21,808,'808 669l-180 -669h-209l81 300h-189l-81 -300h-209l180 669h209l-80 -299h189l80 299h209zM725 606h-77l-146 -543h77zM327 606h-77l-146 -543h77'], + 0x2115: [669,0,760,27,783,'783 669l-178 -669h-157l-225 485h-2l-129 -485h-65l178 669h155l227 -485h2l129 485h65zM562 86l-240 520h-70l-5 -21l241 -522h69'], + 0x2119: [669,0,497,18,715,'198 669h329c103 0 188 -43 188 -157c0 -169 -116 -262 -279 -262h-142l-67 -250h-209zM652 501c0 32 -12 81 -47 91l-3 -12c-21 -86 -46 -172 -69 -257c75 9 119 112 119 178zM466 319l76 282c-17 5 -39 5 -56 5h-96l-79 -293h99c17 0 38 2 56 6zM324 606h-77l-146 -543 h77'], + 0x211A: [685,74,754,35,734,'639 11l27 -47c-33 -30 -60 -38 -104 -38c-59 0 -94 35 -124 81c-44 -14 -89 -21 -135 -21c-158 0 -268 91 -268 254c0 236 180 445 423 445c161 0 276 -85 276 -254c0 -164 -84 -319 -230 -396c15 -23 37 -46 67 -46c25 0 46 10 68 22zM637 537l-112 -417 c97 62 146 182 146 294c0 43 -10 87 -34 123zM455 104l130 483c-36 23 -89 35 -132 35c-39 0 -93 -6 -128 -23l-135 -506c49 45 84 72 154 72c48 0 82 -24 111 -61zM134 132l113 424c-96 -64 -149 -185 -149 -299c0 -47 10 -86 36 -125zM402 59c-19 25 -42 43 -74 43 c-35 0 -66 -18 -89 -43c25 -6 51 -10 77 -10c29 0 58 4 86 10'], + 0x211D: [669,0,727,18,718,'198 669h332c103 0 188 -43 188 -157c0 -107 -49 -198 -151 -239l96 -273h-212c-8 15 -13 33 -19 49l-72 201h-66l-67 -250h-209zM607 593l-73 -271c81 17 121 103 121 179c0 41 -11 72 -48 92zM469 319l75 282c-18 2 -37 5 -55 5h-99l-79 -293h102c14 0 42 1 56 6z M574 63l-67 192c-26 -5 -53 -5 -80 -5l68 -187h79zM324 606h-77l-146 -543h77'], + 0x2124: [669,0,807,23,837,'837 606l-528 -541v-2h394l-16 -63h-664v63l531 541v2h-346l16 63h613v-63zM753 606h-107l-538 -543h108'], + 0x213C: [449,13,730,32,715,'715 386h-117l-67 -256c-5 -19 -11 -38 -11 -58c0 -8 1 -14 6 -21c17 4 28 11 36 18c11 8 19 17 34 31c13 12 27 25 41 37l41 -45c-22 -21 -84 -79 -108 -90c-33 -15 -70 -15 -105 -15c-70 0 -128 39 -128 114c0 14 3 27 6 40l65 245h-77c-34 -129 -67 -258 -103 -386 h-190c31 129 68 257 102 386h-108v63h683v-63zM535 386h-63l-62 -234c-4 -14 -10 -31 -10 -46c0 -36 25 -56 60 -56l2 1c-3 8 -5 16 -5 24c0 15 3 30 7 44zM267 386h-64l-85 -323h63'], + 0x213F: [669,0,796,35,821,'821 669l-179 -669h-210l166 606h-188l-167 -606h-208l180 669h606zM739 606h-78l-147 -543h80zM341 606h-78l-147 -543h80'], + 0x2145: [669,0,748,18,733,'198 669h289c148 0 246 -102 246 -249c0 -225 -168 -420 -399 -420h-316zM635 534l-111 -412c90 70 146 175 146 290c0 43 -12 85 -35 122zM451 90l130 488c-38 23 -86 28 -130 28h-15h-46l-146 -543h43h16c50 0 105 5 148 27zM324 606h-77l-146 -543h77'], + 0x2146: [699,13,633,45,698,'698 699l-186 -699h-193l9 32h-1c-35 -36 -78 -45 -127 -45c-91 0 -155 70 -155 160c0 157 89 315 263 315c50 0 84 -9 123 -42h1l75 279h191zM618 636h-64l-154 -573h64zM289 393l-91 -340c10 -2 20 -3 30 -3c79 0 126 76 143 144c11 40 27 87 27 130 c0 42 -25 75 -69 75c-11 0 -30 -1 -40 -6zM138 70l83 309c-70 -39 -113 -136 -113 -214c0 -44 5 -60 30 -95'], + 0x2147: [462,13,575,45,540,'451 131l36 -38c-53 -84 -145 -106 -239 -106c-113 0 -203 63 -203 183c0 174 136 292 305 292c90 0 190 -55 190 -155c0 -39 -14 -77 -25 -114h-281l-35 -133c17 -10 37 -10 56 -10c107 0 118 17 196 81zM406 256h60c6 17 11 34 11 52c0 29 -17 49 -40 64zM342 256 l36 135c-11 6 -24 8 -37 8c-14 0 -45 -2 -55 -14l-35 -129h91zM218 372c-64 -41 -110 -126 -110 -202c0 -40 9 -61 31 -93c26 98 51 197 79 295'], + 0x2148: [669,0,379,40,413,'413 669l-49 -180h-193l50 180h192zM332 606h-64l-16 -54h64zM354 449l-121 -449h-193l122 449h192zM273 386h-64l-88 -323h64'], + 0x2149: [669,205,421,-93,455,'455 669l-49 -180h-193l50 180h192zM374 606h-64l-16 -54h64zM398 449l-123 -458c-34 -127 -155 -196 -281 -196c-33 0 -57 6 -87 18l32 57c17 -9 55 -12 74 -12c12 0 24 0 35 4l157 587h193zM318 386h-67l-138 -514c48 23 85 66 99 118'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/DoubleStruck/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Italic/Main.js new file mode 100644 index 0000000..bad1bbf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Italic/Main.js @@ -0,0 +1,43 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_DoubleStruck-italic'] = { + directory: 'DoubleStruck/Italic', + family: 'STIXMathJax_DoubleStruck', + style: 'italic', + id: 'STIXWEBDOUBLESTRUCKI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2102: [666,18,702,35,702,'702 530l-25 -21c-76 77 -99 120 -223 120c-67 0 -131 -10 -186 -52l-132 -501c49 -40 98 -57 161 -57c145 0 193 45 295 131l21 -26c-84 -100 -193 -142 -322 -142c-155 0 -256 87 -256 246c0 240 169 438 415 438c107 0 195 -46 252 -136zM106 103l123 459 c-98 -77 -157 -195 -157 -320c0 -47 4 -100 34 -139'], + 0x210D: [653,0,732,17,767,'767 653l-175 -653h-154l83 309h-266l-84 -309h-154l175 653h154l-81 -307h266l82 307h154zM719 616h-78l-155 -579h78zM298 616h-78l-155 -579h78'], + 0x2115: [653,0,727,25,755,'755 653l-174 -653h-111l-262 528h-4l-142 -528h-37l175 653h112l262 -527h2l142 527h37zM561 70l-271 546h-63l-7 -28l273 -551h59'], + 0x2119: [653,0,687,17,686,'192 653h333c97 0 161 -65 161 -162c0 -55 -20 -118 -56 -160c-55 -64 -142 -84 -223 -84h-170l-66 -247h-154zM605 595l-81 -296c79 24 125 113 125 191c0 44 -11 76 -44 105zM486 293l85 313c-16 7 -40 10 -58 10h-177l-89 -332h159c25 0 56 1 80 9zM298 616h-78 l-155 -579h78'], + 0x211A: [666,71,723,35,713,'606 -19l8 -33c-25 -13 -54 -19 -82 -19c-46 0 -88 32 -110 71c-40 -12 -82 -18 -124 -18c-157 0 -263 83 -263 246c0 239 168 438 415 438c157 0 263 -83 263 -246c0 -173 -90 -338 -253 -406c17 -27 44 -48 77 -48c20 0 50 6 69 15zM641 541l-121 -454 c102 73 156 195 156 319c0 53 -9 89 -35 135zM477 60l136 512c-39 38 -106 57 -159 57c-62 0 -127 -9 -182 -40l-137 -514c16 -15 34 -26 54 -34c34 41 77 62 131 62c57 0 85 -18 119 -61c13 5 26 11 38 18zM107 108l121 454c-101 -75 -156 -195 -156 -320 c0 -49 8 -92 35 -134zM399 30c-23 26 -49 36 -82 36c-35 0 -66 -13 -90 -38c23 -6 46 -9 70 -9c34 0 68 4 102 11'], + 0x211D: [653,0,687,17,686,'192 653h333c98 0 161 -65 161 -162c0 -124 -74 -202 -194 -223l137 -268h-172l-125 264h-90l-71 -264h-154zM604 597l-74 -281c80 26 119 92 119 174c0 40 -13 81 -45 107zM491 309l79 296c-17 6 -36 11 -55 11h-179l-84 -315h159c26 0 55 1 80 8zM567 37l-114 228 c-11 -2 -23 -2 -34 -2c-16 0 -31 1 -46 1l107 -227h87zM298 616h-78l-155 -579h78'], + 0x2124: [653,0,754,7,750,'750 616l-534 -576v-3h429l-9 -37h-629v37l539 577v2h-404l9 37h599v-37zM698 616h-100l-537 -579h103'], + 0x213C: [428,12,635,40,630,'630 391h-119l-74 -268c-7 -26 -14 -52 -14 -79c0 -7 1 -13 4 -19c64 0 90 41 134 79l27 -26c-73 -65 -91 -90 -193 -90c-56 0 -104 34 -104 94c0 18 4 36 9 53l71 256h-84l-106 -391h-141l108 391h-95v37h577v-37zM475 391h-68l-65 -241c-6 -22 -14 -45 -14 -68 c0 -36 23 -52 56 -57l2 2c0 30 5 60 13 89zM252 391h-66l-99 -354h66'], + 0x213F: [653,0,750,30,780,'780 653l-173 -653h-155l165 616h-266l-166 -616h-155l176 653h574zM733 616h-79l-154 -579h79zM312 616h-78l-156 -579h80'], + 0x2145: [653,0,713,17,703,'192 653h251c151 0 260 -86 260 -243c0 -245 -175 -410 -417 -410h-269zM631 539l-114 -430c99 57 149 186 149 296c0 49 -5 93 -35 134zM470 86l129 473c-36 45 -102 57 -156 57h-108l-153 -579h110c62 0 124 17 178 49zM298 616h-78l-156 -579h80'], + 0x2146: [683,11,581,40,634,'634 683l-188 -683h-137l10 48c-39 -43 -82 -59 -140 -59c-89 0 -139 67 -139 152c0 139 88 300 244 300c44 0 102 -17 124 -60h2l83 302h141zM587 646h-67l-168 -609h67zM346 150l29 102c6 21 10 41 10 56c0 48 -31 96 -83 96c-22 0 -45 -1 -65 -10l-98 -356 c15 -13 37 -12 56 -12c70 0 133 60 151 124zM107 56l90 326c-80 -44 -120 -146 -120 -234c0 -27 17 -68 30 -92'], + 0x2147: [441,11,515,40,485,'408 128l28 -21c-58 -75 -118 -118 -216 -118c-109 0 -180 58 -180 170c0 151 122 282 275 282c88 0 170 -53 170 -148c0 -34 -11 -78 -22 -110h-282l-37 -140c21 -12 53 -17 77 -17c95 0 127 37 187 102zM365 220h71c7 20 12 46 12 67c0 33 -13 66 -40 86zM329 220 l47 169c-19 8 -45 15 -66 15c-23 0 -51 -4 -72 -13l-47 -171h138zM110 56l89 324c-70 -32 -122 -150 -122 -223c0 -36 14 -71 33 -101'], + 0x2148: [653,0,293,27,346,'346 653l-36 -135h-142l37 135h141zM299 616h-67l-17 -61h68zM285 428l-118 -428h-140l117 428h141zM238 391h-67l-97 -354h67'], + 0x2149: [653,217,341,-104,394,'394 653l-36 -135h-142l37 135h141zM347 616h-67l-17 -61h68zM329 428l-125 -469c-28 -105 -120 -176 -229 -176c-27 0 -54 5 -79 16l25 33c26 -10 41 -13 69 -13c14 0 29 1 42 7l160 602h137zM280 391h-60l-152 -568c38 18 77 63 88 104'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/DoubleStruck/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Regular/Main.js new file mode 100644 index 0000000..32afeb0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Regular/Main.js @@ -0,0 +1,95 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_DoubleStruck'] = { + directory: 'DoubleStruck/Regular', + family: 'STIXMathJax_DoubleStruck', + id: 'STIXWEBDOUBLESTRUCK', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2102: [676,14,705,45,663,'632 159l31 -31c-77 -93 -167 -142 -289 -142c-198 0 -329 154 -329 346c0 197 128 344 330 344c122 0 209 -49 286 -142l-31 -31c-78 81 -132 129 -251 129c-54 0 -121 -18 -166 -49v-503c37 -30 118 -50 165 -50c118 0 176 48 254 129zM169 118v440 c-47 -68 -80 -142 -80 -226c0 -68 22 -131 59 -187c6 -10 12 -20 21 -27'], + 0x210D: [662,0,718,70,648,'648 0h-166v309h-246v-309h-166v662h166v-309h246v309h166v-662zM604 44v574h-78v-574h78zM192 44v574h-78v-574h78'], + 0x2115: [662,0,698,70,628,'628 0h-134l-378 504h-2v-504h-22h-22v662h135l32 -45l346 -461h1v506h44v-662zM584 44v39l-402 535h-68v-40l401 -534h69'], + 0x2119: [662,0,678,70,628,'70 662h320c129 0 238 -61 238 -203s-106 -206 -237 -206h-155v-253h-166v662zM491 604v-294c59 20 93 88 93 147c0 63 -30 126 -93 147zM447 305v304c-14 7 -43 9 -59 9h-152v-321h145c16 0 51 1 66 8zM192 44v574h-78v-574h78'], + 0x211A: [676,65,765,45,715,'703 -12l6 -44c-28 -4 -55 -9 -83 -9c-65 0 -101 34 -132 69c-34 -12 -72 -18 -113 -18c-197 0 -336 153 -336 346c0 204 134 344 340 344c202 0 330 -147 330 -344c0 -136 -66 -251 -173 -308c25 -25 50 -45 84 -45c26 0 52 5 77 9zM591 548v-429c55 55 80 136 80 213 c0 80 -23 157 -80 216zM547 79v505c-43 35 -112 48 -166 48c-48 0 -130 -17 -168 -48v-505c12 -8 27 -16 44 -23c33 40 73 66 127 66c57 0 94 -31 126 -64c14 6 26 13 37 21zM169 119v429c-57 -59 -80 -136 -80 -216c0 -77 27 -157 80 -213zM460 41c-21 21 -45 37 -79 37 c-33 0 -55 -15 -76 -37c27 -7 54 -11 76 -11c23 0 52 4 79 11'], + 0x211D: [662,0,747,70,712,'712 0h-207l-195 271h-74v-271h-166v662h320c128 0 238 -53 238 -196c0 -88 -46 -155 -131 -181zM491 604v-283c58 24 93 81 93 143c0 68 -33 113 -93 140zM447 320v290c-15 2 -35 8 -50 8h-161v-303h156c18 0 37 3 55 5zM626 44l-175 231c-29 -5 -59 -4 -88 -4l165 -227 h98zM192 44v574h-78v-574h78'], + 0x2124: [662,0,727,50,677,'677 618l-425 -574h416v-44h-618v44l419 574h-369v44h577v-44zM617 618h-94l-420 -574h97'], + 0x213C: [450,12,673,25,645,'645 92l-18 -30c-37 -63 -84 -74 -153 -74c-89 0 -138 61 -138 147v271h-70v-406h-148v406h-93v44h586v-44h-127v-292c0 -22 0 -64 14 -82c63 0 72 34 105 76zM443 37l1 2c-4 25 -4 51 -4 76v291h-60v-258c0 -45 13 -99 63 -111zM222 44v362h-60v-362h60'], + 0x213D: [460,218,540,0,526,'489 459l37 -25l-18 -25c-57 -77 -110 -156 -156 -240c38 -67 70 -154 70 -232c0 -74 -39 -155 -123 -155c-64 0 -106 60 -106 120c0 57 24 118 52 167c-58 132 -162 215 -245 327l136 64c5 -5 10 -11 15 -16c67 -69 124 -146 174 -228c47 79 98 156 154 229 c4 5 7 9 10 14zM342 -164l2 -1c27 31 34 62 34 102c0 154 -141 351 -245 459c-4 4 -8 8 -11 12l-52 -28c6 -8 12 -16 19 -24c109 -128 256 -301 256 -478c0 -14 -1 -28 -3 -42zM272 11h-1c-21 -31 -34 -65 -34 -103c0 -33 19 -80 57 -82c6 18 7 37 7 56 c0 34 -11 101 -29 129'], + 0x213E: [662,0,469,70,567,'567 618h-331v-618h-166v662h497v-44zM192 44v574h-78v-574h78'], + 0x213F: [662,0,718,70,648,'648 0h-166v618h-246v-618h-166v662h578v-662zM604 44v574h-78v-574h78zM192 44v574h-78v-574h78'], + 0x2140: [763,259,923,61,882,'882 -259h-821v58l284 453l-284 453v58h706v-58h-430l279 -453l-284 -453h550v-58zM550 252l-278 453h-141l278 -453l-280 -453h136'], + 0x1D538: [662,0,741,50,691,'691 0h-173l-77 209h-268l-78 -209h-45l241 662h168zM630 44l-202 574h-83l202 -574h83zM425 253l-115 332h-2l-119 -332h236'], + 0x1D539: [662,0,676,70,626,'70 662h282c117 0 256 -35 256 -178c0 -57 -25 -111 -78 -137c64 -26 96 -89 96 -156c0 -149 -108 -191 -238 -191h-318v662zM491 597v-227c51 23 73 54 73 112c0 54 -25 91 -73 115zM447 369v237c-18 7 -40 12 -59 12h-152v-252h145c22 0 44 1 66 3zM491 318v-266 c66 24 91 68 91 137c0 59 -31 115 -91 129zM447 52v267c-22 2 -44 3 -66 3h-145v-278h153c19 0 39 3 58 8zM192 44v574h-78v-574h78'], + 0x1D53B: [662,0,722,70,677,'70 662h278c199 0 329 -130 329 -330c0 -195 -133 -332 -329 -332h-278v662zM553 541v-415c56 41 80 151 80 216c0 77 -23 146 -80 199zM509 99v472c-42 27 -116 47 -166 47h-107v-574h106c49 0 132 19 167 55zM192 44v574h-78v-574h78'], + 0x1D53C: [662,0,622,70,567,'567 0h-497v662h497v-44h-331v-255h299v-44h-299v-275h331v-44zM192 44v574h-78v-574h78'], + 0x1D53D: [662,0,469,70,567,'567 618h-331v-270h265v-44h-265v-304h-166v662h497v-44zM192 44v574h-78v-574h78'], + 0x1D53E: [676,13,706,45,664,'664 534l-32 -32c-69 83 -143 130 -253 130c-52 0 -127 -17 -166 -53v-488c43 -46 106 -60 167 -60c32 0 83 6 109 25v229h-131v44h297v-239c-82 -60 -178 -103 -281 -103c-198 0 -329 154 -329 346c0 197 128 343 330 343c100 0 190 -35 259 -108zM611 118v167h-78v-219 c29 12 51 36 78 52zM169 119v432c-51 -58 -80 -141 -80 -218c0 -80 30 -153 80 -214'], + 0x1D540: [662,0,322,78,244,'244 0h-166v662h166v-662zM200 44v574h-78v-574h78'], + 0x1D541: [662,14,560,40,495,'495 662v-502c0 -139 -124 -174 -240 -174c-121 0 -204 50 -215 178h44c18 -108 83 -134 184 -134c20 0 41 0 61 4v628h166zM451 151v467h-78v-582c50 21 78 61 78 115'], + 0x1D542: [674,0,735,70,729,'729 0h-204l-230 331l-59 -51v-280h-166v662h166v-325l392 337l25 -36l-235 -201zM645 44l-259 363l-57 -49l220 -314h96zM192 44v574h-78v-574h78'], + 0x1D543: [662,0,591,70,571,'571 0h-501v662h166v-618h335v-44zM192 44v574h-78v-574h78'], + 0x1D544: [662,0,855,70,785,'785 0h-166v472h-2l-168 -472h-170l-163 469h-2v-469h-22h-22v662h155l202 -585h3l209 585h146v-662zM741 44v574h-78v-574h78zM393 44l-201 574h-80l19 -61l179 -513h83'], + 0x1D546: [676,14,760,45,715,'715 332c0 -195 -135 -346 -334 -346c-197 0 -336 153 -336 346c0 204 134 344 340 344c202 0 330 -147 330 -344zM591 548v-429c55 55 80 136 80 213c0 80 -23 157 -80 216zM547 79v505c-43 35 -112 48 -166 48c-48 0 -130 -17 -168 -48v-505c41 -29 118 -49 168 -49 c51 0 125 19 166 49zM169 119v429c-57 -59 -80 -136 -80 -216c0 -77 27 -157 80 -213'], + 0x1D54A: [676,14,636,35,597,'597 536l-30 -35c-69 82 -134 131 -248 131c-44 0 -106 -33 -106 -84c0 -154 378 -138 378 -362c0 -141 -148 -200 -268 -200c-127 0 -208 50 -288 144l35 28c72 -81 134 -128 249 -128c57 0 124 35 124 99c0 132 -371 125 -371 346c0 141 115 201 243 201 c127 0 200 -49 282 -140zM464 63l2 -1c46 25 81 70 81 124c0 178 -378 174 -378 348c0 26 8 51 20 74l-1 2c-44 -22 -72 -74 -72 -123c0 -208 371 -182 371 -348c0 -26 -6 -55 -23 -76'], + 0x1D54B: [662,0,527,20,622,'622 618h-218v-618h-166v618h-218v44h602v-44zM360 44v574h-78v-574h78'], + 0x1D54C: [662,14,698,65,633,'633 662v-461c0 -157 -150 -215 -285 -215c-129 0 -283 59 -283 210v466h166v-612c28 -13 85 -20 116 -20c104 0 242 40 242 167v465h44zM187 67v551h-78v-422c0 -66 31 -91 78 -129'], + 0x1D54D: [662,0,568,12,653,'653 662l-236 -662h-169l-236 662h173l211 -584h2l209 584h46zM361 44l-205 574h-83l206 -574h82'], + 0x1D54E: [662,0,920,12,949,'949 662l-178 -662h-142l-147 528h-2l-142 -528h-144l-182 662h170l146 -523h2l141 523h144l145 -523h3l140 523h46zM741 44l-158 574h-81l159 -574h80zM310 44l-161 574h-80l159 -574h82'], + 0x1D54F: [662,0,768,35,733,'733 0h-203l-194 260l-243 -260h-58l275 294l-275 368h203l185 -247l231 247h58l-263 -282zM649 44l-430 574h-97l430 -574h97'], + 0x1D550: [662,0,563,12,685,'685 662l-245 -422v-240h-166v243l-262 419h193l222 -352h2l206 352h50zM396 44v234l-214 340h-91l227 -362v-212h78'], + 0x1D552: [460,10,561,45,506,'506 0h-148v50c-37 -41 -93 -60 -147 -60c-77 0 -166 39 -166 127c0 199 313 107 313 203c0 38 -42 96 -83 96c-83 0 -133 -51 -166 -123l-42 11c47 116 119 156 242 156c111 0 197 -38 197 -163v-297zM462 44v239c0 76 -23 132 -109 132v-2c48 -31 49 -87 49 -138v-231 h60zM358 153v98c-48 -31 -107 -26 -160 -39v-178c7 0 14 -1 20 -1c67 0 140 47 140 120zM154 42v157c-41 -6 -65 -40 -65 -81c0 -37 30 -68 65 -76'], + 0x1D553: [683,10,565,50,524,'198 401h2c31 40 84 59 133 59c128 0 191 -117 191 -232c0 -111 -63 -238 -189 -238c-53 0 -101 11 -134 53h-3v-43h-148v683h148v-282zM420 383v-313c45 36 60 103 60 158c0 53 -13 122 -60 155zM376 49v350c-16 16 -36 17 -55 17c-61 0 -123 -55 -123 -117v-144 c0 -62 55 -121 118 -121c18 0 45 4 60 15zM154 44v595h-60v-595h60'], + 0x1D554: [460,10,520,45,475,'435 158l40 -16c-36 -95 -96 -152 -201 -152c-142 0 -229 98 -229 237c0 138 90 233 229 233c71 0 150 -34 181 -102c6 -14 11 -29 16 -44l-38 -18c-42 79 -67 120 -163 120c-28 0 -53 -7 -77 -22v-338c20 -15 43 -22 68 -22c94 0 137 40 174 124zM149 75v300 c-45 -34 -60 -94 -60 -148c0 -55 14 -117 60 -152'], + 0x1D555: [683,10,574,45,519,'519 0h-148v48h-2c-33 -42 -82 -58 -135 -58c-126 0 -189 127 -189 238c0 115 63 232 191 232c49 0 99 -11 135 -59v282h148v-683zM475 44v595h-60v-595h60zM371 155v144c0 62 -62 117 -123 117c-19 0 -39 -1 -55 -17v-350c15 -11 42 -15 60 -15c63 0 118 59 118 121z M149 70v313c-47 -33 -60 -102 -60 -155c0 -55 15 -122 60 -158'], + 0x1D556: [460,10,523,45,478,'478 199h-285v-148c21 -12 54 -17 77 -17c75 0 119 21 161 84l36 -24c-41 -73 -112 -104 -193 -104c-142 0 -229 98 -229 237c0 138 90 233 229 233c104 0 204 -78 204 -187v-74zM434 243v33c0 41 -24 89 -60 109v-142h60zM330 243v154c-16 11 -40 19 -59 19 c-25 0 -56 -10 -78 -21v-152h137zM149 71v309c-43 -37 -60 -98 -60 -153c0 -56 16 -118 60 -156'], + 0x1D557: [683,0,368,25,431,'431 636l-31 -31c-27 25 -64 34 -100 34c-15 0 -30 -2 -44 -5v-184h85v-44h-85v-406h-148v406h-83v44h83v42c0 122 61 191 186 191c54 0 96 -11 137 -47zM212 44v580c-47 -15 -60 -58 -60 -103v-477h60'], + 0x1D558: [460,218,574,45,519,'519 450v-492c0 -143 -136 -176 -254 -176c-74 0 -175 25 -208 99l43 21c27 -57 126 -77 183 -77c29 0 59 5 88 12v211c-32 -44 -83 -58 -135 -58c-128 0 -191 117 -191 232c0 114 74 238 199 238c55 0 90 -15 127 -55v45h148zM475 -43v449h-60v-556c44 32 60 46 60 107z M371 147v152c0 61 -58 117 -118 117c-16 0 -45 -2 -60 -9v-359c7 -12 51 -14 62 -14c60 0 116 52 116 113zM149 66v313c-45 -36 -60 -102 -60 -157c0 -54 14 -121 60 -156'], + 0x1D559: [683,0,544,55,489,'489 0h-148v416c-4 1 -7 1 -11 1c-84 0 -127 -92 -127 -166v-251h-148v683h148v-292h2c28 45 76 69 129 69c97 0 155 -65 155 -161v-299zM445 44v249c0 47 -13 96 -60 116v-365h60zM159 44v595h-60v-595h60'], + 0x1D55A: [683,0,258,55,203,'203 537h-148v146h148v-146zM159 581v58h-60v-58h60zM203 0h-148v450h148v-450zM159 44v362h-60v-362h60'], + 0x1D55B: [683,217,305,-15,250,'250 537h-143v146h143v-146zM206 581v58h-55v-58h55zM250 450v-491c0 -108 -74 -176 -181 -176c-29 0 -57 5 -84 16l14 42c19 -7 39 -13 59 -13c17 0 34 1 49 9v613h143zM206 -58v464h-55v-559c35 18 55 56 55 95'], + 0x1D55C: [683,0,551,50,539,'539 0h-174l-134 213l-33 -26v-187h-148v683h148v-442l277 218l26 -35l-156 -122zM459 44l-148 231l-45 -35l124 -196h69zM154 44v595h-60v-595h60'], + 0x1D55D: [683,0,258,55,203,'203 0h-148v629l104 54h44v-683zM159 44v591l-60 -31v-560h60'], + 0x1D55E: [460,0,830,55,775,'775 0h-148v416c-4 1 -7 1 -11 1c-85 0 -127 -92 -127 -166v-251h-148v416c-4 1 -7 1 -11 1c-85 0 -127 -92 -127 -166v-251h-148v450h148v-59h2c28 45 77 69 129 69c64 0 120 -30 143 -92c36 58 70 92 143 92c98 0 155 -65 155 -161v-299zM731 44v249 c0 46 -13 97 -60 116v-365h60zM445 44v249c0 46 -13 97 -60 116v-365h60zM159 44v362h-60v-362h60'], + 0x1D55F: [460,0,544,55,489,'489 0h-148v416c-4 1 -7 1 -11 1c-84 0 -127 -92 -127 -166v-251h-148v450h148v-59h2c28 45 76 69 129 69c97 0 155 -65 155 -161v-299zM445 44v249c0 47 -13 96 -60 116v-365h60zM159 44v362h-60v-362h60'], + 0x1D560: [458,12,553,45,508,'508 221c0 -141 -90 -233 -232 -233c-144 0 -231 95 -231 237c0 141 90 233 231 233c144 0 232 -94 232 -237zM404 370v-294c44 37 60 90 60 145s-17 112 -60 149zM360 49v348c-21 13 -60 17 -84 17s-62 -4 -83 -17v-348c21 -13 59 -17 83 -17s63 4 84 17zM149 76v294 c-43 -35 -60 -91 -60 -145c0 -57 16 -111 60 -149'], + 0x1D561: [460,218,574,55,529,'203 400h3c33 42 81 60 134 60c126 0 189 -127 189 -238c0 -115 -63 -232 -191 -232c-49 0 -99 15 -130 55h-5v-263h-148v668h148v-50zM425 380v-313c47 33 60 102 60 155c0 55 -15 122 -60 158zM381 52v349c-15 11 -42 15 -60 15c-63 0 -118 -59 -118 -121v-144 c0 -62 62 -117 123 -117c19 0 42 2 55 18zM159 -174v580h-60v-580h60'], + 0x1D562: [460,218,574,45,519,'519 -218h-148v263h-5c-31 -40 -81 -55 -130 -55c-128 0 -191 117 -191 232c0 111 63 238 189 238c53 0 101 -18 134 -60h3v50h148v-668zM475 -174v580h-60v-580h60zM371 151v144c0 62 -55 121 -118 121c-18 0 -45 -4 -60 -15v-349c13 -16 36 -18 55 -18 c61 0 123 55 123 117zM149 67v313c-45 -36 -60 -103 -60 -158c0 -53 13 -122 60 -155'], + 0x1D563: [462,0,301,55,407,'407 462v-44c-38 -1 -67 -2 -100 -23c-61 -38 -104 -128 -104 -199v-196h-148v450h148v-100h2c42 77 116 113 202 112zM159 44v362h-60v-362h60'], + 0x1D564: [460,10,519,36,483,'483 365l-29 -37c-62 56 -100 88 -187 88c-32 0 -60 -15 -60 -50c0 -87 266 -76 266 -231c0 -104 -127 -145 -213 -145c-102 0 -150 27 -224 95l26 38c64 -55 109 -89 198 -89c34 0 80 15 80 56c0 71 -265 68 -265 230c0 104 100 140 189 140c98 0 148 -29 219 -95z M372 53l1 -1c35 15 56 50 56 88c0 59 -93 93 -138 110c-59 22 -128 40 -128 115c0 11 12 34 17 43l-1 1c-34 -12 -60 -48 -60 -85c0 -139 265 -110 265 -231c0 -13 -5 -29 -12 -40'], + 0x1D565: [633,10,329,20,297,'297 406h-69v-367l65 25v-40c-33 -19 -76 -34 -114 -34c-41 0 -99 32 -99 78v338h-60v44h60v127l104 56h44v-183h69v-44zM184 34v550l-60 -31v-466c0 -25 17 -53 44 -53h16'], + 0x1D566: [450,10,544,55,489,'489 0h-148v59h-2c-28 -45 -76 -69 -129 -69c-97 0 -155 65 -155 161v299h148v-416c4 -1 7 -1 11 -1c84 0 127 92 127 166v251h148v-450zM445 44v362h-60v-362h60zM159 41v365h-60v-249c0 -47 13 -96 60 -116'], + 0x1D567: [450,0,443,20,479,'479 450l-161 -450h-135l-163 450h158l125 -354h3l126 354h47zM277 44l-130 362h-64l130 -362h64'], + 0x1D568: [450,0,676,20,695,'695 450l-128 -450h-141l-73 306h-3l-81 -306h-143l-106 450h154l76 -339h3l91 339h129l76 -340h4l98 340h44zM521 44l-84 362h-61l84 -362h61zM222 44l-84 362h-62l85 -362h61'], + 0x1D569: [450,0,560,30,530,'530 0h-182l-111 157l-147 -157h-60l181 194l-181 256h182l103 -146l136 146h59l-170 -182zM445 44l-254 362h-75l254 -362h75'], + 0x1D56A: [450,218,468,20,510,'510 450l-198 -543c-22 -59 -65 -125 -136 -125c-62 0 -81 17 -132 43l23 37c45 -23 54 -36 109 -36c77 0 97 99 117 156l-273 468h169l168 -291l105 291h48zM338 106l-174 300h-68l216 -371'], + 0x1D56B: [450,0,519,43,476,'476 0h-433v44l251 362h-212v44h394v-44l-252 -362h252v-44zM420 406h-73l-247 -362h70'], + 0x1D7D8: [676,14,540,28,512,'512 331c0 -156 -54 -345 -242 -345s-242 189 -242 345s54 345 242 345s242 -189 242 -345zM408 561v-460c45 39 60 173 60 230s-14 191 -60 230zM364 67v528c-22 26 -62 37 -94 37c-30 0 -74 -13 -94 -37v-528c23 -22 62 -37 94 -37s71 15 94 37zM132 101v460 c-45 -39 -60 -173 -60 -230s15 -191 60 -230'], + 0x1D7D9: [693,0,540,91,355,'355 0h-148v573l-103 -46l-13 42l264 124v-693zM311 44v584l-60 -29v-555h60'], + 0x1D7DA: [676,0,547,48,514,'514 148l-51 -148h-415v29v21l271 262v307c-12 11 -46 13 -60 13c-102 0 -152 -58 -166 -154h-42c0 118 92 198 207 198c109 0 209 -71 209 -187c0 -89 -45 -140 -107 -199l-150 -142h304zM363 602v-243c38 32 60 82 60 131c0 45 -23 86 -60 112zM452 104h-288l-65 -60 h329'], + 0x1D7DB: [676,14,540,49,478,'356 353v-2c74 -29 122 -89 122 -170c0 -134 -99 -195 -223 -195c-100 0 -179 35 -206 139l43 10c6 -17 14 -34 25 -49c30 -41 87 -56 136 -56c26 0 54 5 77 18v283h-107v44h97v244c-14 10 -33 13 -50 13c-82 0 -138 -42 -155 -124h-43c9 105 96 168 197 168 c96 0 190 -53 190 -159c0 -75 -40 -127 -103 -164zM364 608v-197c34 25 51 57 51 100c0 42 -16 73 -51 97zM374 295v-236c44 28 60 69 60 120c0 47 -16 93 -60 116'], + 0x1D7DC: [676,0,540,20,524,'524 160h-87v-160h-148v160h-269v41l362 475h55v-472h87v-22v-22zM393 44v576l-60 -82v-494h60zM289 204v278l-216 -278h216'], + 0x1D7DD: [662,14,540,35,489,'489 662l-47 -148h-268l-29 -72c154 0 316 -47 316 -231c0 -134 -88 -225 -223 -225c-89 0 -179 33 -203 128l40 18c29 -75 88 -102 164 -102c24 0 54 6 74 19v316c-60 29 -125 32 -190 32h-43l109 265h300zM427 618h-210l-25 -60h215zM357 339v-272c42 29 60 93 60 142 c0 47 -14 107 -60 130'], + 0x1D7DE: [676,14,540,28,512,'176 392h2c32 32 79 44 123 44c128 0 211 -94 211 -219c0 -139 -104 -231 -240 -231c-36 0 -71 9 -103 26c-105 56 -141 181 -141 292c0 95 35 186 101 255c100 104 204 117 341 117v-45c-92 0 -189 -2 -263 -65c-7 -6 -31 -27 -31 -37v-137zM408 354v-277 c43 34 60 88 60 142c0 55 -15 101 -60 135zM364 68v301c-19 16 -50 23 -74 23c-41 0 -87 -21 -114 -53v-271c20 -26 62 -38 94 -38s74 11 94 38zM132 103v393c-44 -47 -60 -136 -60 -198c0 -68 14 -142 60 -195'], + 0x1D7DF: [662,0,540,24,511,'511 662l-27 -70l-257 -592h-18h-30l222 514h-319h-58l55 148h39h393zM447 618h-338l-20 -60h333'], + 0x1D7E0: [676,14,540,28,512,'390 353v-2c74 -30 122 -88 122 -170c0 -145 -116 -195 -244 -195s-240 52 -240 195c0 82 48 140 122 170v2c-63 37 -103 89 -103 164c0 122 121 159 223 159s223 -37 223 -159c0 -75 -40 -127 -103 -164zM398 608v-197c34 26 51 57 51 100c0 42 -15 73 -51 97zM354 398 v218c-22 12 -60 16 -84 16c-26 0 -60 -5 -84 -16v-218c17 -18 60 -23 82 -23c17 0 77 3 86 23zM142 411v197c-36 -24 -51 -55 -51 -97c0 -43 17 -74 51 -100zM408 295v-236c44 28 60 69 60 120c0 47 -16 93 -60 116zM364 50v254c-20 21 -70 27 -96 27c-28 0 -70 -8 -92 -27 v-254c22 -15 66 -20 92 -20s73 5 96 20zM132 59v236c-44 -23 -60 -69 -60 -116c0 -51 16 -92 60 -120'], + 0x1D7E1: [676,12,540,28,512,'364 270h-2c-32 -32 -78 -44 -123 -44c-128 0 -211 94 -211 219c0 139 104 231 240 231c40 0 79 -11 113 -32c98 -59 131 -178 131 -286c0 -99 -39 -199 -112 -266c-78 -72 -216 -104 -320 -104v41c65 0 155 9 213 41c25 13 48 31 71 49v151zM408 559v-393 c44 46 60 136 60 198c0 68 -14 142 -60 195zM364 321v275c-20 25 -63 36 -94 36c-30 0 -74 -9 -94 -33v-304c14 -19 52 -25 74 -25c44 0 81 26 114 51zM132 308v277c-44 -34 -60 -88 -60 -142c0 -55 15 -101 60 -135'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/DoubleStruck/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Fraktur/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Fraktur/Bold/Main.js new file mode 100644 index 0000000..2233a37 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Fraktur/Bold/Main.js @@ -0,0 +1,84 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Fraktur/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Fraktur-bold'] = { + directory: 'Fraktur/Bold', + family: 'STIXMathJax_Fraktur', + weight: 'bold', + id: 'STIXWEBFRAKTURB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210C: [701,205,843,42,795,'619 701l21 -15c-20 -92 -118 -179 -214 -179c-47 0 -93 20 -129 71c-14 -17 -19 -36 -19 -56c0 -52 43 -107 72 -144c98 58 125 81 173 118c167 -39 272 -134 272 -270c0 -183 -204 -319 -346 -431h-26c-37 31 -65 46 -97 46c-29 0 -83 -4 -129 -46l-21 17 c39 68 108 160 202 160c63 0 110 -42 122 -79c110 81 123 216 123 291c0 111 -53 211 -145 211c-27 0 -49 -10 -104 -48c67 -58 75 -87 75 -117c0 -33 -28 -61 -83 -118l-127 -137c-42 25 -102 59 -125 70c-7 -7 -21 -18 -50 -53l-22 14l124 196c15 -10 121 -85 134 -85 c8 0 12 17 12 45c-1 75 -184 160 -184 273c0 94 171 197 256 264c50 -48 74 -61 105 -61c33 0 78 7 130 63'], + 0x2128: [701,195,755,44,703,'516 280v-2c119 -25 187 -106 187 -223c0 -134 -109 -250 -287 -250c-196 0 -175 134 -267 134c-24 0 -51 -13 -84 -42l-21 14c9 37 69 163 176 163c93 0 121 -67 130 -119c10 -59 39 -117 89 -117c78 0 92 109 92 203c0 123 -71 200 -141 200c-60 0 -100 -9 -153 -74 l-21 14c26 42 54 78 114 98v2c-53 21 -81 55 -97 87l22 15c47 -60 109 -65 138 -65c65 0 121 54 121 162c0 106 -55 161 -132 161c-83 0 -156 -50 -212 -139l-24 10c37 95 127 189 282 189c76 0 141 -20 186 -60c41 -37 65 -89 65 -157c0 -88 -57 -166 -163 -204'], + 0x212D: [701,19,773,54,731,'710 701l21 -14c-24 -49 -77 -139 -155 -139c-44 0 -95 15 -118 33c-9 -15 -12 -37 -12 -52c0 -94 153 -100 153 -201c0 -73 -80 -138 -169 -138c-25 0 -50 6 -77 22l12 23c11 -8 23 -10 33 -10c33 0 46 31 46 58c0 84 -94 75 -94 186c0 66 108 173 177 230 c31 -25 55 -37 83 -37c46 0 78 17 100 39zM678 222l22 -12c-40 -107 -130 -229 -283 -229c-224 0 -363 167 -363 384c0 83 43 204 128 273c36 30 96 54 152 54c30 0 60 -5 83 -22l-12 -23c-14 5 -26 8 -38 8c-91 0 -136 -142 -136 -251c0 -152 74 -278 224 -278 c65 0 154 17 223 96'], + 0x1D56C: [701,25,856,50,805,'805 80l-156 -94h-27c-46 27 -69 70 -78 115l-262 -126c-47 62 -140 125 -193 133v25c125 51 232 135 232 316c0 39 -3 131 -25 178c-13 27 -32 39 -53 39c-25 0 -51 -10 -51 -51c0 -84 74 -115 74 -210c0 -84 -74 -150 -190 -167l-8 24c25 9 56 38 56 81 c0 101 -74 114 -74 206c0 91 90 150 200 150c65 0 148 -20 198 -76c28 -32 45 -74 45 -133c0 -135 -129 -219 -225 -280c49 -26 116 -91 143 -126l129 61v266c0 91 -4 183 -7 196l264 94l8 -25c-100 -30 -103 -90 -103 -187v-367c0 -23 2 -43 23 -43c12 0 39 7 67 24'], + 0x1D56D: [701,19,849,50,794,'664 411v-2c85 -40 130 -114 130 -186c0 -148 -154 -242 -334 -242c-178 0 -175 91 -282 91c-34 0 -79 -3 -107 -42l-21 14c32 82 99 163 194 163c25 14 81 43 81 237c0 76 -15 222 -76 222c-25 0 -48 -19 -48 -60c0 -86 74 -115 74 -200c0 -84 -59 -147 -190 -167l-8 24 c34 15 56 50 56 93c0 101 -74 102 -74 194c0 99 90 149 200 149c80 0 145 -31 182 -73l100 75c152 0 228 -71 228 -156c0 -57 -27 -104 -105 -134zM604 533c0 56 -35 98 -76 98c-18 0 -33 -4 -63 -36c12 -34 25 -101 25 -127c0 -24 -4 -62 -8 -87c89 14 122 92 122 152z M298 196v-1c120 -41 154 -175 221 -175c23 0 43 6 59 21c29 27 44 77 44 128c0 85 -42 175 -134 175c-6 0 -12 -1 -18 -2c-33 -67 -81 -101 -172 -146'], + 0x1D56E: [701,19,773,54,731,'710 701l21 -14c-24 -49 -77 -139 -155 -139c-44 0 -95 15 -118 33c-9 -15 -12 -37 -12 -52c0 -94 153 -100 153 -201c0 -73 -80 -138 -169 -138c-25 0 -50 6 -77 22l12 23c11 -8 23 -10 33 -10c33 0 46 31 46 58c0 84 -94 75 -94 186c0 66 108 173 177 230 c31 -25 55 -37 83 -37c46 0 78 17 100 39zM678 222l22 -12c-40 -107 -130 -229 -283 -229c-224 0 -363 167 -363 384c0 83 43 204 128 273c36 30 96 54 152 54c30 0 60 -5 83 -22l-12 -23c-14 5 -26 8 -38 8c-91 0 -136 -142 -136 -251c0 -152 74 -278 224 -278 c65 0 154 17 223 96'], + 0x1D56F: [701,19,891,54,836,'251 318v-26c-26 -8 -35 -10 -61 -10c-80 0 -136 65 -136 147c0 134 125 272 323 272c215 0 459 -165 459 -410c0 -73 -18 -150 -83 -214c-56 -55 -145 -96 -271 -96c-176 0 -175 91 -281 91c-34 0 -78 -3 -108 -45l-22 13c34 86 101 167 200 167c79 0 128 -50 176 -88 c55 -43 108 -77 160 -77c72 0 134 58 134 173c0 146 -141 292 -299 312c-12 -10 -18 -21 -18 -31c0 -60 131 -75 131 -163c0 -61 -67 -109 -160 -109c-29 0 -56 5 -87 22l12 23c15 -10 22 -10 34 -10c30 0 46 22 46 46c0 40 -57 74 -57 130c0 44 30 78 56 101 c-65 0 -115 -6 -157 -30c-39 -23 -70 -59 -70 -112c0 -26 20 -77 67 -77c4 0 8 0 12 1'], + 0x1D570: [701,19,788,54,731,'710 701l21 -14c-24 -49 -77 -139 -155 -139c-44 0 -95 13 -118 31c-9 -15 -12 -35 -12 -50c1 -52 48 -83 89 -110c42 56 68 88 109 88c30 0 54 -14 71 -43v-122h-26c-19 47 -51 70 -78 70c-14 0 -33 -3 -50 -14c22 -19 38 -41 38 -70c0 -73 -80 -138 -169 -138 c-25 0 -50 6 -77 22l12 23c13 -7 21 -10 33 -10c30 0 46 31 46 58c0 84 -94 75 -94 186c0 66 108 172 177 229c31 -25 55 -36 83 -36c46 0 78 17 100 39zM678 222l22 -12c-40 -107 -130 -229 -283 -229c-224 0 -363 167 -363 384c0 83 43 204 128 273c36 30 96 54 152 54 c30 0 60 -5 83 -22l-12 -23c-14 5 -26 8 -38 8c-91 0 -136 -142 -136 -251c0 -152 74 -278 224 -278c65 0 154 17 223 96'], + 0x1D571: [701,205,803,54,748,'723 676l25 -7c-15 -60 -58 -196 -189 -196h-10c-27 -33 -39 -67 -39 -121c0 -17 8 -52 23 -63c29 56 78 108 116 108c35 0 48 -16 64 -37v-128h-26c-19 48 -44 69 -74 69c-11 0 -32 -8 -55 -41c85 -55 120 -125 120 -201c0 -130 -111 -264 -289 -264 c-145 0 -269 66 -269 192c0 62 47 127 47 160c0 25 -15 38 -39 38c-18 0 -38 -8 -51 -21l-23 11c22 46 78 110 155 110c87 0 122 -54 122 -103c0 -70 -57 -105 -57 -198c0 -92 62 -156 118 -156c68 0 122 55 122 174c0 90 -42 136 -79 178c-37 41 -60 78 -60 120 c0 71 70 124 130 182c-93 32 -128 84 -221 84c-35 0 -95 -34 -95 -91c0 -53 35 -75 76 -85l-5 -26c-7 -1 -15 -1 -22 -1c-103 0 -167 60 -167 142c0 114 94 196 236 196c132 0 211 -93 295 -93c36 0 88 11 121 68'], + 0x1D572: [701,19,833,54,781,'635 443l1 -2c91 -9 145 -75 145 -159c0 -80 -46 -152 -102 -206c-62 -60 -156 -95 -272 -95c-219 0 -353 155 -353 352c0 182 80 359 274 359c20 0 43 -5 63 -12l-6 -26c-9 1 -14 2 -22 2c-93 0 -132 -156 -132 -308c0 -158 30 -334 189 -334c116 0 194 114 194 247 c0 77 -20 149 -64 149c-18 0 -33 -8 -48 -24c37 -42 61 -99 61 -137c0 -72 -54 -138 -156 -138c-28 0 -50 5 -80 22l12 23c14 -7 21 -10 34 -10c29 0 35 31 35 58c0 89 -95 150 -95 259c0 93 104 179 195 237l17 -19c-54 -56 -81 -97 -81 -154c0 -38 14 -84 34 -110 c33 17 88 47 88 83c0 29 -12 49 -12 81c0 44 37 81 143 120l17 -19c-12 -12 -22 -24 -22 -54c0 -42 25 -62 25 -94c0 -40 -31 -69 -82 -91'], + 0x1D573: [701,205,843,42,795,'619 701l21 -15c-20 -92 -118 -179 -214 -179c-47 0 -93 20 -129 71c-14 -17 -19 -36 -19 -56c0 -52 43 -107 72 -144c98 58 125 81 173 118c167 -39 272 -134 272 -270c0 -183 -204 -319 -346 -431h-26c-37 31 -65 46 -97 46c-29 0 -83 -4 -129 -46l-21 17 c39 68 108 160 202 160c63 0 110 -42 122 -79c110 81 123 216 123 291c0 111 -53 211 -145 211c-27 0 -49 -10 -104 -48c67 -58 75 -87 75 -117c0 -33 -28 -61 -83 -118l-127 -137c-42 25 -102 59 -125 70c-7 -7 -21 -18 -50 -53l-22 14l124 196c15 -10 121 -85 134 -85 c8 0 12 17 12 45c-1 75 -184 160 -184 273c0 94 171 197 256 264c50 -48 74 -61 105 -61c33 0 78 7 130 63'], + 0x1D574: [701,25,790,54,735,'710 694l25 -8c-15 -61 -44 -182 -177 -182c-119 0 -143 62 -246 62c-63 0 -109 -37 -109 -93c0 -46 35 -83 85 -83c20 0 29 1 50 10l12 -22c-25 -20 -57 -27 -91 -27c-88 0 -174 60 -174 153c0 104 84 197 222 197c159 0 180 -70 285 -70c44 0 98 16 118 63zM721 388 l-23 -12c-12 22 -28 35 -51 35c-27 0 -50 -17 -50 -55c0 -78 92 -107 92 -202c0 -113 -109 -179 -246 -179c-211 0 -195 134 -284 134c-25 0 -52 -13 -85 -42l-20 14c17 50 68 163 168 163c107 0 130 -77 151 -142c18 -56 43 -94 78 -94c46 0 74 45 74 92 c0 105 -87 136 -87 235c0 82 84 130 161 130c55 0 106 -25 122 -77'], + 0x1D575: [701,205,803,54,748,'725 680l23 -12c-25 -61 -64 -163 -197 -163c-119 0 -147 61 -240 61c-53 0 -105 -33 -105 -89c0 -46 30 -85 87 -85c15 0 24 1 41 8l12 -23c-24 -20 -53 -24 -87 -24c-94 0 -171 60 -171 153c0 104 84 195 222 195c146 0 214 -61 298 -61c34 0 80 5 117 40zM715 391 l-23 -12c-13 23 -29 37 -55 37c-27 0 -58 -26 -58 -70c0 -103 108 -136 108 -304c0 -129 -130 -247 -284 -247c-69 0 -126 7 -172 31c-51 26 -88 72 -88 136c0 26 15 61 15 85c0 11 -11 31 -32 31c-12 0 -32 -7 -47 -31l-25 8c18 61 77 126 153 126c80 0 115 -58 115 -105 c0 -38 -21 -82 -21 -112c0 -65 21 -136 104 -136c67 0 118 74 118 163c0 135 -102 187 -102 320c0 90 82 159 169 159s115 -48 125 -79'], + 0x1D576: [701,25,864,42,814,'794 121l20 -20c-22 -31 -92 -95 -158 -115h-24c-75 38 -98 93 -107 194c-7 79 -28 122 -53 124l-44 -14c21 -30 21 -42 21 -60c0 -33 -28 -61 -83 -118l-127 -137c-42 25 -102 59 -125 70c-8 -7 -21 -18 -50 -53l-22 14l124 196c15 -10 121 -85 134 -85c8 0 12 17 12 45 c0 80 -184 135 -184 294c0 132 181 245 330 245c98 0 234 -22 313 -155l-21 -14c-91 108 -176 117 -268 117c-102 0 -204 -65 -204 -173c33 83 118 114 182 114c75 0 115 -15 143 -39c60 -51 48 -138 124 -143l3 -20l-134 -46c46 -31 77 -66 85 -137c9 -78 23 -131 44 -131 c26 0 52 28 69 47zM615 389v2c-166 8 -96 147 -188 147c-50 0 -118 -47 -118 -113c31 -45 68 -76 93 -106'], + 0x1D577: [701,25,699,51,645,'621 171l24 -8c-17 -84 -70 -188 -177 -188c-67 0 -117 20 -160 48c-39 25 -99 50 -128 50c-25 0 -81 -4 -104 -77l-25 6c11 62 49 176 168 206c10 12 19 36 19 67c0 105 -142 121 -142 252c0 109 152 174 274 174c111 0 257 -44 257 -154c0 -88 -55 -107 -55 -188 c0 -58 35 -93 70 -105l-4 -25c-122 0 -208 71 -208 140c0 98 55 119 55 202c0 61 -51 97 -106 97c-53 0 -118 -34 -118 -106c0 -38 33 -70 64 -106c28 -33 55 -68 55 -113c0 -51 -64 -109 -109 -140c118 -9 168 -101 250 -101c20 0 71 8 100 69'], + 0x1D578: [701,25,1133,50,1081,'1061 120l20 -17c-22 -31 -84 -95 -137 -117h-24c-75 27 -113 102 -113 197c0 121 70 204 165 296v2c-154 0 -113 170 -197 170c-24 0 -44 -11 -64 -38c31 -63 42 -110 42 -199c0 -84 -47 -169 -74 -218c-33 -60 -91 -151 -151 -221c-42 24 -79 48 -107 63 c-7 -7 -23 -22 -51 -55l-22 14l113 198c23 -14 93 -70 106 -70c21 0 30 175 30 314c0 83 -33 212 -93 212c-24 0 -45 -14 -64 -40c31 -63 42 -110 42 -199c0 -84 -57 -169 -84 -218c-33 -60 -91 -149 -151 -219c-42 24 -89 46 -117 61c-7 -7 -22 -20 -50 -53l-22 14l112 196 c23 -14 113 -72 126 -72c21 0 21 177 21 316c0 83 -17 229 -77 229c-25 0 -48 -13 -48 -54c0 -86 74 -121 74 -200c0 -84 -59 -147 -190 -167l-8 24c25 9 56 42 56 85c0 85 -74 98 -74 192c0 62 38 104 89 130c33 16 68 23 111 23c64 0 123 -20 159 -57c50 38 92 59 138 59 c72 0 111 -15 139 -55c45 39 95 55 148 55c33 0 64 -8 90 -23c79 -45 39 -154 138 -156v-20c-75 -40 -98 -121 -98 -276c0 -78 7 -151 28 -151c31 0 52 26 69 45'], + 0x1D579: [701,25,862,50,810,'790 118l20 -17c-22 -31 -84 -93 -137 -115h-24c-71 18 -113 100 -113 195c0 121 70 204 165 296v2c-154 0 -113 170 -197 170c-24 0 -44 -14 -64 -41c31 -63 42 -107 42 -196c0 -84 -57 -169 -84 -218c-33 -60 -91 -149 -151 -219c-42 24 -89 46 -117 61 c-7 -7 -22 -20 -50 -53l-22 14l112 196c23 -14 113 -72 126 -72c21 0 21 177 21 316c0 83 -14 229 -74 229c-25 0 -51 -19 -51 -54c0 -86 74 -121 74 -200c0 -84 -59 -147 -190 -167l-8 24c25 9 56 38 56 81c0 87 -74 101 -74 196c0 41 17 73 42 98c37 37 93 55 158 55 c64 0 123 -20 159 -57c45 39 101 59 154 59c33 0 64 -8 90 -23c79 -45 39 -156 138 -158v-20c-75 -40 -98 -121 -98 -276c0 -78 7 -151 28 -151c31 0 52 26 69 45'], + 0x1D57A: [701,19,909,54,854,'54 274l18 19c17 -18 36 -26 53 -26c27 0 49 21 49 58c0 32 -20 50 -40 69c-26 24 -54 52 -54 109c0 76 117 198 315 198c215 0 459 -165 459 -410c0 -73 -18 -150 -83 -214c-56 -55 -145 -96 -271 -96c-176 0 -175 84 -281 84c-34 0 -75 -14 -105 -56l-22 14 c34 86 98 177 197 177c79 0 128 -41 176 -81c54 -45 108 -77 160 -77c72 0 134 58 134 173c0 131 -101 351 -262 351c-33 0 -66 -20 -107 -20c-82 0 -116 21 -160 77c-21 0 -55 -25 -55 -64c0 -78 156 -91 156 -199c0 -79 -86 -129 -171 -129c-54 0 -84 21 -106 43'], + 0x1D57B: [701,205,850,50,795,'791 519v-20c-50 -26 -67 -52 -67 -79c0 -56 71 -113 71 -196c0 -158 -124 -243 -304 -243h-13v-186h-162v234c-36 22 -65 44 -117 44c-34 0 -79 -3 -107 -42l-21 14c32 82 99 163 194 163c17 0 35 -2 51 -6v235c0 72 -15 229 -75 229c-25 0 -49 -13 -49 -54 c0 -86 74 -117 74 -200c0 -84 -59 -147 -190 -167l-8 24c25 9 56 38 56 81c0 93 -74 104 -74 196c0 101 90 153 200 153c64 0 123 -18 159 -55c53 44 98 57 143 57c214 0 113 -180 239 -182zM701 484v2c-153 0 -113 165 -197 165c-24 0 -44 -11 -64 -38 c30 -52 38 -94 38 -161v-370c27 -46 57 -62 82 -62c60 0 79 59 79 111c0 67 -60 137 -60 210c0 50 28 108 122 143'], + 0x1D57C: [701,59,930,54,902,'882 45l20 -16c-27 -53 -69 -88 -131 -88c-59 0 -84 30 -107 68c-45 -17 -100 -28 -164 -28c-176 0 -175 84 -281 84c-34 0 -75 -14 -105 -56l-22 13c34 86 98 178 197 178c79 0 118 -41 166 -81c54 -45 108 -77 160 -77c10 0 21 1 32 3c-26 60 -36 124 -71 124 c-10 0 -24 -5 -37 -23l-20 16c30 46 69 81 114 81c75 0 104 -57 125 -114c13 24 21 52 21 86c0 131 -123 351 -282 351c-33 0 -66 -20 -107 -20c-82 0 -116 21 -160 77c-21 0 -55 -25 -55 -64c0 -78 156 -91 156 -199c0 -90 -86 -129 -171 -129c-54 0 -84 21 -106 43l18 19 c17 -18 36 -26 53 -26c30 0 49 22 49 57c0 33 -20 51 -40 70c-26 24 -54 52 -54 109c0 76 117 198 315 198c215 0 459 -165 459 -410c0 -72 -18 -147 -80 -211c14 -37 28 -65 57 -65c15 0 28 3 51 30'], + 0x1D57D: [701,25,884,50,841,'821 117l20 -17c-22 -31 -90 -94 -156 -114h-24c-85 38 -96 88 -105 189c-7 81 -19 153 -44 153l-52 -13c-69 -155 -101 -201 -213 -340c-42 24 -89 46 -117 61c-7 -7 -23 -18 -51 -51l-21 12l112 196c23 -14 113 -72 126 -72c21 0 21 177 21 316c0 83 -17 229 -77 229 c-24 0 -48 -16 -48 -54c0 -85 74 -113 74 -200c0 -84 -59 -147 -190 -167l-8 24c25 9 56 38 56 81c0 101 -74 104 -74 196c0 44 22 81 51 107c37 33 87 46 149 46c87 0 144 -30 181 -73l102 75c152 0 235 -71 235 -156c0 -57 -30 -144 -133 -181v-2c47 -31 69 -90 77 -162 c9 -78 26 -126 42 -126c26 0 50 24 67 43zM596 510c0 63 -25 121 -76 121c-18 0 -37 -7 -67 -39c19 -39 29 -92 29 -136c0 -34 -3 -82 -8 -100c82 11 122 80 122 154'], + 0x1D57E: [701,19,852,54,802,'458 482l-14 -22c-21 14 -33 17 -54 17c-38 0 -79 -15 -79 -67c0 -36 21 -68 69 -68c77 0 115 121 258 121c85 0 164 -50 164 -171c0 -156 -147 -311 -352 -311c-268 0 -396 175 -396 391c0 157 136 327 332 327c116 0 174 -44 241 -44c34 0 87 8 118 46l22 -14 c-27 -90 -72 -167 -170 -167c-110 0 -184 66 -278 66c-129 0 -232 -81 -232 -212c0 -200 195 -228 361 -228c101 0 311 28 311 168c0 52 -23 74 -80 74c-98 0 -125 -186 -303 -186c-120 0 -185 80 -185 166c0 78 67 156 167 156c38 0 70 -13 100 -42'], + 0x1D57F: [701,25,793,54,740,'707 680l26 -7c-15 -61 -59 -202 -190 -202c-27 0 -76 16 -100 30c-5 -8 -10 -18 -10 -31c0 -61 115 -56 115 -137c0 -70 -58 -105 -152 -105c-29 0 -53 5 -84 22l12 23c15 -10 25 -10 34 -10c29 0 39 23 39 41c0 38 -44 72 -44 117c0 27 11 51 53 98 c-43 29 -82 46 -132 46c-36 0 -96 -33 -96 -102c0 -64 39 -104 96 -106l-3 -26c-129 0 -217 65 -217 163c0 117 95 207 237 207c134 0 207 -90 292 -90c35 0 86 0 124 69zM715 171l25 -8c-17 -94 -80 -188 -197 -188c-126 0 -197 91 -308 91c-25 0 -90 -5 -130 -70l-23 13 c20 111 109 192 212 192c161 0 220 -99 302 -99c20 0 90 8 119 69'], + 0x1D580: [701,25,860,54,809,'809 80l-156 -94h-27c-46 27 -69 70 -78 115l-282 -126c-47 56 -159 126 -212 143v15c56 26 133 58 133 203v216c0 43 -15 55 -35 55c-24 0 -55 -16 -78 -29l-13 22l167 101h25c62 -21 96 -74 96 -145v-125c0 -98 -42 -148 -138 -220c66 -20 138 -78 185 -131l148 65v266 c0 91 -4 183 -7 196l264 94l8 -25c-100 -32 -103 -90 -103 -187v-367c0 -23 2 -43 23 -43c12 0 39 7 67 24'], + 0x1D581: [701,19,855,50,800,'800 524v-20c-49 -27 -67 -49 -67 -80c0 -57 61 -109 61 -200c0 -158 -154 -243 -334 -243c-178 0 -175 92 -282 92c-34 0 -78 0 -107 -42l-21 14c32 82 99 163 194 163c25 14 81 43 81 237c0 78 -15 221 -76 221c-25 0 -48 -18 -48 -59c0 -84 74 -111 74 -200 c0 -84 -59 -147 -190 -167l-8 24c25 9 56 40 56 83c0 96 -74 102 -74 194c0 101 90 158 200 158c64 0 123 -18 159 -55c53 44 98 57 143 57c214 0 112 -167 239 -177zM711 484v2c-152 0 -114 165 -198 165c-24 0 -44 -11 -64 -38c32 -54 41 -118 41 -144 c0 -123 -80 -210 -192 -271v-2c120 -41 153 -176 220 -176s120 52 120 111c0 90 -50 128 -50 213c0 50 29 105 123 140'], + 0x1D582: [701,19,1121,50,1066,'1065 524l1 -20c-49 -26 -67 -50 -67 -80c0 -57 61 -109 61 -201c0 -95 -47 -150 -111 -195c-37 -27 -87 -47 -145 -47c-67 0 -126 8 -168 34c-36 -24 -104 -34 -175 -34c-179 0 -176 92 -283 92c-34 0 -75 -10 -107 -42l-21 14c32 82 99 163 194 163c25 14 81 43 81 237 c0 78 -15 221 -76 221c-22 0 -48 -18 -48 -54c0 -86 74 -111 74 -200c0 -84 -59 -147 -190 -167l-8 24c25 9 56 38 56 81c0 101 -74 104 -74 196c0 97 90 153 200 153c64 0 123 -18 159 -55c40 34 84 57 151 57c53 0 116 -21 142 -42c33 28 74 42 115 42 c219 0 113 -166 239 -177zM977 484v2c-153 0 -113 165 -198 165c-61 0 -99 -92 -99 -150c0 -49 21 -78 43 -108c31 -40 62 -105 62 -157c0 -62 -19 -91 -47 -126c27 -60 70 -90 102 -90c36 0 64 42 64 104c0 87 -50 113 -50 218c0 50 28 106 123 142zM298 198v-2 c120 -41 174 -172 241 -172c53 0 90 93 90 168c0 41 -14 75 -30 96c-34 45 -50 89 -50 131c0 61 37 119 87 180c-20 34 -63 52 -102 52c-21 0 -58 -4 -85 -38c32 -54 41 -118 41 -144c0 -123 -80 -210 -192 -271'], + 0x1D583: [701,25,819,50,775,'775 680l-121 -198c-21 17 -117 81 -132 81c-11 0 -25 -55 -25 -151c88 0 121 0 148 28l23 -13c-29 -77 -71 -132 -171 -138v-43c0 -90 63 -145 122 -145c32 0 68 8 106 40l16 -21l-187 -134h-25c-66 24 -124 70 -159 121c-30 -38 -82 -91 -123 -132 c-41 22 -99 57 -125 69c-7 -8 -21 -18 -50 -53l-22 14l124 196c24 -15 124 -85 135 -85c14 0 26 72 26 171h-19c-61 0 -105 0 -127 -34l-23 13c33 83 73 136 169 144v27c0 63 -33 139 -77 139c-35 0 -89 -18 -126 -48l-16 20l180 144h25c61 -19 112 -78 141 -121 c23 36 75 87 124 130c56 -30 98 -54 117 -60c12 9 21 19 50 53'], + 0x1D584: [701,205,837,50,782,'434 641h2c23 26 74 60 137 60c145 0 209 -149 209 -309c0 -262 -145 -429 -316 -597h-25c-45 31 -67 46 -97 46c-33 0 -84 -4 -130 -46l-21 14c45 96 112 163 203 163c57 0 94 -43 106 -79c35 53 103 232 103 519c0 131 -21 237 -75 237c-19 0 -49 -7 -70 -44 c19 -48 26 -100 26 -138c0 -151 -80 -186 -217 -277v-1c41 -10 107 -52 134 -78l83 35l12 -23l-209 -137c-49 57 -139 103 -200 109v25c133 60 232 142 232 329c0 68 -7 139 -25 178c-13 27 -33 39 -54 39c-25 0 -50 -14 -50 -55c0 -85 74 -124 74 -199 c0 -84 -74 -150 -190 -167l-8 24c25 9 56 38 56 81c0 101 -74 103 -74 195c0 101 90 154 200 154c57 0 133 -13 184 -58'], + 0x1D585: [701,195,755,44,703,'516 280v-2c119 -25 187 -106 187 -223c0 -134 -109 -250 -287 -250c-196 0 -175 134 -267 134c-24 0 -51 -13 -84 -42l-21 14c9 37 69 163 176 163c93 0 121 -67 130 -119c10 -59 39 -117 89 -117c78 0 92 109 92 203c0 123 -71 200 -141 200c-60 0 -100 -9 -153 -74 l-21 14c26 42 54 78 114 98v2c-53 21 -81 55 -97 87l22 15c47 -60 109 -65 138 -65c65 0 121 54 121 162c0 106 -55 161 -132 161c-83 0 -156 -50 -212 -139l-24 10c37 95 127 189 282 189c76 0 141 -20 186 -60c41 -37 65 -89 65 -157c0 -88 -57 -166 -163 -204'], + 0x1D586: [475,24,600,55,545,'545 71l-126 -91h-24c-26 14 -52 38 -64 61l-140 -65h-24c-67 40 -112 117 -112 194c0 69 30 137 88 178c74 52 98 63 185 127h24c50 -43 89 -75 155 -95v-25c-24 0 -43 -19 -43 -45v-188c0 -32 11 -45 30 -45c10 0 23 6 37 16zM325 79v236l-75 60 c-46 -51 -56 -109 -56 -175c0 -68 43 -145 77 -145c19 0 35 13 54 24'], + 0x1D587: [695,24,559,45,504,'504 335v-116c0 -71 -55 -106 -109 -142c-48 -32 -93 -68 -120 -101h-24c-59 34 -120 62 -206 76v25c44 5 51 10 51 71v366c0 71 -20 134 -44 163l20 18c35 -28 61 -53 79 -74c30 40 88 73 164 73c12 0 22 0 62 -6v-25c-96 0 -142 -50 -142 -132v-113l147 57h24 c69 -12 98 -68 98 -140zM365 170v134c0 56 -18 77 -53 100l-77 -26v-235l106 -54c17 19 24 34 24 81'], + 0x1D588: [475,24,464,55,412,'412 47l-196 -71h-24c-85 46 -137 138 -137 221c0 124 44 180 170 240l80 38h24l77 -90l-104 -86l-82 90c-7 -5 -13 -14 -15 -20c-9 -23 -11 -68 -11 -122c0 -93 49 -194 138 -194c18 0 32 3 72 19'], + 0x1D589: [694,25,557,48,502,'502 336v-149c0 -56 -102 -98 -162 -153c-16 -15 -36 -33 -59 -59h-24c-57 35 -105 60 -157 60h-52v24c27 0 46 13 46 51v270v-4c43 12 90 35 126 58v2c-65 24 -153 55 -153 134c0 88 109 124 211 124v-25c-27 -4 -72 -17 -72 -51c0 -54 96 -70 145 -100 c97 -58 151 -103 151 -182zM363 159v155c0 66 -54 85 -82 104c-9 -5 -26 -12 -41 -22c-6 -2 -7 -4 -7 -45v-203l113 -53c10 16 17 29 17 64'], + 0x1D58A: [475,24,476,55,427,'427 62l-190 -86h-23c-121 25 -159 148 -159 217c0 116 52 206 161 250c36 14 80 26 116 32h24l70 -215l-232 -90c0 -60 71 -112 112 -112s84 12 109 28zM194 201l57 23c23 12 31 26 31 36c0 12 -42 137 -50 152c-37 -19 -38 -101 -38 -165v-46'], + 0x1D58B: [700,214,370,33,352,'327 700l25 -9c-3 -41 -34 -142 -106 -142c-43 0 -46 21 -78 21c-14 0 -35 -11 -35 -43c0 -72 78 -79 136 -79h61v-65h-96l-25 -597h-101l-24 597h-51v25c20 0 50 6 50 57c0 31 -9 68 -9 101c0 44 21 129 101 129c43 0 69 -32 100 -32c11 0 35 6 52 37'], + 0x1D58C: [475,219,566,55,506,'506 380v-25c-24 0 -43 -19 -43 -46v-184c0 -86 39 -114 40 -183c2 -105 -109 -161 -202 -161c-173 0 -95 71 -212 87v24c43 23 85 30 110 30c95 0 78 -103 109 -103c32 0 56 15 56 81c0 65 -26 82 -40 138l-134 -62h-25c-66 40 -110 118 -110 194c0 68 29 138 87 178 c75 51 98 63 185 127h24c50 -43 89 -74 155 -95zM324 79v236l-75 60c-46 -51 -55 -109 -55 -175c0 -68 42 -145 76 -145c19 0 35 14 54 24'], + 0x1D58D: [695,219,576,45,516,'516 335v-284c0 -119 -128 -233 -188 -270l-18 19c39 49 67 125 67 177v327c0 56 -18 77 -53 100l-77 -26v-242l53 -30l34 37l22 -14c-40 -57 -80 -120 -95 -153h-24c-54 38 -106 62 -192 76v25c44 5 63 10 63 71v366c0 71 -20 134 -44 163l20 18c35 -28 61 -53 79 -74 c30 40 88 73 164 73c12 0 22 0 62 -6v-25c-96 0 -142 -50 -142 -132v-113l147 57h24c69 -12 98 -68 98 -140'], + 0x1D58E: [697,24,429,35,379,'269 649c0 -16 -40 -93 -70 -93c-32 0 -71 76 -71 93c0 26 28 48 71 48s70 -23 70 -48zM379 101l-141 -125h-24c-66 33 -83 65 -83 146v191c0 40 -14 55 -33 55c-12 0 -24 -6 -48 -22l-15 22l147 107h24c47 -30 89 -58 120 -61v-25c-23 -3 -56 -12 -56 -43v-178 c0 -59 6 -85 24 -85c14 0 35 15 66 40'], + 0x1D58F: [697,219,389,40,337,'280 649c0 -16 -40 -93 -70 -93c-32 0 -71 76 -71 93c0 26 28 48 71 48s70 -23 70 -48zM337 414v-25c-23 -3 -56 -12 -56 -43v-394c0 -60 20 -123 44 -154l-20 -17c-35 24 -61 51 -79 74c-25 -31 -81 -74 -127 -74c-12 0 -31 0 -59 6v27c42 0 102 33 102 148v351 c0 40 -11 49 -28 49c-12 0 -33 -10 -57 -26l-15 21l151 118h24c47 -30 89 -58 120 -61'], + 0x1D590: [695,24,456,48,402,'402 688v-25c-96 0 -152 -50 -152 -132v-89h33v62c0 79 50 107 110 107v-109h-26c-2 20 -10 27 -20 27c-20 0 -27 -25 -27 -67v-20h73v-65h-143v-240l72 -36l49 56l22 -15c-43 -57 -102 -133 -119 -166h-24c-54 38 -116 62 -202 76v25c44 5 63 10 63 71v229h-63v25 c19 0 63 5 63 50v62c0 71 -20 134 -44 163l20 18c35 -28 61 -53 79 -74c30 40 88 73 164 73c12 0 32 0 72 -6'], + 0x1D591: [695,24,433,45,379,'357 158l22 -15c-44 -57 -93 -134 -108 -167h-24c-54 38 -116 62 -202 76v25c44 5 63 10 63 71v366c0 71 -20 134 -44 163l20 18c35 -28 61 -53 79 -74c30 40 88 73 164 73c12 0 26 -1 46 -6v-25c-76 0 -126 -50 -126 -132v-394l62 -31'], + 0x1D592: [475,24,984,40,932,'932 90l-128 -114h-24c-65 32 -83 64 -83 142v215l-56 53l-84 -43v-184c0 -54 4 -68 47 -72v-25c-44 -4 -94 -22 -104 -86h-24c-9 65 -65 82 -111 86v25c40 4 53 18 53 60v176c0 33 -30 55 -53 65l-87 -44v-185c0 -54 4 -68 47 -72v-25c-44 -4 -94 -22 -104 -86h-24 c-9 65 -65 82 -111 86v25c44 5 53 21 53 72v154c0 45 -17 69 -42 69c-12 0 -31 -5 -45 -15l-12 21l127 87h24c40 -20 78 -55 81 -93l173 93h24c40 -20 79 -55 82 -93l183 93h24c25 -30 70 -66 112 -68v-25c-34 -5 -34 -40 -34 -57v-174c0 -48 9 -68 28 -68c14 0 20 4 49 29'], + 0x1D593: [475,24,696,40,644,'644 90l-129 -114h-24c-65 32 -83 64 -83 142v215l-54 52l-76 -41v-185c0 -54 4 -68 47 -72v-25c-44 -4 -94 -22 -104 -86h-24c-9 65 -65 82 -111 86v25c44 5 53 21 53 72v154c0 45 -17 69 -42 69c-12 0 -31 -5 -45 -15l-12 21l127 87h24c40 -20 78 -55 81 -93l173 93h24 c25 -30 70 -66 112 -68v-25c-34 -5 -34 -40 -34 -57v-174c0 -48 11 -68 27 -68c14 0 20 4 51 29'], + 0x1D594: [475,24,554,45,499,'499 295v-101c0 -57 -100 -104 -160 -159c-16 -15 -35 -33 -58 -59h-24c-60 35 -113 64 -162 64h-50v25c27 0 46 12 46 50v254c43 12 102 44 244 106h24c97 -58 140 -101 140 -180zM360 150v134c0 58 -89 106 -101 114l-22 -10c-6 -2 -7 -10 -7 -51v-186l111 -65 c10 17 19 29 19 64'], + 0x1D595: [593,219,640,36,585,'585 335v-120c0 -71 -38 -111 -92 -146c-48 -32 -94 -60 -121 -93h-24c-9 10 -23 17 -32 19v-214h-139v246c-36 -1 -75 -10 -118 -51l-23 13c36 82 86 136 141 162v205c0 58 -63 59 -63 137c0 36 37 78 74 100l21 -15c-8 -13 -15 -26 -15 -35c0 -56 121 -40 122 -125 l137 57h24c76 -28 108 -94 108 -140zM446 157v137c0 60 -54 93 -74 104l-56 -21v-220c58 -18 92 -53 116 -81c14 16 14 34 14 81'], + 0x1D596: [475,219,574,55,522,'522 366h-20c-30 0 -38 -25 -38 -45v-540h-139v258l-134 -63h-24c-67 40 -112 117 -112 194c0 69 30 137 88 178c74 52 98 63 185 127h24c50 -43 110 -80 170 -85v-24zM325 79v246l-75 50c-46 -51 -56 -109 -56 -175c0 -68 43 -145 77 -145c14 0 35 14 54 24'], + 0x1D597: [475,24,525,40,493,'493 370l-110 -84l-85 106l-25 -13v-242l71 -36l70 70l19 -18c-56 -59 -123 -144 -140 -177h-24c-48 34 -100 56 -173 56h-25v24c42 4 63 10 63 63v194c0 48 -17 69 -43 69c-13 0 -23 -5 -39 -15l-12 21l122 87h24c37 -17 55 -42 68 -63l134 63h24'], + 0x1D598: [643,31,557,52,505,'180 536l-24 11c30 66 93 96 153 96c82 0 160 -56 160 -147c0 -74 -63 -142 -152 -142c-40 0 -81 17 -110 63c-7 -14 -15 -44 -15 -79c0 -50 31 -80 65 -80c36 0 44 9 63 26c15 15 49 51 81 51c30 0 52 -14 68 -31c30 -30 36 -76 36 -107c0 -71 -134 -167 -187 -221h-25 c-30 28 -76 39 -111 39c-36 0 -71 -14 -110 -46l-20 16c56 90 113 133 182 133c40 0 78 -9 116 -61c8 21 16 51 16 81c0 61 -19 84 -42 84s-46 -23 -72 -46c-18 -16 -39 -31 -73 -31c-76 0 -126 57 -126 134c0 50 46 93 95 136l84 75h25c11 -20 37 -23 47 -23 c17 0 49 20 49 61c0 50 -30 74 -72 74c-35 0 -79 -25 -101 -66'], + 0x1D599: [656,23,438,45,378,'356 167l22 -14c-43 -58 -90 -143 -107 -176h-24c-54 38 -116 62 -202 76v25c44 5 63 10 63 71v247h-63v25c58 5 101 72 101 235h101v-195h113v-65h-113v-258l61 -31'], + 0x1D59A: [475,24,681,35,629,'629 90l-129 -114h-24c-51 25 -73 50 -80 97l-170 -97h-24c-25 30 -82 77 -124 79v25c34 5 46 15 46 57v172c0 58 -13 73 -37 73c-12 0 -26 -5 -40 -15l-12 21l117 87h24c60 -29 87 -77 87 -136v-219l51 -50l79 43v185c0 53 -4 61 -47 66v25c44 4 94 23 104 86h24 c9 -64 65 -82 111 -86v-25c-44 -6 -53 -15 -53 -66v-155c0 -42 12 -60 27 -60c14 0 20 4 51 29'], + 0x1D59B: [593,24,573,55,526,'526 295v-101c0 -57 -100 -104 -160 -159c-16 -15 -35 -33 -58 -59h-24c-60 35 -114 64 -162 64h-50v25c27 0 46 14 46 52v243c0 54 -63 57 -63 133c0 36 37 78 74 100l21 -15c-8 -13 -15 -26 -15 -35c0 -54 109 -42 121 -114c28 13 66 29 106 46h24 c97 -58 140 -101 140 -180zM387 150v134c0 58 -89 106 -101 114l-22 -10c-6 -2 -7 -10 -7 -51v-186l111 -65c10 14 19 29 19 64'], + 0x1D59C: [593,24,850,55,795,'795 295v-107c0 -56 -93 -98 -153 -153c-16 -15 -35 -33 -58 -59h-24c-59 33 -109 67 -161 67h-48v25c27 0 36 12 36 50v220l-56 51l-74 -28v-218c0 -41 8 -53 47 -56v-25c-44 -4 -94 -22 -104 -86h-24c-9 65 -65 82 -111 86v25c40 4 53 19 53 60v209 c0 58 -63 59 -63 137c0 36 37 78 74 100l21 -15c-8 -13 -15 -26 -15 -35c0 -56 122 -30 122 -141l157 73h24c36 -14 70 -37 89 -72l149 72h24c70 -52 95 -101 95 -180zM656 160v124c0 47 -28 85 -61 105l-62 -24c-6 -3 -7 -11 -7 -52v-162l113 -64c10 17 17 38 17 73'], + 0x1D59D: [475,209,521,50,489,'489 385l-114 -77l-67 84l-25 -13v-114h74v-65h-74v-64l70 -41l43 44l18 -18l-117 -145h-25l-128 78c-10 -19 -17 -33 -17 -48c0 -54 34 -65 99 -87l-36 -128h-25c-64 28 -99 79 -99 157c0 54 19 100 78 152v100h-70v65h70v48c0 48 -17 69 -43 69c-13 0 -23 -5 -39 -15 l-12 21l122 87h24c37 -17 55 -42 68 -63l133 63h24'], + 0x1D59E: [593,219,596,55,536,'536 283v-147c0 -204 -131 -318 -191 -355l-18 19c39 49 70 125 70 255v196c0 109 -26 133 -61 157l-79 -31v-240l54 -31l38 48l22 -15c-40 -50 -84 -130 -100 -163h-24c-54 38 -106 62 -192 76v25c44 5 63 10 63 71v208c0 58 -63 59 -63 137c0 36 37 78 74 100l21 -15 c-8 -13 -15 -26 -15 -35c0 -54 110 -33 121 -125l135 57h24c76 -28 121 -94 121 -192'], + 0x1D59F: [475,219,484,36,437,'205 221l211 -119c19 -27 21 -59 21 -91c0 -38 -18 -75 -60 -109c-57 -45 -144 -89 -207 -121h-24c-57 34 -97 114 -110 156v25c65 40 148 96 210 191l-95 54v21c48 25 94 64 94 114c0 35 -14 50 -38 50c-22 0 -65 -8 -94 -27l-11 26c49 26 108 51 160 84h25 c72 -12 97 -53 97 -102c0 -74 -109 -122 -179 -151v-1zM277 132h-3c-36 -69 -76 -111 -109 -144c16 -61 35 -109 80 -132c28 26 53 59 53 166c0 18 -11 93 -21 110'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Fraktur/Regular/Main.js new file mode 100644 index 0000000..742d475 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Fraktur/Regular/Main.js @@ -0,0 +1,78 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Fraktur/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'STIXMathJax_Fraktur', + id: 'STIXWEBFRAKTUR', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210C: [695,204,824,43,773,'626 695l19 -13c-50 -70 -121 -135 -219 -135c-47 0 -83 9 -133 50c-27 -22 -41 -54 -41 -91c0 -47 20 -99 57 -139c118 69 164 95 224 127c153 -35 240 -142 240 -279c0 -107 -38 -159 -89 -212c-79 -83 -190 -135 -244 -207h-13c-40 41 -77 62 -132 62 c-42 0 -86 -21 -114 -56l-20 9c32 72 90 136 185 136c45 0 83 -14 129 -64c144 90 181 211 181 289c0 115 -71 222 -185 222c-39 0 -79 -11 -143 -54l44 -56c29 -37 35 -61 35 -82c0 -60 -41 -112 -177 -224c-24 18 -99 60 -117 65c0 0 -34 -33 -46 -53l-24 15l104 147 c19 -12 130 -78 135 -78c17 16 30 28 30 62c0 67 -157 157 -157 304c0 100 126 196 202 255c41 -38 86 -53 131 -53c44 0 96 8 138 53'], + 0x2128: [695,204,726,50,676,'484 268v-2c114 -18 192 -97 192 -222c0 -133 -105 -248 -275 -248c-78 0 -139 13 -194 75c-40 45 -22 99 -64 99c-27 0 -57 -22 -70 -51l-23 7c9 37 51 122 132 122c83 0 103 -55 122 -107c21 -59 44 -107 121 -107c107 0 126 98 126 195c0 128 -65 210 -157 210 c-81 0 -113 -27 -157 -84l-24 14c30 46 61 87 134 102v2c-67 12 -96 54 -115 89l27 18c35 -54 84 -77 128 -77c78 0 147 68 147 173c0 129 -91 171 -176 171c-100 0 -175 -54 -220 -179l-25 7c34 132 124 220 275 220c139 0 263 -75 263 -215c0 -94 -58 -179 -167 -212'], + 0x212D: [695,24,717,47,675,'659 678l16 -16c-24 -35 -74 -110 -136 -110c-49 0 -79 12 -108 46c-28 -28 -39 -51 -39 -73c0 -78 142 -150 142 -257c0 -71 -78 -135 -158 -135c-20 0 -47 4 -67 15l11 22c16 -8 27 -11 40 -11c34 0 64 18 64 59c0 105 -116 147 -116 255c0 82 118 163 186 222 c37 -35 66 -54 92 -54c23 0 46 11 73 37zM624 173l20 -12c-48 -93 -141 -185 -274 -185c-219 0 -323 203 -323 380c0 122 69 329 253 329c49 0 77 -18 95 -37l-16 -19c-19 12 -39 16 -64 16c-102 0 -151 -137 -151 -246c0 -156 66 -334 246 -334c82 0 149 37 214 108'], + 0x1D504: [695,22,785,47,742,'742 65l-148 -87h-14c-46 27 -65 86 -68 125l-235 -125c-42 52 -131 108 -186 126v14c132 51 245 147 245 328c0 38 -1 120 -30 174c-16 29 -50 44 -83 44c-39 0 -77 -22 -77 -68c0 -77 115 -112 115 -207c0 -75 -93 -136 -166 -153l-9 22c28 9 75 43 75 86 c0 81 -114 101 -114 195c0 99 85 156 185 156c150 0 229 -110 229 -212c0 -159 -82 -231 -226 -323v-1c54 -26 90 -62 128 -94l149 71v293c0 78 0 129 -8 180l227 84l7 -28c-106 -30 -109 -89 -109 -186v-355c0 -42 19 -61 42 -61c9 0 20 3 31 9l27 14'], + 0x1D505: [704,24,822,48,774,'644 408v-2c85 -34 130 -112 130 -189c0 -137 -149 -241 -322 -241c-86 0 -131 14 -177 49c-38 29 -54 54 -97 54c-50 0 -91 -17 -110 -49l-20 14c33 53 99 130 179 130h10c30 16 103 60 103 257c0 34 -2 111 -32 170c-19 37 -45 63 -82 63c-42 0 -66 -32 -66 -67 c0 -94 115 -76 115 -196c0 -69 -80 -133 -166 -154l-9 22c28 9 75 38 75 81c0 44 -22 63 -47 83c-36 30 -67 57 -67 107c0 99 85 155 185 155c80 0 143 -41 178 -91h2l127 100c130 0 196 -71 196 -149c0 -60 -24 -117 -105 -147zM632 531c0 39 -29 96 -93 96 c-39 0 -54 -15 -93 -54c11 -31 19 -79 19 -108s-4 -60 -10 -86c144 5 177 84 177 152zM282 163v-3c61 -17 92 -53 127 -80c42 -32 80 -55 115 -55c89 0 130 77 130 174c0 88 -82 149 -168 149c-9 0 -27 -2 -40 -6c-31 -87 -76 -124 -164 -179'], + 0x1D507: [695,24,868,50,817,'227 361v-24c-13 -2 -20 -4 -35 -4c-86 0 -142 55 -142 136c0 132 136 226 306 226c231 0 461 -169 461 -414c0 -78 -27 -155 -87 -213c-58 -56 -146 -92 -264 -92c-138 0 -181 100 -274 100c-41 0 -79 -15 -109 -46l-18 13c33 53 91 133 181 133 c131 0 198 -136 311 -136c130 0 216 93 216 225c0 149 -166 282 -337 307c-25 -25 -35 -42 -35 -60c0 -63 119 -93 119 -187c0 -69 -73 -134 -155 -134c-24 0 -47 5 -68 16l10 21c14 -7 28 -10 41 -10c36 0 64 24 64 62c0 25 -15 43 -35 63c-27 26 -59 47 -60 112 c0 32 40 91 80 123v2c-23 5 -54 7 -78 7c-94 0 -206 -48 -206 -152c0 -41 27 -76 85 -76c12 0 20 0 29 2'], + 0x1D508: [695,24,729,50,678,'662 678l16 -16c-28 -35 -74 -110 -136 -110c-49 0 -79 12 -108 46c-17 -16 -39 -37 -39 -71c0 -46 38 -91 77 -128c33 46 75 87 121 87c23 0 50 -11 68 -24v-123h-22c-21 46 -49 72 -80 72c-20 0 -43 -11 -65 -34v-2c29 -32 43 -71 43 -107c0 -70 -78 -135 -158 -135 c-23 0 -47 4 -67 15l11 22c14 -8 28 -11 40 -11c34 0 64 17 64 59c0 100 -116 163 -116 255c0 57 49 109 186 222c37 -35 66 -54 92 -54c23 0 46 11 73 37zM627 173l20 -12c-48 -93 -141 -185 -274 -185c-219 0 -323 203 -323 380c0 152 68 329 253 329c49 0 77 -18 95 -37 l-16 -19c-19 12 -39 17 -64 17c-102 0 -151 -138 -151 -247c0 -156 66 -334 246 -334c82 0 149 37 214 108'], + 0x1D509: [695,204,767,50,716,'695 675l21 -6c-16 -60 -59 -195 -172 -195c-8 0 -17 1 -26 3c-37 -40 -55 -81 -55 -135c0 -29 25 -51 41 -68c33 46 75 87 121 87c27 0 51 -11 68 -25v-122h-22c-21 46 -48 72 -80 72c-20 0 -44 -20 -65 -40c53 -51 117 -110 117 -219c0 -127 -134 -231 -278 -231 c-138 0 -266 66 -266 190c0 88 76 128 76 193c0 22 -15 35 -38 35c-22 0 -52 -22 -64 -59l-23 6c12 44 45 108 125 108c72 0 109 -51 109 -99c0 -76 -69 -116 -69 -200c0 -83 75 -136 148 -136c88 0 163 51 163 154c0 157 -158 196 -158 301c0 77 56 143 116 198v3 c-35 14 -61 28 -82 41c-49 31 -101 64 -166 64c-50 0 -110 -41 -110 -114c0 -85 62 -114 121 -114c15 0 30 2 45 4v-24c-19 -4 -42 -6 -58 -6c-104 0 -176 70 -176 156c0 102 88 198 220 198c92 0 158 -42 213 -79c40 -27 86 -42 110 -42c23 0 66 31 94 101'], + 0x1D50A: [695,24,806,50,755,'613 428v-3c80 -16 142 -74 142 -153c0 -84 -43 -155 -97 -205c-65 -60 -150 -91 -259 -91c-214 0 -349 170 -349 367c0 181 74 342 259 342c28 0 61 -11 81 -30l-14 -22c-19 15 -47 15 -60 15c-124 0 -141 -174 -141 -296c0 -162 61 -338 250 -338c141 0 213 99 213 237 c0 81 -22 140 -80 140c-20 0 -45 -9 -73 -27v-2c36 -38 62 -80 62 -124c0 -70 -73 -134 -155 -134c-22 0 -48 4 -69 15l11 22c14 -7 27 -11 40 -11c36 0 63 24 63 63c0 42 -30 83 -60 120c-48 58 -71 99 -71 153c0 96 111 178 186 229l15 -18c-43 -43 -106 -97 -106 -157 c0 -40 30 -102 59 -130c42 16 117 60 117 103c0 19 -33 42 -33 84c0 49 69 93 115 118l13 -17c-14 -11 -31 -34 -31 -60c0 -37 54 -54 54 -97c0 -44 -44 -75 -82 -93'], + 0x1D50D: [695,204,772,50,721,'688 660l23 -7c-16 -60 -58 -153 -174 -153c-117 0 -152 95 -266 95c-50 0 -117 -32 -117 -113c0 -62 50 -97 106 -97c20 0 41 5 61 14l8 -23c-29 -15 -49 -19 -77 -19c-93 0 -166 55 -166 151c0 112 88 187 217 187c151 0 176 -95 292 -95c60 0 85 44 93 60zM721 362 l-23 -10c-21 41 -50 59 -98 59c-25 0 -64 -23 -64 -67c0 -87 125 -195 125 -316c0 -126 -132 -232 -278 -232c-95 0 -157 22 -196 53c-48 37 -53 84 -53 119c0 24 17 65 17 92c0 14 -7 29 -27 29c-22 0 -37 -15 -51 -44l-23 6c18 59 65 113 127 113c78 0 97 -48 97 -91 c0 -41 -20 -76 -20 -113c0 -54 28 -126 139 -126c87 0 146 66 146 153c0 110 -112 186 -112 314c0 88 82 156 150 156c87 0 124 -46 144 -95'], + 0x1D50E: [695,22,846,50,801,'785 113l16 -20c-33 -32 -120 -93 -166 -115h-14c-51 31 -73 67 -89 108c-27 72 -23 210 -107 210c-13 0 -28 -6 -45 -13v-1c31 -36 34 -59 34 -80c0 -60 -41 -112 -177 -224c-24 18 -102 61 -120 66c0 0 -34 -33 -46 -53l-21 14l104 147c19 -12 130 -78 135 -78 c17 16 30 28 30 62c0 67 -157 151 -157 303c0 171 150 256 306 256c140 0 253 -90 280 -198l-22 -7c-47 107 -151 161 -256 161c-91 0 -203 -44 -204 -159c0 -24 5 -53 22 -77h2c5 84 72 166 163 166c52 0 93 -11 131 -47c40 -37 57 -131 111 -140v-14l-167 -49v-3 c58 -33 91 -92 109 -152c19 -63 56 -107 77 -107c10 0 56 27 71 44zM604 382v2c-56 16 -81 51 -97 82c-20 39 -42 71 -79 71c-69 0 -112 -82 -112 -153c0 -18 9 -36 13 -40l30 -36'], + 0x1D50F: [695,24,669,47,626,'605 141l21 -8c-20 -67 -69 -157 -160 -157c-114 0 -193 98 -284 98c-40 0 -90 -12 -112 -78l-23 7c13 66 73 168 173 171c16 17 29 43 29 71c0 91 -141 131 -141 260c0 114 136 190 253 190c106 0 245 -61 245 -170c0 -103 -78 -138 -78 -202c0 -58 47 -83 86 -95 l-9 -22c-77 6 -176 61 -176 129c0 115 70 120 70 221c0 76 -67 101 -128 101c-70 0 -155 -24 -155 -111c0 -96 128 -153 128 -233c0 -59 -53 -109 -85 -139c110 -17 179 -98 249 -98c33 0 71 12 97 65'], + 0x1D510: [695,22,1083,50,1031,'1012 105l19 -16c-24 -32 -85 -90 -131 -111h-14c-74 26 -98 104 -98 202c0 130 81 262 168 314v2c-150 24 -59 152 -163 152c-42 0 -83 -45 -83 -99c6 -32 9 -77 9 -116c0 -84 -3 -153 -55 -250c-35 -65 -94 -147 -147 -205c-24 14 -66 48 -96 62 c-10 -8 -23 -19 -45 -49l-22 14l94 145c19 -12 82 -62 94 -62c52 0 52 229 52 323c0 76 0 161 -14 198c-8 22 -30 39 -61 39c-43 0 -79 -48 -79 -86v-123c0 -88 -3 -154 -55 -254c-34 -65 -93 -149 -147 -207c-27 15 -98 60 -112 62c-8 -4 -27 -23 -44 -49l-22 14l94 145 c20 -12 97 -62 110 -62c51 0 51 205 51 317c0 76 0 259 -99 259c-42 0 -67 -33 -67 -67c0 -99 115 -84 115 -196c0 -69 -80 -133 -166 -154l-9 22c28 9 75 38 75 81c0 91 -114 98 -114 190c0 99 85 155 185 155c73 0 144 -34 180 -91h2c22 47 76 87 132 87 c64 0 111 -26 142 -87h2c25 49 73 87 130 87c77 0 110 -31 127 -67c23 -49 20 -108 77 -113v-14c-111 -50 -122 -167 -122 -289c0 -34 1 -153 36 -153c24 1 58 36 71 50'], + 0x1D511: [695,22,827,50,775,'775 511v-14c-111 -50 -124 -167 -124 -289c0 -33 0 -153 31 -153c24 0 58 36 71 50l19 -16c-24 -32 -85 -90 -131 -111h-14c-74 26 -93 104 -93 202c0 129 82 262 163 314v2c-57 9 -79 33 -90 58c-19 44 -5 96 -80 96c-41 0 -88 -45 -88 -101c6 -53 10 -102 10 -149 c0 -69 -14 -136 -55 -215c-34 -65 -93 -149 -147 -207c-27 16 -107 60 -121 62c-7 -6 -27 -23 -44 -49l-22 14l94 145c20 -12 106 -62 119 -62c51 0 51 205 51 317c0 76 -7 259 -108 259c-42 0 -67 -33 -67 -67c0 -99 115 -84 115 -196c0 -69 -80 -133 -166 -154l-9 22 c28 9 75 38 75 81c0 86 -114 98 -114 190c0 99 85 155 185 155c73 0 150 -34 186 -91h2c28 61 87 89 147 89c24 0 48 -6 68 -14c98 -40 32 -158 137 -168'], + 0x1D512: [695,24,837,37,786,'55 14l-18 13c22 54 73 118 133 140c18 27 27 62 27 85c0 89 -117 121 -117 235c0 83 68 163 132 208c16 -17 44 -25 74 -25c52 0 79 21 127 21c101 0 169 -28 235 -84c84 -71 138 -181 138 -313c0 -77 -29 -168 -87 -224s-146 -94 -264 -94c-138 0 -181 100 -274 100 c-25 0 -64 -8 -106 -62zM742 277c0 180 -129 314 -302 314c-34 0 -91 -14 -122 -14c-61 0 -92 31 -108 70c-33 -21 -41 -72 -41 -108c0 -105 123 -133 123 -240c0 -42 -28 -82 -76 -123c130 0 197 -136 310 -136c130 0 216 105 216 237'], + 0x1D513: [695,204,823,40,773,'769 521v-16c-51 -9 -67 -50 -67 -95c0 -82 71 -133 71 -245c0 -95 -130 -189 -223 -189c-44 0 -80 7 -114 22v-202h-117v235c-17 15 -36 21 -56 21c-46 0 -86 -25 -114 -75l-20 9c19 71 65 168 169 168c6 0 14 0 21 -1v250c0 34 0 138 -30 197c-20 39 -43 64 -83 64 c-42 -1 -67 -33 -67 -66c0 -99 115 -87 115 -199c0 -69 -80 -142 -166 -163l-9 22c28 9 75 47 75 90c0 86 -114 101 -114 193c0 99 86 154 186 154c86 0 153 -36 186 -90h2c28 61 70 88 143 88c166 0 107 -153 212 -172zM695 503v2c-152 13 -89 145 -177 145 c-68 0 -82 -79 -82 -136v-379c53 -40 75 -111 138 -111c36 0 93 22 93 96c0 73 -82 149 -82 244c0 52 38 107 110 139'], + 0x1D514: [695,64,865,37,814,'798 36l16 -13c-27 -51 -66 -87 -122 -87c-46 0 -78 32 -93 69c-46 -18 -101 -29 -164 -29c-138 0 -181 100 -274 100c-25 0 -64 -8 -106 -62l-18 13c22 54 73 118 133 140c18 27 27 62 27 85c0 89 -117 121 -117 235c0 83 68 163 132 208c16 -17 44 -25 74 -25 c52 0 79 21 127 21c101 0 169 -28 235 -84c84 -71 138 -181 138 -313c0 -77 -29 -168 -88 -226c9 -38 19 -66 41 -66c18 0 42 10 59 34zM491 124l-16 16c23 43 62 63 101 63c53 0 95 -37 102 -99c41 43 64 104 64 173c0 180 -129 314 -302 314c-34 0 -91 -14 -122 -14 c-61 0 -92 31 -108 70c-33 -21 -41 -72 -41 -108c0 -105 123 -133 123 -240c0 -42 -28 -82 -76 -123c130 0 197 -136 310 -136c21 0 41 3 59 8v1c-15 46 -21 94 -59 94c-10 0 -22 -6 -35 -19'], + 0x1D516: [695,24,856,55,801,'440 459l-11 -17c-33 14 -42 14 -61 14c-57 0 -87 -48 -87 -99c0 -41 32 -77 76 -77c47 0 66 29 99 61c59 57 110 83 171 83c85 0 174 -59 174 -178c0 -156 -161 -270 -339 -270c-248 0 -407 175 -407 391c0 157 141 328 329 328c141 0 172 -68 267 -68 c36 0 72 22 110 58l18 -13c-28 -53 -89 -142 -174 -142c-115 0 -179 65 -270 65c-142 0 -242 -90 -242 -226c0 -197 156 -268 366 -268c118 0 304 1 304 147c0 64 -48 110 -113 110c-101 0 -128 -178 -293 -178c-86 0 -146 86 -146 158c0 81 68 148 144 148 c30 0 60 -3 85 -27'], + 0x1D517: [695,24,766,47,722,'684 667l21 -6c-16 -60 -59 -177 -172 -177c-28 0 -63 14 -92 29c-16 -12 -22 -36 -22 -56c0 -48 104 -82 104 -148c0 -78 -63 -117 -145 -117c-24 0 -47 5 -68 16l10 21c12 -7 25 -10 36 -10c32 0 57 25 57 62c0 47 -62 88 -62 146c0 32 20 59 60 100l-1 3 c-47 32 -95 65 -169 65c-55 0 -122 -46 -122 -119c0 -79 52 -123 112 -125v-24c-104 0 -184 74 -184 160c0 109 88 208 220 208c92 0 161 -36 216 -73c40 -27 83 -38 107 -38c23 0 66 13 94 83zM705 126l17 -16c-49 -75 -105 -134 -223 -134c-138 0 -191 84 -284 84 c-25 0 -85 -11 -119 -68l-18 13c34 91 101 155 181 155c131 0 208 -96 321 -96c58 0 89 19 125 62'], + 0x1D518: [696,22,787,50,744,'744 65l-148 -87h-14c-46 27 -65 86 -68 127l-262 -127c-42 48 -141 110 -202 126v14c59 26 136 65 136 209v224c0 41 -18 60 -41 60c-18 0 -47 -12 -73 -30l-14 25l164 90h15c53 -26 74 -106 74 -141v-147c0 -105 -32 -152 -135 -236c40 -15 130 -84 162 -112l176 80 v290c0 73 0 129 -8 180l227 86l7 -28c-106 -30 -109 -91 -109 -188v-356c0 -42 19 -61 42 -61c9 0 20 3 31 9l27 14'], + 0x1D519: [695,24,831,48,781,'777 521v-16c-51 -9 -67 -52 -67 -94c0 -86 71 -133 71 -246c0 -53 -52 -115 -112 -152c-45 -28 -95 -37 -172 -37c-91 0 -142 22 -186 55c-35 26 -67 46 -95 46c-46 0 -97 -24 -128 -81l-18 7c24 97 103 174 178 176c30 17 79 57 79 252c0 34 -2 111 -32 170 c-19 37 -45 63 -81 63c-42 0 -67 -31 -67 -68c0 -99 115 -83 115 -195c0 -69 -80 -142 -166 -163l-9 22c28 9 75 37 75 81c0 92 -114 100 -114 199s86 155 185 155c81 0 143 -41 178 -91h2c25 47 74 89 144 89c171 0 117 -149 220 -172zM703 503v2c-152 13 -92 145 -182 145 c-40 0 -73 -35 -90 -87c13 -32 21 -71 21 -98c0 -87 -16 -190 -154 -290v-2c111 -9 169 -149 272 -149c49 0 105 21 105 96c0 70 -82 149 -82 245c0 51 38 105 110 138'], + 0x1D51A: [695,24,1075,48,1025,'1024 521v-17c-52 -6 -70 -49 -70 -93c0 -89 71 -131 71 -246c0 -42 -38 -104 -95 -145c-38 -27 -84 -44 -133 -44c-69 0 -133 19 -174 54c-36 -32 -86 -54 -161 -54c-121 0 -167 100 -245 100c-61 0 -116 -46 -129 -85l-21 6c25 100 96 180 175 182c32 18 84 57 84 243 c0 96 -24 242 -112 242c-39 0 -67 -31 -67 -68c0 -91 113 -99 113 -196c0 -78 -89 -136 -163 -153l-10 22c29 8 75 39 75 81c0 85 -114 93 -114 194c0 96 85 151 191 151c79 0 136 -40 171 -89h2c31 44 73 87 153 87c43 0 85 -18 110 -36c33 17 76 36 118 36 c201 0 117 -150 231 -172zM947 502v2c-144 19 -92 146 -186 146c-76 0 -131 -90 -131 -151c0 -94 108 -135 109 -246c0 -41 -18 -101 -42 -139c28 -64 92 -89 137 -89c56 0 85 48 85 80c0 87 -82 165 -82 262c0 50 45 107 110 135zM291 175l1 -1c114 -22 163 -149 231 -149 c75 0 112 83 112 161c0 38 -18 75 -37 100c-36 47 -57 97 -57 148c0 56 30 116 75 168c-20 34 -38 48 -77 48c-49 0 -95 -47 -109 -84c8 -20 21 -64 21 -101c0 -102 -21 -191 -160 -290'], + 0x1D51B: [695,31,763,46,735,'735 668l-94 -146c-19 12 -120 71 -125 71c-27 -1 -67 -103 -67 -174v-41c50 0 112 5 153 55l17 -9c-32 -84 -65 -123 -170 -123v-71c0 -61 60 -148 124 -148c29 0 89 33 111 55l20 -26l-173 -133h-14c-73 28 -123 60 -165 138c-31 -49 -81 -104 -126 -147 c-25 15 -98 56 -114 58c-9 -6 -32 -25 -44 -45l-22 14l94 146c19 -12 121 -71 126 -71c26 0 66 91 66 200v30h-46c-38 0 -75 -20 -106 -71l-20 5c23 95 70 143 172 143v41c0 66 -40 167 -104 167c-40 0 -101 -42 -126 -67l-22 24c65 53 131 103 188 152h14 c69 -21 124 -94 147 -147c31 45 82 108 126 147c30 -17 98 -56 114 -62c6 5 32 29 44 49'], + 0x1D51C: [695,204,766,47,714,'426 604h2c16 42 58 89 116 89c131 0 170 -150 170 -309c0 -269 -106 -424 -280 -588h-13c-39 41 -70 62 -125 62c-49 0 -93 -21 -121 -57l-20 10c32 73 85 136 192 136c45 0 95 -29 126 -65c34 38 116 154 116 493c0 142 -1 275 -59 275c-47 0 -85 -57 -85 -100 c4 -32 8 -54 8 -87c0 -158 -72 -223 -212 -314v-2c35 -15 90 -41 118 -67l88 35l12 -23l-185 -104c-42 47 -126 83 -188 97v14c141 61 242 135 242 321c0 47 0 127 -30 179c-24 42 -50 65 -86 65c-41 0 -66 -33 -66 -68c0 -77 112 -119 112 -218c0 -74 -92 -141 -167 -157 l-8 22c28 9 75 50 75 91c0 80 -111 111 -111 205c0 101 85 156 190 156c61 0 151 -28 189 -91'], + 0x1D51E: [468,18,530,51,479,'479 59l-99 -77h-14c-25 13 -48 46 -58 78c-44 -27 -102 -57 -152 -78h-14c-62 51 -91 112 -91 209c0 65 25 128 69 164c51 42 111 73 154 113h14c44 -28 96 -66 167 -86v-14c-26 -2 -46 -22 -46 -50v-220c0 -9 2 -40 22 -40c9 0 20 5 36 19zM307 97v239l-87 53 c-59 -54 -67 -118 -67 -190s27 -143 71 -143c19 0 70 25 83 41'], + 0x1D51F: [695,18,513,46,462,'462 352v-170c0 -79 -142 -151 -205 -200h-14c-60 24 -122 55 -191 71v15c37 15 48 12 48 62v388c0 67 -25 118 -54 151l14 13c37 -26 69 -64 87 -92c28 51 80 105 167 105c9 0 17 0 39 -3v-17c-107 0 -151 -103 -151 -188v-86l143 67h14c62 -25 103 -68 103 -116z M360 159v131c0 41 -14 72 -36 95c-10 10 -25 21 -31 21c-11 0 -62 -24 -91 -38v-254l113 -53c39 30 45 48 45 98'], + 0x1D520: [468,18,385,57,344,'344 384l-84 -56l-61 76c-5 -3 -11 -5 -20 -16c-20 -26 -20 -74 -20 -116v-60c0 -46 0 -108 26 -142c11 -15 33 -25 54 -25c22 0 53 6 90 26l9 -23l-171 -66h-14c-80 52 -96 138 -96 214c0 119 13 168 134 242c25 16 47 24 74 30h14'], + 0x1D521: [695,18,506,45,455,'455 346v-155c0 -70 -61 -112 -111 -154c-18 -15 -34 -30 -60 -55h-15c-24 14 -112 50 -153 50h-71v14c26 3 47 22 47 49v286c43 12 91 34 131 58v3c-67 33 -162 79 -162 152c0 79 92 101 177 101v-17c-30 -4 -80 -19 -80 -55c0 -53 67 -63 147 -107 c96 -53 150 -96 150 -170zM353 158v155c0 69 -34 87 -79 113c-15 -5 -34 -14 -58 -28c-18 -10 -22 -13 -22 -50v-226l130 -55c26 26 29 52 29 91'], + 0x1D522: [468,18,420,47,379,'379 255l-230 -86c0 -68 65 -124 112 -124c9 0 77 25 98 36l10 -21l-167 -78h-14c-29 0 -66 31 -78 46c-49 57 -63 127 -63 191c0 123 62 186 164 228c22 9 51 16 76 21h14zM149 201l112 43c12 5 17 13 17 32c0 18 -43 118 -57 142c-12 -2 -22 -7 -30 -14 c-37 -25 -42 -95 -42 -141v-62'], + 0x1D523: [694,209,327,27,316,'316 389h-113l-29 -598h-59l-29 598h-59v14c21 7 55 17 55 66c0 30 -7 64 -7 99c0 43 18 126 88 126c27 0 42 -36 79 -36c23 0 39 5 55 26l14 -8c-14 -32 -31 -109 -88 -109c-33 0 -58 21 -81 21c-18 0 -33 -12 -33 -39c0 -87 82 -105 164 -105h43v-55'], + 0x1D524: [468,209,499,51,461,'414 318v-206c0 -46 12 -73 23 -94c13 -24 24 -48 24 -72c0 -103 -109 -155 -198 -155c-93 0 -113 29 -131 52c-15 20 -28 36 -75 36v20c37 15 83 25 104 25c46 0 64 -37 72 -62c7 -23 25 -42 38 -42c53 0 91 16 91 87c0 59 -41 72 -49 154h-1c-44 -27 -106 -58 -157 -79 h-14c-61 51 -90 112 -90 209c0 65 25 128 69 164c51 42 116 73 159 113h14c44 -28 91 -66 162 -86v-14c-26 -2 -41 -22 -41 -50zM312 97v239l-92 53c-55 -56 -67 -118 -67 -190s24 -143 68 -143c19 0 78 25 91 41'], + 0x1D525: [695,209,528,48,476,'476 355v-272c0 -106 -77 -221 -173 -292l-14 15c48 56 85 104 85 220v258c0 47 -13 80 -36 101c-11 10 -26 21 -32 21c-7 0 -61 -24 -90 -38v-252l57 -30c5 0 38 41 47 55l20 -16l-102 -143h-14c-28 19 -97 59 -176 71v15c42 6 66 14 66 60v390c0 68 -26 120 -54 151 l14 13c37 -26 69 -64 87 -92c28 49 80 105 167 105c8 0 26 0 39 -3v-17c-106 0 -151 -103 -151 -188v-86l143 67h14c61 -21 103 -72 103 -113'], + 0x1D526: [694,18,384,42,338,'230 651c0 -15 -31 -86 -54 -86c-25 0 -55 70 -55 86c0 23 22 43 55 43s54 -21 54 -43zM338 104l-108 -122h-14c-39 19 -90 57 -90 142v223c0 31 -12 32 -18 32c-12 0 -40 -21 -51 -30l-15 22l129 97h14c32 -28 75 -54 108 -67v-14c-27 -3 -65 -12 -65 -45v-172 c0 -71 16 -84 42 -84c9 0 22 5 32 18l16 17'], + 0x1D527: [695,209,345,44,311,'248 652c0 -15 -31 -86 -54 -86c-25 0 -55 70 -55 86c0 23 22 43 55 43s54 -21 54 -43zM311 401v-14c-27 -3 -65 -12 -65 -45v-383c0 -56 19 -107 42 -142l-15 -14c-28 26 -52 50 -67 75c-21 -38 -76 -87 -133 -87c-9 0 -19 0 -29 3v17c49 0 100 48 100 156v378 c0 31 -12 32 -18 32c-11 0 -40 -24 -51 -33l-15 22l129 102h14c32 -28 75 -54 108 -67'], + 0x1D528: [695,18,420,48,368,'368 390h-147v-267l67 -30c5 0 42 51 51 66l20 -17l-106 -160h-14c-28 19 -107 66 -186 78v15c42 6 66 14 66 60v255h-71v14c33 6 71 21 71 62v52c0 68 -26 120 -54 151l14 13c37 -26 69 -64 87 -92c28 49 76 105 163 105c8 0 26 0 39 -3v-17c-106 0 -147 -103 -147 -188 v-42h37v62c0 79 60 107 110 107v-109h-14c-5 20 -18 27 -28 27c-20 0 -39 -25 -39 -67v-20h81v-55'], + 0x1D529: [695,18,398,46,350,'350 124l-114 -142h-14c-28 19 -97 59 -176 71v15c42 6 66 14 66 60v390c0 68 -26 120 -54 151l14 13c37 -26 69 -64 87 -92c28 49 80 105 171 105v-20c-81 -27 -116 -98 -116 -188v-371l62 -32c5 0 45 42 54 56'], + 0x1D52A: [468,25,910,59,856,'856 84l-101 -102h-16c-39 19 -70 58 -70 142v229l-62 47l-97 -45v-216c0 -31 13 -57 46 -57v-14c-49 0 -90 -46 -90 -93h-14c0 47 -43 93 -90 93v14c32 0 46 26 46 57v157c0 20 -2 62 -25 85c-11 10 -22 17 -34 17c-11 0 -77 -31 -100 -43v-216c0 -31 13 -57 46 -57v-14 c-48 0 -90 -46 -90 -93h-14c0 47 -42 93 -90 93v14c32 0 46 26 46 57v205c0 25 -11 30 -24 30c-7 0 -18 -1 -49 -30l-15 21l110 103h15c40 -17 57 -49 62 -79l158 79h14c48 -16 72 -44 84 -81l171 81h14c35 -28 92 -59 128 -62v-15c-18 -3 -44 -13 -44 -34v-197 c0 -71 6 -84 22 -84c8 0 20 1 32 13l12 13'], + 0x1D52B: [468,25,636,60,582,'582 85l-101 -103h-16c-39 19 -70 57 -70 142v231l-50 44l-95 -42v-218c0 -31 13 -57 46 -57v-14c-48 0 -90 -46 -90 -93h-14c0 47 -45 93 -90 93v14c32 0 46 26 46 57v205c0 24 -11 30 -24 30c-11 0 -15 0 -49 -30l-15 21l110 103h15c40 -16 57 -50 62 -78l166 78h14 c29 -26 79 -59 114 -62v-15c-22 -4 -44 -12 -44 -42v-189c0 -71 5 -84 22 -84c7 0 20 1 32 13l12 13'], + 0x1D52C: [468,18,503,50,452,'452 310v-121c0 -64 -64 -116 -114 -153c-15 -11 -35 -28 -61 -54h-14c-42 29 -130 60 -213 60v14c29 10 48 31 48 64v255c67 19 147 52 204 93h14c35 -14 80 -42 90 -51c25 -28 46 -77 46 -107zM200 117l118 -51c32 27 32 64 32 127c0 68 -1 142 -45 182 c-16 14 -39 19 -53 19c-19 0 -38 -15 -52 -29v-248'], + 0x1D52D: [586,209,555,38,504,'504 350v-171c0 -73 -132 -148 -195 -197h-15c-11 8 -34 17 -49 21v-212h-102v232c-25 0 -58 0 -88 -40l-17 11c28 73 63 108 105 119v240c0 58 -63 80 -63 137c0 37 24 70 58 96l17 -15c-8 -10 -15 -15 -15 -43c0 -49 92 -45 105 -127l146 67h14c56 -24 99 -68 99 -118z M402 159v131c0 41 -14 72 -36 95c-10 10 -23 22 -29 22c-11 0 -63 -25 -92 -39v-256c44 -10 78 -25 113 -51c39 30 44 48 44 98'], + 0x1D52E: [468,209,507,51,459,'459 395h-17c-22 0 -33 -12 -33 -44v-560h-102v266c-50 -28 -96 -54 -150 -75h-15c-61 51 -91 112 -91 216c0 57 26 123 69 157c54 44 110 73 154 113h14c58 -33 96 -55 171 -58v-15zM307 97v245l-87 47c-41 -37 -67 -122 -67 -184c0 -76 25 -149 71 -149 c18 0 75 29 83 41'], + 0x1D52F: [468,18,463,38,426,'426 387l-73 -74l-66 68l-45 -44v-185c0 -27 1 -35 10 -41c13 -9 57 -27 65 -27c5 0 60 44 79 59l15 -17l-142 -144h-14c-50 34 -103 52 -167 52v14c26 5 52 27 52 52v230c0 27 -16 61 -37 61c-14 0 -35 -12 -50 -25l-15 21l109 81h14c48 -21 66 -58 77 -94l95 94h14'], + 0x1D530: [623,24,518,49,469,'170 519l-19 11c27 63 82 93 135 93c71 0 139 -50 139 -134c0 -66 -59 -142 -150 -142c-47 0 -76 17 -108 45c-14 -14 -25 -40 -25 -64c0 -45 30 -95 70 -95c43 0 60 42 80 73c10 16 27 27 48 27c56 0 102 -53 114 -77c10 -19 15 -46 15 -61c0 -77 -101 -166 -163 -217 h-15c-42 30 -81 46 -121 46s-78 -21 -104 -48l-17 12c48 89 103 122 166 122c44 0 82 -10 129 -52c26 27 32 68 32 109c0 50 -30 80 -68 80c-20 0 -57 -40 -77 -71c-10 -15 -31 -29 -51 -29c-67 0 -122 56 -122 131c0 54 25 97 62 122c45 32 73 47 102 68h14 c13 -25 36 -35 57 -35c35 0 67 33 67 78c0 54 -44 79 -86 79c-49 0 -80 -26 -104 -71'], + 0x1D531: [656,18,374,38,337,'337 89l-117 -107h-14c-44 23 -119 58 -161 58v14c44 5 68 19 68 71v275h-75v15c96 32 118 146 118 241h59v-200h92v-56h-92v-294l60 -33l44 35'], + 0x1D532: [478,18,647,60,593,'593 79l-119 -97h-15c-40 16 -57 54 -62 81l-169 -81h-16c-21 25 -74 59 -109 62v14c22 4 44 13 44 42v245c0 23 -12 31 -25 31c-7 0 -10 -1 -48 -31l-14 20l109 103h15c40 -16 65 -37 65 -122v-252l51 -49l94 44v225c0 32 -13 58 -46 58v14c48 0 90 46 90 92h14 c0 -46 43 -92 90 -92v-14c-32 0 -46 -26 -46 -58v-200c0 -28 13 -41 30 -41c10 0 21 4 32 12l20 14'], + 0x1D533: [586,18,515,47,464,'464 310v-121c0 -64 -64 -116 -114 -153c-15 -11 -32 -29 -61 -54h-14c-42 29 -130 60 -213 60v14c29 10 48 31 48 64v233c0 59 -63 80 -63 137c0 37 24 70 58 96l17 -15c-8 -10 -15 -15 -15 -43c0 -47 83 -45 102 -115c32 12 76 33 105 55h14c35 -14 80 -42 90 -51 c25 -28 46 -77 46 -107zM212 117l118 -51c32 26 32 64 32 127c0 68 -1 142 -45 182c-16 14 -39 19 -53 19c-19 0 -38 -15 -52 -29v-248'], + 0x1D534: [586,25,759,41,708,'708 310v-121c0 -64 -64 -116 -114 -153c-15 -11 -35 -27 -61 -54h-14c-42 29 -129 60 -212 60v14c29 10 48 31 48 64v176c0 20 -2 62 -25 85c-11 10 -22 17 -34 17c-11 0 -67 -31 -90 -43v-216c0 -31 13 -57 46 -57v-14c-48 0 -90 -46 -90 -93h-14c0 47 -42 93 -90 93 v14c32 0 46 26 46 57v214c0 59 -63 80 -63 137c0 37 24 70 58 96l17 -15c-8 -10 -15 -15 -15 -43c0 -49 89 -47 103 -138h2l145 78h14c38 -13 65 -36 79 -61c37 16 83 34 124 61h14c35 -14 70 -42 80 -51c25 -28 46 -77 46 -107zM457 116l117 -50c32 27 32 64 32 127 c0 68 0 142 -44 182c-16 14 -34 19 -48 19c-19 0 -43 -15 -57 -29v-249'], + 0x1D535: [468,189,456,45,406,'406 401l-71 -60l-43 52l-41 -35v-100h70v-55h-70v-92c20 -16 54 -45 69 -45c11 0 21 6 34 19l16 16l19 -18l-112 -101h-15l-113 77c-25 -27 -39 -48 -39 -78c0 -38 26 -70 78 -88l-30 -82h-14c-36 18 -93 50 -93 127c0 54 19 93 98 155v110h-70v55h70v41 c0 30 -1 92 -42 92c-13 0 -27 -7 -47 -20l-15 21l111 76h14c46 -21 62 -55 72 -82l88 82h14'], + 0x1D536: [586,209,516,48,464,'464 355v-272c0 -106 -77 -221 -173 -292l-14 15c48 56 85 104 85 220v258c0 28 -9 81 -32 102c-11 10 -23 22 -29 22c-8 0 -59 -24 -88 -40v-252l55 -33c7 7 31 44 40 58l20 -16l-91 -143h-16c-28 19 -91 59 -170 71v15c34 1 60 14 60 60v221c0 62 -63 83 -63 141 c0 37 24 70 58 96l17 -15c-8 -10 -15 -15 -15 -43c0 -51 92 -45 105 -127l134 67h23c52 -21 94 -72 94 -113'], + 0x1D537: [468,209,457,43,407,'198 209l198 -110c8 -24 11 -47 11 -68c0 -110 -95 -185 -220 -240h-21c-60 29 -105 77 -123 160v18c89 64 148 114 196 178l-95 53v15c62 22 105 64 105 115c0 27 -16 53 -57 53c-9 0 -64 -25 -86 -38l-10 23c59 24 115 62 156 100h14c57 -17 82 -56 82 -97 c0 -53 -45 -95 -150 -162zM294 106l-29 26c-39 -56 -73 -102 -122 -145c10 -58 52 -117 93 -127c23 9 71 56 71 174c0 23 -5 47 -13 72'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/Bold/Main.js new file mode 100644 index 0000000..a10d298 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/Bold/Main.js @@ -0,0 +1,280 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Latin/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Latin-bold'] = { + directory: 'Latin/Bold', + family: 'STIXMathJax_Latin', + weight: 'bold', + id: 'STIXWEBLATINB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xA1: [501,203,333,82,252,'251 417c0 -47 -38 -85 -84 -85c-47 0 -85 38 -85 86c0 47 38 83 86 83c46 0 83 -37 83 -84zM153 254h29c13 -123 23 -172 52 -268c14 -45 18 -64 18 -89c0 -63 -31 -100 -85 -100c-53 0 -84 37 -84 101c0 25 4 43 18 88c29 96 39 144 52 268'], + 0xA2: [588,140,500,53,458,'440 109l18 -18c-61 -77 -113 -105 -191 -105c-19 0 -31 2 -50 7l-47 -133h-40l51 145c-33 16 -46 26 -64 44c-42 43 -64 103 -64 174c0 143 99 250 232 250c21 0 36 -2 60 -8l44 123h40l-48 -136c44 -25 63 -51 63 -88c0 -39 -26 -64 -66 -64c-19 0 -31 6 -44 20 l-82 -230c27 -27 49 -37 83 -37c43 0 71 15 105 56zM321 397v3c0 24 -18 42 -43 42c-52 0 -84 -65 -84 -168c0 -59 9 -99 31 -146'], + 0xA4: [542,10,500,-26,526,'526 48l-58 -58l-96 98c-42 -26 -78 -37 -122 -37s-80 11 -122 37l-96 -98l-58 58l98 98c-26 39 -37 73 -37 120c0 46 11 82 37 122l-98 98l58 56l96 -96c40 25 76 35 122 35c47 0 82 -10 122 -35l96 96l58 -56l-98 -98c27 -43 37 -76 37 -122c0 -47 -11 -84 -37 -120z M377 267c0 74 -57 132 -129 132c-69 0 -125 -60 -125 -132c0 -75 56 -134 126 -134c72 0 128 59 128 134'], + 0xA6: [691,19,220,66,154,'154 414h-88v277h88v-277zM154 -19h-88v277h88v-277'], + 0xA9: [691,19,747,26,721,'544 256l-16 -74c-1 -10 -12 -18 -31 -23l-12 -3c-37 -9 -65 -14 -95 -14c-131 0 -214 76 -214 197c0 125 88 205 226 205c37 0 64 -5 103 -19c16 -6 22 -11 22 -21v-72h-19c-17 62 -50 89 -107 89c-79 0 -123 -63 -123 -177c0 -115 44 -179 123 -179c56 0 92 26 124 91 h19zM721 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 353 354 353c190 0 341 -157 341 -356zM650 338c0 168 -124 301 -280 301c-150 0 -273 -137 -273 -304c0 -168 123 -302 277 -302s276 135 276 305'], + 0xAA: [688,-397,300,-1,301,'291 443l10 -12c-24 -25 -44 -34 -73 -34c-32 0 -46 11 -53 41c-36 -30 -64 -41 -102 -41c-44 0 -74 27 -74 66c0 50 39 75 174 110v40c0 37 -14 52 -50 52c-23 0 -41 -10 -41 -22c0 -3 3 -8 9 -14c8 -8 11 -14 11 -21c0 -21 -20 -35 -48 -35c-27 0 -42 15 -42 40 c0 46 50 75 129 75c78 0 127 -31 127 -82v-156c0 -11 3 -15 11 -15c3 0 6 2 6 2zM172 465v87c-50 -15 -75 -39 -75 -73c0 -23 13 -40 32 -40c16 0 29 8 43 26'], + 0xAB: [415,-36,500,23,473,'422 393l6 5c16 13 23 17 31 17s12 -4 12 -11c0 -22 -34 -75 -93 -147c-8 -10 -16 -20 -23 -30c14 -21 26 -36 40 -54c48 -62 78 -102 78 -122c0 -9 -4 -15 -11 -15c-8 0 -15 7 -29 16l-214 173v4zM226 393l6 5c16 13 23 17 31 17s12 -4 12 -11c0 -22 -34 -75 -92 -147 c-9 -10 -16 -20 -24 -30c15 -21 25 -37 40 -54c50 -59 78 -102 78 -122c0 -9 -4 -15 -11 -15c-8 0 -15 7 -29 16l-214 173v4'], + 0xAD: [287,-171,333,44,287,'287 171h-243v116h243v-116'], + 0xB2: [688,-275,300,0,300,'300 402l-30 -127h-270v14c150 149 184 197 184 255c0 42 -33 76 -75 76c-34 0 -55 -15 -76 -54h-24c34 84 79 122 144 122c70 0 119 -46 119 -111c0 -44 -20 -80 -74 -130l-99 -92h92c66 0 74 4 93 47h16'], + 0xB3: [688,-268,300,3,297,'36 590l-20 7c35 61 84 91 149 91c67 0 106 -30 106 -81c0 -36 -13 -54 -54 -76c54 -22 80 -57 80 -107c0 -87 -85 -156 -194 -156c-61 0 -100 21 -100 54c0 19 13 32 40 41c29 -3 39 -6 67 -33c21 -20 33 -26 49 -26c38 0 63 26 63 65c0 58 -34 90 -130 121v10 c61 18 84 39 84 79c0 37 -25 61 -65 61c-31 0 -50 -13 -75 -50'], + 0xB6: [676,186,639,60,579,'579 651l-26 -2c-46 -4 -56 -6 -56 -50v-704c0 -38 3 -50 54 -54l23 -2v-25h-171v837h-50v-837h-175v25c74 7 81 11 81 52v374c-52 2 -79 9 -110 28c-58 36 -89 100 -89 188c0 134 68 195 219 195h300v-25zM259 290v361c-48 -12 -68 -25 -86 -56 c-15 -25 -23 -65 -23 -112c0 -105 34 -166 109 -193'], + 0xB8: [0,218,333,68,294,'201 0l-28 -64c12 4 20 5 32 5c56 0 89 -26 89 -70c0 -55 -50 -89 -129 -89c-34 0 -60 5 -97 18l16 37l6 -2c24 -8 37 -12 53 -12c38 0 58 14 58 41c0 23 -17 36 -46 36c-9 0 -17 -1 -28 -4l-11 8l43 96h42'], + 0xB9: [688,-275,300,28,273,'273 275h-243v20c64 0 77 10 77 60v221c0 28 -7 41 -23 41c-10 0 -25 -3 -43 -10l-13 -5v21l164 65h11v-337c0 -46 11 -55 70 -56v-20'], + 0xBA: [688,-397,330,18,312,'312 542c0 -84 -62 -145 -146 -145c-87 0 -148 61 -148 146c0 84 63 145 149 145c83 0 145 -63 145 -146zM214 534c0 103 -11 133 -50 133c-37 0 -49 -32 -49 -130c0 -89 13 -120 50 -120c36 0 49 31 49 117'], + 0xBB: [415,-36,500,27,477,'477 222l-203 -164c-2 -2 -4 -4 -7 -5c-15 -14 -21 -17 -30 -17c-8 0 -12 4 -12 11c0 22 34 76 92 147l24 30c-15 22 -27 38 -40 53c-51 61 -78 103 -78 123c0 9 5 15 11 15c7 0 16 -5 29 -16l214 -173v-4zM281 222l-203 -164l-6 -5c-16 -14 -22 -17 -31 -17 c-8 0 -12 4 -12 11c0 22 34 75 93 147c8 10 16 20 23 30c-15 22 -27 38 -40 53c-51 61 -78 103 -78 123c0 9 5 15 11 15c7 0 16 -5 29 -16l214 -173v-4'], + 0xBC: [688,12,750,28,743,'743 87h-41v-87h-94v87h-161v67c43 63 73 105 164 213l39 46h52v-260h41v-66zM609 153v175l-137 -175h137zM671 688l-439 -700h-58l441 700h56zM273 275h-243v20c64 0 77 10 77 60v221c0 28 -7 41 -23 41c-10 0 -25 -3 -43 -10l-13 -5v21l164 65h11v-337 c0 -46 11 -55 70 -56v-20'], + 0xBD: [688,12,750,-7,775,'775 127l-30 -127h-270v14l45 46c56 55 127 125 127 209c0 38 -22 77 -64 77c-36 0 -59 -25 -75 -55h-24c26 66 66 122 144 122c64 0 129 -41 129 -111c0 -58 -60 -107 -99 -144l-78 -73v-5h103c43 0 58 6 76 47h16zM629 688l-439 -700h-58l441 700h56zM238 275h-243v20 c52 0 77 2 77 60v221c0 16 -2 41 -23 41c-18 0 -39 -8 -56 -15v21l164 65h11v-337c0 -53 21 -55 70 -56v-20'], + 0xBE: [688,12,750,23,733,'733 87h-41v-87h-94v87h-161v67c43 63 73 105 164 213l39 46h52v-260h41v-66zM599 153v175l-137 -175h137zM669 688l-439 -700h-58l441 700h56zM241 533v-4c50 -20 76 -56 76 -105c0 -87 -86 -156 -194 -156c-61 0 -100 21 -100 54c0 19 13 32 40 41c29 -3 37 -8 67 -33 c22 -19 33 -26 49 -26c38 0 63 26 63 65c0 58 -34 90 -130 121v10c61 18 84 39 84 79c0 37 -25 61 -65 61c-31 0 -50 -13 -75 -50l-20 7c35 61 84 91 149 91c67 0 106 -30 106 -81c0 -35 -13 -54 -50 -74'], + 0xBF: [501,201,500,55,443,'346 417c0 -47 -38 -85 -86 -85c-45 0 -83 39 -83 85c0 47 37 84 84 84c48 0 85 -37 85 -84zM247 256h30c3 -25 3 -34 3 -45c-3 -93 -76 -157 -76 -246c0 -75 31 -130 84 -130c37 0 61 16 61 40c0 10 -3 16 -15 29c-17 19 -22 31 -22 51c0 38 34 67 65 67 c39 0 66 -34 66 -78c0 -83 -74 -145 -184 -145c-127 0 -204 71 -204 166c0 69 29 109 121 166c63 39 71 52 71 125'], + 0xC0: [963,0,722,9,689,'457 778h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522 c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0xC1: [963,0,722,9,689,'229 778l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522 c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0xC2: [954,0,722,9,689,'511 778h-57l-112 98l-112 -98h-56l122 176h92zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243 l-94 -243h195'], + 0xC3: [924,0,722,9,689,'481 924h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136 h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0xC4: [916,0,722,9,689,'511 850c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM301 850c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34 c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0xC5: [1000,0,722,9,689,'448 895c0 -59 -47 -108 -106 -108c-60 0 -107 46 -107 106c0 58 49 107 108 107c57 0 105 -47 105 -105zM400 892c0 34 -28 60 -61 60c-29 0 -56 -27 -56 -58c0 -32 26 -59 57 -59c34 0 60 25 60 57zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34 c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0xC6: [676,0,1000,4,951,'951 211l-41 -211h-566v25c74 4 88 20 88 94v184h-190l-100 -188c-11 -21 -15 -33 -15 -45c0 -28 14 -37 66 -43l17 -2v-25h-206v25c39 6 45 10 110 128l220 402c19 34 28 52 28 62c0 24 -21 33 -87 37v22h634v-201h-25c-13 64 -23 88 -44 114c-28 35 -88 52 -181 52 c-53 0 -67 -6 -67 -30v-248c117 10 127 20 155 149h23v-338h-23c-18 124 -43 150 -155 157v-243c0 -42 16 -54 74 -54c87 0 145 19 186 61c34 35 68 86 76 116h23zM432 343v290h-7l-161 -290h168'], + 0xC7: [691,218,722,49,687,'657 152l30 -25c-94 -107 -169 -145 -286 -146l-20 -45c12 4 20 5 32 5c56 0 89 -26 89 -70c0 -55 -50 -89 -129 -89c-34 0 -60 5 -97 18l16 37l6 -2c26 -9 37 -12 53 -12c38 0 58 14 58 41c0 23 -17 36 -46 36c-9 0 -17 -1 -28 -4l-11 8l35 79l-3 1 c-182 18 -307 160 -307 348c0 205 149 359 348 359c48 0 97 -11 155 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-234h-25c-35 76 -58 110 -101 148s-86 56 -133 56c-121 0 -184 -110 -184 -317c0 -101 14 -172 43 -225c29 -52 92 -87 158 -87c28 0 61 6 90 18 c49 19 81 43 140 105'], + 0xC8: [963,0,667,16,641,'452 778h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26 c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 82 123h28'], + 0xC9: [963,0,667,16,641,'231 778l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338 h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 82 123h28'], + 0xCA: [954,0,667,16,641,'511 778h-57l-112 98l-112 -98h-56l122 176h92zM641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242 c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 82 123h28'], + 0xCB: [916,0,667,16,641,'511 850c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM301 850c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25 c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 82 123h28'], + 0xCC: [963,0,389,20,370,'317 778h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0xCD: [963,0,389,20,370,'73 778l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0xCE: [954,0,389,20,370,'363 778h-57l-112 98l-112 -98h-56l122 176h92zM370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0xCF: [916,0,389,20,370,'363 850c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM153 850c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25 c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0xD0: [676,0,722,6,690,'14 676h305c232 0 371 -125 371 -331c0 -96 -32 -182 -90 -241c-63 -66 -163 -104 -270 -104h-316v25c58 2 83 22 83 66v235h-91v47h91v211c0 46 -19 61 -83 67v25zM259 326v-233c0 -45 13 -58 58 -58c66 0 115 24 149 72c31 45 50 130 50 223c0 86 -14 159 -42 212 c-36 67 -85 100 -155 100c-48 0 -60 -10 -60 -47v-222h114v-47h-114'], + 0xD1: [924,18,722,16,701,'498 924h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM701 676v-25c-65 -10 -78 -20 -78 -83v-586h-28l-447 545 v-396c0 -77 17 -97 94 -106v-25h-226v25c73 9 88 23 88 84v470c-42 58 -65 72 -85 72v25h211l349 -430v299c0 80 -18 99 -92 106v25h214'], + 0xD2: [963,19,778,35,743,'503 778h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328 c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0xD3: [963,19,778,35,743,'267 778l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328 c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0xD4: [954,19,778,35,743,'552 778h-57l-112 98l-112 -98h-56l122 176h92zM743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0xD5: [924,19,778,35,743,'527 924h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353 c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0xD6: [916,19,778,35,743,'554 850c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM344 850c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357 c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0xD8: [737,74,778,35,743,'685 737l-78 -115c51 -42 71 -65 93 -106c29 -54 43 -115 43 -180c0 -208 -147 -355 -354 -355c-72 0 -124 14 -187 49l-71 -104h-50l86 126c-59 51 -83 83 -107 143c-17 44 -25 90 -25 140c0 207 148 356 355 356c68 0 118 -13 182 -47l63 93h50zM234 151l286 418 c-35 64 -72 89 -131 89c-114 0 -177 -118 -177 -330c0 -74 5 -117 22 -177zM540 524l-287 -420c34 -64 73 -90 136 -90c116 0 177 109 177 317c0 80 -6 128 -26 193'], + 0xD9: [963,19,722,16,701,'479 778h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM701 676v-25c-64 -10 -78 -26 -78 -85v-314c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25 c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219'], + 0xDA: [963,19,722,16,701,'242 778l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM701 676v-25c-64 -10 -78 -26 -78 -85v-314c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25 h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219'], + 0xDB: [954,19,722,16,701,'530 778h-57l-112 98l-112 -98h-56l122 176h92zM701 676v-25c-64 -10 -78 -26 -78 -85v-314c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318 c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219'], + 0xDC: [916,19,722,16,701,'533 850c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM323 850c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM701 676v-25c-64 -10 -78 -26 -78 -85v-314c0 -100 -27 -177 -76 -216 c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219'], + 0xDD: [963,0,722,15,699,'249 778l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM699 676v-25c-34 -5 -54 -16 -68 -39l-191 -311v-178c0 -78 13 -91 92 -98v-25h-347v25c83 7 93 28 93 103v136l-180 328c-19 34 -49 57 -83 59v25h335v-25l-27 -2 c-40 -3 -54 -6 -54 -29c0 -9 12 -36 24 -59l120 -232l109 178c26 43 41 82 41 102c0 29 -16 37 -84 42v25h220'], + 0xDE: [676,0,611,16,600,'262 546h66c96 0 174 -20 216 -55c37 -32 56 -74 56 -128c0 -64 -30 -116 -88 -150c-55 -33 -91 -39 -250 -40v-56c0 -73 9 -82 88 -92v-25h-334v25l24 4c48 8 60 26 60 88v442c0 70 -14 86 -84 92v25h334v-25c-80 -11 -88 -20 -88 -93v-12zM262 476v-268 c131 0 166 32 166 151c0 109 -33 152 -116 152c-33 0 -50 -12 -50 -35'], + 0xDF: [691,12,556,19,517,'70 87v420c0 108 86 184 207 184c114 0 199 -65 199 -154c0 -42 -22 -81 -61 -107c-25 -17 -47 -26 -95 -37c81 -24 115 -40 147 -71c33 -31 50 -75 50 -128c0 -115 -84 -206 -189 -206c-18 0 -34 4 -64 15l14 34l10 -7c9 -6 13 -7 21 -7c48 0 62 39 62 174 c0 86 -12 135 -39 157c-14 12 -30 17 -63 19v34c57 1 70 24 70 123c0 94 -21 133 -70 133c-39 0 -60 -27 -60 -77v-586h-190v24c43 7 51 17 51 63'], + 0xE0: [713,14,500,25,488,'365 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93 c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67 c24 0 48 9 70 40'], + 0xE1: [713,14,500,25,488,'145 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68 c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121 c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0xE2: [704,14,500,25,488,'424 528h-57l-112 98l-112 -98h-56l122 176h92zM473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37 c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0xE3: [674,14,500,25,488,'394 674h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM473 64l15 -21c-38 -41 -69 -57 -112 -57 c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126 c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0xE4: [666,14,500,25,488,'425 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM215 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69 c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134 v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0xE5: [752,14,500,25,488,'362 647c0 -59 -47 -108 -106 -108c-60 0 -107 46 -107 106c0 58 49 107 108 107c57 0 105 -47 105 -105zM314 644c0 34 -28 60 -61 60c-29 0 -56 -27 -56 -58c0 -32 26 -59 57 -59c34 0 60 25 60 57zM473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69 c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134 v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0xE6: [473,14,722,33,694,'673 129l21 -15c-59 -90 -115 -123 -210 -123c-63 0 -113 22 -147 84h-6c-55 -68 -114 -89 -180 -89c-77 0 -118 37 -118 108c0 44 21 73 59 105c32 27 74 49 204 86v75c0 58 -22 81 -78 81c-38 0 -65 -15 -65 -35c0 -7 3 -12 12 -22c13 -15 17 -24 17 -43 c0 -37 -27 -62 -67 -62c-42 0 -65 30 -65 69c0 71 77 125 184 125c64 0 107 -14 140 -51c34 38 74 51 127 51c75 0 137 -37 166 -101c16 -34 21 -63 21 -124h-254v-23c0 -110 30 -164 115 -164c49 0 85 20 124 68zM567 285v33c0 93 -16 125 -63 125c-52 0 -70 -48 -70 -158 h133zM296 81v167c-88 -32 -119 -65 -119 -128c0 -47 19 -71 57 -71c24 0 38 7 62 32'], + 0xE7: [473,218,444,25,430,'412 109l18 -18c-49 -67 -99 -98 -165 -104l-23 -51c12 4 20 5 32 5c56 0 89 -26 89 -70c0 -55 -50 -89 -129 -89c-34 0 -60 5 -97 18l16 37l6 -2c26 -9 37 -12 53 -12c38 0 58 14 58 41c0 23 -17 36 -46 36c-9 0 -17 -1 -28 -4l-11 8l36 83c-115 8 -196 99 -196 235 c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169c0 -136 52 -220 139 -220c41 0 70 14 107 56'], + 0xE8: [713,14,444,25,427,'360 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187 c43 0 74 19 115 68zM298 282v21c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160h134'], + 0xE9: [713,14,444,25,427,'124 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187 c43 0 74 19 115 68zM298 282v21c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160h134'], + 0xEA: [704,14,444,25,427,'409 528h-57l-112 98l-112 -98h-56l122 176h92zM403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187c43 0 74 19 115 68zM298 282v21c0 52 0 73 -9 92 c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160h134'], + 0xEB: [666,14,444,25,427,'411 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM201 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238 c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187c43 0 74 19 115 68zM298 282v21c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160h134'], + 0xEC: [713,0,278,14,257,'257 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM256 0h-240v24c46 10 53 20 53 64v286c0 45 -11 54 -55 63v24h194v-376c0 -41 13 -56 48 -61v-24'], + 0xED: [713,0,278,15,258,'256 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24zM20 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56'], + 0xEE: [704,0,278,-29,308,'212 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24zM308 528h-57l-112 98l-112 -98h-56l122 176h92'], + 0xEF: [666,0,278,-29,310,'212 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24zM310 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM100 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64 c34 0 64 -30 64 -66'], + 0xF1: [674,0,556,21,539,'421 674h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM539 0h-234v24c34 4 46 20 46 60v237c0 56 -17 85 -51 85 c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h191v-75h1c34 60 82 87 142 87c82 0 135 -55 135 -142v-247c0 -45 10 -57 49 -60v-24'], + 0xF2: [713,14,500,25,476,'370 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224 c0 -145 21 -201 79 -201s78 52 78 201'], + 0xF3: [713,14,500,25,476,'132 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224 c0 -145 21 -201 79 -201s78 52 78 201'], + 0xF4: [704,14,500,25,476,'421 528h-57l-112 98l-112 -98h-56l122 176h92zM476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0xF5: [674,14,500,25,476,'391 674h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM476 229c0 -141 -97 -243 -226 -243 c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0xF6: [666,14,500,25,476,'421 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM211 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245 c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0xF8: [549,92,500,25,476,'461 549l-73 -123c62 -56 88 -115 88 -197c0 -140 -95 -243 -225 -243c-40 0 -71 8 -107 27l-63 -105h-47l76 128c-60 56 -85 113 -85 193c0 140 97 244 227 244c38 0 67 -7 103 -25l60 101h46zM173 140l143 242c-13 44 -31 60 -64 60c-62 0 -80 -52 -80 -233 c0 -27 0 -49 1 -69zM327 324l-144 -244c13 -45 33 -63 68 -63c58 0 78 52 78 200c0 35 0 60 -2 107'], + 0xF9: [713,14,556,16,538,'393 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276 c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0xFA: [713,14,556,16,538,'156 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47 v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0xFB: [704,14,556,16,538,'443 528h-57l-112 98l-112 -98h-56l122 176h92zM538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356 c0 -44 13 -60 57 -62v-23'], + 0xFC: [666,14,556,16,538,'443 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM233 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66 c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0xFD: [713,205,500,16,482,'129 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM482 461v-24c-31 -4 -44 -12 -60 -55l-148 -398c-35 -94 -56 -133 -77 -156c-21 -22 -50 -33 -84 -33c-57 0 -97 32 -97 79c0 38 24 67 62 67c34 0 60 -23 60 -52 c0 -4 -1 -9 -2 -14c-1 -3 -1 -6 -1 -6c0 -9 8 -17 17 -17c24 0 49 32 66 82l18 53l-119 290c-20 50 -58 134 -67 146c-6 8 -12 11 -34 14v24h249v-24l-16 -1c-25 -2 -36 -10 -36 -25c0 -4 9 -30 20 -58l72 -186l68 188c9 26 11 37 11 49c0 24 -11 31 -54 33v24h152'], + 0xFE: [676,205,556,19,524,'214 676v-285c29 59 64 82 124 82c111 0 186 -94 186 -234c0 -148 -79 -252 -192 -252c-45 0 -70 13 -118 60v-141c0 -67 17 -87 78 -90v-21h-273v24c48 8 56 17 56 58v717c0 40 -9 49 -55 58v24h194zM214 346v-243c19 -41 45 -61 79 -61c56 0 83 60 83 187 s-24 187 -76 187c-23 0 -48 -13 -68 -37c-11 -13 -18 -27 -18 -33'], + 0xFF: [666,205,500,16,482,'482 461v-24c-31 -4 -44 -12 -60 -55l-148 -398c-35 -94 -56 -133 -77 -156c-21 -22 -50 -33 -84 -33c-57 0 -97 32 -97 79c0 38 24 67 62 67c34 0 60 -23 60 -52c0 -4 -1 -9 -2 -14c-1 -3 -1 -6 -1 -6c0 -9 8 -17 17 -17c24 0 49 32 66 82l18 53l-119 290 c-20 50 -58 134 -67 146c-6 8 -12 11 -34 14v24h249v-24l-16 -1c-25 -2 -36 -10 -36 -25c0 -4 9 -30 20 -58l72 -186l68 188c9 26 11 37 11 49c0 24 -11 31 -54 33v24h152zM416 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM206 600 c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66'], + 0x100: [810,0,722,9,689,'515 738h-330v72h330v-72zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0x101: [600,14,500,25,488,'415 528h-330v72h330v-72zM473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23 c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0x102: [901,0,722,9,689,'455 901h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545 h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0x103: [691,14,500,25,488,'351 691h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76 v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121 c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0x104: [690,205,722,9,721,'560 0h-193v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25h-99c-1 -2 -2 -5 -3 -8c-9 -32 -11 -49 -11 -64 c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8l23 -16c-25 -46 -79 -74 -126 -74c-62 0 -103 31 -103 78c0 38 13 63 54 111c8 10 10 11 14 16zM384 236l-101 243l-94 -243h195'], + 0x105: [473,205,500,25,569,'546 -115l23 -16c-25 -46 -79 -74 -126 -74c-62 0 -103 31 -103 78c0 38 13 63 54 111l3 3c-7 -1 -14 -1 -21 -1c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93 c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4l10 10l15 -21c-17 -19 -33 -32 -50 -42c-1 -2 -2 -5 -3 -9 c-9 -32 -11 -49 -11 -64c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0x106: [923,19,722,49,687,'316 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM657 152l30 -25c-93 -115 -173 -146 -288 -146c-215 0 -350 147 -350 342c0 212 143 368 347 368c48 0 98 -11 156 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25 c-19 54 -43 87 -67 115c-46 55 -100 90 -167 90c-105 0 -184 -113 -184 -313c0 -101 12 -174 54 -240c29 -46 88 -76 147 -76c44 0 86 12 126 34c32 18 60 43 104 89'], + 0x107: [713,14,444,25,430,'162 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM412 109l18 -18c-55 -75 -111 -105 -191 -105c-125 0 -214 93 -214 236c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73 c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169c0 -136 52 -220 139 -220c41 0 70 14 107 56'], + 0x108: [914,19,722,49,687,'539 738h-57l-112 98l-112 -98h-56l122 176h92zM657 152l30 -25c-93 -115 -173 -146 -288 -146c-215 0 -350 147 -350 342c0 212 143 368 347 368c48 0 98 -11 156 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25c-19 54 -43 87 -67 115c-46 55 -100 90 -167 90 c-105 0 -184 -113 -184 -313c0 -101 12 -174 54 -240c29 -46 88 -76 147 -76c44 0 86 12 126 34c32 18 60 43 104 89'], + 0x109: [704,14,444,25,430,'399 528h-57l-112 98l-112 -98h-56l122 176h92zM412 109l18 -18c-55 -75 -111 -105 -191 -105c-125 0 -214 93 -214 236c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169 c0 -136 52 -220 139 -220c41 0 70 14 107 56'], + 0x10A: [876,19,722,49,687,'435 810c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM657 152l30 -25c-93 -115 -173 -146 -288 -146c-215 0 -350 147 -350 342c0 212 143 368 347 368c48 0 98 -11 156 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25 c-19 54 -43 87 -67 115c-46 55 -100 90 -167 90c-105 0 -184 -113 -184 -313c0 -101 12 -174 54 -240c29 -46 88 -76 147 -76c44 0 86 12 126 34c32 18 60 43 104 89'], + 0x10B: [666,14,444,25,430,'305 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM412 109l18 -18c-55 -75 -111 -105 -191 -105c-125 0 -214 93 -214 236c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73 c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169c0 -136 52 -220 139 -220c41 0 70 14 107 56'], + 0x10C: [914,19,722,49,687,'564 914l-123 -176h-92l-122 176h57l111 -99l111 99h58zM657 152l30 -25c-93 -115 -173 -146 -288 -146c-215 0 -350 147 -350 342c0 212 143 368 347 368c48 0 98 -11 156 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25c-19 54 -43 87 -67 115 c-46 55 -100 90 -167 90c-105 0 -184 -113 -184 -313c0 -101 12 -174 54 -240c29 -46 88 -76 147 -76c44 0 86 12 126 34c32 18 60 43 104 89'], + 0x10D: [704,14,444,25,430,'416 704l-123 -176h-92l-122 176h57l111 -99l111 99h58zM412 109l18 -18c-55 -75 -111 -105 -191 -105c-125 0 -214 93 -214 236c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169 c0 -136 52 -220 139 -220c41 0 70 14 107 56'], + 0x10E: [914,0,722,14,690,'484 914l-123 -176h-92l-122 176h57l111 -99l111 99h58zM14 676h312c228 0 364 -125 364 -331c0 -103 -43 -201 -115 -264c-61 -53 -151 -81 -252 -81h-309v25c58 2 83 25 83 73v486c0 46 -19 61 -83 67v25zM259 598v-498c0 -45 13 -65 58 -65c66 0 115 24 149 72 c31 45 50 135 50 223c0 86 -12 160 -41 211c-38 66 -88 101 -163 101c-39 0 -53 -16 -53 -44'], + 0x10F: [709,14,680,25,710,'544 374l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219zM534 20l-62 -8c-62 -8 -87 -12 -133 -25v65c-47 -50 -80 -66 -133 -66c-105 0 -181 98 -181 235 c0 145 82 252 192 252c46 0 76 -16 119 -62v183c0 46 -9 53 -76 58v24h215v-575c0 -42 13 -55 59 -58v-23zM336 112v243c-15 38 -45 62 -78 62c-58 0 -85 -59 -85 -188c0 -127 25 -187 78 -187c23 0 46 12 66 37c10 13 19 28 19 33'], + 0x110: [676,0,722,6,690,'14 676h305c232 0 371 -125 371 -331c0 -96 -32 -182 -90 -241c-63 -66 -163 -104 -270 -104h-316v25c58 2 83 22 83 66v235h-91v47h91v211c0 46 -19 61 -83 67v25zM259 326v-233c0 -45 13 -58 58 -58c66 0 115 24 149 72c31 45 50 130 50 223c0 86 -14 159 -42 212 c-36 67 -85 100 -155 100c-48 0 -60 -10 -60 -47v-222h114v-47h-114'], + 0x111: [676,14,556,25,534,'534 20l-62 -8c-62 -8 -87 -12 -133 -25v65c-47 -50 -80 -66 -133 -66c-105 0 -181 98 -181 235c0 145 82 252 192 252c46 0 76 -16 119 -62v106h-178v50h178v27c0 46 -9 53 -76 58v24h215v-109h53v-50h-53v-416c0 -42 13 -55 59 -58v-23zM336 112v243 c-15 38 -45 62 -78 62c-58 0 -85 -59 -85 -188c0 -127 25 -186 78 -186c23 0 46 11 66 36c10 13 19 28 19 33'], + 0x112: [810,0,667,16,641,'490 738h-330v72h330v-72zM641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56 c78 0 135 15 182 54c34 28 52 58 82 123h28'], + 0x113: [600,14,444,25,427,'395 528h-330v72h330v-72zM403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187c43 0 74 19 115 68zM298 282v21c0 52 0 73 -9 92 c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160h134'], + 0x114: [901,0,667,16,641,'433 901h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225 c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 82 123h28'], + 0x115: [691,14,444,25,427,'338 691h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252 c6 -95 21 -187 119 -187c43 0 74 19 115 68zM298 282v21c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160h134'], + 0x116: [876,0,667,16,641,'395 810c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26 c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 82 123h28'], + 0x117: [666,14,444,25,427,'295 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187 c43 0 74 19 115 68zM298 282v21c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160h134'], + 0x118: [676,205,667,16,641,'407 0h-391v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 82 123h28 l-40 -208h-164c-1 -2 -2 -5 -3 -8c-9 -32 -11 -49 -11 -64c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8l23 -16c-25 -46 -79 -74 -126 -74c-62 0 -103 31 -103 78c0 38 13 63 54 111c8 10 10 11 14 16'], + 0x119: [473,205,444,25,435,'412 -115l23 -16c-25 -46 -79 -74 -126 -74c-62 0 -103 31 -103 78c0 38 13 63 54 111c1 1 2 3 3 4c-11 -1 -22 -2 -34 -2c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187c43 0 74 19 115 68 l24 -14c-41 -64 -78 -99 -124 -115c-1 -2 -1 -3 -2 -5c-9 -32 -11 -49 -11 -64c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8zM298 282v21c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160h134'], + 0x11A: [914,0,667,16,641,'509 914l-123 -176h-92l-122 176h57l111 -99l111 99h58zM641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242 c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 82 123h28'], + 0x11B: [704,14,444,25,427,'402 704l-123 -176h-92l-122 176h57l111 -99l111 99h58zM403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187c43 0 74 19 115 68zM298 282v21 c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160h134'], + 0x11C: [914,19,778,37,755,'569 738h-57l-112 98l-112 -98h-56l122 176h92zM755 287v-25c-75 -8 -86 -37 -86 -100v-118c-65 -38 -173 -63 -277 -63c-201 0 -355 136 -355 350c0 199 148 360 348 360c52 0 97 -11 155 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25 c-35 76 -53 111 -96 149s-91 56 -138 56c-116 0 -184 -113 -184 -320c0 -103 15 -182 48 -237c35 -58 78 -87 155 -87c71 0 96 34 96 85v89c0 52 -16 69 -102 74v25h344'], + 0x11D: [704,206,500,28,483,'419 528h-57l-112 98l-112 -98h-56l122 176h92zM254 68h52c108 0 177 -46 177 -120c0 -94 -94 -154 -261 -154c-126 0 -194 32 -194 92c0 41 33 66 96 75c-64 23 -82 45 -82 82c0 59 39 94 119 117c-71 20 -124 76 -124 152c0 99 84 161 203 161c40 0 68 -6 112 -22h129 v-53h-80c28 -25 40 -58 40 -98c0 -63 -31 -107 -92 -132c-33 -14 -36 -14 -127 -14c-39 0 -69 -19 -69 -49c0 -27 21 -37 101 -37zM306 312c0 93 -19 130 -67 130c-47 0 -65 -33 -65 -131c0 -93 18 -129 66 -129s66 36 66 130zM315 -52h-164c-28 -23 -35 -34 -35 -55 c0 -44 46 -67 134 -67c99 0 154 28 154 66c0 34 -24 56 -89 56'], + 0x11E: [901,19,778,37,755,'501 901h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM755 287v-25c-75 -8 -86 -37 -86 -100v-118c-65 -38 -173 -63 -277 -63c-201 0 -355 136 -355 350c0 199 148 360 348 360c52 0 97 -11 155 -35 c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25c-35 76 -53 111 -96 149s-91 56 -138 56c-116 0 -184 -113 -184 -320c0 -103 15 -182 48 -237c35 -58 78 -87 155 -87c71 0 96 34 96 85v89c0 52 -16 69 -102 74v25h344'], + 0x11F: [691,206,500,28,483,'354 691h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM254 68h52c108 0 177 -46 177 -120c0 -94 -94 -154 -261 -154c-126 0 -194 32 -194 92c0 41 33 66 96 75c-64 23 -82 45 -82 82c0 59 39 94 119 117 c-71 20 -124 76 -124 152c0 99 84 161 203 161c40 0 68 -6 112 -22h129v-53h-80c28 -25 40 -58 40 -98c0 -63 -31 -107 -92 -132c-33 -14 -36 -14 -127 -14c-39 0 -69 -19 -69 -49c0 -27 21 -37 101 -37zM306 312c0 93 -19 130 -67 130c-47 0 -65 -33 -65 -131 c0 -93 18 -129 66 -129s66 36 66 130zM315 -52h-164c-28 -23 -35 -34 -35 -55c0 -44 46 -67 134 -67c99 0 154 28 154 66c0 34 -24 56 -89 56'], + 0x120: [876,19,778,37,755,'465 810c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM755 287v-25c-75 -8 -86 -37 -86 -100v-118c-65 -38 -173 -63 -277 -63c-201 0 -355 136 -355 350c0 199 148 360 348 360c52 0 97 -11 155 -35c23 -10 36 -14 46 -14 c19 0 29 10 44 46h27v-235h-25c-35 76 -53 111 -96 149s-91 56 -138 56c-116 0 -184 -113 -184 -320c0 -103 15 -182 48 -237c35 -58 78 -87 155 -87c71 0 96 34 96 85v89c0 52 -16 69 -102 74v25h344'], + 0x121: [666,206,500,28,483,'315 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM254 68h52c108 0 177 -46 177 -120c0 -94 -94 -154 -261 -154c-126 0 -194 32 -194 92c0 41 33 66 96 75c-64 23 -82 45 -82 82c0 59 39 94 119 117c-71 20 -124 76 -124 152 c0 99 84 161 203 161c40 0 68 -6 112 -22h129v-53h-80c28 -25 40 -58 40 -98c0 -63 -31 -107 -92 -132c-33 -14 -36 -14 -127 -14c-39 0 -69 -19 -69 -49c0 -27 21 -37 101 -37zM306 312c0 93 -19 130 -67 130c-47 0 -65 -33 -65 -131c0 -93 18 -129 66 -129s66 36 66 130z M315 -52h-164c-28 -23 -35 -34 -35 -55c0 -44 46 -67 134 -67c99 0 154 28 154 66c0 34 -24 56 -89 56'], + 0x122: [691,378,778,37,755,'755 287v-25c-75 -8 -86 -37 -86 -100v-118c-65 -38 -173 -63 -277 -63c-201 0 -355 136 -355 350c0 199 148 360 348 360c52 0 97 -11 155 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25c-35 76 -53 111 -96 149s-91 56 -138 56c-116 0 -184 -113 -184 -320 c0 -103 15 -182 48 -237c35 -58 78 -87 155 -87c71 0 96 34 96 85v89c0 52 -16 69 -102 74v25h344zM317 -378l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x123: [863,206,500,28,483,'312 863l11 -22c-75 -52 -109 -94 -109 -133c0 -12 8 -21 19 -21c7 0 14 2 24 2c43 0 73 -30 73 -76c0 -52 -34 -85 -84 -85c-63 0 -100 45 -100 116c0 86 50 158 166 219zM254 68h52c108 0 177 -46 177 -120c0 -94 -94 -154 -261 -154c-126 0 -194 32 -194 92 c0 41 33 66 96 75c-64 23 -82 45 -82 82c0 59 39 94 119 117c-71 20 -124 76 -124 152c0 99 84 161 203 161c40 0 68 -6 112 -22h129v-53h-80c28 -25 40 -58 40 -98c0 -63 -31 -107 -92 -132c-33 -14 -36 -14 -127 -14c-39 0 -69 -19 -69 -49c0 -27 21 -37 101 -37zM306 312 c0 93 -19 130 -67 130c-47 0 -65 -33 -65 -131c0 -93 18 -129 66 -129s66 36 66 130zM315 -52h-164c-28 -23 -35 -34 -35 -55c0 -44 46 -67 134 -67c99 0 154 28 154 66c0 34 -24 56 -89 56'], + 0x124: [914,0,778,21,759,'557 738h-57l-112 98l-112 -98h-56l122 176h92zM759 0h-339v25c73 8 89 22 89 73v228h-241v-228c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-204h241v204c0 56 -19 69 -89 74v25h339v-25 c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25'], + 0x125: [914,0,556,15,534,'419 738h-57l-112 98l-112 -98h-56l122 176h92zM534 0h-234v24c34 4 46 20 46 61v224c0 71 -12 97 -51 97c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-263c0 -41 11 -56 48 -61v-24h-240v24c45 9 53 9 53 65v502c0 48 -8 52 -54 61v24h193v-280c49 58 94 77 147 77 c82 0 130 -57 130 -136v-250c0 -46 14 -63 49 -63v-24'], + 0x126: [676,0,778,21,759,'759 0h-339v25c73 8 89 22 89 73v228h-241v-228c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v395h-85v47h85v37c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-37h241v37c0 56 -19 69 -89 74v25h339v-25c-68 -5 -88 -20 -88 -74v-37h88v-47h-88v-395 c0 -53 16 -64 88 -73v-25zM509 373v120h-241v-120h241'], + 0x128: [884,0,389,14,379,'336 884h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75 v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x129: [674,0,278,-47,318,'275 674h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM256 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64 v24h193v-376c0 -43 13 -56 48 -61v-24'], + 0x12A: [810,0,389,20,370,'359 738h-330v72h330v-72zM370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x12B: [600,0,278,-25,305,'305 528h-330v72h330v-72zM256 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24'], + 0x12C: [900,0,389,20,370,'298 900h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x12D: [691,0,278,-11,292,'248 691h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM256 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24'], + 0x12E: [676,205,389,20,389,'228 0h-208v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25h-112c-1 -2 -2 -5 -3 -8c-9 -32 -11 -49 -11 -64c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8l23 -16c-25 -46 -79 -74 -126 -74 c-62 0 -103 31 -103 78c0 38 13 63 54 111c8 10 10 11 14 16'], + 0x12F: [691,205,278,15,321,'160 0h-144v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24h-66c-1 -2 -2 -5 -3 -8c-9 -32 -11 -49 -11 -64c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8l23 -16c-25 -46 -79 -74 -126 -74c-62 0 -103 31 -103 78 c0 38 13 63 54 111c8 10 10 11 14 16zM215 613c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78'], + 0x130: [876,0,389,20,370,'259 810c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x132: [676,96,838,20,917,'917 676v-25c-75 -5 -88 -23 -88 -95v-430c0 -151 -73 -222 -212 -222c-40 0 -83 6 -108 23c-37 25 -67 68 -67 110c0 37 34 74 71 74c38 0 72 -36 72 -76c0 -30 -27 -40 -27 -66c0 -20 17 -32 45 -32c46 0 64 28 64 90v550c0 58 -20 71 -101 74v25h351zM370 0h-350v25 c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x133: [691,203,552,15,531,'531 613c0 -44 -34 -77 -79 -77c-44 0 -76 33 -76 77s34 78 78 78c42 0 77 -36 77 -78zM215 613c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78zM528 461v-459c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100 c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v474c0 43 -12 55 -63 59v24h202zM256 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24'], + 0x134: [914,96,500,3,479,'479 738h-57l-112 98l-112 -98h-56l122 176h92zM478 676v-25c-75 -5 -88 -23 -88 -95v-430c0 -151 -73 -222 -212 -222c-40 0 -83 6 -108 23c-37 25 -67 68 -67 110c0 37 34 74 71 74c38 0 72 -36 72 -76c0 -30 -27 -40 -27 -66c0 -20 17 -32 45 -32c46 0 64 28 64 90 v550c0 58 -20 71 -101 74v25h351'], + 0x135: [704,203,333,-57,335,'335 528h-57l-112 98l-112 -98h-56l122 176h92zM260 461v-459c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v474 c0 43 -12 55 -63 59v24h202'], + 0x136: [676,378,778,30,769,'769 0h-334v25c65 2 77 8 77 21c0 11 -6 21 -25 45l-181 225l-27 -25v-196c0 -49 15 -61 87 -70v-25h-336v25c74 7 87 19 87 76v472c0 62 -18 74 -87 78v25h337v-25c-74 -5 -88 -23 -88 -84v-223l212 215c31 31 40 42 40 58c0 20 -12 28 -48 31l-35 3v25h289v-25 c-99 -12 -136 -29 -322 -227l305 -378c12 -15 24 -20 49 -21v-25zM291 -378l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x137: [676,378,556,22,543,'543 0h-234v24c28 1 42 7 42 19c0 8 -6 20 -24 45l-95 134l-23 -24v-114c0 -47 5 -53 52 -60v-24h-239v24c33 3 48 21 48 60v510c0 38 -14 55 -48 58v24h187v-431l128 128c11 11 21 29 21 38c0 13 -9 19 -35 23l-24 4v23h214v-23c-63 -8 -89 -26 -189 -131l194 -268 c9 -12 14 -15 25 -15v-24zM202 -378l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x138: [470,0,600,19,627,'627 0h-168c-27 3 -62 36 -89 76c-24 36 -26 53 -59 103c-22 34 -50 47 -71 54c-5 -1 -10 -1 -27 -1v-145c0 -42 0 -61 51 -63v-24h-245v24c33 8 51 18 51 62v305c0 43 -18 53 -51 55v24h245v-24c-40 -6 -51 -12 -51 -56v-108c17 0 30 2 41 4c50 14 74 19 92 31 c28 20 47 46 64 88c20 50 45 65 99 65c42 0 80 -23 80 -56c0 -26 -21 -42 -49 -42c-45 0 -44 40 -66 40c-17 0 -23 -8 -30 -28c-17 -49 -45 -88 -77 -112c11 -4 26 -13 42 -34c21 -28 67 -109 87 -138c32 -47 60 -69 131 -76v-24'], + 0x139: [923,0,667,19,638,'158 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM638 227l-42 -227h-577v25c73 9 86 20 86 73v478c0 57 -18 71 -86 75v25h348v-24c-87 -4 -100 -17 -100 -99v-464c0 -43 20 -58 85 -58c83 0 129 18 170 55 c34 31 60 79 87 141h29'], + 0x13A: [923,0,278,15,260,'22 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM256 0h-240v24c34 3 51 19 51 63v500c0 37 -17 62 -52 65v24h191v-589c0 -46 17 -62 50 -63v-24'], + 0x13B: [676,378,667,19,638,'638 227l-42 -227h-577v25c73 9 86 20 86 73v478c0 57 -18 71 -86 75v25h348v-24c-87 -4 -100 -17 -100 -99v-464c0 -43 20 -58 85 -58c83 0 129 18 170 55c34 31 60 79 87 141h29zM256 -378l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2 c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x13C: [676,378,278,15,256,'256 0h-240v24c34 3 51 19 51 63v500c0 37 -17 62 -52 65v24h191v-589c0 -46 17 -62 50 -63v-24zM66 -378l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x13D: [691,0,667,19,638,'447 356l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219zM638 227l-42 -227h-577v25c73 9 86 20 86 73v478c0 57 -18 71 -86 75v25h348v-24 c-87 -4 -100 -17 -100 -99v-464c0 -43 20 -58 85 -58c83 0 129 18 170 55c34 31 60 79 87 141h29'], + 0x13E: [709,0,457,15,442,'276 374l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219zM256 0h-240v24c34 3 51 19 51 63v500c0 37 -17 62 -52 65v24h191v-589c0 -46 17 -62 50 -63v-24'], + 0x13F: [676,0,667,19,638,'535 323c0 -47 -37 -84 -85 -84s-84 36 -84 84c0 47 38 85 85 85c46 0 84 -39 84 -85zM638 227l-42 -227h-577v25c73 9 86 20 86 73v478c0 57 -18 71 -86 75v25h348v-24c-87 -4 -100 -17 -100 -99v-464c0 -43 20 -58 85 -58c83 0 129 18 170 55c34 31 60 79 87 141h29'], + 0x140: [676,0,414,15,441,'441 340c0 -47 -37 -84 -85 -84s-84 36 -84 84c0 47 38 85 85 85c46 0 84 -39 84 -85zM256 0h-240v24c34 3 51 19 51 63v500c0 37 -17 62 -52 65v24h191v-589c0 -46 17 -62 50 -63v-24'], + 0x141: [676,0,667,18,638,'638 228l-42 -228h-577v25c74 6 86 20 86 75v187l-81 -49v61l81 49v225c0 61 -19 74 -87 78v25h349v-25c-80 -4 -100 -21 -100 -99v-109l123 76v-61l-123 -76v-292c0 -43 14 -59 79 -59c85 0 138 15 177 52c34 32 57 82 86 145h29'], + 0x142: [676,0,278,-22,303,'303 481l-97 -80v-312c0 -45 17 -64 50 -65v-24h-240v24c34 3 51 23 51 65v223l-89 -72v50l89 72v229c0 40 -17 58 -52 61v24h191v-225l97 80v-50'], + 0x143: [923,18,722,16,701,'294 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM701 676v-25c-65 -10 -78 -20 -78 -83v-586h-28l-447 545v-396c0 -77 17 -97 94 -106v-25h-226v25c73 9 88 23 88 84v470c-42 58 -65 72 -85 72v25h211l349 -430v299 c0 80 -18 99 -92 106v25h214'], + 0x144: [713,0,556,21,539,'212 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM539 0h-234v24c34 4 46 20 46 60v237c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289 c0 43 -9 54 -53 61v24h191v-75h1c34 60 82 87 142 87c82 0 135 -55 135 -142v-247c0 -45 10 -57 49 -60v-24'], + 0x145: [676,378,722,16,701,'701 676v-25c-65 -10 -78 -20 -78 -83v-586h-28l-447 545v-396c0 -77 17 -97 94 -106v-25h-226v25c73 9 88 23 88 84v470c-42 58 -65 72 -85 72v25h211l349 -430v299c0 80 -18 99 -92 106v25h214zM286 -378l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21 c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x146: [473,378,556,21,539,'539 0h-234v24c34 4 46 20 46 60v237c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h191v-75h1c34 60 82 87 142 87c82 0 135 -55 135 -142v-247 c0 -45 10 -57 49 -60v-24zM206 -378l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x147: [914,18,722,16,701,'535 914l-123 -176h-92l-122 176h57l111 -99l111 99h58zM701 676v-25c-65 -10 -78 -20 -78 -83v-586h-28l-447 545v-396c0 -77 17 -97 94 -106v-25h-226v25c73 9 88 23 88 84v470c-42 58 -65 72 -85 72v25h211l349 -430v299c0 80 -18 99 -92 106v25h214'], + 0x148: [704,0,556,21,539,'450 704l-123 -176h-92l-122 176h57l111 -99l111 99h58zM539 0h-234v24c34 4 46 20 46 60v237c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h191v-75h1 c34 60 82 87 142 87c82 0 135 -55 135 -142v-247c0 -45 10 -57 49 -60v-24'], + 0x149: [709,0,705,13,693,'693 0h-234v24c34 4 46 20 46 60v237c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h191v-75h1c34 60 82 87 142 87c82 0 135 -55 135 -142v-247 c0 -45 10 -57 49 -60v-24zM31 374l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x14A: [676,96,732,14,712,'14 676h322c242 0 376 -142 376 -357c0 -211 -109 -415 -277 -415c-69 0 -134 58 -134 121c0 37 29 92 75 92c38 0 68 -35 68 -75c0 -42 -27 -40 -27 -66c0 -20 14 -39 42 -39c60 0 82 170 82 318c0 117 -26 234 -56 286c-38 66 -88 101 -163 101c-39 0 -63 -16 -63 -44 v-598h-245v25c58 2 83 25 83 73v486c0 46 -19 61 -83 67v25'], + 0x14B: [473,205,556,21,490,'490 331v-331c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -12 -9 -22s13 -17 32 -17c34 0 48 23 48 76v419c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34 c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h191v-75h1c34 60 82 87 142 87c82 0 135 -55 135 -142'], + 0x14C: [810,19,778,35,743,'550 738h-330v72h330v-72zM743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0x14D: [600,14,500,25,476,'415 528h-330v72h330v-72zM476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0x14E: [901,19,778,35,743,'498 901h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330 c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0x14F: [691,14,500,25,476,'358 691h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224 c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0x150: [923,19,778,35,743,'370 738l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57zM170 738l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57zM743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357 c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0x151: [713,14,500,25,476,'238 528l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57zM38 528l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57zM476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242 c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0x152: [684,5,1000,22,981,'981 211l-42 -211h-430c-48 0 -83 -1 -107 -3c-14 -1 -29 -2 -43 -2c-92 0 -170 25 -226 72c-71 60 -111 157 -111 267c0 123 50 228 137 289c54 38 130 61 202 61c15 0 69 -8 162 -8h417v-201h-26c-14 80 -31 113 -73 138c-30 18 -89 28 -161 28c-40 0 -53 -6 -53 -26 v-249c107 3 125 21 151 148h23v-338h-23c-15 119 -45 151 -151 157v-250c0 -38 14 -48 72 -48c75 0 125 15 168 50c35 29 55 58 87 126h27zM472 212v291c0 72 -4 98 -18 119c-14 20 -41 30 -77 30c-123 0 -185 -112 -185 -332c0 -91 16 -182 40 -224c27 -48 67 -69 134 -69 c44 0 70 10 86 32c16 21 20 54 20 153'], + 0x153: [473,14,722,22,696,'676 125l20 -16c-65 -93 -114 -123 -198 -123c-52 0 -85 14 -115 48c-40 -34 -80 -48 -138 -48c-132 0 -223 99 -223 243c0 142 94 244 226 244c54 0 90 -14 125 -49c48 37 78 49 129 49c75 0 131 -32 162 -92c19 -36 25 -68 29 -136h-249v-20c0 -106 37 -167 113 -167 c47 0 73 15 119 67zM571 282l-2 56c-3 75 -20 106 -60 106c-42 0 -65 -37 -65 -108v-54h127zM308 149v162c0 96 -19 133 -69 133c-55 0 -72 -46 -72 -195c0 -176 18 -233 75 -233c46 0 66 41 66 133'], + 0x154: [923,0,722,26,716,'251 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM716 0h-205l-207 313h-28v-196c0 -73 10 -82 88 -92v-25h-338v25c78 9 88 16 88 95v431c0 78 -14 95 -88 100v25h308c195 0 296 -57 296 -172c0 -45 -16 -91 -45 -118 c-28 -25 -54 -41 -112 -57l199 -282c9 -13 26 -22 44 -22v-25zM276 597v-252c131 1 183 27 183 149c0 106 -37 148 -130 148c-39 0 -53 -12 -53 -45'], + 0x155: [713,0,444,28,434,'83 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM218 461v-82c47 68 85 94 135 94c47 0 81 -33 81 -79c0 -40 -26 -68 -63 -68c-26 0 -43 10 -60 38c-11 18 -20 23 -28 23c-35 0 -61 -45 -61 -104v-177c0 -64 11 -78 72 -82 v-24h-265v24c44 8 54 19 54 60v289c0 47 -12 58 -55 64v24h190'], + 0x156: [676,378,722,26,716,'716 0h-205l-207 313h-28v-196c0 -73 10 -82 88 -92v-25h-338v25c78 9 88 16 88 95v431c0 78 -14 95 -88 100v25h308c195 0 296 -57 296 -172c0 -45 -16 -91 -45 -118c-28 -25 -54 -41 -112 -57l199 -282c9 -13 26 -22 44 -22v-25zM276 597v-252c131 1 183 27 183 149 c0 106 -37 148 -130 148c-39 0 -53 -12 -53 -45zM306 -378l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x157: [473,378,444,28,434,'218 461v-82c47 68 85 94 135 94c47 0 81 -33 81 -79c0 -40 -26 -68 -63 -68c-26 0 -43 10 -60 38c-11 18 -20 23 -28 23c-35 0 -61 -45 -61 -104v-177c0 -64 11 -78 72 -82v-24h-265v24c44 8 54 19 54 60v289c0 47 -12 58 -55 64v24h190zM128 -378l-11 22 c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x158: [914,0,722,26,716,'493 914l-123 -176h-92l-122 176h57l111 -99l111 99h58zM716 0h-205l-207 313h-28v-196c0 -73 10 -82 88 -92v-25h-338v25c78 9 88 16 88 95v431c0 78 -14 95 -88 100v25h308c195 0 296 -57 296 -172c0 -45 -16 -91 -45 -118c-28 -25 -54 -41 -112 -57l199 -282 c9 -13 26 -22 44 -22v-25zM276 597v-252c131 1 183 27 183 149c0 106 -37 148 -130 148c-39 0 -53 -12 -53 -45'], + 0x159: [704,0,444,28,434,'388 704l-123 -176h-92l-122 176h57l111 -99l111 99h58zM218 461v-82c47 68 85 94 135 94c47 0 81 -33 81 -79c0 -40 -26 -68 -63 -68c-26 0 -43 10 -60 38c-11 18 -20 23 -28 23c-35 0 -61 -45 -61 -104v-177c0 -64 11 -78 72 -82v-24h-265v24c44 8 54 19 54 60v289 c0 47 -12 58 -55 64v24h190'], + 0x15A: [923,19,556,35,513,'191 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM484 474h-28c-20 65 -36 95 -70 130c-36 37 -78 56 -123 56c-69 0 -110 -42 -110 -99c0 -49 23 -72 103 -114c49 -26 97 -49 148 -77c64 -35 109 -100 109 -176 c0 -126 -100 -213 -248 -213c-44 0 -81 7 -130 24c-22 7 -33 10 -41 10c-16 0 -24 -8 -30 -34h-29v248h29c17 -71 31 -106 60 -143c38 -48 86 -72 144 -72c77 0 126 44 126 113c0 36 -23 64 -57 88s-79 44 -122 65c-113 54 -171 109 -171 210c0 127 83 201 219 201 c39 0 71 -6 117 -23c21 -7 33 -9 42 -9c18 0 25 6 32 33h30v-218'], + 0x15B: [713,14,389,25,364,'126 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM340 326h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -60 96 -88c100 -42 138 -85 138 -156c0 -90 -63 -152 -154 -152 c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6c-9 0 -15 -7 -26 -28h-25v165h28c21 -87 67 -132 137 -132c45 0 75 26 75 65c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145'], + 0x15C: [914,19,556,35,513,'449 738h-57l-112 98l-112 -98h-56l122 176h92zM484 474h-28c-20 65 -36 95 -70 130c-36 37 -78 56 -123 56c-69 0 -110 -42 -110 -99c0 -49 23 -72 103 -114c49 -26 97 -49 148 -77c64 -35 109 -100 109 -176c0 -126 -100 -213 -248 -213c-44 0 -81 7 -130 24 c-22 7 -33 10 -41 10c-16 0 -24 -8 -30 -34h-29v248h29c17 -71 31 -106 60 -143c38 -48 86 -72 144 -72c77 0 126 44 126 113c0 36 -23 64 -57 88s-79 44 -122 65c-113 54 -171 109 -171 210c0 127 83 201 219 201c39 0 71 -6 117 -23c21 -7 33 -9 42 -9c18 0 25 6 32 33h30 v-218'], + 0x15D: [704,14,389,22,361,'359 528h-57l-112 98l-112 -98h-56l122 176h92zM340 326h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -60 96 -88c100 -42 138 -85 138 -156c0 -90 -63 -152 -154 -152c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6c-9 0 -15 -7 -26 -28 h-25v165h28c21 -87 67 -132 137 -132c45 0 75 26 75 65c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145'], + 0x15E: [692,218,556,35,513,'204 -96l35 78c-34 2 -65 9 -104 23c-22 7 -33 10 -41 10c-16 0 -24 -8 -30 -34h-29v248h29c17 -71 31 -106 60 -143c38 -48 86 -72 144 -72c77 0 126 44 126 113c0 36 -23 64 -57 88s-79 44 -122 65c-113 54 -171 109 -171 210c0 127 83 201 219 201c39 0 71 -6 117 -23 c21 -7 33 -9 42 -9c18 0 25 6 32 33h30v-218h-28c-20 65 -36 95 -70 130c-36 37 -78 56 -123 56c-69 0 -110 -42 -110 -99c0 -49 23 -72 103 -114c49 -26 97 -49 148 -77c64 -35 109 -100 109 -176c0 -121 -93 -207 -232 -212l-20 -46c12 4 20 5 32 5c56 0 89 -26 89 -70 c0 -55 -50 -89 -129 -89c-34 0 -60 5 -97 18l16 37l6 -2c24 -8 37 -12 53 -12c38 0 58 14 58 41c0 23 -17 36 -46 36c-9 0 -17 -1 -28 -4'], + 0x15F: [473,218,389,25,361,'340 326h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -60 96 -88c100 -42 138 -85 138 -156c0 -90 -63 -152 -154 -152c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6c-9 0 -15 -7 -26 -28h-25v165h28c21 -87 67 -132 137 -132 c45 0 75 26 75 65c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145zM234 0l-28 -64c12 4 20 5 32 5c56 0 89 -26 89 -70c0 -55 -50 -89 -129 -89c-34 0 -60 5 -97 18l16 37l6 -2 c24 -8 37 -12 53 -12c38 0 58 14 58 41c0 23 -17 36 -46 36c-9 0 -17 -1 -28 -4l-11 8l43 96h42'], + 0x160: [914,19,556,35,513,'449 914l-123 -176h-92l-122 176h57l111 -99l111 99h58zM484 474h-28c-20 65 -36 95 -70 130c-36 37 -78 56 -123 56c-69 0 -110 -42 -110 -99c0 -49 23 -72 103 -114c49 -26 97 -49 148 -77c64 -35 109 -100 109 -176c0 -126 -100 -213 -248 -213c-44 0 -81 7 -130 24 c-22 7 -33 10 -41 10c-16 0 -24 -8 -30 -34h-29v248h29c17 -71 31 -106 60 -143c38 -48 86 -72 144 -72c77 0 126 44 126 113c0 36 -23 64 -57 88s-79 44 -122 65c-113 54 -171 109 -171 210c0 127 83 201 219 201c39 0 71 -6 117 -23c21 -7 33 -9 42 -9c18 0 25 6 32 33h30 v-218'], + 0x161: [704,14,389,22,361,'359 704l-123 -176h-92l-122 176h57l111 -99l111 99h58zM340 326h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -60 96 -88c100 -42 138 -85 138 -156c0 -90 -63 -152 -154 -152c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6 c-9 0 -15 -7 -26 -28h-25v165h28c21 -87 67 -132 137 -132c45 0 75 26 75 65c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145'], + 0x162: [676,218,667,31,636,'317 0h-161v25c86 7 97 18 97 92v527c-124 -4 -176 -50 -193 -169h-29l3 201h600l2 -201h-29c-17 119 -69 165 -192 169v-527c0 -76 11 -86 98 -92v-25h-154l-28 -64c12 4 20 5 32 5c56 0 89 -26 89 -70c0 -55 -50 -89 -129 -89c-34 0 -60 5 -97 18l16 37l6 -2 c24 -8 37 -12 53 -12c38 0 58 14 58 41c0 23 -17 36 -46 36c-9 0 -17 -1 -28 -4l-11 8'], + 0x163: [630,218,333,19,332,'112 -96l39 87c-49 11 -79 48 -79 104v322h-53v27c72 49 109 102 167 186h25v-169h95v-44h-95v-298c0 -40 11 -60 39 -60c21 0 37 15 57 53l25 -11c-39 -79 -78 -110 -140 -113l-23 -52c12 4 20 5 32 5c56 0 89 -26 89 -70c0 -55 -50 -89 -129 -89c-34 0 -60 5 -97 18 l16 37l6 -2c24 -8 37 -12 53 -12c38 0 58 14 58 41c0 23 -17 36 -46 36c-9 0 -17 -1 -28 -4'], + 0x164: [914,0,667,31,636,'502 914l-123 -176h-92l-122 176h57l111 -99l111 99h58zM636 475h-29c-17 119 -69 165 -192 169v-527c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92v527c-124 -4 -176 -50 -193 -169h-29l3 201h600'], + 0x165: [709,12,415,19,445,'279 374l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219zM307 112l25 -11c-41 -82 -81 -113 -148 -113c-69 0 -112 40 -112 107v322h-53v27 c72 49 109 102 167 186h25v-169h60v-44h-60v-298c0 -40 11 -60 39 -60c21 0 37 15 57 53'], + 0x166: [676,0,667,31,636,'636 475h-29c-17 119 -69 165 -192 169v-288h110v-34h-110v-205c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92v205h-114v34h114v288c-124 -4 -176 -50 -193 -169h-29l3 201h600'], + 0x167: [630,12,333,17,332,'307 112l25 -11c-41 -82 -81 -113 -148 -113c-69 0 -112 40 -112 107v134h-55v56h55v132h-53v27c72 49 109 102 167 186h25v-169h95v-44h-95v-132h92v-56h-92v-110c0 -40 11 -60 39 -60c21 0 37 15 57 53'], + 0x168: [886,19,722,16,701,'530 886h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM701 676v-25c-64 -10 -78 -26 -78 -85v-314 c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219'], + 0x169: [674,14,556,16,538,'405 674h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM538 20l-63 -7c-65 -7 -89 -11 -132 -26v65 c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0x16A: [810,19,722,16,701,'515 738h-330v72h330v-72zM701 676v-25c-64 -10 -78 -26 -78 -85v-314c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202 c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219'], + 0x16B: [600,14,556,16,538,'425 528h-330v72h330v-72zM538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0x16C: [901,19,722,16,701,'478 901h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM701 676v-25c-64 -10 -78 -26 -78 -85v-314c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324 c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219'], + 0x16D: [691,14,556,16,538,'358 691h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87zM538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76 c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0x16E: [935,19,722,16,701,'473 830c0 -59 -47 -108 -106 -108c-60 0 -107 46 -107 106c0 58 49 107 108 107c57 0 105 -47 105 -105zM425 827c0 34 -28 60 -61 60c-29 0 -56 -27 -56 -58c0 -32 26 -59 57 -59c34 0 60 25 60 57zM701 676v-25c-64 -10 -78 -26 -78 -85v-314 c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219'], + 0x16F: [740,14,556,16,538,'377 635c0 -59 -47 -108 -106 -108c-60 0 -107 46 -107 106c0 58 49 107 108 107c57 0 105 -47 105 -105zM329 632c0 34 -28 60 -61 60c-29 0 -56 -27 -56 -58c0 -32 26 -59 57 -59c34 0 60 25 60 57zM538 20l-63 -7c-65 -7 -89 -11 -132 -26v65 c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0x170: [923,19,722,16,701,'354 738l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57zM154 738l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57zM701 676v-25c-64 -10 -78 -26 -78 -85v-314c0 -100 -27 -177 -76 -216 c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219'], + 0x171: [713,14,556,16,538,'252 528l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57zM52 528l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57zM538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66 c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0x172: [676,205,722,16,701,'423 -16l2 2c-20 -3 -41 -5 -62 -5c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25h219v-25c-64 -10 -78 -26 -78 -85v-314 c0 -100 -27 -177 -76 -216c-22 -18 -50 -31 -82 -41c0 -1 -1 -2 -1 -3c-9 -32 -11 -49 -11 -64c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8l23 -16c-25 -46 -79 -74 -126 -74c-62 0 -103 31 -103 78c0 38 13 63 54 111'], + 0x173: [461,205,556,16,547,'538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23zM524 -115l23 -16 c-25 -46 -79 -74 -126 -74c-62 0 -103 31 -103 78c0 38 13 63 54 111c8 10 10 11 14 16l33 12c-1 -7 -3 -10 -6 -20c-9 -32 -11 -49 -11 -64c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8'], + 0x174: [914,15,1000,19,981,'683 738h-57l-112 98l-112 -98h-56l122 176h92zM981 676v-25c-33 -3 -56 -24 -69 -64l-200 -602h-27l-171 477l-186 -477h-28l-212 602c-17 49 -27 58 -69 64v25h294v-25c-52 -4 -64 -13 -64 -42c0 -9 1 -16 7 -33l120 -364l118 308l-35 96c-9 25 -31 33 -72 35v25h312 v-25l-13 -1c-44 -3 -59 -12 -59 -36c0 -10 3 -22 14 -56l108 -336l112 343c5 14 7 29 7 42c0 31 -15 41 -69 44v25h182'], + 0x175: [704,14,722,23,707,'546 528h-57l-112 98l-112 -98h-56l122 176h92zM707 461v-24c-26 -5 -37 -16 -50 -50l-155 -401h-23l-102 310l-125 -310h-24l-148 374c-25 62 -31 72 -57 77v24h222v-24c-28 -4 -38 -11 -38 -28c0 -13 12 -44 39 -115l45 -118l68 171c-2 6 -4 12 -6 19 c-19 66 -20 67 -59 71v24h234v-24c-38 -3 -48 -8 -48 -24c0 -10 7 -38 27 -106c20 -70 24 -85 34 -127l35 94c29 78 44 115 44 128c0 23 -11 31 -48 35v24h135'], + 0x176: [914,0,722,15,699,'543 738h-57l-112 98l-112 -98h-56l122 176h92zM699 676v-25c-34 -5 -54 -16 -68 -39l-191 -311v-178c0 -78 13 -91 92 -98v-25h-347v25c83 7 93 28 93 103v136l-180 328c-19 34 -49 57 -83 59v25h335v-25l-27 -2c-40 -3 -54 -6 -54 -29c0 -9 12 -36 24 -59l120 -232 l109 178c26 43 41 82 41 102c0 29 -16 37 -84 42v25h220'], + 0x177: [704,205,500,16,482,'419 528h-57l-112 98l-112 -98h-56l122 176h92zM482 461v-24c-31 -4 -44 -12 -60 -55l-148 -398c-35 -94 -56 -133 -77 -156c-21 -22 -50 -33 -84 -33c-57 0 -97 32 -97 79c0 38 24 67 62 67c34 0 60 -23 60 -52c0 -4 -1 -9 -2 -14c-1 -3 -1 -6 -1 -6c0 -9 8 -17 17 -17 c24 0 49 32 66 82l18 53l-119 290c-20 50 -58 134 -67 146c-6 8 -12 11 -34 14v24h249v-24l-16 -1c-25 -2 -36 -10 -36 -25c0 -4 9 -30 20 -58l72 -186l68 188c9 26 11 37 11 49c0 24 -11 31 -54 33v24h152'], + 0x178: [876,0,722,15,699,'529 810c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM319 810c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM699 676v-25c-34 -5 -54 -16 -68 -39l-191 -311v-178c0 -78 13 -91 92 -98v-25h-347v25 c83 7 93 28 93 103v136l-180 328c-19 34 -49 57 -83 59v25h335v-25l-27 -2c-40 -3 -54 -6 -54 -29c0 -9 12 -36 24 -59l120 -232l109 178c26 43 41 82 41 102c0 29 -16 37 -84 42v25h220'], + 0x179: [923,0,667,28,634,'250 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM634 242l-27 -242h-579v16l382 623l-83 -1c-154 -2 -195 -26 -240 -169h-28l22 207h523v-16l-379 -625h83c95 0 161 11 202 40c56 40 69 82 98 167h26'], + 0x17A: [713,0,444,21,420,'152 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM420 160l-16 -160h-383v25l234 404c-142 0 -166 -15 -191 -110h-26l7 142h371v-26l-231 -403h29c81 0 114 13 147 59c14 21 22 37 31 69h28'], + 0x17B: [876,0,667,28,634,'411 810c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM634 242l-27 -242h-579v16l382 623l-83 -1c-154 -2 -195 -26 -240 -169h-28l22 207h523v-16l-379 -625h83c95 0 161 11 202 40c56 40 69 82 98 167h26'], + 0x17C: [666,0,444,21,420,'303 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM420 160l-16 -160h-383v25l234 404c-142 0 -166 -15 -191 -110h-26l7 142h371v-26l-231 -403h29c81 0 114 13 147 59c14 21 22 37 31 69h28'], + 0x17D: [914,0,667,28,634,'519 914l-123 -176h-92l-122 176h57l111 -99l111 99h58zM634 242l-27 -242h-579v16l382 623l-83 -1c-154 -2 -195 -26 -240 -169h-28l22 207h523v-16l-379 -625h83c95 0 161 11 202 40c56 40 69 82 98 167h26'], + 0x17E: [704,0,444,21,420,'401 704l-123 -176h-92l-122 176h57l111 -99l111 99h58zM420 160l-16 -160h-383v25l234 404c-142 0 -166 -15 -191 -110h-26l7 142h371v-26l-231 -403h29c81 0 114 13 147 59c14 21 22 37 31 69h28'], + 0x17F: [691,0,333,14,389,'30 461h41c0 79 7 139 40 179c27 33 71 51 135 51c85 0 143 -41 143 -100c0 -37 -25 -64 -62 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-36 0 -50 -20 -50 -79v-474c0 -65 12 -81 82 -83v-24h-278v24c46 5 57 18 57 63v330h-41v44'], + 0x180: [676,14,553,-28,516,'206 515v-98c38 40 73 56 122 56c111 0 188 -95 188 -234c0 -150 -92 -253 -226 -253c-50 0 -86 15 -132 57l-79 -56h-12v528h-95v46h95v39c0 40 -9 43 -55 52v24h194v-115h129v-46h-129zM206 360v-263c0 -48 27 -79 69 -79c64 0 94 64 94 203c0 132 -31 198 -93 198 c-33 0 -52 -16 -70 -59'], + 0x188: [576,14,568,30,574,'417 109l18 -18c-55 -75 -111 -105 -191 -105c-125 0 -214 93 -214 236c0 149 104 251 237 251c23 0 50 -4 69 -11c0 12 2 26 5 38c9 39 53 76 101 76c68 0 132 -35 132 -101c0 -36 -24 -63 -61 -63c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -7 19 -25 19 c-33 0 -64 -11 -64 -55v-55c16 -14 35 -38 35 -72c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169c0 -136 52 -220 139 -220c41 0 70 14 107 56'], + 0x190: [686,4,610,38,587,'544 174l43 -12c-44 -138 -154 -166 -277 -166c-117 0 -272 41 -272 179c0 83 47 154 129 179c-70 37 -118 67 -118 145c0 130 145 186 265 187c41 0 83 -6 110 -15c54 -18 106 -59 106 -105c0 -34 -15 -68 -57 -68c-41 0 -58 22 -71 80c-7 32 -34 55 -85 55 c-77 0 -114 -52 -114 -159c0 -61 29 -91 87 -91c46 0 80 11 110 11c26 0 54 -9 54 -33c0 -29 -49 -47 -77 -47c-13 0 -75 5 -91 5c-60 0 -93 -49 -93 -134c0 -80 45 -120 137 -120s178 3 214 109'], + 0x192: [706,155,500,0,498,'74 440h120c17 101 36 156 71 201c33 43 77 65 131 65c62 0 102 -31 102 -78c0 -35 -23 -61 -54 -61c-29 0 -53 21 -53 46c0 12 5 25 13 37c3 5 5 9 5 12c0 7 -11 14 -23 14c-42 0 -64 -49 -64 -146v-90h122v-46h-122c-13 -221 -14 -244 -22 -290 c-27 -168 -100 -259 -207 -259c-57 0 -93 30 -93 78c0 34 22 57 55 57c31 0 53 -20 53 -49c0 -11 -3 -18 -11 -28c-5 -6 -7 -9 -7 -12c0 -9 10 -16 22 -16c37 0 63 45 65 113l13 406h-116v46'], + 0x195: [676,10,797,14,767,'484 337v-211c0 -43 32 -86 75 -86c95 0 153 108 153 193c0 101 -46 131 -74 148c-24 15 -39 26 -39 48c0 23 22 36 49 36c95 0 119 -155 119 -210c0 -131 -79 -265 -231 -265c-101 0 -191 41 -191 146v188c0 59 -15 82 -51 82c-24 0 -48 -12 -70 -34 c-10 -10 -17 -20 -17 -24v-263c0 -41 11 -56 48 -61v-24h-240v24c45 9 53 9 53 65v502c0 48 -8 52 -54 61v24h193v-280c49 58 94 77 147 77c82 0 130 -57 130 -136'], + 0x199: [691,0,533,12,533,'533 0h-234v24c28 1 42 7 42 19c0 8 -6 20 -24 45l-95 134l-23 -24v-114c0 -47 5 -53 52 -60v-24h-239v24c33 3 48 21 48 60v402c0 67 11 118 41 154c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57 c0 12 -11 19 -29 19c-34 0 -51 -18 -51 -71v-344l128 128c11 11 21 29 21 38c0 13 -9 20 -35 23l-24 3v24h214v-24c-63 -8 -89 -25 -189 -130l194 -268c9 -12 14 -15 25 -15v-24'], + 0x19A: [676,0,291,24,265,'265 0h-240v24c34 3 51 19 51 63v253h-49v46h49v201c0 37 -17 62 -52 65v24h191v-290h48v-46h-48v-253c0 -46 17 -62 50 -63v-24'], + 0x19B: [666,0,536,60,526,'526 0h-152v24c43 2 54 9 54 33c0 12 -2 23 -11 49l-68 188l-72 -186c-11 -28 -20 -54 -20 -58c0 -15 11 -23 36 -25l16 -1v-24h-249v24c22 3 28 6 34 14c9 12 47 96 67 146l119 290l-9 24l-192 -157v67l174 140c-15 35 -33 61 -57 61c-9 0 -17 -8 -17 -17 c0 -4 3 -15 3 -20c0 -29 -26 -52 -60 -52c-38 0 -62 29 -62 67c0 47 40 79 97 79c65 0 97 -36 123 -96l114 96v-68l-93 -76l165 -443c16 -43 29 -51 60 -55v-24'], + 0x19E: [473,205,559,21,539,'539 -205h-234v24c34 4 46 20 46 60v442c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h191v-75h1c34 60 82 87 142 87c82 0 135 -55 135 -142v-452 c0 -45 10 -57 49 -60v-24'], + 0x1A0: [732,19,778,35,788,'659 579h-5c56 -62 89 -147 89 -244c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c93 0 173 -31 234 -86c10 -2 21 -4 30 -4c36 0 56 3 56 26c-21 13 -41 30 -41 56c0 21 20 49 53 49c32 0 62 -23 62 -67c0 -45 -31 -72 -72 -81 c-13 -3 -39 -5 -57 -5zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0x1A1: [505,14,554,25,576,'576 438c0 -45 -31 -72 -72 -81c-13 -3 -38 -5 -56 -5c18 -36 28 -77 28 -123c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c74 0 141 -37 178 -95c8 -2 15 -4 20 -4c25 0 50 3 50 26c-21 13 -41 30 -41 56c0 21 20 49 53 49 c32 0 62 -23 62 -67zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0x1A5: [673,205,550,10,515,'205 568v-173c33 58 71 78 129 78c111 0 181 -77 181 -224c0 -155 -72 -262 -192 -262c-45 0 -70 13 -118 60v-126c0 -67 16 -99 77 -102v-24h-272v24c48 8 56 21 56 63v597c0 64 12 109 40 143c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64 c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-36 0 -50 -22 -50 -74zM205 346v-239c15 -38 44 -65 77 -65c55 0 85 54 85 192c0 123 -25 182 -76 182c-23 0 -48 -13 -68 -37c-11 -13 -18 -27 -18 -33'], + 0x1AA: [689,228,446,25,421,'307 424l-40 -429c-3 -34 -3 -65 -3 -96c0 -34 1 -97 45 -97c12 0 23 7 23 14c0 9 -18 24 -18 48c0 25 22 47 53 47c32 0 54 -27 54 -61c0 -48 -41 -78 -111 -78c-116 0 -177 81 -177 190c0 17 0 37 2 59l36 364c3 26 5 59 7 81c-11 -4 -35 -6 -44 -6 c-60 0 -109 51 -109 114c0 61 56 115 123 115c106 0 161 -100 161 -193c0 -24 0 -48 -2 -72zM190 573c0 34 -29 60 -60 60c-32 0 -57 -28 -57 -59s26 -58 58 -58c33 0 59 26 59 57'], + 0x1AB: [630,218,347,18,331,'331 101v-186c0 -63 -31 -133 -116 -133s-123 41 -123 100c0 37 24 64 61 64c34 0 60 -26 60 -57c0 -35 -22 -43 -22 -57c0 -12 11 -19 29 -19c26 0 67 20 67 79v141c-34 -40 -76 -45 -104 -45c-69 0 -112 40 -112 107v322h-53v27c72 49 109 102 167 186h25v-169h95v-44 h-95v-298c0 -40 11 -60 39 -60c21 0 37 15 57 53'], + 0x1AD: [691,12,371,19,389,'19 417v27c20 13 37 27 53 42c1 67 11 118 40 154c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-36 0 -50 -20 -50 -79v-120h95v-44h-95v-298c0 -40 11 -60 39 -60c21 0 37 15 57 53 l25 -11c-41 -82 -81 -113 -148 -113c-69 0 -112 40 -112 107v322h-53'], + 0x1AF: [810,19,796,16,836,'482 676h222c22 0 57 6 58 29c-21 13 -41 30 -41 56s22 49 55 49c29 0 60 -20 60 -65c0 -52 -39 -73 -80 -83c-14 -3 -47 -9 -68 -13c-54 -10 -65 -29 -65 -83v-314c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196 v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300c0 73 -23 93 -97 99v25'], + 0x1B0: [596,14,600,16,626,'551 485l-1 8c-22 15 -40 22 -40 57c0 19 21 46 54 46c32 0 62 -20 62 -64c0 -45 -27 -75 -72 -87c-17 -5 -38 -8 -62 -8h-11v-332c0 -44 13 -60 57 -62v-23l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65 v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h205c27 0 63 7 65 24'], + 0x1BA: [450,237,441,9,415,'415 423l-192 -167c11 3 38 4 44 4c90 0 148 -52 148 -125c0 -42 -32 -89 -71 -111l-157 -90c-30 -17 -49 -44 -49 -75c0 -36 41 -59 74 -59s64 20 69 50c8 45 30 67 67 67c43 0 59 -26 59 -50s-9 -48 -47 -71c-32 -19 -92 -33 -141 -33c-53 0 -89 14 -113 29 c-46 30 -55 75 -55 100c0 59 31 92 78 121c42 26 85 48 126 70c16 9 33 21 33 58c0 36 -40 55 -85 55c-21 0 -64 -2 -109 -47l-27 24l230 204h-189c-23 0 -66 -30 -73 -83h-26l34 156h372v-27'], + 0x1BB: [688,0,515,27,492,'492 314h-135c-8 -9 -16 -19 -25 -27l-162 -154h167c69 0 101 8 126 78h25l-46 -211h-415v23c85 91 179 182 240 291h-235v62h265c8 22 13 47 13 71c0 72 -44 127 -119 127c-58 0 -98 -41 -122 -90h-28c35 106 100 204 223 204c111 0 182 -73 182 -183 c0 -46 -14 -91 -39 -129h85v-62'], + 0x1BE: [541,10,527,78,449,'225 438l2 -47c14 2 22 2 31 2c124 0 191 -111 191 -210c0 -119 -90 -193 -214 -193c-34 0 -71 10 -102 27c-32 18 -55 45 -55 79c0 19 16 48 53 48c45 0 63 -30 71 -60c9 -33 17 -65 54 -65c53 0 64 101 64 150c0 81 -62 126 -120 126h-32v143h-64v46h64v57h52l3 -57 h111v-46h-109'], + 0x1C0: [740,0,186,60,126,'126 0h-66v740h66v-740'], + 0x1C1: [740,0,313,60,253,'253 0h-66v740h66v-740zM126 0h-66v740h66v-740'], + 0x1C2: [740,0,445,39,405,'405 260h-148v-260h-66v260h-152v66h152v84h-152v66h152v264h66v-264h148v-66h-148v-84h148v-66'], + 0x1C3: [691,13,333,81,251,'182 234h-31c-13 123 -22 170 -51 266c-14 44 -18 66 -18 89c0 65 35 102 85 102c54 0 84 -37 84 -100c0 -26 -4 -46 -18 -91c-29 -95 -38 -142 -51 -266zM250 70c0 -48 -36 -83 -84 -83c-47 0 -85 37 -85 84c0 49 35 85 84 85c47 0 85 -36 85 -86'], + 0x1F0: [704,203,333,-57,335,'335 704l-123 -176h-92l-122 176h57l111 -99l111 99h58zM260 461v-459c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76 v474c0 43 -12 55 -63 59v24h202'], + 0x1FA: [972,0,722,9,689,'374 651l205 -483c51 -121 69 -143 110 -143v-25h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l205 506c-35 12 -60 45 -60 86c0 48 41 90 92 90c47 0 89 -41 89 -89 c0 -40 -26 -74 -60 -87zM384 236l-101 243l-94 -243h195zM386 736c0 23 -14 43 -44 43c-24 0 -41 -20 -41 -42c0 -23 19 -43 41 -43c24 0 44 19 44 42zM228 825l146 125c17 15 25 22 44 22c23 0 32 -12 32 -33c0 -19 -14 -26 -45 -43l-132 -71h-45'], + 0x1FB: [923,14,500,25,488,'122 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM357 635c0 -59 -47 -108 -106 -108c-60 0 -107 46 -107 106c0 58 49 107 108 107c57 0 105 -47 105 -105zM309 632c0 34 -28 60 -61 60c-29 0 -56 -27 -56 -58 c0 -32 26 -59 57 -59c34 0 60 25 60 57zM473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23 c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0x1FC: [923,0,1000,4,951,'476 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM951 211l-41 -211h-566v25c74 4 88 20 88 94v184h-190l-100 -188c-11 -21 -15 -33 -15 -45c0 -28 14 -37 66 -43l17 -2v-25h-206v25c39 6 45 10 110 128l220 402 c19 34 28 52 28 62c0 24 -21 33 -87 37v22h634v-201h-25c-13 64 -23 88 -44 114c-28 35 -88 52 -181 52c-53 0 -67 -6 -67 -30v-248c117 10 127 20 155 149h23v-338h-23c-18 124 -43 150 -155 157v-243c0 -42 16 -54 74 -54c87 0 145 19 186 61c34 35 68 86 76 116h23z M432 343v290h-7l-161 -290h168'], + 0x1FD: [713,14,722,33,694,'255 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM673 129l21 -15c-59 -90 -115 -123 -210 -123c-63 0 -113 22 -147 84h-6c-55 -68 -114 -89 -180 -89c-77 0 -118 37 -118 108c0 44 21 73 59 105c32 27 74 49 204 86v75 c0 58 -22 81 -78 81c-38 0 -65 -15 -65 -35c0 -7 3 -12 12 -22c13 -15 17 -24 17 -43c0 -37 -27 -62 -67 -62c-42 0 -65 30 -65 69c0 71 77 125 184 125c64 0 107 -14 140 -51c34 38 74 51 127 51c75 0 137 -37 166 -101c16 -34 21 -63 21 -124h-254v-23 c0 -110 30 -164 115 -164c49 0 85 20 124 68zM567 285v33c0 93 -16 125 -63 125c-52 0 -70 -48 -70 -158h133zM296 81v167c-88 -32 -119 -65 -119 -128c0 -47 19 -71 57 -71c24 0 38 7 62 32'], + 0x1FE: [923,74,778,35,743,'270 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM685 737l-78 -115c51 -42 71 -65 93 -106c29 -54 43 -115 43 -180c0 -208 -147 -355 -354 -355c-72 0 -124 14 -187 49l-71 -104h-50l86 126c-59 51 -83 83 -107 143 c-17 44 -25 90 -25 140c0 207 148 356 355 356c68 0 118 -13 182 -47l63 93h50zM234 151l286 418c-35 64 -72 89 -131 89c-114 0 -177 -118 -177 -330c0 -74 5 -117 22 -177zM540 524l-287 -420c34 -64 73 -90 136 -90c116 0 177 109 177 317c0 80 -6 128 -26 193'], + 0x1FF: [713,92,500,25,476,'131 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM461 549l-73 -123c62 -56 88 -115 88 -197c0 -140 -95 -243 -225 -243c-40 0 -71 8 -107 27l-63 -105h-47l76 128c-60 56 -85 113 -85 193c0 140 97 244 227 244 c38 0 67 -7 103 -25l60 101h46zM173 140l143 242c-13 44 -31 60 -64 60c-62 0 -80 -52 -80 -233c0 -27 0 -49 1 -69zM327 324l-144 -244c13 -45 33 -63 68 -63c58 0 78 52 78 200c0 35 0 60 -2 107'], + 0x1E80: [923,15,1000,19,981,'633 738h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM981 676v-25c-33 -3 -56 -24 -69 -64l-200 -602h-27l-171 477l-186 -477h-28l-212 602c-17 49 -27 58 -69 64v25h294v-25c-52 -4 -64 -13 -64 -42c0 -9 1 -16 7 -33l120 -364l118 308 l-35 96c-9 25 -31 33 -72 35v25h312v-25l-13 -1c-44 -3 -59 -12 -59 -36c0 -10 3 -22 14 -56l108 -336l112 343c5 14 7 29 7 42c0 31 -15 41 -69 44v25h182'], + 0x1E81: [713,14,722,23,707,'496 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM707 461v-24c-26 -5 -37 -16 -50 -50l-155 -401h-23l-102 310l-125 -310h-24l-148 374c-25 62 -31 72 -57 77v24h222v-24c-28 -4 -38 -11 -38 -28c0 -13 12 -44 39 -115l45 -118l68 171 c-2 6 -4 12 -6 19c-19 66 -20 67 -59 71v24h234v-24c-38 -3 -48 -8 -48 -24c0 -10 7 -38 27 -106c20 -70 24 -85 34 -127l35 94c29 78 44 115 44 128c0 23 -11 31 -48 35v24h135'], + 0x1E82: [923,15,1000,19,981,'395 738l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM981 676v-25c-33 -3 -56 -24 -69 -64l-200 -602h-27l-171 477l-186 -477h-28l-212 602c-17 49 -27 58 -69 64v25h294v-25c-52 -4 -64 -13 -64 -42c0 -9 1 -16 7 -33l120 -364 l118 308l-35 96c-9 25 -31 33 -72 35v25h312v-25l-13 -1c-44 -3 -59 -12 -59 -36c0 -10 3 -22 14 -56l108 -336l112 343c5 14 7 29 7 42c0 31 -15 41 -69 44v25h182'], + 0x1E83: [713,14,722,23,707,'258 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM707 461v-24c-26 -5 -37 -16 -50 -50l-155 -401h-23l-102 310l-125 -310h-24l-148 374c-25 62 -31 72 -57 77v24h222v-24c-28 -4 -38 -11 -38 -28c0 -13 12 -44 39 -115 l45 -118l68 171c-2 6 -4 12 -6 19c-19 66 -20 67 -59 71v24h234v-24c-38 -3 -48 -8 -48 -24c0 -10 7 -38 27 -106c20 -70 24 -85 34 -127l35 94c29 78 44 115 44 128c0 23 -11 31 -48 35v24h135'], + 0x1E84: [876,15,1000,19,981,'684 810c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM474 810c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM981 676v-25c-33 -3 -56 -24 -69 -64l-200 -602h-27l-171 477l-186 -477h-28l-212 602 c-17 49 -27 58 -69 64v25h294v-25c-52 -4 -64 -13 -64 -42c0 -9 1 -16 7 -33l120 -364l118 308l-35 96c-9 25 -31 33 -72 35v25h312v-25l-13 -1c-44 -3 -59 -12 -59 -36c0 -10 3 -22 14 -56l108 -336l112 343c5 14 7 29 7 42c0 31 -15 41 -69 44v25h182'], + 0x1E85: [666,14,722,23,707,'547 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM337 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM707 461v-24c-26 -5 -37 -16 -50 -50l-155 -401h-23l-102 310l-125 -310h-24l-148 374 c-25 62 -31 72 -57 77v24h222v-24c-28 -4 -38 -11 -38 -28c0 -13 12 -44 39 -115l45 -118l68 171c-2 6 -4 12 -6 19c-19 66 -20 67 -59 71v24h234v-24c-38 -3 -48 -8 -48 -24c0 -10 7 -38 27 -106c20 -70 24 -85 34 -127l35 94c29 78 44 115 44 128c0 23 -11 31 -48 35v24 h135'], + 0x1EF2: [923,0,722,15,699,'469 738h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM699 676v-25c-34 -5 -54 -16 -68 -39l-191 -311v-178c0 -78 13 -91 92 -98v-25h-347v25c83 7 93 28 93 103v136l-180 328c-19 34 -49 57 -83 59v25h335v-25l-27 -2 c-40 -3 -54 -6 -54 -29c0 -9 12 -36 24 -59l120 -232l109 178c26 43 41 82 41 102c0 29 -16 37 -84 42v25h220'], + 0x1EF3: [713,205,500,16,482,'369 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28zM482 461v-24c-31 -4 -44 -12 -60 -55l-148 -398c-35 -94 -56 -133 -77 -156c-21 -22 -50 -33 -84 -33c-57 0 -97 32 -97 79c0 38 24 67 62 67c34 0 60 -23 60 -52c0 -4 -1 -9 -2 -14 c-1 -3 -1 -6 -1 -6c0 -9 8 -17 17 -17c24 0 49 32 66 82l18 53l-119 290c-20 50 -58 134 -67 146c-6 8 -12 11 -34 14v24h249v-24l-16 -1c-25 -2 -36 -10 -36 -25c0 -4 9 -30 20 -58l72 -186l68 188c9 26 11 37 11 49c0 24 -11 31 -54 33v24h152'], + 0xA792: [691,19,769,27,734,'704 152l30 -25c-93 -115 -173 -146 -288 -146c-208 0 -341 137 -350 323h-69v54h70c15 194 153 333 346 333c48 0 98 -11 156 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25c-19 54 -43 87 -67 115c-46 55 -100 90 -167 90c-103 0 -181 -108 -184 -300h224 v-54h-224c3 -81 18 -143 54 -199c29 -46 88 -76 147 -76c44 0 86 12 126 34c32 18 60 43 104 89'], + 0xFB00: [691,0,610,15,666,'15 461h56c0 103 17 149 70 192c32 26 78 38 130 38s91 -8 142 -28c26 18 63 28 110 28c85 0 143 -41 143 -100c0 -37 -25 -64 -62 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-36 0 -50 -20 -50 -79v-120h86v-44h-86v-328c0 -45 9 -56 59 -65v-24 h-244v24c46 5 46 18 46 63v330h-138v-333c0 -39 10 -55 46 -60v-24h-241v24c47 6 56 23 56 66v327h-56v44zM348 461v98c-12 4 -24 21 -24 37c0 26 16 23 16 42c0 12 -16 22 -41 22c-54 0 -89 -40 -89 -143v-56h138'], + 0xFB01: [691,0,556,14,536,'536 0h-234v24c37 4 46 18 46 60v297c0 26 -9 36 -37 36h-101v-333c0 -41 10 -55 46 -60v-24h-242v24c47 6 57 20 57 65v328h-56v44h56c6 98 18 149 77 192c35 26 84 38 146 38c110 0 178 -35 178 -92c0 -36 -27 -62 -65 -62s-64 24 -64 55c0 12 3 24 7 35c1 3 2 7 2 7 c0 15 -24 27 -54 27c-58 0 -88 -30 -88 -160v-40h104c35 0 96 0 173 13v-388c0 -45 13 -60 49 -62v-24'], + 0xFB02: [691,0,556,15,535,'535 0h-233v24l8 1c28 3 38 22 38 58v334h-138v-333c0 -39 10 -55 46 -60v-24h-241v24c47 6 56 23 56 66v327h-56v44h56c0 103 17 149 70 192c32 26 78 38 130 38c55 0 96 -9 151 -31l46 30h19v-607c0 -36 11 -56 36 -58l12 -1v-24zM348 461v98c-12 4 -24 21 -24 37 c0 26 16 23 16 42c0 12 -16 20 -41 20c-54 0 -89 -38 -89 -141v-56h138'], + 0xFB03: [691,0,833,15,813,'813 0h-234v24c37 4 46 18 46 60v297c0 26 -9 36 -37 36h-101v-333c0 -41 10 -55 46 -60v-24h-231v24c42 6 46 20 46 65v328h-138v-333c0 -39 10 -55 46 -60v-24h-241v24c47 6 56 23 56 66v327h-56v44h56c0 103 17 149 70 192c32 26 78 38 130 38s114 -7 161 -33 c35 23 81 33 139 33c110 0 178 -35 178 -92c0 -36 -27 -62 -65 -62s-64 24 -64 55c0 12 3 24 7 35c1 3 2 7 2 7c0 15 -24 27 -54 27c-58 0 -88 -30 -88 -160v-40h104c35 0 96 0 173 13v-388c0 -45 13 -60 49 -62v-24zM348 461v98c-12 4 -24 21 -24 37c0 26 16 23 16 42 c0 12 -16 23 -41 23c-54 0 -89 -41 -89 -144v-56h138'], + 0xFB04: [691,0,833,15,812,'812 0h-233v24l8 1c28 3 38 22 38 58v334h-138v-333c0 -39 10 -55 46 -60v-24h-231v24c38 8 46 23 46 66v327h-138v-333c0 -39 10 -55 46 -60v-24h-241v24c47 6 56 23 56 66v327h-56v44h56c0 103 17 149 70 192c32 26 78 38 130 38s105 -10 147 -36c33 24 78 36 130 36 c55 0 96 -9 151 -31l46 30h19v-607c0 -36 11 -56 36 -58l12 -1v-24zM625 461v98c-12 4 -24 21 -24 37c0 26 16 23 16 42c0 12 -16 22 -41 22c-54 0 -89 -40 -89 -143v-56h138zM348 461v98c-12 4 -24 21 -24 37c0 26 16 23 16 42c0 12 -16 22 -41 22c-54 0 -89 -40 -89 -143 v-56h138'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Latin/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/BoldItalic/Main.js new file mode 100644 index 0000000..b50de05 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/BoldItalic/Main.js @@ -0,0 +1,280 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Latin/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Latin-bold-italic'] = { + directory: 'Latin/BoldItalic', + family: 'STIXMathJax_Latin', + weight: 'bold', + style: 'italic', + id: 'STIXWEBLATINBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xA1: [494,205,389,19,320,'320 423c0 -42 -32 -75 -73 -75c-39 0 -73 35 -73 75s33 71 74 71c42 0 72 -30 72 -71zM193 275l29 -8c-30 -154 -48 -278 -53 -354c-2 -41 -4 -54 -12 -72c-14 -29 -38 -46 -69 -46c-42 0 -69 29 -69 74c0 26 6 40 31 88c57 109 101 209 143 318'], + 0xA2: [576,143,500,42,439,'431 576l-45 -127c36 -20 53 -45 53 -79c0 -39 -28 -68 -65 -68c-14 0 -25 3 -35 11l-92 -261c42 2 77 29 118 89l27 -18c-63 -90 -100 -120 -167 -133l-47 -133h-34l46 130c-94 6 -148 61 -148 151c0 161 143 324 285 324c9 0 16 -1 28 -3l41 117h35zM339 413v2 c-1 9 -9 14 -22 14c-31 0 -58 -23 -86 -73c-36 -64 -62 -151 -62 -209c0 -44 14 -72 45 -90'], + 0xA4: [542,10,500,-26,526,'526 48l-58 -58l-96 98c-42 -26 -78 -37 -122 -37s-80 11 -122 37l-96 -98l-58 58l98 98c-26 39 -37 73 -37 120c0 46 11 82 37 122l-98 98l58 56l96 -96c40 25 76 35 122 35c47 0 82 -10 122 -35l96 96l58 -56l-98 -98c27 -43 37 -76 37 -122c0 -47 -11 -84 -37 -120z M377 264c0 76 -56 135 -127 135s-127 -58 -127 -133c0 -74 56 -133 127 -133c69 0 127 60 127 131'], + 0xA6: [685,18,220,66,154,'154 426h-88v259h88v-259zM154 -18h-88v259h88v-259'], + 0xA9: [685,18,747,30,718,'544 250l-17 -72c-2 -10 -3 -11 -12 -14c-5 -3 -9 -4 -52 -15c-28 -8 -38 -9 -66 -9c-135 0 -217 73 -217 195c0 123 89 203 225 203c36 0 64 -5 100 -18c15 -6 22 -12 22 -21v-71h-17c-13 61 -49 90 -110 90c-86 0 -135 -64 -135 -176c0 -115 50 -179 138 -179 c58 0 94 26 123 87h18zM718 334c0 -200 -150 -352 -349 -352c-187 0 -339 157 -339 350c0 197 152 353 344 353s344 -155 344 -351zM657 334c0 166 -128 305 -283 305s-283 -138 -283 -306c0 -165 128 -305 279 -305c160 0 287 136 287 306'], + 0xAA: [685,-399,266,16,330,'330 680l-46 -140c-16 -48 -22 -73 -22 -89c0 -6 2 -9 5 -9c7 0 22 13 41 36l5 6l13 -9c-38 -53 -67 -76 -97 -76c-24 0 -44 18 -44 38c0 11 1 17 11 51c-37 -65 -66 -88 -110 -88c-42 0 -70 31 -70 76c0 96 97 209 180 209c26 0 40 -13 47 -45l11 36zM218 630 c0 15 -8 28 -20 28c-35 1 -104 -119 -104 -185c0 -15 11 -28 24 -28c20 0 43 23 64 62c19 37 36 95 36 123'], + 0xAB: [415,-32,500,12,468,'197 226l170 124c24 17 34 25 47 37c19 19 33 28 41 28c7 0 13 -6 13 -12c0 -21 -30 -61 -101 -134c-17 -18 -25 -29 -45 -49l40 -83c23 -48 33 -75 33 -90c0 -8 -6 -15 -15 -15c-5 0 -8 2 -15 10c-24 27 -83 88 -168 175v9zM12 226l170 124c24 17 34 25 47 37 c19 19 33 28 41 28c7 0 13 -6 13 -12c0 -21 -30 -61 -101 -134c-17 -18 -27 -28 -45 -49l40 -83c23 -48 33 -75 33 -90c0 -8 -6 -15 -15 -15c-5 0 -8 2 -15 10c-24 27 -83 88 -168 175v9'], + 0xAD: [282,-166,333,2,271,'271 282l-23 -116h-246l24 116h245'], + 0xB2: [683,-274,300,2,313,'79 574l-18 11c36 67 82 98 144 98c61 0 108 -43 108 -99c0 -48 -25 -86 -92 -140l-125 -101h89c50 0 65 8 90 45h16l-51 -114h-238v16c100 95 119 113 148 145c51 56 70 89 70 121c0 41 -22 66 -59 66c-29 0 -50 -12 -82 -48'], + 0xB3: [683,-265,300,17,321,'103 590l-14 13c40 56 79 80 133 80c56 0 99 -35 99 -81c0 -37 -14 -54 -72 -87l-7 -4c38 -26 52 -49 52 -88c0 -87 -86 -158 -191 -158c-55 0 -86 18 -86 50c0 24 15 41 37 41c16 0 30 -9 43 -28c21 -28 24 -30 42 -30c40 0 71 40 71 92c0 58 -33 88 -100 91l2 14 c82 15 121 42 121 85c0 32 -21 52 -55 52c-28 0 -47 -10 -75 -42'], + 0xB6: [669,193,617,60,679,'679 669l-6 -25c-78 0 -82 -4 -101 -76l-166 -636c-4 -17 -11 -41 -11 -60s12 -35 45 -38l23 -2l-7 -25h-171l217 837h-55l-217 -837h-170l7 25c50 4 67 8 78 18c7 7 12 21 28 82l85 326c-89 0 -145 42 -145 133c0 76 33 166 76 212c41 44 106 66 195 66h295zM264 283 l94 361c-65 -16 -92 -35 -121 -85c-27 -46 -45 -113 -45 -165s25 -96 72 -111'], + 0xB8: [5,218,333,-80,156,'85 5l-45 -67c10 2 16 3 26 3c52 0 90 -30 90 -72c0 -50 -53 -87 -124 -87c-36 0 -68 7 -112 25l22 33c29 -13 45 -17 67 -17c34 0 56 16 56 41c0 23 -17 36 -47 36c-10 0 -18 -1 -30 -4l-13 12l66 97h44'], + 0xB9: [683,-274,300,30,301,'301 683l-100 -330c-4 -12 -6 -25 -6 -34c0 -22 10 -26 59 -26v-19h-224v19c56 0 71 14 88 80c2 8 7 23 13 41c24 70 62 197 60 199c-3 14 -12 21 -26 21c-7 0 -18 -1 -32 -2l-11 -1l2 21c72 11 114 18 177 31'], + 0xBA: [685,-400,300,56,347,'347 587c0 -100 -93 -187 -185 -187c-61 0 -106 37 -106 89c0 100 91 196 187 196c64 0 104 -41 104 -98zM266 627c0 23 -8 38 -25 38c-24 1 -42 -17 -60 -48c-23 -40 -44 -118 -44 -162c0 -22 11 -35 28 -35c24 0 44 20 65 65c19 41 36 101 36 142'], + 0xBB: [415,-32,500,12,468,'468 221l-170 -124c-24 -18 -34 -26 -47 -38c-19 -18 -32 -27 -41 -27c-7 0 -13 5 -13 12c0 21 30 61 101 134l45 49l-40 83c-24 49 -33 74 -33 90c0 8 6 15 15 15c5 0 8 -2 15 -10c41 -46 71 -77 168 -175v-9zM283 221l-170 -124c-24 -18 -34 -26 -47 -38 c-19 -18 -32 -27 -41 -27c-7 0 -13 5 -13 12c0 21 30 61 101 134l45 49l-40 83c-24 49 -33 74 -33 90c0 8 6 15 15 15c5 0 8 -2 15 -10c41 -46 71 -77 168 -175v-9'], + 0xBC: [683,14,750,7,721,'721 410l-78 -261h45l-17 -61h-44l-28 -88h-86l27 88h-159l16 67l278 255h46zM609 319l-184 -170h132zM629 683l-435 -697h-58l435 697h58zM278 683l-100 -330c-4 -12 -6 -25 -6 -34c0 -22 10 -26 59 -26v-19h-224v19c56 0 70 14 88 80c3 12 8 26 13 41 c28 86 60 188 60 199s-12 21 -26 21c-7 0 -18 -1 -32 -2l-11 -1l2 21c72 11 114 18 177 31'], + 0xBD: [683,14,750,-9,723,'489 300l-18 11c36 67 82 98 144 98c61 0 108 -43 108 -99c0 -48 -25 -86 -92 -140l-125 -101h89c50 0 65 8 90 45h16l-51 -114h-238v16c100 95 119 113 148 145c51 56 70 89 70 121c0 41 -22 66 -59 66c-29 0 -50 -12 -82 -48zM614 683l-435 -697h-58l435 697h58z M262 683l-100 -330c-4 -12 -6 -25 -6 -34c0 -22 10 -26 59 -26v-19h-224v19c56 0 70 14 88 80c3 12 8 26 13 41c28 86 60 188 60 199s-12 21 -26 21c-7 0 -18 -1 -32 -2l-11 -1l2 21c72 11 114 18 177 31'], + 0xBE: [683,14,750,7,726,'726 410l-78 -261h45l-17 -61h-44l-28 -88h-86l27 88h-159l16 67l278 255h46zM614 319l-184 -170h132zM634 683l-435 -697h-58l435 697h58zM93 590l-14 13c40 56 80 80 133 80c56 0 99 -35 99 -81c0 -37 -14 -54 -72 -87l-7 -4c38 -26 52 -49 52 -88 c0 -87 -86 -158 -191 -158c-55 0 -86 18 -86 50c0 24 15 41 37 41c16 0 30 -9 43 -28c21 -28 24 -30 42 -30c40 0 71 40 71 91c0 59 -32 89 -100 92l2 14c82 15 121 42 121 85c0 32 -21 52 -55 52c-28 0 -47 -10 -75 -42'], + 0xBF: [492,205,500,30,421,'421 418c0 -42 -32 -74 -75 -74c-40 0 -73 34 -73 74c0 42 33 74 75 74s73 -32 73 -74zM262 105l-41 -51c-45 -55 -64 -101 -64 -148c0 -50 26 -80 69 -80c32 0 62 19 62 38c0 6 -3 12 -11 22c-13 17 -18 30 -18 45c0 34 27 60 61 60s61 -29 61 -67 c0 -75 -74 -129 -175 -129c-106 0 -176 58 -176 144c0 63 36 113 126 171l66 43c38 25 54 48 82 118l29 -7c-5 -55 -25 -101 -71 -159'], + 0xC0: [947,0,667,-68,593,'593 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25zM346 248l-37 243l-148 -243h185zM516 766h-46l-132 88 c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0xC1: [947,0,667,-68,593,'593 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25zM346 248l-37 243l-148 -243h185zM326 766l122 131 c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xC2: [940,0,667,-68,593,'593 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25zM346 248l-37 243l-148 -243h185zM587 766h-51l-88 95l-131 -95h-57 l160 174h81'], + 0xC3: [905,0,667,-68,612,'571 905h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42zM593 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215 l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25zM346 248l-37 243l-148 -243h185'], + 0xC4: [905,0,667,-68,599,'593 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25zM346 248l-37 243l-148 -243h185zM599 839c0 -35 -30 -64 -66 -64 c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM387 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xC5: [1004,0,667,-68,593,'593 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25zM346 248l-37 243l-148 -243h185zM546 898 c0 -59 -48 -107 -107 -107c-64 0 -106 45 -106 108c0 59 49 105 107 105c63 0 106 -47 106 -106zM498 896c0 33 -27 60 -60 60c-31 0 -57 -27 -57 -59s26 -58 57 -58c33 0 60 26 60 57'], + 0xC6: [669,0,944,-64,918,'918 669l-45 -190l-24 5l-2 40c-4 75 -58 113 -162 113c-42 0 -52 -5 -59 -32l-65 -235h19c102 0 135 20 175 106l26 -4l-73 -273l-25 5c2 16 3 35 3 46c0 66 -18 81 -133 88l-63 -241c-3 -12 -5 -22 -5 -28c0 -26 26 -37 68 -37c78 0 124 12 170 47c36 27 66 70 101 120 l26 -3l-59 -196h-527v25c52 8 65 27 81 81l43 149h-192l-114 -157c-10 -13 -15 -27 -15 -39c0 -22 16 -30 64 -34v-25h-195v25c17 2 22 4 30 9c5 2 20 18 59 68l364 472c12 16 20 33 20 44c0 19 -15 24 -80 28v23h589zM490 627h-12l-253 -333h173'], + 0xC7: [685,218,667,32,677,'677 685l-51 -234l-32 6c2 13 3 22 3 35c0 98 -50 158 -131 158c-67 0 -127 -45 -168 -100c-66 -86 -112 -213 -112 -341c0 -109 62 -174 150 -174c31 0 62 6 90 18c42 18 65 41 119 101l31 -22c-32 -44 -49 -63 -78 -85c-57 -43 -123 -65 -194 -65c-21 0 -42 0 -64 4 l-33 -48c10 2 16 3 26 3c52 0 90 -30 90 -72c0 -50 -53 -87 -124 -87c-36 0 -69 7 -112 25l22 33c28 -13 45 -17 67 -17c34 0 56 16 56 41c0 23 -17 36 -47 36c-10 0 -18 -1 -30 -4l-13 12l59 88c-109 36 -169 126 -169 245c0 127 51 243 131 324c73 74 171 120 277 120 c41 0 86 -7 131 -21c15 -5 30 -8 38 -8c15 0 24 7 38 29h30'], + 0xC8: [947,0,667,-27,653,'653 669l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541zM531 766h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0xC9: [947,0,667,-27,653,'653 669l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541zM306 766l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xCA: [940,0,667,-27,653,'653 669l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541zM586 766h-51l-88 95l-131 -95h-57l160 174h81'], + 0xCB: [905,0,667,-27,653,'653 669l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541zM601 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM389 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64 c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xCC: [947,0,389,-32,406,'406 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298zM404 766h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45 c19 0 38 -9 56 -33'], + 0xCD: [947,0,389,-32,440,'406 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298zM200 766l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47 l-152 -87h-49'], + 0xCE: [940,0,389,-32,469,'406 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298zM469 766h-51l-88 95l-131 -95h-57l160 174h81'], + 0xCF: [905,0,389,-32,480,'406 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298zM480 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66 c36 0 66 -30 66 -66zM268 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xD0: [669,0,722,-31,700,'109 669h290c189 0 301 -102 301 -273c0 -228 -189 -396 -445 -396h-286v25c48 6 66 21 80 72l63 232h-102l12 44h102l46 170c9 33 12 49 12 59c0 24 -14 32 -42 37l-31 5v25zM260 329l-56 -207c-7 -27 -12 -42 -12 -54c0 -24 16 -34 54 -34c97 0 168 38 223 118 c52 77 84 194 84 305c0 122 -54 181 -165 181c-33 0 -48 -10 -55 -38l-61 -227h122l-12 -44h-122'], + 0xD1: [905,15,722,-27,748,'619 905h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42zM748 669v-25c-56 -11 -66 -24 -102 -153l-143 -506h-28l-257 547 l-99 -354c-12 -42 -19 -75 -19 -94c0 -39 20 -54 79 -59v-25h-206v25c55 11 60 17 101 155l120 407c-19 44 -27 52 -82 57v25h193l216 -467l81 289c11 41 19 75 19 94c0 38 -21 59 -81 59v25h208'], + 0xD2: [947,18,722,27,691,'691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM547 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388 c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398zM580 766h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0xD3: [947,18,722,27,691,'691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM547 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388 c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398zM355 766l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xD4: [940,18,722,27,691,'691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM547 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388 c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398zM638 766h-51l-88 95l-131 -95h-57l160 174h81'], + 0xD5: [905,18,722,27,691,'620 905h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42zM691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96 c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM547 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398'], + 0xD6: [905,18,722,27,691,'691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM547 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388 c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398zM651 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM439 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xD8: [764,125,722,27,691,'633 764l-63 -108c74 -35 121 -117 121 -203c0 -152 -72 -283 -183 -376c-73 -61 -151 -95 -240 -95c-31 0 -54 3 -85 13l-70 -120h-48l79 136c-78 42 -117 113 -117 201c0 249 199 473 422 473c30 0 50 -3 82 -13l53 92h49zM182 77l324 553c-19 15 -37 21 -63 21 c-61 0 -116 -43 -165 -130c-58 -103 -107 -278 -107 -380c0 -22 4 -44 11 -64zM533 593l-325 -555c20 -16 41 -22 67 -22c62 0 128 57 166 135c51 105 106 275 106 376c0 22 -5 43 -14 66'], + 0xD9: [947,18,722,67,744,'744 669v-25c-55 -11 -65 -13 -102 -147l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294 c-26 -94 -28 -107 -28 -135c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207zM578 766h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0xDA: [947,18,722,67,744,'744 669v-25c-55 -11 -65 -13 -102 -147l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294 c-26 -94 -28 -107 -28 -135c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207zM354 766l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xDB: [940,18,722,67,744,'744 669v-25c-55 -11 -65 -13 -102 -147l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294 c-26 -94 -28 -107 -28 -135c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207zM637 766h-51l-88 95l-131 -95h-57l160 174h81'], + 0xDC: [905,18,722,67,744,'744 669v-25c-55 -11 -65 -13 -102 -147l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294 c-26 -94 -28 -107 -28 -135c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207zM648 839c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM436 839 c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xDD: [947,0,611,71,659,'659 669v-25c-38 -5 -60 -27 -92 -72l-189 -264l-52 -191c-5 -20 -10 -37 -10 -51c0 -28 17 -41 79 -41v-25h-323v25c66 6 87 15 104 78l57 208l-87 270c-16 48 -23 52 -75 63v25h285v-25c-55 -2 -69 -9 -69 -39c0 -18 8 -44 29 -110l46 -143l128 183c21 30 28 49 28 67 c0 31 -13 40 -66 42v25h207zM357 766l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xDE: [669,0,611,-27,573,'312 534h44c146 0 217 -47 217 -148c0 -56 -23 -109 -64 -143c-48 -39 -120 -61 -209 -61c-27 0 -46 1 -81 5l-16 -61c-9 -35 -8 -52 -8 -62c0 -27 15 -36 71 -39v-25h-293v25c52 8 67 26 81 77l120 436c8 31 12 54 12 69c0 20 -12 29 -43 33l-31 4v25h295l-1 -25 c-53 -8 -61 -15 -81 -72zM292 451l-63 -232c17 -1 29 -2 42 -2c57 0 92 15 117 52c23 35 39 98 39 142c0 58 -31 91 -84 91c-35 0 -41 -14 -51 -51'], + 0xDF: [705,200,500,-200,473,'-16 -20l92 423c43 198 129 302 251 302c85 0 146 -50 146 -126c0 -61 -21 -98 -69 -135c-26 -20 -58 -27 -113 -45v-1c88 -14 144 -60 144 -143c0 -73 -34 -143 -73 -190c-41 -49 -90 -72 -149 -72c-30 0 -48 6 -71 22l20 35l4 -5c8 -10 29 -18 45 -18c26 0 42 20 61 60 c25 53 43 153 43 217c0 30 -9 54 -24 65c-10 7 -23 11 -52 15l7 37h17c23 0 53 16 70 53s29 93 29 140c0 42 -15 61 -46 61c-46 0 -76 -49 -102 -166l-89 -398c-52 -231 -123 -311 -228 -311c-60 0 -97 31 -97 77c0 32 21 56 52 56c30 0 47 -18 47 -46 c0 -26 -17 -24 -17 -41c0 -8 4 -15 16 -15c25 0 40 12 49 34c13 25 26 65 37 115'], + 0xE0: [697,14,500,-21,456,'435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133 c0 -9 4 -15 12 -15c16 0 32 15 73 70zM303 373c0 27 -15 47 -37 47c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240zM416 516h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0xE1: [697,14,500,-21,456,'435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133 c0 -9 4 -15 12 -15c16 0 32 15 73 70zM303 373c0 27 -15 47 -37 47c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240zM192 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87 h-49'], + 0xE2: [690,14,500,-21,475,'435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133 c0 -9 4 -15 12 -15c16 0 32 15 73 70zM303 373c0 27 -15 47 -37 47c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240zM475 516h-51l-88 95l-131 -95h-57l160 174h81'], + 0xE3: [655,14,500,-21,497,'456 655h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42zM435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64 c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133c0 -9 4 -15 12 -15c16 0 32 15 73 70zM303 373c0 27 -15 47 -37 47 c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240'], + 0xE4: [655,14,500,-21,485,'435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133 c0 -9 4 -15 12 -15c16 0 32 15 73 70zM303 373c0 27 -15 47 -37 47c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240zM485 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66 c36 0 66 -30 66 -66zM273 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xE5: [756,14,500,-21,456,'435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133 c0 -9 4 -15 12 -15c16 0 32 15 73 70zM303 373c0 27 -15 47 -37 47c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240zM426 650c0 -59 -48 -107 -107 -107c-64 0 -106 45 -106 108c0 59 49 105 107 105 c63 0 106 -47 106 -106zM378 648c0 33 -27 60 -60 60c-31 0 -57 -27 -57 -59s26 -58 57 -58c33 0 60 26 60 57'], + 0xE6: [462,13,722,-5,673,'473 459l-20 -65c38 49 71 65 120 65c63 0 100 -32 100 -87c0 -82 -83 -161 -230 -185l-37 -6c-4 -20 -5 -31 -5 -46c0 -53 25 -85 66 -85c48 0 90 31 124 90l28 -17c-43 -88 -110 -136 -194 -136c-89 0 -133 45 -143 131c-56 -93 -106 -130 -173 -130 c-66 0 -114 38 -114 118c0 90 45 188 107 259c50 58 111 97 168 97c44 0 64 -16 82 -66l18 58zM418 231l-5 -17c85 10 170 92 170 174c0 29 -12 41 -35 41c-50 0 -91 -64 -130 -198zM333 363c0 33 -20 56 -48 56c-93 0 -164 -215 -164 -295c0 -43 18 -66 48 -66 c34 0 63 28 93 79c40 68 71 171 71 226'], + 0xE7: [462,218,444,-24,392,'31 -92l60 88c-60 18 -96 67 -96 142c0 86 41 173 101 235c52 54 122 89 183 89s113 -37 113 -91c0 -42 -25 -70 -62 -70c-34 0 -58 23 -58 53c0 25 21 36 21 58c0 10 -10 17 -22 17c-42 0 -72 -38 -96 -87c-34 -70 -52 -163 -52 -202c0 -53 29 -89 73 -89 c43 0 74 23 122 90l28 -18c-33 -50 -63 -90 -103 -113c-26 -15 -57 -23 -95 -23c-6 0 -11 0 -18 1l-34 -50c10 2 16 3 26 3c52 0 90 -30 90 -72c0 -50 -53 -87 -124 -87c-36 0 -68 7 -112 25l22 33c28 -13 45 -17 67 -17c34 0 56 16 56 41c0 23 -17 36 -47 36 c-10 0 -18 -1 -30 -4'], + 0xE8: [697,13,444,5,398,'317 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM306 390c0 23 -7 39 -31 39 c-48 0 -91 -76 -127 -215c90 20 158 93 158 176zM388 516h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0xE9: [697,13,444,5,419,'317 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM306 390c0 23 -7 39 -31 39 c-48 0 -91 -76 -127 -215c90 20 158 93 158 176zM179 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xEA: [690,13,444,5,462,'317 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM306 390c0 23 -7 39 -31 39 c-48 0 -91 -76 -127 -215c90 20 158 93 158 176zM462 516h-51l-88 95l-131 -95h-57l160 174h81'], + 0xEB: [655,13,444,5,470,'317 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM306 390c0 23 -7 39 -31 39 c-48 0 -91 -76 -127 -215c90 20 158 93 158 176zM470 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM258 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xEC: [697,9,278,2,294,'216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61zM294 516h-46l-132 88 c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0xED: [697,9,278,2,310,'216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61zM70 516l122 131c36 38 52 50 70 50 c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xEE: [690,9,278,2,353,'216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61zM353 516h-51l-88 95l-131 -95h-57 l160 174h81'], + 0xEF: [655,9,278,2,362,'216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61zM362 589c0 -35 -30 -64 -66 -64 c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM150 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xF1: [655,9,556,-6,507,'466 655h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42zM472 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60 c0 26 10 77 26 125l55 165c3 10 7 25 7 28c0 17 -12 21 -25 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 135 13 199 27l-62 -198h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77 c0 -24 -12 -69 -28 -116l-35 -104c-19 -56 -24 -79 -24 -89s6 -17 14 -17c17 0 31 14 71 76'], + 0xF2: [697,13,500,-3,441,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM322 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64 c26 0 50 15 71 49c49 80 86 220 86 307zM405 516h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0xF3: [697,13,500,-3,441,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM322 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64 c26 0 50 15 71 49c49 80 86 220 86 307zM179 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xF4: [690,13,500,-3,462,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM322 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64 c26 0 50 15 71 49c49 80 86 220 86 307zM462 516h-51l-88 95l-131 -95h-57l160 174h81'], + 0xF5: [655,13,500,-3,485,'444 655h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42zM280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249 c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM322 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64c26 0 50 15 71 49c49 80 86 220 86 307'], + 0xF6: [655,13,500,-3,470,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM322 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64 c26 0 50 15 71 49c49 80 86 220 86 307zM470 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM258 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xF8: [560,119,500,-3,441,'424 560l-65 -116c57 -28 82 -69 82 -133c0 -169 -136 -324 -284 -324c-18 0 -31 2 -51 8l-64 -114h-40l72 126c-53 30 -77 70 -77 127c0 170 139 328 289 328c14 0 24 -1 42 -6l59 104h37zM116 78l191 341c-10 10 -19 14 -32 14c-32 0 -61 -23 -86 -68 c-36 -65 -73 -205 -73 -279v-8zM321 377l-193 -343c10 -13 21 -18 37 -18c39 0 70 33 101 109c29 69 56 187 56 247c0 2 0 3 -1 5'], + 0xF9: [697,9,556,15,493,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74zM422 516h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0xFA: [697,9,556,15,493,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74zM196 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xFB: [690,9,556,15,493,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74zM481 516h-51l-88 95l-131 -95h-57l160 174h81'], + 0xFC: [655,9,556,15,493,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74zM489 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM277 589c0 -35 -30 -64 -66 -64 c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xFD: [697,205,444,-94,401,'239 110h2c70 134 87 176 87 207c0 13 -7 19 -25 34c-22 18 -31 29 -31 54s21 57 58 57c33 0 62 -30 62 -64c0 -101 -119 -338 -249 -497c-55 -67 -120 -106 -175 -106c-35 0 -62 26 -62 60c0 29 24 56 50 56c47 0 58 -36 94 -36c17 0 46 22 67 52c17 24 25 48 25 71 c0 31 -16 126 -50 288c-13 59 -24 97 -40 113c-11 11 -15 12 -40 12v27c65 6 102 12 150 24c18 -47 48 -149 66 -274zM161 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xFE: [699,205,500,-120,446,'185 359l3 -3c51 76 94 106 151 106c65 0 107 -48 107 -121c0 -173 -141 -354 -277 -354c-21 0 -33 4 -68 22c-4 -15 -4 -17 -11 -41c-19 -70 -26 -100 -26 -114c0 -24 15 -31 65 -32v-27h-249v27c48 0 61 18 78 85l162 630c13 49 17 68 17 75c0 20 -15 30 -45 30h-18v27 c90 10 138 17 206 30zM321 334c0 33 -11 57 -39 57c-26 0 -60 -24 -85 -63c-15 -23 -24 -48 -46 -121c-27 -91 -38 -132 -38 -149c0 -20 17 -36 39 -36c34 0 66 28 97 82c36 65 72 164 72 230'], + 0xFF: [655,205,444,-94,460,'239 110h2c70 134 87 176 87 207c0 13 -7 19 -25 34c-22 18 -31 29 -31 54s21 57 58 57c33 0 62 -30 62 -64c0 -101 -119 -338 -249 -497c-55 -67 -120 -106 -175 -106c-35 0 -62 26 -62 60c0 29 24 56 50 56c47 0 58 -36 94 -36c17 0 46 22 67 52c17 24 25 48 25 71 c0 31 -16 126 -50 288c-13 59 -24 97 -40 113c-11 11 -15 12 -40 12v27c65 6 102 12 150 24c18 -47 48 -149 66 -274zM460 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM248 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64 c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0x100: [793,0,667,-68,593,'290 0v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25h-303zM161 248h185l-37 243zM571 793l-16 -70h-326l17 70h325'], + 0x101: [586,14,500,-21,486,'435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133 c0 -9 4 -15 12 -15c16 0 32 15 73 70zM266 420c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240c0 27 -15 47 -37 47zM486 586l-16 -70h-326l17 70h325'], + 0x102: [885,0,667,-68,593,'290 0v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25h-303zM161 248h185l-37 243zM519 885h39c-21 -103 -81 -162 -178 -162 c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x103: [678,14,500,-21,483,'435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133 c0 -9 4 -15 12 -15c16 0 32 15 73 70zM266 420c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240c0 27 -15 47 -37 47zM444 678h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43 c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x104: [683,173,667,-68,640,'453 0h-163v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25h-92c-4 -19 -6 -31 -6 -42c0 -45 23 -62 61 -62c16 0 28 3 48 13 c8 4 9 5 14 7l22 -14c-25 -47 -75 -75 -126 -75c-61 0 -103 28 -103 81c0 30 11 53 42 92zM161 248h185l-37 243'], + 0x105: [462,173,500,-21,507,'485 -84l22 -14c-25 -47 -75 -75 -126 -75c-61 0 -103 28 -103 81c0 27 9 47 32 79c-4 -1 -7 -1 -10 -1c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1 l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133c0 -9 4 -15 12 -15c16 0 32 15 73 70l21 -15c-30 -49 -58 -81 -85 -100c-6 -26 -9 -41 -9 -54c0 -45 23 -62 61 -62c16 0 28 3 48 13c8 4 9 5 14 7zM266 420c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190 c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240c0 27 -15 47 -37 47'], + 0x106: [904,18,667,32,677,'677 685l-51 -235l-32 6c2 13 3 23 3 36c0 93 -46 158 -131 158c-53 0 -107 -30 -145 -73c-77 -87 -135 -220 -135 -368c0 -109 61 -174 155 -174c87 0 138 43 204 119l31 -22c-32 -44 -49 -63 -78 -85c-57 -43 -128 -65 -199 -65c-163 0 -267 101 -267 252 c0 148 62 276 159 358c69 58 156 93 249 93c41 0 86 -7 131 -21c15 -5 30 -8 38 -8c15 0 24 7 38 29h30zM409 723h-49l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x107: [697,13,444,-5,392,'318 142l28 -18c-38 -52 -70 -96 -115 -119c-23 -12 -50 -18 -83 -18c-91 0 -153 53 -153 151c0 92 43 177 105 239c51 52 113 85 180 85c60 0 112 -37 112 -90c0 -42 -25 -71 -62 -71c-34 0 -58 23 -58 53s21 36 21 58c0 10 -12 17 -24 17c-38 0 -65 -37 -93 -88 c-33 -61 -53 -134 -53 -201c0 -58 29 -89 73 -89c43 0 74 24 122 91zM188 516h-49l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x108: [897,18,667,32,677,'677 685l-51 -235l-32 6c2 13 3 23 3 36c0 93 -46 158 -131 158c-53 0 -107 -30 -145 -73c-77 -87 -135 -220 -135 -368c0 -109 61 -174 155 -174c87 0 138 43 204 119l31 -22c-32 -44 -49 -63 -78 -85c-57 -43 -128 -65 -199 -65c-163 0 -267 101 -267 252 c0 148 62 276 159 358c69 58 156 93 249 93c41 0 86 -7 131 -21c15 -5 30 -8 38 -8c15 0 24 7 38 29h30zM573 723l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x109: [690,13,444,-5,415,'318 142l28 -18c-38 -52 -70 -96 -115 -119c-23 -12 -50 -18 -83 -18c-91 0 -153 53 -153 151c0 92 43 177 105 239c51 52 113 85 180 85c60 0 112 -37 112 -90c0 -42 -25 -71 -62 -71c-34 0 -58 23 -58 53s21 36 21 58c0 10 -12 17 -24 17c-38 0 -65 -37 -93 -88 c-33 -61 -53 -134 -53 -201c0 -58 29 -89 73 -89c43 0 74 24 122 91zM364 516l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x10A: [862,18,667,32,677,'677 685l-51 -235l-32 6c2 13 3 23 3 36c0 93 -46 158 -131 158c-53 0 -107 -30 -145 -73c-77 -87 -135 -220 -135 -368c0 -109 61 -174 155 -174c87 0 138 43 204 119l31 -22c-32 -44 -49 -63 -78 -85c-57 -43 -128 -65 -199 -65c-163 0 -267 101 -267 252 c0 148 62 276 159 358c69 58 156 93 249 93c41 0 86 -7 131 -21c15 -5 30 -8 38 -8c15 0 24 7 38 29h30zM449 862c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66'], + 0x10B: [655,13,444,-5,392,'318 142l28 -18c-38 -52 -70 -96 -115 -119c-23 -12 -50 -18 -83 -18c-91 0 -153 53 -153 151c0 92 43 177 105 239c51 52 113 85 180 85c60 0 112 -37 112 -90c0 -42 -25 -71 -62 -71c-34 0 -58 23 -58 53s21 36 21 58c0 10 -12 17 -24 17c-38 0 -65 -37 -93 -88 c-33 -61 -53 -134 -53 -201c0 -58 29 -89 73 -89c43 0 74 24 122 91zM279 655c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66'], + 0x10C: [897,18,667,32,677,'677 685l-51 -235l-32 6c2 13 3 23 3 36c0 93 -46 158 -131 158c-53 0 -107 -30 -145 -73c-77 -87 -135 -220 -135 -368c0 -109 61 -174 155 -174c87 0 138 43 204 119l31 -22c-32 -44 -49 -63 -78 -85c-57 -43 -128 -65 -199 -65c-163 0 -267 101 -267 252 c0 148 62 276 159 358c69 58 156 93 249 93c41 0 86 -7 131 -21c15 -5 30 -8 38 -8c15 0 24 7 38 29h30zM616 897l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x10D: [690,13,444,-5,437,'318 142l28 -18c-38 -52 -70 -96 -115 -119c-23 -12 -50 -18 -83 -18c-91 0 -153 53 -153 151c0 92 43 177 105 239c51 52 113 85 180 85c60 0 112 -37 112 -90c0 -42 -25 -71 -62 -71c-34 0 -58 23 -58 53s21 36 21 58c0 10 -12 17 -24 17c-38 0 -65 -37 -93 -88 c-33 -61 -53 -134 -53 -201c0 -58 29 -89 73 -89c43 0 74 24 122 91zM437 690l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x10E: [897,0,722,-46,685,'37 109l115 422c13 46 15 61 15 71c0 24 -9 33 -39 37l-34 5v25h290c189 0 301 -101 301 -264c0 -109 -44 -218 -119 -288c-79 -73 -191 -117 -324 -117h-288v25c48 6 66 22 83 84zM318 600l-126 -465c-11 -39 -15 -55 -15 -67c0 -24 20 -34 58 -34c87 0 156 34 210 105 c62 81 93 193 93 318c0 122 -54 181 -165 181c-33 0 -47 -10 -55 -38zM586 897l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x10F: [710,13,658,-21,726,'535 394l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222zM517 699l-117 -421c-35 -126 -51 -194 -51 -203c0 -6 5 -15 11 -15c15 0 40 26 68 71l22 -16 c-55 -88 -101 -126 -150 -126c-38 0 -60 23 -60 61c0 16 2 29 11 68c-52 -94 -105 -131 -166 -131s-106 42 -106 125c0 99 58 212 131 282c43 42 93 68 138 68c29 0 53 -8 75 -33l18 64c25 88 29 113 29 122c0 18 -15 28 -41 28h-21v27c100 8 149 15 209 29zM308 371 c0 28 -15 49 -37 49c-43 1 -85 -54 -114 -112c-33 -66 -54 -144 -54 -186c0 -36 16 -63 41 -63c29 0 59 25 86 74c36 64 78 194 78 238'], + 0x110: [669,0,722,-31,700,'124 373l46 170c9 33 12 49 12 59c0 24 -14 32 -42 37l-31 5v25h290c189 0 301 -102 301 -273c0 -228 -189 -396 -445 -396h-286v25c48 6 66 21 80 72l63 232h-102l12 44h102zM272 373h122l-12 -44h-122l-56 -207c-7 -27 -12 -42 -12 -54c0 -24 16 -34 54 -34 c97 0 168 38 223 118c52 77 84 194 84 305c0 122 -54 181 -165 181c-33 0 -48 -10 -55 -38'], + 0x111: [699,13,500,-21,541,'180 568h181c7 29 9 41 9 47c0 18 -15 28 -41 28h-21v27c100 8 149 15 209 29l-37 -131h61l-14 -50h-61l-66 -240c-35 -126 -51 -194 -51 -203c0 -6 5 -15 11 -15c15 0 40 26 68 71l22 -16c-55 -88 -101 -126 -150 -126c-38 0 -60 23 -60 61c0 16 2 29 11 68 c-52 -94 -105 -131 -166 -131s-106 42 -106 125c0 99 58 212 131 282c43 42 93 68 138 68c29 0 53 -8 75 -33l25 89h-182zM271 420c-43 1 -85 -54 -114 -112c-33 -66 -54 -144 -54 -186c0 -36 16 -63 41 -63c29 0 59 25 86 74c36 64 78 194 78 238c0 28 -15 49 -37 49'], + 0x112: [793,0,667,-27,653,'586 194l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44 c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61c37 27 57 50 91 106zM601 793l-16 -70h-326l17 70h325'], + 0x113: [586,13,444,5,431,'317 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM148 214c90 20 158 93 158 176 c0 23 -7 39 -31 39c-48 0 -91 -76 -127 -215zM431 586l-16 -70h-326l17 70h325'], + 0x114: [885,0,667,-27,653,'586 194l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44 c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61c37 27 57 50 91 106zM569 885h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x115: [678,13,444,5,478,'317 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM148 214c90 20 158 93 158 176 c0 23 -7 39 -31 39c-48 0 -91 -76 -127 -215zM439 678h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x116: [862,0,667,-27,653,'586 194l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44 c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61c37 27 57 50 91 106zM429 862c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66'], + 0x117: [655,13,444,5,398,'317 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM148 214c90 20 158 93 158 176 c0 23 -7 39 -31 39c-48 0 -91 -76 -127 -215zM289 655c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66'], + 0x118: [669,182,667,-27,653,'311 0h-338v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44 c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61c37 27 57 50 91 106l25 -5l-60 -194h-172c-5 -24 -8 -38 -8 -51c0 -45 23 -62 61 -62c16 0 28 3 48 13c8 4 9 5 14 7l22 -14c-25 -47 -75 -75 -126 -75c-61 0 -103 28 -103 81 c0 33 13 56 49 101'], + 0x119: [462,182,444,5,398,'153 -13h-2c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92l29 -17c-42 -75 -88 -116 -141 -132c-5 -20 -7 -33 -7 -45 c0 -45 23 -62 61 -62c16 0 28 3 48 13c8 4 9 5 14 7l22 -14c-25 -47 -75 -75 -126 -75c-61 0 -103 28 -103 81c0 29 10 51 39 88zM148 214c90 20 158 93 158 176c0 23 -7 39 -31 39c-48 0 -91 -76 -127 -215'], + 0x11A: [897,0,667,-27,653,'586 194l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44 c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61c37 27 57 50 91 106zM616 897l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x11B: [690,13,444,5,486,'317 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM148 214c90 20 158 93 158 176 c0 23 -7 39 -31 39c-48 0 -91 -76 -127 -215zM486 690l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x11C: [897,18,722,21,705,'705 330v-26c-50 -4 -60 -14 -82 -96l-44 -167l-28 -13c-57 -27 -156 -46 -234 -46c-176 0 -296 104 -296 274c0 130 63 254 163 337c74 61 162 92 264 92c46 0 81 -6 124 -21c19 -7 27 -9 36 -9c20 0 31 8 42 30h31l-51 -221l-29 4c-2 61 -8 91 -24 119 c-23 40 -63 62 -115 62c-69 0 -129 -42 -173 -98c-67 -87 -112 -211 -112 -335c0 -130 58 -196 164 -196c39 0 81 11 94 30l31 104c22 75 27 89 27 114c0 9 -6 20 -12 24c-11 6 -20 8 -63 12v26h287zM563 723l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x11D: [690,203,500,-52,477,'477 429v-56h-66c6 -12 6 -26 6 -42c0 -53 -25 -99 -71 -132s-88 -46 -145 -46c-17 0 -39 4 -51 8c-13 0 -28 -14 -28 -36c0 -16 22 -33 54 -41l50 -12c110 -26 149 -62 149 -123c0 -81 -88 -152 -237 -152c-115 0 -190 33 -190 101c0 89 80 107 133 109 c-44 15 -62 34 -62 66c0 37 21 67 96 97c-54 23 -80 58 -80 110c0 104 95 182 218 182c46 0 83 -7 114 -33h110zM115 -6c-9 -1 -38 -17 -51 -30c-20 -19 -29 -36 -29 -55c0 -46 46 -78 113 -78c72 0 118 34 118 69c0 24 -14 44 -42 58c-22 10 -97 35 -109 36zM255 431 c-22 0 -42 -14 -57 -32c-33 -41 -47 -110 -47 -156c0 -38 15 -59 42 -59c31 0 57 23 78 69c17 37 29 85 29 119c0 35 -12 59 -45 59zM403 516l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x11E: [885,18,722,21,705,'705 330v-26c-50 -4 -60 -14 -82 -96l-44 -167l-28 -13c-57 -27 -156 -46 -234 -46c-176 0 -296 104 -296 274c0 130 63 254 163 337c74 61 162 92 264 92c46 0 81 -6 124 -21c19 -7 27 -9 36 -9c20 0 31 8 42 30h31l-51 -221l-29 4c-2 61 -8 91 -24 119 c-23 40 -63 62 -115 62c-69 0 -129 -42 -173 -98c-67 -87 -112 -211 -112 -335c0 -130 58 -196 164 -196c39 0 81 11 94 30l31 104c22 75 27 89 27 114c0 9 -6 20 -12 24c-11 6 -20 8 -63 12v26h287zM579 885h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43 c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x11F: [678,203,500,-52,477,'477 429v-56h-66c6 -12 6 -26 6 -42c0 -53 -25 -99 -71 -132s-88 -46 -145 -46c-17 0 -39 4 -51 8c-13 0 -28 -14 -28 -36c0 -16 22 -33 54 -41l50 -12c110 -26 149 -62 149 -123c0 -81 -88 -152 -237 -152c-115 0 -190 33 -190 101c0 89 80 107 133 109 c-44 15 -62 34 -62 66c0 37 21 67 96 97c-54 23 -80 58 -80 110c0 104 95 182 218 182c46 0 83 -7 114 -33h110zM115 -6c-9 -1 -38 -17 -51 -30c-20 -19 -29 -36 -29 -55c0 -46 46 -78 113 -78c72 0 118 34 118 69c0 24 -14 44 -42 58c-22 10 -97 35 -109 36zM255 431 c-22 0 -42 -14 -57 -32c-33 -41 -47 -110 -47 -156c0 -38 15 -59 42 -59c31 0 57 23 78 69c17 37 29 85 29 119c0 35 -12 59 -45 59zM429 678h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x120: [862,18,722,21,705,'705 330v-26c-50 -4 -60 -14 -82 -96l-44 -167l-28 -13c-57 -27 -156 -46 -234 -46c-176 0 -296 104 -296 274c0 130 63 254 163 337c74 61 162 92 264 92c46 0 81 -6 124 -21c19 -7 27 -9 36 -9c20 0 31 8 42 30h31l-51 -221l-29 4c-2 61 -8 91 -24 119 c-23 40 -63 62 -115 62c-69 0 -129 -42 -173 -98c-67 -87 -112 -211 -112 -335c0 -130 58 -196 164 -196c39 0 81 11 94 30l31 104c22 75 27 89 27 114c0 9 -6 20 -12 24c-11 6 -20 8 -63 12v26h287zM459 862c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64 c0 36 29 66 64 66'], + 0x121: [655,203,500,-52,477,'477 429v-56h-66c6 -12 6 -26 6 -42c0 -53 -25 -99 -71 -132s-88 -46 -145 -46c-17 0 -39 4 -51 8c-13 0 -28 -14 -28 -36c0 -16 22 -33 54 -41l50 -12c110 -26 149 -62 149 -123c0 -81 -88 -152 -237 -152c-115 0 -190 33 -190 101c0 89 80 107 133 109 c-44 15 -62 34 -62 66c0 37 21 67 96 97c-54 23 -80 58 -80 110c0 104 95 182 218 182c46 0 83 -7 114 -33h110zM115 -6c-9 -1 -38 -17 -51 -30c-20 -19 -29 -36 -29 -55c0 -46 46 -78 113 -78c72 0 118 34 118 69c0 24 -14 44 -42 58c-22 10 -97 35 -109 36zM255 431 c-22 0 -42 -14 -57 -32c-33 -41 -47 -110 -47 -156c0 -38 15 -59 42 -59c31 0 57 23 78 69c17 37 29 85 29 119c0 35 -12 59 -45 59zM279 655c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66'], + 0x122: [685,359,722,21,705,'705 330v-26c-50 -4 -60 -14 -82 -96l-44 -167l-28 -13c-57 -27 -156 -46 -234 -46c-176 0 -296 104 -296 274c0 130 63 254 163 337c74 61 162 92 264 92c46 0 81 -6 124 -21c19 -7 27 -9 36 -9c20 0 31 8 42 30h31l-51 -221l-29 4c-2 61 -8 91 -24 119 c-23 40 -63 62 -115 62c-69 0 -129 -42 -173 -98c-67 -87 -112 -211 -112 -335c0 -130 58 -196 164 -196c39 0 81 11 94 30l31 104c22 75 27 89 27 114c0 9 -6 20 -12 24c-11 6 -20 8 -63 12v26h287zM171 -359l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37 c-32 18 -40 38 -40 65c0 43 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x123: [832,203,500,-52,477,'477 429v-56h-66c6 -12 6 -26 6 -42c0 -53 -25 -99 -71 -132s-88 -46 -145 -46c-17 0 -39 4 -51 8c-13 0 -28 -14 -28 -36c0 -16 22 -33 54 -41l50 -12c110 -26 149 -62 149 -123c0 -81 -88 -152 -237 -152c-115 0 -190 33 -190 101c0 89 80 107 133 109 c-44 15 -62 34 -62 66c0 37 21 67 96 97c-54 23 -80 58 -80 110c0 104 95 182 218 182c46 0 83 -7 114 -33h110zM115 -6c-9 -1 -38 -17 -51 -30c-20 -19 -29 -36 -29 -55c0 -46 46 -78 113 -78c72 0 118 34 118 69c0 24 -14 44 -42 58c-22 10 -97 35 -109 36zM255 431 c-22 0 -42 -14 -57 -32c-33 -41 -47 -110 -47 -156c0 -38 15 -59 42 -59c31 0 57 23 78 69c17 37 29 85 29 119c0 35 -12 59 -45 59zM370 832l13 -25c-79 -42 -118 -80 -118 -116c0 -14 6 -24 30 -37c32 -18 40 -38 40 -65c0 -48 -32 -73 -73 -73c-53 0 -83 40 -83 94 c0 89 72 172 191 222'], + 0x124: [897,0,778,-24,799,'505 329h-239l-54 -197c-10 -36 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36l-31 4v25h316v-25c-65 -2 -84 -15 -102 -80l-52 -191h239l47 173c5 19 10 49 10 61c0 20 -10 29 -41 33l-31 4v25h297v-25 c-49 0 -68 -21 -82 -74l-111 -408c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79zM583 723l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x125: [897,9,556,-13,498,'476 142l22 -15c-66 -103 -106 -136 -167 -136c-39 0 -66 24 -66 64c0 41 11 77 61 225l20 59c5 15 7 24 7 30c0 16 -8 21 -20 21c-27 0 -63 -31 -106 -94c-49 -72 -68 -121 -119 -296h-121l152 562c6 22 10 38 10 47c0 23 -13 33 -42 33h-22v27c81 7 132 15 209 30 l-108 -416c99 141 145 179 213 179c49 0 76 -28 76 -75c0 -19 -9 -56 -29 -118l-59 -182c-3 -8 -3 -9 -3 -12c0 -7 9 -16 17 -16c13 0 32 21 75 83zM443 723l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x126: [669,0,778,-24,800,'62 496v44h114c10 34 13 52 13 64c0 22 -11 32 -42 36l-31 4v25h316v-25c-65 -2 -83 -15 -102 -80l-7 -24h239c7 25 12 55 12 67c0 20 -10 29 -41 33l-31 4v25h297v-25c-49 0 -68 -21 -82 -74l-8 -30h91v-44h-103l-91 -334c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41 v-25h-316v25c67 4 85 16 102 79l62 225h-239l-54 -197c-10 -36 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74l107 397h-102zM278 373h239l33 123h-239'], + 0x128: [862,0,389,-32,470,'51 107l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82zM429 862h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23 c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42'], + 0x129: [655,9,278,-9,350,'216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61zM309 655h41 c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42'], + 0x12A: [793,0,389,-32,451,'51 107l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82zM451 793l-16 -70h-326l17 70h325'], + 0x12B: [586,9,278,-11,331,'216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61zM331 586l-16 -70h-326l17 70h325'], + 0x12C: [885,0,389,-32,458,'51 107l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82zM419 885h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43 c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x12D: [678,9,278,2,328,'216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61zM289 678h39 c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x12E: [669,173,389,-32,406,'90 0h-122v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-126c-4 -19 -6 -31 -6 -42c0 -45 23 -62 61 -62c16 0 28 3 48 13c8 4 9 5 14 7 l22 -14c-25 -47 -75 -75 -126 -75c-61 0 -103 28 -103 81c0 30 11 53 42 92'], + 0x12F: [684,173,278,2,262,'222 -84l22 -14c-25 -47 -75 -75 -126 -75c-61 0 -103 28 -103 81c0 28 10 50 36 85c-30 5 -49 25 -49 61c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61 l14 20l22 -14c-53 -86 -90 -122 -134 -133c-3 -16 -5 -27 -5 -37c0 -45 23 -62 61 -62c16 0 28 3 48 13c8 4 9 5 14 7zM193 684c38 0 69 -31 69 -68s-30 -66 -68 -66s-66 30 -66 69c0 34 31 65 65 65'], + 0x130: [862,0,389,-32,406,'51 107l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82zM279 862c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64 c0 36 29 66 64 66'], + 0x132: [669,99,823,-32,913,'51 107l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82zM828 559l-122 -457c-36 -135 -115 -201 -215 -201c-88 0 -148 36 -148 101 c0 40 28 72 64 72c35 0 63 -25 63 -65c0 -31 -23 -36 -23 -54c0 -12 8 -18 27 -18c37 0 51 30 88 170l114 432c10 39 13 53 13 64c0 18 -11 31 -41 36l-33 5v25h298v-25c-49 -6 -65 -11 -85 -85'], + 0x133: [685,207,552,2,544,'193 684c38 0 69 -31 69 -68s-30 -66 -68 -66s-66 30 -66 69c0 34 31 65 65 65zM216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334 c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61zM504 462l-116 -444c-42 -160 -107 -225 -207 -225c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15c28 0 49 36 74 136l89 350c8 30 12 54 12 67 c0 21 -12 30 -41 30h-22v27c112 10 149 15 209 28zM475 685c38 0 69 -31 69 -68s-31 -67 -69 -67c-37 0 -66 30 -66 69c0 35 31 66 66 66'], + 0x134: [897,99,500,-46,554,'439 559l-122 -457c-36 -135 -115 -201 -215 -201c-88 0 -148 36 -148 101c0 40 28 72 64 72c35 0 63 -25 63 -65c0 -31 -23 -36 -23 -54c0 -12 8 -18 27 -18c37 0 51 30 88 170l114 432c10 39 13 53 13 64c0 18 -11 31 -41 36l-33 5v25h298v-25c-49 -6 -65 -11 -85 -85z M503 723l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x135: [690,207,278,-189,314,'202 322l-79 -304c-42 -160 -107 -225 -207 -225c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15c28 0 49 36 74 136l89 350c8 30 12 54 12 67c0 21 -12 30 -41 30h-22v27c112 10 149 15 209 28zM263 516l-88 95 l-131 -95h-57l160 174h81l86 -174h-51'], + 0x136: [669,359,667,-21,702,'392 397l157 -333c11 -24 25 -35 63 -39v-25h-280l1 25l26 4c27 4 38 9 38 23c0 12 -5 27 -15 49l-111 236l-67 -249c-1 -5 -2 -11 -2 -17c0 -33 13 -42 65 -46v-25h-288v25c45 5 65 15 79 68l123 453c8 28 11 46 11 58c0 22 -10 32 -41 36l-33 4v25h311v-25 c-59 -5 -80 -20 -94 -72l-62 -227l197 175c59 52 77 78 77 97c0 15 -10 23 -35 25l-21 2v25h211v-25c-43 -6 -51 -9 -94 -48zM161 -359l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 43 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222 '], + 0x137: [699,359,500,-23,483,'149 188l-50 -188h-122l157 566c7 24 7 32 7 42c0 28 -10 34 -30 34h-34v27c77 4 132 13 209 30l-124 -461c126 99 165 137 165 163c0 16 -11 21 -50 23v25h206v-25c-46 -6 -67 -14 -135 -76l-64 -58c39 -195 57 -227 79 -227c19 0 37 16 64 64l22 -11 c-45 -95 -88 -124 -138 -124c-62 0 -90 48 -123 223zM51 -359l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 43 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x138: [470,0,600,6,689,'614 0h-168c-26 3 -53 36 -69 76c-15 36 -11 53 -31 103c-13 34 -37 47 -56 54c-5 -1 -10 -1 -27 -1l-40 -145c-4 -15 -7 -28 -7 -37c0 -17 10 -25 42 -26l-7 -24h-245l7 24c35 8 55 18 67 62l84 305c3 9 4 17 4 24c0 23 -16 29 -41 31l7 24h245l-7 -24 c-42 -6 -54 -12 -66 -56l-29 -108c18 0 28 1 39 3c56 12 82 20 102 32c34 21 61 46 90 88c36 52 45 65 110 65c37 0 71 -26 71 -56c0 -27 -22 -42 -50 -42c-44 0 -43 40 -65 40c-17 0 -26 -8 -38 -28c-31 -50 -69 -88 -108 -112c10 -4 23 -13 33 -34c12 -28 37 -109 49 -138 c18 -47 42 -69 111 -76'], + 0x139: [904,0,611,-22,590,'590 195l-60 -195h-552v25c55 7 67 24 82 78l121 443c5 19 11 49 11 61c0 20 -10 28 -41 32c-11 2 -24 4 -34 5v25h318v-25c-66 -4 -85 -17 -99 -70l-129 -473c-4 -16 -6 -31 -6 -39c0 -21 27 -30 72 -30c70 0 127 14 178 45c52 31 76 59 115 123zM311 723h-49l122 131 c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x13A: [904,9,278,2,344,'217 141l22 -14c-69 -105 -105 -136 -169 -136c-41 0 -68 27 -68 63c0 23 14 84 34 155l74 259c21 73 34 121 34 145c0 20 -15 30 -42 30c-5 0 -11 0 -22 -1v27c75 7 124 14 210 30l-145 -523c-15 -54 -22 -86 -22 -100c0 -8 5 -15 15 -15c18 0 39 21 79 80zM153 723h-49 l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x13B: [669,359,611,-22,590,'590 195l-60 -195h-552v25c55 7 67 24 82 78l121 443c5 19 11 49 11 61c0 20 -10 28 -41 32c-11 2 -24 4 -34 5v25h318v-25c-66 -4 -85 -17 -99 -70l-129 -473c-4 -16 -6 -31 -6 -39c0 -21 27 -30 72 -30c70 0 127 14 178 45c52 31 76 59 115 123zM141 -359l-13 25 c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 43 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x13C: [699,359,278,-62,290,'217 141l22 -14c-69 -105 -105 -136 -169 -136c-41 0 -68 27 -68 63c0 23 14 84 34 155l74 259c21 73 34 121 34 145c0 20 -15 30 -42 30c-5 0 -11 0 -22 -1v27c75 7 124 14 210 30l-145 -523c-15 -54 -22 -86 -22 -100c0 -8 5 -15 15 -15c18 0 39 21 79 80zM-49 -359 l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 43 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x13D: [685,0,611,-22,667,'590 195l-60 -195h-552v25c55 7 67 24 82 78l121 443c5 19 11 49 11 61c0 20 -10 28 -41 32c-11 2 -24 4 -34 5v25h318v-25c-66 -4 -85 -17 -99 -70l-129 -473c-4 -16 -6 -31 -6 -39c0 -21 27 -30 72 -30c70 0 127 14 178 45c52 31 76 59 115 123zM476 369l-13 25 c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x13E: [710,9,451,2,499,'308 394l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222zM290 699l-145 -523c-15 -54 -22 -86 -22 -100c0 -8 5 -15 15 -15c18 0 39 21 79 80l22 -14c-69 -105 -105 -136 -169 -136 c-41 0 -68 27 -68 63c0 23 14 84 34 155l74 259c21 73 34 121 34 145c0 20 -15 30 -42 30c-5 0 -11 0 -22 -1v27c75 7 124 14 210 30'], + 0x13F: [669,0,611,-22,590,'590 195l-60 -195h-552v25c55 7 67 24 82 78l121 443c5 19 11 49 11 61c0 20 -10 28 -41 32c-11 2 -24 4 -34 5v25h318v-25c-66 -4 -85 -17 -99 -70l-129 -473c-4 -16 -6 -31 -6 -39c0 -21 27 -30 72 -30c70 0 127 14 178 45c52 31 76 59 115 123zM415 409 c40 0 73 -34 73 -74c0 -42 -33 -74 -75 -74s-73 32 -73 74s32 74 75 74'], + 0x140: [699,9,375,2,382,'217 141l22 -14c-69 -105 -105 -136 -169 -136c-41 0 -68 27 -68 63c0 23 14 84 34 155l74 259c21 73 34 121 34 145c0 20 -15 30 -42 30c-5 0 -11 0 -22 -1v27c75 7 124 14 210 30l-145 -523c-15 -54 -22 -86 -22 -100c0 -8 5 -15 15 -15c18 0 39 21 79 80zM309 402 c40 0 73 -34 73 -74c0 -42 -33 -74 -75 -74s-73 32 -73 74s32 74 75 74'], + 0x141: [669,0,611,-22,590,'590 194l-60 -194h-552v25c50 7 65 19 80 72l50 182l-104 -56l22 70l100 53l55 200c5 19 10 49 10 61c0 20 -10 27 -41 32l-32 5v25h317v-25c-66 -4 -85 -16 -101 -75l-44 -158l150 81l-21 -70l-148 -83l-66 -245c-3 -11 -5 -22 -5 -30c0 -21 24 -32 69 -32 c72 0 133 12 181 44c52 34 75 61 116 123'], + 0x142: [699,9,278,-13,301,'216 141l22 -14c-65 -103 -102 -136 -167 -136c-47 0 -69 23 -69 62c0 27 11 82 62 257l-77 -43l19 70l78 43c45 162 60 218 60 235c0 18 -15 28 -42 28c-7 0 -12 0 -22 -1v27c75 7 124 14 210 30l-75 -271l86 47l-19 -68l-86 -47l-51 -184c-14 -52 -22 -86 -22 -100 c0 -8 8 -15 16 -15c18 0 37 21 77 80'], + 0x143: [904,15,722,-27,748,'305 669l216 -467l81 289c11 41 19 75 19 94c0 38 -21 59 -81 59v25h208v-25c-56 -11 -66 -24 -102 -153l-143 -506h-28l-257 547l-99 -354c-12 -42 -19 -75 -19 -94c0 -39 20 -54 79 -59v-25h-206v25c55 11 60 17 101 155l120 407c-19 44 -27 52 -82 57v25h193zM399 723 h-49l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x144: [697,9,556,-6,494,'472 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 26 10 77 26 125l55 165c3 10 7 25 7 28c0 17 -12 21 -25 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 135 13 199 27 l-62 -198h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -28 -116l-35 -104c-19 -56 -24 -79 -24 -89s6 -17 14 -17c17 0 31 14 71 76zM210 516h-49l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x145: [669,359,722,-27,748,'305 669l216 -467l81 289c11 41 19 75 19 94c0 38 -21 59 -81 59v25h208v-25c-56 -11 -66 -24 -102 -153l-143 -506h-28l-257 547l-99 -354c-12 -42 -19 -75 -19 -94c0 -39 20 -54 79 -59v-25h-206v25c55 11 60 17 101 155l120 407c-19 44 -27 52 -82 57v25h193z M141 -359l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 43 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x146: [462,359,556,-6,494,'472 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 26 10 77 26 125l55 165c3 10 7 25 7 28c0 17 -12 21 -25 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 135 13 199 27 l-62 -198h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -28 -116l-35 -104c-19 -56 -24 -79 -24 -89s6 -17 14 -17c17 0 31 14 71 76zM81 -359l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 43 32 73 73 73 c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x147: [897,15,722,-27,748,'305 669l216 -467l81 289c11 41 19 75 19 94c0 38 -21 59 -81 59v25h208v-25c-56 -11 -66 -24 -102 -153l-143 -506h-28l-257 547l-99 -354c-12 -42 -19 -75 -19 -94c0 -39 20 -54 79 -59v-25h-206v25c55 11 60 17 101 155l120 407c-19 44 -27 52 -82 57v25h193zM636 897 l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x148: [690,9,556,-6,506,'472 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 26 10 77 26 125l55 165c3 10 7 25 7 28c0 17 -12 21 -25 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 135 13 199 27 l-62 -198h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -28 -116l-35 -104c-19 -56 -24 -79 -24 -89s6 -17 14 -17c17 0 31 14 71 76zM506 690l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x149: [710,9,700,42,657,'635 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 26 10 77 26 125l55 165c3 10 7 25 7 28c0 17 -12 21 -25 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 135 13 199 27 l-62 -198h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -28 -116l-35 -104c-19 -56 -24 -79 -24 -89s6 -17 14 -17c17 0 31 14 71 76zM55 394l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73 c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x14A: [669,203,722,-46,685,'94 669h290c189 0 301 -101 301 -264c0 -211 -165 -608 -402 -608c-88 0 -148 36 -148 101c0 40 28 72 64 72c35 0 63 -25 63 -65c0 -31 -23 -36 -23 -54c0 -12 8 -18 27 -18c93 -1 272 354 272 624c0 122 -54 181 -165 181c-33 0 -47 -10 -55 -38l-168 -600h-196v25 c48 6 66 22 83 84l115 422c13 46 15 61 15 71c0 24 -9 33 -39 37l-34 5v25'], + 0x14B: [462,207,543,-6,474,'249 -38l95 354c2 7 10 38 10 53c0 17 -12 21 -25 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 24 -55 24v27c56 2 137 13 199 27l-62 -198h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77 c0 -24 -12 -70 -88 -361c-42 -160 -109 -231 -209 -231c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15c28 0 43 38 70 138'], + 0x14C: [793,18,722,27,691,'449 685c137 0 242 -95 242 -241c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92zM446 651c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388c0 -75 39 -127 102 -127 c64 0 108 41 157 114c67 99 117 285 117 398c0 83 -41 123 -101 123zM651 793l-16 -70h-326l17 70h325'], + 0x14D: [586,13,500,-3,461,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM275 433c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64c26 0 50 15 71 49 c49 80 86 220 86 307c0 38 -18 61 -47 61zM461 586l-16 -70h-326l17 70h325'], + 0x14E: [885,18,722,27,691,'449 685c137 0 242 -95 242 -241c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92zM446 651c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388c0 -75 39 -127 102 -127 c64 0 108 41 157 114c67 99 117 285 117 398c0 83 -41 123 -101 123zM629 885h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x14F: [678,13,500,-3,488,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM275 433c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64c26 0 50 15 71 49 c49 80 86 220 86 307c0 38 -18 61 -47 61zM449 678h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x150: [904,18,722,27,700,'449 685c137 0 242 -95 242 -241c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92zM446 651c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388c0 -75 39 -127 102 -127 c64 0 108 41 157 114c67 99 117 285 117 398c0 83 -41 123 -101 123zM323 723h-52l122 133c35 39 52 48 70 48c26 0 48 -19 48 -45c0 -19 -9 -34 -39 -51zM510 723h-50l122 133c35 39 52 48 70 48c26 0 48 -21 48 -47c0 -19 -9 -32 -39 -49'], + 0x151: [697,13,500,-3,519,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM275 433c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64c26 0 50 15 71 49 c49 80 86 220 86 307c0 38 -18 61 -47 61zM142 516h-52l122 133c35 39 52 48 70 48c26 0 48 -19 48 -45c0 -19 -9 -34 -39 -51zM329 516h-50l122 133c35 39 52 48 70 48c26 0 48 -21 48 -47c0 -19 -9 -32 -39 -49'], + 0x152: [677,8,944,23,946,'946 669l-46 -191l-25 6c1 14 2 28 2 37c0 39 -13 68 -40 87c-24 17 -74 29 -125 29c-35 0 -42 -6 -53 -47l-61 -220h25c89 0 132 26 164 103l27 -3l-72 -272l-27 5l1 19c1 17 3 32 3 41c0 19 -7 37 -21 48c-15 13 -34 17 -109 25l-64 -245c-2 -9 -4 -19 -4 -25 c0 -24 21 -34 73 -34c117 0 188 46 257 167l27 -5l-60 -194h-324c-67 0 -138 -8 -200 -8h-18c-83 0 -140 18 -184 57c-45 40 -69 101 -69 175c0 144 79 295 201 383c71 51 135 70 240 70c16 0 26 0 56 -3c42 -3 73 -5 91 -5h335zM392 123l108 391c7 27 12 53 12 69 c0 40 -26 62 -73 62c-61 0 -113 -34 -161 -106c-62 -91 -114 -266 -114 -381c0 -80 48 -133 121 -133c58 0 87 27 107 98'], + 0x153: [462,13,722,6,674,'591 139l28 -15c-25 -51 -45 -75 -72 -97c-34 -26 -74 -40 -116 -40c-46 0 -78 16 -117 57c-43 -39 -89 -57 -148 -57c-95 0 -160 64 -160 157c0 82 44 179 104 239c54 53 121 79 190 79c53 0 84 -17 116 -62c59 47 94 62 146 62c69 0 112 -35 112 -90 c0 -46 -30 -90 -87 -127c-45 -29 -70 -41 -173 -61c-6 -29 -8 -40 -8 -56c0 -51 23 -78 67 -78c46 0 73 20 118 89zM421 218c78 23 115 47 143 97c13 24 22 53 22 77c0 25 -14 40 -37 40c-14 0 -27 -6 -36 -16c-31 -36 -47 -59 -92 -198zM282 433c-32 0 -60 -23 -86 -74 c-33 -64 -72 -189 -72 -262c0 -52 19 -81 53 -81c36 0 66 30 97 97c29 64 63 195 63 246c0 49 -19 74 -55 74'], + 0x154: [904,0,667,-28,623,'431 343l85 -254c16 -49 31 -59 87 -64v-25h-202l-107 331h-30l-52 -182c-14 -48 -18 -68 -18 -82c0 -30 14 -38 72 -42v-25h-294v25c49 6 66 25 82 84l120 437c5 19 10 49 10 61c0 20 -9 31 -42 34l-32 3v25h286c147 0 227 -47 227 -143c0 -69 -36 -114 -96 -151 c-24 -15 -50 -23 -96 -32zM330 583l-57 -220c62 1 101 8 127 25c44 27 72 88 72 154c0 61 -29 95 -82 95c-31 0 -48 -8 -60 -54zM329 723h-49l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x155: [697,0,389,-21,389,'25 407v27c121 10 140 13 200 28l-65 -209h1c79 159 117 209 171 209c34 0 57 -26 57 -66c0 -42 -25 -73 -58 -73c-39 0 -41 38 -61 38c-14 0 -38 -27 -65 -76c-26 -47 -41 -81 -74 -186l-31 -99h-121c71 240 102 357 102 382c0 19 -12 25 -56 25zM188 516h-49l122 131 c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x156: [669,359,667,-28,623,'431 343l85 -254c16 -49 31 -59 87 -64v-25h-202l-107 331h-30l-52 -182c-14 -48 -18 -68 -18 -82c0 -30 14 -38 72 -42v-25h-294v25c49 6 66 25 82 84l120 437c5 19 10 49 10 61c0 20 -9 31 -42 34l-32 3v25h286c147 0 227 -47 227 -143c0 -69 -36 -114 -96 -151 c-24 -15 -50 -23 -96 -32zM330 583l-57 -220c62 1 101 8 127 25c44 27 72 88 72 154c0 61 -29 95 -82 95c-31 0 -48 -8 -60 -54zM140 -359l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 43 32 73 73 73c53 0 83 -40 83 -94 c0 -89 -72 -172 -191 -222'], + 0x157: [462,359,389,-102,389,'25 407v27c121 10 140 13 200 28l-65 -209h1c79 159 117 209 171 209c34 0 57 -26 57 -66c0 -42 -25 -73 -58 -73c-39 0 -41 38 -61 38c-14 0 -38 -27 -65 -76c-26 -47 -41 -81 -74 -186l-31 -99h-121c71 240 102 357 102 382c0 19 -12 25 -56 25zM-89 -359l-13 25 c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 43 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x158: [897,0,667,-28,623,'431 343l85 -254c16 -49 31 -59 87 -64v-25h-202l-107 331h-30l-52 -182c-14 -48 -18 -68 -18 -82c0 -30 14 -38 72 -42v-25h-294v25c49 6 66 25 82 84l120 437c5 19 10 49 10 61c0 20 -9 31 -42 34l-32 3v25h286c147 0 227 -47 227 -143c0 -69 -36 -114 -96 -151 c-24 -15 -50 -23 -96 -32zM330 583l-57 -220c62 1 101 8 127 25c44 27 72 88 72 154c0 61 -29 95 -82 95c-31 0 -48 -8 -60 -54zM566 897l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x159: [690,0,389,-21,411,'25 407v27c121 10 140 13 200 28l-65 -209h1c79 159 117 209 171 209c34 0 57 -26 57 -66c0 -42 -25 -73 -58 -73c-39 0 -41 38 -61 38c-14 0 -38 -27 -65 -76c-26 -47 -41 -81 -74 -186l-31 -99h-121c71 240 102 357 102 382c0 19 -12 25 -56 25zM411 690l-162 -174h-82 l-88 174h51l90 -97l134 97h57'], + 0x15A: [904,18,556,2,526,'2 -18l36 225l29 -2c8 -66 16 -103 48 -139c27 -31 62 -50 106 -50c38 0 67 11 89 34c23 23 37 47 37 92c0 59 -34 96 -115 154s-130 114 -130 198c0 114 90 191 204 191c88 0 108 -30 146 -30c21 0 35 8 44 26h30l-40 -202l-27 4c-5 42 -9 76 -22 101 c-23 46 -64 66 -116 66c-53 0 -98 -40 -98 -105c0 -60 36 -86 107 -137c106 -77 138 -127 138 -217c0 -84 -41 -150 -110 -184c-33 -16 -74 -25 -120 -25c-40 0 -73 7 -122 24c-23 8 -36 11 -46 11c-19 0 -26 -6 -38 -35h-30zM249 723h-49l122 131c36 38 52 50 70 50 c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x15B: [697,13,389,-19,379,'333 461l-23 -154l-27 2c-16 83 -42 120 -88 120c-32 0 -53 -21 -53 -53c0 -23 18 -54 57 -99c60 -70 80 -114 80 -162c0 -75 -66 -128 -148 -128c-21 0 -42 3 -64 12c-13 5 -23 8 -30 8c-13 0 -23 -6 -29 -20h-27l22 166l27 -3c11 -88 42 -133 93 -133c40 0 60 22 60 54 c0 30 -16 59 -56 104c-68 77 -80 107 -80 161c0 80 53 126 134 126c20 0 41 -4 58 -12s27 -10 37 -10c15 0 19 4 28 21h29zM188 516h-49l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x15C: [897,18,556,2,526,'2 -18l36 225l29 -2c8 -66 16 -103 48 -139c27 -31 62 -50 106 -50c38 0 67 11 89 34c23 23 37 47 37 92c0 59 -34 96 -115 154s-130 114 -130 198c0 114 90 191 204 191c88 0 108 -30 146 -30c21 0 35 8 44 26h30l-40 -202l-27 4c-5 42 -9 76 -22 101 c-23 46 -64 66 -116 66c-53 0 -98 -40 -98 -105c0 -60 36 -86 107 -137c106 -77 138 -127 138 -217c0 -84 -41 -150 -110 -184c-33 -16 -74 -25 -120 -25c-40 0 -73 7 -122 24c-23 8 -36 11 -46 11c-19 0 -26 -6 -38 -35h-30zM433 723l-88 95l-131 -95h-57l160 174h81 l86 -174h-51'], + 0x15D: [690,13,389,-19,367,'333 461l-23 -154l-27 2c-16 83 -42 120 -88 120c-32 0 -53 -21 -53 -53c0 -23 18 -54 57 -99c60 -70 80 -114 80 -162c0 -75 -66 -128 -148 -128c-21 0 -42 3 -64 12c-13 5 -23 8 -30 8c-13 0 -23 -6 -29 -20h-27l22 166l27 -3c11 -88 42 -133 93 -133c40 0 60 22 60 54 c0 30 -16 59 -56 104c-68 77 -80 107 -80 161c0 80 53 126 134 126c20 0 41 -4 58 -12s27 -10 37 -10c15 0 19 4 28 21h29zM316 516l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x15E: [685,218,556,2,526,'172 -92l51 74c-34 2 -64 9 -107 24c-23 8 -36 11 -46 11c-19 0 -26 -6 -38 -35h-30l36 225l29 -2c8 -66 16 -103 48 -139c27 -31 62 -50 106 -50c38 0 67 11 89 34c23 23 37 47 37 92c0 59 -34 96 -115 154s-130 114 -130 198c0 114 90 191 204 191 c88 0 108 -30 146 -30c21 0 35 8 44 26h30l-40 -202l-27 4c-5 42 -9 76 -22 101c-23 46 -64 66 -116 66c-53 0 -98 -40 -98 -105c0 -60 36 -86 107 -137c106 -77 138 -127 138 -217c0 -84 -41 -150 -110 -184c-26 -13 -56 -21 -91 -24l-30 -45c10 2 16 3 26 3 c52 0 90 -30 90 -72c0 -50 -53 -87 -124 -87c-36 0 -68 7 -112 25l22 33c29 -13 45 -17 67 -17c34 0 56 16 56 41c0 23 -17 36 -47 36c-10 0 -18 -1 -30 -4'], + 0x15F: [462,218,389,-19,333,'65 -92l54 79c-17 1 -34 5 -52 12c-13 5 -23 8 -30 8c-13 0 -23 -6 -29 -20h-27l22 166l27 -3c11 -88 42 -133 93 -133c40 0 60 22 60 54c0 30 -16 59 -56 104c-68 77 -80 107 -80 161c0 80 53 126 134 126c20 0 41 -4 58 -12s27 -10 37 -10c15 0 19 4 28 21h29l-23 -154 l-27 2c-16 83 -42 120 -88 120c-32 0 -53 -21 -53 -53c0 -23 18 -54 57 -99c60 -70 80 -114 80 -162c0 -64 -49 -112 -114 -125l-35 -52c10 2 16 3 26 3c52 0 90 -30 90 -72c0 -50 -53 -87 -124 -87c-36 0 -68 7 -112 25l22 33c29 -13 45 -17 67 -17c34 0 56 16 56 41 c0 23 -17 36 -47 36c-10 0 -18 -1 -30 -4'], + 0x160: [897,18,556,2,526,'2 -18l36 225l29 -2c8 -66 16 -103 48 -139c27 -31 62 -50 106 -50c38 0 67 11 89 34c23 23 37 47 37 92c0 59 -34 96 -115 154s-130 114 -130 198c0 114 90 191 204 191c88 0 108 -30 146 -30c21 0 35 8 44 26h30l-40 -202l-27 4c-5 42 -9 76 -22 101 c-23 46 -64 66 -116 66c-53 0 -98 -40 -98 -105c0 -60 36 -86 107 -137c106 -77 138 -127 138 -217c0 -84 -41 -150 -110 -184c-33 -16 -74 -25 -120 -25c-40 0 -73 7 -122 24c-23 8 -36 11 -46 11c-19 0 -26 -6 -38 -35h-30zM516 897l-162 -174h-82l-88 174h51l90 -97 l134 97h57'], + 0x161: [690,13,389,-19,411,'333 461l-23 -154l-27 2c-16 83 -42 120 -88 120c-32 0 -53 -21 -53 -53c0 -23 18 -54 57 -99c60 -70 80 -114 80 -162c0 -75 -66 -128 -148 -128c-21 0 -42 3 -64 12c-13 5 -23 8 -30 8c-13 0 -23 -6 -29 -20h-27l22 166l27 -3c11 -88 42 -133 93 -133c40 0 60 22 60 54 c0 30 -16 59 -56 104c-68 77 -80 107 -80 161c0 80 53 126 134 126c20 0 41 -4 58 -12s27 -10 37 -10c15 0 19 4 28 21h29zM411 690l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x162: [669,218,611,49,650,'190 0h-141v25h15c46 0 77 20 91 72l148 537c-102 -2 -167 -37 -218 -143l-25 7l39 171h551l-36 -192l-27 2c0 114 -38 155 -138 155l-135 -489c-7 -24 -17 -53 -17 -74c0 -29 23 -46 83 -46v-25h-146l-42 -62c10 2 16 3 26 3c52 0 90 -30 90 -72c0 -50 -53 -87 -124 -87 c-36 0 -68 7 -112 25l22 33c29 -13 45 -17 67 -17c34 0 56 16 56 41c0 23 -17 36 -47 36c-10 0 -18 -1 -30 -4l-13 12'], + 0x163: [594,218,278,-75,289,'-20 -92l59 86c-27 7 -42 28 -42 62c0 18 10 63 25 115l67 236h-52v35c82 28 130 67 184 152h35l-39 -145h72v-42h-83l-34 -119c-35 -122 -53 -185 -53 -209c0 -13 8 -18 16 -18c16 0 42 27 76 80l23 -15c-60 -93 -101 -128 -153 -134l-36 -54c10 2 16 3 26 3 c52 0 90 -30 90 -72c0 -50 -53 -87 -124 -87c-36 0 -68 7 -112 25l22 33c29 -13 45 -17 67 -17c34 0 56 16 56 41c0 23 -17 36 -47 36c-10 0 -18 -1 -30 -4'], + 0x164: [897,0,611,49,650,'650 669l-36 -192l-27 2c0 114 -38 155 -138 155l-135 -489c-7 -24 -17 -53 -17 -74c0 -29 23 -46 83 -46v-25h-331v25h15c46 0 77 20 91 72l148 537c-102 -2 -167 -37 -218 -143l-25 7l39 171h551zM596 897l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x165: [710,9,411,-11,499,'308 394l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222zM266 407h-68l-34 -119c-11 -38 -53 -173 -53 -209c0 -10 5 -18 16 -18c24 0 65 62 76 80l23 -15 c-39 -62 -89 -135 -170 -135c-42 0 -67 22 -67 65c0 27 17 88 25 115l67 236h-52v35c88 30 135 74 184 152h35l-39 -145h57v-42'], + 0x166: [669,0,611,49,650,'100 322l9 34h117l77 278c-102 -2 -167 -37 -218 -143l-25 7l39 171h551l-36 -192l-27 2c0 114 -38 155 -138 155l-77 -278h114l-9 -34h-114l-49 -177c-7 -24 -17 -53 -17 -74c0 -29 23 -46 83 -46v-25h-331v25h15c46 0 77 20 91 72l62 225h-117'], + 0x167: [594,9,278,-30,281,'-30 232l16 56h61l34 119h-52v35c82 28 130 67 184 152h35l-39 -145h72v-42h-83l-34 -119h92l-16 -56h-92c-28 -101 -37 -137 -37 -153c0 -13 8 -18 16 -18c16 0 42 27 76 80l23 -15c-66 -103 -110 -135 -170 -135c-42 0 -67 21 -67 65c0 18 10 63 25 115l17 61h-61'], + 0x168: [841,18,722,67,744,'642 497l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294c-26 -94 -28 -107 -28 -135 c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207v-25c-55 -11 -65 -13 -102 -147zM599 841h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40 c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42'], + 0x169: [655,9,556,15,493,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74zM449 655h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40 c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42'], + 0x16A: [793,18,722,67,744,'642 497l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294c-26 -94 -28 -107 -28 -135 c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207v-25c-55 -11 -65 -13 -102 -147zM641 793l-16 -70h-326l17 70h325'], + 0x16B: [586,9,556,15,493,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74zM481 586l-16 -70h-326l17 70h325'], + 0x16C: [885,18,722,67,744,'642 497l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294c-26 -94 -28 -107 -28 -135 c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207v-25c-55 -11 -65 -13 -102 -147zM589 885h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x16D: [678,9,556,15,493,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74zM439 678h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x16E: [921,18,722,67,744,'642 497l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294c-26 -94 -28 -107 -28 -135 c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207v-25c-55 -11 -65 -13 -102 -147zM461 921c63 0 106 -47 106 -106s-48 -107 -107 -107c-64 0 -106 45 -106 108c0 59 49 105 107 105zM459 873 c-31 0 -57 -27 -57 -59s26 -58 57 -58c33 0 60 26 60 57c0 33 -27 60 -60 60'], + 0x16F: [729,9,556,15,493,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74zM311 729c63 0 106 -47 106 -106s-48 -107 -107 -107c-64 0 -106 45 -106 108c0 59 49 105 107 105zM309 681 c-31 0 -57 -27 -57 -59s26 -58 57 -58c33 0 60 26 60 57c0 33 -27 60 -60 60'], + 0x170: [889,18,722,67,744,'642 497l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294c-26 -94 -28 -107 -28 -135 c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207v-25c-55 -11 -65 -13 -102 -147zM301 708h-52l122 133c35 39 52 48 70 48c26 0 48 -19 48 -45c0 -19 -9 -34 -39 -51zM488 708h-50l122 133 c35 39 52 48 70 48c26 0 48 -21 48 -47c0 -19 -9 -32 -39 -49'], + 0x171: [697,9,556,15,527,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74zM150 516h-52l122 133c35 39 52 48 70 48c26 0 48 -19 48 -45c0 -19 -9 -34 -39 -51zM337 516h-50l122 133c35 39 52 48 70 48 c26 0 48 -21 48 -47c0 -19 -9 -32 -39 -49'], + 0x172: [669,173,722,67,744,'496 -84l22 -14c-25 -47 -75 -75 -126 -75c-61 0 -103 28 -103 81c0 26 8 46 29 75c-9 -1 -18 -1 -28 -1c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294 c-26 -94 -28 -107 -28 -135c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207v-25c-55 -11 -65 -13 -102 -147l-65 -234c-30 -107 -62 -187 -121 -234c-22 -17 -47 -30 -79 -37c-3 -15 -4 -25 -4 -34 c0 -45 23 -62 61 -62c16 0 28 3 48 13c8 4 9 5 14 7'], + 0x173: [462,173,556,15,531,'337 -9h-3c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72c0 -17 10 -25 24 -25c18 0 40 16 70 55 c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74l22 -13c-34 -57 -65 -94 -99 -113c-5 -23 -8 -37 -8 -49c0 -45 23 -62 61 -62c16 0 28 3 48 13c8 4 9 5 14 7l22 -14c-25 -47 -75 -75 -126 -75c-61 0 -103 28 -103 81 c0 28 9 49 35 83'], + 0x174: [897,18,889,64,940,'570 -18h-29l-59 489l-233 -489h-29l-78 572c-10 71 -14 80 -78 91v24h278v-25c-47 -6 -61 -19 -61 -50c0 -6 0 -14 1 -19l40 -349l149 314c0 79 -10 97 -70 105v24h267v-25c-53 -5 -62 -16 -62 -54c0 -12 3 -34 7 -73l33 -291l155 327c12 26 15 34 15 46 c0 36 -7 41 -63 45v25h187v-24c-42 -6 -55 -15 -88 -82zM653 723l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x175: [690,13,667,15,614,'15 407v27c80 13 115 19 156 28c23 -86 33 -154 33 -274l156 274h27l31 -333c88 103 120 157 120 187c0 10 -6 22 -20 38c-17 19 -22 33 -22 48c0 40 27 60 57 60c33 0 61 -29 61 -62c0 -84 -89 -223 -272 -413h-27l-23 285c-34 -63 -70 -135 -114 -201l-56 -84h-27v46 c0 13 1 32 1 62c0 121 -18 284 -38 302c-8 7 -18 10 -43 10zM483 516l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x176: [897,0,611,71,659,'233 311l-87 270c-16 48 -23 52 -75 63v25h285v-25c-55 -2 -69 -9 -69 -39c0 -18 8 -44 29 -110l46 -143l128 183c21 30 28 49 28 67c0 31 -13 40 -66 42v25h207v-25c-38 -5 -60 -27 -92 -72l-189 -264l-52 -191c-5 -20 -10 -37 -10 -51c0 -28 17 -41 79 -41v-25h-323v25 c66 6 87 15 104 78zM513 723l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x177: [690,205,444,-94,393,'12 411v27c65 6 102 12 150 24c18 -47 48 -149 66 -274l11 -78h2c70 134 87 176 87 207c0 13 -7 19 -25 34c-22 18 -31 29 -31 54s21 57 58 57c33 0 62 -30 62 -64c0 -101 -119 -338 -249 -497c-55 -67 -120 -106 -175 -106c-35 0 -62 26 -62 60c0 29 24 56 50 56 c47 0 58 -36 94 -36c17 0 46 22 67 52c17 24 25 48 25 71c0 31 -16 126 -50 288c-13 59 -24 97 -40 113c-11 11 -15 12 -40 12zM342 516l-88 95l-131 -95h-57l160 174h81l86 -174h-51'], + 0x178: [862,0,611,71,659,'233 311l-87 270c-16 48 -23 52 -75 63v25h285v-25c-55 -2 -69 -9 -69 -39c0 -18 8 -44 29 -110l46 -143l128 183c21 30 28 49 28 67c0 31 -13 40 -66 42v25h207v-25c-38 -5 -60 -27 -92 -72l-189 -264l-52 -191c-5 -20 -10 -37 -10 -51c0 -28 17 -41 79 -41v-25h-323v25 c66 6 87 15 104 78zM293 862c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66zM505 862c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66'], + 0x179: [904,0,611,-12,589,'553 194l-60 -194h-505v29l434 605h-83c-105 0 -168 -36 -247 -147l-28 4l58 178h467v-29l-434 -605h75c92 0 147 12 199 50c36 27 69 69 97 114zM319 723h-49l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x17A: [697,78,389,-43,379,'13 295l44 154h311v-10l-281 -335c39 -17 61 -35 86 -69c21 -29 39 -84 68 -84c13 0 22 8 22 17c0 16 -20 17 -20 45s23 53 50 53c28 0 53 -25 53 -53c0 -62 -49 -91 -110 -91c-41 0 -80 15 -129 50c-35 25 -54 33 -74 33c-11 0 -17 -3 -32 -14c-6 -5 -12 -10 -19 -14 l-25 22l292 354h-136c-37 0 -58 -14 -73 -61zM188 516h-49l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47'], + 0x17B: [862,0,611,-12,589,'553 194l-60 -194h-505v29l434 605h-83c-105 0 -168 -36 -247 -147l-28 4l58 178h467v-29l-434 -605h75c92 0 147 12 199 50c36 27 69 69 97 114zM369 862c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66'], + 0x17C: [655,78,389,-43,368,'13 295l44 154h311v-10l-281 -335c39 -17 61 -35 86 -69c21 -29 39 -84 68 -84c13 0 22 8 22 17c0 16 -20 17 -20 45s23 53 50 53c28 0 53 -25 53 -53c0 -62 -49 -91 -110 -91c-41 0 -80 15 -129 50c-35 25 -54 33 -74 33c-11 0 -17 -3 -32 -14c-6 -5 -12 -10 -19 -14 l-25 22l292 354h-136c-37 0 -58 -14 -73 -61zM227 655c36 0 66 -30 66 -66c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66'], + 0x17D: [897,0,611,-12,589,'553 194l-60 -194h-505v29l434 605h-83c-105 0 -168 -36 -247 -147l-28 4l58 178h467v-29l-434 -605h75c92 0 147 12 199 50c36 27 69 69 97 114zM556 897l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x17E: [690,78,389,-43,411,'13 295l44 154h311v-10l-281 -335c39 -17 61 -35 86 -69c21 -29 39 -84 68 -84c13 0 22 8 22 17c0 16 -20 17 -20 45s23 53 50 53c28 0 53 -25 53 -53c0 -62 -49 -91 -110 -91c-41 0 -80 15 -129 50c-35 25 -54 33 -74 33c-11 0 -17 -3 -32 -14c-6 -5 -12 -10 -19 -14 l-25 22l292 354h-136c-37 0 -58 -14 -73 -61zM411 690l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x17F: [691,0,333,14,536,'165 418h-41l10 44h41c18 79 38 138 80 178c35 33 69 51 143 51c81 0 138 -43 138 -99c0 -38 -26 -64 -63 -64c-34 0 -59 28 -59 55c0 37 22 43 22 59c0 11 -11 18 -27 18c-36 0 -55 -20 -68 -79l-107 -474c-4 -17 -6 -30 -6 -41c0 -31 18 -41 70 -42l-6 -24h-278l6 24 c47 5 61 18 71 63'], + 0x180: [699,13,500,-14,444,'232 515l-39 -142c48 66 93 89 144 89c64 0 107 -58 107 -131c0 -179 -152 -344 -320 -344c-66 0 -138 24 -138 61c0 6 10 45 20 81l110 386h-115l14 46h114c7 27 10 44 10 51c0 20 -16 30 -46 30h-19v27c89 10 140 17 210 30l-39 -138h118l-13 -46h-118zM319 325 c0 46 -12 69 -41 69c-33 0 -66 -29 -92 -84c-22 -48 -45 -124 -62 -182c-10 -34 -15 -73 -15 -81c0 -16 13 -27 31 -27c40 0 74 28 108 78c41 60 71 169 71 227'], + 0x188: [576,13,560,-5,627,'361 435l17 63c12 44 50 78 117 78c68 0 132 -35 132 -101c0 -36 -24 -63 -61 -63c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -7 19 -25 19c-33 0 -68 -13 -79 -57l-34 -136c-7 -30 -28 -51 -60 -51c-34 0 -58 23 -58 53s21 36 21 58c0 10 -12 17 -24 17 c-38 0 -65 -37 -93 -88c-33 -61 -53 -134 -53 -201c0 -58 29 -89 73 -89c43 0 74 24 122 91l28 -18c-38 -52 -70 -96 -115 -119c-23 -12 -50 -18 -83 -18c-91 0 -153 53 -153 151c0 92 43 177 105 239c51 52 113 85 180 85c29 0 60 -10 81 -27'], + 0x190: [686,4,512,54,676,'566 174l39 -12c-81 -138 -198 -166 -321 -166c-104 0 -230 32 -230 137c0 100 85 193 183 221c-48 15 -86 63 -86 114c0 155 185 218 310 218c41 0 92 -7 119 -18c46 -19 96 -56 96 -102c0 -34 -15 -68 -57 -68c-41 0 -61 25 -71 79c-6 31 -34 56 -85 56 c-75 0 -157 -75 -157 -191c0 -18 8 -59 53 -59c34 0 68 11 98 11c26 0 55 -9 55 -33c0 -29 -49 -47 -77 -47c-13 0 -73 5 -89 5c-67 0 -137 -83 -137 -176c0 -52 39 -78 113 -78c92 0 179 3 244 109'], + 0x192: [707,156,500,-87,537,'86 440h107c37 168 124 267 234 267c63 0 110 -37 110 -87c0 -37 -24 -61 -60 -61c-32 0 -53 20 -53 50c0 16 6 27 20 40c6 6 9 9 9 13c0 9 -10 15 -25 15c-21 0 -40 -13 -54 -37c-18 -32 -27 -70 -49 -200h118l-9 -44h-116l-27 -154c-47 -269 -134 -398 -268 -398 c-66 0 -110 35 -110 87c0 35 24 60 57 60c30 0 53 -22 53 -50c0 -12 -6 -24 -18 -38c-8 -8 -10 -12 -10 -17c0 -9 8 -13 25 -13c18 0 28 4 38 15c20 20 43 80 55 144l70 364h-105'], + 0x195: [699,10,735,-13,692,'467 338l-80 -251c-3 -8 -7 -25 -7 -28c0 -18 23 -19 34 -19c117 0 214 150 214 250c0 44 -24 47 -42 70c-14 17 -19 31 -19 48c0 25 23 54 57 54c53 0 68 -56 68 -112c0 -166 -125 -360 -316 -360c-65 0 -112 10 -112 65c0 18 4 36 9 52l76 232c5 15 6 24 6 30 c0 16 -8 21 -20 21c-27 0 -65 -31 -108 -94c-49 -72 -68 -121 -119 -296h-121l152 562c6 22 10 38 10 47c0 23 -13 33 -42 33h-22v27c81 7 132 15 209 30l-108 -416c99 141 145 179 213 179c49 0 76 -28 76 -75c0 -10 -1 -26 -8 -49'], + 0x199: [691,8,500,-23,483,'483 449v-25c-46 -6 -67 -14 -135 -76l-64 -58c39 -195 57 -227 79 -227c19 0 37 16 64 64l22 -11c-45 -95 -88 -124 -138 -124c-62 0 -90 48 -123 223l-39 -27l-50 -188h-122l135 486c29 103 90 205 199 205c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64 c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-32 0 -55 -19 -67 -65l-96 -357c126 99 165 137 165 163c0 16 -11 21 -50 23v25h206'], + 0x19A: [699,9,278,2,290,'290 699l-87 -313h51l-13 -46h-51l-45 -164c-15 -54 -22 -86 -22 -100c0 -8 5 -15 15 -15c18 0 39 21 79 80l22 -14c-69 -105 -105 -136 -169 -136c-41 0 -68 27 -68 63c0 23 14 84 34 155l37 131h-55l12 46h56l24 82c21 73 34 121 34 145c0 20 -15 30 -42 30 c-5 0 -11 0 -22 -1v27c75 7 124 14 210 30'], + 0x19B: [666,0,480,16,452,'452 568l-79 -56l53 -512h-40l-27 294l-193 -294h-150l322 474l-1 15l-184 -134v67l176 124c-4 34 -22 63 -38 63c-13 0 -18 -10 -18 -18c0 -4 3 -11 3 -18c0 -30 -26 -53 -60 -53c-38 0 -62 29 -62 67c0 47 40 79 97 79c52 0 92 -27 110 -97l91 67v-68'], + 0x19E: [462,205,536,-6,474,'178 263h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -28 -116l-161 -474h-118l179 546c3 10 7 25 7 28c0 17 -11 21 -24 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24 v27c56 2 135 13 199 27'], + 0x1A0: [716,18,722,27,806,'806 649c0 -45 -32 -73 -71 -81c-12 -3 -52 -4 -73 -4c18 -34 29 -75 29 -120c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c76 0 143 -30 187 -82c10 -6 24 -18 52 -18s43 8 44 26 c-21 13 -41 30 -41 56c0 21 20 49 53 49c32 0 62 -23 62 -67zM547 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398'], + 0x1A1: [507,13,537,24,595,'307 462h4c58 0 103 -22 130 -59c10 -8 24 -27 42 -27c30 0 37 9 38 27c-21 13 -42 31 -42 57c0 21 22 47 55 47c32 0 61 -24 61 -64c0 -45 -32 -76 -71 -84c-10 -3 -40 -4 -62 -4c4 -14 6 -29 6 -44c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75 c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM349 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64c26 0 50 15 71 49c49 80 86 220 86 307'], + 0x1A5: [673,205,520,-100,466,'197 347h1c56 87 101 115 158 115c72 0 110 -47 110 -121c0 -185 -135 -354 -277 -354c-21 0 -46 6 -68 22l-12 -41c-19 -66 -24 -100 -24 -114c0 -24 15 -31 65 -32v-27h-250v27c48 0 59 10 78 86l138 545c25 98 79 220 195 220c85 0 142 -41 142 -100 c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 11 -10 19 -28 19c-36 0 -56 -22 -70 -74zM341 336c0 40 -15 55 -39 55c-31 0 -61 -32 -87 -71c-18 -27 -22 -40 -44 -113c-27 -91 -38 -132 -38 -149c0 -20 17 -36 39 -36s43 12 62 30 c67 66 107 223 107 284'], + 0x1AA: [684,233,400,46,380,'233 455h-18c-41 0 -104 39 -104 114c0 62 57 115 124 115c84 0 145 -73 145 -132c0 -47 -12 -90 -27 -133l-155 -429c-10 -28 -39 -126 -39 -154c0 -20 0 -39 22 -39c12 0 23 7 23 14c0 9 -18 23 -18 48s22 47 53 47c32 0 54 -27 54 -61c0 -46 -39 -78 -109 -78 c-92 0 -138 48 -138 125c0 41 12 82 27 124zM276 569c0 32 -28 59 -59 59c-36 0 -58 -30 -58 -60c0 -32 30 -57 57 -57c33 0 60 25 60 58'], + 0x1AB: [594,218,286,-49,289,'289 407h-83l-34 -119c-35 -122 -53 -185 -53 -209c0 -13 8 -18 16 -18c16 0 42 27 76 80l23 -15l-54 -197c-19 -69 -40 -147 -107 -147c-83 0 -122 41 -122 100c0 37 25 64 62 64c33 0 59 -26 59 -57c0 -35 -22 -43 -22 -57c0 -8 7 -19 25 -19c23 0 38 20 59 94l38 136 c-36 -38 -69 -52 -108 -52c-42 0 -67 21 -67 65c0 18 10 63 25 115l67 236h-52v35c82 28 130 67 184 152h35l-39 -145h72v-42'], + 0x1AD: [691,9,360,-3,450,'37 407v35c28 10 47 18 70 32c23 82 46 130 84 166c36 33 86 51 116 51c86 0 143 -41 143 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 11 -10 19 -28 19c-33 0 -54 -16 -67 -66l-39 -145h72v-42h-83l-34 -119c-35 -122 -53 -185 -53 -209 c0 -13 8 -18 16 -18c16 0 42 27 76 80l23 -15c-66 -103 -110 -135 -170 -135c-42 0 -67 21 -67 65c0 18 10 63 25 115l67 236h-52'], + 0x1AF: [803,18,775,67,893,'537 669h227c28 0 55 7 55 29c-21 13 -42 24 -42 61c0 16 21 44 54 44c32 0 62 -20 62 -64c0 -48 -37 -75 -76 -83c-12 -3 -67 -10 -92 -16c-39 -10 -50 -26 -83 -143l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163 c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294c-26 -94 -28 -107 -28 -135c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25'], + 0x1B0: [583,9,556,15,656,'370 449h118c18 0 37 1 56 3c24 3 37 9 38 27c-28 8 -42 29 -42 55c0 21 20 49 55 49c32 0 61 -22 61 -64c0 -45 -34 -82 -73 -90c-26 -6 -85 -7 -102 -7l-71 -239c-14 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74l22 -13c-52 -89 -99 -129 -159 -129 c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72c0 -17 10 -25 24 -25c18 0 40 16 70 55 c58 76 88 131 142 331'], + 0x1BA: [450,237,496,-52,458,'458 423l-236 -167c11 3 39 4 45 4c76 0 119 -37 119 -92c0 -58 -49 -116 -106 -144l-181 -90c-35 -17 -70 -50 -70 -86c0 -29 20 -48 49 -48s63 16 70 53c8 45 32 64 66 64c43 0 59 -26 59 -50c0 -30 -16 -58 -65 -80c-38 -17 -94 -24 -121 -24c-53 0 -87 14 -107 29 c-25 20 -32 46 -32 69c0 73 54 120 114 152c49 26 98 48 145 70c18 9 50 30 50 69c0 29 -31 44 -71 44c-21 0 -65 -2 -122 -47l-21 24l285 204h-189c-23 0 -74 -30 -95 -83h-26l76 156h364v-27'], + 0x1BB: [683,0,500,-27,469,'469 376l-16 -62h-111l-40 -36l-196 -167h138c77 0 114 8 151 80h24l-80 -191h-366v24l89 92c60 62 127 128 177 198h-233l15 62h262c17 31 29 64 29 100c0 62 -21 117 -92 117c-62 0 -101 -37 -134 -86l-22 12c38 94 112 164 218 164c100 0 164 -69 164 -168 c0 -52 -19 -97 -50 -139h73'], + 0x1BE: [541,10,500,37,463,'304 438l-10 -47c14 2 22 2 31 2c99 0 138 -71 138 -150c0 -149 -123 -253 -269 -253c-34 0 -67 9 -100 26c-30 16 -57 44 -57 80c0 19 16 48 53 48c43 0 61 -26 71 -61c9 -33 18 -64 54 -64c62 0 119 134 119 187c0 58 -45 89 -93 89h-32l38 143h-64l13 46h64l15 57h52 l-12 -57h111l-13 -46h-109'], + 0x1C0: [740,0,208,14,278,'278 740l-198 -740h-66l198 740h66'], + 0x1C1: [740,0,345,14,415,'415 740l-198 -740h-66l198 740h66zM278 740l-198 -740h-66l198 740h66'], + 0x1C2: [740,0,368,14,438,'438 476l-18 -66h-148l-23 -84h148l-17 -66h-148l-70 -260h-66l70 260h-152l17 66h152l23 84h-152l18 66h152l70 264h66l-70 -264h148'], + 0x1C3: [684,13,300,45,355,'168 203l-31 9c32 157 50 274 55 354c4 60 17 118 86 118c53 0 77 -29 77 -73c0 -27 -6 -41 -32 -89c-62 -114 -110 -210 -155 -319zM214 70c0 -48 -36 -83 -84 -83c-47 0 -85 37 -85 84c0 49 35 85 84 85c47 0 85 -36 85 -86'], + 0x1F0: [690,207,350,-104,474,'474 690l-162 -174h-82l-88 174h51l90 -97l134 97h57zM324 462l-37 -140l-79 -304c-42 -160 -107 -225 -207 -225c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15c28 0 49 36 74 136l89 350c8 30 12 54 12 67 c0 21 -12 30 -41 30h-22v27c112 10 149 15 209 28'], + 0x1FA: [972,0,667,-68,593,'419 646l88 -523c14 -82 23 -94 86 -98v-25h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l355 558c-27 15 -44 44 -44 78c0 48 41 90 92 90c47 0 89 -41 89 -89 c0 -51 -41 -92 -90 -92h-1zM346 248l-37 243l-148 -243h185zM462 736c0 23 -14 43 -44 43c-24 0 -41 -20 -41 -42c0 -23 19 -43 41 -43c24 0 44 19 44 42zM304 825l146 125c17 15 25 22 44 22c23 0 32 -12 32 -33c0 -19 -14 -26 -45 -43l-132 -71h-45'], + 0x1FB: [909,14,500,-21,456,'160 728l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM387 623c0 -59 -48 -107 -107 -107c-64 0 -106 45 -106 108c0 59 49 105 107 105c63 0 106 -47 106 -106zM339 621c0 33 -27 60 -60 60c-31 0 -57 -27 -57 -59s26 -58 57 -58 c33 0 60 26 60 57zM435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251 c-24 -79 -30 -108 -30 -133c0 -9 4 -15 12 -15c16 0 32 15 73 70zM303 373c0 27 -15 47 -37 47c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240'], + 0x1FC: [904,0,944,-64,918,'520 723l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM918 669l-45 -190l-24 5l-2 40c-4 75 -58 113 -162 113c-42 0 -52 -5 -59 -32l-65 -235h19c102 0 135 20 175 106l26 -4l-73 -273l-25 5c2 16 3 35 3 46c0 66 -18 81 -133 88 l-63 -241c-3 -12 -5 -22 -5 -28c0 -26 26 -37 68 -37c78 0 124 12 170 47c36 27 66 70 101 120l26 -3l-59 -196h-527v25c52 8 65 27 81 81l43 149h-192l-114 -157c-10 -13 -15 -27 -15 -39c0 -22 16 -30 64 -34v-25h-195v25c17 2 22 4 30 9c5 2 20 18 59 68l364 472 c12 16 20 33 20 44c0 19 -15 24 -80 28v23h589zM490 627h-12l-253 -333h173'], + 0x1FD: [697,13,722,-5,673,'300 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM473 459l-20 -65c38 49 71 65 120 65c63 0 100 -32 100 -87c0 -82 -83 -161 -230 -185l-37 -6c-4 -20 -5 -31 -5 -46c0 -53 25 -85 66 -85c48 0 90 31 124 90l28 -17 c-43 -88 -110 -136 -194 -136c-89 0 -133 45 -143 131c-56 -93 -106 -130 -173 -130c-66 0 -114 38 -114 118c0 90 45 188 107 259c50 58 111 97 168 97c44 0 64 -16 82 -66l18 58zM418 231l-5 -17c85 10 170 92 170 174c0 29 -12 41 -35 41c-50 0 -91 -64 -130 -198z M333 363c0 33 -20 56 -48 56c-93 0 -164 -215 -164 -295c0 -43 18 -66 48 -66c34 0 63 28 93 79c40 68 71 171 71 226'], + 0x1FE: [904,125,722,27,691,'290 723l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM633 764l-63 -108c74 -35 121 -117 121 -203c0 -152 -72 -283 -183 -376c-73 -61 -151 -95 -240 -95c-31 0 -54 3 -85 13l-70 -120h-48l79 136c-78 42 -117 113 -117 201 c0 249 199 473 422 473c30 0 50 -3 82 -13l53 92h49zM182 77l324 553c-19 15 -37 21 -63 21c-61 0 -116 -43 -165 -130c-58 -103 -107 -278 -107 -380c0 -22 4 -44 11 -64zM533 593l-325 -555c20 -16 41 -22 67 -22c62 0 128 57 166 135c51 105 106 275 106 376 c0 22 -5 43 -14 66'], + 0x1FF: [697,119,500,-3,441,'139 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM424 560l-65 -116c57 -28 82 -69 82 -133c0 -169 -136 -324 -284 -324c-18 0 -31 2 -51 8l-64 -114h-40l72 126c-53 30 -77 70 -77 127c0 170 139 328 289 328 c14 0 24 -1 42 -6l59 104h37zM116 78l191 341c-10 10 -19 14 -32 14c-32 0 -61 -23 -86 -68c-36 -65 -73 -205 -73 -279v-8zM321 377l-193 -343c10 -13 21 -18 37 -18c39 0 70 33 101 109c29 69 56 187 56 247c0 2 0 3 -1 5'], + 0x1E80: [904,18,889,64,940,'626 723h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33zM940 669v-24c-42 -6 -55 -15 -88 -82l-282 -581h-29l-59 489l-233 -489h-29l-78 572c-10 71 -14 80 -78 91v24h278v-25c-47 -6 -61 -19 -61 -50c0 -6 0 -14 1 -19l40 -349l149 314 c0 79 -10 97 -70 105v24h267v-25c-53 -5 -62 -16 -62 -54c0 -12 3 -34 7 -73l33 -291l155 327c12 26 15 34 15 46c0 36 -7 41 -63 45v25h187'], + 0x1E81: [697,13,667,15,614,'476 516h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33zM387 462l31 -333c88 103 120 157 120 187c0 10 -6 22 -20 38c-17 19 -22 33 -22 48c0 40 27 60 57 60c33 0 61 -29 61 -62c0 -84 -89 -223 -272 -413h-27l-23 285 c-34 -63 -70 -135 -114 -201l-56 -84h-27v46c0 13 1 32 1 62c0 121 -18 284 -38 302c-8 7 -18 10 -43 10v27c80 13 115 19 156 28c23 -86 33 -154 33 -274l156 274h27'], + 0x1E82: [904,18,889,64,940,'440 723l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM940 669v-24c-42 -6 -55 -15 -88 -82l-282 -581h-29l-59 489l-233 -489h-29l-78 572c-10 71 -14 80 -78 91v24h278v-25c-47 -6 -61 -19 -61 -50c0 -6 0 -14 1 -19l40 -349 l149 314c0 79 -10 97 -70 105v24h267v-25c-53 -5 -62 -16 -62 -54c0 -12 3 -34 7 -73l33 -291l155 327c12 26 15 34 15 46c0 36 -7 41 -63 45v25h187'], + 0x1E83: [697,13,667,15,614,'250 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49zM387 462l31 -333c88 103 120 157 120 187c0 10 -6 22 -20 38c-17 19 -22 33 -22 48c0 40 27 60 57 60c33 0 61 -29 61 -62c0 -84 -89 -223 -272 -413h-27l-23 285 c-34 -63 -70 -135 -114 -201l-56 -84h-27v46c0 13 1 32 1 62c0 121 -18 284 -38 302c-8 7 -18 10 -43 10v27c80 13 115 19 156 28c23 -86 33 -154 33 -274l156 274h27'], + 0x1E84: [862,18,889,64,940,'701 796c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM489 796c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM940 669v-24c-42 -6 -55 -15 -88 -82l-282 -581h-29l-59 489l-233 -489h-29 l-78 572c-10 71 -14 80 -78 91v24h278v-25c-47 -6 -61 -19 -61 -50c0 -6 0 -14 1 -19l40 -349l149 314c0 79 -10 97 -70 105v24h267v-25c-53 -5 -62 -16 -62 -54c0 -12 3 -34 7 -73l33 -291l155 327c12 26 15 34 15 46c0 36 -7 41 -63 45v25h187'], + 0x1E85: [655,13,667,15,614,'541 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM329 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM387 462l31 -333c88 103 120 157 120 187c0 10 -6 22 -20 38 c-17 19 -22 33 -22 48c0 40 27 60 57 60c33 0 61 -29 61 -62c0 -84 -89 -223 -272 -413h-27l-23 285c-34 -63 -70 -135 -114 -201l-56 -84h-27v46c0 13 1 32 1 62c0 121 -18 284 -38 302c-8 7 -18 10 -43 10v27c80 13 115 19 156 28c23 -86 33 -154 33 -274l156 274h27'], + 0x1EF2: [904,0,611,71,659,'496 723h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33zM659 669v-25c-38 -5 -60 -27 -92 -72l-189 -264l-52 -191c-5 -20 -10 -37 -10 -51c0 -28 17 -41 79 -41v-25h-323v25c66 6 87 15 104 78l57 208l-87 270c-16 48 -23 52 -75 63v25h285v-25 c-55 -2 -69 -9 -69 -39c0 -18 8 -44 29 -110l46 -143l128 183c21 30 28 49 28 67c0 31 -13 40 -66 42v25h207'], + 0x1EF3: [697,205,444,-94,392,'297 516h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33zM239 110h2c70 134 87 176 87 207c0 13 -7 19 -25 34c-22 18 -31 29 -31 54s21 57 58 57c33 0 62 -30 62 -64c0 -101 -119 -338 -249 -497c-55 -67 -120 -106 -175 -106 c-35 0 -62 26 -62 60c0 29 24 56 50 56c47 0 58 -36 94 -36c17 0 46 22 67 52c17 24 25 48 25 71c0 31 -16 126 -50 288c-13 59 -24 97 -40 113c-11 11 -15 12 -40 12v27c65 6 102 12 150 24c18 -47 48 -149 66 -274'], + 0xFB00: [698,205,613,-169,726,'236 449h165c20 71 43 135 79 181c34 42 79 68 147 68c60 0 99 -31 99 -80c0 -31 -20 -54 -51 -54c-28 0 -49 22 -49 50c0 23 16 28 16 42c0 8 -8 13 -18 13c-34 0 -68 -56 -92 -154l-16 -66h135l-9 -42h-133c-56 -265 -68 -313 -95 -394c-31 -92 -54 -137 -90 -172 c-32 -31 -70 -46 -114 -46c-56 0 -99 31 -99 79c0 31 24 55 51 55c26 0 50 -20 50 -49c0 -25 -16 -28 -16 -42c0 -8 8 -12 18 -12c40 0 59 41 90 189c6 29 38 172 88 392h-163c-56 -265 -68 -313 -95 -394c-31 -92 -54 -137 -90 -172c-32 -31 -70 -46 -114 -46 c-56 0 -99 31 -99 79c0 31 24 55 51 55c26 0 50 -20 50 -49c0 -25 -16 -28 -16 -42c0 -8 8 -12 18 -12c40 0 59 41 90 189c6 29 38 172 88 392h-74l9 42h74c20 71 43 135 79 181c34 42 79 68 147 68c60 0 96 -29 96 -78c0 -31 -20 -54 -51 -54c-28 0 -46 20 -46 48 c0 23 16 28 16 42c0 8 -8 13 -18 13c-34 0 -68 -56 -92 -154'], + 0xFB01: [703,205,556,-188,514,'492 140l22 -13c-67 -105 -107 -136 -167 -136c-45 0 -71 24 -71 66c0 17 0 28 15 84l70 266h-150l-94 -385c-13 -52 -46 -121 -77 -160c-33 -42 -82 -67 -131 -67c-56 0 -97 33 -97 78c0 32 20 55 49 55s51 -21 51 -50c0 -23 -19 -26 -19 -39c0 -6 5 -10 17 -10 c44 0 61 35 93 177l89 401h-75l10 42h76c39 115 53 155 111 202c38 31 94 52 151 52c88 0 142 -39 142 -95c0 -35 -24 -58 -57 -58s-58 25 -58 56c0 29 22 34 22 50c0 12 -9 17 -26 17c-37 0 -71 -14 -90 -37c-32 -39 -47 -75 -77 -187h117c15 0 55 4 156 10l-75 -280 c-12 -46 -20 -91 -20 -102c0 -8 8 -16 15 -16c16 0 39 23 78 79'], + 0xFB02: [704,205,556,-186,553,'553 701l-151 -602c-4 -15 -4 -16 -4 -20c0 -9 8 -17 17 -17c18 0 41 22 76 75l20 -11c-68 -105 -104 -135 -163 -135c-43 0 -72 24 -72 58c0 11 2 24 5 37l79 321h-147l-76 -314c-46 -190 -123 -298 -226 -298c-60 0 -97 35 -97 81c0 33 19 54 52 54c28 0 47 -19 47 -47 c0 -23 -16 -25 -16 -40c0 -7 9 -13 22 -13c35 0 50 31 86 189l89 388h-73l10 42h73c34 109 52 158 106 205c36 31 88 50 143 50c23 0 50 0 101 -15zM372 449l30 119c-15 11 -21 23 -21 39c0 22 21 34 21 49c0 10 -18 19 -36 19c-34 0 -63 -23 -89 -62 c-22 -33 -35 -76 -56 -164h151'], + 0xFB03: [703,205,856,-169,814,'792 140l22 -13c-67 -105 -107 -136 -167 -136c-45 0 -71 24 -71 66c0 17 0 28 15 84l70 266h-150l-94 -385c-13 -52 -46 -121 -77 -160c-33 -42 -82 -67 -131 -67c-56 0 -97 33 -97 78c0 32 20 55 49 55s51 -21 51 -50c0 -23 -19 -26 -19 -39c0 -6 5 -13 17 -13 c44 0 61 38 93 180l89 401h-163c-56 -265 -68 -313 -95 -394c-31 -92 -54 -137 -90 -172c-32 -31 -70 -46 -114 -46c-56 0 -99 31 -99 79c0 31 24 55 51 55c26 0 50 -20 50 -49c0 -25 -16 -28 -16 -42c0 -8 8 -12 18 -12c40 0 59 41 90 189c6 29 38 172 88 392h-74l9 42h74 c20 71 43 135 79 181c34 42 79 68 147 68c60 0 97 -29 97 -78c0 -31 -20 -54 -51 -54c-28 0 -47 20 -47 48c0 23 16 28 16 42c0 8 -8 13 -18 13c-34 0 -68 -56 -92 -154l-16 -66h167c39 115 53 155 111 202c38 31 94 52 151 52c88 0 142 -39 142 -95c0 -35 -24 -58 -57 -58 s-58 25 -58 56c0 29 22 34 22 50c0 12 -9 17 -26 17c-37 0 -71 -14 -90 -37c-32 -39 -47 -75 -77 -187h117c15 0 55 4 156 10l-75 -280c-12 -46 -20 -91 -20 -102c0 -8 8 -16 15 -16c16 0 39 23 78 79'], + 0xFB04: [704,205,854,-169,851,'851 701l-151 -602c-4 -15 -4 -16 -4 -20c0 -9 8 -17 17 -17c18 0 41 22 76 75l20 -11c-68 -105 -104 -135 -163 -135c-43 0 -72 24 -72 58c0 11 2 24 5 37l79 321h-147l-76 -314c-46 -190 -123 -298 -226 -298c-60 0 -97 35 -97 81c0 33 19 54 52 54c28 0 47 -19 47 -47 c0 -23 -16 -25 -16 -40c0 -7 9 -13 22 -13c35 0 50 31 86 189l89 388h-163c-56 -265 -68 -313 -95 -394c-31 -92 -54 -137 -90 -172c-32 -31 -70 -46 -114 -46c-56 0 -99 31 -99 79c0 31 24 55 51 55c26 0 50 -20 50 -49c0 -25 -16 -28 -16 -42c0 -8 8 -12 18 -12 c40 0 59 41 90 189c6 29 38 172 88 392h-74l9 42h74c20 71 43 135 79 181c34 42 79 68 147 68c60 0 97 -30 97 -79c0 -31 -20 -54 -51 -54c-28 0 -47 21 -47 49c0 23 16 28 16 42c0 8 -8 13 -18 13c-34 0 -68 -56 -92 -154l-16 -66h166c34 109 52 158 106 205 c36 31 88 50 143 50c23 0 50 0 101 -15zM670 449l30 119c-15 11 -21 23 -21 39c0 22 21 34 21 49c0 10 -18 19 -36 19c-34 0 -63 -23 -89 -62c-22 -33 -35 -76 -56 -164h151'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Latin/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/Italic/Main.js new file mode 100644 index 0000000..564280d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/Italic/Main.js @@ -0,0 +1,279 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Latin/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Latin-italic'] = { + directory: 'Latin/Italic', + family: 'STIXMathJax_Latin', + style: 'italic', + id: 'STIXWEBLATINI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xA1: [474,205,389,59,321,'321 419c0 -27 -25 -51 -52 -51c-29 0 -54 25 -54 54c0 28 25 52 55 52s51 -23 51 -55zM224 285l17 -4c-37 -166 -53 -251 -72 -370c-14 -83 -34 -116 -70 -116c-26 0 -40 17 -40 50c0 32 9 61 38 124c38 82 73 170 127 316'], + 0xA2: [560,143,500,77,472,'414 560l-42 -120c35 -3 51 -8 70 -22c18 -14 30 -36 30 -58c0 -27 -20 -48 -48 -48c-24 0 -39 16 -39 40c0 10 2 16 9 29c4 9 6 14 6 18c0 13 -11 20 -35 21l-137 -391c8 -3 14 -4 24 -4c51 0 89 23 145 83l16 -10c-60 -76 -114 -109 -187 -109c-5 0 -6 0 -11 1 l-47 -133h-31l48 136c-28 6 -42 12 -58 25c-32 25 -50 60 -50 122c0 102 57 204 152 263c36 22 63 29 113 37l42 120h30zM202 41l132 376c-33 -7 -61 -24 -85 -48c-57 -58 -86 -150 -86 -227c0 -45 12 -78 39 -101'], + 0xA4: [534,10,500,-22,522,'522 40l-48 -50l-98 98c-40 -28 -78 -41 -125 -41s-85 12 -127 41l-96 -98l-50 50l98 96c-29 42 -41 78 -41 126s12 86 41 126l-98 98l50 48l96 -96c43 28 80 39 127 39c49 0 86 -12 125 -39l98 96l48 -48l-96 -98c28 -41 39 -77 39 -125c0 -47 -11 -84 -39 -127z M397 263c0 82 -65 150 -144 150c-83 0 -150 -66 -150 -149c0 -85 66 -153 148 -153c81 0 146 67 146 152'], + 0xA6: [666,18,275,105,171,'171 391h-66v275h66v-275zM171 -18h-66v275h66v-275'], + 0xA9: [666,18,760,41,719,'545 240l-15 -68c-2 -11 -5 -13 -21 -18c-50 -14 -74 -18 -111 -18c-126 0 -207 73 -207 187c0 119 89 200 218 200c32 0 58 -4 99 -18c13 -4 21 -12 21 -21v-69h-16c-10 59 -45 88 -107 88c-89 0 -138 -61 -138 -172c0 -112 51 -175 141 -175c57 0 92 25 120 84h16z M719 318c0 -186 -151 -336 -337 -336c-191 0 -341 150 -341 341c0 190 151 343 339 343c192 0 339 -150 339 -348zM664 319c0 169 -126 305 -283 305c-155 0 -285 -137 -285 -301c0 -163 130 -299 285 -299c153 0 283 136 283 295'], + 0xAA: [676,-406,276,42,352,'299 673l53 2c-31 -109 -51 -186 -54 -203l-3 -15c-1 -3 -1 -5 -1 -7c0 -4 2 -7 4 -7c4 0 19 12 31 24l14 15l7 -10c-49 -55 -64 -66 -90 -66c-19 0 -31 10 -31 25c0 17 3 27 17 62c-50 -68 -77 -87 -126 -87c-48 0 -78 26 -78 70c0 93 101 200 189 200 c34 0 53 -11 59 -35l7 30zM269 620c0 21 -8 37 -19 38c-53 0 -135 -104 -135 -178c0 -21 14 -40 29 -40c25 0 53 21 79 60c26 38 46 90 46 120'], + 0xAB: [403,-37,500,53,445,'215 216v9c89 69 102 79 127 101c65 57 90 77 97 77c3 0 6 -3 6 -7c0 -17 -36 -62 -91 -112c-22 -20 -44 -43 -65 -67c6 -14 13 -27 20 -40c37 -69 62 -123 62 -133c0 -4 -3 -7 -7 -7c-13 0 -56 66 -82 95c-35 40 -54 65 -67 84zM53 216v9c89 69 102 79 127 101 c65 57 90 77 97 77c3 0 6 -3 6 -7c0 -17 -36 -62 -91 -112c-24 -22 -45 -45 -65 -67c6 -14 13 -27 20 -40c37 -69 62 -123 62 -133c0 -4 -3 -7 -7 -7c-16 0 -55 65 -82 95c-35 40 -54 65 -67 84'], + 0xAD: [255,-192,333,49,282,'282 255l-13 -63h-220l14 63h219'], + 0xB2: [676,-271,300,33,324,'91 572l-13 8c14 33 24 47 43 63c25 21 58 33 92 33c61 0 111 -45 111 -101c0 -35 -12 -52 -99 -136l-114 -110l2 -5h108c36 0 49 7 65 34l11 -8l-33 -79h-231v18l133 130c62 61 93 107 93 139c0 37 -35 67 -78 67c-36 0 -61 -15 -90 -53'], + 0xB3: [676,-268,300,43,339,'149 608l-10 7c21 38 60 61 105 61c54 0 95 -33 95 -76c0 -39 -24 -60 -101 -87l4 -2c28 -14 29 -15 38 -24c14 -16 21 -36 21 -62c0 -92 -77 -157 -185 -157c-48 0 -73 14 -73 39c0 16 13 28 30 28c8 0 21 -5 38 -17c19 -13 31 -19 43 -19c48 0 84 40 84 93 c0 61 -37 97 -100 97h-13v9c100 19 147 49 147 94c0 30 -22 52 -50 52c-26 0 -43 -8 -73 -36'], + 0xB6: [653,123,559,60,621,'621 653l-6 -21c-76 -5 -85 -13 -97 -58l-160 -600c-5 -19 -11 -38 -11 -50c0 -14 13 -21 49 -24l23 -2l-5 -21h-148l200 755h-58l-200 -755h-148l5 21c46 4 62 7 74 13c7 4 11 8 13 15c8 23 40 137 68 245l30 112c-55 2 -80 9 -108 28c-29 20 -45 53 -45 92 c0 63 23 131 59 174c45 54 106 76 208 76h257zM260 304l79 328c-44 -3 -73 -17 -101 -49c-37 -42 -64 -116 -64 -177c0 -33 12 -64 33 -83c12 -12 25 -16 53 -19'], + 0xB8: [0,217,333,-30,182,'119 0l-44 -66c10 2 16 3 25 3c50 0 82 -26 82 -68c0 -50 -49 -86 -119 -86c-28 0 -51 5 -93 21l17 29c30 -11 47 -15 68 -15c34 0 53 15 53 41s-19 44 -46 44c-10 0 -18 -2 -32 -7l-9 8l60 96h38'], + 0xB9: [676,-271,300,43,284,'270 676h9c3 0 5 -2 5 -5c0 -2 -1 -8 -4 -16l-86 -274c-13 -40 -19 -65 -19 -74c0 -15 11 -19 49 -20v-16h-181v16c47 5 60 10 65 25l90 285c4 12 5 16 5 21c0 10 -9 17 -21 17h-34v19c27 4 44 7 122 22'], + 0xBA: [676,-406,310,67,362,'362 592c0 -92 -100 -186 -198 -186c-59 0 -97 33 -97 83c0 96 97 187 198 187c57 0 97 -35 97 -84zM289 607c0 31 -10 47 -31 47c-54 1 -118 -93 -118 -178c0 -28 15 -46 38 -46c17 0 36 8 49 22c36 38 62 103 62 155'], + 0xBB: [403,-37,500,55,447,'447 215l-36 -27c-56 -42 -66 -52 -91 -74c-67 -59 -90 -77 -97 -77c-3 0 -6 3 -6 7c0 17 36 62 91 112c25 22 46 44 65 67c-7 14 -13 27 -20 40c-37 68 -62 123 -62 133c0 4 3 7 7 7c15 0 55 -64 82 -95c34 -40 54 -65 67 -84v-9zM285 215l-36 -27 c-56 -42 -66 -52 -91 -74c-67 -59 -90 -77 -97 -77c-3 0 -6 3 -6 7c0 17 38 58 91 112l65 67c-7 14 -13 27 -20 40c-37 68 -62 123 -62 133c0 4 3 7 7 7c14 0 55 -65 82 -95c34 -40 54 -65 67 -84v-9'], + 0xBC: [676,10,750,33,736,'736 406l-79 -259h55l-9 -43h-58l-30 -104h-63l32 105h-168l13 42l271 259h36zM653 333l-189 -186h129zM649 676l-455 -686h-51l455 686h51zM138 635v19c22 3 36 6 70 12c31 6 55 10 60 10c3 0 5 -2 5 -5c0 -4 -1 -10 -3 -16l-86 -274c-13 -40 -19 -65 -19 -74 c0 -15 10 -19 49 -20v-16h-181v16c47 5 60 10 65 25l90 285c4 12 5 16 5 21c0 10 -10 17 -25 17h-30'], + 0xBD: [676,10,750,34,749,'516 301l-13 8c14 33 24 47 43 63c26 22 59 34 93 34c60 0 110 -46 110 -102c0 -35 -12 -52 -99 -136l-114 -110l2 -5h108c36 0 49 7 65 34l11 -8l-33 -79h-231v18l133 130c61 60 93 107 93 139c0 37 -35 67 -78 67c-36 0 -61 -15 -90 -53zM635 676l-455 -686h-51 l455 686h51zM139 635v19c23 3 36 6 70 12c31 6 55 10 60 10c3 0 5 -2 5 -5c0 -4 -1 -10 -3 -16l-86 -274c-13 -41 -19 -65 -19 -74c0 -15 10 -19 49 -20v-16h-181v16c47 5 60 10 65 25l90 285c5 15 5 17 5 22c0 12 -9 16 -24 16h-31'], + 0xBE: [676,10,750,23,736,'736 406l-79 -259h55l-9 -43h-58l-30 -104h-63l32 105h-168l13 42l271 259h36zM653 333l-189 -186h129zM650 676l-455 -686h-51l455 686h51zM129 608l-10 7c20 38 60 61 105 61c54 0 95 -33 95 -76c0 -39 -24 -60 -101 -87v-3c25 -6 33 -13 42 -23c14 -16 21 -36 21 -62 c0 -92 -77 -157 -185 -157c-48 0 -73 14 -73 39c0 16 13 28 30 28c8 0 21 -5 38 -17c19 -13 31 -19 43 -19c48 0 84 40 84 93c0 61 -37 97 -100 97h-13v9c100 19 147 49 147 94c0 30 -22 52 -50 52c-26 0 -43 -8 -73 -36'], + 0xBF: [473,205,500,28,367,'367 421c0 -30 -23 -53 -52 -53c-31 0 -53 24 -53 53c0 28 24 52 52 52c30 0 53 -23 53 -52zM284 285l17 -2c-18 -100 -29 -120 -112 -216c-63 -73 -87 -113 -87 -166c0 -54 29 -84 80 -84c43 0 70 18 70 48c0 18 -15 27 -15 51c0 22 16 38 40 38s39 -20 39 -50 c0 -64 -58 -109 -141 -109c-89 0 -147 39 -147 121c0 61 20 96 134 189c71 57 101 95 115 151'], + 0xC0: [914,0,611,-51,564,'564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194zM500 742h-32l-140 106 c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xC1: [914,0,611,-51,564,'564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194zM292 744l162 160 c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xC2: [911,0,611,-51,564,'564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194zM548 742h-36l-82 104l-137 -104 h-39l157 169h49'], + 0xC3: [874,0,611,-51,572,'564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194zM544 874h28 c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44'], + 0xC4: [856,0,611,-51,564,'564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194zM554 807c0 -27 -22 -49 -49 -49 c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM354 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xC5: [957,0,611,-51,564,'564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194zM505 857c0 -54 -45 -99 -100 -99 c-57 0 -100 44 -100 100c0 54 45 99 99 99c56 0 101 -45 101 -100zM471 857c0 37 -30 66 -67 66c-35 0 -65 -30 -65 -65c0 -37 28 -66 65 -66c38 0 67 28 67 65'], + 0xC6: [653,0,889,-27,911,'911 653l-33 -153l-17 2c1 13 1 30 1 36c0 70 -28 82 -192 82c-47 0 -55 -5 -64 -37l-61 -222c159 1 169 6 211 97l18 -4l-69 -232l-17 4c4 24 6 38 6 52c0 41 -21 50 -118 50h-40c-61 -217 -71 -253 -71 -266c0 -20 16 -29 51 -29h30c150 0 204 27 280 136l18 -5 l-64 -164h-498v16c61 6 71 16 80 48l49 170h-190c-8 -10 -16 -21 -25 -30c-61 -73 -100 -134 -100 -157c0 -20 11 -25 64 -31v-16h-187v16c25 6 36 16 84 76l369 465c30 38 32 41 32 53c0 17 -11 24 -38 26l-26 2v15h517zM517 613l-268 -342h173'], + 0xC7: [666,217,667,66,689,'689 664l-37 -200l-18 3c-8 113 -61 163 -153 163c-66 0 -139 -39 -195 -98c-69 -73 -108 -181 -108 -300c0 -139 62 -205 175 -205c82 0 140 29 230 118l17 -14c-90 -106 -170 -149 -273 -149c-16 0 -32 1 -50 4l-35 -52c10 2 16 3 25 3c50 0 82 -26 82 -68 c0 -50 -49 -86 -119 -86c-28 0 -51 5 -93 21l17 29c30 -11 47 -15 68 -15c34 0 53 15 53 41s-19 44 -46 44c-10 0 -18 -2 -32 -7l-9 8l56 90c-109 24 -178 124 -178 249c0 223 192 423 406 423c33 0 73 -6 117 -17c21 -5 32 -7 41 -7c20 0 30 6 38 22h21'], + 0xC8: [914,0,611,-1,634,'634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34 c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497zM526 742h-32l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xC9: [914,0,611,-1,634,'634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34 c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497zM322 744l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xCA: [911,0,611,-1,634,'634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34 c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497zM577 742h-36l-82 104l-137 -104h-39l157 169h49'], + 0xCB: [856,0,611,-1,634,'634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34 c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497zM585 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM385 807c0 -27 -22 -49 -49 -49 c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xCC: [914,0,333,-8,398,'384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247zM398 742h-32l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xCD: [914,0,333,-8,414,'384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247zM191 744l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28 l-171 -106h-35'], + 0xCE: [911,0,333,-8,450,'384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247zM450 742h-36l-82 104l-137 -104h-39l157 169h49'], + 0xCF: [856,0,333,-8,457,'384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247zM457 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48 c25 0 48 -24 48 -49zM257 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xD0: [653,0,722,-8,700,'130 653h276c183 0 294 -91 294 -269c0 -118 -63 -228 -160 -301c-74 -56 -175 -83 -303 -83h-245v16c56 10 65 15 81 74l65 236h-90l12 42h90l46 164c7 25 11 48 11 64c0 27 -14 35 -77 41v16zM238 326l-46 -164c-16 -58 -22 -82 -22 -95c0 -26 23 -37 69 -37 c97 0 181 30 240 90c68 68 110 175 110 284c0 144 -73 219 -214 219c-43 0 -56 -7 -62 -29l-63 -226h153l-12 -42h-153'], + 0xD1: [874,15,667,-20,727,'727 653v-16c-63 -14 -65 -16 -102 -145l-146 -507h-18l-230 550l-114 -422c-6 -21 -9 -41 -9 -54c0 -28 18 -39 70 -43v-16h-198v16c56 8 70 24 106 152l117 415c-15 35 -39 54 -86 54v16h160l207 -499l106 388c6 21 8 32 8 44c0 36 -12 46 -69 51v16h198zM609 874h28 c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44'], + 0xD2: [914,18,722,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332 c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371zM587 742h-32l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xD3: [914,18,722,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332 c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371zM383 744l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xD4: [911,18,722,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332 c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371zM638 742h-36l-82 104l-137 -104h-39l157 169h49'], + 0xD5: [874,18,722,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332 c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371zM634 874h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44'], + 0xD6: [856,18,722,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332 c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371zM643 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM443 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xD8: [722,105,722,60,699,'669 722l-64 -96c34 -27 47 -41 63 -69c20 -36 31 -82 31 -126c0 -226 -208 -449 -418 -449c-31 0 -56 6 -94 21l-74 -108h-44l86 127c-66 48 -95 109 -95 200c0 122 65 250 174 343c77 65 160 101 234 101c37 0 67 -6 105 -22l52 78h44zM190 74l356 533 c-25 19 -48 26 -82 26c-73 0 -137 -41 -193 -125c-61 -91 -106 -231 -106 -332c0 -38 7 -68 25 -102zM570 574l-355 -530c23 -21 46 -29 80 -29c73 0 136 40 192 123c61 92 107 236 107 337c0 39 -7 70 -24 99'], + 0xD9: [914,18,722,102,765,'765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226 c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198zM588 742h-32l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xDA: [914,18,722,102,765,'765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226 c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198zM383 744l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xDB: [911,18,722,102,765,'765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226 c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198zM635 742h-36l-82 104l-137 -104h-39l157 169h49'], + 0xDC: [856,18,722,102,765,'765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226 c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198zM645 807c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM445 807c0 -27 -22 -49 -49 -49 c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xDD: [914,0,556,78,633,'633 653v-16c-29 -10 -37 -20 -70 -61l-219 -270l-36 -123c-23 -79 -30 -106 -30 -127c0 -25 14 -34 53 -37l36 -3v-16h-289v16c66 4 89 17 107 81l59 205l-76 267c-15 52 -21 60 -77 68v16h239v-16c-60 -6 -72 -14 -72 -36c0 -15 12 -59 36 -144l31 -110l39 46 c105 124 149 186 149 213c0 17 -11 25 -40 28l-29 3v16h189zM301 744l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xDE: [653,0,611,0,569,'302 518h56c136 0 211 -44 211 -144c0 -60 -30 -122 -82 -158c-42 -30 -110 -46 -192 -46c-42 0 -64 2 -89 10l-17 -60c-10 -35 -12 -45 -12 -57c0 -35 3 -38 66 -47v-16h-243v16c57 8 65 13 82 74l118 425c13 48 17 65 17 80c0 27 -10 35 -67 42v16h235v-16 c-40 -5 -54 -12 -63 -46zM286 459l-71 -248c30 -5 34 -5 52 -5c123 0 199 42 199 168c0 74 -40 114 -134 114c-28 0 -40 -8 -46 -29'], + 0xDF: [679,207,500,-168,493,'23 -4l72 319c58 256 134 364 259 364c83 0 139 -52 139 -131c0 -73 -44 -119 -155 -161l-8 -3v-3c32 -4 48 -9 67 -22c34 -24 57 -70 57 -115c0 -69 -33 -147 -84 -200c-34 -36 -83 -57 -129 -57c-48 0 -80 27 -80 66c0 29 17 47 44 47c23 0 38 -16 38 -40 c0 -9 -2 -17 -8 -27c-2 -4 -4 -9 -4 -11c0 -7 8 -13 18 -13c27 0 51 19 71 54c28 51 47 131 47 199c0 70 -26 105 -81 107c-20 1 -26 5 -26 15s4 13 17 13c80 0 136 74 136 180c0 51 -22 79 -62 79c-59 0 -107 -74 -145 -218l-111 -426c-36 -138 -105 -219 -185 -219 c-47 0 -78 25 -78 62c0 26 15 42 39 42c23 0 40 -15 40 -36c0 -7 -3 -17 -8 -26c-3 -4 -4 -7 -4 -10c0 -5 7 -8 17 -8c50 0 77 44 107 179'], + 0xE0: [664,11,501,17,476,'463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21c-47 -171 -89 -343 -89 -363 c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225zM446 492h-32l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xE1: [664,11,501,17,476,'463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21c-47 -171 -89 -343 -89 -363 c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225zM243 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106 h-35'], + 0xE2: [661,11,501,17,497,'463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21c-47 -171 -89 -343 -89 -363 c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225zM497 492h-36l-82 104l-137 -104h-39l157 169h49'], + 0xE3: [624,11,501,17,521,'463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21c-47 -171 -89 -343 -89 -363 c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225zM493 624h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29 c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44'], + 0xE4: [606,11,501,17,503,'463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21c-47 -171 -89 -343 -89 -363 c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225zM503 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48 c25 0 48 -24 48 -49zM303 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xE5: [709,11,501,17,476,'463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21c-47 -171 -89 -343 -89 -363 c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225zM453 609c0 -54 -45 -99 -100 -99c-57 0 -100 44 -100 100c0 54 45 99 99 99 c56 0 101 -45 101 -100zM419 609c0 37 -30 66 -67 66c-35 0 -65 -30 -65 -65c0 -37 28 -66 65 -66c38 0 67 28 67 65'], + 0xE6: [441,11,667,23,640,'459 439l-22 -62c46 50 81 64 122 64c50 0 81 -27 81 -70c0 -38 -23 -73 -66 -101c-38 -24 -84 -42 -190 -72c-7 -30 -8 -38 -8 -60c0 -74 22 -102 70 -102c43 0 82 21 142 77l10 -12c-56 -68 -135 -112 -198 -112s-104 47 -104 122c0 15 1 23 6 40 c-81 -126 -131 -162 -195 -162c-49 0 -84 33 -84 98c0 164 159 354 280 354c34 0 57 -12 66 -47l19 45h71zM574 380c0 23 -12 36 -35 36s-46 -14 -65 -35c-35 -38 -54 -69 -84 -158c93 27 134 54 166 97c14 19 18 39 18 60zM350 370c0 30 -18 51 -45 51 c-37 1 -75 -31 -113 -86c-49 -71 -83 -162 -83 -236c0 -38 10 -60 34 -60c26 0 57 16 80 41c72 78 127 204 127 290'], + 0xE7: [441,217,444,26,425,'77 -96l56 90c-67 16 -103 66 -103 145c0 156 140 302 290 302c61 0 105 -34 105 -81c0 -27 -20 -46 -48 -46c-24 0 -39 14 -39 38c0 10 2 16 9 29c5 9 6 14 6 19c0 12 -14 20 -37 20c-40 0 -80 -18 -109 -48c-56 -58 -91 -148 -91 -233c0 -72 34 -114 91 -114 c49 0 88 22 143 81l16 -10c-61 -77 -114 -107 -190 -107h-8l-37 -55c10 2 16 3 25 3c50 0 82 -26 82 -68c0 -50 -49 -86 -119 -86c-28 0 -51 5 -93 21l17 29c30 -11 47 -15 68 -15c34 0 53 15 53 41s-19 44 -46 44c-10 0 -18 -2 -32 -7'], + 0xE8: [664,11,444,31,414,'358 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -135 54 -135 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75zM152 252l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97 c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166zM414 492h-32l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xE9: [664,11,444,31,431,'358 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -135 54 -135 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75zM152 252l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97 c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166zM208 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xEA: [661,11,444,31,466,'358 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -135 54 -135 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75zM152 252l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97 c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166zM466 492h-36l-82 104l-137 -104h-39l157 169h49'], + 0xEB: [606,11,444,31,475,'358 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -135 54 -135 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75zM152 252l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97 c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166zM475 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM275 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xEC: [664,11,278,47,302,'221 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v16c39 3 58 6 159 25l5 -3l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 8 -15 16 -15c17 0 38 22 81 79zM302 492h-32l-140 106 c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xED: [664,11,278,47,318,'221 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v16c39 3 58 6 159 25l5 -3l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 8 -15 16 -15c17 0 38 22 81 79zM95 494l162 160c7 7 15 10 25 10 c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xEE: [661,11,278,47,351,'221 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v16c39 3 58 6 159 25l5 -3l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 8 -15 16 -15c17 0 38 22 81 79zM351 492h-36l-82 104l-137 -104h-39 l157 169h49'], + 0xEF: [606,11,278,47,361,'221 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v16c39 3 58 6 159 25l5 -3l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 8 -15 16 -15c17 0 38 22 81 79zM361 557c0 -27 -22 -49 -49 -49 c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM161 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xF1: [624,9,500,14,488,'460 117l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -47 16 -47 54c0 10 2 23 16 75l44 162c8 31 14 67 14 79c0 18 -9 29 -24 29c-40 0 -85 -49 -148 -142c-45 -67 -53 -90 -100 -248h-75l96 350c1 5 2 11 2 17c0 20 -14 26 -65 27v16c81 16 109 20 162 31l4 -2l-67 -218 c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-56 -203c-10 -36 -14 -53 -14 -61c0 -9 4 -18 16 -18c14 0 32 16 61 53c7 8 14 17 21 26zM460 624h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29 c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44'], + 0xF2: [664,11,500,27,468,'468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91 c44 0 82 29 121 83c46 63 74 157 74 233zM418 492h-32l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xF3: [664,11,500,27,468,'468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91 c44 0 82 29 121 83c46 63 74 157 74 233zM215 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xF4: [661,11,500,27,468,'468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91 c44 0 82 29 121 83c46 63 74 157 74 233zM468 492h-36l-82 104l-137 -104h-39l157 169h49'], + 0xF5: [624,11,500,27,494,'468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91 c44 0 82 29 121 83c46 63 74 157 74 233zM466 624h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44'], + 0xF6: [606,11,500,27,474,'468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91 c44 0 82 29 121 83c46 63 74 157 74 233zM474 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM274 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xF8: [554,135,500,28,469,'428 554l-58 -119c42 -12 62 -27 79 -59c12 -21 20 -52 20 -78c0 -80 -49 -174 -124 -238c-55 -47 -111 -71 -169 -71c-8 0 -14 1 -20 2l-61 -126h-35l64 131c-31 10 -44 18 -59 34c-24 25 -37 61 -37 100c0 153 150 311 294 311c7 0 11 0 17 -1l55 114h34zM357 406 l-190 -392c8 -3 13 -4 22 -4c46 0 84 26 122 82c43 65 74 161 74 233c0 35 -9 60 -28 81zM140 29l188 389c-5 1 -7 2 -10 2c-33 0 -68 -17 -95 -46c-65 -70 -111 -182 -111 -277c0 -28 9 -49 28 -68'], + 0xF9: [664,11,500,42,475,'461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355 c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81zM415 492h-32l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0xFA: [664,11,500,42,475,'461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355 c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81zM210 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xFB: [661,11,500,42,475,'461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355 c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81zM465 492h-36l-82 104l-137 -104h-39l157 169h49'], + 0xFC: [606,11,500,42,475,'461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355 c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81zM469 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM269 557 c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xFD: [664,206,444,-24,426,'243 186l21 -110c85 141 122 213 122 257c0 14 -7 20 -26 32c-20 13 -26 23 -26 39c0 22 17 37 40 37c30 0 52 -25 52 -55c0 -57 -48 -167 -131 -305c-104 -172 -211 -287 -268 -287c-30 0 -51 17 -51 43c0 22 17 40 39 40c35 0 35 -28 61 -28c13 0 25 8 48 33 c18 19 63 78 71 91c6 12 10 24 10 35c0 40 -55 264 -82 332c-19 49 -37 64 -77 64c-11 0 -20 -1 -31 -4v17c11 2 22 4 32 6c20 4 53 10 107 18h4c15 0 68 -166 85 -255zM178 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xFE: [683,205,500,-75,469,'189 335l2 -2c46 73 99 108 162 108c73 0 116 -47 116 -126c0 -159 -154 -326 -300 -326c-23 0 -41 4 -66 17c-21 -81 -37 -151 -37 -165c0 -23 17 -31 64 -31v-15h-205v16c43 1 55 14 67 59l114 434l68 250l5 19c6 23 9 34 9 43c0 22 -6 25 -65 27v17 c67 8 103 14 152 23l5 -5c-61 -236 -79 -302 -91 -343zM379 313c0 57 -20 85 -62 85c-54 0 -108 -46 -135 -114c-30 -75 -65 -205 -65 -239c0 -22 20 -37 48 -37c53 0 103 32 145 95c42 61 69 144 69 210'], + 0xFF: [606,206,444,-24,442,'243 186l21 -110c85 141 122 213 122 257c0 14 -7 20 -26 32c-20 13 -26 23 -26 39c0 22 17 37 40 37c30 0 52 -25 52 -55c0 -57 -48 -167 -131 -305c-104 -172 -211 -287 -268 -287c-30 0 -51 17 -51 43c0 22 17 40 39 40c35 0 35 -28 61 -28c13 0 25 8 48 33 c18 19 63 78 71 91c6 12 10 24 10 35c0 40 -55 264 -82 332c-19 49 -37 64 -77 64c-11 0 -20 -1 -31 -4v17c11 2 22 4 32 6c20 4 53 10 107 18h4c15 0 68 -166 85 -255zM442 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM242 557 c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0x100: [757,0,611,-51,564,'536 757l-11 -51h-301l11 51h301zM564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194 '], + 0x101: [543,11,501,17,481,'481 543l-11 -51h-301l11 51h301zM463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21 c-47 -171 -89 -343 -89 -363c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225'], + 0x102: [862,0,611,-51,564,'502 862h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156 l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194'], + 0x103: [650,11,501,17,481,'452 650h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116 c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21c-47 -171 -89 -343 -89 -363c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74 c50 0 97 55 127 98c47 68 77 154 77 225'], + 0x104: [668,169,611,-51,626,'433 0h-114v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16h-87c-7 -18 -10 -36 -10 -53c0 -30 24 -53 59 -53 c32 0 58 10 83 32l17 -18c-35 -52 -76 -77 -125 -77c-52 0 -95 38 -95 95c0 28 8 51 27 74zM369 262l-45 263l-149 -263h194'], + 0x105: [441,169,501,17,529,'512 -74l17 -18c-35 -52 -76 -77 -125 -77c-52 0 -95 38 -95 95c0 24 6 45 20 64c-22 3 -32 15 -32 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21 c-47 -171 -89 -343 -89 -363c0 -7 6 -13 14 -13c9 0 22 8 52 41l27 29l13 -11c-45 -55 -72 -84 -95 -98c-8 -19 -11 -37 -11 -55c0 -30 24 -53 59 -53c32 0 58 10 83 32zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74 c50 0 97 55 127 98c47 68 77 154 77 225'], + 0x106: [876,18,667,66,689,'389 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM689 664l-37 -200l-18 3c-12 107 -61 163 -149 163c-74 0 -144 -38 -199 -97c-72 -77 -108 -191 -108 -301c0 -140 64 -205 175 -205c82 0 142 29 229 119l18 -15 c-90 -106 -170 -149 -273 -149c-153 0 -261 96 -261 261c0 141 77 272 187 350c64 46 140 73 219 73c33 0 75 -2 117 -17c20 -7 32 -7 41 -7c20 0 30 6 38 22h21'], + 0x107: [664,11,444,30,431,'208 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM350 107l16 -10c-61 -77 -114 -108 -189 -108c-93 0 -147 52 -147 154c0 93 52 180 123 237c49 39 106 61 167 61s105 -34 105 -81c0 -27 -22 -48 -48 -48c-28 0 -39 20 -39 40 c0 18 15 29 15 48c0 12 -14 20 -37 20c-40 0 -80 -18 -109 -48c-56 -59 -91 -144 -91 -233c0 -72 32 -114 89 -114c53 0 91 25 145 82'], + 0x108: [875,18,667,66,689,'647 706h-36l-82 104l-137 -104h-39l157 169h49zM689 664l-37 -200l-18 3c-12 107 -61 163 -149 163c-74 0 -144 -38 -199 -97c-72 -77 -108 -191 -108 -301c0 -140 64 -205 175 -205c82 0 142 29 229 119l18 -15c-90 -106 -170 -149 -273 -149c-153 0 -261 96 -261 261 c0 141 77 272 187 350c64 46 140 73 219 73c33 0 75 -2 117 -17c20 -7 32 -7 41 -7c20 0 30 6 38 22h21'], + 0x109: [661,11,444,30,427,'427 492h-36l-82 104l-137 -104h-39l157 169h49zM350 107l16 -10c-61 -77 -114 -108 -189 -108c-93 0 -147 52 -147 154c0 93 52 180 123 237c49 39 106 61 167 61s105 -34 105 -81c0 -27 -22 -48 -48 -48c-28 0 -39 20 -39 40c0 18 15 29 15 48c0 12 -14 20 -37 20 c-40 0 -80 -18 -109 -48c-56 -59 -91 -144 -91 -233c0 -72 32 -114 89 -114c53 0 91 25 145 82'], + 0x10A: [818,18,667,66,689,'549 769c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM689 664l-37 -200l-18 3c-12 107 -61 163 -149 163c-74 0 -144 -38 -199 -97c-72 -77 -108 -191 -108 -301c0 -140 64 -205 175 -205c82 0 142 29 229 119l18 -15 c-90 -106 -170 -149 -273 -149c-153 0 -261 96 -261 261c0 141 77 272 187 350c64 46 140 73 219 73c33 0 75 -2 117 -17c20 -7 32 -7 41 -7c20 0 30 6 38 22h21'], + 0x10B: [606,11,444,30,425,'369 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM350 107l16 -10c-61 -77 -114 -108 -189 -108c-93 0 -147 52 -147 154c0 93 52 180 123 237c49 39 106 61 167 61s105 -34 105 -81c0 -27 -22 -48 -48 -48c-28 0 -39 20 -39 40 c0 18 15 29 15 48c0 12 -14 20 -37 20c-40 0 -80 -18 -109 -48c-56 -59 -91 -144 -91 -233c0 -72 32 -114 89 -114c53 0 91 25 145 82'], + 0x10C: [875,18,667,66,689,'647 875l-162 -169h-48l-95 169h38l89 -105l141 105h37zM689 664l-37 -200l-18 3c-12 107 -61 163 -149 163c-74 0 -144 -38 -199 -97c-72 -77 -108 -191 -108 -301c0 -140 64 -205 175 -205c82 0 142 29 229 119l18 -15c-90 -106 -170 -149 -273 -149 c-153 0 -261 96 -261 261c0 141 77 272 187 350c64 46 140 73 219 73c33 0 75 -2 117 -17c20 -7 32 -7 41 -7c20 0 30 6 38 22h21'], + 0x10D: [661,11,444,30,473,'473 661l-162 -169h-48l-95 169h38l89 -105l141 105h37zM350 107l16 -10c-61 -77 -114 -108 -189 -108c-93 0 -147 52 -147 154c0 93 52 180 123 237c49 39 106 61 167 61s105 -34 105 -81c0 -27 -22 -48 -48 -48c-28 0 -39 20 -39 40c0 18 15 29 15 48 c0 12 -14 20 -37 20c-40 0 -80 -18 -109 -48c-56 -59 -91 -144 -91 -233c0 -72 32 -114 89 -114c53 0 91 25 145 82'], + 0x10E: [875,0,722,-8,700,'603 875l-162 -169h-48l-95 169h38l89 -105l141 105h37zM131 653h277c175 0 292 -94 292 -269c0 -124 -62 -225 -160 -301c-73 -57 -174 -83 -291 -83h-257v16c56 10 66 17 82 76l122 445c7 25 11 44 11 59c0 27 -15 39 -76 41v16zM310 584l-118 -422 c-17 -62 -22 -82 -22 -95c0 -26 22 -37 68 -37c101 0 179 30 241 90c71 69 110 187 110 288c0 80 -29 143 -78 180c-31 23 -73 35 -131 35c-38 0 -60 -4 -70 -39'], + 0x10F: [691,13,609,15,697,'567 461l-9 17c52 35 75 62 75 88c0 11 -5 19 -20 33c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -57 -46 -112 -130 -159zM521 683l6 -6l-39 -152l-60 -219c-31 -114 -65 -230 -65 -246c0 -12 5 -20 18 -20c17 0 28 9 82 71l12 -10 c-49 -73 -97 -114 -147 -114c-26 0 -41 18 -41 45c0 23 2 39 13 89c-59 -99 -110 -132 -178 -132c-65 0 -107 41 -107 117c0 162 162 335 292 335c42 0 59 -19 65 -58h1l45 163c15 53 14 57 14 71c0 21 -9 24 -64 26v17c64 6 100 12 153 23zM356 361c0 36 -24 57 -47 57 c-28 0 -63 -17 -91 -46c-66 -70 -116 -179 -116 -262c0 -46 23 -73 58 -73c92 0 196 172 196 324'], + 0x110: [653,0,722,-8,700,'130 653h276c183 0 294 -91 294 -269c0 -118 -63 -228 -160 -301c-74 -56 -175 -83 -303 -83h-245v16c56 10 65 15 81 74l65 236h-90l12 42h90l46 164c7 25 11 48 11 64c0 27 -14 35 -77 41v16zM238 326l-46 -164c-16 -58 -22 -82 -22 -95c0 -26 23 -37 69 -37 c97 0 181 30 240 90c68 68 110 175 110 284c0 144 -73 219 -214 219c-43 0 -56 -7 -62 -29l-63 -226h153l-12 -42h-153'], + 0x111: [683,13,500,15,580,'580 560l-10 -39h-84l-58 -215c-31 -114 -65 -230 -65 -246c0 -12 5 -20 18 -20c17 0 28 9 82 71l12 -10c-49 -73 -97 -114 -147 -114c-26 0 -41 18 -41 45c0 23 2 39 13 89c-59 -99 -110 -132 -178 -132c-65 0 -107 41 -107 117c0 162 162 335 292 335 c42 0 59 -19 65 -58h1l37 138h-182l7 39h187c10 40 10 44 10 57c0 21 -9 24 -64 26v17c64 6 100 12 153 23l6 -6l-30 -117h83zM356 361c0 36 -24 57 -47 57c-28 0 -63 -17 -91 -46c-66 -70 -116 -179 -116 -262c0 -46 23 -73 58 -73c92 0 196 172 196 324'], + 0x112: [757,0,611,-1,634,'596 757l-11 -51h-301l11 51h301zM634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -38 15 -78 15h-78l-32 -112 c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497'], + 0x113: [542,11,444,31,466,'466 542l-11 -51h-301l11 51h301zM358 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -135 54 -135 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75zM152 252l-17 -44 c86 21 124 39 161 74c31 30 50 66 50 97c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166'], + 0x114: [866,0,611,-1,634,'572 866h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52 c0 17 -2 26 -7 31c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497'], + 0x115: [650,11,444,31,471,'442 650h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM358 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -135 54 -135 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187 c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75zM152 252l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166'], + 0x116: [818,0,611,-1,634,'499 769c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31 c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497'], + 0x117: [606,11,444,31,412,'359 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM358 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -135 54 -135 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187c-10 -20 -10 -46 -10 -61 c0 -55 37 -91 93 -91c44 0 75 16 147 75zM152 252l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166'], + 0x118: [653,175,611,-1,634,'299 0h-300v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31 c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-165c-9 -20 -13 -40 -13 -59c0 -30 24 -53 59 -53c32 0 58 10 83 32l17 -18c-35 -52 -76 -77 -125 -77c-52 0 -95 38 -95 95 c0 30 10 55 32 80'], + 0x119: [441,175,444,31,412,'343 -80l17 -18c-35 -52 -76 -77 -125 -77c-52 0 -95 38 -95 95c0 26 7 48 23 69c-79 1 -132 55 -132 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75l12 -12 c-46 -57 -97 -93 -159 -104c-7 -18 -10 -35 -10 -52c0 -30 24 -53 59 -53c32 0 58 10 83 32zM152 252l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166'], + 0x11A: [875,0,611,-1,634,'603 875l-162 -169h-48l-95 169h38l89 -105l141 105h37zM634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -38 15 -78 15h-78l-32 -112 c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497'], + 0x11B: [661,11,444,31,502,'502 661l-162 -169h-48l-95 169h38l89 -105l141 105h37zM358 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -135 54 -135 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75z M152 252l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166'], + 0x11C: [877,18,722,52,722,'653 708h-36l-82 104l-137 -104h-39l157 169h49zM722 319v-16c-65 -4 -82 -15 -97 -72l-49 -187c-77 -43 -149 -62 -237 -62c-87 0 -162 25 -213 76c-47 48 -74 125 -74 193c0 141 75 268 183 343c65 45 141 72 220 72c41 0 90 -7 134 -24c23 -9 33 -10 44 -10 c26 0 43 10 60 34l15 -5l-49 -197l-18 3c-2 43 -15 79 -37 106c-31 38 -79 59 -141 59c-79 0 -147 -38 -195 -99c-65 -83 -106 -194 -106 -305c0 -131 73 -209 202 -209c45 0 83 12 105 34c12 12 17 24 39 101c20 67 26 91 26 113c0 18 -14 30 -47 33l-32 3v16h267'], + 0x11D: [661,206,500,8,471,'447 492h-36l-82 104l-137 -104h-39l157 169h49zM471 366h-49c9 -18 9 -34 9 -51c0 -84 -92 -164 -185 -164c-11 0 -22 1 -31 3c-3 1 -5 1 -7 1c-17 0 -36 -20 -36 -41c0 -18 27 -31 71 -42c96 -23 142 -67 142 -127c0 -87 -77 -151 -210 -151c-102 0 -167 36 -167 108 c0 51 19 78 117 137c-18 11 -27 26 -27 39c0 29 23 59 77 84c-56 20 -79 56 -79 108c0 102 100 171 201 171c38 0 71 -9 98 -28c8 -6 13 -8 16 -8h60v-39zM352 348c0 53 -19 71 -56 71c-62 0 -122 -73 -122 -172c0 -47 22 -75 60 -75c34 0 61 18 85 59c20 34 33 75 33 117z M325 -90c0 46 -36 74 -143 107c-13 4 -23 7 -34 11c-9 0 -51 -34 -65 -52c-15 -19 -20 -35 -20 -58c0 -70 47 -102 127 -102c81 0 135 43 135 94'], + 0x11E: [866,18,722,52,722,'632 866h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM722 319v-16c-65 -4 -82 -15 -97 -72l-49 -187c-77 -43 -149 -62 -237 -62c-87 0 -162 25 -213 76c-47 48 -74 125 -74 193c0 141 75 268 183 343 c65 45 141 72 220 72c41 0 90 -7 134 -24c23 -9 33 -10 44 -10c26 0 43 10 60 34l15 -5l-49 -197l-18 3c-2 43 -15 79 -37 106c-31 38 -79 59 -141 59c-79 0 -147 -38 -195 -99c-65 -83 -106 -194 -106 -305c0 -131 73 -209 202 -209c45 0 83 12 105 34c12 12 17 24 39 101 c20 67 26 91 26 113c0 18 -14 30 -47 33l-32 3v16h267'], + 0x11F: [650,206,500,8,476,'447 650h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM471 366h-49c9 -18 9 -34 9 -51c0 -84 -92 -164 -185 -164c-11 0 -22 1 -31 3c-3 1 -5 1 -7 1c-17 0 -36 -20 -36 -41c0 -18 27 -31 71 -42 c96 -23 142 -67 142 -127c0 -87 -77 -151 -210 -151c-102 0 -167 36 -167 108c0 51 19 78 117 137c-18 11 -27 26 -27 39c0 29 23 59 77 84c-56 20 -79 56 -79 108c0 102 100 171 201 171c38 0 71 -9 98 -28c8 -6 13 -8 16 -8h60v-39zM352 348c0 53 -19 71 -56 71 c-62 0 -122 -73 -122 -172c0 -47 22 -75 60 -75c34 0 61 18 85 59c20 34 33 75 33 117zM325 -90c0 46 -36 74 -143 107c-13 4 -23 7 -34 11c-9 0 -51 -34 -65 -52c-15 -19 -20 -35 -20 -58c0 -70 47 -102 127 -102c81 0 135 43 135 94'], + 0x120: [818,18,722,52,722,'539 769c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM722 319v-16c-65 -4 -82 -15 -97 -72l-49 -187c-77 -43 -149 -62 -237 -62c-87 0 -162 25 -213 76c-47 48 -74 125 -74 193c0 141 75 268 183 343c65 45 141 72 220 72 c41 0 90 -7 134 -24c23 -9 33 -10 44 -10c26 0 43 10 60 34l15 -5l-49 -197l-18 3c-2 43 -15 79 -37 106c-31 38 -79 59 -141 59c-79 0 -147 -38 -195 -99c-65 -83 -106 -194 -106 -305c0 -131 73 -209 202 -209c45 0 83 12 105 34c12 12 17 24 39 101c20 67 26 91 26 113 c0 18 -14 30 -47 33l-32 3v16h267'], + 0x121: [606,206,500,8,471,'350 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM471 366h-49c9 -18 9 -34 9 -51c0 -84 -92 -164 -185 -164c-11 0 -22 1 -31 3c-3 1 -5 1 -7 1c-17 0 -36 -20 -36 -41c0 -18 27 -31 71 -42c96 -23 142 -67 142 -127 c0 -87 -77 -151 -210 -151c-102 0 -167 36 -167 108c0 51 19 78 117 137c-18 11 -27 26 -27 39c0 29 23 59 77 84c-56 20 -79 56 -79 108c0 102 100 171 201 171c38 0 71 -9 98 -28c8 -6 13 -8 16 -8h60v-39zM352 348c0 53 -19 71 -56 71c-62 0 -122 -73 -122 -172 c0 -47 22 -75 60 -75c34 0 61 18 85 59c20 34 33 75 33 117zM325 -90c0 46 -36 74 -143 107c-13 4 -23 7 -34 11c-9 0 -51 -34 -65 -52c-15 -19 -20 -35 -20 -58c0 -70 47 -102 127 -102c81 0 135 43 135 94'], + 0x122: [666,267,722,52,722,'722 319v-16c-65 -4 -82 -15 -97 -72l-49 -187c-77 -43 -149 -62 -237 -62c-87 0 -162 25 -213 76c-47 48 -74 125 -74 193c0 141 75 268 183 343c65 45 141 72 220 72c41 0 90 -7 134 -24c23 -9 33 -10 44 -10c26 0 43 10 60 34l15 -5l-49 -197l-18 3 c-2 43 -15 79 -37 106c-31 38 -79 59 -141 59c-79 0 -147 -38 -195 -99c-65 -83 -106 -194 -106 -305c0 -131 73 -209 202 -209c45 0 83 12 105 34c12 12 17 24 39 101c20 67 26 91 26 113c0 18 -14 30 -47 33l-32 3v16h267zM259 -267l-9 18c53 35 75 61 75 88 c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -56 -45 -112 -130 -159'], + 0x123: [724,206,500,8,471,'386 724l9 -17c-53 -35 -75 -62 -75 -89c0 -10 5 -18 20 -32c19 -17 25 -28 25 -45c0 -27 -22 -47 -51 -47c-33 0 -58 30 -58 71c0 57 45 112 130 159zM471 366h-49c9 -18 9 -34 9 -51c0 -84 -92 -164 -185 -164c-11 0 -22 1 -31 3c-3 1 -5 1 -7 1c-17 0 -36 -20 -36 -41 c0 -18 27 -31 71 -42c96 -23 142 -67 142 -127c0 -87 -77 -151 -210 -151c-102 0 -167 36 -167 108c0 51 19 78 117 137c-18 11 -27 26 -27 39c0 29 23 59 77 84c-56 20 -79 56 -79 108c0 102 100 171 201 171c38 0 71 -9 98 -28c8 -6 13 -8 16 -8h60v-39zM352 348 c0 53 -19 71 -56 71c-62 0 -122 -73 -122 -172c0 -47 22 -75 60 -75c34 0 61 18 85 59c20 34 33 75 33 117zM325 -90c0 46 -36 74 -143 107c-13 4 -23 7 -34 11c-9 0 -51 -34 -65 -52c-15 -19 -20 -35 -20 -58c0 -70 47 -102 127 -102c81 0 135 43 135 94'], + 0x124: [875,0,722,-8,769,'627 706h-36l-82 104l-137 -104h-39l157 169h49zM769 653v-16c-57 -10 -68 -16 -84 -74l-132 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 79 -42v-16h-274v16c71 5 89 28 102 77l64 233h-285l-66 -244c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-245v16 c56 6 68 21 86 86l118 430c7 27 12 49 12 64c0 29 -14 35 -77 41v16h271v-16c-60 -4 -87 -23 -100 -71l-54 -198h285l46 164c7 26 14 47 14 63c0 24 -16 38 -72 42v16h248'], + 0x125: [875,9,500,19,478,'447 706h-36l-82 104l-137 -104h-39l157 169h49zM465 118l13 -13c-61 -87 -95 -114 -146 -114c-27 0 -44 16 -44 42c0 12 7 43 20 92l55 207c4 16 7 29 7 33c0 15 -5 25 -28 25c-36 0 -100 -61 -152 -140c-40 -61 -56 -96 -96 -250h-75l146 554c8 31 13 48 13 62 c0 17 -23 25 -41 25h-27v15c60 7 99 14 157 27l7 -6l-121 -447c90 146 168 211 230 211c46 0 65 -30 65 -67c0 -25 -18 -99 -48 -193c-17 -52 -33 -114 -33 -125c0 -10 7 -18 16 -18c16 0 28 12 82 80'], + 0x126: [653,0,722,-8,769,'769 653v-16c-57 -10 -68 -16 -84 -74l-12 -43h88l-12 -44h-88l-108 -394c-2 -8 -3 -16 -3 -24c0 -28 14 -35 79 -42v-16h-274v16c71 5 89 28 102 77l64 233h-285l-66 -244c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-245v16c56 6 68 21 86 86l102 374h-103l12 44 h103c11 39 16 61 16 76c0 29 -14 35 -77 41v16h271v-16c-60 -4 -86 -23 -100 -71l-13 -46h286c11 38 18 59 18 75c0 24 -16 38 -72 42v16h248zM563 476h-286l-29 -108h285'], + 0x128: [836,0,333,-8,444,'416 836h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44zM384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76 c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247'], + 0x129: [624,11,278,30,357,'329 624h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44zM221 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57 c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v16c39 3 58 6 159 25l5 -3l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 6 -15 16 -15c17 0 38 22 81 79'], + 0x12A: [757,0,333,-8,439,'439 757l-11 -51h-301l11 51h301zM384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247'], + 0x12B: [543,11,278,29,341,'341 543l-11 -51h-301l11 51h301zM221 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v16c39 3 58 6 159 25l5 -3l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 6 -15 16 -15c17 0 38 22 81 79'], + 0x12C: [866,0,333,-8,448,'419 866h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62 c0 25 -16 40 -72 43v16h247'], + 0x12D: [650,11,278,46,347,'318 650h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM221 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v16c39 3 58 6 159 25l5 -3 l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 6 -15 16 -15c17 0 38 22 81 79'], + 0x12E: [653,169,333,-8,384,'94 0h-102v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-98c-7 -18 -10 -36 -10 -53c0 -30 24 -53 59 -53c32 0 58 10 83 32l17 -18 c-35 -52 -76 -77 -125 -77c-52 0 -95 38 -95 95c0 28 8 51 27 74'], + 0x12F: [654,169,278,49,303,'102 -11h-4c-33 0 -49 18 -49 55c0 20 7 55 22 111l48 177c5 18 9 36 9 44c0 20 -10 23 -64 24v16c39 3 59 6 160 25l4 -3l-94 -343c-5 -17 -10 -30 -10 -44c0 -10 6 -15 14 -15c17 0 41 21 84 78l13 -11c-30 -46 -53 -76 -76 -93c-11 -22 -15 -42 -15 -63 c0 -30 24 -53 59 -53c32 0 58 10 83 32l17 -18c-35 -52 -76 -77 -125 -77c-52 0 -95 38 -95 95c0 24 6 44 19 63zM264 599c0 -28 -23 -51 -49 -51c-29 0 -48 21 -48 53c0 31 20 53 47 53s50 -26 50 -55'], + 0x130: [818,0,333,-8,384,'344 769c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43 v16h247'], + 0x132: [653,18,750,-8,783,'783 653v-16c-57 -8 -65 -14 -82 -74l-103 -367c-21 -76 -45 -125 -71 -159c-29 -38 -73 -55 -124 -55c-70 0 -117 35 -117 88c0 32 18 56 45 56s51 -21 51 -46c0 -12 -3 -18 -3 -27c0 -28 11 -39 35 -39s42 24 53 64l127 454c8 29 12 49 12 64c0 27 -14 35 -77 41v16 h254zM384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247'], + 0x133: [654,207,500,49,500,'500 598c0 -27 -24 -50 -50 -50c-30 0 -54 21 -54 52c0 30 25 52 53 52c27 0 51 -26 51 -54zM264 599c0 -28 -23 -51 -49 -51c-29 0 -48 21 -48 53c0 31 20 53 47 53s50 -26 50 -55zM467 438l-104 -410c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61 c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -12 18 -12c40 0 63 44 97 182l72 292c12 49 16 70 16 80c0 22 -12 31 -48 31h-26v16c32 2 85 10 169 25zM222 114l13 -11c-55 -84 -87 -114 -137 -114c-33 0 -49 18 -49 55c0 20 7 55 22 111l48 177 c5 18 9 36 9 44c0 20 -10 23 -64 24v16c39 3 59 6 160 25l4 -3l-94 -343c-5 -17 -10 -30 -10 -44c0 -10 6 -15 14 -15c17 0 41 21 84 78'], + 0x134: [877,18,444,-6,536,'536 708h-36l-82 104l-137 -104h-39l157 169h49zM491 653v-16c-57 -8 -65 -14 -82 -74l-103 -367c-21 -76 -45 -125 -71 -159c-29 -38 -73 -55 -124 -55c-70 0 -117 35 -117 88c0 32 18 56 45 56s51 -21 51 -46c0 -12 -3 -18 -3 -27c0 -28 11 -39 35 -39s42 24 53 64 l127 454c8 29 12 49 12 64c0 27 -14 35 -77 41v16h254'], + 0x135: [661,207,278,-124,353,'353 492h-36l-82 104l-137 -104h-39l157 169h49zM246 438l-104 -410c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -12 18 -12c40 0 63 44 97 182l72 292c12 49 16 70 16 80c0 22 -12 31 -48 31 h-26v16c32 2 85 10 169 25'], + 0x136: [653,267,667,7,722,'722 653v-16c-25 0 -48 -15 -77 -37l-298 -225l168 -293c31 -54 41 -60 104 -66v-16h-275v16l29 3c31 3 46 15 46 32c0 21 -19 50 -37 82l-123 215l-65 -237c-8 -28 -11 -40 -11 -51c0 -31 16 -39 71 -44v-16h-247v16c60 7 66 18 81 71l124 445c7 25 14 46 14 62 c0 27 -17 40 -79 43v16h270v-16c-52 -4 -84 -18 -99 -74l-53 -194l153 109c89 63 143 113 143 137c0 11 -12 16 -36 19l-24 3v16h221zM211 -267l-9 18c53 35 75 61 75 88c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46c33 0 58 -31 58 -71 c0 -56 -45 -112 -130 -159'], + 0x137: [683,267,444,14,461,'461 428v-16c-47 -3 -78 -23 -225 -154l37 -88c39 -92 62 -129 81 -129c15 0 27 11 45 42c5 8 10 17 15 26l15 -11c-46 -84 -71 -109 -111 -109c-29 0 -49 19 -81 82c-18 35 -44 97 -60 141l-40 -32l-48 -180h-75l141 528c13 48 16 71 18 88c-2 18 -17 24 -51 24h-18v16 c59 7 98 14 157 27l6 -6l-120 -456l43 33c94 72 143 120 143 140c0 11 -12 18 -37 18h-14v16h179zM85 -267l-9 18c53 35 75 61 75 88c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -56 -45 -112 -130 -159'], + 0x138: [459,0,542,5,601,'243 276l42 4c24 2 50 14 69 28c27 19 51 49 75 88c31 50 45 63 100 63c30 0 72 -17 72 -52c0 -26 -26 -41 -49 -41c-44 0 -43 39 -63 39c-17 0 -26 -10 -37 -30c-28 -49 -60 -85 -98 -109c10 -4 15 -6 26 -22c17 -26 37 -118 49 -146c19 -46 67 -73 107 -83l-4 -15h-130 c-23 15 -40 30 -57 72c-15 38 -20 72 -33 116c-8 26 -16 49 -24 54c-20 -1 -38 -2 -54 -2l-43 -162c-3 -10 -4 -20 -4 -27c0 -30 29 -34 64 -35l-5 -16h-241l5 16c31 0 51 3 63 11c12 7 23 24 30 50l80 305c3 11 4 20 4 28c0 33 -24 30 -65 33l4 16h241l-4 -16 c-30 -1 -52 -5 -62 -11c-14 -8 -23 -25 -30 -51'], + 0x139: [876,0,556,-8,559,'260 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM559 180l-58 -180h-509v16c56 6 64 15 82 78l122 438c8 27 11 47 11 62c0 29 -15 39 -77 43v16h273v-16c-60 -4 -85 -20 -101 -77l-120 -429c-6 -23 -10 -40 -10 -54 c0 -31 23 -41 105 -41c100 0 131 5 180 38c32 21 54 54 82 112'], + 0x13A: [876,11,278,41,348,'125 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM279 678l-153 -585c-5 -18 -8 -35 -8 -43c0 -12 7 -18 17 -18c15 0 38 16 67 57l25 35l14 -10c-60 -95 -97 -125 -151 -125c-32 0 -49 19 -49 56c0 8 1 20 4 30l137 524 c3 10 3 16 3 19c0 12 -17 22 -49 22h-18v16c59 7 96 14 155 27'], + 0x13B: [653,267,556,-8,559,'559 180l-58 -180h-509v16c56 6 64 15 82 78l122 438c8 27 11 47 11 62c0 29 -15 39 -77 43v16h273v-16c-60 -4 -85 -20 -101 -77l-120 -429c-6 -23 -10 -40 -10 -54c0 -31 23 -41 105 -41c100 0 131 5 180 38c32 21 54 54 82 112zM160 -267l-9 18c53 35 75 61 75 88 c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -56 -45 -112 -130 -159'], + 0x13C: [683,267,278,7,279,'279 678l-153 -585c-5 -18 -8 -35 -8 -43c0 -12 7 -18 17 -18c15 0 38 16 67 57l25 35l14 -10c-60 -95 -97 -125 -151 -125c-32 0 -49 19 -49 56c0 8 1 20 4 30l137 524c3 10 3 16 3 19c0 12 -17 22 -49 22h-18v16c59 7 96 14 155 27zM16 -267l-9 18c53 35 75 61 75 88 c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -56 -45 -112 -130 -159'], + 0x13D: [666,0,556,-8,595,'465 436l-9 17c52 35 75 62 75 88c0 11 -5 19 -20 33c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -57 -46 -112 -130 -159zM559 180l-58 -180h-509v16c56 6 64 15 82 78l122 438c8 27 11 47 11 62c0 29 -15 39 -77 43v16h273v-16 c-60 -4 -85 -20 -101 -77l-120 -429c-6 -23 -10 -40 -10 -54c0 -31 23 -41 105 -41c100 0 131 5 180 38c32 21 54 54 82 112'], + 0x13E: [693,11,278,41,448,'318 463l-9 17c52 35 75 62 75 88c0 11 -5 19 -20 33c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -57 -46 -112 -130 -159zM279 678l-153 -585c-5 -18 -8 -35 -8 -43c0 -12 7 -18 17 -18c15 0 38 16 67 57l25 35l14 -10c-60 -95 -97 -125 -151 -125 c-32 0 -49 19 -49 56c0 8 1 20 4 30l137 524c3 10 3 16 3 19c0 12 -17 22 -49 22h-18v16c59 7 96 14 155 27'], + 0x13F: [653,0,556,-8,559,'459 337c0 -30 -26 -54 -57 -54c-29 0 -54 25 -54 54c0 32 25 57 55 57s56 -26 56 -57zM559 180l-58 -180h-509v16c56 6 64 15 82 78l122 438c8 27 11 47 11 62c0 29 -15 39 -77 43v16h273v-16c-60 -4 -85 -20 -101 -77l-120 -429c-6 -23 -10 -40 -10 -54 c0 -31 23 -41 105 -41c100 0 131 5 180 38c32 21 54 54 82 112'], + 0x140: [683,11,323,41,386,'386 337c0 -30 -26 -54 -57 -54c-29 0 -54 25 -54 54c0 32 25 57 55 57s56 -26 56 -57zM279 678l-153 -585c-5 -18 -8 -35 -8 -43c0 -12 7 -18 17 -18c15 0 38 16 67 57l25 35l14 -10c-60 -95 -97 -125 -151 -125c-32 0 -49 19 -49 56c0 8 1 20 4 30l137 524 c3 10 3 16 3 19c0 12 -17 22 -49 22h-18v16c59 7 96 14 155 27'], + 0x141: [653,0,556,-8,559,'559 180l-59 -180h-508v16c56 7 67 20 83 77l52 191l-99 -59l13 48l99 59l56 200c8 27 11 47 11 62c0 29 -15 37 -78 43v16h273v-16c-61 0 -85 -23 -98 -68l-51 -181l143 85l-14 -49l-142 -83l-54 -195c-12 -42 -17 -67 -17 -74c0 -26 29 -36 98 -36c103 0 140 5 188 36 c33 21 55 54 84 114'], + 0x142: [683,11,278,37,307,'307 460l-12 -46l-98 -50l-72 -275c-4 -14 -7 -30 -7 -38c0 -13 5 -19 15 -19c18 0 38 16 69 57l26 34l13 -9c-65 -97 -99 -125 -151 -125c-33 0 -49 19 -49 56c0 12 7 42 16 75l52 194l-72 -36l12 46l72 36c48 179 65 247 65 256c0 15 -18 24 -49 24h-20v16 c59 7 97 14 156 27l6 -6l-70 -267'], + 0x143: [876,15,667,-20,727,'361 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM727 653v-16c-63 -14 -65 -16 -102 -145l-146 -507h-18l-230 550l-114 -422c-6 -21 -9 -41 -9 -54c0 -28 18 -39 70 -43v-16h-198v16c56 8 70 24 106 152l117 415 c-15 35 -39 54 -86 54v16h160l207 -499l106 388c6 21 8 32 8 44c0 36 -12 46 -69 51v16h198'], + 0x144: [664,9,500,14,474,'180 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM460 117l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -47 16 -47 54c0 10 2 23 16 75l44 162c8 31 14 67 14 79c0 18 -9 29 -24 29c-40 0 -85 -49 -148 -142 c-45 -67 -53 -90 -100 -248h-75l96 350c1 5 2 11 2 17c0 20 -14 26 -65 27v16c81 16 109 20 162 31l4 -2l-67 -218c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-56 -203c-10 -36 -14 -53 -14 -61c0 -9 4 -18 16 -18c14 0 32 16 61 53 c7 8 14 17 21 26'], + 0x145: [653,267,667,-20,727,'727 653v-16c-63 -14 -65 -16 -102 -145l-146 -507h-18l-230 550l-114 -422c-6 -21 -9 -41 -9 -54c0 -28 18 -39 70 -43v-16h-198v16c56 8 70 24 106 152l117 415c-15 35 -39 54 -86 54v16h160l207 -499l106 388c6 21 8 32 8 44c0 36 -12 46 -69 51v16h198zM182 -267 l-9 18c53 35 75 61 75 88c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -56 -45 -112 -130 -159'], + 0x146: [441,267,500,14,474,'460 117l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -47 16 -47 54c0 10 2 23 16 75l44 162c8 31 14 67 14 79c0 18 -9 29 -24 29c-40 0 -85 -49 -148 -142c-45 -67 -53 -90 -100 -248h-75l96 350c1 5 2 11 2 17c0 20 -14 26 -65 27v16c81 16 109 20 162 31l4 -2l-67 -218 c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-56 -203c-10 -36 -14 -53 -14 -61c0 -9 4 -18 16 -18c14 0 32 16 61 53c7 8 14 17 21 26zM107 -267l-9 18c53 35 75 61 75 88c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46 c33 0 58 -31 58 -71c0 -56 -45 -112 -130 -159'], + 0x147: [875,15,667,-20,727,'635 875l-162 -169h-48l-95 169h38l89 -105l141 105h37zM727 653v-16c-63 -14 -65 -16 -102 -145l-146 -507h-18l-230 550l-114 -422c-6 -21 -9 -41 -9 -54c0 -28 18 -39 70 -43v-16h-198v16c56 8 70 24 106 152l117 415c-15 35 -39 54 -86 54v16h160l207 -499l106 388 c6 21 8 32 8 44c0 36 -12 46 -69 51v16h198'], + 0x148: [661,9,500,14,475,'475 661l-162 -169h-48l-95 169h38l89 -105l141 105h37zM460 117l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -47 16 -47 54c0 10 2 23 16 75l44 162c8 31 14 67 14 79c0 18 -9 29 -24 29c-40 0 -85 -49 -148 -142c-45 -67 -53 -90 -100 -248h-75l96 350c1 5 2 11 2 17 c0 20 -14 26 -65 27v16c81 16 109 20 162 31l4 -2l-67 -218c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-56 -203c-10 -36 -14 -53 -14 -61c0 -9 4 -18 16 -18c14 0 32 16 61 53c7 8 14 17 21 26'], + 0x149: [691,9,577,58,540,'67 461l-9 17c52 35 75 62 75 88c0 11 -5 19 -20 33c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -57 -46 -112 -130 -159zM526 117l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -47 16 -47 54c0 10 2 23 16 75l44 162c8 31 14 67 14 79 c0 18 -9 29 -24 29c-40 0 -85 -49 -148 -142c-45 -67 -53 -90 -100 -248h-75l96 350c1 5 2 11 2 17c0 20 -14 26 -65 27v16c81 16 109 20 162 31l4 -2l-67 -218c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-56 -203c-10 -36 -14 -53 -14 -61 c0 -9 4 -18 16 -18c14 0 32 16 61 53c7 8 14 17 21 26'], + 0x14A: [666,18,722,-8,700,'329 653l-34 -120c83 104 156 133 232 133c116 0 173 -97 173 -219c0 -179 -91 -465 -349 -465c-54 0 -87 32 -87 74c0 48 34 85 79 85c31 0 53 -31 53 -57c0 -16 -14 -37 -14 -47c0 -12 4 -18 12 -18c38 0 195 51 195 388c0 148 -36 213 -102 213 c-62 0 -131 -48 -219 -187l-90 -322c-6 -20 -11 -42 -11 -54c0 -23 12 -41 55 -41h14v-16h-244v16c56 10 66 17 82 76l123 446c8 30 10 51 10 59c0 25 -14 40 -70 40h-6v16h198'], + 0x14B: [441,208,500,14,442,'213 439l-67 -218c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-77 -292c-43 -163 -100 -236 -187 -236c-46 0 -79 26 -79 62c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -13 18 -13c40 0 63 46 97 183l72 293 c4 16 17 57 17 71c0 22 -9 29 -24 29c-40 0 -85 -49 -148 -142c-45 -67 -54 -91 -100 -248h-75l96 350c2 5 2 11 2 17c0 20 -14 26 -65 27v16c81 16 109 20 162 31'], + 0x14C: [757,18,722,60,699,'666 757l-11 -51h-301l11 51h301zM699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117 c-73 -99 -114 -232 -114 -332c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x14D: [543,11,500,27,511,'511 543l-11 -51h-301l11 51h301zM468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91 c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x14E: [866,18,722,60,709,'680 866h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97 c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x14F: [650,11,500,27,533,'504 650h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140z M384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x150: [876,18,722,60,720,'497 706l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-171 -104h-35zM327 706l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-169 -104h-37zM699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71 c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x151: [664,11,500,27,541,'318 494l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-171 -104h-35zM148 494l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-169 -104h-37zM468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83 c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x152: [666,8,944,49,964,'964 653l-31 -150h-16c0 52 -2 68 -12 85c-12 21 -47 32 -108 32h-96c-21 0 -30 -8 -37 -32l-64 -227c153 0 170 5 210 95l18 -4l-66 -230l-20 2c3 21 4 25 6 42c-1 47 -21 55 -95 59l-62 3l-56 -204c-8 -31 -11 -46 -11 -55c0 -27 18 -36 75 -36c145 0 204 29 284 139 l16 -6l-65 -166h-346c-37 0 -41 -5 -131 -5c-34 0 -61 -3 -81 -3c-130 0 -227 99 -227 233c0 233 186 441 394 441c22 0 67 -4 98 -8c22 -3 40 -5 54 -5h369zM458 199l73 268c20 73 21 73 21 88c0 45 -44 79 -104 79c-49 0 -95 -18 -136 -54c-90 -78 -155 -236 -155 -378 c0 -118 48 -178 144 -178c42 0 79 14 99 39c24 29 37 60 58 136'], + 0x153: [441,12,667,20,646,'593 105l11 -11c-75 -74 -134 -106 -197 -106c-45 0 -80 22 -104 68c-51 -50 -86 -67 -138 -67c-84 0 -145 61 -145 146c0 144 145 306 274 306c53 0 95 -30 112 -80c69 62 104 80 159 80c51 0 81 -25 81 -68c0 -38 -26 -79 -70 -109c-40 -28 -114 -57 -157 -61 c-25 -2 -32 -6 -36 -19c-5 -17 -10 -49 -10 -70c0 -50 31 -84 75 -84c38 0 67 15 145 75zM580 378c0 23 -13 38 -34 38c-22 0 -47 -14 -70 -39c-39 -42 -58 -78 -84 -162c87 27 104 35 135 62c33 30 53 67 53 101zM343 352c0 40 -23 66 -59 66c-26 0 -51 -12 -73 -35 c-64 -69 -108 -185 -108 -283c0 -57 26 -91 67 -91c34 0 62 19 89 60c39 58 84 210 84 283'], + 0x154: [876,0,611,-13,588,'289 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM132 653h252c132 0 204 -56 204 -141c0 -48 -25 -97 -66 -128c-31 -24 -64 -36 -131 -51l89 -235c22 -59 42 -82 87 -82v-16h-147l-123 324l-66 5l-55 -203 c-11 -39 -13 -53 -13 -63c0 -30 10 -41 67 -47v-16h-243v16c55 7 69 26 85 85l119 431c7 27 12 46 12 63c0 11 -7 23 -14 28c-11 7 -15 8 -57 14v16zM306 593l-63 -227c25 -4 33 -5 51 -5c119 0 189 57 189 150c0 69 -42 112 -120 112c-31 0 -52 -11 -57 -30'], + 0x155: [664,0,389,45,412,'180 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM176 223l16 35c19 42 53 95 94 138c26 27 56 45 79 45c28 0 47 -21 47 -51s-17 -54 -47 -54c-18 0 -26 11 -35 26c-6 10 -9 14 -16 14c-18 0 -46 -33 -82 -94 c-43 -74 -61 -114 -111 -282h-76l81 292c14 52 16 61 16 82s-18 26 -38 26c-8 0 -16 -1 -31 -3v17l155 27l3 -2'], + 0x156: [653,267,611,-13,588,'132 653h252c132 0 204 -56 204 -141c0 -48 -25 -97 -66 -128c-31 -24 -64 -36 -131 -51l89 -235c22 -59 42 -82 87 -82v-16h-147l-123 324l-66 5l-55 -203c-11 -39 -13 -53 -13 -63c0 -30 10 -41 67 -47v-16h-243v16c55 7 69 26 85 85l119 431c7 27 12 46 12 63 c0 11 -7 23 -14 28c-11 7 -15 8 -57 14v16zM306 593l-63 -227c25 -4 33 -5 51 -5c119 0 189 57 189 150c0 69 -42 112 -120 112c-31 0 -52 -11 -57 -30zM177 -267l-9 18c53 35 75 61 75 88c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46c33 0 58 -31 58 -71 c0 -56 -45 -112 -130 -159'], + 0x157: [441,267,389,-2,412,'176 223l16 35c19 42 53 95 94 138c26 27 56 45 79 45c28 0 47 -21 47 -51s-17 -54 -47 -54c-18 0 -26 11 -35 26c-6 10 -9 14 -16 14c-18 0 -46 -33 -82 -94c-43 -74 -61 -114 -111 -282h-76l81 292c14 52 16 61 16 82s-18 26 -38 26c-8 0 -16 -1 -31 -3v17l155 27l3 -2 zM7 -267l-9 18c53 35 75 61 75 88c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -56 -45 -112 -130 -159'], + 0x158: [875,0,611,-13,588,'574 875l-162 -169h-48l-95 169h38l89 -105l141 105h37zM132 653h252c132 0 204 -56 204 -141c0 -48 -25 -97 -66 -128c-31 -24 -64 -36 -131 -51l89 -235c22 -59 42 -82 87 -82v-16h-147l-123 324l-66 5l-55 -203c-11 -39 -13 -53 -13 -63c0 -30 10 -41 67 -47v-16h-243 v16c55 7 69 26 85 85l119 431c7 27 12 46 12 63c0 11 -7 23 -14 28c-11 7 -15 8 -57 14v16zM306 593l-63 -227c25 -4 33 -5 51 -5c119 0 189 57 189 150c0 69 -42 112 -120 112c-31 0 -52 -11 -57 -30'], + 0x159: [663,0,389,45,426,'426 663l-162 -169h-48l-95 169h38l89 -105l141 105h37zM176 223l16 35c19 42 53 95 94 138c26 27 56 45 79 45c28 0 47 -21 47 -51s-17 -54 -47 -54c-18 0 -26 11 -35 26c-6 10 -9 14 -16 14c-18 0 -46 -33 -82 -94c-43 -74 -61 -114 -111 -282h-76l81 292 c14 52 16 61 16 82s-18 26 -38 26c-8 0 -16 -1 -31 -3v17l155 27l3 -2'], + 0x15A: [876,18,500,17,508,'236 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM508 667l-40 -200l-18 3c0 102 -22 163 -119 163c-69 0 -112 -37 -112 -100c0 -49 8 -65 99 -156c91 -92 113 -135 113 -200c0 -114 -87 -195 -202 -195c-31 0 -58 7 -104 23 c-27 10 -36 12 -47 12c-20 0 -36 -9 -43 -32h-18l34 224l20 -2c-2 -9 -2 -16 -2 -23c0 -98 60 -167 144 -167c77 0 131 52 131 128c0 43 -14 73 -60 123l-39 42c-14 15 -26 29 -39 42c-60 64 -75 96 -75 150c0 105 82 164 178 164c31 0 64 -5 85 -14c21 -8 33 -11 46 -11 c22 0 31 5 45 26h23'], + 0x15B: [664,13,389,16,403,'180 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM366 442l-20 -140h-16c-10 83 -40 116 -89 116c-35 0 -59 -20 -59 -57c0 -27 15 -56 54 -102c50 -58 68 -97 68 -136c0 -83 -61 -134 -144 -134c-17 0 -32 1 -55 10 c-19 8 -33 9 -44 9s-22 -5 -29 -21h-16l20 159h16c14 -95 48 -136 100 -136c47 0 76 28 76 77c0 32 -17 66 -56 115c-43 54 -63 99 -63 131c0 66 47 108 121 108c17 0 31 -3 56 -10c19 -6 28 -7 36 -7c15 0 22 4 30 18h14'], + 0x15C: [877,18,500,17,508,'484 708h-36l-82 104l-137 -104h-39l157 169h49zM508 667l-40 -200l-18 3c0 102 -22 163 -119 163c-69 0 -112 -37 -112 -100c0 -49 8 -65 99 -156c91 -92 113 -135 113 -200c0 -114 -87 -195 -202 -195c-31 0 -58 7 -104 23c-27 10 -36 12 -47 12c-20 0 -36 -9 -43 -32 h-18l34 224l20 -2c-2 -9 -2 -16 -2 -23c0 -98 60 -167 144 -167c77 0 131 52 131 128c0 43 -14 73 -60 123l-39 42c-14 15 -26 29 -39 42c-60 64 -75 96 -75 150c0 105 82 164 178 164c31 0 64 -5 85 -14c21 -8 33 -11 46 -11c22 0 31 5 45 26h23'], + 0x15D: [661,13,389,16,385,'385 492h-36l-82 104l-137 -104h-39l157 169h49zM366 442l-20 -140h-16c-10 83 -40 116 -89 116c-35 0 -59 -20 -59 -57c0 -27 15 -56 54 -102c50 -58 68 -97 68 -136c0 -83 -61 -134 -144 -134c-17 0 -32 1 -55 10c-19 8 -33 9 -44 9s-22 -5 -29 -21h-16l20 159h16 c14 -95 48 -136 100 -136c47 0 76 28 76 77c0 32 -17 66 -56 115c-43 54 -63 99 -63 131c0 66 47 108 121 108c17 0 31 -3 56 -10c19 -6 28 -7 36 -7c15 0 22 4 30 18h14'], + 0x15E: [667,217,500,17,508,'157 -96l50 79c-23 3 -47 10 -82 22c-27 10 -36 12 -47 12c-20 0 -36 -9 -43 -32h-18l34 224l20 -2c-2 -9 -2 -16 -2 -23c0 -98 60 -167 144 -167c77 0 131 52 131 128c0 43 -14 73 -60 123l-39 42c-14 15 -26 29 -39 42c-60 64 -75 96 -75 150c0 105 82 164 178 164 c31 0 64 -5 85 -14c21 -8 33 -11 46 -11c22 0 31 5 45 26h23l-40 -200l-18 3c0 102 -22 163 -119 163c-69 0 -112 -37 -112 -100c0 -49 8 -65 99 -156c91 -92 113 -135 113 -200c0 -109 -80 -188 -188 -194l-32 -49c10 2 16 3 25 3c50 0 82 -26 82 -68 c0 -50 -49 -86 -119 -86c-28 0 -51 5 -93 21l17 29c30 -11 47 -15 68 -15c34 0 53 15 53 41s-19 44 -46 44c-10 0 -18 -2 -32 -7'], + 0x15F: [442,217,389,16,366,'80 -96l54 87c-8 1 -18 4 -29 8c-19 8 -33 9 -44 9s-22 -5 -29 -21h-16l20 159h16c14 -95 48 -136 100 -136c47 0 76 28 76 77c0 32 -17 66 -56 115c-43 54 -63 99 -63 131c0 66 47 108 121 108c17 0 31 -3 56 -10c19 -6 28 -7 36 -7c15 0 22 4 30 18h14l-20 -140h-16 c-10 83 -40 116 -89 116c-35 0 -59 -20 -59 -57c0 -27 15 -56 54 -102c50 -58 68 -97 68 -136c0 -79 -56 -129 -133 -134l-37 -55c10 2 16 3 25 3c50 0 82 -26 82 -68c0 -50 -49 -86 -119 -86c-28 0 -51 5 -93 21l17 29c30 -11 47 -15 68 -15c34 0 53 15 53 41 s-19 44 -46 44c-10 0 -18 -2 -32 -7'], + 0x160: [875,18,500,17,532,'532 875l-162 -169h-48l-95 169h38l89 -105l141 105h37zM508 667l-40 -200l-18 3c0 102 -22 163 -119 163c-69 0 -112 -37 -112 -100c0 -49 8 -65 99 -156c91 -92 113 -135 113 -200c0 -114 -87 -195 -202 -195c-31 0 -58 7 -104 23c-27 10 -36 12 -47 12 c-20 0 -36 -9 -43 -32h-18l34 224l20 -2c-2 -9 -2 -16 -2 -23c0 -98 60 -167 144 -167c77 0 131 52 131 128c0 43 -14 73 -60 123l-39 42c-14 15 -26 29 -39 42c-60 64 -75 96 -75 150c0 105 82 164 178 164c31 0 64 -5 85 -14c21 -8 33 -11 46 -11c22 0 31 5 45 26h23'], + 0x161: [663,13,389,16,426,'426 663l-162 -169h-48l-95 169h38l89 -105l141 105h37zM366 442l-20 -140h-16c-10 83 -40 116 -89 116c-35 0 -59 -20 -59 -57c0 -27 15 -56 54 -102c50 -58 68 -97 68 -136c0 -83 -61 -134 -144 -134c-17 0 -32 1 -55 10c-19 8 -33 9 -44 9s-22 -5 -29 -21h-16l20 159 h16c14 -95 48 -136 100 -136c47 0 76 28 76 77c0 32 -17 66 -56 115c-43 54 -63 99 -63 131c0 66 47 108 121 108c17 0 31 -3 56 -10c19 -6 28 -7 36 -7c15 0 22 4 30 18h14'], + 0x162: [653,217,556,59,633,'179 0h-114v16c69 6 92 21 107 75l143 527c-158 0 -190 -16 -238 -124l-18 4l42 155h532l-44 -164l-17 2c2 17 3 33 3 46c0 53 -36 81 -101 81h-58l-137 -490c-6 -21 -14 -44 -14 -66c0 -31 12 -39 53 -43l35 -3v-16h-136l-44 -66c10 2 16 3 25 3c50 0 82 -26 82 -68 c0 -50 -49 -86 -119 -86c-28 0 -51 5 -93 21l17 29c30 -11 47 -15 68 -15c34 0 53 15 53 41s-19 44 -46 44c-10 0 -18 -2 -32 -7l-9 8'], + 0x163: [546,217,278,-38,296,'296 428l-5 -32h-84l-87 -328c-1 -4 -2 -11 -2 -14c0 -13 6 -16 15 -16c16 0 32 16 81 79l13 -7c-60 -92 -91 -121 -143 -121c-27 0 -46 12 -46 37c0 11 8 42 16 74l78 296h-75c-1 3 -1 6 -1 6c0 11 9 20 33 25c32 7 97 56 133 110c4 6 10 9 14 9c6 0 9 -3 9 -8 c0 0 0 -5 -1 -7l-28 -103h80zM111 0l-44 -66c10 2 16 3 25 3c50 0 82 -26 82 -68c0 -50 -49 -86 -119 -86c-28 0 -51 5 -93 21l17 29c30 -11 47 -15 68 -15c34 0 53 15 53 41s-19 44 -46 44c-10 0 -18 -2 -32 -7l-9 8l60 96h38'], + 0x164: [875,0,556,59,633,'565 875l-162 -169h-48l-95 169h38l89 -105l141 105h37zM633 653l-44 -164l-17 2c2 17 3 33 3 46c0 53 -36 81 -101 81h-58l-137 -490c-6 -21 -14 -44 -14 -66c0 -31 12 -39 53 -43l35 -3v-16h-288v16c69 6 92 21 107 75l143 527c-158 0 -190 -16 -238 -124l-18 4l42 155 h532'], + 0x165: [693,11,278,38,453,'323 463l-9 17c52 35 75 62 75 88c0 11 -5 19 -20 33c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -57 -46 -112 -130 -159zM296 428l-5 -32h-84l-87 -328c-1 -4 -2 -11 -2 -14c0 -13 6 -16 15 -16c16 0 32 16 81 79l13 -7c-60 -92 -91 -121 -143 -121 c-27 0 -46 12 -46 37c0 11 8 42 16 74l78 296h-75c-1 3 -1 6 -1 6c0 11 9 20 33 25c32 7 97 56 133 110c4 6 10 9 14 9c6 0 9 -3 9 -8c0 0 0 -5 -1 -7l-28 -103h80'], + 0x166: [653,0,556,59,633,'633 653l-44 -164l-17 2c2 17 3 33 3 46c0 53 -36 81 -101 81h-58l-76 -271h130l-12 -44h-130l-49 -175c-6 -21 -14 -44 -14 -66c0 -31 12 -39 53 -43l35 -3v-16h-288v16c69 6 92 21 107 75l57 212h-115l12 44h115l74 271c-158 0 -190 -16 -238 -124l-18 4l42 155h532'], + 0x167: [546,11,278,28,296,'296 428l-5 -32h-84l-36 -134h98l-12 -44h-97l-40 -150c-1 -4 -2 -11 -2 -14c0 -13 6 -16 15 -16c16 0 32 16 81 79l13 -7c-60 -92 -91 -121 -143 -121c-27 0 -46 12 -46 37c0 11 8 42 16 74l31 118h-57l12 44h56l36 134h-75c-1 3 -1 6 -1 6c0 11 9 20 33 25 c32 7 97 56 133 110c4 6 10 9 14 9c6 0 9 -3 9 -8c0 0 0 -5 -1 -7l-28 -103h80'], + 0x168: [836,18,722,102,765,'625 836h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44zM765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285 c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232 l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198'], + 0x169: [624,11,500,42,475,'444 624h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44zM461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48 c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147 c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x16A: [757,18,722,102,765,'651 757l-11 -51h-301l11 51h301zM765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91 l-63 -226c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198'], + 0x16B: [543,11,500,42,475,'456 543l-11 -51h-301l11 51h301zM461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14 c57 7 93 14 150 27l4 -3l-89 -355c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x16C: [866,18,722,102,765,'641 866h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216 l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198'], + 0x16D: [650,11,500,42,480,'451 650h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99zM461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128 l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x16E: [907,18,722,102,765,'590 807c0 -54 -45 -99 -100 -99c-57 0 -100 44 -100 100c0 54 45 99 99 99c56 0 101 -45 101 -100zM556 807c0 37 -30 66 -67 66c-35 0 -65 -30 -65 -65c0 -37 28 -66 65 -66c38 0 67 28 67 65zM765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285 c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232 l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198'], + 0x16F: [691,11,500,42,475,'410 591c0 -54 -45 -99 -100 -99c-57 0 -100 44 -100 100c0 54 45 99 99 99c56 0 101 -45 101 -100zM376 591c0 37 -30 66 -67 66c-35 0 -65 -30 -65 -65c0 -37 28 -66 65 -66c38 0 67 28 67 65zM461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48 c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147 c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x170: [876,18,722,102,765,'461 706l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-171 -104h-35zM291 706l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-169 -104h-37zM765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285c-22 -75 -54 -133 -97 -169 c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103 c0 30 -17 41 -70 46v16h198'], + 0x171: [664,11,500,42,511,'288 494l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-171 -104h-35zM118 494l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-169 -104h-37zM461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48 c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147 c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x172: [653,169,722,102,765,'548 -74l17 -18c-35 -52 -76 -77 -125 -77c-52 0 -95 38 -95 95c0 21 5 40 15 58c-12 -1 -24 -2 -37 -2c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226c-27 -95 -40 -157 -40 -179 c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198v-16c-62 -14 -66 -19 -104 -149l-83 -285c-22 -75 -54 -133 -97 -169c-20 -17 -42 -30 -66 -38c-6 -17 -9 -33 -9 -49c0 -30 24 -53 59 -53c32 0 58 10 83 32'], + 0x173: [441,169,500,42,538,'338 -9h-1c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25 c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81l14 -9c-36 -55 -60 -85 -82 -102c-10 -21 -14 -41 -14 -61c0 -30 24 -53 59 -53c32 0 58 10 83 32l17 -18c-35 -52 -76 -77 -125 -77 c-52 0 -95 38 -95 95c0 24 6 45 20 65'], + 0x174: [877,18,833,71,906,'643 708h-36l-82 104l-137 -104h-39l157 169h49zM906 653v-16c-38 -12 -48 -20 -77 -75l-301 -580h-20l-50 453h-5l-222 -453h-19l-61 514c-11 94 -15 111 -29 126c-9 9 -19 11 -51 15v16h235v-16c-51 -5 -72 -13 -72 -51c0 -5 0 -13 1 -20l44 -404l172 348l-8 65 c-6 51 -17 60 -75 62v16h236v-16c-51 -5 -68 -16 -68 -48c0 -6 2 -12 2 -15l40 -412l188 365c13 25 23 49 23 68c0 25 -17 41 -67 42v16h184'], + 0x175: [661,18,667,15,648,'537 492h-36l-82 104l-137 -104h-39l157 169h49zM403 426l32 -352c131 164 165 217 165 260c0 12 -6 20 -22 35s-21 27 -21 41c0 16 17 31 39 31c30 0 52 -24 52 -56c0 -64 -74 -181 -212 -349l-9 -11c-27 -33 -36 -43 -45 -43c-7 0 -9 9 -11 35l-29 310l-89 -152 c-18 -30 -36 -63 -55 -99c-36 -69 -53 -94 -64 -94c-9 0 -11 8 -13 47l-4 91c-4 87 -15 194 -27 242c-9 37 -18 42 -47 42h-28v13c31 5 65 9 95 17c13 3 22 7 29 7c11 0 12 -2 19 -34c14 -68 28 -193 32 -281l192 304c5 8 8 10 13 10c6 0 8 -3 8 -14'], + 0x176: [877,0,556,78,633,'537 708h-36l-82 104l-137 -104h-39l157 169h49zM633 653v-16c-29 -10 -37 -20 -70 -61l-219 -270l-36 -123c-23 -79 -30 -106 -30 -127c0 -25 14 -34 53 -37l36 -3v-16h-289v16c66 4 89 17 107 81l59 205l-76 267c-15 52 -21 60 -77 68v16h239v-16 c-60 -6 -72 -14 -72 -36c0 -15 12 -59 36 -144l31 -110l39 46c105 124 149 186 149 213c0 17 -11 25 -40 28l-29 3v16h189'], + 0x177: [661,206,444,-24,426,'398 492h-36l-82 104l-137 -104h-39l157 169h49zM243 186l21 -110c85 141 122 213 122 257c0 14 -7 20 -26 32c-20 13 -26 23 -26 39c0 22 17 37 40 37c30 0 52 -25 52 -55c0 -57 -48 -167 -131 -305c-104 -172 -211 -287 -268 -287c-30 0 -51 17 -51 43 c0 22 17 40 39 40c35 0 35 -28 61 -28c13 0 25 8 48 33c18 19 63 78 71 91c6 12 10 24 10 35c0 40 -55 264 -82 332c-19 49 -37 64 -77 64c-11 0 -20 -1 -31 -4v17c11 2 22 4 32 6c20 4 53 10 107 18h4c15 0 68 -166 85 -255'], + 0x178: [818,0,556,78,633,'539 769c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM339 769c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM633 653v-16c-29 -10 -37 -20 -70 -61l-219 -270l-36 -123 c-23 -79 -30 -106 -30 -127c0 -25 14 -34 53 -37l36 -3v-16h-289v16c66 4 89 17 107 81l59 205l-76 267c-15 52 -21 60 -77 68v16h239v-16c-60 -6 -72 -14 -72 -36c0 -15 12 -59 36 -144l31 -110l39 46c105 124 149 186 149 213c0 17 -11 25 -40 28l-29 3v16h189'], + 0x179: [876,0,556,-6,606,'297 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM606 639l-483 -603h161c87 0 135 4 173 32c27 20 53 55 77 104l19 -3l-54 -169h-505v14l479 603h-171c-64 0 -112 -7 -142 -27c-31 -21 -39 -37 -66 -89l-19 5l45 147h486v-14'], + 0x17A: [664,81,389,-2,390,'167 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM380 417l-289 -344c58 -13 80 -24 120 -83c26 -38 45 -50 70 -50c16 0 27 6 27 15c0 4 -2 9 -5 15c-6 12 -8 20 -8 28c1 17 17 34 33 34c21 0 35 -15 35 -37 c0 -40 -37 -76 -93 -76c-29 0 -63 13 -113 44c-47 29 -79 42 -105 42c-16 0 -29 -5 -45 -18l-9 9l310 372h-136c-52 0 -71 -9 -91 -60l-16 4l32 116h283v-11'], + 0x17B: [818,0,556,-6,606,'399 769c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM606 639l-483 -603h161c87 0 135 4 173 32c27 20 53 55 77 104l19 -3l-54 -169h-505v14l479 603h-171c-64 0 -112 -7 -142 -27c-31 -21 -39 -37 -66 -89l-19 5l45 147h486v-14'], + 0x17C: [606,81,389,-2,380,'289 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM380 417l-289 -344c58 -13 80 -24 120 -83c26 -38 45 -50 70 -50c16 0 27 6 27 15c0 4 -2 9 -5 15c-6 12 -8 20 -8 28c1 17 17 34 33 34c21 0 35 -15 35 -37 c0 -40 -37 -76 -93 -76c-29 0 -63 13 -113 44c-47 29 -79 42 -105 42c-16 0 -29 -5 -45 -18l-9 9l310 372h-136c-52 0 -71 -9 -91 -60l-16 4l32 116h283v-11'], + 0x17D: [875,0,556,-6,606,'513 875l-162 -169h-48l-95 169h38l89 -105l141 105h37zM606 639l-483 -603h161c87 0 135 4 173 32c27 20 53 55 77 104l19 -3l-54 -169h-505v14l479 603h-171c-64 0 -112 -7 -142 -27c-31 -21 -39 -37 -66 -89l-19 5l45 147h486v-14'], + 0x17E: [663,81,389,-2,426,'426 663l-162 -169h-48l-95 169h38l89 -105l141 105h37zM380 417l-289 -344c58 -13 80 -24 120 -83c26 -38 45 -50 70 -50c16 0 27 6 27 15c0 4 -2 9 -5 15c-6 12 -8 20 -8 28c1 17 17 34 33 34c21 0 35 -15 35 -37c0 -40 -37 -76 -93 -76c-29 0 -63 13 -113 44 c-47 29 -79 42 -105 42c-16 0 -29 -5 -45 -18l-9 9l310 372h-136c-52 0 -71 -9 -91 -60l-16 4l32 116h283v-11'], + 0x17F: [683,0,383,13,513,'164 450h27c7 34 17 69 28 94c39 86 98 139 190 139c44 0 104 -16 104 -63c0 -19 -18 -40 -40 -40c-21 0 -35 14 -45 33c-14 25 -31 42 -53 42c-42 0 -64 -33 -76 -91l-100 -476c-2 -11 -3 -21 -3 -29c0 -14 3 -23 9 -29c10 -10 35 -14 71 -15l-3 -15h-260l3 15 c35 2 56 7 69 16c14 10 24 30 30 59l69 328h-27'], + 0x180: [683,11,500,23,473,'223 509l-60 -219c69 113 124 151 194 151c67 0 116 -43 116 -120c0 -158 -165 -332 -320 -332c-57 0 -130 23 -130 53v6l125 461h-123l13 31h118l9 31c7 24 9 38 9 47c0 22 -5 23 -64 25v17c67 8 103 14 153 23l5 -5c-8 -30 -14 -59 -21 -82l-16 -56h162l-8 -31h-162z M388 306c0 61 -26 86 -70 86c-48 0 -94 -42 -137 -115c-44 -74 -72 -171 -72 -231c0 -23 15 -34 46 -34c43 0 86 21 123 59c60 62 110 161 110 235'], + 0x188: [548,11,500,30,577,'350 107l16 -10c-61 -77 -114 -108 -189 -108c-93 0 -147 52 -147 154c0 93 52 180 123 237c49 39 106 61 167 61c18 0 35 -3 49 -9c20 68 69 116 138 116c33 0 70 -22 70 -58c0 -16 -8 -28 -25 -28c-42 0 -24 61 -67 61c-35 0 -52 -45 -61 -83l-10 -43 c7 -10 11 -24 11 -37c0 -27 -22 -48 -48 -48c-28 0 -39 20 -39 40c0 18 15 29 15 48c0 12 -14 20 -37 20c-40 0 -80 -18 -109 -48c-56 -59 -91 -144 -91 -233c0 -72 32 -114 89 -114c53 0 91 25 145 82'], + 0x190: [684,6,667,66,671,'563 168l34 -9c-32 -115 -181 -165 -298 -165c-106 0 -233 33 -233 139c0 98 88 202 187 219c-55 29 -95 54 -95 109c0 153 182 223 310 223c40 0 77 -7 106 -16c46 -14 97 -58 97 -105c0 -28 -17 -60 -47 -60c-28 0 -50 22 -64 81c-10 40 -70 56 -92 56 c-106 0 -206 -70 -206 -193c0 -47 19 -70 95 -70c19 0 81 11 103 11c17 0 47 -8 47 -29c0 -26 -52 -42 -74 -42c-15 0 -67 5 -80 5c-96 0 -183 -71 -183 -175c0 -62 56 -93 165 -93c110 0 165 14 228 114'], + 0x192: [706,159,472,-62,494,'100 437h107c46 180 116 269 210 269c43 0 77 -26 77 -59c0 -28 -23 -54 -50 -54c-19 0 -35 14 -35 30c0 22 17 29 17 42c0 7 -7 12 -19 12c-17 0 -33 -6 -44 -18c-20 -22 -45 -85 -58 -146c-5 -24 -9 -49 -15 -76h126l-6 -31h-128c-29 -161 -105 -411 -138 -468 c-38 -67 -79 -97 -132 -97c-42 0 -74 24 -74 59c0 32 23 55 53 55c19 0 32 -18 32 -36c0 -31 -19 -35 -19 -42c0 -8 6 -12 18 -12c46 0 79 57 101 174l27 158c12 63 26 127 47 209h-103'], + 0x195: [683,10,672,19,654,'444 343l-69 -247c-5 -17 -9 -34 -9 -38c0 -11 6 -20 17 -20c130 0 230 152 230 270c0 12 -2 21 -5 29c-8 20 -49 32 -49 70c0 22 19 34 36 34c29 0 51 -20 57 -50c2 -9 2 -20 2 -30c0 -167 -113 -371 -295 -371c-31 0 -71 0 -71 43c0 12 7 43 20 92l55 207 c4 16 7 29 7 33c0 15 -5 25 -28 25c-36 0 -100 -61 -152 -140c-40 -61 -56 -96 -96 -250h-75l146 554c8 31 13 48 13 62c0 17 -23 25 -41 25h-27v15c60 7 99 14 157 27l7 -6l-121 -447c90 146 168 211 230 211c46 0 65 -30 65 -67c0 -7 -2 -23 -4 -31'], + 0x199: [683,11,500,14,490,'14 0l124 465c31 116 130 218 259 218c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60c-48 0 -115 -52 -135 -128l-79 -300l43 33c94 72 143 120 143 140c0 11 -12 18 -37 18h-14v16h179v-16c-47 -3 -78 -23 -225 -154l37 -88c39 -92 62 -129 81 -129 c15 0 27 11 45 42c5 8 10 17 15 26l15 -11c-46 -84 -71 -109 -111 -109c-29 0 -49 19 -81 82c-18 35 -44 97 -60 141l-40 -32l-48 -180h-75'], + 0x19A: [683,11,278,41,279,'279 678l-79 -300h78l-8 -31h-78l-66 -254c-5 -18 -8 -35 -8 -43c0 -12 7 -18 17 -18c15 0 38 16 67 57l25 35l14 -10c-60 -95 -97 -125 -151 -125c-32 0 -49 19 -49 56c0 8 1 20 4 30l71 272h-74l8 31h74l58 221c3 10 3 16 3 19c0 12 -17 22 -49 22h-18v16 c59 7 96 14 155 27'], + 0x19B: [668,0,490,30,478,'478 575l-102 -75l58 -500h-44l-34 333l-232 -333h-94l245 341c27 37 54 77 61 91c0 11 0 28 -1 39l-172 -127v54l165 119c-4 16 -20 67 -45 67c-22 0 -40 -20 -73 -20c-24 0 -48 14 -48 46c0 33 27 58 70 58c64 0 115 -39 136 -124l110 85v-54'], + 0x19E: [441,233,500,14,442,'213 439l-67 -218c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-153 -553h-81l149 515c9 32 17 67 17 79c0 18 -12 28 -27 28c-40 0 -85 -48 -148 -141c-45 -67 -53 -90 -100 -248h-75l96 350c1 5 2 11 2 17c0 20 -14 26 -65 27v16 c81 16 109 20 162 31'], + 0x1A0: [691,18,722,60,783,'783 635c0 -37 -25 -60 -66 -68c-8 -1 -22 -3 -33 -3c-7 0 -11 0 -20 2c23 -40 35 -90 35 -148c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 154 97 239 97c71 0 126 -24 164 -67c15 -13 32 -18 47 -18 c23 0 36 10 36 21c0 5 -35 16 -35 49c0 19 19 40 46 40s49 -21 49 -56zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x1A1: [467,11,534,27,583,'583 411c0 -37 -25 -60 -66 -68c-8 -1 -22 -3 -34 -3c-7 0 -10 0 -20 2c3 -13 5 -27 5 -41c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c59 0 107 -28 128 -77c11 -5 22 -7 32 -7 c23 0 36 9 36 22c0 3 -35 16 -35 48c0 19 19 40 46 40s49 -21 49 -56zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x1A5: [669,205,504,-75,472,'237 535l-51 -207c54 81 111 113 171 113c74 0 115 -47 115 -125c0 -165 -151 -327 -297 -327c-23 0 -44 4 -69 17l-36 -135c-4 -16 -4 -27 -4 -31c0 -22 15 -29 62 -29v-16h-203v16c43 1 56 16 68 63l148 558c31 118 77 237 206 237c47 0 93 -19 93 -56 c0 -23 -21 -38 -40 -38c-42 0 -54 60 -88 60c-29 0 -55 -20 -75 -100zM382 313c0 57 -17 85 -62 85c-53 0 -112 -54 -135 -114c-29 -75 -65 -204 -65 -238c0 -22 20 -38 48 -38c53 0 101 33 145 95c48 67 69 140 69 210'], + 0x1AA: [684,233,340,31,319,'65 45l158 442c-22 -15 -49 -24 -75 -24c-51 0 -85 36 -85 84c0 71 73 137 141 137c80 1 115 -61 115 -131c0 -19 -1 -40 -8 -59l-184 -531c-13 -38 -28 -81 -28 -121c0 -23 8 -41 36 -41c39 0 48 60 91 60c21 0 40 -17 40 -38c0 -44 -59 -56 -92 -56 c-91 0 -143 51 -143 126c0 49 17 105 34 152zM247 597c0 29 -10 53 -46 53c-50 0 -104 -38 -104 -96c0 -33 25 -57 60 -57c32 0 65 21 83 48c3 17 7 35 7 52'], + 0x1AB: [546,218,278,-54,296,'296 428l-5 -32h-84l-87 -328c-1 -4 -2 -11 -2 -14c0 -13 6 -16 15 -16c16 0 32 16 81 79l13 -7c-17 -43 -38 -100 -47 -133l-29 -102c-16 -55 -49 -93 -112 -93c-47 0 -93 19 -93 56c0 23 21 38 40 38c43 0 53 -60 89 -60c16 0 37 25 46 56l30 99c4 14 9 46 10 52 c-25 -25 -48 -34 -77 -34c-27 0 -46 12 -46 37c0 11 8 42 16 74l78 296h-75c-1 3 -1 6 -1 6c0 11 9 20 33 25c32 7 97 56 133 110c4 6 10 9 14 9c6 0 9 -3 9 -8c0 0 0 -5 -1 -7l-28 -103h80'], + 0x1AD: [683,11,310,38,452,'132 396h-75c-1 3 -1 6 -1 6c0 11 9 20 33 25c14 3 37 16 58 32c33 131 88 224 212 224c34 0 93 -12 93 -56c0 -21 -19 -38 -39 -38c-42 0 -54 60 -89 60c-46 0 -63 -57 -75 -100l-33 -121h80l-5 -32h-84l-87 -328c-1 -4 -2 -11 -2 -14c0 -13 6 -16 15 -16 c16 0 32 16 81 79l13 -7c-60 -92 -91 -121 -143 -121c-27 0 -46 12 -46 37c0 11 8 42 16 74'], + 0x1AF: [765,18,754,102,881,'567 653h199c45 0 54 16 54 23c0 6 -34 14 -34 49c0 19 18 40 45 40s50 -20 50 -55c0 -37 -26 -62 -67 -70c-13 -2 -32 -3 -60 -6c-47 -5 -58 -24 -93 -146l-83 -285c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216 l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16'], + 0x1B0: [543,11,573,42,607,'391 432h74c25 0 82 0 82 21c0 6 -35 15 -35 50c0 19 18 40 45 40c26 0 50 -22 50 -57c0 -37 -27 -61 -66 -68c-11 -2 -50 -6 -74 -6h-7l-74 -279c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48 c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147 c47 71 61 109 110 243'], + 0x1BA: [450,234,500,8,462,'462 429l-237 -186s41 17 70 17c63 0 98 -36 98 -88c0 -61 -32 -110 -92 -141l-197 -101c-31 -16 -54 -46 -54 -83c0 -32 20 -54 65 -54c36 0 69 21 76 55c9 44 28 64 52 64c30 0 48 -21 48 -44c0 -18 -13 -57 -55 -77c-43 -20 -88 -25 -113 -25c-62 0 -115 37 -115 97 c0 66 48 116 99 142l150 76c29 15 56 38 56 73c0 30 -25 50 -75 50c-52 0 -77 -11 -124 -48c0 0 -11 11 -16 18l264 212h-162c-67 0 -80 -32 -101 -86h-18l61 150h320v-21'], + 0x1BB: [676,0,500,12,500,'500 360l-9 -46h-148c-74 -80 -152 -156 -228 -233v-5h181c57 0 79 14 103 65l17 -7l-50 -134h-354v17l210 224c22 24 45 48 66 73h-248l9 46h274c24 36 43 77 43 122c0 74 -44 121 -119 121c-68 0 -115 -37 -146 -96l-21 7c35 96 104 162 210 162c97 0 162 -75 162 -169 c0 -60 -32 -103 -69 -147h117'], + 0x1BE: [539,12,500,47,453,'297 447l-12 -62c7 1 16 1 23 1c94 0 145 -69 145 -153c0 -152 -113 -245 -253 -245c-56 0 -153 35 -153 103c0 25 21 44 46 44c69 0 35 -128 122 -128c75 0 135 132 135 190c0 65 -55 101 -121 101h-20l37 149h-77l8 31h77l15 61h47l-12 -61h78l-8 -31h-77'], + 0x1C0: [736,0,170,15,258,'258 736l-192 -736h-51l192 736h51'], + 0x1C1: [736,0,290,15,379,'379 736l-193 -736h-51l193 736h51zM259 736l-193 -736h-51l193 736h51'], + 0x1C2: [736,0,340,15,429,'429 464l-13 -51h-157l-22 -90h157l-13 -51h-157l-74 -272h-51l73 272h-157l13 51h158l22 90h-158l13 51h159l71 272h51l-72 -272h157'], + 0x1C3: [667,11,333,39,304,'137 177l-17 5c41 190 49 227 71 369c13 85 31 116 69 116c28 0 44 -17 44 -51c0 -30 -8 -57 -39 -123c-46 -98 -68 -152 -128 -316zM145 41c0 -28 -26 -52 -56 -52s-50 23 -50 54c0 28 26 52 54 52c31 0 52 -25 52 -54'], + 0x1F0: [661,207,278,-124,397,'397 661l-162 -169h-48l-95 169h38l89 -105l141 105h37zM246 438l-104 -410c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -12 18 -12c40 0 63 44 97 182l72 292c12 49 16 70 16 80 c0 22 -12 31 -48 31h-26v16c32 2 85 10 169 25'], + 0x1FA: [950,0,611,-51,564,'396 656l90 -541c14 -84 25 -95 78 -99v-16h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l279 486c-32 10 -55 41 -55 77c0 44 36 79 81 79c43 0 78 -36 78 -80 c0 -39 -30 -73 -70 -78zM369 262l-45 263l-149 -263h194zM433 736c0 25 -21 45 -48 45c-23 0 -45 -21 -45 -45c0 -27 21 -48 45 -48c28 0 48 21 48 48zM284 810l141 121c17 15 22 19 40 19s25 -10 25 -26c0 -15 -13 -24 -32 -35l-141 -79h-33'], + 0x1FB: [860,11,501,17,476,'209 690l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM420 591c0 -54 -45 -99 -100 -99c-57 0 -100 44 -100 100c0 54 45 99 99 99c56 0 101 -45 101 -100zM386 591c0 37 -30 66 -67 66c-35 0 -65 -30 -65 -65c0 -37 28 -66 65 -66 c38 0 67 28 67 65zM463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21 c-47 -171 -89 -343 -89 -363c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225'], + 0x1FC: [876,0,889,-27,911,'559 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM911 653l-33 -153l-17 2c1 13 1 30 1 36c0 70 -28 82 -192 82c-47 0 -55 -5 -64 -37l-61 -222c159 1 169 6 211 97l18 -4l-69 -232l-17 4c4 24 6 38 6 52c0 41 -21 50 -118 50 h-40l-62 -217c-9 -32 -9 -43 -9 -49c0 -20 16 -29 51 -29h30c150 0 204 27 280 136l18 -5l-64 -164h-498v16c61 6 71 16 80 48l49 170h-190l-101 -131c-18 -24 -24 -45 -24 -56c0 -20 11 -25 64 -31v-16h-187v16c25 6 36 16 84 76l369 465c30 38 32 41 32 53 c0 17 -11 25 -38 26l-26 1v16h517zM517 613l-268 -342h173'], + 0x1FD: [664,11,667,23,640,'307 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM459 439l-22 -62c46 50 81 64 122 64c50 0 81 -27 81 -70c0 -38 -23 -73 -66 -101c-38 -24 -84 -42 -190 -72c-7 -30 -8 -38 -8 -60c0 -74 22 -102 70 -102c43 0 82 21 142 77 l10 -12c-56 -68 -135 -112 -198 -112s-104 47 -104 122c0 15 1 23 6 40c-81 -126 -131 -162 -195 -162c-49 0 -84 33 -84 98c0 164 159 354 280 354c34 0 57 -12 66 -47l19 45h71zM574 380c0 23 -12 36 -35 36s-46 -14 -65 -35c-35 -38 -54 -69 -84 -158 c93 27 134 54 166 97c14 19 18 39 18 60zM350 370c0 30 -18 51 -45 51c-37 1 -75 -31 -113 -86c-49 -71 -83 -162 -83 -236c0 -38 10 -60 34 -60c26 0 57 16 80 41c72 78 127 204 127 290'], + 0x1FE: [876,105,722,60,699,'355 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM669 722l-61 -94c60 -47 91 -108 91 -214c0 -226 -220 -432 -414 -432c-31 0 -66 3 -104 18l-68 -105h-44l80 124c-68 46 -89 127 -89 196c0 197 191 451 412 451 c37 0 66 -5 104 -20l49 76h44zM188 74l357 533c-25 19 -50 26 -84 26c-165 0 -296 -278 -296 -443c0 -38 5 -82 23 -116zM571 575l-358 -531c23 -21 48 -29 82 -29c191 0 299 310 299 460c0 39 -6 71 -23 100'], + 0x1FF: [664,135,500,28,469,'180 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35zM428 554l-58 -119c67 -15 99 -73 99 -137c0 -80 -49 -174 -124 -238c-55 -47 -111 -71 -169 -71c-8 0 -14 1 -20 2l-61 -126h-35l64 131c-31 10 -44 18 -59 34 c-24 25 -37 61 -37 100c0 153 150 311 294 311c7 0 11 0 17 -1l55 114h34zM357 406l-190 -392c8 -3 13 -4 22 -4c46 0 84 26 122 82c43 65 74 161 74 233c0 35 -9 60 -28 81zM140 29l188 389c-5 1 -7 2 -10 2c-33 0 -68 -17 -95 -46c-65 -70 -111 -182 -111 -277 c0 -28 9 -49 28 -68'], + 0x1E80: [880,18,833,71,906,'528 -18h-20l-50 453h-5l-222 -453h-19l-61 514c-11 94 -15 111 -29 126c-9 9 -19 11 -51 15v16h235v-16c-51 -5 -72 -13 -72 -51c0 -5 0 -13 1 -20l44 -404l172 348l-8 65c-6 51 -17 60 -75 62v16h236v-16c-51 -5 -68 -16 -68 -48c0 -6 2 -12 2 -15l40 -412l188 365 c13 25 23 49 23 68c0 25 -17 41 -67 42v16h184v-16c-38 -12 -48 -20 -77 -75zM544 708l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23l115 -149h-32'], + 0x1E81: [664,18,667,15,648,'15 404v13c31 5 65 9 95 17c13 3 22 7 29 7c11 0 12 -2 19 -34c14 -68 28 -193 32 -281l192 304c5 8 8 10 13 10c6 0 8 -3 8 -14l32 -352c131 164 165 217 165 260c0 12 -6 20 -22 35s-21 27 -21 41c0 16 17 31 39 31c30 0 52 -24 52 -56c0 -64 -74 -181 -212 -349 l-9 -11c-27 -33 -36 -43 -45 -43c-7 0 -9 9 -11 35l-29 310l-89 -152c-18 -30 -36 -63 -55 -99c-36 -69 -53 -94 -64 -94c-9 0 -11 8 -13 47l-4 91c-4 87 -15 194 -27 242c-9 37 -18 42 -47 42h-28zM434 492l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34 c15 0 27 -6 40 -23l115 -149h-32'], + 0x1E82: [876,18,833,71,906,'528 -18h-20l-50 453h-5l-222 -453h-19l-61 514c-11 94 -15 111 -29 126c-9 9 -19 11 -51 15v16h235v-16c-51 -5 -72 -13 -72 -51c0 -5 0 -13 1 -20l44 -404l172 348l-8 65c-6 51 -17 60 -75 62v16h236v-16c-51 -5 -68 -16 -68 -48c0 -6 2 -12 2 -15l40 -412l188 365 c13 25 23 49 23 68c0 25 -17 41 -67 42v16h184v-16c-38 -12 -48 -20 -77 -75zM389 706l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0x1E83: [664,18,667,15,648,'15 404v13c31 5 65 9 95 17c13 3 22 7 29 7c11 0 12 -2 19 -34c14 -68 28 -193 32 -281l192 304c5 8 8 10 13 10c6 0 8 -3 8 -14l32 -352c131 164 165 217 165 260c0 12 -6 20 -22 35s-21 27 -21 41c0 16 17 31 39 31c30 0 52 -24 52 -56c0 -64 -74 -181 -212 -349 l-9 -11c-27 -33 -36 -43 -45 -43c-7 0 -9 9 -11 35l-29 310l-89 -152c-18 -30 -36 -63 -55 -99c-36 -69 -53 -94 -64 -94c-9 0 -11 8 -13 47l-4 91c-4 87 -15 194 -27 242c-9 37 -18 42 -47 42h-28zM269 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36 c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0x1E84: [818,18,833,71,906,'528 -18h-20l-50 453h-5l-222 -453h-19l-61 514c-11 94 -15 111 -29 126c-9 9 -19 11 -51 15v16h235v-16c-51 -5 -72 -13 -72 -51c0 -5 0 -13 1 -20l44 -404l172 348l-8 65c-6 51 -17 60 -75 62v16h236v-16c-51 -5 -68 -16 -68 -48c0 -6 2 -12 2 -15l40 -412l188 365 c13 25 23 49 23 68c0 25 -17 41 -67 42v16h184v-16c-38 -12 -48 -20 -77 -75zM391 818c25 0 48 -24 48 -49c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48zM591 818c25 0 48 -24 48 -49c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48'], + 0x1E85: [606,18,667,15,648,'15 404v13c31 5 65 9 95 17c13 3 22 7 29 7c11 0 12 -2 19 -34c14 -68 28 -193 32 -281l192 304c5 8 8 10 13 10c6 0 8 -3 8 -14l32 -352c131 164 165 217 165 260c0 12 -6 20 -22 35s-21 27 -21 41c0 16 17 31 39 31c30 0 52 -24 52 -56c0 -64 -74 -181 -212 -349 l-9 -11c-27 -33 -36 -43 -45 -43c-7 0 -9 9 -11 35l-29 310l-89 -152c-18 -30 -36 -63 -55 -99c-36 -69 -53 -94 -64 -94c-9 0 -11 8 -13 47l-4 91c-4 87 -15 194 -27 242c-9 37 -18 42 -47 42h-28zM281 606c25 0 48 -24 48 -49c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50 c0 27 22 48 50 48zM481 606c25 0 48 -24 48 -49c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48'], + 0x1EF2: [880,0,556,78,633,'330 653v-16c-60 -6 -72 -14 -72 -36c0 -15 12 -59 36 -144l31 -110l39 46c105 124 149 186 149 213c0 17 -11 25 -40 28l-29 3v16h189v-16c-29 -10 -37 -20 -70 -61l-219 -270l-36 -123c-23 -79 -30 -106 -30 -127c0 -25 14 -34 53 -37l36 -3v-16h-289v16 c66 4 89 17 107 81l59 205l-76 267c-15 52 -21 60 -77 68v16h239zM434 708l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23l115 -149h-32'], + 0x1EF3: [664,206,444,-24,426,'15 400v17c11 2 22 4 32 6c20 4 53 10 107 18h4c15 0 68 -166 85 -255l21 -110c85 141 122 213 122 257c0 14 -7 20 -26 32c-20 13 -26 23 -26 39c0 22 17 37 40 37c30 0 52 -25 52 -55c0 -57 -48 -167 -131 -305c-104 -172 -211 -287 -268 -287c-30 0 -51 17 -51 43 c0 22 17 40 39 40c35 0 35 -28 61 -28c13 0 25 8 48 33c18 19 63 78 71 91c6 12 10 24 10 35c0 40 -55 264 -82 332c-19 49 -37 64 -77 64c-11 0 -20 -1 -31 -4zM279 492l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23l115 -149h-32'], + 0xFB00: [678,207,527,-147,673,'211 428h172c22 71 39 126 72 173c30 43 70 77 131 77c49 0 87 -26 87 -62c0 -22 -19 -43 -42 -43c-18 0 -37 15 -37 39c0 17 10 22 10 31c0 8 -8 13 -22 13c-56 0 -93 -70 -122 -228h107l-6 -32h-108l-72 -320c-42 -185 -109 -283 -200 -283c-45 0 -79 26 -79 61 c0 23 17 42 38 42c23 0 38 -16 38 -37c0 -13 -9 -18 -9 -29c0 -9 8 -16 20 -16c42 0 74 54 97 162l88 420h-170l-72 -320c-42 -185 -109 -283 -200 -283c-45 0 -79 26 -79 61c0 23 17 42 38 42c23 0 38 -16 38 -37c0 -13 -9 -18 -9 -29c0 -9 8 -16 20 -16c42 0 74 54 97 162 l88 420h-91l7 32h93c22 71 39 126 72 173c30 43 71 77 132 77c49 0 86 -26 86 -62c0 -22 -19 -43 -42 -43c-18 0 -37 15 -37 39c0 17 10 22 10 31c0 8 -8 13 -22 13c-56 0 -93 -70 -122 -228'], + 0xFB01: [681,207,500,-141,481,'51 428h88c35 118 50 153 105 202c35 32 84 51 134 51c61 0 103 -30 103 -68c0 -25 -17 -45 -42 -45s-41 18 -41 43c0 11 2 16 9 23c3 4 4 6 4 9c0 10 -13 16 -34 16c-35 0 -60 -8 -86 -42c-34 -44 -46 -78 -75 -189h150c27 0 54 2 81 6c10 1 14 2 18 2l5 -3v-3 c0 -5 -2 -14 -5 -25l-1 -4c-4 -17 -10 -35 -15 -53c-4 -17 -2 -8 -7 -26c-40 -146 -72 -267 -72 -275c0 -6 5 -10 11 -10c13 0 38 21 77 70l16 -9c-57 -77 -93 -106 -133 -106c-32 0 -46 21 -46 50c0 24 15 83 74 296c12 42 12 44 12 48c0 7 -5 10 -16 10h-155l-72 -318 c-29 -126 -68 -209 -117 -252c-26 -22 -53 -33 -84 -33c-45 0 -78 24 -78 60c0 23 16 44 37 44s39 -19 39 -40c0 -5 -1 -9 -5 -16c-3 -5 -4 -8 -4 -11c0 -10 5 -13 20 -13c25 0 44 14 61 47c17 32 32 77 58 224c35 197 61 293 67 308h-88'], + 0xFB02: [682,204,500,-141,518,'46 428h92c34 104 48 149 107 200c39 33 88 54 138 54c18 0 40 -2 61 -7c14 -2 26 -4 31 -4c4 0 19 5 28 8c4 2 8 3 10 3c3 0 5 -4 5 -9c0 -8 -5 -28 -21 -88c-39 -150 -127 -521 -127 -538c0 -6 5 -11 11 -11c14 0 33 17 78 69l16 -9c-60 -81 -90 -105 -132 -105 c-29 0 -48 20 -48 50c0 27 15 85 47 217l33 138h-166l-69 -310c-43 -193 -115 -290 -205 -290c-46 0 -76 26 -76 62c0 23 16 42 36 42c22 0 40 -19 40 -39c0 -5 -1 -10 -5 -17c-3 -5 -4 -7 -4 -10c0 -9 6 -13 20 -13c20 0 34 7 47 24c9 12 15 23 18 31c26 70 50 193 91 388 l28 132h-90zM383 428l37 148c0 3 -2 9 -5 15c-3 7 -5 12 -5 17c0 6 2 13 8 21c3 4 4 7 4 9c0 12 -20 22 -43 22c-37 0 -67 -16 -93 -51c-25 -34 -46 -85 -64 -157l-6 -24h167'], + 0xFB03: [681,207,744,-147,725,'211 428h172c35 118 50 153 105 202c35 32 84 51 134 51c61 0 103 -30 103 -68c0 -25 -17 -45 -42 -45s-41 18 -41 43c0 11 2 16 9 23c3 4 4 6 4 9c0 10 -13 13 -34 13c-35 0 -60 -5 -86 -39c-34 -44 -46 -78 -75 -189h150c27 0 54 2 81 6c10 1 14 2 18 2l5 -3v-3 c0 -5 -2 -14 -5 -25l-1 -4c-4 -17 -10 -35 -15 -53c-4 -17 -2 -8 -7 -26c-40 -146 -72 -267 -72 -275c0 -6 5 -10 11 -10c13 0 38 21 77 70l16 -9c-57 -77 -93 -106 -133 -106c-32 0 -46 21 -46 50c0 24 15 83 74 296c12 42 12 44 12 48c0 7 -5 10 -16 10h-155l-72 -318 c-29 -126 -68 -209 -117 -252c-26 -22 -53 -33 -84 -33c-45 0 -78 24 -78 60c0 23 16 44 37 44s39 -19 39 -40c0 -5 -1 -9 -5 -16c-3 -5 -4 -8 -4 -11c0 -10 5 -13 20 -13c25 0 44 14 61 47c17 32 32 77 58 224c35 197 58 293 66 308h-171l-72 -320 c-42 -185 -109 -283 -200 -283c-45 0 -79 26 -79 61c0 23 17 42 38 42c23 0 38 -16 38 -37c0 -13 -9 -18 -9 -29c0 -9 8 -16 20 -16c42 0 74 54 97 162l88 420h-91l7 32h93c22 71 39 126 72 173c30 43 71 77 132 77c49 0 86 -26 86 -62c0 -22 -19 -43 -42 -43 c-18 0 -37 15 -37 39c0 17 10 22 10 31c0 8 -8 13 -22 13c-56 0 -93 -70 -122 -228'], + 0xFB04: [682,207,745,-147,763,'211 428h172c34 104 48 149 107 200c39 33 88 54 138 54c18 0 40 -2 61 -7c14 -2 26 -4 31 -4c4 0 19 5 28 8c4 2 8 3 10 3c3 0 5 -4 5 -9c0 -8 -5 -28 -21 -88c-39 -150 -127 -521 -127 -538c0 -6 5 -11 11 -11c14 0 33 17 78 69l16 -9c-60 -81 -90 -105 -132 -105 c-29 0 -48 20 -48 50c0 27 15 85 47 217l33 138h-166l-69 -310c-43 -193 -115 -293 -205 -293c-46 0 -76 29 -76 65c0 23 16 42 36 42c22 0 40 -19 40 -39c0 -5 -1 -10 -5 -17c-3 -5 -4 -7 -4 -10c0 -9 6 -20 20 -20c20 0 34 14 47 31c9 12 15 23 18 31c26 70 50 193 91 388 l28 132h-171l-72 -320c-42 -185 -109 -283 -200 -283c-45 0 -79 26 -79 61c0 23 17 42 38 42c23 0 38 -16 38 -37c0 -13 -9 -18 -9 -29c0 -9 8 -16 20 -16c42 0 74 54 97 162l88 420h-91l7 32h93c22 71 39 126 72 173c30 43 71 77 132 77c49 0 86 -26 86 -62 c0 -22 -19 -43 -42 -43c-18 0 -37 15 -37 39c0 17 10 22 10 31c0 8 -8 13 -22 13c-56 0 -93 -70 -122 -228zM628 428l37 148c0 3 -2 9 -5 15c-3 7 -5 12 -5 17c0 6 2 13 8 21c3 4 4 7 4 9c0 12 -20 22 -43 22c-37 0 -67 -16 -93 -51c-25 -34 -46 -85 -64 -157l-6 -24h167'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Latin/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/Regular/Main.js new file mode 100644 index 0000000..2a2645d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Latin/Regular/Main.js @@ -0,0 +1,285 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Latin/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Latin'] = { + directory: 'Latin/Regular', + family: 'STIXMathJax_Latin', + id: 'STIXWEBLATIN', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xA1: [468,218,330,96,202,'202 417c0 -31 -24 -55 -54 -55s-52 24 -52 55c0 30 22 51 53 51c30 0 53 -22 53 -51zM156 282l44 -381c2 -18 2 -25 2 -39c0 -46 -21 -80 -53 -80c-34 0 -53 28 -53 79c0 13 1 26 2 38l45 383h13'], + 0xA2: [579,138,500,53,448,'435 164l13 -8c-34 -70 -53 -97 -88 -127c-28 -24 -65 -38 -102 -38c-18 0 -33 2 -57 9l-49 -138h-34l51 150c-39 22 -55 36 -74 64c-27 39 -42 91 -42 143c0 135 96 241 220 241c14 0 27 -1 51 -5l44 124h35l-47 -135c48 -19 75 -49 75 -84c0 -27 -18 -45 -43 -45 s-40 13 -58 52l-101 -291c23 -9 39 -12 59 -12c59 0 95 25 147 100zM198 98l115 323c-18 7 -30 9 -47 9c-82 0 -136 -68 -136 -170c0 -72 19 -117 68 -162'], + 0xA4: [534,10,500,-22,522,'522 40l-48 -50l-98 98c-40 -28 -78 -41 -125 -41s-85 12 -127 41l-96 -98l-50 50l98 96c-29 42 -41 78 -41 126s12 86 41 126l-98 98l50 48l96 -96c44 28 79 39 127 39c49 0 86 -12 125 -39l98 96l48 -48l-96 -98c29 -43 39 -76 39 -125c0 -48 -10 -82 -39 -127z M397 264c0 83 -65 149 -148 149c-80 0 -146 -68 -146 -150c0 -84 66 -152 148 -152s146 67 146 153'], + 0xA6: [676,14,200,67,133,'133 400h-66v276h66v-276zM133 -14h-66v276h66v-276'], + 0xA9: [676,14,760,38,722,'547 248l-17 -76c-3 -13 -88 -31 -148 -31c-118 0 -192 75 -192 188c0 123 89 203 221 203c33 0 76 -9 107 -22c8 -4 13 -10 13 -17v-71h-17c-8 60 -49 90 -104 90c-89 0 -143 -73 -143 -175c0 -111 60 -176 148 -176c55 0 89 25 116 87h16zM722 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM667 334c0 165 -131 300 -290 300c-153 0 -284 -140 -284 -303c0 -166 131 -303 288 -303s286 138 286 306'], + 0xAA: [676,-394,276,4,270,'270 442v-18c-24 -23 -36 -30 -59 -30c-27 0 -39 12 -45 44c-33 -31 -61 -44 -91 -44c-41 0 -71 28 -71 68c0 20 8 39 22 51c27 23 40 29 131 63v30c0 27 -13 42 -36 42c-22 0 -45 -11 -45 -23c0 -4 1 -8 2 -14c1 -3 1 -6 1 -8c0 -13 -14 -25 -31 -25 c-18 0 -32 13 -32 31c0 39 45 67 108 67c70 0 105 -32 105 -96v-115c0 -28 2 -35 13 -35c10 0 18 3 28 12zM158 474v77c-70 -25 -91 -40 -91 -66c0 -24 17 -44 38 -44c13 0 25 3 42 11c8 7 11 14 11 22'], + 0xAB: [416,-33,500,42,456,'234 227l81 73c42 38 121 116 130 116s11 -6 11 -11c0 -9 -19 -31 -50 -72l-84 -106c32 -37 62 -78 84 -107c31 -40 50 -67 50 -76c0 -6 -6 -11 -12 -11c-9 0 -88 84 -129 121zM42 227l81 73c42 38 121 116 130 116s11 -6 11 -11c0 -9 -19 -31 -50 -72l-84 -106 c32 -37 62 -78 84 -107c31 -40 50 -67 50 -76c0 -6 -6 -11 -12 -11c-9 0 -88 84 -129 121'], + 0xAD: [257,-194,333,39,285,'285 194h-246v63h246v-63'], + 0xB2: [676,-270,300,1,296,'296 355l-39 -85h-251v24l101 108c51 55 78 108 78 138c0 42 -31 76 -71 76c-37 0 -66 -26 -88 -74l-25 15c28 82 65 119 150 119c78 0 126 -46 126 -109c0 -49 -21 -88 -86 -151l-84 -81h113c27 0 43 5 58 27'], + 0xB3: [676,-262,300,13,291,'204 511v-2c60 -15 87 -62 87 -110c0 -79 -76 -137 -187 -137c-53 0 -91 24 -91 56c0 21 17 31 37 31c11 0 22 -5 41 -19c22 -16 33 -20 51 -20c41 0 68 30 68 71c0 52 -34 82 -89 82c-2 0 -4 0 -28 -3v29c70 24 95 48 95 84c0 30 -21 47 -56 47c-36 0 -59 -14 -86 -58 l-25 19c36 67 74 95 135 95s108 -36 108 -83c0 -28 -12 -58 -60 -82'], + 0xB6: [662,154,592,60,532,'532 -154h-154v794h-58v-794h-155v22c78 5 89 19 89 103v302c-126 10 -194 58 -194 198c0 130 62 191 209 191h263v-19c-77 -7 -88 -27 -88 -101v-583c0 -71 12 -85 88 -91v-22zM254 295v345c-95 -9 -118 -55 -118 -167c0 -115 32 -169 118 -178'], + 0xB8: [0,215,333,52,261,'174 0l-25 -65c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5l41 99h35'], + 0xB9: [676,-270,300,57,248,'248 270h-191v24c43 3 53 10 53 33v254c0 23 -3 30 -9 30c-7 0 -16 -2 -42 -14v24l118 55l14 -4v-339c0 -26 14 -39 57 -39v-24'], + 0xBA: [676,-394,310,6,304,'304 542c0 -84 -65 -148 -153 -148c-84 0 -145 58 -145 139c0 86 61 143 153 143c85 0 145 -55 145 -134zM231 516c0 75 -34 127 -83 127c-41 0 -69 -30 -69 -74c0 -39 9 -79 25 -108c12 -22 31 -34 56 -34c46 0 71 31 71 89'], + 0xBB: [416,-33,500,43,458,'458 222l-81 -73c-42 -38 -121 -116 -130 -116s-11 6 -11 11c0 9 19 31 50 72l84 106c-32 37 -62 78 -84 107c-31 40 -50 67 -50 76c0 6 6 11 12 11c9 0 88 -84 129 -121zM265 222l-81 -73c-42 -38 -121 -116 -130 -116s-11 6 -11 11c0 9 19 31 50 72l84 106 c-32 37 -62 78 -84 107c-31 40 -50 67 -50 76c0 6 6 11 12 11c9 0 88 -84 129 -121'], + 0xBC: [676,14,750,42,713,'713 90h-55v-90h-70v90h-180v49l203 266h47v-258h55v-57zM588 147v179l-135 -179h135zM632 676l-450 -690h-49l453 690h46zM223 270h-181v24c43 3 53 10 53 33v254c0 23 -3 30 -9 30c-7 0 -16 -2 -42 -14v24l108 55l14 -4v-339c0 -26 14 -39 57 -39v-24'], + 0xBD: [676,14,750,36,741,'741 85l-39 -85h-251v24l101 108c51 55 78 108 78 138c0 42 -31 76 -71 76c-37 0 -66 -26 -88 -74l-25 15c28 82 65 119 150 119c78 0 126 -46 126 -109c0 -49 -21 -88 -86 -151l-84 -81h113c27 0 43 5 58 27zM595 676l-450 -690h-49l453 690h46zM217 270h-181v24 c43 3 53 10 53 33v254c0 23 -3 30 -9 30c-7 0 -16 -2 -42 -14v24l108 55l14 -4v-339c0 -26 14 -39 57 -39v-24'], + 0xBE: [676,14,750,13,718,'718 90h-55v-90h-70v90h-180v49l203 266h47v-258h55v-57zM593 147v179l-135 -179h135zM637 676l-450 -690h-49l453 690h46zM204 511v-2c60 -15 87 -62 87 -110c0 -79 -76 -137 -187 -137c-53 0 -91 24 -91 56c0 21 17 31 37 31c11 0 22 -5 41 -19c22 -16 33 -20 51 -20 c41 0 68 30 68 71c0 52 -34 82 -89 82c-2 0 -4 0 -28 -3v29c70 24 95 48 95 84c0 30 -21 47 -56 47c-36 0 -59 -14 -86 -58l-25 19c36 67 74 95 135 95s108 -36 108 -83c0 -28 -12 -58 -60 -82'], + 0xBF: [467,218,444,30,376,'260 416c0 -31 -24 -55 -54 -55s-52 24 -52 55c0 30 22 51 53 51c30 0 53 -22 53 -51zM200 294h17c-1 -44 -5 -91 -58 -206c-26 -56 -37 -110 -37 -157c0 -66 48 -119 109 -119c48 0 94 30 94 62c0 9 -5 17 -17 31c-15 17 -21 28 -21 43c0 25 16 41 41 41 c31 0 48 -21 48 -62c0 -83 -70 -145 -162 -145c-55 0 -113 23 -148 58c-23 23 -36 59 -36 97c0 61 22 98 105 203c38 48 53 86 65 154'], + 0xC0: [928,0,722,15,707,'451 757h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM707 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20 l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275l-115 -275h231'], + 0xC1: [928,0,722,15,707,'276 757l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM707 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167 l206 488h20l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275l-115 -275h231'], + 0xC2: [924,0,722,15,707,'513 757h-34l-122 103l-121 -103h-34l124 167h62zM707 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19z M447 257l-116 275l-115 -275h231'], + 0xC3: [888,0,722,15,707,'495 888h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM707 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24 c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275l-115 -275h231'], + 0xC4: [872,0,722,15,707,'508 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM309 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM707 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114 c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275l-115 -275h231'], + 0xC5: [961,0,722,15,707,'459 861c0 -55 -45 -99 -101 -99c-55 0 -98 44 -98 100c0 55 45 99 101 99c53 0 98 -46 98 -100zM425 862c0 36 -30 65 -67 65c-34 0 -64 -30 -64 -65c0 -37 29 -66 64 -66c38 0 67 29 67 66zM707 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94 h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275l-115 -275h231'], + 0xC6: [662,0,889,0,863,'863 168l-44 -168h-509v19l17 2c62 7 71 25 71 91v148h-176c-69 -131 -92 -189 -92 -212c0 -14 24 -25 67 -29h1v-19h-198v19c43 6 58 19 88 78l245 484c6 11 9 22 9 28c0 22 -28 33 -90 33v20h564v-141h-23c-13 91 -38 105 -184 105h-84c-19 0 -28 -15 -28 -37v-223h104 c98 0 137 17 139 98h21v-235h-21c-9 79 -33 100 -102 100h-141v-235c0 -50 6 -56 70 -56h73c112 0 146 20 199 130h24zM398 299v319l-158 -319h158'], + 0xC7: [676,215,667,28,633,'614 131l19 -18c-58 -83 -160 -127 -273 -127c-8 0 -15 0 -24 1l-20 -52c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5l37 89 c-75 10 -139 42 -186 91c-56 59 -88 144 -88 248c0 125 49 223 139 287c57 40 127 60 195 60c49 0 98 -7 147 -24c16 -5 30 -9 40 -9c19 0 35 12 41 33h21l9 -226h-23c-15 105 -111 186 -215 186c-145 0 -238 -116 -238 -290c0 -95 22 -185 67 -238c44 -52 110 -78 181 -78 c83 0 148 30 222 101'], + 0xC8: [928,0,611,12,597,'402 757h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23 c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47h36c143 0 186 26 231 132h28'], + 0xC9: [928,0,611,12,597,'245 757l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96 h23v-234h-23c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47h36c143 0 186 26 231 132h28'], + 0xCA: [924,0,611,12,597,'483 757h-34l-122 103l-121 -103h-34l124 167h62zM597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23c-12 84 -27 97 -113 97h-151 v-243c0 -42 27 -47 101 -47h36c143 0 186 26 231 132h28'], + 0xCB: [872,0,611,12,597,'475 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM276 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25 c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47h36c143 0 186 26 231 132h28'], + 0xCC: [928,0,333,18,315,'269 757h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0xCD: [928,0,333,18,315,'64 757l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0xCE: [924,0,333,10,321,'321 757h-34l-122 103l-121 -103h-34l124 167h62zM307 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0xCF: [872,0,333,17,315,'315 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM116 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM314 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19 c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0xD0: [662,0,722,16,685,'16 662h270c251 0 399 -121 399 -328c0 -101 -40 -194 -110 -252c-62 -51 -164 -82 -275 -82h-284v19c76 5 88 18 88 90v206h-83v44h83v194c0 74 -9 83 -88 90v19zM206 315v-237c0 -32 12 -41 51 -41c88 0 146 12 197 41c81 47 122 131 122 249c0 109 -43 197 -122 250 c-48 33 -110 48 -199 48c-39 0 -49 -8 -49 -39v-227h146v-44h-146'], + 0xD1: [888,11,722,12,707,'489 888h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM707 662v-19c-38 -4 -53 -7 -66 -18 c-19 -17 -29 -39 -29 -118v-518h-18l-441 549v-388c0 -103 16 -120 93 -131v-19h-234v19c82 9 97 24 97 131v440c-33 41 -48 53 -97 53v19h170l386 -483v340c0 51 -4 81 -19 98c-17 19 -35 21 -79 26v19h237'], + 0xD2: [928,14,722,34,688,'450 757h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47 c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0xD3: [928,14,722,34,688,'259 757l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47 c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0xD4: [924,14,722,34,688,'510 757h-34l-122 103l-121 -103h-34l124 167h62zM688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67 c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0xD5: [888,14,722,34,688,'489 888h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM688 331c0 -206 -135 -345 -327 -345 c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48 c55 53 83 147 83 267'], + 0xD6: [872,14,722,34,688,'503 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM304 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342 c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0xD8: [734,80,722,34,688,'658 734l-88 -130c43 -40 61 -61 79 -99c23 -48 39 -112 39 -173c0 -205 -134 -346 -329 -346c-67 0 -113 13 -175 50l-79 -116h-49l95 139c-44 40 -61 61 -79 99c-24 49 -38 111 -38 172c0 203 135 346 328 346c66 0 111 -13 175 -49l72 107h49zM194 123l308 452 c-44 46 -85 65 -141 65c-131 0 -213 -119 -213 -310c0 -88 12 -143 46 -207zM527 540l-308 -452c43 -47 84 -66 142 -66c132 0 213 117 213 308c0 89 -13 145 -47 210'], + 0xD9: [928,14,722,14,705,'453 757h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM705 662v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19h283v-19 c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232'], + 0xDA: [928,14,722,14,705,'264 757l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM705 662v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19 h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232'], + 0xDB: [924,14,722,14,705,'511 757h-34l-122 103l-121 -103h-34l124 167h62zM705 662v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19h283v-19c-80 -7 -91 -19 -91 -94v-312 c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232'], + 0xDC: [872,14,722,14,705,'503 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM304 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM705 662v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202 c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232'], + 0xDD: [928,0,722,22,703,'266 757l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM703 662v-19c-59 -5 -82 -26 -138 -112l-148 -228v-192c0 -78 19 -88 103 -92v-19h-306v19c89 6 101 15 101 104v171l-131 192c-92 135 -114 155 -162 157v19h279v-19l-24 -1 c-32 -1 -47 -10 -47 -26c0 -13 7 -31 18 -47l146 -221l145 222c10 15 14 31 14 42c-1 22 -16 30 -68 31v19h218'], + 0xDE: [662,0,556,16,542,'202 532h80c160 0 260 -70 260 -181c0 -66 -37 -127 -96 -159c-43 -24 -96 -34 -175 -34c-26 0 -42 1 -69 3v-52c0 -73 15 -87 94 -90v-19h-280v19c76 7 84 17 84 101v433c0 72 -10 82 -84 90v19h277v-19c-82 -7 -92 -20 -91 -111zM202 461v-260c22 -2 36 -3 57 -3 c115 0 174 50 174 147c0 104 -61 149 -199 149c-26 0 -32 -7 -32 -33'], + 0xDF: [683,9,500,12,468,'73 84v370c0 155 57 229 178 229c104 0 170 -59 170 -152c0 -72 -30 -105 -137 -154c61 -12 90 -23 122 -51c40 -34 62 -83 62 -140c0 -110 -78 -195 -179 -195c-57 0 -97 30 -97 73c0 27 19 48 45 48c22 0 40 -17 42 -40l2 -22c2 -22 10 -30 29 -30c16 0 31 5 40 18 c13 18 24 67 24 112c0 135 -44 204 -132 207c-23 1 -32 6 -32 17c0 9 8 13 29 15c65 7 95 48 95 127c0 88 -34 140 -91 140c-53 0 -86 -41 -86 -107v-549h-145v15c51 4 61 16 61 69'], + 0xE0: [678,10,444,37,442,'317 507h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54c0 62 -33 90 -78 90 c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141c-62 -22 -103 -43 -128 -66 c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0xE1: [678,10,444,37,442,'119 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54 c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141c-62 -22 -103 -43 -128 -66 c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0xE2: [674,10,444,37,442,'381 507h-34l-122 103l-121 -103h-34l124 167h62zM442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49 c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141c-62 -22 -103 -43 -128 -66c-24 -22 -34 -46 -34 -77 c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0xE3: [638,10,444,37,442,'360 638h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73 h-1c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45 s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141c-62 -22 -103 -43 -128 -66c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0xE4: [622,10,444,37,442,'373 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM174 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1c-53 -60 -102 -73 -145 -73 c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s28 -50 28 -111v-191 c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141c-62 -22 -103 -43 -128 -66c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0xE5: [713,10,444,37,442,'324 613c0 -55 -45 -99 -101 -99c-55 0 -98 44 -98 100c0 55 45 99 101 99c53 0 98 -46 98 -100zM290 614c0 36 -30 65 -67 65c-34 0 -64 -30 -64 -65c0 -37 29 -66 64 -66c38 0 67 29 67 66zM442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1 c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45 s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141c-62 -22 -103 -43 -128 -66c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0xE6: [460,7,667,38,632,'620 154l12 -5c-29 -62 -48 -91 -79 -116c-35 -29 -74 -40 -118 -40c-57 0 -95 18 -129 70c-68 -57 -102 -70 -152 -70c-68 0 -116 42 -116 107c0 60 8 117 107 145l129 36v63c0 64 -15 90 -61 90c-38 0 -68 -19 -68 -42c0 -15 3 -23 3 -42c0 -28 -17 -46 -44 -46 s-44 18 -44 48c0 61 69 108 159 108c50 0 80 -13 118 -47c45 35 72 47 119 47c102 0 149 -54 160 -183h-262c1 -100 6 -131 27 -170c17 -30 54 -50 95 -50c57 0 96 26 144 97zM355 307h166c-2 88 -25 122 -79 122c-57 0 -82 -34 -87 -122zM274 201v52 c-121 -44 -149 -68 -149 -128c0 -47 20 -87 66 -87c37 0 102 32 102 50c0 1 -1 2 -1 3c-12 39 -18 75 -18 110'], + 0xE7: [460,215,444,25,412,'398 156l14 -9c-52 -105 -105 -150 -186 -157l-21 -55c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5l38 91c-101 13 -167 101 -167 220 c0 83 29 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174c0 -115 63 -195 155 -195c57 0 93 24 141 94'], + 0xE8: [678,10,444,25,424,'310 507h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM408 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308c5 -76 10 -115 46 -163 c28 -37 65 -55 111 -55c67 0 105 31 154 105zM99 309h204c-11 81 -32 115 -98 115c-56 0 -95 -40 -106 -115'], + 0xE9: [678,10,444,25,424,'116 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM408 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308c5 -76 10 -115 46 -163 c28 -37 65 -55 111 -55c67 0 105 31 154 105zM99 309h204c-11 81 -32 115 -98 115c-56 0 -95 -40 -106 -115'], + 0xEA: [674,10,444,25,424,'380 507h-34l-122 103l-121 -103h-34l124 167h62zM408 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308c5 -76 10 -115 46 -163c28 -37 65 -55 111 -55c67 0 105 31 154 105z M99 309h204c-11 81 -32 115 -98 115c-56 0 -95 -40 -106 -115'], + 0xEB: [622,10,444,25,424,'372 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM173 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM408 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227 c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308c5 -76 10 -115 46 -163c28 -37 65 -55 111 -55c67 0 105 31 154 105zM99 309h204c-11 81 -32 115 -98 115c-56 0 -95 -40 -106 -115'], + 0xEC: [678,0,278,6,243,'230 507h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM243 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l154 55l5 -4v-351c0 -74 8 -85 74 -90v-15'], + 0xED: [678,0,278,16,273,'49 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM253 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l154 55l5 -4v-351c0 -74 8 -85 74 -90v-15'], + 0xEE: [674,0,278,-17,294,'294 507h-34l-122 103l-121 -103h-34l124 167h62zM220 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l154 55l5 -4v-351c0 -74 8 -85 74 -90v-15'], + 0xEF: [622,0,278,-10,288,'288 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM89 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM227 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l154 55l5 -4 v-351c0 -74 8 -85 74 -90v-15'], + 0xF1: [638,0,500,16,485,'392 638h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM485 0h-208l1 15c50 4 62 24 62 90v199 c0 71 -24 101 -73 101c-33 0 -57 -12 -103 -57v-276c0 -39 14 -53 65 -57v-15h-211v15c51 4 62 20 62 79v243c0 49 -7 65 -35 65c-11 0 -22 -1 -29 -4v17c55 16 88 27 137 45l8 -3v-78h1c52 59 98 81 144 81c76 0 118 -55 118 -154v-221c0 -54 12 -65 61 -70v-15'], + 0xF2: [678,10,500,29,470,'332 507h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM470 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232c122 0 216 -91 216 -229zM380 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159 c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0xF3: [678,10,500,29,470,'154 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM470 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232c122 0 216 -91 216 -229zM380 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50 c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0xF4: [674,10,500,29,470,'401 507h-34l-122 103l-121 -103h-34l124 167h62zM470 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232c122 0 216 -91 216 -229zM380 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205 c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0xF5: [638,10,500,29,470,'381 638h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM470 231c0 -139 -90 -241 -225 -241 c-121 0 -216 99 -216 238s90 232 225 232c122 0 216 -91 216 -229zM380 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0xF6: [622,10,500,29,470,'394 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM195 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM470 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232 c122 0 216 -91 216 -229zM380 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0xF8: [551,112,500,29,470,'437 551l-65 -125c67 -46 98 -108 98 -192c0 -139 -96 -244 -223 -244c-35 0 -58 5 -93 21l-65 -123h-37l73 140c-36 29 -49 44 -65 73c-20 37 -31 82 -31 126c0 136 91 233 220 233c33 0 57 -5 92 -18l57 109h39zM158 92l159 304c-27 26 -49 36 -80 36 c-71 0 -118 -62 -118 -155c0 -70 12 -127 39 -185zM340 366l-161 -306c25 -30 48 -42 82 -42c75 0 119 68 119 185c0 64 -11 108 -40 163'], + 0xF9: [678,10,500,9,480,'339 507h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31 c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6'], + 0xFA: [678,10,500,9,480,'156 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79 c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6'], + 0xFB: [674,10,500,9,480,'401 507h-34l-122 103l-121 -103h-34l124 167h62zM480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231 c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6'], + 0xFC: [622,10,500,9,480,'393 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM194 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86 c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6'], + 0xFD: [678,218,500,14,475,'143 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM475 450v-15c-24 -3 -36 -14 -50 -51l-150 -409c-52 -142 -99 -193 -175 -193c-43 0 -70 25 -70 58c0 25 19 46 43 46c18 0 34 -3 52 -13c11 -6 20 -7 26 -7c14 0 34 20 50 44 c20 29 40 92 40 108c0 15 -23 61 -42 101l-132 282c-10 22 -27 31 -53 35v14h205v-15c-43 -2 -57 -9 -57 -27c0 -11 7 -27 13 -41l112 -250l97 276c3 7 4 14 4 18c0 16 -15 24 -46 24v15h133'], + 0xFE: [683,217,500,5,470,'159 679v-299c42 57 89 80 144 80c105 0 167 -81 167 -213c0 -145 -91 -257 -210 -257c-42 0 -65 10 -101 43v-154c0 -63 11 -77 86 -78v-18h-240v18c59 5 70 19 70 71v696c0 42 -8 56 -49 56c-7 0 -12 -1 -17 -2v17c69 19 96 27 144 44zM159 332v-242 c0 -30 56 -68 103 -68c76 0 122 81 122 191c0 125 -42 187 -123 187c-42 0 -102 -38 -102 -68'], + 0xFF: [622,218,500,14,475,'396 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM197 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM475 450v-15c-24 -3 -36 -14 -50 -51l-150 -409c-52 -142 -99 -193 -175 -193 c-43 0 -70 25 -70 58c0 25 19 46 43 46c18 0 34 -3 52 -13c11 -6 20 -7 26 -7c14 0 34 20 50 44c20 29 40 92 40 108c0 15 -23 61 -42 101l-132 282c-10 22 -27 31 -53 35v14h205v-15c-43 -2 -57 -9 -57 -27c0 -11 7 -27 13 -41l112 -250l97 276c3 7 4 14 4 18 c0 16 -15 24 -46 24v15h133'], + 0x100: [773,0,722,15,707,'511 719h-311v54h311v-54zM707 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275 l-115 -275h231'], + 0x101: [561,10,444,37,442,'380 507h-311v54h311v-54zM442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42 c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141c-62 -22 -103 -43 -128 -66c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16 c29 20 35 34 35 63'], + 0x102: [876,0,722,15,707,'470 876h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM707 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19 c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275l-115 -275h231'], + 0x103: [664,10,444,37,442,'343 664h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81 v54c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141 c-62 -22 -103 -43 -128 -66c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0x104: [674,165,722,15,707,'561 0h-109v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19h-100c-31 -25 -44 -47 -44 -70c0 -28 16 -39 38 -39 c21 0 42 9 71 36l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 36 16 64 54 91zM447 257l-116 275l-115 -275h231'], + 0x105: [460,165,444,37,472,'452 -73l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 33 13 59 44 84c-24 7 -39 28 -43 70h-1c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42 c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19v-28c-22 -28 -42 -40 -64 -45c-24 -22 -35 -42 -35 -63c0 -28 16 -39 38 -39c21 0 42 9 71 36zM287 127 v141c-62 -22 -103 -43 -128 -66c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0x106: [890,14,667,28,633,'293 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM614 131l19 -18c-58 -83 -155 -127 -273 -127c-91 0 -178 32 -236 89c-61 60 -96 151 -96 250c0 100 33 183 90 247c64 71 150 104 243 104c39 0 79 -4 119 -15 c21 -6 52 -18 69 -18c19 0 36 12 42 33h20l9 -227h-23c-12 55 -27 84 -52 111c-44 47 -96 76 -161 76c-151 0 -240 -122 -240 -295c0 -110 25 -188 72 -239c44 -47 109 -72 178 -72c90 0 145 30 220 101'], + 0x107: [678,10,444,25,412,'177 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM398 156l14 -9c-32 -62 -52 -91 -82 -115c-34 -28 -72 -42 -115 -42c-111 0 -190 93 -190 222c0 83 30 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103 c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174c0 -115 63 -195 155 -195c57 0 93 24 141 94'], + 0x108: [886,14,667,28,633,'510 719h-34l-122 103l-121 -103h-34l124 167h62zM614 131l19 -18c-58 -83 -155 -127 -273 -127c-91 0 -178 32 -236 89c-61 60 -96 151 -96 250c0 100 33 183 90 247c64 71 150 104 243 104c39 0 79 -4 119 -15c21 -6 52 -18 69 -18c19 0 36 12 42 33h20l9 -227h-23 c-12 55 -27 84 -52 111c-44 47 -96 76 -161 76c-151 0 -240 -122 -240 -295c0 -110 25 -188 72 -239c44 -47 109 -72 178 -72c90 0 145 30 220 101'], + 0x109: [674,10,444,25,412,'376 507h-34l-122 103l-121 -103h-34l124 167h62zM398 156l14 -9c-32 -62 -52 -91 -82 -115c-34 -28 -72 -42 -115 -42c-111 0 -190 93 -190 222c0 83 30 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22 c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174c0 -115 63 -195 155 -195c57 0 93 24 141 94'], + 0x10A: [834,14,667,28,633,'450 784c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM614 131l19 -18c-58 -83 -155 -127 -273 -127c-91 0 -178 32 -236 89c-61 60 -96 151 -96 250c0 100 33 183 90 247c64 71 150 104 243 104c39 0 79 -4 119 -15c21 -6 52 -18 69 -18 c19 0 36 12 42 33h20l9 -227h-23c-12 55 -27 84 -52 111c-44 47 -96 76 -161 76c-151 0 -240 -122 -240 -295c0 -110 25 -188 72 -239c44 -47 109 -72 178 -72c90 0 145 30 220 101'], + 0x10B: [622,10,444,25,412,'301 572c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM398 156l14 -9c-32 -62 -52 -91 -82 -115c-34 -28 -72 -42 -115 -42c-111 0 -190 93 -190 222c0 83 30 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42 c-22 0 -40 17 -48 46l-6 22c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174c0 -115 63 -195 155 -195c57 0 93 24 141 94'], + 0x10C: [886,14,667,28,633,'543 886l-124 -167h-64l-123 167h35l120 -103l121 103h35zM614 131l19 -18c-58 -83 -155 -127 -273 -127c-91 0 -178 32 -236 89c-61 60 -96 151 -96 250c0 100 33 183 90 247c64 71 150 104 243 104c39 0 79 -4 119 -15c21 -6 52 -18 69 -18c19 0 36 12 42 33h20l9 -227 h-23c-12 55 -27 84 -52 111c-44 47 -96 76 -161 76c-151 0 -240 -122 -240 -295c0 -110 25 -188 72 -239c44 -47 109 -72 178 -72c90 0 145 30 220 101'], + 0x10D: [674,10,444,25,412,'396 674l-124 -167h-64l-123 167h35l120 -103l121 103h35zM398 156l14 -9c-32 -62 -52 -91 -82 -115c-34 -28 -72 -42 -115 -42c-111 0 -190 93 -190 222c0 83 30 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22 c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174c0 -115 63 -195 155 -195c57 0 93 24 141 94'], + 0x10E: [886,0,722,16,685,'496 886l-124 -167h-64l-123 167h35l120 -103l121 103h35zM16 662h270c129 0 232 -32 300 -91c65 -56 99 -134 99 -237c0 -119 -47 -213 -136 -270c-62 -40 -151 -64 -252 -64h-281v19c78 5 88 18 88 96v435c0 79 -12 88 -88 93v19zM206 583v-499c0 -35 9 -47 48 -47 c103 0 158 12 218 52c70 47 104 126 104 239c0 104 -32 173 -95 228c-59 52 -122 69 -222 69c-38 0 -53 -9 -53 -42'], + 0x10F: [701,10,586,27,604,'492 458l-9 19c54 37 82 73 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -20 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -45 -121 -112 -154zM491 42l-147 -52l-4 3v64c-34 -47 -72 -67 -128 -67c-111 0 -185 87 -185 215 c0 142 93 255 208 255c40 0 67 -11 105 -43v156c0 41 -9 51 -46 51c-8 0 -14 0 -22 -1v16c64 17 99 27 147 44l5 -2v-567c0 -46 8 -57 44 -57c5 0 6 0 23 1v-16zM340 102v230c0 53 -48 100 -102 100c-76 0 -125 -74 -125 -187c0 -123 54 -203 138 -203c31 0 56 11 74 32 c9 10 15 21 15 28'], + 0x110: [662,0,722,16,685,'16 662h270c251 0 399 -121 399 -328c0 -101 -40 -194 -110 -252c-62 -51 -164 -82 -275 -82h-284v19c76 5 88 18 88 90v206h-83v44h83v194c0 74 -9 83 -88 90v19zM206 315v-237c0 -32 12 -41 51 -41c88 0 146 12 197 41c81 47 122 131 122 249c0 109 -43 197 -122 250 c-48 33 -110 48 -199 48c-39 0 -49 -8 -49 -39v-227h146v-44h-146'], + 0x111: [683,10,500,27,507,'507 522h-83v-408c0 -46 8 -57 44 -57c5 0 6 0 23 1v-16l-147 -52l-4 3v64c-34 -47 -72 -67 -128 -67c-111 0 -185 87 -185 215c0 142 93 255 208 255c40 0 67 -11 105 -43v105h-175v39h175v12c0 41 -9 51 -46 51c-8 0 -14 0 -22 -1v16c64 17 99 27 147 44l5 -2v-120h83 v-39zM340 102v230c0 53 -48 100 -102 100c-76 0 -125 -74 -125 -187c0 -123 54 -203 138 -203c31 0 56 11 74 32c9 10 15 21 15 28'], + 0x112: [773,0,611,12,597,'461 719h-311v54h311v-54zM597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47 h36c143 0 186 26 231 132h28'], + 0x113: [561,10,444,25,424,'381 507h-311v54h311v-54zM408 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308c5 -76 10 -115 46 -163c28 -37 65 -55 111 -55c67 0 105 31 154 105zM99 309h204 c-11 81 -32 115 -98 115c-56 0 -95 -40 -106 -115'], + 0x114: [876,0,611,12,597,'423 876h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151 c86 0 101 17 113 96h23v-234h-23c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47h36c143 0 186 26 231 132h28'], + 0x115: [664,10,444,25,424,'333 664h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM408 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308 c5 -76 10 -115 46 -163c28 -37 65 -55 111 -55c67 0 105 31 154 105zM99 309h204c-11 81 -32 115 -98 115c-56 0 -95 -40 -106 -115'], + 0x116: [834,0,611,12,597,'350 784c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23 c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47h36c143 0 186 26 231 132h28'], + 0x117: [622,10,444,25,424,'290 572c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM408 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308c5 -76 10 -115 46 -163 c28 -37 65 -55 111 -55c67 0 105 31 154 105zM99 309h204c-11 81 -32 115 -98 115c-56 0 -95 -40 -106 -115'], + 0x118: [662,165,611,12,597,'382 0h-370v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47h36c143 0 186 26 231 132h28l-46 -169 h-123c-31 -25 -44 -47 -44 -70c0 -28 16 -39 38 -39c21 0 42 9 71 36l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 36 16 64 54 91'], + 0x119: [460,165,444,25,424,'346 -73l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 32 12 57 41 81h-7c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308c5 -76 10 -115 46 -163c28 -37 65 -55 111 -55c67 0 105 31 154 105l16 -7 c-30 -83 -78 -137 -144 -157c-30 -25 -43 -47 -43 -70c0 -28 16 -39 38 -39c21 0 42 9 71 36zM99 309h204c-11 81 -32 115 -98 115c-56 0 -95 -40 -106 -115'], + 0x11A: [886,0,611,12,597,'469 886l-124 -167h-64l-123 167h35l120 -103l121 103h35zM597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23c-12 84 -27 97 -113 97 h-151v-243c0 -42 27 -47 101 -47h36c143 0 186 26 231 132h28'], + 0x11B: [674,10,444,25,424,'396 674l-124 -167h-64l-123 167h35l120 -103l121 103h35zM408 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308c5 -76 10 -115 46 -163c28 -37 65 -55 111 -55 c67 0 105 31 154 105zM99 309h204c-11 81 -32 115 -98 115c-56 0 -95 -40 -106 -115'], + 0x11C: [886,14,722,32,709,'509 719h-34l-122 103l-121 -103h-34l124 167h62zM709 354v-18c-58 -5 -70 -15 -70 -80v-200c-55 -45 -151 -70 -254 -70c-102 0 -204 38 -270 107c-56 59 -83 136 -83 234c0 110 40 202 107 263c60 55 142 86 239 86c54 0 88 -8 133 -23c19 -7 34 -10 44 -10 c21 0 39 14 45 33h22l8 -211h-23c-25 61 -41 87 -71 116c-38 36 -90 55 -146 55c-69 0 -124 -25 -167 -69c-53 -53 -77 -144 -77 -243c0 -186 106 -298 263 -298c77 0 133 28 133 61v157c0 78 -10 86 -89 92v18h256'], + 0x11D: [674,218,500,28,470,'405 507h-34l-122 103l-121 -103h-34l124 167h62zM470 388h-83c14 -32 19 -55 19 -84c0 -52 -16 -89 -52 -116c-32 -24 -69 -39 -104 -39c-6 0 -20 1 -38 3l-19 2c-27 -8 -60 -43 -60 -63c0 -16 24 -24 78 -27l129 -6c74 -3 121 -45 121 -107c0 -40 -19 -73 -60 -105 c-52 -40 -128 -64 -200 -64c-96 0 -173 44 -173 97c0 37 26 70 98 122c-42 20 -53 31 -53 53c0 20 13 40 46 69c15 13 29 26 43 40c-67 33 -93 71 -93 134c0 91 74 163 167 163c26 0 53 -5 80 -15l22 -8c20 -7 35 -10 55 -10h77v-39zM152 338v-3c0 -96 41 -161 103 -161 c45 0 74 35 74 90c0 41 -11 86 -30 121c-16 30 -42 47 -73 47c-46 0 -74 -35 -74 -94zM433 -64c0 37 -33 49 -124 49c-49 0 -128 6 -162 13c-40 -48 -49 -63 -49 -86c0 -44 57 -73 145 -73c114 0 190 39 190 97'], + 0x11E: [876,14,722,32,709,'495 876h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM709 354v-18c-58 -5 -70 -15 -70 -80v-200c-55 -45 -151 -70 -254 -70c-102 0 -204 38 -270 107c-56 59 -83 136 -83 234c0 110 40 202 107 263 c60 55 142 86 239 86c54 0 88 -8 133 -23c19 -7 34 -10 44 -10c21 0 39 14 45 33h22l8 -211h-23c-25 61 -41 87 -71 116c-38 36 -90 55 -146 55c-69 0 -124 -25 -167 -69c-53 -53 -77 -144 -77 -243c0 -186 106 -298 263 -298c77 0 133 28 133 61v157c0 78 -10 86 -89 92v18 h256'], + 0x11F: [664,218,500,28,470,'351 664h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM470 388h-83c14 -32 19 -55 19 -84c0 -52 -16 -89 -52 -116c-32 -24 -69 -39 -104 -39c-6 0 -20 1 -38 3l-19 2c-27 -8 -60 -43 -60 -63 c0 -16 24 -24 78 -27l129 -6c74 -3 121 -45 121 -107c0 -40 -19 -73 -60 -105c-52 -40 -128 -64 -200 -64c-96 0 -173 44 -173 97c0 37 26 70 98 122c-42 20 -53 31 -53 53c0 20 13 40 46 69c15 13 29 26 43 40c-67 33 -93 71 -93 134c0 91 74 163 167 163 c26 0 53 -5 80 -15l22 -8c20 -7 35 -10 55 -10h77v-39zM152 338v-3c0 -96 41 -161 103 -161c45 0 74 35 74 90c0 41 -11 86 -30 121c-16 30 -42 47 -73 47c-46 0 -74 -35 -74 -94zM433 -64c0 37 -33 49 -124 49c-49 0 -128 6 -162 13c-40 -48 -49 -63 -49 -86 c0 -44 57 -73 145 -73c114 0 190 39 190 97'], + 0x120: [834,14,722,32,709,'420 784c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM709 354v-18c-58 -5 -70 -15 -70 -80v-200c-55 -45 -151 -70 -254 -70c-102 0 -204 38 -270 107c-56 59 -83 136 -83 234c0 110 40 202 107 263c60 55 142 86 239 86c54 0 88 -8 133 -23 c19 -7 34 -10 44 -10c21 0 39 14 45 33h22l8 -211h-23c-25 61 -41 87 -71 116c-38 36 -90 55 -146 55c-69 0 -124 -25 -167 -69c-53 -53 -77 -144 -77 -243c0 -186 106 -298 263 -298c77 0 133 28 133 61v157c0 78 -10 86 -89 92v18h256'], + 0x121: [622,218,500,28,470,'300 572c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM470 388h-83c14 -32 19 -55 19 -84c0 -52 -16 -89 -52 -116c-32 -24 -69 -39 -104 -39c-6 0 -20 1 -38 3l-19 2c-27 -8 -60 -43 -60 -63c0 -16 24 -24 78 -27l129 -6 c74 -3 121 -45 121 -107c0 -40 -19 -73 -60 -105c-52 -40 -128 -64 -200 -64c-96 0 -173 44 -173 97c0 37 26 70 98 122c-42 20 -53 31 -53 53c0 20 13 40 46 69c15 13 29 26 43 40c-67 33 -93 71 -93 134c0 91 74 163 167 163c26 0 53 -5 80 -15l22 -8c20 -7 35 -10 55 -10 h77v-39zM152 338v-3c0 -96 41 -161 103 -161c45 0 74 35 74 90c0 41 -11 86 -30 121c-16 30 -42 47 -73 47c-46 0 -74 -35 -74 -94zM433 -64c0 37 -33 49 -124 49c-49 0 -128 6 -162 13c-40 -48 -49 -63 -49 -86c0 -44 57 -73 145 -73c114 0 190 39 190 97'], + 0x122: [676,280,722,32,709,'709 354v-18c-58 -5 -70 -15 -70 -80v-200c-55 -45 -151 -70 -254 -70c-102 0 -204 38 -270 107c-56 59 -83 136 -83 234c0 110 40 202 107 263c60 55 142 86 239 86c54 0 88 -8 133 -23c19 -7 34 -10 44 -10c21 0 39 14 45 33h22l8 -211h-23c-25 61 -41 87 -71 116 c-38 36 -90 55 -146 55c-69 0 -124 -25 -167 -69c-53 -53 -77 -144 -77 -243c0 -186 106 -298 263 -298c77 0 133 28 133 61v157c0 78 -10 86 -89 92v18h256zM358 -280l-10 19c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57 c45 0 80 -35 80 -87c0 -60 -43 -123 -112 -156'], + 0x123: [766,218,500,28,470,'293 766l9 -19c-55 -38 -82 -73 -82 -106c0 -8 6 -14 14 -14c0 0 2 0 7 2c6 1 13 2 20 2c37 0 59 -19 59 -51c0 -34 -24 -57 -59 -57c-46 0 -80 38 -80 89c0 60 45 121 112 154zM470 388h-83c14 -32 19 -55 19 -84c0 -52 -16 -89 -52 -116c-32 -24 -69 -39 -104 -39 c-6 0 -20 1 -38 3l-19 2c-27 -8 -60 -43 -60 -63c0 -16 24 -24 78 -27l129 -6c74 -3 121 -45 121 -107c0 -40 -19 -73 -60 -105c-52 -40 -128 -64 -200 -64c-96 0 -173 44 -173 97c0 37 26 70 98 122c-42 20 -53 31 -53 53c0 20 13 40 46 69c15 13 29 26 43 40 c-67 33 -93 71 -93 134c0 91 74 163 167 163c26 0 53 -5 80 -15l22 -8c20 -7 35 -10 55 -10h77v-39zM152 338v-3c0 -96 41 -161 103 -161c45 0 74 35 74 90c0 41 -11 86 -30 121c-16 30 -42 47 -73 47c-46 0 -74 -35 -74 -94zM433 -64c0 37 -33 49 -124 49 c-49 0 -128 6 -162 13c-40 -48 -49 -63 -49 -86c0 -44 57 -73 145 -73c114 0 190 39 190 97'], + 0x124: [886,0,722,18,703,'518 719h-34l-122 103l-121 -103h-34l124 167h62zM703 0h-279v19c78 5 88 21 88 105v191h-303v-202c0 -73 13 -90 87 -94l1 -19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h280v-19c-73 -6 -89 -17 -89 -95v-189h303v189c0 79 -13 89 -89 95v19h280v-19 c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19'], + 0x125: [886,0,500,9,487,'376 719h-34l-122 103l-121 -103h-34l124 167h62zM487 0h-212v15c58 6 68 18 68 87v198c0 70 -25 106 -74 106c-40 0 -70 -17 -112 -63v-241c0 -69 10 -81 68 -87v-15h-216v15c58 8 64 17 64 87v471c0 43 -8 51 -51 51c-4 0 -9 0 -12 -1v16l27 8c57 17 80 24 115 36l5 -3 v-304c46 60 88 84 147 84c82 0 123 -54 123 -159v-199c0 -69 6 -77 60 -87v-15'], + 0x126: [662,0,723,17,702,'702 0h-279v19c78 5 88 21 88 105v191h-303v-202c0 -73 14 -90 88 -94v-19h-279v19c78 5 89 17 89 103v354h-89v44h89v28c0 78 -12 89 -89 95v19h280v-19c-73 -6 -89 -17 -89 -95v-28h303v28c0 79 -13 89 -89 95v19h280v-19c-74 -6 -89 -18 -89 -95v-28h88v-44h-88v-365 c0 -71 14 -86 89 -92v-19zM511 359v117h-303v-117h303'], + 0x128: [850,0,333,1,331,'302 850h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92 v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x129: [638,0,278,-25,305,'276 638h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM253 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63 c-9 0 -24 0 -42 -5v16l154 55l5 -4v-351c0 -74 8 -85 74 -90v-15'], + 0x12A: [773,0,333,11,322,'322 719h-311v54h311v-54zM315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x12B: [561,0,278,-21,290,'290 507h-311v54h311v-54zM253 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l154 55l5 -4v-351c0 -74 8 -85 74 -90v-15'], + 0x12C: [876,0,333,18,315,'276 876h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x12D: [664,0,278,-1,280,'251 664h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM253 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l154 55l5 -4v-351c0 -74 8 -85 74 -90v-15'], + 0x12E: [662,165,333,18,315,'174 0h-156v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19h-95c-31 -25 -44 -47 -44 -70c0 -28 16 -39 38 -39c21 0 42 9 71 36l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 36 16 64 54 91'], + 0x12F: [683,165,278,16,277,'146 0h-130v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l155 55l4 -4v-351c0 -74 8 -85 74 -90v-15h-61c-31 -25 -44 -47 -44 -70c0 -28 16 -39 38 -39c21 0 42 9 71 36l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 36 16 64 54 91z M180 632c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0x130: [834,0,333,18,315,'215 784c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x132: [662,14,747,18,728,'728 662v-19c-81 -6 -92 -17 -92 -94v-364c0 -137 -61 -199 -167 -199c-60 0 -101 25 -101 72c0 26 22 52 49 52c23 0 38 -14 49 -42c10 -25 11 -44 31 -44c31 0 37 20 37 70v456c0 81 -12 86 -93 93v19h287zM315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19 h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x133: [683,218,538,16,454,'454 632c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51s51 -23 51 -51zM180 632c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51zM453 457v-457c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39 c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v379c0 43 -9 60 -32 60c-10 0 -24 0 -40 -3l-5 -1v16c59 18 97 31 156 54zM253 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l155 55l4 -4v-351c0 -74 8 -85 74 -90 v-15'], + 0x134: [886,14,373,-6,367,'367 719h-34l-122 103l-121 -103h-34l124 167h62zM354 662v-19c-81 -6 -92 -17 -92 -94v-364c0 -137 -61 -199 -167 -199c-60 0 -101 25 -101 72c0 26 22 52 49 52c23 0 38 -14 49 -42c10 -25 11 -44 31 -44c31 0 37 20 37 70v456c0 81 -12 86 -93 93v19h287'], + 0x135: [674,218,278,-70,295,'295 507h-34l-122 103l-121 -103h-34l124 167h62zM193 457v-457c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v379c0 43 -9 60 -32 60c-10 0 -24 0 -40 -3l-5 -1v16 c59 18 97 31 156 54'], + 0x136: [662,280,722,33,723,'723 0h-303v19l27 1c29 1 42 10 42 24c0 27 -58 88 -137 170l-100 103l-26 -21v-185c0 -77 16 -86 89 -92v-19h-282v19c79 4 91 19 91 106v424c0 74 -11 89 -90 94v19h282v-19c-83 -6 -90 -18 -90 -95v-200l178 164c48 45 78 74 78 99c0 20 -8 30 -41 31l-25 1v19h259 v-19c-68 -5 -87 -15 -156 -81l-186 -178l234 -256c83 -91 110 -109 156 -109v-19zM328 -280l-10 19c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87c0 -60 -43 -123 -112 -156'], + 0x137: [683,280,500,7,505,'505 0h-218v15h19c12 0 21 6 21 15c0 5 -3 13 -11 23l-150 198v-184c0 -35 15 -49 55 -51l20 -1v-15h-234v15c72 12 75 15 75 67v482c0 48 -9 61 -43 61c-10 0 -19 -1 -32 -2v16l30 8c60 16 86 24 125 36l4 -2v-420l137 122c14 13 23 26 23 35c0 13 -11 17 -50 18v14h204 v-15c-64 0 -93 -12 -216 -126l-29 -27l153 -194c41 -52 73 -70 117 -73v-15zM188 -280l-10 19c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87c0 -60 -43 -123 -112 -156'], + 0x138: [459,0,542,5,532,'532 0h-130c-27 15 -48 30 -76 72c-25 38 -39 72 -64 116c-15 26 -29 49 -38 54c-20 -1 -38 -2 -54 -2v-162c0 -24 5 -40 17 -48c10 -9 31 -14 59 -14v-16h-241v16c31 0 51 3 60 11c11 7 17 24 17 50v305c0 26 -6 43 -16 50c-9 6 -28 10 -61 11v16h241v-16 c-30 -1 -51 -5 -59 -11c-12 -8 -17 -25 -17 -51v-105l45 4c23 2 42 14 57 28c22 19 38 49 52 88c16 47 44 63 94 63c39 0 77 -19 77 -52c0 -25 -25 -41 -48 -41c-45 0 -44 39 -65 39c-17 0 -23 -10 -29 -30c-15 -49 -38 -85 -69 -109c11 -4 16 -6 31 -22 c24 -26 69 -118 88 -146c32 -46 86 -73 129 -83v-15'], + 0x139: [890,0,611,12,598,'131 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM598 174l-48 -174h-538v19c74 4 87 20 87 96v431c0 77 -9 91 -87 97v19h283v-19c-82 -5 -94 -18 -94 -95v-464c0 -38 17 -45 90 -45h70c81 0 135 18 169 61c13 17 26 39 42 74 h26'], + 0x13A: [890,0,278,19,257,'29 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM257 0h-236v15c63 5 77 22 77 77v469c0 48 -10 64 -42 64c-8 0 -21 0 -37 -2v16c69 17 106 27 158 44l5 -4v-592c0 -55 11 -68 75 -72v-15'], + 0x13B: [662,280,611,12,598,'598 174l-48 -174h-538v19c74 4 87 20 87 96v431c0 77 -9 91 -87 97v19h283v-19c-82 -5 -94 -18 -94 -95v-464c0 -38 17 -45 90 -45h70c81 0 135 18 169 61c13 17 26 39 42 74h26zM258 -280l-10 19c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4 c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87c0 -60 -43 -123 -112 -156'], + 0x13C: [683,280,278,19,257,'257 0h-236v15c63 5 77 22 77 77v469c0 48 -10 64 -42 64c-8 0 -21 0 -37 -2v16c69 17 106 27 158 44l5 -4v-592c0 -55 11 -68 75 -72v-15zM98 -280l-10 19c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87 c0 -60 -43 -123 -112 -156'], + 0x13D: [683,0,611,12,598,'378 440l-9 19c54 37 82 73 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -20 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -45 -121 -112 -154zM598 174l-48 -174h-538v19c74 4 87 20 87 96v431c0 77 -9 91 -87 97v19h283v-19 c-82 -5 -94 -18 -94 -95v-464c0 -38 17 -45 90 -45h70c81 0 135 18 169 61c13 17 26 39 42 74h26'], + 0x13E: [702,0,381,19,362,'250 459l-9 19c54 37 82 73 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -20 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -45 -121 -112 -154zM257 0h-236v15c63 5 77 22 77 77v469c0 48 -10 64 -42 64c-8 0 -21 0 -37 -2v16 c69 17 106 27 158 44l5 -4v-592c0 -55 11 -68 75 -72v-15'], + 0x13F: [662,0,620,29,615,'456 345c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57zM615 174l-48 -174h-538v19c74 4 87 20 87 96v431c0 77 -9 91 -87 97v19h283v-19c-82 -5 -94 -18 -94 -95v-464c0 -38 17 -45 90 -45h70c81 0 135 18 169 61c13 17 26 39 42 74h26'], + 0x140: [683,0,370,19,354,'354 342c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57zM257 0h-236v15c63 5 77 22 77 77v469c0 48 -10 64 -42 64c-8 0 -21 0 -37 -2v16c69 17 106 27 158 44l5 -4v-592c0 -55 11 -68 75 -72v-15'], + 0x141: [662,0,611,10,597,'597 174l-49 -174h-538v19c74 3 88 25 88 92v169l-87 -53v49l87 54v221c0 74 -14 88 -87 92v19h282v-19c-75 -4 -93 -17 -93 -92v-172l155 95v-49l-155 -94v-249c0 -35 15 -43 88 -43h63c71 0 115 10 148 33c30 22 50 55 72 102h26'], + 0x142: [683,0,278,19,259,'259 429l-77 -53v-290c0 -58 10 -64 76 -71v-15h-238v15c67 5 78 16 78 74v230l-78 -54v44l78 54v199c0 52 -10 63 -42 63c-8 0 -22 -2 -37 -5v19c69 17 106 27 158 44l5 -3v-260l77 53v-44'], + 0x143: [890,11,722,12,707,'279 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM707 662v-19c-38 -4 -53 -7 -66 -18c-19 -17 -29 -39 -29 -118v-518h-18l-441 549v-388c0 -103 16 -120 93 -131v-19h-234v19c82 9 97 24 97 131v440c-33 41 -48 53 -97 53v19 h170l386 -483v340c0 51 -4 81 -19 98c-17 19 -35 21 -79 26v19h237'], + 0x144: [678,0,500,16,485,'191 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM485 0h-208l1 15c50 4 62 24 62 90v199c0 71 -24 101 -73 101c-33 0 -57 -12 -103 -57v-276c0 -39 14 -53 65 -57v-15h-211v15c51 4 62 20 62 79v243c0 49 -7 65 -35 65 c-11 0 -22 -1 -29 -4v17c55 16 88 27 137 45l8 -3v-78h1c52 59 98 81 144 81c76 0 118 -55 118 -154v-221c0 -54 12 -65 61 -70v-15'], + 0x145: [662,280,722,12,707,'707 662v-19c-38 -4 -53 -7 -66 -18c-19 -17 -29 -39 -29 -118v-518h-18l-441 549v-388c0 -103 16 -120 93 -131v-19h-234v19c82 9 97 24 97 131v440c-33 41 -48 53 -97 53v19h170l386 -483v340c0 51 -4 81 -19 98c-17 19 -35 21 -79 26v19h237zM318 -280l-10 19 c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87c0 -60 -43 -123 -112 -156'], + 0x146: [460,280,500,16,485,'485 0h-208l1 15c50 4 62 24 62 90v199c0 71 -24 101 -73 101c-33 0 -57 -12 -103 -57v-276c0 -39 14 -53 65 -57v-15h-211v15c51 4 62 20 62 79v243c0 49 -7 65 -35 65c-11 0 -22 -1 -29 -4v17c55 16 88 27 137 45l8 -3v-78h1c52 59 98 81 144 81c76 0 118 -55 118 -154 v-221c0 -54 12 -65 61 -70v-15zM213 -280l-10 19c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87c0 -60 -43 -123 -112 -156'], + 0x147: [886,11,722,12,707,'519 886l-124 -167h-64l-123 167h35l120 -103l121 103h35zM707 662v-19c-38 -4 -53 -7 -66 -18c-19 -17 -29 -39 -29 -118v-518h-18l-441 549v-388c0 -103 16 -120 93 -131v-19h-234v19c82 9 97 24 97 131v440c-33 41 -48 53 -97 53v19h170l386 -483v340 c0 51 -4 81 -19 98c-17 19 -35 21 -79 26v19h237'], + 0x148: [674,0,500,16,485,'406 674l-124 -167h-64l-123 167h35l120 -103l121 103h35zM485 0h-208l1 15c50 4 62 24 62 90v199c0 71 -24 101 -73 101c-33 0 -57 -12 -103 -57v-276c0 -39 14 -53 65 -57v-15h-211v15c51 4 62 20 62 79v243c0 49 -7 65 -35 65c-11 0 -22 -1 -29 -4v17 c55 16 88 27 137 45l8 -3v-78h1c52 59 98 81 144 81c76 0 118 -55 118 -154v-221c0 -54 12 -65 61 -70v-15'], + 0x149: [702,0,590,20,566,'47 459l-9 19c54 37 82 74 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -20 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -45 -121 -112 -154zM566 0h-208l1 15c50 4 62 24 62 90v199c0 71 -24 101 -73 101c-33 0 -57 -12 -103 -57 v-276c0 -39 14 -53 65 -57v-15h-211v15c51 4 62 20 62 79v243c0 49 -7 65 -35 65c-11 0 -22 -1 -29 -4v17c55 16 88 27 137 45l8 -3v-78h1c52 59 98 81 144 81c76 0 118 -55 118 -154v-221c0 -54 12 -65 61 -70v-15'], + 0x14A: [678,18,710,16,673,'190 662v-120c50 104 118 136 194 136c196 0 289 -168 289 -339c0 -153 -86 -357 -269 -357c-63 0 -108 37 -108 93c0 35 22 76 63 76c43 0 64 -33 64 -65c0 -11 -8 -35 -8 -43c0 -13 7 -24 22 -24c73 0 127 113 127 292c0 192 -71 321 -196 321 c-74 0 -148 -63 -174 -190v-331c0 -44 13 -95 50 -95h14v-16h-223v16c52 0 57 33 57 76v455c0 60 -13 98 -62 98h-14v17h174'], + 0x14B: [460,218,504,16,424,'424 306v-306c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v349c0 71 -24 101 -73 101c-33 0 -57 -12 -103 -57v-276c0 -39 14 -53 65 -57v-15h-211v15 c51 4 62 20 62 79v243c0 49 -7 65 -35 65c-11 0 -22 -1 -29 -4v17c55 16 88 27 137 45l8 -3v-78h1c52 59 98 81 144 81c76 0 118 -55 118 -154'], + 0x14C: [773,14,722,34,688,'516 719h-311v54h311v-54zM688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241 c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0x14D: [561,10,500,29,470,'404 507h-311v54h311v-54zM470 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232c122 0 216 -91 216 -229zM380 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50 c74 0 118 70 118 186'], + 0x14E: [876,14,722,34,688,'471 876h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256 c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0x14F: [664,10,500,29,470,'362 664h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM470 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232c122 0 216 -91 216 -229zM380 204c0 68 -18 137 -50 178 c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0x150: [890,14,722,34,688,'327 719l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM171 719l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348 c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0x151: [678,10,500,29,470,'230 507l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM74 507l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM470 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232 c122 0 216 -91 216 -229zM380 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0x152: [668,6,889,30,885,'885 168l-44 -168h-343c-58 0 -136 -6 -184 -6c-79 0 -163 37 -210 94c-49 60 -74 143 -74 241c0 129 46 225 129 285c50 36 114 54 183 54c15 0 17 0 65 -3c18 -1 93 -3 113 -3h318v-141h-23c-12 89 -39 105 -161 105h-53c-56 0 -70 -10 -70 -35v-225h101 c101 0 127 17 135 98h21v-234h-21c-9 79 -34 99 -103 99h-133v-236c0 -37 10 -55 60 -55h113c64 0 111 34 157 130h24zM431 133v392c0 73 -25 107 -94 107c-121 0 -195 -108 -195 -303c0 -90 14 -161 42 -211c32 -57 81 -87 147 -87c71 0 100 31 100 102'], + 0x153: [460,10,722,30,690,'679 145l11 -6c-52 -108 -101 -149 -179 -149c-62 0 -98 27 -128 95c-38 -69 -79 -95 -147 -95c-121 0 -206 94 -206 228c0 79 31 156 80 198c33 29 74 44 122 44c62 0 102 -20 152 -76c41 56 75 76 130 76c51 0 98 -23 126 -62c23 -31 31 -60 34 -121h-254 c7 -151 48 -220 129 -220c48 0 83 24 130 88zM579 307v27c0 56 -33 97 -79 97c-53 0 -80 -41 -81 -124h160zM343 195c0 156 -40 236 -117 236c-27 0 -55 -14 -74 -36c-20 -23 -32 -75 -32 -140c0 -75 14 -148 37 -188c20 -34 47 -51 83 -51c67 0 103 63 103 179'], + 0x154: [890,0,667,17,660,'215 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM660 0h-162l-238 308l-56 -2v-194c0 -76 12 -88 89 -93v-19h-276v19c75 6 85 17 85 105v427c0 74 -8 86 -85 92v19h272c95 0 166 -24 209 -59c33 -27 49 -76 49 -120 c0 -87 -56 -145 -181 -164l200 -253c29 -37 50 -43 94 -47v-19zM204 583v-240c96 2 131 9 177 34c36 20 57 64 57 114c0 90 -59 134 -183 134c-34 0 -51 -7 -51 -42'], + 0x155: [678,0,333,5,335,'66 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM160 458v-92c50 72 78 94 120 94c34 0 55 -20 55 -53c0 -28 -15 -45 -39 -45c-13 0 -24 5 -40 20c-11 10 -20 15 -26 15c-28 0 -70 -50 -70 -82v-225c0 -57 17 -72 85 -75v-15 h-240v15c64 12 71 19 71 69v250c0 44 -9 60 -34 60c-12 0 -21 -1 -35 -4v16c59 19 95 33 148 54'], + 0x156: [662,280,667,17,660,'660 0h-162l-238 308l-56 -2v-194c0 -76 12 -88 89 -93v-19h-276v19c75 6 85 17 85 105v427c0 74 -8 86 -85 92v19h272c95 0 166 -24 209 -59c33 -27 49 -76 49 -120c0 -87 -56 -145 -181 -164l200 -253c29 -37 50 -43 94 -47v-19zM204 583v-240c96 2 131 9 177 34 c36 20 57 64 57 114c0 90 -59 134 -183 134c-34 0 -51 -7 -51 -42zM308 -280l-10 19c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87c0 -60 -43 -123 -112 -156'], + 0x157: [460,280,333,5,335,'160 458v-92c50 72 78 94 120 94c34 0 55 -20 55 -53c0 -28 -15 -45 -39 -45c-13 0 -24 5 -40 20c-11 10 -20 15 -26 15c-28 0 -70 -50 -70 -82v-225c0 -57 17 -72 85 -75v-15h-240v15c64 12 71 19 71 69v250c0 44 -9 60 -34 60c-12 0 -21 -1 -35 -4v16 c59 19 95 33 148 54zM118 -280l-10 19c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87c0 -60 -43 -123 -112 -156'], + 0x158: [886,0,667,17,660,'446 886l-124 -167h-64l-123 167h35l120 -103l121 103h35zM660 0h-162l-238 308l-56 -2v-194c0 -76 12 -88 89 -93v-19h-276v19c75 6 85 17 85 105v427c0 74 -8 86 -85 92v19h272c95 0 166 -24 209 -59c33 -27 49 -76 49 -120c0 -87 -56 -145 -181 -164l200 -253 c29 -37 50 -43 94 -47v-19zM204 583v-240c96 2 131 9 177 34c36 20 57 64 57 114c0 90 -59 134 -183 134c-34 0 -51 -7 -51 -42'], + 0x159: [674,0,333,5,335,'321 674l-124 -167h-64l-123 167h35l120 -103l121 103h35zM160 458v-92c50 72 78 94 120 94c34 0 55 -20 55 -53c0 -28 -15 -45 -39 -45c-13 0 -24 5 -40 20c-11 10 -20 15 -26 15c-28 0 -70 -50 -70 -82v-225c0 -57 17 -72 85 -75v-15h-240v15c64 12 71 19 71 69v250 c0 44 -9 60 -34 60c-12 0 -21 -1 -35 -4v16c59 19 95 33 148 54'], + 0x15A: [890,14,556,43,491,'201 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM469 463h-25c-12 44 -23 70 -41 94c-35 45 -85 78 -145 78c-62 0 -101 -40 -101 -95c0 -68 74 -110 179 -171c106 -62 155 -120 155 -196c0 -112 -88 -187 -204 -187 c-42 0 -81 7 -118 23c-19 8 -36 11 -47 11c-15 0 -28 -12 -28 -33h-22l-29 212h22c46 -121 111 -177 206 -177c70 0 119 46 119 112c0 35 -10 58 -29 79c-35 38 -104 82 -168 116c-90 48 -122 110 -122 172c0 109 75 175 174 175c41 0 67 -6 105 -22c18 -8 34 -12 44 -12 c17 0 28 12 32 34h21'], + 0x15B: [678,10,389,51,348,'117 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM156 301l104 -63c64 -39 88 -66 88 -123c0 -67 -64 -125 -140 -125c-21 0 -50 1 -73 9c-24 8 -35 9 -46 9c-12 0 -18 -2 -24 -12h-13v157h16c21 -97 58 -141 127 -141 c51 0 83 33 83 74c0 31 -20 57 -53 75l-54 30c-83 46 -120 94 -120 145c0 79 56 123 138 123c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68'], + 0x15C: [886,14,556,43,491,'426 719h-34l-122 103l-121 -103h-34l124 167h62zM469 463h-25c-12 44 -23 70 -41 94c-35 45 -85 78 -145 78c-62 0 -101 -40 -101 -95c0 -68 74 -110 179 -171c106 -62 155 -120 155 -196c0 -112 -88 -187 -204 -187c-42 0 -81 7 -118 23c-19 8 -36 11 -47 11 c-15 0 -28 -12 -28 -33h-22l-29 212h22c46 -121 111 -177 206 -177c70 0 119 46 119 112c0 35 -10 58 -29 79c-35 38 -104 82 -168 116c-90 48 -122 110 -122 172c0 109 75 175 174 175c41 0 67 -6 105 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21'], + 0x15D: [674,10,389,40,351,'351 507h-34l-122 103l-121 -103h-34l124 167h62zM156 301l104 -63c64 -39 88 -66 88 -123c0 -67 -64 -125 -140 -125c-21 0 -50 1 -73 9c-24 8 -35 9 -46 9c-12 0 -18 -2 -24 -12h-13v157h16c21 -97 58 -141 127 -141c51 0 83 33 83 74c0 31 -20 57 -53 75l-54 30 c-83 46 -120 94 -120 145c0 79 56 123 138 123c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68'], + 0x15E: [676,215,556,43,491,'225 -99l36 86c-32 2 -63 9 -92 22c-19 8 -36 11 -47 11c-15 0 -28 -12 -28 -33h-22l-29 212h22c46 -121 111 -177 206 -177c70 0 119 46 119 112c0 35 -10 58 -29 79c-35 38 -104 82 -168 116c-90 48 -122 110 -122 172c0 109 75 175 174 175c41 0 67 -6 105 -22 c18 -8 34 -12 44 -12c17 0 28 12 32 34h21l22 -213h-25c-12 44 -23 70 -41 94c-35 45 -85 78 -145 78c-62 0 -101 -40 -101 -95c0 -68 74 -110 179 -171c106 -62 155 -120 155 -196c0 -109 -84 -183 -195 -187l-20 -51c10 2 16 3 26 3c54 0 86 -25 86 -69 c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4'], + 0x15F: [459,215,389,51,348,'145 -99l37 90c-16 1 -33 3 -47 8c-24 8 -35 9 -46 9c-12 0 -18 -2 -24 -12h-13v157h16c21 -97 58 -141 127 -141c51 0 83 33 83 74c0 31 -20 57 -53 75l-54 30c-83 46 -120 94 -120 145c0 79 56 123 138 123c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11 l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68l104 -63c64 -39 88 -66 88 -123c0 -64 -59 -120 -131 -125l-21 -55c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12 c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4'], + 0x160: [924,14,556,43,491,'429 924l-124 -167h-64l-123 167h35l120 -103l121 103h35zM469 463h-25c-12 44 -23 70 -41 94c-35 45 -85 78 -145 78c-62 0 -101 -40 -101 -95c0 -68 74 -110 179 -171c106 -62 155 -120 155 -196c0 -112 -88 -187 -204 -187c-42 0 -81 7 -118 23c-19 8 -36 11 -47 11 c-15 0 -28 -12 -28 -33h-22l-29 212h22c46 -121 111 -177 206 -177c70 0 119 46 119 112c0 35 -10 58 -29 79c-35 38 -104 82 -168 116c-90 48 -122 110 -122 172c0 109 75 175 174 175c41 0 67 -6 105 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21'], + 0x161: [674,10,389,38,349,'349 674l-124 -167h-64l-123 167h35l120 -103l121 103h35zM143 301l104 -63c64 -39 88 -66 88 -123c0 -67 -64 -125 -140 -125c-21 0 -50 1 -73 9c-24 8 -35 9 -46 9c-12 0 -18 -2 -24 -12h-13v157h16c21 -97 58 -141 127 -141c51 0 83 33 83 74c0 31 -20 57 -53 75 l-54 30c-83 46 -120 94 -120 145c0 79 56 123 138 123c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68'], + 0x162: [662,215,611,17,593,'286 0h-126v19c83 5 94 16 94 104v497h-60c-106 0 -133 -18 -153 -128h-24l7 170h562l7 -170h-24c-22 110 -48 128 -154 128h-59v-509c0 -76 14 -88 96 -92v-19h-131l-25 -65c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31 c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5'], + 0x163: [579,215,278,13,279,'88 -99l39 94c-38 14 -57 55 -57 122v301h-53c-3 2 -4 4 -4 7c0 6 6 12 17 19c26 15 59 52 97 107c6 9 14 18 20 28c5 0 7 -3 7 -13v-116h101v-32h-101v-286c0 -64 15 -90 52 -90c22 0 38 9 60 35l13 -11c-33 -51 -70 -75 -119 -76l-21 -55c10 2 16 3 26 3 c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4'], + 0x164: [886,0,611,17,593,'461 886l-124 -167h-64l-123 167h35l120 -103l121 103h35zM593 492h-24c-22 110 -48 128 -154 128h-59v-509c0 -76 14 -88 96 -92v-19h-292v19c83 5 94 16 94 104v497h-60c-106 0 -133 -18 -153 -128h-24l7 170h562'], + 0x165: [701,10,315,13,333,'221 458l-9 19c54 37 82 73 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -20 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -45 -121 -112 -154zM266 77l13 -11c-33 -52 -71 -76 -121 -76c-58 0 -88 43 -88 127v301h-53c-3 2 -4 4 -4 7 c0 6 6 12 17 19c26 15 59 52 97 107c6 9 14 18 20 28c5 0 7 -3 7 -13v-116h51v-32h-51v-286c0 -64 15 -90 52 -90c22 0 38 9 60 35'], + 0x166: [662,0,613,17,593,'593 492h-24c-22 110 -48 128 -154 128h-59v-264h126v-44h-126v-201c0 -76 14 -88 96 -92v-19h-292v19c83 5 94 16 94 104v189h-128v44h128v264h-60c-106 0 -133 -18 -153 -128h-24l7 170h562'], + 0x167: [584,5,279,11,280,'267 82l13 -11c-32 -52 -73 -76 -119 -76c-75 0 -90 64 -90 131v109h-60v44h60v144h-49c-5 0 -8 1 -8 7c0 11 19 19 34 31c19 16 43 43 63 71l37 52c4 0 7 -1 7 -12v-117h101v-32h-101v-144h97v-44h-97v-100c0 -69 20 -88 52 -88c25 0 39 11 60 35'], + 0x168: [849,14,722,14,705,'505 849h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM705 662v-19c-84 -8 -94 -32 -94 -127v-255 c0 -97 -9 -151 -54 -202c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263 c0 103 -13 125 -94 130v19h232'], + 0x169: [638,10,500,9,480,'376 638h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2 c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6'], + 0x16A: [773,14,722,14,705,'510 719h-311v54h311v-54zM705 662v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162 c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232'], + 0x16B: [561,10,500,9,480,'405 507h-311v54h311v-54zM480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343 c0 -46 11 -57 57 -57h6'], + 0x16C: [876,14,722,14,705,'483 876h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM705 662v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310 c0 67 -11 78 -90 84v19h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232'], + 0x16D: [664,10,500,9,480,'352 664h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97zM480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323 c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6'], + 0x16E: [898,14,722,14,705,'465 798c0 -55 -45 -99 -101 -99c-55 0 -98 44 -98 100c0 55 45 99 101 99c53 0 98 -46 98 -100zM431 799c0 36 -30 65 -67 65c-34 0 -64 -30 -64 -65c0 -37 29 -66 64 -66c38 0 67 29 67 66zM705 662v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202 c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232'], + 0x16F: [711,10,500,9,480,'349 611c0 -55 -45 -99 -101 -99c-55 0 -98 44 -98 100c0 55 45 99 101 99c53 0 98 -46 98 -100zM315 612c0 36 -30 65 -67 65c-34 0 -64 -30 -64 -65c0 -37 29 -66 64 -66c38 0 67 29 67 66zM480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86 c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6'], + 0x170: [890,14,722,14,705,'338 719l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM182 719l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM705 662v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202 c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232'], + 0x171: [678,10,500,9,480,'211 507l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM55 507l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86 c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6'], + 0x172: [662,165,722,14,705,'497 -73l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 30 11 54 37 77h-14c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59 c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202c-31 -36 -77 -59 -136 -68c-23 -21 -33 -41 -33 -61c0 -28 16 -39 38 -39c21 0 42 9 71 36'], + 0x173: [450,156,500,9,480,'338 4v72h-2c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6v-14c-33 -9 -60 -17 -89 -27 c-31 -25 -44 -47 -44 -70c0 -28 16 -39 38 -39c21 0 42 9 71 36l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 34 14 60 47 86'], + 0x174: [886,11,944,5,932,'627 719h-34l-122 103l-121 -103h-34l124 167h62zM932 662v-19c-53 -10 -64 -18 -83 -70c-109 -294 -119 -323 -204 -584h-15c-51 142 -108 290 -160 423l-154 -423h-15c-61 180 -133 366 -192 534c-33 95 -53 119 -104 120v19h244v-19c-51 -1 -64 -10 -64 -31 c0 -12 4 -28 11 -47l144 -376l104 283l-28 75c-33 88 -45 95 -102 96v19h265v-19c-50 -1 -77 -14 -77 -35c0 -11 8 -34 17 -58l143 -364l126 339c11 31 17 56 17 77c0 27 -19 40 -70 41v19h197'], + 0x175: [674,14,722,21,694,'528 507h-34l-122 103l-121 -103h-34l124 167h62zM694 450v-15c-20 -7 -25 -14 -41 -54l-138 -346c-16 -40 -21 -49 -28 -49s-9 5 -24 43l-91 236l-112 -240c-12 -26 -20 -39 -25 -39c-6 0 -14 13 -26 44l-135 342c-21 54 -30 61 -53 63v15h180v-15 c-35 -4 -46 -12 -46 -33c0 -10 2 -20 6 -30l99 -261l91 199l-20 56c-19 54 -32 65 -69 69v15h203v-15c-47 -7 -58 -14 -58 -35c0 -17 5 -29 17 -60l84 -224l90 222c11 27 17 51 17 67s-10 23 -44 30v15h123'], + 0x176: [886,0,722,22,703,'517 719h-34l-122 103l-121 -103h-34l124 167h62zM703 662v-19c-59 -5 -82 -26 -138 -112l-148 -228v-192c0 -78 19 -88 103 -92v-19h-306v19c89 6 101 15 101 104v171l-131 192c-92 135 -114 155 -162 157v19h279v-19l-24 -1c-32 -1 -47 -10 -47 -26c0 -13 7 -31 18 -47 l146 -221l145 222c10 15 14 31 14 42c-1 22 -16 30 -68 31v19h218'], + 0x177: [674,218,500,14,475,'405 507h-34l-122 103l-121 -103h-34l124 167h62zM475 450v-15c-24 -3 -36 -14 -50 -51l-150 -409c-52 -142 -99 -193 -175 -193c-43 0 -70 25 -70 58c0 25 19 46 43 46c18 0 34 -3 52 -13c11 -6 20 -7 26 -7c14 0 34 20 50 44c20 29 40 92 40 108c0 15 -23 61 -42 101 l-132 282c-10 22 -27 31 -53 35v14h205v-15c-43 -2 -57 -9 -57 -27c0 -11 7 -27 13 -41l112 -250l97 276c3 7 4 14 4 18c0 16 -15 24 -46 24v15h133'], + 0x178: [872,0,722,22,703,'518 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM319 822c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM703 662v-19c-59 -5 -82 -26 -138 -112l-148 -228v-192c0 -78 19 -88 103 -92v-19h-306v19 c89 6 101 15 101 104v171l-131 192c-92 135 -114 155 -162 157v19h279v-19l-24 -1c-32 -1 -47 -10 -47 -26c0 -13 7 -31 18 -47l146 -221l145 222c10 15 14 31 14 42c-1 22 -16 30 -68 31v19h218'], + 0x179: [890,0,612,10,598,'238 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM598 176l-25 -176h-563v15l437 609h-214c-71 0 -110 -11 -134 -35c-25 -26 -31 -43 -41 -98h-26l21 171h525v-15l-432 -609h252c56 0 92 10 117 28c33 23 42 51 60 110h23'], + 0x17A: [678,0,444,27,418,'154 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM418 136l-15 -136h-376v15l266 405h-135c-63 0 -78 -15 -87 -88h-18l4 118h346v-15l-269 -405h133c58 0 92 10 106 27s17 33 27 83'], + 0x17B: [834,0,612,10,598,'369 784c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM598 176l-25 -176h-563v15l437 609h-214c-71 0 -110 -11 -134 -35c-25 -26 -31 -43 -41 -98h-26l21 171h525v-15l-432 -609h252c56 0 92 10 117 28c33 23 42 51 60 110h23'], + 0x17C: [622,0,444,27,418,'287 572c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM418 136l-15 -136h-376v15l266 405h-135c-63 0 -78 -15 -87 -88h-18l4 118h346v-15l-269 -405h133c58 0 92 10 106 27s17 33 27 83'], + 0x17D: [924,0,612,10,598,'464 924l-124 -167h-64l-123 167h35l120 -103l121 103h35zM598 176l-25 -176h-563v15l437 609h-214c-71 0 -110 -11 -134 -35c-25 -26 -31 -43 -41 -98h-26l21 171h525v-15l-432 -609h252c56 0 92 10 117 28c33 23 42 51 60 110h23'], + 0x17E: [674,0,444,27,418,'384 674l-124 -167h-64l-123 167h35l120 -103l121 103h35zM418 136l-15 -136h-376v15l266 405h-135c-63 0 -78 -15 -87 -88h-18l4 118h346v-15l-269 -405h133c58 0 92 10 106 27s17 33 27 83'], + 0x17F: [683,0,334,20,383,'76 450h27c0 34 2 69 8 94c20 86 74 139 168 139c15 0 42 -2 64 -12c27 -12 40 -29 40 -50c0 -22 -19 -41 -41 -41c-21 0 -33 14 -45 34c-17 29 -31 41 -53 41c-42 0 -57 -33 -57 -91v-476c0 -29 7 -49 18 -58c13 -10 38 -14 75 -15v-15h-260v15c34 2 54 6 65 16 c12 9 18 30 18 59v328h-27v32'], + 0x180: [683,10,500,-19,472,'157 509v-133c21 51 74 84 135 84c107 0 180 -96 180 -220c0 -148 -102 -250 -234 -250c-81 0 -165 32 -165 66v453h-92v31h92v26c0 50 -8 58 -49 58c-7 0 -12 -1 -17 -2v17l30 9c47 14 73 20 115 35l5 -2v-141h187v-31h-187zM157 318v-244c0 -32 45 -52 97 -52 c57 0 130 35 130 178c0 59 -21 197 -128 197c-53 0 -99 -37 -99 -79'], + 0x188: [559,10,500,25,511,'398 156l14 -9c-40 -85 -96 -157 -198 -157c-117 0 -189 103 -189 220c0 92 37 169 101 212c33 23 72 38 120 38c26 0 54 -6 79 -16c4 67 47 115 116 115c33 0 70 -22 70 -58c0 -16 -8 -28 -25 -28c-42 0 -24 61 -67 61c-35 0 -40 -45 -40 -83c0 -18 1 -35 1 -45 c10 -13 18 -30 18 -47c0 -25 -21 -44 -46 -44c-74 0 -28 116 -108 116c-93 0 -142 -73 -142 -178c0 -91 51 -191 153 -191c69 0 107 40 143 94'], + 0x190: [684,6,580,33,562,'526 168l36 -9c-1 -40 -22 -75 -60 -107c-48 -39 -113 -58 -197 -58c-118 0 -272 42 -272 178c0 83 51 165 137 180c-74 35 -126 64 -126 146c0 129 145 185 265 186c40 0 76 -5 107 -14c49 -14 103 -58 103 -107c0 -28 -17 -60 -47 -60s-51 26 -64 81 c-9 35 -61 56 -95 56c-110 0 -165 -55 -165 -166c0 -65 45 -97 134 -97c19 0 83 11 105 11c17 0 46 -8 46 -29c0 -26 -52 -42 -74 -42c-15 0 -68 5 -81 5c-91 0 -141 -52 -141 -141c0 -85 63 -127 190 -127c110 0 161 14 199 114'], + 0x192: [706,159,434,6,426,'62 437h114c17 180 65 269 159 269c47 0 91 -29 91 -68c0 -25 -17 -45 -42 -45c-20 0 -41 11 -41 33c0 24 9 26 9 39c0 7 -9 12 -21 12c-17 0 -31 -6 -40 -18c-27 -37 -32 -157 -32 -222h119v-31h-120c-1 -156 -29 -411 -51 -468c-27 -67 -62 -97 -115 -97 c-47 0 -86 29 -86 69c0 27 15 45 42 45c22 0 39 -14 39 -36c0 -9 -1 -17 -6 -27c-4 -7 -5 -11 -5 -14c1 -8 9 -13 21 -13c46 0 69 57 69 174c0 43 -2 122 -2 149c0 66 3 130 8 218h-110v31'], + 0x195: [683,10,735,9,710,'427 287v-161c0 -46 39 -95 87 -95c100 0 166 113 166 202c0 151 -102 144 -102 195c0 20 25 32 43 32c79 0 89 -149 89 -205c0 -132 -62 -265 -213 -265c-96 0 -154 36 -154 138v172c0 52 -13 106 -76 106c-46 0 -83 -32 -110 -63v-241c0 -62 6 -82 68 -87v-15h-216v15 c63 7 64 25 64 86v477c0 42 -15 46 -48 46c-5 0 -8 0 -15 -1v16c48 14 94 28 142 44l5 -3v-304c23 29 65 84 146 84c123 0 124 -116 124 -173'], + 0x199: [683,0,500,7,505,'505 0h-218v15h19c8 0 21 3 21 16c0 8 -8 19 -21 36l-140 184v-184c0 -41 22 -49 55 -51l20 -1v-15h-234v15c67 11 75 13 75 65v385c0 117 94 218 223 218c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60c-50 0 -103 -57 -103 -139v-249l137 122 c15 13 23 28 23 35c0 11 -8 17 -50 17v15h204v-15c-27 0 -49 -2 -80 -18c-36 -19 -99 -74 -125 -98l-40 -37l155 -197c51 -64 88 -68 115 -70v-15'], + 0x19A: [683,0,278,19,257,'257 0h-236v15c63 5 77 22 77 77v255h-77v31h77v183c0 48 -10 64 -42 64c-8 0 -21 0 -37 -2v16c69 17 106 27 158 44l5 -4v-301h75v-31h-75v-260c0 -55 11 -68 75 -72v-15'], + 0x19B: [668,0,520,55,516,'516 0h-133v15c31 0 46 8 46 24c0 4 -1 11 -4 18l-97 276l-112 -250c-6 -14 -13 -30 -13 -41c0 -18 14 -25 57 -27v-15h-205v15c26 3 43 12 53 34l132 282c19 41 42 87 42 101c0 19 -13 50 -17 61l-194 -194v54l177 176c-2 4 -4 8 -6 11c-16 24 -36 44 -50 44 c-6 0 -15 -1 -26 -7c-18 -10 -34 -13 -52 -13c-24 0 -43 21 -43 46c0 33 27 58 70 58c60 0 100 -32 139 -108l106 108v-54l-88 -90l168 -458c14 -37 26 -48 50 -51v-15'], + 0x19E: [460,233,500,16,485,'485 -233h-208l1 15c50 4 62 24 62 90v432c0 71 -24 101 -73 101c-33 0 -57 -12 -103 -57v-276c0 -39 14 -53 65 -57v-15h-211v15c51 4 62 20 62 79v243c0 49 -7 65 -35 65c-11 0 -22 -1 -29 -4v17c55 16 88 27 137 45l8 -3v-78h1c52 59 98 81 144 81 c76 0 118 -55 118 -154v-454c0 -54 12 -65 61 -70v-15'], + 0x1A0: [754,14,722,34,688,'552 627h-14c93 -59 150 -167 150 -296c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c46 0 89 -8 127 -23c15 -4 34 -8 55 -8c40 0 55 4 55 23c-18 10 -34 24 -34 46c0 19 19 40 46 40s49 -21 49 -56c0 -37 -25 -60 -66 -68 c-13 -2 -27 -3 -41 -3zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0x1A1: [474,10,545,29,531,'471 382l-1 4c-18 13 -34 25 -34 47c0 19 19 41 46 41c24 0 49 -21 49 -56c0 -37 -25 -61 -67 -69l-20 -4c17 -32 26 -71 26 -114c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232c76 0 141 -35 179 -95c15 1 38 10 38 17zM380 204 c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0x1A5: [669,217,500,5,470,'159 535v-154c44 55 88 79 144 79c97 0 167 -89 167 -213c0 -145 -91 -257 -210 -257c-42 0 -65 10 -101 43v-157c0 -63 13 -74 88 -75v-18h-242v17c59 6 70 17 70 69v582c0 117 41 218 170 218c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60 c-29 0 -50 -20 -50 -100zM159 334v-246c0 -30 57 -66 104 -66c72 0 121 75 121 185c0 117 -49 193 -123 193c-46 0 -102 -36 -102 -66'], + 0x1AA: [684,233,432,20,412,'412 -177c0 -44 -59 -56 -92 -56c-114 0 -173 80 -173 188c0 177 44 355 52 532c-19 -15 -43 -24 -69 -24c-60 0 -110 50 -110 110c0 59 50 111 110 111c102 0 155 -98 155 -190c0 -191 -54 -409 -54 -603c0 -36 4 -90 51 -90c37 0 47 60 90 60c21 0 40 -17 40 -38z M201 545c-1 46 -8 105 -65 105c-46 0 -82 -28 -82 -77c0 -42 34 -76 76 -76c32 0 60 20 71 48'], + 0x1AB: [579,218,290,13,279,'266 77l13 -11c-2 -29 -2 -59 -2 -89c0 -100 -2 -195 -101 -195c-47 0 -93 19 -93 56c0 23 21 38 40 38c43 0 53 -60 89 -60c32 0 38 93 38 155c0 38 -2 47 -2 53c-2 -4 -40 -34 -86 -34c-51 0 -92 27 -92 127v301h-53c-2 1 -4 4 -4 7c0 13 22 18 44 40 c47 45 88 114 91 114c6 0 6 -8 6 -13v-116h101v-32h-101v-286c0 -31 0 -90 51 -90c32 0 50 22 61 35'], + 0x1AD: [683,10,310,14,333,'17 418l-3 7c0 7 47 43 56 54c0 111 46 204 170 204c34 0 93 -12 93 -56c0 -21 -19 -38 -39 -38c-43 0 -53 60 -90 60c-46 0 -50 -58 -50 -100v-99h101v-32h-101v-288c0 -35 2 -88 51 -88c28 0 45 16 61 35l13 -11c-27 -42 -63 -76 -120 -76c-72 0 -89 62 -89 127v301 h-53'], + 0x1AF: [774,14,766,14,810,'750 682l-1 4c-15 10 -35 23 -35 46c0 18 18 42 47 42c24 0 49 -20 49 -56c0 -45 -38 -67 -80 -72l-34 -4c-76 -9 -85 -35 -85 -126v-255c0 -97 -9 -151 -54 -202c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19 h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h231c20 0 46 13 46 20'], + 0x1B0: [561,10,500,9,539,'259 450h158c24 0 61 8 61 19c0 24 -34 17 -34 55c0 18 17 37 46 37c22 0 49 -20 49 -56c0 -45 -38 -72 -93 -72h-29v-326c0 -46 11 -57 57 -57h6v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14 h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17'], + 0x1B5: [662,0,612,10,598,'598 176l-25 -176h-563v15l216 302h-124v43h155l190 264h-214c-71 0 -110 -11 -134 -35c-25 -26 -31 -43 -41 -98h-26l21 171h525v-15l-204 -287h145v-43h-175l-198 -279h252c56 0 92 10 117 28c33 23 42 51 60 110h23'], + 0x1BA: [450,234,381,4,360,'360 429l-191 -186s37 17 66 17c76 0 124 -52 124 -123c0 -46 -27 -79 -61 -106c0 0 -121 -67 -172 -101c-24 -16 -35 -36 -35 -67c0 -40 35 -70 87 -70c36 0 69 21 76 55c9 44 28 64 52 64c30 0 48 -21 48 -44c0 -18 -12 -50 -43 -70c-32 -20 -82 -32 -125 -32 c-36 0 -68 13 -91 29c-35 25 -51 60 -51 98c0 54 29 89 67 113c50 31 74 44 134 75c24 13 36 29 36 58c0 39 -31 65 -89 65c-52 0 -74 -11 -112 -48c0 0 -14 11 -20 18l211 212h-165c-29 0 -78 -31 -85 -85h-17l32 149h324v-21'], + 0x1BB: [676,0,500,22,482,'482 360v-46c-45 -1 -90 -1 -135 -1c-15 -21 -34 -41 -52 -61l-165 -176h234c52 0 71 24 96 67l14 -6l-54 -137h-391v12l178 189c32 34 64 71 87 112l-272 1v46h296c12 32 19 66 19 101c0 88 -51 141 -139 141c-87 0 -117 -57 -147 -130l-21 5c21 115 83 199 208 199 c104 0 185 -69 185 -176c0 -51 -17 -97 -43 -140h102'], + 0x1BE: [539,12,500,73,427,'212 447l3 -62c7 1 16 1 23 1c113 0 189 -100 189 -207c0 -128 -74 -191 -201 -191c-56 0 -153 35 -153 103c0 25 21 44 46 44c69 0 36 -128 121 -128c67 0 91 106 91 158c0 85 -74 133 -150 133h-20v149h-77v31h77v61h47l3 -61h78v-31h-77'], + 0x1C0: [736,0,160,54,105,'105 0h-51v736h51v-736'], + 0x1C1: [736,0,280,54,225,'225 0h-51v736h51v-736zM105 0h-51v736h51v-736'], + 0x1C2: [736,0,435,34,400,'400 272h-157v-272h-51v272h-158v51h158v90h-158v51h158v272h51v-272h157v-51h-157v-90h157v-51'], + 0x1C3: [676,9,333,130,236,'177 176l-45 381c-1 11 -2 26 -2 38c0 49 19 81 53 81c38 0 53 -33 53 -76c0 -11 -1 -23 -3 -43l-42 -381h-14zM236 43c0 -30 -22 -52 -52 -52c-31 0 -54 22 -54 51c0 30 24 55 53 55c30 0 53 -24 53 -54'], + 0x1F0: [674,218,278,-70,294,'294 674l-124 -167h-64l-123 167h35l120 -103l121 103h35zM193 457v-457c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v379c0 43 -9 60 -32 60c-10 0 -24 0 -40 -3 l-5 -1v16c59 18 97 31 156 54'], + 0x1FA: [938,0,722,15,707,'379 646l234 -535c28 -65 42 -86 94 -92v-19h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l194 460c-32 10 -56 41 -56 77c0 44 36 79 81 79 c43 0 78 -36 78 -80c0 -36 -24 -67 -59 -76zM447 257l-116 275l-115 -275h231zM405 724c0 25 -21 45 -48 45c-23 0 -45 -21 -45 -45c0 -27 21 -48 45 -48c28 0 48 21 48 48zM256 798l141 121c17 15 22 19 40 19s25 -10 25 -26c0 -15 -13 -24 -32 -35l-141 -79h-33'], + 0x1FB: [890,10,444,37,442,'118 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM330 611c0 -55 -45 -99 -101 -99c-55 0 -98 44 -98 100c0 55 45 99 101 99c53 0 98 -46 98 -100zM296 612c0 36 -30 65 -67 65c-34 0 -64 -30 -64 -65c0 -37 29 -66 64 -66 c38 0 67 29 67 66zM442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41 c-21 0 -43 19 -43 46c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141c-62 -22 -103 -43 -128 -66c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0x1FC: [890,0,889,0,863,'433 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM863 168l-44 -168h-509v19l17 2c62 7 71 25 71 91v148h-176c-69 -131 -92 -189 -92 -212c0 -14 24 -25 67 -29h1v-19h-198v19c43 6 58 19 88 78l245 484c6 11 9 22 9 28 c0 22 -28 33 -90 33v20h564v-141h-23c-13 91 -38 105 -184 105h-84c-19 0 -28 -15 -28 -37v-223h104c98 0 137 17 139 98h21v-235h-21c-9 79 -33 100 -102 100h-141v-235c0 -50 6 -56 70 -56h73c112 0 146 20 199 130h24zM398 299v319l-158 -319h158'], + 0x1FD: [678,7,667,38,632,'218 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM620 154l12 -5c-29 -62 -48 -91 -79 -116c-35 -29 -74 -40 -118 -40c-57 0 -95 18 -129 70c-68 -57 -102 -70 -152 -70c-68 0 -116 42 -116 107c0 60 8 117 107 145l129 36v63 c0 64 -15 90 -61 90c-38 0 -68 -19 -68 -42c0 -15 3 -23 3 -42c0 -28 -17 -46 -44 -46s-44 18 -44 48c0 61 69 108 159 108c50 0 80 -13 118 -47c45 35 72 47 119 47c102 0 149 -54 160 -183h-262c1 -100 6 -131 27 -170c17 -30 54 -50 95 -50c57 0 96 26 144 97zM355 307 h166c-2 88 -25 122 -79 122c-57 0 -82 -34 -87 -122zM274 201v52c-121 -44 -149 -68 -149 -128c0 -47 20 -87 66 -87c37 0 102 32 102 50c0 1 -1 2 -1 3c-12 39 -18 75 -18 110'], + 0x1FE: [890,80,722,34,688,'245 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM658 734l-88 -130c43 -40 61 -61 79 -99c23 -48 39 -112 39 -173c0 -205 -134 -346 -329 -346c-67 0 -113 13 -175 50l-79 -116h-49l95 139c-44 40 -61 61 -79 99 c-24 49 -38 111 -38 172c0 203 135 346 328 346c66 0 111 -13 175 -49l72 107h49zM194 123l308 452c-44 46 -85 65 -141 65c-131 0 -213 -119 -213 -310c0 -88 12 -143 46 -207zM527 540l-308 -452c43 -47 84 -66 142 -66c132 0 213 117 213 308c0 89 -13 145 -47 210'], + 0x1FF: [678,112,500,29,470,'131 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM437 551l-65 -125c67 -46 98 -108 98 -192c0 -139 -96 -244 -223 -244c-35 0 -58 5 -93 21l-65 -123h-37l73 140c-36 29 -49 44 -65 73c-20 37 -31 82 -31 126 c0 136 91 233 220 233c33 0 57 -5 92 -18l57 109h39zM158 92l159 304c-27 26 -49 36 -80 36c-71 0 -118 -62 -118 -155c0 -70 12 -127 39 -185zM340 366l-161 -306c25 -30 48 -42 82 -42c75 0 119 68 119 185c0 64 -11 108 -40 163'], + 0x221: [683,150,671,27,652,'424 681v-591c0 -21 11 -42 22 -59c32 54 76 128 147 128c35 0 59 -35 59 -68c0 -26 -12 -48 -31 -65c-36 -32 -82 -36 -127 -36h-34c-28 -46 -53 -92 -77 -140h-36c24 49 50 97 77 144c-33 7 -67 32 -77 66c-33 -44 -80 -70 -135 -70c-123 0 -185 102 -185 215 c0 119 75 255 208 255c44 0 72 -15 105 -43v156c0 41 -13 52 -42 52c-8 0 -16 -1 -26 -2v16c50 13 99 27 147 44zM480 20h26c43 0 116 13 116 69c0 19 -12 40 -33 40c-51 0 -88 -70 -109 -109zM340 102v230c0 54 -49 100 -102 100c-96 0 -125 -109 -125 -187 c0 -86 32 -203 138 -203c28 0 55 10 74 32c6 7 15 19 15 28'], + 0x234: [683,150,429,19,410,'182 679v-568c0 -28 3 -58 22 -80c32 54 76 128 147 128c35 0 59 -35 59 -68c0 -26 -12 -48 -31 -65c-36 -32 -82 -36 -127 -36h-34c-28 -46 -53 -92 -77 -140h-36c24 49 50 97 77 144c-62 12 -84 65 -84 123v444c0 38 -4 64 -48 64c-10 0 -21 -1 -31 -2v16 c53 13 106 27 158 44zM238 20h26c43 0 116 13 116 69c0 19 -12 40 -33 40c-51 0 -87 -70 -109 -109'], + 0x235: [460,150,672,16,653,'424 306v-216c0 -20 10 -43 24 -57c30 51 76 126 143 126c37 0 62 -35 62 -70c0 -78 -96 -89 -162 -89h-24c-30 -49 -58 -99 -83 -150h-36c26 51 53 101 81 150h-152v15c59 4 63 40 63 90v199c0 51 -12 101 -73 101c-43 0 -75 -29 -103 -57v-276c0 -45 25 -55 65 -57v-15 h-211v15c56 3 62 29 62 79v251c0 25 -1 57 -35 57c-10 0 -20 -1 -29 -4v17c46 13 92 28 137 45l8 -3v-78h1c37 42 85 81 144 81c90 0 118 -76 118 -154zM623 90c0 21 -16 40 -38 40c-40 0 -81 -69 -99 -100c7 0 14 -1 21 -1c39 0 116 8 116 61'], + 0x236: [579,150,401,13,382,'154 418v-286c0 -29 2 -78 22 -101c32 54 76 128 147 128c35 0 59 -35 59 -68c0 -26 -12 -48 -31 -65c-36 -32 -82 -36 -127 -36h-34c-27 -46 -53 -93 -77 -140h-36c23 49 49 97 76 144c-64 12 -83 63 -83 123v301h-53c-3 2 -4 4 -4 7c0 9 11 15 17 19 c40 26 70 68 97 107c7 9 14 18 20 28c7 1 7 -9 7 -13v-116h101v-32h-101zM210 20h26c43 0 116 13 116 69c0 19 -12 40 -33 40c-51 0 -88 -70 -109 -109'], + 0x1E80: [890,11,944,5,932,'582 719h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM932 662v-19c-53 -10 -64 -18 -83 -70c-109 -294 -119 -323 -204 -584h-15c-51 142 -108 290 -160 423l-154 -423h-15c-61 180 -133 366 -192 534c-33 95 -53 119 -104 120v19h244v-19 c-51 -1 -64 -10 -64 -31c0 -12 4 -28 11 -47l144 -376l104 283l-28 75c-33 88 -45 95 -102 96v19h265v-19c-50 -1 -77 -14 -77 -35c0 -11 8 -34 17 -58l143 -364l126 339c11 31 17 56 17 77c0 27 -19 40 -70 41v19h197'], + 0x1E81: [678,14,722,21,694,'484 507h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM694 450v-15c-20 -7 -25 -14 -41 -54l-138 -346c-16 -40 -21 -49 -28 -49s-9 5 -24 43l-91 236l-112 -240c-12 -26 -20 -39 -25 -39c-6 0 -14 13 -26 44l-135 342c-21 54 -30 61 -53 63 v15h180v-15c-35 -4 -46 -12 -46 -33c0 -10 2 -20 6 -30l99 -261l91 199l-20 56c-19 54 -32 65 -69 69v15h203v-15c-47 -7 -58 -14 -58 -35c0 -17 5 -29 17 -60l84 -224l90 222c11 27 17 51 17 67s-10 23 -44 30v15h123'], + 0x1E82: [890,11,944,5,932,'359 719l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM932 662v-19c-53 -10 -64 -18 -83 -70c-109 -294 -119 -323 -204 -584h-15c-51 142 -108 290 -160 423l-154 -423h-15c-61 180 -133 366 -192 534c-33 95 -53 119 -104 120v19 h244v-19c-51 -1 -64 -10 -64 -31c0 -12 4 -28 11 -47l144 -376l104 283l-28 75c-33 88 -45 95 -102 96v19h265v-19c-50 -1 -77 -14 -77 -35c0 -11 8 -34 17 -58l143 -364l126 339c11 31 17 56 17 77c0 27 -19 40 -70 41v19h197'], + 0x1E83: [678,14,722,21,694,'260 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40zM694 450v-15c-20 -7 -25 -14 -41 -54l-138 -346c-16 -40 -21 -49 -28 -49s-9 5 -24 43l-91 236l-112 -240c-12 -26 -20 -39 -25 -39c-6 0 -14 13 -26 44l-135 342 c-21 54 -30 61 -53 63v15h180v-15c-35 -4 -46 -12 -46 -33c0 -10 2 -20 6 -30l99 -261l91 199l-20 56c-19 54 -32 65 -69 69v15h203v-15c-47 -7 -58 -14 -58 -35c0 -17 5 -29 17 -60l84 -224l90 222c11 27 17 51 17 67s-10 23 -44 30v15h123'], + 0x1E84: [834,11,944,5,932,'619 784c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM420 784c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM932 662v-19c-53 -10 -64 -18 -83 -70c-109 -294 -119 -323 -204 -584h-15 c-51 142 -108 290 -160 423l-154 -423h-15c-61 180 -133 366 -192 534c-33 95 -53 119 -104 120v19h244v-19c-51 -1 -64 -10 -64 -31c0 -12 4 -28 11 -47l144 -376l104 283l-28 75c-33 88 -45 95 -102 96v19h265v-19c-50 -1 -77 -14 -77 -35c0 -11 8 -34 17 -58l143 -364 l126 339c11 31 17 56 17 77c0 27 -19 40 -70 41v19h197'], + 0x1E85: [622,14,722,21,694,'521 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM322 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM694 450v-15c-20 -7 -25 -14 -41 -54l-138 -346c-16 -40 -21 -49 -28 -49s-9 5 -24 43 l-91 236l-112 -240c-12 -26 -20 -39 -25 -39c-6 0 -14 13 -26 44l-135 342c-21 54 -30 61 -53 63v15h180v-15c-35 -4 -46 -12 -46 -33c0 -10 2 -20 6 -30l99 -261l91 199l-20 56c-19 54 -32 65 -69 69v15h203v-15c-47 -7 -58 -14 -58 -35c0 -17 5 -29 17 -60l84 -224l90 222 c11 27 17 51 17 67s-10 23 -44 30v15h123'], + 0x1EF2: [890,0,722,22,703,'476 719h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM703 662v-19c-59 -5 -82 -26 -138 -112l-148 -228v-192c0 -78 19 -88 103 -92v-19h-306v19c89 6 101 15 101 104v171l-131 192c-92 135 -114 155 -162 157v19h279v-19l-24 -1 c-32 -1 -47 -10 -47 -26c0 -13 7 -31 18 -47l146 -221l145 222c10 15 14 31 14 42c-1 22 -16 30 -68 31v19h218'], + 0x1EF3: [678,218,500,14,475,'364 507h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23zM475 450v-15c-24 -3 -36 -14 -50 -51l-150 -409c-52 -142 -99 -193 -175 -193c-43 0 -70 25 -70 58c0 25 19 46 43 46c18 0 34 -3 52 -13c11 -6 20 -7 26 -7c14 0 34 20 50 44 c20 29 40 92 40 108c0 15 -23 61 -42 101l-132 282c-10 22 -27 31 -53 35v14h205v-15c-43 -2 -57 -9 -57 -27c0 -11 7 -27 13 -41l112 -250l97 276c3 7 4 14 4 18c0 16 -15 24 -46 24v15h133'], + 0xA727: [683,233,481,9,427,'427 303v-318c0 -118 -61 -218 -189 -218c-34 0 -93 12 -93 56c0 21 19 38 40 38c43 0 53 -60 89 -60c64 0 69 94 69 139v360c0 53 -14 106 -77 106c-44 0 -82 -32 -109 -63v-241c0 -62 6 -81 68 -87v-15h-216v15c63 8 64 26 64 87v471c0 43 -8 51 -51 51 c-4 0 -8 0 -12 -1v16c48 14 95 28 142 44l5 -3v-304c36 50 82 84 146 84c97 0 124 -74 124 -157'], + 0xA792: [676,14,734,18,700,'681 131l19 -18c-58 -83 -155 -127 -273 -127c-194 0 -326 133 -332 325h-77v34h77c9 187 145 331 333 331c39 0 79 -4 119 -15c21 -6 52 -18 69 -18c19 0 38 12 44 33h20l7 -227h-23c-12 55 -27 84 -52 111c-44 47 -96 76 -161 76c-150 0 -239 -120 -240 -291h217v-34 h-217c8 -165 83 -281 250 -281c90 0 145 30 220 101'], + 0xFB00: [683,0,605,20,655,'187 450h189c1 80 8 116 34 161s78 72 141 72c60 0 104 -26 104 -62c0 -23 -18 -41 -42 -41c-17 0 -29 9 -45 36c-18 29 -31 39 -53 39c-38 0 -56 -30 -56 -89v-116h115v-32h-115v-315c0 -75 11 -85 93 -88v-15h-245v15c57 4 68 16 68 89v314h-188v-314 c0 -75 6 -84 68 -89v-15h-235v15c72 4 83 16 83 89v314h-82v32h82c1 80 9 116 35 161s78 72 141 72c60 0 97 -26 97 -62c0 -23 -18 -41 -42 -41c-17 0 -22 9 -38 36c-18 29 -31 39 -53 39c-38 0 -56 -30 -56 -89v-116'], + 0xFB01: [683,0,558,32,523,'523 0h-220v15c62 5 68 16 68 84v261c0 49 -8 57 -103 57h-84v-327c0 -55 12 -71 68 -75v-15h-220v15c56 2 68 17 68 81v321h-67v33h68c11 94 17 137 72 186c36 31 87 47 147 47c79 0 125 -25 125 -68c0 -26 -10 -41 -35 -41c-42 0 -60 84 -121 84c-28 0 -56 -12 -75 -32 c-30 -30 -30 -67 -30 -131v-45h154c43 0 71 4 114 11l5 -4c-2 -53 -2 -77 -2 -99v-259c0 -64 17 -79 68 -84v-15'], + 0xFB02: [683,0,556,31,522,'522 0h-215v15c50 5 66 16 66 71v332h-188v-337c0 -51 16 -61 70 -66v-15h-224v15c59 5 70 14 70 92v311h-70v32h72c0 99 9 144 65 194c27 24 61 39 100 39c40 0 79 -25 111 -25c13 0 51 25 73 25l5 -2v-598c0 -56 15 -63 65 -68v-15zM373 450v142c-5 -6 -10 -8 -18 -8 c-26 0 -34 11 -50 37c-17 28 -31 35 -53 35c-44 0 -67 -45 -67 -156v-50h188'], + 0xFB03: [683,0,832,20,797,'797 0h-220v15c62 5 68 16 68 84v261c0 49 -8 58 -103 58h-84v-328c0 -55 12 -71 68 -75v-15h-220v15c63 5 68 17 68 81v322h-187v-315c0 -75 9 -82 68 -88v-15h-235v15c72 4 83 15 83 88v315h-82v32h82c1 80 9 115 35 160s78 72 141 72c60 0 98 -26 98 -62 c0 -23 -18 -41 -42 -41c-17 0 -23 9 -39 36c-18 29 -27 40 -49 40c-38 0 -60 -31 -60 -90v-115h188c11 94 17 137 72 186c36 31 87 47 147 47c79 0 125 -25 125 -68c0 -26 -10 -41 -35 -41c-42 0 -60 81 -121 81c-28 0 -56 -9 -75 -29c-30 -30 -30 -67 -30 -131v-45h154 c43 0 71 4 114 11l5 -4c-2 -53 -2 -77 -2 -99v-259c0 -64 17 -79 68 -84v-15'], + 0xFB04: [683,0,830,20,796,'796 0h-215v15c50 5 66 16 66 71v332h-188v-337c0 -51 16 -61 70 -66v-15h-224v15c59 5 70 14 70 92v311h-188v-314c0 -75 11 -86 93 -89v-15h-260v15c72 4 83 16 83 89v314h-82v32h82c1 80 9 116 35 161s78 72 141 72c60 0 104 -26 104 -62c0 -23 -18 -41 -42 -41 c-17 0 -29 9 -45 36c-18 29 -31 39 -53 39c-38 0 -56 -30 -56 -89v-116h190c0 99 9 144 65 194c27 24 61 39 100 39c40 0 79 -25 111 -25c13 0 51 25 73 25l5 -2v-598c0 -56 15 -63 65 -68v-15zM647 450v142c-5 -6 -10 -8 -18 -8c-26 0 -34 11 -50 37c-17 28 -31 34 -53 34 c-44 0 -67 -44 -67 -155v-50h188'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Latin/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/Bold/Main.js new file mode 100644 index 0000000..ebd2a80 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/Bold/Main.js @@ -0,0 +1,507 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Main/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Main-bold'] = { + directory: 'Main/Bold', + family: 'STIXMathJax_Main', + weight: 'bold', + id: 'STIXWEBMAINB', + 0x20: [0,0,250,0,0,''], + 0x21: [691,13,333,81,251,'181 234h-31c-13 124 -22 171 -51 266c-14 45 -18 65 -18 91c0 63 30 100 84 100c50 0 85 -37 85 -102c0 -23 -4 -45 -18 -89c-29 -96 -38 -143 -51 -266zM251 71c0 -47 -38 -84 -85 -84c-48 0 -84 35 -84 83c0 50 38 86 85 86c49 0 84 -36 84 -85'], + 0x22: [691,-404,555,83,472,'429 404h-43c-35 145 -43 196 -43 214c0 42 18 73 64 73c44 0 65 -32 65 -69c0 -24 -9 -70 -43 -218zM169 404h-43c-36 143 -43 195 -43 214c0 42 20 73 64 73s65 -30 65 -69c0 -24 -9 -71 -43 -218'], + 0x23: [700,0,500,5,495,'495 417h-97l-18 -134h86v-73h-97l-29 -210h-78l29 210h-113l-29 -210h-78l29 210h-95v73h106l18 134h-95v73h105l30 210h77l-29 -210h113l30 210h77l-29 -210h87v-73zM320 417h-113l-18 -134h113'], + 0x24: [750,99,500,29,472,'269 641v-214c112 -67 203 -105 203 -231c0 -57 -17 -103 -51 -135c-33 -30 -71 -46 -152 -61v-99h-56v99c-62 3 -85 9 -167 43v158l21 -2c29 -109 72 -155 146 -169v250c-133 69 -184 127 -184 216c0 69 31 120 88 151c29 16 51 20 96 25v78h56v-76 c79 -11 112 -24 159 -52v-141h-21c-26 103 -67 148 -138 160zM213 454v190c-63 -16 -89 -50 -89 -93c0 -54 29 -76 89 -97zM269 249v-219c64 12 93 58 93 104c0 54 -13 70 -93 115'], + 0x25: [706,29,749,61,688,'688 214c0 -70 -28 -143 -73 -190c-25 -27 -61 -42 -99 -42c-76 0 -128 56 -128 138c0 113 91 213 195 213c66 0 105 -45 105 -119zM663 220c0 46 -25 80 -59 80c-21 0 -41 -15 -62 -46c-32 -48 -56 -125 -56 -178c0 -43 17 -66 50 -66c30 0 55 16 79 51 c28 43 48 108 48 159zM626 706l-438 -735h-48l388 655c-40 -30 -73 -42 -113 -42c-21 0 -35 3 -60 13c2 -19 3 -29 3 -42c0 -71 -28 -147 -70 -189c-28 -28 -65 -44 -101 -44c-74 0 -126 57 -126 139c0 114 92 213 197 213c26 0 45 -8 71 -29c29 -23 47 -30 83 -30 c66 0 115 27 166 91h48zM332 560c0 34 -6 44 -32 54c-7 3 -10 4 -21 11s-15 9 -20 9c-42 0 -102 -127 -102 -216c0 -42 18 -66 50 -66c64 0 125 101 125 208'], + 0x26: [691,16,833,62,789,'789 113l-15 -25c-25 -42 -41 -61 -57 -73c-25 -19 -62 -31 -93 -31c-53 0 -90 22 -149 88c-82 -62 -147 -87 -222 -87c-112 0 -191 65 -191 182c0 89 52 160 196 221c-44 69 -52 100 -52 144c0 101 74 159 202 159c97 0 160 -50 160 -121c0 -64 -46 -108 -152 -147 l151 -214c61 73 76 105 76 145c0 29 -5 34 -64 41v24h204v-24c-43 -4 -57 -10 -73 -40c-48 -87 -65 -110 -120 -179c56 -72 81 -91 119 -91c25 0 43 13 60 40zM467 533c0 67 -43 125 -92 125c-32 0 -52 -21 -52 -56c0 -41 17 -84 74 -150c50 17 70 40 70 81zM452 100 c-32 45 -105 140 -177 258c-55 -32 -74 -56 -74 -94c0 -62 28 -116 72 -161c25 -27 59 -42 89 -42c26 0 51 11 90 39'], + 0x27: [691,-404,278,75,204,'161 404h-43c-31 148 -43 194 -43 213c0 45 22 74 64 74s65 -27 65 -70c0 -24 -9 -69 -43 -217'], + 0x28: [694,168,333,46,306,'306 -140v-28c-100 60 -140 98 -191 171c-50 72 -69 160 -69 256c0 138 46 248 131 340c39 41 67 62 129 95v-27c-135 -111 -147 -188 -147 -409c0 -212 24 -292 147 -398'], + 0x29: [694,168,333,27,287,'27 666v28c100 -60 145 -102 191 -178c45 -75 69 -160 69 -249c0 -136 -46 -248 -131 -340c-39 -41 -67 -62 -129 -95v27c139 107 147 178 147 409c0 220 -14 292 -147 398'], + 0x2A: [691,-255,500,56,448,'260 497l7 -3c37 29 46 36 72 74c20 31 34 38 56 38c27 0 53 -22 53 -48c0 -33 -44 -53 -82 -53c-44 0 -56 -4 -89 -26v-8c36 -17 51 -24 97 -28c54 -4 73 -18 73 -51c0 -29 -17 -50 -49 -50c-27 0 -39 14 -75 62c-20 27 -28 35 -57 50l-6 -4c1 -45 8 -60 27 -98 c11 -21 15 -33 15 -45c0 -30 -22 -52 -51 -52c-27 0 -49 21 -49 52c0 16 4 24 16 46c20 34 22 51 23 97l-6 4c-38 -28 -47 -36 -74 -75c-21 -31 -34 -37 -55 -37c-28 0 -50 20 -50 48c0 37 32 49 84 53c42 3 54 7 86 29v7c-40 18 -56 22 -102 26c-52 4 -68 28 -68 53 c0 29 19 48 47 48s42 -9 62 -43c23 -40 33 -48 71 -69l5 3c-1 42 -2 52 -23 91c-14 25 -18 36 -18 53c0 29 22 50 52 50c28 0 48 -22 48 -55c0 -15 -5 -24 -18 -47c-18 -30 -22 -47 -22 -77v-15'], + 0x2B: [563,57,750,65,685,'685 209h-266v-266h-88v266h-266v88h266v266h88v-266h266v-88'], + 0x2C: [155,180,250,39,223,'57 -180l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x2D: [287,-171,333,44,287,'287 171h-243v116h243v-116'], + 0x2E: [156,13,250,41,210,'210 71c0 -47 -38 -84 -85 -84c-48 0 -84 36 -84 84c0 47 38 85 85 85c46 0 84 -39 84 -85'], + 0x2F: [691,19,278,-24,302,'302 691l-236 -710h-90l236 710h90'], + 0x30: [688,13,500,24,476,'476 337c0 -211 -95 -350 -225 -350c-131 0 -227 139 -227 347c0 163 58 354 229 354c159 0 223 -185 223 -351zM318 224v225c0 147 -20 211 -69 211s-67 -59 -67 -211v-225c0 -149 19 -209 69 -209s67 60 67 209'], + 0x31: [688,0,500,65,441,'441 0h-373v24c99 1 118 18 118 105v378c0 47 -11 70 -36 70c-13 0 -37 -5 -65 -16l-20 -8v26l251 109h18v-570c0 -76 16 -92 107 -94v-24'], + 0x32: [688,0,500,17,478,'478 211l-46 -211h-415v23c146 156 181 198 232 276c32 49 51 104 51 148c0 68 -40 127 -119 127c-48 0 -91 -28 -122 -90h-28c47 140 123 204 223 204c108 0 182 -70 182 -183c0 -76 -35 -143 -114 -218l-162 -154h140c104 0 127 6 153 78h25'], + 0x33: [688,14,500,16,468,'58 524l-21 12c53 102 130 152 229 152c102 0 164 -66 164 -137c0 -46 -23 -100 -84 -127c76 -27 122 -97 122 -178c0 -146 -127 -260 -300 -260c-92 0 -152 36 -152 90c0 34 27 60 65 60c31 0 59 -16 96 -57c32 -35 55 -43 79 -43c60 0 98 50 98 122 c0 48 -18 92 -49 121c-36 34 -70 48 -153 77v17c95 30 131 72 131 131c0 70 -36 103 -99 103c-52 0 -88 -21 -126 -83'], + 0x34: [688,0,500,19,476,'476 144h-64v-144h-145v144h-248v113l313 431h80v-433h64v-111zM268 255v294l-208 -294h208'], + 0x35: [676,8,500,22,470,'470 676l-45 -127h-276l-22 -81c82 -5 113 -9 151 -20c109 -31 173 -110 173 -214c0 -146 -117 -242 -282 -242c-89 0 -147 41 -147 88c0 35 26 61 61 61c27 0 59 -11 100 -46c35 -30 67 -42 90 -42c56 0 100 43 100 104c0 68 -50 123 -142 152c-43 13 -89 17 -180 22 l97 345h322'], + 0x36: [688,13,500,28,475,'470 688v-26c-146 -30 -228 -113 -266 -258c30 13 52 17 84 17c114 0 187 -78 187 -199c0 -140 -86 -235 -215 -235c-141 0 -232 110 -232 287c0 120 50 219 139 297c88 77 154 90 303 117zM323 165c0 156 -23 211 -89 211c-16 0 -30 -4 -37 -10s-13 -63 -13 -121 c0 -96 10 -169 27 -202c10 -19 27 -29 51 -29c45 0 61 29 61 151'], + 0x37: [676,0,500,17,477,'477 676l-235 -676h-95l200 539h-199c-64 0 -86 -21 -105 -85h-26l45 222h415'], + 0x38: [688,13,500,28,472,'472 187c0 -120 -87 -200 -232 -200c-127 0 -212 63 -212 170c0 89 55 145 149 168c-99 59 -138 112 -138 188c0 106 86 175 224 175c125 0 195 -65 195 -145c0 -64 -41 -111 -136 -140c113 -77 150 -132 150 -216zM339 537c0 68 -32 122 -88 122c-47 0 -83 -36 -83 -83 c0 -56 46 -111 130 -154c33 44 41 67 41 115zM333 127c0 74 -24 106 -133 179c-41 -60 -51 -102 -51 -145c0 -89 32 -142 93 -142c54 0 91 37 91 108'], + 0x39: [688,13,500,26,473,'31 -13v26c144 29 226 112 268 260c-27 -14 -49 -19 -88 -19c-109 0 -185 79 -185 205c0 129 90 229 215 229c140 0 232 -115 232 -294c0 -120 -52 -224 -145 -297c-88 -69 -146 -93 -297 -110zM317 461c0 69 -11 139 -25 167c-12 23 -28 33 -54 33 c-45 0 -60 -30 -60 -148c0 -155 23 -214 85 -214c15 0 34 4 41 9c3 2 4 7 5 20c7 27 8 56 8 86v47'], + 0x3A: [472,13,333,82,251,'251 387c0 -47 -38 -84 -85 -84s-84 37 -84 85c0 47 37 84 85 84c46 0 84 -38 84 -85zM251 71c0 -47 -38 -84 -85 -84c-48 0 -84 36 -84 84c0 47 38 85 85 85c46 0 84 -39 84 -85'], + 0x3B: [472,180,333,82,266,'251 387c0 -47 -38 -84 -85 -84s-84 37 -84 85c0 47 37 84 85 84c46 0 84 -38 84 -85zM100 -180l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x3C: [534,24,750,80,670,'670 -24l-590 258v40l590 260v-88l-436 -192l436 -190v-88'], + 0x3D: [399,-107,750,68,682,'682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x3E: [534,24,750,80,670,'670 234l-590 -258v88l436 190l-436 192v88l590 -260v-40'], + 0x3F: [689,13,500,57,445,'253 232h-30c-3 25 -3 34 -3 45c3 93 76 157 76 246c0 82 -31 130 -84 130c-37 0 -61 -16 -61 -40c0 -10 3 -16 15 -29c17 -19 22 -31 22 -51c0 -38 -34 -67 -65 -67c-39 0 -66 34 -66 78c0 83 74 145 184 145c127 0 204 -71 204 -166c0 -69 -29 -109 -121 -166 c-63 -39 -71 -52 -71 -125zM323 71c0 -47 -37 -84 -84 -84c-48 0 -85 37 -85 84s38 85 86 85c45 0 83 -39 83 -85'], + 0x40: [691,19,930,108,822,'698 76l13 -35c-97 -46 -149 -60 -224 -60c-213 0 -379 149 -379 349c0 201 171 361 381 361c193 0 333 -131 333 -301c0 -141 -92 -246 -194 -246c-50 0 -82 29 -89 74c-35 -46 -76 -74 -126 -74c-58 0 -94 50 -94 114c0 118 70 261 203 261c36 0 51 -10 73 -53l11 40 h71l-66 -260c-1 -5 -2 -12 -2 -18c0 -31 11 -48 35 -48c67 0 131 99 131 205c0 145 -132 267 -288 267c-166 0 -287 -137 -287 -327c0 -174 120 -298 295 -298c68 0 122 12 203 49zM577 411c0 39 -16 60 -45 60c-80 0 -136 -113 -136 -193c0 -54 23 -87 59 -87 c31 0 61 25 83 68c22 44 39 110 39 152'], + 0x41: [690,0,722,9,689,'689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0x42: [676,0,667,16,619,'426 365v-1c110 -14 193 -81 193 -176c0 -107 -96 -188 -274 -188h-329v25c73 8 88 22 88 78v467c0 59 -20 76 -88 81v25h317c161 0 252 -57 252 -160c0 -76 -42 -127 -159 -151zM264 592v-219c125 0 156 38 156 136c0 88 -31 137 -99 137c-40 0 -57 -15 -57 -54z M264 343v-245c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 155 -157 155h-26'], + 0x43: [691,19,722,49,687,'657 152l30 -25c-93 -115 -173 -146 -288 -146c-215 0 -350 147 -350 342c0 212 143 368 347 368c48 0 98 -11 156 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25c-19 54 -43 87 -67 115c-46 55 -100 90 -167 90c-105 0 -184 -113 -184 -313 c0 -101 12 -174 54 -240c29 -46 88 -76 147 -76c44 0 86 12 126 34c32 18 60 43 104 89'], + 0x44: [676,0,722,14,690,'14 676h312c228 0 364 -125 364 -331c0 -103 -43 -201 -115 -264c-61 -53 -151 -81 -252 -81h-309v25c58 2 83 25 83 73v486c0 46 -19 61 -83 67v25zM259 598v-498c0 -45 13 -65 58 -65c66 0 115 24 149 72c31 45 50 135 50 223c0 86 -12 160 -41 211 c-38 66 -88 101 -163 101c-39 0 -53 -16 -53 -44'], + 0x45: [676,0,667,16,641,'641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54 c34 28 52 58 82 123h28'], + 0x46: [676,0,611,16,583,'583 474h-24c-14 76 -25 99 -60 129c-31 27 -75 39 -163 39c-51 0 -70 -14 -70 -51v-228c100 0 139 36 153 149h25v-338h-25c-10 118 -51 153 -153 155v-228c0 -57 18 -72 110 -76v-25h-360v25c74 8 88 22 88 78v472c0 58 -19 72 -88 76v25h567v-202'], + 0x47: [691,19,778,37,755,'755 287v-25c-75 -8 -86 -37 -86 -100v-118c-65 -38 -173 -63 -277 -63c-201 0 -355 136 -355 350c0 199 148 360 348 360c52 0 97 -11 155 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25c-35 76 -53 111 -96 149s-91 56 -138 56c-116 0 -184 -113 -184 -320 c0 -103 15 -182 48 -237c35 -58 78 -87 155 -87c71 0 96 34 96 85v89c0 52 -16 69 -102 74v25h344'], + 0x48: [676,0,778,21,759,'759 0h-339v25c73 8 89 22 89 73v228h-241v-228c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-204h241v204c0 56 -19 69 -89 74v25h339v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25'], + 0x49: [676,0,389,20,370,'370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x4A: [676,96,500,3,478,'478 676v-25c-75 -5 -88 -23 -88 -95v-430c0 -151 -73 -222 -212 -222c-40 0 -83 6 -108 23c-37 25 -67 68 -67 110c0 37 34 74 71 74c38 0 72 -36 72 -76c0 -30 -27 -40 -27 -66c0 -20 17 -32 45 -32c46 0 64 28 64 90v550c0 58 -20 71 -101 74v25h351'], + 0x4B: [676,0,778,30,769,'769 0h-334v25c65 2 77 8 77 21c0 11 -6 21 -25 45l-181 225l-27 -25v-196c0 -49 15 -61 87 -70v-25h-336v25c74 7 87 19 87 76v472c0 62 -18 74 -87 78v25h337v-25c-74 -5 -88 -23 -88 -84v-223l212 215c31 31 40 42 40 58c0 20 -12 28 -48 31l-35 3v25h289v-25 c-99 -12 -136 -29 -322 -227l305 -378c12 -15 24 -20 49 -21v-25'], + 0x4C: [677,0,667,19,638,'638 227l-42 -227h-577v25c73 9 86 20 86 73v478c0 57 -18 71 -86 75v25l348 1v-25c-87 -4 -100 -17 -100 -99v-464c0 -43 20 -58 85 -58c83 0 129 18 170 55c34 31 60 79 87 141h29'], + 0x4D: [676,0,944,14,921,'921 0h-332v25c75 7 89 25 89 84v496l-252 -605h-27l-252 594v-465c0 -76 19 -98 101 -104v-25h-234v25c78 8 91 18 91 83v469c0 54 -16 68 -89 74v25h253l199 -472l201 472h252v-25c-73 -5 -88 -22 -88 -97v-428c0 -73 8 -94 88 -101v-25'], + 0x4E: [676,18,722,16,701,'701 676v-25c-65 -10 -78 -20 -78 -83v-586h-28l-447 545v-396c0 -77 17 -97 94 -106v-25h-226v25c73 9 88 23 88 84v470c-42 58 -65 72 -85 72v25h211l349 -430v299c0 80 -18 99 -92 106v25h214'], + 0x4F: [691,19,778,35,743,'743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0x50: [676,0,611,16,600,'16 676h315c167 0 269 -59 269 -181c0 -80 -46 -141 -129 -172c-43 -16 -77 -19 -209 -20v-192c0 -67 8 -76 87 -86v-25h-333v25c19 2 34 4 45 9c33 13 39 41 39 92v427c0 78 -14 92 -84 98v25zM262 606v-268c125 1 166 35 166 146s-33 157 -116 157 c-33 0 -50 -12 -50 -35'], + 0x51: [691,176,778,35,743,'730 -117l6 -24c-65 -25 -112 -35 -179 -35c-88 0 -172 32 -228 88c-23 23 -35 42 -56 86c-153 46 -238 177 -238 332c0 217 149 361 354 361c206 0 354 -144 354 -364c0 -171 -95 -285 -253 -333c18 -37 28 -52 47 -71c34 -34 76 -52 123 -52c20 0 37 2 70 12zM566 335 c0 212 -64 323 -178 323c-112 0 -176 -114 -176 -323c0 -207 61 -321 177 -321s177 116 177 321'], + 0x52: [676,0,722,26,716,'716 0h-205l-207 313h-28v-196c0 -73 10 -82 88 -92v-25h-338v25c78 9 88 16 88 95v431c0 78 -14 95 -88 100v25h308c195 0 296 -57 296 -172c0 -45 -16 -91 -45 -118c-28 -25 -54 -41 -112 -57l199 -282c9 -13 26 -22 44 -22v-25zM276 597v-252c131 1 183 27 183 149 c0 106 -37 148 -130 148c-39 0 -53 -12 -53 -45'], + 0x53: [692,19,556,35,513,'484 474h-28c-20 65 -36 95 -70 130c-36 37 -78 56 -123 56c-69 0 -110 -42 -110 -99c0 -49 23 -72 103 -114c49 -26 97 -49 148 -77c64 -35 109 -100 109 -176c0 -126 -100 -213 -248 -213c-44 0 -81 7 -130 24c-22 7 -33 10 -41 10c-16 0 -24 -8 -30 -34h-29v248h29 c17 -71 31 -106 60 -143c38 -48 86 -72 144 -72c77 0 126 44 126 113c0 36 -23 64 -57 88s-79 44 -122 65c-113 54 -171 109 -171 210c0 127 83 201 219 201c39 0 71 -6 117 -23c21 -7 33 -10 42 -10c18 0 25 7 32 34h30v-218'], + 0x54: [676,0,667,31,636,'636 475h-29c-17 119 -69 165 -192 169v-527c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92v527c-124 -4 -176 -50 -193 -169h-29l3 201h600'], + 0x55: [676,19,722,16,701,'701 676v-25c-64 -10 -78 -26 -78 -85v-314c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300 c0 73 -23 93 -97 99v25h219'], + 0x56: [676,18,722,16,701,'701 676v-25c-52 -7 -66 -20 -90 -82l-228 -587h-27l-256 599c-24 56 -34 63 -84 70v25h336v-25l-33 -2c-38 -2 -53 -13 -53 -36c0 -15 3 -24 23 -72l138 -334l127 329c17 44 20 55 20 71c0 32 -15 39 -86 44v25h213'], + 0x57: [676,15,1000,19,981,'981 676v-25c-33 -3 -56 -24 -69 -64l-200 -602h-27l-171 477l-186 -477h-28l-212 602c-17 49 -27 58 -69 64v25h294v-25c-52 -4 -64 -13 -64 -42c0 -9 1 -16 7 -33l120 -364l118 308l-35 96c-9 25 -31 33 -72 35v25h312v-25l-13 -1c-44 -3 -59 -12 -59 -36 c0 -10 3 -22 14 -56l108 -336l112 343c5 14 7 29 7 42c0 31 -15 41 -69 44v25h182'], + 0x58: [676,0,722,16,699,'699 0h-340v25l28 2c35 2 52 11 52 28c0 12 -9 35 -21 54l-101 162l-38 -51c-75 -101 -94 -132 -94 -153c0 -26 20 -36 81 -42v-25h-250v25c50 6 74 19 104 56l175 221l-198 291c-31 45 -44 55 -80 58v25h346v-25l-31 -2c-36 -2 -48 -10 -48 -31c0 -12 2 -17 15 -37 l97 -150l56 77c47 65 58 84 58 106c0 24 -13 31 -51 35l-21 2v25h250v-25c-75 -7 -101 -25 -188 -146l-80 -111l182 -283c47 -73 63 -85 97 -86v-25'], + 0x59: [676,0,722,15,699,'699 676v-25c-34 -5 -54 -16 -68 -39l-191 -311v-178c0 -78 13 -91 92 -98v-25h-347v25c83 7 93 28 93 103v136l-180 328c-19 34 -49 57 -83 59v25h335v-25l-27 -2c-40 -3 -54 -6 -54 -29c0 -9 12 -36 24 -59l120 -232l109 178c26 43 41 82 41 102c0 29 -16 37 -84 42v25 h220'], + 0x5A: [676,0,667,28,634,'634 242l-27 -242h-579v16l382 625l-83 -3c-154 -6 -195 -26 -240 -169h-28l22 207h523v-16l-379 -625h83c95 0 161 11 202 40c56 40 69 82 98 167h26'], + 0x5B: [678,149,333,67,301,'301 -149h-234v827h234v-33h-63c-56 0 -67 -11 -67 -70v-638c0 -43 9 -53 50 -53h80v-33'], + 0x5C: [691,19,278,-25,303,'303 -19h-92l-236 710h93'], + 0x5D: [678,149,333,32,266,'266 -149h-234v33h80c42 0 50 9 50 53v638c0 58 -11 70 -67 70h-63v33h234v-827'], + 0x5E: [676,-311,581,73,509,'509 311h-89l-129 272l-129 -272h-89l178 365h80'], + 0x5F: [-75,125,500,0,500,'500 -125h-500v50h500v-50'], + 0x60: [713,-528,333,8,246,'246 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28'], + 0x61: [473,14,500,25,488,'473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60 c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0x62: [676,14,556,17,521,'211 676v-259c38 40 73 56 122 56c111 0 188 -95 188 -234c0 -150 -92 -253 -226 -253c-50 0 -86 15 -132 57l-79 -56h-12v607c0 40 -9 49 -55 58v24h194zM211 360v-263c0 -48 27 -79 69 -79c64 0 94 64 94 203c0 132 -31 198 -93 198c-33 0 -52 -16 -70 -59'], + 0x63: [473,14,444,25,430,'412 109l18 -18c-55 -75 -111 -105 -191 -105c-125 0 -214 93 -214 236c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169c0 -136 52 -220 139 -220c41 0 70 14 107 56'], + 0x64: [676,14,556,25,534,'534 20l-62 -8c-62 -8 -87 -12 -133 -25v65c-47 -50 -80 -66 -133 -66c-105 0 -181 98 -181 235c0 145 82 252 192 252c46 0 76 -16 119 -62v183c0 46 -9 53 -76 58v24h215v-575c0 -42 13 -55 59 -58v-23zM336 112v243c-15 38 -45 62 -78 62c-58 0 -85 -59 -85 -188 c0 -127 25 -187 78 -187c23 0 46 12 66 37c10 13 19 28 19 33'], + 0x65: [473,14,444,25,427,'403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187c43 0 74 19 115 68zM298 282v21c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160 h134'], + 0x66: [691,0,333,14,389,'14 461h57c0 79 7 139 40 179c27 33 71 51 135 51c85 0 143 -41 143 -100c0 -37 -25 -64 -62 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-36 0 -50 -20 -50 -79v-120h86v-44h-86v-310c0 -65 12 -81 82 -83v-24h-278v24c46 5 57 18 57 63v330h-57v44'], + 0x67: [473,206,500,28,483,'254 68h52c108 0 177 -46 177 -120c0 -94 -94 -154 -261 -154c-126 0 -194 32 -194 92c0 41 33 66 96 75c-64 23 -82 45 -82 82c0 59 39 94 119 117c-71 20 -124 76 -124 152c0 99 84 161 203 161c40 0 68 -6 112 -22h129v-53h-80c28 -25 40 -58 40 -98 c0 -63 -31 -107 -92 -132c-33 -14 -36 -14 -127 -14c-39 0 -69 -19 -69 -49c0 -27 21 -37 101 -37zM306 312c0 93 -19 130 -67 130c-47 0 -65 -33 -65 -131c0 -93 18 -129 66 -129s66 36 66 130zM315 -52h-164c-28 -23 -35 -34 -35 -55c0 -44 46 -67 134 -67 c99 0 154 28 154 66c0 34 -24 56 -89 56'], + 0x68: [676,0,556,15,534,'534 0h-234v24c34 4 46 20 46 61v224c0 71 -12 97 -51 97c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-263c0 -41 11 -56 48 -61v-24h-240v24c45 9 53 9 53 65v502c0 48 -8 52 -54 61v24h193v-280c49 58 94 77 147 77c82 0 130 -57 130 -136v-250 c0 -46 14 -63 49 -63v-24'], + 0x69: [691,0,278,15,256,'215 613c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78zM256 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24'], + 0x6A: [691,203,333,-57,263,'263 613c0 -44 -34 -77 -79 -77c-44 0 -76 33 -76 77s34 78 78 78c42 0 77 -36 77 -78zM260 461v-459c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22 c0 -10 13 -17 32 -17c34 0 48 23 48 76v474c0 43 -12 55 -63 59v24h202'], + 0x6B: [676,0,556,22,543,'543 0h-234v24c28 1 42 7 42 19c0 8 -6 20 -24 45l-95 134l-23 -24v-114c0 -47 5 -53 52 -60v-24h-239v24c33 3 48 21 48 60v510c0 38 -14 55 -48 58v24h187v-431l128 128c11 11 21 29 21 38c0 13 -9 19 -35 23l-24 4v23h214v-23c-63 -8 -89 -26 -189 -131l194 -268 c9 -12 14 -15 25 -15v-24'], + 0x6C: [676,0,278,15,256,'256 0h-240v24c34 3 51 19 51 63v500c0 37 -17 62 -52 65v24h191v-589c0 -46 17 -62 50 -63v-24'], + 0x6D: [473,0,833,15,814,'814 0h-237v24c38 3 48 17 48 59v228c0 62 -15 95 -53 95c-18 0 -37 -7 -58 -25c-13 -10 -27 -28 -27 -33v-265c0 -38 11 -55 46 -59v-24h-232v24c37 3 47 18 47 59v240c0 60 -15 83 -54 83c-23 0 -84 -38 -84 -62v-261c0 -38 10 -54 45 -59v-24h-239v24 c44 8 55 21 55 62v287c0 47 -12 58 -56 64v24h192v-75h3c38 61 80 87 144 87c63 0 98 -24 128 -87c52 64 90 87 147 87c82 0 135 -53 135 -142v-248c0 -43 11 -57 50 -59v-24'], + 0x6E: [473,0,556,21,539,'539 0h-234v24c34 4 46 20 46 60v237c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h191v-75h1c34 60 82 87 142 87c82 0 135 -55 135 -142v-247 c0 -45 10 -57 49 -60v-24'], + 0x6F: [473,14,500,25,476,'476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0x70: [473,205,556,19,524,'212 461v-69c34 60 72 81 131 81c111 0 181 -77 181 -224c0 -155 -72 -262 -192 -262c-45 0 -70 13 -118 60v-126c0 -67 16 -99 77 -102v-24h-272v24c48 8 56 21 56 63v490c0 44 -11 58 -55 65v24h192zM214 346v-239c15 -38 44 -65 77 -65c55 0 85 54 85 192 c0 123 -25 182 -76 182c-23 0 -48 -13 -68 -37c-11 -13 -18 -27 -18 -33'], + 0x71: [473,205,556,34,536,'536 -205h-267v24c65 9 73 25 73 91v132c-35 -45 -75 -56 -123 -56c-103 0 -185 88 -185 233c0 140 87 254 222 254c50 0 81 -13 132 -56l77 55h16v-595c0 -40 9 -49 55 -58v-24zM342 98v256c0 55 -27 87 -67 87c-56 0 -95 -63 -95 -205c0 -136 39 -196 93 -196 c34 0 69 20 69 58'], + 0x72: [473,0,444,28,434,'218 461v-82c47 68 85 94 135 94c47 0 81 -33 81 -79c0 -40 -26 -68 -63 -68c-26 0 -43 10 -60 38c-11 18 -20 23 -28 23c-35 0 -61 -45 -61 -104v-177c0 -64 11 -78 72 -82v-24h-265v24c44 8 54 19 54 60v289c0 47 -12 58 -55 64v24h190'], + 0x73: [473,14,389,25,361,'340 326h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -60 96 -88c100 -42 138 -85 138 -156c0 -90 -63 -152 -154 -152c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6c-9 0 -15 -7 -26 -28h-25v165h28c21 -87 67 -132 137 -132 c45 0 75 26 75 65c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145'], + 0x74: [630,12,333,19,332,'307 112l25 -11c-41 -82 -81 -113 -148 -113c-69 0 -112 40 -112 107v322h-53v27c72 49 109 102 167 186h25v-169h95v-44h-95v-298c0 -40 11 -60 39 -60c21 0 37 15 57 53'], + 0x75: [461,14,556,16,538,'538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0x76: [461,14,500,21,485,'485 461v-24c-31 -3 -39 -9 -58 -55l-160 -396h-26l-120 296c-20 49 -57 129 -66 141c-6 8 -12 11 -34 14v24h250v-24l-18 -2c-25 -3 -35 -9 -35 -24c0 -7 1 -11 9 -31l79 -203l72 182c8 19 11 33 11 45c0 24 -12 31 -55 33v24h151'], + 0x77: [461,14,722,23,707,'707 461v-24c-26 -5 -37 -16 -50 -50l-155 -401h-23l-102 310l-125 -310h-24l-148 374c-25 62 -31 72 -57 77v24h222v-24c-28 -4 -38 -11 -38 -28c0 -13 12 -44 39 -115l45 -118l68 171c-2 6 -4 12 -6 19c-19 66 -20 67 -59 71v24h234v-24c-38 -3 -48 -8 -48 -24 c0 -10 7 -38 27 -106c20 -70 24 -85 34 -127l35 94c29 78 44 115 44 128c0 23 -11 31 -48 35v24h135'], + 0x78: [461,0,500,12,484,'484 0h-241v24c32 2 45 8 45 20s-9 29 -33 64c-15 21 -29 42 -42 63c-5 -6 -10 -13 -16 -20c-39 -47 -64 -87 -64 -103c0 -15 14 -22 50 -24v-24h-169v24c37 2 57 18 113 93l43 56c15 19 7 10 22 28l-128 197c-20 30 -26 35 -52 39v24h250v-24c-33 -1 -47 -7 -47 -19 c0 -13 25 -55 58 -98c4 -5 9 -11 13 -17l36 46c27 35 38 49 38 64s-8 20 -31 22l-20 2v24h168v-24c-31 -5 -51 -16 -70 -39l-101 -126l148 -228c7 -11 14 -15 30 -20v-24'], + 0x79: [461,205,500,16,482,'482 461v-24c-31 -4 -44 -12 -60 -55l-148 -398c-35 -94 -56 -133 -77 -156c-21 -22 -50 -33 -84 -33c-57 0 -97 32 -97 79c0 38 24 67 62 67c34 0 60 -23 60 -52c0 -4 -1 -9 -2 -14c-1 -3 -1 -6 -1 -6c0 -9 8 -17 17 -17c24 0 49 32 66 82l18 53l-119 290 c-20 50 -58 134 -67 146c-6 8 -12 11 -34 14v24h249v-24l-16 -1c-25 -2 -36 -10 -36 -25c0 -4 9 -30 20 -58l72 -186l68 188c9 26 11 37 11 49c0 24 -11 31 -54 33v24h152'], + 0x7A: [461,0,444,21,420,'420 160l-16 -160h-383v25l234 404c-142 0 -166 -15 -191 -110h-26l7 142h371v-26l-231 -403h29c81 0 114 13 147 59c14 21 22 37 31 69h28'], + 0x7B: [698,175,394,22,340,'340 -163v-12c-99 1 -143 11 -173 38c-26 22 -38 55 -38 103v179c0 71 -22 95 -107 116c85 21 107 45 107 116v179c0 55 16 92 50 113c32 21 72 28 161 29v-12c-80 -17 -106 -48 -106 -124v-171c0 -84 -24 -110 -118 -130c94 -20 118 -46 118 -130v-171 c0 -76 27 -107 106 -123'], + 0x7C: [691,19,220,66,154,'154 -19h-88v710h88v-710'], + 0x7D: [698,175,394,54,372,'265 557v-179c0 -71 22 -95 107 -116c-85 -21 -107 -45 -107 -116v-179c0 -55 -16 -92 -50 -113c-32 -21 -72 -28 -161 -29v12c80 17 106 48 106 124v171c0 83 25 110 118 130c-94 20 -118 46 -118 130v171c0 76 -27 107 -106 123v12c90 -1 129 -8 161 -29 c34 -21 50 -57 50 -112'], + 0x7E: [333,-173,520,29,491,'455 333l36 -70c-45 -63 -79 -86 -125 -86c-33 0 -56 8 -103 33c-47 26 -78 35 -113 35c-46 0 -69 -37 -85 -72l-36 70c34 59 69 86 123 86c33 0 59 -8 134 -42c46 -20 64 -26 81 -26c38 0 66 35 88 72'], + 0xA0: [0,0,250,0,0,''], + 0xA3: [684,16,500,21,477,'454 183h23c-7 -79 -17 -118 -38 -149s-53 -50 -93 -50c-43 0 -70 16 -125 65c-33 -43 -67 -62 -112 -62c-56 0 -88 31 -88 85c0 60 37 92 106 92c18 0 31 -2 51 -7c-2 37 -6 53 -41 151h-98v65h80c-11 62 -14 85 -14 118c0 63 31 125 79 159c32 22 75 34 124 34 c93 0 151 -43 151 -113c0 -45 -26 -72 -68 -72c-38 0 -62 27 -62 65c0 16 2 28 2 47c1 28 -16 43 -44 43c-33 0 -56 -25 -56 -62c0 -23 19 -131 39 -219h114v-65h-109c1 -19 2 -34 2 -54c0 -49 -4 -73 -20 -120c44 -16 69 -22 96 -22c63 0 86 16 101 71zM181 86 c-27 24 -46 32 -72 32c-35 0 -56 -20 -56 -52c0 -30 22 -49 56 -49c37 0 58 20 72 69'], + 0xA5: [676,0,500,-64,547,'547 676v-26c-34 -3 -51 -13 -64 -37l-144 -271h111v-50h-131l-4 -11v-67h135v-50h-135v-49c0 -68 16 -83 99 -90v-25h-331v25c85 7 102 22 102 90v49h-135v50h135v57l-11 21h-124v50h99l-130 255c-18 36 -42 50 -83 53v26h301v-26c-60 -2 -77 -8 -77 -29 c0 -17 24 -65 76 -167l57 -112l119 230c6 11 8 23 8 35c0 32 -14 40 -78 43v26h205'], + 0xA7: [691,132,500,57,443,'186 415h13c-82 72 -100 98 -100 146c0 76 62 130 149 130c78 0 145 -46 145 -100c0 -33 -31 -63 -65 -63c-29 0 -60 30 -60 57c0 14 9 29 27 43c10 8 15 15 15 19c0 11 -26 21 -54 21c-49 0 -83 -28 -83 -69c0 -34 34 -73 104 -119c66 -43 116 -92 146 -143 c13 -22 20 -50 20 -82c0 -35 -14 -67 -39 -86c-22 -17 -49 -24 -102 -25c74 -52 102 -93 102 -147c0 -75 -68 -129 -164 -129c-83 0 -150 45 -150 100c0 37 27 65 63 65c35 0 65 -26 65 -56c0 -17 -8 -28 -31 -42c-11 -7 -15 -11 -15 -15c0 -15 32 -29 68 -29 c53 0 79 23 79 71c0 31 -9 47 -37 70l-57 46c-142 115 -168 148 -168 215c0 82 43 122 129 122zM367 225c0 28 -10 46 -43 77c-67 63 -108 90 -139 90s-53 -23 -53 -56c0 -37 10 -51 73 -106c58 -51 79 -63 109 -63c31 0 53 24 53 58'], + 0xA8: [666,-537,333,-2,337,'337 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM127 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66'], + 0xAC: [399,-108,750,65,685,'685 108h-88v203h-532v88h620v-291'], + 0xAE: [691,19,747,26,721,'563 153h-81c-16 0 -32 21 -63 81c-19 37 -28 52 -49 86h-37v-105c0 -40 1 -41 46 -44v-18h-172v18c45 3 46 4 46 44v255c0 41 -1 42 -46 44v18h193c71 0 115 -37 115 -96c0 -49 -27 -84 -80 -105l58 -82c29 -41 48 -64 70 -85v-11zM333 342h35c40 0 62 32 62 89 c0 53 -20 79 -61 79h-36v-168zM721 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 353 354 353c190 0 341 -157 341 -356zM650 338c0 168 -124 301 -280 301c-150 0 -273 -137 -273 -304c0 -168 123 -302 277 -302s276 135 276 305'], + 0xAF: [637,-565,333,1,331,'331 565h-330v72h330v-72'], + 0xB0: [688,-402,400,57,343,'343 545c0 -79 -64 -143 -143 -143s-143 64 -143 143s64 143 143 143s143 -64 143 -143zM288 545c0 49 -39 88 -88 88s-88 -39 -88 -88s39 -88 88 -88s88 39 88 88'], + 0xB1: [518,151,770,65,685,'685 209h-266v-221h-88v221h-266v88h266v221h88v-221h266v-88zM685 -151h-620v88h620v-88'], + 0xB4: [713,-528,333,86,324,'86 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56'], + 0xB5: [461,206,556,33,536,'536 60v-24c-44 -40 -64 -49 -106 -49c-49 0 -79 16 -101 52c-32 -38 -57 -52 -99 -52c-41 0 -69 10 -102 35c4 -33 7 -41 19 -81c11 -34 14 -53 14 -70c0 -50 -22 -77 -63 -77s-65 28 -65 77c0 13 3 28 10 57c15 62 23 107 23 160v373h139v-312c0 -44 23 -74 57 -74 c21 0 46 9 74 27v359h139v-360c0 -27 18 -47 40 -47c7 0 12 1 21 6'], + 0xB7: [417,-248,250,41,210,'210 332c0 -47 -37 -84 -85 -84s-84 36 -84 84c0 47 38 85 85 85c46 0 84 -39 84 -85'], + 0xD7: [538,33,702,66,636,'636 29l-62 -62l-223 224l-223 -224l-62 62l223 224l-222 223l62 62l222 -223l223 223l62 -62l-223 -223'], + 0xF0: [691,14,500,25,476,'427 661l-92 -47c61 -50 86 -82 110 -143c21 -52 31 -105 31 -173c0 -194 -77 -312 -225 -312c-130 0 -226 94 -226 243c0 146 97 244 224 244c42 0 65 -11 91 -41l2 3c-19 57 -45 98 -86 139l-110 -56l-48 31l117 59c-43 31 -83 49 -133 58l46 25c61 -6 110 -20 160 -46 l90 46zM329 230c0 159 -20 212 -79 212c-24 0 -41 -12 -53 -34c-18 -31 -25 -85 -25 -187c0 -101 8 -204 80 -204c58 0 77 52 77 213'], + 0xF7: [537,31,570,33,537,'362 461c0 -41 -36 -77 -76 -77c-42 0 -77 35 -77 76c0 42 35 77 77 77c40 0 76 -36 76 -76zM537 209h-504v88h504v-88zM362 47c0 -41 -37 -78 -77 -78s-76 36 -76 77c0 42 35 76 77 76c40 0 76 -36 76 -75'], + 0x127: [676,0,556,15,534,'534 0h-234v24c34 4 46 20 46 61v224c0 71 -12 97 -51 97c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-263c0 -41 11 -56 48 -61v-24h-240v24c45 9 53 9 53 65v425h-54v44h54v33c0 48 -8 52 -54 61v24h193v-118h158v-44h-158v-118c49 58 94 77 147 77 c82 0 130 -57 130 -136v-250c0 -46 14 -63 49 -63v-24'], + 0x131: [461,0,278,15,256,'256 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24'], + 0x237: [461,203,333,-57,260,'260 461v-459c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v474c0 43 -12 55 -63 59v24h202'], + 0x2C6: [704,-528,333,-2,335,'335 528h-57l-112 98l-112 -98h-56l122 176h92'], + 0x2C7: [704,-528,333,-2,335,'335 704l-123 -176h-92l-122 176h57l111 -99l111 99h58'], + 0x2C9: [637,-565,370,20,350,'350 565h-330v72h330v-72'], + 0x2CA: [713,-528,266,20,258,'20 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56'], + 0x2CB: [713,-528,266,20,258,'258 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28'], + 0x2D8: [691,-528,333,15,318,'274 691h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87'], + 0x2D9: [666,-537,333,102,231,'231 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66'], + 0x2DA: [750,-537,333,60,273,'273 645c0 -59 -47 -108 -106 -108c-60 0 -107 46 -107 106c0 58 49 107 108 107c57 0 105 -47 105 -105zM225 642c0 34 -28 60 -61 60c-29 0 -56 -27 -56 -58c0 -32 26 -59 57 -59c34 0 60 25 60 57'], + 0x2DC: [674,-547,333,-16,349,'306 674h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49'], + 0x300: [713,-528,0,-369,-131,'-131 528h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28'], + 0x301: [713,-528,0,-369,-131,'-369 528l137 157c16 18 35 28 54 28c26 0 47 -20 47 -45c0 -20 -11 -34 -40 -52l-142 -88h-56'], + 0x302: [704,-528,0,-418,-81,'-81 528h-57l-112 98l-112 -98h-56l122 176h92'], + 0x303: [674,-547,0,-432,-67,'-110 674h43c-23 -87 -60 -127 -116 -127c-34 0 -55 9 -83 22c-31 14 -53 27 -75 27c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c32 0 58 -12 88 -26c18 -8 48 -23 62 -23c29 0 43 13 56 49'], + 0x304: [637,-565,0,-415,-85,'-85 565h-330v72h330v-72'], + 0x306: [691,-528,0,-401,-98,'-142 691h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87'], + 0x307: [666,-537,0,-314,-185,'-185 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66'], + 0x308: [666,-537,0,-419,-80,'-80 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM-290 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66'], + 0x30A: [750,-537,0,-356,-143,'-143 645c0 -59 -47 -108 -106 -108c-60 0 -107 46 -107 106c0 58 49 107 108 107c57 0 105 -47 105 -105zM-191 642c0 34 -28 60 -61 60c-29 0 -56 -27 -56 -58c0 -32 26 -59 57 -59c34 0 60 25 60 57'], + 0x30B: [713,-528,0,-469,-31,'-269 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56zM-469 528l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56'], + 0x30C: [704,-528,0,-418,-81,'-81 704l-123 -176h-92l-122 176h57l111 -99l111 99h58'], + 0x338: [662,156,0,-410,31,'31 662l-357 -818h-84l357 818h84'], + 0x391: [690,0,722,9,689,'689 25v-25h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143zM189 236h195l-101 243'], + 0x392: [676,0,667,16,619,'16 676h317c161 0 252 -57 252 -160c0 -76 -42 -127 -159 -151v-1c110 -14 193 -81 193 -176c0 -107 -96 -188 -274 -188h-329v25c73 8 88 22 88 78v467c0 59 -20 76 -88 81v25zM264 343v-245c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 155 -157 155h-26z M264 592v-219c125 0 156 38 156 136c0 88 -31 137 -99 137c-40 0 -57 -15 -57 -54'], + 0x393: [676,0,620,16,593,'593 676v-202h-24c-14 76 -25 99 -60 129c-31 27 -85 39 -173 39c-51 0 -70 -14 -70 -51v-490c0 -57 18 -72 110 -76v-25h-360v25c74 8 88 22 88 78v472c0 58 -19 72 -88 76v25h577'], + 0x394: [690,0,722,33,673,'357 690l316 -690h-640l296 690h28zM128 120h320l-165 359'], + 0x395: [676,0,667,16,641,'593 676v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54c34 28 52 58 82 123h28l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71 v25h577'], + 0x396: [676,0,667,28,634,'634 242l-27 -242h-579v16l382 625l-83 -3c-154 -6 -195 -26 -240 -169h-28l22 207h523v-16l-379 -625h83c95 0 161 11 202 40c56 40 69 82 98 167h26'], + 0x397: [676,0,778,21,759,'509 326h-241v-228c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-204h241v204c0 56 -19 69 -89 74v25h339v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25h-339v25c73 8 89 22 89 73v228'], + 0x398: [692,18,778,35,743,'260 456h26c15 -46 25 -57 52 -57h109c23 0 31 12 40 57h26c-7 -32 -12 -79 -12 -110c0 -33 6 -86 14 -123h-26c-6 36 -20 56 -43 56h-109c-29 0 -37 -5 -51 -56h-26c10 34 15 84 15 118c0 29 -7 82 -15 115zM394 692c201 0 349 -149 349 -356 c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357zM385 659c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314c0 213 -64 330 -181 330'], + 0x399: [676,0,389,20,370,'113 106v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25h-350v25c75 7 93 19 93 81'], + 0x39A: [676,0,778,30,769,'769 25v-25h-334v25c65 2 77 8 77 21c0 11 -6 21 -25 45l-181 225l-27 -25v-196c0 -49 15 -61 87 -70v-25h-336v25c74 7 87 19 87 76v472c0 62 -18 74 -87 78v25h337v-25c-74 -5 -88 -23 -88 -84v-223l212 215c31 31 40 42 40 58c0 20 -12 28 -48 31l-35 3v25h289v-25 c-99 -12 -136 -29 -322 -227l305 -378c12 -15 24 -20 49 -21'], + 0x39B: [690,0,707,9,674,'674 25v-25h-322v25l32 3c33 3 44 11 44 33s-12 54 -44 136l-108 280h-2l-114 -314c-11 -31 -28 -75 -28 -97c0 -27 20 -37 79 -41v-25h-202v25c46 8 63 27 99 120l213 545h28l215 -522c50 -121 69 -143 110 -143'], + 0x39C: [676,0,944,14,921,'678 605l-252 -605h-27l-252 594v-465c0 -76 19 -98 101 -104v-25h-234v25c78 8 91 18 91 83v469c0 54 -16 68 -89 74v25h253l199 -472l201 472h252v-25c-73 -5 -88 -22 -88 -97v-428c0 -73 8 -94 88 -101v-25h-332v25c75 7 89 25 89 84v496'], + 0x39D: [676,18,722,16,701,'230 676l349 -430v299c0 80 -18 99 -92 106v25h214v-25c-65 -10 -78 -20 -78 -83v-586h-28l-447 545v-396c0 -77 17 -97 94 -106v-25h-226v25c73 9 88 23 88 84v470c-42 58 -65 72 -85 72v25h211'], + 0x39E: [676,0,647,40,607,'67 481v195h513v-195h-25c-10 57 -25 75 -74 75h-307c-44 0 -72 -24 -82 -75h-25zM141 463h25c10 -54 25 -56 70 -56h181c39 0 54 3 64 56h25v-223h-25c-10 50 -28 57 -64 57h-182c-47 0 -59 -9 -69 -57h-25v223zM40 232h25c10 -61 21 -85 82 -85h349c69 0 76 26 86 85 h25v-232h-567v232'], + 0x39F: [691,19,778,35,743,'394 691c201 0 349 -149 349 -356c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357zM385 658c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314c0 213 -64 330 -181 330'], + 0x3A0: [676,0,778,21,759,'509 629h-241v-531c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h738v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25h-339v25c73 8 89 22 89 73v531'], + 0x3A1: [676,0,611,16,600,'262 303v-192c0 -67 8 -76 87 -86v-25h-333v25c19 2 34 4 45 9c33 13 39 41 39 92v427c0 78 -14 92 -84 98v25h315c167 0 269 -59 269 -181c0 -80 -46 -141 -129 -172c-43 -16 -77 -19 -209 -20zM262 606v-268c125 1 166 35 166 146s-33 157 -116 157 c-33 0 -50 -12 -50 -35'], + 0x3A3: [676,0,671,28,641,'306 317l-278 343v16h580v-197h-26c-31 135 -82 151 -158 151h-182l187 -240l-225 -243h256c66 0 125 6 155 114h26l-32 -261h-581v16'], + 0x3A4: [676,0,667,31,636,'34 676h600l2 -201h-29c-17 119 -69 165 -192 169v-527c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92v527c-124 -4 -176 -50 -193 -169h-29'], + 0x3A5: [692,0,703,7,693,'693 670v-25c-11 3 -24 5 -31 5c-94 0 -189 -62 -228 -349v-178c0 -78 13 -91 92 -98v-25h-347v25c83 7 93 28 93 103v136c0 217 -68 362 -192 362c-19 0 -38 -3 -59 -10l-14 24c27 25 81 52 124 52c149 0 245 -61 263 -298h5c8 42 16 71 28 103c48 132 128 185 212 185 c18 0 41 -4 54 -12'], + 0x3A6: [676,0,836,18,818,'498 586v-22c140 -5 320 -64 320 -226c0 -171 -207 -232 -320 -232v-15c0 -37 22 -58 95 -66v-25h-353v25c82 6 96 26 96 66v15c-148 0 -318 61 -318 232c0 162 179 221 318 226v24c0 39 -2 63 -85 63v25h332v-25c-80 0 -85 -32 -85 -65zM496 530v-390 c65 0 150 47 150 185c0 149 -66 205 -150 205zM338 140v390c-75 0 -148 -56 -148 -205c0 -140 70 -185 148 -185'], + 0x3A7: [676,0,722,16,699,'688 676v-25c-75 -7 -101 -25 -188 -146l-80 -111l182 -283c47 -73 63 -85 97 -86v-25h-340v25l28 2c35 2 52 11 52 28c0 12 -9 35 -21 54l-101 162l-38 -51c-75 -101 -94 -132 -94 -153c0 -26 20 -36 81 -42v-25h-250v25c50 6 74 19 104 56l175 221l-198 291 c-31 45 -44 55 -80 58v25h346v-25l-31 -2c-36 -2 -48 -10 -48 -31c0 -12 2 -17 15 -37l97 -150l56 77c47 65 58 84 58 106c0 24 -13 31 -51 35l-21 2v25h250'], + 0x3A8: [692,0,808,15,797,'326 298v290c0 39 -2 63 -85 63v25h332v-25c-80 0 -85 -32 -85 -65v-288c65 0 100 81 100 161c0 54 12 104 35 142c35 58 83 91 141 91h33v-25c-35 0 -53 -59 -53 -90c0 -12 4 -60 4 -90c0 -167 -129 -223 -260 -223v-141c0 -78 14 -91 92 -98v-25h-347v25 c86 4 93 35 93 103v136c-135 0 -260 56 -260 223c0 17 4 69 4 90c0 36 -16 90 -55 90v25h33c58 0 106 -33 142 -91c23 -38 36 -88 36 -142c0 -81 35 -161 100 -161'], + 0x3A9: [692,0,768,28,740,'330 0h-302v197h25c10 -66 28 -77 71 -77h153l-2 29c-128 19 -235 127 -235 261c0 162 151 282 349 282c197 0 339 -120 339 -285c0 -133 -114 -229 -235 -258l-2 -29h148c45 0 66 12 76 77h25v-197h-302l7 181c88 21 116 121 116 232c0 126 -63 246 -181 246 c-115 0 -173 -120 -173 -244c0 -112 28 -213 116 -234'], + 0x3B1: [473,14,644,25,618,'592 154h25c-1 -77 -30 -166 -105 -166c-46 0 -81 26 -105 77c-47 -60 -97 -79 -166 -79c-124 0 -216 98 -216 240c0 147 95 247 230 247c104 0 156 -67 179 -121h1l29 109h154l-129 -270c0 -5 6 -26 9 -35c25 -76 38 -78 52 -78c21 0 39 26 42 76zM361 198 c-3 64 -35 244 -103 244c-69 0 -86 -60 -86 -209c0 -160 22 -216 80 -216c53 0 98 109 109 181'], + 0x3B2: [692,205,556,45,524,'66 -54v386c0 135 20 230 90 303c35 37 93 57 151 57c88 0 174 -51 174 -154c0 -71 -42 -105 -85 -127l-1 -2c86 -26 129 -92 129 -183c0 -136 -98 -240 -226 -240c-33 0 -65 9 -93 26v-66c0 -70 -4 -112 -20 -151h-140c19 39 21 75 21 151zM205 495v-423 c25 -50 60 -55 85 -55c67 0 86 52 86 200c0 122 -50 175 -67 175s-28 -9 -43 -9c-27 0 -40 14 -40 26c0 17 19 27 48 27c13 0 36 -9 45 -9c14 0 23 49 23 82c0 50 -11 152 -65 152c-56 0 -72 -48 -72 -166'], + 0x3B3: [473,205,518,12,501,'332 461h169l-202 -400c4 -39 17 -92 17 -145c0 -60 -25 -121 -84 -121c-62 0 -71 45 -71 107c0 53 26 134 61 216c-6 67 -16 125 -34 169c-16 40 -43 96 -92 96c-19 0 -49 -8 -59 -75h-25c0 70 23 165 98 165c61 0 92 -67 114 -152l29 -111'], + 0x3B4: [692,14,502,26,477,'222 419v2c-43 18 -89 42 -115 78c-15 20 -22 34 -22 61c0 86 125 132 194 132s164 -16 164 -75c0 -15 -14 -50 -48 -50c-66 0 -90 81 -146 81c-21 0 -86 -7 -86 -49c0 -74 179 -95 268 -212c32 -41 46 -109 46 -172c0 -108 -85 -229 -224 -229c-147 0 -227 123 -227 221 c0 55 19 112 60 154c36 38 81 58 136 58zM252 387c-62 0 -79 -56 -79 -183c0 -125 19 -187 80 -187c72 0 76 79 76 198c0 52 -1 172 -77 172'], + 0x3B5: [473,14,444,28,429,'412 109l17 -18c-46 -70 -110 -105 -203 -105c-100 0 -198 24 -198 132c0 52 29 92 88 123v1c-44 16 -70 56 -70 88c0 70 66 143 203 143c77 0 164 -29 164 -106c0 -30 -20 -58 -61 -58c-28 0 -57 15 -57 54c0 15 8 31 8 42c0 21 -19 37 -65 37s-79 -46 -79 -100 c0 -50 29 -85 74 -85c11 0 24 11 54 11c27 0 39 -13 39 -25c0 -14 -13 -30 -44 -30c-11 0 -27 4 -44 9c-39 0 -86 -32 -86 -87c0 -68 49 -95 109 -95c58 0 124 26 151 69'], + 0x3B6: [692,205,459,23,437,'243 692l9 -24c-47 -20 -63 -45 -63 -68c0 -28 16 -46 32 -51c49 47 96 85 144 85c36 0 57 -14 57 -43c0 -53 -96 -91 -192 -91c-58 -46 -139 -162 -139 -270c0 -94 74 -115 181 -115c118 0 165 -56 165 -138c0 -123 -89 -182 -175 -182c-58 0 -92 29 -92 61 c0 35 26 62 61 62c63 0 71 -46 107 -46c26 0 58 29 58 68c0 34 -24 53 -62 53c-32 0 -93 -9 -117 -9c-137 1 -194 55 -194 191c0 145 98 280 163 337c-43 6 -74 35 -74 78c0 44 38 82 131 102'], + 0x3B7: [473,205,585,12,545,'247 0h-139v346c0 24 -2 56 -24 56c-20 0 -36 -24 -49 -48l-23 11c21 54 70 108 136 108c43 0 98 -17 98 -87h1c35 60 82 87 143 87c82 0 134 -55 134 -145v-380c0 -75 3 -113 21 -153h-138c-21 40 -22 76 -22 152v372c0 59 -17 87 -50 87c-25 0 -49 -12 -71 -34 c-11 -11 -17 -20 -17 -24v-348'], + 0x3B8: [692,14,501,25,476,'250 692c147 0 226 -181 226 -352c0 -168 -79 -354 -218 -354c-160 0 -233 185 -233 355c0 169 75 351 225 351zM172 364h157c0 139 -19 297 -79 297c-67 0 -78 -158 -78 -297zM329 320h-157c0 -152 18 -303 78 -303c61 0 79 153 79 303'], + 0x3B9: [461,14,326,15,304,'208 461v-349c0 -24 2 -56 24 -56c20 0 36 22 49 45l23 -12c-21 -52 -73 -103 -143 -103c-65 0 -92 45 -92 91v299c0 45 -14 56 -54 61v24h193'], + 0x3BA: [473,0,581,21,559,'214 461v-201c178 205 232 213 274 213c38 0 71 -27 71 -77c0 -26 -22 -66 -66 -66c-47 0 -58 42 -83 42c-23 0 -62 -22 -103 -70l179 -232c31 -40 40 -46 62 -46v-24h-248v24c30 1 34 11 34 23c0 7 -7 19 -21 37l-98 129h-1v-213h-139v379c0 42 -15 53 -54 58v24h193'], + 0x3BB: [692,18,547,19,527,'80 527h-25c0 73 21 165 100 165c56 0 85 -80 104 -146l107 -374c23 -79 54 -100 77 -100c18 0 48 8 59 75h25c0 -80 -25 -165 -100 -165c-53 0 -76 59 -92 128l-46 198l-101 -308h-169l226 454l-12 38c-30 95 -59 110 -94 110c-18 0 -48 -8 -59 -75'], + 0x3BC: [461,205,610,45,588,'199 9v-77c0 -52 -7 -105 -20 -137h-134c18 37 21 70 21 138v528h139v-318c0 -61 36 -92 69 -92c26 0 50 15 79 51v359h139v-350c0 -53 4 -72 23 -72c21 0 38 26 52 49l21 -12c-21 -52 -58 -107 -144 -107c-58 0 -85 35 -90 86h-1c-25 -38 -63 -69 -100 -69 c-19 0 -43 6 -53 23h-1'], + 0x3BD: [473,14,518,15,495,'465 473h30c0 -329 -220 -456 -400 -487h-26v386c0 47 -10 56 -54 65v24h193v-323h5c100 18 230 88 252 335'], + 0x3BE: [692,205,468,23,439,'240 692l10 -24c-50 -21 -64 -53 -64 -68c0 -31 17 -34 21 -36c39 38 94 71 140 71c31 0 63 -6 63 -40c0 -50 -88 -79 -170 -79c-37 0 -53 -31 -53 -62c0 -27 19 -46 35 -53c35 16 93 41 133 41c38 0 84 -1 84 -43c0 -46 -90 -60 -125 -60c-20 0 -67 6 -89 11 c-78 -25 -114 -77 -114 -125c0 -76 70 -110 158 -110c118 0 165 -56 165 -138c0 -123 -89 -182 -175 -182c-58 0 -92 29 -92 61c0 35 26 62 61 62c63 0 71 -46 107 -46c26 0 58 29 58 68c0 34 -24 53 -62 53c-32 0 -93 -9 -117 -9c-132 0 -191 84 -191 177 c0 89 73 176 162 217c-19 9 -52 36 -52 74c0 28 12 55 38 77v2c-38 6 -63 32 -63 59c0 41 39 83 132 102'], + 0x3BF: [473,14,500,25,476,'254 473c126 0 222 -102 222 -244c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245zM251 442c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201c0 171 -19 224 -78 224'], + 0x3C0: [461,18,631,20,609,'596 361h-117c-4 -16 -11 -78 -11 -142c0 -80 12 -163 56 -163c17 0 47 10 60 71h25c0 -67 -50 -141 -142 -141c-101 0 -128 78 -128 145c0 73 34 168 50 230h-134c0 -21 2 -55 2 -99c0 -123 -13 -280 -123 -280c-52 0 -79 22 -79 66c0 24 15 54 43 59 c53 10 95 190 95 254c-40 0 -121 -2 -148 -52h-25c33 98 72 152 191 152h385v-100'], + 0x3C1: [473,205,547,45,515,'295 -14h1c-26 0 -63 9 -91 26v-66c0 -70 -4 -112 -20 -151h-140c19 39 21 74 21 150v168c0 135 20 231 90 304c32 34 91 56 142 56c123 0 217 -75 217 -245c0 -142 -101 -242 -220 -242zM205 271v-199c25 -51 67 -55 81 -55c63 0 82 54 82 203c0 169 -34 222 -93 222 c-52 0 -70 -48 -70 -171'], + 0x3C2: [473,203,464,23,444,'396 -58c0 34 -24 53 -62 53c-32 0 -93 -9 -117 -9c-127 0 -194 44 -194 186c0 113 119 301 290 301c66 0 131 -32 131 -98c0 -40 -30 -71 -65 -71c-73 0 -74 68 -136 68c-89 0 -152 -47 -152 -144c0 -107 100 -111 181 -111c118 0 165 -56 165 -138 c0 -123 -89 -182 -175 -182c-58 0 -92 29 -92 61c0 35 26 62 61 62c63 0 71 -46 107 -46c26 0 58 29 58 68'], + 0x3C3: [461,14,568,25,529,'529 461v-100h-200c37 -68 146 -73 146 -176c0 -96 -92 -199 -225 -199c-126 0 -225 100 -225 246c0 115 89 229 265 229h239zM329 169c0 78 -12 126 -64 192c-49 0 -93 -45 -93 -142c0 -148 23 -202 80 -202c60 0 77 76 77 152'], + 0x3C4: [461,14,492,18,457,'218 361h-58c-43 0 -102 -32 -117 -92h-25c10 67 65 192 172 192h267v-100h-139c-5 -12 -16 -90 -16 -164c0 -72 11 -141 51 -141c17 0 47 10 60 71h25c0 -67 -50 -141 -142 -141c-101 0 -128 78 -128 145c0 73 34 168 50 230'], + 0x3C5: [473,14,576,12,551,'247 381v-156c0 -120 7 -208 78 -208c72 0 79 94 79 209c0 103 -33 216 -123 223v24c166 0 270 -86 270 -244c0 -142 -92 -243 -226 -243s-217 50 -217 187v182c0 23 -5 47 -24 47c-20 0 -36 -24 -49 -48l-23 11c21 54 70 108 136 108c43 0 99 -19 99 -92'], + 0x3C6: [473,205,653,24,629,'396 -205h-139v191c-128 0 -233 89 -233 244c0 149 91 243 239 243h45v-25c-114 0 -137 -98 -137 -205c0 -168 21 -226 77 -226h9v135c0 69 17 206 85 277c26 27 59 44 101 44c90 0 186 -89 186 -243c0 -153 -106 -244 -233 -244v-191zM396 274v-257h8c61 0 78 50 78 226 c0 105 -8 197 -53 199c-27 -2 -33 -68 -33 -168'], + 0x3C7: [473,205,612,21,586,'431 461h155l-251 -397l18 -64c21 -74 54 -115 86 -115c21 0 56 9 67 76h25c0 -96 -31 -166 -98 -166c-63 0 -89 110 -108 176l-15 53l-134 -213h-155l237 375l-22 85c-25 95 -52 112 -88 112c-19 0 -54 -12 -67 -75h-25c0 73 22 165 100 165c58 0 83 -65 104 -145 l25 -97'], + 0x3C8: [473,205,763,12,751,'312 461h139v-444h17c49 0 69 58 69 234c0 126 19 222 165 222h49v-25c-68 -11 -78 -72 -78 -115c0 -17 11 -98 11 -126c0 -133 -97 -221 -211 -221h-22v-191h-139v191h-22c-114 0 -211 88 -211 221c0 31 12 102 12 126c0 45 -10 100 -79 115v25h49 c138 0 165 -96 165 -222c0 -177 21 -234 69 -234h17v444'], + 0x3C9: [473,14,733,26,708,'419 448v25h29c190 0 260 -113 260 -246c0 -162 -116 -241 -211 -241c-61 0 -106 23 -132 60c-31 -37 -75 -60 -130 -60c-95 0 -209 81 -209 244c0 119 75 243 251 243h34v-25c-133 0 -138 -108 -138 -224c0 -66 0 -207 75 -207c31 0 72 35 77 95c-21 47 -32 79 -32 132 c0 61 22 114 75 114c55 0 69 -65 69 -111c0 -50 -15 -98 -32 -136c6 -62 42 -94 77 -94c68 0 79 128 79 207c0 116 -9 224 -142 224'], + 0x3D0: [697,10,500,54,462,'462 202c0 -120 -86 -212 -208 -212c-148 0 -200 134 -200 261c0 141 36 315 158 402c29 21 86 44 122 44c62 0 123 -6 123 -84c0 -105 -121 -122 -210 -122c-14 0 -27 0 -38 1c-40 -63 -77 -131 -97 -204c49 53 101 101 178 101c106 0 172 -86 172 -187zM220 511h12 c26 0 52 5 76 17c30 15 87 80 87 114c0 15 -5 32 -23 32c-57 0 -127 -118 -152 -163zM377 294c0 34 -24 57 -58 57c-63 0 -150 -195 -150 -251c0 -32 2 -73 44 -73c71 0 164 205 164 267'], + 0x3D1: [692,14,647,12,620,'620 295l-1 -27c-24 0 -47 1 -69 2c-2 -41 -5 -79 -13 -110c-27 -110 -94 -174 -212 -174c-134 0 -217 50 -217 186v28c0 22 -4 48 -24 48c-19 0 -35 -25 -49 -49l-23 12c18 47 66 107 136 107c43 0 99 -28 99 -101v-27c0 -121 8 -173 78 -173s79 82 79 263v5 c-214 37 -287 134 -287 247c0 129 109 160 186 160c134 0 248 -119 248 -337v-56c21 -2 44 -4 69 -4zM249 554c0 -76 42 -164 154 -216c-3 134 -15 221 -37 271c-14 33 -28 41 -51 41c-49 0 -66 -47 -66 -96'], + 0x3D2: [692,0,743,7,733,'394 394h5c7 42 15 81 30 120c34 90 93 178 195 178c77 0 109 -55 109 -103c0 -47 -29 -84 -81 -84c-40 0 -73 27 -73 68c0 26 11 47 23 60c0 4 -4 8 -11 8c-39 0 -78 -53 -101 -105c-25 -55 -46 -131 -56 -232v-181c0 -78 13 -91 92 -98v-25h-347v25c83 7 93 28 93 103 v136c0 217 -68 362 -192 362c-19 0 -38 -3 -59 -10l-14 24c27 25 81 52 124 52c149 0 245 -61 263 -298'], + 0x3D5: [676,205,653,24,629,'396 676v-203h11c127 0 222 -102 222 -244c0 -140 -96 -243 -227 -243h-6v-191h-139v191h-8c-126 0 -225 100 -225 242c0 148 98 245 229 245h4v203h139zM257 17v425h-7c-61 0 -79 -52 -79 -224c0 -145 21 -201 79 -201h7zM396 442v-425h8c61 0 78 51 78 200 c0 171 -18 225 -76 225h-10'], + 0x3D6: [461,14,864,9,851,'851 361h-78c29 -38 42 -80 42 -136c0 -160 -104 -239 -212 -239c-61 0 -105 23 -131 60c-31 -37 -70 -60 -131 -60c-108 0 -208 77 -208 239c0 52 17 97 49 136h-24c-58 0 -98 -18 -124 -62h-25c34 98 97 162 216 162h626v-100zM642 361h-337c-21 -35 -25 -87 -25 -147 c0 -66 5 -197 75 -197c35 0 71 37 77 94c-18 44 -30 73 -30 113c0 45 21 89 75 89c49 0 69 -43 69 -87c0 -41 -16 -72 -34 -115c6 -57 42 -94 77 -94c70 0 79 129 79 198c0 60 -4 111 -26 146'], + 0x3D8: [691,205,778,35,743,'308 -88v77c-164 32 -273 166 -273 345c0 213 151 357 359 357c201 0 349 -149 349 -356c0 -180 -110 -313 -273 -346v-77c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92zM385 658c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314 c0 213 -64 330 -181 330'], + 0x3D9: [473,205,500,25,476,'181 -205v202c-91 29 -156 116 -156 231c0 146 97 245 229 245c126 0 222 -102 222 -244c0 -114 -64 -203 -156 -232v-202h-139zM251 442c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201c0 171 -19 224 -78 224'], + 0x3DA: [691,211,680,45,645,'222 -127l26 28c42 -41 94 -64 140 -64c77 0 108 57 108 106c0 64 -63 99 -186 117c-134 20 -265 59 -265 251c0 214 222 380 398 380c92 0 184 -16 184 -95c0 -41 -29 -68 -71 -68c-63 0 -78 110 -180 110c-118 0 -226 -124 -226 -260c0 -29 9 -53 23 -73 c74 -102 310 -93 395 -155c49 -36 77 -86 77 -154c0 -133 -118 -207 -241 -207c-58 0 -131 22 -182 84'], + 0x3DB: [503,203,504,23,483,'460 503h23c-10 -89 -30 -232 -177 -232c-26 0 -60 5 -90 5c-70 0 -145 -36 -145 -98c0 -44 36 -67 82 -67c44 0 86 6 119 6c118 0 165 -66 165 -158c0 -93 -89 -162 -175 -162c-58 0 -92 29 -92 61c0 35 26 62 61 62c63 0 71 -46 107 -46c22 0 58 18 58 57 c0 34 -24 64 -62 64c-32 0 -93 -9 -117 -9c-66 0 -115 12 -148 43c-31 29 -46 74 -46 122c0 58 22 118 61 159c51 52 140 81 237 88c89 6 123 57 139 105'], + 0x3DC: [676,0,620,16,593,'593 676v-202h-24c-14 76 -25 99 -60 129c-31 27 -85 39 -173 39c-51 0 -70 -14 -70 -51v-218h228v-47h-228v-225c0 -57 18 -72 110 -76v-25h-360v25c74 8 88 22 88 78v472c0 58 -19 72 -88 76v25h577'], + 0x3DD: [461,205,491,45,458,'458 361h-253v-220h203v-44h-203v-151c0 -70 -4 -112 -20 -151h-140c19 39 21 75 21 151v515h392v-100'], + 0x3DE: [797,14,757,35,715,'701 604l14 -17l-214 -438c-6 -13 -13 -33 -13 -50c0 -30 17 -42 39 -42c24 0 53 13 72 31l16 -20c-55 -56 -100 -82 -154 -82c-84 0 -119 53 -119 99c0 34 18 70 68 127l144 165l-1 1l-504 -199l-14 17l214 438c6 13 13 33 13 50c0 30 -17 42 -39 42 c-24 0 -53 -13 -72 -31l-16 20c55 56 100 82 154 82c84 0 119 -52 119 -98c0 -20 -7 -58 -68 -128l-144 -165l1 -1'], + 0x3DF: [692,0,485,29,453,'258 0h-140l169 296h-258l195 396h140l-169 -296h258'], + 0x3E0: [692,205,839,33,801,'66 509l-33 25c97 116 190 158 343 158c268 0 425 -177 425 -414c0 -229 -149 -464 -388 -483v33c145 48 224 225 224 390c0 74 -16 145 -48 202c-104 -44 -136 -248 -136 -375v-45h-162c0 187 102 400 278 461c-53 92 -156 164 -261 164c-10 0 -20 0 -29 -2v-276h-47 v264c-68 -11 -120 -47 -166 -102'], + 0x3E1: [639,205,611,29,583,'182 238l-22 38l156 90c-71 101 -160 190 -287 239l15 34c191 -20 366 -131 461 -296c52 -90 78 -193 78 -297c0 -86 -18 -171 -53 -251l-37 4c5 29 7 58 7 86c0 102 -28 195 -69 284l-157 -91l-22 38l160 92c-23 42 -45 81 -70 122'], + 0x3F0: [473,19,563,12,546,'377 461h169l-168 -211c-6 -30 -10 -72 -10 -100c0 -49 23 -66 51 -66c17 0 23 23 58 23c19 0 51 -16 51 -54c0 -50 -40 -72 -85 -72c-66 0 -117 51 -117 140c0 18 3 46 7 72l-153 -193h-168l169 214c5 29 9 65 9 90c0 49 -23 66 -51 66c-17 0 -23 -23 -58 -23 c-19 0 -51 16 -51 54c0 50 40 72 85 72c66 0 117 -51 117 -140c0 -16 -3 -40 -6 -63'], + 0x3F1: [473,205,511,25,486,'434 -205h-25c0 60 -92 -9 -239 79c-124 74 -145 207 -145 323c0 175 107 276 239 276c126 0 222 -102 222 -244c0 -141 -97 -243 -226 -243c-52 0 -104 8 -152 60l-2 -1c29 -68 103 -109 179 -109c27 0 57 3 80 3c54 0 93 -23 93 -79c0 -20 -7 -40 -24 -65zM261 442 c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201c0 171 -19 224 -78 224'], + 0x3F4: [691,19,778,35,743,'394 691c201 0 349 -149 349 -356c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357zM566 317h-354c2 -202 66 -303 178 -303c113 0 174 104 176 303zM212 364h353c-7 190 -70 294 -180 294c-104 0 -166 -106 -173 -294'], + 0x3F5: [473,14,444,25,430,'412 109l18 -18c-55 -74 -112 -105 -191 -105c-126 0 -214 93 -214 236c0 148 97 251 223 251c70 0 93 -20 99 -20c10 0 21 5 22 20h23l17 -147h-23c-16 57 -46 117 -115 117c-73 0 -104 -89 -104 -173h157v-44h-157c0 -106 71 -173 138 -173c40 0 70 14 107 56'], + 0x3F6: [473,14,444,14,419,'32 350l-18 18c55 74 112 105 191 105c126 0 214 -93 214 -236c0 -148 -97 -251 -223 -251c-70 0 -93 20 -99 20c-10 0 -21 -5 -22 -20h-23l-17 147h23c16 -57 46 -117 115 -117c73 0 104 89 104 173h-157v44h157c0 106 -71 173 -138 173c-40 0 -70 -14 -107 -56'], + 0x2013: [271,-181,500,0,500,'500 181h-500v90h500v-90'], + 0x2014: [271,-181,1000,0,1000,'1000 181h-1000v90h1000v-90'], + 0x2018: [691,-356,333,70,254,'236 691l11 -22c-75 -52 -109 -94 -109 -133c0 -12 8 -21 19 -21c7 0 14 2 24 2c43 0 73 -30 73 -76c0 -52 -34 -85 -84 -85c-63 0 -100 45 -100 116c0 86 50 158 166 219'], + 0x2019: [691,-356,333,79,263,'97 356l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x201C: [691,-356,500,32,486,'468 691l11 -22c-75 -52 -109 -94 -109 -133c0 -12 8 -21 19 -21c7 0 14 2 24 2c43 0 73 -30 73 -76c0 -52 -34 -85 -84 -85c-63 0 -100 45 -100 116c0 86 50 158 166 219zM198 691l11 -22c-75 -52 -109 -94 -109 -133c0 -12 8 -21 19 -21c7 0 14 2 24 2 c43 0 73 -30 73 -76c0 -52 -34 -85 -84 -85c-63 0 -100 45 -100 116c0 86 50 158 166 219'], + 0x201D: [691,-356,500,14,468,'302 356l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219zM32 356l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76 c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x2020: [691,134,500,47,453,'240 -134l-5 144c-3 82 -20 176 -46 243c-3 7 -5 13 -5 17s5 13 13 24c31 43 39 69 41 152c-42 -5 -52 -7 -89 -27c-24 -13 -35 -16 -52 -16c-30 0 -50 21 -50 54c0 34 19 53 52 53c16 0 28 -4 53 -17c38 -20 50 -23 86 -27c-2 64 -6 80 -29 121c-12 21 -15 29 -15 44 c0 37 22 60 57 60c36 0 56 -20 56 -55c0 -16 -4 -28 -18 -56c-24 -47 -28 -61 -28 -114c35 5 49 9 89 28c26 12 37 16 52 16c32 0 51 -21 51 -54c0 -32 -19 -53 -50 -53c-16 0 -31 4 -56 19c-40 23 -50 24 -86 24c0 -61 18 -126 52 -169c3 -4 5 -7 5 -10c0 0 0 -2 -1 -4 c-27 -61 -48 -169 -51 -253l-5 -144h-21'], + 0x2021: [691,132,500,45,456,'221 464h18c-1 53 -5 71 -27 121c-12 26 -15 37 -15 52c0 32 21 54 53 54s56 -24 56 -55c0 -14 -4 -27 -16 -55c-23 -52 -27 -70 -28 -117c37 4 49 7 92 26c25 11 39 15 52 15c30 0 50 -19 50 -49s-19 -49 -50 -49c-15 0 -27 2 -51 16c-39 23 -58 23 -93 23 c0 -59 17 -116 47 -155c4 -5 7 -10 7 -12s-3 -7 -7 -12c-32 -47 -46 -93 -47 -156c35 0 47 3 88 22c28 13 41 18 58 18c30 0 48 -19 48 -50c0 -29 -20 -46 -51 -46c-12 0 -25 4 -51 14c-43 16 -54 22 -92 24c1 -48 5 -64 28 -115c12 -28 16 -40 16 -55 c0 -32 -24 -55 -56 -55s-53 21 -53 54c0 15 3 26 15 53c22 49 26 64 27 118h-18c-15 0 -37 -7 -65 -21c-29 -14 -46 -17 -61 -17c-30 0 -50 18 -50 48c0 28 21 49 49 49c15 0 30 -5 57 -17c43 -20 53 -22 88 -24c-2 63 -14 100 -55 168c42 68 53 102 55 167 c-40 -2 -49 -4 -91 -24c-26 -12 -39 -15 -53 -15c-29 0 -50 19 -50 48c0 30 20 50 49 50c16 0 33 -5 62 -19c33 -16 43 -20 65 -22'], + 0x2026: [156,13,1000,82,917,'917 71c0 -47 -38 -84 -85 -84c-48 0 -84 36 -84 84c0 47 38 85 85 85c46 0 84 -39 84 -85zM584 71c0 -47 -38 -84 -85 -84c-48 0 -84 36 -84 84c0 47 38 85 85 85c46 0 84 -39 84 -85zM251 71c0 -47 -38 -84 -85 -84c-48 0 -84 36 -84 84c0 47 38 85 85 85 c46 0 84 -39 84 -85'], + 0x2032: [713,-438,310,75,235,'75 445l67 221c7 24 22 47 50 47c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-113 -195'], + 0x2033: [713,-438,467,75,392,'233 445l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195zM75 445l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195'], + 0x2034: [713,-438,625,75,550,'391 445l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195zM233 445l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195zM75 445l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195'], + 0x2035: [713,-438,310,75,235,'235 445l-33 -7l-113 195c-7 12 -14 25 -14 39c0 21 22 41 43 41c28 0 43 -23 50 -47'], + 0x203E: [838,-766,500,0,500,'500 766h-500v72h500v-72'], + 0x2044: [688,12,183,-168,345,'345 688l-439 -700h-74l441 700h72'], + 0x2057: [713,-438,783,75,708,'549 445l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195zM391 445l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195zM233 445l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195z M75 445l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195'], + 0x20D7: [846,-508,0,-470,14,'14 677l-169 -169l-18 17c40 57 51 83 51 93c0 17 -10 19 -38 19h-310v78h310c29 0 39 8 39 27c0 12 -14 33 -53 88l19 16'], + 0x210F: [685,10,576,50,543,'523 105l20 -11c-37 -63 -82 -104 -153 -104c-26 0 -69 15 -69 46c0 11 2 24 7 46l54 223c2 10 3 26 3 42c0 27 -13 37 -29 37c-57 0 -141 -165 -166 -275l-25 -109h-115l108 471l-77 -15l12 49l77 15l18 79c1 4 2 11 2 15c0 11 -1 15 -11 15c-7 0 -11 -1 -44 -10l-5 28 l188 38l-33 -143l196 39l-12 -49l-195 -39l-37 -162l2 -1c33 61 109 129 180 129c69 0 89 -38 89 -83c0 -13 -4 -44 -7 -56l-50 -213c-1 -4 -2 -15 -2 -21c0 -16 5 -28 20 -28c18 0 34 21 54 47'], + 0x2111: [701,25,790,54,735,'710 694l25 -8c-15 -61 -44 -182 -177 -182c-119 0 -143 62 -246 62c-63 0 -109 -37 -109 -93c0 -46 35 -83 85 -83c20 0 29 1 50 10l12 -22c-25 -20 -57 -27 -91 -27c-88 0 -174 60 -174 153c0 104 84 197 222 197c159 0 180 -70 285 -70c44 0 98 16 118 63zM721 388 l-23 -12c-12 22 -28 35 -51 35c-27 0 -50 -17 -50 -55c0 -78 92 -107 92 -202c0 -113 -109 -179 -246 -179c-211 0 -195 134 -284 134c-25 0 -52 -13 -85 -42l-20 14c17 50 68 163 168 163c107 0 130 -77 151 -142c18 -56 43 -94 78 -94c46 0 74 45 74 92 c0 105 -87 136 -87 235c0 82 84 130 161 130c55 0 106 -25 122 -77'], + 0x2113: [699,14,500,43,632,'43 429l26 38c40 -27 107 -51 128 -53c127 186 236 285 325 285c58 0 110 -25 110 -85c0 -77 -51 -147 -128 -194c-58 -36 -132 -59 -208 -65c-50 -84 -129 -215 -129 -286c0 -27 13 -33 25 -33c32 0 100 35 194 162l36 -27c-94 -132 -167 -185 -250 -185 c-68 0 -112 40 -112 121c0 70 49 172 103 255c-35 8 -96 43 -120 67zM333 421l1 -1c99 22 208 92 208 201c0 16 -5 28 -25 28c-57 0 -145 -155 -184 -228'], + 0x2118: [541,219,850,55,822,'475 448h-24c-4 36 -60 45 -84 45c-79 0 -207 -70 -207 -239c0 -66 18 -96 42 -109c168 222 319 276 449 276c98 0 171 -30 171 -147c0 -138 -107 -284 -261 -284c-107 0 -145 56 -145 121c0 37 33 80 80 80c46 0 67 -32 67 -57c0 -44 -40 -47 -40 -69 c0 -27 24 -35 43 -35c63 0 135 146 135 267c0 42 -15 84 -57 84c-129 0 -258 -150 -346 -283c45 -20 114 -77 114 -131c0 -108 -84 -186 -194 -186c-71 0 -115 47 -115 103c0 70 20 132 68 212c-91 41 -116 96 -116 164c0 129 128 281 301 281c59 0 119 -31 119 -93z M302 -34c0 27 -21 65 -36 80c-18 -35 -58 -112 -58 -177c0 -29 6 -48 16 -48c39 0 78 78 78 145'], + 0x211C: [701,25,884,50,841,'821 117l20 -17c-22 -31 -90 -94 -156 -114h-24c-85 38 -96 88 -105 189c-7 81 -19 153 -44 153l-52 -13c-69 -155 -101 -201 -213 -340c-42 24 -89 46 -117 61c-7 -7 -23 -18 -51 -51l-21 12l112 196c23 -14 113 -72 126 -72c21 0 21 177 21 316c0 83 -17 229 -77 229 c-24 0 -48 -16 -48 -54c0 -85 74 -113 74 -200c0 -84 -59 -147 -190 -167l-8 24c25 9 56 38 56 81c0 101 -74 104 -74 196c0 44 22 81 51 107c37 33 87 46 149 46c87 0 144 -30 181 -73l102 75c152 0 235 -71 235 -156c0 -57 -30 -144 -133 -181v-2c47 -31 69 -90 77 -162 c9 -78 26 -126 42 -126c26 0 50 24 67 43zM596 510c0 63 -25 121 -76 121c-18 0 -37 -7 -67 -39c19 -39 29 -92 29 -136c0 -34 -3 -82 -8 -100c82 11 122 80 122 154'], + 0x2127: [674,18,758,35,723,'496 580l2 -29c121 -32 225 -130 225 -260c0 -165 -147 -309 -344 -309c-198 0 -344 144 -344 306c0 131 97 241 225 263l2 29h-143c-43 0 -51 -21 -51 -77h-25v171h302l-7 -155c-88 -21 -136 -124 -136 -236c0 -124 62 -268 177 -268c118 0 177 144 177 270 c0 111 -48 213 -136 234l-7 155h302v-171h-25c0 55 -11 77 -56 77h-138'], + 0x2132: [676,0,616,48,546,'546 0h-489l-9 85h368v186h-302v85h302v320h130v-676'], + 0x2135: [694,34,766,76,690,'524 317l117 -125c30 -32 49 -56 49 -101c0 -43 -18 -83 -67 -125h-25c3 8 3 22 3 26c0 25 -76 101 -92 117l-305 287c-11 -18 -18 -35 -18 -52c0 -87 159 -133 159 -241c0 -50 -41 -103 -130 -103h-137v25c49 2 92 15 92 46c0 55 -94 77 -94 188c0 74 42 120 101 160 l-63 68c-22 24 -32 53 -32 82c0 47 25 94 64 125h25c-3 -5 -4 -17 -4 -23c0 -24 48 -70 90 -109l232 -220l34 114c-63 38 -90 82 -90 124c0 51 26 83 63 114h25c-2 -10 -3 -21 -3 -31c0 -20 10 -40 27 -54c77 -60 141 -90 141 -152c0 -23 -12 -71 -43 -106h-25 c2 6 3 20 3 25c0 19 -47 52 -65 63'], + 0x2136: [694,34,703,60,659,'637 196l22 -15c-50 -129 -104 -181 -191 -181h-278c-34 0 -75 -1 -109 -34l-21 15c50 129 103 181 191 181h213c8 39 16 81 16 131c0 153 -40 180 -99 180c-55 0 -111 -24 -171 -24c-84 0 -123 58 -123 125c0 43 23 94 56 120h25c-1 -5 -1 -12 -1 -18 c0 -29 14 -65 49 -65c55 0 109 22 173 22c139 0 192 -96 192 -210c0 -89 -32 -189 -82 -261c64 0 106 2 138 34'], + 0x2137: [694,34,562,71,493,'169 694h26c-1 -5 -3 -20 -3 -22c0 -44 39 -51 93 -51c80 0 106 -44 106 -108c0 -58 -37 -89 -37 -191c0 -26 17 -50 40 -74c41 -44 99 -91 99 -159c0 -44 -19 -82 -67 -123h-25c2 6 3 12 3 18c0 52 -77 79 -95 166h-2c-29 -69 -74 -150 -151 -150h-85 c0 61 52 162 128 162c38 0 74 40 102 118c10 49 10 89 10 124c0 41 -28 78 -69 78c-34 0 -65 6 -89 20c-28 16 -46 43 -46 78c0 46 25 83 62 114'], + 0x2138: [694,34,599,40,559,'95 694h26c-1 -6 -1 -13 -1 -18c0 -29 24 -65 60 -65c54 0 118 22 182 22c124 0 197 -68 197 -167c0 -20 -3 -53 -11 -74h-25c-23 49 -72 70 -118 77c-18 -22 -23 -59 -23 -80c0 -55 47 -102 63 -143c15 -36 29 -69 29 -116c0 -62 -45 -138 -138 -164l-21 15 c19 27 26 51 26 81c0 82 -52 161 -52 226c0 84 34 133 74 184v1c-57 0 -117 -24 -190 -24c-84 0 -133 57 -133 126c0 41 23 93 55 119'], + 0x2190: [451,-55,977,68,909,'909 209h-598c-19 0 -48 -1 -48 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h598v-88'], + 0x2191: [676,170,584,94,490,'490 414l-20 -25c-30 21 -53 41 -77 62c-5 4 -32 30 -45 30c-11 0 -12 -27 -12 -48v-603h-88v603c0 19 -1 48 -13 48c-11 0 -35 -25 -41 -30c-22 -20 -47 -40 -78 -61l-22 24c83 71 149 159 192 262h11c47 -105 104 -184 193 -262'], + 0x2192: [451,-55,977,68,909,'909 259v-11c-105 -47 -184 -104 -262 -193l-25 20c21 30 41 53 62 77c4 5 30 32 30 45c0 11 -27 12 -48 12h-598v88h598c19 0 48 1 48 13c0 11 -25 35 -30 41c-20 22 -40 47 -61 78l24 22c71 -83 159 -149 262 -192'], + 0x2193: [676,170,584,94,490,'468 116l22 -24c-83 -71 -149 -159 -192 -262h-11c-47 105 -104 184 -193 262l20 25c30 -21 53 -41 77 -62c5 -4 32 -30 45 -30c11 0 12 27 12 48v603h88v-603c0 -19 1 -48 13 -48c11 0 35 25 41 30c22 20 47 40 78 61'], + 0x2194: [451,-55,977,30,948,'948 259v-11c-105 -47 -184 -104 -262 -193l-25 20c21 30 41 53 62 77c4 5 30 32 30 45c0 9 -18 12 -35 12h-458c-17 0 -35 -4 -35 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20 c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h432c19 0 48 1 48 13c0 11 -25 35 -30 41c-20 22 -40 47 -61 78l24 22c71 -83 159 -149 262 -192'], + 0x2195: [736,230,584,94,490,'468 56l22 -24c-83 -71 -149 -159 -192 -262h-11c-47 105 -104 184 -193 262l20 25c30 -21 53 -41 77 -62c5 -4 32 -30 45 -30c11 0 12 27 12 48v480c0 19 -1 48 -13 48c-11 0 -35 -25 -41 -30c-22 -20 -47 -40 -78 -61l-22 24c83 71 149 159 192 262h11 c47 -105 104 -184 193 -262l-20 -25c-30 21 -53 41 -77 62c-5 4 -32 30 -45 30c-9 0 -12 -18 -12 -35v-506c0 -17 4 -35 13 -35c11 0 35 25 41 30c22 20 47 40 78 61'], + 0x2196: [676,170,977,68,911,'911 -108l-62 -62l-637 638c-13 13 -27 28 -37 28c-13 0 -15 -51 -16 -55c-2 -32 -4 -62 -10 -98h-32c0 118 -8 217 -49 325l8 8c103 -43 213 -50 322 -50v-32c-36 -8 -68 -11 -98 -12c-8 -1 -52 -2 -52 -14c0 -10 16 -25 27 -37'], + 0x2197: [676,170,977,68,911,'903 676l8 -8c-41 -108 -49 -207 -49 -325h-32c-6 36 -8 66 -10 98c-1 4 -3 55 -16 55c-10 0 -24 -15 -37 -28l-637 -638l-62 62l636 639c11 12 27 27 27 37c0 12 -44 13 -52 14c-30 1 -62 4 -98 12v32c109 0 219 7 322 50'], + 0x2198: [676,170,977,68,911,'911 -162l-8 -8c-103 43 -213 50 -322 50v32c36 8 68 11 98 12c8 1 52 2 52 14c0 10 -15 24 -27 37l-636 639l62 62l637 -638c13 -13 27 -28 37 -28c13 0 15 51 16 55c2 32 4 62 10 98h32c0 -118 8 -217 49 -325'], + 0x2199: [676,170,977,68,911,'911 614l-636 -639c-11 -12 -27 -27 -27 -37c0 -12 44 -13 52 -14c30 -1 62 -4 98 -12v-32c-109 0 -219 -7 -322 -50l-8 8c41 108 49 207 49 325h32c6 -36 8 -66 10 -98c1 -4 3 -55 16 -55c10 0 24 15 37 28l637 638'], + 0x219A: [451,-55,977,68,909,'909 209h-306l-97 -148h-83l97 148h-209c-19 0 -48 -1 -48 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h266l97 148h83 l-97 -148h249v-88'], + 0x219B: [451,-55,977,68,909,'909 259v-11c-105 -47 -184 -104 -262 -193l-25 20c21 30 41 53 62 77c4 5 30 32 30 45c0 11 -27 12 -48 12h-321l-97 -148h-83l97 148h-194v88h251l97 148h83l-97 -148h264c19 0 48 1 48 13c0 11 -25 35 -30 41c-20 22 -40 47 -61 78l24 22c71 -83 159 -149 262 -192'], + 0x219E: [451,-55,977,68,909,'909 209h-364c-9 0 -48 1 -48 -13c0 -11 22 -33 30 -41c22 -24 42 -51 61 -78l-24 -22c-52 61 -115 114 -185 154h-68c-9 0 -48 1 -48 -13c0 -11 22 -33 30 -41c22 -24 42 -51 61 -78l-24 -22c-71 83 -161 150 -262 192v11c106 47 185 106 262 193l25 -20 c-19 -27 -40 -52 -62 -77c-8 -10 -30 -33 -30 -45c0 -13 40 -12 48 -12h68c72 41 131 92 185 154l25 -20c-19 -27 -40 -52 -62 -77c-8 -10 -30 -33 -30 -45c0 -13 40 -12 48 -12h364v-88'], + 0x21A0: [451,-55,977,68,909,'909 258v-11c-101 -42 -191 -109 -262 -192l-24 22c19 27 39 54 61 78c8 8 30 30 30 41c0 14 -39 13 -48 13h-68c-70 -40 -133 -93 -185 -154l-24 22c19 27 39 54 61 78c8 8 30 30 30 41c0 14 -39 13 -48 13h-364v88h364c8 0 48 -1 48 12c0 12 -22 35 -30 45 c-22 25 -43 50 -62 77l25 20c54 -62 113 -113 185 -154h68c8 0 48 -1 48 12c0 12 -22 35 -30 45c-22 25 -43 50 -62 77l25 20c77 -87 156 -146 262 -193'], + 0x21A2: [451,-55,977,68,909,'884 451l25 -20c-41 -59 -99 -99 -99 -177c0 -38 13 -71 37 -99c22 -25 42 -50 61 -78l-24 -22c-52 61 -115 114 -185 154h-388c-9 0 -48 1 -48 -13c0 -11 22 -33 30 -41c22 -24 43 -51 61 -78l-24 -22c-71 83 -161 150 -262 192v11c106 47 185 106 262 193l25 -20 c-19 -27 -40 -52 -62 -77c-8 -10 -30 -33 -30 -45c0 -13 40 -12 48 -12h388c72 41 131 92 185 154'], + 0x21A3: [451,-55,977,68,909,'909 258v-11c-101 -42 -191 -109 -262 -192l-24 22c18 27 39 54 61 78c8 8 30 30 30 41c0 14 -39 13 -48 13h-388c-70 -40 -133 -93 -185 -154l-24 22c19 28 39 53 61 78c24 28 37 61 37 99c0 78 -58 118 -99 177l25 20c54 -62 113 -113 185 -154h388c8 0 48 -1 48 12 c0 12 -22 35 -30 45c-22 25 -43 50 -62 77l25 20c77 -87 156 -146 262 -193'], + 0x21A6: [451,-55,977,68,909,'909 258v-11c-101 -42 -191 -109 -262 -192l-24 22c19 27 39 54 61 78c8 8 30 30 30 41c0 14 -39 13 -48 13h-528v-154h-70v396h70v-154h528c8 0 48 -1 48 12c0 12 -22 35 -30 45c-22 25 -43 50 -62 77l25 20c77 -87 156 -146 262 -193'], + 0x21A9: [539,-55,966,66,900,'666 539h67c92 0 167 -60 167 -168c0 -86 -75 -162 -167 -162h-424c-19 0 -48 -1 -48 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45 c0 -11 27 -12 48 -12h422c51 0 81 45 81 83c0 39 -29 85 -81 85h-65v74'], + 0x21AA: [539,-55,966,66,900,'900 258v-11c-103 -43 -191 -109 -262 -192l-24 22c21 31 41 56 61 78c5 6 30 30 30 41c0 12 -29 13 -48 13h-424c-92 0 -167 76 -167 162c0 108 75 168 167 168h67v-74h-65c-52 0 -81 -46 -81 -85c0 -38 30 -83 81 -83h422c21 0 48 1 48 12c0 13 -26 40 -30 45 c-21 24 -41 47 -62 77l25 20c78 -89 157 -146 262 -193'], + 0x21AB: [540,6,966,66,900,'569 297v67c0 116 74 176 162 176c93 0 169 -63 169 -169c0 -95 -86 -162 -179 -162h-78v-215h-74v215h-260c-19 0 -48 -1 -48 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20 c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h260zM643 297h74c48 0 95 28 95 84c0 59 -34 85 -84 85c-53 0 -85 -43 -85 -100v-69'], + 0x21AC: [540,6,966,66,900,'900 258v-11c-103 -43 -191 -109 -262 -192l-24 22c21 31 41 56 61 78c5 6 30 30 30 41c0 12 -29 13 -48 13h-260v-215h-74v215h-78c-93 0 -179 67 -179 162c0 106 76 169 169 169c88 0 162 -60 162 -176v-67h260c21 0 48 1 48 12c0 13 -26 40 -30 45 c-21 24 -41 47 -62 77l25 20c78 -89 157 -146 262 -193zM323 297v69c0 57 -32 100 -85 100c-50 0 -84 -26 -84 -85c0 -56 47 -84 95 -84h74'], + 0x21AD: [451,-55,1297,55,1242,'1242 258v-11c-103 -43 -191 -109 -262 -192l-24 22c21 31 41 56 61 78c5 6 30 30 30 41c0 12 -26 13 -45 13h-53c-25 0 -41 -19 -54 -37c-22 -32 -41 -69 -87 -69c-42 0 -67 47 -90 102c-11 27 -21 54 -31 74c-10 19 -22 38 -41 38s-31 -19 -41 -38 c-10 -20 -19 -47 -30 -74c-22 -55 -48 -102 -90 -102c-41 0 -60 23 -77 49c-8 12 -16 27 -26 38s-22 19 -39 19h-53c-19 0 -40 -1 -40 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20 c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 19 -12 40 -12h63c44 0 63 -38 83 -69c11 -17 25 -37 47 -37c16 0 28 15 37 39c8 20 15 46 24 73c18 54 45 102 102 102s84 -48 103 -102c9 -27 16 -53 24 -73c9 -24 21 -39 37 -39c22 0 36 20 47 37 c20 31 39 69 82 69h60c21 0 48 1 48 12c0 13 -26 40 -30 45c-21 24 -41 47 -62 77l25 20c78 -89 157 -146 262 -193'], + 0x21AE: [451,-55,977,30,948,'948 259v-11c-105 -47 -184 -104 -262 -193l-25 20c21 30 41 53 62 77c4 5 30 32 30 45c0 9 -18 12 -35 12h-209l-43 -148h-66l43 148h-183c-17 0 -35 -4 -35 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193 l25 -20c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h195l42 146h66l-42 -146h171c19 0 48 1 48 13c0 11 -25 35 -30 41c-20 22 -40 47 -61 78l24 22c71 -83 159 -149 262 -192'], + 0x21B0: [686,170,584,45,503,'503 -170h-88v614h-127c-9 0 -48 1 -48 -13c0 -11 22 -33 30 -41c22 -24 42 -51 61 -78l-24 -22c-71 83 -161 150 -262 192v11c106 47 185 106 262 193l25 -20c-19 -27 -40 -52 -62 -77c-8 -10 -30 -33 -30 -45c0 -13 40 -12 48 -12h215v-702'], + 0x21B1: [686,170,584,81,539,'539 493v-11c-101 -42 -191 -109 -262 -192l-24 22c19 27 39 54 61 78c8 8 30 30 30 41c0 14 -39 13 -48 13h-127v-614h-88v702h215c8 0 48 -1 48 12c0 12 -22 35 -30 45c-22 25 -43 50 -62 77l25 20c77 -87 156 -146 262 -193'], + 0x21B6: [524,0,971,66,905,'905 185h-88c-4 140 -118 251 -258 251c-109 0 -208 -63 -244 -167c-2 -7 -7 -29 -7 -47c0 -15 3 -27 13 -27c11 0 33 23 41 30c24 22 51 43 78 61l22 -24c-83 -71 -150 -161 -192 -262h-11c-47 106 -106 185 -193 262l20 25c27 -19 52 -40 77 -62c9 -8 33 -30 45 -30 c14 0 11 41 12 48c3 28 15 62 27 87c57 120 182 194 314 194c184 0 340 -155 344 -339'], + 0x21B7: [524,0,971,66,905,'885 287l20 -25c-87 -77 -146 -156 -193 -262h-11c-42 101 -109 191 -192 262l22 24c27 -18 54 -39 78 -61c8 -7 30 -30 41 -30c10 0 13 12 13 27c0 18 -5 40 -7 47c-36 104 -135 167 -244 167c-140 0 -254 -111 -258 -251h-88c4 184 160 339 344 339 c132 0 257 -74 314 -194c12 -25 24 -59 27 -87c1 -7 -2 -48 12 -48c12 0 36 22 45 30c25 22 50 43 77 62'], + 0x21BA: [693,127,974,105,869,'826 693l13 -29c-40 -23 -79 -45 -120 -66c-6 -3 -21 -11 -21 -20c0 -3 1 -3 3 -5c105 -80 168 -184 168 -319c0 -211 -171 -381 -382 -381s-382 170 -382 381c0 171 113 317 275 368l29 -82c-124 -41 -217 -155 -217 -288c0 -161 134 -290 294 -290 c161 0 295 131 295 293c0 88 -42 181 -114 233c-2 0 -3 1 -5 1c-8 0 -9 -10 -9 -16c0 -3 0 -7 1 -10c15 -44 24 -89 33 -135l-30 -10c-32 104 -76 203 -151 284l5 11h14c105 0 206 37 301 80'], + 0x21BB: [693,127,974,105,869,'565 540l29 82c162 -51 275 -197 275 -368c0 -211 -171 -381 -382 -381s-382 170 -382 381c0 135 63 239 168 319c2 2 3 2 3 5c0 9 -15 17 -21 20c-41 21 -80 43 -120 66l13 29c95 -43 196 -80 301 -80h14l5 -11c-75 -81 -119 -180 -151 -284l-30 10c9 46 18 91 33 135 c1 3 1 7 1 10c0 6 -1 16 -9 16c-2 0 -3 -1 -5 -1c-72 -52 -114 -145 -114 -233c0 -162 134 -293 295 -293c160 0 294 129 294 290c0 133 -93 247 -217 288'], + 0x21BC: [501,-209,977,66,910,'910 209h-844v4c98 78 220 192 308 288l34 -29c-42 -52 -118 -133 -118 -154c0 -11 4 -21 25 -21h595v-88'], + 0x21BD: [297,-5,977,65,909,'909 209h-595c-21 0 -25 -10 -25 -21c0 -21 76 -102 118 -154l-34 -29c-88 96 -210 210 -308 288v4h844v-88'], + 0x21BE: [694,162,552,239,481,'481 418l-22 -24c-31 21 -56 41 -78 61c-6 5 -30 30 -41 30c-12 0 -13 -29 -13 -48v-599h-88v856'], + 0x21BF: [694,162,352,71,313,'313 -162h-88v599c0 19 -1 48 -13 48c-11 0 -35 -25 -41 -30c-22 -20 -47 -40 -78 -61l-22 24l242 276v-856'], + 0x21C0: [501,-209,977,66,910,'910 209h-844v88h595c21 0 25 10 25 21c0 21 -76 102 -118 154l34 29c88 -96 210 -210 308 -288v-4'], + 0x21C1: [297,-5,977,66,910,'910 297v-4c-98 -78 -220 -192 -308 -288l-34 29c42 52 118 133 118 154c0 11 -4 21 -25 21h-595v88h844'], + 0x21C2: [694,162,552,239,481,'481 114l-242 -276v856h88v-599c0 -19 1 -48 13 -48c11 0 35 25 41 30c22 20 47 40 78 61'], + 0x21C3: [694,162,552,71,313,'313 -162l-242 276l22 24c31 -21 56 -41 78 -61c6 -5 30 -30 41 -30c12 0 13 29 13 48v599h88v-856'], + 0x21C4: [618,114,977,68,909,'909 425v-11c-103 -43 -191 -109 -262 -192l-24 22c21 31 41 56 61 78c5 6 30 30 30 41c0 12 -29 13 -48 13h-598v88h598c21 0 48 1 48 12c0 13 -26 40 -30 45c-21 24 -41 47 -62 77l25 20c78 -89 157 -146 262 -193zM909 40h-598c-19 0 -48 -1 -48 -13 c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h598v-88'], + 0x21C6: [618,114,977,68,909,'909 376h-598c-19 0 -48 -1 -48 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h598v-88zM909 89v-11 c-103 -43 -191 -109 -262 -192l-24 22c21 31 41 56 61 78c5 6 30 30 30 41c0 12 -29 13 -48 13h-598v88h598c21 0 48 1 48 12c0 13 -26 40 -30 45c-21 24 -41 47 -62 77l25 20c78 -89 157 -146 262 -193'], + 0x21C7: [618,114,977,68,909,'909 40h-598c-9 0 -48 1 -48 -13c0 -11 22 -33 30 -41c22 -24 42 -51 61 -78l-24 -22c-71 83 -161 150 -262 192v11c91 41 166 91 235 163c-66 69 -147 125 -235 162v11c105 47 186 106 262 193l25 -20c-19 -27 -40 -52 -62 -77c-8 -10 -30 -32 -30 -45s39 -12 48 -12 h598v-88h-598c-9 0 -48 1 -48 -13c0 -11 22 -33 30 -41c20 -22 37 -47 56 -69c-18 -23 -37 -46 -56 -68c-8 -10 -30 -32 -30 -45s39 -12 48 -12h598v-88'], + 0x21C8: [676,165,864,66,798,'798 414l-22 -24c-27 19 -54 39 -78 61c-8 8 -30 30 -41 30c-14 0 -13 -39 -13 -48v-598h-88v598c0 9 1 48 -12 48s-35 -22 -45 -30l-68 -56c-22 19 -47 36 -69 56c-8 8 -30 30 -41 30c-14 0 -13 -39 -13 -48v-598h-88v598c0 9 1 48 -12 48s-35 -22 -45 -30 c-25 -22 -50 -43 -77 -62l-20 25c87 76 146 157 193 262h11c37 -88 93 -169 162 -235c72 69 122 144 163 235h11c42 -101 109 -191 192 -262'], + 0x21C9: [618,114,977,68,909,'909 89v-11c-101 -42 -191 -109 -262 -192l-24 22c19 27 39 54 61 78c8 8 30 30 30 41c0 14 -39 13 -48 13h-598v88h598c9 0 48 -1 48 12s-22 35 -30 45c-19 22 -38 45 -56 68c19 22 36 47 56 69c8 8 30 30 30 41c0 14 -39 13 -48 13h-598v88h598c9 0 48 -1 48 12 s-22 35 -30 45c-22 25 -43 50 -62 77l25 20c76 -87 157 -146 262 -193v-11c-88 -37 -169 -93 -235 -162c69 -72 144 -122 235 -163'], + 0x21CA: [676,165,864,66,798,'776 121l22 -24c-83 -71 -150 -161 -192 -262h-11c-41 91 -91 166 -163 235c-69 -66 -125 -147 -162 -235h-11c-47 105 -106 186 -193 262l20 25c27 -19 52 -40 77 -62c10 -8 32 -30 45 -30s12 39 12 48v598h88v-598c0 -9 -1 -48 13 -48c11 0 33 22 41 30 c22 20 47 37 69 56l68 -56c10 -8 32 -30 45 -30s12 39 12 48v598h88v-598c0 -9 -1 -48 13 -48c11 0 33 22 41 30c24 22 51 42 78 61'], + 0x21CB: [571,21,977,66,910,'910 329h-844l276 242l24 -22c-21 -31 -41 -56 -61 -78c-5 -6 -30 -30 -30 -41c0 -12 29 -13 48 -13h587v-88zM910 221l-276 -242l-24 22c21 31 41 56 61 78c5 6 30 30 30 41c0 12 -29 13 -48 13h-587v88h844'], + 0x21CC: [571,21,977,66,910,'910 329h-844v88h587c9 0 48 -1 48 13c0 11 -22 33 -30 41c-22 25 -42 51 -61 78l24 22zM910 133h-587c-9 0 -48 1 -48 -13c0 -11 22 -33 30 -41c22 -25 42 -51 61 -78l-24 -22l-276 242h844v-88'], + 0x21CD: [570,64,977,68,909,'909 107h-226l-52 -171h-73l52 171h-184c-30 0 -48 -6 -48 -21c0 -13 10 -26 16 -33c23 -26 49 -57 78 -97l-25 -20c-124 132 -267 237 -379 312v10c112 72 253 185 379 312l24 -22c-26 -38 -67 -86 -77 -99c-6 -7 -16 -19 -16 -29c0 -19 24 -21 46 -21h273l52 171h73 l-52 -171h139v-88h-165l-35 -116h200v-88zM671 311h-420c-26 -7 -43 -34 -43 -58s17 -52 43 -58h385'], + 0x21CE: [570,64,1240,50,1190,'1190 258v-10c-112 -75 -255 -180 -379 -312l-25 20c29 40 55 71 78 97c6 7 16 20 16 33c0 15 -18 21 -48 21h-217l-52 -171h-73l52 171h-134c-30 0 -48 -6 -48 -21c0 -13 10 -26 16 -33c23 -26 49 -57 78 -97l-25 -20c-124 132 -267 237 -379 312v10 c112 72 253 185 379 312l24 -22c-26 -38 -67 -86 -77 -99c-6 -7 -16 -19 -16 -29c0 -19 24 -21 46 -21h223l52 171h73l-52 -171h132c22 0 46 2 46 21c0 10 -10 22 -16 29c-10 13 -51 61 -77 99l24 22c126 -127 267 -240 379 -312zM641 195h366c26 6 43 34 43 58 s-17 51 -43 58h-331zM603 311h-370c-26 -7 -43 -34 -43 -58s17 -52 43 -58h335'], + 0x21CF: [570,64,977,68,909,'909 258v-10c-136 -91 -267 -192 -379 -312l-25 20c24 34 52 64 78 97c8 10 16 20 16 33c0 20 -34 21 -48 21h-270l-52 -171h-73l52 171h-140v88h166l35 116h-201v88h227l52 171h73l-52 -171h185c14 0 46 0 46 21c0 10 -10 21 -16 29c-26 33 -53 65 -77 99l24 22 c115 -116 241 -223 379 -312zM307 195h419c4 0 7 2 11 4c19 10 32 32 32 54s-13 43 -32 54c-4 2 -7 4 -11 4h-384'], + 0x21D0: [570,64,977,68,909,'909 107h-485c-22 0 -46 -2 -46 -21c0 -10 10 -22 16 -29c10 -13 51 -61 77 -99l-24 -22c-126 127 -267 240 -379 312v10c112 75 255 180 379 312l25 -20c-29 -40 -55 -71 -78 -97c-6 -7 -16 -20 -16 -33c0 -15 18 -21 48 -21h483v-88h-658c-26 -6 -43 -34 -43 -58 s17 -51 43 -58h658v-88'], + 0x21D1: [676,170,714,40,674,'674 297l-20 -25c-40 29 -71 55 -97 78c-7 6 -20 16 -33 16c-15 0 -21 -18 -21 -48v-488h-88v663c-6 26 -34 43 -58 43s-51 -17 -58 -43v-663h-88v490c0 22 -2 46 -21 46c-10 0 -22 -10 -29 -16c-13 -10 -61 -51 -99 -77l-22 24c127 126 240 267 312 379h10 c75 -112 180 -255 312 -379'], + 0x21D2: [570,64,977,68,909,'909 258v-10c-112 -75 -255 -180 -379 -312l-25 20c29 40 55 71 78 97c6 7 16 20 16 33c0 15 -18 21 -48 21h-483v88h658c26 6 43 34 43 58s-17 51 -43 58h-658v88h485c22 0 46 2 46 21c0 10 -10 22 -16 29c-10 13 -51 61 -77 99l24 22c126 -127 267 -240 379 -312'], + 0x21D3: [676,170,714,40,674,'652 233l22 -24c-127 -126 -240 -267 -312 -379h-10c-75 112 -180 255 -312 379l20 25c40 -29 71 -55 97 -78c7 -6 20 -16 33 -16c15 0 21 18 21 48v488h88v-663c6 -26 34 -43 58 -43s51 17 58 43v663h88v-490c0 -22 2 -46 21 -46c10 0 22 10 29 16c13 10 61 51 99 77'], + 0x21D4: [570,64,1240,50,1190,'1190 258v-10c-112 -75 -255 -180 -379 -312l-25 20c29 40 55 71 78 97c6 7 16 20 16 33c0 15 -18 21 -48 21h-426c-22 0 -46 -2 -46 -21c0 -10 10 -22 16 -29c10 -13 51 -61 77 -99l-24 -22c-126 127 -267 240 -379 312v10c112 75 255 180 379 312l25 -20 c-29 -40 -55 -71 -78 -97c-6 -7 -16 -20 -16 -33c0 -15 18 -21 48 -21h426c22 0 46 2 46 21c0 10 -10 22 -16 29c-10 13 -51 61 -77 99l24 22c126 -127 267 -240 379 -312zM233 195h774c26 6 43 34 43 58s-17 51 -43 58h-774c-26 -6 -43 -34 -43 -58s17 -51 43 -58'], + 0x21D5: [736,230,714,40,674,'652 173l22 -24c-127 -126 -240 -267 -312 -379h-10c-75 112 -180 255 -312 379l20 25c40 -29 71 -55 97 -78c7 -6 20 -16 33 -16c15 0 21 18 21 48v252c0 22 -2 46 -21 46c-10 0 -22 -10 -29 -16c-13 -10 -61 -51 -99 -77l-22 24c127 126 240 267 312 379h10 c75 -112 180 -255 312 -379l-20 -25c-40 29 -71 55 -97 78c-7 6 -20 16 -33 16c-15 0 -21 -18 -21 -48v-252c0 -22 2 -46 21 -46c10 0 22 10 29 16c13 10 61 51 99 77zM415 -47v600c-6 26 -34 43 -58 43s-51 -17 -58 -43v-600c6 -26 34 -43 58 -43s51 17 58 43'], + 0x21DD: [451,-55,977,62,914,'914 258v-11c-103 -43 -191 -109 -262 -192l-24 22c21 31 41 56 61 78c5 6 30 30 30 41c0 12 -29 13 -48 13h-55l-98 -113l-123 171l-118 -171l-95 113h-120v88h159l54 -59l120 175l125 -176l54 60h97c21 0 48 1 48 12c0 13 -26 40 -30 45c-21 24 -43 47 -64 77l27 20 c78 -89 157 -146 262 -193'], + 0x2200: [676,0,599,5,594,'594 676l-246 -676h-99l-244 676h105l70 -193h239l70 193h105zM387 395h-176l88 -242'], + 0x2201: [785,29,539,63,476,'476 244v-139c0 -124 -157 -134 -213 -134c-58 0 -200 7 -200 137v520c0 131 149 157 204 157c54 0 209 -19 209 -152v-122h-104v91c0 75 -81 79 -107 79c-25 0 -98 -7 -98 -78v-460c0 -68 76 -68 101 -68c26 0 104 1 104 69v100h104'], + 0x2202: [686,10,559,44,559,'234 627l2 23c30 25 79 36 119 36c130 0 204 -80 204 -256c0 -171 -103 -440 -328 -440c-120 0 -187 66 -187 176c0 159 139 293 298 293c50 0 115 -24 133 -70h4v8c1 9 2 18 2 27c0 114 -20 221 -154 221c-26 0 -58 -8 -93 -18zM423 293c0 91 -43 126 -89 126 c-88 0 -174 -152 -174 -265c0 -97 28 -124 88 -124c92 0 175 135 175 263'], + 0x2203: [676,0,599,76,523,'523 0h-447v100h348v187h-336v100h336v189h-348v100h447v-676'], + 0x2204: [803,127,599,76,523,'523 0h-337l-37 -127h-73l37 127h-37v100h67l55 187h-110v100h139l56 189h-207v100h237l37 127h73l-37 -127h137v-676zM424 387v189h-68l-56 -189h124zM424 100v187h-153l-55 -187h208'], + 0x2205: [594,90,787,50,737,'737 594l-94 -108c58 -61 93 -143 93 -234c0 -189 -153 -342 -342 -342c-74 0 -143 24 -199 64l-56 -64h-89l95 108c-58 61 -93 144 -93 234c0 189 153 342 342 342c74 0 143 -24 199 -63l55 63h89zM585 420l-332 -379c40 -27 89 -43 141 -43c140 0 254 114 254 254 c0 64 -24 123 -63 168zM203 85l331 379c-40 26 -88 42 -140 42c-140 0 -254 -114 -254 -254c0 -64 24 -123 63 -167'], + 0x2207: [676,0,681,23,658,'658 676l-284 -676h-54l-297 676h635zM585 626h-415l212 -479h1'], + 0x2208: [547,13,750,82,668,'668 -13h-298c-175 0 -288 126 -288 280s113 280 291 280h295v-88h-311c-86 0 -162 -63 -182 -148h493v-88h-493c20 -86 97 -148 183 -148h310v-88'], + 0x2209: [680,146,750,82,668,'668 -13h-298c-26 0 -50 3 -73 8l-58 -141h-69l66 162c-96 45 -154 141 -154 251c0 154 113 280 291 280h82l55 133h69l-55 -133h144v-88h-180l-61 -148h241v-88h-277l-60 -146c9 -1 18 -2 27 -2h310v-88zM419 459h-62c-86 0 -162 -63 -182 -148h183zM322 223h-147 c13 -55 49 -100 95 -125'], + 0x220B: [547,13,750,82,668,'82 547h295c178 0 291 -126 291 -280s-113 -280 -288 -280h-298v88h310c86 0 163 62 183 148h-493v88h493c-20 85 -96 148 -182 148h-311v88'], + 0x220D: [499,-35,500,60,440,'60 499h148c128 0 232 -104 232 -232s-104 -232 -232 -232h-148v88h148c64 0 119 42 137 100h-285v88h285c-18 58 -73 100 -137 100h-148v88'], + 0x2212: [297,-209,750,66,685,'685 209h-619v88h619v-88'], + 0x2213: [657,12,770,65,685,'685 569h-620v88h620v-88zM685 209h-266v-221h-88v221h-266v88h266v221h88v-221h266v-88'], + 0x2214: [793,57,750,65,685,'457 711c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82zM685 209h-266v-266h-88v266h-266v88h266v266h88v-266h266v-88'], + 0x2215: [732,193,584,78,506,'506 732l-332 -925h-96l332 925h96'], + 0x2216: [411,-93,452,25,427,'427 93h-86l-316 318h86'], + 0x2217: [502,-34,585,82,503,'301 294l7 -3c40 31 51 38 78 79c22 33 36 41 60 41c29 0 57 -24 57 -52c0 -35 -47 -57 -88 -57c-47 0 -61 -4 -96 -28v-8c39 -18 55 -26 104 -30c58 -5 79 -20 79 -55c0 -31 -19 -54 -53 -54c-29 0 -41 15 -80 67c-22 29 -31 38 -62 54l-6 -5c1 -48 8 -64 29 -105 c12 -23 16 -35 16 -48c0 -32 -24 -56 -55 -56c-29 0 -52 23 -52 56c0 17 4 26 17 49c21 37 24 55 25 104l-7 5c-41 -30 -50 -39 -79 -81c-23 -33 -36 -40 -59 -40c-30 0 -54 22 -54 52c0 40 34 53 90 57c45 3 58 7 92 31v7c-43 19 -60 24 -109 28c-56 5 -73 30 -73 57 c0 31 20 52 50 52s46 -9 67 -46c25 -43 35 -51 76 -74l6 3c-1 45 -2 55 -25 97c-15 27 -19 39 -19 57c0 31 23 54 55 54c30 0 52 -24 52 -59c0 -16 -5 -26 -19 -50c-19 -32 -24 -51 -24 -83v-16'], + 0x2218: [409,-95,394,40,354,'354 252c0 -87 -70 -157 -157 -157c-88 0 -157 70 -157 159c0 88 70 155 159 155c85 0 155 -71 155 -157zM266 252c0 39 -31 69 -67 69c-42 0 -71 -30 -71 -67c0 -42 30 -71 69 -71s69 30 69 69'], + 0x2219: [414,-91,493,85,408,'408 252c0 -88 -73 -161 -162 -161c-88 0 -161 73 -161 161c0 89 73 162 161 162c89 0 162 -73 162 -162'], + 0x221A: [946,259,965,130,1016,'1016 946l-481 -1205h-65l-203 504c-17 43 -28 57 -45 57c-18 0 -42 -17 -69 -43l-23 35l165 127h45l188 -476h1l400 1001h87'], + 0x221D: [450,0,772,80,692,'692 0h-5c-101 0 -157 58 -211 136c-45 -82 -113 -136 -210 -136c-120 0 -186 98 -186 210c0 92 34 178 121 220c25 12 52 20 80 20c105 0 158 -62 217 -139c45 80 95 139 194 139v-104c-84 0 -116 -25 -162 -93c30 -49 100 -166 162 -171v-82zM442 193 c-37 62 -111 178 -192 178c-56 0 -90 -58 -90 -109c0 -76 44 -158 129 -158c68 0 114 37 153 89'], + 0x221E: [450,0,964,80,884,'884 232c0 -115 -86 -232 -208 -232c-92 0 -151 66 -200 136c-45 -83 -113 -136 -210 -136c-120 0 -186 98 -186 210c0 93 34 178 121 220c24 12 53 20 80 20c104 0 157 -60 217 -139c45 80 95 139 194 139c120 0 192 -106 192 -218zM804 188c0 78 -42 158 -129 158 c-72 0 -107 -37 -145 -93c36 -59 103 -174 184 -174c56 0 90 58 90 109zM442 193c-37 60 -111 178 -192 178c-56 0 -90 -58 -90 -109c0 -76 44 -158 129 -158c69 0 114 37 153 89'], + 0x2220: [569,0,792,50,708,'708 0h-658l568 569l64 -61l-420 -420h446v-88'], + 0x2221: [569,74,792,50,708,'708 0h-98c0 -21 -1 -43 -6 -74l-87 14c4 25 5 43 5 60h-472l334 334c-12 12 -26 23 -48 40l53 70c25 -19 42 -32 57 -47l172 172l64 -61l-178 -178c52 -69 88 -152 101 -242h103v-88zM262 88h254c-11 66 -38 126 -75 179'], + 0x2222: [534,26,695,27,667,'667 86l-33 -82l-88 36c-8 -19 -17 -37 -34 -66l-76 45c14 22 21 39 28 55l-437 179l435 183c-7 15 -14 29 -27 53l76 45c14 -26 25 -46 33 -65l90 37l33 -80l-94 -40c12 -44 17 -89 17 -133s-5 -87 -16 -129zM257 253l234 -95c8 31 11 62 11 95c0 32 -4 66 -12 99'], + 0x2223: [690,189,288,100,188,'188 -189h-88v879h88v-879'], + 0x2224: [690,189,411,23,388,'388 302l-138 -71v-420h-88v375l-108 -55l-31 69l139 71v419h88v-374l107 54'], + 0x2225: [690,189,487,100,387,'387 -189h-88v879h88v-879zM188 -189h-88v879h88v-879'], + 0x2226: [690,189,617,23,594,'594 354l-142 -72v-471h-88v426l-111 -57v-369h-88v324l-110 -56l-32 69l142 72v470h88v-425l111 56v369h88v-324l110 56'], + 0x2227: [536,28,640,52,588,'588 -28h-94l-174 413l-174 -413h-94l234 564h68'], + 0x2228: [536,28,640,52,588,'588 536l-234 -564h-68l-234 564h94l174 -413l174 413h94'], + 0x2229: [541,33,650,66,584,'584 -33h-88v315c0 94 -77 171 -171 171s-171 -77 -171 -171v-315h-88v315c0 143 116 259 259 259s259 -116 259 -259v-315'], + 0x222A: [541,33,650,66,584,'496 541h88v-315c0 -143 -116 -259 -259 -259s-259 116 -259 259v315h88v-315c0 -94 77 -171 171 -171s171 77 171 171v315'], + 0x222B: [824,320,553,32,733,'234 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -62 -71 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66 c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 72 87 170'], + 0x2234: [575,41,750,66,685,'460 488c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM685 46c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM240 46c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87'], + 0x2235: [575,41,750,66,685,'685 488c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM240 488c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM460 46c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87'], + 0x223C: [374,-132,750,67,682,'628 374h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136'], + 0x223D: [374,-132,750,67,682,'682 132h-54c-20 81 -54 136 -114 136c-69 0 -169 -118 -273 -118c-108 0 -167 120 -174 224h54c20 -81 54 -136 114 -136c64 0 163 118 268 118c107 0 173 -105 179 -224'], + 0x2240: [575,40,348,53,295,'295 14v-54c-119 6 -242 72 -242 179c0 105 138 219 138 279c0 54 -57 81 -138 102v55c104 -7 242 -66 242 -174c0 -104 -138 -219 -138 -278c0 -56 58 -89 138 -109'], + 0x2241: [444,-62,750,67,682,'628 374h54c-7 -104 -66 -224 -174 -224c-44 0 -88 21 -129 46l-77 -134h-76l98 169c-33 21 -63 37 -89 37c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c43 0 86 -20 125 -44l76 132h76l-97 -167c34 -22 63 -39 88 -39c60 0 94 55 114 136'], + 0x2242: [463,-45,750,68,683,'682 375h-614v88h614v-88zM629 287h54c-5 -102 -61 -224 -179 -224c-97 0 -206 118 -268 118c-71 0 -100 -79 -114 -136h-54c6 96 61 224 174 224c100 0 205 -118 273 -118c71 0 100 79 114 136'], + 0x2243: [463,-45,750,68,683,'629 463h54c-6 -96 -61 -224 -174 -224c-100 0 -205 118 -273 118c-71 0 -100 -79 -114 -136h-54c5 102 61 224 179 224c97 0 206 -118 268 -118c71 0 100 79 114 136zM682 45h-614v88h614v-88'], + 0x2245: [568,60,750,68,683,'629 568h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM682 144h-614v88h614v-88zM682 -60h-614v88h614v-88'], + 0x2246: [568,150,750,68,683,'629 568h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM682 -60h-391l-46 -90h-80l46 90h-143v88h188l58 116h-246v88h290l39 79h80l-39 -79h244v-88h-289 l-58 -116h347v-88'], + 0x2248: [508,-26,750,68,683,'629 508h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM629 268h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54 c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136'], + 0x224A: [568,75,750,68,683,'629 568h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM629 328h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54 c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM682 -75h-614v88h614v-88'], + 0x224D: [518,13,750,68,683,'683 517v-54c-46 -92 -165 -158 -307 -158c-147 0 -259 67 -308 158v55c86 -79 205 -125 308 -125c102 0 213 44 307 124zM683 42v-55c-96 90 -205 128 -307 128c-103 0 -224 -34 -308 -128v55c49 90 160 165 308 165c142 0 261 -73 307 -165'], + 0x224E: [484,-22,750,68,683,'683 311h-223c-5 47 -33 85 -83 85s-81 -38 -86 -85h-223v88h169c26 57 76 85 138 85c55 0 121 -29 139 -85h169v-88zM683 107h-169c-18 -56 -84 -85 -139 -85c-62 0 -112 28 -138 85h-169v88h223c5 -47 36 -85 86 -85s78 38 83 85h223v-88'], + 0x224F: [484,-107,750,68,683,'683 311h-223c-5 47 -33 85 -83 85s-81 -38 -86 -85h-223v88h169c26 57 76 85 138 85c55 0 121 -29 139 -85h169v-88zM683 107h-615v88h615v-88'], + 0x2250: [667,-107,750,68,682,'458 583c0 -46 -37 -83 -83 -83s-84 37 -84 83s38 84 84 84s83 -38 83 -84zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x2251: [667,161,750,68,682,'458 583c0 -46 -37 -83 -83 -83s-84 37 -84 83s38 84 84 84s83 -38 83 -84zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88zM458 -77c0 -46 -37 -84 -83 -84s-84 38 -84 84s38 83 84 83s83 -37 83 -83'], + 0x2252: [667,161,750,68,682,'235 583c0 -46 -37 -83 -83 -83s-84 37 -84 83s38 84 84 84s83 -38 83 -84zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88zM682 -77c0 -46 -37 -84 -83 -84s-84 38 -84 84s38 83 84 83s83 -37 83 -83'], + 0x2253: [667,161,750,68,682,'682 583c0 -46 -38 -83 -84 -83s-83 37 -83 83s37 84 83 84s84 -38 84 -84zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88zM235 -77c0 -46 -38 -84 -84 -84s-83 38 -83 84s37 83 83 83s84 -37 84 -83'], + 0x2256: [471,-63,750,68,682,'682 63h-614v88h212c-34 28 -55 69 -55 116s21 88 55 116h-212v88h614v-88h-212c34 -28 55 -69 55 -116s-21 -88 -55 -116h212v-88zM459 267c0 46 -38 84 -84 84s-84 -38 -84 -84s38 -84 84 -84s84 38 84 84'], + 0x2257: [809,-107,750,68,682,'525 659c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150s150 -67 150 -150zM459 659c0 46 -38 84 -84 84s-84 -38 -84 -84s38 -84 84 -84s84 38 84 84zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x225C: [844,-107,750,68,682,'594 475h-438l219 369zM479 541l-104 176l-104 -176h208zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x2260: [662,156,750,68,682,'682 107h-336l-115 -263h-69l115 263h-209v88h247l51 116h-298v88h336l115 263h69l-115 -263h209v-88h-247l-51 -116h298v-88'], + 0x2261: [507,-27,750,68,682,'682 419h-614v88h614v-88zM682 223h-614v88h614v-88zM682 27h-614v88h614v-88'], + 0x2264: [627,121,750,80,670,'670 68l-590 258v40l590 261v-89l-436 -192l436 -190v-88zM670 -120l-590 -1v88h590v-87'], + 0x2265: [627,120,750,80,670,'670 327l-590 -258v88l436 190l-436 192v88l590 -260v-40zM670 -120h-590v88h590v-88'], + 0x2266: [729,222,750,80,670,'670 171l-590 258v40l590 260v-88l-436 -192l436 -190v-88zM670 -18h-590v88h590v-88zM670 -222h-590v88h590v-88'], + 0x2267: [729,222,750,80,670,'670 429l-590 -258v88l436 190l-436 192v88l590 -260v-40zM670 -18h-590v88h590v-88zM670 -222h-590v88h590v-88'], + 0x2268: [729,294,750,80,670,'670 171l-590 258v40l590 260v-88l-436 -192l436 -190v-88zM670 -222h-334l-39 -72h-77l39 72h-179v88h226l62 116h-288v88h335l38 72h77l-38 -72h178v-88h-225l-62 -116h287v-88'], + 0x2269: [729,294,750,80,670,'670 429l-590 -258v88l436 190l-436 192v88l590 -260v-40zM670 -222h-334l-39 -72h-77l39 72h-179v88h226l62 116h-288v88h335l38 72h77l-38 -72h178v-88h-225l-62 -116h287v-88'], + 0x226A: [534,24,1000,38,961,'961 -24l-590 258v40l590 260v-88l-436 -192l436 -190v-88zM628 -24l-590 258v40l590 260v-88l-436 -192l436 -190v-88'], + 0x226B: [534,24,1000,38,961,'961 234l-590 -258v88l436 190l-436 192v88l590 -260v-40zM628 234l-590 -258v88l436 190l-436 192v88l590 -260v-40'], + 0x226C: [732,193,417,46,371,'306 732v-27c-29 -24 -51 -47 -70 -71c87 -94 135 -219 135 -362c0 -144 -48 -270 -136 -365c19 -25 42 -48 71 -72v-28c-36 21 -69 45 -98 72c-29 -27 -61 -51 -97 -72v27c29 24 52 47 70 72c-89 95 -135 220 -135 361c0 144 48 270 136 366c-19 24 -42 48 -71 71v28 c36 -20 69 -44 98 -71c29 26 61 50 97 71zM258 273c0 141 -6 238 -50 319c-44 -81 -49 -178 -49 -326c0 -143 4 -238 49 -319c44 81 50 178 50 326'], + 0x226E: [625,115,750,80,670,'670 -24l-303 133l-67 -224h-73l76 252l-223 97v40l305 134l65 217h73l-54 -180l201 89v-88l-231 -101l-48 -159l279 -122v-88zM354 307l-120 -53l92 -40'], + 0x226F: [625,115,750,80,670,'670 234l-305 -133l-65 -216h-73l54 179l-201 -88v88l231 101l48 159l-279 122v88l302 -133l68 224h73l-76 -253l223 -98v-40zM516 254l-92 41l-29 -94'], + 0x2270: [717,235,750,80,670,'670 -120h-357l-35 -115h-73l35 115h-160v88h186l74 245l-260 114v40l353 156l59 194h73l-47 -157l152 67v-88l-183 -81l-59 -196l242 -105v-88l-265 116l-66 -217h331v-88zM403 421l-169 -74l129 -56'], + 0x2271: [717,235,750,80,670,'670 -120h-357l-35 -115h-73l35 115h-160v88h186l64 210l-250 -109v88l280 122l36 121l-316 139v88l340 -150l72 240h73l-81 -268l186 -82v-40l-256 -112l-75 -247h331v-88zM516 347l-55 24l-17 -55'], + 0x2272: [690,182,750,67,682,'667 132l-590 260v40l590 258v-88l-436 -190l436 -192v-88zM628 60h54c-6 -119 -72 -224 -179 -224c-105 0 -204 118 -268 118c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224c104 0 204 -118 273 -118c60 0 94 55 114 136'], + 0x2273: [690,182,750,67,682,'667 392l-590 -260v88l436 192l-436 190v88l590 -258v-40zM628 60h54c-6 -119 -72 -224 -179 -224c-105 0 -204 118 -268 118c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224c104 0 204 -118 273 -118c60 0 94 55 114 136'], + 0x2276: [734,226,750,80,670,'670 176l-590 258v40l590 260v-88l-436 -192l436 -190v-88zM670 32l-590 -258v88l436 190l-436 192v88l590 -260v-40'], + 0x2277: [734,226,750,80,670,'670 434l-590 -258v88l436 190l-436 192v88l590 -260v-40zM670 -226l-590 258v40l590 260v-88l-436 -192l436 -190v-88'], + 0x227A: [531,23,750,80,670,'670 98v-121c-131 136 -321 207 -506 225l-84 8v88l84 8c185 18 375 89 506 225v-121c-77 -71 -199 -126 -299 -156c100 -30 222 -85 299 -156'], + 0x227B: [531,23,750,80,670,'670 210l-84 -8c-185 -18 -375 -89 -506 -225v121c77 71 199 126 299 156c-100 30 -222 85 -299 156v121c131 -136 321 -207 506 -225l84 -8v-88'], + 0x227C: [645,138,750,80,670,'670 212v-121c-131 136 -322 207 -506 225l-84 8v88l84 8c184 18 375 89 506 225v-121c-77 -71 -199 -126 -299 -156c100 -30 222 -85 299 -156zM670 -17v-121c-132 136 -320 207 -506 225l-84 8v88c111 -5 219 -19 325 -55c90 -31 195 -81 265 -145'], + 0x227D: [645,138,750,80,670,'670 324l-84 -8c-184 -18 -375 -89 -506 -225v121c77 71 199 126 299 156c-100 30 -222 85 -299 156v121c131 -136 322 -207 506 -225l84 -8v-88zM670 95l-84 -8c-186 -18 -374 -89 -506 -225v121c70 64 175 114 265 145c106 36 214 50 325 55v-88'], + 0x227E: [676,169,750,67,682,'670 243v-121c-131 136 -321 207 -506 225l-84 8v88l84 8c185 18 375 89 506 225v-121c-77 -71 -199 -126 -299 -156c100 -30 222 -85 299 -156zM628 73h54c-6 -119 -72 -224 -179 -224c-105 0 -204 118 -268 118c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224 c104 0 204 -118 273 -118c60 0 94 55 114 136'], + 0x227F: [676,169,750,67,682,'670 355l-84 -8c-185 -18 -375 -89 -506 -225v121c77 71 199 126 299 156c-100 30 -222 85 -299 156v121c131 -136 321 -207 506 -225l84 -8v-88zM628 73h54c-6 -119 -72 -224 -179 -224c-105 0 -204 118 -268 118c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224 c104 0 204 -118 273 -118c60 0 94 55 114 136'], + 0x2280: [625,115,750,80,670,'670 98v-121c-77 80 -175 138 -279 175l-81 -267h-73l87 288c-53 14 -107 24 -160 29l-84 8v88l84 8c72 7 144 22 214 45l82 274h73l-72 -241c77 37 149 85 209 147v-121c-63 -58 -157 -105 -243 -137l-10 -34c89 -32 187 -81 253 -141'], + 0x2281: [625,115,750,80,670,'670 210l-84 -8c-64 -6 -129 -19 -192 -38l-84 -279h-73l75 249c-87 -37 -167 -89 -232 -157v121c69 63 172 113 265 145l6 20c-94 32 -201 83 -271 147v121c82 -85 186 -144 297 -181l83 275h73l-89 -295c47 -11 95 -19 142 -24l84 -8v-88'], + 0x2282: [547,13,750,82,668,'668 -13h-298c-175 0 -288 126 -288 280s113 280 291 280h295v-88h-311c-100 0 -187 -85 -187 -192c0 -108 88 -192 188 -192h310v-88'], + 0x2283: [547,13,750,82,668,'82 547h295c178 0 291 -126 291 -280s-113 -280 -288 -280h-298v88h310c100 0 188 84 188 192c0 107 -87 192 -187 192h-311v88'], + 0x2286: [647,101,750,82,668,'668 87h-298c-175 0 -288 126 -288 280s113 280 291 280h295v-88h-311c-100 0 -187 -85 -187 -192c0 -108 88 -192 188 -192h310v-88zM668 -101h-586v88h586v-88'], + 0x2287: [647,101,750,82,668,'82 647h295c178 0 291 -126 291 -280s-113 -280 -288 -280h-298v88h310c100 0 188 84 188 192c0 107 -87 192 -187 192h-311v88zM668 -101h-586v88h586v-88'], + 0x2288: [747,201,750,82,668,'668 -101h-413l-41 -100h-69l41 100h-104v88h141l47 115c-117 38 -188 143 -188 265c0 154 113 280 291 280h122l41 100h69l-41 -100h104v-88h-141l-158 -384h299v-88h-298c-12 0 -25 1 -36 2l-42 -102h376v-88zM458 559h-101c-100 0 -187 -85 -187 -192 c0 -88 58 -160 134 -184'], + 0x2289: [747,201,750,82,668,'668 -101h-413l-41 -100h-69l41 100h-104v88h141l41 100h-182v88h218l154 373c-19 7 -40 11 -61 11h-311v88h295c40 0 77 -6 110 -18l49 118h69l-60 -146c78 -50 123 -137 123 -234c0 -154 -113 -280 -288 -280h-47l-41 -100h376v-88zM369 175h23c100 0 188 84 188 192 c0 61 -28 114 -70 149'], + 0x228A: [734,200,750,82,668,'668 174h-298c-175 0 -288 126 -288 280s113 280 291 280h295v-88h-311c-100 0 -187 -85 -187 -192c0 -108 88 -192 188 -192h310v-88zM668 -94h-270l-65 -106h-78l65 106h-228v88h281l64 105h78l-64 -105h217v-88'], + 0x228B: [734,200,750,82,668,'82 734h295c178 0 291 -126 291 -280s-113 -280 -288 -280h-298v88h310c100 0 188 84 188 192c0 107 -87 192 -187 192h-311v88zM658 -94h-270l-65 -106h-78l65 106h-228v88h281l64 105h78l-64 -105h217v-88'], + 0x228E: [541,33,650,66,584,'446 275h-91v-91h-60v91h-91v60h91v91h60v-91h91v-60zM496 541h88v-315c0 -143 -116 -259 -259 -259s-259 116 -259 259v315h88v-315c0 -94 77 -171 171 -171s171 77 171 171v315'], + 0x228F: [532,27,750,87,663,'663 -27h-576v559h576v-88h-488v-383h488v-88'], + 0x2290: [532,27,750,87,663,'663 -27h-576v88h488v383h-488v88h576v-559'], + 0x2291: [644,93,750,87,663,'663 85h-576v559h576v-88h-488v-383h488v-88zM663 -93h-576v88h576v-88'], + 0x2292: [644,93,750,87,663,'663 85h-576v88h488v383h-488v88h576v-559zM663 -93h-576v88h576v-88'], + 0x2293: [541,33,650,66,584,'584 -33h-88v486h-342v-486h-88v574h518v-574'], + 0x2294: [541,33,650,66,584,'584 -33h-518v574h88v-486h342v486h88v-574'], + 0x2295: [634,130,864,50,814,'814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM476 296h247c-19 127 -120 228 -247 247v-247zM723 208h-247v-247c127 19 228 120 247 247zM388 296v247c-127 -19 -228 -120 -247 -247h247zM388 -39v247h-247 c19 -127 120 -228 247 -247'], + 0x2296: [634,130,864,50,814,'814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM141 296h582c-21 142 -144 250 -291 250s-270 -108 -291 -250zM723 208h-582c21 -142 144 -250 291 -250s270 108 291 250'], + 0x2297: [634,130,864,50,814,'814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM432 314l174 175c-50 37 -112 57 -174 57s-124 -20 -174 -57zM494 252l175 -174c37 50 57 112 57 174s-20 124 -57 174zM370 252l-175 174c-37 -50 -57 -112 -57 -174 s20 -124 57 -174zM606 15l-174 175l-174 -175c50 -37 112 -57 174 -57s124 20 174 57'], + 0x2298: [634,130,864,50,814,'814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM195 78l411 411c-48 36 -109 57 -174 57c-162 0 -294 -132 -294 -294c0 -65 21 -126 57 -174zM669 426l-411 -411c48 -36 109 -57 174 -57c162 0 294 132 294 294 c0 65 -21 126 -57 174'], + 0x2299: [594,90,784,50,734,'466 253c0 -39 -29 -75 -74 -75c-44 0 -75 30 -75 75s38 74 75 74c38 0 74 -30 74 -74zM734 252c0 -189 -153 -342 -342 -342s-342 153 -342 342s153 342 342 342s342 -153 342 -342zM646 252c0 140 -114 254 -254 254s-254 -114 -254 -254s114 -254 254 -254 s254 114 254 254'], + 0x229A: [634,130,842,39,803,'576 252c0 -87 -70 -157 -157 -157c-88 0 -157 70 -157 159c0 88 70 155 159 155c85 0 155 -71 155 -157zM488 252c0 39 -31 69 -67 69c-42 0 -71 -30 -71 -67c0 -42 30 -71 69 -71s69 30 69 69zM803 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382 s382 -171 382 -382zM715 252c0 162 -132 294 -294 294s-294 -132 -294 -294s132 -294 294 -294s294 132 294 294'], + 0x229B: [634,130,864,50,814,'634 165c0 -29 -15 -54 -54 -54c-30 0 -47 24 -63 44c-15 19 -33 42 -63 62c3 -37 15 -70 26 -105c3 -11 5 -22 5 -32c0 -28 -26 -56 -53 -56s-53 28 -53 56c0 21 11 47 17 67s12 43 15 70c-30 -22 -51 -50 -76 -76c-16 -17 -34 -30 -58 -30c-32 0 -52 21 -52 46 c0 58 55 63 97 74c20 5 43 11 64 21c-33 15 -68 19 -102 29c-26 7 -59 22 -59 55c0 28 14 57 51 57c36 0 60 -35 82 -58c15 -16 31 -33 53 -47c-3 39 -16 73 -26 109c-3 11 -6 22 -6 32c0 30 27 52 53 52c25 0 53 -22 53 -52c0 -21 -10 -47 -16 -67c-7 -21 -13 -45 -15 -73 c38 24 50 43 77 75c13 17 29 29 52 29c34 0 51 -24 51 -57c0 -31 -32 -48 -57 -54c-41 -8 -64 -10 -104 -30c35 -17 67 -22 103 -31c27 -7 58 -23 58 -56zM814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM726 252 c0 162 -132 294 -294 294s-294 -132 -294 -294s132 -294 294 -294s294 132 294 294'], + 0x229D: [634,130,864,50,814,'656 208h-448v88h448v-88zM814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM726 252c0 162 -132 294 -294 294s-294 -132 -294 -294s132 -294 294 -294s294 132 294 294'], + 0x229E: [661,158,910,45,865,'865 -158h-820v819h820v-819zM777 286v287h-287v-287h287zM777 -70v286h-287v-286h287zM420 286v287h-287v-287h287zM420 -70v286h-287v-286h287'], + 0x229F: [661,158,910,45,865,'865 -158h-820v819h820v-819zM777 286v287h-644v-287h644zM777 -70v286h-644v-286h644'], + 0x22A0: [661,158,910,45,865,'865 -158h-820v819h820v-819zM730 573h-546l273 -273zM777 -20v540l-270 -270zM727 -70l-270 270l-270 -270h540zM407 250l-274 274v-548'], + 0x22A1: [661,158,910,45,865,'540 251c0 -47 -39 -85 -85 -85c-47 0 -85 38 -85 85s38 85 85 85c46 0 85 -38 85 -85zM865 -158h-820v819h820v-819zM777 -70v286v357h-644v-357v-286h644'], + 0x22A2: [676,0,750,91,659,'659 286h-464v-286h-104v676h104v-286h464v-104'], + 0x22A3: [676,0,750,91,659,'659 0h-104v286h-464v104h464v286h104v-676'], + 0x22A4: [676,0,750,91,659,'659 572h-232v-572h-104v572h-232v104h568v-104'], + 0x22A5: [676,0,750,91,659,'659 0h-568v104h232v572h104v-572h232v-104'], + 0x22A8: [676,0,750,91,659,'659 188h-464v-188h-104v676h104v-188h464v-104h-464v-92h464v-104'], + 0x22A9: [676,0,972,91,882,'882 286h-491v-286h-104v676h104v-286h491v-104zM195 0h-104v676h104v-676'], + 0x22AA: [676,0,944,91,856,'856 286h-269v-286h-104v676h104v-286h269v-104zM391 0h-104v676h104v-676zM195 0h-104v676h104v-676'], + 0x22AC: [676,0,913,21,822,'822 286h-405l-59 -57v-229h-104v129l-134 -129h-99l233 224v452h104v-286h68l297 286h99l-297 -286h297v-104'], + 0x22AD: [676,0,912,21,822,'822 676l-195 -188h194v-104h-302l-96 -92h398v-104h-464v-188h-104v128l-133 -128h-99l232 223v453h104v-188h171l195 188h99zM420 384h-63v-61'], + 0x22AE: [676,0,1096,21,1024,'1024 676l-375 -286h357v-104h-491v-286h-104v209l-92 -70v-139h-104v59l-78 -59h-116l194 148v528h104v-449l92 70v379h104v-286h18l375 286h116'], + 0x22AF: [676,0,1104,21,1016,'1016 676l-246 -188h245v-104h-381l-83 -64v-28h464v-104h-464v-188h-104v240l-92 -70v-170h-104v90l-118 -90h-112l230 176v500h104v-421l92 70v351h104v-188h108l245 188h112'], + 0x22B2: [534,24,750,81,669,'669 -24l-588 278l588 280v-558zM581 115v280l-295 -141'], + 0x22B3: [534,24,750,81,669,'669 254l-588 -278v558zM464 254l-295 141v-280'], + 0x22B4: [621,113,750,81,669,'669 63l-588 278l588 280v-558zM581 202v280l-295 -141zM669 -113h-588v88h588v-88'], + 0x22B5: [621,113,750,81,669,'669 341l-588 -278v558zM464 341l-295 141v-280zM669 -113h-588v88h588v-88'], + 0x22B8: [436,-96,884,50,834,'50 319h452c22 68 87 117 162 117c94 0 170 -76 170 -170s-76 -170 -170 -170c-76 0 -140 50 -162 119h-452v104zM764 266c0 55 -45 100 -100 100s-100 -45 -100 -100s45 -100 100 -100s100 45 100 100'], + 0x22BA: [461,216,498,74,424,'424 391h-123v-607h-104v607h-123v70h350v-70'], + 0x22BB: [536,189,640,52,588,'588 536l-234 -564h-68l-234 564h94l174 -413l174 413h94zM573 -189h-506v88h506v-88'], + 0x22BC: [697,28,640,52,588,'573 609h-507v88h507v-88zM588 -28h-94l-174 413l-174 -413h-94l234 564h68'], + 0x22C4: [515,-17,584,43,541,'541 266l-249 -249l-249 249l249 249zM311 159l88 88c8 8 9 12 9 20c0 4 0 7 -9 18l-88 88c-9 9 -14 9 -20 9c-4 0 -7 0 -18 -9l-88 -88c-9 -9 -9 -15 -9 -20c0 -4 0 -7 9 -18l88 -88c10 -8 14 -9 20 -9c4 0 7 0 18 9'], + 0x22C8: [604,72,870,67,803,'803 -72l-368 264l-368 -264v676l368 -264l368 264v-676zM699 126v280l-190 -140zM361 266l-190 140v-280'], + 0x22C9: [604,72,870,57,817,'817 52l-57 -80l-320 232l-383 -276v676l383 -277l320 227l57 -80l-292 -208zM355 266l-194 140v-280'], + 0x22CA: [604,72,870,53,813,'813 -72l-383 276l-320 -232l-57 80l292 214l-292 208l57 80l320 -227l383 277v-676zM709 126v280l-194 -140'], + 0x22CB: [604,72,870,97,773,'773 2l-74 -74l-264 264l-264 -264l-74 74l264 264l-264 264l74 74'], + 0x22CC: [604,72,870,97,773,'773 2l-74 -74l-264 264l-264 -264l-74 74l602 602l74 -74l-264 -264'], + 0x22CD: [463,-45,750,68,683,'683 221h-54c-14 57 -43 136 -114 136c-68 0 -173 -118 -273 -118c-113 0 -168 128 -174 224h54c14 -57 43 -136 114 -136c62 0 171 118 268 118c118 0 174 -122 179 -224zM682 45h-614v88h614v-88'], + 0x22CE: [536,28,640,41,599,'480 536h119c-162 -159 -219 -342 -234 -564h-88c-17 223 -69 407 -236 564h119c80 -82 142 -188 159 -303h4c19 124 82 208 157 303'], + 0x22CF: [536,28,640,41,599,'599 -28h-119c-75 95 -138 179 -157 303h-4c-17 -115 -79 -221 -159 -303h-119c167 157 219 341 236 564h88c15 -222 72 -405 234 -564'], + 0x22D0: [600,67,750,63,687,'687 92h-280c-96 0 -175 79 -175 175s79 174 175 174h280v-88h-281c-48 0 -86 -39 -86 -87s38 -86 86 -86h281v-88zM687 -67h-290c-184 0 -334 150 -334 334s150 333 334 333h290v-88h-291c-136 0 -245 -111 -245 -246c0 -136 109 -245 245 -245h291v-88'], + 0x22D1: [600,67,750,63,687,'63 600h290c184 0 334 -149 334 -333s-150 -334 -334 -334h-290v88h291c135 0 245 109 245 245c0 135 -109 246 -245 246h-291v88zM63 441h280c96 0 175 -78 175 -174s-79 -175 -175 -175h-280v88h281c48 0 86 38 86 86s-38 87 -86 87h-281v88'], + 0x22D2: [541,33,750,65,685,'685 -33h-88v264c0 123 -99 222 -222 222s-222 -99 -222 -222v-264h-88v264c0 171 139 310 310 310s310 -139 310 -310v-264zM526 -33h-88v254c0 35 -28 63 -63 63s-63 -28 -63 -63v-254h-88v255c0 84 67 150 151 150s151 -66 151 -150v-255'], + 0x22D3: [541,33,750,65,685,'526 541v-255c0 -84 -68 -150 -151 -150s-151 66 -151 150v255h88v-254c0 -35 28 -63 63 -63s63 28 63 63v254h88zM685 541v-264c0 -171 -139 -310 -310 -310s-310 139 -310 310v264h88v-264c0 -123 99 -222 222 -222s222 99 222 222v264h88'], + 0x22D4: [643,33,650,66,584,'584 -33h-88v315c0 79 -54 146 -127 165v-480h-88v480c-73 -19 -127 -86 -127 -165v-315h-88v315c0 128 93 234 215 255v106h88v-106c122 -21 215 -127 215 -255v-315'], + 0x22D6: [534,24,750,80,670,'625 254c0 -42 -34 -76 -75 -76c-42 0 -77 34 -77 76s35 76 77 76c41 0 75 -34 75 -76zM670 -24l-590 258v40l590 260v-88l-436 -192l436 -190v-88'], + 0x22D7: [534,24,750,80,670,'670 234l-590 -258v88l436 190l-436 192v88l590 -260v-40zM277 254c0 -42 -35 -76 -77 -76c-41 0 -75 34 -75 76s34 76 75 76c42 0 77 -34 77 -76'], + 0x22D8: [534,24,1336,40,1296,'1296 -24l-590 258v40l590 260v-88l-436 -192l436 -190v-88zM963 -24l-590 258v40l590 260v-88l-436 -192l436 -190v-88zM630 -24l-590 258v40l590 260v-88l-436 -192l436 -190v-88'], + 0x22D9: [534,24,1336,40,1296,'1296 234l-590 -258v88l436 190l-436 192v88l590 -260v-40zM963 234l-590 -258v88l436 190l-436 192v88l590 -260v-40zM630 234l-590 -258v88l436 190l-436 192v88l590 -260v-40'], + 0x22DA: [916,408,750,80,670,'670 358l-590 258v40l590 260v-88l-436 -192l436 -190v-88zM670 210h-590v88h590v-88zM670 -150l-590 -258v88l436 190l-436 192v88l590 -260v-40'], + 0x22DB: [916,408,750,80,670,'670 616l-590 -258v88l436 190l-436 192v88l590 -260v-40zM670 210h-590v88h590v-88zM670 -408l-590 258v40l590 260v-88l-436 -192l436 -190v-88'], + 0x22DE: [645,138,750,80,670,'670 645v-121c-70 -64 -175 -114 -265 -145c-106 -36 -214 -50 -325 -55v88l84 8c186 18 374 89 506 225zM670 -17v-121c-131 136 -322 207 -506 225l-84 8v88l84 8c184 18 375 89 506 225v-121c-77 -71 -199 -126 -299 -156c100 -30 222 -85 299 -156'], + 0x22DF: [645,138,750,80,670,'670 412v-88c-111 5 -219 19 -325 55c-90 31 -195 81 -265 145v121c132 -136 320 -207 506 -225zM670 95l-84 -8c-184 -18 -375 -89 -506 -225v121c77 71 199 126 299 156c-100 30 -222 85 -299 156v121c131 -136 322 -207 506 -225l84 -8v-88'], + 0x22E0: [735,199,750,80,670,'670 -17v-121c-89 91 -203 154 -324 190l-76 -251h-73l81 268c-38 8 -76 14 -114 18l-84 8v88c76 -3 151 -11 224 -27l38 126c-58 17 -119 28 -178 34l-84 8v88l84 8c79 8 160 25 236 53l79 262h73l-68 -225c69 35 133 79 186 135v-121c-58 -53 -141 -97 -221 -129 l-14 -49c84 -31 174 -78 235 -134v-121c-73 75 -164 131 -262 168l-36 -120c11 -4 22 -7 33 -11c90 -31 195 -81 265 -145'], + 0x22E1: [735,199,750,80,670,'670 95l-84 -8c-84 -8 -168 -27 -247 -57l-69 -229h-73l57 190c-64 -34 -123 -77 -174 -129v121c56 51 134 94 209 124l46 150c-96 -38 -184 -92 -255 -166v121c74 68 189 122 287 152l2 7c-98 31 -215 84 -289 153v121c86 -89 197 -150 315 -187l84 277h73l-89 -295 c41 -10 82 -16 123 -20l84 -8v-88l-84 -8c-57 -5 -114 -16 -170 -32l-45 -147c98 29 197 41 299 46v-88'], + 0x22E6: [690,200,750,67,682,'667 132l-590 260v40l590 258v-88l-436 -190l436 -192v-88zM628 60h54c-6 -119 -72 -224 -179 -224c-42 0 -83 19 -122 42l-39 -78h-77l58 115c-33 21 -63 39 -88 39c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224c43 0 85 -20 125 -44l40 80h77l-59 -116 c33 -21 64 -38 90 -38c60 0 94 55 114 136'], + 0x22E7: [690,200,750,67,682,'667 392l-590 -260v88l436 192l-436 190v88l590 -258v-40zM628 60h54c-6 -119 -72 -224 -179 -224c-42 0 -83 19 -122 42l-39 -78h-77l58 115c-33 21 -63 39 -88 39c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224c43 0 85 -20 125 -44l40 80h77l-59 -116 c33 -21 64 -38 90 -38c60 0 94 55 114 136'], + 0x22E8: [676,187,750,67,682,'670 243v-121c-131 136 -321 207 -506 225l-84 8v88l84 8c185 18 375 89 506 225v-121c-77 -71 -199 -126 -299 -156c100 -30 222 -85 299 -156zM628 73h54c-6 -119 -72 -224 -179 -224c-42 0 -83 19 -122 42l-39 -78h-77l58 115c-33 21 -63 39 -88 39 c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224c43 0 85 -20 125 -44l40 80h77l-59 -116c33 -21 64 -38 90 -38c60 0 94 55 114 136'], + 0x22E9: [676,187,750,67,682,'670 355l-84 -8c-185 -18 -375 -89 -506 -225v121c77 71 199 126 299 156c-100 30 -222 85 -299 156v121c131 -136 321 -207 506 -225l84 -8v-88zM628 73h54c-6 -119 -72 -224 -179 -224c-42 0 -83 19 -122 42l-39 -78h-77l58 115c-33 21 -63 39 -88 39 c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224c43 0 85 -20 125 -44l40 80h77l-59 -116c33 -21 64 -38 90 -38c60 0 94 55 114 136'], + 0x22EA: [625,115,750,81,669,'669 -24l-299 141l-70 -232h-73l79 263l-225 106l300 143l69 228h73l-56 -187l202 96v-558zM581 115v280l-149 -71l-36 -122zM347 283l-61 -29l46 -22'], + 0x22EB: [625,115,750,81,669,'669 254l-301 -142l-68 -227h-73l56 187l-202 -96v558l299 -142l70 233h73l-79 -264zM464 254l-46 22l-16 -51zM354 307l-185 88v-280l148 70'], + 0x22EC: [711,228,750,81,669,'669 -113h-364l-35 -115h-73l35 115h-151v88h177l75 247l-252 119l336 160l63 210h73l-51 -170l167 80v-558l-272 129l-66 -217h338v-88zM581 202v280l-113 -54l-46 -151zM382 387l-96 -46l72 -34'], + 0x22ED: [711,228,750,81,669,'669 -113h-364l-35 -115h-73l35 115h-151v88h177l61 200l-238 -112v558l325 -155l74 245h73l-83 -275l199 -95l-265 -125l-73 -241h338v-88zM464 341l-20 9l-6 -21zM381 381l-212 101v-280l184 87'], + 0x22EE: [678,174,584,205,375,'375 593c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85zM375 252c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85zM375 -89c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85'], + 0x22EF: [351,-181,977,62,914,'914 266c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85zM573 266c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85zM232 266c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85'], + 0x22F1: [579,75,977,162,815,'332 494c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85zM573 252c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85zM815 10c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85'], + 0x2308: [731,193,469,164,459,'459 676h-131c-54 0 -60 -9 -60 -82v-787h-104v924h295v-55'], + 0x2309: [731,193,469,10,305,'305 -193h-104v787c0 74 -6 82 -61 82h-130v55h295v-924'], + 0x230A: [732,193,469,164,459,'459 -193h-295v925h104v-788c0 -74 6 -82 61 -82h130v-55'], + 0x230B: [732,193,469,10,305,'305 -193h-295v55h131c54 0 60 9 60 82v788h104v-925'], + 0x2322: [378,-129,1026,37,990,'990 159l-22 -30c-139 101 -289 135 -451 135c-190 0 -319 -33 -457 -135l-23 31c131 133 305 218 484 218c170 0 316 -84 469 -219'], + 0x2323: [378,-129,1026,37,990,'967 378l23 -31c-131 -133 -305 -218 -484 -218c-170 0 -316 84 -469 219l22 30c139 -101 289 -135 451 -135c190 0 319 33 457 135'], + 0x24C8: [690,19,695,0,695,'478 395h-21c-7 59 -59 96 -117 96c-40 0 -65 -23 -65 -49c0 -31 60 -49 99 -66c55 -24 122 -58 122 -130c0 -70 -66 -112 -154 -112c-53 0 -85 18 -103 18c-11 0 -16 -4 -20 -18h-19v144h21c8 -75 52 -113 122 -113c46 0 76 21 76 53c0 33 -68 58 -107 75 c-67 29 -107 57 -107 116c0 71 54 113 135 113c51 0 78 -17 98 -17c12 0 16 3 21 17h19v-127zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x25B3: [811,127,1145,35,1110,'1110 -127h-1075l538 938zM958 -39l-385 673l-386 -673h771'], + 0x25BD: [811,127,1145,35,1110,'1110 811l-537 -938l-538 938h1075zM958 723h-771l386 -673'], + 0x25CA: [795,289,790,45,745,'745 253l-351 -542l-349 542l350 542zM641 253l-246 380l-245 -380l244 -380'], + 0x266D: [740,5,437,86,389,'146 740v-283c22 17 55 29 83 29c91 0 160 -45 160 -143c0 -154 -186 -279 -303 -348v745h60zM146 362v-271c77 66 123 150 123 253c0 35 -8 95 -55 95c-38 0 -68 -41 -68 -77'], + 0x266E: [818,210,490,97,393,'393 -176l-60 -34v282l-236 -96v808l60 34v-282l236 96v-808zM333 194v293l-176 -73v-293'], + 0x266F: [818,210,490,52,438,'438 97l-60 -19v-192l-60 -24v198l-146 -47v-199l-60 -24v205l-60 -19v117l60 19v304l-60 -19v117l60 19v178l60 24v-183l146 45v197l60 24v-202l60 19v-117l-60 -19v-304l60 19v-117zM318 177v303l-146 -45v-305'], + 0x27E8: [732,193,445,69,399,'399 -193h-100l-230 455v15l226 455h100l-230 -462'], + 0x27E9: [732,193,445,46,376,'376 262l-230 -455h-100l234 463l-230 462h100l226 -455v-15'], + 0x2A3F: [676,0,734,27,707,'707 0h-679v24c74 4 77 24 77 99v439c0 75 -6 84 -78 90v24h282v-24c-70 -6 -75 -18 -75 -90v-512h266v512c0 75 -5 84 -77 90v24h284v-24c-71 -6 -78 -18 -78 -90v-450c0 -67 7 -84 78 -88v-24'], + 0x2A5E: [887,28,640,52,588,'573 799h-506v88h506v-88zM573 609h-506v88h506v-88zM588 -28h-94l-174 413l-174 -413h-94l234 564h68'], + 0x2A7D: [648,140,750,80,670,'670 90l-590 260v40l590 258v-88l-436 -190l436 -192v-88zM670 -140l-590 260v88l590 -260v-88'], + 0x2A7E: [648,140,750,80,670,'670 350l-590 -260v88l436 192l-436 190v88l590 -258v-40zM670 120l-590 -260v88l590 260v-88'], + 0x2A87: [646,213,750,80,670,'670 88l-590 258v40l590 260v-88l-436 -192l436 -190v-88zM670 -101h-288l-60 -112h-77l60 112h-225v88h272l60 113h77l-60 -113h241v-88'], + 0x2A88: [646,213,750,80,670,'670 346l-590 -258v88l436 190l-436 192v88l590 -260v-40zM670 -101h-288l-60 -112h-77l60 112h-225v88h272l60 113h77l-60 -113h241v-88'], + 0x2A89: [792,305,750,67,682,'670 234l-590 259v40l590 259v-88l-436 -191l436 -191v-88zM628 -45h54c-7 -104 -66 -224 -174 -224c-63 0 -124 41 -178 77l-57 -113h-77l74 146c-13 5 -24 8 -35 8c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c22 0 44 -5 66 -13l52 102c-49 31 -93 63 -129 63 c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c57 0 112 -35 161 -67l52 103h77l-71 -139c18 -9 34 -15 49 -15c60 0 94 55 114 136h54c-7 -104 -66 -224 -174 -224c-29 0 -57 9 -84 22l-51 -101c55 -33 104 -73 141 -73c60 0 94 55 114 136'], + 0x2A8A: [792,305,750,67,682,'670 493l-590 -259v88l436 191l-436 191v88l590 -259v-40zM628 -45h54c-7 -104 -66 -224 -174 -224c-63 0 -124 41 -178 77l-57 -113h-77l74 146c-13 5 -24 8 -35 8c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c22 0 44 -5 66 -13l52 102c-49 31 -93 63 -129 63 c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c57 0 112 -35 161 -67l52 103h77l-71 -139c18 -9 34 -15 49 -15c60 0 94 55 114 136h54c-7 -104 -66 -224 -174 -224c-29 0 -57 9 -84 22l-51 -101c55 -33 104 -73 141 -73c60 0 94 55 114 136'], + 0x2A95: [648,140,750,80,670,'670 560l-590 -260v88l590 260v-88zM670 -140l-590 258v40l590 260v-88l-436 -192l436 -190v-88'], + 0x2A96: [648,140,750,80,670,'670 300l-590 260v88l590 -260v-88zM670 118l-590 -258v88l436 190l-436 192v88l590 -260v-40'], + 0x2AAF: [619,111,750,80,670,'670 186v-121c-131 136 -321 207 -506 225l-84 8v88l84 8c185 18 375 89 506 225v-121c-77 -71 -199 -126 -299 -156c100 -30 222 -85 299 -156zM670 -111h-590v88h590v-88'], + 0x2AB0: [619,111,750,80,670,'670 298l-84 -8c-185 -18 -375 -89 -506 -225v121c77 71 199 126 299 156c-100 30 -222 85 -299 156v121c131 -136 321 -207 506 -225l84 -8v-88zM670 -111h-590v88h590v-88'], + 0x2AC5: [730,222,750,80,670,'670 170h-298c-175 0 -288 126 -288 280s113 280 291 280h295v-88h-311c-100 0 -187 -85 -187 -192c0 -108 88 -192 188 -192h310v-88zM670 -18h-590v88h590v-88zM670 -222h-590v88h590v-88'], + 0x2AC6: [730,222,750,80,670,'80 730h295c178 0 291 -126 291 -280s-113 -280 -288 -280h-298v88h310c100 0 188 84 188 192c0 107 -87 192 -187 192h-311v88zM670 -18h-590v88h590v-88zM670 -222h-590v88h590v-88'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/BoldItalic/Main.js new file mode 100644 index 0000000..23c6b99 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/BoldItalic/Main.js @@ -0,0 +1,225 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Main/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Main-bold-italic'] = { + directory: 'Main/BoldItalic', + family: 'STIXMathJax_Main', + weight: 'bold', + style: 'italic', + id: 'STIXWEBMAINBI', + 0x20: [0,0,250,0,0,''], + 0x21: [684,13,389,67,370,'196 204l-29 9c30 157 47 273 52 353c3 60 15 118 79 118c50 0 72 -29 72 -73c0 -27 -6 -41 -30 -89c-57 -113 -102 -209 -144 -318zM213 58c0 -40 -33 -71 -74 -71c-42 0 -72 30 -72 71c0 42 32 75 73 75c38 0 73 -35 73 -75'], + 0x22: [685,-398,555,136,536,'396 398l15 214c3 38 41 73 80 73c25 0 45 -22 45 -49c0 -14 -2 -21 -13 -47l-85 -191h-42zM136 398l15 214c3 38 41 73 80 73c25 0 45 -22 45 -49c0 -12 -1 -20 -13 -47l-85 -191h-42'], + 0x23: [700,0,500,-32,532,'532 490l-20 -73h-96l-54 -134h86l-20 -73h-96l-85 -210h-78l85 210h-113l-85 -210h-78l85 210h-95l20 73h105l54 134h-95l20 73h104l87 210h77l-86 -210h113l87 210h77l-86 -210h87zM338 417h-113l-54 -134h113'], + 0x24: [733,100,500,-20,497,'497 598l-42 -134l-21 5c1 11 1 25 1 31c0 69 -19 105 -84 125l-59 -215c112 -97 140 -141 140 -212c0 -117 -92 -198 -254 -198l-28 -100h-52l29 107c-63 15 -98 32 -147 80l42 141l22 -6c3 -108 19 -143 93 -180l74 261c-106 81 -132 122 -132 190 c0 110 84 177 196 177c8 0 16 0 38 -2l18 65h50l-20 -72c33 -6 87 -24 136 -63zM248 436l55 199c-5 2 -9 2 -15 2c-67 0 -110 -37 -110 -95c0 -40 17 -66 70 -106zM253 274l-67 -242c76 0 137 40 137 129c0 47 -13 74 -70 113'], + 0x25: [706,29,757,80,707,'707 214c0 -70 -28 -143 -73 -190c-25 -27 -61 -42 -99 -42c-76 0 -128 56 -128 138c0 113 91 213 195 213c66 0 105 -45 105 -119zM682 220c0 46 -25 80 -59 80c-21 0 -41 -15 -62 -46c-32 -48 -56 -125 -56 -178c0 -43 17 -66 50 -66c30 0 55 16 79 51 c28 43 48 108 48 159zM645 706l-438 -735h-48l388 655c-40 -30 -73 -42 -113 -42c-21 0 -35 3 -60 13c2 -19 3 -29 3 -42c0 -71 -28 -147 -70 -189c-28 -28 -65 -44 -101 -44c-74 0 -126 57 -126 139c0 114 92 213 197 213c26 0 45 -8 71 -29c29 -23 47 -30 83 -30 c66 0 115 27 166 91h48zM351 560c0 34 -6 44 -32 54c-7 3 -10 4 -21 11s-15 9 -20 9c-42 0 -102 -127 -102 -216c0 -42 18 -66 50 -66c64 0 125 101 125 208'], + 0x26: [682,19,849,76,771,'745 101l26 -21c-61 -74 -102 -98 -168 -98c-55 0 -98 18 -142 62c-62 -47 -128 -63 -198 -63c-115 0 -187 58 -187 161c0 177 157 224 240 242c-9 46 -11 67 -11 92c0 127 79 206 189 206c84 0 134 -47 134 -114c0 -72 -59 -126 -182 -172c10 -76 45 -161 86 -227 c59 70 74 101 74 129c0 22 -13 31 -56 38v25h212v-25c-59 -4 -68 -24 -205 -203c37 -51 71 -72 110 -72c27 0 49 11 78 40zM548 582c0 42 -19 67 -52 67c-45 0 -70 -44 -70 -113c0 -25 2 -46 11 -102c86 46 111 88 111 148zM433 80c-60 85 -86 155 -109 263 c-84 -41 -115 -83 -115 -153c0 -79 52 -138 125 -138c31 0 63 6 99 28'], + 0x27: [685,-398,278,128,268,'128 398l16 215c3 47 40 72 79 72c25 0 45 -22 45 -49c0 -14 -4 -23 -15 -48l-83 -190h-42'], + 0x28: [685,179,333,28,344,'326 685l18 -20c-81 -74 -118 -119 -155 -200c-45 -99 -67 -218 -67 -346c0 -119 16 -186 71 -283l-23 -15c-101 138 -142 238 -142 386c0 122 41 231 117 321c41 48 97 95 181 157'], + 0x29: [685,179,333,-44,271,'105 670l23 15c55 -75 78 -111 102 -172c28 -70 41 -144 41 -214c0 -97 -25 -179 -68 -251c-51 -86 -129 -158 -230 -227l-17 20c92 82 122 126 161 222c39 95 60 218 60 331c0 114 -21 187 -72 276'], + 0x2A: [685,-252,500,101,492,'312 468l11 -6c33 -18 42 -23 88 -23c36 0 81 -11 81 -51c0 -29 -25 -54 -52 -54c-25 0 -39 11 -60 47c-22 36 -31 49 -65 67l-11 6v-12c0 -32 7 -54 26 -87c13 -22 17 -37 17 -52c0 -31 -20 -51 -51 -51c-30 0 -50 20 -50 52c0 14 4 29 17 51c19 33 26 55 26 87v12 l-11 -6c-34 -18 -43 -31 -65 -67c-21 -36 -35 -47 -60 -47c-27 0 -52 25 -52 54c0 40 45 51 81 51c46 0 55 5 88 23l11 6l-11 6c-33 18 -44 22 -88 23c-38 0 -81 12 -81 52c0 28 24 54 49 54c24 0 41 -12 63 -47c24 -38 35 -51 65 -68l11 -6v12c0 33 -7 56 -26 88 c-13 22 -17 36 -17 51c0 32 20 52 50 52c31 0 51 -20 51 -52c0 -15 -4 -29 -17 -51c-19 -32 -26 -55 -26 -88v-12l11 6c30 17 41 30 65 68c22 35 39 47 63 47c26 0 49 -26 49 -54c0 -40 -43 -52 -81 -52c-44 -1 -55 -5 -88 -23'], + 0x2B: [506,0,570,33,537,'537 209h-208v-209h-88v209h-208v88h208v209h88v-209h208v-88'], + 0x2C: [134,182,250,-60,144,'-47 -182l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x2D: [282,-166,333,2,271,'271 282l-23 -116h-246l24 116h245'], + 0x2E: [135,13,250,-9,139,'139 61c0 -42 -33 -74 -75 -74c-41 0 -73 32 -73 73c0 43 32 75 75 75c40 0 73 -33 73 -74'], + 0x2F: [685,18,278,-64,342,'342 685l-319 -703h-87l319 703h87'], + 0x30: [683,14,500,17,477,'477 442c0 -153 -73 -317 -166 -401c-41 -37 -81 -55 -134 -55c-104 0 -160 87 -160 220c0 154 64 306 152 407c46 53 103 70 158 70c96 0 150 -95 150 -241zM374 582c0 45 -18 72 -49 72c-28 0 -49 -25 -76 -83c-60 -133 -129 -409 -129 -490c0 -40 20 -66 50 -66 c42 0 71 40 106 144c31 95 98 318 98 423'], + 0x31: [683,0,500,5,419,'419 683l-154 -560c-7 -26 -14 -48 -14 -63c0 -28 22 -35 99 -37v-23h-345v23c76 4 103 19 121 82l124 445c2 9 6 24 6 30c0 22 -17 33 -48 33c-19 0 -36 -1 -62 -5l2 23c115 15 180 30 271 52'], + 0x32: [683,0,500,-27,446,'86 507l-22 12c40 98 116 164 218 164c104 0 164 -73 164 -168c0 -79 -43 -151 -144 -237l-196 -167h138c86 0 117 14 151 80h24l-80 -191h-366v24l89 92c184 191 250 273 250 360c0 69 -25 117 -92 117c-52 0 -93 -25 -134 -86'], + 0x33: [683,13,500,-14,450,'117 537l-21 13c60 97 126 133 207 133c80 0 147 -58 147 -136c0 -60 -30 -115 -119 -149v-2c57 -43 77 -80 77 -146c0 -141 -123 -263 -290 -263c-82 0 -132 31 -132 80c0 34 22 58 59 58c49 0 63 -57 90 -84c8 -8 24 -14 40 -14c61 0 110 79 110 162 c0 48 -12 85 -36 112c-33 37 -68 43 -122 46l4 22c129 27 190 76 190 153c0 55 -25 90 -87 90c-47 0 -76 -18 -117 -75'], + 0x34: [683,0,500,-15,503,'503 683l-119 -435h70l-27 -98h-69l-42 -150h-128l41 150h-244l28 105l427 428h63zM335 528l-282 -280h203'], + 0x35: [669,13,500,-11,486,'486 669l-36 -109h-253l-34 -77c106 -20 127 -26 176 -67c47 -40 73 -98 73 -165c0 -141 -121 -264 -286 -264c-85 0 -137 31 -137 79c0 34 24 58 59 58c30 0 52 -16 71 -54c18 -36 37 -43 59 -43c63 0 129 76 129 162c0 65 -37 123 -101 155c-37 19 -68 25 -133 28 l131 297h282'], + 0x36: [679,15,500,23,509,'503 679l6 -24c-129 -45 -214 -128 -278 -246c21 9 42 13 62 13c93 0 150 -58 150 -171c0 -156 -109 -266 -246 -266c-112 0 -174 77 -174 204c0 138 65 267 176 360c92 77 158 102 304 130zM319 315c0 46 -17 67 -68 67c-28 0 -39 -6 -55 -44c-36 -84 -61 -185 -61 -243 c0 -53 18 -78 55 -78c26 0 42 9 61 39c38 60 68 189 68 259'], + 0x37: [669,0,500,52,525,'525 669l-381 -669h-92l332 556h-127c-113 0 -136 -12 -173 -77h-26l87 190h380'], + 0x38: [683,13,500,3,476,'183 341v4c-56 59 -74 96 -74 154c0 114 87 184 191 184c56 0 99 -17 130 -44c28 -25 46 -54 46 -99c0 -71 -39 -120 -143 -160v-4c66 -74 86 -119 86 -183c0 -128 -99 -206 -228 -206c-115 0 -188 67 -188 166c0 87 60 143 180 188zM383 544c0 64 -34 106 -77 106 c-52 0 -86 -37 -86 -98c0 -50 19 -92 90 -149c58 60 73 90 73 141zM306 140c0 52 -10 89 -97 181c-76 -48 -109 -98 -109 -180c0 -77 38 -124 96 -124c62 0 110 53 110 123'], + 0x39: [683,10,500,-12,475,'-6 -10l-6 25c122 37 216 120 277 244c-25 -11 -38 -14 -61 -14c-90 0 -151 67 -151 167c0 152 108 271 246 271c50 0 89 -15 118 -44c37 -38 58 -97 58 -163c0 -146 -81 -292 -212 -384c-77 -55 -138 -78 -269 -102zM363 582c0 46 -16 69 -49 69c-32 0 -59 -22 -79 -63 c-31 -63 -58 -172 -58 -236c0 -41 23 -64 66 -64c42 0 50 9 77 89c32 95 43 147 43 205'], + 0x3A: [459,13,333,23,264,'264 385c0 -42 -33 -74 -75 -74s-73 32 -73 74s32 74 75 74c40 0 73 -34 73 -74zM171 61c0 -42 -33 -74 -75 -74s-73 32 -73 74s32 74 75 74c40 0 73 -34 73 -74'], + 0x3B: [459,183,333,-25,264,'264 385c0 -42 -33 -74 -75 -74s-73 32 -73 74s32 74 75 74c40 0 73 -34 73 -74zM-12 -183l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -41 38 -41 65c0 48 33 73 74 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x3C: [518,12,570,31,539,'539 -12l-508 223v84l508 223v-96l-385 -169l385 -169v-96'], + 0x3D: [399,-107,570,33,537,'537 311h-504v88h504v-88zM537 107h-504v88h504v-88'], + 0x3E: [518,12,570,31,539,'539 211l-508 -223v96l385 169l-385 169v96l508 -223v-84'], + 0x3F: [684,13,500,79,470,'196 208l-29 8c4 55 22 115 112 209c49 51 64 101 64 149c0 49 -26 79 -69 79c-32 0 -62 -18 -62 -38c0 -26 29 -26 29 -67c0 -33 -27 -62 -61 -62c-35 0 -61 34 -61 72c0 67 79 126 181 126c95 0 170 -52 170 -144c0 -63 -33 -117 -126 -171 c-103 -60 -120 -91 -148 -161zM227 61c0 -42 -33 -74 -75 -74s-73 32 -73 74s32 74 75 74c40 0 73 -34 73 -74'], + 0x40: [685,18,939,118,825,'703 77l13 -35c-95 -49 -158 -60 -231 -60c-212 0 -367 161 -367 343c0 207 165 360 373 360c189 0 334 -117 334 -298c0 -132 -68 -244 -187 -245c-49 0 -91 34 -93 75c-35 -46 -79 -74 -122 -74c-58 0 -96 47 -96 114c0 117 76 258 201 258c36 0 49 -10 72 -52l11 38 h71l-61 -243c-2 -10 -6 -23 -6 -34c0 -29 17 -44 41 -44c81 0 123 139 123 206c0 146 -130 260 -287 260c-165 0 -283 -134 -283 -327c0 -164 115 -291 287 -291c70 0 138 8 207 49zM583 402c0 40 -13 64 -42 65c-84 1 -138 -111 -138 -192c0 -52 23 -85 59 -85 c29 0 60 25 82 68c21 41 39 100 39 144'], + 0x41: [683,0,667,-68,593,'593 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25zM346 248l-37 243l-148 -243h185'], + 0x42: [669,0,667,-25,624,'118 669h265c161 0 241 -50 241 -146c0 -109 -86 -138 -189 -168v-1c96 -27 137 -73 137 -148c0 -134 -112 -206 -295 -206h-302v25c48 6 68 24 84 83l119 438c7 25 11 47 11 57c0 39 -32 41 -71 41v25zM334 577l-57 -209c69 5 116 5 153 40c30 28 47 72 47 128 c0 67 -29 101 -87 101c-32 0 -41 -4 -56 -60zM269 338l-64 -236c-5 -19 -7 -29 -7 -37c0 -23 18 -33 57 -33c53 0 90 21 121 59c29 35 43 88 43 138c0 37 -12 67 -35 85c-21 16 -50 22 -115 24'], + 0x43: [685,18,667,32,677,'677 685l-51 -235l-32 6c2 13 3 23 3 36c0 93 -46 158 -131 158c-53 0 -107 -30 -145 -73c-77 -87 -135 -220 -135 -368c0 -109 61 -174 155 -174c87 0 138 43 204 119l31 -22c-32 -44 -49 -63 -78 -85c-57 -43 -128 -65 -199 -65c-163 0 -267 101 -267 252 c0 148 62 276 159 358c69 58 156 93 249 93c41 0 86 -7 131 -21c15 -5 30 -8 38 -8c15 0 24 7 38 29h30'], + 0x44: [669,0,722,-46,685,'94 669h290c189 0 301 -101 301 -264c0 -109 -44 -218 -119 -288c-79 -73 -191 -117 -324 -117h-288v25c48 6 66 22 83 84l115 422c13 46 15 61 15 71c0 24 -9 33 -39 37l-34 5v25zM318 600l-126 -465c-11 -39 -15 -55 -15 -67c0 -24 20 -34 58 -34c87 0 156 34 210 105 c62 81 93 193 93 318c0 122 -54 181 -165 181c-33 0 -47 -10 -55 -38'], + 0x45: [669,0,667,-27,653,'653 669l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541'], + 0x46: [669,0,667,-13,660,'660 669l-43 -190l-27 5c0 51 -4 80 -20 100c-32 40 -73 53 -157 53c-41 0 -52 -10 -63 -48l-61 -219c131 1 156 13 198 107l28 -4l-74 -274l-28 5c3 19 4 30 4 44c0 68 -30 88 -137 90l-55 -206c-8 -30 -15 -50 -15 -63c0 -31 15 -40 71 -44v-25h-294v25 c58 6 67 24 82 79l121 442c6 23 10 46 10 61c0 20 -11 29 -42 33l-31 4v25h533'], + 0x47: [685,18,722,21,705,'705 330v-26c-50 -4 -60 -14 -82 -96l-44 -167l-28 -13c-57 -27 -156 -46 -234 -46c-176 0 -296 104 -296 274c0 130 63 254 163 337c74 61 162 92 264 92c46 0 81 -6 124 -21c19 -7 27 -9 36 -9c20 0 31 8 42 30h31l-51 -221l-29 4c-2 61 -8 91 -24 119 c-23 40 -63 62 -115 62c-69 0 -129 -42 -173 -98c-67 -87 -112 -211 -112 -335c0 -130 58 -196 164 -196c39 0 81 11 94 30l31 104c22 75 27 89 27 114c0 9 -6 20 -12 24c-11 6 -20 8 -63 12v26h287'], + 0x48: [669,0,778,-24,799,'799 669v-25c-49 0 -68 -21 -82 -74l-111 -408c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79l62 225h-239l-54 -197c-10 -36 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36 l-31 4v25h316v-25c-65 -2 -84 -15 -102 -80l-52 -191h239l47 173c5 19 10 49 10 61c0 20 -10 29 -41 33l-31 4v25h297'], + 0x49: [669,0,389,-32,406,'406 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298'], + 0x4A: [669,99,500,-46,524,'524 669v-25c-49 -6 -65 -11 -85 -85l-122 -457c-36 -135 -115 -201 -215 -201c-88 0 -148 36 -148 101c0 40 28 72 64 72c35 0 63 -25 63 -65c0 -31 -23 -36 -23 -54c0 -12 8 -18 27 -18c37 0 51 30 88 170l114 432c10 39 13 53 13 64c0 18 -11 31 -41 36l-33 5v25h298'], + 0x4B: [669,0,667,-21,702,'702 669v-25c-43 -6 -51 -9 -94 -48l-216 -199l157 -333c11 -24 25 -35 63 -39v-25h-280l1 25l26 4c27 4 38 9 38 23c0 12 -5 27 -15 49l-111 236l-67 -249c-1 -5 -2 -11 -2 -17c0 -33 13 -42 65 -46v-25h-288v25c45 5 65 15 79 68l123 453c8 28 11 46 11 58 c0 22 -10 32 -41 36l-33 4v25h311v-25c-59 -5 -80 -20 -94 -72l-62 -227l197 175c59 52 77 78 77 97c0 15 -10 23 -35 25l-21 2v25h211'], + 0x4C: [669,0,611,-22,590,'590 195l-60 -195h-552v25c55 7 67 24 82 78l121 443c5 19 11 49 11 61c0 20 -10 28 -41 32c-11 2 -24 4 -34 5v25h318v-25c-66 -4 -85 -17 -99 -70l-129 -473c-4 -16 -6 -31 -6 -39c0 -21 27 -30 72 -30c70 0 127 14 178 45c52 31 76 59 115 123'], + 0x4D: [669,12,889,-29,917,'917 669v-25c-51 -6 -67 -19 -84 -81l-119 -438c-5 -17 -10 -45 -10 -57c0 -32 12 -43 71 -43v-25h-311v25c69 4 85 21 101 79l123 457l-375 -573h-28l-67 559l-101 -369c-14 -50 -20 -75 -20 -92c0 -45 16 -55 80 -61v-25h-206v25c54 12 67 33 103 157l107 369 c7 26 11 44 11 58c0 28 -7 35 -71 35v25h219l54 -480l311 480h212'], + 0x4E: [669,15,722,-27,748,'748 669v-25c-56 -11 -66 -24 -102 -153l-143 -506h-28l-257 547l-99 -354c-12 -42 -19 -75 -19 -94c0 -39 20 -54 79 -59v-25h-206v25c55 11 60 17 101 155l120 407c-19 44 -27 52 -82 57v25h193l216 -467l81 289c11 41 19 75 19 94c0 38 -21 59 -81 59v25h208'], + 0x4F: [685,18,722,27,691,'691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM547 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388 c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398'], + 0x50: [669,0,611,-28,613,'112 669h282c147 0 219 -54 219 -155c0 -53 -21 -98 -59 -131c-48 -42 -122 -66 -214 -66c-27 0 -46 1 -81 5l-54 -199c-5 -17 -11 -48 -11 -58c0 -27 16 -37 72 -40v-25h-294v25c52 8 66 17 84 82l117 426c11 39 13 59 13 74c0 20 -10 29 -41 33l-33 4v25zM330 584 l-61 -229c17 -3 29 -3 42 -3c62 0 96 18 123 62c22 35 33 93 33 136c0 53 -31 87 -84 87c-35 0 -41 -9 -53 -53'], + 0x51: [685,208,722,27,691,'203 -17l2 4c-5 2 -8 3 -16 6c-101 36 -162 108 -162 218c0 150 74 293 180 381c71 59 155 93 242 93c140 0 242 -98 242 -233c0 -124 -56 -256 -155 -351c-87 -84 -143 -112 -284 -118l-44 -47v-3c43 -2 113 -9 186 -35c37 -13 58 -16 85 -16c61 0 97 18 155 78l21 -19 c-79 -115 -150 -149 -259 -149c-41 0 -74 6 -136 26c-52 16 -75 21 -104 21c-32 0 -58 -6 -114 -28l-14 24zM547 532c0 71 -41 119 -101 119c-63 0 -114 -38 -162 -119c-60 -101 -113 -286 -113 -396c0 -73 39 -119 102 -119c68 0 125 57 169 137c57 105 105 272 105 378'], + 0x52: [669,0,667,-28,623,'110 669h286c147 0 227 -47 227 -143c0 -69 -36 -114 -96 -151c-24 -15 -50 -23 -96 -32l85 -254c16 -49 31 -59 87 -64v-25h-202l-107 331h-30l-52 -182c-14 -48 -18 -68 -18 -82c0 -30 14 -38 72 -42v-25h-294v25c49 6 66 25 82 84l120 437c5 19 10 49 10 61 c0 20 -9 31 -42 34l-32 3v25zM330 583l-57 -220c62 1 101 8 127 25c44 27 72 88 72 154c0 61 -29 95 -82 95c-31 0 -48 -8 -60 -54'], + 0x53: [685,18,556,2,526,'526 681l-40 -202l-27 4c-5 42 -9 76 -22 101c-23 46 -64 66 -116 66c-53 0 -98 -40 -98 -105c0 -60 36 -86 107 -137c106 -77 138 -127 138 -217c0 -84 -41 -150 -110 -184c-33 -16 -74 -25 -120 -25c-40 0 -73 7 -122 24c-23 8 -36 11 -46 11c-19 0 -26 -6 -38 -35h-30 l36 225l29 -2c8 -66 16 -103 48 -139c27 -31 62 -50 106 -50c38 0 67 11 89 34c23 23 37 47 37 92c0 59 -34 96 -115 154s-130 114 -130 198c0 114 90 191 204 191c88 0 108 -30 146 -30c21 0 35 8 44 26h30'], + 0x54: [669,0,611,49,650,'650 669l-36 -192l-27 2c0 114 -38 155 -138 155l-135 -489c-7 -24 -17 -53 -17 -74c0 -29 23 -46 83 -46v-25h-331v25h15c46 0 77 20 91 72l148 537c-102 -2 -167 -37 -218 -143l-25 7l39 171h551'], + 0x55: [669,18,722,67,744,'744 669v-25c-55 -11 -65 -13 -102 -147l-65 -234c-30 -107 -62 -187 -121 -234c-39 -31 -92 -47 -166 -47c-131 0 -223 56 -223 163c0 40 14 101 37 189l51 193c10 37 15 66 15 78c0 22 -9 33 -41 36l-32 3v25h311v-25c-62 -3 -78 -17 -94 -76l-81 -294 c-26 -94 -28 -107 -28 -135c0 -72 46 -101 122 -101c55 0 94 17 123 47c43 44 67 114 90 197l57 209c12 44 19 79 19 96c0 36 -22 57 -79 57v25h207'], + 0x56: [669,18,667,66,715,'715 669v-25c-30 -6 -50 -25 -62 -44l-390 -618h-32l-76 513c-20 136 -27 149 -89 149v25h296v-25c-68 -6 -75 -11 -75 -45c0 -5 1 -17 2 -23l50 -394l187 297c43 69 63 107 63 129c0 19 -13 32 -41 34l-24 2v25h191'], + 0x57: [669,18,889,64,940,'940 669v-24c-42 -6 -55 -15 -88 -82l-282 -581h-29l-59 489l-233 -489h-29l-78 572c-10 71 -14 80 -78 91v24h278v-25c-47 -6 -61 -19 -61 -50c0 -6 0 -14 1 -19l40 -349l149 314c0 79 -10 97 -70 105v24h267v-25c-53 -5 -62 -16 -62 -54c0 -12 3 -34 7 -73l33 -291 l155 327c12 26 15 34 15 46c0 36 -7 41 -63 45v25h187'], + 0x58: [669,0,667,-24,694,'694 669v-25c-36 -5 -56 -16 -99 -61l-199 -205l75 -237c27 -86 43 -108 115 -116v-25h-307v25c57 5 67 12 67 38c0 22 -11 63 -37 141l-20 60l-130 -144c-23 -25 -32 -42 -32 -55c0 -23 18 -36 63 -40v-25h-214v25c56 10 82 47 231 210l68 74l-83 269 c-17 55 -33 60 -93 66v25h305v-25l-29 -3c-33 -3 -45 -10 -45 -33c0 -15 12 -59 35 -132l17 -55l94 99c52 55 70 80 70 98c0 15 -10 22 -33 24l-21 2v25h202'], + 0x59: [669,0,611,71,659,'659 669v-25c-38 -5 -60 -27 -92 -72l-189 -264l-52 -191c-5 -20 -10 -37 -10 -51c0 -28 17 -41 79 -41v-25h-323v25c66 6 87 15 104 78l57 208l-87 270c-16 48 -23 52 -75 63v25h285v-25c-55 -2 -69 -9 -69 -39c0 -18 8 -44 29 -110l46 -143l128 183c21 30 28 49 28 67 c0 31 -13 40 -66 42v25h207'], + 0x5A: [669,0,611,-12,589,'589 640l-434 -605h75c92 0 147 12 199 50c36 27 69 69 97 114l27 -5l-60 -194h-505v29l434 605h-83c-105 0 -168 -36 -247 -147l-28 4l58 178h467v-29'], + 0x5B: [674,159,333,-37,362,'362 674l-7 -35h-69c-36 0 -39 -6 -53 -66l-155 -667c-1 -3 -1 -7 -1 -9c0 -15 13 -21 34 -21h78l-7 -35h-219l199 833h200'], + 0x5C: [685,18,278,-1,279,'279 -18h-84l-196 703h85'], + 0x5D: [674,157,333,-56,343,'343 674l-200 -831h-199l7 35h68c36 0 37 5 51 63l157 667c1 5 1 10 1 10c0 13 -14 21 -34 21h-78l7 35h220'], + 0x5E: [669,-304,570,67,503,'503 304h-89l-129 272l-129 -272h-89l178 365h80'], + 0x5F: [-75,125,500,0,500,'500 -125h-500v50h500v-50'], + 0x60: [697,-516,333,85,297,'297 516h-46l-132 88c-22 15 -34 32 -34 48c0 24 21 45 45 45c19 0 38 -9 56 -33'], + 0x61: [462,14,500,-21,456,'435 127l21 -15c-58 -94 -109 -126 -156 -126c-37 0 -63 21 -63 64c0 14 2 28 14 69c-56 -95 -103 -132 -164 -132c-65 0 -108 51 -108 127c0 80 36 164 87 231c53 70 121 117 186 117c43 0 65 -21 74 -72h1l17 59l111 7l-75 -251c-24 -79 -30 -108 -30 -133 c0 -9 4 -15 12 -15c16 0 32 15 73 70zM303 373c0 27 -15 47 -37 47c-42 0 -80 -58 -108 -115c-35 -71 -56 -152 -56 -190c0 -40 17 -57 43 -57c27 0 59 26 86 75c39 69 72 180 72 240'], + 0x62: [699,13,500,-14,444,'284 699l-91 -326c48 66 93 89 144 89c64 0 107 -58 107 -131c0 -179 -152 -344 -320 -344c-66 0 -138 24 -138 61c0 6 10 45 20 81l94 327c27 94 39 143 39 156c0 20 -16 30 -46 30h-19v27c89 10 140 17 210 30zM319 325c0 46 -12 69 -41 69c-33 0 -66 -29 -92 -84 c-22 -48 -45 -124 -62 -182c-10 -34 -15 -73 -15 -81c0 -16 13 -27 31 -27c40 0 74 28 108 78c41 60 71 169 71 227'], + 0x63: [462,13,444,-5,392,'318 142l28 -18c-38 -52 -70 -96 -115 -119c-23 -12 -50 -18 -83 -18c-91 0 -153 53 -153 151c0 92 43 177 105 239c51 52 113 85 180 85c60 0 112 -37 112 -90c0 -42 -25 -71 -62 -71c-34 0 -58 23 -58 53s21 36 21 58c0 10 -12 17 -24 17c-38 0 -65 -37 -93 -88 c-33 -61 -53 -134 -53 -201c0 -58 29 -89 73 -89c43 0 74 24 122 91'], + 0x64: [699,13,500,-21,517,'517 699l-117 -421c-35 -126 -51 -194 -51 -203c0 -6 5 -15 11 -15c15 0 40 26 68 71l22 -16c-55 -88 -101 -126 -150 -126c-38 0 -60 23 -60 61c0 16 2 29 11 68c-52 -94 -105 -131 -166 -131s-106 42 -106 125c0 99 58 212 131 282c43 42 93 68 138 68 c29 0 53 -8 75 -33l18 64c25 88 29 113 29 122c0 18 -15 28 -41 28h-21v27c100 8 149 15 209 29zM308 371c0 28 -15 49 -37 49c-43 1 -85 -54 -114 -112c-33 -66 -54 -144 -54 -186c0 -36 16 -63 41 -63c29 0 59 25 86 74c36 64 78 194 78 238'], + 0x65: [462,13,444,5,398,'317 143l29 -17c-56 -100 -118 -139 -195 -139c-87 0 -146 48 -146 147c0 165 143 328 288 328c65 0 105 -36 105 -87c0 -43 -29 -88 -69 -122c-43 -36 -91 -54 -188 -71c-4 -20 -6 -33 -6 -49c0 -54 22 -82 64 -82c43 0 72 23 118 92zM306 390c0 23 -7 39 -31 39 c-48 0 -91 -76 -127 -215c90 20 158 93 158 176'], + 0x66: [698,205,333,-169,446,'47 449h74c20 71 43 135 79 181c34 42 79 68 147 68c60 0 99 -31 99 -80c0 -31 -20 -54 -51 -54c-28 0 -49 22 -49 50c0 23 16 28 16 42c0 8 -8 13 -18 13c-34 0 -68 -56 -92 -154l-16 -66h91l-9 -42h-89c-56 -265 -68 -313 -95 -394c-31 -92 -54 -137 -90 -172 c-32 -31 -70 -46 -114 -46c-56 0 -99 31 -99 79c0 31 24 55 51 55c26 0 50 -20 50 -49c0 -25 -16 -28 -16 -42c0 -8 8 -12 18 -12c40 0 59 41 90 189c6 29 38 172 88 392h-74'], + 0x67: [462,203,500,-52,477,'477 373h-66c6 -12 6 -26 6 -42c0 -53 -25 -99 -71 -132s-88 -46 -145 -46c-17 0 -39 4 -51 8c-13 0 -28 -14 -28 -36c0 -16 22 -33 54 -41l50 -12c110 -26 149 -62 149 -123c0 -81 -88 -152 -237 -152c-115 0 -190 33 -190 101c0 89 80 107 133 109 c-44 15 -62 34 -62 66c0 37 21 67 96 97c-54 23 -80 58 -80 110c0 104 95 182 218 182c46 0 83 -7 114 -33h110v-56zM300 372c0 35 -12 59 -45 59c-22 0 -42 -14 -57 -32c-33 -41 -47 -110 -47 -156c0 -38 15 -59 42 -59c31 0 57 23 78 69c17 37 29 85 29 119zM266 -100 c0 24 -14 44 -42 58c-22 10 -97 35 -109 36c-9 -1 -38 -17 -51 -30c-20 -19 -29 -36 -29 -55c0 -46 46 -78 113 -78c72 0 118 34 118 69'], + 0x68: [699,9,556,-13,498,'476 142l22 -15c-66 -103 -106 -136 -167 -136c-39 0 -66 24 -66 64c0 41 11 77 61 225l20 59c5 15 7 24 7 30c0 16 -8 21 -20 21c-27 0 -63 -31 -106 -94c-49 -72 -68 -121 -119 -296h-121l152 562c6 22 10 38 10 47c0 23 -13 33 -42 33h-22v27c81 7 132 15 209 30 l-108 -416c99 141 145 179 213 179c49 0 76 -28 76 -75c0 -19 -9 -56 -29 -118l-59 -182c-3 -8 -3 -9 -3 -12c0 -7 9 -16 17 -16c13 0 32 21 75 83'], + 0x69: [684,9,278,2,262,'262 616c0 -37 -30 -66 -68 -66s-66 30 -66 69c0 34 31 65 65 65c38 0 69 -31 69 -68zM216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334 c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61'], + 0x6A: [685,207,278,-189,279,'279 617c0 -37 -31 -67 -69 -67c-37 0 -66 30 -66 69c0 35 31 66 66 66c38 0 69 -31 69 -68zM239 462l-116 -444c-42 -160 -107 -225 -207 -225c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15 c28 0 49 36 74 136l89 350c8 30 12 54 12 67c0 21 -12 30 -41 30h-22v27c112 10 149 15 209 28'], + 0x6B: [699,8,500,-23,483,'483 449v-25c-46 -6 -67 -14 -135 -76l-64 -58c39 -195 57 -227 79 -227c19 0 37 16 64 64l22 -11c-45 -95 -88 -124 -138 -124c-62 0 -90 48 -123 223l-39 -27l-50 -188h-122l157 566c7 24 7 32 7 42c0 28 -10 34 -30 34h-34v27c77 4 132 13 209 30l-124 -461 c126 99 165 137 165 163c0 16 -11 21 -50 23v25h206'], + 0x6C: [699,9,278,2,290,'290 699l-145 -523c-15 -54 -22 -86 -22 -100c0 -8 5 -15 15 -15c18 0 39 21 79 80l22 -14c-69 -105 -105 -136 -169 -136c-41 0 -68 27 -68 63c0 23 14 84 34 155l74 259c21 73 34 121 34 145c0 20 -15 30 -42 30c-5 0 -11 0 -22 -1v27c75 7 124 14 210 30'], + 0x6D: [462,9,778,-14,723,'701 135l22 -13c-52 -97 -99 -131 -161 -131c-43 0 -67 20 -67 66c0 29 15 87 37 151l44 130c4 13 7 24 7 30c0 11 -11 21 -23 21c-30 0 -70 -41 -112 -116c-36 -63 -43 -81 -101 -273h-120l65 207c32 102 45 143 45 160c0 16 -8 22 -18 22c-15 0 -43 -21 -65 -47 c-57 -68 -94 -153 -147 -342h-121l66 232c28 97 36 135 36 150c0 16 -12 25 -38 25h-18v27c113 9 137 12 200 27l-63 -199h1c48 74 77 115 104 142c32 32 74 58 114 58c42 0 67 -25 67 -67c0 -28 -6 -53 -26 -105c81 132 126 172 198 172c48 0 77 -30 77 -71 c0 -26 -8 -66 -23 -109l-45 -128c-18 -51 -21 -59 -21 -77c0 -12 7 -18 16 -18c13 0 35 21 58 58c4 7 8 13 12 18'], + 0x6E: [462,9,556,-6,494,'472 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 26 10 77 26 125l55 165c3 10 7 25 7 28c0 17 -12 21 -25 21c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 135 13 199 27 l-62 -198h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -28 -116l-35 -104c-19 -56 -24 -79 -24 -89s6 -17 14 -17c17 0 31 14 71 76'], + 0x6F: [462,13,500,-3,441,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM322 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64 c26 0 50 15 71 49c49 80 86 220 86 307'], + 0x70: [462,205,500,-120,446,'177 347h1c56 87 101 115 158 115c72 0 110 -47 110 -121c0 -185 -135 -354 -277 -354c-21 0 -46 6 -68 22l-12 -41c-19 -66 -24 -100 -24 -114c0 -24 15 -31 65 -32v-27h-250v27c48 0 59 10 78 86l96 380c13 52 22 84 22 94c0 19 -9 23 -54 25v27c52 6 90 12 192 28z M321 336c0 40 -15 55 -39 55c-31 0 -61 -32 -87 -71c-18 -27 -22 -40 -44 -113c-27 -91 -38 -132 -38 -149c0 -20 17 -36 39 -36s43 12 62 30c67 66 107 223 107 284'], + 0x71: [462,205,500,1,471,'471 449l-129 -461c-20 -73 -36 -127 -36 -138c0 -20 17 -28 49 -28h17v-27h-268v27c61 0 75 13 92 69l61 207c-44 -82 -94 -111 -154 -111c-65 0 -102 48 -102 130c0 55 19 117 54 178c59 103 142 167 218 167c23 0 47 -9 57 -22c9 -11 12 -22 17 -50l15 59h109z M325 371c0 28 -12 48 -35 48c-39 0 -86 -65 -111 -115c-32 -66 -53 -140 -53 -188c0 -38 13 -57 39 -57c31 0 59 24 88 74c35 62 72 180 72 238'], + 0x72: [462,0,389,-21,389,'160 253h1c79 159 117 209 171 209c34 0 57 -26 57 -66c0 -42 -25 -73 -58 -73c-39 0 -41 38 -61 38c-14 0 -38 -27 -65 -76c-26 -47 -41 -81 -74 -186l-31 -99h-121c71 240 102 357 102 382c0 19 -12 25 -56 25v27c121 10 140 13 200 28'], + 0x73: [462,13,389,-19,333,'333 461l-23 -154l-27 2c-16 83 -42 120 -88 120c-32 0 -53 -21 -53 -53c0 -23 18 -54 57 -99c60 -70 80 -114 80 -162c0 -75 -66 -128 -148 -128c-21 0 -42 3 -64 12c-13 5 -23 8 -30 8c-13 0 -23 -6 -29 -20h-27l22 166l27 -3c11 -88 42 -133 93 -133c40 0 60 22 60 54 c0 30 -16 59 -56 104c-68 77 -80 107 -80 161c0 80 53 126 134 126c20 0 41 -4 58 -12s27 -10 37 -10c15 0 19 4 28 21h29'], + 0x74: [594,9,278,-11,281,'281 407h-83l-34 -119c-35 -122 -53 -185 -53 -209c0 -13 8 -18 16 -18c16 0 42 27 76 80l23 -15c-66 -103 -110 -135 -170 -135c-42 0 -67 21 -67 65c0 18 10 63 25 115l67 236h-52v35c82 28 130 67 184 152h35l-39 -145h72v-42'], + 0x75: [462,9,556,15,493,'471 133l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l37 128c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-93 -302c-14 -45 -16 -57 -16 -72 c0 -17 10 -25 24 -25c18 0 40 16 70 55c58 76 88 131 142 331h118l-78 -266c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74'], + 0x76: [462,13,444,15,401,'15 408v27c82 11 107 15 156 27c21 -67 31 -146 31 -334c99 113 126 154 126 189c0 11 -5 19 -20 36c-18 20 -25 36 -25 53c0 31 27 56 57 56c38 0 61 -32 61 -67c0 -42 -20 -96 -60 -154c-55 -80 -103 -133 -230 -254h-26c5 91 5 173 5 177c0 108 -9 193 -25 225 c-7 13 -19 19 -50 19'], + 0x77: [462,13,667,15,614,'387 462l31 -333c88 103 120 157 120 187c0 10 -6 22 -20 38c-17 19 -22 33 -22 48c0 40 27 60 57 60c33 0 61 -29 61 -62c0 -84 -89 -223 -272 -413h-27l-23 285c-34 -63 -70 -135 -114 -201l-56 -84h-27v46c0 13 1 32 1 62c0 121 -18 284 -38 302c-8 7 -18 10 -43 10 v27c80 13 115 19 156 28c23 -86 33 -154 33 -274l156 274h27'], + 0x78: [462,13,500,-45,469,'41 438l165 24c19 -28 31 -53 47 -138c78 114 111 138 158 138c31 0 58 -29 58 -61c0 -29 -26 -53 -56 -53c-24 0 -34 20 -57 20s-60 -37 -92 -94l32 -157c8 -39 18 -53 37 -53c18 0 28 9 67 59l21 -14c-61 -88 -103 -122 -151 -122c-50 0 -75 40 -97 155l-24 -39 c-59 -96 -81 -116 -131 -116c-38 0 -63 24 -63 59c0 32 23 57 54 57c30 0 41 -22 62 -22c18 0 26 6 47 40l44 71l-29 152c-9 49 -25 69 -57 69c-9 0 -16 0 -35 -2v27'], + 0x79: [462,205,444,-94,392,'239 110h2c70 134 87 176 87 207c0 13 -7 19 -25 34c-22 18 -31 29 -31 54s21 57 58 57c33 0 62 -30 62 -64c0 -101 -119 -338 -249 -497c-55 -67 -120 -106 -175 -106c-35 0 -62 26 -62 60c0 29 24 56 50 56c47 0 58 -36 94 -36c17 0 46 22 67 52c17 24 25 48 25 71 c0 31 -16 126 -50 288c-13 59 -24 97 -40 113c-11 11 -15 12 -40 12v27c65 6 102 12 150 24c18 -47 48 -149 66 -274'], + 0x7A: [449,78,389,-43,368,'368 439l-281 -335c39 -17 61 -35 86 -69c21 -29 39 -84 68 -84c13 0 22 8 22 17c0 16 -20 17 -20 45s23 53 50 53c28 0 53 -25 53 -53c0 -62 -49 -91 -110 -91c-41 0 -80 15 -129 50c-35 25 -54 33 -74 33c-11 0 -17 -3 -32 -14c-6 -5 -12 -10 -19 -14l-25 22l292 354 h-136c-37 0 -58 -14 -73 -61l-27 3l44 154h311v-10'], + 0x7B: [686,187,348,4,436,'436 686l-3 -12c-82 -15 -118 -48 -138 -124l-45 -171c-22 -85 -54 -111 -152 -130c75 -20 93 -34 93 -76c0 -23 -10 -70 -29 -130c-19 -63 -30 -113 -30 -140c0 -46 22 -67 81 -78l-3 -12c-139 3 -182 25 -182 91c0 30 16 103 35 159c16 49 26 92 26 116 c0 35 -23 54 -85 70c89 19 119 41 138 116l46 179c28 109 89 142 248 142'], + 0x7C: [685,18,220,66,154,'154 -18h-88v703h88v-703'], + 0x7D: [686,187,348,-129,303,'94 674l3 12c94 -2 133 -10 158 -32c16 -14 24 -33 24 -56c0 -31 -16 -105 -35 -162c-16 -49 -26 -92 -26 -116c0 -35 23 -54 85 -70c-89 -20 -119 -44 -138 -116l-46 -179c-28 -111 -89 -142 -248 -142l3 12c82 15 118 48 138 124l45 171c22 85 54 111 152 130 c-75 20 -93 34 -93 76c0 23 8 64 28 130c20 69 31 115 31 141c0 44 -23 66 -81 77'], + 0x7E: [331,-175,570,54,516,'461 308l55 -48c-46 -64 -77 -85 -123 -85c-33 0 -60 7 -105 33c-46 26 -77 35 -112 35c-29 0 -45 -10 -69 -42l-53 46c33 58 71 84 121 84c36 0 60 -7 136 -41c49 -22 64 -27 82 -27c24 0 43 13 68 45'], + 0xA0: [0,0,250,0,0,''], + 0xA3: [683,12,500,-32,510,'45 370h105c25 124 49 182 98 237c42 49 96 76 153 76c63 0 109 -39 109 -91c0 -38 -26 -68 -61 -68c-30 0 -53 22 -53 51c0 10 2 22 4 34c2 7 3 14 3 19c0 12 -10 21 -24 21c-29 0 -50 -27 -60 -77l-39 -202h114l-10 -60h-115c-13 -58 -37 -127 -64 -169l-11 -17 c59 -23 92 -32 125 -32c48 0 68 14 90 63h25c-12 -58 -24 -86 -45 -114c-26 -33 -65 -53 -106 -53c-42 0 -76 16 -127 61c-27 -43 -55 -60 -98 -60c-53 0 -90 35 -90 86c0 52 39 87 96 87c21 0 35 -3 61 -14c7 66 9 79 19 162h-109zM113 90c-24 22 -42 30 -64 30 c-31 0 -51 -20 -51 -50s23 -51 56 -51c30 0 48 22 59 71'], + 0xA5: [669,0,500,33,628,'628 669v-25c-40 -8 -61 -25 -93 -69l-166 -233h135l-13 -50h-150l-21 -78h152l-14 -50h-152l-3 -11c-12 -44 -16 -66 -16 -85c0 -33 14 -40 81 -43v-25h-322v25c77 5 93 17 109 72l19 67h-141l14 50h141l22 78h-142l14 50h125l-79 239c-17 52 -27 56 -82 63v25h280v-25 c-57 -2 -75 -9 -75 -32c0 -9 2 -20 6 -32l80 -236l135 194c21 30 26 42 26 60c0 35 -14 44 -70 46v25h200'], + 0xA7: [685,143,500,36,459,'221 419l2 3c-36 40 -55 85 -55 129c0 79 63 134 155 134c79 0 136 -41 136 -98c0 -35 -25 -62 -58 -62c-30 0 -55 25 -55 55c0 40 36 37 36 55c0 15 -28 28 -59 28c-50 0 -85 -30 -85 -73c0 -32 19 -63 69 -122l69 -81c39 -45 59 -97 59 -144c0 -81 -53 -122 -117 -122 c-10 0 -18 1 -30 4l-2 -4c43 -54 59 -88 59 -130c0 -75 -72 -134 -164 -134c-82 0 -145 46 -145 105c0 35 24 61 58 61c33 0 56 -22 56 -51c0 -32 -35 -35 -35 -63c0 -15 33 -29 67 -29c51 0 86 31 86 76c0 33 -13 51 -84 137l-66 80c-35 43 -50 83 -50 126 c0 84 46 126 104 126c13 0 36 -3 49 -6zM364 206c0 67 -111 194 -169 194c-32 0 -56 -25 -56 -58c0 -21 11 -51 29 -76c25 -35 57 -72 79 -91c23 -20 37 -27 58 -27c32 0 59 27 59 58'], + 0xA8: [655,-525,333,55,397,'397 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66zM185 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0xAF: [623,-553,333,51,393,'393 623l-16 -70h-326l17 70h325'], + 0xB0: [688,-402,400,83,369,'369 545c0 -79 -64 -143 -143 -143s-143 64 -143 143s64 143 143 143s143 -64 143 -143zM314 545c0 49 -39 88 -88 88s-88 -39 -88 -88s39 -88 88 -88s88 39 88 88'], + 0xB4: [697,-516,333,139,379,'139 516l122 131c36 38 52 50 70 50c26 0 48 -21 48 -47c0 -19 -9 -30 -39 -47l-152 -87h-49'], + 0xB5: [449,207,576,-60,516,'516 449l-104 -336c-3 -10 -5 -20 -5 -27c0 -8 5 -14 12 -14c15 0 33 17 63 62l22 -16c-73 -105 -110 -131 -166 -131c-37 0 -63 26 -63 63c0 18 2 30 11 68c-53 -90 -85 -118 -132 -118c-24 0 -52 9 -62 24c-14 -43 -23 -89 -23 -133c0 -62 -29 -98 -79 -98 c-37 0 -50 27 -50 66c0 51 41 103 74 215l111 375h135l-93 -312c-4 -14 -7 -31 -7 -42c0 -16 7 -25 19 -25c42 0 117 106 151 215l51 164h135'], + 0xB7: [405,-257,250,51,199,'199 331c0 -42 -33 -74 -75 -74s-73 32 -73 74s32 74 75 74c40 0 73 -34 73 -74'], + 0xF0: [699,13,500,-3,454,'454 664l-107 -56c68 -74 94 -137 94 -228c0 -209 -119 -393 -286 -393c-94 0 -158 63 -158 147c0 175 137 328 275 328c31 0 54 -12 71 -42l2 4c-4 54 -23 100 -62 150l-119 -62l-33 31l122 64c-40 38 -77 58 -117 65l45 27c49 -7 89 -25 132 -60l107 57zM322 375 c0 36 -18 58 -46 58c-88 0 -160 -239 -160 -347c0 -47 16 -70 49 -70c51 0 84 63 109 129c27 73 48 173 48 230'], + 0x127: [699,9,556,-13,498,'65 514l12 44h61c7 25 11 42 11 51c0 23 -13 33 -42 33h-22v27c81 7 132 15 209 30l-37 -141h159l-12 -44h-158l-60 -231c99 141 145 179 213 179c49 0 76 -28 76 -75c0 -19 -9 -56 -29 -118l-59 -182c-3 -8 -3 -9 -3 -12c0 -7 9 -16 17 -16c13 0 32 21 75 83l22 -15 c-66 -103 -106 -136 -167 -136c-39 0 -66 24 -66 64c0 41 11 77 61 225l20 59c5 15 7 24 7 30c0 16 -8 21 -20 21c-27 0 -63 -31 -106 -94c-49 -72 -68 -121 -119 -296h-121l139 514h-61'], + 0x131: [462,9,278,2,238,'216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61'], + 0x237: [462,207,278,-189,239,'239 462l-116 -444c-42 -160 -107 -225 -207 -225c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15c28 0 49 36 74 136l89 350c8 30 12 54 12 67c0 21 -12 30 -41 30h-22v27c112 10 149 15 209 28'], + 0x2C6: [690,-516,333,40,367,'367 516h-51l-88 95l-131 -95h-57l160 174h81'], + 0x2C7: [690,-516,333,79,411,'411 690l-162 -174h-82l-88 174h51l90 -97l134 97h57'], + 0x2D8: [678,-516,333,71,387,'348 678h39c-21 -103 -81 -162 -178 -162c-93 0 -138 54 -138 149v13h43c5 -57 35 -90 99 -90c66 0 104 24 135 90'], + 0x2D9: [655,-525,333,163,293,'293 589c0 -35 -30 -64 -66 -64c-34 0 -64 30 -64 64c0 36 29 66 64 66c36 0 66 -30 66 -66'], + 0x2DA: [754,-541,333,127,340,'340 648c0 -59 -48 -107 -107 -107c-64 0 -106 45 -106 108c0 59 49 105 107 105c63 0 106 -47 106 -106zM292 646c0 33 -27 60 -60 60c-31 0 -57 -27 -57 -59s26 -58 57 -58c33 0 60 26 60 57'], + 0x2DC: [655,-536,333,48,407,'366 655h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42'], + 0x391: [683,0,667,-68,593,'593 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-12 119h-215l-57 -96c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l370 582h25l94 -560c14 -82 23 -94 86 -98v-25zM346 248l-37 243l-148 -243h185'], + 0x392: [669,0,667,-25,624,'118 669h265c161 0 241 -50 241 -146c0 -109 -86 -138 -189 -168v-1c96 -27 137 -73 137 -148c0 -134 -112 -206 -295 -206h-302v25c48 6 68 24 84 83l119 438c7 25 11 47 11 57c0 39 -32 41 -71 41v25zM334 577l-57 -209c69 5 116 5 153 40c30 28 47 72 47 128 c0 67 -29 101 -87 101c-32 0 -41 -4 -56 -60zM269 338l-64 -236c-5 -19 -7 -29 -7 -37c0 -23 18 -33 57 -33c53 0 90 21 121 59c29 35 43 88 43 138c0 37 -12 67 -35 85c-21 16 -50 22 -115 24'], + 0x393: [669,0,585,-13,670,'670 669l-43 -190l-27 5c0 51 -4 80 -20 100c-32 40 -83 53 -167 53c-41 0 -53 -10 -63 -48l-125 -457c-8 -30 -15 -50 -15 -63c0 -31 15 -40 71 -44v-25h-294v25c58 6 67 24 82 79l121 442c6 23 10 46 10 61c0 20 -11 29 -42 33l-31 4v25h543'], + 0x394: [683,0,667,-65,549,'549 0h-614l453 683h25zM384 124l-75 367l-240 -367h315'], + 0x395: [669,0,667,-27,653,'653 669l-43 -190l-27 5c-3 71 -4 96 -45 123c-30 19 -76 30 -137 30c-41 0 -55 -6 -67 -51l-59 -216c132 0 158 13 205 107l28 -4l-74 -274l-28 4c3 19 4 30 4 44c0 69 -31 91 -144 91l-63 -234c-5 -20 -8 -31 -8 -38c0 -24 18 -34 61 -34c88 0 157 19 214 61 c37 27 57 50 91 106l25 -5l-60 -194h-553v25c52 8 65 19 82 80l119 432c9 33 12 55 12 70c0 20 -10 29 -41 33l-33 4v25h541'], + 0x396: [669,0,611,-12,589,'589 640l-434 -605h75c92 0 147 12 199 50c36 27 69 69 97 114l27 -5l-60 -194h-505v29l434 605h-83c-105 0 -168 -36 -247 -147l-28 4l58 178h467v-29'], + 0x397: [669,0,778,-24,799,'799 669v-25c-49 0 -68 -21 -82 -74l-111 -408c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79l62 225h-239l-54 -197c-10 -36 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36 l-31 4v25h316v-25c-65 -2 -84 -15 -102 -80l-52 -191h239l47 173c5 19 10 49 10 61c0 20 -10 29 -41 33l-31 4v25h297'], + 0x398: [685,18,718,27,691,'466 457l28 -4c-35 -76 -50 -173 -59 -254l-27 3c0 49 -3 65 -42 65h-41c-48 0 -59 -15 -86 -65l-26 10c36 74 51 163 56 241l29 4c1 -54 6 -70 57 -70h34c41 0 51 13 77 70zM691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239 c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM547 528c0 83 -41 123 -101 123c-63 0 -112 -16 -162 -100c-60 -101 -113 -289 -113 -408c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398'], + 0x399: [669,0,389,-32,406,'406 669v-25c-49 -5 -67 -17 -84 -80l-112 -412c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82l117 429c8 29 14 59 14 71c0 20 -15 30 -42 33l-32 4v25h298'], + 0x39A: [669,0,667,-21,702,'702 669v-25c-43 -6 -51 -9 -94 -48l-216 -199l157 -333c11 -24 25 -35 63 -39v-25h-280l1 25l26 4c27 4 38 9 38 23c0 12 -5 27 -15 49l-111 236l-67 -249c-1 -5 -2 -11 -2 -17c0 -33 13 -42 65 -46v-25h-288v25c45 5 65 15 79 68l123 453c8 28 11 46 11 58 c0 22 -10 32 -41 36l-33 4v25h311v-25c-59 -5 -80 -20 -94 -72l-62 -227l197 175c59 52 77 78 77 97c0 15 -10 23 -35 25l-21 2v25h211'], + 0x39B: [683,0,655,-68,581,'581 0h-303v25c53 4 77 19 77 49c0 5 -1 9 -2 15l-50 399h-2l-220 -376c-11 -18 -17 -35 -17 -50c0 -24 16 -37 64 -37v-25h-195l-1 25c37 4 55 27 86 76l364 582h25l88 -560c13 -82 23 -94 86 -98v-25'], + 0x39C: [669,12,889,-29,917,'917 669v-25c-51 -6 -67 -19 -84 -81l-119 -438c-5 -17 -10 -45 -10 -57c0 -32 12 -43 71 -43v-25h-311v25c69 4 85 21 101 79l123 457l-375 -573h-28l-67 559l-101 -369c-14 -50 -20 -75 -20 -92c0 -45 16 -55 80 -61v-25h-206v25c54 12 67 33 103 157l107 369 c7 26 11 44 11 58c0 28 -7 35 -71 35v25h219l54 -480l311 480h212'], + 0x39D: [669,15,722,-27,748,'748 669v-25c-56 -11 -66 -24 -102 -153l-143 -506h-28l-257 547l-99 -354c-12 -42 -19 -75 -19 -94c0 -39 20 -54 79 -59v-25h-206v25c55 11 60 17 101 155l120 407c-19 44 -27 52 -82 57v25h193l216 -467l81 289c11 41 19 75 19 94c0 38 -21 59 -81 59v25h208'], + 0x39E: [669,0,746,25,740,'740 669l-28 -183l-25 5c0 53 -21 58 -92 58h-301c-42 0 -58 -7 -96 -63l-26 7l58 176h510zM618 462l-64 -231l-25 3c0 43 -12 59 -57 59h-161c-57 0 -68 -15 -88 -62l-25 3l64 236l25 -2c0 -41 5 -61 56 -61h159c39 0 71 4 91 61zM653 199l-64 -199h-564l41 205l25 6 c0 -62 33 -81 89 -81h320c69 0 89 10 128 75'], + 0x39F: [685,18,722,27,691,'691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM547 528c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388 c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398'], + 0x3A0: [669,0,778,-24,799,'799 669v-25c-49 0 -68 -21 -82 -74l-111 -408c-15 -57 -22 -81 -22 -96c0 -29 18 -39 73 -41v-25h-316v25c67 4 85 16 102 79l144 525h-239l-136 -497c-10 -36 -12 -52 -12 -67s7 -35 71 -40v-25h-295v25c50 7 65 16 81 74l121 447c8 28 11 46 11 58c0 22 -11 32 -42 36 l-31 4v25h683'], + 0x3A1: [669,0,611,-28,613,'112 669h282c147 0 219 -54 219 -155c0 -53 -21 -98 -59 -131c-48 -42 -122 -66 -214 -66c-27 0 -46 1 -81 5l-54 -199c-5 -17 -11 -48 -11 -58c0 -27 16 -37 72 -40v-25h-294v25c52 8 66 17 84 82l117 426c11 39 13 59 13 74c0 20 -10 29 -41 33l-33 4v25zM330 584 l-61 -229c17 -3 29 -3 42 -3c62 0 96 18 123 62c22 35 33 93 33 136c0 53 -31 87 -84 87c-35 0 -41 -9 -53 -53'], + 0x3A3: [669,0,633,-11,619,'619 669l-37 -181l-25 4c0 93 -37 142 -127 142h-152l146 -262l-260 -238h225c84 0 106 14 144 79l26 -5l-61 -208h-509v28l313 287l-186 325v29h503'], + 0x3A4: [669,0,611,49,650,'650 669l-36 -192l-27 2c0 114 -38 155 -138 155l-135 -489c-7 -24 -17 -53 -17 -74c0 -29 23 -46 83 -46v-25h-331v25h15c46 0 77 20 91 72l148 537c-102 -2 -167 -37 -218 -143l-25 7l39 171h551'], + 0x3A5: [685,0,611,21,697,'697 628l-17 -19c-24 20 -51 26 -75 26c-42 0 -81 -26 -119 -79c-30 -42 -68 -109 -106 -248l-53 -192c-5 -17 -10 -36 -10 -49c0 -31 17 -42 79 -42v-25h-323v25c66 6 87 16 104 78l56 209c0 84 -17 304 -126 304c-21 0 -38 -6 -68 -29l-18 18c40 61 95 80 150 80 c144 0 185 -144 185 -274h4c44 134 137 266 243 266c38 0 70 -11 94 -49'], + 0x3A6: [669,0,771,26,763,'538 581l-4 -18c124 -1 229 -50 229 -176c0 -205 -234 -292 -355 -292c-3 -12 -4 -20 -4 -29c0 -28 17 -41 79 -41v-25h-311v25c64 6 71 12 87 70h-8c-134 0 -225 69 -225 194c0 179 195 274 347 274h15c4 19 7 36 7 44c0 20 -18 30 -45 33l-35 4v25h311v-25 c-56 0 -79 -23 -88 -63zM521 529l-108 -400c114 0 206 132 206 259c0 66 -30 123 -98 141zM272 129l109 400c-119 0 -211 -142 -211 -274c0 -70 23 -126 102 -126'], + 0x3A7: [669,0,667,-24,694,'694 669v-25c-36 -5 -56 -16 -99 -61l-199 -205l75 -237c27 -86 43 -108 115 -116v-25h-307v25c57 5 67 12 67 38c0 22 -11 63 -37 141l-20 60l-130 -144c-23 -25 -32 -42 -32 -55c0 -23 18 -36 63 -40v-25h-214v25c56 10 82 47 231 210l68 74l-83 269 c-17 55 -33 60 -93 66v25h305v-25l-29 -3c-33 -3 -45 -10 -45 -33c0 -15 12 -59 35 -132l17 -55l94 99c52 55 70 80 70 98c0 15 -10 22 -33 24l-21 2v25h202'], + 0x3A8: [685,0,661,17,780,'780 685v-25c-70 0 -80 -74 -87 -125c-25 -177 -202 -226 -313 -226l-52 -192c-5 -20 -10 -37 -10 -51c0 -28 17 -41 79 -41v-25h-323v25c60 6 87 15 104 78l56 206c-100 0 -212 27 -212 157c0 61 29 96 29 156c0 22 -6 37 -34 38v25h36c79 0 127 -50 127 -128 c0 -33 -14 -78 -14 -110c0 -57 24 -104 77 -104l53 193c8 29 14 59 14 71c0 20 -15 30 -42 33l-34 4v25h305v-25c-43 0 -70 -13 -81 -54l-68 -247c65 0 123 66 142 146c36 155 119 196 215 196h33'], + 0x3A9: [685,0,808,25,774,'279 124v32c-119 48 -150 118 -150 211c0 94 64 201 174 264c63 36 141 54 231 54c160 0 240 -83 240 -216c0 -148 -103 -271 -282 -315l-9 -30h111c69 0 89 10 128 75l25 -6l-64 -193h-295l60 192c110 24 182 161 182 289c0 89 -20 170 -107 170 c-128 0 -250 -162 -250 -313c0 -71 13 -113 67 -146l-29 -192h-286l41 199l25 6c0 -62 33 -81 89 -81h99'], + 0x3B1: [462,13,576,-3,574,'574 449l-158 -255c0 -72 14 -135 38 -135c21 0 43 26 58 77l24 -7c-12 -69 -56 -140 -121 -140c-57 0 -85 41 -92 79c-55 -61 -100 -81 -168 -81c-39 0 -73 8 -100 25c-36 23 -58 73 -58 133c0 158 113 317 274 317c76 0 119 -43 135 -94l44 81h124zM312 285 c0 71 -5 148 -51 148c-52 0 -145 -166 -145 -345c0 -51 23 -71 45 -71c55 0 142 118 143 192c4 22 8 48 8 76'], + 0x3B2: [698,205,500,-79,480,'-50 -122l135 505c31 117 138 315 280 315c58 0 115 -25 115 -104c0 -75 -53 -157 -115 -184v-2c31 -6 84 -45 84 -122c0 -129 -101 -299 -274 -299c-33 0 -57 10 -75 22l-36 -138c-6 -24 -17 -61 -25 -76h-118c8 15 23 59 29 83zM216 454l-101 -388c0 -28 15 -44 40 -44 c100 0 169 190 169 296c0 41 -9 69 -32 69c-17 0 -17 -6 -28 -6c-20 0 -27 11 -27 21c0 17 16 31 38 31c12 0 25 -4 39 -4c43 0 62 125 62 175c0 54 -14 65 -31 65c-48 0 -103 -113 -129 -215'], + 0x3B3: [462,204,438,3,461,'461 449l-263 -411c0 -77 -18 -242 -112 -242c-44 0 -52 41 -52 63c0 60 63 141 118 229c10 73 12 86 12 141c0 68 -17 136 -66 136c-18 0 -52 -4 -68 -68h-27c16 88 64 165 125 165c71 0 78 -65 78 -135c0 -33 -2 -102 -5 -135l136 257h124'], + 0x3B4: [698,13,496,-3,456,'236 429v2c-61 27 -106 55 -106 121c0 91 122 146 192 146c48 0 134 -17 134 -79c0 -24 -7 -44 -48 -44c-64 0 -43 79 -111 79c-26 0 -72 -8 -72 -60c0 -48 40 -80 99 -114s117 -82 117 -167c0 -67 -26 -156 -79 -224c-46 -59 -112 -102 -201 -102 c-110 0 -164 70 -164 149c0 48 6 102 31 143c46 76 113 133 208 150zM322 342c0 51 -29 59 -52 59c-92 -10 -154 -165 -154 -279c0 -67 9 -106 47 -106s69 35 102 106c25 54 57 162 57 220'], + 0x3B5: [462,13,454,-5,408,'83 234v1c-32 18 -44 43 -44 71c0 85 120 156 251 156c60 0 118 -34 118 -90c0 -40 -25 -71 -62 -71c-34 0 -58 23 -58 53c0 29 21 36 21 58c0 10 -18 17 -30 17c-44 0 -104 -54 -104 -120c0 -33 10 -52 43 -52c11 0 22 9 48 9c17 0 35 -5 35 -23c0 -23 -18 -34 -53 -34 c-10 0 -18 6 -33 6c-56 0 -92 -50 -92 -95c0 -36 24 -69 73 -69c44 0 95 16 143 83l28 -18c-37 -54 -104 -129 -207 -129c-123 0 -165 60 -165 120c0 64 38 105 88 127'], + 0x3B6: [698,205,415,-5,473,'283 698l6 -26c-61 -20 -81 -65 -81 -86c0 -39 27 -46 39 -49c57 37 109 77 163 77c35 0 63 -17 63 -49c0 -60 -59 -93 -201 -93c-91 -64 -168 -159 -168 -293c0 -57 36 -86 106 -86c97 0 147 -34 147 -109c0 -80 -106 -189 -196 -189c-53 0 -76 28 -76 59 c0 21 12 54 56 54c47 0 38 -53 69 -53c40 0 73 49 73 96c0 33 -10 47 -53 47c-23 0 -65 -11 -95 -11c-88 0 -140 65 -140 151c1 131 66 228 202 352c-63 11 -87 47 -87 87c0 60 68 116 173 121'], + 0x3B7: [462,205,488,-7,474,'178 263h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -26 -121l-68 -258c-13 -50 -30 -140 -30 -173c0 -13 0 -26 5 -38h-112c-13 21 -13 32 -13 50c0 39 42 209 108 448c6 23 11 58 11 76c0 17 -7 21 -20 21c-18 0 -49 -27 -69 -54 c-62 -81 -99 -162 -145 -336h-121l87 309c6 23 12 40 12 55c0 17 -6 21 -17 21c-20 0 -43 -26 -63 -49l-20 18c42 62 101 101 167 101c48 0 58 -25 58 -47c0 -15 -10 -55 -18 -78'], + 0x3B8: [698,13,501,-3,488,'488 508c0 -186 -75 -328 -146 -417c-57 -73 -122 -104 -191 -104c-90 0 -154 60 -154 203c0 157 71 308 141 395c59 73 132 113 202 113c97 0 148 -73 148 -190zM158 368h178c20 74 33 158 33 222c0 46 -10 79 -36 79c-22 0 -49 -28 -71 -59c-37 -52 -76 -147 -104 -242 zM325 326h-179c-19 -74 -30 -154 -30 -221c0 -51 14 -89 40 -89c27 0 57 36 83 86c29 57 61 141 86 224'], + 0x3B9: [462,9,278,2,238,'216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l55 203c6 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28l-91 -334c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61'], + 0x3BA: [462,12,500,-23,504,'163 244h1c144 177 208 218 269 218c52 0 71 -38 71 -72c0 -29 -18 -62 -59 -62c-53 0 -55 47 -79 47c-10 0 -45 -10 -126 -102l118 -196c24 -40 35 -50 94 -50v-27c-29 -9 -72 -12 -95 -12c-91 0 -118 66 -138 98l-68 111l-52 -197h-122l92 334c6 23 9 36 9 44 c0 19 -16 29 -46 29h-14v27c78 6 150 16 204 28'], + 0x3BB: [698,18,484,-34,459,'432 150h27c-8 -110 -40 -168 -122 -168c-52 0 -69 54 -69 120c0 63 4 138 12 188l-190 -290h-124l314 444l-4 51c-6 80 -32 105 -65 105c-18 0 -47 -16 -62 -68h-27c20 88 41 166 112 166c62 0 76 -73 80 -158l17 -363c4 -84 20 -97 44 -97c14 0 48 1 57 70'], + 0x3BC: [449,205,523,-82,483,'460 133l23 -13c-49 -89 -95 -133 -155 -133c-44 0 -70 21 -70 64c0 8 2 33 12 80h-1c-76 -135 -107 -141 -177 -141l-33 -122c-6 -22 -18 -56 -24 -73h-117c8 15 19 46 27 75l155 579h121l-77 -289c-5 -20 -10 -40 -10 -60c0 -21 11 -37 27 -37c38 0 92 84 131 168 l58 218h119l-71 -266c-12 -46 -22 -91 -22 -103c0 -11 4 -23 15 -23c17 0 36 22 69 76'], + 0x3BD: [462,13,469,-23,441,'414 462l27 -5c-41 -287 -265 -430 -437 -470h-27l93 346c4 14 8 36 8 44c0 22 -21 30 -60 30v27c45 1 139 14 203 28l-92 -340h2c125 25 237 131 283 340'], + 0x3BE: [698,205,415,-5,426,'275 698l5 -27c-58 -21 -83 -47 -83 -76c0 -13 2 -23 15 -32c42 33 104 62 150 62c45 0 64 -16 64 -36c0 -56 -71 -95 -177 -95c-39 0 -64 -33 -64 -65c0 -16 6 -31 20 -42c37 21 91 36 141 36c42 0 63 -19 63 -42c0 -50 -61 -79 -138 -79c-20 0 -54 3 -72 6 c-61 -25 -95 -69 -95 -129c0 -57 36 -86 106 -86c97 0 147 -34 147 -109c0 -80 -106 -189 -196 -189c-53 0 -76 28 -76 59c0 21 12 54 56 54c47 0 38 -53 69 -53c40 0 73 49 73 96c0 33 -10 47 -53 47c-23 0 -65 -11 -95 -11c-88 0 -140 55 -140 141c0 88 43 161 132 216v2 c-20 10 -40 41 -40 68c0 39 21 70 55 93v2c-17 4 -45 25 -45 64c0 72 77 112 178 125'], + 0x3BF: [462,13,500,-3,441,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77zM322 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64 c26 0 50 15 71 49c49 80 86 220 86 307'], + 0x3C0: [449,15,558,-6,570,'570 449l-21 -100h-108c-17 -47 -53 -164 -53 -227c0 -25 10 -61 34 -61c16 0 42 13 65 71l23 -12c-22 -66 -69 -129 -157 -129c-56 0 -89 41 -89 83c0 73 51 189 89 275h-89c-17 -72 -63 -210 -110 -294c-24 -42 -55 -70 -99 -70s-61 17 -61 51c0 23 9 44 42 56 c31 11 49 29 68 62c37 65 70 138 86 195h-35c-36 0 -83 -24 -104 -55h-27c54 95 110 155 223 155h323'], + 0x3C1: [462,205,495,-81,447,'-52 -122l74 279c20 76 65 171 129 234c43 42 103 71 159 71c59 0 137 -15 137 -125c0 -92 -50 -213 -116 -277c-42 -41 -93 -73 -158 -73c-30 0 -59 10 -75 22l-34 -138c-6 -23 -19 -60 -27 -76h-118c9 16 22 56 29 83zM151 219l-37 -153c0 -28 13 -44 39 -44 c35 0 68 33 95 76c45 71 74 177 74 253c0 62 -16 82 -37 82s-47 -20 -68 -52c-26 -39 -50 -97 -66 -162'], + 0x3C2: [462,205,415,-5,447,'447 393c0 -40 -27 -69 -69 -69c-64 0 -77 49 -128 49c-104 0 -146 -77 -146 -184c0 -67 36 -96 106 -96c97 0 147 -34 147 -109c0 -80 -106 -189 -196 -189c-53 0 -76 28 -76 59c0 21 12 54 56 54c47 0 38 -53 69 -53c40 0 73 49 73 96c0 33 -10 47 -53 47 c-23 0 -65 -11 -95 -11c-88 0 -140 65 -140 151c0 79 38 153 92 208c73 74 175 116 257 116c54 0 103 -22 103 -69'], + 0x3C3: [449,13,499,-3,536,'536 449l-21 -100h-187c29 -67 113 -61 113 -146c0 -120 -131 -216 -280 -216c-101 0 -164 56 -164 148c0 139 121 314 320 314h219zM322 222c0 66 -24 111 -46 127c-82 0 -160 -135 -160 -268c0 -24 5 -65 49 -65c78 0 157 98 157 206'], + 0x3C4: [449,9,415,4,455,'455 449l-23 -100h-126c-51 -129 -62 -217 -62 -235c0 -28 9 -53 32 -53c16 0 42 14 67 73l24 -11c-17 -68 -81 -132 -151 -132c-68 0 -96 40 -96 88c0 42 5 82 91 270h-46c-43 0 -107 -28 -134 -88h-27c20 75 85 188 251 188h200'], + 0x3C5: [462,13,536,-7,477,'300 435v27c35 0 64 -4 88 -13c60 -22 89 -71 89 -138c0 -171 -130 -324 -275 -324c-112 0 -160 46 -160 128c0 25 5 54 13 86l24 91c6 22 14 49 15 66c0 16 -3 27 -17 27c-20 0 -45 -26 -64 -49l-20 18c34 52 98 101 168 101c40 0 57 -19 57 -48c0 -13 -6 -45 -12 -67 l-38 -144c-7 -27 -16 -91 -16 -111c0 -50 24 -69 52 -69c96 0 154 268 154 356c0 57 -24 63 -58 63'], + 0x3C6: [462,205,678,-3,619,'195 16l37 139c21 79 59 166 117 226c37 38 83 69 139 69c75 0 131 -38 131 -139c0 -89 -39 -190 -113 -259c-48 -45 -111 -65 -205 -65l-51 -192h-114l51 192c-120 0 -190 48 -190 148c0 151 96 327 306 327h40v-27c-62 0 -120 -9 -166 -82c-43 -69 -61 -163 -61 -231 c0 -87 40 -106 79 -106zM369 253l-60 -237c29 0 77 18 102 47c59 70 89 158 89 255c0 63 -8 103 -32 103c-49 0 -85 -114 -99 -168'], + 0x3C7: [462,205,404,-136,515,'515 449l-300 -372l10 -88c8 -72 32 -96 52 -96c24 0 53 10 64 70h27c-8 -111 -52 -168 -117 -168c-57 0 -70 81 -73 162l-3 90l-187 -236h-124l307 373l-6 78c-7 85 -29 102 -62 102c-21 0 -52 -17 -61 -68h-27c8 62 35 166 120 166c54 0 66 -53 72 -157l5 -85l179 229 h124'], + 0x3C8: [462,205,652,-5,715,'715 462v-27c-70 -6 -111 -84 -130 -155c-38 -141 -108 -293 -293 -293l-51 -192h-114l51 192c-97 0 -161 58 -161 147c0 92 42 157 42 217c0 40 -17 77 -64 84v27h57c102 0 120 -55 120 -116c0 -60 -36 -199 -36 -265c0 -43 18 -65 51 -65l116 433h114l-116 -433 c25 0 46 9 67 38c99 135 78 408 302 408h45'], + 0x3C9: [462,13,735,-3,676,'473 435v27c114 0 162 -34 186 -81c11 -21 17 -45 17 -72c0 -119 -84 -274 -212 -313c-19 -6 -41 -9 -62 -9c-49 0 -96 16 -112 62c-30 -42 -87 -62 -141 -62c-31 0 -62 6 -86 20c-41 23 -66 68 -66 120c0 117 43 202 103 260c50 47 112 75 220 75v-27 c-44 0 -76 -6 -101 -34c-65 -71 -103 -201 -103 -318c0 -35 13 -67 47 -67c49 0 86 49 108 109c0 12 -1 29 -1 49c0 81 37 197 106 197c24 0 37 -27 37 -65c0 -19 -4 -42 -10 -65c-11 -40 -47 -103 -54 -115c-2 -13 -3 -26 -3 -38c0 -42 15 -72 53 -72 c106 0 158 271 158 334c0 20 -2 37 -8 52c-9 23 -32 33 -76 33'], + 0x3D0: [696,12,500,42,479,'479 617c0 -123 -201 -131 -288 -130c-39 -57 -65 -121 -87 -186c52 49 103 87 177 87c95 0 151 -93 151 -180c0 -121 -102 -220 -222 -220c-131 0 -168 132 -168 240c0 132 61 342 175 422c31 22 96 46 134 46c53 0 128 -11 128 -79zM413 640c0 13 -1 32 -19 32 c-70 0 -151 -100 -184 -155c55 1 122 12 164 51c19 18 39 45 39 72zM363 268c0 35 -22 73 -61 73c-63 0 -182 -173 -182 -232c0 -34 19 -77 58 -77c58 0 185 180 185 236'], + 0x3D1: [698,13,582,8,589,'589 235l-5 -31c-39 2 -64 6 -97 12c-48 -121 -110 -229 -234 -229c-112 0 -160 46 -160 128c0 39 16 76 16 107c0 16 -3 27 -17 27c-20 0 -45 -26 -64 -49l-20 18c34 52 96 101 166 101c40 0 59 -19 59 -48c0 -13 -6 -49 -11 -67c-19 -73 -19 -99 -19 -119 c0 -49 23 -69 50 -69c51 0 96 109 128 228c-148 54 -204 152 -204 252c0 137 100 202 194 202c46 0 62 -8 94 -26c61 -34 80 -111 80 -190c0 -76 -20 -158 -44 -228c29 -8 51 -15 88 -19zM429 541c0 67 -15 119 -60 119c-48 0 -80 -64 -80 -149c0 -30 0 -145 105 -212 c13 55 35 159 35 242'], + 0x3D2: [685,0,611,21,696,'356 411h4c36 109 104 272 237 272c73 0 99 -47 99 -93c0 -37 -27 -73 -67 -73c-45 0 -66 26 -66 55c0 26 11 42 24 54c0 5 -4 9 -15 9c-38 0 -79 -46 -107 -93c-30 -52 -61 -143 -86 -235l-52 -191c-5 -17 -10 -36 -10 -49c0 -31 17 -42 79 -42v-25h-323v25 c66 6 87 16 104 78l56 209c0 84 -17 304 -126 304c-21 0 -38 -6 -68 -29l-18 18c40 61 95 80 150 80c144 0 185 -144 185 -274'], + 0x3D5: [699,205,678,-3,619,'494 699l-65 -237c121 0 190 -42 190 -151c0 -90 -46 -194 -117 -259c-49 -45 -106 -65 -200 -65l-51 -192h-115l51 192c-119 0 -190 47 -190 148c0 149 99 327 317 327l62 237h118zM421 433l-113 -417c30 0 75 18 99 47c59 70 93 160 93 275c0 71 -30 95 -79 95zM195 16 l112 417c-56 0 -89 -18 -128 -80c-38 -60 -63 -147 -63 -230c0 -90 39 -107 79 -107'], + 0x3D6: [449,13,828,-2,844,'844 449l-21 -100h-60c5 -15 7 -41 7 -58c0 -143 -119 -304 -270 -304c-55 0 -88 24 -105 62c-36 -40 -82 -62 -132 -62c-36 0 -66 4 -90 18c-45 27 -62 76 -62 130c0 82 38 175 75 213h-22c-59 0 -108 -18 -139 -81h-27c23 81 84 182 248 182h598zM651 349h-364 c-32 -62 -57 -166 -57 -245c0 -51 17 -88 43 -88c43 0 80 46 102 106c-1 5 -3 30 -3 36c0 65 21 144 92 144c30 0 45 -24 45 -50c0 -53 -39 -111 -57 -138c-1 -10 -2 -17 -2 -26c0 -42 15 -72 53 -72c93 0 148 272 148 333'], + 0x3D8: [685,200,722,27,691,'166 -93l23 84c-99 24 -162 104 -162 230c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241c0 -128 -73 -271 -180 -366c-52 -46 -111 -76 -176 -89l-10 -37c-14 -51 -17 -71 -17 -87c0 -28 14 -37 71 -40v-25h-296v25c49 6 64 11 83 82zM547 528 c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120c-60 -101 -113 -269 -113 -388c0 -75 39 -127 102 -127c64 0 108 41 157 114c67 99 117 285 117 398'], + 0x3D9: [462,205,500,-3,441,'280 462h4c97 0 157 -59 157 -151c0 -94 -44 -188 -105 -249c-36 -36 -78 -60 -124 -69l-54 -198h-115l56 201c-62 17 -102 64 -102 139c0 100 40 191 100 250c51 50 115 77 183 77zM322 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322 c0 -44 19 -64 49 -64c26 0 50 15 71 49c49 80 86 220 86 307'], + 0x3DA: [685,205,669,32,665,'98 -120l26 24c27 -44 71 -63 114 -63c75 0 151 56 151 131c0 50 -54 78 -157 94c-108 17 -200 67 -200 189c0 254 229 430 472 430c82 0 161 -27 161 -86c0 -49 -26 -75 -64 -75c-90 0 -63 105 -178 105c-113 0 -271 -134 -271 -283c0 -184 239 -141 341 -226 c32 -27 45 -62 45 -98c0 -62 -38 -128 -87 -164c-55 -41 -126 -63 -198 -63c-58 0 -121 23 -155 85'], + 0x3DB: [492,205,475,-5,509,'486 492h23c-23 -182 -120 -228 -247 -233c-64 -3 -128 5 -167 -25c-26 -20 -38 -45 -38 -69c0 -45 25 -77 70 -77c27 0 81 18 114 18c75 0 116 -56 116 -122c0 -80 -106 -189 -196 -189c-53 0 -76 28 -76 59c0 21 12 54 56 54c47 0 38 -53 69 -53c40 0 73 49 73 96 c0 33 -10 47 -53 47c-23 0 -65 -11 -95 -11c-88 0 -140 45 -140 131c0 139 150 239 288 253c146 15 181 62 203 121'], + 0x3DC: [669,0,667,-13,670,'670 669l-43 -190l-27 5c0 51 -4 80 -20 100c-32 40 -83 53 -167 53c-41 0 -53 -10 -63 -48l-60 -219h220l-13 -44h-219l-53 -194c-8 -30 -15 -50 -15 -63c0 -31 15 -40 71 -44v-25h-294v25c58 6 67 24 82 79l121 442c6 23 10 46 10 61c0 20 -11 29 -42 33l-31 4v25h543'], + 0x3DD: [450,190,525,32,507,'507 450l-20 -84h-203l-53 -231h153l-12 -50h-153l-63 -275h-124l148 640h327'], + 0x3DE: [793,18,757,-7,758,'758 570l-322 -425c-17 -23 -28 -40 -28 -62c0 -19 15 -29 33 -29c24 0 53 12 77 30l10 -20c-70 -56 -122 -82 -176 -82c-70 0 -95 36 -95 75c0 52 35 88 105 151l178 160v6l-538 -184l-9 15l321 425c13 17 28 42 28 64c0 19 -13 29 -31 29c-24 0 -55 -14 -79 -32l-10 20 c70 56 122 82 176 82c70 0 96 -35 96 -74c0 -43 -20 -75 -106 -152l-178 -159v-6l538 184'], + 0x3DF: [698,0,485,16,466,'466 399l-301 -399h-140l279 299h-288l301 399h140l-289 -299h298'], + 0x3E0: [685,205,734,27,710,'52 503l-25 28c127 115 229 154 381 154c217 0 302 -146 302 -317c0 -276 -227 -546 -503 -573v40c190 52 351 282 351 499c0 29 -4 56 -11 81c-114 -44 -211 -246 -236 -415h-161c30 186 197 395 388 456c-28 91 -111 163 -215 163c-10 0 -20 0 -29 -2l-64 -274h-46 l60 262c-70 -11 -132 -47 -192 -102'], + 0x3E1: [639,205,530,47,467,'47 605l24 34c241 -22 396 -242 396 -441c0 -152 -46 -296 -136 -403l-36 4c13 29 23 58 30 86c14 53 20 104 20 153c0 45 -5 89 -13 131l-181 -91l-12 38l185 92c-12 42 -24 81 -38 122l-184 -92l-12 38l180 90c-44 101 -109 190 -223 239'], + 0x3F0: [462,15,569,-50,592,'592 449l-154 -146c-21 -43 -46 -129 -46 -170c0 -26 14 -36 36 -36c40 0 57 -26 57 -51s-16 -61 -69 -61c-59 0 -81 51 -81 105c0 46 17 113 39 153l-260 -243h-164l157 147c21 43 46 126 46 167c0 26 -14 36 -36 36c-40 0 -57 26 -57 51s16 61 69 61 c59 0 81 -51 81 -105c0 -46 -17 -110 -38 -150l256 242h164'], + 0x3F1: [462,206,517,-12,458,'303 -206h-25c1 4 2 7 2 10c0 42 -90 -13 -205 69c-62 45 -87 116 -87 192c0 121 62 256 126 320c51 50 116 77 184 77c97 0 160 -59 160 -151c0 -94 -44 -188 -105 -249c-49 -49 -107 -75 -175 -75c-66 0 -107 34 -127 90h-2c0 -109 57 -151 133 -151c27 0 58 3 81 3 c45 0 77 -16 77 -54c0 -36 -8 -47 -37 -81zM339 372c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-60 -67 -99 -220 -99 -322c0 -44 19 -64 49 -64c26 0 50 15 71 49c49 80 86 220 86 307'], + 0x3F4: [685,18,722,27,691,'691 444c0 -128 -73 -271 -180 -366c-70 -62 -155 -96 -248 -96c-141 0 -236 84 -236 239c0 135 75 282 186 372c72 58 152 92 236 92c137 0 242 -95 242 -241zM209 359h314c15 61 24 121 24 169c0 83 -41 123 -101 123c-63 0 -112 -36 -162 -120 c-28 -47 -55 -108 -75 -172zM511 315h-315c-16 -60 -25 -121 -25 -172c0 -75 39 -127 102 -127c64 0 108 41 157 114c32 47 60 115 81 185'], + 0x3F5: [462,13,466,-3,429,'429 462l-26 -152h-27c0 52 -6 115 -80 115c-73 0 -132 -94 -152 -168h177l-10 -42h-177c-7 -21 -9 -43 -9 -66c0 -68 28 -98 73 -98c44 0 85 16 133 83l29 -18c-38 -53 -103 -129 -199 -129c-119 0 -164 68 -164 157c0 153 135 313 283 318c64 2 73 -31 93 -31 c10 0 28 17 33 31h23'], + 0x3F6: [460,15,486,-5,427,'93 313l-29 18c38 53 103 129 199 129c119 0 164 -68 164 -157c0 -153 -135 -313 -283 -318c-64 -2 -73 31 -93 31c-10 0 -28 -17 -33 -31h-23l26 152h27c0 -52 6 -115 80 -115c73 0 132 94 152 168h-177l10 42h177c7 21 9 43 9 66c0 68 -28 98 -73 98 c-44 0 -85 -16 -133 -83'], + 0x2013: [269,-178,500,-40,477,'477 269l-17 -91h-500l17 91h500'], + 0x2014: [269,-178,1000,-40,977,'977 269l-17 -91h-1000l17 91h1000'], + 0x2018: [685,-369,333,128,332,'319 685l13 -25c-79 -42 -118 -80 -118 -116c0 -14 6 -24 30 -37c32 -18 40 -38 40 -65c0 -48 -32 -73 -73 -73c-53 0 -83 40 -83 94c0 89 72 172 191 222'], + 0x2019: [685,-369,333,98,302,'111 369l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x201C: [685,-369,500,53,513,'500 685l13 -25c-79 -42 -118 -80 -118 -116c0 -14 6 -24 30 -37c32 -18 40 -38 40 -65c0 -48 -32 -73 -73 -73c-53 0 -83 40 -83 94c0 89 72 172 191 222zM244 685l13 -25c-79 -42 -118 -80 -118 -116c0 -14 6 -24 30 -37c32 -18 40 -38 40 -65c0 -48 -32 -73 -73 -73 c-53 0 -83 40 -83 94c0 89 72 172 191 222'], + 0x201D: [685,-369,500,53,513,'322 369l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222zM66 369l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94 c0 -89 -72 -172 -191 -222'], + 0x2020: [685,145,500,91,494,'352 560l-15 -19c-14 -18 -21 -37 -29 -74c31 1 44 4 82 23c25 12 35 16 50 16c33 0 54 -20 54 -52c0 -31 -24 -52 -58 -52c-12 0 -23 4 -46 17c-31 18 -51 24 -76 24h-11c-4 -23 -6 -38 -6 -56c0 -37 7 -70 26 -118c-39 -49 -75 -141 -109 -281 c-15 -63 -19 -76 -35 -133h-23l28 173c7 43 13 123 13 172c0 24 -1 44 -6 78c44 39 78 104 87 165c-35 -1 -40 -2 -75 -20c-28 -15 -41 -19 -61 -19c-31 0 -51 20 -51 51s20 51 52 51c16 0 29 -4 56 -17c40 -19 51 -22 83 -22c6 21 9 37 9 54c0 11 -2 22 -9 45 c-7 26 -10 42 -10 58c0 38 21 61 56 61c32 0 56 -23 56 -54c0 -22 -9 -42 -32 -71'], + 0x2021: [685,139,500,10,493,'268 471h13c5 21 6 33 6 55c0 20 -2 33 -8 58c-5 21 -6 31 -6 42c0 38 19 59 54 59c31 0 54 -22 54 -51c0 -17 -7 -33 -28 -62c-30 -42 -35 -53 -50 -102c40 4 50 6 93 23c23 9 36 13 47 13c28 0 50 -20 50 -47c0 -29 -23 -52 -53 -52c-12 0 -26 4 -51 16 c-42 19 -51 22 -89 25c-6 -23 -7 -35 -7 -68c0 -55 4 -72 24 -107c-50 -46 -67 -80 -91 -176c32 0 50 5 88 24c23 11 29 15 42 15h5c34 -1 52 -20 52 -49c0 -30 -21 -49 -53 -49c-13 0 -25 5 -49 16c-33 16 -53 21 -77 21h-12c-5 -20 -6 -32 -6 -55c0 -21 1 -32 8 -58 c6 -21 6 -31 6 -42c0 -38 -20 -59 -54 -59c-31 0 -54 21 -54 51c0 18 7 33 28 62c29 42 35 53 50 102c-40 -4 -52 -5 -93 -23c-23 -10 -36 -13 -47 -13c-28 0 -50 20 -50 47c0 29 23 52 52 52c13 0 27 -5 52 -16c42 -20 51 -22 89 -25c6 24 7 36 7 70c0 52 -4 70 -24 105 c50 46 67 80 91 176c-33 -1 -50 -5 -88 -24c-23 -11 -29 -15 -42 -15h-5c-33 1 -52 19 -52 49c0 29 21 49 52 49c14 0 26 -5 50 -16c33 -16 53 -21 76 -21'], + 0x203E: [838,-766,500,0,500,'500 766h-500v72h500v-72'], + 0x2044: [688,12,183,-168,345,'345 688l-439 -700h-74l441 700h72'], + 0x2113: [699,14,500,43,632,'43 429l26 38c40 -27 107 -51 128 -53c127 186 236 285 325 285c58 0 110 -25 110 -85c0 -77 -51 -147 -128 -194c-58 -36 -132 -59 -208 -65c-50 -84 -129 -215 -129 -286c0 -27 13 -33 25 -33c32 0 100 35 194 162l36 -27c-94 -132 -167 -185 -250 -185 c-68 0 -112 40 -112 121c0 70 49 172 103 255c-35 8 -96 43 -120 67zM333 421l1 -1c99 22 208 92 208 201c0 16 -5 28 -25 28c-57 0 -145 -155 -184 -228'], + 0x2202: [686,10,559,44,559,'234 627l2 23c30 25 79 36 119 36c130 0 204 -80 204 -256c0 -171 -103 -440 -328 -440c-120 0 -187 66 -187 176c0 159 139 293 298 293c50 0 115 -24 133 -70h4v8c1 9 2 18 2 27c0 114 -20 221 -154 221c-26 0 -58 -8 -93 -18zM423 293c0 91 -43 126 -89 126 c-88 0 -174 -152 -174 -265c0 -97 28 -124 88 -124c92 0 175 135 175 263'], + 0x24C8: [690,19,695,0,695,'490 524l-22 -121h-15c-3 24 -6 43 -15 58c-13 22 -36 31 -65 31s-47 -17 -47 -47c0 -29 17 -44 57 -70c62 -42 93 -72 93 -127c0 -75 -72 -114 -137 -114c-24 0 -48 4 -75 13c-13 5 -21 6 -26 6c-10 0 -14 -3 -21 -19h-20l18 133h17c7 -59 42 -101 97 -101 c34 0 61 17 61 58c0 30 -20 49 -67 80c-48 31 -79 63 -79 112c0 68 56 108 119 108c31 0 47 -5 60 -10c8 -3 15 -6 23 -6c12 0 19 7 24 16h20zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/Italic/Main.js new file mode 100644 index 0000000..55b0c1f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/Italic/Main.js @@ -0,0 +1,225 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Main/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Main-italic'] = { + directory: 'Main/Italic', + family: 'STIXMathJax_Main', + style: 'italic', + id: 'STIXWEBMAINI', + 0x20: [0,0,250,0,0,''], + 0x21: [667,11,333,39,304,'137 177l-17 5c41 190 49 227 71 369c13 85 31 116 69 116c28 0 44 -17 44 -51c0 -30 -8 -57 -39 -123c-46 -98 -68 -152 -128 -316zM145 41c0 -28 -26 -52 -56 -52s-50 23 -50 54c0 28 26 52 54 52c31 0 52 -25 52 -54'], + 0x22: [666,-421,420,144,432,'346 421h-23c8 100 17 179 22 203c6 27 29 42 54 42c17 0 33 -12 33 -28s-27 -89 -86 -217zM167 421h-23c8 100 17 179 22 203c6 27 30 42 55 42c17 0 32 -12 32 -28s-27 -90 -86 -217'], + 0x23: [676,0,501,2,540,'540 464l-11 -54h-104l-54 -143h94l-11 -54h-104l-79 -213h-62l80 213h-130l-79 -213h-62l80 213h-96l11 54h106l54 143h-97l11 54h106l80 212h61l-80 -212h130l80 212h61l-80 -212h95zM364 410h-130l-54 -143h130'], + 0x24: [731,89,500,32,497,'497 611l-28 -114l-15 2c-2 74 -22 111 -85 134l-56 -237c117 -86 142 -121 142 -206c0 -59 -24 -110 -67 -143c-55 -42 -87 -47 -173 -47l-21 -89h-35l22 91c-58 11 -113 34 -149 66l26 123l16 3c5 -105 37 -138 115 -162l69 297c-98 63 -135 103 -135 179 c0 47 16 78 42 106c42 45 85 54 158 54h18l17 63h34l-16 -68c47 -11 89 -29 121 -52zM336 641h-16c-73 0 -119 -53 -119 -109c0 -46 19 -77 80 -114zM289 306l-68 -281c106 9 159 57 159 144c0 58 -17 76 -85 132'], + 0x25: [706,19,755,80,705,'705 213c0 -121 -78 -232 -164 -232c-68 0 -121 60 -121 138c0 107 93 211 189 211c61 0 96 -43 96 -117zM682 215c0 52 -25 87 -63 87c-16 0 -37 -9 -49 -23c-44 -47 -78 -135 -78 -203c0 -39 24 -68 56 -68c69 0 134 101 134 207zM640 706l-430 -724h-47l394 658 c-37 -43 -68 -57 -121 -57c-26 0 -44 3 -76 14c3 -17 4 -28 4 -44c0 -70 -32 -145 -80 -190c-27 -26 -53 -37 -86 -37c-67 0 -118 59 -118 137c0 113 91 213 193 213c21 0 33 -6 60 -28c35 -29 59 -39 96 -39c62 0 75 8 167 97h44zM340 569c0 29 -4 36 -25 46 c-14 7 -27 16 -44 34c-41 -20 -52 -30 -72 -63c-31 -49 -48 -108 -48 -163c0 -42 23 -70 57 -70c71 0 132 101 132 216'], + 0x26: [666,18,778,76,723,'712 63l11 -11c-32 -53 -74 -70 -132 -70c-44 0 -94 26 -134 79c-79 -62 -135 -79 -199 -79c-111 0 -182 56 -182 153c0 55 26 111 75 151c36 29 79 48 180 92c-7 42 -7 83 -7 94c0 117 61 194 159 194c61 0 103 -41 103 -94c0 -35 -19 -71 -56 -103 c-27 -24 -55 -41 -116 -72c19 -101 56 -188 87 -237c62 71 79 104 79 139c0 22 -11 29 -51 32v19h188v-17c-50 -5 -60 -15 -111 -90c-28 -42 -56 -78 -86 -118c40 -67 75 -94 122 -94c23 0 46 9 70 32zM517 572c0 40 -14 62 -39 62c-40 0 -73 -41 -73 -130 c0 -26 1 -46 5 -76c85 53 107 94 107 144zM436 93c-34 43 -67 125 -103 252c-97 -38 -163 -107 -163 -185c0 -74 49 -126 128 -126c50 0 90 22 138 59'], + 0x27: [666,-421,214,132,241,'155 421h-23c8 100 17 182 23 206c5 22 22 39 51 39c22 0 35 -15 35 -31s-27 -87 -86 -214'], + 0x28: [669,181,333,42,315,'302 669l13 -15c-152 -144 -204 -365 -204 -569c0 -97 11 -158 48 -260l-18 -6c-64 103 -99 233 -99 361c0 103 22 205 74 290c39 63 94 115 186 199'], + 0x29: [669,180,333,16,289,'171 664l19 5c47 -84 63 -123 80 -197c12 -56 19 -114 19 -168c0 -101 -28 -196 -78 -282c-39 -67 -91 -123 -182 -202l-13 15c84 89 121 156 155 262c31 96 49 211 49 305c0 100 -15 181 -49 262'], + 0x2A: [666,-255,500,128,492,'328 459l37 -19c12 -6 31 -16 63 -20c45 -6 64 -21 64 -44c0 -25 -16 -37 -38 -37c-15 0 -27 9 -46 32c-26 33 -40 40 -71 62l-18 13c1 -53 5 -75 20 -117c6 -18 8 -25 8 -34c0 -24 -9 -40 -37 -40c-26 0 -37 16 -37 38c0 9 3 20 10 41c13 36 18 61 18 112 c-3 -3 -7 -5 -16 -10c-31 -19 -43 -28 -71 -63c-17 -21 -34 -33 -51 -33c-19 0 -35 11 -35 32c0 24 19 41 62 48c47 8 61 14 104 40l-12 7c-17 10 -51 27 -93 32c-41 5 -61 20 -61 44c0 20 13 39 33 39c16 0 29 -8 49 -31c33 -37 52 -53 91 -76c0 43 -4 61 -18 107 c-6 20 -8 33 -8 42c0 25 10 42 35 42c23 0 36 -18 36 -41c0 -11 -4 -24 -11 -48c-10 -32 -16 -57 -16 -104c44 29 46 31 100 88c15 17 25 21 38 21c23 0 35 -17 35 -39s-14 -38 -57 -43c-47 -6 -64 -14 -107 -41'], + 0x2B: [506,0,675,86,590,'590 220h-219v-220h-66v220h-219v66h219v220h66v-220h219v-66'], + 0x2C: [101,129,250,-5,135,'5 -129l-10 18c53 34 76 63 76 90c0 10 -4 17 -20 29c-20 15 -25 30 -25 49c0 24 22 44 51 44c36 0 58 -34 58 -74c0 -56 -46 -112 -130 -156'], + 0x2D: [255,-192,333,49,282,'282 255l-13 -63h-220l14 63h219'], + 0x2E: [100,11,250,27,138,'138 43c0 -30 -26 -54 -58 -54c-28 0 -53 25 -53 54c0 32 25 57 55 57s56 -26 56 -57'], + 0x2F: [666,18,278,-65,386,'386 666l-378 -684h-73l378 684h73'], + 0x30: [676,7,500,32,497,'497 425c0 -147 -78 -316 -181 -389c-41 -29 -84 -43 -126 -43c-102 0 -158 84 -158 223c0 235 149 460 306 460c102 0 159 -89 159 -251zM418 518c0 80 -24 130 -84 130c-45 0 -84 -30 -120 -95c-52 -94 -103 -290 -103 -397c0 -85 33 -135 81 -135c46 0 92 34 129 100 c58 102 97 267 97 397'], + 0x31: [676,0,500,50,409,'401 676h3c3 0 5 -3 5 -7c0 -5 -2 -15 -6 -29l-143 -519c-7 -25 -18 -64 -18 -74c0 -23 22 -32 66 -32h21v-15h-279v15c79 6 101 17 112 55l136 488c5 19 8 29 8 36c0 19 -13 31 -35 31h-3c-18 0 -40 -1 -59 -2v15l23 5c88 19 92 17 169 33'], + 0x32: [676,0,500,12,452,'101 507l-21 7c24 59 47 93 82 120c39 30 82 42 128 42c96 0 162 -74 162 -169c0 -67 -31 -113 -149 -234l-188 -192v-5h181c59 0 79 15 103 65l17 -7l-50 -134h-354v17l210 224c66 70 111 133 135 187c6 13 9 32 9 54c0 69 -40 121 -119 121c-60 0 -111 -29 -146 -96'], + 0x33: [676,7,500,16,465,'178 567l-16 5c33 72 97 104 171 104c78 0 132 -50 132 -122c0 -74 -41 -113 -155 -153v-3c68 -26 95 -71 95 -144c0 -79 -36 -149 -93 -199c-49 -43 -113 -62 -185 -62s-111 24 -111 57c0 25 17 43 43 43c19 0 37 -6 64 -30c26 -23 52 -32 71 -32c33 0 68 18 93 46 c26 31 38 79 38 126c0 108 -64 158 -160 158h-24v16c90 16 132 30 175 60c42 29 62 64 62 106c0 55 -35 91 -88 91c-43 0 -76 -20 -112 -67'], + 0x34: [676,0,500,1,479,'479 676l-121 -435h96l-14 -63h-101l-46 -178h-79l49 178h-262l20 67l417 431h41zM373 563h-4l-304 -318v-4h212'], + 0x35: [666,7,500,15,491,'491 666l-23 -71h-230l-39 -88c132 -25 220 -88 220 -223c0 -165 -133 -291 -298 -291c-59 0 -106 17 -106 57c0 23 17 42 40 42c16 0 32 -8 56 -28c26 -21 36 -29 64 -29c90 0 175 99 175 211c0 53 -21 99 -53 125c-36 29 -72 47 -166 61v16l104 218h256'], + 0x36: [686,7,500,30,521,'521 686v-16c-120 -16 -252 -115 -322 -242l4 -2c26 16 64 21 92 21c92 0 167 -74 167 -176c0 -151 -114 -278 -254 -278c-120 0 -178 84 -178 215c0 135 68 269 184 360c94 74 165 101 307 118zM373 289c0 72 -47 122 -117 122c-39 0 -74 -19 -98 -56 c-30 -46 -52 -132 -52 -205c0 -82 42 -131 98 -131c46 0 79 22 111 69c35 52 58 135 58 201'], + 0x37: [666,8,500,75,537,'537 656l-388 -664h-70l367 598l-2 3h-215c-66 0 -91 -16 -139 -73l-15 10l82 136h373'], + 0x38: [676,7,500,30,493,'225 360v1c-66 73 -87 109 -87 163c0 96 75 152 182 152s173 -55 173 -136c0 -78 -44 -122 -164 -158v-1c86 -79 115 -127 115 -200c0 -111 -91 -188 -215 -188c-102 0 -199 49 -199 168c0 94 75 164 195 199zM425 530c0 71 -43 123 -107 123s-102 -43 -102 -108 c0 -42 17 -73 95 -146c87 41 114 76 114 131zM369 155c0 57 -12 75 -122 189c-90 -34 -149 -108 -149 -195c0 -82 71 -134 139 -134c79 0 132 71 132 140'], + 0x39: [676,17,500,23,492,'352 272l-4 2c-53 -33 -88 -45 -129 -45c-88 0 -150 74 -150 179c0 80 37 160 93 211c42 38 95 57 149 57c117 0 181 -86 181 -218c0 -139 -69 -271 -192 -366c-80 -62 -145 -87 -277 -109v19c79 17 127 42 201 103c64 53 112 122 128 167zM417 518c0 83 -37 132 -99 132 c-47 0 -80 -24 -108 -61c-34 -45 -53 -112 -53 -175c0 -89 36 -139 100 -139c40 0 83 18 108 46c28 30 52 123 52 197'], + 0x3A: [441,11,333,50,261,'261 384c0 -30 -25 -54 -57 -54c-30 0 -54 24 -54 54c0 32 24 57 55 57s56 -25 56 -57zM161 43c0 -30 -25 -54 -57 -54c-29 0 -54 25 -54 54c0 31 25 57 56 57c30 0 55 -26 55 -57'], + 0x3B: [441,129,333,26,261,'261 384c0 -30 -25 -54 -57 -54c-30 0 -54 24 -54 54c0 32 24 57 55 57s56 -25 56 -57zM36 -129l-10 18c53 34 76 63 76 90c0 10 -4 17 -20 29c-20 15 -25 30 -25 49c0 24 22 44 51 44c36 0 58 -34 58 -74c0 -56 -46 -112 -130 -156'], + 0x3C: [516,10,675,84,592,'592 -10l-508 230v66l508 230v-72l-420 -191l420 -191v-72'], + 0x3D: [386,-120,675,86,590,'590 320h-504v66h504v-66zM590 120h-504v66h504v-66'], + 0x3E: [516,10,675,84,592,'592 220l-508 -230v72l420 191l-420 191v72l508 -230v-66'], + 0x3F: [664,12,500,132,472,'216 174l-18 3c18 100 28 131 116 219c65 65 84 112 84 164c0 44 -29 82 -80 82c-44 0 -70 -18 -70 -48c0 -8 2 -14 8 -27c5 -11 6 -17 6 -25c0 -16 -18 -36 -42 -36s-36 19 -36 49c0 64 57 109 135 109c98 0 153 -41 153 -124c0 -61 -15 -97 -131 -184 c-74 -55 -104 -97 -118 -154zM237 38c0 -28 -25 -50 -53 -50c-30 0 -52 20 -52 50c0 33 23 55 52 55s53 -26 53 -55'], + 0x40: [666,18,920,118,806,'686 68l12 -29c-94 -44 -153 -57 -224 -57c-200 0 -356 147 -356 337c0 193 160 347 363 347c200 0 325 -141 325 -293c0 -128 -85 -235 -184 -235c-47 0 -79 26 -89 72c-34 -46 -79 -71 -121 -71c-50 0 -91 42 -91 105c0 104 77 257 198 257c31 0 55 -15 68 -52l10 37 h69l-61 -236c-6 -23 -7 -34 -7 -39c0 -27 16 -40 40 -40c61 0 128 93 128 201c0 142 -131 263 -287 263c-163 0 -278 -129 -278 -317c0 -174 113 -297 285 -297c66 0 123 12 200 47zM570 394c0 37 -11 62 -40 62c-25 0 -64 -20 -91 -55c-29 -38 -47 -85 -47 -136 c0 -52 22 -84 59 -84c57 0 119 110 119 213'], + 0x41: [668,0,611,-51,564,'564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194'], + 0x42: [653,0,611,-8,588,'130 653h250c139 0 208 -51 208 -150c0 -54 -28 -89 -64 -113c-31 -21 -68 -30 -111 -39v-1c86 -26 126 -79 126 -150c0 -134 -113 -200 -275 -200h-272v16c55 8 66 18 83 80l121 436c7 25 11 49 11 64c0 29 -14 36 -77 41v16zM248 363h38c131 0 201 53 201 152 c0 74 -36 108 -117 108c-39 0 -49 0 -59 -36zM238 331l-32 -119c-20 -76 -35 -127 -35 -140c0 -28 25 -42 67 -42c115 0 193 59 193 170c0 62 -29 106 -67 119c-20 7 -63 12 -126 12'], + 0x43: [666,18,667,66,689,'689 664l-37 -200l-18 3c-12 107 -61 163 -149 163c-74 0 -144 -38 -199 -97c-72 -77 -108 -191 -108 -301c0 -140 64 -205 175 -205c82 0 142 29 229 119l18 -15c-90 -106 -170 -149 -273 -149c-153 0 -261 96 -261 261c0 141 77 272 187 350c64 46 140 73 219 73 c33 0 75 -2 117 -17c20 -7 32 -7 41 -7c20 0 30 6 38 22h21'], + 0x44: [653,0,722,-8,700,'131 653h277c175 0 292 -94 292 -269c0 -124 -62 -225 -160 -301c-73 -57 -174 -83 -291 -83h-257v16c56 10 66 17 82 76l122 445c7 25 11 44 11 59c0 27 -15 39 -76 41v16zM310 584l-118 -422c-17 -62 -22 -82 -22 -95c0 -26 22 -37 68 -37c101 0 179 30 241 90 c71 69 110 187 110 288c0 80 -29 143 -78 180c-31 23 -73 35 -131 35c-38 0 -60 -4 -70 -39'], + 0x45: [653,0,611,-1,634,'634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34 c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497'], + 0x46: [653,0,611,8,645,'645 653l-32 -154l-21 2c3 22 3 27 3 33c0 73 -23 86 -199 86c-46 0 -61 -6 -68 -32l-64 -227c168 2 171 4 216 94l18 -5l-76 -235l-17 5c6 31 8 45 8 61c0 40 -28 44 -75 44c-22 0 -46 1 -83 3l-59 -213c-7 -25 -14 -45 -14 -60c0 -24 18 -35 77 -39v-16h-251v16 c58 4 68 26 83 78l123 442c7 25 10 45 10 61c0 28 -10 34 -76 40v16h497'], + 0x47: [666,18,722,52,722,'722 319v-16c-65 -4 -82 -15 -97 -72l-49 -187c-77 -43 -149 -62 -237 -62c-87 0 -162 25 -213 76c-47 48 -74 125 -74 193c0 141 75 268 183 343c65 45 141 72 220 72c41 0 90 -7 134 -24c23 -9 33 -10 44 -10c26 0 43 10 60 34l15 -5l-49 -197l-18 3 c-2 43 -15 79 -37 106c-31 38 -79 59 -141 59c-79 0 -147 -38 -195 -99c-65 -83 -106 -194 -106 -305c0 -131 73 -209 202 -209c45 0 83 12 105 34c12 12 17 24 39 101c20 67 26 91 26 113c0 18 -14 30 -47 33l-32 3v16h267'], + 0x48: [653,0,722,-8,769,'769 653v-16c-57 -10 -68 -16 -84 -74l-132 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 79 -42v-16h-274v16c71 5 89 28 102 77l64 233h-285l-66 -244c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-245v16c56 6 68 21 86 86l118 430c7 27 12 49 12 64c0 29 -14 35 -77 41 v16h271v-16c-60 -4 -87 -23 -100 -71l-54 -198h285l46 164c7 26 14 47 14 63c0 24 -16 38 -72 42v16h248'], + 0x49: [653,0,333,-8,384,'384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247'], + 0x4A: [653,18,444,-6,491,'491 653v-16c-57 -8 -65 -14 -82 -74l-103 -367c-21 -76 -45 -125 -71 -159c-29 -38 -73 -55 -124 -55c-70 0 -117 35 -117 88c0 32 18 56 45 56s51 -21 51 -46c0 -12 -3 -18 -3 -27c0 -28 11 -39 35 -39s42 24 53 64l127 454c8 29 12 49 12 64c0 27 -14 35 -77 41v16 h254'], + 0x4B: [653,0,667,7,722,'722 653v-16c-25 0 -48 -15 -77 -37l-298 -225l168 -293c31 -54 41 -60 104 -66v-16h-275v16l29 3c31 3 46 15 46 32c0 21 -19 50 -37 82l-123 215l-65 -237c-8 -28 -11 -40 -11 -51c0 -31 16 -39 71 -44v-16h-247v16c60 7 66 18 81 71l124 445c7 25 14 46 14 62 c0 27 -17 40 -79 43v16h270v-16c-52 -4 -84 -18 -99 -74l-53 -194l153 109c89 63 143 113 143 137c0 11 -12 16 -36 19l-24 3v16h221'], + 0x4C: [653,0,556,-8,559,'559 180l-58 -180h-509v16c56 6 64 15 82 78l122 438c8 27 11 47 11 62c0 29 -15 39 -77 43v16h273v-16c-60 -4 -85 -20 -101 -77l-120 -429c-6 -23 -10 -40 -10 -54c0 -31 23 -41 105 -41c100 0 131 5 180 38c32 21 54 54 82 112'], + 0x4D: [653,0,833,-18,872,'872 653v-16c-57 -9 -67 -23 -81 -74l-123 -443c-7 -25 -14 -46 -14 -62c0 -26 18 -40 81 -42l-1 -16h-271v16c65 7 85 24 102 86l126 459l-376 -561h-17l-62 546l-118 -428c-5 -18 -9 -43 -9 -54c0 -28 19 -44 70 -48v-16h-197v16c52 6 68 22 100 134l114 401 c8 27 12 44 12 52c0 19 -24 31 -74 34v16h181l56 -492l335 492h166'], + 0x4E: [653,15,667,-20,727,'727 653v-16c-63 -14 -65 -16 -102 -145l-146 -507h-18l-230 550l-114 -422c-6 -21 -9 -41 -9 -54c0 -28 18 -39 70 -43v-16h-198v16c56 8 70 24 106 152l117 415c-15 35 -39 54 -86 54v16h160l207 -499l106 388c6 21 8 32 8 44c0 36 -12 46 -69 51v16h198'], + 0x4F: [666,18,722,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332 c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x50: [653,0,611,0,605,'146 653h241c147 0 218 -52 218 -148c0 -54 -27 -109 -68 -143c-46 -38 -116 -57 -205 -57c-42 0 -64 2 -90 8l-53 -193c-7 -27 -14 -48 -14 -63c0 -23 15 -35 69 -41v-16h-244v16c57 8 66 17 84 82l116 414c13 47 17 68 17 83c0 27 -14 35 -71 42v16zM320 592l-69 -245 c29 -5 34 -5 52 -5c62 0 97 6 128 24c44 25 71 69 71 134c0 89 -48 123 -130 123c-28 0 -46 -8 -52 -31'], + 0x51: [666,182,722,59,699,'69 -169l-10 16c77 54 86 61 177 141c-114 23 -176 108 -176 237c0 123 64 253 173 347c77 65 165 94 241 94c137 0 225 -102 225 -237c0 -156 -104 -322 -256 -402c-54 -29 -89 -38 -164 -43l-54 -57h25c34 0 79 -10 123 -20c41 -10 78 -21 111 -21c72 0 112 19 168 77 l16 -11c-15 -21 -32 -41 -52 -59c-50 -45 -114 -75 -191 -75c-38 0 -91 8 -148 26c-43 14 -73 18 -93 18c-40 0 -77 -10 -115 -31zM594 480c0 95 -49 153 -129 153c-75 0 -137 -40 -194 -125c-58 -87 -106 -225 -106 -325c0 -101 50 -166 124 -166c75 0 142 41 198 124 c62 93 107 236 107 339'], + 0x52: [653,0,611,-13,588,'132 653h252c132 0 204 -56 204 -141c0 -48 -25 -97 -66 -128c-31 -24 -64 -36 -131 -51l89 -235c22 -59 42 -82 87 -82v-16h-147l-123 324l-66 5l-55 -203c-11 -39 -13 -53 -13 -63c0 -30 10 -41 67 -47v-16h-243v16c55 7 69 26 85 85l119 431c7 27 12 46 12 63 c0 11 -7 23 -14 28c-11 7 -15 8 -57 14v16zM306 593l-63 -227c25 -4 33 -5 51 -5c119 0 189 57 189 150c0 69 -42 112 -120 112c-31 0 -52 -11 -57 -30'], + 0x53: [667,18,500,17,508,'508 667l-40 -200l-18 3c0 102 -22 163 -119 163c-69 0 -112 -37 -112 -100c0 -49 8 -65 99 -156c91 -92 113 -135 113 -200c0 -114 -87 -195 -202 -195c-31 0 -58 7 -104 23c-27 10 -36 12 -47 12c-20 0 -36 -9 -43 -32h-18l34 224l20 -2c-2 -9 -2 -16 -2 -23 c0 -98 60 -167 144 -167c77 0 131 52 131 128c0 43 -14 73 -60 123l-39 42c-14 15 -26 29 -39 42c-60 64 -75 96 -75 150c0 105 82 164 178 164c31 0 64 -5 85 -14c21 -8 33 -11 46 -11c22 0 31 5 45 26h23'], + 0x54: [653,0,556,59,633,'633 653l-44 -164l-17 2c2 17 3 33 3 46c0 53 -36 81 -101 81h-58l-137 -490c-6 -21 -14 -44 -14 -66c0 -31 12 -39 53 -43l35 -3v-16h-288v16c69 6 92 21 107 75l143 527c-158 0 -190 -16 -238 -124l-18 4l42 155h532'], + 0x55: [653,18,722,102,765,'765 653v-16c-62 -14 -66 -19 -104 -149l-83 -285c-22 -75 -54 -133 -97 -169c-43 -37 -93 -52 -158 -52c-131 0 -221 69 -221 164c0 54 18 121 44 216l52 189c5 18 9 33 9 45c0 26 -18 39 -80 41v16h272v-16c-68 -7 -85 -22 -104 -91l-63 -226 c-27 -95 -40 -157 -40 -179c0 -71 60 -118 138 -118c113 0 175 68 220 232l64 233c16 59 23 94 23 103c0 30 -17 41 -70 46v16h198'], + 0x56: [653,18,611,76,688,'688 653v-16c-23 -1 -39 -13 -56 -40l-373 -615h-19l-82 503c-23 140 -26 145 -82 152v16h240v-16c-63 -7 -76 -17 -76 -51c0 -5 0 -10 1 -15l65 -443l210 360c31 53 49 96 49 115s-17 29 -62 34v16h185'], + 0x57: [653,18,833,71,906,'906 653v-16c-38 -12 -48 -20 -77 -75l-301 -580h-20l-50 453h-5l-222 -453h-19l-61 514c-11 94 -15 111 -29 126c-9 9 -19 11 -51 15v16h235v-16c-51 -5 -72 -13 -72 -51c0 -5 0 -13 1 -20l44 -404l172 348l-8 65c-6 51 -17 60 -75 62v16h236v-16 c-51 -5 -68 -16 -68 -48c0 -6 2 -12 2 -15l40 -412l188 365c13 25 23 49 23 68c0 25 -17 41 -67 42v16h184'], + 0x58: [653,0,611,-29,655,'655 653v-16c-43 -14 -75 -37 -125 -95l-169 -194l101 -255c24 -60 37 -69 105 -77v-16h-271v16c60 1 77 13 77 37c0 13 -6 31 -14 51l-67 165l-151 -172c-14 -16 -23 -34 -23 -48c0 -22 18 -33 66 -33v-16h-213v16c56 10 83 40 220 200l83 97l-103 255 c-19 48 -37 64 -95 69v16h263v-16c-55 -7 -71 -16 -71 -41c0 -13 5 -29 16 -56l59 -147l145 167c14 16 21 31 21 43c0 19 -18 32 -61 34v16h207'], + 0x59: [653,0,556,78,633,'633 653v-16c-29 -10 -37 -20 -70 -61l-219 -270l-36 -123c-23 -79 -30 -106 -30 -127c0 -25 14 -34 53 -37l36 -3v-16h-289v16c66 4 89 17 107 81l59 205l-76 267c-15 52 -21 60 -77 68v16h239v-16c-60 -6 -72 -14 -72 -36c0 -15 12 -59 36 -144l31 -110l39 46 c105 124 149 186 149 213c0 17 -11 25 -40 28l-29 3v16h189'], + 0x5A: [653,0,556,-6,606,'606 639l-483 -603h161c87 0 135 4 173 32c27 20 53 55 77 104l19 -3l-54 -169h-505v14l479 603h-171c-64 0 -112 -7 -142 -27c-31 -21 -39 -37 -66 -89l-19 5l45 147h486v-14'], + 0x5B: [663,153,389,21,391,'391 663l-7 -27h-62c-29 0 -41 -12 -47 -38l-158 -667c-4 -16 -6 -26 -6 -29c0 -19 17 -28 49 -28h56l-7 -27h-188l197 816h173'], + 0x5C: [666,18,278,-41,319,'319 -18h-71l-289 684h72'], + 0x5D: [663,153,389,12,382,'382 663l-197 -816h-173l7 27h62c30 0 40 12 47 41l160 670c4 16 4 21 4 25c0 18 -16 26 -49 26h-57l7 27h189'], + 0x5E: [666,-301,422,0,422,'422 301h-68l-143 289h-1l-142 -289h-68l181 365h60'], + 0x5F: [-75,125,500,0,500,'500 -125h-500v50h500v-50'], + 0x60: [664,-492,333,120,311,'311 492h-32l-140 106c-13 10 -19 20 -19 32c0 22 16 34 36 34c15 0 27 -6 40 -23'], + 0x61: [441,11,501,17,476,'463 111l13 -11c-75 -91 -99 -110 -139 -110c-28 0 -40 12 -40 41c0 25 2 33 23 115c-75 -113 -133 -157 -203 -157c-56 0 -100 40 -100 116c0 155 153 336 286 336c43 0 72 -21 80 -58l11 48l3 3l61 7l7 -3c-2 -9 -3 -11 -6 -21c-47 -171 -89 -343 -89 -363 c0 -7 6 -13 14 -13c9 0 22 8 52 41zM365 361c0 35 -21 58 -56 58c-45 0 -89 -31 -131 -92c-42 -63 -77 -152 -77 -215c0 -55 24 -74 60 -74c50 0 97 55 127 98c47 68 77 154 77 225'], + 0x62: [683,11,500,23,473,'163 290h1c68 113 123 151 193 151c67 0 116 -43 116 -120c0 -158 -165 -332 -320 -332c-57 0 -130 23 -130 53v6l142 523c6 24 9 38 9 47c0 22 -5 23 -64 25v17c67 8 103 14 153 23l5 -5l-21 -82zM388 306c0 61 -26 86 -70 86c-48 0 -94 -42 -137 -115 c-44 -74 -72 -171 -72 -231c0 -23 15 -34 46 -34c43 0 86 21 123 59c60 62 110 161 110 235'], + 0x63: [441,11,444,30,425,'350 107l16 -10c-61 -77 -114 -108 -189 -108c-93 0 -147 52 -147 154c0 93 52 180 123 237c49 39 106 61 167 61s105 -34 105 -81c0 -27 -22 -48 -48 -48c-28 0 -39 20 -39 40c0 18 15 29 15 48c0 12 -14 20 -37 20c-40 0 -80 -18 -109 -48c-56 -59 -91 -144 -91 -233 c0 -72 32 -114 89 -114c53 0 91 25 145 82'], + 0x64: [683,13,500,15,527,'521 683l6 -6l-39 -152l-60 -219c-31 -114 -65 -230 -65 -246c0 -12 5 -20 18 -20c17 0 28 9 82 71l12 -10c-49 -73 -97 -114 -147 -114c-26 0 -41 18 -41 45c0 23 2 39 13 89c-59 -99 -110 -132 -178 -132c-65 0 -107 41 -107 117c0 162 162 335 292 335 c42 0 59 -19 65 -58h1l45 163c15 53 14 57 14 71c0 21 -9 24 -64 26v17c64 6 100 12 153 23zM356 361c0 36 -24 57 -47 57c-28 0 -63 -17 -91 -46c-66 -70 -116 -179 -116 -262c0 -46 23 -73 58 -73c92 0 196 172 196 324'], + 0x65: [441,11,444,31,412,'358 109l12 -12c-57 -70 -121 -108 -204 -108c-81 0 -135 54 -135 137c0 155 149 315 299 315c53 0 82 -26 82 -68c0 -86 -105 -164 -284 -187c-10 -20 -10 -46 -10 -61c0 -55 37 -91 93 -91c44 0 75 16 147 75zM152 252l-17 -44c86 21 124 39 161 74c31 30 50 66 50 97 c0 24 -7 39 -35 39c-57 0 -125 -77 -159 -166'], + 0x66: [678,207,278,-147,424,'41 428h93c22 71 39 126 72 173c30 43 71 77 132 77c49 0 86 -26 86 -62c0 -22 -19 -43 -42 -43c-18 0 -37 15 -37 39c0 17 10 22 10 31c0 8 -8 13 -22 13c-56 0 -93 -70 -122 -228h107l-6 -32h-108l-72 -320c-42 -185 -109 -283 -200 -283c-45 0 -79 26 -79 61 c0 23 17 42 38 42c23 0 38 -16 38 -37c0 -13 -9 -18 -9 -29c0 -9 8 -16 20 -16c42 0 74 54 97 162l88 420h-91'], + 0x67: [441,206,500,8,471,'471 366h-49c9 -18 9 -34 9 -51c0 -84 -92 -164 -185 -164c-11 0 -22 1 -31 3c-3 1 -5 1 -7 1c-17 0 -36 -20 -36 -41c0 -18 27 -31 71 -42c96 -23 142 -67 142 -127c0 -87 -77 -151 -210 -151c-102 0 -167 36 -167 108c0 51 19 78 117 137c-18 11 -27 26 -27 39 c0 29 23 59 77 84c-56 20 -79 56 -79 108c0 102 100 171 201 171c38 0 71 -9 98 -28c8 -6 13 -8 16 -8h60v-39zM352 348c0 53 -19 71 -56 71c-62 0 -122 -73 -122 -172c0 -47 22 -75 60 -75c34 0 61 18 85 59c20 34 33 75 33 117zM325 -90c0 46 -36 74 -143 107 c-13 4 -23 7 -34 11c-9 0 -51 -34 -65 -52c-15 -19 -20 -35 -20 -58c0 -70 47 -102 127 -102c81 0 135 43 135 94'], + 0x68: [683,9,500,19,478,'465 118l13 -13c-61 -87 -95 -114 -146 -114c-27 0 -44 16 -44 42c0 12 7 43 20 92l55 207c4 16 7 29 7 33c0 15 -5 25 -28 25c-36 0 -100 -61 -152 -140c-40 -61 -56 -96 -96 -250h-75l146 554c8 31 13 48 13 62c0 17 -23 25 -41 25h-27v15c60 7 99 14 157 27l7 -6 l-121 -447c90 146 168 211 230 211c46 0 65 -30 65 -67c0 -25 -18 -99 -48 -193c-17 -52 -33 -114 -33 -125c0 -10 7 -18 16 -18c16 0 28 12 82 80'], + 0x69: [654,11,278,49,264,'264 599c0 -28 -23 -51 -49 -51c-29 0 -48 21 -48 53c0 31 20 53 47 53s50 -26 50 -55zM222 114l13 -11c-55 -84 -87 -114 -137 -114c-33 0 -49 18 -49 55c0 20 7 55 22 111l48 177c5 18 9 36 9 44c0 20 -10 23 -64 24v16c39 3 59 6 160 25l4 -3l-94 -343 c-5 -17 -10 -30 -10 -44c0 -10 6 -15 14 -15c17 0 41 21 84 78'], + 0x6A: [652,207,278,-124,279,'279 598c0 -27 -24 -50 -50 -50c-30 0 -54 21 -54 52c0 30 25 52 53 52c27 0 51 -26 51 -54zM246 438l-104 -410c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -12 18 -12c40 0 63 44 97 182 l72 292c12 49 16 70 16 80c0 22 -12 31 -48 31h-26v16c32 2 85 10 169 25'], + 0x6B: [683,11,444,14,461,'461 428v-16c-47 -3 -78 -23 -225 -154l37 -88c39 -92 62 -129 81 -129c15 0 27 11 45 42c5 8 10 17 15 26l15 -11c-46 -84 -71 -109 -111 -109c-29 0 -49 19 -81 82c-18 35 -44 97 -60 141l-40 -32l-48 -180h-75l141 528c13 48 16 71 18 88c-2 18 -17 24 -51 24h-18v16 c59 7 98 14 157 27l6 -6l-120 -456l43 33c94 72 143 120 143 140c0 11 -12 18 -37 18h-14v16h179'], + 0x6C: [683,11,278,41,279,'279 678l-153 -585c-5 -18 -8 -35 -8 -43c0 -12 7 -18 17 -18c15 0 38 16 67 57l25 35l14 -10c-60 -95 -97 -125 -151 -125c-32 0 -49 19 -49 56c0 8 1 20 4 30l137 524c3 10 3 16 3 19c0 12 -17 22 -49 22h-18v16c59 7 96 14 155 27'], + 0x6D: [441,9,722,12,704,'704 105l-5 -7c-53 -74 -97 -107 -144 -107c-26 0 -40 16 -40 46c0 10 3 27 13 66l58 227c5 20 7 33 7 38c0 12 -9 21 -20 21c-30 0 -81 -47 -131 -117c-49 -69 -69 -118 -108 -272h-75l27 93c44 152 68 258 68 271c0 16 -9 25 -22 25c-34 0 -93 -58 -149 -143 c-34 -52 -48 -88 -96 -246h-75l43 144c40 133 55 216 55 228c0 15 -14 22 -41 22h-25v16l162 31l3 -2l-58 -209c89 145 159 211 220 211c40 0 60 -24 60 -60c0 -19 -13 -75 -40 -152c70 111 111 161 160 192c24 15 43 20 63 20c37 0 58 -27 58 -63c0 -7 -2 -23 -3 -28 l-68 -251c-6 -23 -10 -41 -10 -45c0 -11 4 -16 12 -16c17 0 35 16 65 53l21 26'], + 0x6E: [441,9,500,14,474,'460 117l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -47 16 -47 54c0 10 2 23 16 75l44 162c8 31 14 67 14 79c0 18 -9 29 -24 29c-40 0 -85 -49 -148 -142c-45 -67 -53 -90 -100 -248h-75l96 350c1 5 2 11 2 17c0 20 -14 26 -65 27v16c81 16 109 20 162 31l4 -2l-67 -218 c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-56 -203c-10 -36 -14 -53 -14 -61c0 -9 4 -18 16 -18c14 0 32 16 61 53c7 8 14 17 21 26'], + 0x6F: [441,11,500,27,468,'468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91 c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x70: [441,205,504,-75,472,'215 428l-29 -100c54 81 111 113 171 113c74 0 115 -47 115 -125c0 -165 -151 -327 -297 -327c-23 0 -44 4 -69 17c-17 -70 -40 -152 -40 -166c0 -22 15 -29 62 -29v-16h-203v16c43 1 56 16 68 63l115 432c11 40 16 66 16 71c0 24 -28 27 -44 27h-22l-2 15l156 22 c3 0 5 -2 5 -4c0 0 -1 -5 -2 -9zM382 313c0 57 -17 85 -62 85c-53 0 -112 -54 -135 -114c-29 -75 -65 -204 -65 -238c0 -22 20 -38 48 -38c53 0 101 33 145 95c48 67 69 140 69 210'], + 0x71: [441,209,500,25,484,'484 428l-165 -579c-1 -4 -2 -8 -2 -11c0 -19 20 -31 57 -31h15v-16h-237v16c63 4 80 19 91 56l90 290c-80 -127 -131 -164 -208 -164c-63 0 -100 45 -100 116c0 158 156 336 293 336c41 0 67 -17 77 -62l16 49h73zM380 359c0 33 -26 60 -59 60c-29 0 -61 -19 -93 -49 c-68 -65 -117 -168 -117 -251c0 -47 16 -77 53 -77c25 0 56 13 82 36c68 59 134 198 134 281'], + 0x72: [441,0,389,45,412,'176 223l16 35c19 42 53 95 94 138c26 27 56 45 79 45c28 0 47 -21 47 -51s-17 -54 -47 -54c-18 0 -26 11 -35 26c-6 10 -9 14 -16 14c-18 0 -46 -33 -82 -94c-43 -74 -61 -114 -111 -282h-76l81 292c14 52 16 61 16 82s-18 26 -38 26c-8 0 -16 -1 -31 -3v17l155 27l3 -2 '], + 0x73: [442,13,389,16,366,'366 442l-20 -140h-16c-10 83 -40 116 -89 116c-35 0 -59 -20 -59 -57c0 -27 15 -56 54 -102c50 -58 68 -97 68 -136c0 -83 -61 -134 -144 -134c-17 0 -32 1 -55 10c-19 8 -33 9 -44 9s-22 -5 -29 -21h-16l20 159h16c14 -95 48 -136 100 -136c47 0 76 28 76 77 c0 32 -17 66 -56 115c-43 54 -63 99 -63 131c0 66 47 108 121 108c17 0 31 -3 56 -10c19 -6 28 -7 36 -7c15 0 22 4 30 18h14'], + 0x74: [546,11,278,38,296,'296 428l-5 -32h-84l-87 -328c-1 -4 -2 -11 -2 -14c0 -13 6 -16 15 -16c16 0 32 16 81 79l13 -7c-60 -92 -91 -121 -143 -121c-27 0 -46 12 -46 37c0 11 8 42 16 74l78 296h-75c-1 3 -1 6 -1 6c0 11 9 20 33 25c32 7 97 56 133 110c4 6 10 9 14 9c6 0 9 -3 9 -8 c0 0 0 -5 -1 -7l-28 -103h80'], + 0x75: [441,11,500,42,475,'461 119l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 22 13 89 45 197c-118 -194 -168 -247 -239 -247c-35 0 -53 16 -53 53c0 19 9 55 27 128l35 139c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-89 -355 c-1 -3 -3 -12 -3 -16c0 -15 5 -25 20 -25c34 0 80 53 142 147c47 71 61 109 110 243h74l-79 -299c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81'], + 0x76: [441,18,444,20,426,'207 70l31 32c72 74 137 184 137 231c0 10 -5 17 -18 29c-18 16 -25 29 -25 45c0 21 17 34 38 34c33 0 56 -32 56 -59c0 -43 -28 -101 -63 -155c-45 -70 -101 -134 -119 -153c-55 -59 -82 -92 -99 -92c-6 0 -9 10 -9 27v24c0 69 -11 202 -24 278s-24 93 -61 93 c-10 0 -20 0 -31 -1v13c45 7 80 14 112 21c8 3 15 4 20 4c9 0 9 -6 30 -114c13 -67 19 -122 25 -257'], + 0x77: [441,18,667,15,648,'403 426l32 -352c131 164 165 217 165 260c0 12 -6 20 -22 35s-21 27 -21 41c0 16 17 31 39 31c30 0 52 -24 52 -56c0 -64 -74 -181 -212 -349l-9 -11c-27 -33 -36 -43 -45 -43c-7 0 -9 9 -11 35l-29 310l-89 -152c-18 -30 -36 -63 -55 -99c-36 -69 -53 -94 -64 -94 c-9 0 -11 8 -13 47l-4 91c-4 87 -15 194 -27 242c-9 37 -18 42 -47 42h-28v13c31 5 65 9 95 17c13 3 22 7 29 7c11 0 12 -2 19 -34c14 -68 28 -193 32 -281l192 304c5 8 8 10 13 10c6 0 8 -3 8 -14'], + 0x78: [441,11,444,-27,447,'243 355l12 -57c70 107 107 143 151 143c24 0 41 -15 41 -37c0 -21 -14 -36 -34 -36c-19 0 -28 17 -52 17c-18 0 -54 -44 -98 -121c0 -7 2 -21 8 -45l32 -134c7 -28 16 -41 30 -41c13 0 24 10 47 40c9 12 13 18 21 28l15 -9c-58 -90 -84 -114 -122 -114 c-32 0 -47 18 -59 68l-29 119l-88 -119c-44 -59 -64 -68 -95 -68s-50 16 -50 42c0 20 14 36 34 36c9 0 19 -4 32 -11c10 -6 20 -9 26 -9c11 0 30 19 51 49l82 116l-28 124c-14 60 -21 68 -46 68c-8 0 -20 -2 -39 -7l-18 -5l-3 16l11 4c61 22 94 29 117 29 c25 0 37 -18 51 -86'], + 0x79: [441,206,444,-24,426,'243 186l21 -110c85 141 122 213 122 257c0 14 -7 20 -26 32c-20 13 -26 23 -26 39c0 22 17 37 40 37c30 0 52 -25 52 -55c0 -57 -48 -167 -131 -305c-104 -172 -211 -287 -268 -287c-30 0 -51 17 -51 43c0 22 17 40 39 40c35 0 35 -28 61 -28c13 0 25 8 48 33 c18 19 63 78 71 91c6 12 10 24 10 35c0 40 -55 264 -82 332c-19 49 -37 64 -77 64c-11 0 -20 -1 -31 -4v17c11 2 22 4 32 6c20 4 53 10 107 18h4c15 0 68 -166 85 -255'], + 0x7A: [428,81,389,-2,380,'380 417l-289 -344c58 -13 80 -24 120 -83c26 -38 45 -50 70 -50c16 0 27 6 27 15c0 4 -2 9 -5 15c-6 12 -8 20 -8 28c1 17 17 34 33 34c21 0 35 -15 35 -37c0 -40 -37 -76 -93 -76c-29 0 -63 13 -113 44c-47 29 -79 42 -105 42c-16 0 -29 -5 -45 -18l-9 9l310 372h-136 c-52 0 -71 -9 -91 -60l-16 4l32 116h283v-11'], + 0x7B: [687,177,400,51,407,'407 687l-3 -11c-62 -16 -88 -45 -109 -124l-45 -168c-22 -83 -49 -112 -114 -129c39 -17 56 -36 56 -63c0 -18 -18 -96 -44 -190c-16 -61 -22 -86 -22 -102c0 -37 15 -55 53 -66l-3 -11c-92 3 -125 23 -125 78c0 24 10 68 32 144c22 75 34 129 34 153 c0 29 -14 43 -53 57c64 17 86 41 106 114l48 178c29 106 76 140 189 140'], + 0x7C: [666,18,275,105,171,'171 -18h-66v684h66v-684'], + 0x7D: [687,177,400,-7,349,'221 676l3 11c92 -3 125 -23 125 -78c0 -23 -10 -69 -32 -144c-22 -76 -34 -129 -34 -153c0 -29 14 -43 53 -57c-64 -17 -86 -41 -106 -114l-48 -178c-29 -106 -77 -140 -189 -140l3 11c62 16 88 45 109 124l45 168c22 83 48 112 114 129c-39 17 -56 35 -56 63 c0 18 18 96 44 190c16 58 22 87 22 101c0 37 -15 56 -53 67'], + 0x7E: [323,-183,541,40,502,'466 323l36 -50c-45 -66 -79 -86 -125 -86c-45 0 -70 14 -103 33c-17 10 -64 35 -113 35c-31 0 -67 -22 -85 -72l-36 50c31 60 75 86 122 86c45 0 77 -14 114 -31c18 -8 68 -37 97 -37c39 0 56 16 93 72'], + 0xA0: [0,0,250,0,0,''], + 0xA3: [670,8,500,10,517,'82 361h109c20 113 44 179 96 241c40 48 83 68 137 68c55 0 93 -31 93 -76c0 -27 -14 -41 -39 -41c-17 0 -31 9 -36 44c-4 31 -16 44 -40 44c-57 0 -76 -53 -122 -280h124l-7 -42h-127c-26 -110 -32 -126 -73 -215c71 -30 117 -38 160 -38c36 0 52 9 79 28l10 7l11 -9 c-26 -64 -75 -100 -142 -100c-49 0 -77 12 -144 65c-38 -50 -61 -63 -96 -63c-41 0 -65 25 -65 64c0 36 33 68 88 68c15 0 34 0 62 -11l25 204h-112zM146 73c-28 20 -40 25 -61 25c-31 0 -53 -18 -53 -45c0 -21 19 -37 43 -37c27 0 56 23 71 57'], + 0xA5: [653,0,500,28,605,'605 653v-16c-32 -14 -43 -21 -75 -61l-181 -224h149l-12 -40h-168l-6 -8l-24 -82h178l-12 -40h-178c-23 -70 -31 -96 -31 -118c0 -26 13 -42 54 -45l36 -3v-16h-283l4 16c70 7 93 20 111 82l25 84h-164l12 40h163l23 80l-3 10h-162l12 40h139l-63 216 c-15 51 -22 61 -88 69v16h237v-16c-64 -6 -73 -13 -73 -34c0 -16 10 -60 39 -156l29 -100c14 16 20 23 28 33c112 131 161 191 162 226c0 17 -13 25 -42 28l-25 3v16h189'], + 0xA7: [666,162,500,53,461,'249 398l2 3c-50 62 -67 96 -67 140c0 73 61 125 147 125c76 0 130 -41 130 -99c0 -34 -20 -55 -52 -55c-27 0 -46 19 -46 45c0 14 6 25 21 38c9 8 13 13 13 19c0 17 -26 31 -60 31c-57 0 -92 -32 -92 -83c0 -26 9 -51 26 -72l123 -150c26 -32 41 -73 41 -114 c0 -76 -47 -126 -118 -126c-14 0 -21 1 -33 7l-2 -3c53 -67 63 -89 63 -129c0 -78 -67 -137 -156 -137c-76 0 -136 47 -136 108c0 35 21 56 56 56c30 0 47 -16 47 -43c0 -22 -7 -34 -27 -46c-11 -7 -15 -11 -15 -17c0 -20 34 -37 71 -37c60 0 102 37 102 90 c0 30 -12 53 -50 97l-76 87c-47 54 -71 106 -71 153c0 68 48 123 106 123c18 0 35 -4 53 -11zM377 192c0 34 -14 63 -57 120c-39 52 -74 76 -107 76c-37 0 -66 -29 -66 -66c0 -71 107 -201 165 -201c36 0 65 32 65 71'], + 0xA8: [606,-508,333,107,405,'405 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49zM205 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0xAF: [583,-532,333,99,411,'411 583l-11 -51h-301l11 51h301'], + 0xB0: [676,-390,400,101,387,'387 533c0 -81 -63 -143 -145 -143c-78 0 -141 64 -141 143c0 80 63 143 143 143s143 -63 143 -143zM348 533c0 59 -47 109 -104 109s-104 -49 -104 -109c0 -59 47 -109 103 -109c58 0 105 49 105 109'], + 0xB4: [664,-494,333,180,403,'180 494l162 160c7 7 15 10 25 10c20 0 36 -16 36 -36c0 -12 -5 -21 -17 -28l-171 -106h-35'], + 0xB5: [428,209,500,-30,497,'497 428l-78 -336c-4 -18 -6 -25 -6 -34c0 -18 9 -28 26 -28s31 6 56 26l-3 -9c-42 -43 -68 -57 -107 -57c-38 0 -57 20 -57 59c0 10 1 17 4 31c-53 -62 -101 -90 -154 -90s-84 23 -103 76c-2 -21 -2 -30 -2 -48c0 -11 0 -25 1 -42s1 -35 1 -43c0 -87 -28 -142 -71 -142 c-23 0 -34 14 -34 45c0 35 8 60 38 118c18 45 28 73 34 100l85 374h88l-67 -284c-2 -7 -3 -20 -3 -30c0 -42 27 -69 69 -69c43 0 87 25 122 70l73 313h88'], + 0xB7: [310,-199,250,70,181,'181 253c0 -30 -26 -54 -57 -54c-29 0 -54 25 -54 54c0 32 25 57 55 57s56 -26 56 -57'], + 0xF0: [683,11,500,27,482,'482 637l-101 -45c62 -71 86 -140 86 -233c0 -195 -127 -370 -293 -370c-91 0 -147 46 -147 140c0 152 136 312 280 312c44 0 69 -17 87 -49l2 1c-10 69 -32 122 -72 174l-117 -51l-33 29l123 54c-35 33 -61 50 -103 67l35 17c45 -10 82 -28 122 -61l99 43zM384 326 c0 57 -28 94 -71 94c-44 0 -90 -30 -132 -89c-49 -68 -70 -143 -70 -224c0 -55 31 -97 78 -97c44 0 87 26 124 82c44 65 71 163 71 234'], + 0x127: [683,9,500,19,478,'465 118l13 -13c-61 -87 -95 -114 -146 -114c-27 0 -44 16 -44 42c0 12 7 43 20 92l55 207c4 16 7 29 7 33c0 15 -5 25 -28 25c-36 0 -100 -61 -152 -140c-40 -61 -56 -96 -96 -250h-75l132 500h-63l15 54h62c8 31 13 48 13 62c0 17 -23 25 -41 25h-27v15 c60 7 99 14 157 27l7 -6l-33 -123h159l-15 -54h-159l-73 -270c90 146 168 211 230 211c46 0 65 -30 65 -67c0 -25 -18 -99 -48 -193c-17 -52 -33 -114 -33 -125c0 -10 7 -18 16 -18c16 0 28 12 82 80'], + 0x131: [441,11,278,47,235,'221 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v16c39 3 58 6 159 25l5 -3l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 6 -15 16 -15c17 0 38 22 81 79'], + 0x237: [441,207,278,-124,246,'246 438l-104 -410c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -12 18 -12c40 0 63 44 97 182l72 292c12 49 16 70 16 80c0 22 -12 31 -48 31h-26v16c32 2 85 10 169 25'], + 0x2C6: [661,-492,333,91,385,'385 492h-36l-82 104l-137 -104h-39l157 169h49'], + 0x2C7: [661,-492,333,121,426,'426 661l-162 -169h-48l-95 169h38l89 -105l141 105h37'], + 0x2D8: [650,-492,333,117,418,'389 650h29c-14 -88 -86 -158 -173 -158c-91 0 -128 55 -128 158h29c5 -63 39 -99 107 -99c61 0 114 37 136 99'], + 0x2D9: [606,-508,333,207,305,'305 557c0 -27 -22 -49 -49 -49c-28 0 -49 22 -49 50c0 27 22 48 50 48c25 0 48 -24 48 -49'], + 0x2DA: [707,-508,333,155,355,'355 607c0 -54 -45 -99 -100 -99c-57 0 -100 44 -100 100c0 54 45 99 99 99c56 0 101 -45 101 -100zM321 607c0 37 -30 66 -67 66c-35 0 -65 -30 -65 -65c0 -37 28 -66 65 -66c38 0 67 28 67 65'], + 0x2DC: [624,-517,333,100,427,'399 624h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44'], + 0x391: [668,0,611,-51,564,'564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-20 131h-220l-59 -111c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16zM369 262l-45 263l-149 -263h194'], + 0x392: [653,0,611,-8,588,'130 653h250c139 0 208 -51 208 -150c0 -54 -28 -89 -64 -113c-31 -21 -68 -30 -111 -39v-1c86 -26 126 -79 126 -150c0 -134 -113 -200 -275 -200h-272v16c55 8 66 18 83 80l121 436c7 25 11 49 11 64c0 29 -14 36 -77 41v16zM248 363h38c131 0 201 53 201 152 c0 74 -36 108 -117 108c-39 0 -49 0 -59 -36zM238 331l-32 -119c-20 -76 -35 -127 -35 -140c0 -28 25 -42 67 -42c115 0 193 59 193 170c0 62 -29 106 -67 119c-20 7 -63 12 -126 12'], + 0x393: [653,0,611,8,645,'645 653l-32 -154l-21 2c3 22 3 27 3 33c0 73 -23 86 -199 86c-46 0 -61 -6 -68 -32l-132 -473c-7 -25 -14 -45 -14 -60c0 -24 18 -35 77 -39v-16h-251v16c58 4 68 26 83 78l123 442c7 25 10 45 10 61c0 28 -10 34 -76 40v16h497'], + 0x394: [668,0,611,-32,526,'526 0h-558l400 668h26zM411 94l-87 432l-255 -432h342'], + 0x395: [653,0,611,-1,634,'634 653l-31 -154l-22 2c2 17 3 33 3 46c0 60 -35 73 -192 73c-57 0 -67 -4 -73 -26l-66 -233h78c90 0 101 12 139 97l18 -4l-68 -232l-20 5c5 22 7 34 7 52c0 17 -2 26 -7 31c-11 10 -38 15 -78 15h-78l-32 -112c-25 -88 -36 -134 -36 -146c0 -24 23 -34 79 -34 c98 0 152 12 203 39c32 17 56 45 94 98l16 -8l-62 -162h-507v16c56 10 65 16 81 74l123 442c6 20 11 52 11 64c0 27 -15 35 -77 41v16h497'], + 0x396: [653,0,556,-6,606,'606 639l-483 -603h161c87 0 135 4 173 32c27 20 53 55 77 104l19 -3l-54 -169h-505v14l479 603h-171c-64 0 -112 -7 -142 -27c-31 -21 -39 -37 -66 -89l-19 5l45 147h486v-14'], + 0x397: [653,0,722,-8,769,'769 653v-16c-57 -10 -68 -16 -84 -74l-132 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 79 -42v-16h-274v16c71 5 89 28 102 77l64 233h-285l-66 -244c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-245v16c56 6 68 21 86 86l118 430c7 27 12 49 12 64c0 29 -14 35 -77 41 v16h271v-16c-60 -4 -87 -23 -100 -71l-54 -198h285l46 164c7 26 14 47 14 63c0 24 -16 38 -72 42v16h248'], + 0x398: [666,18,722,60,699,'524 429h19c-19 -49 -53 -146 -53 -209h-19c0 42 -12 58 -47 58h-105c-37 0 -65 -13 -84 -58h-19c21 51 53 130 53 209h19c8 -45 16 -57 52 -57h98c37 0 76 20 86 57zM699 418c0 -146 -88 -285 -207 -365c-65 -44 -144 -71 -218 -71c-130 0 -214 85 -214 234 c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x399: [653,0,333,-8,384,'384 653v-16c-56 -7 -65 -16 -82 -77l-120 -429c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75l120 441c7 25 13 46 13 62c0 25 -16 40 -72 43v16h247'], + 0x39A: [653,0,667,7,722,'722 653v-16c-25 0 -48 -15 -77 -37l-298 -225l168 -293c31 -54 41 -60 104 -66v-16h-275v16l29 3c31 3 46 15 46 32c0 21 -19 50 -37 82l-123 215l-65 -237c-8 -28 -11 -40 -11 -51c0 -31 16 -39 71 -44v-16h-247v16c60 7 66 18 81 71l124 445c7 25 14 46 14 62 c0 27 -17 40 -79 43v16h270v-16c-52 -4 -84 -18 -99 -74l-53 -194l153 109c89 63 143 113 143 137c0 11 -12 16 -36 19l-24 3v16h221'], + 0x39B: [668,0,611,-51,564,'564 0h-245v16c63 3 77 19 77 53c0 8 -1 17 -2 26l-70 430l-229 -410c-14 -26 -22 -50 -22 -66c0 -19 15 -31 62 -33v-16h-186v16c46 9 59 26 134 156l285 496h26l92 -553c14 -84 25 -95 78 -99v-16'], + 0x39C: [653,0,833,-18,872,'872 653v-16c-57 -9 -67 -23 -81 -74l-123 -443c-7 -25 -14 -46 -14 -62c0 -26 18 -40 81 -42l-1 -16h-271v16c65 7 85 24 102 86l126 459l-376 -561h-17l-62 546l-118 -428c-5 -18 -9 -43 -9 -54c0 -28 19 -44 70 -48v-16h-197v16c52 6 68 22 100 134l114 401 c8 27 12 44 12 52c0 19 -24 31 -74 34v16h181l56 -492l335 492h166'], + 0x39D: [653,15,667,-20,727,'727 653v-16c-63 -14 -65 -16 -102 -145l-146 -507h-18l-230 550l-114 -422c-6 -21 -9 -41 -9 -54c0 -28 18 -39 70 -43v-16h-198v16c56 8 70 24 106 152l117 415c-15 35 -39 54 -86 54v16h160l207 -499l106 388c6 21 8 32 8 44c0 36 -12 46 -69 51v16h198'], + 0x39E: [653,0,651,-6,680,'680 653l-44 -164l-17 2c1 9 2 16 2 23c0 36 -11 49 -72 49h-285c-52 0 -82 -13 -103 -69l-18 4l42 155h495zM553 456l-59 -218l-17 2c2 12 2 18 2 27c0 25 -4 37 -61 37h-150c-39 0 -68 -7 -89 -61l-18 4l56 209l19 -4c-3 -11 -3 -19 -3 -29c0 -32 25 -33 62 -33h143 c68 0 76 21 97 69zM587 174l-56 -174h-537l44 179l17 -5c-4 -19 -4 -26 -4 -36c0 -34 25 -44 62 -44h319c58 0 107 8 137 85'], + 0x39F: [666,18,722,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM594 481c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332 c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x3A0: [653,0,722,-8,769,'769 653v-16c-57 -10 -68 -16 -84 -74l-132 -481c-2 -8 -3 -16 -3 -24c0 -28 14 -35 79 -42v-16h-274v16c71 5 88 28 102 77l145 520h-285l-147 -531c-2 -7 -3 -15 -3 -22c0 -29 10 -36 70 -44v-16h-245v16c56 6 68 21 86 86l118 430c7 27 12 49 12 64 c0 29 -14 35 -77 41v16h638'], + 0x3A1: [653,0,611,0,605,'146 653h241c147 0 218 -52 218 -148c0 -54 -27 -109 -68 -143c-46 -38 -116 -57 -205 -57c-42 0 -64 2 -90 8l-53 -193c-7 -27 -14 -48 -14 -63c0 -23 15 -35 69 -41v-16h-244v16c57 8 66 17 84 82l116 414c13 47 17 68 17 83c0 27 -14 35 -71 42v16zM320 592l-69 -245 c29 -5 34 -5 52 -5c62 0 97 6 128 24c44 25 71 69 71 134c0 89 -48 123 -130 123c-28 0 -46 -8 -52 -31'], + 0x3A3: [653,0,620,-6,659,'659 653l-31 -154l-22 2c2 10 3 33 3 43c0 61 -38 73 -155 73h-178l160 -262l-300 -261h305c77 0 114 29 150 105l19 -3l-66 -196h-550v15l350 310l-193 314v14h508'], + 0x3A4: [653,0,556,59,633,'633 653l-44 -164l-17 2c2 17 3 33 3 46c0 53 -36 81 -101 81h-58l-137 -490c-6 -21 -14 -44 -14 -66c0 -31 12 -39 53 -43l35 -3v-16h-288v16c69 6 92 21 107 75l143 527c-158 0 -190 -16 -238 -124l-18 4l42 155h532'], + 0x3A5: [668,0,556,78,648,'648 604l-16 -7c-9 13 -21 25 -40 25c-135 0 -232 -258 -264 -371l-40 -140c-8 -27 -10 -42 -10 -55c0 -25 14 -34 53 -37l36 -3v-16h-289v16c66 4 89 18 107 82l56 197c8 53 10 89 10 128c0 139 -29 193 -109 193c-18 0 -25 -2 -46 -11l-7 14c42 30 73 49 119 49 c108 0 143 -90 143 -207c0 -15 0 -30 -2 -46h3v1c47 130 142 250 222 250c19 0 34 -4 48 -14c17 -13 22 -30 26 -48'], + 0x3A6: [653,0,741,50,731,'510 582l-12 -42c121 -5 233 -52 233 -179c0 -65 -33 -124 -91 -173s-146 -73 -260 -75c-8 -21 -11 -45 -11 -56c0 -31 25 -41 93 -41v-16h-297v16h9c60 0 89 20 106 97c-120 1 -230 53 -230 178c0 66 31 122 88 171c56 48 142 75 261 78c6 21 14 53 14 64 c0 23 -6 33 -70 33v16h287v-16h-17c-62 0 -94 -23 -103 -55zM488 510l-99 -361c75 0 134 15 179 63s60 93 60 154c0 83 -46 136 -140 144zM291 149l99 361c-75 0 -134 -22 -180 -70c-45 -47 -57 -90 -57 -152c0 -83 44 -132 138 -139'], + 0x3A7: [653,0,611,-29,655,'655 653v-16c-43 -14 -75 -37 -125 -95l-169 -194l101 -255c24 -60 37 -69 105 -77v-16h-271v16c60 1 77 13 77 37c0 13 -6 31 -14 51l-67 165l-151 -172c-14 -16 -23 -34 -23 -48c0 -22 18 -33 66 -33v-16h-213v16c56 10 83 40 220 200l83 97l-103 255 c-19 48 -37 64 -95 69v16h263v-16c-55 -7 -71 -16 -71 -41c0 -13 5 -29 16 -56l59 -147l145 167c14 16 21 31 21 43c0 19 -18 32 -61 34v16h207'], + 0x3A8: [667,0,675,77,778,'778 667v-16c-61 -15 -62 -68 -76 -116c-54 -180 -193 -231 -322 -231l-59 -210c-3 -12 -6 -23 -6 -32c0 -30 16 -46 90 -46v-16h-289v16c66 0 93 22 107 74l59 214c-102 0 -197 32 -197 146c0 55 34 112 34 147c0 40 -19 54 -42 54v16h29c61 0 100 -36 100 -110 c0 -34 -21 -81 -21 -118c0 -64 43 -98 107 -98l59 217c7 26 10 42 10 46c0 23 -5 33 -61 33h-11v16h278v-16h-17c-64 0 -84 -24 -93 -55l-67 -241c31 2 158 36 190 148c26 94 57 178 185 178h13'], + 0x3A9: [666,0,762,-6,739,'242 94l5 37c-108 35 -147 112 -147 203c0 89 53 178 132 243c72 59 161 89 273 89c163 0 234 -96 234 -230c0 -138 -105 -270 -282 -305l-7 -37h128c58 6 99 9 128 85l18 -5l-56 -174h-280l40 166c118 26 206 158 206 286c0 105 -35 181 -140 181 c-77 0 -140 -33 -192 -87c-60 -63 -97 -142 -97 -216c0 -76 25 -145 84 -164l-24 -166h-271l42 179l17 -5c-2 -10 -4 -26 -4 -36c0 -38 27 -44 62 -44h131'], + 0x3B1: [441,11,552,27,549,'549 428l-142 -261v-18c0 -48 12 -99 34 -99c14 0 30 19 51 74l16 -7c-22 -74 -53 -126 -101 -126c-38 0 -50 44 -52 105c-50 -61 -119 -107 -194 -107c-97 0 -134 68 -134 152c0 81 35 166 91 223c44 45 111 77 173 77c85 0 126 -60 126 -119l46 106h86zM359 272 c0 68 -13 148 -77 148c-63 0 -173 -136 -173 -295c0 -57 18 -115 69 -115c70 0 138 135 165 191c4 19 16 44 16 71'], + 0x3B2: [678,205,506,-40,514,'-9 -127l137 495c39 139 108 310 265 310c53 0 121 -25 121 -101c0 -81 -68 -154 -128 -181v-1c38 -3 88 -40 88 -111c0 -93 -84 -214 -177 -265c-39 -22 -81 -30 -124 -30c-21 0 -40 5 -66 17l-38 -133c-12 -43 -22 -63 -31 -78h-78c9 14 25 57 31 78zM233 477 l-114 -432c0 -22 20 -37 48 -37c114 0 218 175 218 309c0 35 -12 59 -40 59c-18 0 -33 -8 -50 -8c-18 0 -30 10 -30 22c0 11 9 24 44 24c8 0 29 -6 43 -6c43 0 90 100 90 158c0 77 -32 91 -67 91c-73 0 -120 -96 -142 -180'], + 0x3B3: [435,206,410,19,438,'438 428l-274 -389c-5 -91 -12 -245 -91 -245c-23 0 -38 17 -38 50c0 53 67 150 97 218c3 28 15 105 15 181c0 69 -10 129 -48 129c-18 0 -45 -21 -64 -76h-16c17 64 49 139 99 139c51 0 64 -48 64 -118c0 -62 -13 -142 -18 -190l178 301h96'], + 0x3B4: [668,11,460,24,460,'460 604c0 -21 -9 -48 -39 -48c-65 0 -32 72 -121 72c-36 0 -94 -20 -94 -58c0 -58 103 -94 166 -155c41 -39 65 -70 65 -148c0 -131 -105 -278 -265 -278c-94 0 -148 51 -148 142c0 128 120 258 248 270c-45 46 -101 85 -101 139c0 96 105 128 169 128 c49 0 120 -19 120 -64zM356 266c0 87 -33 114 -67 114c-87 0 -181 -141 -181 -279c0 -55 31 -91 78 -91c92 0 170 177 170 256'], + 0x3B5: [441,11,444,30,425,'360 98l16 -10c-61 -77 -124 -99 -199 -99c-120 0 -147 59 -147 111c0 62 51 113 116 130c-34 6 -53 34 -53 64c1 76 86 147 224 147c65 0 108 -35 108 -83c0 -29 -29 -46 -48 -46c-24 0 -39 16 -39 40c0 20 15 29 15 48c0 11 -14 20 -37 20c-58 0 -141 -30 -141 -122 c0 -35 31 -53 74 -53c10 0 28 7 53 7c18 0 34 -9 34 -21c0 -18 -12 -27 -45 -27c-18 0 -25 9 -46 9c-47 0 -129 -31 -129 -107c0 -61 46 -81 89 -81c53 0 102 16 155 73'], + 0x3B6: [683,185,454,30,475,'290 683l5 -15c-48 -18 -73 -45 -73 -70c0 -26 18 -43 48 -48c36 43 123 107 174 107c21 0 31 -10 31 -25c0 -44 -101 -104 -190 -112c-86 -58 -204 -226 -204 -357c0 -68 39 -93 109 -93c13 0 31 1 38 1c87 0 131 -38 131 -92c0 -26 -10 -59 -28 -85 c-30 -45 -89 -79 -134 -79c-34 0 -67 15 -67 52c0 22 16 42 43 42c30 0 40 -29 65 -29c43 0 81 28 81 69c0 39 -30 50 -76 50c-27 0 -61 -10 -91 -10c-56 0 -122 20 -122 118c0 160 95 301 212 415l-1 1c-31 0 -70 19 -70 58c0 42 40 81 119 102'], + 0x3B7: [441,205,474,14,442,'148 228l2 -1c96 154 165 214 221 214c38 0 71 -18 71 -57c0 -22 -3 -36 -10 -63l-87 -321c-17 -62 -30 -140 -30 -171c0 -14 5 -27 8 -34h-73c-9 11 -11 26 -11 44c0 25 5 68 33 170l75 274c3 10 14 59 14 72c0 15 -1 35 -25 35c-51 0 -175 -150 -215 -284l-32 -106h-75 l82 305c7 25 14 48 14 62c0 9 -3 17 -14 17c-18 0 -48 -40 -63 -58l-12 10c3 5 14 23 29 41c29 36 67 61 97 61c31 0 40 -20 40 -45c0 -42 -28 -130 -39 -165'], + 0x3B8: [678,11,480,27,494,'494 511c0 -162 -60 -306 -134 -405c-65 -86 -135 -117 -205 -117c-81 0 -128 66 -128 172c0 215 113 392 222 475c44 33 82 42 122 42c71 0 123 -48 123 -167zM147 347h233c17 58 30 130 30 205c0 64 -18 105 -53 105c-87 0 -185 -221 -210 -310zM373 315h-233 c-19 -50 -29 -102 -29 -165c0 -89 19 -140 56 -140c96 0 182 207 206 305'], + 0x3B9: [441,11,278,49,235,'222 114l13 -11c-55 -84 -87 -114 -137 -114c-33 0 -49 18 -49 55c0 20 7 55 22 111l48 177c5 18 9 36 9 44c0 20 -10 23 -64 24v16c39 3 59 6 160 25l4 -3l-94 -343c-5 -17 -10 -30 -10 -44c0 -10 6 -15 14 -15c17 0 41 21 84 78'], + 0x3BA: [441,13,444,14,465,'153 225l3 1c98 126 175 188 229 210c8 3 18 5 26 5c37 0 54 -22 54 -47c0 -29 -20 -46 -46 -46c-23 0 -33 19 -54 19c-38 0 -72 -35 -144 -110l98 -172c34 -60 50 -69 91 -69v-16c-27 -9 -50 -13 -69 -13c-57 0 -81 34 -98 64l-93 160l-60 -211h-76l86 309 c9 34 14 60 14 67c0 18 -19 24 -33 24h-28v14c50 7 101 17 151 27l3 -3'], + 0x3BB: [678,16,458,-12,431,'415 123h16c-18 -82 -49 -139 -101 -139c-28 0 -53 27 -53 94c0 60 9 135 16 237l-209 -315h-96l310 428c2 18 4 47 4 79c0 77 -18 108 -49 108c-14 0 -45 -18 -65 -74h-16c15 63 46 137 101 137c35 0 64 -45 64 -135c0 -134 -20 -269 -20 -396c0 -70 11 -100 41 -100 c14 0 37 19 57 76'], + 0x3BC: [428,205,526,-33,483,'469 117l14 -9c-62 -96 -92 -119 -137 -119c-28 0 -49 17 -49 45c0 17 7 52 15 76l33 104h-1c-88 -156 -143 -223 -203 -223c-19 0 -31 10 -36 28c-39 -150 -45 -198 -67 -224h-71c14 20 28 49 44 112l131 521h75l-75 -298c-2 -9 -4 -18 -4 -27c0 -27 12 -48 40 -48 c59 0 168 187 185 251l33 122h77l-79 -300c-4 -16 -19 -67 -19 -77c0 -8 4 -15 11 -15c16 0 31 13 83 81'], + 0x3BD: [441,18,470,20,459,'443 434l16 -4c-33 -198 -138 -438 -411 -448c-14 0 -28 7 -28 22c0 4 1 8 3 13l92 333c1 5 2 13 2 17c0 22 -22 26 -65 27v16l163 31l3 -2l-105 -378c204 19 290 230 330 373'], + 0x3BE: [683,185,454,30,446,'296 683l4 -16c-71 -23 -73 -59 -73 -72c0 -15 12 -26 29 -29c46 31 104 61 143 61c33 0 47 -12 47 -31c0 -38 -50 -65 -156 -65c-56 0 -85 -67 -85 -95c0 -18 4 -37 26 -53c42 29 99 41 138 41c31 0 53 -11 53 -30c0 -51 -82 -60 -115 -60c-22 0 -49 6 -72 13 c-69 -23 -153 -113 -154 -184c0 -68 39 -93 109 -93c13 0 31 1 38 1c87 0 131 -38 131 -92c0 -26 -10 -59 -28 -85c-30 -45 -89 -79 -134 -79c-34 0 -67 15 -67 52c0 22 16 42 43 42c30 0 40 -29 65 -29c43 0 81 28 81 69c0 39 -30 50 -76 50c-27 0 -61 -10 -91 -10 c-56 0 -122 20 -122 118c1 112 76 209 175 258c-21 14 -37 37 -37 63c0 36 13 70 58 107c-15 0 -47 19 -47 45c0 44 36 82 117 103'], + 0x3BF: [441,11,500,27,468,'468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91 c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x3C0: [428,18,504,19,536,'536 428l-21 -74h-102c-14 -50 -67 -222 -67 -242c0 -23 10 -42 31 -42c20 0 47 7 71 61h16c-15 -62 -62 -142 -137 -142c-43 0 -59 36 -59 75c0 23 10 61 17 80l76 210h-104c-45 -122 -71 -296 -152 -360c-11 -8 -25 -12 -36 -12c-26 0 -50 20 -50 44c0 15 5 42 30 49 c42 11 62 44 72 70l82 209h-6c-52 0 -79 -1 -123 -55h-16c54 91 106 129 207 129h271'], + 0x3C1: [441,205,504,-40,471,'-9 -135l75 286c46 177 146 290 253 290c53 0 152 0 152 -137c0 -154 -156 -315 -298 -315c-23 0 -45 4 -68 17l-36 -141c-6 -24 -16 -49 -31 -70h-78c14 21 24 44 31 70zM382 312c0 59 -23 108 -66 108c-56 0 -121 -74 -151 -181c-18 -65 -46 -169 -46 -194 c0 -21 21 -37 49 -37c133 2 214 186 214 304'], + 0x3C2: [441,185,454,30,453,'453 386c0 -40 -21 -54 -50 -54c-26 0 -61 11 -93 11c-115 0 -229 -74 -229 -180c0 -68 39 -93 109 -93c13 0 31 1 38 1c87 0 131 -38 131 -92c0 -26 -10 -59 -28 -85c-30 -45 -89 -79 -134 -79c-34 0 -67 15 -67 52c0 22 16 42 43 42c30 0 40 -29 65 -29 c43 0 81 28 81 69c0 39 -30 50 -76 50c-27 0 -61 -10 -91 -10c-56 0 -122 20 -122 118c0 183 187 334 338 334c34 0 85 -15 85 -55'], + 0x3C3: [428,11,498,27,531,'531 428l-18 -74h-170c40 -63 96 -62 96 -137c0 -110 -126 -228 -266 -228c-94 0 -146 54 -146 141c0 135 121 298 310 298h194zM355 221c0 64 -26 114 -58 133c-69 0 -186 -113 -186 -254c0 -60 31 -90 78 -90c96 0 166 131 166 211'], + 0x3C4: [428,11,410,12,426,'426 428l-21 -74h-133c-70 -159 -70 -224 -70 -238c0 -30 10 -51 36 -51c25 0 58 33 75 69h16c-23 -78 -81 -145 -145 -145c-47 0 -64 28 -64 71c0 73 51 191 98 294h-61c-54 0 -100 -36 -129 -88h-16c27 65 96 162 196 162h218'], + 0x3C5: [441,10,478,19,446,'276 426v15c103 0 170 -25 170 -138c0 -124 -120 -313 -267 -313c-100 0 -134 44 -134 104c0 42 15 91 32 146l28 93c5 18 8 32 8 39c0 10 -4 14 -12 14c-14 0 -28 -8 -69 -60l-13 9c47 71 93 106 131 106c28 0 44 -15 44 -45c0 -9 -1 -28 -8 -52l-50 -181 c-7 -25 -11 -51 -11 -74c0 -41 12 -78 57 -78c108 0 180 218 180 316c0 75 -28 93 -86 99'], + 0x3C6: [441,205,622,27,590,'219 10l47 167c33 117 88 254 198 254c57 0 126 -18 126 -127c0 -101 -74 -257 -216 -303c-26 -8 -54 -12 -85 -12l-53 -194h-77l54 194c-39 0 -86 1 -112 11c-49 19 -74 61 -74 127c0 102 74 226 172 282c32 18 64 32 99 32v-16c-106 -28 -187 -202 -187 -325 c0 -71 45 -90 108 -90zM359 249l-64 -239c22 0 47 3 69 15c77 41 142 201 142 303c0 76 -22 82 -43 82c-47 0 -77 -62 -104 -161'], + 0x3C7: [441,207,457,-108,498,'498 428l-285 -353c-1 -26 -1 -49 -1 -69c0 -126 16 -150 45 -150c13 0 38 19 57 74h16c-13 -65 -35 -137 -93 -137c-46 0 -63 62 -63 128c0 36 3 93 8 124l-197 -244h-93l287 345v89c0 94 -8 143 -45 143c-14 0 -41 -16 -61 -73h-16c17 65 40 136 98 136 c36 0 58 -32 58 -144c0 -10 -2 -25 -4 -123l196 254h93'], + 0x3C8: [441,205,584,15,668,'668 441v-16c-97 -18 -120 -128 -140 -217c-38 -168 -142 -219 -259 -219l-54 -194h-76l54 194h-9c-36 0 -72 2 -98 21c-29 21 -53 60 -53 125c0 72 38 133 38 200c0 39 -10 85 -56 90l1 16h53c65 0 83 -44 83 -102c0 -57 -35 -161 -35 -219c0 -80 29 -110 82 -110 l115 418h76l-115 -418c22 0 46 6 68 21c45 32 85 99 105 187c26 113 55 223 198 223h22'], + 0x3C9: [439,11,686,27,654,'472 439h18c51 0 92 -10 119 -33c33 -28 45 -73 45 -121c0 -54 -17 -105 -43 -154c-53 -99 -130 -142 -194 -142c-78 0 -98 36 -114 71c-39 -47 -76 -71 -147 -71c-64 0 -129 42 -129 141c0 27 3 54 10 81c33 121 136 228 277 228h18v-16c-51 0 -96 -18 -134 -65 c-50 -63 -87 -171 -87 -254c0 -69 25 -94 57 -94c45 0 103 56 122 111c-2 15 -3 37 -3 51c0 25 4 56 12 86c14 52 44 100 81 100c24 0 35 -19 35 -46c0 -45 -20 -108 -42 -146c-8 -14 -21 -36 -31 -51c-2 -7 -2 -14 -2 -21c0 -43 23 -84 65 -84c56 0 95 47 117 88 c31 58 48 146 48 210c0 18 -1 46 -5 61c-12 47 -51 54 -93 54v16'], + 0x3D0: [694,10,456,45,436,'436 617c0 -47 -37 -84 -77 -102c-45 -21 -108 -26 -162 -26c-10 0 -20 0 -29 1c-53 -74 -77 -155 -96 -243c46 69 98 139 190 139c87 0 124 -91 124 -165c0 -107 -78 -231 -195 -231c-120 0 -146 123 -146 219c0 159 49 343 183 441c26 19 71 44 104 44 c49 0 104 -20 104 -77zM183 515h7c68 0 119 4 170 53c18 17 39 46 39 72c0 18 -13 34 -32 34c-72 0 -151 -103 -184 -159zM346 268c0 37 -22 75 -63 75c-80 0 -184 -161 -184 -234c0 -35 20 -79 60 -79c75 0 187 168 187 238'], + 0x3D1: [678,10,556,19,526,'526 206l-5 -19c-24 2 -48 6 -71 12c-46 -110 -124 -209 -239 -209c-100 0 -134 44 -134 104c0 17 3 40 7 53l21 65c6 18 8 32 8 39c0 10 -4 14 -12 14c-14 0 -28 -8 -69 -60l-13 9c47 71 93 106 131 106c28 0 44 -15 44 -45c0 -9 -1 -28 -8 -52l-18 -60 c-7 -25 -11 -51 -11 -74c0 -41 12 -78 57 -78c83 0 136 101 168 212c-119 52 -208 153 -208 269c0 64 23 110 55 140c33 31 75 46 122 46c115 0 155 -103 155 -197c0 -69 -14 -167 -47 -257c21 -7 42 -14 67 -18zM422 484c0 81 -17 161 -79 161c-58 0 -85 -74 -85 -147 c0 -62 22 -174 134 -242c22 89 30 180 30 228'], + 0x3D2: [668,0,596,78,693,'347 408h3c46 108 130 260 259 260c53 0 84 -36 84 -77c0 -37 -13 -76 -62 -76c-27 0 -46 19 -46 45c0 42 37 43 37 49c0 10 -13 13 -20 13c-135 0 -242 -263 -274 -371l-41 -140c-8 -27 -9 -42 -9 -55c0 -25 14 -34 53 -37l36 -3v-16h-289v16c66 4 89 18 107 82l56 197 c8 53 10 89 10 128c0 139 -29 193 -109 193c-18 0 -25 -2 -46 -11l-7 14c42 30 73 49 119 49c100 0 143 -67 143 -198c0 -20 -1 -39 -4 -62'], + 0x3D5: [683,205,627,27,595,'481 683l-67 -242c46 0 73 -1 101 -12c49 -19 80 -55 80 -126c0 -116 -109 -313 -306 -314l-54 -194h-78l54 194c-43 0 -82 3 -107 11c-52 17 -77 64 -77 128c0 101 112 313 295 313h15l67 242h77zM408 420l-113 -410c25 0 41 2 69 16c82 41 147 218 147 301 c0 45 -19 70 -45 86c-10 6 -37 7 -58 7zM217 10l114 410c-116 0 -220 -178 -220 -319c0 -42 17 -71 48 -83c16 -6 35 -8 58 -8'], + 0x3D6: [428,11,792,17,832,'832 428l-22 -74h-64c5 -20 8 -48 8 -69c0 -54 -17 -105 -43 -154c-53 -99 -130 -142 -194 -142c-74 0 -96 30 -114 72c-40 -50 -76 -72 -147 -72c-64 0 -129 42 -129 141c0 27 3 54 10 81c14 50 44 103 78 143h-35c-68 0 -110 -49 -147 -98h-16c26 66 107 172 201 172 h614zM664 354h-370c-47 -63 -83 -172 -83 -250c0 -49 14 -94 57 -94c49 0 109 65 122 111c-2 15 -2 45 -2 59c0 53 32 128 79 128c24 0 32 -19 32 -46c0 -54 -33 -110 -57 -147c-2 -7 -2 -14 -2 -21c0 -43 23 -84 65 -84c126 0 165 210 165 298c0 14 -3 33 -6 46'], + 0x3D8: [666,205,722,60,699,'210 -114l27 99c-107 16 -177 98 -177 231c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248c0 -146 -88 -285 -207 -365c-49 -33 -103 -56 -159 -66l-17 -61c-9 -32 -15 -56 -15 -76c0 -28 12 -32 69 -39v-16h-244v16c55 10 69 19 84 75zM594 481 c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117c-73 -99 -114 -232 -114 -332c0 -109 46 -169 130 -169c67 0 124 39 170 95c84 104 129 269 129 371'], + 0x3D9: [441,205,500,27,468,'92 -205l54 196c-77 9 -119 59 -119 137c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140c0 -76 -40 -164 -106 -229c-43 -43 -88 -67 -135 -77l-56 -200h-79zM384 326c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228 c0 -60 31 -91 78 -91c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x3DA: [666,207,673,55,665,'141 -124l18 16c25 -35 94 -54 142 -54c96 0 175 52 175 129c0 28 -10 52 -32 70c-35 28 -93 40 -174 50c-111 13 -215 45 -215 165c0 233 264 414 474 414c76 0 136 -16 136 -69c0 -32 -18 -53 -53 -53c-53 0 -43 64 -138 64c-149 0 -327 -129 -327 -293 c0 -142 191 -110 318 -160c75 -29 101 -85 101 -132c0 -157 -129 -230 -252 -230c-68 0 -134 24 -173 83'], + 0x3DB: [458,185,444,30,482,'467 458h15c-10 -115 -43 -182 -100 -213c-36 -19 -81 -20 -136 -20c-88 0 -165 -13 -165 -92c0 -40 23 -65 77 -65c23 0 59 18 86 18c87 0 115 -53 115 -107c0 -26 -10 -59 -28 -85c-30 -45 -89 -79 -134 -79c-34 0 -67 15 -67 52c0 22 16 42 43 42c30 0 40 -29 65 -29 c43 0 81 28 81 69c0 39 -30 50 -76 50c-27 0 -61 -10 -91 -10c-56 0 -122 30 -122 108c0 59 26 105 64 140c55 50 132 70 204 75c127 9 159 108 169 146'], + 0x3DC: [653,0,557,8,645,'645 653l-32 -154l-21 2c3 22 3 27 3 33c0 73 -23 86 -199 86c-46 0 -61 -6 -68 -32l-64 -227h205l-11 -36h-204l-58 -210c-7 -25 -14 -45 -14 -60c0 -24 18 -35 77 -39v-16h-251v16c58 4 68 26 83 78l123 442c7 25 10 45 10 61c0 28 -10 34 -76 40v16h497'], + 0x3DD: [433,190,487,32,472,'472 433l-13 -56h-219l-60 -255h180l-9 -37h-180l-64 -275h-75l146 623h294'], + 0x3DE: [773,18,645,19,675,'675 498l-267 -354c-17 -23 -38 -54 -38 -73c0 -26 15 -37 35 -37c29 0 69 17 91 35l8 -15c-58 -49 -99 -72 -146 -72c-58 0 -80 37 -80 71c0 44 12 68 100 162l162 172l-511 -144l-10 13l278 355c18 22 38 57 38 75c0 21 -15 35 -35 35c-29 0 -69 -17 -91 -35l-8 15 c59 49 99 72 146 72c58 0 80 -32 80 -66c0 -45 -23 -73 -113 -168l-162 -172l515 145'], + 0x3DF: [683,0,457,31,445,'445 381l-294 -381h-100l290 307h-310l294 376h100l-290 -302h310'], + 0x3E0: [666,207,708,7,668,'23 503l-16 18c129 106 237 145 364 145c168 0 297 -125 297 -325c0 -288 -203 -526 -452 -548v23c202 44 341 280 341 479c0 39 -5 85 -13 120c-160 -28 -260 -277 -292 -415h-94c35 148 177 410 375 451c-35 95 -129 155 -234 155c-14 0 -29 -1 -45 -4l-75 -280h-43 l72 270c-58 -15 -124 -44 -185 -89'], + 0x3E1: [552,210,528,93,448,'93 532l10 20c212 -64 293 -185 325 -291c13 -42 20 -89 20 -137c0 -120 -32 -231 -105 -334l-18 11c12 31 23 51 31 81c14 52 21 103 21 156c0 37 -4 75 -11 115l-180 -90l-9 27l183 92c-7 34 -19 71 -32 104l-184 -92l-9 28l181 90c-49 104 -126 172 -223 220'], + 0x3F0: [441,13,533,-16,559,'559 428l-156 -145c-21 -33 -63 -122 -63 -170c0 -33 27 -41 49 -41c35 0 51 -18 51 -38c0 -23 -21 -47 -59 -47c-44 0 -83 32 -83 87c0 52 16 91 48 154l-1 1l-252 -229h-109l148 136c14 23 55 134 55 190c0 24 -8 28 -26 28c-24 0 -55 0 -55 42c0 29 31 45 53 45 c41 0 68 -27 68 -77c0 -49 -21 -123 -45 -181l1 -1l268 246h108'], + 0x3F1: [441,205,516,27,484,'313 -205h-16c2 4 3 8 3 12c0 63 -273 36 -273 248c0 92 29 187 86 261c52 68 141 125 230 125c81 0 141 -52 141 -140c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-44 0 -86 16 -110 57l-2 -1c16 -170 268 -73 268 -188c0 -24 -15 -46 -33 -62zM400 326 c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-46 -70 -74 -149 -74 -228c0 -60 31 -91 78 -91c44 0 82 29 121 83c46 63 74 157 74 233'], + 0x3F4: [666,18,722,60,699,'699 418c0 -146 -88 -285 -207 -365c-65 -44 -140 -71 -214 -71c-130 0 -218 85 -218 234c0 122 73 262 177 353c69 60 152 97 237 97c144 1 225 -96 225 -248zM197 359h381c11 44 16 87 16 122c0 94 -49 152 -129 152c-74 0 -137 -51 -186 -117 c-35 -47 -62 -102 -82 -157zM567 317h-383c-13 -47 -19 -93 -19 -133c0 -109 46 -169 130 -169c67 0 124 39 170 95c46 57 80 133 102 207'], + 0x3F5: [441,11,444,30,420,'420 441l-18 -129h-16c-7 46 -25 107 -99 107c-69 0 -138 -104 -154 -174h179l-6 -32h-180c-8 -25 -10 -44 -10 -68c0 -73 30 -120 89 -120c56 0 90 25 147 82l16 -10c-56 -68 -100 -108 -200 -108c-91 0 -138 68 -138 151c0 142 121 301 263 301c48 0 63 -17 90 -17 c12 0 18 8 21 17h16'], + 0x3F6: [441,11,444,24,414,'92 323l-16 10c56 68 100 108 200 108c91 0 138 -68 138 -151c0 -142 -121 -301 -263 -301c-48 0 -63 17 -90 17c-12 0 -18 -8 -21 -17h-16l18 129h16c7 -46 25 -107 99 -107c69 0 138 104 154 174h-179l6 32h180c8 25 10 44 10 68c0 73 -30 120 -89 120 c-56 0 -90 -25 -147 -82'], + 0x2013: [243,-197,500,-6,505,'505 243l-8 -46h-503l8 46h503'], + 0x2014: [243,-197,889,-6,894,'894 243l-8 -46h-892l8 46h892'], + 0x2018: [666,-436,333,171,310,'301 666l9 -17c-53 -35 -75 -62 -75 -89c0 -10 5 -18 20 -32c19 -17 25 -28 25 -45c0 -27 -22 -47 -51 -47c-33 0 -58 30 -58 71c0 57 45 112 130 159'], + 0x2019: [666,-436,333,151,290,'160 436l-9 17c52 35 75 62 75 88c0 11 -5 19 -20 33c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -57 -46 -112 -130 -159'], + 0x201C: [666,-436,556,166,514,'505 666l9 -17c-53 -35 -75 -62 -75 -89c0 -10 5 -18 20 -32c19 -17 25 -28 25 -45c0 -27 -22 -47 -51 -47c-33 0 -58 30 -58 71c0 57 45 112 130 159zM296 666l9 -17c-53 -35 -75 -62 -75 -89c0 -10 5 -18 20 -32c19 -17 25 -28 25 -45c0 -27 -22 -47 -51 -47 c-33 0 -58 30 -58 71c0 57 45 112 130 159'], + 0x201D: [666,-436,556,151,499,'369 436l-9 17c52 35 75 62 75 88c0 11 -5 19 -20 33c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -57 -46 -112 -130 -159zM160 436l-9 17c52 35 75 62 75 88c0 11 -5 19 -20 33c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71 c0 -57 -46 -112 -130 -159'], + 0x2020: [666,159,500,101,488,'179 -159h-22c6 34 13 68 20 101c21 106 34 198 34 252c0 10 -1 22 -3 41c-2 16 -2 22 -2 27c39 43 61 90 74 164c-41 0 -57 -4 -96 -20c-20 -9 -28 -11 -39 -11c-28 0 -44 15 -44 42s15 40 48 40c14 0 24 -3 46 -12c37 -15 47 -17 90 -18c8 44 10 63 10 86 c0 11 -1 22 -5 41c-3 17 -4 25 -4 35c0 37 16 57 47 57c27 0 42 -16 42 -45c0 -18 -7 -31 -24 -60c-28 -48 -36 -65 -47 -114c43 1 53 3 90 18c23 10 32 12 47 12c32 0 47 -13 47 -40s-16 -42 -44 -42c-11 0 -19 2 -38 10c-40 17 -61 21 -105 21c-7 -35 -9 -51 -9 -83 c0 -44 4 -62 16 -85c-26 -38 -65 -136 -81 -207'], + 0x2021: [666,143,500,22,491,'282 427h-18c-19 0 -34 -4 -64 -17c-24 -10 -37 -14 -51 -14c-28 0 -48 17 -48 42c0 24 18 40 46 40c13 0 24 -3 48 -12c40 -15 52 -17 91 -18c7 36 9 55 9 76c0 18 -2 39 -6 62c-2 11 -3 20 -3 26c0 29 22 54 48 54c24 0 41 -18 41 -45c0 -18 -6 -33 -26 -64 c-29 -47 -36 -65 -43 -109c39 1 51 3 91 18c25 9 35 12 49 12c27 0 45 -16 45 -40c0 -25 -20 -42 -48 -42c-14 0 -27 4 -51 14c-30 13 -45 17 -64 17h-26c-7 -32 -11 -63 -11 -85s4 -41 16 -83c-37 -36 -57 -79 -76 -163h19c19 0 34 4 64 17c24 10 38 14 51 14 c28 0 48 -18 48 -42s-18 -40 -47 -40c-12 0 -23 3 -47 12c-39 15 -52 17 -91 18c-7 -32 -10 -52 -10 -76c0 -19 2 -39 6 -62c2 -11 3 -20 3 -26c0 -29 -22 -54 -48 -54c-25 0 -41 18 -41 46c0 18 6 33 26 64c29 47 36 64 43 108c-39 -1 -52 -3 -91 -18 c-25 -10 -35 -12 -49 -12c-27 0 -45 16 -45 40c0 25 20 42 48 42c13 0 27 -4 51 -14c30 -13 45 -17 64 -17h26c7 33 11 64 11 86c0 19 -5 34 -14 73l-2 9c37 36 57 79 76 163'], + 0x203E: [820,-770,500,0,500,'500 770h-500v50h500v-50'], + 0x2044: [676,10,167,-169,337,'337 676l-455 -686h-51l455 686h51'], + 0x20D7: [760,-548,0,-453,-17,'-453 681h286c28 0 49 2 49 15c0 9 -21 27 -50 56l18 8l133 -106l-132 -106l-18 8c32 27 49 49 49 56c0 12 -16 15 -49 15h-286v54'], + 0x2113: [687,11,579,48,571,'77 389l14 26c33 -23 64 -25 94 -25c105 155 240 297 322 297c42 0 64 -21 64 -67c0 -105 -146 -234 -322 -260c-52 -84 -143 -231 -143 -298c0 -24 9 -43 36 -43c47 0 102 55 199 167l21 -17c-105 -123 -164 -180 -227 -180c-47 0 -87 29 -87 87c0 55 30 136 77 218 c12 22 26 44 40 66c-30 1 -61 10 -88 29zM268 396l1 -1c157 35 272 133 272 229c0 19 -12 31 -35 31c-28 0 -57 -21 -82 -47c-49 -50 -104 -131 -156 -212'], + 0x2202: [668,11,471,40,471,'195 625l-10 20c28 17 64 23 98 23c126 0 188 -90 188 -260c0 -148 -61 -419 -295 -419c-98 0 -136 77 -136 162c0 141 111 284 257 284c32 0 75 -11 96 -48c4 22 7 46 7 70c0 88 -29 181 -131 181c-27 0 -49 -5 -74 -13zM367 319c0 65 -34 86 -61 86 c-99 0 -185 -149 -185 -288c0 -38 4 -98 67 -98c77 0 136 100 164 202c9 33 15 67 15 98'], + 0x24C8: [676,14,684,0,684,'492 523l-22 -122h-18c-3 57 -13 90 -68 90c-37 0 -62 -17 -62 -47c0 -25 7 -32 62 -81c57 -51 72 -78 72 -118c0 -66 -56 -111 -124 -111c-19 0 -40 3 -68 13c-16 6 -22 7 -27 7c-11 0 -20 -6 -24 -20h-16l18 137h21c-3 -9 -3 -18 -3 -26c0 -46 34 -79 83 -79 c43 0 72 25 72 62c0 36 -64 91 -86 112c-39 36 -48 56 -48 89c0 62 55 94 111 94c20 0 43 -3 57 -8c10 -3 19 -5 26 -5c12 0 18 2 26 13h18zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/Regular/Main.js new file mode 100644 index 0000000..4a9af51 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Main/Regular/Main.js @@ -0,0 +1,574 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Main/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Main'] = { + directory: 'Main/Regular', + family: 'STIXMathJax_Main', + id: 'STIXWEBMAIN', + 0x20: [0,0,250,0,0,''], + 0x21: [676,9,333,130,236,'175 176l-42 381c-2 20 -3 32 -3 43c0 43 15 76 53 76c34 0 53 -32 53 -81c0 -12 -1 -27 -2 -38l-45 -381h-14zM236 42c0 -29 -23 -51 -54 -51c-30 0 -52 22 -52 52s23 54 53 54c29 0 53 -25 53 -55'], + 0x22: [676,-431,408,77,331,'299 431h-21c-18 98 -32 185 -32 202c0 25 18 43 43 43c24 0 42 -18 42 -41c0 -30 -17 -106 -32 -204zM130 431h-21c-18 98 -32 185 -32 202c0 26 18 43 43 43c24 0 42 -17 42 -41c0 -30 -12 -108 -32 -204'], + 0x23: [662,0,500,6,495,'495 405h-104l-20 -134h99v-55h-108l-31 -216h-58l31 216h-134l-33 -216h-58l33 216h-106v55h115l21 134h-109v55h117l31 202h58l-31 -202h133l30 202h58l-30 -202h96v-55zM333 405h-133l-21 -134h134'], + 0x24: [727,87,500,44,458,'264 637v-246c121 -65 146 -90 173 -131c14 -21 21 -53 21 -90c0 -116 -79 -154 -194 -170v-87h-34v87c-87 0 -131 14 -186 51v130h15c21 -100 83 -153 171 -153v282c-138 78 -178 119 -178 203c0 100 85 145 178 151v63h34v-63c81 -5 130 -22 161 -53v-111h-15 c-20 83 -66 127 -146 137zM230 407v230c-71 -14 -104 -54 -104 -105c0 -44 20 -68 104 -125zM264 293v-265c81 17 114 48 114 119c0 61 -23 92 -114 146'], + 0x25: [706,19,747,61,686,'686 213c0 -121 -78 -232 -164 -232c-68 0 -121 60 -121 138c0 107 93 211 189 211c61 0 96 -43 96 -117zM663 215c0 52 -25 87 -63 87c-16 0 -37 -9 -49 -23c-44 -47 -78 -135 -78 -203c0 -39 24 -68 56 -68c69 0 134 101 134 207zM621 706l-430 -724h-47l394 658 c-37 -43 -68 -57 -121 -57c-26 0 -44 3 -76 14c3 -17 4 -28 4 -44c0 -70 -32 -145 -80 -190c-27 -26 -53 -37 -86 -37c-67 0 -118 59 -118 137c0 113 91 213 193 213c21 0 33 -6 60 -28c35 -29 59 -39 96 -39c62 0 75 8 167 97h44zM321 569c0 29 -4 36 -25 46 c-14 7 -27 16 -44 34c-41 -20 -52 -30 -72 -63c-31 -49 -48 -108 -48 -163c0 -42 23 -70 57 -70c71 0 132 101 132 216'], + 0x26: [676,13,778,42,750,'735 111l15 -11c-29 -73 -84 -113 -151 -113c-58 0 -107 26 -170 91c-75 -66 -135 -91 -216 -91c-107 0 -171 50 -171 150c0 81 55 159 157 218l38 22c-28 68 -35 104 -35 149c0 90 67 150 152 150c79 0 137 -45 137 -124c0 -72 -38 -118 -155 -168 c41 -88 76 -143 132 -206c65 86 92 134 92 180c0 30 -15 42 -65 47v21h216v-21c-50 0 -69 -19 -94 -59c-46 -73 -71 -122 -126 -196c47 -61 91 -92 152 -92c39 0 60 13 92 53zM438 556c0 49 -32 88 -78 88c-47 0 -79 -33 -79 -83c0 -51 7 -84 40 -145c86 39 117 81 117 140z M404 104c-58 68 -98 126 -152 239c-87 -56 -118 -100 -118 -169c0 -85 53 -134 124 -134c43 0 86 17 146 64'], + 0x27: [676,-431,180,48,133,'101 431h-21c-18 98 -32 175 -32 203c0 25 19 42 43 42c27 0 42 -17 42 -40c0 -30 -12 -105 -32 -205'], + 0x28: [676,177,333,48,304,'304 -161l-12 -16c-158 90 -244 259 -244 429c0 185 87 329 247 424l9 -16c-139 -119 -170 -212 -170 -405c0 -186 30 -299 170 -416'], + 0x29: [676,177,333,29,285,'29 660l12 16c153 -92 244 -259 244 -429c0 -185 -88 -327 -247 -424l-9 16c142 117 170 211 170 405c0 187 -25 302 -170 416'], + 0x2A: [676,-265,500,68,433,'268 471l9 -6c27 -18 59 -28 96 -34c44 -7 60 -17 60 -43c0 -22 -15 -39 -36 -39c-19 0 -35 13 -60 44c-27 33 -49 45 -69 58l-8 5v-9c0 -39 7 -75 20 -110c5 -14 9 -26 9 -33c0 -20 -20 -39 -40 -39c-19 0 -36 17 -36 36c0 12 5 28 12 47c12 32 16 56 16 99v9 c-35 -22 -42 -27 -52 -36c-10 -10 -12 -12 -41 -45c-17 -19 -27 -25 -43 -25c-23 0 -37 15 -37 36c0 26 18 37 63 45c46 9 62 15 103 40c-38 23 -63 30 -97 37c-49 10 -67 21 -67 46c0 21 13 37 33 37c16 0 27 -8 49 -32c32 -36 51 -52 89 -73v13c0 27 -5 58 -15 91 c-7 21 -11 39 -11 52c0 19 16 34 36 34s37 -16 37 -36c0 -12 -4 -27 -11 -47c-12 -32 -17 -59 -17 -83v-24c28 16 39 24 58 42c24 24 55 65 77 65s37 -15 37 -38c0 -26 -13 -37 -52 -43c-44 -7 -63 -13 -112 -41'], + 0x2B: [547,41,685,48,636,'636 220h-261v-261h-66v261h-261v66h261v261h66v-261h261v-66'], + 0x2C: [102,141,250,55,195,'83 -141l-10 19c55 37 83 74 83 107c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87c0 -60 -43 -123 -112 -156'], + 0x2D: [257,-194,333,39,285,'285 194h-246v63h246v-63'], + 0x2E: [100,11,250,70,181,'181 43c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57'], + 0x2F: [676,14,278,-9,287,'287 676l-228 -690h-68l229 690h67'], + 0x30: [676,14,500,24,476,'476 330c0 -172 -63 -344 -226 -344c-171 0 -226 186 -226 350c0 177 69 340 230 340c131 0 222 -141 222 -346zM380 325c0 208 -44 325 -132 325c-83 0 -128 -118 -128 -321s44 -317 130 -317c85 0 130 115 130 313'], + 0x31: [676,0,500,111,394,'394 0h-276v15c74 4 95 25 95 80v449c0 34 -9 49 -30 49c-10 0 -27 -5 -45 -12l-27 -10v14l179 91l9 -3v-597c0 -43 20 -61 95 -61v-15'], + 0x32: [676,0,500,29,474,'474 137l-54 -137h-391v12l178 189c94 99 130 175 130 260c0 91 -54 141 -139 141c-72 0 -107 -32 -147 -130l-21 5c21 117 85 199 208 199c113 0 185 -77 185 -176c0 -79 -39 -154 -128 -248l-165 -176h234c42 0 63 11 96 67'], + 0x33: [676,14,500,41,431,'61 510l-16 4c29 95 92 162 196 162c93 0 156 -55 156 -137c0 -48 -26 -98 -93 -138c44 -19 62 -31 83 -53c28 -31 44 -77 44 -129c0 -53 -17 -102 -46 -140c-48 -64 -143 -93 -232 -93c-73 0 -112 21 -112 57c0 21 18 36 41 36c17 0 33 -6 61 -26c37 -26 58 -31 86 -31 c74 0 130 68 130 153c0 76 -35 125 -104 145c-22 7 -45 10 -102 10v14c38 13 64 24 84 36c49 28 81 73 81 134c0 68 -42 102 -108 102c-62 0 -108 -32 -149 -106'], + 0x34: [676,0,500,12,473,'473 167h-103v-167h-78v167h-280v64l314 445h44v-445h103v-64zM292 231v343l-240 -343h240'], + 0x35: [688,14,500,31,438,'438 681l-36 -85c-3 -7 -11 -13 -27 -13h-194l-40 -85c143 -27 193 -49 250 -128c26 -36 35 -74 35 -127c0 -96 -30 -158 -98 -208c-47 -34 -102 -49 -170 -49c-75 0 -127 24 -127 62c0 25 17 38 45 38c23 0 42 -5 74 -31c28 -23 51 -32 71 -32c70 0 135 83 135 169 c0 64 -22 114 -67 150c-47 38 -117 70 -213 70c-9 0 -12 2 -12 8c0 2 1 5 1 5l109 237h207c23 0 32 5 48 26'], + 0x36: [684,14,500,34,468,'446 684l2 -16c-157 -26 -269 -134 -296 -285c49 38 83 45 127 45c117 0 189 -80 189 -209c0 -64 -18 -120 -51 -160c-37 -46 -93 -73 -159 -73c-79 0 -142 37 -177 101c-28 51 -47 122 -47 192c0 108 38 203 109 276c86 90 165 114 303 129zM378 188 c0 128 -42 194 -135 194c-57 0 -116 -24 -116 -116c0 -152 48 -252 142 -252c72 0 109 72 109 174'], + 0x37: [662,8,500,20,449,'449 646l-212 -654h-65l198 596h-215c-58 0 -75 -14 -117 -82l-18 9l60 147h369v-16'], + 0x38: [676,14,500,56,445,'445 155c0 -103 -77 -169 -197 -169c-113 0 -192 69 -192 163c0 69 23 108 130 183c-103 85 -124 123 -124 188c0 96 83 156 194 156c99 0 168 -65 168 -143c0 -75 -35 -109 -134 -162c123 -82 155 -136 155 -216zM355 533c0 69 -41 115 -109 115 c-67 0 -110 -37 -110 -99s37 -108 125 -160c68 40 94 82 94 144zM271 272l-59 40c-59 -48 -80 -89 -80 -154c0 -92 51 -144 127 -144c65 0 110 45 110 110c0 62 -30 102 -98 148'], + 0x39: [676,22,500,30,459,'59 -22l-3 20c152 27 264 132 304 296c-43 -42 -91 -57 -150 -57c-108 0 -180 81 -180 203c0 135 89 236 208 236c64 0 118 -28 157 -76c40 -50 64 -122 64 -206c0 -115 -40 -224 -120 -297c-85 -77 -150 -101 -280 -119zM362 355v39c0 168 -45 254 -132 254 c-30 0 -56 -12 -73 -34c-20 -27 -35 -86 -35 -140c0 -119 48 -194 123 -194c44 0 117 22 117 75'], + 0x3A: [459,11,278,81,192,'192 403c0 -30 -25 -55 -55 -55s-56 25 -56 55c0 32 24 56 56 56c30 0 55 -26 55 -56zM192 44c0 -30 -25 -55 -55 -55s-56 25 -56 55c0 32 24 56 56 56c30 0 55 -26 55 -56'], + 0x3B: [459,141,278,80,219,'191 403c0 -30 -25 -55 -55 -55s-56 25 -56 55c0 32 24 56 56 56c30 0 55 -26 55 -56zM107 -141l-10 19c55 36 83 73 83 106c0 7 -6 14 -14 14c-6 0 -19 -4 -28 -4c-37 0 -58 19 -58 52s26 56 59 56c45 0 80 -35 80 -89c0 -63 -42 -121 -112 -154'], + 0x3C: [534,24,685,56,621,'621 -24l-565 273v10l565 275v-65l-432 -215l432 -215v-63'], + 0x3D: [386,-120,685,48,637,'637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x3E: [534,24,685,56,621,'621 249l-565 -273v63l432 215l-432 215v65l565 -275v-10'], + 0x3F: [676,8,444,68,414,'244 164h-17c1 40 9 90 44 177c26 64 51 127 51 187c0 69 -48 118 -109 118c-48 0 -94 -30 -94 -62c0 -37 38 -41 38 -74c0 -25 -16 -43 -41 -43c-28 0 -48 25 -48 66c0 83 68 143 164 143c97 0 182 -61 182 -158c0 -61 -19 -95 -105 -197c-36 -43 -54 -89 -65 -157z M290 45c0 -29 -22 -53 -52 -53c-34 0 -54 25 -54 53c0 30 23 53 54 53c28 0 52 -25 52 -53'], + 0x40: [676,14,921,116,809,'688 73l12 -30c-93 -44 -148 -57 -218 -57c-208 0 -366 144 -366 341c0 114 57 217 141 280c62 46 138 69 224 69c185 0 328 -128 328 -293c0 -129 -85 -240 -184 -240c-44 0 -84 29 -89 73h-2c-31 -45 -78 -72 -125 -72c-49 0 -88 43 -88 112c0 65 27 131 66 182 c35 46 76 70 128 70c36 0 60 -17 73 -52h2l9 38h69l-65 -254c-1 -5 -2 -10 -2 -17c0 -33 13 -47 42 -47c66 0 126 96 126 197c0 149 -130 272 -287 272c-95 0 -169 -42 -220 -115c-39 -56 -62 -134 -62 -208c0 -174 116 -297 287 -297c67 0 129 13 201 48zM572 404 c0 39 -17 60 -46 60s-67 -24 -98 -70c-22 -33 -36 -76 -36 -120c0 -54 23 -87 60 -87c27 0 56 22 76 58c26 49 44 114 44 159'], + 0x41: [674,0,722,15,707,'707 0h-255v19c36 0 43 2 55 9c8 4 14 15 14 24c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275l-115 -275h231'], + 0x42: [662,0,667,17,593,'422 349v-1c66 -11 93 -29 122 -55c32 -29 49 -71 49 -115c0 -111 -94 -178 -239 -178h-337v19c79 2 96 18 96 94v437c0 79 -15 88 -96 93v19h280c173 0 262 -61 262 -167c0 -41 -16 -82 -41 -104c-24 -21 -44 -29 -96 -42zM215 366h92c101 0 150 41 150 124 c0 84 -58 135 -177 135h-41c-17 0 -24 -9 -24 -32v-227zM215 326v-244c0 -34 16 -45 62 -45c84 0 119 4 163 43c25 22 38 56 38 99c0 48 -14 85 -47 107c-60 40 -98 36 -216 40'], + 0x43: [676,14,667,28,633,'614 131l19 -18c-58 -83 -155 -127 -273 -127c-91 0 -178 32 -236 89c-61 60 -96 151 -96 250c0 100 33 183 90 247c64 71 150 104 243 104c39 0 79 -4 119 -15c21 -6 52 -18 69 -18c19 0 36 12 42 33h20l9 -227h-23c-12 55 -27 84 -52 111c-44 47 -96 76 -161 76 c-151 0 -240 -122 -240 -295c0 -110 25 -188 72 -239c44 -47 109 -72 178 -72c90 0 145 30 220 101'], + 0x44: [662,0,722,16,685,'16 662h270c129 0 232 -32 300 -91c65 -56 99 -134 99 -237c0 -119 -47 -213 -136 -270c-62 -40 -151 -64 -252 -64h-281v19c78 5 88 18 88 96v435c0 79 -12 88 -88 93v19zM206 583v-499c0 -35 9 -47 48 -47c103 0 158 12 218 52c70 47 104 126 104 239 c0 104 -32 173 -95 228c-59 52 -122 69 -222 69c-38 0 -53 -9 -53 -42'], + 0x45: [662,0,611,12,597,'597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -154 105h-131c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47h36c143 0 186 26 231 132 h28'], + 0x46: [662,0,556,11,546,'546 519h-25c-15 89 -33 105 -154 105h-132c-29 0 -34 -8 -34 -39v-217h142c84 0 104 17 113 95h23v-233h-23c-8 82 -27 97 -113 97h-142v-215c0 -76 14 -89 91 -93v-19h-281v19c76 5 88 17 88 104v428c0 73 -10 86 -87 92v19h529'], + 0x47: [676,14,722,32,709,'709 354v-18c-58 -5 -70 -15 -70 -80v-200c-55 -45 -151 -70 -254 -70c-102 0 -204 38 -270 107c-56 59 -83 136 -83 234c0 110 40 202 107 263c60 55 142 86 239 86c54 0 88 -8 133 -23c19 -7 34 -10 44 -10c21 0 39 14 45 33h22l8 -211h-23c-25 61 -41 87 -71 116 c-38 36 -90 55 -146 55c-69 0 -124 -25 -167 -69c-53 -53 -77 -144 -77 -243c0 -186 106 -298 263 -298c77 0 133 28 133 61v157c0 78 -10 86 -89 92v18h256'], + 0x48: [662,0,722,18,703,'703 0h-279v19c78 5 88 21 88 105v191h-303v-202c0 -73 13 -90 87 -94l1 -19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h280v-19c-73 -6 -89 -17 -89 -95v-189h303v189c0 79 -13 89 -89 95v19h280v-19c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19'], + 0x49: [662,0,333,18,315,'315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x4A: [662,14,373,-6,354,'354 662v-19c-81 -6 -92 -17 -92 -94v-364c0 -137 -61 -199 -167 -199c-60 0 -101 25 -101 72c0 26 22 52 49 52c23 0 38 -14 49 -42c10 -25 11 -44 31 -44c31 0 37 20 37 70v456c0 81 -12 86 -93 93v19h287'], + 0x4B: [662,0,722,33,723,'723 0h-303v19l27 1c29 1 42 10 42 24c0 27 -58 88 -137 170l-100 103l-26 -21v-185c0 -77 16 -86 89 -92v-19h-282v19c79 4 91 19 91 106v424c0 74 -11 89 -90 94v19h282v-19c-83 -6 -90 -18 -90 -95v-200l178 164c48 45 78 74 78 99c0 20 -8 30 -41 31l-25 1v19h259 v-19c-68 -5 -87 -15 -156 -81l-186 -178l234 -256c83 -91 110 -109 156 -109v-19'], + 0x4C: [662,0,611,12,598,'598 174l-48 -174h-538v19c74 4 87 20 87 96v431c0 77 -9 91 -87 97v19h283v-19c-82 -5 -94 -18 -94 -95v-464c0 -38 17 -45 90 -45h70c81 0 135 18 169 61c13 17 26 39 42 74h26'], + 0x4D: [662,0,889,12,864,'864 0h-280v19c79 5 90 21 90 104v449l-255 -572h-14l-252 549v-398c0 -110 16 -128 93 -132v-19h-234v19c83 6 97 20 97 132v398c0 76 -13 89 -95 94v19h198l231 -502l221 502h199v-19c-72 -1 -87 -18 -87 -93v-438c0 -71 15 -88 88 -93v-19'], + 0x4E: [662,11,722,12,707,'707 662v-19c-38 -4 -53 -7 -66 -18c-19 -17 -29 -39 -29 -118v-518h-18l-441 549v-388c0 -103 16 -120 93 -131v-19h-234v19c82 9 97 24 97 131v440c-33 41 -48 53 -97 53v19h170l386 -483v340c0 51 -4 81 -19 98c-17 19 -35 21 -79 26v19h237'], + 0x4F: [676,14,722,34,688,'688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265 c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0x50: [662,0,557,16,542,'16 662h259c100 0 172 -25 217 -63c33 -28 50 -69 50 -119c0 -53 -20 -98 -57 -131c-58 -52 -107 -61 -214 -61c-26 0 -42 1 -69 3v-179c0 -76 13 -89 94 -93v-19h-280v19c78 6 84 17 84 103v429c0 74 -10 86 -84 92v19zM202 589v-258c23 -2 41 -3 61 -3 c110 0 170 57 170 147c0 110 -60 150 -196 150c-29 0 -35 -9 -35 -36'], + 0x51: [676,177,722,34,701,'701 -177h-48c-156 0 -279 38 -347 124l-41 52c-78 27 -117 50 -155 101c-48 64 -76 142 -76 232c0 212 140 344 327 344c191 0 327 -136 327 -343c0 -119 -35 -199 -108 -269c-44 -43 -86 -58 -154 -71c73 -104 161 -145 275 -152v-18zM574 338c0 115 -34 209 -91 257 c-36 30 -78 45 -125 45c-54 0 -107 -26 -144 -71c-40 -47 -66 -139 -66 -234c0 -96 20 -182 58 -235c33 -48 98 -78 155 -78c62 0 112 29 149 72c40 46 64 144 64 244'], + 0x52: [662,0,667,17,660,'660 0h-162l-238 308l-56 -2v-194c0 -76 12 -88 89 -93v-19h-276v19c75 6 85 17 85 105v427c0 74 -8 86 -85 92v19h272c95 0 166 -24 209 -59c33 -27 49 -76 49 -120c0 -87 -56 -145 -181 -164l200 -253c29 -37 50 -43 94 -47v-19zM204 583v-240c96 2 131 9 177 34 c36 20 57 64 57 114c0 90 -59 134 -183 134c-34 0 -51 -7 -51 -42'], + 0x53: [676,14,556,43,491,'469 463h-25c-12 44 -23 70 -41 94c-35 45 -85 78 -145 78c-62 0 -101 -40 -101 -95c0 -68 74 -110 179 -171c106 -62 155 -120 155 -196c0 -112 -88 -187 -204 -187c-42 0 -81 7 -118 23c-19 8 -36 11 -47 11c-15 0 -28 -12 -28 -33h-22l-29 212h22 c46 -121 111 -177 206 -177c70 0 119 46 119 112c0 35 -10 58 -29 79c-35 38 -104 82 -168 116c-90 48 -122 110 -122 172c0 109 75 175 174 175c41 0 67 -6 105 -22c18 -8 34 -12 44 -12c17 0 28 12 32 34h21'], + 0x54: [662,0,611,17,593,'593 492h-24c-22 110 -48 128 -154 128h-59v-509c0 -76 14 -88 96 -92v-19h-292v19c83 5 94 16 94 104v497h-60c-106 0 -133 -18 -153 -128h-24l7 170h562'], + 0x55: [662,14,722,14,705,'705 662v-19c-84 -8 -94 -32 -94 -127v-255c0 -97 -9 -151 -54 -202c-42 -48 -110 -73 -202 -73c-73 0 -129 15 -170 46c-55 41 -81 111 -81 217v310c0 67 -11 78 -90 84v19h283v-19c-80 -7 -91 -19 -91 -94v-312c0 -78 4 -123 44 -162c29 -28 71 -45 128 -45 c64 0 120 22 152 59c33 40 37 80 37 161v263c0 103 -13 125 -94 130v19h232'], + 0x56: [662,11,722,16,697,'697 662v-19c-40 -1 -63 -17 -92 -91l-222 -563h-15l-244 544c-43 97 -58 109 -108 110v19h265v-19l-28 -2c-32 -2 -45 -11 -45 -31c0 -16 9 -40 39 -107l152 -342l147 369c12 30 19 55 19 72c0 39 -32 37 -72 41v19h204'], + 0x57: [662,11,944,5,932,'932 662v-19c-53 -10 -64 -18 -83 -70c-109 -294 -119 -323 -204 -584h-15c-51 142 -108 290 -160 423l-154 -423h-15c-61 180 -133 366 -192 534c-33 95 -53 119 -104 120v19h244v-19c-51 -1 -64 -10 -64 -31c0 -12 4 -28 11 -47l144 -376l104 283l-28 75 c-33 88 -45 95 -102 96v19h265v-19c-50 -1 -77 -14 -77 -35c0 -11 8 -34 17 -58l143 -364l126 339c11 31 17 56 17 77c0 27 -19 40 -70 41v19h197'], + 0x58: [662,0,722,10,704,'704 0h-296v19l26 2c32 2 50 11 50 29c0 16 -17 47 -51 98l-95 141l-119 -149c-37 -46 -53 -74 -53 -89c0 -19 18 -28 76 -32v-19h-232v19c52 5 68 17 145 114l156 195l-106 155c-96 141 -117 153 -183 160v19h301v-19l-29 -1c-28 -1 -46 -6 -46 -29 c0 -29 30 -67 83 -145l44 -64l112 140c30 37 40 52 40 67c0 23 -14 30 -68 32v19h237v-19c-64 -4 -89 -21 -152 -99l-143 -177l192 -274c39 -56 58 -68 111 -74v-19'], + 0x59: [662,0,722,22,703,'703 662v-19c-59 -5 -82 -26 -138 -112l-148 -228v-192c0 -78 19 -88 103 -92v-19h-306v19c89 6 101 15 101 104v171l-131 192c-92 135 -114 155 -162 157v19h279v-19l-24 -1c-32 -1 -47 -10 -47 -26c0 -13 7 -31 18 -47l146 -221l145 222c10 15 14 31 14 42 c-1 22 -16 30 -68 31v19h218'], + 0x5A: [662,0,612,10,598,'598 176l-25 -176h-563v15l437 609h-214c-71 0 -110 -11 -134 -35c-25 -26 -31 -43 -41 -98h-26l21 171h525v-15l-432 -609h252c56 0 92 10 117 28c33 23 42 51 60 110h23'], + 0x5B: [662,156,333,88,299,'299 -156h-211v818h211v-25h-83c-34 0 -52 -12 -52 -48v-666c0 -40 19 -54 52 -54h83v-25'], + 0x5C: [676,14,278,-9,287,'287 -14h-68l-228 690h67'], + 0x5D: [662,156,333,34,245,'245 -156h-211v25h88c35 0 47 15 47 46v668c0 35 -13 54 -51 54h-84v25h211v-818'], + 0x5E: [662,-297,469,24,446,'446 297h-68l-143 289l-143 -289h-68l181 365h60'], + 0x5F: [-75,125,500,0,500,'500 -125h-500v50h500v-50'], + 0x60: [678,-507,333,18,242,'242 507h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23'], + 0x61: [460,10,444,37,442,'442 66v-28c-30 -38 -56 -48 -90 -48c-37 0 -59 20 -64 73h-1c-53 -60 -102 -73 -145 -73c-62 0 -105 38 -105 104c0 52 31 91 70 117c30 20 67 39 180 81v54c0 62 -33 90 -78 90c-40 0 -70 -22 -70 -49c0 -18 6 -21 6 -42c0 -19 -20 -41 -46 -41c-21 0 -43 19 -43 46 c0 26 16 58 51 80c28 18 70 30 115 30c56 0 94 -16 118 -45s28 -50 28 -111v-191c0 -46 13 -66 31 -66c16 0 26 5 43 19zM287 127v141c-62 -22 -103 -43 -128 -66c-24 -22 -34 -46 -34 -77c0 -53 30 -77 69 -77c20 0 41 5 58 16c29 20 35 34 35 63'], + 0x62: [683,10,500,3,468,'153 681v-305c21 51 74 84 135 84c107 0 180 -96 180 -220c0 -148 -102 -250 -234 -250c-81 0 -165 32 -165 66v510c0 50 -8 58 -49 58c-7 0 -12 -1 -17 -2v17l30 9c47 14 73 20 115 35zM153 318v-244c0 -32 45 -52 97 -52c39 0 71 15 93 43c24 30 37 74 37 132 c0 60 -14 118 -39 153c-21 30 -53 47 -89 47c-53 0 -99 -37 -99 -79'], + 0x63: [460,10,444,25,412,'398 156l14 -9c-32 -62 -52 -91 -82 -115c-34 -28 -72 -42 -115 -42c-111 0 -190 93 -190 222c0 83 30 152 84 197c40 33 88 51 135 51c84 0 154 -47 154 -103c0 -23 -21 -42 -47 -42c-22 0 -40 17 -48 46l-6 22c-10 37 -23 48 -59 48c-81 0 -136 -70 -136 -174 c0 -115 63 -195 155 -195c57 0 93 24 141 94'], + 0x64: [683,10,500,27,491,'491 42l-147 -52l-4 3v64c-34 -47 -72 -67 -128 -67c-111 0 -185 87 -185 215c0 142 93 255 208 255c40 0 67 -11 105 -43v156c0 41 -9 51 -46 51c-8 0 -14 0 -22 -1v16c64 17 99 27 147 44l5 -2v-567c0 -46 8 -57 44 -57c5 0 6 0 23 1v-16zM340 102v230 c0 53 -48 100 -102 100c-76 0 -125 -74 -125 -187c0 -123 54 -203 138 -203c31 0 56 11 74 32c9 10 15 21 15 28'], + 0x65: [460,10,444,25,424,'408 164l16 -7c-39 -109 -109 -167 -209 -167c-118 0 -190 89 -190 227c0 141 81 243 207 243c62 0 107 -24 139 -69c20 -28 30 -60 34 -114h-308c5 -76 10 -115 46 -163c28 -37 65 -55 111 -55c67 0 105 31 154 105zM99 309h204c-11 81 -32 115 -98 115 c-56 0 -95 -40 -106 -115'], + 0x66: [683,0,333,20,383,'21 450h82c1 80 9 116 35 161s78 72 141 72c60 0 104 -26 104 -62c0 -23 -18 -41 -42 -41c-17 0 -29 9 -45 36c-18 29 -31 39 -53 39c-38 0 -56 -30 -56 -89v-116h122v-32h-122v-314c0 -75 11 -86 93 -89v-15h-260v15c72 4 83 16 83 89v314h-82v32'], + 0x67: [460,218,500,28,470,'470 388h-83c14 -32 19 -55 19 -84c0 -52 -16 -89 -52 -116c-32 -24 -69 -39 -104 -39c-6 0 -20 1 -38 3l-19 2c-27 -8 -60 -43 -60 -63c0 -16 24 -24 78 -27l129 -6c74 -3 121 -45 121 -107c0 -40 -19 -73 -60 -105c-52 -40 -128 -64 -200 -64c-96 0 -173 44 -173 97 c0 37 26 70 98 122c-42 20 -53 31 -53 53c0 20 13 40 46 69c15 13 29 26 43 40c-67 33 -93 71 -93 134c0 91 74 163 167 163c26 0 53 -5 80 -15l22 -8c20 -7 35 -10 55 -10h77v-39zM152 338v-3c0 -96 41 -161 103 -161c45 0 74 35 74 90c0 41 -11 86 -30 121 c-16 30 -42 47 -73 47c-46 0 -74 -35 -74 -94zM433 -64c0 37 -33 49 -124 49c-49 0 -128 6 -162 13c-40 -48 -49 -63 -49 -86c0 -44 57 -73 145 -73c114 0 190 39 190 97'], + 0x68: [683,0,500,9,487,'487 0h-212v15c58 6 68 18 68 87v198c0 70 -25 106 -74 106c-40 0 -70 -17 -112 -63v-241c0 -69 10 -81 68 -87v-15h-216v15c58 8 64 17 64 87v471c0 43 -8 51 -51 51c-4 0 -9 0 -12 -1v16l27 8c57 17 80 24 115 36l5 -3v-304c46 60 88 84 147 84c82 0 123 -54 123 -159 v-199c0 -69 6 -77 60 -87v-15'], + 0x69: [683,0,278,16,253,'180 632c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51zM253 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l155 55l4 -4v-351c0 -74 8 -85 74 -90v-15'], + 0x6A: [683,218,278,-70,194,'194 632c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51s51 -23 51 -51zM193 457v-457c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v379 c0 43 -9 60 -32 60c-10 0 -24 0 -40 -3l-5 -1v16c59 18 97 31 156 54'], + 0x6B: [683,0,500,7,505,'505 0h-218v15h19c12 0 21 6 21 15c0 5 -3 13 -11 23l-150 198v-184c0 -35 15 -49 55 -51l20 -1v-15h-234v15c72 12 75 15 75 67v482c0 48 -9 61 -43 61c-10 0 -19 -1 -32 -2v16l30 8c60 16 86 24 125 36l4 -2v-420l137 122c14 13 23 26 23 35c0 13 -11 17 -50 18v14h204 v-15c-64 0 -93 -12 -216 -126l-29 -27l153 -194c41 -52 73 -70 117 -73v-15'], + 0x6C: [683,0,278,19,257,'257 0h-236v15c63 5 77 22 77 77v469c0 48 -10 64 -42 64c-8 0 -21 0 -37 -2v16c69 17 106 27 158 44l5 -4v-592c0 -55 11 -68 75 -72v-15'], + 0x6D: [460,0,778,16,775,'775 0h-218v15c56 6 65 17 65 75v206c0 79 -20 112 -77 112c-47 0 -77 -18 -107 -61v-252c0 -65 15 -79 72 -80v-15h-224v15c57 4 68 10 68 71v211c0 69 -22 111 -65 111c-37 0 -86 -19 -106 -43c-7 -8 -13 -15 -13 -17v-278c0 -43 15 -53 68 -55v-15h-222v15 c56 1 70 15 70 73v248c0 49 -9 66 -35 66c-11 0 -19 -1 -32 -4v17c55 15 88 26 139 45l8 -3v-74h2c66 68 108 77 153 77c54 0 88 -27 106 -84c54 58 105 84 163 84c81 0 116 -62 116 -180v-203c0 -45 13 -58 43 -60l26 -2v-15'], + 0x6E: [460,0,500,16,485,'485 0h-208l1 15c50 4 62 24 62 90v199c0 71 -24 101 -73 101c-33 0 -57 -12 -103 -57v-276c0 -39 14 -53 65 -57v-15h-211v15c51 4 62 20 62 79v243c0 49 -7 65 -35 65c-11 0 -22 -1 -29 -4v17c55 16 88 27 137 45l8 -3v-78h1c52 59 98 81 144 81c76 0 118 -55 118 -154 v-221c0 -54 12 -65 61 -70v-15'], + 0x6F: [460,10,500,29,470,'470 231c0 -139 -90 -241 -225 -241c-121 0 -216 99 -216 238s90 232 225 232c122 0 216 -91 216 -229zM380 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50c74 0 118 70 118 186'], + 0x70: [460,217,500,5,470,'159 458v-77c44 55 88 79 144 79c97 0 167 -89 167 -213c0 -145 -91 -257 -210 -257c-42 0 -65 10 -101 43v-157c0 -63 13 -74 88 -75v-18h-242v17c59 6 70 17 70 69v468c0 47 -7 57 -41 57c-9 0 -16 0 -25 -1v16c55 17 91 30 144 51zM159 334v-246c0 -30 57 -66 104 -66 c72 0 121 75 121 185c0 117 -49 193 -123 193c-46 0 -102 -36 -102 -66'], + 0x71: [460,217,500,24,488,'488 -217h-236v17c71 5 89 20 89 76v188c-44 -48 -99 -74 -157 -74c-94 0 -160 89 -160 215c0 144 96 255 220 255c40 0 70 -8 116 -35l54 32h11v-598c0 -42 10 -53 63 -59v-17zM341 127v206c0 66 -31 98 -93 98c-85 0 -138 -72 -138 -190c0 -69 22 -134 56 -163 c20 -18 46 -27 75 -27c32 0 66 12 88 32c8 7 12 21 12 44'], + 0x72: [460,0,333,5,335,'160 458v-92c50 72 78 94 120 94c34 0 55 -20 55 -53c0 -28 -15 -45 -39 -45c-13 0 -24 5 -40 20c-11 10 -20 15 -26 15c-28 0 -70 -50 -70 -82v-225c0 -57 17 -72 85 -75v-15h-240v15c64 12 71 19 71 69v250c0 44 -9 60 -34 60c-12 0 -21 -1 -35 -4v16 c59 19 95 33 148 54'], + 0x73: [459,10,389,51,348,'156 301l104 -63c64 -39 88 -66 88 -123c0 -67 -64 -125 -140 -125c-21 0 -50 1 -73 9c-24 8 -35 9 -46 9c-12 0 -18 -2 -24 -12h-13v157h16c21 -97 58 -141 127 -141c51 0 83 33 83 74c0 31 -20 57 -53 75l-54 30c-83 46 -120 94 -120 145c0 79 56 123 138 123 c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68'], + 0x74: [579,10,278,13,279,'266 77l13 -11c-33 -52 -71 -76 -121 -76c-58 0 -88 43 -88 127v301h-53c-3 2 -4 4 -4 7c0 6 6 12 17 19c26 15 59 52 97 107c6 9 14 18 20 28c5 0 7 -3 7 -13v-116h101v-32h-101v-286c0 -64 15 -90 52 -90c22 0 38 9 60 35'], + 0x75: [450,10,500,9,480,'480 50v-14c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v251c0 50 -14 64 -62 67v14h146v-323c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58v231c0 53 -14 61 -74 65v17h158v-343c0 -46 11 -57 57 -57h6'], + 0x76: [450,14,500,19,477,'477 450v-15c-30 -3 -38 -11 -65 -78l-128 -321c-15 -37 -22 -50 -28 -50s-11 8 -18 26c-3 5 -4 12 -8 21l-120 287c-43 103 -53 113 -91 115v15h196v-15c-34 -3 -46 -10 -46 -27c0 -10 3 -23 9 -38l102 -256l99 259c4 10 6 20 6 30c0 19 -15 29 -47 32v15h139'], + 0x77: [450,14,722,21,694,'694 450v-15c-20 -7 -25 -14 -41 -54l-138 -346c-16 -40 -21 -49 -28 -49s-9 5 -24 43l-91 236l-112 -240c-12 -26 -20 -39 -25 -39c-6 0 -14 13 -26 44l-135 342c-21 54 -30 61 -53 63v15h180v-15c-35 -4 -46 -12 -46 -33c0 -10 2 -20 6 -30l99 -261l91 199l-20 56 c-19 54 -32 65 -69 69v15h203v-15c-47 -7 -58 -14 -58 -35c0 -17 5 -29 17 -60l84 -224l90 222c11 27 17 51 17 67s-10 23 -44 30v15h123'], + 0x78: [450,0,500,17,479,'479 0h-201v15c33 2 40 6 40 24c0 7 -2 12 -6 18l-91 140l-79 -123c-14 -22 -20 -34 -20 -41c0 -13 11 -18 40 -18v-15h-145v15c33 3 45 10 73 51l114 165l-94 144c-31 47 -47 60 -77 60h-9v15h207v-15c-30 -1 -43 -7 -43 -22c0 -13 17 -46 46 -89c5 -7 10 -13 14 -20 c10 13 20 29 30 44c22 35 37 53 37 65c0 14 -10 20 -40 22v15h158v-15c-32 -1 -62 -17 -81 -44l-83 -120l128 -196c28 -43 51 -60 82 -60v-15'], + 0x79: [450,218,500,14,475,'475 450v-15c-24 -3 -36 -14 -50 -51l-150 -409c-52 -142 -99 -193 -175 -193c-43 0 -70 25 -70 58c0 25 19 46 43 46c18 0 34 -3 52 -13c11 -6 20 -7 26 -7c14 0 34 20 50 44c20 29 40 92 40 108c0 15 -23 61 -42 101l-132 282c-10 22 -27 31 -53 35v14h205v-15 c-43 -2 -57 -9 -57 -27c0 -11 7 -27 13 -41l112 -250l97 276c3 7 4 14 4 18c0 16 -15 24 -46 24v15h133'], + 0x7A: [450,0,444,27,418,'418 136l-15 -136h-376v15l266 405h-135c-63 0 -78 -15 -87 -88h-18l4 118h346v-15l-269 -405h133c58 0 92 10 106 27s17 33 27 83'], + 0x7B: [680,181,480,100,350,'350 -170v-11c-67 1 -93 7 -121 25s-44 59 -44 115v177c0 69 -18 93 -85 114c67 20 85 43 85 113v178c0 57 15 96 44 114s55 24 121 25v-11c-69 -18 -91 -48 -91 -123v-168c0 -83 -19 -109 -94 -129c75 -19 94 -45 94 -128v-168c0 -75 22 -105 91 -123'], + 0x7C: [676,14,200,67,133,'133 -14h-66v690h66v-690'], + 0x7D: [680,181,480,130,380,'295 540v-177c0 -70 18 -93 85 -113c-67 -21 -85 -44 -85 -114v-178c0 -57 -15 -96 -44 -114s-55 -24 -121 -25v11c69 18 91 48 91 123v168c0 83 19 109 94 129c-75 19 -94 44 -94 128v168c0 75 -22 105 -91 123v11c67 -1 93 -7 121 -25s44 -59 44 -115'], + 0x7E: [325,-183,541,40,502,'466 325l36 -51c-43 -64 -79 -86 -125 -86c-45 0 -63 13 -120 43c-18 9 -55 25 -97 25c-35 0 -67 -27 -84 -73l-36 50c34 67 79 87 125 87c33 0 50 -5 117 -34c18 -8 64 -34 96 -34c45 0 66 33 88 73'], + 0xA0: [0,0,250,0,0,''], + 0xA3: [676,8,500,12,490,'344 328h-121c1 -20 1 -41 1 -61c0 -29 -1 -36 -25 -156c65 -27 100 -35 149 -35c46 0 82 15 113 49c10 11 17 16 23 16c4 0 6 -1 6 -5c0 -18 -24 -65 -45 -88c-33 -35 -76 -55 -122 -55c-44 0 -77 14 -145 61c-40 -48 -63 -62 -98 -62c-42 0 -68 24 -68 62 c0 46 36 76 91 76c15 0 27 -1 46 -5c2 8 3 14 3 21c0 19 -5 79 -16 149l-5 33h-108v45h107c-5 26 -7 45 -7 69c0 143 76 234 195 234c75 0 130 -40 130 -93c0 -31 -21 -53 -50 -53c-30 0 -38 14 -39 67c-1 35 -19 52 -56 52c-60 0 -95 -51 -95 -137c0 -39 3 -70 11 -139h125 v-45zM142 76c0 9 -29 18 -54 18c-32 0 -50 -13 -50 -37c0 -22 17 -37 42 -37c19 0 33 7 47 25c10 12 15 23 15 31'], + 0xA5: [662,0,500,-53,512,'512 662v-19c-51 -11 -83 -37 -118 -107l-92 -184h146v-40h-166l-7 -14v-76h173v-40h-173v-73c0 -70 16 -88 80 -90v-19h-244v19c67 3 79 18 79 101v62h-174v40h174v76l-7 14h-167v40h144l-95 173c-55 99 -72 115 -118 118v19h243v-19c-47 -1 -65 -8 -65 -28 c0 -14 5 -30 13 -46l118 -221l112 220c9 17 14 34 14 45c0 17 -21 30 -51 30h-14v19h195'], + 0xA7: [676,148,500,70,426,'200 513l137 -113c58 -48 89 -102 89 -155c0 -73 -48 -120 -122 -120h-12c75 -65 94 -94 94 -146c0 -76 -57 -127 -144 -127c-78 0 -138 44 -138 100c0 31 23 54 54 54c27 0 48 -18 48 -42c0 -14 -7 -28 -23 -41c-7 -6 -11 -11 -11 -15c0 -18 34 -35 71 -35 c53 0 87 30 87 77c0 39 -24 71 -89 115c-122 84 -171 147 -171 221c0 68 49 119 114 119c7 0 16 0 26 -1c-80 66 -100 96 -100 150c0 73 56 122 139 122c73 0 128 -42 128 -98c0 -33 -19 -53 -51 -53c-28 0 -47 18 -47 43c0 16 10 33 26 44c6 5 8 8 8 11c0 18 -27 32 -62 32 c-51 0 -85 -29 -85 -71c0 -26 14 -54 34 -71zM374 211c0 27 -18 59 -53 94c-48 47 -99 78 -131 78c-38 0 -67 -28 -67 -66c0 -32 12 -54 46 -88c61 -60 98 -83 136 -83c36 0 69 31 69 65'], + 0xA8: [622,-523,333,18,316,'316 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM117 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50'], + 0xAC: [393,-115,600,48,552,'552 115h-66v212h-438v66h504v-278'], + 0xAE: [676,14,760,38,722,'567 152h-64c-17 0 -43 27 -71 79c-12 22 -14 26 -52 83h-48v-92c0 -45 2 -52 47 -55v-15h-160l1 15c49 4 48 9 48 55v230c0 42 -2 49 -47 53v15h172c75 0 118 -38 118 -98c0 -40 -25 -81 -79 -98l57 -79c26 -35 54 -65 78 -85v-8zM332 333h43c44 0 69 37 69 85 c0 46 -20 83 -74 83h-38v-168zM722 329c0 -192 -150 -343 -341 -343c-193 0 -343 152 -343 346c0 193 153 344 347 344c186 0 337 -155 337 -347zM667 330c0 169 -129 304 -289 304c-154 0 -285 -140 -285 -303c0 -166 131 -303 288 -303c156 0 286 138 286 302'], + 0xAF: [601,-547,333,11,322,'322 547h-311v54h311v-54'], + 0xB0: [676,-390,400,57,343,'343 533c0 -80 -63 -143 -143 -143c-81 0 -143 63 -143 144c0 80 63 142 145 142c78 0 141 -64 141 -143zM304 534c0 59 -48 108 -106 108c-55 0 -102 -50 -102 -109c0 -60 47 -109 104 -109s104 50 104 110'], + 0xB1: [502,87,685,48,637,'637 242h-262v-209h-66v209h-261v66h261v194h66v-194h262v-66zM637 -87h-589v66h589v-66'], + 0xB4: [678,-507,333,93,317,'93 507l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40'], + 0xB5: [450,218,500,36,512,'430 450v-354c0 -46 8 -69 31 -69c15 0 27 7 51 29v-9c-33 -43 -51 -57 -89 -57c-37 0 -74 31 -76 90h-2c-33 -61 -76 -90 -131 -90c-58 0 -92 23 -123 74c2 -51 37 -152 37 -205c0 -51 -17 -77 -48 -77c-29 0 -44 33 -44 77c0 51 24 169 24 195v396h88v-295 c0 -69 32 -103 84 -103c51 0 90 22 110 63v335h88'], + 0xB7: [310,-199,250,70,181,'181 253c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57'], + 0xD7: [529,25,640,43,597,'597 22l-46 -47l-231 230l-231 -230l-46 46l230 231l-230 231l47 46l230 -230l231 230l46 -45l-230 -232'], + 0xF0: [686,10,500,29,471,'424 656l-91 -48c96 -81 138 -197 138 -323c0 -74 -20 -145 -53 -198c-40 -63 -93 -97 -173 -97c-125 0 -216 87 -216 227c0 142 97 243 217 243c48 0 73 -12 121 -60c-14 73 -39 121 -97 175l-123 -65l-33 30l121 64c-42 35 -79 46 -134 55l42 24c66 -4 112 -17 153 -47 l95 50zM381 202c0 137 -59 230 -146 230c-68 0 -116 -67 -116 -151c0 -100 37 -263 144 -263c69 0 118 69 118 184'], + 0xF7: [516,10,564,30,534,'338 459c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57zM534 220h-504v66h504v-66zM338 44c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57'], + 0x127: [683,0,500,8,487,'487 0h-212v15c58 6 68 18 68 87v198c0 70 -25 106 -74 106c-40 0 -70 -17 -112 -63v-241c0 -69 10 -81 68 -87v-15h-216v15c58 8 64 17 64 87v410h-65v54h65v7c0 43 -8 51 -51 51c-4 0 -9 0 -12 -1v16l27 8c57 17 80 24 115 36l5 -3v-114h162v-54h-162v-136 c46 60 88 84 147 84c82 0 123 -54 123 -159v-199c0 -69 6 -77 60 -87v-15'], + 0x131: [460,0,278,16,253,'253 0h-237v15c69 4 79 13 79 89v227c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l154 55l5 -4v-351c0 -74 8 -85 74 -90v-15'], + 0x237: [460,218,278,-70,193,'193 457v-457c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v379c0 43 -9 60 -32 60c-10 0 -24 0 -40 -3l-5 -1v16c59 18 97 31 156 54'], + 0x2C6: [674,-507,333,11,322,'322 507h-34l-122 103l-121 -103h-34l124 167h62'], + 0x2C7: [674,-507,333,11,322,'322 674l-124 -167h-64l-123 167h35l120 -103l121 103h35'], + 0x2C9: [601,-547,334,11,322,'322 547h-311v54h311v-54'], + 0x2CA: [679,-509,333,93,320,'93 509l136 136c18 18 44 34 59 34c19 0 32 -11 32 -36c0 -14 -19 -29 -35 -39l-152 -95h-40'], + 0x2CB: [679,-509,333,22,249,'249 509h-40l-152 95c-16 10 -35 25 -35 39c0 25 13 36 32 36c15 0 41 -16 59 -34'], + 0x2D8: [664,-507,335,27,308,'279 664h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97'], + 0x2D9: [622,-523,333,118,217,'217 572c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50'], + 0x2DA: [711,-512,333,67,266,'266 611c0 -55 -45 -99 -101 -99c-55 0 -98 44 -98 100c0 55 45 99 101 99c53 0 98 -46 98 -100zM232 612c0 36 -30 65 -67 65c-34 0 -64 -30 -64 -65c0 -37 29 -66 64 -66c38 0 67 29 67 66'], + 0x2DC: [638,-532,333,1,331,'302 638h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50'], + 0x300: [678,-507,0,-371,-147,'-147 507h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23'], + 0x301: [678,-507,0,-371,-147,'-371 507l145 148c17 18 28 23 43 23c22 0 36 -11 36 -32c0 -16 -11 -31 -30 -43l-154 -96h-40'], + 0x302: [674,-507,0,-386,-75,'-75 507h-34l-122 103l-121 -103h-34l124 167h62'], + 0x303: [638,-532,0,-395,-65,'-94 638h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24c-38 18 -46 22 -64 22c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18c43 -22 57 -28 77 -28c23 0 36 14 53 51'], + 0x304: [601,-547,0,-385,-74,'-74 547h-311v54h311v-54'], + 0x306: [664,-507,0,-373,-92,'-121 664h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97'], + 0x307: [622,-523,0,-280,-181,'-181 572c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50'], + 0x308: [622,-523,0,-379,-81,'-81 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM-280 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50'], + 0x30A: [711,-512,0,-329,-130,'-130 611c0 -55 -45 -99 -101 -99c-55 0 -98 44 -98 100c0 55 45 99 101 99c53 0 98 -46 98 -100zM-164 612c0 36 -30 65 -67 65c-34 0 -64 -30 -64 -65c0 -37 29 -66 64 -66c38 0 67 29 67 66'], + 0x30B: [678,-507,0,-401,-22,'-245 507l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM-401 507l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40'], + 0x30C: [674,-507,0,-385,-74,'-74 674l-124 -167h-64l-123 167h35l120 -103l121 103h35'], + 0x338: [662,156,0,-380,31,'31 662l-357 -818h-54l357 818h54'], + 0x391: [674,0,722,15,707,'707 0h-255v19l45 4c14 1 24 15 24 29c0 15 -7 42 -19 70l-41 94h-262l-46 -114c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 67 27 126 167l206 488h20l246 -563c28 -65 42 -86 94 -92v-19zM447 257l-116 275l-115 -275h231'], + 0x392: [662,0,667,17,593,'422 349v-1c101 -18 171 -71 171 -170c0 -111 -94 -178 -239 -178h-337v19c79 2 96 18 96 94v437c0 79 -15 88 -96 93v19h280c173 0 262 -61 262 -167c0 -90 -51 -128 -137 -146zM215 366h63c121 0 179 41 179 124c0 95 -58 135 -218 135c-17 0 -24 -9 -24 -32v-227z M215 326v-244c0 -34 16 -45 62 -45c112 0 201 23 201 142c0 123 -88 147 -198 147h-65'], + 0x393: [662,0,587,11,577,'577 494h-25c-10 99 -39 130 -140 130h-175c-28 0 -36 -8 -36 -40v-471c0 -78 13 -90 91 -94v-19h-281v19c76 5 88 17 88 105v427c0 73 -10 86 -87 92v19h560'], + 0x394: [674,0,722,48,675,'675 0h-627l299 674h20zM524 92l-193 440l-195 -440h388'], + 0x395: [662,0,611,12,597,'597 169l-46 -169h-539v19c77 5 87 18 87 95v436c0 74 -12 89 -87 93v19h530l4 -143h-25c-15 90 -38 105 -285 105c-28 0 -35 -4 -35 -36v-220h151c86 0 101 17 113 96h23v-234h-23c-12 84 -27 97 -113 97h-151v-243c0 -42 27 -47 101 -47c179 0 222 26 267 132h28'], + 0x396: [662,0,612,10,598,'598 176l-25 -176h-563v15l437 609h-214c-71 0 -110 -11 -134 -35c-25 -26 -31 -43 -41 -98h-26l21 171h525v-15l-432 -609h252c56 0 92 10 117 28c33 23 42 51 60 110h23'], + 0x397: [662,0,722,18,703,'703 0h-279v19c78 5 88 21 88 105v191h-303v-202c0 -73 13 -90 87 -94l1 -19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h280v-19c-73 -6 -89 -17 -89 -95v-189h303v189c0 79 -13 89 -89 95v19h280v-19c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19'], + 0x398: [676,14,722,34,688,'501 236h-25c-9 38 -22 62 -58 62h-105c-38 0 -49 -21 -63 -62h-25c7 26 10 59 10 87c0 30 -4 86 -11 118h25c14 -41 24 -58 63 -58h106c34 0 51 24 58 58h25c-7 -28 -11 -51 -11 -80c0 -30 4 -94 11 -125zM688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348 c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0x399: [662,0,333,18,315,'315 0h-297v19c84 3 97 15 97 93v439c0 79 -12 87 -97 92v19h297v-19c-84 -4 -98 -16 -98 -92v-439c0 -75 16 -90 98 -93v-19'], + 0x39A: [662,0,731,33,723,'723 0h-303v19l27 1c29 1 42 10 42 24c0 27 -58 88 -137 170l-100 103l-26 -21v-185c0 -77 16 -86 89 -92v-19h-282v19c79 4 91 19 91 106v424c0 74 -11 89 -90 94v19h282v-19c-83 -6 -90 -18 -90 -95v-200l178 164c48 45 78 74 78 99c0 20 -8 30 -41 31l-25 1v19h259 v-19c-68 -5 -87 -15 -156 -81l-186 -178l234 -256c83 -91 110 -109 156 -109v-19'], + 0x39B: [674,0,702,15,687,'687 0h-255v19c38 2 69 -1 69 33c0 15 -6 37 -19 70l-160 411h-2l-167 -431c-5 -13 -9 -30 -9 -42c0 -31 22 -41 70 -41v-19h-199v19c58 6 70 27 126 167l196 488h20l236 -563c27 -65 42 -86 94 -92v-19'], + 0x39C: [662,0,889,12,864,'864 0h-280v19c79 5 90 21 90 104v449l-255 -572h-14l-252 549v-398c0 -110 16 -128 93 -132v-19h-234v19c83 6 97 20 97 132v398c0 76 -13 89 -95 94v19h198l231 -502l221 502h199v-19c-72 -1 -87 -18 -87 -93v-438c0 -71 15 -88 88 -93v-19'], + 0x39D: [662,11,722,12,707,'707 662v-19c-38 -4 -53 -7 -66 -18c-19 -17 -29 -39 -29 -118v-518h-18l-441 549v-388c0 -103 16 -120 93 -131v-19h-234v19c82 9 97 24 97 131v440c-33 41 -48 53 -97 53v19h170l386 -483v340c0 51 -4 81 -19 98c-17 19 -35 21 -79 26v19h237'], + 0x39E: [662,0,643,29,614,'590 493h-25c-10 64 -28 87 -81 87h-325c-52 0 -71 -20 -81 -89h-25v171h537v-169zM503 218h-23c0 51 -25 77 -69 77h-185c-46 0 -57 -32 -63 -77h-23v233h23c0 -56 22 -76 65 -76h186c47 0 65 21 66 76h23v-233zM614 0h-585v171h25c0 -60 35 -86 85 -86h358 c62 0 92 27 92 86h25v-171'], + 0x39F: [676,14,722,34,688,'688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265 c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0x3A0: [662,0,722,18,703,'703 0h-279v19c78 5 88 21 88 105v464c0 27 -6 36 -36 36h-231c-26 0 -36 -6 -36 -33v-478c0 -73 13 -90 87 -94l1 -19h-279v19c78 5 89 17 89 103v426c0 78 -12 89 -89 95v19h685v-19c-74 -6 -89 -18 -89 -95v-437c0 -71 14 -86 89 -92v-19'], + 0x3A1: [662,0,557,16,542,'16 662h259c100 0 172 -25 217 -63c33 -28 50 -69 50 -119c0 -53 -20 -98 -57 -131c-58 -52 -107 -61 -214 -61c-26 0 -42 1 -69 3v-179c0 -76 13 -89 94 -93v-19h-280v19c78 6 84 17 84 103v429c0 74 -10 86 -84 92v19zM202 589v-258c23 -2 41 -3 61 -3 c110 0 170 57 170 147c0 110 -60 150 -196 150c-29 0 -35 -9 -35 -36'], + 0x3A3: [662,0,624,30,600,'600 204l-28 -204h-542v15l267 309l-267 323v15h526v-161h-25c-15 102 -62 123 -150 123h-208l212 -257l-237 -272h310c77 0 104 33 119 109h23'], + 0x3A4: [662,0,611,17,593,'593 492h-25c-22 110 -47 128 -153 128h-59v-509c0 -76 14 -88 96 -92v-19h-292v19c83 5 94 16 94 104v497h-60c-106 0 -132 -18 -152 -128h-25l7 170h562'], + 0x3A5: [674,0,722,29,703,'703 658v-19c-10 3 -21 5 -32 5c-139 0 -254 -160 -254 -340v-193c0 -78 19 -88 103 -92v-19h-306v19c90 6 101 15 101 104v172c-30 242 -102 328 -205 329c-18 0 -54 -11 -73 -18l-8 16c34 30 88 52 134 52c127 0 205 -82 230 -239h2c29 144 142 236 244 236 c22 0 41 -1 64 -13'], + 0x3A6: [662,0,763,35,728,'432 580v-20c139 0 296 -64 296 -230c0 -158 -161 -227 -271 -227h-25v-17c0 -54 32 -63 103 -67v-19h-306v19c66 0 101 15 101 66v18h-17c-188 0 -278 96 -278 227c0 166 153 230 295 230v20c0 45 -15 63 -101 63v19h306v-19c-87 0 -103 -22 -103 -63zM430 523v-383 c93 0 189 65 189 178c0 97 -60 205 -189 205zM332 140v383c-111 0 -188 -107 -188 -205c0 -94 67 -178 188 -178'], + 0x3A7: [662,0,722,10,704,'704 0h-296v19l26 2c32 2 50 11 50 29c0 16 -17 47 -51 98l-95 141l-119 -149c-37 -46 -53 -74 -53 -89c0 -19 18 -28 76 -32v-19h-232v19c52 5 68 17 145 114l156 195l-106 155c-96 141 -117 153 -183 160v19h301v-19l-29 -1c-28 -1 -46 -6 -46 -29 c0 -29 30 -67 83 -145l44 -64l112 140c30 37 40 52 40 67c0 23 -14 30 -68 32v19h237v-19c-64 -4 -89 -21 -152 -99l-143 -177l192 -274c39 -56 58 -68 111 -74v-19'], + 0x3A8: [690,0,746,22,724,'724 690v-19c-39 -8 -47 -72 -47 -104c0 -30 4 -60 4 -90c0 -149 -125 -207 -257 -207v-159c0 -82 29 -90 103 -92v-19h-306v19c86 4 101 18 101 105v146c-132 0 -257 58 -257 207c0 30 4 60 4 90c0 32 -8 96 -47 104v19c117 0 155 -75 155 -181c0 -95 13 -202 134 -202 h11v255c0 70 -40 81 -101 81v19h306v-19c-63 0 -103 -8 -103 -81v-255h11c121 0 134 107 134 202c0 106 38 181 155 181'], + 0x3A9: [676,0,744,29,715,'715 0h-286l7 161c85 21 141 131 141 238c0 142 -74 241 -205 241c-136 0 -205 -121 -205 -241c0 -98 52 -213 140 -238l9 -161h-287v171h25c1 -61 18 -76 62 -76h151l-2 37c-139 39 -212 120 -212 265c0 136 117 279 319 279c198 0 319 -130 319 -279 c0 -146 -80 -227 -215 -265l-2 -37h154c41 0 60 24 62 74h25v-169'], + 0x3B1: [460,10,543,29,529,'514 129h15c0 -76 -29 -139 -79 -139c-41 0 -66 45 -80 110c-35 -63 -76 -110 -154 -110c-108 0 -187 97 -187 233c0 127 74 237 196 237c87 0 136 -74 154 -146l45 136h97l-109 -263c10 -46 39 -135 69 -135c14 0 26 20 33 77zM331 208c-11 74 -37 224 -111 224 c-50 0 -101 -45 -101 -159c0 -74 17 -255 106 -255c69 0 96 137 106 190'], + 0x3B2: [683,217,496,55,466,'344 399l2 -1c78 -18 120 -92 120 -170c0 -122 -87 -238 -204 -238c-43 0 -71 8 -107 41v-167c0 -36 -10 -67 -16 -81h-84c10 21 16 52 16 81v509c0 242 88 310 196 310c79 0 160 -66 160 -155c0 -21 -4 -46 -15 -69c-13 -25 -34 -47 -68 -60zM155 485v-396 c0 -30 51 -67 104 -67c74 0 121 78 121 180c0 135 -54 179 -84 179c-21 0 -26 -7 -46 -7c-23 0 -39 10 -39 25c0 11 10 22 42 22c9 0 37 -8 52 -8c29 0 41 44 41 80c0 69 -19 162 -97 162c-62 0 -94 -62 -94 -155v-15'], + 0x3B3: [457,218,474,10,444,'444 450l-186 -450c6 -27 14 -74 14 -118c0 -53 -11 -100 -61 -100c-33 0 -49 30 -49 68c0 24 6 60 18 98c9 30 22 59 33 88c-8 74 -35 351 -130 351c-21 0 -51 -28 -58 -88h-15c0 81 26 158 87 158c116 0 127 -274 143 -360l104 353h100'], + 0x3B4: [683,10,500,29,470,'221 425v1c-85 35 -137 79 -137 152c0 77 97 105 164 105c65 0 169 -23 169 -75c0 -17 -9 -43 -35 -43c-66 0 -40 76 -170 76c-31 0 -90 -16 -90 -61c0 -58 129 -85 231 -147c73 -45 117 -113 117 -202c0 -138 -86 -241 -224 -241c-131 0 -217 112 -217 226 c0 100 69 193 192 209zM380 208c0 65 -45 174 -125 191c-91 0 -136 -80 -136 -158c0 -45 17 -118 52 -172c21 -32 60 -51 89 -51c77 0 120 71 120 190'], + 0x3B5: [460,10,439,25,407,'393 145l14 -9c-45 -105 -117 -146 -192 -146c-173 0 -190 93 -190 132c0 54 45 104 100 113c-48 14 -77 52 -77 94c0 68 68 131 194 131c67 0 156 -25 156 -103c0 -28 -25 -42 -47 -42c-24 0 -44 17 -44 42c0 19 4 24 4 34c0 27 -31 40 -87 40c-57 0 -93 -45 -93 -97 c0 -46 28 -85 84 -85c30 0 36 9 61 9c26 0 38 -10 38 -21c0 -13 -16 -26 -48 -26c-17 0 -23 6 -44 6c-44 0 -107 -25 -107 -88c0 -58 53 -89 105 -89c74 0 124 37 173 105'], + 0x3B6: [683,218,441,35,407,'153 683l9 -15c-42 -20 -62 -51 -62 -72c0 -41 34 -46 67 -50c26 44 99 110 151 110c26 0 39 -14 39 -34c0 -46 -85 -99 -168 -107c-48 -54 -107 -165 -107 -281c0 -83 29 -154 124 -154c18 0 30 2 51 2c103 0 150 -44 150 -142c0 -91 -83 -158 -143 -158 c-39 0 -72 18 -72 56c0 23 14 41 42 41c21 0 33 -29 61 -29c40 0 81 32 81 81c0 43 -38 68 -90 68c-11 0 -66 -9 -96 -9c-84 0 -155 49 -155 210c0 124 32 203 109 315l-1 3c-37 0 -88 24 -88 75c0 39 32 72 98 90'], + 0x3B7: [460,217,512,10,452,'452 -217h-85c-8 15 -15 31 -15 86v439c0 66 -23 97 -73 97c-33 0 -59 -13 -103 -57v-348h-84v313c0 66 -12 75 -20 75c-21 0 -39 -30 -48 -49l-14 6c25 53 60 110 103 110c46 0 54 -19 60 -76h1c52 59 98 81 144 81c76 0 118 -60 118 -141v-451c0 -39 5 -67 16 -85'], + 0x3B8: [683,10,496,27,468,'468 333c0 -199 -80 -343 -225 -343c-91 0 -153 53 -186 138c-22 56 -30 117 -30 212c0 199 80 343 225 343c86 0 132 -28 170 -92c33 -55 46 -148 46 -258zM117 354h261c-1 122 -14 301 -140 301c-69 0 -121 -60 -121 -270v-31zM378 316v6h-261c3 -143 20 -304 139 -304 c85 0 122 122 122 298'], + 0x3B9: [460,10,275,20,267,'252 107l15 -8c-23 -48 -61 -109 -113 -109c-46 0 -59 45 -59 88v266c0 37 -11 49 -33 49c-9 0 -23 0 -42 -4v18c52 16 103 34 155 53l4 -4v-377c0 -10 5 -23 20 -23c22 0 30 10 53 51'], + 0x3BA: [460,0,500,7,503,'503 0h-237v15h9c24 0 38 10 38 24c0 8 -6 17 -16 29l-131 159v-227h-84v341c0 48 -9 61 -43 61c-10 0 -19 -1 -32 -2v16l30 8c60 16 86 24 125 36l4 -2v-200c169 188 225 202 265 202c38 0 59 -21 59 -48c0 -38 -29 -49 -50 -49c-23 0 -43 11 -64 11 c-47 0 -84 -24 -151 -95l173 -202c36 -42 60 -57 105 -62v-15'], + 0x3BB: [683,11,497,12,492,'477 137h15c-1 -84 -30 -148 -84 -148c-39 0 -64 43 -80 101l-72 265l-144 -355h-100l215 450l-13 45c-20 70 -54 118 -86 118c-27 0 -51 -13 -60 -77h-15c0 65 20 147 82 147c57 0 79 -57 106 -151l112 -390c13 -45 35 -83 64 -83c17 0 53 20 60 78'], + 0x3BC: [450,217,528,55,516,'501 106l15 -7c-23 -47 -60 -109 -110 -109c-46 0 -61 37 -61 81h-2c-45 -65 -96 -81 -125 -81c-27 0 -53 8 -63 28h-2v-149c0 -36 -9 -71 -16 -86h-82c9 21 16 51 16 85v582h84v-312c0 -58 45 -90 86 -90c21 0 56 8 81 31c17 15 23 23 23 57v314h84v-337 c0 -46 9 -57 20 -57c19 0 30 9 52 50'], + 0x3BD: [460,14,455,20,443,'424 460h19c0 -61 0 -143 -37 -228c-46 -106 -144 -213 -288 -246h-23v358c0 32 -11 49 -33 49c-7 0 -25 0 -42 -4v18c52 16 103 34 155 53l4 -4v-366h1c139 23 244 246 244 370'], + 0x3BE: [683,218,441,35,407,'177 683l8 -16c-49 -17 -59 -40 -59 -58c0 -25 13 -44 39 -46c45 32 98 52 138 52c32 0 46 -11 46 -33c0 -36 -71 -66 -137 -66c-48 0 -69 -34 -69 -66c0 -25 12 -47 35 -63c36 30 88 47 128 47c38 0 64 -14 64 -40c0 -45 -76 -55 -109 -55c-22 0 -46 2 -72 9 c-63 -28 -109 -80 -109 -153c0 -84 47 -115 116 -115c18 0 49 2 61 2c104 0 150 -52 150 -137c0 -97 -82 -163 -143 -163c-39 0 -72 18 -72 56c0 23 14 41 42 41c21 0 33 -29 61 -29c40 0 81 31 81 81c0 43 -38 68 -90 68c-11 0 -66 -9 -90 -9c-118 0 -161 71 -161 173 c0 84 45 158 110 205c-27 18 -42 50 -42 81c0 29 13 63 35 83c-28 4 -57 22 -57 62c0 41 30 71 96 89'], + 0x3BF: [460,10,505,35,473,'473 228c0 -116 -100 -238 -221 -238c-119 0 -217 92 -217 212c0 127 86 258 224 258c136 0 214 -102 214 -232zM384 191c0 85 -38 237 -145 237c-87 0 -115 -115 -115 -184c0 -83 42 -222 145 -222c80 0 115 103 115 169'], + 0x3C0: [450,14,501,9,482,'467 137h15c0 -64 -41 -147 -112 -147c-57 0 -92 57 -92 122c0 87 9 184 16 254h-93c-4 -78 9 -380 -97 -380c-47 0 -67 29 -67 64c0 11 9 19 23 23c41 13 83 34 95 293c-57 0 -95 -6 -130 -57h-16c34 95 78 141 184 141h286v-84h-119c-4 -28 -10 -88 -10 -148 c0 -34 0 -71 6 -96s19 -49 49 -49c22 0 49 9 62 64'], + 0x3C1: [460,217,496,55,466,'71 -132v284c0 240 89 308 188 308c117 0 207 -89 207 -213c0 -145 -87 -257 -206 -257c-42 0 -69 7 -105 40v-161c0 -36 -9 -72 -16 -86h-84c10 21 16 51 16 85zM155 273v-185c0 -30 57 -66 104 -66c72 0 121 80 121 190c0 140 -59 220 -133 220c-59 0 -92 -63 -92 -159 '], + 0x3C2: [460,218,441,35,432,'432 352c0 -22 -13 -50 -48 -50c-40 0 -57 70 -147 70c-71 0 -155 -49 -155 -161c0 -71 25 -124 124 -131h7c15 0 26 2 44 2c103 0 150 -44 150 -142c0 -91 -83 -158 -143 -158c-39 0 -72 18 -72 56c0 23 14 41 42 41c21 0 33 -29 61 -29c40 0 81 32 81 81 c0 43 -38 68 -90 68c-11 0 -66 -9 -96 -9c-83 0 -155 28 -155 176c0 167 134 294 248 294c103 0 149 -56 149 -108'], + 0x3C3: [450,10,548,29,518,'518 366h-176c47 -72 125 -69 125 -178c0 -99 -100 -198 -228 -198c-114 0 -210 107 -210 225c0 162 98 235 210 235h279v-84zM377 171c0 81 -48 171 -104 195c-58 0 -154 -20 -154 -132c0 -115 72 -216 142 -216c79 0 116 78 116 153'], + 0x3C4: [450,10,477,3,442,'442 366h-170c-5 -27 -23 -112 -23 -184c0 -59 12 -109 53 -109c33 0 60 25 69 70h15c0 -79 -43 -153 -109 -153c-81 0 -103 77 -103 152c0 77 23 167 40 224h-82c-55 0 -96 -36 -114 -90h-15c12 67 63 174 159 174h280v-84'], + 0x3C5: [460,10,524,16,494,'255 460h27c111 0 212 -78 212 -235c0 -130 -93 -235 -216 -235c-146 0 -180 95 -180 208v120c0 38 -3 70 -20 70c-20 0 -39 -30 -48 -49l-14 6c25 53 61 110 103 110s63 -23 63 -70v-211c0 -57 20 -156 102 -156c87 0 120 91 120 191c0 57 -15 127 -50 173 c-28 36 -60 55 -99 58v20'], + 0x3C6: [460,217,623,29,593,'269 18v135c0 95 3 202 50 262c21 27 53 45 95 45c89 0 179 -95 179 -238c0 -124 -79 -232 -240 -232v-207h-84v207l-24 1c-137 6 -216 111 -216 238c0 121 78 231 213 231c8 0 19 -1 27 -3v-15c-92 -6 -150 -61 -150 -169c0 -64 14 -151 53 -205c24 -33 63 -50 97 -50z M353 18h30c87 0 120 89 120 188c0 98 -39 226 -100 226c-50 0 -50 -84 -50 -174v-240'], + 0x3C7: [460,220,500,11,486,'486 450l-210 -368l17 -80c23 -108 43 -152 82 -152c24 0 45 22 51 80h15c0 -50 -16 -150 -76 -150c-51 0 -79 68 -93 151l-21 121l-142 -263h-98l210 367l-19 82c-24 104 -51 152 -90 152c-14 0 -37 -20 -44 -77h-15c0 93 18 147 73 147c62 0 85 -107 120 -275l142 265 h98'], + 0x3C8: [460,217,694,20,684,'684 457v-15c-79 -10 -85 -152 -85 -213c0 -147 -56 -239 -205 -239v-207h-84v207c-160 0 -205 82 -205 239c0 61 -6 202 -85 212v15c14 2 34 4 52 4c95 0 123 -100 123 -185c0 -106 12 -257 115 -257v432h84v-432c103 0 115 151 115 253c0 85 22 189 123 189 c18 0 38 0 52 -3'], + 0x3C9: [460,10,625,29,595,'361 445v15c133 0 234 -74 234 -249c0 -74 -16 -128 -48 -165s-69 -56 -111 -56c-58 0 -100 32 -124 96c-28 -64 -70 -96 -126 -96c-40 0 -76 19 -109 56c-33 38 -48 92 -48 163c0 175 103 251 234 251v-15c-83 0 -144 -81 -144 -227c0 -92 11 -200 81 -200 c45 0 73 46 85 128c-12 39 -18 62 -18 105c0 73 22 98 45 98s45 -28 45 -96c0 -40 -6 -65 -18 -107c9 -81 47 -128 82 -128c76 0 84 98 84 190c0 154 -51 237 -144 237'], + 0x3D0: [693,10,450,54,411,'411 611c0 -94 -112 -120 -187 -120c-22 0 -44 1 -66 3c-47 -73 -83 -160 -85 -248c41 69 97 139 185 139c93 0 140 -104 140 -185c0 -101 -65 -210 -176 -210c-133 0 -168 153 -168 259c0 147 25 306 148 402c24 18 70 42 100 42c57 0 109 -15 109 -82zM165 507h35 c30 0 60 6 87 19c29 14 87 81 87 114c0 18 -17 34 -35 34c-78 0 -141 -106 -174 -167zM357 272c0 39 -28 79 -70 79c-77 0 -172 -175 -172 -243c0 -40 20 -85 66 -85c80 0 176 178 176 249'], + 0x3D1: [683,10,554,0,544,'544 290v-15c-24 -5 -59 -7 -84 -7c-3 -126 -42 -278 -193 -278c-140 0 -180 84 -180 196v22c0 45 -9 55 -20 55c-16 0 -25 -8 -52 -62l-15 9c29 72 70 110 109 110c47 0 62 -19 62 -100v-51c0 -53 19 -151 102 -151c80 0 99 111 99 213c0 15 0 30 -1 44 c-148 25 -279 117 -279 253c0 114 84 155 149 155c87 0 130 -57 162 -121c39 -78 56 -179 58 -263c23 -5 56 -7 83 -9zM369 322c-3 45 -7 77 -7 77c-19 210 -73 247 -123 247c-36 0 -71 -31 -71 -87c0 -54 29 -177 201 -237'], + 0x3D2: [676,0,722,29,698,'395 416h3c17 108 79 260 208 260c47 0 92 -39 92 -86c0 -39 -21 -76 -63 -76c-32 0 -57 24 -57 56c0 38 39 57 39 67s-17 13 -24 13c-135 0 -176 -290 -176 -399v-140c0 -78 19 -88 103 -92v-19h-306v19c90 6 101 15 101 104v172c-30 242 -102 328 -205 329 c-18 0 -54 -11 -73 -18l-8 16c34 30 88 52 134 52c127 0 205 -82 232 -258'], + 0x3D5: [683,217,623,29,593,'353 683v-223c43 0 77 -3 108 -16c87 -36 132 -119 132 -213c0 -114 -61 -241 -240 -241v-207h-84v207h-24c-138 0 -216 120 -216 238c0 119 75 232 223 232h17v223h84zM352 18h31c85 0 120 86 120 186c0 118 -49 228 -151 228v-414zM270 18v414h-30 c-78 0 -121 -61 -121 -158c0 -81 17 -154 54 -206c24 -34 62 -50 97 -50'], + 0x3D6: [450,10,762,6,726,'726 366h-86c35 -42 46 -108 46 -162c0 -144 -77 -214 -164 -214c-47 0 -96 29 -119 96c-26 -65 -65 -96 -135 -96c-73 0 -148 70 -148 216c0 53 19 118 47 160h-44c-51 0 -77 -41 -102 -92h-15c10 71 59 176 148 176h572v-84zM558 366h-308c-26 -44 -40 -103 -40 -167 c0 -73 8 -181 76 -181c47 0 77 45 90 129c-9 25 -18 57 -18 84c0 38 11 87 46 87c33 0 44 -52 44 -88c0 -24 -8 -57 -18 -83c9 -82 47 -129 86 -129c67 0 80 100 80 188c0 53 -15 126 -38 160'], + 0x3D8: [676,217,722,34,688,'310 -94v84c-166 22 -276 155 -276 344c0 203 132 342 327 342c196 0 327 -147 327 -345c0 -188 -112 -319 -276 -341v-96c0 -76 14 -88 96 -92v-19h-292v19c83 5 94 16 94 104zM574 337c0 114 -34 208 -91 256c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67 c-43 -49 -69 -146 -69 -241c0 -119 29 -209 90 -265c34 -31 78 -45 124 -45c50 0 94 15 129 48c55 53 83 147 83 267'], + 0x3D9: [460,217,500,29,470,'207 -217v211c-103 18 -178 110 -178 234c0 139 90 232 225 232c122 0 216 -91 216 -229c0 -123 -70 -217 -179 -237v-211h-84zM380 204c0 68 -18 137 -50 178c-24 30 -52 50 -95 50c-69 0 -116 -59 -116 -159c0 -79 16 -151 53 -205c22 -32 54 -50 90 -50 c74 0 118 70 118 186'], + 0x3DA: [676,218,667,28,622,'228 -146l21 25c34 -35 93 -53 141 -53c39 0 77 7 106 28c28 21 47 55 47 96c0 100 -150 112 -250 122c-135 13 -265 47 -265 234c0 213 230 370 412 370c84 0 166 -16 166 -85c0 -25 -15 -53 -58 -53c-63 0 -32 80 -147 80c-154 0 -299 -114 -299 -263 c0 -198 232 -146 387 -201c83 -29 133 -84 133 -173c0 -128 -108 -199 -226 -199c-53 0 -120 19 -168 72'], + 0x3DB: [490,218,461,35,436,'421 490h15c0 -160 -58 -221 -190 -233c-41 -4 -83 -9 -114 -25c-35 -18 -50 -51 -50 -82c0 -43 29 -84 77 -84c18 0 77 16 98 16c103 0 150 -44 150 -142c0 -91 -83 -158 -143 -158c-39 0 -72 18 -72 56c0 23 14 41 42 41c21 0 33 -29 61 -29c40 0 81 32 81 81 c0 43 -38 68 -90 68c-11 0 -66 -9 -96 -9c-83 0 -155 37 -155 146c0 116 87 175 201 209c43 13 155 50 185 145'], + 0x3DC: [662,0,556,11,546,'546 519h-25c-15 89 -33 105 -154 105h-132c-29 0 -34 -8 -34 -39v-217h248v-41h-248v-215c0 -76 14 -89 91 -93v-19h-281v19c76 5 88 17 88 104v428c0 73 -10 86 -87 92v19h529'], + 0x3DD: [450,190,470,80,435,'435 390h-275v-260h225v-40h-225v-280h-80v640h355v-60'], + 0x3DE: [797,14,703,13,678,'678 542l-221 -394c-6 -10 -19 -46 -19 -60c0 -21 7 -49 38 -49c28 0 52 6 89 34l12 -15c-50 -49 -90 -72 -137 -72c-71 0 -100 46 -100 87c0 34 13 67 70 144l148 201l-532 -191l-13 13l222 395c6 10 19 46 19 60c0 21 -7 49 -38 49c-28 0 -52 -6 -89 -34l-12 15 c50 49 90 72 137 72c71 0 100 -46 100 -87c0 -34 -13 -67 -70 -144l-149 -201l533 191'], + 0x3DF: [662,0,511,64,455,'455 373l-209 -373h-100l183 289h-265l209 373h100l-183 -289h265'], + 0x3E0: [676,218,801,11,767,'40 508l-29 21c104 108 212 147 343 147c211 0 413 -170 413 -469c0 -206 -156 -402 -343 -425v35c132 31 240 195 240 343c0 100 -23 181 -62 257c-158 -29 -200 -275 -200 -417h-102c0 152 88 412 281 454c-63 98 -177 160 -284 160c-15 0 -30 -1 -46 -4v-289h-44v279 c-56 -16 -116 -46 -167 -92'], + 0x3E1: [573,216,528,-6,487,'-6 543l12 30c190 -64 342 -187 403 -293c52 -90 78 -192 78 -302c0 -63 -8 -127 -25 -194l-33 6c4 31 6 62 6 92c0 88 -18 174 -62 271l-170 -98l-16 28l172 99c-8 17 -18 35 -28 53c-10 17 -21 34 -32 51l-172 -99l-16 28l169 97c-77 104 -176 183 -286 231'], + 0x3F0: [460,10,551,42,515,'515 450l-138 -168c-10 -26 -18 -67 -18 -112c0 -78 26 -104 58 -104c17 0 15 22 48 22c22 0 38 -16 38 -36c0 -45 -35 -62 -75 -62c-73 0 -103 78 -103 141c0 33 8 82 16 110h-2l-194 -241h-103l140 170c10 24 18 89 18 127c0 49 -20 87 -58 87c-17 0 -16 -24 -51 -24 c-19 0 -36 18 -36 36c0 44 38 64 72 64c66 0 107 -61 107 -140c0 -29 -9 -86 -14 -111h2l190 241h103'], + 0x3F1: [460,215,500,29,470,'426 -215h-16c-14 95 -254 3 -353 200c-27 55 -28 129 -28 193c0 115 51 282 230 282c130 0 211 -96 211 -240c0 -120 -82 -230 -209 -230c-87 0 -143 31 -171 90l-2 -1c67 -221 346 -99 346 -253c0 -8 -4 -29 -8 -41zM380 217c0 115 -70 215 -140 215 c-72 0 -121 -51 -121 -159c0 -118 43 -255 147 -255c93 0 114 115 114 199'], + 0x3F4: [676,14,722,34,688,'688 331c0 -206 -135 -345 -327 -345c-194 0 -327 140 -327 348c0 203 132 342 327 342c196 0 327 -147 327 -345zM148 359h425c-4 104 -37 189 -90 234c-36 30 -76 47 -123 47c-54 0 -104 -22 -143 -67s-64 -128 -69 -214zM574 315h-426c2 -111 32 -195 90 -248 c34 -31 78 -45 124 -45c50 0 94 15 129 48c51 49 80 135 83 245'], + 0x3F5: [460,10,439,25,407,'392 113l15 -8c-36 -70 -99 -115 -183 -115c-123 0 -199 112 -199 227c0 124 81 243 212 243c55 0 70 -20 98 -20c12 0 16 10 17 20h16l14 -135h-16c-18 47 -39 106 -127 106c-71 0 -124 -98 -124 -176h195v-32h-195c0 -100 47 -192 131 -192c58 0 103 24 146 82'], + 0x3F6: [460,10,444,32,414,'47 337l-15 8c36 70 99 115 183 115c123 0 199 -112 199 -227c0 -124 -81 -243 -212 -243c-55 0 -70 20 -98 20c-12 0 -16 -10 -17 -20h-16l-14 135h16c18 -47 39 -106 127 -106c71 0 124 98 124 176h-195v32h195c0 100 -47 192 -131 192c-58 0 -103 -24 -146 -82'], + 0x2013: [250,-201,500,0,500,'500 201h-500v49h500v-49'], + 0x2014: [250,-201,1000,0,1000,'1000 201h-1000v49h1000v-49'], + 0x2016: [690,189,523,129,394,'394 -189h-66v879h66v-879zM195 -189h-66v879h66v-879'], + 0x2018: [676,-433,333,115,254,'227 676l9 -19c-55 -38 -82 -73 -82 -106c0 -8 6 -14 14 -14c0 0 2 0 7 2c6 1 13 2 20 2c37 0 59 -19 59 -51c0 -34 -24 -57 -59 -57c-46 0 -80 38 -80 89c0 60 45 121 112 154'], + 0x2019: [676,-433,333,79,218,'106 433l-9 19c54 37 82 73 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -20 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -45 -121 -112 -154'], + 0x201C: [676,-433,444,43,414,'387 676l9 -19c-55 -38 -82 -73 -82 -106c0 -8 6 -14 14 -14c0 0 2 0 7 2c6 1 13 2 19 2c38 0 60 -19 60 -51c0 -34 -24 -57 -59 -57c-45 0 -80 38 -80 89c0 60 44 121 112 154zM155 676l9 -19c-55 -38 -82 -73 -82 -106c0 -8 6 -14 14 -14c0 0 2 0 7 2c6 1 13 2 19 2 c38 0 60 -19 60 -51c0 -34 -24 -57 -59 -57c-46 0 -80 38 -80 89c0 60 44 121 112 154'], + 0x201D: [676,-433,444,30,401,'289 433l-9 19c54 37 82 73 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -19 -2c-38 0 -60 19 -60 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -45 -121 -112 -154zM57 433l-9 19c54 37 82 73 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -19 -2 c-38 0 -60 19 -60 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -45 -121 -112 -154'], + 0x2020: [676,149,500,59,442,'240 -149v123c0 91 -17 211 -42 279c30 31 42 86 42 185c-35 -3 -51 -6 -91 -22c-24 -9 -34 -12 -46 -12c-29 0 -44 15 -44 43c0 25 17 44 39 44c12 0 29 -5 49 -13c43 -17 57 -21 93 -22c0 55 -4 77 -24 128c-8 20 -12 36 -12 47c0 23 23 45 47 45s47 -22 47 -45 c0 -11 -5 -27 -13 -47c-20 -51 -23 -74 -23 -128c37 1 50 5 92 22c20 8 38 13 50 13c21 0 38 -19 38 -44s-16 -43 -37 -43c-13 0 -32 4 -53 12c-41 16 -55 19 -90 22c0 -98 12 -154 41 -185c-27 -70 -41 -159 -41 -279v-123h-22'], + 0x2021: [676,153,500,58,442,'442 446c0 -24 -16 -42 -37 -42c-14 0 -32 4 -53 12c-42 16 -56 19 -91 22c0 -96 9 -141 40 -178c-31 -35 -40 -77 -40 -175c34 3 48 6 90 22c20 8 39 12 52 12c22 0 38 -18 38 -44c0 -24 -17 -43 -39 -43c-11 0 -29 5 -49 13c-42 17 -56 21 -92 22c0 -54 3 -77 23 -128 c8 -20 12 -36 12 -47c0 -23 -23 -45 -47 -45c-23 0 -46 22 -46 45c0 11 4 27 12 47c20 51 24 74 24 128c-36 -1 -51 -5 -93 -22c-20 -8 -37 -13 -49 -13c-23 0 -39 19 -39 45c0 24 16 42 38 42c13 0 31 -4 52 -12c42 -16 56 -19 91 -22c0 98 -11 148 -40 175 c30 39 40 90 40 178c-35 -3 -51 -7 -90 -22c-24 -10 -34 -12 -46 -12c-29 0 -44 15 -44 43c0 25 17 44 39 44c12 0 29 -5 49 -13c42 -17 57 -21 92 -22c0 54 -3 77 -23 128c-8 20 -12 36 -12 47c0 23 23 45 46 45c24 0 47 -22 47 -45c0 -11 -4 -27 -12 -47 c-20 -51 -24 -74 -24 -128c36 1 51 5 93 22c20 8 37 13 50 13c21 0 38 -19 38 -45'], + 0x2026: [100,11,1000,111,888,'888 43c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57zM555 43c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57zM222 43c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57'], + 0x2032: [678,-402,289,75,214,'75 411l67 221c7 24 15 46 44 46c19 0 28 -16 28 -33c0 -14 -8 -27 -14 -39l-106 -204'], + 0x2033: [678,-401,426,75,351,'212 411l66 222c7 24 16 45 45 45c19 0 28 -15 28 -32c0 -14 -8 -27 -14 -39l-107 -205zM75 410l66 222c7 24 16 46 45 46c19 0 28 -16 28 -33c0 -14 -8 -27 -14 -39l-107 -205'], + 0x2034: [678,-401,563,75,488,'349 411l66 222c7 24 16 45 45 45c19 0 28 -15 28 -32c0 -14 -8 -27 -14 -39l-107 -205zM212 411l66 222c7 24 16 45 45 45c19 0 28 -15 28 -32c0 -14 -8 -27 -14 -39l-107 -205zM75 410l66 222c7 24 16 46 45 46c19 0 28 -16 28 -33c0 -14 -8 -27 -14 -39l-107 -205'], + 0x2035: [678,-402,289,75,214,'214 411l-19 -9l-106 204c-6 12 -14 25 -14 39c0 17 9 33 28 33c29 0 37 -22 44 -46'], + 0x203E: [820,-770,500,0,500,'500 770h-500v50h500v-50'], + 0x2044: [676,14,167,-168,331,'331 676l-450 -690h-49l453 690h46'], + 0x2057: [678,-401,710,75,635,'496 411l66 222c7 24 16 45 45 45c19 0 28 -15 28 -32c0 -14 -8 -27 -14 -39l-107 -205zM349 411l66 222c7 24 16 45 45 45c19 0 28 -15 28 -32c0 -14 -8 -27 -14 -39l-107 -205zM212 411l66 222c7 24 16 45 45 45c19 0 28 -15 28 -32c0 -14 -8 -27 -14 -39l-107 -205z M75 410l66 222c7 24 16 46 45 46c19 0 28 -16 28 -33c0 -14 -8 -27 -14 -39l-107 -205'], + 0x20D7: [760,-548,0,-453,-17,'-17 654l-132 -106l-18 8c32 27 49 49 49 56c0 12 -16 15 -49 15h-286v54h286c28 0 49 2 49 15c0 9 -21 27 -50 56l18 8'], + 0x210F: [683,10,579,47,547,'532 117l15 -10c-60 -89 -112 -117 -149 -117c-33 0 -53 19 -53 56c0 20 14 73 24 110l40 144c4 15 9 43 9 62c0 26 -8 44 -37 44c-32 0 -85 -52 -140 -133c-44 -65 -66 -117 -110 -273h-84l127 469l-94 -34l9 43l97 35l19 60c4 12 4 22 4 29c0 20 -27 22 -57 22v15 c84 17 119 30 157 44l8 -2c-9 -27 -17 -55 -26 -88l-13 -46l144 53l-12 -44l-144 -52l-70 -258h1c84 163 160 214 219 214c60 0 88 -30 88 -88c0 -20 -3 -44 -11 -71l-51 -179c-5 -17 -11 -41 -11 -55c0 -10 4 -17 13 -17c17 0 39 9 88 67'], + 0x2111: [695,34,762,45,711,'688 674l23 -7c-16 -60 -50 -151 -165 -151c-117 0 -156 79 -270 79c-50 0 -117 -33 -117 -114c0 -68 54 -101 102 -101c22 0 45 5 65 14l8 -22c-29 -15 -49 -20 -77 -20c-103 0 -166 59 -166 145c0 102 88 198 217 198c151 0 180 -79 296 -79c50 0 77 44 84 58zM703 417 l-18 -16c-27 24 -45 30 -65 30c-27 0 -57 -19 -57 -58c0 -56 107 -126 107 -221c0 -101 -110 -186 -239 -186c-87 0 -131 13 -167 40c-35 26 -54 55 -70 92c-15 34 -36 50 -56 50c-28 0 -56 -22 -70 -51l-23 6c9 39 66 125 143 125c96 0 120 -76 142 -141 c20 -58 54 -83 109 -83c66 0 108 43 108 94c0 99 -93 143 -93 249c0 76 69 126 135 126s89 -26 114 -56'], + 0x2113: [687,11,579,48,571,'77 389l14 26c33 -23 64 -25 94 -25c105 155 240 297 322 297c42 0 64 -21 64 -67c0 -105 -146 -234 -322 -260c-52 -84 -143 -231 -143 -298c0 -24 9 -43 36 -43c47 0 102 55 199 167l21 -17c-105 -123 -164 -180 -227 -180c-47 0 -87 29 -87 87c0 55 30 136 77 218 c12 22 26 44 40 66c-30 1 -61 10 -88 29zM268 396l1 -1c157 35 272 133 272 229c0 19 -12 31 -35 31c-28 0 -57 -21 -82 -47c-49 -50 -104 -131 -156 -212'], + 0x2118: [547,217,826,52,799,'439 462h-15c-4 31 -44 43 -76 43c-89 0 -206 -85 -206 -245c0 -67 19 -100 45 -114c32 49 71 96 113 138c46 47 96 86 146 115c75 44 144 51 205 51c88 0 148 -46 148 -142c0 -85 -48 -189 -118 -254c-44 -41 -96 -64 -151 -64c-81 0 -115 55 -115 100c0 35 21 70 58 70 c23 0 44 -15 44 -44c0 -34 -34 -41 -34 -61c0 -26 22 -37 54 -37c98 0 171 191 171 308c0 41 -14 96 -77 96c-107 0 -273 -176 -362 -311c58 -19 107 -47 107 -124c0 -110 -84 -204 -186 -204c-75 0 -99 47 -99 104c0 46 15 98 29 134c12 31 28 62 47 93 c-83 35 -115 98 -115 165c0 128 126 268 287 268c53 0 100 -29 100 -85zM306 -11c0 31 -20 74 -57 87c-6 -5 -78 -139 -78 -212c0 -29 5 -50 35 -50c56 0 100 111 100 175'], + 0x211C: [704,22,874,50,829,'813 114l16 -20c-30 -31 -103 -89 -150 -116h-14c-77 25 -99 135 -99 209c0 65 -6 138 -52 153l-74 -18c-28 -120 -100 -249 -197 -344c-27 16 -104 60 -118 62c-7 -6 -27 -23 -44 -49l-22 14l94 145c20 -12 107 -61 120 -61c51 0 51 204 51 316c0 76 -7 259 -108 259 c-42 0 -67 -33 -67 -67c0 -99 115 -84 115 -196c0 -69 -80 -133 -166 -154l-9 22c28 9 75 38 75 81c0 86 -114 98 -114 190c0 99 85 155 185 155c78 0 139 -40 177 -88l133 97c130 0 196 -71 196 -149c0 -74 -40 -140 -124 -172v-2c123 -77 51 -312 142 -312 c11 0 41 31 54 45zM444 357l33 7c116 25 147 104 147 167c0 39 -29 96 -93 96c-39 0 -64 -15 -103 -54c11 -31 20 -79 20 -108s-1 -76 -4 -108'], + 0x2127: [662,14,744,29,715,'715 504h-19c-2 50 -10 74 -49 74h-171l2 -37c135 -38 213 -120 213 -266c0 -149 -121 -289 -319 -289c-202 0 -319 147 -319 289c0 145 71 227 210 266l2 37h-149c-44 0 -67 -15 -68 -76h-19v160h287l-9 -150c-88 -25 -140 -141 -140 -239c0 -120 69 -251 205 -251 c131 0 205 109 205 251c0 107 -56 218 -141 239l-7 150h286v-158'], + 0x2132: [662,0,535,13,462,'462 0h-440l-9 75h362v201h-296v75h296v311h87v-662'], + 0x2135: [677,13,682,43,634,'493 265l94 -94c23 -23 47 -56 47 -92c0 -25 -4 -56 -19 -92h-25c0 8 -1 17 -3 24c-13 39 -72 90 -91 108l-304 281c-20 -35 -30 -72 -30 -109c0 -45 16 -76 50 -114c28 -31 57 -52 57 -92c0 -50 -47 -85 -133 -85h-76v24c29 1 100 12 100 50c0 58 -100 60 -100 185 c0 80 50 131 106 167l-83 81c-23 22 -40 56 -40 89s17 64 32 81h24c-3 -6 -4 -11 -4 -17c0 -28 32 -54 64 -84l299 -283l51 202c-43 35 -62 75 -62 116c0 23 8 46 22 66h24c-1 -3 -2 -7 -2 -10c0 -19 17 -35 40 -57l51 -48c42 -40 52 -78 52 -107c0 -21 -11 -51 -19 -70h-25 c0 16 -2 25 -8 36c-8 15 -26 30 -41 45'], + 0x2136: [677,19,639,57,572,'554 120l18 -12c-3 -67 -49 -108 -113 -108h-286c-29 0 -71 -1 -96 -19l-20 13c40 86 97 108 161 108h233c12 38 22 128 22 188c0 178 -51 218 -126 218c-43 0 -84 -13 -138 -13c-96 0 -133 46 -133 91c0 42 13 71 38 91h24c-2 -7 -3 -14 -3 -20c0 -35 26 -60 62 -60 c56 0 99 20 158 20c124 0 186 -60 186 -206c0 -88 -32 -219 -55 -309c14 0 54 4 68 18'], + 0x2137: [677,19,505,40,463,'167 677h24c-1 -6 -2 -12 -2 -18c0 -32 23 -59 98 -59c73 0 92 -44 92 -101c0 -66 -25 -135 -25 -206c0 -78 109 -143 109 -214c0 -48 -10 -69 -26 -92h-24c0 69 -74 74 -96 196h-2c-15 -52 -43 -119 -80 -156c-21 -21 -46 -27 -80 -27c-29 0 -70 -1 -95 -19l-20 13 c33 71 78 104 129 106c56 2 106 62 140 153c8 58 10 102 10 141c0 54 -22 100 -57 100c-94 0 -132 52 -132 95c0 49 15 68 37 88'], + 0x2138: [677,19,599,52,495,'90 677h24c-2 -7 -3 -14 -3 -20c0 -35 26 -60 62 -60c56 0 139 20 198 20c92 0 124 -40 124 -81c0 -18 -9 -37 -23 -50c-20 -20 -40 -67 -40 -111c0 -116 33 -161 33 -255c0 -58 -42 -115 -102 -139l-22 11c12 32 18 70 18 92c-1 63 -15 156 -15 199c0 99 61 171 91 215 c-18 7 -37 10 -72 10c-41 0 -117 -13 -171 -13c-43 0 -75 6 -98 20c-27 16 -42 42 -42 71c0 42 13 71 38 91'], + 0x2141: [676,14,695,68,668,'68 305v298c56 37 106 73 252 73c212 0 348 -146 348 -347c0 -195 -146 -343 -346 -343c-87 0 -184 27 -242 111v103h19c51 -107 135 -138 223 -138c170 0 257 131 257 264c0 136 -91 274 -263 274c-121 0 -161 -33 -161 -61v-158h86l22 -76h-195'], + 0x2190: [449,-58,926,71,857,'857 220h-599c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h598v-66'], + 0x2191: [662,156,511,60,451,'451 424l-19 -20c-33 23 -65 52 -96 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-630h-66v631c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c75 65 150 141 190 237h10c41 -96 115 -172 191 -238'], + 0x2192: [448,-57,926,70,856,'856 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-598v66h599c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 63 -82 96l20 19c65 -75 141 -150 237 -190'], + 0x2193: [662,156,511,60,451,'432 101l19 -20c-75 -65 -150 -141 -190 -237h-10c-41 96 -115 172 -191 238l19 20c33 -23 65 -52 96 -82c9 -9 20 -14 28 -14c10 0 20 8 20 26v630h66v-631c0 -10 12 -26 22 -26c9 0 15 4 25 14c28 29 63 60 96 82'], + 0x2194: [449,-57,926,38,888,'888 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-475c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 115 238 191l20 -19 c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h475c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 63 -82 96l20 19c65 -75 141 -150 237 -190'], + 0x2195: [730,224,511,60,451,'451 492l-19 -20c-33 23 -64 52 -95 82c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-578c0 -10 12 -26 22 -26c9 0 15 4 25 14c28 29 62 60 95 82l19 -20c-75 -65 -149 -142 -189 -238h-10c-41 96 -115 173 -191 239l19 20c33 -23 65 -52 96 -82c9 -9 20 -14 28 -14 c10 0 20 8 20 26v578c0 10 -12 26 -22 26c-9 0 -15 -4 -25 -14c-28 -29 -63 -60 -96 -82l-19 20c75 65 150 141 190 237h10c41 -96 114 -172 190 -238'], + 0x2196: [662,156,926,70,856,'856 -109l-48 -47l-625 659c-4 4 -14 7 -22 7c-5 0 -9 -1 -12 -4c-7 -7 -8 -14 -8 -28c0 -40 -2 -87 -10 -126l-28 1c2 27 4 56 4 84c0 74 -8 149 -37 218l7 7c70 -28 144 -37 218 -37c29 0 58 2 86 4v-28c-39 -7 -82 -10 -126 -10c-12 0 -24 -4 -29 -10 c-3 -3 -6 -8 -6 -13c0 -6 4 -14 16 -26'], + 0x2197: [662,156,926,70,856,'849 662l7 -7c-29 -69 -37 -144 -37 -218c0 -28 2 -57 4 -84l-28 -1c-8 39 -10 86 -10 126c0 14 -1 21 -8 28c-3 3 -7 4 -12 4c-8 0 -18 -3 -22 -7l-625 -659l-48 47l620 651c12 12 16 20 16 26c0 5 -3 10 -6 13c-5 6 -17 10 -29 10c-44 0 -87 3 -126 10v28 c28 -2 57 -4 86 -4c74 0 148 9 218 37'], + 0x2198: [662,156,926,70,856,'856 -149l-7 -7c-70 28 -144 37 -218 37c-29 0 -58 -2 -86 -4v28c39 7 82 10 126 10c12 0 24 4 29 10c3 3 6 8 6 13c0 6 -4 14 -16 26l-620 651l48 47l625 -659c4 -4 14 -7 22 -7c5 0 9 1 12 4c7 7 8 14 8 28c0 40 2 87 10 126l28 -1c-2 -27 -4 -56 -4 -84 c0 -74 8 -149 37 -218'], + 0x2199: [662,156,926,70,856,'856 615l-620 -651c-12 -12 -16 -20 -16 -26c0 -5 3 -10 6 -13c5 -6 17 -10 29 -10c44 0 87 -3 126 -10v-28c-28 2 -57 4 -86 4c-74 0 -148 -9 -218 -37l-7 7c29 69 37 144 37 218c0 28 -2 57 -4 84l28 1c8 -39 10 -86 10 -126c0 -14 1 -21 8 -28c3 -3 7 -4 12 -4 c8 0 18 3 22 7l625 659'], + 0x219A: [450,-58,926,60,866,'866 220h-304l-95 -162h-58l95 162h-257c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h295l96 164h58 l-96 -164h265v-66'], + 0x219B: [450,-58,926,60,866,'866 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25c0 10 -16 22 -26 22h-304l-95 -162h-58l95 162h-257v66h296l96 164h58l-96 -164h264c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 64 -82 97l20 19c66 -76 142 -151 238 -192'], + 0x219E: [449,-58,926,70,856,'856 220h-392c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-52 60 -111 120 -181 162h-76c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 115 238 191l20 -19 c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h74c71 43 130 102 183 163l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h391v-66'], + 0x21A0: [449,-58,926,70,856,'856 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25c0 10 -16 22 -26 22h-76c-70 -42 -129 -102 -181 -162l-20 19c22 33 53 68 82 96c10 10 14 16 14 25c0 10 -16 22 -26 22h-392v66h391c18 0 26 10 26 20c0 8 -5 19 -14 28 c-30 31 -59 63 -82 96l20 19c53 -61 112 -120 183 -163h74c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191'], + 0x21A2: [449,-58,926,70,856,'836 449l20 -19c-23 -33 -55 -62 -82 -96c-13 -17 -29 -49 -29 -81c0 -44 18 -68 28 -80c27 -30 60 -63 82 -96l-20 -19c-52 60 -111 120 -181 162h-397c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10 c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h395c71 43 130 102 183 163'], + 0x21A3: [449,-58,926,70,856,'856 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25c0 10 -16 22 -26 22h-397c-70 -42 -129 -102 -181 -162l-20 19c22 33 55 66 82 96c10 12 28 36 28 80c0 32 -16 64 -29 81c-27 34 -59 63 -82 96l20 19c53 -61 112 -120 183 -163 h395c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191'], + 0x21A6: [450,-57,926,70,857,'857 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-549v-163h-50v393h50v-164h550c18 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 65 -82 98l20 19c65 -75 141 -152 237 -192'], + 0x21A9: [553,-57,926,70,856,'599 553h98c76 0 159 -61 159 -167c0 -113 -98 -166 -176 -166h-426c-18 0 -22 -11 -22 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 115 237 190l20 -19c-22 -33 -53 -68 -82 -96c-10 -10 -14 -16 -14 -25 s10 -22 24 -22h421c60 0 114 34 114 99c0 61 -37 102 -96 102h-95v66'], + 0x21AA: [553,-57,926,70,856,'856 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 9 -7 20 -22 20h-426c-78 0 -176 53 -176 166c0 106 83 167 159 167h98v-66h-95c-59 0 -96 -41 -96 -102c0 -65 54 -99 114 -99h421c16 0 24 13 24 22s-4 15 -14 25 c-29 28 -60 63 -82 96l20 19c65 -75 141 -150 237 -190'], + 0x21AB: [553,0,926,70,856,'529 286v86c0 116 82 181 168 181c76 0 159 -61 159 -167c0 -113 -98 -166 -176 -166h-85v-220h-66v220h-275c-15 -2 -22 -11 -22 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 115 237 190l20 -19 c-22 -33 -53 -68 -82 -96c-10 -10 -14 -16 -14 -25s14 -21 24 -22h274zM595 286h81c60 0 114 34 114 99c0 61 -37 102 -96 102c-53 0 -99 -40 -99 -113v-88'], + 0x21AC: [553,0,926,70,856,'856 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 9 -7 18 -22 20h-275v-220h-66v220h-85c-78 0 -176 53 -176 166c0 106 83 167 159 167c86 0 168 -65 168 -181v-86h274c10 1 24 13 24 22s-4 15 -14 25c-29 28 -60 63 -82 96l20 19 c65 -75 141 -150 237 -190zM331 286v88c0 73 -46 113 -99 113c-59 0 -96 -41 -96 -102c0 -65 54 -99 114 -99h81'], + 0x21AD: [449,-58,1200,49,1151,'1151 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25s-16 22 -24 22h-63c-55 0 -80 -106 -141 -106c-87 0 -107 214 -162 214s-74 -214 -161 -214c-61 0 -86 106 -142 106h-63c-8 0 -24 -13 -24 -22s4 -15 14 -25 c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h60c78 0 97 -106 142 -106c55 0 64 214 161 214s107 -214 162 -214c45 0 64 106 141 106h60c18 0 26 10 26 20 c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191'], + 0x21AE: [450,-58,926,38,888,'888 258v-10c-96 -41 -172 -114 -238 -190l-20 19c23 33 52 64 82 95c9 9 14 20 14 28c0 10 -8 20 -26 20h-223l-69 -162h-54l69 162h-198c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 116 238 192 l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h225l69 164h54l-69 -164h196c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 65 -82 98l20 19c65 -75 141 -152 237 -192'], + 0x21B0: [662,156,463,30,424,'424 -156h-66v598h-131c-18 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 50 -54 72 -87l-20 -19c-65 75 -141 141 -237 181v10c96 41 172 106 238 182l20 -19c-23 -33 -42 -51 -72 -82c-9 -9 -14 -25 -14 -33c0 -10 8 -20 26 -20h196v-664'], + 0x21B1: [662,156,463,39,433,'433 480v-10c-96 -40 -172 -106 -237 -181l-20 19c22 33 43 59 72 87c10 10 14 16 14 25c0 10 -8 22 -26 22h-131v-598h-66v664h196c18 0 26 10 26 20c0 8 -5 24 -14 33c-30 31 -49 49 -72 82l20 19c66 -76 142 -141 238 -182'], + 0x21B6: [534,0,926,44,882,'882 192h-66c0 153 -124 276 -277 276s-277 -123 -277 -275c0 -23 8 -31 18 -31c6 0 11 5 20 14c31 31 63 59 96 82l19 -20c-76 -66 -140 -142 -181 -238h-10c-40 96 -105 172 -180 237l19 20c33 -22 68 -53 96 -82c10 -10 15 -14 22 -14c13 0 15 16 15 31 c0 188 155 342 346 342c186 0 340 -154 340 -342'], + 0x21B7: [534,0,926,44,882,'863 257l19 -20c-75 -65 -140 -141 -180 -237h-10c-41 96 -105 172 -181 238l19 20c33 -23 65 -51 96 -82c9 -9 14 -14 20 -14c10 0 18 8 18 31c0 152 -124 275 -277 275s-277 -123 -277 -276h-66c0 188 154 342 340 342c191 0 346 -154 346 -342c0 -15 2 -31 15 -31 c7 0 12 4 22 14c28 29 63 60 96 82'], + 0x21BA: [686,116,974,116,858,'817 686l11 -25c-37 -21 -76 -38 -114 -56c-7 -3 -13 -6 -19 -11c-4 -4 -8 -10 -8 -16c0 -7 3 -10 8 -14c27 -20 52 -41 74 -67c57 -68 89 -155 89 -243c0 -205 -166 -370 -371 -370s-371 165 -371 370c0 160 104 305 257 354l22 -61c-124 -41 -214 -164 -214 -295 c0 -167 139 -301 305 -301c168 0 306 136 306 304c0 89 -45 190 -119 242c-3 2 -7 3 -11 3c-12 0 -20 -10 -20 -22c0 -6 3 -13 5 -19c14 -40 27 -79 35 -121l-26 -9c-30 98 -69 195 -139 271l4 9h12c100 0 195 36 284 77'], + 0x21BB: [686,116,974,116,858,'579 547l22 61c153 -49 257 -194 257 -354c0 -205 -166 -370 -371 -370s-371 165 -371 370c0 88 32 175 89 243c22 26 47 47 74 67c5 4 8 7 8 14c0 6 -4 12 -8 16c-6 5 -12 8 -19 11c-38 18 -77 35 -114 56l11 25c89 -41 184 -77 284 -77h12l4 -9 c-70 -76 -109 -173 -139 -271l-26 9c8 42 21 81 35 121c2 6 5 13 5 19c0 12 -8 22 -20 22c-4 0 -8 -1 -11 -3c-74 -52 -119 -153 -119 -242c0 -168 138 -304 306 -304c166 0 305 134 305 301c0 131 -90 254 -214 295'], + 0x21BC: [494,-220,955,54,901,'901 220h-847v4c127 94 199 173 298 270l23 -22c-58 -66 -122 -127 -122 -154c0 -16 4 -32 43 -32h605v-66'], + 0x21BD: [286,-12,955,54,901,'901 220h-605c-39 0 -43 -16 -43 -32c0 -27 64 -88 122 -154l-23 -22c-99 97 -171 176 -298 270v4h847v-66'], + 0x21BE: [662,156,511,222,441,'441 424l-19 -20c-33 23 -65 42 -96 72c-9 9 -16 14 -24 14c-10 0 -14 -8 -14 -26v-620h-66v818h5c46 -96 139 -178 214 -238'], + 0x21BF: [662,156,511,69,288,'288 -156h-66v620c0 18 -4 26 -14 26c-8 0 -15 -5 -24 -14c-31 -30 -63 -49 -96 -72l-19 20c75 60 168 142 214 238h5v-818'], + 0x21C0: [494,-220,955,54,901,'901 220h-847v66h605c39 0 43 16 43 32c0 27 -64 88 -122 154l23 22c99 -97 171 -176 298 -270v-4'], + 0x21C1: [286,-12,955,54,901,'901 286v-4c-127 -94 -199 -173 -298 -270l-23 22c58 66 122 127 122 154c0 16 -4 32 -43 32h-605v66h847'], + 0x21C2: [662,156,511,222,441,'422 102l19 -20c-75 -60 -168 -142 -214 -238h-5v818h66v-620c0 -18 4 -26 14 -26c8 0 15 5 24 14c31 30 63 49 96 72'], + 0x21C3: [662,156,511,69,288,'288 -156h-5c-46 96 -139 176 -214 236l19 20c33 -23 65 -42 96 -72c9 -9 16 -14 24 -14c10 0 14 8 14 26v622h66v-818'], + 0x21C4: [598,92,926,71,856,'856 418v-10c-96 -41 -170 -107 -236 -180l-20 19c23 30 46 54 76 85c9 9 14 20 14 28c0 10 -8 20 -26 20h-584v66h583c10 0 27 6 27 22c0 9 -4 15 -14 25c-29 28 -54 53 -76 86l20 19c65 -75 140 -140 236 -180zM847 60h-583c-10 0 -27 -6 -27 -22c0 -9 4 -15 14 -25 c29 -28 54 -53 76 -86l-20 -19c-65 75 -140 140 -236 180v10c96 41 170 107 236 180l20 -19c-23 -30 -46 -54 -76 -85c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h584v-66'], + 0x21C6: [598,92,926,71,856,'847 380h-584c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 53 -55 76 -85l-20 -19c-66 73 -140 139 -236 180v10c96 40 171 105 236 180l20 -19c-22 -33 -47 -58 -76 -86c-10 -10 -14 -16 -14 -25c0 -16 17 -22 27 -22h583v-66zM856 98v-10 c-96 -40 -171 -105 -236 -180l-20 19c22 33 47 58 76 86c10 10 14 16 14 25c0 16 -17 22 -27 22h-583v66h584c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -53 55 -76 85l20 19c66 -73 140 -139 236 -180'], + 0x21C7: [599,92,926,70,856,'856 60h-594c-18 0 -25 -12 -25 -22c0 -9 4 -15 14 -25c29 -28 54 -53 76 -86l-20 -19c-65 75 -141 140 -237 180v10c84 36 154 91 214 155c-60 65 -129 119 -214 155v10c96 41 172 105 238 181l20 -19c-23 -33 -47 -55 -77 -86c-9 -9 -14 -20 -14 -28 c0 -10 8 -20 26 -20h593v-66h-594c-10 0 -25 -12 -25 -22c0 -9 3 -15 13 -25c20 -19 39 -35 75 -80c-34 -39 -54 -58 -74 -79c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h593v-66'], + 0x21C8: [662,156,773,41,732,'732 424l-19 -20c-33 23 -55 47 -86 77c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-625h-66v626c0 10 -12 25 -22 25c-9 0 -15 -3 -25 -13c-19 -20 -35 -39 -80 -75c-39 34 -58 54 -79 74c-9 9 -20 14 -28 14c-10 0 -20 -8 -20 -26v-625h-66v626c0 18 -12 25 -22 25 c-9 0 -15 -4 -25 -14c-28 -29 -53 -54 -86 -76l-19 20c75 65 140 141 180 237h10c36 -84 91 -154 155 -214c65 60 119 129 155 214h10c41 -96 105 -172 181 -238'], + 0x21C9: [599,92,926,70,856,'856 98v-10c-96 -40 -172 -105 -237 -180l-20 19c22 33 47 58 76 86c10 10 14 16 14 25c0 10 -7 22 -25 22h-594v66h593c18 0 26 10 26 20c0 8 -5 19 -14 28c-20 21 -40 40 -74 79c36 45 55 61 75 80c10 10 13 16 13 25c0 10 -15 22 -25 22h-594v66h593c18 0 26 10 26 20 c0 8 -5 19 -14 28c-30 31 -54 53 -77 86l20 19c66 -76 142 -140 238 -181v-10c-85 -36 -154 -90 -214 -155c60 -64 130 -119 214 -155'], + 0x21CA: [662,156,773,41,732,'713 102l19 -20c-76 -66 -140 -142 -181 -238h-10c-36 85 -90 154 -155 214c-64 -60 -119 -130 -155 -214h-10c-40 96 -105 172 -180 237l19 20c33 -22 58 -47 86 -76c10 -10 16 -14 25 -14c10 0 22 7 22 25v626h66v-625c0 -18 10 -26 20 -26c8 0 19 5 28 14 c21 20 40 40 79 74c45 -36 61 -55 80 -75c10 -10 16 -13 25 -13c10 0 22 15 22 25v626h66v-625c0 -18 10 -26 20 -26c8 0 19 5 28 14c31 30 53 54 86 77'], + 0x21CB: [539,33,926,70,856,'856 320h-786v5c96 46 178 139 238 214l20 -19c-23 -33 -42 -65 -72 -96c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h588v-66zM856 186v-5c-96 -46 -178 -139 -238 -214l-20 19c23 33 42 65 72 96c9 9 14 16 14 24c0 10 -8 14 -26 14h-588v66h786'], + 0x21CC: [539,33,926,70,856,'856 320h-786v66h588c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -49 63 -72 96l20 19c60 -75 142 -168 238 -214v-5zM856 120h-588c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 49 -63 72 -96l-20 -19c-60 75 -142 168 -238 214v5h786v-66'], + 0x21CD: [551,45,926,60,866,'866 120h-241l-74 -164h-55l74 164h-194c-18 0 -26 -14 -26 -22c0 -16 6 -25 23 -42c11 -11 50 -53 74 -81l-21 -20c-117 116 -243 201 -366 293v10c121 92 249 177 366 293l21 -20c-24 -28 -50 -56 -75 -82c-14 -15 -22 -21 -22 -41c0 -8 8 -22 26 -22h315l76 165h55 l-76 -165h120v-66h-150l-61 -134h211v-66zM661 320h-429c-33 -19 -59 -43 -59 -67s26 -45 58 -67h369'], + 0x21CE: [517,10,926,20,906,'906 258v-10c-45 -30 -197 -142 -314 -258l-28 21c21 23 69 64 69 93c0 11 -1 16 -30 16h-136l-23 -130h-51l23 130h-90c-26 0 -35 -2 -35 -18c0 -24 31 -45 70 -89l-23 -23c-121 114 -272 230 -318 258v10c46 33 195 146 318 259l23 -23c-24 -28 -72 -69 -72 -89 c0 -15 18 -19 34 -19h139l24 131h51l-24 -131h90c20 0 28 12 28 21c0 34 -44 60 -67 86l28 24c122 -112 268 -228 314 -259zM478 186h256c33 19 59 43 59 67s-26 45 -58 67h-233zM451 320h-260c-33 -19 -58 -43 -59 -67c0 -23 26 -45 58 -67h237'], + 0x21CF: [551,45,926,60,866,'866 258v-10c-123 -92 -249 -177 -366 -293l-21 20c24 28 63 70 74 81c17 17 23 26 23 42c0 8 -8 22 -26 22h-317l-74 -165h-55l74 165h-118v66h148l61 134h-209v66h239l76 165h55l-76 -165h196c18 0 26 14 26 22c0 20 -8 26 -22 41c-25 26 -51 54 -75 82l21 20 c117 -116 245 -201 366 -293zM263 186h432c32 22 58 43 58 67s-26 48 -59 67h-370'], + 0x21D0: [551,45,926,60,866,'866 120h-490c-18 0 -26 -14 -26 -22c0 -16 6 -25 23 -42c11 -11 50 -53 74 -81l-21 -20c-117 116 -243 201 -366 293v10c121 92 249 177 366 293l21 -20c-24 -28 -50 -56 -75 -82c-14 -15 -22 -21 -22 -41c0 -8 8 -22 26 -22h490v-66h-634c-33 -19 -59 -43 -59 -67 s26 -45 58 -67h635v-66'], + 0x21D1: [662,156,685,45,641,'641 296l-20 -21c-28 24 -57 50 -82 75c-17 17 -22 22 -41 22c-8 0 -22 -8 -22 -26v-502h-66v646c-19 33 -43 59 -67 59c-25 0 -45 -26 -67 -58v-647h-66v502c0 18 -14 26 -22 26c-16 0 -25 -6 -42 -23c-11 -11 -53 -50 -81 -74l-20 21c116 117 201 243 293 366h10 c92 -121 177 -249 293 -366'], + 0x21D2: [551,45,926,60,866,'866 258v-10c-123 -92 -249 -177 -366 -293l-21 20c24 28 63 70 74 81c17 17 23 26 23 42c0 8 -8 22 -26 22h-490v66h635c32 22 58 43 58 67s-26 48 -59 67h-634v66h490c18 0 26 14 26 22c0 20 -8 26 -22 41c-25 26 -51 54 -75 82l21 20c117 -116 245 -201 366 -293'], + 0x21D3: [662,156,685,45,641,'621 231l20 -21c-116 -117 -201 -245 -293 -366h-10c-92 123 -177 249 -293 366l20 21c28 -24 70 -63 81 -74c17 -17 26 -23 42 -23c8 0 22 8 22 26v502h66v-647c22 -32 42 -58 67 -58c24 0 48 26 67 59v646h66v-502c0 -18 14 -26 22 -26c19 0 24 5 41 22 c25 25 54 51 82 75'], + 0x21D4: [517,10,926,20,906,'906 258v-10c-45 -30 -197 -142 -314 -258l-28 21c21 23 69 64 69 93c0 11 -1 16 -30 16h-277c-26 0 -35 -2 -35 -18c0 -24 31 -45 70 -89l-23 -23c-121 114 -272 230 -318 258v10c46 33 195 146 318 259l23 -23c-24 -28 -72 -69 -72 -89c0 -15 18 -19 34 -19h280 c20 0 28 12 28 21c0 34 -44 60 -67 86l28 24c122 -112 268 -228 314 -259zM190 186h544c33 19 59 43 59 67s-26 45 -58 67h-544c-33 -19 -58 -43 -59 -67c0 -23 26 -45 58 -67'], + 0x21D5: [730,224,685,45,641,'621 163l20 -21c-116 -117 -201 -245 -293 -366h-10c-92 123 -177 249 -293 366l20 21c28 -24 70 -63 81 -74c17 -17 26 -23 42 -23c8 0 22 8 22 26v322c0 18 -14 26 -22 26c-16 0 -25 -6 -42 -23c-11 -11 -53 -50 -81 -74l-20 21c116 117 201 243 293 366h10 c92 -121 177 -249 293 -366l-20 -21c-28 24 -57 50 -82 75c-17 17 -22 22 -41 22c-8 0 -22 -8 -22 -26v-322c0 -18 14 -26 22 -26c19 0 24 5 41 22c25 25 54 51 82 75zM410 -52v610c-19 33 -43 59 -67 59c-25 0 -45 -26 -67 -58v-612c22 -32 42 -58 67 -58c24 0 48 26 67 59 '], + 0x21DA: [644,139,926,46,852,'852 20h-519v-1c42 -52 79 -109 99 -142l-23 -16c-70 106 -186 260 -363 387v10c152 105 279 258 364 386l23 -15c-20 -33 -59 -90 -99 -140v-3h518v-66h-565c-24 -28 -59 -64 -81 -86c-9 -9 -14 -20 -14 -28c0 -10 7 -20 26 -20h634v-66h-636c-14 -4 -25 -12 -25 -22 c0 -4 3 -15 14 -25c20 -17 63 -63 81 -87h566v-66'], + 0x21DB: [645,138,926,74,880,'880 258v-10c-152 -105 -279 -258 -364 -386l-23 15c20 33 59 90 99 140v3h-518v66h565c24 28 59 64 81 86c9 9 14 20 14 28c0 10 -7 20 -26 20h-634v66h636c14 4 25 12 25 22c0 4 -3 15 -14 25c-20 17 -63 63 -81 87h-566v66h519v1c-42 52 -79 109 -99 142l23 16 c70 -106 186 -260 363 -387'], + 0x21DD: [449,-58,926,60,866,'866 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25s-16 22 -24 22h-83l-92 -106l-124 172l-119 -172l-89 106h-114v66h143l60 -66l119 174l124 -174l60 66h112c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19 c66 -76 142 -150 238 -191'], + 0x21E0: [449,-58,926,60,866,'866 220h-107v66h107v-66zM698 220h-107v66h107v-66zM530 220h-107v66h107v-66zM362 220h-115c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96 c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h114v-66'], + 0x21E2: [449,-58,926,60,866,'866 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25c0 10 -8 22 -26 22h-115v66h114c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191zM503 220h-107v66h107v-66zM335 220h-107v66h107v-66z M167 220h-107v66h107v-66'], + 0x2200: [662,0,560,2,558,'558 662l-245 -662h-66l-245 662h71l74 -199h266l74 199h71zM391 403h-222l111 -300'], + 0x2201: [760,15,463,59,404,'404 220v-98c0 -124 -119 -137 -175 -137c-58 0 -170 15 -170 145v483c0 131 119 147 174 147c54 0 171 -16 171 -149v-87h-66v91c0 75 -81 79 -107 79c-25 0 -106 -7 -106 -78v-487c0 -69 84 -78 109 -78c26 0 104 11 104 79v90h66'], + 0x2202: [668,11,471,40,471,'195 625l-10 20c28 17 64 23 98 23c126 0 188 -90 188 -260c0 -148 -61 -419 -295 -419c-98 0 -136 77 -136 162c0 141 111 284 257 284c32 0 75 -11 96 -48c4 22 7 46 7 70c0 88 -29 181 -131 181c-27 0 -49 -5 -74 -13zM367 319c0 65 -34 86 -61 86 c-99 0 -185 -149 -185 -288c0 -38 4 -98 67 -98c77 0 136 100 164 202c9 33 15 67 15 98'], + 0x2203: [662,0,560,73,487,'487 0h-414v66h348v232h-336v66h336v232h-348v66h414v-662'], + 0x2204: [775,122,560,71,487,'487 0h-316l-42 -122h-58l42 122h-40v66h63l79 232h-130v66h153l80 232h-245v66h267l39 113h58l-39 -113h89v-662zM421 364v232h-45l-80 -232h125zM421 66v232h-148l-79 -232h227'], + 0x2205: [583,79,762,50,712,'705 583l-88 -101c60 -62 95 -143 95 -230c0 -182 -150 -331 -331 -331c-72 0 -140 24 -197 66l-58 -66h-69l87 100c-58 59 -94 143 -94 231c0 181 149 331 331 331c75 0 140 -26 197 -66l58 66h69zM575 434l-348 -398c45 -32 98 -49 154 -49c146 0 265 119 265 266 c0 68 -26 131 -71 181zM188 71l346 395c-31 29 -98 51 -153 51c-147 0 -265 -118 -265 -264c0 -69 26 -135 72 -182'], + 0x2207: [662,12,731,63,667,'667 662l-288 -674h-20l-296 674h604zM604 621h-418l208 -494'], + 0x2208: [531,27,685,60,625,'625 -27h-291c-160 0 -274 131 -274 279s112 279 271 279h294v-66h-290c-103 0 -189 -85 -206 -180h496v-66h-497c17 -95 103 -180 206 -180h291v-66'], + 0x2209: [662,157,685,60,625,'625 -27h-291c-33 0 -64 6 -92 16l-73 -146h-62l85 170c-81 49 -132 140 -132 239c0 148 112 279 271 279h119l65 131h62l-65 -131h113v-66h-146l-90 -180h236v-66h-268l-85 -170c20 -6 40 -10 62 -10h291v-66zM417 465h-82c-103 0 -189 -85 -206 -180h198zM295 219h-167 c10 -57 46 -111 95 -144'], + 0x220B: [531,27,685,60,625,'60 531h294c159 0 271 -131 271 -279s-114 -279 -274 -279h-291v66h291c103 0 189 85 206 180h-497v66h496c-17 95 -103 180 -206 180h-290v66'], + 0x220D: [459,-45,486,64,422,'64 459h147c125 0 211 -91 211 -207c0 -115 -85 -207 -209 -207h-149v66h146c80 0 131 36 145 108h-291v66h291c-13 72 -64 108 -144 108h-147v66'], + 0x2212: [286,-220,685,64,621,'621 220h-557v66h557v-66'], + 0x2213: [502,87,685,48,637,'637 436h-589v66h589v-66zM637 107h-262v-194h-66v194h-261v66h261v209h66v-209h262v-66'], + 0x2214: [741,41,685,48,636,'405 678c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM636 220h-261v-261h-66v261h-261v66h261v261h66v-261h261v-66'], + 0x2215: [710,222,523,46,478,'478 710l-360 -932h-72l360 932h72'], + 0x2216: [411,-93,428,25,403,'403 93h-62l-316 318h62'], + 0x2217: [471,-33,523,67,457,'457 337c0 -11 -8 -23 -22 -31c-25 -15 -83 -15 -155 -56c63 -37 127 -40 154 -56c14 -8 21 -20 21 -32c0 -20 -14 -39 -39 -39c-41 0 -66 70 -143 114c0 -69 29 -131 29 -162c0 -21 -20 -42 -38 -42c-19 0 -38 21 -38 42c0 31 29 93 29 162c-52 -30 -99 -93 -121 -105 c-9 -5 -18 -8 -27 -8c-24 0 -37 15 -37 32c0 14 6 30 21 39c27 15 101 25 153 55c-52 30 -129 40 -157 57c-13 8 -20 19 -20 30c0 21 15 42 36 42c7 0 14 -2 22 -6c29 -17 73 -78 130 -108c0 69 -29 135 -29 166c0 21 19 40 38 40c18 0 38 -19 38 -40 c0 -31 -29 -96 -29 -165c72 38 99 91 126 107c8 4 15 6 22 6c21 0 36 -21 36 -42'], + 0x2218: [387,-117,350,40,310,'310 252c0 -75 -60 -135 -135 -135c-76 0 -135 60 -135 137c0 75 60 133 137 133c73 0 133 -61 133 -135zM244 252c0 39 -31 69 -67 69c-42 0 -71 -30 -71 -67c0 -42 30 -71 69 -71s69 30 69 69'], + 0x2219: [387,-117,350,40,310,'310 252c0 -75 -60 -135 -135 -135c-76 0 -135 60 -135 137c0 75 60 133 137 133c73 0 133 -61 133 -135'], + 0x221A: [973,259,928,112,963,'963 973l-478 -1232h-32l-202 530c-17 45 -37 59 -62 59c-17 0 -43 -11 -65 -31l-12 20l156 124h19l204 -536h4l414 1066h54'], + 0x221D: [430,0,685,41,643,'643 84v-84c-98 0 -155 53 -217 145c-45 -91 -113 -145 -209 -145c-86 0 -176 62 -176 200c0 184 133 230 191 230c73 0 123 -19 218 -147c46 83 92 147 193 147v-84c-90 0 -146 -55 -173 -101v-3c64 -106 113 -158 173 -158zM404 181v3c-72 119 -135 187 -203 187 c-56 0 -100 -55 -100 -119c0 -85 51 -168 139 -168c89 0 137 61 164 97'], + 0x221E: [430,0,926,70,854,'854 222c0 -97 -72 -222 -198 -222c-82 0 -139 53 -201 145c-45 -91 -113 -145 -209 -145c-86 0 -176 62 -176 200c0 184 133 230 191 230c73 0 123 -19 218 -147c46 83 92 147 193 147c90 0 182 -74 182 -208zM499 245v-3c72 -119 127 -183 195 -183 c56 0 100 55 100 119c0 91 -51 168 -139 168c-89 0 -127 -59 -156 -101zM433 181v3c-72 119 -135 187 -203 187c-56 0 -100 -55 -100 -119c0 -85 51 -168 139 -168c89 0 137 61 164 97'], + 0x2220: [547,0,685,23,643,'643 0h-620l546 547l50 -42l-437 -439h461v-66'], + 0x2221: [547,72,685,22,642,'642 0h-97c0 -24 -1 -49 -5 -72l-65 10c3 20 4 41 4 62h-457l323 323c-15 15 -31 29 -48 42l40 53c20 -15 38 -31 55 -48l176 177l51 -42l-184 -185c56 -72 94 -159 106 -254h101v-66zM181 66h293c-11 77 -41 147 -86 207'], + 0x2222: [519,11,685,56,653,'653 80l-25 -62l-88 37c-8 -22 -19 -44 -32 -66l-57 34c11 18 20 38 28 57l-423 173l421 177c-8 19 -17 37 -27 55l57 34c11 -20 22 -42 31 -64l90 37l25 -60l-93 -40c13 -46 19 -93 19 -139s-6 -91 -18 -135zM228 253l270 -110c10 36 15 72 15 110c0 37 -5 76 -15 114'], + 0x2223: [690,189,266,100,166,'166 -189h-66v879h66v-879'], + 0x2224: [690,189,404,23,381,'381 304l-146 -75v-418h-66v384l-122 -62l-24 53l146 74v430h66v-396l122 62'], + 0x2225: [690,189,523,129,394,'394 -189h-66v879h66v-879zM195 -189h-66v879h66v-879'], + 0x2226: [690,189,609,23,586,'586 362l-149 -76v-475h-66v441l-133 -67v-374h-66v340l-125 -64l-24 53l149 76v474h66v-440l133 67v373h66v-339l125 63'], + 0x2227: [536,29,620,31,589,'589 -29h-65l-215 432l-215 -432h-63l273 565h10'], + 0x2228: [536,29,620,31,589,'589 536l-273 -565h-10l-275 565h65l215 -432l215 432h63'], + 0x2229: [536,31,620,48,572,'572 -31h-66v296c0 114 -90 205 -196 205c-109 0 -196 -92 -196 -206v-295h-66v299c0 159 113 268 262 268c148 0 262 -111 262 -271v-296'], + 0x222A: [536,31,620,48,572,'572 536v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h66v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205v296h66'], + 0x222B: [824,320,459,32,639,'204 -124l182 730c20 80 68 218 188 218c40 0 65 -21 65 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -70 -202 -182 -202c-40 0 -65 21 -65 45c0 33 24 59 52 59c15 0 31 -9 31 -26 c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165'], + 0x2234: [521,16,620,38,582,'374 458c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM582 48c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM165 48c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x2235: [521,16,620,38,582,'582 457c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64zM165 457c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64zM373 47c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64'], + 0x223C: [362,-148,685,48,637,'604 362h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x223D: [362,-148,685,48,637,'637 148h-33c-15 71 -48 138 -117 138c-73 0 -180 -128 -276 -128c-98 0 -158 104 -163 204h33c16 -71 53 -138 123 -138c72 0 179 128 275 128c98 0 152 -119 158 -204'], + 0x2240: [547,42,286,35,249,'249 -9v-33c-85 6 -204 60 -204 158c0 96 128 203 128 275c0 70 -67 107 -138 123v33c100 -5 204 -65 204 -163c0 -96 -128 -203 -128 -276c0 -69 67 -102 138 -117'], + 0x2241: [424,-88,685,48,637,'604 362h33c-6 -84 -59 -204 -158 -204c-46 0 -95 29 -132 54l-72 -124h-60l89 153c-26 17 -68 45 -100 45c-74 0 -109 -76 -123 -138h-33c5 90 59 204 163 204c43 0 92 -28 127 -52l72 124h60l-88 -152c28 -19 70 -48 105 -48c74 0 104 77 117 138'], + 0x2242: [445,-55,685,48,637,'637 379h-589v66h589v-66zM604 269h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2243: [445,-55,685,48,637,'604 445h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM637 55h-589v66h589v-66'], + 0x2245: [532,27,685,48,637,'617 532h20c-6 -85 -60 -214 -158 -214c-96 0 -213 148 -285 148c-70 0 -110 -77 -126 -148h-20c5 100 65 214 163 214c96 0 213 -148 286 -148c69 0 103 77 120 148zM637 173h-589v66h589v-66zM637 -27h-589v66h589v-66'], + 0x2246: [604,107,685,47,637,'616 604h20c-6 -85 -60 -214 -158 -214c-96 0 -213 148 -285 148c-70 0 -110 -77 -126 -148h-20c5 100 65 214 163 214c96 0 213 -148 286 -148c69 0 103 77 120 148zM637 -21h-352l-53 -86h-60l53 86h-177v66h218l84 134h-302v66h343l54 86h60l-54 -86h186v-66h-227 l-84 -134h311v-66'], + 0x2248: [475,-25,685,48,637,'604 475h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM604 239h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x224A: [552,45,685,48,637,'604 552h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM604 316h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM637 -45h-589v66h589v-66'], + 0x224D: [498,-8,685,48,637,'637 498v-35c-46 -102 -189 -157 -295 -157c-111 0 -247 54 -294 157v35c69 -94 183 -126 294 -126s232 36 295 126zM637 43v-35c-69 94 -184 126 -295 126s-231 -36 -294 -126v35c46 102 188 157 294 157c111 0 248 -54 295 -157'], + 0x224E: [471,-35,685,48,637,'637 320h-210c-1 41 -34 85 -83 85c-54 0 -86 -44 -86 -85h-210v66h156c20 41 69 85 138 85s123 -44 139 -85h156v-66zM637 120h-156c-20 -41 -69 -85 -138 -85s-123 44 -139 85h-156v66h210c1 -41 37 -85 86 -85c52 0 83 44 83 85h210v-66'], + 0x224F: [471,-120,685,48,637,'637 320h-209c-1 41 -34 85 -83 85c-54 0 -87 -44 -87 -85h-210v66h156c20 41 70 85 139 85s123 -44 139 -85h155v-66zM637 120h-589v66h589v-66'], + 0x2250: [611,-120,685,48,637,'405 548c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x2251: [611,106,685,48,637,'405 548c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66zM405 -42c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x2252: [611,105,685,48,637,'637 320h-589v66h589v-66zM175 548c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 -41c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 120h-589v66h589v-66'], + 0x2253: [611,106,685,48,637,'637 548c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66zM175 -42c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x2256: [416,-90,685,48,637,'637 90h-589v66h223c-29 21 -48 56 -48 96s20 76 51 98h-226v66h589v-66h-227c31 -22 51 -58 51 -98s-19 -75 -49 -96h225v-66zM411 251c0 39 -31 70 -68 70c-39 0 -70 -30 -70 -69c0 -38 31 -69 69 -69c37 0 69 30 69 68'], + 0x2257: [752,-120,685,48,637,'461 633c0 -66 -53 -119 -119 -119s-119 53 -119 119s53 119 119 119s119 -53 119 -119zM411 632c0 39 -31 70 -68 70c-39 0 -70 -30 -70 -69c0 -38 31 -69 69 -69c37 0 69 30 69 68zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x225C: [853,-120,685,48,637,'564 484h-438l219 369zM452 545l-110 188l-110 -188h220zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x2260: [662,156,685,48,637,'637 120h-326l-120 -276h-54l120 276h-209v66h238l59 134h-297v66h326l120 276h54l-121 -276h210v-66h-238l-59 -134h297v-66'], + 0x2261: [478,-28,685,48,637,'637 412h-589v66h589v-66zM637 220h-589v66h589v-66zM637 28h-589v66h589v-66'], + 0x2264: [609,103,685,64,629,'629 51l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM629 -103h-565v66h565v-66'], + 0x2265: [609,103,685,64,629,'629 324l-565 -273v63l432 215l-432 215v65l565 -275v-10zM629 -103h-565v66h565v-66'], + 0x2266: [718,211,685,57,622,'622 160l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM622 -12h-565v66h565v-66zM622 -211h-565v66h565v-66'], + 0x2267: [718,211,685,57,622,'622 433l-565 -273v63l432 215l-432 215v65l565 -275v-10zM622 -12h-565v66h565v-66zM622 -211h-565v66h565v-66'], + 0x2268: [746,260,685,56,621,'621 188l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM621 -184h-345l-47 -76h-60l47 76h-160v66h201l84 134h-285v66h326l48 76h60l-48 -76h179v-66h-220l-84 -134h304v-66'], + 0x2269: [746,260,685,56,621,'621 461l-565 -273v63l432 215l-432 215v65l565 -275v-10zM621 -184h-332l-47 -76h-60l47 76h-173v66h214l84 134h-298v66h339l48 76h60l-48 -76h166v-66h-207l-84 -134h291v-66'], + 0x226A: [532,26,933,25,908,'908 -26l-565 274v10l565 274v-65l-432 -214l432 -216v-63zM590 -26l-565 274v10l565 274v-65l-432 -214l432 -216v-63'], + 0x226B: [532,26,933,25,908,'908 249l-565 -275v63l432 216l-432 214v65l565 -273v-10zM590 249l-565 -275v63l432 216l-432 214v65l565 -273v-10'], + 0x226C: [730,224,466,85,381,'381 -207v-17c-56 38 -106 85 -148 137c-42 -52 -92 -99 -148 -137v19c37 43 81 94 120 154c-69 97 -110 207 -110 304c0 96 41 207 110 304c-39 61 -83 113 -120 156v17c56 -38 106 -85 148 -137c42 52 92 99 148 137v-19c-38 -43 -82 -94 -121 -154 c69 -98 111 -208 111 -304c0 -97 -41 -207 -111 -304c39 -61 84 -113 121 -156zM305 253c0 97 -30 184 -72 259c-41 -75 -72 -161 -72 -259s30 -184 71 -259c42 74 73 161 73 259'], + 0x226E: [662,156,685,56,621,'621 -26l-304 146l-120 -276h-54l130 298l-217 105v10l339 165l105 240h54l-90 -207l157 77v-65l-194 -97l-85 -194l279 -139v-63zM357 336l-168 -84l108 -54'], + 0x226F: [662,156,685,56,621,'621 247l-337 -163l-105 -240h-54l90 207l-159 -77v63l196 98l84 193l-280 139v65l304 -148l122 278h54l-131 -300l216 -105v-10zM488 252l-108 54l-59 -137'], + 0x2270: [730,229,685,56,621,'621 -103h-386l-47 -126h-54l47 126h-125v66h149l90 243l-239 116v10l350 170l85 228h54l-73 -196l149 73v-65l-180 -90l-79 -212l259 -128v-63l-280 135l-82 -221h362v-66zM375 419l-186 -92l128 -64'], + 0x2271: [730,229,685,56,622,'622 -103h-401l-47 -126h-54l47 126h-111v66h135l68 184l-203 -98v63l234 116l62 167l-296 147v65l317 -154l104 277h54l-112 -300l202 -98v-10l-296 -143l-80 -216h377v-66zM488 327l-90 45l-42 -111'], + 0x2272: [664,164,685,48,637,'621 106l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM604 50h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2273: [664,164,685,48,637,'629 379l-565 -273v63l432 215l-432 215v65l565 -275v-10zM604 50h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2276: [705,204,685,56,621,'621 208l-565 244v10l565 243v-65l-432 -183l432 -186v-63zM621 39l-565 -243v63l432 185l-432 184v65l565 -244v-10'], + 0x2277: [705,204,685,56,621,'621 452l-565 -244v63l432 186l-432 183v65l565 -243v-10zM621 -204l-565 243v10l565 244v-65l-432 -184l432 -185v-63'], + 0x227A: [532,26,685,64,621,'621 51v-77c-120 161 -354 230 -557 246v66c203 16 437 85 557 246v-77c-50 -86 -211 -167 -334 -202c123 -35 284 -116 334 -202'], + 0x227B: [532,26,685,64,621,'621 286v-66c-203 -16 -437 -85 -557 -246v77c50 86 211 167 334 202c-123 35 -284 116 -334 202v77c120 -161 354 -230 557 -246'], + 0x227C: [628,120,685,64,621,'621 147v-77c-120 161 -354 230 -557 246v66c203 16 437 85 557 246v-77c-50 -86 -211 -167 -334 -202c123 -35 284 -116 334 -202zM621 -42v-78c-138 173 -406 230 -557 240v66c165 -7 417 -68 557 -228'], + 0x227D: [629,119,685,64,621,'621 383v-66c-203 -16 -437 -85 -557 -246v77c50 86 211 167 334 202c-123 35 -284 116 -334 202v77c120 -161 354 -230 557 -246zM621 187v-66c-151 -10 -419 -67 -557 -240v78c140 160 392 221 557 228'], + 0x227E: [664,164,685,48,637,'620 183v-77c-120 161 -354 230 -557 246v66c203 16 437 85 557 246v-77c-50 -86 -211 -167 -334 -202c123 -35 284 -116 334 -202zM604 50h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204 c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x227F: [664,164,685,48,637,'622 418v-66c-203 -16 -437 -85 -557 -246v77c50 86 211 167 334 202c-123 35 -284 116 -334 202v77c120 -161 354 -230 557 -246zM604 50h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204 c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2280: [662,156,685,64,621,'621 51v-77c-60 80 -148 137 -247 177l-124 -307h-54l131 324c-86 29 -177 45 -263 52v66c114 9 237 34 345 84l119 292h54l-104 -256c56 34 105 75 143 126v-77c-31 -52 -102 -103 -181 -142l-41 -101c95 -42 186 -100 222 -161zM353 231l21 52c-30 -12 -60 -22 -87 -30 c21 -6 43 -14 66 -22'], + 0x2281: [662,156,685,64,621,'621 286v-66c-114 -9 -237 -35 -344 -84l-119 -292h-54l104 256c-57 -34 -106 -75 -144 -126v77c30 52 102 103 182 142l40 100c-94 42 -187 100 -222 162v77c60 -81 148 -138 247 -178l125 308h54l-132 -325c86 -28 177 -45 263 -51zM333 274l-21 -51c30 12 59 22 86 30 c-21 6 -43 13 -65 21'], + 0x2282: [531,25,685,64,621,'621 -25h-290c-159 0 -267 131 -267 279s110 277 270 277h287v-66h-287c-114 0 -204 -104 -204 -211s91 -213 205 -213h286v-66'], + 0x2283: [531,25,685,64,621,'64 531h287c160 0 270 -129 270 -277s-108 -279 -267 -279h-290v66h286c114 0 205 106 205 213s-90 211 -204 211h-287v66'], + 0x2286: [607,103,685,64,621,'621 51h-290c-159 0 -267 131 -267 279s110 277 270 277h287v-66h-287c-114 0 -204 -104 -204 -211s91 -213 205 -213h286v-66zM621 -103h-548v66h548v-66'], + 0x2287: [607,103,685,64,621,'64 607h287c160 0 270 -129 270 -277s-108 -279 -267 -279h-290v66h286c114 0 205 106 205 213s-90 211 -204 211h-287v66zM612 -103h-548v66h548v-66'], + 0x2288: [730,229,685,64,621,'621 -103h-378l-47 -126h-54l47 126h-116v66h140l38 100c-114 35 -187 145 -187 267c0 148 110 277 270 277h119l46 123h54l-46 -123h114v-66h-138l-158 -424h296v-66h-290c-10 0 -20 0 -30 1l-34 -89h354v-66zM429 541h-95c-114 0 -204 -104 -204 -211 c0 -88 60 -174 145 -203'], + 0x2289: [730,229,685,64,621,'547 730l-59 -160c82 -48 133 -140 133 -240c0 -148 -108 -279 -267 -279h-60l-33 -88h351v-66h-375l-47 -126h-54l47 126h-119v66h143l33 88h-176v66h201l153 411c-21 8 -44 13 -67 13h-287v66h287c32 0 62 -6 90 -15l52 138h54zM319 117h31c114 0 205 106 205 213 c0 68 -37 134 -92 174'], + 0x228A: [627,216,685,64,621,'621 71h-290c-159 0 -267 131 -267 279s110 277 270 277h287v-66h-287c-114 0 -204 -104 -204 -211s91 -213 205 -213h286v-66zM621 -120h-283l-60 -96h-59l60 96h-207v66h249l61 96h59l-61 -96h241v-66'], + 0x228B: [627,216,685,64,621,'64 627h287c160 0 270 -129 270 -277s-108 -279 -267 -279h-290v66h286c114 0 205 106 205 213s-90 211 -204 211h-287v66zM611 -120h-269l-60 -96h-59l60 96h-219v66h261l61 96h59l-61 -96h227v-66'], + 0x228E: [536,31,620,48,572,'460 257h-117v-117h-66v117h-117v66h117v117h66v-117h117v-66zM572 536v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h66v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205v296h66'], + 0x228F: [531,25,685,64,621,'621 -25h-557v556h557v-66h-491v-424h491v-66'], + 0x2290: [531,25,685,64,621,'621 -25h-557v66h491v424h-491v66h557v-556'], + 0x2291: [607,103,685,64,621,'621 51h-557v556h557v-66h-491v-424h491v-66zM621 -103h-557v66h557v-66'], + 0x2292: [607,103,685,64,621,'621 51h-557v66h491v424h-491v66h557v-556zM621 -103h-557v66h557v-66'], + 0x2293: [536,31,620,48,572,'572 -31h-66v501h-392v-501h-66v567h524v-567'], + 0x2294: [536,31,620,48,572,'572 -31h-524v567h66v-501h392v501h66v-567'], + 0x2295: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM454 285h270c-15 142 -128 255 -270 270v-270zM388 285v270c-142 -15 -255 -128 -270 -270h270zM724 219h-270v-270c142 15 255 128 270 270zM388 -51v270h-270 c15 -142 128 -255 270 -270'], + 0x2296: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM118 285h606c-16 153 -146 272 -303 272s-287 -119 -303 -272zM724 219h-606c16 -153 146 -272 303 -272s287 119 303 272'], + 0x2297: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM421 299l191 191c-52 42 -119 67 -191 67s-139 -25 -191 -67zM468 252l191 -191c42 52 67 119 67 191s-25 139 -67 191zM374 252l-191 191c-42 -52 -67 -119 -67 -191 s25 -139 67 -191zM612 14l-191 191l-191 -191c52 -42 119 -67 191 -67s139 25 191 67'], + 0x2298: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM183 61l429 429c-52 42 -119 67 -191 67c-168 0 -305 -137 -305 -305c0 -72 25 -139 67 -191zM659 443l-429 -429c52 -42 119 -67 191 -67c168 0 305 137 305 305 c0 72 -25 139 -67 191'], + 0x2299: [583,79,762,50,712,'444 253c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM712 252c0 -183 -148 -331 -331 -331s-331 148 -331 331s148 331 331 331s331 -148 331 -331zM646 252c0 146 -119 265 -265 265s-265 -119 -265 -265s119 -265 265 -265s265 119 265 265'], + 0x229A: [623,119,842,50,792,'554 252c0 -75 -60 -135 -135 -135c-76 0 -135 60 -135 137c0 75 60 133 137 133c73 0 133 -61 133 -135zM488 252c0 39 -31 69 -67 69c-42 0 -71 -30 -71 -67c0 -42 30 -71 69 -71s69 30 69 69zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371 s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x229B: [623,119,842,50,792,'612 165c0 -24 -11 -43 -43 -43c-45 0 -53 67 -138 116c0 -76 32 -124 32 -158c0 -23 -22 -45 -42 -45c-21 0 -42 22 -42 45c0 34 32 82 32 158c-57 -33 -91 -94 -115 -107c-10 -5 -20 -9 -30 -9c-26 0 -41 17 -41 35c0 16 7 34 24 43c29 17 93 19 150 52 c-57 33 -121 32 -152 51c-14 8 -22 20 -22 33c0 25 11 46 40 46c8 0 16 -2 24 -7c32 -18 60 -74 122 -107c0 76 -32 127 -32 161c0 23 21 41 42 41c20 0 42 -18 42 -41c0 -34 -32 -84 -32 -159c79 41 87 88 117 105c8 5 16 7 24 7c26 0 40 -17 40 -46c0 -13 -9 -26 -25 -35 c-27 -16 -69 -4 -148 -49c69 -41 120 -34 149 -52c16 -9 24 -22 24 -35zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x229D: [623,119,842,50,792,'634 219h-426v66h426v-66zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x229E: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 278v318h-318v-318h318zM429 278v318h-318v-318h318zM799 -92v318h-318v-318h318zM429 -92v318h-318v-318h318'], + 0x229F: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 278v318h-688v-318h688zM799 -92v318h-688v-318h688'], + 0x22A0: [662,158,910,45,865,'865 -158h-820v820h820v-820zM762 596h-614l307 -307zM799 -56v615l-307 -308zM761 -92l-306 306l-306 -306h612zM418 251l-307 308v-615'], + 0x22A1: [662,157,910,45,865,'518 252c0 -36 -27 -64 -63 -64c-38 0 -64 26 -64 64c0 35 29 63 64 63s63 -28 63 -63zM865 -157h-820v819h820v-819zM799 -91v687h-688v-687h688'], + 0x22A2: [662,0,685,64,621,'621 298h-491v-298h-66v662h66v-298h491v-66'], + 0x22A3: [662,0,685,64,621,'621 0h-66v298h-491v66h491v298h66v-662'], + 0x22A4: [662,0,685,48,637,'637 596h-262v-596h-66v596h-261v66h589v-66'], + 0x22A5: [662,0,685,48,637,'637 0h-589v66h262v596h66v-596h261v-66'], + 0x22A8: [662,0,685,64,621,'621 198h-491v-198h-66v662h66v-198h491v-66h-491v-134h491v-66'], + 0x22A9: [662,0,860,57,814,'814 298h-491v-298h-66v662h66v-298h491v-66zM123 0h-66v662h66v-662'], + 0x22AA: [662,0,860,45,815,'815 298h-303v-298h-66v662h66v-298h303v-66zM312 0h-66v662h66v-662zM111 0h-66v662h66v-662'], + 0x22AC: [662,0,786,9,723,'723 662l-291 -298h290v-66h-354l-137 -141v-157h-66v89l-87 -89h-69l156 160v502h66v-298h132l291 298h69zM299 298h-68v-70'], + 0x22AD: [662,0,786,9,723,'723 662l-193 -198h192v-66h-256l-131 -134h387v-66h-451l-40 -41v-157h-66v89l-87 -89h-69l156 160v502h66v-198h230l193 198h69zM397 398h-166v-134h35'], + 0x22AE: [662,0,968,9,922,'922 298h-460l-31 -25v-273h-66v220l-134 -106v-114h-66v62l-78 -62h-78l156 123v539h66v-486l134 106v380h66v-298h37l376 298h78l-376 -298h376v-66'], + 0x22AF: [662,0,968,9,922,'922 198h-491v-198h-66v219l-134 -106v-113h-66v60l-76 -60h-80l156 124v538h66v-486l134 106v380h66v-198h162l249 198h80l-250 -198h250v-66h-333l-158 -126v-8h491v-66zM510 398h-79v-63'], + 0x22B2: [531,25,685,24,631,'631 -25l-607 278l607 278v-556zM565 80v346l-384 -173'], + 0x22B3: [531,25,685,54,661,'661 253l-607 -278v556zM504 253l-384 173v-346'], + 0x22B4: [607,103,685,24,631,'631 51l-607 278l607 278v-556zM565 156v346l-384 -173zM631 -103h-597v66h597v-66'], + 0x22B5: [607,103,685,54,661,'661 329l-607 -278v556zM504 329l-384 173v-346zM651 -103h-597v66h597v-66'], + 0x22B8: [403,-103,849,50,799,'50 286h453c15 67 74 117 146 117c83 0 150 -67 150 -150s-67 -150 -150 -150c-72 0 -131 50 -146 117h-453v66zM749 253c0 55 -45 100 -100 100s-100 -45 -100 -100s45 -100 100 -100s100 45 100 100'], + 0x22BA: [450,212,480,74,406,'406 384h-123v-596h-86v596h-123v66h332v-66'], + 0x22BB: [536,139,620,32,590,'590 536l-273 -565h-10l-275 565h65l215 -432l215 432h63zM572 -139h-524v66h524v-66'], + 0x22BC: [646,29,620,32,590,'572 580h-524v66h524v-66zM590 -29h-63l-215 432l-215 -432h-65l275 565h10'], + 0x22C4: [488,-16,523,26,497,'497 252l-236 -236l-235 236l235 236zM404 252l-143 143l-142 -143l142 -143'], + 0x22C5: [313,-193,286,83,203,'203 253c0 -32 -27 -60 -59 -60c-33 0 -61 30 -61 60s28 60 61 60c32 0 59 -28 59 -60'], + 0x22C6: [597,13,700,35,665,'665 365l-226 -137l107 -241l-196 179l-196 -179l107 241l-226 137l262 -30l53 262l53 -262'], + 0x22C8: [582,80,810,54,756,'756 -80l-351 285l-351 -285v662l351 -285l351 285v-662zM690 58v386l-239 -193zM359 251l-239 193v-386'], + 0x22C9: [582,80,810,93,716,'716 -80l-312 287l-311 -287v662l311 -286l312 286v-88l-263 -243l263 -244v-87zM356 251l-197 182v-363'], + 0x22CA: [582,80,810,93,716,'716 -80l-311 287l-312 -287v87l263 244l-263 243v88l312 -286l311 286v-662zM650 70v363l-197 -182'], + 0x22CB: [582,80,810,74,736,'736 -34l-46 -46l-285 285l-285 -285l-46 46l285 285l-285 285l46 46'], + 0x22CC: [582,80,810,74,736,'736 -34l-46 -46l-285 285l-285 -285l-46 46l616 616l46 -46l-285 -285'], + 0x22CD: [445,-55,685,48,637,'637 231h-33c-15 71 -48 138 -117 138c-73 0 -180 -128 -276 -128c-98 0 -158 104 -163 204h33c16 -71 53 -138 123 -138c72 0 179 128 275 128c98 0 152 -119 158 -204zM637 55h-589v66h589v-66'], + 0x22CE: [532,25,580,31,549,'472 532h77c-145 -144 -210 -354 -226 -557h-66c-16 203 -81 413 -226 557h77c88 -103 147 -211 182 -334c35 123 94 231 182 334'], + 0x22CF: [532,25,580,31,549,'549 -25h-77c-88 103 -147 211 -182 334c-35 -123 -94 -231 -182 -334h-77c145 144 210 354 226 557h66c16 -203 81 -413 226 -557'], + 0x22D0: [531,25,685,64,621,'621 118h-285c-77 0 -130 64 -130 136c0 75 58 134 130 134h285v-66h-284c-36 0 -65 -34 -65 -68c0 -35 30 -70 66 -70h283v-66zM621 -25h-290c-159 0 -267 131 -267 279s110 277 270 277h287v-66h-287c-114 0 -204 -104 -204 -211s91 -213 205 -213h286v-66'], + 0x22D1: [531,25,685,64,621,'64 531h287c160 0 270 -129 270 -277s-108 -279 -267 -279h-290v66h286c114 0 205 106 205 213s-90 211 -204 211h-287v66zM64 388h285c72 0 130 -59 130 -134c0 -72 -53 -136 -130 -136h-285v66h283c36 0 66 35 66 70c0 34 -29 68 -65 68h-284v66'], + 0x22D2: [536,31,620,48,572,'572 -31h-66v295c0 114 -87 206 -196 206c-106 0 -196 -91 -196 -205v-296h-66v296c0 160 114 271 262 271c149 0 262 -109 262 -268v-299zM433 -31h-66v297c0 37 -19 66 -57 66c-37 0 -57 -29 -57 -65v-298h-66v299c0 77 52 130 123 130c73 0 123 -53 123 -130v-299'], + 0x22D3: [536,31,620,48,572,'433 536v-299c0 -77 -50 -130 -123 -130c-71 0 -123 53 -123 130v299h66v-298c0 -36 20 -65 57 -65c38 0 57 29 57 66v297h66zM572 536v-299c0 -159 -113 -268 -262 -268c-148 0 -262 111 -262 271v296h66v-296c0 -114 90 -205 196 -205c109 0 196 92 196 206v295h66'], + 0x22D4: [631,31,620,48,572,'572 -31h-66v296c0 102 -72 186 -163 203v-499h-66v499c-93 -16 -163 -102 -163 -204v-295h-66v299c0 147 96 251 229 266v97h66v-97c131 -16 229 -121 229 -269v-296'], + 0x22D6: [534,24,685,56,621,'539 253c0 -36 -26 -68 -67 -68c-40 0 -68 27 -68 68s34 67 68 67s67 -27 67 -67zM621 -24l-565 273v10l565 275v-65l-432 -215l432 -215v-63'], + 0x22D7: [534,24,685,56,621,'621 249l-565 -273v63l432 215l-432 215v65l565 -275v-10zM273 253c0 -41 -28 -68 -68 -68c-41 0 -67 32 -67 68c0 40 33 67 67 67s68 -26 68 -67'], + 0x22D8: [534,24,1274,45,1229,'1229 -24l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM920 -24l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM610 -24l-565 273v10l565 275v-65l-432 -215l432 -215v-63'], + 0x22D9: [534,24,1274,45,1229,'1229 249l-565 -273v63l432 215l-432 215v65l565 -275v-10zM919 249l-565 -273v63l432 215l-432 215v65l565 -275v-10zM610 249l-565 -273v63l432 215l-432 215v65l565 -275v-10'], + 0x22DA: [830,324,685,56,621,'621 393l-565 214v10l565 213v-65l-406 -153l406 -156v-63zM621 220h-565v66h565v-66zM621 -111l-565 -213v63l406 155l-406 154v65l565 -214v-10'], + 0x22DB: [830,324,685,56,621,'621 607l-565 -214v63l406 156l-406 153v65l565 -213v-10zM621 220h-565v66h565v-66zM621 -324l-565 213v10l565 214v-65l-406 -154l406 -155v-63'], + 0x22DE: [627,121,685,64,621,'621 627v-78c-140 -160 -392 -221 -557 -228v66c151 10 419 67 557 240zM621 -44v-77c-120 161 -354 230 -557 246v66c203 16 437 85 557 246v-77c-50 -86 -211 -167 -334 -202c123 -35 284 -116 334 -202'], + 0x22DF: [627,121,685,64,621,'621 387v-66c-165 7 -417 68 -557 228v78c138 -173 406 -230 557 -240zM621 191v-66c-203 -16 -437 -85 -557 -246v77c50 86 211 167 334 202c-123 35 -284 116 -334 202v77c120 -161 354 -230 557 -246'], + 0x22E0: [730,229,685,64,621,'621 -43v-77c-65 88 -163 145 -271 183l-95 -292h-53l100 308c-79 22 -161 35 -238 41v66c84 -6 174 -20 258 -44l37 113c-95 36 -199 55 -295 62v66c121 9 254 38 367 93l82 254h53l-71 -217c49 32 92 69 126 115v-67c-46 -59 -100 -101 -153 -132l-44 -136 c66 -32 137 -80 197 -155v-67c-54 72 -130 126 -216 165l-35 -109c100 -35 190 -88 251 -170zM378 313l27 85c-67 -29 -127 -42 -158 -48c29 -6 76 -16 131 -37'], + 0x22E1: [730,229,685,64,621,'621 186v-66c-127 -10 -267 -38 -383 -98l-73 -251h-53l62 214c-42 -29 -80 -64 -110 -105v77c36 49 84 88 137 119l42 142c-71 -37 -133 -85 -179 -147v67c61 77 134 126 201 157l29 97c-75 30 -161 81 -230 169v67c60 -81 148 -138 247 -177l82 279h53l-87 -297 c85 -28 176 -44 262 -50v-66c-104 -8 -216 -30 -317 -71l-41 -138c111 48 240 69 358 78zM341 374l-16 -54c48 16 88 25 113 30c-22 4 -56 11 -97 24'], + 0x22E6: [669,279,685,48,637,'621 111l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM604 20h33c-6 -85 -60 -204 -158 -204c-45 0 -92 28 -137 58l-72 -153h-55l85 181c-36 23 -69 42 -96 42c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c38 0 79 -20 118 -45l67 140h55l-80 -168 c43 -29 83 -55 116 -55c69 0 102 67 117 138'], + 0x22E7: [669,279,685,48,637,'621 384l-565 -273v63l432 215l-432 215v65l565 -275v-10zM604 20h33c-6 -85 -60 -204 -158 -204c-44 0 -90 26 -134 55l-70 -150h-55l84 179c-37 24 -72 44 -100 44c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c40 0 82 -22 122 -48l68 143h55l-81 -171 c41 -27 80 -52 112 -52c69 0 102 67 117 138'], + 0x22E8: [670,279,685,48,637,'621 189v-77c-120 161 -354 230 -557 246v66c203 16 437 85 557 246v-77c-50 -86 -211 -167 -334 -202c123 -35 284 -116 334 -202zM604 20h33c-6 -85 -60 -204 -158 -204c-45 0 -93 28 -138 58l-72 -153h-55l85 182c-35 23 -68 41 -95 41c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c38 0 79 -20 118 -45l66 140h55l-79 -168c43 -29 83 -55 116 -55c69 0 102 67 117 138'], + 0x22E9: [670,279,685,48,637,'621 424v-66c-203 -16 -437 -85 -557 -246v77c50 86 211 167 334 202c-123 35 -284 116 -334 202v77c120 -161 354 -230 557 -246zM604 20h33c-6 -85 -60 -204 -158 -204c-44 0 -91 27 -135 56l-71 -151h-55l84 180c-36 24 -70 43 -98 43c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c39 0 81 -21 121 -47l67 142h55l-80 -170c42 -28 80 -53 113 -53c69 0 102 67 117 138'], + 0x22EA: [662,156,635,24,581,'581 -25l-279 139l-111 -270h-54l120 292l-233 117l354 177l96 232h54l-82 -198l135 67v-556zM515 80v346l-106 -53l-82 -200zM341 339l-172 -85v-2l113 -56'], + 0x22EB: [662,156,635,54,611,'611 253l-358 -179l-95 -230h-54l81 196l-131 -65v556l276 -138l111 269h54l-120 -291zM466 252v2l-116 57l-60 -147zM305 333l-185 93v-346l102 51'], + 0x22EC: [730,229,635,24,581,'581 -103h-355l-43 -126h-53l43 126h-149v66h171l82 239l-253 127l358 179l76 222h53l-66 -191l136 68v-556l-259 129l-74 -217h333v-66zM515 156v346l-99 -50l-73 -211zM352 421l-183 -91v-2l129 -65'], + 0x22ED: [730,229,635,54,611,'611 -103h-385l-36 -126h-53l36 126h-119v66h138l53 183l-191 -95v556l283 -142l77 265h53l-83 -288l227 -113l-304 -152l-62 -214h366v-66zM466 328v2l-100 50l-35 -119zM319 403l-199 99v-346l149 74'], + 0x22EE: [606,104,511,192,319,'319 543c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM319 252c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM319 -40c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x22EF: [316,-189,926,108,818,'818 253c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM526 253c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM235 253c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x22F1: [520,18,926,194,732,'321 457c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM732 46c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM525 252c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x2308: [713,213,469,188,447,'447 680h-109c-65 0 -84 -31 -84 -95v-798h-66v926h259v-33'], + 0x2309: [713,213,469,27,286,'286 -213h-66v798c0 64 -19 95 -84 95h-109v33h259v-926'], + 0x230A: [713,213,469,188,447,'447 -213h-259v926h66v-798c0 -64 19 -95 84 -95h109v-33'], + 0x230B: [713,213,469,27,286,'286 -213h-259v33h109c65 0 84 31 84 95v798h66v-926'], + 0x2322: [360,-147,1019,54,965,'965 162l-10 -15c-119 88 -281 128 -445 128c-193 0 -327 -40 -445 -128l-11 16c136 132 293 197 456 197c122 0 304 -65 455 -198'], + 0x2323: [360,-147,1019,54,965,'955 360l10 -15c-151 -133 -333 -198 -455 -198c-163 0 -320 65 -456 197l11 16c118 -88 252 -128 445 -128c164 0 326 40 445 128'], + 0x23B4: [766,-574,926,55,871,'871 574h-66v126h-684v-126h-66v192h816v-192'], + 0x23B5: [109,83,926,55,871,'871 -83h-816v192h66v-126h684v126h66v-192'], + 0x23D0: [405,-101,511,222,288,'288 101h-66v304h66v-304'], + 0x23DC: [100,100,1000,0,1000,'1000 -78c0 -22 -9 -22 -28 -22c-10 0 -46 15 -57 20c-192 80 -401 80 -415 80c-135 0 -292 -29 -415 -80c-25 -11 -45 -20 -71 -20c-10 0 -14 12 -14 19c0 24 95 78 113 88c114 63 299 93 387 93c94 0 241 -28 328 -65c92 -39 172 -94 172 -113'], + 0x23DD: [764,-564,1000,0,1000,'1000 742c0 -8 -13 -19 -15 -21c-176 -146 -446 -157 -485 -157c-11 0 -267 0 -462 139c-16 11 -38 27 -38 42c0 18 13 19 20 19c21 0 52 -14 65 -20c122 -51 281 -81 415 -81c89 0 232 21 317 46c32 9 66 22 98 35c27 12 45 20 71 20c2 0 5 -1 6 -3c8 -3 8 -13 8 -19'], + 0x23DE: [214,114,1000,0,1000,'1000 -114h-23c-24 77 -23 114 -117 114h-260c-47 0 -92 57 -100 100c-10 -42 -52 -100 -100 -100h-260c-95 0 -93 -37 -117 -114h-23c0 67 31 214 169 214h219c71 0 81 45 101 114h22c20 -69 30 -114 101 -114h219c133 0 169 -140 169 -202v-12'], + 0x23DF: [892,-564,1000,0,1000,'1000 892v-12c0 -62 -36 -202 -169 -202h-219c-71 0 -81 -45 -101 -114h-22c-20 69 -30 114 -101 114h-219c-138 0 -169 147 -169 214h23c24 -77 22 -114 117 -114h260c48 0 90 -58 100 -100c8 43 53 100 100 100h260c94 0 93 37 117 114h23'], + 0x23E0: [100,114,1000,0,1000,'1000 -114l-113 114h-774l-113 -114v52l96 162h808l96 -162v-52'], + 0x23E1: [778,-564,1000,0,1000,'1000 726l-96 -162h-808l-96 162v52l113 -114h774l113 114v-52'], + 0x24C8: [676,14,684,0,684,'475 395h-23c-6 25 -13 40 -26 54c-22 23 -47 39 -86 39c-38 0 -57 -18 -57 -45c0 -31 41 -53 106 -85c68 -34 101 -70 101 -115c0 -67 -58 -109 -132 -109c-26 0 -45 4 -70 14c-11 4 -21 5 -29 5s-15 -7 -15 -19h-21l-21 130h23c27 -66 62 -97 123 -97c42 0 68 24 68 59 c0 37 -65 71 -117 96c-51 24 -79 63 -79 100c0 64 47 102 111 102c25 0 37 -3 60 -12c11 -4 21 -6 29 -6c10 0 17 6 20 18h18zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x250C: [340,303,708,317,720,'720 267h-330v-570h-73v643h403v-73'], + 0x2510: [340,303,708,-11,390,'390 -303h-73v570h-328v73h401v-643'], + 0x2514: [910,-267,708,317,720,'720 267h-403v643h73v-570h330v-73'], + 0x2518: [910,-267,708,-11,390,'390 267h-401v73h328v570h73v-643'], + 0x2571: [910,303,708,-15,723,'723 878l-680 -1181l-58 32l680 1181'], + 0x2572: [910,303,708,-15,723,'723 -271l-58 -32l-680 1181l58 32'], + 0x25A0: [662,158,910,45,865,'865 -158h-820v820h820v-820'], + 0x25A1: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 -92v688h-688v-688h688'], + 0x25B2: [811,127,1145,35,1110,'1110 -127h-1075l538 938'], + 0x25B3: [811,127,1145,35,1110,'1110 -127h-1075l538 938zM995 -61l-422 739l-424 -739h846'], + 0x25B6: [790,285,1043,70,1008,'1008 253l-938 -538v1075'], + 0x25B8: [556,49,660,80,605,'605 253l-525 -302v605'], + 0x25B9: [555,50,660,80,605,'605 253l-525 -303v605zM472 252l-326 191v-383'], + 0x25BC: [811,127,1145,35,1110,'1110 811l-537 -938l-538 938h1075'], + 0x25BD: [811,127,1145,35,1110,'1110 811l-537 -938l-538 938h1075zM995 745h-846l424 -739'], + 0x25C0: [790,285,1043,35,973,'973 -285l-938 538l938 537v-1075'], + 0x25C2: [555,50,660,55,580,'580 -50l-525 303l525 302v-605'], + 0x25C3: [554,51,660,55,580,'580 -51l-525 303l525 302v-605zM514 61v383l-326 -192'], + 0x25CA: [795,289,790,45,745,'745 253l-351 -542l-349 542l350 542zM667 253l-272 421l-271 -421l270 -421'], + 0x25EF: [785,282,1207,70,1137,'1137 252c0 -294 -239 -534 -533 -534s-534 240 -534 534s240 533 534 533s533 -239 533 -533zM1071 252c0 256 -211 467 -467 467s-468 -211 -468 -467s212 -468 468 -468s467 212 467 468'], + 0x2660: [609,99,685,34,651,'314 68h-12c-39 -56 -88 -64 -132 -64c-60 0 -136 71 -136 166c0 175 174 253 310 439c127 -186 307 -266 307 -436c0 -120 -89 -169 -147 -169c-37 0 -77 3 -119 64h-10c0 -60 20 -147 79 -152v-15h-222v15c60 5 82 91 82 152'], + 0x2661: [603,105,685,34,651,'651 415c0 -175 -173 -334 -309 -520c-127 186 -308 349 -308 519c0 120 79 189 157 189c49 0 117 -27 150 -143c43 116 97 143 154 143c90 0 156 -66 156 -188zM379 395h-73c-36 103 -61 142 -123 142c-45 0 -83 -45 -83 -118c0 -104 93 -226 242 -416 c168 186 243 309 243 416c0 75 -32 118 -84 118c-62 0 -88 -38 -122 -142'], + 0x2662: [609,105,685,41,643,'643 252c-113 -114 -211 -232 -300 -357c-97 127 -199 244 -302 357c112 110 212 229 302 357c95 -127 195 -246 300 -357zM533 251c0 15 -6 33 -17 47c-49 45 -92 104 -139 165c-10 13 -22 20 -35 20s-24 -8 -35 -22c-44 -58 -88 -112 -137 -165 c-12 -12 -16 -27 -16 -44c0 -16 7 -37 16 -46c44 -49 90 -105 134 -164c11 -15 25 -21 39 -21c15 0 28 6 39 21c41 54 85 107 135 160c12 13 16 32 16 49'], + 0x2663: [603,99,685,34,651,'472 340l6 -6c8 5 21 6 24 6c85 0 149 -82 149 -167c0 -110 -71 -169 -145 -169c-52 0 -102 28 -120 64h-11c0 -60 20 -147 79 -152v-15h-222v15c60 5 82 92 82 152h-11c-21 -36 -67 -64 -121 -64c-82 0 -148 66 -148 169c0 102 68 167 152 167c7 0 15 -3 24 -4l6 7 c-18 26 -29 55 -29 99c0 83 73 161 160 161c86 0 154 -76 154 -158c0 -46 -12 -78 -29 -105'], + 0x266D: [768,10,426,57,346,'97 768v-318c36 47 89 58 113 58c82 0 136 -50 136 -141c0 -113 -30 -242 -271 -377h-18v755zM97 370v-307c130 87 169 216 169 300c0 49 -19 108 -72 108c-54 0 -97 -64 -97 -101'], + 0x266E: [768,181,426,75,350,'350 -158l-40 -23v260l-235 -89v755l40 23v-260l235 89v-755zM310 164v332l-195 -74v-330'], + 0x266F: [768,181,426,41,386,'386 95l-55 -17v-150l-40 -23v161l-155 -49v-175l-40 -23v186l-55 -17v85l55 17v335l-55 -17v85l55 17v149l40 23v-160l155 49v174l40 23v-185l55 17v-85l-55 -17v-335l55 17v-85zM291 151v335l-155 -49v-335'], + 0x2713: [707,12,755,34,704,'704 690l-24 -27c-27 -31 -173 -222 -217 -286c-83 -121 -158 -245 -234 -366c-9 -14 -22 -23 -40 -23h-64c-26 0 -91 188 -91 237c0 7 5 20 15 26l60 33c8 4 16 6 25 6c25 0 41 -92 68 -119l240 359c25 37 89 126 125 145s82 29 132 32'], + 0x2720: [592,87,767,53,714,'714 430v-355c-86 92 -187 154 -279 154h-28v-39c0 -110 52 -182 154 -277h-355c92 85 154 169 154 277v39h-29c-99 0 -157 -37 -278 -154v355c82 -89 182 -154 278 -154h29v39c0 104 -60 192 -154 277h355c-92 -85 -154 -171 -154 -275v-41h29c92 0 154 35 278 154'], + 0x27E8: [713,213,400,77,335,'335 713l-192 -462l191 -464h-52l-205 454v20l206 452h52'], + 0x27E9: [713,213,400,65,323,'323 240l-206 -453h-52l192 463l-191 463h52l205 -453v-20'], + 0x27EE: [676,177,233,56,211,'211 -166l-16 -11c-137 107 -139 265 -139 424c0 160 1 320 139 429l16 -11c-65 -84 -81 -157 -81 -262v-307c0 -105 16 -178 81 -262'], + 0x27EF: [676,177,233,22,177,'22 665l16 11c138 -109 139 -269 139 -429c0 -159 -2 -317 -139 -424l-16 11c65 84 81 157 81 262v307c0 105 -16 178 -81 262'], + 0x27F5: [449,-58,1574,55,1519,'1519 220h-1277c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 116 237 191l20 -19c-22 -32 -51 -65 -81 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h1276v-66'], + 0x27F6: [449,-57,1574,55,1519,'1519 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-1276v66h1277c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191'], + 0x27F7: [449,-57,1574,55,1519,'1519 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-1089c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 171 115 237 191l20 -19 c-23 -33 -51 -65 -81 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h1089c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -59 63 -81 96l20 19c65 -75 140 -150 236 -190'], + 0x27F8: [551,45,1574,55,1519,'1519 120h-1148c-18 0 -26 -14 -26 -22c0 -16 6 -25 23 -42c11 -11 50 -53 74 -81l-21 -20c-117 116 -243 201 -366 293v10c121 92 249 177 366 293l21 -20c-24 -28 -50 -56 -75 -82c-14 -15 -22 -21 -22 -41c0 -8 8 -22 26 -22h1148v-66h-1292c-33 -19 -59 -43 -59 -67 s26 -45 58 -67h1293v-66'], + 0x27F9: [551,45,1574,55,1519,'1519 258v-10c-121 -92 -249 -177 -366 -293l-21 20c24 28 50 56 75 82c14 15 22 21 22 41c0 8 -8 22 -26 22h-1148v66h1292c33 19 59 43 59 67s-26 45 -58 67h-1293v66h1148c18 0 26 14 26 22c0 16 -6 25 -23 42c-11 11 -50 53 -74 81l21 20c117 -116 243 -201 366 -293 '], + 0x27FA: [517,10,1574,55,1519,'1519 258v-10c-45 -30 -197 -142 -314 -258l-28 21c21 23 69 64 69 93c0 11 -1 16 -30 16h-855c-26 0 -35 -2 -35 -18c0 -24 31 -45 70 -89l-23 -23c-121 114 -272 230 -318 258v10c46 33 195 146 318 259l23 -23c-24 -28 -72 -69 -72 -89c0 -15 18 -19 34 -19h858 c20 0 28 12 28 21c0 34 -44 60 -67 86l28 24c122 -112 268 -228 314 -259zM225 186h1122c33 19 59 43 59 67s-26 45 -58 67h-1122c-33 -19 -58 -43 -59 -67c0 -23 26 -45 58 -67'], + 0x27FC: [450,-57,1574,55,1519,'1519 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-1226v-163h-50v393h50v-164h1227c18 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 65 -82 98l20 19c65 -75 141 -152 237 -192'], + 0x2997: [719,213,488,188,466,'466 719l-124 -141v-651l123 -140h-27l-250 217v498l250 217h28'], + 0x2998: [719,213,488,22,300,'300 4l-250 -217h-28l124 141v651l-123 140h28l249 -217v-498'], + 0x29EB: [795,289,790,45,745,'745 253l-351 -542l-349 542l350 542'], + 0x29F5: [710,222,523,46,478,'478 -222h-72l-360 932h72'], + 0x29F8: [695,325,602,85,517,'517 695l-370 -1020h-62l370 1020h62'], + 0x29F9: [695,325,602,85,517,'517 -325h-62l-370 1020h62'], + 0x2A3F: [662,0,694,30,664,'664 0h-633v19c74 4 78 26 78 101v433c0 74 -14 84 -79 90v19h245v-19c-67 -6 -76 -19 -76 -90v-503h297v503c0 74 -12 84 -78 90v19h246v-19c-67 -6 -78 -19 -78 -90v-444c0 -66 9 -85 78 -90v-19'], + 0x2A5E: [796,29,620,31,589,'571 730h-524v66h524v-66zM571 580h-524v66h524v-66zM589 -29h-63l-215 432l-215 -432h-65l275 565h10'], + 0x2A7D: [625,137,685,56,621,'621 67l-565 275v10l565 273v-63l-432 -215l432 -215v-65zM621 -137l-565 275v66l565 -275v-66'], + 0x2A7E: [625,137,685,56,621,'621 342l-565 -275v65l432 215l-432 215v63l565 -273v-10zM621 138l-565 -275v66l565 275v-66'], + 0x2A85: [746,275,685,48,637,'622 249l-565 244v10l565 243v-65l-432 -183l432 -186v-63zM604 175h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM604 -61h33c-6 -85 -60 -204 -158 -204 c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2A86: [746,275,685,48,637,'629 493l-565 -244v63l432 186l-432 183v65l565 -243v-10zM604 175h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM604 -61h33c-6 -85 -60 -204 -158 -204 c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2A87: [628,216,685,60,625,'625 70l-565 273v10l565 275v-65l-432 -215l432 -213v-65zM625 -120h-279l-60 -96h-59l60 96h-227v66h269l61 96h59l-61 -96h237v-66'], + 0x2A88: [628,216,687,56,621,'621 343l-565 -273v63l432 215l-432 215v65l565 -275v-10zM621 -120h-279l-60 -96h-59l60 96h-227v66h269l61 96h59l-61 -96h237v-66'], + 0x2A89: [746,309,685,48,637,'621 249l-565 244v10l565 243v-65l-432 -183l432 -186v-63zM604 -61h33c-6 -85 -60 -204 -158 -204c-56 0 -116 42 -170 80l-62 -124h-61l77 153c-21 12 -41 19 -59 19c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c27 0 55 -10 83 -25l59 116 c-55 36 -108 79 -149 79c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c57 0 118 -46 174 -83l64 127h61l-79 -155c20 -10 39 -17 56 -17c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-26 0 -52 9 -79 23l-59 -117c54 -35 105 -76 146 -76c69 0 102 67 117 138 '], + 0x2A8A: [746,309,685,48,637,'621 492l-565 -243v65l432 183l-432 186v63l565 -244v-10zM604 -61h33c-6 -85 -60 -204 -158 -204c-56 0 -116 42 -170 80l-62 -124h-61l77 153c-21 12 -41 19 -59 19c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c27 0 55 -10 83 -25l59 116 c-55 36 -108 79 -149 79c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c57 0 118 -46 174 -83l64 127h61l-79 -155c20 -10 39 -17 56 -17c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-26 0 -52 9 -79 23l-59 -117c54 -35 105 -76 146 -76c69 0 102 67 117 138 '], + 0x2A8B: [930,424,685,56,621,'621 493l-565 213v10l565 214v-65l-407 -154l407 -155v-63zM621 320h-565v66h565v-66zM621 120h-565v66h565v-66zM621 -212l-565 -212v63l407 154l-407 155v65l565 -215v-10'], + 0x2A8C: [930,424,685,56,621,'621 706l-565 -213v63l407 155l-407 154v65l565 -214v-10zM621 320h-565v66h565v-66zM621 120h-565v66h565v-66zM621 -424l-565 212v10l565 215v-65l-407 -155l407 -154v-63'], + 0x2A95: [640,122,685,56,621,'621 574l-565 -275v66l565 275v-66zM621 -122l-565 273v10l565 275v-65l-432 -215l432 -215v-63'], + 0x2A96: [640,122,685,56,621,'621 299l-565 275v66l565 -275v-66zM621 151l-565 -273v63l432 215l-432 215v65l565 -275v-10'], + 0x2AAF: [609,103,685,64,621,'621 128v-77c-120 161 -354 230 -557 246v66c203 16 437 85 557 246v-77c-50 -86 -211 -167 -334 -202c123 -35 284 -116 334 -202zM621 -103h-557v66h557v-66'], + 0x2AB0: [609,103,685,64,621,'621 363v-66c-203 -16 -437 -85 -557 -246v77c50 86 211 167 334 202c-123 35 -284 116 -334 202v77c120 -161 354 -230 557 -246zM621 -103h-557v66h557v-66'], + 0x2AB5: [747,260,685,65,622,'622 266v-77c-120 161 -354 230 -557 246v66c203 16 437 85 557 246v-77c-50 -86 -211 -167 -334 -202c123 -35 284 -116 334 -202zM622 -184h-337l-47 -76h-60l47 76h-160v66h201l84 134h-285v66h326l48 76h60l-48 -76h171v-66h-212l-84 -134h296v-66'], + 0x2AB6: [747,260,685,65,622,'622 501v-66c-203 -16 -437 -85 -557 -246v77c50 86 211 167 334 202c-123 35 -284 116 -334 202v77c120 -161 354 -230 557 -246zM622 -184h-332l-47 -76h-60l47 76h-165v66h206l84 134h-290v66h331l48 76h60l-48 -76h166v-66h-207l-84 -134h291v-66'], + 0x2AB7: [747,275,685,48,637,'621 326v-77c-120 161 -354 200 -557 216v66c203 16 437 55 557 216v-77c-50 -86 -211 -157 -334 -172c123 -15 284 -86 334 -172zM604 175h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204 c96 0 203 -128 276 -128c69 0 102 67 117 138zM604 -61h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2AB8: [747,275,685,48,637,'621 531v-66c-203 -16 -437 -55 -557 -216v77c50 86 211 157 334 172c-123 15 -284 86 -334 172v77c120 -161 354 -200 557 -216zM604 175h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204 c96 0 203 -128 276 -128c69 0 102 67 117 138zM604 -61h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2AB9: [747,309,685,48,637,'622 326v-77c-120 161 -354 200 -557 216v66c203 16 437 55 557 216v-77c-50 -86 -211 -157 -334 -172c123 -15 284 -86 334 -172zM604 -61h33c-6 -85 -60 -204 -158 -204c-56 0 -116 42 -170 80l-62 -124h-61l77 153c-21 12 -41 19 -59 19c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c27 0 55 -10 83 -25l59 116c-55 36 -108 79 -149 79c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c57 0 118 -46 174 -83l64 127h61l-79 -155c20 -10 39 -17 56 -17c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-26 0 -52 9 -79 23 l-59 -117c54 -35 105 -76 146 -76c69 0 102 67 117 138'], + 0x2ABA: [747,309,685,48,637,'622 531v-66c-203 -16 -437 -55 -557 -216v77c50 86 211 157 334 172c-123 15 -284 86 -334 172v77c120 -161 354 -200 557 -216zM604 -61h33c-6 -85 -60 -204 -158 -204c-56 0 -116 42 -170 80l-62 -124h-61l77 153c-21 12 -41 19 -59 19c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c27 0 55 -10 83 -25l59 116c-55 36 -108 79 -149 79c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c57 0 118 -46 174 -83l64 127h61l-79 -155c20 -10 39 -17 56 -17c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-26 0 -52 9 -79 23 l-59 -117c54 -35 105 -76 146 -76c69 0 102 67 117 138'], + 0x2AC5: [717,211,685,64,622,'622 161h-291c-159 0 -267 131 -267 279s110 277 270 277h288v-66h-288c-114 0 -204 -104 -204 -211s91 -213 205 -213h287v-66zM622 -12h-548v66h548v-66zM622 -211h-548v66h548v-66'], + 0x2AC6: [717,211,685,65,623,'65 717h288c160 0 270 -129 270 -277s-108 -279 -267 -279h-291v66h287c114 0 205 106 205 213s-90 211 -204 211h-288v66zM623 -12h-558v66h558v-66zM623 -211h-558v66h558v-66'], + 0x2ACB: [717,319,685,61,619,'619 161h-291c-159 0 -267 131 -267 279s110 277 270 277h288v-66h-288c-114 0 -204 -104 -204 -211s91 -213 205 -213h287v-66zM619 -211h-313l-60 -108h-62l60 108h-173v66h210l74 133h-284v66h320l48 85h62l-48 -85h166v-66h-202l-74 -133h276v-66'], + 0x2ACC: [717,319,685,66,624,'66 717h291c159 0 267 -131 267 -279s-110 -277 -270 -277h-288v66h288c114 0 204 104 204 211s-91 213 -205 213h-287v66zM614 -211h-312l-60 -108h-62l60 108h-174v66h211l74 133h-285v66h321l48 85h62l-48 -85h165v-66h-201l-74 -133h275v-66'], + 0xFFFD: [662,217,872,55,817,'817 223l-383 -440l-379 438l384 441zM414 58h38c7 54 22 86 52 120c97 79 110 109 110 157c0 81 -96 143 -178 143c-106 0 -174 -77 -174 -148c0 -31 32 -51 55 -51c24 0 53 18 53 37c0 27 -32 23 -32 52c0 30 37 69 88 69c59 0 86 -30 86 -95c0 -58 -36 -96 -59 -145 c-33 -71 -38 -107 -39 -139zM483 -49c0 33 -25 53 -52 53c-25 0 -50 -19 -50 -54c0 -22 24 -48 50 -48c28 0 52 27 52 49'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/Bold/Main.js new file mode 100644 index 0000000..f3367a0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/Bold/Main.js @@ -0,0 +1,197 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Marks/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Marks-bold'] = { + directory: 'Marks/Bold', + family: 'STIXMathJax_Marks', + weight: 'bold', + id: 'STIXWEBMARKSB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2B0: [842,-335,378,6,365,'365 335h-162v18c23 4 32 14 32 45v169c0 53 -8 73 -35 73c-15 0 -39 -9 -60 -42v-199c0 -31 7 -41 33 -46v-18h-166v18c31 6 37 7 37 49v376c0 36 -6 39 -38 46v18h134v-210c33 42 63 58 101 58c56 0 90 -41 90 -102v-188c0 -34 10 -47 34 -47v-18'], + 0x2B1: [848,-336,378,7,365,'365 336h-162v18c24 3 32 15 32 46v168c0 53 -8 73 -35 73c-17 0 -33 -9 -48 -26c-7 -7 -12 -15 -12 -18v-197c0 -31 8 -42 33 -46v-18h-166v18c31 6 37 7 37 49v295c0 47 7 85 27 112c19 24 50 38 93 38c59 0 99 -31 99 -75c0 -28 -17 -48 -43 -48c-22 0 -41 19 -41 43 c0 26 16 32 16 42c0 9 -8 15 -21 15c-23 0 -34 -13 -34 -51v-141c34 44 65 58 101 58c57 0 90 -43 90 -102v-187c0 -35 10 -48 34 -48v-18'], + 0x2B2: [868,-179,300,25,273,'273 807c0 -33 -27 -59 -62 -59c-34 0 -58 26 -58 59c0 34 26 61 60 61c32 0 60 -28 60 -61zM270 690v-353c0 -46 -7 -75 -21 -100c-22 -38 -62 -58 -115 -58c-64 0 -109 31 -109 77c0 27 20 47 48 47c26 0 46 -19 46 -42c0 -8 -3 -17 -11 -29c-5 -7 -7 -13 -7 -16 c0 -8 10 -14 25 -14c26 0 37 18 37 59v365c0 33 -9 43 -49 46v18h156'], + 0x2B3: [699,-335,270,12,266,'131 690v-60c30 50 53 69 84 69c29 0 51 -24 51 -58c0 -29 -17 -49 -39 -49c-17 0 -27 7 -39 27c-6 14 -11 17 -16 17c-23 0 -38 -33 -38 -76v-148c0 -46 6 -57 44 -59v-18h-165v18c27 5 33 13 33 43v230c0 34 -7 41 -34 46v18h119'], + 0x2B4: [690,-326,292,10,264,'264 335h-119v60c-30 -50 -53 -69 -84 -69c-29 0 -51 24 -51 58c0 29 17 49 39 49c17 0 27 -7 39 -27c6 -14 11 -17 16 -17c23 0 38 33 38 76v148c0 46 -6 57 -44 59v18h165v-18c-27 -5 -33 -13 -33 -43v-230c0 -34 7 -41 34 -46v-18'], + 0x2B5: [690,-163,319,10,342,'230 628v-380c0 -32 11 -62 30 -62c12 0 20 5 20 12c0 4 -2 9 -6 16c-6 11 -8 20 -8 27c0 22 16 39 37 39c23 0 39 -18 39 -44c0 -43 -37 -73 -88 -73c-44 0 -76 20 -94 55c-9 16 -18 38 -18 61v112c-31 -50 -54 -65 -81 -65c-29 0 -51 24 -51 57c0 31 17 50 40 50 c16 0 28 -8 39 -29c7 -13 10 -15 15 -15c22 0 38 32 38 73v148c0 48 -5 60 -44 62v18h165v-18c-28 -5 -33 -14 -33 -44'], + 0x2B6: [684,-345,404,20,397,'397 684v-12c-10 0 -19 -5 -24 -11l-109 -142c32 -7 45 -16 60 -29c17 -13 26 -36 26 -59c0 -58 -56 -86 -162 -86h-168v12c39 3 47 11 47 51v215c0 41 -5 44 -47 49v12h184v-12c-43 -6 -47 -10 -47 -47v-98h15l113 157h112zM157 510v-126c0 -16 7 -22 28 -22 c51 0 71 21 71 74c0 61 -28 73 -99 74'], + 0x2B7: [681,-331,550,23,528,'528 681v-18c-19 -4 -27 -12 -37 -37l-114 -295h-17l-76 228l-92 -228h-18l-109 275c-18 46 -23 53 -42 57v18h164v-18c-21 -3 -28 -8 -28 -21c0 -9 9 -31 29 -84l33 -87l50 126l-15 48c-7 15 -14 16 -33 18v18h173v-18c-28 -2 -36 -6 -36 -18c0 -7 6 -27 20 -78 s18 -62 25 -93l26 69c22 58 33 85 33 94c0 17 -8 23 -36 26v18h100'], + 0x2B8: [690,-179,380,16,374,'374 690v-18c-24 -3 -34 -10 -46 -43l-114 -305c-26 -71 -43 -102 -59 -120c-16 -17 -38 -25 -64 -25c-44 0 -75 24 -75 60c0 29 19 52 48 52c26 0 46 -18 46 -40c0 -4 -2 -11 -2 -16c0 -6 6 -13 13 -13c18 0 37 25 50 63l14 41l-91 223c-15 38 -45 103 -52 113 c-4 6 -9 8 -26 10v18h192v-18h-13c-19 -2 -27 -8 -27 -20c0 -3 7 -24 15 -45l55 -143l53 144c7 20 8 29 8 38c0 18 -8 25 -41 26v18h116'], + 0x2B9: [684,-421,208,30,216,'30 432l93 212c13 30 30 40 52 40c19 0 41 -21 41 -41c0 -15 -9 -28 -19 -42l-135 -180'], + 0x2BA: [684,-421,356,19,364,'178 432l93 212c13 30 30 40 52 40c19 0 41 -21 41 -41c0 -15 -9 -28 -19 -42l-135 -180zM19 432l93 212c13 30 30 40 52 40c19 0 41 -21 41 -41c0 -15 -9 -28 -19 -42l-135 -180'], + 0x2BB: [685,-350,333,39,223,'205 685l11 -22c-75 -52 -109 -94 -109 -133c0 -12 8 -21 19 -21c7 0 14 2 24 2c43 0 73 -30 73 -76c0 -52 -34 -85 -84 -85c-63 0 -100 45 -100 116c0 86 50 158 166 219'], + 0x2BC: [686,-351,333,39,223,'57 351l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x2BD: [686,-351,250,39,223,'216 373l-11 -22c-116 61 -166 133 -166 219c0 71 37 116 100 116c50 0 84 -33 84 -85c0 -46 -30 -76 -73 -76c-10 0 -17 2 -24 2c-11 0 -19 -9 -19 -21c0 -39 34 -81 109 -133'], + 0x2BE: [662,-382,334,65,250,'65 662h45c73 0 140 -34 140 -140s-68 -140 -140 -140h-45v50h45c71 0 90 46 90 90c0 42 -18 90 -90 90h-45v50'], + 0x2BF: [662,-382,334,65,250,'250 382h-45c-72 0 -140 34 -140 140s67 140 140 140h45v-50h-45c-72 0 -90 -48 -90 -90c0 -44 19 -90 90 -90h45v-50'], + 0x2C0: [690,-240,353,30,333,'103 441h27c47 0 98 36 98 102c0 40 -9 123 -53 123c-30 0 -37 -26 -44 -53c-6 -25 -21 -49 -58 -49c-30 0 -43 24 -43 39c0 28 19 51 45 65c25 14 55 22 83 22c101 0 175 -61 175 -158c0 -81 -55 -171 -156 -171c-7 0 -14 0 -25 1l-6 -122h-43v201'], + 0x2C1: [690,-240,353,30,333,'217 240l-6 122c-11 -1 -18 -1 -25 -1c-101 0 -156 90 -156 171c0 97 74 158 175 158c28 0 58 -8 83 -22c26 -14 45 -37 45 -65c0 -15 -13 -39 -43 -39c-37 0 -52 24 -58 49c-7 27 -14 53 -44 53c-44 0 -53 -83 -53 -123c0 -66 51 -102 98 -102h27v-201h-43'], + 0x2C2: [760,-414,317,30,297,'297 414l-267 148v50l267 148v-76l-179 -97l179 -97v-76'], + 0x2C3: [760,-414,317,30,297,'297 562l-267 -148v76l179 97l-179 97v76l267 -148v-50'], + 0x2C4: [720,-453,317,-14,332,'332 453h-76l-97 179l-97 -179h-76l148 267h50'], + 0x2C5: [720,-453,317,-14,332,'332 720l-148 -267h-50l-148 267h76l97 -179l97 179h76'], + 0x2C8: [720,-455,279,112,167,'167 455h-55v265h55v-265'], + 0x2CC: [70,195,278,112,167,'167 -195h-55v265h55v-265'], + 0x2CD: [-88,160,370,20,350,'350 -160h-330v72h330v-72'], + 0x2CE: [-7,192,333,15,253,'253 -192h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28'], + 0x2CF: [-7,192,333,80,318,'80 -192l137 157c17 19 33 28 53 28c29 0 48 -18 48 -44c0 -23 -8 -33 -40 -53l-142 -88h-56'], + 0x2D0: [474,-4,333,79,254,'254 474l-55 -180h-65l-55 180h175zM254 4h-175l55 180h65'], + 0x2D1: [474,-294,333,79,254,'254 474l-55 -180h-65l-55 180h175'], + 0x2D2: [378,-62,333,65,268,'65 378h45c80 0 158 -54 158 -158s-78 -158 -158 -158h-45v68h45c50 0 90 40 90 90s-40 90 -90 90h-45v68'], + 0x2D3: [378,-62,333,65,268,'268 62h-45c-80 0 -158 54 -158 158s78 158 158 158h45v-68h-45c-50 0 -90 -40 -90 -90s40 -90 90 -90h45v-68'], + 0x2D4: [206,-4,333,51,281,'281 4h-230v55h87v147h55v-147h88v-55'], + 0x2D5: [206,-4,333,51,281,'281 151h-88v-147h-55v147h-87v55h230v-55'], + 0x2D6: [227,-9,334,61,273,'273 85h-76v-76h-60v76h-76v66h76v76h60v-76h76v-66'], + 0x2D7: [150,-84,334,61,273,'273 84h-212v66h212v-66'], + 0x2DB: [44,173,333,90,319,'296 -83l23 -16c-25 -46 -79 -74 -126 -74c-62 0 -103 31 -103 78c0 38 13 63 54 111c8 10 10 11 14 16l33 12c-1 -7 -3 -10 -6 -20c-9 -32 -11 -49 -11 -64c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8'], + 0x2DD: [713,-528,333,-13,425,'187 528l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57zM-13 528l136 157c17 19 34 28 54 28c29 0 48 -18 48 -44c0 -23 -8 -35 -40 -55l-141 -86h-57'], + 0x2DE: [481,-186,292,0,302,'279 342l23 -64c-4 -11 -13 -40 -28 -60c-23 -30 -44 -32 -63 -32c-35 0 -63 37 -75 56c-28 48 -37 74 -56 115c-18 -32 -66 -54 -77 -57l-3 55c12 8 37 22 62 53c19 25 27 54 31 73c10 -29 44 -140 90 -202c7 -9 22 -25 34 -25c16 0 33 17 41 32c9 17 12 28 21 56'], + 0x2DF: [744,-506,260,10,250,'250 550l-45 -44l-74 74l-76 -74l-45 44l75 76l-74 73l45 45l75 -73l73 73l46 -45l-74 -73'], + 0x2E0: [684,-190,420,10,410,'410 667h-8c-13 0 -29 -27 -38 -42l-111 -189l70 -118c9 -16 17 -36 17 -55c0 -49 -65 -73 -113 -73c-45 0 -114 7 -114 62c0 20 15 52 22 64l50 86l-92 159c-16 28 -28 51 -45 78c-11 17 -18 27 -38 28v17h152v-17c-14 0 -29 -4 -29 -22c0 -5 8 -17 15 -29l81 -139 l67 113c10 17 27 43 27 53c0 18 -18 24 -32 24v17h119v-17zM209 361l-25 -44c-6 -10 -25 -44 -25 -62c0 -33 40 -41 57 -41s53 8 53 36c0 14 -31 62 -40 77'], + 0x2E1: [842,-335,190,5,186,'186 335h-180v18c26 2 38 14 38 47v375c0 28 -12 47 -39 49v18h144v-442c0 -34 12 -46 37 -47v-18'], + 0x2E2: [695,-320,300,19,278,'262 582h-19c-12 33 -20 48 -37 63c-17 16 -37 25 -57 25c-30 0 -51 -19 -51 -45s20 -46 74 -68c77 -31 106 -65 106 -120c0 -69 -49 -117 -119 -117c-21 0 -60 9 -83 18c-7 3 -14 5 -17 5c-7 0 -12 -6 -21 -22h-19v127h22c16 -67 51 -102 105 -102c35 0 58 20 58 50 c0 25 -21 44 -74 67c-78 34 -109 69 -109 120c0 64 51 112 121 112c17 0 35 -3 60 -11c12 -4 19 -6 24 -6c10 0 14 4 19 16h17v-112'], + 0x2E3: [690,-335,380,12,376,'376 335h-186v18c25 2 35 7 35 16s-7 22 -25 49l-33 49l-47 -63c-9 -12 -14 -23 -14 -32c0 -12 10 -17 38 -19v-18h-130v18c28 2 43 15 87 72l50 65l-99 151c-16 24 -20 27 -40 31v18h193v-18c-25 -1 -36 -6 -36 -15c0 -12 8 -23 15 -33l40 -56l27 36c21 27 30 40 30 49 c0 12 -7 15 -24 17l-16 2v18h130v-18c-24 -4 -39 -13 -54 -31l-78 -97l108 -168c6 -9 18 -23 29 -23v-18'], + 0x2E4: [855,-335,328,20,323,'170 419v108c-7 -1 -11 -1 -16 -1c-83 0 -134 91 -134 171c0 97 74 158 175 158c28 0 58 -8 83 -22c26 -14 45 -37 45 -65c0 -15 -13 -39 -43 -39c-37 0 -52 24 -58 49c-7 27 -14 53 -44 53c-44 0 -53 -83 -53 -123c0 -66 51 -102 98 -102h27v-198c0 -41 13 -52 69 -56 v-17h-224v17c56 4 75 4 75 67'], + 0x2E5: [676,0,405,40,368,'368 0h-66v610h-262v66h328v-676'], + 0x2E6: [676,0,405,40,368,'368 0h-66v428h-262v66h262v182h66v-676'], + 0x2E7: [676,0,405,40,368,'368 0h-66v305h-262v66h262v305h66v-676'], + 0x2E8: [676,0,405,40,368,'368 0h-66v182h-262v66h262v428h66v-676'], + 0x2E9: [676,0,405,40,368,'368 0h-328v66h262v610h66v-676'], + 0x2EC: [70,167,314,5,309,'309 70l-131 -237h-43l-130 237h78l74 -136l74 136h78'], + 0x2ED: [720,-528,395,5,390,'390 648h-385v72h385v-72zM390 528h-385v72h385v-72'], + 0x2F7: [-108,235,333,-16,349,'306 -108h43c-23 -87 -60 -127 -116 -127c-34 0 -55 9 -83 22c-31 14 -53 27 -75 27c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c32 0 58 -12 88 -26c18 -8 48 -23 62 -23c29 0 43 13 56 49'], + 0x305: [838,-788,0,-500,0,'0 788h-500v50h500v-50'], + 0x309: [751,-491,0,-336,-131,'-292 589h18c34 0 66 29 66 64c0 18 -1 72 -28 72c-34 0 -11 -64 -67 -64c-17 0 -33 12 -33 30c0 40 46 60 81 60c66 0 124 -32 124 -105c0 -68 -54 -113 -120 -113l-2 -42h-39v98'], + 0x30D: [730,-530,0,-277,-211,'-211 530h-66v200h66v-200'], + 0x30E: [730,-530,0,-358,-142,'-142 530h-66v200h66v-200zM-292 530h-66v200h66v-200'], + 0x30F: [713,-528,0,-469,-31,'-31 528h-56l-142 88c-32 20 -40 30 -40 53c0 26 19 44 48 44c20 0 36 -9 53 -28zM-231 528h-56l-142 88c-32 20 -40 30 -40 53c0 26 19 44 48 44c20 0 36 -9 53 -28'], + 0x310: [828,-528,0,-401,-98,'-185 762c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM-142 691h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87'], + 0x311: [691,-528,0,-401,-98,'-98 528h-44c-17 64 -51 87 -113 87c-54 0 -90 -26 -102 -87h-44c1 96 51 163 151 163c99 0 145 -69 152 -163'], + 0x312: [867,-532,0,-342,-158,'-176 867l11 -22c-75 -52 -109 -94 -109 -133c0 -12 8 -21 19 -21c7 0 14 2 24 2c43 0 73 -30 73 -76c0 -52 -34 -85 -84 -85c-63 0 -100 45 -100 116c0 86 50 158 166 219'], + 0x313: [867,-532,0,-342,-158,'-324 532l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x314: [867,-532,0,-342,-158,'-165 554l-11 -22c-116 61 -166 133 -166 219c0 71 37 116 100 116c50 0 84 -33 84 -85c0 -46 -30 -76 -73 -76c-10 0 -17 2 -24 2c-11 0 -19 -9 -19 -21c0 -39 34 -81 109 -133'], + 0x315: [867,-532,0,-116,68,'-98 532l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x316: [-70,255,0,-369,-131,'-131 -255h-56l-142 88c-29 18 -40 32 -40 52c0 25 21 45 47 45c19 0 38 -10 54 -28'], + 0x317: [-70,255,0,-369,-131,'-369 -255l137 157c16 18 35 28 54 28c26 0 47 -20 47 -45c0 -20 -11 -34 -40 -52l-142 -88h-56'], + 0x318: [-58,288,0,-425,-223,'-223 -288h-55v88h-147v55h147v87h55v-230'], + 0x319: [-58,288,0,-288,-86,'-86 -200h-147v-88h-55v230h55v-87h147v-55'], + 0x31A: [752,-531,0,-410,-93,'-93 531h-72v149h-245v72h317v-221'], + 0x31B: [505,-352,0,-62,66,'-62 374h8c26 0 46 7 46 25c0 4 -41 19 -41 57c0 21 20 49 53 49c32 0 62 -23 62 -67c0 -45 -31 -72 -72 -81c-13 -3 -38 -5 -56 -5v22'], + 0x31C: [-33,313,0,-375,-190,'-190 -313h-45c-72 0 -140 34 -140 140s67 140 140 140h45v-50h-45c-72 0 -90 -48 -90 -90c0 -44 19 -90 90 -90h45v-50'], + 0x31D: [-70,272,0,-365,-135,'-135 -272h-230v55h87v147h55v-147h88v-55'], + 0x31E: [-70,272,0,-365,-135,'-135 -125h-88v-147h-55v147h-87v55h230v-55'], + 0x31F: [-70,287,0,-356,-144,'-144 -206h-76v-81h-60v81h-76v66h76v70h60v-70h76v-66'], + 0x320: [-140,206,0,-356,-144,'-144 -206h-212v66h212v-66'], + 0x321: [75,287,0,-241,-22,'-22 75v-212c0 -47 -7 -85 -27 -112c-19 -24 -50 -38 -93 -38c-59 0 -99 31 -99 75c0 28 17 48 43 48c22 0 41 -19 41 -43c0 -26 -16 -32 -16 -42c0 -9 7 -15 23 -15c23 0 56 14 56 51v288h72'], + 0x322: [75,287,0,-94,125,'-22 75v-288c0 -37 33 -51 56 -51c16 0 23 6 23 15c0 10 -16 16 -16 42c0 24 19 43 41 43c26 0 43 -20 43 -48c0 -44 -40 -75 -99 -75c-43 0 -74 14 -93 38c-20 27 -27 65 -27 112v212h72'], + 0x323: [-109,238,0,-314,-185,'-185 -173c0 -36 -29 -65 -66 -65c-35 0 -63 29 -63 65c0 35 28 64 63 64s66 -28 66 -64'], + 0x324: [-109,238,0,-419,-80,'-80 -173c0 -36 -29 -65 -66 -65c-35 0 -63 29 -63 65c0 34 29 64 64 64s65 -30 65 -64zM-290 -173c0 -36 -28 -65 -65 -65c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -64'], + 0x325: [-66,279,0,-356,-143,'-143 -173c0 -59 -47 -106 -106 -106c-60 0 -107 47 -107 106c0 58 49 107 108 107c57 0 105 -49 105 -107zM-191 -173c0 31 -28 59 -61 59c-29 0 -56 -28 -56 -59c0 -32 27 -58 57 -58c32 0 60 25 60 58'], + 0x326: [-88,423,0,-342,-158,'-324 -423l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x327: [0,218,0,-363,-137,'-230 0l-28 -64c12 4 20 5 32 5c56 0 89 -26 89 -70c0 -55 -50 -89 -129 -89c-34 0 -60 5 -97 18l16 37l6 -2c24 -8 37 -12 53 -12c38 0 58 14 58 41c0 23 -17 36 -46 36c-9 0 -17 -1 -28 -4l-11 8l43 96h42'], + 0x328: [44,173,0,-364,-135,'-158 -83l23 -16c-25 -46 -79 -74 -126 -74c-62 0 -103 31 -103 78c0 38 13 63 54 111c8 10 10 11 14 16l33 12c-1 -7 -3 -10 -6 -20c-9 -32 -11 -49 -11 -64c0 -47 18 -64 61 -64c16 0 28 3 48 13c8 4 10 6 13 8'], + 0x329: [-107,239,0,-277,-222,'-222 -239h-55v132h55v-132'], + 0x32A: [-86,260,0,-425,-93,'-93 -260h-72v102h-188v-102h-72v174h332v-174'], + 0x32B: [-104,242,0,-420,-95,'-95 -104v-44c0 -65 -43 -94 -97 -94c-31 0 -57 16 -68 34c-11 -18 -29 -34 -61 -34c-54 0 -99 24 -99 94v44h55v-45c0 -28 13 -38 39 -38c20 0 39 10 39 38v45h55v-44c0 -28 15 -39 41 -39c27 0 41 11 41 39v44h55'], + 0x32C: [-83,259,0,-418,-81,'-81 -83l-123 -176h-92l-122 176h57l111 -99l111 99h58'], + 0x32D: [-85,261,0,-418,-81,'-81 -261h-57l-112 98l-112 -98h-56l122 176h92'], + 0x32E: [-78,241,0,-401,-98,'-142 -78h44c-7 -94 -53 -163 -152 -163c-100 0 -150 67 -151 163h44c12 -61 48 -87 102 -87c62 0 96 23 113 87'], + 0x32F: [-78,241,0,-401,-98,'-98 -241h-44c-17 64 -51 87 -113 87c-54 0 -90 -26 -102 -87h-44c1 96 51 163 151 163c99 0 145 -69 152 -163'], + 0x330: [-108,235,0,-432,-67,'-110 -108h43c-23 -87 -60 -127 -116 -127c-34 0 -55 9 -83 22c-31 14 -53 27 -75 27c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c32 0 58 -12 88 -26c18 -8 48 -23 62 -23c29 0 43 13 56 49'], + 0x331: [-137,209,0,-415,-85,'-85 -209h-330v72h330v-72'], + 0x332: [-137,187,0,-500,0,'0 -187h-500v50h500v-50'], + 0x333: [-137,287,0,-500,0,'0 -187h-500v50h500v-50zM0 -287h-500v50h500v-50'], + 0x334: [316,-189,0,-432,-67,'-110 316h43c-23 -87 -60 -127 -116 -127c-34 0 -55 9 -83 22c-31 14 -53 27 -75 27c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c32 0 58 -12 88 -26c18 -8 48 -23 62 -23c29 0 43 13 56 49'], + 0x335: [282,-224,0,-414,-108,'-108 224h-306v58h306v-58'], + 0x336: [282,-224,0,-510,-10,'-10 224h-500v58h500v-58'], + 0x337: [580,74,0,-410,-43,'-43 580l-285 -654h-82l285 654h82'], + 0x339: [-33,313,0,-375,-190,'-375 -33h45c73 0 140 -34 140 -140s-68 -140 -140 -140h-45v50h45c71 0 90 46 90 90c0 42 -18 90 -90 90h-45v50'], + 0x33A: [-71,245,0,-425,-93,'-93 -245h-332v174h72v-102h188v102h72v-174'], + 0x33B: [-70,264,0,-353,-167,'-167 -264h-186v194h186v-194zM-222 -209v84h-76v-84h76'], + 0x33C: [-89,234,0,-410,-109,'-109 -115v-68c-36 22 -57 22 -69 22c-32 0 -46 -39 -62 -73h-38c-17 37 -27 73 -73 73c-8 0 -27 -2 -59 -22v68c30 20 46 26 65 26c32 0 61 -13 85 -53c28 40 57 53 86 53c24 0 37 -7 65 -26'], + 0x33D: [719,-520,0,-350,-150,'-150 558l-38 -38l-62 62l-62 -62l-38 38l62 62l-61 62l38 37l61 -61l61 61l39 -37l-62 -62'], + 0x33E: [881,-516,0,-314,-187,'-189 881v-42c-28 -4 -47 -23 -47 -49c0 -22 13 -44 27 -75c13 -28 22 -49 22 -83c0 -56 -40 -93 -127 -116v42c36 13 49 28 49 57c0 14 -15 44 -23 62c-14 30 -26 56 -26 88c0 62 39 98 125 116'], + 0x33F: [938,-788,0,-500,0,'0 888h-500v50h500v-50zM0 788h-500v50h500v-50'], + 0x346: [717,-544,0,-410,-107,'-107 544h-78v95h-147v-95h-78v173h303v-173'], + 0x347: [-137,322,0,0,330,'330 -207h-330v70h330v-70zM330 -322h-330v70h330v-70'], + 0x34C: [837,-547,0,-446,-81,'-124 837h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM-124 674h43c-23 -87 -60 -127 -116 -127 c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49'], + 0x359: [-66,368,0,-359,-89,'-89 -157c0 -23 -23 -30 -44 -35s-46 -11 -71 -27c25 -14 46 -21 67 -26c19 -5 47 -10 47 -36c0 -13 -7 -28 -27 -28c-17 0 -30 14 -47 32c-13 14 -23 27 -48 43c0 -40 19 -63 19 -99c0 -13 -9 -35 -29 -35c-21 0 -29 22 -29 35c0 36 18 58 18 98 c-17 -12 -34 -28 -44 -39c-18 -19 -33 -34 -54 -34c-17 0 -27 11 -27 27c0 25 27 32 53 38c21 5 41 14 60 24c-20 12 -37 17 -59 23c-24 8 -55 10 -55 41c0 17 13 28 25 28c18 0 39 -17 52 -33c10 -13 29 -29 49 -41c0 41 -18 68 -18 103c0 11 7 32 29 32 c24 0 29 -21 29 -32c0 -35 -19 -62 -19 -103c29 16 41 29 55 47c11 15 27 27 43 27c13 0 25 -13 25 -30'], + 0x35C: [-79,242,0,-401,300,'256 -79h44c0 -142 -248 -163 -351 -163c-102 0 -350 21 -350 163h44c21 -84 236 -87 306 -87s286 3 307 87'], + 0x360: [674,-529,0,-432,398,'355 656h43c-22 -75 -80 -127 -193 -127c-38 0 -179 22 -229 33c-55 12 -174 34 -215 34c-73 0 -136 -3 -151 -47h-42c14 66 79 125 197 125c50 0 170 -22 219 -33c63 -14 191 -34 257 -34c62 0 95 1 114 49'], + 0x361: [691,-534,0,-403,265,'265 534h-29c-18 84 -236 97 -305 97s-287 -13 -305 -97h-29c0 140 233 157 334 157s334 -17 334 -157'], + 0x362: [-54,293,0,-432,377,'377 -161v-24c-45 -19 -105 -72 -137 -108l-33 32c27 34 37 39 37 43s-3 9 -12 9h-664v72h665c4 0 12 6 12 11c0 4 -11 7 -38 41l34 31c31 -36 91 -88 136 -107'], + 0x2010: [287,-171,333,44,287,'287 171h-243v116h243v-116'], + 0x2011: [287,-171,333,44,287,'287 171h-243v116h243v-116'], + 0x2012: [287,-171,500,0,500,'500 171h-500v116h500v-116'], + 0x2015: [271,-181,2000,0,2000,'2000 181h-2000v90h2000v-90'], + 0x2017: [-137,287,520,10,510,'510 -187h-500v50h500v-50zM510 -287h-500v50h500v-50'], + 0x201A: [155,180,333,79,263,'97 -180l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x201B: [691,-356,333,79,263,'256 378l-11 -22c-116 61 -166 133 -166 219c0 71 37 116 100 116c50 0 84 -33 84 -85c0 -46 -30 -76 -73 -76c-10 0 -17 2 -24 2c-11 0 -19 -9 -19 -21c0 -39 34 -81 109 -133'], + 0x201E: [155,180,500,14,468,'302 -180l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219zM32 -180l-11 22c75 52 109 94 109 133c0 12 -8 21 -19 21c-7 0 -14 -2 -24 -2 c-43 0 -73 30 -73 76c0 52 34 85 84 85c63 0 100 -45 100 -116c0 -86 -50 -158 -166 -219'], + 0x201F: [691,-356,500,14,468,'461 378l-11 -22c-116 61 -166 133 -166 219c0 71 37 116 100 116c50 0 84 -33 84 -85c0 -46 -30 -76 -73 -76c-10 0 -17 2 -24 2c-11 0 -19 -9 -19 -21c0 -39 34 -81 109 -133zM191 378l-11 -22c-116 61 -166 133 -166 219c0 71 37 116 100 116c50 0 84 -33 84 -85 c0 -46 -30 -76 -73 -76c-10 0 -17 2 -24 2c-11 0 -19 -9 -19 -21c0 -39 34 -81 109 -133'], + 0x2022: [462,-42,560,70,490,'490 253c0 -117 -96 -211 -211 -211c-116 0 -209 93 -209 211c0 113 93 209 209 209c124 0 211 -94 211 -209'], + 0x2025: [156,13,666,82,584,'584 71c0 -47 -38 -84 -85 -84c-48 0 -84 36 -84 84c0 47 38 85 85 85c46 0 84 -39 84 -85zM251 71c0 -47 -38 -84 -85 -84c-48 0 -84 36 -84 84c0 47 38 85 85 85c46 0 84 -39 84 -85'], + 0x2030: [706,29,1110,61,1049,'1049 213c0 -70 -28 -143 -72 -189c-26 -27 -62 -42 -100 -42c-76 0 -127 54 -127 136c0 117 89 215 195 215c65 0 104 -45 104 -120zM1024 220c0 46 -25 80 -60 80c-20 0 -40 -15 -60 -45c-31 -47 -56 -127 -56 -180c0 -42 18 -65 49 -65c30 0 55 16 79 51 c28 43 48 108 48 159zM688 214c0 -70 -28 -143 -73 -190c-25 -27 -61 -42 -99 -42c-76 0 -128 56 -128 138c0 113 91 213 195 213c66 0 105 -45 105 -119zM663 220c0 46 -25 80 -59 80c-21 0 -41 -15 -62 -46c-32 -48 -56 -125 -56 -178c0 -43 17 -66 50 -66 c30 0 55 16 79 51c28 43 48 108 48 159zM626 706l-438 -735h-48l388 655c-40 -30 -73 -42 -113 -42c-21 0 -35 3 -60 13c2 -19 3 -29 3 -42c0 -71 -28 -147 -70 -189c-28 -28 -65 -44 -101 -44c-74 0 -126 57 -126 139c0 114 92 213 197 213c26 0 45 -8 71 -29 c29 -23 47 -30 83 -30c66 0 115 27 166 91h48zM332 560c0 34 -6 44 -32 54c-7 3 -10 4 -21 11s-15 9 -20 9c-42 0 -102 -127 -102 -216c0 -42 18 -66 50 -66c64 0 125 101 125 208'], + 0x2031: [706,29,1472,61,1411,'1411 213c0 -70 -28 -143 -72 -189c-26 -27 -62 -42 -100 -42c-76 0 -127 54 -127 136c0 117 89 215 195 215c65 0 104 -45 104 -120zM1386 220c0 46 -25 80 -60 80c-20 0 -40 -15 -60 -45c-31 -47 -56 -127 -56 -180c0 -42 18 -65 49 -65c30 0 55 16 79 51 c28 43 48 108 48 159zM1049 213c0 -70 -28 -143 -72 -189c-26 -27 -62 -42 -100 -42c-76 0 -127 54 -127 136c0 117 89 215 195 215c65 0 104 -45 104 -120zM1025 220c0 46 -25 80 -59 80c-21 0 -41 -15 -62 -46c-32 -48 -56 -125 -56 -178c0 -43 17 -66 50 -66 c30 0 55 16 79 51c28 43 48 108 48 159zM688 214c0 -70 -28 -143 -73 -190c-25 -27 -61 -42 -99 -42c-76 0 -128 56 -128 138c0 113 91 213 195 213c66 0 105 -45 105 -119zM663 220c0 46 -25 80 -59 80c-21 0 -41 -15 -62 -46c-32 -48 -56 -125 -56 -178 c0 -43 17 -66 50 -66c30 0 55 16 79 51c28 43 48 108 48 159zM626 706l-438 -735h-48l388 655c-40 -30 -73 -42 -113 -42c-21 0 -35 3 -60 13c2 -19 3 -29 3 -42c0 -71 -28 -147 -70 -189c-28 -28 -65 -44 -101 -44c-74 0 -126 57 -126 139c0 114 92 213 197 213 c26 0 45 -8 71 -29c29 -23 47 -30 83 -30c66 0 115 27 166 91h48zM332 560c0 34 -6 44 -32 54c-7 3 -10 4 -21 11s-15 9 -20 9c-42 0 -102 -127 -102 -216c0 -42 18 -66 50 -66c64 0 125 101 125 208'], + 0x2036: [713,-438,467,75,392,'392 445l-33 -7l-112 195c-7 12 -14 25 -14 39c0 21 22 41 43 41c28 0 43 -22 50 -46zM234 445l-33 -7l-112 195c-7 12 -14 25 -14 39c0 21 22 41 43 41c28 0 43 -22 50 -46'], + 0x2037: [713,-438,625,75,550,'550 445l-33 -7l-112 195c-7 12 -14 25 -14 39c0 21 22 41 43 41c28 0 43 -22 50 -46zM392 445l-33 -7l-112 195c-7 12 -14 25 -14 39c0 21 22 41 43 41c28 0 43 -22 50 -46zM234 445l-33 -7l-112 195c-7 12 -14 25 -14 39c0 21 22 41 43 41c28 0 43 -22 50 -46'], + 0x2038: [117,170,584,91,497,'497 -150l-27 -20l-178 216l-176 -216l-25 20l195 267h11'], + 0x2039: [415,-36,333,51,305,'254 393l6 5c16 13 23 17 31 17s12 -4 12 -11c0 -22 -34 -75 -93 -147c-8 -10 -16 -20 -23 -30c14 -21 26 -36 40 -54c48 -62 78 -102 78 -122c0 -9 -4 -15 -11 -15c-8 0 -17 5 -29 16c-3 3 -5 5 -8 7l-206 166v4'], + 0x203A: [415,-36,333,28,282,'282 222l-203 -164l-6 -5c-16 -14 -22 -17 -31 -17c-8 0 -12 4 -12 11c0 22 34 75 93 147c8 10 16 20 23 30c-15 22 -27 38 -40 53c-51 61 -78 103 -78 123c0 9 5 15 11 15c7 0 16 -5 29 -16c3 -3 5 -5 8 -7l206 -166v-4'], + 0x203C: [691,13,625,81,544,'474 234h-31c-13 124 -22 171 -51 266c-14 45 -18 65 -18 91c0 63 30 100 84 100c50 0 85 -37 85 -102c0 -23 -4 -45 -18 -89c-29 -96 -38 -143 -51 -266zM181 234h-31c-13 124 -22 171 -51 266c-14 45 -18 65 -18 91c0 63 30 100 84 100c50 0 85 -37 85 -102 c0 -23 -4 -45 -18 -89c-29 -96 -38 -143 -51 -266zM544 71c0 -47 -38 -84 -85 -84c-48 0 -84 35 -84 83c0 50 38 86 85 86c49 0 84 -36 84 -85zM251 71c0 -47 -38 -84 -85 -84c-48 0 -84 35 -84 83c0 50 38 86 85 86c49 0 84 -36 84 -85'], + 0x2040: [725,-508,798,79,733,'733 523l-19 -15c-84 94 -178 119 -306 119c-129 0 -221 -21 -308 -119l-21 13c55 125 194 204 327 204c137 0 270 -74 327 -202'], + 0x2047: [689,13,947,57,892,'700 232h-30c-3 25 -3 34 -3 45c3 93 76 157 76 246c0 82 -31 130 -84 130c-37 0 -61 -16 -61 -40c0 -10 3 -16 15 -29c17 -19 22 -31 22 -51c0 -38 -34 -67 -65 -67c-39 0 -66 34 -66 78c0 83 74 145 184 145c127 0 204 -71 204 -166c0 -69 -29 -109 -121 -166 c-63 -39 -71 -52 -71 -125zM770 71c0 -47 -37 -84 -84 -84c-48 0 -85 37 -85 84s38 85 86 85c45 0 83 -39 83 -85zM253 232h-30c-3 25 -3 34 -3 45c3 93 76 157 76 246c0 82 -31 130 -84 130c-37 0 -61 -16 -61 -40c0 -10 3 -16 15 -29c17 -19 22 -31 22 -51 c0 -38 -34 -67 -65 -67c-39 0 -66 34 -66 78c0 83 74 145 184 145c127 0 204 -71 204 -166c0 -69 -29 -109 -121 -166c-63 -39 -71 -52 -71 -125zM323 71c0 -47 -37 -84 -84 -84c-48 0 -85 37 -85 84s38 85 86 85c45 0 83 -39 83 -85'], + 0x204E: [236,200,500,56,448,'260 42l7 -3c37 29 46 36 72 74c20 31 34 38 56 38c27 0 53 -22 53 -48c0 -33 -44 -53 -82 -53c-44 0 -56 -4 -89 -26v-8c36 -17 51 -24 97 -28c54 -4 73 -18 73 -51c0 -29 -17 -50 -49 -50c-27 0 -39 14 -75 62c-20 27 -28 35 -57 50l-6 -4c1 -45 8 -60 27 -98 c11 -21 15 -33 15 -45c0 -30 -22 -52 -51 -52c-27 0 -49 21 -49 52c0 16 4 24 16 46c20 34 22 51 23 97l-6 4c-38 -28 -47 -36 -74 -75c-21 -31 -34 -37 -55 -37c-28 0 -50 20 -50 48c0 37 32 49 84 53c42 3 54 7 86 29v7c-40 18 -56 22 -102 26c-52 4 -68 28 -68 53 c0 29 19 48 47 48s42 -9 62 -43c23 -40 33 -48 71 -69l5 3c-1 42 -2 52 -23 91c-14 25 -18 36 -18 53c0 29 22 50 52 50c28 0 48 -22 48 -55c0 -15 -5 -24 -18 -47c-18 -30 -22 -47 -22 -77v-15'], + 0x204F: [472,180,333,67,251,'249 388c0 -48 -37 -85 -84 -85s-85 37 -85 84s38 85 84 85c48 0 85 -37 85 -84zM244 -158l-11 -22c-116 61 -166 133 -166 219c0 71 37 116 100 116c50 0 84 -33 84 -85c0 -46 -30 -76 -73 -76c-10 0 -17 2 -24 2c-11 0 -19 -9 -19 -21c0 -39 34 -81 109 -133'], + 0x2051: [706,200,500,56,448,'260 512l7 -3c37 29 46 36 72 74c20 31 34 38 56 38c27 0 53 -22 53 -48c0 -33 -44 -53 -82 -53c-44 0 -56 -4 -89 -26v-8c36 -17 51 -24 97 -28c54 -4 73 -18 73 -51c0 -29 -17 -50 -49 -50c-27 0 -39 14 -75 62c-20 27 -28 35 -57 50l-6 -4c1 -45 8 -60 27 -98 c11 -21 15 -33 15 -45c0 -30 -22 -52 -51 -52c-27 0 -49 21 -49 52c0 16 4 24 16 46c20 34 22 51 23 97l-6 4c-38 -28 -47 -36 -74 -75c-21 -31 -34 -37 -55 -37c-28 0 -50 20 -50 48c0 37 32 49 84 53c42 3 54 7 86 29v7c-40 18 -56 22 -102 26c-52 4 -68 28 -68 53 c0 29 19 48 47 48s42 -9 62 -43c23 -40 33 -48 71 -69l5 3c-1 42 -2 52 -23 91c-14 25 -18 36 -18 53c0 29 22 50 52 50c28 0 48 -22 48 -55c0 -15 -5 -24 -18 -47c-18 -30 -22 -47 -22 -77v-15zM260 42l7 -3c37 29 46 36 72 74c20 31 34 38 56 38c27 0 53 -22 53 -48 c0 -33 -44 -53 -82 -53c-44 0 -56 -4 -89 -26v-8c36 -17 51 -24 97 -28c54 -4 73 -18 73 -51c0 -29 -17 -50 -49 -50c-27 0 -39 14 -75 62c-20 27 -28 35 -57 50l-6 -4c1 -45 8 -60 27 -98c11 -21 15 -33 15 -45c0 -30 -22 -52 -51 -52c-27 0 -49 21 -49 52c0 16 4 24 16 46 c20 34 22 51 23 97l-6 4c-38 -28 -47 -36 -74 -75c-21 -31 -34 -37 -55 -37c-28 0 -50 20 -50 48c0 37 32 49 84 53c42 3 54 7 86 29v7c-40 18 -56 22 -102 26c-52 4 -68 28 -68 53c0 29 19 48 47 48s42 -9 62 -43c23 -40 33 -48 71 -69l5 3c-1 42 -2 52 -23 91 c-14 25 -18 36 -18 53c0 29 22 50 52 50c28 0 48 -22 48 -55c0 -15 -5 -24 -18 -47c-18 -30 -22 -47 -22 -77v-15'], + 0x20D0: [846,-637,0,-470,14,'14 637h-484l169 209l19 -16c-39 -55 -50 -76 -50 -88c0 -19 10 -27 39 -27h307v-78'], + 0x20D1: [846,-637,0,-470,14,'14 637h-484v78h307c29 0 39 8 39 27c0 12 -11 33 -50 88l19 16'], + 0x20D2: [662,156,0,-298,-223,'-223 -156h-75v818h75v-818'], + 0x20D6: [846,-508,0,-500,-16,'-16 637h-310c-28 0 -38 -2 -38 -19c0 -10 11 -36 51 -93l-18 -17l-169 169l169 169l19 -16c-39 -55 -53 -76 -53 -88c0 -19 10 -27 39 -27h310v-78'], + 0x20DB: [666,-537,0,-512,37,'37 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM-173 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM-383 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64 c34 0 64 -30 64 -66'], + 0x20DC: [666,-537,0,-627,132,'132 600c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM-78 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM-288 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64 c34 0 64 -30 64 -66zM-498 600c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66'], + 0x20DD: [760,254,0,-753,256,'-249 760c280 0 505 -227 505 -507s-225 -507 -505 -507s-504 227 -504 507s224 507 504 507zM-249 672c-229 0 -416 -190 -416 -419c0 -228 187 -419 416 -419c226 0 417 191 417 419c0 229 -191 419 -417 419'], + 0x20E1: [846,-508,0,-515,79,'79 677l-169 -169l-18 17c40 57 51 83 51 93c0 17 -10 19 -38 19h-246c-28 0 -38 -2 -38 -19c0 -10 11 -36 51 -93l-18 -17l-169 169l169 169l19 -16c-39 -55 -53 -76 -53 -88c0 -17 8 -27 31 -27h254c29 0 39 8 39 27c0 12 -14 33 -53 88l19 16'], + 0x20E4: [1055,169,0,-998,519,'519 -169h-1517l750 1224zM-838 -81h1198l-608 964'], + 0x20E5: [662,155,0,-470,12,'12 -155h-84l-398 817h84'], + 0x20E6: [662,156,0,-390,-111,'-111 -156h-75v818h75v-818zM-315 -156h-75v818h75v-818'], + 0x20E7: [760,172,0,-643,200,'200 -172h-88v844h-755v88h843v-932'], + 0x20E8: [-109,238,0,-512,37,'37 -175c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM-173 -175c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM-383 -175c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64 c34 0 64 -30 64 -66'], + 0x20E9: [717,-544,0,-510,54,'54 544h-78v95h-408v-95h-78v173h564v-173'], + 0x20EA: [441,-65,0,-688,148,'148 209h-593c-21 0 -48 -1 -48 -12c0 -13 26 -40 30 -45c21 -24 31 -37 52 -67l-25 -20c-78 89 -147 136 -252 183v11c103 43 181 99 252 182l24 -22c-21 -31 -31 -45 -51 -68c-5 -6 -30 -30 -30 -41c0 -12 29 -13 48 -13h593v-88'], + 0x20EB: [775,235,0,-505,208,'208 775l-418 -1010h-79l418 1010h79zM-8 775l-418 -1010h-79l418 1010h79'], + 0x20EC: [-166,375,0,-470,14,'14 -166l-169 -209l-19 16c39 55 50 76 50 88c0 19 -10 27 -39 27h-307v78h484'], + 0x20ED: [-166,375,0,-470,14,'14 -244h-307c-29 0 -39 -8 -39 -27c0 -12 11 -33 50 -88l-19 -16l-169 209h484v-78'], + 0x20EE: [-35,373,0,-490,-6,'-6 -244h-310c-28 0 -38 -2 -38 -19c0 -10 11 -36 51 -93l-18 -17l-169 169l169 169l19 -16c-39 -55 -53 -76 -53 -88c0 -19 10 -27 39 -27h310v-78'], + 0x20EF: [-35,373,0,-470,14,'14 -204l-169 -169l-18 17c40 57 51 83 51 93c0 17 -10 19 -38 19h-310v78h310c29 0 39 8 39 27c0 12 -14 33 -53 88l19 16'], + 0x20F0: [845,-543,0,-385,-115,'-115 754c0 -23 -23 -30 -44 -35s-46 -11 -71 -27c25 -14 46 -21 67 -26c19 -5 47 -10 47 -36c0 -13 -7 -28 -27 -28c-17 0 -30 14 -47 32c-13 14 -23 27 -48 43c0 -40 19 -63 19 -99c0 -13 -9 -35 -29 -35c-21 0 -29 22 -29 35c0 36 18 58 18 98 c-17 -12 -34 -28 -44 -39c-18 -19 -33 -34 -54 -34c-17 0 -27 11 -27 27c0 25 27 32 53 38c21 5 41 14 60 24c-20 12 -37 17 -59 23c-24 8 -55 10 -55 41c0 17 13 28 25 28c18 0 39 -17 52 -33c10 -13 29 -29 49 -41c0 41 -18 68 -18 103c0 11 7 32 29 32 c24 0 29 -21 29 -32c0 -35 -19 -62 -19 -103c29 16 41 29 55 47c11 15 27 27 43 27c13 0 25 -13 25 -30'], + 0xE05E: [762,-565,0,95,425,'425 690h-330v72h330v-72zM425 565h-330v72h330v-72'], + 0xE061: [-137,437,0,0,330,'330 -207h-330v70h330v-70zM330 -322h-330v70h330v-70zM330 -437h-330v70h330v-70'], + 0xE062: [-137,552,0,0,330,'330 -207h-330v70h330v-70zM330 -322h-330v70h330v-70zM330 -437h-330v70h330v-70zM330 -552h-330v70h330v-70'], + 0xE064: [837,-565,333,-16,349,'306 837h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM332 565h-331v72h331v-72'], + 0xE065: [-137,409,0,-16,349,'332 -209h-331v72h331v-72zM307 -284h42c-18 -86 -54 -125 -116 -125c-21 0 -44 6 -73 19l-40 18c-25 11 -28 12 -39 12c-27 0 -41 -13 -54 -49h-43c23 87 60 127 116 127c21 0 46 -6 65 -14l29 -13c44 -20 51 -22 64 -22c26 0 45 19 49 47'], + 0xE066: [801,-565,0,91,430,'430 735c0 -35 -29 -63 -66 -63c-35 0 -63 29 -63 65c0 35 29 64 64 64s65 -30 65 -66zM220 735c0 -35 -28 -63 -65 -63c-35 0 -64 29 -64 65c0 34 30 64 65 64c34 0 64 -30 64 -66zM425 565h-330v72h330v-72'], + 0xE067: [-137,409,0,-16,349,'306 -137h43c-23 -87 -60 -127 -116 -127c-21 0 -46 6 -65 14l-29 13c-44 20 -51 22 -64 22c-26 0 -45 -19 -49 -47h-42c18 86 54 125 116 125c21 0 44 -6 73 -19l40 -18c25 -11 28 -12 39 -12c27 0 41 13 54 49zM332 -409h-331v72h331v-72'], + 0xE0D8: [688,13,400,57,343,'343 545c0 -80 -63 -143 -142 -143c-82 0 -144 63 -144 144c0 80 63 142 145 142c78 0 141 -64 141 -143zM289 546c0 50 -41 92 -91 92c-47 0 -87 -42 -87 -93s40 -93 89 -93s89 42 89 94zM285 71c0 -47 -38 -84 -85 -84c-48 0 -84 36 -84 84c0 47 38 85 85 85 c46 0 84 -39 84 -85'], + 0xE0D9: [663,0,314,54,260,'101 395l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195zM209 77c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78'], + 0xE0DA: [663,0,425,54,371,'212 395l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195zM54 395l66 222c7 24 22 46 50 46c21 0 43 -20 43 -41c0 -14 -7 -27 -14 -39l-112 -195zM234 77c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78'], + 0xE28D: [734,-484,0,92,498,'498 615h-54l-149 69l-149 -69h-54l175 119h56zM498 484h-54l-149 69l-149 -69h-54l175 119h56'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Marks/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/BoldItalic/Main.js new file mode 100644 index 0000000..be42fdd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/BoldItalic/Main.js @@ -0,0 +1,65 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Marks/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Marks-bold-italic'] = { + directory: 'Marks/BoldItalic', + family: 'STIXMathJax_Marks', + weight: 'bold', + style: 'italic', + id: 'STIXWEBMARKSBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2B0: [852,-328,380,7,365,'349 440l16 -11c-46 -76 -74 -101 -117 -101c-27 0 -47 18 -47 48c0 10 0 19 4 31l56 179c3 11 4 18 4 22c0 12 -6 16 -14 16c-19 0 -46 -23 -76 -70c-34 -53 -48 -89 -83 -219h-85l106 414c4 15 7 30 7 37c0 17 -9 24 -29 24h-15v20c56 5 92 11 146 22l-76 -308 c70 105 102 133 150 133c34 0 53 -21 53 -56c0 -7 -1 -19 -6 -36l-56 -185c-2 -6 -2 -7 -2 -9c0 -9 6 -12 12 -12c9 0 22 15 52 61'], + 0x2B1: [841,-329,380,7,365,'349 441l16 -11c-46 -76 -74 -101 -117 -101c-27 0 -47 18 -47 48c0 9 2 23 5 34l55 176c3 11 4 18 4 22c0 12 -6 16 -14 16c-19 0 -46 -23 -76 -70c-34 -53 -48 -90 -83 -219h-85l105 411c16 63 55 94 127 94c60 0 100 -30 100 -74c0 -27 -17 -47 -43 -47 c-24 0 -42 19 -42 42c0 26 16 32 16 42c0 9 -8 14 -21 14c-24 0 -39 -14 -48 -51l-55 -222c70 105 102 133 150 133c34 0 53 -21 53 -56c0 -11 -2 -23 -5 -34l-57 -187c-2 -6 -2 -7 -2 -10c0 -8 6 -11 12 -11c9 0 22 15 52 61'], + 0x2B2: [862,-176,350,24,384,'384 810c0 -29 -24 -52 -53 -52c-28 0 -51 23 -51 53c0 27 24 51 51 51c29 0 53 -24 53 -52zM353 690l-89 -341c-32 -123 -82 -173 -159 -173c-49 0 -81 25 -81 59c0 22 17 41 38 41c22 0 37 -15 37 -38c0 -16 -11 -16 -11 -27c0 -8 9 -11 18 -11c22 0 37 27 57 104 l69 269c6 23 9 42 9 52c0 16 -9 23 -32 23h-16v21c86 7 114 11 160 21'], + 0x2B3: [690,-344,389,21,384,'181 533h1c70 120 103 157 151 157c30 0 51 -19 51 -49c0 -32 -22 -55 -52 -55c-34 0 -36 28 -54 28c-12 0 -33 -20 -57 -57c-23 -35 -37 -60 -66 -139l-27 -74h-107c63 180 90 267 90 286c0 14 -11 19 -50 19v20c108 8 124 10 178 21'], + 0x2B4: [690,-344,389,2,365,'258 690h107c-63 -180 -90 -267 -90 -286c0 -14 11 -19 50 -19v-20c-108 -8 -124 -10 -178 -21l58 157h-1c-70 -120 -103 -157 -151 -157c-30 0 -51 19 -51 49c0 32 22 55 52 55c34 0 36 -28 54 -28c12 0 33 20 57 57c23 35 37 60 66 139'], + 0x2B5: [690,-171,389,2,371,'364 690l-143 -425c-2 -4 -4 -16 -4 -21c0 -28 17 -50 38 -50c17 0 30 1 30 9c0 16 -21 15 -21 44c0 27 23 44 52 44c33 0 55 -24 55 -51c0 -44 -51 -69 -124 -69c-81 0 -123 38 -123 96c0 8 1 17 4 25l77 209h-1c-70 -119 -104 -156 -151 -156c-30 0 -51 19 -51 49 c0 32 22 55 52 55c34 0 36 -29 54 -29c12 0 33 21 57 57c23 35 37 60 66 139l27 74h106'], + 0x2B6: [684,-345,390,5,466,'466 684v-12c-10 0 -20 -5 -27 -11l-147 -142c39 -9 69 -29 69 -65c0 -77 -80 -109 -192 -109h-164v12c20 0 49 10 60 51l58 215c3 12 5 21 5 28c0 15 -10 18 -39 21v12h184v-12c-45 -6 -50 -10 -60 -47l-26 -98h15l155 157h109zM183 510l-34 -126c-1 -3 -1 -7 -1 -9 c0 -10 6 -13 23 -13c58 0 96 40 96 104c0 29 -28 43 -84 44'], + 0x2B7: [690,-331,450,15,467,'296 690l23 -252c67 78 91 119 91 142c0 7 -5 16 -15 29c-13 14 -17 24 -17 36c0 30 21 45 43 45c25 0 46 -22 46 -47c0 -63 -67 -168 -205 -312h-20l-18 216c-25 -48 -53 -102 -86 -152l-42 -64h-20v82c0 91 -13 214 -28 228c-6 5 -14 8 -33 8v20c61 10 87 14 118 21 c17 -65 25 -116 25 -207c41 76 54 98 118 207h20'], + 0x2B8: [690,-176,350,11,386,'268 419h2c54 103 67 135 67 159c0 10 -6 15 -19 26c-17 14 -24 23 -24 42s16 44 44 44c26 0 48 -23 48 -49c0 -78 -92 -261 -192 -383c-42 -52 -92 -82 -135 -82c-27 0 -48 20 -48 46c0 23 19 43 39 43c36 0 45 -27 72 -27c14 0 36 17 52 40c13 18 19 37 19 54 c0 24 -12 98 -38 222c-10 46 -19 75 -31 87c-9 9 -12 10 -31 10v21c50 4 79 9 116 18c14 -36 38 -115 51 -211'], + 0x2BB: [685,-369,333,128,332,'319 685l13 -25c-79 -42 -118 -80 -118 -116c0 -14 6 -24 30 -37c32 -18 40 -38 40 -65c0 -48 -32 -73 -73 -73c-53 0 -83 40 -83 94c0 89 72 172 191 222'], + 0x2C0: [690,-240,343,-3,323,'52 441h26c83 0 139 87 139 174c0 28 -4 51 -28 51c-29 0 -37 -27 -43 -51c-9 -35 -29 -51 -60 -51s-44 24 -44 39c0 28 18 49 46 65c27 15 58 22 86 22c87 0 149 -49 149 -120c0 -101 -104 -209 -219 -209c-7 0 -14 0 -25 1l-39 -122h-43'], + 0x2C1: [690,-240,326,20,364,'135 240l27 122c-11 -1 -18 -1 -25 -1c-81 0 -117 58 -117 122c0 121 98 207 215 207c28 0 65 -10 87 -24c24 -15 42 -35 42 -63c0 -15 -13 -39 -43 -39c-37 0 -51 24 -57 46c-7 27 -14 56 -44 56c-49 0 -94 -109 -94 -152c0 -47 39 -73 79 -73h27l-54 -201h-43'], + 0x2DB: [44,173,333,-40,189,'167 -84l22 -14c-25 -47 -75 -75 -126 -75c-61 0 -103 28 -103 81c0 34 14 58 54 107l14 17l33 12l-5 -20c-8 -33 -12 -51 -12 -66c0 -45 23 -62 61 -62c16 0 28 3 48 13c8 4 9 5 14 7'], + 0x2DD: [697,-516,333,69,498,'258 516l122 133c35 39 52 48 70 48c26 0 48 -21 48 -47c0 -19 -9 -32 -39 -49l-151 -85h-50zM69 516l122 133c35 39 52 48 70 48c26 0 48 -19 48 -45c0 -19 -9 -34 -39 -51l-149 -85h-52'], + 0x2E0: [684,-190,379,14,423,'423 667h-8c-13 0 -37 -27 -50 -42l-161 -189l38 -117c3 -10 5 -22 5 -34c0 -64 -76 -95 -135 -95c-41 0 -98 5 -98 47c0 24 25 61 40 78l73 87l-50 159c-9 30 -14 51 -24 78c-6 17 -11 27 -30 28v17h152v-17c-13 0 -35 -5 -35 -25c0 -6 4 -16 7 -26l44 -139l97 113 c17 20 42 47 42 59c0 13 -14 18 -26 18v17h119v-17zM140 361l-37 -44c-10 -12 -43 -51 -43 -71c0 -25 32 -32 47 -32s64 10 64 41c0 13 -15 58 -20 72'], + 0x2E1: [857,-329,222,2,217,'217 857l-108 -390c-11 -40 -16 -64 -16 -74c0 -6 4 -12 11 -12c13 0 29 16 59 60l16 -10c-51 -79 -78 -102 -126 -102c-30 0 -51 20 -51 47c0 17 11 63 26 116l55 193c15 54 25 90 25 108c0 15 -11 23 -31 23c-4 0 -8 0 -16 -1v20c56 5 92 10 156 22'], + 0x2E2: [690,-331,280,8,274,'274 689l-18 -116l-20 2c-12 62 -32 90 -67 90c-24 0 -40 -16 -40 -40c0 -17 14 -41 43 -75c46 -53 61 -86 61 -122c0 -57 -50 -97 -112 -97c-16 0 -32 2 -48 9c-10 4 -18 6 -23 6c-10 0 -17 -4 -22 -15h-20l16 126l21 -3c8 -66 31 -98 70 -98c30 0 45 14 45 39 c0 22 -12 44 -42 78c-51 58 -60 81 -60 122c0 60 40 95 101 95c15 0 31 -3 44 -9c12 -6 20 -7 28 -7c11 0 14 3 21 15h22'], + 0x2E3: [690,-335,389,3,387,'68 672l123 18c14 -21 23 -39 35 -103c58 85 83 103 118 103c23 0 43 -21 43 -45c0 -22 -19 -40 -41 -40c-18 0 -26 15 -43 15s-45 -28 -69 -70l24 -118c6 -29 14 -39 28 -39c13 0 21 7 50 44l16 -11c-46 -65 -77 -91 -113 -91c-38 0 -56 30 -73 116l-18 -29 c-44 -72 -60 -87 -98 -87c-28 0 -47 18 -47 44c0 24 18 43 41 43c22 0 30 -16 46 -16c13 0 19 4 35 29l33 53l-22 114c-7 36 -18 52 -42 52c-7 0 -12 0 -26 -2v20'], + 0x2E4: [849,-329,328,9,364,'102 413l28 107c-76 3 -110 59 -110 122c0 121 98 207 215 207c28 0 65 -10 87 -24c24 -15 42 -35 42 -63c0 -15 -13 -39 -43 -39c-37 0 -51 24 -57 46c-7 27 -14 56 -44 56c-49 0 -94 -109 -94 -152c0 -47 39 -73 79 -73h27l-53 -198c-2 -9 -4 -17 -4 -24 c0 -22 16 -29 58 -32v-17h-224v17c57 4 76 4 93 67'], + 0x2EC: [70,167,314,5,309,'309 70l-131 -237h-43l-130 237h78l74 -136l74 136h78'], + 0x2ED: [720,-528,395,5,390,'390 648h-385v72h385v-72zM390 528h-385v72h385v-72'], + 0x2F7: [-108,227,333,-74,285,'244 -108h41c-22 -84 -57 -119 -117 -119c-19 0 -30 2 -57 13l-59 23c-13 5 -27 8 -38 8c-22 0 -35 -11 -48 -43h-40c13 72 59 118 116 118c25 0 56 -8 97 -26c27 -11 42 -16 54 -16c23 0 36 10 51 42'], + 0x2010: [282,-166,333,-4,273,'273 282l-30 -116h-247l34 116h243'], + 0x2011: [282,-166,333,-4,273,'273 282l-30 -116h-247l34 116h243'], + 0x2012: [282,-166,500,-40,477,'477 282l-17 -116h-500l17 116h500'], + 0x201A: [134,182,333,-5,199,'8 -182l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 43 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222'], + 0x201B: [685,-369,333,128,302,'265 397l-18 -28c-82 46 -119 100 -119 163c0 78 33 153 105 153c43 0 69 -27 69 -74c0 -45 -28 -64 -64 -70c-28 -5 -55 -17 -55 -42c0 -33 23 -57 82 -102'], + 0x201E: [134,182,500,-57,403,'212 -182l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94c0 -89 -72 -172 -191 -222zM-44 -182l-13 25c79 42 118 80 118 116c0 14 -6 24 -30 37c-32 18 -40 38 -40 65c0 48 32 73 73 73c53 0 83 -40 83 -94 c0 -89 -72 -172 -191 -222'], + 0x201F: [685,-369,500,92,513,'229 397l-18 -28c-82 46 -119 100 -119 163c0 78 33 153 105 153c43 0 69 -27 69 -74c0 -45 -28 -64 -64 -70c-28 -5 -55 -17 -55 -42c0 -33 23 -57 82 -102zM476 397l-18 -28c-82 46 -119 100 -119 163c0 78 33 153 105 153c43 0 69 -27 69 -74c0 -45 -28 -64 -64 -70 c-28 -5 -55 -17 -55 -42c0 -33 23 -57 82 -102'], + 0x2022: [462,-42,560,70,490,'490 253c0 -117 -96 -211 -211 -211c-116 0 -209 93 -209 211c0 113 93 209 209 209c124 0 211 -94 211 -209'], + 0x2030: [706,29,1118,80,1068,'1068 213c0 -70 -28 -143 -72 -189c-26 -27 -62 -42 -100 -42c-76 0 -127 54 -127 136c0 117 89 215 195 215c65 0 104 -45 104 -120zM1043 220c0 46 -25 80 -60 80c-20 0 -40 -15 -60 -45c-31 -47 -56 -127 -56 -180c0 -42 18 -65 49 -65c30 0 55 16 79 51 c28 43 48 108 48 159zM707 214c0 -70 -28 -143 -73 -190c-25 -27 -61 -42 -99 -42c-76 0 -128 56 -128 138c0 113 91 213 195 213c66 0 105 -45 105 -119zM682 220c0 46 -25 80 -59 80c-21 0 -41 -15 -62 -46c-32 -48 -56 -125 -56 -178c0 -43 17 -66 50 -66 c30 0 55 16 79 51c28 43 48 108 48 159zM645 706l-438 -735h-48l388 655c-40 -30 -73 -42 -113 -42c-21 0 -35 3 -60 13c2 -19 3 -29 3 -42c0 -71 -28 -147 -70 -189c-28 -28 -65 -44 -101 -44c-74 0 -126 57 -126 139c0 114 92 213 197 213c26 0 45 -8 71 -29 c29 -23 47 -30 83 -30c66 0 115 27 166 91h48zM351 560c0 34 -6 44 -32 54c-7 3 -10 4 -21 11s-15 9 -20 9c-42 0 -102 -127 -102 -216c0 -42 18 -66 50 -66c64 0 125 101 125 208'], + 0x2031: [706,29,1480,80,1430,'1430 213c0 -70 -28 -143 -72 -189c-26 -27 -62 -42 -100 -42c-76 0 -127 54 -127 136c0 117 89 215 195 215c65 0 104 -45 104 -120zM1405 220c0 46 -25 80 -60 80c-20 0 -40 -15 -60 -45c-31 -47 -56 -127 -56 -180c0 -42 18 -65 49 -65c30 0 55 16 79 51 c28 43 48 108 48 159zM1068 213c0 -70 -28 -143 -72 -189c-26 -27 -62 -42 -100 -42c-76 0 -127 54 -127 136c0 117 89 215 195 215c65 0 104 -45 104 -120zM1044 220c0 46 -25 80 -59 80c-21 0 -41 -15 -62 -46c-32 -48 -56 -125 -56 -178c0 -43 17 -66 50 -66 c30 0 55 16 79 51c28 43 48 108 48 159zM707 214c0 -70 -28 -143 -73 -190c-25 -27 -61 -42 -99 -42c-76 0 -128 56 -128 138c0 113 91 213 195 213c66 0 105 -45 105 -119zM682 220c0 46 -25 80 -59 80c-21 0 -41 -15 -62 -46c-32 -48 -56 -125 -56 -178 c0 -43 17 -66 50 -66c30 0 55 16 79 51c28 43 48 108 48 159zM645 706l-438 -735h-48l388 655c-40 -30 -73 -42 -113 -42c-21 0 -35 3 -60 13c2 -19 3 -29 3 -42c0 -71 -28 -147 -70 -189c-28 -28 -65 -44 -101 -44c-74 0 -126 57 -126 139c0 114 92 213 197 213 c26 0 45 -8 71 -29c29 -23 47 -30 83 -30c66 0 115 27 166 91h48zM351 560c0 34 -6 44 -32 54c-7 3 -10 4 -21 11s-15 9 -20 9c-42 0 -102 -127 -102 -216c0 -42 18 -66 50 -66c64 0 125 101 125 208'], + 0x2039: [415,-32,333,32,303,'32 226l170 124c24 17 34 25 47 37c19 19 33 28 41 28c7 0 13 -6 13 -12c0 -21 -30 -61 -101 -134c-17 -18 -26 -30 -45 -49l40 -83c23 -48 33 -75 33 -90c0 -8 -6 -15 -15 -15c-5 0 -8 2 -15 10c-24 27 -83 88 -168 175v9'], + 0x203A: [415,-32,333,10,281,'281 221l-170 -124c-24 -18 -34 -26 -47 -38c-19 -18 -32 -27 -41 -27c-7 0 -13 5 -13 12c0 21 30 61 101 134l45 49l-40 83c-24 49 -33 74 -33 90c0 8 6 15 15 15c5 0 8 -2 15 -10c41 -46 71 -77 168 -175v-9'], + 0x20DD: [760,254,0,-753,256,'-249 760c280 0 505 -227 505 -507s-225 -507 -505 -507s-504 227 -504 507s224 507 504 507zM-249 672c-229 0 -416 -190 -416 -419c0 -228 187 -419 416 -419c226 0 417 191 417 419c0 229 -191 419 -417 419'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Marks/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/Italic/Main.js new file mode 100644 index 0000000..0dc1b29 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/Italic/Main.js @@ -0,0 +1,82 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Marks/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Marks-italic'] = { + directory: 'Marks/Italic', + family: 'STIXMathJax_Marks', + style: 'italic', + id: 'STIXWEBMARKSI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2B0: [838,-326,378,7,391,'380 420l11 -9c-51 -65 -80 -85 -123 -85c-21 0 -36 12 -36 31c0 9 6 32 17 68l46 154c3 11 6 21 6 24c0 11 -5 19 -25 19c-29 0 -83 -46 -126 -104c-34 -45 -47 -71 -80 -185h-63l120 404c6 19 13 41 13 52c0 12 -20 18 -35 18h-22v11c50 6 83 11 132 20l6 -4l-102 -331 c75 108 141 156 192 156c38 0 55 -22 55 -49c0 -5 -2 -17 -4 -23l-60 -188c-3 -11 -5 -22 -5 -25c0 -7 6 -13 14 -13c13 0 24 9 69 59'], + 0x2B1: [838,-326,378,7,414,'7 333l112 377c22 73 91 128 167 128c70 0 128 -23 128 -55c0 -15 -12 -27 -28 -27c-20 0 -28 14 -43 32c-14 17 -34 31 -54 31c-46 0 -87 -47 -101 -91l-69 -225c75 108 141 156 192 156c39 0 55 -22 55 -49c0 -5 -2 -17 -4 -23l-60 -188c-4 -12 -5 -22 -5 -25 c0 -7 7 -13 14 -13c14 0 24 9 69 59l11 -9c-51 -65 -80 -85 -122 -85c-23 0 -37 12 -37 31c0 9 6 32 17 68l46 154c3 11 6 21 6 24c0 11 -5 19 -24 19c-30 0 -84 -46 -127 -104c-34 -45 -47 -71 -80 -185h-63'], + 0x2B2: [851,-199,300,44,350,'350 810c0 -21 -17 -38 -38 -38c-23 0 -41 16 -41 40c0 22 18 39 40 39s39 -20 39 -41zM325 688l-79 -311c-31 -123 -76 -178 -142 -178c-35 0 -60 19 -60 46c0 18 14 34 31 34c21 0 30 -12 30 -28c0 -17 -9 -15 -9 -26c0 -6 4 -8 13 -8c31 0 48 32 74 137l55 221 c9 37 12 53 12 61c0 17 -9 23 -37 23h-19v13c24 1 64 7 128 18'], + 0x2B3: [690,-345,320,2,320,'116 519l13 28c16 34 46 74 82 108c22 21 48 35 68 35c25 0 41 -16 41 -40c0 -23 -15 -42 -41 -42c-15 0 -22 8 -30 20c-5 8 -8 11 -14 11c-16 0 -41 -26 -71 -73c-38 -58 -53 -90 -96 -221h-66l70 228c13 41 14 48 14 65c0 16 -16 20 -33 20c-7 0 -14 0 -27 -2v13 c63 9 72 11 135 21l2 -2'], + 0x2B4: [690,-345,320,0,318,'318 690l-70 -228c-13 -41 -14 -48 -14 -65c0 -16 16 -20 33 -20c7 0 14 1 27 2v-13c-63 -9 -72 -11 -135 -21l-2 2l47 169l-13 -28c-16 -34 -46 -74 -82 -108c-22 -21 -48 -35 -68 -35c-25 0 -41 16 -41 40c0 23 15 42 41 42c15 0 22 -8 30 -20c5 -8 8 -11 14 -11 c16 0 41 26 71 73c38 58 53 90 96 221h66'], + 0x2B5: [690,-163,320,0,335,'318 690l-107 -347c-18 -57 -26 -86 -26 -109c0 -31 17 -45 38 -45c31 0 41 47 76 47c19 0 36 -11 36 -30c0 -30 -42 -43 -81 -43c-71 0 -121 30 -121 96c0 33 23 98 30 121l41 135l-14 -27c-17 -33 -45 -74 -81 -108c-22 -21 -48 -35 -68 -35c-25 0 -41 16 -41 40 c0 23 15 42 41 42c15 0 22 -9 30 -20c5 -8 8 -11 14 -11c15 0 40 26 71 73c38 58 53 89 96 221h66'], + 0x2B6: [684,-345,390,6,462,'462 671h-9c-19 0 -31 -6 -51 -25l-127 -124c54 -14 82 -39 82 -72c0 -64 -79 -105 -167 -105h-184v13c46 5 60 17 73 67l47 187c3 13 5 22 5 28c0 24 -19 29 -47 31v13h182v-13c-44 -2 -61 -16 -73 -62l-20 -78h31l161 153h97v-13zM167 507l-33 -134c16 -4 25 -5 40 -5 c58 0 104 32 104 81c0 19 -11 36 -32 47c-15 8 -36 11 -64 11h-15'], + 0x2B7: [690,-327,500,15,515,'321 678l26 -278c103 129 130 171 130 205c0 10 -5 16 -17 28c-13 12 -17 21 -17 32c0 13 13 25 31 25c23 0 41 -19 41 -45c0 -50 -60 -140 -168 -276c-27 -34 -35 -42 -42 -42c-6 0 -7 7 -9 27l-23 246l-70 -121c-13 -23 -29 -49 -44 -78c-28 -54 -41 -74 -50 -74 c-7 0 -9 6 -10 37c-7 141 -15 225 -25 263c-7 30 -14 34 -37 34h-22v9c24 4 51 9 75 15c10 2 19 5 23 5c8 0 9 -2 15 -27c13 -54 22 -153 25 -222l152 240c4 6 6 8 10 8c5 0 6 -2 6 -11'], + 0x2B8: [693,-202,330,16,357,'218 499l16 -83c64 107 93 161 93 195c0 10 -6 15 -20 24c-15 10 -20 17 -20 30c0 16 13 28 30 28c23 0 40 -19 40 -42c0 -43 -36 -127 -99 -232c-79 -130 -160 -217 -204 -217c-22 0 -38 13 -38 32c0 17 13 31 29 31c27 0 27 -22 47 -22c9 0 19 6 36 25 c14 15 48 60 54 70c4 9 7 18 7 26c0 30 -41 200 -62 252c-14 37 -28 49 -58 49c-8 0 -15 -1 -24 -3v12c34 7 44 10 94 18c3 0 8 1 15 1c11 0 51 -126 64 -194'], + 0x2BB: [686,-443,333,79,236,'232 686l4 -19c-76 -42 -102 -93 -102 -110c0 -7 4 -10 10 -10s14 4 25 4c26 0 50 -14 50 -50c0 -43 -47 -58 -72 -58c-20 0 -68 9 -68 63c0 10 0 20 4 33c23 83 114 139 149 147'], + 0x2C0: [690,-295,326,30,307,'67 446h12c93 0 153 71 153 156c0 39 -10 75 -47 75c-24 0 -45 -26 -50 -47c-8 -37 -21 -55 -42 -55c-24 0 -38 17 -38 35c0 14 11 43 40 59c25 14 51 21 88 21c96 0 124 -44 124 -99c0 -111 -97 -215 -196 -215c-6 0 -13 0 -18 1l-26 -82h-37'], + 0x2C1: [690,-295,326,23,343,'141 295l14 82c-5 -1 -12 -1 -18 -1c-65 0 -114 46 -114 114v6c5 96 53 194 197 194c34 0 67 -10 89 -25c26 -17 34 -43 34 -55c0 -18 -14 -35 -38 -35c-20 0 -34 18 -41 52c-5 24 -28 50 -51 50c-57 0 -115 -94 -115 -150c0 -47 43 -81 105 -81h12l-37 -151h-37'], + 0x2DB: [40,169,333,-20,200,'183 -74l17 -18c-35 -52 -76 -77 -125 -77c-52 0 -95 38 -95 95c0 44 20 76 70 114h24c-24 -33 -33 -63 -33 -93s24 -53 59 -53c32 0 58 10 83 32'], + 0x2DD: [664,-494,333,93,486,'263 494l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-171 -104h-35zM93 494l160 160c7 7 17 10 27 10c20 0 36 -16 36 -36c0 -12 -5 -23 -17 -30l-169 -104h-37'], + 0x2E0: [684,-218,315,23,335,'335 684v-11c-29 -2 -43 -31 -57 -53l-125 -191l14 -75c2 -11 4 -23 4 -34c0 -56 -30 -102 -86 -102c-33 0 -62 16 -62 47c0 21 6 40 21 60l56 73l-26 157c-5 33 -11 64 -19 93c-4 16 -12 25 -31 25v11h133v-11h-11c-17 -2 -26 -11 -26 -29c0 -8 1 -20 3 -34l24 -155 l104 163c11 18 17 28 17 38c0 13 -15 17 -27 17v11h94zM107 372l-44 -61c-7 -14 -12 -27 -12 -43c0 -15 10 -28 26 -28c24 0 43 20 43 47c0 6 -2 23 -5 38'], + 0x2E1: [837,-333,220,41,214,'214 833l-111 -424c-4 -14 -6 -26 -6 -32c0 -8 5 -13 12 -13c11 0 28 12 49 42l18 25l10 -7c-43 -69 -70 -91 -110 -91c-23 0 -35 14 -35 41c0 5 1 14 3 21l99 381c2 7 2 12 2 14c0 9 -12 16 -35 16h-13v11c43 5 71 11 112 20'], + 0x2E2: [691,-335,300,16,290,'290 691l-16 -110h-13c-7 65 -31 91 -69 91c-28 0 -47 -16 -47 -45c0 -21 12 -43 43 -79c39 -46 53 -76 53 -107c0 -65 -48 -105 -113 -105c-13 0 -25 1 -43 8c-15 6 -26 7 -34 7c-9 0 -17 -4 -23 -16h-12l15 124h13c11 -74 37 -105 78 -105c37 0 59 21 59 59 c0 25 -13 52 -43 90c-34 42 -50 78 -50 103c0 51 37 84 95 84c13 0 24 -2 44 -8c15 -4 22 -5 28 -5c12 0 17 3 24 14h11'], + 0x2E3: [691,-333,380,4,379,'217 623l10 -45c55 85 84 113 119 113c19 0 33 -12 33 -29s-11 -29 -27 -29c-15 0 -22 14 -41 14c-15 0 -43 -35 -78 -96c0 -5 1 -17 6 -36l26 -106c5 -22 12 -32 23 -32s20 7 38 32c8 11 12 17 16 22l12 -7c-46 -72 -66 -91 -96 -91c-26 0 -37 15 -47 54l-23 94l-70 -94 c-35 -47 -50 -54 -75 -54c-24 0 -39 13 -39 34c0 15 11 28 27 28c7 0 15 -3 25 -9c8 -4 16 -7 20 -7c9 0 24 15 41 39l65 92l-23 98c-11 48 -16 54 -36 54c-6 0 -16 -2 -45 -10l-2 13c57 21 83 26 101 26c20 0 28 -14 40 -68'], + 0x2E4: [847,-333,318,8,345,'87 412l41 166c-44 9 -93 34 -93 96c0 75 52 173 189 173c30 0 61 -9 82 -21c29 -17 39 -43 39 -57c0 -18 -14 -35 -38 -35c-18 0 -33 16 -40 50c-6 27 -28 50 -51 50c-55 0 -106 -95 -106 -150c0 -50 37 -91 87 -91l-45 -181c-4 -18 -7 -29 -7 -39c0 -20 12 -26 47 -28 v-12h-184v12c50 2 64 7 79 67'], + 0x2EC: [70,147,320,15,305,'305 70l-132 -217h-26l-132 217h69l76 -120l76 120h69'], + 0x2ED: [665,-507,405,10,395,'395 611h-385v54h385v-54zM395 507h-385v54h385v-54'], + 0x2F7: [-113,220,333,-94,233,'205 -113h28c-14 -67 -47 -104 -95 -104c-13 0 -31 5 -57 15c-54 22 -78 29 -95 29c-25 0 -41 -15 -51 -47h-29c20 77 48 106 100 106c23 0 48 -7 86 -24c30 -14 47 -19 62 -19c27 0 40 11 51 44'], + 0x2010: [257,-191,333,49,282,'282 257l-13 -66h-220l14 66h219'], + 0x2011: [257,-191,333,49,282,'282 257l-13 -66h-220l14 66h219'], + 0x2012: [258,-192,500,-8,508,'508 258l-8 -66h-508l8 66h508'], + 0x201A: [101,129,333,44,183,'53 -129l-9 18c53 35 75 61 75 88c0 10 -6 17 -21 31c-19 17 -24 28 -24 47c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -56 -45 -112 -130 -159'], + 0x201B: [666,-436,333,169,290,'268 455l-13 -19c-55 30 -86 77 -86 131c0 48 24 99 72 99c35 0 49 -23 49 -47s-18 -45 -47 -47c-25 -2 -34 -19 -34 -31c0 -29 14 -54 59 -86'], + 0x201E: [101,129,556,57,405,'275 -129l-9 17c53 35 75 62 75 89c0 10 -5 18 -20 32c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71c0 -56 -45 -112 -130 -159zM66 -129l-9 17c53 35 75 62 75 89c0 10 -5 18 -20 32c-19 17 -25 27 -25 46c0 26 22 46 51 46c33 0 58 -31 58 -71 c0 -56 -45 -112 -130 -159'], + 0x201F: [666,-436,556,169,499,'477 455l-13 -19c-55 30 -86 77 -86 131c0 48 24 99 72 99c35 0 49 -23 49 -47s-18 -45 -47 -47c-25 -2 -34 -19 -34 -31c0 -29 14 -54 59 -86zM268 455l-13 -19c-55 30 -86 77 -86 131c0 48 24 99 72 99c35 0 49 -23 49 -47s-18 -45 -47 -47c-25 -2 -34 -19 -34 -31 c0 -29 14 -54 59 -86'], + 0x2022: [444,-59,523,70,455,'455 252c0 -106 -88 -193 -193 -193c-106 0 -192 86 -192 193c0 104 86 192 192 192c114 0 193 -87 193 -192'], + 0x2030: [706,19,1117,80,1067,'1067 213c0 -121 -78 -232 -163 -232c-69 0 -122 60 -122 139c0 106 93 210 189 210c61 0 96 -43 96 -117zM1044 215c0 52 -25 87 -63 87c-23 0 -45 -14 -66 -43c-32 -42 -61 -127 -61 -181c0 -41 23 -70 56 -70c69 0 134 101 134 207zM705 213 c0 -121 -78 -232 -164 -232c-68 0 -121 60 -121 138c0 107 93 211 189 211c61 0 96 -43 96 -117zM682 215c0 52 -25 87 -63 87c-16 0 -37 -9 -49 -23c-44 -47 -78 -135 -78 -203c0 -39 24 -68 56 -68c69 0 134 101 134 207zM640 706l-430 -724h-47l394 658 c-37 -43 -68 -57 -121 -57c-26 0 -44 3 -76 14c3 -17 4 -28 4 -44c0 -70 -32 -145 -80 -190c-27 -26 -53 -37 -86 -37c-67 0 -118 59 -118 137c0 113 91 213 193 213c21 0 33 -6 60 -28c35 -29 59 -39 96 -39c62 0 75 8 167 97h44zM340 569c0 29 -4 36 -25 46 c-14 7 -27 16 -44 34c-41 -20 -52 -30 -72 -63c-31 -49 -48 -108 -48 -163c0 -42 23 -70 57 -70c71 0 132 101 132 216'], + 0x2031: [706,19,1479,80,1429,'1429 213c0 -121 -78 -232 -163 -232c-69 0 -122 60 -122 139c0 106 93 210 189 210c61 0 96 -43 96 -117zM1406 215c0 52 -25 87 -63 87c-23 0 -45 -14 -66 -43c-32 -42 -61 -127 -61 -181c0 -41 23 -70 56 -70c69 0 134 101 134 207zM1067 213 c0 -121 -78 -232 -163 -232c-69 0 -122 60 -122 139c0 106 93 210 189 210c61 0 96 -43 96 -117zM1044 215c0 52 -25 87 -63 87c-23 0 -45 -14 -66 -43c-32 -42 -61 -127 -61 -181c0 -41 23 -70 56 -70c69 0 134 101 134 207zM705 213c0 -121 -78 -232 -164 -232 c-68 0 -121 60 -121 138c0 107 93 211 189 211c61 0 96 -43 96 -117zM682 215c0 52 -25 87 -63 87c-16 0 -37 -9 -49 -23c-44 -47 -78 -135 -78 -203c0 -39 24 -68 56 -68c69 0 134 101 134 207zM640 706l-430 -724h-47l394 658c-37 -43 -68 -57 -121 -57 c-26 0 -44 3 -76 14c3 -17 4 -28 4 -44c0 -70 -32 -145 -80 -190c-27 -26 -53 -37 -86 -37c-67 0 -118 59 -118 137c0 113 91 213 193 213c21 0 33 -6 60 -28c35 -29 59 -39 96 -39c62 0 75 8 167 97h44zM340 569c0 29 -4 36 -25 46c-14 7 -27 16 -44 34 c-41 -20 -52 -30 -72 -63c-31 -49 -48 -108 -48 -163c0 -42 23 -70 57 -70c71 0 132 101 132 216'], + 0x2039: [403,-37,333,51,281,'51 216v9c89 69 102 79 127 101c65 57 90 77 97 77c3 0 6 -3 6 -7c0 -9 -9 -27 -27 -47c-36 -40 -94 -89 -129 -132c6 -14 13 -27 20 -40c37 -69 62 -123 62 -133c0 -4 -3 -7 -7 -7s-13 10 -23 21c-35 38 -74 93 -109 135c-8 10 -15 17 -17 23'], + 0x203A: [403,-37,333,52,282,'282 215l-36 -27c-56 -42 -66 -52 -91 -74c-67 -59 -90 -77 -97 -77c-3 0 -6 3 -6 7c0 17 39 58 91 112l65 67c-7 14 -13 27 -20 40c-37 68 -62 123 -62 133c0 4 3 7 7 7c9 0 34 -27 61 -68c5 -8 12 -17 21 -27c34 -40 54 -65 67 -84v-9'], + 0x20D0: [760,-627,0,-453,-17,'-17 627h-436l132 133l18 -8c-32 -27 -36 -45 -36 -52c0 -12 8 -19 41 -19h281v-54'], + 0x20D1: [760,-627,0,-426,10,'10 627h-436v54h281c33 0 41 7 41 19c0 7 -4 25 -36 52l18 8'], + 0x20D2: [662,156,0,-300,-234,'-234 -156h-66v818h66v-818'], + 0x20D6: [760,-548,0,-453,-17,'-17 627h-286c-28 0 -49 -2 -49 -15c0 -9 21 -27 50 -56l-18 -8l-133 106l132 106l18 -8c-32 -27 -49 -49 -49 -56c0 -12 16 -15 49 -15h286v-54'], + 0x20DB: [622,-523,0,-453,44,'-205 622c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49zM-6 622c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49zM-404 622c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49'], + 0x20DC: [622,-523,0,-582,114,'64 622c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49zM-135 622c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49zM-334 622c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49z M-533 622c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49'], + 0x20DD: [725,221,0,-723,223,'-723 252c0 261 212 473 473 473s473 -212 473 -473s-212 -473 -473 -473s-473 212 -473 473zM-657 252c0 -225 182 -407 407 -407s407 182 407 407s-182 407 -407 407s-407 -182 -407 -407'], + 0x20E1: [760,-548,0,-453,25,'-107 548l-18 8c32 27 49 49 49 56c0 12 -16 15 -49 15h-177c-34 0 -50 -5 -50 -15c0 -9 21 -27 50 -56l-18 -8l-133 106l132 106l18 -8c-32 -27 -49 -49 -49 -56c0 -12 16 -15 49 -15h178c28 0 49 2 49 15c0 9 -21 27 -50 56l18 8l133 -106'], + 0x20E4: [1023,155,0,-970,490,'490 -155h-1460l721 1178zM-839 -89h1198l-608 964'], + 0x20E5: [662,156,0,-430,-24,'-24 -156h-71l-335 818h71'], + 0x20E6: [662,156,0,-351,-86,'-285 -156h-66v818h66v-818zM-86 -156h-66v818h66v-818'], + 0x20E7: [725,178,0,-595,221,'-595 659v66h816v-903h-66v837h-750'], + 0x20E8: [-119,218,0,-462,35,'-214 -119c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49zM-15 -119c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49zM-413 -119c27 0 50 -23 50 -50s-23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49'], + 0x20E9: [681,-538,0,-478,55,'-478 538v143h533v-143h-54v89h-425v-89h-54'], + 0x20EA: [419,-87,0,-793,153,'-606 286h759v-66h-758c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 29 -33 52 -66l-20 -19c-66 76 -112 120 -208 161v10c96 40 143 86 208 161l20 -19c-22 -33 -24 -39 -53 -67c-10 -10 -14 -16 -14 -25c0 -10 16 -22 26 -22'], + 0x20EC: [-119,252,0,27,463,'463 -119l-132 -133l-18 8c32 27 36 45 36 52c0 12 -8 19 -41 19h-281v54h436'], + 0x20ED: [-119,252,0,27,463,'27 -119h436v-54h-281c-33 0 -41 -7 -41 -19c0 -7 4 -25 36 -52l-18 -8'], + 0x20EE: [-40,252,0,-453,-17,'-17 -173h-286c-28 0 -49 -2 -49 -15c0 -9 21 -27 50 -56l-18 -8l-133 106l132 106l18 -8c-32 -27 -49 -49 -49 -56c0 -12 16 -15 49 -15h286v-54'], + 0x20EF: [-40,252,0,-453,-17,'-167 -173h-286v54h286c33 0 49 3 49 15c0 7 -17 29 -49 56l18 8l132 -106l-133 -106l-18 8c29 29 50 47 50 56c0 13 -21 15 -49 15'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Marks/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/Regular/Main.js new file mode 100644 index 0000000..af64a3a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Marks/Regular/Main.js @@ -0,0 +1,207 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Marks/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Marks'] = { + directory: 'Marks/Regular', + family: 'STIXMathJax_Marks', + id: 'STIXWEBMARKS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2B0: [848,-336,378,7,365,'365 336h-159v11c43 5 52 13 52 62v153c0 52 -20 79 -57 79c-25 0 -51 -12 -83 -48v-181c0 -51 8 -61 51 -65v-11h-162v11c43 6 48 13 48 63v356c0 32 -5 38 -38 38c-3 0 -6 0 -9 -1v12l106 33l4 -2v-228c34 45 69 62 108 62c61 0 95 -37 95 -115v-149 c0 -53 3 -62 44 -69v-11'], + 0x2B1: [848,-336,378,7,365,'365 336h-159v11c38 5 52 9 52 59v155c0 50 -17 80 -58 80c-22 0 -51 -12 -82 -48v-185c0 -53 14 -57 51 -61v-11h-162v11c41 6 48 10 48 63v299c0 77 58 139 138 139c70 0 128 -23 128 -55c0 -15 -12 -27 -28 -27c-20 0 -27 13 -44 33c-13 16 -33 30 -53 30 c-24 0 -41 -12 -57 -32c-13 -15 -21 -33 -21 -59v-120c31 41 65 62 109 62c93 0 94 -88 94 -119v-149c0 -54 7 -58 44 -65v-11'], + 0x2B2: [852,-169,300,44,244,'244 813c0 -22 -17 -38 -39 -38c-21 0 -38 16 -38 38s17 39 38 39c22 0 39 -17 39 -39zM243 681v-347c0 -107 -44 -165 -128 -165c-41 0 -71 17 -71 42c0 16 14 29 31 29c12 0 23 -7 37 -24c12 -16 20 -21 31 -21s22 6 26 13c8 15 11 34 11 92v288c0 32 -7 45 -25 45 c-7 0 -18 -1 -30 -2l-4 -1v12c45 14 74 24 119 41'], + 0x2B3: [681,-336,252,5,252,'121 680v-69c37 54 58 70 90 70c25 0 41 -15 41 -40c0 -21 -11 -33 -29 -33c-10 0 -18 3 -30 15c-9 7 -15 11 -20 11c-21 0 -52 -38 -52 -62v-168c0 -43 12 -54 63 -57v-11h-179v11c48 9 53 15 53 52v188c0 33 -7 45 -26 45c-9 0 -15 -1 -26 -3v12c44 14 71 24 111 40'], + 0x2B4: [680,-335,277,10,257,'257 680v-11c-48 -9 -53 -15 -53 -52v-188c0 -33 7 -45 26 -45c9 0 15 1 26 3v-12c-44 -14 -71 -24 -111 -40l-4 1v69c-37 -54 -58 -70 -90 -70c-25 0 -41 15 -41 40c0 21 11 33 29 33c10 0 18 -3 30 -15c9 -7 15 -11 20 -11c21 0 52 38 52 62v168c0 43 -12 54 -63 57v11 h179'], + 0x2B5: [680,-168,325,10,338,'204 620v-199c0 -69 1 -227 37 -227c27 0 34 45 67 45c14 0 30 -11 30 -29c0 -27 -35 -42 -70 -42c-97 0 -127 149 -127 237c-37 -54 -58 -70 -90 -70c-26 0 -41 15 -41 40c0 19 10 33 29 33c25 0 34 -26 50 -26c21 0 52 38 52 62v174c0 40 -22 50 -63 51v11h179v-11 c-44 -8 -53 -13 -53 -49'], + 0x2B6: [680,-335,390,6,379,'379 667h-8c-19 0 -31 -5 -45 -25l-94 -130c65 -16 100 -47 100 -88c0 -52 -57 -89 -141 -89h-185v13c23 2 35 7 44 18c10 10 12 19 12 49v193c0 25 -2 33 -9 42c-10 12 -22 16 -47 17v13h180v-13c-43 -2 -57 -16 -57 -62v-84h31l120 159h99v-13zM129 497v-134 c17 -3 25 -5 40 -5c53 0 86 26 86 66c0 26 -17 48 -46 62c-16 8 -37 11 -65 11h-15'], + 0x2B7: [680,-331,520,6,512,'512 680v-11c-15 -5 -19 -10 -31 -40l-104 -261c-12 -30 -16 -37 -21 -37s-7 4 -18 33l-68 177l-85 -180c-9 -20 -15 -30 -18 -30c-5 0 -11 10 -20 34l-101 257c-16 40 -23 46 -40 47v11h135v-11c-26 -3 -34 -9 -34 -25c0 -7 1 -15 4 -22l74 -197l69 150l-15 42 c-15 41 -24 49 -52 52v11h153v-11c-36 -5 -44 -10 -44 -26c0 -13 4 -22 13 -45l63 -169l68 167c8 21 12 39 12 51s-7 17 -33 22v11h93'], + 0x2B8: [680,-176,370,14,361,'361 680v-12c-19 -2 -28 -10 -38 -38l-113 -309c-39 -107 -75 -145 -132 -145c-32 0 -52 18 -52 43c0 19 14 35 32 35c13 0 26 -2 39 -10c8 -4 15 -5 20 -5c10 0 25 15 37 33c15 22 30 70 30 82c0 11 -17 46 -31 76l-100 213c-7 16 -20 23 -39 25v12h154v-12 c-33 -1 -43 -7 -43 -20c0 -8 5 -21 10 -31l84 -189l73 209c2 5 3 10 3 13c0 12 -11 18 -35 18v12h101'], + 0x2B9: [684,-421,208,90,257,'90 432l93 212c13 30 23 40 45 40c19 0 29 -12 29 -32c0 -14 -9 -27 -19 -41l-131 -190'], + 0x2BA: [684,-421,305,19,324,'157 432l93 212c13 30 23 40 45 40c19 0 29 -12 29 -32c0 -14 -9 -27 -19 -41l-131 -190zM19 432l93 212c13 30 23 40 45 40c19 0 29 -12 29 -32c0 -14 -9 -27 -19 -41l-131 -190'], + 0x2BB: [686,-443,333,79,218,'191 686l9 -19c-66 -42 -82 -87 -82 -106c0 -9 7 -14 14 -14c6 0 13 4 24 4c26 0 62 -10 62 -50c0 -43 -33 -58 -58 -58c-23 0 -81 13 -81 96c0 71 82 137 112 147'], + 0x2BC: [686,-443,333,79,218,'106 443l-9 19c66 42 82 87 82 106c0 9 -7 14 -14 14c-6 0 -13 -4 -24 -4c-26 0 -62 10 -62 50c0 43 33 58 58 58c23 0 81 -13 81 -96c0 -71 -82 -137 -112 -147'], + 0x2BD: [686,-443,333,79,218,'200 462l-9 -19c-30 10 -112 76 -112 147c0 83 58 96 81 96c25 0 58 -15 58 -58c0 -40 -36 -50 -62 -50c-11 0 -18 4 -24 4c-7 0 -14 -5 -14 -14c0 -19 16 -64 82 -106'], + 0x2BE: [680,-485,198,35,163,'35 680h30c54 0 98 -43 98 -97s-44 -98 -98 -98h-30v37h30c34 0 61 27 61 61s-27 60 -61 60h-30v37'], + 0x2BF: [680,-485,198,35,163,'163 485h-30c-54 0 -98 44 -98 98s44 97 98 97h30v-37h-30c-34 0 -61 -26 -61 -60s27 -61 61 -61h30v-37'], + 0x2C0: [690,-295,326,23,303,'93 446h12c72 0 123 45 123 105c0 51 -22 126 -75 126c-24 0 -46 -27 -51 -50c-7 -33 -20 -52 -41 -52c-24 0 -38 17 -38 35c0 14 10 39 34 55c21 14 56 25 90 25c125 0 156 -76 156 -151c0 -93 -69 -163 -149 -163c-6 0 -13 0 -18 1l-6 -82h-37v151'], + 0x2C1: [690,-295,326,23,303,'196 295l-6 82c-5 -1 -12 -1 -18 -1c-80 0 -149 70 -149 163c0 75 31 151 156 151c34 0 69 -11 90 -25c24 -16 34 -41 34 -55c0 -18 -14 -35 -38 -35c-21 0 -34 19 -41 52c-5 23 -27 50 -51 50c-53 0 -75 -75 -75 -126c0 -60 51 -105 123 -105h12v-151h-37'], + 0x2C2: [755,-419,317,33,285,'285 419l-252 153v30l252 153v-68l-163 -100l163 -100v-68'], + 0x2C3: [755,-419,317,33,285,'285 572l-252 -153v68l163 100l-163 100v68l252 -153v-30'], + 0x2C4: [713,-461,317,-9,327,'327 461h-68l-100 163l-100 -163h-68l153 252h30'], + 0x2C5: [713,-461,317,-9,327,'327 713l-153 -252h-30l-153 252h68l100 -163l100 163h68'], + 0x2C8: [713,-448,278,119,159,'159 448h-40v265h40v-265'], + 0x2CC: [70,195,278,119,159,'159 -195h-40v265h40v-265'], + 0x2CD: [-104,159,334,11,323,'323 -159h-312v55h312v-55'], + 0x2CE: [-21,192,333,25,249,'249 -192h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23'], + 0x2CF: [-21,192,333,84,308,'84 -192l147 148c18 18 27 23 42 23c22 0 35 -12 35 -32c0 -16 -9 -29 -30 -42l-154 -97h-40'], + 0x2D0: [460,-19,333,89,244,'244 460l-55 -161h-45l-55 161h155zM244 19h-155l55 161h45'], + 0x2D1: [460,-299,333,89,244,'244 460l-55 -161h-45l-55 161h155'], + 0x2D2: [365,-75,333,72,262,'72 365h45c80 0 145 -65 145 -145s-65 -145 -145 -145h-45v55h45c50 0 90 40 90 90s-40 90 -90 90h-45v55'], + 0x2D3: [365,-75,333,71,261,'261 75h-45c-80 0 -145 65 -145 145s65 145 145 145h45v-55h-45c-50 0 -90 -40 -90 -90s40 -90 90 -90h45v-55'], + 0x2D4: [205,-18,333,51,281,'281 18h-230v40h95v147h40v-147h95v-40'], + 0x2D5: [205,-18,333,51,281,'281 165h-95v-147h-40v147h-95v40h230v-40'], + 0x2D6: [218,-26,333,71,263,'263 100h-77v-74h-38v74h-77v44h77v74h38v-74h77v-44'], + 0x2D7: [144,-100,333,71,263,'263 100h-192v44h192v-44'], + 0x2DB: [0,165,333,64,249,'229 -73l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 36 16 64 54 91h46c-31 -25 -44 -47 -44 -70c0 -28 16 -39 38 -39c21 0 42 9 71 36'], + 0x2DD: [678,-507,333,-3,376,'153 507l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40zM-3 507l146 148c20 20 30 23 43 23c20 0 34 -11 34 -30c0 -18 -8 -32 -29 -45l-154 -96h-40'], + 0x2DE: [443,-186,298,0,263,'243 322l20 -56c-3 -10 -11 -35 -24 -52c-20 -26 -43 -28 -60 -28c-24 0 -46 32 -56 49c-24 42 -35 64 -52 100c-15 -28 -60 -45 -68 -49l-3 48c11 8 32 18 54 46c16 21 23 47 27 63c9 -25 38 -122 78 -176c6 -8 20 -21 30 -21c14 0 29 14 36 27c8 15 11 24 18 49'], + 0x2DF: [662,-425,333,48,284,'284 628l-83 -85l81 -81l-34 -37l-83 83l-81 -83l-32 35l80 83l-84 85l36 34l81 -83l86 83'], + 0x2E0: [684,-219,378,24,335,'335 684v-10c-29 -2 -36 -32 -44 -53l-76 -191c21 -45 54 -90 54 -142c0 -43 -28 -69 -70 -69c-39 0 -71 14 -71 58c0 39 23 88 40 122l-65 157c-13 31 -25 63 -42 93c-9 15 -18 24 -37 25v10h133v-10c-14 0 -31 -4 -31 -21c0 -22 62 -165 75 -198c14 38 71 168 71 196 c0 17 -18 23 -31 23v10h94zM223 280c0 20 -31 74 -42 93c-10 -28 -27 -57 -27 -88c0 -19 9 -44 32 -44c21 0 37 17 37 39'], + 0x2E1: [848,-336,215,19,197,'197 336h-176v11c47 4 57 17 57 58v352c0 36 -7 48 -31 48c-6 0 -16 0 -28 -2v12c52 13 79 20 118 33l4 -3v-444c0 -41 8 -51 56 -54v-11'], + 0x2E2: [681,-331,291,36,261,'233 573h-11c-15 60 -42 91 -80 91c-29 0 -56 -18 -56 -48c0 -21 15 -41 45 -60c28 -18 59 -33 84 -52c31 -23 46 -47 46 -74c0 -31 -11 -55 -34 -74c-21 -18 -46 -25 -80 -25c-11 0 -26 1 -45 7c-18 6 -31 8 -40 9c-8 -1 -13 -4 -15 -11h-11v115h12 c12 -70 45 -104 98 -104c33 0 60 20 60 55c0 16 -8 31 -25 46c-9 7 -28 19 -57 35c-28 16 -48 30 -60 41c-18 18 -28 40 -28 64c0 28 11 51 32 68c20 16 45 25 73 25c11 0 23 -4 40 -9s26 -8 31 -8c6 0 10 4 12 11h9v-102'], + 0x2E3: [680,-336,380,5,372,'372 336h-160v12c26 1 32 5 32 19c0 5 -2 9 -5 14l-72 98l-63 -84c-11 -18 -16 -27 -16 -33c0 -10 9 -14 32 -14v-12h-115v12c26 2 33 9 57 40l91 118l-75 114c-25 38 -37 48 -61 48h-7v12h164v-12c-23 -1 -34 -5 -34 -17c0 -5 2 -13 9 -24l39 -63l42 60 c8 11 11 21 11 27c0 11 -8 16 -32 17v12h126v-12c-25 -1 -49 -13 -64 -35l-66 -95l101 -143c24 -34 41 -47 66 -47v-12'], + 0x2E4: [850,-336,341,45,319,'166 415v166c-55 10 -121 44 -121 132c0 55 29 137 153 137c31 0 66 -10 87 -24c24 -16 34 -40 34 -54c0 -18 -14 -35 -38 -35c-18 0 -33 16 -40 50c-5 23 -25 50 -51 50c-50 0 -72 -73 -72 -123c0 -62 54 -118 113 -118v-181c0 -51 4 -64 57 -67v-12h-184v12 c49 2 62 7 62 67'], + 0x2E5: [662,0,413,48,373,'373 0h-50v612h-275v50h325v-662'], + 0x2E6: [662,0,405,40,365,'365 0h-50v431h-275v50h275v181h50v-662'], + 0x2E7: [662,0,405,40,365,'365 0h-50v306h-275v50h275v306h50v-662'], + 0x2E8: [662,0,405,40,365,'365 0h-50v181h-275v50h275v431h50v-662'], + 0x2E9: [662,0,405,40,365,'365 0h-325v50h275v612h50v-662'], + 0x2EC: [70,147,333,21,311,'311 70l-132 -217h-26l-132 217h69l76 -120l76 120h69'], + 0x2ED: [665,-507,405,10,395,'395 611h-385v54h385v-54zM395 507h-385v54h385v-54'], + 0x2F7: [-113,219,333,1,331,'302 -113h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24c-38 18 -46 22 -64 22c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18c43 -22 57 -28 77 -28c23 0 36 14 53 51'], + 0x305: [820,-770,0,-480,20,'20 770h-500v50h500v-50'], + 0x309: [751,-492,0,-307,-118,'-261 581h12c44 0 76 30 76 70c0 37 -14 77 -45 77c-43 0 -24 -64 -61 -64c-17 0 -28 14 -28 28c0 11 8 30 24 41c15 11 38 18 61 18c83 0 104 -55 104 -108c0 -66 -46 -116 -100 -116h-8l-2 -35h-33v89'], + 0x30D: [700,-500,0,-250,-195,'-195 500h-55v200h55v-200'], + 0x30E: [700,-500,0,-326,-133,'-133 500h-55v200h55v-200zM-272 500h-54v200h54v-200'], + 0x30F: [678,-507,0,-401,-22,'-22 507h-40l-154 96c-21 13 -29 27 -29 45c0 19 14 30 34 30c13 0 23 -3 43 -23zM-178 507h-40l-154 96c-21 13 -29 27 -29 45c0 19 14 30 34 30c13 0 23 -3 43 -23'], + 0x310: [767,-507,0,-373,-92,'-181 717c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50zM-121 664h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97'], + 0x311: [664,-507,0,-373,-92,'-92 507h-29c-29 71 -57 97 -111 97c-63 0 -99 -34 -112 -97h-29c0 97 45 157 139 157c82 0 130 -51 142 -157'], + 0x312: [745,-502,0,-299,-160,'-187 745l9 -19c-66 -42 -82 -87 -82 -106c0 -9 7 -14 14 -14c6 0 13 4 24 4c26 0 62 -10 62 -50c0 -43 -33 -58 -58 -58c-23 0 -81 13 -81 96c0 71 82 137 112 147'], + 0x313: [745,-502,0,-299,-160,'-272 502l-9 19c66 42 82 87 82 106c0 9 -7 14 -14 14c-6 0 -13 -4 -24 -4c-26 0 -62 10 -62 50c0 43 33 58 58 58c23 0 81 -13 81 -96c0 -71 -82 -137 -112 -147'], + 0x314: [745,-502,0,-299,-160,'-178 521l-9 -19c-30 10 -112 76 -112 147c0 83 58 96 81 96c25 0 58 -15 58 -58c0 -40 -36 -50 -62 -50c-11 0 -18 4 -24 4c-7 0 -14 -5 -14 -14c0 -19 16 -64 82 -106'], + 0x315: [745,-502,0,-85,54,'-58 502l-9 19c66 42 82 87 82 106c0 9 -7 14 -14 14c-6 0 -13 -4 -24 -4c-26 0 -62 10 -62 50c0 43 33 58 58 58c23 0 81 -13 81 -96c0 -71 -82 -137 -112 -147'], + 0x316: [-53,224,0,-351,-127,'-127 -224h-40l-154 96c-19 12 -30 27 -30 43c0 21 14 32 36 32c15 0 26 -5 43 -23'], + 0x317: [-53,224,0,-371,-147,'-371 -224l145 148c17 18 28 23 43 23c22 0 36 -11 36 -32c0 -16 -11 -31 -30 -43l-154 -96h-40'], + 0x318: [-53,283,0,-397,-210,'-210 -283h-40v95h-147v40h147v95h40v-230'], + 0x319: [-53,283,0,-267,-80,'-80 -188h-147v-95h-40v230h40v-95h147v-40'], + 0x31A: [735,-531,0,-380,-80,'-80 531h-55v149h-245v55h300v-204'], + 0x31B: [474,-345,0,-44,51,'-36 345v22c19 4 27 12 27 15c0 9 -35 19 -35 51c0 19 19 41 46 41c24 0 49 -21 49 -56c0 -22 -9 -43 -33 -57c-17 -10 -40 -14 -54 -16'], + 0x31C: [-71,266,0,-360,-232,'-232 -266h-30c-54 0 -98 44 -98 98s44 97 98 97h30v-37h-30c-34 0 -61 -26 -61 -60s27 -61 61 -61h30v-37'], + 0x31D: [-53,240,0,-345,-115,'-115 -240h-230v40h95v147h40v-147h95v-40'], + 0x31E: [-53,240,0,-345,-115,'-115 -93h-95v-147h-40v147h-95v40h230v-40'], + 0x31F: [-53,250,0,-326,-134,'-134 -168h-77v-82h-38v82h-77v44h77v71h38v-71h77v-44'], + 0x320: [-124,168,0,-326,-134,'-134 -168h-192v44h192v-44'], + 0x321: [75,287,0,-235,1,'1 75v-223c0 -77 -47 -139 -108 -139c-70 0 -128 23 -128 55c0 15 12 27 28 27c21 0 29 -16 43 -32s32 -31 54 -31c44 0 56 47 56 91v252h55'], + 0x322: [75,287,0,-54,182,'1 75v-252c0 -44 12 -91 56 -91c22 0 40 15 54 31s22 32 43 32c16 0 28 -12 28 -27c0 -32 -58 -55 -128 -55c-61 0 -108 62 -108 139v223h55'], + 0x323: [-118,217,0,-280,-181,'-181 -168c0 -29 -23 -49 -50 -49s-49 22 -49 49s19 50 49 50c31 0 50 -22 50 -50'], + 0x324: [-119,218,0,-379,-81,'-81 -168c0 -28 -23 -50 -51 -50c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -22 50 -49zM-280 -168c0 -28 -23 -50 -51 -50c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -22 50 -49'], + 0x325: [-69,268,0,-329,-130,'-130 -168c0 -55 -45 -100 -101 -100c-55 0 -98 44 -98 100c0 55 45 99 101 99c53 0 98 -45 98 -99zM-164 -168c0 36 -30 65 -67 65c-34 0 -64 -30 -64 -65c0 -37 29 -66 64 -66c38 0 67 29 67 66'], + 0x326: [-110,353,0,-299,-160,'-272 -353l-9 19c66 42 82 87 82 106c0 9 -7 14 -14 14c-6 0 -13 -4 -24 -4c-26 0 -62 10 -62 50c0 43 33 58 58 58c23 0 81 -13 81 -96c0 -71 -82 -137 -112 -147'], + 0x327: [0,215,0,-334,-125,'-212 0l-25 -65c10 2 16 3 26 3c54 0 86 -25 86 -69c0 -52 -48 -84 -125 -84c-31 0 -55 4 -84 16l14 31c27 -9 44 -12 65 -12c34 0 55 17 55 44c0 26 -15 36 -53 36c-12 0 -20 -1 -28 -4l-7 5l41 99h35'], + 0x328: [0,165,0,-322,-137,'-157 -73l20 -16c-36 -54 -65 -76 -111 -76c-43 0 -74 27 -74 74c0 36 16 64 54 91h46c-31 -25 -44 -47 -44 -70c0 -28 16 -39 38 -39c21 0 42 9 71 36'], + 0x329: [-102,234,0,-250,-210,'-210 -234h-40v132h40v-132'], + 0x32A: [-98,235,0,-385,-73,'-73 -235h-55v82h-202v-82h-55v137h312v-137'], + 0x32B: [-110,227,0,-380,-75,'-75 -110v-35c0 -50 -33 -82 -87 -82c-31 0 -61 16 -68 34c-8 -18 -29 -34 -61 -34c-54 0 -89 32 -89 82v35h40v-36c0 -28 20 -41 47 -41c32 0 43 13 43 41v36h40v-35c0 -28 20 -42 46 -42c34 0 49 14 49 42v35h40'], + 0x32C: [-73,240,0,-385,-74,'-74 -73l-124 -167h-64l-123 167h35l120 -103l121 103h35'], + 0x32D: [-73,240,0,-385,-74,'-74 -240h-34l-122 103l-121 -103h-34l124 167h62'], + 0x32E: [-68,225,0,-370,-89,'-118 -68h29c-12 -106 -60 -157 -142 -157c-94 0 -139 60 -139 157h29c13 -63 49 -97 112 -97c54 0 82 26 111 97'], + 0x32F: [-59,216,0,-370,-89,'-89 -216h-29c-29 71 -57 97 -111 97c-63 0 -99 -34 -112 -97h-29c0 97 45 157 139 157c82 0 130 -51 142 -157'], + 0x330: [-113,219,0,-395,-65,'-94 -113h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24c-38 18 -46 22 -64 22c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18c43 -22 57 -28 77 -28c23 0 36 14 53 51'], + 0x331: [-141,195,0,-385,-74,'-74 -195h-311v54h311v-54'], + 0x332: [-141,191,0,-480,20,'20 -191h-500v50h500v-50'], + 0x333: [-141,300,0,-480,20,'20 -191h-500v50h500v-50zM20 -300h-500v50h500v-50'], + 0x334: [320,-214,0,-401,-71,'-100 320h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24c-38 18 -46 22 -64 22c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18c43 -22 57 -28 77 -28c23 0 36 14 53 51'], + 0x335: [274,-230,0,-384,-78,'-78 230h-306v44h306v-44'], + 0x336: [274,-230,0,-480,20,'20 230h-500v44h500v-44'], + 0x337: [580,74,0,-380,-41,'-41 580l-285 -654h-54l285 654h54'], + 0x339: [-71,266,0,-280,-152,'-280 -71h30c54 0 98 -43 98 -97s-44 -98 -98 -98h-30v37h30c34 0 61 27 61 61s-27 60 -61 60h-30v37'], + 0x33A: [-53,190,0,-385,-73,'-73 -190h-312v137h55v-82h202v82h55v-137'], + 0x33B: [-53,227,0,-313,-147,'-147 -227h-166v174h166v-174zM-187 -187v94h-86v-94h86'], + 0x33C: [-65,189,0,-380,-79,'-79 -91v-51c-36 22 -57 22 -69 22c-32 0 -52 -28 -71 -69h-20c-20 37 -36 69 -82 69c-8 0 -27 -2 -59 -22v51c30 20 46 26 65 26c32 0 61 -13 85 -53c28 40 57 53 86 53c24 0 37 -7 65 -26'], + 0x33D: [715,-525,0,-326,-135,'-135 688l-67 -68l65 -65l-26 -30l-67 67l-66 -65l-26 28l64 65l-68 68l29 27l67 -67l68 67'], + 0x33E: [829,-499,0,-283,-177,'-177 829v-29c-31 -11 -46 -28 -46 -51c0 -18 4 -26 22 -64c20 -41 24 -56 24 -81c0 -55 -30 -84 -106 -105v29c37 17 51 30 51 53c0 20 -6 34 -28 77c-12 24 -18 48 -18 70c0 50 36 86 101 101'], + 0x33F: [928,-770,0,-480,20,'20 878h-500v50h500v-50zM20 770h-500v50h500v-50'], + 0x346: [681,-538,0,-350,-68,'-68 538h-54v89h-173v-89h-55v143h282v-143'], + 0x347: [-140,292,1,11,323,'323 -194h-312v54h312v-54zM323 -292h-312v54h312v-54'], + 0x34C: [777,-532,0,-386,-56,'-85 777h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM-85 638h29c-21 -76 -50 -106 -105 -106 c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50'], + 0x359: [-65,367,0,-357,-87,'-87 -157c0 -9 -5 -16 -17 -22c-16 -10 -55 -10 -106 -39c45 -25 89 -27 106 -38c11 -5 15 -15 15 -23c0 -13 -9 -26 -27 -26c-28 0 -45 48 -99 78c0 -48 21 -91 21 -113c0 -12 -14 -27 -26 -27c-14 0 -27 15 -27 27c0 22 20 65 20 113c-36 -20 -68 -63 -84 -72 c-6 -4 -13 -6 -18 -6c-17 0 -26 11 -26 22c0 9 4 22 14 27c19 11 71 17 107 38c-36 22 -90 28 -110 40c-8 5 -13 12 -13 21c0 14 10 30 25 30c4 0 9 -2 15 -5c21 -13 51 -55 90 -76c0 50 -20 94 -20 116c0 14 13 27 27 27c12 0 26 -13 26 -27c0 -22 -21 -66 -21 -115 c51 28 68 63 88 75c6 3 11 5 15 5c15 0 25 -16 25 -30'], + 0x35C: [-76,233,0,-373,295,'266 -76h29c0 -140 -233 -157 -334 -157s-334 17 -334 157h29c18 -84 236 -97 305 -97s287 13 305 97'], + 0x360: [633,-517,0,-395,365,'336 618h29c-15 -83 -99 -101 -172 -101c-88 0 -180 18 -265 39c-50 12 -104 22 -155 22c-40 0 -124 4 -139 -46h-29c15 83 99 101 172 101c52 0 107 -9 158 -21c77 -19 183 -40 262 -40c40 0 124 -4 139 46'], + 0x361: [664,-507,0,-373,295,'295 507h-29c-18 84 -236 97 -305 97s-287 -13 -305 -97h-29c0 140 233 157 334 157s334 -17 334 -157'], + 0x362: [-65,270,0,-395,355,'355 -160v-15c-45 -19 -81 -59 -113 -95l-19 19l27 33c4 5 6 10 6 14s-3 9 -12 9h-639v55h640c4 0 12 6 12 11c0 4 -3 7 -7 12l-27 33l20 19c31 -36 67 -76 112 -95'], + 0x2010: [259,-193,333,39,285,'285 193h-246v66h246v-66'], + 0x2011: [257,-194,333,39,285,'285 194h-246v63h246v-63'], + 0x2012: [259,-193,500,0,500,'500 193h-500v66h500v-66'], + 0x2015: [250,-201,2000,0,2000,'2000 201h-2000v49h2000v-49'], + 0x2017: [-141,300,500,0,500,'500 -191h-500v50h500v-50zM500 -300h-500v50h500v-50'], + 0x201A: [102,141,333,79,218,'106 -141l-9 19c54 37 82 74 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -20 -2c-37 0 -59 19 -59 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -45 -121 -112 -154'], + 0x201B: [676,-433,333,79,218,'200 452l-9 -19c-67 33 -112 94 -112 154c0 50 35 89 80 89c35 0 59 -23 59 -57c0 -32 -22 -51 -59 -51c-7 0 -14 1 -20 2c-5 2 -7 2 -7 2c-8 0 -14 -6 -14 -13c0 -34 28 -70 82 -107'], + 0x201E: [102,141,444,45,416,'304 -141l-9 19c54 37 82 73 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2c-6 -1 -13 -2 -19 -2c-38 0 -60 19 -60 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -44 -121 -112 -154zM72 -141l-9 19c54 38 82 74 82 107c0 7 -6 13 -14 13c0 0 -2 0 -7 -2 c-6 -1 -13 -2 -19 -2c-38 0 -60 19 -60 51c0 34 24 57 59 57c45 0 80 -39 80 -89c0 -60 -44 -121 -112 -154'], + 0x201F: [676,-433,444,30,401,'383 452l-9 -19c-67 33 -112 94 -112 154c0 50 35 89 80 89c35 0 59 -23 59 -57c0 -32 -22 -51 -60 -51c-6 0 -13 1 -19 2c-5 2 -7 2 -7 2c-8 0 -14 -6 -14 -13c0 -34 28 -70 82 -107zM151 452l-9 -19c-67 33 -112 94 -112 154c0 50 35 89 80 89c35 0 59 -23 59 -57 c0 -32 -22 -51 -60 -51c-6 0 -13 1 -19 2c-5 2 -7 2 -7 2c-8 0 -14 -6 -14 -13c0 -34 28 -70 82 -107'], + 0x2022: [444,-59,523,70,455,'455 252c0 -106 -88 -193 -193 -193c-106 0 -192 86 -192 193c0 104 86 192 192 192c114 0 193 -87 193 -192'], + 0x2025: [100,11,667,111,555,'555 43c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57zM222 43c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57'], + 0x2030: [706,19,1109,61,1048,'1048 213c0 -121 -78 -232 -163 -232c-69 0 -122 60 -122 139c0 106 93 210 189 210c61 0 96 -43 96 -117zM1025 215c0 52 -25 87 -63 87c-23 0 -45 -14 -66 -43c-32 -42 -61 -127 -61 -181c0 -41 23 -70 56 -70c69 0 134 101 134 207zM686 213 c0 -121 -78 -232 -164 -232c-68 0 -121 60 -121 138c0 107 93 211 189 211c61 0 96 -43 96 -117zM663 215c0 52 -25 87 -63 87c-16 0 -37 -9 -49 -23c-44 -47 -78 -135 -78 -203c0 -39 24 -68 56 -68c69 0 134 101 134 207zM621 706l-430 -724h-47l394 658 c-37 -43 -68 -57 -121 -57c-26 0 -44 3 -76 14c3 -17 4 -28 4 -44c0 -70 -32 -145 -80 -190c-27 -26 -53 -37 -86 -37c-67 0 -118 59 -118 137c0 113 91 213 193 213c21 0 33 -6 60 -28c35 -29 59 -39 96 -39c62 0 75 8 167 97h44zM321 569c0 29 -4 36 -25 46 c-14 7 -27 16 -44 34c-41 -20 -52 -30 -72 -63c-31 -49 -48 -108 -48 -163c0 -42 23 -70 57 -70c71 0 132 101 132 216'], + 0x2031: [706,19,1471,61,1410,'1410 213c0 -121 -78 -232 -163 -232c-69 0 -122 60 -122 139c0 106 93 210 189 210c61 0 96 -43 96 -117zM1387 215c0 52 -25 87 -63 87c-23 0 -45 -14 -66 -43c-32 -42 -61 -127 -61 -181c0 -41 23 -70 56 -70c69 0 134 101 134 207zM1048 213 c0 -121 -78 -232 -163 -232c-69 0 -122 60 -122 139c0 106 93 210 189 210c61 0 96 -43 96 -117zM1025 215c0 52 -25 87 -63 87c-23 0 -45 -14 -66 -43c-32 -42 -61 -127 -61 -181c0 -41 23 -70 56 -70c69 0 134 101 134 207zM686 213c0 -121 -78 -232 -164 -232 c-68 0 -121 60 -121 138c0 107 93 211 189 211c61 0 96 -43 96 -117zM663 215c0 52 -25 87 -63 87c-16 0 -37 -9 -49 -23c-44 -47 -78 -135 -78 -203c0 -39 24 -68 56 -68c69 0 134 101 134 207zM621 706l-430 -724h-47l394 658c-37 -43 -68 -57 -121 -57 c-26 0 -44 3 -76 14c3 -17 4 -28 4 -44c0 -70 -32 -145 -80 -190c-27 -26 -53 -37 -86 -37c-67 0 -118 59 -118 137c0 113 91 213 193 213c21 0 33 -6 60 -28c35 -29 59 -39 96 -39c62 0 75 8 167 97h44zM321 569c0 29 -4 36 -25 46c-14 7 -27 16 -44 34 c-41 -20 -52 -30 -72 -63c-31 -49 -48 -108 -48 -163c0 -42 23 -70 57 -70c71 0 132 101 132 216'], + 0x2036: [678,-401,426,75,351,'351 410l-18 -9l-107 205c-6 12 -14 25 -14 39c0 17 9 33 28 33c29 0 38 -22 45 -46zM214 411l-18 -9l-107 205c-6 12 -14 25 -14 39c0 17 9 32 28 32c29 0 38 -21 45 -45'], + 0x2037: [678,-401,563,75,488,'488 410l-18 -9l-107 205c-6 12 -14 25 -14 39c0 17 9 33 28 33c29 0 38 -22 45 -46zM351 411l-18 -9l-107 205c-6 12 -14 25 -14 39c0 17 9 32 28 32c29 0 38 -21 45 -45zM214 411l-18 -9l-107 205c-6 12 -14 25 -14 39c0 17 9 32 28 32c29 0 38 -21 45 -45'], + 0x2038: [102,156,511,59,454,'454 -138l-22 -18l-177 208l-176 -208l-20 18l191 240h10'], + 0x2039: [416,-33,333,63,285,'63 227l81 73c42 38 121 116 130 116s11 -6 11 -11c0 -9 -19 -31 -50 -72l-84 -106c32 -37 62 -78 84 -107c31 -40 50 -67 50 -76c0 -6 -6 -11 -12 -11c-9 0 -88 84 -129 121'], + 0x203A: [416,-33,333,48,270,'270 222l-81 -73c-42 -38 -121 -116 -130 -116s-11 6 -11 11c0 9 19 31 50 72l84 106c-32 37 -62 78 -84 107c-31 40 -50 67 -50 76c0 6 6 11 12 11c9 0 88 -84 129 -121'], + 0x203B: [547,41,685,48,635,'616 253c0 -35 -29 -64 -64 -64s-64 29 -64 64s29 64 64 64s64 -29 64 -64zM407 462c0 -35 -29 -64 -64 -64s-64 29 -64 64s29 64 64 64s64 -29 64 -64zM635 5l-46 -46l-247 247l-248 -247l-46 46l247 248l-247 248l46 46l248 -247l247 247l46 -46l-246 -248zM407 44 c0 -35 -29 -64 -64 -64s-64 29 -64 64s29 64 64 64s64 -29 64 -64zM197 253c0 -35 -29 -64 -64 -64s-64 29 -64 64s29 64 64 64s64 -29 64 -64'], + 0x203C: [676,9,549,130,452,'391 176l-42 381c-2 20 -3 32 -3 43c0 43 15 76 53 76c34 0 53 -32 53 -81c0 -12 -1 -27 -2 -38l-45 -381h-14zM175 176l-42 381c-2 20 -3 32 -3 43c0 43 15 76 53 76c34 0 53 -32 53 -81c0 -12 -1 -27 -2 -38l-45 -381h-14zM452 42c0 -29 -23 -51 -54 -51 c-30 0 -52 22 -52 52s23 54 53 54c29 0 53 -25 53 -55zM236 42c0 -29 -23 -51 -54 -51c-30 0 -52 22 -52 52s23 54 53 54c29 0 53 -25 53 -55'], + 0x2040: [709,-512,798,72,726,'726 523l-14 -11c-105 117 -235 131 -311 131c-88 0 -211 -14 -314 -131l-15 9c63 143 219 188 327 188c119 0 264 -45 327 -186'], + 0x2043: [332,-172,333,39,285,'285 172h-246v160h246v-160'], + 0x2047: [676,8,839,68,809,'639 164h-17c1 40 9 90 44 177c26 64 51 127 51 187c0 69 -48 118 -109 118c-48 0 -94 -30 -94 -62c0 -37 38 -41 38 -74c0 -25 -16 -43 -41 -43c-28 0 -48 25 -48 66c0 83 68 143 164 143c97 0 182 -61 182 -158c0 -61 -19 -95 -105 -197c-36 -43 -54 -89 -65 -157z M685 45c0 -29 -22 -53 -52 -53c-34 0 -54 25 -54 53c0 30 23 53 54 53c28 0 52 -25 52 -53zM244 164h-17c1 40 9 90 44 177c26 64 51 127 51 187c0 69 -48 118 -109 118c-48 0 -94 -30 -94 -62c0 -37 38 -41 38 -74c0 -25 -16 -43 -41 -43c-28 0 -48 25 -48 66 c0 83 68 143 164 143c97 0 182 -61 182 -158c0 -61 -19 -95 -105 -197c-36 -43 -54 -89 -65 -157zM290 45c0 -29 -22 -53 -52 -53c-34 0 -54 25 -54 53c0 30 23 53 54 53c28 0 52 -25 52 -53'], + 0x204E: [240,171,500,68,433,'268 35l9 -6c27 -18 59 -28 96 -34c44 -7 60 -17 60 -43c0 -22 -15 -39 -36 -39c-19 0 -35 13 -60 44c-27 33 -49 45 -69 58l-8 5v-9c0 -39 7 -75 20 -110c5 -14 9 -26 9 -33c0 -20 -20 -39 -40 -39c-19 0 -36 17 -36 36c0 12 5 28 12 47c12 32 16 56 16 99v9 c-35 -22 -42 -27 -52 -36c-10 -10 -12 -12 -41 -45c-17 -19 -27 -25 -43 -25c-23 0 -37 15 -37 36c0 26 18 37 63 45c46 9 62 15 103 40c-38 23 -63 30 -97 37c-49 10 -67 21 -67 46c0 21 13 37 33 37c16 0 27 -8 49 -32c32 -36 51 -52 89 -73v13c0 27 -5 58 -15 91 c-7 21 -11 39 -11 52c0 19 16 34 36 34s37 -16 37 -36c0 -12 -4 -27 -11 -47c-12 -32 -17 -59 -17 -83v-24c28 16 39 24 58 42c24 24 55 65 77 65s37 -15 37 -38c0 -26 -13 -37 -52 -43c-44 -7 -63 -13 -112 -41'], + 0x204F: [459,141,278,60,199,'199 403c0 -30 -26 -55 -56 -55s-55 25 -55 55s25 56 55 56c32 0 56 -24 56 -56zM182 -122l-10 -19c-70 33 -112 91 -112 154c0 54 35 89 80 89c33 0 59 -23 59 -56s-21 -52 -58 -52c-9 0 -22 4 -28 4c-8 0 -14 -7 -14 -14c0 -33 28 -70 83 -106'], + 0x2050: [691,40,790,55,735,'735 461l-66 -17c-21 107 -135 181 -277 181s-253 -72 -271 -181l-66 17c35 151 185 230 339 230c155 0 306 -79 341 -230zM667 208l66 -17c-35 -152 -185 -231 -340 -231c-154 0 -303 79 -338 231l67 17c20 -119 128 -183 270 -183s252 64 275 183'], + 0x2051: [676,171,501,68,433,'268 471l9 -6c27 -18 59 -28 96 -34c44 -7 60 -17 60 -43c0 -22 -15 -39 -36 -39c-19 0 -35 13 -60 44c-27 33 -49 45 -69 58l-8 5v-9c0 -39 7 -75 20 -110c5 -14 9 -26 9 -33c0 -20 -20 -39 -40 -39c-19 0 -36 17 -36 36c0 12 5 28 12 47c12 32 16 56 16 99v9 c-35 -22 -42 -27 -52 -36c-10 -10 -12 -12 -41 -45c-17 -19 -27 -25 -43 -25c-23 0 -37 15 -37 36c0 26 18 37 63 45c46 9 62 15 103 40c-38 23 -63 30 -97 37c-49 10 -67 21 -67 46c0 21 13 37 33 37c16 0 27 -8 49 -32c32 -36 51 -52 89 -73v13c0 27 -5 58 -15 91 c-7 21 -11 39 -11 52c0 19 16 34 36 34s37 -16 37 -36c0 -12 -4 -27 -11 -47c-12 -32 -17 -59 -17 -83v-24c28 16 39 24 58 42c24 24 55 65 77 65s37 -15 37 -38c0 -26 -13 -37 -52 -43c-44 -7 -63 -13 -112 -41zM268 35l9 -6c27 -18 59 -28 96 -34c44 -7 60 -17 60 -43 c0 -22 -15 -39 -36 -39c-19 0 -35 13 -60 44c-27 33 -49 45 -69 58l-8 5v-9c0 -39 7 -75 20 -110c5 -14 9 -26 9 -33c0 -20 -20 -39 -40 -39c-19 0 -36 17 -36 36c0 12 5 28 12 47c12 32 16 56 16 99v9c-35 -22 -42 -27 -52 -36c-10 -10 -12 -12 -41 -45 c-17 -19 -27 -25 -43 -25c-23 0 -37 15 -37 36c0 26 18 37 63 45c46 9 62 15 103 40c-38 23 -63 30 -97 37c-49 10 -67 21 -67 46c0 21 13 37 33 37c16 0 27 -8 49 -32c32 -36 51 -52 89 -73v13c0 27 -5 58 -15 91c-7 21 -11 39 -11 52c0 19 16 34 36 34s37 -16 37 -36 c0 -12 -4 -27 -11 -47c-12 -32 -17 -59 -17 -83v-24c28 16 39 24 58 42c24 24 55 65 77 65s37 -15 37 -38c0 -26 -13 -37 -52 -43c-44 -7 -63 -13 -112 -41'], + 0x2052: [706,200,471,54,417,'176 619c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57zM417 706l-294 -906h-69l296 906h67zM406 -116c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57'], + 0x205F: [0,0,1000,0,0,''], + 0x20D0: [760,-627,0,-453,-17,'-17 627h-436l132 133l18 -8c-32 -27 -36 -45 -36 -52c0 -12 8 -19 41 -19h281v-54'], + 0x20D1: [760,-627,0,-453,-17,'-17 627h-436v54h281c33 0 41 7 41 19c0 7 -4 25 -36 52l18 8'], + 0x20D2: [662,156,0,-242,-192,'-192 -156h-50v818h50v-818'], + 0x20D6: [760,-548,0,-453,-17,'-17 627h-286c-28 0 -49 -2 -49 -15c0 -9 21 -27 50 -56l-18 -8l-133 106l132 106l18 -8c-32 -27 -49 -49 -49 -56c0 -12 16 -15 49 -15h286v-54'], + 0x20DB: [622,-523,0,-462,35,'35 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM-164 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM-363 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50'], + 0x20DC: [622,-523,0,-600,96,'96 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM-103 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM-302 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50z M-501 572c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50'], + 0x20DD: [725,221,0,-723,223,'-723 252c0 261 212 473 473 473s473 -212 473 -473s-212 -473 -473 -473s-473 212 -473 473zM-657 252c0 -225 182 -407 407 -407s407 182 407 407s-182 407 -407 407s-407 -182 -407 -407'], + 0x20DE: [780,180,0,-730,230,'230 -180h-960v960h960v-960zM164 -114v828h-828v-828h828'], + 0x20DF: [843,341,0,-840,344,'344 251l-591 -592l-593 593l592 591zM252 251l-500 500l-500 -499l501 -501'], + 0x20E1: [760,-548,0,-453,25,'25 654l-132 -106l-18 8c32 27 49 49 49 56c0 12 -16 15 -49 15h-177c-34 0 -50 -5 -50 -15c0 -9 21 -27 50 -56l-18 -8l-133 106l132 106l18 -8c-32 -27 -49 -49 -49 -56c0 -12 16 -15 49 -15h178c28 0 49 2 49 15c0 9 -21 27 -50 56l18 8'], + 0x20E4: [1023,155,0,-970,490,'490 -155h-1460l721 1178zM-839 -89h1198l-608 964'], + 0x20E5: [662,156,0,-430,-40,'-40 -156h-55l-335 818h55'], + 0x20E6: [662,156,0,-335,-102,'-102 -156h-50v818h50v-818zM-285 -156h-50v818h50v-818'], + 0x20E7: [725,178,0,-650,166,'166 -178h-66v837h-750v66h816v-903'], + 0x20E8: [-119,218,0,-462,35,'35 -169c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM-164 -169c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM-363 -169c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50'], + 0x20E9: [681,-538,0,-480,53,'53 538h-54v89h-425v-89h-54v143h533v-143'], + 0x20EA: [419,-87,0,-658,118,'118 220h-588c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 29 -33 52 -66l-20 -19c-66 76 -112 120 -208 161v10c96 40 143 86 208 161l20 -19c-22 -33 -24 -39 -53 -67c-10 -10 -14 -16 -14 -25c0 -10 16 -22 26 -22h589v-66'], + 0x20EB: [756,217,0,-448,193,'193 756l-403 -973h-54l403 973h54zM9 756l-402 -973h-55l403 973h54'], + 0x20EC: [-119,252,0,-453,-17,'-17 -119l-132 -133l-18 8c32 27 36 45 36 52c0 12 -8 19 -41 19h-281v54h436'], + 0x20ED: [-119,252,0,-453,-17,'-17 -173h-281c-33 0 -41 -7 -41 -19c0 -7 4 -25 36 -52l-18 -8l-132 133h436v-54'], + 0x20EE: [-40,252,0,-453,-17,'-17 -173h-286c-28 0 -49 -2 -49 -15c0 -9 21 -27 50 -56l-18 -8l-133 106l132 106l18 -8c-32 -27 -49 -49 -49 -56c0 -12 16 -15 49 -15h286v-54'], + 0x20EF: [-40,252,0,-453,-17,'-17 -146l-133 -106l-18 8c29 29 50 47 50 56c0 13 -21 15 -49 15h-286v54h286c33 0 49 3 49 15c0 7 -17 29 -49 56l18 8'], + 0x20F0: [819,-517,0,-357,-87,'-87 727c0 -9 -5 -16 -17 -22c-16 -10 -55 -10 -106 -39c45 -25 89 -27 106 -38c11 -5 15 -15 15 -23c0 -13 -9 -26 -27 -26c-28 0 -45 48 -99 78c0 -48 21 -91 21 -113c0 -12 -14 -27 -26 -27c-14 0 -27 15 -27 27c0 22 20 65 20 113c-36 -20 -68 -63 -84 -72 c-6 -4 -13 -6 -18 -6c-17 0 -26 11 -26 22c0 9 4 22 14 27c19 11 71 17 107 38c-36 22 -90 28 -110 40c-8 5 -13 12 -13 21c0 14 10 30 25 30c4 0 9 -2 15 -5c21 -13 51 -55 90 -76c0 50 -20 94 -20 116c0 14 13 27 27 27c12 0 26 -13 26 -27c0 -22 -21 -66 -21 -115 c51 28 68 63 88 75c6 3 11 5 15 5c15 0 25 -16 25 -30'], + 0x3012: [662,0,685,10,672,'672 596h-662v66h662v-66zM672 396h-298v-396h-66v396h-298v66h662v-66'], + 0x3030: [417,-93,1412,45,1367,'1367 417v-65c-62 0 -85 -53 -111 -111c-32 -72 -63 -148 -158 -148c-94 0 -128 77 -160 149c-25 57 -47 109 -101 109c-52 0 -75 -52 -101 -110c-32 -72 -64 -148 -159 -148s-129 76 -160 148c-25 57 -48 110 -101 110s-76 -52 -101 -109c-31 -72 -65 -149 -169 -149 l-1 66c62 0 87 53 112 110c31 72 64 148 159 148c96 0 129 -76 160 -148c25 -57 48 -110 101 -110c52 0 76 52 101 109c31 72 65 149 159 149s128 -77 159 -149c25 -57 47 -109 100 -109c52 0 77 53 102 110c31 72 64 148 169 148'], + 0xE05E: [698,-547,0,95,406,'406 644h-311v54h311v-54zM406 547h-311v54h311v-54'], + 0xE061: [-141,390,0,11,322,'322 -195h-311v54h311v-54zM322 -292h-311v54h311v-54zM322 -390h-311v54h311v-54'], + 0xE062: [-141,486,0,11,322,'322 -195h-311v54h311v-54zM322 -292h-311v54h311v-54zM322 -390h-311v54h311v-54zM322 -486h-311v54h311v-54'], + 0xE063: [734,-508,0,94,485,'485 547h-34l-162 123l-161 -123h-34l164 187h62zM339 557c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50'], + 0xE064: [777,-547,0,95,425,'396 777h29c-21 -76 -50 -106 -105 -106c-25 0 -40 4 -81 24l-23 11c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c22 0 46 -6 70 -18l24 -12c19 -10 38 -15 53 -15c23 0 36 13 53 50zM416 547h-311v54h311v-54'], + 0xE065: [-141,371,0,1,331,'321 -195h-311v54h311v-54zM302 -265h29c-15 -65 -51 -101 -101 -101c-22 0 -46 6 -70 18l-24 12c-19 10 -38 15 -53 15c-23 0 -36 -13 -53 -50h-29c21 76 50 106 105 106c25 0 40 -4 81 -24l23 -11c15 -7 29 -11 41 -11c23 0 40 15 51 46'], + 0xE066: [770,-547,0,101,412,'406 720c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM207 720c0 -27 -23 -49 -51 -49c-27 0 -48 22 -48 50c0 27 22 49 49 49s50 -23 50 -50zM412 547h-311v54h311v-54'], + 0xE067: [-141,371,0,1,331,'302 -141h29c-15 -65 -51 -101 -101 -101c-22 0 -46 6 -70 18l-24 12c-19 10 -38 15 -53 15c-23 0 -36 -13 -53 -50h-29c21 76 50 106 105 106c25 0 40 -4 81 -24l23 -11c15 -7 29 -11 41 -11c23 0 40 15 51 46zM321 -371h-311v54h311v-54'], + 0xE0D8: [584,0,400,57,343,'343 441c0 -80 -63 -143 -143 -143c-81 0 -143 63 -143 144c0 80 63 142 145 142c78 0 141 -64 141 -143zM304 442c0 59 -48 108 -106 108c-55 0 -102 -50 -102 -109c0 -60 47 -109 104 -109s104 50 104 110zM252 51c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51 c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE0D9: [665,0,255,56,199,'60 398l66 222c7 24 16 45 45 45c19 0 28 -15 28 -32c0 -14 -8 -27 -14 -39l-107 -205zM158 51c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE0DA: [665,0,388,56,332,'193 398l66 222c7 24 16 45 45 45c19 0 28 -15 28 -32c0 -14 -8 -27 -14 -39l-107 -205zM56 397l66 222c7 24 16 46 45 46c19 0 28 -16 28 -33c0 -14 -8 -27 -14 -39l-107 -205zM187 51c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51'], + 0xE28C: [474,-227,0,53,397,'397 425l-344 -198v49l344 198v-49'], + 0xE28D: [734,-484,0,94,460,'460 615h-34l-149 69l-149 -69h-34l155 119h56zM460 484h-34l-149 69l-149 -69h-34l155 119h56'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Marks/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/Bold/Main.js new file mode 100644 index 0000000..145d037 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/Bold/Main.js @@ -0,0 +1,199 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Misc/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Misc-bold'] = { + directory: 'Misc/Bold', + family: 'STIXMathJax_Misc', + weight: 'bold', + id: 'STIXWEBMISCB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x250: [473,14,512,13,476,'28 395l-15 21c38 41 69 57 112 57c49 0 71 -18 82 -69c55 50 101 69 159 69c64 0 110 -32 110 -106c0 -44 -22 -82 -67 -112c-38 -25 -85 -43 -201 -76v-68c0 -64 22 -93 81 -93c36 0 65 13 65 37c0 6 -2 13 -11 23c-13 16 -19 28 -19 42c0 34 28 60 68 60 c41 0 65 -26 65 -68c0 -80 -78 -126 -191 -126c-122 0 -196 48 -196 134v261c0 17 -7 28 -21 28c-5 0 -8 -1 -11 -4zM208 362v-148c80 22 122 63 122 121c0 44 -22 67 -52 67c-24 0 -48 -9 -70 -40'], + 0x251: [473,14,608,32,594,'594 50l-194 -58v53c-16 -13 -56 -59 -145 -59c-52 0 -223 21 -223 231c0 136 100 256 246 256c57 0 97 -25 122 -46l106 46h14v-388c0 -15 3 -25 15 -25c7 0 21 2 59 7v-17zM400 109v231c0 68 -60 101 -101 101c-56 0 -124 -51 -124 -188c0 -151 74 -209 146 -209 c29 0 79 27 79 65'], + 0x252: [473,14,608,32,594,'226 467v-53c16 13 56 59 145 59c52 0 223 -21 223 -231c0 -136 -100 -256 -246 -256c-57 0 -97 25 -122 46l-106 -46h-14v388c0 15 -3 25 -15 25c-7 0 -21 -2 -59 -7v17zM226 350v-231c0 -68 60 -101 101 -101c56 0 124 51 124 188c0 151 -74 209 -146 209 c-29 0 -79 -27 -79 -65'], + 0x253: [691,14,560,74,523,'213 586v-169c38 40 73 56 122 56c111 0 188 -95 188 -234c0 -150 -92 -253 -226 -253c-50 0 -86 15 -132 57l-79 -56h-12v479c0 79 9 137 40 174c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57 c0 12 -11 19 -29 19c-34 0 -50 -19 -50 -74zM213 360v-263c0 -48 27 -79 69 -79c64 0 94 64 94 203c0 132 -31 198 -93 198c-33 0 -52 -16 -70 -59'], + 0x254: [473,14,472,15,420,'33 350l-18 18c55 75 111 105 191 105c125 0 214 -93 214 -236c0 -149 -104 -251 -237 -251c-87 0 -154 46 -154 110c0 39 26 64 68 64c34 0 56 -25 56 -73c0 -47 0 -70 42 -70c49 0 84 60 84 169c0 136 -52 220 -139 220c-41 0 -70 -14 -107 -56'], + 0x255: [473,161,477,30,445,'107 -161l77 156c-29 8 -69 31 -91 53c-41 41 -63 104 -63 174c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169c0 -77 16 -147 56 -195c40 58 60 89 121 89c59 0 97 -34 97 -83 c0 -54 -42 -105 -131 -105c-14 0 -67 0 -86 4l-73 -144h-48zM401 84c0 31 -29 43 -53 43c-33 0 -55 -22 -88 -76c18 -15 57 -28 73 -28c58 0 68 34 68 61'], + 0x256: [676,233,602,32,660,'482 676v-799c0 -59 14 -79 50 -79c18 0 29 7 29 19c0 14 -22 22 -22 57c0 31 26 57 60 57c37 0 61 -27 61 -64c0 -59 -57 -100 -142 -100c-64 0 -108 18 -135 51c-33 40 -40 100 -40 175v59c-47 -50 -77 -66 -130 -66c-105 0 -181 98 -181 235c0 145 82 252 192 252 c46 0 76 -16 119 -62v183c0 46 -9 53 -76 58v24h215zM343 112v243c-15 38 -45 62 -78 62c-58 0 -85 -59 -85 -188c0 -127 25 -187 78 -187c23 0 46 12 66 37c10 13 19 28 19 33'], + 0x257: [683,14,650,32,660,'343 411v64c0 68 10 121 40 157c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-34 0 -50 -17 -50 -67v-484c0 -42 13 -55 59 -58v-23l-62 -8c-62 -8 -87 -12 -133 -25v65 c-47 -50 -80 -66 -133 -66c-105 0 -181 98 -181 235c0 145 82 252 192 252c46 0 76 -16 119 -62zM343 112v243c-15 38 -45 62 -78 62c-58 0 -85 -59 -85 -188c0 -127 25 -187 78 -187c23 0 46 12 66 37c10 13 19 28 19 33'], + 0x258: [473,14,457,25,427,'283 245h-252c4 74 22 137 59 178c29 32 70 50 128 50c125 0 209 -100 209 -249c0 -137 -83 -238 -204 -238c-85 0 -138 31 -198 126l24 14c41 -49 72 -68 115 -68c98 0 113 92 119 187zM154 282h134c0 120 -24 160 -70 160c-29 0 -41 -17 -55 -47c-9 -19 -9 -40 -9 -92 v-21'], + 0x259: [473,14,457,19,421,'43 333l-24 14c60 95 113 126 198 126c121 0 204 -101 204 -238c0 -149 -84 -249 -209 -249c-58 0 -99 18 -128 50c-37 41 -55 104 -59 178h252c-6 95 -21 187 -119 187c-43 0 -74 -19 -115 -68zM282 177h-134v-21c0 -52 0 -73 9 -92c14 -30 26 -47 55 -47 c46 0 70 40 70 160'], + 0x25A: [473,14,688,41,677,'677 289l-11 -27c-13 -32 -44 -57 -83 -57c-53 0 -83 30 -83 83c0 21 0 86 1 93l-72 -43c9 -29 14 -70 14 -103c0 -149 -84 -249 -209 -249c-58 0 -99 18 -128 50c-37 41 -53 96 -54 126l252 146c-14 55 -63 93 -124 93c-43 0 -74 -19 -115 -68l-24 14 c65 104 122 126 198 126c73 0 133 -36 172 -103l118 71l13 -12c-3 -51 -5 -113 -5 -140s20 -47 45 -47c33 0 51 25 55 35l10 25zM304 178v88l-129 -75v-53c0 -49 7 -121 61 -121c68 0 68 112 68 161'], + 0x25B: [475,14,493,25,439,'416 102l23 -18c-65 -90 -139 -98 -213 -98c-95 0 -201 39 -201 137c0 59 50 109 118 127c-57 26 -91 52 -91 108c0 92 91 116 189 117c34 0 59 -4 80 -10c45 -13 94 -51 94 -84c0 -24 -9 -51 -50 -51c-39 0 -51 19 -71 70c-10 25 -24 38 -56 38c-49 0 -66 -26 -66 -88 c0 -43 41 -71 70 -80c24 -7 26 -5 52 -6v-37h-53c-48 0 -77 -38 -77 -98c0 -57 38 -94 91 -94c61 0 110 9 161 67'], + 0x25C: [475,14,493,25,439,'170 227v37c26 1 28 -1 52 6c29 9 70 37 70 80c0 62 -17 88 -66 88c-32 0 -46 -13 -56 -38c-20 -51 -32 -70 -71 -70c-41 0 -50 27 -50 51c0 33 49 71 94 84c21 6 46 10 80 10c98 -1 189 -25 189 -117c0 -56 -34 -82 -91 -108c68 -18 118 -68 118 -127 c0 -98 -106 -137 -201 -137c-74 0 -148 8 -213 98l23 18c51 -58 100 -67 161 -67c53 0 91 37 91 94c0 60 -29 98 -77 98h-53'], + 0x25D: [475,14,683,25,658,'658 289l-11 -27c-13 -32 -44 -57 -83 -57c-53 0 -83 30 -83 83c0 21 0 86 1 93l-72 -44c-8 -43 -41 -65 -89 -87c68 -18 119 -68 119 -127c0 -98 -107 -137 -202 -137c-74 0 -150 9 -213 98l23 18c51 -58 100 -67 161 -67c53 0 91 37 91 94c0 60 -29 98 -77 98h-53v37 c26 1 28 -1 52 6c29 9 70 37 70 80c0 62 -16 88 -68 88c-29 0 -44 -13 -54 -38c-20 -51 -32 -70 -71 -70c-41 0 -50 27 -50 51c0 33 49 71 94 84c21 6 46 10 80 10c89 -1 173 -21 187 -94l100 60l13 -12c-3 -51 -5 -113 -5 -140s20 -47 45 -47c33 0 51 25 55 35l10 25'], + 0x25E: [475,14,523,25,469,'469 123c0 -97 -100 -137 -213 -137c-73 0 -231 38 -231 247c0 148 104 242 220 242c105 0 197 -24 197 -117c0 -56 -34 -82 -91 -108c68 -18 118 -68 118 -127zM200 227v37c26 1 28 -1 52 6c29 9 70 37 70 80c0 62 -16 88 -68 88c-83 0 -159 -83 -159 -196 c0 -126 69 -207 144 -207c53 0 90 37 90 94c0 60 -28 98 -76 98h-53'], + 0x25F: [461,203,338,-54,314,'314 461v-24c-43 0 -51 -35 -51 -60v-123h48v-46h-48v-206c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v304h-101 v46h101v123c0 40 -10 58 -63 60v24h253'], + 0x260: [683,245,627,37,662,'345 -68v110c-35 -45 -75 -56 -123 -56c-103 0 -185 88 -185 233c0 140 87 254 222 254c33 0 58 -6 86 -22c0 76 8 142 40 181c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19 c-36 0 -50 -20 -50 -79v-591c0 -32 -10 -89 -27 -118c-28 -49 -85 -109 -206 -109c-46 0 -103 8 -141 28c-30 16 -55 43 -55 82c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -22 48 -27 67 -27c78 0 125 95 125 146zM345 98v256 c0 55 -27 87 -67 87c-56 0 -95 -63 -95 -205c0 -136 39 -196 93 -196c34 0 69 20 69 58'], + 0x261: [473,245,571,37,484,'484 472v-490c0 -32 -10 -89 -27 -118c-28 -49 -85 -109 -206 -109c-46 0 -103 8 -141 28c-30 16 -55 43 -55 82c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -22 48 -27 67 -27c78 0 125 95 125 146v110 c-35 -45 -75 -56 -123 -56c-103 0 -185 88 -185 233c0 140 87 254 222 254c50 0 81 -13 132 -56l77 55h16zM345 98v256c0 55 -27 87 -67 87c-56 0 -95 -63 -95 -205c0 -136 39 -196 93 -196c34 0 69 20 69 58'], + 0x262: [461,11,590,35,555,'555 192v-16c-54 -6 -62 -25 -62 -67v-78c-47 -26 -125 -42 -200 -42c-147 0 -258 90 -258 232c0 133 108 240 252 240c39 0 69 -8 114 -24c14 -7 25 -9 31 -9c15 0 22 6 34 31h19v-156h-18c-26 50 -39 71 -70 99c-30 26 -65 37 -100 37c-84 0 -135 -75 -135 -212 c0 -69 13 -122 37 -159c25 -38 56 -57 112 -57c50 0 68 22 68 56v59c0 35 -10 47 -73 50v16h249'], + 0x263: [461,233,532,24,507,'507 437h-13c-21 0 -32 -31 -42 -58l-107 -291l43 -106c14 -34 32 -77 32 -109c0 -63 -54 -106 -121 -106c-74 0 -115 31 -115 91c0 22 14 54 21 70l33 73l-128 312c-10 24 -39 86 -49 106c-6 12 -19 16 -37 18v24h249v-24c-19 0 -52 -2 -52 -24c0 -10 15 -48 31 -88 l61 -158l66 183c9 24 13 39 13 55c0 31 -28 30 -44 33v23h159v-24zM270 -67l-19 -47c-4 -10 -8 -26 -8 -36c0 -28 11 -44 31 -44c22 0 26 20 26 34c0 6 -1 24 -7 39'], + 0x264: [450,10,514,17,497,'275 263l95 142c14 22 33 45 62 45c47 0 65 -40 65 -81c0 -22 -6 -47 -13 -68h-10c-7 22 -20 53 -47 53c-21 0 -39 -13 -50 -30l-70 -108l43 -72c14 -23 27 -48 27 -75c0 -56 -78 -79 -123 -79c-50 0 -95 27 -95 82c0 25 10 43 24 63l37 52l-60 93c-16 24 -40 74 -73 74 c-28 0 -40 -31 -48 -53h-10c-7 18 -12 37 -12 56c0 48 34 92 84 92c47 0 81 -42 104 -78zM290 57c0 20 -27 60 -38 78c-18 -24 -33 -40 -33 -72c0 -22 14 -40 37 -40c18 0 34 16 34 34'], + 0x265: [450,226,550,17,536,'536 -226h-193v280c-49 -58 -94 -77 -147 -77c-82 0 -130 57 -130 136v250c0 46 -14 63 -49 63v24h234v-24c-34 -4 -46 -20 -46 -61v-224c0 -71 12 -97 51 -97c24 0 48 12 70 34c10 10 17 20 17 24v263c0 41 -11 56 -48 61v24h240v-24c-45 -9 -53 -9 -53 -65v-502 c0 -48 8 -52 54 -61v-24'], + 0x266: [683,0,550,14,532,'532 0h-234v24c34 4 46 20 46 61v224c0 71 -12 97 -51 97c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-263c0 -41 11 -56 48 -61v-24h-240v24c45 9 53 9 53 65v393c0 64 11 115 40 150c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64 c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-34 0 -50 -17 -50 -67v-189c49 58 94 77 147 77c82 0 130 -57 130 -136v-250c0 -46 14 -63 49 -63v-24'], + 0x267: [683,205,556,16,485,'485 337v-337c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -12 -9 -22s13 -17 32 -17c31 0 48 20 48 65v418c0 71 -12 97 -51 97c-24 0 -48 -12 -70 -34 c-10 -10 -17 -20 -17 -24v-263c0 -41 11 -56 48 -61v-24h-240v24c45 9 53 9 53 65v393c0 64 11 115 40 150c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-34 0 -50 -17 -50 -67v-189 c49 58 94 77 147 77c82 0 130 -57 130 -136'], + 0x268: [691,0,292,21,262,'221 613c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78zM262 0h-240v24c46 11 53 18 53 64v135h-53v46h53v104c0 45 -10 55 -54 64v24h193v-192h45v-46h-45v-138c0 -43 13 -56 48 -61v-24'], + 0x269: [456,8,366,22,339,'323 95l16 -17c-20 -33 -65 -86 -143 -86c-84 0 -117 49 -117 136v212c0 36 -4 48 -12 48c-10 0 -25 -3 -45 -10v27c61 23 151 51 177 51c17 0 19 -15 19 -28v-321c0 -44 21 -57 34 -57s41 6 71 45'], + 0x26A: [461,0,297,26,264,'264 0h-238v17c51 5 64 13 64 56v319c0 39 -15 49 -64 52v17h238v-17c-49 -2 -63 -13 -63 -52v-319c0 -45 12 -53 63 -56v-17'], + 0x26B: [676,0,395,15,380,'337 433h43c-23 -87 -60 -127 -115 -127v-219c0 -46 17 -62 50 -63v-24h-240v24c34 3 51 19 51 63v264c-9 3 -14 4 -20 4c-26 0 -45 -19 -49 -47h-42c17 83 52 123 111 125v154c0 37 -17 62 -52 65v24h191v-289c7 -3 11 -3 18 -3c27 0 41 13 54 49'], + 0x26C: [676,0,446,17,428,'417 384l11 -21s-44 -72 -129 -115v-161c0 -46 17 -62 50 -63v-24h-240v24c34 3 51 19 51 63v143c-10 -1 -18 -1 -27 -1c-61 0 -116 38 -116 114c0 81 59 115 116 115c9 0 23 -4 27 -5v134c0 37 -17 62 -52 65v24h191v-376c54 19 99 65 118 84zM160 276v141 c-5 2 -13 4 -23 4c-30 0 -60 -35 -60 -68c0 -39 16 -68 54 -76c5 -1 23 -1 29 -1'], + 0x26D: [676,233,326,15,384,'206 676v-786c0 -46 16 -92 48 -92c19 0 32 7 32 17c0 5 -3 12 -9 22c-10 15 -14 27 -14 37c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-69 0 -121 28 -150 76c-15 25 -27 60 -27 99v645c0 37 -17 62 -52 65v24h191'], + 0x26E: [676,236,619,24,603,'587 423l-194 -197c11 3 37 6 53 6c73 0 157 -77 157 -206c0 -130 -69 -207 -108 -233c-24 -15 -60 -29 -113 -29c-49 0 -111 13 -141 33c-37 25 -47 47 -47 71s16 50 59 50c37 0 60 -22 67 -67c5 -30 36 -50 69 -50c75 0 87 120 87 207c0 73 -18 160 -84 160 c-21 0 -64 -2 -109 -47l-27 24l228 232h-204c-19 0 -50 -19 -65 -54v-236c0 -46 17 -62 50 -63v-24h-240v24c34 3 51 19 51 63v500c0 37 -17 62 -52 65v24h191v-226h372v-27'], + 0x26F: [473,0,828,16,815,'815 12h-192v75h-3c-38 -61 -80 -87 -144 -87c-63 0 -98 24 -128 87c-52 -64 -90 -87 -147 -87c-82 0 -135 53 -135 142v248c0 43 -11 57 -50 59v24h237v-24c-38 -3 -48 -17 -48 -59v-228c0 -62 15 -95 53 -95c18 0 37 7 58 25c13 10 27 28 27 33v265c0 38 -11 55 -46 59 v24h232v-24c-37 -3 -47 -18 -47 -59v-240c0 -60 15 -83 54 -83c23 0 84 38 84 62v261c0 38 -10 54 -45 59v24h239v-24c-44 -8 -55 -21 -55 -62v-287c0 -47 12 -58 56 -64v-24'], + 0x270: [473,233,859,16,836,'836 -233h-272v24c44 8 56 19 56 54v242c-38 -61 -80 -87 -144 -87c-63 0 -98 24 -128 87c-52 -64 -90 -87 -147 -87c-82 0 -135 53 -135 142v248c0 43 -11 57 -50 59v24h237v-24c-38 -3 -48 -17 -48 -59v-228c0 -62 15 -95 53 -95c18 0 37 7 58 25c13 10 27 28 27 33 v265c0 38 -11 55 -46 59v24h232v-24c-37 -3 -47 -18 -47 -59v-240c0 -60 15 -83 54 -83c23 0 84 38 84 62v261c0 38 -10 54 -45 59v24h239v-24c-44 -8 -55 -21 -55 -62v-494c0 -67 16 -99 77 -102v-24'], + 0x271: [473,233,847,21,770,'770 331v-359c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c31 0 48 20 48 65v448c0 62 -15 95 -53 95c-18 0 -37 -7 -58 -25 c-13 -10 -27 -28 -27 -33v-265c0 -38 11 -55 46 -59v-24h-232v24c37 3 47 18 47 59v240c0 60 -15 83 -54 83c-23 0 -84 -38 -84 -62v-261c0 -38 10 -54 45 -59v-24h-239v24c44 8 55 21 55 62v287c0 47 -12 58 -56 64v24h192v-75h3c38 61 80 87 144 87c63 0 98 -24 128 -87 c52 64 90 87 147 87c82 0 135 -53 135 -142'], + 0x272: [473,233,625,-57,586,'586 0h-234v24c34 4 46 20 46 60v237c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-392c0 -50 -10 -84 -27 -113c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37 c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c31 0 48 20 48 65v513c0 43 -9 54 -53 61v24h191v-75c35 60 83 87 143 87c82 0 135 -55 135 -142v-247c0 -45 10 -57 49 -60v-24'], + 0x273: [473,233,610,21,668,'490 331v-448c0 -43 17 -85 48 -85c19 0 32 7 32 17c0 5 -3 12 -9 22c-10 15 -14 27 -14 37c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-69 0 -121 28 -150 76c-14 23 -27 55 -27 90v388c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34 c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h191v-75h1c34 60 82 87 142 87c82 0 135 -55 135 -142'], + 0x274: [461,12,604,34,558,'558 461v-17c-49 -7 -59 -13 -59 -56v-400h-23l-342 371v-271c0 -52 14 -65 73 -71v-17h-173v17c55 6 66 15 66 56v323c-30 38 -48 48 -64 48v17h161l268 -294v205c0 54 -15 68 -70 72v17h163'], + 0x275: [473,14,520,34,485,'485 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM181 253h156c-3 139 -23 189 -77 189c-56 0 -76 -50 -79 -189zM338 207h-157c0 -142 21 -190 79 -190c57 0 77 44 78 190'], + 0x276: [461,5,741,28,713,'713 141l-30 -143h-306c-35 0 -60 0 -78 -1c-10 -1 -20 -2 -29 -2c-67 0 -123 15 -163 48c-51 41 -79 108 -79 182c0 83 36 153 97 195c39 27 94 41 145 41c11 0 50 -5 116 -5h298v-136h-18c-11 53 -23 76 -54 94c-20 12 -62 18 -115 18c-28 0 -36 -4 -36 -18v-166 c76 3 89 12 106 98h18v-229h-18c-10 81 -31 103 -106 107v-170c0 -26 9 -32 51 -32c53 0 90 9 120 34c25 20 40 39 61 85h20zM349 142v197c0 49 -2 67 -12 80c-10 15 -30 18 -56 18c-87 0 -131 -74 -131 -223c0 -61 10 -123 28 -150c21 -32 48 -45 96 -45c31 0 50 5 62 19 c11 13 13 38 13 104'], + 0x277: [477,2,696,42,653,'653 196c0 -105 -76 -198 -192 -198c-46 0 -90 21 -113 48c-24 -27 -69 -48 -115 -48c-116 0 -191 93 -191 198c0 172 152 281 307 281c147 0 304 -109 304 -281zM512 212c0 167 -80 241 -163 241c-85 0 -166 -74 -166 -241c0 -58 11 -168 64 -168c23 0 61 30 61 73 c0 53 -23 84 -23 135c0 38 7 75 63 75c55 0 63 -37 63 -75c0 -51 -24 -82 -24 -135c0 -43 34 -73 60 -73c61 0 65 110 65 168'], + 0x278: [685,231,713,45,667,'426 591v-156c103 -10 241 -77 241 -214c0 -128 -132 -215 -241 -222v-138c0 -57 15 -65 68 -68v-24h-277v24c54 4 70 16 70 71v135c-110 7 -242 94 -242 222c0 137 139 204 242 214v153c0 55 -16 69 -70 73v24h277v-24c-53 -3 -68 -13 -68 -70zM426 398v-360 c55 28 100 105 100 185c0 85 -45 154 -100 175zM287 39v359c-54 -22 -101 -89 -101 -175c0 -79 46 -156 101 -184'], + 0x279: [463,10,456,35,441,'441 2h-190v82c-47 -68 -85 -94 -135 -94c-47 0 -81 33 -81 79c0 40 26 68 63 68c26 0 43 -10 60 -38c11 -18 20 -23 28 -23c35 0 61 45 61 104v177c0 64 -11 78 -72 82v24h265v-24c-44 -8 -54 -19 -54 -60v-289c0 -47 12 -58 55 -64v-24'], + 0x27A: [676,10,456,35,441,'441 2h-190v82c-47 -68 -85 -94 -135 -94c-47 0 -81 33 -81 79c0 40 26 68 63 68c26 0 43 -10 60 -38c11 -18 20 -23 28 -23c35 0 61 45 61 104v407c0 37 -17 62 -52 65v24h191v-586c0 -47 12 -58 55 -64v-24'], + 0x27B: [463,233,506,35,564,'386 379v-496c0 -43 17 -85 48 -85c19 0 32 7 32 17c0 5 -3 12 -9 22c-10 15 -14 27 -14 37c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-69 0 -121 28 -150 76c-13 22 -27 51 -27 83v152c-49 -69 -86 -88 -131 -88c-47 0 -81 33 -81 79 c0 40 26 68 63 68c26 0 43 -10 60 -38c11 -18 20 -23 28 -23c35 0 61 45 61 104v177c0 64 -11 78 -72 82v24h265v-24c-44 -8 -54 -19 -54 -60'], + 0x27C: [473,233,426,10,416,'200 461v-82c47 68 85 94 135 94c47 0 81 -33 81 -79c0 -40 -26 -68 -63 -68c-26 0 -43 10 -60 38c-11 18 -20 23 -28 23c-35 0 -61 -45 -61 -104v-410c0 -64 11 -78 72 -82v-24h-265v24c44 8 54 19 54 60v522c0 47 -12 58 -55 64v24h190'], + 0x27D: [473,233,454,12,418,'202 461v-82c47 68 85 94 135 94c47 0 81 -33 81 -79c0 -40 -26 -68 -63 -68c-26 0 -43 10 -60 38c-11 18 -20 23 -28 23c-35 0 -61 -45 -61 -104v-406c0 -41 18 -79 48 -79c19 0 32 7 32 17c0 5 -3 12 -9 22c-10 15 -14 27 -14 37c0 30 26 54 59 54c37 0 62 -25 62 -61 c0 -59 -58 -100 -140 -100c-69 0 -121 28 -150 76c-13 22 -27 51 -27 83v447c0 47 -12 58 -55 64v24h190'], + 0x27E: [484,0,359,15,386,'69 84v178c0 75 8 132 40 171c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-34 0 -50 -22 -50 -73v-274c0 -64 11 -78 72 -82v-24h-265v24c44 8 54 19 54 60'], + 0x27F: [484,0,404,10,381,'381 0h-265v24c61 4 72 18 72 82v274c0 51 -16 73 -50 73c-18 0 -29 -7 -29 -19c0 -14 22 -22 22 -57c0 -31 -26 -57 -60 -57c-37 0 -61 27 -61 64c0 59 57 100 142 100c64 0 108 -18 135 -51c32 -39 40 -96 40 -171v-178c0 -41 10 -52 54 -60v-24'], + 0x280: [464,0,516,21,495,'495 0h-141l-142 215h-19v-134c0 -51 6 -57 60 -64v-17h-232v17c53 6 60 11 60 66v295c0 54 -10 66 -60 69v17h211c134 0 204 -39 204 -118c0 -31 -11 -62 -32 -81c-19 -17 -36 -29 -76 -39l137 -194c6 -9 18 -15 30 -15v-17zM193 410v-172c90 1 125 18 125 101 c0 73 -25 102 -89 102c-27 0 -36 -8 -36 -31'], + 0x281: [464,0,516,21,495,'495 464v-17c-12 0 -24 -6 -30 -15l-137 -194c40 -10 57 -22 76 -39c21 -19 32 -50 32 -81c0 -79 -70 -118 -204 -118h-211v17c50 3 60 15 60 69v295c0 55 -7 60 -60 66v17h232v-17c-54 -7 -60 -13 -60 -64v-134h19l142 215h141zM193 226v-172c0 -23 9 -31 36 -31 c64 0 89 29 89 102c0 83 -35 100 -125 101'], + 0x282: [473,218,389,25,361,'340 326h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -60 96 -88c100 -42 138 -85 138 -156c0 -90 -63 -152 -154 -152c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6c-9 0 -20 -6 -20 -27v-73c0 -57 24 -102 101 -102c36 0 37 13 37 17 c0 6 -3 12 -9 22c-10 15 -14 27 -14 37c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-73 0 -127 35 -127 120v250h28c21 -87 67 -132 137 -132c45 0 75 26 75 65c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15 c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145'], + 0x283: [683,233,458,-36,406,'121 -106v599c0 109 58 190 174 190c70 0 111 -30 111 -78c0 -34 -22 -61 -54 -61c-31 0 -53 22 -53 47c0 24 18 39 18 48c0 7 -11 14 -23 14c-38 0 -42 -82 -42 -137v-559c0 -109 -61 -190 -177 -190c-70 0 -111 30 -111 78c0 34 22 61 54 61c31 0 53 -22 53 -47 c0 -24 -18 -39 -18 -48c0 -7 11 -14 23 -14c44 0 45 63 45 97'], + 0x284: [683,233,373,-57,430,'121 46v436c0 64 7 115 36 150c27 33 67 51 131 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-32 0 -50 -15 -50 -58v-548h62v-46h-62v-28c0 -59 -8 -97 -27 -129c-28 -49 -73 -76 -142 -76 c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22c0 -10 13 -17 32 -17c34 0 48 23 48 76v126h-64v46h64'], + 0x285: [470,233,396,8,452,'295 280v-386c0 -34 1 -97 45 -97c12 0 23 7 23 14c0 9 -18 24 -18 48c0 25 22 47 53 47c32 0 54 -27 54 -61c0 -48 -41 -78 -111 -78c-116 0 -177 81 -177 190v397c0 35 -4 86 -44 86c-12 0 -23 -7 -23 -14c0 -9 18 -24 18 -48c0 -25 -22 -47 -53 -47 c-32 0 -54 27 -54 61c0 48 41 78 111 78c116 0 176 -81 176 -190'], + 0x286: [683,243,399,-16,449,'164 21v472c0 109 58 190 174 190c70 0 111 -30 111 -78c0 -34 -22 -61 -54 -61c-31 0 -53 22 -53 47c0 24 18 39 18 48c0 7 -10 14 -23 14c-33 0 -42 -64 -42 -130v-562c24 -27 46 -73 54 -104c9 -35 9 -62 9 -100h-34c0 60 -16 104 -36 139c-19 -73 -74 -129 -168 -129 c-91 0 -136 66 -136 125c0 83 71 133 140 133c9 0 27 -2 40 -4zM164 -106v86c-12 3 -35 5 -43 5c-62 0 -97 -45 -97 -95c0 -21 18 -83 90 -83c44 0 50 53 50 87'], + 0x287: [513,129,333,19,332,'332 84v-27c-72 -49 -109 -102 -167 -186h-25v169h-95v44h95v298c0 40 -11 60 -39 60c-21 0 -37 -15 -57 -53l-25 11c41 82 81 113 148 113c69 0 112 -40 112 -107v-322h53'], + 0x288: [630,233,339,19,389,'211 417v-540c0 -41 18 -79 48 -79c19 0 32 7 32 17c0 5 -3 12 -9 22c-10 15 -14 27 -14 37c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-69 0 -121 28 -150 76c-13 22 -27 51 -27 83v491h-53v27c72 49 109 102 167 186h25v-169h95v-44h-95'], + 0x289: [461,14,556,9,538,'538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v92h-56v46h56v103c0 46 -8 57 -49 65v24h188v-192h138v105c0 45 -11 59 -61 63v24h200v-192h57v-46h-57v-118c0 -44 13 -60 57 -62v-23zM342 98v125h-138v-96 c0 -56 20 -76 56 -76c29 0 51 13 82 47'], + 0x28A: [452,8,500,13,487,'487 428h-75c-10 0 -21 -17 -21 -33s8 -26 11 -29c15 -14 83 -87 83 -151c0 -131 -112 -223 -235 -223s-235 94 -235 219c0 72 69 143 80 154c7 7 16 20 16 31c0 16 -15 32 -25 32h-73v24h186c-31 -101 -43 -171 -43 -246c0 -56 13 -190 94 -190c87 0 94 136 94 191 c0 75 -13 148 -43 245h186v-24'], + 0x28B: [465,10,534,23,511,'228 460v-334c0 -43 32 -86 75 -86c95 0 153 108 153 193c0 101 -46 131 -74 148c-24 15 -39 26 -39 48c0 23 22 36 49 36c95 0 119 -155 119 -210c0 -131 -79 -265 -231 -265c-101 0 -191 41 -191 146v235c0 11 -9 13 -21 13c-14 0 -32 -5 -45 -9v23 c70 21 104 32 197 67'], + 0x28C: [475,0,500,21,485,'485 0h-250v24l18 2c25 3 35 9 35 24c0 7 -1 11 -9 31l-79 203l-72 -182c-8 -19 -11 -33 -11 -45c0 -24 12 -31 55 -33v-24h-151v24c31 3 39 9 58 55l160 396h26l120 -296c20 -49 57 -129 66 -141c6 -8 12 -11 34 -14v-24'], + 0x28D: [475,0,722,23,707,'707 0h-222v24c28 4 38 11 38 28c0 13 -12 44 -39 115l-45 118l-68 -171l20 -62c8 -24 18 -25 45 -28v-24h-234v24c38 3 48 8 48 24c0 10 -9 38 -27 106l-34 127l-70 -188c-6 -17 -9 -28 -9 -34c0 -23 11 -31 48 -35v-24h-135v24c26 5 37 16 50 50l155 401h23l102 -310 l125 310h24l148 -374c25 -62 31 -72 57 -77v-24'], + 0x28E: [666,0,500,16,482,'482 0h-249v24l16 1c25 2 36 10 36 25c0 4 -9 30 -20 58l-72 186l-68 -188c-9 -26 -11 -37 -11 -49c0 -24 11 -31 54 -33v-24h-152v24c31 4 44 12 60 55l148 398c35 94 56 133 77 156c21 22 50 33 84 33c57 0 97 -32 97 -79c0 -38 -24 -67 -62 -67c-34 0 -60 23 -60 52 c0 4 1 9 2 14c1 3 1 6 1 6c0 9 -8 17 -17 17c-24 0 -49 -32 -66 -82l-18 -53l119 -290c20 -50 58 -134 67 -146c6 -8 12 -11 34 -14v-24'], + 0x28F: [464,0,633,46,587,'587 464v-17c-27 -4 -42 -12 -53 -27l-151 -214v-122c0 -53 9 -62 72 -67v-17h-274v17c66 5 73 19 73 71v93l-142 225c-15 23 -39 39 -66 41v17h265v-17l-22 -2c-31 -3 -42 -4 -42 -20c0 -6 9 -24 19 -40l95 -159l86 122c21 29 33 56 33 70c0 20 -13 25 -67 29v17h174'], + 0x290: [461,218,531,21,577,'420 160l-20 -188c-3 -24 -7 -79 -7 -91c0 -38 23 -68 50 -68c36 0 36 13 36 17c0 6 -3 12 -9 22c-10 15 -14 27 -14 37c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -55 -100 -137 -100c-44 0 -83 31 -83 88c0 16 0 57 10 130h-346v25l234 404 c-142 0 -166 -15 -191 -110h-26l7 142h371v-26l-231 -403h29c81 0 114 13 147 59c14 21 22 37 31 69h28'], + 0x291: [461,150,538,21,517,'185 32h93c55 103 98 148 154 148c54 0 85 -26 85 -75c0 -61 -52 -105 -141 -105h-73c-29 -51 -54 -93 -82 -150h-43c28 54 58 108 84 150h-241v25l234 404c-142 0 -166 -15 -191 -110h-26l7 142h371v-26zM320 32h51c18 0 48 4 54 6c55 20 60 45 60 68 c0 31 -29 42 -53 42c-39 0 -86 -63 -112 -116'], + 0x292: [450,236,440,8,430,'414 423l-194 -197c11 3 37 6 53 6c73 0 157 -77 157 -206c0 -130 -69 -207 -108 -233c-24 -15 -60 -29 -113 -29c-49 0 -111 13 -141 33c-37 25 -47 47 -47 71s16 50 59 50c37 0 60 -22 67 -67c5 -30 36 -50 69 -50c75 0 87 120 87 207c0 73 -18 160 -84 160 c-21 0 -64 -2 -109 -47l-27 24l228 232h-204c-23 0 -66 -30 -73 -83h-26l34 156h372v-27'], + 0x293: [450,307,440,8,430,'414 423l-194 -197c11 3 37 6 53 6c57 0 157 -55 157 -218c0 -67 -43 -200 -151 -236l43 -85h-49l-38 75c-26 -3 -44 -4 -74 -4c-111 0 -143 69 -143 105c0 45 34 83 99 83c46 0 83 -11 141 -132c28 25 45 81 45 186c0 63 -13 162 -84 162c-21 0 -64 -2 -109 -47l-27 24 l228 232h-204c-23 0 -66 -30 -73 -83h-26l34 156h372v-27zM219 -196c-26 52 -59 111 -87 111c-19 0 -27 -15 -27 -41c0 -48 44 -73 94 -73c4 0 16 2 20 3'], + 0x294: [683,0,417,55,426,'145 378h32c58 0 120 45 120 126c0 49 -11 150 -64 150c-37 0 -45 -32 -54 -65c-8 -30 -26 -60 -71 -60c-37 0 -53 29 -53 48c0 34 23 61 55 79c31 17 68 27 102 27c124 0 214 -74 214 -193c0 -94 -62 -198 -174 -209v-197c0 -42 37 -57 70 -60v-24h-240v24 c33 1 63 17 63 63v291'], + 0x295: [683,0,417,55,426,'229 84v197c-112 11 -174 115 -174 209c0 119 90 193 214 193c34 0 71 -10 102 -27c32 -18 55 -45 55 -79c0 -19 -16 -48 -53 -48c-45 0 -63 30 -71 60c-9 33 -17 65 -54 65c-53 0 -64 -101 -64 -150c0 -81 62 -126 120 -126h32v-291c0 -46 30 -62 63 -63v-24h-240v24 c33 3 70 18 70 60'], + 0x296: [669,14,417,55,426,'252 585v-197c112 -11 174 -115 174 -209c0 -119 -90 -193 -214 -193c-34 0 -71 10 -102 27c-32 18 -55 45 -55 79c0 19 16 48 53 48c45 0 63 -30 71 -60c9 -33 17 -65 54 -65c53 0 64 101 64 150c0 81 -62 126 -120 126h-32v291c0 46 -30 62 -63 63v24h240v-24 c-33 -3 -70 -18 -70 -60'], + 0x297: [473,232,479,72,447,'447 -38v-40c0 -83 -72 -154 -183 -154c-95 0 -192 65 -192 155v391c0 104 121 159 210 159c72 0 164 -46 165 -118c0 -24 -17 -63 -64 -63c-29 0 -56 17 -56 41c0 31 12 31 12 56c0 35 -18 46 -51 46c-52 0 -84 -42 -84 -93v-411c0 -59 36 -113 88 -113 c62 0 112 54 112 118v26h43'], + 0x298: [680,17,723,13,708,'438 328c0 -44 -33 -78 -77 -78c-45 0 -81 34 -81 78c0 45 34 80 80 80c43 0 78 -35 78 -80zM708 330c0 -192 -143 -347 -345 -347c-181 0 -350 137 -350 348c0 208 158 349 352 349c198 0 343 -153 343 -350zM580 333c0 177 -73 308 -221 308 c-130 0 -218 -105 -218 -308c0 -176 66 -307 221 -307c127 0 218 129 218 307'], + 0x299: [464,0,456,15,441,'15 464h225c113 0 176 -39 176 -110c0 -52 -29 -87 -112 -104c78 -10 137 -56 137 -121c0 -73 -67 -129 -193 -129h-233v17c52 6 62 15 62 54v320c0 41 -13 52 -62 56v17zM190 406v-149c89 0 110 25 110 92c0 61 -21 92 -70 92c-27 0 -40 -8 -40 -35zM190 234v-167 c0 -33 14 -44 45 -44c55 0 84 37 84 106c0 70 -35 105 -110 105h-19'], + 0x29A: [475,14,465,11,455,'455 233c0 -209 -158 -247 -231 -247c-113 0 -213 40 -213 137c0 59 50 109 118 127c-57 26 -91 52 -91 108c0 93 92 117 197 117c116 0 220 -94 220 -242zM280 227h-53c-48 0 -76 -38 -76 -98c0 -57 37 -94 90 -94c75 0 144 81 144 207c0 113 -76 196 -159 196 c-52 0 -68 -26 -68 -88c0 -43 41 -71 70 -80c24 -7 26 -5 52 -6v-37'], + 0x29B: [537,11,600,29,595,'487 110v-79c-47 -25 -125 -42 -199 -42c-148 0 -259 90 -259 232c0 134 109 240 252 240c41 0 80 -8 125 -30c3 31 11 56 26 73c17 21 46 33 69 33c56 0 94 -26 94 -65c0 -24 -17 -41 -41 -41c-21 0 -38 16 -38 36c0 23 13 29 13 37s-7 13 -19 13c-20 0 -32 -11 -32 -40 v-174h-18c-24 51 -37 72 -68 99c-30 26 -65 36 -101 36c-84 0 -134 -74 -134 -212c0 -68 12 -120 36 -157c25 -39 56 -59 112 -59c52 0 69 24 69 57v58c0 34 -11 47 -75 51v16h251v-16c-55 -7 -63 -26 -63 -66'], + 0x29C: [464,0,582,21,561,'561 0h-248v17c53 6 65 15 65 50v157h-177v-157c0 -36 13 -44 66 -50v-17h-246v17c51 6 62 14 62 50v329c0 38 -13 47 -62 51v17h246v-17c-51 -4 -66 -13 -66 -51v-140h177v140c0 38 -14 47 -65 51v17h248v-17c-50 -4 -65 -14 -65 -51v-329c0 -36 12 -44 65 -50v-17'], + 0x29D: [691,233,394,-60,414,'282 613c0 -44 -34 -77 -79 -77c-44 0 -76 33 -76 77s34 78 78 78c42 0 77 -36 77 -78zM414 -233h-48c-31 39 -70 79 -103 112c-38 -86 -101 -112 -182 -112c-82 0 -141 45 -141 118c0 76 67 119 129 119c20 0 46 -3 71 -9v383c0 43 -12 55 -63 59v24h202v-447 c0 -30 -1 -62 -5 -83c56 -45 98 -107 140 -164zM140 -95v40c-19 11 -56 19 -77 19c-36 0 -79 -26 -79 -75c0 -60 46 -82 89 -82c51 0 67 42 67 98'], + 0x29E: [461,215,556,22,543,'543 -215h-187v431l-128 -128c-11 -11 -21 -29 -21 -38c0 -13 9 -20 35 -23l24 -3v-24h-214v24c63 8 89 25 189 130l-194 268c-9 12 -14 15 -25 15v24h234v-24c-28 -1 -42 -7 -42 -19c0 -8 6 -20 24 -45l95 -134l23 24v114c0 47 -5 53 -52 60v24h239v-24 c-33 -3 -48 -21 -48 -60v-510c0 -38 14 -55 48 -58v-24'], + 0x29F: [464,0,470,17,440,'440 156l-27 -156h-396v17c47 6 55 14 55 50v328c0 39 -11 49 -55 52v17h238v-17c-57 -2 -65 -13 -65 -67v-313c0 -29 33 -44 76 -44c53 0 72 12 96 36c21 21 39 54 56 97h22'], + 0x2A0: [582,205,636,34,659,'342 -90v132c-35 -45 -75 -56 -123 -56c-103 0 -185 88 -185 233c0 140 87 254 222 254c35 0 61 -7 91 -26c6 34 17 62 35 84c27 33 71 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19 c-33 0 -50 -15 -50 -60v-614c0 -40 9 -49 55 -58v-24h-267v24c65 9 73 25 73 91zM342 98v256c0 55 -27 87 -67 87c-56 0 -95 -63 -95 -205c0 -136 39 -196 93 -196c34 0 69 20 69 58'], + 0x2A1: [683,0,500,55,426,'145 378h32c58 0 120 45 120 126c0 49 -11 150 -64 150c-37 0 -45 -32 -54 -65c-8 -30 -26 -60 -71 -60c-37 0 -53 29 -53 48c0 34 23 61 55 79c31 17 68 27 102 27c124 0 214 -74 214 -193c0 -94 -62 -198 -174 -209v-73h65v-46h-65v-78c0 -42 37 -57 70 -60v-24h-240 v24c33 1 63 17 63 63v75h-66v46h66v170'], + 0x2A2: [683,0,500,55,426,'229 208v73c-112 11 -174 115 -174 209c0 119 90 193 214 193c34 0 71 -10 102 -27c32 -18 55 -45 55 -79c0 -19 -16 -48 -53 -48c-45 0 -63 30 -71 60c-9 33 -17 65 -54 65c-53 0 -64 -101 -64 -150c0 -81 62 -126 120 -126h32v-170h66v-46h-66v-75c0 -46 30 -62 63 -63 v-24h-240v24c33 3 70 18 70 60v78h-65v46h65'], + 0x2A3: [676,14,868,25,843,'843 146l-16 -160h-488v66c-47 -50 -80 -66 -133 -66c-105 0 -181 98 -181 235c0 145 82 252 192 252c46 0 76 -16 119 -62v183c0 46 -9 53 -76 58v24h215v-229h364v-26l-231 -403h29c81 0 114 13 147 59c14 21 22 37 31 69h28zM479 71l199 344 c-142 0 -166 -15 -191 -110h-12v-204c0 -13 1 -22 4 -30zM336 112v243c-15 38 -45 62 -78 62c-58 0 -85 -59 -85 -188c0 -127 25 -187 78 -187c23 0 46 12 66 37c10 13 19 28 19 33'], + 0x2A4: [676,236,810,25,794,'778 423l-194 -197c11 3 37 6 53 6c73 0 157 -77 157 -206c0 -130 -69 -207 -108 -233c-24 -15 -60 -29 -113 -29c-49 0 -111 13 -141 33c-37 25 -47 47 -47 71s16 50 59 50c37 0 60 -22 67 -67c5 -30 36 -50 69 -50c75 0 87 120 87 207c0 73 -18 160 -84 160 c-21 0 -64 -2 -108 -46c-74 -73 -91 -95 -121 -130l-15 1v59c-47 -50 -80 -66 -133 -66c-105 0 -181 98 -181 235c0 145 82 252 192 252c46 0 76 -16 119 -62v183c0 46 -9 53 -76 58v24h215v-226h303v-27zM675 377h-200v-204zM336 112v243c-15 38 -45 62 -78 62 c-58 0 -85 -59 -85 -188c0 -127 25 -187 78 -187c23 0 46 12 66 37c10 13 19 28 19 33'], + 0x2A5: [676,164,960,25,933,'601 18h93c55 103 98 148 154 148c54 0 85 -26 85 -75c0 -61 -52 -105 -141 -105h-73c-29 -51 -54 -93 -82 -150h-43c28 54 58 108 84 150h-339v66c-47 -50 -80 -66 -133 -66c-105 0 -181 98 -181 235c0 145 82 252 192 252c46 0 76 -16 119 -62v183c0 46 -9 53 -76 58 v24h215v-229h357v-26zM736 18h51c18 0 48 4 54 6c55 20 60 45 60 68c0 31 -29 42 -53 42c-39 0 -86 -63 -112 -116zM476 79l195 336c-142 0 -166 -15 -191 -110h-5v-204c0 -9 0 -16 1 -22zM336 112v243c-15 38 -45 62 -78 62c-58 0 -85 -59 -85 -188c0 -127 25 -187 78 -187 c23 0 46 12 66 37c10 13 19 28 19 33'], + 0x2A6: [630,12,626,19,598,'577 326h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -60 96 -88c100 -42 138 -85 138 -156c0 -90 -63 -150 -154 -150c-55 0 -118 9 -155 46c-29 -33 -61 -46 -105 -46c-69 0 -112 40 -112 107v322h-53v27c72 49 109 102 167 186h25 v-169h144c20 8 42 12 66 12c23 0 46 -4 78 -15c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145zM307 112l25 -11c-4 -8 -8 -16 -12 -23c25 -39 61 -56 107 -56c45 0 75 24 75 63c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 35 11 65 31 90h-84v-298c0 -40 11 -60 39 -60 c21 0 37 15 57 53'], + 0x2A7: [683,233,540,19,626,'341 461v32c0 109 58 190 174 190c70 0 111 -30 111 -78c0 -34 -22 -61 -54 -61c-31 0 -53 22 -53 47c0 24 18 39 18 48c0 7 -11 14 -23 14c-38 0 -42 -82 -42 -137v-559c0 -109 -61 -190 -177 -190c-70 0 -111 30 -111 78c0 34 22 61 54 61c31 0 53 -22 53 -47 c0 -24 -18 -39 -18 -48c0 -7 11 -14 23 -14c44 0 45 63 45 97v162c-65 -43 -104 -68 -157 -68c-69 0 -112 40 -112 107v322h-53v27c72 49 109 102 167 186h25v-169h130zM341 110v307h-130v-298c0 -40 11 -60 39 -60c20 0 53 23 91 51'], + 0x2A8: [630,12,700,19,690,'211 417v-292c0 -40 5 -66 41 -66c11 0 47 3 74 12c-37 42 -51 101 -51 160c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169c0 -77 15 -126 33 -159c71 41 111 53 144 53 c59 0 97 -34 97 -83c0 -48 -35 -105 -131 -105c-25 0 -85 0 -127 14c-28 10 -56 23 -75 35c-31 -16 -99 -49 -173 -49c-69 0 -112 40 -112 107v322h-53v27c72 49 109 102 167 186h25v-169h95v-44h-95zM646 93c0 31 -29 43 -53 43c-33 0 -76 -20 -120 -49 c14 -19 68 -55 105 -55c58 0 68 34 68 61'], + 0x1D00: [475,0,515,9,503,'9 0v24c31 3 38 9 58 55l175 396h26l135 -296c22 -49 57 -129 66 -141c6 -8 12 -11 34 -14v-24h-250v24l18 2c25 3 35 9 35 24c0 7 0 11 -9 31l-21 46h-148l-12 -26c-9 -19 -11 -32 -11 -44c0 -24 12 -31 55 -33v-24h-151zM202 292l-57 -128h114'], + 0x1D07: [461,0,531,20,511,'472 461v-136h-24c-18 91 -52 99 -186 99c-40 0 -53 -10 -53 -32v-137c87 0 114 16 124 95h24v-231h-24c-9 81 -34 99 -124 99v-120c0 -41 12 -61 48 -61h68c38 0 65 2 93 21c28 20 42 40 67 84h26l-33 -142h-456v24c39 8 48 20 48 64v286c0 45 -6 54 -50 63v24h452'], + 0x1D1C: [461,19,600,16,584,'584 461v-24c-41 -9 -51 -18 -51 -51v-218c0 -69 -24 -122 -67 -149c-38 -24 -100 -38 -163 -38c-65 0 -122 12 -164 37c-50 31 -70 68 -70 136v223c0 40 -19 55 -53 60v24h239v-24c-46 -10 -47 -20 -47 -63v-210c0 -97 45 -140 130 -140c104 0 154 51 154 153v207 c0 41 -15 48 -50 53v24h142'], + 0x207F: [700,-275,491,15,478,'478 275h-206v20c23 4 34 20 34 49v216c0 56 -11 74 -39 74c-14 0 -33 -8 -48 -21s-27 -30 -27 -48v-221c0 -26 4 -44 36 -49v-20h-213v20c42 9 50 21 50 51v273c0 31 -9 42 -50 49v20h176v-64h1c22 49 70 76 118 76c77 0 123 -55 123 -130v-226c0 -34 10 -46 45 -49v-20 '], + 0x20A3: [676,0,611,11,583,'443 352h-177v-78h177v-40h-177v-133c0 -57 18 -72 110 -76v-25h-360v25c74 8 88 22 88 78v131h-93v40h93v78h-93v40h93v183c0 58 -19 72 -88 76v25h567v-202h-24c-14 76 -25 99 -60 129c-31 27 -75 39 -163 39c-51 0 -70 -14 -70 -51v-199h177v-40'], + 0x20A4: [684,16,500,21,477,'406 373h-136c6 -54 6 -74 6 -78h130v-40h-129c-1 -43 -5 -77 -20 -121c44 -16 69 -22 96 -22c63 0 86 16 101 71h23c-7 -79 -17 -118 -38 -149s-53 -50 -93 -50c-43 0 -70 16 -125 65c-33 -43 -67 -62 -112 -62c-56 0 -88 31 -88 85c0 60 37 92 106 92c18 0 31 -2 51 -7 c-2 27 -4 53 -19 98h-123v40h106c-2 4 -7 15 -23 78h-83v40h74c-4 28 -5 56 -5 78c0 63 31 125 79 159c32 22 75 34 124 34c93 0 151 -43 151 -113c0 -45 -26 -72 -68 -72c-38 0 -62 27 -62 65c0 16 2 28 2 47c1 28 -16 43 -44 43c-33 0 -56 -25 -56 -62 c0 -19 12 -104 28 -179h147v-40zM181 86c-27 24 -46 32 -72 32c-35 0 -56 -20 -56 -52c0 -30 22 -49 56 -49c37 0 58 20 72 69'], + 0x20A7: [676,14,1369,16,1341,'262 303v-192c0 -67 8 -76 87 -86v-25h-333v25c19 2 34 4 45 9c33 13 39 41 39 92v427c0 78 -14 92 -84 98v25h315c167 0 269 -59 269 -181c0 -80 -46 -141 -129 -172c-43 -16 -77 -19 -209 -20zM262 606v-268c125 1 166 35 166 146s-33 157 -116 157 c-33 0 -50 -12 -50 -35zM1320 326h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -60 96 -88c100 -42 138 -85 138 -156c0 -90 -63 -152 -154 -152c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6c-9 0 -15 -7 -26 -28h-25v165h28 c21 -87 67 -132 137 -132c45 0 75 26 75 65c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145zM926 461v-44h-95v-298c0 -40 11 -60 39 -60c21 0 37 15 57 53l25 -11 c-41 -82 -81 -113 -148 -113c-69 0 -112 40 -112 107v322h-53v27c72 49 109 102 167 186h25v-169h95'], + 0x20AC: [672,12,500,29,478,'424 369h-245c-1 -13 -1 -66 -1 -78h237l-9 -40h-225c0 -84 28 -223 119 -223c78 0 121 49 158 108l20 -10c-44 -83 -99 -138 -195 -138c-140 0 -200 137 -210 263h-44l9 40h30c0 18 0 67 1 78h-40l10 40h37c17 131 99 263 236 263c56 0 104 -19 149 -50v-141h-21 c-22 89 -69 161 -122 161c-91 0 -131 -153 -136 -233h251'], + 0x2153: [688,12,750,-7,763,'573 688h56l-439 -700h-58zM238 295v-20h-243v20c64 0 77 10 77 60v221c0 28 -7 41 -23 41c-10 0 -25 -3 -43 -10l-13 -5v21l164 65h11v-337c0 -46 11 -55 70 -56zM502 315l-20 7c35 61 84 91 149 91c67 0 106 -30 106 -81c0 -35 -13 -54 -50 -74v-4 c50 -20 76 -56 76 -105c0 -87 -86 -156 -194 -156c-61 0 -100 21 -100 54c0 19 12 41 40 41s37 -8 67 -33c22 -19 33 -26 49 -26c38 0 63 26 63 65c0 58 -34 90 -130 121v10c61 18 84 39 84 79c0 37 -25 61 -65 61c-31 0 -50 -13 -75 -50'], + 0x2154: [688,12,750,28,763,'613 688h56l-439 -700h-58zM502 315l-20 7c35 61 84 91 149 91c67 0 106 -30 106 -81c0 -35 -13 -54 -50 -74v-4c50 -20 76 -56 76 -105c0 -87 -86 -156 -194 -156c-61 0 -100 21 -100 54c0 19 12 41 40 41s37 -8 67 -33c22 -19 33 -26 49 -26c38 0 63 26 63 65 c0 58 -34 90 -130 121v10c61 18 84 39 84 79c0 37 -25 61 -65 61c-31 0 -50 -13 -75 -50zM328 402l-30 -127h-270v14c150 149 184 197 184 255c0 42 -33 76 -75 76c-34 0 -55 -15 -76 -54h-24c34 84 79 122 144 122c70 0 119 -46 119 -111c0 -44 -20 -79 -74 -130l-93 -87 v-5h86c66 0 74 4 93 47h16'], + 0x2155: [688,12,750,-7,775,'573 688h56l-439 -700h-58zM238 295v-20h-243v20c64 0 77 10 77 60v221c0 28 -7 41 -23 41c-10 0 -25 -3 -43 -10l-13 -5v21l164 65h11v-337c0 -46 11 -55 70 -56zM548 320l-12 -35c55 -3 74 -5 101 -12c76 -18 122 -67 122 -131c0 -90 -83 -149 -199 -149 c-63 0 -104 27 -104 59c0 24 18 43 43 43c18 0 40 -7 71 -29c23 -16 45 -23 63 -23c40 0 71 22 71 54c0 33 -35 66 -100 82c-30 7 -64 9 -130 12l72 215h229l-34 -86h-193'], + 0x2156: [688,12,750,28,775,'613 688h56l-439 -700h-58zM328 402l-30 -127h-270v14c150 149 184 197 184 255c0 42 -33 76 -75 76c-34 0 -55 -15 -76 -54h-24c34 84 79 122 144 122c70 0 119 -46 119 -111c0 -44 -20 -79 -74 -130l-93 -87v-5h86c66 0 74 4 93 47h16zM548 320l-12 -35 c55 -3 74 -5 101 -12c76 -18 122 -67 122 -131c0 -90 -83 -149 -199 -149c-63 0 -104 27 -104 59c0 24 18 43 43 43c18 0 40 -7 71 -29c23 -16 45 -23 63 -23c40 0 71 22 71 54c0 33 -35 66 -100 82c-30 7 -64 9 -130 12l72 215h229l-34 -86h-193'], + 0x2157: [688,12,750,23,775,'613 688h56l-439 -700h-58zM548 320l-12 -35c55 -3 74 -5 101 -12c76 -18 122 -67 122 -131c0 -90 -83 -149 -199 -149c-63 0 -104 27 -104 59c0 24 18 43 43 43c18 0 40 -7 71 -29c23 -16 45 -23 63 -23c40 0 71 22 71 54c0 33 -35 66 -100 82c-30 7 -64 9 -130 12 l72 215h229l-34 -86h-193zM56 590l-20 7c35 61 84 91 149 91c67 0 106 -30 106 -81c0 -35 -13 -54 -50 -74v-4c50 -20 76 -56 76 -105c0 -87 -86 -156 -194 -156c-61 0 -100 21 -100 54c0 19 12 41 40 41s37 -8 67 -33c22 -19 33 -26 49 -26c38 0 63 26 63 65 c0 58 -34 90 -130 121v10c61 18 84 39 84 79c0 37 -25 61 -65 61c-31 0 -50 -13 -75 -50'], + 0x2158: [688,12,750,22,775,'613 688h56l-439 -700h-58zM548 320l-12 -35c55 -3 74 -5 101 -12c76 -18 122 -67 122 -131c0 -90 -83 -149 -199 -149c-63 0 -104 27 -104 59c0 24 18 43 43 43c18 0 40 -7 71 -29c23 -16 45 -23 63 -23c40 0 71 22 71 54c0 33 -35 66 -100 82c-30 7 -64 9 -130 12 l72 215h229l-34 -86h-193zM277 428h41v-66h-41v-87h-93v87h-162v67c43 63 73 105 164 213l39 46h52v-260zM184 428v175l-137 -175h137'], + 0x2159: [688,12,750,-7,758,'573 688h56l-439 -700h-58zM238 295v-20h-243v20c64 0 77 10 77 60v221c0 28 -7 41 -23 41c-10 0 -25 -3 -43 -10l-13 -5v21l164 65h11v-337c0 -46 11 -55 70 -56zM754 416v-28c-100 -18 -157 -62 -184 -137c21 8 36 9 56 9c81 0 132 -48 132 -122 c0 -86 -61 -145 -151 -145c-99 0 -164 68 -164 175c0 73 36 134 98 179c65 47 115 55 213 69zM588 221c-12 0 -22 -3 -26 -5c-5 -4 -9 -34 -9 -65c0 -53 8 -95 20 -114c5 -9 17 -14 35 -14c32 0 43 16 43 82c0 85 -16 116 -63 116'], + 0x215A: [688,12,750,49,758,'613 688h56l-439 -700h-58zM754 416v-28c-100 -18 -157 -62 -184 -137c21 8 36 9 56 9c81 0 132 -48 132 -122c0 -86 -61 -145 -151 -145c-99 0 -164 68 -164 175c0 73 36 134 98 179c65 47 115 55 213 69zM588 221c-12 0 -22 -3 -26 -5c-5 -4 -9 -34 -9 -65 c0 -53 8 -95 20 -114c5 -9 17 -14 35 -14c32 0 43 16 43 82c0 85 -16 116 -63 116zM141 602l-12 -35c55 -3 74 -5 101 -12c76 -18 122 -67 122 -131c0 -90 -83 -149 -199 -149c-63 0 -104 27 -104 59c0 24 18 43 43 43c18 0 40 -7 71 -29c23 -16 45 -23 63 -23 c40 0 71 22 71 54c0 33 -35 66 -100 82c-30 7 -64 9 -130 12l72 215h229l-34 -86h-193'], + 0x215B: [688,12,750,-7,775,'573 688h56l-439 -700h-58zM238 295v-20h-243v20c64 0 77 10 77 60v221c0 28 -7 41 -23 41c-10 0 -25 -3 -43 -10l-13 -5v21l164 65h11v-337c0 -46 11 -55 70 -56zM465 99c0 51 31 84 87 100c-57 31 -80 62 -80 106c0 66 60 108 156 108c88 0 137 -40 137 -91 c0 -38 -25 -67 -81 -84c68 -40 91 -73 91 -122c0 -73 -62 -123 -162 -123c-89 0 -148 40 -148 106zM614 26c38 0 64 19 64 55c0 39 -18 57 -94 99c-27 -32 -35 -56 -35 -78c0 -48 23 -76 65 -76zM621 383c-34 0 -59 -18 -59 -41c0 -28 32 -58 92 -84c22 25 28 36 28 61 c0 35 -23 64 -61 64'], + 0x215C: [688,12,750,23,775,'573 688h56l-439 -700h-58zM465 99c0 51 31 84 87 100c-57 31 -80 62 -80 106c0 66 60 108 156 108c88 0 137 -40 137 -91c0 -38 -25 -67 -81 -84c68 -40 91 -73 91 -122c0 -73 -62 -123 -162 -123c-89 0 -148 40 -148 106zM614 26c38 0 64 19 64 55c0 39 -18 57 -94 99 c-27 -32 -35 -56 -35 -78c0 -48 23 -76 65 -76zM621 383c-34 0 -59 -18 -59 -41c0 -28 32 -58 92 -84c22 25 28 36 28 61c0 35 -23 64 -61 64zM56 590l-20 7c35 61 84 91 149 91c67 0 106 -30 106 -81c0 -35 -13 -54 -50 -74v-4c50 -20 76 -56 76 -105 c0 -87 -86 -156 -194 -156c-61 0 -100 21 -100 54c0 19 12 41 40 41s37 -8 67 -33c22 -19 33 -26 49 -26c38 0 63 26 63 65c0 58 -34 90 -130 121v10c61 18 84 39 84 79c0 37 -25 61 -65 61c-31 0 -50 -13 -75 -50'], + 0x215D: [688,12,750,49,775,'591 688h56l-439 -700h-58zM465 99c0 51 31 84 87 100c-57 31 -80 62 -80 106c0 66 60 108 156 108c88 0 137 -40 137 -91c0 -38 -25 -67 -81 -84c68 -40 91 -73 91 -122c0 -73 -62 -123 -162 -123c-89 0 -148 40 -148 106zM614 26c38 0 64 19 64 55c0 39 -18 57 -94 99 c-27 -32 -35 -56 -35 -78c0 -48 23 -76 65 -76zM621 383c-34 0 -59 -18 -59 -41c0 -28 32 -58 92 -84c22 25 28 36 28 61c0 35 -23 64 -61 64zM141 602l-12 -35c55 -3 74 -5 101 -12c76 -18 122 -67 122 -131c0 -90 -83 -149 -199 -149c-63 0 -104 27 -104 59 c0 24 18 43 43 43c18 0 40 -7 71 -29c23 -16 45 -23 63 -23c40 0 71 22 71 54c0 33 -35 66 -100 82c-30 7 -64 9 -130 12l72 215h229l-34 -86h-193'], + 0x215E: [688,12,750,30,775,'573 688h56l-439 -700h-58zM465 99c0 51 31 84 87 100c-57 31 -80 62 -80 106c0 66 60 108 156 108c88 0 137 -40 137 -91c0 -38 -25 -67 -81 -84c68 -40 91 -73 91 -122c0 -73 -62 -123 -162 -123c-89 0 -148 40 -148 106zM614 26c38 0 64 19 64 55c0 39 -18 57 -94 99 c-27 -32 -35 -56 -35 -78c0 -48 23 -76 65 -76zM621 383c-34 0 -59 -18 -59 -41c0 -28 32 -58 92 -84c22 25 28 36 28 61c0 35 -23 64 -61 64zM362 688l-172 -412h-70l142 319h-129c-48 0 -63 -14 -77 -51h-26l36 144h296'], + 0x2460: [690,19,695,0,695,'469 141h-241v26c64 1 76 9 76 50v203c0 21 -7 31 -23 31c-8 0 -24 -2 -56 -13v27l165 59h10v-312c0 -36 10 -44 69 -45v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2461: [690,19,695,0,695,'496 265l-33 -125h-263v23c95 84 116 106 147 146c20 26 32 50 32 74c0 33 -24 61 -75 61c-32 0 -60 -15 -75 -48h-24c33 83 83 121 146 121c68 0 116 -40 116 -103c0 -44 -22 -82 -73 -121l-90 -70h70c62 0 88 4 98 42h24zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2462: [690,19,695,0,695,'235 416l-20 12c37 60 87 89 149 89c64 0 104 -37 104 -78c0 -24 -11 -50 -38 -66c39 -18 62 -54 62 -95c0 -80 -80 -144 -191 -144c-58 0 -96 23 -96 54c0 22 17 39 41 39c19 0 37 -9 61 -32c19 -17 35 -21 51 -21c38 0 62 24 62 58c0 22 -11 44 -31 59 c-21 16 -43 23 -97 39v22c60 15 80 36 80 62c0 33 -20 48 -60 48c-35 0 -53 -14 -77 -46zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2463: [690,19,695,0,695,'483 217h-40v-76h-96v76h-158v68l202 232h52v-231h40v-69zM347 286v141l-120 -141h120zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2464: [690,19,695,0,695,'496 516l-31 -80h-179l-11 -33c51 -3 68 -4 94 -10c70 -17 112 -62 112 -122c0 -83 -76 -137 -184 -137c-58 0 -96 24 -96 54c0 22 17 39 40 39c16 0 37 -5 66 -26c21 -15 41 -21 58 -21c36 0 66 20 66 50s-33 62 -93 75c-28 6 -59 8 -120 11l67 200h211zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2465: [690,19,695,0,695,'486 517v-26c-90 -16 -142 -56 -166 -123c19 6 32 8 50 8c74 0 120 -44 120 -111c0 -78 -55 -131 -137 -131c-90 0 -149 61 -149 158c0 143 149 219 282 225zM393 235c0 78 -14 105 -56 105c-25 0 -33 -16 -33 -64c0 -59 1 -114 50 -114c24 0 39 13 39 73zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2466: [690,19,695,0,695,'502 517l-161 -383h-65l132 296h-120c-44 0 -58 -13 -71 -47h-24l33 134h276zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2467: [690,19,695,0,695,'496 241c0 -67 -62 -107 -154 -107c-81 0 -135 36 -135 97c0 45 29 76 80 90c-52 29 -73 57 -73 98c0 59 55 98 143 98c79 0 124 -37 124 -83c0 -35 -22 -61 -74 -77c62 -37 89 -71 89 -116zM405 431c0 32 -21 58 -56 58c-30 0 -53 -16 -53 -37c0 -26 29 -53 84 -77 c20 23 25 33 25 56zM400 214c0 35 -15 52 -84 90c-24 -29 -33 -51 -33 -71c0 -44 22 -71 60 -71c35 0 57 19 57 52zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2468: [690,19,695,0,695,'208 134v26c88 15 140 55 167 124c-16 -7 -31 -9 -52 -9c-70 0 -118 44 -118 115c0 72 57 127 137 127c89 0 149 -63 149 -162c0 -142 -148 -215 -283 -221zM391 386c0 54 -3 102 -51 103c-29 1 -38 -14 -38 -70c0 -77 14 -108 54 -108c35 0 35 44 35 75zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24B6: [690,19,695,0,695,'548 141h-190v26c38 3 45 6 45 13c0 10 -5 26 -25 67h-131l-10 -23c-8 -18 -12 -33 -12 -41c0 -10 11 -14 45 -16v-26h-124v26c30 5 41 13 62 61l129 296h13l131 -284c29 -63 36 -73 67 -73v-26zM364 279l-52 117h-1l-51 -117h104zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24B7: [690,19,695,0,695,'169 517h189c94 0 148 -33 148 -93c0 -38 -18 -66 -66 -81c51 -13 86 -48 86 -95c0 -61 -56 -107 -162 -107h-195v26c43 5 52 11 52 36v251c0 26 -12 34 -52 37v26zM317 462v-107c73 0 92 18 92 66c0 43 -19 64 -59 64c-23 0 -33 -6 -33 -23zM317 323v-121 c0 -21 11 -29 37 -29c46 0 70 25 70 75c0 51 -29 75 -92 75h-15zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24B8: [690,19,695,0,695,'524 236l24 -17c-63 -67 -114 -85 -185 -85c-134 0 -212 80 -212 188c0 116 84 202 211 202c28 0 56 -6 94 -19c13 -5 19 -7 27 -7c14 0 20 5 29 24h19v-137h-22c-20 59 -71 107 -139 107c-65 0 -114 -56 -114 -158c0 -86 27 -162 125 -162c63 0 96 24 143 64zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24B9: [690,19,695,0,695,'146 517h186c136 0 216 -70 216 -184c0 -125 -98 -192 -218 -192h-184v26c35 1 50 12 50 33v261c0 20 -12 27 -50 30v26zM292 468v-267c0 -19 8 -28 35 -28c95 0 116 64 118 152c1 86 -27 160 -121 160c-23 0 -32 -6 -32 -17zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BA: [690,19,695,0,695,'527 265l-26 -124h-336v26c41 5 50 12 50 34v257c0 22 -11 30 -50 32v26h333v-121h-21c-6 72 -35 89 -129 89c-30 0 -37 -6 -37 -22v-114c64 0 86 18 92 80h21v-194h-21c-5 64 -29 82 -92 82v-120c0 -18 10 -23 47 -23c46 0 75 3 100 23c20 16 31 35 49 69h20zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BB: [690,19,695,0,695,'527 395h-21c-9 41 -18 53 -41 70c-17 13 -37 19 -94 19c-33 0 -44 -6 -44 -21v-115c64 0 89 20 98 80h21v-194h-21c-7 63 -36 82 -98 82v-115c0 -24 11 -32 70 -34v-26h-221v26c46 5 55 11 55 36v253c0 25 -12 32 -55 34v26h351v-121zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BC: [690,19,695,0,695,'548 310v-27c-42 -4 -48 -17 -48 -46v-69c-37 -21 -97 -34 -154 -34c-120 0 -205 75 -205 192c0 111 89 199 200 199c29 0 52 -6 85 -19c12 -5 17 -7 24 -7c12 0 18 5 26 24h17v-138h-19c-19 61 -54 108 -125 108c-60 0 -103 -57 -103 -163c0 -78 20 -165 114 -165 c39 0 53 20 53 43v42c0 23 -9 31 -57 33v27h192zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24BD: [690,19,695,0,695,'544 141h-181v26c36 5 43 11 43 33v116h-117v-116c0 -23 8 -28 43 -33v-26h-180v26c34 5 41 10 41 33v257c0 24 -9 31 -41 34v26h180v-26c-34 -3 -43 -9 -43 -34v-103h117v103c0 25 -9 31 -43 34v26h181v-26c-33 -3 -42 -10 -42 -34v-257c0 -23 7 -28 42 -33v-26z M695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BE: [690,19,695,0,695,'442 141h-190v26c37 4 46 10 46 37v253c0 24 -10 31 -46 34v26h190v-26c-37 -2 -48 -10 -48 -34v-253c0 -29 10 -34 48 -37v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BF: [690,19,695,0,695,'482 517v-26c-37 -3 -44 -11 -44 -41v-204c0 -76 -51 -112 -121 -112c-44 0 -95 11 -95 72c0 23 21 41 40 41s39 -13 39 -38c0 -19 -12 -22 -12 -31c0 -7 7 -14 21 -14c23 0 32 13 32 38v259c0 23 -10 28 -50 30v26h190zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C0: [690,19,695,0,695,'557 141h-181v26c35 1 38 2 38 5s0 7 -10 20l-99 123l-14 -14v-103c0 -20 8 -26 47 -31v-26h-190v26c40 4 47 10 47 35v253c0 28 -10 34 -47 36v26h190v-26c-40 -3 -47 -11 -47 -39v-112l115 115c14 14 21 22 21 26s-8 6 -26 8l-19 2v26h158v-26 c-56 -7 -75 -13 -172 -114l163 -200c5 -8 11 -9 26 -10v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24C1: [690,19,695,0,695,'527 278l-25 -137h-309v26c38 5 44 10 44 33v257c0 25 -9 32 -44 34v26h192v-26c-45 -2 -52 -8 -52 -47v-247c0 -18 10 -24 44 -24c44 0 64 12 84 31c20 18 34 41 47 74h19zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352 c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C2: [690,19,695,0,695,'566 141h-181v26c36 4 43 12 43 39v254l-114 -319h-9l-102 323v-247c0 -36 9 -47 48 -50v-26h-121v26c37 5 43 9 43 39v251c0 24 -7 31 -42 34v26h129l75 -255h1l89 255h141v-26c-35 -3 -42 -11 -42 -46v-230c0 -34 4 -44 42 -48v-26zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C3: [690,19,695,0,695,'533 516v-26c-34 -5 -40 -10 -40 -37v-319h-23l-233 293v-207c0 -35 9 -45 48 -50v-26h-122v26c37 5 44 11 44 38v249c-9 17 -22 33 -43 33v26h114l185 -231v155c0 37 -9 46 -47 50v26h117zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357 c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C4: [690,19,695,0,695,'552 328c0 -114 -88 -194 -206 -194c-117 0 -204 80 -204 193c0 117 90 197 208 197c114 0 202 -82 202 -196zM447 325c0 108 -36 167 -102 167c-62 0 -98 -59 -98 -167c0 -107 36 -159 100 -159c66 0 100 53 100 159zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C5: [690,19,695,0,695,'179 517h178c89 0 149 -36 149 -105c0 -86 -73 -110 -155 -110c-10 0 -21 1 -31 2v-97c0 -30 5 -36 46 -40v-26h-187v26c33 2 45 14 45 48v230c0 36 -8 43 -45 46v26zM320 473v-137c67 0 90 24 90 71c0 54 -19 78 -63 78c-18 0 -27 -4 -27 -12zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C6: [690,19,695,0,695,'485 111l6 -26c-40 -15 -61 -20 -91 -20c-34 0 -88 17 -118 78c-87 24 -140 93 -140 181c0 122 89 200 205 200c117 0 205 -78 205 -202c0 -96 -55 -159 -144 -181c9 -23 23 -35 47 -35c8 0 19 2 30 5zM447 327c0 110 -36 165 -101 165c-63 0 -99 -56 -99 -165 s35 -160 100 -160c67 0 100 52 100 160zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C7: [690,19,695,0,695,'535 141h-104l-117 169h-15v-100c0 -33 5 -37 45 -43v-26h-187v26c41 5 46 9 46 45v232c0 36 -7 44 -46 47v26h172c101 0 161 -33 161 -98c0 -55 -28 -85 -75 -101l98 -141c3 -6 12 -10 22 -10v-26zM299 467v-126c68 1 95 19 95 72c0 43 -19 72 -68 72 c-20 0 -27 -5 -27 -18zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C9: [690,19,695,0,695,'527 396h-21c-11 64 -36 88 -109 90v-276c0 -35 6 -40 57 -43v-26h-210v26c50 4 57 9 57 43v276c-74 -2 -100 -26 -110 -90h-21l4 121h349zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CA: [690,19,695,0,695,'533 517v-26c-33 -5 -40 -12 -40 -38v-165c0 -99 -55 -147 -145 -147c-87 0 -150 42 -150 134v172c0 37 -7 41 -43 44v26h188v-26c-41 -3 -49 -8 -49 -46v-166c0 -69 24 -100 75 -100c60 0 94 37 94 110v157c0 33 -12 42 -50 45v26h120zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CB: [690,19,695,0,695,'548 517v-26c-32 -4 -38 -8 -52 -39l-138 -311h-12l-151 317c-12 25 -18 29 -49 33v26h195v-26l-19 -1c-22 -1 -31 -5 -31 -13c0 -5 1 -10 13 -35l80 -171h2l74 168c10 22 12 29 12 35c0 11 -6 14 -48 17v26h124zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CC: [690,19,695,0,695,'566 517v-26c-16 -2 -27 -12 -33 -31l-93 -319h-10l-77 255l-86 -255h-10l-97 321c-6 21 -10 26 -30 29v26h132v-26c-24 -2 -29 -6 -29 -16c0 -2 3 -16 4 -21l52 -177l53 155l-14 44c-3 10 -14 14 -33 15v26h141v-26c-26 -2 -33 -6 -33 -13c0 -3 5 -20 7 -28l48 -170 l51 174c1 6 3 12 3 16c0 11 -8 18 -29 21v26h83zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24CD: [690,19,695,0,695,'527 141h-178v26c33 2 42 5 42 12c0 4 -4 12 -11 23l-53 87l-20 -26c-41 -53 -49 -71 -49 -80s11 -13 42 -16v-26h-130v26c28 3 38 10 52 28l90 117l-100 150c-14 22 -21 27 -42 29v26h181v-26c-35 -2 -41 -5 -41 -12c0 -3 1 -5 8 -16l48 -79l34 43c5 7 28 37 28 49 c0 9 -6 12 -37 15v26h130v-26c-41 -4 -50 -12 -95 -72l-44 -59l94 -149c25 -39 31 -43 51 -44v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CE: [690,19,695,0,695,'533 517v-26c-22 0 -34 -8 -40 -18l-98 -167v-93c0 -36 6 -42 47 -46v-26h-191v26c43 4 48 15 48 49v70l-93 175c-9 17 -25 29 -43 30v26h173v-26l-14 -1c-20 -1 -28 -3 -28 -10c0 -2 6 -16 13 -28l70 -119h4l53 90c16 27 20 43 20 52c0 10 -3 13 -38 16v26h117zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CF: [690,19,695,0,695,'527 284l-18 -143h-340v19l219 325h-39c-98 0 -116 -15 -141 -93h-22l16 125h306v-19l-216 -325h42c57 0 92 6 113 20c35 23 43 46 59 91h21zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D0: [690,19,695,0,695,'480 240l10 -18c-29 -26 -51 -37 -78 -37c-30 0 -34 11 -42 40c-39 -29 -64 -40 -101 -40c-43 0 -67 19 -67 64c0 24 12 50 42 66c26 15 51 26 125 42v30c0 31 -14 46 -52 46c-24 0 -39 -6 -39 -15c0 -6 20 -15 20 -35c0 -22 -13 -39 -39 -39c-27 0 -43 17 -43 43 c0 47 41 74 115 74c81 0 118 -28 118 -78v-142c0 -5 5 -8 11 -8c4 0 15 2 20 7zM369 256v70c-53 -12 -79 -32 -79 -60c0 -20 14 -29 34 -29c17 0 32 4 45 19zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355z M643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D1: [690,19,695,0,695,'305 517v-140c19 20 43 33 74 33c73 0 113 -55 113 -134c0 -86 -50 -143 -138 -143c-31 0 -49 9 -80 33l-36 -33h-13v333c0 16 -6 20 -36 26v25h116zM305 339v-139c0 -22 14 -37 41 -37c49 0 58 34 58 103c0 68 -11 102 -52 102c-23 0 -34 -13 -47 -29zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D2: [690,19,695,0,695,'461 263l19 -15c-42 -46 -77 -63 -128 -63c-82 0 -128 53 -128 134c0 85 56 142 143 142c51 0 100 -27 100 -65c0 -25 -14 -42 -41 -42c-22 0 -36 17 -36 47c0 21 -3 32 -31 32c-32 0 -55 -31 -55 -86c0 -70 34 -113 92 -113c28 0 42 7 65 29zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D3: [690,19,695,0,695,'503 178v-26c-81 -8 -87 -11 -117 -18v37c-31 -29 -53 -38 -87 -38c-69 0 -110 55 -110 134c0 84 45 143 117 143c29 0 49 -8 78 -35v92c0 19 -5 22 -49 25v25h129v-314c0 -18 8 -24 39 -25zM384 209v127c-8 18 -28 30 -51 30c-38 0 -56 -29 -56 -95c0 -64 17 -93 51 -93 c22 0 45 13 56 31zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D4: [690,19,695,0,695,'457 275l20 -13c-45 -60 -76 -77 -130 -77c-80 0 -123 57 -123 135c0 85 44 141 126 141s117 -51 119 -135h-162c5 -46 15 -89 78 -89c29 0 46 12 72 38zM304 358h88c-2 40 -3 75 -42 75c-30 0 -45 -20 -46 -75zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D5: [690,19,695,0,695,'232 402h37c0 81 29 122 109 122c55 0 88 -24 88 -60c0 -25 -11 -41 -35 -41c-23 0 -38 16 -38 37c0 19 14 23 14 30c0 3 -9 6 -20 6c-24 0 -38 -11 -38 -37v-57h56v-37h-56v-159c0 -30 8 -38 54 -39v-26h-171v26c30 2 37 8 37 27v171h-37v37zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D6: [690,19,695,0,695,'346 300h35c72 0 111 -29 111 -73c0 -56 -56 -93 -167 -93c-84 0 -124 19 -124 57c0 23 14 38 40 45c-23 11 -31 28 -31 44c0 32 19 52 58 65c-36 15 -61 43 -61 82c0 58 50 96 129 96c27 0 39 -3 68 -12h87v-43h-42c10 -12 15 -30 15 -47c0 -75 -65 -86 -139 -86 c-27 0 -43 -8 -43 -21c0 -10 10 -14 64 -14zM381 428c0 46 -13 66 -45 66c-31 0 -41 -18 -41 -67c0 -47 10 -63 41 -63c32 0 45 16 45 64zM387 220h-100c-22 0 -27 -16 -27 -24c0 -20 25 -33 83 -33c67 0 96 16 96 32c0 15 -9 25 -52 25zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D7: [690,19,695,0,695,'507 141h-142v26c21 2 30 10 30 27v120c0 34 -9 46 -34 46c-21 0 -44 -11 -57 -27v-139c0 -17 7 -24 32 -27v-26h-147v26c30 4 35 5 35 29v268c0 20 -5 22 -35 27v26h115v-151c34 33 63 44 96 44c54 0 75 -34 75 -81v-134c0 -20 9 -28 32 -28v-26zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D8: [690,19,695,0,695,'398 509c0 -28 -19 -48 -49 -48s-48 20 -48 48c0 29 18 49 49 49c28 0 48 -20 48 -49zM423 155h-149v26c32 7 36 10 36 30v164c0 19 -6 24 -37 30v26h117v-222c0 -19 9 -25 33 -28v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357 c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D9: [690,19,695,0,695,'438 539c0 -27 -19 -48 -48 -48s-49 21 -49 48c0 28 19 49 48 49c28 0 49 -22 49 -49zM429 461v-259c0 -78 -31 -122 -107 -122c-54 0 -93 26 -93 63c0 24 17 42 41 42c22 0 40 -16 40 -36s-16 -28 -16 -31c0 -4 9 -8 22 -8c22 0 33 11 33 37v262c0 17 -9 23 -44 26v26 h124zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DA: [690,19,695,0,695,'513 141h-148v26c18 0 27 2 27 4s-4 7 -15 20l-63 73l-15 -13v-58c0 -20 3 -22 34 -26v-26h-146v26c22 1 32 10 32 26v272c0 16 -10 25 -32 26v26h112v-231l78 63c8 7 20 16 20 21c0 7 -5 3 -39 7v26h136v-26c-43 -5 -61 -16 -121 -68l123 -136c5 -5 8 -6 17 -6v-26z M695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DB: [690,19,695,0,695,'421 141h-146v26c21 1 33 9 33 28v267c0 16 -12 28 -34 29v26h114v-322c0 -20 12 -28 33 -28v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DC: [690,19,695,0,695,'578 185h-136v26c21 1 27 8 27 25v129c0 30 -8 46 -31 46c-15 0 -34 -8 -49 -28v-147c0 -16 6 -23 26 -25v-26h-133v26c21 1 27 8 27 25v135c0 29 -9 40 -31 40c-14 0 -33 -8 -49 -30v-145c0 -15 5 -23 25 -25v-26h-137v26c26 4 32 10 32 27v161c0 21 -6 25 -32 29v26 h109v-41h4c22 33 46 48 81 48c36 0 57 -14 75 -51h1c32 37 52 51 84 51c47 0 78 -32 78 -86v-139c0 -18 6 -24 29 -25v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DD: [690,19,695,0,695,'497 185h-134v26c19 2 26 9 26 26v133c0 27 -9 41 -29 41c-19 0 -35 -12 -51 -28v-146c0 -16 6 -24 28 -26v-26h-139v26c27 5 31 10 31 27v163c0 18 -5 23 -31 27v26h110v-43h1c21 35 48 50 81 50c48 0 79 -33 79 -86v-138c0 -19 6 -25 28 -26v-26zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DE: [690,19,695,0,695,'492 322c0 -79 -61 -137 -146 -137c-82 0 -144 57 -144 137c0 84 61 139 147 139c83 0 143 -57 143 -139zM404 317c0 88 -18 116 -57 116c-40 0 -57 -28 -57 -116c0 -73 20 -104 57 -104c38 0 57 28 57 104zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DF: [690,19,695,0,695,'308 516v-40c24 35 48 47 78 47c57 0 113 -40 113 -129s-46 -148 -125 -148c-28 0 -45 13 -64 30v-59c0 -32 11 -48 50 -50v-26h-167v26c32 5 37 11 37 28v267c0 18 -7 24 -36 28v26h114zM310 431v-105c0 -21 26 -37 45 -37c37 0 56 26 56 97c0 62 -16 93 -50 93 c-22 0 -51 -19 -51 -48zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E0: [690,19,695,0,695,'501 141h-164v26c43 5 48 14 48 45v68c-25 -27 -47 -34 -71 -34c-68 0 -119 49 -119 132c0 81 49 146 138 146c23 0 50 -5 77 -32l46 32h9v-331c0 -16 6 -21 36 -26v-26zM385 314v139c0 26 -21 43 -42 43c-37 0 -60 -34 -60 -108c0 -70 25 -99 61 -99c22 0 41 9 41 25z M695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E1: [690,19,695,0,695,'334 454v-47c30 39 55 54 88 54c32 0 55 -20 55 -50c0 -27 -18 -41 -43 -41c-16 0 -23 0 -41 20c-7 7 -8 10 -14 10c-24 0 -42 -22 -42 -51v-99c0 -30 8 -37 49 -39v-26h-166v26c30 4 37 9 37 26v162c0 21 -9 25 -37 29v26h114zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E2: [690,19,695,0,695,'445 370h-22c-4 26 -10 34 -25 46c-14 10 -31 17 -50 17c-25 0 -43 -13 -43 -27c0 -15 17 -27 63 -42c66 -21 91 -47 91 -90c0 -52 -41 -89 -102 -89c-37 0 -71 16 -82 16c-9 0 -15 -5 -20 -16h-19v103h22c10 -48 40 -75 88 -75c30 0 50 15 50 32c0 14 -18 26 -64 42 c-67 23 -94 50 -94 89c0 49 44 85 104 85c29 0 53 -11 66 -11c10 0 15 4 18 11h19v-91zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E3: [690,19,695,0,695,'430 217l23 -12c-33 -55 -53 -71 -98 -71c-42 0 -71 21 -71 68v177h-37v28c52 29 69 61 105 110h12v-99h66v-39h-66v-163c0 -19 8 -28 27 -28c15 0 26 8 39 29zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352 c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E4: [690,19,695,0,695,'502 204l-118 -18v37c-37 -28 -53 -38 -89 -38c-56 0 -81 32 -81 87v134c0 20 -5 24 -32 29v26h112v-191c0 -26 9 -36 34 -36c20 0 36 8 55 25v148c0 20 -8 25 -41 28v26h121v-203c0 -20 9 -27 39 -28v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357 c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E5: [690,19,695,0,695,'502 461v-26c-23 -1 -27 -4 -38 -26l-109 -224h-14l-88 188c-16 33 -33 62 -60 62v26h166v-26c-10 0 -32 -2 -32 -10c0 -4 3 -13 9 -25l47 -97l48 99c4 9 7 17 7 22c0 8 -8 11 -36 11v26h100zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357 c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E6: [690,19,695,0,695,'578 461v-26c-20 -3 -27 -8 -35 -25l-106 -225h-11l-71 176h-1l-86 -176h-12l-100 208c-15 31 -21 39 -40 42v26h150v-26c-18 -2 -25 -4 -25 -8s3 -13 8 -24l48 -103h1l43 92l-11 26c-5 12 -11 16 -31 17v26h158v-26c-26 -2 -33 -4 -33 -10c0 -5 5 -20 8 -29l33 -94h1 l35 77c12 27 18 40 18 43c0 7 -7 10 -33 13v26h92zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24E7: [690,19,695,0,695,'511 186h-168v26c22 1 31 3 31 7c0 6 -13 20 -24 33l-28 34l-39 -43c-10 -12 -16 -17 -16 -24c0 -5 10 -6 34 -7v-26h-117v26c28 1 43 11 79 51l41 45l-83 104c-12 15 -19 20 -38 23v26h174v-26c-23 -1 -33 -2 -33 -5c0 -4 6 -11 12 -18l37 -42l44 42c6 6 8 14 8 16 c0 3 -6 4 -36 7v26h117v-26c-22 -3 -41 -12 -52 -24l-64 -65l94 -119c8 -10 14 -14 27 -15v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E8: [690,19,695,0,695,'504 517v-26c-22 -3 -32 -8 -41 -28l-97 -220c-32 -72 -48 -110 -109 -110c-39 0 -65 21 -65 51c0 26 16 44 41 44c23 0 40 -14 40 -33c0 -3 -2 -7 -2 -9c0 -4 3 -7 12 -7c25 0 32 16 55 68l-79 160c-20 41 -36 84 -67 84v26h167v-26c-29 -2 -35 -4 -35 -9s11 -24 14 -31 l48 -100l45 103c6 15 7 20 7 25c0 8 -7 11 -36 12v26h102zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24E9: [690,19,695,0,695,'487 291l-13 -105h-265v25l156 219c-88 0 -109 -11 -120 -63h-24l5 94h258v-26l-155 -218h14c59 0 76 7 96 31c10 11 17 25 24 43h24zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24EA: [690,19,695,0,695,'496 325c0 -115 -65 -191 -148 -191c-84 0 -149 76 -149 189c0 90 41 194 150 194c101 0 147 -101 147 -192zM391 263v124c0 74 -13 104 -45 104c-31 0 -42 -28 -42 -104v-124c0 -74 12 -103 44 -103s43 29 43 103zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Misc/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/BoldItalic/Main.js new file mode 100644 index 0000000..9001328 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/BoldItalic/Main.js @@ -0,0 +1,184 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Misc/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Misc-bold-italic'] = { + directory: 'Misc/BoldItalic', + family: 'STIXMathJax_Misc', + weight: 'bold', + style: 'italic', + id: 'STIXWEBMISCBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x250: [473,14,512,13,492,'50 395l-10 21c49 41 85 57 128 57c49 0 63 -18 63 -69c69 50 120 69 178 69c52 0 83 -21 83 -69c0 -63 -34 -112 -99 -149c-44 -25 -96 -43 -221 -76l-18 -68c-4 -17 -7 -31 -7 -43c0 -34 19 -50 63 -50c36 0 86 10 86 35c0 24 -30 34 -30 65c0 37 27 62 69 62 c40 0 64 -25 64 -71c0 -82 -108 -123 -221 -123c-105 0 -165 35 -165 100c0 10 2 22 5 34l70 261c1 5 2 9 2 13c0 10 -5 15 -15 15c-5 0 -9 -1 -25 -14zM221 362l-40 -148c92 26 159 71 159 148c0 27 -15 40 -38 40c-24 0 -51 -9 -81 -40'], + 0x251: [473,14,612,25,592,'592 473l-104 -388c-1 -6 -2 -10 -2 -14c0 -7 2 -11 10 -11c7 0 22 1 61 7v-19l-214 -56l14 53c-19 -13 -72 -59 -161 -59c-45 0 -171 16 -171 153c0 168 153 334 325 334c57 0 90 -25 109 -46l119 46h14zM374 109l62 231c3 10 4 19 4 27c0 50 -43 74 -78 74 c-81 0 -194 -134 -194 -277c0 -85 54 -120 110 -120c29 0 86 27 96 65'], + 0x252: [473,14,612,25,592,'274 467l-14 -53c19 13 72 59 161 59c45 0 171 -16 171 -153c0 -168 -152 -334 -325 -334c-57 0 -90 25 -109 46l-119 -46h-14l104 388c1 6 2 10 2 14c0 7 -2 11 -10 11c-7 0 -23 -2 -61 -7v18zM243 350l-62 -231c-3 -10 -4 -19 -4 -27c0 -50 43 -74 78 -74 c81 0 194 134 194 277c0 85 -54 120 -110 120c-29 0 -86 -27 -96 -65'], + 0x253: [691,13,500,-14,449,'6 129l103 358c48 167 102 204 198 204c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 11 -10 19 -28 19c-34 0 -55 -21 -70 -76l-59 -211c48 66 93 89 144 89c64 0 107 -58 107 -131c0 -179 -152 -344 -320 -344 c-66 0 -138 24 -138 61c0 6 10 45 20 81zM319 325c0 46 -12 69 -41 69c-33 0 -66 -29 -92 -84c-22 -48 -45 -124 -62 -182c-10 -34 -15 -73 -15 -81c0 -16 13 -27 31 -27c40 0 74 28 108 78c41 60 71 169 71 227'], + 0x254: [462,13,444,-5,392,'69 307l-28 18c38 52 70 96 115 119c23 12 50 18 83 18c91 0 153 -53 153 -151c0 -92 -43 -177 -105 -239c-51 -52 -113 -85 -180 -85c-60 0 -112 37 -112 90c0 42 25 71 62 71c34 0 58 -23 58 -53s-21 -36 -21 -58c0 -10 12 -17 24 -17c38 0 65 37 93 88 c33 61 53 134 53 201c0 58 -29 89 -73 89c-43 0 -74 -24 -122 -91'], + 0x255: [462,157,444,-5,406,'-1 -157l112 147c-72 14 -116 64 -116 148c0 92 43 177 105 239c51 52 113 85 180 85c60 0 112 -37 112 -90c0 -42 -25 -71 -62 -71c-34 0 -58 23 -58 53s21 36 21 58c0 10 -12 17 -24 17c-38 0 -65 -37 -93 -88c-33 -61 -53 -134 -53 -201c0 -44 17 -70 38 -81 c45 57 106 115 167 115c50 0 78 -34 78 -71c0 -67 -69 -121 -163 -121h-25c-22 0 -51 1 -63 3l-108 -142h-48zM361 99c0 23 -23 30 -44 30c-33 0 -73 -32 -120 -86c27 -14 51 -16 77 -16c59 0 87 39 87 72'], + 0x256: [699,233,500,-21,517,'517 699l-199 -725c-7 -24 -32 -102 -32 -120c0 -41 31 -56 62 -56c17 0 28 7 28 19c0 14 -22 22 -22 57c0 31 26 57 60 57c37 0 61 -27 61 -64c0 -60 -58 -100 -143 -100c-91 0 -135 34 -135 110c0 33 8 72 20 116c31 114 32 119 34 125c-52 -94 -105 -131 -166 -131 s-106 42 -106 125c0 99 58 212 131 282c43 42 93 68 138 68c29 0 53 -8 75 -33l18 64c25 88 29 113 29 122c0 18 -15 28 -41 28h-21v27c100 8 149 15 209 29zM308 371c0 28 -15 49 -37 49c-43 1 -85 -54 -114 -112c-33 -66 -54 -144 -54 -186c0 -36 16 -64 41 -64 c29 0 59 26 86 75c36 64 78 194 78 238'], + 0x257: [683,13,570,-21,653,'323 429l18 64c28 98 57 190 170 190c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 11 -10 19 -28 19c-9 0 -22 0 -34 -43l-129 -471c-10 -38 -14 -58 -14 -63c0 -6 5 -15 11 -15c15 0 40 26 68 71l22 -16 c-55 -88 -101 -126 -150 -126c-38 0 -60 23 -60 61c0 16 2 29 11 68c-52 -94 -105 -131 -166 -131s-106 42 -106 125c0 99 58 212 131 282c43 42 93 68 138 68c29 0 53 -8 75 -33zM308 371c0 28 -15 49 -37 49c-43 1 -85 -54 -114 -112c-33 -66 -54 -144 -54 -186 c0 -36 16 -64 41 -64c29 0 59 26 86 75c36 64 78 194 78 238'], + 0x258: [462,13,444,5,421,'5 126l37 17c10 -69 56 -92 99 -92c55 0 112 64 128 131c-110 26 -169 58 -169 136c0 83 83 144 167 144c98 0 154 -74 154 -172c0 -150 -125 -303 -266 -303c-77 0 -148 39 -150 139zM306 365c0 42 -13 64 -39 64c-48 0 -75 -80 -75 -115c0 -49 33 -86 86 -100 c19 64 28 115 28 151'], + 0x259: [462,13,444,5,398,'86 306l-29 17c56 100 118 139 195 139c87 0 146 -48 146 -147c0 -165 -143 -328 -288 -328c-65 0 -105 36 -105 87c0 43 29 88 69 122c43 36 91 54 188 71c4 20 6 33 6 49c0 54 -22 82 -64 82c-43 0 -72 -23 -118 -92zM255 235c-90 -20 -158 -93 -158 -176 c0 -23 7 -39 31 -39c48 0 91 76 127 215'], + 0x25A: [462,13,626,5,626,'626 279l-18 -27c-21 -32 -59 -57 -98 -57c-43 0 -65 19 -65 54c0 9 1 19 4 29l26 93l-78 -40c1 -5 1 -11 1 -16c0 -165 -143 -328 -288 -328c-65 0 -105 36 -105 87c0 93 73 132 107 149l156 80v16c0 47 -20 79 -64 79c-43 0 -72 -23 -118 -92l-29 17 c56 100 118 139 195 139c70 0 123 -32 140 -96l127 65l10 -12l-45 -142c-1 -5 -2 -18 -2 -22c0 -20 16 -23 37 -23c33 0 57 25 64 35l17 25zM261 262l-89 -46c-61 -32 -75 -114 -75 -157c0 -23 7 -39 31 -39c56 0 104 110 133 242'], + 0x25B: [475,14,444,5,482,'394 102l19 -18c-90 -90 -166 -98 -240 -98c-84 0 -168 31 -168 106c0 76 73 137 156 158c-41 21 -66 43 -66 80c0 112 119 145 221 145c21 0 53 -4 75 -11c47 -15 91 -51 91 -84c0 -24 -10 -50 -49 -50s-52 18 -72 70c-9 23 -23 38 -55 38c-46 0 -91 -38 -91 -105 c0 -40 43 -69 74 -69h17v-37h-53c-54 0 -108 -60 -108 -128c0 -40 27 -64 70 -64c61 0 113 9 179 67'], + 0x25C: [475,14,480,5,469,'198 264h24c64 0 127 58 127 127c0 32 -17 47 -53 47c-32 0 -46 -20 -51 -33c-21 -53 -32 -75 -73 -75c-32 0 -50 16 -50 51c0 32 47 71 97 85c22 6 48 9 78 9c82 0 172 -20 172 -90c0 -71 -54 -106 -124 -135c53 -15 88 -53 88 -100c0 -116 -144 -164 -242 -164 c-74 0 -146 8 -186 98l27 18c36 -58 82 -67 143 -67c66 0 123 61 123 132c0 37 -20 60 -57 60h-43v37'], + 0x25D: [475,14,689,5,689,'689 289l-18 -27c-21 -32 -59 -57 -98 -57c-43 0 -65 19 -65 54c0 9 1 19 4 29l26 93l-78 -40c-16 -42 -61 -69 -115 -91c53 -15 88 -53 88 -100c0 -116 -144 -164 -242 -164c-74 0 -146 8 -186 98l27 18c36 -58 82 -67 143 -67c66 0 123 61 123 132c0 37 -20 60 -57 60 h-43v37h24c64 0 127 58 127 127c0 32 -17 47 -53 47c-32 0 -46 -20 -51 -33c-21 -53 -32 -75 -73 -75c-32 0 -50 16 -50 51c0 32 47 71 97 85c22 6 48 9 78 9c60 0 172 -10 172 -92l113 58l10 -12l-45 -142c-1 -5 -2 -18 -2 -22c0 -20 16 -23 37 -23c33 0 57 25 64 35l17 25 '], + 0x25E: [475,14,486,7,475,'475 385c0 -69 -52 -106 -124 -135c53 -15 88 -53 88 -100c0 -109 -130 -164 -245 -164c-62 0 -187 27 -187 162c0 177 150 327 294 327c93 0 174 -23 174 -90zM204 264h24c64 0 127 58 127 127c0 30 -15 47 -52 47c-112 0 -222 -140 -222 -274c0 -80 41 -129 99 -129 c67 0 124 60 124 133c0 37 -21 59 -57 59h-43v37'], + 0x25F: [462,207,367,-100,364,'364 462v-24c-45 -1 -56 -44 -60 -62l-30 -122h51l-13 -46h-50l-49 -187c-38 -144 -96 -228 -208 -228c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15c28 0 49 36 74 136l63 248h-109l13 46h108l31 124 c3 10 4 19 4 27c0 20 -10 33 -44 33v24h217'], + 0x260: [683,245,720,-52,751,'258 -68l43 154c-44 -64 -90 -99 -155 -99c-44 0 -102 22 -102 135c0 136 136 340 270 340c31 0 59 -10 76 -33c31 98 62 171 97 203c36 33 70 51 123 51c84 0 141 -41 141 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19 c-36 0 -58 -19 -75 -80l-164 -588c-32 -116 -101 -229 -265 -229c-59 0 -89 12 -121 31c-27 16 -50 40 -50 80c0 35 25 60 62 60c33 0 59 -24 59 -54c0 -27 -23 -42 -23 -59c0 -22 22 -27 41 -27c78 0 150 72 171 146zM368 369c0 30 -12 50 -35 50 c-73 0 -164 -199 -164 -298c0 -62 25 -62 46 -62c22 0 59 30 88 87c31 61 65 169 65 223'], + 0x261: [472,245,549,-52,520,'520 472l-136 -488c-33 -117 -101 -229 -265 -229c-59 0 -89 12 -121 31c-27 16 -50 40 -50 80c0 35 25 60 62 60c33 0 59 -24 59 -54c0 -27 -23 -42 -23 -59c0 -22 22 -27 41 -27c78 0 150 72 171 146l43 154c-44 -64 -90 -99 -155 -99c-44 0 -102 22 -102 135 c0 136 136 340 270 340c39 0 64 -9 99 -45l91 55h16zM368 369c0 30 -12 50 -35 50c-73 0 -164 -199 -164 -298c0 -62 25 -62 46 -62c22 0 59 30 88 87c31 61 65 169 65 223'], + 0x262: [462,11,561,21,544,'544 460l-42 -157h-18c-12 51 -19 72 -42 100c-23 26 -55 37 -90 37c-110 0 -203 -165 -203 -313c0 -68 21 -116 102 -116c50 0 74 23 83 56l16 59c2 8 3 15 3 21c0 19 -15 27 -63 30v16h250v-16c-57 -6 -68 -26 -80 -68l-22 -78c-54 -26 -136 -42 -211 -42 c-125 0 -206 63 -206 169c0 162 162 304 326 304c39 0 68 -8 107 -24c13 -7 23 -9 30 -9c15 0 23 6 41 31h19'], + 0x263: [462,234,444,20,400,'236 188l11 -81c72 134 89 179 89 210c0 13 -7 19 -25 34c-22 18 -31 29 -31 54s21 57 58 57c33 0 62 -30 62 -64c0 -73 -62 -215 -144 -349l17 -122c3 -18 4 -50 4 -68c0 -61 -64 -93 -131 -93c-47 0 -73 21 -73 67c0 29 16 56 31 78l50 72c-5 50 -20 141 -54 303 c-13 59 -24 97 -40 113c-11 11 -15 12 -40 12v27c65 6 102 12 150 24c18 -47 49 -149 66 -274zM162 -69l-30 -47c-11 -17 -19 -36 -19 -55c0 -26 14 -30 26 -30c25 0 32 24 32 49c0 5 -2 31 -3 37'], + 0x264: [450,10,493,10,488,'240 263l102 116c23 26 63 71 90 71c34 0 56 -30 56 -62c0 -25 -7 -50 -16 -73h-10c-6 23 -20 42 -46 42c-28 0 -55 -27 -72 -47l-83 -94c13 -35 38 -90 38 -127c0 -71 -88 -99 -146 -99c-40 0 -76 18 -76 62c0 34 19 59 41 83l49 52l-48 117c-9 22 -21 53 -49 53 c-22 0 -36 -23 -41 -42h-10c-5 12 -9 24 -9 37c0 53 49 98 101 98c43 0 67 -37 82 -73zM208 65c0 20 -13 51 -21 70c-25 -25 -50 -45 -50 -84c0 -17 11 -28 28 -28c22 0 43 20 43 42'], + 0x265: [459,249,556,-13,498,'498 450l-152 -562c-6 -22 -10 -38 -10 -47c0 -23 13 -33 42 -33h22v-27c-81 -7 -132 -15 -209 -30l108 416c-99 -141 -145 -179 -213 -179c-49 0 -76 28 -76 75c0 9 1 27 7 46l81 254c3 8 3 9 3 12c0 11 -9 16 -17 16c-13 0 -32 -21 -75 -83l-22 15 c66 103 106 136 167 136c39 0 67 -24 67 -64c0 -24 -4 -36 -10 -55l-75 -229c-5 -15 -6 -24 -6 -30c0 -16 8 -21 20 -21c27 0 65 31 108 94c49 72 68 121 119 296h121'], + 0x266: [683,9,556,-13,498,'476 142l22 -15c-66 -103 -106 -136 -167 -136c-39 0 -67 24 -67 64c0 13 2 31 7 46l78 238c5 15 6 24 6 30c0 16 -8 21 -20 21c-27 0 -65 -31 -108 -94c-49 -72 -68 -121 -119 -296h-121l150 555c23 85 79 128 182 128c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64 c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-34 0 -56 -19 -69 -69l-78 -300c99 141 145 179 213 179c49 0 76 -28 76 -75c0 -15 -3 -32 -7 -46l-81 -254c-3 -8 -3 -9 -3 -12c0 -11 9 -16 17 -16c13 0 32 21 75 83'], + 0x267: [683,205,533,-13,475,'264 583l-78 -300c99 141 145 179 213 179c49 0 76 -28 76 -75c0 -15 -4 -35 -8 -49l-108 -338c-15 -46 -33 -97 -61 -129c-41 -49 -83 -76 -152 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -28 -23 -40 -23 -59c0 -11 15 -17 34 -17 c31 0 51 21 65 65l146 448c5 15 6 24 6 30c0 16 -8 21 -20 21c-27 0 -65 -31 -108 -94c-49 -72 -68 -121 -119 -296h-121l150 555c23 85 79 128 182 128c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19 c-34 0 -56 -19 -69 -69'], + 0x268: [684,9,278,-10,262,'262 616c0 -37 -30 -66 -68 -66s-66 30 -66 69c0 34 31 65 65 65c38 0 69 -31 69 -68zM216 142l22 -14c-66 -108 -108 -137 -168 -137c-41 0 -68 20 -68 63c0 14 5 40 15 76l25 93h-52l13 46h51l18 64c7 24 8 37 8 45c0 19 -16 29 -46 29h-14v27c78 6 149 16 203 28 l-53 -193h57l-13 -46h-56l-26 -95c-5 -17 -9 -42 -9 -51c0 -12 7 -16 15 -16c15 0 37 23 64 61'], + 0x269: [456,8,253,2,237,'225 95l12 -17c-29 -33 -64 -86 -142 -86c-63 0 -93 29 -93 79c0 17 5 33 12 59l56 207c5 20 7 32 7 40c0 7 -2 11 -6 11c-10 0 -25 -3 -47 -10l8 27c67 23 140 51 166 51c11 0 15 -6 15 -14c0 -4 -1 -10 -2 -14l-82 -300c-3 -11 -9 -41 -9 -48c0 -23 12 -30 22 -30 c13 0 43 6 83 45'], + 0x26A: [462,0,304,-32,321,'321 462v-17c-50 -2 -68 -13 -78 -52l-86 -320c-3 -11 -5 -20 -5 -27c0 -22 16 -27 55 -29v-17h-239v17c52 5 68 13 79 56l85 320c2 8 3 15 3 21c0 22 -15 29 -52 31v17h238'], + 0x26B: [699,9,320,9,368,'327 447h41c-22 -84 -57 -119 -117 -119c-10 0 -18 0 -26 2l-43 -154c-15 -54 -22 -86 -22 -100c0 -8 5 -15 15 -15c18 0 39 21 79 80l22 -14c-69 -105 -105 -136 -169 -136c-41 0 -68 27 -68 63c0 23 14 84 34 155l45 159c-7 2 -15 2 -21 2c-22 0 -35 -9 -48 -41h-40 c13 72 56 118 113 118c5 0 13 -1 19 -2l34 129c4 16 6 30 6 39c0 20 -15 30 -42 30c-5 0 -11 0 -22 -1v27c75 7 124 14 210 30l-80 -288c12 -4 21 -6 29 -6c23 0 36 10 51 42'], + 0x26C: [699,9,445,17,417,'412 384l5 -21s-63 -72 -159 -115l-20 -72c-15 -54 -22 -86 -22 -100c0 -8 5 -15 15 -15c18 0 39 21 79 80l22 -14c-69 -105 -105 -136 -169 -136c-41 0 -68 27 -68 63c0 23 14 84 34 155l6 21c-11 -1 -19 -1 -28 -1c-51 0 -90 26 -90 79c0 95 86 150 152 150 c8 0 27 -4 30 -5l29 105c4 16 9 46 9 55c0 20 -15 30 -42 30c-5 0 -11 0 -22 -1v27c75 7 124 14 210 30l-111 -399c59 20 116 65 140 84zM148 276l40 141c-5 2 -15 4 -25 4c-43 0 -86 -55 -86 -97c0 -24 15 -41 41 -47c5 -1 24 -1 30 -1'], + 0x26D: [699,233,291,-47,290,'290 699l-224 -809c-3 -11 -5 -22 -5 -33c0 -33 15 -59 39 -59c19 0 32 7 32 17c0 16 -23 33 -23 59c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-91 0 -137 48 -137 124c0 16 2 33 7 51l150 526c21 73 34 121 34 145c0 20 -15 30 -42 30 c-5 0 -11 0 -22 -1v27c75 7 124 14 210 30'], + 0x26E: [699,236,623,2,585,'585 423l-209 -191h17c59 0 112 -50 112 -137c0 -199 -170 -331 -301 -331c-55 0 -117 16 -143 35c-35 25 -44 45 -44 69s16 50 59 50c37 0 60 -22 67 -67c5 -31 38 -50 69 -50c92 0 166 200 166 292c0 42 -16 75 -56 75c-10 0 -22 -3 -43 -23l-102 -98 c-47 -45 -76 -56 -107 -56c-45 0 -68 31 -68 62c0 16 11 75 24 120l105 370c7 24 13 61 13 70c0 18 -14 30 -40 30c-8 0 -16 0 -24 -1v27c90 9 141 17 210 30l-69 -249h364v-27zM476 377h-211c-18 0 -72 -28 -84 -71l-48 -174c-5 -17 -10 -42 -10 -47c0 -10 3 -19 11 -19 c10 0 46 38 59 50'], + 0x26F: [462,9,778,-14,723,'723 453l-66 -232c-28 -97 -36 -135 -36 -150c0 -16 12 -25 38 -25h18v-27c-113 -9 -137 -12 -200 -27l63 199h-1c-48 -74 -77 -115 -104 -142c-32 -32 -74 -58 -114 -58c-42 0 -67 25 -67 67c0 28 6 53 26 105c-81 -132 -126 -172 -198 -172c-48 0 -77 30 -77 71 c0 16 1 38 9 61l72 214c6 19 8 27 8 39s-7 18 -16 18c-13 0 -35 -21 -58 -58c-4 -7 -8 -13 -12 -18l-22 13c52 97 99 131 161 131c43 0 68 -20 68 -66c0 -14 -3 -36 -11 -62l-72 -219c-4 -13 -6 -24 -6 -30c0 -11 10 -21 22 -21c30 0 71 41 113 116c36 63 43 81 101 273h120 l-65 -207c-32 -102 -42 -143 -42 -160c0 -16 7 -22 17 -22c15 0 41 21 63 47c57 68 94 153 147 342h121'], + 0x270: [462,233,778,-14,723,'723 453l-195 -686h-123l135 424h-1c-37 -57 -71 -108 -100 -138c-35 -36 -78 -62 -118 -62c-42 0 -67 25 -67 67c0 28 6 53 26 105c-81 -132 -126 -172 -198 -172c-48 0 -77 30 -77 71c0 16 1 38 9 61l72 214c6 19 8 27 8 39s-7 18 -16 18c-13 0 -35 -21 -58 -58 c-4 -7 -8 -13 -12 -18l-22 13c52 97 99 131 161 131c43 0 68 -20 68 -66c0 -14 -3 -36 -11 -62l-72 -219c-4 -13 -6 -24 -6 -30c0 -11 10 -21 22 -21c30 0 71 41 113 116c36 63 43 81 101 273h120l-65 -207c-32 -102 -42 -143 -42 -160c0 -16 7 -22 17 -22c15 0 41 21 63 47 c57 68 94 153 147 342h121'], + 0x271: [462,233,759,-14,704,'169 262h1c48 74 77 115 104 142c32 32 74 58 114 58c42 0 67 -25 67 -67c0 -28 -6 -53 -26 -105c81 132 126 172 198 172c48 0 77 -30 77 -71c0 -16 -4 -47 -9 -62l-140 -422c-6 -17 -20 -50 -32 -64c-40 -50 -95 -76 -164 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61 c33 0 59 -24 59 -55c0 -24 -23 -41 -23 -59c0 -10 15 -16 34 -16c31 0 56 21 70 65l156 475c4 13 6 24 6 30c0 11 -10 21 -22 21c-30 0 -71 -41 -113 -116c-36 -63 -43 -81 -101 -273h-120l65 207c32 102 42 143 42 160c0 16 -7 22 -17 22c-15 0 -41 -21 -63 -47 c-57 -68 -94 -153 -147 -342h-121l66 232c28 97 36 135 36 150c0 16 -12 25 -38 25h-18v27c113 9 137 12 200 27'], + 0x272: [462,233,694,-109,632,'610 135l22 -13c-55 -97 -100 -131 -160 -131c-43 0 -68 19 -68 60c0 26 10 77 26 125l55 165c3 10 6 25 6 28c0 17 -11 21 -24 21c-18 0 -49 -27 -69 -54c-43 -56 -87 -131 -125 -264l-46 -161c-28 -99 -81 -144 -196 -144c-82 0 -140 41 -140 100c0 36 25 61 62 61 c33 0 59 -24 59 -54c0 -26 -23 -43 -23 -59c0 -10 13 -17 32 -17c31 0 61 20 73 65l95 341c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 135 13 199 27l-62 -198h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -28 -116l-35 -104 c-19 -56 -24 -79 -24 -89s6 -17 14 -17c17 0 31 14 71 76'], + 0x273: [462,233,505,-6,486,'446 269l-127 -379c-5 -15 -7 -26 -7 -46c0 -26 23 -46 44 -46c19 0 32 7 32 17c0 15 -23 34 -23 59c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-91 0 -139 49 -139 127c0 12 7 46 15 70l124 377c3 10 7 25 7 28c0 17 -11 21 -24 21 c-18 0 -49 -27 -69 -54c-62 -81 -99 -162 -145 -336h-121l57 204c33 120 45 167 45 179c0 19 -13 23 -55 24v27c56 2 135 13 199 27l-62 -198h1c67 99 85 123 122 158c27 26 63 41 100 41c51 0 73 -28 73 -77c0 -24 -12 -69 -28 -116'], + 0x274: [462,12,588,-27,614,'614 462v-17c-52 -7 -64 -13 -75 -56l-107 -401h-23l-244 372l-73 -271c-4 -14 -6 -25 -6 -34c0 -26 17 -34 61 -38v-17h-174v17c57 6 71 15 82 57l86 323c-21 38 -36 48 -52 48v17h167l190 -294l55 205c4 14 6 26 6 35c0 26 -17 34 -57 37v17h164'], + 0x275: [462,13,500,-3,441,'441 311c0 -94 -44 -188 -105 -249c-49 -49 -108 -75 -175 -75c-94 0 -164 50 -164 148c0 100 40 191 100 250c51 50 115 77 183 77c101 0 161 -59 161 -151zM143 253h164c10 44 15 84 15 119c0 38 -18 61 -47 61c-21 0 -41 -10 -60 -31c-31 -34 -55 -88 -72 -149z M295 207h-165c-9 -44 -14 -90 -14 -127c0 -44 19 -64 49 -64c26 0 50 15 71 49c23 37 44 90 59 142'], + 0x276: [462,5,749,23,751,'751 457l-36 -137h-18c1 9 1 18 1 25c0 37 -8 55 -29 70c-17 12 -58 18 -111 18c-28 0 -37 -4 -41 -18l-45 -167c77 4 93 13 133 99h18l-62 -229h-17c2 15 3 30 3 41c0 47 -22 62 -81 65l-46 -170c-2 -5 -3 -10 -3 -14c0 -14 12 -18 46 -18c52 0 93 8 129 34 c29 22 50 40 85 86h20l-69 -144h-307c-35 0 -60 0 -78 -1c-10 -1 -21 -2 -30 -2c-116 0 -190 47 -190 160c0 109 67 212 159 266c46 26 104 41 156 41c10 0 49 -5 115 -5h298zM332 142l53 197c9 32 12 50 12 63c0 7 -1 13 -3 18c-6 15 -24 18 -50 18 c-113 0 -210 -181 -210 -336c0 -56 24 -83 89 -83c32 0 52 5 68 19c14 13 23 38 41 104'], + 0x277: [477,2,685,-3,626,'626 265c0 -133 -115 -267 -256 -267c-46 0 -74 21 -94 48c-41 -37 -88 -48 -134 -48c-94 0 -145 62 -145 141c0 200 227 338 390 338c126 0 239 -80 239 -212zM489 314c0 95 -45 139 -109 139c-113 0 -246 -164 -246 -346c0 -35 15 -63 42 -63c23 0 84 15 84 73 c0 64 -5 96 -5 125c0 36 27 85 83 85c39 0 53 -31 53 -66c0 -59 -60 -96 -60 -164c0 -32 16 -53 38 -53c86 0 120 207 120 270'], + 0x278: [685,231,691,-3,632,'483 591l-41 -156c87 -9 190 -61 190 -165c0 -152 -183 -264 -307 -271l-37 -138c-4 -15 -6 -27 -6 -36c0 -25 17 -30 56 -32v-24h-277v24c55 4 74 16 89 71l36 135c-94 6 -189 73 -189 175c0 160 190 253 306 261l41 153c4 14 5 25 5 34c0 27 -16 36 -56 39v24h277v-24 c-54 -3 -72 -12 -87 -70zM432 398l-97 -360c79 35 157 146 157 245c0 57 -23 99 -60 115zM196 39l97 359c-74 -23 -156 -133 -156 -232c0 -57 23 -106 59 -127'], + 0x279: [462,0,427,0,410,'289 462h121c-71 -240 -102 -357 -102 -382c0 -19 12 -25 56 -25v-27c-121 -10 -140 -13 -200 -28l65 209h-1c-79 -159 -117 -209 -171 -209c-34 0 -57 26 -57 66c0 42 25 73 58 73c39 0 41 -38 61 -38c14 0 38 27 65 76c26 47 41 81 74 186'], + 0x27A: [699,0,493,0,476,'476 699l-139 -489c-9 -32 -44 -151 -44 -158c0 -19 27 -25 71 -25v-27h-200l65 209h-1c-79 -159 -117 -209 -171 -209c-34 0 -57 26 -57 66c0 42 25 73 58 73c39 0 41 -38 61 -38c14 0 38 27 65 76c26 47 44 80 74 186l56 196c9 30 10 43 10 54c0 20 -9 30 -36 30 c-5 0 -11 0 -22 -1v28c75 7 124 13 210 29'], + 0x27B: [462,233,436,0,417,'409 462l-162 -569c-2 -6 -4 -22 -4 -28c0 -38 19 -67 43 -67c19 0 33 7 33 16c0 18 -23 33 -23 60c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-92 0 -140 51 -140 129c0 10 2 22 5 33l87 280h-1c-79 -159 -117 -209 -171 -209c-34 0 -57 26 -57 66 c0 42 25 73 58 73c39 0 41 -38 61 -38c14 0 38 27 65 76c26 47 41 81 74 186l31 99h120'], + 0x27C: [462,233,389,-87,389,'160 253h1c79 159 117 209 171 209c34 0 57 -26 57 -66c0 -42 -25 -73 -58 -73c-39 0 -41 38 -61 38c-14 0 -38 -27 -65 -76c-26 -47 -41 -81 -74 -186l-103 -332h-115l134 468c18 62 34 135 34 147c0 19 -12 25 -56 25v27c121 10 140 13 200 28'], + 0x27D: [462,233,389,-47,389,'160 253h1c79 159 117 209 171 209c34 0 57 -26 57 -66c0 -42 -25 -73 -58 -73c-39 0 -41 38 -61 38c-14 0 -38 -28 -65 -76c-25 -44 -34 -59 -101 -271c-42 -132 -45 -149 -45 -155c0 -33 18 -61 43 -61c19 0 32 7 32 17c0 15 -23 34 -23 59c0 30 26 54 59 54 c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-91 0 -139 49 -139 126c0 11 2 21 5 33l91 316c16 55 32 130 32 140c0 19 -12 25 -56 25v27c121 10 140 13 200 28'], + 0x27E: [484,0,360,-21,417,'-21 0l76 267c22 77 39 127 81 166c36 33 84 51 139 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-34 0 -56 -25 -72 -75l-118 -378h-120'], + 0x27F: [484,0,338,10,292,'63 0l110 380c4 13 5 24 5 33c0 28 -14 40 -40 40c-18 0 -29 -7 -29 -19c0 -14 22 -22 22 -57c0 -31 -26 -57 -60 -57c-37 0 -61 27 -61 64c0 59 57 100 142 100c64 0 112 -18 130 -51c7 -13 10 -28 10 -44c0 -34 -10 -77 -26 -127l-82 -262h-121'], + 0x280: [464,0,498,8,515,'123 464h215c117 0 177 -24 177 -95c0 -80 -69 -126 -144 -143l85 -194c4 -9 12 -15 26 -15v-17h-146l-84 215h-19l-36 -134c-5 -17 -7 -27 -7 -36c0 -19 13 -23 50 -28v-17h-232v17c54 6 62 11 77 66l79 295c5 17 7 28 7 38c0 22 -14 29 -48 31v17zM239 238h21 c89 0 137 58 137 148c0 39 -20 55 -68 55c-27 0 -38 -8 -44 -31'], + 0x281: [464,0,498,8,597,'597 464v-17c-12 0 -26 -6 -34 -15l-189 -194c52 -14 84 -39 84 -88c0 -104 -101 -150 -244 -150h-206v17c50 3 64 15 78 69l79 295c5 17 7 29 7 38c0 20 -14 24 -49 28v17h232v-17c-56 -7 -63 -13 -77 -64l-36 -134h19l199 215h137zM236 226l-47 -172 c-1 -5 -2 -9 -2 -13c0 -13 9 -18 30 -18c74 0 123 60 123 146c0 45 -34 56 -104 57'], + 0x282: [462,218,389,-32,333,'333 461l-23 -154l-27 2c-16 83 -42 120 -88 120c-32 0 -53 -21 -53 -53c0 -23 18 -54 57 -99c60 -70 80 -114 80 -162c0 -75 -66 -128 -148 -128c-21 0 -42 3 -64 12c-13 5 -24 8 -31 8c-17 0 -28 -14 -29 -25l-9 -84c-1 -6 -1 -11 -1 -16c0 -48 25 -69 73 -69 c36 0 39 12 39 17c0 17 -23 32 -23 59c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -141 -100c-64 0 -98 26 -98 91c0 9 0 18 2 30l33 250l27 -3c11 -88 42 -133 93 -133c40 0 60 22 60 54c0 30 -16 59 -56 104c-68 77 -80 107 -80 161c0 80 53 126 134 126 c20 0 41 -4 58 -12s27 -10 37 -10c15 0 19 4 28 21h29'], + 0x283: [683,233,424,-104,584,'106 -53l116 466c33 132 95 270 252 270c70 0 110 -31 110 -78c0 -34 -22 -61 -54 -61c-31 0 -53 22 -53 47c0 24 18 39 18 48c0 7 -10 14 -23 14c-55 0 -77 -93 -92 -151l-114 -454c-35 -141 -95 -281 -260 -281c-67 0 -110 30 -110 78c0 34 22 61 54 61 c31 0 53 -22 53 -47c0 -24 -18 -39 -18 -48c0 -8 12 -14 26 -14c59 0 78 82 95 150'], + 0x284: [683,207,394,-90,576,'113 46l110 437c16 64 38 114 76 149c36 33 85 51 135 51c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-32 0 -64 -16 -76 -60l-143 -546h68l-12 -46h-68c-42 -147 -106 -207 -202 -207 c-63 0 -105 33 -105 77c0 29 22 53 49 53c29 0 49 -19 49 -49c0 -21 -15 -21 -15 -35c0 -10 12 -15 24 -15c28 0 49 36 74 136l10 40h-62l12 46h62'], + 0x285: [470,233,415,79,344,'324 280l-103 -386c-4 -16 -11 -39 -11 -59c0 -21 0 -38 23 -38c12 0 22 8 22 14c0 9 -18 24 -18 48c0 25 22 47 53 47c32 0 54 -27 54 -61c0 -48 -41 -78 -111 -78c-92 0 -136 51 -136 126c0 20 3 41 9 64l107 397c4 15 8 34 8 50c0 20 -7 36 -29 36 c-14 0 -24 -7 -24 -14c0 -9 18 -24 18 -48c0 -25 -22 -47 -53 -47c-32 0 -54 27 -54 61c0 48 41 78 111 78c91 0 143 -50 143 -125c0 -20 -3 -42 -9 -65'], + 0x286: [683,243,521,-40,641,'181 21l97 388c33 134 95 274 253 274c68 0 110 -30 110 -78c0 -35 -23 -61 -54 -61s-53 21 -53 47c0 24 18 39 18 48c0 7 -10 14 -22 14c-56 0 -78 -90 -92 -147l-108 -430c-11 -44 -24 -91 -34 -115c11 -22 18 -71 18 -105c0 -42 -3 -59 -17 -99h-42c12 32 19 54 19 82 c0 21 -4 36 -7 54c-43 -76 -107 -126 -211 -126c-69 0 -96 46 -96 91c0 102 79 167 189 167c4 0 20 -2 32 -4zM171 -19c-11 3 -31 4 -39 4c-76 0 -132 -57 -132 -119c0 -26 13 -59 65 -59c44 0 71 47 82 81c9 28 17 64 24 93'], + 0x287: [513,90,310,7,299,'85 363l-23 15c66 103 110 135 170 135c42 0 67 -21 67 -65c0 -18 -10 -63 -25 -115l-67 -236h52v-35c-82 -28 -130 -67 -184 -152h-35l39 145h-72v42h83l34 119c35 122 53 185 53 209c0 13 -8 18 -16 18c-16 0 -42 -27 -76 -80'], + 0x288: [594,233,311,-60,281,'281 407h-83l-146 -512c-2 -7 -3 -21 -3 -28c0 -37 15 -69 40 -69c19 0 33 7 33 17c0 15 -23 34 -23 59c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -58 -100 -140 -100c-92 0 -140 46 -140 124c0 10 1 24 4 35l137 481h-52v35c82 28 130 67 184 152h35l-39 -145h72v-42 '], + 0x289: [462,9,556,-16,514,'514 269l-13 -46h-80l-11 -40c-13 -46 -25 -91 -25 -103c0 -10 3 -21 14 -21c17 0 37 20 72 74l22 -13c-52 -89 -99 -129 -159 -129c-44 0 -68 19 -68 60c0 29 8 55 26 110h-1c-94 -138 -133 -170 -198 -170c-50 0 -78 26 -78 79c0 25 8 56 22 106l13 47h-66l15 46h65 l10 35c8 29 17 59 17 75c0 15 -12 25 -58 28v27c51 1 149 15 210 28l-60 -193h131c17 44 34 100 56 180h118l-53 -180h79zM294 223h-125l-19 -63c-14 -45 -16 -57 -16 -72c0 -17 10 -25 24 -25c18 0 40 16 70 55c26 34 46 64 66 105'], + 0x28A: [452,8,500,15,552,'552 428h-75c-22 0 -32 -24 -32 -45c0 -30 52 -69 52 -140c0 -145 -161 -251 -299 -251c-116 0 -183 69 -183 166c0 102 96 182 128 207c11 9 25 24 25 38c0 13 -6 25 -17 25h-73v24h192c-69 -145 -124 -209 -124 -348c0 -46 13 -88 58 -88c87 0 130 136 145 191 c17 61 24 120 24 192c0 17 0 34 -1 53h180v-24'], + 0x28B: [462,10,534,18,492,'243 462l-101 -328c-4 -13 -4 -27 -4 -32c0 -38 39 -62 77 -62c114 0 213 147 213 250c0 44 -24 47 -42 70c-14 17 -19 31 -19 48c0 25 23 54 57 54c53 0 68 -56 68 -112c0 -166 -127 -360 -314 -360c-97 0 -160 30 -160 104c0 9 6 35 10 50l57 199c1 5 6 22 6 33 c0 12 -5 21 -20 25c-19 5 -21 5 -38 6v27c31 0 122 10 210 28'], + 0x28C: [462,13,444,15,401,'401 41v-27c-82 -11 -107 -15 -156 -27c-21 67 -31 146 -31 334c-99 -113 -126 -154 -126 -189c0 -11 5 -19 20 -36c18 -20 25 -36 25 -53c0 -31 -27 -56 -57 -56c-38 0 -61 32 -61 67c0 42 20 96 60 154c55 80 103 133 230 254h26c-5 -91 -5 -173 -5 -177 c0 -108 9 -193 25 -225c7 -13 19 -19 50 -19'], + 0x28D: [462,13,667,15,614,'614 42v-27c-80 -13 -115 -19 -156 -28c-23 86 -33 154 -33 274l-156 -274h-27l-31 333c-88 -103 -120 -157 -120 -187c0 -10 6 -22 20 -38c17 -19 22 -33 22 -48c0 -40 -27 -60 -57 -60c-33 0 -61 29 -61 62c0 84 89 223 272 413h27l23 -285c34 63 70 135 114 201l56 84 h27v-46c0 -13 -1 -32 -1 -62c0 -121 18 -284 38 -302c8 -7 18 -10 43 -10'], + 0x28E: [667,0,444,16,502,'169 352h-2c-70 -134 -87 -176 -87 -207c0 -13 7 -19 25 -34c22 -18 31 -29 31 -54s-21 -57 -58 -57c-33 0 -62 30 -62 64c0 101 119 338 249 497c55 67 120 106 175 106c35 0 62 -26 62 -60c0 -29 -24 -56 -50 -56c-47 0 -58 36 -94 36c-17 0 -46 -22 -67 -52 c-17 -24 -25 -48 -25 -71c0 -31 16 -126 50 -288c13 -59 24 -97 40 -113c11 -11 15 -12 40 -12v-27c-65 -6 -102 -12 -150 -24c-18 47 -48 149 -66 274'], + 0x28F: [464,0,633,65,606,'606 464v-17c-28 -4 -45 -12 -60 -27l-209 -214l-32 -122c-4 -15 -7 -26 -7 -35c0 -23 16 -28 61 -32v-17h-274v17c67 5 79 19 92 71l24 93l-81 225c-8 23 -29 39 -55 41v17h265v-17l-23 -2c-31 -3 -48 -4 -48 -24c0 -8 5 -23 9 -36l53 -159l118 122c30 32 53 58 53 78 c0 14 -14 18 -60 21v17h174'], + 0x290: [449,218,440,-24,405,'343 156l-97 -275c-3 -9 -7 -28 -7 -34c0 -25 10 -34 31 -34c29 0 37 8 37 17c0 15 -23 34 -23 59c0 30 26 54 59 54c37 0 62 -25 62 -61c0 -59 -55 -100 -136 -100c-36 0 -68 21 -68 59c0 13 4 33 10 50l40 109h-275v22l273 331h-136c-37 0 -58 -14 -73 -61l-27 3 l44 154h311v-10l-287 -343h174c26 0 46 33 60 60h28'], + 0x291: [449,97,411,-24,376,'80 96h95c32 50 70 84 114 84c65 0 87 -34 87 -75c0 -58 -47 -105 -143 -105h-71l-55 -97h-42l55 97h-144v22l273 331h-136c-37 0 -58 -14 -73 -61l-27 3l44 154h311v-10zM219 96h57c46 0 57 9 57 25c0 17 -22 26 -39 26c-19 0 -43 -8 -75 -51'], + 0x292: [450,236,499,-10,558,'558 423l-246 -197c11 3 38 6 54 6c59 0 112 -50 112 -137c0 -199 -170 -331 -301 -331c-55 0 -117 16 -143 35c-35 25 -44 45 -44 69s16 50 59 50c37 0 60 -22 67 -67c5 -31 38 -50 69 -50c92 0 166 200 166 292c0 42 -16 75 -56 75c-21 0 -65 -2 -122 -47l-20 24 l290 232h-204c-23 0 -74 -30 -95 -83h-26l76 156h364v-27'], + 0x293: [450,307,499,-10,528,'528 423l-246 -197c12 3 36 6 52 6c52 0 114 -38 114 -142c0 -115 -70 -252 -219 -311l22 -86h-48l-18 75c-20 -4 -36 -4 -53 -4c-96 0 -142 35 -142 94s51 94 122 94c46 0 80 -20 103 -122c57 46 106 194 106 255c0 44 -12 83 -56 83c-21 0 -64 -2 -122 -47l-20 24 l290 232h-204c-23 0 -74 -30 -95 -83h-26l76 156h364v-27zM177 -195c-13 52 -29 110 -59 110c-26 0 -41 -22 -41 -50c0 -37 35 -64 79 -64c4 0 17 2 21 4'], + 0x294: [685,0,530,25,520,'193 380h31c100 0 167 107 167 214c0 34 -7 62 -35 62c-36 0 -64 -33 -71 -62c-11 -43 -35 -63 -72 -63s-53 29 -53 48c0 34 22 60 55 79s89 27 123 27c104 0 182 -59 182 -146c0 -134 -99 -257 -248 -257l-44 -161c-4 -14 -12 -43 -12 -55c0 -22 13 -41 49 -42v-24h-240 v24c23 2 46 10 61 22c17 13 21 20 31 56'], + 0x295: [685,0,530,65,509,'152 84l54 198c-86 9 -127 77 -127 151c0 145 131 252 274 252c35 0 80 -13 106 -30c27 -17 50 -42 50 -76c0 -19 -16 -48 -53 -48c-35 0 -60 19 -71 60c-9 33 -17 65 -54 65c-59 0 -123 -133 -123 -186c0 -58 51 -90 100 -90h32l-81 -293c-2 -8 -3 -15 -3 -21 c0 -30 22 -41 49 -42v-24h-240v24c34 3 75 17 87 60'], + 0x296: [669,14,487,25,453,'453 669v-24c-34 -3 -75 -18 -86 -60l-52 -196c87 -9 137 -78 137 -152c0 -147 -127 -251 -269 -251c-75 0 -158 30 -158 87c0 35 16 67 62 67s55 -33 61 -65c6 -31 27 -60 62 -60c60 0 113 102 113 187c0 58 -62 89 -110 89h-32l78 291c2 8 3 15 3 21 c0 30 -22 41 -49 42v24h240'], + 0x297: [462,237,479,20,544,'24 -82l104 385c28 104 162 159 251 159c74 0 165 -48 165 -119c0 -21 -16 -62 -63 -62c-29 0 -57 16 -57 41c0 31 12 31 12 56c0 35 -18 46 -51 46c-52 0 -104 -41 -118 -93l-109 -405c-4 -13 -6 -26 -6 -38c0 -42 23 -75 64 -75c62 0 127 54 144 118l7 26h43l-11 -40 c-23 -83 -113 -154 -224 -154c-83 0 -155 50 -155 123c0 10 1 21 4 32'], + 0x298: [680,17,723,13,734,'438 328c0 -44 -33 -78 -77 -78c-45 0 -81 34 -81 78c0 45 34 80 80 80c43 0 78 -35 78 -80zM734 429c0 -235 -219 -446 -452 -446c-152 0 -269 96 -269 252c0 246 236 445 458 445c163 0 263 -104 263 -251zM606 464c0 107 -43 177 -151 177c-166 0 -314 -218 -314 -443 c0 -104 40 -172 152 -172c168 0 313 235 313 438'], + 0x299: [464,0,493,-10,486,'105 464h229c98 0 152 -29 152 -83c0 -71 -50 -110 -145 -131c65 -9 111 -43 111 -94c0 -91 -89 -156 -234 -156h-228v17c53 6 66 15 76 54l86 320c3 10 4 18 4 25c0 21 -14 28 -51 31v17zM229 257h14c90 0 127 55 127 134c0 33 -16 50 -52 50c-27 0 -42 -8 -49 -35z M223 234l-45 -167c-2 -9 -3 -14 -3 -19c0 -18 12 -25 36 -25c63 0 119 66 119 145c0 44 -28 66 -88 66h-19'], + 0x29A: [475,14,465,16,504,'504 307c0 -211 -187 -321 -304 -321c-100 0 -184 28 -184 106c0 76 73 137 156 158c-41 21 -66 43 -66 80c0 109 113 145 222 145c97 0 176 -60 176 -168zM317 227h-53c-55 0 -108 -61 -108 -129c0 -39 27 -63 70 -63c88 0 208 130 208 268c0 81 -48 135 -115 135 c-50 0 -93 -39 -93 -105c0 -41 44 -69 73 -69h18v-37'], + 0x29B: [538,11,580,29,690,'467 109l-21 -79c-53 -26 -135 -41 -211 -41c-125 0 -206 63 -206 171c0 160 161 302 326 302c43 0 76 -9 118 -28c10 30 24 52 44 73c26 20 58 31 81 31c54 0 92 -25 92 -65c0 -24 -17 -41 -41 -41c-22 0 -39 16 -39 36c0 22 15 31 15 39s-7 11 -19 11 c-20 0 -39 -10 -48 -41l-48 -172h-18c-12 51 -19 71 -42 98s-54 37 -91 37c-108 0 -203 -164 -203 -314c0 -68 22 -116 104 -116c50 0 73 22 83 57l12 43c2 8 6 32 6 35c0 23 -14 29 -63 32v16h251v-16c-58 -6 -71 -26 -82 -68'], + 0x29C: [464,0,582,21,676,'676 464v-17c-51 -4 -69 -14 -79 -51l-88 -329c-2 -8 -3 -14 -3 -20c0 -19 15 -25 55 -30v-17h-248v17c54 6 69 15 78 50l42 157h-177l-42 -157c-2 -8 -3 -15 -3 -20c0 -20 15 -25 56 -30v-17h-246v17c52 6 65 14 75 50l88 329c2 9 4 16 4 22c0 20 -15 26 -52 29v17h246 v-17c-52 -4 -70 -13 -80 -51l-37 -140h177l37 140c2 8 3 15 3 21c0 21 -15 27 -54 30v17h248'], + 0x29D: [685,233,475,-50,463,'463 617c0 -37 -31 -67 -69 -67c-37 0 -66 30 -66 69c0 35 31 66 66 66c38 0 69 -31 69 -68zM423 462l-116 -444c-9 -34 -20 -66 -29 -87c47 -44 69 -107 96 -164h-48c-14 36 -34 87 -70 120c-55 -88 -111 -120 -192 -120c-70 0 -114 43 -114 98c0 91 95 139 165 139 c20 0 52 -4 69 -13l81 319c8 30 12 54 12 67c0 21 -12 30 -41 30h-22v27c112 10 149 15 209 28zM163 -87l10 35c-25 15 -58 16 -75 16c-45 0 -108 -38 -108 -98c0 -41 40 -59 76 -59c57 0 81 50 97 106'], + 0x29E: [457,250,500,22,528,'528 449l-157 -566c-7 -24 -7 -32 -7 -42c0 -28 10 -34 30 -34h34v-27c-77 -4 -132 -13 -209 -30l124 461c-126 -99 -165 -137 -165 -163c0 -16 11 -21 50 -23v-25h-206v25c46 6 67 14 135 76l64 58c-39 195 -57 227 -79 227c-19 0 -37 -16 -64 -64l-22 11 c45 95 88 124 138 124c62 0 90 -48 123 -223l39 27l50 188h122'], + 0x29F: [464,0,485,10,468,'468 156l-66 -156h-392v17c49 6 62 24 68 50l81 328c2 10 4 18 4 24c0 20 -13 26 -46 28v17h238v-17c-57 -2 -67 -11 -81 -67l-76 -303c-2 -7 -4 -20 -4 -23c0 -23 22 -31 60 -31c53 0 82 12 112 36c26 21 52 54 80 97h22'], + 0x2A0: [582,205,488,1,674,'347 390l24 93c19 73 82 99 161 99c85 0 142 -41 142 -100c0 -37 -24 -64 -61 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-33 0 -51 -18 -64 -63l-140 -500c-20 -73 -36 -127 -36 -138c0 -20 17 -28 49 -28h17v-27h-268v27c61 0 75 13 92 69l61 207 c-44 -82 -94 -111 -154 -111c-65 0 -102 48 -102 130c0 55 19 117 54 178c59 103 142 167 218 167c23 0 47 -9 57 -22c9 -11 12 -22 17 -50zM325 371c0 28 -12 48 -35 48c-39 0 -86 -65 -111 -115c-32 -66 -53 -140 -53 -188c0 -38 13 -57 39 -57c31 0 59 24 88 74 c35 62 72 180 72 238'], + 0x2A1: [685,0,530,25,520,'193 380h31c100 0 167 107 167 214c0 34 -7 62 -35 62c-36 0 -64 -33 -71 -62c-11 -43 -35 -63 -72 -63s-53 29 -53 48c0 34 22 60 55 79s89 27 123 27c104 0 182 -59 182 -146c0 -134 -99 -257 -248 -257l-21 -74h66l-12 -46h-66l-11 -41c-4 -15 -12 -43 -12 -55 c0 -22 13 -41 49 -42v-24h-240v24c23 2 46 10 61 22c17 13 21 20 31 56l16 60h-66l12 46h66'], + 0x2A2: [685,0,530,65,507,'184 208l21 74c-86 9 -128 77 -128 151c0 146 132 252 274 252c28 0 70 -9 101 -27c34 -20 55 -47 55 -79c0 -19 -16 -48 -53 -48c-46 0 -63 31 -71 60c-10 37 -19 65 -54 65c-59 0 -123 -133 -123 -186c0 -58 51 -90 100 -90h32l-47 -172h66l-12 -46h-66l-21 -75 c-2 -8 -3 -15 -3 -21c0 -30 23 -41 50 -42v-24h-240v24c34 3 74 17 86 60l21 78h-65l12 46h65'], + 0x2A3: [699,13,750,-21,735,'735 439l-288 -343h175c26 0 46 33 60 60h28l-55 -156h-297c-23 -5 -43 -11 -58 -11c-38 0 -60 23 -60 61c0 16 2 29 11 68c-52 -94 -105 -131 -166 -131s-106 42 -106 125c0 99 58 212 131 282c43 42 93 68 138 68c29 0 53 -8 75 -33l18 64c25 88 29 113 29 122 c0 18 -15 28 -41 28h-21v27c100 8 149 15 209 29l-69 -250h287v-10zM616 353h-136c-37 0 -58 -14 -73 -61h-2l-42 -154c-10 -38 -14 -58 -14 -63c0 -6 5 -15 11 -15c9 0 24 12 35 25zM308 371c0 28 -15 49 -37 49c-43 1 -85 -54 -114 -112c-33 -66 -54 -144 -54 -186 c0 -36 16 -64 41 -64c29 0 59 26 86 75c36 64 78 194 78 238'], + 0x2A4: [699,236,820,-21,813,'813 423l-209 -191h17c59 0 112 -50 112 -137c0 -199 -170 -331 -301 -331c-55 0 -117 16 -143 35c-35 25 -44 45 -44 69s16 50 59 50c37 0 60 -22 67 -67c5 -31 38 -50 69 -50c92 0 166 200 166 292c0 42 -16 75 -56 75c-10 0 -22 -3 -43 -23l-102 -98 c-47 -45 -74 -58 -105 -58c-38 0 -60 23 -60 61c0 16 2 29 11 68c-52 -94 -105 -131 -166 -131s-106 42 -106 125c0 99 58 212 131 282c43 42 93 68 138 68c29 0 53 -8 75 -33l18 64c25 88 29 113 29 122c0 18 -15 28 -41 28h-21v27c100 8 149 15 209 29l-68 -249h364v-27z M704 377h-211c-18 0 -72 -28 -84 -71l-50 -183c-3 -11 -8 -34 -8 -38c0 -10 3 -19 11 -19c10 0 46 38 59 50zM308 371c0 28 -15 49 -37 49c-43 1 -85 -54 -114 -112c-33 -66 -54 -144 -54 -186c0 -36 16 -64 41 -64c29 0 59 26 86 75c36 64 78 194 78 238'], + 0x2A5: [699,97,817,-21,743,'448 96h94c32 50 70 84 114 84c65 0 87 -34 87 -75c0 -58 -47 -105 -143 -105h-71l-55 -97h-42l55 97h-124c-28 -7 -44 -11 -63 -11c-38 0 -60 23 -60 61c0 16 2 29 11 68c-52 -94 -105 -131 -166 -131s-106 42 -106 125c0 99 58 212 131 282c43 42 93 68 138 68 c29 0 53 -8 75 -33l18 64c25 88 29 113 29 122c0 18 -15 28 -41 28h-21v27c100 8 149 15 209 29l-69 -250h287v-10zM586 96h57c46 0 57 9 57 25c0 17 -22 26 -39 26c-19 0 -43 -8 -75 -51zM616 353h-136c-37 0 -58 -14 -73 -61h-2l-42 -154c-10 -38 -14 -58 -14 -63 c0 -6 5 -15 11 -15c12 0 30 19 39 30zM308 371c0 28 -15 49 -37 49c-43 1 -85 -54 -114 -112c-33 -66 -54 -144 -54 -186c0 -36 16 -64 41 -64c29 0 59 26 86 75c36 64 78 194 78 238'], + 0x2A6: [594,13,560,-3,524,'524 461l-23 -154l-27 2c-16 83 -42 120 -88 120c-32 0 -53 -21 -53 -53c0 -23 18 -54 57 -99c60 -70 80 -114 80 -162c0 -75 -66 -128 -148 -128c-21 0 -42 3 -64 12c-22 8 -55 35 -73 59c-42 -50 -77 -67 -121 -67c-42 0 -67 21 -67 65c0 18 10 63 25 115l67 236h-52 v35c82 28 130 67 184 152h35l-39 -145h88c19 8 41 13 67 13c20 0 41 -4 58 -12s27 -10 37 -10c15 0 19 4 28 21h29zM211 141l23 -15c-3 -5 -5 -8 -7 -11c15 -68 44 -98 87 -98c40 0 60 22 60 54c0 30 -16 59 -56 104c-68 77 -80 107 -80 161c0 28 6 52 18 71h-50l-34 -119 c-35 -122 -53 -185 -53 -209c0 -13 8 -18 16 -18c16 0 42 27 76 80'], + 0x2A7: [683,233,453,-30,670,'190 449h128c35 120 99 234 242 234c70 0 110 -31 110 -78c0 -34 -22 -61 -54 -61c-31 0 -53 22 -53 47c0 24 18 39 18 48c0 7 -10 14 -23 14c-55 0 -77 -93 -92 -151l-114 -454c-35 -141 -95 -281 -260 -281c-67 0 -110 30 -110 78c0 34 22 61 54 61c31 0 53 -22 53 -47 c0 -24 -18 -39 -18 -48c0 -8 12 -14 26 -14c59 0 78 82 95 150l41 166c-61 -59 -124 -122 -196 -122c-42 0 -67 21 -67 65c0 18 10 63 25 115l67 236h-52v35c82 28 130 67 184 152h35zM306 407h-127l-34 -119c-35 -122 -53 -185 -53 -209c0 -13 8 -18 16 -18 c18 0 78 42 143 128'], + 0x2A8: [594,18,600,-3,618,'335 144v-19c76 29 144 49 205 49c50 0 78 -34 78 -71c0 -51 -36 -84 -70 -100c-42 -20 -67 -21 -115 -21c-62 0 -148 2 -201 63c-41 -21 -127 -54 -168 -54c-42 0 -67 21 -67 65c0 18 10 63 25 115l67 236h-52v35c82 28 130 67 184 152h35l-39 -145h72v-42h-83l-34 -119 c-35 -122 -53 -185 -53 -209c0 -13 8 -18 16 -18c21 0 51 9 81 18c-6 17 -9 42 -9 59c0 92 43 177 105 239c51 52 113 85 180 85c60 0 112 -37 112 -90c0 -42 -25 -71 -62 -71c-34 0 -58 23 -58 53s21 36 21 58c0 10 -12 17 -24 17c-38 0 -65 -37 -93 -88 c-32 -60 -53 -132 -53 -197zM573 99c0 27 -28 30 -47 30c-34 0 -92 -9 -179 -43c20 -41 85 -59 139 -59c59 0 87 39 87 72'], + 0x20A3: [669,0,668,-13,661,'661 669l-45 -190l-26 5c0 43 -4 76 -21 101c-24 35 -70 52 -150 52c-51 0 -58 -11 -70 -53l-54 -192h177l-12 -40h-175l-22 -78h177l-11 -40h-176l-37 -132c-3 -12 -6 -24 -6 -33c0 -31 17 -41 71 -44v-25h-294v25c56 2 69 29 84 85l34 124h-91l11 40h91l20 78h-93 l12 40h93l48 178c3 13 5 24 5 33c0 30 -22 38 -74 41v25h534'], + 0x20A4: [683,12,500,-32,510,'45 400h105c32 124 49 152 98 207c42 49 96 76 153 76c63 0 109 -39 109 -91c0 -38 -26 -68 -61 -68c-30 0 -53 22 -53 51c0 10 2 22 4 34c2 7 3 14 3 19c0 12 -10 21 -24 21c-29 0 -48 -26 -60 -77l-39 -172h114l-10 -40h-115c-5 -23 -12 -55 -20 -88h134l-10 -40h-135 c-10 -38 -21 -73 -33 -91l-11 -17c59 -23 92 -32 125 -32c48 0 68 14 90 63h25c-12 -58 -24 -86 -45 -114c-26 -33 -65 -53 -106 -53c-42 0 -76 16 -127 61c-27 -43 -55 -60 -98 -60c-53 0 -90 35 -90 86c0 52 39 87 96 87c21 0 35 -3 61 -14c3 28 5 55 7 84h-108l10 40h101 c2 27 5 56 9 88h-109zM113 90c-24 22 -42 30 -64 30c-31 0 -51 -20 -51 -50s23 -51 56 -51c30 0 48 22 59 71'], + 0x20A7: [669,13,1229,-28,1173,'1173 461l-23 -154l-27 2c-16 83 -42 120 -88 120c-32 0 -53 -21 -53 -53c0 -23 18 -54 57 -99c60 -70 80 -114 80 -162c0 -75 -66 -128 -148 -128c-21 0 -42 3 -64 12c-13 5 -23 8 -30 8c-13 0 -23 -6 -29 -20h-27l22 166l27 -3c11 -88 42 -133 93 -133 c40 0 60 22 60 54c0 30 -16 59 -56 104c-68 77 -80 107 -80 161c0 80 53 126 134 126c20 0 41 -4 58 -12s27 -10 37 -10c15 0 19 4 28 21h29zM863 407h-83l-34 -119c-35 -122 -53 -185 -53 -209c0 -13 8 -18 16 -18c16 0 42 27 76 80l23 -15c-66 -103 -110 -135 -170 -135 c-42 0 -67 21 -67 65c0 18 10 63 25 115l67 236h-52v35c82 28 130 67 184 152h35l-39 -145h72v-42zM112 669h262c147 0 216 -54 216 -155c0 -53 -21 -98 -59 -131c-48 -42 -109 -66 -201 -66c-27 0 -36 1 -71 5l-54 -199c-5 -17 -11 -48 -11 -58c0 -27 16 -37 72 -40v-25 h-294v25c52 8 66 17 84 82l117 426c11 39 13 59 13 74c0 20 -10 29 -41 33l-33 4v25zM330 584l-61 -229c17 -3 19 -3 32 -3c62 0 83 18 110 62c22 35 33 93 33 136c0 53 -28 87 -81 87c-25 0 -21 -9 -33 -53'], + 0x20AC: [681,17,562,34,546,'546 630l-23 -149l-34 4c-6 93 -31 166 -86 166c-94 0 -162 -154 -182 -235h251l-12 -40h-245c-5 -13 -15 -66 -17 -88h235l-12 -40h-230c-5 -21 -8 -47 -8 -75c0 -71 21 -149 90 -149c79 0 133 49 182 109l19 -10c-61 -84 -127 -140 -225 -140c-131 0 -182 113 -182 224 c0 14 1 28 2 41h-35l10 40h30c4 24 13 71 18 88h-41l13 40h37c42 135 159 265 300 265c58 0 105 -19 145 -51'], + 0x2460: [690,19,695,0,695,'455 517l-88 -307c-2 -8 -6 -25 -6 -29c0 -10 15 -13 63 -14v-26h-221v26c49 2 66 9 74 38l68 231c1 3 4 16 4 19c0 7 -11 11 -30 11c-13 0 -24 -1 -40 -3v25c73 9 116 16 176 29zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352 c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2461: [690,19,695,0,695,'248 411l-18 10c26 56 74 96 139 96c66 0 109 -43 109 -97c0 -47 -26 -85 -87 -130l-105 -77h71c55 0 75 7 94 43h21l-51 -115h-234v23l54 50c108 100 150 142 150 184c0 35 -18 58 -59 58c-33 0 -59 -13 -84 -45zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2462: [690,19,695,0,695,'266 427l-20 10c40 58 82 80 133 80c52 0 98 -35 98 -80c0 -35 -16 -63 -61 -81c29 -20 41 -42 41 -80c0 -78 -74 -142 -179 -142c-53 0 -88 21 -88 50c0 21 14 36 38 36c22 0 34 -16 45 -31c10 -12 20 -21 40 -21c37 0 65 37 65 78c0 25 -9 43 -25 57 c-20 17 -44 21 -81 22v25c78 14 121 37 121 73c0 28 -17 44 -55 44c-30 0 -48 -10 -72 -40zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2463: [690,19,695,0,695,'476 517l-66 -232h45l-19 -65h-44l-22 -80h-86l21 80h-154l20 68l261 229h44zM363 417l-153 -132h114zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2464: [690,19,695,0,695,'489 517l-27 -72h-163l-14 -30c61 -10 81 -16 111 -37c31 -22 52 -57 52 -98c0 -82 -77 -146 -182 -146c-55 0 -92 20 -92 50c0 23 16 37 39 37c21 0 34 -10 49 -32c11 -17 23 -20 38 -20c39 0 78 36 78 77c0 35 -26 63 -69 82c-22 10 -44 13 -91 15l83 174h188zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2465: [690,19,695,0,695,'483 517l8 -25c-78 -23 -129 -62 -165 -116c10 3 20 4 29 4c59 0 101 -34 101 -102c0 -86 -66 -144 -152 -144c-74 0 -116 47 -116 118c0 80 37 146 103 194c60 43 101 56 192 71zM372 311c0 26 -11 35 -42 35c-19 0 -26 -3 -33 -20c-19 -43 -33 -94 -33 -126 c0 -24 13 -36 34 -36c17 0 27 3 37 18c22 31 37 92 37 129zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x2466: [690,19,695,0,695,'522 517l-244 -383h-69l204 307h-74c-75 0 -89 -6 -113 -43h-23l59 119h260zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2467: [690,19,695,0,695,'480 433c0 -43 -23 -67 -81 -88c39 -36 52 -62 52 -97c0 -73 -60 -115 -142 -115c-74 0 -124 40 -124 96c0 51 34 80 102 103c-31 28 -43 50 -43 82c0 65 53 103 119 103c53 0 117 -26 117 -84zM417 434c0 33 -23 52 -50 52c-30 0 -51 -16 -51 -43c0 -25 14 -46 59 -76 c33 30 42 45 42 67zM377 218c0 27 -6 46 -65 94c-42 -25 -62 -48 -62 -87c0 -40 26 -61 62 -61c37 0 65 22 65 54zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x2468: [690,19,695,0,695,'193 134l-8 25c73 20 129 59 164 115c-10 -2 -18 -3 -29 -3c-57 0 -101 40 -101 99c0 87 66 147 153 147c69 0 117 -47 117 -119c0 -86 -47 -160 -125 -208c-51 -31 -88 -42 -171 -56zM413 449c0 29 -12 38 -31 38c-60 0 -79 -106 -79 -149c0 -22 15 -33 42 -33 s31 7 45 45c16 45 23 71 23 99zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24B6: [690,19,695,0,695,'548 141h-186v26c32 3 45 8 45 17c0 2 -1 13 -2 16l-9 54h-127l-30 -50c-6 -9 -10 -15 -10 -23c0 -9 11 -14 40 -14v-26h-122v26c24 3 35 14 51 39l210 318h16l69 -309c8 -38 15 -45 55 -48v-26zM389 288l-25 118l-74 -118h99zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24B7: [690,19,695,0,695,'238 517h150c91 0 139 -30 139 -88c0 -59 -36 -76 -83 -90c41 -16 60 -42 60 -81c0 -79 -62 -117 -162 -117h-172v26c29 4 39 14 46 41l58 238c2 9 5 24 5 28c0 15 -19 17 -41 17v26zM336 356h9c59 0 96 18 97 78c1 36 -18 53 -50 53c-17 0 -26 -3 -32 -28zM330 322 l-29 -117c-2 -10 -4 -18 -4 -22c0 -8 11 -12 32 -12c57 0 85 44 85 98c0 49 -31 52 -84 53zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24B8: [690,19,695,0,695,'548 524l-30 -139h-24c2 15 2 24 2 29c0 47 -31 78 -84 78c-103 0 -166 -123 -166 -218c0 -67 42 -98 101 -98c55 0 86 22 126 63l26 -16c-44 -62 -104 -89 -178 -89c-104 0 -170 58 -170 145c0 148 105 245 243 245c27 0 56 -3 84 -11c9 -2 19 -4 23 -4c10 0 16 4 24 15 h23zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24B9: [690,19,695,0,695,'211 517h163c106 0 174 -58 174 -153c0 -142 -102 -223 -240 -223h-162v26c28 4 38 12 45 41l56 229c6 25 6 32 6 37c0 8 -6 16 -42 17v26zM340 471l-61 -252c-3 -11 -7 -29 -7 -35c0 -8 12 -13 32 -13c114 0 159 111 159 215c0 73 -34 101 -95 101c-17 0 -25 -4 -28 -16 zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BA: [690,19,695,0,695,'527 516l-23 -116h-16c-3 40 -4 58 -25 71c-15 9 -40 15 -73 15c-22 0 -30 -4 -34 -23l-25 -107c68 0 81 3 105 53h17l-37 -157h-18c2 12 2 18 2 24c0 38 -18 46 -78 46l-27 -120c-2 -6 -4 -16 -4 -18c0 -9 10 -13 32 -13c48 0 84 11 113 32c19 15 30 25 47 55h18 l-32 -117h-299v26c29 5 36 10 43 39l55 234c4 18 5 29 5 36c0 6 -12 14 -41 14v26h295zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BB: [690,19,695,0,695,'527 516l-22 -113h-17c-1 28 -3 45 -13 56c-17 19 -38 27 -84 27c-22 0 -28 -5 -32 -22l-27 -108c69 1 81 3 102 53h19l-37 -157h-18c2 12 2 19 2 25c0 38 -19 44 -76 45l-24 -105c-3 -13 -7 -25 -7 -32c0 -11 10 -16 40 -18v-26h-163v26c32 4 38 13 44 38l56 240 c3 12 5 24 5 31c0 6 -7 12 -41 14v26h293zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BC: [690,19,695,0,695,'548 334v-26c-31 -3 -37 -9 -46 -47l-23 -95l-15 -6c-35 -14 -92 -26 -138 -26c-103 0 -180 60 -180 156c0 137 112 234 242 234c28 0 49 -4 74 -11c12 -4 16 -5 20 -5c12 0 19 5 25 16h21l-28 -129h-19c-1 60 -22 97 -84 97c-101 0 -156 -126 -156 -215 c0 -76 38 -110 99 -110c23 0 50 6 53 15l26 92c2 8 3 14 3 17c0 11 -21 14 -45 17v26h171zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BD: [690,19,695,0,695,'564 516v-26c-22 0 -30 -12 -36 -37l-52 -217c-5 -20 -11 -44 -11 -52c0 -12 15 -15 40 -17v-26h-163v26c30 4 37 10 45 43l27 112h-128l-23 -96c-5 -20 -9 -36 -9 -43c0 -8 11 -15 40 -16v-26h-163v26c23 4 37 6 44 38l56 240c3 13 5 24 5 29c0 10 -6 13 -41 16v26h166 v-26c-30 -1 -39 -8 -44 -39l-24 -95h128l21 89c2 9 5 21 5 31c0 7 -6 11 -41 14v26h158zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BE: [690,19,695,0,695,'460 516v-26c-32 -1 -37 -8 -44 -38l-54 -226c-5 -21 -9 -34 -9 -42c0 -9 11 -16 40 -17v-26h-163v26c37 5 39 18 47 52l52 220c4 16 6 30 6 36c0 11 -12 12 -41 15v26h166zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352 c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24BF: [690,19,695,0,695,'491 516v-26c-29 -2 -36 -5 -43 -36l-52 -218c-16 -68 -60 -102 -119 -102c-51 0 -88 21 -88 56c0 23 16 39 36 39c22 0 40 -15 40 -38c0 -7 -4 -18 -12 -26c0 0 4 -2 13 -2c22 0 33 21 47 78l45 189c5 20 8 38 8 41c0 14 -3 15 -41 19v26h166zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C0: [690,19,695,0,695,'548 516v-26c-28 -4 -32 -5 -53 -24l-116 -105l93 -176c5 -10 15 -15 38 -18v-26h-162v26c25 2 35 5 35 9c0 5 -3 11 -9 23l-67 122l-26 -108c-3 -14 -6 -22 -6 -28c0 -12 14 -17 40 -18v-26h-163v26c21 3 36 8 42 32l58 243c3 14 5 27 5 32c0 10 -5 13 -41 16v26h166 v-26c-34 -1 -37 -11 -43 -35l-27 -111l103 90c32 28 42 40 42 48c0 4 -6 7 -33 8v26h124zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C1: [690,19,695,0,695,'503 259l-27 -118h-287v26c36 3 40 23 46 48l55 233c2 8 4 23 4 28c0 13 -33 13 -41 14v26h166v-26c-32 0 -38 -13 -42 -29l-58 -243c-4 -15 -8 -32 -8 -35c0 -7 24 -12 45 -12c33 0 59 8 82 24s34 28 51 64h14zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C2: [690,19,695,0,695,'578 516v-26c-32 0 -37 -9 -44 -38l-51 -215c-5 -19 -12 -44 -12 -50c0 -14 12 -18 40 -20v-26h-163v26c33 3 39 19 46 47l52 220l-155 -299h-9l-31 299l-49 -191c-4 -16 -7 -37 -7 -45c0 -22 9 -27 38 -31v-26h-102v26c26 11 29 21 45 82l52 199c3 13 5 22 5 28 c0 12 -1 14 -31 14v26h92l26 -258l138 258h120zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24C3: [690,19,695,0,695,'532 517v-26c-28 -6 -36 -14 -49 -79l-57 -278h-18l-130 295l-40 -186c-4 -21 -7 -38 -7 -47c0 -19 10 -25 38 -28v-26h-104v26c27 6 29 10 45 80l48 215c-6 13 -17 28 -34 28v26h92l109 -252l33 151c4 20 7 38 7 47c0 18 -11 28 -39 28v26h106zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C4: [690,19,695,0,695,'550 386c0 -129 -121 -252 -255 -252c-90 0 -152 52 -152 139c0 128 121 251 250 251c85 0 157 -54 157 -138zM455 429c0 46 -27 64 -62 64c-103 0 -155 -171 -155 -257c0 -47 26 -71 63 -71c106 0 154 181 154 264zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C5: [690,19,695,0,695,'238 516h160c84 0 129 -31 129 -92c0 -83 -75 -111 -153 -111c-15 0 -27 0 -47 2l-24 -102c-2 -8 -6 -24 -6 -28c0 -10 8 -16 40 -18v-26h-163v26c30 5 38 11 45 43l53 226c2 8 7 29 7 39c0 8 -4 12 -41 15v26zM361 457l-26 -111c9 -1 15 -1 22 -1c63 0 83 44 84 98 c0 29 -20 43 -49 43c-20 0 -26 -8 -31 -29zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305 '], + 0x24C6: [690,19,695,0,695,'150 133l95 77c-60 13 -106 61 -106 127c0 135 111 258 242 258c81 0 153 -55 153 -137c0 -123 -112 -253 -243 -253h-10l-14 -14c26 -2 61 -7 99 -19c22 -7 34 -8 49 -8c36 0 56 9 88 41l17 -15c-47 -67 -88 -88 -150 -88c-25 0 -44 3 -81 14c-30 9 -43 11 -59 11 c-18 0 -33 -2 -64 -15zM439 502c0 39 -26 62 -59 62c-102 0 -146 -183 -146 -264c0 -42 24 -64 59 -64c104 0 146 189 146 266zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24C7: [690,19,695,0,695,'528 141h-113l-68 179h-19l-21 -91c-6 -27 -10 -39 -10 -45c0 -10 10 -15 40 -17v-26h-163v26c29 4 38 11 46 46l54 231c2 9 5 23 5 29c0 13 -7 14 -41 17v26h160c80 0 129 -27 129 -95c0 -57 -45 -84 -98 -94l49 -129c9 -23 17 -28 50 -31v-26zM336 350h12 c58 0 93 26 93 88c0 33 -18 48 -47 48c-17 0 -27 -4 -32 -25zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24C9: [690,19,695,0,695,'527 516l-19 -109h-20c-2 61 -23 77 -81 77l-58 -242c-6 -25 -13 -49 -13 -58c0 -11 15 -17 51 -17v-26h-183v26c32 0 46 10 52 35l67 282c-60 -2 -88 -21 -116 -77h-17l22 109h315zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352 c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CA: [690,19,695,0,695,'547 516v-26c-30 -6 -35 -6 -51 -73l-31 -126c-25 -101 -54 -157 -156 -157c-70 0 -128 33 -128 98c0 14 2 28 6 45l35 145c6 24 10 43 10 52c0 11 -8 13 -41 16v26h166v-26c-34 0 -38 -14 -43 -34l-40 -163c-7 -27 -12 -52 -12 -66c0 -34 26 -50 66 -50 c77 0 93 62 109 127l27 113c5 23 8 40 8 49c-1 15 -12 24 -44 24v26h119zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CB: [690,19,695,0,695,'527 517v-26c-19 -3 -28 -12 -33 -20l-203 -330h-17l-52 277c-13 67 -18 73 -52 73v26h164v-26c-34 -3 -40 -4 -40 -13c0 -6 1 -15 1 -18l35 -200l93 154c22 36 32 53 32 64c0 7 -6 11 -36 13v26h108zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357 c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CC: [690,19,695,0,695,'566 517v-26c-22 -4 -29 -7 -42 -38l-132 -312h-14l-38 258l-107 -258h-14l-49 308c-5 33 -9 36 -40 42v26h140v-26c-22 -3 -29 -7 -29 -17c0 -5 2 -21 3 -28l23 -163l66 162c-1 34 -7 42 -37 46v26h135v-26c-24 -2 -30 -6 -30 -18s3 -28 5 -42l21 -148l68 168 c6 14 7 19 7 23c0 13 -5 15 -32 17v26h96zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CD: [690,19,695,0,695,'527 516v-26c-20 -3 -30 -9 -50 -32l-95 -110l41 -122c14 -43 23 -54 61 -59v-26h-160v26c28 3 34 6 34 14c0 11 -6 33 -22 75l-11 28l-61 -77c-10 -13 -15 -20 -15 -24c0 -8 10 -13 33 -16v-26h-112v26c26 6 39 21 86 78l59 71l-45 142c-8 25 -17 28 -49 32v26h159v-26 l-16 -2c-16 -2 -22 -4 -22 -11c0 -2 1 -10 4 -19l25 -77l45 53c24 28 34 41 34 47c0 4 -5 6 -29 9v26h106zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CE: [690,19,695,0,695,'527 517v-26c-25 -3 -37 -14 -54 -37l-107 -143l-28 -103c-3 -10 -5 -19 -5 -24c0 -12 12 -17 49 -17v-26h-197v26c39 4 53 9 60 38l28 110l-57 146c-8 21 -22 30 -46 30v26h175v-26c-32 -2 -41 -3 -41 -13c0 -8 7 -31 19 -60l30 -74l71 98c12 17 16 25 16 32 c0 12 -9 15 -41 17v26h128zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24CF: [690,19,695,0,695,'527 490l-244 -317h36c57 0 90 7 119 26c23 14 43 35 58 60h22l-37 -118h-312v26l244 317h-40c-66 0 -103 -17 -149 -77h-21l36 109h288v-26zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D0: [690,19,695,0,695,'485 290l22 -12c-44 -60 -79 -80 -109 -80c-26 0 -41 16 -41 45c0 3 0 8 1 14c-32 -42 -62 -59 -98 -59c-45 0 -70 33 -70 80c0 87 86 184 171 184c26 0 41 -10 50 -36h2l11 31l73 3l-49 -142c-9 -25 -16 -46 -16 -56c0 -3 2 -8 6 -8c12 0 23 9 47 36zM395 405 c0 11 -10 17 -24 17c-57 0 -101 -111 -101 -146c0 -15 11 -21 28 -21c57 0 97 112 97 150zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D1: [690,19,695,0,695,'386 524l-52 -169c28 32 56 43 86 43c41 0 70 -34 70 -77c0 -101 -96 -187 -199 -187c-41 0 -83 16 -84 39c0 4 4 17 12 44l55 174c15 49 21 74 21 80s-10 11 -28 11h-13v26c56 5 88 9 132 16zM410 318c0 22 -9 32 -26 32c-22 0 -44 -16 -57 -41c-14 -27 -28 -66 -37 -96 c-6 -18 -8 -37 -8 -41c0 -5 8 -9 19 -9c66 0 109 104 109 155zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24D2: [690,19,695,0,695,'433 291l20 -12c-50 -56 -72 -81 -131 -81s-101 31 -101 89c0 92 89 175 179 175c38 0 71 -23 71 -55c0 -25 -16 -43 -40 -43c-21 0 -35 15 -35 35c0 18 9 25 13 30c-1 2 -9 3 -16 3c-54 0 -92 -101 -92 -142c0 -32 22 -46 51 -46c28 0 52 12 81 47zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D3: [690,19,695,0,695,'519 524l-88 -294c-5 -15 -11 -42 -11 -42c0 -3 6 -3 6 -3c10 0 26 13 42 36l19 -10c-38 -54 -68 -77 -98 -77c-24 0 -43 16 -44 40c0 8 0 14 4 27c-32 -48 -64 -67 -100 -67c-40 0 -70 25 -70 74c0 79 80 190 166 190c18 0 32 -4 48 -18l21 67c4 12 6 23 6 25 c0 6 -10 10 -26 10h-15v26c61 4 97 8 140 16zM384 344c0 11 -10 19 -24 19c-58 0 -101 -106 -101 -149c0 -18 11 -29 26 -29c18 0 37 11 53 36c21 33 46 100 46 123zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352 c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D4: [690,19,695,0,695,'431 297l22 -13c-42 -63 -82 -86 -134 -86c-57 0 -92 29 -92 88c0 93 81 176 178 176c43 0 72 -24 72 -56c0 -78 -94 -95 -167 -107c-3 -5 -3 -14 -3 -16c0 -20 16 -32 44 -32c29 0 51 11 80 46zM412 412c0 8 -4 14 -19 14c-29 0 -56 -33 -75 -91c55 13 94 42 94 77z M695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D5: [690,19,695,0,695,'291 435h44c21 68 51 125 131 125c36 0 65 -18 65 -47c0 -18 -15 -33 -33 -33s-32 15 -32 32c0 11 4 16 8 20c0 0 -5 2 -9 2c-20 0 -38 -24 -51 -69l-9 -30h55l-8 -33h-52c-30 -129 -36 -156 -50 -194c-28 -79 -66 -113 -119 -113c-34 0 -65 20 -65 48c0 19 18 31 34 31 s31 -13 31 -31c0 -13 -5 -18 -9 -20c0 0 5 -1 10 -1c24 0 34 22 51 92l45 188h-44zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D6: [690,19,695,0,695,'523 460h-43c1 -4 3 -9 3 -19c0 -73 -82 -106 -144 -106c-12 0 -26 4 -35 4s-18 -5 -18 -13s20 -14 37 -17c109 -20 137 -48 137 -85c0 -50 -59 -90 -159 -90c-78 0 -130 19 -130 65c0 39 31 58 62 64c-11 8 -17 21 -17 36c0 24 11 38 48 53c-26 13 -41 33 -41 62 c0 64 63 110 146 110c30 0 54 -6 77 -20h77v-44zM402 466c0 15 -9 26 -31 26c-49 0 -67 -62 -67 -97c0 -19 10 -29 29 -29c44 0 69 62 69 100zM386 199c0 30 -84 39 -103 46c-16 -1 -53 -26 -53 -41c0 -22 33 -38 77 -38c48 0 79 16 79 33zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D7: [690,19,695,0,695,'492 226l18 -11c-45 -61 -69 -81 -106 -81c-25 0 -44 16 -44 42c0 12 1 22 7 39l37 103c7 20 7 23 7 25c0 3 -4 4 -12 4c-18 0 -35 -16 -60 -48c-30 -39 -43 -65 -74 -160h-79l90 302c4 15 7 25 7 29c0 7 -8 11 -27 11h-15v27c54 3 83 7 133 16l-63 -220 c60 74 85 93 126 93c32 0 49 -17 49 -46c0 -8 -1 -19 -6 -34l-35 -98c-4 -10 -10 -25 -10 -28c0 -4 2 -7 9 -7c9 0 22 9 48 42zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24D8: [690,19,695,0,695,'427 474c0 -23 -18 -42 -41 -42c-25 0 -44 20 -44 43c0 24 17 42 42 42c24 0 43 -19 43 -43zM405 226l18 -10c-45 -65 -73 -82 -110 -82c-26 0 -41 13 -42 40c0 8 3 23 9 42l32 109c4 13 4 21 4 24c0 5 -10 8 -29 8h-10v27c45 3 91 7 130 15l-56 -186 c-2 -6 -5 -16 -5 -21s3 -7 9 -7c11 0 23 11 39 29zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24D9: [690,19,695,0,695,'483 520c0 -23 -18 -42 -40 -42c-24 0 -45 21 -45 43c0 23 19 42 42 42c24 0 43 -21 43 -43zM464 450l-67 -236c-24 -85 -61 -119 -122 -119c-37 0 -69 17 -69 44c0 25 13 35 32 35c17 0 33 -13 33 -31c0 -10 -4 -14 -8 -18c0 0 7 -2 13 -2c18 0 30 18 43 65l49 178 c4 13 6 26 6 32c0 9 -7 11 -24 11h-15v26c65 5 88 7 129 15zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24DA: [690,19,695,0,695,'507 390v-27c-32 -3 -44 -8 -85 -39l-38 -29c25 -96 37 -111 52 -111c12 0 23 8 40 34l18 -8c-32 -59 -59 -76 -90 -76c-39 0 -58 26 -82 119l-20 -12l-30 -103h-80l92 309c3 9 3 13 3 17v4c0 10 -6 12 -18 12h-23v27c47 2 82 6 134 17l-72 -245c75 50 100 69 100 79 c0 3 -9 4 -33 5v27h132zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DB: [690,19,695,0,695,'434 524l-86 -287c-4 -14 -14 -39 -14 -46c0 -4 3 -7 10 -7c13 0 27 11 50 41l18 -10c-47 -63 -69 -81 -108 -81c-26 0 -45 17 -45 40c0 20 12 57 20 84l43 138c12 38 20 65 20 75c0 7 -10 11 -28 11c-2 0 -8 0 -14 -1v28c50 3 82 7 134 15zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DC: [690,19,695,0,695,'588 287l19 -9c-37 -60 -68 -80 -107 -80c-24 0 -42 14 -42 43c0 11 2 26 8 42l34 91c3 8 7 28 7 32s-7 5 -14 5c-20 0 -44 -20 -71 -59c-23 -35 -28 -47 -63 -149h-80l51 142c11 31 18 55 18 60c0 4 -5 6 -11 6c-11 0 -28 -11 -41 -24c-37 -37 -59 -82 -92 -184h-77 l42 132c16 49 21 70 21 78c0 6 -7 8 -24 8h-13v27c72 4 85 5 130 14l-37 -102c28 37 45 57 60 69c22 19 49 33 74 33c28 0 43 -15 43 -42c0 -15 -3 -25 -8 -41c32 49 77 83 120 83c31 0 47 -18 47 -43c0 -19 -5 -40 -13 -61l-25 -69c-5 -15 -11 -30 -11 -37c0 -4 6 -5 11 -5 s21 10 44 40zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DD: [690,19,695,0,695,'493 287l20 -9c-40 -60 -70 -80 -107 -80c-29 0 -43 14 -43 40c0 9 1 22 6 37l37 101c3 8 9 25 9 28c0 5 -11 7 -19 7c-15 0 -31 -14 -43 -26c-39 -43 -62 -87 -90 -182h-77l55 180c5 18 8 28 8 31c0 5 -9 6 -37 7v27c36 1 84 6 129 14l-37 -103c41 50 52 63 73 80 c18 15 42 23 65 23c33 0 48 -17 48 -47c0 -10 -2 -22 -7 -36l-30 -83c-11 -30 -15 -42 -15 -46c0 -2 5 -3 9 -3c12 0 22 7 46 40zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DE: [690,19,695,0,695,'490 375c0 -95 -83 -177 -177 -177c-61 0 -110 30 -110 87c0 103 83 177 179 177c66 0 108 -33 108 -87zM410 405c0 20 -11 29 -30 29c-68 0 -97 -120 -97 -175c0 -25 13 -33 32 -33c67 0 95 134 95 179zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357 c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24DF: [690,19,695,0,695,'380 524l-22 -59c35 45 62 59 98 59c48 0 76 -28 76 -78c0 -110 -89 -198 -180 -198c-12 0 -29 3 -44 13l-19 -63c-2 -8 -2 -14 -2 -17c0 -10 11 -11 44 -12v-28h-167v28c33 0 38 6 49 44l59 210c4 13 13 48 13 51c0 5 -7 6 -37 7v28c34 4 64 6 132 15zM447 446 c0 19 -10 25 -25 25c-48 0 -70 -52 -84 -97c-16 -50 -22 -72 -22 -80c0 -7 11 -14 25 -14c70 0 106 128 106 166zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E0: [690,19,695,0,695,'502 517l-81 -264c-13 -44 -21 -70 -21 -74c0 -7 11 -10 44 -10v-28h-179v28c42 0 51 7 60 34l31 99c-26 -40 -58 -54 -93 -54c-45 0 -72 31 -72 80c0 90 97 196 176 196c15 0 30 -4 37 -12s10 -15 14 -31l10 36h74zM403 466c0 13 -8 21 -23 21 c-61 0 -104 -116 -104 -158c0 -20 9 -28 26 -28c61 0 101 120 101 165zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303 c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E1: [690,19,695,0,695,'379 462l-33 -92c43 68 67 91 100 91c26 0 46 -19 46 -47c0 -25 -18 -46 -41 -46c-29 0 -34 20 -45 20c-10 0 -27 -13 -44 -39c-15 -24 -24 -44 -43 -92l-23 -59h-84l62 185c5 14 5 22 5 26c0 2 -4 9 -16 9h-24v28c83 3 93 7 140 16zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E2: [690,19,695,0,695,'467 462l-15 -98h-18c-13 43 -34 61 -64 61c-19 0 -35 -3 -35 -14c0 -13 15 -26 41 -49c41 -37 67 -52 67 -89c0 -48 -51 -75 -107 -75c-14 0 -36 2 -50 6c-9 3 -16 5 -21 5c-9 0 -16 -3 -20 -11h-20l14 104h19c8 -46 39 -67 73 -67c25 0 37 7 37 18c0 9 -14 25 -41 48 c-48 40 -64 53 -64 88c0 48 43 73 97 73c12 0 26 -2 39 -6c9 -3 17 -4 27 -4c11 0 14 3 19 10h22zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E3: [690,19,695,0,695,'448 388h-67l-34 -117c-10 -35 -15 -62 -15 -69c0 -5 0 -13 8 -13c13 0 33 16 57 47l21 -13c-57 -77 -65 -89 -110 -89c-34 0 -51 20 -51 54c0 9 8 40 17 71l37 129h-31v41c65 17 91 45 129 95h12l-27 -92h54v-44zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E4: [690,19,695,0,695,'481 291l25 -12c-41 -56 -75 -81 -114 -81c-31 0 -42 16 -42 44c0 9 1 21 5 35c-54 -63 -72 -79 -111 -79c-34 0 -56 17 -56 52c0 19 3 33 7 44l29 85c5 15 8 25 8 31c0 4 -9 6 -40 7v28c33 1 95 10 142 17l-61 -169c-5 -13 -10 -24 -10 -32c0 -4 6 -7 14 -7 c14 0 29 9 45 26c38 40 57 68 90 175h79l-53 -149c-5 -15 -13 -35 -13 -44c0 -6 5 -8 10 -8c12 0 23 9 46 37zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300 c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E5: [690,19,695,0,695,'424 379l-14 14c-11 11 -16 23 -16 33c0 21 16 36 35 36c26 0 45 -20 45 -42c0 -26 -12 -51 -37 -84c-36 -47 -68 -74 -148 -138h-16c2 19 4 41 4 57c0 50 -6 141 -23 159c-3 5 -10 7 -32 7v27c50 5 65 7 98 14c15 -37 24 -80 27 -177c59 58 77 79 77 94zM695 335 c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E6: [690,19,695,0,695,'391 462l26 -177c53 53 73 80 73 93c0 3 -3 7 -13 16c-11 10 -15 19 -15 31c0 26 19 37 38 37c22 0 42 -15 42 -39c0 -51 -59 -124 -173 -225h-17l-19 152l-25 -39c-15 -23 -40 -61 -44 -66l-37 -47h-20c2 20 2 50 2 55c0 62 -14 155 -29 165c-3 2 -10 3 -27 3v27 c51 6 73 10 99 14c16 -46 24 -83 27 -146l97 146h15zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302 c168 0 295 135 295 305'], + 0x24E7: [690,19,695,0,695,'235 450l104 12c13 -15 21 -30 34 -77c50 65 71 77 100 77c20 0 39 -18 39 -39c0 -19 -17 -33 -37 -33c-11 0 -19 10 -36 10c-16 0 -37 -19 -56 -47l22 -79c5 -17 12 -22 24 -22c13 0 20 4 42 29l19 -9c-43 -54 -71 -74 -101 -74c-32 0 -48 21 -65 85l-19 -29 c-31 -48 -49 -56 -78 -56c-25 0 -41 16 -41 38c0 20 14 37 34 37c19 0 24 -13 40 -13c13 0 19 4 30 20l25 36l-20 76c-6 22 -15 31 -36 31c-6 0 -11 0 -24 -1v28zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352 c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E8: [690,19,695,0,695,'400 363l8 -41c45 74 54 97 54 112c0 5 -8 9 -20 16c-13 9 -17 17 -17 36c0 17 14 38 39 38c23 0 41 -21 41 -43c0 -64 -74 -197 -158 -285c-37 -40 -81 -63 -118 -63c-24 0 -43 18 -43 41c0 19 15 39 35 39c16 0 25 -4 36 -13c5 -4 11 -9 26 -9c13 0 31 11 43 26 c11 13 18 26 18 36c0 16 -13 71 -38 163c-9 32 -17 52 -29 61c-7 5 -10 5 -29 5v27c44 3 70 8 101 15c13 -27 37 -87 51 -161zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338 c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'], + 0x24E9: [690,19,695,0,695,'488 446l-179 -182c20 -10 34 -17 52 -37c13 -14 23 -48 47 -48c9 0 14 2 15 5c-6 4 -15 10 -15 27c0 19 18 34 38 34c19 0 36 -16 36 -37c0 -40 -34 -57 -76 -57c-27 0 -53 10 -89 30c-22 12 -36 17 -51 17c-8 0 -26 -9 -33 -15l-25 17l188 194h-81 c-25 0 -40 -6 -50 -33h-20l31 101h212v-16zM695 335c0 -200 -151 -354 -346 -354c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305 '], + 0x24EA: [690,19,695,0,695,'497 384c0 -113 -74 -250 -187 -250c-68 0 -111 53 -111 131c0 117 72 259 192 259c62 0 106 -55 106 -140zM423 459c0 25 -13 37 -33 37c-73 0 -117 -273 -117 -300c0 -22 14 -34 32 -34c69 0 118 233 118 297zM695 335c0 -200 -151 -354 -346 -354 c-199 0 -349 154 -349 357c0 200 153 352 354 352c190 0 341 -156 341 -355zM643 338c0 168 -128 300 -299 300c-162 0 -292 -136 -292 -303c0 -168 130 -302 296 -302c168 0 295 135 295 305'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Misc/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/Italic/Main.js new file mode 100644 index 0000000..ce85459 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/Italic/Main.js @@ -0,0 +1,183 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Misc/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Misc-italic'] = { + directory: 'Misc/Italic', + family: 'STIXMathJax_Misc', + style: 'italic', + id: 'STIXWEBMISCI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x250: [460,10,444,19,421,'173 387h1c68 60 121 73 164 73c52 0 83 -26 83 -73c0 -66 -50 -117 -103 -148c-35 -20 -77 -39 -201 -81c-16 -66 -18 -77 -18 -87c0 -39 24 -57 60 -57c40 0 88 19 88 49c0 18 -6 21 -6 42c0 19 20 41 46 41c21 0 43 -19 43 -46c0 -26 -22 -58 -65 -81 c-33 -18 -71 -29 -124 -29c-72 0 -120 28 -120 88c0 16 4 37 12 68l48 191c3 14 5 27 5 36c0 21 -8 29 -20 29c-16 0 -27 -4 -47 -18l7 28c39 38 68 48 102 48c30 0 47 -14 47 -48c0 -7 0 -16 -2 -25zM159 323l-36 -141c68 22 114 43 145 66c35 26 57 63 57 104 c0 35 -22 50 -54 50c-51 0 -101 -34 -112 -79'], + 0x251: [460,10,511,17,487,'487 460l-87 -346c-3 -13 -6 -24 -6 -33c0 -16 9 -24 41 -24c5 0 11 0 18 1l-4 -16l-159 -52l-4 3l15 61c-26 -27 -72 -64 -146 -64c-33 0 -138 14 -138 143c0 156 138 327 280 327c43 0 69 -14 95 -43l74 43h21zM313 102l58 230c2 7 2 14 2 20c0 54 -38 80 -80 80 c-81 0 -190 -118 -190 -264c0 -90 53 -126 106 -126c42 0 95 24 104 60'], + 0x252: [460,10,511,17,487,'218 457l-15 -61c26 27 72 64 146 64c33 0 138 -14 138 -143c0 -156 -138 -327 -280 -327c-43 0 -69 14 -95 43l-74 -43h-21l87 346c3 13 6 24 6 33c0 16 -9 24 -41 24c-5 0 -11 0 -18 -1l4 16l159 52zM191 348l-58 -230c-2 -7 -2 -14 -2 -20c0 -54 38 -80 80 -80 c81 0 190 118 190 264c0 90 -53 126 -106 126c-42 0 -95 -24 -104 -60'], + 0x253: [683,11,500,23,488,'23 48l114 421c31 116 120 214 261 214c43 0 90 -19 90 -56c0 -23 -21 -38 -40 -38c-42 0 -54 60 -88 60c-48 0 -114 -54 -135 -131l-62 -228h1c68 113 123 151 193 151c67 0 116 -43 116 -120c0 -158 -165 -332 -320 -332c-57 0 -130 23 -130 53v6zM388 306 c0 61 -26 86 -70 86c-48 0 -94 -42 -137 -115c-44 -74 -72 -171 -72 -231c0 -23 15 -34 46 -34c43 0 86 21 123 59c60 62 110 161 110 235'], + 0x254: [441,11,444,30,425,'105 323l-16 10c61 77 114 108 189 108c93 0 147 -52 147 -154c0 -93 -52 -180 -123 -237c-49 -39 -106 -61 -167 -61s-105 34 -105 81c0 27 22 48 48 48c28 0 39 -20 39 -40c0 -18 -15 -29 -15 -48c0 -12 14 -20 37 -20c40 0 80 18 109 48c56 59 91 144 91 233 c0 72 -32 114 -89 114c-53 0 -91 -25 -145 -82'], + 0x255: [441,160,444,-3,425,'-3 -160l119 158c-55 20 -86 67 -86 145c0 93 52 180 123 237c49 39 106 61 167 61s105 -34 105 -81c0 -27 -22 -48 -48 -48c-28 0 -39 20 -39 40c0 18 15 29 15 48c0 12 -14 20 -37 20c-40 0 -80 -18 -109 -48c-56 -59 -91 -144 -91 -233c0 -26 5 -73 34 -95 c55 64 90 105 149 105c44 0 84 -27 84 -64c0 -65 -50 -101 -139 -101h-22c-25 0 -50 2 -71 7l-118 -151h-36zM350 80c0 21 -26 36 -53 36c-48 0 -70 -34 -119 -87c20 -7 56 -12 78 -12c79 0 94 38 94 63'], + 0x256: [683,233,500,15,527,'521 683l6 -6l-39 -152l-166 -606c-8 -31 -10 -54 -10 -64c1 -28 13 -54 44 -54c35 0 48 60 88 60c24 0 41 -18 41 -38c0 -45 -60 -56 -94 -56c-90 0 -139 46 -139 124c0 24 4 55 13 91l35 139c-59 -99 -110 -132 -178 -132c-65 0 -107 41 -107 117 c0 162 162 335 292 335c42 0 59 -19 65 -58h1l45 163c15 53 14 57 14 71c0 21 -9 24 -64 26v17c64 6 100 12 153 23zM356 361c0 36 -24 57 -47 57c-28 0 -63 -17 -91 -46c-66 -70 -116 -179 -116 -262c0 -46 23 -73 58 -73c92 0 196 172 196 324'], + 0x257: [683,13,500,15,748,'372 383l29 101c32 110 122 199 257 199c43 0 90 -19 90 -56c0 -23 -21 -38 -40 -38c-42 0 -54 60 -88 60c-47 0 -113 -52 -133 -127c-90 -330 -124 -446 -124 -462c0 -12 5 -20 18 -20c17 0 28 9 82 71l12 -10c-49 -73 -97 -114 -147 -114c-26 0 -41 18 -41 45 c0 23 2 39 13 89c-59 -99 -110 -132 -178 -132c-65 0 -107 41 -107 117c0 162 162 335 292 335c42 0 59 -19 65 -58zM356 361c0 36 -24 57 -47 57c-28 0 -63 -17 -91 -46c-66 -70 -116 -179 -116 -262c0 -46 23 -73 58 -73c92 0 196 172 196 324'], + 0x258: [441,11,444,31,416,'31 97l18 12c42 -59 65 -75 109 -75c78 0 150 72 159 153c-134 18 -202 71 -202 136c0 68 57 118 128 118c108 0 173 -82 173 -186c0 -130 -104 -266 -235 -266c-83 0 -127 38 -150 108zM329 285c0 74 -29 133 -79 133c-44 0 -69 -43 -69 -85c0 -17 7 -35 16 -51 c20 -35 49 -53 125 -74c6 55 7 65 7 77'], + 0x259: [441,11,444,31,412,'85 321l-12 12c57 70 121 108 204 108c81 0 135 -54 135 -137c0 -155 -149 -315 -299 -315c-53 0 -82 26 -82 68c0 86 105 164 284 187c10 20 10 46 10 61c0 55 -37 91 -93 91c-44 0 -75 -16 -147 -75zM291 178l17 44c-86 -21 -124 -39 -161 -74c-31 -30 -50 -66 -50 -97 c0 -24 7 -39 35 -39c57 0 125 77 159 166'], + 0x25A: [441,11,639,31,639,'612 293l27 -12c-20 -36 -61 -71 -101 -71c-49 0 -65 24 -65 58c0 17 5 35 10 56l16 61l-91 -47c3 -11 4 -22 4 -34c0 -155 -149 -315 -299 -315c-53 0 -82 26 -82 68c0 101 92 160 157 195l117 64c-12 56 -37 80 -73 80c-44 0 -75 -16 -147 -75l-12 12 c57 70 121 108 204 108c60 0 105 -30 125 -79l134 68l5 -4l-32 -119c-1 -4 -6 -22 -6 -26c0 -35 18 -41 43 -41c29 0 52 28 66 53zM306 289l-98 -57c-40 -23 -111 -82 -111 -180c0 -26 7 -40 35 -40c57 0 122 73 159 166c13 33 15 74 15 111'], + 0x25B: [475,14,444,31,467,'209 249v2c-62 14 -93 42 -93 83c0 86 93 141 196 141c38 0 80 -12 105 -26c31 -17 50 -50 50 -74c0 -23 -18 -44 -48 -44c-26 0 -42 26 -49 52c-13 47 -21 59 -48 59c-60 0 -118 -51 -118 -112c0 -45 35 -67 84 -67h6v-30h-11c-82 0 -158 -56 -158 -133 c0 -47 31 -78 84 -78c50 0 112 22 172 62l9 -12c-60 -56 -128 -86 -200 -86c-46 0 -94 13 -123 34c-23 16 -36 43 -36 73c0 54 36 107 89 132c25 12 48 18 89 24'], + 0x25C: [475,14,480,31,447,'223 233v30c38 1 57 5 80 21c34 23 56 55 56 91c0 40 -29 67 -73 67c-25 0 -34 -18 -46 -62c-6 -22 -22 -49 -48 -49c-30 0 -48 21 -48 44c0 17 13 53 48 73c29 17 75 27 108 27c87 0 147 -38 147 -95c0 -70 -55 -110 -142 -129v-2c63 -8 113 -37 113 -102 c0 -50 -43 -102 -90 -127c-39 -21 -93 -34 -139 -34c-72 0 -126 30 -158 86l15 12c40 -40 90 -62 140 -62c71 0 138 61 138 135c0 46 -30 76 -90 76h-11'], + 0x25D: [475,14,666,31,666,'639 293l27 -12c-22 -37 -61 -71 -101 -71c-49 0 -65 23 -65 59c0 18 6 38 11 59l15 57l-85 -44c-16 -46 -66 -75 -136 -90v-2c67 -8 113 -41 113 -102c0 -50 -43 -102 -90 -127c-39 -21 -93 -34 -139 -34c-72 0 -126 30 -158 86l15 12c40 -40 90 -62 140 -62 c71 0 138 61 138 135c0 46 -30 76 -90 76h-11v30c38 1 57 5 80 21c34 23 56 55 56 91c0 40 -30 67 -72 67c-27 0 -35 -19 -46 -58c-7 -26 -21 -53 -51 -53c-25 0 -46 20 -46 42c0 24 16 57 50 76c30 17 72 26 107 26c85 0 146 -38 146 -95v-9l116 59l5 -4l-36 -133 c-1 -4 -2 -9 -2 -13c0 -35 18 -40 43 -40c29 0 51 28 66 53'], + 0x25E: [475,14,490,30,458,'316 251v-2c71 -9 113 -43 113 -103c0 -50 -45 -99 -81 -121c-45 -27 -106 -39 -145 -39c-119 0 -173 62 -173 159c0 166 110 330 283 330c66 0 145 -26 145 -97c0 -79 -77 -113 -142 -127zM234 233v30c18 0 43 2 63 11c37 17 73 57 73 100c0 41 -30 68 -71 68 c-126 0 -200 -183 -200 -281c0 -68 25 -139 93 -139c33 0 66 10 92 32c28 23 51 61 51 101s-20 63 -51 73c-14 4 -31 5 -50 5'], + 0x25F: [441,207,357,-100,340,'340 441v-16c-65 -3 -78 -19 -93 -77l-28 -112h65l-7 -31h-66l-45 -177c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -12 18 -12c40 0 63 44 97 182l51 208h-138l7 31h139l30 123 c2 9 4 19 4 26c0 31 -21 40 -67 40v16h231'], + 0x260: [683,212,714,8,799,'484 434l8 31c30 117 87 218 216 218c47 0 91 -20 91 -57c0 -22 -21 -37 -40 -37c-42 0 -54 60 -88 60c-50 0 -65 -57 -85 -139l-134 -537c-32 -128 -160 -185 -273 -185c-43 0 -171 17 -171 79c0 21 15 37 37 37c49 0 56 -88 152 -88c85 0 150 65 170 144l23 93 c-45 -37 -105 -67 -158 -67c-98 0 -148 84 -148 175c0 152 150 314 303 314c44 0 72 -16 97 -41zM399 88l56 225c3 11 4 22 4 33c0 52 -32 97 -90 97c-115 0 -193 -153 -193 -248c0 -79 37 -151 116 -151c36 0 75 18 107 44'], + 0x261: [482,212,595,8,579,'579 482l-127 -509c-32 -127 -160 -185 -273 -185c-43 0 -171 17 -171 79c0 20 15 37 37 37c49 0 56 -88 152 -88c85 0 150 65 170 144l23 93c-45 -37 -105 -67 -158 -67c-98 0 -148 84 -148 175c0 152 150 314 303 314c49 0 78 -20 107 -51c27 19 35 32 56 58h29z M399 88l56 225c3 11 4 22 4 33c0 52 -32 97 -90 97c-116 0 -193 -155 -193 -249c0 -75 34 -150 116 -150c36 0 75 18 107 44'], + 0x262: [441,11,562,52,562,'562 231v-11c-41 -3 -55 -12 -65 -54l-32 -130c-5 -20 -160 -47 -195 -47c-122 0 -218 48 -218 166c0 96 52 179 131 231c54 35 120 55 189 55c24 0 47 -3 92 -13c14 -3 32 -8 37 -8c17 0 30 9 37 21h16l-29 -139h-16c-10 39 -17 57 -34 76c-22 25 -57 37 -99 37 c-47 0 -92 -10 -132 -41c-60 -45 -108 -137 -108 -223c0 -84 55 -136 150 -136c38 0 105 12 111 38l26 104c3 14 5 26 5 35c0 21 -14 27 -55 28v11h189'], + 0x263: [441,234,444,15,426,'243 186l21 -110c85 141 122 213 122 257c0 14 -7 20 -26 32c-20 13 -26 23 -26 39c0 22 17 37 40 37c30 0 52 -25 52 -55c0 -39 -23 -99 -44 -144c-31 -67 -66 -128 -109 -197l13 -73c3 -16 8 -61 8 -78c0 -82 -45 -128 -117 -128c-49 0 -70 26 -70 61 c0 30 33 71 101 169c-7 73 -62 284 -85 344c-19 49 -37 64 -77 64c-11 0 -20 -1 -31 -4v17c44 8 57 15 123 22c4 1 11 2 20 2c15 0 68 -166 85 -255zM225 -84l-9 45c-61 -80 -75 -112 -75 -125c0 -22 6 -37 30 -37c35 0 58 30 58 69c0 8 0 27 -4 48'], + 0x264: [450,10,480,4,475,'232 263l63 70c28 32 54 66 85 95c12 11 26 22 43 22c33 0 52 -28 52 -59c0 -23 -5 -47 -11 -69c-8 29 -34 55 -66 55c-34 0 -59 -35 -79 -58l-73 -82c15 -43 35 -84 35 -131c0 -65 -72 -116 -132 -116c-41 0 -78 16 -78 62c0 39 21 65 47 92l57 60l-59 136 c-9 21 -32 35 -54 35c-32 0 -50 -25 -58 -53c0 51 40 128 98 128c52 0 69 -40 86 -81zM185 175l-46 -50c-15 -17 -33 -39 -33 -63c0 -23 22 -33 42 -33c32 0 62 32 62 64c0 28 -15 57 -25 82'], + 0x265: [450,242,500,19,478,'478 441l-146 -554c-8 -31 -13 -48 -13 -62c0 -17 23 -25 41 -25h27v-15c-60 -7 -99 -14 -157 -27l-7 6l121 447c-90 -146 -168 -211 -230 -211c-46 0 -65 30 -65 67c0 25 18 99 48 193c17 52 34 114 34 125c0 10 -8 18 -17 18c-16 0 -28 -12 -82 -80l-13 13 c61 87 95 114 146 114c27 0 44 -16 44 -42c0 -12 -7 -43 -20 -92l-55 -207c-4 -16 -7 -29 -7 -33c0 -15 5 -25 28 -25c36 0 100 61 152 140c40 61 56 96 96 250h75'], + 0x266: [683,9,500,19,494,'19 0l124 470c31 116 120 213 261 213c43 0 90 -19 90 -56c0 -23 -21 -38 -40 -38c-42 0 -54 60 -88 60c-47 0 -114 -52 -134 -127l-79 -292c90 146 168 211 230 211c46 0 65 -30 65 -67c0 -25 -18 -99 -48 -193c-17 -52 -34 -114 -34 -125c0 -10 8 -18 17 -18 c16 0 28 12 82 80l13 -13c-61 -87 -95 -114 -146 -114c-27 0 -44 16 -44 42c0 12 7 43 20 92l55 207c4 16 7 29 7 33c0 15 -5 25 -28 25c-36 0 -100 -61 -152 -140c-40 -61 -56 -96 -96 -250h-75'], + 0x267: [683,233,500,-6,494,'19 0l124 470c31 116 120 213 261 213c43 0 90 -19 90 -56c0 -23 -21 -38 -40 -38c-42 0 -54 60 -88 60c-47 0 -114 -52 -134 -127l-79 -292c90 146 168 211 230 211c46 0 65 -30 65 -67c0 -17 -3 -26 -9 -48l-94 -346c-31 -116 -120 -213 -261 -213c-43 0 -90 19 -90 56 c0 23 21 38 40 38c42 0 54 -60 88 -60c47 0 114 52 134 127l107 404c4 16 7 29 7 33c0 15 -5 25 -28 25c-36 0 -100 -61 -152 -140c-40 -61 -56 -96 -96 -250h-75'], + 0x268: [654,11,278,16,264,'264 599c0 -28 -23 -51 -49 -51c-29 0 -48 21 -48 53c0 31 20 53 47 53s50 -26 50 -55zM253 261l-8 -31h-74l-37 -135c-5 -17 -10 -30 -10 -44c0 -10 6 -15 14 -15c17 0 41 21 84 78l13 -11c-55 -84 -87 -114 -137 -114c-33 0 -49 18 -49 55c0 20 7 55 22 111l20 75h-75 l9 31h75l19 71c5 18 9 36 9 44c0 20 -10 23 -64 24v16c39 3 59 6 160 25l4 -3l-49 -177h74'], + 0x269: [454,10,333,51,266,'253 80l13 -12c-34 -34 -93 -78 -143 -78c-52 0 -72 23 -72 65c0 20 5 42 12 69l56 209c4 13 8 28 8 37c0 22 -14 24 -32 24c-7 0 -17 0 -31 -4v19l117 36c21 6 32 9 42 9c4 0 5 -5 5 -11c0 -3 -4 -19 -6 -26l-84 -308c-2 -8 -4 -19 -4 -25c0 -30 22 -40 44 -40 c21 0 45 11 75 36'], + 0x26A: [441,0,247,-8,298,'298 441v-17c-63 -3 -69 -21 -82 -72l-65 -259c-4 -16 -6 -28 -6 -40c0 -23 12 -35 52 -36v-17h-205v17c64 2 70 24 82 71l66 269c4 16 8 28 8 38c0 19 -14 26 -54 29v17h204'], + 0x26B: [683,11,278,4,331,'303 423h28c-14 -67 -47 -104 -95 -104c-12 0 -27 4 -48 11l-62 -237c-5 -18 -8 -35 -8 -43c0 -12 7 -18 17 -18c15 0 38 16 67 57l25 35l14 -10c-60 -95 -97 -125 -151 -125c-32 0 -49 19 -49 56c0 8 1 20 4 30l73 281c-15 4 -26 6 -34 6c-25 0 -41 -14 -51 -46h-29 c20 77 48 106 100 106c9 0 20 -2 31 -4l47 181c3 10 3 16 3 19c0 12 -17 22 -49 22h-18v16c59 7 96 14 155 27l6 -5l-75 -287c21 -9 35 -12 48 -12c27 0 40 11 51 44'], + 0x26C: [683,11,375,12,366,'358 360l8 -13s-58 -58 -153 -90l-9 -3l-42 -161c-5 -18 -8 -35 -8 -43c0 -12 7 -18 17 -18c15 0 38 16 67 57l25 35l14 -10c-60 -95 -97 -125 -151 -125c-32 0 -49 19 -49 56c0 8 1 20 4 30l43 164c-8 -1 -20 -2 -29 -2c-49 0 -83 34 -83 80c0 70 70 133 136 133 c16 0 26 -4 30 -5l40 154c3 10 3 16 3 19c0 12 -17 22 -49 22h-18v16c59 7 96 14 155 27l6 -5l-102 -390l8 2c49 12 113 51 137 70zM133 275l37 142c-5 2 -11 3 -16 3c-39 0 -88 -46 -88 -87c0 -30 19 -59 50 -59c3 0 13 0 17 1'], + 0x26D: [683,233,252,8,279,'279 678l-193 -738c-9 -36 -15 -66 -15 -89c0 -32 11 -50 39 -50c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -34 -42 -56 -89 -56c-121 0 -142 55 -142 129c0 25 4 52 11 80l163 623c3 10 3 16 3 19c0 12 -17 22 -49 22h-18v16c59 7 96 14 155 27'], + 0x26E: [683,233,575,41,537,'537 400l-206 -204c11 3 13 3 24 3c69 0 123 -46 123 -133c0 -185 -144 -299 -290 -299c-36 0 -78 14 -104 31c-27 18 -43 48 -43 70c0 23 17 44 49 44c28 0 43 -31 49 -58c12 -53 26 -58 74 -58c66 0 182 78 182 233c0 86 -68 106 -112 106c-11 0 -28 -17 -37 -27 l-88 -90c-21 -21 -46 -29 -65 -29c-33 0 -46 28 -46 53c0 9 1 23 7 46l121 462c14 53 16 61 16 66c0 13 -11 24 -55 24h-12v16c56 7 95 14 155 27l6 -6l-60 -227h312v-50zM486 386h-202c-67 0 -84 -31 -98 -86l-49 -187c-3 -12 -13 -49 -13 -57c0 -9 1 -16 14 -16 c6 0 15 7 21 13'], + 0x26F: [441,9,722,12,704,'704 432l-88 -318c-6 -23 -10 -49 -10 -54c0 -15 14 -22 41 -22h25v-16l-162 -31l-3 2l58 209c-89 -145 -159 -211 -220 -211c-40 0 -60 24 -60 60c0 19 13 75 40 152c-70 -111 -111 -161 -160 -192c-24 -15 -43 -20 -63 -20c-37 0 -58 27 -58 63c0 7 2 23 3 28l68 251 c6 22 10 41 10 45c0 11 -4 16 -12 16c-17 0 -35 -16 -65 -53l-21 -26l-15 12l5 7c53 74 97 107 144 107c26 0 42 -16 42 -46c0 -10 -3 -27 -13 -66l-60 -227c-5 -20 -8 -33 -8 -38c0 -12 10 -21 21 -21c30 0 81 47 131 117c49 69 69 118 108 272h75l-86 -318 c-7 -26 -8 -41 -8 -46c0 -16 8 -25 21 -25c34 0 93 58 149 143c34 52 48 88 96 246h75'], + 0x270: [441,233,722,12,704,'704 432l-176 -665h-84l121 435c-89 -145 -159 -211 -220 -211c-40 0 -60 24 -60 60c0 19 13 75 40 152c-70 -111 -111 -161 -160 -192c-24 -15 -43 -20 -63 -20c-37 0 -58 27 -58 63c0 7 2 23 3 28l68 251c6 23 10 41 10 45c0 11 -4 16 -12 16c-17 0 -35 -16 -65 -53 l-21 -26l-15 12l5 7c53 74 97 107 144 107c26 0 42 -16 42 -46c0 -10 -3 -27 -13 -66l-61 -227c-5 -20 -7 -33 -7 -38c0 -12 10 -21 21 -21c30 0 81 47 131 117c49 69 69 118 108 272h75l-27 -93c-44 -152 -67 -258 -67 -271c0 -16 8 -25 21 -25c34 0 93 58 149 143 c34 52 48 88 96 246h75'], + 0x271: [441,233,690,12,672,'209 439l-58 -209c89 145 159 211 220 211c40 0 60 -24 60 -60c0 -19 -13 -75 -40 -152c70 111 111 161 160 192c24 15 43 20 63 20c37 0 58 -27 58 -63c0 -7 -2 -23 -3 -28l-114 -423c-26 -97 -108 -160 -217 -160c-45 0 -92 19 -92 56c0 23 21 38 40 38 c44 0 51 -60 91 -60c48 0 84 53 104 130l106 399c5 20 7 33 7 38c0 12 -9 21 -20 21c-30 0 -82 -47 -132 -117c-49 -69 -69 -118 -108 -272h-75l27 93c44 152 67 258 67 271c0 16 -8 25 -21 25c-34 0 -93 -58 -149 -143c-34 -52 -48 -88 -96 -246h-75l90 325c7 26 8 42 8 47 c0 15 -14 22 -41 22h-25v16l162 31'], + 0x272: [441,233,606,-110,580,'566 117l14 -13c-68 -93 -93 -113 -140 -113c-25 0 -50 16 -50 54c0 10 1 22 16 75l47 162c9 32 17 67 17 79c0 18 -12 28 -27 28c-43 0 -93 -59 -155 -151c-19 -28 -46 -70 -86 -215l-24 -88c-28 -104 -85 -168 -197 -168c-47 0 -91 21 -91 56c0 23 21 38 40 38 c42 0 54 -60 88 -60c49 0 63 56 85 136l113 413c1 5 2 11 2 17c0 20 -14 26 -65 27v16c81 16 109 20 162 31l4 -2l-67 -218c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60l-56 -203c-10 -36 -14 -53 -14 -61c0 -9 4 -18 16 -18c14 0 32 16 61 53 c7 8 14 17 21 26'], + 0x273: [441,233,498,14,487,'432 320l-105 -379c-8 -30 -13 -58 -13 -80c0 -37 13 -60 44 -60c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -47 -56 -92 -56c-95 0 -141 57 -141 134c0 26 1 62 10 92l83 289c9 32 17 65 17 77c0 18 -10 30 -25 30c-42 0 -87 -48 -150 -141c-45 -67 -53 -90 -100 -248 h-75l96 350c1 5 2 11 2 17c0 20 -14 26 -65 27v16c81 16 109 20 162 31l4 -2l-67 -218c100 160 167 220 231 220c43 0 65 -25 65 -61c0 -18 -4 -39 -10 -60'], + 0x274: [441,8,539,-20,599,'599 441v-17c-31 -3 -40 -5 -53 -12c-16 -12 -28 -25 -41 -79l-84 -341h-14l-234 362l-63 -251c-5 -21 -8 -37 -8 -48c0 -27 15 -34 55 -38v-17h-177v17c67 5 80 16 97 86l71 285c-19 27 -27 36 -66 36v17h134l204 -319l54 218c5 19 7 34 7 45c0 9 -2 15 -5 21 c-7 12 -19 15 -54 18v17h177'], + 0x275: [441,11,500,27,468,'468 301c0 -76 -40 -164 -106 -229c-58 -58 -122 -83 -188 -83c-94 0 -147 52 -147 139c0 112 75 227 180 283c39 21 79 30 120 30c81 0 141 -52 141 -140zM138 240h235c7 29 11 59 11 86c0 61 -28 94 -71 94c-44 0 -88 -31 -128 -91c-19 -29 -35 -58 -47 -89zM365 207 h-238c-11 -35 -16 -71 -16 -106c0 -60 31 -91 78 -91c44 0 82 29 121 83c23 32 42 72 55 114'], + 0x276: [441,6,718,49,738,'738 437l-24 -94h-18c1 6 1 12 1 18c0 43 -22 51 -109 51h-41c-41 0 -55 -7 -59 -23l-36 -148h76c81 0 103 11 124 65h16l-39 -155h-16v18c0 37 -17 47 -67 47h-101l-39 -157c-2 -5 -2 -10 -2 -14c0 -15 9 -22 38 -22h89c51 0 91 22 142 85h18l-60 -110h-265 c-47 0 -107 -4 -143 -4c-107 0 -174 56 -174 155c0 109 66 208 154 256c45 24 100 36 154 36c9 0 11 0 47 -2c14 -1 73 -2 89 -2h245zM336 86l64 260c3 11 4 20 4 28c0 28 -18 42 -58 42c-116 0 -214 -130 -214 -277c0 -70 31 -120 111 -120c53 0 81 20 93 67'], + 0x277: [475,4,668,30,638,'638 262c0 -130 -103 -266 -239 -266c-55 0 -86 34 -94 84c-34 -50 -81 -84 -136 -84c-90 0 -139 62 -139 143c0 198 211 336 374 336c127 0 234 -81 234 -213zM549 299c0 107 -63 156 -150 156c-131 0 -273 -138 -273 -329c0 -46 13 -88 61 -88c41 0 86 32 95 76 c5 26 5 55 5 83c0 54 3 129 73 129c31 0 51 -20 51 -44c0 -60 -53 -119 -67 -168c-2 -7 -2 -13 -2 -19c0 -34 24 -57 59 -57c107 0 148 187 148 261'], + 0x278: [683,233,660,30,630,'472 599l-43 -164c107 -10 201 -60 201 -163c0 -157 -168 -266 -318 -275l-39 -146c-4 -14 -6 -25 -6 -34c0 -27 19 -33 63 -35v-15h-236v15c60 4 81 17 96 72l38 143c-113 7 -198 71 -198 171c0 165 172 258 315 267l43 161c3 13 5 24 5 33c0 28 -18 36 -62 39v15h236 v-15c-59 -3 -80 -11 -95 -69zM421 407l-102 -382c130 19 208 145 211 263c2 67 -32 114 -109 119zM235 25l102 382c-118 -6 -207 -127 -207 -247c0 -68 32 -124 105 -135'], + 0x279: [441,0,402,-45,322,'322 441l-81 -292c-14 -52 -16 -61 -16 -82s18 -26 38 -26c8 0 16 1 31 3v-17l-155 -27l-3 2l55 216l-16 -35c-19 -42 -53 -95 -94 -138c-26 -27 -56 -45 -79 -45c-28 0 -47 21 -47 51s17 54 47 54c18 0 26 -11 35 -26c6 -10 9 -14 16 -14c18 0 46 33 82 94 c43 74 61 114 111 282h76'], + 0x27A: [683,0,383,-45,384,'384 678l-159 -608c-1 -5 -2 -15 -2 -18c0 -18 14 -29 35 -33c8 -2 21 -3 36 -4v-15h-158l55 218l-16 -35c-19 -42 -53 -95 -94 -138c-26 -27 -56 -45 -79 -45c-28 0 -47 21 -47 51s17 54 47 54c18 0 26 -11 35 -26c6 -10 9 -14 16 -14c18 0 46 32 82 94 c18 30 47 83 65 137c21 62 42 130 47 149l30 116c7 26 13 47 13 54c0 19 -23 25 -49 25h-18v16c67 8 109 17 155 27'], + 0x27B: [441,233,353,-45,342,'322 441l-123 -443c-21 -74 -30 -110 -30 -140c0 -39 19 -57 44 -57c36 0 47 60 88 60c21 0 41 -15 41 -39c0 -38 -49 -55 -94 -55c-81 0 -139 39 -139 123c0 42 26 125 34 155l48 173l-16 -35c-19 -42 -53 -95 -94 -138c-26 -27 -56 -45 -79 -45c-28 0 -47 21 -47 51 s17 54 47 54c18 0 26 -11 35 -26c6 -10 9 -14 16 -14c18 0 46 33 82 94c43 74 61 114 111 282h76'], + 0x27C: [441,233,333,-20,412,'176 223l16 35c19 42 53 95 94 138c26 27 56 45 79 45c28 0 47 -21 47 -51s-17 -54 -47 -54c-18 0 -26 11 -35 26c-6 10 -9 14 -17 14c-36 0 -115 -150 -132 -194c-16 -42 -33 -91 -47 -138l-81 -277h-73l146 525c14 52 16 61 16 82s-18 26 -38 26c-8 0 -16 -1 -31 -3v17 l155 27l3 -2'], + 0x27D: [441,233,390,24,412,'176 223l16 35c19 42 53 95 94 138c26 27 56 45 79 45c28 0 47 -21 47 -51s-17 -54 -47 -54c-18 0 -26 11 -35 26c-6 10 -9 14 -16 14c-20 0 -48 -37 -82 -94c-33 -55 -46 -86 -66 -140c-33 -89 -82 -221 -82 -284c0 -38 19 -57 44 -57c36 0 47 60 88 60 c21 0 41 -15 41 -39c0 -38 -49 -55 -94 -55c-80 0 -139 38 -139 123c0 16 6 57 21 110l81 292c14 52 16 61 16 82s-18 26 -38 26c-8 0 -16 -1 -31 -3v17l155 27l3 -2'], + 0x27E: [470,0,401,45,424,'45 0l69 249c35 125 88 221 217 221c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-42 0 -54 60 -88 60c-50 0 -71 -56 -94 -139l-81 -297h-76'], + 0x27F: [470,0,338,66,293,'134 0l83 297c11 38 13 70 13 94c0 28 -8 45 -35 45c-36 0 -46 -60 -89 -60c-19 0 -40 15 -40 38c0 37 46 56 93 56c95 0 134 -54 134 -132c0 -28 -5 -59 -14 -91l-69 -247h-76'], + 0x280: [464,0,475,25,501,'132 464h227c88 0 142 -38 142 -96c0 -75 -61 -119 -154 -146l72 -170c11 -26 22 -34 45 -34h10v-18h-124l-92 209h-37l-26 -106c-4 -17 -7 -32 -7 -43c0 -30 16 -41 53 -42v-18h-216v18c57 5 72 22 87 80l65 257c6 22 8 36 8 46c0 29 -20 42 -53 45v18zM229 242h17 c77 0 162 45 162 125c0 40 -29 65 -83 65c-18 0 -29 -2 -50 -7'], + 0x281: [464,0,475,25,581,'581 446h-10c-23 0 -38 -8 -62 -34l-157 -170c62 -19 94 -52 94 -95c0 -88 -96 -147 -203 -147h-218v18c28 3 44 10 59 24c16 15 21 27 31 67l64 257c5 19 7 31 7 40c0 28 -20 39 -54 40v18h216v-18c-52 -2 -74 -22 -89 -85l-26 -106h37l196 209h115v-18zM224 222 l-45 -183c18 -5 28 -7 46 -7c70 0 128 46 128 112c0 59 -56 78 -112 78h-17'], + 0x282: [442,218,389,9,376,'376 442l-20 -140h-16c-10 83 -40 116 -89 116c-35 0 -59 -20 -59 -57c0 -27 15 -56 54 -102c50 -58 68 -97 68 -136c0 -83 -61 -134 -144 -134c-17 0 -32 1 -55 10c-19 8 -33 9 -44 9c-4 0 -7 -1 -11 -2l-19 -138c-1 -8 -1 -14 -1 -20c0 -19 6 -32 26 -32 c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-72 0 -93 27 -93 65c0 5 1 15 2 20l35 279h16c14 -95 48 -136 100 -136c47 0 76 28 76 77c0 32 -17 66 -56 115c-43 54 -63 99 -63 131c0 66 47 108 121 108c17 0 31 -3 56 -10c19 -6 28 -7 36 -7 c15 0 22 4 30 18h14'], + 0x283: [683,233,415,-110,577,'112 -72l140 537c30 116 111 218 236 218c47 0 89 -21 89 -56c0 -23 -21 -38 -40 -38c-42 0 -54 60 -88 60c-53 0 -84 -85 -98 -140l-136 -524c-30 -116 -110 -218 -235 -218c-45 0 -90 21 -90 55c0 24 21 39 40 39c42 0 54 -60 88 -60c48 0 78 67 94 127'], + 0x284: [683,233,453,-110,595,'137 31l116 465c26 105 126 187 252 187c43 0 90 -19 90 -56c0 -23 -21 -38 -40 -38c-42 0 -54 60 -88 60c-44 0 -104 -24 -127 -116l-127 -502h80l-5 -31h-84c-41 -147 -123 -233 -223 -233c-43 0 -91 20 -91 55c0 24 21 39 39 39c44 0 55 -60 89 -60 c35 0 81 75 112 199h-80l7 31h80'], + 0x285: [470,233,339,79,355,'297 252l-78 -312c-10 -40 -23 -83 -23 -108c0 -20 8 -31 30 -31c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-94 0 -129 54 -129 129c0 27 5 58 13 89l78 312c10 40 18 75 18 99c0 25 -9 40 -34 40c-36 0 -46 -60 -89 -60c-19 0 -40 15 -40 38 c0 37 46 56 93 56c98 0 133 -55 133 -134c0 -25 -1 -58 -8 -84'], + 0x286: [683,243,439,-62,602,'159 14l116 442c15 59 44 129 101 177c38 32 86 50 137 50c34 0 89 -14 89 -57c0 -21 -20 -37 -39 -37c-44 0 -54 60 -89 60c-61 0 -87 -99 -106 -171l-131 -505c29 -29 44 -71 44 -117c0 -34 -5 -68 -23 -99h-26c16 45 20 59 20 93s-8 65 -26 90 c-47 -109 -93 -172 -197 -172c-51 0 -91 39 -91 87c0 96 98 163 178 163c15 0 30 -1 43 -4zM153 -13c-15 4 -31 6 -47 6c-60 0 -143 -61 -143 -134c0 -38 32 -66 74 -66c38 0 67 29 79 65c15 43 26 87 37 129'], + 0x287: [460,97,330,38,296,'120 332l-13 7c60 92 91 121 143 121c27 0 46 -12 46 -37c0 -11 -8 -42 -16 -74l-78 -296h75c1 -3 1 -6 1 -6c0 -11 -9 -20 -33 -25c-32 -7 -97 -56 -133 -110c-4 -6 -10 -9 -14 -9c-6 0 -9 3 -9 8c0 0 0 5 1 7l28 103h-80l5 32h84l87 328c1 4 2 11 2 14 c0 13 -6 16 -15 16c-16 0 -32 -16 -81 -79'], + 0x288: [546,233,278,6,308,'308 428l-5 -32h-84l-138 -520c-4 -15 -7 -29 -7 -42c0 -27 14 -33 22 -33c38 0 47 60 90 60c20 0 40 -15 40 -39c0 -37 -45 -55 -97 -55c-78 0 -123 40 -123 83c0 14 7 48 12 67l126 479h-75c-1 3 -1 6 -1 6c0 11 9 20 33 25c32 7 97 56 133 110c4 6 10 9 14 9 c6 0 9 -3 9 -8c0 0 0 -5 -1 -7l-28 -103h80'], + 0x289: [441,11,500,9,479,'479 261l-5 -31h-63l-25 -97c-5 -19 -19 -66 -19 -78c0 -11 4 -17 11 -17c16 0 32 14 83 81l14 -9c-65 -99 -91 -119 -138 -119c-30 0 -48 17 -48 48c0 21 12 86 43 191c-117 -189 -167 -241 -237 -241c-35 0 -53 16 -53 53c0 19 9 55 27 128l15 60h-75l7 31h76l12 48 c8 33 14 59 14 67c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27l4 -3l-45 -177h157c20 40 37 86 68 171h74l-46 -171h60zM307 230h-148l-36 -147c-1 -3 -3 -12 -3 -16c0 -15 4 -25 19 -25c34 0 80 53 142 147'], + 0x28A: [450,10,537,49,552,'552 430h-38c-29 0 -52 -26 -52 -51c0 -26 39 -50 39 -125c0 -141 -151 -264 -280 -264c-105 0 -172 74 -172 168c0 16 2 34 6 51c21 83 83 135 105 154c10 9 18 27 18 37c0 18 -15 30 -32 30h-38v20h145c-63 -104 -93 -174 -111 -246c-4 -16 -13 -60 -13 -90 c0 -58 34 -104 96 -104c103 0 159 107 181 195c11 45 17 90 17 143c0 31 -2 65 -6 102h135v-20'], + 0x28B: [441,10,500,52,475,'211 438l-75 -311c-2 -8 -6 -24 -6 -32c0 -39 35 -64 76 -64c130 0 228 165 228 277c0 12 -2 21 -5 29c-8 20 -49 32 -49 70c0 22 19 34 36 34c29 0 51 -20 57 -50c2 -9 2 -20 2 -30c0 -164 -111 -371 -296 -371c-78 0 -127 24 -127 90c0 14 2 30 7 50l53 212 c5 20 6 31 6 34c0 7 -5 15 -11 18c-9 5 -12 6 -50 6v14c57 7 93 14 150 27'], + 0x28C: [441,18,444,20,426,'426 20v-13c-45 -7 -80 -14 -112 -21c-8 -3 -15 -4 -20 -4c-9 0 -9 6 -30 114c-13 67 -19 122 -25 257l-31 -32c-72 -74 -137 -184 -137 -231c0 -10 5 -17 18 -29c18 -16 25 -29 25 -45c0 -21 -17 -34 -38 -34c-33 0 -56 32 -56 59c0 43 28 101 63 155 c45 70 101 134 119 153c55 59 82 92 99 92c6 0 9 -10 9 -27v-24c0 -69 11 -202 24 -278s24 -93 61 -93c10 0 20 0 31 1'], + 0x28D: [441,18,667,15,648,'648 19v-13c-31 -5 -65 -9 -95 -17c-13 -3 -22 -7 -29 -7c-11 0 -12 2 -19 34c-14 68 -28 193 -32 281l-192 -305c-5 -8 -8 -10 -13 -10c-6 0 -8 3 -8 14l-32 353c-131 -164 -165 -217 -165 -260c0 -12 6 -20 22 -35s21 -27 21 -41c0 -16 -17 -31 -39 -31 c-30 0 -52 24 -52 56c0 64 74 181 212 349l9 11c27 33 36 43 45 43c7 0 9 -9 11 -35l29 -310l89 152c18 30 36 63 55 99c36 69 53 94 64 94c9 0 11 -8 13 -47l4 -91c4 -87 15 -194 27 -242c9 -37 18 -42 47 -42h28'], + 0x28E: [647,0,444,10,460,'193 255l-21 110c-85 -141 -122 -213 -122 -257c0 -14 7 -20 26 -32c20 -13 26 -23 26 -39c0 -22 -17 -37 -40 -37c-30 0 -52 25 -52 55c0 57 48 167 131 305c104 172 211 287 268 287c30 0 51 -17 51 -43c0 -22 -17 -40 -39 -40c-35 0 -35 28 -61 28 c-13 0 -25 -8 -48 -33c-18 -19 -63 -78 -71 -91c-6 -12 -10 -24 -10 -35c0 -40 55 -264 82 -332c19 -49 37 -64 77 -64c11 0 20 1 31 4v-17c-11 -2 -22 -4 -32 -6c-20 -4 -53 -10 -107 -18h-4c-15 0 -68 166 -85 255'], + 0x28F: [464,0,633,62,603,'603 464v-18c-51 -4 -65 -19 -127 -79l-158 -155l-27 -106c-4 -16 -7 -31 -7 -45c0 -25 11 -43 53 -43v-18h-216v18c66 0 79 44 87 78l27 110l-70 133c-49 93 -63 105 -103 107v18h210v-18c-48 -2 -54 -9 -54 -22c0 -9 4 -15 11 -29l78 -151l153 151c12 12 22 27 22 40 c0 7 -7 10 -37 11v18h158'], + 0x290: [428,218,405,17,429,'348 96l-62 -206c-5 -16 -9 -38 -9 -44c0 -20 3 -30 23 -30c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-64 0 -86 32 -86 65c0 15 11 52 16 69l25 84h-274v18l291 350h-136c-52 0 -71 -9 -91 -60l-16 4l32 116h283v-11l-300 -357h209c20 0 36 24 43 40 '], + 0x291: [428,47,393,17,380,'380 417l-300 -357h116c23 39 62 84 105 84c41 0 69 -22 69 -60c0 -69 -60 -84 -119 -84h-66c-9 -16 -18 -32 -25 -47h-24c7 13 17 34 25 47h-144v18l291 350h-136c-52 0 -71 -9 -91 -60l-16 4l32 116h283v-11zM221 60h74c31 0 47 13 47 27c0 20 -21 36 -41 36 c-21 0 -44 -11 -80 -63'], + 0x292: [450,233,413,21,517,'517 400l-215 -204c11 2 22 3 33 3c69 0 123 -46 123 -133c0 -185 -144 -299 -290 -299c-36 0 -78 14 -104 31c-27 18 -43 48 -43 70c0 23 17 44 49 44c28 0 43 -31 49 -58c12 -53 26 -58 74 -58c66 0 182 78 182 233c0 75 -50 106 -119 106c-14 0 -45 -14 -57 -19 l-11 11l278 259h-199c-73 0 -85 -32 -105 -86h-18l61 150h312v-50'], + 0x293: [450,305,457,7,544,'544 450l-4 -15l-244 -268c5 0 7 1 14 1c57 0 138 -33 138 -133c0 -132 -105 -219 -199 -251l25 -89h-37l-24 78c-31 -6 -44 -6 -78 -6c-77 0 -128 29 -128 77c0 56 47 92 111 92c60 0 86 -36 119 -123c59 33 117 107 117 203c0 85 -53 119 -120 119 c-20 0 -47 -14 -60 -19l-11 11l264 293h-138c-73 0 -86 -34 -106 -88h-18l33 118h346zM205 -201c-34 83 -50 103 -81 103c-26 0 -47 -25 -47 -53c0 -37 49 -53 81 -53c15 0 39 1 47 3'], + 0x294: [683,0,500,55,509,'152 102l68 254c108 1 194 114 194 220c0 47 -15 90 -59 90c-27 0 -56 -29 -63 -60c-9 -38 -22 -68 -55 -68c-25 0 -46 21 -46 42c0 16 10 54 49 76c32 18 70 27 110 27c123 0 159 -63 159 -125c0 -128 -122 -216 -211 -222l-62 -234c-6 -21 -9 -38 -9 -50 c0 -32 21 -35 65 -37v-15h-237v15c30 2 49 6 62 15c17 12 25 34 35 72'], + 0x295: [683,0,500,55,495,'155 102l62 234c-58 11 -120 45 -120 125c0 96 67 222 243 222c40 0 93 -15 119 -36c24 -19 36 -47 36 -65c0 -23 -18 -44 -48 -44c-25 0 -45 24 -51 60c-4 25 -27 68 -66 68c-71 0 -138 -122 -138 -192c0 -65 49 -118 114 -118l-67 -254c-6 -21 -8 -37 -8 -49 c0 -26 15 -35 61 -38v-15h-237v15c62 3 80 10 100 87'], + 0x296: [662,14,393,-25,413,'413 662v-15c-62 -3 -80 -10 -100 -87l-60 -227c58 -11 120 -45 120 -125c0 -96 -67 -222 -243 -222c-40 0 -93 15 -119 36c-24 19 -36 47 -36 65c0 23 18 44 48 44c25 0 45 -24 51 -60c4 -25 27 -68 66 -68c71 0 138 122 138 192c0 65 -49 118 -114 118l65 247 c5 21 8 37 8 49c0 26 -15 35 -61 38v15h237'], + 0x297: [441,238,450,24,459,'28 -84l92 367c25 98 123 158 213 158c70 0 126 -49 126 -117c0 -25 -13 -61 -40 -61c-15 0 -29 13 -29 28c0 18 14 33 14 49c0 40 -32 66 -65 66c-49 0 -115 -43 -128 -95l-97 -387c-2 -9 -3 -19 -3 -28c0 -49 33 -88 85 -88c76 0 126 55 142 121c2 8 3 16 4 24h25 l-9 -38c-20 -83 -96 -153 -203 -153c-72 0 -131 52 -131 122c0 10 1 21 4 32'], + 0x298: [679,17,723,22,704,'421 332c0 -35 -25 -64 -63 -64c-31 0 -63 26 -63 63c0 35 28 63 63 63s63 -28 63 -62zM704 432c0 -232 -191 -449 -426 -449c-151 0 -256 95 -256 249c0 241 204 447 431 447c162 0 251 -102 251 -247zM611 445c0 121 -56 206 -171 206c-164 0 -325 -210 -325 -436 c0 -117 52 -199 170 -199c165 0 326 226 326 429'], + 0x299: [464,0,460,19,505,'126 464h208c119 0 171 -34 171 -92c0 -80 -62 -117 -135 -127c61 -12 109 -39 109 -93c0 -97 -102 -152 -224 -152h-236v18c61 0 82 22 94 71l70 281c3 11 4 21 4 29c0 27 -15 42 -61 47v18zM237 260h53c85 0 136 34 136 108c0 42 -34 64 -112 64h-16 c-14 0 -20 -6 -24 -22zM228 226l-40 -162c-1 -4 -2 -9 -2 -12c0 -16 13 -20 43 -20c80 0 160 32 160 124c0 63 -65 70 -140 70h-21'], + 0x29A: [475,14,479,20,470,'198 249v2c-48 11 -93 33 -93 83c0 55 38 96 87 118c36 16 73 23 105 23c115 0 173 -69 173 -167c0 -172 -128 -322 -292 -322c-58 0 -158 22 -158 105c0 62 39 110 91 135c27 13 62 20 87 23zM283 233h-13c-72 0 -156 -51 -156 -132c0 -50 33 -79 85 -79 c122 0 205 192 205 285c0 67 -23 135 -94 135c-58 0 -117 -50 -117 -113c0 -42 34 -66 83 -66h7v-30'], + 0x29B: [515,11,570,29,650,'473 167l-32 -131c-5 -22 -169 -47 -192 -47c-129 0 -220 50 -220 166c0 170 164 286 317 286c49 0 90 -12 134 -21c17 54 57 95 113 95c27 0 57 -17 57 -48c0 -13 -6 -22 -20 -22c-35 0 -22 49 -55 49c-30 0 -44 -44 -49 -67l-26 -124h-16c-13 74 -53 112 -135 112 c-136 0 -236 -132 -236 -263c0 -84 53 -137 149 -137c21 0 103 7 111 39l26 106c3 13 5 22 5 29c0 25 -18 26 -55 29v13h189v-13c-39 -3 -55 -9 -65 -51'], + 0x29C: [464,0,572,25,671,'671 464v-18c-59 -4 -72 -13 -85 -67l-72 -289c-3 -13 -5 -25 -5 -34c0 -26 14 -37 55 -38v-18h-216v18c63 3 71 16 86 76l32 126h-242l-32 -126c-4 -15 -6 -28 -6 -38c0 -24 13 -36 54 -38v-18h-215v18c64 4 72 18 87 79l70 282c4 15 6 27 6 36c0 23 -15 28 -56 31v18 h215v-18c-57 -4 -70 -12 -84 -67l-31 -126h242l31 126c4 16 6 28 6 37c0 23 -15 26 -56 30v18h216'], + 0x29D: [652,233,403,-80,394,'394 598c0 -27 -24 -50 -50 -50c-30 0 -54 21 -54 52c0 30 25 52 53 52c27 0 51 -26 51 -54zM361 438l-104 -410c-7 -29 -19 -68 -28 -88c37 -46 76 -118 100 -173h-40c-19 50 -40 86 -75 137c-48 -95 -109 -137 -190 -137c-57 0 -104 38 -104 94c0 81 88 139 158 139 c37 0 76 -14 91 -23l77 312c12 49 16 70 16 80c0 22 -12 31 -48 31h-26v16c32 2 85 10 169 25zM161 -55c-23 11 -71 20 -88 20c-50 0 -118 -45 -118 -102c0 -44 44 -61 89 -61c73 0 93 64 117 143'], + 0x29E: [439,255,463,26,473,'473 428l-141 -528c-13 -48 -18 -71 -18 -88c0 -18 17 -24 51 -24h18v-16c-59 -7 -98 -14 -157 -27l-6 6l120 456l-43 -33c-94 -72 -143 -120 -143 -140c0 -11 12 -18 37 -18h14v-16h-179v16c47 3 78 23 225 154l-37 88c-39 92 -62 129 -81 129c-15 0 -27 -11 -45 -42 c-5 -8 -10 -17 -15 -26l-15 11c46 84 71 109 111 109c29 0 49 -19 81 -82c18 -35 44 -97 60 -141l40 32l48 180h75'], + 0x29F: [464,0,470,25,473,'473 127l-67 -127h-381v18c53 2 65 18 77 65l73 294c4 16 7 29 7 39c0 20 -12 27 -50 30v18h193v-18c-60 -3 -66 -24 -77 -70l-76 -307c-2 -6 -3 -15 -3 -18c0 -16 14 -19 58 -19h50c59 0 102 13 134 43c12 12 24 27 43 52h19'], + 0x2A0: [582,209,480,25,666,'395 379l27 84c24 74 71 119 125 119c23 0 55 -1 85 -18c14 -8 34 -24 34 -53c0 -14 -9 -33 -33 -33c-19 0 -36 9 -47 30c-10 19 -23 31 -38 31c-25 0 -36 -12 -57 -87l-172 -603c-1 -4 -2 -8 -2 -11c0 -19 20 -31 57 -31h15v-16h-237v16c63 4 80 19 91 56l90 290 c-80 -127 -131 -164 -208 -164c-63 0 -100 45 -100 116c0 158 156 336 293 336c41 0 67 -17 77 -62zM380 359c0 33 -26 60 -59 60c-29 0 -61 -19 -93 -49c-68 -65 -117 -168 -117 -251c0 -47 16 -77 53 -77c25 0 56 13 82 36c68 59 134 198 134 281'], + 0x2A1: [683,0,500,55,509,'176 193l44 163c108 1 194 114 194 220c0 47 -15 90 -59 90c-27 0 -56 -29 -63 -60c-9 -38 -22 -68 -55 -68c-25 0 -46 21 -46 42c0 16 10 54 49 76c32 18 70 27 110 27c123 0 159 -63 159 -125c0 -128 -122 -216 -211 -222l-39 -143h77l-8 -31h-77l-16 -60 c-6 -21 -8 -38 -8 -50c0 -32 20 -35 64 -37v-15h-236v15c30 2 48 6 61 15c17 12 26 34 36 72l16 60h-78l8 31h78'], + 0x2A2: [683,0,500,55,495,'179 193l38 143c-58 11 -120 45 -120 125c0 96 67 222 243 222c40 0 93 -15 119 -36c24 -19 36 -47 36 -65c0 -23 -18 -44 -48 -44c-25 0 -45 24 -51 60c-4 25 -27 68 -66 68c-71 0 -138 -122 -138 -192c0 -65 49 -118 114 -118l-43 -163h75l-8 -31h-75l-16 -60 c-6 -21 -8 -37 -8 -49c0 -26 15 -35 61 -38v-15h-237v15c62 3 80 10 100 87l16 60h-79l8 31h79'], + 0x2A3: [683,13,743,15,741,'741 417l-300 -357h209c20 0 36 24 43 40l16 -4l-29 -96h-302c-15 -8 -31 -13 -50 -13c-26 0 -41 18 -41 45c0 23 2 39 13 89c-59 -99 -110 -132 -178 -132c-65 0 -107 41 -107 117c0 162 162 335 292 335c42 0 57 -17 66 -58l45 163c15 53 14 57 14 71 c0 21 -9 24 -64 26v17c64 6 100 12 153 23l6 -6l-39 -151l-27 -98h280v-11zM669 368h-136c-52 0 -71 -9 -91 -60l-12 3l-60 -216c-4 -15 -7 -28 -7 -35c0 -12 5 -20 18 -20c8 0 20 6 25 12zM356 361c0 36 -24 57 -47 57c-28 0 -63 -17 -91 -46c-66 -70 -116 -179 -116 -262 c0 -46 23 -73 58 -73c92 0 196 172 196 324'], + 0x2A4: [683,233,743,15,780,'780 400l-206 -204c11 3 13 3 24 3c69 0 123 -46 123 -133c0 -185 -144 -299 -290 -299c-36 0 -78 14 -104 31c-27 18 -43 48 -43 70c0 23 17 44 49 44c28 0 43 -31 49 -58c12 -53 26 -58 74 -58c66 0 182 78 182 233c0 84 -64 106 -112 106c-11 0 -28 -17 -37 -27 l-88 -90c-21 -22 -54 -31 -73 -31c-26 0 -41 18 -41 45c0 23 2 39 13 89c-59 -99 -110 -132 -178 -132c-65 0 -107 41 -107 117c0 162 162 335 292 335c42 0 59 -19 65 -58h1l45 163c15 53 14 57 14 71c0 21 -9 24 -64 26v17c64 6 100 12 153 23l6 -6l-59 -227h312v-50z M729 386h-202c-67 0 -86 -33 -101 -88l-54 -195c-4 -16 -9 -39 -9 -43c0 -12 5 -20 18 -20c6 0 15 7 21 13zM356 361c0 36 -24 57 -47 57c-28 0 -63 -17 -91 -46c-66 -70 -116 -179 -116 -262c0 -46 23 -73 58 -73c92 0 196 172 196 324'], + 0x2A5: [683,47,754,15,741,'741 417l-300 -357h116c23 39 62 84 105 84c41 0 69 -22 69 -60c0 -69 -60 -84 -119 -84h-66c-9 -16 -18 -32 -25 -47h-24c7 13 17 34 25 47h-144c-16 -7 -32 -13 -50 -13c-26 0 -41 18 -41 45c0 23 2 39 13 89c-59 -99 -110 -132 -178 -132c-65 0 -107 41 -107 117 c0 162 162 335 292 335c42 0 59 -19 66 -58l45 163c15 53 14 57 14 71c0 21 -9 24 -64 26v17c64 6 100 12 153 23l6 -6l-39 -152l-27 -97h280v-11zM582 60h74c31 0 47 13 47 27c0 20 -21 36 -41 36c-21 0 -44 -11 -80 -63zM669 368h-136c-52 0 -71 -9 -91 -60l-12 3 l-60 -215c-4 -14 -7 -32 -7 -36c0 -12 5 -20 18 -20c11 0 19 6 27 15zM356 361c0 36 -24 57 -47 57c-28 0 -63 -17 -91 -46c-66 -70 -116 -179 -116 -262c0 -46 23 -73 58 -73c92 0 196 172 196 324'], + 0x2A6: [546,11,500,38,523,'523 442l-20 -140h-16c-10 83 -40 116 -89 116c-35 0 -59 -20 -59 -57c0 -27 15 -56 54 -102c50 -58 68 -97 68 -136c0 -83 -61 -134 -144 -134c-17 0 -32 1 -55 10c-25 10 -55 32 -70 53c-27 -41 -74 -63 -108 -63c-27 0 -46 12 -46 37c0 11 8 42 16 74l78 296h-75 c-1 3 -1 6 -1 6c0 11 9 20 33 25c32 7 97 56 133 110c4 6 10 9 14 9c6 0 9 -3 9 -8c0 0 0 -5 -1 -7l-28 -103h107c18 8 39 13 64 13c17 0 31 -3 56 -10c19 -6 28 -7 36 -7c15 0 22 4 30 18h14zM214 117l13 -7c-3 -5 -6 -10 -9 -14c18 -59 48 -86 91 -86c47 0 76 28 76 77 c0 32 -17 66 -56 115c-43 54 -63 99 -63 131c0 24 7 46 19 63h-78l-87 -328c-1 -4 -2 -11 -2 -14c0 -13 6 -16 15 -16c16 0 32 16 81 79'], + 0x2A7: [683,233,517,-32,655,'320 428l10 37c31 116 111 218 236 218c47 0 89 -21 89 -56c0 -23 -21 -38 -40 -38c-42 0 -54 60 -88 60c-53 0 -84 -85 -98 -140l-136 -524c-30 -116 -110 -218 -235 -218c-45 0 -90 21 -90 55c0 24 21 39 40 39c42 0 54 -60 88 -60c48 0 78 67 94 127l38 146 c-62 -57 -100 -85 -144 -85c-27 0 -46 12 -46 37c0 11 8 42 16 74l78 296h-75c-1 3 -1 6 -1 6c0 11 9 20 33 25c32 7 97 56 133 110c4 6 10 9 14 9c6 0 9 -3 9 -8c0 0 0 -5 -1 -7l-28 -103h104zM312 396h-105l-87 -328c-1 -4 -2 -11 -2 -14c0 -13 6 -16 15 -16 c16 0 46 23 106 79'], + 0x2A8: [546,16,632,38,612,'207 396l-87 -328c-1 -4 -2 -14 -2 -17c0 -14 17 -14 30 -14c21 0 63 15 84 25c-10 22 -15 52 -15 81c0 93 52 180 123 237c49 39 106 61 167 61s105 -34 105 -81c0 -27 -22 -48 -48 -48c-28 0 -39 20 -39 40c0 18 15 29 15 48c0 12 -14 20 -37 20 c-40 0 -80 -18 -109 -48c-56 -59 -91 -144 -91 -233c0 -8 2 -33 4 -40c68 33 123 50 178 50c44 0 85 -26 85 -65c0 -55 -38 -100 -141 -100c-42 0 -93 2 -128 15c-21 8 -46 25 -55 39c-61 -31 -118 -49 -163 -49c-17 0 -45 7 -45 37c0 11 8 42 16 74l78 296h-75 c-1 3 -1 6 -1 6c0 11 9 20 33 25c32 7 97 56 133 110c4 6 10 9 14 9c6 0 9 -3 9 -8c0 0 0 -5 -1 -7l-28 -103h80l-5 -32h-84zM537 79c0 23 -25 37 -57 37s-78 -2 -165 -45c21 -51 110 -54 128 -54c66 0 94 29 94 62'], + 0x20A3: [653,0,611,8,645,'51 270h89l25 90h-89l8 30h89l41 146c7 25 10 45 10 61c0 28 -10 34 -76 40v16h497l-32 -154l-21 2c3 22 3 27 3 33c0 73 -23 86 -199 86c-46 0 -61 -6 -68 -32l-55 -198h168l-8 -30h-169l-25 -90h169l-8 -30h-169l-35 -125c-7 -25 -14 -45 -14 -60c0 -24 18 -35 77 -39 v-16h-251v16c58 4 69 26 83 78l40 146h-88'], + 0x20A4: [670,8,500,10,517,'60 285h120c7 57 12 85 13 90h-109l8 30h107c19 87 43 143 88 197c40 48 83 68 137 68c55 0 93 -31 93 -76c0 -27 -14 -41 -39 -41c-17 0 -31 9 -36 44c-4 31 -16 44 -40 44c-53 0 -74 -47 -113 -236h132l-8 -30h-130c-1 -5 -2 -9 -21 -90h128l-8 -30h-128 c-15 -58 -26 -83 -57 -151c71 -30 117 -38 160 -38c36 0 52 9 79 28l10 7l11 -9c-26 -64 -75 -100 -142 -100c-49 0 -77 12 -144 65c-38 -50 -61 -63 -96 -63c-41 0 -65 25 -65 64c0 36 33 68 88 68c15 0 34 0 62 -11l17 140h-125zM146 73c-28 20 -40 25 -61 25 c-31 0 -53 -18 -53 -45c0 -21 19 -37 43 -37c27 0 56 23 71 57'], + 0x20A7: [653,13,1149,0,1126,'242 313l-53 -193c-7 -27 -14 -48 -14 -63c0 -23 15 -35 69 -41v-16h-244v16c57 8 66 17 84 82l116 414c13 47 17 68 17 83c0 27 -14 35 -71 42v16h221c147 0 205 -52 205 -148c0 -54 -24 -109 -65 -143c-46 -38 -96 -57 -185 -57c-42 0 -54 2 -80 8zM320 592l-69 -245 c22 -5 32 -5 42 -5c62 0 77 6 108 24c44 25 68 69 68 134c0 89 -35 123 -117 123c-28 0 -26 -8 -32 -31zM796 146h16c14 -95 48 -136 100 -136c47 0 76 28 76 77c0 32 -17 66 -56 115c-43 54 -63 99 -63 131c0 66 47 108 121 108c17 0 31 -3 56 -10c19 -6 28 -7 36 -7 c15 0 22 4 30 18h14l-20 -140h-16c-10 83 -40 116 -89 116c-35 0 -59 -20 -59 -57c0 -27 15 -56 54 -102c50 -58 68 -97 68 -136c0 -83 -61 -134 -144 -134c-17 0 -32 1 -55 10c-19 8 -33 9 -44 9s-22 -5 -29 -21h-16zM825 428l-5 -32h-84l-87 -328c-1 -4 -2 -11 -2 -14 c0 -13 6 -16 15 -16c16 0 32 16 81 79l13 -7c-60 -92 -91 -121 -143 -121c-27 0 -46 12 -46 37c0 11 8 42 16 74l78 296h-75c-1 3 -1 6 -1 6c0 11 9 20 33 25c32 7 97 56 133 110c4 6 10 9 14 9c6 0 9 -3 9 -8c0 0 0 -5 -1 -7l-28 -103h80'], + 0x20AC: [664,12,500,16,538,'24 290h33c8 37 14 58 25 90h-34l8 30h38c65 149 183 254 297 254c46 0 119 -15 147 -53l-30 -111h-15l1 15v10c0 65 -44 112 -110 112c-71 0 -143 -88 -197 -227h208l-8 -30h-210c-11 -34 -18 -58 -26 -90h213l-8 -30h-212c-7 -36 -11 -70 -11 -99 c0 -79 22 -133 77 -133c64 0 97 19 176 106l10 -10c-85 -102 -138 -136 -213 -136c-87 0 -142 66 -142 176c0 28 4 61 10 96h-35'], + 0x2460: [676,14,684,0,684,'304 473v25c58 2 114 19 120 19c4 0 7 -4 7 -11c0 -3 -5 -22 -7 -30l-76 -266c-3 -12 -7 -23 -7 -30c0 -12 8 -19 34 -19h15v-20h-173v20c49 3 61 10 66 26l75 259c2 8 4 20 4 20c0 7 -7 10 -20 10c-11 0 -27 -2 -38 -3zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2461: [676,14,684,0,684,'251 413l-20 6c24 65 66 98 130 98c60 0 104 -43 104 -100c0 -41 -25 -70 -89 -129l-101 -93h95c35 0 47 8 62 35l19 -6l-32 -83h-218v19l124 122c45 44 82 79 82 123c0 34 -23 60 -69 60c-37 0 -67 -16 -87 -52zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2462: [676,14,684,0,684,'290 443l-20 6c22 47 64 68 109 68c50 0 86 -31 86 -73s-24 -71 -78 -84c32 -16 46 -43 46 -79c0 -95 -82 -147 -169 -147c-46 0 -71 16 -72 38c0 17 11 29 28 29c12 0 23 -4 42 -18c15 -11 31 -15 42 -15c48 0 75 37 75 82c0 59 -39 84 -97 84h-18v21 c63 15 142 19 142 82c0 27 -22 44 -52 44c-26 0 -43 -13 -64 -38zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x2463: [676,14,684,0,684,'462 517l-68 -234h58l-10 -48h-62l-25 -95h-54l26 95h-159l15 48l249 234h30zM386 439l-164 -156h116zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2464: [676,14,684,0,684,'487 517l-19 -52h-142l-17 -37c79 -13 136 -53 136 -130c0 -96 -82 -164 -183 -164c-39 0 -69 13 -69 39c0 16 11 29 26 29c8 0 21 -5 38 -17c14 -11 20 -15 37 -15c54 0 103 51 103 107c0 29 -14 53 -34 66c-20 14 -43 24 -105 32v19l64 123h165zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2465: [676,14,684,0,684,'479 524v-21c-70 -9 -142 -54 -185 -115c16 5 33 6 47 6c58 0 108 -43 108 -105c0 -86 -68 -155 -155 -155c-75 0 -115 50 -115 128c0 75 39 148 108 197c57 41 102 55 192 65zM387 297c0 41 -29 62 -69 62c-65 0 -85 -70 -85 -128c0 -46 26 -70 58 -70 c64 0 96 80 96 136zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2466: [676,14,684,0,684,'495 506l-235 -372h-54l218 331h-123c-41 0 -57 -11 -85 -41l-18 9l54 84h233zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2467: [676,14,684,0,684,'484 436c0 -45 -25 -70 -90 -89c47 -39 64 -67 64 -107c0 -64 -55 -107 -130 -107c-65 0 -127 30 -127 100c0 52 40 90 108 110c-36 35 -48 55 -48 85c0 58 45 89 111 89c67 0 112 -33 112 -81zM436 430c0 36 -27 62 -65 62c-36 0 -57 -20 -57 -51c0 -21 11 -38 56 -75 c50 21 66 39 66 64zM405 224c0 29 -6 40 -72 99c-51 -17 -84 -54 -84 -96c0 -43 42 -69 83 -69c46 0 73 30 73 66zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2468: [676,14,684,0,684,'200 134v21c51 9 79 25 120 56c31 24 57 54 70 76c-25 -17 -50 -21 -73 -21c-55 0 -98 44 -98 103c0 83 65 148 146 148c72 0 117 -50 117 -125c0 -79 -42 -147 -113 -198c-48 -35 -87 -47 -169 -60zM428 423c0 44 -22 67 -58 67c-60 0 -89 -61 -89 -114 c0 -49 20 -75 58 -75c68 0 89 52 89 122zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24B6: [676,14,684,0,684,'544 141h-164v22c37 2 50 8 50 20c0 6 -1 10 -2 15l-16 67h-133l-34 -56c-7 -12 -15 -27 -15 -34c0 -8 10 -11 40 -12v-22h-124v22c32 6 43 20 83 85l169 276h19l75 -310c9 -39 18 -49 52 -51v-22zM404 299l-30 124l-75 -124h105zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24B7: [676,14,684,0,684,'238 517h152c85 0 130 -31 130 -92c0 -53 -39 -74 -80 -84c38 -17 58 -47 58 -85c0 -78 -66 -115 -163 -115h-165v22c34 6 40 10 48 40l63 242c4 14 5 26 5 33c0 11 -10 14 -48 17v22zM322 357h18c75 0 114 25 114 72c0 41 -21 58 -69 58c-21 0 -27 0 -31 -15zM313 323 l-18 -75c-8 -34 -14 -56 -14 -60c0 -11 15 -17 39 -17c66 0 108 29 108 84c0 33 -19 55 -41 63c-12 4 -38 5 -74 5zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24B8: [676,14,684,0,684,'544 524l-21 -125h-20c-6 59 -38 92 -94 92c-109 0 -185 -102 -185 -204c0 -81 45 -115 115 -115c52 0 92 16 145 66l18 -14c-61 -64 -114 -90 -179 -90c-101 0 -177 57 -177 156c0 136 126 234 255 234c20 0 47 -1 73 -9c13 -4 22 -5 28 -5c11 0 18 6 23 14h19zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24B9: [676,14,684,0,684,'211 517h160c100 0 173 -57 173 -160c0 -139 -117 -216 -250 -216h-148v22c33 6 38 10 45 37l60 248c3 13 4 24 4 30c0 11 -8 16 -44 17v22zM318 470l-60 -246c-6 -25 -7 -35 -7 -39c0 -10 12 -14 37 -14c115 0 188 83 188 193c0 52 -18 85 -47 105c-17 11 -41 18 -73 18 c-20 0 -34 -1 -38 -17zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BA: [676,14,684,0,684,'520 517l-17 -99h-17c1 13 1 26 1 33c-1 28 -20 34 -106 34c-30 0 -36 -1 -38 -9l-30 -121h36c48 0 58 3 77 50h16l-37 -141h-17c3 15 4 30 4 36c0 21 -18 21 -33 21h-54l-14 -57c-10 -40 -18 -73 -18 -79c1 -9 14 -12 43 -12c51 0 81 5 109 21c18 10 28 18 48 48h21 l-36 -101h-288v22c33 6 36 9 43 36l62 251c3 11 4 24 4 28c0 10 -9 14 -45 17v22h286zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BB: [676,14,684,0,684,'520 517l-17 -99h-18c2 13 2 22 2 22c0 40 -11 45 -109 45c-25 0 -32 -2 -35 -12l-30 -118h37c49 0 57 8 76 48h17l-39 -143h-17c3 15 4 30 4 37c0 24 -13 24 -38 24h-48l-28 -118c-2 -8 -5 -20 -5 -25c0 -8 11 -13 43 -15v-22h-145v22c34 2 39 14 45 38l60 246 c3 14 4 24 4 32c0 10 -6 13 -44 16v22h285zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302 '], + 0x24BC: [676,14,684,0,684,'544 333v-22c-40 -2 -49 -7 -56 -35l-25 -107c-46 -24 -90 -35 -141 -35c-98 0 -176 58 -176 161c0 127 106 229 230 229c26 0 54 -4 80 -13c14 -5 20 -6 25 -6c16 0 26 6 37 19h12l-27 -125h-19c-2 26 -10 48 -22 62c-18 20 -44 31 -81 31c-108 0 -165 -111 -165 -210 c0 -75 47 -115 120 -115c31 0 62 13 67 31l22 73c3 11 4 19 4 25c0 8 -9 12 -48 15v22h163zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BD: [676,14,684,0,684,'537 517v-22c-27 -6 -32 -16 -37 -36l-69 -258c-2 -9 -5 -20 -5 -25c0 -7 6 -10 28 -13v-22h-143v22c33 3 50 14 56 38l31 121h-125l-31 -121c-2 -8 -5 -19 -5 -25c0 -7 3 -11 25 -13v-22h-133v22c26 3 41 12 49 43l63 239c4 15 5 27 5 33c0 11 -8 14 -37 17v22h144v-22 c-29 -2 -40 -14 -45 -34l-25 -103h126l25 94c2 6 3 22 3 26c-1 9 -8 15 -35 17v22h135zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BE: [676,14,684,0,684,'448 517v-22c-36 -4 -40 -15 -49 -50l-60 -235c-5 -18 -7 -28 -7 -35c0 -8 11 -12 25 -12v-22h-133v22c32 3 43 20 49 43l62 235c3 11 7 30 7 35c0 13 -10 17 -38 19v22h144zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346 c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BF: [676,14,684,0,684,'480 517v-22c-37 -4 -40 -18 -45 -37l-52 -202c-20 -76 -39 -122 -118 -122c-48 0 -81 24 -81 56c0 21 16 37 35 37c18 0 34 -11 34 -30c0 -10 -3 -10 -3 -17c0 -10 8 -15 21 -15c20 0 29 21 34 41l63 239c3 12 5 23 5 32c0 12 -7 15 -37 18v22h144zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C0: [676,14,684,0,684,'544 517v-22c-16 0 -27 -6 -43 -18l-162 -121l100 -159c17 -27 22 -31 60 -34v-22h-161v22c34 2 41 7 41 13s-8 19 -17 33l-76 123l-30 -122c-3 -11 -6 -25 -6 -29c0 -12 11 -15 42 -18v-22h-149v22c36 4 41 10 47 34l62 258c2 10 4 18 4 22c0 11 -11 16 -47 18v22h163 v-22c-31 -2 -50 -11 -56 -36l-22 -96l78 56c40 29 75 55 75 66c0 4 -6 7 -17 8l-17 2v22h131zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C1: [676,14,684,0,684,'492 253l-34 -112h-276v22c29 3 41 16 47 38l65 244c4 15 6 25 6 32c0 10 -7 16 -38 18v22h144v-22c-30 -2 -39 -16 -45 -38l-60 -233c-3 -12 -6 -28 -6 -32c0 -15 12 -18 51 -18c50 0 70 3 92 21c16 12 26 26 39 58h15zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C2: [676,14,684,0,684,'571 517v-22c-31 -5 -38 -12 -44 -36l-67 -257c-3 -13 -5 -22 -5 -26c0 -10 9 -12 42 -13v-22h-150v22c28 2 42 17 50 47l61 231l-185 -300h-11l-19 295l-56 -225c-2 -10 -4 -23 -4 -27c0 -12 11 -19 39 -21v-22h-106v22c28 3 36 13 50 70l55 222c4 15 5 23 5 27 c0 7 -13 11 -39 13v22h96l16 -273l171 273h101zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24C3: [676,14,684,0,684,'520 517v-22c-31 -10 -34 -14 -48 -79l-60 -282h-11l-118 301l-47 -222c-2 -11 -4 -22 -4 -28c0 -11 12 -18 37 -20v-22h-99v22c28 4 34 14 48 81l42 194c1 6 4 25 4 29c0 13 -16 26 -40 26v22h79l106 -274h1l43 202c3 12 4 22 4 28c0 10 -9 19 -36 22v22h99zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C4: [676,14,684,0,684,'543 378c0 -133 -125 -244 -255 -244c-82 0 -142 52 -142 140c0 123 121 250 250 250c91 0 147 -58 147 -146zM473 407c0 56 -34 85 -82 85c-108 0 -175 -147 -175 -232c0 -64 33 -94 83 -94c112 0 174 157 174 241zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C5: [676,14,684,0,684,'249 517h139c87 0 132 -32 132 -92c0 -85 -75 -115 -156 -115c-26 0 -42 2 -53 6l-30 -117c-2 -8 -4 -19 -4 -22c1 -9 9 -14 42 -14v-22h-150v22c34 4 42 17 51 51l58 219c7 26 9 37 9 44c0 9 -6 16 -38 18v22zM351 470l-32 -124c13 -1 16 -1 26 -1c59 0 107 11 109 75 c1 49 -27 67 -74 67c-15 0 -26 -7 -29 -17zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302 '], + 0x24C6: [676,14,684,0,684,'162 116l-13 18c51 33 59 38 101 72c-65 16 -103 65 -103 136c0 128 119 249 249 249c87 0 146 -60 146 -142c0 -126 -117 -248 -253 -248l-18 -18c25 0 66 -8 91 -14c22 -5 41 -8 58 -8c45 0 68 12 103 44l17 -13c-40 -49 -86 -83 -156 -83c-24 0 -57 4 -94 15 c-26 7 -45 10 -56 10c-25 0 -48 -6 -72 -18zM472 473c0 58 -33 86 -81 86c-106 0 -174 -139 -174 -233c0 -59 34 -93 78 -93c111 0 177 143 177 240zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C7: [676,14,684,0,684,'520 141h-91l-82 181l-35 2l-27 -108c-4 -14 -8 -32 -8 -38c0 -12 13 -14 42 -15v-22h-150v22c34 4 42 18 51 52l61 228c4 15 6 24 6 32c0 16 -12 17 -38 20v22h145c70 0 125 -28 125 -87c0 -65 -47 -93 -108 -103l55 -122c13 -30 24 -42 54 -42v-22zM351 470l-30 -114 c11 -1 16 -1 26 -1c67 0 107 25 107 70c0 36 -21 62 -72 62c-16 0 -28 -6 -31 -17zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C9: [676,14,684,0,684,'531 516l-28 -103h-20c1 9 2 20 2 27c0 30 -16 43 -56 43h-36l-67 -259c-5 -19 -10 -41 -10 -48c0 -11 16 -13 39 -13v-22h-160v22c47 1 55 17 64 50l71 270c-95 0 -107 -12 -134 -70h-22l28 103h329zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344 c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CA: [676,14,684,0,684,'538 517v-22c-33 -8 -33 -10 -50 -77l-40 -158c-19 -75 -68 -126 -142 -126c-72 0 -132 36 -132 93c0 14 4 37 9 55l41 156c3 10 8 35 8 40c0 10 -9 16 -43 17v22h155v-22c-36 -2 -45 -12 -54 -46l-47 -185c-4 -16 -5 -37 -5 -43c0 -34 31 -51 70 -51c52 0 86 11 115 123 l33 128c5 20 10 51 10 55c0 12 -10 16 -38 19v22h110zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24CB: [676,14,684,0,684,'544 517v-22c-15 -1 -25 -7 -33 -19l-214 -335h-13l-61 274c-16 72 -18 76 -53 80v22h150v-22c-37 -4 -44 -8 -44 -20c0 -4 1 -15 2 -20l44 -218l118 189c13 20 25 39 25 51c0 10 -9 16 -39 18v22h118zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344 c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CC: [676,14,684,0,684,'569 517v-21c-22 -7 -28 -14 -40 -38l-151 -317h-12l-35 245l-110 -245h-12l-42 284c-6 39 -10 56 -17 63c-3 3 -10 5 -29 7v22h130v-22c-27 -3 -37 -7 -37 -21c0 -3 1 -16 2 -20l28 -199l80 179l-5 33c-3 23 -9 26 -41 28v22h131v-22c-27 -3 -34 -8 -34 -17 c0 -4 3 -33 5 -49l23 -174l89 189c6 14 10 25 10 34c0 10 -9 16 -36 17v22h103zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CD: [676,14,684,0,684,'520 517v-21c-23 -10 -44 -24 -66 -52l-81 -103l57 -139c12 -30 20 -35 57 -39v-22h-147v22c30 0 40 4 40 13c0 6 -4 16 -9 27l-38 88l-71 -94c-6 -8 -11 -16 -11 -21c0 -9 12 -13 36 -13v-22h-117v22c33 7 47 23 113 109l38 49l-57 140c-9 22 -18 31 -51 34v22h143v-22 c-29 -4 -37 -7 -37 -15c0 -6 3 -14 10 -30l31 -77l72 90c6 8 8 15 8 19c0 7 -9 12 -34 13v22h114zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CE: [676,14,684,0,684,'536 517v-21c-23 -7 -39 -18 -52 -33l-128 -149l-26 -101c-5 -18 -8 -30 -8 -36c0 -10 9 -14 41 -14v-22h-165v22c40 0 57 12 64 40l30 112l-54 146c-9 25 -14 30 -50 34v22h156v-22c-37 -3 -45 -6 -45 -13c0 -3 3 -16 8 -29l38 -105l81 91c9 10 30 35 30 42 s-8 11 -46 14v22h126zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CF: [676,14,684,0,684,'520 500l-260 -326h82c52 0 81 4 100 18c16 12 27 27 42 55h18l-28 -106h-304v17l261 326h-89c-37 0 -65 -4 -81 -14c-18 -12 -24 -22 -38 -51h-18l25 98h290v-17zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346 c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D0: [676,14,684,0,684,'482 264l16 -12c-53 -57 -70 -70 -97 -70c-20 0 -30 10 -30 31c0 16 2 24 7 43c-43 -53 -79 -73 -121 -73c-38 0 -70 24 -70 72c0 89 96 186 182 186c24 0 43 -10 53 -27l5 20l4 3l40 4l8 -3c-1 -5 -4 -16 -5 -20c-26 -92 -50 -179 -50 -191c0 0 3 -3 6 -3 c7 0 12 2 52 40zM408 388c0 19 -13 28 -34 28c-30 0 -57 -15 -81 -47c-25 -32 -46 -76 -46 -109c0 -29 16 -38 39 -38c30 0 60 29 77 51c27 35 45 79 45 115zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346z M642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D1: [676,14,684,0,684,'337 469l-42 -145c37 51 70 69 112 69c44 0 80 -27 80 -75c0 -90 -102 -184 -200 -184c-36 0 -89 14 -89 37c0 2 0 3 1 5l79 283c3 10 5 16 5 21c0 7 -11 8 -42 9v21c43 4 70 8 103 14l6 -7c-5 -19 -9 -34 -13 -48zM427 310c0 31 -17 43 -44 43c-30 0 -56 -23 -82 -60 c-26 -39 -41 -89 -41 -119c0 -12 8 -15 27 -15c28 0 54 11 76 31c35 31 64 82 64 120zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D2: [676,14,684,0,684,'428 262l15 -12c-44 -49 -80 -68 -128 -68c-63 0 -102 31 -102 94c0 95 95 165 185 165c43 0 74 -23 74 -51c0 -19 -16 -32 -34 -32c-20 0 -29 13 -29 28c0 12 9 22 9 26c0 3 -9 4 -22 4c-78 0 -123 -78 -123 -140c0 -41 23 -61 60 -61c34 0 61 16 95 47zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D3: [676,14,684,0,684,'496 524l8 -7c-6 -16 -11 -35 -17 -55l-59 -211c-6 -23 -19 -66 -19 -71c0 -3 3 -5 10 -5c10 0 17 5 51 39l15 -11c-33 -46 -66 -69 -100 -69c-18 0 -31 13 -31 31c0 14 2 21 4 30c-34 -45 -65 -59 -104 -59c-45 0 -74 24 -74 72c0 92 99 185 182 185c23 0 36 -10 43 -28 l23 80c7 23 7 28 7 37c0 6 -7 7 -42 8v21c45 3 71 7 103 13zM392 340c0 19 -14 27 -28 27c-69 0 -123 -101 -123 -155c0 -26 15 -37 37 -37c56 0 114 84 114 165zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346 c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D4: [676,14,684,0,684,'433 261l16 -12c-39 -44 -84 -67 -138 -67s-94 33 -94 84c0 88 94 175 193 175c36 0 57 -18 57 -44c0 -51 -68 -95 -183 -108c-4 -9 -4 -19 -4 -25c0 -27 26 -44 61 -44c28 0 53 10 92 41zM418 399c0 11 -4 16 -21 16c-36 0 -76 -37 -103 -99c60 7 124 36 124 83z M684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D5: [676,14,684,0,684,'278 432h56c6 18 10 35 19 52c18 35 48 76 100 76c31 0 55 -19 55 -42c0 -15 -10 -30 -28 -30c-15 0 -27 7 -27 23c0 10 8 17 8 20c0 4 -4 6 -10 6c-32 0 -52 -33 -65 -105h65l-6 -28h-65l-35 -160c-21 -97 -61 -149 -117 -149c-29 0 -52 16 -52 38c0 16 11 28 27 28 c14 0 25 -10 25 -23c0 -9 -3 -11 -6 -15c1 -2 5 -5 9 -5c24 0 42 26 53 78l42 208h-54zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D6: [676,14,684,0,684,'500 467h-30c3 -7 3 -17 3 -24c0 -55 -62 -101 -125 -101c-20 0 -22 3 -27 3c-10 0 -19 -9 -19 -17s16 -12 46 -18c67 -14 103 -41 103 -84c0 -54 -53 -92 -144 -92c-72 0 -122 24 -122 72c0 30 13 48 70 78c-7 6 -11 14 -11 22c0 18 10 35 36 47c-28 14 -42 37 -42 69 c0 62 68 102 137 102c25 0 50 -5 79 -21h46v-36zM412 460c0 29 -13 38 -37 38c-39 0 -77 -38 -77 -89c0 -28 15 -41 40 -41c23 0 40 10 54 31c13 20 20 41 20 61zM404 207c0 17 -14 27 -33 35c-33 15 -66 21 -89 28c-22 -10 -53 -28 -53 -54c0 -39 35 -56 87 -56 c53 0 88 23 88 47zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D7: [676,14,684,0,684,'480 214l16 -11c-43 -53 -66 -70 -99 -70c-20 0 -32 12 -32 30c0 11 3 28 10 51l33 113c2 7 3 14 3 18s-2 6 -15 6c-24 0 -63 -33 -94 -74c-24 -33 -35 -51 -57 -139h-56l87 322c4 14 5 18 5 20c0 6 -15 9 -25 9h-20v21c41 4 67 7 104 14l8 -7l-63 -226 c51 69 96 101 135 101c31 0 46 -20 46 -45c0 -6 -3 -19 -6 -31l-34 -117c-3 -11 -5 -19 -5 -23s3 -4 8 -4c11 0 18 6 51 42zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D8: [676,14,684,0,684,'406 473c0 -20 -14 -35 -33 -35c-20 0 -37 16 -37 35c0 20 16 35 35 35c20 0 35 -16 35 -35zM387 214l15 -11c-35 -51 -58 -70 -91 -70c-20 0 -35 13 -35 37c0 16 5 32 13 62l26 95c3 10 5 20 5 24c0 5 -7 6 -41 6v21c33 1 71 5 101 15l10 -8l-57 -196 c-1 -3 -2 -9 -2 -11c0 -4 2 -6 7 -6c10 0 23 11 49 42zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24D9: [676,14,684,0,684,'462 527c0 -19 -15 -34 -34 -34c-20 0 -36 16 -36 35s15 35 34 35c20 0 36 -17 36 -36zM445 443l-54 -219c-22 -88 -61 -129 -116 -129c-30 0 -53 16 -53 39c0 17 14 30 29 30s26 -12 26 -24c0 -9 -4 -11 -7 -16c1 -3 4 -5 9 -5c25 0 36 23 53 92l38 155c6 24 8 35 8 40 c0 9 -7 11 -27 11h-20v20c23 1 70 5 106 13zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24DA: [676,14,684,0,684,'485 385v-22c-33 -1 -53 -12 -139 -79l22 -43c25 -48 42 -67 52 -67c13 0 27 21 38 38l17 -10c-33 -54 -50 -69 -76 -69c-20 0 -37 10 -59 48c-10 17 -26 49 -38 73l-22 -16l-27 -99h-55l81 296c7 27 10 39 10 47c0 3 -11 6 -31 6h-15v21c45 3 67 8 105 15l7 -7l-65 -241 l40 29c45 32 67 48 67 55c0 2 -7 3 -21 3h-12v22h121zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24DB: [676,14,684,0,684,'415 518l-83 -316c-3 -10 -6 -24 -6 -28c0 -2 3 -4 9 -4c8 0 21 8 54 50l17 -9c-41 -59 -66 -77 -100 -77c-21 0 -35 12 -35 36c0 7 4 25 5 29l71 269c1 3 2 15 2 15c0 3 -10 5 -28 5h-14v21c41 4 64 8 99 15zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24DC: [676,14,684,0,684,'559 263l18 -9c-43 -58 -76 -72 -104 -72c-18 0 -29 10 -29 34c0 9 3 23 7 36l35 122c2 7 3 14 3 19s-4 7 -13 7c-17 0 -52 -24 -81 -61c-30 -38 -42 -65 -66 -152h-57l18 59c25 83 40 140 40 147c0 5 -5 7 -12 7c-22 0 -61 -30 -94 -76c-21 -29 -30 -48 -60 -137h-56 l28 87c23 71 31 115 31 123c0 4 -8 6 -25 6h-19v21c52 8 67 10 109 17l8 -3l-28 -96c49 67 91 99 130 99c28 0 44 -16 44 -40c0 -12 -6 -36 -13 -57c37 50 71 97 131 97c25 0 40 -17 41 -41c0 -4 -2 -19 -4 -30l-37 -131c-2 -4 -4 -11 -4 -14c0 -2 1 -4 5 -4c9 0 22 8 39 26 zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24DD: [676,14,684,0,684,'482 263l16 -11c-48 -58 -65 -70 -96 -70c-18 0 -35 11 -35 36c0 8 2 23 8 43l27 87c4 14 8 28 8 40s-9 12 -17 12c-26 0 -65 -40 -94 -80c-23 -32 -29 -45 -57 -133h-56l55 189c3 10 3 14 3 19c0 4 -5 8 -24 8h-20v21c44 5 69 10 110 17l8 -3l-33 -99 c55 73 95 102 136 102c34 0 45 -19 45 -42c0 -11 -1 -22 -4 -32l-32 -111c-3 -9 -7 -26 -7 -31c0 -2 2 -4 8 -4c11 0 21 10 51 42zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24DE: [676,14,684,0,684,'486 355c0 -93 -98 -173 -188 -173c-63 0 -101 32 -101 84c0 95 95 175 192 175c55 0 97 -32 97 -86zM426 366c0 36 -19 50 -46 50c-69 0 -123 -100 -123 -160c0 -36 22 -49 50 -49c71 0 119 95 119 159zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344 c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24DF: [676,14,684,0,684,'343 523l6 -8c-2 -13 -6 -25 -12 -45c32 37 67 53 103 53c53 0 84 -31 84 -81c0 -100 -99 -190 -196 -190c-15 0 -29 2 -46 9l-18 -65c-2 -7 -4 -23 -4 -23c0 -8 11 -10 44 -10v-22h-143v22c29 0 36 8 43 32l67 246c4 13 9 35 9 39c0 8 -16 8 -26 8h-19v22zM457 436 c0 36 -12 49 -41 49c-35 0 -71 -29 -85 -61c-18 -43 -38 -112 -38 -133c0 -8 11 -15 30 -15c75 0 134 92 134 160zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E0: [676,14,684,0,684,'496 516l-96 -320c-3 -11 -6 -19 -6 -22c0 -7 13 -11 35 -11h14v-22h-165v22c43 2 55 12 61 30l43 136c-45 -58 -78 -75 -125 -75c-44 0 -74 28 -74 75c0 96 103 194 194 194c26 0 43 -8 53 -31l9 24h57zM418 468c0 17 -19 29 -39 29c-72 0 -129 -104 -129 -160 c0 -25 9 -40 32 -40c15 0 37 7 54 19c42 32 82 107 82 152zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24E1: [676,14,684,0,684,'343 437l-25 -92c11 19 32 50 55 69c19 16 39 27 55 27c21 0 39 -15 39 -34c0 -23 -12 -37 -33 -37c-30 0 -26 22 -39 22c-11 0 -29 -18 -50 -50c-30 -44 -40 -67 -69 -160h-57l49 171c4 14 10 33 10 40c0 11 -11 12 -24 12h-24v22c48 5 64 7 106 14zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E2: [676,14,684,0,684,'455 440l-13 -88h-18c-5 45 -24 63 -54 63c-20 0 -34 -6 -34 -23c0 -13 10 -27 36 -51c34 -33 47 -56 47 -80c0 -52 -38 -78 -92 -78c-12 0 -22 0 -37 5c-13 5 -21 5 -27 5c-7 0 -15 -1 -18 -10h-15l11 97h17c8 -50 30 -72 63 -72c27 0 44 11 44 32c0 17 -12 35 -37 61 c-30 30 -46 56 -46 75c0 43 31 64 80 64c13 0 23 -1 38 -5c12 -3 18 -4 21 -4c9 0 14 2 19 9h15zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E3: [676,14,684,0,684,'442 446l-6 -38h-67l-52 -190c-2 -7 -7 -27 -7 -29c0 -5 7 -5 10 -5c13 0 26 15 61 56l20 -13c-51 -70 -77 -93 -118 -93c-24 0 -41 11 -42 33c0 9 6 31 11 52l49 189h-53c-3 8 -3 13 -3 13c0 13 9 20 28 24c26 5 74 36 99 71c5 6 12 8 15 8c7 0 11 -5 11 -12 c0 -3 -2 -13 -3 -17l-14 -49h61zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E4: [676,14,684,0,684,'470 265l17 -10c-45 -61 -65 -72 -96 -72c-21 0 -35 12 -35 33c0 15 5 42 17 83c-64 -91 -95 -117 -139 -117c-24 0 -38 12 -38 36c0 16 7 46 15 75l17 64c4 14 8 33 8 41c0 7 -11 8 -24 8h-16v21c39 4 68 7 101 14l7 -4l-49 -190c-2 -6 -4 -16 -4 -16c0 -4 3 -7 11 -7 c21 0 49 28 87 78c29 38 40 59 67 134h55l-52 -182c-3 -10 -7 -24 -7 -29c0 -2 3 -3 6 -3c10 0 19 7 52 43zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E5: [676,14,684,0,684,'207 406v21c43 4 77 14 89 14c13 0 30 -85 36 -123c3 -18 6 -43 9 -77c60 51 98 111 98 135c0 2 -3 5 -11 11c-14 10 -19 18 -19 29c0 15 13 25 28 25c22 0 40 -16 40 -39c0 -25 -16 -59 -38 -87c-44 -55 -64 -74 -97 -104c-22 -19 -34 -29 -41 -29c-6 0 -9 7 -9 21 c0 41 -12 115 -23 160c-9 37 -16 43 -38 43h-24zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24E6: [676,14,684,0,684,'388 428l27 -184c76 78 97 110 97 132c0 3 -10 9 -15 13c-12 10 -15 19 -15 28c0 13 13 24 28 24c21 0 40 -17 40 -38c0 -39 -48 -110 -138 -198c-19 -18 -26 -23 -31 -23c-7 0 -9 15 -11 30l-24 150l-47 -74c-17 -26 -64 -106 -79 -106c-8 0 -12 5 -12 31 c0 29 -12 131 -27 176c-5 16 -12 17 -28 17h-22v21c27 4 77 14 82 14c9 0 11 -1 17 -24c9 -33 20 -94 25 -141l112 156c4 5 6 9 11 9c6 0 9 -5 10 -13zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346z M642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E7: [676,14,684,0,684,'363 388l6 -23c43 56 67 76 96 76c17 0 30 -11 30 -26c0 -16 -9 -27 -24 -27c-12 0 -15 10 -34 10c-11 0 -34 -24 -59 -65l29 -90c4 -12 10 -18 18 -18c9 0 15 4 28 19l17 20l16 -11c-41 -56 -59 -71 -86 -71c-21 0 -32 10 -43 42l-20 59l-51 -61 c-30 -35 -41 -40 -62 -40c-23 0 -38 12 -38 31c0 15 11 25 25 25c16 0 23 -11 38 -11c8 0 19 9 31 24l49 60l-19 62c-9 29 -15 35 -30 35c-4 0 -16 0 -37 -6l-6 19l10 4c40 12 61 16 77 16c17 0 28 -11 39 -53zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E8: [676,14,684,0,684,'374 369l13 -54c51 71 75 117 75 139c0 5 -6 7 -19 14c-14 8 -19 15 -19 29c0 16 12 27 29 27c23 0 40 -17 40 -40c0 -40 -29 -100 -82 -179c-46 -69 -90 -123 -129 -151c-19 -14 -39 -20 -50 -20c-23 0 -40 13 -41 32c0 17 13 30 30 30c20 0 28 -16 39 -16 c14 0 20 5 33 18c7 7 51 51 51 67c0 18 -42 147 -64 191c-12 25 -25 33 -49 33c-7 0 -17 -1 -26 -2v22c72 10 93 15 101 15c10 0 56 -107 68 -155zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E9: [676,14,684,0,684,'473 425l-184 -192c31 -6 45 -15 75 -47c17 -19 25 -26 46 -26c7 0 13 4 13 7c0 5 -9 8 -9 22c0 13 13 24 26 24c15 0 26 -13 26 -30c0 -25 -25 -48 -64 -48c-19 0 -41 8 -78 26c-30 15 -52 21 -68 21c-11 0 -19 -4 -30 -11l-14 14l197 210h-75c-33 0 -45 -7 -57 -35 l-21 4l23 77h194v-16zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24EA: [676,14,684,0,684,'488 376c0 -111 -75 -242 -187 -242c-65 0 -104 50 -104 136c0 134 87 254 185 254c65 0 106 -55 106 -148zM431 422c0 48 -15 73 -50 73c-91 0 -127 -188 -127 -259c0 -48 19 -73 47 -73c98 0 130 182 130 259zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Misc/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/Regular/Main.js new file mode 100644 index 0000000..91f29f9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Misc/Regular/Main.js @@ -0,0 +1,271 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Misc/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Misc'] = { + directory: 'Misc/Regular', + family: 'STIXMathJax_Misc', + id: 'STIXWEBMISC', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x250: [460,10,444,8,413,'162 387h1c53 60 102 73 145 73c62 0 105 -38 105 -104c0 -52 -31 -91 -70 -117c-30 -20 -67 -39 -180 -81v-54c0 -62 33 -90 78 -90c40 0 70 22 70 49c0 18 -6 21 -6 42c0 19 20 41 46 41c21 0 43 -19 43 -46c0 -26 -16 -58 -51 -80c-28 -18 -70 -30 -115 -30 c-56 0 -94 16 -118 45s-28 50 -28 111v191c0 46 -13 66 -31 66c-16 0 -26 -5 -43 -19v28c30 38 56 48 90 48c37 0 59 -20 64 -73zM163 323v-141c62 22 103 43 128 66c24 22 34 46 34 77c0 53 -30 77 -69 77c-20 0 -41 -5 -58 -16c-29 -20 -35 -34 -35 -63'], + 0x251: [460,10,500,27,491,'491 58v-16l-147 -52l-4 3v61h-2c-18 -27 -55 -64 -129 -64c-39 0 -182 20 -182 224c0 131 95 246 207 246c43 0 73 -14 106 -43l63 43h21v-346c0 -37 0 -57 49 -57c5 0 11 0 18 1zM340 102v230c-7 68 -56 100 -103 100c-56 0 -124 -49 -124 -185 c0 -149 72 -205 138 -205c42 0 81 24 89 60'], + 0x252: [460,10,500,27,491,'178 396h2c18 27 55 64 129 64c39 0 182 -20 182 -224c0 -131 -95 -246 -207 -246c-43 0 -73 14 -106 43l-63 -43h-21v346c0 37 0 57 -49 57c-5 0 -11 0 -18 -1v16l147 52l4 -3v-61zM178 348v-230c7 -68 56 -100 103 -100c56 0 124 49 124 185c0 149 -72 205 -138 205 c-42 0 -81 -24 -89 -60'], + 0x253: [683,10,500,69,468,'153 510v-134c13 35 59 84 135 84c120 0 180 -112 180 -224c0 -90 -58 -246 -238 -246c-67 0 -161 29 -161 66v409c0 117 94 218 223 218c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60c-50 0 -103 -57 -103 -139zM153 316v-243c0 -35 55 -51 94 -51 c115 0 133 111 133 177c0 93 -36 198 -130 198c-33 0 -97 -24 -97 -81'], + 0x254: [459,11,444,10,397,'24 293l-14 9c32 62 52 91 82 115c34 28 72 42 115 42c111 0 190 -93 190 -222c0 -83 -30 -152 -84 -197c-40 -33 -88 -51 -135 -51c-84 0 -154 47 -154 103c0 23 21 42 47 42c22 0 40 -17 48 -46l6 -22c10 -37 23 -48 59 -48c81 0 136 70 136 174 c0 115 -63 195 -155 195c-57 0 -93 -24 -141 -94'], + 0x255: [460,160,444,25,417,'84 -160l79 158c-83 32 -138 106 -138 215c0 164 117 247 221 247c36 0 79 -11 107 -31c29 -21 45 -45 45 -70c0 -23 -17 -44 -47 -44c-26 0 -42 22 -48 46c-13 52 -17 70 -70 70c-40 0 -131 -31 -131 -178c0 -75 46 -148 103 -193c50 63 71 89 127 89 c52 0 85 -28 85 -74c0 -50 -39 -91 -122 -91h-22c-25 0 -50 1 -73 6l-80 -150h-36zM384 76c0 30 -19 47 -51 47c-48 0 -67 -29 -103 -82c23 -13 46 -21 68 -21c75 0 86 28 86 56'], + 0x256: [683,233,553,27,599,'424 681v-796c0 -37 4 -84 46 -84c36 0 46 60 89 60c21 0 40 -17 40 -38c0 -44 -59 -56 -93 -56c-150 0 -166 120 -166 235v55c-30 -47 -79 -67 -131 -67c-126 0 -182 110 -182 224s82 246 207 246c43 0 74 -15 106 -43v156c0 41 -11 51 -41 51c-8 0 -17 0 -27 -1v16 c50 13 99 27 147 44zM340 102v230c0 55 -50 100 -103 100c-95 0 -124 -109 -124 -185c0 -86 32 -205 138 -205c30 0 89 23 89 60'], + 0x257: [683,10,587,27,602,'340 417v48c0 117 40 218 169 218c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60c-44 0 -49 -44 -49 -110v-425c0 -37 1 -57 45 -57c5 0 15 0 22 1v-16l-147 -52l-4 3v64c-20 -28 -53 -67 -127 -67c-20 0 -62 1 -108 34c-41 30 -78 90 -78 183 c0 141 95 253 207 253c43 0 73 -14 106 -43zM340 102v225c0 68 -56 105 -103 105c-56 0 -124 -49 -124 -185c0 -149 71 -205 139 -205c42 0 80 24 88 60'], + 0x258: [460,10,444,20,419,'350 277h-311c11 131 82 183 176 183c80 0 204 -61 204 -246c0 -142 -76 -224 -187 -224c-144 0 -202 136 -212 167l16 7c23 -37 66 -105 155 -105c66 0 147 41 159 218zM141 309h206c-16 88 -55 115 -110 115c-79 0 -89 -67 -96 -115'], + 0x259: [460,10,444,14,413,'30 286l-16 7c10 31 68 167 212 167c111 0 187 -82 187 -224c0 -185 -124 -246 -204 -246c-94 0 -165 52 -176 183h311c-12 177 -93 218 -159 218c-89 0 -132 -68 -155 -105zM341 141h-206c7 -48 17 -115 96 -115c55 0 94 27 110 115'], + 0x25A: [460,13,657,36,651,'621 293l30 -12c-11 -36 -43 -71 -83 -71c-74 0 -84 56 -84 114c0 21 1 49 1 61l-79 -47c19 -34 31 -73 31 -113c0 -111 -99 -238 -216 -238c-101 0 -177 66 -185 168l289 167c-24 54 -73 100 -135 100c-45 0 -98 -23 -133 -51l-17 9c48 50 79 80 152 80 c81 0 153 -33 200 -99l119 69l6 -4v-14c0 -5 -2 -101 -2 -119c0 -29 24 -53 53 -53s45 28 53 53zM335 296l-259 -152c0 -62 39 -116 105 -116c101 0 164 105 164 197c0 24 -4 48 -10 71'], + 0x25B: [475,14,438,20,389,'377 84l12 -12c-46 -56 -107 -86 -179 -86c-46 0 -97 13 -131 34c-35 21 -59 63 -59 103c0 41 24 82 61 102c22 12 42 18 82 24v2c-77 16 -116 52 -116 107c0 70 66 117 164 117c38 0 88 -13 113 -30c30 -20 43 -52 43 -70c0 -23 -18 -44 -48 -44c-26 0 -42 27 -48 49 c-13 45 -20 62 -46 62c-52 0 -90 -39 -90 -90c0 -25 13 -50 35 -68c19 -16 37 -20 75 -21v-30h-11c-71 0 -120 -43 -120 -104c0 -62 44 -107 107 -107c50 0 106 22 156 62'], + 0x25C: [475,14,438,20,389,'246 251v-2c40 -6 60 -12 82 -24c37 -20 61 -61 61 -102c0 -40 -24 -82 -59 -103c-34 -21 -85 -34 -131 -34c-72 0 -133 30 -179 86l12 12c50 -40 106 -62 156 -62c63 0 107 45 107 107c0 61 -49 104 -120 104h-11v30c38 1 56 5 75 21c22 18 35 43 35 68 c0 51 -38 90 -90 90c-26 0 -33 -17 -46 -62c-6 -22 -22 -49 -48 -49c-30 0 -48 21 -48 44c0 18 13 50 43 70c25 17 75 30 113 30c98 0 164 -47 164 -117c0 -55 -39 -91 -116 -107'], + 0x25D: [475,14,623,20,603,'573 293l30 -12c-10 -37 -43 -71 -83 -71c-75 0 -84 60 -84 119c0 30 1 39 1 56l-75 -43c-7 -56 -68 -82 -116 -91v-2c72 -11 143 -42 143 -126c0 -98 -108 -137 -190 -137c-71 0 -134 31 -179 86l12 12c44 -35 99 -62 156 -62c62 0 107 45 107 107 c0 76 -64 104 -131 104v30c55 1 110 27 110 89c0 51 -39 90 -90 90c-57 0 -29 -111 -96 -111c-25 0 -46 19 -46 44c0 72 98 100 156 100c67 0 154 -26 163 -104l102 59l6 -4l-1 -30c-1 -16 -1 -62 -1 -103c0 -29 24 -53 53 -53s48 27 53 53'], + 0x25E: [475,14,479,20,430,'287 251v-2c71 -11 143 -42 143 -126c0 -98 -108 -137 -190 -137c-152 0 -220 102 -220 248c0 136 77 241 219 241c72 0 164 -31 164 -117c0 -67 -59 -95 -116 -107zM205 233v30c54 1 110 26 110 89c0 51 -39 90 -90 90c-98 0 -140 -128 -140 -207 c0 -76 41 -213 135 -213c61 0 116 43 116 107c0 76 -65 104 -131 104'], + 0x25F: [460,218,315,-49,296,'296 210h-82v-210c0 -142 -59 -218 -170 -218c-54 0 -93 23 -93 55c0 22 18 39 41 39c16 0 30 -9 48 -32c17 -21 27 -28 42 -28c14 0 28 8 34 18c11 20 14 45 14 121v255h-122v31h122v137c0 27 -5 46 -20 55c-12 7 -26 10 -55 12v15h236v-15c-31 -3 -47 -7 -58 -16 c-17 -14 -19 -36 -19 -62v-126h82v-31'], + 0x260: [683,212,594,32,634,'372 435v30c0 117 40 218 169 218c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60c-50 0 -50 -57 -50 -139v-537c0 -111 -94 -185 -229 -185c-94 0 -171 36 -171 79c0 21 16 37 37 37c34 0 47 -37 68 -56c20 -18 56 -32 84 -32c38 0 76 17 99 45 c20 24 30 55 30 99v93c-40 -41 -94 -67 -142 -67c-107 0 -199 109 -199 235c0 137 107 254 233 254c39 0 70 -11 107 -40zM373 88v225c0 33 -11 65 -30 87c-22 25 -58 43 -88 43c-75 0 -131 -82 -131 -190c0 -116 68 -209 153 -209c34 0 69 16 96 44'], + 0x261: [482,212,537,32,455,'455 482v-509c0 -127 -116 -185 -229 -185c-43 0 -171 17 -171 79c0 21 16 37 37 37c49 0 56 -88 152 -88c85 0 129 65 129 144v93c-36 -37 -89 -67 -142 -67c-120 0 -199 125 -199 235c0 128 99 254 233 254c49 0 83 -20 119 -51c23 19 28 32 42 58h29zM373 88v225 c0 65 -48 130 -118 130c-94 0 -131 -113 -131 -190c0 -88 49 -209 153 -209c36 0 71 18 96 44'], + 0x262: [450,11,570,30,539,'539 235v-12c-40 -2 -50 -11 -50 -54v-131c0 -22 -152 -49 -188 -49c-83 0 -158 23 -207 70c-44 43 -64 102 -64 168c0 69 33 125 83 165c47 37 107 58 177 58c24 0 48 -5 97 -14c15 -3 35 -7 40 -7c15 0 27 8 32 21h16l5 -142h-16c-18 39 -31 58 -53 78 c-29 25 -68 36 -110 36c-48 0 -90 -11 -123 -42c-41 -39 -61 -97 -61 -169c0 -120 77 -195 194 -195c38 0 103 11 103 39v105c0 52 -8 62 -66 63v12h191'], + 0x263: [450,234,500,19,480,'480 450v-15c-38 -4 -46 -41 -54 -62l-110 -299l52 -108c15 -30 26 -57 26 -99c0 -63 -44 -101 -106 -101c-58 0 -104 21 -104 86c0 37 6 55 19 81l45 92l-145 309l-31 67c-11 24 -27 30 -53 34v15h205v-15c-19 -1 -57 -3 -57 -26c0 -8 3 -19 9 -33l116 -259l93 264 c4 12 8 24 8 30c0 22 -26 24 -46 24v15h133zM267 -13l-29 -68c-7 -17 -11 -37 -11 -56c0 -28 8 -64 41 -64c32 0 55 25 55 57c0 10 -6 30 -14 47'], + 0x264: [450,10,500,13,486,'266 263l83 125c21 31 38 62 80 62c30 0 57 -27 57 -57c0 -23 -11 -44 -22 -64c-8 23 -20 57 -50 57s-48 -26 -63 -49l-65 -100c21 -35 69 -105 69 -145c0 -59 -52 -102 -109 -102c-55 0 -96 28 -96 86c0 25 16 48 30 68l43 60l-90 137c-13 20 -33 45 -59 45 c-40 0 -45 -52 -52 -57c-5 14 -9 28 -9 42c0 42 36 79 78 79c51 0 82 -42 107 -81zM284 85c0 26 -30 67 -44 90c-18 -26 -55 -67 -55 -102c0 -29 24 -44 51 -44c32 0 48 27 48 56'], + 0x265: [450,233,500,13,491,'491 450v-15c-58 -8 -64 -17 -64 -87v-471c0 -43 8 -51 51 -51c4 0 9 0 12 1v-16l-27 -8c-57 -17 -80 -24 -115 -36l-5 3v304c-46 -60 -88 -84 -147 -84c-82 0 -123 54 -123 159v199c0 69 -6 77 -60 87v15h212v-15c-58 -6 -68 -18 -68 -87v-198c0 -70 25 -106 74 -106 c40 0 70 17 112 63v241c0 69 -10 81 -68 87v15h216'], + 0x266: [683,0,500,9,487,'487 0h-212v15c50 6 68 12 68 79v206c0 67 -22 106 -77 106c-29 0 -68 -15 -109 -63v-246c0 -71 19 -77 68 -82v-15h-216v15c54 8 64 13 64 84v399c0 103 77 185 183 185c94 0 171 -30 171 -73c0 -21 -16 -37 -37 -37c-26 0 -35 17 -58 45c-17 21 -44 40 -72 40 c-32 0 -54 -16 -75 -42c-17 -20 -28 -46 -28 -80v-160c41 55 86 84 146 84c123 0 124 -119 124 -159v-199c0 -73 10 -78 60 -87v-15'], + 0x267: [683,233,481,9,427,'427 298v-313c0 -117 -60 -218 -189 -218c-47 0 -93 19 -93 56c0 23 21 38 40 38c43 0 53 -60 89 -60c50 0 69 57 69 139v360c0 67 -22 106 -77 106c-29 0 -68 -15 -109 -63v-241c0 -77 19 -82 68 -87v-15h-216v15c54 7 64 14 64 87v396c0 103 77 185 183 185 c94 0 171 -30 171 -73c0 -21 -16 -37 -37 -37c-25 0 -33 14 -57 44c-19 24 -46 41 -72 41c-27 0 -55 -16 -76 -42c-17 -20 -28 -46 -28 -80v-160c39 53 85 84 146 84c123 0 124 -120 124 -162'], + 0x268: [683,0,278,16,253,'180 632c0 -29 -22 -51 -52 -51c-28 0 -50 22 -50 51c0 28 23 51 51 51c29 0 51 -23 51 -51zM253 0h-237v15c69 4 79 13 79 89v126h-79v31h79v70c0 47 -8 63 -33 63c-9 0 -24 0 -42 -5v16l155 55l4 -4v-195h74v-31h-74v-125c0 -74 8 -85 74 -90v-15'], + 0x269: [454,10,333,17,311,'295 80l16 -12c-25 -34 -73 -78 -123 -78c-76 0 -96 48 -96 135v210c0 45 -10 59 -33 59c-7 0 -24 0 -42 -5v16c45 15 136 49 149 49c6 0 10 -11 10 -20v-330c0 -46 27 -60 53 -60c21 0 42 11 66 36'], + 0x26A: [450,0,258,21,231,'231 0h-210v18c65 2 66 23 66 72v274c0 50 -1 65 -66 68v18h210v-18c-64 -2 -64 -21 -64 -73v-264c0 -49 2 -75 64 -77v-18'], + 0x26B: [683,0,350,10,340,'311 425h29c-21 -76 -50 -106 -105 -106c-7 0 -13 0 -19 1v-233c0 -55 11 -68 75 -72v-15h-236v15c63 5 77 22 77 77v261l-1 1c-15 7 -29 11 -41 11c-23 0 -40 -15 -51 -46h-29c15 65 51 101 101 101c7 0 14 -1 21 -2v143c0 48 -10 64 -42 64c-8 0 -21 0 -37 -2v16 c69 17 106 27 158 44l5 -4v-295c15 -6 30 -10 42 -10c23 0 36 14 53 51'], + 0x26C: [683,0,375,12,362,'351 360l11 -13s-43 -58 -130 -89v-174c0 -55 17 -66 75 -69v-15h-236v15c59 5 77 19 77 75v149c-10 -2 -19 -2 -29 -2c-58 0 -107 47 -107 106s50 107 107 107c19 0 25 -4 29 -5v119c0 45 -10 61 -43 61c-14 0 -24 -1 -36 -2v16c53 13 103 26 159 44l4 -2v-391 c55 19 100 51 119 70zM148 276v141c-5 2 -11 4 -16 4c-30 0 -68 -35 -68 -68c0 -39 27 -72 66 -76c6 -1 12 -1 18 -1'], + 0x26D: [683,233,302,10,352,'173 681v-741c0 -82 0 -139 50 -139c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-129 0 -170 101 -170 218v579c0 45 -10 61 -44 61c-13 0 -23 -1 -35 -2v16c53 13 106 27 159 44'], + 0x26E: [683,233,549,19,538,'506 400l-164 -204c11 2 21 3 32 3c84 0 164 -69 164 -198c0 -164 -124 -234 -222 -234c-36 0 -81 14 -106 31c-30 20 -43 52 -43 70c0 23 17 44 49 44c22 0 41 -21 48 -52c12 -50 17 -64 70 -64c37 0 129 31 129 178c0 115 -68 161 -152 161c-14 0 -41 -14 -52 -19 l-14 11l214 259h-277v-302c0 -57 17 -64 75 -69v-15h-236v15c52 4 77 15 77 72v477c0 45 -10 61 -43 61c-13 0 -24 0 -36 -2v16c53 13 105 26 158 44l5 -2v-231h324v-50'], + 0x26F: [450,10,778,11,770,'770 450v-15c-56 -1 -70 -15 -70 -73v-248c0 -49 9 -66 35 -66c11 0 19 1 32 4v-17c-55 -15 -88 -26 -139 -45l-8 3v74h-2c-66 -68 -108 -77 -153 -77c-54 0 -88 27 -106 84c-54 -58 -105 -84 -163 -84c-81 0 -116 62 -116 180v203c0 45 -13 58 -43 60l-26 2v15h218v-15 c-56 -6 -65 -17 -65 -75v-206c0 -79 20 -112 77 -112c47 0 77 18 107 61v252c0 65 -15 79 -72 80v15h224v-15c-57 -4 -68 -10 -68 -71v-211c0 -69 22 -111 65 -111c37 0 86 19 106 43c7 8 13 15 13 17v278c0 43 -15 53 -68 55v15h222'], + 0x270: [450,233,803,11,785,'785 -233h-240v15c55 10 71 13 71 69v216c-44 -51 -93 -77 -147 -77c-65 0 -91 30 -110 84c-24 -25 -79 -84 -162 -84c-104 0 -117 104 -117 178v206c0 22 -1 56 -41 59l-28 2v15h218v-15c-50 -6 -65 -11 -65 -72v-208c0 -54 5 -113 77 -113c55 0 82 26 107 61v258 c0 72 -30 72 -72 74v15h224v-15c-55 -4 -68 -9 -68 -69v-214c0 -66 20 -110 66 -110c69 0 118 54 118 59v282c0 49 -30 50 -68 52v15h222v-15c-40 -1 -70 -3 -70 -70v-508c0 -69 34 -73 85 -75v-15'], + 0x271: [460,233,778,16,706,'706 282v-297c0 -117 -60 -218 -189 -218c-47 0 -93 19 -93 56c0 23 21 38 40 38c43 0 53 -60 89 -60c50 0 69 57 69 139v354c0 51 -4 114 -76 114c-57 0 -85 -28 -108 -61v-259c0 -71 34 -72 72 -73v-15h-224v15c47 6 68 1 68 66v220c0 66 -24 107 -64 107 c-72 0 -120 -53 -120 -60v-280c0 -49 27 -50 68 -53v-15h-222v15c45 1 70 6 70 69v254c0 61 -19 64 -35 64c-14 0 -24 -2 -32 -4v17c47 13 88 26 140 45l7 -2v-76c63 62 100 78 154 78c65 0 92 -37 107 -85c30 34 84 85 163 85c104 0 116 -104 116 -178'], + 0x272: [460,233,529,-70,514,'514 0h-208v15c38 5 63 9 63 84v205c0 61 -16 101 -75 101c-36 0 -63 -20 -101 -57v-363c0 -117 -41 -218 -170 -218c-47 0 -93 19 -93 56c0 23 21 38 40 38c43 0 53 -60 89 -60c50 0 50 57 50 139v402c0 58 -18 60 -35 60c-14 0 -25 -2 -29 -4v17c45 13 91 28 137 45 l8 -3v-79c42 47 87 82 144 82s119 -31 119 -154v-225c0 -47 12 -62 61 -66v-15'], + 0x273: [460,233,533,16,603,'424 308v-368c0 -82 0 -139 50 -139c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-129 0 -170 101 -170 218v319c0 61 -16 101 -75 101c-35 0 -63 -20 -101 -57v-277c0 -36 13 -53 65 -56v-15h-211v15c47 4 62 16 62 75v250c0 61 -18 62 -35 62 c-14 0 -25 -2 -29 -4v17c45 13 91 28 137 45l8 -3v-79c40 44 85 82 144 82c54 0 119 -29 119 -152'], + 0x274: [450,8,602,29,561,'561 450v-18c-31 -3 -40 -5 -52 -13c-13 -11 -21 -26 -21 -81v-346h-14l-333 368v-254c0 -69 9 -81 70 -88v-18h-182v18c67 6 77 16 77 88v289c-26 28 -37 37 -77 37v18h133l291 -324v220c0 35 -2 56 -14 68c-8 13 -24 15 -61 18v18h183'], + 0x275: [460,10,500,29,470,'470 231c0 -136 -92 -241 -218 -241c-132 0 -223 105 -223 238c0 142 91 232 223 232c124 0 218 -90 218 -229zM119 247h261c0 123 -65 185 -128 185c-66 0 -132 -60 -133 -185zM380 214h-260c0 -117 66 -196 132 -196c64 0 128 79 128 196'], + 0x276: [450,6,720,23,697,'697 110l-34 -112h-270c-48 0 -109 -4 -145 -4c-64 0 -131 26 -166 64c-38 42 -59 96 -59 163c0 88 37 152 100 192c40 25 93 37 148 37c9 0 11 0 49 -2c14 -1 75 -3 90 -3h251v-96h-19c-8 61 -28 70 -127 70h-42c-43 0 -53 -6 -53 -23v-150h77c83 0 103 11 109 66h18 v-159h-18c-7 53 -26 67 -84 67h-102v-159c0 -25 9 -37 46 -37h89c52 0 87 22 125 86h17zM339 88v265c0 49 -20 71 -72 71c-98 0 -157 -71 -157 -203c0 -61 12 -110 34 -143c26 -38 66 -58 118 -58c55 0 77 20 77 68'], + 0x277: [475,4,667,37,629,'629 194c0 -105 -71 -198 -181 -198c-55 0 -94 34 -115 84c-21 -50 -60 -84 -115 -84c-110 0 -181 93 -181 198c0 172 143 281 297 281c147 0 295 -109 295 -281zM533 210c0 169 -91 245 -199 245c-109 0 -201 -76 -201 -245c0 -60 15 -172 93 -172c41 0 76 32 76 76 c0 46 -26 94 -26 151c0 38 17 61 57 61s57 -23 57 -61c0 -57 -26 -105 -26 -151c0 -44 35 -76 76 -76c78 0 93 112 93 172'], + 0x278: [683,233,667,40,626,'375 599v-164c127 -11 251 -77 251 -215c0 -129 -117 -215 -251 -223v-146c0 -58 17 -66 75 -69v-15h-236v15c59 4 77 17 77 72v143c-134 8 -251 94 -251 223c0 138 124 204 251 215v161c0 55 -18 68 -77 72v15h236v-15c-58 -3 -75 -11 -75 -69zM375 407v-382 c101 14 151 105 151 197c0 100 -50 178 -151 185zM291 25v382c-100 -7 -151 -85 -151 -185c0 -92 51 -183 151 -197'], + 0x279: [450,10,370,30,360,'360 450v-15c-64 -12 -71 -19 -71 -69v-250c0 -44 9 -60 34 -60c12 0 21 1 35 4v-16c-59 -19 -95 -33 -148 -54l-5 2v92c-50 -72 -78 -94 -120 -94c-34 0 -55 20 -55 53c0 28 15 45 39 45c13 0 24 -5 40 -20c11 -10 20 -15 26 -15c28 0 70 50 70 82v225 c0 57 -17 72 -85 75v15h240'], + 0x27A: [683,10,370,30,364,'364 0h-159v84c-49 -71 -78 -94 -120 -94c-35 0 -55 21 -55 54c0 25 14 44 38 44c35 0 45 -35 68 -35c26 0 69 49 69 82v424c0 45 -8 66 -42 66c-13 0 -25 -1 -37 -2v16c53 13 106 27 159 44l4 -2v-597c0 -58 17 -64 75 -69v-15'], + 0x27B: [450,233,418,30,468,'289 366v-249c0 -82 0 -316 50 -316c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-129 0 -170 197 -170 314c-47 -71 -83 -91 -121 -91c-34 0 -54 21 -54 54c0 25 14 44 38 44c35 0 45 -35 69 -35s68 50 68 82v225c0 69 -34 73 -85 75v15h240v-15 c-55 -10 -71 -13 -71 -69'], + 0x27C: [460,233,333,5,335,'160 458v-92c49 70 77 94 120 94c36 0 55 -21 55 -54c0 -25 -14 -44 -38 -44c-35 0 -45 35 -69 35s-68 -50 -68 -81v-459c0 -69 34 -73 85 -75v-15h-240v15c55 10 71 13 71 69v483c0 59 -19 60 -35 60c-14 0 -25 -2 -34 -4v16c49 16 99 34 148 54'], + 0x27D: [460,233,370,7,339,'160 315v-375c0 -82 0 -139 50 -139c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-129 0 -170 101 -170 218v349c0 59 -19 60 -35 60c-14 0 -25 -2 -34 -4v16c49 16 99 34 148 54l5 -2v-92c50 71 76 94 121 94c34 0 54 -21 54 -54c0 -25 -14 -44 -38 -44 c-35 0 -45 35 -69 35s-68 -49 -68 -82'], + 0x27E: [470,0,315,10,337,'74 76v176c0 117 41 218 170 218c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60c-50 0 -50 -57 -50 -139v-221c0 -48 8 -59 64 -63v-13h-212v13c54 4 64 11 64 63'], + 0x27F: [470,0,350,5,332,'332 0h-212v13c56 4 64 15 64 63v221c0 82 0 139 -50 139c-36 0 -46 -60 -89 -60c-19 0 -40 15 -40 38c0 37 46 56 93 56c129 0 170 -101 170 -218v-176c0 -52 10 -59 64 -63v-13'], + 0x280: [464,0,475,21,470,'470 0h-120l-144 209h-37v-106c0 -63 16 -83 68 -85v-18h-216v18c29 1 44 7 56 23c9 12 11 24 11 57v257c0 40 -2 53 -14 67c-12 15 -26 21 -53 24v18h222c101 0 170 -50 170 -122c0 -56 -42 -98 -121 -120l114 -170c18 -26 31 -34 54 -34h10v-18zM169 242h17 c34 0 59 5 79 16c35 18 55 49 55 84c0 55 -39 90 -103 90c-18 0 -28 -2 -48 -7v-183'], + 0x281: [464,0,475,21,470,'470 446h-10c-23 0 -36 -8 -54 -34l-114 -170c79 -22 121 -64 121 -120c0 -72 -69 -122 -170 -122h-222v18c27 3 41 9 53 24c12 14 14 27 14 67v257c0 33 -2 45 -11 57c-12 16 -27 22 -56 23v18h216v-18c-52 -2 -68 -22 -68 -85v-106h37l144 209h120v-18zM169 222v-183 c20 -5 30 -7 48 -7c64 0 103 35 103 90c0 35 -20 66 -55 84c-20 11 -45 16 -79 16h-17'], + 0x282: [458,218,389,50,348,'156 300l104 -63c64 -39 88 -66 88 -123c0 -67 -64 -125 -140 -125c-21 0 -50 1 -73 9c-24 8 -35 9 -46 9h-6c-1 -32 -2 -66 -2 -96c0 -54 6 -95 38 -95c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-92 0 -105 45 -105 116c0 29 2 62 2 98v156h16 c21 -97 58 -141 127 -141c51 0 83 33 83 74c0 31 -20 57 -53 75l-54 30c-83 46 -120 94 -120 145c0 79 56 123 138 123c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68'], + 0x283: [683,233,322,-70,372,'111 -109v574c0 119 37 218 168 218c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60c-48 0 -48 -71 -48 -112v-582c0 -104 -54 -188 -172 -188c-47 0 -93 19 -93 56c0 23 21 38 40 38c43 0 53 -60 89 -60c39 0 52 35 52 90'], + 0x284: [683,218,304,-70,372,'109 31v400c0 121 19 252 170 252c34 0 93 -12 93 -56c0 -21 -20 -38 -39 -38c-43 0 -51 60 -90 60c-48 0 -50 -86 -50 -120v-498h77v-31h-77c0 -115 -40 -218 -170 -218c-46 0 -93 18 -93 55c0 18 15 39 40 39c43 0 53 -60 89 -60c49 0 50 52 50 136v48h-77v31h77'], + 0x285: [470,233,400,15,457,'278 252v-312c0 -82 0 -139 50 -139c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-129 0 -170 101 -170 218v312c0 82 0 139 -50 139c-36 0 -46 -60 -89 -60c-19 0 -40 15 -40 38c0 37 46 56 93 56c129 0 170 -101 170 -218'], + 0x286: [683,243,437,-23,422,'161 11v459c0 116 40 213 168 213c34 0 93 -13 93 -56c0 -21 -20 -38 -39 -38c-45 0 -54 60 -90 60c-48 0 -48 -70 -48 -105v-572c62 -46 95 -121 95 -197c0 -6 -1 -12 -2 -18h-26v14c0 63 -21 126 -67 169c-9 -105 -53 -173 -143 -173c-68 0 -125 58 -125 126 s57 125 126 125c15 0 43 -2 58 -7zM161 -114v98c-16 6 -43 9 -59 9c-54 0 -100 -46 -100 -100c0 -53 47 -101 100 -101c45 0 59 47 59 94'], + 0x287: [460,129,278,16,282,'225 32h53c3 -2 4 -4 4 -7c0 -6 -6 -12 -17 -19c-26 -15 -59 -52 -97 -107c-6 -9 -14 -18 -20 -28c-5 0 -7 3 -7 13v116h-101v32h101v286c0 64 -15 90 -52 90c-22 0 -38 -9 -60 -35l-13 11c33 52 71 76 121 76c58 0 88 -43 88 -127v-301'], + 0x288: [579,233,270,13,283,'154 418v-560c0 -36 2 -57 15 -57c38 0 30 61 73 61c20 0 41 -15 41 -39c0 -37 -47 -56 -94 -56c-104 0 -119 64 -119 150v501h-53c-2 1 -4 4 -4 7c0 13 22 18 44 40c38 39 55 63 90 114c7 0 7 -5 7 -13v-116h101v-32h-101'], + 0x289: [450,10,500,9,480,'480 49v-13c-51 -14 -87 -25 -137 -45l-5 3v82h-2c-49 -67 -106 -86 -143 -86c-77 0 -122 51 -122 128v112h-62v31h62v108c0 50 -14 64 -62 67v14h146v-189h178v107c0 53 -14 61 -74 65v17h158v-189h62v-31h-62v-123c0 -46 11 -58 57 -58h6zM333 137v93h-178v-103 c0 -46 32 -79 71 -79c29 0 59 9 84 31c16 14 23 23 23 58'], + 0x28A: [450,10,537,46,490,'490 430h-38c-21 0 -41 -19 -41 -37c0 -14 4 -24 10 -30c8 -7 67 -73 67 -150c0 -123 -97 -223 -220 -223s-220 102 -220 219c0 83 60 147 67 154c8 8 10 17 10 28c0 23 -21 39 -41 39h-38v20h140c-37 -104 -50 -174 -50 -246c0 -15 2 -44 7 -75c10 -65 58 -119 125 -119 s115 54 125 119c5 31 7 49 7 76c0 72 -14 145 -50 245h140v-20'], + 0x28B: [460,10,500,32,476,'193 457v-331c0 -46 39 -95 87 -95c100 0 166 113 166 202c0 151 -102 145 -102 194c0 20 26 33 43 33c79 0 89 -149 89 -205c0 -131 -62 -265 -213 -265c-95 0 -154 35 -154 138v206c0 28 0 60 -35 60c-14 0 -28 -2 -42 -4v16c53 16 105 34 156 54'], + 0x28C: [464,0,500,-4,454,'454 0h-196v15c34 3 46 10 46 27c0 10 -3 23 -9 38l-102 256l-99 -259c-4 -10 -6 -20 -6 -30c0 -19 15 -29 47 -32v-15h-139v15c30 3 38 11 65 78l128 321c15 37 22 50 28 50s11 -9 18 -26l128 -308c43 -103 53 -113 91 -115v-15'], + 0x28D: [464,0,722,21,694,'694 0h-180v15c35 4 46 12 46 33c0 10 -2 20 -6 30l-99 261l-91 -199l20 -56c19 -54 32 -65 69 -69v-15h-203v15c47 7 58 14 58 35c0 17 -5 29 -17 60l-84 224l-90 -222c-11 -27 -17 -51 -17 -67s10 -23 44 -30v-15h-123v15c20 7 25 14 41 54l138 346c16 40 21 49 28 49 s9 -5 24 -43l91 -236l112 240c12 26 20 39 25 39c6 0 14 -13 26 -44l135 -342c21 -54 30 -61 53 -63v-15'], + 0x28E: [668,0,444,-2,459,'459 0h-205v15c43 2 57 9 57 27c0 11 -7 27 -13 41l-112 250l-97 -276c-3 -7 -4 -14 -4 -18c0 -16 15 -24 46 -24v-15h-133v15c24 3 36 14 50 51l150 409c52 142 99 193 175 193c43 0 70 -25 70 -58c0 -25 -19 -46 -43 -46c-18 0 -34 3 -52 13c-11 6 -20 7 -26 7 c-14 0 -34 -20 -50 -44c-20 -29 -40 -92 -40 -108c0 -15 23 -61 42 -101l132 -282c10 -22 27 -31 53 -35v-14'], + 0x28F: [464,0,587,23,564,'564 464v-18c-50 -4 -61 -18 -108 -79l-119 -155v-106c0 -44 3 -88 68 -88v-18h-216v18c66 0 67 44 67 78v110l-104 133c-73 93 -89 105 -129 107v18h210v-18l-21 -1c-27 -1 -28 -7 -28 -18c0 -9 10 -21 19 -32l115 -151l116 151c8 11 12 21 12 34c0 11 -2 16 -40 17v18 h158'], + 0x290: [450,218,528,27,569,'400 140l18 -4c-15 -183 -18 -221 -18 -250c0 -47 9 -70 40 -70c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-89 0 -104 64 -104 131c0 30 3 61 4 87h-349v15l266 405h-142c-68 0 -72 -35 -80 -88h-18l4 118h346v-15l-269 -405h133c54 0 88 7 106 27 c14 15 19 41 27 83'], + 0x291: [450,150,507,27,487,'134 30h114c41 63 88 121 129 127c9 1 17 2 25 2c52 0 85 -28 85 -74c0 -50 -37 -85 -120 -85h-99c-43 -73 -78 -150 -78 -150h-36s32 74 76 150h-203v15l266 405h-141c-69 0 -72 -32 -81 -88h-18l4 118h346v-15zM286 30h82c73 0 86 28 86 56c0 30 -19 47 -51 47 c-8 0 -17 -1 -26 -3c-25 -6 -59 -49 -91 -100'], + 0x292: [450,233,413,12,392,'360 400l-164 -204c11 2 21 3 32 3c84 0 164 -69 164 -198c0 -161 -120 -234 -224 -234c-36 0 -79 14 -104 31c-30 20 -43 52 -43 70c0 23 17 44 49 44c26 0 42 -28 47 -50c13 -53 19 -66 71 -66c37 0 129 31 129 178c0 115 -68 161 -152 161c-14 0 -41 -14 -52 -19 l-14 11l214 259h-199c-73 0 -77 -32 -84 -86h-18l24 150h324v-50'], + 0x293: [450,305,431,12,410,'398 435l-178 -268c5 0 9 1 16 1c75 0 174 -58 174 -172c0 -120 -68 -189 -140 -214l46 -87h-37l-43 77c-21 -5 -53 -5 -77 -5c-91 0 -147 26 -147 90c0 45 30 79 88 79c59 0 91 -35 152 -126c34 19 68 66 68 164c0 88 -62 161 -153 161c-20 0 -45 -14 -56 -19l-14 11 l191 293h-138c-73 0 -77 -34 -84 -88h-18l4 118h346v-15zM221 -202c-58 88 -88 104 -104 104c-23 0 -35 -20 -35 -44c0 -47 57 -62 93 -62c15 0 39 0 46 2'], + 0x294: [683,0,450,47,400,'160 102v254c76 0 145 72 145 152c0 64 -28 158 -92 158c-34 0 -60 -34 -66 -64c-9 -44 -28 -64 -52 -64c-30 0 -48 21 -48 44c0 18 13 50 43 70c27 18 73 31 113 31c159 0 197 -105 197 -176c0 -114 -85 -158 -156 -171v-234c0 -78 17 -84 79 -87v-15h-237v15 c69 4 74 21 74 87'], + 0x295: [683,0,450,48,401,'204 102v234c-71 13 -156 57 -156 171c0 71 38 176 197 176c40 0 86 -13 113 -31c30 -20 43 -52 43 -70c0 -23 -18 -44 -48 -44c-24 0 -43 20 -52 64c-6 30 -32 64 -66 64c-64 0 -92 -94 -92 -158c0 -80 69 -152 145 -152v-254c0 -66 5 -83 74 -87v-15h-237v15 c62 3 79 9 79 87'], + 0x296: [662,14,450,47,400,'244 560v-227c71 -13 156 -57 156 -171c0 -71 -38 -176 -197 -176c-40 0 -86 13 -113 31c-30 20 -43 52 -43 70c0 23 18 44 48 44c24 0 43 -20 52 -64c6 -30 32 -64 66 -64c64 0 92 94 92 158c0 80 -69 152 -145 152v247c0 66 -5 83 -74 87v15h237v-15 c-62 -3 -79 -9 -79 -87'], + 0x297: [460,230,450,80,410,'410 -39v-38c0 -83 -85 -153 -165 -153c-82 0 -165 69 -165 154v378c0 98 93 158 183 158c68 0 127 -46 127 -117c0 -23 -12 -61 -40 -61c-15 0 -29 13 -29 28c0 19 14 32 14 50c0 36 -29 65 -65 65c-49 0 -106 -43 -106 -95v-398c0 -61 49 -116 111 -116 c74 0 112 55 112 121c0 8 -1 16 -2 24h25'], + 0x298: [679,17,723,33,690,'421 331c0 -35 -27 -63 -62 -63s-64 28 -64 63s28 63 64 63c34 0 62 -28 62 -63zM690 330c0 -192 -125 -347 -327 -347c-181 0 -330 137 -330 348c0 208 138 348 332 348c198 0 325 -152 325 -349zM597 333c0 177 -90 318 -238 318c-130 0 -233 -115 -233 -318 c0 -176 81 -317 236 -317c127 0 235 139 235 317'], + 0x299: [464,0,460,15,444,'309 245v-1c74 -13 135 -47 135 -119c0 -78 -74 -125 -189 -125h-240v18c61 0 76 22 76 71v281c0 45 -14 69 -76 76v18h203c136 0 198 -42 198 -117c0 -68 -44 -90 -107 -102zM172 260h53c80 0 112 25 112 84c0 58 -39 88 -131 88h-16c-14 0 -18 -6 -18 -22v-150z M172 226v-162c0 -25 12 -32 49 -32c69 0 133 20 133 93c0 92 -75 101 -161 101h-21'], + 0x29A: [475,14,479,20,430,'163 249v2c-57 12 -116 40 -116 107c0 86 92 117 164 117c142 0 219 -105 219 -241c0 -146 -68 -248 -220 -248c-82 0 -190 39 -190 137c0 84 72 115 143 126zM245 263v-30c-66 0 -131 -28 -131 -104c0 -64 55 -107 116 -107c94 0 135 137 135 213c0 79 -42 207 -140 207 c-51 0 -90 -39 -90 -90c0 -63 56 -88 110 -89'], + 0x29B: [523,11,600,29,583,'485 171v-133c0 -23 -160 -49 -183 -49c-153 0 -273 72 -273 236c0 139 129 225 258 225c48 0 94 -14 141 -23c3 56 39 96 96 96c28 0 59 -18 59 -47c0 -14 -7 -23 -21 -23c-35 0 -22 49 -56 49c-32 0 -33 -45 -33 -68c0 -42 3 -84 5 -126h-17c-30 75 -81 115 -165 115 c-123 0 -182 -97 -182 -210c0 -119 76 -197 196 -197c21 0 102 6 102 39v109c0 54 -16 54 -67 58v13h193v-13c-40 -3 -53 -9 -53 -51'], + 0x29C: [464,0,572,21,560,'560 0h-216v18c62 3 67 17 67 76v126h-242v-126c0 -51 8 -73 67 -76v-18h-215v18c63 4 67 18 67 79v282c0 55 -9 63 -67 67v18h215v-18c-56 -4 -67 -12 -67 -67v-126h242v126c0 56 -8 62 -67 67v18h216v-18c-58 -4 -68 -13 -68 -67v-289c0 -50 11 -71 68 -72v-18'], + 0x29D: [683,233,387,-23,412,'284 632c0 -29 -23 -51 -52 -51c-27 0 -50 24 -50 51s23 51 50 51c28 0 52 -23 52 -51zM412 -233h-40c-30 40 -65 75 -98 112c-31 -75 -86 -112 -167 -112c-66 0 -130 48 -130 118c0 66 64 115 126 115c33 0 65 -11 96 -20v359c0 25 -3 55 -35 55c-14 0 -28 -2 -42 -4v16 c53 16 105 34 156 54l5 -3v-537c48 -46 91 -98 129 -153zM199 -94v38c-22 11 -67 21 -92 21c-43 0 -95 -27 -95 -75c0 -57 55 -88 106 -88c62 0 81 50 81 104'], + 0x29E: [450,233,519,1,499,'499 -189l-30 -8c-60 -16 -86 -24 -125 -36l-4 2v420l-137 -122c-14 -13 -23 -26 -23 -35c0 -13 11 -17 50 -18v-14h-204v15c64 0 93 12 216 126l29 27l-153 194c-41 52 -73 70 -117 73v15h218v-15h-19c-12 0 -21 -6 -21 -15c0 -5 3 -13 11 -23l150 -198v184 c0 35 -15 49 -55 51l-20 1v15h234v-15c-72 -12 -75 -15 -75 -67v-482c0 -48 9 -61 43 -61c10 0 19 1 32 2v-16'], + 0x29F: [464,0,470,21,441,'441 127l-35 -127h-385v18c52 2 60 18 60 65v294c0 52 -3 65 -60 69v18h193v-18c-59 -3 -60 -24 -60 -70v-312c0 -27 12 -32 65 -32h50c59 0 99 13 123 43c9 12 18 27 30 52h19'], + 0x2A0: [582,217,600,24,590,'362 426l3 37c6 75 52 119 106 119c23 0 55 -1 85 -18c14 -8 34 -24 34 -53c0 -16 -10 -33 -34 -33c-19 0 -36 11 -45 28c-12 23 -25 33 -40 33c-18 0 -46 -11 -46 -87v-593c0 -42 10 -53 63 -59v-17h-236v17c71 5 89 20 89 76v188c-44 -48 -99 -74 -157 -74 c-94 0 -160 89 -160 215c0 144 96 255 220 255c40 0 70 -8 118 -34zM341 127v206c0 66 -31 98 -93 98c-85 0 -138 -72 -138 -190c0 -69 22 -134 56 -163c20 -18 46 -27 75 -27c32 0 66 12 88 32c8 7 12 21 12 44'], + 0x2A1: [683,0,450,48,401,'161 193v161c79 0 145 75 145 152c0 52 -24 158 -91 158c-85 0 -52 -128 -121 -128c-25 0 -46 19 -46 44c0 66 94 103 149 103c113 0 204 -55 204 -176c0 -99 -64 -156 -157 -173v-141h78v-31h-78v-69c0 -48 8 -75 80 -78v-15h-237v15c69 4 74 22 74 87v60h-77v31h77'], + 0x2A2: [683,0,450,48,401,'205 193v141c-93 17 -157 74 -157 173c0 121 91 176 204 176c55 0 149 -37 149 -103c0 -25 -21 -44 -46 -44c-69 0 -36 128 -121 128c-67 0 -91 -106 -91 -158c0 -77 66 -152 145 -152v-161h77v-31h-77v-60c0 -65 5 -83 74 -87v-15h-237v15c72 3 80 30 80 78v69h-78v31 h78'], + 0x2A3: [683,10,802,27,775,'775 126l-15 -136h-416l-4 3v64c-34 -47 -72 -67 -128 -67c-111 0 -185 87 -185 215c0 142 93 255 208 255c40 0 67 -11 105 -43v156c0 41 -9 51 -46 51c-8 0 -14 0 -22 -1v16c64 17 99 27 147 44l5 -2v-241h336v-15l-269 -405h133c58 0 92 10 106 27s17 33 27 83z M650 410h-135c-63 0 -78 -15 -87 -88h-4v-208c0 -19 1 -32 5 -41zM340 102v230c0 53 -48 100 -102 100c-76 0 -125 -74 -125 -187c0 -123 54 -203 138 -203c31 0 56 11 74 32c9 10 15 21 15 28'], + 0x2A4: [683,233,743,27,722,'690 400l-164 -204c11 2 21 3 32 3c86 0 164 -74 164 -203c0 -166 -127 -229 -224 -229c-36 0 -79 14 -104 31c-30 20 -43 52 -43 70c0 23 16 44 46 44c28 0 46 -25 55 -67c6 -30 13 -49 66 -49c37 0 129 31 129 178c0 115 -68 161 -152 161c-14 0 -33 -15 -42 -23 c-34 -32 -59 -69 -99 -120l-14 1v64c-20 -27 -50 -67 -131 -67c-59 0 -182 38 -182 218c0 140 95 252 207 252c43 0 73 -14 106 -43v156c0 30 0 51 -44 51c-6 0 -16 0 -24 -1v16c50 13 99 27 147 44l5 -2v-231h266v-50zM643 386h-219v-261zM340 104v224 c0 67 -56 104 -103 104c-56 0 -124 -49 -124 -185c0 -149 70 -205 142 -205c44 0 85 37 85 62'], + 0x2A5: [683,160,864,27,844,'491 20h114c41 63 88 121 129 127c9 1 17 2 25 2c52 0 85 -28 85 -74c0 -50 -37 -85 -120 -85h-99c-43 -73 -78 -150 -78 -150h-36s32 74 76 150h-243l-4 3v64c-34 -47 -72 -67 -128 -67c-111 0 -185 87 -185 215c0 142 93 255 208 255c40 0 67 -11 105 -43v156 c0 41 -9 51 -46 51c-8 0 -14 0 -22 -1v16c64 17 99 27 147 44l5 -2v-241h336v-15zM643 20h82c73 0 86 28 86 56c0 30 -19 47 -51 47c-8 0 -17 -1 -26 -3c-25 -6 -59 -49 -91 -100zM650 410h-141c-69 0 -72 -32 -81 -88h-4v-208c0 -19 1 -32 5 -41zM340 102v230 c0 53 -48 100 -102 100c-76 0 -125 -74 -125 -187c0 -123 54 -203 138 -203c31 0 56 11 74 32c9 10 15 21 15 28'], + 0x2A6: [579,10,536,13,495,'303 302l104 -63c64 -39 88 -66 88 -123c0 -67 -64 -126 -140 -126c-21 0 -50 2 -73 10c-24 8 -35 9 -46 9c-3 0 -6 0 -9 1c-20 -13 -43 -20 -69 -20c-58 0 -88 43 -88 127v301h-53c-3 2 -4 4 -4 7c0 6 6 12 17 19c26 15 59 52 97 107c6 9 14 21 20 28c5 0 7 -3 7 -13 v-116h120c18 6 39 10 62 10c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68zM266 77l13 -11l-16 -23c25 -24 47 -31 79 -31c51 0 83 34 83 75c0 31 -20 57 -53 75l-54 30 c-83 46 -120 94 -120 145c0 33 10 61 28 81h-72v-286c0 -64 15 -90 52 -90c22 0 38 9 60 35'], + 0x2A7: [683,233,483,13,540,'154 450h125c0 56 3 91 16 129c22 64 69 104 152 104c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60c-41 0 -48 -52 -48 -102v-593c0 -103 -54 -187 -172 -187c-47 0 -93 19 -93 56c0 23 21 38 40 38c43 0 53 -60 89 -60c39 0 52 35 52 90v143 c-26 -16 -77 -44 -117 -44c-51 0 -92 26 -92 126v302h-53c-2 1 -4 3 -4 6c0 16 22 19 44 41c36 35 57 67 90 114c6 0 7 -5 7 -13v-116zM279 63v355h-125v-287c0 -41 5 -89 51 -89c20 0 49 6 74 21'], + 0x2A8: [579,10,650,13,641,'154 418v-286c0 -64 15 -90 52 -90c39 0 69 13 93 24c-31 40 -49 89 -49 153c0 164 117 247 221 247c36 0 79 -11 107 -31c29 -21 45 -45 45 -70c0 -23 -17 -44 -47 -44c-26 0 -42 22 -48 46c-13 52 -17 70 -70 70c-40 0 -131 -31 -131 -178c0 -53 23 -105 56 -146 c68 44 102 57 158 57c51 0 100 -34 100 -89s-43 -91 -123 -91c-56 0 -96 3 -130 15c-30 11 -46 22 -68 39c-64 -38 -105 -54 -162 -54c-58 0 -88 43 -88 127v301h-53c-3 2 -4 4 -4 7c0 6 6 12 17 19c26 15 59 52 97 107c6 9 14 18 20 28c5 0 7 -3 7 -13v-116h101v-32h-101z M609 82c0 38 -37 62 -69 62c-48 0 -68 -11 -137 -54c48 -48 88 -64 119 -64c75 0 87 28 87 56'], + 0x2AE: [469,232,619,15,612,'612 450v-14c-58 -8 -64 -17 -64 -87v-471c0 -43 8 -51 51 -51c4 0 9 0 12 1v-16l-27 -8c-57 -17 -80 -24 -115 -36l-5 3v304c-46 -60 -88 -84 -147 -84c-82 0 -123 54 -123 159v182c0 62 -8 104 -50 104c-36 0 -46 -60 -89 -60c-19 0 -40 15 -40 38c0 36 46 55 93 55 c129 0 170 -101 170 -217v-101c0 -70 25 -106 74 -106c40 0 70 17 112 63v241c0 69 -10 81 -68 87v14h216'], + 0x2AF: [469,233,679,15,729,'548 349v-458c0 -55 13 -90 52 -90c36 0 46 60 89 60c19 0 40 -15 40 -38c0 -37 -46 -56 -93 -56c-118 0 -172 84 -172 188v120c-46 -60 -88 -84 -147 -84c-82 0 -123 54 -123 159v182c0 62 -8 104 -50 104c-36 0 -46 -60 -89 -60c-19 0 -40 15 -40 38c0 36 46 55 93 55 c129 0 170 -101 170 -217v-101c0 -70 25 -106 74 -106c40 0 70 17 112 63v241c0 69 -10 81 -68 87v14h216v-14c-58 -8 -64 -17 -64 -87'], + 0x1D00: [468,0,510,15,495,'495 0h-177v18c25 0 30 1 38 6c6 3 10 6 10 12c0 10 -4 29 -13 49l-28 65h-175l-32 -80c-4 -9 -6 -20 -6 -29c0 -21 8 -23 41 -23v-18h-138v18c40 4 47 12 88 111l142 339h15l171 -391c20 -45 29 -55 64 -59v-18zM312 184l-76 179l-73 -179h149'], + 0x1D07: [464,0,504,21,481,'481 119l-36 -119h-424v18c61 4 67 13 67 67v296c0 52 -7 62 -67 65v18h419v-105h-19c-13 63 -31 72 -123 72h-101c-21 0 -27 -3 -27 -26v-145h116c69 0 80 10 89 65h20v-166h-20c-9 59 -20 68 -89 68h-116v-161c0 -29 4 -33 63 -33h41c115 0 149 11 186 86h21'], + 0x1D1C: [464,14,583,21,560,'560 464v-18c-66 -5 -68 -23 -68 -90v-176c0 -68 -7 -106 -43 -142c-33 -34 -87 -52 -161 -52c-59 0 -102 16 -134 38c-44 29 -66 73 -66 148v214c0 39 -7 59 -67 60v18h215v-18c-64 -5 -67 -20 -67 -67v-212c0 -55 3 -86 35 -114c23 -20 57 -32 102 -32 c52 0 97 15 122 42c26 27 31 56 31 114v177c0 72 -9 87 -69 92v18h170'], + 0x1D81: [683,287,528,27,491,'491 58v-206c0 -77 -47 -139 -108 -139c-70 0 -128 23 -128 55c0 15 12 27 28 27c21 0 29 -16 43 -32s32 -31 54 -31c44 0 56 47 56 91v199l-92 -32l-4 3v64c-34 -47 -72 -67 -128 -67c-111 0 -185 87 -185 215c0 142 93 255 208 255c40 0 67 -11 105 -43v156 c0 41 -9 51 -46 51c-8 0 -14 0 -22 -1v16c64 17 99 27 147 44l5 -2v-567c0 -46 8 -57 44 -57c5 0 6 0 23 1zM340 102v230c0 53 -48 100 -102 100c-76 0 -125 -74 -125 -187c0 -123 54 -203 138 -203c31 0 56 11 74 32c9 10 15 21 15 28'], + 0x1D84: [683,287,542,7,505,'505 15v-163c0 -77 -47 -139 -108 -139c-70 0 -128 23 -128 55c0 15 12 27 28 27c21 0 29 -16 43 -32s32 -31 54 -31c44 0 56 47 56 91v177h-163v15h19c12 0 21 6 21 15c0 5 -3 13 -11 23l-150 198v-184c0 -35 15 -49 55 -51l20 -1v-15h-234v15c72 12 75 15 75 67v482 c0 48 -9 61 -43 61c-10 0 -19 -1 -32 -2v16l30 8c60 16 86 24 125 36l4 -2v-420l137 122c14 13 23 26 23 35c0 13 -11 17 -50 18v14h204v-15c-64 0 -93 -12 -216 -126l-29 -27l153 -194c41 -52 73 -70 117 -73'], + 0x1D85: [683,287,294,19,257,'257 15v-163c0 -62 -37 -139 -108 -139c-31 0 -128 10 -128 55c0 16 13 27 28 27c36 0 47 -63 97 -63c47 0 56 54 56 91v177h-181v15c58 4 77 18 77 77v469c0 33 -2 64 -42 64c-12 0 -25 0 -37 -2v16c53 13 106 27 158 44l5 -4v-592c0 -60 17 -69 75 -72'], + 0x1D8A: [459,287,389,51,348,'156 301l104 -63c64 -39 88 -66 88 -123c0 -22 -7 -42 -18 -60v-203c0 -77 -47 -139 -108 -139c-70 0 -128 23 -128 55c0 15 12 27 28 27c21 0 29 -16 43 -32s32 -31 54 -31c44 0 56 47 56 91v183c-20 -10 -43 -16 -67 -16c-21 0 -50 1 -73 9c-24 8 -35 9 -46 9 c-12 0 -18 -2 -24 -12h-13v157h16c21 -97 58 -141 127 -141c51 0 83 33 83 74c0 31 -20 57 -53 75l-54 30c-83 46 -120 94 -120 145c0 79 56 123 138 123c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11l5 -136h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68 c0 -22 15 -51 43 -68'], + 0x1D8D: [450,287,516,17,479,'479 15v-163c0 -77 -47 -139 -108 -139c-70 0 -128 23 -128 55c0 15 12 27 28 27c21 0 29 -16 43 -32s32 -31 54 -31c44 0 56 47 56 91v177h-146v15c33 2 40 6 40 24c0 7 -2 12 -6 18l-91 140l-79 -123c-14 -22 -20 -34 -20 -41c0 -13 11 -18 40 -18v-15h-145v15 c33 3 45 10 73 51l114 165l-94 144c-31 47 -47 60 -77 60h-9v15h207v-15c-30 -1 -43 -7 -43 -22c0 -13 17 -46 46 -89c5 -7 10 -13 14 -20c10 13 21 28 30 44c23 34 37 53 37 65c0 14 -10 20 -40 22v15h158v-15c-32 -1 -62 -17 -81 -44l-83 -120l128 -196 c28 -43 51 -60 82 -60'], + 0x1D8E: [450,287,453,27,416,'416 136v-284c0 -77 -47 -139 -108 -139c-70 0 -128 23 -128 55c0 15 12 27 28 27c21 0 29 -16 43 -32s32 -31 54 -31c44 0 56 47 56 91v177h-334v15l266 405h-135c-63 0 -78 -15 -87 -88h-18l4 118h346v-15l-269 -405h133c58 0 92 10 106 27s17 31 27 81'], + 0x1D98: [755,-425,441,57,387,'165 706l2 2c24 33 51 47 90 47c78 0 130 -61 130 -151c0 -99 -66 -179 -146 -179c-28 0 -47 8 -74 31l-58 -27v239c0 32 -9 47 -21 47s-19 -4 -31 -14v20c22 27 40 34 63 34c26 0 41 -14 45 -49zM167 676v-161c0 -37 34 -70 72 -70c53 0 87 52 87 131 c0 86 -37 142 -96 142c-22 0 -40 -8 -52 -22c-6 -7 -11 -15 -11 -20'], + 0x1DA3: [757,-279,480,64,398,'398 309l-19 -5c-40 -11 -56 -17 -81 -25l-3 2v212c-32 -41 -62 -58 -103 -58c-58 0 -86 37 -86 111v139c0 49 -4 54 -42 61v11h148v-11c-41 -4 -47 -12 -47 -61v-138c0 -49 17 -75 51 -75c28 0 49 12 79 45v168c0 49 -7 57 -48 61v11h151v-11c-40 -5 -44 -12 -44 -61 v-329c0 -31 5 -36 35 -36c3 0 7 0 9 1v-12'], + 0x207F: [676,-270,541,57,484,'484 270h-190l1 24c44 4 54 4 54 62v183c0 62 -21 89 -64 89c-29 0 -50 -11 -91 -51v-250c0 -34 13 -29 58 -33v-24h-193v24c45 3 54 3 54 53v213c0 43 -6 57 -30 57c-10 0 -20 -2 -26 -5v24c48 14 77 24 121 40l14 -4v-67h1c45 52 86 71 126 71c67 0 111 -48 111 -136 v-201c0 -48 11 -40 54 -45v-24'], + 0x20A3: [662,0,556,11,546,'384 390v-30h-183v-90h183v-30h-183v-128c0 -76 14 -89 91 -93v-19h-281v19c76 5 88 17 88 104v117h-82v30h82v90h-82v30h82v161c0 73 -10 86 -87 92v19h529l5 -143h-25c-15 89 -33 105 -154 105h-132c-29 0 -34 -8 -34 -39v-195h183'], + 0x20A4: [676,8,500,12,490,'25 277h113c-3 27 -7 58 -10 90h-104v30h101c-1 9 -2 21 -2 45c0 143 76 234 195 234c75 0 130 -40 130 -93c0 -31 -21 -53 -50 -53c-30 0 -38 28 -39 67c-1 35 -19 52 -56 52c-60 0 -95 -51 -95 -137c0 -39 2 -76 7 -115h138v-30h-134c5 -36 5 -64 5 -90h131v-30h-133 c-4 -37 -13 -89 -23 -136c65 -27 100 -35 149 -35c46 0 82 15 113 49c10 11 17 16 23 16c4 0 6 -1 6 -5c0 -18 -24 -65 -45 -88c-33 -35 -76 -55 -122 -55c-44 0 -77 14 -145 61c-40 -48 -63 -62 -98 -62c-42 0 -68 24 -68 62c0 46 36 76 91 76c15 0 27 -1 46 -5 c2 8 3 14 3 21c0 10 -4 58 -9 101h-118v30zM88 94c-32 0 -50 -13 -50 -37c0 -22 17 -37 42 -37c19 0 33 7 47 25c10 12 15 23 15 31c0 9 -29 18 -54 18'], + 0x20A7: [662,10,1182,16,1141,'202 291v-179c0 -76 13 -89 94 -93v-19h-280v19c78 6 84 17 84 103v429c0 74 -10 86 -84 92v19h238c100 0 158 -25 203 -63c33 -28 50 -69 50 -119c0 -53 -20 -105 -52 -131c-66 -53 -114 -61 -206 -61c-26 0 -20 1 -47 3zM202 589v-258c23 -2 19 -3 39 -3 c110 0 157 79 157 147c0 110 -57 150 -161 150c-29 0 -35 -9 -35 -36zM771 450v-32h-101v-286c0 -64 15 -90 52 -90c22 0 38 9 60 35l13 -11c-33 -52 -71 -76 -121 -76c-58 0 -88 43 -88 127v301h-53c-3 2 -4 4 -4 7c0 6 6 12 17 19c26 15 59 52 97 107c6 9 14 18 20 28 c5 0 7 -3 7 -13v-116h101zM1109 314h-15c-23 90 -53 123 -113 123c-43 0 -75 -21 -75 -68c0 -22 15 -51 43 -68l104 -63c64 -39 88 -66 88 -123c0 -67 -64 -125 -140 -125c-21 0 -50 1 -73 9c-24 8 -35 9 -46 9c-12 0 -18 -2 -24 -12h-13v157h16c21 -97 58 -141 127 -141 c51 0 83 33 83 74c0 31 -20 57 -53 75l-54 30c-83 46 -120 94 -120 145c0 79 56 123 138 123c24 0 46 -1 67 -11c11 -5 21 -8 28 -8c4 0 8 1 16 10h11'], + 0x20AC: [664,12,500,38,462,'462 500h-15c-15 78 -71 137 -146 137c-74 0 -128 -95 -142 -244h244l-8 -34h-238c-1 -13 -1 -37 -1 -49h227l-8 -34h-218c4 -138 54 -248 133 -248c64 0 92 19 148 106l13 -10c-58 -102 -102 -136 -177 -136c-113 0 -185 112 -196 288h-40l8 34h30c0 17 0 38 1 49h-39 l8 34h34c21 158 103 271 221 271c46 0 123 -15 161 -53v-111'], + 0x2153: [676,14,750,36,725,'638 241v-2c60 -15 87 -62 87 -110c0 -79 -76 -137 -187 -137c-53 0 -91 24 -91 56c0 21 17 31 37 31c11 0 22 -5 41 -19c22 -16 33 -20 51 -20c41 0 68 30 68 71c0 52 -34 82 -89 82c-2 0 -4 0 -28 -3v29c70 24 95 48 95 84c0 30 -21 47 -56 47c-36 0 -59 -14 -86 -58 l-25 19c36 67 74 95 135 95s108 -36 108 -83c0 -28 -12 -58 -60 -82zM594 676l-450 -690h-49l453 690h46zM216 270h-180v24c43 3 53 10 53 33v254c0 23 -3 30 -9 30c-7 0 -16 -2 -42 -14v24l107 55l14 -4v-339c0 -26 14 -39 57 -39v-24'], + 0x2154: [676,14,750,14,731,'644 241v-2c60 -15 87 -62 87 -110c0 -79 -76 -137 -187 -137c-53 0 -91 24 -91 56c0 21 17 31 37 31c11 0 22 -5 41 -19c22 -16 33 -20 51 -20c41 0 68 30 68 71c0 52 -34 82 -89 82c-2 0 -4 0 -28 -3v29c70 24 95 48 95 84c0 30 -21 47 -56 47c-36 0 -59 -14 -86 -58 l-25 19c36 67 74 95 135 95s108 -36 108 -83c0 -28 -12 -58 -60 -82zM637 676l-450 -690h-49l453 690h46zM309 355l-39 -85h-251v24l101 108c51 55 88 100 88 139c0 50 -27 75 -73 75c-37 0 -74 -26 -96 -74l-25 15c28 82 65 119 150 119c78 0 126 -46 126 -109 c0 -49 -21 -88 -86 -151l-84 -81h113c27 0 43 5 58 27'], + 0x2155: [676,14,750,37,715,'715 404l-33 -64c-3 -7 -8 -12 -19 -12h-131l-15 -25c82 -13 113 -25 138 -48c33 -30 49 -53 49 -110c0 -93 -67 -153 -181 -153c-63 0 -86 27 -86 53c0 20 12 32 32 32c17 0 25 -2 50 -20c18 -13 30 -17 44 -17c43 0 76 30 76 82c0 31 -15 55 -46 76 c-29 19 -72 28 -132 28c-9 0 -10 3 -10 12c0 3 0 5 1 7l84 155h129c17 0 22 4 31 16zM595 676l-450 -690h-49l453 690h46zM217 270h-180v24c43 3 53 10 53 33v254c0 23 -3 30 -9 30c-7 0 -16 -2 -42 -14v24l107 55l14 -4v-339c0 -26 14 -39 57 -39v-24'], + 0x2156: [676,14,750,14,720,'720 404l-33 -64c-3 -7 -8 -12 -19 -12h-131l-15 -25c82 -13 113 -25 138 -48c33 -30 49 -53 49 -110c0 -93 -67 -153 -181 -153c-63 0 -86 27 -86 53c0 20 12 32 32 32c17 0 25 -2 50 -20c18 -13 30 -17 44 -17c43 0 76 30 76 82c0 31 -15 55 -46 76 c-29 20 -72 28 -132 28c-9 0 -10 3 -10 12c0 3 0 5 1 7l84 155h129c17 0 22 4 31 16zM637 676l-450 -690h-49l453 690h46zM309 355l-39 -85h-251v24l101 108c51 55 78 108 78 138c0 42 -31 76 -71 76c-37 0 -66 -26 -88 -74l-25 15c28 82 65 119 150 119 c78 0 126 -46 126 -109c0 -49 -21 -88 -86 -151l-84 -81h113c27 0 43 5 58 27'], + 0x2157: [676,14,750,13,720,'720 404l-33 -64c-3 -7 -8 -12 -19 -12h-131l-15 -25c82 -13 113 -25 138 -48c33 -30 49 -53 49 -110c0 -93 -67 -153 -181 -153c-63 0 -86 27 -86 53c0 20 12 32 32 32c17 0 25 -2 50 -20c18 -13 30 -17 44 -17c43 0 76 30 76 82c0 31 -15 55 -46 76 c-29 20 -72 28 -132 28c-9 0 -10 3 -10 12c0 3 0 5 1 7l84 155h129c17 0 22 4 31 16zM637 676l-450 -690h-49l453 690h46zM204 511v-2c60 -15 87 -62 87 -110c0 -79 -76 -137 -187 -137c-53 0 -91 24 -91 56c0 21 17 31 37 31c11 0 22 -5 41 -19c22 -16 33 -20 51 -20 c41 0 68 30 68 71c0 52 -34 82 -89 82c-2 0 -4 0 -28 -3v29c70 24 95 48 95 84c0 30 -21 47 -56 47c-36 0 -59 -14 -86 -58l-25 19c36 67 74 95 135 95s108 -36 108 -83c0 -28 -12 -58 -60 -82'], + 0x2158: [676,14,750,14,720,'720 404l-33 -64c-3 -7 -8 -12 -19 -12h-131l-15 -25c82 -13 113 -25 138 -48c33 -30 49 -53 49 -110c0 -93 -67 -153 -181 -153c-63 0 -86 27 -86 53c0 20 12 32 32 32c17 0 25 -2 50 -20c18 -13 30 -17 44 -17c43 0 76 30 76 82c0 31 -15 55 -46 76 c-29 20 -72 28 -132 28c-9 0 -10 3 -10 12c0 3 0 5 1 7l84 155h129c17 0 22 4 31 16zM637 676l-450 -690h-49l453 690h46zM319 361h-55v-90h-70v90h-180v49l203 266h47v-258h55v-57zM194 418v179l-135 -179h135'], + 0x2159: [676,14,750,37,717,'702 416l3 -24c-81 -12 -182 -45 -195 -145c19 9 47 21 75 21c83 0 132 -56 132 -139s-65 -143 -147 -143c-99 0 -151 82 -151 175c0 157 133 254 283 255zM637 109c0 53 -26 121 -76 121c-32 0 -60 -30 -60 -67c0 -64 23 -132 74 -132c39 0 62 36 62 78zM595 676 l-450 -690h-49l453 690h46zM217 270h-180v24c43 3 53 10 53 33v254c0 23 -3 30 -9 30c-7 0 -16 -2 -42 -14v24l107 55l14 -4v-339c0 -26 14 -39 57 -39v-24'], + 0x215A: [676,15,750,29,722,'707 415l3 -24c-81 -12 -182 -47 -195 -147c19 11 47 23 75 23c83 0 132 -56 132 -139s-65 -143 -147 -143c-99 0 -151 80 -151 173c0 157 133 256 283 257zM642 108c0 53 -26 121 -76 121c-32 0 -60 -35 -60 -72c0 -64 23 -127 74 -127c39 0 62 36 62 78zM637 676 l-450 -690h-49l453 690h46zM307 664l-33 -64c-3 -7 -8 -12 -19 -12h-131l-15 -25c82 -13 113 -25 138 -48c33 -30 49 -53 49 -110c0 -93 -67 -153 -181 -153c-63 0 -86 27 -86 53c0 20 12 32 32 32c17 0 25 -2 50 -20c18 -13 30 -17 44 -17c43 0 76 30 76 82 c0 31 -15 55 -46 76c-29 20 -72 28 -132 28c-9 0 -10 3 -10 12c0 3 0 5 1 7l84 155h129c17 0 22 4 31 16'], + 0x215B: [676,14,750,37,722,'722 98c0 -66 -55 -106 -138 -106c-78 0 -132 31 -132 92c0 42 15 75 80 116c-62 46 -75 66 -75 107c0 60 55 99 133 99c68 0 116 -37 116 -85c0 -47 -22 -71 -81 -99c74 -45 97 -76 97 -124zM644 301c0 32 -32 52 -65 52c-35 0 -57 -16 -57 -44c0 -29 15 -44 67 -70 c34 19 55 33 55 62zM598 162l-31 19c-33 -23 -45 -46 -45 -74c0 -41 29 -61 71 -61c35 0 61 17 61 45c0 25 -20 49 -56 71zM595 676l-450 -690h-49l453 690h46zM217 270h-180v24c43 3 53 10 53 33v254c0 23 -3 30 -9 30c-7 0 -16 -2 -42 -14v24l107 55l14 -4v-339 c0 -26 14 -39 57 -39v-24'], + 0x215C: [676,14,750,13,727,'727 98c0 -66 -55 -106 -138 -106c-78 0 -132 31 -132 92c0 42 15 75 80 116c-62 46 -75 66 -75 107c0 60 55 99 133 99c68 0 116 -37 116 -85c0 -47 -22 -71 -81 -99c74 -45 97 -76 97 -124zM649 301c0 32 -32 52 -65 52c-35 0 -57 -16 -57 -44c0 -29 15 -44 67 -70 c34 19 55 33 55 62zM603 162l-31 19c-33 -23 -45 -46 -45 -74c0 -41 29 -61 71 -61c35 0 61 17 61 45c0 25 -20 49 -56 71zM637 676l-450 -690h-49l453 690h46zM204 511v-2c60 -15 87 -62 87 -110c0 -79 -76 -137 -187 -137c-53 0 -91 24 -91 56c0 21 17 31 37 31 c11 0 22 -5 41 -19c22 -16 33 -20 51 -20c41 0 68 30 68 71c0 52 -34 82 -89 82c-2 0 -4 0 -28 -3v29c70 24 95 48 95 84c0 30 -21 47 -56 47c-36 0 -59 -14 -86 -58l-25 19c36 67 74 95 135 95s108 -36 108 -83c0 -28 -12 -58 -60 -82'], + 0x215D: [676,14,750,29,727,'727 98c0 -66 -55 -106 -138 -106c-78 0 -132 31 -132 92c0 42 15 75 80 116c-62 46 -75 66 -75 107c0 60 55 99 133 99c68 0 116 -37 116 -85c0 -47 -22 -71 -81 -99c74 -45 97 -76 97 -124zM649 301c0 32 -32 52 -65 52c-35 0 -57 -16 -57 -44c0 -29 15 -44 67 -70 c34 19 55 33 55 62zM603 162l-31 19c-33 -23 -45 -46 -45 -74c0 -41 29 -61 71 -61c35 0 61 17 61 45c0 25 -20 49 -56 71zM637 676l-450 -690h-49l453 690h46zM307 664l-33 -64c-3 -7 -8 -12 -19 -12h-131l-15 -25c82 -13 113 -25 138 -48c33 -30 49 -53 49 -110 c0 -93 -67 -153 -181 -153c-63 0 -86 27 -86 53c0 20 12 32 32 32c17 0 25 -2 50 -20c18 -13 30 -17 44 -17c43 0 76 30 76 82c0 31 -15 55 -46 76c-29 20 -72 28 -132 28c-9 0 -10 3 -10 12c0 3 0 5 1 7l84 155h129c17 0 22 4 31 16'], + 0x215E: [676,14,750,28,727,'727 98c0 -66 -55 -106 -138 -106c-78 0 -132 31 -132 92c0 42 15 75 80 116c-62 46 -75 66 -75 107c0 60 55 99 133 99c68 0 116 -37 116 -85c0 -47 -22 -71 -81 -99c74 -45 97 -76 97 -124zM649 301c0 32 -32 52 -65 52c-35 0 -57 -16 -57 -44c0 -29 15 -44 67 -70 c34 19 55 33 55 62zM603 162l-31 19c-33 -23 -45 -46 -45 -74c0 -41 29 -61 71 -61c35 0 61 17 61 45c0 25 -20 49 -56 71zM600 676l-450 -690h-49l453 690h46zM321 642l-144 -387h-56l128 340h-126c-39 0 -46 -5 -71 -37l-24 10l45 92h248v-18'], + 0x2460: [676,14,684,0,684,'435 141h-175v20c47 2 59 12 59 37v240c0 14 -5 20 -16 20c-6 0 -18 -1 -29 -5l-18 -7v20l113 51l6 -2v-327c0 -20 13 -27 60 -27v-20zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2461: [676,14,684,0,684,'490 227l-41 -86h-247v19l112 95c61 52 83 94 83 138c0 45 -34 70 -87 70c-46 0 -64 -23 -90 -77l-19 7c16 71 57 124 135 124c72 0 117 -45 117 -103c0 -47 -23 -92 -80 -141l-92 -78h129c27 0 40 9 60 39zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2462: [676,14,684,0,684,'240 411l-20 6c22 59 63 100 129 100c60 0 99 -33 99 -81c0 -26 -13 -52 -48 -74c43 -16 70 -45 70 -96c0 -93 -92 -132 -177 -132c-47 0 -72 15 -72 38c0 16 12 27 28 27c9 0 19 -4 39 -16c22 -13 35 -16 53 -16c45 0 82 32 82 75c0 37 -22 59 -65 68c-15 3 -28 4 -66 4 v21c30 8 46 14 55 18c31 15 49 38 49 69c0 33 -26 49 -66 49c-42 0 -66 -20 -90 -60zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2463: [676,14,684,0,684,'464 228h-63v-87h-56v87h-178v45l201 244h33v-241h63v-48zM345 276v171l-142 -171h142zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2464: [676,14,684,0,684,'464 522l-25 -50c-4 -8 -9 -12 -21 -12h-120l-20 -33c103 -19 176 -45 176 -146c0 -98 -77 -147 -170 -147c-49 0 -81 14 -81 38c0 18 10 30 30 30c16 0 24 -3 47 -18c16 -11 30 -16 44 -16c44 0 84 42 84 86c0 81 -92 113 -175 113c-8 0 -11 2 -11 10c0 4 2 7 3 9 l70 131h122c16 0 21 5 29 15zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2465: [676,14,684,0,684,'452 517v-25c-96 -15 -163 -59 -182 -132c31 19 52 23 77 23c75 0 119 -46 119 -120c0 -75 -58 -129 -132 -129c-89 0 -148 65 -148 150c0 62 30 121 73 161c57 51 107 64 193 72zM406 245c0 66 -25 101 -81 101c-37 0 -74 -14 -74 -59c0 -78 31 -124 90 -124 c44 0 65 30 65 82zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2466: [676,14,684,0,684,'472 500l-136 -366h-46l124 327h-129c-37 0 -48 -9 -74 -45l-18 9l44 92h235v-17zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2467: [676,14,684,0,684,'474 232c0 -60 -55 -98 -132 -98c-72 0 -125 30 -125 85c0 39 17 70 77 107c-57 43 -70 61 -70 100c0 55 52 91 124 91c63 0 107 -35 107 -79c0 -43 -20 -65 -75 -91c69 -42 94 -70 94 -115zM409 432c0 34 -25 56 -67 56c-41 0 -69 -17 -69 -47s24 -50 78 -78 c41 22 58 39 58 69zM357 288l-36 21c-38 -26 -50 -48 -50 -79c0 -47 32 -67 79 -67c39 0 68 17 68 48c0 29 -19 53 -61 77zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2468: [676,14,684,0,684,'229 134v25c92 14 157 53 184 133c-26 -21 -56 -28 -90 -28c-69 0 -114 47 -114 118c0 77 55 135 132 135c92 0 141 -76 141 -161c0 -65 -26 -119 -77 -159c-54 -43 -97 -53 -176 -63zM417 333v34c0 88 -27 121 -81 121c-47 0 -67 -42 -67 -88c0 -61 30 -99 76 -99 c28 0 72 8 72 32zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24B6: [676,14,684,0,684,'544 141h-147v23c19 1 38 2 38 14c0 8 -2 20 -9 33l-23 45h-148l-26 -55c-3 -7 -5 -16 -5 -20c0 -13 11 -17 38 -17v-23h-116v23c35 4 40 15 72 88l120 272h9l144 -313c15 -32 23 -43 53 -47v-23zM389 293l-60 137h-1l-59 -137h120zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24B7: [676,14,684,0,684,'170 517h170c105 0 159 -36 159 -98c0 -41 -22 -69 -57 -80c44 -14 82 -44 82 -94c0 -64 -62 -104 -149 -104h-205v23c48 1 51 9 51 46v239c0 37 -2 42 -51 45v23zM291 354h54c61 0 84 21 84 62c0 42 -28 67 -100 67h-25c-9 0 -13 -3 -13 -10v-119zM291 317v-124 c0 -14 10 -18 37 -18c62 0 116 8 116 71c0 69 -67 71 -131 71h-22zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24B8: [676,14,684,0,684,'527 226l17 -14c-42 -51 -107 -78 -182 -78c-119 0 -216 69 -216 192c0 122 102 198 216 198c31 0 59 -4 89 -11c11 -3 25 -6 33 -6c12 0 24 6 28 17h14l5 -137h-22c-15 63 -66 102 -132 102c-96 0 -154 -63 -154 -154c0 -104 59 -164 161 -164c58 0 94 17 143 55z M684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24B9: [676,14,684,0,684,'138 517h168c130 0 239 -41 239 -184c0 -119 -85 -192 -232 -192h-175v23c45 2 51 6 51 43v246c0 37 -6 38 -51 41v23zM259 468v-275c0 -14 12 -18 34 -18c101 0 172 35 174 155c0 120 -80 153 -186 153c-22 0 -22 -2 -22 -15zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BA: [676,14,684,0,684,'520 247l-31 -106h-327v23c45 1 51 6 51 43v246c0 35 -7 38 -51 41v23h323l4 -94h-22c-9 49 -21 60 -89 60h-76c-15 0 -19 0 -19 -12v-117h83c51 0 58 6 64 49h22v-135h-22c-6 45 -13 49 -64 49h-83v-124c0 -13 12 -18 32 -18h51c84 0 107 14 134 72h20zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BB: [676,14,684,0,684,'509 423h-22c-10 49 -19 60 -92 60h-91c-18 0 -21 -1 -21 -12v-117h93c54 0 60 6 66 49h22v-135h-22c-6 45 -12 49 -66 49h-93v-115c0 -32 15 -35 66 -38v-23h-187v23c48 2 51 6 51 48v237c0 35 -1 42 -51 45v23h343zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BC: [676,14,684,0,684,'563 347v-23c-33 -2 -41 -6 -41 -36v-114c-33 -26 -101 -40 -161 -40c-124 0 -215 74 -215 193c0 120 101 197 217 197c23 0 48 -6 73 -12c11 -3 21 -5 29 -5c12 0 22 7 26 17h18l5 -128h-22c-10 34 -22 48 -41 65c-20 18 -49 28 -77 28c-77 0 -151 -49 -151 -155 c0 -104 60 -163 161 -163c45 0 70 13 70 27v83c0 37 -6 40 -51 43v23h160zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BD: [676,14,684,0,684,'538 141h-162v23c40 3 46 11 46 51v102h-154v-107c0 -35 7 -43 45 -46v-23h-160v23c40 3 45 9 45 50v234c0 37 -6 42 -45 46v23h161v-23c-38 -4 -46 -9 -46 -46v-94h154v94c0 38 -7 42 -46 46v23h162v-23c-39 -4 -46 -9 -46 -46v-239c0 -34 7 -41 46 -45v-23zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BE: [676,14,684,0,684,'436 141h-181v23c48 1 55 8 55 45v240c0 38 -5 42 -55 45v23h181v-23c-50 -3 -56 -9 -56 -45v-240c0 -36 8 -44 56 -45v-23zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24BF: [676,14,684,0,684,'446 517v-23c-53 -4 -56 -10 -56 -46v-198c0 -80 -42 -116 -112 -116c-39 0 -66 16 -66 47c0 22 14 34 33 34c14 0 29 -10 33 -31c1 -6 4 -16 16 -16c19 0 26 14 26 32v250c0 37 -6 41 -55 44v23h181zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344 c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C0: [676,14,684,0,684,'557 141h-181v23c27 3 38 7 38 14s-16 22 -29 35l-102 104l-14 -12v-96c0 -37 9 -44 56 -45v-23h-181v23c52 1 55 10 55 52v237c0 35 -9 38 -55 41v23h181v-23c-47 -3 -56 -7 -56 -44v-105l98 88c28 25 45 40 45 49c0 7 -4 10 -22 11l-16 1v23h151v-23 c-41 -3 -52 -9 -90 -43l-105 -92l137 -138c50 -51 62 -57 90 -57v-23zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C1: [676,14,684,0,684,'497 249l-26 -108h-292v23c44 1 55 6 55 43v251c0 33 -18 34 -55 36v23h181v-23c-39 -3 -56 -4 -56 -39v-253c0 -19 9 -26 43 -26h33c39 0 63 9 78 30c7 11 14 24 22 43h17zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346 c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C2: [676,14,684,0,684,'569 141h-164v20v3c41 3 47 11 47 51v233h-2l-130 -307h-12l-108 283h-1v-193c0 -55 7 -64 47 -67v-23h-125v23c44 4 46 11 46 67v217c0 37 -2 43 -45 46v23h104l106 -277l116 277h120v-23c-37 -1 -46 -9 -46 -45v-240c0 -33 9 -42 47 -45v-23zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C3: [676,14,684,0,684,'526 517v-23c-20 -2 -27 -4 -33 -9c-9 -8 -14 -20 -14 -59v-292h-15l-219 297v-206c0 -47 7 -55 45 -62v-23h-120v23c42 5 43 13 43 66v238c-15 20 -16 27 -43 27v23h85l192 -263v177c0 25 -2 41 -9 50s-16 11 -39 13v23h127zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C4: [676,14,684,0,684,'548 333c0 -115 -85 -192 -203 -192c-119 0 -203 78 -203 193c0 113 83 190 203 190s203 -81 203 -191zM471 336c0 89 -41 156 -127 156c-88 0 -125 -73 -125 -159c0 -89 37 -160 127 -160c91 0 125 71 125 163zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C5: [676,14,684,0,684,'172 517h165c80 0 150 -24 150 -106c0 -87 -73 -114 -153 -114c-14 0 -24 0 -37 2v-93c0 -36 12 -41 56 -42v-23h-181v23c42 2 55 3 55 44v248c0 36 -16 36 -55 38v23zM297 469v-133c11 -2 22 -2 32 -2c60 0 82 29 82 74c0 55 -22 75 -96 75c-15 0 -18 -4 -18 -14z M684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C6: [676,14,684,0,684,'497 78h-29c-92 0 -145 13 -186 79c-78 19 -140 79 -140 175c0 122 90 192 202 192c115 0 204 -74 204 -192c0 -104 -70 -170 -165 -180c20 -28 48 -48 114 -51v-23zM471 334c0 92 -41 158 -127 158c-87 0 -125 -73 -125 -159c0 -89 38 -152 127 -152 c90 0 125 62 125 153zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C7: [676,14,684,0,684,'549 141h-93l-126 166h-33v-98c0 -36 7 -42 49 -45v-23h-174v23c40 2 55 2 55 44v248c0 36 -17 36 -55 38v23h165c59 0 150 -13 150 -106c0 -49 -26 -84 -89 -96l99 -127c14 -18 26 -21 52 -24v-23zM297 469v-124c8 -1 17 -1 24 -1c57 0 90 11 90 66c0 39 -10 73 -89 73 c-18 0 -25 0 -25 -14zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24C9: [676,14,684,0,684,'520 411h-22c-12 60 -29 72 -93 72h-25v-274c0 -37 9 -44 56 -45v-23h-181v23c50 2 55 7 55 50v269h-29c-64 0 -79 -12 -90 -72h-21l4 106h341zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CA: [676,14,684,0,684,'526 517v-23c-42 -5 -47 -17 -47 -64v-138c0 -95 -38 -158 -136 -158c-88 0 -139 52 -139 151v166c0 33 -5 39 -46 43v23h162v-23c-40 -5 -46 -10 -46 -45v-171c0 -64 4 -107 81 -107c74 0 92 47 92 114v144c0 51 -6 62 -47 65v23h126zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CB: [676,14,684,0,684,'544 517v-23c-24 -1 -38 -8 -54 -45l-130 -308h-8l-143 297c-24 49 -33 55 -63 56v23h156v-23l-18 -1c-18 -1 -25 -5 -25 -11c0 -5 3 -16 22 -54l90 -183l83 197c7 16 11 28 11 36c0 13 -25 15 -41 16v23h120zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CC: [676,14,684,0,684,'569 517v-23c-27 -6 -33 -10 -41 -34l-100 -319h-6l-78 229h-1l-73 -229h-6l-94 292c-15 48 -23 60 -49 61v23h118v-23c-24 -1 -30 -3 -30 -11c0 -4 3 -12 6 -22l66 -203l50 150l-13 38c-15 44 -20 47 -49 48v23h129v-23c-24 -1 -36 -2 -36 -15c0 -5 3 -14 7 -26l68 -196 h1l57 182c5 15 9 27 9 36c0 13 -9 18 -34 19v23h99zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24CD: [676,14,684,0,684,'520 141h-150v23l14 1c15 1 24 4 24 10s-8 23 -25 50l-48 75l-59 -80c-18 -25 -26 -39 -26 -44c0 -7 9 -9 38 -12v-23h-118v23c28 3 36 9 73 60l75 102l-51 81c-46 73 -56 82 -91 87v23h153v-23h-15c-14 0 -23 -3 -23 -11c0 -9 9 -23 29 -54l35 -54l55 75 c14 20 19 27 19 32c0 8 -6 11 -33 12v23h120v-23c-34 -3 -47 -12 -77 -53l-68 -92l93 -147c17 -27 28 -34 56 -38v-23zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CE: [676,14,684,0,684,'520 517v-23c-32 -3 -44 -14 -71 -59l-69 -115v-114c0 -38 15 -41 56 -42v-23h-181v23c47 2 55 5 55 47v107l-57 92c-44 71 -56 83 -83 84v23h145v-23l-13 -1c-16 -1 -24 -3 -24 -8c0 -4 4 -13 9 -22l75 -119l72 120c5 8 7 15 7 19c-1 7 -7 10 -33 11v23h112zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24CF: [676,14,684,0,684,'520 251l-16 -110h-334v19l247 323h-111c-70 0 -88 -10 -103 -73h-20l14 107h311v-19l-247 -323h135c62 0 85 13 104 76h20zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D0: [676,14,684,0,684,'479 234v-21c-21 -23 -39 -27 -60 -27c-23 0 -39 10 -44 39c-36 -32 -67 -39 -94 -39c-40 0 -69 22 -69 61c0 32 21 55 45 69c21 12 46 21 117 43v24c0 29 -21 42 -49 42c-25 0 -45 -9 -45 -19c0 -8 5 -14 5 -23c0 -14 -10 -29 -32 -29c-17 0 -29 13 -29 31 c0 49 62 66 109 66c63 0 97 -23 97 -90v-108c0 -21 9 -29 20 -29s18 3 29 10zM374 265v69c-41 -12 -66 -23 -81 -33c-16 -11 -22 -23 -22 -37c0 -24 20 -35 44 -35c25 0 59 13 59 36zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346 c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D1: [676,14,684,0,684,'293 523v-170c16 28 50 45 86 45c71 0 117 -54 117 -126c0 -85 -65 -138 -152 -138c-26 0 -107 9 -107 42v280c0 21 -5 24 -31 24c-5 0 -9 0 -12 -1v20c46 10 67 16 95 25zM293 315v-130c0 -13 26 -23 59 -23c50 0 86 39 86 86c0 54 -24 103 -82 103 c-33 0 -63 -18 -63 -36zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D2: [676,14,684,0,684,'459 286l16 -8c-30 -57 -67 -92 -135 -92c-74 0 -127 52 -127 125c0 83 69 140 146 140c55 0 101 -28 101 -62c0 -16 -12 -28 -30 -28c-23 0 -33 22 -39 40c-5 18 -17 22 -36 22c-52 0 -82 -36 -82 -87c0 -58 35 -99 94 -99c38 0 61 13 92 49zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D3: [676,14,684,0,684,'497 162l-96 -28l-4 3v33c-23 -26 -51 -36 -85 -36c-73 0 -118 49 -118 123c0 81 59 141 135 141c24 0 49 -7 67 -24h1v84c0 17 -5 22 -28 22c-7 0 -11 0 -17 -1v20c42 9 65 15 96 25l5 -2v-315c0 -20 5 -26 27 -26c3 0 8 0 17 1v-20zM397 205v117c0 25 -31 48 -66 48 c-48 0 -79 -38 -79 -95c0 -64 31 -100 85 -100c28 0 60 9 60 30zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24D4: [676,14,684,0,684,'465 286l16 -8c-30 -57 -67 -92 -135 -92c-78 0 -133 50 -133 128s60 137 144 137c69 0 111 -41 114 -112h-198c0 -58 37 -102 100 -102c37 0 62 13 92 49zM275 370h125c-4 27 -21 48 -61 48c-34 0 -57 -19 -64 -48zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D5: [676,14,684,0,684,'238 394h51c2 70 33 130 115 130c40 0 72 -17 72 -41c0 -23 -13 -30 -30 -30c-13 0 -23 12 -32 23c-9 10 -16 22 -33 22c-24 0 -36 -16 -36 -44v-60h80v-31h-80v-159c0 -36 9 -41 61 -43v-20h-169v20c46 2 52 8 52 43v159h-51v31zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D6: [676,14,684,0,684,'493 473h-51c6 -14 8 -32 8 -42c0 -58 -51 -94 -105 -94c-11 0 -30 3 -37 3c-19 0 -31 -13 -31 -22c0 -6 7 -11 42 -13l85 -4c52 -2 84 -27 84 -65c0 -76 -113 -102 -175 -102c-65 0 -117 17 -117 61c0 24 13 44 52 69c-17 8 -22 19 -22 34c0 24 21 39 49 52 c-32 13 -51 41 -51 77c0 55 49 97 112 97c18 0 39 -1 67 -14c13 -6 24 -6 38 -6h52v-31zM397 409c0 39 -20 86 -68 86c-29 0 -49 -18 -49 -47c0 -50 29 -83 69 -83c29 0 48 17 48 44zM462 227c0 16 -18 21 -77 21c-32 0 -88 3 -108 8c-28 -22 -31 -33 -31 -42 c0 -21 37 -34 95 -34c74 0 121 18 121 47zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D7: [676,14,684,0,684,'501 141h-140v20c38 4 45 9 45 42v104c0 34 -17 50 -47 50c-27 0 -47 -8 -72 -32v-122c0 -33 6 -38 44 -42v-20h-142v20c38 5 42 9 42 42v256c0 18 -6 22 -30 22c-3 0 -9 -2 -11 -2v21c55 11 71 16 92 24l5 -3v-168c30 33 59 46 95 46c53 0 80 -31 80 -91v-105 c0 -32 4 -36 39 -42v-20zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D8: [676,14,684,0,684,'378 542c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM423 186h-156v20c45 2 51 6 51 43v124c0 22 -5 28 -20 28c-6 0 -17 0 -29 -2v21l100 30l5 -3v-197c0 -36 5 -42 49 -44v-20zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344 c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24D9: [676,14,684,0,684,'406 559c0 -20 -16 -36 -36 -36c-21 0 -36 16 -36 36c0 21 16 36 37 36c20 0 35 -15 35 -36zM402 464v-255c0 -85 -38 -130 -112 -130c-38 0 -63 16 -63 38c0 16 11 28 28 28c27 0 39 -34 60 -34c31 0 31 25 31 72v207c0 20 -7 28 -21 28c-7 0 -15 -1 -30 -3v22 c37 9 63 18 103 31zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24DA: [676,14,684,0,684,'507 141h-142v20h13c5 0 10 1 10 5c0 2 -1 3 -4 7l-96 104v-88c0 -22 11 -27 43 -28v-20h-148v20c46 2 49 12 49 33v261c0 21 -5 26 -27 26c-6 0 -14 0 -22 -1v20c50 7 76 15 100 24l5 -3v-226l87 62c9 7 13 9 13 13c0 5 -22 5 -30 5v20h134v-20c-40 0 -66 -5 -140 -64 l-15 -12l95 -101c23 -24 47 -35 75 -37v-20zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24DB: [676,14,684,0,684,'422 141h-154v20c40 3 50 12 50 36v256c0 21 -6 28 -25 28c-5 0 -13 0 -23 -1v20c42 8 65 14 99 24l5 -4v-326c0 -24 7 -31 48 -33v-20zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24DC: [676,14,684,0,684,'598 186h-144v20c37 4 41 9 41 34v113c0 39 -14 55 -49 55c-33 0 -54 -9 -72 -31v-134c0 -29 11 -37 49 -37v-20h-150v20c39 2 45 5 45 32v115c0 34 -15 55 -43 55c-34 0 -64 -13 -79 -29v-149c0 -18 10 -23 44 -24v-20h-146v20c37 0 46 8 46 33v134c0 23 -5 30 -22 30 c-8 0 -13 0 -22 -1v20c36 9 68 19 91 29l7 -2v-41c44 38 73 43 102 43c34 0 57 -15 71 -46c36 32 70 46 107 46c56 0 77 -36 77 -105v-112c0 -19 9 -26 28 -27l19 -1v-20zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346 c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24DD: [676,14,684,0,684,'501 186h-138v20c33 2 41 12 41 44v109c0 34 -16 49 -47 49c-23 0 -38 -7 -68 -30v-147c0 -16 9 -23 44 -25v-20h-142v20c34 2 42 11 42 37v131c0 22 -5 29 -22 29c-10 0 -17 -1 -21 -1v20c36 9 60 17 91 29l7 -2v-42c34 32 65 44 94 44c51 0 78 -33 78 -91v-122 c0 -24 8 -30 41 -32v-20zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24DE: [676,14,684,0,684,'489 321c0 -79 -58 -135 -146 -135c-81 0 -143 55 -143 133c0 80 59 132 148 132c80 0 141 -51 141 -130zM429 307c0 57 -25 116 -93 116c-44 0 -76 -29 -76 -79c0 -59 27 -130 94 -130c46 0 75 34 75 93zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344 c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24DF: [676,14,684,0,684,'294 523v-42c29 31 60 43 96 43c64 0 110 -51 110 -123c0 -84 -59 -146 -138 -146c-27 0 -49 8 -68 23v-80c0 -30 9 -36 59 -37v-20h-162v20c40 3 47 8 47 32v258c0 21 -4 26 -26 26c-7 0 -12 -1 -17 -2v21c34 8 61 16 93 28zM294 447v-129c14 -23 33 -32 69 -32 c47 0 79 35 79 92c0 61 -32 100 -80 100c-30 0 -54 -11 -68 -31zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302 c168 0 297 135 297 302'], + 0x24E0: [676,14,684,0,684,'498 141h-156v20c48 2 59 9 59 35v99c-30 -27 -55 -41 -101 -41c-62 0 -109 50 -109 124c0 84 63 146 147 146c25 0 44 -4 75 -20l37 19h7v-336c0 -19 6 -23 41 -26v-20zM401 342v105c0 33 -21 48 -61 48c-55 0 -91 -35 -91 -97c0 -54 26 -97 86 -97c27 0 66 10 66 41z M684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E1: [676,14,684,0,684,'340 399h1c33 40 51 52 77 52c24 0 39 -13 39 -36c0 -18 -12 -31 -29 -31c-22 0 -24 21 -43 21s-45 -25 -45 -40v-125c0 -25 12 -33 56 -34v-20h-160v20c43 7 48 10 48 31v137c0 20 -6 27 -21 27c-9 0 -15 0 -25 -1v20c39 11 64 20 98 31l4 -2v-50zM684 330 c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E2: [676,14,684,0,684,'422 360h-20c-5 48 -26 66 -64 66c-27 0 -47 -10 -47 -30c0 -10 10 -22 27 -31c21 -11 45 -22 67 -34c41 -23 57 -37 57 -72c0 -39 -41 -73 -91 -73c-13 0 -32 0 -47 4c-15 5 -23 5 -30 5c-8 0 -12 -1 -15 -6h-9v96h20c4 -51 28 -75 73 -75c31 0 51 15 51 33 c0 14 -13 25 -67 51c-55 27 -80 52 -80 84c0 46 37 73 92 73c27 0 39 -10 55 -10c4 0 7 0 11 5h14zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304 c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E3: [676,14,684,0,684,'427 201l14 -13c-31 -40 -61 -55 -91 -55c-40 0 -65 24 -65 83v186h-34c-4 0 -9 6 -9 12c0 7 5 13 13 18c19 12 45 40 66 72c4 7 14 20 22 20c4 0 6 -4 6 -16l-8 -74h76v-32h-76v-171c0 -35 11 -52 36 -52c18 0 33 6 50 22zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E4: [676,14,684,0,684,'500 232v-19c-33 -7 -58 -15 -89 -27l-5 3v46c-35 -37 -71 -49 -95 -49c-52 0 -80 32 -80 77v138c0 21 -10 27 -41 29v20h97v-182c0 -22 21 -39 46 -39c27 0 70 14 70 44v129c0 22 -10 26 -49 28v20h105v-192c0 -18 5 -26 25 -26h16zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E5: [676,14,684,0,684,'496 450v-20c-22 -2 -27 -6 -43 -39l-83 -173c-11 -23 -16 -32 -19 -32c-4 0 -10 13 -16 25l-81 161c-26 51 -33 56 -59 58v20h130v-20c-23 -2 -30 -5 -30 -9c0 -3 2 -9 6 -17l64 -136h1l61 134c2 5 4 10 4 16s-10 10 -30 12v20h95zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E6: [676,14,684,0,684,'567 450v-20c-12 -1 -23 -9 -30 -24l-88 -188c-9 -19 -14 -32 -20 -32c-4 0 -9 10 -17 27l-59 125l-72 -127c-9 -16 -15 -25 -19 -25s-8 9 -17 27l-88 188c-12 25 -17 28 -34 29v20h119v-20c-23 -2 -29 -5 -29 -11c0 -3 1 -7 4 -13l63 -141l57 105l-12 27 c-11 25 -19 31 -45 33v20h135v-20c-30 -2 -38 -6 -38 -12c0 -3 1 -7 4 -13l62 -137h2l57 127c3 9 7 16 7 21c0 7 -7 13 -30 14v20h88zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E7: [676,14,684,0,684,'502 186h-139v20c22 1 29 2 29 6c0 2 -1 4 -4 8l-60 78l-55 -72c-6 -7 -8 -11 -8 -14s5 -5 24 -6v-20h-100v20c26 2 32 5 49 26l72 91l-58 76c-18 24 -30 31 -51 31h-8v20h142v-20c-20 -1 -28 -3 -28 -7c0 -3 6 -12 17 -26l22 -29l18 23c15 20 25 29 25 33s-6 5 -27 6v20 h109v-20c-24 -1 -45 -9 -55 -22l-52 -65l82 -106c15 -20 31 -31 48 -31h8v-20zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E8: [676,14,684,0,684,'500 524v-20c-18 -3 -26 -9 -33 -25l-101 -230c-37 -83 -69 -115 -119 -115c-31 0 -48 17 -48 40c0 18 16 32 33 32c23 0 29 -11 46 -11c14 0 25 12 36 24c13 16 26 47 26 54s-15 33 -25 51l-91 164c-5 9 -18 13 -36 16v20h140v-20c-29 -2 -38 -4 -38 -10 c0 -2 3 -11 8 -19l75 -138l60 143c2 4 6 16 6 16c0 5 -10 8 -30 8v20h91zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304 c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24E9: [676,14,684,0,684,'478 275l-13 -89h-253v18l173 216h-77c-41 0 -54 -9 -58 -49h-21l3 79h234v-19l-173 -215h74c38 0 62 5 70 13c10 10 13 18 20 46h21zM684 330c0 -193 -150 -344 -341 -344c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330 c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x24EA: [676,14,684,0,684,'489 321c0 -97 -41 -187 -144 -187c-109 0 -144 97 -144 191c0 101 44 192 146 192c84 0 142 -80 142 -196zM426 318c0 110 -28 172 -83 172c-51 0 -79 -63 -79 -169c0 -107 27 -160 81 -160c53 0 81 53 81 157zM684 330c0 -193 -150 -344 -341 -344 c-192 0 -343 152 -343 344c0 195 152 346 348 346c185 0 336 -155 336 -346zM642 330c0 168 -129 304 -297 304c-167 0 -303 -136 -303 -304c0 -167 136 -302 303 -302c168 0 297 135 297 302'], + 0x2702: [612,-82,961,35,905,'905 495l-365 -145l364 -142c-19 -26 -50 -41 -94 -41c-41 0 -89 16 -132 33l-264 102c-40 -13 -71 -30 -115 -40c-13 -3 -36 -4 -42 -4c-9 0 -20 -5 -30 -16c0 -26 12 -36 12 -64c0 -62 -36 -96 -99 -96c-61 0 -105 31 -105 92c0 72 51 109 119 109h97c46 0 85 26 95 72 c-19 34 -52 58 -98 58h-106c-61 0 -107 37 -107 103c0 62 40 96 105 96c59 0 99 -35 99 -93c0 -26 -12 -51 -12 -64c9 -6 19 -17 28 -17c20 0 37 -2 44 -4c44 -11 78 -24 115 -38l265 102c45 17 83 37 133 37c43 0 70 -20 93 -40zM209 516c0 44 -31 66 -75 66 s-69 -27 -69 -69c0 -41 34 -65 81 -65c41 0 63 25 63 68zM209 182c0 39 -19 66 -63 66c-48 0 -81 -29 -81 -76c0 -41 33 -60 75 -60c44 0 69 24 69 70'], + 0x2709: [555,-138,690,34,638,'638 138h-604v417h604v-417zM620 178v336l-202 -153c1 -4 2 -9 2 -12s0 -9 -1 -12zM614 537h-556l200 -159c13 30 38 52 79 52c42 0 64 -22 77 -52zM614 156l-200 164c-11 -30 -34 -57 -77 -57c-38 0 -68 27 -80 57l-199 -164h556zM52 178l202 159c-1 5 -1 9 -1 12 s0 7 1 12l-202 153v-336'], + 0x272A: [613,106,789,35,733,'733 252c0 -199 -145 -358 -348 -358c-194 0 -350 159 -350 358c0 200 156 361 352 361c201 0 346 -163 346 -361zM690 361h-232l-73 223l-74 -223h-237l189 -145l-79 -235l201 145l187 -142l-69 232'], + 0x2736: [616,108,695,35,642,'447 252l195 -178c-73 13 -165 54 -245 79c-18 -89 -33 -175 -57 -261c-24 88 -41 172 -57 261c-187 -65 -219 -77 -245 -79l194 178c-67 61 -142 120 -197 183l247 -86c12 66 34 178 58 267c22 -89 43 -197 57 -267l244 86c-18 -35 -106 -103 -194 -183'], + 0x273D: [612,108,682,35,626,'341 295v-19c38 20 69 63 100 102c35 44 59 86 108 86c30 0 77 -9 77 -68c0 -40 -21 -74 -64 -86c-67 -19 -162 -20 -208 -58c46 -32 116 -33 181 -49c50 -12 90 -29 90 -98c0 -46 -24 -67 -77 -67c-59 0 -77 53 -107 91s-57 78 -100 102v-18c0 -85 65 -176 65 -229 c0 -52 -35 -92 -76 -92s-74 39 -74 88c0 58 63 148 63 233v18c-37 -24 -66 -59 -92 -92c-33 -41 -48 -101 -116 -101c-47 0 -76 22 -76 68c0 72 49 89 99 97c65 11 130 19 175 49c-52 37 -139 41 -209 59c-40 11 -63 37 -63 85c0 44 24 69 77 69c58 0 75 -48 103 -87 c25 -35 67 -85 102 -102v19c0 76 -63 161 -63 225c0 54 34 92 74 92c41 0 76 -39 76 -89c0 -67 -65 -152 -65 -228'], + 0x2772: [719,213,488,188,466,'466 719l-212 -240v-452l211 -240h-52l-225 217v498l226 217h52'], + 0x2773: [719,213,488,22,300,'300 4l-226 -217h-52l212 240v452l-211 240h52l225 -217v-498'], + 0x2780: [705,14,788,35,733,'421 112h-60v359h-98v42h23c55 0 89 20 97 69h38v-470zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323c0 -183 145 -326 317 -326 c176 0 311 149 311 329'], + 0x2781: [705,14,788,35,733,'294 422l-61 8c0 46 7 78 28 108c21 29 60 53 117 53c94 0 154 -54 154 -150c0 -80 -43 -120 -86 -158c-46 -41 -112 -65 -143 -121h223v-52h-281c-3 5 -4 16 -4 19c0 89 72 124 130 165c47 33 97 66 97 143c0 61 -28 102 -89 102c-65 0 -85 -50 -85 -117zM733 345 c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323c0 -183 145 -326 317 -326c176 0 311 149 311 329'], + 0x2782: [705,14,788,35,733,'302 455l-51 7c5 82 50 129 130 129c84 0 140 -46 140 -129c0 -56 -26 -87 -69 -104c51 -15 83 -55 83 -117c0 -86 -61 -135 -148 -135c-78 0 -142 32 -142 138l54 13c0 -66 25 -99 86 -99c55 0 86 32 86 89c0 61 -38 88 -105 88c-3 0 -19 0 -24 -1v44c5 -1 12 -1 14 -1 c62 0 105 25 105 84c0 53 -29 78 -83 78c-50 0 -75 -30 -76 -84zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323c0 -183 145 -326 317 -326 c176 0 311 149 311 329'], + 0x2783: [705,14,788,35,733,'523 229h-72v-117h-54v117h-201v61l202 294h53v-301h72v-54zM397 283v218l-148 -218h148zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323 c0 -183 145 -326 317 -326c176 0 311 149 311 329'], + 0x2784: [705,14,788,35,733,'311 539v-135c17 28 50 41 95 41c90 0 137 -67 137 -159c0 -104 -49 -180 -155 -180c-78 0 -137 46 -137 120l53 12c0 -50 24 -80 82 -80c74 0 97 60 97 133c0 68 -38 106 -88 106c-54 0 -80 -36 -89 -81h-43v275h239v-52h-191zM733 345c0 -199 -145 -359 -345 -359 c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323c0 -183 145 -326 317 -326c176 0 311 149 311 329'], + 0x2785: [705,14,788,35,733,'282 378v-28c15 39 56 67 109 67c86 0 128 -62 128 -149c0 -94 -45 -162 -140 -162c-123 0 -153 110 -153 241c0 137 40 243 164 243c70 0 107 -43 117 -106l-51 -12c-8 40 -20 70 -69 70c-85 0 -105 -81 -105 -164zM465 259c0 65 -24 110 -86 110 c-60 0 -91 -43 -91 -104c0 -65 30 -111 96 -111c60 0 81 44 81 105zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323c0 -183 145 -326 317 -326 c176 0 311 149 311 329'], + 0x2786: [705,14,788,35,733,'534 582v-55c-81 -117 -155 -246 -185 -415h-65c36 181 91 286 196 416h-250v54h304zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323 c0 -183 145 -326 317 -326c176 0 311 149 311 329'], + 0x2787: [705,14,788,35,733,'528 244c0 -90 -58 -138 -147 -138c-85 0 -141 54 -141 141c0 63 36 96 87 112c-38 18 -69 49 -69 106c0 80 52 125 133 125c78 0 129 -47 129 -125c0 -56 -26 -89 -71 -105c48 -17 79 -54 79 -116zM466 468c0 49 -28 74 -77 74c-51 0 -77 -27 -77 -77 c0 -53 25 -83 75 -83c53 0 79 31 79 86zM474 247c0 57 -35 85 -93 85c-57 0 -87 -36 -87 -91c0 -57 37 -87 91 -87c52 0 89 34 89 93zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350 c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323c0 -183 145 -326 317 -326c176 0 311 149 311 329'], + 0x2788: [705,14,788,35,733,'477 320v25c-16 -38 -55 -66 -109 -66c-85 0 -128 62 -128 149c0 97 49 162 138 162c38 0 83 -9 115 -55c31 -45 40 -117 40 -184c0 -137 -39 -245 -163 -245c-62 0 -103 32 -116 97l51 12c8 -36 23 -61 66 -61c81 0 106 70 106 166zM471 433c0 64 -32 109 -95 109 c-64 0 -82 -47 -82 -107c0 -61 23 -108 85 -108c63 0 92 44 92 106zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323c0 -183 145 -326 317 -326 c176 0 311 149 311 329'], + 0x2789: [705,14,788,35,733,'597 345c0 -135 -31 -242 -120 -242c-95 0 -120 107 -120 242c0 158 34 243 120 243c91 0 120 -85 120 -243zM537 345c0 127 -5 197 -60 197s-60 -70 -60 -197c0 -109 5 -196 60 -196s60 87 60 196zM290 112h-60v359h-82v42h7c60 0 89 23 97 69h38v-470zM733 345 c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM698 350c0 173 -137 320 -309 320c-200 0 -319 -162 -319 -323c0 -183 145 -326 317 -326c176 0 311 149 311 329'], + 0x278A: [705,14,788,35,733,'733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM433 112v482h-65c-3 -51 -36 -73 -87 -73h-30v-54h94v-355h88'], + 0x278B: [705,14,788,35,733,'733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM535 174h-215c18 35 65 57 103 85c57 42 121 99 121 188c0 98 -67 153 -165 153c-100 0 -158 -56 -158 -174l85 -11c0 68 11 121 72 121c53 0 74 -40 74 -95 c0 -60 -30 -92 -66 -118c-100 -73 -159 -105 -159 -196v-17h308v64'], + 0x278C: [705,14,788,35,733,'733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM312 274l-79 -17c0 -105 52 -155 152 -155c96 0 159 53 159 151c0 61 -31 92 -71 113c35 18 59 46 59 102c0 88 -60 136 -147 136c-91 0 -147 -52 -147 -140 l80 -11c0 58 16 87 67 87c42 0 59 -27 59 -73c0 -52 -28 -76 -77 -76c-14 0 -27 0 -40 2v-62c15 1 30 2 45 2c56 0 84 -25 84 -80c0 -50 -23 -81 -75 -81c-54 0 -69 38 -69 102'], + 0x278D: [705,14,788,35,733,'385 295h-115l115 179v-179zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM538 231v64h-73v304h-74l-209 -303v-65h203v-119h80v119h73'], + 0x278E: [705,14,788,35,733,'733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM319 254l-78 -19c0 -83 59 -133 146 -133c113 0 169 78 169 187c0 101 -53 165 -156 165c-30 0 -53 -8 -72 -18v94h186v64h-266v-280h71c9 42 26 76 74 76 c53 0 75 -39 75 -98c0 -65 -13 -126 -84 -126c-46 0 -65 37 -65 88'], + 0x278F: [705,14,788,35,733,'452 264c0 -52 -14 -98 -67 -98c-59 0 -81 49 -81 107c0 52 22 95 77 95c56 0 71 -48 71 -104zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM449 470l73 18c-13 71 -53 117 -135 117 c-133 0 -177 -132 -177 -253c0 -140 41 -250 171 -250c99 0 151 73 151 171c0 94 -47 159 -141 159c-43 0 -70 -17 -93 -38c0 67 17 147 92 147c44 0 51 -35 59 -71'], + 0x2790: [705,14,788,35,733,'733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM545 531v63h-327v-64h242c-87 -115 -161 -246 -190 -418h92c29 174 103 296 183 419'], + 0x2791: [705,14,788,35,733,'455 473c0 -45 -21 -76 -68 -76c-43 0 -66 29 -66 74s22 74 70 74c41 0 64 -27 64 -72zM462 253c0 -53 -24 -87 -75 -87s-80 32 -80 84s30 83 80 83c49 0 75 -30 75 -80zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360 c197 0 344 -161 344 -360zM542 250c0 64 -35 93 -74 116c39 18 63 50 63 105c0 83 -54 129 -140 129s-146 -45 -146 -132c0 -52 28 -83 63 -102c-49 -17 -81 -52 -81 -116c0 -96 64 -148 160 -148c46 0 81 15 105 37c27 26 50 59 50 111'], + 0x2792: [705,14,788,35,733,'453 434c0 -52 -22 -95 -77 -95c-56 0 -71 48 -71 104c0 52 14 98 67 98c59 0 81 -49 81 -107zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM308 237l-73 -18c13 -71 53 -117 135 -117 c133 0 177 132 177 253c0 140 -41 250 -171 250c-99 0 -151 -73 -151 -171c0 -94 47 -159 141 -159c43 0 70 17 93 38c0 -67 -17 -147 -92 -147c-44 0 -51 35 -59 71'], + 0x2793: [705,14,788,35,733,'538 350c0 -53 -1 -187 -58 -187c-56 0 -63 137 -63 194c0 52 7 188 60 188c59 0 61 -143 61 -195zM733 345c0 -199 -145 -359 -345 -359c-199 0 -353 160 -353 359s156 360 354 360c197 0 344 -161 344 -360zM618 353c0 129 -13 247 -138 247 c-131 0 -143 -118 -143 -256c0 -128 17 -241 140 -241c126 0 141 118 141 250zM298 112v482h-63c-3 -52 -34 -73 -84 -73h-15v-54h76v-355h86'], + 0x279B: [433,-70,918,35,861,'288 433l213 -86c63 -25 75 -28 360 -95c-285 -68 -297 -71 -361 -97l-212 -85l100 171h-26c-9 0 -222 -8 -327 -12v45c104 -4 319 -12 327 -12h27'], + 0xE02F: [662,156,685,23,662,'662 547l-283 -284v-197h264v-66h-264v-156h-50v156h-306l306 306v356h50v-306l190 191h93zM329 66v147l-147 -147h147'], + 0xE0A4: [470,233,378,10,358,'358 -233h-240v15c50 8 71 12 71 69v466c0 26 0 119 -38 119c-13 0 -60 -60 -105 -60c-18 0 -36 20 -36 38c0 45 58 56 93 56c134 0 170 -102 170 -218v-395c0 -64 27 -73 85 -75v-15'], + 0xE0A5: [669,-426,397,75,338,'75 426v25c0 117 41 218 170 218c47 0 93 -19 93 -56c0 -23 -21 -38 -40 -38c-43 0 -53 60 -89 60c-29 0 -50 -20 -50 -100v-109h-84'], + 0xE0A6: [216,144,444,38,429,'40 216h84c0 -36 8 -75 25 -108c41 48 92 78 158 78c77 0 122 -45 122 -92c0 -77 -68 -115 -155 -115c-55 0 -103 17 -140 45c-29 -54 -48 -117 -63 -168h-33c13 48 26 93 44 136c8 19 17 37 26 54c-43 44 -68 105 -68 170zM396 90c0 32 -30 63 -88 63 c-60 0 -105 -31 -140 -75c28 -35 69 -59 124 -59c67 0 104 35 104 71'], + 0xE0B7: [324,-183,281,70,211,'211 253c0 -39 -32 -70 -71 -70s-70 31 -70 70s31 71 70 71s71 -32 71 -71'], + 0xE0B8: [943,11,1344,67,1302,'1179 232l-54 -137h-391v12l178 189c94 99 130 175 130 260c0 91 -54 141 -139 141c-72 0 -107 -32 -147 -130l-21 5c21 117 85 199 208 199c113 0 185 -77 185 -176c0 -79 -39 -154 -128 -248l-165 -176h234c42 0 63 11 96 67zM1302 900h-552l-365 -911h-32l-143 361 c-14 36 -35 54 -55 54c-24 0 -58 -17 -77 -31l-11 18l141 130h14l164 -411h2l333 833h581v-43'], + 0xE0B9: [943,11,1344,67,1302,'774 604l-16 4c29 95 92 162 196 162c93 0 156 -55 156 -137c0 -48 -26 -98 -93 -138c44 -19 62 -31 83 -53c28 -31 44 -77 44 -129c0 -53 -17 -102 -46 -140c-48 -64 -143 -93 -232 -93c-73 0 -112 21 -112 57c0 21 18 36 41 36c17 0 33 -6 61 -26c37 -26 58 -31 86 -31 c74 0 130 68 130 153c0 76 -35 125 -104 145c-22 7 -45 10 -102 10v14c38 13 64 24 84 36c49 28 81 73 81 134c0 68 -42 102 -108 102c-62 0 -108 -32 -149 -106zM1302 900h-552l-365 -911h-32l-143 361c-14 36 -35 54 -55 54c-24 0 -58 -17 -77 -31l-11 18l141 130h14 l164 -411h2l333 833h581v-43'], + 0xE0BC: [547,41,685,47,635,'635 5l-46 -46l-247 247l-248 -247l-46 46l214 215h-215v66h215l-214 215l46 46l248 -247l247 247l46 -46l-214 -215h214v-66h-214'], + 0xE0DB: [610,104,1472,86,1402,'1246 300h-595l93 -94v-54h-502v54h425l-93 94v54h672v-54zM1402 -104h-1316v714h1316v-714zM1336 -38v582h-1184v-582h1184'], + 0xE0DC: [354,-152,1134,65,1069,'1069 300h-595l93 -94v-54h-502v54h425l-93 94v54h672v-54'], + 0xE0F2: [936,157,1059,38,1033,'587 128c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM699 375c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM475 375c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM725 129c0 -87 -95 -152 -188 -152 s-188 65 -188 152s95 145 188 145s188 -58 188 -145zM659 129c0 50 -66 80 -122 80s-122 -30 -122 -80c0 -51 66 -86 122 -86s122 35 122 86zM1033 695l-44 -103l-118 -20l-46 -108c28 -60 45 -132 45 -213c0 -245 -149 -408 -333 -408c-185 0 -333 163 -333 408 c0 79 15 150 42 210l-46 107l-118 21l-44 103l61 26l30 -70l118 -22l41 -95c17 22 34 41 54 58v117l-101 65v112h66v-76l101 -66v-109c30 14 61 25 95 28l29 83l-71 85l52 108l61 -27l-38 -69l71 -88l-35 -93c34 -4 63 -13 93 -27v110l101 65v76h66v-112l-101 -65v-117 c18 -16 36 -34 52 -54l41 96l118 20l30 70zM434 571l-1 -1c-99 -49 -163 -168 -163 -319c0 -199 112 -342 267 -342s267 143 267 342s-112 344 -267 344c-37 0 -72 -9 -103 -24'], + 0xE0F3: [662,156,1059,196,862,'691 376c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM467 376c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM687 76h-320v66h320v-66zM862 252c0 -245 -149 -408 -333 -408c-185 0 -333 163 -333 408s148 410 333 410 c184 0 333 -165 333 -410zM796 252c0 199 -112 344 -267 344s-267 -145 -267 -344s112 -342 267 -342s267 143 267 342'], + 0xE0F4: [694,168,773,55,718,'718 519l-32 -32l-26 27l32 31zM584 642l-18 -42l-34 15l17 41zM657 459l-32 -31l-26 27l33 31zM550 564l-17 -42l-35 15l18 41zM405 649h-37v45h37v-45zM405 564h-37v45h37v-45zM242 615l-35 -15l-17 42l34 14zM275 537l-34 -15l-17 42l34 14zM601 405l-31 -30h-1 c14 -28 22 -58 22 -91c0 -71 -36 -134 -91 -170v-138h-37v-64h-154v64h-36v139c-55 36 -91 98 -91 169c0 32 7 64 21 91l-31 30l27 26l25 -24c13 17 28 33 46 45l-16 39l34 15l15 -35c20 9 42 15 65 17v42h37v-42c23 -2 45 -8 65 -17l15 35l35 -15l-17 -39 c17 -12 34 -28 47 -45l25 24zM462 85v51c54 28 92 84 92 149c0 92 -75 167 -167 167s-167 -75 -167 -167c0 -64 36 -120 90 -148v-52h152zM462 14v34h-152v-34h37v-65h79v65h36zM175 455l-26 -27l-33 31l26 27zM114 514l-26 -27l-33 32l27 26zM462 -168h-153v37h153v-37'], + 0xE0F5: [672,146,926,55,872,'201 480v46h-48c20 23 28 31 48 49c15 11 29 23 46 33v-33h49v47h-24c9 5 16 8 24 12v-12h47v31c13 4 36 11 50 12v-43h46v50h49v-50h47v43c14 -1 37 -8 50 -12v-31h46v13c8 -4 17 -8 25 -13h-25v-47h49v33c17 -10 32 -22 47 -33c20 -18 29 -25 48 -49h-48v-46h50v44 c14 -17 19 -24 32 -44h-32v-50h46v24c4 -8 8 -16 11 -24h-11v-47h30c5 -15 10 -33 12 -49h-42v-46h49v-50h-49v-47h42c-2 -16 -7 -34 -12 -49h-30v-46h11c-3 -8 -7 -16 -11 -24v24h-46v-50h33c-13 -20 -19 -28 -33 -45v45h-50v-46h48c-19 -24 -28 -31 -48 -49v49h-47v-49 h-49v49h-46v-49h-50v49h-47v-49h-49v49h-46v-49h-50v49h-47v-49h-49v49h-46v-49c-20 18 -28 26 -48 49h48v46h-50v-44c-14 17 -19 24 -32 44h32v50h-47v-21c-4 7 -7 13 -10 21h10v46h-29c-5 15 -10 33 -12 49h41v47h-49v50h49v46h-41c2 16 7 34 12 49h29v47h-10 c3 8 6 14 10 21v-21h47v50h-32c13 20 18 27 32 44v-44h50zM201 480v-50h46v50h-46zM201 430h-50v-47h50v47zM823 383h-46v-49h46v49zM777 383v47h-50v-47h50zM727 383h-47v-49h47v49zM680 383v47h-49v-47h49zM680 430h47v50h-47v-50zM680 480v46h-49v-46h49zM680 526h47v49 h-47v-49zM631 575h-46v-49h46v49zM535 622v-47h50v47h-50zM439 622v-47h49v47h-49zM535 575h-47v-49h47v49zM535 526v-46h50v46h-50zM631 480h-46v-50h46v50zM727 334v-46h50v46h-50zM823 288h-46v-50h46v50zM535 480h-47v-50h47v50zM535 430v-47h50v47h-50zM727 288h-47 v-50h47v50zM727 238v-47h50v47h-50zM439 575h-46v-49h46v49zM439 526v-46h49v46h-49zM631 383h-46v-49h46v49zM631 334v-46h49v46h-49zM343 622v-47h50v47h-50zM823 191h-46v-49h46v49zM343 575h-47v-49h47v49zM343 526v-46h50v46h-50zM439 480h-46v-50h46v50zM439 430v-47 h49v47h-49zM535 383h-47v-49h47v49zM535 334v-46h50v46h-50zM631 288h-46v-50h46v50zM631 238v-47h49v47h-49zM727 191h-47v-49h47v49zM727 142v-46h50v46h-50zM343 480h-47v-50h47v50zM343 430v-47h50v47h-50zM535 288h-47v-50h47v50zM535 238v-47h50v47h-50zM727 96h-47 v-49h47v49zM247 575h-46v-49h46v49zM247 526v-46h49v46h-49zM439 383h-46v-49h46v49zM439 334v-46h49v46h-49zM631 191h-46v-49h46v49zM631 142v-46h49v46h-49zM247 430v-47h49v47h-49zM343 383h-47v-49h47v49zM343 334v-46h50v46h-50zM439 288h-46v-50h46v50zM439 238v-47 h49v47h-49zM535 191h-47v-49h47v49zM535 142v-46h50v46h-50zM631 96h-46v-49h46v49zM631 46v-46h49v46h-49zM343 288h-47v-50h47v50zM343 238v-47h50v47h-50zM535 96h-47v-49h47v49zM535 46v-46h50v46h-50zM247 383h-46v-49h46v49zM247 334v-46h49v46h-49zM439 191h-46v-49 h46v49zM439 142v-46h49v46h-49zM151 383h-47v-49h47v49zM151 334v-46h50v46h-50zM247 288h-46v-50h46v50zM247 238v-47h49v47h-49zM343 191h-47v-49h47v49zM343 142v-46h50v46h-50zM439 96h-46v-49h46v49zM439 46v-46h49v46h-49zM151 288h-47v-50h47v50zM151 238v-47h50v47 h-50zM343 96h-47v-49h47v49zM343 46v-46h50v46h-50zM247 191h-46v-49h46v49zM247 142v-46h49v46h-49zM151 191h-47v-49h47v49zM151 142v-46h50v46h-50zM247 96h-46v-49h46v49zM247 46v-46h49v46h-49zM488 -96v46h47v-46h50v46h46v-46h25c-8 -5 -17 -9 -25 -13v13h-46v-31 c-13 -4 -36 -11 -50 -12v43h-47v-50h-49v50h-46v-43c-14 1 -37 8 -50 12v31h-47v-12c-8 4 -15 7 -24 12h24v46h47v-46h50v46h46v-46h49zM680 -50h47c-15 -11 -30 -23 -47 -33v33zM247 -50v-33c-17 10 -31 22 -46 33h46'], + 0xE0F6: [747,114,909,23,886,'813 252l-148 -41l33 -188l-84 15l-12 -41l-103 56l-19 -37l-33 36l-128 -75l-11 31l-35 -11l-19 186l-116 22l39 58l-97 99l175 46l-48 187l161 -38l45 88l66 -90l180 79l-4 -202l157 -15l-69 -94zM640 587l-66 -148l61 -6zM623 597l-133 -57l67 -90zM777 400l-199 20 l99 -156zM778 262l-46 46l-52 -73zM542 439l-127 170l-91 -186zM650 269l-89 143l-98 -190zM652 249l-107 -26l102 5zM424 414l-18 -1l8 -1zM542 418l-118 -21l25 -159zM360 539l-119 28l67 -132zM674 46l-21 128l-34 -117zM293 418l-45 91l25 -96zM427 249l-22 147l-79 5z M641 208l-178 -9l130 -163zM424 219l-116 175l-92 -156zM568 36l-106 133l17 -85zM481 62l-9 5l-9 -5l12 -13zM286 396l-171 -46l91 -90zM339 208l-101 9l26 -16zM459 84l-19 96l-99 -168zM426 196l-150 -13l48 -160zM220 209l-14 12l-22 2l12 21l-4 5l-22 -31zM302 26 l-21 69l7 -72zM886 317c0 -243 -190 -431 -432 -431c-243 0 -431 188 -431 431c0 242 189 430 431 430s432 -188 432 -430zM860 317c0 227 -179 404 -406 404s-405 -176 -405 -404c0 -229 176 -405 405 -405c228 0 406 177 406 405'], + 0xE0F7: [727,102,956,22,934,'934 240l-184 -51l40 -234l-104 20l-15 -52l-128 70l-24 -46l-40 45l-160 -94l-13 39l-44 -14l-24 232l-143 27l48 72l-121 122l218 58l-59 232l200 -47l55 108l82 -111l224 98l-5 -251l195 -19l-85 -116zM719 659l-82 -187l77 -7zM699 671l-168 -72l85 -114zM890 424 l-250 25l125 -195zM891 252l-57 58l-66 -91zM597 472l-158 213l-114 -233zM732 260l-112 180l-122 -238zM480 445l-68 -5l25 -2zM735 237l-139 -35l132 7zM597 448l-147 -27l31 -199zM371 598l-149 35l83 -167zM762 -16l-27 161l-43 -148zM288 446l-58 119l32 -125zM455 233 l-29 187l-99 6zM721 186l-224 -12l163 -203zM451 197l-145 220l-115 -195zM632 -30l-136 169l23 -108zM522 3l-12 6l-12 -6l15 -17zM279 420l-214 -58l114 -113zM350 185l-133 12l34 -21zM495 30l-25 121l-125 -211zM453 170l-188 -15l61 -200zM198 185l-19 17h1l-26 2 l13 26l-7 7l-28 -40zM299 -41l-28 92l10 -96'], + 0xE0F8: [474,89,500,163,336,'336 408h-173v66h173v-66zM336 160h-173v66h173v-66zM336 -89h-173v66h173v-66'], + 0xE0F9: [680,0,767,88,679,'562 141h-56l-123 317l-123 -317h-56l155 398h49zM679 0h-591v680h591v-680zM639 42v596h-511v-596h511'], + 0xE0FA: [474,89,297,62,235,'235 408h-173v66h173v-66zM235 160h-173v66h173v-66zM235 -89h-173v66h173v-66'], + 0xE0FB: [680,0,1750,88,1662,'1523 139h-259v406h49v-357h210v-49zM1207 139h-57l-135 180h-47v-180h-49v406h107c83 0 147 -24 147 -114c0 -73 -51 -102 -101 -109zM968 368h57c70 0 97 19 97 65c0 45 -27 62 -97 62h-57v-127zM872 496h-135v-357h-49v357h-134v49h318v-49zM540 232v-66 c-24 -20 -68 -35 -119 -35c-120 0 -193 89 -193 214c0 118 73 206 196 206c37 0 69 -10 98 -29v-75h-1c-31 42 -59 54 -96 54c-96 0 -146 -63 -146 -156c0 -102 54 -164 148 -164c51 0 88 22 113 51zM1662 0h-1574v680h1574v-680zM1621 41v598h-1492v-598h1492'], + 0xE0FC: [680,0,1625,88,1537,'1344 496h-134v-357h-49v357h-135v49h318v-49zM964 139h-257v406h257v-49h-208v-130h196v-49h-196v-129h208v-49zM652 139h-57l-136 178h-46v-178h-49v406h108c81 0 144 -24 144 -116c0 -64 -50 -102 -98 -110zM413 366h59c68 0 93 20 93 64c0 48 -25 66 -93 66h-59v-130 zM1537 0h-1449v680h1449v-680zM1496 41v598h-1367v-598h1367'], + 0xE0FD: [680,0,1625,88,1537,'1323 232v-66c-24 -20 -68 -35 -119 -35c-120 0 -193 89 -193 214c0 118 73 206 196 206c37 0 70 -10 99 -29v-75h-2c-31 42 -59 54 -96 54c-96 0 -146 -63 -146 -156c0 -102 54 -164 148 -164c51 0 88 22 113 51zM933 436h-1c-36 48 -82 65 -120 65 c-51 0 -76 -28 -76 -52c0 -41 47 -61 87 -79c93 -43 129 -70 129 -131c0 -34 -19 -70 -52 -89c-24 -14 -53 -20 -92 -20c-50 0 -88 18 -122 46v79c29 -48 79 -75 132 -75c37 0 83 17 83 59c0 34 -32 53 -92 80c-87 39 -124 65 -124 123c0 60 48 109 130 109 c53 0 92 -18 118 -42v-73zM604 139h-261v406h261v-49h-212v-122h195v-49h-195v-137h212v-49zM1537 0h-1449v680h1449v-680zM1496 41v598h-1367v-598h1367'], + 0xE0FE: [680,0,1625,88,1537,'1064 545h77c171 0 240 -75 240 -203c0 -118 -61 -203 -211 -203h-106v406zM1114 188h14c72 0 94 0 135 20c49 24 67 68 67 130c0 58 -12 100 -56 130c-41 28 -76 28 -146 28h-14v-308zM991 139h-49v329h-1l-144 -329h-3l-143 329h-1v-329h-49v406h74l122 -302l121 302 h73v-406zM555 231v-66c-24 -20 -68 -35 -119 -35c-120 0 -193 89 -193 214c0 118 73 206 196 206c37 0 70 -11 99 -30v-74h-2c-31 42 -59 54 -96 54c-96 0 -146 -63 -146 -156c0 -102 54 -164 148 -164c51 0 88 22 113 51zM1537 0h-1449v680h1449v-680zM1496 41v598h-1367 v-598h1367'], + 0xE0FF: [680,0,1625,88,1537,'1021 545h123c91 0 136 -35 136 -103c0 -34 -14 -64 -50 -82c52 -17 73 -56 73 -105c0 -42 -26 -81 -62 -101c-21 -9 -49 -15 -77 -15h-143v406zM1071 379h53c74 0 106 20 106 63c0 36 -26 54 -82 54h-77v-117zM1071 188h77c75 0 104 29 104 72c0 28 -18 53 -46 62 c-22 7 -45 8 -87 8h-48v-142zM959 139h-54l-49 119h-157l-48 -119h-53l174 408h11zM837 307l-59 142l-58 -142h117zM593 496h-135v-357h-49v357h-134v49h318v-49zM1537 0h-1449v680h1449v-680zM1496 41v598h-1367v-598h1367'], + 0xE100: [680,0,2032,88,1944,'1751 139h-258v406h258v-49h-209v-130h196v-49h-196v-129h209v-49zM1441 232v-66c-24 -20 -68 -35 -119 -35c-120 0 -193 89 -193 214c0 118 73 206 196 206c37 0 69 -10 98 -29v-75h-1c-31 42 -59 54 -96 54c-96 0 -146 -63 -146 -156c0 -102 54 -164 148 -164 c51 0 88 22 113 51zM1152 139h-54l-49 119h-157l-48 -119h-53l174 408h11zM1030 307l-59 142l-59 -142h118zM589 545h110c104 0 153 -45 153 -115c0 -80 -53 -119 -140 -119h-74v-172h-49v406zM638 360h57c79 0 106 21 106 71c0 45 -28 65 -109 65h-54v-136zM527 436h-1 c-36 48 -83 65 -121 65c-51 0 -75 -28 -75 -52c0 -41 47 -61 87 -79c93 -43 129 -70 129 -131c0 -34 -19 -70 -52 -89c-24 -14 -53 -20 -92 -20c-50 0 -88 18 -122 46v79c29 -48 79 -75 132 -75c37 0 83 17 83 59c0 34 -32 53 -92 80c-87 39 -124 65 -124 123 c0 60 48 109 130 109c53 0 92 -18 118 -42v-73zM1944 0h-1856v680h1856v-680zM1903 41v598h-1774v-598h1774'], + 0xE101: [680,0,1625,88,1537,'1333 139h-261v406h49v-357h212v-49zM984 139h-258v406h258v-49h-209v-130h196v-49h-196v-129h209v-49zM347 545h76c171 0 241 -75 241 -203c0 -118 -61 -203 -211 -203h-106v406zM396 188h14c72 0 94 0 135 20c49 24 68 68 68 130c0 58 -13 100 -57 130 c-41 28 -76 28 -146 28h-14v-308zM1537 0h-1449v680h1449v-680zM1496 41v598h-1367v-598h1367'], + 0xE102: [680,0,1608,88,1520,'1290 496h-135v-357h-49v357h-134v49h318v-49zM1001 139h-260v406h49v-357h211v-49zM677 139h-54l-49 119h-157l-48 -119h-53l174 408h11zM555 307l-59 142l-58 -142h117zM1520 0h-1432v680h1432v-680zM1480 41v598h-1352v-598h1352'], + 0xE103: [680,0,2296,88,2208,'2016 132l-37 8l-190 333v-333h-49v406h66l160 -283l1 -1v284h49v-414zM1688 340c0 -125 -74 -210 -177 -210c-102 0 -175 85 -175 210s73 210 175 210c103 0 177 -85 177 -210zM1637 340c0 106 -46 160 -126 160c-79 0 -124 -54 -124 -160s45 -160 124 -160 c80 0 126 54 126 160zM1284 139h-49v407h49v-407zM1190 496h-122v-357h-49v357h-123v50h294v-50zM647 546h90c106 0 151 -47 151 -118c0 -75 -51 -117 -140 -117h-52v-172h-49v407zM696 360h45c75 0 96 26 96 68c0 37 -17 68 -99 68h-42v-136zM596 340 c0 -125 -74 -210 -177 -210c-102 0 -176 85 -176 210s74 210 176 210c103 0 177 -85 177 -210zM545 340c0 106 -46 160 -126 160c-79 0 -125 -54 -125 -160s46 -160 125 -160c80 0 126 54 126 160zM2208 0h-2120v680h2120v-680zM2167 41v598h-2038v-598h2038'], + 0xE105: [680,0,2032,88,1944,'1805 139h-57l-135 180h-47v-180h-49v406h107c83 0 147 -24 147 -114c0 -73 -51 -102 -101 -109zM1566 368h57c70 0 97 19 97 65c0 45 -27 62 -97 62h-57v-127zM1476 139h-258v406h258v-49h-209v-130h196v-49h-196v-129h209v-49zM1190 496h-122v-357h-50v357h-122v50h294 v-50zM869 131l-38 8l-190 333v-333h-49v406h66l160 -283l2 -1v284h49v-414zM551 139h-258v406h258v-49h-209v-130h196v-49h-196v-129h209v-49zM1944 0h-1856v680h1856v-680zM1903 41v598h-1774v-598h1774'], + 0xE106: [680,0,2032,88,1944,'1762 496h-127v-357h-49v357h-126v49h302v-49zM1423 496h-218v-124h183v-49h-183v-184h-49v406h267v-49zM1061 139h-49v406h49v-406zM917 139h-50v184h-172v-184h-49v405h49v-172h172v172h50v-405zM561 436h-2c-36 48 -82 65 -120 65c-51 0 -75 -28 -75 -52 c0 -41 47 -61 87 -79c93 -43 129 -70 129 -131c0 -34 -19 -70 -52 -89c-24 -14 -54 -20 -93 -20c-50 0 -88 18 -122 46v79c29 -48 79 -75 132 -75c37 0 84 17 84 59c0 34 -32 53 -92 80c-87 39 -124 65 -124 123c0 60 48 109 130 109c53 0 92 -18 118 -42v-73zM1944 0h-1856 v680h1856v-680zM1903 41v598h-1774v-598h1774'], + 0xE107: [680,0,1625,88,1537,'1392 139h-49v340l-66 -37v53l109 55l6 -2v-409zM966 545h77c160 0 218 -73 218 -202c0 -117 -51 -204 -201 -204h-94v406zM1015 188h33c103 0 162 31 162 153c0 115 -61 155 -162 155h-33v-308zM940 340c0 -125 -68 -210 -171 -210c-102 0 -169 85 -169 210 s67 210 169 210c103 0 171 -85 171 -210zM889 340c0 106 -40 160 -120 160c-79 0 -118 -54 -118 -160s39 -160 118 -160c80 0 120 54 120 160zM574 139h-49v330h-1l-119 -330h-3l-119 330v-330h-50v406h74l98 -285l96 285h73v-406zM1537 0h-1449v680h1449v-680zM1496 41v598 h-1367v-598h1367'], + 0xE108: [680,0,1625,88,1537,'1464 139h-236v8l91 124c55 75 91 115 91 159c0 53 -28 70 -69 70c-35 0 -59 -20 -69 -81l-42 12c14 71 52 119 115 119c67 0 114 -50 114 -111c0 -47 -18 -79 -67 -145l-79 -106h151v-49zM917 545h77c160 0 212 -73 212 -202c0 -117 -45 -204 -195 -204h-94v406z M966 188h33c103 0 156 31 156 153c0 115 -55 155 -156 155h-33v-308zM891 340c0 -125 -62 -210 -165 -210c-102 0 -163 85 -163 210s61 210 163 210c103 0 165 -85 165 -210zM840 340c0 106 -34 160 -114 160c-79 0 -112 -54 -112 -160s33 -160 112 -160 c80 0 114 54 114 160zM537 139h-49v330l-114 -330h-3l-112 330h-1v-330h-49v406h74l91 -285l90 285h73v-406zM1537 0h-1449v680h1449v-680zM1496 41v598h-1367v-598h1367'], + 0xE138: [634,-584,480,-10,490,'490 584h-500v50h500v-50'], + 0xE139: [-127,177,480,-10,490,'490 -177h-500v50h500v-50'], + 0xE13A: [943,11,735,67,1302,'1302 900h-552l-365 -911h-32l-143 361c-14 36 -35 54 -55 54c-24 0 -58 -17 -77 -31l-11 18l141 130h14l164 -411h2l333 833h581v-43'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Misc/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Monospace/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Monospace/Regular/Main.js new file mode 100644 index 0000000..d311947 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Monospace/Regular/Main.js @@ -0,0 +1,90 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Monospace/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Monospace'] = { + directory: 'Monospace/Regular', + family: 'STIXMathJax_Monospace', + id: 'STIXWEBMONOSPACE', + 0x20: [0,0,525,0,0,''], + 0xA0: [0,0,525,0,0,''], + 0x1D670: [673,0,525,26,496,'496 40v-16c0 -13 -11 -24 -24 -24h-127c-14 0 -24 11 -24 24v16c0 13 10 24 24 24h31l-26 117h-178l-26 -117h32c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-128c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h36l130 585c3 14 16 24 30 24h30c14 0 27 -10 30 -24 l130 -585h36c13 0 24 -11 24 -24zM186 245h150c-37 168 -74 338 -74 344h-1c0 -6 -38 -176 -75 -344'], + 0x1D671: [662,0,525,29,480,'53 662h240c92 0 167 -75 167 -168c0 -68 -45 -126 -109 -148c74 -17 129 -84 129 -164c0 -101 -74 -182 -166 -182h-261c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h43v534h-43c-13 0 -24 10 -24 24v16c0 13 11 24 24 24zM155 376h117c72 0 130 52 130 118 c0 57 -49 104 -109 104h-138v-222zM155 64h138c71 0 129 53 129 118c0 71 -53 130 -119 130h-148v-248'], + 0x1D672: [672,11,525,40,482,'448 232h10c13 0 24 -11 24 -24c0 -115 -84 -219 -202 -219c-140 0 -240 162 -240 341c0 180 100 342 240 342c57 0 103 -26 137 -65l15 48c3 10 12 17 23 17h3c13 0 24 -11 24 -24v-206c0 -13 -11 -24 -24 -24h-10c-13 0 -23 10 -24 22c-8 94 -60 168 -131 168 c-101 0 -195 -117 -195 -278c0 -160 95 -277 196 -277c73 0 130 69 130 155c0 13 11 24 24 24'], + 0x1D673: [662,0,525,25,483,'49 662h222c117 0 212 -151 212 -337c0 -180 -95 -325 -212 -325h-222c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h38v534h-38c-13 0 -24 10 -24 24v16c0 13 11 24 24 24zM146 64h110c93 0 169 117 169 261c0 151 -76 273 -169 273h-110v-534'], + 0x1D674: [662,0,525,31,500,'500 150v-126c0 -13 -11 -24 -24 -24h-421c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h46v534h-46c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h400c13 0 24 -11 24 -24v-111c0 -13 -11 -24 -24 -24h-10c-13 0 -24 11 -24 24v71h-261v-223h141v32c0 13 11 24 24 24h10 c14 0 25 -11 25 -24v-129c0 -13 -11 -24 -25 -24h-10c-13 0 -24 11 -24 24v32h-141v-246h282v86c0 13 11 24 24 24h10c13 0 24 -11 24 -24'], + 0x1D675: [662,0,525,34,488,'488 638v-111c0 -13 -11 -24 -24 -24h-10c-13 0 -24 11 -24 24v71h-264v-235h145v32c0 13 11 24 24 24h11c13 0 24 -11 24 -24v-129c0 -13 -11 -24 -24 -24h-11c-13 0 -24 11 -24 24v32h-145v-234h68c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-176 c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h49v534h-49c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h406c13 0 24 -11 24 -24'], + 0x1D676: [672,11,525,37,495,'495 282v-16c0 -13 -11 -24 -24 -24h-23v-218c0 -13 -11 -24 -24 -24h-10c-13 0 -24 11 -24 24v34c-30 -41 -72 -69 -130 -69c-132 0 -223 164 -223 341c0 178 91 342 223 342c53 0 94 -24 124 -60l14 43c3 10 12 17 23 17h3c13 0 24 -11 24 -24v-206 c0 -13 -11 -24 -24 -24h-10c-13 0 -23 10 -24 22c-8 95 -52 168 -118 168c-89 0 -177 -115 -177 -278s87 -277 174 -277c73 0 112 81 119 189h-58c-13 0 -24 11 -24 24v16c0 14 11 24 24 24h141c13 0 24 -10 24 -24'], + 0x1D677: [662,0,525,26,496,'496 40v-16c0 -13 -11 -24 -24 -24h-140c-14 0 -24 11 -24 24v16c0 13 10 24 24 24h41v248h-223v-248h41c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-141c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h41v534h-41c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h141 c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-41v-222h223v222h-41c-14 0 -24 10 -24 24v16c0 13 10 24 24 24h140c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-41v-534h41c13 0 24 -11 24 -24'], + 0x1D678: [662,0,525,84,438,'438 40v-16c0 -13 -11 -24 -24 -24h-306c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h123l1 534h-124c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h306c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-123l-1 -534h124c13 0 24 -11 24 -24'], + 0x1D679: [662,11,525,85,476,'476 638v-16c0 -14 -10 -24 -24 -24h-46v-459c0 -85 -74 -150 -160 -150c-72 0 -161 37 -161 121c0 25 20 37 38 37c17 0 37 -12 37 -37c0 -10 -3 -17 -8 -23c14 -20 47 -34 94 -34c59 0 102 42 102 86v459h-99c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h203 c14 0 24 -11 24 -24'], + 0x1D67A: [662,0,525,30,494,'494 40v-16c0 -13 -11 -24 -24 -24h-101c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h15l-145 283l-98 -135v-148h38c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-125c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h38v534h-38c-13 0 -24 10 -24 24v16c0 13 11 24 24 24 h125c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-38v-304l222 304h-16c-14 0 -24 10 -24 24v16c0 13 10 24 24 24h112c14 0 25 -11 25 -24v-16c0 -14 -11 -24 -25 -24h-37l-151 -207l167 -327h32c13 0 24 -11 24 -24'], + 0x1D67B: [662,0,525,37,487,'487 150v-126c0 -13 -11 -24 -24 -24h-402c-14 0 -24 11 -24 24v16c0 13 10 24 24 24h53v534h-53c-14 0 -24 10 -24 24v16c0 13 10 24 24 24h183c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-72v-534h257v86c0 13 11 24 24 24h10c13 0 24 -11 24 -24'], + 0x1D67C: [662,0,525,21,501,'501 40v-16c0 -13 -11 -24 -24 -24h-106c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h29v526h-1c0 -8 -69 -230 -106 -346c-4 -14 -17 -24 -32 -24c-14 0 -28 10 -32 24c-37 116 -105 338 -105 346h-1v-526h28c14 0 24 -11 24 -24v-16c0 -13 -10 -24 -24 -24h-105 c-14 0 -25 11 -25 24v16c0 13 11 24 25 24h28v534h-28c-14 0 -25 10 -25 24v16c0 13 11 24 25 24h75c15 0 29 -10 33 -24c37 -116 107 -340 107 -346h1c0 6 69 230 106 346c4 14 18 24 33 24h76c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-29v-534h29 c13 0 24 -11 24 -24'], + 0x1D67D: [662,0,525,31,491,'491 638v-16c0 -14 -11 -24 -24 -24h-41v-574c0 -13 -11 -24 -24 -24h-23c-15 0 -29 10 -34 24l-200 570v-530h41c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-131c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h41v534h-41c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h88 c16 0 29 -10 34 -24l201 -570v530h-41c-14 0 -24 10 -24 24v16c0 13 10 24 24 24h130c13 0 24 -11 24 -24'], + 0x1D67E: [672,11,525,56,466,'466 330c0 -310 -19 -341 -205 -341s-205 31 -205 341c0 311 19 342 205 342s205 -31 205 -342zM408 344c0 240 -13 264 -147 264c-133 0 -146 -24 -146 -264c0 -264 13 -291 146 -291c134 0 147 27 147 291'], + 0x1D67F: [662,0,525,31,479,'55 662h239c102 0 185 -88 185 -197c0 -110 -83 -199 -185 -199h-134v-202h46c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-151c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h46v534h-46c-13 0 -24 10 -24 24v16c0 13 11 24 24 24zM160 330h119c78 0 142 60 142 135 c0 73 -64 133 -142 133h-119v-268'], + 0x1D680: [672,139,525,56,466,'390 -127l-63 118c-19 -1 -41 -2 -66 -2c-186 0 -205 31 -205 341c0 311 19 342 205 342s205 -31 205 -342c0 -213 -9 -294 -75 -324l63 -121l1 -7c0 -9 -7 -17 -16 -17h-29c-9 0 -16 5 -20 12zM301 179l57 -110c44 26 50 93 50 261c0 252 -13 278 -147 278 c-133 0 -146 -26 -146 -278s13 -277 146 -277l33 1l-57 107l-2 7c0 9 7 17 17 17h39c4 0 8 -3 10 -6'], + 0x1D681: [662,11,525,26,520,'486 125h10c14 0 24 -11 24 -24c0 -55 -16 -112 -82 -112c-84 0 -91 69 -91 137v82c0 49 -47 90 -106 90h-91v-234h41c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-141c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h41v534h-41c-13 0 -24 10 -24 24v16c0 13 11 24 24 24 h191c105 0 191 -81 191 -181c0 -65 -35 -121 -87 -153c36 -28 60 -71 60 -120v-82c0 -71 12 -73 33 -73c10 0 24 2 24 48c0 13 11 24 24 24zM150 363h84c77 0 140 52 140 118c0 64 -63 117 -140 117h-84v-235'], + 0x1D682: [672,11,525,52,470,'203 389l128 -33c83 -21 139 -96 139 -181c0 -102 -81 -186 -183 -186c-70 0 -132 20 -175 59l-9 -40c-3 -11 -12 -19 -24 -19h-3c-13 0 -24 11 -24 24v182c0 13 11 24 24 24h10c14 0 24 -11 24 -24c0 -91 68 -142 177 -142c67 0 122 56 122 125c0 58 -38 108 -93 122 l-128 32c-77 19 -136 86 -136 167c0 97 84 173 183 173c64 0 114 -22 149 -59l9 40c3 11 12 19 24 19h3c13 0 24 -11 24 -24v-182c0 -13 -11 -24 -24 -24h-10c-13 0 -23 9 -24 22c-10 91 -63 144 -151 144c-69 0 -121 -52 -121 -112c0 -50 37 -94 89 -107'], + 0x1D683: [662,0,525,26,496,'496 638v-111c0 -13 -11 -24 -24 -24h-10c-13 0 -24 11 -24 24v71h-148v-534h68c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-194c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h68v534h-148v-71c0 -13 -10 -24 -24 -24h-10c-13 0 -24 11 -24 24v111c0 13 11 24 24 24 h422c13 0 24 -11 24 -24'], + 0x1D684: [662,11,525,9,514,'514 638v-16c0 -14 -11 -24 -24 -24h-47v-378c0 -121 -76 -231 -182 -231s-182 110 -182 231v378h-46c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h151c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-46v-378c0 -98 60 -167 123 -167s124 69 124 167v378h-47 c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h152c13 0 24 -11 24 -24'], + 0x1D685: [662,8,525,17,506,'506 638v-16c0 -14 -11 -24 -24 -24h-34l-141 -582c-3 -14 -17 -24 -31 -24h-30c-14 0 -27 10 -30 24l-141 582h-34c-14 0 -24 10 -24 24v16c0 13 10 24 24 24h124c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-31c48 -197 127 -520 127 -526h1c0 6 78 329 126 526 h-31c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h125c13 0 24 -11 24 -24'], + 0x1D686: [662,8,525,11,512,'512 638v-16c0 -14 -11 -24 -24 -24h-14l-76 -582c-2 -14 -14 -24 -28 -24h-13c-14 0 -27 10 -30 24c-22 103 -65 303 -65 310h-1c0 -7 -43 -207 -66 -310c-3 -14 -15 -24 -30 -24h-13c-14 0 -26 10 -28 24l-75 582h-14c-14 0 -24 10 -24 24v16c0 13 10 24 24 24h103 c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-41c26 -195 66 -504 66 -526h1c0 23 38 200 60 302c3 14 15 24 30 24h15c14 0 27 -10 30 -24c21 -102 60 -279 60 -302h1c0 22 40 331 65 526h-41c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h104c13 0 24 -11 24 -24'], + 0x1D687: [662,0,525,24,497,'497 40v-16c0 -13 -10 -24 -24 -24h-125c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h19l-111 226l-103 -226h20c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-125c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h42l137 288l-125 246h-43c-13 0 -24 10 -24 24v16 c0 13 11 24 24 24h125c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-18l90 -177l83 177h-20c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h125c14 0 24 -11 24 -24v-16c0 -14 -10 -24 -24 -24h-41l-118 -246l146 -288h42c14 0 24 -11 24 -24'], + 0x1D688: [662,0,525,15,507,'507 638v-16c0 -14 -11 -24 -24 -24h-41l-152 -334v-200h41c14 0 24 -11 24 -24v-16c0 -13 -10 -24 -24 -24h-140c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h41v200l-152 334h-40c-14 0 -25 10 -25 24v16c0 13 11 24 25 24h124c14 0 25 -11 25 -24v-16 c0 -14 -11 -24 -25 -24h-20c48 -106 117 -256 117 -260h1c0 4 68 154 116 260h-20c-13 0 -24 10 -24 24v16c0 13 11 24 24 24h125c13 0 24 -11 24 -24'], + 0x1D689: [662,0,525,47,479,'479 153v-129c0 -13 -11 -24 -24 -24h-384c-13 0 -24 11 -24 24v19c0 4 1 9 4 12l345 543h-278v-71c0 -13 -11 -24 -25 -24h-10c-13 0 -24 11 -24 24v111c0 13 11 24 24 24h368c13 0 24 -11 24 -24v-19c0 -4 -1 -9 -3 -12l-345 -543h294v89c0 13 11 24 24 24h10 c13 0 24 -11 24 -24'], + 0x1D68A: [459,6,525,58,516,'516 127v-34c0 -54 -44 -96 -97 -96c-33 0 -54 23 -63 49c-42 -36 -106 -52 -162 -52c-79 0 -136 69 -136 146c0 107 123 157 291 162v15c0 36 -45 78 -117 78c-25 0 -52 0 -72 -3h-1c-1 -24 -21 -36 -37 -36c-18 0 -38 12 -38 37c0 62 79 66 126 66h22 c91 0 175 -58 175 -142v-233c0 -13 10 -24 25 -24c12 0 26 12 26 33v34c0 13 11 24 24 24h10c13 0 24 -11 24 -24zM349 138v110c-165 -5 -232 -53 -232 -108c0 -45 43 -82 101 -82c76 0 131 34 131 80'], + 0x1D68B: [609,6,525,17,481,'160 585v-183c38 35 92 54 146 54c103 0 175 -111 175 -231c0 -122 -81 -231 -190 -231c-54 0 -99 24 -131 62v-32c0 -13 -11 -24 -24 -24h-10c-14 0 -25 11 -25 24v520h-60c-13 0 -24 11 -24 25v16c0 13 11 24 24 24h95c13 0 24 -11 24 -24zM160 310v-141 c12 -64 60 -111 117 -111c78 0 146 72 146 167c0 96 -65 167 -136 167c-63 0 -114 -35 -127 -82'], + 0x1D68C: [459,6,525,78,464,'464 131l-1 -7c-21 -77 -84 -130 -173 -130c-119 0 -212 106 -212 231c0 127 93 234 212 234h26c52 0 137 -5 137 -65c0 -25 -20 -37 -37 -37s-36 11 -37 34l-7 1c-23 3 -54 3 -82 3c-83 0 -154 -74 -154 -170c0 -91 77 -167 174 -167c50 0 83 32 97 79c2 10 12 18 23 18 h10c13 0 24 -11 24 -24'], + 0x1D68D: [609,6,525,41,505,'505 40v-16c0 -13 -10 -24 -24 -24h-94c-14 0 -24 11 -24 24v36c-35 -40 -85 -66 -143 -66c-105 0 -179 110 -179 231c0 122 79 231 187 231c51 0 100 -19 135 -52v140h-61c-13 0 -24 11 -24 25v16c0 13 11 24 24 24h95c13 0 24 -11 24 -24v-521h60c14 0 24 -11 24 -24z M363 170v141c-13 46 -60 81 -118 81c-78 0 -146 -72 -146 -167c0 -96 65 -167 136 -167c62 0 114 48 128 112'], + 0x1D68E: [459,6,525,60,462,'462 131l-1 -7c-23 -79 -97 -130 -178 -130c-124 0 -223 105 -223 233c0 125 91 232 208 232c122 0 194 -74 194 -197c0 -13 -11 -24 -24 -24h-319l-1 -11c0 -91 82 -169 187 -169c46 0 86 33 100 79c3 10 12 18 23 18h10c13 0 24 -11 24 -24zM132 296h269 c-11 64 -57 99 -133 99c-59 0 -112 -40 -136 -99'], + 0x1D68F: [615,0,525,42,437,'189 450v47c0 74 86 118 169 118c18 0 79 -2 79 -52c0 -24 -19 -36 -36 -36c-13 0 -28 8 -33 23h-33c-58 0 -88 -31 -88 -53v-47h144c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-144v-322h117c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-292 c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h117v322h-123c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h123'], + 0x1D690: [461,228,525,29,508,'196 65h65c143 0 232 -38 232 -145c0 -92 -116 -148 -232 -148c-115 0 -232 56 -232 148c0 56 31 104 77 130c-15 20 -23 45 -23 70c0 24 7 49 22 72c-21 27 -33 62 -33 99c0 90 71 165 160 165c36 0 69 -12 96 -33c32 25 72 38 113 38c15 0 67 -3 67 -47 c0 -22 -18 -34 -33 -34c-10 0 -22 6 -29 17h-5c-26 0 -52 -5 -76 -15c17 -26 27 -57 27 -91c0 -90 -71 -164 -160 -164c-34 0 -65 10 -91 29c-6 -11 -8 -23 -8 -34c0 -26 13 -45 31 -53l18 1c5 0 10 -2 14 -5zM333 291c0 61 -46 108 -101 108s-101 -47 -101 -108 c0 -60 46 -107 101 -107s101 47 101 107zM261 13h-79c-56 0 -99 -43 -99 -93c0 -40 66 -91 178 -91s178 51 178 91c0 57 -39 93 -178 93'], + 0x1D691: [609,0,525,17,505,'505 40v-16c0 -13 -10 -24 -24 -24h-179c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h61v261c0 44 -20 67 -90 67c-63 0 -113 -48 -113 -106v-222h60c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-179c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h60v480h-60 c-13 0 -24 11 -24 25v16c0 13 11 24 24 24h95c13 0 24 -11 24 -24v-182c33 33 80 53 130 53c87 0 131 -44 131 -131v-261h60c14 0 24 -11 24 -24'], + 0x1D692: [610,0,525,84,448,'304 569c0 -23 -18 -42 -41 -42c-24 0 -42 19 -42 42c0 22 18 41 42 41c23 0 41 -19 41 -41zM448 40v-16c0 -13 -11 -24 -24 -24h-316c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h137v322h-129c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h163c13 0 24 -11 24 -24v-362h121 c13 0 24 -11 24 -24'], + 0x1D693: [610,227,525,47,362,'362 569c0 -23 -18 -42 -41 -42c-24 0 -42 19 -42 42c0 22 18 41 42 41c23 0 41 -19 41 -41zM361 426v-476c0 -96 -77 -177 -174 -177h-19c-45 0 -121 4 -121 70c0 24 20 37 37 37s37 -13 37 -37v-2h4c21 -4 50 -4 77 -4c55 0 101 50 101 113v436h-145 c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h179c14 0 24 -11 24 -24'], + 0x1D694: [609,0,525,24,505,'505 40v-16c0 -13 -10 -24 -24 -24h-142c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h30l-129 179l-78 -70v-109h65c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-178c-14 0 -25 11 -25 24v16c0 13 11 24 25 24h65v480h-65c-14 0 -25 11 -25 25v16c0 13 11 24 25 24h89 c13 0 24 -11 24 -24v-347l164 148h-44c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h178c14 0 24 -11 24 -24v-16c0 -13 -10 -24 -24 -24h-62l-122 -110l153 -212h52c14 0 24 -11 24 -24'], + 0x1D695: [609,0,525,63,459,'459 40v-16c0 -13 -10 -24 -24 -24h-348c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h145v480h-145c-13 0 -24 11 -24 25v16c0 13 11 24 24 24h179c13 0 24 -11 24 -24v-521h145c14 0 24 -11 24 -24'], + 0x1D696: [456,0,525,2,520,'520 40v-16c0 -13 -10 -24 -24 -24h-112c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h32v261c0 53 -17 67 -54 67c-42 0 -77 -45 -77 -106v-222h33c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-113c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h32v261c0 53 -17 67 -54 67 c-42 0 -77 -45 -77 -106v-222h33c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-113c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h32v322h-32c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h56c14 0 24 -11 24 -24v-9c23 24 53 39 90 39c41 0 65 -20 77 -53c24 31 58 53 102 53 c67 0 89 -56 89 -131v-261h32c14 0 24 -11 24 -24'], + 0x1D697: [456,0,525,17,505,'505 40v-16c0 -13 -10 -24 -24 -24h-179c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h61v261c0 44 -20 67 -90 67c-63 0 -113 -48 -113 -106v-222h60c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-179c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h60v322h-60 c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h95c13 0 24 -11 24 -24v-23c33 33 80 53 130 53c87 0 131 -44 131 -131v-261h60c14 0 24 -11 24 -24'], + 0x1D698: [459,6,525,62,460,'460 225c0 -128 -89 -231 -199 -231s-199 103 -199 231c0 129 89 234 199 234s199 -105 199 -234zM402 234c0 89 -63 161 -141 161s-141 -72 -141 -161c0 -97 63 -176 141 -176s141 79 141 176'], + 0x1D699: [456,221,525,17,481,'160 426v-24c38 35 92 54 146 54c103 0 175 -111 175 -231c0 -122 -81 -231 -190 -231c-54 0 -99 24 -131 62v-213h60c13 0 24 -10 24 -24v-16c0 -13 -11 -24 -24 -24h-179c-13 0 -24 11 -24 24v16c0 14 11 24 24 24h60v543h-60c-13 0 -24 11 -24 24v16c0 13 11 24 24 24 h95c13 0 24 -11 24 -24zM160 310v-141c12 -64 60 -111 117 -111c78 0 146 72 146 167c0 96 -65 167 -136 167c-63 0 -114 -35 -127 -82'], + 0x1D69A: [456,221,525,45,530,'530 -181v-16c0 -13 -11 -24 -24 -24h-188c-13 0 -24 11 -24 24v16c0 14 11 24 24 24h65v226c-36 -45 -87 -75 -149 -75c-109 0 -189 109 -189 231c0 123 85 231 198 231c55 0 105 -24 140 -62v38c0 13 10 24 24 24h10c13 0 24 -11 24 -24v-589h65c13 0 24 -10 24 -24z M383 189v95c-10 61 -62 108 -125 108c-84 0 -155 -73 -155 -167c0 -95 68 -167 144 -167c68 0 122 56 136 131'], + 0x1D69B: [456,0,525,37,485,'392 456h8c26 0 85 -3 85 -54c0 -23 -19 -35 -35 -35c-13 0 -29 8 -34 24l-24 1c-97 0 -176 -68 -176 -154v-174h127c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-282c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h97v322h-97c-13 0 -24 11 -24 24v16c0 13 11 24 24 24 h131c13 0 24 -11 24 -24v-52c42 51 106 82 176 82'], + 0x1D69C: [459,6,525,72,457,'220 274l92 -16c65 -11 145 -50 145 -130c0 -91 -83 -134 -192 -134c-56 0 -100 18 -133 50l-10 -33c-2 -10 -12 -17 -23 -17h-3c-13 0 -24 11 -24 24v144c0 13 11 24 24 24h10c12 0 21 -8 24 -19c17 -72 62 -109 135 -109c98 0 134 35 134 76c0 36 -38 63 -97 73l-90 16 c-57 10 -140 39 -140 116c0 84 86 120 193 120c41 0 79 -10 108 -29l5 13c3 9 12 16 23 16h3c13 0 24 -11 24 -24v-115c0 -13 -11 -24 -24 -24h-10c-14 0 -25 11 -25 24c0 48 -36 75 -107 75c-100 0 -132 -32 -132 -62c0 -29 33 -49 90 -59'], + 0x1D69D: [580,6,525,25,448,'448 173v-42c0 -86 -84 -137 -164 -137s-126 54 -126 137v255h-109c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h109v105c0 14 10 25 24 25h10c13 0 24 -11 24 -25v-105h185c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-185v-255c0 -45 27 -73 87 -73c49 0 87 34 87 73 v42c0 13 11 24 24 24h10c13 0 24 -11 24 -24'], + 0x1D69E: [450,6,525,17,505,'505 40v-16c0 -13 -10 -24 -24 -24h-94c-14 0 -24 11 -24 24v26c-33 -34 -79 -56 -131 -56c-88 0 -131 47 -131 137v255h-60c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h95c13 0 24 -11 24 -24v-295c0 -50 21 -73 88 -73c63 0 115 52 115 117v211h-61c-13 0 -24 11 -24 24 v16c0 13 11 24 24 24h95c13 0 24 -11 24 -24v-362h60c14 0 24 -11 24 -24'], + 0x1D69F: [450,4,525,22,500,'500 426v-16c0 -13 -10 -24 -24 -24h-48l-122 -366c-5 -14 -18 -24 -33 -24h-24c-15 0 -28 10 -33 24l-122 366h-48c-14 0 -24 11 -24 24v16c0 13 10 24 24 24h141c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-42l116 -349l116 349h-41c-14 0 -25 11 -25 24v16 c0 13 11 24 25 24h140c14 0 24 -11 24 -24'], + 0x1D6A0: [450,4,525,15,508,'508 426v-16c0 -13 -11 -24 -24 -24h-28l-64 -366c-2 -14 -15 -24 -29 -24h-19c-14 0 -28 10 -32 24c-17 59 -43 150 -43 178h-1c0 -28 -26 -119 -43 -178c-4 -14 -18 -24 -32 -24h-34c-14 0 -26 10 -28 24l-64 366h-28c-14 0 -24 11 -24 24v16c0 13 10 24 24 24h143 c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-66l57 -326l53 186c4 14 18 24 32 24h21c14 0 28 -10 32 -24c17 -58 44 -152 44 -174h1c0 20 30 193 51 314h-67c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h144c13 0 24 -11 24 -24'], + 0x1D6A1: [450,0,525,23,498,'498 40v-16c0 -13 -11 -24 -24 -24h-141c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h22l-97 135l-93 -135h23c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-141c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h62l126 168l-120 154h-62c-13 0 -24 11 -24 24v16 c0 13 11 24 24 24h141c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-20l84 -113l83 113h-22c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h141c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-62l-116 -154l130 -168h62c13 0 24 -11 24 -24'], + 0x1D6A2: [450,227,525,24,501,'501 426v-16c0 -13 -10 -24 -24 -24h-48l-156 -464c-25 -76 -72 -149 -148 -149c-44 0 -82 32 -82 75c0 24 18 36 36 36s36 -12 36 -36l-1 -10l11 -1c47 0 82 39 97 85l26 78l-149 386h-50c-14 0 -25 11 -25 24v16c0 13 11 24 25 24h140c14 0 24 -11 24 -24v-16 c0 -13 -10 -24 -24 -24h-39l122 -315l106 315h-42c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h141c14 0 24 -11 24 -24'], + 0x1D6A3: [450,0,525,32,473,'473 119v-95c0 -13 -11 -24 -24 -24h-393c-13 0 -24 11 -24 24v19c0 6 3 13 8 17l332 326h-265v-43c0 -14 -10 -25 -24 -25h-10c-13 0 -24 11 -24 25v83c0 13 11 24 24 24h373c13 0 24 -11 24 -24v-19c0 -6 -3 -13 -7 -17l-333 -326h285v55c0 13 11 24 24 24h10 c13 0 24 -11 24 -24'], + 0x1D7F6: [681,11,525,55,467,'467 335c0 -191 -92 -346 -206 -346s-206 155 -206 346s92 346 206 346s206 -155 206 -346zM409 348c0 149 -66 269 -148 269c-81 0 -147 -120 -147 -269c0 -163 66 -295 147 -295c82 0 148 132 148 295'], + 0x1D7F7: [681,0,525,110,435,'435 40v-16c0 -13 -11 -24 -24 -24h-271c-14 0 -24 11 -24 24v16c0 13 10 24 24 24h106v473c-28 -32 -65 -54 -112 -54c-14 0 -24 11 -24 24v16c0 13 10 24 24 24c54 0 97 50 121 118c3 9 12 16 23 16h2c14 0 24 -11 24 -24v-593h107c13 0 24 -11 24 -24'], + 0x1D7F8: [681,0,525,52,470,'470 87v-63c0 -13 -11 -24 -24 -24h-370c-13 0 -24 11 -24 24v16c0 7 3 14 8 18l190 171c85 77 162 145 162 241c0 84 -70 147 -180 147c-58 0 -107 -45 -119 -104c8 -7 14 -16 14 -29c0 -25 -21 -37 -38 -37s-37 12 -37 37c0 108 86 197 195 197c132 0 223 -91 223 -211 s-94 -205 -174 -277l-143 -129h259v23c0 14 11 24 24 24h10c13 0 24 -10 24 -24'], + 0x1D7F9: [681,11,525,43,479,'196 394l73 5c69 5 123 62 123 131c0 42 -49 87 -123 87c-66 0 -115 -20 -132 -52c6 -6 10 -14 10 -25c0 -25 -20 -38 -38 -38c-17 0 -37 13 -37 38c0 100 109 141 197 141c95 0 181 -63 181 -151c0 -71 -38 -135 -95 -169c72 -29 124 -92 124 -170 c0 -112 -95 -202 -210 -202c-108 0 -226 60 -226 175c0 24 20 37 37 37s38 -13 38 -37c0 -12 -5 -21 -12 -27c17 -50 82 -84 163 -84c86 0 152 64 152 138c0 75 -66 138 -152 138h-71c-13 0 -24 11 -24 25v16c0 12 10 23 22 24'], + 0x1D7FA: [682,0,525,29,493,'493 228v-16c0 -13 -11 -24 -24 -24h-96v-124h77c13 0 24 -11 24 -24v-16c0 -13 -11 -24 -24 -24h-203c-13 0 -24 11 -24 24v16c0 13 11 24 24 24h77v124h-271c-13 0 -24 11 -24 24v34c0 4 1 8 4 12l238 412c4 7 12 12 21 12h57c13 0 24 -11 24 -24v-406h96 c13 0 24 -11 24 -24zM324 252v394l-228 -394h228'], + 0x1D7FB: [670,11,525,52,470,'151 606v-219c36 25 80 38 130 38c108 0 189 -102 189 -218c0 -121 -99 -218 -221 -218c-98 0 -197 65 -197 169c0 24 20 37 37 37s38 -13 38 -37c0 -12 -5 -21 -12 -28c16 -44 69 -77 134 -77c91 0 163 70 163 154c0 88 -62 154 -131 154c-60 0 -104 -19 -131 -59 c-5 -7 -12 -11 -20 -11h-16c-13 0 -24 11 -24 24c0 5 1 9 3 12v319c0 13 11 24 24 24h294c13 0 24 -11 24 -24v-16c0 -14 -11 -24 -24 -24h-260'], + 0x1D7FC: [681,11,525,58,464,'464 213c0 -121 -88 -224 -203 -224c-137 0 -203 143 -203 346c0 184 111 346 261 346c66 0 134 -27 134 -104c0 -25 -20 -38 -37 -38s-37 13 -37 38c0 9 3 17 7 22c-10 11 -31 18 -67 18c-100 0 -192 -107 -202 -256c38 47 98 77 164 77c106 0 183 -106 183 -225z M124 240l2 -24c21 -112 72 -163 135 -163c78 0 145 70 145 160c0 92 -65 161 -139 161c-80 0 -143 -62 -143 -134'], + 0x1D7FD: [686,11,525,43,479,'479 646v-16c0 -7 -2 -13 -7 -17c-154 -160 -240 -373 -240 -595c0 -19 -16 -29 -29 -29s-29 10 -29 29c0 217 79 426 221 588h-294v-23c0 -14 -10 -25 -24 -25h-10c-13 0 -24 11 -24 25v79c0 13 11 24 24 24h10c11 0 20 -7 23 -16h355c13 0 24 -11 24 -24'], + 0x1D7FE: [681,11,525,43,479,'479 191c0 -111 -97 -202 -218 -202c-120 0 -218 91 -218 202c0 79 60 145 143 171c-75 23 -128 78 -128 143c0 97 91 176 203 176s203 -79 203 -176c0 -65 -53 -120 -128 -143c84 -26 143 -92 143 -171zM406 505c0 62 -65 112 -145 112s-144 -50 -144 -112 c0 -61 64 -111 144 -111s145 50 145 111zM421 191c0 77 -72 139 -160 139s-160 -62 -160 -139c0 -76 72 -138 160 -138s160 62 160 138'], + 0x1D7FF: [681,11,525,58,464,'464 335c0 -182 -103 -346 -246 -346c-68 0 -149 20 -149 104c0 25 20 38 37 38c18 0 38 -13 38 -38c0 -9 -3 -16 -8 -22c12 -12 37 -18 82 -18c91 0 178 105 187 256c-38 -47 -98 -77 -164 -77c-106 0 -183 106 -183 225c0 122 92 224 209 224c134 0 197 -143 197 -346z M399 430l-2 24c-20 112 -70 163 -130 163c-82 0 -150 -71 -150 -160c0 -92 64 -161 138 -161c81 0 144 62 144 134'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Monospace/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Normal/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Normal/Bold/Main.js new file mode 100644 index 0000000..971a62f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Normal/Bold/Main.js @@ -0,0 +1,150 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Normal/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Normal-bold'] = { + directory: 'Normal/Bold', + family: 'STIXMathJax_Normal', + weight: 'bold', + id: 'STIXWEBNORMALB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210E: [685,10,576,50,543,'523 105l20 -11c-37 -63 -82 -104 -153 -104c-26 0 -69 15 -69 46c0 11 2 24 7 46l54 223c2 10 3 26 3 42c0 27 -13 37 -29 37c-57 0 -141 -165 -166 -275l-25 -109h-115l138 599c1 4 2 11 2 15c0 11 -1 15 -11 15c-7 0 -11 -1 -44 -10l-5 28l188 38l-81 -354l2 -1 c33 61 109 129 180 129c69 0 89 -38 89 -83c0 -13 -4 -44 -7 -56l-50 -213c-1 -4 -2 -15 -2 -21c0 -16 5 -28 20 -28c18 0 34 21 54 47'], + 0x1D400: [690,0,722,9,689,'689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0x1D401: [676,0,667,16,619,'426 365v-1c110 -14 193 -81 193 -176c0 -107 -96 -188 -274 -188h-329v25c73 8 88 22 88 78v467c0 59 -20 76 -88 81v25h317c161 0 252 -57 252 -160c0 -76 -42 -127 -159 -151zM264 592v-219c125 0 156 38 156 136c0 88 -31 137 -99 137c-40 0 -57 -15 -57 -54z M264 343v-245c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 155 -157 155h-26'], + 0x1D402: [691,19,722,49,687,'657 152l30 -25c-93 -115 -173 -146 -288 -146c-215 0 -350 147 -350 342c0 212 143 368 347 368c48 0 98 -11 156 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25c-19 54 -43 87 -67 115c-46 55 -100 90 -167 90c-105 0 -184 -113 -184 -313 c0 -101 12 -174 54 -240c29 -46 88 -76 147 -76c44 0 86 12 126 34c32 18 60 43 104 89'], + 0x1D403: [676,0,722,14,690,'14 676h312c228 0 364 -125 364 -331c0 -103 -43 -201 -115 -264c-61 -53 -151 -81 -252 -81h-309v25c58 2 83 25 83 73v486c0 46 -19 61 -83 67v25zM259 598v-498c0 -45 13 -65 58 -65c66 0 115 24 149 72c31 45 50 135 50 223c0 86 -12 160 -41 211 c-38 66 -88 101 -163 101c-39 0 -53 -16 -53 -44'], + 0x1D404: [676,0,667,16,641,'641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54 c34 28 52 58 82 123h28'], + 0x1D405: [676,0,611,16,583,'583 474h-24c-14 76 -25 99 -60 129c-31 27 -75 39 -163 39c-51 0 -70 -14 -70 -51v-228c100 0 139 36 153 149h25v-338h-25c-10 118 -51 153 -153 155v-228c0 -57 18 -72 110 -76v-25h-360v25c74 8 88 22 88 78v472c0 58 -19 72 -88 76v25h567v-202'], + 0x1D406: [691,19,778,37,755,'755 287v-25c-75 -8 -86 -37 -86 -100v-118c-65 -38 -173 -63 -277 -63c-201 0 -355 136 -355 350c0 199 148 360 348 360c52 0 97 -11 155 -35c23 -10 36 -14 46 -14c19 0 29 10 44 46h27v-235h-25c-35 76 -53 111 -96 149s-91 56 -138 56c-116 0 -184 -113 -184 -320 c0 -103 15 -182 48 -237c35 -58 78 -87 155 -87c71 0 96 34 96 85v89c0 52 -16 69 -102 74v25h344'], + 0x1D407: [676,0,778,21,759,'759 0h-339v25c73 8 89 22 89 73v228h-241v-228c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-204h241v204c0 56 -19 69 -89 74v25h339v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25'], + 0x1D408: [676,0,389,20,370,'370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x1D409: [676,96,500,3,478,'478 676v-25c-75 -5 -88 -23 -88 -95v-430c0 -151 -73 -222 -212 -222c-40 0 -83 6 -108 23c-37 25 -67 68 -67 110c0 37 34 74 71 74c38 0 72 -36 72 -76c0 -30 -27 -40 -27 -66c0 -20 17 -32 45 -32c46 0 64 28 64 90v550c0 58 -20 71 -101 74v25h351'], + 0x1D40A: [676,0,778,30,769,'769 0h-334v25c65 2 77 8 77 21c0 11 -6 21 -25 45l-181 225l-27 -25v-196c0 -49 15 -61 87 -70v-25h-336v25c74 7 87 19 87 76v472c0 62 -18 74 -87 78v25h337v-25c-74 -5 -88 -23 -88 -84v-223l212 215c31 31 40 42 40 58c0 20 -12 28 -48 31l-35 3v25h289v-25 c-99 -12 -136 -29 -322 -227l305 -378c12 -15 24 -20 49 -21v-25'], + 0x1D40B: [676,0,667,19,638,'638 227l-42 -227h-577v25c73 9 86 20 86 73v478c0 57 -18 71 -86 75v25h348v-24c-87 -4 -100 -17 -100 -99v-464c0 -43 20 -58 85 -58c83 0 129 18 170 55c34 31 60 79 87 141h29'], + 0x1D40C: [676,0,944,14,921,'921 0h-332v25c75 7 89 25 89 84v496l-252 -605h-27l-252 594v-465c0 -76 19 -98 101 -104v-25h-234v25c78 8 91 18 91 83v469c0 54 -16 68 -89 74v25h253l199 -472l201 472h252v-25c-73 -5 -88 -22 -88 -97v-428c0 -73 8 -94 88 -101v-25'], + 0x1D40D: [676,18,722,16,701,'701 676v-25c-65 -10 -78 -20 -78 -83v-586h-28l-447 545v-396c0 -77 17 -97 94 -106v-25h-226v25c73 9 88 23 88 84v470c-42 58 -65 72 -85 72v25h211l349 -430v299c0 80 -18 99 -92 106v25h214'], + 0x1D40E: [691,19,778,35,743,'743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0x1D40F: [676,0,611,16,600,'16 676h315c167 0 269 -59 269 -181c0 -80 -46 -141 -129 -172c-43 -16 -77 -19 -209 -20v-192c0 -67 8 -76 87 -86v-25h-333v25c19 2 34 4 45 9c33 13 39 41 39 92v427c0 78 -14 92 -84 98v25zM262 606v-268c125 1 166 35 166 146s-33 157 -116 157 c-33 0 -50 -12 -50 -35'], + 0x1D410: [691,176,778,35,743,'730 -117l6 -24c-65 -25 -112 -35 -179 -35c-88 0 -172 32 -228 88c-23 23 -35 42 -56 86c-153 46 -238 177 -238 332c0 217 149 361 354 361c206 0 354 -144 354 -364c0 -171 -95 -285 -253 -333c18 -37 28 -52 47 -71c34 -34 76 -52 123 -52c20 0 37 2 70 12zM566 335 c0 212 -64 323 -178 323c-112 0 -176 -114 -176 -323c0 -207 61 -321 177 -321s177 116 177 321'], + 0x1D411: [676,0,722,26,716,'716 0h-205l-207 313h-28v-196c0 -73 10 -82 88 -92v-25h-338v25c78 9 88 16 88 95v431c0 78 -14 95 -88 100v25h308c195 0 296 -57 296 -172c0 -45 -16 -91 -45 -118c-28 -25 -54 -41 -112 -57l199 -282c9 -13 26 -22 44 -22v-25zM276 597v-252c131 1 183 27 183 149 c0 106 -37 148 -130 148c-39 0 -53 -12 -53 -45'], + 0x1D412: [692,19,556,35,513,'484 474h-28c-20 65 -36 95 -70 130c-36 37 -78 56 -123 56c-69 0 -110 -42 -110 -99c0 -49 23 -72 103 -114c49 -26 97 -49 148 -77c64 -35 109 -100 109 -176c0 -126 -100 -213 -248 -213c-44 0 -81 7 -130 24c-22 7 -33 10 -41 10c-16 0 -24 -8 -30 -34h-29v248h29 c17 -71 31 -106 60 -143c38 -48 86 -72 144 -72c77 0 126 44 126 113c0 36 -23 64 -57 88s-79 44 -122 65c-113 54 -171 109 -171 210c0 127 83 201 219 201c39 0 71 -6 117 -23c21 -7 33 -9 42 -9c18 0 25 6 32 33h30v-218'], + 0x1D413: [676,0,667,31,636,'636 475h-29c-17 119 -69 165 -192 169v-527c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92v527c-124 -4 -176 -50 -193 -169h-29l3 201h600'], + 0x1D414: [676,19,722,16,701,'701 676v-25c-64 -10 -78 -26 -78 -85v-314c0 -100 -27 -177 -76 -216c-43 -35 -113 -55 -184 -55c-74 0 -138 17 -185 54c-57 45 -80 99 -80 196v324c0 81 -12 89 -82 96v25h336v-25c-78 -6 -95 -19 -95 -101v-318c0 -139 49 -202 146 -202c117 0 176 74 176 222v300 c0 73 -23 93 -97 99v25h219'], + 0x1D415: [676,18,722,16,701,'701 676v-25c-52 -7 -66 -20 -90 -82l-228 -587h-27l-256 599c-24 56 -34 63 -84 70v25h336v-25l-33 -2c-38 -2 -53 -13 -53 -36c0 -15 3 -24 23 -72l138 -334l127 329c17 44 20 55 20 71c0 32 -15 39 -86 44v25h213'], + 0x1D416: [676,15,1000,19,981,'981 676v-25c-33 -3 -56 -24 -69 -64l-200 -602h-27l-171 477l-186 -477h-28l-212 602c-17 49 -27 58 -69 64v25h294v-25c-52 -4 -64 -13 -64 -42c0 -9 1 -16 7 -33l120 -364l118 308l-35 96c-9 25 -31 33 -72 35v25h312v-25l-13 -1c-44 -3 -59 -12 -59 -36 c0 -10 3 -22 14 -56l108 -336l112 343c5 14 7 29 7 42c0 31 -15 41 -69 44v25h182'], + 0x1D417: [676,0,722,16,699,'699 0h-340v25l28 2c35 2 52 11 52 28c0 12 -9 35 -21 54l-101 162l-38 -51c-75 -101 -94 -132 -94 -153c0 -26 20 -36 81 -42v-25h-250v25c50 6 74 19 104 56l175 221l-198 291c-31 45 -44 55 -80 58v25h346v-25l-31 -2c-36 -2 -48 -10 -48 -31c0 -12 2 -17 15 -37 l97 -150l56 77c47 65 58 84 58 106c0 24 -13 31 -51 35l-21 2v25h250v-25c-75 -7 -101 -25 -188 -146l-80 -111l182 -283c47 -73 63 -85 97 -86v-25'], + 0x1D418: [676,0,722,15,699,'699 676v-25c-34 -5 -54 -16 -68 -39l-191 -311v-178c0 -78 13 -91 92 -98v-25h-347v25c83 7 93 28 93 103v136l-180 328c-19 34 -49 57 -83 59v25h335v-25l-27 -2c-40 -3 -54 -6 -54 -29c0 -9 12 -36 24 -59l120 -232l109 178c26 43 41 82 41 102c0 29 -16 37 -84 42v25 h220'], + 0x1D419: [676,0,667,28,634,'634 242l-27 -242h-579v16l382 623l-83 -1c-154 -2 -195 -26 -240 -169h-28l22 207h523v-16l-379 -625h83c95 0 161 11 202 40c56 40 69 82 98 167h26'], + 0x1D41A: [473,14,500,25,488,'473 64l15 -21c-38 -41 -69 -57 -112 -57c-49 0 -71 18 -82 69c-55 -50 -101 -69 -159 -69c-64 0 -110 32 -110 106c0 44 22 82 67 112c38 25 85 43 201 76v68c0 64 -22 93 -81 93c-36 0 -65 -13 -65 -37c0 -6 2 -13 11 -23c13 -16 19 -28 19 -42c0 -34 -28 -60 -68 -60 c-41 0 -65 26 -65 68c0 80 78 126 191 126c122 0 196 -48 196 -134v-261c0 -17 7 -28 21 -28c5 0 8 1 11 4zM293 97v148c-80 -22 -122 -63 -122 -121c0 -44 22 -67 52 -67c24 0 48 9 70 40'], + 0x1D41B: [676,14,556,17,521,'211 676v-259c38 40 73 56 122 56c111 0 188 -95 188 -234c0 -150 -92 -253 -226 -253c-50 0 -86 15 -132 57l-79 -56h-12v607c0 40 -9 49 -55 58v24h194zM211 360v-263c0 -48 27 -79 69 -79c64 0 94 64 94 203c0 132 -31 198 -93 198c-33 0 -52 -16 -70 -59'], + 0x1D41C: [473,14,444,25,430,'412 109l18 -18c-55 -75 -111 -105 -191 -105c-125 0 -214 93 -214 236c0 149 104 251 237 251c87 0 154 -46 154 -110c0 -39 -26 -64 -68 -64c-34 0 -56 25 -56 73c0 47 0 70 -42 70c-49 0 -84 -60 -84 -169c0 -136 52 -220 139 -220c41 0 70 14 107 56'], + 0x1D41D: [676,14,556,25,534,'534 20l-62 -8c-62 -8 -87 -12 -133 -25v65c-47 -50 -80 -66 -133 -66c-105 0 -181 98 -181 235c0 145 82 252 192 252c46 0 76 -16 119 -62v183c0 46 -9 53 -76 58v24h215v-575c0 -42 13 -55 59 -58v-23zM336 112v243c-15 38 -45 62 -78 62c-58 0 -85 -59 -85 -188 c0 -127 25 -187 78 -187c23 0 46 12 66 37c10 13 19 28 19 33'], + 0x1D41E: [473,14,444,25,427,'403 126l24 -14c-60 -95 -113 -126 -198 -126c-121 0 -204 101 -204 238c0 149 84 249 209 249c58 0 99 -18 128 -50c37 -41 55 -104 59 -178h-252c6 -95 21 -187 119 -187c43 0 74 19 115 68zM298 282v21c0 52 0 73 -9 92c-14 30 -26 47 -55 47c-46 0 -70 -40 -70 -160 h134'], + 0x1D41F: [691,0,333,14,389,'14 461h57c0 79 7 139 40 179c27 33 71 51 135 51c85 0 143 -41 143 -100c0 -37 -25 -64 -62 -64c-34 0 -60 26 -60 57c0 35 22 43 22 57c0 12 -11 19 -29 19c-36 0 -50 -20 -50 -79v-120h86v-44h-86v-310c0 -65 12 -81 82 -83v-24h-278v24c46 5 57 18 57 63v330h-57v44'], + 0x1D420: [473,206,500,28,483,'254 68h52c108 0 177 -46 177 -120c0 -94 -94 -154 -261 -154c-126 0 -194 32 -194 92c0 41 33 66 96 75c-64 23 -82 45 -82 82c0 59 39 94 119 117c-71 20 -124 76 -124 152c0 99 84 161 203 161c40 0 68 -6 112 -22h129v-53h-80c28 -25 40 -58 40 -98 c0 -63 -31 -107 -92 -132c-33 -14 -36 -14 -127 -14c-39 0 -69 -19 -69 -49c0 -27 21 -37 101 -37zM306 312c0 93 -19 130 -67 130c-47 0 -65 -33 -65 -131c0 -93 18 -129 66 -129s66 36 66 130zM315 -52h-164c-28 -23 -35 -34 -35 -55c0 -44 46 -67 134 -67 c99 0 154 28 154 66c0 34 -24 56 -89 56'], + 0x1D421: [676,0,556,15,534,'534 0h-234v24c34 4 46 20 46 61v224c0 71 -12 97 -51 97c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-263c0 -41 11 -56 48 -61v-24h-240v24c45 9 53 9 53 65v502c0 48 -8 52 -54 61v24h193v-280c49 58 94 77 147 77c82 0 130 -57 130 -136v-250 c0 -46 14 -63 49 -63v-24'], + 0x1D422: [691,0,278,15,256,'215 613c0 -44 -34 -77 -78 -77s-77 33 -77 77s34 78 79 78c42 0 76 -35 76 -78zM256 0h-240v24c46 11 53 18 53 64v285c0 45 -10 55 -54 64v24h193v-376c0 -43 13 -56 48 -61v-24'], + 0x1D423: [691,203,333,-57,263,'263 613c0 -44 -34 -77 -79 -77c-44 0 -76 33 -76 77s34 78 78 78c42 0 77 -36 77 -78zM260 461v-459c0 -59 -8 -97 -27 -129c-28 -49 -81 -76 -150 -76c-82 0 -140 41 -140 100c0 36 25 61 62 61c33 0 59 -24 59 -54c0 -10 -4 -22 -14 -37c-6 -10 -9 -17 -9 -22 c0 -10 13 -17 32 -17c34 0 48 23 48 76v474c0 43 -12 55 -63 59v24h202'], + 0x1D424: [676,0,556,22,543,'543 0h-234v24c28 1 42 7 42 19c0 8 -6 20 -24 45l-95 134l-23 -24v-114c0 -47 5 -53 52 -60v-24h-239v24c33 3 48 21 48 60v510c0 38 -14 55 -48 58v24h187v-431l128 128c11 11 21 29 21 38c0 13 -9 19 -35 23l-24 4v23h214v-23c-63 -8 -89 -26 -189 -131l194 -268 c9 -12 14 -15 25 -15v-24'], + 0x1D425: [676,0,278,15,256,'256 0h-240v24c34 3 51 19 51 63v500c0 37 -17 62 -52 65v24h191v-589c0 -46 17 -62 50 -63v-24'], + 0x1D426: [473,0,833,15,814,'814 0h-237v24c38 3 48 17 48 59v228c0 62 -15 95 -53 95c-18 0 -37 -7 -58 -25c-13 -10 -27 -28 -27 -33v-265c0 -38 11 -55 46 -59v-24h-232v24c37 3 47 18 47 59v240c0 60 -15 83 -54 83c-23 0 -84 -38 -84 -62v-261c0 -38 10 -54 45 -59v-24h-239v24 c44 8 55 21 55 62v287c0 47 -12 58 -56 64v24h192v-75h3c38 61 80 87 144 87c63 0 98 -24 128 -87c52 64 90 87 147 87c82 0 135 -53 135 -142v-248c0 -43 11 -57 50 -59v-24'], + 0x1D427: [473,0,556,21,539,'539 0h-234v24c34 4 46 20 46 60v237c0 56 -17 85 -51 85c-24 0 -48 -12 -70 -34c-10 -10 -17 -20 -17 -24v-264c0 -37 11 -55 48 -60v-24h-240v24c45 9 53 21 53 63v289c0 43 -9 54 -53 61v24h191v-75h1c34 60 82 87 142 87c82 0 135 -55 135 -142v-247 c0 -45 10 -57 49 -60v-24'], + 0x1D428: [473,14,500,25,476,'476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0x1D429: [473,205,556,19,524,'212 461v-69c34 60 72 81 131 81c111 0 181 -77 181 -224c0 -155 -72 -262 -192 -262c-45 0 -70 13 -118 60v-126c0 -67 16 -99 77 -102v-24h-272v24c48 8 56 21 56 63v490c0 44 -11 58 -55 65v24h192zM214 346v-239c15 -38 44 -65 77 -65c55 0 85 54 85 192 c0 123 -25 182 -76 182c-23 0 -48 -13 -68 -37c-11 -13 -18 -27 -18 -33'], + 0x1D42A: [473,205,556,34,536,'536 -205h-267v24c65 9 73 25 73 91v132c-35 -45 -75 -56 -123 -56c-103 0 -185 88 -185 233c0 140 87 254 222 254c50 0 81 -13 132 -56l77 55h16v-595c0 -40 9 -49 55 -58v-24zM342 98v256c0 55 -27 87 -67 87c-56 0 -95 -63 -95 -205c0 -136 39 -196 93 -196 c34 0 69 20 69 58'], + 0x1D42B: [473,0,444,28,434,'218 461v-82c47 68 85 94 135 94c47 0 81 -33 81 -79c0 -40 -26 -68 -63 -68c-26 0 -43 10 -60 38c-11 18 -20 23 -28 23c-35 0 -61 -45 -61 -104v-177c0 -64 11 -78 72 -82v-24h-265v24c44 8 54 19 54 60v289c0 47 -12 58 -55 64v24h190'], + 0x1D42C: [473,14,389,25,361,'340 326h-25c-15 43 -26 62 -47 82c-22 21 -48 32 -75 32c-38 0 -66 -25 -66 -58c0 -34 28 -60 96 -88c100 -42 138 -85 138 -156c0 -90 -63 -152 -154 -152c-28 0 -79 11 -108 23c-10 4 -18 6 -23 6c-9 0 -15 -7 -26 -28h-25v165h28c21 -87 67 -132 137 -132 c45 0 75 26 75 65c0 32 -27 57 -96 87c-101 43 -142 89 -142 155c0 84 66 146 157 146c23 0 46 -4 78 -15c16 -5 25 -7 31 -7c13 0 19 5 25 20h22v-145'], + 0x1D42D: [630,12,333,19,332,'307 112l25 -11c-41 -82 -81 -113 -148 -113c-69 0 -112 40 -112 107v322h-53v27c72 49 109 102 167 186h25v-169h95v-44h-95v-298c0 -40 11 -60 39 -60c21 0 37 15 57 53'], + 0x1D42E: [461,14,556,16,538,'538 20l-63 -7c-65 -7 -89 -11 -132 -26v65c-52 -49 -90 -66 -145 -66c-83 0 -133 52 -133 145v241c0 46 -8 57 -49 65v24h188v-334c0 -56 20 -76 56 -76c29 0 51 13 82 47v276c0 45 -11 59 -61 63v24h200v-356c0 -44 13 -60 57 -62v-23'], + 0x1D42F: [461,14,500,21,485,'485 461v-24c-31 -3 -39 -9 -58 -55l-160 -396h-26l-120 296c-20 49 -57 129 -66 141c-6 8 -12 11 -34 14v24h250v-24l-18 -2c-25 -3 -35 -9 -35 -24c0 -7 1 -11 9 -31l79 -203l72 182c8 19 11 33 11 45c0 24 -12 31 -55 33v24h151'], + 0x1D430: [461,14,722,23,707,'707 461v-24c-26 -5 -37 -16 -50 -50l-155 -401h-23l-102 310l-125 -310h-24l-148 374c-25 62 -31 72 -57 77v24h222v-24c-28 -4 -38 -11 -38 -28c0 -13 12 -44 39 -115l45 -118l68 171c-2 6 -4 12 -6 19c-19 66 -20 67 -59 71v24h234v-24c-38 -3 -48 -8 -48 -24 c0 -10 7 -38 27 -106c20 -70 24 -85 34 -127l35 94c29 78 44 115 44 128c0 23 -11 31 -48 35v24h135'], + 0x1D431: [461,0,500,12,484,'484 0h-241v24c32 2 45 8 45 20s-9 29 -33 64c-15 21 -29 42 -42 63c-5 -6 -10 -13 -16 -20c-39 -47 -64 -87 -64 -103c0 -15 14 -22 50 -24v-24h-169v24c37 2 57 18 113 93l43 56c15 19 7 10 22 28l-128 197c-20 30 -26 35 -52 39v24h250v-24c-33 -1 -47 -7 -47 -19 c0 -13 25 -55 58 -98c4 -5 9 -11 13 -17l36 46c27 35 38 49 38 64s-8 20 -31 22l-20 2v24h168v-24c-31 -5 -51 -16 -70 -39l-101 -126l148 -228c7 -11 14 -15 30 -20v-24'], + 0x1D432: [461,205,500,16,482,'482 461v-24c-31 -4 -44 -12 -60 -55l-148 -398c-35 -94 -56 -133 -77 -156c-21 -22 -50 -33 -84 -33c-57 0 -97 32 -97 79c0 38 24 67 62 67c34 0 60 -23 60 -52c0 -4 -1 -9 -2 -14c-1 -3 -1 -6 -1 -6c0 -9 8 -17 17 -17c24 0 49 32 66 82l18 53l-119 290 c-20 50 -58 134 -67 146c-6 8 -12 11 -34 14v24h249v-24l-16 -1c-25 -2 -36 -10 -36 -25c0 -4 9 -30 20 -58l72 -186l68 188c9 26 11 37 11 49c0 24 -11 31 -54 33v24h152'], + 0x1D433: [461,0,444,21,420,'420 160l-16 -160h-383v25l234 404c-142 0 -166 -15 -191 -110h-26l7 142h371v-26l-231 -403h29c81 0 114 13 147 59c14 21 22 37 31 69h28'], + 0x1D6A8: [690,0,735,9,689,'689 0h-322v25l32 3c33 3 46 11 46 33s-12 57 -46 136h-225l-13 -34c-12 -31 -31 -73 -31 -97c0 -26 22 -37 81 -41v-25h-202v25c46 8 61 26 99 120l221 545h28l222 -522c51 -121 69 -143 110 -143v-25zM384 236l-101 243l-94 -243h195'], + 0x1D6A9: [676,0,667,16,619,'426 365v-1c110 -14 193 -81 193 -176c0 -107 -96 -188 -274 -188h-329v25c73 8 88 22 88 78v467c0 59 -20 76 -88 81v25h317c161 0 252 -57 252 -160c0 -76 -42 -127 -159 -151zM264 592v-219c125 0 156 38 156 136c0 88 -31 137 -99 137c-40 0 -57 -15 -57 -54z M264 343v-245c0 -48 19 -66 63 -66c78 0 120 55 120 156c0 102 -51 155 -157 155h-26'], + 0x1D6AA: [676,0,620,16,593,'593 474h-24c-7 40 -16 68 -24 85c-7 15 -20 30 -36 44c-30 26 -87 39 -173 39c-27 0 -46 -5 -56 -14c-9 -8 -14 -20 -14 -37v-490c0 -31 8 -51 24 -60c15 -9 43 -14 86 -16v-25h-360v25c39 4 63 12 74 23c9 10 14 28 14 55v472c0 30 -7 50 -21 60c-12 8 -34 14 -67 16 v25h577v-202'], + 0x1D6AB: [690,0,691,16,656,'656 0h-640l296 690h28zM431 120l-165 359l-155 -359h320'], + 0x1D6AC: [676,0,679,16,641,'641 208l-40 -208h-585v25c74 8 88 24 88 76v479c0 51 -19 67 -88 71v25h577v-201h-25c-23 134 -74 167 -237 167c-52 0 -65 -16 -65 -54v-225c106 1 150 33 162 149h26v-338h-26c-10 119 -53 155 -162 155v-242c0 -43 18 -56 83 -56c78 0 135 15 182 54 c34 28 52 58 82 123h28'], + 0x1D6AD: [676,0,693,28,634,'634 242l-27 -242h-579v16l382 625l-83 -3c-154 -6 -195 -26 -240 -169h-28l22 207h523v-16l-379 -625h83c95 0 161 11 202 40c56 40 69 82 98 167h26'], + 0x1D6AE: [676,0,810,21,759,'759 0h-339v25c73 8 89 22 89 73v228h-241v-228c0 -53 16 -65 89 -73v-25h-336v25c70 9 85 20 85 73v479c0 55 -18 68 -85 74v25h336v-25c-70 -5 -89 -18 -89 -74v-204h241v204c0 56 -19 69 -89 74v25h339v-25c-68 -5 -88 -20 -88 -74v-479c0 -53 16 -64 88 -73v-25'], + 0x1D6AF: [692,18,778,35,743,'515 223h-26c-6 37 -21 56 -43 56h-109c-16 0 -26 -3 -32 -10s-12 -23 -19 -46h-26c10 34 15 73 15 118c0 35 -5 74 -15 115h26c8 -24 16 -40 23 -47s16 -10 29 -10h109c12 0 21 5 27 14c5 8 9 22 13 43h26c-8 -36 -12 -73 -12 -110c0 -39 5 -80 14 -123zM743 336 c0 -111 -38 -200 -113 -267c-65 -58 -146 -87 -242 -87c-111 0 -199 38 -266 112c-58 65 -87 145 -87 241c0 113 39 203 115 270c66 58 147 87 244 87c108 0 195 -37 262 -113c58 -66 87 -147 87 -243zM566 329c0 114 -18 198 -53 255c-31 50 -73 75 -128 75 c-59 0 -104 -33 -134 -97c-26 -56 -39 -133 -39 -231c0 -211 60 -316 178 -316s176 105 176 314'], + 0x1D6B0: [676,0,421,20,370,'370 0h-350v25c75 7 93 19 93 81v470c0 56 -21 70 -93 75v25h350v-25c-74 -3 -95 -19 -95 -75v-470c0 -65 19 -76 95 -81v-25'], + 0x1D6B1: [676,0,820,30,769,'769 0h-334v25c65 2 77 8 77 21c0 11 -6 21 -25 45l-181 225l-27 -25v-196c0 -49 15 -61 87 -70v-25h-336v25c74 7 87 19 87 76v472c0 62 -18 74 -87 78v25h337v-25c-74 -5 -88 -23 -88 -84v-223l212 215c31 31 40 42 40 58c0 20 -12 28 -48 31l-35 3v25h289v-25 c-99 -12 -136 -29 -322 -227l305 -378c12 -15 24 -20 49 -21v-25'], + 0x1D6B2: [690,0,707,9,674,'674 0h-322v25l32 3c29 3 44 14 44 33c0 15 -15 61 -44 136l-108 280h-2l-114 -314c-19 -53 -28 -85 -28 -97c0 -14 7 -24 20 -30c12 -5 31 -9 59 -11v-25h-202v25c24 4 43 15 56 32c12 16 26 45 43 88l213 545h28l215 -522c26 -63 46 -104 61 -121c13 -15 29 -22 49 -22 v-25'], + 0x1D6B3: [676,0,972,14,921,'921 0h-332v25c75 7 89 25 89 84v496l-252 -605h-27l-252 594v-465c0 -76 19 -98 101 -104v-25h-234v25c78 8 91 18 91 83v469c0 54 -16 68 -89 74v25h253l199 -472l201 472h252v-25c-73 -5 -88 -22 -88 -97v-428c0 -73 8 -94 88 -101v-25'], + 0x1D6B4: [676,18,722,16,701,'701 676v-25c-65 -10 -78 -20 -78 -83v-586h-28l-447 545v-396c0 -77 17 -97 94 -106v-25h-226v25c73 9 88 23 88 84v470c-42 58 -65 72 -85 72v25h211l349 -430v299c0 80 -18 99 -92 106v25h214'], + 0x1D6B5: [676,0,623,28,595,'568 481h-25c-6 31 -14 51 -25 61c-10 9 -26 14 -49 14h-307c-45 0 -72 -25 -82 -75h-25v195h513v-195zM494 240h-25c-5 25 -13 41 -24 49c-8 5 -22 8 -40 8h-182c-25 0 -41 -4 -50 -12c-8 -7 -14 -23 -19 -45h-25v223h25c5 -27 13 -43 24 -49c7 -4 23 -7 46 -7h181 c22 0 38 3 45 10c8 7 14 23 19 46h25v-223zM595 0h-567v232h25c6 -35 14 -58 24 -68c11 -11 31 -17 58 -17h349c34 0 56 7 67 23c7 10 14 31 19 62h25v-232'], + 0x1D6B6: [691,19,778,35,743,'743 335c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM566 328c0 213 -64 330 -181 330c-110 0 -173 -118 -173 -328c0 -211 64 -316 178 -316c115 0 176 108 176 314'], + 0x1D6B7: [676,0,780,21,759,'759 0h-339v25c38 4 63 12 74 23c10 10 15 26 15 50v531h-241v-531c0 -28 7 -47 20 -56c11 -8 34 -13 69 -17v-25h-336v25c37 5 61 12 71 22c9 9 14 26 14 51v479c0 29 -7 48 -20 57c-11 8 -33 14 -65 17v25h738v-25c-36 -3 -60 -10 -72 -21c-11 -10 -16 -28 -16 -53 v-479c0 -28 6 -46 19 -55c11 -8 35 -14 69 -18v-25'], + 0x1D6B8: [676,0,611,16,600,'16 676h315c167 0 269 -59 269 -181c0 -80 -46 -141 -129 -172c-43 -16 -77 -19 -209 -20v-192c0 -67 8 -76 87 -86v-25h-333v25c19 2 34 4 45 9c33 13 39 41 39 92v427c0 78 -14 92 -84 98v25zM262 606v-268c125 1 166 35 166 146s-33 157 -116 157 c-33 0 -50 -12 -50 -35'], + 0x1D6B9: [692,18,778,35,743,'743 336c0 -208 -148 -354 -355 -354s-353 146 -353 353c0 213 151 357 359 357c201 0 349 -149 349 -356zM214 394h349c-12 171 -74 265 -178 265c-99 0 -160 -95 -171 -265zM565 304h-353c6 -193 69 -289 178 -289c110 0 170 99 175 289'], + 0x1D6BA: [676,0,665,14,627,'627 261l-32 -261h-581v16l278 301l-278 343v16h580v-197h-26c-15 66 -37 109 -67 130c-20 14 -51 21 -91 21h-182l187 -240l-225 -243h256c44 0 76 7 96 20c26 17 46 48 59 94h26'], + 0x1D6BB: [676,0,667,31,636,'636 475h-29c-17 119 -69 165 -192 169v-527c0 -76 11 -86 98 -92v-25h-357v25c86 7 97 18 97 92v527c-124 -4 -176 -50 -193 -169h-29l3 201h600'], + 0x1D6BC: [692,0,722,3,699,'699 670v-25c-11 3 -24 5 -31 5c-94 0 -189 -62 -228 -349v-178c0 -78 13 -91 92 -98v-25h-347v25c83 7 93 28 93 103v136c0 217 -78 362 -202 362c-19 0 -38 -3 -59 -10l-14 24c27 25 81 52 124 52c149 0 255 -61 273 -298h5c8 42 17 71 29 103c48 132 127 185 211 185 c18 0 41 -4 54 -12'], + 0x1D6BD: [676,0,836,18,818,'498 586v-22c90 -3 166 -24 225 -62c64 -41 95 -95 95 -164c0 -81 -44 -143 -131 -187c-60 -30 -123 -45 -189 -45v-15c0 -21 8 -36 23 -46s39 -16 72 -20v-25h-353v25c41 3 68 10 81 22c10 9 15 24 15 44v15c-92 0 -168 20 -227 60c-61 41 -91 98 -91 172 c0 78 40 138 120 179c56 29 122 44 198 47v24c0 24 -5 40 -14 48c-12 10 -36 15 -71 15v25h332v-25c-38 0 -63 -8 -75 -23c-7 -9 -10 -22 -10 -42zM496 530v-390c42 0 77 16 105 47c30 33 45 79 45 138c0 75 -16 129 -49 164c-25 27 -59 41 -101 41zM338 140v390 c-45 0 -81 -17 -108 -53s-40 -87 -40 -152c0 -69 16 -120 50 -151c25 -23 58 -34 98 -34'], + 0x1D6BE: [676,0,747,16,699,'699 0h-340v25l28 2c35 2 52 11 52 28c0 12 -9 35 -21 54l-101 162l-38 -51c-75 -101 -94 -132 -94 -153c0 -26 20 -36 81 -42v-25h-250v25c50 6 74 19 104 56l175 221l-198 291c-31 45 -44 55 -80 58v25h346v-25l-31 -2c-36 -2 -48 -10 -48 -31c0 -12 2 -17 15 -37 l97 -150l56 77c47 65 58 84 58 106c0 24 -13 31 -51 35l-21 2v25h250v-25c-75 -7 -101 -25 -188 -146l-80 -111l182 -283c47 -73 63 -85 97 -86v-25'], + 0x1D6BF: [692,0,800,3,785,'785 692v-25c-17 0 -30 -12 -41 -37c-7 -16 -12 -32 -12 -48v-5l4 -90v-13c0 -75 -34 -132 -91 -168c-44 -28 -101 -42 -169 -42v-141c0 -41 7 -67 20 -78c12 -10 35 -17 72 -20v-25h-347v25c43 2 69 12 81 31c8 13 12 37 12 72v136c-81 0 -145 19 -190 56 c-44 36 -70 88 -70 156v11l4 90v6c0 21 -5 40 -14 56c-10 19 -24 28 -41 28v25h33c57 0 105 -30 142 -91c24 -39 36 -87 36 -142c0 -47 10 -86 29 -117c18 -30 42 -44 71 -44v290c0 24 -4 40 -13 48c-12 10 -37 15 -72 15v25h332v-25c-38 0 -62 -8 -74 -23 c-7 -9 -11 -22 -11 -42v-288c33 0 59 18 78 56c15 30 22 65 22 105c0 56 12 104 35 142c37 61 84 91 141 91h33'], + 0x1D6C0: [692,0,778,35,723,'262 94l-2 29c-128 22 -225 132 -225 263c0 162 146 306 344 306c197 0 344 -144 344 -309c0 -130 -104 -228 -225 -260l-2 -29h138c45 0 56 22 56 77h25v-171h-302l7 155c88 21 136 123 136 234c0 126 -59 270 -177 270c-115 0 -177 -144 -177 -268 c0 -112 48 -215 136 -236l7 -155h-302v171h25c0 -56 8 -77 51 -77h143'], + 0x1D6C1: [676,14,691,16,656,'656 676l-296 -690h-28l-316 690h640zM561 556h-320l165 -359'], + 0x1D6C2: [473,14,644,25,618,'618 461l-129 -270c0 -5 3 -17 9 -35c12 -36 23 -60 32 -70c5 -6 12 -8 20 -8c25 0 39 25 42 76h25c0 -48 -10 -87 -28 -118c-19 -32 -44 -48 -77 -48c-46 0 -81 26 -105 77c-41 -53 -96 -79 -166 -79c-67 0 -121 26 -162 76c-36 44 -54 98 -54 164c0 78 25 141 73 187 c42 40 94 60 157 60c85 0 144 -40 179 -121h1l29 109h154zM361 198c-2 52 -13 105 -31 157c-20 58 -44 87 -72 87c-35 0 -59 -18 -71 -55c-10 -30 -15 -82 -15 -154c0 -85 7 -143 21 -175c12 -28 32 -41 59 -41c26 0 51 23 74 70c17 35 29 73 35 111'], + 0x1D6C3: [692,205,556,45,524,'396 411l-1 -2c86 -26 129 -87 129 -183c0 -73 -24 -133 -73 -180c-42 -40 -93 -60 -153 -60c-33 0 -64 8 -93 26v-66c0 -68 -7 -118 -20 -151h-140c14 29 21 79 21 151v386c0 76 7 138 21 185c14 46 38 85 69 118c36 38 86 57 151 57c51 0 93 -15 126 -44 c32 -28 48 -65 48 -110c0 -56 -28 -98 -85 -127zM205 495v-423c18 -37 47 -55 85 -55c35 0 59 17 71 51c10 29 15 78 15 149c0 57 -10 102 -30 138c-13 24 -26 37 -37 37l-43 -9c-27 0 -40 9 -40 26c0 18 16 27 48 27l45 -9c7 0 13 11 18 32c4 16 5 33 5 50 c0 39 -4 73 -14 101c-12 34 -29 51 -51 51c-29 0 -49 -14 -59 -44c-9 -24 -13 -65 -13 -122'], + 0x1D6C4: [473,205,518,12,501,'501 461l-202 -400c1 -9 4 -23 7 -43c7 -45 10 -79 10 -102c0 -36 -8 -64 -23 -87c-15 -22 -35 -34 -61 -34c-30 0 -51 11 -61 34c-7 15 -10 40 -10 73c0 49 20 121 61 216c-7 73 -18 129 -34 169c-26 64 -56 96 -92 96c-32 0 -52 -25 -59 -75h-25c0 46 8 84 24 115 c17 33 42 50 74 50c50 0 87 -51 114 -152l29 -111l79 251h169'], + 0x1D6C5: [692,14,502,26,477,'395 567l-146 81c-20 0 -39 -3 -55 -10c-21 -9 -31 -22 -31 -39c0 -21 17 -42 50 -62c10 -6 30 -17 62 -34c75 -39 126 -78 156 -116c30 -39 46 -96 46 -172c0 -63 -23 -118 -68 -164c-43 -44 -94 -65 -156 -65c-73 0 -131 27 -176 82c-34 42 -51 89 -51 139 c0 62 20 113 60 154c37 38 82 58 136 58v2c-56 23 -94 50 -115 78c-14 20 -22 40 -22 61c0 41 26 76 79 103c39 20 77 29 115 29c47 0 84 -6 114 -18c33 -13 50 -32 50 -57c0 -11 -4 -22 -13 -33c-9 -12 -21 -17 -35 -17zM329 215c0 115 -26 172 -77 172 c-32 0 -53 -18 -65 -51c-9 -27 -14 -70 -14 -132c0 -69 6 -118 19 -147c13 -27 33 -40 61 -40c35 0 57 20 67 61c6 25 9 71 9 137'], + 0x1D6C6: [473,14,444,28,429,'412 109l17 -18c-46 -70 -114 -105 -203 -105c-132 0 -198 44 -198 132c0 51 29 92 88 123v1c-22 8 -41 22 -54 41c-11 16 -16 31 -16 47c0 41 19 76 57 103c37 27 86 40 146 40c48 0 86 -9 117 -28s47 -45 47 -78c0 -17 -6 -31 -17 -42s-26 -16 -44 -16 c-38 0 -57 18 -57 54l8 42c0 25 -22 37 -65 37c-24 0 -45 -11 -60 -33c-13 -19 -19 -42 -19 -67c0 -27 8 -48 23 -64c13 -14 30 -21 51 -21l54 11c26 0 39 -8 39 -25c0 -20 -15 -30 -44 -30c-9 0 -24 3 -44 9c-23 0 -44 -9 -61 -26s-25 -37 -25 -61c0 -63 36 -95 109 -95 c33 0 64 7 93 21c27 13 46 29 58 48'], + 0x1D6C7: [692,205,459,23,437,'243 692l9 -24c-42 -18 -63 -40 -63 -68c0 -27 11 -44 32 -51c59 57 107 85 144 85c38 0 57 -14 57 -43c0 -27 -23 -51 -68 -69c-37 -15 -78 -22 -124 -22c-36 -29 -69 -70 -97 -122s-42 -101 -42 -148s19 -78 57 -96c27 -13 69 -19 124 -19c110 0 165 -46 165 -138 c0 -62 -21 -109 -62 -143c-32 -26 -69 -39 -113 -39c-30 0 -53 7 -71 21c-14 11 -21 24 -21 40c0 19 6 34 19 46c11 10 26 16 42 16l107 -46c15 0 29 7 41 22c11 13 17 29 17 46c0 33 -18 53 -54 53h-8l-117 -9c-73 1 -124 18 -154 51c-26 30 -40 77 -40 140 c0 69 21 140 64 213c29 50 62 92 99 124c-24 3 -43 13 -56 28c-12 14 -18 30 -18 50c0 49 43 83 131 102'], + 0x1D6C8: [473,205,580,12,545,'545 -205h-138c-10 20 -16 42 -19 67c-2 16 -3 45 -3 85v372c0 58 -16 87 -50 87c-25 0 -48 -11 -71 -34c-11 -11 -17 -19 -17 -24v-348h-139v346c0 38 -8 56 -24 56c-15 0 -32 -16 -49 -48l-23 11c12 32 31 58 56 78s51 30 80 30c65 0 98 -29 98 -87h1 c34 58 81 87 143 87c44 0 79 -15 103 -44c21 -26 31 -59 31 -101v-380c0 -71 7 -122 21 -153'], + 0x1D6C9: [692,14,501,25,476,'476 340c0 -98 -21 -183 -64 -254c-41 -67 -92 -100 -154 -100c-79 0 -141 42 -184 127c-33 65 -49 141 -49 228c0 100 21 184 64 252c42 66 95 99 161 99c74 0 133 -42 176 -126c34 -65 50 -140 50 -226zM172 364h157c0 88 -6 159 -19 212c-14 57 -34 85 -60 85 c-52 0 -78 -99 -78 -297zM329 320h-157c0 -202 26 -303 78 -303c53 0 79 101 79 303'], + 0x1D6CA: [461,14,326,15,304,'281 101l23 -12c-12 -31 -32 -56 -58 -75s-54 -28 -85 -28c-33 0 -57 11 -73 32c-12 16 -19 36 -19 59v299c0 23 -5 38 -14 47c-7 7 -20 12 -40 14v24h193v-349c0 -37 8 -56 24 -56s32 15 49 45'], + 0x1D6CB: [473,0,581,21,559,'214 461v-201c83 96 149 159 196 189c26 16 52 24 78 24c21 0 39 -7 52 -22c13 -14 19 -33 19 -55c0 -17 -6 -31 -19 -45s-28 -21 -47 -21l-83 42c-29 0 -63 -23 -103 -70l179 -232c16 -21 28 -34 36 -39c7 -4 15 -7 26 -7v-24h-248v24c23 1 34 8 34 23c0 7 -7 19 -21 37 l-98 129h-1v-213h-139v379c0 21 -4 36 -14 44c-8 7 -21 11 -40 14v24h193'], + 0x1D6CC: [692,18,546,19,527,'502 147h25c0 -49 -8 -89 -25 -119c-17 -31 -43 -46 -75 -46c-42 0 -72 43 -92 128l-46 198l-101 -308h-169l226 454l-12 38c-15 47 -31 77 -48 93c-12 11 -27 17 -46 17c-31 0 -51 -25 -59 -75h-25c0 48 8 87 24 116c17 33 42 49 76 49c41 0 76 -49 104 -146l107 -374 c19 -67 45 -100 77 -100c31 0 51 25 59 75'], + 0x1D6CD: [461,205,610,45,588,'567 88l21 -12c-29 -72 -77 -107 -144 -107c-54 0 -84 28 -90 86h-1c-30 -46 -64 -69 -100 -69c-26 0 -44 8 -53 23h-1v-77c0 -59 -7 -104 -20 -137h-134c14 29 21 75 21 138v528h139v-318c0 -31 8 -54 25 -72c13 -13 27 -20 44 -20c25 0 52 17 79 51v359h139v-350 c0 -29 2 -49 5 -58s10 -14 18 -14c15 0 32 16 52 49'], + 0x1D6CE: [473,14,518,15,495,'465 473h30c0 -159 -49 -282 -148 -370c-68 -61 -152 -100 -252 -117h-26v386c0 24 -4 40 -12 48c-7 7 -21 13 -42 17v24h193v-323h5c150 27 234 139 252 335'], + 0x1D6CF: [692,205,465,23,439,'240 692l10 -24c-19 -8 -34 -18 -46 -31s-18 -25 -18 -37c0 -17 7 -29 21 -36c49 47 95 71 140 71c42 0 63 -13 63 -40c0 -25 -20 -46 -61 -61c-32 -12 -68 -18 -109 -18c-19 0 -32 -8 -42 -22c-7 -11 -11 -24 -11 -40c0 -25 12 -43 35 -53c60 27 104 41 133 41 c28 0 48 -2 60 -7c16 -6 24 -18 24 -36c0 -21 -18 -38 -55 -49c-24 -7 -47 -11 -70 -11c-27 0 -57 4 -89 11c-40 -13 -70 -32 -90 -58c-16 -21 -24 -44 -24 -67c0 -39 18 -68 52 -87c28 -16 63 -23 106 -23c110 0 165 -46 165 -138c0 -62 -21 -109 -62 -143 c-32 -26 -69 -39 -113 -39c-30 0 -53 7 -71 21c-14 11 -21 24 -21 40c0 19 7 34 20 46c11 10 25 16 41 16l107 -46c15 0 29 7 41 22c11 13 17 29 17 46c0 33 -18 53 -54 53h-8l-117 -9c-6 -1 -11 -1 -17 -1c-58 0 -103 24 -134 61c-27 31 -40 70 -40 117c0 46 18 91 54 134 c30 36 65 63 108 83c-14 7 -26 16 -36 29c-11 14 -16 29 -16 45c0 30 13 56 38 77v2c-20 3 -36 11 -48 24c-10 11 -15 22 -15 35c0 24 12 45 36 63c23 18 55 31 96 39'], + 0x1D6D0: [473,14,500,25,476,'476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM329 218c0 171 -19 224 -78 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s78 52 78 201'], + 0x1D6D1: [461,18,631,20,609,'584 127h25c0 -39 -14 -73 -42 -101c-26 -27 -60 -40 -100 -40c-49 0 -84 17 -106 53c-15 24 -22 55 -22 92c0 32 7 74 21 127c3 12 9 32 18 62c5 18 8 32 11 41h-134l2 -99v-27c0 -168 -45 -253 -123 -253c-53 0 -79 22 -79 66c0 14 4 27 12 39c8 11 19 18 31 20 c25 5 49 44 71 118c16 55 24 100 24 136c-80 0 -129 -17 -148 -52h-25c19 57 42 97 69 118c29 23 70 34 122 34h385v-100h-117c-7 -29 -11 -77 -11 -142c0 -109 19 -163 56 -163c30 0 50 23 60 71'], + 0x1D6D2: [473,205,547,45,515,'66 -55v168c0 76 7 138 21 185s38 86 69 119c17 18 40 32 69 43c25 9 49 13 73 13c70 0 124 -22 162 -67c37 -43 55 -102 55 -178c0 -75 -25 -136 -74 -183c-41 -40 -90 -59 -146 -59h1c-32 0 -62 8 -91 26v-66c0 -68 -7 -118 -20 -151h-140c14 29 21 79 21 150zM205 271 v-199c18 -36 45 -55 81 -55c33 0 55 17 67 52c10 30 15 80 15 151c0 86 -9 146 -28 181c-15 27 -36 41 -65 41c-27 0 -47 -15 -57 -45c-9 -26 -13 -68 -13 -126'], + 0x1D6D3: [473,203,464,23,444,'334 -5l-117 -9c-7 -1 -14 -1 -21 -1c-59 0 -103 19 -130 47c-29 29 -43 76 -43 140c0 39 12 82 37 128c26 49 61 89 102 120c47 35 98 53 151 53c38 0 70 -10 95 -28c24 -18 36 -41 36 -70c0 -21 -7 -39 -22 -53c-12 -12 -27 -18 -43 -18l-136 68 c-49 0 -88 -13 -115 -40c-25 -25 -37 -60 -37 -104c0 -50 22 -83 67 -98c24 -8 63 -13 114 -13c110 0 165 -46 165 -138c0 -62 -21 -109 -62 -143c-32 -26 -69 -39 -113 -39c-30 0 -53 7 -71 21c-14 11 -21 24 -21 40c0 19 6 34 19 46c11 10 26 16 42 16l107 -46 c15 0 29 7 41 22c11 13 17 29 17 46c0 33 -18 53 -54 53h-8'], + 0x1D6D4: [461,14,568,25,529,'529 361h-200c39 -71 146 -75 146 -176c0 -118 -115 -199 -225 -199c-140 0 -225 113 -225 246c0 149 128 229 265 229h239v-100zM329 169c0 77 -16 131 -64 192c-72 0 -93 -85 -93 -142c0 -43 2 -124 21 -163c12 -25 30 -39 59 -39c72 0 77 101 77 152'], + 0x1D6D5: [461,14,492,18,457,'457 361h-139c-3 -8 -6 -30 -10 -65s-6 -67 -6 -99c0 -94 17 -141 51 -141c30 0 50 23 60 71h25c0 -39 -14 -73 -42 -101c-26 -27 -59 -40 -100 -40c-49 0 -84 18 -106 53c-15 24 -22 55 -22 92c0 32 7 74 21 127c3 12 9 32 18 62c5 18 9 32 11 41h-58 c-26 0 -50 -9 -73 -27s-37 -39 -44 -65h-25c7 48 26 91 56 129c33 42 71 63 116 63h267v-100'], + 0x1D6D6: [473,14,576,12,551,'281 449v24c90 0 158 -23 206 -71c43 -43 64 -100 64 -173c0 -76 -24 -137 -71 -183c-41 -40 -93 -60 -155 -60c-145 0 -217 62 -217 187v182c0 32 -8 47 -24 47c-15 0 -32 -16 -49 -48l-23 11c12 32 31 58 56 78s51 30 80 30s51 -7 69 -21c20 -16 30 -40 30 -71v-156 c0 -76 5 -128 15 -157c12 -35 32 -51 63 -51c35 0 58 23 69 69c7 29 10 76 10 140c0 63 -11 115 -32 156c-22 42 -52 64 -91 67'], + 0x1D6D7: [473,205,653,24,629,'257 17v135c0 113 39 321 186 321c57 0 100 -28 134 -72c38 -49 52 -110 52 -171c0 -139 -91 -244 -233 -244v-191h-139v191c-144 0 -233 105 -233 244c0 149 88 243 239 243h45v-25c-116 0 -137 -111 -137 -205c0 -46 2 -141 20 -183c15 -33 31 -43 66 -43zM396 17h8 c37 0 53 22 64 54c13 40 14 129 14 172c0 31 1 199 -53 199c-34 0 -33 -149 -33 -168v-257'], + 0x1D6D8: [473,205,612,21,586,'586 461l-251 -397l18 -64c22 -77 51 -115 86 -115c36 0 59 25 67 76h25c0 -54 -9 -96 -27 -125c-17 -28 -41 -41 -71 -41c-29 0 -53 23 -74 70c-8 18 -19 53 -34 106l-15 53l-134 -213h-155l237 375l-22 85c-12 47 -27 79 -43 95c-12 12 -26 17 -45 17 c-34 0 -57 -25 -67 -75h-25c0 48 8 86 24 116c17 32 43 49 76 49c28 0 51 -16 69 -48c12 -21 24 -53 35 -97l25 -97l146 230h155'], + 0x1D6D9: [473,205,763,12,751,'751 473v-25c-48 -7 -79 -41 -79 -99c0 -5 0 -11 1 -16l11 -126c1 -6 1 -12 1 -17c0 -62 -29 -113 -72 -151c-39 -35 -86 -53 -140 -53h-22v-191h-139v191h-22c-63 0 -115 23 -156 69c-37 41 -55 91 -55 152l12 126c0 65 -27 104 -79 115v25h49c68 0 114 -24 139 -72 c18 -34 26 -84 26 -150c0 -92 6 -155 19 -190c11 -29 27 -44 50 -44h17v444h139v-444h17c26 0 45 20 55 59c9 36 14 94 14 175c0 79 11 134 33 166c25 37 69 56 132 56h49'], + 0x1D6DA: [473,14,734,26,708,'419 473h29c95 0 164 -27 209 -82c34 -42 51 -97 51 -164c0 -80 -26 -143 -78 -189c-39 -35 -84 -52 -133 -52c-60 0 -104 20 -132 60c-34 -40 -77 -60 -130 -60c-57 0 -107 23 -148 69s-61 104 -61 175s23 130 68 175s106 68 183 68h34v-25c-63 0 -104 -26 -123 -77 c-11 -29 -15 -78 -15 -147c0 -61 3 -107 11 -137c12 -47 33 -70 64 -70c18 0 35 9 51 28c15 18 24 41 26 67c-21 48 -32 92 -32 132c0 35 7 64 20 84s32 30 55 30c26 0 45 -15 57 -43c8 -19 12 -42 12 -68c0 -43 -11 -88 -32 -136c3 -32 14 -56 31 -73c14 -14 29 -21 46 -21 c53 0 79 69 79 207c0 78 -8 132 -25 164c-21 40 -61 60 -117 60v25'], + 0x1D6DB: [707,14,515,25,491,'88 606l-19 20c33 46 89 81 175 81c73 0 130 -25 179 -100c51 -78 68 -186 68 -301c0 -82 -16 -164 -58 -224c-45 -64 -106 -96 -178 -96c-141 0 -230 110 -230 241c0 67 22 126 56 166c58 67 116 80 174 80c37 0 72 -9 95 -22l3 3c-11 124 -71 185 -150 185 c-30 0 -82 -4 -115 -33zM340 218c0 171 -29 224 -88 224c-61 0 -79 -53 -79 -224c0 -145 21 -201 79 -201s88 52 88 201'], + 0x1D6DC: [473,14,444,25,430,'412 109l18 -18c-52 -70 -116 -105 -191 -105c-68 0 -122 24 -162 73c-35 43 -52 97 -52 163c0 78 24 142 72 190c41 41 92 61 151 61l99 -20c14 0 21 7 22 20h23l17 -147h-23c-22 78 -60 117 -115 117c-36 0 -64 -21 -83 -62c-14 -31 -21 -68 -21 -111h157v-44h-157 c0 -54 16 -98 49 -132c26 -27 56 -41 89 -41c38 0 74 19 107 56'], + 0x1D6DD: [692,14,647,12,620,'620 295l-1 -27c-17 0 -40 1 -69 2c-3 -49 -7 -86 -13 -110c-29 -116 -99 -174 -212 -174c-145 0 -217 62 -217 186v28c0 32 -8 48 -24 48c-13 0 -30 -16 -49 -49l-23 12c11 30 29 55 53 75c25 21 53 32 83 32c27 0 51 -8 70 -26c20 -18 29 -44 29 -75v-27 c0 -70 5 -116 15 -138c11 -24 32 -35 63 -35c35 0 58 24 68 72c7 35 11 99 11 191v5c-191 33 -287 115 -287 247c0 62 24 106 72 133c32 18 69 27 114 27c76 0 136 -33 183 -99c43 -61 65 -140 65 -238v-56c28 -3 51 -4 69 -4zM403 338c-3 131 -16 221 -37 271 c-12 27 -29 41 -51 41c-44 0 -65 -32 -65 -96c0 -45 13 -87 40 -125s64 -68 113 -91'], + 0x1D6DE: [473,19,563,12,546,'546 461l-168 -211c-7 -34 -10 -67 -10 -100c0 -44 17 -66 51 -66l58 23c13 0 25 -5 35 -15c11 -10 16 -23 16 -39c0 -25 -9 -44 -28 -57c-15 -10 -35 -15 -57 -15c-36 0 -65 13 -87 41c-20 25 -30 59 -30 99c0 17 2 41 7 72l-153 -193h-168l169 214c6 35 9 65 9 90 c0 44 -16 66 -50 66l-58 -23c-13 0 -26 5 -36 15c-11 10 -16 23 -16 39c0 25 10 44 29 57c15 10 34 15 56 15c36 0 66 -13 88 -41c20 -25 29 -59 29 -99c0 -12 -2 -33 -6 -63l151 191h169'], + 0x1D6DF: [676,205,653,24,629,'396 473h11c68 0 123 -26 166 -78c37 -45 56 -100 56 -166c0 -75 -25 -136 -73 -183c-42 -40 -93 -60 -154 -60h-6v-191h-139v191h-8c-68 0 -124 26 -168 77c-38 45 -57 100 -57 165c0 78 25 140 74 186c42 39 93 59 155 59h4v203h139v-203zM396 17h8c32 0 53 16 64 50 c9 29 14 79 14 150c0 91 -7 151 -19 183c-11 28 -30 42 -57 42h-10v-425zM257 17v425h-7c-32 0 -54 -18 -65 -55c-10 -32 -14 -88 -14 -169c0 -77 6 -131 20 -161c12 -26 32 -40 59 -40h7'], + 0x1D6E0: [473,205,511,25,486,'379 -177l-43 1c-60 1 -115 19 -166 50c-97 58 -145 165 -145 323c0 90 26 162 79 213c43 42 97 63 160 63c68 0 123 -25 166 -77c37 -45 56 -101 56 -167c0 -75 -24 -136 -73 -183c-42 -40 -93 -60 -153 -60c-64 0 -115 20 -152 60l-2 -1c15 -35 41 -64 78 -84 c31 -17 65 -26 101 -25l80 3h6c58 0 87 -28 87 -79c0 -20 -8 -41 -24 -65h-25c0 17 -10 28 -30 28zM339 218c0 91 -7 152 -20 183c-11 28 -30 41 -58 41c-32 0 -54 -18 -65 -55c-10 -32 -14 -88 -14 -169c0 -77 7 -131 21 -161c12 -27 31 -40 58 -40c31 0 52 17 63 51 c10 30 15 80 15 150'], + 0x1D6E1: [461,14,864,9,851,'851 361h-79c28 -37 42 -82 42 -136c0 -81 -24 -143 -73 -187c-38 -35 -84 -52 -138 -52c-59 0 -103 20 -131 60c-34 -40 -77 -60 -131 -60c-63 0 -113 23 -152 67c-37 43 -56 100 -56 172c0 51 16 96 49 136h-24c-58 0 -100 -21 -124 -62h-25c37 108 110 162 216 162 h626v-100zM642 361h-337c-17 -28 -25 -77 -25 -147c0 -132 24 -197 74 -197c20 0 38 10 53 29c14 18 22 39 25 65c-20 49 -31 86 -31 113s7 49 20 65s32 24 56 24s42 -10 54 -30c9 -15 14 -35 14 -57c0 -23 -11 -61 -33 -115c3 -30 13 -54 30 -72c14 -15 29 -22 46 -22 c53 0 79 66 79 198c0 70 -8 119 -25 146'], + 0x1D7CE: [688,13,500,24,476,'476 337c0 -211 -95 -350 -225 -350c-131 0 -227 139 -227 347c0 163 58 354 229 354c159 0 223 -185 223 -351zM318 224v225c0 147 -20 211 -69 211s-67 -59 -67 -211v-225c0 -149 19 -209 69 -209s67 60 67 209'], + 0x1D7CF: [688,0,500,65,441,'441 0h-373v24c99 1 118 18 118 105v378c0 47 -11 70 -36 70c-13 0 -37 -5 -65 -16l-20 -8v26l251 109h18v-570c0 -76 16 -92 107 -94v-24'], + 0x1D7D0: [688,0,500,17,478,'478 211l-46 -211h-415v23c146 156 181 198 232 276c32 49 51 104 51 148c0 68 -40 127 -119 127c-48 0 -91 -28 -122 -90h-28c47 140 123 204 223 204c108 0 182 -70 182 -183c0 -76 -35 -143 -114 -218l-162 -154h140c104 0 127 6 153 78h25'], + 0x1D7D1: [688,14,500,16,468,'58 524l-21 12c53 102 130 152 229 152c102 0 164 -66 164 -137c0 -46 -23 -100 -84 -127c76 -27 122 -97 122 -178c0 -146 -127 -260 -300 -260c-92 0 -152 36 -152 90c0 34 27 60 65 60c31 0 59 -16 96 -57c32 -35 55 -43 79 -43c60 0 98 50 98 122 c0 48 -18 92 -49 121c-36 34 -70 48 -153 77v17c95 30 131 72 131 131c0 70 -36 103 -99 103c-52 0 -88 -21 -126 -83'], + 0x1D7D2: [688,0,500,19,476,'476 144h-64v-144h-145v144h-248v113l313 431h80v-433h64v-111zM268 255v294l-208 -294h208'], + 0x1D7D3: [676,8,500,22,470,'470 676l-45 -127h-276l-22 -81c82 -5 113 -9 151 -20c109 -31 173 -110 173 -214c0 -146 -117 -242 -282 -242c-89 0 -147 41 -147 88c0 35 26 61 61 61c27 0 59 -11 100 -46c35 -30 67 -42 90 -42c56 0 100 43 100 104c0 68 -50 123 -142 152c-43 13 -89 17 -180 22 l97 345h322'], + 0x1D7D4: [688,13,500,28,475,'470 688v-26c-146 -30 -228 -113 -266 -258c30 13 52 17 84 17c114 0 187 -78 187 -199c0 -140 -86 -235 -215 -235c-141 0 -232 110 -232 287c0 120 50 219 139 297c88 77 154 90 303 117zM323 165c0 156 -23 211 -89 211c-16 0 -30 -4 -37 -10s-13 -63 -13 -121 c0 -96 10 -169 27 -202c10 -19 27 -29 51 -29c45 0 61 29 61 151'], + 0x1D7D5: [676,0,500,17,477,'477 676l-235 -676h-95l200 539h-199c-64 0 -86 -21 -105 -85h-26l45 222h415'], + 0x1D7D6: [688,13,500,28,472,'472 187c0 -120 -87 -200 -232 -200c-127 0 -212 63 -212 170c0 89 55 145 149 168c-99 59 -138 112 -138 188c0 106 86 175 224 175c125 0 195 -65 195 -145c0 -64 -41 -111 -136 -140c113 -77 150 -132 150 -216zM339 537c0 68 -32 122 -88 122c-47 0 -83 -36 -83 -83 c0 -56 46 -111 130 -154c33 44 41 67 41 115zM333 127c0 74 -24 106 -133 179c-41 -60 -51 -102 -51 -145c0 -89 32 -142 93 -142c54 0 91 37 91 108'], + 0x1D7D7: [688,13,500,26,473,'31 -13v26c144 29 226 112 268 260c-27 -14 -49 -19 -88 -19c-109 0 -185 79 -185 205c0 129 90 229 215 229c140 0 232 -115 232 -294c0 -120 -52 -224 -145 -297c-88 -69 -146 -93 -297 -110zM317 461c0 69 -11 139 -25 167c-12 23 -28 33 -54 33 c-45 0 -60 -30 -60 -148c0 -155 23 -214 85 -214c15 0 34 4 41 9c3 2 4 7 5 20c7 27 8 56 8 86v47'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Normal/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Normal/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Normal/BoldItalic/Main.js new file mode 100644 index 0000000..1af980c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Normal/BoldItalic/Main.js @@ -0,0 +1,140 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Normal/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Normal-bold-italic'] = { + directory: 'Normal/BoldItalic', + family: 'STIXMathJax_Normal', + weight: 'bold', + style: 'italic', + id: 'STIXWEBNORMALBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x1D468: [685,0,759,39,724,'724 23l-2 -23h-319l4 23h31c33 0 51 17 51 45c0 10 -1 28 -2 34l-15 108h-159l-80 -139c-2 -4 -6 -13 -6 -22c0 -19 9 -26 22 -26h56l-6 -23h-260l4 23c45 5 74 17 108 75l346 587h49l94 -624c4 -24 20 -38 47 -38h37zM466 256l-23 178l-103 -178h126'], + 0x1D469: [669,0,726,42,715,'197 669h265c124 0 253 -22 253 -152c0 -74 -43 -120 -100 -147c-18 -9 -43 -18 -64 -24c58 -11 130 -60 130 -133c0 -126 -89 -213 -299 -213h-340l4 23h40c60 0 74 23 83 62l116 502c2 8 2 16 2 22c-2 24 -11 37 -56 37h-37zM440 624l-58 -251c12 -2 21 -2 32 -2 c14 0 28 1 40 4c74 16 109 76 109 150c0 35 -10 99 -74 99h-49zM373 324l-64 -274c19 -4 34 -5 52 -5c87 0 165 68 165 176c0 76 -53 103 -122 103h-31'], + 0x1D46A: [685,12,701,55,745,'745 685l-54 -234h-23c1 10 2 20 2 30c0 80 -45 157 -161 157c-183 0 -296 -200 -296 -375c0 -114 52 -218 173 -218c107 0 193 37 245 114l22 -15c-24 -39 -58 -70 -93 -96c-74 -54 -164 -60 -202 -60c-207 0 -303 119 -303 288c0 103 44 213 128 292 c79 74 188 117 311 117c61 0 129 -28 172 -28c9 0 40 0 57 28h22'], + 0x1D46B: [669,0,818,42,790,'197 669h289c214 0 304 -130 304 -275c0 -98 -38 -203 -116 -279c-72 -71 -177 -115 -309 -115h-323l4 23h37c59 0 76 21 85 60l116 504c2 8 3 16 3 23c0 22 -12 36 -57 36h-37zM440 624l-117 -508c-6 -24 -7 -29 -7 -32c2 -37 43 -39 78 -39c181 0 241 199 241 347 c0 90 -25 232 -140 232h-55'], + 0x1D46C: [669,0,732,42,754,'754 669l-40 -168h-23c3 17 3 28 3 38c-1 73 -75 85 -121 85h-135l-55 -239h55c56 0 116 9 137 95h22l-54 -251h-23c3 12 6 47 6 65c0 43 -56 46 -85 46h-69l-58 -258c-1 -6 -2 -13 -2 -17c0 -14 11 -20 42 -20h65c146 0 220 42 262 161h22l-61 -206h-600l4 23h36 c59 0 76 22 85 61l115 504c1 6 2 11 2 16c0 27 -17 42 -59 42h-37l4 23h562'], + 0x1D46D: [669,0,635,44,750,'750 669l-42 -168h-23c2 11 3 26 3 41c0 75 -79 82 -123 82h-124l-56 -248h59c57 0 119 8 138 96h24l-57 -253h-23c3 16 7 47 7 66c0 46 -56 46 -84 46h-75l-58 -249c-3 -9 -4 -17 -4 -24c0 -23 16 -35 60 -35h52l-3 -23h-377l4 23h36c62 0 76 22 85 61l116 504 c2 8 3 16 3 23c0 22 -13 35 -60 35h-37l4 23h555'], + 0x1D46E: [685,12,768,55,768,'768 342l-5 -23h-24c-60 0 -78 -19 -89 -61l-59 -218c-89 -43 -171 -52 -234 -52c-207 0 -302 138 -302 290c0 101 41 206 121 283c82 80 199 124 334 124c85 0 102 -33 162 -33c10 0 51 8 57 33h23l-53 -224h-23c4 14 6 27 6 40c0 76 -69 139 -166 139 c-188 0 -303 -212 -303 -398c0 -83 29 -209 156 -209c35 0 58 7 78 20l57 208c3 9 4 16 4 24c-1 23 -10 34 -55 34h-35l5 23h345'], + 0x1D46F: [669,0,891,42,946,'946 669l-5 -23h-37c-61 0 -75 -21 -84 -61l-114 -503c-2 -7 -6 -14 -6 -22v-3c1 -24 10 -34 58 -34h41l-5 -23h-349l4 23h23c61 0 78 22 87 61l57 251h-242l-59 -253c-1 -8 -4 -15 -4 -23c2 -27 14 -36 60 -36h25l-5 -23h-349l4 23h36c61 0 77 22 86 61l115 503 c2 8 3 14 3 21c0 23 -15 38 -57 38h-40l6 23h348l-3 -23h-25c-63 0 -76 -21 -85 -60l-46 -203h242l47 204c2 8 3 16 3 23c0 23 -14 36 -60 36h-37l3 23h364'], + 0x1D470: [669,0,502,42,557,'557 669l-4 -23h-38c-61 0 -76 -22 -85 -61l-116 -503c-1 -5 -1 -14 -1 -25c1 -23 12 -34 58 -34h37l-4 -23h-362l4 23h38c61 0 74 22 83 61l115 502c2 8 3 15 3 21c0 24 -15 39 -57 39h-37l4 23h362'], + 0x1D471: [669,12,558,66,646,'646 669l-3 -23h-37c-59 0 -78 -20 -87 -61l-96 -420c-16 -72 -49 -118 -95 -148c-37 -25 -92 -29 -118 -29c-79 0 -144 47 -144 101c0 34 20 78 85 78c41 0 81 -27 81 -58c0 -33 -27 -32 -27 -59c0 -16 15 -18 19 -18c22 0 37 67 43 93l105 463c2 8 3 15 3 22 c0 23 -15 36 -56 36h-38l3 23h362'], + 0x1D472: [669,0,795,42,839,'839 669l-4 -23c-56 0 -88 -25 -135 -63l-248 -201l191 -284c47 -69 76 -75 135 -75l-4 -23h-328l4 23h29c21 0 29 8 29 22c0 16 -11 33 -16 40l-138 208l-48 -211c-1 -5 -1 -14 -1 -21c1 -27 13 -38 58 -38h38l-5 -23h-354l5 23h30c63 0 73 22 82 61l115 503 c2 8 4 16 4 23c0 23 -15 36 -58 36h-37l4 23h347l-6 -23h-27c-58 0 -72 -26 -81 -64l-40 -178h2l243 198c9 8 15 16 15 23c0 11 -11 21 -31 21h-24l4 23h250'], + 0x1D473: [669,0,744,42,700,'700 199l-59 -199h-599l4 23h35c65 0 78 22 87 61l116 496c1 5 2 10 2 15c0 26 -18 51 -60 51h-36l4 23h360l-4 -23h-37c-53 0 -71 -23 -82 -70l-115 -492c-1 -5 -3 -13 -3 -16c1 -21 10 -23 21 -23h120c109 0 194 21 223 155'], + 0x1D474: [669,0,1016,42,1071,'1071 669l-3 -23h-34c-66 0 -80 -25 -89 -65l-115 -499c-2 -7 -3 -14 -3 -20c0 -25 16 -39 59 -39h39l-4 -23h-362l4 23h35c63 0 76 24 85 61l82 354h-1l-283 -438h-56l-90 441l-80 -348c-2 -10 -3 -27 -3 -40c2 -22 10 -30 55 -30h38l-3 -23h-300l4 23h36 c62 0 78 27 88 72l111 486c3 9 4 26 4 33c0 23 -16 32 -58 32h-39l4 23h246l91 -468l297 468h245'], + 0x1D475: [669,0,869,42,924,'924 669l-3 -23h-38c-61 0 -78 -22 -87 -64l-131 -582h-57l-263 491l-92 -409c-1 -6 -2 -11 -2 -18v-8c1 -23 12 -33 57 -33h39l-4 -23h-301l4 23h36c61 0 76 22 85 61l117 510c-17 43 -47 52 -71 52h-38l3 23h232l222 -435l80 350c2 7 2 14 2 20c0 24 -11 42 -57 42h-37 l4 23h300'], + 0x1D476: [685,16,777,55,755,'755 432c0 -237 -195 -448 -429 -448c-177 0 -271 120 -271 263c0 210 166 438 428 438c178 0 272 -124 272 -253zM601 467c0 88 -36 171 -129 171c-184 0 -262 -287 -262 -431c0 -91 36 -176 126 -176c168 0 265 279 265 436'], + 0x1D477: [669,0,612,42,733,'198 669h284c166 0 251 -45 251 -163c0 -97 -82 -206 -297 -206c-24 0 -46 0 -67 3l-51 -221c-1 -5 -4 -16 -4 -24c2 -27 13 -35 60 -35h52l-4 -23h-380l4 23h40c62 0 76 22 85 61l115 504c2 8 3 13 3 21c-1 24 -14 37 -60 37h-37zM441 623l-61 -273c13 -3 28 -5 40 -5 c91 0 157 72 157 176c0 52 -28 103 -106 103c-10 0 -21 0 -30 -1'], + 0x1D478: [685,154,810,55,755,'97 -112l159 101c-118 19 -201 119 -201 242c0 218 163 454 428 454c158 0 271 -103 272 -254c2 -230 -171 -430 -420 -449l-52 -30c8 1 17 1 23 1c72 0 165 -34 246 -34c34 0 88 2 145 68l17 -13c-57 -73 -132 -128 -258 -128c-56 0 -109 9 -146 17 c-50 11 -103 26 -129 26c-5 0 -30 -1 -72 -21zM601 479c0 114 -76 159 -129 159c-186 0 -262 -290 -262 -452c0 -63 36 -156 115 -156c183 0 276 278 276 449'], + 0x1D479: [669,0,801,42,784,'784 23l-4 -23h-223l-154 317c-5 0 -9 1 -35 2l-55 -237c-1 -5 -2 -14 -2 -22c2 -27 11 -37 56 -37h39l-4 -23h-360l4 23h36c65 0 75 22 84 61l114 500c2 10 4 19 4 27c0 23 -16 35 -59 35h-37l4 23h284c173 0 235 -72 235 -155c0 -81 -65 -149 -172 -176l115 -231 c23 -46 53 -84 130 -84zM379 364h40c101 0 139 64 139 142c0 82 -38 106 -72 114c-16 3 -25 4 -34 4h-16'], + 0x1D47A: [685,10,671,55,704,'704 682l-50 -219h-23c0 21 0 33 -1 50c-3 66 -73 125 -169 125c-36 0 -100 -21 -100 -84c0 -74 55 -118 113 -162c67 -51 126 -121 126 -210c0 -92 -94 -192 -257 -192c-65 0 -113 14 -157 32c-6 2 -29 9 -41 9c-15 0 -48 -9 -68 -39h-22l59 245h24v-35 c0 -86 63 -163 180 -163c94 0 135 54 135 119c0 41 -17 87 -43 113c-63 63 -194 131 -194 245c0 90 72 169 237 169c90 0 147 -40 179 -40c18 0 44 14 50 37h22'], + 0x1D47B: [669,0,568,28,700,'700 669l-44 -187h-24c6 18 7 40 7 54c0 62 -45 88 -111 88h-78l-123 -541c-1 -6 -4 -15 -4 -25c1 -24 11 -35 57 -35h42l-3 -23h-368l4 23h40c62 0 76 22 85 61l124 540h-75c-100 0 -160 -54 -179 -142h-22l43 187h629'], + 0x1D47C: [669,10,733,72,810,'810 669l-4 -23h-38c-61 0 -77 -18 -86 -60l-80 -359c-6 -25 -14 -55 -31 -92c-30 -65 -95 -145 -249 -145c-171 0 -240 100 -240 194c0 19 7 59 15 95l70 307c1 4 2 9 2 15c0 20 -10 45 -60 45h-37l4 23h363l-4 -23h-39c-65 0 -74 -19 -83 -60l-83 -363 c-4 -17 -7 -49 -7 -67c0 -56 45 -110 127 -110c96 0 145 77 170 187l79 355c2 5 2 16 2 24c-1 24 -13 34 -57 34h-37l4 23h299'], + 0x1D47D: [669,15,593,66,797,'797 669l-4 -23c-69 0 -104 -40 -132 -78l-431 -583h-52l-20 573c0 7 0 14 -1 20c-2 36 -9 68 -66 68h-25l3 23h326l-4 -23h-36c-42 0 -49 -37 -49 -69v-8l8 -350l242 336c18 25 33 52 33 71c0 15 -7 20 -34 20h-37l3 23h276'], + 0x1D47E: [669,17,925,66,1129,'1129 669l-3 -23c-72 0 -109 -49 -137 -87l-425 -576h-53l-21 407l-260 -407h-53l-21 575c-2 64 -12 88 -70 88h-20l3 23h314l-4 -23h-22c-36 0 -56 -16 -55 -78l8 -331l182 278l-3 65c-2 33 -13 66 -59 66h-24l4 23h318l-4 -23h-37c-45 0 -51 -42 -50 -78l5 -354 l242 331c16 22 34 56 34 79c0 17 -7 22 -35 22h-37l3 23h280'], + 0x1D47F: [669,0,808,28,830,'830 669l-3 -23h-24c-63 0 -82 -34 -116 -74l-177 -212l98 -270c15 -40 28 -67 62 -67h36l-4 -23h-316l3 23h28c33 0 49 12 49 36c0 8 -1 17 -5 27l-63 171l-154 -179c-6 -7 -8 -15 -8 -22c0 -18 15 -33 39 -33h42l-4 -23h-285l4 23c60 7 104 33 142 77l198 229l-89 237 c-12 33 -33 80 -84 80h-27l4 23h318l-4 -23h-39c-23 0 -34 -9 -34 -27c0 -9 4 -20 8 -32l53 -155l137 162c6 7 10 17 10 27c0 14 -8 25 -28 25h-31l4 23h260'], + 0x1D480: [669,0,549,39,725,'725 669l-3 -23c-58 0 -91 -33 -125 -76l-197 -252l-56 -236c-1 -9 -3 -16 -3 -27c0 -17 13 -32 58 -32h39l-4 -23h-362l4 23h37c63 0 75 24 84 61l56 243l-92 238c-20 51 -41 81 -122 81l3 23h331l-4 -23h-35c-33 0 -43 -11 -43 -28c0 -14 8 -36 15 -54l63 -172l150 191 c11 14 11 28 11 37c0 16 -13 26 -51 26h-28l4 23h270'], + 0x1D481: [669,0,797,66,830,'830 669l-548 -623h194c91 0 189 11 223 141h23l-44 -187h-612l555 624h-177c-87 0 -183 -4 -232 -121h-23l46 166h595'], + 0x1D482: [462,10,581,44,548,'529 105l19 -12c-36 -63 -79 -103 -155 -103c-35 0 -68 19 -69 70h-6c-47 -49 -99 -70 -146 -70c-71 0 -128 36 -128 122c0 139 116 350 281 350c55 0 82 -34 84 -64h2l11 51h115l-74 -316c-2 -7 -6 -28 -6 -45s4 -31 16 -31c19 0 35 21 56 48zM382 324 c0 64 -20 98 -54 98c-71 0 -168 -155 -168 -297c0 -55 27 -65 45 -65c70 0 177 153 177 264'], + 0x1D483: [685,8,509,50,487,'263 429l7 -1c26 17 56 31 93 31c92 0 124 -63 124 -163c0 -128 -101 -304 -273 -304c-58 0 -117 21 -164 55l127 563c1 5 2 10 2 14c0 11 -4 17 -14 17c-6 0 -15 0 -43 -7l-4 23l198 28zM219 253l-47 -203c3 -17 26 -23 37 -23c99 0 162 171 162 272c0 71 -26 96 -49 96 c-59 0 -92 -95 -103 -142'], + 0x1D484: [462,10,477,44,460,'412 114l18 -8c-51 -64 -123 -116 -224 -116c-126 0 -162 86 -162 162c0 132 110 310 294 310c72 0 122 -37 122 -82c0 -36 -23 -74 -78 -74c-44 0 -52 29 -52 43c0 36 23 32 23 53c0 15 -6 20 -15 20c-105 0 -178 -180 -178 -267c0 -92 50 -120 101 -120s98 22 151 79'], + 0x1D485: [685,14,595,44,589,'589 685l-130 -565c-3 -13 -8 -28 -8 -41s6 -24 24 -24s35 23 53 47l19 -11c-19 -46 -78 -105 -159 -105c-42 0 -66 37 -66 69h-5c-60 -62 -120 -69 -141 -69c-90 0 -132 51 -132 126c0 144 94 347 278 347c30 0 65 -8 85 -21l37 152c2 7 4 17 4 26c0 12 -4 22 -17 22 c-11 0 -29 -4 -42 -7l-4 23zM385 346c0 48 -31 73 -60 73c-78 0 -166 -153 -166 -297c0 -50 27 -67 48 -67c53 0 130 88 157 183c10 33 21 77 21 108'], + 0x1D486: [462,10,498,44,459,'412 114l19 -7c-53 -66 -113 -117 -229 -117c-123 0 -158 88 -158 158c0 20 1 38 6 59c43 174 178 255 286 255c44 0 123 -10 123 -84c0 -119 -181 -188 -295 -197c-4 -10 -4 -15 -4 -23c0 -82 44 -123 102 -123c57 0 91 22 150 79zM358 386c0 26 -8 36 -34 36 c-68 0 -144 -123 -153 -201c80 11 187 94 187 165'], + 0x1D487: [685,207,572,44,632,'249 449h52c37 0 40 54 70 117c26 54 81 119 167 119c65 0 94 -39 94 -77c0 -35 -19 -73 -60 -73c-43 0 -57 24 -57 49c0 37 20 30 20 51c0 4 -3 7 -10 7c-31 0 -56 -59 -70 -128l-13 -65h80l-12 -47h-79l-88 -387c-6 -27 -19 -66 -38 -104c-27 -52 -81 -118 -167 -118 c-65 0 -94 39 -94 77c0 35 19 73 60 73c43 0 57 -28 57 -53c0 -37 -20 -26 -20 -47c0 -4 3 -7 10 -7c47 0 72 164 86 225l78 341h-79'], + 0x1D488: [462,203,527,22,527,'527 435l-14 -60h-77c10 -15 13 -31 13 -48c0 -75 -52 -153 -154 -164c-50 -5 -74 -23 -74 -49c0 -53 231 -34 231 -155c0 -69 -68 -162 -229 -162c-145 0 -201 64 -201 118c0 55 54 95 119 118c-15 12 -22 33 -22 51c0 37 32 78 79 87c-68 22 -93 73 -93 115 c0 86 73 176 192 176c46 0 85 -19 98 -31zM334 361c0 38 -10 61 -32 61c-41 0 -79 -76 -79 -147c0 -48 12 -80 35 -80c51 0 76 106 76 166zM346 -81c0 49 -38 67 -90 78c-17 3 -55 11 -77 17l-17 -13c-16 -13 -38 -46 -38 -76c0 -49 36 -92 117 -92c74 0 105 40 105 86'], + 0x1D489: [685,10,576,50,543,'523 105l20 -11c-37 -63 -82 -104 -153 -104c-26 0 -69 15 -69 46c0 11 2 24 7 46l54 223c2 10 3 26 3 42c0 27 -13 37 -29 37c-57 0 -141 -165 -166 -275l-25 -109h-115l138 599c1 4 2 11 2 15c0 11 -1 15 -11 15c-7 0 -11 -1 -44 -10l-5 28l188 38l-81 -354l2 -1 c33 61 109 129 180 129c69 0 89 -38 89 -83c0 -13 -4 -44 -7 -56l-50 -213c-1 -4 -2 -15 -2 -21c0 -16 5 -28 20 -28c18 0 34 21 54 47'], + 0x1D48A: [620,9,357,55,300,'300 558c0 -30 -27 -62 -66 -62c-37 0 -66 32 -66 62c0 28 29 62 66 62c39 0 66 -34 66 -62zM255 104l19 -12c-32 -57 -82 -101 -152 -101c-51 0 -67 24 -67 56c0 10 1 20 4 31l66 285c3 13 5 20 5 27c0 11 -5 18 -20 18c-9 0 -21 0 -37 -3l-4 23l197 34l-78 -331 c-4 -15 -8 -30 -8 -48c0 -13 9 -25 21 -25c20 0 35 23 54 46'], + 0x1D48B: [620,207,431,-18,414,'414 558c0 -30 -27 -62 -66 -62c-37 0 -66 32 -66 62c0 28 29 62 66 62c39 0 66 -34 66 -62zM384 462l-102 -447c-6 -27 -17 -58 -36 -96c-27 -52 -84 -126 -170 -126c-65 0 -94 39 -94 77c0 35 19 73 60 73c36 0 57 -27 57 -53c0 -34 -21 -31 -21 -45c0 -9 5 -9 10 -9 c32 0 55 81 73 160l84 368c2 9 3 20 3 25c0 11 -5 18 -20 18c-9 0 -21 0 -37 -3l-4 23'], + 0x1D48C: [685,11,580,55,563,'563 449l-6 -19c-72 -9 -95 -30 -132 -66l-95 -94l64 -149c16 -37 32 -57 40 -57c14 0 33 5 51 67h25c0 -20 -37 -142 -120 -142c-61 0 -72 44 -92 82l-64 124l-24 -22l-39 -173h-116l138 601c1 3 2 9 2 16c0 9 -4 13 -11 13c-6 0 -13 -2 -44 -9l-5 27l193 37l-97 -423 l124 111c7 6 24 28 24 43c0 7 -7 12 -17 12h-30l7 21h224'], + 0x1D48D: [685,9,346,50,310,'310 685l-132 -574c-3 -11 -4 -22 -4 -31c1 -6 7 -14 18 -14c18 0 32 11 52 37l19 -15c-24 -38 -85 -97 -153 -97c-32 0 -60 16 -60 46c0 11 1 26 6 47l118 515c1 6 2 11 2 16c0 12 -4 15 -11 15c-9 0 -27 -5 -44 -10l-5 28'], + 0x1D48E: [467,9,760,33,727,'708 106l19 -15c-30 -52 -78 -100 -157 -100c-26 0 -60 17 -61 48c0 21 5 39 11 66l46 202c3 14 9 52 9 60c0 10 0 22 -16 22c-35 0 -134 -183 -148 -249l-29 -140h-119l73 307c4 18 8 53 8 60c-1 13 -4 21 -18 21c-36 0 -129 -183 -144 -248l-32 -140h-117l89 388 c0 20 -4 26 -12 26c-6 0 -13 -1 -45 -9l-5 28l197 34l-27 -111h2c66 91 119 106 153 106c53 0 76 -47 77 -85c0 -7 -1 -14 -2 -19c41 48 89 104 156 104c52 0 75 -35 75 -77c0 -19 -2 -42 -8 -68l-41 -186c-3 -14 -8 -32 -8 -46s5 -24 23 -24c17 0 39 27 51 45'], + 0x1D48F: [467,10,559,33,526,'506 105l20 -11c-37 -63 -82 -104 -153 -104c-46 0 -68 23 -68 58c0 10 3 22 6 34l54 223c2 10 3 31 3 47c0 27 -13 35 -29 35c-57 0 -141 -168 -166 -278l-25 -109h-115l88 384c1 4 2 11 2 15c0 11 -1 15 -11 15c-7 0 -14 0 -47 -9l-5 28l195 34l-27 -111h4 c33 61 99 106 170 106c69 0 89 -36 89 -81c0 -13 -4 -49 -7 -61l-50 -213c-1 -6 -3 -14 -3 -22c0 -14 4 -27 21 -27c18 0 34 21 54 47'], + 0x1D490: [462,10,561,44,539,'539 297c0 -186 -144 -307 -308 -307c-118 0 -187 71 -187 180c0 172 139 292 295 292c118 0 200 -58 200 -165zM423 300c0 91 -43 122 -89 122c-88 0 -174 -151 -174 -264c0 -97 28 -128 88 -128c92 0 175 142 175 270'], + 0x1D491: [469,205,571,-33,554,'294 429h5c26 24 61 33 91 33c78 0 164 -42 164 -171c0 -165 -141 -303 -273 -303c-29 0 -68 6 -88 19l-25 -105c-3 -12 -4 -21 -4 -32c0 -26 7 -54 41 -54h36l-7 -21h-267l7 21c56 8 66 43 77 89l103 440c3 15 5 28 5 39c0 20 -7 32 -23 32c-6 0 -14 -1 -25 -4l-6 17 l198 40zM244 241l-33 -154c1 -44 34 -59 67 -59c73 0 162 141 162 261c0 94 -29 123 -77 123c-53 0 -100 -83 -119 -171'], + 0x1D492: [462,205,526,44,532,'532 449l-129 -561c-2 -7 -5 -18 -5 -27c1 -34 11 -45 32 -45h34l-6 -21h-288l6 21h36c51 0 65 34 74 72l38 168h-1c-41 -57 -122 -66 -153 -66c-81 0 -126 65 -126 136c0 152 105 336 278 336c34 0 70 -13 85 -51h4l10 38h111zM388 345c0 53 -32 77 -61 77 c-90 0 -169 -160 -169 -305c0 -29 8 -70 53 -70c69 0 177 145 177 298'], + 0x1D493: [467,0,441,33,424,'257 467l-20 -91c29 44 71 86 125 86c42 0 62 -29 62 -55c0 -36 -25 -86 -81 -86c-41 0 -33 38 -49 38c-42 0 -121 -255 -127 -279l-20 -80h-114l88 380c1 8 3 15 3 21c0 12 -9 15 -16 15c-10 0 -19 -3 -41 -11l-3 28'], + 0x1D494: [462,11,474,55,419,'419 462l-22 -160h-22c-1 73 -50 123 -88 123c-27 0 -46 -13 -46 -55c0 -29 34 -62 68 -102c42 -50 75 -81 75 -149c0 -66 -56 -129 -155 -129c-60 0 -84 21 -110 21c-11 0 -24 -7 -39 -22h-25l22 165h24c2 -71 59 -128 106 -128c46 0 63 39 63 80c0 39 -29 64 -47 85 c-40 47 -91 100 -91 154c0 81 69 117 130 117c56 0 76 -22 93 -22c9 0 30 2 39 22h25'], + 0x1D495: [592,10,351,44,318,'318 460l-12 -47h-67l-69 -302c-1 -5 -3 -14 -3 -19c0 -19 7 -32 20 -32c18 0 35 17 54 44l20 -10c-31 -58 -88 -104 -151 -104c-37 0 -66 17 -66 61c0 10 1 22 4 33l76 329h-74l8 47c118 0 134 44 167 132h54l-29 -132h68'], + 0x1D496: [463,10,535,33,502,'482 104l20 -10c-38 -67 -85 -104 -155 -104c-26 0 -66 15 -67 47c0 13 0 38 17 82h-3c-28 -45 -87 -129 -182 -129c-63 0 -79 40 -79 82c0 20 3 40 7 57l54 237c2 11 3 22 3 25c0 18 -6 21 -13 21c-4 0 -14 -1 -44 -7l-3 24l194 34l-79 -344c-2 -6 -6 -23 -6 -32 c0 -18 9 -22 21 -22c48 0 166 180 190 294l19 90h113l-78 -337c-1 -5 -2 -12 -2 -19c0 -17 4 -35 19 -35c18 0 35 20 54 46'], + 0x1D497: [473,14,554,52,539,'60 412v24c78 3 154 20 229 37c-13 -40 -22 -81 -34 -121c-17 -59 -62 -188 -62 -243c0 -31 22 -42 50 -42c66 0 181 146 198 207c3 11 5 22 5 34c0 52 -47 48 -47 105c0 33 31 60 63 60c41 0 77 -36 77 -77c0 -34 -22 -79 -38 -109c-51 -95 -133 -198 -223 -258 c-37 -25 -85 -43 -130 -43c-50 0 -96 23 -96 79c0 86 42 197 65 281c3 13 7 26 7 39c0 29 -44 27 -64 27'], + 0x1D498: [473,14,814,52,799,'565 462l-76 -279c-7 -25 -20 -61 -20 -87c0 -22 14 -29 34 -29c56 0 129 91 159 134c23 32 44 66 44 106c0 59 -47 47 -47 107c0 32 31 59 63 59c42 0 77 -35 77 -76c0 -34 -22 -80 -38 -109c-50 -94 -136 -202 -224 -260c-36 -24 -85 -42 -129 -42c-58 0 -74 29 -74 83 c0 25 16 67 24 91c-45 -80 -112 -174 -214 -174c-51 0 -92 25 -92 81c0 37 7 74 17 110l37 134c6 21 18 55 18 76c0 24 -31 26 -49 26h-15v24c78 5 155 17 230 36l-91 -312c-6 -22 -14 -45 -14 -68c0 -15 6 -29 24 -29c65 0 132 134 154 186c29 69 46 141 64 212h138'], + 0x1D499: [462,8,587,33,543,'327 334l22 34c22 34 65 94 122 94c47 0 72 -27 72 -50c0 -22 -5 -66 -62 -66c-30 0 -26 34 -40 34s-20 -10 -38 -40l-47 -79l49 -138c7 -19 13 -54 33 -54c17 0 34 5 55 68h24c-21 -81 -57 -145 -119 -145c-59 0 -78 44 -92 81l-29 75l-36 -62c-26 -44 -64 -94 -130 -94 c-50 0 -78 28 -78 60s20 58 60 58c47 0 31 -45 49 -45c11 0 21 15 49 59l61 97l-33 91c-21 57 -41 91 -80 91c-7 0 -14 0 -52 -15l-8 24l153 50c59 -34 80 -82 89 -109'], + 0x1D49A: [462,205,519,35,522,'330 128h1c20 29 43 68 61 102c21 39 46 92 46 107c0 30 -46 12 -46 71c0 19 27 54 60 54c46 0 70 -22 70 -75c0 -78 -155 -336 -196 -397c-69 -103 -128 -195 -213 -195c-56 0 -76 34 -77 58s8 66 60 66c42 0 39 -49 54 -49c13 0 66 69 86 118l-53 317 c-8 47 -17 106 -50 106c-5 0 -24 -3 -51 -8l-4 24l170 33c25 -21 49 -93 56 -142'], + 0x1D49B: [462,19,531,35,499,'499 452l-318 -337l1 -1c13 3 26 4 39 4c77 0 113 -107 144 -107c13 0 18 7 18 19c0 16 -20 26 -20 52c0 31 25 59 57 59c33 0 61 -28 61 -61c0 -76 -70 -99 -135 -99c-67 0 -133 24 -200 24c-33 0 -63 -7 -93 -19l-18 25l321 340h-165c-46 0 -59 -7 -74 -51l-24 3 l46 159h360v-10'], + 0x1D71C: [685,0,759,39,724,'724 23l-2 -23h-319l4 23h31c33 0 51 17 51 45c0 10 -1 28 -2 34l-15 108h-159l-80 -139c-2 -4 -6 -13 -6 -22c0 -19 9 -26 22 -26h56l-6 -23h-260l4 23c45 5 74 17 108 75l346 587h49l94 -624c4 -24 20 -38 47 -38h37zM466 256l-23 178l-103 -178h126'], + 0x1D71D: [669,0,726,42,715,'197 669h265c124 0 253 -22 253 -152c0 -74 -43 -120 -100 -147c-18 -9 -43 -18 -64 -24c58 -11 130 -60 130 -133c0 -126 -89 -213 -299 -213h-340l4 23h40c60 0 74 23 83 62l116 502c2 8 2 16 2 22c-2 24 -11 37 -56 37h-37zM440 624l-58 -251c12 -2 21 -2 32 -2 c14 0 28 1 40 4c74 16 109 76 109 150c0 35 -10 99 -74 99h-49zM373 324l-64 -274c19 -4 34 -5 52 -5c87 0 165 68 165 176c0 76 -53 103 -122 103h-31'], + 0x1D71E: [669,0,634,42,749,'749 669l-43 -184h-23c4 19 5 36 5 50c0 66 -49 89 -94 89h-155l-125 -542c-2 -10 -3 -18 -3 -25c0 -25 17 -34 59 -34h52l-5 -23h-375l4 23h36c61 0 76 22 85 61l115 503c2 10 3 29 3 37c-1 20 -17 22 -56 22h-38l3 23h555'], + 0x1D71F: [685,0,632,32,589,'589 0h-557l405 685h48zM427 102l-44 332l-192 -332h236'], + 0x1D720: [669,0,732,42,754,'754 669l-40 -168h-23c3 17 3 28 3 38c-1 73 -75 85 -121 85h-135l-55 -239h55c56 0 116 9 137 95h22l-54 -251h-23c3 12 6 47 6 65c0 43 -56 46 -85 46h-69l-58 -258c-1 -6 -2 -13 -2 -17c0 -14 11 -20 42 -20h65c146 0 220 42 262 161h22l-61 -206h-600l4 23h36 c59 0 76 22 85 61l115 504c1 6 2 11 2 16c0 27 -17 42 -59 42h-37l4 23h562'], + 0x1D721: [669,0,797,66,830,'830 669l-548 -623h194c91 0 189 11 223 141h23l-44 -187h-612l555 624h-177c-87 0 -183 -4 -232 -121h-23l46 166h595'], + 0x1D722: [669,0,891,42,946,'946 669l-5 -23h-37c-61 0 -75 -21 -84 -61l-114 -503c-2 -7 -6 -14 -6 -22v-3c1 -24 10 -34 58 -34h41l-5 -23h-349l4 23h23c61 0 78 22 87 61l57 251h-242l-59 -253c-1 -8 -4 -15 -4 -23c2 -27 14 -36 60 -36h25l-5 -23h-349l4 23h36c61 0 77 22 86 61l115 503 c2 8 3 14 3 21c0 23 -15 38 -57 38h-40l6 23h348l-3 -23h-25c-63 0 -76 -21 -85 -60l-46 -203h242l47 204c2 8 3 16 3 23c0 23 -14 36 -60 36h-37l3 23h364'], + 0x1D723: [685,16,783,55,755,'533 440h23c-31 -67 -43 -126 -43 -199h-23v15c0 26 -10 41 -30 41h-115c-29 0 -38 -5 -64 -56h-23c33 64 45 125 45 199h22c0 -45 12 -57 39 -57h116c23 0 34 12 53 57zM755 430c0 -228 -195 -446 -429 -446c-177 0 -271 118 -271 261c0 196 166 440 428 440 c178 0 272 -126 272 -255zM601 465c0 88 -36 173 -129 173c-184 0 -262 -289 -262 -433c0 -91 36 -174 126 -174c168 0 265 277 265 434'], + 0x1D724: [669,0,502,42,557,'557 669l-4 -23h-38c-61 0 -76 -22 -85 -61l-116 -503c-1 -5 -1 -14 -1 -25c1 -23 12 -34 58 -34h37l-4 -23h-362l4 23h38c61 0 74 22 83 61l115 502c2 8 3 15 3 21c0 24 -15 39 -57 39h-37l4 23h362'], + 0x1D725: [669,0,795,42,839,'839 669l-4 -23c-56 0 -88 -25 -135 -63l-248 -201l191 -284c47 -69 76 -75 135 -75l-4 -23h-328l4 23h29c21 0 29 8 29 22c0 16 -11 33 -16 40l-138 208l-48 -211c-1 -5 -1 -14 -1 -21c1 -27 13 -38 58 -38h38l-5 -23h-354l5 23h30c63 0 73 22 82 61l115 503 c2 8 4 16 4 23c0 23 -15 36 -58 36h-37l4 23h347l-6 -23h-27c-58 0 -72 -26 -81 -64l-40 -178h2l243 198c9 8 15 16 15 23c0 11 -11 21 -31 21h-24l4 23h250'], + 0x1D726: [685,0,759,39,724,'724 23l-2 -23h-319l4 23h31c33 0 51 17 51 45c0 10 -1 28 -2 34l-44 332l-210 -363c-2 -4 -6 -13 -6 -22c0 -19 9 -26 22 -26h56l-6 -23h-260l4 23c45 5 74 17 108 75l346 587h49l94 -624c4 -24 20 -38 47 -38h37'], + 0x1D727: [669,0,1016,42,1071,'1071 669l-3 -23h-34c-66 0 -80 -25 -89 -65l-115 -499c-2 -7 -3 -14 -3 -20c0 -25 16 -39 59 -39h39l-4 -23h-362l4 23h35c63 0 76 24 85 61l82 354h-1l-283 -438h-56l-90 441l-80 -348c-2 -10 -3 -27 -3 -40c2 -22 10 -30 55 -30h38l-3 -23h-300l4 23h36 c62 0 78 27 88 72l111 486c3 9 4 26 4 33c0 23 -16 32 -58 32h-39l4 23h246l91 -468l297 468h245'], + 0x1D728: [669,0,869,42,924,'924 669l-3 -23h-38c-61 0 -78 -22 -87 -64l-131 -582h-57l-263 491l-92 -409c-1 -6 -2 -11 -2 -18v-8c1 -23 12 -33 57 -33h39l-4 -23h-301l4 23h36c61 0 76 22 85 61l117 510c-17 43 -47 52 -71 52h-38l3 23h232l222 -435l80 350c2 7 2 14 2 20c0 24 -11 42 -57 42h-37 l4 23h300'], + 0x1D729: [669,0,718,57,757,'757 669l-38 -182h-23c3 11 4 21 4 30c0 30 -15 46 -53 46h-337c-42 0 -82 -26 -93 -76h-23l38 182h525zM635 459l-51 -239h-23c3 12 4 22 4 31c-1 26 -18 36 -45 36h-204c-57 0 -63 -19 -74 -67h-23l51 239h23c-3 -13 -5 -23 -5 -32c0 -27 15 -34 49 -34h203 c39 0 60 13 72 66h23zM663 187l-39 -187h-567l39 187h23c-2 -8 -4 -18 -4 -25c0 -39 28 -50 71 -50h349c69 0 92 16 105 75h23'], + 0x1D72A: [685,16,777,55,755,'755 432c0 -237 -195 -448 -429 -448c-177 0 -271 120 -271 263c0 210 166 438 428 438c178 0 272 -124 272 -253zM601 467c0 88 -36 171 -129 171c-184 0 -262 -287 -262 -431c0 -91 36 -176 126 -176c168 0 265 279 265 436'], + 0x1D72B: [669,0,887,39,942,'942 669l-5 -23h-37c-61 0 -75 -20 -84 -60l-115 -504c-2 -10 -4 -19 -4 -26c0 -23 13 -33 58 -33h40l-5 -23h-349l5 23h22c60 0 75 11 86 61l123 540h-242l-124 -542c-2 -10 -3 -19 -3 -26c0 -31 23 -33 59 -33h25l-5 -23h-348l5 23h35c58 0 75 19 85 61l115 504 c2 10 2 29 3 36c0 10 -18 22 -57 22h-40l5 23h752'], + 0x1D72C: [669,0,612,42,733,'198 669h284c166 0 251 -45 251 -163c0 -97 -82 -206 -297 -206c-24 0 -46 0 -67 3l-51 -221c-1 -5 -4 -16 -4 -24c2 -27 13 -35 60 -35h52l-4 -23h-380l4 23h40c62 0 76 22 85 61l115 504c2 8 3 13 3 21c-1 24 -14 37 -60 37h-37zM441 623l-61 -273c13 -3 28 -5 40 -5 c91 0 157 72 157 176c0 52 -28 103 -106 103c-10 0 -21 0 -30 -1'], + 0x1D72D: [685,16,783,55,755,'755 430c0 -228 -195 -446 -429 -446c-177 0 -271 118 -271 261c0 196 166 440 428 440c178 0 272 -126 272 -255zM237 383h356c5 29 8 57 8 82c0 88 -36 173 -129 173c-122 0 -198 -128 -235 -255zM574 297h-356c-6 -34 -8 -66 -8 -92c0 -91 36 -174 126 -174 c116 0 198 132 238 266'], + 0x1D72E: [669,0,759,64,787,'787 669l-39 -168h-23c3 17 3 33 3 50c0 66 -55 73 -108 73h-212l159 -250l-286 -266h270c82 0 122 19 161 92h25l-76 -200h-597l372 338l-217 331h568'], + 0x1D72F: [669,0,568,28,700,'700 669l-44 -187h-24c6 18 7 40 7 54c0 62 -45 88 -111 88h-78l-123 -541c-1 -6 -4 -15 -4 -25c1 -24 11 -35 57 -35h42l-3 -23h-368l4 23h40c62 0 76 22 85 61l124 540h-75c-100 0 -160 -54 -179 -142h-22l43 187h629'], + 0x1D730: [685,0,641,31,784,'784 629l-20 -22c-11 10 -28 24 -44 24c-47 0 -143 -130 -174 -167l-121 -145l-54 -233c-2 -9 -4 -19 -4 -29c0 -34 31 -34 57 -34h40l-6 -23h-361l8 23h36c39 0 66 6 78 57l59 248l-74 190c-14 37 -43 96 -89 96c-26 0 -44 -12 -64 -27l-20 21c42 53 82 77 151 77 c66 0 123 -37 145 -100l67 -192l157 189c36 43 94 95 154 95c27 0 66 -26 79 -48'], + 0x1D731: [669,0,827,28,799,'546 587l-5 -24c124 0 258 -48 258 -173c0 -202 -243 -286 -364 -286h-1l-7 -32c-1 -6 -1 -15 -1 -19c0 -22 16 -30 52 -30h47l-5 -23h-365l6 23c76 0 108 6 116 44l8 37c-134 0 -257 59 -257 189c0 189 211 270 363 270l10 44c1 2 1 5 1 7c0 18 -22 32 -58 32h-41l5 23 h364l-5 -23h-41c-56 0 -72 -23 -80 -59zM529 517l-85 -366c79 0 192 109 192 229c0 71 -40 137 -107 137zM298 151l85 366c-89 0 -197 -132 -197 -232c0 -78 45 -134 112 -134'], + 0x1D732: [669,0,808,28,830,'830 669l-3 -23h-24c-63 0 -82 -34 -116 -74l-177 -212l98 -270c15 -40 28 -67 62 -67h36l-4 -23h-316l3 23h28c33 0 49 12 49 36c0 8 -1 17 -5 27l-63 171l-154 -179c-6 -7 -8 -15 -8 -22c0 -18 15 -33 39 -33h42l-4 -23h-285l4 23c60 7 104 33 142 77l198 229l-89 237 c-12 33 -33 80 -84 80h-27l4 23h318l-4 -23h-39c-23 0 -34 -9 -34 -27c0 -9 4 -20 8 -32l53 -155l137 162c6 7 10 17 10 27c0 14 -8 25 -28 25h-31l4 23h260'], + 0x1D733: [685,0,694,30,781,'781 684l-5 -23c-53 0 -68 -88 -77 -127c-12 -52 -24 -113 -55 -158c-59 -86 -156 -112 -255 -112l-39 -171c-3 -12 -6 -24 -6 -36c0 -31 49 -34 80 -34h17l-5 -23h-362l5 23h23c60 0 87 10 101 72l39 169c-88 0 -210 42 -210 147c0 65 37 123 37 188c0 23 -11 62 -39 63 l5 23h33c86 0 126 -61 126 -141c0 -35 -7 -69 -17 -102c-6 -20 -13 -41 -13 -63c0 -51 45 -66 89 -68l62 271c2 7 3 14 3 21c0 39 -39 44 -72 44c-9 0 -18 0 -25 -1l6 23h362l-6 -23c-57 0 -104 3 -120 -64l-63 -271c60 0 101 32 124 85c21 47 24 100 41 149 c32 88 85 139 183 139h33'], + 0x1D734: [685,0,826,57,815,'300 92l6 31c-100 18 -158 89 -158 185c0 158 143 377 401 377c181 0 266 -109 266 -247c0 -159 -126 -279 -275 -315l-9 -31h153c31 0 50 28 63 75h23l-38 -167h-305l42 153c110 24 189 182 189 310c0 84 -36 174 -120 174c-130 0 -231 -194 -231 -345 c0 -71 25 -124 83 -139l-28 -153h-305l38 167h23c-3 -15 -5 -28 -5 -38c0 -27 10 -37 41 -37h146'], + 0x1D735: [669,16,632,43,600,'600 669l-405 -685h-48l-104 685h557zM441 567h-236l44 -332'], + 0x1D736: [461,12,624,44,630,'630 449l-163 -258s-1 -6 -1 -12c0 -8 0 -17 1 -23c7 -80 27 -98 41 -98c21 0 43 26 58 76l24 -7c-19 -77 -56 -139 -121 -139c-46 0 -82 41 -89 79c-56 -60 -112 -77 -181 -77c-93 0 -155 57 -155 168c0 149 114 303 276 303c77 0 120 -49 136 -99l49 87h125zM369 280 c0 70 -15 141 -62 141c-49 0 -147 -116 -147 -278c0 -59 18 -116 57 -116c53 0 119 106 146 178c4 22 6 48 6 75'], + 0x1D737: [685,205,555,28,583,'54 -114l114 487c33 143 84 216 165 274c39 28 72 38 129 38c67 0 121 -50 121 -118c0 -76 -46 -146 -113 -173v-2c45 -7 88 -41 88 -126c0 -123 -89 -278 -262 -278c-33 0 -74 4 -97 18l-28 -124c-7 -32 -17 -66 -26 -87h-117c9 21 19 61 26 91zM304 480l-87 -393 c0 -44 35 -59 67 -59c90 0 156 131 156 227c0 106 -34 117 -52 117c-17 0 -30 -6 -45 -6c-27 0 -33 14 -33 25c0 16 16 36 56 36c13 0 49 -11 58 -11c38 0 56 82 56 132c0 56 -29 85 -62 85c-67 0 -93 -57 -114 -153'], + 0x1D738: [462,203,490,44,503,'503 449l-264 -401c0 -77 -19 -251 -113 -251c-44 0 -57 39 -57 61c0 58 53 122 91 185c10 73 13 153 13 208c0 41 -8 141 -45 141c-18 0 -42 -14 -61 -81h-23c18 67 54 151 121 151c71 0 84 -65 84 -135c0 -33 -4 -92 -7 -125l135 247h126'], + 0x1D739: [685,8,538,44,538,'44 169v1c0 114 95 238 237 261c-55 28 -104 73 -104 124c0 91 98 130 192 130c53 0 142 -20 142 -63c0 -29 -11 -62 -59 -62c-70 0 -64 81 -132 81c-26 0 -68 -4 -68 -56c0 -90 286 -109 286 -295c0 -169 -143 -298 -308 -298c-117 0 -186 67 -186 177zM422 259 c0 82 -77 134 -107 134c-93 -23 -155 -124 -155 -238c0 -95 27 -123 88 -123c95 0 174 139 174 227'], + 0x1D73A: [462,10,495,28,451,'451 389l-18 -7c-17 20 -34 40 -103 40s-127 -48 -127 -108c0 -32 24 -51 60 -51c13 0 45 9 74 9c19 0 47 -4 47 -22c0 -23 -17 -37 -65 -37c-11 0 -42 6 -59 6c-43 0 -116 -39 -116 -109c0 -52 47 -75 101 -75c59 0 97 22 151 79l18 -8c-51 -64 -122 -116 -224 -116 c-99 0 -162 50 -162 108c0 64 43 119 108 142v3c-30 10 -49 42 -49 67c0 78 81 152 227 152c65 0 124 -35 137 -73'], + 0x1D73B: [685,203,472,44,522,'330 685l7 -21c-56 -21 -80 -55 -80 -76c0 -28 19 -38 31 -41c42 37 127 104 186 104c36 0 48 -12 48 -30c0 -49 -105 -129 -199 -129c-90 -60 -173 -178 -173 -313c0 -57 39 -86 100 -86c94 0 156 -30 156 -93c0 -47 -28 -97 -74 -138c-34 -30 -85 -65 -121 -65 c-53 0 -77 32 -77 63c0 21 6 54 61 54c46 0 31 -42 62 -42c39 0 73 31 73 80c0 33 -19 46 -62 46c-12 0 -54 -7 -73 -7c-84 0 -151 61 -151 147c0 132 69 247 206 372c-35 5 -74 26 -74 59c0 49 45 96 154 116'], + 0x1D73C: [462,205,517,33,511,'248 356l6 1c33 61 97 105 168 105c69 0 89 -30 89 -75c0 -18 -4 -45 -8 -64l-76 -325c-12 -50 -22 -149 -22 -182c0 -13 1 -9 6 -21h-113c-11 21 -13 34 -13 52c0 41 18 126 100 467c1 5 3 22 3 38c0 27 -13 35 -29 35c-57 0 -140 -168 -166 -277l-26 -110h-115l74 318 c3 13 6 34 6 52c0 17 -8 22 -18 22c-20 0 -42 -22 -61 -45l-20 12c34 52 95 103 161 103c48 0 60 -25 60 -47c0 -21 -2 -32 -6 -59'], + 0x1D73D: [685,11,566,44,555,'555 476c0 -262 -174 -487 -343 -487c-108 0 -168 89 -168 226c0 237 163 471 330 470c109 0 181 -73 181 -209zM184 359h243c8 41 13 89 13 128c0 116 -17 158 -66 158c-80 0 -156 -140 -190 -286zM417 315h-245c-10 -47 -15 -93 -15 -132c0 -111 27 -154 70 -154 c81 0 151 143 190 286'], + 0x1D73E: [462,9,318,55,274,'255 104l19 -12c-32 -57 -82 -101 -152 -101c-51 0 -67 24 -67 56c0 10 1 20 4 31l64 276c3 13 6 29 6 36c0 11 -5 18 -20 18c-9 0 -21 0 -37 -3l-4 23l197 34l-77 -331c-3 -15 -8 -30 -8 -48c0 -13 9 -25 21 -25c20 0 35 23 54 46'], + 0x1D73F: [462,0,560,55,577,'240 294l129 101c34 27 86 67 140 67c42 0 68 -17 68 -50c0 -28 -11 -62 -59 -62c-52 0 -36 46 -72 46c-9 0 -32 -15 -49 -29l-114 -93l112 -199c25 -44 51 -52 103 -52l-5 -23h-269l5 23h29c16 0 28 2 28 15c0 9 -7 26 -13 36l-60 107l-42 -181h-116l82 363 c3 12 4 21 4 28c0 15 -12 17 -26 17c-10 0 -21 -1 -32 -3l-3 23l196 34'], + 0x1D740: [685,16,570,55,537,'514 130h23c-15 -73 -54 -146 -128 -146c-48 0 -69 48 -69 117c0 48 10 98 19 174l-192 -275h-112l302 435v50c0 95 -24 130 -55 130c-22 0 -45 -27 -60 -77h-23c20 74 55 147 125 147c52 0 55 -71 55 -146v-387c0 -79 32 -98 55 -98c21 0 45 26 60 76'], + 0x1D741: [449,205,636,33,603,'583 83l20 -12c-37 -66 -84 -103 -161 -103c-42 0 -57 31 -57 61c0 26 9 56 16 78l-3 1c-29 -55 -87 -110 -135 -110c-29 0 -43 8 -55 27h-2c-34 -132 -46 -193 -70 -230h-103c14 23 32 72 48 138l122 516h113l-74 -316c-2 -8 -3 -16 -3 -23c1 -29 11 -37 40 -37 c69 0 151 156 186 294l21 82h111l-79 -338c-4 -16 -7 -30 -7 -44c0 -18 5 -31 19 -31c18 0 39 26 53 47'], + 0x1D742: [459,10,523,55,534,'510 455l24 -7c-44 -181 -167 -325 -291 -458h-52l-58 378c-4 28 -37 34 -76 34l-2 23c44 2 103 6 182 34l45 -315h1c146 142 197 246 227 311'], + 0x1D743: [685,203,476,28,487,'332 685l6 -23c-64 -26 -79 -53 -79 -73c0 -21 15 -29 16 -32c40 37 112 74 158 74c26 0 54 -5 54 -29c0 -57 -90 -91 -175 -91c-46 0 -66 -40 -66 -78c0 -17 5 -29 14 -43c40 23 94 39 134 39c33 0 74 -3 74 -31c0 -62 -102 -69 -140 -69c-20 0 -44 3 -64 8 c-65 -28 -134 -86 -134 -172c0 -53 29 -71 100 -71c127 0 187 -25 187 -94c0 -47 -28 -97 -67 -134c-35 -33 -85 -69 -128 -69c-53 0 -77 32 -77 65c0 30 19 52 59 52c47 0 36 -43 65 -43c43 0 72 40 72 82c0 33 -20 45 -61 45c-20 0 -48 -7 -70 -7c-105 0 -182 34 -182 121 c0 103 74 185 174 249c-22 21 -28 41 -28 75c0 29 29 70 59 85v3c-31 4 -53 27 -53 56c0 51 49 85 152 105'], + 0x1D744: [462,10,561,44,539,'539 297c0 -186 -144 -307 -308 -307c-118 0 -187 71 -187 180c0 172 139 292 295 292c118 0 200 -58 200 -165zM423 300c0 91 -43 122 -89 122c-88 0 -174 -151 -174 -264c0 -97 28 -128 88 -128c92 0 175 142 175 270'], + 0x1D745: [449,13,579,39,590,'590 449l-21 -91h-113c-17 -47 -53 -171 -53 -234c0 -25 10 -61 34 -61c16 0 42 12 65 71l24 -6c-15 -65 -75 -135 -157 -135c-56 0 -73 41 -73 83c0 22 4 45 7 61c16 75 40 140 62 221h-61c-44 -119 -64 -371 -194 -371c-44 0 -71 17 -71 51c0 23 9 39 42 51 c31 11 48 39 58 68l71 201c-40 0 -81 -6 -118 -54h-23c54 95 110 145 223 145h298'], + 0x1D746: [462,205,595,33,562,'58 -110l62 267c34 145 101 230 162 270c35 23 81 35 115 35c78 0 165 -50 165 -180c0 -164 -141 -294 -274 -294c-30 0 -66 7 -87 19l-25 -110c-6 -28 -18 -77 -28 -102h-115c8 21 19 69 25 95zM252 240l-33 -152c1 -43 34 -60 68 -60c72 0 161 133 161 253 c0 93 -31 131 -76 131c-55 0 -101 -82 -120 -172'], + 0x1D747: [462,203,480,39,508,'508 388c0 -24 -22 -53 -56 -53c-56 0 -49 47 -97 47c-102 0 -214 -98 -214 -217c0 -53 29 -71 100 -71c127 0 187 -25 187 -94c0 -47 -28 -106 -67 -143c-35 -33 -85 -60 -128 -60c-53 0 -77 32 -77 65c0 30 19 52 59 52c47 0 36 -43 65 -43c43 0 72 40 72 82 c0 33 -20 45 -61 45c-20 0 -48 -7 -70 -7c-105 0 -182 34 -182 121c0 103 75 213 174 279c54 36 128 71 192 71c60 0 103 -27 103 -74'], + 0x1D748: [449,10,592,44,603,'603 449l-21 -91h-176c24 -54 101 -50 101 -147c0 -120 -126 -221 -275 -221c-120 0 -188 68 -188 177c0 139 112 282 311 282h248zM391 207v1c0 81 -24 118 -59 150c-82 0 -172 -70 -172 -203c0 -97 29 -125 88 -125c81 0 143 94 143 177'], + 0x1D749: [449,7,469,33,502,'502 449l-21 -91h-149l-53 -188c-5 -18 -8 -38 -8 -56c0 -28 9 -51 32 -51c16 0 42 12 67 71l22 -6c-14 -65 -79 -135 -149 -135c-45 0 -89 18 -89 70c0 34 6 71 15 100l59 195h-32c-43 0 -109 -29 -140 -89h-23c25 67 107 180 214 180h255'], + 0x1D74A: [462,10,552,33,535,'303 423l5 39c127 0 227 -51 227 -174c0 -171 -151 -298 -291 -298c-93 0 -168 33 -168 109c0 11 4 37 12 71l29 125c5 22 12 49 12 66c0 16 -3 27 -17 27c-20 0 -41 -22 -59 -45l-20 12c32 52 90 103 160 103c40 0 59 -22 59 -48c0 -13 -5 -45 -10 -67l-40 -172 c-5 -22 -9 -44 -9 -64c0 -44 16 -77 67 -77c93 0 176 135 176 260c0 105 -65 133 -133 133'], + 0x1D74B: [462,205,706,55,667,'259 30l27 122c29 133 60 192 144 260c17 14 70 42 99 42c75 0 138 -62 138 -163c0 -144 -110 -290 -302 -301l-44 -195h-117l45 195c-126 10 -194 87 -194 188c0 162 138 284 297 284h41l-10 -39c-112 0 -212 -133 -212 -253c0 -70 34 -131 88 -140zM424 241l-49 -211 c78 7 176 122 176 267c0 88 -16 107 -39 107c-50 0 -76 -112 -88 -163'], + 0x1D74C: [462,204,621,33,676,'676 449l-293 -360l13 -121c8 -72 24 -102 44 -102c24 0 52 19 67 79h23c-21 -93 -52 -149 -117 -149c-64 0 -71 80 -74 161l-3 89l-182 -230h-121l302 363l-6 83c-7 99 -27 130 -60 130c-21 0 -54 -25 -67 -76h-23c8 62 36 146 121 146c54 0 73 -53 77 -157l3 -86 l177 230h119'], + 0x1D74D: [462,205,701,33,756,'756 462l-5 -39c-78 -7 -106 -71 -123 -142c-33 -141 -87 -291 -279 -291l-44 -195h-116l44 195c-103 8 -168 63 -168 169c0 61 42 125 40 193c-1 40 -25 64 -72 71l7 39h49c92 0 124 -54 124 -115c0 -68 -32 -132 -32 -198s24 -112 61 -119l98 419h116l-98 -419 c78 0 132 151 156 253c22 92 58 179 193 179h49'], + 0x1D74E: [462,10,687,22,665,'441 462h39c116 0 185 -76 185 -177c0 -155 -123 -295 -244 -295c-57 0 -87 28 -104 65c-40 -47 -89 -65 -144 -65c-106 0 -151 84 -151 176c0 91 52 189 130 243c49 34 104 53 173 53h32l-10 -39c-42 0 -82 -22 -112 -47c-64 -54 -97 -155 -97 -249c0 -48 24 -97 60 -97 c31 0 71 30 89 90c-6 28 -10 55 -10 84c0 70 31 168 107 168c42 0 52 -36 52 -71c0 -62 -42 -131 -74 -179c-1 -5 -2 -13 -2 -18c0 -49 34 -74 66 -74c71 0 123 162 123 247c0 91 -35 146 -116 146'], + 0x1D74F: [686,10,559,44,559,'234 627l2 23c30 25 79 36 119 36c130 0 204 -80 204 -256c0 -171 -103 -440 -328 -440c-120 0 -187 66 -187 176c0 159 139 293 298 293c50 0 115 -24 133 -70h4v8c1 9 2 18 2 27c0 114 -20 221 -154 221c-26 0 -58 -8 -93 -18zM423 293c0 91 -43 126 -89 126 c-88 0 -174 -152 -174 -265c0 -97 28 -124 88 -124c92 0 175 135 175 263'], + 0x1D750: [461,10,481,44,481,'481 461l-26 -140h-23c0 54 -6 103 -89 103c-73 0 -141 -88 -163 -161h188l-10 -44h-188c-7 -21 -10 -43 -10 -66c0 -79 40 -118 101 -118c67 0 113 36 152 79l18 -6c-30 -40 -89 -118 -223 -118c-116 0 -164 76 -164 158c0 150 128 313 283 313c70 0 76 -19 98 -19 c10 0 28 5 33 19h23'], + 0x1D751: [698,13,607,33,584,'584 241l-5 -31c-22 1 -45 2 -67 6c-41 -105 -104 -229 -234 -229c-87 0 -160 28 -160 128c0 35 11 72 16 107v4c0 10 -5 23 -17 23c-22 0 -51 -33 -64 -49l-20 18c31 47 93 99 152 99c47 0 66 -41 66 -82c0 -11 -2 -21 -4 -31c-9 -40 -19 -79 -19 -120 c0 -33 9 -68 50 -68c67 0 114 175 128 228c-104 50 -204 126 -204 252c0 115 76 202 194 202c32 0 66 -10 94 -26c67 -39 80 -119 80 -190c0 -78 -19 -155 -44 -228c19 -6 38 -11 58 -13zM454 541c0 40 -4 119 -60 119c-64 0 -80 -98 -80 -146c0 -83 46 -160 105 -215 c19 79 35 160 35 242'], + 0x1D752: [462,15,607,-12,630,'630 449l-154 -146c-12 -24 -23 -55 -33 -92c-9 -33 -13 -59 -13 -78c0 -24 12 -36 36 -36c20 0 36 -6 46 -18c8 -9 11 -20 11 -33c0 -17 -6 -32 -17 -43c-12 -12 -29 -18 -52 -18c-29 0 -51 12 -65 36c-11 18 -16 41 -16 69c0 55 13 105 39 153l-260 -243h-164l157 147 c12 24 23 55 33 91c9 33 13 58 13 76c0 24 -12 36 -36 36c-20 0 -35 6 -45 18c-8 9 -12 20 -12 33c0 17 6 31 17 42c12 12 30 19 52 19c29 0 51 -12 65 -36c11 -18 16 -42 16 -69c0 -52 -13 -102 -38 -150l256 242h164'], + 0x1D753: [685,205,683,44,655,'512 685l-51 -223c106 0 194 -55 194 -169c0 -44 -10 -87 -29 -127c-51 -109 -154 -169 -273 -176l-44 -195h-117l45 195c-110 8 -193 73 -193 188c0 44 12 87 32 126c54 102 155 158 269 158l50 223h117zM453 423l-90 -393c84 17 154 123 171 202c4 17 5 35 5 53 c0 55 -24 128 -86 138zM247 30l90 393c-103 -16 -177 -151 -177 -248c0 -59 21 -131 87 -145'], + 0x1D754: [462,205,585,44,563,'252 -205h-19c3 7 3 13 3 15c0 59 -192 76 -192 220c0 195 125 432 326 432c115 0 193 -55 193 -168c0 -159 -133 -304 -297 -304c-57 0 -101 18 -131 61l-5 -1c1 -109 150 -112 150 -184c0 -23 -3 -48 -28 -71zM448 297c0 91 -43 125 -89 125c-88 0 -174 -157 -174 -270 c0 -97 28 -122 88 -122c92 0 175 139 175 267'], + 0x1D755: [449,10,868,33,879,'879 449l-21 -91h-73c10 -22 15 -47 15 -75c0 -155 -123 -293 -244 -293c-57 0 -87 28 -104 65c-40 -47 -89 -65 -144 -65c-106 0 -151 84 -151 176c0 70 29 138 78 192h-36c-59 0 -108 -28 -143 -91h-23c23 81 84 182 248 182h598zM668 358h-312 c-54 -56 -83 -145 -83 -231c0 -48 24 -97 60 -97c31 0 69 27 87 87c-3 17 -6 39 -6 57c0 36 16 160 95 160c36 0 44 -33 44 -68c0 -59 -24 -96 -56 -144c-1 -5 -2 -13 -2 -18c0 -49 34 -74 66 -74c71 0 123 160 123 245c0 34 -5 61 -16 83'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Normal/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Normal/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Normal/Italic/Main.js new file mode 100644 index 0000000..a6cfd93 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Normal/Italic/Main.js @@ -0,0 +1,141 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Normal/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Normal-italic'] = { + directory: 'Normal/Italic', + family: 'STIXMathJax_Normal', + style: 'italic', + id: 'STIXWEBNORMALI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210E: [668,11,513,45,483,'469 106l14 -11c-29 -34 -78 -106 -133 -106c-18 0 -41 10 -41 42c0 12 1 26 64 267c2 7 7 29 7 44c0 19 -7 35 -24 35c-36 0 -102 -85 -134 -133c-34 -51 -62 -102 -67 -122l-32 -122h-78l152 600c1 4 2 7 2 10c0 13 -10 22 -31 22c-10 0 -21 -1 -29 -2l-2 14l159 24 l-109 -416h4c53 58 125 189 216 189c42 0 57 -34 57 -70c0 -22 -6 -43 -11 -64l-58 -230c-1 -5 -2 -7 -2 -10c0 -6 3 -14 13 -14c22 0 49 35 63 53'], + 0x1D434: [667,0,717,35,685,'685 0h-285v16h16c56 0 72 21 72 61c0 6 -1 14 -2 21l-13 113h-198l-84 -140c-7 -8 -10 -19 -10 -26c1 -18 17 -29 43 -29h29v-16h-218v16c35 4 72 16 108 74l356 577h18l78 -581c7 -49 32 -70 74 -70h16v-16zM466 248l-25 227h-6l-139 -227h170'], + 0x1D435: [653,0,696,38,686,'198 653h252c84 0 236 -9 236 -145c0 -78 -43 -123 -91 -147c-25 -13 -54 -21 -74 -26l3 -4c60 -11 127 -53 127 -138c0 -99 -82 -193 -289 -193h-324l4 16h20c76 0 95 29 103 63l123 495c1 5 2 15 2 21c0 26 -19 42 -78 42h-19zM406 611l-59 -252c20 -4 38 -6 53 -6 c112 0 168 66 168 163c0 77 -65 98 -119 98c-15 0 -30 -1 -43 -3zM338 314l-68 -267c25 -7 45 -9 71 -9c94 0 190 42 190 172c0 73 -64 108 -142 108c-16 0 -36 0 -51 -4'], + 0x1D436: [659,12,671,50,711,'711 659l-53 -223h-16c1 8 1 17 1 42c0 65 -31 144 -152 144c-201 0 -319 -201 -319 -372c0 -112 60 -214 195 -214c98 0 171 49 216 98c7 7 12 13 17 20l20 -13c-27 -41 -60 -71 -89 -92c-78 -55 -154 -61 -193 -61c-193 0 -288 131 -288 278c0 230 201 393 443 393 c54 0 106 -27 158 -27c11 0 27 2 42 27h18'], + 0x1D437: [653,0,790,38,765,'194 653h282c188 0 289 -103 289 -275c0 -211 -163 -378 -421 -378h-306l4 16h18c74 0 97 28 105 62l122 497c2 8 4 17 4 24c0 22 -18 37 -77 37h-25zM405 612l-122 -504c-5 -19 -5 -24 -5 -27c0 -41 60 -43 95 -43c192 0 271 184 271 325c0 115 -33 252 -180 252 c-20 0 -43 -1 -59 -3'], + 0x1D438: [653,0,714,38,734,'734 653l-42 -158h-16c1 13 2 24 2 35c-3 74 -58 87 -109 87h-160l-60 -248h80c60 0 104 13 126 95h16l-58 -242h-17c1 13 6 43 6 60c0 47 -41 51 -72 51h-90l-66 -258c-1 -4 -2 -7 -2 -10c0 -16 16 -27 63 -27h67c158 0 214 47 257 160h16l-66 -198h-571l4 16h19 c73 0 96 28 104 62l120 488c4 18 5 29 5 36c0 24 -16 35 -75 35h-19l4 16h534'], + 0x1D439: [653,0,618,38,723,'723 653l-40 -160h-16c1 8 1 22 1 36c-3 78 -63 87 -110 87h-147l-62 -248h83c62 0 108 10 129 95h16l-60 -242h-16c3 14 5 43 5 61c0 47 -41 50 -70 50h-97l-62 -254c-1 -6 -4 -14 -4 -21c0 -25 19 -41 79 -41h32l-4 -16h-342l4 16h18c76 0 97 28 106 62l124 497 c2 8 4 17 4 24c0 21 -16 39 -76 39h-19l4 15h520'], + 0x1D43A: [668,12,734,50,734,'734 329v-16c-85 0 -103 -26 -113 -62l-62 -216c-79 -47 -154 -47 -217 -47c-157 0 -292 75 -292 254c0 210 182 426 435 426c49 0 81 -9 103 -16c22 -6 41 -21 63 -21s40 21 43 37h16l-45 -223h-16c1 10 2 21 2 32c0 73 -47 154 -160 154c-229 0 -318 -248 -318 -427 c0 -82 34 -179 181 -179c41 0 70 8 97 25l57 201c2 8 3 18 3 25c0 22 -14 37 -75 37h-19l4 16h313'], + 0x1D43B: [653,0,873,38,923,'923 653l-4 -16h-18c-76 0 -97 -28 -106 -63l-123 -496c-2 -9 -4 -18 -4 -28c0 -21 19 -34 78 -34h19l-4 -16h-329l4 16h18c72 0 96 25 105 62l61 242h-280l-61 -242c-2 -6 -4 -16 -4 -24c0 -24 18 -38 77 -38h20l-4 -16h-330l4 16h18c75 0 98 28 106 62l123 496 c2 6 4 17 4 24c0 21 -16 39 -78 39h-20l4 16h330l-4 -16h-18c-79 0 -97 -28 -105 -63l-52 -217h278l53 217c2 10 4 17 4 24c0 24 -19 39 -76 39h-20l4 16h330'], + 0x1D43C: [653,0,480,38,530,'530 653l-4 -16h-19c-76 0 -97 -26 -106 -62l-123 -497c-2 -8 -3 -19 -3 -29c0 -21 19 -33 78 -33h17l-4 -16h-328l4 16h19c76 0 97 28 105 62l123 497c2 8 4 17 4 24c0 22 -17 38 -77 38h-18l4 16h328'], + 0x1D43D: [653,12,540,60,620,'620 653l-4 -16h-18c-74 0 -99 -27 -108 -63l-103 -413c-19 -75 -52 -118 -92 -145c-39 -25 -84 -28 -109 -28c-69 0 -126 37 -126 97c0 37 20 71 70 71c31 0 64 -20 64 -51c0 -32 -27 -32 -27 -59c0 -15 13 -21 24 -21c49 0 67 69 74 96c37 144 117 469 117 477 c0 24 -18 39 -75 39h-20l4 16h329'], + 0x1D43E: [653,0,762,38,802,'802 653l-4 -16c-51 0 -78 -20 -120 -53l-271 -211l187 -278c29 -43 62 -79 127 -79l-4 -16h-287l4 16h11c28 0 47 5 47 33c0 16 -8 22 -16 35l-156 237h-4l-62 -243c-2 -8 -3 -15 -3 -22c0 -24 19 -40 78 -40h17l-4 -16h-304l4 16h18c60 0 77 35 84 62l117 472 c7 27 10 28 10 49c0 22 -16 38 -76 38h-18l4 16h312l-4 -16h-11c-75 0 -88 -27 -97 -62l-53 -209h5l282 221c10 8 18 16 18 29c-1 14 -9 21 -51 21l4 16h216'], + 0x1D43F: [653,0,708,38,668,'668 190l-61 -190h-569l4 16h17c75 0 99 28 107 62l118 477c4 16 7 36 7 45c0 19 -14 37 -76 37h-18l4 16h327l-4 -16h-18c-75 0 -96 -26 -105 -63l-122 -481c-4 -15 -5 -29 -5 -31c0 -22 28 -24 40 -24h122c102 0 153 22 199 115c7 11 12 23 17 37h16'], + 0x1D440: [653,0,1005,38,1055,'1055 653l-4 -16h-17c-80 0 -96 -25 -105 -61l-127 -498c-2 -7 -2 -19 -2 -28c0 -19 19 -34 77 -34h19l-4 -16h-330l4 16h17c79 0 97 30 105 62l112 439h-6l-345 -517h-25l-94 517h-3l-109 -428c-3 -13 -5 -28 -5 -40c0 -21 17 -33 76 -33h20l-4 -16h-267l4 16h19 c79 0 98 33 108 73l119 475c4 17 5 29 5 38c0 20 -15 35 -77 35h-19l4 16h213l89 -493h4l333 493h215'], + 0x1D441: [653,0,851,38,901,'901 653l-4 -16h-18c-75 0 -98 -26 -107 -63l-144 -574h-24l-274 526h-6l-108 -448c-2 -8 -3 -16 -3 -27c0 -20 17 -35 76 -35h19l-4 -16h-266l4 16h18c75 0 98 28 106 62l126 509c-19 43 -62 50 -92 50h-19l4 16h200l236 -465h5l97 386c2 9 4 16 4 26 c0 20 -17 37 -76 37h-20l4 16h266'], + 0x1D442: [669,11,732,50,712,'712 420c0 -198 -156 -431 -409 -431c-149 0 -253 96 -253 233c0 203 158 447 413 447c167 0 249 -123 249 -249zM596 443c0 107 -40 189 -141 189c-232 0 -284 -313 -284 -455c0 -97 62 -150 140 -150c212 0 285 275 285 416'], + 0x1D443: [653,0,594,38,704,'201 653h271c170 0 232 -86 232 -160c0 -98 -81 -199 -285 -199c-28 0 -50 1 -74 5c-5 0 -8 1 -12 2l-56 -223c-2 -8 -3 -15 -3 -23c0 -24 18 -39 77 -39h32l-4 -16h-341l4 16h17c77 0 97 28 106 62l125 497c2 8 4 17 4 25c0 21 -17 37 -78 37h-19zM411 613l-68 -274 c16 -4 40 -8 60 -8c102 0 182 70 182 172c0 60 -30 113 -125 113c-17 0 -32 -1 -49 -3'], + 0x1D444: [667,152,781,50,731,'83 -115l164 107c-114 17 -197 98 -197 230c0 204 188 445 442 445c146 0 239 -92 239 -247c0 -204 -188 -430 -433 -430l-64 -43l4 -5c16 3 30 4 43 4c65 0 158 -34 245 -34c39 0 86 13 136 66l13 -11c-59 -73 -129 -119 -247 -119c-53 0 -105 8 -142 16 c-50 11 -104 27 -134 27c-8 0 -31 -5 -58 -18zM612 467c0 132 -65 163 -130 163c-222 0 -312 -316 -312 -454c0 -97 51 -149 131 -149c217 0 311 283 311 440'], + 0x1D445: [653,0,740,38,725,'725 16l-2 -16h-169l-150 315c-10 -1 -21 -2 -29 -2c-14 0 -24 2 -38 4l-62 -239c-2 -8 -3 -15 -3 -23c0 -24 18 -39 76 -39h19l-4 -16h-325l4 16h16c76 0 96 28 105 62l124 497c2 8 5 17 5 25c0 21 -17 37 -77 37h-20l4 16h271c160 0 216 -66 216 -151 c0 -83 -71 -150 -178 -171l115 -229c19 -39 45 -81 102 -86zM410 613l-64 -260c13 -3 23 -4 32 -4c133 0 191 58 191 142c0 108 -62 125 -125 125c-14 0 -23 -1 -34 -3'], + 0x1D446: [668,10,650,50,680,'680 668l-53 -221h-16c1 8 1 16 1 24c0 84 -48 160 -160 160c-43 0 -121 -26 -121 -97c0 -69 61 -111 117 -159c59 -49 118 -107 118 -194c0 -99 -87 -191 -244 -191c-94 0 -125 38 -201 38c-25 0 -39 -11 -55 -38h-16l60 236h16c0 -10 1 -21 1 -31 c3 -79 40 -167 171 -167c127 0 156 71 156 136c0 35 -18 68 -46 96c-30 31 -78 67 -114 102c-28 28 -73 82 -73 131c0 81 65 175 223 175c83 0 140 -37 183 -37c20 0 34 22 37 37h16'], + 0x1D447: [653,0,550,25,670,'670 653l-46 -179h-16c2 17 5 44 5 71c0 66 -58 71 -99 71h-98l-133 -538c-2 -9 -5 -16 -5 -25c0 -21 16 -37 76 -37h21l-4 -16h-329l4 16h18c78 0 98 28 106 62l133 538h-91c-83 0 -153 -61 -171 -142h-16l46 179h599'], + 0x1D448: [653,13,705,65,775,'775 653l-4 -16h-16c-75 0 -98 -27 -107 -63l-87 -356c-26 -106 -82 -231 -272 -231c-160 0 -222 96 -222 187c0 8 12 86 14 95l76 330c1 2 1 5 1 7c0 20 -21 31 -75 31h-18l4 16h328l-4 -16h-17c-79 0 -97 -27 -106 -63l-90 -360c-4 -15 -7 -51 -7 -68 c0 -54 47 -112 144 -112c111 0 169 81 195 189l86 351c2 7 4 15 4 26c-1 23 -17 37 -75 37h-19l4 16h263'], + 0x1D449: [653,16,575,60,760,'760 653l-4 -16c-65 -4 -106 -43 -132 -77l-441 -576h-24v571c0 58 -38 82 -99 82l4 16h294l-4 -16h-19c-65 0 -70 -37 -70 -70v-391l4 -1l280 366c19 24 38 53 38 74c0 15 -14 22 -52 22h-20l4 16h241'], + 0x1D44A: [653,16,916,60,1101,'1101 653l-4 -16c-66 -3 -109 -44 -134 -77l-438 -576h-29v442h-11l-297 -442h-29v569c0 55 -33 84 -89 84h-10l4 16h288l-4 -16h-7c-39 0 -76 0 -76 -71v-377h5l226 332v61c0 31 -19 55 -82 55h-8l4 16h285l-4 -16h-18c-62 0 -71 -37 -71 -72v-395h6l278 370 c17 22 40 53 40 72c0 16 -13 25 -54 25h-17l4 16h242'], + 0x1D44B: [653,0,790,25,810,'810 653l-4 -16h-4c-69 0 -98 -32 -135 -74l-187 -213l96 -266c12 -34 29 -68 79 -68h14l-4 -16h-281l4 16h11c38 0 67 4 67 41c0 8 -1 16 -4 26l-69 194l-181 -201c-9 -10 -12 -19 -12 -28c0 -19 18 -32 56 -32h22l-4 -16h-249l4 16c54 7 103 37 140 77l208 230l-85 231 c-11 31 -28 83 -102 83h-9l4 16h283l-4 -16h-19c-30 0 -52 -4 -52 -35c0 -8 2 -17 6 -28l60 -179l164 184c9 11 15 23 15 34c-1 16 -13 24 -45 24h-9l4 16h222'], + 0x1D44C: [653,0,535,35,695,'695 653l-4 -16c-55 -4 -93 -31 -124 -69l-209 -256l-59 -234c-2 -9 -3 -15 -3 -26c0 -21 18 -36 76 -36h20l-4 -16h-328l4 16h17c77 0 97 28 105 62l61 246l-89 237c-17 45 -46 76 -123 76l4 16h299l-4 -16h-19c-50 0 -58 -15 -58 -40c0 -9 5 -20 7 -27l75 -207h4 l174 212c12 15 16 23 16 34c0 19 -21 28 -79 28l4 16h237'], + 0x1D44D: [653,0,772,60,802,'802 653l-566 -615h218c94 0 182 11 217 140h16l-46 -178h-581l573 616h-202c-96 0 -185 -6 -223 -121h-17l48 158h563'], + 0x1D44E: [441,10,502,40,472,'472 428l-91 -345s-1 -2 -1 -11c0 -11 6 -17 14 -17c10 0 25 2 64 54l12 -12c-31 -47 -85 -107 -133 -107c-33 0 -42 23 -42 55c0 13 6 34 11 50h-4c-72 -92 -134 -105 -173 -105c-63 0 -89 55 -89 119c0 132 132 332 276 332c43 0 64 -24 66 -46h1l9 33h80zM367 341 c0 41 -12 71 -50 71c-68 0 -128 -87 -162 -171c-18 -45 -28 -89 -28 -124c0 -53 31 -66 58 -66c69 0 139 95 167 190c8 26 15 66 15 100'], + 0x1D44F: [668,11,470,45,450,'214 382l4 -4c33 32 72 63 121 63c70 0 111 -69 111 -151c0 -121 -109 -301 -266 -301c-53 0 -94 18 -139 48l144 563c1 4 2 8 2 11c-1 13 -16 21 -29 21c-10 0 -22 -1 -30 -4l-3 16l158 24zM179 252l-55 -215c0 -7 32 -19 55 -19c122 0 188 174 188 276 c0 70 -38 92 -71 92c-72 0 -106 -89 -117 -134'], + 0x1D450: [441,11,415,40,400,'363 111l12 -13c-51 -60 -113 -109 -198 -109c-97 0 -137 78 -137 155c0 140 121 297 263 297c50 0 97 -27 97 -76c0 -38 -16 -70 -54 -70c-26 0 -38 21 -38 38c0 24 29 36 29 58c0 12 -10 21 -34 21c-119 0 -176 -179 -176 -259c0 -87 49 -109 94 -109 c61 0 107 33 142 67'], + 0x1D451: [668,12,532,40,527,'527 668l-149 -598c-1 -3 -2 -9 -2 -12c0 -6 5 -9 15 -9c20 0 48 35 62 56l11 -12c-30 -45 -83 -105 -130 -105c-32 0 -40 23 -40 41c0 20 2 34 10 64h-5c-74 -93 -134 -105 -171 -105c-73 0 -88 74 -88 127c0 103 103 326 257 326c57 0 80 -26 81 -50h2l53 209 c1 4 2 8 2 12c0 13 -7 20 -33 20c-9 0 -20 -2 -27 -3l-4 15zM363 340c0 47 -15 71 -56 71c-99 0 -180 -200 -180 -296c0 -49 28 -66 56 -66c70 0 136 94 164 186c11 35 16 74 16 105'], + 0x1D452: [441,11,445,40,410,'363 112l14 -13c-70 -86 -138 -110 -200 -110c-98 0 -137 84 -137 156c0 23 1 37 6 60c25 111 135 236 262 236c42 0 102 -14 102 -76c0 -127 -167 -176 -286 -182v-28c0 -64 52 -107 113 -107c42 0 90 18 126 64zM124 211h9c104 0 198 69 198 157c0 25 -19 43 -44 43 c-74 0 -134 -115 -163 -200'], + 0x1D453: [668,187,555,40,615,'248 437h37c63 0 58 77 101 141c31 47 74 90 150 90c50 0 79 -24 79 -59c0 -28 -21 -40 -41 -40c-28 0 -35 11 -35 25s9 29 9 37c0 5 -3 8 -15 8c-50 0 -89 -54 -110 -132l-19 -70h80l-12 -38h-76l-79 -306c-7 -27 -15 -65 -30 -102c-33 -83 -87 -178 -175 -178 c-48 0 -72 24 -72 54c0 24 14 49 43 49c27 0 37 -18 37 -33c0 -19 -16 -20 -16 -32c0 -6 6 -9 15 -9c65 0 95 158 110 215l87 342h-77'], + 0x1D454: [441,187,492,20,492,'492 413l-13 -45h-81c13 -15 17 -28 17 -50c0 -75 -53 -137 -141 -148c-59 -8 -88 -33 -88 -58c0 -63 233 -23 233 -148c0 -71 -66 -151 -215 -151c-134 0 -184 57 -184 115s55 88 117 108c-17 11 -24 30 -24 47c0 38 37 87 85 87v4c-67 15 -94 62 -94 109 c0 79 68 158 174 158c42 0 73 -13 88 -28h126zM336 349c0 37 -10 62 -54 62c-54 0 -98 -71 -98 -139c0 -46 12 -81 56 -81c71 0 96 102 96 158zM349 -69c0 78 -132 73 -192 95c-8 -5 -18 -10 -26 -16c-26 -19 -48 -45 -48 -72c0 -47 44 -97 139 -97c91 0 127 46 127 90'], + 0x1D456: [616,11,311,50,257,'257 566c0 -26 -22 -46 -48 -46c-29 0 -48 20 -48 46c0 25 19 50 48 50c26 0 48 -25 48 -50zM227 441l-92 -364c-1 -6 -1 -10 -1 -14c0 -7 6 -10 13 -10c22 0 28 12 64 51l13 -10c-35 -45 -85 -105 -134 -105c-28 0 -40 19 -40 46c0 12 0 31 79 338c1 2 2 9 2 12 c0 17 -8 22 -31 22c-9 0 -21 -2 -28 -4l-3 16'], + 0x1D457: [616,187,389,-16,372,'372 566c0 -26 -22 -46 -48 -46c-29 0 -48 20 -48 46c0 25 19 50 48 50c26 0 48 -25 48 -50zM351 441l-108 -425c-22 -88 -78 -203 -186 -203c-53 0 -73 33 -73 61c0 22 12 52 47 52c19 0 35 -15 35 -38c0 -15 -16 -18 -16 -34c0 -4 5 -10 10 -10c46 0 79 76 103 172 l92 363c0 12 -10 22 -32 22c-8 0 -20 -2 -27 -5l-3 17'], + 0x1D458: [668,11,542,45,527,'527 428l-4 -12c-67 -7 -95 -25 -133 -58l-106 -92l64 -152c15 -35 27 -59 53 -59c30 0 52 43 74 73l15 -11c-12 -21 -59 -128 -127 -128c-46 0 -67 53 -78 79l-63 147l-56 -49l-45 -166h-76l148 589c2 6 3 13 3 20c0 11 -10 22 -32 22c-9 0 -19 0 -27 -2l-3 14l158 25 l-113 -456l167 149c11 10 21 23 21 36c0 12 -16 19 -26 19h-12l4 12h194'], + 0x1D459: [668,10,318,45,278,'278 668l-148 -591s-1 -4 -1 -11s4 -13 12 -13c23 0 53 39 62 55l16 -12c-34 -40 -77 -106 -135 -106c-30 0 -39 26 -39 51c0 12 3 26 6 36l128 510c3 13 3 21 3 24c0 12 -8 22 -31 22c-7 0 -19 -2 -27 -3l-3 15'], + 0x1D45A: [441,8,710,30,680,'667 107l13 -11c-32 -54 -84 -104 -131 -104c-22 0 -39 10 -39 49c0 7 1 17 6 37l56 221c4 14 6 23 6 40c0 20 -6 38 -24 38c-54 0 -164 -181 -179 -242l-34 -135h-79l77 299c2 9 5 25 5 40c0 20 -5 38 -23 38c-52 0 -162 -181 -178 -242l-35 -135h-78l95 374 c0 18 -6 31 -33 31c-8 0 -19 -1 -27 -2l-2 14l157 24l-44 -169h6c94 143 154 169 192 169c37 0 55 -37 55 -81c0 -17 -3 -32 -9 -52l-10 -36h5c29 52 81 114 130 147c22 15 41 22 61 22c36 0 54 -26 54 -71c0 -18 -1 -37 -7 -61l-61 -231c-1 -3 -2 -9 -2 -12 c0 -8 6 -12 15 -12c17 0 43 16 62 53'], + 0x1D45B: [441,8,497,30,467,'467 96l-5 -6c-28 -34 -76 -98 -128 -98c-32 0 -41 23 -41 46c0 13 4 29 7 40l57 221c2 8 7 28 7 42c0 19 -6 38 -24 38c-38 0 -101 -86 -132 -133c-36 -54 -62 -101 -68 -122l-33 -124h-77l95 374c0 18 -3 32 -30 32c-10 0 -21 -2 -28 -3l-2 15l159 23l-51 -189h3 c5 0 54 70 56 73c40 50 100 116 160 116c44 0 56 -29 56 -62c0 -25 -6 -50 -11 -70l-59 -231c-1 -2 -1 -5 -1 -10c1 -6 4 -14 15 -14c24 0 48 36 62 53'], + 0x1D45C: [441,11,458,40,438,'438 287c0 -139 -110 -298 -263 -298c-101 0 -135 90 -135 163c0 128 103 289 251 289c80 0 147 -46 147 -154zM357 318c0 38 -14 93 -67 93c-82 0 -169 -149 -169 -285c0 -33 3 -107 59 -107c106 0 177 223 177 299'], + 0x1D45D: [441,183,489,-30,474,'253 370l14 13c39 37 78 58 113 58c61 0 94 -54 94 -155c0 -129 -110 -298 -254 -298c-24 0 -42 4 -61 19l-24 -100c-3 -13 -5 -24 -5 -35c0 -22 11 -43 61 -43h16l-3 -12h-234l3 12c62 3 69 33 81 79l117 464c0 19 -1 33 -31 33c-8 0 -20 -2 -28 -4l-2 16l158 24 l-18 -69zM214 238l-46 -200c14 -16 34 -21 46 -21c101 0 176 173 176 285c0 63 -28 83 -51 83c-53 0 -105 -61 -125 -147'], + 0x1D45E: [441,183,458,40,463,'463 428l-131 -522c-3 -10 -3 -20 -3 -29c0 -30 19 -48 49 -48h14l-3 -12h-250l3 12h19c68 0 84 41 93 78l44 184h-6c-67 -93 -127 -103 -163 -103c-64 0 -89 58 -89 115c0 123 80 246 169 304c31 21 63 34 91 34c48 0 70 -26 72 -52h3l7 39h81zM358 338 c0 43 -13 74 -49 74c-21 0 -41 -11 -61 -27c-64 -52 -123 -185 -123 -273c0 -27 9 -63 52 -63c17 0 40 4 58 17c63 45 123 159 123 272'], + 0x1D45F: [441,0,408,30,393,'175 267l5 -1c9 18 21 38 32 56c34 54 82 119 137 119c29 0 44 -21 44 -48c0 -38 -24 -82 -65 -82c-39 0 -29 38 -47 38c-61 0 -148 -256 -153 -273l-21 -76h-77l92 364c3 11 4 18 4 23c0 13 -11 19 -33 19c-7 0 -21 -2 -27 -3l-2 15l157 23'], + 0x1D460: [441,11,440,50,390,'390 441l-24 -146h-15c0 64 -36 120 -92 120c-25 0 -51 -17 -51 -58c0 -55 134 -147 134 -242c0 -62 -48 -125 -135 -125c-34 0 -98 20 -110 20c-9 0 -18 -4 -30 -21h-17l25 156h16c0 -63 41 -130 104 -130c59 0 73 50 73 89c0 82 -130 132 -130 230c0 79 59 107 114 107 c43 0 63 -20 92 -20c11 0 22 10 30 20h16'], + 0x1D461: [567,9,313,40,283,'283 438l-10 -38h-70l-78 -320c-1 -3 -2 -8 -2 -11c0 -6 3 -12 16 -12c0 0 23 2 60 52l13 -11c-24 -31 -74 -107 -133 -107c-31 0 -39 25 -39 52c0 13 2 26 5 37l81 320h-77l5 29c75 14 136 51 177 138h13l-31 -129h70'], + 0x1D462: [441,9,474,30,444,'444 428l-89 -348c-1 -4 -1 -6 -1 -9c0 -8 4 -14 14 -14c21 0 40 26 57 46l5 6l13 -11c-23 -33 -74 -107 -132 -107c-29 0 -40 19 -40 52c0 9 1 25 4 37l26 95h-1c-7 -5 -97 -126 -137 -156c-23 -17 -49 -28 -72 -28c-47 0 -61 36 -61 74c0 21 3 40 8 59l59 231 c4 15 6 21 6 25c0 12 -11 23 -33 23c-7 0 -19 -1 -26 -3l-3 15l157 26l-84 -326c-2 -9 -3 -16 -3 -24c0 -21 8 -34 26 -34c25 0 65 31 100 77c43 57 89 146 109 219l21 75h77'], + 0x1D463: [458,9,506,72,479,'247 454l-89 -326c-3 -10 -4 -21 -4 -32c0 -38 20 -66 60 -66c108 0 178 113 210 203c8 24 15 49 15 74c0 74 -61 65 -61 109c0 34 25 42 54 42c42 0 47 -51 47 -83c0 -99 -39 -200 -97 -280c-43 -60 -120 -104 -194 -104c-64 0 -116 20 -116 93c0 21 3 42 9 62l58 210 c2 8 5 17 5 25c0 20 -44 20 -57 20v15c52 13 106 20 156 42'], + 0x1D464: [460,9,775,72,748,'531 450l-80 -289c-6 -23 -12 -46 -12 -70c0 -39 19 -61 59 -61c108 0 164 115 195 203c8 24 15 49 15 74c0 74 -59 66 -61 109c-2 36 30 42 54 42c42 0 47 -51 47 -83c0 -146 -105 -384 -276 -384c-69 0 -111 28 -111 100c0 42 12 85 23 125 c-40 -89 -122 -225 -234 -225c-56 0 -78 34 -78 87c0 33 11 64 19 95l47 177c3 9 5 19 5 29c0 24 -38 22 -54 22v15c53 9 105 23 155 44l4 -3l-81 -307c-3 -13 -11 -45 -11 -73c0 -26 6 -47 28 -47c58 1 129 114 153 151c53 81 79 159 110 269h84'], + 0x1D465: [441,9,550,30,510,'305 288l45 69c26 40 61 84 111 84c32 0 49 -12 49 -33c0 -19 -13 -42 -39 -42c-22 0 -27 9 -44 9c-30 0 -41 -16 -55 -38l-55 -85c30 -62 53 -197 98 -197c16 0 40 14 61 57l14 -10c-12 -15 -57 -111 -115 -111c-41 0 -60 41 -73 77l-40 113l-63 -98 c-32 -49 -61 -92 -117 -92c-36 0 -52 25 -52 47c0 16 13 37 38 37c26 0 22 -20 47 -20c12 0 38 10 70 59l65 101l-33 92c-17 48 -43 89 -98 89c-13 0 -28 -2 -38 -6l-3 18l132 33c44 -24 63 -65 75 -98'], + 0x1D466: [440,183,496,30,496,'270 307l28 -235c61 83 96 143 118 184c20 37 28 57 28 75c0 21 -52 31 -52 69c0 22 18 40 47 40c32 0 57 -23 57 -62c0 -78 -162 -318 -204 -371c-73 -92 -138 -190 -206 -190c-37 0 -56 31 -56 55c0 30 27 41 40 41c43 0 41 -31 57 -31c17 0 74 62 100 102l-38 314 c-5 45 -14 105 -70 105c-11 0 -27 -3 -36 -4l-2 16l150 25c23 -33 30 -59 39 -133'], + 0x1D467: [450,14,499,42,467,'467 450v-16l-322 -360l3 -1c19 14 44 21 67 21c92 0 95 -86 140 -86c15 0 27 8 27 24c0 13 -12 16 -12 38c0 19 19 38 38 38c25 0 40 -18 40 -42c0 -54 -60 -80 -106 -80c-22 0 -47 9 -68 14c-32 9 -66 14 -99 14c-40 0 -85 -8 -122 -24l-11 10l328 370h-131 c-57 0 -81 -6 -104 -61l-18 4l36 137h314'], + 0x1D6A4: [441,11,278,47,235,'221 115l14 -12c-53 -82 -87 -114 -138 -114c-30 0 -50 19 -50 57c0 20 8 50 24 110l48 175c5 19 9 37 9 45c0 20 -9 23 -63 24v16c39 3 58 6 159 25l5 -3l-96 -342c-5 -19 -9 -35 -9 -45c0 -8 6 -15 16 -15c17 0 38 22 81 79'], + 0x1D6A5: [441,207,278,-124,246,'246 438l-104 -410c-41 -162 -100 -235 -187 -235c-46 0 -79 25 -79 61c0 24 18 44 41 44c27 0 39 -16 39 -37c0 -22 -12 -19 -12 -34c0 -7 6 -12 18 -12c40 0 63 44 97 182l72 292c12 49 16 70 16 80c0 22 -12 31 -48 31h-26v16c32 2 85 10 169 25'], + 0x1D6E2: [667,0,717,35,685,'685 0h-285v16h16c56 0 72 21 72 61c0 6 -1 14 -2 21l-13 113h-198l-84 -140c-7 -8 -10 -19 -10 -26c1 -18 17 -29 43 -29h29v-16h-218v16c35 4 72 16 108 74l356 577h18l78 -581c7 -49 32 -70 74 -70h16v-16zM466 248l-25 227h-6l-139 -227h170'], + 0x1D6E3: [653,0,696,38,686,'198 653h252c84 0 236 -9 236 -145c0 -78 -43 -123 -91 -147c-25 -13 -54 -21 -74 -26l3 -4c60 -11 127 -53 127 -138c0 -99 -82 -193 -289 -193h-324l4 16h20c76 0 95 29 103 63l123 495c1 5 2 15 2 21c0 26 -19 42 -78 42h-19zM406 611l-59 -252c20 -4 38 -6 53 -6 c112 0 168 66 168 163c0 77 -65 98 -119 98c-15 0 -30 -1 -43 -3zM338 314l-68 -267c25 -7 45 -9 71 -9c94 0 190 42 190 172c0 73 -64 108 -142 108c-16 0 -36 0 -51 -4'], + 0x1D6E4: [653,0,616,38,721,'721 653l-39 -175h-17c1 9 5 36 5 50c-1 78 -68 88 -114 88h-146l-133 -538c-2 -9 -4 -17 -4 -24c0 -26 23 -38 79 -38h32l-4 -16h-342l4 16h18c77 0 97 28 105 62l123 497c2 8 4 17 4 24c0 21 -16 39 -76 39h-19l4 15h520'], + 0x1D6E5: [667,0,596,30,556,'556 0h-526l412 667h19zM429 82l-45 393h-6l-241 -393h292'], + 0x1D6E6: [653,0,714,38,734,'734 653l-42 -158h-16c1 13 2 24 2 35c-3 74 -58 87 -109 87h-160l-60 -248h80c60 0 104 13 126 95h16l-58 -242h-17c1 13 6 43 6 60c0 47 -41 51 -72 51h-90l-66 -258c-1 -4 -2 -7 -2 -10c0 -16 16 -27 63 -27h67c158 0 214 47 257 160h16l-66 -198h-571l4 16h19 c73 0 96 28 104 62l120 488c4 18 5 29 5 36c0 24 -16 35 -75 35h-19l4 16h534'], + 0x1D6E7: [653,0,772,60,802,'802 653l-566 -615h218c94 0 182 11 217 140h16l-46 -178h-581l573 616h-202c-96 0 -185 -6 -223 -121h-17l48 158h563'], + 0x1D6E8: [653,0,873,38,923,'923 653l-4 -16h-18c-76 0 -97 -28 -106 -63l-123 -496c-2 -9 -4 -18 -4 -28c0 -21 19 -34 78 -34h19l-4 -16h-329l4 16h18c72 0 96 25 105 62l61 242h-280l-61 -242c-2 -6 -4 -16 -4 -24c0 -24 18 -38 77 -38h20l-4 -16h-330l4 16h18c75 0 98 28 106 62l123 496 c2 6 4 17 4 24c0 21 -16 39 -78 39h-20l4 16h330l-4 -16h-18c-79 0 -97 -28 -105 -63l-52 -217h278l53 217c2 10 4 17 4 24c0 24 -19 39 -76 39h-20l4 16h330'], + 0x1D6E9: [669,11,737,50,712,'520 425h16c-19 -49 -30 -106 -30 -163v-27h-16c-1 41 -16 57 -51 57h-117c-37 0 -53 -13 -74 -57h-16c20 50 30 113 30 176v14h16c8 -45 18 -57 56 -57h118c33 0 55 20 68 57zM712 395c0 -190 -167 -406 -410 -406c-149 0 -252 95 -252 233c0 203 157 447 412 447 c182 0 250 -136 250 -274zM596 444c0 106 -40 188 -142 188c-233 0 -283 -315 -283 -456c0 -99 61 -149 139 -149c211 0 286 265 286 417'], + 0x1D6EA: [653,0,480,38,530,'530 653l-4 -16h-19c-76 0 -97 -26 -106 -62l-123 -497c-2 -8 -3 -19 -3 -29c0 -21 19 -33 78 -33h17l-4 -16h-328l4 16h19c76 0 97 28 105 62l123 497c2 8 4 17 4 24c0 22 -17 38 -77 38h-18l4 16h328'], + 0x1D6EB: [653,0,762,38,802,'802 653l-4 -16c-51 0 -78 -20 -120 -53l-271 -211l187 -278c29 -43 62 -79 127 -79l-4 -16h-287l4 16h11c28 0 47 5 47 33c0 16 -8 22 -16 35l-156 237h-4l-62 -243c-2 -8 -3 -15 -3 -22c0 -24 19 -40 78 -40h17l-4 -16h-304l4 16h18c60 0 77 35 84 62l117 472 c7 27 10 28 10 49c0 22 -16 38 -76 38h-18l4 16h312l-4 -16h-11c-75 0 -88 -27 -97 -62l-53 -209h5l282 221c10 8 18 16 18 29c-1 14 -9 21 -51 21l4 16h216'], + 0x1D6EC: [667,0,718,35,686,'686 0h-287l2 16h15c54 0 70 25 70 61c0 7 0 14 -1 21l-44 378h-5l-245 -405c-6 -9 -10 -18 -10 -26c0 -18 17 -29 43 -29h29v-16h-218v16c35 4 72 16 108 74l357 577h17l78 -569c9 -64 33 -82 74 -82h17v-16'], + 0x1D6ED: [653,0,1005,38,1055,'1055 653l-4 -16h-17c-80 0 -96 -25 -105 -61l-127 -498c-2 -7 -2 -19 -2 -28c0 -19 19 -34 77 -34h19l-4 -16h-330l4 16h17c79 0 97 30 105 62l112 439h-6l-345 -517h-25l-94 517h-3l-109 -428c-3 -13 -5 -28 -5 -40c0 -21 17 -33 76 -33h20l-4 -16h-267l4 16h19 c79 0 98 33 108 73l119 475c4 17 5 29 5 38c0 20 -15 35 -77 35h-19l4 16h213l89 -493h4l333 493h215'], + 0x1D6EE: [653,0,851,38,901,'901 653l-4 -16h-18c-75 0 -98 -26 -107 -63l-144 -574h-24l-274 526h-6l-108 -448c-2 -8 -3 -16 -3 -27c0 -20 17 -35 76 -35h19l-4 -16h-266l4 16h18c75 0 98 28 106 62l126 509c-19 43 -62 50 -92 50h-19l4 16h200l236 -465h5l97 386c2 9 4 16 4 26 c0 20 -17 37 -76 37h-20l4 16h266'], + 0x1D6EF: [653,0,706,52,741,'741 653l-35 -152h-16c3 13 3 24 3 33c0 43 -29 43 -70 43h-299c-52 0 -81 -20 -96 -76h-16l37 152h492zM609 450l-52 -209h-15c2 18 2 26 2 26c0 25 -17 41 -39 41h-185c-39 0 -68 -35 -79 -67h-16l52 209h16c-1 -5 -3 -19 -3 -25c0 -35 26 -41 63 -41h145 c71 0 82 20 95 66h16zM629 158l-40 -158h-537l40 158h13v-14v-21c0 -35 28 -41 65 -41h339c58 0 79 1 104 76h16'], + 0x1D6F0: [669,11,732,50,712,'712 420c0 -198 -156 -431 -409 -431c-149 0 -253 96 -253 233c0 203 158 447 413 447c167 0 249 -123 249 -249zM596 443c0 107 -40 189 -141 189c-232 0 -284 -313 -284 -455c0 -97 62 -150 140 -150c212 0 285 275 285 416'], + 0x1D6F1: [653,0,873,38,923,'923 653l-4 -16h-19c-76 0 -96 -25 -105 -61l-123 -498c-2 -7 -3 -19 -3 -27c0 -23 16 -35 77 -35h20l-4 -16h-331l4 16h18c74 0 95 17 106 62l132 538h-278l-133 -538c-2 -10 -3 -18 -3 -26c0 -31 26 -36 75 -36h19l-4 -16h-329l4 16h18c71 0 97 25 106 62l122 498 c2 8 3 16 3 24c0 24 -17 37 -76 37h-20l4 16h724'], + 0x1D6F2: [653,0,594,38,704,'201 653h271c170 0 232 -86 232 -160c0 -98 -81 -199 -285 -199c-28 0 -50 1 -74 5c-5 0 -8 1 -12 2l-56 -223c-2 -8 -3 -15 -3 -23c0 -24 18 -39 77 -39h32l-4 -16h-341l4 16h17c77 0 97 28 106 62l125 497c2 8 4 17 4 25c0 21 -17 37 -78 37h-19zM411 613l-68 -274 c16 -4 40 -8 60 -8c102 0 182 70 182 172c0 60 -30 113 -125 113c-17 0 -32 -1 -49 -3'], + 0x1D6F3: [669,11,737,50,712,'712 395c0 -190 -167 -406 -410 -406c-149 0 -252 95 -252 233c0 203 157 447 412 447c182 0 250 -136 250 -274zM195 368h395c4 27 6 53 6 76c0 106 -40 188 -142 188c-151 0 -225 -133 -259 -264zM575 292h-395c-7 -44 -9 -85 -9 -116c0 -99 61 -149 139 -149 c149 0 231 133 265 265'], + 0x1D6F4: [653,0,735,58,760,'760 653l-40 -159h-16c3 7 3 19 3 29c0 91 -65 93 -129 93h-205l161 -255l-317 -279h315c77 0 123 34 159 109h16l-83 -191h-566l378 327l-210 326h534'], + 0x1D6F5: [653,0,550,25,670,'670 653l-46 -179h-16c2 17 5 44 5 71c0 66 -58 71 -99 71h-98l-133 -538c-2 -9 -5 -16 -5 -25c0 -21 16 -37 76 -37h21l-4 -16h-329l4 16h18c78 0 98 28 106 62l133 538h-91c-83 0 -153 -61 -171 -142h-16l46 179h599'], + 0x1D6F6: [668,0,613,28,743,'743 604l-16 -8c-9 19 -32 29 -52 29c-43 0 -101 -64 -127 -95l-178 -215l-59 -237c-2 -8 -4 -17 -4 -26c0 -35 52 -36 77 -36h21l-4 -16h-328l4 16c53 0 106 0 121 62l60 245l-74 203c-6 16 -22 49 -33 61c-16 18 -39 24 -62 24c-19 0 -36 -4 -53 -11l-8 17 c9 11 59 38 74 43c13 4 30 8 43 8c99 0 125 -76 152 -155l53 -153l188 224c35 41 75 81 133 81c41 0 64 -21 72 -61'], + 0x1D6F7: [653,0,772,25,747,'508 578l-9 -31c120 0 248 -49 248 -176c0 -194 -219 -276 -343 -276h-19l-7 -31c-1 -5 -2 -11 -2 -15c0 -24 22 -33 73 -33h26l-4 -16h-330l3 16c87 0 111 13 129 79h-13c-160 0 -235 78 -235 158c0 211 198 294 361 294c8 23 10 43 10 51c0 24 -18 39 -75 39h-19l4 16 h321l-4 -16h-16c-72 0 -91 -31 -99 -59zM490 510l-95 -377c112 0 233 80 233 241c0 71 -41 136 -138 136zM283 133l93 377c-133 0 -232 -145 -232 -256c0 -65 42 -121 139 -121'], + 0x1D6F8: [653,0,790,25,810,'810 653l-4 -16h-4c-69 0 -98 -32 -135 -74l-187 -213l96 -266c12 -34 29 -68 79 -68h14l-4 -16h-281l4 16h11c38 0 67 4 67 41c0 8 -1 16 -4 26l-69 194l-181 -201c-9 -10 -12 -19 -12 -28c0 -19 18 -32 56 -32h22l-4 -16h-249l4 16c54 7 103 37 140 77l208 230l-85 231 c-11 31 -28 83 -102 83h-9l4 16h283l-4 -16h-19c-30 0 -52 -4 -52 -35c0 -8 2 -17 6 -28l60 -179l164 184c9 11 15 23 15 34c-1 16 -13 24 -45 24h-9l4 16h222'], + 0x1D6F9: [667,0,670,28,743,'743 667l-4 -16c-27 -6 -45 -26 -55 -51c-5 -13 -8 -27 -11 -41c-9 -42 -18 -85 -37 -124c-59 -124 -155 -165 -288 -165l-43 -181c-3 -14 -8 -28 -8 -43c0 -27 46 -31 77 -31c8 0 16 0 21 1l-4 -16h-328l4 16c70 0 108 -4 126 73l42 181c-91 0 -203 34 -203 143 c0 63 34 121 34 184c0 25 -10 51 -38 54l4 16h18c66 0 112 -50 112 -115c0 -62 -41 -114 -41 -176c0 -64 76 -69 124 -69l54 218c6 25 17 64 17 77c0 38 -69 34 -94 35l4 16h321l-4 -16c-45 0 -103 -3 -116 -56l-68 -274c111 0 150 58 181 156c11 36 18 74 35 108 c31 64 78 96 150 96h18'], + 0x1D6FA: [666,0,800,32,777,'280 94l5 37c-98 32 -147 99 -147 203c0 47 14 93 41 139c23 38 53 73 91 104c72 60 163 89 273 89c83 0 146 -24 186 -73c32 -39 48 -92 48 -157c0 -76 -28 -144 -84 -202c-51 -53 -118 -87 -198 -103l-7 -37h128c38 4 65 11 79 19c20 12 37 34 49 66l18 -5l-56 -174 h-280l40 166c62 14 114 52 155 115c34 53 51 110 51 171c0 120 -47 181 -140 181c-72 0 -136 -29 -192 -87c-65 -68 -97 -140 -97 -216c0 -44 8 -80 23 -109c15 -28 35 -47 61 -55l-24 -166h-271l42 179l17 -5c-3 -13 -4 -25 -4 -36c0 -29 21 -44 62 -44h131'], + 0x1D6FB: [653,15,627,42,600,'600 653l-400 -668h-26l-132 668h558zM499 559h-342l87 -432'], + 0x1D6FC: [441,10,524,40,529,'529 428l-139 -241v-37c0 -48 10 -99 34 -99c12 0 27 19 46 74l15 -7c-18 -73 -51 -128 -95 -128c-36 0 -64 41 -66 87h-2c-34 -50 -86 -87 -153 -87c-85 0 -129 78 -129 161c0 22 1 41 7 66c28 117 117 224 225 224c77 0 114 -66 114 -136l64 123h79zM322 273 c0 68 -4 138 -62 138c-57 0 -136 -127 -136 -286c0 -57 4 -105 54 -105c64 0 120 127 139 182c4 20 5 44 5 71'], + 0x1D6FD: [668,183,493,25,518,'47 -105l116 479c34 142 57 173 133 239c34 29 77 55 123 55c55 0 99 -46 99 -114c0 -73 -38 -151 -100 -179v-1c41 -11 56 -55 56 -102c0 -66 -30 -146 -63 -188c-44 -56 -110 -96 -192 -96c-25 0 -43 4 -64 21l-28 -122c-6 -28 -18 -59 -23 -70h-79c7 16 17 57 22 78z M266 459l-102 -419c17 -18 37 -23 49 -23c117 0 176 181 176 278c0 34 -5 63 -21 63c-19 0 -24 -8 -42 -8s-32 10 -32 22c0 11 11 27 47 27c8 0 30 -5 44 -5c44 0 60 99 60 124c0 46 -17 100 -61 100c-75 0 -97 -74 -118 -159'], + 0x1D6FE: [441,187,428,35,458,'458 428l-266 -371c-5 -53 -8 -86 -16 -128c-15 -73 -43 -116 -83 -116c-24 0 -36 20 -36 44c0 81 59 127 95 200c10 71 13 127 13 182c0 36 -1 138 -58 138c-18 0 -36 -19 -56 -74h-16c18 64 51 138 102 138c53 0 66 -58 66 -128c0 -62 -11 -132 -14 -179l179 294h90'], + 0x1D6FF: [668,11,463,40,451,'451 608c0 -21 -15 -46 -46 -46c-67 0 -13 65 -104 65c-38 0 -90 -29 -90 -67c0 -95 224 -152 224 -293c0 -33 -5 -79 -18 -112c-35 -86 -116 -166 -231 -166c-97 0 -146 65 -146 145c0 119 99 251 239 265c-46 46 -104 77 -104 131c0 96 101 138 167 138 c50 0 109 -16 109 -60zM351 269c0 44 -15 100 -54 100c-86 0 -179 -160 -179 -249c0 -55 27 -102 70 -102c90 0 163 156 163 251'], + 0x1D700: [441,11,484,25,444,'444 372l-14 -8c-25 36 -60 47 -120 47c-63 0 -139 -44 -139 -113c0 -32 33 -51 78 -51c21 0 37 9 62 9c22 0 38 -7 38 -20c0 -17 -10 -31 -43 -31c-9 0 -40 6 -61 6c-49 0 -133 -33 -133 -103c0 -61 65 -78 125 -78c53 0 118 26 151 73l13 -10 c-42 -59 -99 -104 -210 -104c-124 0 -166 50 -166 102c0 73 49 120 116 137c-35 12 -58 33 -58 66c0 81 83 147 225 147c62 0 123 -33 136 -69'], + 0x1D701: [668,183,435,40,480,'290 668l4 -16c-50 -18 -74 -49 -74 -74c0 -20 16 -38 49 -45c37 42 127 106 179 106c22 0 32 -9 32 -24c0 -45 -104 -105 -196 -113c-87 -61 -186 -198 -186 -329c0 -55 27 -91 92 -91c2 0 19 1 47 1c81 0 124 -26 124 -99c0 -85 -99 -167 -181 -167 c-35 0 -53 30 -53 54c0 22 15 42 48 42c21 0 35 -30 53 -30c44 0 97 27 97 68c0 39 -34 49 -82 49c-11 0 -60 -9 -76 -9c-72 0 -127 56 -127 142c0 161 97 279 200 371v1c-32 0 -73 20 -73 59c0 41 41 84 123 104'], + 0x1D702: [441,183,460,30,455,'173 251h2l57 73c54 69 104 117 163 117c39 0 60 -20 60 -54c0 -22 -9 -52 -15 -78l-75 -313c-15 -63 -23 -113 -23 -144c0 -14 1 -27 5 -35h-76c-9 11 -11 28 -11 46c0 41 14 98 99 436c3 10 8 31 8 48s-11 29 -28 29c-40 0 -170 -169 -200 -271l-31 -105h-78l77 304 c6 25 13 45 13 59c0 9 -2 13 -13 13c-22 0 -44 -29 -60 -50l-13 10c5 7 22 34 46 58c25 25 62 47 84 47c32 0 41 -17 41 -41c0 -42 -23 -111 -32 -149'], + 0x1D703: [668,11,484,40,474,'474 472c0 -196 -143 -483 -297 -483c-95 0 -137 59 -137 179c0 174 116 500 306 500c73 0 128 -63 128 -196zM159 344h206c15 70 25 125 25 166c0 73 -10 129 -51 129c-72 0 -154 -176 -180 -295zM356 308h-207c-16 -50 -25 -117 -25 -165c0 -69 15 -125 58 -125 c67 0 127 131 158 230c7 23 13 51 16 60'], + 0x1D704: [441,11,267,50,227,'227 441l-92 -364c-1 -6 -1 -10 -1 -14c0 -7 6 -11 13 -11c22 0 28 13 64 52l13 -10c-35 -45 -85 -105 -134 -105c-28 0 -40 19 -40 46c0 12 0 27 79 334c1 2 2 9 2 12c0 17 -8 22 -31 22c-9 0 -21 -2 -28 -4l-3 16'], + 0x1D705: [441,0,534,50,549,'193 251l183 136c61 45 88 54 126 54c34 0 47 -19 47 -41c0 -20 -12 -38 -42 -38s-27 27 -60 27c-21 0 -42 -13 -52 -21l-143 -113l112 -187c24 -40 40 -45 101 -52l-1 -16h-235l1 16c10 0 58 0 58 17c0 7 -7 25 -13 33l-90 153l-57 -219h-78l94 371v9c0 11 -9 20 -32 20 c-8 0 -17 -1 -28 -3l-2 15l161 27'], + 0x1D706: [668,16,541,50,511,'495 124h16c-22 -82 -55 -140 -104 -140c-28 0 -54 38 -54 95c0 61 9 115 16 218l-218 -297h-101l319 431c1 8 2 20 2 31c0 7 0 35 -1 46c-5 67 -27 96 -56 96c-15 0 -32 -18 -53 -74h-16c17 63 49 138 104 138c36 0 55 -46 55 -136v-383c0 -36 2 -101 38 -101 c15 0 32 19 53 76'], + 0x1D707: [428,183,579,30,549,'549 428l-86 -338c-4 -16 -8 -29 -8 -39c0 -8 5 -14 17 -14c23 0 45 27 57 48l15 -6c-15 -44 -84 -106 -131 -106c-29 0 -41 13 -41 41s14 94 33 171c-97 -146 -148 -191 -194 -191c-17 0 -36 11 -41 25c-36 -142 -43 -176 -66 -202h-74c14 20 30 53 45 114l125 497h79 l-71 -298c-2 -9 -4 -18 -4 -27c0 -27 14 -45 54 -45c53 0 178 216 197 299l16 71h78'], + 0x1D708: [446,9,452,50,462,'444 446l18 -5c-18 -176 -113 -343 -269 -450h-21l-62 369c-5 32 -20 42 -44 42h-16v16c71 3 90 12 128 23l60 -350c109 83 172 233 206 355'], + 0x1D709: [668,183,433,25,443,'293 668l4 -16c-70 -21 -76 -60 -76 -70c0 -14 9 -31 32 -31c46 35 104 67 144 67c31 0 46 -14 46 -34c0 -43 -85 -71 -156 -71c-52 0 -86 -43 -86 -78c0 -19 9 -35 31 -52c44 29 100 46 140 46c32 0 55 -11 55 -29c0 -52 -88 -62 -123 -62c-22 0 -44 2 -68 9 c-84 -32 -154 -103 -154 -186c0 -58 27 -78 109 -78c22 0 36 1 49 1c81 0 124 -27 124 -100c0 -85 -101 -167 -181 -167c-35 0 -53 30 -53 54c0 22 15 42 48 42c21 0 35 -30 53 -30c44 0 97 27 97 68c0 39 -34 49 -82 49c-19 0 -56 -9 -74 -9c-91 1 -147 33 -147 118 c0 115 75 204 170 256c-22 19 -30 37 -29 69c2 37 27 68 57 89c-28 7 -50 29 -50 51c0 44 38 80 120 94'], + 0x1D70A: [441,11,458,40,438,'438 287c0 -139 -110 -298 -263 -298c-101 0 -135 90 -135 163c0 128 103 289 251 289c80 0 147 -46 147 -154zM357 318c0 38 -14 93 -67 93c-82 0 -169 -149 -169 -285c0 -33 3 -107 59 -107c106 0 177 223 177 299'], + 0x1D70B: [428,13,558,35,568,'568 428l-23 -73h-112c-14 -43 -67 -171 -67 -238c0 -23 16 -48 38 -48c21 0 49 12 73 66h16c-21 -72 -74 -142 -144 -142c-40 0 -57 36 -57 75c0 23 3 43 9 62c23 71 53 141 78 225h-94c-46 -122 -77 -294 -161 -357c-11 -9 -26 -11 -38 -11c-26 0 -51 20 -51 44 c0 15 5 41 31 48c43 12 61 41 74 70l89 206c-58 0 -95 0 -139 -53h-16c44 80 108 126 212 126h282'], + 0x1D70C: [441,183,502,30,472,'30 -183l84 336c39 157 99 226 166 259c32 16 62 29 98 29c61 0 94 -54 94 -155c0 -129 -110 -298 -254 -298c-24 0 -42 4 -61 18l-44 -189h-83zM212 238l-46 -200c14 -16 34 -21 46 -21c101 0 176 173 176 285c0 63 -28 83 -51 83c-53 0 -103 -53 -125 -147'], + 0x1D70D: [490,183,439,35,464,'464 438c0 -24 -14 -43 -48 -43c-40 0 -25 37 -63 37c-108 0 -260 -104 -260 -245c0 -56 9 -103 91 -103c23 0 37 1 46 1c56 0 126 -11 126 -92c0 -102 -92 -176 -181 -176c-35 0 -53 32 -53 56c0 22 15 42 48 42c21 0 35 -32 53 -32c44 0 97 31 97 71 c0 30 -21 49 -82 48c-22 0 -53 -9 -86 -9c-58 0 -117 51 -117 149c0 164 185 348 341 348c35 0 88 -13 88 -52'], + 0x1D70E: [428,11,537,40,547,'547 428l-20 -73h-173c22 -63 84 -68 84 -143c0 -112 -111 -223 -256 -223c-103 0 -142 88 -142 160c0 170 130 279 260 279h247zM286 355h-2c-67 -6 -163 -92 -163 -234c0 -32 11 -102 65 -102c99 0 172 126 172 207c0 64 -39 109 -72 129'], + 0x1D70F: [428,5,442,30,472,'472 428l-22 -73h-155c-23 -55 -41 -117 -60 -189c-5 -18 -7 -32 -7 -46c0 -34 9 -49 36 -49c26 0 60 31 77 67h16c-23 -78 -83 -143 -149 -143c-37 0 -64 15 -64 67c0 34 15 68 23 93l66 200h-51c-55 0 -105 -39 -136 -88h-16c28 65 111 161 207 161h235'], + 0x1D710: [439,11,460,30,445,'293 425l2 14c100 -16 150 -70 150 -168c0 -125 -105 -282 -250 -282c-84 0 -138 44 -138 104c0 21 7 52 19 94l41 141c5 16 9 32 9 39c0 10 -6 14 -15 14c-16 0 -26 -4 -68 -56l-13 9c48 71 101 105 140 105c29 0 46 -6 46 -36c0 -17 -5 -35 -68 -240 c-8 -25 -13 -51 -13 -74c0 -41 17 -71 63 -71c119 0 187 173 187 271c0 81 -30 125 -92 136'], + 0x1D711: [441,183,666,50,631,'247 19l34 130c38 147 109 289 245 289c59 0 105 -46 105 -155c0 -141 -118 -294 -311 -294l-40 -172h-83l43 172c-108 0 -190 61 -190 166c0 144 119 286 279 286h25l-5 -16c-115 -12 -215 -135 -215 -266c0 -79 50 -140 113 -140zM380 238l-53 -219 c95 0 220 139 220 270c0 81 -22 93 -44 93c-48 0 -103 -62 -123 -144'], + 0x1D712: [441,202,595,30,645,'645 428l-290 -343c0 -178 11 -223 41 -223c14 0 34 14 54 67h16c-20 -77 -50 -131 -102 -131c-45 0 -55 52 -55 112c0 45 4 86 7 125l-185 -218h-101l296 349v78c0 92 -14 133 -52 133c-14 0 -37 -12 -57 -66h-16c17 61 42 130 102 130c36 0 56 -38 56 -138 c0 -10 0 -21 -1 -31l-4 -72l191 228h100'], + 0x1D713: [441,183,661,30,711,'711 439v-16c-96 -13 -121 -124 -141 -213c-29 -128 -144 -221 -268 -221l-42 -172h-81l43 172h-10c-78 0 -153 41 -153 165c0 56 32 116 32 183c0 40 -14 81 -61 86l5 16c19 2 37 2 55 2c57 0 88 -54 88 -111c0 -56 -31 -127 -31 -185c0 -75 32 -119 83 -126l100 409h81 l-100 -409c73 14 145 78 170 187c28 120 51 233 204 233h26'], + 0x1D714: [441,11,681,20,661,'465 425l6 16c115 0 190 -43 190 -161c0 -170 -141 -291 -245 -291c-59 0 -100 38 -104 89c-41 -50 -88 -89 -154 -89c-102 0 -138 92 -138 161c0 162 121 291 298 291h16l3 -16c-124 0 -235 -145 -235 -313c0 -46 23 -93 68 -93c58 0 114 59 127 105c-2 15 -3 37 -3 51 c0 73 25 186 97 186c19 0 33 -22 33 -47c0 -64 -42 -143 -78 -195c0 -50 17 -100 70 -100c88 0 165 187 165 273c0 96 -39 124 -116 133'], + 0x1D715: [668,11,471,40,471,'195 625l-10 20c28 17 64 23 98 23c126 0 188 -90 188 -260c0 -148 -61 -419 -295 -419c-98 0 -136 77 -136 162c0 141 111 284 257 284c32 0 75 -11 96 -48c4 22 7 46 7 70c0 88 -29 181 -131 181c-27 0 -49 -5 -74 -13zM367 319c0 65 -34 86 -61 86 c-99 0 -185 -149 -185 -288c0 -38 4 -98 67 -98c77 0 136 100 164 202c9 33 15 67 15 98'], + 0x1D716: [441,11,430,40,430,'430 441l-19 -132h-15c-7 46 -24 105 -93 105c-82 0 -139 -97 -161 -167h181l-5 -36h-185c-7 -20 -7 -41 -7 -66c0 -64 37 -101 92 -101c58 0 109 34 144 68l12 -14c-53 -60 -111 -109 -194 -109c-94 0 -140 69 -140 152c0 142 114 300 269 300c49 0 55 -20 83 -20 c12 0 19 11 23 20h15'], + 0x1D717: [678,10,554,20,507,'33 205l-13 9c27 40 76 106 131 106c30 0 44 -16 44 -45c0 -62 -37 -115 -37 -186c0 -39 11 -78 57 -78c98 0 146 136 168 212c-108 47 -208 144 -208 269c0 106 68 186 177 186c112 0 155 -99 155 -197c0 -88 -17 -175 -47 -257c15 -5 29 -12 45 -14l-5 -19 c-17 1 -32 4 -49 8c-43 -103 -115 -209 -239 -209c-72 0 -134 22 -134 104c0 42 15 78 28 118c4 12 8 26 8 39c0 8 -3 14 -12 14c-21 0 -57 -45 -69 -60zM423 484c0 52 -5 161 -79 161c-68 0 -85 -95 -85 -147c0 -100 49 -191 134 -242c18 74 30 151 30 228'], + 0x1D718: [441,13,561,12,587,'587 428l-156 -145c-14 -23 -28 -51 -42 -86c-14 -36 -21 -64 -21 -84c0 -27 16 -41 49 -41c34 0 51 -13 51 -38c0 -13 -6 -25 -17 -34s-25 -13 -42 -13c-25 0 -45 9 -61 26c-15 16 -22 36 -22 61c0 40 16 91 48 154l-1 1l-252 -229h-109l148 136c10 16 22 46 35 90 c13 43 20 77 20 100c0 19 -9 28 -26 28c-19 0 -31 2 -38 6c-11 7 -17 19 -17 36c0 14 7 26 21 35c10 7 20 10 32 10c45 0 68 -26 68 -77c0 -48 -15 -108 -45 -181l1 -1l268 246h108'], + 0x1D719: [668,183,645,40,620,'480 668l-55 -228c103 0 195 -38 195 -155c0 -78 -27 -147 -80 -204c-60 -65 -139 -92 -226 -92l-48 -172h-81l46 172c-108 0 -191 56 -191 171c0 76 31 142 84 196c56 57 125 84 205 84h16c19 76 37 152 53 228h82zM418 411l-97 -392c121 0 214 151 214 261 c0 79 -32 132 -117 131zM240 19l99 392c-130 0 -215 -134 -215 -253c0 -63 46 -139 116 -139'], + 0x1D71A: [441,187,509,40,489,'221 -187l-14 7c3 5 4 9 4 16c0 38 -88 48 -134 101c-29 34 -37 75 -37 122c0 76 32 157 82 233c47 71 127 149 226 149c94 0 141 -64 141 -154c0 -142 -97 -297 -268 -297c-72 0 -119 48 -119 106h-2c-4 -15 -6 -17 -6 -44c0 -123 140 -98 140 -187 c0 -15 -4 -32 -13 -52zM409 324c0 38 -15 88 -64 88c-84 0 -189 -147 -189 -285c0 -42 19 -108 70 -108c126 0 183 225 183 305'], + 0x1D71B: [428,11,856,30,866,'866 428l-22 -73h-80c12 -23 18 -49 18 -83c0 -170 -141 -283 -245 -283c-59 0 -100 35 -104 86c-41 -50 -88 -86 -154 -86c-102 0 -138 89 -138 158c0 85 33 154 90 208h-50c-54 0 -102 -38 -135 -87h-16c27 78 110 160 207 160h629zM690 355h-371 c-59 -57 -96 -146 -96 -246c0 -46 23 -90 68 -90c58 0 114 56 127 102c-2 15 -4 37 -4 51c0 53 5 149 69 149c23 0 40 -19 40 -56c0 -55 -20 -97 -56 -149c0 -50 17 -97 70 -97c88 0 165 179 165 265c0 30 -4 52 -12 71'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Normal/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Operators/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Operators/Bold/Main.js new file mode 100644 index 0000000..1af9f84 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Operators/Bold/Main.js @@ -0,0 +1,175 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Operators/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Operators-bold'] = { + directory: 'Operators/Bold', + family: 'STIXMathJax_Operators', + weight: 'bold', + id: 'STIXWEBOPERATORSB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2206: [676,0,681,23,658,'658 0h-635l284 676h54zM511 49l-212 480h-1l-202 -480h415'], + 0x220A: [499,-35,500,60,440,'440 35h-148c-128 0 -232 104 -232 232s104 232 232 232h148v-88h-148c-64 0 -119 -42 -137 -100h285v-88h-285c18 -58 73 -100 137 -100h148v-88'], + 0x220C: [680,146,750,82,668,'579 680l-67 -162c98 -45 156 -141 156 -251c0 -154 -113 -280 -288 -280h-86l-55 -133h-69l55 133h-143v88h179l61 148h-240v88h276l60 146c-8 1 -16 2 -25 2h-311v88h295c26 0 52 -3 75 -8l58 141h69zM427 311h148c-13 55 -49 101 -96 126zM575 223h-184l-61 -148h62 c86 0 163 62 183 148'], + 0x220F: [763,259,1000,37,963,'963 -259h-404v38h51c49 0 67 34 67 128v784h-355v-784c0 -77 16 -128 67 -128h52v-38h-404v38h37c52 0 78 35 78 121v711c0 87 -21 114 -115 114v38h926v-38h-36c-52 0 -80 -17 -80 -117v-725c0 -75 25 -104 78 -104h38v-38'], + 0x2210: [763,259,982,28,954,'954 -259h-926v37h38c53 0 78 18 78 118v701c0 100 -25 129 -78 129h-38v37h400v-37h-37c-52 0 -77 -29 -77 -128v-785h355v785c0 99 -26 128 -78 128h-37v37h400v-37h-37c-52 0 -78 -37 -78 -129v-701c0 -100 26 -118 78 -118h37v-37'], + 0x2211: [763,259,914,40,873,'873 47l-55 -306h-778l401 505l-376 517h736v-258h-38c-15 184 -109 186 -206 186h-244l274 -382l-321 -398h397c86 0 141 11 168 136h42'], + 0x221F: [584,0,685,50,634,'634 0h-584v584h88v-496h496v-88'], + 0x222C: [824,320,863,32,1043,'544 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -71 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66 c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 72 87 170zM234 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55 c0 9 -12 11 -17 11c-35 0 -63 -71 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 72 87 170'], + 0x222D: [824,320,1174,32,1354,'855 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -72 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66 c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170zM544 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55 c0 9 -12 11 -17 11c-35 0 -63 -71 -87 -169l-177 -711c-13 -53 -42 -111 -86 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170zM234 -108l178 711 c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -72 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76 c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170'], + 0x222E: [824,320,591,30,731,'381 490l29 113c14 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -62 -71 -87 -169l-38 -150c74 -40 125 -118 125 -208c0 -130 -105 -235 -235 -235h-1l-29 -118 c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -43 -27 -56c0 -9 12 -11 17 -11c35 0 62 72 87 170l39 155c-75 40 -125 118 -125 208c0 130 105 235 235 235zM478 410l-85 -337 c95 6 171 85 171 182c0 66 -35 123 -86 155zM284 100l84 338c-95 -7 -170 -86 -170 -183c0 -65 34 -123 86 -155'], + 0x222F: [824,320,903,32,1043,'689 469l33 134c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -72 -87 -169l-43 -172c102 -40 143 -108 143 -185c0 -98 -67 -181 -242 -212l-36 -142 c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170l35 141c-13 -1 -27 -1 -41 -1c-57 0 -106 4 -150 10l-35 -140c-13 -53 -41 -111 -85 -156 c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170l45 179c-103 40 -144 108 -144 185c0 98 67 182 243 212l34 135c13 53 46 111 90 156c35 36 80 65 142 65 c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -72 -87 -169l-33 -134c13 1 26 1 40 1c57 0 107 -4 151 -11zM752 256l-40 -156c128 27 177 87 177 156c0 54 -30 103 -104 134zM635 256l41 163 c-40 6 -85 9 -138 9c-19 0 -37 0 -54 -1l-83 -334c39 -6 85 -9 137 -9c19 0 37 0 54 1zM325 256l39 157c-128 -28 -177 -87 -177 -157c0 -54 30 -103 104 -134'], + 0x2230: [824,320,1214,32,1354,'997 457l36 146c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -72 -87 -169l-46 -185c109 -41 145 -103 145 -172c0 -86 -55 -161 -238 -198l-39 -156 c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170l37 148c-57 -5 -121 -8 -196 -8l-32 -130c-13 -53 -42 -111 -86 -156 c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170l36 142c-74 4 -136 11 -189 20l-38 -152c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76 c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170l48 191c-111 41 -147 103 -147 173c0 86 56 161 240 199l37 148c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79 c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -72 -87 -169l-35 -141c56 5 121 8 195 8l31 123c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11 c-35 0 -63 -71 -87 -169l-34 -135c74 -4 137 -11 190 -21zM1063 256l-36 -143c131 31 172 83 172 143c0 48 -27 92 -105 123zM905 93l79 315c-51 9 -114 15 -190 18l-85 -342c76 0 141 4 196 9zM593 86l85 342c-75 0 -140 -4 -196 -9l-79 -315c52 -9 114 -15 190 -18z M325 256l36 144c-132 -31 -174 -84 -174 -144c0 -48 27 -92 107 -124'], + 0x2231: [824,320,593,32,733,'353 366l59 237c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -71 -87 -169l-67 -267c25 -11 47 -27 66 -46c16 -16 26 -34 37 -53c2 -4 8 -14 14 -14 c13 0 32 38 38 49l24 -12c-26 -41 -46 -78 -59 -125l-5 -2c-40 24 -85 38 -131 45l9 30c19 -6 39 -11 59 -11c4 0 9 2 9 7c0 3 -2 8 -4 11c-17 27 -41 52 -70 68l-98 -391c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79 c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 62 72 87 170l106 421c-82 -14 -144 -83 -144 -170h-52c0 120 92 216 209 223'], + 0x2232: [824,320,593,32,733,'383 490l29 113c26 103 117 221 232 221c48 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 29 27 42 27 55c0 8 -11 11 -17 11c-47 0 -79 -136 -87 -169l-38 -150c47 -25 76 -60 102 -106c2 -3 6 -11 11 -11c13 0 34 38 39 49l24 -12 c-24 -40 -48 -82 -51 -130c-7 -130 -102 -233 -236 -233l-29 -118c-26 -108 -111 -222 -232 -222c-48 0 -89 24 -89 76c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -29 -27 -43 -27 -56c0 -8 11 -11 17 -11c47 0 79 137 87 170l39 155c-77 41 -125 121 -125 208 c0 130 105 235 235 235zM480 410l-85 -337c98 6 173 89 171 187c-30 24 -56 31 -92 41l9 28c16 -5 36 -10 52 -10c6 0 16 1 16 9c-15 33 -40 62 -71 82zM286 100l84 338c-96 -7 -170 -87 -170 -183c0 -63 32 -122 86 -155'], + 0x2233: [824,320,593,32,733,'383 490l29 113c26 103 116 221 232 221c47 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 29 27 43 27 55c0 8 -11 11 -17 11c-46 0 -78 -132 -87 -169l-38 -150c33 -18 59 -42 81 -72c34 -14 70 -23 106 -31l-10 -28c-14 5 -36 12 -51 12 c-6 0 -12 -4 -12 -11c0 -21 11 -45 11 -72c0 -133 -102 -241 -236 -241l-29 -118c-26 -108 -111 -222 -232 -222c-48 0 -89 24 -89 76c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -29 -27 -44 -27 -56c0 -8 11 -11 17 -11c46 0 78 133 87 170l39 155c-77 41 -125 121 -125 208 c0 130 105 235 235 235zM480 410l-85 -337c97 6 171 87 171 184c0 10 -2 58 -16 58c-13 0 -39 -49 -44 -59l-25 14c21 30 37 62 47 97c-14 17 -30 32 -48 43zM286 100l84 338c-96 -7 -170 -87 -170 -183c0 -63 33 -122 86 -155'], + 0x2236: [575,41,554,190,364,'364 488c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM364 46c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87'], + 0x2237: [575,41,750,68,683,'683 488c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM242 488c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM683 46c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM242 46c0 -48 -39 -87 -87 -87 s-87 39 -87 87s39 87 87 87s87 -39 87 -87'], + 0x2238: [543,-209,750,66,685,'456 461c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82zM685 209h-619v88h619v-88'], + 0x2239: [543,37,750,66,686,'686 461c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82zM686 45c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82zM475 209h-409v88h409v-88'], + 0x223A: [575,41,750,66,685,'685 488c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM685 46c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM685 215h-619v104h619v-104zM240 488c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM240 46 c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87'], + 0x223B: [565,59,750,67,682,'457 481c0 -46 -38 -83 -84 -83s-83 37 -83 83s37 84 83 84s84 -38 84 -84zM628 374h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM457 24 c0 -46 -38 -83 -84 -83s-83 37 -83 83s37 84 83 84s84 -38 84 -84'], + 0x223E: [419,-85,750,68,683,'532 326v93c58 0 151 -35 151 -163c0 -102 -71 -171 -147 -171c-75 0 -124 52 -155 104c-60 102 -119 137 -167 137c-57 0 -94 -26 -94 -77c0 -48 44 -71 104 -71v-93c-107 0 -156 94 -156 165c0 98 75 169 152 169c78 0 130 -56 163 -109c68 -108 101 -132 160 -132 c52 0 88 26 88 74c0 60 -50 74 -99 74'], + 0x223F: [484,-67,750,66,684,'594 279l90 -10c0 -103 -62 -202 -169 -202c-113 0 -171 72 -191 204c-12 81 -40 109 -91 109s-77 -54 -77 -108l-90 10c0 103 61 202 167 202c128 0 180 -101 193 -204c10 -80 40 -109 90 -109c53 0 78 54 78 108'], + 0x2244: [530,54,750,68,683,'683 36h-364l-40 -90h-72l40 90h-178v88h216l72 166c-30 19 -86 60 -121 60c-71 0 -100 -79 -114 -136h-54c6 96 61 224 174 224c55 0 108 -32 153 -61l67 153h72l-82 -186c21 -12 38 -24 63 -24c71 0 100 79 114 136h54c-5 -102 -61 -224 -179 -224c-33 0 -60 11 -89 26 l-58 -134h326v-88'], + 0x2247: [642,152,750,68,683,'629 568h54c-6 -96 -61 -224 -174 -224c-19 0 -37 4 -55 10l-61 -122h289v-88h-334l-58 -116h392v-88h-437l-46 -92h-79l46 92h-98v88h143l58 116h-201v88h245l77 152c-38 23 -111 78 -154 78c-71 0 -100 -79 -114 -136h-54c5 102 61 224 179 224c67 0 131 -47 185 -82 l87 174h80l-104 -207c7 -2 13 -3 20 -3c71 0 100 79 114 136'], + 0x2249: [583,48,750,68,683,'629 268h54c-7 -104 -66 -224 -174 -224c-58 0 -114 36 -165 69l-71 -161h-72l86 195c-18 9 -35 15 -51 15c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c26 0 52 -7 77 -18l46 104c-51 32 -97 66 -134 66c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224 c57 0 112 -35 161 -66l70 159h72l-85 -195c18 -10 35 -16 50 -16c60 0 94 55 114 136h54c-7 -104 -66 -224 -174 -224c-27 0 -55 8 -81 20l-46 -104c52 -32 98 -68 133 -68c60 0 94 55 114 136'], + 0x224B: [613,109,750,68,683,'629 613h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM629 373h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54 c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM629 133h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136'], + 0x224C: [568,60,750,68,683,'683 326h-54c-20 81 -54 136 -114 136c-69 0 -169 -118 -273 -118c-108 0 -167 120 -174 224h54c20 -81 54 -136 114 -136c64 0 163 118 268 118c107 0 173 -105 179 -224zM682 144h-614v88h614v-88zM682 -60h-614v88h614v-88'], + 0x2254: [483,-50,932,68,864,'864 311h-569v88h569v-88zM864 107h-569v88h569v-88zM235 399c0 -46 -38 -83 -84 -83s-83 37 -83 83s37 84 83 84s84 -38 84 -84zM235 133c0 -46 -38 -83 -84 -83s-83 37 -83 83s37 84 83 84s84 -38 84 -84'], + 0x2255: [483,-50,932,68,864,'864 399c0 -46 -37 -83 -83 -83s-84 37 -84 83s38 84 84 84s83 -38 83 -84zM864 133c0 -46 -37 -83 -83 -83s-84 37 -84 83s38 84 84 84s83 -38 83 -84zM637 311h-569v88h569v-88zM637 107h-569v88h569v-88'], + 0x2258: [761,-107,750,68,682,'619 558l-29 -15c-78 92 -137 130 -213 130c-88 0 -149 -38 -216 -130l-31 13c47 127 137 205 245 205c119 0 203 -75 244 -203zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x2259: [836,-107,750,68,682,'594 467h-77l-142 242l-143 -242h-76l219 369zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x225A: [836,-107,750,68,682,'594 836l-219 -369l-219 369h76l143 -242l142 242h77zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x225B: [841,-107,750,68,682,'571 690l-96 -82c-4 -3 -8 -8 -8 -15c0 -4 3 -10 4 -15l20 -109l-99 62c-4 2 -9 5 -15 5s-12 -2 -17 -5l-104 -62l31 105c1 5 3 10 3 14c0 7 -3 12 -9 17l-100 85l118 9c17 1 23 6 29 21l47 121l49 -121c6 -14 9 -19 26 -20zM682 311h-614v88h614v-88zM682 107h-614v88 h614v-88'], + 0x225D: [838,-107,750,55,735,'539 718h30c0 41 3 73 20 94c14 17 37 26 71 26c44 0 75 -21 75 -52c0 -19 -13 -33 -33 -33c-18 0 -31 13 -31 29c0 19 11 23 11 30c0 6 -5 10 -15 10c-19 0 -26 -10 -26 -41v-63h45v-23h-45v-161c0 -34 6 -42 43 -43v-13h-145v13c24 3 30 9 30 33v171h-30v23zM515 542 l12 -7c-31 -50 -59 -66 -103 -66c-63 0 -107 52 -107 123c0 78 44 130 110 130c30 0 51 -9 66 -26c20 -21 29 -54 31 -93h-132c3 -49 12 -96 63 -96c22 0 38 10 60 35zM460 623v11c0 27 0 38 -5 48c-7 15 -13 24 -28 24c-24 0 -37 -21 -37 -83h70zM321 487l-33 -4 c-32 -4 -45 -7 -69 -13v33c-25 -26 -42 -34 -69 -34c-55 0 -95 50 -95 122c0 75 43 131 100 131c24 0 40 -8 62 -32v95c0 25 -4 28 -39 31v12h112v-299c0 -22 7 -29 31 -30v-12zM217 535v126c-7 20 -23 32 -40 32c-31 0 -45 -31 -45 -98c0 -66 13 -97 41 -97 c12 0 24 7 34 20c6 6 10 14 10 17zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x225E: [721,-107,750,68,682,'579 478h-119v12c19 1 25 8 25 30v119c0 32 -8 48 -27 48c-20 0 -44 -22 -44 -36v-131c0 -20 4 -28 23 -30v-12h-117v12c19 1 25 8 25 30v125c0 30 -10 42 -30 42c-19 0 -42 -23 -42 -36v-131c0 -20 5 -27 23 -30v-12h-120v12c22 3 28 11 28 32v149c0 24 -6 28 -28 31v13 h95v-38h2c19 31 41 44 73 44s51 -12 66 -44c27 32 46 44 75 44c42 0 67 -26 67 -72v-129c0 -22 5 -29 25 -30v-12zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x225F: [880,-107,750,68,682,'374 593v19c0 59 57 92 57 150c0 53 -21 84 -58 84c-25 0 -43 -10 -43 -25c0 -7 3 -11 11 -20c11 -11 16 -20 16 -33c0 -24 -24 -43 -46 -43c-28 0 -46 22 -46 51c0 53 52 104 129 104c88 0 141 -46 141 -108c0 -45 -20 -76 -84 -112c-42 -24 -48 -46 -48 -67h-29z M447 508c0 -33 -25 -60 -59 -60c-35 0 -60 27 -60 60s26 59 60 59c32 0 59 -27 59 -59zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x2262: [688,156,750,68,682,'682 27h-371l-80 -183h-69l80 183h-174v88h212l47 108h-259v88h298l47 108h-345v88h383l79 181h69l-79 -181h162v-88h-200l-47 -108h247v-88h-286l-47 -108h333v-88'], + 0x2263: [592,57,750,68,682,'682 504h-614v88h614v-88zM682 317h-614v88h614v-88zM682 130h-614v88h614v-88zM682 -57h-614v88h614v-88'], + 0x226D: [591,87,750,68,683,'683 42v-55c-96 90 -205 128 -307 128c-10 0 -20 0 -31 -1l-101 -201h-79l94 187c-69 -18 -138 -53 -191 -113v55c41 76 127 142 242 160l52 103c-140 4 -247 70 -294 158v55c86 -79 205 -125 308 -125c10 0 21 0 31 1l99 197h80l-90 -179c64 20 129 56 187 105v-54 c-38 -77 -128 -135 -239 -153l-52 -103c135 -6 247 -77 291 -165'], + 0x2274: [780,282,750,67,682,'628 60h54c-6 -119 -72 -224 -179 -224c-69 0 -135 51 -191 86l-61 -204h-73l71 234c-5 1 -10 2 -14 2c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224c11 0 22 -1 33 -4l71 236l-268 118v40l364 159l57 189h73l-46 -152l142 62v-88l-172 -75l-62 -204l234 -103v-88 l-257 113l-70 -232c67 -35 127 -89 174 -89c60 0 94 55 114 136zM411 490l-180 -78l138 -61'], + 0x2275: [780,282,750,67,682,'628 60h54c-6 -119 -72 -224 -179 -224c-69 0 -135 51 -191 86l-61 -204h-73l71 234c-5 1 -10 2 -14 2c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224c11 0 22 -1 33 -4l63 209l-260 -115v88l291 128l34 112l-325 142v88l348 -152l73 242h73l-81 -270l177 -78v-40 l-246 -108l-81 -271c67 -35 127 -89 174 -89c60 0 94 55 114 136zM513 412l-47 20l-14 -47'], + 0x2278: [824,316,750,80,670,'670 32l-363 -159l-57 -189h-73l46 152l-143 -62v88l173 76l61 203l-234 103v88l258 -114l27 91l-285 125v40l386 170l54 180h73l-43 -143l120 53v-88l-150 -66l-67 -221l217 -95v-88l-240 105l-28 -91l268 -118v-40zM435 543l-201 -89l154 -67zM516 52l-137 60l-42 -138 '], + 0x2279: [824,316,750,80,670,'670 -226l-347 152l-73 -242h-73l81 270l-178 78v40l246 109l36 118l-282 -123v88l312 136l29 96l-341 150v88l365 -161l75 251h73l-84 -279l161 -71v-40l-224 -98l-35 -118l259 114v-88l-290 -128l-34 -113l324 -141v-88zM516 454l-30 13l-10 -30zM296 79l-62 -27 l47 -21'], + 0x2284: [680,146,750,82,668,'668 -13h-298c-26 0 -50 3 -73 8l-58 -141h-69l66 162c-96 45 -154 141 -154 251c0 154 113 280 291 280h82l55 133h69l-55 -133h144v-88h-180l-157 -382c9 -1 18 -2 27 -2h310v-88zM419 459h-62c-100 0 -187 -85 -187 -192c0 -74 42 -137 100 -169'], + 0x2285: [680,146,750,82,668,'579 680l-67 -162c98 -45 156 -141 156 -251c0 -154 -113 -280 -288 -280h-86l-55 -133h-69l55 133h-143v88h179l157 382c-8 1 -16 2 -25 2h-311v88h295c26 0 52 -3 75 -8l58 141h69zM330 75h62c100 0 188 84 188 192c0 74 -42 138 -101 170'], + 0x228C: [541,33,650,66,584,'462 270h-80c-24 0 -33 -4 -33 -13s9 -21 19 -33c19 -24 27 -36 43 -66l-36 -26c-56 76 -92 126 -188 167v12c96 40 132 91 187 166l37 -26c-16 -27 -26 -44 -44 -66c-10 -13 -18 -24 -18 -32c0 -9 9 -13 32 -13h81v-70zM496 541h88v-315c0 -143 -116 -259 -259 -259 s-259 116 -259 259v315h88v-315c0 -94 77 -171 171 -171s171 77 171 171v315'], + 0x228D: [541,33,650,66,584,'394 306c0 -38 -32 -69 -69 -69c-38 0 -69 31 -69 69s31 69 69 69c37 0 69 -31 69 -69zM496 541h88v-315c0 -143 -116 -259 -259 -259s-259 116 -259 259v315h88v-315c0 -94 77 -171 171 -171s171 77 171 171v315'], + 0x229C: [634,130,864,50,814,'646 290h-428v88h428v-88zM646 128h-428v88h428v-88zM814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM726 252c0 162 -132 294 -294 294s-294 -132 -294 -294s132 -294 294 -294s294 132 294 294'], + 0x22A6: [676,0,555,91,464,'464 286h-269v-286h-104v676h104v-286h269v-104'], + 0x22A7: [676,0,555,91,464,'464 188h-269v-188h-104v676h104v-188h269v-104h-269v-92h269v-104'], + 0x22AB: [676,0,944,91,856,'856 188h-464v-188h-104v676h104v-188h464v-104h-464v-92h464v-104zM195 0h-104v676h104v-676'], + 0x22B0: [543,38,750,98,652,'473 440h-52c4 61 57 103 119 103c65 0 112 -49 112 -112c0 -95 -91 -151 -187 -168c-4 -1 -38 -6 -60 -9c20 -4 54 -10 58 -11c97 -16 189 -73 189 -169c0 -63 -47 -112 -112 -112c-62 0 -115 42 -119 103h52c5 -22 27 -35 47 -35c24 0 44 18 44 42 c0 78 -165 110 -239 119c-80 10 -151 17 -227 18v87c76 1 147 5 227 18c36 6 94 15 144 32c48 17 95 43 95 87c0 24 -20 42 -44 42c-20 0 -42 -13 -47 -35'], + 0x22B1: [543,38,750,98,652,'652 296v-87c-76 -1 -147 -8 -227 -18c-74 -9 -239 -41 -239 -119c0 -24 20 -42 44 -42c20 0 42 13 47 35h52c-4 -61 -57 -103 -119 -103c-65 0 -112 49 -112 112c0 96 92 153 189 169c4 1 38 7 58 11c-22 3 -56 8 -60 9c-96 17 -187 73 -187 168c0 63 47 112 112 112 c62 0 115 -42 119 -103h-52c-5 22 -27 35 -47 35c-24 0 -44 -18 -44 -42c0 -44 47 -70 95 -87c50 -17 108 -26 144 -32c80 -13 151 -17 227 -18'], + 0x22B6: [436,-96,1216,50,1166,'382 319h452c23 68 87 117 162 117c94 0 170 -76 170 -170s-76 -170 -170 -170c-76 0 -141 50 -162 119h-452c-21 -69 -86 -119 -162 -119c-94 0 -170 76 -170 170s76 170 170 170c75 0 139 -49 162 -117zM320 266c0 55 -45 100 -100 100s-100 -45 -100 -100 s45 -100 100 -100s100 45 100 100'], + 0x22B7: [436,-96,1216,50,1166,'382 319h452c23 68 87 117 162 117c94 0 170 -76 170 -170s-76 -170 -170 -170c-76 0 -141 50 -162 119h-452c-21 -69 -86 -119 -162 -119c-94 0 -170 76 -170 170s76 170 170 170c75 0 139 -49 162 -117zM1096 266c0 55 -45 100 -100 100s-100 -45 -100 -100 s45 -100 100 -100s100 45 100 100'], + 0x22B9: [563,57,750,65,685,'419 347h-88v216h88v-216zM685 209h-216v88h216v-88zM281 297v-88h-216v88h216zM419 -57h-88v216h88v-216'], + 0x22BD: [697,28,640,52,588,'573 609h-506v88h506v-88zM588 536l-234 -564h-68l-234 564h94l174 -413l174 413h94'], + 0x22BE: [630,0,750,60,690,'690 0h-630v630h104v-181c177 -28 317 -168 345 -345h181v-104zM164 104h277c-27 140 -138 251 -277 278v-278'], + 0x22BF: [662,158,910,45,865,'865 -158h-820l820 820v-820zM777 -70v520l-521 -520h521'], + 0x22C0: [763,259,977,54,923,'923 -259h-115l-319 816l-320 -816h-115l394 1022h81'], + 0x22C1: [763,259,977,54,923,'923 763l-394 -1022h-81l-394 1022h115l320 -816l319 816h115'], + 0x22C2: [768,264,961,94,867,'867 -264h-110v681c0 128 -137 241 -277 241s-276 -113 -276 -241v-681h-110v701c0 194 170 331 392 331c199 0 381 -136 381 -331v-701'], + 0x22C3: [768,264,961,94,867,'867 768v-701c0 -195 -182 -331 -381 -331c-222 0 -392 137 -392 331v701h110v-681c0 -128 136 -241 276 -241s277 113 277 241v681h110'], + 0x22C7: [595,63,750,66,685,'461 508c0 -48 -39 -87 -87 -87s-87 39 -87 87s39 87 87 87s87 -39 87 -87zM685 29l-74 -74l-236 236l-235 -235l-74 74l185 185h-185v104h181l-181 181l74 74l235 -235l236 236l74 -74l-182 -182h182v-104h-186zM461 24c0 -48 -39 -87 -87 -87s-87 39 -87 87 s39 87 87 87s87 -39 87 -87'], + 0x22D5: [690,189,685,48,637,'637 106h-151v-295h-88v295h-111v-295h-88v295h-151v88h151v112h-151v88h151v296h88v-296h111v296h88v-296h151v-88h-151v-112h151v-88zM398 194v112h-111v-112h111'], + 0x22DC: [627,120,750,80,670,'670 539h-590v88h590v-88zM670 -120l-590 260v40l590 258v-88l-436 -190l436 -192v-88'], + 0x22DD: [627,120,750,80,670,'670 539h-590v88h590v-88zM670 140l-590 -260v88l436 192l-436 190v88l590 -258v-40'], + 0x22E2: [792,241,750,87,663,'663 -93h-390l-55 -148h-71l55 148h-115v88h148l34 90h-182v559h390l55 148h71l-55 -148h115v-88h-148l-143 -383h291v-88h-323l-34 -90h357v-88zM444 556h-269v-383h126'], + 0x22E3: [792,241,750,87,663,'663 -93h-390l-55 -148h-71l55 148h-115v88h148l34 90h-182v88h214l143 383h-357v88h390l55 148h71l-55 -148h115v-559h-323l-34 -90h357v-88zM575 173v383h-60l-143 -383h203'], + 0x22F0: [579,75,977,162,815,'815 494c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85zM573 252c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85zM332 10c0 -47 -38 -85 -85 -85s-85 38 -85 85s38 85 85 85s85 -38 85 -85'], + 0x22F6: [735,13,750,82,668,'668 647h-576v88h576v-88zM668 -13h-298c-175 0 -288 126 -288 280s113 280 291 280h295v-88h-311c-86 0 -162 -63 -182 -148h493v-88h-493c20 -86 97 -148 183 -148h310v-88'], + 0x22FD: [735,13,750,82,668,'658 647h-576v88h576v-88zM82 547h295c178 0 291 -126 291 -280s-113 -280 -288 -280h-298v88h310c86 0 163 62 183 148h-493v88h493c-20 85 -96 148 -182 148h-311v88'], + 0x2A0C: [824,320,1484,32,1664,'1165 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -72 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66 c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170zM855 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55 c0 9 -12 11 -17 11c-35 0 -63 -72 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170zM544 -108l178 711 c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -71 -87 -169l-177 -711c-13 -53 -42 -111 -86 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76 c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170zM234 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11 c-35 0 -63 -72 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170'], + 0x2A0D: [824,320,593,32,733,'334 292l78 311c14 57 49 114 90 156c39 40 85 65 142 65c48 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 29 27 42 27 55c0 8 -11 11 -17 11c-47 0 -79 -136 -87 -169l-80 -321h180v-80h-200l-78 -310c-27 -108 -111 -222 -232 -222 c-48 0 -89 24 -89 76c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -29 -27 -42 -27 -55c0 -8 10 -12 17 -12c47 0 79 137 87 170l80 320h-177v80h197'], + 0x2A0E: [824,320,593,32,733,'360 394l52 209c26 103 117 221 232 221c48 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 29 27 42 27 55c0 8 -11 11 -17 11c-47 0 -79 -136 -87 -169l-55 -219h155v-80h-175l-31 -125h206v-80h-226l-52 -207c-27 -108 -111 -222 -232 -222 c-48 0 -89 24 -89 76c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -29 -27 -42 -27 -55c0 -8 10 -12 17 -12c47 0 79 137 87 170l54 217h-151v80h171l32 125h-203v80h223'], + 0x2A0F: [824,320,593,32,733,'325 254l87 349c14 57 49 114 90 156c39 40 85 65 142 65c48 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 29 27 42 27 55c0 8 -11 11 -17 11c-47 0 -79 -136 -87 -169l-71 -285l172 95l38 -72l-237 -130l-80 -319c-27 -108 -111 -222 -232 -222 c-48 0 -89 24 -89 76c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -29 -27 -42 -27 -55c0 -8 10 -12 17 -12c47 0 79 137 87 170l64 254l-165 -90l-38 71'], + 0x2A10: [824,320,593,32,733,'383 490l29 113c14 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -62 -71 -87 -169l-38 -150c46 -25 83 -65 105 -113l-46 -24c-15 35 -40 64 -72 84l-85 -338 c27 2 53 10 75 22l24 -46c-33 -18 -71 -28 -111 -28h-1l-29 -118c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -43 -27 -56c0 -9 12 -11 17 -11c35 0 63 73 87 170l39 155 c-75 40 -125 118 -125 208c0 130 105 235 235 235zM369 437v1c-94 -7 -169 -86 -169 -183c0 -65 34 -123 86 -155'], + 0x2A11: [824,320,593,32,733,'363 407l49 196c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -71 -87 -169l-53 -214l-51 -200c54 8 100 37 129 87c2 3 4 7 4 11c0 5 -5 7 -9 7 c-20 0 -40 -6 -59 -11l-9 30c46 6 91 20 131 45l5 -2c13 -47 33 -85 59 -125l-24 -12c-5 11 -25 49 -38 49c-6 0 -11 -10 -14 -14c-11 -19 -22 -38 -37 -53c-38 -39 -96 -65 -151 -68l-61 -241c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76 c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 72 87 170l69 275c-73 37 -124 113 -124 201h52c0 -61 34 -119 85 -150'], + 0x2A12: [824,320,613,32,733,'473 253c0 -50 -40 -90 -90 -90c-54 0 -90 36 -90 90c0 49 41 90 90 90s90 -41 90 -90zM369 435l43 168c14 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11 c-35 0 -62 -71 -87 -169l-32 -126h1h139v-470h-254h-3l-29 -115c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 72 87 170l44 177h309v366h-99h-119'], + 0x2A13: [824,320,593,32,733,'473 253c0 -46 -36 -90 -90 -90c-53 0 -90 35 -90 90c0 54 46 90 90 90c46 0 90 -37 90 -90zM370 438l42 165c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11 c-35 0 -62 -71 -87 -169l-38 -150c74 -40 125 -118 125 -208c0 -130 -105 -235 -235 -235h-1l-29 -118c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -43 -27 -56c0 -9 12 -11 17 -11 c35 0 63 72 87 170l52 208c28 -18 61 -28 97 -28c101 0 183 82 183 183s-82 183 -183 183h-13'], + 0x2A14: [824,320,675,32,735,'590 253c0 -46 -36 -90 -90 -90c-53 0 -90 35 -90 90c0 54 46 90 90 90c46 0 90 -37 90 -90zM531 613l-31 -123c130 0 235 -105 235 -235s-105 -235 -235 -235c-40 0 -78 10 -111 28l-36 -146c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76 c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 72 87 170l84 340c12 -90 89 -160 182 -160c101 0 183 82 183 183s-82 183 -183 183c-61 0 -114 -30 -148 -75l60 240c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75 c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -71 -87 -169'], + 0x2A15: [824,320,593,32,733,'473 253c0 -50 -40 -90 -90 -90c-54 0 -90 36 -90 90c0 49 41 90 90 90s90 -41 90 -90zM383 490l29 113c27 103 116 221 232 221c48 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 30 27 42 27 55c0 8 -11 11 -17 11c-47 0 -79 -136 -87 -169l-38 -150 c77 -41 125 -121 125 -208c0 -130 -106 -235 -236 -235l-29 -118c-27 -108 -111 -222 -232 -222c-48 0 -89 24 -89 76c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -29 -27 -43 -27 -56c0 -8 11 -11 17 -11c47 0 79 137 87 170l39 155c-77 41 -125 121 -125 208 c0 130 105 235 235 235zM566 255c0 101 -82 183 -183 183s-183 -82 -183 -183s82 -183 183 -183s183 82 183 183'], + 0x2A16: [824,320,623,32,733,'383 487l29 116c26 103 117 221 232 221c48 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 29 27 42 27 55c0 8 -11 11 -17 11c-47 0 -79 -136 -87 -169l-32 -126h140v-470h-257l-29 -115c-27 -108 -111 -222 -232 -222c-48 0 -89 24 -89 76 c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -29 -27 -42 -27 -55c0 -8 10 -12 17 -12c47 0 79 137 87 170l31 125h-139v470h257zM587 69v366h-101l-91 -366h192zM370 435h-192v-366h100'], + 0x2A17: [824,320,791,32,871,'537 312h197c76 0 137 -62 137 -138c0 -65 -56 -135 -124 -135h-81v81h78c27 0 43 28 46 52v2c0 33 -27 57 -59 57h-214l-82 -329c-27 -108 -111 -222 -232 -222c-48 0 -89 24 -89 76c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -29 -27 -42 -27 -55c0 -8 10 -12 17 -12 c47 0 79 137 87 170l84 339h-185c-7 0 -17 -7 -17 -15s7 -14 12 -20c31 -32 61 -65 86 -102l-23 -23c-68 79 -143 151 -241 192v14c98 42 175 117 244 196l21 -24c-18 -25 -37 -49 -58 -72l-28 -30c-5 -6 -12 -14 -12 -23c0 -10 6 -12 15 -12h207l73 291 c14 57 49 114 90 156c39 40 85 65 142 65c48 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 29 27 42 27 55c0 8 -11 11 -17 11c-47 0 -79 -136 -87 -169'], + 0x2A18: [824,320,633,32,733,'347 344l65 259c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -62 -71 -87 -169l-55 -219l118 107l60 -60l-209 -190l199 -188l-60 -60l-166 157l-65 -258 c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 72 87 170l54 216l-116 -105l-60 60l208 189l-199 189l60 60'], + 0x2A19: [824,320,653,32,733,'390 514l22 89c26 103 117 221 232 221c48 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 30 27 42 27 55c0 8 -11 11 -17 11c-47 0 -79 -136 -87 -169l-32 -126c104 -48 171 -151 171 -266v-232h-80v232c0 78 -43 149 -110 186l-127 -505 c-27 -108 -111 -222 -232 -222c-48 0 -89 24 -89 76c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -30 -27 -42 -27 -55c0 -8 10 -12 17 -12c46 0 79 137 87 170l136 542c-116 -3 -207 -98 -207 -213v-232h-80v232c0 164 132 293 294 293h13'], + 0x2A1A: [824,320,653,32,733,'284 94l128 509c14 57 49 114 90 156c39 40 85 65 142 65c48 0 89 -23 89 -75c0 -44 -33 -79 -78 -79c-25 0 -47 21 -47 46c0 30 27 42 27 55c0 8 -11 11 -17 11c-47 0 -79 -136 -87 -169l-136 -544c113 6 203 99 203 213v232h80v-232c0 -163 -133 -293 -294 -293h-9 l-22 -87c-27 -108 -111 -222 -232 -222c-48 0 -89 24 -89 76c0 44 33 79 78 79c25 0 47 -21 47 -46c0 -30 -27 -42 -27 -55c0 -8 10 -12 17 -12c46 0 79 137 87 170l31 122c-106 47 -174 152 -174 268v232h80v-232c0 -79 44 -152 113 -188'], + 0x2A1B: [959,320,557,32,737,'737 879h-506v80h506v-80zM234 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -71 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156 c-35 -36 -85 -66 -147 -66c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170'], + 0x2A1C: [824,455,557,32,737,'238 -108l178 711c13 53 46 111 90 156c35 36 80 65 142 65c60 0 89 -33 89 -75c0 -39 -28 -79 -78 -79c-22 0 -47 18 -47 46c0 30 27 42 27 55c0 9 -12 11 -17 11c-35 0 -63 -72 -87 -169l-178 -711c-13 -53 -41 -111 -85 -156c-35 -36 -85 -66 -147 -66 c-60 0 -89 34 -89 76c0 39 28 79 78 79c22 0 47 -18 47 -46c0 -30 -27 -42 -27 -55c0 -9 12 -12 17 -12c35 0 63 73 87 170zM538 -455h-506v80h506v-80'], + 0x2A22: [894,57,750,65,685,'519 750c0 -80 -64 -144 -145 -144c-80 0 -144 64 -144 144s64 144 144 144c81 0 145 -64 145 -144zM449 751c0 46 -30 73 -75 73c-46 0 -74 -28 -74 -74c0 -47 28 -74 75 -74c45 0 74 28 74 75zM685 209h-266v-266h-88v266h-266v88h266v266h88v-266h266v-88'], + 0x2A23: [736,57,750,65,685,'546 560h-57l-112 98l-112 -98h-56l122 176h92zM685 209h-266v-266h-88v266h-266v88h266v266h88v-266h266v-88'], + 0x2A24: [746,57,750,65,685,'553 746h39c-5 -73 -55 -163 -127 -163c-66 0 -148 88 -189 88c-34 0 -68 -32 -79 -88h-40c4 86 60 163 130 163c66 0 149 -88 189 -88c35 0 65 31 77 88zM685 209h-266v-266h-88v266h-266v88h266v266h88v-266h266v-88'], + 0x2A25: [563,287,750,65,685,'685 209h-266v-266h-88v266h-266v88h266v266h88v-266h266v-88zM457 -205c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82'], + 0x2A26: [563,240,750,65,685,'685 209h-266v-266h-88v266h-266v88h266v266h88v-266h266v-88zM552 -77h40c-4 -86 -60 -163 -130 -163c-66 0 -149 88 -189 88c-35 0 -65 -31 -77 -88h-39c5 73 55 163 127 163c66 0 148 -88 189 -88c34 0 68 32 79 88'], + 0x2A27: [563,247,780,65,778,'685 209h-266v-266h-88v266h-266v88h266v266h88v-266h266v-88zM778 -120l-30 -127h-270v14c150 149 184 197 184 255c0 42 -33 76 -75 76c-34 0 -55 -15 -76 -54h-24c34 84 79 122 144 122c70 0 119 -46 119 -111c0 -44 -20 -79 -74 -130l-93 -87v-5h86c66 0 74 4 93 47 h16'], + 0x2A2A: [297,37,750,66,685,'685 209h-619v88h619v-88zM456 45c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82'], + 0x2A2B: [543,37,750,66,685,'685 45c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82zM685 209h-619v88h619v-88zM230 461c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82'], + 0x2A2C: [543,37,750,66,685,'685 461c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82zM685 209h-619v88h619v-88zM230 45c0 -45 -37 -82 -82 -82s-82 37 -82 82s37 82 82 82s82 -37 82 -82'], + 0x2A30: [745,33,702,66,636,'433 661c0 -46 -38 -83 -84 -83s-83 37 -83 83s37 84 83 84s84 -38 84 -84zM636 29l-62 -62l-223 224l-223 -224l-62 62l223 224l-222 223l62 62l222 -223l223 223l62 -62l-223 -223'], + 0x2A31: [538,191,702,66,636,'636 29l-62 -62l-223 224l-223 -224l-62 62l223 224l-222 223l62 62l222 -223l223 223l62 -62l-223 -223zM574 -191h-446v88h446v-88'], + 0x2A32: [538,59,702,66,636,'636 -59h-570v88l223 224l-222 223l62 62l222 -223l223 223l62 -62l-223 -223l223 -224v-88zM512 29l-161 162l-161 -162h322'], + 0x2A63: [536,379,640,52,588,'588 536l-234 -564h-68l-234 564h94l174 -413l174 413h94zM573 -189h-506v88h506v-88zM573 -379h-506v88h506v-88'], + 0x2A66: [399,161,750,68,682,'682 311h-614v88h614v-88zM682 107h-614v88h614v-88zM458 -77c0 -46 -37 -84 -83 -84s-84 38 -84 84s38 83 84 83s83 -37 83 -83'], + 0x2A67: [775,-27,750,68,682,'458 691c0 -46 -37 -83 -83 -83s-84 37 -84 83s38 84 84 84s83 -38 83 -84zM682 419h-614v88h614v-88zM682 223h-614v88h614v-88zM682 27h-614v88h614v-88'], + 0x2A6A: [565,-132,750,67,682,'457 481c0 -46 -38 -83 -84 -83s-83 37 -83 83s37 84 83 84s84 -38 84 -84zM628 374h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136'], + 0x2A6D: [759,60,750,68,683,'458 675c0 -46 -38 -83 -84 -83s-83 37 -83 83s37 84 83 84s84 -38 84 -84zM629 568h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM682 144h-614v88h614v-88 zM682 -60h-614v88h614v-88'], + 0x2A6E: [884,-107,750,68,682,'386 690l7 -3c37 29 46 36 72 74c20 31 34 38 56 38c27 0 53 -22 53 -48c0 -33 -44 -53 -82 -53c-44 0 -56 -4 -89 -26v-8c36 -17 51 -24 97 -28c54 -4 73 -18 73 -51c0 -29 -17 -50 -49 -50c-27 0 -39 14 -75 62c-20 27 -28 35 -57 50l-6 -4c1 -45 8 -60 27 -98 c11 -21 15 -33 15 -45c0 -30 -22 -52 -51 -52c-27 0 -49 21 -49 52c0 16 4 24 16 46c20 34 22 51 23 97l-6 4c-38 -28 -47 -36 -74 -75c-21 -31 -34 -37 -55 -37c-28 0 -50 20 -50 48c0 37 32 49 84 53c42 3 54 7 86 29v7c-40 18 -56 22 -102 26c-52 4 -68 28 -68 53 c0 29 19 48 47 48s42 -9 62 -43c23 -40 33 -48 71 -69l5 3c-1 42 -2 52 -23 91c-14 25 -18 36 -18 53c0 29 22 50 52 50c28 0 48 -22 48 -55c0 -15 -5 -24 -18 -47c-18 -30 -22 -47 -22 -77v-15zM682 311h-614v88h614v-88zM682 107h-614v88h614v-88'], + 0x2A6F: [752,-26,750,68,683,'546 576h-57l-112 98l-112 -98h-56l122 176h92zM629 508h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM629 268h54c-7 -104 -66 -224 -174 -224 c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136'], + 0x2A70: [680,176,750,68,683,'629 680h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM629 440h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54 c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM681 28h-590v88h590v-88zM681 -176h-590v88h590v-88'], + 0x2A71: [665,159,750,65,685,'685 577h-619v88h619v-88zM685 373h-619v88h619v-88zM685 47h-266v-206h-88v206h-266v88h266v215h88v-215h266v-88'], + 0x2A72: [665,159,750,65,685,'685 371h-266v-215h-88v215h-266v88h266v206h88v-206h266v-88zM684 45h-619v88h619v-88zM684 -159h-619v88h619v-88'], + 0x2A73: [568,60,750,67,682,'682 480h-614v88h614v-88zM682 276h-614v88h614v-88zM628 182h54c-6 -119 -72 -224 -179 -224c-105 0 -204 118 -268 118c-60 0 -94 -55 -114 -136h-54c7 104 66 224 174 224c104 0 204 -118 273 -118c60 0 94 55 114 136'], + 0x2A9D: [689,183,750,67,682,'628 689h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM672 -183l-590 258v40l590 260v-88l-436 -192l436 -190v-88'], + 0x2A9E: [689,183,750,67,682,'628 689h54c-7 -104 -66 -224 -174 -224c-104 0 -204 118 -273 118c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c105 0 204 -118 268 -118c60 0 94 55 114 136zM672 75l-590 -258v88l436 190l-436 192v88l590 -260v-40'], + 0x2ABD: [547,13,750,82,668,'499 267c0 -38 -31 -69 -69 -69s-69 31 -69 69s31 69 69 69s69 -31 69 -69zM668 -13h-298c-175 0 -288 126 -288 280s113 280 291 280h295v-88h-311c-100 0 -187 -85 -187 -192c0 -108 88 -192 188 -192h310v-88'], + 0x2ABE: [547,13,750,82,668,'82 547h295c178 0 291 -126 291 -280s-113 -280 -288 -280h-298v88h310c100 0 188 84 188 192c0 107 -87 192 -187 192h-311v88zM389 267c0 -38 -31 -69 -69 -69s-69 31 -69 69s31 69 69 69s69 -31 69 -69'], + 0xE00E: [819,339,750,80,670,'670 -222h-398l-35 -117h-73l35 117h-119v88h146l35 116h-181v88h207l67 221l-274 -120v88l304 133l31 102l-335 147v88l358 -158l75 248h73l-83 -276l167 -74v-40l-232 -102l-78 -257h310v-88h-336l-35 -116h371v-88zM516 449l-37 16l-11 -37'], + 0xE00F: [742,235,750,80,670,'670 114l-389 -170l-53 -179h-73l42 142l-117 -52v88l148 65l52 172l-200 -87v88l230 100l48 159l-278 123v88l302 -133l67 224h73l-76 -253l224 -98v-40l-306 -134l-52 -172l358 157v-88zM516 371l-93 41l-29 -94'], + 0xE010: [742,235,750,80,670,'670 -145l-367 161l-75 -251h-73l84 279l-159 70v88l182 -80l40 132l-222 97v40l304 134l65 217h73l-54 -180l202 89v-88l-233 -102l-47 -158l280 -122v-88l-303 133l-40 -132l343 -151v-88zM353 423l-119 -52l91 -40'], + 0xE011: [819,339,750,80,670,'670 -222h-398l-35 -117h-73l35 117h-119v88h146l35 116h-181v88h207l72 237l-279 122v40l378 166l55 184h73l-44 -146l128 56v-88l-159 -70l-64 -215l223 -97v-88l-247 108l-63 -209h310v-88h-336l-35 -116h371v-88zM427 534l-193 -85l148 -65'], + 0xE023: [742,235,750,68,683,'453 640c0 -43 -35 -78 -77 -78s-77 35 -77 78c0 42 35 76 77 76s77 -34 77 -76zM629 557h54c-7 -104 -66 -224 -174 -224c-17 0 -34 3 -50 8l-52 -108h275v-88h-317l-51 -108h368v-88h-410l-87 -184h-76l87 184h-128v88h170l51 108h-221v88h263l65 136 c-61 35 -117 82 -160 82c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c68 0 134 -51 189 -86l137 289h76l-151 -319c6 -1 11 -2 17 -2c60 0 94 55 114 136'], + 0xE025: [852,345,750,67,683,'629 427h54c-7 -104 -66 -224 -174 -224c-36 0 -71 13 -105 32l-30 -96h308v-88h-336l-30 -96h366v-88h-393l-66 -212h-72l66 212h-150v88h177l30 96h-206v88h234l41 133c-40 26 -77 49 -107 49c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c43 0 86 -21 125 -44 l27 85c-62 35 -119 83 -163 83c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c65 0 127 -43 180 -80l98 311h72l-108 -344c9 -3 18 -5 26 -5c60 0 94 55 114 136h54c-7 -104 -66 -224 -174 -224c-16 0 -31 2 -47 7l-30 -96c31 -20 59 -35 83 -35c60 0 94 55 114 136'], + 0xE028: [672,166,1000,38,961,'961 -24l-354 154l-23 -47l44 -19v-88l-81 35l-89 -177h-77l103 205l-446 195v40l590 260v-88l-436 -192l329 -143l23 47l-173 76v40l298 131l135 267h77l-113 -223l193 85v-88l-250 -110l-68 -134l318 -138v-88zM612 292l-87 -38l55 -25'], + 0xE029: [672,166,1000,38,961,'961 234l-590 -258v88l436 190l-341 150l-24 -48l186 -82v-40l-318 -140l-132 -260h-77l110 217l-173 -75v88l230 100l74 148l-304 134v88l340 -150l25 48l-32 14v88l68 -30l85 168h77l-99 -196l459 -202v-40zM474 254l-69 30l-39 -77'], + 0xE037: [672,166,750,67,682,'682 107h-184l144 -273h-78l-144 273h-353v88h307l-61 116h-246v88h199l-144 273h78l144 -273h338v-88h-291l61 -116h230v-88'], + 0xE04D: [553,47,750,68,683,'629 285h54c-7 -104 -66 -224 -174 -224c-34 0 -67 12 -99 29v-137h-70v179c-39 25 -75 47 -104 47c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c32 0 63 -11 93 -26v134h-272v88h272v90h70v-90h272v-88h-272v-176c40 -27 76 -50 105 -50c60 0 94 55 114 136'], + 0xE050: [672,166,750,87,663,'663 -27h-353l-52 -139h-74l52 139h-149v559h358l52 140h74l-52 -140h144v-88h-177l-143 -383h320v-88zM412 444h-237v-383h94'], + 0xE051: [672,166,750,87,663,'663 -27h-383l-52 -139h-74l52 139h-119v88h152l143 383h-295v88h328l52 140h74l-52 -140h174v-559zM575 61v383h-119l-143 -383h262'], + 0xE052: [574,69,750,68,683,'683 107h-169c-20 -44 -62 -85 -138 -85c-32 0 -60 7 -81 19l-58 -110h-78l85 160c-3 5 -5 11 -7 16h-169v88h223c0 -4 1 -8 2 -11l109 208c-7 2 -16 4 -25 4c-55 0 -82 -44 -86 -85h-223v88h169c20 44 62 85 138 85c26 0 49 -5 69 -14l54 104h78l-77 -147 c6 -9 11 -19 15 -28h169v-88h-223c-1 10 -4 20 -7 30l-116 -221c11 -6 25 -10 40 -10c54 0 80 44 83 85h223v-88'], + 0xE05B: [574,-16,750,68,683,'683 107h-355l-46 -91h-79l46 91h-181v88h226l101 199c-6 1 -12 2 -18 2c-50 0 -81 -38 -86 -85h-223v88h169c26 57 76 85 138 85c19 0 40 -4 60 -11l51 101h80l-72 -141c9 -10 16 -21 20 -34h169v-88h-223c-1 13 -4 25 -9 37l-78 -153h310v-88'], + 0xE05C: [553,31,750,68,683,'629 285h54c-6 -96 -61 -224 -174 -224c-55 0 -108 32 -153 61l-66 -153h-72l81 186c-21 12 -38 24 -63 24c-71 0 -100 -79 -114 -136h-54c5 102 61 224 179 224c33 0 60 -11 89 -26l58 134h-326v88h364l40 90h72l-40 -90h178v-88h-216l-72 -166c30 -19 86 -60 121 -60 c71 0 100 79 114 136'], + 0xE06D: [835,113,750,82,668,'668 -13h-298c-39 0 -75 6 -107 18l-49 -118h-69l60 146c-78 50 -123 136 -123 234c0 154 113 280 291 280h44l41 100h-366v88h403l41 100h69l-41 -100h104v-88h-141l-41 -100h182v-88h-218l-61 -148h279v-88h-315l-57 -137c20 -7 41 -11 62 -11h310v-88zM381 459h-24 c-86 0 -162 -63 -182 -148h145zM284 223h-109c10 -42 34 -79 65 -105'], + 0xE06E: [835,113,750,82,668,'529 647l-48 -116c116 -39 187 -143 187 -264c0 -166 -125 -280 -288 -280h-123l-42 -100h-69l42 100h-106v88h142l61 148h-203v88h240l61 148h-301v88h295c14 0 27 -1 41 -2l42 102h-378v88h414l41 100h69l-41 -100h93v-88h-129zM391 311h184c-15 65 -64 119 -127 139z M575 223h-221l-61 -148h99c87 0 163 64 183 148'], + 0xE06F: [835,113,750,82,668,'668 -13h-261v-100h-64v101c-160 12 -261 133 -261 279c0 145 100 265 261 279v101h-251v88h251v100h64v-100h261v-88h-261v-100h261v-88h-261v-148h261v-88h-261v-148h261v-88zM343 311v147c-80 -6 -149 -66 -168 -147h168zM343 76v147h-168c19 -81 88 -141 168 -147'], + 0xE070: [835,113,750,82,668,'407 647v-101c161 -14 261 -134 261 -279c0 -146 -101 -267 -261 -279v-101h-64v100h-261v88h261v148h-261v88h261v148h-261v88h261v100h-261v88h261v100h64v-100h251v-88h-251zM407 311h168c-19 81 -88 141 -168 147v-147zM575 223h-168v-147c80 6 149 66 168 147'], + 0xE07E: [738,230,750,80,670,'670 -140l-259 114v-204h-72v236l-259 114v88l259 -114v142l-259 114v40l259 113v235h72v-203l259 113v-88l-259 -113v-155l259 -114v-88l-259 114v-142l259 -114v-88zM339 324v92l-105 -46'], + 0xE07F: [742,234,750,80,670,'670 120l-264 -116v-238h-72v206l-254 -112v88l254 112v142l-254 -112v88l254 112v160l-254 110v88l254 -111v205h72v-236l264 -116v-40l-264 -116v-142l264 116v-88zM516 370l-110 48v-96'], + 0xE080: [819,337,750,80,670,'670 -222h-259v-115h-72v115h-259v88h259v116h-259v88h259v247l-259 114v40l259 113v235h72v-204l259 114v-88l-259 -113v-155l259 -114v-88l-259 114v-215h259v-88h-259v-116h259v-88zM339 404v92l-105 -45'], + 0xE081: [820,342,750,91,681,'681 -221h-259v-121h-72v121h-259v88h259v116h-259v88h259v215l-259 -114v88l259 114v155l-259 113v88l259 -114v204h72v-235l259 -113v-40l-259 -114v-247h259v-88h-259v-116h259v-88zM527 452l-105 45v-92'], + 0xE082: [742,235,750,80,670,'670 -140l-365 160l-77 -255h-73l85 283l-160 70v40l223 98l49 164l-272 -120v88l303 133l66 221h73l-55 -184l203 90v-88l-234 -103l-49 -164l283 125v-88l-314 -138l-28 -95l342 -149v-88zM272 155l-38 -17l29 -13'], + 0xE083: [742,234,750,80,670,'670 118l-400 -175l-57 -177h-72l45 141l-106 -47v88l139 60l73 228l-212 94v88l237 -105l40 125l-277 122v88l302 -133l73 227h72l-82 -255l225 -99v-88l-250 110l-40 -125l290 -127v-40zM516 138l-161 70l-52 -163'], + 0xE084: [738,230,750,80,670,'670 -140l-259 113v-203h-72v235l-259 113v40l259 114v142l-259 -114v88l259 114v236h72v-204l259 114v-88l-259 -114v-142l259 114v-88l-259 -114v-155l259 -113v-88zM339 92v92l-105 -46'], + 0xE085: [742,234,750,80,670,'670 118l-264 -116v-236h-72v205l-254 -111v88l254 110v160l-254 112v88l254 -112v142l-254 112v88l254 -112v206h72v-238l264 -116v-88l-264 116v-142l264 -116v-40zM516 138l-110 48v-96'], + 0xE3C3: [747,243,750,68,683,'629 328h54c-7 -104 -66 -224 -174 -224c-39 0 -77 16 -113 37v-113h286v-88h-286v-183h-72v183h-256v88h256v157c-33 21 -63 37 -88 37c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c26 0 52 -8 77 -19v134c-33 21 -63 37 -88 37c-60 0 -94 -55 -114 -136h-54 c6 119 72 224 179 224c26 0 52 -8 77 -19v216h72v-256c46 -29 87 -59 119 -59c60 0 94 55 114 136h54c-7 -104 -66 -224 -174 -224c-39 0 -77 16 -113 37v-130c46 -29 87 -59 119 -59c60 0 94 55 114 136'], + 0xE3C4: [747,243,750,68,683,'629 328h54c-6 -96 -61 -224 -174 -224c-48 0 -89 22 -129 47l-39 -123h341v-88h-369l-57 -183h-72l57 183h-173v88h201l50 160c-22 14 -56 34 -83 34c-71 0 -100 -79 -114 -136h-54c5 102 61 224 179 224c36 0 70 -14 101 -32l35 111c-32 20 -108 73 -147 73 c-71 0 -100 -79 -114 -136h-54c5 102 61 224 179 224c55 0 103 -33 149 -59c5 -3 10 -7 15 -10l84 266h72l-95 -302c13 -7 28 -13 43 -13c71 0 100 79 114 136h54c-6 -96 -61 -224 -174 -224c-22 0 -44 5 -64 13l-36 -114c26 -17 74 -51 106 -51c71 0 100 79 114 136'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Operators/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Operators/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Operators/Regular/Main.js new file mode 100644 index 0000000..0dd121d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Operators/Regular/Main.js @@ -0,0 +1,436 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Operators/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Operators'] = { + directory: 'Operators/Regular', + family: 'STIXMathJax_Operators', + id: 'STIXWEBOPERATORS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2206: [674,0,731,63,665,'665 0h-602l287 674h20zM543 41l-208 494l-209 -494h417'], + 0x220A: [459,-45,486,64,422,'422 45h-149c-124 0 -209 92 -209 207c0 116 86 207 211 207h147v-66h-147c-80 0 -131 -36 -144 -108h291v-66h-291c14 -72 65 -108 145 -108h146v-66'], + 0x220C: [662,157,685,60,625,'577 662l-84 -169c81 -50 132 -142 132 -241c0 -148 -114 -279 -274 -279h-117l-65 -130h-62l65 130h-112v66h145l90 180h-235v66h267l85 170c-20 6 -40 10 -62 10h-290v66h294c32 0 61 -5 89 -15l72 146h62zM389 285h167c-10 57 -46 111 -95 144zM557 219h-200l-90 -180 h84c103 0 189 85 206 180'], + 0x220E: [640,0,545,60,485,'485 0h-425v640h425v-640'], + 0x220F: [763,259,1000,52,948,'948 -259h-368v28h32c70 0 88 57 88 134v794h-399v-794c0 -93 22 -134 88 -134h31v-28h-368v28h19c67 0 99 36 99 109v733c0 99 -39 124 -101 124h-17v28h896v-28c-89 0 -117 -35 -117 -120v-719c0 -85 33 -127 99 -127h18v-28'], + 0x2210: [763,259,1000,52,948,'948 -259h-896v28h17c62 0 101 25 101 124v733c0 73 -32 109 -99 109h-19v28h368v-28h-31c-66 0 -88 -41 -88 -134v-794h399v794c0 77 -18 134 -88 134h-32v28h368v-28h-18c-66 0 -99 -42 -99 -127v-719c0 -85 28 -120 117 -120v-28'], + 0x2211: [763,259,914,58,856,'856 40l-53 -299h-745l392 510l-367 512h747v-251h-30c-21 135 -59 185 -192 185h-320l290 -391l-336 -434h414c112 0 148 68 170 168h30'], + 0x221B: [973,259,928,112,963,'298 762l-12 2c15 49 47 82 100 82c48 0 80 -27 80 -69c0 -24 -17 -55 -45 -73c46 -17 72 -40 72 -90c0 -79 -75 -119 -152 -119c-37 0 -57 17 -57 35c0 10 9 19 21 19c9 0 17 -4 31 -14c19 -14 30 -16 44 -16c38 0 66 29 66 72c0 39 -18 63 -53 74c-11 4 -22 5 -52 5v11 c42 15 85 34 85 83c0 35 -22 52 -55 52c-32 0 -51 -16 -73 -54zM963 973l-478 -1232h-32l-202 530c-17 45 -37 59 -62 59c-17 0 -43 -11 -65 -31l-12 20l156 124h19l204 -536h4l414 1066h54'], + 0x221C: [973,259,928,112,963,'503 583h-52v-84h-48v84h-142v41l160 219h30v-219h52v-41zM403 624v165l-120 -165h120zM963 973l-478 -1232h-32l-202 530c-17 45 -37 59 -62 59c-17 0 -43 -11 -65 -31l-12 20l156 124h19l204 -536h4l414 1066h54'], + 0x221F: [584,0,685,50,634,'634 0h-584v584h66v-518h518v-66'], + 0x222C: [824,320,701,32,881,'446 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26 c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165zM204 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202 c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165'], + 0x222D: [824,320,943,32,1123,'688 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26 c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165zM445 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202 c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165zM204 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8 c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165'], + 0x222E: [824,320,499,32,639,'353 476l33 130c20 80 68 218 188 218c40 0 65 -21 65 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-39 -158c80 -34 136 -114 136 -207c0 -124 -101 -225 -225 -225c-7 0 -13 0 -19 1l-36 -145 c-20 -81 -70 -202 -182 -202c-40 0 -65 21 -65 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l42 168c-81 35 -137 114 -137 207c0 124 101 225 225 225h19zM324 64h10c103 0 187 84 187 187c0 75 -44 140 -108 170z M344 438h-10c-103 0 -187 -84 -187 -187c0 -75 44 -140 108 -170'], + 0x222F: [824,320,741,32,881,'592 462l36 144c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-44 -177c92 -41 148 -109 148 -187c0 -103 -98 -190 -249 -216l-38 -154c-20 -81 -80 -202 -192 -202 c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l37 152c-7 -1 -15 -1 -23 -1c-51 0 -99 6 -141 17l-40 -162c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26 c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l48 193c-89 41 -142 108 -142 183c0 101 94 187 241 215l35 139c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177 l-35 -139h33c48 0 92 -5 132 -15zM650 399l-80 -321c116 28 200 95 200 174c0 59 -48 112 -120 147zM493 67l89 356c-39 11 -81 16 -126 16c-13 0 -26 0 -39 -1l-88 -357c38 -10 81 -16 127 -16c12 0 25 1 37 2zM261 107l80 319c-115 -27 -193 -95 -193 -174 c0 -58 44 -111 113 -145'], + 0x2230: [824,320,982,32,1122,'830 450l39 156c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-47 -188c96 -38 150 -98 150 -176c0 -101 -90 -171 -245 -204l-41 -166c-20 -81 -80 -202 -192 -202 c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l39 160c-45 -6 -95 -9 -148 -9h-22l-36 -145c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26 c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l38 154c-60 4 -114 11 -162 23l-42 -171c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l49 198 c-94 36 -146 95 -146 178c0 93 88 166 241 202l38 152c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-37 -148c46 6 98 9 153 9h17l32 129c20 80 78 218 198 218 c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -74 -72 -101 -177l-36 -142c61 -4 115 -12 163 -24zM888 389l-75 -301c119 28 197 80 197 164c0 60 -46 106 -122 137zM736 75l84 337c-48 12 -103 20 -162 24 l-93 -371h7c58 0 114 3 164 10zM585 439h-13c-56 0 -109 -4 -157 -11l-84 -337c47 -12 102 -20 162 -23zM263 114l74 298c-117 -32 -192 -89 -192 -160c0 -60 44 -106 118 -138'], + 0x2231: [824,320,499,32,639,'326 366l60 240c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-66 -267c49 -21 89 -59 113 -107c3 -6 7 -8 11 -8c6 0 10 6 14 13c8 21 18 43 30 61l12 -6 c-22 -48 -42 -102 -42 -157l-5 -3c-40 38 -94 59 -145 76l3 12c21 -4 43 -11 65 -19c3 -1 6 -2 9 -2c7 0 14 4 14 12c0 0 0 3 -1 5l-5 10c-17 34 -48 60 -83 76l-107 -430c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26 c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l113 453h-9c-103 0 -187 -84 -187 -187h-38c0 124 101 225 225 225c6 0 12 0 18 -1'], + 0x2232: [824,320,499,32,639,'353 476l33 130c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-39 -157c49 -21 89 -58 113 -106c3 -6 8 -9 12 -9c6 0 10 6 14 13c8 21 19 43 31 61l11 -6 c-25 -48 -44 -104 -44 -160c0 -124 -101 -225 -225 -225c-7 0 -13 0 -20 1l-36 -146c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l42 169c-80 35 -136 115 -136 207 c0 124 101 225 225 225c6 0 12 0 18 -1zM325 65h10c103 0 187 84 187 187c0 9 -1 18 -2 26c-33 23 -72 38 -110 50l4 12c21 -4 43 -10 65 -18c3 -1 6 -2 9 -2c7 0 15 3 15 11c-1 2 -1 5 -2 7c-19 37 -50 66 -88 84zM344 439h-9c-103 0 -187 -84 -187 -187 c0 -74 44 -139 107 -169'], + 0x2233: [824,320,499,32,639,'354 477l32 129c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-39 -157c25 -11 49 -26 69 -46c38 -31 93 -50 140 -63l-3 -13c-26 1 -62 16 -77 16c-6 0 -11 -2 -11 -8 c0 -2 1 -5 1 -5c11 -27 18 -57 18 -88c0 -124 -101 -225 -225 -225c-7 0 -13 0 -20 1l-36 -146c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l42 169 c-80 35 -136 115 -136 207c0 124 101 225 225 225h19zM325 65h10c103 0 187 84 187 187c0 25 -5 49 -14 71c-2 4 -6 5 -10 5c-7 0 -13 -7 -16 -14c-10 -21 -19 -41 -31 -62l-12 6c15 37 31 77 36 118c-17 19 -38 35 -62 46zM344 439h-9c-103 0 -187 -84 -187 -187 c0 -74 44 -139 107 -169'], + 0x2236: [521,13,511,192,319,'319 458c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM319 51c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x2237: [521,13,685,82,602,'602 458c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM209 458c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM602 51c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63zM209 51 c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x2238: [511,-220,685,48,637,'405 448c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 220h-589v66h589v-66'], + 0x2239: [511,5,685,48,637,'637 448c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 59c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63zM448 220h-400v66h400v-66'], + 0x223A: [511,5,685,48,637,'637 448c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 59c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 220h-589v66h589v-66zM175 448c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63 zM175 59c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x223B: [521,13,685,48,637,'415 458c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM617 362h20c-6 -85 -60 -214 -158 -214c-96 0 -213 148 -285 148c-70 0 -110 -77 -126 -148h-20c5 100 65 214 163 214c96 0 213 -148 286 -148c69 0 103 77 120 148zM415 51 c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x223E: [413,-90,685,48,637,'502 347v66c44 0 135 -27 135 -165c0 -104 -68 -158 -132 -158c-32 0 -58 12 -81 31c-54 44 -110 153 -155 194c-22 21 -45 32 -81 32c-64 0 -110 -34 -110 -103c0 -62 51 -88 111 -88v-66c-94 0 -141 87 -141 160c0 101 70 163 137 163c41 0 69 -15 98 -48 c35 -39 81 -121 128 -171c20 -21 45 -38 86 -38c64 0 110 34 110 103c0 60 -44 88 -105 88'], + 0x223F: [467,-39,685,49,637,'576 252h61c0 -107 -63 -213 -163 -213s-146 82 -166 214c-12 81 -34 148 -96 148c-66 0 -102 -68 -102 -149h-61c0 109 63 215 163 215s149 -81 167 -214c11 -80 33 -148 95 -148c65 0 101 68 102 147'], + 0x2244: [519,35,685,48,637,'637 55h-356l-39 -90h-54l39 90h-179v66h208l78 179c-53 38 -103 79 -140 79c-70 0 -110 -77 -126 -148h-20c5 100 65 214 163 214c48 0 102 -38 153 -76l65 150h54l-78 -180c34 -24 66 -42 92 -42c69 0 103 77 120 148h20c-6 -85 -60 -214 -158 -214 c-33 0 -69 17 -104 40l-65 -150h327v-66'], + 0x2247: [647,202,685,48,637,'637 -27h-362l-72 -175h-53l72 175h-174v66h201l55 134h-256v66h283l50 122c-66 38 -129 95 -177 95c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c65 0 135 -59 196 -97l92 222h53l-101 -245c13 -5 25 -8 36 -8c69 0 102 67 117 138h33 c-6 -85 -60 -204 -158 -204c-18 0 -36 4 -54 11l-41 -100h253v-66h-280l-55 -134h335v-66'], + 0x2249: [549,49,685,48,637,'617 239h20c-6 -85 -60 -214 -158 -214c-54 0 -116 47 -171 88l-70 -162h-54l83 191c-27 18 -52 31 -73 31c-70 0 -110 -77 -126 -148h-20c5 100 65 214 163 214c27 0 56 -12 85 -29l49 112c-57 41 -111 87 -151 87c-70 0 -110 -77 -126 -148h-20c5 100 65 214 163 214 c52 0 110 -44 164 -84l70 158h54l-82 -188c29 -20 57 -34 80 -34c69 0 103 77 120 148h20c-6 -85 -60 -214 -158 -214c-29 0 -61 13 -92 32l-48 -111c59 -42 116 -91 158 -91c69 0 103 77 120 148'], + 0x224B: [532,26,685,48,638,'617 532h20c-6 -85 -60 -174 -158 -174c-96 0 -213 108 -285 108c-70 0 -110 -37 -126 -108h-20c5 100 65 174 163 174c96 0 213 -108 286 -108c69 0 103 37 120 108zM618 340h20c-6 -85 -60 -174 -158 -174c-96 0 -213 108 -285 108c-70 0 -110 -37 -126 -108h-20 c5 100 65 174 163 174c96 0 213 -108 286 -108c69 0 103 37 120 108zM617 148h20c-6 -85 -60 -174 -158 -174c-96 0 -213 108 -285 108c-70 0 -110 -37 -126 -108h-20c5 100 65 174 163 174c96 0 213 -108 286 -108c69 0 103 37 120 108'], + 0x224C: [532,27,685,48,637,'637 318h-20c-17 71 -51 148 -120 148c-73 0 -190 -148 -286 -148c-98 0 -158 114 -163 214h20c16 -71 56 -148 126 -148c72 0 189 148 285 148c98 0 152 -129 158 -214zM637 173h-589v66h589v-66zM637 -27h-589v66h589v-66'], + 0x2254: [417,-89,824,48,776,'776 320h-509v66h509v-66zM776 120h-509v66h509v-66zM175 354c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM175 153c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x2255: [417,-89,824,48,776,'776 354c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM776 153c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63zM557 320h-509v66h509v-66zM557 120h-509v66h509v-66'], + 0x2258: [729,-120,685,48,637,'597 553l-17 -11c-61 76 -131 121 -238 121c-122 0 -174 -50 -237 -121l-17 11c54 100 136 176 255 176c124 0 198 -76 254 -176zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x2259: [853,-120,685,48,637,'562 484h-72l-150 249l-143 -249h-72l218 369zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x225A: [853,-120,685,48,637,'555 853l-218 -369l-219 369h72l150 -249l143 249h72zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x225B: [756,-120,685,48,637,'500 634l-69 -59c-5 -4 -13 -12 -13 -26c0 -3 1 -8 2 -12c1 -2 2 -4 2 -6l14 -75l-71 44c-8 4 -13 7 -22 7s-18 -3 -25 -7l-71 -42l21 68c1 6 3 12 3 18c0 13 -6 21 -14 28l-73 62l82 6c23 2 34 10 42 31l33 85l35 -86c7 -18 15 -27 39 -29zM637 320h-589v66h589v-66z M637 120h-589v66h589v-66'], + 0x225D: [823,-120,685,7,678,'485 697h45c0 43 5 54 18 78c14 25 40 48 75 48c32 0 55 -22 55 -41c0 -12 -9 -23 -22 -23c-9 0 -15 4 -25 19c-10 16 -14 21 -26 21c-20 0 -30 -16 -30 -48v-54h66v-23h-66v-156c0 -42 5 -48 50 -50v-13h-141v13c40 2 46 9 46 50v156h-45v23zM474 541l13 -2 c-20 -59 -59 -90 -113 -90c-63 0 -102 48 -102 122c0 77 44 132 111 132c33 0 58 -13 75 -38c10 -15 17 -40 20 -68h-167c2 -41 6 -55 25 -81c14 -20 35 -30 59 -30c37 0 52 14 79 55zM312 620h110c-7 45 -18 61 -52 61c-32 0 -53 -19 -58 -61zM258 478l-78 -29l-3 1v34 c-18 -25 -39 -35 -69 -35c-61 0 -101 47 -101 116c0 76 51 138 112 138c21 0 43 -7 58 -24v76c0 23 -4 29 -25 29c-3 0 -7 0 -11 -1v14c34 9 54 16 77 26l4 -1v-307c0 -25 5 -29 24 -29h12v-8zM177 518v116c0 28 -25 47 -55 47c-41 0 -66 -33 -66 -94c0 -66 28 -101 73 -101 c17 0 30 4 40 16c5 6 8 11 8 16zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x225E: [703,-120,685,48,637,'550 455h-118v12c31 2 34 10 34 40v107c0 31 -3 61 -41 61c-27 0 -43 -19 -58 -39v-128c0 -32 7 -40 39 -41v-12h-122v12c31 2 37 6 37 38v109c0 22 -4 61 -34 61c-23 0 -54 -17 -65 -38v-141c0 -25 12 -28 35 -29v-12h-118v12c30 1 38 9 38 39v124c0 14 2 36 -18 36 c-6 0 -12 -1 -18 -3v15c25 8 50 16 74 25l4 -3v-40h1c24 25 47 43 83 43c31 0 51 -17 60 -46c23 26 50 46 86 46c55 0 62 -54 62 -97v-108c0 -30 15 -29 39 -31v-12zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x225F: [863,-120,685,48,637,'353 567h-31c0 32 2 60 23 109c12 28 30 65 30 96c0 33 -17 52 -47 52c-26 0 -47 -23 -47 -33c0 -12 19 -12 19 -34c0 -19 -13 -33 -34 -33c-24 0 -39 19 -39 46c0 51 47 93 109 93s120 -35 120 -96c0 -36 -14 -58 -66 -113c-20 -21 -28 -43 -37 -87zM383 497 c0 -24 -18 -43 -42 -43c-27 0 -43 19 -43 43s19 42 43 42c21 0 42 -19 42 -42zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x2262: [662,156,685,48,637,'637 28h-366l-80 -184h-54l80 184h-169v66h198l55 126h-253v66h282l55 126h-337v66h366l80 184h54l-81 -184h170v-66h-198l-55 -126h253v-66h-282l-55 -126h337v-66'], + 0x2263: [544,38,685,48,637,'637 478h-589v66h589v-66zM637 306h-589v66h589v-66zM637 134h-589v66h589v-66zM637 -38h-589v66h589v-66'], + 0x226D: [572,66,685,48,637,'637 43v-35c-69 94 -184 126 -295 126c-8 0 -16 0 -24 -1l-87 -199h-54l84 193c-85 -14 -165 -51 -213 -119v35c39 86 147 139 243 153l48 110c-111 1 -244 55 -291 157v35c69 -94 183 -126 294 -126c9 0 17 0 26 1l87 199h54l-84 -193c84 14 164 51 212 119v-35 c-39 -86 -146 -138 -242 -153l-48 -110c110 -2 244 -55 290 -157'], + 0x2274: [731,228,685,48,637,'604 50h33c-6 -85 -60 -204 -158 -204c-69 0 -143 66 -206 103l-49 -177h-54l55 199c-7 2 -14 3 -21 3c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c10 0 21 -2 32 -5l62 223l-249 121v10l331 161l50 181h54l-42 -151l172 84v-65l-194 -97l-58 -208l252 -125v-63 l-268 129l-61 -219c71 -36 142 -104 195 -104c69 0 102 67 117 138zM365 471l-176 -87l133 -67'], + 0x2275: [730,229,685,48,637,'604 50h33c-6 -85 -60 -204 -158 -204c-79 0 -164 85 -232 117l-55 -192h-54l58 203c-65 -4 -100 -69 -115 -138h-33c5 100 65 204 163 204h4l47 162l-198 -96v63l220 110l53 184l-273 136v65l291 -142l60 208h54l-67 -231l227 -110v-10l-304 -147l-59 -204 c80 -32 162 -116 221 -116c69 0 102 67 117 138zM496 384l-111 55l-37 -129'], + 0x2278: [750,250,685,48,637,'637 38l-339 -141l-29 -147h-51l25 124l-195 -81v67l208 85l37 181l-245 100v66l257 -107l29 149l-286 118v10l340 141l30 147h51l-25 -124l193 81v-67l-207 -84l-37 -183l244 -99v-66l-256 106l-29 -149l285 -117v-10zM375 534l-189 -77l160 -65zM496 43l-155 63 l-29 -139'], + 0x2279: [750,250,685,48,637,'637 -207l-331 138l-36 -181h-51l40 200l-211 88v10l252 104l34 175l-286 -119v66l299 121l23 114l-322 131v67l334 -139l37 182h51l-41 -202l208 -86v-10l-247 -102l-35 -176l282 118v-66l-296 -120l-23 -116l319 -130v-67zM499 457l-81 33l-14 -72zM286 83l-100 -40 l85 -35'], + 0x2284: [662,156,685,65,623,'623 -25h-291c-26 0 -50 4 -73 10l-61 -141h-54l69 158c-92 46 -148 145 -148 252c0 148 110 277 270 277h109l57 131h54l-57 -131h125v-66h-154l-182 -417c15 -5 32 -7 49 -7h287v-66zM415 465h-80c-114 0 -204 -104 -204 -211c0 -75 44 -149 110 -187'], + 0x2285: [662,156,685,65,623,'541 662l-69 -158c93 -46 151 -143 151 -250c0 -148 -108 -279 -267 -279h-115l-57 -131h-54l57 131h-122v66h151l182 418c-14 4 -30 6 -45 6h-288v66h288c25 0 50 -4 72 -10l62 141h54zM270 41h82c114 0 205 106 205 213c0 76 -46 150 -113 187'], + 0x228C: [536,31,620,48,572,'448 257h-104c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c25 -27 30 -38 49 -66l-20 -19c-66 76 -92 120 -188 161v10c96 40 122 85 187 160l20 -19c-21 -31 -29 -45 -49 -66c-10 -10 -14 -16 -14 -25c0 -10 16 -22 26 -22h105v-66zM572 536v-296 c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h66v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205v296h66'], + 0x228D: [536,31,620,48,572,'374 290c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM572 536v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h66v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205v296h66'], + 0x229C: [623,119,842,50,792,'634 297h-426v66h426v-66zM634 143h-426v66h426v-66zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x22A6: [662,0,497,64,433,'433 298h-303v-298h-66v662h66v-298h303v-66'], + 0x22A7: [662,0,498,64,434,'434 198h-304v-198h-66v662h66v-198h304v-66h-304v-134h304v-66'], + 0x22AB: [662,0,860,57,814,'814 198h-491v-198h-66v662h66v-198h491v-66h-491v-134h491v-66zM123 0h-66v662h66v-662'], + 0x22B0: [551,45,685,64,621,'317 254v-2c114 -11 304 -44 304 -189c0 -61 -40 -108 -101 -108c-53 0 -97 38 -98 87h48c7 -25 28 -38 48 -38c24 0 47 15 47 53c0 100 -185 128 -266 140s-165 17 -235 23v66c70 6 154 11 235 23s266 40 266 140c0 38 -23 53 -47 53c-20 0 -41 -13 -48 -38h-48 c1 49 45 87 98 87c61 0 101 -47 101 -108c0 -145 -190 -178 -304 -189'], + 0x22B1: [551,45,685,64,621,'621 286v-66c-70 -6 -154 -11 -235 -23s-266 -40 -266 -140c0 -38 23 -53 47 -53c20 0 41 13 48 38h48c-1 -49 -45 -87 -98 -87c-61 0 -101 47 -101 108c0 145 190 178 304 189v2c-114 11 -304 44 -304 189c0 61 40 108 101 108c53 0 97 -38 98 -87h-48 c-7 25 -28 38 -48 38c-24 0 -47 -15 -47 -53c0 -100 185 -128 266 -140s165 -17 235 -23'], + 0x22B6: [403,-103,1145,50,1095,'346 286h453c15 67 74 117 146 117c83 0 150 -67 150 -150s-67 -150 -150 -150c-72 0 -131 50 -146 117h-453c-15 -67 -74 -117 -146 -117c-83 0 -150 67 -150 150s67 150 150 150c72 0 131 -50 146 -117zM300 253c0 55 -45 100 -100 100s-100 -45 -100 -100 s45 -100 100 -100s100 45 100 100'], + 0x22B7: [403,-103,1145,50,1095,'346 286h453c15 67 74 117 146 117c83 0 150 -67 150 -150s-67 -150 -150 -150c-72 0 -131 50 -146 117h-453c-15 -67 -74 -117 -146 -117c-83 0 -150 67 -150 150s67 150 150 150c72 0 131 -50 146 -117zM1045 253c0 55 -45 100 -100 100s-100 -45 -100 -100 s45 -100 100 -100s100 45 100 100'], + 0x22B9: [547,41,685,48,636,'375 326h-66v221h66v-221zM636 220h-221v66h221v-66zM269 220h-221v66h221v-66zM375 -41h-66v221h66v-221'], + 0x22BD: [646,29,620,32,590,'572 580h-524v66h524v-66zM590 536l-273 -565h-10l-275 565h65l215 -432l215 432h63'], + 0x22BE: [584,0,685,50,634,'634 0h-584v584h66v-173c177 -28 317 -168 345 -345h173v-66zM116 66h277c-27 140 -138 251 -277 278v-278'], + 0x22BF: [662,158,911,45,865,'865 -158h-820l820 820v-820zM799 -92v595l-596 -595h596'], + 0x22C0: [763,259,924,54,870,'870 -259h-76l-331 877h-2l-331 -877h-76l380 1022h56'], + 0x22C1: [763,259,924,54,870,'870 763l-380 -1022h-56l-380 1022h76l331 -877h2l331 877h76'], + 0x22C2: [778,254,924,94,830,'830 -254h-73v715c0 127 -131 244 -295 244s-295 -117 -295 -244v-715h-73v702c0 197 176 330 374 330c175 0 362 -132 362 -330v-702'], + 0x22C3: [768,264,924,94,830,'830 768v-702c0 -198 -187 -330 -362 -330c-198 0 -374 133 -374 330v702h73v-715c0 -127 131 -244 295 -244s295 117 295 244v715h73'], + 0x22C7: [545,38,685,51,634,'406 462c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM634 8l-46 -46l-245 244l-246 -244l-46 46l211 211h-211v66h213l-213 214l46 46l246 -245l245 245l46 -46l-212 -214h212v-66h-210zM406 45c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64 c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x22D5: [690,189,685,48,637,'637 120h-161v-309h-66v309h-134v-309h-66v309h-162v66h162v134h-162v66h162v304h66v-304h134v304h66v-304h161v-66h-161v-134h161v-66zM410 186v134h-134v-134h134'], + 0x22DC: [607,103,685,64,621,'621 541h-557v66h557v-66zM621 -103l-557 274v10l557 273v-67l-421 -211l421 -212v-67'], + 0x22DD: [607,103,685,64,621,'621 541h-557v66h557v-66zM621 170l-557 -273v67l421 211l-421 212v67l557 -274v-10'], + 0x22E2: [730,229,685,65,622,'622 -103h-382l-47 -126h-54l47 126h-121v66h145l33 88h-178v556h385l46 123h54l-46 -123h118v-66h-142l-158 -424h300v-66h-325l-33 -88h358v-66zM425 541h-294v-424h137'], + 0x22E3: [730,229,685,65,622,'622 -103h-375l-47 -126h-54l47 126h-128v66h152l33 88h-185v66h210l157 424h-367v66h392l46 123h54l-46 -123h111v-556h-318l-33 -88h351v-66zM556 117v424h-69l-158 -424h227'], + 0x22E4: [627,216,685,64,621,'621 71h-557v556h557v-66h-491v-424h491v-66zM621 -120h-282l-60 -96h-59l60 96h-216v66h258l61 96h59l-61 -96h240v-66'], + 0x22E5: [627,216,685,64,621,'621 71h-557v66h491v424h-491v66h557v-556zM621 -120h-279l-60 -96h-59l60 96h-219v66h261l61 96h59l-61 -96h237v-66'], + 0x22F0: [520,18,926,194,732,'732 457c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM528 252c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM321 46c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x22F2: [531,27,823,55,763,'763 -27h-291c-148 0 -257 112 -272 246h-145v66h145c15 134 122 246 269 246h294v-66h-290c-103 0 -189 -85 -206 -180h496v-66h-497c17 -95 103 -180 206 -180h291v-66'], + 0x22F3: [531,27,685,60,625,'625 -27h-291c-160 0 -274 131 -274 279s112 279 271 279h294v-66h-290c-103 0 -189 -85 -206 -180h430v113h66v-292h-66v113h-431c17 -95 103 -180 206 -180h291v-66'], + 0x22F4: [459,-45,486,62,420,'420 45h-149c-124 0 -209 92 -209 207c0 116 86 207 211 207h147v-66h-147c-80 0 -131 -36 -144 -108h225v72h66v-210h-66v72h-225c14 -72 65 -108 145 -108h146v-66'], + 0x22F5: [716,27,685,60,625,'426 653c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM625 -27h-291c-160 0 -274 131 -274 279s112 279 271 279h294v-66h-290c-103 0 -189 -85 -206 -180h496v-66h-497c17 -95 103 -180 206 -180h291v-66'], + 0x22F6: [685,27,685,60,625,'625 619h-555v66h555v-66zM625 -27h-291c-160 0 -274 131 -274 279s112 279 271 279h294v-66h-290c-103 0 -189 -85 -206 -180h496v-66h-497c17 -95 103 -180 206 -180h291v-66'], + 0x22F7: [613,-45,486,62,420,'420 547h-340v66h340v-66zM420 45h-149c-124 0 -209 92 -209 207c0 116 86 207 211 207h147v-66h-147c-80 0 -131 -36 -144 -108h291v-66h-291c14 -72 65 -108 145 -108h146v-66'], + 0x22F8: [532,180,685,60,625,'625 -26h-294c-159 0 -271 131 -271 279s114 279 274 279h291v-66h-291c-103 0 -189 -85 -206 -180h497v-66h-496c17 -95 103 -180 206 -180h290v-66zM625 -180h-555v66h555v-66'], + 0x22F9: [531,27,685,61,625,'625 -27h-297c-159 0 -267 132 -267 280s110 278 270 278h294v-66h-294c-79 0 -147 -51 -181 -117h475v-66h-496c-2 -10 -2 -20 -2 -29c0 -11 1 -21 2 -31h496v-66h-474c35 -67 102 -117 181 -117h293v-66'], + 0x22FA: [531,27,823,55,763,'763 219h-145c-15 -134 -124 -246 -272 -246h-291v66h291c103 0 189 85 206 180h-497v66h496c-17 95 -103 180 -206 180h-290v66h294c147 0 254 -112 269 -246h145v-66'], + 0x22FB: [531,27,685,59,624,'59 531h294c159 0 271 -131 271 -279s-114 -279 -274 -279h-291v66h291c103 0 189 85 206 180h-431v-113h-66v292h66v-113h430c-17 95 -103 180 -206 180h-290v66'], + 0x22FC: [459,-45,486,62,420,'62 459h147c125 0 211 -91 211 -207c0 -115 -85 -207 -209 -207h-149v66h146c80 0 131 36 145 108h-225v-72h-66v210h66v-72h225c-13 72 -64 108 -144 108h-147v66'], + 0x22FD: [685,27,685,61,626,'616 619h-555v66h555v-66zM61 531h294c159 0 271 -131 271 -279s-114 -279 -274 -279h-291v66h291c103 0 189 85 206 180h-497v66h496c-17 95 -103 180 -206 180h-290v66'], + 0x22FE: [613,-45,486,67,425,'407 547h-340v66h340v-66zM67 459h147c125 0 211 -91 211 -207c0 -115 -85 -207 -209 -207h-149v66h146c80 0 131 36 145 108h-291v66h291c-13 72 -64 108 -144 108h-147v66'], + 0x22FF: [662,158,910,45,865,'865 -158h-820v820h820v-50h-754v-335h754v-50h-754v-335h754v-50'], + 0x2A00: [763,259,1126,53,1073,'646 250c0 -46 -37 -83 -83 -83s-83 37 -83 83s37 83 83 83s83 -37 83 -83zM1073 252c0 -283 -227 -511 -510 -511c-281 0 -510 228 -510 511s227 511 510 511s510 -228 510 -511zM993 252c0 237 -193 431 -430 431s-430 -194 -430 -431s193 -431 430 -431 s430 194 430 431'], + 0x2A01: [763,259,1126,53,1073,'1073 252c0 -283 -227 -511 -510 -511c-281 0 -510 228 -510 511s227 511 510 511s510 -228 510 -511zM596 285h395c-16 211 -185 380 -395 397v-397zM530 285v397c-211 -17 -380 -186 -396 -397h396zM991 219h-395v-396c210 16 379 186 395 396zM530 -177v396h-396 c16 -210 185 -380 396 -396'], + 0x2A02: [763,259,1126,53,1073,'1073 252c0 -283 -227 -511 -510 -511c-281 0 -510 228 -510 511s227 511 510 511s510 -228 510 -511zM563 299l280 280c-76 65 -173 104 -280 104s-205 -39 -280 -104zM610 252l279 -279c65 75 104 173 104 279c0 107 -39 204 -104 280zM516 252l-280 280 c-64 -76 -103 -173 -103 -280c0 -106 39 -204 103 -279zM843 -75l-280 280l-280 -280c75 -65 173 -104 280 -104s204 39 280 104'], + 0x2A03: [768,264,924,94,830,'545 267c0 -46 -37 -83 -83 -83s-83 37 -83 83s37 83 83 83s83 -37 83 -83zM830 768v-702c0 -197 -176 -330 -374 -330c-175 0 -362 132 -362 330v702h80v-714c0 -124 122 -238 282 -238c159 0 294 114 294 238v714h80'], + 0x2A04: [768,264,924,94,830,'830 768v-702c0 -197 -176 -330 -374 -330c-175 0 -362 132 -362 330v702h80v-714c0 -124 122 -238 282 -238c159 0 294 114 294 238v714h80zM671 146h-175v-174h-66v174h-175v66h175v176h66v-176h175v-66'], + 0x2A05: [763,259,924,94,830,'830 -259h-80v942h-576v-942h-80v1022h736v-1022'], + 0x2A06: [763,259,924,94,830,'830 -259h-736v1022h80v-942h576v942h80v-1022'], + 0x2A07: [763,259,1180,83,1097,'1097 -259h-76l-331 877h-2l-58 -153l269 -724h-76l-233 618l-233 -618h-76l269 724l-58 153h-2l-331 -877h-76l380 1022h56l71 -191l71 191h56'], + 0x2A08: [763,259,1180,83,1097,'1097 763l-380 -1022h-56l-71 191l-71 -191h-56l-380 1022h76l331 -877h2l58 153l-269 724h76l233 -618l233 618h76l-269 -724l58 -153h2l331 877h76'], + 0x2A09: [763,259,1021,50,971,'971 -205l-60 -54l-401 451l-400 -451l-60 54l406 457l-406 457l60 54l400 -450l401 450l60 -54l-407 -457'], + 0x2A0A: [763,259,914,58,856,'856 40l-53 -299h-745l272 354c-62 47 -98 119 -98 196c0 63 24 124 68 169l-217 303h747v-251h-30c-22 135 -49 185 -182 185h-330l126 -169c20 5 42 8 63 8c135 0 245 -110 245 -245s-110 -245 -245 -245c-30 0 -60 6 -89 16l-146 -190h414c112 0 148 68 170 168h30z M578 306l-157 -202c18 -5 37 -8 56 -8c108 0 195 87 195 195s-87 195 -195 195c-10 0 -21 -1 -31 -2zM450 251l-120 168c-31 -36 -48 -81 -48 -128c0 -61 29 -119 78 -156'], + 0x2A0B: [824,320,690,33,659,'395 563l11 43c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-13 -53h125v-163h-20c0 9 -4 21 -6 30c-19 70 -67 80 -112 83l-51 -205l28 -30l-47 -47l-50 -200h157 c79 0 114 27 135 104h23l-41 -194h-297l-14 -59c-19 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l16 65h-207l276 278l13 51l-270 293h343zM383 513h-172l136 -144zM288 134 l-103 -103h77'], + 0x2A0C: [824,320,1184,32,1364,'929 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26 c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165zM688 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202 c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165zM445 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8 c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165zM204 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59 c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165'], + 0x2A0D: [824,320,499,32,639,'306 285l80 321c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-83 -331h182v-66h-198l-84 -337c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59 c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l85 343h-178v66h195'], + 0x2A0E: [824,320,499,32,639,'331 385l55 221c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-58 -231h157v-66h-173l-34 -134h207v-66h-223l-59 -237c-20 -81 -80 -202 -192 -202 c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l60 243h-153v66h170l33 134h-203v66h220'], + 0x2A0F: [824,320,499,32,639,'302 271l84 335c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-74 -296l172 97l31 -59l-225 -127l-87 -349c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45 c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l76 307l-170 -97l-31 58'], + 0x2A10: [824,320,499,32,639,'354 476l32 130c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-39 -157c47 -21 86 -58 110 -105l-33 -19c-19 37 -49 68 -87 86l-88 -356h8c26 0 51 5 74 15l17 -34 c-28 -12 -59 -19 -91 -19c-6 0 -12 0 -18 1l-36 -146c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l42 169c-81 34 -138 114 -138 207c0 124 101 225 225 225 c7 0 14 0 21 -1zM344 439h-11c-103 0 -187 -84 -187 -187c0 -75 45 -141 109 -170'], + 0x2A11: [824,320,499,32,639,'281 187l105 419c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-108 -433c68 9 117 50 138 91l5 10c1 2 1 5 1 5c0 8 -7 12 -14 12c-3 0 -6 -1 -9 -2 c-22 -8 -44 -15 -65 -19l-3 12c51 17 105 38 145 76l5 -3c0 -55 20 -109 42 -157l-12 -6c-12 18 -22 40 -30 61c-4 7 -8 13 -14 13c-4 0 -8 -2 -11 -8c-26 -51 -91 -118 -188 -124l-65 -262c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59 c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l68 275c-96 25 -166 113 -166 217h38c0 -86 58 -159 137 -181'], + 0x2A12: [824,320,519,32,639,'344 439l42 167c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-35 -139h132v-450h-245l-35 -145c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59 c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l46 189h271v374h-177zM412 253c0 -40 -31 -78 -78 -78c-46 0 -78 30 -78 78c0 47 40 78 78 78c40 0 78 -32 78 -78'], + 0x2A13: [824,320,499,32,639,'344 439l42 167c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -74 -72 -101 -177l-40 -157c80 -35 136 -114 136 -207c0 -124 -101 -225 -225 -225c-6 0 -12 0 -18 1l-36 -146 c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l51 207c24 -11 51 -18 79 -18c103 0 187 84 187 187c0 100 -79 182 -177 187zM412 253c0 -40 -31 -78 -78 -78 c-46 0 -78 30 -78 78c0 47 40 78 78 78c40 0 78 -32 78 -78'], + 0x2A14: [824,320,628,32,688,'542 253c0 -40 -31 -78 -78 -78c-46 0 -78 30 -78 78c0 47 40 78 78 78c40 0 78 -32 78 -78zM462 616l-35 -142c11 2 24 3 36 3c124 0 225 -101 225 -225s-101 -225 -225 -225c-51 0 -98 17 -136 46l-48 -191c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45 c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l81 324c23 -78 94 -135 179 -135c103 0 186 84 186 187s-83 187 -186 187c-52 0 -99 -21 -133 -56l55 223c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59 c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177'], + 0x2A15: [824,320,499,32,639,'412 253c0 -40 -31 -78 -78 -78c-46 0 -78 30 -78 78c0 47 40 78 78 78c40 0 78 -32 78 -78zM353 477l33 129c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-39 -157 c79 -35 135 -115 135 -207c0 -124 -101 -225 -225 -225c-6 0 -12 0 -18 1l-36 -146c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l41 169c-80 34 -137 114 -137 207 c0 124 101 225 225 225h20zM521 252c0 103 -84 187 -187 187s-187 -84 -187 -187s84 -187 187 -187s187 84 187 187'], + 0x2A16: [824,320,529,32,639,'354 477l32 129c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-35 -139h132v-450h-244l-36 -145c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59 c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l37 151h-132v450h245zM521 65v374h-103l-94 -374h197zM344 439h-197v-374h104'], + 0x2A17: [824,320,738,32,818,'491 304h197c57 0 130 -40 130 -124c0 -78 -61 -124 -117 -124h-73v66h70c25 0 54 17 54 60c0 45 -32 56 -67 56h-211l-88 -356c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8 c47 0 71 64 96 165l90 362h-184c-14 0 -24 -13 -24 -22s4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 149 -237 189v10c96 41 172 116 238 192l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -9 4 -20 22 -20h202l75 302c20 80 78 218 198 218 c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177'], + 0x2A18: [824,320,539,32,639,'314 319l72 287c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-64 -254l126 125l46 -46l-189 -189l189 -189l-46 -46l-169 169l-76 -304c-20 -81 -80 -202 -192 -202 c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l66 265l-124 -124l-46 46l189 189l-189 189l46 46'], + 0x2A19: [824,320,559,32,639,'363 515l23 91c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -74 -72 -101 -177l-30 -117c98 -37 164 -129 164 -251v-259h-66v255c0 84 -47 155 -114 188l-137 -550 c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l143 574h-13c-106 0 -196 -91 -196 -205v-256h-66v256c0 160 114 271 262 271c10 0 19 0 29 -1'], + 0x2A1A: [824,320,559,32,639,'253 73l133 533c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-140 -561h12c106 0 196 91 196 205v256h66v-256c0 -160 -114 -271 -262 -271c-10 0 -19 1 -28 2 l-27 -109c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165l32 130c-98 37 -164 129 -164 251v259h66v-255c0 -83 47 -155 115 -188'], + 0x2A1B: [947,320,459,32,639,'639 881h-450v66h450v-66zM204 -124l182 730c20 80 78 218 198 218c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 7 -31 24c0 26 18 32 18 41c0 5 -4 8 -11 8c-50 0 -75 -72 -101 -177l-183 -734c-20 -81 -80 -202 -192 -202c-40 0 -55 21 -55 45 c0 33 24 59 52 59c15 0 31 -9 31 -26c0 -29 -18 -28 -18 -39c0 -5 4 -8 11 -8c47 0 71 64 96 165'], + 0x2A1C: [824,443,459,32,639,'209 -112l183 734c20 81 80 202 192 202c40 0 55 -21 55 -45c0 -33 -24 -59 -52 -59c-15 0 -31 9 -31 26c0 29 18 28 18 39c0 5 -4 8 -11 8c-47 0 -71 -64 -96 -165l-182 -730c-20 -80 -78 -218 -198 -218c-40 0 -55 21 -55 45c0 33 24 59 52 59c15 0 31 -7 31 -24 c0 -26 -18 -32 -18 -41c0 -5 4 -8 11 -8c50 0 75 72 101 177zM482 -443h-450v66h450v-66'], + 0x2A1D: [770,252,1270,93,1177,'1177 -252l-541 460l-543 -460v1022l542 -459l542 459v-1022zM1097 -81v679l-407 -331zM577 253l-404 345v-679'], + 0x2A1E: [764,258,1018,45,924,'924 -258l-879 511l879 511v-1022zM844 -119v744l-641 -372'], + 0x2A1F: [566,291,503,110,410,'393 425c0 -78 -64 -141 -142 -141s-141 63 -141 141s63 141 141 141c79 0 142 -62 142 -141zM333 424c0 45 -38 81 -82 81s-81 -37 -81 -81c0 -45 37 -80 81 -80s82 35 82 80zM178 -291l-33 53c50 25 169 101 169 162c0 19 -24 23 -38 23c-9 0 -16 -6 -25 -6 c-78 0 -141 63 -141 141s63 142 141 142c108 0 159 -96 159 -193c0 -167 -95 -249 -232 -322zM333 82c0 44 -38 82 -82 82c-45 0 -81 -38 -81 -82s37 -81 81 -81s82 36 82 81'], + 0x2A20: [633,127,1177,98,1079,'1079 253l-654 -380v76l525 304l-525 304v76zM752 253l-654 -380v76l525 304l-525 304v76'], + 0x2A21: [805,300,547,215,472,'472 512l-57 -57l-120 143v-898h-80v1105'], + 0x2A22: [819,41,685,48,636,'464 700c0 -66 -53 -119 -120 -119c-66 0 -119 53 -119 119s53 119 119 119c67 0 120 -53 120 -119zM413 701c0 38 -32 68 -69 68c-38 0 -69 -31 -69 -69c0 -39 31 -69 70 -69c37 0 68 31 68 70zM636 220h-261v-261h-66v261h-261v66h261v261h66v-261h261v-66'], + 0x2A23: [707,41,685,48,636,'498 540h-34l-122 103l-121 -103h-34l124 167h62zM636 220h-261v-261h-66v261h-261v66h261v261h66v-261h261v-66'], + 0x2A24: [704,41,685,48,636,'528 704h19c-4 -58 -52 -138 -114 -138c-61 0 -143 88 -189 88c-43 0 -76 -39 -86 -88h-20c3 69 56 138 117 138s144 -88 189 -88c44 0 74 39 84 88zM636 220h-261v-261h-66v261h-261v66h261v261h66v-261h261v-66'], + 0x2A25: [547,235,685,48,636,'636 220h-261v-261h-66v261h-261v66h261v261h66v-261h261v-66zM404 -172c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64'], + 0x2A26: [547,198,685,48,636,'636 220h-261v-261h-66v261h-261v66h261v261h66v-261h261v-66zM526 -60h20c-3 -69 -56 -138 -117 -138s-144 88 -189 88c-44 0 -74 -39 -84 -88h-19c4 58 52 138 114 138c61 0 143 -88 189 -88c43 0 76 39 86 88'], + 0x2A27: [547,210,685,41,673,'629 220h-261v-261h-66v261h-261v66h261v261h66v-261h261v-66zM673 -128l-33 -82h-239v7l112 107c61 58 76 82 76 134c0 43 -29 76 -75 76c-43 0 -69 -22 -94 -80l-18 5c13 70 56 119 127 119c69 0 112 -43 112 -104c0 -46 -26 -87 -77 -131l-102 -89h133 c26 0 41 13 61 48'], + 0x2A28: [547,41,685,48,636,'636 220h-261v-1l126 -184h-126v-76h-66v76h-125l125 183v2h-261v66h261v261h66v-261h261v-66'], + 0x2A29: [556,-220,685,48,637,'299 323l-10 19c55 37 83 64 83 97c0 7 -6 13 -14 13s-18 -4 -29 -4c-37 0 -58 17 -58 51s24 57 60 57c45 0 80 -35 80 -87c0 -60 -43 -113 -112 -146zM637 220h-589v66h589v-66'], + 0x2A2A: [286,5,685,48,637,'637 220h-589v66h589v-66zM407 58c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64'], + 0x2A2B: [511,5,685,48,637,'607 59c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 220h-589v66h589v-66zM205 448c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x2A2C: [511,5,685,48,637,'607 448c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 220h-589v66h589v-66zM205 59c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x2A2D: [623,119,724,50,674,'674 219h-220v-219h-66v219h-220v66h220v220h66v-220h220v-66zM421 -53v-66c-205 0 -371 166 -371 371s166 371 371 371v-66c-168 0 -305 -137 -305 -305s137 -305 305 -305'], + 0x2A2E: [623,119,724,50,674,'303 557v66c205 0 371 -166 371 -371s-166 -371 -371 -371v66c168 0 305 137 305 305s-137 305 -305 305zM556 219h-220v-219h-66v219h-220v66h220v220h66v-220h220v-66'], + 0x2A2F: [447,-59,490,50,439,'439 120l-61 -61l-133 133l-134 -133l-61 61l134 133l-134 133l61 61l133 -133l134 133l61 -61l-134 -133'], + 0x2A30: [686,25,640,43,597,'386 622c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64zM597 22l-46 -47l-231 230l-231 -230l-46 46l230 231l-230 231l47 46l230 -230l231 230l46 -45l-230 -232'], + 0x2A31: [529,130,640,43,597,'597 22l-46 -47l-231 230l-231 -230l-46 46l230 231l-230 231l47 46l230 -230l231 230l46 -45l-230 -232zM551 -130h-462v66h462v-66'], + 0x2A32: [529,45,640,43,597,'597 -45h-554v66l230 231l-230 231l47 46l230 -230l231 230l46 -45l-230 -232l230 -231v-66zM505 21l-185 184l-185 -184h370'], + 0x2A33: [538,32,685,57,627,'627 122l-47 -46l-131 130l-60 -60l130 -131l-46 -47l-131 131l-131 -131l-46 47l130 131l-60 60l-131 -130l-47 46l131 131l-131 131l47 46l131 -130l60 60l-130 131l46 47l131 -131l131 131l46 -47l-130 -131l60 -60l131 130l47 -46l-131 -131zM403 253l-61 61l-61 -61 l61 -61'], + 0x2A34: [623,119,674,50,624,'624 96l-47 -47l-156 156l-156 -156l-47 47l156 156l-156 156l47 47l156 -156l156 156l47 -47l-156 -156zM421 -53v-66c-205 0 -371 166 -371 371s166 371 371 371v-66c-168 0 -305 -137 -305 -305s137 -305 305 -305'], + 0x2A35: [623,119,674,50,624,'253 557v66c205 0 371 -166 371 -371s-166 -371 -371 -371v66c168 0 305 137 305 305s-137 305 -305 305zM456 96l-47 -47l-156 156l-156 -156l-47 47l156 156l-156 156l47 47l156 -156l156 156l47 -47l-156 -156'], + 0x2A36: [810,119,842,50,792,'592 643h-34l-137 103l-136 -103h-34l139 167h62zM624 96l-47 -47l-156 156l-156 -156l-47 47l156 156l-156 156l47 47l156 -156l156 156l47 -47l-156 -156zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252 c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x2A37: [752,248,1100,50,1050,'746 103l-47 -47l-149 149l-149 -149l-47 47l149 149l-149 149l47 47l149 -149l149 149l47 -47l-149 -149zM900 252c0 -194 -156 -350 -350 -350s-350 156 -350 350s156 350 350 350s350 -156 350 -350zM848 252c0 165 -133 298 -298 298s-298 -133 -298 -298 s133 -298 298 -298s298 133 298 298zM1050 252c0 -276 -224 -500 -500 -500s-500 224 -500 500s224 500 500 500s500 -224 500 -500zM984 252c0 240 -194 434 -434 434s-434 -194 -434 -434s194 -434 434 -434s434 194 434 434'], + 0x2A38: [623,119,842,50,792,'478 410c0 -35 -28 -57 -57 -57s-57 23 -57 57c0 31 22 57 57 57c34 0 57 -22 57 -57zM634 219h-426v66h426v-66zM478 94c0 -35 -28 -57 -57 -57s-57 23 -57 57c0 31 22 57 57 57c34 0 57 -22 57 -57zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371 s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x2A39: [811,127,1145,35,1110,'751 154h-145v-145h-66v145h-145v66h145v145h66v-145h145v-66zM1110 -127h-1075l538 938zM995 -61l-422 739l-424 -739h846'], + 0x2A3A: [811,127,1145,35,1110,'751 154h-356v66h356v-66zM1110 -127h-1075l538 938zM995 -61l-422 739l-424 -739h846'], + 0x2A3B: [811,127,1145,35,1110,'722 84l-46 -46l-103 102l-103 -102l-46 46l102 103l-102 103l46 46l103 -102l103 102l46 -46l-102 -103zM1110 -127h-1075l538 938zM995 -61l-422 739l-424 -739h846'], + 0x2A3C: [393,-115,600,48,552,'552 115h-504v66h438v212h66v-278'], + 0x2A3D: [393,-115,600,48,552,'552 115h-504v278h66v-212h438v-66'], + 0x2A3E: [488,170,300,60,230,'230 401c0 -47 -35 -83 -85 -83c-49 0 -85 36 -85 83c0 49 36 87 85 87c50 0 85 -38 85 -87zM186 402c0 24 -19 41 -41 42c-23 -1 -41 -19 -41 -43c0 -22 18 -39 42 -39c22 0 40 18 40 40zM105 -170l-21 39c66 32 90 69 90 93c0 8 -3 13 -11 13c-11 0 -10 -3 -25 -3 c-44 0 -78 36 -78 83c0 49 33 87 82 87c74 0 88 -66 88 -104c0 -93 -17 -151 -125 -208zM184 55c0 24 -17 42 -39 42c-23 0 -41 -18 -41 -42c0 -22 17 -39 41 -39c22 0 39 15 39 39'], + 0x2A40: [536,31,620,48,572,'572 -31h-66v295c0 114 -87 206 -196 206c-106 0 -196 -91 -196 -205v-296h-66v296c0 160 114 271 262 271c149 0 262 -109 262 -268v-299zM373 215c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64'], + 0x2A41: [536,31,620,48,572,'460 257h-300v66h300v-66zM572 536v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h66v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205v296h66'], + 0x2A42: [668,31,620,48,572,'520 602h-420v66h420v-66zM572 536v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h66v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205v296h66'], + 0x2A43: [668,31,620,48,572,'520 602h-420v66h420v-66zM572 -31h-66v295c0 114 -87 206 -196 206c-106 0 -196 -91 -196 -205v-296h-66v296c0 160 114 271 262 271c149 0 262 -109 262 -268v-299'], + 0x2A44: [536,31,620,48,572,'572 -31h-66v295c0 114 -87 206 -196 206c-106 0 -196 -91 -196 -205v-296h-66v296c0 160 114 271 262 271c149 0 262 -109 262 -268v-299zM459 -31h-68l-81 164l-81 -164h-68l144 297h10'], + 0x2A45: [536,31,620,48,572,'459 536l-144 -297h-10l-144 297h68l81 -164l81 164h68zM572 536v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h66v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205v296h66'], + 0x2A46: [914,406,620,48,572,'572 914v-299c0 -159 -113 -268 -262 -268c-148 0 -262 111 -262 271v296h66v-296c0 -114 90 -205 196 -205c109 0 196 92 196 206v295h66zM572 -406h-66v296c0 114 -90 205 -196 205c-109 0 -196 -92 -196 -206v-295h-66v299c0 159 113 268 262 268 c148 0 262 -111 262 -271v-296'], + 0x2A47: [914,406,620,48,572,'572 347h-66v295c0 114 -87 206 -196 206c-106 0 -196 -91 -196 -205v-296h-66v296c0 160 114 271 262 271c149 0 262 -109 262 -268v-299zM572 161v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h66v-295c0 -114 87 -206 196 -206 c106 0 196 91 196 205v296h66'], + 0x2A48: [914,406,620,48,572,'572 914v-299c0 -159 -113 -268 -262 -268c-148 0 -262 111 -262 271v296h66v-296c0 -114 90 -205 196 -205c109 0 196 92 196 206v295h66zM520 221h-420v66h420v-66zM572 -406h-66v296c0 114 -90 205 -196 205c-109 0 -196 -92 -196 -206v-295h-66v299 c0 159 113 268 262 268c148 0 262 -111 262 -271v-296'], + 0x2A49: [914,406,620,48,572,'572 347h-66v295c0 114 -87 206 -196 206c-106 0 -196 -91 -196 -205v-296h-66v296c0 160 114 271 262 271c149 0 262 -109 262 -268v-299zM520 221h-420v66h420v-66zM572 161v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h66v-295 c0 -114 87 -206 196 -206c106 0 196 91 196 205v296h66'], + 0x2A4A: [528,39,1078,48,1030,'1030 528v-296c0 -160 -114 -271 -262 -271c-101 0 -186 50 -230 132c-44 -82 -128 -132 -228 -132c-149 0 -262 109 -262 268v299h66v-295c0 -114 87 -206 196 -206c105 0 196 85 196 202v299h66v-299c0 -117 89 -202 196 -202c106 0 196 91 196 205v296h66'], + 0x2A4B: [527,40,1078,48,1030,'1030 -40h-66v296c0 114 -90 205 -196 205c-107 0 -196 -85 -196 -202v-299h-66v299c0 117 -91 202 -196 202c-109 0 -196 -92 -196 -206v-295h-66v299c0 159 113 268 262 268c100 0 184 -50 228 -132c44 82 129 132 230 132c148 0 262 -111 262 -271v-296'], + 0x2A4C: [602,31,620,10,610,'610 536h-38v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h-38v66h600v-66zM506 240v296h-392v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205'], + 0x2A4D: [536,97,620,10,610,'610 -97h-600v66h38v296c0 160 114 271 262 271c149 0 262 -109 262 -268v-299h38v-66zM506 -31v295c0 114 -87 206 -196 206c-106 0 -196 -91 -196 -205v-296h392'], + 0x2A4E: [536,31,620,48,572,'572 -31h-66v501h-392v-501h-66v567h524v-567zM433 -31h-66v363h-114v-363h-66v429h246v-429'], + 0x2A4F: [536,31,620,48,572,'433 107h-246v429h66v-363h114v363h66v-429zM572 -31h-524v567h66v-501h392v501h66v-567'], + 0x2A50: [602,31,620,10,610,'468 211l-26 -25l-72 72l-34 -33l72 -73l-25 -26l-73 73l-73 -73l-25 26l72 73l-33 33l-73 -72l-26 25l73 73l-73 73l26 25l73 -72l33 34l-72 72l25 26l73 -72l73 72l25 -26l-72 -72l34 -34l72 72l26 -25l-72 -73zM344 284l-34 34l-34 -34l34 -34zM610 536h-38v-296 c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h-38v66h600v-66zM506 240v296h-392v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205'], + 0x2A51: [710,29,620,31,589,'374 646c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64zM589 -29h-65l-214 432l-214 -432h-65l274 565h10'], + 0x2A52: [710,29,620,31,589,'374 646c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64zM589 536l-274 -565h-10l-274 565h65l214 -432l214 432h65'], + 0x2A53: [536,29,620,31,589,'589 -29h-65l-214 432l-214 -432h-65l274 565h10zM459 -29h-68l-81 164l-81 -164h-68l144 297h10'], + 0x2A54: [536,29,620,31,589,'459 536l-144 -297h-10l-144 297h68l81 -164l81 164h68zM589 536l-274 -565h-10l-274 565h65l214 -432l214 432h65'], + 0x2A55: [536,29,780,32,748,'748 -29h-65l-214 432l-45 -91l166 -341h-65l-135 272l-135 -272h-65l165 341l-44 91l-214 -432h-65l274 565h10l74 -153l74 153h10'], + 0x2A56: [536,29,780,32,748,'748 536l-274 -565h-10l-74 152l-74 -152h-10l-274 565h65l214 -432l44 90l-165 342h65l135 -272l135 272h65l-166 -342l45 -90l214 432h65'], + 0x2A57: [536,29,706,106,683,'683 536l-567 -565h-10v565h66v-419l421 419h90'], + 0x2A58: [536,29,706,23,600,'600 -29h-66v419l-421 -419h-90l567 565h10v-565'], + 0x2A59: [585,77,620,31,589,'589 -77h-65l-130 261l-79 -164h-10l-80 164l-129 -261h-65l160 331l-160 331h65l129 -261l80 164h10l79 -164l130 261h65l-161 -331zM360 254l-50 101l-50 -101l50 -101'], + 0x2A5A: [536,29,620,31,589,'589 -29h-65l-181 365v-365h-66v365l-181 -365h-65l274 565h10'], + 0x2A5B: [536,29,620,31,589,'589 536l-274 -565h-10l-274 565h65l181 -365v365h66v-365l181 365h65'], + 0x2A5C: [536,29,620,31,589,'589 -29h-65l-101 204h-226l-101 -204h-65l99 204h-99v66h131l143 295h10l143 -295h131v-66h-99zM390 241l-80 162l-80 -162h160'], + 0x2A5D: [536,29,620,31,589,'589 266h-131l-143 -295h-10l-143 295h-131v66h99l-99 204h65l101 -204h226l101 204h65l-99 -204h99v-66zM390 266h-160l80 -162'], + 0x2A5F: [536,139,620,30,590,'590 -29h-65l-215 432l-215 -432h-65l275 565h10zM573 -139h-526v66h526v-66'], + 0x2A60: [536,289,620,30,590,'590 -29h-65l-215 432l-215 -432h-65l275 565h10zM575 -139h-530v66h530v-66zM575 -289h-530v66h530v-66'], + 0x2A61: [479,0,620,45,575,'528 479l-218 -369l-219 369h72l150 -249l143 249h72zM575 0h-530v66h530v-66'], + 0x2A62: [806,29,620,30,590,'575 740h-530v66h530v-66zM575 590h-530v66h530v-66zM590 536l-275 -565h-10l-275 565h65l215 -432l215 432h65'], + 0x2A63: [536,289,620,30,590,'590 536l-275 -565h-10l-275 565h65l215 -432l215 432h65zM575 -139h-530v66h530v-66zM575 -289h-530v66h530v-66'], + 0x2A64: [791,284,1043,70,1008,'1008 -284l-938 537l938 538v-1075zM942 286v391l-681 -391h681zM942 -169v389h-681'], + 0x2A65: [791,284,1043,70,1008,'1008 253l-938 -537v1075zM817 286l-681 391v-391h681zM817 220h-681v-389'], + 0x2A66: [386,105,685,48,637,'637 320h-589v66h589v-66zM637 120h-589v66h589v-66zM406 -42c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64'], + 0x2A67: [703,-28,685,48,637,'405 640c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 412h-589v66h589v-66zM637 220h-589v66h589v-66zM637 28h-589v66h589v-66'], + 0x2A68: [695,189,685,48,637,'637 28h-179v-217h-66v217h-99v-217h-66v217h-179v66h179v126h-179v66h179v126h-179v66h179v217h66v-217h99v217h66v-217h179v-66h-179v-126h179v-66h-179v-126h179v-66zM392 286v126h-99v-126h99zM392 94v126h-99v-126h99'], + 0x2A69: [662,156,685,48,637,'637 28h-100v-184h-66v184h-95v-184h-66v184h-96v-184h-66v184h-100v66h100v126h-100v66h100v126h-100v66h100v184h66v-184h96v184h66v-184h95v184h66v-184h100v-66h-100v-126h100v-66h-100v-126h100v-66zM471 286v126h-95v-126h95zM310 286v126h-96v-126h96zM471 94v126 h-95v-126h95zM310 94v126h-96v-126h96'], + 0x2A6A: [521,-148,685,48,637,'415 458c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM604 362h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2A6B: [521,13,685,48,637,'555 458c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM604 362h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM285 51 c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x2A6C: [543,38,685,48,637,'604 543h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM637 220h-589v66h589v-66zM604 176h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128 c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2A6D: [703,27,685,48,637,'410 640c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM617 532h20c-6 -85 -60 -214 -158 -214c-96 0 -213 148 -285 148c-70 0 -110 -77 -126 -148h-20c5 100 65 214 163 214c96 0 213 -148 286 -148c69 0 103 77 120 148zM637 173h-589v66h589 v-66zM637 -27h-589v66h589v-66'], + 0x2A6E: [847,-120,685,48,637,'361 642l9 -6c27 -18 59 -28 96 -34c44 -7 60 -17 60 -43c0 -22 -15 -39 -36 -39c-19 0 -35 13 -60 44c-27 33 -49 45 -69 58l-8 5v-9c0 -39 7 -75 20 -110c5 -14 9 -26 9 -33c0 -20 -20 -39 -40 -39c-19 0 -36 17 -36 36c0 12 5 28 12 47c12 32 16 56 16 99v9 c-35 -22 -42 -27 -52 -36c-10 -10 -12 -12 -41 -45c-17 -19 -27 -25 -43 -25c-23 0 -37 15 -37 36c0 26 18 37 63 45c46 9 62 15 103 40c-38 23 -63 30 -97 37c-49 10 -67 21 -67 46c0 21 13 37 33 37c16 0 27 -8 49 -32c32 -36 51 -52 89 -73v13c0 27 -5 58 -15 91 c-7 21 -11 39 -11 52c0 19 16 34 36 34s37 -16 37 -36c0 -12 -4 -27 -11 -47c-12 -32 -17 -59 -17 -83v-24c28 16 39 24 58 42c24 24 55 65 77 65s37 -15 37 -38c0 -26 -13 -37 -52 -43c-44 -7 -63 -13 -112 -41zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0x2A6F: [707,-25,685,48,637,'498 540h-34l-122 103l-121 -103h-34l124 167h62zM604 475h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM604 239h33c-6 -85 -60 -204 -158 -204 c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2A70: [650,146,685,48,637,'604 650h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM604 414h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM637 54h-589v66h589v-66zM637 -146h-589v66h589v-66'], + 0x2A71: [648,141,685,48,637,'637 582h-589v66h589v-66zM637 382h-589v66h589v-66zM637 53h-262v-194h-66v194h-261v66h261v209h66v-209h262v-66'], + 0x2A72: [648,141,685,48,637,'637 388h-261v-209h-66v209h-262v66h262v194h66v-194h261v-66zM637 59h-589v66h589v-66zM637 -141h-589v66h589v-66'], + 0x2A73: [532,27,685,48,637,'637 466h-589v66h589v-66zM637 266h-589v66h589v-66zM604 187h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2A74: [417,-89,1015,48,967,'967 320h-509v66h509v-66zM967 120h-509v66h509v-66zM376 354c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM175 354c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM376 153c0 -34 -29 -64 -64 -64 c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63zM175 153c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x2A75: [386,-120,997,48,949,'949 320h-400v66h400v-66zM949 120h-400v66h400v-66zM448 320h-400v66h400v-66zM448 120h-400v66h400v-66'], + 0x2A76: [386,-120,1436,48,1388,'1388 320h-380v66h380v-66zM1388 120h-380v66h380v-66zM908 320h-380v66h380v-66zM908 120h-380v66h380v-66zM428 320h-380v66h380v-66zM428 120h-380v66h380v-66'], + 0x2A77: [611,106,685,48,637,'507 548c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63zM305 548c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66zM507 -42 c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63zM305 -42c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x2A78: [703,-28,685,38,647,'647 640c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM486 640c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM326 640c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 412h-589v66h589 v-66zM165 640c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 220h-589v66h589v-66zM637 28h-589v66h589v-66'], + 0x2A79: [532,26,685,44,609,'609 253c0 -52 -43 -95 -95 -95s-95 43 -95 95s43 95 95 95s95 -43 95 -95zM559 253c0 25 -20 45 -45 45s-45 -20 -45 -45s20 -45 45 -45s45 20 45 45zM609 -26l-565 274v10l565 274v-65l-432 -214l432 -214v-65'], + 0x2A7A: [532,26,685,76,641,'641 248l-565 -274v65l432 214l-432 214v65l565 -274v-10zM266 253c0 -52 -43 -95 -95 -95s-95 43 -95 95s43 95 95 95s95 -43 95 -95zM216 253c0 25 -20 45 -45 45s-45 -20 -45 -45s20 -45 45 -45s45 20 45 45'], + 0x2A7B: [806,26,685,44,609,'241 510h-31c0 32 2 60 23 109c12 28 30 65 30 96c0 33 -17 52 -47 52c-26 0 -47 -23 -47 -33c0 -12 19 -12 19 -34c0 -19 -13 -33 -34 -33c-24 0 -39 19 -39 46c0 51 47 93 109 93s120 -35 120 -96c0 -36 -14 -58 -66 -113c-20 -21 -28 -43 -37 -87zM271 440 c0 -24 -18 -43 -42 -43c-27 0 -43 19 -43 43s19 42 43 42c21 0 42 -19 42 -42zM609 -26l-565 274v10l565 274v-65l-432 -214l432 -214v-65'], + 0x2A7C: [806,26,685,76,641,'460 510h-31c0 32 2 60 23 109c12 28 30 65 30 96c0 33 -17 52 -47 52c-26 0 -47 -23 -47 -33c0 -12 19 -12 19 -34c0 -19 -13 -33 -34 -33c-24 0 -39 19 -39 46c0 51 47 93 109 93s120 -35 120 -96c0 -36 -14 -58 -66 -113c-20 -21 -28 -43 -37 -87zM490 440 c0 -24 -18 -43 -42 -43c-27 0 -43 19 -43 43s19 42 43 42c21 0 42 -19 42 -42zM641 248l-565 -274v65l432 214l-432 214v65l565 -274v-10'], + 0x2A7F: [625,137,685,60,625,'549 347c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM625 67l-565 275v10l565 273v-65l-432 -213l432 -215v-65zM625 -137l-565 275v66l565 -275v-66'], + 0x2A80: [625,137,685,60,625,'625 342l-565 -275v65l432 215l-432 213v65l565 -273v-10zM263 348c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM625 138l-565 -275v66l565 275v-66'], + 0x2A81: [625,137,685,60,625,'287 552c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM625 67l-565 275v10l565 273v-65l-432 -213l432 -215v-65zM625 -137l-565 275v66l565 -275v-66'], + 0x2A82: [625,137,685,60,625,'525 552c0 -39 -26 -64 -64 -64s-63 30 -63 64c0 37 31 63 63 63s64 -25 64 -63zM625 342l-565 -275v65l432 215l-432 213v65l565 -273v-10zM625 138l-565 -275v66l565 275v-66'], + 0x2A83: [777,137,685,60,625,'623 714c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM625 67l-565 275v10l565 273v-65l-432 -213l432 -215v-65zM625 -137l-565 275v66l565 -275v-66'], + 0x2A84: [777,137,685,60,625,'189 714c0 -39 -26 -64 -64 -64s-63 30 -63 64c0 37 31 63 63 63s64 -25 64 -63zM625 342l-565 -275v65l432 215l-432 213v65l565 -273v-10zM625 138l-565 -275v66l565 275v-66'], + 0x2A8D: [746,176,685,48,637,'625 249l-565 244v10l565 243v-65l-432 -183l432 -184v-65zM604 175h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM625 -176h-565v66h565v-66'], + 0x2A8E: [746,176,685,48,637,'625 492l-565 -243v65l423 183l-423 184v65l565 -244v-10zM604 175h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM625 -176h-565v66h565v-66'], + 0x2A8F: [867,361,685,60,649,'625 404l-565 227v10l565 226v-65l-407 -166l407 -167v-65zM616 360h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM625 -133l-565 -228v65l407 168l-407 165 v65l565 -225v-10'], + 0x2A90: [867,361,685,60,649,'625 632l-565 -228v65l407 168l-407 165v65l565 -225v-10zM616 360h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM625 -361l-565 227v10l565 226v-65 l-407 -166l407 -167v-65'], + 0x2A91: [844,338,685,55,630,'620 381l-565 226v10l565 227v-65l-407 -167l407 -166v-65zM630 240l-565 -225v65l407 165l-407 168v65l565 -228v-10zM625 -138h-565v66h565v-66zM625 -338h-565v66h565v-66'], + 0x2A92: [844,338,685,55,630,'630 606l-565 -225v65l407 165l-407 168v65l565 -228v-10zM620 15l-565 226v10l565 227v-65l-407 -167l407 -166v-65zM625 -138h-565v66h565v-66zM625 -338h-565v66h565v-66'], + 0x2A93: [866,361,685,60,625,'625 403l-565 226v10l565 227v-65l-407 -167l407 -166v-65zM625 206l-565 225v65l565 -225v-65zM625 62l-565 -226v65l407 166l-407 167v65l565 -227v-10zM625 -136l-565 -225v65l565 225v-65'], + 0x2A94: [866,361,685,60,625,'625 629l-565 -226v65l407 166l-407 167v65l565 -227v-10zM625 431l-565 -225v65l565 225v-65zM625 -164l-565 226v10l565 227v-65l-407 -167l407 -166v-65zM625 -361l-565 225v65l565 -225v-65'], + 0x2A97: [640,122,685,56,621,'621 574l-565 -275v66l565 275v-66zM545 155c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64zM621 -122l-565 274v10l565 274v-65l-432 -214l432 -214v-65'], + 0x2A98: [640,122,685,56,621,'621 299l-565 275v66l565 -275v-66zM621 152l-565 -274v65l432 214l-432 214v65l565 -274v-10zM259 159c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x2A99: [718,211,685,60,625,'625 652h-565v66h565v-66zM625 452h-565v66h565v-66zM625 -211l-565 273v10l565 275v-65l-432 -215l432 -213v-65'], + 0x2A9A: [718,211,685,60,625,'625 652h-565v66h565v-66zM625 452h-565v66h565v-66zM625 63l-565 -274v65l432 214l-432 214v65l565 -274v-10'], + 0x2A9B: [726,220,685,60,625,'625 660l-565 -275v66l565 275v-66zM625 466l-565 -275v66l565 275v-66zM625 -220l-565 274v10l565 274v-65l-432 -214l432 -214v-65'], + 0x2A9C: [726,220,685,60,625,'625 385l-565 275v66l565 -275v-66zM625 191l-565 275v66l565 -275v-66zM625 54l-565 -274v65l432 214l-432 214v65l565 -274v-10'], + 0x2A9D: [664,164,685,53,642,'609 664h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM620 -164l-565 274v10l565 274v-65l-432 -214l432 -214v-65'], + 0x2A9E: [664,164,685,43,632,'599 664h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM630 110l-565 -274v65l432 214l-432 214v65l565 -274v-10'], + 0x2A9F: [774,267,685,48,637,'604 774h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM625 66l-565 215v10l565 212v-65l-400 -152l400 -155v-65zM625 -66h-565v66h565v-66zM625 -267h-565 v66h565v-66'], + 0x2AA0: [774,267,685,48,637,'604 774h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM625 278l-565 -212v65l400 152l-400 155v65l565 -215v-10zM625 -66h-565v66h565v-66zM625 -267h-565 v66h565v-66'], + 0x2AA1: [532,26,685,44,609,'609 105l-297 143v10l297 145v-68l-164 -82l164 -80v-68zM609 -26l-565 274v10l565 274v-65l-432 -214l432 -214v-65'], + 0x2AA2: [532,26,685,76,641,'641 248l-565 -274v65l432 214l-432 214v65l565 -274v-10zM373 248l-297 -145v68l164 82l-164 80v68l297 -143v-10'], + 0x2AA3: [609,103,933,25,908,'908 51l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM590 51l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM908 -103h-883v66h883v-66'], + 0x2AA4: [532,26,782,60,722,'722 -26l-331 160l-331 -160v65l261 129l-164 80v10l164 79l-261 130v65l331 -161l331 161v-65l-261 -130l164 -79v-10l-164 -80l261 -129v-65zM492 253l-101 50l-101 -50l101 -50'], + 0x2AA5: [532,26,855,60,795,'795 -26l-355 274v10l355 274v-70l-261 -209l261 -209v-70zM415 248l-355 -274v70l261 209l-261 209v70l355 -274v-10'], + 0x2AA6: [532,26,685,35,625,'35 258l521 274c44 -83 69 -178 69 -279s-25 -196 -69 -279l-521 274v10zM161 253l362 -192c23 61 36 125 36 193s-14 133 -36 193'], + 0x2AA7: [532,26,685,60,650,'650 248l-521 -274c-44 83 -69 178 -69 279s25 196 69 279l521 -274v-10zM524 253l-362 192c-23 -61 -36 -125 -36 -193s14 -133 36 -193'], + 0x2AA8: [625,137,685,50,640,'50 351l521 274c44 -83 69 -178 69 -279s-25 -196 -69 -279l-521 274v10zM176 346l362 -192c23 61 36 125 36 193s-14 133 -36 193zM615 -137l-565 275v66l565 -275v-66'], + 0x2AA9: [626,137,685,45,635,'635 342l-521 -274c-44 83 -69 178 -69 279s25 196 69 279l521 -274v-10zM509 347l-362 192c-23 -61 -36 -125 -36 -193s14 -133 36 -193zM635 138l-565 -275v66l565 275v-66'], + 0x2AAA: [537,31,685,45,609,'609 -31l-564 274v20l564 274v-65l-375 -186h375v-66h-375l375 -186v-65'], + 0x2AAB: [537,31,685,76,640,'640 243l-564 -274v65l375 186h-375v66h375l-375 186v65l564 -274v-20'], + 0x2AAC: [613,103,685,60,625,'624 45l-564 274v20l564 274v-65l-375 -186h375v-66h-375l375 -186v-65zM625 -103h-565v66h565v-66'], + 0x2AAD: [613,103,685,60,625,'625 319l-564 -274v65l375 186h-375v66h375l-375 186v65l564 -274v-20zM625 -103h-565v66h565v-66'], + 0x2AAE: [563,-28,685,48,637,'637 412h-209c-1 41 -34 85 -83 85c-54 0 -87 -44 -87 -85h-210v66h156c20 41 70 85 139 85s123 -44 139 -85h155v-66zM637 220h-589v66h589v-66zM637 28h-589v66h589v-66'], + 0x2AB1: [628,216,685,60,625,'625 147v-77c-120 161 -362 230 -565 246v66c203 16 445 85 565 246v-77c-50 -86 -219 -167 -342 -202c123 -35 292 -116 342 -202zM625 -120h-283l-60 -96h-59l60 96h-223v66h265l61 96h59l-61 -96h241v-66'], + 0x2AB2: [628,216,685,60,625,'625 382v-66c-203 -16 -445 -85 -565 -246v77c50 86 219 167 342 202c-123 35 -292 116 -342 202v77c120 -161 362 -230 565 -246zM625 -120h-281l-60 -96h-59l60 96h-225v66h267l61 96h59l-61 -96h239v-66'], + 0x2AB3: [717,211,685,60,625,'625 236v-77c-120 161 -362 230 -565 246v66c203 16 445 85 565 246v-77c-50 -86 -219 -167 -342 -202c123 -35 292 -116 342 -202zM625 -12h-565v66h565v-66zM625 -211h-565v66h565v-66'], + 0x2AB4: [717,211,685,60,625,'625 471v-66c-203 -16 -445 -85 -565 -246v77c50 86 219 167 342 202c-123 35 -292 116 -342 202v77c120 -161 362 -230 565 -246zM625 -12h-565v66h565v-66zM625 -211h-565v66h565v-66'], + 0x2ABB: [532,26,933,25,908,'908 51v-77c-120 161 -342 230 -525 246v66c183 16 405 85 525 246v-77c-50 -86 -199 -167 -312 -202c113 -35 262 -116 312 -202zM550 51v-77c-120 161 -342 230 -525 246v66c183 16 405 85 525 246v-77c-50 -86 -199 -167 -312 -202c113 -35 262 -116 312 -202'], + 0x2ABC: [532,26,933,25,908,'908 286v-66c-183 -16 -405 -85 -525 -246v77c50 86 199 167 312 202c-113 35 -262 116 -312 202v77c120 -161 342 -230 525 -246zM550 286v-66c-183 -16 -405 -85 -525 -246v77c50 86 199 167 312 202c-113 35 -262 116 -312 202v77c120 -161 342 -230 525 -246'], + 0x2ABD: [532,26,685,60,625,'449 252c0 -32 -26 -63 -63 -63c-34 0 -64 25 -64 63s25 64 64 64c38 0 63 -32 63 -64zM625 -26h-294c-159 0 -271 131 -271 279s114 279 274 279h291v-66h-291c-114 0 -208 -106 -208 -213s95 -213 209 -213h290v-66'], + 0x2ABE: [532,26,685,60,625,'60 532h294c159 0 271 -131 271 -279s-114 -279 -274 -279h-291v66h291c114 0 208 106 208 213s-95 213 -209 213h-290v66zM363 254c0 -38 -25 -64 -64 -64c-38 0 -63 32 -63 64s26 63 63 63c34 0 64 -25 64 -63'], + 0x2ABF: [607,103,685,60,625,'625 207h-373c-115 0 -192 93 -192 200s79 200 196 200h369v-66h-372c-71 0 -127 -67 -127 -134c0 -66 56 -134 127 -134h372v-66zM495 7h-109v-110h-50v110h-109v50h109v110h50v-110h109v-50'], + 0x2AC0: [607,103,685,60,625,'60 607h373c115 0 192 -93 192 -200s-79 -200 -196 -200h-369v66h372c71 0 127 67 127 134c0 66 -56 134 -127 134h-372v66zM458 7h-109v-110h-50v110h-109v50h109v110h50v-110h109v-50'], + 0x2AC1: [607,103,685,60,625,'625 207h-373c-115 0 -192 93 -192 200s79 200 196 200h369v-66h-372c-71 0 -127 -67 -127 -134c0 -66 56 -134 127 -134h372v-66zM495 -68l-35 -35l-99 99l-98 -99l-36 36l99 98l-99 99l35 35l99 -99l98 99l36 -36l-99 -98'], + 0x2AC2: [607,103,685,60,625,'60 607h369c117 0 196 -93 196 -200s-77 -200 -192 -200h-373v66h372c71 0 127 68 127 134c0 67 -56 134 -127 134h-372v66zM458 -67l-36 -36l-98 99l-99 -99l-35 35l99 99l-99 98l36 36l98 -99l99 99l35 -35l-99 -99'], + 0x2AC3: [709,103,685,60,625,'406 646c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM625 96h-373c-115 0 -192 93 -192 200s79 200 196 200h369v-66h-372c-71 0 -127 -67 -127 -134c0 -66 56 -134 127 -134h372v-66zM625 -103h-555v66h555v-66'], + 0x2AC4: [709,103,685,60,625,'406 646c0 -39 -26 -64 -64 -64s-63 30 -63 64c0 37 31 63 63 63s64 -25 64 -63zM60 496h369c117 0 196 -93 196 -200s-77 -200 -192 -200h-373v66h372c71 0 127 68 127 134c0 67 -56 134 -127 134h-372v66zM615 -103h-555v66h555v-66'], + 0x2AC7: [665,164,685,60,625,'625 107h-294c-159 0 -271 131 -271 279s114 279 274 279h291v-66h-291c-114 0 -208 -106 -208 -213s95 -213 209 -213h290v-66zM593 50h32c-6 -85 -58 -204 -152 -204c-92 0 -194 128 -263 128c-67 0 -103 -67 -118 -138h-32c5 100 62 204 156 204 c92 0 195 -128 265 -128c66 0 98 67 112 138'], + 0x2AC8: [665,164,685,60,625,'60 665h294c159 0 271 -131 271 -279s-114 -279 -274 -279h-291v66h291c114 0 208 106 208 213s-95 213 -209 213h-290v66zM593 50h32c-6 -85 -58 -204 -152 -204c-92 0 -194 128 -263 128c-67 0 -103 -67 -118 -138h-32c5 100 62 204 156 204c92 0 195 -128 265 -128 c66 0 98 67 112 138'], + 0x2AC9: [746,274,685,60,625,'625 249h-326c-143 0 -238 115 -238 248s98 249 243 249h321v-66h-326c-97 0 -172 -91 -172 -182c0 -89 75 -183 172 -183h326v-66zM593 176h32c-6 -85 -58 -204 -152 -204c-92 0 -194 128 -263 128c-67 0 -103 -67 -118 -138h-32c5 100 62 204 156 204 c92 0 195 -128 265 -128c66 0 98 67 112 138zM593 -60h32c-6 -85 -58 -204 -152 -204c-92 0 -194 128 -263 128c-67 0 -103 -67 -118 -138h-32c5 100 62 204 156 204c92 0 195 -128 265 -128c66 0 98 67 112 138'], + 0x2ACA: [746,274,685,60,625,'60 746h321c145 0 243 -116 243 -249s-95 -248 -238 -248h-326v66h326c97 0 172 94 172 183c0 91 -75 182 -172 182h-326v66zM593 176h32c-6 -85 -58 -204 -152 -204c-92 0 -194 128 -263 128c-67 0 -103 -67 -118 -138h-32c5 100 62 204 156 204c92 0 195 -128 265 -128 c66 0 98 67 112 138zM593 -60h32c-6 -85 -58 -204 -152 -204c-92 0 -194 128 -263 128c-67 0 -103 -67 -118 -138h-32c5 100 62 204 156 204c92 0 195 -128 265 -128c66 0 98 67 112 138'], + 0x2ACD: [558,53,1352,64,1288,'1288 492h-1158v-479h546v-66h-612v611h1224v-66'], + 0x2ACE: [558,53,1352,64,1288,'1288 -53h-612v66h546v479h-1158v66h1224v-611'], + 0x2ACF: [532,26,685,50,615,'615 -26h-294c-159 0 -271 131 -271 279s114 279 274 279h291v-558zM549 40v426h-225c-114 0 -208 -106 -208 -213s95 -213 209 -213h224'], + 0x2AD0: [532,26,685,70,635,'70 532h294c159 0 271 -131 271 -279s-114 -279 -274 -279h-291v558zM136 40h225c114 0 208 106 208 213s-95 213 -209 213h-224v-426'], + 0x2AD1: [609,103,685,60,626,'625 51h-294c-159 0 -271 131 -271 279s114 279 274 279h291v-558zM559 117v426h-225c-114 0 -208 -106 -208 -213s95 -213 209 -213h224zM626 -103h-556v66h556v-66'], + 0x2AD2: [609,103,685,60,625,'60 609h294c159 0 271 -131 271 -279s-114 -279 -274 -279h-291v558zM126 117h225c114 0 208 106 208 213s-95 213 -209 213h-224v-426zM615 -103h-555v66h555v-66'], + 0x2AD3: [715,209,685,60,625,'615 315h-363c-115 0 -192 93 -192 200s79 200 196 200h359v-66h-362c-71 0 -127 -67 -127 -134c0 -66 56 -134 127 -134h362v-66zM70 191h363c115 0 192 -93 192 -200s-79 -200 -196 -200h-359v66h362c71 0 127 67 127 134c0 66 -56 134 -127 134h-362v66'], + 0x2AD4: [715,209,685,60,625,'70 715h363c115 0 192 -93 192 -200s-79 -200 -196 -200h-359v66h362c71 0 127 67 127 134c0 66 -56 134 -127 134h-362v66zM615 -209h-363c-115 0 -192 93 -192 200s79 200 196 200h359v-66h-362c-71 0 -127 -67 -127 -134c0 -66 56 -134 127 -134h362v-66'], + 0x2AD5: [715,209,685,60,625,'625 315h-373c-115 0 -192 93 -192 200s79 200 196 200h369v-66h-372c-71 0 -127 -67 -127 -134c0 -66 56 -134 127 -134h372v-66zM625 -209h-373c-115 0 -192 93 -192 200s79 200 196 200h369v-66h-372c-71 0 -127 -67 -127 -134c0 -66 56 -134 127 -134h372v-66'], + 0x2AD6: [715,209,685,60,625,'60 715h373c115 0 192 -93 192 -200s-79 -200 -196 -200h-369v66h372c71 0 127 67 127 134c0 66 -56 134 -127 134h-372v66zM60 191h373c115 0 192 -93 192 -200s-79 -200 -196 -200h-369v66h372c71 0 127 67 127 134c0 66 -56 134 -127 134h-372v66'], + 0x2AD7: [532,26,1250,60,1190,'1190 -26h-274c-159 0 -271 131 -271 279s114 279 274 279h271v-66h-271c-114 0 -208 -106 -208 -213s95 -213 209 -213h270v-66zM60 532h271c160 0 274 -131 274 -279s-112 -279 -271 -279h-274v66h270c114 0 209 106 209 213s-94 213 -208 213h-271v66'], + 0x2AD8: [532,26,1250,60,1190,'1190 -26h-274c-150 0 -258 116 -270 254h-43c-12 -138 -119 -254 -269 -254h-274v66h270c105 0 194 90 207 188h-169v50h169c-13 98 -101 188 -206 188h-271v66h271c151 0 260 -117 272 -254h43c12 137 122 254 273 254h271v-66h-271c-105 0 -194 -90 -207 -188h170v-50 h-170c13 -98 103 -188 208 -188h270v-66'], + 0x2AD9: [536,31,620,48,572,'572 -31h-66v296c0 102 -72 185 -163 202v-498h-66v498c-93 -16 -163 -101 -163 -203v-295h-66v299c0 159 113 268 262 268c148 0 262 -111 262 -271v-296'], + 0x2ADA: [697,128,620,48,572,'572 -31h-66v296c0 102 -72 186 -163 203v-596h-66v596c-93 -16 -163 -102 -163 -204v-295h-66v299c0 147 96 251 229 266v97h-124v66h314v-66h-124v-97c131 -16 229 -121 229 -269v-296'], + 0x2ADB: [695,97,620,48,572,'572 0h-66v296c0 102 -72 186 -163 203v-596h-66v596c-93 -16 -163 -102 -163 -204v-295h-66v299c0 147 96 251 229 266v130h66v-130c131 -16 229 -121 229 -269v-296'], + 0x2ADC: [557,10,620,11,572,'572 327v-70c0 -148 -99 -267 -262 -267c-68 0 -125 21 -168 57l-56 -57h-75l94 96c-37 47 -57 108 -57 175v66h66v-66c0 -48 15 -91 39 -126l124 127v295h66v-227l154 158h75l-229 -235v-196c93 16 163 101 163 204v66h66zM277 57v129l-87 -89c25 -21 55 -35 87 -40'], + 0x2ADD: [557,10,620,48,572,'572 327v-70c0 -148 -99 -267 -262 -267c-161 0 -262 123 -262 271v66h66v-66c0 -105 72 -188 163 -204v500h66v-500c93 16 163 101 163 204v66h66'], + 0x2ADE: [662,0,497,64,433,'433 0h-66v298h-303v66h303v298h66v-662'], + 0x2ADF: [371,0,685,48,637,'637 305h-262v-305h-66v305h-261v66h589v-66'], + 0x2AE0: [371,0,685,48,637,'637 0h-589v66h262v305h66v-305h261v-66'], + 0x2AE1: [662,0,685,48,637,'513 309l50 -26c45 -23 68 -45 68 -84c0 -44 -39 -83 -93 -83c-51 0 -62 19 -78 19c-10 0 -11 -7 -16 -14h-19v94h21c15 -56 34 -76 81 -76c36 0 55 20 55 42c0 21 -12 38 -38 51l-39 19c-50 24 -73 51 -73 84c0 48 41 82 94 82c36 0 46 -19 67 -19c4 0 7 0 13 6h12v-90 h-21c-6 57 -28 82 -72 82c-30 0 -49 -15 -49 -45c0 -16 18 -32 37 -42zM637 0h-589v66h262v596h66v-596h261v-66'], + 0x2AE2: [662,0,685,60,625,'625 106h-499v-106h-66v662h66v-106h499v-66h-499v-126h499v-66h-499v-126h499v-66'], + 0x2AE3: [662,0,860,46,803,'803 0h-66v662h66v-662zM603 0h-66v298h-491v66h491v298h66v-662'], + 0x2AE4: [662,0,685,60,625,'625 0h-66v198h-499v66h499v134h-499v66h499v198h66v-662'], + 0x2AE5: [662,0,860,46,803,'803 0h-66v662h66v-662zM603 0h-66v198h-491v66h491v134h-491v66h491v198h66v-662'], + 0x2AE6: [662,0,685,57,626,'626 298h-303v-298h-66v298h-134v-298h-66v662h66v-298h134v298h66v-298h303v-66'], + 0x2AE7: [571,0,685,48,637,'637 505h-589v66h589v-66zM637 305h-262v-305h-66v305h-261v66h589v-66'], + 0x2AE8: [571,0,685,48,637,'637 200h-589v66h262v305h66v-305h261v-66zM637 0h-589v66h589v-66'], + 0x2AE9: [691,185,685,48,637,'637 320h-589v66h261v305h66v-305h262v-66zM637 120h-262v-305h-66v305h-261v66h589v-66'], + 0x2AEA: [662,0,685,48,637,'637 596h-162v-596h-66v596h-134v-596h-66v596h-161v66h589v-66'], + 0x2AEB: [662,0,685,48,637,'637 0h-589v66h162v596h66v-596h134v596h66v-596h161v-66'], + 0x2AEC: [489,-18,600,48,552,'552 18h-66v205h-438v66h438v134h-438v66h504v-471'], + 0x2AED: [489,-18,600,48,552,'552 223h-438v-205h-66v471h504v-66h-438v-134h438v-66'], + 0x2AEE: [690,189,404,23,381,'381 186l-24 -53l-122 62v-384h-66v418l-146 75l24 52l122 -62v396h66v-430'], + 0x2AEF: [660,154,502,101,401,'218 -154v518c-67 15 -117 74 -117 146c0 83 67 150 150 150s150 -67 150 -150c0 -72 -50 -131 -117 -146v-518h-66zM351 510c0 55 -45 100 -100 100s-100 -45 -100 -100s45 -100 100 -100s100 45 100 100'], + 0x2AF0: [660,154,502,101,401,'284 660v-518c67 -15 117 -74 117 -146c0 -83 -67 -150 -150 -150s-150 67 -150 150c0 72 50 131 117 146v518h66zM351 -4c0 55 -45 100 -100 100s-100 -45 -100 -100s45 -100 100 -100s100 45 100 100'], + 0x2AF1: [693,187,502,101,401,'284 627v-518c67 -15 117 -74 117 -146c0 -83 -67 -150 -150 -150s-150 67 -150 150c0 72 50 131 117 146v518h-116v66h298v-66h-116zM351 -37c0 55 -45 100 -100 100s-100 -45 -100 -100s45 -100 100 -100s100 45 100 100'], + 0x2AF2: [695,189,523,10,513,'513 228h-119v-417h-66v417h-133v-417h-66v417h-119v50h119v417h66v-417h133v417h66v-417h119v-50'], + 0x2AF3: [695,189,685,48,637,'604 360h33c-6 -85 -60 -204 -158 -204h-4v-345h-66v363c-46 22 -92 58 -133 83v-446h-66v473h-6c-70 0 -107 -67 -123 -138h-33c5 99 64 203 162 204v345h66v-361c45 -21 91 -56 133 -82v443h66v-472c4 -1 8 -1 12 -1c69 0 102 67 117 138'], + 0x2AF4: [695,189,685,131,555,'555 -189h-66v884h66v-884zM376 -189h-66v884h66v-884zM197 -189h-66v884h66v-884'], + 0x2AF5: [695,189,685,12,674,'674 228h-119v-417h-66v417h-113v-417h-66v417h-113v-417h-66v417h-119v50h119v417h66v-417h113v417h66v-417h113v417h66v-417h119v-50'], + 0x2AF6: [608,102,685,279,406,'406 545c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM406 254c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM406 -38c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0x2AF7: [661,155,1170,58,1080,'1080 103l-367 145v10l367 145v-65l-208 -85l208 -85v-65zM1080 -26l-694 274v10l694 274v-65l-526 -214l526 -214v-65zM1080 -155l-1022 403v10l1022 403v-65l-843 -344l843 -342v-65'], + 0x2AF8: [661,155,1170,90,1112,'1112 248l-1022 -403v65l843 344l-843 342v65l1022 -403v-10zM784 248l-694 -274v65l526 214l-526 214v65l694 -274v-10zM457 248l-367 -145v65l208 85l-208 85v65l367 -145v-10'], + 0x2AF9: [726,220,685,60,625,'625 168l-565 274v10l565 274v-65l-432 -214l432 -214v-65zM625 -26l-565 275v66l565 -275v-66zM625 -220l-565 275v66l565 -275v-66'], + 0x2AFA: [726,220,685,60,625,'625 442l-565 -274v65l432 214l-432 214v65l565 -274v-10zM625 249l-565 -275v66l565 275v-66zM625 55l-565 -275v66l565 275v-66'], + 0x2AFB: [710,222,894,46,848,'848 710l-360 -932h-72l360 932h72zM663 710l-360 -932h-72l360 932h72zM478 710l-360 -932h-72l360 932h72'], + 0x2AFC: [763,259,654,94,560,'560 -259h-80v1022h80v-1022zM367 -259h-80v1022h80v-1022zM174 -259h-80v1022h80v-1022'], + 0x2AFD: [710,222,709,46,663,'663 710l-360 -932h-72l360 932h72zM478 710l-360 -932h-72l360 932h72'], + 0x2AFE: [690,189,410,100,310,'310 -189h-210v879h210v-879zM270 -149v799h-130v-799h130'], + 0x2AFF: [763,259,478,94,384,'384 -259h-290v1022h290v-1022zM304 -179v862h-130v-862h130'], + 0xE004: [450,-59,926,55,871,'866 371l5 -9c-67 -81 -97 -189 -121 -285l-26 7c4 40 14 85 28 124c2 4 4 11 4 18c0 16 -14 16 -19 16c-23 0 -88 -55 -183 -55c-66 0 -114 19 -157 37l-97 -165h-58l108 184c-21 7 -43 12 -65 12c-42 0 -132 -5 -185 -68l-45 49c64 63 145 85 225 85 c37 0 70 -10 102 -23l90 152h58l-100 -170c37 -15 77 -27 126 -27c74 0 149 38 149 73c0 12 -15 21 -27 25c-41 14 -82 27 -118 47l9 26c82 -32 168 -55 257 -55c13 0 26 0 40 2'], + 0xE005: [530,-57,926,55,871,'871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-107c-57 0 -100 33 -139 70l-137 -233h-58l158 269c-33 32 -65 48 -104 48c-78 0 -147 -77 -190 -152l-51 34c53 97 147 184 241 184c56 0 101 -20 140 -54 l84 144h58l-105 -179c36 -35 69 -65 103 -65h108c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191'], + 0xE00A: [538,-55,685,48,637,'183 538v-66c-61 0 -105 -28 -105 -88c0 -69 46 -103 110 -103c41 0 66 17 86 38c47 50 93 132 128 171c29 33 57 48 98 48c67 0 137 -62 137 -163c0 -73 -47 -160 -141 -160v66c60 0 111 26 111 88c0 69 -46 103 -110 103c-36 0 -59 -11 -81 -32 c-45 -41 -101 -150 -155 -194c-23 -19 -49 -31 -81 -31c-64 0 -132 54 -132 158c0 138 91 165 135 165zM637 55h-589v66h589v-66'], + 0xE00B: [543,37,685,48,637,'502 477v66c44 0 135 -27 135 -165c0 -104 -68 -158 -132 -158c-32 0 -58 12 -81 31c-54 44 -110 153 -155 194c-22 21 -45 32 -81 32c-64 0 -110 -34 -110 -103c0 -62 51 -88 111 -88v-66c-94 0 -141 87 -141 160c0 101 70 163 137 163c41 0 69 -15 98 -48 c35 -39 81 -121 128 -171c20 -21 45 -38 86 -38c64 0 110 34 110 103c0 60 -44 88 -105 88zM637 110h-589v66h589v-66zM637 -37h-589v66h589v-66'], + 0xE00E: [846,340,685,60,626,'626 -211h-421l-28 -129h-52l28 129h-92v66h107l29 133h-136v66h151l45 203l-197 -95v65l213 105l43 194l-256 127v65l270 -131l57 259h52l-62 -281l248 -120v-10l-310 -150l-51 -231h362v-66h-377l-29 -133h406v-66zM492 440l-129 63l-31 -142'], + 0xE00F: [730,229,685,56,621,'621 139l-370 -175l-73 -193h-58l60 159l-124 -64v60l152 75l67 175l-219 -106v63l251 125l58 151l-309 154v65l331 -161l101 263h58l-110 -287l185 -90v-10l-274 -132l-68 -176l342 164v-60zM488 348l-74 37l-36 -92'], + 0xE010: [730,229,685,56,621,'621 -134l-338 162l-99 -257h-57l107 278l-178 90v60l198 -96l48 121l-246 119v10l363 177l77 200h58l-64 -166l131 64v-65l-163 -81l-87 -225l250 -124v-63l-272 130l-47 -120l319 -154v-60zM387 447l-198 -99l135 -67'], + 0xE011: [846,340,685,61,626,'626 -211h-371l-28 -129h-52l28 129h-142v66h157l29 133h-186v66h201l56 254l-257 125v10l321 155l55 248h52l-49 -220l186 90v-65l-203 -100l-45 -204l248 -122v-65l-261 126l-51 -232h312v-66h-327l-29 -133h356v-66zM365 522l-171 -84l138 -68'], + 0xE016: [818,311,685,53,618,'618 -211h-350l-23 -100h-53l23 100h-152v66h167l30 133h-197v66h212l25 107c-146 12 -247 137 -247 278c0 148 114 279 274 279h102l23 100h53l-23 -100h136v-66h-152l-98 -426h250v-66h-265l-25 -106h290v-66h-305l-30 -133h335v-66zM413 652h-86 c-114 0 -208 -106 -208 -213c0 -103 88 -205 196 -213'], + 0xE018: [818,311,685,67,632,'509 818l-30 -129c93 -46 153 -144 153 -250c0 -148 -112 -279 -271 -279h-4l-25 -106h290v-66h-305l-30 -133h335v-66h-350l-23 -100h-53l23 100h-152v66h167l30 133h-197v66h212l25 106h-237v66h252l96 417c-18 6 -37 9 -57 9h-291v66h291c25 0 49 -4 72 -10l26 110h53 zM463 620l-91 -394c107 9 194 111 194 213c0 71 -42 141 -103 181'], + 0xE01E: [607,110,685,48,638,'605 148h33c-6 -85 -60 -184 -158 -184c-62 0 -128 48 -186 83l-59 -157h-54l68 181c-16 6 -31 11 -44 11c-70 0 -107 -47 -123 -118h-33c5 100 65 184 163 184c20 0 40 -5 61 -13l37 99c-39 24 -76 45 -106 45c-70 0 -107 -47 -123 -118h-33c5 100 65 184 163 184 c40 0 82 -21 123 -45l33 87c-60 34 -118 79 -162 79c-70 0 -107 -47 -123 -118h-33c5 100 65 184 163 184c59 0 122 -45 179 -79l58 154h54l-68 -179c19 -9 37 -14 53 -14c69 0 102 47 117 118h33c-6 -85 -60 -184 -158 -184c-23 0 -46 6 -69 16l-33 -91 c40 -25 77 -46 109 -46c69 0 102 47 117 118h33c-6 -85 -60 -184 -158 -184c-41 0 -84 21 -126 46l-35 -94c63 -35 123 -83 170 -83c69 0 102 47 117 118'], + 0xE023: [695,189,685,48,637,'415 628c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM637 -27h-362l-68 -162h-53l68 162h-174v66h202l57 134h-259v66h287l50 119c-67 38 -132 98 -181 98c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c67 0 139 -63 201 -100l116 273 h53l-125 -295c11 -4 21 -6 31 -6c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-16 0 -33 4 -49 10l-42 -99h249v-66h-277l-57 -134h334v-66'], + 0xE025: [724,236,685,48,637,'637 -146h-441l-39 -90h-54l39 90h-94v66h123l58 134h-181v66h210l69 158c-31 21 -85 60 -123 60c-74 0 -109 -76 -123 -138h-33c5 90 59 204 163 204c50 0 104 -35 144 -62l53 123c-23 11 -45 25 -67 39c-34 23 -96 70 -137 70c-74 0 -109 -76 -123 -138h-33 c5 90 59 204 163 204c75 0 158 -79 224 -113l86 197h54l-92 -212h4c74 0 104 77 117 138h33c-6 -84 -59 -204 -158 -204c-8 0 -16 1 -24 2l-58 -134c24 -16 60 -38 90 -38c74 0 104 77 117 138h33c-6 -84 -59 -204 -158 -204c-39 0 -78 21 -110 40l-57 -130h325v-66h-354 l-58 -134h412v-66'], + 0xE026: [662,156,685,47,612,'612 -26l-226 109v-239h-50v264l-289 140v10l289 140v264h50v-240l226 110v-65l-226 -112v-63l226 110v-68l-164 -81l164 -81v-68l-226 109v-62l226 -112v-65zM336 175v63l-21 10v10l21 10v62l-156 -77'], + 0xE027: [662,156,685,73,638,'638 248l-289 -140v-264h-50v239l-226 -109v65l226 112v62l-226 -109v68l164 81l-164 81v68l226 -110v63l-226 112v65l226 -110v240h50v-264l289 -140v-10zM505 253l-156 77v-62l21 -10v-10l-21 -10v-62'], + 0xE028: [663,155,933,25,908,'908 -26l-351 170l-37 -73l70 -34v-63l-96 46l-89 -175h-56l100 197l-424 206v10l565 274v-65l-432 -214l318 -159l36 72l-169 82v10l287 139l136 266h56l-117 -230l203 99v-65l-249 -123l-74 -146l323 -161v-63zM584 306l-108 -53l64 -32'], + 0xE029: [662,156,933,25,908,'908 249l-565 -275v63l432 216l-324 160l-36 -70l175 -84v-10l-296 -145l-133 -260h-56l114 224l-194 -94v63l239 120l78 153l-317 157v65l345 -167l36 70l-63 32v65l90 -44l89 174h56l-100 -195l430 -208v-10zM457 253l-70 35l-48 -94'], + 0xE02A: [662,156,1240,43,1184,'1184 -26l-521 274v10l521 274v-65l-388 -214l388 -216v-63zM874 -26l-308 161l-41 -77l39 -21v-63l-65 34l-88 -164h-56l100 187l-412 217v10l521 274v-65l-388 -214l306 -171l41 76l-170 90v10l310 163l129 241h56l-107 -200l133 70v-65l-185 -102l-93 -174l278 -154 v-63zM610 321l-124 -68l67 -38'], + 0xE02B: [662,156,1240,56,1197,'1197 248l-521 -274v65l388 214l-309 172l-41 -77l173 -90v-10l-315 -166l-127 -238h-56l105 197l-128 -67v65l180 99l95 178l-275 153v63l304 -161l42 78l-36 20v63l63 -33l87 163h56l-100 -186l415 -218v-10zM754 253l-70 39l-59 -110zM577 248l-521 -274v65l388 214 l-388 216v63l521 -274v-10'], + 0xE035: [602,98,486,64,422,'405 602l-70 -180c54 -37 87 -99 87 -170c0 -115 -85 -207 -209 -207h-24l-55 -143h-54l55 143h-71v66h97l42 108h-139v66h164l39 101c-16 5 -35 7 -56 7h-147v66h147c29 0 55 -5 79 -14l61 157h54zM282 285h73c-6 34 -21 60 -43 78zM355 219h-98l-42 -108 c77 2 126 37 140 108'], + 0xE037: [662,156,685,48,637,'637 120h-209l120 -276h-54l-120 276h-326v66h297l-59 134h-238v66h210l-121 276h54l120 -276h326v-66h-297l59 -134h238v-66'], + 0xE038: [690,189,732,50,682,'682 -189h-59l-180 275l-109 -275h-71l136 343l-89 136l-189 -479h-71l216 547l-216 332h59l180 -276l109 276h71l-136 -344l88 -135l190 479h71l-217 -547'], + 0xE039: [662,156,685,47,636,'405 548c0 -39 -26 -64 -64 -64s-63 30 -63 64c0 37 31 63 63 63s64 -25 64 -63zM636 120h-326l-154 -276h-57l154 276h-206v66h243l75 134h-318v66h355l154 276h57l-154 -276h177v-66h-214l-75 -134h289v-66'], + 0xE03A: [811,156,471,40,525,'525 811l-93 -221c26 -44 39 -104 39 -182c0 -147 -60 -416 -291 -419l-61 -145h-54l64 152c-63 21 -89 85 -89 155c0 141 111 284 257 284c5 0 10 0 16 -1l61 145c-20 35 -53 59 -105 59c-27 0 -49 -5 -74 -13l-10 20c28 17 64 23 98 23c46 0 84 -12 113 -36l75 179h54z M397 506l-36 -87c12 -7 24 -18 32 -32c4 22 7 46 7 70c0 16 -1 33 -3 49zM347 386l-154 -367c74 4 132 102 159 202c9 33 15 67 15 98c0 32 -8 54 -20 67zM145 34l155 371c-96 -6 -179 -152 -179 -288c0 -26 2 -63 24 -83'], + 0xE03B: [736,156,685,60,625,'416 673c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM625 -26h-294c-36 0 -69 7 -99 18l-78 -148h-57l90 171c-79 50 -127 140 -127 238c0 148 114 279 274 279h128l69 130h57l-69 -130h106v-66h-141l-96 -180h237v-66h-272l-88 -167 c22 -8 45 -13 70 -13h290v-66zM427 466h-93c-103 0 -189 -85 -206 -180h203zM296 220h-167c10 -56 44 -109 92 -143'], + 0xE03C: [662,156,685,60,625,'625 -26h-294c-29 0 -56 4 -81 12l-62 -142h-54l70 161c-88 48 -144 143 -144 248c0 148 114 279 274 279h100l57 130h54l-57 -130h137v-66h-166l-51 -117h217v-66h-246l-26 -60h272v-66h-301l-47 -108c19 -6 38 -9 58 -9h290v-66zM405 466h-71c-79 0 -148 -51 -183 -117 h203zM325 283h-197c-2 -10 -2 -20 -2 -30s1 -20 2 -30h171zM270 157h-119c18 -36 47 -67 81 -88'], + 0xE03D: [602,98,486,64,422,'422 45h-149c-28 0 -55 5 -78 14l-61 -157h-54l70 180c-54 37 -86 99 -86 170c0 116 86 207 211 207h21l55 143h54l-55 -143h72v-66h-98l-42 -108h140v-66h-165l-39 -100c17 -5 36 -8 58 -8h146v-66zM228 285l42 108c-77 -2 -126 -37 -139 -108h97zM203 219h-72 c6 -33 21 -59 42 -77'], + 0xE040: [415,-92,685,48,637,'183 415v-66c-61 0 -105 -28 -105 -88c0 -69 46 -103 110 -103c41 0 66 17 86 38c47 50 93 132 128 171c29 33 57 48 98 48c67 0 137 -62 137 -163c0 -73 -47 -160 -141 -160v66c60 0 111 26 111 88c0 69 -46 103 -110 103c-36 0 -59 -11 -81 -32 c-45 -41 -101 -150 -155 -194c-23 -19 -49 -31 -81 -31c-64 0 -132 54 -132 158c0 138 91 165 135 165'], + 0xE043: [818,311,685,60,625,'625 -220l-230 112v-203h-50v227l-285 138v10l285 138v127l-285 -138v66l285 138v128l-285 -138v66l285 138v229h50v-204l230 112v-66l-230 -112v-128l230 112v-66l-230 -112v-128l230 112v-65l-230 -114v-200l230 -114v-65zM345 -16v150l-152 -75'], + 0xE044: [818,311,685,60,625,'625 54l-285 -138v-227h-50v203l-230 -112v65l230 114v200l-230 114v65l230 -112v128l-230 112v66l230 -112v128l-230 112v66l230 -112v204h50v-229l285 -138v-66l-285 138v-128l285 -138v-66l-285 138v-127l285 -138v-10zM492 59l-152 75v-150'], + 0xE045: [818,311,685,60,625,'625 -220l-276 134l-51 -225h-53l57 248l-242 117v10l305 148l33 143l-338 -164v66l355 173l33 144l-388 -189v66l405 197l40 170h53l-33 -140l100 48v-66l-117 -57l-33 -144l150 73v-66l-167 -81l-33 -144l200 97v-65l-218 -108l-44 -190l262 -130v-65zM347 135 l-154 -76l123 -61'], + 0xE046: [818,311,685,60,625,'625 54l-322 -156l-48 -209h-53l41 180l-183 -89v65l201 100l47 205l-248 123v65l262 -128l27 115l-289 141v66l302 -148l27 116l-329 160v66l342 -167l60 259h53l-66 -282l176 -85v-66l-189 92l-27 -116l216 -104v-66l-229 111l-27 -115l256 -123v-10zM492 59l-137 67 l-35 -152'], + 0xE04B: [745,242,685,60,625,'625 -113h-279l-26 -129h-50l26 129h-236v66h249l53 287c-98 37 -204 57 -302 65v66c111 9 234 33 342 80l55 294h50l-51 -268c67 36 126 82 169 140v-77c-30 -52 -103 -102 -183 -141l-21 -113c88 -40 171 -94 204 -150v-77c-53 71 -130 124 -216 162l-51 -268h267v-66z M375 306l13 69c-36 -15 -73 -28 -105 -37c29 -8 60 -19 92 -32'], + 0xE04C: [845,341,685,60,625,'625 -212h-316l-24 -129h-50l24 129h-199v66h212l25 133h-237v66h249l54 287c-100 37 -208 57 -303 65v66c108 9 232 32 341 80l56 294h50l-50 -268c66 36 125 82 168 140v-77c-35 -60 -122 -111 -183 -141l-21 -113c67 -30 165 -85 204 -150v-77 c-53 71 -130 124 -216 162l-50 -268h266v-66h-279l-24 -133h303v-66zM375 406l13 69c-36 -15 -73 -28 -105 -37c29 -8 60 -19 92 -32'], + 0xE04D: [534,19,685,48,637,'604 268h33c-6 -84 -60 -203 -158 -203c-36 0 -74 18 -111 41v-125h-50v157c-42 28 -82 54 -114 54c-70 0 -107 -67 -123 -137h-33c5 99 65 203 163 203c35 0 71 -17 107 -39v159h-270v66h270v90h50v-90h269v-66h-269v-191c44 -29 85 -56 119 -56c69 0 102 67 117 137'], + 0xE04E: [845,341,685,60,625,'625 -212h-414l-24 -129h-50l24 129h-101v66h113l25 133h-138v66h151l49 261c-80 -38 -151 -89 -200 -155v77c34 58 122 114 214 155l16 86c-97 42 -194 101 -230 163v77c58 -78 145 -135 242 -174l57 302h50l-60 -319c90 -31 187 -48 276 -55v-66 c-101 -8 -211 -29 -311 -68l-53 -284h364v-66h-377l-25 -133h402v-66zM336 459l-8 -46c25 10 50 18 74 25c-21 6 -43 13 -66 21'], + 0xE04F: [745,242,685,60,625,'625 -113h-377l-25 -129h-50l25 129h-138v66h151l49 261c-80 -38 -151 -89 -200 -155v77c34 58 122 114 214 155l16 86c-97 42 -194 101 -230 163v77c58 -78 145 -135 242 -174l57 302h50l-60 -319c90 -31 187 -48 276 -55v-66c-101 -8 -211 -29 -311 -68l-53 -284h364 v-66zM336 359l-8 -46c25 10 50 18 74 25c-21 6 -43 13 -66 21'], + 0xE050: [662,156,685,65,620,'620 -26h-372l-56 -130h-54l56 130h-129v558h373l57 130h54l-57 -130h128v-66h-157l-186 -426h343v-66zM409 466h-278v-426h92'], + 0xE051: [662,156,685,65,620,'620 -26h-373l-56 -130h-54l56 130h-128v66h157l186 426h-343v66h372l57 130h54l-57 -130h129v-558zM554 40v426h-92l-186 -426h278'], + 0xE052: [561,55,685,48,637,'637 120h-156c-20 -41 -69 -85 -138 -85c-23 0 -44 5 -63 13l-45 -103h-54l56 129c-16 14 -27 30 -33 46h-156v66h210c0 -13 4 -27 11 -39l109 250c-10 5 -22 8 -34 8c-54 0 -86 -44 -86 -85h-210v66h156c20 41 69 85 138 85c23 0 44 -5 63 -13l45 103h54l-57 -130 c16 -14 28 -30 34 -45h156v-66h-210c-1 13 -4 27 -11 40l-109 -250c11 -6 23 -9 37 -9c52 0 83 44 83 85h210v-66'], + 0xE059: [730,224,685,48,637,'604 50h33c-6 -85 -60 -204 -158 -204c-60 0 -125 51 -182 88l-49 -158h-52l57 184c-18 8 -34 14 -49 14c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c20 0 41 -6 62 -15l83 265c-96 35 -201 54 -296 62v66c118 9 250 36 363 89l70 223h52l-59 -190 c54 33 102 74 139 123v-77c-28 -48 -93 -94 -166 -132l-38 -121c88 -40 171 -93 204 -149v-77c-54 72 -134 126 -223 165l-84 -271c62 -37 122 -89 169 -89c69 0 102 67 117 138zM375 353l23 73c-40 -17 -79 -31 -115 -41c29 -8 60 -19 92 -32'], + 0xE05A: [730,224,685,48,637,'604 50h33c-6 -85 -60 -204 -158 -204c-75 0 -157 79 -223 113l-57 -183h-52l61 198h-4c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c6 0 11 -1 17 -2l76 243c-98 -39 -186 -96 -244 -174v77c40 70 159 136 269 177l13 43c-113 40 -240 109 -282 182v77 c70 -94 181 -156 302 -195l82 262h52l-86 -276c72 -19 146 -31 215 -36v-66c-85 -7 -176 -23 -262 -50l-87 -278c77 -34 154 -112 211 -112c69 0 102 67 117 138zM402 385l-12 3l-3 -7c5 1 10 2 15 4'], + 0xE05B: [561,-30,685,48,637,'637 120h-342l-39 -90h-54l39 90h-193v66h222l95 217c-6 1 -13 2 -20 2c-54 0 -87 -44 -87 -85h-210v66h156c20 41 70 85 139 85c17 0 33 -3 48 -7l43 97h54l-52 -119c22 -16 38 -36 46 -56h155v-66h-209c0 19 -8 39 -21 55l-83 -189h313v-66'], + 0xE05C: [534,19,685,48,637,'604 268h33c-6 -84 -60 -203 -158 -203c-53 0 -109 39 -161 73l-67 -157h-54l79 184c-27 16 -51 27 -72 27c-70 0 -107 -67 -123 -137h-33c5 99 65 203 163 203c30 0 61 -13 92 -30l65 150h-320v66h349l39 90h54l-39 -90h186v-66h-215l-76 -176c52 -33 101 -71 141 -71 c69 0 102 67 117 137'], + 0xE06B: [602,98,486,64,422,'422 45h-120v-143h-52v144c-112 10 -186 98 -186 206s74 195 186 206v144h52v-143h120v-66h-120v-108h120v-66h-120v-108h120v-66zM250 285v107c-66 -7 -108 -43 -119 -107h119zM250 112v107h-119c12 -64 54 -99 119 -107'], + 0xE06C: [602,98,486,64,422,'236 602v-144c112 -11 186 -98 186 -206s-74 -196 -186 -206v-144h-52v143h-120v66h120v108h-120v66h120v108h-120v66h120v143h52zM236 285h119c-11 64 -53 100 -119 107v-107zM355 219h-119v-107c65 8 107 43 119 107'], + 0xE06D: [785,157,685,60,625,'625 -27h-291c-43 0 -83 10 -118 26l-78 -156h-62l93 185c-68 52 -109 135 -109 224c0 148 112 279 271 279h88l44 87h-393v66h426l50 101h62l-50 -101h67v-66h-100l-44 -87h144v-66h-177l-89 -180h266v-66h-299l-80 -159c27 -13 57 -21 88 -21h291v-66zM386 465h-51 c-103 0 -189 -85 -206 -180h168zM264 219h-136c9 -48 35 -94 72 -127'], + 0xE06E: [785,157,685,60,625,'525 618l-56 -112c95 -45 156 -145 156 -254c0 -148 -114 -279 -274 -279h-148l-65 -130h-62l65 130h-81v66h114l90 180h-204v66h237l88 177c-12 2 -23 3 -35 3h-290v66h294c22 0 42 -2 62 -7l47 94h-403v66h436l50 101h62l-50 -101h57v-66h-90zM359 285h197 c-12 66 -57 127 -118 159zM557 219h-231l-90 -180h115c103 0 189 85 206 180'], + 0xE06F: [785,129,685,60,625,'625 -27h-255v-102h-55v102c-154 5 -255 134 -255 279c0 144 101 271 255 278v88h-245v66h245v101h55v-101h255v-66h-255v-88h255v-66h-255v-179h255v-66h-255v-180h255v-66zM315 285v178c-98 -6 -172 -88 -187 -178h187zM315 40v179h-187c15 -91 90 -173 187 -179'], + 0xE070: [785,129,685,60,625,'370 618v-88c154 -7 255 -134 255 -278c0 -145 -101 -274 -255 -279v-102h-55v102h-255v66h255v180h-255v66h255v179h-255v66h255v88h-255v66h255v101h55v-101h245v-66h-245zM370 285h187c-15 90 -89 172 -187 178v-178zM557 219h-187v-179c97 6 172 88 187 179'], + 0xE075: [626,119,685,48,637,'604 169h33c-6 -85 -60 -204 -158 -204c-63 0 -130 54 -190 92l-72 -176h-53l82 200c-15 7 -29 12 -42 12c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c20 0 41 -6 61 -15l31 76h-255v66h282l42 100c-63 38 -122 90 -168 90c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c62 0 128 -53 187 -91l72 175h53l-82 -200c16 -7 32 -12 46 -12c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-21 0 -42 6 -64 15l-32 -77h254v-66h-281l-40 -98c63 -38 124 -91 171 -91c69 0 102 67 117 138'], + 0xE076: [626,119,685,48,637,'604 169h33c-6 -85 -60 -204 -158 -204c-37 0 -75 19 -112 41v-125h-50v158c-42 28 -81 54 -113 54c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c34 0 70 -17 106 -38v99h-269v66h269v136c-42 28 -81 54 -113 54c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c34 0 70 -17 106 -38v122h50v-155c44 -30 86 -57 120 -57c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-37 0 -75 18 -112 41v-103h270v-66h-270v-132c44 -30 86 -57 120 -57c69 0 102 67 117 138'], + 0xE077: [725,236,685,48,637,'637 -146h-269v-90h-50v90h-270v66h270v134h-270v66h270v164c-29 19 -78 54 -114 54c-74 0 -109 -76 -123 -138h-33c5 90 59 204 163 204c38 0 76 -19 107 -39v155c-29 19 -78 54 -114 54c-74 0 -109 -76 -123 -138h-33c5 90 59 204 163 204c38 0 76 -19 107 -39v124h50 v-156c30 -20 81 -57 119 -57c74 0 104 77 117 138h33c-6 -84 -59 -204 -158 -204c-39 0 -79 21 -111 41v-154c30 -20 81 -57 119 -57c74 0 104 77 117 138h33c-6 -84 -59 -204 -158 -204c-39 0 -79 21 -111 41v-131h269v-66h-269v-134h269v-66'], + 0xE07C: [758,252,685,48,637,'637 -38h-364l-70 -214h-58l71 214h-168v66h190l35 106h-225v66h247l35 106h-282v66h304l35 106h-339v66h360l71 214h55l-70 -214h173v-66h-195l-35 -106h230v-66h-252l-34 -106h286v-66h-308l-34 -106h342v-66'], + 0xE07D: [758,252,685,48,637,'637 -38h-271v-214h-50v214h-268v66h268v106h-268v66h268v106h-268v66h268v106h-268v66h268v214h50v-214h271v-66h-271v-106h271v-66h-271v-106h271v-66h-271v-106h271v-66'], + 0xE07E: [732,227,685,56,621,'621 -137l-187 91v-181h-52v207l-326 158v66l326 -159v138l-326 159v10l326 157v223h52v-198l187 91v-63l-187 -93v-244l187 -93v-65l-187 91v-138l187 -91v-66zM382 251v192l-193 -96'], + 0xE07F: [732,227,685,56,621,'621 138l-327 -159v-206h-52v181l-186 -91v66l186 90v138l-186 -90v65l186 92v245l-186 93v63l186 -90v197h52v-222l327 -158v-10l-327 -159v-138l327 159v-66zM488 347l-194 96v-193'], + 0xE080: [818,311,685,57,622,'622 -211h-228v-100h-50v100h-287v66h287v133h-287v66h287v240l-287 139v10l287 139v236h50v-211l228 111v-65l-228 -114v-203l228 -113v-63l-228 110v-216h228v-66h-228v-133h228v-66zM344 361v153l-154 -76'], + 0xE081: [818,311,685,57,622,'622 -211h-278v-100h-50v100h-237v66h237v133h-237v66h237v220l-237 -114v63l237 118v194l-237 118v65l237 -116v216h50v-240l278 -135v-10l-278 -135v-244h278v-66h-278v-133h278v-66zM489 438l-145 72v-144'], + 0xE082: [730,229,685,56,621,'621 -128l-331 160l-86 -261h-56l93 284l-185 90v10l258 125l53 164l-311 -151v66l336 163l65 208h57l-55 -175l162 79v-66l-187 -91l-53 -164l240 117v-65l-266 -133l-46 -142l312 -155v-63zM288 199l-99 -49l71 -36'], + 0xE083: [730,229,685,56,621,'621 145l-349 -168l-68 -206h-56l58 174l-150 -73v63l175 87l71 220l-246 123v65l265 -129l38 119l-303 148v66l322 -157l79 253h57l-88 -276l195 -95v-66l-213 104l-39 -120l252 -122v-10zM488 150l-138 68l-52 -163'], + 0xE084: [709,201,685,56,621,'621 -126l-212 103v-178h-50v201l-303 147v10l303 147v138l-303 -147v66l303 147v201h50v-176l212 103v-66l-212 -103v-138l212 103v-65l-212 -106v-219l212 -105v-63zM359 67v169l-170 -84'], + 0xE085: [709,201,685,56,621,'621 145l-297 -144v-202h-50v179l-218 -106v63l218 108v213l-218 109v65l218 -106v138l-218 106v66l218 -106v181h50v-206l297 -144v-66l-297 144v-138l297 -144v-10zM488 150l-164 81v-163'], + 0xE086: [818,311,685,56,621,'621 -220l-316 154l-57 -245h-53l62 268l-201 98v10l254 123l60 256h-314v66h329l31 134h-360v66h376l25 108h54l-25 -108h135v-66h-151l-31 -134h182v-66h-197l-53 -227l250 121v-63l-268 -133l-34 -147l302 -150v-65zM293 112l-104 -52l82 -41'], + 0xE087: [818,311,685,55,621,'621 444h-197l-60 -256l256 -123v-10l-324 -157l-48 -209h-53l41 180l-181 -89v65l199 99l48 208l-247 123v63l261 -127l54 233h-314v66h330l31 134h-361v66h376l25 108h54l-25 -108h135v-66h-151l-31 -134h182v-66zM487 60l-137 68l-36 -154'], + 0xE088: [818,311,685,56,621,'621 -220l-261 127v-218h-55v245l-249 121v10l249 120v259h-249v66h249v134h-249v66h249v108h55v-108h261v-66h-261v-134h261v-66h-261v-232l261 126v-63l-261 -130v-170l261 -130v-65zM305 2v115l-116 -57'], + 0xE089: [818,311,685,55,620,'620 55l-249 -121v-245h-55v218l-261 -127v65l261 130v170l-261 130v63l261 -126v232h-261v66h261v134h-261v66h261v108h55v-108h249v-66h-249v-134h249v-66h-249v-259l249 -120v-10zM487 60l-116 57v-115'], + 0xE092: [719,296,685,62,627,'627 -89v-77c-59 78 -146 135 -243 174v-304h-50v322c-90 30 -185 47 -272 54v66c87 7 182 23 272 53v127c-93 -31 -191 -48 -272 -49v66c87 7 182 23 272 53v323h50v-304c97 39 184 96 243 174v-77c-51 -71 -142 -127 -243 -167v-127c97 39 184 96 243 174v-77 c-38 -65 -142 -127 -243 -168v-68c101 -42 205 -103 243 -168zM334 97v31c-17 -6 -34 -11 -49 -15c15 -5 32 -10 49 -16'], + 0xE093: [719,296,685,61,626,'626 146v-66c-83 -7 -172 -22 -256 -49v-327h-50v310c-104 -39 -198 -97 -259 -180v77c39 68 152 132 259 174v56c-107 41 -220 106 -259 174v77c61 -83 155 -141 259 -180v127c-108 39 -206 97 -259 173v77c61 -83 155 -141 259 -180v310h50v-328 c84 -26 173 -42 256 -48v-66c-77 3 -168 18 -256 45v-128c84 -26 173 -42 256 -48zM370 123v-20c11 3 22 7 33 10c-11 3 -22 6 -33 10'], + 0xE094: [719,240,685,62,627,'627 -89v-77c-65 87 -165 147 -275 186l-84 -260h-56l89 276c-80 24 -162 38 -239 44v66c95 7 198 27 294 61l47 145c-112 -47 -239 -73 -341 -75v66c120 9 253 37 367 92l92 284h57l-80 -246c50 32 95 70 129 116v-77c-36 -50 -92 -93 -158 -128l-48 -151 c82 38 155 90 206 159v-77c-36 -62 -135 -122 -233 -163l-22 -69c105 -41 216 -105 255 -172zM322 101l8 26c-16 -6 -31 -10 -45 -14c12 -4 24 -8 37 -12'], + 0xE095: [719,240,685,61,626,'626 146v-66c-101 -8 -211 -29 -311 -68l-81 -252h-56l72 224c-76 -37 -142 -86 -189 -150v77c34 59 123 114 215 155l26 82c-101 41 -204 103 -241 167v77c62 -84 157 -142 262 -182l37 115c-123 39 -239 101 -299 187v77c73 -98 191 -163 319 -201l107 331h57 l-112 -345c65 -16 131 -26 194 -31v-66c-65 3 -140 14 -214 33l-38 -117c83 -26 171 -41 252 -47zM353 128l-12 -35c21 7 42 14 62 20c-16 4 -33 9 -50 15'], + 0xE096: [818,311,685,55,620,'620 -211h-246v-100h-50v100h-259v66h259v133h-259v66h259v106c-158 1 -269 131 -269 279c0 146 111 276 269 279v100h50v-100h246v-66h-246v-426h246v-66h-246v-106h246v-66h-246v-133h246v-66zM324 226v426c-112 -3 -203 -108 -203 -213s91 -210 203 -213'], + 0xE097: [818,311,685,65,630,'361 818v-100c158 -1 269 -132 269 -279s-112 -277 -269 -279v-106h259v-66h-259v-133h259v-66h-259v-100h-50v100h-246v66h246v133h-246v66h246v106h-246v66h246v426h-246v66h246v100h50zM361 652v-426c111 3 203 107 203 213c0 105 -92 209 -203 213'], + 0xE098: [690,189,685,23,662,'662 382l-107 -55v-516h-66v483l-113 -58v-425h-66v391l-113 -57v-334h-66v300l-84 -43l-24 53l108 55v514h66v-480l113 57v423h66v-389l113 58v331h66v-298l83 43'], + 0xE0BB: [622,101,685,48,637,'604 187h33c-6 -85 -60 -204 -158 -204c-36 0 -74 18 -110 40v-124h-52v158c-42 28 -81 54 -113 54c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c34 0 70 -17 106 -38v127h-269v66h269v134h-269v66h269v90h52v-90h268v-66h-268v-134h268v-66h-268v-161 c43 -29 84 -56 118 -56c69 0 102 67 117 138'], + 0xE0EC: [862,-120,685,48,637,'329 567l-30 199c-1 9 -2 24 -2 32c0 29 12 64 50 64c35 0 50 -31 50 -67v-14c0 -5 0 -10 -1 -15l-34 -199h-33zM389 495c0 -24 -18 -43 -42 -43c-27 0 -43 19 -43 43s19 42 43 42c21 0 42 -19 42 -42zM637 320h-589v66h589v-66zM637 120h-589v66h589v-66'], + 0xE109: [781,279,327,10,286,'286 -279h-137v452h-139v156h139v452h137v-50h-87v-960h87v-50'], + 0xE10A: [781,279,250,41,178,'178 -279h-137v50h88v960h-88v50h137v-1060'], + 0xE14C: [660,158,857,48,777,'777 -25h-66v556h66v-556zM605 -25l-263 131l-82 -264h-56l90 288l-246 123l337 168l75 239h56l-65 -206l154 77v-556zM539 80v346l-114 -57l-63 -201zM358 336l-165 -82v-2l120 -60'], + 0xE14D: [660,158,857,80,809,'809 253l-376 -188l-70 -223h-56l59 190l-114 -57v556l234 -117l77 246h56l-85 -270zM664 252v2l-149 74l-56 -178zM467 352l-149 74v-346l75 37zM146 -25h-66v556h66v-556'], + 0xE14E: [661,157,685,44,609,'609 -26l-306 148l-121 -279h-54l131 300l-215 105v10l336 163l105 240h54l-90 -207l160 78v-65l-197 -98l-35 -80l232 114v-68l-164 -82l164 -80v-68l-259 124l-22 -51l281 -139v-65zM342 335l-165 -82l106 -53'], + 0xE14F: [661,157,685,76,641,'641 248l-339 -165l-105 -240h-54l90 207l-157 -76v65l194 96l35 80l-229 -112v68l164 82l-164 80v68l256 -124l23 52l-279 138v65l303 -147l121 276h54l-130 -298l217 -105v-10zM508 253l-109 54l-60 -138'], + 0xE28E: [622,101,685,48,637,'617 187h20c-5 -100 -65 -214 -163 -214c-55 0 -117 48 -173 90l-70 -164h-59l85 195c-26 16 -49 27 -69 27c-69 0 -103 -77 -120 -148h-20c6 85 60 214 158 214c26 0 53 -11 80 -26l46 105h-284v66h312l59 134h-371v66h399l39 90h54l-38 -90h135v-66h-163l-58 -134h221 v-66h-249l-57 -134c60 -42 118 -93 160 -93c70 0 110 77 126 148'], + 0xE292: [662,0,1388,38,1350,'1350 194l-41 -194h-577l307 329l-288 333h542v-163h-20c0 9 -4 21 -6 30c-17 61 -58 77 -95 81c-17 2 -30 2 -50 2h-212l222 -255l-248 -267h308c79 0 114 27 135 104h23zM656 194l-41 -194h-577l307 329l-288 333h542v-163h-20c0 9 -4 21 -6 30c-17 61 -58 77 -95 81 c-17 2 -30 2 -50 2h-212l222 -255l-248 -267h308c79 0 114 27 135 104h23'], + 0xE293: [763,260,1797,58,1739,'1739 39l-53 -299h-745l392 510l-367 512h701v-251h-28c0 13 -5 31 -8 46c-21 94 -72 138 -119 144c-21 3 -51 4 -77 4h-264l290 -400l-339 -434h417c100 0 144 50 170 168h30zM856 40l-53 -299h-745l392 510l-367 512h701v-251h-28c0 13 -5 31 -8 46 c-21 94 -72 138 -119 144c-21 3 -51 4 -77 4h-264l290 -400l-339 -434h417c100 0 144 50 170 168h30'], + 0xE3C2: [662,156,685,48,637,'48 28v66h337l-55 126h-282v66h253l-55 126h-198v66h170l-81 184h54l80 -184h366v-66h-337l55 -126h282v-66h-253l55 -126h198v-66h-169l80 -184h-54l-80 184h-366'], + 0xE3C3: [627,135,685,48,637,'637 -45h-269v-90h-50v90h-270v66h270v165c-42 28 -82 54 -114 54c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c35 0 71 -17 107 -39v155c-42 28 -82 54 -114 54c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c35 0 71 -17 107 -39v124h50v-156 c44 -29 85 -57 119 -57c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-36 0 -74 18 -111 41v-154c44 -29 85 -57 119 -57c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-36 0 -74 18 -111 41v-132h269v-66'], + 0xE3C4: [627,135,685,48,637,'637 -45h-391l-39 -90h-59l39 90h-139v66h168l78 181c-33 21 -64 38 -90 38c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c36 0 74 -18 110 -41l52 121c-62 37 -123 90 -169 90c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c63 0 130 -55 190 -93l77 178 h59l-88 -204c13 -6 26 -9 38 -9c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-19 0 -38 5 -57 13l-55 -126c45 -29 86 -57 120 -57c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-46 0 -94 29 -139 59l-65 -150h362v-66'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Operators/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/Bold/Main.js new file mode 100644 index 0000000..1eba97a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/Bold/Main.js @@ -0,0 +1,149 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_SansSerif-bold'] = { + directory: 'SansSerif/Bold', + family: 'STIXMathJax_SansSerif', + weight: 'bold', + id: 'STIXWEBSANSSERIFB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x1D5D4: [690,0,690,25,665,'665 0h-130l-66 162h-248l-66 -162h-130l306 690h28zM428 264l-83 204l-83 -204h166'], + 0x1D5D5: [676,0,636,80,594,'463 373l1 -4c107 -51 130 -112 130 -181c0 -108 -110 -188 -254 -188h-260v676h237c157 0 242 -59 242 -168c0 -53 -34 -106 -96 -135zM208 413h72c112 0 141 42 141 89c0 49 -27 72 -100 72h-113v-161zM208 102h103c115 0 141 49 141 109c0 75 -87 100 -169 100h-75 v-209'], + 0x1D5D6: [691,19,723,49,688,'619 193l69 -68c-74 -93 -165 -144 -285 -144c-224 0 -354 154 -354 359c0 199 140 351 353 351c94 0 181 -16 247 -94v-149h-11c-50 98 -126 141 -218 141c-130 0 -233 -90 -233 -247c0 -128 69 -259 218 -259c86 0 144 34 214 110'], + 0x1D5D7: [676,0,709,80,674,'80 676h179c309 0 415 -136 415 -341c0 -154 -99 -335 -365 -335h-229v676zM210 102h67c158 0 259 63 259 234c0 170 -101 238 -248 238h-78v-472'], + 0x1D5D8: [676,0,635,80,597,'597 102l-27 -102h-490v676h480v-102h-350v-167h241v-103h-241v-202h387'], + 0x1D5D9: [676,0,582,80,570,'570 574h-360v-169h213v-102h-213v-303h-130v676h477'], + 0x1D5DA: [691,19,746,37,671,'671 357v-279c-58 -44 -123 -97 -277 -97c-230 0 -357 153 -357 359c0 197 139 351 354 351c96 0 178 -18 246 -94v-149h-11c-51 99 -126 141 -223 141c-125 0 -228 -90 -228 -247c0 -125 69 -259 223 -259c58 0 102 14 155 43v129h-107l-31 102h256'], + 0x1D5DB: [676,0,715,80,635,'635 0h-130v297h-295v-297h-130v676h130v-277h295v277h130v-676'], + 0x1D5DC: [676,0,440,65,375,'375 102l-9 -102h-287l-14 102h90v472h-90l14 102h287l9 -102h-90v-472h90'], + 0x1D5DD: [676,96,481,15,406,'406 676v-545c0 -93 -33 -167 -102 -203c-36 -19 -74 -24 -110 -24c-64 0 -118 27 -179 98l49 98h18c37 -55 68 -94 122 -94c66 0 72 59 72 112v558h130'], + 0x1D5DE: [676,0,712,80,707,'707 0h-170l-296 306l-33 -29v-277h-128v676h128v-263l295 263h145v-14l-318 -278'], + 0x1D5DF: [676,0,603,80,587,'587 102l-19 -102h-488v676h130v-574h377'], + 0x1D5E0: [676,0,913,80,833,'833 0h-128v467l-235 -467h-27l-235 467v-467h-128v676h161l214 -440h3l214 440h161v-676'], + 0x1D5E1: [676,18,724,80,644,'644 -18l-105 20l-331 500v-502h-128v676h157l279 -424v424h128v-694'], + 0x1D5E2: [692,18,778,35,743,'743 337c0 -211 -148 -355 -353 -355c-204 0 -355 144 -355 355c0 210 150 355 354 355s354 -145 354 -355zM605 337c0 151 -77 253 -216 253s-216 -102 -216 -253c0 -152 77 -253 217 -253c139 0 215 101 215 253'], + 0x1D5E3: [676,0,581,80,569,'80 676h209c187 0 280 -71 280 -195c0 -121 -99 -203 -256 -203h-103v-278h-130v676zM210 380h71c113 0 156 35 156 102c0 59 -45 92 -162 92h-65v-194'], + 0x1D5E4: [691,176,779,35,754,'754 -160v-16c-177 0 -337 0 -443 163c-163 35 -276 163 -276 347c0 213 150 357 354 357c205 0 354 -144 354 -357c0 -183 -112 -310 -274 -346c51 -58 124 -61 192 -62zM605 336c0 151 -77 253 -216 253s-216 -102 -216 -253c0 -152 77 -253 217 -253 c139 0 215 101 215 253'], + 0x1D5E5: [676,0,670,80,657,'657 0h-159l-247 291h-41v-291h-130v676h216c184 0 274 -69 274 -188c0 -92 -63 -163 -167 -188zM210 393h71c115 0 157 31 157 96c0 59 -44 85 -163 85h-65v-181'], + 0x1D5E6: [691,19,554,35,511,'483 466h-14c-32 80 -118 123 -186 123c-52 0 -105 -24 -105 -82c0 -56 64 -85 124 -108c161 -62 209 -113 209 -216c0 -52 -30 -117 -67 -150c-42 -37 -100 -52 -178 -52c-92 0 -167 34 -215 81l-16 162h14c48 -102 159 -141 219 -141c94 0 116 55 116 91 c0 54 -30 73 -119 107c-156 60 -212 120 -212 223c0 112 96 187 220 187c96 0 174 -32 210 -71v-154'], + 0x1D5E7: [676,0,641,14,627,'627 574h-240v-574h-130v574h-243l14 102h589'], + 0x1D5E8: [676,19,699,75,624,'624 676v-430c0 -174 -88 -265 -274 -265c-188 0 -275 90 -275 265v430h128v-419c0 -59 2 -83 14 -104c24 -45 65 -70 133 -70c67 0 106 26 132 70c14 23 14 57 14 116v407h128'], + 0x1D5E9: [676,18,690,25,665,'665 676l-306 -694h-28l-306 694h130l190 -465l190 465h130'], + 0x1D5EA: [676,15,997,30,967,'967 676l-255 -691l-28 1l-184 408h-3l-184 -409h-28l-255 691h131l146 -439l195 439l188 -439l146 439h131'], + 0x1D5EB: [676,0,740,40,700,'700 0h-154l-179 239l-173 -239h-154l249 343l-248 333h154l170 -228l166 228h154l-242 -333'], + 0x1D5EC: [676,0,694,20,674,'674 676l-262 -394v-282h-130v282l-262 394h145l182 -283l182 283h145'], + 0x1D5ED: [676,0,653,25,623,'623 102l-15 -102h-583v16l372 558h-334l13 102h525v-16l-374 -558h396'], + 0x1D5EE: [473,14,489,23,428,'428 0h-125l-6 44c-44 -46 -87 -58 -151 -58c-63 0 -123 47 -123 136c0 65 22 94 54 122c47 41 113 58 222 64v16c0 33 -24 54 -74 54c-58 0 -91 -19 -108 -70h-12l-76 44c29 85 111 121 208 121c98 0 182 -46 182 -134v-263c0 -24 4 -50 9 -76zM299 152v61 c-65 0 -151 -12 -151 -82c0 -41 35 -50 57 -50c39 0 74 29 94 71'], + 0x1D5EF: [676,13,512,55,487,'177 426v-1c35 34 76 48 125 48c30 0 61 -7 88 -23c61 -36 97 -112 97 -205c0 -83 -25 -164 -74 -211c-39 -37 -87 -47 -140 -47c-40 0 -89 19 -110 43h-3l-92 -43h-13v689h120v-250h2zM175 301v-158c24 -36 55 -61 94 -61c61 0 93 65 93 149c0 90 -42 147 -91 147 c-38 0 -73 -20 -96 -77'], + 0x1D5F0: [473,14,462,25,442,'373 145l69 -67c-61 -73 -102 -92 -197 -92c-127 0 -220 99 -220 235c0 152 105 252 231 252c81 0 159 -35 177 -105l-77 -57h-17c-16 58 -53 67 -85 67c-54 0 -104 -54 -104 -152c0 -73 44 -138 115 -138c43 0 79 13 108 57'], + 0x1D5F1: [676,14,518,25,463,'463 8l-115 -22l-7 3v45h-2c-38 -40 -82 -48 -122 -48c-119 0 -192 93 -192 241s81 246 207 246c38 0 68 -10 105 -39v242h120v-550c0 -32 2 -82 6 -118zM337 169v140c-28 47 -49 69 -92 69c-63 0 -95 -72 -95 -148c0 -80 35 -149 94 -149c51 0 73 37 93 88'], + 0x1D5F2: [473,13,452,25,433,'363 143l70 -66c-63 -73 -102 -90 -187 -90c-131 0 -221 92 -221 235c0 97 26 150 68 194s91 57 147 57c118 0 182 -101 182 -240v-28h-272c0 -83 52 -117 110 -117c31 0 74 11 103 55zM159 300h143c0 58 -30 78 -69 78c-32 0 -72 -31 -74 -78'], + 0x1D5F3: [691,0,340,14,374,'374 638l-22 -90l-17 -1c-25 42 -55 49 -84 49c-42 0 -59 -33 -59 -84v-51h90v-95h-90v-366h-120v366h-58v95h58v42c0 128 78 188 169 188c67 0 93 -13 133 -53'], + 0x1D5F4: [473,206,504,28,490,'219 76h84c104 0 187 -29 187 -128c0 -62 -44 -106 -104 -129c-54 -21 -103 -25 -184 -25c-98 0 -174 37 -174 115c0 32 21 65 61 85c-33 15 -42 43 -42 67c0 37 16 65 78 104v2c-53 34 -81 70 -81 134c0 98 87 172 209 172c22 0 53 -4 80 -14c22 -8 23 -8 82 -8h72v-95 h-56c11 -7 16 -39 16 -56c0 -110 -105 -160 -202 -160h-25c-31 -3 -48 -16 -48 -33c0 -20 15 -31 47 -31zM332 304c0 41 -25 74 -87 74c-59 0 -87 -37 -87 -72c0 -49 37 -71 87 -71c55 0 87 28 87 69zM314 -19h-105c-44 -5 -56 -28 -56 -44c0 -35 41 -48 89 -48 c34 0 66 3 88 12c21 8 35 22 35 46c0 17 -14 34 -51 34'], + 0x1D5F5: [676,0,510,55,455,'455 0h-120v309c0 53 -31 69 -66 69c-25 0 -71 -22 -94 -85v-293h-120v676h120v-261h2c39 39 76 58 129 58c102 0 149 -55 149 -151v-322'], + 0x1D5F6: [688,0,245,50,195,'195 543h-145v145h145v-145zM184 0h-125v461h125v-461'], + 0x1D5F7: [688,203,324,-57,269,'269 543h-145v145h145v-145zM258 461v-478c0 -78 -33 -133 -81 -162c-29 -17 -62 -24 -98 -24c-50 0 -90 16 -136 67l43 85h18c15 -25 36 -50 60 -50c40 0 69 21 69 95v467h125'], + 0x1D5F8: [676,0,519,55,506,'506 0h-142l-169 205l-20 -16v-189h-120v676h120v-365l176 150h134v-18l-209 -171'], + 0x1D5F9: [676,0,235,55,180,'180 0h-125v625l108 51h17v-676'], + 0x1D5FA: [473,0,776,55,721,'721 0h-118v309c0 53 -31 69 -66 69c-29 0 -67 -22 -90 -85v-293h-118v309c0 53 -31 69 -66 69c-25 0 -67 -22 -90 -85v-293h-118v461h114v-50h2c40 40 76 62 129 62c64 0 106 -22 128 -62h1c40 40 92 62 145 62c102 0 147 -55 147 -151v-322'], + 0x1D5FB: [473,0,510,55,455,'455 0h-120v309c0 53 -31 69 -66 69c-25 0 -71 -22 -94 -85v-293h-120v461h116v-50h2c40 40 80 62 133 62c102 0 149 -55 149 -151v-322'], + 0x1D5FC: [473,14,501,25,476,'476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM351 232c0 90 -35 146 -104 146c-68 0 -97 -69 -97 -146c0 -84 33 -151 100 -151c78 0 101 89 101 151'], + 0x1D5FD: [473,205,512,55,487,'171 415h2c35 39 84 58 133 58c30 0 61 -8 88 -24c61 -36 93 -108 93 -201c0 -83 -25 -163 -74 -210c-39 -37 -87 -52 -140 -52c-38 0 -68 14 -98 41v-195l-103 -37h-17v666h116v-46zM175 290v-140c28 -47 49 -69 92 -69c63 0 95 73 95 149c0 99 -30 148 -89 148 c-51 0 -78 -37 -98 -88'], + 0x1D5FE: [473,205,512,25,457,'457 -168l-103 -37h-17v231h-2v1c-35 -34 -70 -41 -117 -41c-118 0 -193 101 -193 228c0 84 27 152 75 199c36 35 82 60 144 60c40 0 82 -17 105 -39h3l88 39h17v-641zM337 158v158c-29 42 -62 62 -92 62c-52 0 -95 -54 -95 -150c0 -91 34 -147 93 -147c41 0 72 25 94 77 '], + 0x1D5FF: [473,0,411,55,406,'406 356h-16c-13 13 -31 22 -59 22c-62 0 -133 -78 -156 -189v-189h-120v461h120v-88h2c46 76 110 100 153 100c31 0 59 -7 76 -19v-98'], + 0x1D600: [473,13,385,25,357,'340 306h-15c-37 61 -89 72 -125 72c-32 0 -49 -22 -49 -36c0 -30 31 -47 70 -64c116 -49 136 -76 136 -153c0 -44 -25 -88 -69 -113c-32 -18 -68 -25 -110 -25c-70 0 -104 20 -153 63v120h15c28 -63 97 -88 141 -88c28 0 56 17 56 44c0 21 -11 33 -66 57 c-115 50 -135 85 -135 157c0 73 59 133 160 133c70 0 107 -23 144 -61v-106'], + 0x1D601: [630,12,386,7,371,'371 115l-11 -94c-28 -25 -67 -33 -116 -33c-69 0 -138 43 -138 138v240h-99v17l63 78h36v61l100 108h20v-169h107v-95h-107v-217c0 -53 32 -66 58 -66c17 0 45 5 69 32h18'], + 0x1D602: [461,15,518,55,463,'463 10l-124 -25v70h-2c-36 -40 -90 -69 -143 -69c-97 0 -139 56 -139 152v323h120v-310c0 -53 31 -70 66 -70c25 0 71 29 94 92v288h120v-351c0 -34 2 -73 8 -100'], + 0x1D603: [461,14,462,15,447,'447 461l-203 -475h-26l-203 475h131l84 -252h2l84 252h131'], + 0x1D604: [461,14,701,17,684,'684 461l-195 -475h-26l-109 252l-116 -252h-26l-195 475h131l81 -256h2l62 173l-35 83h131l86 -244h2l76 244h131'], + 0x1D605: [461,0,506,20,486,'486 0h-138l-100 143l-90 -143h-138l159 243l-148 218h137l83 -121l79 121h138l-147 -223'], + 0x1D606: [461,205,472,18,455,'455 461l-180 -496c-43 -118 -92 -170 -184 -170c-25 0 -54 7 -73 22v98h16c23 -21 43 -25 59 -25c43 0 72 29 94 103l-169 468h131l93 -275h2l80 275h131'], + 0x1D607: [461,0,441,21,417,'417 95l-9 -95h-387v25l233 341h-207l8 95h361v-26l-233 -340h234'], + 0x1D756: [690,0,690,25,665,'665 0h-130l-66 162h-248l-66 -162h-130l306 690h28zM428 264l-83 204l-83 -204h166'], + 0x1D757: [676,0,636,80,594,'463 373l1 -4c107 -51 130 -112 130 -181c0 -108 -110 -188 -254 -188h-260v676h237c157 0 242 -59 242 -168c0 -53 -34 -106 -96 -135zM208 413h72c112 0 141 42 141 89c0 49 -27 72 -100 72h-113v-161zM208 102h103c115 0 141 49 141 109c0 75 -87 100 -169 100h-75 v-209'], + 0x1D758: [676,0,591,80,569,'569 574h-359v-574h-130v676h477'], + 0x1D759: [690,0,720,40,680,'680 0h-640l306 690h28zM508 102l-148 366l-148 -366h296'], + 0x1D75A: [676,0,635,80,597,'597 102l-27 -102h-490v676h480v-102h-350v-167h241v-103h-241v-202h387'], + 0x1D75B: [676,0,653,25,623,'623 102l-15 -102h-583v16l372 558h-334l13 102h525v-16l-374 -558h396'], + 0x1D75C: [676,0,715,80,635,'635 0h-130v297h-295v-297h-130v676h130v-277h295v277h130v-676'], + 0x1D75D: [691,19,778,35,743,'531 296h-282l12 102h256zM743 336c0 -211 -148 -355 -353 -355c-204 0 -355 144 -355 355c0 210 150 355 354 355s354 -145 354 -355zM605 336c0 151 -77 253 -216 253s-216 -102 -216 -253c0 -152 77 -253 217 -253c139 0 215 101 215 253'], + 0x1D75E: [676,0,440,65,375,'375 102l-9 -102h-287l-14 102h90v472h-90l14 102h287l9 -102h-90v-472h90'], + 0x1D75F: [676,0,712,80,707,'707 0h-170l-296 306l-33 -29v-277h-128v676h128v-263l295 263h145v-14l-318 -278'], + 0x1D760: [690,0,706,40,666,'666 0h-130l-183 468l-183 -468h-130l299 690h28'], + 0x1D761: [676,0,913,80,833,'833 0h-128v467l-235 -467h-27l-235 467v-467h-128v676h161l214 -440h3l214 440h161v-676'], + 0x1D762: [676,18,724,80,644,'644 -18l-105 20l-331 500v-502h-128v676h157l279 -424v424h128v-694'], + 0x1D763: [676,0,640,35,605,'582 584h-524l13 92h498zM503 299h-366v102h366v-102zM605 102l-12 -102h-546l-12 102h570'], + 0x1D764: [692,18,778,35,743,'743 337c0 -211 -148 -355 -353 -355c-204 0 -355 144 -355 355c0 210 150 355 354 355s354 -145 354 -355zM605 337c0 151 -77 253 -216 253s-216 -102 -216 -253c0 -152 77 -253 217 -253c139 0 215 101 215 253'], + 0x1D765: [676,0,715,80,635,'635 0h-130v574h-295v-574h-130v676h555v-676'], + 0x1D766: [676,0,581,80,569,'80 676h209c187 0 280 -71 280 -195c0 -121 -99 -203 -256 -203h-103v-278h-130v676zM210 380h71c113 0 156 35 156 102c0 59 -45 92 -162 92h-65v-194'], + 0x1D767: [691,19,778,35,743,'743 336c0 -211 -148 -355 -353 -355c-204 0 -355 144 -355 355c0 210 150 355 354 355s354 -145 354 -355zM177 398h423c-18 116 -92 191 -211 191s-193 -75 -212 -191zM603 296h-428c12 -130 87 -213 215 -213c126 0 200 83 213 213'], + 0x1D768: [676,0,674,28,632,'632 102l-15 -102h-586v16l281 330l-284 314v16h562v-102h-330l205 -226l-210 -246h377'], + 0x1D769: [676,0,641,14,627,'627 574h-240v-574h-130v574h-243l14 102h589'], + 0x1D76A: [691,0,748,20,728,'728 675l-33 -98c-24 8 -43 12 -52 12c-43 0 -134 -13 -204 -307v-282h-130v282c-70 294 -161 307 -204 307c-9 0 -27 -4 -53 -11l-32 97c34 11 58 16 88 16c54 0 216 -37 265 -258c55 218 211 258 267 258c30 0 54 -5 88 -16'], + 0x1D76B: [676,0,800,25,775,'465 676v-102c153 -5 310 -82 310 -235c0 -154 -157 -235 -310 -240v-99h-130v99c-155 5 -310 86 -310 240c0 153 155 230 310 235v102h130zM464 472v-271c129 8 173 75 173 138c0 62 -44 126 -173 133zM336 201v271c-130 -7 -173 -71 -173 -133c0 -63 43 -130 173 -138'], + 0x1D76C: [676,0,740,40,700,'700 0h-154l-179 239l-173 -239h-154l249 343l-248 333h154l170 -228l166 228h154l-242 -333'], + 0x1D76D: [691,0,806,15,791,'791 691l-31 -102c-50 -9 -50 -79 -50 -121c0 -133 -124 -202 -242 -209v-259h-130v259c-118 7 -242 80 -242 213c0 42 0 108 -50 117l-31 102h39c92 0 172 -51 172 -212c0 -63 42 -109 112 -117v314h130v-314c70 8 112 54 112 117c0 161 81 212 172 212h39'], + 0x1D76E: [691,0,752,32,720,'720 102l-15 -102h-295l11 207c82 20 163 77 163 190c0 117 -88 192 -208 192c-124 0 -208 -95 -208 -192c0 -111 73 -167 163 -191l11 -206h-295l-15 102h202l-4 29c-84 22 -190 112 -190 254c0 147 114 306 336 306c215 0 336 -153 336 -306 c0 -143 -108 -232 -190 -254l-4 -29h202'], + 0x1D76F: [664,30,735,45,685,'685 664l-306 -694h-28l-306 694h640zM512 560h-294l147 -361'], + 0x1D770: [473,14,662,40,629,'629 461l-116 -245c6 -19 12 -37 20 -55c15 -36 41 -80 92 -80v-16l-35 -79c-27 0 -59 0 -87 13c-26 12 -49 36 -65 78h-2c-16 -23 -33 -45 -64 -64c-27 -17 -64 -27 -115 -27c-126 0 -217 104 -217 241c0 118 86 246 235 246c90 0 142 -39 181 -98l44 86h129zM383 209 c-11 105 -57 169 -114 169c-66 0 -104 -69 -104 -146c0 -84 38 -151 105 -151c62 0 97 73 113 128'], + 0x1D771: [692,205,512,39,487,'372 416l2 -1c69 -17 113 -94 113 -167c0 -80 -26 -161 -75 -210c-38 -37 -93 -52 -140 -52c-38 0 -67 11 -97 38v-135c0 -40 -5 -71 -17 -94h-119c10 23 16 56 16 88v527c0 139 43 282 218 282c83 0 169 -57 169 -154c0 -59 -26 -99 -70 -122zM175 442v-292 c28 -47 49 -69 92 -69c41 0 95 55 95 150c0 122 -58 128 -148 128v16l42 79c52 0 71 29 71 76c0 31 -15 67 -61 67c-71 0 -91 -77 -91 -155'], + 0x1D772: [473,205,502,10,477,'477 461l-174 -411v-245l-13 -10l-107 24c4 62 8 154 8 227c0 68 -11 135 -33 198c-18 51 -69 134 -148 134v16l50 79c107 0 195 -155 202 -265h2l83 253h130'], + 0x1D773: [692,14,502,25,477,'380 539h-17c-27 26 -61 58 -107 58c-24 0 -55 -14 -55 -46c0 -25 32 -51 91 -80c109 -52 185 -120 185 -258c0 -103 -70 -227 -226 -227s-226 123 -226 227c0 98 46 177 137 215c-49 27 -81 66 -81 123c0 98 86 141 179 141c67 0 128 -12 174 -74zM352 208 c0 78 -26 121 -84 146c-75 -4 -118 -64 -118 -146c0 -65 41 -127 100 -127c70 0 102 63 102 127'], + 0x1D774: [473,14,451,25,434,'389 140l45 -61c-62 -87 -126 -93 -212 -93c-78 0 -130 21 -162 53c-24 25 -35 58 -35 91c0 41 22 89 80 109v3c-35 19 -60 52 -60 90c0 93 97 141 197 141c86 0 146 -19 178 -90l-53 -61h-16c-30 46 -50 56 -103 56c-48 0 -83 -15 -83 -44c0 -28 21 -41 72 -41h57 l40 -82l-11 -13h-96c-53 0 -77 -28 -77 -55c0 -31 33 -62 89 -62c55 0 109 18 134 59h16'], + 0x1D775: [692,205,500,28,488,'281 81h56c65 0 151 -32 151 -127c0 -96 -67 -159 -168 -159c-25 0 -57 4 -76 21v98h16c24 -22 45 -24 61 -24c42 0 72 10 72 50c0 38 -42 46 -79 46h-90c-32 0 -92 9 -126 38c-39 34 -70 96 -70 190c0 106 43 212 123 287v3c-41 26 -64 60 -64 107c0 23 7 59 24 81h16 l76 -17c-8 -17 -14 -36 -14 -54c0 -22 9 -42 33 -53c65 38 90 51 162 66h17l17 -95c-64 -7 -131 -41 -182 -92c-47 -47 -83 -128 -83 -219c0 -34 6 -67 24 -96c24 -37 55 -51 104 -51'], + 0x1D776: [473,205,510,35,474,'474 -205h-127c-12 24 -12 52 -12 95v419c0 53 -30 69 -65 69c-26 0 -72 -22 -95 -85v-293h-120v349c0 36 -7 64 -20 89l101 35h9c8 -9 20 -30 26 -62h2c39 40 78 62 133 62c100 0 149 -55 149 -152v-437c0 -33 6 -65 19 -89'], + 0x1D777: [692,14,500,23,477,'477 341c0 -169 -80 -355 -227 -355s-227 186 -227 355s80 351 227 351s227 -182 227 -351zM148 388h204c0 105 -42 207 -102 207c-67 0 -102 -102 -102 -207zM352 293h-204c0 -117 42 -212 102 -212c61 0 102 97 102 212'], + 0x1D778: [461,14,319,53,296,'296 108l-14 -100c-25 -14 -57 -22 -90 -22c-41 0 -76 8 -101 32c-23 22 -38 58 -38 98v345h120v-298c0 -68 25 -82 53 -82c18 0 36 8 54 27h16'], + 0x1D779: [473,0,527,55,512,'512 0h-155l-163 187l-19 -20v-167h-120v461h120v-163h2c62 71 158 162 286 175l38 -79v-16c-116 -10 -161 -53 -224 -112'], + 0x1D77A: [692,14,554,18,520,'520 65l-46 -79c-66 0 -131 24 -171 175l-36 137l-118 -298h-131l206 459c-30 121 -90 138 -157 138v16l50 79c84 0 154 -47 204 -214l76 -256c30 -102 57 -141 123 -141v-16'], + 0x1D77B: [461,205,550,39,517,'517 65l-35 -79c-52 0 -116 10 -136 70h-2c-22 -47 -64 -70 -100 -70c-31 0 -51 2 -71 24h-2v-121c0 -40 -5 -71 -17 -94h-115c9 23 16 56 16 88v578h120v-312c0 -52 31 -68 66 -68c36 0 75 26 94 83v297h120v-306c0 -41 7 -74 62 -74v-16'], + 0x1D77C: [473,14,492,55,472,'339 453l116 20c11 -20 17 -58 17 -109c0 -176 -185 -378 -391 -378h-26v475h120v-331h2c100 32 170 133 170 237c0 26 -2 52 -13 76'], + 0x1D77D: [692,205,501,28,489,'277 81h61c65 0 151 -32 151 -127c0 -96 -67 -159 -168 -159c-25 0 -57 4 -76 21v98h16c24 -22 45 -24 61 -24c42 0 72 10 72 50c0 38 -42 46 -79 46h-89c-108 0 -198 71 -198 182c0 83 47 159 137 206v3c-41 19 -59 47 -59 88c0 33 15 64 44 89c-29 20 -46 36 -46 76 c0 23 6 40 23 62h16l77 -17c-10 -13 -14 -21 -14 -35c0 -12 8 -27 28 -38c47 18 91 32 143 32l11 -3l8 -92c-90 0 -170 -29 -170 -80c0 -20 13 -34 36 -41c52 18 110 21 158 21l8 -5l-8 -90c-140 0 -267 -64 -267 -163c0 -65 43 -100 124 -100'], + 0x1D77E: [473,14,501,25,476,'476 229c0 -141 -97 -243 -226 -243c-125 0 -225 100 -225 242c0 146 97 245 229 245c126 0 222 -102 222 -244zM351 232c0 90 -35 146 -104 146c-68 0 -97 -69 -97 -146c0 -84 33 -151 100 -151c78 0 101 89 101 151'], + 0x1D77F: [461,14,594,10,572,'572 366h-99c-6 -45 -12 -119 -12 -175c0 -69 15 -99 96 -110v-17l-40 -78c-78 1 -180 15 -181 164c0 62 13 183 17 216h-76c-1 -234 -7 -370 -198 -380l-13 95c84 23 91 24 91 273c-17 0 -48 -22 -62 -74l-85 38c33 102 96 143 189 143h373v-95'], + 0x1D780: [473,205,511,38,486,'54 -117v242c0 113 4 178 46 252c50 87 129 96 182 96c120 0 204 -93 204 -226c0 -88 -27 -164 -75 -210c-36 -35 -86 -51 -139 -51c-39 0 -68 14 -98 41v-138c0 -40 -5 -71 -17 -94h-119c10 23 16 56 16 88zM361 230c0 99 -30 148 -89 148c-35 0 -73 -18 -90 -92 c-8 -33 -8 -77 -8 -136c28 -47 49 -69 92 -69c63 0 95 73 95 149'], + 0x1D781: [473,205,498,26,486,'279 81h56c65 0 151 -32 151 -127c0 -96 -67 -159 -168 -159c-25 0 -57 4 -76 21v98h16c24 -22 45 -24 61 -24c42 0 72 10 72 50c0 38 -42 46 -79 46h-80c-114 0 -206 88 -206 212c0 158 114 275 271 275c73 0 162 -30 182 -105l-72 -57h-17c-16 58 -63 67 -95 67 c-93 0 -144 -74 -144 -152c0 -29 3 -65 21 -94c24 -37 68 -51 107 -51'], + 0x1D782: [461,14,520,25,552,'552 366h-165v-2c56 -44 88 -107 88 -165c0 -79 -70 -213 -223 -213c-127 0 -227 99 -227 239c0 174 138 236 226 236h301v-95zM350 210c0 86 -61 134 -103 156c-61 0 -97 -57 -97 -137c0 -83 34 -148 102 -148c70 0 98 76 98 129'], + 0x1D783: [461,14,479,6,472,'472 366h-153c-6 -45 -12 -119 -12 -175c0 -69 26 -99 107 -110v-17l-40 -78c-78 1 -191 15 -192 164c0 62 15 176 21 216c-72 0 -98 -49 -112 -101l-85 38c33 102 76 158 169 158h297v-95'], + 0x1D784: [473,14,514,35,489,'247 378v95c131 0 242 -74 242 -244c0 -141 -99 -243 -226 -243c-136 0 -208 72 -208 191v147c0 43 -3 94 -20 113l102 36h16c8 -15 22 -43 22 -73v-193c0 -60 21 -126 90 -126c71 0 99 88 99 142c0 121 -51 155 -117 155'], + 0x1D785: [473,205,634,25,609,'258 81v102c0 143 2 290 167 290c80 0 184 -85 184 -249c0 -118 -64 -238 -232 -238v-191h-120v191c-168 0 -232 119 -232 238c0 92 49 207 130 237l69 -58v-12c-66 -35 -74 -119 -74 -158c0 -104 38 -152 108 -152zM376 212v-131c69 0 108 50 108 150s-10 147 -59 147 c-48 0 -49 -76 -49 -166'], + 0x1D786: [473,205,573,9,553,'553 461l-215 -340c6 -100 47 -220 161 -231v-16l-48 -79c-111 0 -171 121 -193 209l-1 4l-110 -203h-138l210 333c-6 107 -43 232 -173 240v16l50 79c110 0 175 -98 204 -216l1 -4l114 208h138'], + 0x1D787: [473,205,680,25,699,'699 473l-22 -95c-29 -10 -49 -46 -49 -152c0 -132 -53 -221 -206 -240v-191h-120v191c-152 18 -206 108 -206 240c0 106 -20 142 -49 152l-22 95c121 0 196 -84 196 -198c0 -142 10 -178 81 -194v380h120v-380c67 18 81 52 81 194c0 113 76 198 196 198'], + 0x1D788: [461,14,740,42,689,'455 410l81 51c96 -27 153 -139 153 -241c0 -92 -27 -155 -70 -193c-33 -29 -74 -41 -117 -41c-57 0 -112 29 -136 83h-2c-22 -54 -78 -83 -135 -83c-44 0 -89 13 -120 43c-42 39 -67 100 -67 191c0 102 57 214 151 241l83 -51v-16c-80 -31 -109 -109 -109 -180 s15 -133 62 -133c42 0 75 38 75 145v92l107 29l13 -10v-111c0 -107 37 -145 78 -145c46 0 62 61 62 133c0 71 -28 149 -109 180v16'], + 0x1D789: [691,14,501,25,476,'103 608l30 83c263 -15 343 -202 343 -414c0 -87 -18 -172 -72 -227c-40 -40 -92 -64 -154 -64c-126 0 -225 100 -225 242c0 141 94 245 223 245c37 0 60 -9 90 -33l3 2c-39 108 -120 153 -222 154zM351 232c0 90 -35 146 -104 146c-68 0 -97 -69 -97 -146 c0 -84 33 -151 100 -151c78 0 101 89 101 151'], + 0x1D78A: [473,14,462,25,440,'373 145l67 -65c-61 -73 -100 -94 -195 -94c-127 0 -220 99 -220 235c0 152 105 252 231 252c42 0 95 -5 130 -30v-124h-16c-34 58 -81 59 -113 59c-41 0 -93 -26 -105 -88h149v-95h-150c7 -64 53 -107 114 -107c43 0 79 13 108 57'], + 0x1D78B: [692,14,536,35,522,'522 380v-95c-13 0 -28 2 -43 5v-31c0 -178 -91 -273 -218 -273c-135 0 -206 72 -206 191v65c0 43 -3 84 -20 103l102 36h16c8 -15 22 -43 22 -73v-101c0 -60 19 -126 88 -126c71 0 91 86 91 172c0 28 0 44 -1 68c-114 37 -222 106 -222 237c0 97 71 134 133 134 c106 0 187 -96 208 -303c16 -4 33 -7 50 -9zM351 431c-4 106 -39 165 -88 165c-21 0 -37 -12 -37 -48s47 -99 125 -117'], + 0x1D78C: [473,14,570,14,554,'554 85v-88c-25 -7 -56 -11 -71 -11c-77 0 -137 60 -147 202l-225 -202l-97 91l121 108v12c0 69 -7 116 -19 141c-13 26 -35 39 -68 39c-6 0 -13 -1 -21 -3v88c25 7 46 11 61 11c79 0 123 -64 127 -215l240 215l97 -91l-136 -122c0 -96 33 -178 117 -178c6 0 13 1 21 3'], + 0x1D78D: [692,205,634,25,609,'377 692v-219c174 0 232 -116 232 -244c0 -129 -65 -243 -232 -243v-191h-120v191c-167 0 -232 114 -232 243s57 244 232 244v219h120zM376 378v-297c68 0 108 45 108 150s-48 147 -108 147zM258 81v297c-60 0 -108 -42 -108 -147s37 -150 108 -150'], + 0x1D78E: [473,205,494,25,469,'299 -205h-17c-12 35 -77 29 -160 108c-71 68 -97 180 -97 279c0 87 18 172 72 227c40 40 93 64 155 64c126 0 217 -102 217 -244c0 -141 -92 -243 -221 -243c-37 0 -60 9 -90 33l-3 -2c39 -108 222 -67 222 -198zM344 232c0 90 -30 146 -99 146c-68 0 -95 -79 -95 -156 c0 -84 31 -141 98 -141c78 0 96 89 96 151'], + 0x1D78F: [461,14,848,6,839,'839 366h-92c25 -44 39 -96 39 -146c0 -92 -26 -157 -70 -193c-34 -28 -74 -41 -117 -41c-57 0 -108 27 -136 83h-2c-26 -56 -78 -83 -135 -83c-44 0 -89 13 -120 43c-42 39 -67 101 -67 184c0 49 17 111 45 152c-60 -6 -80 -52 -93 -100l-85 38c33 102 76 158 169 158 h664v-95zM521 307v-81c0 -107 37 -145 78 -145c46 0 62 61 62 133c0 55 -17 113 -62 152h-273c-45 -39 -62 -97 -62 -152c0 -71 20 -133 62 -133s75 38 75 145v62l107 29'], + 0x1D7EC: [688,13,500,24,476,'476 337c0 -208 -96 -350 -226 -350s-226 142 -226 350s96 351 226 351s226 -143 226 -351zM351 341c0 138 -23 252 -101 252s-101 -114 -101 -252s23 -259 101 -259s101 121 101 259'], + 0x1D7ED: [688,0,500,82,334,'334 0h-120v542l-132 -50v90l233 106h19v-688'], + 0x1D7EE: [688,0,500,20,474,'474 95l-33 -95h-421v23l242 300c39 48 69 108 69 167c0 51 -34 103 -94 103c-46 0 -92 -31 -110 -111h-95c23 123 102 206 223 206c124 0 196 -88 196 -190c0 -83 -25 -130 -104 -225l-147 -178h274'], + 0x1D7EF: [688,13,500,18,479,'380 375v-2c52 -25 99 -82 99 -154c0 -105 -61 -178 -145 -212c-38 -15 -82 -20 -126 -20c-65 0 -131 11 -190 73l58 77c35 -39 90 -55 139 -55c44 0 83 8 110 32c21 19 34 50 34 84c0 32 -19 64 -48 84c-37 25 -95 33 -146 33v16l59 79c64 0 113 47 113 95 c0 59 -40 88 -93 88c-41 0 -87 -24 -106 -94l-90 31c35 94 108 158 214 158c102 0 190 -67 190 -169c0 -50 -24 -113 -72 -144'], + 0x1D7F0: [688,0,500,19,484,'484 240l-22 -95h-50v-145h-120v145h-273v112l313 431h80v-448h72zM292 240v234l-170 -234h170'], + 0x1D7F1: [676,13,500,13,483,'483 676l-38 -105h-225l-36 -116c57 -3 119 -12 169 -40c64 -36 108 -98 108 -183c0 -100 -54 -180 -131 -219c-38 -19 -81 -26 -126 -26c-66 0 -132 11 -191 73l58 77c38 -37 87 -55 136 -55c75 0 129 53 129 121c0 51 -18 80 -69 106c-50 26 -139 26 -191 26l-15 11 l93 330h329'], + 0x1D7F2: [688,13,500,26,475,'159 389l2 -1c34 26 77 36 118 36c94 0 196 -67 196 -212c0 -67 -24 -124 -64 -164c-38 -38 -91 -61 -154 -61c-155 0 -231 136 -231 281c0 119 47 215 116 282c97 93 180 117 320 138l7 -9l-44 -86c-99 -8 -236 -90 -266 -204zM355 201c0 72 -29 128 -94 128 c-42 0 -88 -25 -115 -86c0 -90 39 -161 113 -161c70 0 96 62 96 119'], + 0x1D7F3: [676,0,500,35,471,'471 676l-235 -676h-116l210 561h-295l23 115h413'], + 0x1D7F4: [688,13,500,28,472,'472 166c0 -97 -77 -179 -221 -179c-58 0 -108 9 -147 34c-53 33 -76 89 -76 144c0 72 40 140 122 185c-87 53 -107 110 -107 160c0 102 89 178 214 178c112 0 202 -68 202 -164c0 -73 -32 -118 -117 -160c102 -69 130 -123 130 -198zM344 522c0 43 -40 71 -97 71 c-60 0 -89 -33 -89 -70c0 -34 27 -67 99 -99c64 29 87 63 87 98zM352 168c0 49 -32 79 -115 127c-63 -35 -89 -74 -89 -122c0 -32 28 -91 102 -91c53 0 102 35 102 86'], + 0x1D7F5: [688,13,500,26,475,'342 286l-2 1c-34 -26 -77 -36 -118 -36c-94 0 -196 67 -196 212c0 67 24 124 64 164c38 38 91 61 154 61c155 0 231 -136 231 -281c0 -119 -47 -215 -116 -282c-97 -93 -181 -121 -323 -138l-7 9l44 86c99 8 239 90 269 204zM355 432c0 90 -39 161 -113 161 c-70 0 -96 -62 -96 -119c0 -72 29 -128 94 -128c42 0 88 25 115 86'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/BoldItalic/Main.js new file mode 100644 index 0000000..8e1c193 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/BoldItalic/Main.js @@ -0,0 +1,150 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_SansSerif-bold-italic'] = { + directory: 'SansSerif/BoldItalic', + family: 'STIXMathJax_SansSerif', + weight: 'bold', + style: 'italic', + id: 'STIXWEBSANSSERIFBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xE1F6: [688,13,500,89,578,'578 475c0 -41 -6 -88 -18 -138c-52 -208 -184 -350 -314 -350c-98 0 -157 81 -157 211c0 42 6 88 19 139c51 208 183 351 313 351c99 0 157 -82 157 -213zM459 496c0 59 -17 97 -62 97c-78 0 -129 -114 -163 -252c-15 -60 -25 -116 -25 -161c0 -59 17 -98 61 -98 c76 0 131 121 166 259c14 58 23 112 23 155'], + 0xE1F7: [688,0,500,204,505,'505 688l-171 -688h-120l135 542l-145 -50l23 90l259 106h19'], + 0xE1F8: [688,0,500,20,581,'247 482h-95c53 123 153 206 274 206c103 0 155 -61 155 -140c0 -106 -52 -169 -166 -275l-192 -178h274l-56 -95h-421l5 23l317 300c57 54 114 129 114 194c0 41 -23 76 -72 76c-46 0 -99 -31 -137 -111'], + 0xE1F9: [688,13,500,32,586,'262 499l-82 31c58 94 147 158 253 158c88 0 153 -50 153 -129c0 -54 -39 -143 -113 -184l-1 -2c37 -20 66 -62 66 -115s-28 -111 -58 -149c-64 -81 -169 -122 -276 -122c-65 0 -128 11 -172 73l78 77c25 -39 76 -55 125 -55c86 0 176 46 176 137c0 74 -84 96 -168 96 l4 16l79 79c80 0 140 66 140 122c0 41 -31 61 -75 61c-41 0 -93 -24 -129 -94'], + 0xE1FA: [688,0,500,55,583,'583 688l-112 -448h72l-45 -95h-50l-36 -145h-120l36 145h-273l28 112l420 431h80zM410 474l-229 -234h170'], + 0xE1FB: [676,13,500,27,651,'651 676l-64 -105h-225l-65 -116c115 -6 228 -46 228 -168c0 -17 -2 -36 -7 -55c-38 -152 -176 -245 -318 -245c-66 0 -129 11 -173 73l78 77c28 -37 73 -55 122 -55c87 0 164 72 164 156c0 91 -137 97 -232 97l-12 11l175 330h329'], + 0xE1FC: [688,13,500,80,638,'638 679l-66 -86c-101 -8 -258 -90 -317 -204l2 -1c41 26 86 36 127 36c79 0 152 -47 152 -147c0 -159 -136 -290 -283 -290c-121 0 -173 83 -173 188c0 155 94 294 199 375c120 93 209 117 354 138zM412 252c0 46 -21 77 -69 77c-42 0 -95 -25 -137 -86 c-5 -22 -8 -44 -8 -63c0 -58 25 -98 81 -98c93 0 133 107 133 170'], + 0xE1FD: [676,0,500,120,639,'639 676l-403 -676h-116l349 561h-295l52 115h413'], + 0xE1FE: [688,13,500,63,594,'594 560c0 -90 -58 -150 -162 -196c64 -52 88 -96 88 -146c0 -118 -103 -231 -273 -231c-117 0 -184 46 -184 132c0 87 62 177 174 231c-55 39 -72 81 -72 120c0 121 124 218 263 218c98 0 166 -51 166 -128zM476 537c0 35 -32 56 -82 56c-68 0 -108 -43 -108 -86 c0 -29 22 -56 76 -83c79 32 114 74 114 113zM396 191c0 36 -27 64 -86 104c-77 -38 -121 -86 -121 -140c0 -32 19 -73 81 -73s126 46 126 109'], + 0xE1FF: [688,13,500,28,588,'413 286l-2 1c-40 -26 -86 -36 -127 -36c-79 0 -151 47 -151 148c0 160 136 289 282 289c121 0 173 -83 173 -188c-1 -155 -95 -295 -198 -375c-121 -93 -212 -121 -358 -138l-4 9l65 86c101 8 261 90 320 204zM471 495c0 58 -27 98 -82 98c-93 0 -132 -107 -132 -170 c0 -46 21 -77 69 -77c42 0 94 25 136 86c6 23 9 44 9 63'], + 0x1D63C: [690,0,690,25,665,'665 0h-130l-26 162h-248l-106 -162h-130l478 690h28zM493 264l-32 204l-134 -204h166'], + 0x1D63D: [676,0,636,80,691,'248 676h237c135 0 206 -43 206 -125c0 -67 -45 -140 -136 -178l1 -4c69 -37 92 -81 92 -128c0 -134 -138 -241 -308 -241h-260zM310 413h72c127 0 168 57 168 112c0 33 -26 49 -86 49h-113zM233 102h103c121 0 171 61 171 130c0 59 -73 79 -147 79h-75'], + 0x1D63E: [691,19,723,119,797,'797 597l-37 -149h-11c-25 98 -91 141 -183 141c-145 0 -305 -123 -305 -330c0 -96 48 -176 164 -176c86 0 153 34 242 110l52 -68c-98 -93 -201 -144 -321 -144c-184 0 -279 104 -279 254c0 247 209 456 455 456c94 0 177 -16 223 -94'], + 0x1D63F: [676,0,709,80,772,'248 676h179c250 0 345 -89 345 -232c0 -161 -122 -444 -463 -444h-229zM235 102h67c158 0 274 63 317 234c7 30 11 57 11 81c0 111 -78 157 -199 157h-78'], + 0x1D640: [676,0,635,80,728,'728 676l-25 -102h-350l-42 -167h241l-26 -103h-241l-50 -202h387l-52 -102h-490l168 676h480'], + 0x1D641: [676,0,582,80,725,'725 676l-12 -102h-360l-43 -169h213l-25 -102h-213l-75 -303h-130l168 676h477'], + 0x1D642: [691,19,746,107,785,'785 597l-37 -149h-11c-26 99 -91 141 -188 141c-139 0 -299 -122 -299 -328c0 -96 47 -178 168 -178c58 0 106 14 166 43l32 129h-112v102h256l-70 -279c-67 -44 -147 -97 -301 -97c-188 0 -282 102 -282 252c0 244 204 458 456 458c96 0 173 -18 222 -94'], + 0x1D643: [676,0,715,80,803,'803 676l-168 -676h-130l74 297h-295l-74 -297h-130l168 676h130l-69 -277h295l69 277h130'], + 0x1D644: [676,0,440,79,534,'534 676l-16 -102h-90l-118 -472h90l-34 -102h-287l11 102h90l118 472h-90l39 102h287'], + 0x1D645: [676,96,481,15,574,'574 676l-136 -545c-34 -137 -132 -227 -268 -227c-64 0 -112 27 -155 98l73 98h18c24 -55 45 -94 99 -94c66 0 87 59 100 112l139 558h130'], + 0x1D646: [676,0,712,80,816,'816 676l-3 -14l-388 -278l282 -384h-170l-220 306l-40 -29l-69 -277h-128l168 676h128l-66 -263l361 263h145'], + 0x1D647: [676,0,603,80,612,'612 102l-44 -102h-488l168 676h130l-143 -574h377'], + 0x1D648: [676,0,913,80,1001,'1001 676l-168 -676h-128l116 467l-351 -467h-27l-119 467l-116 -467h-128l168 676h161l104 -440h3l324 440h161'], + 0x1D649: [676,18,724,80,812,'812 676l-173 -694l-100 20l-206 500l-125 -502h-128l168 676h157l173 -424l106 424h128'], + 0x1D64A: [692,18,778,106,840,'840 434c0 -30 -5 -63 -13 -97c-53 -211 -237 -355 -442 -355c-171 0 -279 101 -279 257c0 260 227 453 455 453c171 0 279 -102 279 -258zM701 425c0 101 -55 165 -165 165c-158 0 -291 -146 -291 -343c0 -101 55 -163 165 -163c139 0 241 101 279 253c8 32 12 61 12 88 '], + 0x1D64B: [676,0,581,80,695,'248 676h209c160 0 238 -52 238 -144c0 -148 -139 -254 -313 -254h-103l-69 -278h-130zM304 380h71c118 0 185 43 185 124c0 45 -41 70 -142 70h-65'], + 0x1D64C: [691,176,779,105,839,'714 -160l-4 -16c-177 0 -337 0 -403 163c-125 28 -202 118 -202 249c0 264 230 455 456 455c171 0 278 -100 278 -257c0 -233 -180 -405 -373 -446c36 -58 108 -61 176 -62zM700 425c0 101 -55 164 -165 164c-156 0 -291 -146 -291 -342c0 -101 56 -164 166 -164 c139 0 240 101 278 253c8 32 12 62 12 89'], + 0x1D64D: [676,0,670,80,698,'248 676h216c157 0 234 -51 234 -140c0 -113 -94 -208 -221 -236l180 -300h-159l-175 291h-41l-72 -291h-130zM307 393h71c121 0 184 38 184 119c0 43 -42 62 -144 62h-65'], + 0x1D64E: [691,19,554,66,637,'637 620l-38 -154h-14c-12 80 -88 123 -156 123c-53 0 -127 -29 -127 -99c0 -45 51 -70 99 -91c117 -50 163 -93 163 -161c0 -64 -45 -156 -112 -205c-51 -37 -113 -52 -191 -52c-92 0 -159 34 -195 81l24 162h14c23 -102 124 -141 184 -141c121 0 142 87 142 115 c0 37 -28 55 -95 83c-115 49 -164 98 -164 170c0 140 132 240 274 240c96 0 166 -32 192 -71'], + 0x1D64F: [676,0,641,157,785,'785 676l-15 -102h-240l-143 -574h-130l143 574h-243l39 102h589'], + 0x1D650: [676,19,699,123,792,'792 676l-107 -430c-43 -174 -155 -265 -340 -265c-151 0 -222 58 -222 171c0 28 4 59 13 94l107 430h128l-104 -419c-10 -40 -15 -64 -15 -82c0 -59 43 -92 118 -92c67 0 113 26 150 70c19 23 28 57 43 116l101 407h128'], + 0x1D651: [676,18,690,193,833,'833 676l-479 -694h-28l-133 694h130l74 -465l306 465h130'], + 0x1D652: [676,15,997,198,1135,'1135 676l-427 -691l-28 1l-82 408h-3l-286 -409h-28l-83 691h130l38 -439l304 439l79 -439l255 439h131'], + 0x1D653: [676,0,740,40,853,'853 676l-325 -333l172 -343h-154l-120 239l-232 -239h-154l334 343l-165 333h154l113 -228l223 228h154'], + 0x1D654: [676,0,694,188,842,'842 676l-360 -394l-70 -282h-130l70 282l-164 394h145l111 -283l253 283h145'], + 0x1D655: [676,0,653,25,769,'769 676l-4 -16l-513 -558h396l-40 -102h-583l3 16l512 558h-334l38 102h525'], + 0x1D656: [473,14,489,48,507,'181 308l-65 44c50 85 141 121 238 121c86 0 153 -36 153 -104c0 -9 -1 -19 -4 -30l-66 -263c-6 -24 -8 -50 -9 -76h-125l4 44c-55 -46 -101 -58 -165 -58c-52 0 -94 33 -94 95c0 56 29 114 66 148c57 52 145 72 261 79l4 16c1 5 2 10 2 15c0 24 -20 39 -62 39 c-58 0 -96 -19 -126 -70h-12zM336 152l16 61c-63 0 -174 -14 -174 -96c0 -29 28 -36 47 -36c39 0 81 29 111 71'], + 0x1D657: [676,13,512,51,558,'283 426l-1 -1c44 34 88 48 137 48c87 0 139 -57 139 -151c0 -102 -59 -228 -137 -288c-48 -37 -99 -47 -152 -47c-40 0 -84 19 -99 43h-3l-103 -43h-13l172 689h120l-62 -250h2zM250 301l-40 -158c15 -36 40 -61 79 -61c69 0 138 99 138 208c0 55 -25 88 -62 88 c-38 0 -78 -20 -115 -77'], + 0x1D658: [473,14,462,71,524,'524 368l-91 -57h-17c-1 58 -36 67 -68 67c-53 0 -147 -70 -147 -194c0 -54 28 -96 85 -96c43 0 83 13 123 57l52 -67c-79 -73 -125 -92 -220 -92c-105 0 -170 68 -170 168c0 188 165 319 302 319c81 0 151 -35 151 -105'], + 0x1D659: [676,14,518,69,625,'625 676l-137 -550c-8 -32 -19 -82 -24 -118l-120 -22l-6 3l11 45h-2c-48 -40 -94 -48 -134 -48c-93 0 -144 57 -144 153c0 194 137 334 280 334c38 0 66 -10 96 -39l60 242h120zM379 169l35 140c-17 47 -32 69 -75 69c-79 0 -140 -116 -140 -207c0 -52 21 -90 65 -90 c51 0 82 37 115 88'], + 0x1D65A: [473,13,452,71,492,'398 143l54 -66c-82 -73 -125 -90 -210 -90c-108 0 -171 63 -171 164c0 71 34 158 70 208c59 82 142 114 216 114c91 0 135 -60 135 -151c0 -27 -4 -57 -12 -89l-7 -28h-272c-5 -15 -5 -27 -5 -39c-1 -55 37 -78 85 -78c31 0 77 11 117 55zM233 300h143c3 12 4 21 4 30 c0 35 -22 48 -53 48c-32 0 -80 -31 -94 -78'], + 0x1D65B: [692,0,340,72,533,'533 639l-45 -90l-17 -1c-15 42 -43 49 -72 49c-42 0 -67 -33 -80 -84l-13 -51h90l-23 -95h-90l-91 -367h-120l91 367h-58l23 95h58l11 42c33 128 125 188 216 188c67 0 90 -13 120 -53'], + 0x1D65C: [473,206,504,2,599,'599 451l-24 -95h-56c5 -3 7 -12 7 -23c0 -133 -148 -193 -247 -193h-25c-37 -4 -57 -20 -57 -41c0 -15 13 -23 40 -23h84c91 0 160 -22 160 -94c0 -143 -164 -188 -331 -188c-87 0 -148 29 -148 90c0 40 27 84 85 110c-21 11 -28 28 -28 46c0 45 24 80 107 125v2 c-34 26 -53 53 -53 93c0 117 120 213 257 213c22 0 52 -4 77 -14c20 -8 21 -8 80 -8h72zM410 326c0 30 -21 52 -71 52c-72 0 -108 -53 -108 -92c0 -35 29 -51 72 -51c64 0 107 38 107 91zM309 -19h-105c-57 -6 -68 -39 -68 -54c0 -28 35 -38 78 -38c67 0 138 12 138 66 c0 14 -12 26 -43 26'], + 0x1D65D: [676,0,510,55,542,'278 415h2c49 39 90 58 143 58c81 0 119 -35 119 -98c0 -16 -2 -33 -7 -53l-80 -322h-120l77 309c2 9 3 18 3 25c0 34 -23 44 -52 44c-25 0 -77 -22 -115 -85l-73 -293h-120l168 676h120'], + 0x1D65E: [688,0,245,59,366,'366 688l-36 -145h-145l36 145h145zM298 462l-114 -462h-125l114 462h125'], + 0x1D65F: [688,202,324,-90,440,'440 688l-36 -145h-145l36 145h145zM372 462l-119 -478c-31 -125 -127 -186 -225 -186c-49 0 -85 16 -118 67l64 85h18c8 -25 22 -50 46 -50c40 0 75 21 93 95l116 467h125'], + 0x1D660: [676,0,519,55,599,'599 462l-4 -18l-252 -171l163 -273h-142l-118 205l-24 -16l-47 -189h-120l168 676h120l-91 -364l213 150h134'], + 0x1D661: [676,0,235,55,348,'348 676l-168 -676h-125l155 625l121 51h17'], + 0x1D662: [473,0,776,55,809,'530 412h1c50 39 107 61 160 61c81 0 118 -34 118 -95c0 -16 -3 -35 -8 -55l-80 -323h-118l77 310c2 9 3 18 3 25c0 34 -23 44 -52 44s-73 -22 -111 -85l-73 -294h-118l77 310c2 9 3 18 3 25c0 34 -23 44 -52 44c-25 0 -73 -22 -111 -85l-73 -294h-118l114 462h114 l-12 -50h2c50 39 91 61 144 61c64 0 101 -22 113 -61'], + 0x1D663: [473,0,510,55,542,'273 412h2c50 39 95 61 148 61c81 0 119 -35 119 -97c0 -16 -2 -33 -7 -53l-80 -323h-120l77 310c2 9 3 18 3 25c0 34 -23 44 -52 44c-25 0 -77 -22 -115 -85l-73 -294h-120l114 462h116'], + 0x1D664: [473,14,501,72,542,'542 298c0 -175 -152 -312 -296 -312c-104 0 -174 70 -174 175c0 181 155 312 299 312c104 0 171 -70 171 -175zM417 295c0 53 -25 83 -76 83c-83 0 -142 -112 -142 -208c0 -53 22 -89 71 -89c115 0 147 173 147 214'], + 0x1D665: [473,205,512,3,559,'274 416h2c45 38 98 57 147 57c84 0 136 -57 136 -144c0 -190 -141 -343 -290 -343c-38 0 -64 14 -88 41l-48 -195l-113 -37h-17l166 667h116zM247 291l-35 -141c16 -47 32 -69 75 -69c86 0 143 134 143 224c0 49 -21 74 -63 74c-51 0 -87 -37 -120 -88'], + 0x1D666: [473,205,512,69,574,'574 473l-159 -641l-113 -37h-17l58 231l-2 1c-43 -34 -80 -41 -127 -41c-95 0 -145 65 -145 156c0 175 142 331 292 331c40 0 78 -17 96 -39l100 39h17zM376 158l39 158c-18 42 -46 62 -76 62c-56 0 -142 -81 -142 -214c0 -52 23 -83 66 -83c41 0 78 25 113 77'], + 0x1D667: [473,0,411,55,519,'519 455l-25 -98h-16c-9 13 -25 22 -53 22c-62 0 -153 -78 -203 -190l-47 -189h-120l114 462h120l-22 -88h2c65 75 135 99 178 99c31 0 58 -7 72 -18'], + 0x1D668: [473,13,385,37,442,'442 412l-26 -106h-15c-22 61 -71 72 -107 72c-45 0 -59 -34 -59 -46c0 -24 24 -39 55 -54c79 -37 105 -62 105 -105c0 -99 -88 -186 -221 -186c-70 0 -99 20 -137 63l30 120h15c12 -63 75 -88 119 -88c31 0 68 21 68 54c0 16 -12 27 -53 47c-77 38 -103 68 -103 111 c0 91 76 179 200 179c70 0 102 -23 129 -61'], + 0x1D669: [631,12,386,98,447,'447 462l-23 -95h-107l-54 -218c-3 -10 -4 -18 -4 -25c0 -32 24 -41 45 -41c17 0 46 5 77 32h18l-34 -94c-34 -25 -75 -33 -124 -33c-58 0 -109 30 -109 97c0 12 1 26 5 41l60 241h-99l4 17l82 78h36l16 61l127 108h20l-43 -169h107'], + 0x1D66A: [462,15,518,81,569,'569 462l-87 -352c-8 -34 -16 -73 -17 -100l-130 -25l17 70h-2c-46 -40 -107 -69 -160 -69c-75 0 -109 34 -109 94c0 17 3 37 8 58l80 324h120l-77 -311c-2 -9 -3 -18 -3 -25c0 -34 23 -45 52 -45c25 0 78 29 117 92l71 289h120'], + 0x1D66B: [462,14,462,129,561,'561 462l-321 -476h-26l-85 476h130l23 -253h2l146 253h131'], + 0x1D66C: [462,14,701,131,798,'798 462l-313 -476h-26l-46 253l-179 -253h-26l-77 476h130l19 -257h2l105 174l-15 83h131l26 -245h2l136 245h131'], + 0x1D66D: [462,0,506,20,582,'582 462l-202 -223l106 -239h-138l-65 143l-125 -143h-138l219 244l-94 218h137l53 -121l109 121h138'], + 0x1D66E: [462,204,472,-27,569,'569 462l-303 -496c-72 -118 -135 -170 -227 -170c-25 0 -51 7 -66 22l24 98h15c18 -21 37 -25 53 -25c43 0 79 29 120 103l-53 468h131l25 -275h2l148 275h131'], + 0x1D66F: [462,0,441,21,530,'530 462l-6 -26l-318 -341h234l-32 -95h-387l6 25l318 342h-207l31 95h361'], + 0x1D790: [690,0,690,25,665,'665 0h-130l-26 162h-248l-106 -162h-130l478 690h28zM493 264l-32 204l-134 -204h166'], + 0x1D791: [676,0,706,60,671,'228 676h237c135 0 206 -43 206 -125c0 -67 -45 -140 -136 -178l1 -4c69 -37 92 -81 92 -128c0 -134 -138 -241 -308 -241h-260zM290 413h72c127 0 168 57 168 112c0 33 -26 49 -86 49h-113zM213 102h103c121 0 171 61 171 130c0 59 -73 79 -147 79h-75'], + 0x1D792: [676,0,602,60,705,'705 676l-13 -102h-359l-143 -574h-130l168 676h477'], + 0x1D793: [690,0,720,40,680,'680 0h-640l478 690h28zM533 102l-57 366l-239 -366h296'], + 0x1D794: [676,0,683,60,708,'708 676l-25 -102h-350l-42 -167h241l-26 -103h-241l-50 -202h387l-52 -102h-490l168 676h480'], + 0x1D795: [676,0,707,25,769,'769 676l-4 -16l-513 -558h396l-40 -102h-583l3 16l512 558h-334l38 102h525'], + 0x1D796: [676,0,748,60,783,'783 676l-168 -676h-130l74 297h-295l-74 -297h-130l168 676h130l-69 -277h295l69 277h130'], + 0x1D797: [691,19,847,90,822,'600 398l-12 -102h-282l38 102h256zM822 434c0 -262 -224 -453 -453 -453c-171 0 -279 101 -279 258c0 260 228 452 455 452c170 0 277 -101 277 -257zM684 425c0 101 -55 164 -165 164c-156 0 -291 -146 -291 -342c0 -101 56 -164 166 -164c165 0 290 162 290 342'], + 0x1D798: [676,0,435,50,505,'505 676l-16 -102h-90l-118 -472h90l-34 -102h-287l11 102h90l118 472h-90l39 102h287'], + 0x1D799: [676,0,712,60,796,'796 676l-3 -14l-388 -278l282 -384h-170l-220 306l-40 -29l-69 -277h-128l168 676h128l-66 -263l361 263h145'], + 0x1D79A: [690,0,686,20,646,'646 0h-130l-67 468l-299 -468h-130l471 690h28'], + 0x1D79B: [676,0,933,60,981,'981 676l-168 -676h-128l116 467l-351 -467h-27l-119 467l-116 -467h-128l168 676h161l104 -440h3l324 440h161'], + 0x1D79C: [676,18,744,60,792,'792 676l-173 -694l-100 20l-206 500l-125 -502h-128l168 676h157l173 -424l106 424h128'], + 0x1D79D: [676,0,690,47,737,'737 676l-10 -112h-524l36 112h498zM602 411l-25 -122h-366l25 122h366zM630 122l-37 -122h-546l13 122h570'], + 0x1D79E: [692,18,849,90,824,'824 434c0 -30 -5 -63 -13 -97c-53 -211 -237 -355 -442 -355c-171 0 -279 101 -279 257c0 260 227 453 455 453c171 0 279 -102 279 -258zM685 425c0 101 -55 165 -165 165c-158 0 -291 -146 -291 -343c0 -101 55 -163 165 -163c139 0 241 101 279 253c8 32 12 61 12 88 '], + 0x1D79F: [676,0,745,60,783,'783 676l-168 -676h-130l143 574h-295l-143 -574h-130l168 676h555'], + 0x1D7A0: [676,0,581,60,675,'228 676h209c160 0 238 -52 238 -144c0 -148 -139 -254 -313 -254h-103l-69 -278h-130zM284 380h71c118 0 185 43 185 124c0 45 -41 70 -142 70h-65'], + 0x1D7A1: [691,19,847,90,822,'822 434c0 -262 -224 -453 -453 -453c-171 0 -279 101 -279 258c0 260 228 452 455 452c170 0 277 -101 277 -257zM257 398h426c1 10 1 18 1 27c0 101 -55 164 -165 164c-113 0 -214 -76 -262 -191zM662 296h-431c-2 -16 -3 -32 -3 -49c0 -101 56 -164 166 -164 c124 0 225 91 268 213'], + 0x1D7A2: [676,0,696,21,748,'748 676l-25 -102h-330l148 -226l-271 -246h377l-40 -102h-586l3 16l364 330l-206 314l4 16h562'], + 0x1D7A3: [676,0,641,87,715,'715 676l-15 -102h-240l-143 -574h-130l143 574h-243l39 102h589'], + 0x1D7A4: [691,0,671,91,799,'799 675l-58 -98c-22 8 -40 12 -49 12c-43 0 -137 -13 -280 -307l-70 -282h-130l70 282c0 115 -10 182 -28 227c-29 75 -73 80 -100 80c-9 0 -28 -4 -55 -11l-8 97c37 11 62 16 92 16c51 0 193 -34 201 -226c0 -10 0 -20 -1 -32c110 218 276 258 332 258 c30 0 53 -5 84 -16'], + 0x1D7A5: [676,0,835,72,835,'603 676l-25 -102c134 -4 257 -66 257 -186c0 -185 -212 -284 -376 -289l-24 -99h-130l24 99c-136 4 -257 68 -257 189c0 186 208 281 376 286l25 102h130zM551 472l-67 -271c149 9 211 98 211 167c0 51 -37 98 -144 104zM356 201l67 271c-155 -8 -210 -95 -210 -165 c0 -52 36 -99 143 -106'], + 0x1D7A6: [676,0,740,20,833,'833 676l-325 -333l172 -343h-154l-120 239l-232 -239h-154l334 343l-165 333h154l113 -228l223 228h154'], + 0x1D7A7: [691,0,791,125,901,'901 691l-57 -102c-52 -9 -70 -79 -80 -121c-33 -133 -174 -202 -294 -209l-64 -259h-130l64 259c-101 6 -195 63 -195 166c0 34 18 74 18 115c0 24 -8 44 -33 49l-5 102h39c73 0 131 -32 131 -127c0 -31 -16 -74 -16 -116c0 -47 31 -79 87 -86l78 314h130l-78 -314 c72 8 125 54 141 117c40 161 134 212 225 212h39'], + 0x1D7A8: [691,0,816,47,816,'259 102l3 29c-65 18 -135 85 -135 190c0 160 167 370 421 370c181 0 268 -109 268 -234c0 -184 -161 -301 -262 -326l-11 -29h202l-40 -102h-295l62 207c94 22 217 96 217 242c0 87 -66 140 -167 140c-149 0 -263 -131 -263 -243c0 -78 53 -120 123 -140l-40 -206h-295 l10 102h202'], + 0x1D7A9: [664,30,780,120,760,'760 664l-453 -694h-28l-159 694h640zM565 560h-294l70 -361'], + 0x1D7AA: [473,14,678,47,703,'703 462l-177 -246c4 -39 3 -135 79 -135l-4 -16l-55 -79c-53 0 -118 0 -129 91h-2c-41 -42 -93 -91 -202 -91c-104 0 -166 70 -166 171c0 131 121 316 305 316c90 0 133 -39 157 -97l65 86h129zM399 261c0 75 -29 118 -76 118c-81 0 -149 -108 -149 -204 c0 -55 25 -94 76 -94c62 0 115 73 145 128c3 19 4 36 4 52'], + 0x1D7AB: [692,205,552,-12,581,'25 -117l132 527c35 139 113 282 288 282c72 0 136 -43 136 -118s-50 -132 -106 -158l2 -1c51 -13 77 -63 77 -119c0 -16 -2 -32 -6 -48c-37 -147 -146 -262 -280 -262c-38 0 -64 11 -88 38l-33 -135c-10 -40 -23 -71 -41 -94h-118c15 23 29 56 37 88zM307 375l62 79 c54 0 92 38 92 97c0 24 -11 46 -47 46c-72 0 -110 -77 -129 -155l-73 -292c16 -47 32 -69 75 -69s141 79 141 207c0 67 -52 71 -125 71'], + 0x1D7AC: [473,204,525,84,571,'571 462l-276 -411l-61 -245l-16 -10l-101 24c20 62 47 154 65 227c12 49 19 98 19 145c0 25 0 187 -117 187l4 16l69 78c91 0 141 -111 141 -212c0 -18 -2 -35 -5 -52h2l146 253h130'], + 0x1D7AD: [692,14,507,30,547,'547 618l-74 -79h-17c-21 26 -47 58 -93 58c-23 0 -67 -16 -67 -53c0 -23 25 -47 72 -73c77 -42 131 -94 131 -185c0 -106 -90 -300 -293 -300c-127 0 -176 82 -176 168c0 122 81 230 197 274c-33 22 -54 50 -54 90c0 121 120 174 218 174c67 0 125 -12 156 -74zM371 266 c0 43 -19 70 -56 88c-81 -4 -160 -84 -160 -183c0 -50 26 -90 74 -90c93 0 142 110 142 185'], + 0x1D7AE: [473,14,504,45,508,'508 383l-69 -61h-16c-19 48 -40 56 -89 56c-34 0 -95 -10 -95 -55c0 -30 42 -30 63 -30h68l-24 -95h-78c-23 0 -50 -6 -68 -21c-14 -11 -24 -28 -24 -46c0 -38 45 -50 75 -50c60 0 125 21 159 73l36 -75c-73 -76 -131 -93 -235 -93c-71 0 -166 20 -166 109 c0 68 49 124 112 144v3c-24 15 -40 40 -40 69c0 40 27 79 57 104c47 39 117 58 178 58c69 0 140 -10 156 -90'], + 0x1D7AF: [692,205,480,49,539,'539 634l-7 -95c-66 -7 -141 -41 -205 -92c-66 -53 -145 -167 -145 -272c0 -68 37 -94 99 -94h56c57 0 123 -25 123 -94c0 -114 -107 -192 -212 -192c-25 0 -56 4 -70 21l24 98h16c19 -22 39 -24 55 -24c41 0 86 12 86 60c0 29 -36 36 -69 36h-90c-68 0 -151 22 -151 144 c0 126 83 277 206 371l1 3c-26 20 -41 45 -41 77c0 23 13 76 48 111h16l72 -17c-16 -22 -30 -48 -30 -70c0 -15 6 -29 22 -37c75 38 103 51 179 66h17'], + 0x1D7B0: [473,205,532,38,525,'255 411h3c49 40 93 62 148 62c80 0 119 -35 119 -99c0 -16 -2 -34 -7 -53l-109 -437c-5 -20 -8 -39 -8 -56c0 -12 1 -23 4 -33h-127c-2 6 -2 12 -2 19c0 20 6 44 14 76l105 419c2 9 3 18 3 25c0 33 -22 44 -51 44c-26 0 -78 -22 -116 -85l-73 -293h-120l87 349 c5 19 6 37 6 52c0 13 -1 25 -4 37l109 35h9c5 -8 11 -25 11 -51c0 -3 0 -5 -1 -11'], + 0x1D7B1: [692,14,560,65,553,'553 471c0 -188 -142 -485 -333 -485c-108 0 -155 101 -155 222c0 191 139 484 331 484c109 0 157 -100 157 -221zM218 388h204c8 32 12 64 12 93c0 65 -20 116 -62 116c-67 0 -128 -104 -154 -209zM399 293h-204c-9 -37 -14 -71 -14 -101c0 -66 22 -111 63 -111 c61 0 126 97 155 212'], + 0x1D7B2: [462,14,325,56,302,'302 108l-39 -100c-28 -14 -62 -22 -95 -22c-68 0 -112 25 -112 93c0 12 2 24 5 37l86 346h120l-74 -299c-4 -17 -6 -30 -6 -41c0 -33 18 -41 39 -41c18 0 38 8 60 27h16'], + 0x1D7B3: [473,0,537,38,582,'582 395l-4 -16c-119 -10 -174 -53 -252 -112l169 -267h-155l-117 187l-24 -20l-41 -167h-120l114 462h120l-40 -163h2c80 70 198 161 329 174'], + 0x1D7B4: [692,14,574,18,540,'540 81l-4 -16l-66 -79c-66 0 -129 24 -129 175v137l-192 -298h-131l320 459c0 121 -56 138 -123 138l4 16l70 79c84 0 143 -47 151 -214l12 -256c5 -102 22 -141 88 -141'], + 0x1D7B5: [462,205,594,-12,569,'569 462l-76 -307c-3 -13 -5 -25 -5 -35c0 -23 11 -39 49 -39l-4 -16l-55 -79c-52 0 -113 10 -119 70h-2c-33 -47 -81 -70 -117 -70c-31 0 -50 2 -65 24h-2l-30 -121c-10 -40 -23 -71 -41 -94h-114c14 23 29 56 37 88l144 579h120l-77 -313c-2 -9 -3 -17 -3 -24 c0 -33 23 -44 52 -44c36 0 81 26 114 83l74 298h120'], + 0x1D7B6: [473,14,525,41,565,'441 454l121 19c2 -7 3 -14 3 -24c0 -196 -241 -463 -498 -463h-26l118 476h120l-82 -332h2c122 36 237 165 237 293c0 7 -1 14 -2 21'], + 0x1D7B7: [692,205,481,43,525,'525 631l-15 -92c-94 0 -191 -33 -191 -90c0 -15 9 -25 27 -31c56 18 115 21 163 21l7 -5l-31 -90c-154 0 -311 -77 -311 -193c0 -46 35 -70 103 -70h61c57 0 123 -25 123 -94c0 -114 -107 -192 -212 -192c-25 0 -56 4 -70 21l24 98h16c19 -22 39 -24 55 -24 c41 0 86 12 86 60c0 29 -36 36 -69 36h-89c-93 0 -159 52 -159 137c0 97 77 197 195 251v3c-28 15 -41 34 -41 61c0 40 26 85 71 116c-18 15 -30 29 -30 52c0 33 13 58 41 86h16l73 -17c-14 -14 -24 -26 -24 -42c0 -10 6 -22 20 -31c51 18 99 32 151 32'], + 0x1D7B8: [473,14,543,45,515,'515 298c0 -175 -152 -312 -296 -312c-104 0 -174 70 -174 175c0 181 155 312 299 312c104 0 171 -70 171 -175zM390 295c0 53 -25 83 -76 83c-83 0 -142 -112 -142 -208c0 -53 22 -89 71 -89c115 0 147 173 147 214'], + 0x1D7B9: [462,14,632,45,656,'656 462l-23 -95h-99c-23 -59 -64 -177 -64 -225c0 -35 20 -53 77 -61l-5 -17l-59 -78c-67 1 -148 11 -148 107c0 45 58 217 79 274h-76c-60 -235 -99 -371 -293 -381l11 95c89 23 97 24 159 274c-17 0 -54 -22 -81 -74l-75 38c58 102 131 143 224 143h373'], + 0x1D7BA: [473,205,560,-33,536,'4 -117l61 242c28 113 47 178 108 252c71 87 153 96 206 96c98 0 157 -62 157 -158c0 -21 -3 -44 -9 -68c-39 -157 -147 -261 -279 -261c-39 0 -64 14 -88 41l-34 -138c-10 -40 -23 -71 -41 -94h-118c15 23 29 56 37 88zM409 304c0 49 -21 74 -63 74 c-35 0 -78 -18 -113 -92c-16 -33 -27 -77 -42 -136c16 -47 32 -69 75 -69c86 0 143 134 143 223'], + 0x1D7BB: [473,205,517,52,554,'554 368l-86 -57h-17c-1 58 -46 67 -78 67c-121 0 -190 -115 -190 -211c0 -64 49 -86 100 -86h56c57 0 123 -25 123 -94c0 -114 -107 -192 -212 -192c-25 0 -56 4 -70 21l24 98h16c19 -22 39 -24 55 -24c41 0 86 12 86 60c0 29 -36 36 -69 36h-80c-96 0 -160 62 -160 155 c0 185 180 332 346 332c73 0 155 -30 156 -105'], + 0x1D7BC: [462,14,614,45,639,'639 462l-23 -95h-165l-1 -2c34 -34 52 -78 52 -123c0 -14 -1 -28 -5 -42c-21 -80 -123 -214 -276 -214c-106 0 -176 69 -176 173c0 206 192 303 293 303h301zM380 251c0 61 -39 98 -69 116c-72 0 -139 -89 -139 -198c0 -52 23 -88 73 -88c95 0 135 125 135 170'], + 0x1D7BD: [462,14,523,42,547,'547 462l-23 -95h-153c-17 -45 -42 -119 -56 -175c-4 -16 -6 -30 -6 -42c0 -41 25 -60 86 -69l-5 -17l-59 -78c-67 1 -158 12 -158 111c0 16 2 33 7 53c15 63 59 177 75 217c-72 0 -110 -49 -137 -101l-76 38c58 102 115 158 208 158h297'], + 0x1D7BE: [473,14,550,61,526,'311 378l23 95c109 0 192 -51 192 -167c0 -179 -150 -320 -297 -320c-112 0 -168 49 -168 132c0 18 3 38 8 59l36 147c7 29 14 60 14 84c0 12 -2 23 -6 29l111 36h16c4 -10 8 -26 8 -45c0 -9 -1 -18 -4 -28l-48 -193c-4 -17 -7 -35 -7 -51c0 -41 17 -75 66 -75 c90 0 144 130 144 211c0 65 -37 86 -88 86'], + 0x1D7BF: [473,205,683,55,659,'262 81l25 102c35 143 75 290 239 290c65 0 133 -57 133 -167c0 -136 -94 -320 -302 -320l-48 -191h-120l48 191c-133 0 -182 75 -182 165c0 100 78 269 198 310l55 -58l-3 -12c-75 -35 -104 -119 -113 -158c-7 -27 -10 -50 -10 -69c0 -57 28 -83 80 -83zM412 212 l-32 -131c69 0 120 50 145 150c11 43 17 76 17 100c0 32 -11 47 -39 47c-47 0 -69 -76 -91 -166'], + 0x1D7C0: [473,205,575,-80,626,'626 462l-299 -341c-5 -25 -8 -51 -8 -76c0 -77 27 -147 111 -155l-4 -16l-68 -79c-111 0 -141 122 -141 209v4l-160 -203h-137l292 334c6 28 9 58 9 86c0 79 -28 148 -122 154l4 16l69 78c110 0 151 -99 151 -215v-4l165 208h138'], + 0x1D7C1: [473,205,703,75,751,'751 473l-45 -94c-32 -10 -61 -46 -87 -152c-33 -133 -108 -222 -266 -241l-48 -191h-120l48 191c-113 14 -158 69 -158 155c0 57 27 147 27 182c0 34 -10 50 -25 56v94c100 0 154 -58 154 -141c0 -55 -30 -152 -30 -184c0 -41 17 -58 56 -67l94 381h120l-94 -381 c71 18 94 53 129 195c28 112 125 197 245 197'], + 0x1D7C2: [461,14,756,64,732,'537 410l93 51c69 -21 102 -91 102 -169c0 -24 -3 -48 -9 -72c-40 -161 -144 -234 -245 -234c-57 0 -105 29 -115 83h-2c-36 -54 -99 -83 -156 -83c-86 0 -141 48 -141 145c0 119 86 293 223 330l71 -51l-4 -16c-122 -43 -165 -175 -165 -255c0 -35 11 -58 40 -58 c42 0 84 38 111 145l23 92l114 29l11 -10l-28 -111c-7 -29 -11 -53 -11 -73c0 -52 23 -72 53 -72c52 0 103 100 103 193c0 51 -19 98 -72 120'], + 0x1D7C3: [691,14,548,45,539,'227 608l51 83c194 -11 261 -118 261 -260c0 -190 -104 -445 -320 -445c-105 0 -174 69 -174 174c0 173 150 313 293 313c37 0 58 -9 82 -33l4 2c-12 108 -82 153 -184 154zM390 295c0 53 -25 83 -76 83c-83 0 -142 -112 -142 -208c0 -53 22 -89 71 -89 c115 0 147 173 147 214'], + 0x1D7C4: [473,14,468,45,470,'470 443l-31 -124h-16c-20 58 -66 59 -98 59c-41 0 -100 -26 -127 -88h149l-24 -95h-150c-1 -7 -2 -13 -2 -19c0 -53 34 -88 89 -88c43 0 83 13 123 57l50 -65c-79 -73 -123 -94 -218 -94c-105 0 -170 68 -170 168c0 188 165 319 302 319c42 0 94 -5 123 -30'], + 0x1D7C5: [692,14,579,54,579,'579 380l-23 -95c-13 0 -28 2 -42 5l-8 -31c-46 -178 -159 -273 -286 -273c-111 0 -166 48 -166 131c0 18 3 38 8 60c22 92 28 118 28 139c0 12 -2 22 -6 29l110 36h16c4 -9 8 -26 8 -45c0 -9 -1 -18 -29 -129c-4 -18 -7 -36 -7 -53c0 -40 16 -73 64 -73 c71 0 112 86 134 172c7 28 11 44 16 68c-90 32 -170 87 -170 185c0 124 92 186 173 186c87 0 140 -64 140 -200c0 -31 -2 -65 -8 -103c15 -4 32 -7 48 -9zM430 507c0 58 -20 90 -56 90c-22 0 -51 -23 -51 -62c0 -37 32 -88 98 -104c6 29 9 54 9 76'], + 0x1D7C6: [473,10,646,-10,665,'665 462l-184 -166c3 -145 12 -179 94 -211l-4 -16l-56 -79c-107 12 -122 134 -126 222l-234 -212h-165l182 166c-2 147 -11 180 -93 213l4 16l56 78c107 -13 121 -138 125 -225l235 214h166'], + 0x1D7C7: [692,205,678,48,654,'526 692l-55 -219c135 0 183 -70 183 -161c0 -157 -107 -326 -304 -326l-48 -191h-120l48 191c-131 0 -182 71 -182 163c0 155 100 324 303 324l55 219h120zM447 378l-74 -297c68 0 119 45 145 150c6 23 8 44 8 61c0 61 -32 86 -79 86zM255 81l74 297 c-60 0 -119 -42 -145 -147c-7 -27 -10 -50 -10 -69c0 -56 28 -81 81 -81'], + 0x1D7C8: [473,205,544,38,520,'232 -205h-17c-3 35 -70 28 -133 108c-31 40 -44 94 -44 152c0 191 115 418 316 418c103 0 166 -69 166 -172c0 -176 -146 -315 -291 -315c-37 0 -58 9 -82 33l-3 -2c11 -100 176 -72 176 -170c0 -8 -1 -18 -4 -28zM396 299c0 50 -22 79 -72 79 c-85 0 -142 -129 -142 -217c0 -50 22 -80 71 -80c115 0 143 181 143 218'], + 0x1D7C9: [462,14,889,40,912,'912 462l-23 -95h-92c7 -23 11 -49 11 -75c0 -80 -41 -176 -84 -225c-49 -56 -109 -81 -170 -81c-57 0 -101 27 -115 83h-2c-40 -56 -99 -83 -156 -83c-87 0 -141 49 -141 145c0 67 27 165 94 235c-62 -6 -93 -52 -118 -100l-76 38c58 102 115 158 208 158h664zM556 308 l-20 -81c-7 -30 -11 -54 -11 -74c0 -52 23 -72 53 -72c52 0 104 100 104 193c0 35 -10 68 -33 93h-273c-80 -56 -110 -156 -110 -223c0 -38 12 -63 39 -63c41 0 85 38 111 146l15 62l115 29'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/Italic/Main.js new file mode 100644 index 0000000..e21cbbb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/Italic/Main.js @@ -0,0 +1,147 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_SansSerif-italic'] = { + directory: 'SansSerif/Italic', + family: 'STIXMathJax_SansSerif', + style: 'italic', + id: 'STIXWEBSANSSERIFI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xE1B4: [676,14,500,86,578,'578 468c0 -199 -128 -482 -332 -482c-120 0 -160 90 -160 200c0 220 132 490 336 490c99 0 156 -81 156 -208zM497 458c0 91 -33 147 -95 147c-135 0 -236 -229 -236 -408c0 -78 25 -140 98 -140c139 0 233 244 233 401'], + 0xE1B5: [677,0,500,223,469,'469 672l-167 -672h-79l142 570c-42 -17 -89 -40 -130 -58l18 73l203 92'], + 0xE1B6: [676,0,500,35,574,'223 459l-68 17c51 119 158 200 262 200c101 0 157 -61 157 -140c0 -40 -16 -86 -36 -119c-24 -40 -63 -80 -134 -147l-210 -199h292l-46 -71h-405l5 21l301 281c61 57 106 96 129 137c14 24 21 52 21 78c0 57 -37 88 -99 88c-56 0 -130 -46 -169 -146'], + 0xE1B7: [676,14,500,44,544,'235 492l-67 17c54 101 138 167 243 167c80 0 133 -49 133 -119c0 -54 -35 -132 -128 -187c58 -23 81 -75 81 -124c0 -151 -162 -260 -296 -260c-62 0 -119 13 -157 70l61 56c26 -38 66 -55 109 -55c98 0 199 66 199 164c0 53 -40 91 -111 101h-64l5 21l60 50 c62 0 159 63 159 145c0 42 -31 67 -72 67c-49 0 -110 -34 -155 -113'], + 0xE1B8: [676,0,500,52,547,'547 236l-50 -71h-83l-41 -165h-79l41 165h-283l17 68l422 443h50l-110 -440h116zM352 236l69 274l-263 -274h194'], + 0xE1B9: [676,14,500,49,626,'626 676l-50 -71h-177l-95 -127c116 -17 206 -79 206 -191c0 -154 -148 -301 -304 -301c-62 0 -119 13 -157 70l61 56c26 -38 66 -55 109 -55c115 0 209 110 209 205c0 81 -69 145 -233 145l-10 17l179 252h262'], + 0xE1BA: [684,14,500,83,617,'617 684l-3 -16l-31 -53c-152 -11 -282 -85 -365 -227c49 30 98 43 148 43c92 0 165 -58 165 -155c0 -149 -138 -290 -278 -290c-123 0 -170 77 -170 177c0 135 88 310 200 399c118 93 189 108 334 122zM447 253c0 71 -49 107 -107 107c-65 0 -135 -38 -169 -120 c-5 -22 -8 -44 -8 -63c0 -72 38 -120 111 -120c83 0 173 87 173 196'], + 0xE1BB: [662,8,500,146,616,'616 662l-5 -20l-383 -650h-82l355 599h-316l49 71h382'], + 0xE1BC: [676,14,500,81,560,'560 553c0 -91 -58 -148 -161 -200c60 -43 94 -92 94 -151c0 -107 -102 -216 -249 -216c-98 0 -163 54 -163 130c0 81 49 152 182 229c-59 41 -80 83 -80 128c0 119 115 203 241 203c86 0 136 -57 136 -123zM486 536c0 42 -36 69 -92 69c-86 0 -130 -67 -130 -118 c0 -40 26 -64 83 -93c81 39 139 83 139 142zM347 286l-30 19c-92 -30 -152 -108 -152 -169c0 -44 31 -79 101 -79c67 0 146 50 146 134c0 35 -21 67 -65 95'], + 0xE1BD: [676,21,500,51,579,'54 -2l25 49c152 11 282 85 365 228c-49 -31 -99 -44 -148 -44c-92 0 -165 58 -165 155c0 149 138 290 279 290c122 0 169 -76 169 -175c0 -135 -87 -312 -199 -400c-117 -92 -187 -108 -329 -122zM499 483c0 73 -38 122 -110 122c-83 0 -174 -86 -174 -195 c0 -71 49 -108 107 -108c65 0 135 38 169 120c5 22 8 42 8 61'], + 0xE1BE: [683,10,536,45,527,'243 619l42 64c159 -24 242 -119 242 -267c0 -47 -8 -101 -23 -162c-34 -134 -148 -264 -289 -264c-108 0 -170 74 -170 172c0 148 131 301 281 301c48 0 86 -8 115 -38c-8 113 -72 163 -190 182zM425 282c0 70 -42 110 -112 110c-103 0 -186 -110 -186 -215 c0 -69 39 -116 107 -116c137 0 191 162 191 221'], + 0xE1BF: [674,0,660,28,632,'632 0h-96l-33 200h-249l-130 -200h-96l457 674h26zM492 274l-37 229l-151 -229h188'], + 0xE1C0: [662,0,662,60,627,'225 662h205c131 0 197 -38 197 -117c0 -74 -43 -142 -131 -179c64 -23 91 -66 91 -122c0 -136 -128 -244 -287 -244h-240zM245 394h90c126 0 200 41 200 131c0 44 -35 63 -112 63h-130zM165 74h126c134 0 207 73 207 156c0 72 -56 87 -193 87h-79'], + 0xE1C1: [662,0,562,60,665,'665 662l-10 -74h-362l-146 -588h-87l165 662h440'], + 0xE1C2: [674,0,660,28,632,'632 0h-604l457 674h26zM524 74l-69 429l-283 -429h352'], + 0xE1C3: [662,0,639,60,664,'664 662l-19 -74h-352l-50 -202h305l-19 -75h-305l-59 -237h379l-35 -74h-449l165 662h439'], + 0xE1C4: [662,0,698,25,760,'760 662l-6 -21l-569 -567h433l-26 -74h-567l6 25l566 563h-392l27 74h528'], + 0xE1C5: [662,0,700,60,735,'735 662l-165 -662h-87l75 301h-336l-75 -301h-87l165 662h87l-72 -287h336l72 287h87'], + 0xE1C6: [676,14,780,75,755,'594 369l-12 -74h-352l26 74h338zM755 430c0 -256 -218 -444 -426 -444c-155 0 -254 96 -254 246c0 258 218 444 426 444c155 0 254 -96 254 -246zM667 420c0 112 -67 180 -185 180c-147 0 -266 -104 -307 -269c-8 -32 -12 -62 -12 -89c0 -112 67 -180 185 -180 c147 0 266 104 307 269c8 32 12 62 12 89'], + 0xE1C7: [662,0,433,50,503,'503 662l-10 -74h-111l-128 -514h111l-27 -74h-288l4 74h111l128 514h-111l33 74h288'], + 0xE1C8: [662,0,631,60,715,'715 662l-5 -17l-378 -288l284 -357h-119l-241 302l-42 -33l-67 -269h-87l165 662h87l-72 -287l380 287h95'], + 0xE1C9: [674,0,664,20,624,'624 0h-96l-81 503l-331 -503h-96l457 674h26'], + 0xE1CA: [662,0,890,60,918,'918 662l-165 -662h-85l135 543l-386 -543h-21l-117 541l-134 -541h-85l165 662h123l104 -482l343 482h123'], + 0xE1CB: [662,14,724,60,752,'752 662l-169 -676l-65 14l-231 564l-140 -564h-87l165 662h121l198 -484l121 484h87'], + 0xE1CC: [662,0,722,47,754,'754 662l-11 -74h-533l27 74h517zM609 385l-18 -74h-367l18 74h367zM645 87l-31 -87h-567l11 87h587'], + 0xE1CD: [676,14,780,75,755,'755 430c0 -256 -218 -444 -426 -444c-155 0 -254 96 -254 246c0 258 218 444 426 444c155 0 254 -96 254 -246zM665 421c0 112 -65 179 -183 179c-147 0 -264 -104 -305 -269c-8 -33 -12 -62 -12 -90c0 -112 65 -179 183 -179c147 0 264 104 305 269c8 33 12 62 12 90'], + 0xE1CE: [662,0,700,60,735,'735 662l-165 -662h-87l146 588h-336l-146 -588h-87l165 662h510'], + 0xE1CF: [662,0,538,60,624,'225 662h184c147 0 215 -47 215 -133c0 -134 -119 -244 -286 -244h-120l-71 -285h-87zM236 359h88c146 0 209 63 209 149c0 52 -46 80 -157 80h-83'], + 0xE1D0: [676,14,780,75,755,'755 430c0 -256 -218 -444 -426 -444c-155 0 -254 96 -254 246c0 258 218 444 426 444c155 0 254 -96 254 -246zM186 369h477c3 18 4 35 4 51c0 112 -67 180 -185 180c-136 0 -247 -88 -296 -231zM644 295h-477c-3 -19 -4 -37 -4 -53c0 -112 67 -180 185 -180 c136 0 248 89 296 233'], + 0xE1D1: [662,0,654,21,706,'706 662l-19 -74h-368l165 -245l-299 -269h421l-29 -74h-556l4 23l355 319l-201 298l6 22h521'], + 0xE1D2: [662,0,585,72,659,'659 662l-9 -74h-245l-147 -588h-87l146 588h-245l29 74h558'], + 0xE1D3: [676,0,593,83,725,'725 666l-40 -73c-10 5 -26 7 -37 7c-25 0 -119 -16 -295 -313l-72 -287h-87l71 287c-28 297 -114 313 -139 313c-10 0 -26 -2 -43 -7v73c22 7 47 10 65 10c51 0 162 -29 186 -289c154 260 279 289 330 289c18 0 41 -3 61 -10'], + 0xE1D4: [662,0,736,52,736,'496 562h3c127 0 237 -59 237 -176c0 -188 -197 -284 -352 -284h-3l-26 -102h-87l25 102h-3c-127 0 -238 59 -238 177c0 187 199 283 353 283h3l26 100h87zM477 487l-78 -311c180 1 248 111 248 194c0 61 -43 116 -170 117zM311 176l78 311c-177 0 -248 -110 -248 -192 c0 -62 43 -118 170 -119'], + 0xE1D5: [662,0,722,20,795,'795 662l-317 -313l180 -349h-105l-145 283l-283 -283h-105l352 349l-162 313h106l125 -248l247 248h107'], + 0xE1D6: [681,0,712,105,805,'805 681l-41 -76c-53 -10 -69 -73 -81 -121c-32 -131 -172 -195 -282 -197l-72 -287h-87l71 287c-96 1 -190 49 -190 150c0 40 18 81 18 119c0 24 -7 44 -33 49l-3 76h13c62 0 112 -22 112 -106c0 -30 -17 -81 -17 -118c0 -58 44 -94 119 -96l76 301h87l-75 -301 c89 2 158 52 178 131c38 153 115 189 194 189h13'], + 0xE1D7: [676,0,795,39,795,'258 87l6 33c-71 32 -125 91 -125 188c0 161 153 368 401 368c168 0 255 -100 255 -222c0 -182 -145 -293 -256 -334l-10 -33h207l-31 -87h-281l50 175c98 23 234 113 234 272c0 100 -78 153 -187 153c-155 0 -292 -127 -292 -267c0 -87 58 -137 126 -158l-34 -175h-282 l11 87h208'], + 0xE1D8: [463,10,586,47,616,'616 453l-160 -230c1 -46 0 -92 10 -134c4 -19 14 -28 45 -28l-4 -15l-40 -56c-78 0 -91 47 -95 103c-61 -81 -123 -103 -187 -103c-85 0 -138 63 -138 160c0 152 119 313 257 313c95 0 133 -50 146 -123l80 113h86zM376 268c0 82 -43 124 -93 124 c-58 0 -156 -79 -156 -226c0 -67 34 -105 79 -105c52 0 119 49 166 163c3 16 4 30 4 44'], + 0xE1D9: [683,215,535,-12,559,'27 -131l133 533c16 64 39 128 74 177c45 61 110 104 194 104c69 0 131 -48 131 -120c0 -68 -39 -129 -102 -165c45 -16 75 -68 75 -127c0 -176 -150 -285 -282 -285c-37 0 -79 11 -106 36l-37 -148c-9 -36 -29 -74 -38 -89h-81c17 25 32 57 39 84zM293 375l55 54 c79 4 130 61 130 118c0 40 -28 65 -73 65c-93 0 -140 -101 -159 -179l-78 -315c14 -36 59 -61 107 -61c90 0 175 94 175 200c0 87 -87 101 -161 101'], + 0xE1DA: [463,216,503,84,527,'527 453l-289 -424l-60 -240l-10 -5l-64 24c20 69 46 162 64 237c15 63 18 137 18 195c0 48 -23 152 -102 152l3 11l55 60c92 0 125 -98 125 -198c0 -26 -2 -51 -6 -76l180 264h86'], + 0xE1DB: [683,10,497,30,537,'537 613l-53 -56h-15c-17 30 -54 55 -122 55c-32 0 -98 -17 -98 -62c0 -65 239 -101 239 -280c0 -102 -95 -280 -286 -280c-109 0 -172 68 -172 162c0 131 92 239 224 277c-43 21 -86 50 -86 101c0 105 114 153 207 153c66 0 132 -18 162 -70zM409 267 c0 53 -26 87 -81 111c-115 -1 -217 -91 -217 -206c0 -61 40 -111 110 -111c126 0 188 117 188 206'], + 0xE1DC: [463,10,494,35,484,'484 366l-60 -54h-15c-9 59 -50 80 -92 80c-89 0 -126 -41 -126 -75c0 -24 21 -47 89 -47h60l-18 -71h-60c-44 0 -145 -11 -145 -83c0 -38 41 -55 89 -55c64 0 116 16 172 91l56 -32c-81 -101 -152 -130 -238 -130c-136 0 -161 57 -161 101c0 65 51 117 112 146 c-24 15 -37 39 -37 68c0 77 88 158 229 158c70 0 129 -33 145 -97'], + 0xE1DD: [683,213,429,32,454,'454 657l-4 -73c-151 -74 -334 -260 -334 -445c0 -60 35 -70 67 -70h62c55 0 119 -12 119 -79c0 -112 -116 -203 -196 -203c-26 0 -53 4 -69 21l18 72h17c21 -19 38 -21 53 -21c35 0 93 46 93 101c0 26 -29 30 -57 30h-78c-53 0 -113 26 -113 122c0 74 33 162 67 226 c30 55 69 108 121 167c-23 15 -45 41 -45 80c0 37 12 65 41 98h11l48 -17c-18 -26 -25 -36 -25 -60c0 -26 17 -42 36 -44c39 31 98 73 152 95h16'], + 0xE1DE: [463,215,493,38,486,'193 463h10c7 -14 10 -27 10 -46c0 -2 0 -7 -1 -16c64 50 114 62 168 62c60 0 106 -33 106 -88c0 -16 -2 -35 -7 -54l-112 -448c-5 -21 -8 -40 -8 -56c0 -12 2 -23 5 -32h-82c-2 7 -4 15 -4 26c0 13 3 33 10 63l107 430c3 13 5 25 5 35c0 38 -25 53 -65 53 c-33 0 -107 -31 -143 -90l-75 -302h-79l80 323c6 24 12 50 12 71c0 13 -3 25 -8 32'], + 0xE1DF: [683,10,518,65,511,'511 490c0 -217 -133 -500 -305 -500c-101 0 -141 83 -141 194c0 157 112 499 314 499c96 0 132 -88 132 -193zM173 373h246c8 38 13 77 13 112c0 71 -20 127 -72 127c-79 0 -151 -123 -187 -239zM402 302h-246c-8 -39 -12 -76 -12 -109c0 -77 23 -132 79 -132 c78 0 141 111 179 241'], + 0xE1E0: [464,10,296,56,268,'268 87l-32 -75c-30 -19 -60 -22 -93 -22c-56 0 -87 31 -87 80c0 11 1 22 4 34l84 336l79 24l8 -5l-80 -322c-4 -16 -6 -29 -6 -39c0 -29 15 -37 39 -37c19 0 34 5 66 26h18'], + 0xE1E1: [464,0,472,38,517,'517 403l-3 -11c-128 -7 -223 -85 -285 -151l199 -241h-104l-162 184l-45 -184h-79l109 440l76 24l8 -5l-42 -167c69 72 200 160 308 171'], + 0xE1E2: [683,11,536,18,502,'502 60l-3 -15l-42 -56c-60 0 -108 59 -114 152l-12 185l-227 -326h-86l305 434c0 15 -1 28 -2 43c-3 61 -21 134 -94 135l4 16l43 55c30 0 61 -15 84 -43c22 -26 38 -67 41 -109l22 -335c4 -65 9 -135 81 -136'], + 0xE1E3: [453,215,561,-9,536,'536 453l-81 -325c-3 -11 -5 -22 -5 -31c0 -21 11 -36 47 -36l-4 -14l-37 -57c-36 0 -67 8 -81 31c-7 11 -9 24 -9 43l-150 -74c-33 0 -61 7 -75 25l-35 -141c-9 -36 -27 -73 -38 -89h-77c16 25 32 57 40 88l144 580h79l-75 -304c-3 -13 -5 -25 -5 -35 c0 -38 25 -53 65 -53c33 0 110 41 146 100l72 292h79'], + 0xE1E4: [464,14,376,41,416,'327 444l76 20c4 -15 13 -48 13 -81c0 -46 -15 -86 -41 -132c-32 -57 -95 -132 -232 -265h-20l-82 467h86l57 -332c41 39 74 73 99 107c25 35 46 76 46 120c0 27 -6 57 -12 83'], + 0xE1E5: [683,215,434,43,464,'464 606l-30 -75c-87 -1 -176 -28 -176 -93c0 -14 6 -26 16 -34c54 19 113 26 165 29l10 -7l-43 -72c-79 0 -165 -25 -221 -81c-32 -32 -57 -80 -57 -129c0 -42 21 -75 65 -75h58c54 0 127 -11 127 -81c0 -108 -114 -203 -195 -203c-26 0 -53 4 -70 21l18 72h17 c21 -19 39 -21 54 -21c35 0 92 48 92 100c0 28 -37 33 -66 33h-66c-72 0 -119 49 -119 123s41 145 93 200c21 22 43 41 65 55c-16 17 -24 33 -24 55c0 40 12 66 50 103c-20 15 -32 37 -32 63c0 34 18 70 45 94h12l47 -17c-20 -24 -28 -35 -28 -56c0 -19 12 -32 24 -40 c50 21 89 32 157 40'], + 0xE1E6: [463,10,533,45,505,'505 300c0 -129 -110 -310 -291 -310c-107 0 -169 70 -169 170c0 149 126 303 284 303c109 0 176 -60 176 -163zM424 282c0 70 -42 110 -112 110c-103 0 -186 -110 -186 -215c0 -69 39 -116 107 -116c137 0 191 162 191 221'], + 0xE1E7: [453,10,565,45,589,'589 453l-17 -71h-102c-20 -53 -43 -149 -58 -206c-7 -29 -11 -50 -11 -66c0 -48 31 -49 90 -49l-5 -17l-52 -54c-64 1 -118 18 -118 92c0 15 2 33 7 53c14 57 60 221 69 247h-86c-55 -221 -122 -392 -247 -392l-14 71c73 4 117 63 182 321c-27 -2 -62 -22 -92 -79 l-54 34c56 99 113 116 203 116h305'], + 0xE1E8: [462,216,534,-33,510,'6 -131l62 249c25 102 49 185 108 254c65 76 133 90 184 90c88 0 150 -66 150 -160c0 -162 -155 -313 -288 -313c-35 0 -69 11 -98 36l-38 -152c-9 -37 -22 -67 -39 -89h-80c17 25 32 57 39 85zM426 281c0 68 -40 110 -98 110c-29 0 -60 -11 -94 -51 c-35 -40 -54 -88 -86 -218c16 -43 47 -62 87 -62c104 0 191 110 191 221'], + 0xE1E9: [463,212,436,52,500,'500 404l-57 -52h-16c-13 35 -41 40 -72 40c-100 0 -219 -141 -219 -256c0 -40 20 -66 67 -66h67c54 0 119 -12 119 -80c0 -110 -115 -202 -196 -202c-25 0 -49 4 -70 21l18 72h18c12 -14 29 -21 46 -21c35 0 100 43 100 100c0 27 -30 31 -58 31h-76 c-78 0 -119 50 -119 118c0 81 49 173 96 230c62 76 147 124 236 124c48 0 91 -9 116 -59'], + 0xE1EA: [453,10,607,45,625,'625 453l-17 -71h-173c42 -37 57 -81 57 -126c0 -105 -97 -266 -276 -266c-107 0 -171 67 -171 166c0 77 40 163 88 211c62 62 143 86 197 86h295zM411 237c0 75 -59 123 -105 145c-104 0 -178 -102 -178 -205c0 -69 39 -116 107 -116c112 0 176 99 176 176'], + 0xE1EB: [453,10,468,42,486,'486 453l-17 -71h-151c-18 -47 -43 -149 -58 -206c-8 -32 -12 -55 -12 -72c0 -42 26 -43 83 -43l-5 -17l-37 -54c-65 1 -126 8 -126 87c0 16 2 35 8 58c14 57 60 221 69 247h-26c-27 0 -74 -11 -115 -101l-57 24c59 124 125 148 215 148h229'], + 0xE1EC: [463,10,514,61,490,'303 392l18 71c95 0 169 -54 169 -163c0 -159 -139 -310 -287 -310c-107 0 -142 51 -142 123c0 27 4 56 12 87l31 122c6 23 11 49 11 70c0 14 -2 25 -8 33l72 38h11c6 -13 13 -30 13 -50c0 -4 -1 -14 -3 -21l-52 -210c-4 -16 -6 -30 -6 -43c0 -50 29 -78 81 -78 c107 0 184 118 184 224c0 67 -36 103 -104 107'], + 0xE1ED: [464,216,665,55,641,'265 60l39 152c18 71 44 142 84 186c26 29 71 65 127 65c65 0 126 -47 126 -151c0 -152 -111 -321 -314 -323l-45 -181l-77 -24l-8 5l50 200c-136 2 -192 79 -192 172c0 119 104 270 212 303l16 -54l-4 -16c-98 -42 -143 -148 -143 -218c0 -69 40 -115 129 -116zM382 214 l-39 -154c133 2 216 110 216 230c0 61 -32 94 -78 94c-47 0 -77 -83 -99 -170'], + 0xE1EE: [463,215,514,-72,552,'552 453l-268 -329c-6 -39 -11 -82 -11 -116c0 -46 23 -151 101 -151l-4 -14l-64 -58c-86 0 -106 91 -106 180c0 19 1 39 2 57c-61 -76 -130 -155 -188 -231h-86l270 334c7 37 12 80 12 115c0 49 -25 152 -100 152l3 13l65 58c85 0 105 -92 105 -181c0 -19 -1 -38 -2 -56 l184 227h87'], + 0xE1EF: [461,216,654,75,705,'705 461l-50 -70c-37 -11 -62 -44 -91 -161c-32 -126 -82 -225 -249 -240l-45 -182l-77 -24l-8 5l50 201c-113 11 -148 63 -148 138c0 31 6 65 15 102c12 47 17 80 17 104c0 34 -11 49 -29 57l-15 70c92 0 127 -46 127 -114c0 -22 -3 -45 -10 -71 c-12 -50 -20 -90 -20 -122c0 -55 23 -85 81 -92l90 362l81 30l5 -7l-96 -385c98 12 130 79 163 214c26 105 88 185 209 185'], + 0xE1F0: [454,10,630,50,636,'500 400l44 54c60 -21 92 -92 92 -169c0 -22 -3 -45 -8 -67c-39 -158 -139 -228 -222 -228c-49 0 -86 32 -97 87c-37 -55 -90 -87 -139 -87c-67 0 -120 40 -120 138c0 115 83 287 214 326l16 -54l-3 -14c-113 -49 -147 -179 -147 -244c0 -61 30 -81 58 -81 c34 0 89 43 119 162l26 102l78 30l5 -7l-31 -125c-8 -32 -11 -58 -11 -80c0 -59 25 -82 50 -82c37 0 94 35 124 152c5 19 8 39 8 59c0 46 -16 90 -59 114'], + 0xE1F1: [463,10,462,45,467,'467 417l-24 -100h-18c-23 51 -58 75 -106 75c-60 0 -124 -35 -162 -111h188l-18 -71h-195c-3 -14 -4 -28 -4 -40c0 -70 43 -109 103 -109c45 0 102 30 155 105l56 -34c-71 -105 -159 -142 -235 -142c-96 0 -162 57 -162 160c0 181 156 313 290 313c49 0 103 -10 132 -46 '], + 0xE1F2: [683,12,534,45,525,'525 363l-17 -70c-14 1 -28 2 -43 5c-4 -22 -8 -49 -14 -71c-29 -114 -122 -239 -255 -239c-111 0 -151 56 -151 132c0 24 4 50 11 78l10 40c6 24 12 51 12 73c0 13 -2 24 -7 31l70 37h11c7 -12 13 -30 13 -49c0 -7 -1 -15 -3 -22l-32 -128c-3 -13 -5 -26 -5 -37 c0 -54 36 -84 90 -84c127 0 167 179 171 261c-134 32 -234 102 -234 194c0 100 87 169 168 169c90 0 154 -74 154 -240c0 -21 -1 -43 -3 -67c16 -5 37 -9 54 -13zM387 407l1 2c0 154 -25 203 -82 203c-35 0 -75 -32 -75 -80c0 -57 68 -99 156 -125'], + 0xE1F3: [684,216,648,48,630,'492 677l-54 -216c136 -2 192 -80 192 -173c0 -136 -113 -298 -309 -300l-45 -180l-77 -24l-8 5l50 199c-136 2 -193 80 -193 173c0 137 116 298 310 300l49 194l80 29zM420 390l-83 -331c124 1 213 99 213 211c0 69 -47 117 -130 120zM259 59l83 331 c-130 0 -213 -101 -213 -216c0 -67 39 -114 130 -115'], + 0xE1F4: [463,216,536,38,518,'209 -211l3 14c1 3 1 5 1 8c0 50 -175 72 -175 226c0 140 90 426 311 426c106 0 169 -58 169 -159c0 -84 -76 -314 -284 -314c-48 0 -86 8 -116 38c28 -112 180 -95 180 -187c0 -7 -2 -17 -3 -22l-2 -11l-76 -24zM435 286c0 66 -36 106 -103 106 c-94 0 -190 -103 -190 -228c0 -68 43 -103 111 -103c137 0 182 171 182 225'], + 0xE1F5: [453,10,795,40,811,'811 453l-17 -71h-96c14 -28 19 -59 19 -91c0 -24 -3 -49 -9 -73c-40 -160 -138 -228 -222 -228c-48 0 -86 32 -96 87c-37 -55 -91 -87 -139 -87c-66 0 -120 37 -120 138c0 72 29 172 104 254h-22c-27 0 -74 -21 -117 -111l-56 24c60 123 127 158 218 158h553zM491 325 l-26 -102c-8 -31 -11 -58 -11 -79c0 -60 26 -83 50 -83c37 0 95 35 124 152c5 18 7 37 7 57c0 45 -14 90 -51 112h-235c-110 -50 -139 -191 -139 -241c0 -60 30 -80 59 -80c34 0 89 43 119 162l20 80l77 29'], + 0x1D608: [674,0,666,31,635,'635 0h-96l-33 200h-249l-130 -200h-96l457 674h26zM495 274l-37 229l-151 -229h188'], + 0x1D609: [662,0,604,74,641,'239 662h205c131 0 197 -38 197 -117c0 -74 -43 -142 -131 -179c64 -23 91 -66 91 -122c0 -136 -128 -244 -287 -244h-240zM259 394h90c126 0 200 41 200 131c0 44 -35 63 -112 63h-130zM179 74h126c134 0 207 73 207 156c0 72 -56 87 -193 87h-79'], + 0x1D60A: [676,14,671,96,755,'755 554l-26 -101h-19c-18 117 -114 147 -197 147c-179 0 -326 -166 -326 -353c0 -114 68 -185 195 -185c88 0 163 35 246 108l38 -51c-87 -85 -195 -133 -306 -133c-174 0 -264 97 -264 242c0 243 201 448 435 448c89 0 187 -31 224 -122'], + 0x1D60B: [662,0,692,74,751,'239 662h166c239 0 346 -84 346 -233c0 -202 -163 -429 -462 -429h-215zM179 74h49c116 0 178 5 254 40c106 49 177 166 177 295c0 125 -106 179 -292 179h-60'], + 0x1D60C: [662,0,583,74,678,'678 662l-19 -74h-352l-50 -202h305l-19 -75h-305l-59 -237h379l-35 -74h-449l165 662h439'], + 0x1D60D: [662,0,535,74,679,'679 662l-10 -74h-362l-50 -202h296l-19 -75h-296l-77 -311h-87l165 662h440'], + 0x1D60E: [676,14,695,97,755,'755 565l-25 -103h-19c-25 107 -101 138 -189 138c-195 0 -332 -173 -332 -338c0 -108 63 -200 204 -200c121 0 169 33 176 61l40 158h-89v76h195l-75 -298c-65 -37 -124 -73 -270 -73c-175 0 -274 100 -274 248c0 236 209 442 444 442c87 0 177 -27 214 -111'], + 0x1D60F: [662,0,658,74,749,'749 662l-165 -662h-87l75 301h-336l-75 -301h-87l165 662h87l-72 -287h336l72 287h87'], + 0x1D610: [662,0,401,59,512,'512 662l-10 -74h-111l-128 -514h111l-27 -74h-288l4 74h111l128 514h-111l33 74h288'], + 0x1D611: [662,14,398,22,470,'470 662l-113 -450c-32 -126 -87 -226 -218 -226c-44 0 -84 11 -117 56l38 76h17c18 -29 51 -56 84 -56c71 0 92 82 108 144l114 456h87'], + 0x1D612: [662,0,634,74,729,'729 662l-5 -17l-378 -288l284 -357h-119l-241 302l-42 -33l-67 -269h-87l165 662h87l-72 -287l380 287h95'], + 0x1D613: [662,0,559,74,564,'564 74l-36 -74h-454l165 662h87l-147 -588h385'], + 0x1D614: [662,0,843,75,933,'933 662l-165 -662h-85l135 543l-386 -543h-21l-117 541l-134 -541h-85l165 662h123l104 -482l343 482h123'], + 0x1D615: [662,14,675,74,766,'766 662l-169 -676l-65 14l-231 564l-140 -564h-87l165 662h121l198 -484l121 484h87'], + 0x1D616: [676,14,714,99,779,'779 430c0 -256 -218 -444 -426 -444c-155 0 -254 96 -254 246c0 258 218 444 426 444c155 0 254 -96 254 -246zM689 421c0 112 -65 179 -183 179c-147 0 -264 -104 -305 -269c-8 -33 -12 -62 -12 -90c0 -112 65 -179 183 -179c147 0 264 104 305 269c8 33 12 62 12 90'], + 0x1D617: [662,0,525,74,638,'239 662h184c147 0 215 -47 215 -133c0 -134 -119 -244 -286 -244h-120l-71 -285h-87zM250 359h88c146 0 209 63 209 149c0 52 -46 80 -157 80h-83'], + 0x1D618: [676,175,716,99,779,'651 -157l-4 -18c-157 0 -300 0 -355 167c-119 23 -193 112 -193 241c0 257 218 443 426 443c155 0 254 -96 254 -246c0 -235 -188 -414 -378 -440c32 -86 111 -90 185 -91zM689 421c0 112 -65 179 -183 179c-147 0 -264 -104 -305 -269c-8 -33 -12 -62 -12 -90 c0 -112 65 -179 183 -179c147 0 264 104 305 269c8 33 12 62 12 90'], + 0x1D619: [662,0,589,74,639,'239 662h185c144 0 215 -46 215 -130c0 -119 -100 -210 -229 -229l171 -303h-103l-173 299h-70l-74 -299h-87zM253 373h89c131 0 207 44 207 141c0 52 -48 74 -159 74h-83'], + 0x1D61A: [676,14,541,62,597,'597 596l-30 -119h-19c-12 83 -73 123 -147 123c-68 0 -132 -56 -132 -112c0 -52 61 -87 112 -110c105 -47 148 -92 148 -159c0 -144 -135 -233 -275 -233c-85 0 -158 23 -192 84l21 135h18c20 -105 101 -143 168 -143c100 0 166 54 166 124c0 45 -32 75 -99 105 c-106 48 -157 95 -157 165c0 130 122 220 246 220c88 0 145 -35 172 -80'], + 0x1D61B: [662,0,608,161,748,'748 662l-9 -74h-245l-147 -588h-87l146 588h-245l29 74h558'], + 0x1D61C: [662,14,661,117,757,'757 662l-105 -419c-42 -168 -154 -257 -326 -257c-139 0 -209 57 -209 168c0 27 4 56 12 89l105 419h87l-102 -406c-10 -39 -14 -63 -14 -83c0 -69 52 -111 140 -111c74 0 140 31 178 79c23 29 34 68 49 128l98 393h87'], + 0x1D61D: [662,11,654,196,788,'788 662l-451 -673h-26l-115 673h95l77 -498l324 498h96'], + 0x1D61E: [662,11,921,194,1057,'1057 662l-396 -673h-28l-67 446l-284 -446h-28l-60 673h95l34 -476v2l301 474l65 -476v2l273 474h95'], + 0x1D61F: [662,0,700,31,806,'806 662l-317 -313l180 -349h-105l-145 283l-283 -283h-105l352 349l-162 313h106l125 -248l247 248h107'], + 0x1D620: [662,0,630,186,774,'774 662l-344 -374l-72 -288h-87l71 288l-156 374h95l124 -300l274 300h95'], + 0x1D621: [662,0,637,28,763,'763 662l-6 -21l-569 -567h433l-26 -74h-567l6 25l566 563h-392l27 74h528'], + 0x1D622: [463,10,448,55,467,'169 302l-41 31c43 97 128 130 206 130c83 0 133 -36 133 -101c0 -11 -2 -23 -5 -36l-63 -250c-6 -22 -8 -48 -8 -76h-85l5 44c-52 -39 -112 -54 -162 -54c-57 0 -94 25 -94 76c0 112 102 187 320 228l8 33c1 5 2 10 2 15c0 31 -28 50 -71 50c-63 0 -101 -42 -130 -90 h-15zM334 132l23 90c-144 -23 -218 -65 -218 -126c0 -22 15 -35 48 -35c38 0 90 20 147 71'], + 0x1D623: [684,10,496,74,535,'311 679l-66 -265c44 32 95 49 140 49c94 0 150 -58 150 -150c0 -177 -153 -323 -310 -323c-58 0 -116 15 -151 57l153 613l76 24zM217 302l-52 -208c20 -21 50 -33 83 -33c85 0 204 82 204 227c0 63 -34 104 -100 104c-46 0 -99 -31 -135 -90'], + 0x1D624: [463,10,456,67,503,'503 371l-57 -54h-16c-11 59 -53 75 -95 75c-74 0 -185 -77 -185 -223c0 -69 43 -108 103 -108c45 0 102 30 155 105l56 -34c-71 -105 -159 -142 -235 -142c-96 0 -162 57 -162 160c0 181 156 313 290 313c70 0 129 -28 146 -92'], + 0x1D625: [684,11,494,72,600,'600 679l-138 -551c-8 -33 -18 -82 -22 -115l-78 -24l-8 5l10 50c-46 -36 -104 -54 -150 -54c-86 0 -142 55 -142 154c0 171 154 319 288 319c34 0 68 -11 98 -37l58 234l76 24zM391 158l43 171c-17 40 -50 63 -88 63c-79 0 -191 -92 -191 -224c0 -73 40 -107 97 -107 c46 0 102 38 139 97'], + 0x1D626: [463,10,444,69,487,'403 167l57 -35c-73 -98 -135 -142 -233 -142c-95 0 -158 56 -158 158c0 202 159 315 284 315c87 0 134 -51 134 -129c0 -18 -2 -37 -7 -57l-14 -55h-309c-5 -20 -7 -38 -7 -54c0 -70 43 -107 103 -107c53 0 103 36 150 106zM188 293h215c3 12 4 23 4 33 c0 56 -42 66 -80 66c-47 0 -109 -28 -139 -99'], + 0x1D627: [683,0,336,101,526,'526 633l-38 -59l-17 -1c-27 25 -43 39 -70 39c-38 0 -76 -29 -95 -103l-14 -56h114l-17 -71h-114l-95 -382h-79l95 382h-81l17 71h81l11 41c19 70 46 117 84 149c30 24 70 40 104 40c47 0 80 -13 114 -50'], + 0x1D628: [463,216,496,-7,575,'575 436l-16 -67h-78c2 -10 4 -20 4 -30c0 -115 -109 -201 -213 -201c-21 0 -38 2 -59 8c-35 -18 -54 -36 -54 -55c0 -13 10 -26 40 -27c145 -5 248 -7 248 -95c0 -137 -178 -185 -308 -185c-86 0 -146 28 -146 88c0 55 38 108 100 138c-17 13 -23 29 -23 45 c0 40 28 70 89 123c-17 20 -28 45 -28 78c0 106 106 207 226 207c59 0 88 -27 150 -27h68zM404 329c0 41 -25 63 -71 63c-67 0 -121 -61 -121 -117c0 -40 29 -66 79 -66c67 0 113 60 113 120zM197 -15h-20c-60 -17 -101 -47 -101 -83c0 -32 36 -47 89 -47 c93 0 198 23 198 93c0 37 -113 37 -166 37'], + 0x1D629: [684,0,487,63,510,'311 679l-69 -274c63 50 109 58 163 58c64 0 105 -34 105 -97c0 -14 -2 -29 -6 -45l-80 -321h-79l75 304c3 13 5 24 5 34c0 38 -24 54 -65 54c-33 0 -107 -31 -143 -90l-75 -302h-79l164 660l76 24'], + 0x1D62A: [679,0,220,69,325,'325 679l-23 -93h-92l23 93h92zM266 459l-114 -459h-83l109 440l80 24'], + 0x1D62B: [679,216,254,-118,354,'354 679l-23 -93h-93l23 93h93zM294 459l-121 -485c-32 -127 -103 -190 -191 -190c-32 0 -67 12 -100 36l43 64h16c22 -17 36 -28 58 -28c37 0 70 30 88 102l120 481l79 25'], + 0x1D62C: [684,0,453,63,556,'556 453l-3 -14l-292 -184l191 -255h-103l-156 207l-51 -207h-79l164 660l76 24l8 -5l-94 -376l235 150h104'], + 0x1D62D: [684,0,205,61,313,'313 679l-169 -679h-83l164 660l80 24'], + 0x1D62E: [464,0,756,65,775,'253 459l-14 -57c43 41 102 61 154 61c53 0 97 -22 115 -65c49 43 109 65 158 65c62 0 109 -33 109 -102c0 -14 -2 -29 -6 -46l-78 -315h-77l73 293c4 16 6 30 6 42c0 40 -22 57 -61 57c-29 0 -106 -32 -140 -90l-75 -302h-77l71 290c4 18 7 32 7 45c0 39 -21 57 -59 57 c-28 0 -107 -31 -142 -90l-75 -302h-77l109 440l71 24'], + 0x1D62F: [464,0,487,63,510,'251 459l-12 -57c64 51 111 61 166 61c64 0 105 -39 105 -91c0 -15 -2 -33 -6 -51l-80 -321h-79l75 304c3 13 5 25 5 35c0 38 -25 53 -65 53c-33 0 -107 -31 -143 -90l-75 -302h-79l109 440l71 24'], + 0x1D630: [463,10,499,76,536,'536 300c0 -129 -110 -310 -291 -310c-107 0 -169 70 -169 170c0 149 126 303 284 303c109 0 176 -60 176 -163zM455 282c0 70 -42 110 -112 110c-103 0 -186 -110 -186 -215c0 -69 39 -116 107 -116c137 0 191 162 191 221'], + 0x1D631: [464,216,498,14,538,'256 459l-11 -50c46 36 105 54 151 54c85 0 142 -57 142 -156c0 -170 -156 -317 -288 -317c-34 0 -69 11 -98 36l-54 -218l-76 -24l-8 5l162 651l73 24zM219 295l-43 -172c16 -43 49 -62 88 -62c102 0 191 106 191 223c0 62 -32 108 -97 108c-46 0 -102 -38 -139 -97'], + 0x1D632: [464,216,498,72,549,'549 458l-167 -669l-10 -5l-64 24l58 234c-45 -35 -102 -52 -148 -52c-86 0 -146 57 -146 157c0 169 156 316 288 316c36 0 76 -9 105 -35l74 36zM395 158l43 171c-17 41 -54 63 -92 63c-79 0 -191 -92 -191 -224c0 -62 32 -107 97 -107c46 0 106 38 143 97'], + 0x1D633: [464,0,336,63,439,'439 447l-18 -70h-20c-4 11 -28 15 -35 15c-57 0 -120 -60 -166 -158l-58 -234h-79l109 440l76 24l8 -5l-14 -64c47 50 104 68 144 68c16 0 38 -1 53 -16'], + 0x1D634: [463,10,389,61,432,'432 410l-22 -89h-15c-25 63 -61 72 -106 72c-59 0 -78 -44 -78 -63c0 -29 29 -47 67 -65c77 -37 107 -62 107 -107c0 -88 -80 -168 -199 -168c-64 0 -93 19 -125 55l25 103h15c13 -64 55 -87 109 -87c40 0 92 21 92 67c0 21 -22 37 -70 61c-73 36 -104 68 -104 114 c0 80 75 160 181 160c63 0 101 -21 123 -53'], + 0x1D635: [580,10,291,96,376,'376 453l-17 -71h-104l-61 -245c-4 -16 -6 -29 -6 -39c0 -29 15 -37 38 -37c20 0 40 3 70 26h12l-30 -75c-29 -19 -60 -22 -93 -22c-56 0 -84 30 -84 77c0 11 2 24 5 37l70 278h-80l4 17l58 54h35l16 64l77 63h18l-32 -127h104'], + 0x1D636: [453,11,491,89,536,'536 453l-81 -325c-8 -33 -18 -82 -22 -115l-77 -24l-8 5l14 65c-50 -43 -117 -69 -168 -69c-64 0 -105 38 -105 91c0 15 2 33 6 50l80 322h79l-75 -304c-4 -15 -5 -24 -5 -35c0 -38 25 -53 65 -53c33 0 110 41 146 100l72 292h79'], + 0x1D637: [453,14,474,143,555,'555 453l-311 -467h-22l-79 467h85l48 -299l194 299h85'], + 0x1D638: [453,14,702,140,787,'787 453l-312 -467h-22l-37 244l-183 -244h-21l-72 467h84l47 -304l129 176c-5 42 -13 87 -19 128h84l48 -294l189 294h85'], + 0x1D639: [453,0,482,30,544,'544 453l-200 -217l108 -236h-94l-79 175l-155 -175h-94l220 239l-96 214h94l68 -151l134 151h94'], + 0x1D63A: [453,216,484,-19,565,'565 453l-301 -497c-67 -111 -125 -172 -215 -172c-26 0 -53 6 -68 24l18 72h16c22 -20 39 -24 54 -24c45 0 98 64 140 138c5 10 14 22 19 33c-24 138 -56 289 -82 426h86l59 -323l189 323h85'], + 0x1D63B: [453,0,447,25,517,'517 453l-5 -20l-342 -362h264l-27 -71h-382l4 20l342 362h-227l29 71h344'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/Regular/Main.js new file mode 100644 index 0000000..b051a5a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/SansSerif/Regular/Main.js @@ -0,0 +1,146 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'STIXMathJax_SansSerif', + id: 'STIXWEBSANSSERIF', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xE17C: [683,10,499,28,471,'119 619l26 64c99 -14 176 -55 230 -114c65 -70 96 -173 96 -315c0 -134 -82 -264 -223 -264c-130 0 -220 107 -220 234c0 126 81 239 213 239c48 0 88 -8 125 -38c-37 113 -113 163 -236 182zM392 228c0 102 -60 164 -146 164c-87 0 -139 -77 -139 -164 c0 -95 58 -167 142 -167c98 0 143 98 143 167'], + 0xE17D: [674,0,666,31,635,'635 0h-96l-82 200h-249l-81 -200h-96l289 674h26zM427 274l-94 229l-94 -229h188'], + 0xE17E: [662,0,604,74,547,'74 662h205c154 0 232 -52 232 -163c0 -56 -29 -104 -92 -133c90 -29 128 -94 128 -173c0 -69 -42 -134 -106 -167c-34 -17 -79 -26 -127 -26h-240v662zM161 394h90c118 0 171 33 171 105c0 62 -40 89 -131 89h-130v-194zM161 74h126c123 0 171 57 171 128 c0 48 -28 87 -73 102c-35 11 -78 13 -145 13h-79v-243'], + 0xE17F: [662,0,535,74,523,'523 588h-362v-588h-87v662h440'], + 0xE180: [674,0,666,31,635,'635 0h-604l289 674h26zM509 74l-176 429l-176 -429h352'], + 0xE181: [662,0,583,74,540,'540 74l-17 -74h-449v662h439v-74h-352v-202h305v-75h-305v-237h379'], + 0xE182: [662,0,637,28,603,'603 74l-8 -74h-567v25l426 563h-392l8 74h528v-21l-428 -567h433'], + 0xE183: [662,0,658,74,584,'584 0h-87v301h-336v-301h-87v662h87v-287h336v287h87v-662'], + 0xE184: [676,14,714,30,684,'533 295h-352l7 74h338zM684 331c0 -205 -140 -345 -327 -345s-327 140 -327 345c0 206 140 345 327 345s327 -139 327 -345zM597 331c0 165 -93 269 -240 269s-240 -104 -240 -269s93 -269 240 -269s240 104 240 269'], + 0xE185: [662,0,401,45,356,'356 74l-9 -74h-288l-14 74h111v514h-111l14 74h288l9 -74h-111v-514h111'], + 0xE186: [662,0,634,74,630,'630 0h-119l-316 302l-34 -33v-269h-87v662h87v-287l308 287h95v-17l-307 -288'], + 0xE187: [674,0,666,31,635,'635 0h-96l-206 503l-206 -503h-96l289 674h26'], + 0xE188: [662,0,843,75,768,'768 0h-85v543l-251 -543h-21l-251 541v-541h-85v662h123l225 -482l222 482h123v-662'], + 0xE189: [662,14,675,74,601,'601 -14l-69 14l-371 564v-564h-87v662h121l319 -484v484h87v-676'], + 0xE18A: [662,0,643,28,615,'588 588h-533l8 74h517zM505 311h-367v74h367v-74zM615 87l-10 -87h-567l-10 87h587'], + 0xE18B: [676,14,714,30,684,'684 331c0 -205 -140 -345 -327 -345s-327 140 -327 345c0 206 140 345 327 345s327 -139 327 -345zM595 331c0 165 -91 269 -238 269s-238 -104 -238 -269s91 -269 238 -269s238 104 238 269'], + 0xE18C: [662,0,658,74,584,'584 0h-87v588h-336v-588h-87v662h510v-662'], + 0xE18D: [662,0,525,74,512,'74 662h184c174 0 254 -66 254 -184c0 -114 -85 -193 -231 -193h-120v-285h-87v662zM161 359h88c127 0 175 42 175 120c0 71 -50 109 -180 109h-83v-229'], + 0xE18E: [676,14,714,30,684,'684 331c0 -205 -140 -345 -327 -345s-327 140 -327 345c0 206 140 345 327 345s327 -139 327 -345zM119 369h476c-14 142 -103 231 -238 231c-136 0 -225 -89 -238 -231zM595 295h-477c13 -144 103 -233 239 -233s226 89 238 233'], + 0xE18F: [662,0,624,26,594,'594 74l-11 -74h-556l-1 23l275 319l-275 298v22h521v-74h-368l226 -245l-232 -269h421'], + 0xE190: [662,0,608,15,593,'593 588h-245v-588h-88v588h-245l10 74h558'], + 0xE191: [676,0,690,24,666,'666 666l-21 -73c-12 5 -28 7 -39 7c-25 0 -115 -16 -217 -313v-287h-88v287c-102 297 -192 313 -217 313c-10 0 -26 -2 -39 -7l-21 73c21 7 45 10 63 10c51 0 169 -29 258 -289c89 260 207 289 258 289c18 0 42 -3 63 -10'], + 0xE192: [662,0,716,23,693,'402 562h3c145 0 288 -77 288 -230s-143 -230 -288 -230h-3v-102h-88v102h-3c-145 0 -288 77 -288 230s143 230 288 230h3v100h88v-100zM402 487v-311c153 1 204 81 204 156s-51 154 -204 155zM314 176v311c-153 -1 -204 -80 -204 -155s51 -155 204 -156'], + 0xE193: [662,0,700,31,669,'669 0h-105l-215 283l-213 -283h-105l265 349l-240 313h106l187 -248l185 248h107l-239 -313'], + 0xE194: [681,0,724,12,712,'712 681l-22 -76c-51 -10 -51 -73 -51 -121c0 -131 -124 -195 -233 -197v-287h-88v287c-110 1 -233 64 -233 197c0 48 0 111 -51 121l-22 76h13c79 0 147 -36 147 -189c0 -79 57 -129 146 -131v301h88v-301c89 2 146 52 146 131c0 153 68 189 147 189h13'], + 0xE195: [676,0,744,29,715,'715 87l-10 -87h-281l7 175c84 21 173 90 173 214c0 137 -104 211 -232 211c-132 0 -232 -95 -232 -211c0 -122 85 -189 172 -214l9 -175h-282l-10 87h208l-2 33c-99 40 -182 122 -182 267c0 142 116 289 319 289c198 0 319 -140 319 -289c0 -145 -87 -229 -181 -267 l-2 -33h207'], + 0xE196: [463,10,537,28,532,'532 453l-103 -230c12 -46 23 -92 43 -134c9 -19 21 -28 52 -28v-15l-26 -56c-78 0 -103 47 -121 103c-40 -81 -97 -103 -161 -103c-107 0 -188 100 -188 239c0 118 82 234 189 234c95 0 146 -50 177 -123l52 113h86zM345 224c-10 111 -73 168 -131 168 c-56 0 -107 -56 -107 -164c0 -104 54 -167 112 -167c52 0 107 49 126 163'], + 0xE197: [683,215,498,41,471,'60 -131v533c0 64 7 128 30 177c30 61 84 104 168 104c80 0 166 -64 166 -154c0 -54 -17 -101 -66 -131c61 -20 113 -95 113 -170c0 -153 -85 -242 -217 -242c-37 0 -82 11 -115 36v-148c0 -36 -11 -74 -16 -89h-82c12 25 19 57 19 84zM139 433v-315 c23 -36 74 -61 122 -61c81 0 130 64 130 157c0 126 -106 144 -191 144v17l42 54c68 0 103 52 103 92c0 54 -38 91 -92 91c-93 0 -114 -101 -114 -179'], + 0xE198: [463,216,474,27,455,'455 453l-184 -424v-240l-9 -5l-70 24c3 69 5 171 5 237c0 63 -16 137 -30 195c-12 48 -61 152 -140 152v11l40 60c116 0 176 -154 187 -274l115 264h86'], + 0xE199: [683,10,499,28,471,'389 557h-15c-25 30 -68 55 -136 55c-35 0 -83 -15 -83 -56c0 -32 60 -61 129 -94c98 -47 187 -125 187 -252c0 -99 -70 -220 -223 -220c-130 0 -220 97 -220 220c0 106 54 185 163 219c-56 24 -115 59 -115 127c0 89 84 127 172 127c66 0 137 -18 180 -70zM392 209 c0 88 -34 137 -115 169c-107 -1 -170 -72 -170 -169c0 -76 58 -148 142 -148c98 0 143 73 143 148'], + 0xE19A: [463,10,438,22,419,'355 152l64 -32c-56 -101 -120 -130 -206 -130c-175 0 -191 95 -191 135c0 48 39 90 80 112c-34 19 -57 53 -57 92c0 69 66 134 193 134c70 0 137 -33 169 -97l-46 -54h-15c-24 59 -70 80 -112 80c-78 0 -110 -32 -110 -63c0 -28 24 -59 103 -59h60v-71h-60 c-43 0 -126 -9 -126 -68c0 -48 50 -70 104 -70c64 0 112 16 150 91'], + 0xE19B: [683,213,416,33,408,'203 69h62c63 0 143 -15 143 -114c0 -96 -73 -168 -149 -168c-26 0 -54 4 -75 21v72h17c26 -19 44 -21 59 -21c37 0 69 39 69 88c0 38 -34 43 -66 43h-78c-65 0 -152 40 -152 202c0 118 30 206 99 313c-34 18 -69 54 -69 110c0 22 3 45 20 68h11l52 -17 c-9 -18 -12 -32 -12 -43c0 -37 26 -58 49 -61c32 31 80 73 129 95h16l14 -73c-123 -68 -230 -213 -230 -378c0 -121 49 -137 91 -137'], + 0xE19C: [463,215,494,41,443,'443 -215h-82c-9 16 -16 33 -16 89v430c0 65 -31 88 -82 88c-33 0 -100 -31 -121 -90v-302h-79v323c0 39 -3 84 -22 103l62 37h10c13 -17 19 -34 25 -62c51 50 98 62 152 62c40 0 85 -20 107 -45c20 -22 27 -58 27 -97v-448c0 -37 6 -67 19 -88'], + 0xE19D: [683,10,446,21,425,'425 336c0 -178 -58 -346 -197 -346c-144 0 -207 170 -207 348c0 157 67 345 207 345c141 0 197 -189 197 -347zM100 373h246c-5 115 -41 239 -119 239c-79 0 -120 -123 -127 -239zM346 302h-246c6 -128 47 -241 127 -241c78 0 114 111 119 241'], + 0xE19E: [464,10,270,57,269,'269 87l-13 -75c-26 -19 -55 -22 -88 -22c-68 0 -111 45 -111 114v336l73 24l9 -5v-322c0 -62 20 -76 52 -76c19 0 33 5 60 26h18'], + 0xE19F: [464,0,472,82,472,'472 0h-104l-207 184v-184h-79v440l70 24l9 -5v-167c51 72 160 160 265 171l35 -60v-11c-126 -7 -202 -85 -248 -151'], + 0xE1A0: [683,11,489,8,478,'478 45l-28 -56c-60 0 -123 59 -152 152l-58 185l-146 -326h-86l197 434l-12 43c-20 65 -55 134 -128 135v16l29 55c59 0 134 -59 163 -152l106 -335c21 -65 42 -135 115 -136v-15'], + 0xE1A1: [453,215,487,44,482,'482 47l-23 -57c-53 0 -97 16 -108 74l-132 -74c-33 0 -63 7 -81 25v-141c0 -36 -9 -73 -16 -89h-78c11 25 19 57 19 88v580h79v-304c0 -65 31 -88 82 -88c33 0 100 41 121 100v292h79v-325c0 -36 6 -67 58 -67v-14'], + 0xE1A2: [464,14,460,30,427,'318 444l71 20c11 -20 38 -72 38 -114c0 -82 -7 -143 -179 -364h-20l-198 467h86l139 -332c57 71 93 124 93 195c0 31 -19 78 -37 115'], + 0xE1A3: [683,215,418,33,410,'200 69h58c62 0 152 -15 152 -114c0 -96 -73 -170 -149 -170c-26 0 -54 4 -75 21v72h17c26 -19 44 -21 59 -21c37 0 69 41 69 90c0 38 -44 43 -76 43h-66c-88 0 -156 72 -156 175c0 81 47 161 101 203c-29 24 -42 46 -42 86c0 19 5 48 28 72c-30 19 -50 50 -50 86 c0 25 7 53 24 71h12l51 -17c-11 -18 -16 -33 -16 -44c0 -26 20 -42 36 -52c45 21 81 32 147 40l13 -4l-11 -75c-86 0 -154 -27 -154 -80c0 -19 10 -36 26 -47c49 19 106 26 158 29l11 -7l-25 -72c-114 0 -230 -51 -230 -175c0 -58 32 -110 88 -110'], + 0xE1A4: [463,10,499,28,471,'471 229c0 -99 -70 -239 -223 -239c-130 0 -220 104 -220 239c0 124 83 234 217 234c132 0 226 -88 226 -234zM392 228c0 102 -60 164 -146 164c-87 0 -139 -77 -139 -164c0 -95 58 -167 142 -167c98 0 143 98 143 167'], + 0xE1A5: [453,10,507,7,487,'487 382h-102c-7 -47 -6 -149 -6 -206c0 -113 28 -115 107 -115v-17l-39 -54c-77 1 -146 26 -147 145c0 57 5 221 7 247h-86c0 -221 -24 -392 -149 -392l-32 71c72 4 102 63 102 321c-26 -2 -56 -22 -72 -79l-63 34c32 99 85 116 175 116h305v-71'], + 0xE1A6: [462,216,498,48,470,'67 -131v249c0 102 3 185 45 254c46 76 110 90 161 90c106 0 197 -95 197 -219c0 -142 -97 -254 -217 -254c-35 0 -72 11 -107 36v-152c0 -37 -5 -67 -17 -89h-81c12 25 19 57 19 85zM390 229c0 99 -59 162 -131 162c-29 0 -57 -11 -81 -51c-25 -40 -32 -88 -32 -218 c27 -43 63 -62 103 -62c89 0 141 75 141 169'], + 0xE1A7: [463,212,416,33,414,'414 404l-44 -52h-16c-22 35 -51 40 -82 40c-94 0 -160 -111 -160 -217c0 -61 27 -105 88 -105h67c62 0 142 -15 142 -114c0 -95 -72 -168 -149 -168c-25 0 -50 4 -75 21v72h18c16 -14 34 -21 51 -21c38 0 76 35 76 88c0 38 -34 43 -66 43h-76c-96 0 -155 75 -155 166 c0 173 102 306 250 306c48 0 93 -9 131 -59'], + 0xE1A8: [453,10,526,28,542,'542 382h-173c72 -53 96 -119 96 -182c0 -77 -63 -210 -217 -210c-129 0 -220 98 -220 233c0 170 134 230 219 230h295v-71zM386 199c0 97 -86 157 -146 183c-84 -1 -133 -66 -133 -154c0 -95 58 -167 142 -167c98 0 137 78 137 138'], + 0xE1A9: [453,10,426,2,410,'410 382h-151c-6 -47 -6 -149 -6 -206c0 -113 20 -115 99 -115v-17l-24 -54c-78 1 -154 11 -154 145c0 57 5 221 7 247h-26c-27 0 -71 -11 -90 -101l-63 24c29 124 89 148 179 148h229v-71'], + 0xE1AA: [463,10,503,41,463,'245 392v71c114 0 218 -78 218 -237c0 -130 -94 -236 -218 -236c-147 0 -182 96 -182 210v122c0 39 -3 84 -22 103l62 38h11c12 -17 28 -43 28 -71v-210c0 -77 40 -121 105 -121c84 0 136 77 136 159c0 108 -50 167 -138 172'], + 0xE1AB: [464,216,632,34,600,'278 60v78c0 94 0 200 38 260c19 29 55 65 111 65c81 0 173 -72 173 -238c0 -117 -77 -234 -243 -236v-181l-71 -24l-9 5v200c-166 2 -243 118 -243 236c0 92 60 211 145 239l29 -54v-16c-69 -33 -95 -122 -95 -160c0 -100 52 -173 165 -174zM356 214v-154 c113 1 165 75 165 175c0 96 -50 149 -108 149c-47 0 -57 -83 -57 -170'], + 0xE1AC: [463,215,399,-20,440,'440 453l-186 -329c3 -39 9 -82 18 -116c12 -48 60 -151 138 -151v-14l-50 -58c-105 0 -146 135 -163 237l-130 -231h-87l187 334c-2 37 -7 80 -16 115c-13 50 -63 152 -138 152v13l50 58c103 0 145 -135 162 -237l128 227h87'], + 0xE1AD: [461,216,654,12,642,'642 461l-33 -70c-34 -11 -51 -44 -51 -161c0 -126 -26 -225 -189 -240v-182l-71 -24l-9 5v201c-163 15 -193 114 -193 240c0 114 -17 147 -52 161l-32 70c121 0 163 -79 163 -185c0 -136 19 -203 114 -214v362l73 30l7 -7v-385c95 12 110 79 110 214 c0 105 42 185 163 185'], + 0xE1AE: [454,10,624,29,595,'422 400l30 54c85 -27 143 -138 143 -236c0 -88 -26 -150 -63 -186c-30 -28 -65 -42 -102 -42c-49 0 -94 32 -119 87c-23 -55 -68 -87 -117 -87c-38 0 -77 13 -106 44c-35 36 -59 97 -59 184c0 98 58 209 143 236l30 -54v-14c-70 -34 -94 -109 -94 -173 c0 -117 49 -152 86 -152c34 0 79 43 79 162v102l71 30l7 -7v-125c0 -119 45 -162 79 -162c37 0 86 35 86 152c0 64 -24 139 -94 173v14'], + 0xE1AF: [463,10,456,23,432,'367 166l65 -34c-22 -50 -52 -86 -85 -108c-36 -25 -75 -34 -115 -34c-49 0 -89 12 -125 40c-49 38 -84 102 -84 186c0 147 95 247 219 247c49 0 106 -10 144 -46v-100h-18c-35 51 -76 75 -124 75c-60 0 -116 -35 -135 -111h188v-71h-195c5 -95 65 -149 136 -149 c45 0 95 30 129 105'], + 0xE1B0: [683,12,489,42,491,'491 363v-70c-14 1 -28 2 -44 5c2 -22 4 -49 4 -71c0 -67 -23 -141 -69 -189c-32 -33 -76 -50 -127 -50c-147 0 -192 96 -192 210v40c0 39 -3 85 -21 104l61 37h11c13 -17 28 -43 28 -71v-128c0 -77 49 -121 115 -121c91 0 115 94 115 176c0 32 -4 61 -9 85 c-159 36 -287 118 -287 227c0 87 55 136 130 136c101 0 193 -93 228 -307c17 -5 39 -9 57 -13zM342 407l1 2c-37 153 -76 204 -133 204c-29 0 -58 -21 -58 -62c0 -66 86 -115 190 -144'], + 0xE1B1: [684,216,622,28,594,'351 677v-216c166 -2 243 -119 243 -237s-77 -234 -243 -236v-180l-71 -24l-9 5v199c-166 2 -243 118 -243 236c0 119 77 235 243 237v194l73 29zM350 390v-331c113 1 165 74 165 167c0 92 -65 161 -165 164zM272 59v331c-113 -1 -165 -71 -165 -164s52 -166 165 -167'], + 0xE1B2: [463,216,491,28,463,'274 -211v14c0 27 -30 41 -69 60c-33 15 -73 35 -105 69c-59 60 -72 124 -72 265c0 134 77 266 218 266c130 0 217 -88 217 -234c0 -99 -61 -239 -214 -239c-48 0 -88 8 -125 38c19 -40 61 -72 95 -89c9 -4 22 -11 32 -15c50 -22 102 -46 102 -105v-11l-70 -24zM383 228 c0 99 -51 164 -136 164c-87 0 -139 -75 -139 -176c0 -103 58 -155 142 -155c98 0 133 98 133 167'], + 0xE1B3: [453,10,762,7,739,'739 382h-96c36 -49 51 -109 51 -164c0 -160 -81 -228 -165 -228c-48 0 -94 32 -118 87c-23 -55 -69 -87 -117 -87c-38 0 -77 13 -107 44c-34 36 -58 97 -58 184c0 53 19 116 51 164h-22c-27 0 -69 -21 -89 -111l-62 24c29 123 88 158 179 158h553v-71zM450 325v-102 c0 -119 46 -162 79 -162c38 0 86 35 86 152c0 58 -24 138 -86 169h-235c-62 -32 -86 -111 -86 -169c0 -117 48 -152 86 -152c34 0 79 43 79 162v80l70 29'], + 0x1D5A0: [674,0,666,31,635,'635 0h-96l-82 200h-249l-81 -200h-96l289 674h26zM427 274l-94 229l-94 -229h188'], + 0x1D5A1: [662,0,604,74,547,'74 662h205c154 0 232 -52 232 -163c0 -56 -29 -104 -92 -133c90 -29 128 -94 128 -173c0 -69 -42 -134 -106 -167c-34 -17 -79 -26 -127 -26h-240v662zM161 394h90c118 0 171 33 171 105c0 62 -40 89 -131 89h-130v-194zM161 74h126c123 0 171 57 171 128 c0 48 -28 87 -73 102c-35 11 -78 13 -145 13h-79v-243'], + 0x1D5A2: [676,14,671,27,637,'586 170l51 -51c-66 -85 -162 -133 -273 -133c-213 0 -337 146 -337 347c0 195 135 343 336 343c89 0 195 -31 254 -122v-101h-19c-48 117 -151 147 -234 147c-151 0 -248 -116 -248 -265c0 -164 94 -273 251 -273c88 0 154 35 219 108'], + 0x1D5A3: [662,0,692,74,656,'74 662h166c289 0 416 -123 416 -335c0 -170 -120 -327 -367 -327h-215v662zM161 74h49c116 0 177 5 244 40c78 41 113 116 113 214c0 92 -26 156 -96 204c-65 45 -138 56 -250 56h-60v-514'], + 0x1D5A4: [662,0,583,74,540,'540 74l-17 -74h-449v662h439v-74h-352v-202h305v-75h-305v-237h379'], + 0x1D5A5: [662,0,535,74,523,'523 588h-362v-202h296v-75h-296v-311h-87v662h440'], + 0x1D5A6: [676,14,695,27,627,'627 357v-298c-56 -37 -106 -73 -252 -73c-212 0 -348 146 -348 347c0 195 146 343 346 343c87 0 184 -27 242 -111v-103h-19c-51 107 -135 138 -223 138c-170 0 -257 -131 -257 -264c0 -136 91 -274 263 -274c121 0 161 33 161 61v158h-86l-22 76h195'], + 0x1D5A7: [662,0,658,74,584,'584 0h-87v301h-336v-301h-87v662h87v-287h336v287h87v-662'], + 0x1D5A8: [662,0,401,45,356,'356 74l-9 -74h-288l-14 74h111v514h-111l14 74h288l9 -74h-111v-514h111'], + 0x1D5A9: [662,14,398,12,305,'305 662v-450c0 -126 -31 -226 -162 -226c-44 0 -87 11 -131 56l19 76h17c25 -29 65 -56 98 -56c71 0 72 82 72 144v456h87'], + 0x1D5AA: [662,0,634,74,630,'630 0h-119l-316 302l-34 -33v-269h-87v662h87v-287l308 287h95v-17l-307 -288'], + 0x1D5AB: [662,0,559,74,546,'546 74l-18 -74h-454v662h87v-588h385'], + 0x1D5AC: [662,0,843,75,768,'768 0h-85v543l-251 -543h-21l-251 541v-541h-85v662h123l225 -482l222 482h123v-662'], + 0x1D5AD: [662,14,675,74,601,'601 -14l-69 14l-371 564v-564h-87v662h121l319 -484v484h87v-676'], + 0x1D5AE: [676,14,714,30,684,'684 331c0 -205 -140 -345 -327 -345s-327 140 -327 345c0 206 140 345 327 345s327 -139 327 -345zM595 331c0 165 -91 269 -238 269s-238 -104 -238 -269s91 -269 238 -269s238 104 238 269'], + 0x1D5AF: [662,0,525,74,512,'74 662h184c174 0 254 -66 254 -184c0 -114 -85 -193 -231 -193h-120v-285h-87v662zM161 359h88c127 0 175 42 175 120c0 71 -50 109 -180 109h-83v-229'], + 0x1D5B0: [676,175,716,30,691,'691 -157v-18c-157 0 -300 0 -397 167c-153 28 -264 158 -264 339c0 206 140 345 327 345s327 -139 327 -345c0 -186 -119 -318 -280 -341c53 -86 133 -90 208 -91zM595 331c0 165 -91 269 -238 269s-238 -104 -238 -269s91 -269 238 -269s238 104 238 269'], + 0x1D5B1: [662,0,589,74,581,'581 0h-103l-247 299h-70v-299h-87v662h185c169 0 254 -64 254 -177c0 -94 -68 -166 -178 -182zM161 373h89c126 0 174 36 174 113c0 72 -50 102 -180 102h-83v-215'], + 0x1D5B2: [676,14,541,32,481,'449 477h-19c-33 83 -104 123 -178 123c-63 0 -106 -45 -106 -95c0 -62 79 -102 141 -127c144 -57 194 -114 194 -210c0 -49 -25 -97 -57 -127c-41 -37 -95 -55 -166 -55c-85 0 -164 23 -213 84l-13 135h18c47 -105 137 -143 204 -143c85 0 138 40 138 96 c0 61 -39 97 -128 133c-142 58 -203 114 -203 210c0 106 83 175 196 175c88 0 154 -35 192 -80v-119'], + 0x1D5B3: [662,0,608,15,593,'593 588h-245v-588h-88v588h-245l10 74h558'], + 0x1D5B4: [662,14,661,69,592,'592 662v-419c0 -168 -90 -257 -262 -257s-261 87 -261 257v419h87v-406c0 -62 5 -88 19 -115c26 -50 82 -79 155 -79c74 0 132 31 158 79c16 29 17 68 17 128v393h87'], + 0x1D5B5: [662,11,654,31,623,'623 662l-283 -673h-26l-283 673h96l201 -498l199 498h96'], + 0x1D5B6: [662,11,921,29,892,'892 662l-228 -673h-28l-178 446l-173 -446h-28l-228 673h95l153 -476v2l182 474l184 -476v2l154 474h95'], + 0x1D5B7: [662,0,700,31,669,'669 0h-105l-215 283l-213 -283h-105l265 349l-240 313h106l187 -248l185 248h107l-239 -313'], + 0x1D5B8: [662,0,630,21,609,'609 662l-250 -374v-288h-88v288l-250 374h95l199 -300l199 300h95'], + 0x1D5B9: [662,0,637,28,603,'603 74l-8 -74h-567v25l426 563h-392l8 74h528v-21l-428 -567h433'], + 0x1D5BA: [463,10,448,35,391,'391 0h-85l-5 44c-43 -39 -99 -54 -149 -54c-69 0 -117 36 -117 111c0 94 77 156 267 193v33c0 39 -35 65 -85 65c-63 0 -91 -42 -108 -90h-15l-49 31c19 97 96 130 174 130c97 0 162 -50 162 -137v-250c0 -22 4 -48 10 -76zM302 132v90c-60 -10 -109 -27 -138 -43 c-36 -19 -50 -37 -50 -67c0 -32 18 -51 58 -51c38 0 85 20 130 71'], + 0x1D5BB: [684,10,496,63,466,'142 679v-265c36 32 83 49 128 49c116 0 196 -89 196 -219c0 -145 -98 -254 -238 -254c-58 0 -120 15 -165 57v613l70 24zM142 302v-208c25 -21 58 -33 91 -33c75 0 154 60 154 169c0 95 -47 162 -132 162c-46 0 -92 -31 -113 -90'], + 0x1D5BC: [463,10,456,23,432,'367 166l65 -34c-22 -50 -52 -86 -85 -108c-36 -25 -75 -34 -115 -34c-49 0 -89 12 -125 40c-49 38 -84 102 -84 186c0 147 95 247 219 247c70 0 136 -28 169 -92l-44 -54h-16c-25 59 -71 75 -113 75c-72 0 -136 -58 -136 -170c0 -102 62 -161 136 -161 c45 0 95 30 129 105'], + 0x1D5BD: [684,11,494,28,437,'437 13l-72 -24l-9 5l-2 50c-37 -36 -91 -54 -137 -54c-29 0 -64 7 -91 23c-56 34 -98 109 -98 196c0 142 97 254 217 254c34 0 71 -11 107 -37v234l70 24l9 -5v-551c0 -33 2 -82 6 -115zM352 158v171c-27 40 -65 63 -103 63c-70 0 -142 -67 -142 -170 c0 -56 21 -111 56 -137c23 -17 48 -24 74 -24c46 0 93 38 115 97'], + 0x1D5BE: [463,10,444,23,428,'362 167l66 -35c-49 -98 -100 -142 -198 -142c-117 0 -207 84 -207 236c0 79 29 143 72 183c39 37 88 54 143 54c107 0 173 -77 173 -186v-55h-309c0 -105 62 -161 136 -161c53 0 94 36 124 106zM115 293h215c-3 85 -55 99 -100 99c-47 0 -102 -28 -115 -99'], + 0x1D5BF: [683,0,336,20,369,'369 633l-24 -59l-16 -1c-34 25 -53 39 -80 39c-38 0 -69 -29 -69 -103v-56h114v-71h-114v-382h-79v382h-81v71h81v41c0 70 17 117 47 149c24 24 60 40 94 40c47 0 83 -13 127 -50'], + 0x1D5C0: [463,216,496,21,467,'467 369h-78c11 -21 16 -43 16 -70c0 -95 -71 -161 -167 -161c-21 0 -38 2 -61 8c-22 -13 -41 -30 -41 -44c0 -19 9 -36 48 -38c34 -1 71 -3 105 -4c103 -4 169 -41 169 -119c0 -116 -137 -157 -265 -157c-97 0 -172 36 -172 113c0 46 23 87 70 113c-27 18 -37 40 -37 63 c0 22 12 57 44 86c7 7 11 12 17 19c-30 27 -52 66 -52 118c0 90 74 167 179 167c33 0 48 -4 75 -14c25 -9 52 -13 82 -13h68v-67zM326 297c0 61 -33 95 -90 95c-55 0 -94 -43 -94 -90c0 -56 37 -92 97 -92c54 0 87 40 87 87zM201 -15h-20c-50 -15 -81 -40 -81 -71 c0 -41 42 -58 101 -58c41 0 87 1 123 15c32 13 54 37 54 62c0 20 -5 33 -33 40c-41 11 -105 12 -144 12'], + 0x1D5C1: [684,0,487,63,424,'424 0h-79v304c0 63 -31 88 -82 88c-33 0 -100 -31 -121 -90v-302h-79v660l70 24l9 -5v-274c50 50 94 58 148 58c78 0 134 -50 134 -142v-321'], + 0x1D5C2: [679,0,220,64,156,'156 586h-92v93h92v-93zM152 0h-83v440l74 24l9 -5v-459'], + 0x1D5C3: [679,216,254,-74,185,'185 586h-93v93h93v-93zM180 459v-485c0 -70 -15 -121 -47 -153c-25 -25 -63 -37 -98 -37c-32 0 -70 12 -109 36l27 64h16c27 -17 43 -28 65 -28c38 0 64 30 64 102v481l73 25'], + 0x1D5C4: [684,0,453,63,452,'452 0h-103l-207 207v-207h-79v660l70 24l9 -5v-376l198 150h104v-14l-246 -184'], + 0x1D5C5: [684,0,205,61,144,'144 0h-83v660l74 24l9 -5v-679'], + 0x1D5C6: [464,0,756,65,691,'691 0h-77v293c0 71 -28 99 -79 99c-29 0 -98 -32 -118 -90v-302h-78v290c0 71 -26 102 -77 102c-28 0 -100 -31 -120 -90v-302h-77v440l65 24l9 -5v-57c33 41 87 61 139 61c53 0 103 -22 131 -65c39 43 93 65 142 65c74 0 140 -48 140 -148v-315'], + 0x1D5C7: [464,0,487,63,424,'424 0h-79v304c0 65 -31 88 -82 88c-33 0 -100 -31 -121 -90v-302h-79v440l65 24l9 -5l2 -57c52 51 96 61 151 61c40 0 84 -22 107 -45c18 -24 27 -58 27 -97v-321'], + 0x1D5C8: [463,10,499,28,471,'471 229c0 -99 -70 -239 -223 -239c-130 0 -220 104 -220 239c0 124 83 234 217 234c132 0 226 -88 226 -234zM392 228c0 102 -60 164 -146 164c-87 0 -139 -77 -139 -164c0 -95 58 -167 142 -167c98 0 143 98 143 167'], + 0x1D5C9: [464,216,498,67,470,'142 459l2 -50c37 36 91 54 137 54c30 0 64 -6 91 -23c56 -35 98 -109 98 -196c0 -142 -97 -254 -217 -254c-34 0 -72 11 -107 36v-218l-70 -24l-9 5v651l67 24zM146 295v-172c27 -43 64 -62 103 -62c89 0 142 75 142 169c0 88 -47 162 -130 162c-46 0 -93 -38 -115 -97'], + 0x1D5CA: [464,216,498,28,435,'435 -211l-9 -5l-70 24v234c-36 -35 -89 -52 -135 -52c-30 0 -64 7 -91 23c-57 34 -102 108 -102 196c0 142 97 254 217 254c36 0 78 -9 114 -35l65 36l11 -6v-669zM356 158v171c-27 41 -69 63 -107 63c-70 0 -142 -67 -142 -170c0 -88 47 -161 130 -161 c46 0 97 38 119 97'], + 0x1D5CB: [464,0,336,63,328,'328 377h-20c-7 11 -32 15 -39 15c-57 0 -105 -60 -127 -158v-234h-79v440l70 24l9 -5l2 -64c35 50 87 68 127 68c16 0 38 -1 57 -16v-70'], + 0x1D5CC: [463,10,389,49,350,'330 321h-15c-40 63 -78 72 -123 72c-47 0 -64 -30 -64 -51c0 -37 36 -57 84 -77c109 -46 138 -74 138 -147c0 -41 -22 -80 -61 -104c-27 -17 -62 -24 -100 -24c-64 0 -98 19 -139 55v103h15c29 -64 76 -87 130 -87c40 0 76 18 76 57c0 27 -24 43 -86 71 c-101 45 -136 83 -136 149c0 67 56 125 145 125c63 0 106 -21 136 -53v-89'], + 0x1D5CD: [580,10,291,1,287,'287 87l-11 -75c-25 -19 -55 -22 -88 -22c-69 0 -107 45 -107 114v278h-80v17l45 54h35v64l61 63h18v-127h104v-71h-104v-245c0 -62 20 -76 51 -76c20 0 40 3 64 26h12'], + 0x1D5CE: [453,11,491,63,430,'430 13l-71 -24l-9 5l-2 65c-39 -43 -100 -69 -151 -69c-40 0 -83 22 -107 45c-18 23 -27 58 -27 96v322h79v-304c0 -65 31 -88 82 -88c33 0 100 41 121 100v292h79v-325c0 -33 2 -82 6 -115'], + 0x1D5CF: [453,14,474,31,443,'443 453l-195 -467h-22l-195 467h85l122 -299l120 299h85'], + 0x1D5D0: [453,14,702,28,675,'675 453l-196 -467h-22l-98 244l-122 -244h-21l-188 467h84l122 -304l85 176c-15 42 -34 87 -50 128h84l121 -294l116 294h85'], + 0x1D5D1: [453,0,482,30,452,'452 0h-94l-122 175l-112 -175h-94l161 239l-149 214h94l105 -151l97 151h94l-146 -217'], + 0x1D5D2: [453,216,484,28,453,'453 453l-178 -497c-39 -110 -82 -172 -172 -172c-26 0 -55 6 -75 24v72h17c27 -20 45 -24 60 -24c45 0 82 64 106 138c3 10 8 23 11 33l-188 426h86l139 -323l109 323h85'], + 0x1D5D3: [453,0,447,25,417,'417 71l-10 -71h-382v20l251 362h-227l12 71h344v-20l-252 -362h264'], + 0x1D7E2: [676,14,500,23,477,'477 330c0 -172 -63 -344 -227 -344c-172 0 -227 186 -227 350c0 177 69 340 231 340c131 0 223 -141 223 -346zM398 330c0 163 -59 275 -146 275c-105 0 -150 -129 -150 -271c0 -129 35 -277 148 -277c107 0 148 137 148 273'], + 0x1D7E3: [677,0,500,108,302,'302 0h-79v570c-37 -17 -79 -40 -115 -58v73l180 92l14 -5v-672'], + 0x1D7E4: [676,0,500,35,469,'469 71l-29 -71h-405v21l175 214v-1l56 68c61 72 101 118 101 173c0 83 -49 130 -125 130c-56 0 -119 -46 -133 -146l-72 17c21 119 108 200 212 200c119 0 197 -85 197 -185c0 -79 -25 -116 -109 -221l-160 -199h292'], + 0x1D7E5: [676,14,500,31,441,'113 492l-71 17c28 101 96 167 201 167c94 0 167 -67 167 -157c0 -48 -24 -106 -86 -149c80 -29 117 -104 117 -160c0 -61 -24 -121 -63 -160c-45 -45 -108 -64 -173 -64c-62 0 -122 13 -174 70l47 56c35 -38 79 -55 122 -55c45 0 87 11 116 36c26 22 46 60 46 98 c0 69 -53 119 -140 131h-64v21l48 51c56 0 125 49 125 118c0 58 -42 93 -91 93s-102 -34 -127 -113'], + 0x1D7E6: [676,0,500,11,489,'489 236l-33 -71h-83v-165h-79v165h-283v68l312 443h50v-440h116zM294 236v274l-194 -274h194'], + 0x1D7E7: [676,14,500,36,458,'458 676l-32 -71h-177l-64 -127c141 -20 261 -101 261 -252c0 -130 -99 -240 -236 -240c-62 0 -122 13 -174 70l47 56c35 -38 79 -55 122 -55c103 0 162 84 162 169c0 49 -23 92 -66 126c-45 37 -111 55 -207 55l-14 17l116 252h262'], + 0x1D7E8: [684,14,500,32,470,'448 668l-18 -53c-149 -11 -261 -85 -308 -227c41 30 87 43 137 43c109 0 211 -80 211 -211c0 -127 -88 -234 -213 -234c-162 0 -225 134 -225 278c0 112 43 231 111 298c95 93 162 108 304 122zM390 207c0 101 -69 153 -139 153c-65 0 -126 -38 -139 -120 c0 -106 55 -183 148 -183c73 0 130 63 130 150'], + 0x1D7E9: [662,8,500,38,451,'451 642l-221 -650h-82l206 599h-316l31 71h382v-20'], + 0x1D7EA: [676,14,500,49,447,'447 161c0 -92 -69 -175 -199 -175c-114 0 -199 73 -199 168c0 68 29 124 128 191c-90 53 -117 109 -117 169c0 97 84 162 196 162c100 0 171 -77 171 -156c0 -75 -31 -118 -116 -167c87 -53 136 -114 136 -192zM355 515c0 54 -46 90 -111 90c-64 0 -105 -44 -105 -87 c0 -59 31 -88 110 -124c64 35 106 72 106 121zM276 286l-35 19c-71 -25 -113 -87 -113 -142c0 -56 40 -106 124 -106c57 0 116 37 116 101c0 55 -25 92 -92 128'], + 0x1D7EB: [676,21,500,28,466,'55 -2l13 49c149 11 261 85 308 228c-41 -31 -88 -44 -137 -44c-109 0 -211 80 -211 211c0 127 88 234 214 234c162 0 224 -133 224 -278c0 -111 -43 -231 -111 -297c-94 -92 -160 -108 -298 -122zM386 422c-1 105 -56 183 -147 183c-73 0 -131 -62 -131 -149 c0 -102 69 -153 139 -153c65 0 126 37 139 119'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Script/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Script/BoldItalic/Main.js new file mode 100644 index 0000000..1c8c47c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Script/BoldItalic/Main.js @@ -0,0 +1,93 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Script/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Script-bold-italic'] = { + directory: 'Script/BoldItalic', + family: 'STIXMathJax_Script', + weight: 'bold', + style: 'italic', + id: 'STIXWEBSCRIPTBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210A: [462,224,819,27,771,'771 449l-278 -518c21 -10 52 -12 73 -12c24 0 58 1 110 35l20 -41c-45 -33 -101 -44 -141 -44c-30 0 -63 5 -89 14c-63 -75 -152 -107 -238 -107c-84 0 -128 39 -128 77c0 46 53 82 100 100c39 15 92 15 121 15c16 0 50 -4 75 -8l40 72h-3c-44 -30 -87 -43 -143 -43 c-66 0 -117 43 -117 110c0 38 12 78 32 117c-24 -8 -48 -14 -82 -14c-32 0 -65 7 -96 23l12 43c31 -13 53 -16 82 -16c73 0 119 32 150 58c81 87 205 152 286 152c38 0 69 -10 88 -31h2l10 18h114zM591 375c0 30 -18 37 -33 37c-46 0 -110 -51 -187 -162 c-60 -86 -83 -138 -83 -176c0 -24 18 -35 30 -35c122 0 273 256 273 336zM369 -91c-20 6 -46 9 -63 9c-50 -1 -105 -17 -106 -62c0 -22 21 -30 40 -30c29 0 79 7 129 83'], + 0x210B: [699,21,1171,65,1154,'816 658l-24 -19c-82 -65 -151 -138 -221 -274c17 4 76 21 89 27c151 198 312 307 417 307c50 0 77 -23 77 -63c0 -110 -157 -195 -343 -248c-94 -133 -167 -264 -167 -319c0 -19 10 -28 29 -28c29 0 68 27 146 124l42 -26c-39 -60 -75 -96 -111 -121 c-34 -23 -67 -36 -104 -36c-89 0 -122 51 -122 114c0 79 50 172 83 222c-22 -8 -58 -18 -73 -23c-78 -143 -222 -316 -365 -316c-64 0 -104 24 -104 77c0 45 26 86 61 119c61 58 146 90 260 130c50 80 84 147 212 262v2c-115 0 -141 75 -214 75c-54 0 -94 -51 -94 -99 c0 -52 30 -72 60 -72c20 0 39 6 57 23l29 -35c-27 -29 -58 -43 -106 -43c-85 0 -131 59 -131 127c0 73 63 154 189 154c106 0 168 -50 250 -50c23 0 49 2 79 13c22 8 42 19 69 37zM875 473v-2c69 17 190 82 190 156c0 12 -5 17 -18 17c-33 0 -112 -68 -172 -171zM344 225 l-1 2c-99 -31 -187 -109 -187 -173c0 -16 9 -20 20 -20c41 0 118 97 168 191'], + 0x2110: [699,21,997,47,977,'141 66v-1c14 -18 62 -31 87 -31c113 0 209 40 296 231c6 12 11 25 18 38c-34 12 -59 30 -79 56c-22 27 -37 63 -37 108c0 54 27 105 60 137c63 60 154 83 237 83c48 0 95 -5 121 -9c34 16 68 21 81 21c31 0 52 -16 52 -35c0 -43 -38 -63 -93 -63c-10 0 -21 1 -32 3 c-59 -42 -92 -142 -136 -241l1 -2c38 18 81 52 120 115l43 -26c-26 -50 -85 -132 -195 -154c-35 -73 -73 -142 -122 -187c-93 -85 -194 -130 -328 -130c-116 0 -188 54 -188 129c0 50 37 93 84 93c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68zM769 604v3 c-186 0 -252 -80 -252 -166c0 -35 18 -66 54 -83c47 92 101 188 198 246'], + 0x2112: [699,21,1036,40,1015,'678 648l-22 -44c-72 40 -135 40 -166 40c-97 0 -201 -47 -201 -141c0 -90 98 -141 231 -141c12 0 25 0 44 2c28 57 48 96 83 148c54 78 161 167 258 167c78 0 110 -37 110 -87c0 -91 -141 -220 -320 -269c-60 -122 -148 -219 -254 -272v-2c34 -10 59 -13 78 -13 c87 0 186 39 278 141l36 -35c-94 -110 -201 -163 -311 -163c-82 0 -128 15 -168 29c-46 -14 -95 -25 -162 -25c-48 0 -83 4 -108 17c-28 14 -44 38 -44 61c0 25 17 47 44 62c26 14 60 21 100 21c75 0 130 -29 184 -57c51 34 104 106 168 220h-28c-140 0 -310 51 -310 200 c0 108 126 192 287 192c50 0 125 -8 193 -51zM722 389l2 -1c91 31 200 107 200 202c0 23 -17 34 -33 34c-62 0 -128 -125 -169 -235zM290 53v1c-41 27 -79 35 -115 35c-13 0 -44 -5 -44 -22c0 -20 21 -29 64 -29c34 0 65 6 95 15'], + 0x211B: [699,21,1048,55,973,'934 175l39 -33c-73 -103 -139 -160 -224 -160c-78 0 -123 42 -123 94c0 71 85 135 85 191c0 13 -5 25 -14 27c-13 0 -25 2 -30 5c-120 -232 -262 -320 -427 -320c-116 0 -185 55 -185 130c0 50 34 92 81 92c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68v-1 c18 -22 52 -31 87 -31c114 0 167 51 276 248c81 147 145 253 241 328c-49 23 -105 34 -151 34c-197 0 -346 -99 -346 -225c0 -59 44 -98 92 -98c44 0 82 12 113 66c19 32 32 76 35 133h50c0 -122 -56 -254 -211 -254c-90 0 -170 57 -170 157c0 86 65 173 175 225 c69 33 156 51 255 51c80 0 158 -16 224 -45c30 17 61 31 98 44l19 -47c-21 -9 -38 -18 -55 -29c55 -36 93 -87 93 -146c0 -93 -85 -153 -178 -161v-2c27 -27 34 -51 34 -86c0 -51 -78 -119 -78 -159c0 -19 8 -27 26 -27c29 0 74 28 159 134zM857 481c0 35 -15 65 -43 88 c-59 -60 -84 -133 -116 -202c22 0 44 -7 62 -18c51 9 97 74 97 132'], + 0x212C: [699,21,1060,55,985,'966 690l17 -45c-30 -12 -51 -24 -74 -39c43 -34 76 -72 76 -131c0 -63 -47 -129 -139 -148v-2c65 -31 94 -86 94 -131c0 -57 -33 -126 -103 -172c-35 -24 -77 -35 -129 -35c-83 0 -110 58 -110 95c0 47 36 121 156 136l8 -50c-58 -5 -97 -41 -97 -84 c0 -30 22 -42 45 -42c62 0 101 82 101 156c0 41 -12 81 -39 102c-15 -4 -37 -6 -54 -6c-13 0 -25 4 -35 6c-118 -226 -272 -321 -443 -321c-116 0 -185 54 -185 129c0 50 34 93 81 93c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68v-1c17 -21 43 -31 77 -31 c104 0 185 47 301 248c89 156 150 247 265 320c-62 38 -123 42 -177 42c-176 0 -359 -79 -359 -237c0 -59 45 -98 100 -98c73 0 166 66 172 219h50c0 -133 -83 -274 -228 -274c-50 0 -98 10 -133 42c-30 27 -52 72 -52 118c0 104 79 186 178 233c83 40 179 52 263 52 c79 0 178 -14 252 -58c35 21 66 34 111 49zM871 480c0 29 -8 57 -26 77c-50 -49 -83 -102 -130 -189c16 -1 51 -4 71 -14c53 10 85 69 85 126'], + 0x212F: [462,14,726,35,648,'35 284l29 35c35 -41 84 -61 133 -69c68 117 208 212 328 212c71 0 123 -33 123 -84c0 -24 -8 -50 -35 -78c-60 -64 -188 -103 -308 -106c-15 -14 -32 -61 -32 -100s22 -58 54 -58c71 0 195 88 267 176l32 -32c-50 -62 -116 -123 -189 -160c-42 -21 -86 -34 -135 -34 c-91 0 -144 49 -144 124c0 31 5 63 17 94c-51 11 -105 37 -140 80zM330 244l1 -1c142 16 219 86 219 147c0 20 -17 27 -26 27c-53 0 -120 -60 -194 -173'], + 0x2130: [699,21,826,95,791,'414 683l-14 -48c-27 8 -45 9 -77 9c-83 0 -137 -38 -137 -95c0 -66 67 -90 148 -96c21 129 194 234 327 234c87 0 130 -25 130 -80c0 -80 -141 -188 -340 -209v-3c50 -6 80 -15 80 -37c0 -23 -23 -41 -72 -41c-25 0 -49 7 -63 14c-97 -33 -157 -111 -157 -196 c0 -59 43 -101 114 -101c88 0 168 52 168 136c0 43 -34 64 -59 64c-58 0 -104 -36 -129 -128l-49 10c24 114 92 173 206 173c98 0 145 -43 145 -116c0 -45 -23 -82 -53 -111c-59 -57 -156 -83 -234 -83c-129 0 -243 60 -243 177c0 101 85 186 239 224v2c-3 5 -6 11 -7 16 c-146 8 -242 65 -242 154c0 79 84 147 216 147c39 0 70 -2 103 -16zM456 455l2 -2c137 19 242 88 242 148c0 23 -14 31 -45 31c-76 0 -174 -90 -199 -177'], + 0x2131: [699,21,1042,65,1025,'999 699l26 -42c-56 -49 -140 -87 -218 -87c-152 0 -253 74 -357 74c-116 0 -197 -67 -197 -152c0 -74 52 -101 92 -101c49 0 110 34 136 144l45 -9c-9 -115 -94 -190 -192 -190c-30 0 -60 7 -89 22c-47 25 -83 75 -83 137c0 73 46 125 118 163c60 32 138 41 229 41 c111 0 240 -38 346 -38c34 0 100 13 144 38zM718 558l35 -36c-29 -33 -41 -70 -72 -152c42 8 87 13 134 13c18 25 47 56 79 56c31 0 48 -22 48 -44c0 -40 -36 -73 -100 -81c0 -39 5 -64 8 -73l-70 -26c-3 11 -4 22 -4 34c0 18 2 30 6 50c-47 0 -91 -5 -133 -14 c-87 -219 -254 -306 -406 -306c-116 0 -178 54 -178 129c0 50 37 93 84 93c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68v-1c11 -15 35 -31 80 -31c104 0 173 77 230 186c1 2 3 5 4 8c-68 -32 -118 -66 -140 -85l-35 36c36 34 116 97 227 144c83 145 131 192 193 235'], + 0x2133: [699,21,1300,60,1245,'1234 691l11 -17c-198 -305 -315 -544 -315 -606c0 -19 8 -27 26 -27c30 0 83 40 167 133l37 -34c-80 -96 -149 -158 -232 -158c-77 0 -119 31 -119 95c0 102 94 286 284 539l-2 1c-90 -62 -168 -163 -289 -379c-48 -85 -83 -148 -124 -188c-37 -36 -73 -54 -124 -54 c-42 0 -81 31 -81 76c0 32 12 75 35 121c76 154 177 301 259 414l-1 1c-99 -69 -164 -159 -253 -306c-70 -116 -121 -205 -175 -260c-39 -40 -80 -63 -137 -63c-82 0 -141 43 -141 118c0 51 37 91 84 91c44 0 70 -36 70 -70c0 -29 -18 -64 -63 -64v-1c13 -18 36 -19 61 -19 c66 0 105 57 210 229c92 151 163 250 231 317c86 86 163 119 235 119c15 0 24 -2 37 -8l10 -17c-141 -196 -276 -433 -322 -537c-5 -11 -19 -44 -19 -60c0 -5 2 -14 11 -14c43 0 120 147 145 194c66 124 147 249 231 334c65 66 134 108 201 108c11 0 40 -1 52 -8'], + 0x2134: [462,14,848,35,780,'757 232l23 -39c-31 -21 -57 -31 -99 -31c-24 0 -45 3 -63 9c-41 -65 -92 -117 -143 -148c-43 -26 -86 -37 -131 -37c-83 0 -143 40 -143 124c0 38 9 76 24 113c-28 -13 -53 -20 -96 -20c-32 0 -63 6 -94 22l12 43c31 -13 51 -15 80 -15c87 0 137 43 163 71 c39 42 87 80 137 104c54 26 99 34 148 34c69 0 107 -41 107 -108c0 -42 -12 -89 -35 -131c9 -8 28 -11 38 -11c28 0 42 0 72 20zM626 371c0 26 -18 41 -47 41c-112 0 -263 -220 -263 -323c0 -39 19 -53 46 -53c85 0 163 88 209 162c-20 18 -30 50 -30 75c0 51 41 90 85 98'], + 0x1D4D0: [699,21,984,50,955,'945 691l10 -17c-94 -182 -162 -342 -259 -569c32 9 51 17 80 33l21 -43c-35 -27 -89 -42 -127 -50l-18 -45h-147l18 41c-42 0 -90 10 -135 29c-53 -55 -114 -91 -187 -91c-92 0 -151 56 -151 131c0 51 37 91 84 91c44 0 70 -36 70 -70c0 -29 -23 -58 -63 -65v-1 c9 -18 32 -31 61 -31c43 0 88 24 131 64c-74 46 -131 117 -131 208c0 122 115 202 221 202c58 0 117 -25 161 -68c42 64 85 123 131 165c58 53 121 94 183 94c8 0 25 -2 47 -8zM809 610l-2 2c-65 -42 -110 -96 -188 -217c14 -24 25 -50 30 -79h2c49 103 105 208 158 294z M596 222c0 42 -7 77 -18 107c-40 -64 -72 -123 -146 -210c37 -15 78 -23 117 -23c19 38 33 69 45 97c2 9 2 22 2 29zM547 384c-36 45 -85 64 -126 64c-64 0 -128 -53 -128 -135c0 -74 36 -130 88 -166c63 72 115 154 166 237'], + 0x1D4D1: [699,21,1060,55,985,'966 690l17 -45c-30 -12 -51 -24 -74 -39c43 -34 76 -72 76 -131c0 -63 -47 -129 -139 -148v-2c65 -31 94 -86 94 -131c0 -57 -33 -126 -103 -172c-35 -24 -77 -35 -129 -35c-83 0 -110 58 -110 95c0 47 36 121 156 136l8 -50c-58 -5 -97 -41 -97 -84 c0 -30 22 -42 45 -42c62 0 101 82 101 156c0 41 -12 81 -39 102c-15 -4 -37 -6 -54 -6c-13 0 -25 4 -35 6c-118 -226 -272 -321 -443 -321c-116 0 -185 54 -185 129c0 50 34 93 81 93c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68v-1c17 -21 43 -31 77 -31 c104 0 185 47 301 248c89 156 150 247 265 320c-62 38 -123 42 -177 42c-176 0 -359 -79 -359 -237c0 -59 45 -98 100 -98c73 0 166 66 172 219h50c0 -133 -83 -274 -228 -274c-50 0 -98 10 -133 42c-30 27 -52 72 -52 118c0 104 79 186 178 233c83 40 179 52 263 52 c79 0 178 -14 252 -58c35 21 66 34 111 49zM871 480c0 29 -8 57 -26 77c-50 -49 -83 -102 -130 -189c16 -1 51 -4 71 -14c53 10 85 69 85 126'], + 0x1D4D2: [699,21,912,60,877,'487 668l-22 -45c-35 21 -85 21 -111 21c-91 0 -203 -38 -203 -140c0 -76 64 -115 116 -120c108 157 329 303 481 303c78 0 129 -22 129 -79c0 -123 -239 -287 -492 -289c-46 -70 -60 -129 -60 -179c0 -61 45 -106 107 -106c100 0 173 67 173 140c0 50 -34 70 -58 70 c-64 0 -109 -46 -125 -136l-50 8c13 110 91 183 202 183c87 0 145 -37 145 -110c0 -57 -44 -118 -103 -159c-54 -37 -127 -51 -198 -51c-125 0 -227 65 -227 181c0 55 12 108 44 167c-90 20 -175 76 -175 175c0 100 110 197 287 197c39 0 87 -2 140 -31zM414 375l1 -1 c123 2 371 107 371 221c0 22 -15 37 -46 37c-87 0 -235 -113 -326 -257'], + 0x1D4D3: [699,21,991,60,906,'889 613l17 -47c-31 -13 -44 -23 -69 -48c38 -60 61 -127 61 -194c0 -197 -175 -345 -355 -345c-64 0 -123 12 -169 28c-49 -16 -96 -24 -158 -24c-45 0 -81 4 -107 15c-32 13 -49 36 -49 63c0 29 20 51 51 65c25 11 56 16 91 16c78 0 132 -29 186 -57 c43 32 87 90 169 221c54 85 96 150 182 219c-61 80 -164 119 -266 119c-89 0 -154 -22 -204 -60s-85 -92 -85 -160c0 -77 47 -136 134 -136c90 0 188 59 189 246h50c1 -20 1 -24 1 -36c0 -184 -142 -268 -239 -268c-138 0 -226 70 -226 202c0 90 55 158 122 201 c77 49 171 66 252 66c137 0 256 -53 330 -133c39 26 48 32 92 47zM461 49v-2c20 -7 52 -13 78 -13c135 0 261 101 261 302c0 40 -7 75 -18 108h-1c-29 -43 -56 -99 -79 -144c-53 -104 -134 -198 -241 -251zM310 51v1c-41 27 -79 35 -115 35c-13 0 -44 -5 -44 -22 c0 -20 21 -27 64 -27c34 0 65 4 95 13'], + 0x1D4D4: [699,21,826,95,791,'414 683l-14 -48c-27 8 -45 9 -77 9c-83 0 -137 -38 -137 -95c0 -66 67 -90 148 -96c21 129 194 234 327 234c87 0 130 -25 130 -80c0 -80 -141 -188 -340 -209v-3c50 -6 80 -15 80 -37c0 -23 -23 -41 -72 -41c-25 0 -49 7 -63 14c-97 -33 -157 -111 -157 -196 c0 -59 43 -101 114 -101c88 0 168 52 168 136c0 43 -34 64 -59 64c-58 0 -104 -36 -129 -128l-49 10c24 114 92 173 206 173c98 0 145 -43 145 -116c0 -45 -23 -82 -53 -111c-59 -57 -156 -83 -234 -83c-129 0 -243 60 -243 177c0 101 85 186 239 224v2c-3 5 -6 11 -7 16 c-146 8 -242 65 -242 154c0 79 84 147 216 147c39 0 70 -2 103 -16zM456 455l2 -2c137 19 242 88 242 148c0 23 -14 31 -45 31c-76 0 -174 -90 -199 -177'], + 0x1D4D5: [699,21,1042,65,1025,'999 699l26 -42c-56 -49 -140 -87 -218 -87c-152 0 -253 74 -357 74c-116 0 -197 -67 -197 -152c0 -74 52 -101 92 -101c49 0 110 34 136 144l45 -9c-9 -115 -94 -190 -192 -190c-30 0 -60 7 -89 22c-47 25 -83 75 -83 137c0 73 46 125 118 163c60 32 138 41 229 41 c111 0 240 -38 346 -38c34 0 100 13 144 38zM718 558l35 -36c-29 -33 -41 -70 -72 -152c42 8 87 13 134 13c18 25 47 56 79 56c31 0 48 -22 48 -44c0 -40 -36 -73 -100 -81c0 -39 5 -64 8 -73l-70 -26c-3 11 -4 22 -4 34c0 18 2 30 6 50c-47 0 -91 -5 -133 -14 c-87 -219 -254 -306 -406 -306c-116 0 -178 54 -178 129c0 50 37 93 84 93c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68v-1c11 -15 35 -31 80 -31c104 0 173 77 230 186c1 2 3 5 4 8c-68 -32 -118 -66 -140 -85l-35 36c36 34 116 97 227 144c83 145 131 192 193 235'], + 0x1D4D6: [699,21,834,82,799,'422 682l-14 -48c-28 8 -62 10 -84 10c-92 0 -151 -35 -151 -96c0 -52 47 -77 111 -91c98 143 259 230 381 230c81 0 134 -25 134 -85c0 -58 -61 -114 -150 -154c-73 -33 -165 -55 -259 -57c-15 -27 -30 -74 -30 -112c0 -34 12 -62 46 -62c92 0 132 33 262 151l39 -32 c-29 -27 -44 -68 -66 -127c-55 -152 -183 -230 -369 -230c-116 0 -188 54 -188 129c0 50 36 93 83 93c44 0 69 -33 69 -67c0 -29 -18 -61 -58 -68v-1c11 -15 41 -31 86 -31c99 0 172 47 229 145l-2 2c-28 -12 -70 -19 -102 -19c-93 0 -163 50 -163 134c0 25 7 67 27 105 c-103 23 -171 71 -171 147c0 86 100 151 235 151c40 0 70 -4 105 -17zM424 447v-1c153 9 284 73 284 147c0 24 -13 39 -43 39c-76 0 -176 -84 -241 -185'], + 0x1D4D7: [699,21,1171,65,1154,'816 658l-24 -19c-82 -65 -151 -138 -221 -274c17 4 76 21 89 27c151 198 312 307 417 307c50 0 77 -23 77 -63c0 -110 -157 -195 -343 -248c-94 -133 -167 -264 -167 -319c0 -19 10 -28 29 -28c29 0 68 27 146 124l42 -26c-39 -60 -75 -96 -111 -121 c-34 -23 -67 -36 -104 -36c-89 0 -122 51 -122 114c0 79 50 172 83 222c-22 -8 -58 -18 -73 -23c-78 -143 -222 -316 -365 -316c-64 0 -104 24 -104 77c0 45 26 86 61 119c61 58 146 90 260 130c50 80 84 147 212 262v2c-115 0 -141 75 -214 75c-54 0 -94 -51 -94 -99 c0 -52 30 -72 60 -72c20 0 39 6 57 23l29 -35c-27 -29 -58 -43 -106 -43c-85 0 -131 59 -131 127c0 73 63 154 189 154c106 0 168 -50 250 -50c23 0 49 2 79 13c22 8 42 19 69 37zM875 473v-2c69 17 190 82 190 156c0 12 -5 17 -18 17c-33 0 -112 -68 -172 -171zM344 225 l-1 2c-99 -31 -187 -109 -187 -173c0 -16 9 -20 20 -20c41 0 118 97 168 191'], + 0x1D4D8: [699,21,997,47,977,'141 66v-1c14 -18 62 -31 87 -31c113 0 209 40 296 231c6 12 11 25 18 38c-34 12 -59 30 -79 56c-22 27 -37 63 -37 108c0 54 27 105 60 137c63 60 154 83 237 83c48 0 95 -5 121 -9c34 16 68 21 81 21c31 0 52 -16 52 -35c0 -43 -38 -63 -93 -63c-10 0 -21 1 -32 3 c-59 -42 -92 -142 -136 -241l1 -2c38 18 81 52 120 115l43 -26c-26 -50 -85 -132 -195 -154c-35 -73 -73 -142 -122 -187c-93 -85 -194 -130 -328 -130c-116 0 -188 54 -188 129c0 50 37 93 84 93c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68zM769 604v3 c-186 0 -252 -80 -252 -166c0 -35 18 -66 54 -83c47 92 101 188 198 246'], + 0x1D4D9: [699,224,906,19,886,'625 228l35 -36c-42 -46 -101 -79 -171 -104c-74 -156 -217 -312 -365 -312c-65 0 -105 34 -105 91c0 126 182 226 345 260c26 72 52 130 82 193c-33 8 -63 26 -83 52c-20 25 -30 59 -30 93c0 87 56 148 124 183c55 28 118 39 175 39c64 0 87 -6 122 -9 c31 21 61 21 78 21c34 0 54 -16 54 -35c0 -43 -39 -63 -92 -63c-11 0 -22 1 -33 3c-41 -32 -96 -126 -141 -222l2 -1c34 15 76 49 117 113l43 -25c-36 -72 -116 -149 -196 -156c-24 -55 -33 -85 -58 -137l3 -1c30 12 58 24 94 53zM678 605v2c-53 0 -116 0 -168 -24 c-48 -22 -86 -67 -86 -124c0 -45 20 -76 50 -85c50 93 117 166 204 231zM333 50l-1 1c-89 -25 -222 -115 -222 -191c0 -17 12 -29 29 -29c68 0 148 115 194 219'], + 0x1D4DA: [699,21,1154,45,1130,'842 699l30 -41c-121 -85 -170 -180 -222 -278c15 0 32 -7 40 -12c26 12 61 42 115 118c97 139 178 213 250 213c51 0 75 -36 75 -68c0 -38 -29 -67 -66 -67s-60 21 -65 53h-2c-42 -131 -134 -247 -256 -280v-3c35 -20 49 -51 49 -84c0 -22 -7 -45 -18 -66 c-25 -46 -65 -92 -65 -116c0 -19 8 -27 26 -27c29 0 70 28 155 134l39 -33c-73 -103 -145 -160 -222 -160c-78 0 -119 42 -119 94c0 38 24 80 49 118c19 28 37 57 37 90c0 9 -10 27 -27 27h-21c-103 -254 -259 -332 -401 -332c-112 0 -178 54 -178 129c0 50 37 93 84 93 c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68v-1c11 -15 25 -31 70 -31c86 0 166 83 218 186c71 141 116 233 244 336h-9c-119 0 -181 88 -243 88c-53 0 -110 -34 -110 -108c0 -51 29 -99 79 -99c34 0 49 8 81 48l38 -30c-31 -43 -72 -73 -134 -73c-97 0 -155 63 -155 152 c0 80 83 165 205 165c50 0 119 0 180 -36c35 -20 64 -27 79 -27c37 0 97 6 160 63'], + 0x1D4DB: [699,21,1036,40,1015,'678 648l-22 -44c-72 40 -135 40 -166 40c-97 0 -201 -47 -201 -141c0 -90 98 -141 231 -141c12 0 25 0 44 2c28 57 48 96 83 148c54 78 161 167 258 167c78 0 110 -37 110 -87c0 -91 -141 -220 -320 -269c-60 -122 -148 -219 -254 -272v-2c34 -10 59 -13 78 -13 c87 0 186 39 278 141l36 -35c-94 -110 -201 -163 -311 -163c-82 0 -128 15 -168 29c-46 -14 -95 -25 -162 -25c-48 0 -83 4 -108 17c-28 14 -44 38 -44 61c0 25 17 47 44 62c26 14 60 21 100 21c75 0 130 -29 184 -57c51 34 104 106 168 220h-28c-140 0 -310 51 -310 200 c0 108 126 192 287 192c50 0 125 -8 193 -51zM722 389l2 -1c91 31 200 107 200 202c0 23 -17 34 -33 34c-62 0 -128 -125 -169 -235zM290 53v1c-41 27 -79 35 -115 35c-13 0 -44 -5 -44 -22c0 -20 21 -29 64 -29c34 0 65 6 95 15'], + 0x1D4DC: [699,21,1300,60,1245,'1234 691l11 -17c-198 -305 -315 -544 -315 -606c0 -19 8 -27 26 -27c30 0 83 40 167 133l37 -34c-80 -96 -149 -158 -232 -158c-77 0 -119 31 -119 95c0 102 94 286 284 539l-2 1c-90 -62 -168 -163 -289 -379c-48 -85 -83 -148 -124 -188c-37 -36 -73 -54 -124 -54 c-42 0 -81 31 -81 76c0 32 12 75 35 121c76 154 177 301 259 414l-1 1c-99 -69 -164 -159 -253 -306c-70 -116 -121 -205 -175 -260c-39 -40 -80 -63 -137 -63c-82 0 -141 43 -141 118c0 51 37 91 84 91c44 0 70 -36 70 -70c0 -29 -18 -64 -63 -64v-1c13 -18 36 -19 61 -19 c66 0 105 57 210 229c92 151 163 250 231 317c86 86 163 119 235 119c15 0 24 -2 37 -8l10 -17c-141 -196 -276 -433 -322 -537c-5 -11 -19 -44 -19 -60c0 -5 2 -14 11 -14c43 0 120 147 145 194c66 124 147 249 231 334c65 66 134 108 201 108c11 0 40 -1 52 -8'], + 0x1D4DD: [699,21,1095,60,1078,'695 175h4c38 50 64 107 85 165c36 101 67 247 133 316c26 28 48 43 89 43c48 0 72 -36 72 -68c0 -38 -31 -67 -66 -67c-30 0 -51 15 -64 39h-4c-43 -37 -67 -186 -127 -328c-47 -110 -125 -224 -209 -288h-51c15 80 14 171 18 310c2 60 12 151 28 215h-2 c-36 -57 -69 -120 -100 -183c-58 -117 -125 -236 -171 -284c-43 -45 -89 -66 -138 -66c-74 0 -132 45 -132 119c0 42 35 90 86 90c47 0 71 -35 71 -71c0 -23 -22 -62 -66 -62v-1c5 -10 23 -20 48 -20c79 0 147 111 246 308c69 138 117 226 173 284c29 31 65 51 101 68 l25 -22c-19 -54 -22 -174 -31 -297c-5 -68 -10 -146 -18 -200'], + 0x1D4DE: [699,21,809,72,749,'749 562l-38 -9c-18 55 -86 91 -145 91c-179 0 -366 -240 -367 -481c0 -66 35 -129 106 -129c48 0 73 9 106 25c109 53 187 182 187 313c0 72 -39 127 -76 127c-58 0 -100 -66 -100 -139c0 -32 8 -65 26 -95l-44 -22c-35 57 -37 96 -37 126c0 110 76 195 182 195 c76 0 149 -55 149 -172c0 -182 -178 -413 -415 -413c-134 0 -211 94 -211 211c0 274 223 509 488 509c108 0 183 -64 189 -137'], + 0x1D4DF: [699,21,1025,55,994,'914 698l19 -47c-21 -9 -39 -19 -55 -29c70 -46 116 -108 116 -183c0 -92 -64 -165 -170 -165c-45 0 -94 30 -94 81c0 33 13 55 29 71l41 -28c-12 -14 -15 -28 -15 -37c0 -22 20 -32 33 -32c36 0 62 42 62 100c0 59 -27 106 -67 140c-75 -78 -99 -179 -149 -274 c-124 -235 -260 -316 -424 -316c-116 0 -185 55 -185 130c0 50 34 92 81 92c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68v-1c18 -22 49 -31 84 -31c114 0 170 51 279 248c80 145 147 253 241 328c-49 23 -104 34 -151 34c-197 0 -346 -99 -346 -225c0 -59 42 -98 92 -98 c74 0 140 56 149 208h50c0 -122 -55 -263 -210 -263c-95 0 -172 55 -172 157c0 86 65 174 175 226c69 33 156 50 255 50c80 0 158 -16 224 -45c30 17 62 32 98 44'], + 0x1D4E0: [699,52,809,72,749,'749 562l-38 -9c-18 55 -86 91 -145 91c-179 0 -366 -240 -367 -481c0 -66 35 -129 106 -129c52 0 77 11 115 29c-14 26 -31 29 -39 29c-17 0 -26 -2 -60 -29l-30 40c39 40 81 73 121 73c36 0 64 -10 93 -45c57 64 93 152 93 241c0 72 -29 127 -86 127 c-60 0 -90 -64 -90 -129c0 -35 10 -70 27 -95l-44 -22c-26 40 -38 83 -38 124c0 99 70 187 182 187c76 0 149 -55 149 -172c0 -106 -61 -229 -158 -313c14 -20 35 -48 51 -48c19 0 33 3 82 50l33 -34c-48 -63 -88 -99 -142 -99c-53 0 -84 16 -117 69 c-50 -23 -105 -38 -164 -38c-134 0 -211 94 -211 211c0 274 223 509 488 509c108 0 183 -64 189 -137'], + 0x1D4E1: [699,21,1048,55,973,'934 175l39 -33c-73 -103 -139 -160 -224 -160c-78 0 -123 42 -123 94c0 71 85 135 85 191c0 13 -5 25 -14 27c-13 0 -25 2 -30 5c-120 -232 -262 -320 -427 -320c-116 0 -185 55 -185 130c0 50 34 92 81 92c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68v-1 c18 -22 52 -31 87 -31c114 0 167 51 276 248c81 147 145 253 241 328c-49 23 -105 34 -151 34c-197 0 -346 -99 -346 -225c0 -59 44 -98 92 -98c44 0 82 12 113 66c19 32 32 76 35 133h50c0 -122 -56 -254 -211 -254c-90 0 -170 57 -170 157c0 86 65 173 175 225 c69 33 156 51 255 51c80 0 158 -16 224 -45c30 17 61 31 98 44l19 -47c-21 -9 -38 -18 -55 -29c55 -36 93 -87 93 -146c0 -93 -85 -153 -178 -161v-2c27 -27 34 -51 34 -86c0 -51 -78 -119 -78 -159c0 -19 8 -27 26 -27c29 0 74 28 159 134zM857 481c0 35 -15 65 -43 88 c-59 -60 -84 -133 -116 -202c22 0 44 -7 62 -18c51 9 97 74 97 132'], + 0x1D4E2: [699,21,816,81,781,'437 136l-49 -10c-17 108 -64 125 -107 125c-54 0 -86 -52 -86 -102c0 -49 49 -115 126 -115c82 0 163 48 163 163c0 113 -159 153 -159 285c0 148 162 217 281 217c77 0 175 -33 175 -122c0 -87 -110 -151 -201 -151v50c61 5 110 33 110 95c0 50 -44 73 -85 73 c-67 0 -152 -53 -152 -142c0 -125 165 -159 165 -292c0 -140 -134 -231 -303 -231c-121 0 -234 50 -234 168c0 104 98 159 194 159c88 0 149 -49 162 -170'], + 0x1D4E3: [699,21,1030,65,1025,'999 699l26 -42c-56 -49 -140 -87 -218 -87c-152 0 -253 74 -357 74c-116 0 -197 -72 -197 -157c0 -75 48 -107 101 -107c79 0 123 54 160 169l48 -12c-26 -136 -113 -212 -210 -212c-40 0 -76 5 -108 22c-47 25 -82 71 -82 133c0 73 46 140 118 178c60 32 138 41 229 41 c111 0 240 -38 346 -38c34 0 100 13 144 38zM718 558l35 -36c-63 -64 -76 -170 -111 -257c-26 -67 -63 -123 -108 -168c-84 -84 -194 -118 -290 -118c-117 0 -179 54 -179 129c0 50 37 93 84 93c44 0 68 -33 68 -67c0 -29 -18 -61 -58 -68v-1c11 -15 35 -31 80 -31 c92 0 164 52 251 226c95 190 128 217 228 298'], + 0x1D4E4: [699,21,964,60,904,'904 669l-304 -563c-5 -10 -9 -24 -9 -36c0 -16 6 -29 23 -29c29 0 72 33 149 130l41 -33c-40 -59 -74 -93 -112 -120c-35 -25 -68 -36 -104 -36c-67 0 -106 29 -118 86h-1c-56 -70 -112 -89 -180 -89c-63 0 -113 35 -113 96c0 36 20 80 79 171l149 230 c20 30 30 62 30 89c0 45 -29 79 -97 79c-97 0 -186 -70 -186 -164c0 -41 24 -70 56 -70c57 0 86 38 111 104l48 -15c-20 -67 -72 -144 -166 -144c-33 0 -61 7 -84 21c-35 22 -56 60 -56 104c0 129 143 219 286 219c105 0 209 -50 209 -152c0 -32 -22 -76 -54 -128l-180 -291 c-8 -12 -24 -43 -24 -67c0 -19 9 -27 27 -27c27 0 63 26 98 66c80 90 166 246 200 307l147 262h135'], + 0x1D4E5: [699,21,1040,60,1024,'332 62l3 -4c174 105 249 222 332 349c121 185 191 292 283 292c57 0 74 -40 74 -68c0 -37 -27 -67 -64 -67c-33 0 -59 21 -66 53h-2c-38 -32 -91 -99 -168 -224c-96 -155 -187 -258 -262 -314c-77 -59 -149 -100 -228 -100c-8 0 -15 0 -66 9c150 145 115 357 349 564v4 c-48 0 -81 2 -119 17c-68 26 -86 71 -138 71c-54 0 -109 -35 -109 -109c0 -51 32 -87 72 -87c34 0 58 10 90 50l38 -32c-36 -41 -72 -73 -134 -73c-82 0 -157 52 -157 148c0 103 106 158 204 158c49 0 99 -1 160 -36c35 -20 64 -27 79 -27c37 0 97 5 160 63l36 -35 c-106 -112 -145 -191 -193 -309c-45 -110 -106 -218 -174 -293'], + 0x1D4E6: [699,21,1320,60,1306,'634 62l3 -4c130 71 229 222 312 349c121 185 191 292 283 292c57 0 74 -40 74 -68c0 -36 -26 -67 -63 -67c-35 0 -60 21 -67 53h-2c-38 -32 -91 -99 -168 -224c-127 -206 -288 -414 -470 -414c-16 0 -28 0 -58 9c56 50 91 109 160 285c7 19 26 63 44 103h-2 c-86 -137 -244 -397 -446 -397c-13 0 -27 0 -60 9c131 107 97 351 343 566v2c-48 0 -81 2 -119 17c-68 26 -86 71 -138 71c-54 0 -109 -35 -109 -109c0 -51 32 -87 72 -87c34 0 58 10 90 50l38 -32c-36 -41 -72 -73 -134 -73c-95 0 -157 59 -157 148c0 80 85 158 204 158 c49 0 99 -1 160 -36c35 -20 64 -27 79 -27c37 0 97 5 160 63l36 -35c-212 -207 -176 -381 -374 -602l2 -4c213 91 367 556 607 629c18 0 37 -4 49 -8c-171 -184 -167 -437 -349 -617'], + 0x1D4E7: [699,21,1033,64,1010,'664 567h2c41 59 102 132 203 132c70 0 141 -43 141 -119c0 -42 -33 -88 -84 -88c-47 0 -73 33 -73 69c0 23 22 62 66 62v1c-5 10 -23 20 -48 20c-82 0 -134 -63 -187 -193c-51 -125 -100 -276 -100 -339c0 -48 24 -71 50 -71c39 0 86 32 170 128l38 -30 c-77 -90 -155 -157 -239 -157c-89 0 -126 38 -158 105h-2c-59 -78 -139 -108 -228 -108c-70 0 -151 43 -151 119c0 42 35 90 86 90c47 0 71 -35 71 -71c0 -23 -22 -62 -66 -62v-1c5 -10 33 -20 58 -20c110 0 175 68 239 194c58 114 92 227 92 275c0 91 -24 141 -99 141 c-97 0 -191 -91 -191 -183c0 -49 26 -83 71 -83c50 0 72 29 98 79l44 -18c-35 -68 -73 -116 -157 -116c-82 0 -147 49 -147 144c0 72 60 140 118 180c57 39 111 52 169 52c111 0 187 -51 214 -132'], + 0x1D4E8: [699,224,989,60,963,'825 669h138c-165 -220 -268 -370 -360 -548l2 -1c23 11 60 32 100 64l35 -36c-63 -65 -128 -94 -178 -116c-64 -130 -196 -256 -353 -256c-55 0 -106 27 -106 83c0 59 44 107 105 137c63 31 145 43 229 62c16 34 38 70 56 101l-3 1c-38 -33 -82 -62 -145 -62 c-70 0 -113 34 -113 96c0 49 31 89 114 196c98 125 98 138 98 175c0 45 -39 79 -107 79c-97 0 -186 -70 -186 -164c0 -41 24 -70 56 -70c56 0 92 38 116 102l43 -12c-18 -67 -69 -145 -163 -145c-32 0 -61 5 -84 19c-37 22 -59 62 -59 106c0 129 143 219 286 219 c105 0 219 -50 219 -152c0 -59 -39 -103 -145 -247c-59 -80 -67 -100 -67 -122c0 -11 8 -21 23 -21c49 0 151 114 265 266zM396 -23l-1 1c-61 -12 -201 -50 -201 -121c0 -11 7 -26 29 -26c42 0 111 35 173 146'], + 0x1D4E9: [699,21,996,50,976,'440 531l45 -22c-31 -63 -86 -117 -177 -117c-89 0 -155 50 -155 133c0 81 86 174 240 174c111 0 209 -27 278 -72c57 41 112 61 164 61c102 0 141 -43 141 -77c0 -35 -27 -87 -143 -87c-46 0 -85 14 -131 28c-54 -70 -80 -144 -106 -216c24 1 58 11 92 43l32 -33 c-40 -49 -91 -90 -157 -90c-5 -11 -10 -21 -15 -31c-33 -61 -76 -113 -127 -154c40 -15 82 -24 126 -24c68 0 179 28 217 132h50c-27 -125 -110 -200 -264 -200c-65 0 -116 5 -157 18c-20 7 -37 14 -52 22c-50 -23 -103 -37 -160 -37c-104 0 -131 42 -131 79 c0 25 15 47 42 62c25 14 61 21 100 21c47 0 96 -19 147 -40c11 14 22 29 32 47c20 37 35 77 56 128h-2c-18 0 -52 -3 -103 -44l-30 40c49 56 100 84 171 84c36 78 82 158 151 217c-73 35 -139 55 -225 55c-81 0 -145 -42 -145 -108c0 -52 34 -76 77 -76c44 0 83 22 119 84z M742 600v-2c18 -6 56 -19 90 -19c29 0 53 5 53 29c0 12 -12 25 -49 25c-30 0 -64 -6 -94 -33zM278 56c-31 18 -60 33 -97 33c-33 0 -40 -15 -40 -28c0 -15 22 -24 57 -24c27 0 54 6 80 19'], + 0x1D4EA: [462,14,942,35,865,'830 210l35 -29c-97 -126 -186 -192 -274 -192c-39 0 -70 13 -87 56c-65 -49 -105 -59 -163 -59c-74 0 -142 33 -142 124c0 38 9 76 24 111c-28 -11 -51 -18 -92 -18c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15c98 0 151 56 172 81v-1c76 77 184 129 281 129 c36 0 112 0 142 -75l-41 -19c-27 38 -48 44 -88 44c-140 0 -281 -216 -281 -325c0 -34 19 -51 45 -51c38 0 98 25 133 72c-1 9 -1 18 -1 29c0 86 57 190 138 190c35 0 50 -20 50 -49c0 -61 -54 -144 -121 -191c8 -34 16 -48 49 -48c31 0 97 19 223 171'], + 0x1D4EB: [699,14,646,60,624,'92 541l31 36c37 -31 101 -69 137 -71c21 26 43 51 65 74c71 73 141 119 198 119c56 0 101 -29 101 -71c0 -60 -48 -118 -121 -154c-44 -21 -100 -35 -156 -35c-63 -86 -180 -288 -180 -370c0 -20 16 -33 33 -33c87 0 169 93 212 170c-17 30 -17 58 -17 81 c0 86 56 147 103 147c33 0 45 -21 45 -49c0 -49 -31 -122 -50 -154c15 -11 28 -14 48 -14c11 0 27 3 39 7l11 -44c-21 -9 -44 -13 -66 -13s-44 4 -60 13c-85 -124 -170 -194 -287 -194c-68 0 -118 40 -118 120c0 81 71 226 163 352c-40 12 -83 37 -131 83zM378 503l1 -2 c83 2 155 63 155 127c0 16 -9 21 -18 21c-28 0 -60 -23 -138 -146'], + 0x1D4EC: [462,14,764,35,683,'35 225l12 43c31 -13 53 -15 82 -15c84 0 135 39 161 68c75 81 173 141 268 141c65 0 125 -26 125 -83c0 -43 -26 -87 -73 -87c-39 0 -57 22 -57 50c0 39 39 40 39 59c0 8 -10 11 -17 11c-127 0 -261 -210 -261 -320c0 -40 21 -56 42 -56c61 0 145 33 275 192l34 -30 c-116 -148 -210 -212 -318 -212c-88 0 -148 46 -148 123c0 36 9 76 25 113c-28 -12 -51 -19 -93 -19c-32 0 -65 6 -96 22'], + 0x1D4ED: [699,14,949,28,912,'912 699l-323 -598c-4 -7 -11 -27 -11 -39s8 -23 16 -23c31 0 89 22 211 170l35 -29c-88 -120 -165 -191 -273 -191c-69 0 -92 34 -93 75h-2c-43 -46 -103 -78 -179 -78c-74 0 -125 44 -125 112c0 38 14 78 35 118c-25 -8 -44 -13 -79 -13c-32 0 -65 6 -96 22l12 43 c31 -13 53 -15 82 -15c78 0 124 35 154 63c53 52 112 99 181 127c33 13 72 19 103 19c35 0 67 -13 81 -39h2l145 276h124zM588 376c0 25 -14 36 -30 36c-44 0 -115 -44 -187 -146c-64 -91 -88 -152 -88 -193c0 -21 13 -37 30 -37c37 0 69 13 123 63c80 75 152 199 152 277'], + 0x1D4EE: [462,14,726,35,648,'35 284l29 35c35 -41 84 -61 133 -69c68 117 208 212 328 212c71 0 123 -33 123 -84c0 -24 -8 -50 -35 -78c-60 -64 -188 -103 -308 -106c-15 -14 -32 -61 -32 -100s22 -58 54 -58c71 0 195 88 267 176l32 -32c-50 -62 -116 -123 -189 -160c-42 -21 -86 -34 -135 -34 c-91 0 -144 49 -144 124c0 31 5 63 17 94c-51 11 -105 37 -140 80zM330 244l1 -1c142 16 219 86 219 147c0 20 -17 27 -26 27c-53 0 -120 -60 -194 -173'], + 0x1D4EF: [699,205,768,25,749,'25 -205l192 367c-12 20 -16 39 -16 59c0 57 52 116 131 152c112 219 190 326 310 326c69 0 107 -30 107 -73c0 -130 -194 -227 -300 -267l-117 -210c19 -9 37 -12 61 -12c36 0 85 8 137 54l27 -36c-61 -51 -118 -68 -177 -68c-29 0 -54 3 -75 9l-156 -301h-124zM483 432 l2 -2c81 39 174 112 174 189c0 24 -8 30 -26 30c-48 0 -131 -177 -150 -217'], + 0x1D4F0: [462,224,819,27,771,'771 449l-278 -518c21 -10 52 -12 73 -12c24 0 58 1 110 35l20 -41c-45 -33 -101 -44 -141 -44c-30 0 -63 5 -89 14c-63 -75 -152 -107 -238 -107c-84 0 -128 39 -128 77c0 46 53 82 100 100c39 15 92 15 121 15c16 0 50 -4 75 -8l40 72h-3c-44 -30 -87 -43 -143 -43 c-66 0 -117 43 -117 110c0 38 12 78 32 117c-24 -8 -48 -14 -82 -14c-32 0 -65 7 -96 23l12 43c31 -13 53 -16 82 -16c73 0 119 32 150 58c81 87 205 152 286 152c38 0 69 -10 88 -31h2l10 18h114zM591 375c0 30 -18 37 -33 37c-46 0 -110 -51 -187 -162 c-60 -86 -83 -138 -83 -176c0 -24 18 -35 30 -35c122 0 273 256 273 336zM369 -91c-20 6 -46 9 -63 9c-50 -1 -105 -17 -106 -62c0 -22 21 -30 40 -30c29 0 79 7 129 83'], + 0x1D4F1: [699,14,838,55,758,'722 214l36 -28c-93 -129 -188 -200 -283 -200c-57 0 -90 43 -90 83c0 33 10 78 46 129l108 151c7 10 17 25 17 43c0 9 -7 16 -20 16c-79 0 -211 -137 -327 -351l-31 -57h-123l249 458c-49 10 -106 34 -143 80l31 33c42 -39 108 -60 139 -64c77 144 132 192 224 192 c71 0 103 -37 103 -77c0 -116 -152 -166 -244 -173l-43 -79l3 -1c59 60 129 89 181 89c59 0 101 -25 101 -71c0 -30 -19 -69 -49 -117l-105 -171c-4 -6 -17 -27 -17 -43c0 -9 5 -20 17 -20c42 0 104 43 220 178zM442 509l1 -1c56 14 125 41 125 117c0 17 -11 24 -18 24 c-28 0 -43 -12 -108 -140'], + 0x1D4F2: [698,14,558,40,534,'534 633c0 -35 -28 -62 -64 -62s-63 28 -63 66c0 32 30 61 62 61c36 0 65 -29 65 -65zM450 205l36 -28c-99 -131 -157 -191 -249 -191c-61 0 -103 33 -103 92c0 57 28 104 68 178l49 91c-33 -18 -62 -29 -115 -29c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15 c98 0 151 56 172 81h118l-164 -315c-8 -15 -19 -45 -19 -69c0 -15 8 -29 21 -29c33 0 87 47 188 169'], + 0x1D4F3: [698,224,840,41,823,'823 633c0 -35 -28 -62 -64 -62s-63 28 -63 66c0 32 30 61 62 61c36 0 65 -29 65 -65zM710 449l-276 -518c21 -10 52 -12 73 -12c24 0 58 1 110 35l20 -41c-45 -33 -101 -44 -141 -44c-30 0 -63 5 -89 14c-63 -75 -152 -107 -238 -107c-85 0 -128 38 -128 77 c0 46 53 82 100 100c39 15 92 15 121 15c16 0 50 -4 75 -8l207 387c-33 -18 -72 -29 -126 -29c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15c98 0 161 56 182 81h112zM310 -91c-20 6 -46 9 -63 9c-50 -1 -105 -17 -106 -62c0 -22 21 -30 40 -30c29 0 79 7 129 83'], + 0x1D4F4: [699,14,810,55,730,'694 209l36 -28c-101 -129 -169 -195 -261 -195c-55 0 -101 24 -101 72c0 54 37 72 37 121c0 18 -6 36 -47 39l18 45c111 11 184 73 184 125c0 20 -19 20 -23 20c-76 0 -210 -134 -328 -351l-31 -57h-123l249 458c-49 10 -96 34 -133 80l31 33c43 -40 99 -59 129 -64 c77 144 132 192 224 192c63 0 103 -31 103 -72c0 -115 -152 -171 -244 -178l-43 -79l3 -1c60 60 121 89 191 89c56 0 95 -32 95 -67c0 -64 -97 -135 -210 -154v-3c39 -26 55 -52 55 -81c0 -41 -33 -59 -33 -95c0 -8 7 -22 19 -22c31 0 93 35 203 173zM442 509l1 -1 c56 14 125 41 125 117c0 17 -11 24 -18 24c-28 0 -43 -12 -108 -140'], + 0x1D4F5: [699,14,650,43,632,'43 429l26 38c40 -27 107 -51 128 -53c127 186 236 285 325 285c58 0 110 -25 110 -85c0 -77 -51 -147 -128 -194c-58 -36 -132 -59 -208 -65c-50 -84 -129 -215 -129 -286c0 -27 13 -33 25 -33c32 0 100 35 194 162l36 -27c-94 -132 -167 -185 -250 -185 c-68 0 -112 40 -112 121c0 70 49 172 103 255c-35 8 -96 43 -120 67zM333 421l1 -1c99 22 208 92 208 201c0 16 -5 28 -25 28c-57 0 -145 -155 -184 -228'], + 0x1D4F6: [462,14,1137,45,1057,'1021 214l36 -28c-93 -129 -178 -200 -283 -200c-57 0 -90 43 -90 83c0 33 10 78 46 129l108 151c6 8 17 28 17 43c0 11 -6 20 -23 20c-79 0 -208 -141 -324 -355l-31 -57h-123l203 356c4 7 12 24 12 37c0 10 -5 19 -20 19c-79 0 -211 -141 -327 -355l-31 -57h-123 l187 347c-32 -18 -61 -29 -114 -29c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15c98 0 151 56 172 81h114l-41 -79l3 -1c59 60 129 93 181 93c59 0 101 -26 101 -75c0 -5 -1 -11 -3 -18h3c59 60 130 93 182 93c59 0 104 -26 104 -75c0 -30 -19 -69 -49 -117l-105 -171 c-4 -6 -17 -27 -17 -43c0 -9 4 -20 16 -20c42 0 105 43 221 178'], + 0x1D4F7: [462,14,851,45,771,'735 214l36 -28c-93 -129 -178 -200 -283 -200c-57 0 -90 43 -90 83c0 33 10 78 46 129l108 155c7 10 17 25 17 43c0 9 -7 16 -20 16c-79 0 -211 -141 -327 -355l-31 -57h-123l187 347c-32 -18 -61 -29 -114 -29c-32 0 -65 6 -96 22l12 43c31 -13 52 -15 81 -15 c98 0 152 56 173 81h114l-41 -79l3 -1c59 60 129 93 181 93c59 0 101 -26 101 -75c0 -30 -20 -70 -49 -117l-105 -171c-4 -6 -17 -27 -17 -43c0 -9 6 -20 18 -20c42 0 103 43 219 178'], + 0x1D4F8: [462,14,848,35,780,'757 232l23 -39c-31 -21 -57 -31 -99 -31c-24 0 -45 3 -63 9c-41 -65 -92 -117 -143 -148c-43 -26 -86 -37 -131 -37c-83 0 -143 40 -143 124c0 38 9 76 24 113c-28 -13 -53 -20 -96 -20c-32 0 -63 6 -94 22l12 43c31 -13 51 -15 80 -15c87 0 137 43 163 71 c39 42 87 80 137 104c54 26 99 34 148 34c69 0 107 -41 107 -108c0 -42 -12 -89 -35 -131c9 -8 28 -11 38 -11c28 0 42 0 72 20zM626 371c0 26 -18 41 -47 41c-112 0 -263 -220 -263 -323c0 -39 19 -53 46 -53c85 0 163 88 209 162c-20 18 -30 50 -30 75c0 51 41 90 85 98'], + 0x1D4F9: [462,205,885,25,770,'453 370l3 -1c59 60 129 93 181 93c99 0 133 -50 133 -124c0 -100 -83 -223 -144 -266c43 -27 82 -65 111 -110l-37 -27c-44 50 -86 82 -123 101c-52 -34 -106 -50 -147 -50c-62 0 -87 23 -87 50c0 39 53 87 124 89c20 0 43 -2 65 -9c31 22 58 55 79 92 c28 49 44 105 44 150c0 33 -15 54 -47 54c-79 0 -200 -141 -317 -355l-143 -262h-123l299 551c-32 -17 -61 -28 -114 -28c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15c98 0 151 56 172 81h114'], + 0x1D4FA: [462,205,913,35,833,'802 224l31 -31c-41 -44 -115 -115 -220 -213c-98 -91 -169 -171 -179 -185h-123l127 237h-2c-44 -30 -87 -46 -143 -46c-66 0 -117 43 -117 110c0 38 12 81 32 120c-24 -8 -43 -13 -77 -13c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15c73 0 117 31 148 57 c81 87 202 152 283 152c38 0 69 -10 88 -31h2l10 18h121l-251 -467l1 -1zM594 376c0 25 -14 36 -30 36c-44 0 -115 -44 -187 -146c-64 -91 -86 -152 -86 -193c0 -21 12 -37 29 -37c37 0 68 13 122 63c80 75 152 199 152 277'], + 0x1D4FB: [462,0,677,40,648,'636 332l12 -43c-19 -10 -43 -14 -67 -14c-36 0 -72 10 -88 28l-248 -192l-59 -111h-123l187 347c-32 -18 -61 -29 -114 -29c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15c98 0 151 56 172 81h120l-113 -211l1 -1l150 112c-1 7 -2 13 -2 19c0 59 52 94 104 94 c45 0 60 -12 73 -28l-101 -90c14 -16 37 -19 58 -19c13 0 34 4 40 7'], + 0x1D4FC: [557,14,562,51,449,'139 240l-19 41c55 22 118 47 184 127c-6 8 -13 45 -13 52c0 80 61 97 85 97c35 0 50 -27 50 -52c0 -30 -15 -78 -49 -108c31 -45 72 -82 72 -171c0 -81 -55 -161 -125 -205c-42 -26 -85 -35 -140 -35c-60 0 -133 28 -133 97c0 49 34 83 67 83c23 0 59 -12 59 -46 c0 -44 -35 -31 -35 -58c0 -12 9 -26 35 -26c79 0 157 88 157 242c0 24 -5 48 -9 71c-57 -57 -129 -90 -186 -109'], + 0x1D4FD: [669,14,618,47,612,'612 538l-22 -50h-145l-185 -354c-6 -12 -20 -45 -20 -69c0 -15 5 -29 21 -29c36 0 92 56 194 178l36 -28c-102 -132 -161 -200 -254 -200c-64 0 -97 35 -97 92s23 103 62 177l32 61h-2c-52 -48 -117 -60 -181 -66l-4 46c109 9 209 80 258 153l21 39h-101l22 50h102 l70 131h120l-69 -131h142'], + 0x1D4FE: [449,14,842,31,762,'726 208l36 -28c-99 -128 -145 -191 -255 -191c-56 0 -92 38 -92 85v8h-1c-46 -50 -94 -96 -184 -96c-57 0 -100 34 -100 96c0 37 14 85 46 143l66 122c-33 -18 -62 -29 -115 -29c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15c98 0 151 56 172 81h120l-163 -308 c-7 -13 -24 -51 -24 -78c0 -16 6 -27 23 -27c91 0 212 170 326 413h120l-166 -318c-9 -17 -18 -42 -18 -62c0 -16 6 -30 23 -30c33 0 87 47 188 169'], + 0x1D4FF: [458,14,732,40,670,'659 224l11 -44c-19 -9 -47 -13 -60 -13c-33 0 -49 2 -70 13c-86 -125 -171 -194 -285 -194c-67 0 -113 36 -113 105c0 44 26 105 59 165l49 90c-32 -17 -61 -28 -114 -28c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15c98 0 151 56 172 81h118l-161 -307 c-6 -11 -21 -46 -21 -73c0 -18 16 -33 33 -33c87 0 169 93 212 170c-17 30 -23 67 -23 91c0 94 49 161 107 161c37 0 47 -28 47 -73c0 -48 -25 -117 -50 -154c15 -11 32 -14 52 -14c11 0 27 3 39 7'], + 0x1D500: [458,14,1012,40,950,'939 224l11 -44c-19 -9 -47 -13 -60 -13c-33 0 -49 2 -70 13c-86 -125 -171 -194 -285 -194c-62 0 -106 33 -113 92h-1c-56 -55 -98 -92 -183 -92c-57 0 -99 34 -99 96c0 37 14 85 46 143l66 122c-33 -18 -62 -29 -115 -29c-32 0 -65 6 -96 22l12 43 c31 -13 53 -15 82 -15c98 0 151 56 172 81h120l-164 -308c-14 -26 -23 -50 -23 -75c0 -15 9 -30 22 -30c91 0 209 170 323 413h120l-162 -307c-6 -11 -20 -46 -20 -73c0 -18 16 -33 33 -33c87 0 169 93 212 170c-17 30 -23 67 -23 91c0 92 49 161 107 161 c37 0 47 -28 47 -73c0 -48 -25 -117 -50 -154c15 -11 32 -14 52 -14c11 0 27 3 39 7'], + 0x1D501: [462,14,820,63,740,'140 234l-38 29c121 150 199 196 288 196c52 0 80 -26 99 -55c50 50 107 58 139 58c67 0 112 -31 112 -88c0 -47 -30 -85 -76 -85c-25 0 -51 14 -51 48c0 43 36 35 36 58c0 14 -14 17 -24 17c-115 0 -202 -282 -202 -340c0 -24 14 -33 30 -33c48 0 133 45 239 177l35 -30 c-65 -83 -130 -144 -196 -175c-33 -15 -64 -22 -99 -22c-46 0 -89 9 -109 55c-53 -42 -100 -58 -146 -58c-75 0 -114 43 -114 97c0 42 29 81 74 81c24 0 53 -14 53 -48c0 -45 -36 -34 -36 -61c0 -11 13 -19 25 -19c111 0 217 268 217 329c0 34 -15 44 -31 44 c-49 0 -102 -27 -225 -175'], + 0x1D502: [449,224,784,40,711,'711 449l-272 -518c21 -10 52 -12 73 -12c24 0 58 0 110 34l20 -40c-45 -33 -101 -44 -141 -44c-30 0 -63 5 -89 14c-63 -75 -151 -107 -238 -107c-84 0 -128 39 -128 77c0 46 53 82 100 100c39 15 92 15 121 15c16 0 50 -4 75 -8l45 85h-2c-41 -37 -79 -59 -147 -59 c-57 0 -100 34 -100 96c0 37 15 85 47 143l66 122c-33 -18 -62 -29 -115 -29c-32 0 -65 6 -96 22l12 43c31 -13 53 -15 82 -15c98 0 151 56 172 81h120l-164 -308c-14 -26 -24 -50 -24 -75c0 -15 10 -30 23 -30c91 0 216 170 330 413h120zM315 -91c-20 6 -46 9 -63 9 c-50 -1 -105 -17 -106 -62c0 -22 21 -30 40 -30c29 0 79 7 129 83'], + 0x1D503: [493,14,782,61,702,'665 224l37 -26c-34 -48 -64 -88 -93 -118c-64 -67 -120 -91 -190 -91c-61 0 -76 29 -76 55c0 32 25 43 25 68c0 8 -7 13 -20 13c-32 0 -61 -22 -117 -66c-45 -58 -92 -73 -127 -73c-31 0 -43 18 -43 36c0 45 59 94 150 111l230 189v1c-19 -5 -38 -7 -57 -7 c-39 0 -74 9 -89 16c-56 -67 -121 -97 -200 -108l-12 39c50 12 110 26 158 84c-26 17 -45 43 -45 72c0 45 31 74 74 74c42 0 65 -30 65 -60c0 -18 -1 -31 -10 -52c22 -11 49 -15 76 -15c34 0 69 7 95 20c30 46 67 77 118 77c26 0 47 -12 47 -36c0 -13 -8 -31 -23 -45 c-23 -21 -62 -37 -105 -47l-196 -162l1 -1c14 2 29 3 38 3c66 0 103 -29 103 -61c0 -27 -21 -45 -21 -61c0 -9 6 -12 13 -12c37 0 119 66 194 183'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Script/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Script/Italic/Main.js new file mode 100644 index 0000000..cb9d95a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Script/Italic/Main.js @@ -0,0 +1,81 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Script/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Script-italic'] = { + directory: 'Script/Italic', + family: 'STIXMathJax_Script', + style: 'italic', + id: 'STIXWEBSCRIPTI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210A: [441,219,738,30,678,'678 424l-269 -498c27 -14 60 -23 91 -23c30 0 70 8 100 30l12 -26c-46 -29 -83 -34 -117 -34c-35 0 -76 8 -102 22c-55 -81 -123 -114 -203 -114c-67 0 -98 37 -98 71c0 37 27 64 54 80c37 22 76 26 115 26c20 0 71 -5 91 -13l87 156l-1 1c-70 -76 -131 -113 -207 -113 c-51 0 -84 42 -84 105c0 33 8 66 23 99c-21 -14 -44 -20 -70 -20c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c56 0 97 40 129 79c75 91 186 159 266 159c46 0 82 -21 88 -65h2l28 48h68zM550 364c0 33 -25 42 -54 42c-56 0 -129 -49 -205 -159 c-62 -90 -86 -151 -86 -187c0 -26 19 -41 41 -41c130 0 304 240 304 345zM337 -86l-1 1c-20 9 -60 13 -84 13c-76 0 -126 -30 -126 -72c0 -24 23 -41 56 -41c38 0 100 11 155 99'], + 0x210B: [687,15,997,53,991,'714 664l-18 -14c-90 -70 -159 -166 -232 -310c38 16 76 25 115 39l33 43c139 173 263 265 322 265c31 0 57 -14 57 -50c0 -110 -156 -191 -304 -250c-93 -134 -174 -275 -174 -334c0 -21 15 -35 34 -35c39 0 95 46 167 129l21 -13c-75 -91 -141 -146 -202 -146 c-52 0 -87 33 -87 89c0 78 49 177 104 262l-107 -41c-75 -147 -183 -266 -277 -302c-19 -7 -38 -11 -56 -11c-33 0 -57 24 -57 60c0 105 136 185 283 247c48 78 91 161 211 266c-7 -1 -15 -1 -20 -1c-40 0 -71 15 -124 44c-37 20 -74 34 -102 34c-64 0 -116 -48 -116 -101 c0 -52 25 -94 88 -94c53 0 88 33 121 86l18 -9c-33 -65 -74 -107 -141 -107c-80 0 -127 52 -127 126c0 75 71 151 175 151c40 0 73 -14 142 -49c35 -18 64 -31 86 -31c21 0 41 0 80 19c24 12 50 35 75 52zM958 635c0 14 -9 22 -24 22c-38 0 -128 -103 -214 -223 c132 58 238 126 238 201zM307 241c-127 -58 -221 -121 -221 -197c0 -20 12 -27 24 -29c61 0 143 132 197 226'], + 0x2110: [675,15,897,26,888,'63 95h-2c0 -26 49 -79 120 -79c125 0 219 45 312 255c9 21 18 41 27 59c-72 15 -124 63 -124 141c0 65 38 115 86 145c54 33 123 40 183 40c53 0 93 -5 118 -8c34 23 66 27 76 27c16 0 29 -8 29 -20c0 -50 -81 -52 -109 -52c-54 -39 -100 -135 -146 -235 c48 13 89 43 125 99l16 -10c-35 -68 -91 -109 -157 -124c-41 -88 -83 -174 -133 -227c-85 -88 -183 -121 -285 -121c-106 0 -173 56 -173 122c0 42 26 72 59 72c28 0 51 -19 51 -48c0 -25 -15 -48 -43 -48c-8 0 -24 2 -30 12zM729 601v2c-15 1 -33 1 -53 1 c-50 0 -109 -4 -154 -24s-85 -63 -85 -118c0 -40 28 -91 99 -100c58 113 113 185 193 239'], + 0x2112: [687,15,946,33,931,'608 643l-12 -19c-55 33 -110 33 -145 33c-105 0 -222 -54 -222 -157c0 -101 100 -158 242 -158c18 0 33 1 63 5c34 64 57 115 86 159c50 76 147 163 228 163c59 0 83 -35 83 -82c0 -88 -125 -206 -304 -254c-62 -134 -169 -260 -255 -294c39 -13 76 -23 103 -23 c96 0 183 47 265 139l19 -14c-88 -105 -184 -156 -281 -156c-76 0 -124 15 -164 30c-47 -16 -97 -24 -155 -24c-82 0 -126 22 -126 61c0 30 41 57 108 57c60 0 115 -28 173 -50c53 34 139 135 204 256c-17 -2 -36 -3 -53 -3c-124 0 -277 49 -277 192c0 104 112 183 255 183 c43 0 108 -6 165 -44zM890 588c0 27 -17 44 -49 44c-81 0 -158 -149 -198 -263c34 9 70 26 104 45c76 42 143 106 143 174zM266 35v1c-57 33 -94 43 -125 43c-19 0 -67 -4 -67 -25c0 -22 29 -33 87 -33c39 0 74 3 105 14'], + 0x211B: [687,15,944,34,876,'852 669l7 -19c-26 -11 -47 -24 -66 -38c55 -35 83 -87 83 -139c0 -80 -64 -157 -180 -161v-2c31 -23 54 -53 54 -84c0 -68 -76 -133 -76 -174c0 -21 12 -34 32 -34c34 0 84 35 145 101l17 -16c-64 -73 -122 -115 -176 -115c-47 0 -93 33 -93 82c0 79 84 111 84 175 c0 9 -2 48 -33 48c-11 0 -36 4 -47 11c-112 -231 -239 -319 -396 -319c-106 0 -173 57 -173 123c0 42 26 71 59 71c28 0 51 -19 51 -48c0 -25 -15 -48 -43 -48c-8 0 -24 2 -30 12h-2c0 -34 49 -79 120 -79c125 0 185 55 297 255c89 159 154 267 252 338 c-54 34 -126 48 -192 48c-205 0 -351 -122 -351 -249c0 -55 46 -96 103 -96c112 0 176 91 205 245h20c-8 -130 -89 -275 -227 -275c-83 0 -142 51 -142 130c0 136 155 275 393 275c79 0 159 -21 221 -59c25 16 52 29 84 41zM814 486c0 39 -15 76 -48 102 c-58 -57 -92 -135 -140 -234c23 0 43 -6 60 -17c80 8 128 80 128 149'], + 0x212C: [687,15,950,34,902,'895 660l7 -19c-27 -12 -51 -25 -72 -40c43 -35 72 -77 72 -138c0 -65 -66 -134 -153 -145v-2c64 -27 90 -82 90 -130c0 -58 -35 -123 -96 -164c-33 -22 -69 -33 -112 -33c-64 0 -94 43 -94 78c0 65 49 117 138 132l4 -23c-55 -6 -105 -49 -105 -94c0 -26 22 -48 50 -48 c22 0 43 4 61 15c49 29 78 92 78 154c0 40 -11 75 -46 95c-16 -4 -42 -6 -49 -6c-21 0 -42 8 -47 19c-113 -234 -255 -326 -414 -326c-106 0 -173 56 -173 122c0 42 26 72 59 72c28 0 51 -19 51 -48c0 -25 -15 -48 -43 -48c-8 0 -24 2 -30 12h-2c0 -34 49 -79 120 -79 c125 0 199 55 312 255c90 159 168 262 275 330c-61 42 -150 56 -210 56c-183 0 -372 -102 -372 -261c0 -61 41 -106 111 -106c110 0 202 106 209 271h20c0 -160 -88 -301 -234 -301c-79 0 -147 47 -147 143c0 186 242 284 411 284c74 0 172 -19 244 -67c27 16 55 28 87 40z M841 485c0 39 -16 70 -40 95c-65 -55 -110 -131 -162 -232c5 3 17 4 23 4c13 0 35 -4 55 -14c86 7 124 83 124 147'], + 0x212F: [441,11,627,30,554,'534 196l20 -20c-116 -117 -218 -187 -324 -187c-71 0 -106 44 -106 111c0 30 6 61 18 92c-45 5 -90 32 -112 72l23 17c21 -41 59 -59 101 -62c57 119 189 222 309 222c41 0 71 -18 71 -55c0 -69 -113 -164 -310 -194c-24 -42 -42 -89 -42 -118c0 -35 23 -55 54 -55 c88 0 186 66 298 177zM245 227l1 -1c147 21 258 103 258 158c0 20 -19 27 -36 27c-60 0 -142 -58 -223 -184'], + 0x2130: [687,15,750,100,734,'421 658l-10 -18c-39 15 -55 17 -110 17c-97 0 -160 -47 -160 -111c0 -74 88 -114 191 -114c12 136 179 226 302 226c64 0 100 -25 100 -73c0 -80 -146 -171 -331 -185c1 -6 2 -8 4 -12c47 -2 75 -11 75 -31c0 -19 -18 -28 -42 -28c-21 0 -37 5 -53 14 c-120 -32 -195 -123 -195 -209c0 -61 52 -119 144 -119c67 0 118 26 149 60c24 26 35 56 35 85c0 46 -35 74 -87 74c-69 0 -140 -57 -164 -142l-21 6c27 108 104 178 202 178c91 0 134 -49 134 -115c0 -90 -121 -176 -258 -176c-115 0 -216 58 -216 169 c0 103 86 194 237 225v2c-5 5 -6 20 -11 20c-140 3 -236 58 -236 148c0 74 74 138 189 138c49 0 83 -4 132 -29zM693 588c0 20 -23 33 -52 33c-95 0 -225 -101 -238 -191c164 10 290 95 290 158'], + 0x2131: [680,0,919,43,907,'896 662l11 -15c-45 -37 -111 -73 -176 -73c-109 0 -256 60 -349 60c-125 0 -203 -57 -203 -143c0 -80 55 -112 107 -112c98 0 150 63 186 176l20 -1c-26 -135 -96 -205 -209 -205c-75 0 -145 50 -145 135c0 53 25 99 64 132c50 42 126 64 227 64c110 0 254 -56 354 -56 c42 0 80 19 113 38zM657 568l14 -14c-49 -48 -76 -121 -107 -217c40 8 80 14 121 15c26 39 59 57 78 57c12 0 23 -6 23 -22c0 -19 -28 -54 -72 -75c-8 -22 -8 -41 -8 -60c0 -6 1 -17 3 -26l-59 -20v18c0 20 3 43 11 70c-21 -1 -62 -3 -115 -12c-77 -207 -211 -282 -354 -282 c-70 0 -149 33 -149 111c0 43 25 69 60 69c27 0 50 -22 50 -49c0 -26 -16 -50 -44 -50c-8 0 -23 3 -29 13h-2c5 -35 47 -63 106 -63c97 0 165 47 253 225c-57 -18 -118 -45 -177 -85l-13 15c39 47 122 92 216 124c5 10 9 20 14 31c43 98 100 159 180 227'], + 0x2133: [674,15,1072,38,1056,'1048 672l8 -13c-191 -302 -319 -547 -319 -606c0 -25 15 -35 33 -35c40 0 98 49 170 132l19 -16c-75 -91 -141 -146 -203 -146c-48 0 -86 30 -86 82c0 109 111 298 308 563l-1 2c-86 -32 -185 -147 -330 -404c-87 -154 -131 -235 -213 -235c-34 0 -56 28 -56 70 c0 78 83 215 143 307c53 82 125 194 192 270l-1 1c-74 -30 -169 -136 -239 -247c-166 -265 -238 -412 -355 -412c-46 0 -80 35 -80 78c0 38 27 65 59 65c31 0 52 -26 52 -52c0 -22 -16 -44 -43 -44c-5 0 -10 1 -15 4h-3c2 -14 17 -21 31 -21c68 0 122 63 225 235 c201 336 309 424 418 424c4 0 7 0 17 -2l15 -12c-141 -199 -274 -433 -322 -542c-3 -8 -17 -40 -17 -61c0 -10 2 -18 13 -18c26 0 53 42 86 95c114 183 267 514 466 540c8 0 16 0 28 -2'], + 0x2134: [441,11,697,30,680,'668 223l12 -25c-22 -15 -43 -21 -75 -21c-21 0 -46 3 -69 18c-78 -135 -170 -206 -269 -206c-66 0 -109 38 -109 117c0 30 6 61 18 91c-22 -18 -53 -24 -82 -24c-24 0 -42 5 -64 17l10 26c19 -8 38 -13 57 -13c53 0 93 33 123 72c70 92 179 166 277 166 c53 0 87 -37 87 -87c0 -39 -10 -82 -34 -130c16 -11 39 -17 59 -17c25 0 40 3 59 16zM554 355c-3 31 -19 51 -55 51c-114 0 -283 -236 -283 -323c0 -33 17 -64 56 -64c67 0 156 49 234 192c-12 19 -16 39 -16 59c0 38 29 79 64 85'], + 0x1D49C: [674,15,855,31,846,'837 672l9 -14c-93 -182 -168 -357 -265 -589c36 7 76 20 103 34l9 -16c-32 -24 -82 -38 -124 -45l-17 -42h-97l18 39c-57 4 -113 17 -162 40c-56 -57 -113 -94 -173 -94c-64 0 -107 39 -107 92c0 44 29 72 62 72c28 0 50 -21 50 -48c0 -21 -15 -48 -43 -48 c-5 0 -23 2 -29 12h-2c0 -19 23 -50 65 -50c57 0 95 24 150 77c-72 41 -122 107 -122 207c0 117 98 181 187 181c73 0 126 -33 161 -82c98 143 200 276 303 276c9 0 16 0 24 -2zM772 638h-1c-83 -29 -163 -143 -245 -267c21 -41 32 -92 33 -144c69 151 143 304 213 411z M536 199c0 52 -9 103 -29 145c-56 -86 -112 -172 -172 -239c44 -21 95 -34 151 -38l49 109c1 8 1 15 1 23zM492 372c-30 45 -77 75 -143 75c-74 0 -146 -61 -146 -146c0 -83 42 -143 107 -182c58 64 121 159 182 253'], + 0x1D49E: [687,15,797,37,781,'449 645l-12 -19c-55 31 -101 31 -136 31c-101 0 -223 -52 -223 -156c0 -89 73 -131 151 -140c108 166 317 308 456 308c62 0 96 -27 96 -75c0 -121 -230 -270 -469 -270c-57 -83 -69 -149 -69 -199c0 -63 42 -110 117 -110c110 0 202 83 202 158c0 52 -34 74 -71 74 c-68 0 -148 -76 -158 -184l-22 2c0 122 91 225 197 225c71 0 118 -34 118 -103c0 -58 -44 -112 -96 -148s-113 -54 -174 -54c-109 0 -197 63 -197 173c0 58 18 115 48 171c-84 14 -170 67 -170 170c0 95 99 188 256 188c43 0 99 -5 156 -42zM331 355l1 -1 c78 0 170 24 244 62c95 48 164 117 164 176c0 27 -17 40 -50 40c-97 0 -248 -119 -359 -277'], + 0x1D49F: [687,15,885,36,818,'810 587l8 -20c-37 -16 -42 -21 -71 -53c36 -56 57 -121 57 -190c0 -191 -159 -339 -322 -339c-58 0 -109 15 -156 33c-50 -18 -102 -27 -161 -27c-82 0 -129 25 -129 63c0 33 44 55 107 55c55 0 109 -20 170 -52c63 39 121 114 203 246c55 89 113 160 179 216 c-59 82 -171 136 -280 136c-196 0 -305 -96 -305 -233c0 -78 65 -145 164 -145c120 0 215 76 216 261h19c2 -15 2 -29 2 -43c0 -177 -141 -248 -235 -248c-116 0 -207 72 -207 183c0 147 148 257 339 257c131 0 247 -58 317 -144c35 25 45 30 85 44zM756 336 c0 51 -13 100 -37 144c-40 -53 -73 -118 -103 -178c-47 -95 -111 -176 -196 -234c-18 -12 -35 -23 -53 -32c35 -12 72 -20 111 -20c145 0 278 119 278 320zM276 39c-49 26 -86 40 -132 40c-19 0 -67 -4 -67 -25c0 -22 29 -33 87 -33c43 0 79 5 112 18'], + 0x1D4A2: [687,15,773,83,740,'417 653l-9 -18c-38 17 -76 22 -111 22c-104 0 -173 -54 -173 -116c0 -58 52 -101 139 -113c96 152 263 241 374 241c56 0 103 -27 103 -76c0 -103 -198 -203 -397 -203c-32 -47 -41 -98 -41 -128c0 -37 22 -67 66 -67c72 0 152 45 269 151l15 -16 c-32 -32 -46 -67 -66 -121c-54 -148 -163 -224 -330 -224c-99 0 -169 54 -169 110c0 39 24 69 59 69c27 0 51 -22 51 -47c0 -27 -16 -51 -44 -51c-12 0 -23 3 -29 13h-2c6 -31 61 -63 124 -63c123 0 192 73 254 192l-1 1c-45 -30 -91 -44 -138 -44c-78 0 -137 48 -137 127 c0 28 8 71 26 106c-100 17 -167 65 -167 143c0 81 88 146 207 146c45 0 87 -10 127 -34zM699 590c0 28 -26 42 -57 42c-86 0 -217 -98 -281 -212c171 0 338 92 338 170'], + 0x1D4A5: [674,177,802,9,792,'552 193l15 -16c-44 -39 -96 -72 -151 -92c-63 -122 -198 -262 -329 -262c-48 0 -78 26 -78 65c0 47 40 94 125 134c52 24 122 43 190 64c37 72 67 169 103 245c-70 14 -121 57 -121 133c0 138 155 196 269 196c68 0 86 -3 127 -6c36 20 53 20 66 20c11 0 24 -8 24 -20 c0 -43 -60 -48 -104 -48c-55 -39 -106 -137 -152 -240c50 12 93 43 131 101l16 -11c-36 -70 -94 -111 -162 -124l-87 -208c40 15 79 35 118 69zM639 605v1c-13 1 -28 2 -43 2c-46 0 -99 -6 -130 -17c-58 -21 -119 -69 -119 -137c0 -52 45 -90 96 -91c50 98 109 179 196 242z M302 43c-61 -20 -119 -34 -163 -56c-74 -36 -88 -73 -88 -97c0 -19 14 -37 36 -37c85 0 152 75 215 190'], + 0x1D4A6: [687,15,1009,40,1004,'771 669l13 -16c-107 -81 -156 -187 -217 -293c15 0 29 -2 42 -14c42 9 73 38 132 125c93 136 159 216 212 216c28 0 51 -13 51 -41c0 -25 -14 -45 -42 -45c-18 0 -44 12 -45 45h-1c-19 -15 -40 -75 -67 -124c-67 -121 -127 -172 -211 -199v-2c34 -34 48 -58 48 -89 c0 -68 -76 -139 -76 -180c0 -21 12 -34 32 -34c39 0 95 44 169 129l19 -15c-74 -91 -141 -144 -202 -144c-47 0 -93 33 -93 82c0 79 85 141 85 205c0 9 -1 31 -40 31c-20 0 -28 4 -34 15c-127 -279 -245 -336 -363 -336c-87 0 -143 52 -143 106c0 38 23 74 63 74 c26 0 47 -21 47 -50c0 -25 -16 -49 -44 -49c-9 0 -23 3 -29 13h-2c4 -31 46 -63 106 -63c83 0 134 60 210 194c84 149 119 239 242 340l-1 3c-9 -3 -26 -5 -36 -5c-40 0 -71 15 -124 44c-37 20 -74 34 -102 34c-64 0 -118 -48 -118 -101c0 -52 37 -94 100 -94 c53 0 98 33 131 86l18 -9c-33 -65 -84 -107 -151 -107c-80 0 -139 52 -139 126c0 75 73 151 177 151c40 0 73 -14 142 -49c35 -18 64 -31 86 -31c44 0 106 26 155 71'], + 0x1D4A9: [687,15,970,38,956,'569 131h1c35 53 79 159 122 263c42 101 89 204 138 256c23 25 45 37 74 37c30 0 52 -17 52 -46c0 -28 -19 -46 -43 -46c-18 0 -47 13 -47 45h-3c-34 -18 -80 -104 -151 -277c-56 -138 -124 -299 -216 -376h-20c19 76 28 174 32 310c3 103 10 204 27 265l-1 1 c-33 -45 -89 -140 -143 -248c-116 -231 -185 -330 -273 -330c-46 0 -80 35 -80 77c0 39 27 66 59 66c31 0 52 -25 52 -51c0 -22 -16 -45 -42 -45c-5 0 -11 1 -16 4h-3c2 -14 17 -22 31 -22c75 0 148 115 238 298c103 209 188 331 252 357l13 -11c-13 -43 -19 -134 -26 -267 c-5 -100 -13 -189 -27 -260'], + 0x1D4AA: [680,15,692,82,663,'663 549l-20 -2c-18 56 -53 98 -126 98c-170 0 -375 -313 -375 -495c0 -73 36 -135 114 -135c86 0 154 42 213 103c39 41 117 147 117 278c0 74 -46 110 -92 110c-63 0 -128 -57 -128 -159c0 -25 3 -59 27 -105l-22 -10c-32 52 -35 99 -35 130c0 106 78 180 161 180 c64 0 140 -40 140 -146c0 -193 -170 -411 -379 -411c-116 0 -176 95 -176 203c0 256 201 492 439 492c87 0 142 -59 142 -131'], + 0x1D4AB: [687,15,910,38,886,'856 669l7 -19c-26 -11 -47 -24 -66 -38c53 -40 89 -96 89 -165c0 -88 -64 -175 -149 -175c-49 0 -72 32 -72 66c0 29 23 60 58 79l10 -18c-33 -19 -36 -41 -36 -54c0 -17 13 -29 34 -29c56 0 94 66 94 149c0 53 -22 94 -55 123c-67 -66 -98 -162 -160 -286 c-115 -231 -242 -317 -399 -317c-106 0 -173 57 -173 123c0 42 26 71 59 71c28 0 51 -19 51 -48c0 -25 -15 -48 -43 -48c-8 0 -24 2 -30 12h-2c0 -34 49 -79 120 -79c125 0 190 55 302 255c89 159 149 267 247 338c-54 34 -126 48 -192 48c-205 0 -351 -122 -351 -249 c0 -55 46 -96 103 -96c112 0 176 95 205 249h20c-10 -135 -82 -279 -227 -279c-83 0 -142 51 -142 130c0 136 155 275 393 275c79 0 159 -21 221 -59c25 16 52 29 84 41'], + 0x1D4AC: [680,38,692,82,663,'663 549l-20 -2c-18 56 -53 98 -126 98c-170 0 -375 -313 -375 -495c0 -73 36 -135 114 -135c50 0 94 14 134 38c-15 24 -31 43 -60 43c-25 0 -47 -7 -76 -29l-13 17c42 39 72 58 108 58c47 0 69 -27 86 -56c11 10 23 20 34 32c39 41 117 147 117 278 c0 74 -46 110 -92 110c-63 0 -128 -57 -128 -159c0 -25 3 -59 27 -105l-22 -10c-32 52 -35 99 -35 130c0 106 78 180 161 180c64 0 140 -40 140 -146c0 -127 -73 -265 -183 -344c15 -24 31 -42 62 -42c27 0 66 13 102 48l15 -14c-49 -59 -98 -82 -133 -82 c-49 0 -72 30 -92 61c-46 -24 -97 -38 -150 -38c-116 0 -176 95 -176 203c0 256 201 492 439 492c86 0 142 -59 142 -131'], + 0x1D4AE: [680,15,743,67,701,'397 143l-20 -4c-31 105 -82 117 -136 117c-48 0 -112 -44 -112 -119c0 -70 63 -122 143 -122c93 0 193 60 193 176c0 106 -157 149 -157 281c0 143 146 208 253 208c66 0 140 -32 140 -116c0 -73 -74 -129 -142 -129v21c61 6 109 44 109 107c0 61 -55 81 -108 81 c-77 0 -175 -62 -175 -153c0 -110 162 -155 162 -287c0 -135 -129 -219 -283 -219c-97 0 -197 44 -197 157c0 100 85 157 167 157c75 0 150 -47 163 -156'], + 0x1D4AF: [687,15,912,43,907,'896 675l11 -18c-45 -37 -111 -73 -176 -73c-109 0 -256 57 -349 57c-125 0 -213 -75 -213 -161c0 -80 55 -121 117 -121c98 0 154 69 190 182h20c-26 -135 -104 -212 -217 -212c-82 0 -151 54 -151 144c0 129 131 214 311 214c110 0 244 -53 344 -53c42 0 80 19 113 41z M658 553l13 -14c-53 -52 -83 -126 -114 -235c-30 -106 -94 -203 -179 -259c-57 -38 -115 -60 -187 -60c-81 0 -148 46 -148 106c0 48 26 74 61 74c27 0 49 -22 49 -49c0 -26 -17 -49 -45 -49c-8 0 -22 2 -28 12h-2c4 -35 43 -63 106 -63c111 0 179 65 270 261 c68 146 124 208 204 276'], + 0x1D4B0: [687,15,842,36,805,'805 658l-296 -550c-16 -30 -17 -48 -17 -55c0 -25 15 -35 33 -35c40 0 96 46 168 129l21 -13c-75 -91 -140 -146 -203 -146c-48 0 -86 30 -86 78c0 17 3 40 17 71l-3 1c-71 -97 -149 -153 -205 -153c-48 0 -81 34 -81 88c0 38 16 82 70 167l145 227c29 45 36 75 36 101 c0 50 -64 84 -121 84c-108 0 -206 -70 -206 -178c0 -48 27 -84 73 -84c75 0 115 50 139 119h20c-14 -66 -71 -149 -158 -149c-67 0 -115 46 -115 114c0 123 128 213 256 213c91 0 179 -49 179 -146c0 -34 -8 -78 -38 -124l-186 -287c-28 -44 -39 -71 -39 -87 c0 -14 7 -28 29 -28c112 0 300 303 352 400l130 243h86'], + 0x1D4B1: [687,15,932,35,922,'214 21l2 -2c147 31 254 170 391 378c116 176 194 290 265 290c28 0 50 -19 50 -47c0 -25 -20 -43 -43 -43c-26 0 -44 17 -44 49h-1c-33 -19 -93 -94 -200 -261c-99 -155 -183 -257 -249 -308c-74 -58 -139 -92 -204 -92c-6 0 -14 0 -47 6c57 52 81 102 147 271 c48 122 104 197 193 283l-3 3c-9 -3 -26 -5 -36 -5c-97 0 -172 83 -241 83c-64 0 -118 -48 -118 -101c0 -52 38 -94 100 -94c53 0 98 33 131 86l16 -9c-33 -65 -82 -107 -149 -107c-80 0 -139 52 -139 126c0 75 86 151 183 151c40 0 67 -14 136 -49c35 -18 64 -31 86 -31 c36 0 83 15 124 49l27 22l15 -15c-105 -113 -140 -194 -185 -307c-55 -137 -130 -257 -207 -326'], + 0x1D4B2: [687,15,1078,35,1070,'455 24l2 -2c95 38 173 138 267 301c162 281 221 364 296 364c27 0 50 -17 50 -47c0 -24 -19 -43 -43 -43c-26 0 -43 17 -43 50h-1c-39 -11 -109 -125 -246 -361c-103 -177 -213 -301 -319 -301c-18 0 -33 0 -46 4c65 61 106 137 141 233c59 162 128 277 237 393l-1 1 c-84 -15 -186 -176 -262 -312c-107 -193 -221 -319 -326 -319c-13 0 -33 3 -47 6c66 56 104 154 147 268c44 117 104 198 192 287l-2 2c-9 -3 -26 -5 -36 -5c-91 0 -165 83 -231 83c-64 0 -108 -48 -108 -101c0 -52 32 -94 90 -94c53 0 88 33 121 86l16 -9 c-33 -65 -75 -107 -139 -107c-75 0 -129 52 -129 126c0 75 66 151 163 151c40 0 77 -14 146 -49c35 -18 54 -31 76 -31c36 0 83 15 124 49l27 22l15 -16c-77 -76 -139 -173 -196 -321c-48 -125 -118 -240 -196 -310l2 -3c108 39 202 192 267 308c122 216 222 324 309 324 c11 0 27 -3 51 -11c-73 -52 -115 -173 -173 -306c-56 -127 -111 -226 -195 -310'], + 0x1D4B3: [687,15,891,36,873,'571 489h2c80 142 157 198 226 198c40 0 74 -18 74 -63c0 -36 -27 -56 -54 -56c-25 0 -50 14 -50 46c0 12 5 28 17 40c-73 0 -166 -133 -254 -331c-27 -61 -67 -162 -67 -228c0 -38 13 -65 50 -65s82 38 156 124l20 -15c-68 -87 -123 -153 -205 -153 c-63 0 -101 34 -101 100c0 12 3 40 9 55h-2c-68 -97 -140 -156 -242 -156c-76 0 -114 56 -114 106c0 39 23 72 58 72c27 0 51 -22 51 -47c0 -27 -19 -53 -47 -53c-7 0 -20 3 -25 6c17 -39 46 -54 94 -54c78 0 169 110 240 234c51 90 88 188 88 257c0 97 -39 148 -124 148 c-89 0 -161 -63 -161 -157c0 -53 28 -95 87 -95c71 0 105 48 126 106l19 -5c-23 -81 -78 -131 -148 -131c-76 0 -125 49 -125 126c0 107 90 189 205 189c121 0 197 -88 197 -198'], + 0x1D4B4: [687,226,926,91,916,'825 658h91c-169 -226 -279 -398 -370 -581c43 16 93 43 137 80l15 -15c-66 -60 -113 -80 -167 -104c-62 -120 -195 -264 -327 -264c-48 0 -81 26 -81 65c0 122 201 160 315 197c41 81 59 120 103 196l-3 4c-70 -97 -152 -154 -208 -154c-52 0 -85 34 -85 93 c0 49 29 99 107 200c99 127 114 160 114 194c0 46 -66 83 -126 83c-119 0 -208 -63 -208 -167c0 -43 34 -75 79 -75c67 0 118 41 149 125h20c-29 -111 -103 -155 -175 -155c-64 0 -114 46 -114 107c0 120 128 200 256 200c99 0 179 -61 179 -146c0 -62 -35 -117 -140 -249 c-70 -88 -86 -127 -86 -151c0 -14 9 -29 29 -29c69 0 165 92 313 295zM419 -2c-143 -47 -254 -82 -254 -157c0 -19 17 -37 39 -37c85 0 152 79 215 194'], + 0x1D4B5: [687,15,932,59,912,'407 519l18 -8c-30 -59 -67 -98 -138 -98c-65 0 -128 44 -128 115c0 68 63 159 197 159c108 0 210 -41 294 -75c52 33 103 46 150 46c81 0 112 -29 112 -60s-48 -58 -116 -58c-45 0 -88 11 -133 26c-40 -46 -76 -122 -116 -236c5 -1 9 -1 11 -1c32 1 68 8 93 27l14 -17 c-31 -33 -70 -59 -118 -59c-4 0 -14 0 -18 1c-35 -92 -89 -169 -158 -221c56 -19 111 -36 157 -36c107 0 179 52 204 139l20 -1c-19 -113 -98 -177 -222 -177c-51 0 -98 15 -197 49c-49 -28 -103 -43 -162 -43c-82 0 -112 26 -112 60c0 31 48 58 116 58c42 0 92 -15 142 -31 c48 46 83 119 120 215c-4 1 -8 1 -12 1c-29 0 -57 -3 -95 -32l-17 16c34 37 79 65 126 65c5 0 11 0 17 -1c48 116 101 193 157 241c-82 31 -170 65 -278 65c-95 0 -135 -75 -135 -120c0 -55 41 -85 87 -85c57 0 87 22 120 76zM871 598c0 16 -17 30 -71 30 c-41 0 -75 -10 -106 -33c41 -15 78 -25 112 -25c37 0 65 14 65 28zM283 51c-49 18 -76 28 -118 28c-37 0 -65 -14 -65 -28c0 -16 17 -30 71 -30c44 0 81 10 112 30'], + 0x1D4B6: [441,11,819,30,758,'737 194l21 -17c-94 -123 -178 -185 -247 -185c-51 0 -76 39 -76 85c0 11 1 22 4 32l-1 1c-68 -75 -129 -121 -197 -121c-59 0 -92 43 -92 109c0 31 8 63 22 95c-21 -12 -45 -20 -71 -20c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c56 0 96 40 129 79v-1 c72 90 181 160 272 160c29 0 91 0 118 -71l-21 -10c-22 40 -54 51 -84 51c-47 0 -98 -25 -143 -70c-89 -90 -161 -222 -161 -277c0 -21 8 -45 39 -45c74 0 149 82 203 145c9 52 47 153 110 153c16 0 27 -6 27 -28c0 -35 -54 -94 -110 -146c-11 -39 -11 -49 -11 -63 c0 -48 31 -58 55 -58c34 0 109 37 217 172'], + 0x1D4B7: [687,12,580,47,559,'127 493l20 22c26 -31 55 -42 85 -47c74 104 179 219 266 219c40 0 61 -25 61 -55c0 -95 -110 -200 -268 -200c-56 -83 -186 -291 -186 -370c0 -24 9 -44 36 -44c78 0 166 77 246 208c-9 26 -10 32 -10 56c0 81 49 137 86 137c11 0 24 -13 24 -29c0 -33 -7 -79 -55 -158 c15 -25 41 -32 63 -32c12 0 23 2 30 5l7 -26c-11 -6 -29 -9 -38 -9c-34 0 -59 8 -84 32h-1c-89 -140 -186 -214 -269 -214c-54 0 -93 37 -93 93c0 89 81 249 166 360c-31 8 -62 23 -86 52zM529 624c0 19 -12 31 -35 31c-43 0 -100 -70 -183 -193c121 0 218 90 218 162'], + 0x1D4B8: [441,11,662,30,589,'567 225l22 -17c-123 -152 -238 -219 -328 -219c-63 0 -103 44 -103 117c0 30 6 61 18 91c-20 -16 -47 -24 -76 -24c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c51 0 89 33 120 69c68 95 180 169 270 169c51 0 88 -23 88 -79c0 -34 -28 -65 -61 -65 c-24 0 -40 11 -40 33c0 46 62 29 62 60c0 11 -11 21 -34 21c-118 0 -286 -245 -286 -337c0 -35 23 -55 54 -55c60 0 172 54 297 206'], + 0x1D4B9: [687,11,845,30,827,'827 687l-321 -590c-8 -14 -14 -33 -14 -48s9 -27 28 -27c40 0 101 37 212 172l23 -17c-97 -123 -171 -185 -242 -185c-52 0 -73 32 -73 71c0 15 3 31 9 47h-2c-72 -74 -134 -121 -209 -121c-58 0 -91 41 -91 105c0 32 9 66 24 99c-20 -13 -45 -20 -71 -20 c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c56 0 96 40 129 79v-1c72 90 180 160 270 160c46 0 78 -24 78 -78h2l172 324h79zM544 365c0 29 -19 41 -48 41c-53 0 -135 -57 -204 -157c-66 -95 -87 -151 -87 -189c0 -20 10 -41 41 -41c47 -1 90 23 143 73 c83 78 155 198 155 273'], + 0x1D4BB: [687,209,685,27,673,'27 -209l194 374c-9 17 -13 36 -13 58c0 58 45 110 117 147c100 193 165 317 274 317c51 0 74 -39 74 -70c0 -130 -165 -210 -271 -252l-115 -221c24 -13 48 -18 81 -18c39 0 87 16 129 54l17 -23c-55 -46 -104 -61 -153 -61c-35 0 -65 7 -89 19l-166 -324h-79zM643 606 c0 41 -19 49 -42 49c-52 0 -96 -84 -120 -130l-62 -120c95 36 224 112 224 201'], + 0x1D4BD: [687,11,753,38,690,'669 195l21 -17c-104 -123 -196 -189 -264 -189c-42 0 -70 24 -70 72c0 34 19 88 46 128l106 157c10 15 17 28 17 39c0 13 -7 26 -25 26c-87 0 -244 -144 -357 -358l-28 -53h-77l237 440c-46 8 -86 21 -126 69l20 21c35 -41 78 -57 122 -61c90 161 142 218 219 218 c45 0 63 -37 63 -65c0 -120 -161 -183 -231 -184l-78 -153l3 -2c94 111 171 158 237 158c44 0 73 -23 73 -62c0 -31 -15 -72 -42 -115l-103 -164c-11 -18 -24 -43 -24 -60c0 -12 9 -21 23 -21c50 0 132 52 238 176zM359 472l1 -2c61 0 183 61 183 150c0 19 -13 35 -36 35 c-40 0 -78 -44 -148 -183'], + 0x1D4BE: [653,11,496,83,484,'484 608c0 -26 -22 -50 -51 -50c-26 0 -46 21 -46 43c0 27 25 52 55 52c19 0 42 -22 42 -45zM417 188l21 -17c-101 -123 -169 -182 -230 -182c-47 0 -80 28 -80 82c0 40 18 95 57 165l60 109c-25 -20 -56 -30 -89 -30c-24 0 -51 5 -73 17l10 26c19 -8 41 -13 60 -13 c56 0 103 40 136 79h73l-160 -295c-12 -22 -22 -54 -22 -78c0 -18 13 -32 33 -32c49 0 107 57 204 169'], + 0x1D4BF: [653,219,730,9,718,'718 608c0 -26 -22 -50 -51 -50c-26 0 -46 21 -46 43c0 27 25 52 55 52c19 0 42 -22 42 -45zM596 424l-264 -499c27 -14 54 -22 85 -22c30 0 70 8 100 30l12 -26c-46 -29 -80 -34 -117 -34c-35 0 -74 10 -100 22c-60 -87 -125 -114 -205 -114c-67 0 -98 37 -98 71 c0 37 27 64 54 80c37 23 79 26 115 26c20 0 71 -5 91 -13l209 394c-31 -30 -73 -43 -114 -43c-20 0 -50 5 -68 16l10 26c17 -8 43 -12 60 -12c66 0 119 55 157 98h73zM254 -86l-1 1c-20 9 -60 13 -84 13c-76 0 -126 -30 -126 -72c0 -24 23 -41 56 -41c38 0 100 11 155 99'], + 0x1D4C0: [687,11,726,40,666,'643 187l23 -17c-99 -123 -174 -181 -242 -181c-43 0 -84 19 -84 63c0 58 43 81 43 120c0 20 -15 47 -61 47l11 30c102 6 209 72 209 128c0 28 -20 34 -33 34c-80 0 -255 -143 -365 -358l-27 -53h-77l237 440c-46 8 -86 21 -126 69l20 21c35 -41 78 -57 122 -61 c90 161 142 218 219 218c45 0 63 -37 63 -65c0 -121 -161 -183 -231 -184l-88 -168l2 -1c97 112 183 172 268 172c41 0 68 -29 68 -61c0 -65 -103 -134 -212 -147l-1 -3c39 -23 54 -48 54 -82c0 -51 -33 -72 -33 -102c0 -16 10 -27 31 -27c39 0 110 43 210 168zM361 472 l1 -2c61 0 183 61 183 150c0 19 -13 35 -36 35c-40 0 -78 -44 -148 -183'], + 0x1D4C1: [687,11,579,48,571,'77 389l14 26c33 -23 64 -25 94 -25c105 155 240 297 322 297c42 0 64 -21 64 -67c0 -105 -146 -234 -322 -260c-52 -84 -143 -231 -143 -298c0 -24 9 -43 36 -43c47 0 102 55 199 167l21 -17c-105 -123 -164 -180 -227 -180c-47 0 -87 29 -87 87c0 55 30 136 77 218 c12 22 26 44 40 66c-30 1 -61 10 -88 29zM268 396l1 -1c157 35 272 133 272 229c0 19 -12 31 -35 31c-28 0 -57 -21 -82 -47c-49 -50 -104 -131 -156 -212'], + 0x1D4C2: [441,11,1038,49,978,'957 195l21 -16c-100 -124 -190 -190 -265 -190c-39 0 -69 25 -69 72c0 41 16 86 45 128l104 152c16 24 19 34 19 44c0 16 -11 26 -27 26c-97 0 -265 -171 -384 -411h-75l190 337c10 18 20 32 20 47c0 16 -10 27 -28 27c-96 0 -266 -173 -382 -411h-77l184 342 c-36 -32 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h68l-70 -139l3 -2c94 111 171 158 238 158c39 0 72 -21 72 -62c0 -23 -6 -49 -17 -74l2 -1c76 90 154 137 219 137c45 0 72 -23 72 -62c0 -30 -15 -73 -49 -127l-96 -152 c-11 -18 -23 -43 -23 -59c0 -12 5 -22 23 -22c50 0 131 51 238 176'], + 0x1D4C3: [441,11,761,49,701,'680 195l21 -17c-101 -123 -192 -189 -264 -189c-40 0 -70 24 -70 72c0 34 19 88 46 128l106 157c10 15 17 28 17 39c0 13 -10 26 -28 26c-87 0 -241 -144 -354 -358l-28 -53h-77l183 342c-36 -32 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12 c66 0 129 55 167 98h72l-73 -139l3 -2c94 111 171 158 237 158c44 0 73 -23 73 -62c0 -31 -15 -72 -42 -115l-103 -164c-11 -18 -24 -43 -24 -60c0 -12 9 -21 23 -21c50 0 132 52 238 176'], + 0x1D4C5: [441,209,773,23,694,'362 285l3 -2c94 111 171 158 237 158c44 0 92 -25 92 -99c0 -94 -80 -233 -174 -296c40 -16 78 -39 105 -75l-22 -20c-47 41 -73 62 -124 66c-30 -17 -62 -28 -93 -28c-50 0 -72 15 -72 32c0 22 35 48 90 48c19 0 36 0 57 -4c58 33 170 212 170 306c0 24 -11 40 -36 40 c-87 0 -239 -144 -354 -358l-141 -262h-77l296 551c-36 -37 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 54 167 97l72 1'], + 0x1D4C6: [441,209,780,30,743,'725 202l18 -18c-41 -43 -116 -115 -219 -209c-105 -96 -167 -172 -175 -184h-78l169 310l-2 1c-70 -76 -131 -113 -207 -113c-51 0 -84 42 -84 105c0 33 8 66 23 99c-21 -14 -44 -20 -70 -20c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c56 0 97 40 129 79 c75 91 186 159 266 159c46 0 82 -21 88 -65h2l28 48h68l-281 -525l3 -2c56 62 266 245 325 305zM550 364c0 33 -25 42 -54 42c-56 0 -129 -49 -205 -159c-62 -90 -86 -151 -86 -187c0 -26 19 -41 41 -41c130 0 304 240 304 345'], + 0x1D4C7: [444,0,580,48,572,'569 311l3 -27c-10 -5 -20 -7 -32 -7c-40 0 -74 18 -87 48l-260 -192l-71 -133h-73l183 346c-35 -33 -83 -50 -126 -50c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h72l-120 -228l2 -1l214 160c0 55 33 89 77 89c28 0 42 -17 42 -27l-84 -74 c11 -24 31 -36 62 -36c9 0 17 1 29 4'], + 0x1D4C8: [531,11,515,62,412,'129 243l-9 27c61 21 134 67 200 149c-3 9 -5 19 -5 27c0 55 36 85 53 85c12 0 28 -8 28 -32c0 -23 -11 -59 -42 -90c36 -59 58 -121 58 -181c0 -62 -23 -122 -77 -172c-47 -45 -105 -67 -173 -67c-51 0 -100 25 -100 75c0 42 30 75 60 75c22 0 42 -11 42 -37 c0 -51 -58 -27 -58 -56c0 -15 28 -27 54 -27c95 0 186 103 186 259c0 35 -7 71 -16 106h-2c-70 -81 -127 -111 -199 -141'], + 0x1D4C9: [658,11,551,30,532,'532 526l-13 -30h-146l-209 -387c-11 -21 -14 -43 -14 -58c0 -19 13 -32 33 -32c52 0 109 61 207 173l21 -17c-100 -125 -167 -186 -237 -186c-42 0 -76 27 -76 81c0 45 25 105 57 164l50 92c-36 -33 -74 -50 -117 -50c-20 0 -40 5 -58 16l10 26c17 -8 41 -12 58 -12 c65 0 124 71 158 117l39 73h-102l13 30h103l71 132h79l-72 -132h145'], + 0x1D4CA: [424,11,753,30,693,'670 190l23 -17c-95 -118 -168 -181 -241 -181c-50 0 -70 31 -70 71c0 11 5 47 8 59l-3 1c-75 -86 -144 -134 -211 -134c-43 0 -77 28 -77 88c0 39 17 85 46 139l68 126c-36 -29 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h75 l-159 -295c-13 -23 -22 -54 -22 -78c0 -17 13 -32 33 -32c95 0 242 171 355 405h78l-160 -297c-19 -35 -23 -59 -23 -74c0 -18 8 -31 29 -31c46 0 106 49 207 168'], + 0x1D4CB: [441,11,618,30,582,'575 210l7 -27c-14 -6 -31 -9 -47 -9c-27 0 -53 9 -75 29c-86 -138 -168 -214 -267 -214c-45 0 -91 31 -91 97c0 46 25 105 57 162l51 92c-35 -29 -80 -44 -122 -44c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h75l-158 -295 c-9 -16 -20 -46 -20 -70c0 -22 20 -40 48 -40c61 0 155 59 234 209c-8 18 -16 47 -16 72c0 73 33 141 77 141c21 0 29 -21 29 -50c0 -50 -24 -124 -47 -158c18 -21 40 -29 62 -29c11 0 23 2 34 6'], + 0x1D4CC: [441,11,888,30,852,'845 210l7 -27c-14 -6 -31 -9 -47 -9c-27 0 -53 9 -75 29c-86 -138 -168 -214 -267 -214c-45 0 -91 31 -91 97c0 6 0 11 1 18h-2c-56 -72 -111 -115 -178 -115c-45 0 -91 31 -91 97c0 46 25 105 57 162l51 92c-35 -28 -80 -44 -122 -44c-20 0 -40 5 -58 16l10 26 c17 -8 33 -12 50 -12c66 0 129 55 167 98h75l-158 -295c-9 -16 -20 -46 -20 -70c0 -22 20 -40 48 -40c67 0 142 77 227 229l98 176h75l-158 -295c-9 -16 -20 -46 -20 -70c0 -22 20 -40 48 -40c61 0 155 59 234 209c-8 18 -16 47 -16 72c0 73 33 141 77 141 c21 0 29 -21 29 -50c0 -50 -24 -124 -47 -158c18 -21 40 -29 62 -29c12 0 22 2 34 6'], + 0x1D4CD: [441,11,752,65,675,'653 203l22 -17c-94 -120 -183 -194 -272 -194c-44 0 -90 22 -90 85h-2c-63 -64 -114 -88 -160 -88c-50 0 -86 25 -86 75c0 38 30 72 60 72c22 0 42 -10 42 -36c0 -48 -58 -31 -58 -60c0 -15 16 -21 36 -21c122 0 247 280 247 341c0 29 -10 48 -37 48 c-47 0 -129 -40 -242 -175l-22 17c118 141 201 188 271 188c50 0 88 -30 88 -84h2c39 50 89 87 136 87c50 0 82 -20 82 -76c0 -34 -28 -68 -61 -68c-25 0 -40 13 -40 33c0 48 57 28 57 59c0 11 -9 22 -34 22c-80 0 -221 -257 -221 -345c0 -27 19 -44 42 -44 c64 0 145 67 240 181'], + 0x1D4CE: [424,219,658,30,617,'617 424l-171 -328c-32 -62 -63 -118 -97 -170c27 -14 59 -23 90 -23c30 0 70 8 100 30l12 -26c-46 -29 -80 -34 -117 -34c-35 0 -76 10 -102 22c-55 -81 -123 -114 -203 -114c-67 0 -98 37 -98 71c0 37 27 64 54 80c37 23 79 26 115 26c20 0 71 -5 91 -13l99 177l-3 1 c-75 -86 -144 -134 -211 -134c-43 0 -77 28 -77 88c0 39 17 85 46 139l68 126c-38 -32 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h75l-159 -295c-13 -23 -22 -54 -22 -78c0 -19 10 -32 33 -32c95 0 242 171 355 405h78zM276 -86 l-1 1c-20 9 -60 13 -84 13c-76 0 -126 -30 -126 -72c0 -24 23 -41 56 -41c38 0 100 11 155 99'], + 0x1D4CF: [478,11,691,52,617,'594 178l23 -16c-107 -149 -183 -173 -250 -173c-43 0 -60 17 -60 46c0 30 20 43 20 66c0 15 -14 27 -29 27c-43 0 -80 -17 -127 -71c-43 -49 -72 -63 -97 -63c-14 0 -22 9 -22 20c0 28 30 63 127 108l231 188l-1 2c-13 -5 -28 -7 -43 -7c-37 0 -72 13 -99 34 c-32 -34 -82 -55 -123 -55c-20 0 -43 5 -61 16l12 26c17 -8 31 -12 48 -12c44 0 76 18 102 44c-16 19 -26 42 -26 63c0 30 19 57 47 57c26 0 40 -24 40 -50c0 -20 -9 -42 -18 -61c19 -24 49 -32 77 -32c25 0 52 5 76 17c50 68 97 89 121 89c16 0 31 -7 31 -23 c0 -33 -44 -64 -120 -89l-223 -186l1 -1c31 16 56 16 72 16c50 0 74 -27 74 -56c0 -28 -17 -38 -17 -60c0 -8 9 -14 17 -14c44 0 112 32 197 150'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Script/Regular/Main.js new file mode 100644 index 0000000..5bc326f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Script/Regular/Main.js @@ -0,0 +1,80 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Script/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Script'] = { + directory: 'Script/Regular', + family: 'STIXMathJax_Script', + id: 'STIXWEBSCRIPT', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x210A: [441,219,738,30,678,'678 424l-269 -498c27 -14 60 -23 91 -23c30 0 70 8 100 30l12 -26c-46 -29 -83 -34 -117 -34c-35 0 -76 8 -102 22c-55 -81 -123 -114 -203 -114c-67 0 -98 37 -98 71c0 37 27 64 54 80c37 22 76 26 115 26c20 0 71 -5 91 -13l87 156l-1 1c-70 -76 -131 -113 -207 -113 c-51 0 -84 42 -84 105c0 33 8 66 23 99c-21 -14 -44 -20 -70 -20c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c56 0 97 40 129 79c75 91 186 159 266 159c46 0 82 -21 88 -65h2l28 48h68zM550 364c0 33 -25 42 -54 42c-56 0 -129 -49 -205 -159 c-62 -90 -86 -151 -86 -187c0 -26 19 -41 41 -41c130 0 304 240 304 345zM337 -86l-1 1c-20 9 -60 13 -84 13c-76 0 -126 -30 -126 -72c0 -24 23 -41 56 -41c38 0 100 11 155 99'], + 0x210B: [687,15,997,53,991,'714 664l-18 -14c-90 -70 -159 -166 -232 -310c38 16 76 25 115 39l33 43c139 173 263 265 322 265c31 0 57 -14 57 -50c0 -110 -156 -191 -304 -250c-93 -134 -174 -275 -174 -334c0 -21 15 -35 34 -35c39 0 95 46 167 129l21 -13c-75 -91 -141 -146 -202 -146 c-52 0 -87 33 -87 89c0 78 49 177 104 262l-107 -41c-75 -147 -183 -266 -277 -302c-19 -7 -38 -11 -56 -11c-33 0 -57 24 -57 60c0 105 136 185 283 247c48 78 91 161 211 266c-7 -1 -15 -1 -20 -1c-40 0 -71 15 -124 44c-37 20 -74 34 -102 34c-64 0 -116 -48 -116 -101 c0 -52 25 -94 88 -94c53 0 88 33 121 86l18 -9c-33 -65 -74 -107 -141 -107c-80 0 -127 52 -127 126c0 75 71 151 175 151c40 0 73 -14 142 -49c35 -18 64 -31 86 -31c21 0 41 0 80 19c24 12 50 35 75 52zM958 635c0 14 -9 22 -24 22c-38 0 -128 -103 -214 -223 c132 58 238 126 238 201zM307 241c-127 -58 -221 -121 -221 -197c0 -20 12 -27 24 -29c61 0 143 132 197 226'], + 0x2110: [675,15,897,26,888,'63 95h-2c0 -26 49 -79 120 -79c125 0 219 45 312 255c9 21 18 41 27 59c-72 15 -124 63 -124 141c0 65 38 115 86 145c54 33 123 40 183 40c53 0 93 -5 118 -8c34 23 66 27 76 27c16 0 29 -8 29 -20c0 -50 -81 -52 -109 -52c-54 -39 -100 -135 -146 -235 c48 13 89 43 125 99l16 -10c-35 -68 -91 -109 -157 -124c-41 -88 -83 -174 -133 -227c-85 -88 -183 -121 -285 -121c-106 0 -173 56 -173 122c0 42 26 72 59 72c28 0 51 -19 51 -48c0 -25 -15 -48 -43 -48c-8 0 -24 2 -30 12zM729 601v2c-15 1 -33 1 -53 1 c-50 0 -109 -4 -154 -24s-85 -63 -85 -118c0 -40 28 -91 99 -100c58 113 113 185 193 239'], + 0x2112: [687,15,946,33,931,'608 643l-12 -19c-55 33 -110 33 -145 33c-105 0 -222 -54 -222 -157c0 -101 100 -158 242 -158c18 0 33 1 63 5c34 64 57 115 86 159c50 76 147 163 228 163c59 0 83 -35 83 -82c0 -88 -125 -206 -304 -254c-62 -134 -169 -260 -255 -294c39 -13 76 -23 103 -23 c96 0 183 47 265 139l19 -14c-88 -105 -184 -156 -281 -156c-76 0 -124 15 -164 30c-47 -16 -97 -24 -155 -24c-82 0 -126 22 -126 61c0 30 41 57 108 57c60 0 115 -28 173 -50c53 34 139 135 204 256c-17 -2 -36 -3 -53 -3c-124 0 -277 49 -277 192c0 104 112 183 255 183 c43 0 108 -6 165 -44zM890 588c0 27 -17 44 -49 44c-81 0 -158 -149 -198 -263c34 9 70 26 104 45c76 42 143 106 143 174zM266 35v1c-57 33 -94 43 -125 43c-19 0 -67 -4 -67 -25c0 -22 29 -33 87 -33c39 0 74 3 105 14'], + 0x211B: [687,15,944,34,876,'852 669l7 -19c-26 -11 -47 -24 -66 -38c55 -35 83 -87 83 -139c0 -80 -64 -157 -180 -161v-2c31 -23 54 -53 54 -84c0 -68 -76 -133 -76 -174c0 -21 12 -34 32 -34c34 0 84 35 145 101l17 -16c-64 -73 -122 -115 -176 -115c-47 0 -93 33 -93 82c0 79 84 111 84 175 c0 9 -2 48 -33 48c-11 0 -36 4 -47 11c-112 -231 -239 -319 -396 -319c-106 0 -173 57 -173 123c0 42 26 71 59 71c28 0 51 -19 51 -48c0 -25 -15 -48 -43 -48c-8 0 -24 2 -30 12h-2c0 -34 49 -79 120 -79c125 0 185 55 297 255c89 159 154 267 252 338 c-54 34 -126 48 -192 48c-205 0 -351 -122 -351 -249c0 -55 46 -96 103 -96c112 0 176 91 205 245h20c-8 -130 -89 -275 -227 -275c-83 0 -142 51 -142 130c0 136 155 275 393 275c79 0 159 -21 221 -59c25 16 52 29 84 41zM814 486c0 39 -15 76 -48 102 c-58 -57 -92 -135 -140 -234c23 0 43 -6 60 -17c80 8 128 80 128 149'], + 0x212C: [687,15,950,34,902,'895 660l7 -19c-27 -12 -51 -25 -72 -40c43 -35 72 -77 72 -138c0 -65 -66 -134 -153 -145v-2c64 -27 90 -82 90 -130c0 -58 -35 -123 -96 -164c-33 -22 -69 -33 -112 -33c-64 0 -94 43 -94 78c0 65 49 117 138 132l4 -23c-55 -6 -105 -49 -105 -94c0 -26 22 -48 50 -48 c22 0 43 4 61 15c49 29 78 92 78 154c0 40 -11 75 -46 95c-16 -4 -42 -6 -49 -6c-21 0 -42 8 -47 19c-113 -234 -255 -326 -414 -326c-106 0 -173 56 -173 122c0 42 26 72 59 72c28 0 51 -19 51 -48c0 -25 -15 -48 -43 -48c-8 0 -24 2 -30 12h-2c0 -34 49 -79 120 -79 c125 0 199 55 312 255c90 159 168 262 275 330c-61 42 -150 56 -210 56c-183 0 -372 -102 -372 -261c0 -61 41 -106 111 -106c110 0 202 106 209 271h20c0 -160 -88 -301 -234 -301c-79 0 -147 47 -147 143c0 186 242 284 411 284c74 0 172 -19 244 -67c27 16 55 28 87 40z M841 485c0 39 -16 70 -40 95c-65 -55 -110 -131 -162 -232c5 3 17 4 23 4c13 0 35 -4 55 -14c86 7 124 83 124 147'], + 0x212F: [441,11,627,30,554,'534 196l20 -20c-116 -117 -218 -187 -324 -187c-71 0 -106 44 -106 111c0 30 6 61 18 92c-45 5 -90 32 -112 72l23 17c21 -41 59 -59 101 -62c57 119 189 222 309 222c41 0 71 -18 71 -55c0 -69 -113 -164 -310 -194c-24 -42 -42 -89 -42 -118c0 -35 23 -55 54 -55 c88 0 186 66 298 177zM245 227l1 -1c147 21 258 103 258 158c0 20 -19 27 -36 27c-60 0 -142 -58 -223 -184'], + 0x2130: [687,15,750,100,734,'421 658l-10 -18c-39 15 -55 17 -110 17c-97 0 -160 -47 -160 -111c0 -74 88 -114 191 -114c12 136 179 226 302 226c64 0 100 -25 100 -73c0 -80 -146 -171 -331 -185c1 -6 2 -8 4 -12c47 -2 75 -11 75 -31c0 -19 -18 -28 -42 -28c-21 0 -37 5 -53 14 c-120 -32 -195 -123 -195 -209c0 -61 52 -119 144 -119c67 0 118 26 149 60c24 26 35 56 35 85c0 46 -35 74 -87 74c-69 0 -140 -57 -164 -142l-21 6c27 108 104 178 202 178c91 0 134 -49 134 -115c0 -90 -121 -176 -258 -176c-115 0 -216 58 -216 169 c0 103 86 194 237 225v2c-5 5 -6 20 -11 20c-140 3 -236 58 -236 148c0 74 74 138 189 138c49 0 83 -4 132 -29zM693 588c0 20 -23 33 -52 33c-95 0 -225 -101 -238 -191c164 10 290 95 290 158'], + 0x2131: [680,0,919,43,907,'896 662l11 -15c-45 -37 -111 -73 -176 -73c-109 0 -256 60 -349 60c-125 0 -203 -57 -203 -143c0 -80 55 -112 107 -112c98 0 150 63 186 176l20 -1c-26 -135 -96 -205 -209 -205c-75 0 -145 50 -145 135c0 53 25 99 64 132c50 42 126 64 227 64c110 0 254 -56 354 -56 c42 0 80 19 113 38zM657 568l14 -14c-49 -48 -76 -121 -107 -217c40 8 80 14 121 15c26 39 59 57 78 57c12 0 23 -6 23 -22c0 -19 -28 -54 -72 -75c-8 -22 -8 -41 -8 -60c0 -6 1 -17 3 -26l-59 -20v18c0 20 3 43 11 70c-21 -1 -62 -3 -115 -12c-77 -207 -211 -282 -354 -282 c-70 0 -149 33 -149 111c0 43 25 69 60 69c27 0 50 -22 50 -49c0 -26 -16 -50 -44 -50c-8 0 -23 3 -29 13h-2c5 -35 47 -63 106 -63c97 0 165 47 253 225c-57 -18 -118 -45 -177 -85l-13 15c39 47 122 92 216 124c5 10 9 20 14 31c43 98 100 159 180 227'], + 0x2133: [674,15,1072,38,1056,'1048 672l8 -13c-191 -302 -319 -547 -319 -606c0 -25 15 -35 33 -35c40 0 98 49 170 132l19 -16c-75 -91 -141 -146 -203 -146c-48 0 -86 30 -86 82c0 109 111 298 308 563l-1 2c-86 -32 -185 -147 -330 -404c-87 -154 -131 -235 -213 -235c-34 0 -56 28 -56 70 c0 78 83 215 143 307c53 82 125 194 192 270l-1 1c-74 -30 -169 -136 -239 -247c-166 -265 -238 -412 -355 -412c-46 0 -80 35 -80 78c0 38 27 65 59 65c31 0 52 -26 52 -52c0 -22 -16 -44 -43 -44c-5 0 -10 1 -15 4h-3c2 -14 17 -21 31 -21c68 0 122 63 225 235 c201 336 309 424 418 424c4 0 7 0 17 -2l15 -12c-141 -199 -274 -433 -322 -542c-3 -8 -17 -40 -17 -61c0 -10 2 -18 13 -18c26 0 53 42 86 95c114 183 267 514 466 540c8 0 16 0 28 -2'], + 0x2134: [441,11,697,30,680,'668 223l12 -25c-22 -15 -43 -21 -75 -21c-21 0 -46 3 -69 18c-78 -135 -170 -206 -269 -206c-66 0 -109 38 -109 117c0 30 6 61 18 91c-22 -18 -53 -24 -82 -24c-24 0 -42 5 -64 17l10 26c19 -8 38 -13 57 -13c53 0 93 33 123 72c70 92 179 166 277 166 c53 0 87 -37 87 -87c0 -39 -10 -82 -34 -130c16 -11 39 -17 59 -17c25 0 40 3 59 16zM554 355c-3 31 -19 51 -55 51c-114 0 -283 -236 -283 -323c0 -33 17 -64 56 -64c67 0 156 49 234 192c-12 19 -16 39 -16 59c0 38 29 79 64 85'], + 0x1D49C: [674,15,855,31,846,'837 672l9 -14c-93 -182 -168 -357 -265 -589c36 7 76 20 103 34l9 -16c-32 -24 -82 -38 -124 -45l-17 -42h-97l18 39c-57 4 -113 17 -162 40c-56 -57 -113 -94 -173 -94c-64 0 -107 39 -107 92c0 44 29 72 62 72c28 0 50 -21 50 -48c0 -21 -15 -48 -43 -48 c-5 0 -23 2 -29 12h-2c0 -19 23 -50 65 -50c57 0 95 24 150 77c-72 41 -122 107 -122 207c0 117 98 181 187 181c73 0 126 -33 161 -82c98 143 200 276 303 276c9 0 16 0 24 -2zM772 638h-1c-83 -29 -163 -143 -245 -267c21 -41 32 -92 33 -144c69 151 143 304 213 411z M536 199c0 52 -9 103 -29 145c-56 -86 -112 -172 -172 -239c44 -21 95 -34 151 -38l49 109c1 8 1 15 1 23zM492 372c-30 45 -77 75 -143 75c-74 0 -146 -61 -146 -146c0 -83 42 -143 107 -182c58 64 121 159 182 253'], + 0x1D49E: [687,15,797,37,781,'449 645l-12 -19c-55 31 -101 31 -136 31c-101 0 -223 -52 -223 -156c0 -89 73 -131 151 -140c108 166 317 308 456 308c62 0 96 -27 96 -75c0 -121 -230 -270 -469 -270c-57 -83 -69 -149 -69 -199c0 -63 42 -110 117 -110c110 0 202 83 202 158c0 52 -34 74 -71 74 c-68 0 -148 -76 -158 -184l-22 2c0 122 91 225 197 225c71 0 118 -34 118 -103c0 -58 -44 -112 -96 -148s-113 -54 -174 -54c-109 0 -197 63 -197 173c0 58 18 115 48 171c-84 14 -170 67 -170 170c0 95 99 188 256 188c43 0 99 -5 156 -42zM331 355l1 -1 c78 0 170 24 244 62c95 48 164 117 164 176c0 27 -17 40 -50 40c-97 0 -248 -119 -359 -277'], + 0x1D49F: [687,15,885,36,818,'810 587l8 -20c-37 -16 -42 -21 -71 -53c36 -56 57 -121 57 -190c0 -191 -159 -339 -322 -339c-58 0 -109 15 -156 33c-50 -18 -102 -27 -161 -27c-82 0 -129 25 -129 63c0 33 44 55 107 55c55 0 109 -20 170 -52c63 39 121 114 203 246c55 89 113 160 179 216 c-59 82 -171 136 -280 136c-196 0 -305 -96 -305 -233c0 -78 65 -145 164 -145c120 0 215 76 216 261h19c2 -15 2 -29 2 -43c0 -177 -141 -248 -235 -248c-116 0 -207 72 -207 183c0 147 148 257 339 257c131 0 247 -58 317 -144c35 25 45 30 85 44zM756 336 c0 51 -13 100 -37 144c-40 -53 -73 -118 -103 -178c-47 -95 -111 -176 -196 -234c-18 -12 -35 -23 -53 -32c35 -12 72 -20 111 -20c145 0 278 119 278 320zM276 39c-49 26 -86 40 -132 40c-19 0 -67 -4 -67 -25c0 -22 29 -33 87 -33c43 0 79 5 112 18'], + 0x1D4A2: [687,15,773,83,740,'417 653l-9 -18c-38 17 -76 22 -111 22c-104 0 -173 -54 -173 -116c0 -58 52 -101 139 -113c96 152 263 241 374 241c56 0 103 -27 103 -76c0 -103 -198 -203 -397 -203c-32 -47 -41 -98 -41 -128c0 -37 22 -67 66 -67c72 0 152 45 269 151l15 -16 c-32 -32 -46 -67 -66 -121c-54 -148 -163 -224 -330 -224c-99 0 -169 54 -169 110c0 39 24 69 59 69c27 0 51 -22 51 -47c0 -27 -16 -51 -44 -51c-12 0 -23 3 -29 13h-2c6 -31 61 -63 124 -63c123 0 192 73 254 192l-1 1c-45 -30 -91 -44 -138 -44c-78 0 -137 48 -137 127 c0 28 8 71 26 106c-100 17 -167 65 -167 143c0 81 88 146 207 146c45 0 87 -10 127 -34zM699 590c0 28 -26 42 -57 42c-86 0 -217 -98 -281 -212c171 0 338 92 338 170'], + 0x1D4A5: [674,177,802,9,792,'552 193l15 -16c-44 -39 -96 -72 -151 -92c-63 -122 -198 -262 -329 -262c-48 0 -78 26 -78 65c0 47 40 94 125 134c52 24 122 43 190 64c37 72 67 169 103 245c-70 14 -121 57 -121 133c0 138 155 196 269 196c68 0 86 -3 127 -6c36 20 53 20 66 20c11 0 24 -8 24 -20 c0 -43 -60 -48 -104 -48c-55 -39 -106 -137 -152 -240c50 12 93 43 131 101l16 -11c-36 -70 -94 -111 -162 -124l-87 -208c40 15 79 35 118 69zM639 605v1c-13 1 -28 2 -43 2c-46 0 -99 -6 -130 -17c-58 -21 -119 -69 -119 -137c0 -52 45 -90 96 -91c50 98 109 179 196 242z M302 43c-61 -20 -119 -34 -163 -56c-74 -36 -88 -73 -88 -97c0 -19 14 -37 36 -37c85 0 152 75 215 190'], + 0x1D4A6: [687,15,1009,40,1004,'771 669l13 -16c-107 -81 -156 -187 -217 -293c15 0 29 -2 42 -14c42 9 73 38 132 125c93 136 159 216 212 216c28 0 51 -13 51 -41c0 -25 -14 -45 -42 -45c-18 0 -44 12 -45 45h-1c-19 -15 -40 -75 -67 -124c-67 -121 -127 -172 -211 -199v-2c34 -34 48 -58 48 -89 c0 -68 -76 -139 -76 -180c0 -21 12 -34 32 -34c39 0 95 44 169 129l19 -15c-74 -91 -141 -144 -202 -144c-47 0 -93 33 -93 82c0 79 85 141 85 205c0 9 -1 31 -40 31c-20 0 -28 4 -34 15c-127 -279 -245 -336 -363 -336c-87 0 -143 52 -143 106c0 38 23 74 63 74 c26 0 47 -21 47 -50c0 -25 -16 -49 -44 -49c-9 0 -23 3 -29 13h-2c4 -31 46 -63 106 -63c83 0 134 60 210 194c84 149 119 239 242 340l-1 3c-9 -3 -26 -5 -36 -5c-40 0 -71 15 -124 44c-37 20 -74 34 -102 34c-64 0 -118 -48 -118 -101c0 -52 37 -94 100 -94 c53 0 98 33 131 86l18 -9c-33 -65 -84 -107 -151 -107c-80 0 -139 52 -139 126c0 75 73 151 177 151c40 0 73 -14 142 -49c35 -18 64 -31 86 -31c44 0 106 26 155 71'], + 0x1D4A9: [687,15,970,38,956,'569 131h1c35 53 79 159 122 263c42 101 89 204 138 256c23 25 45 37 74 37c30 0 52 -17 52 -46c0 -28 -19 -46 -43 -46c-18 0 -47 13 -47 45h-3c-34 -18 -80 -104 -151 -277c-56 -138 -124 -299 -216 -376h-20c19 76 28 174 32 310c3 103 10 204 27 265l-1 1 c-33 -45 -89 -140 -143 -248c-116 -231 -185 -330 -273 -330c-46 0 -80 35 -80 77c0 39 27 66 59 66c31 0 52 -25 52 -51c0 -22 -16 -45 -42 -45c-5 0 -11 1 -16 4h-3c2 -14 17 -22 31 -22c75 0 148 115 238 298c103 209 188 331 252 357l13 -11c-13 -43 -19 -134 -26 -267 c-5 -100 -13 -189 -27 -260'], + 0x1D4AA: [680,15,692,82,663,'663 549l-20 -2c-18 56 -53 98 -126 98c-170 0 -375 -313 -375 -495c0 -73 36 -135 114 -135c86 0 154 42 213 103c39 41 117 147 117 278c0 74 -46 110 -92 110c-63 0 -128 -57 -128 -159c0 -25 3 -59 27 -105l-22 -10c-32 52 -35 99 -35 130c0 106 78 180 161 180 c64 0 140 -40 140 -146c0 -193 -170 -411 -379 -411c-116 0 -176 95 -176 203c0 256 201 492 439 492c87 0 142 -59 142 -131'], + 0x1D4AB: [687,15,910,38,886,'856 669l7 -19c-26 -11 -47 -24 -66 -38c53 -40 89 -96 89 -165c0 -88 -64 -175 -149 -175c-49 0 -72 32 -72 66c0 29 23 60 58 79l10 -18c-33 -19 -36 -41 -36 -54c0 -17 13 -29 34 -29c56 0 94 66 94 149c0 53 -22 94 -55 123c-67 -66 -98 -162 -160 -286 c-115 -231 -242 -317 -399 -317c-106 0 -173 57 -173 123c0 42 26 71 59 71c28 0 51 -19 51 -48c0 -25 -15 -48 -43 -48c-8 0 -24 2 -30 12h-2c0 -34 49 -79 120 -79c125 0 190 55 302 255c89 159 149 267 247 338c-54 34 -126 48 -192 48c-205 0 -351 -122 -351 -249 c0 -55 46 -96 103 -96c112 0 176 95 205 249h20c-10 -135 -82 -279 -227 -279c-83 0 -142 51 -142 130c0 136 155 275 393 275c79 0 159 -21 221 -59c25 16 52 29 84 41'], + 0x1D4AC: [680,38,692,82,663,'663 549l-20 -2c-18 56 -53 98 -126 98c-170 0 -375 -313 -375 -495c0 -73 36 -135 114 -135c50 0 94 14 134 38c-15 24 -31 43 -60 43c-25 0 -47 -7 -76 -29l-13 17c42 39 72 58 108 58c47 0 69 -27 86 -56c11 10 23 20 34 32c39 41 117 147 117 278 c0 74 -46 110 -92 110c-63 0 -128 -57 -128 -159c0 -25 3 -59 27 -105l-22 -10c-32 52 -35 99 -35 130c0 106 78 180 161 180c64 0 140 -40 140 -146c0 -127 -73 -265 -183 -344c15 -24 31 -42 62 -42c27 0 66 13 102 48l15 -14c-49 -59 -98 -82 -133 -82 c-49 0 -72 30 -92 61c-46 -24 -97 -38 -150 -38c-116 0 -176 95 -176 203c0 256 201 492 439 492c86 0 142 -59 142 -131'], + 0x1D4AE: [680,15,743,67,701,'397 143l-20 -4c-31 105 -82 117 -136 117c-48 0 -112 -44 -112 -119c0 -70 63 -122 143 -122c93 0 193 60 193 176c0 106 -157 149 -157 281c0 143 146 208 253 208c66 0 140 -32 140 -116c0 -73 -74 -129 -142 -129v21c61 6 109 44 109 107c0 61 -55 81 -108 81 c-77 0 -175 -62 -175 -153c0 -110 162 -155 162 -287c0 -135 -129 -219 -283 -219c-97 0 -197 44 -197 157c0 100 85 157 167 157c75 0 150 -47 163 -156'], + 0x1D4AF: [687,15,912,43,907,'896 675l11 -18c-45 -37 -111 -73 -176 -73c-109 0 -256 57 -349 57c-125 0 -213 -75 -213 -161c0 -80 55 -121 117 -121c98 0 154 69 190 182h20c-26 -135 -104 -212 -217 -212c-82 0 -151 54 -151 144c0 129 131 214 311 214c110 0 244 -53 344 -53c42 0 80 19 113 41z M658 553l13 -14c-53 -52 -83 -126 -114 -235c-30 -106 -94 -203 -179 -259c-57 -38 -115 -60 -187 -60c-81 0 -148 46 -148 106c0 48 26 74 61 74c27 0 49 -22 49 -49c0 -26 -17 -49 -45 -49c-8 0 -22 2 -28 12h-2c4 -35 43 -63 106 -63c111 0 179 65 270 261 c68 146 124 208 204 276'], + 0x1D4B0: [687,15,842,36,805,'805 658l-296 -550c-16 -30 -17 -48 -17 -55c0 -25 15 -35 33 -35c40 0 96 46 168 129l21 -13c-75 -91 -140 -146 -203 -146c-48 0 -86 30 -86 78c0 17 3 40 17 71l-3 1c-71 -97 -149 -153 -205 -153c-48 0 -81 34 -81 88c0 38 16 82 70 167l145 227c29 45 36 75 36 101 c0 50 -64 84 -121 84c-108 0 -206 -70 -206 -178c0 -48 27 -84 73 -84c75 0 115 50 139 119h20c-14 -66 -71 -149 -158 -149c-67 0 -115 46 -115 114c0 123 128 213 256 213c91 0 179 -49 179 -146c0 -34 -8 -78 -38 -124l-186 -287c-28 -44 -39 -71 -39 -87 c0 -14 7 -28 29 -28c112 0 300 303 352 400l130 243h86'], + 0x1D4B1: [687,15,932,35,922,'214 21l2 -2c147 31 254 170 391 378c116 176 194 290 265 290c28 0 50 -19 50 -47c0 -25 -20 -43 -43 -43c-26 0 -44 17 -44 49h-1c-33 -19 -93 -94 -200 -261c-99 -155 -183 -257 -249 -308c-74 -58 -139 -92 -204 -92c-6 0 -14 0 -47 6c57 52 81 102 147 271 c48 122 104 197 193 283l-3 3c-9 -3 -26 -5 -36 -5c-97 0 -172 83 -241 83c-64 0 -118 -48 -118 -101c0 -52 38 -94 100 -94c53 0 98 33 131 86l16 -9c-33 -65 -82 -107 -149 -107c-80 0 -139 52 -139 126c0 75 86 151 183 151c40 0 67 -14 136 -49c35 -18 64 -31 86 -31 c36 0 83 15 124 49l27 22l15 -15c-105 -113 -140 -194 -185 -307c-55 -137 -130 -257 -207 -326'], + 0x1D4B2: [687,15,1078,35,1070,'455 24l2 -2c95 38 173 138 267 301c162 281 221 364 296 364c27 0 50 -17 50 -47c0 -24 -19 -43 -43 -43c-26 0 -43 17 -43 50h-1c-39 -11 -109 -125 -246 -361c-103 -177 -213 -301 -319 -301c-18 0 -33 0 -46 4c65 61 106 137 141 233c59 162 128 277 237 393l-1 1 c-84 -15 -186 -176 -262 -312c-107 -193 -221 -319 -326 -319c-13 0 -33 3 -47 6c66 56 104 154 147 268c44 117 104 198 192 287l-2 2c-9 -3 -26 -5 -36 -5c-91 0 -165 83 -231 83c-64 0 -108 -48 -108 -101c0 -52 32 -94 90 -94c53 0 88 33 121 86l16 -9 c-33 -65 -75 -107 -139 -107c-75 0 -129 52 -129 126c0 75 66 151 163 151c40 0 77 -14 146 -49c35 -18 54 -31 76 -31c36 0 83 15 124 49l27 22l15 -16c-77 -76 -139 -173 -196 -321c-48 -125 -118 -240 -196 -310l2 -3c108 39 202 192 267 308c122 216 222 324 309 324 c11 0 27 -3 51 -11c-73 -52 -115 -173 -173 -306c-56 -127 -111 -226 -195 -310'], + 0x1D4B3: [687,15,891,36,873,'571 489h2c80 142 157 198 226 198c40 0 74 -18 74 -63c0 -36 -27 -56 -54 -56c-25 0 -50 14 -50 46c0 12 5 28 17 40c-73 0 -166 -133 -254 -331c-27 -61 -67 -162 -67 -228c0 -38 13 -65 50 -65s82 38 156 124l20 -15c-68 -87 -123 -153 -205 -153 c-63 0 -101 34 -101 100c0 12 3 40 9 55h-2c-68 -97 -140 -156 -242 -156c-76 0 -114 56 -114 106c0 39 23 72 58 72c27 0 51 -22 51 -47c0 -27 -19 -53 -47 -53c-7 0 -20 3 -25 6c17 -39 46 -54 94 -54c78 0 169 110 240 234c51 90 88 188 88 257c0 97 -39 148 -124 148 c-89 0 -161 -63 -161 -157c0 -53 28 -95 87 -95c71 0 105 48 126 106l19 -5c-23 -81 -78 -131 -148 -131c-76 0 -125 49 -125 126c0 107 90 189 205 189c121 0 197 -88 197 -198'], + 0x1D4B4: [687,226,926,91,916,'825 658h91c-169 -226 -279 -398 -370 -581c43 16 93 43 137 80l15 -15c-66 -60 -113 -80 -167 -104c-62 -120 -195 -264 -327 -264c-48 0 -81 26 -81 65c0 122 201 160 315 197c41 81 59 120 103 196l-3 4c-70 -97 -152 -154 -208 -154c-52 0 -85 34 -85 93 c0 49 29 99 107 200c99 127 114 160 114 194c0 46 -66 83 -126 83c-119 0 -208 -63 -208 -167c0 -43 34 -75 79 -75c67 0 118 41 149 125h20c-29 -111 -103 -155 -175 -155c-64 0 -114 46 -114 107c0 120 128 200 256 200c99 0 179 -61 179 -146c0 -62 -35 -117 -140 -249 c-70 -88 -86 -127 -86 -151c0 -14 9 -29 29 -29c69 0 165 92 313 295zM419 -2c-143 -47 -254 -82 -254 -157c0 -19 17 -37 39 -37c85 0 152 79 215 194'], + 0x1D4B5: [687,15,932,59,912,'407 519l18 -8c-30 -59 -67 -98 -138 -98c-65 0 -128 44 -128 115c0 68 63 159 197 159c108 0 210 -41 294 -75c52 33 103 46 150 46c81 0 112 -29 112 -60s-48 -58 -116 -58c-45 0 -88 11 -133 26c-40 -46 -76 -122 -116 -236c5 -1 9 -1 11 -1c32 1 68 8 93 27l14 -17 c-31 -33 -70 -59 -118 -59c-4 0 -14 0 -18 1c-35 -92 -89 -169 -158 -221c56 -19 111 -36 157 -36c107 0 179 52 204 139l20 -1c-19 -113 -98 -177 -222 -177c-51 0 -98 15 -197 49c-49 -28 -103 -43 -162 -43c-82 0 -112 26 -112 60c0 31 48 58 116 58c42 0 92 -15 142 -31 c48 46 83 119 120 215c-4 1 -8 1 -12 1c-29 0 -57 -3 -95 -32l-17 16c34 37 79 65 126 65c5 0 11 0 17 -1c48 116 101 193 157 241c-82 31 -170 65 -278 65c-95 0 -135 -75 -135 -120c0 -55 41 -85 87 -85c57 0 87 22 120 76zM871 598c0 16 -17 30 -71 30 c-41 0 -75 -10 -106 -33c41 -15 78 -25 112 -25c37 0 65 14 65 28zM283 51c-49 18 -76 28 -118 28c-37 0 -65 -14 -65 -28c0 -16 17 -30 71 -30c44 0 81 10 112 30'], + 0x1D4B6: [441,11,819,30,758,'737 194l21 -17c-94 -123 -178 -185 -247 -185c-51 0 -76 39 -76 85c0 11 1 22 4 32l-1 1c-68 -75 -129 -121 -197 -121c-59 0 -92 43 -92 109c0 31 8 63 22 95c-21 -12 -45 -20 -71 -20c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c56 0 96 40 129 79v-1 c72 90 181 160 272 160c29 0 91 0 118 -71l-21 -10c-22 40 -54 51 -84 51c-47 0 -98 -25 -143 -70c-89 -90 -161 -222 -161 -277c0 -21 8 -45 39 -45c74 0 149 82 203 145c9 52 47 153 110 153c16 0 27 -6 27 -28c0 -35 -54 -94 -110 -146c-11 -39 -11 -49 -11 -63 c0 -48 31 -58 55 -58c34 0 109 37 217 172'], + 0x1D4B7: [687,12,580,47,559,'127 493l20 22c26 -31 55 -42 85 -47c74 104 179 219 266 219c40 0 61 -25 61 -55c0 -95 -110 -200 -268 -200c-56 -83 -186 -291 -186 -370c0 -24 9 -44 36 -44c78 0 166 77 246 208c-9 26 -10 32 -10 56c0 81 49 137 86 137c11 0 24 -13 24 -29c0 -33 -7 -79 -55 -158 c15 -25 41 -32 63 -32c12 0 23 2 30 5l7 -26c-11 -6 -29 -9 -38 -9c-34 0 -59 8 -84 32h-1c-89 -140 -186 -214 -269 -214c-54 0 -93 37 -93 93c0 89 81 249 166 360c-31 8 -62 23 -86 52zM529 624c0 19 -12 31 -35 31c-43 0 -100 -70 -183 -193c121 0 218 90 218 162'], + 0x1D4B8: [441,11,662,30,589,'567 225l22 -17c-123 -152 -238 -219 -328 -219c-63 0 -103 44 -103 117c0 30 6 61 18 91c-20 -16 -47 -24 -76 -24c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c51 0 89 33 120 69c68 95 180 169 270 169c51 0 88 -23 88 -79c0 -34 -28 -65 -61 -65 c-24 0 -40 11 -40 33c0 46 62 29 62 60c0 11 -11 21 -34 21c-118 0 -286 -245 -286 -337c0 -35 23 -55 54 -55c60 0 172 54 297 206'], + 0x1D4B9: [687,11,845,30,827,'827 687l-321 -590c-8 -14 -14 -33 -14 -48s9 -27 28 -27c40 0 101 37 212 172l23 -17c-97 -123 -171 -185 -242 -185c-52 0 -73 32 -73 71c0 15 3 31 9 47h-2c-72 -74 -134 -121 -209 -121c-58 0 -91 41 -91 105c0 32 9 66 24 99c-20 -13 -45 -20 -71 -20 c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c56 0 96 40 129 79v-1c72 90 180 160 270 160c46 0 78 -24 78 -78h2l172 324h79zM544 365c0 29 -19 41 -48 41c-53 0 -135 -57 -204 -157c-66 -95 -87 -151 -87 -189c0 -20 10 -41 41 -41c47 -1 90 23 143 73 c83 78 155 198 155 273'], + 0x1D4BB: [687,209,685,27,673,'27 -209l194 374c-9 17 -13 36 -13 58c0 58 45 110 117 147c100 193 165 317 274 317c51 0 74 -39 74 -70c0 -130 -165 -210 -271 -252l-115 -221c24 -13 48 -18 81 -18c39 0 87 16 129 54l17 -23c-55 -46 -104 -61 -153 -61c-35 0 -65 7 -89 19l-166 -324h-79zM643 606 c0 41 -19 49 -42 49c-52 0 -96 -84 -120 -130l-62 -120c95 36 224 112 224 201'], + 0x1D4BD: [687,11,753,38,690,'669 195l21 -17c-104 -123 -196 -189 -264 -189c-42 0 -70 24 -70 72c0 34 19 88 46 128l106 157c10 15 17 28 17 39c0 13 -7 26 -25 26c-87 0 -244 -144 -357 -358l-28 -53h-77l237 440c-46 8 -86 21 -126 69l20 21c35 -41 78 -57 122 -61c90 161 142 218 219 218 c45 0 63 -37 63 -65c0 -120 -161 -183 -231 -184l-78 -153l3 -2c94 111 171 158 237 158c44 0 73 -23 73 -62c0 -31 -15 -72 -42 -115l-103 -164c-11 -18 -24 -43 -24 -60c0 -12 9 -21 23 -21c50 0 132 52 238 176zM359 472l1 -2c61 0 183 61 183 150c0 19 -13 35 -36 35 c-40 0 -78 -44 -148 -183'], + 0x1D4BE: [653,11,496,83,484,'484 608c0 -26 -22 -50 -51 -50c-26 0 -46 21 -46 43c0 27 25 52 55 52c19 0 42 -22 42 -45zM417 188l21 -17c-101 -123 -169 -182 -230 -182c-47 0 -80 28 -80 82c0 40 18 95 57 165l60 109c-25 -20 -56 -30 -89 -30c-24 0 -51 5 -73 17l10 26c19 -8 41 -13 60 -13 c56 0 103 40 136 79h73l-160 -295c-12 -22 -22 -54 -22 -78c0 -18 13 -32 33 -32c49 0 107 57 204 169'], + 0x1D4BF: [653,219,730,9,718,'718 608c0 -26 -22 -50 -51 -50c-26 0 -46 21 -46 43c0 27 25 52 55 52c19 0 42 -22 42 -45zM596 424l-264 -499c27 -14 54 -22 85 -22c30 0 70 8 100 30l12 -26c-46 -29 -80 -34 -117 -34c-35 0 -74 10 -100 22c-60 -87 -125 -114 -205 -114c-67 0 -98 37 -98 71 c0 37 27 64 54 80c37 23 79 26 115 26c20 0 71 -5 91 -13l209 394c-31 -30 -73 -43 -114 -43c-20 0 -50 5 -68 16l10 26c17 -8 43 -12 60 -12c66 0 119 55 157 98h73zM254 -86l-1 1c-20 9 -60 13 -84 13c-76 0 -126 -30 -126 -72c0 -24 23 -41 56 -41c38 0 100 11 155 99'], + 0x1D4C0: [687,11,726,40,666,'643 187l23 -17c-99 -123 -174 -181 -242 -181c-43 0 -84 19 -84 63c0 58 43 81 43 120c0 20 -15 47 -61 47l11 30c102 6 209 72 209 128c0 28 -20 34 -33 34c-80 0 -255 -143 -365 -358l-27 -53h-77l237 440c-46 8 -86 21 -126 69l20 21c35 -41 78 -57 122 -61 c90 161 142 218 219 218c45 0 63 -37 63 -65c0 -121 -161 -183 -231 -184l-88 -168l2 -1c97 112 183 172 268 172c41 0 68 -29 68 -61c0 -65 -103 -134 -212 -147l-1 -3c39 -23 54 -48 54 -82c0 -51 -33 -72 -33 -102c0 -16 10 -27 31 -27c39 0 110 43 210 168zM361 472 l1 -2c61 0 183 61 183 150c0 19 -13 35 -36 35c-40 0 -78 -44 -148 -183'], + 0x1D4C1: [687,11,579,48,571,'77 389l14 26c33 -23 64 -25 94 -25c105 155 240 297 322 297c42 0 64 -21 64 -67c0 -105 -146 -234 -322 -260c-52 -84 -143 -231 -143 -298c0 -24 9 -43 36 -43c47 0 102 55 199 167l21 -17c-105 -123 -164 -180 -227 -180c-47 0 -87 29 -87 87c0 55 30 136 77 218 c12 22 26 44 40 66c-30 1 -61 10 -88 29zM268 396l1 -1c157 35 272 133 272 229c0 19 -12 31 -35 31c-28 0 -57 -21 -82 -47c-49 -50 -104 -131 -156 -212'], + 0x1D4C2: [441,11,1038,49,978,'957 195l21 -16c-100 -124 -190 -190 -265 -190c-39 0 -69 25 -69 72c0 41 16 86 45 128l104 152c16 24 19 34 19 44c0 16 -11 26 -27 26c-97 0 -265 -171 -384 -411h-75l190 337c10 18 20 32 20 47c0 16 -10 27 -28 27c-96 0 -266 -173 -382 -411h-77l184 342 c-36 -32 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h68l-70 -139l3 -2c94 111 171 158 238 158c39 0 72 -21 72 -62c0 -23 -6 -49 -17 -74l2 -1c76 90 154 137 219 137c45 0 72 -23 72 -62c0 -30 -15 -73 -49 -127l-96 -152 c-11 -18 -23 -43 -23 -59c0 -12 5 -22 23 -22c50 0 131 51 238 176'], + 0x1D4C3: [441,11,761,49,701,'680 195l21 -17c-101 -123 -192 -189 -264 -189c-40 0 -70 24 -70 72c0 34 19 88 46 128l106 157c10 15 17 28 17 39c0 13 -10 26 -28 26c-87 0 -241 -144 -354 -358l-28 -53h-77l183 342c-36 -32 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12 c66 0 129 55 167 98h72l-73 -139l3 -2c94 111 171 158 237 158c44 0 73 -23 73 -62c0 -31 -15 -72 -42 -115l-103 -164c-11 -18 -24 -43 -24 -60c0 -12 9 -21 23 -21c50 0 132 52 238 176'], + 0x1D4C5: [441,209,773,23,694,'362 285l3 -2c94 111 171 158 237 158c44 0 92 -25 92 -99c0 -94 -80 -233 -174 -296c40 -16 78 -39 105 -75l-22 -20c-47 41 -73 62 -124 66c-30 -17 -62 -28 -93 -28c-50 0 -72 15 -72 32c0 22 35 48 90 48c19 0 36 0 57 -4c58 33 170 212 170 306c0 24 -11 40 -36 40 c-87 0 -239 -144 -354 -358l-141 -262h-77l296 551c-36 -37 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 54 167 97l72 1'], + 0x1D4C6: [441,209,780,30,743,'725 202l18 -18c-41 -43 -116 -115 -219 -209c-105 -96 -167 -172 -175 -184h-78l169 310l-2 1c-70 -76 -131 -113 -207 -113c-51 0 -84 42 -84 105c0 33 8 66 23 99c-21 -14 -44 -20 -70 -20c-24 0 -48 5 -70 17l10 26c19 -8 38 -13 57 -13c56 0 97 40 129 79 c75 91 186 159 266 159c46 0 82 -21 88 -65h2l28 48h68l-281 -525l3 -2c56 62 266 245 325 305zM550 364c0 33 -25 42 -54 42c-56 0 -129 -49 -205 -159c-62 -90 -86 -151 -86 -187c0 -26 19 -41 41 -41c130 0 304 240 304 345'], + 0x1D4C7: [444,0,580,48,572,'569 311l3 -27c-10 -5 -20 -7 -32 -7c-40 0 -74 18 -87 48l-260 -192l-71 -133h-73l183 346c-35 -33 -83 -50 -126 -50c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h72l-120 -228l2 -1l214 160c0 55 33 89 77 89c28 0 42 -17 42 -27l-84 -74 c11 -24 31 -36 62 -36c9 0 17 1 29 4'], + 0x1D4C8: [531,11,515,62,412,'129 243l-9 27c61 21 134 67 200 149c-3 9 -5 19 -5 27c0 55 36 85 53 85c12 0 28 -8 28 -32c0 -23 -11 -59 -42 -90c36 -59 58 -121 58 -181c0 -62 -23 -122 -77 -172c-47 -45 -105 -67 -173 -67c-51 0 -100 25 -100 75c0 42 30 75 60 75c22 0 42 -11 42 -37 c0 -51 -58 -27 -58 -56c0 -15 28 -27 54 -27c95 0 186 103 186 259c0 35 -7 71 -16 106h-2c-70 -81 -127 -111 -199 -141'], + 0x1D4C9: [658,11,551,30,532,'532 526l-13 -30h-146l-209 -387c-11 -21 -14 -43 -14 -58c0 -19 13 -32 33 -32c52 0 109 61 207 173l21 -17c-100 -125 -167 -186 -237 -186c-42 0 -76 27 -76 81c0 45 25 105 57 164l50 92c-36 -33 -74 -50 -117 -50c-20 0 -40 5 -58 16l10 26c17 -8 41 -12 58 -12 c65 0 124 71 158 117l39 73h-102l13 30h103l71 132h79l-72 -132h145'], + 0x1D4CA: [424,11,753,30,693,'670 190l23 -17c-95 -118 -168 -181 -241 -181c-50 0 -70 31 -70 71c0 11 5 47 8 59l-3 1c-75 -86 -144 -134 -211 -134c-43 0 -77 28 -77 88c0 39 17 85 46 139l68 126c-36 -29 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h75 l-159 -295c-13 -23 -22 -54 -22 -78c0 -17 13 -32 33 -32c95 0 242 171 355 405h78l-160 -297c-19 -35 -23 -59 -23 -74c0 -18 8 -31 29 -31c46 0 106 49 207 168'], + 0x1D4CB: [441,11,618,30,582,'575 210l7 -27c-14 -6 -31 -9 -47 -9c-27 0 -53 9 -75 29c-86 -138 -168 -214 -267 -214c-45 0 -91 31 -91 97c0 46 25 105 57 162l51 92c-35 -29 -80 -44 -122 -44c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h75l-158 -295 c-9 -16 -20 -46 -20 -70c0 -22 20 -40 48 -40c61 0 155 59 234 209c-8 18 -16 47 -16 72c0 73 33 141 77 141c21 0 29 -21 29 -50c0 -50 -24 -124 -47 -158c18 -21 40 -29 62 -29c11 0 23 2 34 6'], + 0x1D4CC: [441,11,888,30,852,'845 210l7 -27c-14 -6 -31 -9 -47 -9c-27 0 -53 9 -75 29c-86 -138 -168 -214 -267 -214c-45 0 -91 31 -91 97c0 6 0 11 1 18h-2c-56 -72 -111 -115 -178 -115c-45 0 -91 31 -91 97c0 46 25 105 57 162l51 92c-35 -28 -80 -44 -122 -44c-20 0 -40 5 -58 16l10 26 c17 -8 33 -12 50 -12c66 0 129 55 167 98h75l-158 -295c-9 -16 -20 -46 -20 -70c0 -22 20 -40 48 -40c67 0 142 77 227 229l98 176h75l-158 -295c-9 -16 -20 -46 -20 -70c0 -22 20 -40 48 -40c61 0 155 59 234 209c-8 18 -16 47 -16 72c0 73 33 141 77 141 c21 0 29 -21 29 -50c0 -50 -24 -124 -47 -158c18 -21 40 -29 62 -29c12 0 22 2 34 6'], + 0x1D4CD: [441,11,752,65,675,'653 203l22 -17c-94 -120 -183 -194 -272 -194c-44 0 -90 22 -90 85h-2c-63 -64 -114 -88 -160 -88c-50 0 -86 25 -86 75c0 38 30 72 60 72c22 0 42 -10 42 -36c0 -48 -58 -31 -58 -60c0 -15 16 -21 36 -21c122 0 247 280 247 341c0 29 -10 48 -37 48 c-47 0 -129 -40 -242 -175l-22 17c118 141 201 188 271 188c50 0 88 -30 88 -84h2c39 50 89 87 136 87c50 0 82 -20 82 -76c0 -34 -28 -68 -61 -68c-25 0 -40 13 -40 33c0 48 57 28 57 59c0 11 -9 22 -34 22c-80 0 -221 -257 -221 -345c0 -27 19 -44 42 -44 c64 0 145 67 240 181'], + 0x1D4CE: [424,219,658,30,617,'617 424l-171 -328c-32 -62 -63 -118 -97 -170c27 -14 59 -23 90 -23c30 0 70 8 100 30l12 -26c-46 -29 -80 -34 -117 -34c-35 0 -76 10 -102 22c-55 -81 -123 -114 -203 -114c-67 0 -98 37 -98 71c0 37 27 64 54 80c37 23 79 26 115 26c20 0 71 -5 91 -13l99 177l-3 1 c-75 -86 -144 -134 -211 -134c-43 0 -77 28 -77 88c0 39 17 85 46 139l68 126c-38 -32 -82 -46 -125 -46c-20 0 -40 5 -58 16l10 26c17 -8 33 -12 50 -12c66 0 129 55 167 98h75l-159 -295c-13 -23 -22 -54 -22 -78c0 -19 10 -32 33 -32c95 0 242 171 355 405h78zM276 -86 l-1 1c-20 9 -60 13 -84 13c-76 0 -126 -30 -126 -72c0 -24 23 -41 56 -41c38 0 100 11 155 99'], + 0x1D4CF: [478,11,691,52,617,'594 178l23 -16c-107 -149 -183 -173 -250 -173c-43 0 -60 17 -60 46c0 30 20 43 20 66c0 15 -14 27 -29 27c-43 0 -80 -17 -127 -71c-43 -49 -72 -63 -97 -63c-14 0 -22 9 -22 20c0 28 30 63 127 108l231 188l-1 2c-13 -5 -28 -7 -43 -7c-37 0 -72 13 -99 34 c-32 -34 -82 -55 -123 -55c-20 0 -43 5 -61 16l12 26c17 -8 31 -12 48 -12c44 0 76 18 102 44c-16 19 -26 42 -26 63c0 30 19 57 47 57c26 0 40 -24 40 -50c0 -20 -9 -42 -18 -61c19 -24 49 -32 77 -32c25 0 52 5 76 17c50 68 97 89 121 89c16 0 31 -7 31 -23 c0 -33 -44 -64 -120 -89l-223 -186l1 -1c31 16 56 16 72 16c50 0 74 -27 74 -56c0 -28 -17 -38 -17 -60c0 -8 9 -14 17 -14c44 0 112 32 197 150'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Shapes/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Shapes/Bold/Main.js new file mode 100644 index 0000000..af19c95 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Shapes/Bold/Main.js @@ -0,0 +1,42 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Shapes-bold'] = { + directory: 'Shapes/Bold', + family: 'STIXMathJax_Shapes', + weight: 'bold', + id: 'STIXWEBSHAPESB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2423: [31,120,500,40,460,'460 -120h-420v151h42v-76h336v76h42v-151'], + 0x25B7: [791,284,1043,70,1008,'1008 253l-938 -537v1075zM831 253l-673 386v-772'], + 0x25C1: [791,284,1043,35,973,'973 -284l-938 537l938 538v-1075zM885 -133v772l-673 -386'], + 0x25EC: [811,127,1145,35,1110,'688 239c0 -63 -52 -115 -115 -115s-115 52 -115 115s52 115 115 115s115 -52 115 -115zM1110 -127h-1075l538 938zM958 -39l-385 673l-386 -673h771'], + 0xE000: [610,25,1184,808,912,'912 -25h-104v635h104v-635'], + 0xE001: [704,-75,1198,808,1224,'1224 600h-312v-525h-104v629h416v-104'], + 0xE0B0: [752,-531,0,100,417,'417 680h-245v-149h-72v221h317v-72'], + 0xE0B1: [-50,271,0,100,417,'417 -271h-317v72h245v149h72v-221'], + 0xE0B2: [-50,271,0,99,416,'416 -271h-317v221h72v-149h245v-72'], + 0xE10E: [405,-101,714,211,503,'503 101h-88v304h88v-304zM299 101h-88v304h88v-304'], + 0xE10F: [399,-107,315,0,315,'315 311h-315v88h315v-88zM315 107h-315v88h315v-88'], + 0xE28F: [175,0,325,-1,326,'326 0h-327v175h327v-175'], + 0xE290: [175,0,633,-1,634,'634 0h-635v175h635v-175'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Shapes/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js new file mode 100644 index 0000000..d7efd09 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js @@ -0,0 +1,31 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Shapes-bold-italic'] = { + directory: 'Shapes/BoldItalic', + family: 'STIXMathJax_Shapes', + weight: 'bold', + style: 'italic', + id: 'STIXWEBSHAPESBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2423: [31,120,500,40,460,'460 -120h-420v151h42v-76h336v76h42v-151'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Shapes/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Shapes/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Shapes/Regular/Main.js new file mode 100644 index 0000000..4a29205 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Shapes/Regular/Main.js @@ -0,0 +1,315 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Shapes'] = { + directory: 'Shapes/Regular', + family: 'STIXMathJax_Shapes', + id: 'STIXWEBSHAPES', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2423: [16,120,500,40,460,'460 -120h-420v136h30v-76h360v76h30v-136'], + 0x2500: [340,-267,708,-11,719,'719 267h-730v73h730v-73'], + 0x2502: [910,303,708,317,390,'390 -303h-73v1213h73v-1213'], + 0x2506: [910,303,708,317,390,'390 544h-73v366h73v-366zM390 121h-73v366h73v-366zM390 -303h-73v367h73v-367'], + 0x2508: [340,-267,708,-11,719,'719 267h-145v73h145v-73zM524 267h-145v73h145v-73zM329 267h-145v73h145v-73zM134 267h-145v73h145v-73'], + 0x250A: [910,303,708,317,390,'390 650h-73v260h73v-260zM390 333h-73v260h73v-260zM390 15h-73v260h73v-260zM390 -303h-73v260h73v-260'], + 0x251C: [910,303,708,317,719,'719 267h-329v-570h-73v1213h73v-570h329v-73'], + 0x2524: [910,303,708,-11,390,'390 -303h-73v570h-328v73h328v570h73v-1213'], + 0x252C: [340,303,708,-11,719,'719 267h-329v-570h-73v570h-328v73h730v-73'], + 0x2534: [910,-267,708,-11,719,'719 267h-730v73h328v570h73v-570h329v-73'], + 0x253C: [910,303,708,-11,719,'719 267h-329v-570h-73v570h-328v73h328v570h73v-570h329v-73'], + 0x2550: [433,-174,708,-11,719,'719 360h-730v73h730v-73zM719 174h-730v73h730v-73'], + 0x2551: [910,303,708,225,483,'483 -303h-73v1213h73v-1213zM298 -303h-73v1213h73v-1213'], + 0x2552: [433,303,708,317,720,'720 174h-330v-477h-73v736h403v-73h-330v-113h330v-73'], + 0x2553: [340,303,708,225,720,'720 267h-237v-570h-73v562h-112v-562h-73v643h495v-73'], + 0x2554: [433,303,708,225,719,'719 360h-421v-663h-73v736h494v-73zM719 174h-236v-477h-73v550h309v-73'], + 0x2555: [433,303,708,-11,390,'390 -303h-73v477h-328v73h328v113h-328v73h401v-736'], + 0x2556: [340,303,708,-11,483,'483 -303h-73v570h-112v-570h-73v570h-236v73h494v-643'], + 0x2557: [433,303,708,-11,483,'483 -303h-73v663h-421v73h494v-736zM298 -303h-73v477h-236v73h309v-550'], + 0x2558: [910,-174,708,317,720,'720 174h-403v736h73v-477h330v-73h-330v-113h330v-73'], + 0x2559: [910,-267,708,225,720,'720 267h-495v643h73v-570h112v570h73v-570h237v-73'], + 0x255A: [910,-174,708,225,719,'719 360h-309v550h73v-477h236v-73zM719 174h-494v736h73v-663h421v-73'], + 0x255B: [910,-174,708,-11,390,'390 174h-401v73h328v113h-328v73h328v477h73v-736'], + 0x255C: [910,-267,708,-11,483,'483 267h-494v73h236v570h73v-570h112v570h73v-643'], + 0x255D: [910,-174,708,-11,483,'298 360h-309v73h236v477h73v-550zM483 174h-494v73h421v663h73v-736'], + 0x255E: [910,303,708,317,720,'720 174h-330v-477h-73v1213h73v-477h330v-73h-330v-113h330v-73'], + 0x255F: [910,303,708,225,720,'720 267h-237v-570h-73v1213h73v-570h237v-73zM298 -303h-73v1213h73v-1213'], + 0x2560: [910,303,708,225,720,'720 360h-310v550h73v-477h237v-73zM298 -303h-73v1213h73v-1213zM720 174h-237v-477h-73v550h310v-73'], + 0x2561: [910,303,708,-11,390,'390 -303h-73v477h-328v73h328v113h-328v73h328v477h73v-1213'], + 0x2562: [910,303,708,-11,483,'483 -303h-73v1213h73v-1213zM298 -303h-73v570h-236v73h236v570h73v-1213'], + 0x2563: [910,303,708,-11,483,'298 360h-309v73h236v477h73v-550zM483 -303h-73v1213h73v-1213zM298 -303h-73v477h-236v73h309v-550'], + 0x2564: [433,303,708,-11,719,'719 360h-730v73h730v-73zM719 174h-329v-477h-73v477h-328v73h730v-73'], + 0x2565: [340,303,708,-11,719,'719 267h-236v-570h-73v570h-112v-570h-73v570h-236v73h730v-73'], + 0x2566: [433,303,708,-11,719,'719 360h-730v73h730v-73zM719 174h-236v-477h-73v550h309v-73zM298 -303h-73v477h-236v73h309v-550'], + 0x2567: [910,-174,708,-11,719,'719 360h-730v73h328v477h73v-477h329v-73zM719 174h-730v73h730v-73'], + 0x2568: [910,-267,708,-11,719,'719 267h-730v73h236v570h73v-570h112v570h73v-570h236v-73'], + 0x2569: [910,-174,708,-11,719,'719 360h-309v550h73v-477h236v-73zM298 360h-309v73h236v477h73v-550zM719 174h-730v73h730v-73'], + 0x256A: [910,303,708,-11,719,'719 174h-329v-477h-73v477h-328v73h328v113h-328v73h328v477h73v-477h329v-73h-329v-113h329v-73'], + 0x256B: [910,303,708,-11,719,'719 267h-236v-570h-73v570h-112v-570h-73v570h-236v73h236v570h73v-570h112v570h73v-570h236v-73'], + 0x256C: [910,303,708,-11,719,'719 360h-309v550h73v-477h236v-73zM298 360h-309v73h236v477h73v-550zM719 174h-236v-477h-73v550h309v-73zM298 -303h-73v477h-236v73h309v-550'], + 0x2580: [910,-304,1213,0,1213,'1213 304h-1213v606h1213v-606'], + 0x2584: [303,303,1213,0,1213,'1213 -303h-1213v606h1213v-606'], + 0x2588: [910,303,1213,0,1213,'1213 -303h-1213v1213h1213v-1213'], + 0x258C: [910,303,1212,0,606,'606 -303h-606v1213h606v-1213'], + 0x2590: [910,303,1212,606,1212,'1212 -303h-606v1213h606v-1213'], + 0x2591: [860,258,1200,0,1200,'1160 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1200 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1080 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1120 763c0 -11 -9 -20 -20 -20s-20 9 -20 20 s9 20 20 20s20 -9 20 -20zM1160 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1000 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1200 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1040 763 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1080 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM920 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1120 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM960 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1160 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1000 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM840 840c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1200 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1040 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM880 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1080 532 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM920 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM760 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1120 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM960 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM800 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1160 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1000 532c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM840 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM680 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1200 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1040 455 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM880 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM720 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1080 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM920 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM760 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM600 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1120 301c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM960 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM800 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM640 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1160 224 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1000 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM840 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM680 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM520 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1200 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1040 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM880 455c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM720 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM560 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1080 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM920 378 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM760 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM600 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM440 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM1120 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM960 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM800 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM640 609c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM480 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1160 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1000 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM840 378 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM680 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM520 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM360 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM1200 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1040 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM880 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM720 455c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM560 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM400 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1080 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM920 224 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM760 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM600 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM440 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM280 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1120 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM960 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM800 301c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM640 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM480 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM320 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1160 -84 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1000 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM840 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM680 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM520 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM360 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM200 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1200 -161c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1040 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM880 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM720 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM560 455 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM400 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM240 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1080 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM920 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM760 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM600 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM440 532c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM280 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM120 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1120 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM960 -7 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM800 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM640 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM480 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM320 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM160 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1160 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1000 -84c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM840 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM680 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM520 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM360 532 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM200 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM40 840c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1040 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM880 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM720 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM560 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM400 455c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM240 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM80 763c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1080 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM920 -84 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM760 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM600 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM440 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM280 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM120 686c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM960 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM800 -7c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM640 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM480 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM320 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM160 609 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM1000 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM840 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM680 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM520 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM360 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM200 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM40 686c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM880 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM720 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM560 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM400 301 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM240 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM80 609c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM920 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM760 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM600 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM440 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM280 378c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM120 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM800 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM640 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM480 147 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM320 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM160 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM840 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM680 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM520 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM360 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM200 378c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM40 532c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM720 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM560 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM400 147 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM240 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM80 455c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM760 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM600 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM440 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM280 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM120 378c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM640 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM480 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM320 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM160 301 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM680 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM520 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM360 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM200 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM40 378c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM560 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM400 -7c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM240 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM80 301c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM600 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM440 -84 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM280 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM120 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM480 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM320 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM160 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM520 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM360 -84c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM200 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM40 224c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM400 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM240 -7 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM80 147c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM440 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM280 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM120 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM320 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM160 -7c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM360 -238c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM200 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM40 70c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM240 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM80 -7 c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM280 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM120 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM160 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20 s20 -9 20 -20zM200 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM40 -84c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM80 -161c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM120 -238c0 -11 -9 -20 -20 -20 s-20 9 -20 20s9 20 20 20s20 -9 20 -20zM40 -238c0 -11 -9 -20 -20 -20s-20 9 -20 20s9 20 20 20s20 -9 20 -20'], + 0x2592: [874,273,1200,0,1200,'1200 -273h-1200v1147h1200v-1147zM1140 822c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1200 706c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1020 822c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30z M1080 706c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1140 590c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM900 822c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1200 474c0 17 -13 30 -30 30 s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM960 706c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1020 590c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM780 822c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30z M1080 474c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM840 706c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1140 358c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM900 590c0 17 -13 30 -30 30 s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM660 822c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1200 242c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM960 474c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30z M720 706c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1020 358c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM780 590c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM540 822c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM1080 242c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM840 474c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM600 706c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1140 126 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM900 358c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM660 590c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM420 822c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM1200 10c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM960 242c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM720 474c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM480 706 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1020 126c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM780 358c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM540 590c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM300 822c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1080 10c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM840 242c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM600 474 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM360 706c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1140 -106c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM900 126c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM660 358c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM420 590c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM180 822c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1200 -222 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM960 10c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM720 242c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM480 474c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM240 706c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1020 -106c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM780 126c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM540 358 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM300 590c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM60 822c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM1080 -222c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM840 10c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM600 242c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM360 474c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM120 706 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM900 -106c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM660 126c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM420 358c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM180 590c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM960 -222c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM720 10c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM480 242 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM240 474c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM780 -106c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM540 126c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM300 358c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM60 590c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM840 -222c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM600 10 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM360 242c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM120 474c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM660 -106c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM420 126c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM180 358c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM720 -222c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM480 10 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM240 242c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM540 -106c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM300 126c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM60 358c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM600 -222c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM360 10c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM120 242 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM420 -106c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM180 126c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM480 -222c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM240 10c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM300 -106c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM60 126c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM360 -222 c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM120 10c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM180 -106c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM240 -222c0 17 -13 30 -30 30s-30 -13 -30 -30 s13 -30 30 -30s30 13 30 30zM60 -106c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30zM120 -222c0 17 -13 30 -30 30s-30 -13 -30 -30s13 -30 30 -30s30 13 30 30'], + 0x2593: [874,273,1200,0,1200,'1200 -273h-1200v1147h1200v-1147zM1160 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1200 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1080 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1120 763 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1160 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1000 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1200 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM1040 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1080 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM920 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1120 609c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM960 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1160 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1000 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM840 840c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1200 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1040 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM880 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1080 532 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM920 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM760 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1120 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM960 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM800 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1160 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1000 532c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM840 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM680 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1200 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1040 455c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM880 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM720 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1080 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM920 532 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM760 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM600 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1120 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM960 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM800 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM640 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1160 224c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM1000 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM840 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM680 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM520 840c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1200 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1040 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM880 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM720 609 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM560 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1080 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM920 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM760 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM600 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM440 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1120 147c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM960 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM800 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM640 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM480 763c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1160 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1000 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM840 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM680 532 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM520 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM360 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1200 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM1040 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM880 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM720 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM560 609c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM400 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1080 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM920 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM760 378c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM600 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM440 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM280 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1120 -7 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM960 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM800 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM640 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM480 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM320 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1160 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1000 70c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM840 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM680 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM520 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM360 686c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM200 840c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1200 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1040 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM880 147 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM720 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM560 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM400 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM240 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1080 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM920 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM760 224c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM600 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM440 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM280 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM120 840c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1120 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM960 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM800 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM640 301 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM480 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM320 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM160 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM1160 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1000 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM840 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM680 224c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM520 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM360 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM200 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM40 840c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1040 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM880 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM720 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM560 301 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM400 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM240 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM80 763c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20 zM1080 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM920 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM760 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM600 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM440 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM280 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM120 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM960 -161c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM800 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM640 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM480 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM320 455c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM160 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM1000 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM840 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM680 70 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM520 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM360 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM200 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM40 686c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM880 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM720 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM560 147c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM400 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM240 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM80 609c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM920 -238c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM760 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM600 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM440 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM280 378 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM120 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM800 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM640 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM480 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM320 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM160 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM840 -238c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM680 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM520 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM360 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM200 378c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM40 532c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM720 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM560 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM400 147 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM240 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM80 455c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM760 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM600 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM440 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM280 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM120 378c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM640 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM480 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM320 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM160 301c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM680 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM520 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM360 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM200 224 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM40 378c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM560 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM400 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20 zM240 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM80 301c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM600 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM440 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM280 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM120 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM480 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM320 -7c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM160 147c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM520 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM360 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM200 70c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM40 224c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM400 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM240 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM80 147 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM440 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM280 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM120 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20zM320 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM160 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM360 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM200 -84c0 11 -9 20 -20 20s-20 -9 -20 -20 s9 -20 20 -20s20 9 20 20zM40 70c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM240 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM80 -7c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM280 -238c0 11 -9 20 -20 20 s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM120 -84c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM160 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM200 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM40 -84 c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM80 -161c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM120 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20s20 9 20 20zM40 -238c0 11 -9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20 s20 9 20 20'], + 0x25A2: [662,158,910,45,865,'865 422v-340c0 -132 -108 -240 -240 -240h-340c-132 0 -240 108 -240 240v340c0 132 108 240 240 240h340c132 0 240 -108 240 -240zM799 82v340c0 98 -76 174 -174 174h-340c-98 0 -174 -76 -174 -174v-340c0 -98 76 -174 174 -174h340c98 0 174 76 174 174'], + 0x25A3: [662,158,910,45,865,'664 40h-420v420h420v-420zM865 -158h-820v820h820v-820zM798 -92v688h-687v-688h687'], + 0x25A4: [662,158,910,45,865,'865 -158h-820v820h820v-820zM798 462v134h-687v-134h687zM798 277v133h-687v-133h687zM798 92v133h-687v-133h687zM798 -92v132h-687v-132h687'], + 0x25A5: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 -91v687h-134v-687h134zM613 -91v687h-133v-687h133zM428 -91v687h-133v-687h133zM243 -91v687h-132v-687h132'], + 0x25A6: [662,158,910,45,865,'865 -158h-820v820h820v-820zM798 462v134h-133v-134h133zM613 462v134h-133v-134h133zM798 277v133h-133v-133h133zM428 462v134h-133v-134h133zM613 277v133h-133v-133h133zM798 92v133h-133v-133h133zM243 462v134h-132v-134h132zM798 -91v131h-133v-131h133zM428 277 v133h-133v-133h133zM613 92v133h-133v-133h133zM613 -91v131h-133v-131h133zM243 277v133h-132v-133h132zM428 92v133h-133v-133h133zM428 -91v131h-133v-131h133zM243 92v133h-132v-133h132zM243 -91v131h-132v-131h132'], + 0x25A7: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 465v130h-130zM799 291v100l-204 204h-100zM799 117v100l-378 378h-100zM799 -56v99l-552 552h-100zM761 -92l-650 650v-100l549 -550h101zM587 -92l-476 476v-102l373 -374h103zM411 -92l-300 300v-102l198 -198h102zM235 -92l-124 125 v-125h124'], + 0x25A8: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 -92v125l-124 -125h124zM799 458v100l-650 -650h101zM799 282v102l-476 -476h103zM799 106v102l-300 -300h102zM763 595h-100l-552 -552v-99zM241 595h-130v-130zM415 595h-100l-204 -204v-100zM589 595h-100l-378 -378v-100'], + 0x25A9: [662,158,910,45,865,'865 -158h-820v820h820v-820zM763 595h-94l46 -47zM799 465v93l-47 -47zM678 511l-49 50l-50 -50l49 -50zM765 424l-50 50l-50 -50l51 -50zM589 595h-94l47 -47zM799 291v93l-47 -47zM505 511l-50 50l-50 -50l50 -50zM591 424l-49 50l-50 -50l49 -50zM679 337l-51 50 l-50 -50l51 -50zM766 249l-51 51l-50 -50l51 -51zM415 595h-94l47 -47zM799 117v91l-46 -46zM331 511l-50 50l-50 -50l50 -50zM418 424l-50 50l-50 -50l50 -50zM504 337l-49 50l-50 -50l49 -50zM592 250l-51 50l-50 -50l51 -50zM679 162l-51 51l-50 -50l51 -51zM767 74 l-51 51l-50 -50l51 -51zM241 595h-94l47 -47zM799 -56v89l-45 -45zM761 -92l-43 43l-43 -43h86zM157 511l-46 47v-93zM418 251l-50 49l-50 -50l50 -49zM505 163l-50 51l-50 -50l50 -51zM593 76l-51 51l-50 -50l51 -52zM681 -12l-51 51l-51 -50l51 -51zM244 424l-50 50 l-50 -50l50 -50zM331 337l-50 50l-50 -50l50 -50zM587 -92l-44 44l-44 -44h88zM157 337l-46 47v-93zM331 164l-50 49l-51 -51l50 -49zM418 76l-50 51l-51 -51l50 -51zM244 250l-50 50l-51 -51l50 -50zM506 -11l-51 51l-52 -51l52 -52zM411 -92l-44 44l-44 -44h88zM156 162 l-45 46v-91zM330 -11l-50 50l-51 -51l50 -50zM243 76l-50 49l-51 -51l50 -49zM235 -92l-43 44l-43 -44h86zM155 -11l-44 44v-89'], + 0x25AA: [460,-40,484,32,452,'452 40h-420v420h420v-420'], + 0x25AB: [460,-40,484,32,452,'452 40h-420v420h420v-420zM386 106v288h-288v-288h288'], + 0x25AC: [469,11,1020,38,982,'982 -11h-944v480h944v-480'], + 0x25AD: [469,11,1020,38,982,'982 -11h-944v480h944v-480zM916 55v348h-812v-348h812'], + 0x25AE: [724,220,560,40,520,'520 -220h-480v944h480v-944'], + 0x25AF: [724,220,560,40,520,'520 -220h-480v944h480v-944zM454 -154v812h-348v-812h348'], + 0x25B0: [514,11,1140,28,1112,'1112 514l-140 -525h-944l140 525h944'], + 0x25B1: [514,11,1140,29,1111,'1111 514l-139 -525h-943l139 525h943zM1028 448h-813l-103 -393h812'], + 0x25B4: [553,-28,660,27,632,'632 28h-605l303 525'], + 0x25B5: [553,-28,660,27,632,'632 28h-605l303 525zM522 94l-192 326l-191 -326h383'], + 0x25B7: [791,284,1043,70,1008,'1008 253l-938 -537v1075zM875 253l-739 424v-846'], + 0x25BA: [555,50,930,65,885,'885 252l-820 -302v605'], + 0x25BB: [555,50,930,65,885,'885 252l-820 -302v605zM697 252l-566 206v-412'], + 0x25BE: [477,48,660,27,632,'632 477l-303 -525l-302 525h605'], + 0x25BF: [477,48,660,27,632,'632 477l-303 -525l-302 525h605zM520 411h-383l192 -326'], + 0x25C1: [791,284,1043,70,1008,'1008 -284l-938 537l938 538v-1075zM942 -169v846l-739 -424'], + 0x25C4: [555,50,930,45,865,'865 -50l-820 302l820 303v-605'], + 0x25C5: [555,50,930,45,865,'865 -50l-820 302l820 303v-605zM799 47v412l-566 -206'], + 0x25C6: [744,242,1064,39,1025,'1025 251l-492 -493l-494 494l493 492'], + 0x25C7: [744,242,1064,39,1025,'1025 251l-492 -493l-494 494l493 492zM932 251l-400 400l-400 -400l400 -400'], + 0x25C8: [744,242,1064,39,1025,'769 251l-237 -237l-237 237l237 237zM1025 251l-492 -493l-494 494l493 492zM932 251l-400 400l-400 -400l400 -400'], + 0x25C9: [623,119,842,50,792,'656 252c0 -132 -106 -238 -235 -238c-132 0 -238 106 -238 238c0 129 106 235 238 235c129 0 235 -106 235 -235zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305 s137 -305 305 -305s305 137 305 305'], + 0x25CB: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x25CC: [680,176,910,29,881,'757 554l-48 -48c-14 15 -28 28 -47 41l38 55c21 -14 40 -31 57 -48zM842 433l-60 -29c-9 18 -20 37 -31 54l54 39c14 -20 27 -41 37 -64zM629 624l-22 -45c-17 9 -39 16 -58 22l17 64c24 -7 41 -31 63 -41zM881 290l-67 -6c-2 21 -6 40 -11 61l65 18 c7 -24 11 -48 13 -73zM493 678l-6 -65c-11 1 -22 1 -32 1s-21 -1 -32 -2l-6 66c13 2 25 2 38 2s25 0 38 -2zM814 220l67 -6c-2 -25 -6 -49 -13 -73l-65 18c5 21 9 41 11 61zM344 665l17 -64c-19 -6 -41 -13 -58 -22l-29 60c22 11 46 19 70 26zM782 101l61 -29 c-10 -23 -24 -45 -38 -65l-54 40c11 16 22 35 31 54zM210 603l38 -55c-17 -13 -34 -26 -47 -41l-48 48c18 17 36 33 57 48zM709 -2l48 -48c-18 -17 -36 -33 -57 -48l-38 55c17 13 33 26 47 41zM105 497l54 -38l-32 -55l-59 29c10 23 23 44 37 64zM607 -75l29 -60 c-22 -11 -46 -19 -70 -26l-17 65c19 6 41 13 58 21zM42 363l64 -18c-4 -21 -9 -40 -11 -61l-66 6c2 25 6 49 13 73zM487 -108l6 -66c-12 -1 -25 -2 -38 -2s-26 1 -38 2l6 65c11 -1 22 -1 32 -1s21 1 32 2zM106 159l-64 -18c-7 24 -11 48 -13 73l66 6c2 -20 7 -40 11 -61z M361 -96l-17 -65c-24 7 -48 15 -70 26l29 60c17 -8 39 -15 58 -21zM159 46l-54 -39c-14 20 -27 41 -37 64l59 29c10 -19 21 -38 32 -54zM248 -43l-38 -55c-21 15 -39 30 -57 47l48 49c13 -15 30 -28 47 -41'], + 0x25CD: [680,176,910,27,884,'884 252c0 -236 -193 -428 -429 -428s-428 192 -428 428s192 428 428 428s429 -192 429 -428zM741 474v-444c48 61 77 138 77 222c0 83 -29 160 -77 222zM689 -24v552c-24 20 -50 37 -78 50v-652c28 13 54 30 78 50zM559 -94v692c-25 8 -51 14 -78 16v-724 c27 2 53 8 78 16zM429 -110v724c-27 -2 -53 -8 -78 -16v-692c25 -8 51 -14 78 -16zM299 -74v652c-29 -13 -55 -31 -78 -51v-550c23 -20 49 -38 78 -51zM169 30v443c-48 -61 -76 -138 -76 -221s28 -160 76 -222'], + 0x25CE: [623,119,842,50,792,'656 252c0 -132 -106 -238 -235 -238c-132 0 -238 106 -238 238c0 129 106 235 238 235c129 0 235 -106 235 -235zM590 252c0 93 -76 169 -169 169c-96 0 -172 -77 -172 -169c0 -96 76 -172 172 -172c92 0 169 76 169 172zM792 252c0 -205 -166 -371 -371 -371 s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x25CF: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371'], + 0x25D0: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM421 557v-610c168 0 305 137 305 305s-137 305 -305 305'], + 0x25D1: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM421 -53v610c-168 0 -305 -137 -305 -305s137 -305 305 -305'], + 0x25D2: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM116 252h610c0 168 -137 305 -305 305s-305 -137 -305 -305'], + 0x25D3: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252h-610c0 -168 137 -305 305 -305s305 137 305 305'], + 0x25D4: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252h-305v305c-168 0 -305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x25D5: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM421 252v305c-168 0 -305 -137 -305 -305h305'], + 0x25D6: [680,176,580,66,494,'494 680v-856c-236 0 -428 192 -428 428s192 428 428 428'], + 0x25D7: [680,176,580,86,514,'86 -176v856c236 0 428 -192 428 -428s-192 -428 -428 -428'], + 0x25D8: [662,158,910,45,865,'865 -158h-820v820h820v-820zM650 253c0 105 -79 192 -193 192c-106 0 -192 -88 -192 -192c0 -107 86 -193 192 -193c105 0 193 87 193 193'], + 0x25D9: [662,158,910,45,865,'733 252c0 -154 -124 -278 -278 -278s-278 124 -278 278s124 278 278 278s278 -124 278 -278zM865 -158h-820v820h820v-820zM799 252c0 189 -155 344 -344 344s-344 -155 -344 -344s155 -344 344 -344s344 155 344 344'], + 0x25DA: [662,-252,910,45,865,'865 252h-66c0 189 -155 344 -344 344s-344 -155 -344 -344h-66v410h820v-410zM733 252h-556c0 154 124 278 278 278s278 -124 278 -278'], + 0x25DB: [252,158,910,45,865,'177 252h556c0 -154 -124 -278 -278 -278s-278 124 -278 278zM865 -158h-820v410h66c0 -189 155 -344 344 -344s344 155 344 344h66v-410'], + 0x25DC: [680,-252,910,27,455,'455 680v-66c-199 0 -362 -163 -362 -362h-66c0 236 192 428 428 428'], + 0x25DD: [680,-252,910,455,884,'884 252h-66c0 199 -164 362 -363 362v66c236 0 429 -192 429 -428'], + 0x25DE: [252,176,910,455,884,'818 252h66c0 -236 -193 -428 -429 -428v66c199 0 363 163 363 362'], + 0x25DF: [252,176,910,26,455,'455 -110v-66c-236 0 -429 192 -429 428h66c0 -199 164 -362 363 -362'], + 0x25E0: [680,-251,910,27,884,'884 251h-66c0 199 -164 363 -363 363s-362 -164 -362 -363h-66c0 236 192 429 428 429s429 -193 429 -429'], + 0x25E1: [252,176,910,27,884,'818 252h66c0 -236 -192 -428 -428 -428s-429 192 -429 428h66c0 -199 164 -362 363 -362s362 163 362 362'], + 0x25E2: [662,158,911,45,865,'865 -158h-820l820 820v-820'], + 0x25E3: [662,158,911,45,865,'865 -158h-820v820'], + 0x25E4: [662,158,911,45,865,'865 662l-820 -820v820h820'], + 0x25E5: [662,158,911,45,865,'865 -158l-820 820h820v-820'], + 0x25E6: [444,-59,523,70,455,'455 252c0 -106 -88 -193 -193 -193c-106 0 -192 86 -192 193c0 104 86 192 192 192c114 0 193 -87 193 -192zM389 251c0 72 -55 127 -127 127s-126 -55 -126 -127s54 -126 126 -126s127 54 127 126'], + 0x25E7: [662,157,910,45,865,'865 -157h-820v819h820v-819zM799 -91v687h-345v-687h345'], + 0x25E8: [662,157,910,45,865,'865 -157h-820v819h820v-819zM456 -91v687h-345v-687h345'], + 0x25E9: [662,157,910,45,865,'865 -157h-820v819h820v-819zM799 -91v687l-688 -687h688'], + 0x25EA: [662,157,910,45,865,'865 -157h-820v819h820v-819zM799 596h-688v-687'], + 0x25EB: [662,157,910,45,865,'865 -157h-820v819h820v-819zM799 -91v687h-318v-687h318zM429 -91v687h-318v-687h318'], + 0x25EC: [811,127,1145,35,1110,'673 239c0 -55 -45 -100 -100 -100s-100 45 -100 100s45 100 100 100s100 -45 100 -100zM1110 -127h-1075l538 938zM995 -61l-422 739l-424 -739h846'], + 0x25ED: [811,127,1145,35,1110,'1110 -127h-1075l537 938zM996 -61l-424 739v-739h424'], + 0x25EE: [811,127,1145,35,1110,'1110 -127h-1075l538 938zM573 -61v739l-424 -739h424'], + 0x25F0: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 -92v688h-318v-371h-370v-317h688zM429 277v319h-318v-319h318'], + 0x25F1: [662,158,910,45,865,'865 -158h-820v820h820v-820zM798 -92v688h-687v-318h370v-370h317zM429 -92v318h-318v-318h318'], + 0x25F2: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 278v318h-687v-688h317v370h370zM799 -92v318h-318v-318h318'], + 0x25F3: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 277v319h-318v-319h318zM799 -92v317h-370v371h-318v-688h688'], + 0x25F4: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM395 278v278c-148 -13 -265 -130 -278 -278h278zM447 226h-330c13 -156 144 -279 304 -279c168 0 305 137 305 305c0 160 -123 291 -279 304v-330'], + 0x25F5: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM447 278v-330c156 13 279 144 279 304c0 168 -137 305 -305 305c-160 0 -291 -123 -304 -279h330zM395 -52v278h-278c13 -148 130 -265 278 -278'], + 0x25F6: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM395 278h330c-13 156 -144 279 -304 279c-168 0 -305 -137 -305 -305c0 -160 123 -291 279 -304v330zM725 226h-278v-278c148 13 265 130 278 278'], + 0x25F7: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM447 278h278c-13 148 -130 265 -278 278v-278zM725 226h-330v330c-156 -13 -279 -144 -279 -304c0 -168 137 -305 305 -305c160 0 291 123 304 279'], + 0x25F8: [662,158,911,45,865,'865 662l-820 -820v820h820zM707 596h-596v-595'], + 0x25F9: [662,158,911,45,865,'865 -158l-820 820h820v-820zM799 0v596h-595'], + 0x25FA: [662,158,911,45,865,'865 -158h-820v820zM706 -92l-595 596v-596h595'], + 0x25FB: [580,76,746,45,701,'701 -76h-656v656h656v-656zM635 -10v524h-524v-524h524'], + 0x25FC: [580,76,746,45,701,'701 -76h-656v656h656v-656'], + 0x25FD: [513,12,601,38,563,'563 -12h-525v525h525v-525zM497 54v393h-393v-393h393'], + 0x25FE: [514,11,601,38,563,'563 -11h-525v525h525v-525'], + 0x25FF: [662,158,911,45,865,'865 -158h-820l820 820v-820zM799 -92v595l-596 -595h596'], + 0x2605: [655,66,870,60,810,'810 382l-228 -176l82 -272l-229 162l-229 -162l82 272l-228 176h282l93 273l93 -273h282'], + 0x2606: [655,66,870,60,810,'810 382l-228 -176l82 -272l-229 162l-229 -162l82 272l-228 176h282l93 273l93 -273h282zM658 330h-167l-56 164l-56 -164h-167l136 -105l-49 -161l136 96l136 -96l-49 161'], + 0x2609: [583,79,762,50,712,'463 253c0 -44 -33 -83 -82 -83s-83 32 -83 83c0 49 41 82 83 82s82 -34 82 -82zM712 252c0 -183 -148 -331 -331 -331s-331 148 -331 331s148 331 331 331s331 -148 331 -331zM646 252c0 146 -119 265 -265 265s-265 -119 -265 -265s119 -265 265 -265s265 119 265 265'], + 0x260C: [634,131,581,54,553,'553 609l-131 -306c63 -43 105 -115 105 -196c0 -132 -106 -238 -235 -238c-132 0 -238 106 -238 238c0 129 106 235 238 235c26 0 52 -4 75 -13l131 305zM461 107c0 93 -76 169 -169 169c-96 0 -172 -77 -172 -169c0 -96 76 -172 172 -172c92 0 169 76 169 172'], + 0x260E: [676,0,1000,32,967,'300 436l-208 -101c-21 17 -60 45 -60 75c0 54 18 118 62 152c92 72 290 114 406 114c115 0 330 -44 416 -124c41 -38 51 -88 51 -157c0 -15 -37 -43 -59 -60l-208 101c0 10 1 23 1 36c0 38 -6 81 -51 81h-300c-45 0 -51 -43 -51 -81c0 -13 1 -26 1 -36zM650 362 c0 -83 -68 -148 -150 -148c-81 0 -149 70 -149 152c0 79 68 147 147 147c82 0 152 -67 152 -151zM805 0h-610v216l75 122h36c13 -104 104 -169 205 -169c87 0 178 82 185 169h34l75 -122v-216'], + 0x2612: [662,158,910,45,865,'719 24l-36 -36l-228 227l-228 -227l-36 36l227 228l-227 228l36 36l228 -227l228 227l36 -36l-227 -228zM865 -158h-820v820h820v-820zM799 -92v688h-688v-688h688'], + 0x2621: [630,35,619,70,549,'549 -35h-277c-87 0 -155 42 -155 133c0 51 27 100 71 137l225 188c24 20 35 52 35 77c0 51 -42 75 -95 75h-283v55h277c88 0 155 -45 155 -133c0 -47 -20 -87 -63 -124l-202 -173c-39 -34 -66 -71 -66 -104c0 -50 42 -76 95 -76h283v-55'], + 0x2639: [728,82,1150,170,980,'755 443c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM495 443c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM804 152l-19 -13c-72 80 -127 97 -209 97c-83 0 -136 -17 -208 -97l-19 13c47 84 108 150 227 150 c120 0 181 -66 228 -150zM980 323c0 -224 -181 -405 -405 -405s-405 181 -405 405s181 405 405 405s405 -181 405 -405zM928 323c0 194 -159 353 -353 353s-353 -159 -353 -353s159 -353 353 -353s353 159 353 353'], + 0x263A: [728,82,1150,170,980,'755 443c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM495 443c0 -28 -22 -50 -50 -50s-50 22 -50 50s22 50 50 50s50 -22 50 -50zM784 249l19 -13c-47 -84 -108 -150 -228 -150c-119 0 -180 66 -227 150l19 13c72 -80 125 -97 208 -97 c82 0 137 17 209 97zM980 323c0 -224 -181 -405 -405 -405s-405 181 -405 405s181 405 405 405s405 -181 405 -405zM928 323c0 194 -159 353 -353 353s-353 -159 -353 -353s159 -353 353 -353s353 159 353 353'], + 0x263B: [728,82,1150,170,980,'980 323c0 -224 -181 -405 -405 -405s-405 181 -405 405s181 405 405 405s405 -181 405 -405zM755 443c0 28 -22 50 -50 50s-50 -22 -50 -50s22 -50 50 -50s50 22 50 50zM495 443c0 28 -22 50 -50 50s-50 -22 -50 -50s22 -50 50 -50s50 22 50 50zM803 236l-19 13 c-72 -80 -127 -97 -209 -97c-83 0 -136 17 -208 97l-19 -13c47 -84 108 -150 227 -150c120 0 181 66 228 150'], + 0x263C: [623,122,837,46,791,'791 218h-140c-6 -41 -21 -78 -45 -109l99 -99l-46 -46l-99 98c-31 -24 -68 -40 -108 -46v-138h-66v138c-41 6 -79 22 -110 45l-98 -97l-46 46l97 98c-24 31 -40 69 -46 109h-137v66h137c5 41 22 79 46 111l-97 97l46 46l98 -97c31 23 69 39 109 45v138h66v-138 c41 -6 78 -22 109 -46l99 98l46 -46l-98 -99c23 -31 39 -68 44 -108h140v-66zM587 252h1c0 93 -77 169 -169 169c-97 0 -173 -77 -173 -169c0 -96 77 -172 172 -172c93 0 169 76 169 172'], + 0x263D: [728,82,641,40,601,'601 320c0 -223 -181 -402 -404 -402c-54 0 -109 16 -157 37c205 1 367 160 367 365c0 204 -162 371 -367 371c46 23 101 37 157 37c223 0 404 -185 404 -408zM198 -43v-2c205 0 366 159 366 365c0 198 -155 360 -351 371v-3c137 -64 231 -207 231 -368 c0 -169 -99 -302 -246 -363'], + 0x263E: [728,82,641,40,601,'601 -45c-46 -23 -101 -37 -157 -37c-223 0 -404 185 -404 408s181 402 404 402c54 0 109 -16 157 -37c-205 -1 -367 -160 -367 -365c0 -204 162 -371 367 -371zM443 689v2c-205 0 -366 -159 -366 -365c0 -198 155 -360 351 -371v3c-137 64 -231 207 -231 368 c0 169 99 302 246 363'], + 0x263F: [702,198,603,65,538,'466 702h68c-13 -68 -55 -126 -112 -160c69 -41 116 -116 116 -202c0 -121 -88 -220 -202 -236v-104h136v-66h-136v-132h-66v132h-139v66h139v104c-116 16 -205 115 -205 236c0 86 47 161 116 202c-57 34 -99 92 -112 160h68c20 -73 86 -127 166 -127 c77 0 143 53 163 127zM472 340c0 93 -76 169 -169 169c-96 0 -172 -77 -172 -169c0 -96 76 -172 172 -172c92 0 169 76 169 172'], + 0x2640: [638,135,603,65,538,'270 63v104c-116 16 -205 115 -205 236c0 129 106 235 238 235c129 0 235 -106 235 -235c0 -121 -88 -219 -202 -236v-104h136v-66h-136v-132h-66v132h-139v66h139zM472 403c0 93 -76 169 -169 169c-96 0 -172 -77 -172 -169c0 -96 76 -172 172 -172c92 0 169 76 169 172 '], + 0x2641: [638,135,603,65,538,'336 440v-104c114 -17 202 -115 202 -236c0 -129 -106 -235 -235 -235c-132 0 -238 106 -238 235c0 121 89 220 205 236v104h-139v66h139v132h66v-132h136v-66h-136zM472 100c0 96 -77 172 -169 172c-96 0 -172 -76 -172 -172c0 -92 76 -169 172 -169 c93 0 169 76 169 169'], + 0x2642: [634,131,660,54,620,'620 399l-13 -32c-37 41 -72 87 -99 137l-86 -201c63 -43 105 -115 105 -196c0 -132 -106 -238 -235 -238c-132 0 -238 106 -238 238c0 129 106 235 238 235c26 0 52 -4 75 -13l86 200c-55 -16 -112 -24 -168 -26l13 33c70 19 166 46 219 98l22 -9c0 -74 43 -165 81 -226 zM461 107c0 93 -76 169 -169 169c-96 0 -172 -77 -172 -169c0 -96 76 -172 172 -172c92 0 169 76 169 172'], + 0x2643: [732,176,970,66,904,'904 0h-172v-176h-56v176h-601v51c11 2 23 1 34 2c57 4 109 22 156 55c113 79 209 225 209 367c0 110 -67 199 -183 199c-84 0 -169 -55 -169 -146c0 -52 35 -95 73 -126c-8 -16 -17 -31 -27 -46c-63 37 -102 95 -102 170c0 120 108 206 223 206c142 0 244 -107 244 -248 c0 -170 -116 -335 -260 -430h403v662h56v-662h172v-54'], + 0x2644: [793,140,970,63,866,'809 -24h57c-12 -66 -77 -116 -143 -116c-87 0 -155 52 -155 143c0 98 82 256 82 337c0 79 -71 130 -145 130c-80 0 -184 -53 -231 -117v-353h-56v642h-155v55h155v96h56v-96h268v-55h-268v-211c63 49 147 94 229 94c106 0 201 -73 201 -184c0 -57 -50 -202 -68 -266 c-6 -22 -14 -45 -14 -69c0 -50 46 -91 95 -91c43 0 74 23 92 61'], + 0x2646: [760,110,840,60,780,'780 644h-60v-170c0 -154 -118 -284 -272 -299v-119h108v-56h-108v-110h-56v110h-108v56h108v119c-154 15 -272 145 -272 299v170h-60l88 116l88 -116h-60v-170c0 -124 93 -228 216 -242v412h-60l88 116l88 -116h-60v-412c123 14 216 118 216 242v170h-60l88 116'], + 0x2647: [730,110,632,76,576,'76 730h285c118 0 215 -82 215 -206s-97 -205 -215 -205h-229v-373h389v-56h-445v840zM132 375h232c81 0 156 62 156 149c0 88 -75 150 -156 150h-232v-299'], + 0x2648: [760,110,964,25,939,'510 -110h-56c-3 142 -33 815 -263 815c-44 0 -110 -33 -110 -129c0 -55 35 -98 73 -126c-8 -16 -17 -31 -27 -46c-63 37 -102 102 -102 177c0 115 82 179 167 179c205 0 269 -323 290 -534c22 211 86 534 290 534c85 0 167 -65 167 -179c0 -75 -39 -140 -102 -177 c-10 15 -19 30 -27 46c38 28 73 71 73 126c0 96 -66 129 -110 129c-230 0 -260 -673 -263 -815'], + 0x2649: [643,139,781,43,738,'738 643v-61c-9 0 -17 -3 -24 -8c-80 -56 -76 -224 -208 -272c72 -42 118 -119 118 -203c0 -130 -104 -238 -235 -238c-132 0 -238 106 -238 238c0 84 46 162 119 203c-130 47 -123 210 -200 270c-8 6 -17 10 -27 10v61c179 1 101 -308 345 -308s171 309 350 308zM558 99 c0 92 -77 169 -169 169c-93 0 -172 -75 -172 -169c0 -95 77 -172 172 -172c94 0 169 79 169 172'], + 0x2664: [609,99,685,34,651,'314 68h-10c-31 -45 -76 -63 -120 -63c-76 0 -150 60 -150 165c0 175 174 253 310 439c136 -186 307 -265 307 -440c0 -109 -73 -165 -147 -165c-45 0 -90 19 -119 64h-10c0 -60 20 -147 79 -152v-15h-222v15c60 5 82 91 82 152zM298 167h92c22 -65 71 -97 110 -97 c45 0 85 35 85 108c0 94 -98 197 -241 326c-143 -128 -244 -229 -244 -326c0 -75 44 -108 89 -108c46 0 95 29 109 97'], + 0x2665: [603,105,685,34,651,'651 413c0 -175 -173 -332 -309 -518c-127 186 -308 347 -308 517c0 120 79 191 157 191c49 0 117 -27 150 -143c43 116 97 143 154 143c90 0 156 -68 156 -190'], + 0x2666: [609,105,685,41,643,'643 252c-113 -114 -211 -232 -300 -357c-97 127 -199 244 -302 357c112 110 212 229 302 357c95 -127 195 -246 300 -357'], + 0x2667: [603,99,685,34,651,'472 340l6 -6c8 5 21 6 24 6c85 0 149 -82 149 -167c0 -110 -71 -169 -145 -169c-52 0 -102 28 -120 64h-11c0 -60 20 -147 79 -152v-15h-222v15c60 5 82 92 82 152h-11c-21 -36 -67 -64 -121 -64c-82 0 -148 66 -148 169c0 102 68 167 152 167c7 0 15 -3 24 -4l6 7 c-18 26 -29 55 -29 99c0 83 73 161 160 161c86 0 154 -76 154 -158c0 -46 -12 -78 -29 -105zM297 167h92c22 -65 62 -97 102 -97c48 0 94 31 94 99c0 59 -45 105 -108 105c-18 0 -37 -6 -58 -15l-35 74c34 32 51 73 51 98c0 58 -31 106 -89 106c-61 0 -93 -53 -93 -106 c0 -25 14 -68 50 -98l-35 -74c-24 10 -46 15 -65 15c-65 0 -103 -46 -103 -105c0 -68 47 -99 95 -99c40 0 88 29 102 97'], + 0x2669: [714,125,390,45,345,'345 714v-675c0 -88 -106 -164 -198 -164c-57 0 -102 35 -102 87c0 84 116 163 192 163c28 0 51 -2 68 -8v597h40'], + 0x266A: [714,125,560,50,510,'301 714h24c17 -89 122 -191 154 -255c22 -35 31 -70 31 -105c0 -47 -18 -119 -34 -144l-15 9c15 35 24 80 24 125c0 78 -70 155 -144 176v-473c0 -79 -68 -172 -191 -172c-59 0 -100 41 -100 83c0 88 110 167 200 167c25 0 34 -2 51 -12v601'], + 0x266B: [842,125,840,40,721,'721 842v-682c0 -92 -79 -179 -190 -179c-59 0 -100 42 -100 81c0 101 128 169 192 169c19 0 43 -2 58 -14v531l-349 -105v-604c0 -79 -87 -164 -190 -164c-44 0 -102 27 -102 83c0 91 115 167 195 167c25 0 32 -2 57 -10v599'], + 0x267E: [775,271,1186,70,1116,'903 249c0 -90 -51 -184 -151 -184c-75 0 -115 57 -151 114c-40 -61 -75 -114 -156 -114c-109 0 -161 91 -161 190c0 90 51 184 151 184c76 0 115 -56 151 -114c40 61 75 114 156 114c109 0 161 -91 161 -190zM870 260c0 61 -40 125 -106 125c-78 0 -115 -93 -139 -154 c26 -56 65 -88 129 -88c68 0 116 49 116 117zM562 278c-26 56 -65 88 -129 88c-68 0 -116 -49 -116 -117c0 -61 40 -125 106 -125c78 0 115 93 139 154zM1116 252c0 -288 -235 -523 -523 -523s-523 235 -523 523s235 523 523 523s523 -235 523 -523zM1050 252 c0 251 -206 457 -457 457s-457 -206 -457 -457s206 -457 457 -457s457 206 457 457'], + 0x2680: [669,23,1032,170,862,'571 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM862 -23h-692v692h692v-692zM819 20v606h-606v-606h606'], + 0x2681: [669,23,1032,170,862,'403 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM739 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM862 -23h-692v692h692v-692zM819 20v606h-606v-606h606'], + 0x2682: [669,23,1032,170,862,'403 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM571 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM739 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM862 -23h-692v692h692v-692zM819 20v606 h-606v-606h606'], + 0x2683: [669,23,1032,170,862,'739 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM403 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM739 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM403 155c0 -31 -24 -55 -55 -55 s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM862 -23h-692v692h692v-692zM819 20v606h-606v-606h606'], + 0x2684: [669,23,1032,170,862,'739 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM403 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM571 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM739 155c0 -31 -24 -55 -55 -55 s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM403 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM862 -23h-692v692h692v-692zM819 20v606h-606v-606h606'], + 0x2685: [669,23,1032,170,862,'739 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM739 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM403 491c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM739 155c0 -31 -24 -55 -55 -55 s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM403 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM403 155c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM862 -23h-692v692h692v-692zM819 20v606h-606v-606h606'], + 0x2686: [687,42,1032,152,881,'731 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM881 323c0 -202 -162 -365 -364 -365s-365 163 -365 365s163 364 365 364s364 -162 364 -364zM829 323c0 174 -138 312 -312 312s-313 -138 -313 -312s139 -313 313 -313s312 139 312 313'], + 0x2687: [687,42,1032,152,881,'731 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM412 323c0 -31 -24 -55 -55 -55s-55 24 -55 55s24 55 55 55s55 -24 55 -55zM881 323c0 -202 -162 -365 -364 -365s-365 163 -365 365s163 364 365 364s364 -162 364 -364zM829 323 c0 174 -138 312 -312 312s-313 -138 -313 -312s139 -313 313 -313s312 139 312 313'], + 0x2688: [687,42,1032,152,881,'881 323c0 -202 -162 -365 -364 -365s-365 163 -365 365s163 364 365 364s364 -162 364 -364zM731 323c0 31 -24 55 -55 55s-55 -24 -55 -55s24 -55 55 -55s55 24 55 55'], + 0x2689: [687,42,1032,152,881,'881 323c0 -202 -162 -365 -364 -365s-365 163 -365 365s163 364 365 364s364 -162 364 -364zM731 323c0 31 -24 55 -55 55s-55 -24 -55 -55s24 -55 55 -55s55 24 55 55zM412 323c0 31 -24 55 -55 55s-55 -24 -55 -55s24 -55 55 -55s55 24 55 55'], + 0x26A0: [1023,155,1510,25,1485,'738 176l-42 381c-2 20 -3 32 -3 43c0 43 15 76 53 76c34 0 53 -32 53 -81c0 -12 -1 -27 -2 -38l-45 -381h-14zM799 42c0 -29 -23 -51 -54 -51c-30 0 -52 22 -52 52s23 54 53 54c29 0 53 -25 53 -55zM1485 -155h-1460l721 1178zM1354 -89l-608 964l-590 -964h1198'], + 0x26A5: [784,281,660,54,620,'620 549l-13 -32c-37 41 -72 87 -99 137l-86 -201c63 -43 105 -115 105 -196c0 -121 -88 -219 -202 -236v-104h136v-66h-136v-132h-66v132h-139v66h139v104c-116 16 -205 115 -205 236c0 129 106 235 238 235c26 0 52 -4 75 -13l86 200c-55 -16 -112 -24 -168 -26l13 33 c70 19 166 46 219 98l22 -9c0 -74 43 -165 81 -226zM461 257c0 93 -76 169 -169 169c-96 0 -172 -77 -172 -169c0 -96 76 -172 172 -172c92 0 169 76 169 172'], + 0x26AA: [583,79,762,50,712,'712 252c0 -183 -148 -331 -331 -331s-331 148 -331 331s148 331 331 331s331 -148 331 -331zM646 252c0 146 -119 265 -265 265s-265 -119 -265 -265s119 -265 265 -265s265 119 265 265'], + 0x26AB: [583,79,762,50,712,'712 252c0 -183 -148 -331 -331 -331s-331 148 -331 331s148 331 331 331s331 -148 331 -331'], + 0x26AC: [487,-14,565,46,519,'519 252c0 -132 -106 -238 -235 -238c-132 0 -238 106 -238 238c0 129 106 235 238 235c129 0 235 -106 235 -235zM453 252c0 93 -76 169 -169 169c-96 0 -172 -77 -172 -169c0 -96 76 -172 172 -172c92 0 169 76 169 172'], + 0x26B2: [638,135,603,65,538,'270 -135v302c-118 16 -205 117 -205 236c0 131 108 235 238 235c129 0 235 -106 235 -235c0 -117 -85 -219 -202 -236v-302h-66zM472 403c0 92 -77 169 -169 169c-94 0 -172 -75 -172 -169c0 -95 77 -172 172 -172c94 0 169 78 169 172'], + 0x26E2: [773,80,700,94,606,'420 176c0 -37 -31 -67 -68 -67s-67 30 -67 67c0 38 30 68 67 68s68 -30 68 -68zM383 631v-201c124 -15 223 -129 223 -251c0 -135 -112 -259 -255 -259c-140 0 -257 114 -257 256c0 123 99 242 233 255v199c-58 -45 -118 -80 -182 -108v41c67 53 160 127 196 210h25 c36 -84 127 -154 197 -209v-41c-62 29 -126 63 -180 108zM550 176c0 109 -91 200 -200 200s-200 -91 -200 -200c0 -108 91 -200 200 -200s200 92 200 200'], + 0x2B12: [662,157,910,45,865,'865 -157h-820v819h820v-819zM799 -91v345h-688v-345h688'], + 0x2B13: [662,157,910,45,865,'865 -157h-820v819h820v-819zM799 252v344h-688v-344h688'], + 0x2B14: [662,157,910,45,865,'865 -157h-820v819h820v-819zM799 -91l-688 687v-687h688'], + 0x2B15: [662,157,910,45,865,'865 -157h-820v819h820v-819zM799 -91v687h-688'], + 0x2B16: [744,242,1064,39,1025,'1025 251l-492 -493l-494 494l493 492zM932 251l-400 400v-800'], + 0x2B17: [744,242,1064,39,1025,'1025 251l-492 -493l-494 494l493 492zM532 -149v800l-400 -399'], + 0x2B18: [744,242,1064,39,1025,'1025 251l-492 -493l-494 494l493 492zM932 252h-800l401 -401'], + 0x2B19: [744,242,1064,39,1025,'1025 251l-492 -493l-494 494l493 492zM932 251l-400 400l-400 -399'], + 0x2B1A: [662,157,910,45,865,'865 562h-49v51h-51v49h100v-100zM721 613h-100v49h100v-49zM865 418h-49v100h49v-100zM577 613h-100v49h100v-49zM865 274h-49v100h49v-100zM433 613h-100v49h100v-49zM865 130h-49v100h49v-100zM289 613h-100v49h100v-49zM865 -14h-49v100h49v-100zM865 -157h-100v49 h51v51h49v-100zM145 613h-51v-51h-49v100h100v-49zM721 -157h-100v49h100v-49zM94 418h-49v100h49v-100zM577 -157h-100v49h100v-49zM94 274h-49v100h49v-100zM433 -157h-100v49h100v-49zM94 130h-49v100h49v-100zM289 -157h-100v49h100v-49zM94 -14h-49v100h49v-100z M145 -157h-100v100h49v-51h51v-49'], + 0x2B1B: [780,180,1040,40,1000,'1000 -180h-960v960h960v-960'], + 0x2B1C: [780,180,1040,40,1000,'1000 -180h-960v960h960v-960zM934 -114v828h-828v-828h828'], + 0x2B1D: [332,-172,240,50,190,'190 172h-140v160h140v-160'], + 0x2B1E: [332,-172,240,50,190,'190 172h-140v160h140v-160zM160 202v100h-80v-100h80'], + 0x2B1F: [690,105,910,36,874,'874 387l-160 -492h-518l-160 492l419 303'], + 0x2B20: [690,105,910,36,874,'874 387l-160 -492h-518l-160 492l419 303zM794 363l-339 246l-339 -246l128 -402h422'], + 0x2B21: [680,178,910,82,828,'828 36l-373 -214l-373 214v430l373 214l373 -214v-430zM762 73v353l-307 178l-307 -178v-353l308 -175'], + 0x2B22: [680,178,910,82,828,'828 36l-373 -214l-373 214v430l373 214l373 -214v-430'], + 0x2B23: [633,127,926,24,902,'902 253l-220 -380h-438l-220 380l220 380h438'], + 0x2B24: [785,282,1207,70,1137,'1137 252c0 -294 -239 -534 -533 -534s-534 240 -534 534s240 533 534 533s533 -239 533 -533'], + 0x2B25: [581,96,779,45,734,'734 251l-344 -347l-345 347l345 330'], + 0x2B26: [581,96,779,45,734,'734 251l-344 -347l-345 347l345 330zM640 250l-250 240l-251 -240l251 -252'], + 0x2B27: [609,105,544,40,504,'504 252l-231 -357l-233 357l232 357'], + 0x2B28: [609,105,544,40,504,'504 252l-231 -357l-233 357l232 357zM425 252l-153 236l-153 -236l154 -236'], + 0x2B29: [488,-16,523,26,497,'497 252l-236 -236l-235 236l235 236'], + 0x2B2A: [488,-16,357,26,331,'331 252l-153 -236l-152 236l152 236'], + 0x2B2B: [488,-16,357,26,331,'331 252l-153 -236l-152 236l152 236zM258 252l-80 123l-79 -123l79 -123'], + 0x2B2C: [500,-4,842,50,792,'792 252c0 -186 -220 -248 -371 -248s-371 62 -371 248s220 248 371 248s371 -62 371 -248'], + 0x2B2D: [500,-4,842,50,792,'792 252c0 -186 -220 -248 -371 -248s-371 62 -371 248s220 248 371 248s371 -62 371 -248zM726 252c0 142 -196 182 -305 182s-305 -40 -305 -182s196 -182 305 -182s305 40 305 182'], + 0x2B2E: [623,119,596,50,546,'546 252c0 -151 -62 -371 -248 -371s-248 220 -248 371s62 371 248 371s248 -220 248 -371'], + 0x2B2F: [623,119,596,50,546,'546 252c0 -151 -62 -371 -248 -371s-248 220 -248 371s62 371 248 371s248 -220 248 -371zM480 252c0 157 -64 305 -182 305c-119 0 -182 -148 -182 -305s63 -305 182 -305c118 0 182 148 182 305'], + 0x2B30: [448,-57,926,70,856,'856 220h-170c-16 -69 -77 -120 -151 -120s-135 51 -150 120h-127c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 115 237 190l20 -19c-22 -33 -53 -68 -82 -96c-10 -10 -14 -16 -14 -25 c0 -10 16 -22 26 -22h127c15 70 76 122 151 122c74 0 137 -52 151 -122h170v-66zM436 286h198c-13 41 -53 72 -99 72s-85 -31 -99 -72zM634 220h-197c14 -41 53 -70 98 -70s85 29 99 70'], + 0x2B31: [739,232,926,60,866,'866 -80h-614c-18 0 -25 -12 -25 -22c0 -9 4 -15 14 -25c29 -28 54 -53 76 -86l-20 -19c-65 75 -141 140 -237 180v10c84 36 152 88 213 145c-60 57 -128 109 -213 145v10c84 36 152 88 213 145c-60 57 -128 109 -213 145v10c96 41 172 105 238 181l20 -19 c-23 -33 -47 -55 -77 -86c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h613v-66h-614c-10 0 -25 -12 -25 -22c0 -9 3 -13 13 -23l78 -72c-38 -36 -57 -52 -77 -73c-9 -9 -14 -16 -14 -24c0 -11 12 -20 26 -20h613v-66h-614c-12 0 -25 -12 -25 -22c0 -9 3 -13 13 -23l78 -72 c-38 -36 -57 -52 -77 -73c-9 -9 -14 -16 -14 -24c0 -10 8 -20 26 -20h613v-66'], + 0x2B32: [569,61,1200,52,1147,'1147 220h-161c-15 -174 -143 -281 -317 -281c-169 0 -295 123 -310 281h-119c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 116 237 191l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25 c0 -10 16 -22 26 -22h120c15 166 146 283 310 283c176 0 301 -129 317 -283h161v-66zM697 286h223c-15 118 -107 205 -223 217v-217zM647 286v217c-124 -10 -209 -105 -223 -217h223zM920 220h-223v-215c120 11 209 99 223 215zM647 5v215h-223c15 -113 102 -205 223 -215'], + 0x2B33: [449,-58,1574,55,1519,'1519 220h-69l-89 -106l-119 172l-124 -172l-119 172l-124 -172l-119 172l-124 -172l-119 172l-124 -172l-92 106h-57c-8 0 -24 -13 -24 -22s4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 115 238 191l20 -19 c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h86l60 -66l124 174l119 -174l124 174l119 -174l124 174l119 -174l124 174l119 -174l60 66h98v-66'], + 0x2B34: [450,-57,926,56,871,'871 220h-266v-163h-50v163h-168c-10 -2 -24 -13 -24 -22s4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-52 60 -111 121 -181 163h-15c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 116 238 192l20 -19 c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h13c71 42 130 103 183 164l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -9 7 -20 22 -20h169v164h50v-164h266v-66'], + 0x2B35: [450,-57,926,55,871,'871 220h-171v-163h-50v163h-79v-163h-50v163h-135c-10 -2 -24 -13 -24 -22s4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-52 60 -111 121 -181 163h-15c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10 c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h13c71 42 130 103 183 164l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -9 7 -20 22 -20h136v164h50v-164h79v164h50v-164h171v-66'], + 0x2B36: [450,-57,926,55,871,'871 57h-50v163h-435c-10 -2 -24 -13 -24 -22s4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-52 60 -111 121 -181 163h-15c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 116 238 192l20 -19 c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h13c71 42 130 103 183 164l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -9 7 -20 22 -20h436v164h50v-393'], + 0x2B37: [449,-57,1412,55,1357,'1337 449l20 -19c-23 -33 -55 -62 -82 -96c-13 -17 -29 -49 -29 -81c0 -44 18 -68 28 -80c27 -30 60 -64 82 -97l-20 -19c-52 60 -112 121 -182 163v66c71 43 130 102 183 163zM1070 220h-144v66h144v-66zM842 220h-144v66h144v-66zM614 220h-144v66h144v-66zM439 449 l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -9 6 -20 23 -20v-66c-9 0 -24 -14 -24 -22c0 -9 3 -14 13 -24c29 -28 61 -65 83 -98l-20 -19c-52 60 -111 121 -181 163h-15c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19 c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 25 -20h14c71 42 130 102 183 163'], + 0x2B38: [449,-57,926,55,873,'873 254c0 -21 -16 -37 -36 -37s-37 16 -37 37c0 20 17 36 37 36s36 -16 36 -36zM751 254c0 -21 -17 -37 -37 -37c-19 0 -36 16 -36 37c0 20 17 36 36 36c20 0 37 -16 37 -36zM628 253c0 -20 -16 -36 -36 -36s-36 16 -36 36s16 36 36 36s36 -16 36 -36zM506 254 c0 -21 -17 -37 -36 -37c-20 0 -37 16 -37 37c0 20 17 36 37 36c19 0 36 -16 36 -36zM385 254c0 -21 -17 -37 -37 -37s-36 16 -36 37c0 20 16 36 36 36s37 -16 37 -36zM312 76l-20 -19c-65 75 -141 151 -237 191v10c96 41 171 115 237 191l20 -19c-23 -33 -51 -65 -81 -96 c-9 -9 -14 -20 -14 -28c0 -10 4 -17 14 -17c20 0 31 -16 31 -36s-11 -36 -31 -36c-11 0 -15 -9 -15 -19c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97'], + 0x2B39: [450,-57,926,55,871,'851 450l20 -19c-23 -33 -55 -62 -82 -97c-13 -17 -29 -49 -29 -81c0 -44 18 -68 28 -80c27 -30 60 -64 82 -97l-20 -19c-52 60 -111 121 -181 163h-146v-163h-50v163h-231c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19 c-65 75 -141 151 -237 191v10c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h230v164h50v-164h145c71 43 130 103 183 164'], + 0x2B3A: [450,-57,926,55,871,'851 450l20 -19c-23 -33 -55 -62 -82 -97c-13 -17 -29 -49 -29 -81c0 -44 18 -68 28 -80c27 -30 60 -64 82 -97l-20 -19c-52 60 -111 121 -181 163h-95v-163h-50v163h-79v-163h-50v163h-153c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19 c-65 75 -141 151 -237 191v10c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h152v164h50v-164h79v164h50v-164h94c71 43 130 103 183 164'], + 0x2B3B: [449,-57,926,55,871,'851 449l20 -19c-23 -33 -55 -62 -82 -96c-13 -17 -29 -49 -29 -81c0 -44 18 -68 28 -80c27 -30 60 -64 82 -97l-20 -19c-52 60 -111 121 -181 163h-282c-14 0 -24 -14 -24 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-52 60 -111 121 -181 163h-16 c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h14c71 42 130 102 183 163l20 -19c-23 -33 -52 -65 -82 -96 c-9 -9 -14 -20 -14 -28c0 -9 9 -20 23 -20h281c71 43 130 102 183 163'], + 0x2B3C: [450,-57,926,55,871,'851 450l20 -19c-23 -33 -55 -62 -82 -97c-13 -17 -29 -49 -29 -81c0 -44 18 -68 28 -80c27 -30 60 -64 82 -97l-20 -19c-52 60 -111 121 -181 163h-87v-163h-50v163h-145c-14 0 -24 -14 -24 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19 c-52 60 -111 121 -181 163h-16c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 116 238 192l20 -19c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h14c71 42 130 103 183 164l20 -19 c-23 -33 -52 -66 -82 -97c-9 -9 -14 -20 -14 -28c0 -9 9 -20 23 -20h145v164h50v-164h86c71 43 130 103 183 164'], + 0x2B3D: [450,-57,926,50,876,'856 450l20 -19c-23 -33 -48 -62 -75 -97c-13 -17 -30 -49 -30 -81c0 -44 19 -71 29 -83c27 -30 53 -62 75 -94l-20 -19c-52 63 -100 121 -170 163h-51v-163h-50v163h-59v-163h-50v163h-121c-14 0 -24 -14 -24 -22c0 -9 4 -15 14 -25c29 -28 58 -64 80 -97l-20 -19 c-52 63 -100 121 -176 163c-10 0 -25 -12 -25 -22c0 -9 4 -15 14 -25c29 -28 58 -64 80 -97l-20 -19c-65 75 -131 151 -227 191v10c96 41 162 116 228 192l20 -19c-23 -33 -50 -66 -80 -97c-9 -9 -14 -20 -14 -28c0 -10 6 -20 24 -20c75 42 123 101 176 164l20 -19 c-23 -33 -49 -66 -79 -97c-9 -9 -14 -20 -14 -28c0 -9 9 -20 23 -20h121v164h50v-164h59v164h50v-164h50c71 43 119 101 172 164'], + 0x2B3E: [449,-57,926,55,871,'871 220h-225l108 -108l-35 -35l-142 142l-142 -142l-35 35l108 108h-265c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 116 237 191l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25 c0 -10 16 -22 26 -22h268l-110 110l35 35l142 -142l142 142l35 -35l-110 -110h227v-66'], + 0x2B3F: [449,-57,926,55,871,'871 256l-51 -34c-43 75 -102 152 -190 152c-108 0 -154 -154 -280 -154h-107c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 116 237 191l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25 c0 -10 16 -22 26 -22h108c78 0 138 154 280 154c104 0 188 -87 241 -184'], + 0x2B40: [565,-57,926,55,871,'776 515h-369v50h369v-50zM776 370h-369v50h369v-50zM871 220h-628c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10c96 40 172 116 237 191l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25 c0 -10 16 -22 26 -22h629v-66'], + 0x2B41: [508,-57,926,55,871,'796 370h-20c-10 49 -43 88 -86 88c-46 0 -128 -88 -189 -88c-62 0 -110 80 -114 138h19c10 -49 40 -88 84 -88c45 0 128 88 189 88s114 -69 117 -138zM871 220h-628c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10 c96 40 172 116 237 191l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25c0 -10 16 -22 26 -22h629v-66'], + 0x2B42: [449,141,926,55,871,'871 220h-629c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h628v-66zM796 -2h-19c-10 49 -40 88 -84 88 c-45 0 -128 -88 -189 -88s-114 69 -117 138h20c10 -49 43 -88 86 -88c46 0 128 88 189 88c62 0 110 -80 114 -138zM796 -141h-19c-10 49 -40 88 -84 88c-45 0 -128 -88 -189 -88s-114 69 -117 138h20c10 -49 43 -88 86 -88c46 0 128 88 189 88c62 0 110 -80 114 -138'], + 0x2B43: [532,26,926,45,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -5 22 -26 22h-139l-500 -246v65l356 181h-316v66h315l-355 181v65l500 -246h138c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191'], + 0x2B44: [532,26,926,45,871,'871 258v-10c-96 -40 -162 -106 -227 -181l-20 19c22 33 43 59 72 87c10 10 14 16 14 25c0 10 -5 22 -26 22h-84c-14 -134 -118 -246 -265 -246h-290v66h286c103 0 187 85 203 180h-449v66h449c-16 94 -99 180 -202 180h-287v66h287c148 0 253 -113 268 -246h83 c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -49 53 -72 86l20 19c66 -76 132 -140 228 -181'], + 0x2B45: [701,195,928,55,873,'873 -35h-512c35 -54 67 -108 81 -145l-24 -15c-70 137 -186 278 -363 443v13c152 136 279 273 364 440l24 -13c-15 -42 -47 -96 -81 -147h511v-66h-557c-36 -49 -69 -81 -88 -104h645v-66h-697c-13 -19 -23 -35 -23 -52c0 -20 10 -35 23 -52h697v-66h-642 c20 -25 51 -57 85 -104h557v-66'], + 0x2B46: [701,195,928,55,873,'873 261v-13c-177 -165 -293 -306 -363 -443l-24 15c14 37 46 91 81 145h-512v66h557c34 47 65 79 85 104h-642v66h697c13 17 23 32 23 52c0 17 -10 33 -23 52h-697v66h645c-19 23 -52 55 -88 104h-557v66h511c-34 51 -66 105 -81 147l24 13c85 -167 212 -304 364 -440'], + 0x2B47: [508,-57,926,55,871,'539 370h-20c-10 49 -43 88 -86 88c-46 0 -128 -88 -189 -88c-62 0 -110 80 -114 138h19c10 -49 40 -88 84 -88c45 0 128 88 189 88s114 -69 117 -138zM871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-628v66 h629c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191'], + 0x2B48: [449,141,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-629v66h628c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191zM539 -2h-19c-10 49 -40 88 -84 88 c-45 0 -128 -88 -189 -88s-114 69 -117 138h20c10 -49 43 -88 86 -88c46 0 128 88 189 88c62 0 110 -80 114 -138zM539 -141h-19c-10 49 -40 88 -84 88c-45 0 -128 -88 -189 -88s-114 69 -117 138h20c10 -49 43 -88 86 -88c46 0 128 88 189 88c62 0 110 -80 114 -138'], + 0x2B49: [508,-57,926,55,871,'777 508h19c-4 -58 -52 -138 -114 -138c-61 0 -143 88 -189 88c-43 0 -76 -39 -86 -88h-20c3 69 56 138 117 138s144 -88 189 -88c44 0 74 39 84 88zM871 220h-628c-18 0 -26 -10 -26 -20c0 -8 5 -19 14 -28c30 -31 59 -63 82 -96l-20 -19c-66 76 -142 150 -238 191v10 c96 40 172 116 237 191l20 -19c-22 -33 -53 -69 -82 -97c-10 -10 -14 -16 -14 -25c0 -10 16 -22 26 -22h629v-66'], + 0x2B4A: [449,141,926,55,871,'871 220h-629c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h628v-66zM776 136h20c-3 -69 -56 -138 -117 -138 s-144 88 -189 88c-44 0 -74 -39 -84 -88h-19c4 58 52 138 114 138c61 0 143 -88 189 -88c43 0 76 39 86 88zM776 -3h20c-3 -69 -56 -138 -117 -138s-144 88 -189 88c-44 0 -74 -39 -84 -88h-19c4 58 52 138 114 138c61 0 143 -88 189 -88c43 0 76 39 86 88'], + 0x2B4B: [449,2,926,55,871,'871 220h-629c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h628v-66zM796 -2h-19c-10 49 -40 88 -84 88 c-45 0 -128 -88 -189 -88s-114 69 -117 138h20c10 -49 43 -88 86 -88c46 0 128 88 189 88c62 0 110 -80 114 -138'], + 0x2B4C: [449,2,926,55,871,'871 258v-10c-96 -40 -172 -116 -237 -191l-20 19c22 33 53 69 82 97c10 10 14 16 14 25c0 10 -16 22 -26 22h-629v66h628c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191zM539 -2h-19c-10 49 -40 88 -84 88 c-45 0 -128 -88 -189 -88s-114 69 -117 138h20c10 -49 43 -88 86 -88c46 0 128 88 189 88c62 0 110 -80 114 -138'], + 0x2B50: [619,30,794,60,734,'734 373l-205 -158l74 -245l-206 146l-206 -146l74 245l-205 158h253l84 246l84 -246h253zM658 347h-196l-65 192l-65 -192h-196l159 -122l-57 -190l159 113l159 -113l-57 190'], + 0x2B51: [619,30,794,60,734,'734 373l-205 -158l74 -245l-206 146l-206 -146l74 245l-205 158h253l84 246l84 -246h253'], + 0x2B52: [597,13,700,35,665,'665 365l-226 -137l107 -241l-196 179l-196 -179l107 241l-226 137l262 -30l53 262l53 -262zM550 326l-168 -20l-32 160l-32 -160l-168 20l144 -88l-66 -148l122 111l122 -111l-66 148'], + 0x2B53: [712,126,865,45,840,'840 293l-303 -419l-492 160v518l492 160'], + 0x2B54: [712,127,865,45,840,'840 293l-303 -420l-492 160v518l492 161zM759 293l-246 339l-402 -128v-422l402 -129'], + 0xE000: [610,25,1184,829,895,'895 -25h-66v635h66v-635'], + 0xE001: [667,-41,1184,829,1211,'1211 601h-316v-560h-66v626h382v-66'], + 0xE002: [1022,0,1192,30,1162,'1162 949h-198v-949h-73v949h-258v-949h-73v949h-259v-949h-73v949h-198v73h1132v-73'], + 0xE099: [567,183,612,25,587,'587 567l-562 -750v750h562zM456 501h-365v-487'], + 0xE0A7: [702,-506,376,30,346,'346 671l-115 -165h-201v54h172l100 142'], + 0xE0A8: [662,156,496,114,371,'371 -156h-55v737l-164 -234l-38 30l201 285h56v-818'], + 0xE0A9: [497,-167,647,49,619,'619 167h-54v138h-462v-138h-54v330h54v-138h462v138h54v-330'], + 0xE0AA: [702,-506,376,30,346,'346 506h-201l-115 165l44 31l100 -142h172v-54'], + 0xE0AB: [662,156,496,114,371,'371 -156h-55v240l-165 -236l-37 30l201 286l1 -1v499h55v-818'], + 0xE0AC: [702,-506,470,30,440,'440 547l-41 -41l-110 117l-109 -117l-150 158l41 38l109 -115l109 115'], + 0xE0AD: [662,156,638,35,513,'513 -156h-55v512l-184 219l-196 -233l-43 35l239 285l184 -220v220h55v-818'], + 0xE0AE: [662,0,423,55,345,'345 0h-55v500l-183 -500l-52 19l235 643h55v-662'], + 0xE0AF: [662,0,423,55,345,'345 0h-55l-235 643l52 19l183 -500v500h55v-662'], + 0xE0B0: [735,-531,0,100,400,'400 680h-245v-149h-55v204h300v-55'], + 0xE0B1: [-50,254,0,0,300,'300 -254h-300v55h245v149h55v-204'], + 0xE0B2: [-50,254,0,0,300,'300 -254h-300v204h55v-149h245v-55'], + 0xE0D7: [583,79,762,50,712,'712 252c0 -183 -148 -331 -331 -331s-331 148 -331 331s148 331 331 331s331 -148 331 -331zM575 250c0 107 -86 194 -192 194c-110 0 -196 -84 -196 -192c0 -110 85 -196 194 -196c108 0 194 86 194 194'], + 0xE0E3: [638,134,842,35,807,'807 603l-135 -135c50 -58 80 -134 80 -216c0 -183 -148 -331 -331 -331c-83 0 -158 30 -216 80l-135 -135l-35 35l135 135c-50 58 -80 133 -80 216c0 183 148 331 331 331c82 0 158 -30 216 -80l135 135zM686 252c0 146 -119 265 -265 265s-265 -119 -265 -265 s119 -265 265 -265s265 119 265 265'], + 0xE0E5: [690,189,523,72,450,'450 690l-52 -141h-57l50 141h59zM360 444l-52 -141h-57l50 141h59zM271 198l-52 -141h-57l50 141h59zM181 -48l-52 -141h-57l50 141h59'], + 0xE0E6: [690,189,523,72,450,'181 549h-57l-52 141h59zM271 303h-57l-52 141h59zM360 57h-57l-52 141h59zM450 -189h-57l-52 141h59'], + 0xE0E7: [811,127,772,35,737,'737 811l-351 -938l-351 938h702zM642 745h-512l256 -684'], + 0xE0E8: [532,26,1077,55,1022,'1022 220h-180v-180h-66v180h-180v66h180v180h66v-180h180v-66zM612 51v-77c-120 161 -354 230 -557 246v66c203 16 437 85 557 246v-77c-50 -86 -211 -167 -334 -202c123 -35 284 -116 334 -202'], + 0xE0E9: [547,41,685,48,636,'636 192h-233v-233h-122v233h-233v122h233v233h122v-233h233v-122zM598 230v46h-233v233h-46v-233h-233v-46h233v-233h46v233h233'], + 0xE0EA: [661,158,910,45,865,'865 220h-101l-276 -276v-102h-66v102l-275 276h-102v66h102l275 273v102h66v-102l275 -273h102v-66zM705 255l-250 240l-251 -240l251 -252'], + 0xE0EB: [567,58,716,45,671,'671 -12l-47 -46l-72 72h-388l-72 -72l-47 47l72 72v388l-72 72l47 46l72 -72h388l72 72l46 -47l-71 -71v-389zM534 79v351h-352v-351h352'], + 0xE0ED: [819,312,511,192,319,'319 756c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM319 505c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM319 254c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM319 3 c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM319 -248c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63'], + 0xE0EE: [751,156,926,85,841,'841 -156h-756v50h344v268c-61 15 -107 70 -107 136s46 121 107 136v267h-344v50h756v-50h-346v-267c61 -15 107 -70 107 -136s-46 -121 -107 -136v-268h346v-50'], + 0xE0EF: [547,41,686,49,637,'637 220h-156c-12 -52 -53 -94 -105 -106v-155h-66v156c-52 12 -93 53 -105 105h-156v66h157c12 51 52 91 104 103v158h66v-158c52 -12 92 -51 105 -103h156v-66'], + 0xE0F1: [66,0,390,48,342,'342 0h-294v66h294v-66'], + 0xE104: [409,-253,100,-64,164,'164 253h-228v156h228v-156'], + 0xE10C: [384,-122,400,69,330,'330 169l-46 -47l-215 215l46 47'], + 0xE10D: [384,-122,400,69,330,'330 337l-215 -215l-46 47l215 215'], + 0xE10E: [405,-101,652,193,459,'459 101h-66v304h66v-304zM259 101h-66v304h66v-304'], + 0xE10F: [386,-120,315,0,315,'315 320h-315v66h315v-66zM315 120h-315v66h315v-66'], + 0xE110: [432,-28,652,124,528,'528 217l-47 -47l-215 215l47 47zM386 75l-47 -47l-215 215l47 47'], + 0xE111: [432,-28,652,124,528,'386 385l-215 -215l-47 47l215 215zM528 243l-215 -215l-47 47l215 215'], + 0xE116: [214,-107,511,223,289,'289 107h-66v107h66v-107'], + 0xE117: [286,-220,229,61,168,'168 220h-107v66h107v-66'], + 0xE118: [271,-134,277,70,207,'207 180l-47 -46l-90 90l47 47'], + 0xE119: [271,-134,277,70,207,'207 224l-90 -90l-47 46l90 91'], + 0xE28F: [135,0,325,-1,326,'326 0h-327v135h327v-135'], + 0xE290: [135,0,633,-1,634,'634 0h-635v135h635v-135'], + 0xE291: [955,-820,325,-1,326,'326 820h-327v135h327v-135'], + 0xE3C7: [662,156,902,0,863,'863 662l-128 -133h-77l128 133h77zM645 435l-128 -133h-77l128 133h77zM429 209l-128 -133h-77l128 133h77zM205 -23l-128 -133h-77l128 133h77'], + 0xE3C8: [662,156,902,0,863,'205 529h-77l-128 133h77zM423 302h-77l-128 133h77zM639 76h-77l-128 133h77zM863 -156h-77l-128 133h77'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Shapes/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size1/Regular/Main.js new file mode 100644 index 0000000..c562077 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size1/Regular/Main.js @@ -0,0 +1,134 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Size1/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'STIXMathJax_Size1', + id: 'STIXWEBSIZE1', + 0x20: [0,0,250,0,0,''], + 0x28: [1066,164,468,139,382,'382 -134v-30c-142 134 -243 343 -243 615c0 267 101 481 243 615v-30c-90 -110 -162 -282 -162 -585c0 -306 72 -475 162 -585'], + 0x29: [1066,164,468,86,329,'86 1036v30c142 -134 243 -343 243 -615c0 -267 -101 -481 -243 -615v30c90 110 162 282 162 585c0 306 -72 475 -162 585'], + 0x2F: [1066,164,579,25,552,'552 1066l-454 -1230h-73l454 1230h73'], + 0x5B: [1066,164,383,180,363,'363 -164h-183v1230h183v-33h-113v-1164h113v-33'], + 0x5C: [1066,164,579,27,552,'552 -164h-73l-452 1230h73'], + 0x5D: [1066,164,383,20,203,'203 -164h-183v33h113v1164h-113v33h183v-1230'], + 0x7B: [1066,164,575,114,466,'466 -136v-28c-132 16 -219 98 -219 277v168c0 59 -42 146 -133 160v21c91 13 133 101 133 160v168c0 179 87 260 219 276v-28c-88 -14 -142 -78 -142 -145c0 -20 5 -127 5 -135v-89c0 -98 -49 -175 -163 -217v-2c114 -42 163 -118 163 -216v-89c0 -8 -5 -69 -5 -136 s40 -120 142 -145'], + 0x7D: [1066,164,575,109,461,'461 461v-21c-91 -13 -133 -101 -133 -160v-168c0 -179 -87 -260 -219 -276v28c88 14 142 78 142 145c0 20 -5 127 -5 135v89c0 98 49 175 163 217v2c-114 42 -163 118 -163 216v89c0 8 5 69 5 136s-40 120 -142 145v28c132 -16 219 -98 219 -277v-168 c0 -59 42 -146 133 -160'], + 0xA0: [0,0,250,0,0,''], + 0x2C6: [767,-554,560,0,560,'560 554h-64l-216 146l-216 -146h-64l256 213h48'], + 0x2C7: [767,-554,560,0,560,'560 767l-256 -213h-48l-256 213h64l216 -146l216 146h64'], + 0x2DC: [750,-598,558,-2,558,'533 750h25c0 -96 -69 -152 -139 -152c-69 0 -79 16 -187 60c-50 21 -86 31 -107 31c-50 0 -91 -31 -101 -91h-26c0 104 73 152 135 152c33 0 97 -21 190 -61c50 -22 87 -32 109 -32c53 0 93 32 101 93'], + 0x2F7: [-117,269,558,-2,558,'533 -117h25c0 -96 -69 -152 -139 -152c-69 0 -79 16 -187 60c-50 21 -86 31 -107 31c-50 0 -91 -31 -101 -91h-26c0 104 73 152 135 152c33 0 97 -21 190 -61c50 -22 87 -32 109 -32c53 0 93 32 101 93'], + 0x302: [767,-554,560,0,560,'560 554h-64l-216 146l-216 -146h-64l256 213h48'], + 0x303: [750,-598,560,0,560,'535 750h25c0 -96 -69 -152 -139 -152c-69 0 -79 16 -187 60c-50 21 -86 31 -107 31c-50 0 -91 -31 -101 -91h-26c0 104 73 152 135 152c33 0 97 -21 190 -61c50 -22 87 -32 109 -32c53 0 93 32 101 93'], + 0x305: [820,-770,1000,0,1000,'1000 770h-1000v50h1000v-50'], + 0x30C: [767,-554,560,0,560,'560 767l-256 -213h-48l-256 213h64l216 -146l216 146h64'], + 0x330: [-117,269,560,0,560,'535 -117h25c0 -96 -69 -152 -139 -152c-69 0 -79 16 -187 60c-50 21 -86 31 -107 31c-50 0 -91 -31 -101 -91h-26c0 104 73 152 135 152c33 0 97 -21 190 -61c50 -22 87 -32 109 -32c53 0 93 32 101 93'], + 0x332: [-127,177,1000,0,1000,'1000 -177h-1000v50h1000v-50'], + 0x338: [532,21,0,-720,-157,'-157 466l-563 -487v66l563 487v-66'], + 0x203E: [820,-770,1000,0,1000,'1000 770h-1000v50h1000v-50'], + 0x20D0: [749,-584,870,0,871,'871 584h-871v5c96 46 132 85 192 160l20 -19c-23 -33 -16 -27 -46 -58c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h693v-50'], + 0x20D1: [749,-584,871,0,871,'871 584h-871v50h693c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -23 25 -46 58l20 19c60 -75 96 -114 192 -160v-5'], + 0x20D6: [735,-482,871,0,872,'872 584h-701c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 106 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h700v-50'], + 0x20D7: [736,-482,871,0,872,'872 614v-10c-91 -37 -106 -53 -168 -122l-20 16c22 28 20 29 31 41c9 9 12 14 12 23c0 16 -17 22 -27 22h-700v50h701c18 0 26 10 26 20c0 8 -7 16 -14 25s-8 11 -29 41l20 16c62 -67 77 -84 168 -122'], + 0x20EC: [-123,288,871,0,871,'871 -123v-5c-96 -46 -132 -85 -192 -160l-20 19c23 33 16 27 46 58c9 9 14 16 14 24c0 10 -8 14 -26 14h-693v50h871'], + 0x20ED: [-123,288,871,0,871,'871 -173h-693c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 23 -25 46 -58l-20 -19c-60 75 -96 114 -192 160v5h871v-50'], + 0x20EE: [-26,279,871,0,872,'872 -177h-701c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 106 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h700v-50'], + 0x20EF: [-25,279,871,0,872,'872 -147v-10c-91 -37 -106 -53 -168 -122l-20 16c22 28 20 29 31 41c9 9 12 14 12 23c0 16 -17 22 -27 22h-700v50h701c18 0 26 10 26 20c0 8 -7 16 -14 25s-8 11 -29 41l20 16c62 -67 77 -84 168 -122'], + 0x2140: [1500,-50,1259,55,1204,'1204 50h-1149v86l397 638l-394 640v86h987v-86h-596l385 -640l-395 -638h765v-86zM734 774l-383 640h-193l393 -640l-398 -638h187'], + 0x220F: [1500,-49,1355,50,1305,'1305 49h-515v38h44c98 0 124 81 124 189v1135h-560v-1135c0 -130 32 -189 124 -189h43v-38h-515v38h27c94 0 138 52 138 154v1046c0 139 -54 175 -141 175h-24v38h1255v-38c-125 0 -164 -50 -164 -169v-1026c0 -120 46 -180 139 -180h25v-38'], + 0x2210: [1500,-49,1355,50,1305,'1305 49h-1255v38h24c87 0 141 36 141 175v1046c0 102 -44 154 -138 154h-27v38h515v-38h-43c-92 0 -124 -59 -124 -189v-1135h560v1135c0 108 -26 189 -124 189h-44v38h515v-38h-25c-93 0 -139 -60 -139 -180v-1026c0 -119 39 -169 164 -169v-38'], + 0x2211: [1499,-49,1292,90,1202,'1202 465l-74 -416h-1038l557 735l-521 715h976v-351h-36c0 19 -7 45 -11 65c-28 131 -95 183 -162 191c-28 4 -71 5 -106 5h-377l411 -564l-470 -613h568c139 0 208 69 244 233h39'], + 0x221A: [1552,295,1057,112,1089,'1089 1552l-562 -1847h-42l-231 751c-14 46 -30 68 -62 68c-19 0 -44 -8 -68 -27l-12 20l164 126h25l227 -737h4l500 1646h57'], + 0x221B: [1552,295,1057,112,1089,'314 968l-12 2c16 50 48 84 102 84c49 0 81 -28 81 -71c0 -25 -17 -56 -46 -75c47 -16 74 -40 74 -91c0 -80 -77 -122 -155 -122c-37 0 -58 18 -58 37c0 10 9 18 22 18c8 0 16 -3 31 -13c20 -14 30 -17 45 -17c38 0 67 29 67 74c0 39 -18 63 -54 75c-11 4 -23 5 -53 5v11 c20 8 33 13 44 19c26 15 42 34 42 66c0 35 -21 53 -56 53c-32 0 -52 -17 -74 -55zM1089 1552l-562 -1847h-42l-231 751c-14 46 -30 68 -62 68c-19 0 -44 -8 -68 -27l-12 20l164 126h25l227 -737h4l500 1646h57'], + 0x221C: [1552,295,1057,112,1089,'532 786h-53v-87h-49v87h-146v41l164 224h31v-224h53v-41zM430 827v169l-123 -169h123zM1089 1552l-562 -1847h-42l-231 751c-14 46 -30 68 -62 68c-19 0 -44 -8 -68 -27l-12 20l164 126h25l227 -737h4l500 1646h57'], + 0x222B: [2000,269,585,56,1035,'280 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76 c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221'], + 0x222C: [2000,269,895,56,1345,'590 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76 c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221zM280 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704 c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221'], + 0x222D: [2000,269,1205,56,1655,'900 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76 c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221zM590 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704 c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221zM280 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30 c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221'], + 0x222E: [2000,269,635,56,1035,'571 1172l123 498c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-145 -591c113 -46 195 -156 195 -290c0 -172 -142 -313 -309 -313c-12 0 -24 0 -35 1l-125 -511 c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l143 581c-113 47 -193 160 -193 289c0 175 142 313 312 313c10 0 19 0 29 -1zM527 598h12c145 0 269 114 269 262 c0 108 -66 201 -157 242zM559 1124h-17c-144 0 -262 -117 -262 -264c0 -106 64 -199 155 -240'], + 0x222F: [2000,269,945,56,1345,'876 1151l128 519c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-156 -633c84 -55 140 -139 140 -242c0 -151 -119 -258 -272 -297l-131 -532 c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l139 564c-10 -1 -20 -1 -29 -1c-62 0 -123 11 -177 31l-134 -547c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54 c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l157 637c-83 54 -138 136 -138 239c0 151 118 259 271 299l124 505c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30 c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-138 -561c10 1 20 1 30 1c61 0 122 -10 176 -30zM949 1056l-106 -431c124 39 209 128 209 241c0 77 -39 143 -103 190zM741 605l123 497c-49 19 -105 29 -164 29c-15 0 -29 -1 -43 -2l-122 -497 c49 -19 105 -29 165 -29c14 0 28 0 41 2zM450 679l106 430c-123 -40 -207 -130 -207 -243c0 -76 38 -141 101 -187'], + 0x2230: [2000,269,1255,56,1655,'1178 1119l136 551c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-165 -671c71 -52 112 -122 112 -204c0 -119 -86 -211 -227 -263l-139 -566 c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l143 583c-63 -13 -132 -20 -207 -20h-10l-127 -516c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54 c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l140 568c-76 7 -144 22 -203 43l-138 -564c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50 c0 -8 6 -12 15 -12c65 0 91 88 124 221l161 653c-90 54 -142 130 -142 223c0 130 101 228 265 278l130 526c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-141 -573 c52 9 109 13 169 13c16 0 31 0 47 -1l121 490c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-140 -569c76 -10 143 -28 200 -53zM1250 1018l-88 -357 c100 44 163 113 163 205c0 61 -28 111 -75 152zM1056 627l110 443c-56 26 -125 44 -200 53l-128 -520c78 0 153 8 218 24zM871 1131h-35c-65 0 -126 -5 -182 -16l-115 -466c59 -22 128 -36 203 -42zM453 692l97 396c-122 -43 -201 -118 -201 -222c0 -73 39 -131 104 -174'], + 0x2231: [2000,269,635,56,1035,'536 1026l158 644c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-181 -737c70 -29 128 -82 162 -150c5 -9 11 -13 19 -13s15 8 18 18c11 30 26 60 43 86l15 -9 c-35 -67 -61 -141 -61 -219l-9 -5c-59 57 -127 84 -197 107l5 17c29 -6 60 -14 91 -25c4 -2 11 -3 15 -3c10 0 18 5 18 15c0 2 -2 10 -2 10c-27 53 -73 96 -129 121l-226 -917c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30 c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l244 987h-15c-146 0 -264 -119 -264 -265h-50c0 173 141 315 314 315c9 0 18 0 27 -1'], + 0x2232: [2000,269,635,56,1035,'573 1180l121 490c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-144 -583c70 -28 128 -82 162 -150c5 -9 10 -13 19 -13s14 8 18 18c11 30 26 60 43 86l15 -9 c-35 -67 -61 -145 -61 -223c0 -173 -141 -314 -314 -314c-10 0 -20 1 -30 2l-127 -518c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l144 587 c-113 48 -192 160 -192 290c0 173 141 314 314 314c9 0 18 0 27 -1zM652 1108l-124 -504c6 -1 12 -1 18 -1c146 0 264 118 264 264c0 12 -2 25 -3 36c-46 32 -100 53 -153 70l5 17c29 -6 60 -14 91 -25c4 -2 10 -3 14 -3c11 0 19 5 19 15c0 2 -2 10 -2 10 c-27 53 -74 96 -129 121zM561 1131h-15c-146 0 -264 -118 -264 -264c0 -107 63 -199 154 -240'], + 0x2233: [2000,269,635,56,1035,'573 1180l121 490c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-144 -583c38 -15 72 -37 101 -66c53 -43 130 -70 196 -88l-4 -18c-37 1 -87 22 -108 22 c-8 0 -15 -4 -15 -12c0 -2 1 -6 1 -6c15 -38 25 -80 25 -123c0 -173 -141 -314 -314 -314c-10 0 -20 1 -30 2l-127 -518c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12 c65 0 91 88 124 221l144 587c-113 48 -192 160 -192 290c0 173 141 314 314 314c9 0 18 0 27 -1zM652 1109l-124 -505c6 -1 12 -1 18 -1c147 0 264 118 264 264c0 35 -6 69 -19 99c-3 6 -9 7 -14 7c-10 0 -18 -10 -23 -19c-14 -30 -26 -58 -43 -87l-17 8 c21 52 44 108 51 165c-25 29 -57 53 -93 69zM561 1131h-15c-148 0 -264 -118 -264 -264c0 -107 63 -199 154 -240'], + 0x22C0: [1500,-49,1265,60,1205,'1205 49h-102l-470 1272h-3l-468 -1272h-102l533 1451h78'], + 0x22C1: [1500,-49,1265,60,1205,'1205 1500l-534 -1451h-78l-533 1451h102l468 -1272h3l470 1272h102'], + 0x22C2: [1510,-49,1265,118,1147,'1147 49h-96v994c0 178 -173 371 -412 371s-425 -193 -425 -371v-994h-96v969c0 296 246 492 523 492c245 0 506 -215 506 -492v-969'], + 0x22C3: [1500,-39,1265,118,1147,'1147 1500v-969c0 -277 -261 -492 -506 -492c-277 0 -523 196 -523 492v969h96v-994c0 -178 186 -371 425 -371s412 193 412 371v994h96'], + 0x2308: [1066,164,453,180,426,'426 1033h-176v-1197h-70v1230h246v-33'], + 0x2309: [1066,164,453,25,273,'273 -164h-70v1197h-178v33h248v-1230'], + 0x230A: [1066,164,453,180,428,'428 -164h-248v1230h70v-1197h178v-33'], + 0x230B: [1066,164,453,27,273,'273 -164h-246v33h176v1197h70v-1230'], + 0x23B4: [766,-544,1063,69,994,'994 544h-66v156h-793v-156h-66v222h925v-222'], + 0x23B5: [139,83,1063,68,993,'993 -83h-925v222h66v-156h793v156h66v-222'], + 0x23D0: [676,14,200,67,133,'133 -14h-66v690h66v-690'], + 0x23DC: [60,153,926,0,926,'926 -153h-30c-116 95 -272 153 -432 153c-187 0 -319 -58 -434 -153h-30c132 143 286 213 464 213c176 0 321 -70 462 -213'], + 0x23DD: [777,-564,926,0,926,'896 777h30c-141 -143 -286 -213 -462 -213c-178 0 -332 70 -464 213h30c115 -95 247 -153 434 -153c160 0 316 58 432 153'], + 0x23DE: [136,89,926,0,925,'925 -89h-30c-16 51 -55 93 -132 93c-28 0 -61 -4 -93 -4h-59c-64 0 -115 27 -148 88h-1c-33 -61 -84 -88 -148 -88h-59c-32 0 -65 4 -93 4c-77 0 -116 -42 -132 -93h-30c23 96 96 149 228 149h115c45 0 100 20 109 76h21c9 -56 64 -76 109 -76h115 c132 0 205 -53 228 -149'], + 0x23DF: [789,-564,926,0,925,'895 789h30c-23 -96 -96 -149 -228 -149h-115c-45 0 -100 -20 -109 -76h-21c-9 56 -64 76 -109 76h-115c-132 0 -205 53 -228 149h30c16 -51 55 -93 132 -93c28 0 61 4 93 4h59c64 0 115 -27 148 -88h1c33 61 84 88 148 88h59c32 0 65 -4 93 -4c77 0 116 42 132 93'], + 0x23E0: [66,212,1460,0,1460,'1460 -212l-240 212h-980l-240 -211v52l217 225h1026l217 -226v-52'], + 0x23E1: [842,-564,1460,0,1460,'1460 789l-215 -225h-1028l-217 226v52l240 -212h982l238 211v-52'], + 0x2772: [1066,164,566,205,539,'539 -164h-63l-271 261v708l271 261h63l-264 -286v-658'], + 0x2773: [1066,164,566,27,361,'361 97l-271 -261h-63l264 286v658l-264 286h63l271 -261v-708'], + 0x27E6: [1066,164,515,180,486,'486 -164h-306v1230h306v-33h-72v-1164h72v-33zM362 -131v1164c-69 -2 -112 -19 -112 -97v-983c0 -64 48 -81 112 -84'], + 0x27E7: [1066,164,515,29,335,'335 -164h-306v33h72v1164h-72v33h306v-1230zM265 -34v983c0 64 -48 81 -112 84v-1164c69 2 112 19 112 97'], + 0x27E8: [1066,164,578,116,462,'462 -164h-75l-271 615l271 615h75l-271 -615'], + 0x27E9: [1066,164,578,116,462,'462 451l-271 -615h-75l271 615l-271 615h75'], + 0x27EA: [1066,164,798,116,670,'670 -164h-63l-271 615l271 615h63l-259 -615zM450 -164h-63l-271 615l271 615h63l-259 -615'], + 0x27EB: [1066,164,798,128,682,'682 451l-271 -615h-63l259 615l-259 615h63zM462 451l-271 -615h-63l259 615l-259 615h63'], + 0x2983: [1066,164,712,114,587,'587 -164h-151c-132 16 -189 98 -189 277v168c0 59 -42 146 -133 160v21c91 13 133 101 133 160v168c0 179 57 260 189 276h150v-30h-86v-1170h87v-30zM446 -134v1170h-10c-81 0 -112 -96 -112 -163c0 -20 5 -107 5 -115v-89c0 -98 -49 -175 -163 -217v-2 c114 -42 163 -118 163 -216v-89c0 -8 -5 -49 -5 -116s31 -163 112 -163h10'], + 0x2984: [1066,164,712,114,587,'587 461v-21c-91 -13 -133 -101 -133 -160v-168c0 -179 -57 -260 -189 -276h-150v30h86v1170h-87v30h151c132 -16 189 -98 189 -277v-168c0 -59 42 -146 133 -160zM535 450v2c-114 42 -163 118 -163 216v89c0 8 5 49 5 116s-31 163 -112 163h-10v-1170h10 c81 0 112 96 112 163c0 20 -5 107 -5 115v89c0 98 49 175 163 217'], + 0x2985: [1066,164,632,135,546,'546 -135v-29c-232 107 -411 290 -411 614c0 318 179 509 411 616v-27c-23 -12 -44 -29 -65 -43c-66 -65 -107 -220 -107 -546c0 -331 38 -478 106 -543c21 -14 45 -31 66 -42zM409 -40c-69 95 -87 236 -87 490c0 251 18 394 87 490c-108 -93 -193 -240 -193 -489 c0 -253 85 -399 193 -491'], + 0x2986: [1066,164,632,86,497,'86 1037v29c232 -107 411 -290 411 -614c0 -318 -179 -509 -411 -616v27c23 12 44 29 65 43c66 65 107 220 107 546c0 331 -38 478 -106 543c-21 14 -45 31 -66 42zM416 451c0 253 -85 399 -193 491c69 -95 87 -236 87 -490c0 -251 -18 -394 -87 -490 c108 93 193 240 193 489'], + 0x29F8: [1566,279,806,25,781,'781 1566l-676 -1845h-80l676 1845h80'], + 0x29F9: [1566,279,806,25,781,'781 -279h-80l-676 1845h80'], + 0x2A00: [1500,-49,1555,52,1503,'893 771c0 -64 -51 -115 -115 -115s-115 51 -115 115s51 115 115 115s115 -51 115 -115zM1503 775c0 -400 -326 -726 -726 -726s-725 326 -725 726s325 725 725 725s726 -325 726 -725zM1377 775c0 333 -267 599 -600 599s-599 -266 -599 -599s266 -600 599 -600 s600 267 600 600'], + 0x2A01: [1500,-49,1555,52,1503,'1503 775c0 -400 -326 -726 -726 -726s-725 326 -725 726s325 725 725 725s726 -325 726 -725zM842 837h532c-17 266 -266 515 -532 532v-532zM712 837v532c-270 -10 -515 -266 -532 -532h532zM1374 707h-532v-526v-6c263 28 498 237 532 532zM712 181v526h-532 c17 -266 265 -509 532 -526'], + 0x2A02: [1500,-49,1555,52,1503,'1503 775c0 -400 -326 -726 -726 -726s-725 326 -725 726s325 725 725 725s726 -325 726 -725zM870 772l370 -372c88 99 137 234 137 372s-43 276 -131 376zM778 864l376 376c-100 88 -238 134 -376 134s-276 -46 -376 -134zM686 772l-376 376 c-88 -100 -132 -238 -132 -376s50 -273 138 -372zM1149 312l-371 368l-371 -368c111 -98 239 -137 371 -137c134 0 260 39 371 137'], + 0x2A03: [1500,-39,1265,118,1147,'750 790c0 -65 -53 -117 -118 -117s-118 52 -118 117c0 66 53 119 118 119s118 -53 118 -119zM1147 1500v-969c0 -277 -261 -492 -506 -492c-277 0 -523 196 -523 492v969h96v-994c0 -178 186 -371 425 -371s412 193 412 371v994h96'], + 0x2A04: [1500,-39,1265,118,1147,'1147 1500v-969c0 -277 -261 -492 -506 -492c-277 0 -523 196 -523 492v969h96v-994c0 -178 186 -371 425 -371s412 193 412 371v994h96zM913 636h-240v-239h-80v239h-240v80h240v242h80v-242h240v-80'], + 0x2A05: [1500,-49,1153,82,1071,'1071 49h-96v1365h-797v-1365h-96v1451h989v-1451'], + 0x2A06: [1500,-49,1153,82,1071,'1071 49h-989v1451h96v-1365h797v1365h96v-1451'], + 0x2A07: [1500,-49,1530,60,1470,'1470 49h-102l-470 1272h-3l-79 -215l389 -1057h-102l-339 917l-337 -917h-102l388 1056l-80 216h-3l-468 -1272h-102l533 1451h78l94 -254l93 254h78'], + 0x2A08: [1500,-49,1530,60,1470,'1470 1500l-534 -1451h-78l-93 254l-94 -254h-78l-533 1451h102l468 -1272h3l80 216l-388 1056h102l337 -917l339 917h102l-389 -1057l79 -215h3l470 1272h102'], + 0x2A09: [1500,-49,1482,60,1422,'1422 115l-70 -66l-611 655l-611 -655l-70 66l615 660l-615 659l70 66l611 -655l611 655l70 -66l-615 -659'], + 0x2A0A: [1500,-50,1292,90,1202,'1202 466l-74 -416h-1038l411 542c-72 55 -118 141 -118 238c0 80 31 152 82 205l-339 465h1075v-351h-39c-50 218 -75 261 -226 261h-526l209 -288c20 5 41 7 63 7c165 0 299 -134 299 -299s-134 -299 -299 -299c-32 0 -63 5 -92 14l-239 -312h568c139 0 208 69 244 233 h39zM821 846l-188 -244c16 -3 32 -5 49 -5c129 0 233 104 233 233s-104 233 -233 233c-6 0 -13 0 -19 -1l38 -52zM647 785l-107 147l-36 49c-34 -41 -55 -93 -55 -151c0 -76 36 -143 92 -185'], + 0x2A0B: [2000,269,914,56,1035,'629 1407l65 263c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-82 -334h191v-251h-30c-19 120 -48 183 -178 183l-83 -337l39 -52l-75 -97l-83 -337h236 c112 0 148 68 170 168h30l-53 -299h-415l-86 -348c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l97 395h-232l342 445l25 100l-342 477h459zM613 1341h-238l179 -241 zM447 669l-118 -153h81'], + 0x2A0C: [2000,269,1515,56,1965,'1210 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76 c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221zM900 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704 c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221zM590 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30 c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221zM280 -10l414 1680c48 195 126 330 268 330 c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12 c65 0 91 88 124 221'], + 0x2A0D: [2000,269,635,56,1035,'504 901l190 769c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-207 -840h248v-70h-265l-195 -794c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54 c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l207 841h-250v70h267'], + 0x2A0E: [2000,269,635,56,1035,'531 1011l163 659c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-180 -730h231v-70h-248l-37 -150h285v-70h-302l-168 -684c-44 -181 -122 -306 -261 -306 c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l180 731h-234v70h251l37 150h-288v70h305'], + 0x2A0F: [2000,269,635,56,1035,'499 880l195 790c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-196 -794l252 147l36 -61l-311 -183l-200 -813c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54 c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l195 794l-249 -147l-36 61'], + 0x2A10: [2000,269,635,56,1035,'572 1179l122 491c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-144 -586c56 -24 103 -65 137 -115l-42 -29c-27 40 -64 72 -108 93l-123 -500h12c28 0 55 4 80 12 l17 -49c-30 -10 -63 -15 -97 -15c-8 0 -16 0 -24 1l-127 -516c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l144 584c-116 47 -198 160 -198 292 c0 173 141 314 314 314c11 0 22 0 32 -1zM436 625l124 502c-7 1 -14 1 -20 1c-145 0 -262 -117 -262 -262c0 -108 65 -201 158 -241'], + 0x2A11: [2000,269,635,56,1035,'472 769l222 901c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-241 -978c90 11 165 62 206 140c0 0 2 8 2 10c0 10 -6 15 -16 15c-4 0 -11 -1 -15 -3 c-31 -11 -62 -19 -91 -25l-5 17c70 23 138 49 197 106l9 -5c0 -78 26 -151 61 -218l-15 -9c-17 26 -32 56 -43 86c-3 10 -10 18 -18 18s-14 -4 -19 -13c-48 -95 -156 -172 -266 -173l-165 -672c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76 c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l180 731c-152 39 -234 173 -234 302h52c0 -110 77 -224 194 -254'], + 0x2A12: [2000,269,735,56,1035,'561 1128l133 542c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-138 -562h184v-627h-339l-126 -515c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54 c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l152 614h370v524h-241zM653 866c0 -63 -51 -113 -113 -113c-63 0 -113 50 -113 113c0 62 50 113 113 113c62 0 113 -51 113 -113'], + 0x2A13: [2000,269,635,56,1035,'561 1128l133 542c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-144 -586c111 -48 190 -160 190 -289c0 -173 -141 -314 -314 -314c-8 0 -16 0 -24 1l-127 -516 c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 92 88 124 221l155 635c32 -14 68 -21 105 -21c145 0 262 117 262 262c0 138 -105 252 -241 262zM653 866c0 -63 -51 -113 -113 -113 c-63 0 -113 50 -113 113c0 62 50 113 113 113c62 0 113 -51 113 -113'], + 0x2A14: [2000,269,844,56,1054,'853 866c0 -63 -51 -113 -113 -113c-63 0 -113 50 -113 113c0 62 50 113 113 113c62 0 113 -51 113 -113zM808 1741l-140 -569c23 5 47 8 72 8c173 0 314 -141 314 -314s-141 -314 -314 -314c-78 0 -150 29 -205 76l-146 -591c-45 -181 -122 -306 -261 -306 c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l204 826c23 -121 128 -212 256 -212c145 0 262 117 262 262s-117 262 -262 262c-85 0 -160 -40 -207 -113l161 655c48 195 126 330 268 330 c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221'], + 0x2A15: [2000,269,635,56,1035,'653 866c0 -63 -51 -113 -113 -113c-63 0 -113 50 -113 113c0 62 50 113 113 113c62 0 113 -51 113 -113zM573 1178l121 492c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11 c-65 0 -94 -91 -126 -221l-144 -586c111 -49 190 -160 190 -289c0 -173 -141 -314 -314 -314c-8 0 -16 0 -24 1l-127 -516c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12 c65 0 91 88 124 221l143 585c-115 46 -197 159 -197 291c0 173 141 314 314 314c11 0 22 -1 33 -2zM802 866c0 145 -117 262 -262 262s-262 -117 -262 -262s117 -262 262 -262s262 117 262 262'], + 0x2A16: [2000,269,735,56,1035,'573 1179l121 491c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-138 -562h184v-627h-339l-126 -515c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54 c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l138 562h-192v627h347zM802 604v523h-145l-129 -523h274zM560 1127h-282v-523h153'], + 0x2A17: [2000,269,819,24,1039,'609 931h282c87 0 148 -35 148 -122c0 -79 -62 -124 -148 -124h-64v66h61c48 0 85 15 85 58c0 45 -36 56 -86 56h-294l-204 -828c-45 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12 c65 0 91 88 124 221l215 875h-288c-13 0 -23 -11 -23 -23c0 -8 5 -17 12 -24c30 -30 60 -63 83 -98l-22 -18c-62 76 -144 151 -233 192v10c90 39 171 114 236 190l22 -18c-25 -32 -53 -66 -84 -95c-7 -7 -14 -19 -14 -30c0 -10 10 -20 26 -20h302l182 739 c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221'], + 0x2A18: [2000,269,635,56,1035,'516 948l178 722c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-182 -741l141 141l51 -51l-222 -222l222 -222l-51 -51l-194 194l-184 -752 c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -23 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l184 746l-141 -141l-51 51l222 222l-222 222l51 51'], + 0x2A19: [2000,269,735,56,1035,'625 1392l69 278c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-93 -380c111 -52 198 -157 198 -292v-702h-80v708c0 84 -54 163 -138 208l-306 -1246 c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l326 1323c-20 4 -40 6 -61 6c-164 0 -288 -117 -288 -244v-708h-80v702c0 197 176 330 374 330c24 0 50 -2 74 -7'], + 0x2A1A: [2000,269,735,56,1035,'401 480l293 1190c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-317 -1289c17 -3 35 -5 53 -5c164 0 288 117 288 244v708h80v-702c0 -197 -176 -330 -374 -330 c-22 0 -45 2 -67 6l-82 -336c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221l101 412c-114 51 -205 157 -205 295v702h80v-708c0 -86 57 -167 145 -211'], + 0x2A1B: [2157,269,636,56,1036,'1036 2077h-732v80h732v-80zM280 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54 c0 43 31 76 70 76c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221'], + 0x2A1C: [2000,426,585,56,1035,'280 -10l414 1680c48 195 126 330 268 330c52 0 73 -25 73 -55c0 -42 -32 -75 -71 -75c-19 0 -38 8 -38 30c0 27 21 37 23 51c0 7 -6 11 -15 11c-65 0 -94 -91 -126 -221l-419 -1704c-44 -181 -122 -306 -261 -306c-51 0 -72 25 -72 54c0 43 31 76 70 76 c19 0 38 -8 38 -30c0 -24 -21 -38 -23 -50c0 -8 6 -12 15 -12c65 0 91 88 124 221zM789 -426h-732v80h732v-80'], + 0x2AFC: [867,363,690,133,557,'557 -363h-66v1230h66v-1230zM378 -363h-66v1230h66v-1230zM199 -363h-66v1230h66v-1230'], + 0x2AFF: [867,363,410,100,310,'310 -363h-210v1230h210v-1230zM270 -323v1150h-130v-1150h130'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size1/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size2/Regular/Main.js new file mode 100644 index 0000000..8fe880d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size2/Regular/Main.js @@ -0,0 +1,86 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Size2/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'STIXMathJax_Size2', + id: 'STIXWEBSIZE2', + 0x20: [0,0,250,0,0,''], + 0x28: [1566,279,589,139,503,'503 -243v-36c-213 200 -364 513 -364 922c0 400 151 752 364 923v-33c-134 -138 -269 -432 -269 -890c0 -456 135 -721 269 -886'], + 0x29: [1566,279,608,114,478,'114 1530v36c213 -200 364 -514 364 -923c0 -400 -151 -751 -364 -922v33c134 138 269 435 269 889c0 460 -135 722 -269 887'], + 0x2F: [1566,279,806,25,781,'781 1566l-676 -1845h-80l676 1845h80'], + 0x5B: [1566,279,459,190,422,'422 -279h-232v1845h232v-40h-156v-1765h156v-40'], + 0x5C: [1566,279,806,25,781,'781 -279h-80l-676 1845h80'], + 0x5D: [1566,279,459,37,269,'269 -279h-232v40h156v1765h-156v40h232v-1845'], + 0x7B: [1566,279,717,124,531,'531 -239v-40c-152 23 -254 147 -254 415v248c0 90 -47 224 -153 243v32c106 20 153 154 153 244v248c0 268 106 402 254 415v-40c-83 -4 -164 -120 -164 -219c0 -30 5 -193 5 -204v-130c0 -148 -56 -267 -188 -330c132 -64 188 -181 188 -329v-131 c0 -11 -5 -173 -5 -203c0 -100 46 -181 164 -219'], + 0x7D: [1566,279,717,186,593,'593 660v-32c-106 -20 -153 -154 -153 -244v-248c0 -268 -106 -402 -254 -415v40c83 4 164 120 164 219c0 30 -5 193 -5 204v130c0 148 56 266 188 329c-132 64 -188 182 -188 330v131c0 11 5 173 5 203c0 100 -46 181 -164 219v40c152 -23 254 -147 254 -415v-248 c0 -90 47 -224 153 -243'], + 0xA0: [0,0,250,0,0,''], + 0x2C6: [777,-564,979,0,979,'979 564h-99l-390 145l-391 -145h-99l466 213h48'], + 0x2C7: [777,-564,979,0,979,'979 777l-465 -213h-48l-466 213h99l391 -145l390 145h99'], + 0x2DC: [760,-608,977,-2,977,'951 760h26c-19 -106 -96 -152 -227 -152c-129 0 -148 16 -351 60c-94 20 -162 31 -201 31c-94 0 -155 -31 -174 -91h-26c20 112 99 152 215 152c62 0 182 -21 356 -61c94 -22 164 -32 206 -32c99 0 161 32 176 93'], + 0x2F7: [-117,269,977,-2,977,'951 -117h26c-19 -106 -96 -152 -227 -152c-129 0 -148 16 -351 60c-94 20 -162 31 -201 31c-94 0 -155 -31 -174 -91h-26c20 112 99 152 215 152c62 0 182 -21 356 -61c94 -22 164 -32 206 -32c99 0 161 32 176 93'], + 0x302: [777,-564,979,0,979,'979 564h-99l-390 145l-391 -145h-99l466 213h48'], + 0x303: [760,-608,979,0,979,'953 760h26c-19 -106 -96 -152 -227 -152c-129 0 -148 16 -351 60c-94 20 -162 31 -201 31c-94 0 -155 -31 -174 -91h-26c20 112 99 152 215 152c62 0 182 -21 356 -61c94 -22 164 -32 206 -32c99 0 161 32 176 93'], + 0x305: [820,-770,1500,0,1500,'1500 770h-1500v50h1500v-50'], + 0x30C: [777,-564,979,0,979,'979 777l-465 -213h-48l-466 213h99l391 -145l390 145h99'], + 0x330: [-117,269,979,0,979,'953 -117h26c-19 -106 -96 -152 -227 -152c-129 0 -148 16 -351 60c-94 20 -162 31 -201 31c-94 0 -155 -31 -174 -91h-26c20 112 99 152 215 152c62 0 182 -21 356 -61c94 -22 164 -32 206 -32c99 0 161 32 176 93'], + 0x332: [-127,177,1500,0,1500,'1500 -177h-1500v50h1500v-50'], + 0x338: [662,0,0,-720,-6,'-6 662l-645 -662h-69l645 662h69'], + 0x203E: [820,-770,1500,0,1500,'1500 770h-1500v50h1500v-50'], + 0x20D0: [749,-584,1307,0,1308,'1308 584h-1308v5c96 46 142 85 202 160l20 -19c-23 -33 -16 -27 -46 -58c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h1120v-50'], + 0x20D1: [749,-584,1308,0,1308,'1308 584h-1308v50h1120c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -23 25 -46 58l20 19c60 -75 106 -114 202 -160v-5'], + 0x20D6: [735,-482,1308,0,1308,'1308 584h-1137c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 106 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h1136v-50'], + 0x20D7: [735,-482,1308,0,1308,'1308 614v-10c-91 -38 -106 -55 -168 -122l-20 16c21 30 22 32 29 41s14 17 14 25c0 10 -8 20 -26 20h-1137v50h1136c10 0 27 6 27 22c0 9 -3 14 -12 23c-11 12 -9 12 -31 40l20 16c62 -69 77 -84 168 -121'], + 0x20EC: [-123,288,1308,0,1308,'1308 -123v-5c-96 -46 -142 -85 -202 -160l-20 19c23 33 16 27 46 58c9 9 14 16 14 24c0 10 -8 14 -26 14h-1120v50h1308'], + 0x20ED: [-123,288,1308,0,1308,'1308 -173h-1120c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 23 -25 46 -58l-20 -19c-60 75 -106 114 -202 160v5h1308v-50'], + 0x20EE: [-26,279,1308,0,1308,'1308 -177h-1137c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 106 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h1136v-50'], + 0x20EF: [-26,279,1308,0,1308,'1308 -147v-10c-91 -38 -106 -55 -168 -122l-20 16c21 30 22 32 29 41s14 17 14 25c0 10 -8 20 -26 20h-1137v50h1136c10 0 27 6 27 22c0 9 -3 14 -12 23c-11 12 -9 12 -31 40l20 16c62 -69 77 -84 168 -121'], + 0x221A: [2056,404,1124,110,1157,'1157 2056l-590 -2460h-59l-250 1032c-11 46 -26 82 -64 82c-17 0 -46 -10 -69 -28l-15 27l183 127h28l239 -989h7l529 2209h61'], + 0x221B: [2056,404,1124,110,1157,'344 1171l-13 2c16 52 50 88 106 88c51 0 84 -29 84 -74c0 -26 -17 -58 -47 -77c48 -18 76 -42 76 -95c0 -84 -80 -127 -161 -127c-39 0 -60 19 -60 38c0 11 10 19 23 19c8 0 17 -3 32 -14c20 -14 31 -17 46 -17c40 0 71 30 71 77c0 41 -20 66 -57 78c-11 4 -23 5 -55 5 v12c21 7 35 13 46 19c27 15 44 36 44 68c0 37 -23 55 -58 55c-34 0 -54 -17 -77 -57zM1157 2056l-590 -2460h-59l-250 1032c-11 46 -26 82 -64 82c-17 0 -46 -10 -69 -28l-15 27l183 127h28l239 -989h7l529 2209h61'], + 0x221C: [2056,404,1124,110,1157,'563 982h-56v-90h-50v90h-152v43l170 233h32v-233h56v-43zM457 1025v175l-128 -175h128zM1157 2056l-590 -2460h-59l-250 1032c-11 46 -26 82 -64 82c-17 0 -46 -10 -69 -28l-15 27l183 127h28l239 -989h7l529 2209h61'], + 0x2308: [1566,279,524,190,479,'479 1526h-213v-1805h-76v1845h289v-40'], + 0x2309: [1566,279,526,47,336,'336 -279h-76v1805h-213v40h289v-1845'], + 0x230A: [1566,279,524,190,479,'479 -279h-289v1845h76v-1805h213v-40'], + 0x230B: [1566,279,526,47,336,'336 -279h-289v40h213v1805h76v-1845'], + 0x23B4: [766,-544,1606,74,1532,'1532 544h-66v156h-1326v-156h-66v222h1458v-222'], + 0x23B5: [139,83,1606,74,1532,'1532 -83h-1458v222h66v-156h1326v156h66v-222'], + 0x23D0: [690,189,266,100,166,'166 -189h-66v879h66v-879'], + 0x23DC: [66,147,1460,0,1460,'1460 -147h-36c-130 79 -333 147 -695 147c-363 0 -563 -68 -693 -147h-36c159 124 407 213 729 213c319 0 572 -89 731 -213'], + 0x23DD: [785,-572,1460,0,1460,'1424 785h36c-159 -124 -412 -213 -731 -213c-322 0 -570 89 -729 213h36c130 -79 330 -147 693 -147c362 0 565 68 695 147'], + 0x23DE: [143,81,1460,0,1460,'1460 -81h-33c-17 54 -93 84 -173 84c-23 0 -150 -3 -160 -3h-105c-117 0 -208 41 -258 110h-2c-50 -69 -140 -110 -257 -110h-105c-10 0 -82 3 -162 3c-79 0 -142 -22 -172 -84h-33c19 81 117 147 329 147h200c69 0 172 21 189 77h25c16 -56 120 -77 190 -77h199 c212 0 309 -66 328 -147'], + 0x23DF: [797,-573,1460,0,1460,'1427 797h33c-19 -81 -116 -147 -328 -147h-199c-70 0 -174 -21 -190 -77h-25c-17 56 -120 77 -189 77h-200c-212 0 -310 66 -329 147h33c30 -62 93 -84 172 -84c80 0 152 3 162 3h105c117 0 207 -41 257 -110h2c50 69 141 110 258 110h105c10 0 137 -3 160 -3 c80 0 156 30 173 84'], + 0x23E0: [66,212,1886,0,1886,'1886 -212l-240 212h-1406l-240 -211v52l217 225h1452l217 -226v-52'], + 0x23E1: [842,-564,1886,0,1886,'1886 789l-217 -225h-1452l-217 226v52l240 -212h1406l240 211v-52'], + 0x2772: [1566,279,688,230,651,'651 -279h-71l-350 329v1187l350 329h71l-336 -361v-1123'], + 0x2773: [1566,279,688,37,458,'458 50l-350 -329h-71l336 361v1123l-336 361h71l350 -329v-1187'], + 0x27E6: [1566,279,555,190,517,'517 -279h-327v1845h327v-40h-77v-1765h77v-40zM384 -239v1765c-71 0 -118 -17 -118 -99v-1556c0 -74 42 -110 118 -110'], + 0x27E7: [1566,279,555,38,365,'365 -279h-327v40h77v1765h-77v40h327v-1845zM289 -140v1556c0 74 -42 110 -118 110v-1765c71 0 118 17 118 99'], + 0x27E8: [1566,279,622,95,531,'531 -279h-90l-346 922l346 923h90l-341 -923'], + 0x27E9: [1566,279,622,91,527,'527 643l-346 -922h-90l341 922l-341 923h90'], + 0x27EA: [1566,279,901,93,793,'793 -279h-71l-350 922l350 923h71l-336 -923zM514 -279h-71l-350 922l350 923h71l-336 -923'], + 0x27EB: [1566,279,901,108,808,'808 644l-350 -923h-71l336 923l-336 922h71zM529 644l-350 -923h-71l336 923l-336 922h71'], + 0x2983: [1566,279,827,122,692,'692 -279h-173c-153 0 -244 147 -244 415v248c0 90 -47 224 -153 243v32c106 20 153 154 153 244v248c0 268 91 415 244 415h173v-33h-116v-1779h116v-33zM516 -246v1779h-7c-83 0 -144 -127 -144 -226c0 -30 5 -193 5 -204v-130c0 -148 -56 -267 -188 -330 c132 -64 188 -181 188 -329v-131c0 -11 -5 -173 -5 -203c0 -100 61 -226 144 -226h7'], + 0x2984: [1565,280,827,135,705,'705 659v-32c-106 -20 -153 -154 -153 -244v-248c0 -268 -91 -415 -244 -415h-173v33h116v1779h-116v33h173c153 0 244 -147 244 -415v-248c0 -90 47 -224 153 -243zM457 183v130c0 148 56 267 188 330c-132 64 -188 181 -188 329v131c0 11 5 173 5 203 c0 100 -61 226 -144 226h-7v-1779h7c83 0 144 127 144 226c0 30 -5 193 -5 204'], + 0x2985: [1566,282,793,155,693,'693 -238v-44c-300 161 -538 436 -538 922c0 478 238 765 538 926v-44c-30 -18 -57 -40 -84 -64c-85 -98 -148 -328 -148 -818c0 -497 59 -718 147 -815c27 -21 58 -47 85 -63zM516 -96c-89 143 -115 355 -115 736c0 378 26 592 115 737c-139 -140 -266 -361 -266 -735 c0 -380 127 -599 266 -738'], + 0x2986: [1566,282,793,100,638,'100 1522v44c300 -161 538 -436 538 -922c0 -478 -238 -765 -538 -926v44c30 18 57 40 84 64c85 98 148 328 148 818c0 497 -59 718 -147 815c-27 21 -58 47 -85 63zM543 642c0 380 -127 599 -266 738c89 -143 115 -355 115 -736c0 -378 -26 -592 -115 -737 c139 140 266 361 266 735'], + 0x2AFC: [1586,289,906,133,773,'773 -289h-100v1875h100v-1875zM503 -289h-100v1875h100v-1875zM233 -289h-100v1875h100v-1875'], + 0x2AFF: [1586,289,636,133,503,'503 -289h-370v1875h370v-1875zM403 -189v1675h-170v-1675h170'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size2/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size3/Regular/Main.js new file mode 100644 index 0000000..9e03f39 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size3/Regular/Main.js @@ -0,0 +1,83 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Size3/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'STIXMathJax_Size3', + id: 'STIXWEBSIZE3', + 0x20: [0,0,250,0,0,''], + 0x28: [2066,394,750,182,667,'667 -346v-48c-284 267 -485 689 -485 1230c0 538 201 1002 485 1230v-44c-178 -184 -375 -580 -375 -1186c0 -613 197 -962 375 -1182'], + 0x29: [2066,394,750,83,568,'83 2018v48c284 -267 485 -685 485 -1230c0 -534 -201 -1002 -485 -1230v44c178 184 375 580 375 1186c0 614 -197 965 -375 1182'], + 0x2F: [2066,394,1101,30,1071,'1071 2066l-938 -2460h-103l938 2460h103'], + 0x5B: [2066,394,508,225,491,'491 2022h-171v-2372h170v-44h-265v2460h266v-44'], + 0x5C: [2066,394,1101,30,1071,'1071 -394h-102l-939 2460h103'], + 0x5D: [2066,394,508,17,283,'283 -394h-266v44h171v2372h-171v44h266v-2460'], + 0x7B: [2066,394,906,143,717,'717 -350v-44c-216 30 -358 196 -358 551v337c0 119 -69 294 -216 319v44c147 25 216 200 216 319v347c0 354 142 512 358 543v-44c-177 -57 -255 -185 -255 -346c0 -78 12 -187 12 -244v-163c0 -197 -61 -349 -248 -432v-2c187 -84 248 -238 248 -434v-157 c0 -64 -12 -136 -12 -208c0 -166 66 -322 255 -386'], + 0x7D: [2066,394,906,189,763,'763 858v-44c-147 -25 -216 -200 -216 -319v-354c0 -379 -142 -504 -358 -535v44c173 55 255 188 255 343c0 75 -12 179 -12 232v177c0 196 61 349 248 432v2c-187 84 -248 238 -248 434v158c0 57 12 135 12 207c0 168 -65 323 -255 387v44c216 -30 358 -196 358 -551 v-338c0 -119 69 -294 216 -319'], + 0xA0: [0,0,250,0,0,''], + 0x2C6: [777,-564,1460,0,1460,'1460 564h-153l-577 145l-577 -145h-153l706 213h48'], + 0x2C7: [777,-564,1460,0,1460,'1460 777l-706 -213h-48l-706 213h153l577 -145l577 145h153'], + 0x2DC: [774,-608,1458,-2,1458,'1432 774h26c-26 -117 -122 -166 -310 -166c-185 0 -255 18 -547 66c-134 22 -243 33 -299 33c-135 0 -250 -33 -278 -99h-26c32 121 159 166 326 166c90 0 273 -24 524 -67c134 -23 276 -35 336 -35c142 0 227 35 248 102'], + 0x2F7: [-117,283,1458,-2,1458,'1432 -117h26c-26 -117 -122 -166 -310 -166c-185 0 -255 18 -547 66c-134 22 -243 33 -299 33c-135 0 -250 -33 -278 -99h-26c32 121 159 166 326 166c90 0 273 -24 524 -67c134 -23 276 -35 336 -35c142 0 227 35 248 102'], + 0x302: [777,-564,1460,0,1460,'1460 564h-153l-577 145l-577 -145h-153l706 213h48'], + 0x303: [774,-608,1460,0,1460,'1434 774h26c-26 -117 -122 -166 -310 -166c-185 0 -255 18 -547 66c-134 22 -243 33 -299 33c-135 0 -250 -33 -278 -99h-26c32 121 159 166 326 166c90 0 273 -24 524 -67c134 -23 276 -35 336 -35c142 0 227 35 248 102'], + 0x305: [820,-770,2000,0,2000,'2000 770h-2000v50h2000v-50'], + 0x30C: [777,-564,1460,0,1460,'1460 777l-706 -213h-48l-706 213h153l577 -145l577 145h153'], + 0x330: [-117,283,1460,0,1460,'1434 -117h26c-26 -117 -122 -166 -310 -166c-185 0 -255 18 -547 66c-134 22 -243 33 -299 33c-135 0 -250 -33 -278 -99h-26c32 121 159 166 326 166c90 0 273 -24 524 -67c134 -23 276 -35 336 -35c142 0 227 35 248 102'], + 0x332: [-127,177,2000,0,2000,'2000 -177h-2000v50h2000v-50'], + 0x338: [662,156,0,-543,-132,'-132 662l-357 -818h-54l357 818h54'], + 0x203E: [820,-770,2000,0,2000,'2000 770h-2000v50h2000v-50'], + 0x20D0: [749,-584,1744,0,1744,'1744 584h-1744v5c96 46 142 85 202 160l20 -19c-23 -33 -16 -27 -46 -58c-9 -9 -14 -16 -14 -24c0 -9 6 -14 20 -14h1562v-50'], + 0x20D1: [749,-584,1744,0,1744,'1744 584h-1744v50h1552c14 0 20 5 20 14c0 8 -5 15 -14 24c-30 31 -23 25 -46 58l20 19c60 -75 116 -114 212 -160v-5'], + 0x20D6: [735,-482,1744,0,1744,'1744 584h-1573c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 106 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h1572v-50'], + 0x20D7: [735,-482,1744,0,1744,'1744 614v-10c-91 -38 -106 -55 -168 -122l-20 16c21 30 22 32 29 41s14 17 14 25c0 10 -8 20 -26 20h-1573v50h1572c10 0 27 6 27 22c0 9 -3 14 -12 23c-11 12 -9 12 -31 40l20 16c62 -69 77 -84 168 -121'], + 0x20EC: [-123,288,1744,0,1744,'1744 -123v-5c-96 -46 -142 -85 -202 -160l-20 19c23 33 16 27 46 58c9 9 14 16 14 24c0 9 -6 14 -20 14h-1562v50h1744'], + 0x20ED: [-123,288,1744,0,1744,'1744 -173h-1562c-14 0 -20 -5 -20 -14c0 -8 5 -15 14 -24c30 -31 23 -25 46 -58l-20 -19c-60 75 -106 114 -202 160v5h1744v-50'], + 0x20EE: [-26,279,1744,0,1744,'1744 -177h-1573c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 106 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h1572v-50'], + 0x20EF: [-26,279,1744,0,1744,'1744 -147v-10c-91 -38 -106 -55 -168 -122l-20 16c21 30 22 32 29 41s14 17 14 25c0 10 -8 20 -26 20h-1573v50h1572c10 0 27 6 27 22c0 9 -3 14 -12 23c-11 12 -9 12 -31 40l20 16c62 -69 77 -84 168 -121'], + 0x221A: [2565,510,1076,112,1110,'1110 2565l-542 -3075h-57l-225 1264c-14 77 -29 125 -71 125c-41 0 -66 -17 -85 -33l-18 34l220 139h39l199 -1118h4l469 2664h67'], + 0x221B: [2565,510,1076,112,1110,'374 1375l-14 3c17 55 53 94 114 94c54 0 90 -32 90 -79c0 -28 -18 -63 -51 -84c52 -18 82 -45 82 -102c0 -89 -85 -136 -172 -136c-42 0 -65 20 -65 41c0 12 10 21 24 21c9 0 19 -4 35 -15c22 -15 33 -19 50 -19c43 0 75 33 75 83c0 44 -21 70 -60 83c-13 5 -26 6 -59 6 v13c22 8 37 15 48 21c29 17 48 38 48 73c0 39 -24 59 -63 59c-36 0 -58 -19 -82 -62zM1110 2565l-542 -3075h-57l-225 1264c-14 77 -29 125 -71 125c-41 0 -66 -17 -85 -33l-18 34l220 139h39l199 -1118h4l469 2664h67'], + 0x221C: [2565,510,1076,112,1110,'618 1171h-59v-96h-55v96h-162v47l182 249h35v-249h59v-47zM504 1218v188l-137 -188h137zM1110 2565l-542 -3075h-57l-225 1264c-14 77 -29 125 -71 125c-41 0 -66 -17 -85 -33l-18 34l220 139h39l199 -1118h4l469 2664h67'], + 0x2308: [2066,394,565,225,550,'550 2022h-230v-2416h-95v2460h325v-44'], + 0x2309: [2066,394,565,15,340,'340 -394h-95v2416h-230v44h325v-2460'], + 0x230A: [2066,394,565,225,550,'550 -394h-325v2460h95v-2416h230v-44'], + 0x230B: [2066,394,565,15,340,'340 -394h-325v44h230v2416h95v-2460'], + 0x23B4: [766,-544,2147,78,2069,'2069 544h-66v156h-1859v-156h-66v222h1991v-222'], + 0x23B5: [139,83,2147,78,2069,'2069 -83h-1991v222h66v-156h1859v156h66v-222'], + 0x23DC: [70,161,1886,0,1886,'1886 -161h-48c-167 83 -428 161 -897 161s-727 -78 -894 -161h-47c205 130 526 231 941 231c413 0 740 -101 945 -231'], + 0x23DD: [803,-572,1886,0,1886,'1838 803h48c-205 -130 -532 -231 -945 -231c-415 0 -736 101 -941 231h47c167 -83 425 -161 894 -161s730 78 897 161'], + 0x23DE: [157,86,1886,0,1886,'1886 -86h-43c-22 61 -121 88 -223 88c-30 0 -194 -2 -207 -2h-136c-150 0 -268 42 -333 120h-2c-65 -78 -181 -120 -332 -120h-136c-13 0 -105 2 -209 2c-101 0 -184 -18 -222 -88h-43c25 91 151 156 426 156h257c89 0 222 24 244 87h33c21 -63 156 -87 245 -87h257 c274 0 399 -65 424 -156'], + 0x23DF: [815,-572,1886,0,1886,'1843 815h43c-25 -91 -150 -156 -424 -156h-257c-89 0 -224 -24 -245 -87h-33c-22 63 -155 87 -244 87h-257c-275 0 -401 65 -426 156h43c38 -70 121 -88 222 -88c104 0 196 2 209 2h136c151 0 267 -42 332 -120h2c65 78 183 120 333 120h136c13 0 177 -2 207 -2 c102 0 201 27 223 88'], + 0x23E0: [66,212,2312,0,2312,'2312 -212l-240 212h-1832l-240 -211v52l217 225h1878l217 -226v-52'], + 0x23E1: [842,-564,2312,0,2312,'2312 790l-217 -226h-1878l-217 225v52l240 -211h1832l240 212v-52'], + 0x2772: [2066,393,842,265,790,'790 -393h-84l-441 434v1590l441 435h84l-430 -468v-1524'], + 0x2773: [2066,393,842,52,577,'577 41l-441 -434h-84l430 467v1524l-430 468h84l441 -435v-1590'], + 0x27E6: [2066,394,647,225,597,'597 2022h-98v-2372h97v-44h-371v2460h372v-44zM437 -350v2372c-87 -2 -122 -25 -122 -127v-2093c0 -113 27 -149 122 -152'], + 0x27E7: [2066,394,647,50,422,'422 -394h-372v44h98v2372h-97v44h371v-2460zM332 -223v2093c0 113 -27 149 -122 152v-2372c87 2 122 25 122 127'], + 0x27E8: [2066,394,765,96,670,'670 -394h-103l-471 1230l471 1230h103l-471 -1230'], + 0x27E9: [2066,394,765,95,669,'669 836l-471 -1230h-103l471 1230l-471 1230h103'], + 0x27EA: [2067,394,1091,104,955,'955 -393h-84l-441 1230l441 1230h84l-425 -1230zM629 -394h-84l-441 1230l441 1230h84l-425 -1230'], + 0x27EB: [2067,394,1091,136,987,'987 837l-441 -1230h-84l425 1230l-425 1230h84zM661 836l-441 -1230h-84l425 1230l-425 1230h84'], + 0x2983: [2066,394,1031,143,867,'867 -394h-190c-216 0 -318 196 -318 551v337c0 119 -69 294 -216 319v44c147 25 216 200 216 319v347c0 354 102 543 318 543h190v-44h-151v-2372h151v-44zM650 -348v2369c-154 -16 -188 -192 -188 -345c0 -78 12 -187 12 -244v-163c0 -197 -61 -349 -248 -432v-2 c187 -84 248 -238 248 -434v-157c0 -64 -12 -136 -12 -208c0 -157 23 -366 188 -384'], + 0x2984: [2066,394,1031,164,888,'888 859v-44c-147 -25 -216 -200 -216 -319v-347c0 -354 -102 -543 -318 -543h-190v44h151v2372h-151v44h190c216 0 318 -196 318 -551v-337c0 -119 69 -294 216 -319zM805 835v2c-187 84 -248 238 -248 434v157c0 64 12 136 12 208c0 157 -24 386 -188 386v-2372 c154 0 188 193 188 346c0 78 -12 187 -12 244v163c0 197 61 349 248 432'], + 0x2985: [2066,393,1029,180,914,'914 -341v-52c-435 214 -734 580 -734 1227c0 635 299 1018 734 1232v-52c-43 -24 -82 -53 -121 -85c-124 -130 -210 -444 -210 -1095c0 -661 81 -963 207 -1091c39 -28 85 -63 124 -84zM658 -146c-129 191 -141 473 -141 980c0 503 12 787 141 981 c-201 -187 -363 -481 -363 -979c0 -505 162 -797 363 -982'], + 0x2986: [2066,393,1029,115,849,'115 2014v52c435 -214 734 -580 734 -1227c0 -635 -299 -1018 -734 -1232v52c43 24 82 53 121 85c124 130 210 444 210 1095c0 661 -81 963 -207 1091c-39 28 -85 63 -124 84zM734 837c0 505 -162 797 -363 982c129 -191 141 -473 141 -980c0 -503 -12 -787 -141 -981 c201 187 363 481 363 979'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size3/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size4/Regular/Main.js new file mode 100644 index 0000000..7e45e10 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size4/Regular/Main.js @@ -0,0 +1,80 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Size4/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'STIXMathJax_Size4', + id: 'STIXWEBSIZE4', + 0x20: [0,0,250,0,0,''], + 0x28: [2566,509,808,124,732,'732 -453v-56c-355 286 -608 863 -608 1538c0 673 253 1251 608 1537v-56c-224 -231 -478 -704 -478 -1481c0 -746 254 -1250 478 -1482'], + 0x29: [2566,509,808,76,684,'76 2510v56c355 -286 608 -856 608 -1537c0 -667 -253 -1252 -608 -1538v56c224 231 478 726 478 1483c0 766 -254 1248 -478 1480'], + 0x2F: [2566,509,1309,16,1293,'1293 2566l-1173 -3075h-104l1173 3075h104'], + 0x5B: [2566,509,661,295,634,'634 -509h-339v3075h339v-56h-244v-2963h244v-56'], + 0x5C: [2566,509,1309,16,1293,'1293 -509h-104l-1173 3075h104'], + 0x5D: [2566,509,661,27,366,'366 -509h-339v56h244v2963h-244v56h339v-3075'], + 0x7B: [2566,509,1076,173,882,'882 -453v-56c-267 39 -441 247 -441 691v419c0 148 -85 369 -268 402v54c183 33 268 252 268 400v418c0 444 174 652 441 691v-56c-229 -52 -315 -269 -315 -452c0 -105 4 -166 4 -261v-223c0 -245 -63 -438 -293 -544c230 -106 293 -301 293 -546v-185 c0 -75 -5 -165 -5 -253c0 -216 78 -446 316 -499'], + 0x7D: [2566,509,1076,194,903,'903 1056v-54c-183 -33 -268 -253 -268 -401v-419c0 -467 -174 -652 -441 -691v56c229 52 315 269 315 452c0 105 -4 166 -4 261v224c0 245 63 439 293 545c-230 106 -293 297 -293 545v212c0 75 5 133 5 225c0 218 -78 446 -316 499v56c267 -39 441 -247 441 -691v-418 c0 -148 85 -368 268 -401'], + 0xA0: [0,0,250,0,0,''], + 0x2C6: [796,-573,1886,0,1886,'1886 599l-5 -26l-939 161l-937 -161l-5 26l943 197'], + 0x2C7: [796,-573,1886,0,1886,'1886 770l-943 -197l-943 197l5 26l937 -161l939 161'], + 0x2DC: [771,-608,1886,0,1886,'1857 771h29c-29 -115 -201 -163 -401 -163c-199 0 -378 16 -689 63c-144 22 -314 34 -374 34c-144 0 -360 -32 -393 -97h-29c35 119 257 163 436 163c97 0 377 -23 645 -64c143 -22 368 -33 432 -33c153 0 317 31 344 97'], + 0x2F7: [-117,280,1886,0,1886,'1857 -117h29c-29 -115 -201 -163 -401 -163c-199 0 -378 16 -689 63c-144 22 -314 34 -374 34c-144 0 -360 -32 -393 -97h-29c35 119 257 163 436 163c97 0 377 -23 645 -64c143 -22 368 -33 432 -33c153 0 317 31 344 97'], + 0x302: [796,-573,1886,0,1886,'1886 599l-5 -26l-939 161l-937 -161l-5 26l943 197'], + 0x303: [771,-608,1886,0,1886,'1857 771h29c-29 -115 -201 -163 -401 -163c-199 0 -378 16 -689 63c-144 22 -314 34 -374 34c-144 0 -360 -32 -393 -97h-29c35 119 257 163 436 163c97 0 377 -23 645 -64c143 -22 368 -33 432 -33c153 0 317 31 344 97'], + 0x305: [820,-770,2500,0,2500,'2500 770h-2500v50h2500v-50'], + 0x30C: [796,-573,1886,0,1886,'1886 770l-943 -197l-943 197l5 26l937 -161l939 161'], + 0x330: [-117,280,1886,0,1886,'1857 -117h29c-29 -115 -201 -163 -401 -163c-199 0 -378 16 -689 63c-144 22 -314 34 -374 34c-144 0 -360 -32 -393 -97h-29c35 119 257 163 436 163c97 0 377 -23 645 -64c143 -22 368 -33 432 -33c153 0 317 31 344 97'], + 0x332: [-127,177,2500,0,2500,'2500 -177h-2500v50h2500v-50'], + 0x338: [731,228,0,-490,-169,'-169 731l-267 -959h-54l267 959h54'], + 0x203E: [820,-770,2500,0,2500,'2500 770h-2500v50h2500v-50'], + 0x20D0: [749,-584,2180,0,2180,'2180 584h-2180v5c96 46 152 85 212 160l20 -19c-23 -33 -16 -27 -46 -58c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h1982v-50'], + 0x20D1: [749,-584,2180,0,2180,'2180 584h-2180v50h1982c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -23 25 -46 58l20 19c60 -75 116 -114 212 -160v-5'], + 0x20D6: [735,-482,2180,0,2180,'2180 584h-2009c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 107 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h2008v-50'], + 0x20D7: [735,-482,2180,0,2180,'2180 614v-10c-91 -38 -106 -55 -168 -122l-20 16c21 30 22 32 29 41s14 17 14 25c0 10 -8 20 -26 20h-2009v50h2008c10 0 27 6 27 22c0 9 -3 14 -12 23c-11 12 -9 12 -31 40l20 16c61 -69 77 -84 168 -121'], + 0x20EC: [-123,288,2180,0,2180,'2180 -123v-5c-96 -46 -152 -85 -212 -160l-20 19c23 33 16 27 46 58c9 9 14 16 14 24c0 10 -8 14 -26 14h-1982v50h2180'], + 0x20ED: [-123,288,2180,0,2180,'2180 -173h-1982c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 23 -25 46 -58l-20 -19c-60 75 -116 114 -212 160v5h2180v-50'], + 0x20EE: [-26,279,2180,0,2180,'2180 -177h-2009c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 107 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h2008v-50'], + 0x20EF: [-26,279,2180,0,2180,'2180 -147v-10c-91 -38 -106 -55 -168 -122l-20 16c21 30 22 32 29 41s14 17 14 25c0 10 -8 20 -26 20h-2009v50h2008c10 0 27 6 27 22c0 9 -3 14 -12 23c-11 12 -9 12 -31 40l20 16c61 -69 77 -84 168 -121'], + 0x2308: [2566,509,682,295,655,'655 2510h-265v-3019h-95v3075h360v-56'], + 0x2309: [2566,509,682,27,387,'387 -509h-95v3019h-265v56h360v-3075'], + 0x230A: [2566,509,682,295,655,'655 -509h-360v3075h95v-3019h265v-56'], + 0x230B: [2566,509,682,27,387,'387 -509h-360v56h265v3019h95v-3075'], + 0x23B4: [766,-544,2692,84,2608,'2608 544h-66v156h-2392v-156h-66v222h2524v-222'], + 0x23B5: [139,83,2692,84,2608,'2608 -83h-2524v222h66v-156h2392v156h66v-222'], + 0x23DC: [76,168,2328,0,2328,'2328 -168h-59c-206 90 -528 168 -1107 168s-898 -78 -1104 -168h-58c253 141 649 244 1162 244c509 0 913 -103 1166 -244'], + 0x23DD: [817,-573,2328,0,2328,'2269 817h59c-253 -141 -657 -244 -1166 -244c-513 0 -909 103 -1162 244h58c206 -90 525 -168 1104 -168s901 78 1107 168'], + 0x23DE: [175,90,2328,0,2328,'2328 -90h-53c-27 68 -148 93 -276 93c-36 0 -239 -3 -254 -3h-167c-187 0 -332 44 -412 133h-4c-80 -89 -223 -133 -410 -133h-168c-15 0 -129 3 -256 3s-228 -13 -275 -93h-53c31 104 186 166 526 166h316c111 0 275 27 302 99h41c26 -72 192 -99 303 -99h317 c338 0 493 -62 523 -166'], + 0x23DF: [837,-572,2328,0,2328,'2275 837h53c-30 -104 -185 -166 -523 -166h-317c-111 0 -277 -27 -303 -99h-41c-27 72 -191 99 -302 99h-316c-340 0 -495 62 -526 166h53c47 -80 148 -93 275 -93s241 3 256 3h168c187 0 330 -44 410 -133h4c80 89 225 133 412 133h167c15 0 218 -3 254 -3 c128 0 249 25 276 93'], + 0x23E0: [66,212,2738,0,2738,'2738 -212l-240 212h-2258l-240 -211v52l217 225h2304l217 -226v-52'], + 0x23E1: [842,-564,2738,0,2738,'2738 790l-217 -226h-2304l-217 225v52l240 -211h2258l240 212v-52'], + 0x2772: [2566,509,1031,320,959,'959 -509h-92l-547 559v1957l547 559h92l-544 -598v-1879'], + 0x2773: [2566,509,1031,72,711,'711 50l-547 -559h-92l544 598v1879l-544 598h92l547 -559v-1957'], + 0x27E6: [2566,509,778,295,708,'708 -509h-413v3075h413v-56h-128v-2963h128v-56zM514 -453v2963c-100 -3 -124 -30 -124 -155v-2669c0 -113 41 -139 124 -139'], + 0x27E7: [2566,509,778,70,483,'483 -509h-413v56h128v2963h-128v56h413v-3075zM388 -298v2669c0 113 -41 139 -124 139v-2963c100 3 124 30 124 155'], + 0x27E8: [2566,509,908,113,796,'796 -509h-101l-582 1539l582 1536h101l-580 -1536'], + 0x27E9: [2566,509,908,112,795,'795 1030l-582 -1539h-101l580 1539l-580 1536h101'], + 0x27EA: [2566,509,1273,126,1133,'1133 -509h-92l-550 1539l550 1536h92l-532 -1536zM768 -509h-92l-550 1539l550 1536h92l-532 -1536'], + 0x27EB: [2566,509,1273,140,1147,'1147 1027l-550 -1536h-92l532 1536l-532 1539h92zM782 1027l-550 -1536h-92l532 1536l-532 1539h92'], + 0x2983: [2566,509,1225,182,1052,'1052 -509h-221c-267 0 -381 247 -381 691v419c0 148 -85 369 -268 402v54c183 33 268 252 268 400v418c0 444 114 691 381 691h220v-56h-156v-2963h157v-56zM819 -453v2963c-218 -9 -243 -272 -243 -452c0 -105 4 -166 4 -261v-223c0 -245 -63 -438 -293 -544 c230 -106 293 -301 293 -546v-185c0 -75 -5 -165 -5 -253c0 -212 17 -490 244 -499'], + 0x2984: [2566,509,1225,173,1043,'1043 1054v-54c-183 -33 -268 -252 -268 -400v-418c0 -444 -114 -691 -381 -691h-220v56h156v2963h-157v56h221c267 0 381 -247 381 -691v-419c0 -148 85 -369 268 -402zM645 260v223c0 245 63 438 293 544c-230 106 -293 301 -293 546v185c0 75 5 165 5 253 c0 212 -17 490 -244 499v-2963c218 9 243 272 243 452c0 105 -4 166 -4 261'], + 0x2985: [2566,509,1175,195,1050,'1050 -440v-69c-487 267 -855 726 -855 1535c0 794 368 1273 855 1540v-68c-48 -29 -90 -65 -135 -106c-140 -163 -234 -554 -234 -1366c0 -827 89 -1202 232 -1361c43 -38 93 -79 137 -105zM763 -199c-144 238 -158 590 -158 1225c0 630 14 983 158 1225 c-224 -233 -438 -600 -438 -1222c0 -633 214 -997 438 -1228'], + 0x2986: [2566,509,1175,194,1049,'194 2497v69c487 -267 855 -726 855 -1535c0 -794 -368 -1273 -855 -1540v68c48 29 90 65 135 106c140 163 234 554 234 1366c0 827 -89 1202 -232 1361c-43 38 -93 79 -137 105zM919 1028c0 633 -214 997 -438 1228c144 -238 158 -590 158 -1225 c0 -630 -14 -983 -158 -1225c224 233 438 600 438 1222'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size4/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size5/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size5/Regular/Main.js new file mode 100644 index 0000000..a21620f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Size5/Regular/Main.js @@ -0,0 +1,119 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Size5/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Size5'] = { + directory: 'Size5/Regular', + family: 'STIXMathJax_Size5', + id: 'STIXWEBSIZE5', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2C6: [816,-572,2328,0,2328,'2328 603l-5 -31l-1160 182l-1158 -182l-5 31l1164 213'], + 0x2C7: [816,-572,2328,0,2328,'2328 785l-1164 -213l-1164 213l5 31l1158 -182l1160 182'], + 0x2DC: [780,-617,2328,0,2328,'2299 780h29c-29 -115 -316 -163 -516 -163c-199 0 -490 16 -801 63c-144 22 -414 34 -474 34c-144 0 -475 -32 -508 -97h-29c35 119 372 163 551 163c97 0 477 -23 745 -64c143 -22 480 -33 544 -33c153 0 432 31 459 97'], + 0x2F7: [-117,280,2328,0,2328,'2299 -117h29c-29 -115 -316 -163 -516 -163c-199 0 -490 16 -801 63c-144 22 -414 34 -474 34c-144 0 -475 -32 -508 -97h-29c35 119 372 163 551 163c97 0 477 -23 745 -64c143 -22 480 -33 544 -33c153 0 432 31 459 97'], + 0x302: [816,-572,2328,0,2328,'2328 603l-5 -31l-1160 182l-1158 -182l-5 31l1164 213'], + 0x303: [780,-617,2328,0,2328,'2299 780h29c-29 -115 -316 -163 -516 -163c-199 0 -490 16 -801 63c-144 22 -414 34 -474 34c-144 0 -475 -32 -508 -97h-29c35 119 372 163 551 163c97 0 477 -23 745 -64c143 -22 480 -33 544 -33c153 0 432 31 459 97'], + 0x305: [820,-770,3000,0,3000,'3000 770h-3000v50h3000v-50'], + 0x30C: [816,-572,2328,0,2328,'2328 785l-1164 -213l-1164 213l5 31l1158 -182l1160 182'], + 0x330: [-117,280,2328,0,2328,'2299 -117h29c-29 -115 -316 -163 -516 -163c-199 0 -490 16 -801 63c-144 22 -414 34 -474 34c-144 0 -475 -32 -508 -97h-29c35 119 372 163 551 163c97 0 477 -23 745 -64c143 -22 480 -33 544 -33c153 0 432 31 459 97'], + 0x332: [-127,177,3000,0,3000,'3000 -177h-3000v50h3000v-50'], + 0x338: [960,454,0,-561,-123,'-123 960l-384 -1414h-54l384 1414h54'], + 0x203E: [820,-770,3000,0,3000,'3000 770h-3000v50h3000v-50'], + 0x20D0: [749,-584,3000,0,3000,'3000 584h-3000v5c96 46 132 85 192 160l20 -19c-23 -33 -16 -27 -46 -58c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h2822v-50'], + 0x20D1: [749,-584,3000,0,3000,'3000 584h-3000v50h2822c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -23 25 -46 58l20 19c60 -75 96 -114 192 -160v-5'], + 0x20D6: [735,-482,3000,0,3000,'3000 584h-2829c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 107 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h2828v-50'], + 0x20D7: [735,-482,3000,0,3000,'3000 614v-10c-91 -38 -106 -55 -168 -122l-20 16c21 30 22 32 29 41s14 17 14 25c0 10 -8 20 -26 20h-2829v50h2828c10 0 27 6 27 22c0 9 -3 14 -12 23c-11 12 -9 12 -31 40l20 16c61 -69 77 -84 168 -121'], + 0x20EC: [-123,288,3000,0,3000,'3000 -123v-5c-96 -46 -132 -85 -192 -160l-20 19c23 33 16 27 46 58c9 9 14 16 14 24c0 10 -8 14 -26 14h-2822v50h3000'], + 0x20ED: [-123,288,3000,0,3000,'3000 -173h-2822c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 23 -25 46 -58l-20 -19c-60 75 -96 114 -192 160v5h3000v-50'], + 0x20EE: [-26,279,3000,0,3000,'3000 -177h-2829c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 107 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h2828v-50'], + 0x20EF: [-26,279,3000,0,3000,'3000 -147v-10c-91 -38 -106 -55 -168 -122l-20 16c21 30 22 32 29 41s14 17 14 25c0 10 -8 20 -26 20h-2829v50h2828c10 0 27 6 27 22c0 9 -3 14 -12 23c-11 12 -9 12 -31 40l20 16c61 -69 77 -84 168 -121'], + 0x23B4: [766,-544,3237,90,3147,'3147 544h-66v156h-2925v-156h-66v222h3057v-222'], + 0x23B5: [139,83,3237,90,3147,'3147 -83h-3057v222h66v-156h2925v156h66v-222'], + 0x23DC: [80,189,3237,0,3237,'3237 -189h-58c-447 190 -1020 189 -1500 189h-340c-428 0 -883 -19 -1281 -189h-58c489 268 1076 269 1619 269c544 0 1128 -1 1618 -269'], + 0x23DD: [842,-573,3237,0,3237,'3179 842h58c-486 -267 -1078 -269 -1618 -269c-541 0 -1132 1 -1619 269h58c423 -181 918 -189 1371 -189h284c468 0 1032 3 1466 189'], + 0x23DE: [181,90,3238,0,3238,'3238 -90h-53c-47 80 -148 93 -275 93s-241 -3 -256 -3h-625c-187 0 -330 44 -410 133c-80 -89 -223 -133 -410 -133h-625c-15 0 -129 3 -256 3s-228 -13 -275 -93h-53c2 6 4 19 7 25c44 93 200 147 519 147h773c111 0 272 27 299 99h42c27 -72 188 -99 299 -99h773 c319 0 475 -54 519 -147c3 -6 5 -18 7 -25'], + 0x23DF: [844,-573,3238,0,3238,'3185 844h53c-2 -6 -4 -19 -7 -25c-44 -92 -200 -147 -519 -147h-773c-111 0 -272 -27 -299 -99h-42c-27 72 -188 99 -299 99h-773c-319 0 -475 55 -519 147c-3 6 -5 18 -7 25h53c47 -80 148 -93 275 -93s241 3 256 3h625c187 0 330 -44 410 -133c80 89 223 133 410 133 h625c15 0 129 -3 256 -3s228 13 275 93'], + 0x23E0: [66,212,3164,0,3164,'3164 -212l-240 212h-2684l-240 -211v52l217 225h2730l217 -226v-52'], + 0x23E1: [842,-564,3164,0,3164,'3164 790l-217 -226h-2730l-217 225v52l240 -211h2684l240 212v-52'], + 0xE000: [705,300,450,50,400,'400 -270v-30c-261 184 -350 543 -350 846v159h124v-239c0 -254 54 -539 226 -736'], + 0xE001: [705,305,450,50,174,'174 -305h-124v1010h124v-1010'], + 0xE002: [700,305,450,50,400,'400 700v-30c-172 -197 -226 -482 -226 -736v-239h-124v159c0 303 89 662 350 846'], + 0xE003: [705,300,450,50,400,'400 705v-159c0 -303 -89 -662 -350 -846v30c172 197 226 482 226 736v239h124'], + 0xE004: [705,305,450,276,400,'400 -305h-124v1010h124v-1010'], + 0xE005: [700,305,450,50,400,'400 -305h-124v239c0 254 -54 539 -226 736v30c261 -184 350 -543 350 -846v-159'], + 0xE006: [687,318,450,50,415,'415 -318h-365v1005h100v-955h265v-50'], + 0xE007: [687,323,450,50,150,'150 -323h-100v1010h100v-1010'], + 0xE008: [682,323,450,50,415,'415 632h-265v-955h-100v1005h365v-50'], + 0xE009: [687,318,450,35,400,'400 -318h-365v50h265v955h100v-1005'], + 0xE00A: [687,323,450,300,400,'400 -323h-100v1010h100v-1010'], + 0xE00B: [682,323,450,35,400,'400 -323h-100v955h-265v50h365v-1005'], + 0xE00C: [705,300,640,260,600,'600 -265v-35c-229 4 -340 173 -340 387v618h120v-667c0 -149 47 -294 220 -303'], + 0xE00D: [705,305,640,260,380,'380 -305h-120v1010h120v-1010'], + 0xE00E: [705,305,640,40,380,'380 -305h-120v204c0 127 -79 268 -220 268v66c141 0 220 141 220 268v204h120v-204c0 -141 -128 -296 -280 -299v-4c149 2 280 -162 280 -299v-204'], + 0xE00F: [700,305,640,260,600,'600 700v-35c-173 -9 -220 -154 -220 -303v-667h-120v618c0 214 111 383 340 387'], + 0xE010: [705,300,640,40,380,'380 705v-618c0 -214 -111 -383 -340 -387v35c173 9 220 154 220 303v667h120'], + 0xE011: [705,305,640,260,600,'600 233v-66c-141 0 -220 -141 -220 -268v-204h-120v204c0 137 131 301 280 299v4c-152 3 -280 158 -280 299v204h120v-204c0 -127 79 -268 220 -268'], + 0xE012: [700,305,640,40,380,'380 -305h-120v667c0 149 -47 294 -220 303v35c229 -4 340 -173 340 -387v-618'], + 0xE013: [820,-770,1000,0,1000,'1000 770h-1000v50h1000v-50'], + 0xE014: [-127,177,1000,0,1000,'1000 -177h-1000v50h1000v-50'], + 0xE015: [749,-584,870,0,871,'871 584h-871v5c96 46 132 85 192 160l20 -19c-23 -33 -16 -27 -46 -58c-9 -9 -14 -16 -14 -24c0 -10 8 -14 26 -14h693v-50'], + 0xE016: [634,-584,480,-10,490,'490 584h-500v50h500v-50'], + 0xE017: [749,-584,871,0,871,'871 584h-871v50h693c18 0 26 4 26 14c0 8 -5 15 -14 24c-30 31 -23 25 -46 58l20 19c60 -75 96 -114 192 -160v-5'], + 0xE018: [735,-482,871,0,872,'872 584h-701c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 106 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h700v-50'], + 0xE019: [736,-482,871,0,872,'872 614v-10c-91 -37 -106 -53 -168 -122l-20 16c22 28 20 29 31 41c9 9 12 14 12 23c0 16 -17 22 -27 22h-700v50h701c18 0 26 10 26 20c0 8 -7 16 -14 25s-8 11 -29 41l20 16c62 -67 77 -84 168 -122'], + 0xE01A: [-127,177,480,-10,490,'490 -177h-500v50h500v-50'], + 0xE01B: [-123,288,871,0,871,'871 -123v-5c-96 -46 -132 -85 -192 -160l-20 19c23 33 16 27 46 58c9 9 14 16 14 24c0 10 -8 14 -26 14h-693v50h871'], + 0xE01C: [-123,288,871,0,871,'871 -173h-693c-18 0 -26 -4 -26 -14c0 -8 5 -15 14 -24c30 -31 23 -25 46 -58l-20 -19c-60 75 -96 114 -192 160v5h871v-50'], + 0xE01D: [-26,279,871,0,872,'872 -177h-701c-18 0 -26 -10 -26 -20c0 -8 7 -16 14 -25s8 -11 29 -41l-20 -16c-62 67 -77 84 -168 122v10c91 37 106 52 168 121l20 -16c-22 -28 -20 -28 -31 -40c-9 -9 -12 -14 -12 -23c0 -16 17 -22 27 -22h700v-50'], + 0xE01E: [-25,279,871,0,872,'872 -147v-10c-91 -37 -106 -53 -168 -122l-20 16c22 28 20 29 31 41c9 9 12 14 12 23c0 16 -17 22 -27 22h-700v50h701c18 0 26 10 26 20c0 8 -7 16 -14 25s-8 11 -29 41l20 16c62 -67 77 -84 168 -122'], + 0xE01F: [386,-120,315,0,315,'315 320h-315v66h315v-66zM315 120h-315v66h315v-66'], + 0xE020: [405,-101,686,210,476,'476 101h-66v304h66v-304zM276 101h-66v304h66v-304'], + 0xE021: [486,-20,315,0,315,'315 420h-315v66h315v-66zM315 220h-315v66h315v-66zM315 20h-315v66h315v-66'], + 0xE022: [1855,0,1184,112,895,'895 0h-57l-533 1499c-14 40 -44 58 -73 58c-21 0 -70 -8 -97 -31l-23 32l225 129h40l451 -1283h1v1451h66v-1855'], + 0xE023: [635,0,1184,829,895,'895 0h-66v635h66v-635'], + 0xE024: [626,0,1184,829,1211,'1211 560h-316v-560h-66v626h382v-66'], + 0xE025: [2140,0,1184,112,895,'372 2043l-14 3c17 55 53 94 114 94c54 0 90 -32 90 -79c0 -28 -18 -63 -51 -84c52 -18 82 -45 82 -102c0 -89 -85 -136 -172 -136c-42 0 -65 20 -65 41c0 12 10 21 24 21c9 0 19 -4 35 -15c22 -15 33 -19 50 -19c43 0 75 33 75 83c0 44 -21 70 -60 83c-13 5 -26 6 -59 6 v13c22 8 37 15 48 21c29 17 48 38 48 73c0 39 -24 59 -63 59c-36 0 -58 -19 -82 -62zM895 0h-57l-533 1499c-14 40 -44 58 -73 58c-21 0 -70 -8 -97 -31l-23 32l225 129h40l451 -1283h1v1451h66v-1855'], + 0xE026: [2135,0,1184,112,895,'605 1839h-59v-96h-55v96h-162v47l182 249h35v-249h59v-47zM491 1886v188l-137 -188h137zM895 0h-57l-533 1499c-14 40 -44 58 -73 58c-21 0 -70 -8 -97 -31l-23 32l225 129h40l451 -1283h1v1451h66v-1855'], + 0xE027: [955,-554,1820,-25,1830,'1830 820h-1605c-174 0 -191 -12 -191 -117v-149h-59v401h1855v-135'], + 0xE028: [955,-820,633,-1,634,'634 820h-635v135h635v-135'], + 0xE029: [955,-554,1820,-10,1845,'1845 554h-59v149c0 105 -17 117 -191 117h-1605v135h1855v-401'], + 0xE02A: [140,261,1820,-25,1830,'1830 -261h-1855v401h59v-149c0 -105 17 -117 191 -117h1605v-135'], + 0xE02B: [-126,261,633,-1,634,'634 -261h-635v135h635v-135'], + 0xE02C: [140,261,1820,-10,1845,'1845 -261h-1855v135h1605c174 0 191 12 191 117v149h59v-401'], + 0xE02D: [955,-342,1820,-25,1830,'1830 820h-250c-728 0 -1319 -239 -1549 -478h-56c282 367 858 613 1605 613h250v-135'], + 0xE02E: [955,-342,1820,-10,1845,'1845 342h-56c-230 239 -821 478 -1549 478h-250v135h250c747 0 1323 -246 1605 -613'], + 0xE02F: [352,261,1820,-25,1830,'1830 -261h-250c-747 0 -1323 246 -1605 613h56c230 -239 821 -478 1549 -478h250v-135'], + 0xE030: [352,261,1820,-10,1845,'1789 352h56c-282 -367 -858 -613 -1605 -613h-250v135h250c728 0 1319 239 1549 478'], + 0xE031: [955,-512,897,-25,908,'908 820h-360c-194 0 -495 -72 -517 -308h-56c51 352 380 443 690 443h243v-135'], + 0xE032: [1218,-820,1844,-10,1854,'1854 820h-390c-245 0 -434 61 -540 291h-4c-106 -230 -301 -291 -546 -291h-384v135h501c148 0 371 80 404 263h54c33 -183 250 -263 398 -263h507v-135'], + 0xE033: [955,-512,897,-11,922,'922 512h-56c-22 236 -323 308 -517 308h-360v135h243c310 0 639 -91 690 -443'], + 0xE034: [182,261,897,-25,908,'908 -261h-243c-310 0 -639 91 -690 443h56c22 -236 323 -308 517 -308h360v-135'], + 0xE035: [-126,524,1844,-10,1854,'1854 -261h-501c-148 0 -371 -80 -404 -263h-54c-33 183 -250 263 -398 263h-507v135h390c245 0 434 -61 540 -291h4c106 230 301 291 546 291h384v-135'], + 0xE036: [182,261,897,-11,922,'866 182h56c-51 -352 -380 -443 -690 -443h-243v135h360c194 0 495 72 517 308'], + 0xE037: [405,-101,1033,229,805,'805 101h-66v304h66v-304zM635 101h-66v304h66v-304zM465 101h-66v304h66v-304zM295 101h-66v304h66v-304'], + 0xE038: [405,-101,926,230,696,'696 101h-66v304h66v-304zM496 101h-66v304h66v-304zM296 101h-66v304h66v-304'], + 0xE039: [541,35,315,0,315,'315 475h-315v66h315v-66zM315 305h-315v66h315v-66zM315 135h-315v66h315v-66zM315 -35h-315v66h315v-66'], + 0xE03A: [700,301,600,35,566,'566 700v-35c-144 -2 -208 -119 -208 -250v-412c0 -168 -161 -302 -323 -304v35c144 2 208 119 208 250v412c0 168 161 302 323 304'], + 0xE03B: [700,301,600,35,566,'566 -266v-35c-162 2 -323 136 -323 304v412c0 131 -64 248 -208 250v35c162 -2 323 -136 323 -304v-412c0 -131 64 -248 208 -250'], + 0xE03C: [1066,79,688,294,574,'294 -79v904c0 105 48 241 190 241c64 0 90 -38 90 -77c0 -34 -27 -53 -55 -53c-23 0 -47 12 -47 43c0 25 12 22 12 35c0 9 -7 14 -17 14c-65 0 -73 -91 -73 -221v-886h-100'], + 0xE03D: [610,25,688,294,394,'394 -25h-100v635h100v-635'], + 0xE03E: [1086,59,688,115,394,'394 1086v-904c0 -105 -47 -241 -189 -241c-64 0 -90 38 -90 77c0 34 27 53 55 53c23 0 47 -12 47 -43c0 -25 -12 -22 -12 -35c0 -9 7 -14 17 -14c65 0 72 91 72 221v886h100'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size5/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Symbols/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Symbols/Bold/Main.js new file mode 100644 index 0000000..915ce0b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Symbols/Bold/Main.js @@ -0,0 +1,50 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Symbols/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Symbols-bold'] = { + directory: 'Symbols/Bold', + family: 'STIXMathJax_Symbols', + weight: 'bold', + id: 'STIXWEBSYMBOLSB', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2302: [774,0,926,55,871,'871 0h-816v408l408 366l408 -366v-408zM783 88v284l-320 289l-320 -289v-284h640'], + 0x2310: [399,-108,750,65,685,'685 311h-532v-203h-88v291h620v-88'], + 0x2319: [399,-108,750,65,685,'685 108h-620v291h88v-203h532v-88'], + 0x2329: [732,193,445,69,399,'399 -193h-100l-230 455v15l226 455h100l-230 -462'], + 0x232A: [732,193,445,46,376,'376 262l-230 -455h-100l234 463l-230 462h100l226 -455v-15'], + 0x2336: [751,156,926,85,841,'841 -156h-756v66h333v775h-333v66h756l-1 -66h-334v-775h335v-66'], + 0x233D: [694,190,924,80,844,'506 694v-62c190 -22 338 -184 338 -380s-148 -358 -338 -380v-62h-88v62c-190 22 -338 184 -338 380s148 358 338 380v62h88zM506 543v-582c142 21 250 144 250 291s-108 270 -250 291zM418 -39v582c-142 -21 -250 -144 -250 -291s108 -270 250 -291'], + 0x233F: [732,200,728,55,673,'673 222h-274l-149 -422h-96l150 422h-249v88h280l151 422h96l-151 -422h242v-88'], + 0x23AF: [297,-209,315,0,315,'315 209h-315v88h315v-88'], + 0x27C8: [547,13,1025,62,943,'943 -13h-288c-175 0 -288 126 -288 280s113 280 291 280h285v-88h-301c-100 0 -187 -85 -187 -192c0 -108 88 -192 188 -192h300v-88zM330 -13h-84l-184 558h83'], + 0x27C9: [547,13,1025,62,943,'943 545l-184 -558h-84l185 558h83zM62 547h285c178 0 291 -126 291 -280s-113 -280 -288 -280h-288v88h300c100 0 188 84 188 192c0 107 -87 192 -187 192h-301v88'], + 0x2980: [705,200,675,105,570,'570 -200h-88v905h88v-905zM382 -200h-88v905h88v-905zM193 -200h-88v905h88v-905'], + 0x29B6: [634,130,864,50,814,'814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM476 543v-582c143 21 250 146 250 291s-107 270 -250 291zM388 -39v582c-143 -21 -250 -146 -250 -291s107 -270 250 -291'], + 0x29B7: [634,130,864,50,814,'582 39h-88v426h88v-426zM368 39h-88v426h88v-426zM814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM726 252c0 162 -132 294 -294 294s-294 -132 -294 -294s132 -294 294 -294s294 132 294 294'], + 0x29B8: [634,130,864,50,814,'814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM258 489l411 -411c36 48 57 109 57 174c0 162 -132 294 -294 294c-65 0 -126 -21 -174 -57zM606 15l-411 411c-36 -48 -57 -109 -57 -174c0 -162 132 -294 294 -294 c65 0 126 21 174 57'], + 0x29C0: [634,130,864,50,814,'579 35l-391 197v39l391 198v-101l-232 -115l232 -115v-103zM814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM726 252c0 162 -132 294 -294 294s-294 -132 -294 -294s132 -294 294 -294s294 132 294 294'], + 0x29C1: [634,130,864,50,814,'676 232l-391 -197v103l232 115l-232 115v101l391 -198v-39zM814 252c0 -211 -171 -382 -382 -382s-382 171 -382 382s171 382 382 382s382 -171 382 -382zM726 252c0 162 -132 294 -294 294s-294 -132 -294 -294s132 -294 294 -294s294 132 294 294'], + 0x29C4: [661,158,910,45,865,'865 -158h-820v819h820v-819zM777 -70v590l-590 -590h590zM730 573h-597v-597'], + 0x29C5: [661,158,910,45,865,'865 -158h-820v819h820v-819zM777 -20v593h-593zM727 -70l-594 594v-594h594'], + 0x29C6: [661,158,910,45,865,'663 338c0 -18 -14 -37 -31 -47c-31 -18 -87 -16 -137 -38c46 -18 112 -23 136 -38c17 -10 30 -30 30 -48c0 -27 -22 -58 -57 -58c-43 0 -81 72 -129 115c7 -47 37 -115 37 -142c0 -30 -19 -61 -57 -61s-57 32 -57 61c0 27 30 95 37 142c-37 -33 -79 -94 -97 -103 c-11 -6 -25 -11 -37 -11c-33 0 -55 26 -55 51c0 17 10 43 30 55c22 13 97 22 139 37c-42 15 -119 25 -143 39c-16 10 -29 28 -29 46c0 28 23 61 55 61c9 0 20 -3 31 -9c24 -13 66 -69 106 -102c-7 49 -37 114 -37 142c0 30 16 59 57 59c37 0 57 -29 57 -59 c0 -28 -30 -92 -37 -142c44 34 78 89 102 102c11 6 22 9 31 9c32 0 55 -33 55 -61zM865 -158h-820v819h820v-819zM777 -70v643h-644v-643h644'], + 0x29C7: [661,158,910,45,865,'662 253c0 -114 -93 -207 -207 -207s-207 93 -207 207s93 207 207 207s207 -93 207 -207zM592 253c0 83 -54 137 -137 137s-137 -54 -137 -137s54 -137 137 -137s137 54 137 137zM865 -158h-820v819h820v-819zM777 -70v643h-644v-643h644'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Symbols/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Symbols/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Symbols/Regular/Main.js new file mode 100644 index 0000000..a1ec5c0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Symbols/Regular/Main.js @@ -0,0 +1,263 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Symbols/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Symbols'] = { + directory: 'Symbols/Regular', + family: 'STIXMathJax_Symbols', + id: 'STIXWEBSYMBOLS', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0x2300: [487,-14,606,25,581,'581 487l-91 -90c32 -41 50 -93 50 -145c0 -130 -104 -238 -235 -238c-54 0 -107 18 -149 52l-53 -52h-78l92 91c-32 42 -50 94 -50 147c0 131 108 235 238 235c53 0 105 -18 146 -51l52 51h78zM165 152l239 237c-29 21 -64 32 -99 32c-94 0 -172 -75 -172 -169 c0 -36 11 -71 32 -100zM442 350l-239 -237c30 -21 66 -33 102 -33c94 0 169 78 169 172c0 35 -11 69 -32 98'], + 0x2302: [774,0,926,55,871,'871 0h-816v408l408 366l408 -366v-408zM805 66v316l-342 300l-342 -300v-316h684'], + 0x2305: [577,0,620,48,572,'572 511h-524v66h524v-66zM572 0h-72l-189 374h-2l-189 -374h-72l230 457h65'], + 0x2306: [728,0,620,48,572,'572 662h-524v66h524v-66zM572 511h-524v66h524v-66zM572 0h-72l-189 374h-2l-189 -374h-72l230 457h65'], + 0x230C: [166,215,463,52,412,'118 100v66h294v-66h-294v-315h-66v315h66'], + 0x230D: [166,215,463,52,412,'346 100h66v-315h-66v315h-294v66h294v-66'], + 0x230E: [876,-495,463,52,412,'118 561h-66v315h66v-315zM412 495h-294v66h294v-66'], + 0x230F: [876,-495,463,52,412,'412 561h-66v315h66v-315zM346 495h-294v66h294v-66'], + 0x2310: [393,-115,600,48,552,'552 327h-438v-212h-66v278h504v-66'], + 0x2311: [439,-65,523,75,449,'449 65c-52 25 -119 37 -187 37s-136 -12 -187 -37c25 51 37 119 37 187s-12 135 -37 187c51 -25 119 -38 187 -38s135 13 187 38c-25 -52 -38 -119 -38 -187s13 -136 38 -187zM394 120c-19 36 -23 84 -23 132s4 96 23 132c-36 -19 -84 -23 -132 -23s-96 4 -132 23 c18 -36 22 -84 22 -132s-4 -96 -22 -132c36 18 84 22 132 22s96 -4 132 -22'], + 0x2312: [331,0,762,50,712,'712 0h-66c0 146 -119 265 -265 265s-265 -119 -265 -265h-66c0 183 148 331 331 331s331 -148 331 -331'], + 0x2313: [331,0,762,50,712,'712 0h-662c0 183 148 331 331 331s331 -148 331 -331zM124 66h513c-29 114 -133 199 -256 199s-228 -85 -257 -199'], + 0x2315: [582,189,847,26,796,'26 -142l183 183c-47 57 -75 130 -75 210c0 183 148 331 331 331s331 -148 331 -331s-148 -331 -331 -331c-80 0 -154 29 -211 76l2 -2l-183 -183zM731 252c0 146 -119 265 -265 265s-265 -119 -265 -265s119 -265 265 -265s265 119 265 265'], + 0x2316: [748,246,1100,53,1047,'1047 218h-168c-16 -154 -141 -280 -295 -296v-168h-66v168c-154 16 -281 142 -297 296h-168v66h167c16 155 143 281 298 296v168h66v-168c155 -15 280 -141 295 -296h168v-66zM584 284h229c-15 117 -112 214 -229 230v-230zM518 284v230c-118 -16 -216 -113 -231 -230 h231zM812 218h-228v-230c116 15 212 113 228 230zM518 -12v230h-231c16 -117 113 -215 231 -230'], + 0x2317: [749,245,1100,53,1047,'1047 7h-252v-252h-66v252h-358v-252h-66v252h-252v66h252v358h-252v66h252v252h66v-252h358v252h66v-252h252v-66h-252v-358h252v-66zM729 73v358h-358v-358h358'], + 0x2318: [662,156,926,55,871,'597 184h108c95 0 166 -74 166 -170c0 -97 -73 -170 -170 -170c-96 0 -170 71 -170 166v108h-136v-108c0 -95 -74 -166 -170 -166c-97 0 -170 73 -170 170c0 96 71 170 166 170h108v138h-108c-95 0 -166 74 -166 170c0 97 73 170 170 170s170 -73 170 -170v-104h136v109 c0 95 75 165 170 165c97 0 170 -73 170 -170c0 -96 -71 -170 -166 -170h-108v-138zM597 388h108c58 0 100 45 100 104c0 60 -44 104 -104 104c-58 0 -104 -41 -104 -104v-104zM329 388v104c0 60 -44 104 -104 104s-104 -44 -104 -104c0 -59 42 -104 100 -104h108zM531 184 v138h-136v-138h136zM597 118v-108c0 -58 45 -100 104 -100c60 0 104 44 104 104c0 58 -42 104 -100 104h-108zM329 10v108h-108c-58 0 -100 -46 -100 -104c0 -60 44 -104 104 -104c58 0 104 42 104 100'], + 0x2319: [393,-115,600,48,552,'552 115h-504v278h66v-212h438v-66'], + 0x231A: [671,69,685,64,622,'471 671v-122c89 -47 151 -140 151 -248s-62 -202 -151 -248v-122h-256v122c-90 46 -151 140 -151 248s61 201 151 248v122h256zM421 569v52h-156v-52h156zM555 274h-50v50h50c-6 57 -35 107 -77 141l-110 -191h-141v50h115l96 167c-21 11 -46 18 -70 21v-50h-50v50 c-99 -11 -177 -90 -188 -188h50v-50h-50c12 -98 90 -175 188 -187v50h50v-50c97 12 175 89 187 187zM421 -19v52h-156v-52h156'], + 0x231C: [662,-281,463,51,411,'411 596h-294v-315h-66v381h360v-66'], + 0x231D: [662,-281,463,51,411,'411 281h-66v315h-294v66h360v-381'], + 0x231E: [164,217,463,51,411,'411 -217h-360v381h66v-315h294v-66'], + 0x231F: [164,217,463,52,412,'412 -217h-360v66h294v315h66v-381'], + 0x2329: [713,213,400,77,335,'335 713l-192 -462l191 -464h-52l-205 454v20l206 452h52'], + 0x232A: [713,213,400,65,323,'323 240l-206 -453h-52l192 463l-191 463h52l205 -453v-20'], + 0x232C: [692,186,926,83,843,'744 376l-33 -57l-314 181l33 58zM744 132l-314 -182l-33 58l314 181zM284 72h-66v363h66v-363zM843 34l-380 -220l-380 220v438l380 220l380 -220v-438zM777 72v362l-314 182l-314 -182v-362l314 -182'], + 0x232D: [592,88,986,55,931,'931 559l-374 -647l-57 33l51 89c-19 -5 -38 -8 -58 -8c-104 0 -193 72 -219 169l-162 -283l-57 33l374 647l57 -33l-53 -90c17 6 41 8 60 8c103 0 190 -70 217 -169l164 284zM653 253c0 85 -74 158 -160 158s-159 -73 -159 -158c0 -86 73 -160 159 -160s160 74 160 160'], + 0x232E: [450,140,624,-18,574,'87 10l81 80c-28 38 -44 84 -44 135c0 124 101 225 225 225s225 -101 225 -227s-99 -223 -225 -223c-52 0 -100 17 -138 47l-80 -81c-4 -4 -7 -11 -7 -18c0 -16 14 -19 31 -19c36 0 67 -6 106 -15l-1 -28c-36 3 -71 5 -106 5c-55 0 -109 -6 -165 -31l-7 7 c24 57 31 112 31 168c0 34 -2 68 -5 104l28 1c7 -39 15 -66 15 -104c0 -16 6 -35 21 -35c3 0 8 2 15 9zM337 259h167c-16 70 -81 125 -155 125c-86 0 -159 -73 -159 -159c0 -32 9 -62 26 -87zM504 193h-147l-98 -98c26 -18 57 -29 90 -29c75 0 140 55 155 127'], + 0x2332: [562,56,889,80,809,'809 242l-729 -298v618l729 -298v-22zM562 286l-416 172v-172h416zM562 220h-416v-172'], + 0x2336: [751,156,926,85,841,'841 -156h-756v50h344v807h-344v50h756l-1 -50h-345v-807h346v-50'], + 0x233D: [683,179,910,84,826,'488 683v-61c189 -17 338 -176 338 -370s-149 -353 -338 -370v-61h-66v61c-189 17 -338 176 -338 370s149 353 338 370v61h66zM488 555v-606c153 16 272 146 272 303s-119 287 -272 303zM422 -51v606c-153 -16 -272 -146 -272 -303s119 -287 272 -303'], + 0x233F: [703,176,683,60,623,'623 233h-263l-149 -409h-57l148 409h-242v66h266l147 404h59l-148 -404h239v-66'], + 0x2340: [703,176,683,60,623,'623 233h-242l148 -409h-57l-149 409h-263v66h239l-148 404h59l147 -404h266v-66'], + 0x2353: [751,176,794,55,739,'739 -176h-684v927h684v-927zM673 146v539h-552v-539l276 478zM673 -110v117l-276 478l-276 -478v-117h552'], + 0x2370: [751,176,794,55,739,'400 117h-17c1 40 9 90 44 177c26 64 51 127 51 187c0 69 -48 118 -109 118c-48 0 -94 -30 -94 -62c0 -37 38 -41 38 -74c0 -25 -16 -43 -41 -43c-28 0 -48 25 -48 66c0 83 68 143 164 143c97 0 182 -61 182 -158c0 -61 -19 -95 -105 -197c-36 -43 -54 -89 -65 -157z M446 -2c0 -29 -22 -53 -52 -53c-34 0 -54 25 -54 53c0 30 23 53 54 53c28 0 52 -25 52 -53zM739 -176h-684v927h684v-927zM673 -110v795h-552v-795h552'], + 0x237C: [584,220,871,50,820,'820 0h-504l-113 -100c-4 -3 -8 -9 -8 -15c0 -15 10 -25 24 -25c40 0 55 1 82 1c4 0 18 0 41 -3l14 -2v-32c-116 0 -206 0 -299 -44l-7 8c11 32 18 65 22 98c3 26 4 53 4 79c0 43 -3 85 -8 126l28 2c10 -38 13 -83 16 -125c1 -16 6 -33 20 -33c7 0 14 3 23 11l81 71v163 l-158 96l158 130v178h66v-124l150 124l47 -46l-197 -161v-160l153 -94l-65 -57h430v-66zM236 257v66l-46 -37zM346 114l-44 26v-65'], + 0x2393: [386,-120,913,85,841,'841 120h-213v66h213v-66zM841 320h-756v66h756v-66zM569 120h-213v66h213v-66zM298 120h-213v66h213v-66'], + 0x2394: [633,127,926,24,902,'902 253l-220 -380h-438l-220 380l220 380h438zM826 253l-182 314h-362l-182 -314l182 -314h362'], + 0x23AF: [286,-220,315,0,315,'315 220h-315v66h315v-66'], + 0x23B6: [495,-11,926,55,871,'871 303h-816v192h66v-126h684v126h66v-192zM871 11h-66v126h-684v-126h-66v192h816v-192'], + 0x23CE: [731,225,926,50,856,'856 731v-486c0 -162 -117 -316 -319 -316h-101v-144l-20 -10c-117 116 -243 190 -366 282v10c121 92 249 166 366 282l20 -10v-144h27c114 0 127 44 127 133v403h266zM806 265v416h-166v-348c0 -91 -1 -188 -187 -188h-67v105l-165 -115c-29 -20 -58 -47 -58 -73 s27 -48 58 -72l165 -128v117h145c159 0 275 105 275 286'], + 0x23E2: [558,53,1144,54,1090,'1090 -53h-1036l70 611h652zM986 13l-246 479h-557l-56 -479h859'], + 0x23E3: [680,178,910,82,828,'679 253c0 -123 -100 -223 -224 -223s-224 100 -224 223c0 124 100 227 224 227s224 -103 224 -227zM627 253c0 95 -83 175 -172 175c-97 0 -172 -80 -172 -175c0 -96 75 -171 172 -171c88 0 172 77 172 171zM828 36l-373 -214l-373 214v430l373 214l373 -214v-430z M762 73v353l-307 178l-307 -178v-353l308 -175'], + 0x23E4: [286,-220,1094,47,1047,'1047 220h-1000v66h1000v-66'], + 0x23E5: [527,20,1018,23,995,'995 527l-312 -547h-660l313 547h659zM883 461h-511l-235 -415h509'], + 0x23E6: [434,-72,926,55,871,'464 286h407c-6 -85 -112 -214 -210 -214c-78 0 -140 74 -203 148h-403c5 100 108 214 206 214c78 0 140 -74 203 -148zM815 220h-293c45 -47 93 -82 150 -82c47 0 105 36 143 82zM109 286h291c-45 46 -93 81 -149 82c-48 0 -106 -36 -142 -82'], + 0x23E7: [606,97,798,194,733,'733 383l-243 -107c1 -6 2 -12 2 -17c0 -22 -6 -38 -20 -54l141 -277l-40 -19l-136 271c-9 -4 -19 -5 -28 -5c-13 0 -24 2 -35 7l-141 -279l-39 19l146 290c-9 13 -14 28 -14 47c0 26 11 48 33 65l-56 274l42 8l54 -266h9c25 0 46 -8 62 -26l247 108zM306 377l-27 -98 l-71 81l30 1l-38 203l42 9l38 -203'], + 0x27C0: [584,0,685,50,634,'634 0h-584v584h66v-471l471 471l47 -47l-471 -471h471v-66'], + 0x27C1: [811,127,1145,35,1110,'843 28h-540l270 469zM729 94l-156 275l-154 -275h310zM1110 -127h-1075l538 938zM995 -61l-422 739l-424 -739h846'], + 0x27C2: [662,0,693,52,641,'641 0h-589v66h262v596h66v-596h261v-66'], + 0x27C3: [529,27,685,60,625,'625 251c0 -87 -68 -155 -154 -155c-87 0 -155 68 -155 155c0 86 68 155 155 155c86 0 154 -69 154 -155zM570 251c0 54 -45 100 -99 100s-100 -46 -100 -100s46 -100 100 -100s99 46 99 100zM625 -27h-298c-159 0 -267 131 -267 279s110 277 270 277h295v-66h-295 c-114 0 -204 -104 -204 -211s91 -213 205 -213h294v-66'], + 0x27C4: [529,27,685,61,626,'61 529h298c159 0 267 -131 267 -279s-110 -277 -270 -277h-295v66h295c114 0 204 104 204 211s-91 213 -205 213h-294v66zM370 251c0 -86 -68 -155 -155 -155c-86 0 -154 69 -154 155c0 87 68 155 154 155c87 0 155 -68 155 -155zM315 251c0 54 -46 100 -100 100 s-99 -46 -99 -100s45 -100 99 -100s100 46 100 100'], + 0x27C5: [702,198,455,55,400,'363 -98l37 -53c-25 -29 -64 -47 -105 -47c-100 0 -144 99 -144 191c0 191 111 354 111 549c0 67 -39 94 -73 94c-40 0 -68 -30 -68 -66v-133h-66v135c0 77 64 130 136 130c75 0 137 -63 137 -159c0 -204 -111 -375 -111 -550c0 -73 28 -125 78 -125c26 0 49 12 68 34'], + 0x27C6: [702,198,455,55,400,'400 437h-66v133c0 36 -28 66 -68 66c-34 0 -73 -27 -73 -94c0 -195 111 -358 111 -549c0 -92 -44 -191 -144 -191c-41 0 -80 18 -105 47l37 53c19 -22 42 -34 68 -34c50 0 78 52 78 125c0 175 -111 346 -111 550c0 96 62 159 137 159c72 0 136 -53 136 -130v-135'], + 0x27C7: [536,29,620,31,589,'374 363c0 -39 -26 -64 -64 -64s-63 30 -63 64c0 37 31 63 63 63s64 -25 64 -63zM589 536l-274 -565h-10l-274 565h65l214 -432l214 432h65'], + 0x27C8: [533,25,966,60,906,'906 -25h-290c-159 0 -267 132 -267 280s110 278 270 278h287v-66h-287c-114 0 -205 -105 -205 -212s92 -214 206 -214h286v-66zM312 -25h-68l-184 558h67'], + 0x27C9: [533,25,966,60,906,'906 533l-184 -558h-68l185 558h67zM60 533h287c160 0 270 -130 270 -278s-108 -280 -267 -280h-290v66h286c114 0 206 107 206 214s-91 212 -205 212h-287v66'], + 0x27CB: [662,156,902,0,863,'863 662l-786 -818h-77l786 818h77'], + 0x27CC: [806,213,325,20,325,'325 752h-236c120 -150 148 -246 148 -438c0 -117 -17 -272 -77 -374c-32 -55 -75 -104 -116 -153l-24 20c36 46 67 96 88 151c37 98 45 243 45 348c0 193 -16 321 -133 481v19h305v-54'], + 0x27CD: [662,156,902,0,863,'863 -156h-77l-786 818h77'], + 0x27D0: [744,242,1064,39,1025,'609 251c0 -40 -36 -75 -78 -75c-43 0 -76 33 -76 77c0 43 34 77 77 77c41 0 77 -37 77 -79zM1025 251l-492 -493l-494 494l493 492zM932 251l-400 400l-400 -400l400 -400'], + 0x27D1: [536,29,620,31,589,'589 -29h-65l-214 432l-214 -432h-65l274 565h10zM374 144c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64'], + 0x27D2: [536,31,620,48,572,'572 536v-299c0 -159 -113 -268 -262 -268c-148 0 -262 111 -262 271v296h66v-296c0 -102 72 -186 163 -202v498h66v-499c93 17 163 102 163 204v295h66'], + 0x27D3: [584,0,685,50,634,'634 0h-584v66h518v518h66v-584zM406 292c0 -39 -26 -64 -64 -64s-63 30 -63 64c0 37 31 63 63 63s64 -25 64 -63'], + 0x27D4: [584,0,685,50,634,'405 292c0 -37 -31 -63 -63 -63s-64 25 -64 63c0 39 26 64 64 64s63 -30 63 -64zM634 518h-518v-518h-66v584h584v-66'], + 0x27D5: [582,80,1019,40,965,'965 -80l-351 285l-351 -285h-223v66h223v530h-223v66h223l351 -285l351 285v-662zM899 58v386l-239 -193zM568 251l-239 193v-386'], + 0x27D6: [582,80,1019,54,979,'979 -80h-223l-351 285l-351 -285v662l351 -285l351 285h223v-66h-223v-530h223v-66zM690 58v386l-239 -193zM359 251l-239 193v-386'], + 0x27D7: [582,80,1228,40,1188,'1188 -80h-223l-351 285l-351 -285h-223v66h223v530h-223v66h223l351 -285l351 285h223v-66h-223v-530h223v-66zM899 58v386l-239 -193zM568 251l-239 193v-386'], + 0x27D8: [718,213,866,50,816,'816 -213h-766v66h350v865h66v-865h350v-66'], + 0x27D9: [718,213,866,50,816,'816 652h-350v-865h-66v865h-350v66h766v-66'], + 0x27DA: [662,0,1376,64,1312,'1312 198h-491v-198h-66v662h66v-198h491v-66h-491v-134h491v-66zM621 0h-66v198h-491v66h491v134h-491v66h491v198h66v-662'], + 0x27DB: [662,0,1376,64,1312,'1312 298h-491v-298h-66v662h66v-298h491v-66zM621 0h-66v298h-491v66h491v298h66v-662'], + 0x27DC: [403,-103,849,50,799,'799 220h-453c-15 -67 -74 -117 -146 -117c-83 0 -150 67 -150 150s67 150 150 150c72 0 131 -50 146 -117h453v-66zM300 253c0 55 -45 100 -100 100s-100 -45 -100 -100s45 -100 100 -100s100 45 100 100'], + 0x27DD: [450,-57,1574,55,1519,'1519 220h-1414v-163h-50v393h50v-164h1414v-66'], + 0x27DE: [450,-57,1574,55,1519,'1519 57h-50v163h-1414v66h1414v164h50v-393'], + 0x27DF: [693,187,502,101,401,'218 -121v518c-67 15 -117 74 -117 146c0 83 67 150 150 150s150 -67 150 -150c0 -72 -50 -131 -117 -146v-518h116v-66h-298v66h116zM351 543c0 55 -45 100 -100 100s-100 -45 -100 -100s45 -100 100 -100s100 45 100 100'], + 0x27E0: [795,289,790,45,745,'745 253l-351 -542l-349 542l350 542zM646 286l-251 388l-250 -388h501zM646 220h-501l249 -388'], + 0x27E1: [589,87,764,45,719,'719 251c-136 -57 -280 -202 -337 -338c-57 136 -201 281 -337 338c136 57 280 202 337 338c57 -136 201 -281 337 -338zM589 251c-70 41 -166 137 -207 208c-41 -70 -136 -166 -207 -207c70 -42 166 -138 207 -209c41 70 136 167 207 208'], + 0x27E2: [589,87,803,45,758,'45 285h102c115 69 226 189 274 304c57 -136 201 -281 337 -338c-136 -57 -280 -202 -337 -338c-48 115 -158 236 -272 306h-104v66zM628 251c-70 41 -166 137 -207 208c-41 -70 -136 -166 -207 -207c70 -42 166 -138 207 -209c41 70 136 167 207 208'], + 0x27E3: [589,87,803,45,758,'758 219h-104c-114 -70 -224 -191 -272 -306c-57 136 -201 281 -337 338c136 57 280 202 337 338c48 -115 159 -235 274 -304h102v-66zM589 252c-71 41 -166 137 -207 207c-41 -71 -137 -167 -207 -208c71 -41 166 -138 207 -208c41 71 137 167 207 209'], + 0x27E4: [662,158,1182,45,1137,'1137 -158h-820v378h-272v66h272v376h820v-820zM1071 -92v688h-688v-688h688'], + 0x27E5: [662,158,1182,45,1137,'1137 220h-272v-378h-820v820h820v-376h272v-66zM799 -92v688h-688v-688h688'], + 0x27E6: [717,213,504,188,482,'482 -213h-294v930h294v-20h-67v-890h67v-20zM365 -193v890c-69 -2 -111 -19 -111 -97v-709c0 -64 47 -81 111 -84'], + 0x27E7: [717,213,504,22,316,'316 -213h-294v20h67v890h-67v20h294v-930zM250 -96v709c0 64 -47 81 -111 84v-890c69 2 111 19 111 97'], + 0x27EA: [719,213,610,73,545,'545 719l-192 -466l191 -466h-52l-209 466l210 466h52zM335 719l-192 -466l191 -466h-52l-209 466l210 466h52'], + 0x27EB: [719,213,610,65,537,'537 253l-210 -466h-52l192 466l-191 466h52zM327 253l-210 -466h-52l192 466l-191 466h52'], + 0x27EC: [719,213,488,178,466,'466 719l-66 -71v-790l65 -71h-52l-235 217v498l236 217h52zM350 -88v682l-106 -115v-452'], + 0x27ED: [719,213,488,22,310,'310 4l-236 -217h-52l66 71v790l-65 71h52l235 -217v-498zM244 27v452l-106 115v-682'], + 0x2980: [695,189,594,85,509,'509 -189h-66v884h66v-884zM330 -189h-66v884h66v-884zM151 -189h-66v884h66v-884'], + 0x2981: [487,-14,565,46,519,'519 252c0 -132 -106 -238 -235 -238c-132 0 -238 106 -238 238c0 129 106 235 238 235c129 0 235 -106 235 -235'], + 0x2982: [566,59,503,110,393,'393 425c0 -78 -63 -141 -142 -141c-78 0 -141 63 -141 141c0 79 63 141 141 141c79 0 142 -62 142 -141zM333 424c0 45 -37 81 -82 81s-81 -36 -81 -81s36 -80 81 -80s82 35 82 80zM393 82c0 -78 -63 -141 -142 -141c-78 0 -141 63 -141 141c0 79 63 142 141 142 c79 0 142 -63 142 -142zM333 82c0 45 -37 82 -82 82c-44 0 -81 -37 -81 -82c0 -44 37 -81 81 -81c45 0 82 37 82 81'], + 0x2983: [719,213,596,108,477,'477 -213h-133c-101 0 -161 50 -161 173v162c0 62 -15 110 -75 128v6c60 18 75 66 75 128v162c0 122 60 173 161 173h133v-20h-67v-892h67v-20zM360 -193v892h-16c-95 0 -95 -111 -95 -187v-91c0 -74 -25 -134 -95 -167v-2c70 -33 95 -93 95 -167v-91 c0 -73 0 -187 95 -187h16'], + 0x2984: [719,213,596,119,488,'488 256v-6c-60 -18 -75 -66 -75 -128v-162c0 -122 -60 -173 -161 -173h-133v20h67v892h-67v20h133c101 0 161 -50 161 -173v-162c0 -62 15 -110 75 -128zM442 252v2c-70 33 -95 93 -95 167v91c0 73 0 187 -95 187h-16v-892h16c95 0 95 111 95 187v91c0 74 25 134 95 167 '], + 0x2985: [719,213,463,70,393,'393 -191v-22c-186 81 -323 220 -323 466c0 240 137 385 323 466v-20c-19 -9 -35 -22 -52 -33c-53 -49 -94 -167 -94 -413c0 -251 38 -363 93 -412c17 -11 36 -24 53 -32zM283 -119c-56 72 -86 179 -86 372c0 189 30 298 86 371c-87 -71 -163 -183 -163 -371 c0 -192 76 -302 163 -372'], + 0x2986: [719,213,463,70,393,'70 697v22c186 -81 323 -220 323 -466c0 -240 -137 -385 -323 -466v20c19 9 35 22 52 33c53 49 94 167 94 413c0 251 -38 363 -93 412c-17 11 -36 24 -53 32zM343 253c0 192 -76 302 -163 372c56 -72 86 -179 86 -372c0 -189 -30 -298 -86 -371c87 71 163 183 163 371'], + 0x2987: [719,214,511,115,367,'367 719v-933c-152 100 -252 272 -252 467s100 366 252 466zM317 -109v724c-94 -93 -152 -221 -152 -362c0 -143 58 -270 152 -362'], + 0x2988: [719,214,511,144,396,'144 -214v933c152 -100 252 -272 252 -467s-100 -366 -252 -466zM194 614v-724c94 93 152 221 152 362c0 143 -58 270 -152 362'], + 0x2989: [719,213,511,100,352,'352 -213l-252 466l252 466v-932zM302 -17v540l-145 -270'], + 0x298A: [719,213,511,159,411,'411 253l-252 -466v932zM354 253l-145 270v-540'], + 0x298B: [719,213,469,188,447,'447 -83h-259v802h259v-50h-193v-702h193v-50zM447 -213h-259v50h259v-50'], + 0x298C: [719,213,469,22,281,'281 -83h-259v50h193v702h-193v50h259v-802zM281 -213h-259v50h259v-50'], + 0x298D: [719,213,469,188,447,'447 -213h-259v932h259v-50h-158l134 -133l-36 -36l-133 133v-796h193v-50'], + 0x298E: [719,213,469,22,281,'281 -213h-259v50h158l-134 133l36 36l133 -133v796h-193v50h259v-932'], + 0x298F: [719,213,469,188,447,'447 -213h-259v932h259v-50h-193v-796l133 133l36 -36l-134 -133h158v-50'], + 0x2990: [719,213,469,22,281,'281 -213h-259v50h193v796l-133 -133l-36 36l134 133h-158v50h259v-932'], + 0x2991: [719,213,400,73,357,'357 253c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM335 719l-192 -466l191 -466h-52l-209 466l210 466h52'], + 0x2992: [719,213,400,73,357,'357 253l-210 -466h-52l192 466l-191 466h52zM200 253c0 -38 -32 -63 -64 -63s-63 26 -63 63c0 34 25 64 63 64s64 -25 64 -64'], + 0x2993: [649,143,685,34,591,'591 -25l-197 97c32 -69 84 -134 157 -173l-26 -42c-71 42 -163 121 -204 250l-287 142v10l289 141c42 126 132 207 202 249l26 -45c-72 -38 -123 -101 -156 -168l196 96v-67l-227 -114c-9 -35 -14 -69 -14 -98s4 -62 13 -96l228 -115v-67zM305 321l-135 -67l134 -68 c-2 21 -4 44 -4 67c0 24 2 47 5 68'], + 0x2994: [649,143,685,94,651,'651 247l-289 -142c-42 -125 -132 -206 -202 -248l-26 45c71 38 122 101 155 168l-195 -96v67l227 114c9 35 14 68 14 98c0 29 -4 62 -13 96l-228 115v67l197 -97c-32 69 -84 134 -157 173l26 42c70 -42 162 -121 203 -251l288 -141v-10zM515 252l-135 68 c3 -21 5 -44 5 -67c0 -24 -2 -47 -5 -69'], + 0x2995: [649,143,685,86,643,'643 248l-253 -124c29 -87 87 -176 178 -225l-26 -42c-70 42 -159 118 -201 243l-92 -45c33 -62 82 -120 149 -156l-26 -42c-56 33 -125 89 -171 174l-115 -56v67l89 45c-18 47 -28 102 -28 166c0 63 11 118 30 166l-91 46v67l116 -58c47 85 115 142 170 175l26 -45 c-66 -35 -115 -92 -148 -153l92 -45c42 123 131 202 200 243l26 -45c-91 -48 -149 -136 -178 -222l253 -124v-10zM507 253l-134 67c-4 -24 -6 -46 -6 -67s2 -44 6 -67zM326 344l-101 51c-19 -50 -28 -100 -28 -142s8 -92 27 -142l101 51c-5 28 -8 58 -8 91c0 32 3 63 9 91'], + 0x2996: [649,143,685,42,599,'599 -25l-116 57c-47 -85 -115 -142 -170 -175l-26 45c66 36 115 92 148 153l-92 45c-42 -123 -131 -202 -200 -243l-26 45c91 49 149 136 178 222l-253 125v10l253 124c-30 86 -88 175 -178 224l26 42c69 -41 158 -118 200 -242l92 45c-33 62 -82 119 -148 155l26 42 c55 -33 124 -89 170 -174l116 57v-67l-90 -45c18 -48 29 -103 29 -167c0 -63 -11 -118 -30 -166l91 -45v-67zM359 163l101 -51c19 49 28 99 28 141c0 41 -9 92 -28 142l-101 -50c6 -29 9 -59 9 -92c0 -32 -3 -62 -9 -90zM178 254l133 -67c5 23 7 45 7 66s-2 44 -7 68'], + 0x2999: [661,155,211,50,161,'161 604c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57zM161 369c0 -30 -23 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c32 0 55 -25 55 -57zM161 134c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57z M161 -101c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57'], + 0x299A: [662,156,511,177,334,'334 543l-83 -83l82 -83l-83 -83l82 -83l-83 -83l82 -83l-83 -82l82 -84l-35 -35l-118 118l83 84l-82 82l83 84l-82 82l83 84l-82 82l83 84l-82 82l36 36'], + 0x299B: [547,72,685,42,662,'662 0h-457c0 -21 1 -42 4 -62l-65 -10c-4 23 -5 48 -5 72h-97v66h101c12 95 50 182 106 254l-181 182l48 45l176 -177c17 17 35 33 55 48l40 -53c-17 -13 -33 -27 -48 -42zM503 66l-207 207c-45 -60 -75 -130 -86 -207h293'], + 0x299C: [584,0,685,50,634,'634 0h-584v584h66v-279h239v-239h279v-66zM305 66v189h-189v-189h189'], + 0x299D: [584,0,685,50,634,'285 172c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM634 0h-584v584h66v-205c173 0 313 -140 313 -313h205v-66zM116 66h263c0 145 -118 263 -263 263v-263'], + 0x299E: [547,0,685,11,675,'562 283l48 -25c44 -23 65 -44 65 -82c0 -43 -37 -82 -89 -82c-50 0 -60 18 -75 18c-9 0 -13 -7 -17 -14h-17v94h19c15 -55 34 -77 80 -77c34 0 51 22 51 42c0 21 -11 38 -34 51l-35 20c-49 28 -74 48 -74 81c0 47 39 81 91 81c34 0 43 -19 65 -19c3 0 6 1 11 6h12v-89 h-19c-6 57 -28 81 -70 81c-28 0 -48 -15 -48 -44c0 -15 17 -32 36 -42zM631 0h-620l546 547l48 -45l-435 -436h461v-66'], + 0x299F: [396,0,685,24,643,'643 0h-619l529 396l38 -53l-368 -277h420v-66'], + 0x29A0: [517,13,685,57,654,'654 253l-421 -177c8 -19 17 -37 27 -55l-57 -34c-11 20 -22 42 -31 64l-90 -37l-25 60l93 40c-13 46 -19 93 -19 139s6 91 18 135l-92 38l25 62l88 -37c8 22 19 44 32 66l57 -34c-11 -18 -20 -38 -28 -57zM482 253l-270 110c-10 -36 -15 -72 -15 -110 c0 -37 5 -76 15 -114'], + 0x29A1: [609,-12,685,77,607,'607 464l-34 -57c-18 11 -38 20 -57 28l-172 -423l-178 421c-19 -8 -37 -17 -55 -27l-34 57c20 11 42 22 64 31l-37 90l60 25l40 -93c46 13 93 19 139 19s91 -6 135 -18l38 92l62 -25l-37 -88c22 -8 44 -19 66 -32zM342 184l111 270c-36 10 -74 15 -112 15 c-37 0 -74 -5 -112 -15'], + 0x29A2: [547,0,685,42,662,'662 547l-546 -547l-48 45l435 436h-461v66h620'], + 0x29A3: [547,0,685,42,662,'662 0h-620v66h461l-435 436l48 45'], + 0x29A4: [547,200,685,23,643,'643 0h-620l546 547l48 -45l-435 -436h461v-66zM643 -200h-620v66h620v-66'], + 0x29A5: [547,200,685,42,662,'662 0h-620v66h461l-435 436l48 45zM662 -200h-620v66h620v-66'], + 0x29A6: [547,0,900,40,860,'860 0h-588l-232 521l59 26l215 -481h546v-66'], + 0x29A7: [547,0,900,40,860,'860 481h-546l-215 -481l-59 26l232 521h588v-66'], + 0x29A8: [574,72,685,29,649,'649 0h-97c0 -24 -1 -49 -5 -72l-65 10c3 20 4 41 4 62h-457l323 323c-15 15 -31 29 -48 42l40 53c20 -15 38 -31 55 -48l90 91c6 7 10 13 10 19c0 17 -19 24 -36 24c-43 1 -59 3 -98 10l1 27c29 -2 55 -3 81 -3c65 0 126 8 195 36l7 -7c-28 -67 -37 -126 -37 -190 c0 -27 2 -53 4 -84l-28 -1c-9 38 -10 61 -10 98c0 18 -3 32 -21 32c-6 0 -13 0 -22 -9l-93 -93c56 -72 94 -159 106 -254h101v-66zM188 66h293c-11 77 -41 147 -86 207'], + 0x29A9: [574,72,685,36,656,'656 0h-457c0 -21 1 -42 4 -62l-65 -10c-4 23 -5 48 -5 72h-97v66h101c12 95 50 182 106 254l-93 93c-9 9 -16 9 -22 9c-18 0 -21 -14 -21 -32c0 -37 -1 -60 -10 -98l-28 1c2 31 4 57 4 84c0 64 -9 123 -37 190l7 7c69 -28 130 -36 195 -36c26 0 52 1 81 3l1 -27 c-39 -7 -55 -9 -98 -10c-17 0 -36 -7 -36 -24c0 -6 4 -12 10 -19l90 -91c17 17 35 33 55 48l40 -53c-17 -13 -33 -27 -48 -42zM497 66l-207 207c-45 -60 -75 -130 -86 -207h293'], + 0x29AA: [578,68,685,29,649,'649 -61l-7 -7c-69 28 -130 36 -195 36c-26 0 -52 -1 -81 -3l-1 27c39 7 55 9 98 10c17 0 36 7 36 24c0 6 -4 12 -10 19l-90 91c-17 -17 -35 -33 -55 -48l-40 53c17 13 33 27 48 42l-323 323h457c0 21 -1 42 -4 62l65 10c4 -23 5 -48 5 -72h97v-66h-101 c-12 -95 -50 -182 -106 -254l93 -93c9 -9 16 -9 22 -9c18 0 21 14 21 32c0 37 1 60 10 98l28 -1c-2 -31 -4 -57 -4 -84c0 -64 9 -123 37 -190zM481 440h-293l207 -207c45 60 75 130 86 207'], + 0x29AB: [578,68,685,36,656,'656 506l-323 -323c15 -15 31 -29 48 -42l-40 -53c-20 15 -38 31 -55 48l-90 -91c-6 -7 -10 -13 -10 -19c0 -17 19 -24 36 -24c43 -1 59 -3 98 -10l-1 -27c-29 2 -55 3 -81 3c-65 0 -126 -8 -195 -36l-7 7c28 67 37 126 37 190c0 27 -2 53 -4 84l28 1 c9 -38 10 -61 10 -98c0 -18 3 -32 21 -32c6 0 13 0 22 9l93 93c-56 72 -94 159 -106 254h-101v66h97c0 24 1 49 5 72l65 -10c-3 -20 -4 -41 -4 -62h457zM497 440h-293c11 -77 41 -147 86 -207'], + 0x29AC: [562,58,706,34,680,'673 562l7 -7c-28 -69 -36 -130 -36 -195c0 -26 1 -52 3 -81l-27 -1c-7 39 -9 55 -10 98c0 17 -7 36 -24 36c-6 0 -12 -4 -19 -10l-91 -90c17 -17 33 -35 48 -55l-53 -40c-13 17 -27 33 -42 48l-323 -323v457c-21 0 -42 -1 -62 -4l-10 65c23 4 48 5 72 5v97h66v-101 c95 -12 182 -50 254 -106l93 93c9 9 9 16 9 22c0 18 -14 21 -32 21c-37 0 -60 1 -98 10l1 28c31 -2 57 -4 84 -4c64 0 123 9 190 37zM172 101l207 207c-60 45 -130 75 -207 86v-293'], + 0x29AD: [562,58,706,26,672,'672 460l-10 -65c-20 3 -41 4 -62 4v-457l-323 323c-15 -15 -29 -31 -42 -48l-53 40c15 20 31 38 48 55l-91 90c-7 6 -13 10 -19 10c-17 0 -24 -19 -24 -36c-1 -43 -3 -59 -10 -98l-27 1c2 29 3 55 3 81c0 65 -8 126 -36 195l7 7c67 -28 126 -37 190 -37c27 0 53 2 84 4 l1 -28c-38 -9 -61 -10 -98 -10c-18 0 -32 -3 -32 -21c0 -6 0 -13 9 -22l93 -93c72 56 159 94 254 106v101h66v-97c24 0 49 -1 72 -5zM534 101v293c-77 -11 -147 -41 -207 -86'], + 0x29AE: [562,58,706,34,680,'680 -51l-7 -7c-67 28 -126 37 -190 37c-27 0 -53 -2 -84 -4l-1 28c38 9 61 10 98 10c18 0 32 3 32 21c0 6 0 13 -9 22l-93 93c-72 -56 -159 -94 -254 -106v-101h-66v97c-24 0 -49 1 -72 5l10 65c20 -3 41 -4 62 -4v457l323 -323c15 15 29 31 42 48l53 -40 c-15 -20 -31 -38 -48 -55l91 -90c7 -6 13 -10 19 -10c17 0 24 19 24 36c1 43 3 59 10 98l27 -1c-2 -29 -3 -55 -3 -81c0 -65 8 -126 36 -195zM379 196l-207 207v-293c77 11 147 41 207 86'], + 0x29AF: [562,58,708,26,672,'662 109l10 -65c-23 -4 -48 -5 -72 -5v-97h-66v101c-95 12 -182 50 -254 106l-93 -93c-9 -9 -9 -16 -9 -22c0 -18 14 -21 32 -21c37 0 60 -1 98 -10l-1 -28c-31 2 -57 4 -84 4c-64 0 -123 -9 -190 -37l-7 7c28 69 36 130 36 195c0 26 -1 52 -3 81l27 1 c7 -39 9 -55 10 -98c0 -17 7 -36 24 -36c6 0 12 4 19 10l91 90c-17 17 -33 35 -48 55l53 40c13 -17 27 -33 42 -48l323 323v-457c21 0 42 1 62 4zM534 110v293l-207 -207c60 -45 130 -75 207 -86'], + 0x29B0: [583,79,762,50,712,'126 583l58 -66c57 40 122 66 197 66c182 0 331 -150 331 -331c0 -88 -36 -172 -94 -231l87 -100h-69l-58 66c-57 -42 -125 -66 -197 -66c-181 0 -331 149 -331 331c0 87 35 168 95 230l-88 101h69zM228 466l346 -395c46 47 72 113 72 182c0 146 -118 264 -265 264 c-55 0 -122 -22 -153 -51zM535 36l-348 398c-45 -50 -71 -113 -71 -181c0 -147 119 -266 265 -266c56 0 109 17 154 49'], + 0x29B1: [717,79,762,50,712,'681 667h-600v50h600v-50zM705 583l-88 -101c60 -62 95 -143 95 -230c0 -182 -150 -331 -331 -331c-72 0 -140 24 -197 66l-58 -66h-69l87 100c-58 59 -94 143 -94 231c0 181 149 331 331 331c75 0 140 -26 197 -66l58 66h69zM575 434l-348 -398c45 -32 98 -49 154 -49 c146 0 265 119 265 266c0 68 -26 131 -71 181zM188 71l346 395c-31 29 -98 51 -153 51c-147 0 -265 -118 -265 -264c0 -69 26 -135 72 -182'], + 0x29B2: [819,79,762,50,712,'495 705c0 -64 -50 -115 -114 -115s-115 51 -115 115s51 114 115 114s114 -50 114 -114zM445 705c0 33 -31 64 -64 64c-34 0 -65 -31 -65 -64c0 -34 31 -65 65 -65c33 0 64 31 64 65zM705 583l-88 -101c60 -62 95 -143 95 -230c0 -182 -150 -331 -331 -331 c-72 0 -140 24 -197 66l-58 -66h-69l87 100c-58 59 -94 143 -94 231c0 181 149 331 331 331c75 0 140 -26 197 -66l58 66h69zM575 434l-348 -398c45 -32 98 -49 154 -49c146 0 265 119 265 266c0 68 -26 131 -71 181zM188 71l346 395c-31 29 -98 51 -153 51 c-147 0 -265 -118 -265 -264c0 -69 26 -135 72 -182'], + 0x29B3: [832,79,762,50,712,'635 716v-8c-74 -32 -101 -58 -152 -117l-16 14c10 17 19 32 33 45c8 7 12 15 12 22c0 6 -5 15 -17 15h-352v50h349c14 0 20 10 20 17c0 6 -4 11 -11 19c-11 12 -17 19 -33 45l15 14c51 -58 78 -85 152 -116zM705 583l-88 -101c60 -62 95 -143 95 -230 c0 -182 -150 -331 -331 -331c-72 0 -140 24 -197 66l-58 -66h-69l87 100c-58 59 -94 143 -94 231c0 181 149 331 331 331c75 0 140 -26 197 -66l58 66h69zM575 434l-348 -398c45 -32 98 -49 154 -49c146 0 265 119 265 266c0 68 -26 131 -71 181zM188 71l346 395 c-31 29 -98 51 -153 51c-147 0 -265 -118 -265 -264c0 -69 26 -135 72 -182'], + 0x29B4: [832,79,762,50,712,'598 687h-349c-14 0 -20 -10 -20 -17c0 -6 4 -11 11 -19c11 -12 17 -19 33 -45l-15 -14c-51 58 -78 85 -152 116v8c74 32 101 57 152 116l16 -14c-10 -17 -19 -31 -33 -44c-8 -7 -12 -15 -12 -22c0 -6 5 -15 17 -15h352v-50zM705 583l-88 -101c60 -62 95 -143 95 -230 c0 -182 -150 -331 -331 -331c-72 0 -140 24 -197 66l-58 -66h-69l87 100c-58 59 -94 143 -94 231c0 181 149 331 331 331c75 0 140 -26 197 -66l58 66h69zM575 434l-348 -398c45 -32 98 -49 154 -49c146 0 265 119 265 266c0 68 -26 131 -71 181zM188 71l346 395 c-31 29 -98 51 -153 51c-147 0 -265 -118 -265 -264c0 -69 26 -135 72 -182'], + 0x29B5: [623,119,910,24,886,'886 219h-61c-17 -189 -176 -338 -370 -338s-353 149 -370 338h-61v66h61c17 189 176 338 370 338s353 -149 370 -338h61v-66zM152 285h606c-16 153 -146 272 -303 272s-287 -119 -303 -272zM758 219h-606c16 -153 146 -272 303 -272s287 119 303 272'], + 0x29B6: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM454 555v-606c155 16 272 148 272 303s-117 287 -272 303zM388 -51v606c-155 -16 -272 -148 -272 -303s117 -287 272 -303'], + 0x29B7: [623,119,842,50,792,'560 39h-66v426h66v-426zM346 39h-66v426h66v-426zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x29B8: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM230 490l429 -429c42 52 67 119 67 191c0 168 -137 305 -305 305c-72 0 -139 -25 -191 -67zM612 14l-429 429c-42 -52 -67 -119 -67 -191c0 -168 137 -305 305 -305 c72 0 139 25 191 67'], + 0x29B9: [623,119,842,50,792,'630 77h-418v66h176v367h66v-367h176v-66zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x29BA: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM454 285h270c-15 142 -128 255 -270 270v-270zM388 285v270c-142 -15 -255 -128 -270 -270h270zM724 219h-606c17 -159 150 -272 309 -272c152 0 281 123 297 272'], + 0x29BB: [623,119,842,50,792,'781 564l-75 -75c54 -64 86 -147 86 -237s-32 -173 -86 -238l74 -74l-47 -47l-74 74c-65 -54 -148 -86 -238 -86c-91 0 -174 33 -238 87l-75 -75l-47 47l75 75c-54 64 -86 147 -86 237s32 173 86 238l-74 74l47 47l74 -74c65 54 148 86 238 86c91 0 174 -33 238 -87 l75 75zM421 299l191 191c-52 42 -119 67 -191 67s-139 -25 -191 -67zM468 252l191 -191c42 52 67 119 67 191s-25 138 -67 191zM374 252l-191 191c-42 -52 -67 -119 -67 -191s25 -138 67 -191zM612 14l-191 191l-191 -191c52 -42 119 -67 191 -67s139 25 191 67'], + 0x29BC: [623,119,842,50,792,'631 141c0 -32 -26 -58 -59 -58c-31 0 -57 27 -57 58c0 30 28 58 59 58c30 0 57 -28 57 -58zM624 408l-360 -360l-47 47l360 360zM327 364c0 -32 -26 -57 -58 -57c-31 0 -58 26 -58 57s28 59 58 59s58 -28 58 -59zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371 s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x29BD: [882,179,842,50,792,'454 694v-72c191 -17 338 -178 338 -370s-147 -353 -338 -370v-61h-66v61c-191 17 -338 178 -338 370s147 353 338 370v73c0 9 -12 26 -22 26c-11 0 -18 -7 -25 -14c-31 -30 -61 -58 -97 -82l-19 20c77 66 151 142 191 237h10c41 -95 114 -171 191 -238l-19 -20 c-35 25 -64 54 -96 82c-8 7 -17 14 -28 14c-14 0 -20 -14 -20 -26zM454 555v-606c155 16 272 148 272 303s-117 287 -272 303zM388 -51v606c-155 -16 -272 -148 -272 -303s117 -287 272 -303'], + 0x29BE: [623,119,842,50,792,'614 252c0 -106 -88 -193 -193 -193c-106 0 -192 86 -192 193c0 104 86 192 192 192c114 0 193 -87 193 -192zM548 251c0 72 -55 127 -127 127s-126 -55 -126 -127s54 -126 126 -126s127 54 127 126zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371 s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x29BF: [623,119,842,50,792,'611 252c0 -107 -85 -192 -192 -192c-108 0 -192 85 -192 195c0 107 85 189 195 189c104 0 189 -86 189 -192zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305 s137 -305 305 -305s305 137 305 305'], + 0x29C0: [623,119,842,50,792,'568 29l-392 212v21l392 213v-77l-269 -146l269 -146v-77zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x29C1: [623,119,842,50,792,'666 241l-392 -212v77l269 146l-269 146v77l392 -213v-21zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x29C2: [623,119,1091,50,1056,'1056 252c0 -71 -57 -128 -128 -128s-128 57 -128 128s57 128 128 128s128 -57 128 -128zM1006 252c0 43 -35 78 -78 78s-78 -35 -78 -78s35 -78 78 -78s78 35 78 78zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252 c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x29C3: [623,119,1091,50,1056,'1056 155h-277c-42 -158 -187 -274 -358 -274c-205 0 -371 166 -371 371s166 371 371 371c171 0 315 -116 358 -273h277v-50h-267c2 -16 3 -32 3 -48s-1 -32 -3 -47h267v-50zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x29C4: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 -92v651l-650 -651h650zM762 596h-651v-652'], + 0x29C5: [662,158,910,45,865,'865 -158h-820v820h820v-820zM799 -56v652h-651zM761 -92l-650 651v-651h650'], + 0x29C6: [662,158,910,45,865,'688 142c0 -24 -14 -50 -53 -50c-57 0 -64 87 -171 146c0 -99 44 -156 44 -196c0 -30 -25 -55 -53 -55c-29 0 -53 25 -53 55c0 40 44 97 44 196c-67 -45 -113 -116 -144 -134c-13 -7 -24 -12 -36 -12c-32 0 -52 23 -52 43c0 18 10 45 31 54c35 15 112 17 190 62 c-78 45 -155 44 -192 61c-17 8 -29 24 -29 45c0 25 16 53 51 53c9 0 17 -3 28 -9c41 -25 76 -90 153 -135c0 99 -44 160 -44 201c0 30 24 50 53 50c28 0 53 -20 53 -50c0 -41 -44 -101 -44 -200c102 53 109 110 146 134c12 6 20 9 29 9c32 0 49 -22 49 -53 c0 -21 -12 -38 -30 -46c-32 -15 -85 -4 -187 -60c93 -52 154 -46 188 -62c19 -9 29 -26 29 -47zM865 -158h-820v820h820v-820zM799 -92v688h-688v-688h688'], + 0x29C7: [662,158,910,45,865,'647 253c0 -106 -88 -193 -193 -193c-106 0 -192 86 -192 193c0 104 86 192 192 192c114 0 193 -87 193 -192zM595 252c0 78 -63 141 -141 141c-79 0 -140 -63 -140 -141c0 -79 61 -140 140 -140c78 0 141 61 141 140zM865 -158h-820v820h820v-820zM799 -92v688h-688 v-688h688'], + 0x29C8: [662,158,910,45,865,'640 66h-370v390h370v-390zM588 118v286h-266v-286h266zM865 -158h-820v820h820v-820zM799 -92v688h-688v-688h688'], + 0x29C9: [712,207,1046,64,982,'982 -207h-612v308h-306v611h612v-308h306v-611zM610 404v242h-480v-479h240v237h240zM610 167v171h-174v-171h174zM916 -141v479h-240v-237h-240v-242h480'], + 0x29CA: [1003,127,1145,35,1110,'636 940c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM1110 -127h-1075l538 938zM995 -61l-422 739l-424 -739h846'], + 0x29CB: [811,259,1145,35,1110,'1110 -127h-1075l538 938zM995 -61l-422 739l-424 -739h846zM1110 -259h-1075v66h1075v-66'], + 0x29CC: [811,127,1145,35,1110,'559 239l53 -27c49 -25 74 -49 74 -90c0 -48 -42 -90 -100 -90c-56 0 -67 20 -85 20c-10 0 -13 -8 -18 -15h-19v101h21c16 -60 37 -83 89 -83c38 0 59 23 59 47c0 22 -13 42 -40 55l-43 20c-56 26 -79 55 -79 91c0 51 44 87 101 87c39 0 49 -20 73 -20c4 0 7 0 14 7h12 v-98h-21c-6 63 -31 89 -79 89c-31 0 -52 -16 -52 -49c0 -16 18 -34 40 -45zM1110 -127h-1075l538 938zM995 -61l-422 739l-424 -739h846'], + 0x29CD: [811,127,1165,15,1150,'1150 -127h-1135v66h68l500 872l499 -872h68v-66zM1005 -61l-422 739l-424 -739h846'], + 0x29CE: [698,193,780,70,710,'627 420l-557 -278v556zM482 419v2l-346 172v-346zM710 -193l-557 278l557 278v-556zM644 -88v346l-346 -172v-2'], + 0x29CF: [531,25,857,48,777,'777 -25h-66v556h66v-556zM605 -25l-557 278l557 278v-556zM539 80v346l-346 -172v-2'], + 0x29D0: [531,25,857,80,809,'809 253l-557 -278v556zM664 252v2l-346 172v-346zM146 -25h-66v556h66v-556'], + 0x29D1: [582,80,810,93,716,'716 -80l-312 287l-311 -287v662l311 -286l312 286v-662zM650 70v363l-197 -182'], + 0x29D2: [582,80,810,93,716,'716 -80l-312 287l-311 -287v662l311 -286l312 286v-662zM356 251l-197 182v-363'], + 0x29D3: [582,80,810,93,716,'716 -80l-312 287l-311 -287v662l311 -286l312 286v-662'], + 0x29D4: [582,80,810,94,717,'717 -80l-312 287l-311 -287v662l311 -286l312 286v-88l-263 -243l263 -244v-87'], + 0x29D5: [582,80,810,93,716,'716 -80l-311 287l-312 -287v87l263 244l-263 243v88l312 -286l311 286v-662'], + 0x29D6: [602,100,810,74,736,'736 -100h-662l285 351l-285 351h662l-285 -351zM598 536h-386l193 -239zM598 -34l-193 239l-193 -239h386'], + 0x29D7: [602,100,810,74,736,'736 -100h-662l285 351l-285 351h662l-285 -351'], + 0x29D8: [620,116,511,177,334,'334 501l-83 -83l82 -83l-83 -83l82 -83l-83 -83l82 -83l-117 -119l-37 36l83 84l-82 82l83 84l-82 82l83 84l-82 82l83 84l-82 82l36 36'], + 0x29D9: [620,116,511,176,333,'333 -80l-37 -36l-117 119l82 83l-83 83l82 83l-83 83l82 83l-83 83l117 119l36 -36l-82 -82l83 -84l-82 -82l83 -84l-82 -82l83 -84l-82 -82'], + 0x29DA: [620,116,688,177,511,'511 501l-83 -83l82 -83l-83 -83l82 -83l-83 -83l82 -83l-117 -119l-37 36l83 84l-82 82l83 84l-82 82l83 84l-82 82l83 84l-82 82l36 36zM334 501l-83 -83l82 -83l-83 -83l82 -83l-83 -83l82 -83l-117 -119l-37 36l83 84l-82 82l83 84l-82 82l83 84l-82 82l83 84l-82 82 l36 36'], + 0x29DB: [620,116,688,177,511,'511 -80l-37 -36l-117 119l82 83l-83 83l82 83l-83 83l82 83l-83 83l117 119l36 -36l-82 -82l83 -84l-82 -82l83 -84l-82 -82l83 -84l-82 -82zM334 -80l-37 -36l-117 119l82 83l-83 83l82 83l-83 83l82 83l-83 83l117 119l36 -36l-82 -82l83 -84l-82 -82l83 -84l-82 -82 l83 -84l-82 -82'], + 0x29DC: [430,0,926,70,854,'824 226h30c0 -154 -90 -226 -176 -226c-96 0 -152 67 -197 158c-74 -118 -134 -158 -223 -158c-126 0 -188 115 -188 212c0 134 92 218 182 218c93 0 138 -57 221 -199c33 -57 98 -147 194 -147c86 0 157 49 157 141v1zM424 241c-29 34 -68 105 -167 105 c-85 0 -157 -50 -157 -141c0 -70 46 -121 124 -121c81 0 113 19 200 157'], + 0x29DD: [653,0,926,70,854,'854 210c0 -138 -90 -210 -176 -210c-96 0 -152 67 -197 158c-74 -118 -134 -158 -223 -158c-126 0 -188 115 -188 212c0 134 92 218 182 218c8 0 15 0 23 -1c1 162 91 224 187 224c95 0 186 -62 187 -224c8 1 15 1 24 1c58 0 181 -36 181 -220zM619 426v2 c0 92 -71 141 -157 141s-157 -49 -157 -141v-6c64 -21 99 -81 136 -148c79 109 128 142 178 152zM501 192v-3c27 -36 77 -105 166 -105c86 0 157 49 157 141c0 69 -46 121 -124 121c-81 0 -108 -27 -199 -154zM424 241c-29 34 -68 105 -167 105c-85 0 -157 -50 -157 -141 c0 -70 46 -121 124 -121c81 0 113 19 200 157'], + 0x29DE: [695,189,926,70,854,'487 695v-353c72 82 126 88 186 88c58 0 181 -36 181 -220c0 -138 -90 -210 -176 -210c-87 0 -149 54 -191 131v-320h-50v274c-53 -62 -112 -85 -179 -85c-126 0 -188 115 -188 212c0 134 92 218 182 218c92 0 143 -61 185 -135v400h50zM493 192v-3 c27 -36 85 -105 174 -105c86 0 157 49 157 141c0 69 -46 121 -124 121c-81 0 -116 -27 -207 -154zM432 241c-29 34 -76 105 -175 105c-85 0 -157 -50 -157 -141c0 -70 46 -121 124 -121c81 0 121 19 208 157'], + 0x29DF: [403,-103,1145,50,1095,'346 286h453c15 67 74 117 146 117c83 0 150 -67 150 -150s-67 -150 -150 -150c-72 0 -131 50 -146 117h-453c-15 -67 -74 -117 -146 -117c-83 0 -150 67 -150 150s67 150 150 150c72 0 131 -50 146 -117zM1045 253c0 55 -45 100 -100 100s-100 -45 -100 -100 s45 -100 100 -100s100 45 100 100zM300 253c0 55 -45 100 -100 100s-100 -45 -100 -100s45 -100 100 -100s100 45 100 100'], + 0x29E0: [662,157,910,45,865,'865 -157h-712l-108 64v755h712l108 -64v-755zM799 -91v623h-622v-623h622'], + 0x29E1: [512,8,667,24,613,'613 192h-589l589 320v-320zM546 258v144l-265 -144h265zM613 -8h-589v66h589v-66'], + 0x29E2: [414,0,790,64,726,'726 0h-662v414h50v-348h256v348h50v-348h256v348h50v-414'], + 0x29E3: [662,156,685,47,637,'637 120h-215l-109 -276h-55l109 276h-156l-109 -276h-55l109 276h-108v66h134l53 134h-187v66h213l110 276h55l-110 -276h156l110 276h55l-110 -276h110v-66h-136l-53 -134h189v-66zM446 320h-156l-53 -134h156'], + 0x29E4: [842,156,685,47,637,'618 842h19c-4 -58 -52 -138 -114 -138c-61 0 -143 88 -189 88c-43 0 -76 -39 -86 -88h-20c3 69 56 138 117 138s144 -88 189 -88c44 0 74 39 84 88zM637 120h-215l-109 -276h-55l109 276h-156l-109 -276h-55l109 276h-108v66h134l53 134h-187v66h213l110 276h55 l-110 -276h156l110 276h55l-110 -276h110v-66h-136l-53 -134h189v-66zM446 320h-156l-53 -134h156'], + 0x29E5: [662,156,685,48,637,'637 28h-251l-73 -184h-55l73 184h-155l-73 -184h-55l73 184h-73v66h99l50 126h-149v66h175l50 126h-225v66h251l73 184h55l-73 -184h155l73 184h55l-73 -184h73v-66h-99l-50 -126h149v-66h-175l-50 -126h225v-66zM483 412h-155l-50 -126h155zM407 220h-155l-50 -126h155 '], + 0x29E6: [584,78,798,60,738,'738 -78h-66v198h-546v-198h-66v662h66v-199h546v199h66v-662zM672 186v133h-546v-133h546'], + 0x29E7: [695,189,628,48,580,'580 62h-233v-251h-66v251h-233v66h233v250h-233v66h233v251h66v-251h233v-66h-233v-250h233v-66'], + 0x29E8: [811,127,1145,35,1110,'1110 811l-538 -938l-537 938h1075zM996 745h-424v-739'], + 0x29E9: [811,127,1145,35,1110,'1110 811l-537 -938l-538 938h1075zM573 745h-424l424 -739v739'], + 0x29EA: [744,241,762,32,730,'730 394l-316 -316v-137c0 -10 12 -26 22 -26c9 0 15 4 25 14c29 29 53 45 86 67l19 -20c-75 -65 -140 -121 -180 -217h-10c-41 96 -105 152 -181 218l19 20c33 -23 55 -37 86 -67c9 -9 20 -14 28 -14c10 0 20 8 20 26v136l-316 316l349 350'], + 0x29EC: [743,241,762,50,712,'348 -58v141c-168 16 -298 157 -298 329c0 183 148 331 331 331s331 -148 331 -331c0 -172 -131 -313 -298 -329v-142c0 -10 12 -26 22 -26c9 0 15 4 25 14c29 29 53 45 86 67l19 -20c-75 -65 -140 -121 -180 -217h-10c-41 96 -105 152 -181 218l19 20 c33 -23 55 -37 86 -67c9 -9 20 -14 28 -14c10 0 20 8 20 26zM646 412c0 146 -119 265 -265 265s-265 -119 -265 -265s119 -265 265 -265s265 119 265 265'], + 0x29ED: [743,241,762,50,712,'348 -58v141c-168 16 -298 157 -298 329c0 183 148 331 331 331s331 -148 331 -331c0 -172 -131 -313 -298 -329v-142c0 -10 12 -26 22 -26c9 0 15 4 25 14c29 29 53 45 86 67l19 -20c-75 -65 -140 -121 -180 -217h-10c-41 96 -105 152 -181 218l19 20 c33 -23 55 -37 86 -67c9 -9 20 -14 28 -14c10 0 20 8 20 26'], + 0x29EE: [747,243,762,97,665,'665 -32h-251v-145h174v-66h-398v66h158v145h-251v568h251v145h-158v66h398v-66h-174v-145h251v-568zM599 34v436h-436v-436h436'], + 0x29EF: [747,243,762,97,665,'665 -32h-251v-145h174v-66h-398v66h158v145h-251v568h251v145h-158v66h398v-66h-174v-145h251v-568'], + 0x29F0: [747,243,762,32,730,'730 252l-316 -316v-113h174v-66h-398v66h158v113l-316 316l316 316v113h-158v66h398v-66h-174v-113zM637 252l-256 256l-256 -256l256 -256'], + 0x29F1: [747,243,762,32,730,'730 252l-316 -316v-113h174v-66h-398v66h158v113l-316 316l316 316v113h-158v66h398v-66h-174v-113'], + 0x29F2: [747,243,762,65,697,'406 681v-114c163 -13 291 -151 291 -315s-127 -302 -291 -315v-114h174v-66h-398v66h158v116c-157 20 -275 155 -275 313s118 292 275 313v116h-158v66h398v-66h-174zM631 252c0 137 -113 250 -250 250s-250 -113 -250 -250s113 -250 250 -250s250 113 250 250'], + 0x29F3: [747,243,762,65,697,'406 681v-114c163 -13 291 -151 291 -315s-127 -302 -291 -315v-114h174v-66h-398v66h158v116c-157 20 -275 155 -275 313s118 292 275 313v116h-158v66h398v-66h-174'], + 0x29F4: [521,13,926,55,871,'871 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-501v66h502c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 63 -82 96l20 19c65 -75 141 -150 237 -190zM182 458c0 -34 -25 -64 -63 -64s-64 25 -64 64 c0 38 32 63 64 63s63 -26 63 -63zM182 51c0 -34 -29 -64 -64 -64c-33 0 -63 30 -63 64c0 40 30 63 63 63c35 0 64 -22 64 -63'], + 0x29F6: [765,80,520,94,426,'388 715h-256v50h256v-50zM426 662l-269 -742h-63l269 742h63'], + 0x29F7: [662,80,520,94,426,'426 -80h-63l-126 346h-136v50h118l-125 346h63l125 -346h136v-50h-118'], + 0x29FA: [532,25,685,64,621,'621 220h-180v-245h-66v245h-65v-245h-66v245h-180v66h180v246h66v-246h65v246h66v-246h180v-66'], + 0x29FB: [532,25,685,64,621,'621 220h-113v-245h-66v245h-66v-245h-66v245h-66v-245h-66v245h-114v66h114v246h66v-246h66v246h66v-246h66v246h66v-246h113v-66'], + 0x29FC: [713,213,459,77,394,'394 -136v-77c-58 187 -170 358 -317 430v66c147 72 259 243 317 430v-77c-21 -123 -75 -273 -249 -384v-4c174 -111 228 -261 249 -384'], + 0x29FD: [713,213,459,65,382,'382 283v-66c-147 -72 -259 -243 -317 -430v77c21 123 75 273 249 384v4c-174 111 -228 261 -249 384v77c58 -187 170 -358 317 -430'], + 0x29FE: [540,36,762,93,669,'669 190l-258 32l33 -258h-126l32 258l-257 -32v126l257 -32l-32 256h126l-32 -256l257 32v-126'], + 0x29FF: [316,-190,762,93,669,'669 316v-126c-96 19 -192 32 -288 32c-97 1 -192 -13 -288 -32v126c96 -19 191 -32 288 -32s192 13 288 32'], + 0xE09A: [719,213,708,18,690,'504 699v20c112 -97 186 -250 186 -466s-74 -369 -186 -466v22c86 125 120 243 120 444s-34 321 -120 446zM204 -193v-20c-112 97 -186 250 -186 466s74 369 186 466v-22c-86 -125 -120 -243 -120 -444s34 -321 120 -446'], + 0xE09B: [719,213,708,18,690,'504 699v20c112 -97 186 -250 186 -466s-74 -369 -186 -466v22c86 125 120 243 120 444s-34 321 -120 446zM411 253c0 -29 -26 -54 -56 -54c-31 0 -55 24 -55 55s25 56 56 56c29 0 55 -27 55 -57zM204 -193v-20c-112 97 -186 250 -186 466s74 369 186 466v-22 c-86 -125 -120 -243 -120 -444s34 -321 120 -446'], + 0xE0BF: [836,236,636,50,586,'586 494l-29 -47l-507 342l29 47zM586 305l-29 -47l-507 342l29 47zM586 106l-507 -342l-29 47l507 342'], + 0xE0C0: [836,236,636,50,586,'586 494l-29 -47l-507 342l29 47zM586 295l-507 -342l-29 47l507 342zM586 106l-507 -342l-29 47l507 342'], + 0xE0C1: [836,236,636,50,586,'586 789l-507 -342l-29 47l507 342zM586 600l-507 -342l-29 47l507 342zM586 -189l-29 -47l-507 342l29 47'], + 0xE0C2: [836,236,636,50,586,'586 789l-507 -342l-29 47l507 342zM586 0l-29 -47l-507 342l29 47zM586 -189l-29 -47l-507 342l29 47'], + 0xE0C3: [386,-120,750,50,700,'700 320h-166v66h166v-66zM458 320h-166v66h166v-66zM700 120h-650v66h650v-66zM216 320h-166v66h166v-66'], + 0xE0C4: [478,-28,750,50,700,'700 412h-166v66h166v-66zM458 412h-166v66h166v-66zM700 220h-650v66h650v-66zM216 412h-166v66h166v-66zM700 28h-650v66h650v-66'], + 0xE0C5: [478,-28,750,50,700,'700 412h-650v66h650v-66zM700 28h-166v66h166v-66zM700 220h-650v66h650v-66zM458 28h-166v66h166v-66zM216 28h-166v66h166v-66'], + 0xE0C6: [286,-220,750,50,700,'700 220h-650v66h650v-66'], + 0xE0C7: [402,-120,750,50,700,'700 339c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM439 339c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63s63 -26 63 -63zM700 120h-650v66h650v-66zM177 339c0 -34 -25 -64 -63 -64s-64 25 -64 64c0 38 32 63 64 63 s63 -26 63 -63'], + 0xE0C8: [386,-120,1000,50,950,'950 320h-900v66h900v-66zM950 120h-900v66h900v-66'], + 0xE0C9: [478,-28,1000,50,950,'950 412h-900v66h900v-66zM950 220h-900v66h900v-66zM950 28h-900v66h900v-66'], + 0xE0CA: [544,38,1000,50,950,'950 478h-900v66h900v-66zM950 306h-900v66h900v-66zM950 134h-900v66h900v-66zM950 -38h-900v66h900v-66'], + 0xE0CB: [386,-120,750,50,700,'700 320h-650v66h650v-66zM700 120h-650v66h650v-66'], + 0xE0CC: [478,-28,750,50,700,'700 412h-650v66h650v-66zM700 220h-650v66h650v-66zM700 28h-650v66h650v-66'], + 0xE0CD: [544,38,750,50,700,'700 478h-650v66h650v-66zM700 306h-650v66h650v-66zM700 134h-650v66h650v-66zM700 -38h-650v66h650v-66'], + 0xE0CE: [836,236,636,50,586,'586 789l-507 -342l-29 47l507 342zM576 272h-516v56h516v-56zM586 -189l-29 -47l-507 342l29 47'], + 0xE0CF: [836,236,636,50,586,'586 494l-29 -47l-507 342l29 47zM576 272h-516v56h516v-56zM586 106l-507 -342l-29 47l507 342'], + 0xE0D0: [836,236,636,50,586,'586 789l-507 -342l-29 47l507 342zM586 -189l-29 -47l-507 342l29 47'], + 0xE0D1: [836,236,636,50,586,'586 494l-29 -47l-507 342l29 47zM586 106l-507 -342l-29 47l507 342'], + 0xE0D2: [692,186,926,83,843,'708 71h-66v363h66v-363zM529 499l-314 -181l-33 57l314 182zM529 7l-33 -58l-314 182l33 57zM843 34l-380 -220l-380 220v438l380 220l380 -220v-438zM777 72v362l-314 182l-314 -182v-362l314 -182'], + 0xE0D3: [633,127,926,24,902,'766 220l-58 -33l-181 314l57 33zM397 501l-181 -314l-58 33l182 314zM644 8h-363v66h363v-66zM902 253l-220 -380h-438l-220 380l220 380h438zM826 253l-182 314h-362l-182 -314l182 -314h362'], + 0xE0D4: [633,127,926,24,902,'644 432h-363v66h363v-66zM767 286l-182 -314l-57 33l181 314zM398 5l-57 -33l-182 314l58 33zM902 253l-220 -380h-438l-220 380l220 380h438zM826 253l-182 314h-362l-182 -314l182 -314h362'], + 0xE0D5: [286,-220,1000,50,950,'950 220h-900v66h900v-66'], + 0xE0D6: [386,-120,750,50,700,'700 120h-166v66h166v-66zM700 320h-650v66h650v-66zM458 120h-166v66h166v-66zM216 120h-166v66h166v-66'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Symbols/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/Bold/Main.js new file mode 100644 index 0000000..fa036ea --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/Bold/Main.js @@ -0,0 +1,100 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Variants/Bold/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Variants-bold'] = { + directory: 'Variants/Bold', + family: 'STIXMathJax_Variants', + weight: 'bold', + id: 'STIXWEBVARIANTSB', + 0x20: [0,0,250,0,0,''], + 0x7C: [691,189,340,126,214,'214 -189h-88v880h88v-880'], + 0xA0: [0,0,250,0,0,''], + 0x19B: [666,0,536,60,526,'526 0h-152v24c43 2 54 9 54 33c0 12 -2 23 -11 49l-68 188l-72 -186c-11 -28 -20 -54 -20 -58c0 -15 11 -23 36 -25l16 -1v-24h-249v24c22 3 28 6 34 14c9 12 47 96 67 146l101 246h-182v45h200c-3 8 -4 10 -5 13c-1 2 -20 55 -22 60c-15 35 -33 61 -57 61 c-9 0 -17 -8 -17 -17c0 -4 3 -15 3 -20c0 -29 -26 -52 -60 -52c-38 0 -62 29 -62 67c0 47 40 79 97 79c65 0 97 -36 123 -96l27 -63l12 -32h163v-45h-147l131 -351c16 -43 29 -51 60 -55v-24'], + 0x2032: [586,-12,394,44,350,'119 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422'], + 0x2033: [586,-12,713,44,669,'438 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422zM119 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422'], + 0x2034: [586,-12,1032,44,988,'757 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422zM438 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422z M119 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422'], + 0x2035: [586,-12,394,44,350,'350 39l-75 -27c-70 129 -204 368 -223 422c-6 17 -8 34 -8 51c0 54 35 101 97 101c41 0 84 -25 97 -75c24 -63 85 -345 112 -472'], + 0x2036: [586,-12,713,44,669,'669 39l-75 -27c-70 129 -204 368 -223 422c-6 17 -8 34 -8 51c0 54 35 101 97 101c41 0 84 -25 97 -75c24 -63 85 -345 112 -472zM350 39l-75 -27c-70 129 -204 368 -223 422c-6 17 -8 34 -8 51c0 54 35 101 97 101c41 0 84 -25 97 -75c24 -63 85 -345 112 -472'], + 0x2037: [586,-12,1032,44,988,'988 39l-75 -27c-70 129 -204 368 -223 422c-6 17 -8 34 -8 51c0 54 35 101 97 101c41 0 84 -25 97 -75c24 -63 85 -345 112 -472zM669 39l-75 -27c-70 129 -204 368 -223 422c-6 17 -8 34 -8 51c0 54 35 101 97 101c41 0 84 -25 97 -75c24 -63 85 -345 112 -472zM350 39 l-75 -27c-70 129 -204 368 -223 422c-6 17 -8 34 -8 51c0 54 35 101 97 101c41 0 84 -25 97 -75c24 -63 85 -345 112 -472'], + 0x2057: [586,-12,1351,43,1306,'1075 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422zM756 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422z M437 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422zM118 12l-75 27c27 127 88 409 112 472c13 50 56 75 97 75c62 0 97 -47 97 -101c0 -17 -2 -34 -8 -51c-19 -54 -153 -293 -223 -422'], + 0x2140: [691,0,780,55,725,'725 0h-670v70l214 290l-180 261v70h625v-70h-359l183 -261l-213 -290h400v-70zM452 360l-182 261h-95l180 -261l-214 -290h96'], + 0x2190: [451,-55,428,68,428,'428 209h-117c-19 0 -48 -1 -48 -13c0 -11 25 -35 30 -41c20 -22 40 -47 61 -78l-24 -22c-71 83 -159 149 -262 192v11c105 47 184 104 262 193l25 -20c-21 -30 -41 -53 -62 -77c-4 -5 -30 -32 -30 -45c0 -11 27 -12 48 -12h117v-88'], + 0x2191: [680,15,556,80,476,'476 418l-20 -25c-30 21 -53 41 -77 62c-5 4 -32 30 -45 30c-11 0 -12 -27 -12 -48v-452h-88v452c0 19 -1 48 -13 48c-11 0 -35 -25 -41 -30c-22 -20 -47 -40 -78 -61l-22 24c83 71 149 159 192 262h11c47 -105 104 -184 193 -262'], + 0x2192: [451,-55,428,0,360,'360 258v-11c-103 -43 -191 -109 -262 -192l-24 22c21 31 41 56 61 78c5 6 30 30 30 41c0 12 -29 13 -48 13h-117v88h117c21 0 48 1 48 12c0 13 -26 40 -30 45c-21 24 -41 47 -62 77l25 20c78 -89 157 -146 262 -193'], + 0x2193: [680,15,556,80,476,'456 272l20 -25c-89 -78 -146 -157 -193 -262h-11c-43 103 -109 191 -192 262l22 24c31 -21 56 -41 78 -61c6 -5 30 -30 41 -30c12 0 13 29 13 48v452h88v-452c0 -21 1 -48 12 -48c13 0 40 26 45 30c24 21 47 41 77 62'], + 0x21D1: [600,15,714,40,674,'674 221l-22 -24c-38 26 -86 67 -99 77c-7 6 -19 16 -29 16c-19 0 -21 -24 -21 -46v-259h-88v432c-7 26 -34 43 -58 43s-52 -17 -58 -43v-432h-88v257c0 30 -6 48 -21 48c-13 0 -26 -10 -33 -16c-26 -23 -57 -49 -97 -78l-20 25c132 124 237 267 312 379h10 c72 -112 185 -253 312 -379'], + 0x21D3: [600,15,714,40,674,'652 388l22 -24c-127 -126 -240 -267 -312 -379h-10c-75 112 -180 255 -312 379l20 25c40 -29 71 -55 97 -78c7 -6 20 -16 33 -16c15 0 21 18 21 48v257h88v-432c6 -26 34 -43 58 -43s51 17 58 43v432h88v-259c0 -22 2 -46 21 -46c10 0 22 10 29 16c13 10 61 51 99 77'], + 0x2205: [729,74,584,36,548,'548 729l-79 -151c49 -81 65 -181 65 -248c0 -119 -42 -346 -243 -346c-45 0 -85 13 -114 32l-47 -90h-94l79 152c-50 80 -67 180 -67 252c0 116 43 346 243 346c41 0 80 -11 103 -26c6 -3 11 -5 15 -8l45 87h94zM187 215l180 347c-20 51 -42 78 -76 78 c-73 0 -109 -126 -109 -310c0 -35 1 -75 5 -115zM395 434l-180 -347c21 -46 42 -67 76 -67c107 0 109 232 109 310c0 22 0 61 -5 104'], + 0x220F: [676,0,734,27,707,'707 0h-284v24c72 6 77 15 77 90v513h-266v-513c0 -72 5 -84 75 -90v-24h-282v24c72 6 78 15 78 90v439c0 75 -3 95 -77 99v24h679v-24c-71 -4 -78 -21 -78 -88v-450c0 -72 7 -84 78 -90v-24'], + 0x2210: [676,0,734,27,707,'707 0h-679v24c74 4 77 24 77 99v439c0 75 -6 84 -78 90v24h282v-24c-70 -6 -75 -18 -75 -90v-513h266v513c0 75 -5 84 -77 90v24h284v-24c-71 -6 -78 -18 -78 -90v-450c0 -67 7 -84 78 -88v-24'], + 0x2211: [676,0,690,39,649,'649 250l-43 -250h-565l282 324l-284 352h558v-202h-25c-23 135 -65 154 -137 154h-206l201 -255l-227 -257h268c98 0 119 47 150 134h28'], + 0x2216: [732,193,518,45,473,'473 -193h-96l-332 925h96'], + 0x221A: [943,-28,800,112,844,'844 943l-393 -915h-65l-142 322c-20 45 -28 53 -47 53c-26 0 -32 -12 -63 -36l-22 25l148 134h30l148 -330h6l322 747h78'], + 0x221D: [431,0,750,56,687,'687 90v-90c-113 0 -166 73 -207 144c-64 -91 -132 -144 -220 -144c-139 0 -204 119 -204 212c0 128 98 219 198 219c102 0 155 -66 195 -137c81 113 150 137 238 137v-93c-96 -5 -151 -83 -177 -153c16 -36 68 -95 177 -95zM420 244c-39 73 -98 94 -162 94 c-74 0 -150 -43 -150 -134c0 -66 54 -114 117 -114c71 0 114 0 195 154'], + 0x2223: [451,19,290,89,201,'201 -19h-112v470h112v-470'], + 0x222B: [824,320,425,59,467,'207 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53 c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169'], + 0x222C: [824,320,715,59,757,'497 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53 c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169zM207 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216 c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169'], + 0x222D: [824,320,1005,59,1047,'787 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53 c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169zM497 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216 c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169zM207 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17 c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169'], + 0x222E: [834,310,394,35,483,'318 580v-107c95 -26 165 -112 165 -216s-72 -191 -165 -216v-135c0 -81 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c33 0 35 71 35 169v140c-110 25 -171 110 -171 216s73 192 171 216v140 c0 80 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-32 0 -35 -50 -35 -212zM318 420v-326c66 24 113 91 113 165s-47 137 -113 161zM206 94v326c-69 -22 -119 -85 -119 -161s50 -143 119 -165'], + 0x222F: [824,320,650,35,739,'587 613v-170c91 -38 152 -104 152 -187c0 -76 -61 -144 -152 -184v-176c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169v148c-28 -4 -58 -7 -88 -7c-31 0 -62 3 -90 8 v-144c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169v182c-91 40 -150 107 -150 183c0 82 59 148 150 187v160c0 78 24 221 162 221c67 0 98 -48 98 -91 c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-140c28 5 59 7 90 7c30 0 60 -2 88 -6v129c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42 c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169zM587 389v-262c62 32 100 78 100 129c0 57 -38 103 -100 133zM475 92v330c-28 4 -57 6 -88 6c-32 0 -62 -2 -90 -7v-329c28 -5 58 -8 90 -8c31 0 60 3 88 8zM185 128v259c-61 -30 -98 -76 -98 -132c0 -50 37 -96 98 -127'], + 0x2230: [824,320,951,54,1047,'896 613v-187c94 -38 151 -95 151 -170c0 -69 -57 -126 -151 -166v-194c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169v164c-54 -12 -114 -19 -178 -22v-137 c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169v142c-65 3 -125 11 -178 23v-160c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53 c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169v199c-94 40 -150 97 -150 166c0 75 56 132 150 170v177c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169 v-154c53 11 113 18 178 20v124c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-134c64 -2 124 -9 178 -20v144c0 78 24 221 162 221c67 0 98 -48 98 -91 c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169zM896 373v-229c61 29 99 67 99 112c0 50 -38 89 -99 117zM784 108v299c-53 11 -114 18 -178 20v-342c64 3 125 11 178 23zM494 85v342c-65 -2 -125 -9 -178 -21v-298 c53 -12 113 -20 178 -23zM204 145v226c-61 -28 -98 -67 -98 -116c0 -44 37 -82 98 -110'], + 0x2231: [824,320,484,54,553,'529 287l24 -12c-25 -39 -45 -75 -59 -125l-5 -2c-34 21 -77 37 -131 45l9 30c33 -10 46 -11 59 -11c7 0 9 4 9 7s-2 7 -4 11c-10 14 -18 27 -30 38c-19 19 -41 33 -64 42v-414c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53 c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169v421c-70 -22 -119 -87 -119 -164h-52c0 105 72 194 171 218v237c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17 c-35 0 -35 -71 -35 -169v-248c37 -10 73 -30 103 -60c16 -16 29 -38 37 -53c3 -5 9 -14 14 -14c2 0 8 3 8 3c12 12 23 32 30 46'], + 0x2232: [824,320,445,35,534,'510 395l24 -12c-25 -42 -47 -87 -51 -130c0 -101 -70 -187 -165 -213v-144c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169v148c-99 23 -171 111 -171 217 c0 105 72 194 171 218v129c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-140c37 -10 73 -30 103 -60c16 -16 27 -35 36 -53c3 -5 9 -14 14 -14c2 0 8 3 8 3 c12 12 24 32 31 46zM318 418v-324c65 24 113 87 113 166c-32 25 -59 32 -92 41l9 28c16 -5 37 -10 52 -10c10 0 16 3 16 9c0 12 -25 40 -34 48c-19 19 -41 33 -64 42zM206 93v327c-70 -22 -119 -87 -119 -164c0 -76 50 -141 119 -163'], + 0x2233: [824,320,456,35,545,'545 360l-10 -28c-15 5 -37 12 -51 12c-7 0 -12 -5 -12 -11c0 -5 1 -10 2 -14c5 -22 9 -36 9 -63c0 -103 -70 -190 -165 -216v-144c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17 c29 0 35 55 35 169v148c-99 23 -171 112 -171 217c0 106 72 194 171 218v129c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-141c48 -13 90 -42 120 -81 c34 -14 73 -23 107 -31zM318 418v-323c65 24 113 87 113 160c0 16 -4 60 -16 60c-2 0 -5 -1 -7 -3c-9 -9 -21 -25 -37 -56l-25 14c21 30 39 65 46 95c-20 24 -45 42 -74 53zM206 92v328c-69 -23 -119 -88 -119 -165c0 -76 50 -141 119 -163'], + 0x2244: [543,45,750,68,683,'629 463h54c-7 -104 -66 -224 -174 -224c-39 0 -77 16 -113 37v-143h286v-88h-286v-90h-72v90h-256v88h256v187c-33 21 -63 37 -88 37c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c26 0 52 -8 77 -19v117h72v-157c46 -29 87 -59 119 -59c60 0 94 55 114 136'], + 0x2247: [648,144,750,68,683,'682 -54h-286v-90h-72v90h-256v88h256v116h-256v88h256v187c-33 21 -63 37 -88 37c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c26 0 52 -8 77 -19v117h72v-157c46 -29 87 -59 119 -59c60 0 94 55 114 136h54c-7 -104 -66 -224 -174 -224c-39 0 -77 16 -113 37 v-143h286v-88h-286v-116h286v-88'], + 0x2249: [598,64,750,68,683,'629 268h54c-7 -104 -66 -224 -174 -224c-33 0 -66 12 -98 29v-137h-70v179c-39 25 -75 47 -105 47c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224c32 0 64 -11 94 -26v131c-39 25 -75 47 -105 47c-60 0 -94 -55 -114 -136h-54c6 119 72 224 179 224 c32 0 64 -11 94 -26v134h70v-176c40 -27 75 -50 104 -50c60 0 94 55 114 136h54c-7 -104 -66 -224 -174 -224c-33 0 -66 12 -98 29v-131c40 -27 75 -50 104 -50c60 0 94 55 114 136'], + 0x2260: [687,183,750,68,682,'682 107h-271v-290h-72v290h-271v88h271v116h-271v88h271v288h72v-288h271v-88h-271v-116h271v-88'], + 0x2262: [747,243,750,68,682,'682 13h-271v-256h-72v256h-271v88h271v108h-271v88h271v108h-271v88h271v254h72v-254h271v-88h-271v-108h271v-88h-271v-108h271v-88'], + 0x2268: [728,293,750,80,670,'670 170l-590 258v40l590 260v-88l-436 -192l436 -190v-88zM670 -222h-260v-71h-70v71h-260v88h260v116h-260v88h260v71h70v-71h260v-88h-260v-116h260v-88'], + 0x2269: [728,293,750,80,670,'670 428l-590 -258v88l436 190l-436 192v88l590 -260v-40zM670 -222h-260v-71h-70v71h-260v88h260v116h-260v88h260v71h70v-71h260v-88h-260v-116h260v-88'], + 0x226E: [672,166,750,80,670,'670 -27l-184 81v-220h-70v250l-336 148v40l336 148v252h70v-221l184 82v-88l-184 -82v-221l184 -81v-88zM416 172v160l-182 -80'], + 0x226F: [672,166,750,80,670,'670 234l-336 -149v-251h-70v220l-184 -81v88l184 81v222l-184 81v88l184 -81v220h70v-251l336 -147v-40zM516 254l-182 80v-161'], + 0x2270: [742,236,750,80,670,'670 -121h-194v-115h-70v115h-326v88h326v216l-326 143v40l326 143v233h70v-202l194 86v-88l-194 -86v-212l194 -84v-88l-194 85v-186h194v-88zM406 271v150l-172 -75'], + 0x2271: [742,236,750,80,670,'670 -121h-326v-115h-70v115h-194v88h194v186l-194 -85v88l194 84v212l-194 86v88l194 -86v202h70v-233l326 -143v-40l-326 -143v-216h326v-88zM516 346l-172 75v-150'], + 0x2A0C: [824,320,1295,59,1337,'1077 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53 c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169zM787 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216 c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169zM497 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17 c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169zM207 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63 c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169'], + 0x2A0D: [824,320,511,59,553,'553 212h-191v-316c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -34 -18 -42c0 -10 5 -17 15 -17c31 0 35 82 35 132v37v321h-191v80h191v311c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63 c-32 0 -55 20 -55 53c0 29 18 34 18 42c0 10 -5 17 -15 17c-32 0 -36 -69 -36 -117c0 -17 1 -32 1 -39v-334h191v-80'], + 0x2A0E: [824,320,511,59,553,'553 109h-191v-213c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -34 -18 -42c0 -10 5 -17 15 -17c31 0 35 82 35 132v37v218h-191v80h191v125h-191v80h191v209c0 104 38 221 162 221c54 0 98 -35 98 -91 c0 -34 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 29 18 34 18 42c0 10 -5 17 -15 17c-32 0 -36 -69 -36 -117c0 -17 1 -32 1 -39v-232h191v-80h-191v-125h191v-80'], + 0x2A0F: [824,320,592,59,634,'634 480l-231 -231v-353c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -28 -18 -35 -18 -42c0 -9 5 -17 15 -17c35 0 35 109 35 132v283l-172 -172l-60 60l232 232v346c0 104 38 221 162 221c54 0 98 -35 98 -91 c0 -34 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 28 18 35 18 42c0 9 -5 17 -15 17c-37 0 -36 -93 -36 -117c0 -99 1 -197 1 -296l171 171'], + 0x2A10: [824,320,385,35,474,'214 483v120c0 104 39 221 162 221c54 0 98 -35 98 -91c0 -33 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 27 18 35 18 42c0 9 -5 17 -15 17c-36 0 -35 -93 -35 -117v-182c45 -11 87 -36 118 -70l-34 -40c-22 26 -51 46 -84 56v-348c16 5 32 13 47 22l26 -44 c-22 -15 -47 -26 -73 -32v-131c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 33 27 63 61 63c32 0 55 -20 55 -53c0 -27 -18 -35 -18 -42c0 -9 5 -17 15 -17c36 0 35 109 35 134v171c-105 25 -179 120 -179 228s74 203 179 228zM214 81v348c-75 -24 -127 -95 -127 -174 s52 -150 127 -174'], + 0x2A11: [824,320,484,54,553,'553 242l-24 -12c-5 11 -25 49 -38 49c-6 0 -11 -10 -14 -14c-11 -19 -22 -37 -37 -53c-29 -30 -64 -50 -105 -59v-257c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -34 -18 -42c0 -10 5 -17 15 -17 c31 0 35 82 35 132v37v263c-103 24 -169 110 -169 215h52c0 -74 46 -140 117 -164v398c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 29 18 34 18 42c0 10 -5 17 -15 17c-31 0 -35 -72 -35 -116v-29v-431c40 15 74 45 96 81 c2 3 4 7 4 11c0 5 -5 7 -9 7c-20 0 -40 -5 -59 -11l-9 30c46 7 91 21 131 45l5 -2c13 -46 33 -85 59 -125'], + 0x2A12: [824,320,417,35,486,'486 17h-191v-121c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c33 0 55 -20 55 -53c0 -28 -18 -34 -18 -42c0 -9 5 -17 15 -17c31 0 35 85 35 136v33v178h251v366h-251v168c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63 c-33 0 -55 20 -55 53c0 28 18 34 18 42c0 9 -5 17 -15 17c-36 0 -36 -95 -36 -118c0 -59 1 -118 1 -177h191v-470zM320 253c0 -50 -40 -90 -90 -90c-54 0 -90 36 -90 90c0 49 41 90 90 90s90 -41 90 -90'], + 0x2A13: [824,320,424,54,493,'314 629v-146c105 -25 179 -120 179 -228s-74 -203 -179 -228v-131c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -34 -18 -42c0 -10 5 -17 15 -17c31 0 35 82 35 132v37v104v86c18 -6 37 -9 56 -9 c101 0 183 82 183 183s-82 183 -183 183c-19 0 -38 -3 -56 -9v174c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 29 18 34 18 42c0 10 -5 17 -15 17c-31 0 -35 -71 -35 -118v-35zM348 253c0 -50 -40 -90 -90 -90 c-54 0 -90 36 -90 90c0 49 41 90 90 90s90 -41 90 -90'], + 0x2A14: [824,320,535,54,604,'459 253c0 -50 -40 -90 -90 -90c-54 0 -90 36 -90 90c0 49 41 90 90 90s90 -41 90 -90zM314 630v-146c18 4 36 6 55 6c130 0 235 -105 235 -235s-105 -235 -235 -235c-19 0 -37 2 -55 6v-130c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63 c32 0 55 -20 55 -53c0 -29 -18 -33 -18 -42c0 -10 5 -17 15 -17c31 0 35 82 35 132v37v288c30 -65 95 -107 167 -107c101 0 183 82 183 183s-82 183 -183 183c-71 0 -137 -41 -167 -105v270c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63 c-32 0 -55 20 -55 53c0 29 18 33 18 42c0 10 -5 17 -15 17c-31 0 -35 -71 -35 -118v-34'], + 0x2A15: [824,320,416,35,505,'360 253c0 -50 -40 -90 -90 -90c-54 0 -90 36 -90 90c0 49 41 90 90 90s90 -41 90 -90zM326 630v-147c105 -25 179 -120 179 -228s-74 -203 -179 -228v-131c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -33 -18 -42 c0 -10 5 -17 15 -17c31 0 35 82 35 132v37v136c-105 25 -179 120 -179 228s74 203 179 228v120c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 29 18 33 18 42c0 10 -5 17 -15 17c-31 0 -35 -71 -35 -118v-34zM453 255 c0 101 -82 183 -183 183s-183 -82 -183 -183s82 -183 183 -183s183 82 183 183'], + 0x2A16: [824,320,459,35,528,'528 17h-191v-121c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -34 -18 -42c0 -10 5 -17 15 -17c31 0 35 82 35 132v37v126h-190v470h190v116c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63 c-32 0 -55 20 -55 53c0 29 18 34 18 42c0 10 -5 17 -15 17c-32 0 -36 -69 -36 -117c0 -17 1 -32 1 -39v-139h191v-470zM476 69v366h-139v-366h139zM225 69v366h-138v-366h138'], + 0x2A17: [824,320,824,45,884,'520 312h227c76 0 137 -63 137 -138c0 -65 -56 -135 -124 -135h-81v81h78c27 0 42 28 46 52v2c0 33 -27 57 -59 57h-224v-335c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -34 -18 -42c0 -10 5 -17 15 -17 c31 0 35 82 35 132v37v340h-180c-7 0 -17 -7 -17 -15s7 -14 12 -20c31 -32 61 -65 86 -102l-23 -23c-68 79 -143 151 -241 192v14c98 42 175 117 244 196l21 -24c-18 -25 -37 -49 -58 -72l-28 -30c-5 -7 -12 -14 -12 -23c0 -10 7 -12 15 -12h181v291c0 104 38 221 162 221 c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 29 18 34 18 42c0 10 -5 17 -15 17c-32 0 -36 -70 -36 -117c0 -18 1 -32 1 -39v-314'], + 0x2A18: [824,320,527,45,587,'587 441l-209 -190l199 -188l-60 -60l-146 138v-245c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -34 -18 -42c0 -10 5 -17 15 -17c31 0 35 82 35 132v37v252l-154 -140l-60 60l208 189l-199 189l60 60l145 -137v239 c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 29 18 34 18 42c0 10 -5 17 -15 17c-32 0 -36 -69 -36 -117c0 -17 1 -32 1 -39v-266l156 141'], + 0x2A19: [824,320,567,45,632,'632 -11h-80v232c0 97 -66 181 -159 206v-531c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -33 -18 -42c0 -10 5 -17 15 -17c31 0 35 82 35 132v37v535c-92 -25 -156 -109 -156 -205v-232h-80v232 c0 140 99 261 236 288v94c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 29 18 33 18 42c0 10 -5 17 -15 17c-31 0 -35 -71 -35 -117v-34v-122c138 -26 239 -147 239 -288v-232'], + 0x2A1A: [824,320,567,45,632,'632 514v-232c0 -140 -100 -261 -238 -288v-98c0 -103 -41 -216 -162 -216c-54 0 -98 35 -98 91c0 34 27 63 61 63c32 0 55 -20 55 -53c0 -29 -18 -33 -18 -42c0 -10 5 -17 15 -17c31 0 35 82 35 132v37v103c-138 27 -237 148 -237 288v232h80v-232 c0 -96 64 -180 157 -206v527c0 104 38 221 162 221c54 0 98 -35 98 -91c0 -34 -27 -63 -61 -63c-32 0 -55 20 -55 53c0 29 18 33 18 42c0 10 -5 17 -15 17c-31 0 -35 -71 -35 -117v-34v-555c93 25 158 110 158 206v232h80'], + 0x2A1B: [959,320,479,45,521,'521 879h-476v80h476v-80zM251 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63 c26 0 55 -14 55 -53c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169'], + 0x2A1C: [824,455,411,35,511,'193 -109v712c0 78 24 221 162 221c67 0 98 -48 98 -91c0 -32 -25 -63 -61 -63c-26 0 -55 14 -55 53c0 30 18 33 18 42c0 14 -9 17 -15 17c-35 0 -35 -71 -35 -169v-717c0 -79 -27 -216 -162 -216c-67 0 -98 48 -98 91c0 32 25 63 61 63c26 0 55 -14 55 -53 c0 -30 -18 -33 -18 -42c0 -14 9 -17 15 -17c29 0 35 55 35 169zM511 -455h-476v80h476v-80'], + 0xE263: [422,10,523,26,496,'496 206c0 -111 -73 -216 -238 -216c-169 0 -232 105 -232 215c0 86 64 217 241 217c157 0 229 -129 229 -216zM364 206c0 57 -24 188 -99 188s-107 -130 -107 -188c0 -89 23 -187 101 -187c83 0 105 98 105 187'], + 0xE267: [425,0,523,111,420,'420 0h-289v21c55 0 76 15 76 37v294c0 18 -9 21 -27 21c-5 0 -11 -1 -16 -2l-44 -9l-9 25l233 38v-339c0 -48 4 -65 76 -65v-21'], + 0xE26B: [421,0,523,53,470,'470 0h-417v32c174 115 266 176 266 241c0 58 -27 98 -81 98c-64 0 -106 -26 -129 -76l-51 9c31 78 121 117 194 117c116 0 200 -39 200 -127c0 -102 -130 -152 -243 -225h125c69 0 79 3 87 43h49v-112'], + 0xE26F: [424,198,523,31,478,'339 161v-1c90 -29 139 -87 139 -162c0 -109 -144 -196 -294 -196c-71 0 -114 19 -128 31c-19 16 -25 30 -25 39c0 14 22 33 62 33c74 0 97 -58 142 -58c58 0 108 43 108 120c0 118 -100 152 -190 152v27c125 0 171 65 171 137c0 58 -22 93 -75 93c-38 0 -80 -8 -121 -72 l-44 20c33 64 114 100 174 100c127 0 184 -69 184 -133c0 -56 -34 -105 -103 -130'], + 0xE273: [420,198,523,42,496,'496 -36h-75v-162h-134v162h-245v72l279 384h100v-386h75v-70zM287 34v222l-162 -222h162'], + 0xE277: [421,198,523,49,474,'193 339l-19 -76c162 -8 300 -113 300 -267c0 -104 -92 -194 -257 -194c-75 0 -119 20 -138 33c-26 19 -30 36 -30 45c0 14 25 32 63 32c75 0 54 -61 162 -61c46 0 97 48 97 124c0 125 -114 181 -201 199c-29 6 -53 9 -94 9l61 238h315l-23 -82h-236'], + 0xE27B: [614,8,523,21,502,'454 614l1 -23c-140 -30 -219 -94 -272 -217c28 9 54 14 82 14c124 0 237 -84 237 -188c0 -76 -45 -208 -222 -208c-186 0 -259 139 -259 255c0 185 177 346 433 367zM369 164c0 98 -61 178 -138 178c-24 0 -47 -11 -63 -24c-9 -22 -15 -53 -15 -87 c0 -95 41 -199 130 -199c63 0 86 63 86 132'], + 0xE27F: [421,198,523,8,507,'507 421l-220 -619h-107l196 536h-198c-69 0 -97 -6 -116 -70h-54l47 153h452'], + 0xE283: [606,12,523,31,493,'493 137c0 -65 -59 -149 -209 -149c-168 0 -253 76 -253 154c0 72 58 125 162 165c-70 47 -133 107 -133 174c0 64 76 125 202 125c107 0 220 -32 220 -137c0 -65 -74 -117 -157 -149c119 -76 168 -116 168 -183zM369 461c0 80 -49 105 -124 105c-48 0 -71 -26 -71 -67 c0 -57 34 -87 111 -148c50 23 84 57 84 110zM371 110c0 57 -31 83 -120 153c-5 4 -11 8 -17 13c-39 -22 -86 -58 -86 -117c0 -60 47 -131 139 -131c60 0 84 36 84 82'], + 0xE287: [421,202,523,25,499,'60 -202l-6 24c144 24 223 94 277 209c-19 -4 -40 -7 -63 -7c-113 0 -243 69 -243 216c0 85 66 181 222 181c176 0 252 -134 252 -242c0 -189 -162 -351 -439 -381zM366 195c0 70 -23 186 -124 186c-58 0 -87 -47 -87 -113c0 -110 44 -198 138 -198c24 0 47 9 57 12 c13 47 16 79 16 113'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Variants/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/BoldItalic/Main.js new file mode 100644 index 0000000..2671e38 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/BoldItalic/Main.js @@ -0,0 +1,66 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Variants/BoldItalic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Variants-bold-italic'] = { + directory: 'Variants/BoldItalic', + family: 'STIXMathJax_Variants', + weight: 'bold', + style: 'italic', + id: 'STIXWEBVARIANTSBI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xE247: [711,47,871,38,834,'803 77l31 -22c-26 -54 -82 -87 -146 -87c-88 0 -122 57 -122 197h-210c-67 -118 -129 -212 -215 -212c-59 0 -103 32 -103 91c0 33 20 80 70 80c68 0 49 -66 80 -66c39 0 93 91 432 653h63l26 -564c2 -51 5 -106 41 -106c13 0 33 5 53 36zM566 221v283l-181 -283h181'], + 0xE248: [703,10,755,33,740,'405 696l-27 -92c60 61 138 99 237 99c73 0 125 -51 125 -112c0 -90 -100 -159 -167 -188c81 -15 149 -66 149 -159c0 -133 -181 -254 -330 -254c-54 0 -100 10 -136 54l22 33c28 -23 57 -34 94 -34c98 0 205 74 205 189c0 87 -50 130 -150 130h-67l15 54h18 c91 0 225 49 225 174c0 33 -17 54 -64 54c-38 0 -84 -30 -115 -63c-47 -49 -84 -110 -135 -298l-40 -147c-31 -113 -87 -136 -231 -136l10 32c41 0 59 37 94 165l86 315c6 23 11 43 11 59c0 27 -14 42 -57 42l6 32c62 9 135 29 185 51h37'], + 0xE249: [704,12,667,36,669,'574 159l31 -26c-5 -10 -100 -145 -290 -145c-139 0 -279 74 -279 244c0 225 187 418 405 464c27 6 52 8 77 8c90 0 151 -43 151 -103c0 -40 -19 -85 -83 -85c-58 0 -68 37 -68 63c0 41 22 36 22 55c0 14 -15 18 -33 18c-102 0 -204 -74 -269 -213 c-24 -51 -57 -127 -57 -213c0 -134 84 -183 169 -183c102 0 177 53 224 116'], + 0xE24A: [696,0,802,30,808,'55 541l-25 31c131 116 217 124 364 124c312 0 414 -90 414 -243c0 -175 -115 -453 -491 -453h-272l8 32c43 0 59 35 74 89l96 349c12 42 30 98 30 124c0 25 -16 33 -40 33c-41 0 -121 -49 -158 -86zM398 582l-135 -475c-3 -11 -4 -26 -4 -32c0 -17 15 -20 39 -20 c91 0 362 37 362 383c0 137 -55 203 -223 203c-14 0 -24 -7 -39 -59'], + 0xE24B: [704,8,609,41,626,'520 175l32 -26c-37 -56 -102 -108 -175 -132c-44 -14 -97 -25 -150 -25c-89 0 -186 27 -186 129c0 120 112 204 210 248c-40 21 -81 48 -81 114c0 119 183 221 289 221c97 0 167 -32 167 -108c0 -18 -15 -85 -83 -85c-38 0 -68 25 -68 63c0 39 28 44 28 56 c0 15 -14 21 -33 21c-89 0 -175 -58 -175 -136c0 -60 42 -98 110 -98h88l-11 -54c-122 0 -296 -70 -296 -216c0 -64 40 -89 104 -89c63 0 155 17 230 117'], + 0xE24C: [696,0,645,34,738,'322 696h76c177 0 340 -20 340 -111c0 -43 -30 -85 -83 -85c-40 0 -70 19 -70 55c0 46 24 37 24 63c0 19 -52 24 -104 24c-44 0 -89 -3 -101 -49l-47 -175h215l-20 -55h-208l-62 -228c-31 -113 -87 -135 -232 -135l10 32c39 0 60 40 75 94l116 419c4 15 9 36 9 53 c0 21 -16 31 -40 31c-54 0 -123 -51 -161 -88l-25 30c101 102 209 125 288 125'], + 0xE24D: [704,144,615,43,615,'425 73l-2 1c-44 -26 -103 -37 -152 -37c-116 0 -228 65 -228 217c0 240 229 450 435 450c82 0 137 -43 137 -103c0 -33 -18 -99 -81 -99c-50 0 -71 30 -71 61c0 58 35 55 35 70c0 17 -13 19 -30 19c-143 0 -280 -189 -280 -404c0 -138 72 -157 124 -157 c109 0 210 115 244 239l37 11c2 -23 3 -33 3 -44c0 -115 -54 -288 -169 -375c-51 -38 -113 -66 -197 -66c-61 0 -126 31 -163 76l28 30c43 -47 113 -54 150 -54c75 0 150 77 180 165'], + 0xE24E: [696,24,849,22,858,'858 696l-10 -31c-41 0 -54 -29 -72 -96l-118 -444c-5 -20 -11 -41 -11 -55c0 -31 12 -38 38 -38c22 0 42 6 72 36l19 -26c-33 -44 -104 -66 -150 -66s-124 27 -124 92c0 12 1 20 6 37l69 256c-13 -3 -23 -13 -40 -13h-206l-57 -212c-31 -114 -87 -136 -230 -136l10 32 c41 0 59 39 94 167l76 276c6 22 23 89 23 124c0 25 -20 30 -37 30c-54 0 -113 -43 -163 -88l-25 30c61 63 156 125 285 125c65 0 91 -32 91 -82c0 -26 -10 -63 -22 -106l-34 -123c8 4 22 18 32 18h213l54 193c24 87 73 100 184 100h33'], + 0xE24F: [696,0,621,36,623,'623 696l-9 -32c-106 0 -132 -5 -164 -121l-116 -424c-1 -4 -2 -11 -2 -23c0 -25 10 -28 28 -28c45 0 97 11 170 85l26 -34c-76 -84 -161 -119 -298 -119h-222l12 32c92 0 122 13 150 115l102 374c6 22 17 56 17 78c0 20 -14 29 -35 29c-41 0 -114 -38 -163 -87l-25 30 c79 75 151 125 323 125h206'], + 0xE250: [695,116,645,36,811,'811 695l-12 -32c-90 0 -111 -29 -132 -107l-125 -457c-41 -149 -158 -215 -299 -215c-117 0 -207 49 -207 137c0 51 21 113 89 113c58 0 71 -46 71 -77c0 -43 -36 -51 -36 -68c0 -50 31 -54 89 -54c124 0 150 167 189 309l89 321c5 17 6 31 6 39c0 36 -15 37 -45 37 c-120 0 -211 -105 -244 -200h-43c24 94 116 254 309 254h301'], + 0xE251: [703,14,856,38,820,'357 496h2c95 99 206 207 328 207c94 0 133 -65 133 -128c0 -52 -32 -96 -84 -96c-44 0 -69 30 -69 66c0 53 36 47 36 70c0 21 -12 26 -26 26c-88 0 -210 -96 -303 -219c45 -217 154 -358 265 -358c33 0 79 17 123 84l33 -23c-38 -62 -101 -139 -229 -139 c-123 0 -233 88 -274 232h-1l-23 -83c-31 -113 -87 -135 -230 -135l10 32c41 0 59 39 94 167l86 313c2 9 11 52 11 59c0 27 -14 42 -57 42l6 32c65 9 140 30 185 51h39'], + 0xE252: [704,8,726,38,688,'656 163l32 -26c-58 -78 -153 -145 -288 -145c-79 0 -117 29 -195 29c-38 0 -97 -21 -167 -21l9 32c27 0 60 52 76 96c34 91 48 195 69 293c44 206 196 283 303 283c92 0 130 -78 130 -119c0 -35 -20 -96 -87 -96c-40 0 -62 38 -62 63c0 49 30 50 30 66 c0 19 -5 33 -38 33c-157 0 -111 -352 -233 -536c29 6 64 9 85 9c122 0 99 -51 165 -51c57 0 105 9 171 90'], + 0xE253: [705,45,1186,38,1146,'1118 73l28 -26c-32 -54 -94 -83 -156 -83c-31 0 -105 22 -105 99c0 10 1 20 4 49l40 367l-374 -471h-44c-48 108 -89 244 -120 371c-21 -91 -57 -237 -116 -336c-28 -48 -70 -88 -132 -88c-60 0 -105 43 -105 91c0 32 23 79 73 79c68 0 47 -65 79 -65 c108 0 180 493 203 645h53c42 -191 94 -392 161 -547l432 547h52l-60 -583c-1 -10 -3 -26 -3 -34c0 -37 13 -51 31 -51s38 16 59 36'], + 0xE254: [835,39,997,36,1098,'689 155l141 528c23 85 65 152 156 152c60 0 112 -45 112 -93c0 -33 0 -93 -73 -93c-74 0 -45 95 -85 95c-37 0 -58 -71 -69 -110l-179 -659h-52c-89 128 -173 276 -240 450c-37 -187 -92 -464 -254 -464c-60 0 -110 31 -110 94c0 33 21 83 70 83c74 0 40 -91 77 -91 c127 0 182 507 207 659h53c74 -188 158 -414 246 -551'], + 0xE255: [707,10,772,43,782,'405 700v-31c-148 -49 -217 -258 -217 -435c0 -134 60 -191 143 -191c174 0 304 256 304 453c0 79 -25 143 -103 143c-42 0 -108 -34 -108 -93c0 -20 8 -28 19 -28c13 0 28 10 40 10c28 0 58 -11 58 -56c0 -49 -38 -84 -100 -84c-50 0 -97 42 -97 122 c0 102 138 197 233 197c159 0 205 -122 205 -225c0 -249 -232 -492 -486 -492c-137 0 -253 83 -253 236c0 240 176 442 362 474'], + 0xE256: [696,0,645,36,731,'320 696h76c288 0 335 -73 335 -172c0 -58 -34 -264 -391 -286l14 53c141 19 236 105 236 233c0 97 -67 118 -149 118c-25 0 -32 -15 -46 -66l-120 -442c-30 -112 -85 -134 -229 -134l10 32c43 0 60 45 81 121l87 315c16 56 29 105 29 129c0 21 -11 31 -31 31 c-51 0 -122 -50 -161 -88l-25 30c97 96 196 126 284 126'], + 0xE257: [704,145,778,43,737,'698 17h39c-44 -146 -164 -162 -250 -162c-147 0 -251 109 -379 109c-12 0 -23 -1 -34 -3v31c124 57 226 57 280 66c128 23 226 177 226 344c0 108 -10 250 -131 250c-155 0 -263 -167 -263 -353c0 -94 55 -145 123 -145c42 0 76 5 131 52l28 -29 c-77 -68 -160 -86 -250 -86c-80 0 -175 49 -175 161c0 204 211 452 428 452c177 0 254 -119 254 -257c0 -162 -90 -315 -252 -401c-28 -15 -84 -35 -128 -43l-2 -2c67 -35 152 -77 225 -77c55 0 102 24 130 93'], + 0xE258: [697,13,869,36,831,'798 147l33 -23c-37 -63 -110 -137 -208 -137c-208 0 -139 241 -272 309l16 53c178 20 226 102 226 176c0 96 -38 118 -157 118c-21 0 -28 -24 -40 -68l-123 -440c-32 -113 -86 -135 -229 -135l10 32c37 0 58 38 81 120l90 325c14 50 29 94 29 119c0 23 -11 34 -32 34 c-49 0 -137 -59 -160 -88l-26 29c131 126 231 126 356 126c290 0 342 -65 342 -159c0 -69 -41 -168 -249 -229v-3c146 -60 100 -242 189 -242c34 0 80 16 124 83'], + 0xE259: [705,7,667,36,699,'36 208l41 8c24 -118 96 -169 218 -169c91 0 175 80 175 151c0 36 -24 69 -72 90c-80 36 -199 65 -199 197c0 148 207 220 290 220c109 0 210 -34 210 -110c0 -33 -20 -91 -88 -91c-38 0 -75 21 -75 60c0 42 30 50 30 62c0 17 -34 26 -76 26c-71 0 -166 -33 -166 -136 c0 -126 303 -95 303 -288c0 -85 -127 -235 -331 -235c-174 0 -249 106 -260 215'], + 0xE25A: [783,0,547,33,747,'714 783l33 -18c-46 -111 -157 -168 -293 -178l-124 -451c-30 -110 -87 -136 -229 -136l9 32c41 0 60 41 82 121l91 330c12 44 26 85 26 110c0 20 -21 31 -52 31c-52 0 -132 -37 -192 -128l-32 19c82 125 183 183 400 183c37 0 71 -7 100 -7c74 0 140 7 181 92'], + 0xE25B: [700,14,787,33,936,'375 510l-74 -267c-12 -42 -22 -79 -22 -112c0 -51 26 -90 59 -90c72 0 123 32 162 81c57 73 87 183 120 286c43 135 100 292 210 292c63 0 106 -41 106 -91c0 -32 -19 -76 -63 -76c-65 0 -43 65 -81 65c-81 0 -145 -288 -171 -357c-51 -136 -131 -255 -302 -255 c-50 0 -185 5 -185 125c0 20 1 48 9 78l77 286c6 21 31 98 31 116c0 27 -9 40 -35 40c-47 0 -129 -57 -157 -87l-26 28c59 55 143 124 274 124c70 0 89 -37 89 -76c0 -31 -10 -69 -21 -110'], + 0xE25C: [711,31,652,36,706,'59 621l-23 23c20 30 77 52 119 52c203 0 223 -215 223 -397c0 -39 -6 -123 -10 -168c86 72 286 248 286 404c0 33 -15 43 -31 43c-19 0 -28 -17 -55 -17c-35 0 -66 16 -66 73c0 43 50 77 85 77c101 0 119 -108 119 -167c0 -221 -290 -433 -433 -575h-51 c13 115 19 230 19 359c0 141 -19 316 -115 316c-14 0 -38 -1 -67 -23'], + 0xE25D: [711,34,956,36,1010,'525 622l56 74c96 -108 169 -295 169 -466c0 -23 -1 -66 -2 -92c70 74 210 250 210 392c0 33 -15 43 -31 43c-18 0 -28 -17 -55 -17c-42 0 -61 34 -61 67c0 43 31 88 80 88c105 0 119 -134 119 -184c0 -216 -220 -412 -334 -561h-46v75c0 164 -21 380 -86 496l-300 -571 h-52c22 143 26 307 26 463c0 108 -26 208 -92 208c-12 0 -42 -3 -67 -23l-23 31c26 32 82 51 122 51c198 0 197 -220 197 -406h3'], + 0xE25E: [710,14,720,36,781,'474 493l9 -81c64 21 194 80 194 134c0 38 -51 39 -51 95c0 37 24 69 80 69c41 0 75 -38 75 -110c0 -131 -176 -200 -289 -246l22 -178c8 -64 28 -106 58 -106c15 0 36 9 54 39l29 -22c-29 -56 -74 -87 -138 -87c-71 0 -124 42 -140 180l-14 122 c-63 -16 -227 -70 -227 -158c0 -32 58 -17 58 -90c0 -38 -26 -68 -78 -68c-35 0 -80 35 -80 105c0 127 134 212 322 275l-25 150c-10 60 -27 107 -56 107c-15 0 -34 -9 -54 -37l-29 22c34 53 75 88 139 88c77 0 125 -59 141 -203'], + 0xE25F: [711,144,720,36,773,'129 602l-24 29c34 39 90 65 140 65c184 0 217 -198 239 -370c5 -40 9 -125 9 -207c91 85 228 267 228 413c0 32 -15 43 -31 43c-19 0 -28 -17 -55 -17c-35 0 -59 30 -59 71c0 50 43 82 78 82c105 0 119 -132 119 -183c0 -141 -110 -297 -200 -402 c-118 -138 -266 -270 -394 -270c-124 0 -140 98 -143 161l40 11c11 -72 61 -86 109 -86c47 0 113 19 174 77c0 91 -7 225 -18 320c-15 135 -47 296 -130 296c-13 0 -46 -1 -82 -33'], + 0xE260: [702,98,778,36,744,'744 696l-8 -31c-77 -35 -164 -168 -237 -247h120l-28 -55h-128c-85 -99 -171 -209 -265 -298l2 -2c18 8 63 11 82 11c116 0 161 -100 244 -100c62 0 107 31 129 84h45c-44 -146 -164 -156 -250 -156c-101 0 -196 55 -275 79c-45 13 -78 19 -110 19h-29l9 32 c103 29 258 223 345 331h-134l24 55h152c43 48 88 107 132 162l-2 5c-14 -8 -53 -13 -57 -13c-95 0 -91 54 -139 54c-72 0 -144 -59 -174 -107l-34 23c74 112 187 160 284 160c49 0 103 -27 143 -27c48 0 77 21 159 21'], + 0xE264: [473,10,600,47,554,'554 280c0 -91 -50 -183 -121 -237c-48 -37 -98 -53 -178 -53c-160 0 -208 84 -208 185c0 78 46 178 126 240c47 36 105 58 171 58c172 0 210 -103 210 -193zM420 370c0 45 -27 72 -65 72c-35 0 -72 -24 -102 -82c-42 -82 -71 -167 -71 -251c0 -61 34 -86 70 -86 c53 0 85 39 126 144c32 82 42 137 42 203'], + 0xE268: [473,0,600,95,450,'450 473l-95 -350c-7 -26 -14 -48 -14 -63c0 -28 22 -35 99 -37v-23h-345v23c76 4 104 19 121 82l65 235c2 9 6 24 6 30c0 22 -17 33 -48 33c-19 0 -36 -1 -62 -5l2 23c115 15 180 30 271 52'], + 0xE26C: [473,0,600,54,531,'168 326l-20 14c62 103 140 133 223 133s160 -52 160 -135c0 -76 -54 -121 -129 -171c-50 -33 -107 -60 -190 -97h149c90 0 114 8 136 52h24l-51 -122h-414l-2 24c75 36 170 83 230 132c51 41 110 88 110 170c0 42 -35 74 -80 74c-53 0 -100 -22 -146 -74'], + 0xE270: [463,217,600,31,547,'180 323l-18 17c82 100 166 123 232 123c107 0 153 -69 153 -122c0 -82 -47 -124 -119 -152v-1c55 -25 81 -83 81 -137c0 -176 -193 -268 -357 -268c-82 0 -120 34 -121 75c0 25 16 64 64 64c78 0 64 -93 123 -93c86 0 149 79 149 181c0 31 -10 67 -25 85 c-26 31 -81 45 -133 45l4 24c113 16 202 68 202 162c0 44 -38 70 -84 70c-49 0 -111 -27 -151 -73'], + 0xE274: [450,217,600,30,564,'564 450l-119 -415h85l-27 -100h-86l-44 -152h-137l44 152h-250l28 102l433 413h73zM382 293l-271 -258h197'], + 0xE278: [450,218,600,25,561,'561 450l-38 -98h-259l-39 -70c136 -2 283 -75 283 -236c0 -76 -42 -150 -105 -198c-58 -44 -133 -66 -231 -66c-104 0 -147 30 -147 73c0 34 23 63 58 63c43 0 65 -26 81 -50c13 -21 27 -40 56 -40c99 0 159 83 159 158c0 69 -26 107 -62 132c-53 37 -130 44 -195 45 l132 287h307'], + 0xE27C: [670,10,600,55,545,'539 670l6 -25c-135 -38 -224 -115 -278 -235c33 10 48 13 78 13c122 0 177 -73 177 -178c0 -104 -76 -255 -269 -255c-83 0 -136 33 -165 82c-22 38 -33 78 -33 126c0 18 1 37 4 57c29 202 195 392 480 415zM384 276c0 66 -33 102 -79 102c-48 0 -63 -20 -83 -64 c-28 -60 -42 -130 -42 -196c0 -49 25 -85 69 -85c69 0 102 69 121 145c9 36 14 64 14 98'], + 0xE280: [450,217,600,24,582,'582 450l-408 -667h-105l354 549h-244c-73 0 -92 -16 -131 -84h-24l91 202h467'], + 0xE284: [670,10,600,41,560,'226 345v4c-48 43 -83 85 -83 151c0 106 93 170 208 170c64 0 113 -16 151 -43c33 -23 58 -58 58 -102c0 -65 -42 -114 -154 -151v-4c78 -72 107 -115 107 -178c0 -129 -105 -202 -249 -202c-131 0 -223 63 -223 168c0 81 56 146 185 187zM453 535c0 62 -43 100 -93 100 c-57 0 -94 -34 -94 -95c0 -41 21 -82 102 -137c57 51 85 77 85 132zM388 140c0 51 -17 87 -121 177c-80 -44 -114 -98 -114 -176c0 -75 49 -116 116 -116c68 0 119 44 119 115'], + 0xE288: [463,217,600,49,539,'55 -217l-6 25c135 38 224 115 278 235c-33 -10 -48 -13 -78 -13c-122 0 -177 73 -177 178c0 104 76 255 269 255c83 0 136 -33 165 -82c22 -38 33 -78 33 -126c0 -18 -1 -37 -4 -57c-29 -202 -195 -392 -480 -415zM414 335c0 49 -25 85 -69 85c-69 0 -102 -69 -121 -145 c-9 -36 -14 -64 -14 -98c0 -66 33 -102 79 -102c48 0 63 20 83 64c28 60 42 130 42 196'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Variants/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/Italic/Main.js new file mode 100644 index 0000000..9bf0e48 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/Italic/Main.js @@ -0,0 +1,65 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Variants/Italic/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Variants-italic'] = { + directory: 'Variants/Italic', + family: 'STIXMathJax_Variants', + style: 'italic', + id: 'STIXWEBVARIANTSI', + 0x20: [0,0,250,0,0,''], + 0xA0: [0,0,250,0,0,''], + 0xE22D: [677,45,852,43,812,'793 65l19 -15c-28 -54 -75 -81 -130 -81c-74 0 -100 50 -103 191h-238c-87 -119 -137 -205 -213 -205c-47 0 -85 38 -85 83c0 34 18 60 53 60c48 0 37 -53 69 -53c48 0 109 89 142 139l322 493h28l27 -539c2 -37 12 -107 49 -107c16 0 44 8 60 34zM578 200l-13 305 l-201 -305c-3 -4 -6 -10 -6 -13c0 -1 1 -1 1 -2c7 0 25 11 32 15h187'], + 0xE22E: [670,3,724,35,709,'325 522l3 -2c70 95 154 150 274 150c62 0 107 -43 107 -104c0 -96 -114 -164 -173 -183c82 -8 155 -52 155 -151c0 -146 -199 -235 -333 -235c-41 0 -86 6 -121 32l11 22c32 -16 74 -20 107 -20c124 0 229 100 229 200c0 62 -52 114 -173 114h-66l11 38h19 c79 0 250 44 250 161c0 50 -29 79 -85 79c-47 0 -103 -34 -130 -62c-54 -54 -93 -123 -142 -291l-37 -128c-24 -83 -42 -130 -127 -140c-19 -2 -43 -2 -69 -2l9 24c41 0 52 23 92 162l104 363c3 9 3 17 3 24c0 18 -11 30 -42 30h-22l4 24c55 5 125 15 185 35'], + 0xE22F: [671,11,569,43,586,'514 140l15 -16c-4 -6 -89 -135 -250 -135c-118 0 -236 66 -236 230c0 221 168 402 357 444c24 5 46 8 67 8c72 0 119 -35 119 -94c0 -32 -31 -85 -75 -85c-37 0 -56 25 -56 52c0 51 50 42 50 69c0 15 -27 23 -48 23c-104 0 -212 -75 -268 -214 c-23 -58 -39 -125 -39 -208c0 -128 74 -182 162 -182c101 0 186 91 202 108'], + 0xE230: [662,0,801,34,788,'49 534l-15 19c45 43 91 69 142 85c64 20 134 24 213 24c307 0 399 -67 399 -240s-114 -422 -479 -422h-257l7 24c42 0 59 24 77 87l97 337c14 48 33 98 33 121c0 22 -9 37 -45 37c-79 0 -145 -50 -172 -72zM381 586l-145 -499c-4 -13 -5 -21 -5 -26c0 -18 21 -21 59 -21 c95 0 388 40 388 378c0 130 -62 204 -247 204c-24 0 -45 -17 -50 -36'], + 0xE231: [670,4,553,40,599,'511 152l16 -18c-52 -55 -110 -92 -172 -114c-46 -17 -95 -24 -147 -24c-83 0 -168 37 -168 119c0 123 118 200 213 238c-44 21 -82 41 -82 110c0 116 174 207 274 207c90 0 154 -32 154 -99c0 -18 -17 -77 -72 -77c-28 0 -54 21 -54 49c0 40 30 47 30 60 c0 26 -15 34 -47 34c-101 0 -199 -71 -199 -144c0 -56 56 -88 134 -88h68l-9 -38c-112 0 -303 -88 -303 -227c0 -61 51 -90 125 -90c83 0 188 49 239 102'], + 0xE232: [662,0,652,43,710,'59 534l-16 18c104 97 200 110 295 110c210 0 372 -19 372 -117c0 -43 -24 -80 -68 -80c-30 0 -57 20 -57 47c1 55 47 36 47 63c0 28 -89 47 -180 47c-40 0 -55 -8 -67 -49l-57 -196h218l-13 -40h-216l-44 -149c-53 -178 -112 -188 -213 -188l8 24c36 0 59 25 78 92 l118 405c4 14 10 36 10 52c0 22 -10 33 -46 33c-83 0 -146 -50 -169 -72'], + 0xE233: [671,131,580,40,580,'425 91l-5 2c-45 -36 -106 -55 -166 -55c-109 0 -214 64 -214 204c0 234 224 429 421 429c72 0 119 -35 119 -94c0 -32 -34 -83 -78 -83c-30 0 -53 23 -53 50c0 49 50 45 50 66c0 16 -24 26 -48 26c-104 0 -210 -81 -268 -213c-25 -57 -36 -103 -36 -186 c0 -112 59 -156 130 -156c115 0 233 89 258 232l23 4c2 -10 2 -22 2 -34c0 -111 -54 -279 -163 -357c-54 -39 -107 -57 -186 -57c-71 0 -125 22 -154 54l15 19c23 -26 90 -38 131 -38c95 0 186 92 222 187'], + 0xE234: [664,21,831,41,845,'845 662l-10 -24c-43 0 -51 -27 -69 -92l-120 -427c-6 -20 -7 -38 -7 -52c0 -28 16 -41 54 -41c26 0 43 8 63 27l15 -19c-33 -38 -97 -55 -138 -55c-42 0 -106 21 -106 84c0 11 1 22 5 35l71 252c-9 -4 -22 -13 -30 -13h-258l-68 -244c-24 -85 -82 -93 -189 -93l10 24 c42 4 60 25 78 88l95 341c2 6 27 104 27 121c0 22 -7 34 -39 34c-72 0 -143 -50 -172 -75l-16 18c46 53 140 113 268 113c52 0 72 -25 72 -75c0 -26 -9 -60 -21 -102l-36 -123c11 2 20 13 30 13h257l56 194c26 89 70 91 178 91'], + 0xE235: [662,0,575,38,591,'591 662l-6 -24c-94 0 -135 -5 -167 -117l-118 -410c-1 -4 -3 -13 -3 -24c0 -24 24 -32 48 -32c51 0 110 18 168 73l18 -19c-84 -82 -174 -109 -289 -109h-204l6 24c75 0 124 0 156 112l104 362c6 21 18 56 18 76c0 26 -21 32 -48 32c-42 0 -122 -25 -168 -73l-17 19 c73 72 148 110 314 110h188'], + 0xE236: [662,120,632,31,785,'785 662l-9 -24c-87 0 -115 -33 -136 -105l-126 -440c-42 -146 -150 -213 -284 -213c-111 0 -199 49 -199 135c0 50 34 91 78 91c34 0 53 -22 53 -55c0 -40 -36 -49 -36 -66c0 -50 49 -65 110 -65c144 0 172 177 210 310l93 322c3 9 4 17 4 24c0 35 -30 44 -65 44 c-138 0 -213 -128 -245 -193h-28c37 95 116 235 295 235h285'], + 0xE237: [670,13,809,30,783,'308 449l6 -3c89 99 235 224 354 224c73 0 115 -43 115 -104c0 -54 -32 -103 -82 -103c-30 0 -50 24 -50 51c0 56 55 37 55 77c0 18 -15 39 -45 39c-94 0 -218 -93 -330 -229c45 -204 160 -349 279 -349c44 0 103 29 135 74l20 -16c-44 -58 -103 -123 -220 -123 c-134 0 -249 153 -281 280l-40 -140c-34 -120 -72 -127 -194 -127l7 24c41 0 62 39 97 163l103 362c3 9 4 16 4 23c0 21 -18 30 -47 30c-6 0 -11 0 -18 -1l5 25c58 6 126 16 187 36'], + 0xE238: [670,7,693,30,653,'636 143l17 -18c-59 -60 -152 -132 -276 -132c-36 0 -62 5 -88 11c-33 7 -64 15 -110 15c-44 0 -104 -19 -149 -19l6 24c33 0 61 25 78 93l70 284c48 193 203 269 304 269c71 0 97 -55 97 -110c0 -50 -36 -83 -81 -83c-30 0 -50 24 -50 51c0 48 50 41 50 64 c0 17 -7 38 -58 38c-185 0 -130 -365 -265 -538v-4c25 17 83 22 114 22c103 0 80 -50 168 -50c58 0 118 31 173 83'], + 0xE239: [671,45,1166,40,1128,'1113 54l15 -19c-35 -49 -87 -67 -142 -67c-23 0 -88 13 -88 80c0 6 0 12 5 54l44 395h-3l-412 -489h-15c-58 123 -106 245 -140 406h-1c-21 -87 -54 -253 -131 -375c-32 -51 -67 -84 -118 -84c-49 0 -87 37 -87 84c0 34 18 60 53 60c48 0 41 -57 73 -57 c18 0 43 17 60 47c73 126 136 473 159 582h30c45 -191 92 -381 169 -540l457 540h27l-61 -557c-1 -9 -2 -19 -2 -29c0 -30 10 -58 44 -58c32 0 54 17 64 27'], + 0xE23A: [795,37,957,40,1064,'671 125h1c141 466 168 561 191 596c30 46 67 74 114 74c49 0 87 -37 87 -84c0 -34 -18 -60 -53 -60c-48 0 -41 57 -73 57c-54 0 -71 -73 -81 -104l-191 -628h-20c-94 128 -185 279 -258 476h-2c-36 -174 -105 -489 -259 -489c-49 0 -87 37 -87 84c0 34 18 60 53 60 c48 0 41 -57 73 -57c120 0 182 454 218 621h27c78 -195 155 -410 260 -546'], + 0xE23B: [669,10,737,38,729,'360 662l6 -23c-116 -34 -221 -213 -221 -409c0 -137 69 -200 165 -200c75 0 163 54 226 142c51 72 84 165 84 288c0 100 -58 153 -117 153s-118 -42 -118 -108c0 -25 11 -37 36 -37c9 0 17 5 35 5c25 0 29 -16 29 -33c0 -37 -40 -72 -80 -72c-58 0 -87 44 -87 100 c0 99 114 201 240 201c116 0 171 -107 171 -210c0 -116 -61 -243 -134 -322c-84 -90 -193 -147 -321 -147c-129 0 -236 73 -236 223c0 249 180 427 322 449'], + 0xE23C: [662,0,667,38,709,'290 662h99c278 0 320 -63 320 -160c0 -93 -67 -274 -395 -274l9 24c178 17 283 114 283 246c0 91 -48 124 -178 124c-35 0 -43 -16 -56 -60l-126 -443c-20 -70 -70 -119 -191 -119l8 24c42 0 58 35 82 117l89 305c15 53 30 103 30 126c0 22 -10 34 -46 34 c-87 0 -136 -54 -162 -72l-18 19c98 94 183 109 252 109'], + 0xE23D: [671,131,744,43,704,'680 9h24c-41 -132 -146 -140 -232 -140c-94 0 -186 53 -274 76c-46 12 -87 19 -124 19v24c114 43 213 49 268 60c142 28 244 177 244 336c0 105 -7 246 -149 246c-171 0 -290 -168 -290 -345c0 -88 64 -145 145 -145c41 0 84 7 128 42l14 -18c-46 -45 -126 -74 -207 -74 c-60 0 -118 19 -154 68c-18 25 -30 57 -30 96c0 214 205 417 412 417c164 0 238 -113 238 -243c0 -158 -90 -305 -244 -383c-34 -17 -99 -39 -141 -45l-1 -4c69 -22 170 -74 242 -74c76 0 119 46 131 87'], + 0xE23E: [662,3,854,38,816,'800 129l16 -18c-52 -55 -121 -114 -192 -114c-143 0 -129 149 -211 243c-14 16 -77 51 -82 51l9 23c178 17 271 120 271 189c0 92 -49 117 -179 117c-35 0 -43 -12 -49 -34l-116 -396c-27 -93 -63 -190 -211 -190l9 24c42 0 57 35 81 117l91 315c14 47 30 93 30 116 c0 22 -10 36 -46 36c-87 0 -138 -52 -167 -73l-16 19c104 108 200 108 350 108c278 0 327 -54 327 -146c0 -71 -43 -166 -253 -221v-4c149 -57 84 -232 195 -232c58 0 107 35 143 70'], + 0xE23F: [671,0,634,38,671,'38 193l26 3c10 -61 40 -113 114 -139c30 -11 64 -16 98 -16c102 0 203 48 203 152c0 112 -275 84 -275 271c0 142 196 207 274 207c105 0 193 -29 193 -102c0 -30 -18 -79 -69 -79c-28 0 -56 22 -56 50c0 40 30 45 30 60c0 34 -60 34 -98 34c-46 0 -188 -34 -188 -141 c0 -128 308 -98 308 -278c0 -94 -146 -215 -316 -215c-179 0 -244 86 -244 193'], + 0xE240: [721,0,509,41,730,'712 721l18 -15c-60 -98 -161 -141 -301 -147l-108 -372c-51 -176 -112 -187 -213 -187l9 24c40 0 63 38 84 112l93 324c12 43 25 86 25 108c0 21 -17 32 -35 32c-52 0 -145 -22 -223 -123l-20 14c84 122 175 172 386 172c40 0 70 -6 101 -6c79 0 154 18 184 64'], + 0xE241: [672,13,817,37,950,'355 489l-75 -257c-12 -41 -23 -80 -23 -110c0 -37 21 -85 72 -85c291 0 266 406 398 559c36 42 69 76 137 76c63 0 86 -35 86 -73c0 -40 -19 -85 -68 -85c-28 0 -50 18 -50 41c0 34 17 33 17 43c0 12 -6 18 -22 18c-51 0 -97 -89 -125 -153c-73 -168 -96 -476 -386 -476 c-49 0 -169 9 -169 121c0 20 3 43 10 69l78 277c6 20 26 96 26 113c0 22 -5 39 -37 39c-72 0 -136 -44 -172 -71l-15 19c47 42 139 108 267 108c55 0 72 -28 72 -67c0 -32 -9 -66 -21 -106'], + 0xE242: [677,33,638,33,680,'335 112l5 -6c51 40 156 130 227 231c42 60 73 120 73 175c0 61 -24 87 -62 87c-31 0 -24 -49 -70 -49c-33 0 -50 23 -50 54c0 42 36 73 83 73c46 0 87 -12 116 -59c17 -26 23 -66 23 -93c0 -83 -45 -166 -108 -245c-96 -119 -234 -228 -324 -310l-29 -3 c12 103 25 222 25 346c0 136 -16 309 -132 309c-25 0 -48 -6 -64 -19l-15 19c35 29 71 40 108 40c187 0 206 -202 206 -378c0 -45 -8 -140 -12 -172'], + 0xE243: [685,32,956,33,998,'724 115l6 -3c49 58 127 132 182 237c28 54 46 110 46 158c0 70 -21 108 -61 108c-23 0 -15 -50 -56 -50c-34 0 -50 26 -50 54c0 46 37 66 83 66c79 0 124 -76 124 -171c0 -211 -230 -409 -340 -546h-26v68c0 169 -6 379 -89 491h-7l-323 -559h-30c21 130 45 292 45 442 c0 122 -32 216 -134 216c-16 0 -35 -9 -46 -18l-15 19c36 29 73 35 110 35c173 0 188 -164 188 -321c0 -23 -1 -55 -3 -82h6l197 342l45 49c77 -83 151 -265 151 -432c0 -36 0 -67 -3 -103'], + 0xE244: [672,13,692,38,739,'444 473l10 -95c115 53 226 106 226 177c0 10 -4 24 -19 24c-10 0 -6 -12 -33 -12c-22 0 -34 23 -34 47c0 34 28 58 69 58c36 0 76 -31 76 -95c0 -97 -101 -157 -278 -240l25 -172c8 -58 25 -103 67 -103c16 0 41 7 57 33l19 -14c-26 -54 -66 -81 -120 -81 c-61 0 -105 33 -122 171l-16 129c-215 -107 -273 -154 -273 -207c0 -9 2 -14 8 -14s12 9 26 9c31 0 40 -18 40 -42c0 -27 -22 -59 -71 -59c-33 0 -63 26 -63 79c0 112 137 179 328 276l-24 153c-6 38 -20 105 -64 105c-16 0 -43 -8 -58 -34l-22 10c26 54 70 86 124 86 c64 0 107 -47 122 -189'], + 0xE245: [675,131,719,34,763,'462 119l3 -4c60 39 256 277 256 393c0 61 -24 95 -59 95c-29 0 -23 -47 -66 -47c-31 0 -47 21 -47 50c0 39 35 69 78 69c74 0 136 -47 136 -153c0 -191 -365 -653 -600 -653c-106 0 -126 81 -129 144l22 10c24 -55 65 -73 120 -73c53 0 110 18 187 85 c0 86 -5 196 -16 290c-14 125 -48 293 -151 293c-17 0 -55 -7 -77 -23l-16 18c42 40 85 49 127 49c167 0 200 -186 222 -353c6 -45 10 -158 10 -190'], + 0xE246: [664,94,752,38,714,'714 662l-6 -21c-27 -4 -54 -34 -89 -76l-160 -190h110l-17 -38h-126c-90 -102 -174 -202 -270 -286c10 2 21 2 31 2c137 0 205 -94 327 -94c76 0 119 46 133 87h22c-41 -132 -146 -140 -232 -140c-94 0 -186 51 -274 76c-43 12 -81 18 -116 18h-9l3 19 c28 14 77 43 121 89c73 74 142 149 211 229h-112l15 38h130l153 183l-7 5c-11 -1 -24 -2 -34 -2c-78 0 -95 48 -161 48c-86 0 -155 -80 -174 -108l-20 11c67 102 174 152 266 152c43 0 98 -22 145 -22c58 0 88 20 140 20'], + 0xE262: [460,11,570,56,514,'326 460h8c102 0 180 -67 180 -187c0 -101 -65 -208 -152 -256c-39 -21 -85 -28 -131 -28c-102 0 -175 71 -175 168c0 181 125 303 270 303zM414 323c0 53 -22 115 -82 115c-44 0 -82 -28 -111 -73c-52 -80 -65 -160 -65 -243c0 -55 24 -109 77 -109c47 0 88 34 116 72 c51 70 65 176 65 238'], + 0xE266: [460,0,570,100,415,'204 419l204 41c4 0 7 -1 7 -7c0 -5 -2 -13 -3 -18l-103 -359c-4 -13 -7 -24 -7 -32c0 -20 16 -29 69 -29v-15h-271v15c75 4 98 25 114 80l69 243c5 16 8 30 8 41c0 19 -10 30 -41 30c-12 0 -27 -2 -46 -5v15'], + 0xE26A: [460,0,570,59,487,'156 288l-21 7c39 115 118 165 202 165c76 0 150 -46 150 -142c0 -84 -75 -145 -286 -247h142c57 0 78 20 103 70l17 -7l-51 -134h-353v17l239 148c57 35 102 66 102 129c0 35 -19 93 -94 93c-74 0 -115 -31 -150 -99'], + 0xE26E: [461,217,570,40,513,'206 352l-17 7c43 72 107 102 182 102c74 0 142 -37 142 -122c0 -74 -44 -133 -131 -173v-3c51 -20 82 -55 82 -128c0 -79 -47 -140 -104 -190c-49 -43 -133 -62 -205 -62s-115 31 -115 64c0 25 21 36 47 36c19 0 37 -6 64 -30c26 -23 52 -32 71 -32c33 0 78 18 103 46 c26 31 39 79 39 126c0 108 -64 130 -160 130h-24v20c57 9 127 23 166 45c49 28 80 79 80 140c0 55 -35 91 -88 91c-43 0 -96 -20 -132 -67'], + 0xE272: [450,217,570,17,542,'542 450l-127 -440h86l-20 -72h-86l-45 -155h-100l45 155h-278l20 71l460 441h45zM404 318l-3 1l-320 -309h234'], + 0xE276: [450,218,570,23,536,'536 450l-31 -80h-247l-41 -87c123 -14 252 -85 252 -221c0 -145 -126 -280 -326 -280c-76 0 -87 9 -108 28c-9 9 -12 20 -12 30c0 27 20 46 59 46c66 0 59 -62 131 -62c81 0 169 91 169 192c0 137 -141 180 -243 180v25l110 229h287'], + 0xE27A: [668,10,570,28,553,'553 668l-2 -17c-145 -32 -271 -100 -337 -244l3 -3c52 22 77 25 116 25c103 0 169 -61 169 -164c0 -125 -92 -275 -287 -275c-135 0 -187 98 -187 213c0 110 57 221 156 312c103 94 231 140 369 153zM216 18h2c39 0 71 16 96 41c51 50 78 134 78 203 c0 72 -31 129 -105 129c-52 0 -92 -38 -111 -73c-31 -57 -49 -128 -49 -192c0 -60 33 -108 89 -108'], + 0xE27E: [450,217,570,40,543,'543 434l-408 -651h-79l384 587h-224c-79 0 -116 -15 -157 -82l-19 6l91 156h402'], + 0xE282: [668,10,570,50,519,'243 352v1c-72 71 -101 111 -101 165c0 96 91 150 198 150s179 -53 179 -134c0 -78 -49 -125 -169 -161v-1c86 -79 132 -123 132 -196c0 -111 -109 -186 -233 -186c-102 0 -199 47 -199 166c0 94 73 161 193 196zM445 525c0 71 -43 115 -107 115s-102 -35 -102 -100 c0 -42 16 -70 94 -143c87 41 115 89 115 128zM389 150c0 57 -15 73 -122 179c-90 -34 -141 -98 -141 -185c0 -82 63 -126 131 -126c79 0 132 63 132 132'], + 0xE286: [460,217,570,23,526,'355 53l-3 3c-52 -22 -77 -25 -116 -25c-103 0 -169 61 -169 164c0 125 91 265 272 265c135 0 187 -98 187 -213c0 -110 -57 -221 -156 -312c-103 -94 -209 -139 -347 -152l2 18c150 41 264 108 330 252zM338 432h-2c-39 0 -71 -16 -96 -41c-51 -50 -63 -120 -63 -189 c0 -72 42 -124 97 -124c41 0 71 14 98 43c31 57 55 139 55 203c0 60 -33 108 -89 108'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Variants/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/Regular/Main.js new file mode 100644 index 0000000..1b421d6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/Variants/Regular/Main.js @@ -0,0 +1,161 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/Variants/Regular/Main.js + * + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +MathJax.OutputJax['SVG'].FONTDATA.FONTS['STIXMathJax_Variants'] = { + directory: 'Variants/Regular', + family: 'STIXMathJax_Variants', + id: 'STIXWEBVARIANTS', + 0x20: [0,0,250,0,0,''], + 0x77: [80,244,515,22,493,'493 80v-10c-14 -5 -18 -10 -29 -38l-96 -242c-11 -28 -15 -34 -20 -34s-7 3 -17 30l-63 165l-79 -168c-8 -17 -14 -27 -17 -27c-5 0 -11 9 -19 30l-94 240c-15 38 -21 43 -37 44v10h126v-10c-25 -3 -32 -9 -32 -23c0 -7 1 -14 4 -21l69 -183l64 139l-14 40 c-13 37 -23 45 -49 48v10h143v-10c-33 -5 -41 -10 -41 -25c0 -11 4 -20 12 -42l59 -156l63 155c8 19 12 36 12 47s-7 16 -31 21v10h86'], + 0x7C: [690,189,320,127,193,'193 -189h-66v879h66v-879'], + 0xA0: [0,0,250,0,0,''], + 0x19B: [668,0,520,55,516,'516 0h-133v15c16 0 46 2 46 24c0 6 -2 12 -4 18l-97 276l-112 -250c-5 -11 -13 -29 -13 -41c0 -26 39 -26 57 -27v-15h-205v15c24 3 42 11 53 34l132 282c8 17 42 85 42 101c0 10 -3 20 -6 30h-182v40h167c-6 12 -12 27 -19 38c-9 13 -32 44 -50 44 c-24 0 -41 -20 -78 -20c-25 0 -43 22 -43 46c0 39 35 58 70 58c72 0 109 -49 139 -108c9 -19 20 -38 26 -58h145v-40h-130l145 -396c10 -27 20 -47 50 -51v-15'], + 0x264: [450,10,460,18,441,'441 450v-15c-8 -1 -18 0 -26 -2c-15 -5 -69 -94 -74 -102l-62 -94c21 -35 69 -105 69 -145c0 -59 -52 -102 -109 -102c-55 0 -96 28 -96 86c0 26 16 48 30 68l43 60l-90 137c-11 16 -35 45 -49 61c-17 20 -32 32 -59 33v15h193v-15c-12 -1 -48 -1 -48 -19 c0 -8 6 -15 10 -21l86 -132l84 126c4 6 8 13 8 20c0 21 -32 25 -47 26v15h137zM277 85c0 26 -30 67 -44 90c-19 -27 -55 -67 -55 -102c0 -29 25 -44 51 -44c31 0 48 27 48 56'], + 0x2032: [565,-28,340,44,295,'78 28l-34 12c26 123 89 398 107 456c16 51 46 69 76 69c36 0 68 -22 68 -71c0 -11 -5 -35 -10 -47c-21 -57 -146 -306 -207 -419'], + 0x2033: [565,-28,605,43,561,'343 28l-34 12c26 123 87 398 105 456c16 51 49 69 79 69c36 0 68 -22 68 -71c0 -11 -6 -35 -11 -47c-21 -57 -146 -306 -207 -419zM76 28l-33 12c26 123 90 398 107 456c15 51 47 69 77 69c36 0 68 -22 68 -71c0 -11 -6 -35 -11 -47c-22 -57 -146 -306 -208 -419'], + 0x2034: [565,-28,873,43,829,'610 28l-33 12c26 123 90 398 107 456c15 51 47 69 77 69c36 0 68 -22 68 -71c0 -11 -6 -35 -11 -47c-22 -57 -146 -306 -208 -419zM343 28l-33 12c26 123 90 398 107 456c15 51 47 69 77 69c36 0 68 -22 68 -71c0 -11 -6 -35 -11 -47c-22 -57 -146 -306 -208 -419z M76 28l-33 12c26 123 90 398 107 456c15 51 47 69 77 69c36 0 68 -22 68 -71c0 -11 -6 -35 -11 -47c-22 -57 -146 -306 -208 -419'], + 0x2035: [565,-28,340,45,296,'296 40l-34 -12c-61 113 -186 362 -207 419c-5 12 -10 36 -10 47c0 49 32 71 68 71c30 0 60 -18 76 -69c18 -58 81 -333 107 -456'], + 0x2036: [565,-28,605,44,561,'561 40l-33 -12c-62 113 -186 362 -208 419c-5 12 -10 36 -10 47c0 49 32 71 68 71c30 0 61 -18 76 -69c17 -58 81 -333 107 -456zM295 40l-34 -12c-61 113 -186 362 -207 419c-5 12 -10 36 -10 47c0 49 32 71 68 71c30 0 63 -18 79 -69c18 -58 78 -333 104 -456'], + 0x2037: [565,-28,873,43,829,'829 40l-33 -12c-62 113 -186 362 -208 419c-5 12 -11 36 -11 47c0 49 32 71 68 71c30 0 62 -18 77 -69c17 -58 81 -333 107 -456zM562 40l-33 -12c-62 113 -186 362 -208 419c-5 12 -11 36 -11 47c0 49 32 71 68 71c30 0 62 -18 77 -69c17 -58 81 -333 107 -456zM295 40 l-33 -12c-62 113 -186 362 -208 419c-5 12 -11 36 -11 47c0 49 32 71 68 71c30 0 62 -18 77 -69c17 -58 81 -333 107 -456'], + 0x2057: [565,-28,1139,43,1096,'877 28l-33 12c26 123 90 398 107 456c15 51 47 69 77 69c36 0 68 -22 68 -71c0 -11 -6 -35 -11 -47c-22 -57 -146 -306 -208 -419zM610 28l-33 12c26 123 90 398 107 456c15 51 47 69 77 69c36 0 68 -22 68 -71c0 -11 -6 -35 -11 -47c-22 -57 -146 -306 -208 -419z M343 28l-33 12c26 123 90 398 107 456c15 51 47 69 77 69c36 0 68 -22 68 -71c0 -11 -6 -35 -11 -47c-22 -57 -146 -306 -208 -419zM76 28l-33 12c26 123 90 398 107 456c15 51 47 69 77 69c36 0 68 -22 68 -71c0 -11 -6 -35 -11 -47c-22 -57 -146 -306 -208 -419'], + 0x210F: [683,10,579,47,547,'532 117l15 -10c-30 -45 -88 -117 -149 -117c-35 0 -53 22 -53 56c0 25 17 84 24 110l40 144c6 20 9 42 9 62c0 26 -8 44 -37 44c-46 0 -117 -100 -140 -133c-56 -83 -83 -178 -110 -273h-84l127 469l15 50h-109l9 37h111c5 15 9 30 9 46c0 24 -41 22 -57 22v15 c54 11 105 25 157 44l8 -2c-14 -41 -25 -83 -36 -125h141l-12 -37h-140c-26 -90 -49 -182 -74 -273h1c38 75 120 214 219 214c59 0 88 -29 88 -88c0 -24 -4 -48 -11 -71l-51 -179c-5 -17 -11 -37 -11 -55c0 -8 3 -17 13 -17c32 0 70 45 88 67'], + 0x2140: [662,0,718,50,668,'668 0h-618v44l220 300l-203 274v44h577v-44h-369l200 -274l-223 -300h416v-44zM420 345l-200 273h-96l200 -272l-221 -302h97'], + 0x2190: [449,-57,415,55,415,'415 220h-173c-10 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -64 82 -97l-20 -19c-65 75 -141 151 -237 191v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h172v-66'], + 0x2191: [600,15,598,82,518,'518 362l-21 -20c-37 23 -73 52 -107 82c-11 9 -23 14 -32 14c-11 0 -22 -8 -22 -26v-427h-74v428c0 10 -13 26 -24 26c-10 0 -16 -4 -28 -14c-31 -29 -70 -60 -108 -82l-20 20c84 65 167 141 212 237h11c46 -96 128 -172 213 -238'], + 0x2192: [449,-57,415,0,360,'360 258v-10c-96 -41 -172 -115 -238 -191l-20 19c23 33 52 65 82 96c9 9 14 20 14 28c0 10 -8 20 -26 20h-172v66h173c10 0 26 12 26 22c0 9 -4 15 -14 25c-29 28 -60 64 -82 97l20 19c65 -75 141 -151 237 -191'], + 0x2193: [600,15,598,80,516,'496 242l20 -20c-84 -65 -167 -141 -212 -237h-11c-46 97 -128 173 -213 238l21 20c37 -23 73 -52 107 -82c11 -9 23 -14 32 -14c11 0 22 8 22 26v427h74v-428c0 -10 13 -26 24 -26c10 0 16 4 28 14c31 29 70 60 108 82'], + 0x21D1: [600,15,794,63,729,'729 233l-23 -21c-30 21 -65 50 -94 76c-19 17 -25 22 -46 22c-9 0 -25 -8 -25 -27v-298h-74v443c-21 33 -46 59 -73 59c-28 0 -42 -26 -67 -58v-444h-74v298c0 19 -18 27 -28 27c-18 0 -28 -6 -47 -24c-13 -11 -60 -50 -92 -74l-23 21c132 118 221 244 326 367h11 c104 -121 197 -249 329 -367'], + 0x21D3: [600,15,794,65,731,'708 373l23 -21c-132 -118 -221 -244 -326 -367h-11c-104 121 -197 249 -329 367l23 21c29 -23 65 -50 94 -76c19 -17 25 -22 46 -22c9 0 25 8 25 27v298h74v-443c21 -33 46 -59 73 -59c28 0 42 26 67 58v444h74v-298c0 -19 18 -27 28 -27c18 0 28 6 47 24 c13 11 60 50 92 74'], + 0x21E0: [449,-58,463,70,393,'393 220h-136c-18 0 -26 -12 -26 -22c0 -9 4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 150 -237 190v10c96 41 172 115 238 191l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -10 8 -20 26 -20h135v-66'], + 0x21E2: [449,-58,463,70,393,'393 258v-10c-96 -40 -172 -115 -237 -190l-20 19c22 33 53 68 82 96c10 10 14 16 14 25c0 10 -8 22 -26 22h-136v66h135c18 0 26 10 26 20c0 8 -5 19 -14 28c-30 31 -59 63 -82 96l20 19c66 -76 142 -150 238 -191'], + 0x2205: [729,74,523,28,502,'502 729l-77 -148c49 -77 65 -181 65 -251c0 -121 -42 -345 -226 -345c-51 0 -91 19 -123 48l-56 -107h-57l77 149c-50 75 -67 180 -67 255c0 118 42 345 226 345c37 0 68 -9 94 -25c12 -7 22 -16 32 -26l55 105h57zM147 155l213 411c-19 48 -48 83 -96 83 c-92 0 -130 -134 -130 -319c0 -53 2 -118 13 -175zM380 493l-212 -409c19 -43 49 -73 96 -73c128 0 130 240 130 319c0 31 -2 98 -14 163'], + 0x2208: [516,13,402,64,338,'338 -13h-16c-159 0 -258 117 -258 265s101 264 261 264h13v-66h-13c-112 0 -176 -73 -192 -165h205v-66h-205c17 -92 81 -166 193 -166h12v-66'], + 0x2209: [662,156,685,60,625,'625 -26h-216v-130h-50v130h-28c-159 0 -271 131 -271 279s114 279 274 279h25v130h50v-130h216v-66h-216v-180h216v-66h-216v-180h216v-66zM359 286v180h-25c-103 0 -189 -85 -206 -180h231zM359 40v180h-230c17 -95 103 -180 206 -180h24'], + 0x220B: [516,13,402,64,338,'64 516h13c160 0 261 -116 261 -264s-99 -265 -258 -265h-16v66h12c112 0 176 74 193 166h-205v66h205c-16 92 -80 165 -192 165h-13v66'], + 0x220C: [662,156,685,60,625,'326 532h28c159 0 271 -131 271 -279s-114 -279 -274 -279h-25v-130h-50v130h-216v66h216v180h-216v66h216v180h-216v66h216v130h50v-130zM326 286h230c-17 95 -103 180 -206 180h-24v-180zM557 220h-231v-180h25c103 0 189 85 206 180'], + 0x220F: [662,0,694,30,664,'664 0h-246v19c66 6 78 16 78 90v503h-297v-503c0 -71 9 -84 76 -90v-19h-245v19c65 6 79 16 79 90v433c0 75 -4 97 -78 101v19h633v-19c-69 -5 -78 -24 -78 -90v-444c0 -71 11 -84 78 -90v-19'], + 0x2210: [662,0,694,30,664,'664 0h-633v19c74 4 78 26 78 101v433c0 74 -14 84 -79 90v19h245v-19c-67 -6 -76 -19 -76 -90v-503h297v503c0 74 -12 84 -78 90v19h246v-19c-67 -6 -78 -19 -78 -90v-444c0 -66 9 -85 78 -90v-19'], + 0x2211: [662,0,694,38,656,'656 194l-41 -194h-577l307 329l-288 333h542v-163h-20c0 9 -4 21 -6 30c-17 61 -58 77 -95 81c-17 2 -30 2 -50 2h-212l222 -255l-248 -267h308c79 0 114 27 135 104h23'], + 0x2216: [710,222,523,46,478,'478 -222h-72l-360 932h72'], + 0x221A: [943,11,737,67,767,'767 943l-382 -954h-32l-143 361c-14 36 -35 54 -55 54c-24 0 -58 -17 -77 -31l-11 18l141 130h14l164 -411h2l333 833h46'], + 0x221B: [946,-55,737,72,767,'241 863l-12 2c15 48 46 81 98 81c47 0 78 -27 78 -68c0 -24 -16 -54 -44 -72c45 -16 71 -39 71 -88c0 -77 -74 -117 -149 -117c-36 0 -56 17 -56 35c0 10 9 18 21 18c8 0 16 -3 30 -13c19 -13 29 -16 43 -16c37 0 65 28 65 71c0 38 -18 61 -52 72c-11 4 -22 5 -51 5v11 c19 7 32 12 42 18c25 14 41 33 41 63c0 34 -21 51 -54 51c-31 0 -50 -16 -71 -53zM767 943l-382 -888h-32l-143 323c-16 36 -35 54 -55 54c-24 0 -53 -17 -72 -31l-11 18l141 130h19l161 -355h2l322 749h50'], + 0x221C: [943,-55,737,72,767,'418 688h-51v-83h-47v83h-140v40l157 215h30v-215h51v-40zM320 728v162l-118 -162h118zM767 943l-382 -888h-32l-143 323c-16 36 -35 54 -55 54c-24 0 -53 -17 -72 -31l-11 18l141 130h19l161 -355h2l322 749h50'], + 0x221D: [428,0,685,41,646,'646 66v-66c-73 0 -161 40 -210 143c-42 -96 -105 -143 -199 -143c-128 0 -196 117 -196 214s71 214 199 214c94 0 156 -51 198 -147c49 103 135 147 208 147v-66c-82 0 -142 -82 -173 -150c31 -68 91 -146 173 -146zM398 212c-42 108 -77 150 -156 150 c-85 0 -135 -75 -135 -148s54 -148 127 -148c79 0 130 39 164 146'], + 0x2223: [451,19,266,100,166,'166 -19h-66v470h66v-470'], + 0x2224: [451,19,404,23,381,'381 269l-146 -75v-213h-66v179l-122 -62l-24 53l146 74v226h66v-192l122 62'], + 0x2225: [451,11,446,90,356,'356 -11h-66v462h66v-462zM156 -11h-66v462h66v-462'], + 0x2226: [451,19,609,23,586,'586 327l-149 -76v-270h-66v236l-133 -67v-169h-66v135l-125 -64l-24 53l149 76v270h66v-236l133 67v169h66v-135l125 63'], + 0x2229: [602,31,620,10,610,'610 -31h-142v66h38v296c0 114 -90 205 -196 205c-109 0 -196 -92 -196 -206v-295h38v-66h-142v66h38v299c0 159 113 268 262 268c148 0 262 -111 262 -271v-296h38v-66'], + 0x222A: [602,31,620,10,610,'610 536h-38v-296c0 -160 -114 -271 -262 -271c-149 0 -262 109 -262 268v299h-38v66h142v-66h-38v-295c0 -114 87 -206 196 -206c106 0 196 91 196 205v296h-38v66h142v-66'], + 0x222B: [824,320,366,59,408,'196 -124v730c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 17 9 19 9 28c0 8 -6 11 -13 11c-52 0 -57 -91 -57 -147v-30v-734c0 -89 -33 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34 c0 -17 -9 -19 -9 -28c0 -8 6 -11 13 -11c51 0 55 87 55 139v26'], + 0x222C: [824,320,596,59,638,'426 -124v730c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 17 9 19 9 28c0 8 -6 11 -13 11c-52 0 -57 -91 -57 -147v-30v-734c0 -89 -33 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34 c0 -17 -9 -19 -9 -28c0 -8 6 -11 13 -11c51 0 55 87 55 139v26zM196 -124v730c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 17 9 19 9 28c0 8 -6 11 -13 11c-52 0 -57 -91 -57 -147v-30v-734c0 -89 -33 -202 -141 -202 c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -17 -9 -19 -9 -28c0 -8 6 -11 13 -11c51 0 55 87 55 139v26'], + 0x222D: [824,320,826,59,868,'656 -124v730c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 17 9 19 9 28c0 8 -6 11 -13 11c-52 0 -57 -91 -57 -147v-30v-734c0 -89 -33 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34 c0 -17 -9 -19 -9 -28c0 -8 6 -11 13 -11c51 0 55 87 55 139v26zM426 -124v730c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 17 9 19 9 28c0 8 -6 11 -13 11c-52 0 -57 -91 -57 -147v-30v-734c0 -89 -33 -202 -141 -202 c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -17 -9 -19 -9 -28c0 -8 6 -11 13 -11c51 0 55 87 55 139v26zM196 -124v730c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 17 9 19 9 28c0 8 -6 11 -13 11 c-52 0 -57 -91 -57 -147v-30v-734c0 -89 -33 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -17 -9 -19 -9 -28c0 -8 6 -11 13 -11c51 0 55 87 55 139v26'], + 0x222E: [824,320,397,35,486,'300 616v-146c105 -19 186 -110 186 -222c0 -110 -81 -202 -186 -221v-145c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v151c-114 15 -192 107 -192 221 c0 113 84 206 192 222v136c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177zM300 432v-367c84 18 148 94 148 183c0 92 -64 166 -148 184zM227 65v367 c-87 -16 -154 -92 -154 -184s67 -167 154 -183'], + 0x222F: [824,320,548,35,637,'489 647v-213c78 -35 148 -103 148 -194s-70 -159 -148 -194v-164c0 -89 -34 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -14 -9 -21 -9 -28c0 -8 6 -11 13 -11c54 0 55 100 55 137v175c-26 -5 -53 -8 -80 -8c-26 0 -52 2 -77 7v-140 c0 -89 -34 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -14 -9 -21 -9 -28c0 -8 6 -11 13 -11c55 0 55 102 55 139v195c-80 34 -151 103 -151 195s71 161 151 195v171c0 91 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42 c-21 0 -36 12 -36 34c0 14 9 21 9 28c0 8 -6 11 -13 11c-56 0 -57 -107 -57 -146v-189c25 5 51 7 77 7c27 0 54 -3 80 -8v149c0 91 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 14 9 21 9 28c0 8 -6 11 -13 11c-56 0 -57 -107 -57 -146 zM489 392v-304c58 29 110 83 110 152s-52 123 -110 152zM416 62v356c-26 6 -53 9 -80 9c-26 0 -52 -3 -77 -8v-358c25 -5 51 -8 77 -8c27 0 54 3 80 9zM186 86v308c-60 -30 -113 -84 -113 -154s53 -124 113 -154'], + 0x2230: [824,320,876,54,972,'779 645v-218c82 -27 193 -87 193 -187s-111 -160 -193 -187v-171c0 -89 -33 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -16 -9 -20 -9 -28s6 -11 13 -11c55 0 55 102 55 140v182c-52 -10 -104 -16 -157 -17v-134 c0 -89 -33 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -16 -9 -20 -9 -28s6 -11 13 -11c55 0 55 102 55 140v165c-53 1 -105 7 -157 18v-152c0 -89 -33 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34 c0 -16 -9 -20 -9 -28s6 -11 13 -11c55 0 55 102 55 140v202c-82 27 -192 87 -192 187s110 160 192 187v179c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 16 9 20 9 28s-6 11 -13 11c-57 0 -57 -109 -57 -148v-199 c52 11 104 17 157 18v142c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 16 9 20 9 28s-6 11 -13 11c-57 0 -57 -109 -57 -148v-181c53 -1 105 -7 157 -17v159c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42 c-21 0 -36 12 -36 34c0 16 9 20 9 28s-6 11 -13 11c-57 0 -57 -109 -57 -148zM779 388v-296c64 22 155 69 155 148s-91 126 -155 148zM706 72v336c-52 11 -104 17 -157 18v-372c53 1 105 7 157 18zM476 54v372c-53 -1 -105 -7 -157 -18v-336c52 -11 104 -17 157 -18zM246 92 v296c-63 -22 -154 -70 -154 -148s91 -126 154 -148'], + 0x2231: [824,320,478,54,547,'535 296l12 -6c-23 -49 -42 -102 -42 -157l-5 -3c-40 38 -93 59 -145 76l3 12c15 -3 68 -21 74 -21c7 0 14 4 14 12c0 5 -4 11 -6 15c-22 44 -76 76 -127 87v-429c0 -89 -33 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34 c0 -17 -9 -19 -9 -28c0 -8 6 -11 13 -11c51 0 55 87 55 139v26v437c-85 -17 -148 -94 -148 -183h-38c0 111 80 203 186 221v255c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 17 9 19 9 28c0 8 -6 11 -13 11 c-52 0 -57 -91 -57 -147v-30v-265c30 -4 58 -14 84 -30c40 -25 60 -52 83 -91c3 -4 5 -8 11 -8c7 0 11 8 14 13c11 21 15 39 30 61'], + 0x2232: [824,320,441,35,530,'519 415l11 -6c-26 -50 -44 -105 -44 -161c0 -109 -80 -202 -186 -221v-145c0 -89 -33 -202 -141 -202c-39 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -19 -9 -19 -9 -28c0 -8 6 -11 13 -11c51 0 55 88 55 140v25v151c-114 15 -192 107 -192 221 c0 111 82 206 192 222v136c0 92 29 218 143 218c39 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 19 9 19 9 28c0 8 -6 11 -13 11c-52 0 -57 -92 -57 -147v-30v-146c69 -13 130 -57 162 -120c2 -4 7 -9 12 -9c6 0 12 8 14 13c10 21 18 41 31 61zM300 432 v-367c85 18 148 96 148 183c0 9 -1 18 -2 28v-1c-32 22 -69 37 -106 49l4 12c13 -2 65 -19 70 -19c7 0 15 3 15 11c0 2 -1 5 -2 7c-27 50 -71 85 -127 97zM227 65v367c-89 -16 -154 -94 -154 -184s66 -167 154 -183'], + 0x2233: [824,320,475,35,564,'564 338l-3 -13c-26 1 -54 16 -77 16c-5 0 -11 -2 -11 -8c0 -2 0 -3 1 -5c9 -25 12 -54 12 -80c0 -108 -80 -202 -186 -221v-145c0 -89 -33 -202 -141 -202c-38 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -18 -9 -19 -9 -28c0 -8 6 -11 13 -11 c55 0 55 102 55 139v177c-114 15 -192 107 -192 221c0 111 82 206 192 222v136c0 92 29 218 143 218c38 0 69 -21 69 -62c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 18 9 19 9 28c0 8 -6 11 -13 11c-57 0 -57 -109 -57 -148v-175c39 -7 81 -26 110 -53 c5 -5 9 -11 14 -16c32 -29 98 -51 140 -63zM300 432v-367c80 17 138 84 147 165c1 11 1 22 1 33c0 13 0 53 -18 53c-8 0 -13 -8 -16 -14c-10 -21 -19 -42 -31 -62l-12 6c16 39 32 78 37 120c-32 34 -62 56 -108 66zM227 65v367c-88 -16 -154 -94 -154 -184s66 -167 154 -183 '], + 0x223C: [362,-148,685,48,637,'604 362h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x223E: [344,-130,1086,55,1031,'977 344h54c-10 -85 -59 -204 -222 -204c-178 0 -367 128 -536 128c-115 0 -147 -67 -164 -138h-54c8 100 67 204 229 204c173 0 378 -128 538 -128c114 0 140 67 155 138'], + 0x223F: [461,-43,520,0,586,'0 252h66c0 -81 31 -143 97 -143s97 62 97 143c0 123 63 209 163 209s163 -86 163 -209h-66c0 81 -31 143 -97 143s-97 -62 -97 -143c0 -123 -63 -209 -163 -209s-163 86 -163 209'], + 0x2241: [462,-48,685,48,637,'604 362h33c-6 -85 -60 -204 -158 -204c-37 0 -75 18 -112 41v-151h-50v184c-42 28 -81 54 -113 54c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c34 0 70 -17 106 -38v148h50v-181c44 -30 86 -57 120 -57c69 0 102 67 117 138'], + 0x2244: [529,35,685,48,637,'637 55h-267v-90h-55v90h-267v66h267v204c-42 29 -79 54 -111 54c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c35 0 67 -17 104 -39v123h55v-155c44 -30 83 -57 117 -57c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-36 0 -72 18 -109 41v-171h267v-66'], + 0x2247: [606,117,685,48,637,'637 -27h-270v-90h-50v90h-269v66h269v134h-269v66h269v161c-46 34 -90 66 -123 66c-70 0 -110 -77 -126 -148h-20c5 100 65 214 163 214c34 0 70 -18 106 -42v116h50v-152c48 -36 94 -70 130 -70c69 0 103 77 120 148h20c-6 -85 -60 -214 -158 -214 c-36 0 -74 20 -112 46v-125h270v-66h-270v-134h270v-66'], + 0x2248: [475,-25,685,48,637,'604 475h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138zM604 239h33c-6 -85 -60 -204 -158 -204c-96 0 -203 128 -275 128c-70 0 -107 -67 -123 -138h-33 c5 100 65 204 163 204c96 0 203 -128 276 -128c69 0 102 67 117 138'], + 0x2249: [549,49,685,48,637,'604 239h33c-6 -85 -60 -204 -158 -204c-36 0 -74 18 -111 41v-125h-50v158c-42 28 -82 54 -114 54c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204c35 0 71 -17 107 -39v155c-42 28 -82 54 -114 54c-70 0 -107 -67 -123 -138h-33c5 100 65 204 163 204 c35 0 71 -17 107 -39v123h50v-155c44 -30 85 -57 119 -57c69 0 102 67 117 138h33c-6 -85 -60 -204 -158 -204c-36 0 -74 18 -111 41v-154c44 -30 85 -57 119 -57c69 0 102 67 117 138'], + 0x224C: [586,82,685,48,637,'183 586v-66c-61 0 -103 -28 -103 -88c0 -69 44 -103 108 -103c41 0 66 17 86 38c47 50 93 132 128 171c29 33 57 48 98 48c67 0 137 -62 137 -163c0 -73 -47 -160 -141 -160v66c60 0 109 26 109 88c0 69 -44 103 -108 103c-36 0 -59 -11 -81 -32 c-45 -41 -101 -150 -155 -194c-23 -19 -49 -31 -81 -31c-64 0 -132 54 -132 158c0 138 91 165 135 165zM637 118h-589v66h589v-66zM637 -82h-589v66h589v-66'], + 0x2260: [662,156,685,48,637,'637 120h-270v-276h-50v276h-269v66h269v134h-269v66h269v276h50v-276h270v-66h-270v-134h270v-66'], + 0x2262: [662,156,685,48,637,'637 28h-270v-184h-50v184h-269v66h269v126h-269v66h269v126h-269v66h269v184h50v-184h270v-66h-270v-126h270v-66h-270v-126h270v-66'], + 0x2268: [718,275,685,56,621,'621 160l-565 273v10l565 275v-65l-432 -215l432 -215v-63zM621 -212h-261v-63h-55v63h-249v66h249v134h-249v66h249v89h55v-89h261v-66h-261v-134h261v-66'], + 0x2269: [718,275,685,56,621,'621 435l-565 -275v65l432 215l-432 215v63l565 -273v-10zM621 -212h-261v-63h-55v63h-249v66h249v134h-249v66h249v89h55v-89h261v-66h-261v-134h261v-66'], + 0x226D: [572,66,685,48,637,'637 43v-35c-63 86 -164 120 -266 125v-199h-50v200c-105 -5 -214 -42 -273 -126v35c43 95 170 150 273 156v108c-107 6 -229 59 -273 156v35c65 -88 169 -122 273 -126v200h50v-199c103 6 208 43 266 125v-35c-42 -93 -164 -147 -266 -156v-108c105 -9 223 -62 266 -156 '], + 0x226E: [662,156,685,47,612,'612 -26l-226 109v-239h-50v264l-289 140v10l289 140v264h50v-240l226 110v-65l-226 -112v-204l226 -112v-65zM336 175v155l-156 -77'], + 0x226F: [662,156,685,73,638,'638 248l-289 -140v-264h-50v239l-226 -109v65l226 112v204l-226 112v65l226 -110v240h50v-264l289 -140v-10zM505 253l-156 77v-154'], + 0x2270: [695,189,685,56,621,'621 -103h-240v-86h-50v86h-269v66h269v228l-275 133v10l275 133v228h50v-204l240 116v-65l-240 -119v-189l240 -118v-65l-240 116v-204h240v-66zM331 259v140l-142 -70'], + 0x2271: [695,189,685,64,629,'629 324l-275 -133v-228h268v-66h-268v-86h-50v86h-240v66h240v204l-240 -116v65l240 118v189l-240 119v65l240 -116v204h50v-228l275 -133v-10zM496 329l-142 70v-140'], + 0x2272: [673,103,685,10,632,'625 115l-565 275v10l565 273v-65l-432 -213l432 -215v-65zM614 35l18 -8c-36 -60 -114 -130 -188 -130c-164 0 -151 283 -278 283c-51 0 -101 -40 -137 -84l-19 9c40 69 115 130 187 130c165 0 161 -286 283 -286c49 0 97 43 134 86'], + 0x2273: [673,144,685,58,624,'624 386l-566 -271v65l433 212l-431 216v65l564 -277v-10zM578 310l18 10c15 -35 25 -80 25 -124c0 -111 -67 -158 -144 -158c-64 0 -137 24 -194 24c-66 0 -103 -43 -103 -116c0 -26 5 -53 13 -79l-19 -11c-17 38 -27 81 -27 123c0 113 72 160 151 160 c65 0 137 -22 194 -22c64 0 100 37 100 106c0 28 -6 59 -14 87'], + 0x2274: [730,227,685,48,637,'604 50h33c-5 -100 -65 -204 -163 -204c-33 0 -66 15 -99 34v-107h-50v139c-47 31 -91 62 -127 62c-69 0 -102 -67 -117 -138h-33c6 85 60 204 158 204c39 0 79 -21 119 -46v252l-275 134v10l275 133v207h50v-183l240 117v-65l-240 -119v-190l240 -119v-65l-240 116v-261 c39 -26 76 -49 106 -49c70 0 107 67 123 138zM325 314v141l-142 -70'], + 0x2275: [730,227,685,48,650,'650 380l-275 -134v-285c39 -26 76 -49 106 -49c70 0 107 67 123 138h33c-5 -100 -65 -204 -163 -204c-33 0 -66 15 -99 34v-107h-50v139c-47 31 -91 62 -127 62c-69 0 -102 -67 -117 -138h-33c6 85 60 204 158 204c39 0 79 -21 119 -46v228l-240 -116v65l240 119v190 l-240 119v65l240 -117v183h50v-207l275 -133v-10zM517 385l-142 70v-141'], + 0x2278: [818,311,685,56,621,'621 39l-253 -109v-241h-55v218l-257 -111v63l257 110v149l-257 110v65l257 -111v159l-257 111v10l257 110v246h55v-222l253 109v-65l-253 -107v-153l253 -109v-63l-253 109v-159l253 -109v-10zM313 403v106l-124 -52zM488 44l-120 51v-102'], + 0x2279: [818,311,685,55,620,'620 -204l-252 109v-216h-55v239l-258 111v10l258 111v159l-258 -111v63l258 111v148l-258 110v65l258 -111v224h55v-248l252 -108v-10l-252 -109v-159l252 109v-65l-252 -108v-153l252 -108v-63zM487 457l-119 50v-102zM313 -9v106l-125 -53'], + 0x2280: [662,156,685,64,621,'621 51v-77c-60 80 -149 138 -247 177v-307h-50v325c-85 28 -175 44 -260 51v66c85 6 175 22 260 50v326h50v-308c98 40 187 97 247 178v-77c-39 -67 -145 -131 -247 -172v-60c102 -42 208 -106 247 -172zM324 241v23c-13 -4 -25 -8 -37 -11c12 -4 24 -8 37 -12'], + 0x2281: [662,156,685,64,621,'621 286v-66c-80 -7 -165 -21 -246 -46v-330h-50v312c-105 -39 -199 -98 -261 -182v77c40 69 154 136 261 177v49c-107 42 -221 108 -261 178v77c62 -84 156 -143 261 -183v313h50v-330c81 -26 166 -40 246 -46zM375 260v-14c7 2 15 5 23 7c-8 2 -16 4 -23 7'], + 0x2284: [662,156,685,55,620,'620 -26h-216v-130h-50v130h-28c-159 0 -271 131 -271 279s114 279 274 279h25v130h50v-130h216v-66h-216v-426h216v-66zM354 40v426h-25c-114 0 -208 -106 -208 -213s95 -213 209 -213h24'], + 0x2285: [662,156,685,65,630,'331 532h28c159 0 271 -131 271 -279s-114 -279 -274 -279h-25v-130h-50v130h-216v66h216v426h-216v66h216v130h50v-130zM331 40h25c114 0 208 106 208 213s-95 213 -209 213h-24v-426'], + 0x2288: [707,203,695,65,630,'630 -103h-246v-100h-50v100h-260v66h260v88c-155 1 -269 127 -269 279c0 153 114 276 269 277v100h50v-100h246v-66h-246v-424h246v-66h-246v-88h246v-66zM334 117v424c-111 -1 -203 -102 -203 -211s92 -212 203 -213'], + 0x2289: [707,203,695,65,630,'361 707v-100c155 -1 269 -124 269 -277c0 -152 -114 -278 -269 -279v-88h260v-66h-260v-100h-50v100h-246v66h246v88h-246v66h246v424h-246v66h246v100h50zM361 541v-424c111 1 203 104 203 213s-92 210 -203 211'], + 0x228A: [607,229,685,51,616,'616 -103h-294l-47 -126h-54l47 126h-208v66h232l33 86h-3c-159 0 -271 131 -271 279s114 279 274 279h291v-66h-291c-114 0 -208 -106 -208 -213s95 -213 209 -213h25l49 126h54l-49 -126h211v-66h-237l-33 -86h270v-66'], + 0x228B: [607,229,685,69,634,'69 607h291c160 0 274 -131 274 -279s-112 -279 -271 -279h-25l-33 -86h320v-66h-344l-47 -126h-54l47 126h-158v66h182l33 86h-215v66h241l49 126h54l-49 -126c112 3 204 107 204 213c0 107 -94 213 -208 213h-291v66'], + 0x2293: [536,31,620,10,610,'610 -31h-142v66h38v435h-392v-435h38v-66h-142v66h38v501h524v-501h38v-66'], + 0x2294: [536,31,620,10,610,'610 470h-38v-501h-524v501h-38v66h142v-66h-38v-435h392v435h-38v66h142v-66'], + 0x2295: [623,119,842,50,792,'674 219h-220v-219h-66v219h-220v66h220v220h66v-220h220v-66zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305s137 -305 305 -305s305 137 305 305'], + 0x2297: [623,119,842,50,792,'624 96l-47 -47l-156 156l-156 -156l-47 47l156 156l-156 156l47 47l156 -156l156 156l47 -47l-156 -156zM792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM726 252c0 168 -137 305 -305 305s-305 -137 -305 -305 s137 -305 305 -305s305 137 305 305'], + 0x229C: [623,119,842,50,792,'792 252c0 -205 -166 -371 -371 -371s-371 166 -371 371s166 371 371 371s371 -166 371 -371zM137 363h568c-44 114 -155 194 -284 194s-240 -80 -284 -194zM119 209h604c2 14 3 28 3 43s-1 30 -3 45h-604c-2 -15 -3 -30 -3 -45s1 -29 3 -43zM706 143h-570 c44 -115 155 -196 285 -196s241 81 285 196'], + 0x22DA: [768,262,685,60,625,'625 305l-565 226v10l565 227v-65l-407 -167l407 -166v-65zM625 108l-565 225v65l565 -225v-65zM625 -36l-565 -226v65l407 166l-407 167v65l565 -227v-10'], + 0x22DB: [768,262,685,60,625,'625 531l-565 -226v65l407 166l-407 167v65l565 -227v-10zM625 333l-565 -225v65l565 225v-65zM625 -262l-565 226v10l565 227v-65l-407 -167l407 -166v-65'], + 0x22E0: [803,212,685,60,625,'625 -5v-77c-63 84 -158 142 -264 182v-312h-50v329c-83 26 -170 40 -251 47v66c75 -4 164 -18 251 -44v128c-83 26 -170 40 -251 47v66c81 6 168 21 251 46v330h50v-312c106 39 201 98 264 182v-77c-40 -69 -156 -135 -264 -176v-52c108 -42 224 -107 264 -176v-77 c-63 84 -158 142 -264 182v-128c109 -39 209 -97 264 -174zM311 385v17c-10 -3 -19 -6 -28 -8c9 -3 18 -6 28 -9'], + 0x22E1: [803,212,685,60,625,'625 254v-66c-84 -7 -175 -23 -261 -50v-350h-50v332c-102 -39 -194 -97 -254 -178v77c53 75 148 131 254 170v104c-102 -39 -194 -97 -254 -178v77c39 66 149 130 254 172v60c-105 41 -215 105 -254 172v77c60 -81 152 -139 254 -179v309h50v-326 c86 -28 177 -44 261 -50v-66c-84 -7 -175 -23 -261 -50v-104c89 28 183 43 261 47zM364 405v-23c13 5 26 8 38 12c-12 3 -25 7 -38 11'], + 0x22EC: [695,189,685,54,611,'611 -103h-230v-86h-50v86h-267v66h267v227l-277 139l277 138v228h50v-203l230 115v-556l-230 114v-202h230v-66zM545 156v346l-164 -82v-183zM331 262v133l-132 -65v-2'], + 0x22ED: [695,189,685,74,631,'631 329l-277 -138v-228h267v-66h-267v-86h-50v86h-230v66h230v203l-230 -115v556l230 -115v203h50v-228zM486 328v2l-132 65v-133zM304 237v183l-164 82v-346'], + 0x2322: [386,-120,685,48,637,'637 120h-46c0 115 -120 200 -250 200c-129 0 -247 -85 -247 -200h-46c0 166 143 266 295 266s294 -100 294 -266'], + 0x2323: [386,-120,685,48,637,'591 386h46c0 -166 -143 -266 -295 -266s-294 100 -294 266h46c0 -115 117 -200 247 -200c129 0 250 85 250 200'], + 0x2423: [22,119,500,48,453,'415 22h38c0 -77 -92 -141 -203 -141s-202 64 -202 141h35c17 -50 86 -78 166 -78s150 28 166 78'], + 0x25A9: [662,158,910,45,865,'778 546l-29 -28l-29 28l29 28zM778 428l-29 -28l-29 28l29 29zM661 546l-30 -28l-29 28l29 28zM720 487l-30 -29l-29 29l29 29zM661 428l-30 -28l-29 28l29 29zM720 370l-30 -29l-29 29l29 28zM778 311l-29 -29l-29 29l29 28zM543 546l-29 -28l-30 28l30 28zM602 487 l-29 -29l-30 29l30 29zM778 193l-29 -28l-29 28l29 29zM426 546l-30 -28l-29 28l29 28zM720 252l-30 -28l-29 28l29 28zM602 370l-29 -29l-30 29l30 28zM661 311l-30 -29l-29 29l29 28zM484 487l-29 -29l-29 29l29 29zM543 428l-29 -28l-30 28l30 29zM720 134l-30 -28 l-29 28l29 29zM426 428l-30 -28l-29 28l29 29zM661 193l-30 -28l-29 28l29 29zM308 546l-29 -28l-30 28l30 28zM602 252l-29 -28l-30 28l30 28zM778 76l-29 -29l-29 29l29 28zM367 487l-30 -29l-29 29l29 29zM484 370l-29 -29l-29 29l29 28zM543 311l-29 -29l-30 29l30 28z M190 546l-29 -28l-29 28l29 28zM308 428l-29 -28l-30 28l30 29zM484 252l-29 -28l-29 28l29 28zM543 193l-29 -28l-30 28l30 29zM602 134l-29 -28l-30 28l30 29zM661 76l-30 -29l-29 29l29 28zM720 17l-30 -29l-29 29l29 28zM778 -42l-29 -28l-29 28l29 28zM367 370l-30 -29 l-29 29l29 28zM426 311l-30 -29l-29 29l29 28zM249 487l-29 -29l-30 29l30 29zM426 193l-30 -28l-29 28l29 29zM661 -42l-30 -28l-29 28l29 28zM367 252l-30 -28l-29 28l29 28zM484 134l-29 -28l-29 28l29 29zM190 428l-29 -29l-29 29l29 29zM543 76l-29 -29l-30 29l30 28z M602 17l-29 -29l-30 29l30 28zM249 370l-29 -29l-30 29l30 28zM308 311l-29 -29l-30 29l30 28zM426 76l-30 -29l-29 29l29 28zM308 193l-29 -28l-30 28l30 29zM367 134l-30 -28l-29 28l29 29zM484 17l-29 -29l-29 29l29 28zM543 -42l-29 -28l-30 28l30 28zM190 311l-29 -29 l-29 29l29 28zM249 252l-29 -28l-30 28l30 28zM190 193l-29 -28l-29 28l29 29zM426 -42l-30 -28l-29 28l29 28zM367 17l-30 -29l-29 29l29 28zM249 134l-29 -28l-30 28l30 29zM308 76l-29 -29l-30 29l30 28zM190 76l-29 -29l-29 29l29 28zM308 -42l-29 -28l-30 28l30 28z M249 17l-29 -29l-30 29l30 28zM190 -42l-29 -28l-29 28l29 28zM865 -158h-820v820h820v-820zM799 -92v688h-688v-688h688'], + 0x2A0B: [812,332,706,43,661,'661 123l-41 -194h-237v-59c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v65h-267l267 269v84l-248 269h248v43c0 80 23 218 143 218c49 0 69 -31 69 -62 c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-53h221v-163h-20c0 9 -4 21 -6 30c-17 61 -58 77 -95 81c-17 2 -30 2 -50 2h-50v-171l60 -64l-60 -60v-187h120c79 0 114 27 135 104h23zM310 407v94h-89zM310 19v115 l-115 -115h115'], + 0x2A0C: [812,332,1093,59,1135,'923 -136v730c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-734c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34 c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165zM680 -136v730c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-734c0 -81 -29 -202 -141 -202 c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165zM437 -136v730c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11 c-50 0 -57 -72 -57 -177v-734c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165zM196 -136v730c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42 c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-734c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165'], + 0x2A0D: [812,332,467,59,509,'509 207h-189v-337c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v343h-188v66h188v321c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42 c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-331h189v-66'], + 0x2A0E: [812,332,467,59,509,'509 107h-189v-237c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v243h-188v66h188v134h-188v66h188v221c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42 c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-231h189v-66h-189v-134h189v-66'], + 0x2A0F: [812,332,529,59,571,'571 448l-219 -219v-359c0 -89 -33 -202 -141 -202c-39 0 -69 21 -69 62c0 24 18 42 42 42c21 0 36 -12 36 -34c0 -19 -9 -19 -9 -28c0 -8 6 -11 13 -11c51 0 55 88 55 140v25v292l-171 -171l-49 48l220 220v341c0 92 29 218 143 218c39 0 69 -21 69 -62 c0 -24 -18 -42 -42 -42c-21 0 -36 12 -36 34c0 19 9 19 9 28c0 8 -6 11 -13 11c-52 0 -57 -92 -57 -147v-30v-278l170 170'], + 0x2A10: [812,332,346,35,435,'223 462v132c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-142c50 -8 94 -32 128 -68l-24 -30c-27 30 -63 52 -104 60v-367c24 5 46 14 67 27l19 -33 c-26 -17 -55 -28 -86 -33v-148c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v154c-107 18 -188 111 -188 222c0 112 81 205 188 222zM223 57v366 c-86 -17 -150 -92 -150 -183c0 -90 64 -166 150 -183'], + 0x2A11: [812,332,478,54,547,'547 193l-12 -6c-12 18 -22 40 -30 61c-4 7 -8 13 -14 13c-4 0 -8 -2 -11 -8c-32 -63 -93 -110 -165 -122v-261c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v267 c-107 18 -188 111 -188 222h38c0 -90 64 -166 150 -183v424c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-434c53 10 101 41 125 89l5 10c1 2 1 5 1 5c0 8 -7 12 -14 12 c-3 0 -6 -1 -9 -2c-22 -8 -44 -15 -65 -19l-3 12c51 17 105 38 145 76l5 -3c0 -55 20 -109 42 -157'], + 0x2A12: [812,332,365,35,434,'434 15h-189v-145c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v189h224v374h-224v167c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42 c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-139h189v-450zM287 241c0 -40 -31 -78 -78 -78c-46 0 -78 30 -78 78c0 47 40 78 78 78c40 0 78 -32 78 -78'], + 0x2A13: [812,332,384,54,453,'264 604v-142c107 -17 189 -110 189 -222s-82 -204 -189 -222v-148c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v193c12 -2 24 -4 37 -4c103 0 187 84 187 187 s-84 187 -187 187c-13 0 -25 -1 -37 -4v171c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177zM306 241c0 -40 -31 -78 -78 -78c-46 0 -78 30 -78 78c0 47 40 78 78 78 c40 0 78 -32 78 -78'], + 0x2A14: [812,332,509,54,578,'431 241c0 -40 -31 -78 -78 -78c-46 0 -78 30 -78 78c0 47 40 78 78 78c40 0 78 -32 78 -78zM264 604v-157c27 12 57 18 89 18c124 0 225 -101 225 -225s-101 -225 -225 -225c-32 0 -62 7 -89 18v-163c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42 c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v280c33 -55 94 -91 162 -91c103 0 187 84 187 187s-84 187 -187 187c-69 0 -130 -38 -162 -94v261c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34 c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177'], + 0x2A15: [812,332,396,35,485,'338 241c0 -40 -31 -78 -78 -78c-46 0 -78 30 -78 78c0 47 40 78 78 78c40 0 78 -32 78 -78zM296 604v-142c107 -17 189 -110 189 -222s-82 -204 -189 -222v-148c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28 c0 -7 5 -11 13 -11c47 0 55 64 55 165v154c-107 18 -188 111 -188 222c0 112 81 205 188 222v132c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177zM447 240 c0 103 -84 187 -187 187s-187 -84 -187 -187s84 -187 187 -187s187 84 187 187'], + 0x2A16: [812,332,412,31,481,'481 15h-189v-145c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v151h-188v450h188v129c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42 c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-139h189v-450zM443 53v374h-151v-374h151zM219 53v374h-150v-374h150'], + 0x2A17: [812,332,771,45,831,'480 292h221c57 0 130 -40 130 -124c0 -78 -61 -124 -117 -124h-73v66h70c25 0 54 17 54 60c0 45 -32 56 -67 56h-218v-356c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165 v362h-177c-14 0 -24 -13 -24 -22s4 -15 14 -25c29 -28 60 -63 82 -96l-20 -19c-65 75 -141 149 -237 189v10c96 41 172 116 238 192l20 -19c-23 -33 -52 -65 -82 -96c-9 -9 -14 -20 -14 -28c0 -9 4 -20 22 -20h178v302c0 80 23 218 143 218c49 0 69 -31 69 -62 c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-312'], + 0x2A18: [812,332,455,45,515,'515 51l-46 -46l-153 153v-288c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v293l-152 -152l-46 46l189 189l-189 189l46 46l152 -152v271c0 80 23 218 143 218 c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-282l153 153l46 -46l-189 -189'], + 0x2A19: [812,332,504,45,569,'569 -23h-66v255c0 101 -68 185 -159 203v-565c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v571c-90 -18 -160 -101 -160 -202v-256h-66v256c0 147 96 252 226 269v92 c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-102c130 -17 225 -120 225 -266v-259'], + 0x2A1A: [812,332,504,45,569,'569 504v-256c0 -146 -96 -251 -225 -268v-110c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165v116c-131 16 -226 119 -226 265v259h66v-255c0 -101 68 -185 160 -202v547 c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-557c89 18 159 101 159 201v256h66'], + 0x2A1B: [935,332,453,45,495,'495 869h-450v66h450v-66zM273 -136v730c0 80 23 218 143 218c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-50 0 -57 -72 -57 -177v-734c0 -81 -29 -202 -141 -202c-49 0 -69 31 -69 62c0 27 21 42 42 42 c18 0 36 -9 36 -34c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c47 0 55 64 55 165'], + 0x2A1C: [812,455,376,59,509,'208 -124v734c0 81 29 202 141 202c49 0 69 -31 69 -62c0 -27 -21 -42 -42 -42c-18 0 -36 9 -36 34c0 20 9 18 9 28c0 7 -5 11 -13 11c-47 0 -55 -64 -55 -165v-730c0 -80 -23 -218 -143 -218c-49 0 -69 31 -69 62c0 27 21 42 42 42c18 0 36 -9 36 -34 c0 -20 -9 -18 -9 -28c0 -7 5 -11 13 -11c50 0 57 72 57 177zM509 -455h-450v66h450v-66'], + 0x2A3C: [633,129,463,51,411,'411 -129h-360v66h294v696h66v-762'], + 0x2A3D: [633,129,463,51,411,'411 -129h-360v762h66v-696h294v-66'], + 0x2A9D: [647,166,685,49,627,'480 637l18 10c15 -35 25 -80 25 -124c0 -111 -67 -158 -144 -158c-64 0 -137 24 -194 24c-66 0 -103 -43 -103 -116c0 -26 5 -53 13 -79l-19 -11c-17 38 -27 81 -27 123c0 113 72 160 151 160c65 0 137 -22 194 -22c64 0 100 37 100 106c0 28 -6 59 -14 87zM627 -166 l-565 275v10l565 273v-65l-432 -213l432 -215v-65'], + 0x2A9E: [615,166,685,54,676,'658 415l18 -8c-36 -60 -114 -130 -188 -130c-164 0 -151 283 -278 283c-51 0 -101 -40 -137 -84l-19 9c40 69 115 130 187 130c165 0 161 -286 283 -286c49 0 97 43 134 86zM626 107l-565 -273v65l432 213l-432 215v65l565 -275v-10'], + 0x2AAC: [625,137,685,60,625,'625 67l-565 275v10l565 273v-65l-365 -180h365v-66h-366l366 -182v-65zM625 -137l-565 275v66l565 -275v-66'], + 0x2AAD: [625,137,685,60,625,'625 340l-565 -273v65l365 180h-365v66h366l-366 182v65l565 -275v-10zM625 138l-565 -275v66l565 275v-66'], + 0x2ACB: [718,321,685,64,629,'629 -211h-311l-40 -110h-54l40 110h-190v66h214l48 133h-262v66h286l39 106h-64c-159 0 -271 131 -271 279s114 279 274 279h291v-66h-291c-114 0 -208 -106 -208 -213s95 -213 209 -213h84l41 111h54l-41 -111h152v-66h-176l-39 -106h215v-66h-239l-48 -133h287v-66'], + 0x2ACC: [718,321,685,74,639,'74 718h294c159 0 271 -131 271 -279s-114 -279 -274 -279h-40l-37 -106h341v-66h-364l-47 -133h411v-66h-434l-38 -110h-53l38 110h-68v66h91l47 133h-138v66h161l37 106h-198v66h221l39 111h53l-39 -111h17c114 0 208 106 208 213s-95 213 -209 213h-290v66'], + 0x2AEE: [451,19,404,23,381,'381 151l-24 -53l-122 62v-179h-66v213l-146 75l24 52l122 -62v192h66v-226'], + 0xE261: [422,10,523,41,481,'481 206c0 -116 -69 -216 -223 -216c-157 0 -217 100 -217 215c0 90 62 217 226 217c145 0 214 -125 214 -216zM386 206c0 57 -25 196 -121 196c-95 0 -129 -138 -129 -196c0 -90 24 -195 123 -195c104 0 127 105 127 195'], + 0xE265: [421,0,523,127,405,'405 0h-257v11c43 3 78 18 78 39v305c0 20 -25 26 -48 26c-7 0 -14 0 -20 -1l-26 -5l-5 14l199 32v-338c0 -49 0 -71 79 -71v-12'], + 0xE269: [421,0,523,68,455,'455 0h-387v30c169 111 272 180 272 245c0 57 -32 105 -103 105c-74 0 -125 -33 -144 -75l-20 3c31 78 111 113 179 113c112 0 185 -34 185 -125c0 -108 -138 -158 -253 -235h152c75 0 101 7 108 44h11v-105'], + 0xE26D: [424,198,523,47,463,'117 320l-17 7c34 65 104 97 158 97c115 0 167 -63 167 -130c0 -63 -38 -113 -107 -132c82 -21 145 -90 145 -166c0 -124 -137 -194 -280 -194c-65 0 -100 15 -117 30c-12 11 -19 25 -19 36c0 16 15 29 43 29c59 0 82 -59 145 -59c71 0 129 50 129 127 c0 120 -115 159 -193 159v18c122 0 174 73 174 144c0 57 -27 99 -96 99c-42 0 -97 -11 -132 -65'], + 0xE271: [420,198,523,58,480,'480 -33h-77v-165h-96v165h-249v70l279 383h66v-392h77v-61zM307 28v283l-206 -283h206'], + 0xE275: [421,198,523,66,457,'174 348l-21 -86c10 -1 19 -3 30 -4c150 -9 274 -110 274 -264c0 -108 -86 -192 -241 -192c-69 0 -105 16 -128 33c-18 13 -22 31 -22 41c0 16 16 28 44 28c60 0 98 -62 164 -62c59 0 119 56 119 131c0 126 -125 187 -220 207c-29 6 -56 9 -79 9l59 232h281l-20 -73h-240 '], + 0xE279: [612,8,523,37,486,'437 612l1 -15c-144 -31 -230 -106 -283 -240c44 18 75 27 110 27c115 0 221 -78 221 -186c0 -79 -44 -206 -206 -206c-173 0 -243 134 -243 254c0 190 173 348 400 366zM391 162c0 97 -68 186 -161 186c-32 0 -64 -16 -84 -32c-9 -22 -15 -53 -15 -86 c0 -95 45 -211 152 -211c82 0 108 75 108 143'], + 0xE27D: [421,198,523,25,490,'490 421l-221 -619h-69l199 545h-222c-73 0 -118 -9 -136 -71h-16l45 145h420'], + 0xE281: [606,12,523,47,477,'477 134c0 -68 -55 -146 -193 -146c-158 0 -237 70 -237 151c0 79 59 130 163 167c-67 44 -133 106 -133 178c0 67 68 122 185 122c104 0 204 -29 204 -134c0 -71 -77 -121 -159 -151c121 -76 170 -115 170 -187zM391 464c0 79 -61 116 -146 116c-63 0 -92 -38 -92 -78 c0 -58 42 -94 127 -160c67 27 111 66 111 122zM239 286h-2c-48 -25 -111 -65 -111 -129c0 -59 53 -142 161 -142c77 0 106 47 106 92c0 62 -41 87 -154 179'], + 0xE285: [421,200,523,41,483,'75 -200l-4 15c147 25 234 107 287 229c-26 -10 -55 -16 -90 -16c-107 0 -227 64 -227 214c0 88 62 179 206 179c163 0 236 -129 236 -241c0 -194 -159 -353 -408 -380zM388 196c0 71 -25 197 -146 197c-75 0 -109 -57 -109 -122c0 -110 48 -207 161 -207 c30 0 54 9 77 18c14 49 17 80 17 114'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Variants/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/fontdata-extra.js new file mode 100644 index 0000000..15ffa60 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/fontdata-extra.js @@ -0,0 +1,933 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/fontdata-extra.js + * + * Adds extra stretchy characters to the STIX-Web fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG) { + var VERSION = "2.3"; + + var DELIMITERS = SVG.FONTDATA.DELIMITERS; + + var H = "H", V = "V"; + + var ALPHABETSBOLDITALIC = "STIXMathJax_Alphabets-bold-italic", + ALPHABETSBOLD = "STIXMathJax_Alphabets-bold", + ALPHABETSITALIC = "STIXMathJax_Alphabets-italic", + ALPHABETS = "STIXMathJax_Alphabets", + ARROWSBOLD = "STIXMathJax_Arrows-bold", + ARROWS = "STIXMathJax_Arrows", + DOUBLESTRUCKBOLDITALIC = "STIXMathJax_DoubleStruck-bold-italic", + DOUBLESTRUCKBOLD = "STIXMathJax_DoubleStruck-bold", + DOUBLESTRUCKITALIC = "STIXMathJax_DoubleStruck-italic", + DOUBLESTRUCK = "STIXMathJax_DoubleStruck", + FRAKTURBOLD = "STIXMathJax_Fraktur-bold", + FRAKTUR = "STIXMathJax_Fraktur", + LATINBOLDITALIC = "STIXMathJax_Latin-bold-italic", + LATINBOLD = "STIXMathJax_Latin-bold", + LATINITALIC = "STIXMathJax_Latin-italic", + LATIN = "STIXMathJax_Latin", + MAINBOLDITALIC = "STIXMathJax_Main-bold-italic", + MAINBOLD = "STIXMathJax_Main-bold", + MAINITALIC = "STIXMathJax_Main-italic", + MAIN = "STIXMathJax_Main", + MARKSBOLDITALIC = "STIXMathJax_Marks-bold-italic", + MARKSBOLD = "STIXMathJax_Marks-bold", + MARKSITALIC = "STIXMathJax_Marks-italic", + MARKS = "STIXMathJax_Marks", + MISCBOLDITALIC = "STIXMathJax_Misc-bold-italic", + MISCBOLD = "STIXMathJax_Misc-bold", + MISCITALIC = "STIXMathJax_Misc-italic", + MISC = "STIXMathJax_Misc", + MONOSPACE = "STIXMathJax_Monospace", + NORMALBOLDITALIC = "STIXMathJax_Normal-bold-italic", + NORMALBOLD = "STIXMathJax_Normal-bold", + NORMALITALIC = "STIXMathJax_Normal-italic", + OPERATORSBOLD = "STIXMathJax_Operators-bold", + OPERATORS = "STIXMathJax_Operators", + SANSSERIFBOLDITALIC = "STIXMathJax_SansSerif-bold-italic", + SANSSERIFBOLD = "STIXMathJax_SansSerif-bold", + SANSSERIFITALIC = "STIXMathJax_SansSerif-italic", + SANSSERIF = "STIXMathJax_SansSerif", + SCRIPTBOLDITALIC = "STIXMathJax_Script-bold-italic", + SCRIPTITALIC = "STIXMathJax_Script-italic", + SCRIPT = "STIXMathJax_Script", + SHAPESBOLDITALIC = "STIXMathJax_Shapes-bold-italic", + SHAPESBOLD = "STIXMathJax_Shapes-bold", + SHAPES = "STIXMathJax_Shapes", + SIZE1 = "STIXMathJax_Size1", + SIZE2 = "STIXMathJax_Size2", + SIZE3 = "STIXMathJax_Size3", + SIZE4 = "STIXMathJax_Size4", + SIZE5 = "STIXMathJax_Size5", + SYMBOLSBOLD = "STIXMathJax_Symbols-bold", + SYMBOLS = "STIXMathJax_Symbols", + VARIANTSBOLDITALIC = "STIXMathJax_Variants-bold-italic", + VARIANTSBOLD = "STIXMathJax_Variants-bold", + VARIANTSITALIC = "STIXMathJax_Variants-italic", + VARIANTS = "STIXMathJax_Variants"; + + var delim = { + 0x3D: + { + dir: H, + HW: [[589,MAIN]], + stretch: {rep:[0x3D,MAIN]} + }, + 0x2C7: + { + dir: H, + HW: [[311,MAIN], [560,SIZE1], [979,SIZE2], [1460,SIZE3], [1886,SIZE4], [2328,SIZE5]] + }, + 0x2CD: + { + dir: H, + HW: [[312,MARKS]], + stretch: {rep:[0x2CD,MARKS]} + }, + 0x2F7: + { + dir: H, + HW: [[330,MARKS], [560,SIZE1], [979,SIZE2], [1460,SIZE3], [1886,SIZE4], [2328,SIZE5]] + }, + 0x20D0: + { + dir: H, + HW: [[436,MARKS], [871,SIZE1], [1308,SIZE2], [1744,SIZE3], [2180,SIZE4], [3000,SIZE5]], + stretch: {left:[0xE015,SIZE5], rep:[0xE016,SIZE5]} + }, + 0x20D1: + { + dir: H, + HW: [[436,MARKS], [871,SIZE1], [1308,SIZE2], [1744,SIZE3], [2180,SIZE4], [3000,SIZE5]], + stretch: {rep:[0xE016,SIZE5], right:[0xE017,SIZE5]} + }, + 0x20D6: + { + dir: H, + HW: [[436,MARKS], [872,SIZE1], [1308,SIZE2], [1744,SIZE3], [2180,SIZE4], [3000,SIZE5]], + stretch: {left:[0xE018,SIZE5], rep:[0xE016,SIZE5]} + }, + 0x20E1: + { + dir: H, + HW: [[478,MARKS]], + stretch: {left:[0xE018,SIZE5], rep:[0xE016,SIZE5], right:[0xE019,SIZE5]} + }, + 0x20EC: + { + dir: H, + HW: [[436,MARKS], [871,SIZE1], [1308,SIZE2], [1744,SIZE3], [2180,SIZE4], [3000,SIZE5]], + stretch: {rep:[0xE01A,SIZE5], right:[0xE01B,SIZE5]} + }, + 0x20ED: + { + dir: H, + HW: [[436,MARKS], [871,SIZE1], [1308,SIZE2], [1744,SIZE3], [2180,SIZE4], [3000,SIZE5]], + stretch: {left:[0xE01C,SIZE5], rep:[0xE01A,SIZE5]} + }, + 0x20EE: + { + dir: H, + HW: [[436,MARKS], [872,SIZE1], [1308,SIZE2], [1744,SIZE3], [2180,SIZE4], [3000,SIZE5]], + stretch: {left:[0xE01D,SIZE5], rep:[0xE01A,SIZE5]} + }, + 0x20EF: + { + dir: H, + HW: [[436,MARKS], [872,SIZE1], [1308,SIZE2], [1744,SIZE3], [2180,SIZE4], [3000,SIZE5]], + stretch: {rep:[0xE01A,SIZE5], right:[0xE01E,SIZE5]} + }, + 0x2140: + { + dir: V, + HW: [[1022,DOUBLESTRUCK], [1450,SIZE1]] + }, + 0x219E: + { + dir: H, + HW: [[786,MAIN]], + stretch: {left:[0x219E,MAIN], rep:[0x2212,MAIN]} + }, + 0x219F: + { + dir: V, + HW: [[816,ARROWS]], + stretch: {ext:[0x23D0,MAIN], top:[0x219F,ARROWS]} + }, + 0x21A0: + { + dir: H, + HW: [[786,MAIN]], + stretch: {right:[0x21A0,MAIN], rep:[0x2212,MAIN]} + }, + 0x21A1: + { + dir: V, + HW: [[816,ARROWS]], + stretch: {ext:[0x23D0,MAIN], bot:[0x21A1,ARROWS]} + }, + 0x21A4: + { + dir: H, + HW: [[787,ARROWS]], + stretch: {left:[0x2190,MAIN], rep:[0x23AF,SYMBOLS], right:[0x27DE,SYMBOLS]} + }, + 0x21A5: + { + dir: V, + HW: [[816,ARROWS]], + stretch: {bot:[0x5F,MAIN,0.050,-0.010,0.800], ext:[0x23D0,MAIN], top:[0x2191,MAIN]} + }, + 0x21A6: + { + dir: H, + HW: [[787,MAIN]], + stretch: {left:[0x27DD,SYMBOLS], rep:[0x23AF,SYMBOLS], right:[0x2192,MAIN]} + }, + 0x21A7: + { + dir: V, + HW: [[816,ARROWS]], + stretch: {top:[0x22A4,MAINBOLD,0.040,0.000,0.600], ext:[0x23D0,MAIN], bot:[0x2193,MAIN]} + }, + 0x21A8: + { + dir: V, + HW: [[816,ARROWS]], + stretch: {top:[0x2191,MAIN], ext:[0x23D0,MAIN], bot:[0x2913,ARROWS]} + }, + 0x21A9: + { + dir: H, + HW: [[786,MAIN]], + stretch: {left:[0x2190,MAIN], rep:[0x2212,MAIN], right:[0xE0B5,ARROWS]} + }, + 0x21AA: + { + dir: H, + HW: [[786,MAIN]], + stretch: {left:[0xE0B4,ARROWS], rep:[0x2212,MAIN], right:[0x2192,MAIN]} + }, + 0x21B0: + { + dir: V, + HW: [[818,MAIN]], + stretch: {top:[0x21B0,MAIN], ext:[0x23D0,MAIN,0.152]} + }, + 0x21B1: + { + dir: V, + HW: [[818,MAIN]], + stretch: {top:[0x21B1,MAIN], ext:[0x23D0,MAIN,-0.195]} + }, + 0x21B2: + { + dir: V, + HW: [[816,ARROWS]], + stretch: {bot:[0x21B2,ARROWS], ext:[0x23D0,MAIN,0.152]} + }, + 0x21B3: + { + dir: V, + HW: [[816,ARROWS]], + stretch: {bot:[0x21B3,ARROWS], ext:[0x23D0,MAIN,-0.195]} + }, + 0x21B4: + { + dir: H, + HW: [[786,ARROWS]], + stretch: {rep:[0x2212,MAIN,0.000,0.400], right:[0x21B4,ARROWS]} + }, + 0x21B5: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {bot:[0x21B5,ARROWS], ext:[0x23D0,MAIN,0.570]} + }, + 0x21BC: + { + dir: H, + HW: [[847,MAIN]], + stretch: {left:[0x21BC,MAIN], rep:[0x23AF,SYMBOLS]} + }, + 0x21BD: + { + dir: H, + HW: [[847,MAIN]], + stretch: {left:[0x21BD,MAIN], rep:[0x23AF,SYMBOLS]} + }, + 0x21BE: + { + dir: V, + HW: [[818,MAIN]], + stretch: {ext:[0x23D0,MAIN], top:[0x21BE,MAIN]} + }, + 0x21BF: + { + dir: V, + HW: [[818,MAIN]], + stretch: {ext:[0x23D0,MAIN], top:[0x21BF,MAIN]} + }, + 0x21C0: + { + dir: H, + HW: [[847,MAIN]], + stretch: {rep:[0x23AF,SYMBOLS], right:[0x21C0,MAIN]} + }, + 0x21C1: + { + dir: H, + HW: [[847,MAIN]], + stretch: {right:[0x21C1,MAIN], rep:[0x2212,MAIN]} + }, + 0x21C2: + { + dir: V, + HW: [[818,MAIN]], + stretch: {bot:[0x21C2,MAIN], ext:[0x23D0,MAIN]} + }, + 0x21C3: + { + dir: V, + HW: [[818,MAIN]], + stretch: {bot:[0x21C3,MAIN], ext:[0x23D0,MAIN]} + }, + 0x21CB: + { + dir: H, + HW: [[786,MAIN]], + stretch: {left:[0x296A,ARROWS], rep:[0x3D,MAIN], right:[0x296D,ARROWS]} + }, + 0x21CC: + { + dir: H, + HW: [[786,MAIN]], + stretch: {left:[0x296B,ARROWS], rep:[0x3D,MAIN], right:[0x296C,ARROWS]} + }, + 0x21DA: + { + dir: H, + HW: [[806,MAIN]], + stretch: {left:[0x21DA,MAIN], rep:[0xE021,SIZE5]} + }, + 0x21DB: + { + dir: H, + HW: [[806,MAIN]], + stretch: {rep:[0xE021,SIZE5], right:[0x21DB,MAIN]} + }, + 0x21E0: + { + dir: H, + HW: [[806,MAIN]], + stretch: {left:[0x21E0,MAIN], rep:[0xE121,ARROWS]} + }, + 0x21E1: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {ext:[0xE12D,ARROWS], top:[0x21E1,ARROWS]} + }, + 0x21E2: + { + dir: H, + HW: [[806,MAIN]], + stretch: {right:[0x21E2,MAIN], rep:[0xE12E,ARROWS]} + }, + 0x21E3: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {ext:[0xE12C,ARROWS], bot:[0x21E3,ARROWS]} + }, + 0x21E4: + { + dir: H, + HW: [[806,ARROWS]], + stretch: {left:[0x21E4,ARROWS], rep:[0x2212,MAIN]} + }, + 0x21E5: + { + dir: H, + HW: [[806,ARROWS]], + stretch: {right:[0x21E5,ARROWS], rep:[0x2212,MAIN]} + }, + 0x21FD: + { + dir: H, + HW: [[806,ARROWS]], + stretch: {left:[0x21FD,ARROWS], rep:[0x2212,MAIN]} + }, + 0x21FE: + { + dir: H, + HW: [[806,ARROWS]], + stretch: {right:[0x21FE,ARROWS], rep:[0x2212,MAIN]} + }, + 0x21FF: + { + dir: H, + HW: [[886,ARROWS]], + stretch: {left:[0x21FD,ARROWS], rep:[0x2212,MAIN], right:[0x21FE,ARROWS]} + }, + 0x220F: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2210: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2211: + { + dir: V, + HW: [[1022,OPERATORS], [1450,SIZE1]] + }, + 0x221B: + { + dir: V, + HW: [[1232,OPERATORS], [1847,SIZE1], [2460,SIZE2], [3075,SIZE3]], + stretch: {bot:[0xE025,SIZE5], ext:[0xE023,SIZE5], top:[0xE024,SIZE5]} + }, + 0x221C: + { + dir: V, + HW: [[1232,OPERATORS], [1847,SIZE1], [2460,SIZE2], [3075,SIZE3]], + stretch: {bot:[0xE026,SIZE5], ext:[0xE023,SIZE5], top:[0xE024,SIZE5]} + }, + 0x222B: + { + dir: H, + HW: [[607,MAIN], [979,SIZE1]], + stretch: {top:[0xE03C,SIZE5], rep:[0xE03D,SIZE5], bot:[0xE03E,SIZE5]} + }, + 0x222C: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x222D: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x222E: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x222F: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2230: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2231: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2232: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2233: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x22C0: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x22C1: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x22C2: + { + dir: V, + HW: [[1032,OPERATORS], [1461,SIZE1]] + }, + 0x22C3: + { + dir: V, + HW: [[1032,OPERATORS], [1461,SIZE1]] + }, + 0x23AA: + { + dir: V, + HW: [[1010,SIZE5,null,0xE00D]], + stretch: {top:[0xE00D,SIZE5], ext:[0xE00D,SIZE5], bot:[0xE00D,SIZE5]} + }, + 0x23B4: + { + dir: H, + HW: [[816,MAIN], [925,SIZE1], [1458,SIZE2], [1991,SIZE3], [2524,SIZE4], [3057,SIZE5]], + stretch: {left:[0xE027,SIZE5], rep:[0xE028,SIZE5], right:[0xE029,SIZE5]} + }, + 0x23B5: + { + dir: H, + HW: [[816,MAIN], [925,SIZE1], [1458,SIZE2], [1991,SIZE3], [2524,SIZE4], [3057,SIZE5]], + stretch: {left:[0xE02A,SIZE5], rep:[0xE02B,SIZE5], right:[0xE02C,SIZE5]} + }, + 0x23D0: + { + dir: V, + HW: [[304,MAIN], [690,SIZE1], [879,SIZE2], [1350,SIZE2,1.536], [1827,SIZE2,2.078], [2303,SIZE2,2.620], [2780,SIZE2,3.162]], + stretch: {ext:[0x2223,MAIN]} + }, + 0x23DC: + { + dir: H, + HW: [[1000,MAIN], [926,SIZE1], [1460,SIZE2], [1886,SIZE3], [2328,SIZE4], [3237,SIZE5]], + stretch: {left:[0xE02D,SIZE5], rep:[0xE028,SIZE5], right:[0xE02E,SIZE5]} + }, + 0x23DD: + { + dir: H, + HW: [[1000,MAIN], [926,SIZE1], [1460,SIZE2], [1886,SIZE3], [2328,SIZE4], [3237,SIZE5]], + stretch: {left:[0xE02F,SIZE5], rep:[0xE02B,SIZE5], right:[0xE030,SIZE5]} + }, + 0x23E0: + { + dir: H, + HW: [[1000,MAIN], [1460,SIZE1], [1886,SIZE2], [2312,SIZE3], [2738,SIZE4], [3164,SIZE5]] + }, + 0x23E1: + { + dir: H, + HW: [[1000,MAIN], [1460,SIZE1], [1886,SIZE2], [2312,SIZE3], [2738,SIZE4], [3164,SIZE5]] + }, + 0x2772: + { + dir: V, + HW: [[932,MISC], [1230,SIZE1], [1845,SIZE2], [2459,SIZE3], [3075,SIZE4]] + }, + 0x2773: + { + dir: V, + HW: [[932,MISC], [1230,SIZE1], [1845,SIZE2], [2459,SIZE3], [3075,SIZE4]] + }, + 0x27E6: + { + dir: V, + HW: [[930,SYMBOLS], [1230,SIZE1], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {top:[0x2553,SHAPES], ext:[0x2551,SHAPES], bot:[0x2559,SHAPES]} + }, + 0x27E7: + { + dir: V, + HW: [[930,SYMBOLS], [1230,SIZE1], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {top:[0x2556,SHAPES], ext:[0x2551,SHAPES], bot:[0x255C,SHAPES]} + }, + 0x27EA: + { + dir: V, + HW: [[932,SYMBOLS], [1230,SIZE1], [1845,SIZE2], [2461,SIZE3], [3075,SIZE4]] + }, + 0x27EB: + { + dir: V, + HW: [[932,SYMBOLS], [1230,SIZE1], [1845,SIZE2], [2461,SIZE3], [3075,SIZE4]] + }, + 0x27F0: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {ext:[0xE037,SIZE5], top:[0x27F0,ARROWS]} + }, + 0x27F1: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {bot:[0x27F1,ARROWS], ext:[0xE037,SIZE5]} + }, + 0x2906: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {left:[0x21D0,MAIN], rep:[0x3D,MAIN], right:[0x2AE4,OPERATORS,0.000,-0.090]} + }, + 0x2907: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {left:[0x22A8,MAIN,0.000,-0.090], rep:[0x3D,MAIN], right:[0x21D2,MAIN]} + }, + 0x290A: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {ext:[0xE038,SIZE5], top:[0x290A,ARROWS]} + }, + 0x290B: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {bot:[0x290B,ARROWS], ext:[0xE038,SIZE5]} + }, + 0x2912: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {top:[0x2912,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x2913: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {bot:[0x2913,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x294E: + { + dir: H, + HW: [[850,ARROWS]], + stretch: {left:[0x21BC,MAIN], rep:[0x2212,MAIN], right:[0x21C0,MAIN]} + }, + 0x294F: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {top:[0x21BE,MAIN], ext:[0x23D0,MAIN], bot:[0x21C2,MAIN]} + }, + 0x2950: + { + dir: H, + HW: [[850,ARROWS]], + stretch: {left:[0x21BD,MAIN], rep:[0x2212,MAIN], right:[0x21C1,MAIN]} + }, + 0x2951: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {top:[0x21BF,MAIN], ext:[0x23D0,MAIN], bot:[0x21C3,MAIN]} + }, + 0x2952: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {left:[0x2952,ARROWS], rep:[0x2212,MAIN]} + }, + 0x2953: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {right:[0x2953,ARROWS], rep:[0x2212,MAIN]} + }, + 0x2954: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {top:[0x2954,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x2955: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {bot:[0x2955,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x2956: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {left:[0x2956,ARROWS], rep:[0x2212,MAIN]} + }, + 0x2957: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {right:[0x2957,ARROWS], rep:[0x2212,MAIN]} + }, + 0x2958: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {top:[0x2958,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x2959: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {bot:[0x2959,ARROWS], ext:[0x23D0,MAIN]} + }, + 0x295A: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {left:[0x21BC,MAIN], rep:[0x2212,MAIN], right:[0x22A3,MAINBOLD,0.000,0.100,0.600]} + }, + 0x295B: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {left:[0xE0B6,ARROWS], rep:[0x2212,MAIN], right:[0x21C0,MAIN]} + }, + 0x295C: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {bot:[0x5F,MAIN,0.050,-0.010,0.800], ext:[0x23D0,MAIN], top:[0x21BE,MAIN]} + }, + 0x295D: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {top:[0x22A4,MAINBOLD,0.040,0.000,0.600], ext:[0x23D0,MAIN], bot:[0x21C2,MAIN]} + }, + 0x295E: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {left:[0x21BD,MAIN], rep:[0x2212,MAIN], right:[0x22A3,MAINBOLD,0.000,0.100,0.600]} + }, + 0x295F: + { + dir: H, + HW: [[816,ARROWS]], + stretch: {left:[0xE0B6,ARROWS], rep:[0x2212,MAIN], right:[0x21C1,MAIN]} + }, + 0x2960: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {bot:[0x5F,MAIN,0.050,-0.010,0.800], ext:[0x23D0,MAIN], top:[0x21BF,MAIN]} + }, + 0x2961: + { + dir: V, + HW: [[818,ARROWS]], + stretch: {top:[0x22A4,MAINBOLD,0.040,0.000,0.600], ext:[0x23D0,MAIN], bot:[0x21C3,MAIN]} + }, + 0x2980: + { + dir: V, + HW: [[884,SYMBOLS]], + stretch: {ext:[0x2980,SYMBOLS]} + }, + 0x2983: + { + dir: V, + HW: [[932,SYMBOLS], [1230,SIZE1], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]] + }, + 0x2984: + { + dir: V, + HW: [[932,SYMBOLS], [1230,SIZE1], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]] + }, + 0x2985: + { + dir: V, + HW: [[932,SYMBOLS], [1230,SIZE1], [1848,SIZE2], [2459,SIZE3], [3075,SIZE4]] + }, + 0x2986: + { + dir: V, + HW: [[932,SYMBOLS], [1230,SIZE1], [1848,SIZE2], [2459,SIZE3], [3075,SIZE4]] + }, + 0x2997: + { + dir: V, + HW: [[932,MAIN]], + stretch: {top:[0xE10D,SHAPES,0.100,0.050], ext:[0x23D0,MAIN,-0.100], bot:[0xE10C,SHAPES,0.100]} + }, + 0x2998: + { + dir: V, + HW: [[932,MAIN]], + stretch: {top:[0xE10C,SHAPES,-0.100,0.050], ext:[0x23D0,MAIN], bot:[0xE10D,SHAPES,-0.100]} + }, + 0x2A00: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2A01: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2A02: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2A03: + { + dir: V, + HW: [[1032,OPERATORS], [1461,SIZE1]] + }, + 0x2A04: + { + dir: V, + HW: [[1032,OPERATORS], [1461,SIZE1]] + }, + 0x2A05: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2A06: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2A07: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2A08: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2A09: + { + dir: V, + HW: [[1022,OPERATORS], [1451,SIZE1]] + }, + 0x2A0A: + { + dir: V, + HW: [[1022,OPERATORS], [1450,SIZE1]] + }, + 0x2A0B: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A0C: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A0D: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A0E: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A0F: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A10: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A11: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A12: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A13: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A14: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A15: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A16: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A17: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A18: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A19: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A1A: + { + dir: V, + HW: [[1144,OPERATORS], [2269,SIZE1]] + }, + 0x2A1B: + { + dir: V, + HW: [[1267,OPERATORS], [2426,SIZE1]] + }, + 0x2A1C: + { + dir: V, + HW: [[1267,OPERATORS], [2426,SIZE1]] + }, + 0x2AFC: + { + dir: V, + HW: [[1022,OPERATORS], [1230,SIZE1], [1875,SIZE2]] + }, + 0x2AFF: + { + dir: V, + HW: [[1022,OPERATORS], [1230,SIZE1], [1875,SIZE2]] + }, + 0x2B45: + { + dir: H, + HW: [[818,SHAPES]], + stretch: {left:[0x2B45,SHAPES], rep:[0xE039,SIZE5]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(SVG.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax["SVG"]); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/fontdata.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/fontdata.js new file mode 100644 index 0000000..f87c8d2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/STIX-Web/fontdata.js @@ -0,0 +1,747 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/STIX-Web/fontdata.js + * + * Initializes the SVG OutputJax to use the STIX-Web fonts + + * Copyright (c) 2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG,MML,AJAX,HUB) { + + var VERSION = "2.3"; + + var ALPHABETSBOLDITALIC = "STIXMathJax_Alphabets-bold-italic", + ALPHABETSBOLD = "STIXMathJax_Alphabets-bold", + ALPHABETSITALIC = "STIXMathJax_Alphabets-italic", + ALPHABETS = "STIXMathJax_Alphabets", + ARROWSBOLD = "STIXMathJax_Arrows-bold", + ARROWS = "STIXMathJax_Arrows", + DOUBLESTRUCKBOLDITALIC = "STIXMathJax_DoubleStruck-bold-italic", + DOUBLESTRUCKBOLD = "STIXMathJax_DoubleStruck-bold", + DOUBLESTRUCKITALIC = "STIXMathJax_DoubleStruck-italic", + DOUBLESTRUCK = "STIXMathJax_DoubleStruck", + FRAKTURBOLD = "STIXMathJax_Fraktur-bold", + FRAKTUR = "STIXMathJax_Fraktur", + LATINBOLDITALIC = "STIXMathJax_Latin-bold-italic", + LATINBOLD = "STIXMathJax_Latin-bold", + LATINITALIC = "STIXMathJax_Latin-italic", + LATIN = "STIXMathJax_Latin", + MAINBOLDITALIC = "STIXMathJax_Main-bold-italic", + MAINBOLD = "STIXMathJax_Main-bold", + MAINITALIC = "STIXMathJax_Main-italic", + MAIN = "STIXMathJax_Main", + MARKSBOLDITALIC = "STIXMathJax_Marks-bold-italic", + MARKSBOLD = "STIXMathJax_Marks-bold", + MARKSITALIC = "STIXMathJax_Marks-italic", + MARKS = "STIXMathJax_Marks", + MISCBOLDITALIC = "STIXMathJax_Misc-bold-italic", + MISCBOLD = "STIXMathJax_Misc-bold", + MISCITALIC = "STIXMathJax_Misc-italic", + MISC = "STIXMathJax_Misc", + MONOSPACE = "STIXMathJax_Monospace", + NORMALBOLDITALIC = "STIXMathJax_Normal-bold-italic", + NORMALBOLD = "STIXMathJax_Normal-bold", + NORMALITALIC = "STIXMathJax_Normal-italic", + OPERATORSBOLD = "STIXMathJax_Operators-bold", + OPERATORS = "STIXMathJax_Operators", + SANSSERIFBOLDITALIC = "STIXMathJax_SansSerif-bold-italic", + SANSSERIFBOLD = "STIXMathJax_SansSerif-bold", + SANSSERIFITALIC = "STIXMathJax_SansSerif-italic", + SANSSERIF = "STIXMathJax_SansSerif", + SCRIPTBOLDITALIC = "STIXMathJax_Script-bold-italic", + SCRIPTITALIC = "STIXMathJax_Script-italic", + SCRIPT = "STIXMathJax_Script", + SHAPESBOLDITALIC = "STIXMathJax_Shapes-bold-italic", + SHAPESBOLD = "STIXMathJax_Shapes-bold", + SHAPES = "STIXMathJax_Shapes", + SIZE1 = "STIXMathJax_Size1", + SIZE2 = "STIXMathJax_Size2", + SIZE3 = "STIXMathJax_Size3", + SIZE4 = "STIXMathJax_Size4", + SIZE5 = "STIXMathJax_Size5", + SYMBOLSBOLD = "STIXMathJax_Symbols-bold", + SYMBOLS = "STIXMathJax_Symbols", + VARIANTSBOLDITALIC = "STIXMathJax_Variants-bold-italic", + VARIANTSBOLD = "STIXMathJax_Variants-bold", + VARIANTSITALIC = "STIXMathJax_Variants-italic", + VARIANTS = "STIXMathJax_Variants"; + + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + + SVG.Augment({ + FONTDATA: { + version: VERSION, + + + baselineskip: 1200, + lineH: 800, lineD: 200, + + FONTS: { + "STIXMathJax_Alphabets-bold-italic": "Alphabets/BoldItalic/Main.js", + "STIXMathJax_Alphabets-bold": "Alphabets/Bold/Main.js", + "STIXMathJax_Alphabets-italic": "Alphabets/Italic/Main.js", + "STIXMathJax_Alphabets": "Alphabets/Regular/Main.js", + "STIXMathJax_Arrows-bold": "Arrows/Bold/Main.js", + "STIXMathJax_Arrows": "Arrows/Regular/Main.js", + "STIXMathJax_DoubleStruck-bold-italic": "DoubleStruck/BoldItalic/Main.js", + "STIXMathJax_DoubleStruck-bold": "DoubleStruck/Bold/Main.js", + "STIXMathJax_DoubleStruck-italic": "DoubleStruck/Italic/Main.js", + "STIXMathJax_DoubleStruck": "DoubleStruck/Regular/Main.js", + "STIXMathJax_Fraktur-bold": "Fraktur/Bold/Main.js", + "STIXMathJax_Fraktur": "Fraktur/Regular/Main.js", + "STIXMathJax_Latin-bold-italic": "Latin/BoldItalic/Main.js", + "STIXMathJax_Latin-bold": "Latin/Bold/Main.js", + "STIXMathJax_Latin-italic": "Latin/Italic/Main.js", + "STIXMathJax_Latin": "Latin/Regular/Main.js", + "STIXMathJax_Main-bold-italic": "Main/BoldItalic/Main.js", + "STIXMathJax_Main-bold": "Main/Bold/Main.js", + "STIXMathJax_Main-italic": "Main/Italic/Main.js", + "STIXMathJax_Main": "Main/Regular/Main.js", + "STIXMathJax_Marks-bold-italic": "Marks/BoldItalic/Main.js", + "STIXMathJax_Marks-bold": "Marks/Bold/Main.js", + "STIXMathJax_Marks-italic": "Marks/Italic/Main.js", + "STIXMathJax_Marks": "Marks/Regular/Main.js", + "STIXMathJax_Misc-bold-italic": "Misc/BoldItalic/Main.js", + "STIXMathJax_Misc-bold": "Misc/Bold/Main.js", + "STIXMathJax_Misc-italic": "Misc/Italic/Main.js", + "STIXMathJax_Misc": "Misc/Regular/Main.js", + "STIXMathJax_Monospace": "Monospace/Regular/Main.js", + "STIXMathJax_Normal-bold-italic": "Normal/BoldItalic/Main.js", + "STIXMathJax_Normal-bold": "Normal/Bold/Main.js", + "STIXMathJax_Normal-italic": "Normal/Italic/Main.js", + "STIXMathJax_Operators-bold": "Operators/Bold/Main.js", + "STIXMathJax_Operators": "Operators/Regular/Main.js", + "STIXMathJax_SansSerif-bold-italic": "SansSerif/BoldItalic/Main.js", + "STIXMathJax_SansSerif-bold": "SansSerif/Bold/Main.js", + "STIXMathJax_SansSerif-italic": "SansSerif/Italic/Main.js", + "STIXMathJax_SansSerif": "SansSerif/Regular/Main.js", + "STIXMathJax_Script-bold-italic": "Script/BoldItalic/Main.js", + "STIXMathJax_Script-italic": "Script/Italic/Main.js", + "STIXMathJax_Script": "Script/Regular/Main.js", + "STIXMathJax_Shapes-bold-italic": "Shapes/BoldItalic/Main.js", + "STIXMathJax_Shapes-bold": "Shapes/Bold/Main.js", + "STIXMathJax_Shapes": "Shapes/Regular/Main.js", + "STIXMathJax_Size1": "Size1/Regular/Main.js", + "STIXMathJax_Size2": "Size2/Regular/Main.js", + "STIXMathJax_Size3": "Size3/Regular/Main.js", + "STIXMathJax_Size4": "Size4/Regular/Main.js", + "STIXMathJax_Size5": "Size5/Regular/Main.js", + "STIXMathJax_Symbols-bold": "Symbols/Bold/Main.js", + "STIXMathJax_Symbols": "Symbols/Regular/Main.js", + "STIXMathJax_Variants-bold-italic": "Variants/BoldItalic/Main.js", + "STIXMathJax_Variants-bold": "Variants/Bold/Main.js", + "STIXMathJax_Variants-italic": "Variants/Italic/Main.js", + "STIXMathJax_Variants": "Variants/Regular/Main.js" + }, + + VARIANT: { + "normal": {fonts: [MAIN,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,VARIANTS,SIZE1]}, + "bold": {fonts: [MAINBOLD,NORMALBOLD,FRAKTURBOLD,DOUBLESTRUCKBOLD,SANSSERIFBOLD,LATINBOLD,ALPHABETSBOLD,MARKSBOLD,ARROWSBOLD,OPERATORSBOLD,SYMBOLSBOLD,SHAPESBOLD,MISCBOLD,VARIANTSBOLD,SIZE1], bold:true +}, + "italic": {fonts: [MAINITALIC,NORMALITALIC,SCRIPTITALIC,DOUBLESTRUCKITALIC,SANSSERIFITALIC,LATINITALIC,ALPHABETSITALIC,MARKSITALIC,MISCITALIC,VARIANTSITALIC,SIZE1], italic:true}, + "bolditalic": {fonts: [MAINBOLDITALIC,NORMALBOLDITALIC,SCRIPTBOLDITALIC,DOUBLESTRUCKBOLDITALIC,SANSSERIFBOLDITALIC,LATINBOLDITALIC,ALPHABETSBOLDITALIC,MARKSBOLDITALIC,SHAPESBOLDITALIC,MISCBOLDITALIC,VARIANTSBOLDITALIC,SIZE1], bold: true, italic:true}, + "double-struck": { + fonts: [DOUBLESTRUCK], + offsetA: 0x1D538, + offsetN: 0x1D7D8, + remap: {0x1D53A: 0x2102, 0x1D53F: 0x210D, 0x1D545: 0x2115, 0x1D547: 0x2119, 0x1D548: 0x211A, 0x1D549: 0x211D, 0x1D551: 0x2124} + }, + "fraktur": { + fonts: [FRAKTUR], + offsetA: 0x1D504, + remap: {0x1D506: 0x212D, 0x1D50B: 0x210C, 0x1D50C: 0x2111, 0x1D515: 0x211C, 0x1D51D: 0x2128} + }, + "bold-fraktur": { + fonts: [FRAKTURBOLD], bold:true, + offsetA: 0x1D56C + }, + "script": { + fonts: [SCRIPTITALIC], italic:true, + offsetA: 0x1D49C, + remap: {0x1D49D: 0x212C, 0x1D4A0: 0x2130, 0x1D4A1: 0x2131, 0x1D4A3: 0x210B, 0x1D4A4: 0x2110, 0x1D4A7: 0x2112, 0x1D4A8: 0x2133, 0x1D4AD: 0x211B, 0x1D4BA: 0x212F, 0x1D4BC: 0x210A, 0x1D4C4: 0x2134} + }, + "bold-script": { + fonts: [SCRIPTBOLDITALIC], bold:true, italic:true, + offsetA: 0x1D4D0 + }, + "sans-serif": { + fonts: [SANSSERIF], + offsetA: 0x1D5A0, + offsetN: 0x1D7E2, + offsetG: 0xE17D + }, + "bold-sans-serif": { + fonts: [SANSSERIFBOLD], bold:true, + offsetA: 0x1D5D4, + offsetN: 0x1D7EC, + offsetG: 0x1D756 + }, + "sans-serif-italic": { + fonts: [SANSSERIFITALIC], italic: true, + offsetA: 0x1D608, + offsetN: 0xE1B4, + offsetG: 0xE1BF + }, + "sans-serif-bold-italic": { + fonts: [SANSSERIFBOLDITALIC], bold:true, italic: true, + offsetA: 0x1D63C, + offsetN: 0xE1F6, + offsetG: 0x1D790 + }, + "monospace": { + fonts: [MONOSPACE], + offsetA: 0x1D670, + offsetN: 0x1D7F6 + }, + "-STIX-Web-variant": {remap: { 0x2A87: 0xE010, 0x2A88: 0xE00F, 0x25B3: 0x25B5, 0x25BD: 0x25BF }, fonts: [VARIANTS,SHAPES,OPERATORS,MAIN,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,SYMBOLS,MISC,SIZE1]}, + "-tex-caligraphic": {offsetA: 0xE22D, noLowerCase: 1, fonts: [VARIANTSITALIC,MAINITALIC,NORMALITALIC,SCRIPTITALIC,DOUBLESTRUCKITALIC,SANSSERIFITALIC,LATINITALIC,ALPHABETSITALIC,MARKSITALIC,MISCITALIC,SIZE1], italic: true}, + "-tex-oldstyle": {offsetN: 0xE261, remap: {0xE262: 0xE265, 0xE263: 0xE269, 0xE264: 0xE26D, 0xE265: 0xE271, 0xE266: 0xE275, 0xE267: 0xE279, 0xE268: 0xE27D, 0xE269: 0xE281, 0xE26A: 0xE285}, fonts: [VARIANTS,MAIN,MONOSPACE,LATIN,ALPHABETS,MARKS,ARROWS,OPERATORS,SYMBOLS,SHAPES,MISC,SIZE1]}, + "-tex-caligraphic-bold": {offsetA: 0xE247, noLowerCase: 1, fonts: [VARIANTSBOLDITALIC,MAINBOLDITALIC,NORMALBOLDITALIC,SCRIPTBOLDITALIC,DOUBLESTRUCKBOLDITALIC,SANSSERIFBOLDITALIC,LATINBOLDITALIC,ALPHABETSBOLDITALIC,MARKSBOLDITALIC,SHAPESBOLDITALIC,MISCBOLDITALIC,SIZE1], italic: true, bold: true}, + "-tex-oldstyle-bold": {offsetN: 0xE261, remap: {0xE264: 0xE267, 0xE265: 0xE26B, 0xE266: 0xE26F, 0xE267: 0xE273, 0xE268: 0xE277, 0xE269: 0xE27B, 0xE26A: 0xE27F, 0xE26B: 0xE283, 0xE26C: 0xE287}, fonts: [VARIANTSBOLD,MAINBOLD,NORMALBOLD,FRAKTURBOLD,DOUBLESTRUCKBOLD,SANSSERIFBOLD,LATINBOLD,ALPHABETSBOLD,MARKSBOLD,ARROWSBOLD,OPERATORSBOLD,SYMBOLSBOLD,SHAPESBOLD,MISCBOLD,SIZE1], bold: true}, + "-tex-mathit": {fonts: [MAINITALIC,NORMALITALIC,SCRIPTITALIC,DOUBLESTRUCKITALIC,SANSSERIFITALIC,LATINITALIC,ALPHABETSITALIC,MARKSITALIC,MISCITALIC,VARIANTSITALIC,SIZE1], italic:true, noIC:true}, + "-largeOp": {fonts:[SIZE1,MAIN]}, + "-smallOp": {} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 26}, + {name: "Alpha", low: 0x41, high: 0x5A, offset: "A"}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03C9, offset: "G", add: 26}, + {name: "Greek", low: 0x0391, high: 0x03F6, offset: "G", + remap: {0x03F5: 52, 0x03D1: 53, 0x03F0: 54, 0x03D5: 55, 0x03F1: 56, 0x03D6: 57, 0x03F4: 17}} + ], + + RULECHAR: 0x23AF, + + REMAP: { + 0x3008: 0x27E8, + 0x3009: 0x27E9, + 0x2758: 0x2223, + 0x02F3: 0x02DA, + 0x02F4: 0x02CA, + 0xFE37: 0x23DE, + 0xFE38: 0x23DF + }, + + REMAPACCENT: { + "\u2192": "\u20D7" + }, + + REMAPACCENTUNDER: { + }, + + DELIMITERS: { + 0x28: + { + dir: V, + HW: [[853,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {bot:[0xE000,SIZE5], ext:[0xE001,SIZE5], top:[0xE002,SIZE5]} + }, + 0x29: + { + dir: V, + HW: [[853,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {bot:[0xE003,SIZE5], ext:[0xE004,SIZE5], top:[0xE005,SIZE5]} + }, + 0x2D: {alias: 0x23AF, dir: H}, + 0x2F: + { + dir: V, + HW: [[690,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]] + }, + 0x3D: EXTRAH, + 0x5B: + { + dir: V, + HW: [[818,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {bot:[0xE006,SIZE5], ext:[0xE007,SIZE5], top:[0xE008,SIZE5]} + }, + 0x5C: + { + dir: V, + HW: [[690,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]] + }, + 0x5D: + { + dir: V, + HW: [[818,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {bot:[0xE009,SIZE5], ext:[0xE00A,SIZE5], top:[0xE00B,SIZE5]} + }, + 0x5E: {alias: 0x2C6, dir: H}, + 0x5F: {alias: 0x23AF, dir: H}, + 0x7B: + { + dir: V, + HW: [[861,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {bot:[0xE00C,SIZE5], ext:[0xE00D,SIZE5], mid:[0xE00E,SIZE5], top:[0xE00F,SIZE5]} + }, + 0x7C: + { + dir: V, + HW: [[690,MAIN]], + stretch: {bot:[0x7C,MAIN], ext:[0x7C,MAIN]} + }, + 0x7D: + { + dir: V, + HW: [[861,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {bot:[0xE010,SIZE5], ext:[0xE00D,SIZE5], mid:[0xE011,SIZE5], top:[0xE012,SIZE5]} + }, + 0x7E: {alias: 0x2DC, dir: H}, + 0xAF: {alias: 0x23AF, dir: H}, + 0x2C6: + { + dir: H, + HW: [[311,MAIN], [560,SIZE1], [979,SIZE2], [1460,SIZE3], [1886,SIZE4], [2328,SIZE5]] + }, + 0x2C7: EXTRAH, + 0x2C9: {alias: 0x23AF, dir: H}, + 0x2CD: EXTRAH, + 0x2DC: + { + dir: H, + HW: [[330,MAIN], [560,SIZE1], [979,SIZE2], [1460,SIZE3], [1886,SIZE4], [2328,SIZE5]] + }, + 0x2F7: EXTRAH, + 0x302: + { + dir: H, + HW: [[311,MAIN], [560,SIZE1], [979,SIZE2], [1460,SIZE3], [1886,SIZE4], [2328,SIZE5]] + }, + 0x303: + { + dir: H, + HW: [[330,MAIN], [560,SIZE1], [979,SIZE2], [1460,SIZE3], [1886,SIZE4], [2328,SIZE5]] + }, + 0x305: + { + dir: H, + HW: [[500,MARKS], [1000,SIZE1], [1500,SIZE2], [2000,SIZE3], [2500,SIZE4], [3000,SIZE5]], + stretch: {left:[0xE013,SIZE5], rep:[0xE013,SIZE5]} + }, + 0x30C: + { + dir: H, + HW: [[311,MAIN], [560,SIZE1], [979,SIZE2], [1460,SIZE3], [1886,SIZE4], [2328,SIZE5]] + }, + 0x330: + { + dir: H, + HW: [[330,MARKS], [560,SIZE1], [979,SIZE2], [1460,SIZE3], [1886,SIZE4], [2328,SIZE5]] + }, + 0x332: + { + dir: H, + HW: [[500,MARKS], [1000,SIZE1], [1500,SIZE2], [2000,SIZE3], [2500,SIZE4], [3000,SIZE5]], + stretch: {left:[0xE014,SIZE5], rep:[0xE014,SIZE5]} + }, + 0x338: + { + dir: V, + HW: [[818,MAIN], [553,SIZE1], [662,SIZE2], [818,SIZE3], [959,SIZE4], [1414,SIZE5]] + }, + 0x2015: {alias: 0x23AF, dir: H}, + 0x2016: + { + dir: V, + HW: [[879,MAIN]], + stretch: {bot:[0x2016,MAIN], ext:[0x2016,MAIN]} + }, + 0x2017: {alias: 0x23AF, dir: H}, + 0x203E: + { + dir: H, + HW: [[500,MAIN], [1000,SIZE1], [1500,SIZE2], [2000,SIZE3], [2500,SIZE4], [3000,SIZE5]], + stretch: {left:[0x203E,MAIN], rep:[0x203E,MAIN]} + }, + 0x20D0: EXTRAH, + 0x20D1: EXTRAH, + 0x20D6: EXTRAH, + 0x20D7: + { + dir: H, + HW: [[436,MAIN], [872,SIZE1], [1308,SIZE2], [1744,SIZE3], [2180,SIZE4], [3000,SIZE5]], + stretch: {rep:[0xE016,SIZE5], right:[0xE019,SIZE5]} + }, + 0x20E1: EXTRAH, + 0x20EC: EXTRAH, + 0x20ED: EXTRAH, + 0x20EE: EXTRAH, + 0x20EF: EXTRAH, + 0x2140: EXTRAV, + 0x2190: + { + dir: H, + HW: [[786,MAIN]], + stretch: {left:[0x2190,MAIN], rep:[0x23AF,SYMBOLS]} + }, + 0x2191: + { + dir: V, + HW: [[818,MAIN]], + stretch: {ext:[0x23D0,MAIN], top:[0x2191,MAIN]} + }, + 0x2192: + { + dir: H, + HW: [[786,MAIN]], + stretch: {rep:[0x23AF,SYMBOLS], right:[0x2192,MAIN]} + }, + 0x2193: + { + dir: V, + HW: [[818,MAIN]], + stretch: {bot:[0x2193,MAIN], ext:[0x23D0,MAIN]} + }, + 0x2194: + { + dir: H, + HW: [[850,MAIN]], + stretch: {left:[0x2190,MAIN], rep:[0x23AF,SYMBOLS], right:[0x2192,MAIN]} + }, + 0x2195: + { + dir: V, + HW: [[954,MAIN]], + stretch: {bot:[0x2193,MAIN], ext:[0x23D0,MAIN], top:[0x2191,MAIN]} + }, + 0x219E: EXTRAH, + 0x219F: EXTRAV, + 0x21A0: EXTRAH, + 0x21A1: EXTRAV, + 0x21A4: EXTRAH, + 0x21A5: EXTRAV, + 0x21A6: EXTRAH, + 0x21A7: EXTRAV, + 0x21A8: EXTRAV, + 0x21A9: EXTRAH, + 0x21AA: EXTRAH, + 0x21B0: EXTRAV, + 0x21B1: EXTRAV, + 0x21B2: EXTRAV, + 0x21B3: EXTRAV, + 0x21B4: EXTRAH, + 0x21B5: EXTRAV, + 0x21BC: EXTRAH, + 0x21BD: EXTRAH, + 0x21BE: EXTRAV, + 0x21BF: EXTRAV, + 0x21C0: EXTRAH, + 0x21C1: EXTRAH, + 0x21C2: EXTRAV, + 0x21C3: EXTRAV, + 0x21CB: EXTRAH, + 0x21CC: EXTRAH, + 0x21D0: + { + dir: H, + HW: [[806,MAIN]], + stretch: {left:[0x21D0,MAIN], rep:[0xE01F,SIZE5]} + }, + 0x21D1: + { + dir: V, + HW: [[818,MAIN]], + stretch: {ext:[0xE020,SIZE5], top:[0x21D1,MAIN]} + }, + 0x21D2: + { + dir: H, + HW: [[806,MAIN]], + stretch: {rep:[0xE01F,SIZE5], right:[0x21D2,MAIN]} + }, + 0x21D3: + { + dir: V, + HW: [[818,MAIN]], + stretch: {bot:[0x21D3,MAIN], ext:[0xE020,SIZE5]} + }, + 0x21D4: + { + dir: H, + HW: [[886,MAIN]], + stretch: {left:[0x21D0,MAIN], rep:[0xE01F,SIZE5], right:[0x21D2,MAIN]} + }, + 0x21D5: + { + dir: V, + HW: [[954,MAIN]], + stretch: {bot:[0x21D3,MAIN], ext:[0xE020,SIZE5], top:[0x21D1,MAIN]} + }, + 0x21DA: EXTRAH, + 0x21DB: EXTRAH, + 0x21E0: EXTRAH, + 0x21E1: EXTRAV, + 0x21E2: EXTRAH, + 0x21E3: EXTRAV, + 0x21E4: EXTRAH, + 0x21E5: EXTRAH, + 0x21FD: EXTRAH, + 0x21FE: EXTRAH, + 0x21FF: EXTRAH, + 0x220F: EXTRAV, + 0x2210: EXTRAV, + 0x2211: EXTRAV, + 0x2212: {alias: 0x23AF, dir: H}, + 0x2215: {alias: 0x2F, dir: V}, + 0x221A: + { + dir: V, + HW: [[1232,MAIN], [1847,SIZE1], [2460,SIZE2], [3075,SIZE3]], + stretch: {bot:[0xE022,SIZE5], ext:[0xE023,SIZE5], top:[0xE024,SIZE5]} + }, + 0x221B: EXTRAV, + 0x221C: EXTRAV, + 0x2223: + { + dir: V, + HW: [[879,MAIN]], + stretch: {ext:[0x2223,MAIN]} + }, + 0x2225: + { + dir: V, + HW: [[879,MAIN]], + stretch: {ext:[0x2225,MAIN]} + }, + 0x222B: EXTRAH, + 0x222C: EXTRAV, + 0x222D: EXTRAV, + 0x222E: EXTRAV, + 0x222F: EXTRAV, + 0x2230: EXTRAV, + 0x2231: EXTRAV, + 0x2232: EXTRAV, + 0x2233: EXTRAV, + 0x22C0: EXTRAV, + 0x22C1: EXTRAV, + 0x22C2: EXTRAV, + 0x22C3: EXTRAV, + 0x2308: + { + dir: V, + HW: [[926,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {ext:[0xE007,SIZE5], top:[0xE008,SIZE5]} + }, + 0x2309: + { + dir: V, + HW: [[926,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {ext:[0xE00A,SIZE5], top:[0xE00B,SIZE5]} + }, + 0x230A: + { + dir: V, + HW: [[926,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {bot:[0xE006,SIZE5], ext:[0xE007,SIZE5]} + }, + 0x230B: + { + dir: V, + HW: [[926,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]], + stretch: {bot:[0xE009,SIZE5], ext:[0xE00A,SIZE5]} + }, + 0x2329: {alias: 0x27E8, dir: V}, + 0x232A: {alias: 0x27E9, dir: V}, + 0x23AA: EXTRAV, + 0x23AF: + { + dir: H, + HW: [[315,SYMBOLS]], + stretch: {rep:[0x23AF,SYMBOLS]} + }, + 0x23B0: + { + dir: V, + HW: [[1000,SIZE5,null,0xE03A]], + stretch: {top:[0xE00F,SIZE5], ext:[0xE00D,SIZE5], bot:[0xE010,SIZE5]} + }, + 0x23B1: + { + dir: V, + HW: [[1000,SIZE5,null,0xE03B]], + stretch: {top:[0xE012,SIZE5], ext:[0xE00D,SIZE5], bot:[0xE00C,SIZE5]} + }, + 0x23B4: EXTRAH, + 0x23B5: EXTRAH, + 0x23D0: EXTRAV, + 0x23DC: EXTRAH, + 0x23DD: EXTRAH, + 0x23DE: + { + dir: H, + HW: [[1000,MAIN], [925,SIZE1], [1460,SIZE2], [1886,SIZE3], [2328,SIZE4], [3238,SIZE5]], + stretch: {left:[0xE031,SIZE5], rep:[0xE028,SIZE5], mid:[0xE032,SIZE5], right:[0xE033,SIZE5]} + }, + 0x23DF: + { + dir: H, + HW: [[1000,MAIN], [925,SIZE1], [1460,SIZE2], [1886,SIZE3], [2328,SIZE4], [3238,SIZE5]], + stretch: {left:[0xE034,SIZE5], rep:[0xE02B,SIZE5], mid:[0xE035,SIZE5], right:[0xE036,SIZE5]} + }, + 0x23E0: EXTRAH, + 0x23E1: EXTRAH, + 0x2500: {alias: 0x2212, dir: H}, + 0x2758: {alias: 0x2223, dir: V}, + 0x2772: EXTRAV, + 0x2773: EXTRAV, + 0x27E6: EXTRAV, + 0x27E7: EXTRAV, + 0x27E8: + { + dir: V, + HW: [[926,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]] + }, + 0x27E9: + { + dir: V, + HW: [[926,MAIN], [1230,SIZE1], [1350,SIZE1,1.098], [1845,SIZE2], [2460,SIZE3], [3075,SIZE4]] + }, + 0x27EA: EXTRAV, + 0x27EB: EXTRAV, + 0x27EE: + { + dir: V, + HW: [[853,MAIN]], + stretch: {bot:[0xE000,SIZE5], ext:[0xE001,SIZE5], top:[0xE002,SIZE5]} + }, + 0x27EF: + { + dir: V, + HW: [[853,MAIN]], + stretch: {bot:[0xE003,SIZE5], ext:[0xE004,SIZE5], top:[0xE005,SIZE5]} + }, + 0x27F0: EXTRAV, + 0x27F1: EXTRAV, + 0x27F5: {alias: 0x2190, dir: H}, + 0x27F6: {alias: 0x2192, dir: H}, + 0x27F7: {alias: 0x2194, dir: H}, + 0x27F8: {alias: 0x21D0, dir: H}, + 0x27F9: {alias: 0x21D2, dir: H}, + 0x27FA: {alias: 0x21D4, dir: H}, + 0x27FB: {alias: 0x21A4, dir: H}, + 0x27FC: {alias: 0x21A6, dir: H}, + 0x27FD: {alias: 0x2906, dir: H}, + 0x27FE: {alias: 0x2907, dir: H}, + 0x2906: EXTRAH, + 0x2907: EXTRAH, + 0x290A: EXTRAV, + 0x290B: EXTRAV, + 0x2912: EXTRAV, + 0x2913: EXTRAV, + 0x294E: EXTRAH, + 0x294F: EXTRAV, + 0x2950: EXTRAH, + 0x2951: EXTRAV, + 0x2952: EXTRAH, + 0x2953: EXTRAH, + 0x2954: EXTRAV, + 0x2955: EXTRAV, + 0x2956: EXTRAH, + 0x2957: EXTRAH, + 0x2958: EXTRAV, + 0x2959: EXTRAV, + 0x295A: EXTRAH, + 0x295B: EXTRAH, + 0x295C: EXTRAV, + 0x295D: EXTRAV, + 0x295E: EXTRAH, + 0x295F: EXTRAH, + 0x2960: EXTRAV, + 0x2961: EXTRAV, + 0x2980: EXTRAV, + 0x2983: EXTRAV, + 0x2984: EXTRAV, + 0x2985: EXTRAV, + 0x2986: EXTRAV, + 0x2997: EXTRAV, + 0x2998: EXTRAV, + 0x29F8: + { + dir: V, + HW: [[1020,MAIN], [1845,SIZE1]] + }, + 0x29F9: + { + dir: V, + HW: [[1020,MAIN], [1845,SIZE1]] + }, + 0x2A00: EXTRAV, + 0x2A01: EXTRAV, + 0x2A02: EXTRAV, + 0x2A03: EXTRAV, + 0x2A04: EXTRAV, + 0x2A05: EXTRAV, + 0x2A06: EXTRAV, + 0x2A07: EXTRAV, + 0x2A08: EXTRAV, + 0x2A09: EXTRAV, + 0x2A0A: EXTRAV, + 0x2A0B: EXTRAV, + 0x2A0C: EXTRAV, + 0x2A0D: EXTRAV, + 0x2A0E: EXTRAV, + 0x2A0F: EXTRAV, + 0x2A10: EXTRAV, + 0x2A11: EXTRAV, + 0x2A12: EXTRAV, + 0x2A13: EXTRAV, + 0x2A14: EXTRAV, + 0x2A15: EXTRAV, + 0x2A16: EXTRAV, + 0x2A17: EXTRAV, + 0x2A18: EXTRAV, + 0x2A19: EXTRAV, + 0x2A1A: EXTRAV, + 0x2A1B: EXTRAV, + 0x2A1C: EXTRAV, + 0x2AFC: EXTRAV, + 0x2AFF: EXTRAV, + 0x2B45: EXTRAH, + 0x2B46: + { + dir: H, + HW: [[818,SHAPES]], + stretch: {rep:[0xE039,SIZE5], right:[0x2B46,SHAPES]} + }, + 0x3008: {alias: 0x27E8, dir: V}, + 0x3009: {alias: 0x27E9, dir: V}, + 0xFE37: {alias: 0x23DE, dir: H}, + 0xFE38: {alias: 0x23DF, dir: H} + } + + } + }); + MathJax.Hub.Register.LoadHook(SVG.fontDir+"/Main/Regular/Main.js",function () { + SVG.FONTDATA.FONTS[MAIN][0x22EE][0] += 400; // adjust height for \vdots + SVG.FONTDATA.FONTS[MAIN][0x22F1][0] += 500; // adjust height for \ddots + SVG.FONTDATA.FONTS[MAIN][0x2212][1] += 100; // adjust depth for minus (arrow extender) + SVG.FONTDATA.FONTS[MAIN][0x003D][1] += 100; // adjust depth for = (double arrow extender) + }); + MathJax.Hub.Register.LoadHook(SVG.fontDir+"/Size5/Regular/Main.js",function () { + var u; + u = SVG.FONTDATA.DELIMITERS[0x23DE].stretch.rep[0]; + SVG.FONTDATA.FONTS[SIZE5][u][0] += 200; // adjust height for brace extender + SVG.FONTDATA.FONTS[SIZE5][u][1] += 200; // adjust depth for brace extender + u = SVG.FONTDATA.DELIMITERS[0x23DF].stretch.rep[0]; + SVG.FONTDATA.FONTS[SIZE5][u][0] += 200; // adjust height for brace extender + SVG.FONTDATA.FONTS[SIZE5][u][1] += 200; // adjust depth for brace extender + }); + + AJAX.loadComplete(SVG.fontDir + "/fontdata.js"); + +})(MathJax.OutputJax.SVG,MathJax.ElementJax.mml,MathJax.Ajax,MathJax.Hub); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js new file mode 100644 index 0000000..ef4adee --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js @@ -0,0 +1,140 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/Arrows.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // LEFTWARDS ARROW + 0x2190: [437,-64,500,64,423,'292 419Q292 400 261 347T211 275H306Q319 275 338 275T364 276Q399 276 410 271T422 250T411 230T366 225H306H211Q214 222 232 197T271 136T292 82Q292 71 285 68T262 64H250H241Q221 64 216 67T205 83Q186 127 153 167T78 230Q64 238 64 250Q64 258 69 263T82 272T106 288T139 318Q162 342 177 365T198 402T209 425T223 436Q224 437 252 437H258Q292 437 292 419'], + + // RIGHTWARDS ARROW + 0x2192: [437,-64,500,58,417,'188 417Q188 437 221 437H233Q256 437 263 434T275 417Q294 373 327 333T402 270Q417 261 417 250Q417 241 410 236T382 217T341 182Q315 155 299 128T275 85T263 66Q259 64 231 64H219Q197 64 191 72T193 100Q202 124 215 147T239 185T257 210T267 223L269 225H174H116Q80 225 69 229T58 250T70 271T114 276Q121 276 140 276T174 275H269L267 277Q266 280 257 291T233 325T205 374Q188 408 188 417'], + + // LEFTWARDS ARROW WITH STROKE + 0x219A: [437,-60,1000,56,942,'942 250Q942 244 928 230H511L457 148Q440 124 420 93Q404 68 400 64T389 60Q381 60 375 66T368 81Q368 88 415 159L462 230H175L188 214Q210 188 235 145T264 85Q264 75 260 74T231 72L206 74L191 103Q169 142 164 150Q130 195 64 239Q56 244 56 250T64 261Q115 294 142 323T191 397L206 428H231Q255 428 259 426T264 414Q260 397 235 355T188 288L175 272L331 270Q488 270 491 272Q491 275 542 352T597 432Q602 437 609 437Q617 437 622 432T628 417T582 341L537 272L735 270H931Q942 257 942 250'], + + // RIGHTWARDS ARROW WITH STROKE + 0x219B: [437,-60,1000,54,942,'54 250Q54 258 66 270H277L488 272L542 350Q596 431 602 435Q604 437 609 437Q617 437 622 432T628 417T582 341L537 272L608 270H751L822 272L808 288Q786 313 761 355T733 414Q733 424 737 426T766 428H793L806 397Q829 354 864 314Q896 284 928 263Q942 257 942 250T928 237Q887 208 864 185Q829 147 806 103L793 74L766 72Q742 72 738 73T733 85Q735 102 756 137T797 198L817 225L822 230H511L457 148Q440 124 420 93Q404 68 400 64T389 60Q381 60 375 66T368 81Q368 88 415 159L462 230H264L66 232Q54 239 54 250'], + + // LEFTWARDS TWO HEADED ARROW + 0x219E: [417,-83,1000,56,944,'56 250Q103 277 142 322T199 417H221Q244 417 244 416Q244 414 237 397T208 344T158 278L151 270H276L285 277Q322 306 349 345T388 417H434Q434 413 424 392T393 338T349 279L340 270H634Q933 270 937 266L938 265Q944 259 944 250T938 235L937 234Q933 230 634 230H340L349 221Q372 196 393 163T424 108T434 83H388Q377 116 350 155T285 223L276 230H151L158 222Q186 191 207 156T236 104T244 84Q244 83 221 83H199Q181 133 142 178T56 250'], + + // RIGHTWARDS TWO HEADED ARROW + 0x21A0: [417,-83,1000,55,943,'943 250Q895 221 856 177T801 83H778Q755 83 755 84Q755 86 762 103T791 156T841 222L848 230H723L714 223Q677 194 650 155T611 83H565Q565 87 575 108T606 162T650 221L659 230H365Q66 230 62 234L61 235Q55 241 55 250T61 265L62 266Q66 270 365 270H659L650 279Q627 304 606 337T575 392T565 417H611Q622 384 649 345T714 277L723 270H848L841 278Q813 309 792 344T763 396T755 416Q755 417 778 417H801Q817 367 856 323T943 250'], + + // LEFTWARDS ARROW WITH TAIL + 0x21A2: [417,-83,1111,56,1031,'56 250Q103 277 142 322T199 417H221Q244 417 244 416Q244 414 237 397T208 344T158 278L151 270H873L882 277Q919 306 946 345T985 417H1031Q1031 413 1021 392T990 338T946 279L937 270V230L946 221Q969 196 990 163T1021 108T1031 83H985Q974 116 947 155T882 223L873 230H151L158 222Q186 191 207 156T236 104T244 84Q244 83 221 83H199Q181 133 142 178T56 250'], + + // RIGHTWARDS ARROW WITH TAIL + 0x21A3: [417,-83,1111,79,1054,'1054 250Q1006 221 967 177T912 83H889Q866 83 866 84Q866 86 873 103T902 156T952 222L959 230H237L228 223Q191 194 164 155T125 83H79Q79 87 89 108T120 162T164 221L173 230V270L164 279Q141 304 120 337T89 392T79 417H125Q136 384 163 345T228 277L237 270H959L952 278Q924 309 903 344T874 396T866 416Q866 417 889 417H912Q928 367 967 323T1054 250'], + + // LEFTWARDS ARROW WITH LOOP + 0x21AB: [576,41,1000,56,965,'56 250Q103 277 142 322T199 417H221Q244 417 244 416Q244 414 237 397T208 344T158 278L151 270H622V305Q622 356 624 388T635 460T661 521T709 559T785 575Q813 575 833 573T880 561T923 534T952 483T964 405Q964 374 959 350T942 307T918 276T884 255T847 242T804 235T760 231T713 230H662V-27Q654 -41 644 -41H642H640Q628 -41 622 -27V230H151L158 222Q186 191 207 156T236 104T244 84Q244 83 221 83H199Q181 133 142 178T56 250ZM924 403Q924 474 894 505T794 536Q758 536 734 526T696 500T675 453T665 395T662 319V270H699Q826 270 875 295T924 403'], + + // RIGHTWARDS ARROW WITH LOOP + 0x21AC: [575,41,1000,35,943,'35 405Q35 454 48 489T86 542T137 567T195 575Q229 575 251 571T301 554T345 510T370 429Q377 384 377 305V270H848L841 278Q813 309 792 344T763 396T755 416Q755 417 778 417H801Q817 367 856 323T943 250Q896 221 857 177T801 83H778Q755 83 755 84Q755 86 762 103T791 156T841 222L848 230H377V-27Q369 -41 359 -41H357Q342 -41 337 -25V230H286Q247 231 225 232T169 238T115 255T75 284T45 333T35 405ZM75 406Q75 322 123 296T300 270H337V319Q335 432 317 477T240 534Q232 535 197 535Q140 535 108 507T75 406'], + + // LEFT RIGHT WAVE ARROW + 0x21AD: [417,-83,1389,57,1331,'57 250Q159 311 200 417H246L242 407Q215 340 159 278L152 270H276L315 310Q354 349 358 351Q366 356 376 351Q378 350 455 273L530 196L606 273Q683 350 686 351Q694 354 703 351Q705 350 782 273L858 196L933 273Q1010 350 1012 351Q1022 356 1030 351Q1034 349 1073 310L1112 270H1236L1229 278Q1173 340 1146 407L1142 417H1188Q1233 306 1331 250Q1231 192 1188 83H1142L1146 93Q1173 160 1229 222L1236 230H1168Q1155 230 1139 230T1119 229Q1112 229 1108 229T1099 231T1092 233T1085 238T1078 245T1068 256T1056 269L1021 304L984 267Q948 230 910 191T867 149Q857 144 848 150Q844 151 770 227T694 304T618 228T540 150Q531 144 521 149Q517 152 479 191T404 267L367 304L332 269Q328 264 320 256T310 246T303 239T296 234T289 231T280 229T269 229Q265 229 249 229T220 230H152L159 222Q215 160 242 93L246 83H223L200 84L195 96Q152 190 57 250'], + + // LEFT RIGHT ARROW WITH STROKE + 0x21AE: [437,-60,1000,56,942,'491 272Q491 275 542 352T597 432Q602 437 609 437Q617 437 622 432T628 417T582 341L537 272L608 270H751L822 272L808 288Q786 313 761 355T733 414Q733 424 737 426T766 428H793L806 397Q829 354 864 314Q896 284 928 263Q942 257 942 250T928 237Q887 208 864 185Q829 147 806 103L793 74L766 72Q742 72 738 73T733 85Q735 102 756 137T797 198L817 225L822 230H511L457 148Q440 124 420 93Q404 68 400 64T389 60Q381 60 375 66T368 81Q368 88 415 159L462 230H175L188 214Q210 188 235 145T264 85Q264 75 260 74T231 72L206 74L191 103Q169 142 164 150Q130 195 64 239Q56 244 56 250T64 261Q115 294 142 323T191 397L206 428H231Q255 428 259 426T264 414Q260 397 235 355T188 288L175 272L331 270Q488 270 491 272'], + + // UPWARDS ARROW WITH TIP LEFTWARDS + 0x21B0: [722,0,500,56,444,'56 555Q74 567 79 570T107 592T141 625T170 667T198 722H221Q244 722 244 721Q244 718 236 699T207 647T161 587L151 576L291 575H292H293H294H296H297H298H299H300H301H302H304H305H306H307H308H309H310H311H312H314H315H316H317H318H319H320H321H322H323H324H325H327H328H329H330H331H332H333H334H335H336H337H338H339H340H341H342H343H345Q435 574 438 570L439 569L440 568Q444 564 444 287Q444 15 442 12Q436 0 424 0T406 12Q404 15 404 275V535H151L162 523Q187 495 207 462T236 410T244 389H198L193 402Q171 457 131 497T56 555'], + + // UPWARDS ARROW WITH TIP RIGHTWARDS + 0x21B1: [722,0,500,55,443,'301 722Q339 618 443 555L437 551Q431 547 422 541T401 526T377 504T352 477T327 443T306 402L301 389H255Q255 392 263 410T291 461T337 523L348 535H95V275Q95 15 93 12Q87 0 75 0T57 12Q55 15 55 287Q55 564 59 568L60 569Q64 573 76 573T208 575L348 576L338 587Q314 613 294 646T264 698T255 721Q255 722 278 722H301'], + + // ANTICLOCKWISE TOP SEMICIRCLE ARROW + 0x21B6: [461,1,1000,17,950,'361 210Q373 210 373 182V177Q373 155 370 151T348 139Q303 118 267 84T216 28T201 1Q197 -1 196 -1Q189 -1 184 8Q166 39 143 64T99 104T61 129T32 144T19 150Q17 152 17 179Q17 203 21 208Q28 210 39 206Q106 178 157 135L175 119V126Q179 130 179 155Q182 173 193 201Q228 305 312 374T510 459Q532 461 551 461H567Q678 461 784 386Q835 344 861 301Q902 245 926 173T950 32Q950 15 944 8Q930 -6 917 8Q910 12 910 43Q901 208 801 314T561 421Q453 421 359 359Q300 319 263 258T217 126L216 125Q216 124 216 123T217 122Q219 122 229 131T260 156T301 181Q314 189 336 199T361 210'], + + // CLOCKWISE TOP SEMICIRCLE ARROW + 0x21B7: [460,1,1000,46,982,'972 209Q980 209 981 204T982 179Q982 155 979 151T957 139Q915 121 878 86T815 8Q808 -1 803 -1Q801 -1 797 1Q797 6 783 28T732 84T650 139L628 150Q626 152 626 177Q626 201 630 206Q636 210 637 210Q650 210 697 181Q727 166 764 137L784 119L782 132Q767 239 689 318T499 417Q474 421 442 421Q343 421 261 369T130 219Q86 121 86 28Q86 15 79 8Q73 1 66 1T53 8Q46 15 46 30Q46 102 77 192T186 361Q274 443 386 459Q396 460 426 460Q515 460 588 431T703 361T773 271T812 187T822 132Q822 123 825 123Q936 209 972 209'], + + // ANTICLOCKWISE OPEN CIRCLE ARROW + 0x21BA: [650,83,778,56,722,'369 543T369 563T397 583Q408 583 440 579L454 577L464 581Q492 592 516 609T552 638T565 650Q604 638 607 637Q606 636 598 628T585 614T570 601T548 584T523 568L510 560L516 558Q522 555 527 553T541 546T559 536T580 523T603 506T626 485Q722 384 722 250Q722 106 622 12T387 -83Q253 -83 155 12T56 250Q56 357 110 433T235 545Q244 550 252 550Q270 550 270 531Q270 522 261 515T238 501T202 477T159 433Q95 352 95 250Q95 131 178 45T388 -42Q511 -42 596 43T682 250Q682 340 636 408T522 511Q495 526 488 526Q488 525 488 525T487 522T485 515L490 506Q505 481 516 451T531 404T535 384L532 385Q529 386 524 387T513 390L491 397L488 408Q472 483 413 542L399 543Q369 543 369 563'], + + // CLOCKWISE OPEN CIRCLE ARROW + 0x21BB: [650,83,778,56,721,'170 637L213 650Q270 597 313 581L323 577L337 579Q369 583 380 583Q408 583 408 563T380 543H378L364 542Q305 483 289 408L286 397L264 390Q259 389 254 388T245 385L242 384Q242 387 246 403T261 450T287 506L292 515Q291 519 291 521T290 524T289 526Q284 526 265 517T216 486T160 434T114 354T95 249Q95 132 178 45T388 -42Q513 -42 597 44T682 250Q682 337 638 404T532 506Q529 508 525 510T519 514T515 516T511 519T509 522T508 526T507 531Q507 550 525 550Q533 550 542 545Q569 532 596 511T653 454T702 366T721 250Q721 151 672 74T547 -43T388 -83Q254 -83 155 12T56 250Q56 385 151 485Q164 498 179 509T205 528T228 542T247 551T260 558L267 560L254 568Q215 590 170 637'], + + // UPWARDS HARPOON WITH BARB RIGHTWARDS + 0x21BE: [694,194,417,188,375,'188 258V694H208L215 682Q246 628 293 594T375 551V528Q375 505 374 505Q369 505 351 510T299 534T237 578L228 587V205Q228 -178 226 -182Q221 -194 208 -194T190 -182Q188 -178 188 258'], + + // UPWARDS HARPOON WITH BARB LEFTWARDS + 0x21BF: [694,194,417,41,228,'41 551Q76 559 123 592T201 682L208 694H228V258Q228 -178 226 -182Q221 -194 208 -194T190 -182Q188 -178 188 205V587L179 578Q151 552 117 534T65 511T42 505Q41 505 41 528V551'], + + // DOWNWARDS HARPOON WITH BARB RIGHTWARDS + 0x21C2: [694,194,417,188,375,'190 682Q195 694 208 694T226 683Q228 679 228 296V-87L237 -78Q265 -52 299 -34T351 -11T374 -5Q375 -5 375 -28V-51Q340 -60 293 -92T215 -182L208 -194H188V242Q188 678 190 682'], + + // DOWNWARDS HARPOON WITH BARB LEFTWARDS + 0x21C3: [694,194,417,41,228,'188 295V573Q188 657 189 672T200 692Q206 694 208 694Q221 694 226 683Q228 679 228 242V-194H208L201 -182Q170 -128 123 -94T41 -51V-28Q41 -5 42 -5Q47 -5 65 -10T117 -34T179 -78L188 -87V295'], + + // RIGHTWARDS ARROW OVER LEFTWARDS ARROW + 0x21C4: [667,0,1000,55,944,'943 500Q895 471 856 427T801 333H778Q755 333 755 334Q755 336 762 353T791 406T841 472L848 480H459Q70 480 67 482Q55 488 55 500T67 518Q70 520 459 520H848L841 528Q813 559 792 594T763 646T755 666Q755 667 778 667H801Q817 617 856 573T943 500ZM56 167Q102 194 141 238T198 333H221Q244 333 244 332Q221 265 161 198L151 187H539Q928 187 930 186Q944 182 944 167Q944 155 934 149Q930 147 541 147H151L160 137Q185 110 205 77T235 24T244 1Q244 0 221 0H199Q158 106 56 167'], + + // LEFTWARDS ARROW OVER RIGHTWARDS ARROW + 0x21C6: [667,0,1000,55,944,'56 500Q103 527 142 572T199 667H221Q244 667 244 666Q244 664 237 647T208 594T158 528L151 520H539Q928 520 932 518Q944 513 944 500T932 482Q928 480 539 480H151L158 472Q186 441 207 406T236 354T244 334Q244 333 221 333H199Q181 383 142 428T56 500ZM943 167Q835 101 801 0H778Q755 0 755 1T758 9T765 25T771 39Q800 94 839 137L848 147H458Q68 147 66 149Q55 154 55 167Q55 182 69 186Q71 187 460 187H848L838 198Q811 228 791 261T762 314L755 332Q755 333 778 333H801Q841 227 943 167'], + + // LEFTWARDS PAIRED ARROWS + 0x21C7: [583,83,1000,55,944,'930 437Q944 426 944 416T934 399Q930 397 540 397H150L159 387Q185 360 205 328T234 277T243 252Q243 237 217 191T159 113L150 103H540Q930 103 934 101Q944 94 944 84Q944 71 930 64L540 63H151Q180 34 203 -2T236 -61L244 -83H198Q178 -31 142 11T66 77L55 83L65 89Q157 145 197 246Q199 250 190 269Q150 359 65 411L55 417L66 423Q106 447 142 489T198 583H244Q202 488 151 437H930'], + + // UPWARDS PAIRED ARROWS + 0x21C8: [694,193,833,83,749,'83 551Q190 590 250 694Q251 689 263 671T307 621T380 567Q409 551 416 551Q422 551 447 563T511 608T577 684L582 694Q642 591 749 551V528Q749 505 748 505Q745 505 724 515T669 546T612 590L602 599V-181Q595 -193 585 -193H582H581Q568 -193 565 -183L563 -179L562 209V598L552 589Q517 556 473 531T414 506H412Q411 506 393 514T361 530T324 553T280 589L270 598V-179Q255 -192 250 -193H247Q237 -193 230 -181V599L220 590Q197 567 164 546T110 515T84 505Q83 505 83 528V551'], + + // RIGHTWARDS PAIRED ARROWS + 0x21C9: [583,83,1000,55,944,'55 416Q55 427 70 437H848Q819 466 796 502T764 561L755 583H801Q821 531 857 489T933 423L944 417L934 411Q843 355 802 254Q800 250 809 231Q849 141 934 89L944 83L933 77Q893 53 857 11T801 -83H755Q797 12 848 63H459L70 64Q55 70 55 84Q55 94 65 101Q69 103 459 103H849L840 113Q806 148 779 196T756 254Q756 255 760 264T770 286T786 315T809 351T840 387L849 397H459Q69 397 65 399Q55 406 55 416'], + + // DOWNWARDS PAIRED ARROWS + 0x21CA: [694,194,833,83,749,'230 681Q240 694 251 694Q260 693 270 680V-98L280 -89Q297 -73 314 -60T348 -38T374 -24T397 -13T412 -6H414Q428 -6 473 -32T552 -89L562 -98V291L563 680Q570 693 582 693Q593 694 602 681V-99L612 -90Q635 -68 668 -47T723 -15T748 -5Q749 -5 749 -28V-51Q642 -91 582 -194L577 -184Q551 -141 512 -108T447 -63T416 -51T385 -63T321 -108T255 -184L250 -194Q189 -89 83 -51V-28Q83 -5 84 -5Q88 -5 109 -15T164 -46T220 -90L230 -99V681'], + + // LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON + 0x21CB: [514,14,1000,55,944,'195 504L198 514H221Q244 514 244 512Q244 508 239 490T215 437T171 376L162 367H545Q928 367 932 365Q944 360 944 347T932 329Q928 327 492 327H55V347L67 354Q113 379 146 420T195 504ZM67 171Q70 173 507 173H944V153L932 146Q839 95 804 -4L801 -14H778Q755 -14 755 -12Q768 59 828 124L837 133H454Q71 133 67 135Q55 140 55 153Q55 165 67 171'], + + // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21CC: [514,14,1000,55,944,'755 512Q755 514 778 514H801L804 503Q805 501 812 486T824 462T839 437T862 408T892 381T932 354L944 347V327H507Q70 327 67 329Q55 335 55 347T67 365Q70 367 454 367H837L828 376Q803 403 785 437T761 489T755 512ZM55 153V173H492Q928 173 932 171Q944 166 944 153T932 135Q928 133 545 133H162L171 124Q198 95 216 61T239 8L244 -12Q244 -14 221 -14H198L195 -4Q160 95 67 146L55 153'], + + // LEFTWARDS DOUBLE ARROW WITH STROKE + 0x21CD: [535,35,1000,54,942,'397 525Q410 525 414 524T418 516Q418 506 394 467T331 381L319 367H473L624 369L657 445Q674 487 684 507T699 531T709 534Q717 534 722 528T728 516Q728 510 695 434Q689 418 683 402T672 377T668 367H928Q942 355 942 347Q942 341 928 327H791Q651 327 651 325Q649 324 620 251T586 174Q586 172 757 172H928Q942 158 942 152Q942 143 928 132H568L537 54Q510 -9 503 -22T486 -35Q479 -35 473 -29T466 -17T495 61L526 132H319L331 118Q364 81 391 37T418 -17Q418 -23 415 -24T401 -26Q398 -26 397 -26L384 -24L377 -13Q344 49 301 97T218 170T143 210T84 233T55 245Q54 253 59 256T86 267Q281 327 377 512L384 525H397ZM606 325Q606 327 439 327H275Q258 312 179 265L148 249Q228 206 262 181L275 172H544L575 247L606 325'], + + // LEFT RIGHT DOUBLE ARROW WITH STROKE + 0x21CE: [534,37,1000,32,965,'395 -24T395 -19T417 57T440 132H255L266 116Q308 64 340 -6Q342 -17 337 -21Q335 -26 320 -26T302 -19Q302 -15 294 4T265 54T217 117T145 182T49 236Q30 243 33 254Q40 261 49 263Q98 283 142 315T214 379T263 442T293 493T302 519Q305 525 320 525T337 521Q342 516 340 505Q308 435 266 383L255 370L384 367H515Q561 522 569 530Q574 534 580 534Q587 534 594 528T602 516Q602 512 580 441T557 367H651L742 370L731 383Q689 435 657 505Q655 516 660 521Q662 525 677 525T695 519Q695 515 703 496T732 446T780 383T853 317T949 263Q967 258 964 245Q959 240 949 236Q897 215 852 182T779 116T731 52T703 3T695 -19Q692 -26 677 -26T660 -21Q655 -17 657 -6Q670 21 682 42T702 77T717 99T728 114T735 122T739 126T740 130T613 132H482L460 54Q440 -9 433 -23T415 -37Q408 -37 402 -31ZM502 325Q502 327 360 327H217L195 310Q173 291 120 256L111 250Q114 248 143 229T195 190L217 172H335L453 174L502 325ZM886 250Q885 251 865 263T831 286T802 310L780 327H544L535 299Q531 283 511 223L495 174L637 172H780L802 190Q843 225 877 243L886 250'], + + // RIGHTWARDS DOUBLE ARROW WITH STROKE + 0x21CF: [534,36,1000,55,943,'346 174Q348 176 378 249T411 325Q411 327 239 327H68Q55 342 55 347Q55 354 68 367H428L459 445Q487 509 494 521T510 534Q517 534 524 527T531 516Q531 515 502 438L471 367H677L666 381Q631 421 605 463T578 516Q578 522 582 523T599 525H615L619 512Q659 437 714 383T812 309T896 272T942 254Q943 246 938 243T911 232Q718 172 619 -13L615 -24L599 -26Q578 -26 578 -17Q578 -11 587 6T617 53T666 118L677 132H373L339 54Q323 12 313 -8T298 -32T288 -35Q280 -35 275 -29T269 -17Q269 -14 298 57T328 132H68Q55 145 55 152Q55 156 56 158T62 165T68 172H206Q346 172 346 174ZM848 249Q763 297 735 318L722 327H455L422 252L391 174Q391 172 557 172H722L735 181Q773 210 819 234L848 249'], + + // LEFTWARDS TRIPLE ARROW + 0x21DA: [611,111,1000,76,945,'944 54Q942 44 929 36H372Q372 34 377 26T395 -4T422 -58Q442 -109 442 -110T408 -111H374L370 -100Q282 124 87 243L76 250L87 257Q284 377 370 600L374 611H408Q442 611 442 610Q423 550 381 480Q380 478 379 475T376 471T374 468T372 465V464H929Q942 456 944 446Q944 442 943 439T941 434T938 430T935 428T931 426T928 424H344L336 414Q277 336 200 277L191 270H560Q929 270 933 268Q944 262 944 250Q944 237 933 232Q929 230 560 230H191L200 223Q279 162 336 86L344 76H928Q929 76 931 75T934 73T938 70T941 66T943 61T944 54'], + + // RIGHTWARDS TRIPLE ARROW + 0x21DB: [611,111,1000,55,923,'56 250Q56 260 68 270H808L799 277Q720 338 663 414L655 424H363Q71 424 68 426Q55 432 55 444T68 462Q71 464 349 464H627Q627 466 622 474T604 504T577 558Q557 609 557 610T591 611H626L629 600Q717 376 912 257L923 250L912 243Q715 123 629 -100L626 -111H591Q557 -111 557 -110Q576 -50 618 20Q619 22 620 25T623 29T625 32T626 35L627 36H349Q71 36 68 38Q55 44 55 56T68 74Q71 76 363 76H655L663 86Q722 164 799 223L808 230H438L68 231Q56 236 56 250'], + + // RIGHTWARDS SQUIGGLE ARROW + 0x21DD: [417,-83,1000,56,943,'76 230Q68 230 62 237T56 250Q56 257 63 264T91 291Q102 300 108 306L159 351Q168 356 177 351L218 316L303 239L353 195Q376 214 403 239L488 316L529 351Q538 356 546 351Q548 350 594 310L638 270H848L841 278Q813 309 792 344T763 396T755 416Q755 417 778 417H801Q817 367 856 323T943 250Q895 221 856 177T801 83H778Q755 83 755 84Q755 86 762 103T791 156T841 222L848 230H737Q625 230 622 232Q620 233 599 251T558 288L537 306Q537 305 451 228T362 149Q353 146 345 149Q341 150 255 227T169 306Q167 306 129 270Q123 265 115 257T102 245T93 237T84 232T76 230'], + + // LEFTWARDS DASHED ARROW + 0x21E0: [437,-64,1334,64,1251,'292 419Q292 400 261 347T211 275H306H364Q400 275 411 271T422 250T411 230T366 225H306H211Q214 222 232 197T271 136T292 82Q292 71 285 68T262 64H250H241Q221 64 216 67T205 83Q186 127 153 167T78 230Q64 238 64 250Q64 258 69 263T82 272T106 288T139 318Q162 342 177 365T198 402T209 425T223 436Q224 437 252 437H258Q292 437 292 419ZM501 237T501 250T515 270H819Q834 262 834 250T819 230H515Q501 237 501 250ZM918 237T918 250T932 270H1236Q1251 262 1251 250T1236 230H932Q918 237 918 250'], + + // RIGHTWARDS DASHED ARROW + 0x21E2: [437,-64,1334,84,1251,'84 237T84 250T98 270H402Q417 262 417 250T402 230H98Q84 237 84 250ZM501 237T501 250T515 270H819Q834 262 834 250T819 230H515Q501 237 501 250ZM1022 417Q1022 437 1055 437H1067Q1090 437 1097 434T1109 417Q1128 373 1161 333T1236 270Q1251 261 1251 250Q1251 241 1244 236T1216 217T1175 182Q1149 155 1133 128T1109 85T1097 66Q1093 64 1065 64H1053Q1031 64 1025 72T1027 100Q1036 124 1049 147T1073 185T1091 210T1101 223L1103 225H1008H950Q914 225 903 229T892 250T903 270T948 275H1008H1103L1101 277Q1100 280 1091 291T1067 325T1039 374Q1022 408 1022 417'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/Arrows.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js new file mode 100644 index 0000000..bf48bb2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/BoxDrawing.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // BOX DRAWINGS LIGHT DOWN AND RIGHT + 0x250C: [694,-306,500,55,444,'76 306Q62 306 59 319T55 386V500V596Q55 664 57 676T68 692Q71 694 250 694Q428 694 432 692Q444 685 444 674Q444 665 432 656Q428 654 261 654H95V487Q95 355 95 336T90 312Q84 306 76 306'], + + // BOX DRAWINGS LIGHT DOWN AND LEFT + 0x2510: [694,-306,500,55,445,'424 306Q418 306 413 310T406 318L404 321V654H238Q71 654 68 656Q55 662 55 674T68 692Q71 694 250 694H379Q432 694 438 688Q443 683 443 662T444 500T444 338T438 312Q432 306 424 306'], + + // BOX DRAWINGS LIGHT UP AND RIGHT + 0x2514: [366,22,500,55,444,'55 172V287Q55 341 58 353T76 366Q88 366 95 351V18H261Q428 18 432 16Q444 9 444 -2Q444 -11 432 -20Q428 -22 250 -22H120Q67 -22 61 -16Q56 -11 56 10T55 172'], + + // BOX DRAWINGS LIGHT UP AND LEFT + 0x2518: [366,22,500,55,444,'404 351Q410 366 424 366Q437 366 440 353T444 288V172V72Q444 8 443 -4T432 -20Q428 -22 250 -22Q71 -22 68 -20Q55 -14 55 -2T68 16Q71 18 238 18H404V351'], + + // BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT + 0x2571: [694,195,889,0,860,'19 -195Q13 -195 7 -188T0 -176Q0 -169 18 -151L822 683Q835 694 840 694T852 688T860 674Q860 667 810 614T460 252Q57 -167 44 -179Q27 -195 19 -195'], + + // BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT + 0x2572: [694,195,889,0,860,'0 675Q0 681 6 687T19 694Q27 694 44 678L460 247Q759 -62 809 -115T860 -175Q860 -183 852 -189T840 -195Q835 -195 822 -184L18 649Q0 667 0 675'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/BoxDrawing.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js new file mode 100644 index 0000000..0f43285 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/CombDiacritMarks.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // COMBINING CIRCUMFLEX ACCENT + 0x302: [845,-561,0,-2347,13,'-2332 561Q-2336 563 -2340 577T-2346 604L-2347 618Q-2347 625 -2340 628T-2310 635Q-2302 636 -2297 637Q-2270 641 -1712 745Q-1185 845 -1168 845Q-1166 845 -581 739L5 630Q13 630 13 618Q7 565 -1 561Q-4 561 -584 654Q-716 675 -867 699T-1092 736T-1166 748Q-1168 748 -1240 737T-1466 700T-1750 654Q-2330 561 -2332 561'], + + // COMBINING TILDE + 0x303: [899,-628,0,-2332,-3,'-1529 788Q-1616 788 -1727 772T-1936 732T-2120 685T-2258 645T-2315 628Q-2322 628 -2322 632Q-2325 637 -2329 668T-2331 704Q-2331 713 -2297 732Q-2278 739 -2091 795Q-1711 898 -1507 898Q-1440 898 -1386 895Q-1324 887 -1277 872T-1146 819Q-1047 776 -977 758T-806 739Q-719 739 -608 755T-399 795T-215 842T-77 882T-20 899Q-13 899 -13 895Q-10 890 -6 860T-4 824Q-4 818 -37 795Q-60 787 -244 732Q-523 657 -735 632Q-771 629 -841 629Q-944 629 -1013 644T-1189 708Q-1285 751 -1356 769T-1529 788'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js new file mode 100644 index 0000000..0c7f925 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/Dingbats.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // CHECK MARK + 0x2713: [706,34,833,84,749,'84 231Q84 244 114 264T170 285Q176 285 183 274T224 205Q267 129 268 129Q271 141 279 163T318 250T389 378T502 523T662 673Q702 706 732 706H734Q749 706 749 695Q749 682 730 666T660 607T559 505Q387 299 328 29Q324 0 295 -17T245 -34H241Q234 -34 225 -21T185 46Q166 79 154 101Q84 223 84 231'], + + // MALTESE CROSS + 0x2720: [716,22,833,48,786,'195 702T195 706T201 716H632Q638 710 638 706T636 700T621 690Q436 581 427 374V357H430Q554 357 645 421Q682 447 711 483T755 542T770 567Q775 572 786 563V131Q777 125 774 125T762 139Q709 228 642 274T482 333Q452 337 430 337H427V320Q430 279 437 247T462 170T521 82T621 4Q630 -2 633 -4T637 -7T638 -12Q638 -16 632 -22H201Q195 -16 195 -12T197 -6T212 4Q397 113 406 320V337H403Q279 337 188 273Q151 247 122 211T78 152T63 127Q58 122 48 131V563Q54 569 59 569Q62 569 71 555Q124 466 191 420T351 361Q381 357 403 357H406V374Q403 415 396 447T371 525T312 613T212 690Q199 697 197 699'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/Dingbats.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js new file mode 100644 index 0000000..e5508f6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/EnclosedAlphanum.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // CIRCLED LATIN CAPITAL LETTER S + 0x24C8: [709,175,902,8,894,'451 -175Q328 -175 226 -115T66 47T8 267Q8 303 15 342T39 431T94 531T186 622Q239 663 307 686T424 709H440Q604 709 716 622Q757 592 788 555T838 482T869 414T886 350T892 301T894 267Q894 147 835 45T674 -116T451 -175ZM854 268Q854 375 802 467T657 614T450 670Q283 670 166 552T49 267Q49 99 167 -18T453 -136Q617 -136 735 -18T854 268ZM273 378Q273 430 309 474T409 527Q411 527 417 527T428 528Q498 528 549 484L567 505Q583 528 590 528H594Q600 528 606 522V350L600 344H586Q577 344 574 344T569 347T566 357Q542 491 432 491Q389 491 365 465T340 407Q340 391 344 378T358 356T377 340T400 328T421 321T443 316T459 313Q499 305 517 300T559 279T601 238Q629 195 629 148Q629 80 583 33T471 -14Q392 -14 330 30Q312 6 293 -13Q292 -14 285 -14Q279 -14 273 -8V77V138Q273 160 275 165T286 170H294H307Q313 164 313 158Q313 108 350 67T471 26Q512 26 537 54T562 119Q562 137 558 151T544 176T527 193T504 205T483 212T459 218T441 222Q391 232 368 241T318 273Q273 316 273 378'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/EnclosedAlphanum.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js new file mode 100644 index 0000000..972a1a6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/GeneralPunctuation.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // REVERSED PRIME + 0x2035: [560,-43,275,12,244,'12 501Q12 527 31 542T63 558Q73 560 77 560Q114 560 128 528Q133 518 188 293T244 61Q244 56 223 50T195 43Q192 43 190 45T102 263T14 486Q12 496 12 501'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js new file mode 100644 index 0000000..e00258a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js @@ -0,0 +1,53 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/GeometricShapes.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // BLACK SQUARE + 0x25A0: [689,0,778,55,722,'71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71'], + + // WHITE SQUARE + 0x25A1: [689,0,778,55,722,'71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71ZM682 40V649H95V40H682'], + + // BLACK UP-POINTING TRIANGLE + 0x25B2: [575,20,722,84,637,'99 -20Q84 -11 84 0Q84 5 148 145T278 424L342 563Q347 575 360 575Q368 575 375 570Q376 569 441 430T571 148T637 0Q637 -11 622 -20H99'], + + // WHITE UP-POINTING TRIANGLE + 0x25B3: [575,20,722,84,637,'99 -20Q84 -11 84 0Q84 5 148 145T278 424L342 563Q347 575 360 575Q368 575 375 570Q376 569 441 430T571 148T637 0Q637 -11 622 -20H99ZM476 260L360 509L248 266Q137 24 135 22Q135 20 360 20Q586 20 586 21L476 260'], + + // BLACK RIGHT-POINTING TRIANGLE + 0x25B6: [540,41,778,83,694,'83 523Q83 524 85 527T92 535T103 539Q107 539 389 406T680 268Q694 260 694 249Q694 239 687 234Q685 232 395 95L107 -41H101Q90 -40 83 -26V523'], + + // BLACK DOWN-POINTING TRIANGLE + 0x25BC: [576,19,722,84,637,'84 556Q84 567 99 576H622Q637 567 637 556Q637 551 572 409T441 127T375 -14Q368 -19 360 -19H358Q349 -19 342 -7T296 92Q249 193 211 275Q84 550 84 556'], + + // WHITE DOWN-POINTING TRIANGLE + 0x25BD: [576,19,722,84,637,'84 556Q84 567 99 576H622Q637 567 637 556Q637 551 572 409T441 127T375 -14Q368 -19 360 -19H358Q349 -19 342 -7T296 92Q249 193 211 275Q84 550 84 556ZM586 534Q586 536 361 536Q135 536 135 535L358 52L361 47L473 290Q584 532 586 534'], + + // BLACK LEFT-POINTING TRIANGLE + 0x25C0: [539,41,778,83,694,'694 -26Q686 -40 676 -41H670L382 95Q92 232 90 234Q83 239 83 249Q83 262 96 267Q101 270 379 401T665 537Q671 539 674 539Q686 539 694 524V-26'], + + // LOZENGE + 0x25CA: [716,132,667,56,611,'318 709Q325 716 332 716Q340 716 344 713T474 511Q611 298 611 292Q611 285 526 152Q494 103 474 72Q347 -128 344 -130Q340 -132 333 -132T322 -130Q319 -128 257 -31T131 169T60 278Q56 285 56 292Q56 298 60 305Q73 326 194 516T318 709ZM567 290T567 291T451 475T333 658L100 293Q100 288 215 108L333 -74Q334 -74 450 108'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/GeometricShapes.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js new file mode 100644 index 0000000..8435683 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/GreekAndCoptic.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // GREEK SMALL LETTER DIGAMMA + 0x3DD: [605,85,778,55,719,'477 261Q477 257 473 256T455 253T417 251T348 250H235L155 -77L146 -82Q137 -85 109 -85Q55 -85 55 -77L139 261Q224 596 226 598Q229 603 239 603Q240 603 254 603T290 603T341 604T405 605T477 605Q656 603 687 602T719 596Q719 589 692 588T513 585H319L282 427L242 272Q242 270 351 270Q388 270 410 270T444 269T460 267T469 265T477 261'], + + // GREEK KAPPA SYMBOL + 0x3F0: [434,6,667,37,734,'228 325Q170 322 156 316T127 309Q108 309 104 314Q99 319 99 322T108 341Q125 376 171 400T268 425H271Q302 425 319 396Q328 377 328 358Q328 332 324 314Q311 270 286 221Q274 194 274 192H275Q339 234 484 325T639 421Q669 434 691 434T723 425T734 406Q734 394 719 381Q715 376 644 330L575 287L566 267Q543 233 526 176Q520 160 515 143T508 115T506 105Q506 103 533 103Q585 103 607 110T641 118Q670 118 670 107Q670 100 661 85Q643 50 598 27T504 3Q465 3 450 36Q441 51 441 73Q441 84 444 96Q452 146 484 205L497 236L324 125Q143 12 135 10Q103 -6 77 -6Q61 -6 49 2T37 21Q37 36 49 46T124 96L195 141L204 156Q219 179 243 248T264 323Q264 325 228 325'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/GreekAndCoptic.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js new file mode 100644 index 0000000..0f966dc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/Latin1Supplement.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // YEN SIGN + 0xA5: [683,0,750,11,738,'515 0Q494 3 374 3Q256 3 235 0H224V46H257Q316 47 324 58Q327 62 327 137V213H133Q121 213 113 213T97 213T86 213T78 213T73 214T70 215T69 216T68 218T67 220Q64 225 66 231T73 240Q76 242 202 242H327V273L247 407H115Q81 407 75 408T67 414Q64 419 66 425T73 434Q76 436 153 436Q228 436 228 437Q227 440 173 530T115 623Q101 637 31 637H11V683H20Q66 681 153 681Q169 681 202 681T262 682L288 683H298V637H280Q230 636 230 621Q230 619 250 584Q255 576 264 561T286 526T305 494L340 437L403 436H467L513 514Q564 596 564 605Q564 608 560 616Q550 634 517 637H508V683H516Q531 680 633 680Q722 680 731 683H738V637H723Q644 632 617 595Q614 591 568 515T521 437T597 436T676 434Q681 432 683 426T682 414T671 409T589 407H503L422 273V242H547Q673 242 676 240Q681 238 683 232T682 220Q682 219 682 218T681 217T679 216T677 215T672 214T664 213T652 213T637 213T616 213H422V139V87Q422 64 425 58T441 49Q456 46 503 46H525V0H515ZM449 406Q449 407 403 407Q358 407 358 406L370 387Q381 368 392 350L404 331Q447 404 449 406'], + + // REGISTERED SIGN + 0xAE: [709,176,947,32,915,'915 266Q915 140 852 38T689 -120T474 -175Q312 -175 188 -71T38 190Q32 220 32 266V287Q32 345 57 416T129 545Q192 624 282 666T464 709Q513 709 522 708Q599 698 665 666T776 590T853 493T900 387T915 287V266ZM875 285Q875 339 853 399T789 517T676 616T519 668Q510 669 465 669Q380 669 299 630T155 514T77 336Q72 312 72 285V266V256Q72 123 163 11Q290 -135 474 -135Q614 -135 727 -46Q875 81 875 266V285ZM276 457Q275 458 274 460T272 463T270 465T267 467T264 469T258 471T252 472T243 473T232 474T218 474H204V514H335Q477 514 499 510Q560 502 610 467T661 375Q661 362 658 350T648 327T635 308T618 292T601 280T583 269T568 262T554 256L547 253Q548 252 556 247T570 237T586 223T602 202T614 174Q616 169 626 123T638 72Q652 23 683 23Q715 23 720 68Q721 78 724 81T740 84T756 82T760 70Q760 47 747 25T715 -7Q700 -14 673 -14Q672 -14 662 -14T643 -12T619 -7T593 2T568 16T547 37T534 67Q531 80 531 97Q531 103 531 116T532 136Q532 218 472 236Q466 238 413 239H360V148L361 58Q366 47 375 44T418 40H432V0H424Q409 3 318 3T212 0H204V40H218Q242 40 253 42T268 47T276 58V457ZM376 473Q365 471 363 464T360 430V366V276H416Q421 276 434 276T453 276T469 277T486 279T501 282T517 287T529 294T542 305Q561 324 561 375Q561 424 545 444T482 472Q478 473 427 474Q415 474 403 474T384 474L376 473'], + + // LATIN SMALL LETTER ETH + 0xF0: [749,21,556,42,509,'75 566V604Q75 624 79 629T102 635Q124 635 127 629T131 588L133 550L191 588L249 628L231 635Q176 654 124 657Q116 657 106 658L95 659Q94 661 94 687T95 715Q99 717 113 717Q195 717 282 679L309 668L331 681Q351 697 391 721Q428 748 435 748Q437 749 446 749Q470 749 473 746Q478 744 478 681V621Q466 615 456 615Q435 615 424 624L422 661V699L382 675L344 648Q353 639 366 630Q480 538 504 413Q509 393 509 333V313Q509 284 507 257T495 184T466 102T413 33T329 -16Q311 -21 275 -21Q226 -21 195 -10Q150 7 110 50T53 141Q42 179 42 227Q42 332 101 403T245 474Q282 474 314 461T359 436T380 415Q386 405 389 408Q389 426 378 475Q368 505 355 529T329 567T306 590T288 603L282 606L120 501Q116 500 102 500Q84 500 75 506V566ZM388 225Q388 376 309 410Q299 416 273 419Q216 419 191 390Q174 371 168 342T162 218Q162 112 184 79Q212 39 273 39Q312 39 342 62T380 121Q388 159 388 225'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/Latin1Supplement.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js new file mode 100644 index 0000000..b9bcc28 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/LatinExtendedA.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // LATIN SMALL LETTER H WITH STROKE + 0x127: [695,13,540,42,562,'182 599Q182 611 174 615T133 619Q118 619 114 621T109 630Q109 636 114 656T122 681Q125 685 202 688Q272 695 286 695Q304 695 304 684Q304 682 295 644T282 597Q282 592 360 592H399Q430 592 445 587T460 563Q460 552 451 541L442 535H266L251 468Q247 453 243 436T236 409T233 399Q233 395 244 404Q295 441 357 441Q405 441 445 417T485 333Q485 284 449 178T412 58T426 44Q447 44 466 68Q485 87 500 130L509 152H531H543Q562 152 562 144Q562 128 546 93T494 23T415 -13Q385 -13 359 3T322 44Q318 52 318 77Q318 99 352 196T386 337Q386 386 346 386Q318 386 286 370Q267 361 245 338T211 292Q207 287 193 235T162 113T138 21Q128 7 122 4Q105 -12 83 -12Q66 -12 54 -2T42 26L166 530Q166 534 161 534T129 535Q127 535 122 535T112 534Q74 534 74 562Q74 570 77 576T84 585T96 589T109 591T124 592T138 592L182 595V599'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js new file mode 100644 index 0000000..9fec862 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/LetterlikeSymbols.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // stix-/hbar - Planck's over 2pi + 0x210F: [695,13,540,42,562,'150 475Q147 475 118 466T82 457Q73 457 64 467T54 487Q54 490 55 492Q63 506 64 506Q67 512 118 526Q162 541 169 546Q173 559 175 575Q181 596 181 604Q181 613 166 617Q164 617 153 618T135 619Q119 619 114 621T109 630Q109 636 114 656T122 681Q125 685 202 688Q272 695 286 695Q304 695 304 684Q304 682 291 628L278 577L386 612Q466 635 476 635T492 627T499 607Q499 593 489 586Q485 583 373 546L262 512Q262 511 248 455T233 397T236 397T244 404Q295 441 357 441Q405 441 445 417T485 333Q485 284 449 178T412 58T426 44Q447 44 466 68Q485 87 500 130L509 152H531H543Q562 152 562 144Q562 128 546 93T494 23T415 -13Q385 -13 359 3T322 44Q318 52 318 77Q318 99 352 196T386 337Q386 386 346 386Q318 386 286 370Q267 361 245 338T211 292Q207 287 193 235T162 113T138 21Q128 7 122 4Q105 -12 83 -12Q66 -12 54 -2T42 26Q42 45 98 257L151 475H150'], + + // INVERTED OHM SIGN + 0x2127: [685,22,722,44,675,'126 584Q119 584 110 539T97 493Q95 490 73 490Q44 490 44 501Q44 515 62 590Q75 672 82 679Q84 684 177 684Q193 684 214 684T241 685Q265 685 271 682T277 664V648Q271 572 229 434T186 231Q186 173 203 132T247 70T302 42T360 33Q391 33 419 42T474 72T517 133T533 231Q533 297 491 437T442 648Q442 675 446 679Q448 684 542 684Q635 684 637 681Q640 678 657 594T675 501Q675 490 646 490Q624 490 622 493Q620 493 609 538T593 584Q591 585 585 585T569 586T551 588H513Q514 586 518 573T538 531T582 453Q647 340 660 277Q663 259 663 232Q663 194 657 177Q652 151 629 112T560 39Q495 -5 424 -19Q403 -22 360 -22Q318 -22 297 -19Q239 -8 193 18T120 74T80 131T62 177Q56 194 56 229Q56 281 74 328T137 453Q160 491 174 518T193 555T201 575T206 588H168Q160 587 150 587T134 586T126 584'], + + // TURNED CAPITAL F + 0x2132: [695,1,556,55,497,'457 681Q471 695 477 695Q485 695 497 681V12L484 -1H68Q55 14 55 19T68 39H457V328H215L211 335Q198 346 211 359L217 368H457V681'], + + // BET SYMBOL + 0x2136: [763,21,667,-22,687,'56 706V726Q56 763 76 763Q83 763 87 759T98 741Q108 726 116 721L127 717L340 715Q547 712 564 709Q575 705 587 692Q599 680 605 663L609 650V137H676Q687 124 687 115Q687 110 678 100T622 43L558 -21H-9Q-22 -6 -22 -1T-13 14T42 72L107 137H569V339Q569 541 567 546Q558 555 554 557L545 563H329Q118 566 101 569Q90 573 78 586Q54 610 54 661Q54 670 56 706'], + + // GIMEL SYMBOL + 0x2137: [764,43,444,-22,421,'56 750Q68 764 76 764Q88 764 97 743T125 717Q131 715 240 715T358 713Q421 691 421 640Q421 608 399 588T358 566Q353 566 352 565T351 557L356 526Q356 488 379 346T402 97Q400 21 385 -12Q366 -43 351 -43Q335 -43 329 -10Q316 40 316 64Q316 67 315 67Q313 67 269 26L222 -21H-9Q-22 -7 -22 -1Q-22 4 -14 14T42 73L107 137H311V564H211H164Q115 564 93 573T60 615Q56 630 56 690V750'], + + // DALET SYMBOL + 0x2138: [764,43,667,54,640,'62 757Q69 764 75 764Q87 764 97 741Q102 731 105 728T117 721L129 715H349Q569 715 580 710Q618 701 635 670Q640 661 640 639Q640 609 622 590Q617 583 604 575T580 566H573V553Q575 547 576 531T582 469T600 353Q624 205 624 104Q624 46 617 17T591 -32Q581 -43 573 -43Q550 -43 540 44Q535 73 533 319V564H322Q117 566 100 570Q90 573 77 586Q54 609 54 663Q54 689 55 706Q55 738 56 745T62 757'], + + // TURNED SANS-SERIF CAPITAL G + 0x2141: [705,23,639,37,577,'239 665Q194 665 154 653T90 629T66 617Q59 617 53 623T46 637Q46 652 66 659Q129 695 197 701Q218 705 248 705Q293 705 335 693Q371 684 435 644Q543 562 573 417Q577 393 577 341Q577 290 573 266Q531 83 384 10Q346 -9 315 -16T234 -23H206Q202 -23 183 -23T152 -21T120 -18T88 -10T63 3T44 24L37 35V297L50 310H235Q248 297 248 290Q248 285 235 270H77V103Q77 88 77 80T77 63T78 50T80 43T82 38T85 35T89 32T95 30Q126 20 206 17Q289 17 330 30Q407 55 460 120T533 275Q538 305 538 342Q538 486 452 575T239 665'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js new file mode 100644 index 0000000..aa9033f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js @@ -0,0 +1,131 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'] = { + directory: 'AMS/Regular', + family: 'MathJax_AMS', + id: 'MJAMS', + Ranges: [ + [0x80,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2190,0x21FF,"Arrows"], + [0x2200,0x22FF,"MathOperators"], + [0x2300,0x23FF,"MiscTechnical"], + [0x2460,0x24FF,"EnclosedAlphanum"], + [0x2500,0x257F,"BoxDrawing"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x2700,0x27BF,"Dingbats"], + [0x2980,0x29FF,"MiscMathSymbolsB"], + [0x2A00,0x2AFF,"SuppMathOperators"], + [0xE000,0xF8FF,"PUA"] + ], + + // SPACE + 0x20: [0,0,250,0,0,''], + + // LATIN CAPITAL LETTER A + 0x41: [701,1,722,17,703,'130 -1H63Q34 -1 26 2T17 17Q17 24 22 29T35 35Q49 35 64 44T88 66Q101 93 210 383Q331 693 335 697T346 701T357 697Q358 696 493 399Q621 104 633 83Q656 35 686 35Q693 35 698 30T703 17Q703 5 693 2T643 -1H541Q388 -1 386 1Q378 6 378 16Q378 24 383 29T397 35Q412 35 434 45T456 65Q456 93 428 170L419 197H197L195 179Q184 134 184 97Q184 82 186 71T190 55T198 45T205 39T214 36L219 35Q241 31 241 17Q241 5 233 2T196 -1H130ZM493 68Q493 51 481 35H619Q604 56 515 256Q486 321 468 361L348 637Q347 637 330 592T313 543Q313 538 358 436T448 219T493 68ZM404 235Q404 239 355 355T295 488L275 430Q241 348 208 232H306Q404 232 404 235ZM155 48Q151 55 148 88V117L135 86Q118 47 117 46L110 37L135 35H159Q157 41 155 48'], + + // LATIN CAPITAL LETTER B + 0x42: [683,1,667,11,620,'11 665Q11 672 22 683H213Q407 681 431 677Q582 649 582 515Q582 488 573 468Q554 413 484 372L474 366H475Q620 317 620 178Q620 115 568 69T420 6Q393 1 207 -1H22Q11 10 11 18Q11 35 51 35Q79 37 88 39T102 52Q107 70 107 341T102 630Q97 640 88 643T51 648H46Q11 648 11 665ZM142 341Q142 129 141 88T134 37Q133 36 133 35H240L233 48L229 61V623L233 635L240 648H133L138 639Q142 621 142 341ZM284 370Q365 378 391 411T417 508Q417 551 406 581T378 624T347 643T320 648Q298 648 278 635Q267 628 266 611T264 492V370H284ZM546 515Q546 551 531 577T494 617T454 635T422 641L411 643L420 630Q439 604 445 579T452 510V504Q452 481 451 467T441 430T415 383Q420 383 439 391T483 413T527 455T546 515ZM585 185Q585 221 570 249T534 294T490 320T453 334T436 337L435 336L440 330Q445 325 452 315T467 288T479 246T484 188Q484 145 474 110T454 62T442 48Q442 47 444 47Q450 47 470 54T517 75T564 119T585 185ZM449 184Q449 316 358 332Q355 332 335 333T302 335H264V199Q266 68 270 57Q275 50 289 43Q300 37 324 37Q449 37 449 184'], + + // LATIN CAPITAL LETTER C + 0x43: [702,19,722,39,684,'684 131Q684 125 672 109T633 71T573 29T489 -5T386 -19Q330 -19 276 -3T174 46T91 134T44 261Q39 283 39 341T44 421Q66 538 143 611T341 699Q344 699 364 700T395 701Q449 698 503 677T585 655Q603 655 611 662T620 678T625 694T639 702Q650 702 657 690V481L653 474Q640 467 628 472Q624 476 618 496T595 541Q562 587 507 625T390 663H381Q337 663 299 625Q212 547 212 336Q212 249 233 179Q274 30 405 30Q533 30 641 130Q658 147 666 147Q671 147 677 143T684 131ZM250 625Q264 643 261 643Q238 635 214 620T161 579T110 510T79 414Q74 384 74 341T79 268Q89 213 113 169T164 101T217 61T260 39L277 34Q270 41 264 48Q199 111 181 254Q178 281 178 344T181 434Q200 559 250 625ZM621 565V625Q617 623 613 623Q603 619 590 619H575L588 605Q608 583 610 579L621 565'], + + // LATIN CAPITAL LETTER D + 0x44: [683,1,722,16,688,'16 666Q16 675 28 683H193Q329 683 364 682T430 672Q534 650 600 585T686 423Q688 406 688 352Q688 274 673 226Q641 130 565 72T381 1Q368 -1 195 -1H28Q16 5 16 16Q16 35 53 35Q68 36 75 37T87 42T95 52Q98 61 98 341T95 630Q91 640 83 643T53 648Q16 648 16 666ZM237 646Q237 648 184 648H128Q128 647 133 632Q136 620 136 341Q136 64 133 50L128 35H237L230 48L226 61V343Q228 620 231 633Q232 636 237 646ZM264 61Q278 40 310 35Q363 35 401 55T461 112T496 193T513 295Q515 333 515 349Q515 411 504 459Q481 598 373 641Q351 648 321 648Q304 648 292 643T277 635T264 621V61ZM461 628Q462 627 471 616T489 594T509 559T529 509T544 441T550 352Q550 165 479 75L468 59Q474 61 484 65T522 87T573 128T618 195T650 290Q654 322 654 354Q654 418 638 464T581 552Q559 576 529 595T480 621L461 628'], + + // LATIN CAPITAL LETTER E + 0x45: [683,1,667,12,640,'12 666Q12 675 24 683H582Q590 680 593 672V588Q593 514 591 502T575 490Q567 490 563 495T555 517Q552 556 517 590Q486 623 445 634T340 648H282Q266 636 264 620T260 492V370H277Q329 375 358 391T404 439Q420 480 420 506Q420 529 436 529Q445 529 451 521Q455 517 455 361Q455 333 455 298T456 253Q456 217 453 207T437 197Q420 196 420 217Q420 240 406 270Q377 328 284 335H260V201Q261 174 261 134Q262 73 264 61T278 38Q281 36 282 35H331Q400 35 449 50Q571 93 602 179Q605 203 622 203Q629 203 634 197T640 183Q638 181 624 95T604 3L600 -1H24Q12 5 12 16Q12 35 51 35Q92 38 97 52Q102 60 102 341T97 632Q91 645 51 648Q12 648 12 666ZM137 341Q137 131 136 89T130 37Q129 36 129 35H235Q233 41 231 48L226 61V623L231 635L235 648H129Q132 641 133 638T135 603T137 517T137 341ZM557 603V648H504Q504 646 515 639Q527 634 542 619L557 603ZM420 317V397L406 383Q394 370 380 363L366 355Q373 350 382 346Q400 333 409 328L420 317ZM582 61L586 88Q585 88 582 83Q557 61 526 46L511 37L542 35H577Q577 36 578 39T580 49T582 61'], + + // LATIN CAPITAL LETTER F + 0x46: [683,1,611,12,584,'584 499Q569 490 566 490Q558 490 552 497T546 515Q546 535 533 559Q526 574 506 593T469 621Q415 648 326 648Q293 648 287 647T275 641Q264 630 263 617Q262 609 260 492V370L275 372Q323 376 350 392T393 441Q409 473 409 506Q409 529 427 529Q437 529 442 519Q444 511 444 362Q444 212 442 206Q436 197 426 197Q409 197 409 217Q409 265 375 299Q346 328 280 335H260V206Q260 70 262 63Q265 46 276 41T326 35Q362 35 366 28Q377 17 366 3L360 -1H24Q12 5 12 16Q12 35 51 35Q92 38 97 52Q102 60 102 341T97 632Q91 645 51 648Q12 648 12 666Q12 675 24 683H573Q576 678 584 670V499ZM137 341Q137 131 136 89T130 37Q129 36 129 35H182Q233 35 233 39Q226 54 225 92T224 346L226 623L231 635L235 648H129Q132 641 133 638T135 603T137 517T137 341ZM549 603V648H495L506 641Q531 621 533 619L549 603ZM409 317V395L400 386Q390 376 375 366L357 355L373 346Q394 331 397 328L409 317'], + + // LATIN CAPITAL LETTER G + 0x47: [702,19,778,39,749,'737 285Q749 277 749 268Q749 260 744 255T730 250Q695 250 677 217Q666 195 666 119Q666 52 664 50Q656 36 555 3Q483 -16 415 -19Q364 -19 348 -17Q226 -3 146 70T44 261Q39 283 39 341T44 421Q66 538 143 611T341 699Q344 699 364 700T395 701Q449 698 503 677T585 655Q603 655 611 662T620 678T625 694T639 702Q650 702 657 690V481L653 474Q640 467 628 472Q624 476 618 496T595 541Q562 587 507 625T390 663H381Q337 663 299 625Q213 547 213 337Q213 75 341 23Q357 19 397 19Q440 19 462 22T492 30T513 45V119Q513 184 506 203Q491 237 435 250Q421 250 415 257Q404 267 415 281L421 285H737ZM250 43Q250 45 243 55T225 87T203 139T185 224T177 343V361Q184 533 250 625Q264 643 261 643Q238 635 214 620T161 579T110 510T79 414Q74 384 74 341T79 268Q106 117 230 52L250 43ZM621 565V625Q617 623 613 623Q603 619 590 619H575L588 605Q608 583 610 579L621 565ZM655 250H517L524 241Q548 213 548 149V114V39Q549 39 562 44T592 55T615 63L630 70V134Q632 190 634 204T648 237Q655 245 655 250'], + + // LATIN CAPITAL LETTER H + 0x48: [683,1,778,14,762,'14 666Q14 675 26 683H344L351 679Q361 665 351 655Q344 648 317 648Q287 645 282 641Q270 637 269 623T266 497V370H511V497Q511 519 510 553Q509 615 507 626T496 641H495Q489 645 459 648Q420 648 420 665Q420 672 426 679L433 683H751Q762 676 762 666Q762 648 724 648Q684 645 677 632Q675 626 675 341Q675 57 677 52Q684 38 724 35Q762 35 762 16Q762 6 751 -1H433L426 3Q420 10 420 17Q420 35 459 35Q501 38 506 52Q511 64 511 190V323H266V190Q266 60 271 52Q276 38 317 35Q342 35 351 28Q360 17 351 3L344 -1H26Q14 5 14 16Q14 35 53 35Q94 38 99 52Q104 60 104 341T99 632Q93 645 53 648Q14 648 14 666ZM233 341V553Q233 635 239 648H131Q134 641 135 638T137 603T139 517T139 341Q139 131 138 89T132 37Q131 36 131 35H239Q233 47 233 129V341ZM639 341V489Q639 548 639 576T640 620T642 639T646 648H537L542 639Q546 625 546 341Q546 130 545 88T538 37Q537 36 537 35H646Q643 41 643 42T641 55T639 84T639 140V341'], + + // LATIN CAPITAL LETTER I + 0x49: [683,1,389,20,369,'20 666Q20 676 31 683H358Q369 676 369 666Q369 648 331 648Q288 645 282 632Q278 626 278 341Q278 57 282 50Q286 42 295 40T331 35Q369 35 369 16Q369 6 358 -1H31Q20 4 20 16Q20 35 58 35Q84 37 93 39T107 50Q113 60 113 341Q113 623 107 632Q101 645 58 648Q20 648 20 666ZM249 35Q246 40 246 41T244 54T242 83T242 139V341Q242 632 244 639L249 648H140Q146 634 147 596T149 341Q149 124 148 86T140 35H249'], + + // LATIN CAPITAL LETTER J + 0x4A: [683,77,500,6,478,'79 103Q108 103 129 83T151 38Q151 9 130 -15Q116 -34 130 -37Q133 -39 157 -39Q208 -39 219 -8L226 3V305Q226 612 224 621Q220 636 211 641T166 647Q137 647 128 654Q119 665 128 679L135 683H466Q478 677 478 666Q478 647 439 647Q399 644 393 632Q388 620 388 347Q386 69 384 59Q364 -6 316 -39T184 -77H172Q102 -77 56 -48T6 30Q6 62 26 82T79 103ZM353 354Q353 556 354 596T361 645Q362 646 362 647H253Q257 639 258 628T261 547T262 312V-4L255 -17Q248 -29 250 -29Q253 -29 258 -28T277 -20T302 -5T327 22T348 65Q350 74 353 354ZM115 36Q115 47 105 57T79 67Q73 67 67 66T52 56T44 34Q44 9 62 -8Q66 -11 71 -15T81 -22T86 -24L90 -13Q100 3 102 5Q115 22 115 36'], + + // LATIN CAPITAL LETTER K + 0x4B: [683,1,778,22,768,'22 666Q22 676 33 683H351L358 679Q368 665 358 655Q351 648 324 648Q288 645 280 637Q275 631 274 605T273 477L275 343L382 446Q473 530 492 553T512 599Q512 617 502 631T475 648Q455 651 455 666Q455 677 465 680T510 683H593H720Q732 676 732 666Q732 659 727 654T713 648Q670 648 589 581Q567 562 490 489T413 415Q413 413 554 245T711 61Q737 35 751 35Q758 35 763 29T768 15Q768 6 758 -1H624Q491 -1 486 3Q480 10 480 17Q480 25 487 30T506 35Q518 36 520 38T520 48L400 195L302 310L286 297L273 283V170Q275 65 277 57Q280 41 300 38Q302 37 324 35Q349 35 358 28Q367 17 358 3L351 -1H33Q22 4 22 16Q22 35 60 35Q101 38 106 52Q111 60 111 341T106 632Q100 645 60 648Q22 648 22 666ZM240 341V553Q240 635 246 648H138Q141 641 142 638T144 603T146 517T146 341Q146 131 145 89T139 37Q138 36 138 35H246Q240 47 240 129V341ZM595 632L615 648H535L542 637Q542 636 544 625T549 610V595L562 606Q565 608 577 618T595 632ZM524 226L386 388Q386 389 378 382T358 361Q330 338 330 333Q330 332 330 332L331 330L533 90Q558 55 558 41V35H684L671 50Q667 54 524 226'], + + // LATIN CAPITAL LETTER L + 0x4C: [683,1,667,12,640,'12 666Q12 675 24 683H333L340 679Q350 665 340 655Q333 648 309 648Q287 646 279 643T266 630Q264 623 264 346Q264 68 266 57Q274 40 284 35H340Q413 37 460 55Q514 78 553 117T602 197Q605 221 622 221Q629 221 634 215T640 201Q638 194 625 105T611 12Q611 6 600 -1H24Q12 5 12 16Q12 35 51 35Q92 38 97 52Q102 60 102 341T97 632Q91 645 51 648Q12 648 12 666ZM137 341Q137 131 136 89T130 37Q129 36 129 35H237Q235 41 233 48L229 61L226 339Q226 621 229 628Q230 630 231 636T233 643V648H129Q132 641 133 638T135 603T137 517T137 341ZM580 48Q580 59 583 74T586 97Q586 98 585 97T579 92T571 86Q549 64 513 43L500 35H577L580 48'], + + // LATIN CAPITAL LETTER M + 0x4D: [683,1,944,17,926,'18 666Q18 677 27 680T73 683H146Q261 683 266 679L465 215Q469 215 566 443Q663 676 668 681Q673 683 790 683H908L915 679Q924 664 915 655Q912 648 897 648Q851 639 835 606L833 346Q833 86 835 79Q838 69 849 58T873 41Q877 40 887 38T901 35Q926 35 926 16Q926 6 915 -1H604L597 3Q588 19 597 28Q600 35 615 35Q660 42 673 68L679 79V339Q679 409 679 443T679 520T679 580T677 597Q646 521 584 375T473 117T424 3Q416 -1 410 -1T401 1Q399 3 273 301L148 599L146 343Q146 86 148 79Q152 69 163 58T186 41Q190 40 200 38T215 35Q226 35 235 28Q244 17 235 3L228 -1H28Q17 4 17 17Q17 35 39 35Q84 42 97 68L104 79V639L88 641Q72 644 53 648Q34 648 26 651T18 666ZM457 166Q451 169 449 171T435 198T404 268T344 412L244 648H157L166 637Q169 633 293 346L413 66Q424 88 435 117L457 166ZM817 646Q817 648 766 648H715V72L708 57Q701 45 697 41L695 37Q695 35 757 35H819L813 46Q802 61 800 76Q797 105 797 346L799 612L804 626Q812 638 815 641L817 646ZM124 42Q119 42 119 38Q119 35 128 35Q132 35 132 36Q125 42 124 42'], + + // LATIN CAPITAL LETTER N + 0x4E: [683,20,722,20,702,'20 664Q20 666 31 683H142Q256 683 258 681Q259 680 279 653T342 572T422 468L582 259V425Q582 451 582 490T583 541Q583 611 573 628T522 648Q500 648 493 654Q484 665 493 679L500 683H691Q702 676 702 666Q702 657 698 652Q688 648 680 648Q633 648 627 612Q624 601 624 294V-8Q616 -20 607 -20Q601 -20 596 -15Q593 -13 371 270L156 548L153 319Q153 284 153 234T152 167Q152 103 156 78T172 44T213 34Q236 34 242 28Q253 17 242 3L236 -1H36Q24 6 24 16Q24 34 56 34Q58 35 69 36T86 40T100 50T109 72Q111 83 111 345V603L96 619Q72 643 44 648Q20 648 20 664ZM413 419L240 648H120L136 628Q137 626 361 341T587 54L589 68Q589 78 589 121V192L413 419'], + + // LATIN CAPITAL LETTER O + 0x4F: [701,19,778,34,742,'131 601Q180 652 249 676T387 701Q485 701 562 661Q628 629 671 575T731 448Q742 410 742 341T731 234Q707 140 646 81Q549 -19 389 -19Q228 -19 131 81Q57 155 37 274Q34 292 34 341Q34 392 37 410Q58 528 131 601ZM568 341Q568 613 437 659Q406 664 395 665Q329 665 286 625Q232 571 213 439Q210 408 210 341Q210 275 213 245Q232 111 286 57Q309 37 342 23Q357 19 389 19Q420 19 437 23Q469 38 491 57Q568 132 568 341ZM174 341Q174 403 177 441T197 535T249 639Q246 639 224 627T193 608Q189 606 183 601T169 589T155 577Q69 488 69 344Q69 133 231 52Q244 45 246 45Q248 45 246 48Q231 69 222 85T200 141T177 239Q174 269 174 341ZM708 341Q708 415 684 475T635 563T582 610Q578 612 565 619T546 630Q533 637 531 637Q530 637 530 636V635L531 634Q562 591 577 543Q602 471 602 341V316Q602 264 599 230T580 144T531 48L530 47V46Q530 45 531 45Q533 45 547 52T583 75T622 105Q708 195 708 341'], + + // LATIN CAPITAL LETTER P + 0x50: [683,1,611,16,597,'16 666Q16 675 28 683H195Q334 683 370 682T437 672Q511 657 554 611T597 495Q597 343 404 309Q402 308 401 308Q381 303 319 303H261V181Q261 157 262 120Q262 60 267 50T304 36Q310 35 313 35Q352 35 352 17Q352 10 346 3L339 -1H28Q16 5 16 16Q16 35 53 35Q68 36 75 37T87 42T95 52Q98 61 98 341T95 630Q91 640 83 643T53 648Q16 648 16 666ZM235 35Q228 46 227 84Q226 129 226 337V621L230 635L237 648H128Q128 647 133 632Q136 620 136 341Q136 64 133 50L128 35H235ZM301 341H313Q339 341 354 344T389 362T417 410T426 498Q426 586 401 616T322 647Q301 647 293 643Q271 637 264 621Q261 617 261 479V341H301ZM429 350Q431 350 443 353T476 367T515 391T548 432T562 490Q562 550 524 592Q507 607 484 619Q481 621 448 635L433 639L439 621Q462 578 462 506Q462 448 454 413T437 366T428 350H429'], + + // LATIN CAPITAL LETTER Q + 0x51: [701,181,778,34,742,'480 -10Q480 -13 486 -24T507 -50T541 -80T588 -104T648 -114Q666 -114 688 -110T714 -106Q724 -106 728 -114T729 -130Q723 -145 663 -163T548 -181Q503 -181 463 -169T395 -139T343 -97T307 -56T284 -19L280 -3L262 1Q188 24 131 81Q57 155 37 275Q34 292 34 342T37 410Q58 528 131 601Q179 652 248 676T388 701Q485 701 562 661Q698 595 731 448Q742 410 742 341T731 235Q707 141 646 81Q616 50 575 27T493 -5L480 -10ZM568 342Q568 613 437 659L395 666Q329 666 286 626Q232 570 213 439Q210 408 210 342T213 246Q231 113 286 57Q309 37 342 23Q357 19 389 19Q420 19 437 23Q469 38 491 57Q568 134 568 342ZM174 341V354Q174 393 175 419T183 484T205 561T246 635L249 639Q246 639 224 627T193 608Q189 606 183 601T169 589T155 577Q69 491 69 344Q69 133 231 52Q247 42 247 46Q247 46 246 48Q231 69 222 85T200 141T177 239Q174 269 174 341ZM708 341Q708 410 689 467T640 556T588 606T546 630Q532 638 531 638Q530 638 531 635Q563 590 577 543Q602 472 602 341V316Q602 264 599 230T580 144T531 48Q529 44 532 45T546 52Q575 68 596 84T642 128T683 200T706 299Q708 327 708 341ZM391 -17H333Q329 -15 326 -15Q324 -15 324 -17Q324 -21 362 -68Q424 -130 506 -143Q518 -144 544 -144Q569 -144 577 -143L589 -141L575 -139Q544 -127 509 -101T453 -37L442 -19L391 -17'], + + // LATIN CAPITAL LETTER R + 0x52: [683,1,722,16,705,'17 665Q17 672 28 683H221Q415 681 439 677Q461 673 481 667T516 654T544 639T566 623T584 607T597 592T607 578T614 565T618 554L621 548Q626 530 626 497Q626 447 613 419Q578 348 473 326L455 321Q462 310 473 292T517 226T578 141T637 72T686 35Q705 30 705 16Q705 7 693 -1H510Q503 6 404 159L306 310H268V183Q270 67 271 59Q274 42 291 38Q295 37 319 35Q344 35 353 28Q362 17 353 3L346 -1H28Q16 5 16 16Q16 35 55 35Q96 38 101 52Q106 60 106 341T101 632Q95 645 55 648Q17 648 17 665ZM241 35Q238 42 237 45T235 78T233 163T233 337V621L237 635L244 648H133Q136 641 137 638T139 603T141 517T141 341Q141 131 140 89T134 37Q133 36 133 35H241ZM457 496Q457 540 449 570T425 615T400 634T377 643Q374 643 339 648Q300 648 281 635Q271 628 270 610T268 481V346H284Q327 346 375 352Q421 364 439 392T457 496ZM492 537T492 496T488 427T478 389T469 371T464 361Q464 360 465 360Q469 360 497 370Q593 400 593 495Q593 592 477 630L457 637L461 626Q474 611 488 561Q492 537 492 496ZM464 243Q411 317 410 317Q404 317 401 315Q384 315 370 312H346L526 35H619L606 50Q553 109 464 243'], + + // LATIN CAPITAL LETTER S + 0x53: [702,12,556,28,528,'54 238Q72 238 72 212Q72 174 106 121Q113 110 132 90T166 59Q221 23 264 23Q315 23 348 41Q368 50 384 79Q393 102 393 129Q393 181 356 219T221 299Q120 343 74 390T28 501Q28 561 55 610Q98 682 212 699Q214 699 231 700T261 701Q309 698 340 687T408 675Q431 678 445 690T465 702Q474 702 481 690V497L477 490Q464 481 450 490Q446 500 446 501Q446 546 386 606T260 666Q215 666 182 639T148 565Q148 528 186 496T319 428Q352 414 370 405T418 379T468 338T506 284Q528 239 528 191Q528 102 456 46T266 -10Q211 -10 176 2T110 15Q86 9 73 -1T53 -12Q44 -12 37 -1V112V182Q37 214 40 226T54 238ZM446 619Q446 648 444 648Q439 646 435 644Q425 644 415 639H404L417 624Q435 606 439 601L446 592V619ZM124 619L128 635Q126 635 108 617Q64 576 64 502Q64 489 65 479T76 449T102 414T150 376T228 335Q335 291 381 245T427 128Q427 94 419 75L415 61Q421 61 448 88Q490 127 490 190Q490 233 475 264Q456 299 430 321Q402 349 369 367T287 404T204 441Q138 481 119 526Q113 544 113 565Q113 596 124 619ZM75 43Q76 43 90 46T110 50H119L106 64L74 101Q72 101 72 72T75 43'], + + // LATIN CAPITAL LETTER T + 0x54: [683,1,667,33,635,'33 672Q36 680 44 683H624Q632 680 635 672V490L631 483Q621 479 617 479Q611 479 606 485T600 499Q600 525 584 552Q577 567 558 588T524 617Q479 642 426 646L415 648V355Q415 62 422 52Q425 42 434 40T473 35Q500 35 509 28Q518 17 509 3L502 -1H166L160 3Q149 17 160 28Q167 35 195 35Q224 37 234 39T249 52Q253 66 253 355V648L242 646Q192 642 144 617Q129 609 110 588T84 552Q69 527 69 499Q69 490 64 484T50 478Q39 478 33 490V672ZM113 639L126 648H69V597L84 612Q93 623 113 639ZM389 35Q382 46 381 86Q380 134 380 350V648H289V350Q289 199 288 131T286 53T280 35H389ZM600 597V648H542L555 639Q575 623 584 612L600 597'], + + // LATIN CAPITAL LETTER U + 0x55: [683,19,722,16,709,'16 666Q16 677 28 683H341L348 679Q359 665 348 654Q342 648 315 648Q270 644 266 632Q262 627 262 598T261 399Q261 372 261 325T260 260Q260 149 274 99T339 30Q355 25 393 25Q430 25 457 33T494 49T519 72Q562 115 575 205Q576 219 576 379Q576 538 575 550Q568 597 550 622T506 648Q498 648 493 654T487 667T499 683H697Q709 675 709 667T704 654T690 648Q653 648 633 597Q624 573 622 546T619 377Q617 193 613 174Q596 95 544 41Q477 -19 355 -19H344Q275 -16 226 5T153 57T120 110T106 154Q101 172 99 399Q99 618 95 632Q88 644 53 648Q16 648 16 666ZM228 639L233 648H128Q128 647 133 632Q135 621 135 412Q135 197 137 185Q148 115 181 79Q209 51 235 41Q242 36 258 31T277 25Q276 27 268 38T254 59T241 92T228 145Q226 161 226 399Q226 632 228 639ZM604 621Q606 626 619 648H577L586 634Q587 632 591 625T595 614L597 608L604 621'], + + // LATIN CAPITAL LETTER V + 0x56: [683,20,722,0,719,'316 683Q327 676 327 666Q327 648 302 648Q272 642 258 628Q249 621 249 608Q252 589 263 556T289 485T322 406T357 325T388 256T411 205L420 185Q423 185 473 317Q547 497 547 590Q547 621 541 632T516 648Q501 648 498 654Q488 664 498 679L504 683H607H660Q695 683 707 680T719 667Q719 660 714 654T700 648Q678 648 658 628L642 614L513 301Q484 231 449 148T397 25T380 -15Q373 -20 368 -20Q361 -20 358 -15Q354 -13 287 135T149 438T67 610Q45 648 18 648Q11 648 6 653T0 666Q0 677 9 680T59 683H164H316ZM216 614Q216 620 216 622T216 628T216 633T217 635T218 638T219 640T221 644T224 648H84L96 632Q118 592 236 330L367 43L387 88L404 132L380 185Q250 468 222 568Q216 590 216 614ZM576 645Q584 628 584 597L587 568L598 597Q609 624 618 637L624 648H600Q576 648 576 645'], + + // LATIN CAPITAL LETTER W + 0x57: [683,19,1000,5,994,'785 664Q785 670 795 683H982Q994 675 994 665Q994 650 975 648Q953 643 939 619Q931 593 823 292T710 -15Q706 -19 699 -19T688 -15Q682 -6 639 107T555 328T513 437Q513 438 500 409T462 325T413 212Q315 -14 310 -17Q308 -19 302 -19T288 -15L57 619Q45 643 24 648Q5 650 5 665Q5 677 17 683H146H200Q256 683 270 681T285 666Q285 659 280 654T268 648Q253 648 239 634Q230 630 230 619Q230 598 264 481L362 192Q363 193 428 341T493 492Q493 496 473 546T446 608Q426 648 399 648Q392 648 387 653T382 667Q382 678 393 683H679Q690 670 690 665Q690 662 685 655T673 648Q653 648 633 632L622 625V610Q626 576 657 479T719 300T751 218Q754 218 779 294Q847 492 847 581Q847 648 802 648Q796 648 791 652T785 664ZM194 623Q194 630 199 648H82L90 632Q99 616 199 332L302 50Q303 50 322 94T342 141Q342 142 305 245T231 467T194 623ZM585 620Q585 634 593 648H530Q466 648 466 645Q479 632 595 323L699 54Q701 56 718 103T735 154L702 245Q585 562 585 620ZM884 572L890 587Q896 602 903 620T915 645Q915 648 893 648H868L875 634Q883 598 883 576Q883 572 884 572'], + + // LATIN CAPITAL LETTER X + 0x58: [683,1,722,16,705,'22 666Q22 677 31 680T80 683H184H335Q346 675 346 667Q346 660 341 655Q335 648 315 648Q280 644 273 637Q273 630 300 583T356 492T386 448Q430 504 450 535T474 577T478 601Q478 620 469 634T444 648Q428 648 428 666Q428 678 436 680T488 683H559H630Q673 683 681 681T690 666Q690 648 673 648Q652 648 619 637Q571 615 517 550Q490 517 450 464T410 408Q415 399 501 273T617 106Q648 61 661 48T688 35Q705 35 705 16Q705 5 695 -1H539Q384 -1 379 3Q373 10 373 17Q373 27 380 31T408 35Q459 40 459 49Q459 59 418 129T335 259Q334 260 332 260Q328 260 273 197Q210 127 208 117Q199 104 199 82Q199 57 213 46T239 35Q247 35 252 29T257 15Q257 10 256 7T253 3T248 0L246 -1H28Q16 7 16 15T21 29T35 35Q61 35 117 88Q289 279 304 297Q307 303 255 377Q117 586 79 626Q60 648 39 648Q32 648 27 653T22 666ZM237 639V648H173Q113 647 113 646Q113 642 137 612Q186 546 302 373T453 139Q497 63 497 43Q497 39 495 35H559Q622 35 622 37Q622 38 583 94T486 233T373 399T277 552T237 639ZM553 637L566 648H504L508 637Q510 630 515 615V603L528 615Q529 616 539 625T553 637ZM170 46Q169 49 167 58T164 70V83L137 59L113 35H175Q175 38 170 46'], + + // LATIN CAPITAL LETTER Y + 0x59: [683,1,722,16,704,'16 659T16 667T28 683H295Q306 676 306 666Q306 648 284 648Q258 648 255 641Q255 634 265 615T339 479Q418 339 421 339L455 394Q489 448 523 502L557 557Q560 566 560 582Q560 637 504 648Q489 648 486 655Q475 664 486 679L493 683H693Q704 675 704 667Q704 650 684 648Q672 645 653 623Q633 604 614 576T517 426L439 301V183Q442 62 444 59Q449 35 504 35Q521 35 528 30Q538 16 528 3L521 -1H195L188 3Q178 16 188 30Q195 35 213 35Q266 35 273 59Q274 61 277 163V261L75 621Q64 638 58 643T37 648Q28 648 22 653ZM219 637V648H101Q110 634 215 446L313 270V166Q310 59 306 48L301 35H415L410 48Q404 65 404 175V290L317 443Q230 601 226 612Q219 625 219 637ZM608 630L624 648H575Q584 632 588 623L595 610L608 630'], + + // LATIN CAPITAL LETTER Z + 0x5A: [683,1,667,29,635,'39 -1Q29 9 29 12Q29 23 60 77T219 337L410 648H364Q261 648 210 628Q168 612 142 588T109 545T97 509T88 490Q85 489 80 489Q72 489 61 503L70 588Q72 607 75 628T79 662T81 675Q84 677 88 681Q90 683 341 683H592Q604 673 604 666Q604 662 412 348L221 37Q221 35 301 35Q406 35 446 48Q504 68 543 111T597 212Q602 239 617 239Q624 239 629 234T635 223Q635 215 621 113T604 8L597 1Q595 -1 317 -1H39ZM148 637L166 648H112V632Q111 629 110 622T108 612Q108 608 110 608T116 612T129 623T148 637ZM552 646Q552 648 504 648Q452 648 450 643Q448 639 266 343T77 37Q77 35 128 35H179L366 339L552 646ZM572 35Q581 89 581 97L561 77Q542 59 526 48L508 37L539 35H572'], + + // LATIN SMALL LETTER K + 0x6B: [683,1,556,17,534,'519 443Q519 426 497 426Q458 422 361 335Q328 308 315 295Q307 289 310 286T383 193T466 88Q507 35 517 35Q534 35 534 16Q534 5 524 -1H304L297 3Q288 19 297 28Q300 35 317 35Q320 36 324 36T330 37T333 39Q334 39 334 40Q334 47 304 86T244 162L215 199Q212 202 206 199Q201 195 201 137V121Q201 35 230 35Q238 35 243 29T248 15Q248 4 237 -1H28L21 3Q17 13 17 17Q17 24 22 29T35 35Q55 35 61 70Q63 78 63 341T61 612Q55 648 35 648Q27 648 22 654T17 668Q17 678 26 682Q27 683 28 683H108H147Q156 683 162 683T174 683T182 683T187 682T191 681T194 680T197 678T201 675V461L204 246L244 281Q254 291 272 307Q317 349 326 360T339 386Q340 390 340 398Q340 426 321 426Q314 426 309 431T304 445Q304 456 315 461H508Q519 448 519 443ZM166 359V648H126Q89 648 89 645Q89 644 89 644T90 643T91 640T93 634T95 626Q99 612 99 341T95 57Q94 53 93 49T91 43T90 39L89 37Q89 35 133 35Q176 35 176 37Q175 38 175 39Q175 42 170 57Q166 70 166 359ZM410 423Q412 425 407 426Q404 426 393 426Q373 426 373 423Q374 422 375 417T377 410Q377 399 379 399Q406 419 410 423ZM460 37Q460 41 368 152L281 263Q280 263 259 246L239 228Q298 157 355 79Q370 61 370 41V35H417Q460 35 460 37'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js new file mode 100644 index 0000000..5cc074c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js @@ -0,0 +1,359 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/MathOperators.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // COMPLEMENT + 0x2201: [846,22,500,56,444,'404 269Q412 269 418 267T428 261T435 253T441 245L444 240V172Q444 103 443 96Q440 81 431 65T403 27T344 -7T250 -21T156 -8T97 27T69 65T58 96Q56 103 56 413Q56 722 58 729Q74 822 215 845Q221 846 229 846H243Q282 846 290 845Q422 826 443 729Q444 722 444 653V586L442 583Q441 580 440 578T436 573T430 567T423 562T415 558T404 556Q377 556 367 583Q364 590 364 654V719Q363 721 360 726T355 733Q326 766 250 766H249Q235 766 219 765T174 752T137 719V107Q145 83 178 71T251 58H254Q340 58 364 107V172Q364 176 364 187T363 204Q363 269 404 269'], + + // THERE DOES NOT EXIST + 0x2204: [860,166,556,55,497,'55 676Q55 688 66 694H199L333 696L351 772Q364 827 370 843T386 860Q393 860 399 854T406 841Q406 836 391 765L375 696Q375 694 431 694H484Q491 688 497 681V12L493 5L486 1L353 -1H219L202 -79Q184 -153 180 -159Q175 -166 165 -166Q146 -166 146 -148Q146 -141 161 -76T177 -4Q177 -1 122 -1H68Q55 12 55 20T66 39H126L186 41L219 181Q226 215 234 251T246 305T251 325Q251 328 166 328H79Q68 345 68 347Q68 352 75 359L82 368H262L291 505Q298 539 306 575T319 630T324 650V654H68Q55 669 55 676ZM457 368V654H411Q366 654 366 652Q365 651 361 634T349 580T333 514Q303 373 302 372V368H457ZM457 39V328H375Q293 328 293 325Q292 322 260 183T228 41T344 39H457'], + + // EMPTY SET + 0x2205: [587,3,778,55,720,'624 470Q624 468 639 446T668 382T683 291Q683 181 612 99T437 -1Q425 -2 387 -2T337 -1Q245 18 193 70L179 81L131 39Q96 8 89 3T75 -3Q55 -3 55 17Q55 24 61 30T111 73Q154 113 151 113Q151 114 140 130T115 177T95 241Q94 253 94 291T95 341Q112 431 173 495Q265 587 385 587Q410 587 437 581Q522 571 582 513L595 501L642 541Q689 586 695 586Q696 586 697 586T699 587Q706 587 713 583T720 568Q720 560 711 551T664 510Q651 499 642 490T628 475T624 470ZM564 477Q517 522 448 539Q428 546 375 546Q290 546 229 492T144 370Q133 332 133 279Q136 228 151 195Q157 179 168 160T184 141Q186 141 375 307T564 477ZM642 290Q642 318 637 343T625 386T611 416T598 436T593 444Q590 444 402 277T213 108Q213 104 231 89T293 55T392 37Q495 37 568 111T642 290'], + + // SMALL CONTAINS AS MEMBER + 0x220D: [440,1,429,102,456,'154 -1Q122 -1 112 3T102 26Q102 63 158 63H178Q192 64 206 65T228 66T240 68Q301 85 324 146L329 157H244Q158 157 153 161Q149 162 145 169T140 183Q140 201 158 215L167 221H256L344 223L349 237Q352 262 352 287Q352 308 351 315Q341 352 315 368T256 385Q231 385 206 376T166 356T149 346Q143 346 138 364T132 388Q132 396 147 406Q198 440 252 440Q291 440 318 435Q421 404 451 301Q456 288 456 248V234Q456 151 391 86Q330 25 240 3Q212 -1 154 -1'], + + // MINUS SIGN + 0x2212: [270,-230,500,84,417,'84 237T84 250T98 270H402Q417 262 417 250T402 230H98Q84 237 84 250'], + + // DOT PLUS + 0x2214: [766,93,778,57,722,'339 717Q339 739 354 752T388 766Q410 766 424 751T439 716T424 681T390 666Q369 666 354 681T339 717ZM57 237T57 250T71 270H369V425L370 581Q380 594 389 594Q402 594 409 579V270H707Q722 262 722 250T707 230H409V-79Q401 -93 391 -93H389H387Q375 -93 369 -79V230H71Q57 237 57 250'], + + // SET MINUS + 0x2216: [430,23,778,91,685,'91 404T91 410T97 423T111 430Q117 430 395 224Q676 13 678 10Q685 3 685 -3T678 -16T664 -23Q658 -23 380 184T98 397Q91 404 91 410'], + + // PROPORTIONAL TO + 0x221D: [472,-28,778,56,722,'56 250Q56 346 122 409T276 472Q349 472 407 430T486 326L489 316Q490 317 493 326T501 345T514 367T531 393Q557 425 602 448T698 472Q722 472 722 452Q722 437 702 435T642 421T571 377Q520 323 520 250Q520 179 568 126T693 68Q722 66 722 48Q722 28 698 28Q636 28 576 67T493 174L490 184Q489 181 483 167T475 150T468 136T458 120T447 107T432 90T412 73Q350 28 277 28Q188 28 122 91T56 250ZM199 68T278 68T408 122T459 250Q459 322 414 370T308 430Q302 431 273 431Q204 431 150 380T96 250Q96 176 147 122'], + + // ANGLE + 0x2220: [694,0,722,55,666,'71 0L68 2Q65 3 63 5T58 11T55 20Q55 22 57 28Q67 43 346 361Q397 420 474 508Q595 648 616 671T647 694T661 688T666 674Q666 668 663 663Q662 662 627 622T524 503T390 350L120 41L386 40H653Q666 30 666 20Q666 8 651 0H71'], + + // MEASURED ANGLE + 0x2221: [714,20,722,55,666,'71 0L68 2Q65 3 63 5T58 11T55 20Q55 22 57 28Q64 38 348 373T638 712Q644 714 646 714Q653 714 659 709T666 694V693Q666 687 633 647Q619 631 576 580Q528 524 495 485Q336 296 329 289Q328 288 348 264T395 182T433 54L434 40H651Q666 32 666 20T651 0H436Q431 -20 416 -20Q400 -20 396 -4V0H71ZM394 40Q394 51 389 76T366 149T319 234L302 256L119 41L256 40H394'], + + // SPHERICAL ANGLE + 0x2222: [551,51,722,55,666,'666 -32Q666 -51 646 -51Q639 -51 365 85L75 228Q55 238 55 250Q55 257 59 262T68 268L72 270L611 536Q642 551 647 551T659 547T666 532Q666 521 657 515L525 449Q525 448 535 424T556 352T566 250T556 148T536 77T525 51L657 -15Q666 -21 666 -32ZM526 250Q526 297 517 342T499 409T488 431Q487 431 304 341T121 250T304 159T488 69Q526 143 526 250'], + + // DIVIDES + 0x2223: [430,23,222,91,131,'91 417Q104 430 111 430T131 417V-10Q116 -23 111 -23T91 -10V417'], + + // DOES NOT DIVIDE + 0x2224: [750,252,278,-20,296,'118 737Q131 750 138 750L151 746L158 739V579L160 421L213 470Q269 519 276 519Q284 519 290 513T296 499V498Q296 493 291 488T244 445Q225 428 213 417L158 368V-239Q143 -252 136 -252L124 -248L120 -241L118 44V328L62 279Q4 231 0 230Q-8 230 -14 236T-20 250Q-20 257 -11 265T62 332L118 384V737'], + + // PARALLEL TO + 0x2225: [431,23,389,55,331,'55 417Q69 431 76 431T95 419V-12Q84 -23 76 -23Q72 -23 69 -22T62 -16T55 -10V417ZM293 419Q300 431 310 431L324 424L331 417V-10Q316 -23 309 -23L297 -19L293 -12V419'], + + // NOT PARALLEL TO + 0x2226: [751,250,500,-20,518,'131 737Q134 739 138 743T144 748T151 750T171 737V199L327 357V737Q340 750 347 750Q351 750 353 749T360 743T367 737V397L429 457Q493 518 498 519Q506 519 512 512T518 500Q518 489 442 417L367 339V-237Q352 -250 346 -250L333 -243L327 -237V301L171 143V-237Q156 -250 151 -250T131 -237V101L69 41Q24 -3 15 -12T0 -21Q-8 -21 -14 -14T-20 -2Q-20 5 -7 19T56 81L131 159V737'], + + // THEREFORE + 0x2234: [471,82,667,24,643,'273 411Q273 437 291 454T334 471Q358 471 375 454T393 411T376 368T333 351Q307 351 290 368T273 411ZM84 38Q110 38 126 21T143 -22Q143 -46 127 -64T83 -82Q57 -82 41 -65T24 -22Q24 4 41 21T84 38ZM524 -22Q524 4 541 21T584 38Q608 38 625 21T643 -22Q643 -45 627 -63T583 -82Q557 -82 541 -65T524 -22'], + + // BECAUSE + 0x2235: [471,82,667,23,644,'23 411Q23 437 41 454T84 471Q108 471 125 454T143 411T126 368T83 351Q57 351 40 368T23 411ZM523 411Q523 437 541 454T584 471Q608 471 625 454T643 411T626 368T583 351Q557 351 540 368T523 411ZM274 -22Q274 4 291 21T334 38Q356 38 374 22T392 -22T375 -65T333 -82Q307 -82 291 -65T274 -22'], + + // TILDE OPERATOR + 0x223C: [365,-132,778,55,719,'73 132Q55 132 55 172Q55 220 79 272Q95 301 111 319Q148 353 195 363Q199 364 212 364Q262 364 294 350T408 272Q472 222 522 212Q537 208 555 208Q606 208 646 243Q671 268 680 296T691 342T702 365Q713 365 716 354T719 314Q714 236 664 179L660 176Q657 173 654 170T644 163T631 154T615 146T596 139T574 134T549 132Q510 132 465 156T386 211T307 265T223 290Q162 290 124 249T86 165Q86 155 82 144T73 132'], + + // REVERSED TILDE + 0x223D: [367,-133,778,56,722,'222 133Q147 133 102 197T56 335Q56 362 66 365Q71 369 77 364Q83 356 84 335T90 298Q102 254 137 222T223 189Q258 189 292 206T355 250T413 301T477 346T550 367Q628 367 673 309T722 171Q722 133 708 133Q703 133 699 141T694 162Q694 220 655 265T555 311Q519 311 485 293T421 248T363 196T298 152T222 133'], + + // stix-not, vert, similar + 0x2241: [467,-32,778,55,719,'220 366Q258 366 297 347T361 308T391 288Q394 288 464 370Q494 407 510 425T535 454T546 465T552 467H553Q560 467 566 461T573 448Q573 439 499 350Q424 266 424 261Q424 259 442 247T492 222T554 209Q607 209 646 243Q671 268 680 295T690 341T702 366Q719 366 719 314Q716 265 695 226Q682 199 664 179Q614 132 555 132Q517 132 477 151T412 190T383 210T347 172T278 89T233 37Q228 32 220 32Q210 32 206 38T201 48Q201 57 266 137Q272 144 275 148Q351 231 351 237Q351 239 333 251T283 276T221 289Q159 289 123 248T86 166Q86 156 82 145T73 132Q55 132 55 172Q55 220 79 272Q95 301 111 319Q161 366 220 366'], + + // MINUS TILDE + 0x2242: [463,-34,778,55,720,'55 439T55 443T56 449T62 456T68 463H706Q720 449 720 443T706 423H68Q55 439 55 443ZM56 72Q56 112 73 152T130 225T224 257Q259 257 294 240T360 199T419 149T484 107T553 90Q603 90 643 125T691 223Q693 257 704 257Q717 257 717 221Q717 147 671 91T554 34Q517 34 481 51T414 93T355 142T291 184T222 201Q172 201 131 167T84 67Q81 34 71 34Q56 37 56 72'], + + // APPROXIMATELY BUT NOT ACTUALLY EQUAL TO + 0x2246: [652,155,778,54,720,'55 417Q55 479 101 528T222 578Q259 578 294 564T393 507Q413 493 434 480T469 460T484 454L537 549Q587 639 595 647Q600 652 607 652Q615 652 621 647T628 634Q628 625 575 536Q524 446 524 443Q527 440 555 440Q603 440 644 469T691 547Q694 578 706 578T718 556Q718 555 718 551T717 545Q717 488 684 445T595 387Q582 384 558 384Q530 384 508 389L493 394L404 238L557 236H708Q720 224 720 217T706 196H379L291 43L499 41H708Q720 29 720 21T706 1H268L226 -71Q186 -143 179 -148Q173 -155 165 -155T152 -150T146 -137Q146 -133 184 -64L222 1H144L66 3L59 7Q54 14 54 20Q54 29 66 41H246L333 194Q333 196 202 196H68Q55 211 55 218T66 236H213L357 238L457 409L437 421Q432 423 393 450T307 500T222 523Q171 523 129 491T84 414Q82 383 70 383Q55 383 55 417'], + + // ALMOST EQUAL TO + 0x2248: [481,-49,778,55,719,'55 326Q55 394 101 437T226 481Q268 479 313 460T392 419T469 379T555 361Q622 361 662 401Q686 423 688 450Q693 479 702 479H705Q719 479 719 442Q719 367 670 327T554 286Q512 286 466 304T386 345T307 385T220 404Q184 404 157 394T120 374L111 363Q86 339 86 317Q86 288 71 288Q55 288 55 326ZM55 90Q55 164 105 205T226 246Q269 243 314 224T392 183T470 144T558 126Q622 126 662 166Q686 187 688 214Q693 244 704 244Q716 244 719 210Q719 165 702 132T658 82T605 58T552 50T498 58T447 77T384 110Q322 146 302 152Q263 168 220 168Q179 168 144 152Q128 147 107 125T86 81Q86 52 71 52Q55 52 55 90'], + + // ALMOST EQUAL OR EQUAL TO + 0x224A: [579,39,778,51,725,'220 523Q163 523 124 486T84 412Q81 383 69 383Q56 383 56 413Q56 441 67 470Q78 508 111 537T187 575Q203 579 219 579Q248 579 271 572Q304 565 393 508Q498 439 551 439Q620 439 662 486Q688 512 693 557Q693 565 697 572T707 579Q719 579 719 548Q719 483 673 434T550 384Q512 384 467 405T386 453T305 501T220 523ZM222 288Q164 288 124 251T84 177Q81 148 69 148Q56 148 56 178Q56 206 67 235Q78 274 111 302T187 339Q198 343 220 343Q244 343 259 341T308 322T393 272Q496 203 553 203Q612 203 651 241T691 312Q693 343 705 343Q719 343 719 313Q719 245 673 199Q626 148 552 148Q513 148 467 170T385 218T304 266T222 288ZM51 -19Q51 -6 62 -1H387Q713 -1 715 -3Q725 -10 725 -20Q725 -27 718 -34Q714 -38 672 -38T387 -39H62Q51 -25 51 -19'], + + // GEOMETRICALLY EQUIVALENT TO + 0x224E: [492,-8,778,56,723,'245 367Q251 415 288 453T392 492Q445 492 485 456T532 367H707Q722 359 722 347Q722 334 711 331T665 327H608H509Q500 332 498 336Q496 338 493 363T472 411Q443 451 389 451H387Q335 451 305 411Q290 392 287 374T282 344T268 327H72Q56 332 56 347Q56 360 70 367H245ZM56 153Q56 168 72 173H268Q277 168 279 164Q281 162 284 137T305 89Q334 49 389 49H391Q442 49 472 89Q487 108 490 126T495 156T509 173H608H666Q701 173 711 170T722 153T707 133H532Q526 81 486 45T389 8Q331 8 291 45T245 133H70Q56 140 56 153'], + + // DIFFERENCE BETWEEN + 0x224F: [492,-133,778,56,722,'245 367Q251 415 288 453T392 492Q445 492 485 456T532 367H707Q722 359 722 347Q722 334 711 331T665 327H608H509Q500 332 498 336Q496 338 493 363T472 411Q443 451 389 451H387Q335 451 305 411Q290 392 287 374T282 344T268 327H72Q56 332 56 347Q56 360 70 367H245ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153'], + + // GEOMETRICALLY EQUAL TO + 0x2251: [609,108,778,56,722,'421 474T389 474T339 493T321 541Q321 566 337 587T391 609Q456 602 456 541Q456 512 439 493ZM56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153ZM421 -108T389 -108T339 -89T321 -41Q321 -16 337 5T391 27Q456 20 456 -41Q456 -70 439 -89'], + + // APPROXIMATELY EQUAL TO OR THE IMAGE OF + 0x2252: [601,101,778,15,762,'15 541Q15 569 33 585T75 601T117 585T135 541Q135 514 118 498T75 481T32 498T15 541ZM56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153ZM642 -41Q642 -17 658 0T702 18Q726 18 744 3T762 -41Q762 -67 745 -84T702 -101Q676 -101 659 -85T642 -41'], + + // IMAGE OF OR APPROXIMATELY EQUAL TO + 0x2253: [601,102,778,14,762,'642 541Q642 569 660 585T702 601T744 585T762 541Q762 515 745 498T702 481Q676 481 659 497T642 541ZM56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153ZM14 -41Q14 -15 31 1T74 18Q101 18 118 0T135 -41Q135 -64 118 -83T75 -102Q51 -102 33 -85T14 -41'], + + // RING IN EQUAL TO + 0x2256: [367,-133,778,56,722,'56 347Q56 360 70 367H707Q722 359 722 347Q722 334 711 331T658 327H586H465L472 318Q496 288 496 250T472 182L465 173H586H663Q700 173 711 170T722 153T707 133H70Q56 140 56 153Q56 168 72 173H312L305 182Q281 212 281 250T305 318L312 327H72Q56 332 56 347ZM473 250Q473 265 472 273T460 297T428 327H349Q328 313 318 298T306 273T304 250Q304 235 305 227T317 203T349 173H428Q449 187 459 202T471 227T473 250'], + + // RING EQUAL TO + 0x2257: [721,-133,778,56,722,'279 612Q279 656 310 688T388 721Q433 721 465 689T498 612Q498 573 470 538T389 503Q336 503 308 538T279 612ZM458 614Q458 637 452 651T433 672T411 679T383 680T352 675T333 664T324 647T321 629T320 611Q320 593 321 584T332 562T359 545Q366 543 389 543H391Q406 543 414 544T435 552T452 573T458 614ZM56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153'], + + // DELTA EQUAL TO + 0x225C: [859,-133,778,56,723,'192 482H190Q187 483 185 484T181 488T177 493T175 501Q175 506 178 512Q184 523 278 687T375 853Q379 857 383 857Q385 857 387 858T390 859Q397 859 403 853Q405 851 499 687T600 512Q603 506 603 501Q603 488 587 482H192ZM548 523L389 798Q388 798 309 661T230 523T389 522T548 523ZM56 347Q56 360 70 367H708Q723 359 723 347Q723 336 709 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H709Q723 163 723 153Q723 140 708 133H70Q56 140 56 153'], + + // LESS-THAN OVER EQUAL TO + 0x2266: [753,175,778,83,694,'674 753Q682 753 688 747T694 732T687 718Q686 717 417 589L151 463L399 345Q687 209 691 204Q694 198 694 193Q694 175 676 173H670L382 309Q92 446 90 448Q83 453 83 465Q84 476 96 482Q104 486 382 617T665 751Q669 753 674 753ZM84 39Q84 49 99 59H678Q694 53 694 39Q694 26 679 19H98Q84 26 84 39ZM83 -157Q83 -153 84 -150T86 -145T89 -141T92 -139T96 -137T99 -135H678Q694 -146 694 -155Q694 -168 679 -175H98Q84 -168 83 -157'], + + // GREATER-THAN OVER EQUAL TO + 0x2267: [753,175,778,82,694,'83 733Q83 741 89 747T99 753Q107 753 253 685T543 548T687 478Q694 473 694 463T687 448Q685 446 395 309L107 173H101Q83 175 83 193Q83 194 83 196Q82 203 98 212Q117 222 248 284Q326 321 378 345L626 463L360 589Q291 622 200 665Q112 706 98 714T83 733ZM84 39Q84 49 99 59H678Q694 53 694 39Q694 26 679 19H98Q84 26 84 39ZM83 -157Q83 -153 84 -150T86 -145T89 -141T92 -139T96 -137T99 -135H678Q694 -146 694 -155Q694 -168 679 -175H98Q84 -168 83 -157'], + + // stix-less, vert, not double equals + 0x2268: [752,286,778,82,694,'86 472Q93 477 381 614T673 752Q680 752 686 746T693 732T689 721Q686 715 418 590L151 461L418 332Q684 207 689 201Q693 195 693 190Q693 183 687 177T675 170Q668 170 380 307T86 450Q82 454 82 461Q82 467 86 472ZM82 33Q82 37 83 40T89 47T95 54H473L520 105Q569 156 571 156Q573 157 578 157Q586 157 592 151T598 136Q598 130 562 92L526 56L604 54H682Q693 43 693 35Q693 31 692 28T686 21T680 14H489L342 -139L513 -142H682Q693 -148 693 -160Q693 -167 680 -182H304L258 -230Q248 -240 237 -251T221 -268T211 -278T203 -284T197 -286Q189 -286 184 -280T178 -264Q178 -257 213 -219L249 -182H171L93 -179L86 -175Q82 -170 82 -163Q82 -155 95 -142H289L360 -64L433 14H262L93 16Q82 23 82 33'], + + // stix-gt, vert, not double equals + 0x2269: [752,286,778,82,693,'89 745Q95 752 100 752Q106 752 394 615T689 472Q693 468 693 461T689 450Q684 445 396 308T100 170Q95 170 89 176T82 190Q82 195 86 201Q91 208 358 332L624 461L358 590Q90 715 86 721Q82 725 82 731Q82 739 89 745ZM82 33Q82 37 83 40T89 47T95 54H473L520 105Q569 156 571 156Q573 157 578 157Q586 157 592 151T598 136Q598 130 562 92L526 56L604 54H682Q693 43 693 35Q693 31 692 28T686 21T680 14H489L342 -139L513 -142H682Q693 -148 693 -160Q693 -167 680 -182H304L258 -230Q248 -240 237 -251T221 -268T211 -278T203 -284T197 -286Q189 -286 184 -280T178 -264Q178 -257 213 -219L249 -182H171L93 -179L86 -175Q82 -170 82 -163Q82 -155 95 -142H289L360 -64L433 14H262L93 16Q82 23 82 33'], + + // BETWEEN + 0x226C: [751,251,500,74,425,'104 730Q104 749 123 749Q130 749 138 745Q186 717 237 671L250 659L261 670Q297 703 332 726T375 750T389 744T395 730Q395 721 390 717T364 699T322 668Q290 641 283 632Q280 628 281 627T293 612Q425 454 425 250Q425 144 388 51T293 -112Q282 -125 281 -126T283 -132Q306 -162 379 -209Q395 -219 395 -230Q395 -238 389 -244T375 -250T335 -228T262 -171L250 -159L238 -170Q202 -203 167 -226T124 -250T110 -244T104 -230Q104 -219 121 -209Q199 -156 216 -132Q219 -128 218 -127T206 -112Q74 46 74 250T206 612Q217 625 218 626T216 632Q199 656 121 709Q104 719 104 730ZM249 -94Q364 61 364 250Q364 430 265 574Q253 590 249 594L242 583Q134 439 134 250Q134 114 192 -1Q212 -44 242 -83L249 -94'], + + // stix-not, vert, less-than + 0x226E: [709,209,778,82,693,'693 -14T693 -20T687 -33T675 -41Q667 -41 506 37L344 112Q342 112 262 -46Q184 -196 176 -205Q172 -209 168 -209T162 -208Q155 -208 151 -203T146 -190Q146 -178 171 -137Q193 -91 251 21L306 132L198 183Q142 208 118 220T88 238T82 249Q82 253 86 261Q92 267 278 357L464 443L529 572Q561 637 577 667T597 703T607 708Q615 708 622 702T629 688Q629 680 575 579L524 474Q524 473 545 482T598 508Q666 541 673 541T686 535T693 521Q693 512 679 504T589 459L493 414L360 150Q366 148 378 142T431 116T529 70Q686 -8 689 -10Q693 -14 693 -20ZM380 277L433 383Q432 385 292 319T151 250T237 209T324 170L380 277'], + + // stix-not, vert, greater-than + 0x226F: [708,209,778,82,693,'82 514T82 520T89 533T100 541Q106 541 271 463Q434 386 435 386L515 543Q593 699 600 706Q604 708 607 708Q615 708 622 702T629 688T549 526Q509 445 491 407T473 368Q522 343 580 317Q636 291 660 278T688 261T693 250V249Q693 241 681 234T580 184Q533 161 502 146Q317 59 315 59Q312 56 246 -74Q197 -170 186 -189T168 -209Q164 -209 162 -208Q155 -208 151 -203T146 -190Q146 -187 200 -79L253 28L218 11Q182 -6 144 -23T100 -41Q95 -41 89 -35T82 -21Q82 -12 96 -4T186 41L284 88L349 217Q377 273 395 311T413 350Q413 351 253 428Q101 498 86 510Q82 514 82 520ZM624 250Q461 330 455 330Q454 331 453 329T448 321T441 308T430 287T416 259T398 223L342 114L624 250'], + + // stix-not, vert, less-than-or-equal + 0x2270: [801,303,778,81,694,'82 -124Q82 -120 83 -117T89 -110T95 -103H220L284 50Q346 204 344 206L218 268Q153 297 123 313T87 333T82 344T86 355Q104 369 291 455Q491 552 491 553L542 673Q581 767 590 784T609 801Q616 801 622 795T629 781Q629 773 586 677Q546 581 546 577L609 606Q669 635 673 635Q680 635 686 629T693 615Q693 610 692 608T670 593T604 561L524 521L400 226L542 157Q617 123 649 107T687 85T694 72Q694 66 690 60T679 54Q664 54 526 121Q513 127 495 136T464 150T438 162T416 173T399 180T388 185L384 186Q383 186 322 41L262 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 174 -213T202 -143H146L93 -141Q82 -134 82 -124ZM418 370L466 495Q464 495 308 420T151 344T204 317T311 267T364 244Q364 247 418 370'], + + // stix-not, vert, greater-than-or-equal + 0x2271: [801,303,778,82,694,'97 54Q82 54 82 72Q82 79 86 84Q95 91 222 153L351 215L398 324L442 433L258 519Q95 597 87 604Q82 608 82 615T88 628T102 635Q107 635 424 484L458 468L524 630Q593 789 597 795Q601 801 609 801Q616 801 622 795T629 781L562 615L493 450L589 406Q665 371 679 362T694 344Q694 339 693 337T677 326T631 302T538 257Q504 241 465 223T406 195T386 186Q384 185 322 39L262 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 174 -213T202 -143H146L93 -141Q82 -134 82 -124Q82 -120 83 -117T89 -110T95 -103H220L273 26Q326 156 326 157L218 106Q109 54 97 54ZM553 379Q480 412 480 415Q479 415 460 372T423 285T406 241Q408 240 516 291T624 344L553 379'], + + // stix-less-than or (contour) similar + 0x2272: [732,228,778,56,722,'674 732Q682 732 688 726T694 711T687 697Q686 696 417 568L151 442L399 324Q687 188 691 183Q694 177 694 172Q694 154 676 152H670L382 288Q92 425 90 427Q83 432 83 444Q84 455 96 461Q104 465 382 596T665 730Q669 732 674 732ZM56 -194Q56 -107 106 -51T222 6Q260 6 296 -12T362 -56T420 -108T483 -153T554 -171Q616 -171 654 -128T694 -29Q696 6 708 6Q722 6 722 -26Q722 -102 676 -164T557 -227Q518 -227 481 -209T415 -165T358 -113T294 -69T223 -51Q163 -51 125 -93T83 -196Q81 -228 69 -228Q56 -228 56 -202V-194'], + + // stix-greater-than or (contour) similar + 0x2273: [732,228,778,56,722,'90 697Q83 704 83 712T88 726T99 732Q107 732 253 664T543 527T687 457Q694 452 694 442T687 427Q685 425 395 288L107 152H101Q83 154 83 172Q83 173 83 175Q82 182 98 191Q117 201 248 263Q326 300 378 324L626 442L360 568Q91 696 90 697ZM56 -194Q56 -107 106 -51T222 6Q260 6 296 -12T362 -56T420 -108T483 -153T554 -171Q616 -171 654 -128T694 -29Q696 6 708 6Q722 6 722 -26Q722 -102 676 -164T557 -227Q518 -227 481 -209T415 -165T358 -113T294 -69T223 -51Q163 -51 125 -93T83 -196Q81 -228 69 -228Q56 -228 56 -202V-194'], + + // LESS-THAN OR GREATER-THAN + 0x2276: [681,253,778,44,734,'734 181Q734 173 728 167T714 161Q711 161 386 280T54 404Q44 408 44 421Q44 432 52 437Q66 443 388 562T714 681Q721 681 727 675T734 661Q734 651 722 645Q711 639 462 546Q441 539 420 531L122 421L420 311L723 198Q734 192 734 181ZM44 247Q44 255 50 261T63 267Q66 267 391 148T723 24Q734 18 734 7T723 -10Q716 -14 391 -133T63 -253Q56 -253 50 -247T44 -233Q44 -223 55 -217Q67 -210 317 -118Q337 -110 357 -103L655 7L357 117L54 230Q44 236 44 247'], + + // GREATER-THAN OR LESS-THAN + 0x2277: [681,253,778,83,694,'83 661Q83 668 88 674T104 681Q111 679 396 560Q686 437 687 436Q694 431 694 421T687 406Q686 405 543 344T253 222T101 161Q83 163 83 180Q83 194 95 199Q96 199 130 213T232 257T361 311L621 421L357 532Q307 553 233 584Q121 631 102 640T83 661ZM673 267Q694 267 694 248Q694 237 687 232Q684 229 420 118L156 7L416 -103L683 -215Q694 -222 694 -233Q694 -251 676 -253Q670 -253 524 -192T235 -70T90 -8Q83 -1 83 7Q83 19 94 24Q97 25 378 144T667 266Q669 267 673 267'], + + // PRECEDES OR EQUAL TO + 0x227C: [580,153,778,83,694,'112 270Q83 270 83 290Q83 301 94 307Q98 310 118 310Q516 310 620 464Q635 486 642 510T651 548T657 571T675 580Q693 577 693 559V552Q684 472 628 410T465 314Q436 303 372 290Q373 290 388 287T425 278T465 266Q674 199 693 28L694 17Q688 5 683 3Q677 0 673 0Q656 0 653 24Q623 270 118 270H112ZM110 116Q83 116 83 136T110 156H113Q134 156 160 155T231 146T318 128T407 95T489 44T550 -30T583 -131Q583 -153 563 -153Q556 -153 553 -152T547 -145T542 -127Q531 -54 478 0Q425 53 333 83T123 116H110'], + + // SUCCEEDS OR EQUAL TO + 0x227D: [580,154,778,83,694,'668 310Q694 310 694 290Q694 285 691 279Q684 271 664 270Q550 268 464 257T301 220T179 146T124 27Q119 0 103 0T83 16Q83 21 83 31T92 68T113 121T157 177T229 231Q295 268 405 290Q404 290 389 293T352 302T312 314Q138 371 96 500Q83 541 83 562Q83 568 89 574T103 580Q115 580 120 570T126 542T138 497T173 442Q289 310 659 310H668ZM194 -131Q201 -60 241 -6T343 82T477 133T628 155Q632 155 644 155T661 156Q685 155 690 147Q694 143 694 136Q694 132 693 129T689 124T685 120T681 117L656 116Q596 114 543 106T436 79T342 35T272 -33T235 -127Q231 -154 212 -154Q203 -153 199 -147T194 -136V-131'], + + // PRECEDES OR EQUIVALENT TO + 0x227E: [732,228,778,56,722,'84 442Q84 455 91 459T117 463Q120 463 126 463T137 462Q388 466 512 526T653 705Q657 732 676 732Q685 731 689 725T694 714V708Q689 662 672 624T626 559T569 513T500 479T435 458T373 442Q379 441 404 435T440 426T477 414T533 392Q592 362 630 319T681 241T694 174Q694 153 674 153Q662 153 657 163T652 188T640 231T606 287Q500 416 137 422H114Q104 422 98 423T88 428T84 442ZM56 -194Q56 -107 106 -51T222 6Q260 6 296 -12T362 -56T420 -108T483 -153T554 -171Q616 -171 654 -128T694 -29Q696 6 708 6Q722 6 722 -26Q722 -102 676 -164T557 -227Q518 -227 481 -209T415 -165T358 -113T294 -69T223 -51Q163 -51 125 -93T83 -196Q81 -228 69 -228Q56 -228 56 -202V-194'], + + // SUCCEEDS OR EQUIVALENT TO + 0x227F: [732,228,778,56,722,'84 710Q84 732 102 732Q115 732 119 722T125 696T137 652T171 597Q277 468 640 462H661Q694 462 694 442T661 422H640Q578 421 526 417T415 403T309 376T222 333T156 268T124 179Q122 162 118 158T103 153Q100 153 98 153T95 154T93 155T90 158T85 163Q83 167 83 176Q88 222 105 260T151 325T208 371T277 405T342 426T404 442Q401 443 380 447T345 456T302 469T245 492Q125 551 92 661Q84 695 84 710ZM56 -194Q56 -107 106 -51T222 6Q260 6 296 -12T362 -56T420 -108T483 -153T554 -171Q616 -171 654 -128T694 -29Q696 6 708 6Q722 6 722 -26Q722 -102 676 -164T557 -227Q518 -227 481 -209T415 -165T358 -113T294 -69T223 -51Q163 -51 125 -93T83 -196Q81 -228 69 -228Q56 -228 56 -202V-194'], + + // DOES NOT PRECEDE + 0x2280: [705,208,778,82,693,'386 292Q388 292 439 393T543 598T598 703Q599 703 603 704T609 705Q616 705 622 699T629 685T533 494Q440 308 440 305Q451 310 462 312Q547 342 592 388T651 505Q654 525 658 532T673 539Q680 539 686 533T693 519Q693 495 678 450Q638 341 500 283Q433 259 418 259Q416 259 411 251T406 241T415 239Q482 224 544 190Q674 121 691 -10Q693 -28 691 -32Q684 -43 672 -43Q664 -43 658 -37Q656 -33 650 -6T634 47T589 109T500 168Q473 179 436 190T388 201H386L284 -1Q261 -45 232 -101T191 -181T178 -206Q176 -206 172 -207T166 -208Q160 -208 153 -202T146 -188Q146 -185 246 12Q344 206 344 210Q344 213 305 217T213 225T124 228H95Q82 241 82 248Q82 253 95 268H124Q172 268 236 273T343 283T386 292'], + + // stix-not (vert) succeeds + 0x2281: [705,208,778,82,693,'103 -43Q96 -43 89 -39T82 -26L84 -10Q105 141 275 212Q342 236 355 236Q360 236 364 245L369 256H360Q284 280 275 283Q115 351 86 490Q82 507 82 517Q82 526 88 532T103 538Q110 538 115 534Q119 531 122 517T128 486T143 444T174 397T231 351T320 310Q371 292 389 292L491 496Q595 701 598 703Q599 703 603 704T609 705Q616 705 622 699T629 685Q629 684 531 485Q431 296 431 288Q431 278 520 273T651 268H680Q693 253 693 248Q693 241 680 228H651Q591 228 491 218T386 201L284 -1Q261 -45 232 -101T191 -181T178 -206Q176 -206 172 -207T166 -208Q160 -208 153 -202T146 -188Q146 -182 302 125L335 190L324 185Q313 185 289 172Q241 153 208 128T159 78T135 31T124 -11T118 -37Q112 -43 103 -43'], + + // stix-/nsubseteq N: not (vert) subset, equals + 0x2288: [801,303,778,83,693,'146 -283Q146 -282 174 -213T202 -143H115Q102 -127 102 -123T115 -103H220L291 68L278 73Q203 101 153 157T86 288Q83 309 83 344Q83 380 86 399Q107 480 160 539Q222 601 298 621Q328 630 345 631T435 635L526 637L560 715Q587 778 593 789T609 801Q616 801 622 795T629 781Q629 780 625 771T614 742T600 706L571 637Q571 635 626 635H680Q693 620 693 613T689 601L682 597L618 595H553L449 346Q425 288 399 223T359 127T346 95H356Q365 95 381 95T417 94T463 93T515 93H682Q693 82 693 74T680 53H511Q420 55 335 55L329 57L262 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283ZM509 590Q509 595 438 595Q354 595 318 586Q246 567 195 516T126 395Q123 378 123 344T126 293Q141 229 184 181T291 110L306 104L406 346L509 590'], + + // stix-/nsupseteq N: not (vert) superset, equals + 0x2289: [801,303,778,82,691,'82 606T82 613T95 635H251H348Q408 635 435 632T502 615L515 608L520 617Q520 619 558 708Q584 774 591 787T609 801Q616 801 622 795T629 781Q629 775 562 615L551 590L569 577Q646 527 678 437Q691 398 691 344T678 250Q653 182 597 132T469 64Q427 53 366 53H326L295 -25L262 -103H660Q673 -118 673 -124Q673 -129 669 -136L662 -141L453 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 174 -213T202 -143H95Q82 -128 82 -123T95 -103H220L251 -25L284 53H189L93 55L86 59Q82 64 82 71T95 93H302L400 333Q498 569 498 573L444 590Q431 593 260 595L93 597L86 601Q82 606 82 613ZM652 344V354Q652 451 575 521Q571 526 557 538T537 551Q534 551 533 548Q533 543 438 319L344 95L371 93H386Q487 93 557 150T649 293Q652 309 652 344'], + + // stix-subset, not equals, variant + 0x228A: [635,241,778,84,693,'693 72Q693 68 692 66T686 59T680 52H524Q398 52 367 53T309 63Q236 82 180 132T98 250Q84 288 84 343Q84 397 98 437Q126 515 193 568T346 632Q347 632 373 633T440 634T520 635H680Q693 620 693 615Q693 608 680 595H526Q364 595 353 592Q279 582 221 539T138 430Q124 392 124 343Q124 296 138 257Q163 192 221 149T353 95Q364 92 526 92H680Q693 79 693 72ZM102 -132T102 -125T115 -103H382L420 -68Q429 -60 438 -52T452 -39T463 -28T472 -20T478 -14T483 -10T487 -7T490 -6T493 -5T496 -5Q502 -5 508 -12T515 -28Q515 -34 513 -37Q512 -38 507 -42T492 -55T475 -70L440 -101L562 -103H682Q693 -114 693 -122T680 -143H395L355 -179Q289 -241 280 -241Q273 -241 267 -235T260 -221T265 -208T300 -174L335 -143H224L113 -141L106 -137Q102 -132 102 -125'], + + // stix-superset, not equals, variant + 0x228B: [635,241,778,82,691,'82 615Q82 620 95 635H251Q378 635 409 634T469 623Q540 605 596 555T678 437Q691 397 691 343T678 250Q649 172 581 119T426 55Q415 52 251 52H95Q93 55 89 59T84 65T82 72Q82 79 95 92H249Q411 92 422 95Q496 105 554 148T638 257Q651 296 651 343Q651 391 638 430Q613 495 555 538T422 592Q411 595 249 595H95Q82 608 82 615ZM82 -132T82 -125T95 -103H380L420 -57Q452 -21 460 -14T474 -6Q482 -6 488 -12T495 -25T451 -81L433 -101L549 -103H662Q673 -114 673 -122T660 -143H395L355 -190Q311 -239 309 -239Q305 -241 302 -241Q294 -241 287 -235T280 -221T324 -163L342 -143H218L93 -141L86 -137Q82 -132 82 -125'], + + // SQUARE IMAGE OF + 0x228F: [539,41,778,83,694,'83 523Q87 535 99 539H679Q694 531 694 519Q694 506 679 499H123V-1H678Q694 -7 694 -21Q694 -34 679 -41H98Q93 -38 84 -28L83 247V523'], + + // SQUARE ORIGINAL OF + 0x2290: [539,41,778,64,714,'64 506T64 519T78 539H699Q706 536 714 526V-28Q706 -38 699 -41H78Q64 -34 64 -21Q64 -6 80 -1H674V499H78Q64 506 64 519'], + + // CIRCLED RING OPERATOR + 0x229A: [583,82,778,57,721,'57 250Q57 327 87 392T166 497T270 560T382 582H394Q512 582 610 500Q721 401 721 250Q721 112 626 15T389 -82Q251 -82 154 13T57 250ZM682 129T682 250T596 457T390 543Q269 543 183 457T96 250Q96 132 180 45T389 -43Q511 -43 596 43ZM250 250Q250 316 295 352T384 388Q451 388 489 347T528 250Q528 192 487 152T389 112Q331 112 291 152T250 250ZM488 250Q488 290 460 319T389 349Q348 349 319 320T290 250Q290 208 320 180T389 151Q431 151 459 181T488 250'], + + // CIRCLED ASTERISK OPERATOR + 0x229B: [583,82,778,57,721,'57 250Q57 327 87 392T166 497T270 560T382 582H394Q512 582 610 500Q721 401 721 250Q721 112 626 15T389 -82Q251 -82 154 13T57 250ZM682 129T682 250T596 457T390 543Q269 543 183 457T96 250Q96 132 180 45T389 -43Q511 -43 596 43ZM204 339Q204 357 215 366T238 375Q247 375 283 348Q300 336 311 328L368 286Q369 286 366 323T359 398T355 437Q357 456 379 465Q380 465 384 465T391 466Q403 465 412 457T423 437Q423 436 420 398T413 323T410 286L467 328Q476 334 486 341T501 353T513 361T523 368T529 372T535 374T541 375Q554 375 564 365T575 339Q575 325 566 318T519 292Q504 285 496 281L430 250L496 219Q552 192 559 188T572 175Q575 168 575 161Q575 148 566 137T541 126H538Q530 126 499 149Q480 163 467 172L410 214Q409 214 412 177T419 102T423 63Q423 59 421 54T411 43T389 36T368 42T357 54T355 63Q355 64 358 102T365 177T368 214L311 172Q302 165 293 159T279 148T268 140T260 134T254 131T250 128T246 127T242 126T238 126Q223 126 214 135T204 161T213 183T282 219L348 250L282 281Q226 308 219 312T206 325Q204 330 204 339'], + + // CIRCLED DASH + 0x229D: [583,82,778,57,721,'57 250Q57 327 87 392T166 497T270 560T382 582H394Q512 582 610 500Q721 401 721 250Q721 112 626 15T389 -82Q251 -82 154 13T57 250ZM682 129T682 250T596 457T390 543Q269 543 183 457T96 250Q96 132 180 45T389 -43Q511 -43 596 43ZM223 250Q223 263 233 267T280 271Q289 271 325 271T389 270H490Q535 270 545 267T555 250Q555 241 549 235Q544 231 527 231T389 230Q239 230 235 232Q223 236 223 250'], + + // SQUARED PLUS + 0x229E: [689,0,778,55,722,'71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71ZM369 365V649H95V365H369ZM682 365V649H409V365H682ZM369 40V325H95V40H369ZM682 40V325H409V40H682'], + + // SQUARED MINUS + 0x229F: [689,0,778,55,722,'71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71ZM682 365V649H95V365H682ZM682 40V325H95V40H682'], + + // SQUARED TIMES + 0x22A0: [689,0,778,55,722,'71 0Q59 4 55 16V346L56 676Q64 686 70 689H707Q714 686 722 676V13Q714 3 707 0H71ZM123 649Q147 625 214 555T335 430T389 374L654 649H123ZM95 70Q99 74 229 209T360 345L95 619V70ZM682 70V619L418 346Q417 344 549 207L682 70ZM654 41L400 304L388 315L123 41L256 40H522L654 41'], + + // SQUARED DOT OPERATOR + 0x22A1: [689,0,778,55,722,'71 0Q59 4 55 16V346L56 676Q64 686 70 689H709Q719 681 722 674V15Q719 10 709 1L390 0H71ZM682 40V649H95V40H682ZM330 345Q330 371 347 388T390 405Q412 405 430 389T448 345Q448 317 430 301T389 285T348 301T330 345'], + + // TRUE + 0x22A8: [695,0,611,55,556,'55 678Q55 679 56 681T58 684T61 688T65 691T70 693T77 694Q88 692 95 679V464H540Q554 456 555 446Q555 442 554 439T552 434T549 430T546 428T542 426T539 424H95V270H539Q540 270 542 269T545 267T549 264T552 260T554 255T555 248Q554 238 540 230H95V15Q88 2 77 0Q73 0 70 1T65 3T61 6T59 9T57 13T55 16V678'], + + // FORCES + 0x22A9: [695,0,722,55,666,'55 678Q55 679 56 681T58 684T61 688T65 691T70 693T77 694Q88 692 95 679V15Q88 2 77 0Q73 0 70 1T65 3T61 6T59 9T57 13T55 16V678ZM249 678Q249 679 250 681T252 684T255 688T259 691T264 693T271 694Q282 692 289 679V367H651Q666 359 666 347Q666 334 651 327H289V15Q282 2 271 0Q267 0 264 1T259 3T255 6T253 9T251 13T249 16V678'], + + // TRIPLE VERTICAL BAR RIGHT TURNSTILE + 0x22AA: [695,0,889,55,833,'55 678Q55 679 56 681T58 684T61 688T65 691T70 693T77 694Q88 692 95 679V15Q88 2 77 0Q73 0 70 1T65 3T61 6T59 9T57 13T55 16V678ZM237 678Q237 679 238 681T240 684T243 688T247 691T252 693T259 694Q270 692 277 679V15Q270 2 259 0Q255 0 252 1T247 3T243 6T241 9T239 13T237 16V678ZM419 678Q419 679 420 681T422 684T425 688T429 691T434 693T441 694Q452 692 459 679V367H818Q833 359 833 347Q833 334 818 327H459V15Q452 2 441 0Q437 0 434 1T429 3T425 6T423 9T421 13T419 16V678'], + + // DOES NOT PROVE + 0x22AC: [696,1,611,-55,554,'56 681Q70 695 76 695T96 681V368H243L381 530Q521 692 525 692Q537 700 547 688Q554 682 554 674Q554 671 553 669T548 661T539 649T522 631T499 604T465 565T421 512Q296 373 296 368H416H476Q525 368 539 365T554 348Q554 334 543 328H261L96 141V12Q81 -1 75 -1Q65 -1 58 10L56 50V92L18 48Q7 37 -1 28T-13 14T-19 6T-23 1T-27 0T-33 -1Q-42 -1 -48 4T-55 19Q-55 24 -47 34T12 103L56 155V681ZM205 326Q205 328 152 328H96V263Q96 203 98 203Q99 203 123 231T174 290T205 326'], + + // NOT TRUE + 0x22AD: [695,1,611,-55,554,'56 681Q70 695 76 695T96 681V466H327L425 579Q522 692 527 692Q529 693 534 693Q542 693 547 688T553 674Q553 668 549 663Q549 662 538 650T504 611T463 563L381 468L461 466H543Q554 453 554 446T541 426H345L209 272L376 270H543Q554 257 554 251T541 230H174L96 141V12Q81 -1 75 -1Q65 -1 58 10L56 50V92L18 48Q7 37 -1 28T-13 14T-19 6T-23 1T-27 0T-33 -1Q-42 -1 -48 4T-55 19Q-55 24 -47 34T12 103L56 155V681ZM267 399L292 426H96V270H158L201 321Q256 382 267 399ZM118 228L119 229Q119 230 109 230H96V201L107 212Q118 227 118 228'], + + // DOES NOT FORCE + 0x22AE: [695,1,722,-55,665,'56 681Q70 695 77 695T96 683V428L98 175L252 323V681Q264 695 272 695Q278 695 292 681V526Q292 368 296 368Q298 368 447 510Q638 695 642 695H645Q651 695 658 688T665 673Q665 666 661 661Q659 660 639 641T578 582T505 512L356 370L505 368H654Q665 357 665 349Q665 343 652 328H314L303 317L292 308V12Q289 10 285 6T279 1T272 -1Q265 -1 252 12V139Q252 266 249 266L96 119V12Q80 -1 76 -1T70 0T63 6T56 12V79L29 55Q-26 -1 -35 -1Q-42 -1 -48 5T-55 19Q-55 25 -51 30T-15 66Q5 86 18 99L56 135V681'], + + // NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE + 0x22AF: [695,1,722,-55,665,'56 681Q70 695 77 695T96 683V428L98 175L252 323V681Q264 695 272 695Q278 695 292 681V466H401L503 563L621 679Q637 695 645 695Q652 695 658 688T665 673Q665 670 663 666Q663 665 651 652T611 612T561 563L458 468L556 466H654Q665 455 665 447T652 426H416L294 308L292 288V270H652Q665 255 665 250T652 230H292V12Q289 10 285 6T279 1T272 -1Q265 -1 252 12V139Q252 266 249 266L96 119V12Q80 -1 76 -1T70 0T63 6T56 12V79L29 55Q-26 -1 -35 -1Q-42 -1 -48 5T-55 19Q-55 25 -51 30T-15 66Q5 86 18 99L56 135V681ZM358 426H292V361L325 392L358 426'], + + // NORMAL SUBGROUP OF + 0x22B2: [539,41,778,83,694,'694 -26Q686 -40 676 -41H670L382 95Q92 232 90 234Q83 239 83 249Q83 262 96 267Q101 270 379 401T665 537Q671 539 674 539Q686 539 694 524V-26ZM654 11T654 249T653 487T402 369T151 249L275 190Q399 131 524 72T652 11Q654 11 654 249'], + + // CONTAINS AS NORMAL SUBGROUP + 0x22B3: [540,41,778,83,694,'83 523Q83 524 85 527T92 535T103 539Q107 539 389 406T680 268Q694 260 694 249Q694 239 687 234Q685 232 395 95L107 -41H101Q90 -40 83 -26V523ZM376 368Q323 393 254 425T155 472L125 487Q123 487 123 249T125 11Q127 12 252 71T502 190L626 249L376 368'], + + // NORMAL SUBGROUP OF OR EQUAL TO + 0x22B4: [636,138,778,83,695,'694 71Q686 58 676 56H670L382 192Q92 329 90 331Q83 336 83 346Q83 359 96 364Q101 367 379 498T665 634Q671 636 674 636Q686 636 694 621V71ZM654 108T654 346T653 584T402 466T151 346L275 287Q399 228 524 169T652 108Q654 108 654 346ZM83 -120Q83 -116 84 -113T86 -108T89 -104T92 -102T96 -100T99 -98H678Q679 -98 681 -99T684 -101T688 -104T691 -108T693 -113T694 -120Q692 -130 679 -138H98Q84 -130 83 -120'], + + // CONTAINS AS NORMAL SUBGROUP OR EQUAL TO + 0x22B5: [637,138,778,83,695,'83 620Q83 621 85 624T92 632T103 636Q107 636 389 503T680 365Q694 357 694 346Q694 336 687 331Q685 329 395 192L107 56H101Q90 58 83 71V620ZM376 465Q323 490 254 522T155 570L125 584Q123 584 123 346T125 108Q127 109 252 168T502 287L626 346L376 465ZM83 -120Q83 -116 84 -113T86 -108T89 -104T92 -102T96 -100T99 -98H678Q679 -98 681 -99T684 -101T688 -104T691 -108T693 -113T694 -120Q692 -130 679 -138H98Q84 -130 83 -120'], + + // MULTIMAP + 0x22B8: [408,-92,1111,55,1055,'1055 250Q1055 190 1012 141T896 92Q858 92 828 106T781 140T755 180T741 214L738 228V230H405Q71 230 68 232Q55 238 55 250T68 268Q71 270 405 270H738V272L740 280Q742 287 745 297T754 321T771 348T796 374T832 396T881 408H891Q969 408 1012 360T1055 250ZM896 132Q948 132 981 166T1014 250Q1014 301 985 330T920 367Q914 368 891 368Q853 368 816 338T778 250Q778 198 812 165T896 132'], + + // INTERCALATE + 0x22BA: [431,212,556,57,501,'318 -182Q302 -212 280 -212H278H275Q249 -212 239 -182L238 84V351H162L87 352Q57 362 57 391T84 429Q89 431 280 431H470L474 429Q477 427 479 426T484 423T490 417T495 410T499 402T500 391Q500 365 470 352L394 351H318V-182'], + + // XOR + 0x22BB: [716,0,611,55,555,'56 697Q56 706 62 711T75 716Q86 716 90 709Q91 708 104 680T147 592T199 483L305 261L411 483Q443 548 481 629Q512 694 518 705T535 716Q543 716 549 710T555 700Q555 693 501 577T388 340T325 210Q316 194 305 194Q292 194 285 210Q282 219 224 339T111 574T56 697ZM55 14T55 20T59 31T66 38T71 40H540Q555 32 555 20T540 0H71Q70 0 67 2T59 9'], + + // NAND + 0x22BC: [716,0,611,54,555,'55 698Q56 708 70 716H540Q554 708 555 698Q555 694 554 691T552 686T549 682T546 680T542 678T539 676H71Q70 676 68 677T65 679T61 682T58 686T56 691T55 698ZM555 18Q554 12 549 6T536 0H535Q525 0 515 17T459 132Q430 194 410 235L305 455L199 233Q176 185 147 125T105 36T90 7Q85 0 75 0Q63 0 58 11Q55 15 55 21Q58 31 170 266T285 507Q295 522 305 522T320 515Q322 513 439 268L555 24V18'], + + // DOT OPERATOR + 0x22C5: [189,0,278,55,222,'71 0Q59 4 55 16V96L56 176Q59 180 66 187L70 189H209Q219 181 222 174V15Q219 10 209 1L140 0H71'], + + // DIVISION TIMES + 0x22C7: [545,44,778,55,720,'366 543Q374 545 382 545Q405 545 419 538Q429 534 443 521T462 496Q466 478 466 467Q466 438 444 412Q422 390 388 390Q352 390 331 412Q311 434 311 467Q311 499 331 518Q345 533 366 543ZM146 472Q146 479 153 485T166 492Q171 492 187 476T279 385L386 278L495 385Q600 492 608 492Q615 492 621 486T628 472Q628 467 614 452T531 367L435 270H706Q720 256 720 250Q720 241 706 230H435L531 132Q600 63 614 48T628 27Q628 20 622 14T608 7Q600 7 495 114L386 221L279 114Q204 39 188 23T166 7Q159 7 153 13T146 27Q146 32 160 47T244 132L339 230H68Q55 243 55 250Q55 255 68 270H339L244 367Q175 436 161 451T146 472ZM466 34Q466 4 447 -20T388 -44Q353 -44 331 -22Q311 1 311 34Q311 66 331 85Q347 101 366 110Q374 112 382 112Q405 112 419 105Q429 100 443 87T462 63Q466 45 466 34'], + + // LEFT NORMAL FACTOR SEMIDIRECT PRODUCT + 0x22C9: [492,-8,778,146,628,'146 479Q159 492 166 492Q171 492 189 475T279 386L386 279L495 386Q598 492 608 492Q615 492 621 486T628 472Q628 464 522 357L415 250L522 144Q628 37 628 28Q628 21 622 15T608 8Q599 8 495 115L386 221L279 115Q204 40 188 24T166 8Q162 8 160 9T153 15T146 21V479ZM186 77L359 250L186 424V77'], + + // RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT + 0x22CA: [492,-8,778,146,628,'146 472Q146 479 152 485T166 492Q171 492 189 475T279 386L386 279L495 386Q598 492 608 492Q615 492 628 479V21Q615 8 608 8Q599 8 495 115L386 221L279 115Q204 40 188 24T166 8Q159 8 153 14T146 28Q146 37 253 144L359 250L253 357Q146 464 146 472ZM588 77V424L499 337L415 250L588 77'], + + // LEFT SEMIDIRECT PRODUCT + 0x22CB: [694,23,778,55,722,'55 674Q55 682 62 688T76 694H77Q83 694 100 677T208 561Q320 440 410 342Q462 286 541 201Q677 55 699 30T722 -2Q722 -9 716 -15T701 -22T688 -17Q687 -15 542 141T394 301L388 306L240 146Q119 15 101 -3T75 -22T61 -16T55 -2Q55 4 67 19T158 117Q190 151 209 172L361 336L209 500Q62 657 57 667Q55 671 55 674'], + + // RIGHT SEMIDIRECT PRODUCT + 0x22CC: [694,22,778,55,722,'84 -22T76 -22T62 -16T55 -2Q55 4 78 30T249 215Q321 293 367 342Q672 672 683 682Q695 694 702 694Q710 694 716 688T722 674Q722 668 710 653T619 555Q587 521 568 500L416 336L568 172Q715 15 720 5Q722 1 722 -2Q722 -9 716 -15T702 -22H700Q693 -22 671 1T537 146L389 306Q387 304 340 253T237 143T135 33L89 -17Q84 -22 76 -22'], + + // REVERSED TILDE EQUALS + 0x22CD: [464,-36,778,56,722,'56 433Q56 464 71 464Q74 464 77 461Q82 454 82 438T91 397T123 347Q166 307 222 307Q264 307 308 331T386 385T465 438T556 463Q631 463 676 408T722 283Q722 250 708 250Q704 250 699 257Q695 265 693 286T682 330Q670 350 655 367Q612 407 556 407Q514 407 470 383T393 329T314 276T222 251Q148 251 102 306T56 433ZM57 56Q57 71 73 76H706Q722 70 722 56Q722 44 707 36H71Q57 43 57 56'], + + // CURLY LOGICAL OR + 0x22CE: [578,21,760,83,676,'83 558Q83 566 89 572T104 578Q108 578 116 577T146 570T190 555T239 526T286 480Q308 453 325 420T351 358T367 304T376 265T380 251T381 253Q381 262 395 312Q428 434 492 499T642 576Q654 578 655 578Q664 578 670 572T676 558Q676 543 657 540T599 524T525 476Q406 362 400 29V8Q400 -21 380 -21Q369 -21 362 -11Q360 -7 360 12Q360 115 348 200T308 360T231 480T111 537Q83 540 83 558'], + + // CURLY LOGICAL AND + 0x22CF: [578,22,760,83,676,'104 -22Q95 -22 89 -16T83 -2Q83 11 98 16T135 23T192 46T256 103Q360 233 360 549Q360 554 360 557T361 563T362 567T364 569T367 572T371 576Q377 578 380 578Q401 578 401 547Q401 543 401 537T400 527Q409 53 648 19Q676 16 676 -2Q676 -10 670 -16T655 -22Q654 -22 642 -20Q556 -9 492 56T395 244Q381 294 381 303Q381 305 380 305T374 275T352 201T310 110T234 27T117 -20Q105 -22 104 -22'], + + // DOUBLE SUBSET + 0x22D0: [541,41,778,84,694,'84 250Q84 372 166 450T360 539Q361 539 370 539T395 539T430 540T475 540T524 540H679Q694 532 694 520Q694 511 681 501L522 500H470H441Q366 500 338 496T266 472Q244 461 224 446T179 404T139 337T124 250V245Q124 157 185 89Q244 25 328 7Q348 2 366 2T522 0H681Q694 -10 694 -20Q694 -32 679 -40H526Q510 -40 480 -40T434 -41Q350 -41 289 -25T172 45Q84 127 84 250ZM694 134Q694 123 679 114H425H384Q350 114 326 121T277 154Q238 193 238 251Q238 322 295 361Q318 378 339 382T412 387Q423 387 459 387T520 386H679Q694 377 694 366Q694 354 679 346H519Q493 346 458 346T411 347Q360 347 341 342T303 315Q278 287 278 250Q278 210 301 187T351 156Q358 154 519 154H679Q694 146 694 134'], + + // DOUBLE SUPERSET + 0x22D1: [541,40,778,83,693,'83 520Q83 532 98 540H251Q267 540 297 540T343 541Q427 541 488 525T605 455Q693 374 693 250Q693 165 650 99T545 0T415 -39Q407 -40 251 -40H98Q83 -32 83 -20Q83 -10 96 0H255H308H337Q412 0 439 4T512 28Q533 39 553 54T599 96T639 163T654 250Q654 341 592 411Q557 449 512 472Q468 491 439 495T335 500H306H255L96 501Q83 511 83 520ZM83 366Q83 376 96 386H244Q280 386 317 386T378 386L402 387Q456 387 498 348T540 250Q540 203 512 168T446 120Q427 114 353 114H99Q84 120 84 134Q84 147 98 154H258Q284 154 319 154T366 153Q416 153 436 158T474 185Q500 214 500 250Q500 290 477 313T426 344Q419 346 258 346H98Q83 354 83 366'], + + // DOUBLE INTERSECTION + 0x22D2: [598,22,667,55,611,'88 -21T75 -21T55 -7V200Q55 231 55 280Q56 414 60 428Q61 430 61 431Q77 500 152 549T332 598Q443 598 522 544T610 405Q611 399 611 194V-7Q604 -22 591 -22Q582 -22 572 -9L570 405Q563 433 556 449T529 485Q498 519 445 538T334 558Q251 558 179 518T96 401Q95 396 95 193V-7Q88 -21 75 -21ZM229 -21H227Q215 -21 209 -7V166Q209 304 209 327T215 363Q226 398 259 421T333 444Q380 444 414 416T455 347Q457 339 457 166V-7Q449 -21 439 -21H437H435Q423 -21 417 -7V164Q417 303 417 325T411 358Q387 403 333 403T255 358Q250 347 250 325T249 164V-7Q241 -21 231 -21H229'], + + // DOUBLE UNION + 0x22D3: [598,22,667,55,611,'591 598H592Q604 598 611 583V376Q611 345 611 296Q610 162 606 148Q605 146 605 145Q586 68 507 23T333 -22Q268 -22 209 -1T106 66T56 173Q55 180 55 384L56 585Q66 598 75 598Q85 598 95 585V378L96 172L98 162Q112 95 181 57T332 18Q415 18 487 58T570 175Q571 180 571 383V583Q579 598 591 598ZM437 598Q450 598 457 583V410Q457 237 455 229Q448 189 414 161T333 132Q291 132 255 157T211 230Q209 237 209 412L210 585Q220 598 229 598Q242 598 249 583V412Q249 273 249 251T255 218Q279 173 333 173T411 218Q416 229 416 251T417 412V583Q425 598 437 598'], + + // PITCHFORK + 0x22D4: [736,22,667,56,611,'76 -22Q64 -22 56 -7V176L57 360L59 370Q66 401 83 426T123 468T171 495T221 513T265 522T298 527L311 528H314V625L315 723Q325 736 334 736Q346 736 354 721V528H356L368 527Q380 526 399 523T441 515T490 498T537 472T578 433T606 379Q611 359 611 171V-7Q604 -21 591 -21T571 -7V170Q571 313 571 337T565 375Q555 408 526 432T461 467T402 482T365 487H354V-7Q347 -21 334 -21T314 -7V487H303Q251 484 207 467Q121 438 99 367L97 357L96 174V-9Q86 -22 76 -22'], + + // LESS-THAN WITH DOT + 0x22D6: [541,41,778,82,694,'86 261Q92 267 381 404T673 541Q680 541 686 535T693 521T689 510Q684 504 418 379L151 250L418 121Q686 -4 689 -10Q693 -14 693 -21T687 -34T675 -41Q668 -41 380 96T86 239Q82 244 82 250Q82 257 86 261ZM610 250Q610 224 592 198T531 172Q498 172 475 195Q453 214 453 250Q453 308 513 328Q515 330 535 330Q569 328 589 304T610 250'], + + // GREATER-THAN WITH DOT + 0x22D7: [541,41,778,82,693,'82 521Q82 529 89 535T100 541Q107 541 395 404T689 261Q693 257 693 250T689 239Q684 234 396 97T100 -41Q95 -41 89 -35T82 -21Q82 -12 96 -4Q118 9 358 121L624 250L358 379Q91 503 86 510Q82 514 82 521ZM165 250Q165 282 188 306T239 330Q262 330 275 323Q303 312 318 283Q322 272 322 250Q322 213 300 195Q277 172 246 172Q224 172 213 177Q165 200 165 250'], + + // VERY MUCH LESS-THAN + 0x22D8: [568,67,1333,56,1277,'639 -48Q639 -54 634 -60T619 -67H618Q612 -67 536 -26Q430 33 329 88Q61 235 59 239Q56 243 56 250T59 261Q62 266 336 415T615 567L619 568Q622 567 625 567Q639 562 639 548Q639 540 633 534Q632 532 374 391L117 250L374 109Q632 -32 633 -34Q639 -40 639 -48ZM958 -48Q958 -54 953 -60T938 -67H937Q931 -67 855 -26Q749 33 648 88Q380 235 378 239Q375 243 375 250T378 261Q381 266 655 415T934 567L938 568Q941 567 944 567Q958 562 958 548Q958 540 952 534Q951 532 693 391L436 250L693 109Q951 -32 952 -34Q958 -40 958 -48ZM1277 -48Q1277 -54 1272 -60T1257 -67H1256Q1250 -67 1174 -26Q1068 33 967 88Q699 235 697 239Q694 243 694 250T697 261Q700 266 974 415T1253 567L1257 568Q1260 567 1263 567Q1277 562 1277 548Q1277 540 1271 534Q1270 532 1012 391L755 250L1012 109Q1270 -32 1271 -34Q1277 -40 1277 -48'], + + // VERY MUCH GREATER-THAN + 0x22D9: [568,68,1333,55,1277,'75 -67Q65 -67 60 -61T55 -48Q55 -40 61 -34Q62 -32 329 109L595 250L329 391Q62 532 61 534Q55 540 55 548Q55 562 69 567H77Q81 567 222 493T506 342T653 264Q667 250 653 236Q649 234 504 157T220 7T77 -67H75ZM364 547Q364 563 381 567L384 568Q387 568 518 499T795 353T955 269Q967 261 967 250T955 231Q925 216 780 139T513 -3T383 -67Q373 -67 369 -60T364 -47Q364 -40 370 -34Q373 -31 639 109L904 250L639 391Q373 531 370 534Q364 540 364 547ZM674 538T674 548T681 562T693 567Q699 567 816 505Q915 453 993 412Q1050 382 1132 339Q1241 282 1259 271T1277 250Q1277 241 1263 232Q1246 221 985 84Q698 -67 692 -67Q674 -67 674 -47Q674 -38 680 -33Q683 -30 947 109L1213 250L947 391Q683 530 680 533Q674 538 674 548'], + + // stix-less, equal, slanted, greater + 0x22DA: [886,386,778,83,674,'674 445Q674 438 669 432T655 425T369 531T90 640Q83 645 83 655Q83 668 95 673Q644 886 654 886Q662 886 668 880T674 866Q674 856 663 850Q649 843 411 751L160 655L407 560Q474 534 561 501Q646 469 660 462T674 445ZM84 250Q84 260 99 270H658Q674 264 674 250Q674 238 659 230H98Q84 237 84 250ZM83 55Q83 68 94 73Q98 76 104 76Q108 75 383 -30T664 -138Q674 -144 674 -155Q674 -165 667 -170Q664 -173 385 -279T104 -386Q85 -386 83 -368Q83 -354 92 -349Q93 -349 347 -251L597 -155L346 -59Q296 -40 223 -12Q118 28 101 36T83 55'], + + // stix-greater, equal, slanted, less + 0x22DB: [886,386,778,83,674,'111 425T102 425T88 431T83 445V446Q83 455 96 461Q111 469 203 504Q287 536 350 560L597 655L346 751Q94 848 92 850Q83 856 83 866Q83 873 88 879T104 886Q109 885 386 779T667 670Q674 665 674 655T667 640Q665 638 388 532ZM84 250Q84 260 99 270H658Q674 264 674 250Q674 238 659 230H98Q84 237 84 250ZM653 76Q656 76 660 75T669 68T674 56Q674 46 665 40Q663 38 411 -59L160 -155L410 -251Q664 -349 665 -349Q674 -354 674 -368Q672 -386 654 -386Q650 -386 371 -279T90 -170Q83 -165 83 -155Q83 -144 93 -138Q645 76 653 76'], + + // EQUAL TO OR PRECEDES + 0x22DE: [734,0,778,83,694,'113 424Q83 424 83 444Q83 453 96 464H121Q181 466 234 474T341 501T435 545T505 613T542 707Q545 734 564 734Q583 731 583 714Q583 658 560 613T500 538T414 486T321 453T229 434T156 426T113 424ZM112 270Q83 270 83 290Q83 301 94 307Q98 310 118 310Q624 310 653 556Q657 580 675 580Q693 577 693 559V552Q684 472 628 410T465 314Q436 303 372 290Q373 290 388 287T425 278T465 266Q674 199 693 28L694 17L692 14Q691 11 689 8T683 3T673 0Q657 0 653 24Q623 270 118 270H112'], + + // EQUAL TO OR SUCCEEDS + 0x22DF: [734,0,778,83,694,'195 713Q195 725 201 729T214 734Q227 734 231 722T238 691T255 641T299 580Q405 474 656 464H681Q694 451 694 443Q694 424 670 424H664Q535 424 415 465T235 595Q195 657 195 713ZM668 310Q694 310 694 290Q694 285 691 279Q684 271 664 270Q550 268 464 257T301 220T179 146T124 27Q119 0 103 0T83 16Q83 21 83 31T92 68T113 121T157 177T229 231Q295 268 405 290Q404 290 389 293T352 302T312 314Q138 371 96 500Q83 541 83 562Q83 568 89 574T103 580Q115 580 120 570T126 542T138 497T173 442Q289 310 659 310H668'], + + // stix-not (vert) precedes or contour equals + 0x22E0: [801,303,778,82,693,'82 344Q82 349 95 364H124Q266 364 398 390L429 397L509 595Q519 619 536 659Q581 766 590 783T609 801Q616 801 622 795T629 781Q629 776 553 595Q533 548 516 506T489 439T480 415Q482 415 505 426T538 444Q632 498 651 601Q654 621 658 628T673 635Q680 635 686 629T693 615Q693 591 678 546Q636 433 484 375L458 364L451 348Q443 332 443 329T455 324Q480 316 503 307T560 277T619 233T664 170T691 86Q693 68 691 64Q684 53 672 53Q664 53 658 59Q657 60 650 97T617 174T538 244Q515 257 476 273T428 289Q425 289 412 256Q381 179 344 90L262 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 174 -213T202 -143H95Q82 -128 82 -123T95 -103H220L302 97Q384 288 384 299Q384 302 341 308T235 319T124 324H95Q82 337 82 344ZM399 338Q403 338 406 346L409 353L375 344Q375 343 384 341T399 338'], + + // stix-not (vert) succeeds or contour equals + 0x22E1: [801,303,778,82,694,'146 -283Q146 -282 174 -213T202 -143H95Q82 -127 82 -123T95 -103H220L300 93Q343 196 374 270Q385 294 386 299L373 295Q331 287 289 268Q241 249 208 224T159 174T135 127T124 85T118 59Q112 53 103 53Q91 53 84 64Q82 68 84 86Q96 185 174 248T375 337L400 344Q399 344 381 348T351 355T316 364T276 379T235 398T193 424T155 456T122 497T98 546Q82 587 82 615Q82 622 88 628T102 635Q112 635 116 628T124 601Q128 579 134 562T159 515T207 463T290 418T415 384L422 381L506 586Q571 744 584 772T609 801Q616 801 622 795T629 781T544 577Q525 529 504 478T473 402T462 375Q480 373 500 373Q579 364 651 364H680Q682 361 686 357T691 351T693 344Q693 337 680 324H651Q553 324 451 310L433 308L349 104L262 -101L473 -103H682Q694 -115 694 -123Q694 -133 682 -141L464 -143H246L213 -219Q182 -292 178 -299Q172 -303 166 -303T153 -297T146 -283'], + + // LESS-THAN BUT NOT EQUIVALENT TO + 0x22E6: [730,359,778,55,719,'86 450Q93 455 380 592T673 730Q680 730 686 724T693 710Q693 702 688 699Q686 693 417 568L151 439L417 310Q685 185 688 179Q693 176 693 168Q693 161 687 155T675 148Q668 148 380 285T86 428Q74 438 86 450ZM55 -205Q55 -175 64 -142T92 -76T145 -22T222 -1Q288 -1 362 -66Q369 -72 372 -75T378 -79T382 -81T384 -79Q389 -74 439 21Q483 100 490 111T504 122Q510 122 518 118T526 103Q526 101 510 69T467 -12T419 -99L413 -112L433 -128Q498 -180 553 -180Q605 -180 646 -139Q672 -112 681 -77T693 -21T706 -1Q719 -1 719 -33Q719 -39 717 -57Q708 -141 655 -190Q625 -224 586 -232Q568 -237 551 -237Q487 -237 413 -172L391 -155Q391 -157 335 -255Q297 -325 286 -342T268 -359Q260 -359 254 -353T248 -339T304 -230L359 -126Q359 -124 337 -107T302 -81Q262 -57 221 -57Q170 -57 130 -93T84 -201Q82 -236 70 -236Q55 -236 55 -205'], + + // GREATER-THAN BUT NOT EQUIVALENT TO + 0x22E7: [730,359,778,55,719,'88 723Q95 730 99 730Q106 730 394 593T688 450Q693 447 693 439T688 428Q683 423 395 286T99 148Q94 148 88 155T82 168Q82 175 86 179Q89 184 357 310L624 439L357 568Q88 694 86 699Q81 703 81 711T88 723ZM55 -205Q55 -175 64 -142T92 -76T145 -22T222 -1Q288 -1 362 -66Q369 -72 372 -75T378 -79T382 -81T384 -79Q389 -74 439 21Q483 100 490 111T504 122Q510 122 518 118T526 103Q526 101 510 69T467 -12T419 -99L413 -112L433 -128Q498 -180 553 -180Q605 -180 646 -139Q672 -112 681 -77T693 -21T706 -1Q719 -1 719 -33Q719 -39 717 -57Q708 -141 655 -190Q625 -224 586 -232Q568 -237 551 -237Q487 -237 413 -172L391 -155Q391 -157 335 -255Q297 -325 286 -342T268 -359Q260 -359 254 -353T248 -339T304 -230L359 -126Q359 -124 337 -107T302 -81Q262 -57 221 -57Q170 -57 130 -93T84 -201Q82 -236 70 -236Q55 -236 55 -205'], + + // PRECEDES BUT NOT EQUIVALENT TO + 0x22E8: [730,359,778,55,719,'95 419Q81 433 81 439T95 459H124Q318 459 455 501Q515 521 556 550T615 607T641 659T652 702T659 725Q667 730 673 730Q680 730 686 724T693 710Q693 682 677 641Q668 616 654 594T622 554T586 522T545 497T504 477T464 462T428 452T397 444T375 439Q379 437 410 430T476 411T551 379T625 321T677 237Q693 196 693 168Q693 161 687 155T673 148Q662 148 658 154T651 181Q638 253 591 300T455 377Q318 419 124 419H95ZM55 -205Q55 -175 64 -142T92 -76T145 -22T222 -1Q288 -1 362 -66Q369 -72 372 -75T378 -79T382 -81T384 -79Q389 -74 439 21Q483 100 490 111T504 122Q510 122 518 118T526 103Q526 101 510 69T467 -12T419 -99L413 -112L433 -128Q498 -180 553 -180Q605 -180 646 -139Q672 -112 681 -77T693 -21T706 -1Q719 -1 719 -33Q719 -39 717 -57Q708 -141 655 -190Q625 -224 586 -232Q568 -237 551 -237Q487 -237 413 -172L391 -155Q391 -157 335 -255Q297 -325 286 -342T268 -359Q260 -359 254 -353T248 -339T304 -230L359 -126Q359 -124 337 -107T302 -81Q262 -57 221 -57Q170 -57 130 -93T84 -201Q82 -236 70 -236Q55 -236 55 -205'], + + // SUCCEEDS BUT NOT EQUIVALENT TO + 0x22E9: [730,359,778,55,719,'679 459Q693 445 693 439Q693 430 679 419H651Q455 419 319 377Q231 347 184 300T124 181Q120 161 116 155T102 148Q95 148 89 154T82 168Q82 192 97 237Q111 275 137 306T188 355T249 391T307 414T361 429T399 439Q397 440 364 447T298 467T224 499T149 557T97 641Q82 686 82 710Q82 717 88 723T102 730L115 725Q118 722 124 697Q137 625 184 578T319 501Q456 459 651 459H679ZM55 -205Q55 -175 64 -142T92 -76T145 -22T222 -1Q288 -1 362 -66Q369 -72 372 -75T378 -79T382 -81T384 -79Q389 -74 439 21Q483 100 490 111T504 122Q510 122 518 118T526 103Q526 101 510 69T467 -12T419 -99L413 -112L433 -128Q498 -180 553 -180Q605 -180 646 -139Q672 -112 681 -77T693 -21T706 -1Q719 -1 719 -33Q719 -39 717 -57Q708 -141 655 -190Q625 -224 586 -232Q568 -237 551 -237Q487 -237 413 -172L391 -155Q391 -157 335 -255Q297 -325 286 -342T268 -359Q260 -359 254 -353T248 -339T304 -230L359 -126Q359 -124 337 -107T302 -81Q262 -57 221 -57Q170 -57 130 -93T84 -201Q82 -236 70 -236Q55 -236 55 -205'], + + // NOT NORMAL SUBGROUP OF + 0x22EA: [707,208,778,82,693,'693 -30Q686 -41 673 -41Q661 -41 506 34L346 110L280 -44Q228 -162 216 -185T193 -208Q177 -208 173 -192Q173 -186 242 -30T311 128Q271 145 184 186T86 236Q82 240 82 246Q82 251 86 259Q96 267 271 350L449 434L506 565Q537 635 551 664T571 700T582 706Q587 706 593 701T600 690Q600 679 553 572Q504 463 504 461L586 501Q672 539 673 539Q679 539 693 525V-30ZM653 10V488L566 445L480 405L422 276Q415 260 405 236T388 199T376 171T368 151T366 145Q368 143 510 77T653 10ZM422 374Q422 376 420 376T285 313T151 248Q315 168 326 163Q415 356 422 374'], + + // DOES NOT CONTAIN AS NORMAL SUBGROUP + 0x22EB: [706,208,778,82,693,'82 525Q96 539 102 539Q103 539 122 530T186 501T266 463L426 388Q428 388 495 541Q564 694 569 699Q573 706 581 706Q587 706 593 702T600 691Q600 676 533 528Q515 486 506 465T485 418T470 381T466 370Q466 369 575 316Q676 269 689 259Q693 253 693 248Q693 242 689 236Q688 235 506 145Q328 63 324 59Q324 50 266 -70Q224 -169 214 -188T193 -208Q177 -208 173 -192Q173 -183 222 -77Q244 -29 257 2T269 34L186 -6Q108 -43 99 -43Q93 -43 82 -30V525ZM271 416Q129 485 126 485H125Q122 485 122 250Q122 10 124 10L211 50L295 92L411 350Q411 351 271 416ZM624 248L449 332L440 319Q434 297 393 214Q353 121 353 119Q355 119 489 182T624 248'], + + // stix-not, vert, left triangle, equals + 0x22EC: [802,303,778,82,693,'82 -123Q82 -114 93 -103H166L238 -101L293 50Q349 200 349 204L220 266Q166 291 140 304T100 325T84 336T82 344Q82 353 94 360Q112 372 282 453L473 541L482 568Q487 578 529 693Q559 785 569 795Q573 802 581 802Q587 802 593 797T599 786Q599 775 564 675L526 570Q526 568 561 584T633 617T673 635Q679 635 693 621V66Q686 54 679 54Q665 54 526 119Q491 137 458 153T405 177T386 184Q385 182 334 42T282 -101T482 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L473 -143H266L238 -219Q217 -278 210 -290T193 -303Q178 -303 173 -287Q173 -279 198 -214L222 -145Q222 -143 158 -143L93 -141L86 -136Q82 -131 82 -123ZM653 106V584L506 513L453 370Q442 339 428 300T407 243T400 224Q403 222 527 164T653 106ZM453 486Q453 488 451 488T300 417T151 344L224 308Q247 298 285 279T331 257L364 241L453 486'], + + // stix-not, vert, right triangle, equals + 0x22ED: [801,303,778,82,693,'82 621Q96 635 102 635T249 568L420 486L449 473L469 533Q563 789 569 797Q573 801 581 801Q598 801 600 786Q602 781 544 617L484 455Q531 435 584 408Q677 364 689 355Q693 351 693 344Q693 339 692 337T676 325T631 302T538 257Q504 241 465 223T406 195T386 186Q384 184 333 44T282 -101Q282 -103 482 -103H680Q682 -105 684 -108T688 -113T691 -118T693 -124Q693 -134 682 -141L473 -143H266L238 -219Q217 -278 210 -290T193 -303Q178 -303 173 -287Q173 -279 198 -214L222 -145Q222 -143 158 -143L93 -141L86 -136Q82 -131 82 -123Q82 -114 93 -103H166L238 -101L333 159Q326 159 220 106Q110 54 97 54Q89 54 82 66V621ZM298 501Q155 567 142 575L122 584V344Q122 106 124 106Q125 106 180 132T291 185T351 213Q355 217 393 326L433 435Q433 436 298 501ZM549 381Q472 417 471 417L406 241Q408 240 516 291T624 344L549 381'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js new file mode 100644 index 0000000..33f3d91 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/MiscMathSymbolsB.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // BLACK LOZENGE + 0x29EB: [716,132,667,56,611,'318 709Q325 716 332 716Q340 716 344 713T474 511Q611 298 611 292Q611 285 526 152Q494 103 474 72Q347 -128 344 -130Q340 -132 333 -132T322 -130Q319 -128 257 -31T131 169T60 278Q56 285 56 292Q56 298 60 305Q73 326 194 516T318 709'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/MiscMathSymbolsB.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js new file mode 100644 index 0000000..b9b2c6b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/MiscSymbols.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // BLACK STAR + 0x2605: [694,111,944,49,895,'367 395Q374 416 398 492T442 627T463 688Q463 692 467 692Q471 694 472 694Q478 694 484 680T523 562Q553 469 576 400L577 395H731H819Q872 395 883 394T895 384Q895 380 891 376T832 333Q794 305 767 285Q643 195 643 194L690 47Q737 -96 737 -103Q737 -111 727 -111Q721 -111 594 -18L472 71L350 -18Q223 -111 217 -111Q207 -111 207 -103Q207 -96 254 47L301 194Q301 195 241 239T118 328T51 378Q49 382 49 384Q49 392 58 393T110 395H213H367'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/MiscSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js new file mode 100644 index 0000000..ed39884 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/MiscTechnical.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // stix-small down curve + 0x2322: [378,-122,778,55,722,'77 122Q68 122 63 126T57 135T55 142Q55 151 68 176T111 235T177 302T271 356T388 378Q451 378 508 355T602 300T668 233T709 174T722 142Q722 124 704 122Q692 122 685 134T658 179T606 243Q511 338 390 338Q354 338 320 329Q251 312 193 263T97 141Q87 123 77 122'], + + // stix-small up curve + 0x2323: [378,-142,778,54,722,'389 143Q324 143 266 164T171 215T107 277T67 330T55 358T60 371T77 378Q85 377 92 367T116 331T158 280Q256 182 389 182Q475 182 552 227T675 351Q688 378 704 378Q722 376 722 358Q722 352 710 330T670 276T605 215T511 164T389 143'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/MiscTechnical.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js new file mode 100644 index 0000000..8a0de8e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js @@ -0,0 +1,74 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/PUA.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // ?? + 0xE006: [430,23,222,-20,240,'91 417Q104 430 111 430T131 417V301L171 341Q201 373 207 378T220 384Q227 384 233 377T240 366Q240 357 187 299L131 244V-10Q116 -23 111 -23T91 -10V201L49 157Q20 127 14 121T0 115Q-8 115 -14 121T-20 132Q-20 139 17 178Q29 191 36 199L91 257V417'], + + // ?? + 0xE007: [431,24,389,-20,407,'56 417Q68 431 76 431L89 426L96 419V317L98 215L193 273L291 330V375L293 419Q301 431 311 431Q331 431 331 388L333 355L356 370Q381 384 388 384Q394 384 400 377T407 363Q407 354 367 328L331 308V-10Q316 -23 310 -23Q300 -23 293 -12L291 135V284L98 168L96 77V-12Q84 -24 76 -24L62 -19L58 -12L56 66V144L31 128Q5 114 -2 114Q-8 114 -14 121T-20 136Q-20 142 -14 147T20 170L56 190V417'], + + // ?? + 0xE008: [605,85,778,55,719,'477 261Q477 257 473 256T455 253T417 251T348 250H235L155 -77L146 -82Q137 -85 109 -85Q55 -85 55 -77L139 261Q224 596 226 598Q229 603 239 603Q240 603 254 603T290 603T341 604T405 605T477 605Q656 603 687 602T719 596Q719 589 692 588T513 585H319L282 427L242 272Q242 270 351 270Q388 270 410 270T444 269T460 267T469 265T477 261'], + + // ?? + 0xE009: [434,6,667,37,734,'228 325Q170 322 156 316T127 309Q108 309 104 314Q99 319 99 322T108 341Q125 376 171 400T268 425H271Q302 425 319 396Q328 377 328 358Q328 332 324 314Q311 270 286 221Q274 194 274 192H275Q339 234 484 325T639 421Q669 434 691 434T723 425T734 406Q734 394 719 381Q715 376 644 330L575 287L566 267Q543 233 526 176Q520 160 515 143T508 115T506 105Q506 103 533 103Q585 103 607 110T641 118Q670 118 670 107Q670 100 661 85Q643 50 598 27T504 3Q465 3 450 36Q441 51 441 73Q441 84 444 96Q452 146 484 205L497 236L324 125Q143 12 135 10Q103 -6 77 -6Q61 -6 49 2T37 21Q37 36 49 46T124 96L195 141L204 156Q219 179 243 248T264 323Q264 325 228 325'], + + // ?? + 0xE00C: [752,284,778,81,694,'86 472Q93 477 381 614T673 752Q680 752 686 746T693 732T689 721Q686 715 418 590L151 461L418 332Q684 207 689 201Q693 195 693 190Q693 183 687 177T675 170Q668 170 380 307T86 450Q82 454 82 461Q82 467 86 472ZM369 101V126Q369 156 382 156H384Q385 157 386 157Q409 157 409 115V98V54H680Q693 39 693 34T680 14H409V-142H680Q693 -155 693 -162Q693 -167 680 -182H409V-273Q396 -284 388 -284Q382 -284 369 -275V-182H95Q82 -167 82 -162Q82 -155 95 -142H369V14H95Q93 17 89 21T84 27T82 34T83 40T89 47T95 54H369V101'], + + // ?? + 0xE00D: [752,284,778,81,693,'89 745Q95 752 100 752Q106 752 394 615T689 472Q693 468 693 461T689 450Q684 445 396 308T100 170Q95 170 89 176T82 190Q82 195 86 201Q91 208 358 332L624 461L358 590Q90 715 86 721Q82 725 82 731Q82 739 89 745ZM369 101V126Q369 156 382 156H384Q385 157 386 157Q409 157 409 115V98V54H680Q693 39 693 34T680 14H409V-142H680Q693 -155 693 -162Q693 -167 680 -182H409V-273Q396 -284 388 -284Q382 -284 369 -275V-182H95Q82 -167 82 -162Q82 -155 95 -142H369V14H95Q93 17 89 21T84 27T82 34T83 40T89 47T95 54H369V101'], + + // stix-not greater, double equals + 0xE00E: [919,421,778,82,694,'97 172Q82 172 82 190Q82 197 86 201Q94 209 173 246T327 319T402 357Q405 360 434 448T462 539L278 628Q96 713 86 721Q82 725 82 732T88 745T102 752Q103 752 125 742T198 709T293 666Q342 642 385 622T453 590T478 579Q479 579 506 659T562 824T598 915Q602 919 609 919T622 913T629 901Q629 898 571 728Q546 656 531 608T518 559Q555 539 602 519Q664 488 679 479T694 461Q694 457 689 450Q680 443 616 413T494 356T435 326L389 190L342 57L513 55H682Q694 43 694 34Q694 28 689 21L682 17L506 15H329L322 -8Q320 -13 310 -41T295 -85L275 -141H680Q682 -143 684 -146T688 -151T691 -156T693 -162Q693 -172 682 -179L473 -181H262L220 -303Q192 -388 185 -404T166 -421Q160 -421 153 -415T146 -403Q146 -400 179 -302T220 -185Q220 -181 158 -181L93 -179L86 -174Q82 -169 82 -161Q82 -152 93 -141H164L233 -139L260 -63L286 15H189L93 17L86 21Q82 26 82 34Q82 44 93 55H198L300 57L342 179Q350 204 361 238T378 286T382 301L246 237Q111 172 97 172ZM624 461Q621 464 560 492Q512 518 503 518Q500 518 500 517Q499 513 488 479T465 413T453 379L624 461'], + + // stix-not greater-or-equal, slanted + 0xE00F: [801,303,778,82,694,'97 54Q82 54 82 72Q82 79 86 84Q95 91 222 153L351 215L398 324L442 433L258 519Q95 597 87 604Q82 608 82 615T88 628T102 635Q107 635 424 484L458 468L524 630Q593 789 597 795Q601 801 609 801Q616 801 622 795T629 781L562 615L493 450L589 406Q665 371 679 362T694 344Q694 339 693 337T677 326T631 302T538 257Q504 241 465 223T406 195T386 186Q383 185 344 92T306 -3L486 81Q662 168 673 168Q680 168 686 162T693 148T689 137Q688 136 482 35L280 -59L233 -176Q184 -291 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -279 185 -186T224 -90Q225 -88 223 -88Q219 -88 193 -101Q109 -143 98 -143Q82 -138 82 -122Q82 -116 85 -113T108 -98T171 -67L249 -30L289 61Q297 81 307 107T321 144T326 157L218 106Q109 54 97 54ZM553 379Q480 412 480 415Q479 415 460 372T423 285T406 241Q408 240 516 291T624 344L553 379'], + + // stix-not less-or-equal, slanted + 0xE010: [801,303,778,81,694,'102 168Q103 168 151 146T247 102T295 81Q299 85 322 144T344 206L218 268Q153 297 123 313T87 333T82 344T86 355Q104 369 291 455Q491 552 491 553L542 673Q581 767 590 784T609 801Q616 801 622 795T629 781Q629 773 586 677Q546 581 546 577L609 606Q669 635 673 635Q680 635 686 629T693 615Q693 610 692 608T670 593T604 561L524 521L400 226L542 157Q617 123 649 107T687 85T694 72Q694 66 690 60T679 54Q665 54 526 119Q394 186 386 186Q385 186 342 88L331 61L509 -23Q680 -105 688 -111Q693 -115 693 -122T688 -135T675 -141H673Q664 -141 491 -59Q320 21 316 21H315L249 -136Q183 -293 178 -299Q172 -303 166 -303T153 -297T146 -283Q146 -282 154 -261T181 -197T213 -119L280 41Q280 46 186 86Q157 101 121 119Q92 133 87 136T82 148Q82 155 88 161T102 168ZM418 370L466 495Q464 495 308 420T151 344T204 317T311 267T364 244Q364 247 418 370'], + + // stix-not less, double equals + 0xE011: [919,421,778,82,694,'82 34Q82 44 93 55H198L300 57L342 179Q351 207 362 238T378 286T384 303T238 377Q109 435 86 450Q82 454 82 460T86 472Q90 476 302 579L511 679Q512 679 553 795Q569 842 577 866T592 903T600 917T608 919Q615 919 622 912T629 901Q629 899 595 799Q589 777 581 753T569 717T564 703L618 728Q666 752 673 752T686 746T693 732Q693 723 683 717T615 683L546 650L491 488Q464 410 450 368T438 326Q493 297 562 266Q660 219 677 209T694 190Q694 183 690 177T678 171Q664 171 546 228L424 286Q422 286 382 172L342 57L513 55H682Q694 43 694 34Q694 28 689 21L682 17L506 15H329L322 -8Q320 -13 310 -41T295 -85L275 -141H680Q682 -143 684 -146T688 -151T691 -156T693 -162Q693 -172 682 -179L473 -181H262L220 -303Q192 -388 185 -404T166 -421Q160 -421 153 -415T146 -403Q146 -400 179 -302T220 -185Q220 -181 158 -181L93 -179L86 -174Q82 -169 82 -161Q82 -152 93 -141H164L233 -139L260 -63L286 15H189L93 17L86 21Q82 26 82 34ZM495 623Q495 626 493 626T321 544T151 461L398 343Q399 343 405 360T423 415T446 483Q457 513 469 551T488 606T495 623'], + + // stix-not subset, double equals + 0xE016: [828,330,778,82,694,'82 -6Q82 1 95 14H262L295 94Q331 171 331 174Q324 175 312 178T267 194T206 227T146 283T98 368Q84 406 84 461T98 554Q126 632 194 685T349 750Q360 752 480 752H591L604 783Q620 819 624 821Q631 828 640 828Q653 825 658 810Q658 808 646 781L635 754Q635 752 658 752Q680 752 686 746Q693 739 693 732Q693 728 692 726T686 719T680 712H615L506 466Q479 407 451 344T408 248T393 214Q393 210 535 210H680Q693 194 693 190T680 170H373L340 92L304 14H680Q693 1 693 -6Q693 -11 680 -26H286L253 -103L218 -179L451 -181H682Q694 -193 694 -201Q694 -212 682 -219L440 -221H200L178 -270Q160 -309 154 -319T139 -330Q122 -330 118 -312L155 -223Q155 -221 126 -221H95Q82 -206 82 -201T95 -181H175L206 -108Q237 -35 242 -30Q242 -26 169 -26H95Q82 -11 82 -6ZM571 710Q571 712 469 712Q443 712 416 712T371 711T351 710Q279 700 221 656T138 548Q124 508 124 461T138 374Q186 245 351 212L460 459Q571 709 571 710'], + + // ?? + 0xE017: [752,332,778,81,694,'82 -14T82 -7T95 15H431L529 170H435Q341 170 333 175Q149 218 98 368Q84 406 84 461Q84 515 98 555Q126 633 193 686T346 750Q347 750 373 750T440 751T520 752H680Q693 739 693 732Q693 727 680 712H526Q364 712 353 710Q268 700 207 646T126 512Q123 496 123 461T126 410Q141 350 180 304T280 232Q312 217 344 214T464 210H555L589 261Q613 301 620 311T635 321Q644 321 650 315T657 301Q657 296 651 286T630 252T604 212Q604 210 642 210H680Q693 197 693 190Q693 186 692 184T686 177T680 170H578L526 92L478 17L580 15H682Q693 4 693 -4T680 -25H451L353 -179L518 -181H682Q694 -193 694 -201Q694 -211 682 -219L504 -221H326L293 -272Q257 -332 246 -332Q238 -332 232 -326T225 -313Q225 -310 226 -308Q226 -305 251 -265T278 -223Q278 -221 186 -221H95Q93 -218 89 -214T84 -208T82 -201T95 -181H306L404 -25H249L93 -23L86 -19Q82 -14 82 -7'], + + // stix-not superset, double equals + 0xE018: [828,330,778,82,694,'82 732Q82 739 95 752H251H348Q420 752 460 744T551 708Q566 697 566 701Q618 815 624 821Q631 828 640 828Q653 825 658 810L600 677Q600 671 615 656T653 605T689 517Q692 496 692 461T689 406Q668 325 615 266Q572 221 513 196T391 170H373L340 92L304 14H680Q693 1 693 -6Q693 -11 680 -26H286L253 -103L218 -179L451 -181H682Q694 -193 694 -201Q694 -212 682 -219L440 -221H200L178 -270Q160 -309 154 -319T139 -330Q122 -330 118 -312L155 -223Q155 -221 126 -221H95Q82 -206 82 -201T95 -181H175L206 -108Q237 -35 242 -30Q242 -26 169 -26H95Q82 -11 82 -6Q82 1 95 14H262L295 92L331 170H95Q93 172 91 175T87 180T84 185T82 191Q82 199 93 210H220L349 212L549 659Q507 692 462 702T338 712H249H95Q82 727 82 732ZM652 473Q652 513 636 552T603 611T582 632Q581 632 487 422T393 210Q424 210 460 220T535 253T605 316T649 410Q652 427 652 461V473'], + + // ?? + 0xE019: [752,333,778,82,693,'82 732Q82 739 95 752H251Q415 752 426 750Q539 736 615 657Q667 599 689 517Q692 496 692 461T689 406Q668 325 615 266Q522 170 382 170H355L326 95Q319 80 311 59T298 28T293 17Q293 15 486 15H680Q693 0 693 -6T680 -25H275L213 -179L449 -181H682Q693 -192 693 -199T680 -221H198L178 -270Q153 -333 139 -333Q132 -333 126 -327T119 -314T135 -266T153 -223Q153 -221 124 -221H95Q82 -207 82 -201T95 -181H171L233 -25H162L93 -23L86 -19Q82 -14 82 -7T95 15H251L313 170H202L93 172L86 177Q82 182 82 190Q82 199 93 210H211L329 212L349 261Q366 301 372 311T386 321Q392 321 399 315T407 302Q407 295 390 254T373 210Q374 209 377 209Q412 209 444 217Q512 231 564 273T638 377Q651 414 651 461Q651 509 638 548Q613 613 555 656T422 710Q411 712 249 712H95Q82 727 82 732'], + + // ?? + 0xE01A: [634,255,778,84,694,'693 -115T693 -122T680 -144H315L269 -199Q221 -255 213 -255H212Q203 -255 197 -248T193 -231Q195 -225 229 -184L262 -144H186L113 -142L106 -137Q102 -130 102 -125Q102 -119 115 -104H298L426 52H386Q342 54 309 63Q236 79 180 129T98 249Q84 289 84 343Q84 398 98 436Q126 514 193 567T346 632Q347 632 373 632T440 633T520 634H680Q682 631 686 627T691 621T693 614T680 594H526Q364 594 353 592Q268 581 207 528T126 394Q123 378 123 343T126 292Q141 231 181 185T280 114Q329 92 415 92H462L506 147Q554 203 562 203H563Q572 203 578 196T582 178Q579 173 546 132L513 94L598 92H682Q693 81 693 73T680 52H480L349 -102L515 -104H682Q693 -115 693 -122'], + + // ?? + 0xE01B: [634,254,778,82,691,'82 610T82 614T83 620T89 627T95 634H251Q378 634 409 633T469 623Q540 604 596 554T678 436Q691 397 691 343T678 249Q653 181 597 131T469 63Q427 52 362 52H315L213 -102L438 -104H662Q673 -115 673 -123Q673 -129 660 -144H186L151 -197Q114 -250 109 -253Q106 -254 104 -254Q100 -254 98 -253Q91 -253 87 -248T82 -235Q82 -230 109 -186L138 -144H115Q82 -144 82 -125Q82 -119 95 -104H166L266 49Q266 52 182 52H95Q82 65 82 72Q82 76 83 78T89 85T95 92H295L329 143Q365 195 369 198Q372 203 380 203Q385 203 391 197T398 185Q398 184 398 184L399 182Q399 175 369 129L344 94Q344 92 376 92Q402 92 422 94Q496 104 554 147T638 256Q651 295 651 343Q651 390 638 429Q613 494 555 537T422 592Q411 594 249 594H95Q82 610 82 614'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/PUA.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js new file mode 100644 index 0000000..0dc429f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/SpacingModLetters.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C6: [845,-561,2333,-14,2346,'1 561Q-3 563 -6 577T-12 604L-14 618Q-14 625 -7 628T23 635Q31 636 36 637Q63 641 621 745Q1148 845 1165 845Q1167 845 1752 739L2338 630Q2346 630 2346 618Q2340 565 2332 561Q2329 561 1749 654Q1617 675 1466 699T1241 736T1167 748Q1165 748 1093 737T867 700T583 654Q3 561 1 561'], + + // SMALL TILDE + 0x2DC: [899,-628,2333,1,2330,'804 788Q717 788 606 772T397 732T213 685T75 645T18 628Q11 628 11 632Q8 637 4 668T2 704Q2 713 36 732Q55 739 242 795Q622 898 826 898Q893 898 947 895Q1009 887 1056 872T1187 819Q1286 776 1356 758T1527 739Q1614 739 1725 755T1934 795T2118 842T2256 882T2313 899Q2320 899 2320 895Q2323 890 2327 860T2329 824Q2329 818 2296 795Q2273 787 2089 732Q1810 657 1598 632Q1562 629 1492 629Q1389 629 1320 644T1144 708Q1048 751 977 769T804 788'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js new file mode 100644 index 0000000..495c8a0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js @@ -0,0 +1,95 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/AMS/Regular/SuppMathOperators.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_AMS'], + { + // LOGICAL AND WITH DOUBLE OVERBAR + 0x2A5E: [813,97,611,54,555,'55 795Q56 806 70 813H540Q554 806 555 795Q555 791 554 788T552 783T549 779T546 777T542 775T539 773H71Q70 773 68 774T65 776T61 779T58 783T56 788T55 795ZM55 601Q56 612 70 619H540Q554 612 555 601Q555 597 554 594T552 589T549 585T546 583T542 581T539 579H71Q70 579 68 580T65 582T61 585T58 589T56 594T55 601ZM75 -97Q67 -97 61 -91T55 -81Q55 -71 169 166T285 410Q295 425 305 425Q311 425 316 422T323 414L325 410Q327 404 441 167T555 -81Q555 -85 549 -91T535 -97T520 -90Q519 -89 506 -61T463 27T411 136L305 358L199 136Q167 71 129 -10Q98 -75 92 -86T75 -97'], + + // LESS-THAN OR SLANTED EQUAL TO + 0x2A7D: [636,138,778,83,694,'674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM94 170Q102 172 104 172Q110 171 254 103T535 -30T678 -98Q694 -106 694 -118Q694 -136 676 -138H670L382 -2Q92 135 90 137Q83 142 83 154Q84 164 94 170'], + + // GREATER-THAN OR SLANTED EQUAL TO + 0x2A7E: [636,138,778,82,694,'83 616Q83 624 89 630T99 636Q107 636 253 568T543 431T687 361Q694 356 694 346T687 331Q685 329 395 192L107 56H101Q83 58 83 76Q83 77 83 79Q82 86 98 95Q117 105 248 167Q326 204 378 228L626 346L360 472Q291 505 200 548Q112 589 98 597T83 616ZM674 172Q692 172 694 154Q694 142 687 137Q685 135 395 -2L107 -138H101Q83 -136 83 -118Q83 -106 96 -100Q100 -98 380 35T665 170T674 172'], + + // LESS-THAN OR APPROXIMATE + 0x2A85: [762,290,778,55,722,'667 761Q669 762 673 762Q682 762 688 756T694 741Q694 731 687 727Q684 724 420 613L156 502L416 392Q476 367 544 338T647 295T682 280Q694 274 694 262Q694 244 676 242Q670 242 524 303T235 425T90 487Q83 493 83 501Q83 514 94 519Q97 520 378 639T667 761ZM55 -23Q55 43 103 90T223 138Q265 138 316 114Q342 100 393 68L443 36Q502 0 554 0Q609 0 650 32T694 109Q694 138 708 138Q710 138 713 136T719 127T722 108Q722 37 673 -9T557 -56Q514 -56 468 -35T387 13T308 60T223 82Q167 82 127 50T83 -27Q81 -56 69 -56Q55 -56 55 -23ZM55 -257Q55 -191 103 -144T223 -96Q265 -96 316 -120Q342 -134 393 -166L443 -198Q502 -234 554 -234Q609 -234 650 -202T694 -125Q694 -96 708 -96Q710 -96 713 -98T719 -107T722 -126Q722 -197 673 -243T557 -290Q514 -290 468 -269T387 -221T308 -174T223 -152Q167 -152 127 -184T83 -261Q80 -290 69 -290Q55 -290 55 -257'], + + // GREATER-THAN OR APPROXIMATE + 0x2A86: [762,290,778,55,722,'90 727Q83 734 83 743Q83 751 89 756T104 762Q111 760 396 641Q686 518 687 517Q694 512 694 502T687 487Q686 486 543 425T253 303T101 242Q83 244 83 262Q83 274 95 280Q96 280 130 294T232 338T361 392L621 502L357 613Q93 724 90 727ZM55 -23Q55 43 103 90T223 138Q265 138 316 114Q342 100 393 68L443 36Q502 0 554 0Q609 0 650 32T694 109Q694 138 708 138Q710 138 713 136T719 127T722 108Q722 37 673 -9T557 -56Q514 -56 468 -35T387 13T308 60T223 82Q167 82 127 50T83 -27Q81 -56 69 -56Q55 -56 55 -23ZM55 -257Q55 -191 103 -144T223 -96Q265 -96 316 -120Q342 -134 393 -166L443 -198Q502 -234 554 -234Q609 -234 650 -202T694 -125Q694 -96 708 -96Q710 -96 713 -98T719 -107T722 -126Q722 -197 673 -243T557 -290Q514 -290 468 -269T387 -221T308 -174T223 -152Q167 -152 127 -184T83 -261Q80 -290 69 -290Q55 -290 55 -257'], + + // LESS-THAN AND SINGLE-LINE NOT EQUAL TO + 0x2A87: [636,241,778,82,694,'380 497Q445 528 522 564T636 618T673 635Q680 635 686 628T693 615T689 603Q686 599 418 472L151 343L418 215Q686 88 689 83Q693 79 693 72T687 59T675 52Q669 52 381 189T86 332Q82 337 82 344Q82 350 86 355Q91 359 380 497ZM82 -130T82 -124T95 -103H380L431 -54Q476 -6 486 -6Q491 -6 498 -12T505 -27Q505 -28 505 -29T504 -32Q503 -33 498 -38T485 -53T469 -70L438 -103H680Q682 -106 686 -110T691 -116T693 -123Q693 -130 680 -143H398L346 -192Q300 -241 291 -241Q271 -241 271 -221Q271 -209 306 -179L340 -143H95Q82 -130 82 -124'], + + // GREATER-THAN AND SINGLE-LINE NOT EQUAL TO + 0x2A88: [635,241,778,82,693,'82 614Q82 620 86 625T94 632T100 635Q106 635 394 498T689 355Q693 349 693 343Q693 338 689 332Q683 327 395 190T100 52Q95 52 89 58T82 72Q82 80 95 88Q114 99 358 215L624 343L358 472Q89 599 86 603Q82 607 82 614ZM82 -130T82 -124T95 -103H380L431 -54Q476 -6 486 -6Q491 -6 498 -12T505 -27Q505 -28 505 -29T504 -32Q503 -33 498 -38T485 -53T469 -70L438 -103H680Q682 -106 686 -110T691 -116T693 -123Q693 -130 680 -143H398L346 -192Q300 -241 291 -241Q271 -241 271 -221Q271 -209 306 -179L340 -143H95Q82 -130 82 -124'], + + // LESS-THAN AND NOT APPROXIMATE + 0x2A89: [761,387,778,57,718,'86 512Q93 518 381 639T673 761Q680 761 686 755T693 741Q693 733 688 730Q685 723 419 612L155 501L419 390Q685 277 688 272Q693 269 693 261Q693 254 687 248T675 241Q669 241 381 362T86 490Q74 500 86 512ZM70 -59Q57 -59 57 -24Q57 40 104 87Q116 102 146 118Q186 136 231 136Q232 136 242 135T258 133T276 128T302 118T334 101T377 74Q386 69 396 63T411 53T417 50Q435 87 453 134Q491 223 495 227Q498 230 505 230Q513 230 519 225T526 212Q526 203 491 118T453 30Q453 22 489 10T553 -3Q589 -3 622 14Q653 28 669 50T688 90T694 122T706 136Q718 136 718 114Q718 113 718 109T717 103Q717 31 668 -14T554 -60Q529 -60 499 -50T451 -32T433 -24Q431 -24 404 -90T375 -157Q375 -159 402 -178T473 -218T553 -239Q599 -239 641 -211T691 -130Q694 -99 706 -99T718 -122Q718 -123 718 -127T717 -133Q717 -204 668 -249T559 -295Q512 -295 470 -275T355 -206L322 -290Q313 -310 304 -332T289 -367T282 -382Q277 -387 270 -387Q262 -387 255 -382T248 -368Q248 -361 322 -186Q311 -177 280 -166T222 -155Q189 -155 153 -173Q122 -186 106 -208T87 -248T82 -280T71 -294Q57 -294 57 -259Q57 -195 104 -148Q122 -126 155 -113T220 -99Q245 -99 276 -109T324 -127T342 -135Q397 -2 397 1Q386 10 367 23T302 58T222 80Q175 80 132 52T84 -28Q82 -59 70 -59'], + + // GREATER-THAN AND NOT APPROXIMATE + 0x2A8A: [761,387,778,57,718,'86 730Q81 734 81 740Q81 747 88 754T99 761Q103 761 392 640T688 512Q693 509 693 501T688 490Q682 484 394 363T99 241Q94 241 88 248T82 261Q82 268 86 272Q89 277 355 390L619 501L355 612Q89 723 86 730ZM70 -59Q57 -59 57 -24Q57 40 104 87Q116 102 146 118Q186 136 231 136Q232 136 242 135T258 133T276 128T302 118T334 101T377 74Q386 69 396 63T411 53T417 50Q435 87 453 134Q491 223 495 227Q498 230 505 230Q513 230 519 225T526 212Q526 203 491 118T453 30Q453 22 489 10T553 -3Q589 -3 622 14Q653 28 669 50T688 90T694 122T706 136Q718 136 718 114Q718 113 718 109T717 103Q717 31 668 -14T554 -60Q529 -60 499 -50T451 -32T433 -24Q431 -24 404 -90T375 -157Q375 -159 402 -178T473 -218T553 -239Q599 -239 641 -211T691 -130Q694 -99 706 -99T718 -122Q718 -123 718 -127T717 -133Q717 -204 668 -249T559 -295Q512 -295 470 -275T355 -206L322 -290Q313 -310 304 -332T289 -367T282 -382Q277 -387 270 -387Q262 -387 255 -382T248 -368Q248 -361 322 -186Q311 -177 280 -166T222 -155Q189 -155 153 -173Q122 -186 106 -208T87 -248T82 -280T71 -294Q57 -294 57 -259Q57 -195 104 -148Q122 -126 155 -113T220 -99Q245 -99 276 -109T324 -127T342 -135Q397 -2 397 1Q386 10 367 23T302 58T222 80Q175 80 132 52T84 -28Q82 -59 70 -59'], + + // LESS-THAN ABOVE DOUBLE-LINE EQUAL ABOVE GREATER-THAN + 0x2A8B: [1003,463,778,83,694,'674 1003Q681 1003 687 999T694 983Q694 973 683 967Q669 959 420 868L162 772L422 676Q683 579 685 577Q694 571 694 560Q694 550 687 546T673 541Q669 542 384 647T93 755Q83 760 83 772Q83 783 91 788Q98 791 383 897T674 1003ZM84 354T84 367T98 387H679Q694 379 694 367Q694 354 679 347H98Q84 354 84 367ZM84 160T84 173T98 193H679Q694 185 694 173Q694 160 679 153H98Q84 160 84 173ZM94 -3Q102 -1 104 -1Q107 -2 392 -107T684 -215Q694 -219 694 -232Q694 -241 687 -247Q686 -248 395 -357Q106 -463 101 -463Q83 -461 83 -443Q83 -431 94 -426Q97 -423 357 -328L615 -232L355 -136Q94 -39 92 -37Q83 -31 83 -21Q83 -9 94 -3'], + + // GREATER-THAN ABOVE DOUBLE-LINE EQUAL ABOVE LESS-THAN + 0x2A8C: [1003,463,778,83,694,'104 541Q98 541 91 545T83 560Q83 571 92 577Q94 579 355 676L615 772L357 868Q108 959 94 967Q83 973 83 983Q83 989 87 996T104 1003Q109 1002 396 896T687 787Q694 781 694 772Q694 759 684 755Q678 752 393 647T104 541ZM84 367Q84 380 98 387H679Q694 379 694 367Q694 356 680 348L390 347H100Q84 352 84 367ZM84 173Q84 188 100 193H680Q694 183 694 173Q694 160 679 153H98Q84 160 84 173ZM674 -1Q682 -1 688 -6T694 -20Q694 -31 685 -37Q683 -39 422 -136L162 -232L420 -328Q680 -423 683 -426Q694 -431 694 -443Q694 -461 676 -463Q671 -463 382 -357Q91 -248 90 -247Q83 -242 83 -232Q83 -220 93 -215Q667 -1 674 -1'], + + // SLANTED EQUAL TO OR LESS-THAN + 0x2A95: [636,138,778,83,694,'674 636Q682 636 688 631T694 616Q694 605 687 601Q685 599 395 462L107 326H101Q83 328 83 345Q83 358 96 365Q102 367 382 500T665 634Q671 636 674 636ZM674 442Q692 442 694 424Q694 412 687 407Q686 406 417 278L151 152L399 34Q687 -102 691 -107Q694 -113 694 -118Q694 -136 676 -138H670L382 -2Q92 135 90 137Q83 142 83 154Q84 165 96 171Q104 175 382 306T665 440Q669 442 674 442'], + + // SLANTED EQUAL TO OR GREATER-THAN + 0x2A96: [636,138,778,83,694,'83 616Q83 624 89 630T99 636Q107 636 253 568T543 431T687 361Q694 354 694 346Q694 328 676 326H670L382 462Q317 493 226 535Q119 585 101 595T83 616ZM94 440Q102 442 104 442Q110 441 254 373T535 240T678 172Q679 172 680 171Q694 164 694 153T687 137Q685 135 395 -2L107 -138H101Q83 -136 83 -118Q83 -106 93 -101L128 -84Q163 -68 230 -36T361 26L626 152L360 278Q91 406 90 407Q83 412 83 424Q84 434 94 440'], + + // PRECEDES ABOVE NOT EQUAL TO + 0x2AB5: [752,286,778,82,693,'653 734Q653 738 660 745T673 752T686 745T693 723Q672 555 466 485Q390 463 378 463Q373 463 373 461Q373 458 378 458Q390 458 466 436Q562 404 620 350Q682 283 693 198Q693 183 686 176Q681 170 674 170T660 176T653 187Q653 192 652 200T646 228T631 265T602 307T555 350Q435 431 151 441H95Q82 454 82 460T95 481H151Q165 482 197 483T238 485Q427 500 528 554T649 707Q653 729 653 734ZM82 33Q82 37 83 40T89 47T95 54H473L520 105Q569 156 571 156Q573 157 578 157Q586 157 592 151T598 136Q598 130 562 92L526 56L604 54H682Q693 43 693 35Q693 31 692 28T686 21T680 14H489L342 -139L513 -142H682Q693 -148 693 -160Q693 -167 680 -182H304L258 -230Q248 -240 237 -251T221 -268T211 -278T203 -284T197 -286Q189 -286 184 -280T178 -264Q178 -257 213 -219L249 -182H171L93 -179L86 -175Q82 -170 82 -163Q82 -155 95 -142H289L360 -64L433 14H262L93 16Q82 23 82 33'], + + // SUCCEEDS ABOVE NOT EQUAL TO + 0x2AB6: [752,286,778,82,693,'693 466T693 460T680 441H624Q608 439 577 438T538 436Q349 421 248 367T126 214Q122 192 122 187Q122 183 116 177T102 170Q95 170 89 176Q82 183 82 198Q93 283 155 350Q213 404 309 436Q385 458 398 458Q402 458 402 461Q402 463 398 463Q385 463 309 485Q103 555 82 723Q82 738 89 745T102 752T115 745T122 734Q122 721 126 701T155 640T220 572Q340 490 624 481H680Q693 466 693 460ZM82 33Q82 37 83 40T89 47T95 54H473L520 105Q569 156 571 156Q573 157 578 157Q586 157 592 151T598 136Q598 130 562 92L526 56L604 54H682Q693 43 693 35Q693 31 692 28T686 21T680 14H489L342 -139L513 -142H682Q693 -148 693 -160Q693 -167 680 -182H304L258 -230Q248 -240 237 -251T221 -268T211 -278T203 -284T197 -286Q189 -286 184 -280T178 -264Q178 -257 213 -219L249 -182H171L93 -179L86 -175Q82 -170 82 -163Q82 -155 95 -142H289L360 -64L433 14H262L93 16Q82 23 82 33'], + + // PRECEDES ABOVE ALMOST EQUAL TO + 0x2AB7: [761,294,778,57,717,'82 494T82 501T95 521H171Q405 527 511 569Q630 618 651 732Q652 734 653 740T655 748T658 754T663 759T672 761L686 754Q693 747 693 734Q684 668 648 623Q627 591 573 557T442 507L417 501Q428 496 442 494Q520 478 573 444T648 378Q684 333 693 267Q693 254 686 247Q673 234 659 245Q657 247 651 269Q630 383 511 432Q406 474 171 481H95Q82 494 82 501ZM70 -59Q57 -59 57 -26Q57 30 90 73T177 132Q191 136 226 136Q228 136 239 136T253 135T267 132T287 125T311 113T346 95T391 67Q462 20 502 5Q519 1 553 1Q586 1 602 5Q641 18 664 45T691 107Q694 136 704 136Q717 136 717 115V105Q717 39 671 -9T554 -58Q518 -58 481 -43T382 14Q302 63 273 74Q255 78 222 78Q188 78 173 74Q90 46 84 -28Q82 -59 70 -59ZM71 -294Q57 -294 57 -262Q57 -205 90 -162T177 -104Q191 -99 226 -99Q266 -103 277 -106Q310 -119 391 -168Q455 -212 502 -231Q519 -235 553 -235Q586 -235 602 -231Q640 -218 661 -195T686 -151T693 -115T704 -99Q717 -99 717 -121V-131Q717 -198 671 -246T556 -294Q519 -294 482 -279T382 -222Q307 -175 273 -162Q255 -157 222 -157Q188 -157 173 -162Q133 -175 110 -201T84 -264Q82 -294 71 -294'], + + // SUCCEEDS ABOVE ALMOST EQUAL TO + 0x2AB8: [761,294,778,57,717,'693 501Q693 493 679 481H604Q369 474 264 432Q143 382 124 269Q116 246 115 245Q101 234 88 247Q82 254 82 267Q89 329 126 378Q147 410 201 444T333 494L357 501Q354 502 340 505T318 510T295 516T269 525T243 535T215 548T188 565Q142 599 126 623Q89 672 82 734Q82 761 102 761L115 756Q116 755 124 732Q143 619 264 569Q371 527 604 521H679Q693 507 693 501ZM70 -59Q57 -59 57 -26Q57 30 90 73T177 132Q191 136 226 136Q228 136 239 136T253 135T267 132T287 125T311 113T346 95T391 67Q462 20 502 5Q519 1 553 1Q586 1 602 5Q641 18 664 45T691 107Q694 136 704 136Q717 136 717 115V105Q717 39 671 -9T554 -58Q518 -58 481 -43T382 14Q302 63 273 74Q255 78 222 78Q188 78 173 74Q90 46 84 -28Q82 -59 70 -59ZM71 -294Q57 -294 57 -262Q57 -205 90 -162T177 -104Q191 -99 226 -99Q266 -103 277 -106Q310 -119 391 -168Q455 -212 502 -231Q519 -235 553 -235Q586 -235 602 -231Q640 -218 661 -195T686 -151T693 -115T704 -99Q717 -99 717 -121V-131Q717 -198 671 -246T556 -294Q519 -294 482 -279T382 -222Q307 -175 273 -162Q255 -157 222 -157Q188 -157 173 -162Q133 -175 110 -201T84 -264Q82 -294 71 -294'], + + // PRECEDES ABOVE NOT ALMOST EQUAL TO + 0x2AB9: [761,337,778,57,718,'82 494T82 501T95 521H171Q256 523 317 528T441 548T543 584T613 644T651 732Q652 734 653 740T655 748T658 754T663 759T672 761L686 754Q693 747 693 734Q686 686 664 647T615 586T548 545T482 518T417 501Q419 500 451 493T517 471T590 434T657 367T693 267Q693 241 673 241Q664 241 659 245Q656 249 650 273T635 323T593 380T511 432Q406 474 171 481H95Q82 494 82 501ZM57 -26Q57 39 101 87T219 136Q254 136 277 130Q320 114 382 72Q419 50 424 45Q426 45 459 110Q496 178 497 179Q500 180 504 180Q509 180 517 175T526 161Q526 158 495 90L462 25Q462 21 502 5Q519 1 553 1Q586 1 602 5Q641 18 664 45T691 107Q694 136 706 136T718 115Q718 114 718 111T717 105Q717 39 671 -9T554 -58L459 -33Q450 -29 444 -27T437 -26L371 -155L391 -168Q485 -235 538 -235H553Q586 -235 602 -230Q683 -204 691 -128Q694 -99 706 -99T718 -120Q718 -121 718 -124T717 -130Q717 -199 670 -246T557 -294T393 -228Q353 -205 351 -201Q348 -201 315 -266Q294 -310 285 -323T268 -337Q259 -337 254 -331T248 -317Q248 -305 282 -246L313 -181Q313 -177 273 -161Q255 -157 222 -157Q188 -157 173 -161Q134 -174 113 -198T88 -242T82 -278T71 -294Q57 -294 57 -261Q57 -204 91 -161T179 -104Q195 -99 228 -99Q274 -102 315 -124Q337 -132 337 -130L404 -1L384 12Q319 58 273 74Q255 79 222 79Q188 79 173 74Q133 61 112 37T88 -7T82 -43T70 -59Q57 -59 57 -26'], + + // SUCCEEDS ABOVE NOT ALMOST EQUAL TO + 0x2ABA: [761,337,778,57,718,'693 501Q693 493 679 481H604Q548 479 509 477T418 469T331 454T257 429T194 392T150 340T124 270Q117 247 115 245Q101 236 88 247Q82 254 82 267Q89 330 126 379Q147 411 202 444T333 494L357 501Q239 531 188 565Q142 599 126 623Q89 672 82 734Q82 761 102 761L115 756Q116 755 124 732Q133 678 166 640T241 579T349 544T470 527T604 521H679Q693 507 693 501ZM57 -26Q57 39 101 87T219 136Q254 136 277 130Q320 114 382 72Q419 50 424 45Q426 45 459 110Q496 178 497 179Q500 180 504 180Q509 180 517 175T526 161Q526 158 495 90L462 25Q462 21 502 5Q519 1 553 1Q586 1 602 5Q641 18 664 45T691 107Q694 136 706 136T718 115Q718 114 718 111T717 105Q717 39 671 -9T554 -58L459 -33Q450 -29 444 -27T437 -26L371 -155L391 -168Q485 -235 538 -235H553Q586 -235 602 -230Q683 -204 691 -128Q694 -99 706 -99T718 -120Q718 -121 718 -124T717 -130Q717 -199 670 -246T557 -294T393 -228Q353 -205 351 -201Q348 -201 315 -266Q294 -310 285 -323T268 -337Q259 -337 254 -331T248 -317Q248 -305 282 -246L313 -181Q313 -177 273 -161Q255 -157 222 -157Q188 -157 173 -161Q134 -174 113 -198T88 -242T82 -278T71 -294Q57 -294 57 -261Q57 -204 91 -161T179 -104Q195 -99 228 -99Q274 -102 315 -124Q337 -132 337 -130L404 -1L384 12Q319 58 273 74Q255 79 222 79Q188 79 173 74Q133 61 112 37T88 -7T82 -43T70 -59Q57 -59 57 -26'], + + // SUBSET OF ABOVE EQUALS SIGN + 0x2AC5: [754,215,778,84,694,'84 463Q84 585 166 663T360 752Q361 752 370 752T395 752T430 752T475 753T524 753H679Q694 746 694 733Q694 724 681 714L522 713H470H441Q366 713 338 709T266 685Q244 674 224 659T179 617T139 550T124 463V458Q124 370 185 302Q244 238 328 220Q348 215 366 215T522 213H681Q694 203 694 193Q694 180 679 173H526Q510 173 480 173T434 172Q350 172 289 188T172 258Q84 340 84 463ZM84 -14T84 -1T98 19H679Q694 11 694 -1Q694 -14 679 -21H98Q84 -14 84 -1ZM84 -208T84 -195T98 -175H679Q694 -183 694 -195Q694 -208 679 -215H98Q84 -208 84 -195'], + + // SUPERSET OF ABOVE EQUALS SIGN + 0x2AC6: [754,215,778,83,694,'83 733Q83 746 98 753H251Q267 753 297 753T343 754Q427 754 488 738T605 668Q693 587 693 463Q693 378 650 312T545 213T415 174Q407 173 251 173H98Q83 180 83 193Q83 203 96 213H255H308H337Q412 213 439 217T512 241Q533 252 553 267T599 309T639 376T654 463Q654 554 592 624Q557 662 512 685Q468 704 439 708T335 713H306H255L96 714Q83 724 83 733ZM84 -14T84 -1T98 19H679Q694 11 694 -1Q694 -14 679 -21H98Q84 -14 84 -1ZM84 -208T84 -195T98 -175H679Q694 -183 694 -195Q694 -208 679 -215H98Q84 -208 84 -195'], + + // stix-subset not double equals, variant + 0x2ACB: [783,385,778,82,694,'693 221Q693 214 680 201H524Q398 201 367 202T309 212Q236 230 180 280T98 398Q84 438 84 492T98 585Q126 663 193 716T346 781Q347 781 373 781T440 782T520 783H680Q682 780 686 776T691 770T693 763T680 743H526Q364 743 353 741Q279 730 221 687T138 578Q124 540 124 492T138 405Q163 340 221 297T353 243Q364 241 526 241H680Q682 238 686 234T691 228T693 221ZM82 -48T82 -41T95 -19H462L513 41L569 105Q574 110 582 110T596 104T602 90Q602 87 600 83Q600 77 555 30L515 -17L600 -19H682Q693 -30 693 -38T680 -59H480L415 -137L349 -213L515 -215H682Q693 -226 693 -233T680 -255H313L260 -317Q224 -360 212 -372T192 -385Q184 -385 179 -377T173 -362Q174 -361 218 -306L260 -255H178L93 -253L86 -248Q82 -243 82 -235Q82 -226 93 -215H195L295 -213L362 -137L426 -59H260L93 -57L86 -53Q82 -48 82 -41'], + + // SUPERSET OF ABOVE NOT EQUAL TO + 0x2ACC: [783,385,778,82,693,'82 759T82 763T83 769T89 776T95 783H251Q378 783 409 782T469 772Q540 753 596 703T678 585Q691 546 691 492T678 398Q649 320 581 267T426 203Q415 201 251 201H95Q82 214 82 221Q82 225 83 227T89 234T95 241H249Q411 241 422 243Q496 253 554 296T638 405Q651 444 651 492Q651 539 638 578Q613 643 555 686T422 741Q411 743 249 743H95Q82 759 82 763ZM82 -48T82 -41T95 -19H462L513 41L569 105Q574 110 582 110T596 104T602 90Q602 87 600 83Q600 77 555 30L515 -17L600 -19H682Q693 -30 693 -38T680 -59H480L415 -137L349 -213L515 -215H682Q693 -226 693 -233T680 -255H313L260 -317Q224 -360 212 -372T192 -385Q184 -385 179 -377T173 -362Q174 -361 218 -306L260 -255H178L93 -253L86 -248Q82 -243 82 -235Q82 -226 93 -215H195L295 -213L362 -137L426 -59H260L93 -57L86 -53Q82 -48 82 -41'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/AMS/Regular/SuppMathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js new file mode 100644 index 0000000..22e0b40 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js @@ -0,0 +1,167 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Caligraphic/Bold/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Caligraphic-bold'] = { + directory: 'Caligraphic/Bold', + family: 'MathJax_Caligraphic', + id: 'MJCALB', + weight: 'bold', + skew: { + 0x41: 0.224, + 0x42: 0.16, + 0x43: 0.16, + 0x44: 0.0958, + 0x45: 0.128, + 0x46: 0.128, + 0x47: 0.128, + 0x48: 0.128, + 0x49: 0.0319, + 0x4A: 0.192, + 0x4B: 0.0639, + 0x4C: 0.16, + 0x4D: 0.16, + 0x4E: 0.0958, + 0x4F: 0.128, + 0x50: 0.0958, + 0x51: 0.128, + 0x52: 0.0958, + 0x53: 0.16, + 0x54: 0.0319, + 0x55: 0.0958, + 0x56: 0.0319, + 0x57: 0.0958, + 0x58: 0.16, + 0x59: 0.0958, + 0x5A: 0.16 + }, + + // SPACE + 0x20: [0,0,250,0,0,''], + + // DIGIT ZERO + 0x30: [460,17,575,46,528,'259 460H279Q352 460 403 444T491 378Q528 320 528 219Q528 100 475 45Q417 -17 287 -17Q152 -17 99 44T46 219Q46 246 47 265T57 318T82 376T131 422T210 454Q234 460 259 460ZM389 229V271Q389 351 371 380T280 409Q232 409 208 385Q194 371 190 345T185 229V210Q185 108 194 83Q208 35 287 35Q317 35 336 42Q372 55 380 85T389 204V229'], + + // DIGIT ONE + 0x31: [461,0,575,80,494,'119 417Q191 417 240 428T310 450T338 461Q353 461 357 452T361 400Q361 389 361 342T360 254V62H420H456Q483 62 488 58T494 35V29Q494 13 491 7T473 0Q468 0 424 1T295 2T167 1T117 0Q114 0 111 0T107 1Q96 8 96 27V35Q96 54 102 58T140 62H170H229V213Q229 363 228 363Q220 360 196 358T150 356L130 355H93Q84 360 82 365T80 386Q80 404 81 407T95 417H119'], + + // DIGIT TWO + 0x32: [460,0,575,51,517,'214 399Q202 399 191 398T175 395T170 392L171 390Q172 389 174 386T178 379T181 369T182 355Q182 328 165 312T123 296Q99 296 82 312T64 356Q64 397 105 428T253 460Q301 460 337 456T411 441T476 403T514 338Q516 328 516 310V304Q516 257 470 227Q456 217 427 205T376 184L354 176Q350 174 325 162T277 139L254 128Q414 129 428 130H439Q450 148 453 166T460 188T486 193H493Q515 193 517 178Q517 171 502 94T484 11Q481 3 472 2T410 0H269Q65 0 62 2Q55 5 53 10T51 32Q51 54 56 58Q60 62 173 131Q296 207 318 224Q368 264 368 308Q368 342 342 363T283 392T214 399'], + + // DIGIT THREE + 0x33: [461,212,575,48,526,'80 309Q80 367 131 414T276 461Q388 461 441 417T494 313Q494 265 463 223T373 155L361 151L376 147Q436 132 480 92T525 -15T487 -127T393 -192T274 -211Q179 -211 114 -167T48 -53Q48 -18 69 5T128 29Q168 29 188 5T208 -50Q208 -59 207 -67T203 -81T197 -92T190 -101T183 -109T177 -114T170 -118L167 -121Q160 -125 164 -127Q167 -129 176 -133Q215 -152 268 -152H273Q337 -152 356 -92Q364 -69 364 -14Q364 45 352 74T303 120Q287 125 240 125H230Q201 125 196 127T191 146V152Q192 170 196 173T233 178Q234 178 241 178T252 179T262 181T274 183T285 188T297 195T308 205T319 218T328 235T337 257Q345 280 345 320V330Q345 345 343 355T335 379T312 399T270 407Q226 407 177 377Q226 356 226 310Q226 270 204 253T153 235Q123 235 102 253T80 309'], + + // DIGIT FOUR + 0x34: [469,194,575,32,542,'180 0Q155 0 124 0T84 -1Q48 -1 40 3T32 27V37Q32 59 34 63T204 265T377 465Q380 468 383 468H387Q391 468 398 468T411 469Q432 469 438 468T449 459Q451 455 451 258V62H489H498Q531 62 536 58T542 31Q542 9 537 5T504 0H489H451V-132H489H498Q530 -132 536 -136T542 -163Q542 -181 538 -187T522 -194Q518 -194 483 -193T378 -192Q281 -192 256 -193L217 -194Q203 -189 203 -169V-163V-158Q203 -140 209 -136T246 -132H265H314V0H180ZM325 62V320L105 63L215 62H325'], + + // DIGIT FIVE + 0x35: [461,211,575,57,517,'131 29Q159 26 175 12T194 -13T197 -35V-41Q197 -58 195 -66Q191 -76 185 -84T173 -97T161 -105T152 -109L148 -110Q148 -112 158 -121T195 -141T252 -152Q274 -152 280 -151Q335 -137 349 -104T363 9Q363 85 356 114T322 157Q305 166 286 166Q251 166 223 154T182 131T162 109Q154 98 150 96T130 93Q107 93 102 104Q100 107 100 279V371V424Q100 461 110 461Q114 461 123 458T149 450T183 441Q234 429 286 429Q313 429 340 432T387 440T422 449T447 457T458 461Q472 461 472 435Q472 420 470 418Q464 405 438 379T352 325T226 297Q189 297 171 301H168V182Q169 182 174 185T190 194T213 205T248 213T292 217Q391 217 454 159T517 5Q517 -92 444 -151T255 -211Q167 -211 112 -160T57 -44Q57 -12 76 8T131 29'], + + // DIGIT SIX + 0x36: [660,17,575,48,526,'48 316Q48 398 70 462T124 562T198 621T274 652T339 660Q377 660 384 659Q497 632 497 532Q497 507 482 487T431 466Q397 466 381 486T365 530Q365 569 405 593Q382 603 381 603Q361 607 350 607Q316 607 279 589T221 533Q199 489 196 385L195 370Q196 371 203 379T217 395T237 410T263 424Q283 431 313 431Q409 431 468 368Q526 310 526 208Q526 131 492 81T405 5Q359 -17 289 -17Q256 -17 227 -11T163 17T105 73T65 170T48 316ZM293 380Q244 380 220 331T196 212Q196 104 216 80Q240 41 292 41Q295 41 301 41T309 42Q338 46 355 62Q372 81 375 108T379 230Q378 314 372 333Q358 375 299 380H293'], + + // DIGIT SEVEN + 0x37: [476,211,575,64,558,'95 210H88Q66 210 64 225Q64 229 82 345T102 465Q106 476 125 476H131Q162 476 162 458Q162 451 213 448Q221 448 238 447T260 446Q261 446 410 444Q436 444 468 444T509 445Q544 445 551 440T558 413V404Q558 395 547 380T478 301L392 202Q354 150 339 81T321 -104V-132Q321 -187 286 -203Q273 -211 255 -211Q236 -211 217 -199T190 -160Q189 -153 189 -130Q194 17 282 156Q309 200 370 270Q404 307 400 307H293Q151 306 146 303Q140 300 132 259T120 215Q115 210 95 210'], + + // DIGIT EIGHT + 0x38: [661,17,575,48,526,'48 164Q48 199 59 228T92 277T128 307T163 329Q159 332 155 336Q135 346 110 382Q80 427 80 477Q80 564 147 620Q202 660 264 660Q266 660 275 660T290 661Q384 661 439 619T494 506Q494 486 489 468T477 437T459 413T440 395T421 380T406 370L410 368Q414 365 421 361T437 351T456 335T476 316T495 291T511 262T522 228T526 189Q526 93 460 38T282 -17Q242 -17 205 -9T130 19T71 75T48 164ZM406 506Q406 545 379 576T283 607Q218 606 193 585T168 536Q168 522 172 513T195 490T224 471T275 443L346 403Q406 446 406 506ZM291 42Q365 42 395 70T425 134V141Q425 170 401 190T319 242Q308 248 302 251Q286 260 266 271T235 288L225 294Q222 292 217 289T198 274T175 249T157 212T148 163Q148 116 179 79T291 42'], + + // DIGIT NINE + 0x39: [461,210,575,48,526,'175 -140Q198 -152 236 -152Q294 -152 332 -116Q356 -91 366 -54T379 62V78L376 74Q372 70 366 64T352 50T333 35T308 23Q289 17 262 17Q168 17 108 77T48 235Q48 273 59 317Q81 381 141 421T276 461Q279 461 285 461T295 460Q326 460 354 454T415 426T471 371T510 277T526 136Q526 42 501 -28T432 -136T341 -192T240 -210Q199 -210 169 -201T121 -178T94 -146T80 -112T77 -82Q77 -51 95 -33T143 -15Q170 -15 189 -33T209 -81Q209 -116 175 -140ZM377 244V274Q377 300 376 316T368 352T348 384T312 405Q307 406 283 406Q257 406 238 396T213 376T205 361Q196 341 196 259V233V181Q196 122 211 96T278 69H298Q330 82 345 104Q367 134 376 190Q377 200 377 244'], + + // LATIN CAPITAL LETTER A + 0x41: [751,49,921,39,989,'761 751Q784 751 784 728V711Q784 570 795 417T820 191Q844 76 865 76Q868 76 902 93T962 112H973Q989 104 989 94Q989 92 987 86Q978 47 846 -11Q812 -25 779 -26Q722 -26 708 9Q688 47 669 161H524L379 162L359 136Q286 43 234 -3T142 -49T71 -19T39 55Q39 92 60 131T103 174Q113 174 117 167T124 149T136 128T166 110Q183 105 190 105Q230 105 341 246Q401 322 453 397T531 514T582 601T611 651H640V663Q640 692 676 718T745 750Q747 750 752 750T761 751ZM658 266Q653 312 649 377T644 489T641 541V556L557 415Q500 325 448 253Q467 261 524 261H568H658V266'], + + // LATIN CAPITAL LETTER B + 0x42: [706,17,748,40,739,'441 83Q571 83 571 195Q571 246 538 279T466 322T386 333Q378 333 357 330T329 327Q307 327 307 345Q307 354 313 365T347 396T419 430Q546 472 581 498Q594 508 594 535Q594 574 567 589T508 604Q469 604 442 583Q390 546 342 457T265 256Q237 148 186 60Q167 29 144 13Q105 -15 68 -17H65Q40 -17 40 1Q40 7 53 29T87 100T124 210Q162 373 190 575Q188 575 174 567T138 550T98 542Q75 542 75 560Q75 588 123 618Q135 625 203 659T281 696Q299 703 316 703Q339 703 339 685Q339 656 328 583L333 588Q338 592 346 599T367 615T394 634T428 654T467 674T511 690T559 701T611 705Q651 704 681 689Q739 659 739 598Q739 507 595 427L584 421Q585 420 595 416T610 410T626 402T644 392T660 380T677 365T691 347T703 325T710 299T715 268Q717 193 665 130Q622 73 531 28T348 -17Q275 -17 225 10Q206 19 200 24T193 36Q193 57 231 86T311 119H322Q386 83 441 83'], + + // LATIN CAPITAL LETTER C + 0x43: [704,20,613,20,599,'243 -20Q135 -20 78 48T20 218Q20 280 39 344T98 470T193 580T324 661T488 702H490Q491 702 493 702T498 703T507 703T518 702H526Q599 702 599 631Q599 597 577 550T541 486Q523 463 490 447T431 430Q423 430 419 433Q409 437 409 450Q410 456 432 499T454 567Q454 586 446 594T415 603Q316 603 254 532Q216 487 190 421T164 284Q164 228 181 186T226 122T282 90T340 80Q377 80 405 96T449 131T492 167T553 187H555Q580 187 580 168Q580 153 551 123T476 60T367 4T243 -20'], + + // LATIN CAPITAL LETTER D + 0x44: [686,0,892,20,885,'107 0Q92 5 92 18Q92 33 113 53T160 86Q170 91 182 94T197 100L206 120Q248 226 273 337T304 501T309 585Q278 585 234 577T179 557Q172 550 166 532T156 509Q140 484 105 466T44 447Q20 447 20 465Q20 482 34 510T76 565Q122 608 173 632Q281 686 447 686H480H517Q692 686 784 631Q885 571 885 450Q885 339 805 239T586 75T286 1Q276 0 187 0H107ZM741 391Q741 424 731 452T694 510T613 558T481 584Q476 584 468 584T457 585L449 586V579Q441 501 425 424T391 292T357 193T330 125T319 100H324Q511 100 628 175Q688 215 714 275T741 391'], + + // LATIN CAPITAL LETTER E + 0x45: [703,16,607,37,627,'495 516Q485 516 478 520T470 532Q470 537 476 550T482 570Q482 589 465 596T401 603Q344 603 319 582Q295 558 295 519Q295 493 312 474T355 445T407 432T455 427Q477 427 477 409Q477 395 453 371T389 333Q380 330 345 327T279 312T223 272Q181 223 181 176Q181 131 225 107T324 83Q366 83 395 98T448 136T487 167Q517 185 547 187H551Q574 187 574 170Q574 151 535 113T421 36T271 -15Q260 -16 226 -16Q181 -16 152 -9Q104 4 71 33T37 111Q37 140 50 176T106 263T216 356Q215 357 207 362T190 374T172 392T156 419T150 456Q150 521 208 580T341 670T474 702Q475 703 499 703Q528 703 547 701T586 693T615 673T627 637Q627 584 581 550T495 516'], + + // LATIN CAPITAL LETTER F + 0x46: [686,30,814,17,930,'812 567Q804 567 795 570T786 579Q786 586 647 586H559L558 582Q558 575 539 510T506 407L498 384H775Q788 378 790 368Q790 328 746 298T665 268Q646 268 642 284H457L447 261Q396 150 360 94Q329 46 270 8T149 -30Q123 -30 100 -24T63 -10T37 9T22 26T17 36Q17 59 56 88T135 119Q145 119 149 117T165 104Q187 78 227 72Q232 72 234 76Q245 93 273 145T350 323T424 570L428 586H276Q265 575 239 563T190 551Q180 551 174 556T167 569Q167 580 179 597T213 634T278 668T371 685Q374 686 624 686Q863 685 888 682Q917 678 927 663Q930 658 930 650Q930 624 888 596T812 567'], + + // LATIN CAPITAL LETTER G + 0x47: [703,114,682,50,671,'50 279Q50 361 88 438T190 570T335 661T503 702H514Q524 703 532 703Q671 703 671 626Q671 580 614 514T495 447Q472 447 472 465Q472 477 499 511T527 562Q527 582 507 592T433 602Q351 602 302 569Q252 535 223 469T194 344Q194 266 237 217T352 168Q401 168 442 205T505 316Q515 345 551 368T622 393H625Q649 393 649 376Q649 371 635 318T612 237Q580 129 540 62T442 -49Q353 -114 264 -114Q259 -114 252 -114L246 -113Q190 -113 142 -107T81 -96Q71 -90 71 -81Q71 -57 110 -30T187 2Q196 2 236 -4T338 -14Q371 -14 377 -9Q410 24 446 113L451 127Q353 68 253 68Q157 68 104 129T50 279'], + + // LATIN CAPITAL LETTER H + 0x48: [686,48,987,20,946,'42 447Q20 447 20 465Q20 481 47 515T119 589T239 657T392 686Q443 686 463 664T484 616Q484 570 473 506T452 401L441 360Q441 359 550 359H660L663 370Q684 435 716 522T758 624Q771 646 806 666T870 686Q894 686 894 668Q894 667 867 597T804 416T752 218Q737 135 737 93Q737 77 746 65T778 53Q799 53 803 54T814 63Q831 86 864 103T924 120Q946 120 946 100Q945 85 931 63T888 16T806 -27T684 -48H681Q625 -48 603 -10Q593 4 593 29Q593 71 603 131T624 230L634 269Q632 269 624 266Q610 261 600 261T507 259H411L399 222Q344 62 322 21Q301 -7 268 -24T209 -41H207Q187 -41 185 -25Q185 -17 192 2T220 71T261 184Q284 256 284 258Q284 259 227 259H170Q169 259 166 261T162 264T158 266T156 271T155 277Q155 296 184 320T250 356Q259 358 286 359Q312 359 312 360Q314 372 318 385Q332 450 339 526Q339 530 339 535T340 543Q340 586 296 586Q255 586 227 576T188 553T165 523T146 497Q127 476 97 462T42 447'], + + // LATIN CAPITAL LETTER I + 0x49: [687,0,642,-27,746,'56 499Q32 499 32 516Q32 540 64 580T165 649Q241 682 365 685Q366 685 376 685T405 685T445 686T496 686T553 686H732Q746 677 746 668Q746 646 711 620T642 587L572 586H503Q479 546 458 479T424 352T383 224T318 111L309 101L412 100H514L523 109Q567 150 618 153Q644 153 644 135Q644 132 642 124Q629 86 581 52T476 6Q454 2 433 2T216 0Q-11 0 -15 2Q-27 6 -27 18Q-27 37 2 61T59 93Q77 100 142 100H198Q255 177 299 369Q337 513 382 574L391 586H348Q261 586 176 576Q163 543 124 521T56 499'], + + // LATIN CAPITAL LETTER J + 0x4A: [687,114,779,53,937,'286 390Q263 390 263 407Q263 432 293 481T367 566Q511 687 724 687Q738 687 761 687T793 686H923Q937 677 937 668Q937 648 905 623T842 589Q829 587 817 586T802 585T795 583T788 578Q709 506 632 189Q622 153 615 134T588 81T537 17Q482 -39 404 -76T247 -114Q192 -114 158 -100Q53 -61 53 32Q53 59 58 73T79 102Q126 147 177 147Q200 147 200 128Q200 123 198 112T196 96Q196 47 238 17T345 -13Q362 -13 377 -9T404 0T426 16T444 34T459 55T470 76T478 97T483 116T488 132L490 141Q511 222 520 257T554 364T608 486T675 576L685 586H634H612Q532 586 484 564Q453 549 436 526T409 478T395 447Q378 424 345 407T286 390'], + + // LATIN CAPITAL LETTER K + 0x4B: [703,17,871,40,834,'98 542Q75 542 75 560Q75 588 123 618Q132 624 199 657T275 694Q291 703 315 703Q327 703 332 699T338 690T339 670Q339 596 323 505T283 337T237 194T198 90L181 53Q170 31 136 8T68 -17H65Q40 -17 40 0L76 92Q112 185 150 322T194 564V578L168 565Q125 542 98 542ZM834 142Q834 125 819 100T774 48T692 3T576 -16H560Q540 -16 508 6Q469 33 422 108T342 267T309 398Q309 411 310 417T320 442T347 482Q401 542 517 615T710 702Q712 702 721 702T735 703Q772 703 791 690Q819 674 819 646T792 597T733 574H722Q704 584 704 599Q706 607 700 610T672 617L660 613Q609 595 524 538T423 450V440Q423 376 488 247T604 83Q621 70 640 70Q677 70 701 82Q713 87 718 101T737 132T783 160Q792 163 807 163Q834 163 834 142'], + + // LATIN CAPITAL LETTER L + 0x4C: [703,17,788,41,751,'63 -17Q41 -17 41 0Q41 22 85 54Q101 68 113 92T133 141T154 219T182 315Q230 462 306 553Q345 599 391 632T478 678T543 697T582 703Q584 703 589 703T598 702Q643 702 666 676T689 613Q689 588 683 575Q674 551 632 524T552 496Q530 496 530 512Q530 517 531 525T533 538Q533 559 522 577T480 596H476Q462 596 451 588T415 544Q350 447 310 281Q284 181 261 136L255 124H285Q342 123 441 107T583 90L596 89Q603 116 647 144T729 173Q751 173 751 157Q751 118 685 60T523 -15Q514 -16 479 -16Q421 -16 320 0T171 18H155L142 10Q98 -17 63 -17'], + + // LATIN CAPITAL LETTER M + 0x4D: [703,49,1378,38,1353,'38 20Q38 59 60 99T104 139Q106 139 126 125T176 106H181Q200 106 221 139T286 281Q322 370 342 451T368 581T376 634Q384 657 420 680T487 703Q502 703 507 696T522 649Q538 589 554 537Q579 453 609 372T660 248T686 202Q687 201 739 244T830 322L1166 642Q1225 700 1230 701Q1230 701 1237 703Q1258 703 1258 667L1253 637Q1248 607 1241 558T1227 451T1214 326T1209 202Q1209 77 1232 77Q1237 77 1269 94T1326 112H1329Q1353 112 1353 94Q1353 81 1334 60Q1311 37 1248 7T1150 -24H1141H1135Q1085 -24 1074 26Q1064 75 1064 134Q1064 239 1086 426Q1087 430 1087 434L1061 410Q871 227 783 149L694 76Q653 44 647 40T631 34Q620 34 616 37T594 63Q546 125 514 198Q467 307 423 449L418 466L412 444Q376 310 306 153Q278 88 251 45T201 -18T163 -43T131 -49Q102 -48 70 -31T38 20'], + + // LATIN CAPITAL LETTER N + 0x4E: [840,49,937,-24,1105,'47 139Q81 105 122 105Q137 105 147 117Q159 134 182 199T234 381T274 610Q275 634 284 647Q297 666 327 684T389 703Q403 703 408 695T428 645Q480 490 567 298Q628 163 673 103Q674 102 674 102T675 106Q732 331 803 551Q842 674 875 725Q908 775 966 807T1081 840H1084Q1105 840 1105 803Q1105 768 1088 733T1051 689Q1045 686 1032 686Q986 683 948 663T901 624Q881 579 837 430T760 154L726 28Q725 28 725 28T723 25Q716 0 682 -24T611 -48Q600 -48 595 -45T576 -23Q522 44 480 124Q417 243 332 463L328 473L325 457Q291 293 227 124Q159 -49 72 -49Q38 -49 5 -28Q-24 -8 -24 21Q-24 58 -3 98T41 139H47'], + + // LATIN CAPITAL LETTER O + 0x4F: [704,17,906,63,882,'433 703Q456 703 456 685Q456 672 441 655T407 627Q402 623 378 611T328 579T276 524Q207 434 207 324Q207 222 270 153T441 84Q566 84 651 177T737 400V405Q737 496 693 549T576 603Q542 603 510 560Q490 537 472 502T442 454Q397 412 346 409Q320 409 320 427Q320 430 322 436Q331 465 360 507T433 594T542 671T677 703Q776 703 829 636T882 468Q882 369 831 277T702 122T528 21T343 -17Q214 -17 139 61T63 257Q63 336 94 409T173 534T272 625T367 684T432 703H433'], + + // LATIN CAPITAL LETTER P + 0x50: [686,67,810,20,846,'170 -67Q147 -67 147 -49Q147 -42 162 -8T204 99T253 254Q274 332 288 415T305 542L308 585Q277 585 234 577T179 557Q172 550 166 532T156 509Q140 484 105 466T44 447Q20 447 20 465Q20 482 34 510T76 565Q122 608 173 632Q279 686 448 686H495H537Q622 686 678 677T784 637Q846 598 846 533Q846 452 776 375T597 252T378 206H366L358 181Q341 130 316 68T282 -7Q262 -33 230 -50T170 -67ZM701 468Q701 512 661 540T570 577T461 586H448V582Q446 576 443 545T428 447T395 301L389 280Q390 280 398 284T419 295T441 303Q443 304 484 306T572 321T651 359Q701 402 701 468'], + + // LATIN CAPITAL LETTER Q + 0x51: [703,146,939,120,905,'874 453Q874 372 836 298T750 177T638 89T543 33T486 8L483 7Q485 5 523 -7T622 -32T726 -46Q741 -46 746 -45T755 -41T762 -27Q770 -1 806 23T878 50H890Q905 42 905 33Q905 -8 838 -68T670 -145Q662 -146 628 -146Q538 -146 389 -100T164 -50Q132 -50 132 -32T162 11T227 47Q231 48 286 51T394 62T518 100T641 180Q730 271 730 387Q730 478 673 540T520 602Q410 602 337 525T264 355Q264 284 310 244T420 203Q476 203 568 222Q594 222 594 204Q594 184 565 161T508 128Q433 103 316 103Q227 103 174 157T120 290Q120 382 182 471T343 620T548 697Q578 703 601 703Q604 703 611 703T623 702Q663 702 687 696Q760 679 817 618T874 453'], + + // LATIN CAPITAL LETTER R + 0x52: [686,17,990,20,981,'159 0Q159 5 172 34T205 114T245 229T284 386T309 575V585H304Q303 585 295 585T282 584Q233 579 207 570T175 553T165 531T156 509Q140 484 105 466T44 447Q20 447 20 465Q20 482 34 510T76 565Q122 608 173 632Q279 686 448 686H505H582Q683 686 745 672T834 611Q842 594 842 565Q842 523 824 484T780 419T722 370T669 336T632 318L619 312L626 302Q640 279 667 227T696 172Q717 133 735 112T762 88T784 84Q824 84 872 118T957 153Q981 153 981 136Q981 114 937 78T820 13T684 -17Q646 -17 616 8T569 66T526 151T477 234Q461 256 446 265Q437 272 421 274Q400 274 400 291Q400 311 430 336T495 371Q496 371 543 374T627 392T681 436Q699 467 699 503Q699 550 644 568T471 586H449V582Q449 581 447 559T438 499T422 413T393 298T348 165Q313 73 296 45Q282 24 249 4T185 -17Q159 -17 159 0'], + + // LATIN CAPITAL LETTER S + 0x53: [703,16,696,25,722,'204 476Q204 525 248 577T372 666T539 703T674 683T721 612Q721 588 714 569Q704 547 669 524T601 499Q573 499 573 516Q573 521 575 527T577 543Q577 563 568 574T548 588L539 590Q490 603 444 603Q418 603 394 597T364 583Q348 567 348 533Q348 493 382 466T459 425T555 387T633 330Q662 292 662 249Q662 153 544 69T257 -16Q218 -16 208 -15Q118 1 64 46Q25 76 25 126Q25 185 82 235T203 290H207Q229 290 231 274Q231 243 180 213Q173 209 172 206T170 189T171 170T183 150T216 121Q273 83 356 83Q412 83 459 100Q493 111 507 141Q518 165 518 185Q518 208 506 228T478 262T437 288T398 306T360 320Q316 335 285 352T239 384T215 416T205 443T204 467V476'], + + // LATIN CAPITAL LETTER T + 0x54: [720,69,644,38,947,'61 462H59Q38 462 38 479Q38 528 109 594T289 683L304 685L837 687L846 693Q889 720 923 720Q947 720 947 702Q945 671 892 631T776 583Q774 583 772 583T769 582T766 582L764 581H758Q753 581 744 581T722 580T693 580T662 580H563L514 385Q507 355 493 299T475 225T460 172T443 119T426 76T402 24Q386 -11 355 -33T304 -61T266 -69Q242 -69 242 -50Q243 -45 253 -25T278 32T307 115L364 340Q405 511 413 538T436 580H207Q202 572 200 568T197 561T195 552T190 537Q176 511 135 487T61 462'], + + // LATIN CAPITAL LETTER U + 0x55: [686,24,715,-10,771,'124 586Q107 586 74 569T15 552H13Q-10 552 -10 570Q-10 605 70 645T222 686Q283 686 283 631Q283 590 246 504T172 326T135 181Q135 130 157 107T205 83Q221 83 259 106Q347 165 453 301T604 548Q607 557 612 569T619 587T624 600T628 612T632 621T637 628T641 634T647 640T654 645T662 652Q706 686 748 686Q771 686 771 669Q771 656 754 614T700 467T630 229Q615 168 610 105Q610 88 617 78L641 90Q681 111 706 112Q733 112 733 95Q733 82 714 60Q694 40 633 10Q567 -23 532 -24Q507 -24 495 -17Q466 -4 466 32Q466 96 500 225Q277 -17 102 -17Q56 -17 23 17T-10 118Q-10 164 13 234T64 363T115 481T139 567Q139 586 124 586'], + + // LATIN CAPITAL LETTER V + 0x56: [686,77,737,25,774,'25 608Q25 628 60 657T148 686Q184 683 213 671T273 625T327 538T363 394T380 184L381 134L399 148Q503 226 574 302T667 415T689 467Q688 474 684 482T672 502T645 521T600 532Q576 532 576 567Q576 604 597 644T641 685H649Q701 685 737 648T774 545Q774 457 703 333T461 66Q397 13 332 -32T255 -77Q237 -77 237 -30V-23Q241 20 241 109Q241 483 115 569Q91 586 50 589Q25 589 25 608'], + + // LATIN CAPITAL LETTER W + 0x57: [686,77,1169,25,1206,'25 607Q25 629 62 657T142 686Q205 686 248 647T312 541T339 411T347 275Q347 249 345 203V189Q375 219 449 316T587 516Q629 584 629 587Q629 589 626 597T622 607Q622 629 658 656T732 686H744Q755 680 757 678Q757 677 769 649T799 577T835 475T874 339T904 183Q908 157 910 151L925 169Q997 252 1059 343T1121 474Q1120 498 1103 513T1059 532Q1036 532 1036 568Q1036 600 1053 636T1090 683L1097 686H1109Q1147 684 1176 652T1206 551Q1206 460 1131 320T897 7Q859 -33 840 -52T816 -74T804 -77Q788 -77 784 -32Q783 -28 783 -26Q774 108 744 239T691 436T665 501Q664 501 649 475T602 400T528 289T420 146T280 -15Q243 -56 231 -66T210 -77Q191 -77 191 -40Q191 -38 195 -4T204 91T209 217Q209 290 202 351T177 469T126 557T45 589Q25 589 25 607'], + + // LATIN CAPITAL LETTER X + 0x58: [687,-1,817,56,906,'762 562Q762 579 737 584T711 604Q711 630 753 658T834 686Q864 686 885 669T906 627Q906 580 834 522T614 379L584 362V357Q585 354 589 315T597 233T603 183Q610 132 627 116T671 100Q678 100 704 113T754 126T778 107Q776 79 733 45T626 2Q615 1 578 1Q542 1 535 3Q521 7 510 15T491 31T477 54T467 78T460 108T456 137T452 170T449 201Q447 220 445 240T442 270L441 281Q435 281 357 233Q240 165 206 135Q200 128 200 124Q200 113 208 108T226 101T244 96T252 82Q252 61 214 31T129 1H120Q97 1 77 16T56 60Q56 105 133 168T414 345Q428 352 431 354T433 359Q422 493 414 522Q407 551 395 566T373 583T350 586H341L332 580Q290 560 265 560Q243 560 243 577Q243 585 248 596T269 624T306 653T365 676T447 686H456Q472 686 484 683T514 671T543 637T562 576Q565 557 570 501L577 437Q577 436 613 457T694 506T756 551Q762 558 762 562'], + + // LATIN CAPITAL LETTER Y + 0x59: [686,164,759,36,797,'73 555Q49 555 49 573Q49 602 110 644T239 686Q319 686 376 624Q416 584 444 511T483 361T499 240T503 173Q503 165 504 165Q506 165 524 184T556 218Q631 297 674 377T718 485Q718 505 699 526Q673 552 628 552Q619 552 613 562T607 590Q607 617 621 645T658 685Q661 686 671 686Q718 686 757 652T797 545Q797 476 749 369T602 146Q500 29 371 -67T176 -164Q112 -164 74 -120T36 -29Q36 5 55 36T95 67Q104 67 108 59T115 39T128 12T154 -12Q183 -30 216 -30Q239 -30 305 7L361 44L367 49V54Q367 95 364 143T351 273T312 429T243 546Q206 581 156 588L146 581Q108 555 73 555'], + + // LATIN CAPITAL LETTER Z + 0x5A: [686,0,818,46,853,'622 574Q522 579 420 579H396Q373 579 364 574T351 550Q339 516 297 490T218 462Q195 462 195 479Q195 487 197 492Q218 565 313 625T509 685Q564 685 650 683T755 680Q787 680 807 683T831 686Q853 686 853 669Q853 657 826 626Q742 532 641 437L619 415L622 414Q626 414 631 414T642 414Q697 411 697 388Q697 367 670 345T607 323Q605 323 592 325T546 329H522L490 302Q457 274 400 226T289 136L260 113L318 112Q345 111 452 109T587 106H627Q650 143 656 170Q666 197 710 225T788 253Q811 253 811 237Q811 211 781 160T710 77Q619 0 515 0Q507 0 497 0T484 1Q434 1 319 3T177 6Q123 6 95 2Q83 2 71 0H68Q46 0 46 17Q46 28 58 44Q68 56 100 80T210 165T383 307L408 329H361L314 330Q297 338 297 350Q297 368 320 388T368 413Q375 415 441 415H506L647 555L664 574H622'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Caligraphic/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js new file mode 100644 index 0000000..f65114a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js @@ -0,0 +1,166 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Caligraphic/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Caligraphic'] = { + directory: 'Caligraphic/Regular', + family: 'MathJax_Caligraphic', + id: 'MJCAL', + skew: { + 0x41: 0.194, + 0x42: 0.139, + 0x43: 0.139, + 0x44: 0.0833, + 0x45: 0.111, + 0x46: 0.111, + 0x47: 0.111, + 0x48: 0.111, + 0x49: 0.0278, + 0x4A: 0.167, + 0x4B: 0.0556, + 0x4C: 0.139, + 0x4D: 0.139, + 0x4E: 0.0833, + 0x4F: 0.111, + 0x50: 0.0833, + 0x51: 0.111, + 0x52: 0.0833, + 0x53: 0.139, + 0x54: 0.0278, + 0x55: 0.0833, + 0x56: 0.0278, + 0x57: 0.0833, + 0x58: 0.139, + 0x59: 0.0833, + 0x5A: 0.139 + }, + + // SPACE + 0x20: [0,0,250,0,0,''], + + // DIGIT ZERO + 0x30: [452,22,500,39,460,'39 213Q39 274 53 319T89 389T139 429T192 448T242 452Q347 452 400 400Q460 335 460 213Q460 -22 250 -22Q39 -22 39 213ZM364 242Q364 279 363 301T355 348T338 385T306 406T254 415Q250 415 245 415T238 416Q217 416 190 404T150 368Q136 339 136 221Q136 114 146 78T200 23Q219 16 250 16Q280 16 299 23Q341 41 352 77T364 221V242'], + + // DIGIT ONE + 0x31: [453,0,500,86,426,'116 410Q176 412 215 423T269 443T288 453H291Q293 453 301 447V254Q301 62 303 60Q307 52 322 49T394 46Q418 46 422 43T426 23Q426 8 424 4T411 0Q407 0 369 1T258 2T148 1T106 0Q96 0 94 4T91 23Q91 40 95 43T123 46Q180 46 195 49T215 61Q216 63 216 220V376Q192 367 119 364H93L86 371V403L92 410H116'], + + // DIGIT TWO + 0x32: [453,0,500,44,449,'55 334Q55 386 105 419T236 453Q333 453 390 413T448 307Q448 278 437 256T406 218T365 193T318 172T277 151L248 134Q219 118 191 102T163 84T267 83L382 85H391Q399 99 406 126Q410 143 413 145T429 148Q440 148 442 147T449 139Q449 137 435 73T420 7Q420 6 414 0H233Q94 0 71 0T46 5Q46 5 46 6Q44 8 44 24Q44 39 46 41Q47 44 98 78T212 155T294 212Q347 257 347 304Q347 354 306 380T203 407Q150 407 120 377Q118 375 123 373Q146 362 146 332Q146 315 133 302T101 288Q85 288 70 298T55 334'], + + // DIGIT THREE + 0x33: [452,216,500,42,457,'69 312Q69 377 122 414T233 452Q333 452 381 409T430 313Q430 268 402 223T311 149L301 144Q307 143 317 140T355 123T402 92T439 44T456 -25Q456 -101 396 -158T241 -216Q154 -216 98 -173T42 -68Q42 -58 44 -50T50 -35T57 -25T66 -17T75 -13T82 -10L87 -8Q92 -7 102 -7Q132 -7 147 -25T162 -66Q162 -112 118 -125L113 -126Q113 -129 127 -140T173 -162T239 -173Q268 -173 292 -158Q345 -124 345 -24Q345 33 329 67Q298 125 229 125H210H172Q166 131 166 142Q166 159 172 161Q178 161 208 164T244 169Q251 169 263 176T291 199T316 245T327 314Q327 413 238 413Q182 413 130 369Q177 350 181 312Q181 289 166 273T125 257Q102 257 86 272T69 312'], + + // DIGIT FOUR + 0x34: [464,194,500,28,471,'163 0Q139 0 109 0T71 -1Q43 -1 36 2T28 15V27V46L190 270Q325 457 330 462Q333 464 352 464H371L377 458V46H464L471 40V6L464 0H377V-65V-108Q377 -131 379 -137T391 -144Q409 -148 446 -148H464Q468 -151 471 -155V-187L464 -194H453Q395 -192 325 -192Q222 -192 210 -194H199L193 -188V-154L199 -148H228Q241 -148 250 -148T265 -146T275 -145T281 -143T284 -141T286 -138T289 -134V0H163ZM295 46V350L75 46H295'], + + // DIGIT FIVE + 0x35: [453,216,500,50,448,'159 -44Q159 -66 145 -80T109 -96H102L107 -105Q148 -173 228 -173Q255 -173 280 -162Q351 -128 351 -6V8Q351 67 344 98T316 151Q288 176 255 176Q175 176 136 109Q129 100 114 100Q97 100 95 106Q93 110 93 277V403Q93 451 98 451Q100 452 103 452Q105 452 124 445T177 431T251 423Q294 423 328 430T380 445T401 453Q410 453 410 435V422Q332 331 203 331Q152 331 140 339Q139 339 139 254V168Q194 214 256 214Q332 214 390 154T448 0Q448 -95 381 -155T229 -216Q153 -216 104 -166T50 -49Q50 -15 66 -1T105 13Q128 13 143 -3T159 -44'], + + // DIGIT SIX + 0x36: [665,22,500,41,456,'42 313Q42 401 68 472T133 583T215 644T296 665H304Q317 665 329 664T360 657T393 640T418 608T432 557Q432 533 422 519T401 502T380 498Q358 498 343 512T328 550Q328 591 367 601L372 602Q372 604 365 609T341 620T307 626Q260 626 226 600T174 537Q147 483 143 376V356Q192 434 266 434Q317 434 357 409Q406 375 435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM251 396Q211 396 178 354T145 217Q145 159 152 122T166 73T187 47Q216 21 252 21Q294 21 321 47Q342 68 349 99T356 203V232Q356 264 354 285T345 331T322 373T280 395Q274 396 251 396'], + + // DIGIT SEVEN + 0x37: [463,216,500,55,485,'75 246Q64 246 62 247T55 255Q55 259 72 357T90 458L94 462H99Q104 463 109 463H121Q128 460 128 452Q128 445 134 441T165 435T233 432T356 431H478L485 425V392L414 298Q408 290 385 260T358 223T337 191T317 154T302 116T289 68T282 14T275 -55T274 -137Q274 -173 272 -177Q262 -216 223 -216Q170 -216 170 -157V-148Q172 -78 189 -12T237 109T288 196T338 266Q345 275 348 279Q395 340 395 342Q396 343 376 343T274 343Q122 342 117 339T103 294T90 248Q88 246 75 246'], + + // DIGIT EIGHT + 0x38: [666,22,500,43,456,'69 496Q69 570 124 618T247 666Q321 666 375 624T429 515Q429 468 405 433T320 361L346 344Q385 320 403 301T439 250Q456 212 456 181V172V160Q456 141 449 119T426 71T386 26T326 -8T246 -21Q160 -21 102 30T43 155Q43 265 167 332L176 337L161 347Q105 384 87 423Q69 458 69 496ZM371 513Q371 567 334 596T249 626Q198 626 163 598T127 532Q127 521 129 511T138 492T150 476T167 460T185 447T207 433T228 420L284 384L294 391Q346 424 363 469Q371 486 371 513ZM190 21T250 21T351 56T393 140Q393 180 362 213Q354 221 317 246T246 292L212 313Q210 313 200 307T173 287T142 256T117 212T106 157Q106 100 148 61'], + + // DIGIT NINE + 0x39: [453,216,500,42,457,'171 -101Q171 -118 163 -130T146 -146T134 -151Q132 -151 132 -152Q132 -154 140 -159T167 -168T206 -173Q274 -173 317 -108Q356 -50 356 79V86L350 77Q308 9 231 9Q150 9 92 81Q42 141 42 228Q42 289 64 333Q93 390 142 421T235 452Q237 452 244 452T255 453Q289 453 321 439T386 391T437 290T457 128Q457 -29 381 -122T206 -216Q148 -216 108 -187T67 -104Q67 -75 84 -62T119 -49Q141 -49 156 -63T171 -101ZM242 46Q293 46 324 94T355 223Q355 323 337 356Q316 401 275 410Q267 412 248 412Q206 412 179 386Q155 360 149 328T143 224Q143 120 163 88Q192 46 242 46'], + + // LATIN CAPITAL LETTER A + 0x41: [728,51,798,30,819,'576 668Q576 688 606 708T660 728Q676 728 675 712V571Q675 409 688 252Q696 122 720 57Q722 53 723 50T728 46T732 43T737 41T743 39L754 45Q788 61 803 61Q819 61 819 47Q818 43 814 35Q799 15 755 -7T675 -30Q659 -30 648 -25T630 -8T621 11T614 34Q603 77 599 106T594 146T591 160V163H460L329 164L316 145Q241 35 196 -7T119 -50T59 -24T30 43Q30 75 46 100T74 125Q81 125 83 120T88 104T96 84Q118 57 151 57Q189 57 277 182Q432 400 542 625L559 659H567Q574 659 575 660T576 668ZM584 249Q579 333 577 386T575 473T574 520V581L563 560Q497 426 412 290L372 228L370 224H371L383 228L393 232H586L584 249'], + + // LATIN CAPITAL LETTER B + 0x42: [705,23,657,32,664,'304 342Q292 342 292 353Q292 372 323 391Q331 396 417 428T533 487Q563 512 563 555V562Q563 575 557 589T530 618T475 636Q429 636 396 613T330 539Q263 446 210 238Q196 183 173 120Q135 31 121 16Q108 1 85 -10T47 -22T32 -10Q32 -5 44 18T77 93T112 206Q135 296 154 395T182 550T191 615Q191 616 190 616Q188 616 179 611T157 601T131 594Q113 594 113 605Q113 623 144 644Q154 650 205 676T267 703Q277 705 279 705Q295 705 295 693Q295 686 288 635T278 575Q278 572 287 582Q336 635 402 669T540 704Q603 704 633 673T664 599Q664 559 638 523T580 462Q553 440 504 413L491 407L504 402Q566 381 596 338T627 244Q627 172 575 110T444 13T284 -22Q208 -22 158 28Q144 42 146 50Q150 67 178 85T230 103Q236 103 246 95T267 75T302 56T357 47Q436 47 486 93Q526 136 526 198V210Q526 228 518 249T491 292T436 330T350 345Q335 345 321 344T304 342'], + + // LATIN CAPITAL LETTER C + 0x43: [705,25,527,12,533,'201 -25Q167 -25 136 -14T75 23T29 94T12 202Q12 290 50 394T161 574Q227 642 303 673T433 704Q435 705 457 705Q533 701 533 640Q533 606 507 548T464 474Q431 444 396 444Q381 444 381 453Q381 459 388 473T407 513T428 563Q433 580 433 594Q433 636 381 636Q314 636 260 594T175 489T128 363T112 247Q112 157 153 101T273 44Q347 44 398 121Q413 144 437 157T481 171Q496 171 496 160Q496 150 476 123Q426 56 350 16T201 -25'], + + // LATIN CAPITAL LETTER D + 0x44: [683,1,771,19,766,'37 475Q19 475 19 487Q19 536 103 604T327 682H356Q386 683 408 683H419Q475 683 506 681T582 668T667 633Q766 571 766 450Q766 365 723 287T611 152T455 57T279 6Q248 1 160 0Q148 0 131 0T108 -1Q72 -1 72 11Q72 24 90 40T133 64L144 68L152 88Q247 328 272 587Q275 613 272 613Q272 613 269 613Q225 610 195 602T149 579T129 556T119 532Q118 530 116 525T113 518Q102 502 80 490T37 475ZM665 407Q665 596 412 613Q403 614 383 614Q370 614 370 612Q370 598 363 542T323 357T242 103L228 69H265Q391 73 481 119Q536 148 575 188T633 268T658 338T665 392V407'], + + // LATIN CAPITAL LETTER E + 0x45: [705,22,528,30,564,'144 470Q144 556 240 630T451 705Q564 705 564 637Q564 611 540 573Q529 559 505 547T464 534Q448 534 448 545Q448 552 455 562Q463 577 463 591Q463 600 462 604T456 616T436 627T400 635Q396 635 390 635T380 636Q291 636 258 568Q245 544 245 516Q245 463 290 438T391 410Q415 410 415 398Q415 392 407 380T376 356T326 341Q288 340 260 327Q218 311 187 276T143 208T130 151Q130 113 156 88T211 55T268 47Q349 47 403 125Q415 144 439 157T483 171Q499 171 499 160Q499 148 475 120T413 59T315 3T197 -22Q124 -22 77 14T30 105Q30 126 39 154T66 216T122 288T209 354L223 362Q144 400 144 470'], + + // LATIN CAPITAL LETTER F + 0x46: [684,32,719,18,829,'199 579Q181 579 181 590Q181 598 188 611T212 639T260 666T335 682Q336 682 349 682T383 682T431 682T493 683T561 683Q776 682 784 681Q826 673 829 647Q829 620 797 600T744 580Q728 580 728 595Q729 607 713 610Q698 613 598 614H500L499 610Q499 598 467 486T428 367Q428 365 551 365H674Q683 360 684 355Q687 346 677 329Q666 312 642 299T598 285Q586 285 582 296H402L394 277Q386 258 373 229T346 167T315 102T286 51Q265 22 225 -5T133 -32Q108 -32 87 -25T54 -7T33 15T21 35T18 47Q18 60 44 80T98 103Q108 103 111 101T119 88Q130 66 150 54T179 39T195 37Q199 37 203 43Q217 67 245 125T318 300T391 532Q393 543 398 564T406 598T409 613T339 614H269Q229 579 199 579'], + + // LATIN CAPITAL LETTER G + 0x47: [704,119,595,43,599,'216 68Q155 68 115 100T59 177T44 273Q44 299 50 333T73 421T133 533T239 632Q346 704 466 704Q508 704 515 703Q555 696 577 681T599 635Q599 605 570 560T523 496Q490 466 455 466Q440 466 440 475T469 526T499 589Q499 605 489 617Q460 636 403 636Q343 636 295 611T220 548T174 464T150 382T144 318Q144 241 180 189T287 137Q325 137 359 160Q428 205 466 322Q472 342 501 359T551 376Q557 376 560 373T564 368L565 365Q560 341 551 302T512 173T451 31Q359 -119 204 -119Q163 -118 127 -109T74 -91T53 -77Q52 -75 52 -71Q52 -54 79 -35T132 -14H140L151 -19Q210 -49 281 -49H289Q312 -49 329 -31Q351 -7 372 36T405 109T416 142L408 136Q401 131 392 125T369 111T338 96T303 82T261 72T216 68'], + + // LATIN CAPITAL LETTER H + 0x48: [683,48,845,18,803,'18 487Q18 496 29 517T67 566T127 621T216 665T330 683Q359 683 376 669T397 643T400 622Q400 584 382 488T348 343Q348 342 467 342H587L594 366Q615 440 648 534T690 641Q701 656 723 669T764 683Q783 683 783 672L750 578Q716 485 677 346T625 101Q624 92 623 82T622 65T621 56Q621 20 658 20Q666 20 701 25Q709 52 736 69T785 87Q803 87 803 75T791 44T754 3T685 -33T588 -48Q568 -48 562 -46Q522 -31 522 13V23Q531 129 562 250L569 281L565 280Q561 278 556 277T549 274L438 273H328L321 249Q307 202 275 107T232 0Q219 -16 196 -28T155 -41Q149 -41 145 -39T140 -34T139 -29Q139 -24 148 -3T181 86T233 247Q240 270 240 272Q240 273 194 273H169Q139 273 139 285Q139 295 153 308T187 332Q206 341 236 342L260 343L264 359Q278 414 289 482T300 578Q300 613 260 613H254Q198 613 169 592Q148 578 127 544T104 508Q72 478 37 475Q18 475 18 487'], + + // LATIN CAPITAL LETTER I + 0x49: [683,0,545,-30,642,'174 0H31Q-13 0 -21 2T-30 12Q-30 23 -17 36Q9 60 42 68L155 70Q187 102 214 179T257 333T302 491T366 610L369 614H305Q221 611 188 607T145 596T128 569Q119 543 94 529T47 512Q28 512 28 524Q28 527 32 539Q56 614 159 654Q218 678 312 682Q314 682 339 682T404 682T481 683H632Q642 678 642 671Q642 657 621 641T577 617Q570 615 507 614H444Q427 592 406 542Q382 478 355 366T310 209Q280 123 238 78L230 69H330Q442 70 442 74Q443 74 443 77T447 87T460 105Q490 134 527 137Q545 137 545 125Q545 120 542 112Q531 78 491 49T399 7Q379 2 360 2T174 0'], + + // LATIN CAPITAL LETTER J + 0x4A: [683,119,678,47,839,'148 78Q148 16 189 -17T286 -50Q319 -50 348 -33T396 10T426 59T444 101L471 204Q498 306 521 372Q575 532 649 605L659 614H591Q517 613 494 607Q433 591 400 550T360 477Q353 454 325 437T275 419Q256 419 260 435Q280 523 376 597T583 681Q603 683 713 683H830Q839 674 839 671Q839 654 810 634T754 614Q735 614 721 601Q688 571 654 495T600 351T561 209T541 132Q507 29 412 -45T213 -119Q141 -119 94 -77T47 33Q47 55 50 69T58 90T71 103Q105 131 135 131Q152 131 152 120Q152 119 151 114T149 99T148 78'], + + // LATIN CAPITAL LETTER K + 0x4B: [705,22,762,32,732,'194 618Q193 618 182 613T156 601T131 594Q113 594 113 605Q113 623 144 644Q154 650 205 676T267 703Q277 705 279 705Q295 705 295 691Q295 569 250 397Q225 306 197 217T151 81T128 25Q120 8 94 -7T47 -22Q32 -22 32 -10L64 76Q95 163 133 295T185 530Q198 611 194 618ZM331 429Q331 383 364 290T449 117T542 36Q574 36 607 51T652 103Q660 124 677 133T709 143Q727 143 727 128Q727 119 723 111Q704 56 639 17T497 -22H493Q463 -22 425 16Q401 40 382 71Q335 138 296 243T256 399Q256 434 288 473Q342 540 471 622T670 705Q691 704 703 696Q732 678 732 644Q732 613 714 600T677 586Q671 586 667 587T660 592T657 604V619Q657 647 629 647Q623 647 620 646Q576 635 495 583T365 482Q331 448 331 429'], + + // LATIN CAPITAL LETTER L + 0x4C: [705,22,690,32,656,'62 -22T47 -22T32 -11Q32 -1 56 24T83 55Q113 96 138 172T180 320T234 473T323 609Q364 649 419 677T531 705Q559 705 578 696T604 671T615 645T618 623V611Q618 582 615 571T598 548Q581 531 558 520T518 509Q503 509 503 520Q503 523 505 536T507 560Q507 590 494 610T452 630Q423 630 410 617Q367 578 333 492T271 301T233 170Q211 123 204 112L198 103L224 102Q281 102 369 79T509 52H523Q535 64 544 87T579 128Q616 152 641 152Q656 152 656 142Q656 101 588 40T433 -22Q381 -22 289 1T156 28L141 29L131 20Q111 0 87 -11'], + + // LATIN CAPITAL LETTER M + 0x4D: [705,50,1201,28,1137,'28 9Q28 37 43 63T73 90Q77 90 83 84T103 70T141 57H146Q162 57 178 79T222 167Q266 279 295 371T334 513T349 598T358 651T371 677Q397 705 432 705Q442 705 445 699T452 666Q453 661 453 659Q475 538 509 405T568 207L574 192Q581 178 587 164T594 150Q596 150 635 189T693 248Q765 324 863 438T1024 626T1089 701Q1093 705 1100 705Q1111 705 1111 682Q1111 675 1108 660T1099 611T1086 540Q1041 277 1041 144Q1041 98 1044 75T1050 48T1059 42Q1064 41 1075 46Q1102 61 1121 61Q1137 61 1137 50Q1137 28 1087 0T1000 -29Q983 -29 972 -23T955 -9T945 16T942 45T941 83V96Q941 158 952 256T974 422L985 489Q984 489 939 436T821 300T698 164Q665 128 620 85T568 37Q564 34 558 34Q550 34 546 37T535 54Q512 91 496 127T450 259T389 498L384 518Q349 367 294 223T198 15Q155 -50 117 -50Q87 -50 61 -35T30 -6Q28 2 28 9'], + + // LATIN CAPITAL LETTER N + 0x4E: [789,51,820,-27,979,'343 705Q358 705 358 698Q360 696 370 658T411 524T484 319Q536 174 590 82L595 73L615 152Q646 274 683 407Q729 571 752 637T799 727Q852 780 937 788Q939 788 947 788T958 789H962Q979 789 979 765Q979 722 951 692Q942 683 924 683Q888 681 859 672T818 654T803 639Q784 608 708 322T631 15Q631 14 630 15Q630 17 629 15Q628 14 628 12Q621 -4 601 -17T560 -31Q550 -31 546 -28T530 -7Q484 67 458 123T398 272Q352 392 314 514L306 535V534Q306 533 296 488T272 379T234 239T185 100T127 -7T61 -50Q34 -50 4 -34T-27 8Q-27 33 -12 61T18 90Q21 90 36 77T87 57H92Q109 57 123 78T162 173Q206 299 232 417T265 599T276 667Q284 681 304 693T343 705'], + + // LATIN CAPITAL LETTER O + 0x4F: [705,22,796,58,777,'308 428Q289 428 289 438Q289 457 318 508T378 593Q417 638 475 671T599 705Q688 705 732 643T777 483Q777 380 733 285T620 123T464 18T293 -22Q188 -22 123 51T58 245Q58 327 87 403T159 533T249 626T333 685T388 705Q404 705 404 693Q404 674 363 649Q333 632 304 606T239 537T181 429T158 290Q158 179 214 114T364 48Q489 48 583 165T677 438Q677 473 670 505T648 568T601 617T528 636Q518 636 513 635Q486 629 460 600T419 544T392 490Q383 470 372 459Q341 430 308 428'], + + // LATIN CAPITAL LETTER P + 0x50: [683,57,696,19,733,'37 475Q19 475 19 487Q19 536 103 604T327 682Q329 682 344 682T380 682T421 683H463Q625 683 695 615Q718 591 726 564Q733 547 733 525Q733 412 607 312T321 205H312Q293 205 293 217Q293 224 302 236T333 260T385 274Q558 287 614 407Q633 445 633 477Q633 515 612 543T556 585T481 607T399 614H370L368 603Q352 463 312 312T242 82T202 -13Q190 -33 164 -45T121 -57Q108 -57 108 -45Q108 -40 120 -10T151 73T192 190T233 349T266 539Q267 546 269 565T272 598T274 613H270Q209 613 163 588Q131 572 113 518Q102 502 80 490T37 475'], + + // LATIN CAPITAL LETTER Q + 0x51: [705,131,817,114,787,'114 286Q114 358 151 433T249 569T392 667T558 705Q653 705 713 641T774 460Q774 389 750 322T687 206T600 114T504 46T412 4L399 -2Q542 -62 636 -62Q660 -62 670 -54T686 -27T700 0Q734 34 770 34Q787 34 787 23Q787 -18 720 -74T563 -131Q485 -131 350 -83T145 -34Q127 -34 127 -22Q127 -12 144 5T190 31L200 34L237 35Q386 38 467 79Q550 120 612 210T675 416Q675 510 625 573T484 636Q410 636 346 587T248 469T214 333Q214 306 221 281T243 229T288 188T360 172Q403 172 441 188T490 205Q510 205 510 192Q505 162 432 132T287 102Q206 102 160 155T114 286'], + + // LATIN CAPITAL LETTER R + 0x52: [683,22,848,19,837,'37 475Q19 475 19 487Q19 503 35 530T83 589T180 647T327 682H374Q387 682 417 682T464 683Q519 683 559 679T642 663T708 625T731 557Q731 481 668 411T504 300Q506 296 512 286T528 257T553 202Q594 105 611 82Q635 47 665 47Q708 47 742 93Q758 113 786 128Q804 136 819 137Q837 137 837 125Q837 115 818 92T767 43T687 -2T589 -22Q549 -22 517 22T467 120T422 221T362 273Q346 273 346 287Q348 301 373 320T436 342Q437 342 446 343T462 345T481 348T504 353T527 362T553 375T577 393Q598 412 614 443T630 511Q630 545 613 566T541 600T393 614Q370 614 370 613L366 584Q349 446 311 307T243 96L213 25Q205 8 179 -7T132 -22Q125 -22 120 -18T117 -8Q117 -5 130 26T163 113T205 239T246 408T274 606V614Q273 614 259 613T231 609T198 602T163 588Q131 572 113 518Q102 502 80 490T37 475'], + + // LATIN CAPITAL LETTER S + 0x53: [705,22,606,18,642,'554 512Q536 512 536 522Q536 525 539 539T542 564Q542 588 528 604Q515 616 482 625T410 635Q374 635 349 624T312 594T295 561T290 532Q290 505 303 482T342 442T378 419T409 404Q435 391 451 383T494 357T535 323T562 282T574 231Q574 133 464 56T220 -22Q138 -22 78 21T18 123Q18 184 61 227T156 274Q178 274 178 263Q178 260 177 258Q172 247 164 239T151 227T136 218L127 213L124 202Q118 186 118 163Q120 124 165 86T292 48Q374 48 423 86T473 186V193Q473 267 347 327Q268 364 239 389Q191 431 191 486Q191 547 242 600T356 679T470 705Q472 705 478 705T489 704Q551 704 596 682T642 610Q642 566 621 545Q592 516 554 512'], + + // LATIN CAPITAL LETTER T + 0x54: [717,68,545,34,833,'49 475Q34 475 34 490Q34 552 106 611T261 681Q272 683 507 683H742Q790 717 816 717Q833 717 833 708Q833 682 795 653T714 615Q691 610 588 609Q490 609 490 607L483 580Q476 554 462 496T435 392Q410 289 395 231T363 116T335 34T309 -15T279 -47T242 -64Q231 -68 218 -68Q203 -68 203 -57Q203 -52 211 -38Q224 -7 234 20T251 66T268 123T283 179T304 261T328 360Q342 415 360 488Q380 567 384 582T397 605Q400 607 401 609H302H244Q200 609 188 607T167 596Q145 572 145 541Q145 520 109 498T49 475'], + + // LATIN CAPITAL LETTER U + 0x55: [683,28,626,-17,687,'8 592Q8 616 70 649T193 683Q246 683 246 631Q246 587 205 492T124 297T83 143Q83 101 100 75T154 48Q202 48 287 135T450 342T560 553Q589 635 593 640Q603 656 626 668T669 683H670Q687 683 687 672T670 616T617 463T547 220Q525 137 521 68Q521 54 522 50T533 42L543 47Q573 61 588 61Q604 61 604 47Q599 16 506 -22Q486 -28 468 -28T436 -18T421 18Q421 92 468 258Q468 259 467 257T459 248Q426 206 391 167T303 81T194 6T83 -22Q66 -22 58 -20Q25 -11 4 19T-17 99Q-17 146 8 220T64 358T120 488T146 586Q146 604 141 608T123 613H120Q99 613 72 597T25 580Q8 580 8 592'], + + // LATIN CAPITAL LETTER V + 0x56: [683,52,613,25,658,'25 633Q25 647 47 665T100 683Q291 683 291 306Q291 264 288 213T282 132L279 102Q281 102 308 126T378 191T464 279T545 381T596 479Q600 490 600 502Q600 527 581 550T523 577Q505 577 505 601Q505 622 516 647T542 681Q546 683 558 683Q605 679 631 645T658 559Q658 423 487 215Q409 126 308 37T190 -52Q177 -52 177 -28Q177 -26 183 15T196 127T203 270Q203 356 192 421T165 523T126 583T83 613T41 620Q25 620 25 633'], + + // LATIN CAPITAL LETTER W + 0x57: [683,54,988,25,1035,'25 633Q25 647 46 665T103 683Q168 683 207 632Q228 608 243 568Q269 485 269 374Q269 324 265 271T256 184L251 150L252 152Q254 153 257 157T264 167T274 180T286 197Q359 293 424 398T519 558T549 616Q549 618 547 624T545 638Q550 654 572 668T615 683Q626 683 632 672T657 595Q726 370 741 128L742 110Q752 122 767 142T823 217T894 321T950 424T976 511Q976 544 958 560T918 577Q906 577 906 602Q906 629 918 651T942 681Q948 683 954 683Q983 683 1008 658T1034 569T999 421T915 257T813 109T724 -3T681 -49Q666 -59 660 -45Q659 -41 657 35T639 233T591 477Q573 551 570 551Q569 551 554 523T507 439T433 315T323 155T182 -25Q160 -52 151 -53Q137 -53 137 -30Q137 -29 148 25T170 168T181 338Q181 424 168 483T131 571T87 609T40 620Q25 620 25 633'], + + // LATIN CAPITAL LETTER X + 0x58: [683,0,713,52,807,'324 614Q291 576 250 573Q231 573 231 584Q231 589 232 592Q235 601 244 614T271 643T324 671T400 683H403Q462 683 481 610Q485 594 490 545T498 454L501 413Q504 413 551 442T648 509T705 561Q707 565 707 578Q707 610 682 614Q667 614 667 626Q667 641 695 662T755 683Q765 683 775 680T796 662T807 623Q807 596 792 572T713 499T530 376L505 361V356Q508 346 511 278T524 148T557 75Q569 69 580 69Q585 69 593 77Q624 108 660 110Q667 110 670 110T676 106T678 94Q668 59 624 30T510 0Q487 0 471 9T445 32T430 71T422 117T417 173Q416 183 416 188Q413 214 411 244T407 286T405 299Q403 299 344 263T223 182T154 122Q152 118 152 105Q152 69 180 69Q183 69 187 66T191 60L192 58V56Q192 41 163 21T105 0Q94 0 84 3T63 21T52 60Q52 77 56 90T85 131T155 191Q197 223 259 263T362 327T402 352L391 489Q391 492 390 505T387 526T384 547T379 568T372 586T361 602T348 611Q346 612 341 613T333 614H324'], + + // LATIN CAPITAL LETTER Y + 0x59: [683,143,668,31,714,'65 599Q65 618 107 650T204 683Q267 683 312 643T380 533T414 385T424 217Q424 186 423 160T422 123Q426 123 468 170T567 304T650 469Q661 503 661 519Q661 546 639 570Q615 591 583 591Q569 591 569 616Q569 640 582 661T613 683Q624 683 638 679T671 664T702 625T714 558Q714 472 639 329T426 45Q361 -21 282 -82T154 -143Q97 -143 64 -104T31 -20Q31 4 44 25T70 46Q78 46 81 39T87 16T97 -9Q127 -51 182 -51Q184 -51 187 -50H190Q233 -41 314 25Q330 36 330 40Q336 79 336 178Q336 508 223 594Q199 614 158 619L148 620L139 611Q111 586 83 586Q65 586 65 599'], + + // LATIN CAPITAL LETTER Z + 0x5A: [683,0,725,37,767,'694 220Q708 220 708 210Q708 195 695 167T658 105T593 42T502 3Q492 1 458 1Q400 1 293 11T150 22Q116 22 92 11T51 0Q37 0 37 10Q37 21 63 44T179 146T367 319L391 343H343L296 344Q285 350 285 358Q285 365 289 372T300 383T313 392T324 398L329 400H450L561 518Q597 558 607 571L621 587H596Q553 589 484 599T383 609Q342 609 326 596T301 555Q294 533 263 514T208 492Q189 492 189 503Q189 510 197 528T215 559Q249 607 318 645T466 683Q504 683 573 673T669 662L690 661Q734 682 748 683Q767 683 767 673Q767 666 746 640Q655 531 555 428L529 400Q529 399 543 399Q604 397 604 366Q604 350 587 337T551 322Q541 322 539 323Q529 328 529 334Q529 339 487 342L470 343L446 320Q272 153 200 96L235 95Q297 95 392 86T533 74H554Q586 116 597 159Q604 179 635 199T694 220'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Caligraphic/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js new file mode 100644 index 0000000..8907c88 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js @@ -0,0 +1,272 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Bold/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur-bold'], + { + // SPACE + 0x20: [0,0,250,0,0,''], + + // EXCLAMATION MARK + 0x21: [689,12,349,107,241,'121 621Q121 657 132 673T177 689Q223 689 223 644V635Q223 604 222 595Q221 590 210 490T187 292T175 190V186L166 185L156 184Q156 185 139 393T121 621ZM107 47Q107 70 127 87T174 104Q201 104 221 89T241 48Q241 24 222 6T174 -12Q147 -12 127 6T107 47'], + + // QUOTATION MARK + 0x22: [695,-432,254,10,231,'53 695Q74 695 90 679V622L65 433L52 432H39L27 516Q10 626 10 655Q10 680 26 688Q33 693 39 693Q49 695 53 695ZM151 668Q151 691 191 691Q217 691 224 685T231 661V652Q230 634 219 531L207 433L195 432Q183 432 183 433L168 541Q151 664 151 668'], + + // AMPERSAND + 0x26: [696,17,871,44,839,'290 -14Q186 -14 115 41T44 185Q44 222 54 249T88 300T131 336T189 371Q216 387 216 388Q185 459 185 510Q185 563 206 601T263 659T334 687T405 696Q476 696 503 668T531 603Q531 565 513 536T450 476Q423 459 370 432L334 413L354 384Q474 212 560 139L563 137Q611 185 611 250Q611 295 577 329Q549 356 496 357Q439 357 433 354Q432 354 432 379V403L437 402Q443 402 479 401T557 400Q653 400 735 403T831 407H836Q833 352 833 351L821 352Q809 352 792 352T756 352T720 353T696 354Q680 354 680 353L681 346Q682 339 683 327T685 306Q685 283 681 260T669 218T653 182T635 152T619 129T606 114L602 109Q604 107 618 99T659 81T707 71Q742 71 767 99T804 155L815 183Q815 184 821 183T833 180T839 177Q837 169 834 156T816 110T782 52T727 5T648 -16Q569 -16 499 35H498Q496 35 466 23T387 -1T290 -14ZM418 592Q418 617 398 639T352 661T302 642T278 574Q278 545 288 514T306 465T319 444Q342 456 353 463T382 488T409 529T418 584V592ZM159 239Q159 158 222 98T364 38Q386 38 447 57L469 63L434 98Q349 185 286 275Q258 316 238 345Q233 353 232 353Q159 316 159 239'], + + // APOSTROPHE + 0x27: [695,-436,250,80,158,'80 645T80 662T93 687T123 695Q158 695 158 659Q158 649 157 643L123 437Q123 436 114 436H104Q104 442 92 538Q80 645 80 662'], + + // LEFT PARENTHESIS + 0x28: [737,186,459,134,347,'347 719Q325 708 311 698T272 656T233 580T207 455T195 267Q195 30 247 -79Q261 -110 291 -136Q320 -163 347 -172V-179Q347 -186 344 -186Q338 -186 328 -184T287 -165T230 -123Q134 -25 134 271Q134 417 158 514T226 662T335 734L346 737Q347 737 347 728V719'], + + // RIGHT PARENTHESIS + 0x29: [735,187,459,105,326,'264 262Q264 366 253 446T226 572T186 649T145 692T105 714V725Q105 735 107 735Q108 734 121 731T154 719T196 692T242 641T284 560T314 437T326 268Q326 112 299 7Q279 -78 239 -124T116 -185L105 -187V-179L106 -171L109 -169Q130 -161 138 -158T165 -146T190 -127T210 -101T229 -64T243 -12T255 58T261 148T264 262'], + + // ASTERISK + 0x2A: [692,-449,328,40,277,'40 516L62 529Q85 542 110 556T140 574L126 582Q112 591 104 595T80 607T40 629Q53 642 57 645L65 652L78 642Q106 620 132 603L152 589V595Q152 630 149 681V692H179V689Q178 681 174 638T171 593Q173 593 240 639L258 652Q260 652 267 643L276 633L260 625Q190 587 175 576Q173 575 180 570Q183 569 186 567Q213 549 256 527L277 515L256 495Q246 501 228 515T194 539T170 554V543Q170 486 178 449H148V456Q152 492 152 550L151 562Q150 562 102 528L53 495Q40 514 40 516'], + + // PLUS SIGN + 0x2B: [598,82,893,56,837,'422 584L471 598Q472 598 472 440V282H837Q833 273 829 263L821 244L647 243H472V-63L448 -73L423 -82Q422 -82 422 81V243H239Q56 243 56 244Q60 253 65 263L73 282H422V584'], + + // COMMA + 0x2C: [107,191,328,118,253,'118 61Q118 80 135 93T169 107Q190 107 221 65T253 -23Q253 -39 251 -49T237 -80T198 -133Q148 -191 144 -191Q142 -191 137 -182T132 -172Q143 -161 160 -131T183 -83Q185 -77 185 -62Q185 -54 184 -48T182 -38T177 -28T171 -19T162 -8T150 6Q130 28 124 38T118 61'], + + // HYPHEN-MINUS + 0x2D: [275,-236,893,54,833,'54 236L73 275H453Q833 275 833 274Q830 265 825 255L818 236H54'], + + // FULL STOP + 0x2E: [102,15,328,103,237,'103 23T103 44T120 83T170 102Q200 102 218 84T237 44Q237 20 216 3T168 -15Q138 -15 121 4'], + + // SOLIDUS + 0x2F: [721,182,593,41,550,'272 270Q503 721 506 721L509 720Q512 720 518 719T529 717L550 713L91 -181L66 -182Q41 -182 41 -181L272 270'], + + // DIGIT ZERO + 0x30: [501,12,593,42,533,'238 -12Q162 -12 102 42T42 185Q42 303 130 393Q163 425 208 452T284 490L313 501Q323 499 339 495T395 472T464 426Q533 357 533 273Q533 201 483 133T364 27T238 -12ZM428 208Q428 255 402 297T342 365T280 404T241 419Q214 419 178 374T142 259Q142 206 168 164T225 99Q259 74 310 74Q326 74 337 75T366 82T396 103T417 141Q428 171 428 208'], + + // DIGIT ONE + 0x31: [489,0,593,54,548,'95 481Q102 481 217 485T383 489Q384 489 384 485Q367 397 367 165Q367 58 369 54Q374 46 380 44T410 42H466H546V40Q547 38 547 19L548 0H54V23Q54 29 54 34T54 44L55 47Q79 47 134 46T202 45Q226 45 234 52Q240 57 241 64T245 105Q254 236 254 320V347Q254 369 252 382T240 409T211 431L97 450L96 465Q95 480 95 481'], + + // DIGIT TWO + 0x32: [491,-2,593,44,563,'307 335Q307 374 283 397T224 421Q187 421 112 387Q105 384 100 382T95 381Q90 387 86 394L77 407L86 413Q219 491 298 491Q370 491 399 460T428 388Q428 373 424 358T409 326T391 297T363 264T335 235T301 202T269 171L199 104Q194 99 205 97Q209 96 214 96Q527 105 544 105Q553 107 563 102Q563 100 557 79T545 34T537 2H377Q338 2 247 2T130 4H44V26L104 77Q185 145 212 172T267 235Q307 291 307 335'], + + // DIGIT THREE + 0x33: [487,193,593,31,523,'102 402L108 408Q115 413 122 418T141 431T165 447T194 461T227 474T263 483T302 487H307Q413 487 452 420Q465 400 465 371Q465 334 445 303T396 253T347 225T317 213Q314 213 314 211Q316 209 316 205Q317 201 320 201Q337 201 359 198T411 184T465 156T506 109T523 39Q523 -62 436 -127T229 -193Q179 -193 130 -178T56 -150T31 -133Q31 -132 41 -122L52 -112L63 -117Q128 -148 201 -148Q282 -148 331 -104T381 20Q381 71 363 100T304 145Q243 166 149 166H137V204H146Q179 204 211 210T275 229T326 268T346 329Q346 372 314 401Q292 423 245 423Q188 423 125 383L102 402'], + + // DIGIT FOUR + 0x34: [495,196,593,13,565,'346 -196Q344 -196 335 -187L336 -148Q337 -127 337 -55V0H13V29L187 253Q362 477 362 479L368 480Q375 481 387 483T411 487T434 491T452 494L459 495Q460 495 470 482V453Q470 389 466 230T461 62Q461 61 513 61T565 60L555 29L546 -1H461V-15Q461 -48 463 -100T465 -154L457 -157Q449 -160 434 -165T405 -175Q347 -196 346 -196ZM339 265V341Q339 362 335 362Q327 362 219 217T110 65V61H337V117Q338 133 338 187T339 265'], + + // DIGIT FIVE + 0x35: [481,190,593,18,519,'232 192Q176 192 122 152L95 162V481H306Q516 481 516 479Q514 477 501 433L486 389L319 388H152V386V382Q152 379 152 374T151 365Q147 329 146 260V218H149Q211 242 284 242Q353 242 402 224T474 176T508 117T518 55Q518 -62 432 -126T220 -190Q184 -190 151 -185T96 -172T57 -157T31 -145T20 -139T19 -138Q19 -136 27 -125L35 -112L51 -120Q114 -152 174 -152Q257 -152 314 -100T371 46Q371 107 340 149T232 192'], + + // DIGIT SIX + 0x36: [704,12,593,48,547,'48 251Q48 330 76 403T150 529T253 623T370 683T485 704Q494 704 520 701T547 695Q547 692 542 659T536 625Q531 624 524 624L512 623L502 628Q489 635 468 640Q452 645 423 645Q403 645 379 640T320 617T255 568T201 481T171 348Q170 341 170 330V325L183 333Q275 385 357 385H361Q464 385 514 312Q546 267 546 217Q546 127 457 58T262 -12Q225 -12 189 3T120 49T68 132T48 251ZM448 165Q448 228 406 274T289 320Q264 320 236 312T190 295T173 284Q173 266 176 241T189 178T214 112T259 61T326 39Q372 39 410 75T448 165'], + + // DIGIT SEVEN + 0x37: [479,197,593,54,591,'57 376L87 479H591V455L584 446Q544 399 491 328T349 117T185 -169L171 -196H159Q152 -197 102 -197Q58 -197 58 -196T56 -185L54 -175L299 158L443 359Q446 367 444 370H254L71 365L57 376'], + + // DIGIT EIGHT + 0x38: [714,5,593,45,542,'88 533Q88 573 120 610T194 668T268 701T307 714Q324 714 352 711T422 695T486 659Q518 625 518 585Q518 536 479 489T384 406L371 398L385 390Q387 389 400 382T420 370T442 356T466 339T489 319T510 295T526 269T538 238T542 204Q542 125 463 60T256 -5Q145 -5 92 52Q45 97 45 165Q45 204 64 237T109 290T163 324T209 345T228 353L214 364Q199 375 179 392T138 431T103 480T88 533ZM405 557Q405 568 402 581T387 612T350 644T286 663Q283 663 280 663T274 664H272Q256 664 228 636T199 572Q199 547 238 507Q268 475 320 437L334 427Q345 433 358 443T388 483T405 549V557ZM304 42Q366 42 398 76T431 155Q431 178 420 200T396 238T359 270T321 296T283 318L263 328Q262 328 230 312Q190 290 175 266T160 198Q160 132 202 87T304 42'], + + // DIGIT NINE + 0x39: [487,195,593,29,549,'549 220Q549 23 429 -82T105 -195H84V-189Q84 -179 85 -174V-164H93Q184 -156 238 -132T334 -56Q361 -23 376 16T394 78L397 100L363 88Q329 75 291 61T244 45Q237 44 218 44Q154 44 94 97Q29 152 29 240Q29 350 108 404Q145 429 257 480Q270 487 279 487Q403 487 470 421Q549 347 549 220ZM408 217Q408 276 390 320T346 385T297 415T259 424Q218 424 185 393T151 286Q151 216 213 154Q252 115 321 115Q368 115 388 134T408 217'], + + // COLON + 0x3A: [457,12,255,57,197,'57 398Q57 419 72 438T117 457Q154 457 174 439T194 398Q194 379 176 361T119 343Q85 343 71 362T57 398ZM62 19T62 43T77 85T115 104Q153 104 175 86T197 42Q197 14 171 1T119 -12Q96 -12 79 3'], + + // SEMICOLON + 0x3B: [458,190,255,56,211,'56 399Q56 424 73 440T104 456Q114 458 120 458Q149 458 170 440T192 399Q192 380 174 362T120 344Q85 344 71 362T56 399ZM78 53Q78 67 84 76T90 86Q90 88 98 92T116 98Q117 98 121 98T128 99Q152 97 181 58T211 -24Q211 -77 128 -165Q124 -170 121 -173T116 -178T113 -181T110 -185T106 -190L97 -184L88 -177L95 -168Q143 -104 143 -65Q143 -51 137 -40T113 -7T81 35Q78 41 78 53'], + + // EQUALS SIGN + 0x3D: [343,-168,582,22,559,'559 342L549 304H22L27 319Q29 328 30 333T33 343H296Q559 343 559 342ZM559 206L549 168H22L27 183Q29 192 30 197T33 207H296Q559 207 559 206'], + + // QUESTION MARK + 0x3F: [697,14,428,40,422,'121 590Q121 575 128 562T144 542T152 533T115 512L78 491Q55 499 47 516Q40 530 40 553Q40 601 77 632Q155 697 257 697H268Q316 697 355 679Q422 646 422 576Q422 518 388 476Q383 468 376 461T358 444T340 428T316 410T290 390L230 344Q180 307 180 275Q180 261 187 248T202 227L209 219Q209 215 176 193L142 170Q114 177 100 194T84 226V239Q84 259 93 276T113 302T150 331T192 362Q203 370 219 382T247 403T267 422Q312 471 312 546Q312 593 282 623T207 653Q170 653 146 636T121 590ZM95 23T95 49T117 94T173 113Q204 113 223 96T242 54Q242 27 221 7T167 -14Q136 -14 116 4'], + + // LATIN CAPITAL LETTER A + 0x41: [686,31,847,29,827,'821 97Q822 97 824 88T827 77L793 53Q676 -25 670 -28Q669 -29 656 -27L583 123Q583 124 467 46L352 -31L341 -20Q305 18 264 47T192 77Q161 77 60 32L49 40Q37 47 38 49Q39 49 93 83T212 160T297 219Q411 312 411 452Q411 519 360 571T233 624Q180 624 157 601T133 548Q133 524 160 496T214 441T241 393Q241 356 199 321T100 256L86 249L77 256Q68 263 67 263L84 274Q101 286 118 304T135 339T109 384T56 446T29 504Q29 566 118 624Q207 686 309 686Q349 686 360 685Q405 678 439 661T491 625T520 583T534 543T537 511Q537 436 491 344L478 318L455 299Q420 272 308 179L284 160L294 158Q348 154 426 89L437 79Q513 110 579 153V175Q579 183 579 227T580 330T581 446T582 542L583 582L664 630Q681 640 703 653T734 673L744 679Q750 678 756 676L767 674L716 623V585Q716 568 712 463T708 289V250Q708 237 709 218T710 195L711 180L739 130Q768 79 771 79Q775 79 796 88T821 97'], + + // LATIN CAPITAL LETTER B + 0x42: [684,31,1044,56,965,'160 345Q160 357 144 376T109 413T73 458T57 509Q57 544 95 584Q142 631 205 657T331 684Q382 684 427 658T500 585L505 577L521 588Q537 599 562 614T616 646T679 673T738 684Q790 684 807 666T840 587Q850 552 863 532T888 508Q894 505 906 505Q917 505 930 507T953 512T963 514L964 504Q965 495 965 494T914 467T808 413T745 384H751Q782 380 802 377T854 362T904 334T937 287T951 217Q951 178 937 143T908 91Q903 86 820 34L734 -21L718 -24Q679 -31 639 -31Q561 -31 451 4T271 40Q190 40 119 -2L99 -13L91 1L84 15L86 16Q88 18 132 42T233 100T315 152Q377 199 386 233Q388 240 393 297T399 363Q399 487 353 551Q337 573 306 597T238 622Q201 622 179 602T157 557T214 476T272 396Q272 371 229 334T143 272T96 246Q95 246 85 252T74 259T95 273T138 306T160 345ZM529 443Q529 409 528 385T526 353L525 346Q526 346 649 390T773 435Q749 451 742 464T727 518Q727 519 725 532T721 548T717 562T712 577T706 589T698 601T688 608T675 614T658 616Q626 616 576 582T525 528Q525 527 526 518T528 489T529 443ZM772 57Q774 57 778 58T792 64T808 77T821 103T827 144Q827 222 784 266T660 322Q652 323 611 323H596Q577 323 535 316L523 314Q520 291 505 255L500 241L356 138L366 137Q443 131 518 110T650 72T748 54Q763 54 772 57'], + + // LATIN CAPITAL LETTER C + 0x43: [676,32,723,71,726,'460 -32Q373 -32 305 -11T193 45T122 124T83 214T72 303Q72 395 114 476L119 486L313 592L338 568L359 580Q418 615 479 638T568 668T606 675Q607 675 608 676H610Q612 676 615 661T630 621T660 578Q673 568 694 568Q717 568 721 570H726Q724 565 722 559L717 549L706 545Q608 513 583 513Q568 517 559 522T533 546T493 603L490 609Q452 599 452 558Q452 537 469 481T486 393Q486 353 474 331T422 285T296 231L272 223L262 230L253 237Q279 246 314 274T351 338Q351 376 334 442T316 532Q316 546 319 552Q319 554 316 554Q304 554 288 547T250 523T214 466T199 371Q199 218 299 133T541 47Q571 47 585 51T652 81L712 108Q716 104 716 81L706 74Q695 68 673 54T633 29L550 -22L540 -24Q492 -32 460 -32'], + + // LATIN CAPITAL LETTER D + 0x44: [683,29,982,31,896,'380 596Q307 596 250 582T158 546T100 493T67 433T56 373V361Q55 361 43 366L31 372V384Q31 455 69 523T173 627Q213 650 284 666T444 683H452Q629 683 735 629Q896 548 896 369Q896 263 839 163Q835 155 818 140Q746 82 662 27T563 -29Q525 -29 386 16T183 62Q147 62 127 52T63 1L48 -14L40 -4L31 5Q83 73 172 149L186 161H199Q291 161 329 181Q357 199 357 231Q357 258 301 316T245 396Q245 423 282 458T349 512T403 543L413 548L425 545L438 541Q373 491 373 462Q373 446 399 415T453 349T480 288Q480 251 433 212Q394 180 348 156L334 148L353 145Q408 134 513 105T654 76Q711 76 745 132T780 277Q780 434 676 517Q637 549 562 572T380 596'], + + // LATIN CAPITAL LETTER E + 0x45: [686,29,783,74,728,'527 55Q574 55 619 69T691 97L717 111V85L562 -18Q520 -29 443 -29Q379 -29 325 -15T235 21T180 61T146 98Q74 186 74 307Q74 395 109 472Q113 482 123 489T190 533Q251 568 295 591L308 598L350 580L361 586Q403 612 464 636T564 673T609 686Q610 686 610 685Q612 683 616 670T627 636T646 601Q666 572 686 572H692Q713 572 726 576H728L725 565L723 554L692 544Q660 535 629 526T595 516Q585 514 574 519Q563 527 543 552T507 597T490 617Q467 604 456 579V564Q456 535 473 471T492 393L494 381L613 460L622 446Q630 433 650 411T696 371L703 365L614 312H596L580 322Q568 329 553 340T528 355T510 360Q496 358 491 354T484 345T471 326T435 297Q408 278 370 261T307 235T277 227Q273 227 266 234L256 240L267 245Q280 251 294 258T330 288T353 336Q353 373 335 444T316 530V537Q316 549 322 567Q270 554 233 499T196 370Q196 253 287 157Q392 55 527 55'], + + // LATIN CAPITAL LETTER F + 0x46: [684,146,722,17,727,'424 522Q265 596 208 596Q193 596 180 593T150 579T116 542T89 474Q86 465 86 463L59 481L63 494Q87 578 137 627Q191 684 285 684Q334 684 406 658T538 607T621 581Q644 581 706 629L721 640Q722 640 725 630L727 620Q701 592 654 548T582 486L569 487Q533 490 485 504L468 508Q449 503 429 495T387 466T365 422Q365 373 439 299L453 310Q473 325 528 370L588 418Q614 398 642 368T668 331Q667 331 628 296L590 262L582 274Q557 311 526 311Q511 311 487 297T462 278Q462 277 492 244T551 166T581 88Q581 54 570 25T536 -27T505 -56T478 -76Q376 -146 274 -146H270Q199 -146 162 -118T124 -15Q124 12 128 30T132 96V107Q132 144 117 157Q102 169 85 169Q74 169 59 165T32 156T20 151Q20 152 19 158T17 167Q17 168 17 168T17 169T19 170T22 172T27 175T35 179Q131 230 195 230Q231 230 259 202Q270 190 270 171Q269 150 253 87T236 -16Q236 -67 261 -87T322 -107Q380 -107 428 -68Q467 -35 467 30Q467 60 447 91T383 171T316 251Q290 286 278 308T263 339T261 359Q261 384 284 418Q322 469 424 522'], + + // LATIN CAPITAL LETTER G + 0x47: [687,29,927,74,844,'742 611Q784 611 812 631V611Q807 607 783 591T718 544T629 476L606 458Q608 458 628 457T667 453T713 443T762 423T804 388T836 335Q844 313 844 289Q844 231 814 182T746 103Q720 82 655 48T546 -18L520 -21Q456 -29 432 -29Q313 -29 223 33Q204 45 183 65T135 119T91 207T74 320Q74 428 109 480Q116 491 127 497T215 546L308 595L343 583L355 591Q387 613 433 636T488 660H489L491 659Q493 658 495 657T500 655L509 650L500 645Q479 635 460 612T441 552Q441 535 447 498T459 433T466 405L625 513L643 526Q620 530 585 546T535 586Q535 587 532 592T527 602T525 610Q525 613 577 649L630 687Q632 687 638 675T653 649T686 623T742 611ZM349 313Q349 328 327 413T305 510V516Q305 531 308 542T314 559T317 566T315 567Q297 567 270 548Q233 524 212 490T191 392Q191 337 206 288T244 207T284 156T316 128Q410 51 535 51Q632 51 675 102T718 217Q718 269 690 314T599 375Q574 381 535 381Q501 381 477 377L466 376Q469 364 469 349Q469 314 457 295T408 258Q366 236 308 219L288 213L279 220L270 227Q284 232 294 236T309 243T320 252T326 260T331 270T336 281Q349 310 349 313'], + + // LATIN CAPITAL LETTER H + 0x48: [683,126,851,6,752,'288 139Q288 172 255 224T189 335T156 442Q156 495 242 579Q289 625 361 668Q364 671 368 673T376 678T380 681L384 683L392 676Q401 670 414 661T443 642T477 626T509 619Q543 619 618 668Q625 672 628 674T631 675Q632 673 633 663T633 651L564 595Q556 589 545 580T528 566T516 556T505 548T497 543T488 539T481 537T472 535T463 534T451 534H442Q385 534 304 581L291 589Q290 588 285 583T277 575T269 566T262 555T257 543T255 529V522Q255 507 260 487T276 446T293 409T311 376L321 359Q321 358 322 358T324 359T327 361T333 366Q386 409 481 460L503 472L543 471Q586 471 599 470Q692 459 714 430Q725 416 738 360T752 245Q752 184 742 127T725 51T703 -8Q700 -13 619 -64T518 -123Q508 -126 493 -126Q438 -126 398 -86L427 -52Q456 -17 457 -17Q460 -17 465 -16H473Q474 -21 481 -32T504 -56T539 -69Q572 -69 599 -34Q625 4 625 158Q625 264 609 311T532 378Q508 386 484 386Q455 386 419 372T360 345T337 330L346 313Q375 263 386 227Q389 215 389 202Q389 192 388 184T384 168T376 152T365 138T350 121T331 103T307 81T278 54L194 -24Q130 30 99 30Q85 30 64 20T31 1T16 -10Q15 -11 13 -7Q12 -6 11 -3Q8 4 6 8L32 35Q88 88 117 107T169 126Q177 126 182 125Q218 118 252 84L263 73Q288 113 288 139'], + + // LATIN CAPITAL LETTER I + 0x49: [681,25,655,32,623,'500 615Q523 615 550 628T595 655T614 668L623 654L607 642Q512 569 440 534L427 527L413 529Q384 535 340 547T265 565T209 572Q173 572 145 556T101 522T60 465Q58 460 54 460T41 468L32 477L37 487Q96 599 139 640Q187 681 247 681Q275 681 283 680Q313 674 398 645T500 615ZM418 170Q418 186 410 260T401 382Q403 418 403 424L405 433L415 444Q482 515 571 571L582 578Q591 573 607 568L597 560Q522 504 522 450Q522 427 533 357T545 241V228Q545 190 536 159T508 106T478 73T446 48Q343 -25 238 -25Q179 -25 118 15L107 22L79 5Q51 -12 51 -12L38 2L55 18Q106 67 175 122L192 136Q202 130 206 123Q223 91 252 61Q263 50 266 48T278 39T297 32T320 30Q357 30 389 68Q415 102 418 170'], + + // LATIN CAPITAL LETTER J + 0x4A: [681,141,652,-8,616,'65 510Q68 517 74 528T101 569T144 620T202 661T274 680Q308 680 389 628T503 576Q530 576 596 600Q615 607 616 607Q616 602 615 596V585Q605 581 576 568T531 548T485 531T418 509L400 503L358 522Q347 527 327 537T299 550T277 560T257 568T239 573T220 577T201 578H196Q181 578 169 575T135 554T88 502L83 496Q82 496 74 502T65 510ZM424 4Q424 50 395 151T365 313V320Q365 352 369 361T405 403Q431 432 465 462T521 508T547 525L549 524Q551 524 554 523T560 521L571 517L552 498Q515 461 499 430Q485 399 485 366Q485 326 512 231T539 84Q539 -14 460 -77T273 -141Q248 -141 234 -140T198 -131T160 -106T134 -59Q128 -40 124 -16T117 22T108 49T91 69T59 75T15 65L1 59Q-8 76 -7 77Q4 85 22 97T88 129T170 149Q218 149 234 125Q242 112 242 43V21Q242 -17 248 -41T274 -85T322 -105H325H330Q363 -105 396 -75Q424 -47 424 4'], + + // LATIN CAPITAL LETTER K + 0x4B: [681,27,789,20,806,'234 109Q234 144 194 245T153 404Q153 445 180 490Q232 572 325 626T517 681H524Q612 681 661 658Q683 647 699 632T717 604Q717 600 708 545L699 490L690 489Q681 488 679 488Q675 488 669 504T640 546T577 592Q520 620 446 620Q415 620 386 614T327 594T280 553T262 487Q262 468 265 447T271 413T279 384T285 362L295 371Q320 396 352 421T439 474T538 502Q577 502 596 484T627 428Q642 386 651 373T677 360H682Q698 360 727 369L724 357Q724 354 724 351T722 346V344Q559 289 539 283Q582 272 589 271L615 265L637 189Q662 109 663 108Q668 97 682 84Q698 68 722 68H730H738Q762 68 799 91L803 80L806 70Q795 59 770 40T703 -3T631 -26Q598 -26 578 -8Q548 24 536 92Q524 154 509 183T477 218T428 224Q409 224 385 220T346 212L331 207Q330 205 330 201T331 189T332 178Q332 158 325 116L305 96Q269 60 240 38Q171 -21 123 -21Q72 -21 33 18L20 32L62 74Q96 107 102 112T116 118Q120 118 122 113T131 95T150 69Q171 48 190 48Q198 48 206 51T224 69T234 109ZM519 367Q497 432 450 432Q379 432 313 333L300 314L304 299Q306 294 309 280T315 260L321 235L542 313Q530 325 519 367'], + + // LATIN CAPITAL LETTER L + 0x4C: [683,28,786,30,764,'277 226Q277 248 253 286T203 369T178 449Q178 490 212 533T284 607Q380 683 532 683Q610 683 639 660T668 583Q668 568 666 546T663 509Q663 478 683 460Q691 452 719 452L738 450Q732 437 729 437Q728 437 652 416T573 394Q554 394 541 409T527 444Q527 449 532 487T538 542Q536 584 501 606T418 628Q389 628 364 620T317 587T295 523Q295 478 333 401T372 276Q372 269 371 267Q371 264 318 206L264 149Q284 141 317 130T433 101T577 82Q619 82 652 95T701 127T728 164T742 196L744 209Q744 210 749 208T759 203T764 199T760 185T751 154T744 129Q714 42 680 13Q628 -28 566 -28Q490 -28 403 -5T249 42T153 66T106 53T70 15T47 -16Q46 -17 30 -5L39 13Q85 100 138 148L147 156L161 157Q218 165 246 179T277 226'], + + // LATIN CAPITAL LETTER M + 0x4D: [683,32,1239,27,1232,'134 338Q134 357 81 417T27 504Q27 516 34 530Q55 568 110 615Q190 683 305 683H314Q445 683 495 580L501 569L512 577Q608 646 681 646Q759 646 801 585L808 576L816 583Q860 619 921 650T1041 682Q1063 682 1077 675T1096 660T1112 631T1132 596Q1160 555 1188 555Q1204 555 1228 564Q1230 565 1231 562Q1231 560 1232 554V547L1215 538Q1179 521 1114 475Q1112 474 1106 470T1099 464T1093 459T1088 452T1085 441T1082 425T1081 404T1079 376T1079 339Q1079 282 1084 236T1098 160T1117 112T1138 85T1159 77Q1166 77 1180 81T1207 90L1219 94Q1220 94 1221 86T1222 76L1045 -32Q1044 -32 1004 15L964 64V167Q965 334 970 372V378L994 402Q1032 440 1057 460Q1061 463 1066 467Q1070 469 1070 470T1068 471T1060 474T1050 481Q1040 488 1021 531T996 583Q979 609 947 609Q922 609 887 592T820 537L821 524Q825 484 825 448Q825 268 768 155L759 137L589 -28L579 -20Q533 17 507 17Q475 17 449 -7L436 -18L424 2L441 20Q446 25 456 36T471 52T484 65T497 79T509 90T522 99T534 106T548 112T561 115T576 117Q602 117 639 86Q648 81 648 81Q650 82 657 94T668 112Q711 202 711 373Q711 484 677 533T600 583Q592 583 583 581T569 577T554 568T542 560T528 549T516 539L519 523Q527 485 527 461Q527 444 522 407Q506 266 447 150L437 130L217 -25L208 -15Q165 28 126 28Q89 28 62 1Q47 -14 43 -14Q42 -14 36 -8L28 0L44 17Q96 73 120 92T166 117Q182 123 204 123Q239 123 284 78L295 67Q307 72 337 102Q400 178 400 346Q400 508 325 571Q270 618 208 618Q180 618 168 614T140 594Q124 578 124 564Q124 540 182 480T240 396Q240 359 197 321Q154 285 94 252L80 245L76 248L67 257L61 262L71 268Q82 275 94 284T120 309T134 338'], + + // LATIN CAPITAL LETTER N + 0x4E: [679,30,983,25,973,'522 492Q521 492 517 502T512 513Q542 444 542 333Q542 226 503 137L498 125L396 53Q308 -8 292 -17T260 -27Q226 -27 191 -9T136 29L145 39Q162 56 192 89L230 129L235 128H241Q276 57 332 57Q358 57 391 80Q403 89 409 100T422 143T428 227Q428 329 406 408T347 530T272 594T196 615Q152 615 135 596T118 558Q118 535 146 502T203 438T232 385Q232 357 195 322T122 265T83 243Q82 242 72 249T61 258L66 262Q72 265 82 273T103 292Q125 314 125 333Q125 351 101 376T51 432T26 492Q26 549 108 614T290 679Q326 679 335 678Q353 675 370 670T400 658T425 642T445 625T463 606T477 588T487 571T495 556T500 543L504 535L523 553Q553 581 569 595T619 632T686 667T757 678Q778 678 793 675T819 664T833 651T844 633T852 617Q884 548 910 548H916Q938 548 962 556L967 542Q967 540 947 531Q909 509 883 492T847 467T838 458Q825 419 825 328Q825 234 833 191T858 121Q875 94 892 77Q898 71 907 71Q912 71 928 76T957 87T971 91L972 88Q972 84 972 81L973 73L957 63Q891 21 806 -23L794 -30L783 -14Q766 13 728 60L713 79V372L724 384Q743 406 765 427T800 460L813 471Q809 472 806 472Q783 479 766 503T741 551T715 594T672 614Q644 614 622 595Q597 576 572 550T534 508L522 492'], + + // LATIN CAPITAL LETTER O + 0x4F: [726,30,976,12,881,'254 595Q269 583 269 581L262 577Q256 573 247 566T228 549T212 527T205 502Q205 480 266 386T328 277Q328 234 239 150L221 134L231 133Q264 131 376 99T516 62Q567 50 604 50Q614 50 626 52Q643 57 662 71T703 115T739 198T753 323Q753 454 692 517Q652 555 584 565T382 577Q365 577 357 577H308L300 591L292 606Q292 608 342 665L392 724L403 725Q406 725 411 726H416L417 725L412 715Q408 705 408 698Q408 684 423 679Q431 677 516 672T663 655Q757 634 806 593T873 463Q881 421 881 380Q881 340 874 306Q859 223 809 147Q801 134 789 124Q595 -30 456 -30Q395 -30 289 3T147 36Q134 36 121 33T98 26T76 15T59 4T44 -8T32 -17L22 -7L12 4L56 59L100 114L116 118Q217 142 217 199Q217 230 185 276T120 365T87 430Q87 435 109 464T172 534T254 595'], + + // LATIN CAPITAL LETTER P + 0x50: [688,223,977,33,943,'247 398Q247 372 206 334T126 272T83 247Q82 247 72 253T61 261Q60 261 61 262T66 265Q127 306 127 343Q127 364 63 430Q42 451 38 458T33 480V490V497Q33 526 63 567Q112 632 170 660T282 688Q341 688 384 667Q454 633 482 566Q483 565 484 566T496 574Q562 623 630 653Q699 681 751 681Q778 681 797 673Q818 662 830 609Q835 580 843 564Q863 524 895 524H901Q917 524 932 528Q936 522 938 518T942 513T942 511Q873 480 836 454Q789 423 789 395Q789 362 834 298T880 200Q880 170 867 145T820 81Q733 -20 647 -20Q581 -20 499 21V9Q499 -16 502 -53T509 -116L512 -141L370 -223L357 -216Q344 -209 344 -208L348 -196Q370 -113 370 33V52L355 58Q307 76 284 76Q258 76 228 60T183 29T141 -11Q137 -7 133 -2L126 7L134 18Q181 89 210 121T278 170Q304 179 328 179Q336 179 358 177L370 175Q368 268 367 359Q367 416 363 434Q362 438 362 441Q348 527 302 574T203 621Q169 621 148 599T127 557Q127 535 187 476T247 398ZM673 315Q673 357 786 442Q786 443 776 444T750 449T727 462Q719 471 716 484V496Q715 507 715 515Q715 571 698 588Q680 611 643 611Q592 611 547 571Q534 558 511 522L499 505V139L543 123Q702 64 744 64Q770 64 781 79T793 112Q793 143 733 217T673 315'], + + // LATIN CAPITAL LETTER Q + 0x51: [726,83,976,12,918,'254 595Q269 583 269 581L262 577Q256 573 247 566T228 549T212 527T205 502Q205 480 266 386T328 277Q328 234 239 150L221 134L231 133Q264 131 376 99T516 62Q567 50 604 50Q614 50 626 52Q643 57 662 71T703 115T739 198T753 323Q753 454 692 517Q652 555 584 565T382 577Q365 577 357 577H308L300 591L292 606Q292 608 342 665L392 724L403 725Q406 725 411 726H416L417 725L412 715Q408 705 408 698Q408 684 423 679Q431 677 516 672T663 655Q757 634 806 593T873 463Q881 421 881 380Q881 340 874 306Q864 250 838 196T791 126Q748 93 733 82L715 69Q714 68 723 60T748 40T774 23Q806 2 832 2Q849 2 870 6T904 14L917 17Q917 12 918 6V-3L882 -22Q806 -60 778 -73L755 -83Q640 -36 596 -7L586 0L576 -4Q513 -30 457 -30Q394 -30 289 2T149 35Q119 35 93 22T52 -4T36 -17T24 -7T12 4L56 59L100 114L116 118Q217 142 217 199Q217 230 185 276T120 365T87 430Q87 435 109 464T172 534T254 595'], + + // LATIN CAPITAL LETTER R + 0x52: [688,28,978,31,978,'31 498Q34 541 76 586T176 659T279 688H290Q377 688 429 653T506 569L511 558L526 572Q620 663 707 682Q722 685 737 685Q781 685 804 665T830 619T838 565T854 525Q866 511 897 511Q917 511 925 513L937 515Q938 515 941 509T944 501T925 493T870 470T803 438Q735 406 735 401Q735 400 741 399T767 390T814 374L828 367L829 307Q829 233 833 202T852 144Q873 109 896 90Q906 82 928 82T976 95V92Q976 88 978 72L807 -28Q768 39 733 87L718 108V149Q718 230 714 257T693 298Q654 333 580 333Q524 333 520 329Q520 300 489 224T443 133Q441 131 333 53T223 -27Q221 -26 204 -11T169 16T136 28Q110 28 66 -8L56 -16Q52 -13 40 -1L48 7Q165 124 211 124Q232 124 287 77L298 67Q309 73 337 97Q397 150 397 347Q397 419 379 474T330 560T269 604T207 619Q177 619 152 601T126 563Q126 540 185 479T244 387Q240 336 160 289Q144 278 98 255L80 246L62 261L79 272Q96 283 113 301T130 337Q130 353 115 373T81 410T47 451T31 498ZM524 358Q537 358 657 405T777 457Q777 459 768 459Q749 462 738 474T723 499T714 539Q706 585 697 599Q681 618 657 618Q632 618 597 595T532 515L525 502L524 441Q524 375 523 369Q523 358 524 358'], + + // LATIN CAPITAL LETTER S + 0x53: [685,31,978,82,905,'457 -31Q356 -31 272 6T135 120T82 304Q82 372 106 430T170 527T241 588T305 626Q341 643 386 657T460 678T495 685T554 660T674 609T778 584Q800 584 818 591T848 610T866 633T878 651T883 659L893 649L901 639Q879 574 803 532T666 490Q661 490 657 490T650 491T641 492T633 495T622 500T610 505T595 513T577 522T554 533T527 547Q436 594 415 602Q393 608 374 608Q303 608 253 545T202 386Q202 229 307 135T568 41Q674 41 748 85T822 198Q822 244 779 283T639 322Q595 322 499 303T383 283Q358 283 335 290T291 318T270 374Q270 418 313 460T424 510H431L435 505L440 500Q425 496 403 475T380 427Q380 382 431 373Q437 372 475 372Q543 372 626 388T742 404Q831 404 868 362T905 260Q905 182 831 108Q692 -31 457 -31'], + + // LATIN CAPITAL LETTER T + 0x54: [686,30,790,30,802,'666 641Q737 641 794 686L802 662Q790 648 734 596L677 541L664 538Q630 528 583 528Q540 528 482 537L461 541Q402 512 402 456Q402 427 439 387T512 311T549 253Q549 220 455 139L440 126Q541 75 586 75Q600 75 619 80T654 94T685 110T709 124T719 130Q722 125 725 119L730 108Q700 72 568 -18Q551 -30 542 -30Q495 -30 404 6T270 42H263Q213 42 142 -11L131 -19L129 -8Q126 1 126 4Q218 84 301 126L316 134H406L413 142Q436 165 436 189Q436 202 421 221T364 281Q336 307 318 328T296 356T283 381L290 394Q338 478 410 540Q419 549 417 549Q415 550 369 558T268 575T195 584Q153 584 127 567T100 523Q100 499 116 479T151 447T170 433Q170 429 171 428Q171 427 131 394T88 359Q82 363 73 370T47 403T31 457Q31 513 79 565T197 648T332 679Q369 679 490 660T666 641'], + + // LATIN CAPITAL LETTER U + 0x55: [688,39,851,18,871,'273 244Q273 281 244 331T186 428T155 502Q155 524 165 536Q239 634 333 688Q338 684 345 680L356 672L344 664Q310 642 295 624T280 582Q280 550 303 505T348 407T371 300Q371 270 362 248L247 123L358 92Q452 64 484 64Q507 64 523 72Q553 87 573 109Q583 121 586 146T593 283Q594 303 594 344Q594 401 591 461T584 558L581 595Q598 600 623 611T672 634T719 659T754 678L768 686Q770 686 784 673L782 670Q781 668 777 664T768 655Q747 635 738 616T721 535T714 359Q714 205 723 176Q727 164 744 133T771 89Q780 75 804 75Q814 75 853 87L867 92L871 73L671 -39L654 -10Q636 20 619 50T600 83Q600 84 589 75T539 34Q478 -16 475 -19Q469 -22 449 -28T414 -34Q410 -34 394 -32Q356 -28 282 -2L237 15Q169 38 126 38Q106 38 85 27T51 4T37 -8T27 -1T18 8Q18 10 70 63T124 116Q154 123 176 131T223 154T260 191T273 244'], + + // LATIN CAPITAL LETTER V + 0x56: [685,29,982,25,966,'133 343Q133 360 79 416T25 496Q25 523 58 563T118 624Q197 685 293 685Q331 685 339 684Q453 665 489 558L493 546Q521 570 553 596T640 653T725 684Q753 684 783 672T844 641T889 618Q895 616 912 616Q924 616 936 617T956 620T965 622T966 612V604L952 595Q924 576 895 549Q864 517 856 496T847 448V434Q847 395 848 388L859 323Q874 241 874 212Q874 142 830 96Q796 62 724 14Q661 -29 603 -29Q555 -29 421 28T242 86Q182 86 110 31Q105 28 102 26T99 25Q88 36 88 42Q95 54 222 142Q252 163 262 165Q319 183 344 218Q378 266 378 377Q378 444 362 494T319 571T266 610T212 623Q181 623 156 603T131 562Q131 539 154 512T206 458T243 416Q246 409 246 399Q246 387 242 377T225 351T178 311T94 259L79 251Q72 256 68 261T62 268L61 270L70 277Q131 318 133 343ZM822 526Q778 531 719 564T628 597Q611 597 579 574Q543 543 513 506L505 495L506 473Q506 469 506 461T507 449Q507 348 467 271L462 261L404 218L348 174Q349 173 356 173Q384 169 450 144L546 105Q665 56 708 56Q737 56 746 72T756 118Q756 129 755 135L741 219Q725 314 725 334V344Q725 416 736 431Q748 450 815 510L832 526H822'], + + // LATIN CAPITAL LETTER W + 0x57: [683,30,1235,26,1240,'133 317T133 338T80 413T26 496Q26 532 83 591Q100 608 111 616T151 644T219 672T304 682Q381 682 434 646T506 564L510 557Q513 557 534 573L677 665L707 683L790 561L803 572Q933 682 1001 682Q1037 682 1098 650T1193 616Q1208 616 1222 619L1235 622Q1239 622 1239 616Q1239 611 1240 609Q1240 608 1206 577T1138 503T1104 430Q1104 409 1123 330T1142 208Q1142 183 1136 147Q1127 118 1117 106Q1114 103 1031 48T935 -14Q930 -18 908 -22T862 -27Q826 -27 759 -6T647 26Q597 38 578 38Q573 38 561 33T533 20T505 4T480 -10L469 -16L452 -26L439 -28Q423 -30 411 -30Q358 -30 279 7T169 45Q125 45 58 -5L47 -14L41 -4L35 8Q35 11 56 29T113 75T181 125L200 139H217Q279 143 320 180T377 270T394 393Q394 453 378 498T334 568T277 605T213 617Q177 617 155 607Q140 600 130 587T119 560Q119 545 137 522T177 479T217 434T236 393Q236 324 98 251L89 246L76 253L63 261Q91 275 112 296ZM1088 526Q1066 526 1004 556T909 586Q863 586 816 539L802 526L804 514Q814 461 814 411Q814 319 781 238Q772 214 760 198T730 165T702 136L715 133Q759 122 848 90T973 57Q1003 57 1017 80Q1022 93 1022 116Q1022 152 1003 241T983 377V391Q983 405 985 409T1002 429Q1019 450 1045 475T1090 514L1107 528Q1104 527 1102 527T1096 527T1088 526ZM699 358Q699 391 696 419T688 467T675 503T660 530T642 550T626 563T608 574T593 582Q581 575 559 554T524 512Q523 510 523 477Q523 315 444 218L435 207L368 169Q301 132 301 131Q307 128 315 125L377 99Q476 57 515 57Q534 57 608 94L627 102L636 111Q699 187 699 358'], + + // LATIN CAPITAL LETTER X + 0x58: [681,35,849,32,835,'273 679Q354 674 408 633T477 525L484 533Q496 548 524 574T571 615Q594 633 625 649T675 673T699 681Q724 632 747 607Q754 601 756 599T765 594T777 591T794 590Q818 590 834 594V585L835 577L704 513L693 518Q657 534 631 560T597 599Q596 601 581 584Q495 490 489 379V366H562L681 369Q682 369 679 366T668 355T651 341L620 314H485V295Q490 190 543 125T686 60Q720 60 789 88L801 93V89Q798 83 798 66Q781 59 685 -10L665 -25L634 -30Q596 -35 594 -35Q570 -35 536 -23T477 19Q461 37 445 67T418 118L409 138Q401 131 388 120T340 79T273 28T206 -12T151 -31Q129 -31 90 -12T32 22L113 101Q114 101 120 96T136 84T160 69T189 56T221 51Q256 51 305 90Q376 149 376 301V315H293Q276 315 251 315T210 314T190 313L168 312Q168 313 200 340L231 368L238 367Q275 367 311 366H378V387Q376 470 355 512T291 572Q274 579 252 579Q223 579 197 568T156 544T131 519T117 508Q112 512 108 518L99 527L117 545Q177 604 255 665L273 679'], + + // LATIN CAPITAL LETTER Y + 0x59: [688,214,984,34,878,'34 496Q34 518 53 549T107 610T195 661T310 682Q357 682 398 663T460 611Q467 600 475 583T489 554T495 542Q495 544 531 570T617 629T700 676L724 688Q742 670 756 657T784 635T806 621T830 606T856 592Q878 416 878 340Q878 154 805 -3L798 -20L779 -40Q706 -113 613 -163T421 -214Q359 -214 317 -196T256 -160L306 -63L313 -64L320 -66L326 -79Q337 -104 349 -120T392 -151T470 -166Q576 -166 644 -101Q750 7 750 292Q750 426 721 495T617 565H611Q563 565 513 509L506 501L508 493Q508 490 509 475T510 445Q510 319 458 236L451 225L436 216Q406 198 365 169T318 134L332 127Q336 126 397 103T489 80H493Q527 80 593 129L604 137L607 127Q610 119 610 116Q610 114 592 95T543 46T484 -4Q450 -27 446 -27Q441 -27 402 -18Q365 -9 290 20T188 50Q135 50 64 -7L52 -17L43 -7L34 2L51 19Q118 87 177 132L192 143H215Q259 145 289 155T335 184T355 214T366 245Q382 306 382 388Q382 426 381 436Q368 520 318 570T214 621Q184 621 165 608T142 583T137 562Q137 541 163 508L201 469Q245 425 251 408Q253 403 253 398Q253 383 240 366T212 335T161 295Q128 271 99 253L89 247L77 256L65 266L76 273Q125 301 134 329Q136 334 136 342Q136 357 124 372T88 410T49 455Q34 479 34 496'], + + // LATIN CAPITAL LETTER Z + 0x5A: [677,148,711,-5,624,'278 601Q242 601 212 591T167 570T121 533Q114 528 111 525L93 550Q223 661 244 667Q299 677 356 677Q415 677 456 666T515 634T541 596T549 555Q549 513 529 478T480 421T424 388T377 372Q365 370 365 367Q365 365 389 365T450 358T523 337T588 282T623 183Q624 177 624 161Q624 20 524 -60Q415 -148 285 -148Q242 -148 213 -139Q181 -131 159 -109Q136 -87 127 -56T114 6T104 49Q94 69 57 69Q38 69 13 58L1 53Q1 55 0 59T-3 68T-4 76Q78 130 138 142Q150 144 162 144Q213 144 227 120T242 31Q242 -30 263 -66T345 -102Q397 -102 444 -52T491 107Q491 172 471 211T428 265Q392 288 306 288Q269 288 233 284L218 282Q208 289 208 291L229 324L251 359Q250 360 248 360Q239 360 248 371L256 381H273Q344 385 378 409T413 495Q413 537 384 569T278 601'], + + // LEFT SQUARE BRACKET + 0x5B: [740,130,257,36,226,'226 711T225 711T86 699V-93H89Q94 -93 157 -96T223 -100H226V-119H223Q134 -119 42 -130H36V740H42Q61 738 156 736H226V723Q226 711 225 711'], + + // RIGHT SQUARE BRACKET + 0x5D: [738,132,257,14,208,'69 732Q116 733 146 734T184 736T197 737T206 738H208V-132Q190 -129 160 -127T99 -125T66 -124H14V-103H19Q20 -103 84 -98T152 -92H158V699H151Q148 700 85 703T18 708H14V732H69'], + + // CIRCUMFLEX ACCENT + 0x5E: [734,-452,590,1,584,'1 463T1 464T148 599T296 734Q584 486 584 485L561 472Q538 459 537 461Q296 672 293 672L161 563Q133 539 97 509T44 466L28 452Q27 452 14 457'], + + // LATIN SMALL LETTER A + 0x61: [472,32,603,80,586,'80 129V151Q80 241 99 363Q99 367 111 372T172 401T285 465L297 472Q340 455 405 443L423 440L455 453Q486 467 489 467L497 461L494 451Q480 390 480 292V283Q480 207 483 155L484 143L535 80L558 90L582 99Q586 95 586 83Q586 81 513 25L443 -29Q410 16 386 40L371 55V61Q371 63 371 67T370 74V80L278 25Q186 -29 184 -31Q182 -32 160 -12T112 35T80 75V129ZM359 366Q334 366 300 371T243 382L221 388Q218 388 212 375T200 323T194 228Q194 191 197 152L198 139L217 120Q245 92 269 74L279 66L304 78Q338 95 349 100L369 110V152Q368 164 368 210T367 275Q367 358 366 361V366H359'], + + // LATIN SMALL LETTER B + 0x62: [690,32,590,86,504,'99 398Q99 610 86 662Q86 665 95 669T106 674L108 669Q109 664 112 654T119 635Q122 626 125 616T130 601L131 596Q214 649 273 678Q295 690 298 690Q299 690 304 688T313 682L317 679Q275 653 240 612Q210 569 210 469V459Q210 450 210 432T211 406L212 378L285 425Q301 435 321 447T350 466L360 472Q360 473 361 473T368 471T401 456T465 429L501 414V408Q504 386 504 309Q504 255 500 203T491 125T485 97Q485 95 445 74T343 23T237 -24L214 -32Q197 -22 165 3T109 49T87 73Q99 169 99 398ZM386 251Q386 320 380 347V350L305 374L282 382L214 348L213 274Q213 184 214 165V131L230 119Q288 76 349 54Q386 137 386 251'], + + // LATIN SMALL LETTER C + 0x63: [473,26,464,87,424,'227 393Q215 393 210 351T205 269Q205 161 213 153Q220 145 244 125T290 88L312 72L365 92Q414 113 418 113V93L365 60Q255 -9 221 -26L211 -18Q158 21 91 88L90 107Q87 167 87 225Q87 267 90 302T96 351T100 366L295 473L311 470Q340 464 368 454T410 437T424 429L347 334L342 333H337L325 342Q299 363 271 378T228 393H227'], + + // LATIN SMALL LETTER D + 0x64: [632,28,589,-1,511,'88 117Q88 177 91 231T97 310T102 341Q102 343 118 357T168 397T239 447L257 459L268 454L278 449Q242 416 238 412L219 394Q219 391 216 378T211 349T206 307T203 249Q203 211 206 166L208 148Q224 132 261 108T333 70Q341 66 342 67T350 79Q393 157 393 302Q393 368 388 406V411L371 424Q199 558 101 558Q69 558 28 545L18 542L8 549L-1 557L24 569Q61 587 147 621L177 632Q179 631 194 627T216 621T240 613T269 602T302 589T340 571T382 549T431 522T484 488Q504 475 504 472Q511 449 511 365Q511 248 474 129L468 108L451 96Q427 77 347 28T254 -28Q235 -20 174 21T89 86L88 117'], + + // LATIN SMALL LETTER E + 0x65: [471,27,472,81,428,'309 69Q391 98 416 108Q418 106 422 100T425 92Q419 86 326 30T229 -27Q228 -27 207 -13T154 27T97 76L85 87L84 106Q81 152 81 194Q81 295 93 359L95 369L286 471L313 449Q376 397 414 372L428 362Q428 360 375 318L188 181V170Q188 156 189 153V148L203 138Q228 119 266 94T309 69ZM209 389Q208 388 204 366T194 307T187 244Q187 225 188 225T201 233L245 261Q283 284 291 291Q324 313 324 316L296 334Q280 343 259 357T224 380L210 390Q209 390 209 389'], + + // LATIN SMALL LETTER F + 0x66: [687,222,388,35,372,'128 400Q127 401 121 422T108 478T99 540V555L111 569Q135 597 165 626T214 671T235 687L249 678Q263 668 282 659T315 650Q335 650 362 666L372 654L286 569H271Q205 576 173 586V583Q173 558 208 492T252 401Q253 399 310 399T367 398L332 355H254V311Q251 160 235 16Q230 -28 226 -36Q225 -38 221 -45Q171 -140 121 -211L113 -222H104Q94 -222 94 -220Q94 -215 105 -187L121 -145Q139 -80 139 35V93Q139 222 135 314L134 354Q134 355 84 355H35L84 399H106Q128 399 128 400'], + + // LATIN SMALL LETTER G + 0x67: [472,208,595,17,541,'92 71Q92 74 91 88T88 128T86 183Q86 230 91 275T102 342T109 366Q115 372 207 422T305 472Q407 426 431 426Q435 426 476 445L519 465L525 463L532 461Q497 392 497 268Q496 255 496 233Q496 179 516 92T539 -10L541 -22L526 -38Q441 -126 355 -194L339 -206L327 -207Q324 -207 319 -207T310 -208Q242 -208 171 -179T73 -131L56 -141Q40 -150 38 -150Q17 -140 17 -137Q17 -136 18 -136T98 -79L176 -23Q174 -21 134 24T92 71ZM226 393Q224 393 221 372T214 312T210 235Q210 182 214 144L215 132L230 118Q281 70 301 66Q304 66 331 80T373 105L384 112L383 165Q383 224 387 309Q387 314 387 319T387 329T388 336T388 341V343Q388 344 381 344T339 354T249 384Q246 385 243 386T236 389T231 391T228 392L226 393ZM414 -80Q414 -64 411 -43T403 -1T394 37T386 66T382 79Q381 79 286 15T189 -52Q312 -125 365 -125Q397 -125 405 -115T414 -80'], + + // LATIN SMALL LETTER H + 0x68: [687,207,615,89,507,'95 661Q95 662 103 667T113 672L126 634L137 596L147 602Q235 656 275 677L292 687L303 680Q305 679 307 677T312 674L313 672L310 670Q307 669 301 667T289 660T274 649T259 634Q250 622 244 611T233 585T226 560T222 528T221 497T220 456T219 413V377L232 384Q244 391 271 409T339 455L362 471L383 461Q425 440 491 415L504 410V406Q507 399 507 269Q507 76 486 -21Q485 -30 483 -33T461 -57Q382 -139 299 -207L281 -197L263 -186L266 -185Q268 -184 280 -177T312 -155Q344 -130 353 -116Q394 -59 394 117Q394 162 391 216T386 301T382 335Q382 338 365 346T323 364T281 376L250 362Q220 347 219 347Q213 336 213 232Q213 177 217 144L218 128L224 119Q244 92 263 71L272 60Q206 21 157 -24Q156 -24 151 -16T132 11T98 52L89 62L91 103Q104 289 104 436Q104 471 103 506T101 568T99 616T96 649L95 661'], + + // LATIN SMALL LETTER I + 0x69: [686,25,331,3,327,'73 613L164 686L184 666Q200 650 214 637T235 620T242 614T203 577T162 540Q158 540 122 570T73 613ZM92 58Q92 63 94 83T98 142T101 234Q101 318 97 358V366L59 387L40 379L21 371Q20 371 12 376T3 382L38 406Q78 431 125 466L138 477Q149 468 186 444L219 422V389Q215 324 215 247Q215 136 222 123Q226 113 238 98T258 83Q263 83 292 94L322 104Q322 103 324 97T327 89Q327 88 317 82T272 52T190 -7Q166 -25 164 -25L112 35Q92 55 92 58'], + + // LATIN SMALL LETTER J + 0x6A: [682,203,332,-19,238,'74 611L155 682Q172 666 186 655T208 636L235 614Q227 606 191 574L154 540L135 556Q101 582 84 601L74 611ZM10 377L144 477Q145 476 184 453T229 428L233 425V416Q238 346 238 252Q238 93 215 -16L213 -30L185 -57Q29 -203 19 -203Q17 -203 -19 -189L-9 -183Q52 -146 78 -116T114 -37Q120 31 120 192V237Q120 327 113 351T72 380L53 372Q34 362 32 364L10 377'], + + // LATIN SMALL LETTER K + 0x6B: [682,25,464,34,432,'106 72Q110 105 111 193T114 294V308H74L34 309L83 346H115V430Q114 591 106 652Q105 662 107 665T114 668T123 672Q125 672 139 635L152 597L154 598Q156 600 160 602T167 607Q193 625 226 644T279 672T302 682L312 676L321 670L312 665Q281 649 263 626T241 587T233 547Q232 541 231 530T230 510T230 501Q231 501 265 522T334 564T369 583L380 570Q428 509 428 481Q428 475 427 470T423 459T416 448T404 434T389 418T369 397T344 371L321 347L365 346H409L372 308H227V294Q227 272 230 208T234 138Q234 136 256 119T302 84L324 68L372 88Q421 108 422 108T432 90L421 83Q373 53 270 -5L234 -25L204 -1Q172 25 124 60L106 72ZM336 434Q336 452 327 472T308 503T297 514Q296 514 290 510T275 499T264 490Q230 458 230 358V346H247Q268 346 276 350T302 372Q328 398 335 423Q335 424 335 428T336 434'], + + // LATIN SMALL LETTER L + 0x6C: [681,24,337,100,312,'111 275Q111 406 108 518T104 650V657Q105 657 109 660T117 665T122 666L133 629L144 594L161 606Q218 642 272 670L294 681Q295 681 300 677T306 672L302 669Q298 666 292 662T278 651T263 637T251 621Q232 587 227 530T222 343Q222 226 230 125L231 112L244 98L258 83Q271 87 285 92L312 102V84Q297 72 231 24T163 -23L100 55Q110 141 111 275'], + + // LATIN SMALL LETTER M + 0x6D: [476,31,921,16,900,'115 203Q115 257 114 291T112 338T111 355Q111 357 93 370L75 384L54 375Q32 366 31 365Q27 365 16 378Q25 383 89 430L152 476Q175 453 228 420Q229 420 229 418T229 410T227 394L225 369Q279 400 315 425T363 461T376 471Q480 424 514 416V412Q514 411 514 404T513 392L511 376L520 382Q529 387 548 399T584 422Q599 432 618 444T648 463L657 469H658Q661 469 681 461T735 440T796 420Q803 418 803 416Q801 414 798 390T791 325T788 247Q788 220 790 172T794 123Q799 115 814 97T835 78H838Q841 78 867 89L895 101Q896 101 896 100T897 92T900 78L873 62Q810 23 761 -12L736 -30Q735 -30 729 -22T707 7T671 48L661 59Q674 93 674 207V219Q674 341 670 344Q655 353 591 372L576 376L544 364Q511 351 510 351Q507 349 507 224V132L535 95Q541 87 548 78T560 63L563 58Q563 57 504 15T444 -28L385 53L387 67Q396 114 396 206Q396 289 393 334Q393 346 390 348Q369 358 306 373Q301 373 265 361L228 349V335Q227 322 227 284Q227 206 231 157Q231 151 231 144T232 133V129Q232 125 259 90Q286 56 286 53Q287 53 284 51T273 43T258 31L173 -31L166 -20Q160 -11 145 7T119 38T108 59Q108 62 110 81T113 133T115 203'], + + // LATIN SMALL LETTER N + 0x6E: [473,28,654,5,608,'608 88Q572 65 535 37T477 -8T455 -25Q432 7 389 53L375 68L378 82Q386 160 386 195V221Q386 284 385 307L384 344Q352 359 306 373L286 379L213 353V273Q214 229 214 161V129L275 62L163 -28L150 -14Q136 0 121 16T91 44Q86 48 86 50Q95 83 96 148Q96 224 89 340L88 366L79 374Q69 384 67 385L64 388L55 383Q52 382 44 378T33 373L21 367L13 374Q5 379 5 381Q5 384 69 428L133 473Q135 473 147 464T179 443T215 424L214 400V376Q271 404 342 457L363 472Q363 473 364 473Q366 473 375 469T418 449T502 414L512 411V407Q502 330 502 217V197V132L523 109Q527 104 533 97T543 87T547 83L550 80L578 92Q603 103 604 103Q606 103 608 88'], + + // LATIN SMALL LETTER O + 0x6F: [482,35,609,107,515,'107 102Q107 178 112 242T123 334T129 362Q129 363 140 368T199 400T315 469L336 482L346 476Q409 439 498 414L514 410L515 389Q515 208 502 141Q494 101 491 94Q490 89 478 81Q430 51 375 23T288 -20T254 -34Q250 -34 200 -1T119 56L108 65L107 76V102ZM389 355Q367 358 346 363T309 372T282 381T264 388L257 390H256Q254 390 249 381T238 348T227 293Q226 280 226 237Q226 183 231 146L232 131L244 122Q285 91 323 74T374 57H377L380 68Q405 154 405 267Q405 315 401 349V354L389 355'], + + // LATIN SMALL LETTER P + 0x70: [557,207,604,-1,519,'66 435Q66 445 117 501T173 557Q174 557 183 555T193 551Q174 526 174 509Q174 496 190 472T233 428V386L377 482L399 471Q450 445 509 425Q519 421 519 420L518 419Q518 418 518 416T517 410Q517 405 518 381T519 335Q519 222 501 137Q492 84 489 84L473 75Q457 66 423 44T354 -6L338 -19L329 -13Q320 -8 313 -4T297 4T284 10T270 14T258 17T245 20T233 22V12L241 -161L214 -172Q187 -184 160 -195T131 -207Q127 -207 112 -202L113 -188Q113 -182 115 -77T118 31Q118 32 109 32Q63 27 23 0L10 -9Q5 -4 -1 8Q1 13 52 57T114 101H115L117 123Q117 141 117 230V359L110 367Q85 394 71 421Q66 433 66 435ZM384 83Q386 83 389 110T396 180T400 254Q400 294 395 339L394 349L379 355Q308 383 294 383Q290 383 263 372L234 360L233 245V130Q270 125 305 113T361 92T384 83'], + + // LATIN SMALL LETTER Q + 0x71: [485,211,596,87,515,'362 -196Q375 -92 375 47V78L282 24Q189 -29 188 -30Q187 -30 139 21T90 75Q87 84 87 158Q88 206 94 259T107 342L113 372L308 478L322 473Q374 452 421 444L433 442L503 485Q515 479 515 477Q485 378 485 56Q485 -100 494 -164V-171L381 -211L371 -207L362 -202V-196ZM280 72Q301 77 323 86T358 101T372 110Q372 268 377 346L378 358H374Q368 360 358 360T323 365T257 380L234 386Q231 386 229 379Q215 353 211 310T207 180Q207 152 208 150Q210 142 235 114T280 72'], + + // LATIN SMALL LETTER R + 0x72: [472,26,460,13,453,'23 367Q21 370 18 374T14 380L13 382L151 472L236 411L238 381L290 426Q298 432 307 439T322 452T333 461T342 467L344 469Q382 410 404 399Q410 397 416 397Q423 397 432 399T446 403L451 405Q453 405 453 399V393Q430 374 404 356T364 328T350 318L349 317Q321 320 276 356Q257 371 256 371Q253 374 249 366T242 351Q232 321 232 236Q232 214 232 205T232 182T233 162T235 148T238 137T242 129T249 120T257 114T268 105T281 95Q313 70 314 70L358 85Q377 92 389 96T402 100V90L403 80L229 -26L221 -18Q195 6 166 29T121 63T105 76T106 82T110 97T114 121T117 158T119 208Q119 269 114 329L113 341L103 350Q90 362 67 380L45 374L23 367'], + + // LATIN SMALL LETTER S + 0x73: [479,34,523,-24,481,'189 331Q190 304 196 282T207 252T214 244Q239 244 348 292L371 302L382 297Q398 290 415 279T433 265Q442 238 442 166Q442 103 423 45Q416 42 380 29T310 3T244 -26L227 -34Q139 40 73 40Q61 40 48 37T24 30T6 22T-8 14L-13 11Q-14 11 -18 18T-23 26T38 75T102 125Q107 128 146 131H153Q192 131 296 56Q318 40 318 43Q323 48 323 114Q323 157 321 177L319 194Q308 208 291 216T261 225Q239 225 160 185L123 167Q85 205 79 227Q78 230 78 304V377L171 428Q264 479 265 478Q268 478 287 465T334 440T384 427Q423 427 475 463L478 453Q481 446 481 442Q481 439 410 391L339 342H331Q309 345 277 361T222 391T198 406T195 399T191 372T189 331'], + + // LATIN SMALL LETTER T + 0x74: [648,27,393,43,406,'328 69Q401 102 403 102Q404 102 405 94T406 84Q406 83 318 28L230 -27Q223 -21 206 -5T171 25T132 54L124 60V71Q129 154 129 297V359H43L44 363Q44 365 44 367L45 369L48 372Q51 374 57 378T68 387L90 405H129V553L285 648Q304 641 306 640L260 598V592Q259 589 255 505T249 413V405H353V402Q353 399 328 379L303 360H245V319Q245 150 253 125Q257 115 276 101T311 78T328 69'], + + // LATIN SMALL LETTER U + 0x75: [472,32,589,9,603,'444 -31Q444 -29 384 66Q382 66 364 58T309 30T231 -17Q214 -29 212 -29L197 -20Q172 -4 140 11T88 34L68 42Q68 43 73 49T85 67T100 98T113 149T118 221Q118 272 105 332L100 356L58 383L23 365L9 379L76 425Q141 472 144 472Q144 471 183 443L221 414V404Q224 365 224 275V253Q224 159 196 113Q191 104 193 104Q203 104 285 72L308 62L374 89L375 106Q375 266 373 340Q373 364 371 396V424L430 445L491 467Q493 467 499 463T505 457Q505 456 503 442Q488 335 488 187V158L529 81L534 80Q541 80 568 90L598 101Q605 94 602 87L524 27Q445 -32 444 -31'], + + // LATIN SMALL LETTER V + 0x76: [546,27,604,56,507,'95 67Q104 80 104 193Q104 261 100 321L98 355L91 363Q56 402 56 421Q56 441 82 472T132 524T159 546Q174 542 175 542Q159 520 159 501Q159 481 205 432L221 415L220 401Q219 394 219 387L288 429Q309 441 325 451T347 465T358 472T365 476L504 415V409Q504 408 505 374T507 318Q507 155 474 91L469 80L343 26Q314 14 281 0T232 -20L216 -27L202 -15Q192 -5 152 28Q141 35 126 45T103 60T95 67ZM386 349Q302 389 287 389Q271 383 253 375L220 361V136Q226 120 256 100T312 68T342 56Q355 56 360 68Q389 134 389 258Q389 310 386 341V349'], + + // LATIN SMALL LETTER W + 0x77: [549,32,918,55,815,'90 58T90 59T92 64T97 78T102 105T107 150T109 218Q109 290 103 350V356L83 377Q55 407 55 425Q55 445 138 528Q158 549 162 549L164 548Q165 548 167 548T170 547L175 546L172 540Q168 533 165 523T161 502Q161 479 216 430L229 419V382Q232 382 366 471Q407 445 500 408L511 404V387L512 370L595 420Q678 469 679 469L693 462Q756 431 795 417L815 409L814 380Q812 187 782 96Q774 71 766 62T744 48T684 25T577 -23L557 -32L546 -26Q536 -19 519 -10T481 10T436 31T393 47Q384 50 380 50Q380 52 381 58T384 77T387 104Q391 174 391 256V292L390 333L377 340Q350 357 304 373L294 376L227 355V348Q224 322 224 243Q228 117 232 112L235 108Q238 103 245 95T257 80L281 50Q281 49 227 10T172 -29L159 -13Q133 19 116 36T94 56ZM652 64Q658 64 667 84T685 162T697 303V336L686 341Q653 356 619 367L591 376Q590 376 553 361T514 344T512 324T510 275T508 221Q508 167 510 152T521 126Q537 112 590 88T652 64'], + + // LATIN SMALL LETTER X + 0x78: [471,188,459,8,441,'8 -90Q8 -68 13 -63Q13 -56 53 -8T120 63L128 71L129 85Q133 120 134 182Q134 308 131 331T106 365Q100 367 97 369L75 381L35 365L20 377Q20 378 47 397T110 440T161 471L253 413V396Q253 378 254 378L309 422Q364 466 365 466Q365 467 366 466T370 461T376 454Q403 419 426 396L441 380L438 377Q438 376 433 372T420 359T404 344L372 314Q351 320 338 327T310 344T277 364Q261 364 252 316Q251 306 251 235Q251 136 255 129Q257 127 258 124T268 113T298 92Q334 68 335 68Q340 70 349 73T377 84T408 95T421 99Q422 99 422 90L423 82L334 26Q246 -28 243 -28L200 8Q156 43 148 43Q144 43 130 36T99 9T83 -36Q83 -67 121 -89T198 -118L237 -124V-129L238 -133L193 -160Q183 -166 171 -173T152 -184L146 -188Q140 -187 131 -185T98 -173T56 -154T23 -127T8 -90'], + + // LATIN SMALL LETTER Y + 0x79: [557,221,589,60,512,'280 53Q272 47 246 27T199 -10T176 -27L167 -18Q137 17 107 44L90 60L93 71Q108 130 109 290V331Q109 339 109 344T108 353T107 359T105 364T102 369T97 374T91 381Q60 412 60 432Q60 448 86 479T138 534L164 557Q168 553 180 553Q163 532 163 511Q165 491 186 468Q206 443 231 423V404L232 385L371 477L389 468Q439 441 498 418L512 412V386Q512 360 507 190T500 14Q488 -26 445 -67Q401 -111 355 -148T282 -203T249 -221Q247 -220 230 -210T213 -199T229 -191T269 -172T306 -151Q361 -120 379 14Q391 92 391 182Q391 218 386 305Q384 339 380 341Q363 353 330 366T288 379Q282 379 258 368L230 356V181V141Q230 127 232 120T236 108T251 89T275 59L280 53'], + + // LATIN SMALL LETTER Z + 0x7A: [471,214,461,-7,378,'153 371Q141 371 126 365T100 354T78 340L65 331L57 338L50 346L62 356Q133 419 222 471Q274 453 306 422T338 366Q338 356 329 346T283 301L243 264L262 257Q298 246 361 214Q378 154 378 73Q378 33 371 -9T356 -74T345 -104Q340 -106 267 -160L191 -214H177Q60 -214 13 -150Q-7 -122 -7 -115Q-7 -112 19 -77T106 25T241 149Q241 152 227 158T181 173T109 185V190L108 194L158 229Q212 267 223 278T234 306Q234 329 208 350T153 371ZM258 1Q258 42 257 68T254 105T252 118Q235 105 210 85T144 22T102 -45Q102 -79 146 -106T234 -133H238Q248 -128 254 -80Q258 -58 258 1'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js new file mode 100644 index 0000000..e55fc05 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Bold/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur-bold'] = { + directory: 'Fraktur/Bold', + family: 'MathJax_Fraktur', + id: 'MJFRAKB', + weight: 'bold', + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xDFFF,"Other"], + [0xE300,0xE310,"PUA"] + ] + + +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js new file mode 100644 index 0000000..a6db0fc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Bold/Other.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur-bold'], + { + // LEFT SINGLE QUOTATION MARK + 0x2018: [708,-411,254,53,187,'187 456Q187 437 169 424T138 411Q114 411 84 454T53 538Q53 565 75 597Q109 648 155 697L166 708L181 694L173 681Q124 610 124 577Q124 549 155 511T187 456'], + + // RIGHT SINGLE QUOTATION MARK + 0x2019: [692,-394,254,58,193,'125 524Q125 545 92 588T58 651Q58 661 61 667Q65 674 80 683T107 692Q131 692 162 645T193 564Q193 540 176 509T144 460T87 394L78 400L68 406L79 421Q125 489 125 524'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js new file mode 100644 index 0000000..38dee4b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Bold/PUA.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur-bold'], + { + // stix-MATHEMATICAL BOLD CAPITAL GAMMA SLASHED + 0xE301: [630,27,587,64,512,'388 427Q320 485 242 524T128 563H116Q95 563 87 561L77 559Q72 563 69 566T65 570T65 572L75 576Q106 592 154 611T212 630Q230 630 262 622T358 581T492 498L508 486Q512 463 512 396Q512 246 469 112L465 102Q453 94 341 25Q252 -27 247 -27Q243 -27 174 24T97 84Q90 100 90 214Q90 285 98 345Q100 360 102 363T118 377Q175 422 262 465Q264 463 270 460L277 456Q277 455 267 447T244 428T228 414Q206 382 206 269Q206 187 214 164T259 110Q286 89 342 58Q391 131 391 313Q391 355 388 412V427'], + + // stix-capital Delta, Greek slashed + 0xE302: [693,212,394,37,408,'39 362L37 366L38 368L82 405H133V474Q135 563 143 589T198 658Q210 669 224 676T247 687L255 690H253Q241 690 253 692Q254 692 256 692T260 693Q263 693 262 691L261 690Q300 690 361 662L373 656L388 666Q404 675 405 675L406 674Q406 672 406 670T406 664L408 655L301 555Q300 555 287 564T254 584T221 597Q190 597 176 583T161 550Q161 525 184 495T232 440T261 405H387V399Q377 389 364 379L340 359H258V315Q258 52 228 -18L172 -120L121 -211H109Q102 -212 96 -212L109 -174Q131 -108 135 -80T139 53V76V157V362H39'], + + // stix-MATHEMATICAL BOLD CAPITAL DELTA SLASHED + 0xE303: [681,219,387,36,384,'41 352Q40 354 39 355T37 358L36 360H37Q48 370 61 380L84 400H108Q131 400 131 402Q121 424 104 501L100 519Q109 560 134 602T196 664Q230 681 271 681Q291 681 316 669T358 644L373 631Q373 630 304 553Q299 548 294 547Q292 547 290 546H287Q286 546 274 562T243 593T205 609Q180 609 165 596T150 562Q150 526 191 488L217 462Q248 431 253 405V400H381L384 394L349 352H251V332Q249 271 231 17L227 -37L120 -217L109 -218Q103 -219 97 -219Q97 -218 101 -206T110 -177T118 -151Q126 -129 128 -120T136 -46T141 127Q141 250 136 340V352H41'], + + // stix-capital Epsilon, Greek slashed + 0xE304: [474,212,593,67,531,'107 370Q127 384 172 409T255 454T294 473L306 468Q356 446 425 431L435 429L524 468Q528 465 531 461Q499 395 499 271V263Q499 146 509 71T519 -8Q519 -28 512 -45Q510 -50 435 -123T355 -197Q296 -212 257 -212Q209 -212 164 -196T98 -167T67 -143L133 -44H144Q167 -88 216 -111T320 -134Q371 -134 390 -118T410 -69Q410 -52 404 -12T392 60T385 92L193 -29L158 5Q124 39 110 51L96 63V71Q94 79 94 121Q94 130 94 148T93 174Q93 230 96 275T103 344T107 370ZM221 397Q200 334 200 254Q200 170 210 140Q216 126 234 109T268 81L283 71L383 119V127Q384 132 384 241L385 347L368 349Q325 357 290 369T240 389T221 397'], + + // stix-MATHEMATICAL BOLD CAPITAL EPSILON SLASHED + 0xE305: [684,27,393,33,387,'103 453Q103 631 95 661Q95 663 102 667T110 672L114 664Q117 655 123 641T131 621L140 597L154 606Q208 641 275 673L297 684Q300 683 302 682T307 679T310 678L314 676Q283 658 256 625Q238 601 231 579T223 515L224 512L282 548Q339 583 341 583T365 548T386 509Q326 443 318 443L316 446Q314 448 311 452T304 460T294 470T283 480T272 488T260 494T248 497Q231 497 223 474Q220 468 218 440T215 407V401H345L309 360H218V314Q218 181 221 139V129L253 108Q306 73 310 73Q315 73 343 83L373 92L374 87Q375 82 375 79T375 74T360 65T308 36T229 -13L208 -27L192 -13Q149 24 90 61Q89 61 89 62L90 68Q91 73 93 87T97 125T100 191T103 291V360H33V366L34 371L85 405H94L103 404V453'], + + // stix-capital Eta, Greek slashed + 0xE308: [679,220,981,31,875,'602 575Q505 508 505 489Q505 488 505 482T506 463T507 432Q507 314 456 237L449 226L434 216Q420 208 325 143L316 137Q453 82 488 82Q527 82 585 127L596 136Q597 136 599 126L602 115Q578 85 511 27T428 -31Q400 -31 308 10T170 51Q143 51 123 43T92 24T54 -15L34 6L41 14Q65 41 170 129L188 144L204 145Q254 147 293 164T350 208Q378 249 378 344Q378 422 362 478T320 563T268 605T213 618Q177 618 156 600T134 561Q134 539 162 508T217 446T245 394Q245 368 213 337T85 250L62 262Q73 269 86 279T116 308T133 338T108 378T57 439T32 499Q32 556 117 617T291 679Q350 679 393 658Q415 647 433 631T462 600T480 572T490 550T494 541T499 544T516 556T547 578T603 613T689 662L720 679L730 670Q742 659 756 649T785 629T810 615T836 601T855 590Q855 587 860 536T870 419T875 312Q875 114 800 -25Q794 -35 781 -47Q584 -220 398 -220Q322 -220 278 -190Q253 -173 239 -155L244 -150Q248 -145 255 -138T271 -120T290 -100T310 -80T328 -63T341 -51T349 -46Q350 -46 351 -46T354 -47Q357 -47 357 -52Q359 -68 364 -83T383 -118T424 -151T491 -166Q559 -166 613 -129Q629 -118 641 -108T674 -68T710 1T735 107T746 260Q746 433 727 507Q727 512 685 535T615 570L602 575'], + + // stix-MATHEMATICAL BOLD CAPITAL ETA SLASHED + 0xE309: [717,137,727,17,633,'351 571Q317 571 247 563T171 555Q153 555 133 563T107 584Q94 605 98 609Q101 615 138 658T190 717H207Q204 710 204 699Q204 673 231 666Q235 665 264 665Q296 665 345 667T426 669Q474 669 501 660T545 626Q553 612 553 594Q553 531 498 474T379 384Q371 379 371 378Q371 376 390 376H411H434Q520 376 602 318Q621 303 627 288T633 234Q633 59 540 -34Q465 -109 348 -130Q308 -137 235 -137Q159 -136 143 -129Q132 -125 132 -118V-53Q118 -24 90 -24Q69 -24 37 -39L27 -44L25 -42Q23 -39 21 -35T17 -30Q17 -28 40 -14T103 19T177 44Q183 45 205 45Q219 45 227 44T245 37T259 20T264 -12Q264 -33 262 -48T259 -80Q259 -93 260 -95Q271 -110 305 -110Q343 -110 383 -86T443 -33Q491 34 491 154Q491 223 467 249Q428 288 334 288H322Q288 288 237 276L222 273L206 286L262 367Q279 369 303 377T358 403T410 452T431 524Q431 531 431 533T427 545T416 558T392 566T351 571'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Bold/PUA.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js new file mode 100644 index 0000000..566b6ad --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js @@ -0,0 +1,272 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Regular/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur'], + { + // SPACE + 0x20: [0,0,250,0,0,''], + + // EXCLAMATION MARK + 0x21: [689,12,296,91,204,'102 582T102 620T112 673T152 689Q190 689 190 638Q190 605 167 373L148 187L133 184Q102 582 102 620ZM91 24T91 48T107 88T148 104Q171 104 187 87T204 48Q204 22 188 5T149 -12Q124 -12 108 6'], + + // QUOTATION MARK + 0x22: [695,-432,215,8,196,'33 436Q8 603 8 648Q8 663 9 671T19 687T43 695Q63 695 74 681Q76 678 76 650V623L66 532Q57 443 55 436V432H33V436ZM128 666Q128 691 162 691T196 668Q196 634 186 531Q176 441 176 432H166Q155 432 155 434L142 545Q135 603 130 647Q128 664 128 666'], + + // AMPERSAND + 0x26: [698,11,738,49,733,'181 520Q181 604 231 650T328 697L330 698Q333 698 335 698Q336 698 340 698T346 697Q390 697 418 670T446 604Q446 554 414 511Q384 467 300 417L283 406Q281 405 296 374T347 286T425 182Q466 135 469 135Q470 135 473 140T480 152T486 165Q509 210 509 263Q509 282 507 292Q498 317 488 332T465 352T443 359T418 361Q388 361 357 358L346 356L347 374Q347 394 348 396V399H355Q366 396 535 396Q663 396 689 398L703 399Q703 398 702 375T700 351L688 353Q655 356 601 357Q553 357 553 355Q562 332 562 294Q562 280 561 267T555 241T548 218T539 195T529 175T518 156T508 141T497 126L489 115L496 107Q549 54 596 54Q623 54 644 67T677 101T697 140T708 174L710 187Q710 188 710 188L711 190Q714 190 723 187T733 183Q733 179 732 172T726 145T714 107T694 66T665 27T623 0T569 -11Q500 -11 443 41L434 49L425 42Q348 -9 275 -9Q251 -9 233 -6Q187 -1 152 18T98 60T67 111T52 159T49 195Q49 231 60 261T96 315T141 354T197 390L208 397Q181 459 181 520ZM374 577Q374 607 356 629T311 651Q289 651 271 636Q242 614 242 559Q242 533 249 502T262 453T270 435T279 440T298 453T314 464Q374 503 374 577ZM127 217Q127 145 173 89T291 32Q318 32 347 42T393 63T409 75Q384 100 325 184T227 351Q223 366 220 366Q215 366 178 338Q127 298 127 217'], + + // APOSTROPHE + 0x27: [695,-436,212,69,134,'69 666Q69 680 79 687T104 695Q112 695 117 694T128 684T134 659L104 438Q104 436 96 436T88 438Q88 447 79 540T69 655V666'], + + // LEFT PARENTHESIS + 0x28: [737,186,389,114,293,'293 737V719Q291 718 285 714T276 708T268 702T258 695T250 686T241 674Q164 570 164 282Q164 -37 230 -119Q273 -171 292 -171Q293 -171 293 -179V-186H289Q270 -180 259 -175Q175 -132 145 -23T114 275Q114 491 157 598T293 737'], + + // RIGHT PARENTHESIS + 0x29: [735,187,389,89,276,'223 259Q223 386 212 474T178 609T136 677T89 714V735Q121 726 139 713Q276 622 276 273Q276 98 246 -23Q225 -106 189 -139T89 -187V-170L101 -165Q148 -146 172 -110T210 13T223 259'], + + // ASTERISK + 0x2A: [692,-449,278,34,234,'118 573Q118 575 76 602L34 629L50 647L55 652L66 642Q76 633 91 620T117 598L128 590Q128 663 125 687V692H151V689V687Q151 685 151 683T150 678T150 672Q145 628 144 605V592L219 652L232 634Q232 632 220 624Q195 610 155 582L146 575L158 567Q178 552 197 540T225 523T233 516Q233 515 226 506T217 495L152 549L143 555V530Q144 509 145 492T148 466T149 454Q149 449 142 449H125V462Q128 522 128 549V562L115 552Q88 531 59 506L45 495Q44 495 39 505T34 516L118 573'], + + // PLUS SIGN + 0x2B: [598,82,756,47,709,'357 584L399 598V282H709L702 263L696 243H399V-64L379 -73L358 -82Q357 -82 357 81V243H47L51 253Q52 256 54 263T58 272L62 282H357V584'], + + // COMMA + 0x2C: [107,191,278,99,213,'99 62Q99 82 114 94T144 107Q159 107 178 77T205 26Q213 5 213 -23Q213 -49 207 -65T181 -113Q128 -189 122 -191Q121 -191 116 -184T111 -174Q111 -173 122 -155T145 -111T156 -62Q156 -44 152 -34T127 4L104 37Q99 49 99 62'], + + // HYPHEN-MINUS + 0x2D: [275,-236,756,46,706,'46 236L62 274Q62 275 384 275H706L699 255L693 236H46'], + + // FULL STOP + 0x2E: [102,15,278,87,200,'87 43Q87 69 104 85T142 102Q164 102 182 86T200 44Q200 20 183 3T141 -15Q118 -15 103 2T87 43'], + + // SOLIDUS + 0x2F: [721,182,502,34,466,'230 270Q426 721 428 721Q437 719 447 717L466 713L448 672Q78 -180 77 -181Q77 -182 55 -182L34 -181L230 270'], + + // DIGIT ZERO + 0x30: [492,13,502,42,456,'212 -13Q184 -13 156 -2T101 32T59 97T42 195Q42 311 132 396Q170 433 211 462T262 492Q272 492 301 477T366 434T429 360T456 258Q456 161 378 74T212 -13ZM381 209Q381 257 365 295T328 355T282 390T243 408T223 413Q220 413 204 403T167 376T137 341Q119 305 119 250Q119 168 159 114T263 59Q308 59 344 93T381 209'], + + // DIGIT ONE + 0x31: [468,2,502,47,460,'123 459Q145 459 170 460T217 462T256 464T284 466L295 467Q296 467 296 467T297 468Q299 468 302 466T307 462L309 459Q307 454 304 424T299 341T297 235Q297 139 298 101T302 55T313 44Q316 43 367 43L460 46Q460 35 459 22V-1H450Q402 2 281 6Q222 6 171 4T91 1T56 -1L47 -2V43H121H170Q195 43 201 45T209 56Q212 69 212 214Q212 333 209 365T194 409Q183 417 161 423T121 430L104 432Q103 432 103 446V459H123'], + + // DIGIT TWO + 0x32: [474,-1,502,60,484,'104 384Q115 394 133 409T199 449T281 474Q321 474 351 447T385 378Q385 328 333 255T228 127T176 72Q176 67 183 65Q184 65 203 65T260 67T331 69L475 73L484 67Q484 64 472 33L460 1H60V17L107 61Q210 159 249 208Q309 283 309 331Q309 363 285 389T228 415Q212 415 184 403T134 379L114 367L104 384'], + + // DIGIT THREE + 0x33: [473,182,502,39,429,'305 328Q305 372 279 396T214 421H211Q172 421 128 384L107 398L116 405Q151 437 191 455T251 473H260Q314 473 341 455T382 394Q384 386 384 367T382 338Q362 263 271 217L256 210L257 206L259 202Q260 202 272 201T296 198T324 192T355 179T384 157T410 123T427 75Q429 64 429 41Q429 -59 353 -120T183 -182L88 -164Q81 -162 69 -157T48 -147T39 -141Q39 -139 46 -127L53 -114L69 -122Q129 -149 171 -149Q218 -149 253 -131T305 -83T330 -26T338 29Q338 41 336 55T328 89T308 127T273 153Q228 171 162 171Q158 171 152 171T142 170H127V204H134Q232 214 275 257Q305 292 305 328'], + + // DIGIT FOUR + 0x34: [476,191,502,10,481,'299 -179Q306 -156 306 -48V0H11V7Q10 10 10 18Q10 23 154 236L298 449Q298 450 339 463L379 476Q385 473 384 470V466Q384 463 384 457T384 444T383 427T383 408Q381 328 381 248Q381 46 384 40H387Q422 40 460 44Q465 44 470 44T478 44L481 45Q481 43 478 24T473 1Q473 -1 464 -1Q462 -1 451 -1T430 0H387V-76L389 -156V-161L311 -191Q299 -181 299 -179ZM299 364H287L277 352Q234 297 186 224T112 104T79 43Q79 42 192 42H306V115Q306 300 299 359V364'], + + // DIGIT FIVE + 0x35: [458,185,502,47,441,'334 25Q334 99 296 134T207 169Q154 169 107 123L98 114L89 120L80 125V458H420Q420 456 409 418L397 379Q397 378 264 378H131Q130 377 128 376T125 374T124 371T122 368T122 363T121 356T121 345V279V190L130 186L140 190Q196 214 260 214Q311 214 348 197T404 153T431 99T440 42T433 -16T406 -76T356 -130T276 -169T163 -184H156Q110 -184 57 -163L47 -159L53 -147L58 -134Q61 -134 74 -139T110 -148T156 -153Q206 -153 243 -135T299 -87T326 -30T334 25'], + + // DIGIT SIX + 0x36: [700,13,502,45,471,'45 240Q45 328 73 406T143 536T235 626T327 681T399 699Q400 699 404 699T411 700Q424 700 441 696T459 689Q459 671 451 637Q451 633 447 632L444 629L434 633Q413 640 384 640H377Q299 640 222 565Q182 531 156 463T129 315V306H136L149 315Q229 376 316 376H318Q393 376 432 326T471 213Q471 129 402 58T237 -13T93 59T45 240ZM391 172Q391 231 354 272T258 314Q230 314 200 302T154 279T133 262L134 249Q154 32 266 32Q315 32 353 64T391 172'], + + // DIGIT SEVEN + 0x37: [468,181,502,37,498,'395 377L391 382H225Q59 382 59 383L74 423Q89 464 89 465Q90 468 94 468Q146 460 350 458H498V442L473 406Q241 75 125 -156L113 -181H40L37 -168L57 -140Q115 -58 199 70T339 287T395 377'], + + // DIGIT EIGHT + 0x38: [705,10,502,40,461,'220 -10Q168 -10 131 6T75 50T48 103T40 157Q40 223 77 266Q103 295 156 328T225 375Q247 393 247 394L206 361Q205 361 193 368T164 391T131 426T102 474T90 531Q90 580 114 615Q146 660 238 698L254 705L262 704Q288 704 332 693T402 656Q434 620 434 568Q434 518 401 475T321 402L305 391L336 368Q339 366 353 356T372 343T389 330T406 316T420 301T434 283T445 265T454 244T458 222T461 195Q461 106 389 48T220 -10ZM350 545Q350 578 337 601T304 634T266 649T234 653L224 654L204 639Q196 634 191 629T182 621T176 614T173 609T170 603T168 597Q165 585 165 567Q165 497 261 424L273 415Q350 467 350 545ZM261 405L263 407Q262 407 261 405ZM258 403Q257 403 255 401L254 399L256 400Q258 402 258 403ZM252 398Q251 398 249 396L248 394L250 395Q252 397 252 398ZM245 36Q276 36 300 45T338 69T360 102T371 136T374 168Q374 211 341 255Q324 275 305 289T235 332Q231 330 215 321T193 307T173 292T153 271T138 247T127 216T123 177Q123 146 132 117T170 62T245 36'], + + // DIGIT NINE + 0x39: [469,182,502,28,466,'353 93T352 93T320 79T251 49T201 34Q127 37 87 79Q28 138 28 234Q28 273 37 304T60 355T101 396T152 429T218 462L234 469H243Q348 461 395 417Q466 348 466 201Q466 72 397 -29T211 -163Q155 -179 91 -182H72V-154H80Q144 -154 202 -131T297 -60Q318 -31 333 7T352 68L357 92Q353 93 352 93ZM369 208Q369 240 362 272T339 339T290 394T214 415Q171 415 144 372T116 266Q116 193 154 144T238 95H249Q369 95 369 208'], + + // COLON + 0x3A: [457,12,216,50,168,'50 377T50 400T64 440T99 457Q128 457 146 440T165 399Q165 375 146 359T102 342T64 359ZM53 19T53 43T66 86T103 105Q129 105 148 87T168 41Q168 17 147 3T102 -12Q80 -12 67 3'], + + // SEMICOLON + 0x3B: [458,189,216,47,179,'47 399Q47 424 62 441T101 458T143 442T162 400T144 359T101 343Q78 343 63 360T47 399ZM76 86Q76 88 80 91T91 96T106 99Q119 99 131 86Q179 35 179 -25Q179 -64 146 -115T89 -189Q86 -187 83 -185T79 -182T76 -180T75 -177T77 -173T80 -168Q121 -108 121 -64Q121 -44 94 -5T66 52Q66 66 71 75T76 86'], + + // EQUALS SIGN + 0x3D: [368,-132,756,54,725,'725 366Q724 365 721 349T716 331V329H385Q54 329 54 331Q55 332 59 349T63 368H394Q725 368 725 366ZM725 169Q724 168 721 152T716 134V132H385Q54 132 54 134Q55 135 59 152T63 171H394Q725 171 725 169'], + + // QUESTION MARK + 0x3F: [693,11,362,46,357,'46 557Q46 613 103 653T227 693Q287 693 322 659T357 564Q357 517 326 469T259 390T191 326T160 272Q160 240 187 221Q193 217 193 216Q182 209 170 200L147 184Q127 192 113 209T98 250Q98 290 193 376Q287 454 287 542Q287 581 262 616T188 652Q143 652 126 631T108 588Q108 559 140 527L79 490Q46 515 46 557ZM108 47Q108 68 123 85T160 103Q179 103 198 90T217 46Q215 24 201 7T164 -11Q142 -11 125 6T108 47'], + + // LATIN CAPITAL LETTER A + 0x41: [696,26,718,22,707,'22 505Q22 563 94 624T271 685H280Q416 685 443 560Q447 535 447 504Q444 414 405 330L399 319L229 155Q233 154 241 153T253 150T265 145T281 135T301 119T328 93L357 64L402 92Q438 116 473 137L500 154V339Q500 528 495 593V601L559 649Q621 696 624 696L638 686L629 677Q599 650 593 638Q582 614 581 504Q580 490 580 443Q580 314 584 238Q584 235 584 224T584 210T585 199T586 187T588 176T591 164T595 152T601 137T609 121Q630 77 640 77Q661 77 703 101Q704 95 706 90L707 86V84L636 29Q618 15 601 2T574 -19T564 -25L500 121Q499 121 399 48L299 -26Q298 -26 291 -15T272 11T245 42T209 69T165 80Q120 80 58 43L48 37L40 42L32 48L122 117Q196 173 241 211Q319 280 343 327T368 447Q368 535 317 582Q264 633 199 633Q155 633 122 605T86 542Q86 518 133 467T181 387Q181 348 140 309Q113 281 73 260L64 255L50 265L59 273Q112 307 112 345Q112 363 90 387T45 441T22 505'], + + // LATIN CAPITAL LETTER B + 0x42: [691,27,884,48,820,'48 506Q48 568 120 629T268 691Q362 691 425 594L431 585L441 594Q478 628 528 657T629 686Q665 686 687 670Q703 658 718 584T753 506Q756 505 763 505Q778 505 804 512L815 516L820 496Q820 494 808 490T774 476T732 454Q720 445 708 437L675 415L640 394L625 383Q626 382 635 382Q652 382 670 379T712 364T754 336T784 289T797 220Q797 172 776 122Q769 106 766 102T745 84Q654 11 619 -8T538 -27Q483 -27 387 10T249 47Q218 47 186 34T133 8T112 -5T104 7T97 21L196 82Q259 120 284 140Q333 181 351 214Q368 251 368 353Q368 588 228 620Q222 621 205 621Q160 621 139 596Q117 569 117 548Q117 526 162 470T208 387Q208 352 179 320T104 264Q88 256 86 256Q83 256 70 266L82 274Q134 309 134 343Q134 352 130 359Q118 377 100 401T72 439T56 470T48 506ZM453 528Q457 496 457 419L458 357L488 367Q554 390 622 425Q673 449 673 453L671 454Q669 456 665 460T657 473T648 498T639 541Q629 597 616 613Q599 633 567 633Q534 633 493 599Q471 577 457 540L453 528ZM713 176Q713 252 661 295T528 339Q512 339 494 336T466 330T455 325Q454 325 452 311T444 270T425 217L420 207L304 118L319 116Q381 111 475 74T602 37Q655 37 684 79T713 176'], + + // LATIN CAPITAL LETTER C + 0x43: [685,24,613,59,607,'299 585Q333 609 384 634T470 672L505 685Q506 685 513 662T531 613T548 580Q553 576 563 576Q575 576 605 585Q607 585 607 575V564Q537 532 496 527Q475 542 456 567T427 610T415 627Q410 627 398 618T382 603Q373 588 373 558T386 475T400 399Q400 337 366 303Q343 281 309 266T254 247T226 242L214 257Q214 258 223 260T251 272T287 299Q304 316 304 360Q304 396 289 451T274 532Q274 553 277 561V564H269Q205 558 172 501T139 358Q139 207 226 127T443 46Q448 46 457 46T470 47L485 48L601 106Q602 106 602 93V80Q551 48 517 25T474 -4T460 -13T443 -19Q409 -24 367 -24Q360 -24 351 -24T335 -23T326 -22Q190 -2 125 87T59 319V328Q62 412 96 487L101 500L118 512Q189 563 245 591L266 601L299 585'], + + // LATIN CAPITAL LETTER D + 0x44: [685,27,832,27,745,'346 611Q300 611 261 604T194 584T144 555T107 519T82 481T65 443T55 410T50 383T48 367L37 372L27 378V393Q33 524 115 603Q160 648 230 666T365 685Q423 685 434 684Q745 653 745 405Q745 281 694 151L687 133L657 103Q524 -27 470 -27Q456 -27 331 18T157 64Q122 64 84 28Q67 9 57 -6L50 -16L43 -8L35 0Q35 3 46 22T83 74T141 133H154Q208 136 253 161T299 230Q299 259 277 290T232 348T209 392Q209 434 254 479T358 556L368 561L382 550Q382 549 381 548T377 545T371 541Q353 527 326 496T298 444Q298 430 343 365T389 277Q389 240 353 202T267 136L252 127Q304 118 400 83T513 47Q548 47 582 79T635 145Q671 208 671 323Q671 390 651 441T599 524T523 576T436 603T346 611'], + + // LATIN CAPITAL LETTER E + 0x45: [685,24,663,86,634,'301 564Q240 564 203 507T165 361Q165 280 190 218T260 119T358 64T474 46Q491 46 499 47L511 48L628 106V80L499 -5Q498 -6 497 -7T494 -10T490 -12T485 -15T478 -17T468 -19T456 -21T439 -22T418 -23T392 -24Q252 -20 169 67T86 315Q86 409 124 491Q128 500 139 508Q211 560 272 591L293 601L325 585L338 594Q374 617 422 639T502 674L532 685Q533 685 540 663T557 614T574 581Q580 575 591 575Q600 575 616 580T634 585V564L623 559Q572 535 532 529L522 527Q491 547 442 627Q442 628 440 627T435 624T428 620Q410 610 405 597T399 559V553Q399 534 409 487Q419 431 427 369L476 400Q526 431 526 432Q531 426 537 420Q565 382 602 359Q611 353 610 352Q609 351 575 332T537 312Q536 312 505 335T463 358Q451 358 439 352T425 337Q394 243 263 223L251 221L243 229L235 236L245 239Q274 247 303 266Q320 277 325 290T330 336Q330 394 315 451T300 531Q300 549 303 561Q303 564 301 564'], + + // LATIN CAPITAL LETTER F + 0x46: [686,153,611,11,612,'198 617Q177 617 159 609T128 587T106 557T91 524T82 494T76 472L75 463Q74 463 67 468T59 474Q59 488 63 510T80 564T114 622T170 667T253 686Q272 686 295 680Q330 672 384 645T468 598Q498 580 524 580Q549 580 595 626L612 643V616L599 599Q522 500 482 500Q466 500 435 514L420 521Q388 516 349 486T309 415Q309 396 323 366T352 315T367 294Q367 293 375 301T398 322T429 352L490 410Q537 355 542 332Q542 330 531 315T510 286L499 273Q479 313 449 313Q437 313 419 303T390 282L378 271L394 250Q444 183 470 129Q484 96 484 71Q484 -19 402 -86T223 -153H220Q175 -153 137 -120Q103 -89 103 -8Q103 12 106 40T109 96Q109 132 103 146T72 161Q46 161 16 143L14 154L11 165Q88 219 143 219Q163 219 177 197T192 127Q192 102 186 65T179 4Q179 -60 210 -88T272 -117Q319 -117 362 -75T405 33Q405 72 363 139T278 271T235 368Q235 385 243 404T264 439T292 472T324 500T353 522T374 538L382 543Q382 544 351 562T274 598T198 617'], + + // LATIN CAPITAL LETTER G + 0x47: [690,26,785,66,710,'373 560Q373 543 378 509T388 448T394 421Q396 421 416 433T474 474T548 537L538 543Q481 570 452 628L487 659Q521 690 522 690L526 684Q529 677 535 667T551 646T575 625T607 608Q617 606 621 606Q644 606 660 622L664 600L497 455Q495 453 527 453H546Q628 453 665 407L666 406Q710 357 710 297Q710 196 631 109L621 98L577 69Q471 -7 452 -15Q413 -26 370 -26Q239 -26 155 59Q66 148 66 319Q66 442 113 505L191 552Q269 600 270 600H271Q273 600 280 596T293 589T299 586Q300 586 357 623Q413 659 415 659L426 649Q373 604 373 560ZM219 228Q305 262 305 329V343Q305 384 294 434T282 519Q282 562 287 567Q287 569 286 569Q222 556 191 520Q144 464 144 362Q144 213 228 128T420 42Q514 42 568 103T622 255V260Q622 320 578 357Q526 400 453 400Q434 400 410 396L399 394L400 378V372Q400 330 388 301T348 254T305 232T252 217Q245 215 242 214L234 213L226 220L219 228'], + + // LATIN CAPITAL LETTER H + 0x48: [666,133,720,1,644,'11 -16L1 0Q7 6 25 27T57 62T91 88T128 101Q159 99 195 66L203 59L211 67Q239 95 239 133Q239 158 210 213T152 330T123 430Q123 477 173 536T269 630T320 666Q376 610 440 606H443Q457 606 466 611T519 647L542 664Q543 664 543 654V643L522 622Q434 537 403 537Q388 537 366 543T329 555T293 570T270 580L261 585L253 574Q206 517 206 475Q206 452 218 416T242 356L255 331Q256 331 270 345T324 391T421 459L437 468H453Q545 463 608 421L618 415L623 392Q644 307 644 233Q644 97 612 9Q604 -10 601 -15T581 -35Q505 -104 467 -124Q446 -133 431 -133Q414 -132 399 -126T376 -115T368 -107Q368 -106 392 -75L415 -43Q432 -67 444 -73T472 -79H474Q479 -79 484 -78T501 -69T521 -50T538 -13T551 46Q558 97 558 180Q558 232 557 245Q553 277 547 300T528 349T488 389T424 404Q344 404 276 295Q272 288 273 285Q300 216 300 168Q300 161 300 156T298 145T297 137T293 129T289 123T283 116T277 107Q212 23 178 -13L166 -26L149 -9Q108 32 81 32Q63 32 21 -7L11 -16'], + + // LATIN CAPITAL LETTER I + 0x49: [686,26,554,30,532,'190 601Q161 601 137 587T97 553T71 512T55 477T48 463Q44 465 39 468L30 473L35 488Q73 594 106 636T199 685Q200 686 211 686Q250 686 326 652T417 617Q435 617 455 626T497 652T522 670Q532 660 532 654Q469 591 390 550L378 543L343 556Q223 601 190 601ZM378 208Q378 249 369 318T360 424Q360 430 360 439T361 451L362 462Q416 526 482 571L495 580L503 577L511 575L499 562Q442 502 442 465Q442 436 452 368T462 246Q462 169 442 128T385 56Q292 -26 195 -26Q150 -26 104 14L96 21L43 -16Q43 -15 43 -14T41 -10T38 0L48 13Q76 50 123 97L150 125Q154 131 159 131Q166 131 171 116T182 81T193 53Q199 43 216 33T261 22Q307 22 344 68Q378 113 378 208'], + + // LATIN CAPITAL LETTER J + 0x4A: [686,139,552,-10,522,'194 601Q175 601 155 590T121 564T95 533T76 506L69 495Q55 503 55 507Q55 509 60 521Q87 586 132 636T222 686Q251 686 289 660T363 607T422 580Q442 580 466 588T506 604L522 612V591L487 574Q371 517 359 517H357Q332 522 280 561T194 601ZM383 39Q383 96 356 203T329 361Q329 364 329 370T330 378L331 388L339 399Q362 429 394 462T446 513T469 531Q470 531 477 527T484 521L474 509Q411 434 411 379Q411 341 434 223T458 82Q458 1 390 -69T239 -139Q191 -139 162 -123T123 -83T108 -30T101 23T88 64T52 80Q27 80 -4 64L-10 80Q-5 85 13 98T63 128T118 144Q149 144 163 129T179 93T182 38T187 -19Q199 -96 278 -96Q294 -96 309 -91T343 -73T372 -31T383 39'], + + // LATIN CAPITAL LETTER K + 0x4B: [680,27,668,17,682,'154 37Q219 41 219 142Q219 203 190 302T160 434Q160 445 172 472T209 534T269 602T354 657T460 680H472Q576 680 618 617V599Q618 578 615 555T608 517T602 501Q596 495 587 495Q586 495 586 499Q586 500 586 505T585 513Q567 628 415 628Q384 628 356 621T302 596T260 546T244 466Q244 416 258 377L261 367L276 382Q294 401 317 422T386 471T468 500Q500 500 518 477T544 422T554 386Q555 382 560 376T576 364T601 357Q612 357 623 361Q623 360 621 351T617 340L541 305L465 272Q469 271 476 270T488 266T502 260L512 255L519 242Q533 211 546 157T564 93Q584 53 617 53Q649 53 682 74V54L675 46Q646 17 612 -5T554 -27Q546 -27 538 -23T517 -9T494 28T478 91Q465 172 448 200T378 228Q337 228 289 207L288 196Q288 160 284 138Q283 125 262 98Q185 1 112 -24L102 -27L91 -25Q47 -13 17 31Q17 33 49 69L80 106Q111 37 154 37ZM421 434Q411 436 405 436Q370 436 336 407T275 337L267 325L271 313Q288 257 288 234Q289 234 395 276T502 319Q501 320 499 323T493 330T485 345T475 371Q473 378 468 388T449 416T421 434'], + + // LATIN CAPITAL LETTER L + 0x4C: [686,26,666,33,644,'251 231Q251 254 206 341T160 468Q160 529 238 605Q313 677 425 685L432 686Q440 686 445 686Q520 686 545 657T571 576Q571 548 568 517T564 480Q564 466 572 460T608 452H623V431L619 430Q618 430 611 428T591 423T566 417L516 404Q497 415 491 419T480 433T475 461Q475 470 477 498T480 546Q480 561 480 569T474 592T459 615T429 631T379 638Q322 638 283 606T239 526Q237 480 280 394Q319 310 320 268V250Q308 235 244 169L203 128H210Q215 128 256 112T357 80T466 64Q526 64 564 88T625 186L629 196Q643 187 644 186Q618 70 604 41Q577 -15 513 -24Q496 -26 476 -26Q418 -26 344 -3T211 45T133 69Q115 69 97 50T65 7T49 -20L45 -16Q41 -11 37 -6T33 0Q33 8 66 69T111 134Q251 156 251 231'], + + // LATIN CAPITAL LETTER M + 0x4D: [692,27,1050,27,1048,'687 578Q690 586 719 612T794 665T877 692Q909 692 926 670T953 614T973 570Q983 561 1000 560Q1023 560 1048 569V553L1034 546Q1003 528 972 504T933 466Q905 403 905 264Q905 205 909 172T920 126T940 91Q951 74 959 74T997 87L1027 100V79L956 27Q940 15 922 2T894 -19L885 -26Q883 -26 854 27L825 80V192Q826 314 830 341Q831 345 833 356Q840 398 844 404Q871 444 920 489L917 491Q914 493 911 495T903 501T898 508Q893 516 877 562T852 616Q840 628 818 628Q751 628 702 541L697 532L700 515Q708 467 708 419Q706 348 690 276T662 169T643 126L634 116Q626 105 611 87T581 51L522 -22L514 -15Q470 21 452 21Q431 21 394 -16L384 5L386 9L426 60Q449 87 460 95T486 104Q487 104 491 104T497 103Q514 99 541 81L559 69Q595 96 606 169T618 350Q618 486 598 543T517 601Q484 601 458 570T432 523Q432 516 434 492T436 443Q436 250 369 133L363 122L280 50Q207 -16 192 -27L182 -18Q136 26 106 26Q83 26 62 9T37 -16L27 0L33 10Q41 22 54 39T94 81T143 106Q178 106 225 62L235 53Q283 82 307 117Q352 190 352 359Q352 408 345 451T320 534T267 597T183 621Q159 621 147 617T120 598Q97 574 96 556Q96 528 143 469T191 377T161 311T102 262T70 245Q69 245 59 252T49 260L56 264Q63 268 73 275T94 291T111 312T118 338Q118 355 95 384T50 446T27 506Q31 567 101 626T255 686Q297 686 330 671T382 632T409 595T421 572V571L430 580Q454 610 496 634T588 659H590Q655 659 683 585L687 578'], + + // LATIN CAPITAL LETTER N + 0x4E: [686,25,832,27,825,'112 334Q112 356 70 410T27 497Q27 553 94 619T229 685Q230 685 236 685T246 686Q303 686 349 654Q373 636 392 607T419 558L426 538L454 576Q474 604 486 618T520 651T569 678T633 686Q668 684 687 673T713 651T730 609Q730 608 732 600T736 588T741 578T747 568T754 561T765 555T779 553Q789 553 817 562Q819 557 819 555V547L790 526Q743 492 730 479T712 447Q697 369 697 281Q697 166 726 108Q741 76 755 68Q759 66 767 66Q789 66 825 93V82Q825 71 822 70Q821 69 763 27T701 -18L692 -25L668 15Q662 25 650 45T635 70L627 85V107Q627 122 626 162T624 285Q624 381 632 398Q638 409 651 425T675 454T696 477T707 489H696Q683 490 679 492T669 507T653 551Q642 588 627 608T584 628Q572 628 560 625T538 616T519 602T502 586T486 568T473 549T463 532T454 517T448 504L445 497Q437 480 437 474Q437 472 439 461T444 421T446 348Q446 205 405 124Q396 105 392 100T368 78Q312 32 278 9T235 -18T214 -22Q191 -22 170 -10T139 12T129 25T160 66T192 105Q193 102 194 98T200 83T213 64T233 49T261 42Q303 42 339 90Q373 134 373 268Q373 397 339 493T235 618Q215 628 191 628Q155 628 126 604T97 548Q97 524 120 493T168 431T192 381Q192 346 164 318T86 260L70 250L54 266L63 272Q112 300 112 334'], + + // LATIN CAPITAL LETTER O + 0x4F: [729,27,827,12,744,'428 596Q412 596 386 595T350 593Q289 593 270 625Q267 632 267 640Q267 656 280 672T312 705T336 729H343Q351 729 351 728Q342 710 342 703Q342 683 382 676T493 662T604 643Q648 627 677 599T720 535T739 466T744 392Q744 317 732 260T696 166T659 116T621 83Q617 80 615 78Q485 -27 377 -27Q320 -25 272 -9T187 21T122 36H116Q65 36 29 -13L27 -15L12 0Q12 1 32 26T76 78T109 109Q145 123 166 150T187 207Q187 244 134 318T80 412Q80 454 112 498T176 566T213 590Q216 590 224 585L234 580L225 573Q216 566 207 557T188 536T172 511T165 484Q165 448 213 368T261 259Q261 241 252 219T228 179T200 146T176 122L167 112Q170 111 174 111Q188 110 233 91T339 55T453 37Q508 37 556 68T626 152Q655 219 655 328Q655 543 532 582Q484 596 428 596'], + + // LATIN CAPITAL LETTER P + 0x50: [692,218,828,28,804,'112 339Q112 354 91 380T49 438T28 497Q28 565 95 628T242 692Q261 692 277 689T307 682T331 670T351 655T367 637T379 619T388 600T395 582T401 565T405 550Q409 554 422 570T453 603T500 641Q573 692 637 692Q656 692 670 686T692 672T705 647T713 618T718 584Q720 568 721 562T728 546T742 534T768 530Q776 531 782 532T791 535T796 536Q799 536 804 521Q801 519 789 513T764 499T738 480Q697 447 680 414Q677 407 677 396Q677 370 713 312T750 210Q750 125 686 57T560 -11Q540 -11 475 13L410 37V31Q410 -9 412 -50T417 -118T420 -150Q419 -150 373 -184T326 -218L305 -208Q305 -207 307 -196T314 -165T322 -116T328 -46T331 43V63L318 66Q270 80 250 80Q233 80 213 70Q183 57 138 -3L128 -16L118 5L125 20Q193 154 282 154Q309 154 331 146V287Q331 444 327 469Q321 522 301 560Q284 590 251 611T184 633Q146 633 119 607T92 550Q92 539 94 534Q100 516 143 460T186 386Q186 366 170 336T119 281Q102 264 70 250L49 260L56 266Q64 271 72 278T90 296T106 317T112 339ZM602 345Q602 357 608 371T622 397T642 421T661 441T678 456L686 462Q663 473 652 486T639 512T634 553Q631 594 624 608T593 631Q587 632 567 632Q539 632 497 600T416 497L410 484V122L467 103Q481 99 502 92T533 82T557 75T578 69T594 66T610 64Q647 64 672 87T697 144Q697 180 650 250T602 345'], + + // LATIN CAPITAL LETTER Q + 0x51: [729,69,827,11,782,'428 596Q412 596 386 595T350 593Q313 593 291 605T268 638Q268 644 269 648T274 658T284 669T301 689T326 718L336 729H343Q351 729 351 728Q342 710 342 703Q342 683 382 676T493 662T604 643Q744 592 744 398Q744 299 708 213T646 104L603 68L614 55Q670 -5 710 -5Q726 -5 744 1T772 14L781 20Q782 20 782 7V-6L771 -13Q673 -69 665 -69L647 -63Q552 -30 514 8H512Q509 8 500 3T471 -9T428 -23Q405 -27 377 -27Q305 -24 228 6T124 36Q69 36 27 -16Q23 -13 19 -8L11 0L27 20Q93 102 109 109Q145 123 166 150T187 207Q187 244 134 318T80 412Q80 454 112 498T176 566T213 590Q216 590 224 585L234 580L225 573Q216 566 207 557T188 536T172 511T165 484Q165 448 213 368T261 259Q261 241 252 219T228 179T200 146T176 122L167 112Q170 111 174 111Q188 110 233 91T339 55T453 37Q508 37 556 68T626 152Q655 219 655 328Q655 543 532 582Q484 596 428 596'], + + // LATIN CAPITAL LETTER R + 0x52: [686,26,828,27,824,'27 496Q31 569 102 627T234 685Q236 685 241 685T251 686Q287 686 318 672T367 638T399 598T418 564L423 550Q424 554 434 567T463 601T505 639T561 671T626 685Q672 685 688 659T710 572Q713 533 721 523T766 513Q781 513 787 514T794 516Q796 512 798 509T801 504T802 501T787 493Q702 461 624 401L607 389Q655 383 688 358L697 352V342Q699 330 699 297Q704 209 710 173T734 103Q751 69 765 69Q769 69 806 83L824 90V74Q823 73 759 24T693 -26Q692 -26 660 32L628 90L629 111Q631 159 631 177Q631 278 614 300Q584 340 523 340Q500 340 467 333T431 325Q429 325 429 322Q428 321 426 308T420 275T410 230T392 178T366 125L358 112L342 99Q306 70 269 38T213 -10T193 -26Q192 -26 163 0T116 26Q82 26 50 -8L42 -16L35 -8L27 0L35 10Q43 21 58 38T104 80T158 106Q179 106 218 65L235 48Q238 48 255 60T295 99T329 158Q352 231 352 359Q352 555 242 614Q210 628 187 628Q140 628 116 600T91 548Q91 522 138 464T185 382V376Q185 345 158 313T103 263L76 246Q74 244 64 253L54 260L65 267Q91 285 100 302Q111 318 111 337Q111 355 69 410T27 496ZM562 628Q504 628 443 507L435 491L436 479Q437 471 437 446Q437 396 432 351L529 389L602 426Q673 462 673 463H672Q644 470 637 483T622 553Q608 628 562 628'], + + // LATIN CAPITAL LETTER S + 0x53: [692,27,829,66,756,'750 276Q750 141 645 57T378 -27Q224 -27 146 67Q66 163 66 307Q66 361 80 412T127 515T217 609T356 676L388 684L420 692L442 681Q545 625 586 608T654 591Q688 591 710 609T737 646L742 665Q742 665 756 654L752 642Q736 594 706 566T621 515L607 510Q580 513 528 542T421 599T335 627Q272 627 214 569Q139 500 139 373Q139 308 159 247T217 136T316 56T455 26Q520 26 566 43T634 90T666 148T676 207Q676 264 649 297T580 338Q574 339 552 339Q516 339 442 325T327 310H324Q303 310 290 312T259 328T232 369Q230 375 230 390Q230 426 259 461Q286 488 338 507Q351 498 351 495L346 492Q342 490 339 488T330 482T320 473T312 462T305 447T303 428Q303 368 366 368Q393 368 487 388T613 409Q656 409 696 385T748 306Q750 294 750 276'], + + // LATIN CAPITAL LETTER T + 0x54: [701,27,669,34,676,'289 686Q338 686 439 668T565 649Q606 649 641 672Q656 683 664 690T674 700L675 701Q676 698 676 692V681L641 636Q608 591 602 588Q577 575 528 575Q490 575 438 583L426 585L416 578Q335 520 335 465Q335 437 393 366T452 259Q452 226 406 171Q387 146 351 115L341 106L358 97Q438 58 475 58Q525 58 598 124L608 133Q617 119 617 118Q617 114 606 103Q513 0 448 -27L438 -25Q401 -19 337 14T234 48Q186 48 122 -3L112 -11L106 -3L101 5L110 15Q160 63 209 105L224 117H310Q384 163 384 210Q384 238 329 303T263 398Q262 400 262 404Q262 427 290 476T368 580Q383 596 381 596Q315 622 228 622Q159 622 118 593T76 516Q76 482 96 461T139 431L107 399L75 367Q34 403 34 472Q34 525 64 572T148 652Q207 686 289 686'], + + // LATIN CAPITAL LETTER U + 0x55: [697,27,646,-25,665,'160 247Q160 291 110 382T59 505Q59 542 106 597T207 690L218 697L229 682Q229 680 216 669T187 644T158 604T144 552Q144 526 165 482T207 387T228 291Q228 277 228 267T224 247T219 232T210 217T199 202T184 184T166 163L118 107Q124 105 132 105T160 98T220 77Q298 47 317 47Q354 47 409 105Q444 142 451 161T458 244V277Q458 339 455 457T447 596L575 686L591 676L583 668Q550 632 541 587T532 449V372V298Q532 198 550 147Q572 79 605 79Q617 79 631 84T656 95L665 100V79L595 27Q578 15 560 2T532 -19L523 -26Q522 -26 490 42L458 111L397 50Q389 42 374 27T355 8T340 -5T325 -16T311 -22T294 -26T274 -27Q232 -25 152 6T35 37Q28 36 19 30T4 18T-8 4T-16 -5Q-25 10 -25 11T-20 18Q-5 34 15 57L54 101Q70 103 86 116Q94 121 113 140T137 166Q160 201 160 247'], + + // LATIN CAPITAL LETTER V + 0x56: [687,26,831,26,825,'54 266Q118 307 118 339Q118 360 74 413T27 493Q26 530 59 578T133 651Q187 686 256 686Q299 686 332 673T382 640T409 600T424 567T429 553Q431 553 463 586T542 653T624 686Q663 686 715 652T798 617Q812 617 825 622V606L815 599Q785 576 762 546Q724 495 724 432Q724 397 737 317T750 217Q750 148 711 96Q697 75 639 34T578 -10Q563 -21 555 -23T522 -26Q458 -26 363 29Q253 89 211 89Q192 89 173 83T139 67T114 49T96 34L90 27L80 43L95 59Q121 87 148 110T191 143T213 154Q261 154 300 195Q328 222 340 267T352 406Q352 562 255 611Q222 627 187 627H182Q143 627 115 598Q96 579 96 559Q96 528 144 470T192 381Q192 348 156 314T80 256L70 250L54 266ZM727 548Q701 550 650 583T567 617Q560 617 554 615Q532 610 501 580T445 501L437 485V465Q432 326 378 223L294 150Q321 143 421 87T560 31Q608 31 634 64Q660 102 660 198Q660 226 655 292T650 387Q650 418 658 452L660 462L735 548H727ZM264 150Q265 151 263 151H261Q261 150 264 150ZM280 150H276V149Q280 149 280 150'], + + // LATIN CAPITAL LETTER W + 0x57: [686,27,1046,32,1054,'32 501Q35 564 103 625T264 686Q326 686 365 652Q402 618 420 564L441 585Q486 630 539 670L559 686L572 672Q637 606 665 559L682 576Q787 686 845 686Q877 686 929 656T992 623Q999 621 1016 621Q1041 621 1054 628L1051 617L1047 606Q1042 602 1037 597Q983 557 969 522T954 434Q954 394 961 336T968 221Q968 201 966 184T963 155T956 131T948 113T936 96T923 82T906 66T887 50L816 -2Q815 -3 810 -6T801 -11T791 -16T777 -20T759 -23T735 -25Q691 -25 619 4T505 37H496L463 21Q420 0 389 -20L378 -27H362Q316 -27 275 -9T202 28T150 46H146Q114 46 59 -5L48 -16L41 -6Q40 -4 38 -2T34 2L33 4Q33 8 77 54Q111 87 142 112L154 122H166Q239 127 288 182Q346 244 346 406Q346 489 326 537T259 610Q227 628 195 628Q155 628 128 606T101 549Q101 517 146 465T192 382Q192 348 156 310T85 254L75 250L64 258L55 266Q56 267 74 276T105 301T118 339Q118 362 75 413T32 501ZM952 547Q927 555 877 586T796 617Q744 617 682 525L676 516L677 498Q678 486 678 425Q678 301 652 206Q649 195 613 151T577 102Q577 100 582 100Q618 100 720 51Q761 32 790 32H794Q843 32 869 83Q884 110 884 189Q884 233 879 294T873 400Q874 433 879 451T889 478T915 507T952 547ZM241 105Q249 98 263 88T317 60T393 42Q478 42 547 109Q607 171 607 358Q607 371 607 380T604 417T595 467T577 517T546 566T500 601L479 580Q449 550 433 526L426 516V503Q426 311 357 200L352 191L296 149Q241 107 241 105'], + + // LATIN CAPITAL LETTER X + 0x58: [688,27,719,28,709,'96 511L78 527L149 603Q207 666 227 686L237 685Q278 680 306 667T351 631T376 588T395 533L400 516L406 527Q439 600 523 653Q538 664 587 688Q589 688 596 672T613 635T629 606Q643 588 665 588Q677 588 693 596L709 603V585L607 526Q583 536 554 564T512 614Q461 571 435 507T405 381V367H581L563 347Q561 344 558 341T553 335T549 330T546 326L545 325H541Q537 325 488 329T411 334H405V325Q405 198 454 123Q497 54 568 54Q594 54 619 64T660 84L676 95V74L565 -16L553 -20Q528 -27 512 -27Q492 -27 475 -21T444 -5T418 19T398 47T382 77T371 105T363 128T358 145L357 151Q354 151 339 136T294 91T232 37Q152 -22 113 -22Q90 -22 69 -9T38 17T28 32Q28 33 58 68L86 101Q94 81 115 64T165 47Q206 47 249 84Q302 128 325 222Q334 263 336 312V334H312Q198 334 163 324H161Q162 326 182 348L198 367H336V398Q333 508 308 550Q295 570 274 585T227 601Q204 601 181 589T145 565T115 533T96 511'], + + // LATIN CAPITAL LETTER Y + 0x59: [686,218,833,27,740,'123 345Q123 358 75 415T27 496Q27 533 63 578T121 639Q181 685 256 685Q305 685 332 676T384 635Q419 588 425 542Q468 585 526 628T618 686Q632 667 658 645T704 609T724 594Q740 512 740 385V375V361Q740 128 682 -3Q656 -64 554 -141T361 -218Q319 -218 287 -203T243 -173T230 -150Q230 -148 267 -109L304 -69Q311 -115 341 -142T411 -170Q474 -170 534 -119T624 11Q660 111 660 312Q660 447 633 528L612 549Q578 583 552 596L543 601L528 592Q501 574 483 558Q454 528 436 494L431 484V473Q431 330 376 230Q366 213 359 206T306 159L250 112Q278 105 327 82T399 58Q421 58 440 69T471 92T484 104H485L493 90L480 73Q453 39 429 13Q393 -22 372 -22Q342 -22 260 15T153 53Q97 53 48 -16L38 5Q46 22 74 54T128 108L143 122H155Q226 127 275 168Q352 236 352 399Q352 501 309 564T197 628Q156 628 129 607T102 553Q102 517 147 463T192 383Q192 323 75 250L59 266Q123 314 123 345'], + + // LATIN CAPITAL LETTER Z + 0x5A: [729,139,602,11,532,'148 590Q95 592 91 627V633L160 729H176Q169 713 169 705Q169 670 244 670Q269 670 305 672T357 675Q405 675 432 661T468 609Q469 605 469 596Q469 572 460 540Q433 463 301 372Q325 378 359 378Q431 378 472 350T519 297Q532 249 532 198Q532 115 500 40T442 -57Q335 -139 202 -139Q165 -139 125 -131L112 -129V-100Q112 -49 106 -33T75 -17Q55 -17 31 -35L22 -42L11 -26L22 -18Q94 36 151 36H160Q171 36 178 33T188 27T194 13T196 -5T197 -32Q198 -79 206 -90Q217 -107 251 -107Q336 -107 389 -33T442 155Q442 240 407 274Q362 319 285 319Q236 319 192 298Q188 298 181 309L224 372Q227 373 234 374T246 376T257 379T271 384T285 391T302 402T321 417Q384 471 384 540Q384 562 366 581T306 600Q292 600 233 595T148 590'], + + // LEFT SQUARE BRACKET + 0x5B: [740,130,278,117,278,'262 -119Q224 -120 191 -123T141 -128T118 -130Q117 -130 117 305V740H122Q141 737 219 736H278V723Q278 711 277 711L159 699V-93H162Q167 -93 220 -96T276 -100Q278 -100 278 -109V-119H262'], + + // RIGHT SQUARE BRACKET + 0x5D: [739,131,278,-4,160,'64 733Q89 733 110 734T143 737T158 738H160V-131H154Q101 -125 40 -124H-4V-103H1Q3 -102 57 -98T113 -92H118V700L64 703Q7 707 3 708H-4V732H21Q34 733 64 733'], + + // CIRCUMFLEX ACCENT + 0x5E: [734,-452,500,0,495,'0 464L250 734L262 722Q274 712 384 598L495 486Q483 478 467 467L456 459L248 672L154 580L23 452Q17 454 10 458T0 464'], + + // LATIN SMALL LETTER A + 0x61: [470,35,500,66,497,'86 363Q86 365 128 391T212 444L255 470Q256 470 263 465T283 453T308 442Q338 431 346 431Q350 431 358 436L414 465L421 459L418 434Q404 339 404 262Q404 147 408 119L425 97Q443 74 444 74L467 86L491 97Q492 97 497 83L436 28Q377 -26 374 -26L331 46L329 91L155 -35Q152 -35 114 10T68 65L67 86Q66 100 66 156Q66 177 66 198T68 236T71 268T74 296T77 320T80 338T83 351T86 360V363ZM314 365Q285 367 255 374T206 386L187 392Q181 392 172 376T154 311T145 197Q145 124 151 118Q156 110 187 78L208 56H214Q221 57 253 76L308 109L329 123V136Q328 143 328 257V365H314'], + + // LATIN SMALL LETTER B + 0x62: [685,31,513,87,442,'177 427Q177 364 181 364Q184 364 192 370T223 395T271 433Q317 469 323 469Q325 469 338 462T377 440T432 413L440 409L441 396Q441 394 441 372T442 334Q442 203 425 108L423 97L400 83Q347 49 296 21T222 -19T196 -31Q192 -29 149 12T87 71L89 89Q100 155 100 319Q100 500 94 627Q94 632 94 638T94 648T94 656T93 662V664Q93 668 97 669T106 670H110Q114 653 118 633L127 596Q127 595 132 597Q136 599 195 642L255 685L272 673Q269 670 256 659T233 637T211 609T190 565T179 508Q177 494 177 427ZM295 377L274 385Q273 385 264 381T242 370T223 361Q213 355 188 340L178 333V123L198 103Q259 42 285 42Q299 42 314 55T339 85Q363 132 363 232Q363 310 358 343V349L345 355Q330 363 295 377'], + + // LATIN SMALL LETTER C + 0x63: [466,29,389,72,358,'72 208Q72 323 84 361Q84 363 167 414Q248 466 250 466Q255 465 260 465Q283 460 307 450T344 430L357 422L306 343L301 342L296 340Q267 362 247 372T216 384T177 390Q154 349 154 238Q154 220 156 158V145L168 132Q179 121 208 93T244 59Q245 58 246 58Q255 58 302 83T350 108L352 104Q355 100 356 96L358 92Q358 91 274 32T187 -29L177 -20Q160 -6 120 36T77 84Q77 87 75 118T72 208'], + + // LATIN SMALL LETTER D + 0x64: [609,33,499,13,428,'13 542Q13 544 77 576T147 609Q154 609 185 598T283 551T414 464L427 454V440Q427 436 427 412T428 372Q428 315 426 270T418 197T409 152T400 121T394 103L304 35Q285 21 261 2T225 -25L214 -33Q149 7 97 59L76 80L75 91V171Q75 221 76 254T79 299T80 313Q80 315 78 321Q78 323 78 326L77 330Q79 336 132 384T211 447L219 445Q221 445 224 444L228 443Q229 443 228 441T221 432T206 415L191 395Q175 378 162 339Q152 306 152 250Q152 217 159 140V134L171 121Q194 99 235 74T284 48Q296 48 310 75T337 156T349 267Q349 346 336 400L315 420Q246 489 176 525Q127 545 94 545H73L27 527L13 542'], + + // LATIN SMALL LETTER E + 0x65: [467,30,401,70,364,'353 103Q353 97 358 87L337 71Q293 38 247 6Q191 -30 189 -30Q188 -30 173 -16T130 26T76 85L74 99Q70 139 70 190Q70 228 73 271T79 338T84 365L94 372Q105 378 126 392T166 417L246 467Q283 417 349 369L364 358L355 349Q249 249 169 180L151 166L152 152V139L165 126Q186 105 215 84T260 62Q267 62 309 82L353 103ZM267 323Q246 337 230 350T204 371T189 385T179 394T174 397Q149 381 149 219V211Q151 211 171 223T220 258T268 299L282 313L267 323'], + + // LATIN SMALL LETTER F + 0x66: [681,221,326,30,323,'128 387Q128 391 112 456T92 546V555L101 568Q133 617 183 670L193 681L204 673Q238 648 262 648Q276 648 292 656L302 661L308 653Q308 652 278 618L249 585H234Q194 587 159 595Q158 595 156 596H153L150 597Q151 593 152 581T154 564T157 547T164 524T176 494Q199 436 203 400V392H207L323 386Q323 384 309 368L296 351H203V176Q201 -9 198 -32Q194 -61 166 -114Q158 -129 153 -138Q114 -214 110 -221Q105 -221 98 -220L87 -219V-216Q88 -215 106 -150T124 -82Q128 -73 129 155V351H30L64 386H96Q128 386 128 387'], + + // LATIN SMALL LETTER G + 0x67: [470,209,504,17,455,'27 -144L17 -131L82 -75L146 -20L126 6Q99 37 92 48L78 65L77 79Q75 103 75 158Q75 217 78 268T86 343T91 368Q92 370 109 382T157 413T222 452Q240 465 249 469L251 470Q296 443 350 428L365 424L437 465L442 459Q442 456 441 453T437 444T432 424T427 385T423 317T421 215V133L423 119Q423 111 455 -17Q455 -21 380 -108T290 -201Q290 -202 284 -204T269 -207T252 -209Q172 -209 75 -135L62 -126Q60 -126 44 -135L27 -144ZM349 351Q267 359 178 389Q177 387 173 376T166 358T161 337T157 303T155 259Q155 195 159 135L160 124L170 112Q180 101 204 77T230 53Q231 53 286 88L340 123V141Q340 235 348 329Q348 334 348 339T348 348L349 351ZM364 -59Q364 -37 358 -1T347 64T341 93Q336 93 252 28T149 -57Q226 -134 293 -134Q325 -134 344 -118T364 -69V-59'], + + // LATIN SMALL LETTER H + 0x68: [688,205,521,77,434,'88 427Q88 486 87 545T84 634T81 667Q81 673 82 673T89 676H94L117 600L200 661Q208 667 218 674T233 684L238 688L254 678Q222 646 216 637Q164 572 164 483V442V371Q187 390 244 431T312 478Q344 446 411 423L428 417L429 396Q434 297 434 218Q430 8 406 -34Q346 -111 262 -195L251 -205L249 -203Q248 -203 244 -199T236 -193Q226 -183 227 -182Q228 -182 244 -169T278 -140T301 -121Q330 -89 340 -22Q355 60 355 171Q355 200 353 244T348 321T344 354Q333 363 307 376T260 390Q241 390 179 350L164 341V121Q180 96 201 66L213 50Q210 46 172 11T131 -24Q130 -24 123 -11T102 25T77 65V78Q80 104 84 227T88 427'], + + // LATIN SMALL LETTER I + 0x69: [673,20,279,14,267,'72 617Q72 618 102 645T133 673H134Q134 668 175 627L187 615L130 555L116 568Q72 615 72 617ZM27 369Q21 376 14 382L26 392Q83 440 119 474Q158 435 169 427L179 420L176 395Q166 302 166 227Q166 171 174 139Q178 119 186 103T202 81L208 75Q255 100 261 100Q262 100 264 92T267 83Q267 80 208 30T145 -20Q143 -20 118 17L91 55Q98 117 98 193Q98 339 88 369Q71 390 68 390Q63 390 39 376L27 369'], + + // LATIN SMALL LETTER J + 0x6A: [672,208,281,-9,196,'101 644L132 672L145 657Q155 642 169 628L182 614L169 600Q148 579 140 570L125 555L112 568Q109 570 91 592T72 615Q72 617 101 644ZM19 -208Q-9 -185 -9 -183Q57 -134 80 -106Q103 -81 110 -19T118 179Q118 294 113 329T86 383Q78 389 76 389Q73 389 57 379L39 367Q26 380 26 381L33 387Q40 393 53 405T79 428L130 474Q147 457 186 428L195 422L196 376Q196 130 192 58T174 -35Q172 -39 104 -114T19 -208'], + + // LATIN SMALL LETTER K + 0x6B: [689,25,389,24,362,'93 348Q93 379 90 503T87 658V670Q87 671 94 671L100 672L112 636Q124 603 124 600L144 616Q196 659 234 682L246 689Q252 686 256 685T268 680L254 667Q225 641 211 626T184 579T168 505V497L178 504Q203 523 237 544L300 584L310 573Q359 522 359 481Q359 476 359 472T358 464T355 456T351 448T346 440T340 433T332 424T323 414T312 402T299 389L255 343L300 342H346L320 309H177V128L193 113Q214 92 244 68L254 60L303 84Q351 108 352 108L362 96Q355 85 277 30T194 -25L170 -4Q146 18 120 41T89 68Q94 85 94 168Q94 184 94 218T93 268V309H58L24 310L51 342H93V348ZM172 342Q217 342 252 374T287 445Q287 472 255 504Q242 517 241 517Q202 498 187 468T168 365V342H172'], + + // LATIN SMALL LETTER L + 0x6C: [685,20,280,98,277,'221 76L267 99Q268 98 269 96T271 88T270 82L262 76Q255 69 241 57T214 34L148 -20L98 56L99 89Q107 247 107 373Q107 494 101 621Q101 653 99 659V665L106 668L113 672L118 655Q122 642 131 617L138 597Q140 597 157 611L240 670L264 685Q265 685 270 680T276 674T269 667T247 647T219 617Q197 587 186 551T173 493T171 438Q171 376 175 282T179 147V117Q184 109 201 93T221 76'], + + // LATIN SMALL LETTER M + 0x6D: [475,26,767,8,753,'20 367L8 379Q9 380 63 425T118 471Q130 460 143 446L168 421V398L169 376L295 475Q362 433 415 418V399Q415 380 416 380T437 394T484 428T529 462L544 474L556 467Q590 449 614 438T646 424L653 421L665 417L664 412Q664 411 664 407T664 397T663 384Q660 342 660 335Q658 303 658 245Q658 186 660 152L661 126L669 115Q680 96 697 79L707 83Q716 87 723 90T735 96T741 100T746 102L747 103V102L750 95Q753 88 753 87L631 -18Q630 -17 622 -3T589 43L576 60L579 72Q592 146 592 218Q592 265 584 321Q581 345 578 350T560 363Q535 376 496 386L481 390Q475 387 425 358L415 351V238V157Q415 142 415 135T417 120T421 110T430 98T441 81L465 47Q462 44 458 41T443 28T420 8L380 -26L333 47L336 62Q339 77 342 109T345 184Q345 223 341 285T333 348Q322 364 258 382L240 388L169 347L168 240Q168 118 171 110L174 106Q178 101 183 93T195 78L217 48Q217 47 196 30T154 -5T133 -21L130 -16Q127 -10 122 0T111 19Q89 56 89 60Q95 76 95 153Q95 239 88 337V365L62 391L20 367'], + + // LATIN SMALL LETTER N + 0x6E: [475,22,527,20,514,'31 368Q20 379 20 380T72 427L121 470L129 463Q137 455 155 441T176 425V367L320 475L329 469Q351 454 385 437T434 417L432 402Q429 362 429 231V128L439 111Q442 107 445 102T449 95T453 90T456 86T459 84T463 82T467 82Q468 82 489 93T511 105T514 95V88L395 -18L340 65L341 77Q347 111 348 178Q348 343 343 353V358L332 363Q298 377 264 382Q260 382 254 382L249 383Q247 383 211 362L176 341V229V147Q176 134 176 127T177 115T179 106T183 99T189 91T197 81Q201 76 206 69T214 57L217 53Q217 52 175 15T132 -22Q132 -20 114 5T88 41Q84 45 84 50Q94 116 94 203Q94 227 93 263T92 324L90 364L67 388L50 378Q32 368 31 368'], + + // LATIN SMALL LETTER O + 0x6F: [480,28,489,67,412,'67 121Q70 265 84 359V364L97 371Q137 394 177 421T238 464T260 480L278 468Q295 457 327 442T394 418L406 414Q412 388 412 300Q412 263 410 228T405 170T399 130T393 103T391 92L381 86Q274 19 165 -28L161 -24Q157 -21 151 -15T136 -2T118 14T101 30T86 46T74 60L67 68V121ZM335 278Q335 286 335 303T334 335L333 349V356H326Q288 360 208 388L183 397Q178 393 172 383T154 333T142 239Q142 192 151 134Q152 124 155 120T175 99Q197 77 219 64T251 47T267 44T281 52T302 80T320 124Q335 182 335 278'], + + // LATIN SMALL LETTER P + 0x70: [541,212,500,12,430,'23 25Q15 33 12 38L35 59Q82 102 87 105V351L68 378Q42 414 42 422Q42 437 67 472T114 530L125 541Q126 541 132 537T138 532Q121 507 121 488Q121 453 160 413L167 405L166 390L165 372Q169 372 233 421T305 478Q307 479 315 472Q395 421 423 415Q424 415 424 415T425 414L426 410Q426 407 426 401T426 388Q430 335 430 272Q430 139 408 80Q407 78 340 22L273 -33Q200 23 165 23Q164 23 164 -32Q165 -89 168 -155V-170L93 -212L78 -203Q85 -48 87 16V47H79Q53 44 23 25ZM319 41Q346 94 349 212Q349 278 343 343V351L330 357Q318 363 270 381L255 387L245 383Q212 370 178 345L166 336V287Q165 260 165 166V94H175Q219 90 299 51L319 41ZM132 57L129 60Q130 58 132 57ZM158 29Q159 29 155 34T145 45T138 50Q155 29 158 29'], + + // LATIN SMALL LETTER Q + 0x71: [479,219,489,60,419,'399 19Q399 -123 407 -174V-179L332 -219L322 -210L312 -202L314 -185Q320 -83 323 54V95L311 85Q255 40 162 -19Q146 -29 145 -27Q140 -22 103 20L63 65V73Q61 83 61 115Q61 122 61 135T60 154Q60 263 79 353L83 368L94 375Q123 391 147 405T186 429T212 446T229 458T238 466T243 470T247 471L260 464Q274 457 295 448T330 434L341 432L410 479L412 478Q414 476 416 475T419 473L417 461Q399 358 399 19ZM316 367Q287 370 252 377T196 391L176 397H175Q173 397 166 382T149 314T139 187V158Q139 138 141 132T155 114Q158 111 160 109Q210 58 211 58L218 62Q226 67 240 75T266 91L319 124V196Q319 334 325 361V367H316'], + + // LATIN SMALL LETTER R + 0x72: [474,21,389,17,387,'357 398Q364 398 375 403L386 408Q386 404 387 400V393L369 377Q361 370 350 360T336 347T327 340T316 336T303 335Q270 335 234 371L224 379Q220 375 214 370T198 355L182 340V243Q182 164 183 152T189 129Q195 117 211 100T239 72T254 60T298 81Q342 101 343 101Q344 100 345 92T346 82L200 -21Q174 -5 117 55L97 75L99 92Q106 147 106 196Q106 216 104 282T97 355Q95 359 95 361Q95 364 77 378L65 387L48 380Q30 372 29 372Q28 371 23 375T17 380Q17 384 50 415T107 467L115 474L128 461Q171 421 182 414V382L235 425Q247 435 261 446T283 462L290 468L295 460Q335 398 357 398'], + + // LATIN SMALL LETTER S + 0x73: [478,29,443,-18,406,'272 33Q284 33 290 70T296 138Q296 181 290 198T262 230Q257 232 246 232Q231 232 218 227T156 194L108 167L101 176Q90 192 75 219L69 230V284Q69 346 70 357V377L146 427Q181 450 202 464T223 477L225 476Q227 475 229 474Q231 472 242 466T270 450T296 431Q309 418 326 418Q342 418 361 429T392 450T403 459Q406 445 406 442Q406 440 384 421T338 382L316 363Q315 362 310 362Q292 362 251 371T173 396Q156 403 155 403Q143 386 143 342Q143 305 150 278T168 244Q171 242 181 242L190 243L315 300Q330 295 357 274Q358 273 362 270T366 266T369 261T372 253T373 239T374 217T374 185Q374 157 372 133T368 98T363 71T358 50L336 40Q288 20 255 2T211 -22T198 -29L190 -22Q181 -14 168 -3T138 19T104 38T70 46Q50 46 32 37T3 20T-9 11L-18 23L-1 41Q46 89 62 99T112 110Q141 110 157 103T225 62Q268 33 272 33'], + + // LATIN SMALL LETTER T + 0x74: [640,20,333,27,348,'228 640L242 627L227 613Q213 599 211 593T203 553Q197 500 196 435V389H301L272 353H195V274Q195 178 196 159L197 123Q249 71 273 68H280L312 83Q344 99 345 99Q348 99 348 78Q348 76 314 52T246 4L212 -20Q211 -20 164 19T112 62Q112 122 113 196Q113 228 113 262T114 318T114 341V353H27L62 389H116L117 431V558L228 640'], + + // LATIN SMALL LETTER U + 0x75: [474,23,517,9,513,'171 315Q171 252 165 199T153 124L147 103Q147 102 196 80L244 57L335 107V116Q339 161 339 268Q339 315 338 351T337 412V424L420 468Q424 465 427 461L424 435Q412 331 412 226Q412 170 415 145T434 96Q442 84 452 83Q461 83 492 96L506 102Q507 102 510 96T513 88L493 71Q445 32 401 -9Q392 -18 388 -17L384 -16Q358 39 355 44Q336 77 333 77Q261 45 203 -9Q186 -23 181 -23Q177 -23 162 -11T121 18T69 44L57 48L61 54Q65 60 71 73T82 102Q100 156 100 262Q100 305 93 335T80 373T62 396L23 376Q18 377 9 386L119 474Q149 437 171 421V339V315'], + + // LATIN SMALL LETTER V + 0x76: [530,28,512,55,434,'55 418Q55 443 100 503Q121 530 123 530Q125 528 127 528T131 528T134 528T135 524T131 516Q123 499 123 486Q123 457 159 416L169 405L170 388L171 372Q171 371 244 424L317 477L334 466Q394 428 432 416L433 402Q433 400 433 377T434 336V305Q434 195 420 131Q413 94 406 87Q403 84 298 29L192 -28L172 -8Q139 25 106 52L92 64V70Q95 97 95 198Q95 293 94 318L92 355L84 367Q55 406 55 418ZM174 306Q174 297 173 255T171 184Q171 153 175 136T198 100Q207 94 224 80T255 57T282 49Q304 49 328 80Q359 129 359 243Q359 284 352 345Q351 358 348 360Q333 373 304 384T265 396L251 390Q215 372 186 351L175 344V337Q175 319 174 306'], + + // LATIN SMALL LETTER W + 0x77: [532,28,774,45,688,'45 425Q45 439 82 485T126 532Q127 532 128 532T131 531T137 529L132 519Q121 499 121 483Q121 473 131 454T156 419L167 408L169 376L185 388Q237 425 291 473L301 466Q337 443 394 416L419 405L418 387V369Q419 369 487 418T560 471L581 459Q597 450 621 437T664 415T684 406Q688 406 688 323Q688 254 679 193T662 103T648 71Q647 70 554 20L464 -28L443 -15Q416 1 386 17T343 40T331 49Q331 52 333 73T337 133T339 216Q339 309 334 339Q333 341 316 353T277 377T246 389Q235 389 201 369T166 346Q166 345 164 247Q164 232 164 210T163 179Q163 139 170 116T205 57L212 48L136 -27Q115 16 87 44L78 53L80 67Q88 124 88 211Q88 282 87 315T83 356T74 371Q45 410 45 425ZM591 352Q580 359 565 365T540 374T517 381T504 385L418 342L417 318V220Q417 212 417 194T417 170T418 152T420 134T424 120T431 106T440 95T454 83Q508 44 544 44Q566 44 583 77Q603 120 605 235Q605 289 600 322Q598 343 597 345T591 352'], + + // LATIN SMALL LETTER X + 0x78: [472,188,389,10,363,'14 377Q63 428 117 472Q130 462 144 449L193 408V392V376L247 420Q300 464 301 464L310 451Q331 417 363 390L333 365Q303 340 301 340Q293 343 277 364T250 386Q241 386 215 361L195 341Q194 333 193 327T191 318T190 304T188 269Q188 220 192 148Q193 122 195 118T210 101Q255 60 271 60Q276 60 278 61L318 82Q327 86 336 91T351 98L356 101Q359 82 356 79Q354 77 283 27T210 -24L192 -7Q160 23 137 40L126 49L116 40Q66 -13 66 -54Q66 -117 167 -140L179 -142V-147L180 -152L123 -188L112 -185Q58 -170 31 -145Q10 -122 10 -96Q10 -80 22 -53Q44 -10 95 49Q97 51 100 54T104 59T107 64T109 71T111 81T112 97T113 119T114 149T114 188Q114 284 108 347V354L96 365Q76 385 67 385Q62 385 45 377L27 368L14 377'], + + // LATIN SMALL LETTER Y + 0x79: [528,218,499,45,431,'74 58Q89 124 89 241Q89 265 89 278T89 305T88 324T87 336T84 346T81 352T77 359T71 368Q57 388 52 398L45 409Q62 454 98 507L113 528Q128 528 128 524Q128 523 125 518T120 503T117 483V471Q123 456 130 445Q135 438 140 432T148 422T153 415T157 409T160 405T162 402T163 399T163 395V384V365Q165 365 237 419L311 473Q383 430 420 416Q426 414 426 411V404Q426 398 426 388T427 367Q431 233 431 201Q431 -3 391 -52Q387 -58 305 -138T221 -218L218 -217Q216 -216 211 -214T202 -210L184 -202L199 -194Q259 -162 288 -127T334 -19T350 184Q350 257 342 328L340 356Q282 390 262 390Q248 390 178 346L163 336V111L216 45L131 -26L124 -15Q114 3 85 44L74 58'], + + // LATIN SMALL LETTER Z + 0x7A: [471,214,391,-7,314,'47 335L36 347L52 362Q112 421 167 461L181 471L192 465Q236 444 260 417T284 369Q284 355 276 343T233 291Q195 246 195 245T205 242T241 228T300 198L302 187Q314 138 314 74Q314 -24 291 -95Q290 -100 222 -157L154 -214H145Q102 -214 53 -189T-7 -117Q41 -21 183 122L207 147Q205 149 186 157T140 172T100 180H97V192L140 231Q192 280 199 293Q205 303 205 315Q205 339 185 363T137 388Q119 388 63 347L47 335ZM179 -153Q212 -153 226 -113T240 14Q240 67 233 98T223 132T211 143L222 130Q216 125 206 116T170 82T124 33T88 -20T72 -70Q72 -99 105 -126T179 -153'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js new file mode 100644 index 0000000..3d541ee --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js @@ -0,0 +1,34 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur'] = { + directory: 'Fraktur/Regular', + family: 'MathJax_Fraktur', + id: 'MJFRAK', + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xDFFF,"Other"], + [0xE300,0xE310,"PUA"] + ] + + +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js new file mode 100644 index 0000000..a43af2a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Regular/Other.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur'], + { + // LEFT SINGLE QUOTATION MARK + 0x2018: [708,-410,215,45,158,'117 410Q97 410 71 455T45 539Q45 588 129 694L140 708Q142 708 153 694L147 682Q106 609 106 582V577V571Q106 548 132 511T158 455Q158 434 143 422T117 410'], + + // RIGHT SINGLE QUOTATION MARK + 0x2019: [692,-395,215,49,163,'105 529Q105 546 77 588T49 651Q49 658 51 666Q53 672 67 682T92 692Q111 692 137 644T163 563Q163 534 143 497T99 428T74 395Q72 395 65 400T58 407Q105 476 105 523V529'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js new file mode 100644 index 0000000..0d18990 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js @@ -0,0 +1,50 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Fraktur/Regular/PUA.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Fraktur'], + { + // stix-capital Gamma, Greek slashed + 0xE300: [683,32,497,75,431,'427 436Q427 434 427 425T429 398T430 362Q430 222 396 109L393 99L305 33Q218 -32 216 -32Q208 -29 142 22L91 68L78 81L77 94Q75 130 75 173Q75 245 87 347L135 385Q178 418 184 424L177 428Q174 429 170 431Q116 454 96 473T75 534Q79 608 154 683Q164 677 164 673Q164 670 157 662T144 637T137 598Q137 552 182 518T280 470T380 447T427 436ZM342 371L275 394L208 417Q203 417 192 399T168 334T156 229Q153 187 153 157Q153 141 156 135Q158 125 208 88T280 51Q306 51 326 120T346 297Q346 339 344 354T342 371'], + + // stix-MATHEMATICAL BOLD CAPITAL GAMMA SLASHED + 0xE301: [616,30,498,35,432,'39 551L35 569L52 577Q72 586 98 595T140 610T158 616Q174 612 200 604T293 560T412 477Q414 475 417 472Q428 462 430 450T432 376Q432 223 401 124Q395 106 393 103T382 92Q351 68 281 20T206 -29Q201 -31 137 26L100 60L78 83L77 112Q76 132 76 170Q76 259 86 342L88 360L101 371Q116 386 163 422T215 459Q216 459 224 455T233 450L229 446Q225 442 218 434T203 419Q179 394 175 389T168 372Q156 334 156 262Q156 167 164 137Q168 125 196 102T252 62L278 45Q279 45 285 52T302 78T322 126T339 205T346 316Q346 367 344 389L343 406L326 423Q228 520 113 559L100 564L70 557L39 551'], + + // stix-capital Delta, Greek slashed + 0xE302: [680,215,333,29,339,'123 386L120 431Q116 476 116 511V520Q116 593 174 649Q207 680 236 680Q258 680 284 664T312 648Q318 648 327 656Q328 657 330 659Q337 664 337 661Q337 660 338 657Q338 652 339 648L268 566L260 574Q234 600 206 600Q182 600 164 585T145 541Q145 492 211 386L267 385H324L299 354H214V312Q214 86 193 -58L192 -69L116 -215H108Q92 -215 92 -212Q93 -211 100 -189T116 -135T128 -80Q134 -41 134 22Q134 54 130 185T125 349V354H29L59 385H91Q123 385 123 386'], + + // stix-MATHEMATICAL BOLD CAPITAL DELTA SLASHED + 0xE303: [679,224,329,28,318,'91 530Q91 564 116 600T164 656T194 678Q195 678 200 678T209 679Q268 679 316 639L293 593Q267 547 263 546H262Q260 546 256 553Q222 613 180 613Q160 613 146 599T132 564T170 474T210 388H318L296 356H206V322Q204 284 204 255Q202 221 202 161V99Q202 28 194 -22T160 -124Q148 -146 116 -199L101 -224L91 -220Q85 -218 84 -217T83 -215L101 -161Q116 -114 119 -73T122 108Q119 334 117 352V356H72L28 357L66 388H92Q118 388 118 389L109 433Q91 514 91 530'], + + // stix-capital Epsilon, Greek slashed + 0xE304: [471,214,503,52,449,'254 -150Q293 -150 328 -126T363 -54Q363 -38 352 29T339 98L250 34Q160 -30 159 -30L77 64V71Q74 95 74 174Q74 212 75 243T79 294T83 328T87 352T90 366L117 384Q206 446 238 464L250 471Q277 455 306 443T350 427L365 423Q367 423 405 443T443 465L449 455Q431 414 426 362T418 201Q418 135 420 121Q438 -4 438 -19Q438 -26 438 -31T434 -42T429 -51T420 -63T408 -77T391 -95T370 -119T346 -147T325 -170T309 -187T291 -200T274 -207T252 -213T225 -214Q175 -214 132 -196T70 -160L52 -143Q52 -138 90 -48Q90 -47 95 -47H101Q108 -81 146 -115T254 -150ZM341 136Q341 157 344 242T347 348V355L334 356Q299 359 262 367T203 383T179 391Q177 391 173 377T163 323T158 227Q158 164 161 128V121L174 106Q203 75 223 59L341 127V136'], + + // stix-MATHEMATICAL BOLD CAPITAL EPSILON SLASHED + 0xE305: [686,20,333,26,315,'92 446Q92 603 82 664Q94 670 95 670L96 666Q98 661 101 651T108 633Q121 598 121 597L141 612Q247 686 250 686Q251 686 266 679Q261 674 243 659T213 632T190 597T173 546Q172 541 171 530T170 511T170 502Q171 502 222 542L273 582Q308 522 315 504L279 449L269 462Q231 506 215 506Q202 506 190 490Q164 458 164 395V390H279L266 373L254 355H167V306Q169 252 169 217Q170 195 170 147V117L200 92Q234 64 237 64Q243 64 277 81L311 99V75Q310 75 242 27L174 -20L156 -3Q88 60 81 60L79 62Q80 60 82 62Q87 67 87 290V355H57L26 356L73 390H92V446'], + + // stix-capital Zeta, Greek slashed + 0xE306: [577,21,334,29,347,'117 531Q117 533 137 544T178 566L198 577Q200 577 204 575T208 572V570Q208 568 208 566T207 560Q197 496 197 397V392H321L295 353H199V260Q199 157 200 145V122L269 68Q271 67 274 67Q282 67 310 83T342 100Q343 100 345 92T346 83L211 -21L172 12Q117 59 117 63Q117 65 117 87T119 150T120 238V353H75L29 354L65 391H118V460Q117 498 117 531'], + + // stix-MATHEMATICAL BOLD CAPITAL ZETA SLASHED + 0xE307: [475,22,501,10,514,'337 91V78L324 71Q288 53 256 29T206 -8T180 -22Q174 -22 158 -9Q82 46 60 46H59L63 51Q67 56 73 68T85 96Q101 158 101 254Q101 300 95 330T83 370T66 394L53 388Q48 385 41 382T24 374Q22 376 20 378T16 381T13 383T10 385V386L119 475Q150 439 160 430L171 422V409Q173 377 173 300Q173 228 166 183T152 122T145 102Q207 81 242 58L337 104V111Q340 146 340 227Q340 320 339 351T338 408V423L422 469Q425 465 429 462L426 438Q413 354 413 251Q413 152 423 119Q426 110 435 96T452 82Q454 82 509 103Q514 98 514 89Q514 87 507 81T472 51T409 -7L395 -20Q393 -18 390 -17Q386 -14 382 -6Q380 -2 379 1Q369 24 361 40T348 62T341 73T338 84L337 91'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Fraktur/Regular/PUA.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js new file mode 100644 index 0000000..72cdc22 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js @@ -0,0 +1,98 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/Arrows.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // LEFTWARDS ARROW + 0x2190: [518,17,1150,64,1084,'1063 281Q1084 268 1084 251Q1084 231 1063 221L649 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L649 281H1063'], + + // UPWARDS ARROW + 0x2191: [694,193,575,14,561,'33 396Q14 396 14 423Q14 445 18 449T41 459Q72 466 99 478T147 505T185 537T215 571T238 604T254 635T264 661T270 678L272 685Q276 694 288 694Q298 692 300 689T307 672Q331 592 392 535T535 459Q553 454 557 450T561 423Q561 396 542 396Q531 396 501 405T418 443T329 517L319 529L318 179V-171Q307 -193 288 -193Q265 -193 258 -171L257 179V529L247 517Q209 473 158 444T76 405T33 396'], + + // RIGHTWARDS ARROW + 0x2192: [518,17,1150,65,1085,'65 251Q65 270 87 281H500L914 282Q881 304 842 357T785 482Q781 500 781 501Q781 512 792 517Q794 518 812 518H817Q832 518 835 515T844 495Q864 412 923 351T1065 270Q1085 263 1085 251Q1085 240 1077 236T1044 225T995 204Q937 173 898 122T844 6Q840 -10 836 -13T816 -17H811Q786 -16 782 -9Q781 -6 781 -2Q781 1 785 17Q813 138 914 220H500L87 221Q65 228 65 251'], + + // DOWNWARDS ARROW + 0x2193: [694,194,575,14,561,'14 77Q14 104 33 104Q44 104 74 96T156 57T247 -17L257 -29V321Q257 669 259 675Q268 694 289 694Q295 693 300 691T307 686T313 679T318 672V321L319 -29L329 -17Q366 26 417 55T499 94T542 104Q561 104 561 77Q561 56 557 51T535 41Q481 28 438 0T370 -58T330 -119T308 -167T302 -187Q297 -194 288 -194Q278 -194 273 -186T265 -165T251 -127T220 -77Q151 15 41 41Q22 46 18 50T14 77'], + + // LEFT RIGHT ARROW + 0x2194: [518,17,1150,64,1085,'305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L404 281H744L914 282Q880 305 839 362T785 484Q781 500 781 503Q781 517 806 518Q809 518 811 518H817Q832 518 835 515T844 495Q864 412 923 351T1065 270Q1085 263 1085 251Q1085 240 1077 236T1044 225T995 204Q937 173 898 122T844 6Q840 -10 836 -13T816 -17H811Q786 -16 782 -9Q781 -6 781 -2Q781 1 785 17Q813 138 914 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495'], + + // UP DOWN ARROW + 0x2195: [767,267,575,14,561,'33 469Q14 469 14 496Q14 518 18 522T41 532Q121 551 182 608T268 745Q275 767 288 767Q299 767 303 755T320 713T355 650Q424 558 535 532Q553 527 557 523T561 496Q561 469 542 469Q531 469 501 478T418 516T329 590L319 602L318 426V74L319 -102L329 -90Q366 -47 417 -18T499 21T542 31Q561 31 561 4Q561 -17 557 -22T535 -32Q454 -51 393 -108T307 -245Q300 -267 288 -267Q279 -267 274 -259T266 -238T250 -200T220 -150Q151 -58 41 -32Q22 -27 18 -23T14 4Q14 31 33 31Q44 31 74 23T156 -16T247 -90L257 -102V602L247 590Q209 546 158 517T76 478T33 469'], + + // NORTH WEST ARROW + 0x2196: [724,194,1150,63,1084,'429 724Q438 724 452 711T466 690Q466 681 452 671Q361 602 242 599H218L756 135Q832 69 913 -1T1036 -108L1077 -143Q1084 -151 1084 -163Q1084 -180 1074 -187T1054 -194H1052Q1043 -194 939 -105Q866 -42 812 5Q180 549 178 549V546Q179 542 179 539Q183 520 183 483Q183 435 172 390T149 323T130 296Q121 292 115 295Q85 312 85 328Q85 331 95 350T115 406T125 486Q125 540 110 583T79 648T64 675Q64 681 68 687T81 693Q87 693 94 690Q162 657 232 657Q296 657 349 681T420 722Q422 724 429 724'], + + // NORTH EAST ARROW + 0x2197: [724,193,1150,64,1085,'1069 693Q1076 693 1080 687T1085 675Q1085 671 1076 656T1055 621T1034 565T1024 486Q1024 442 1034 406T1054 351T1064 328Q1064 321 1057 313T1042 300L1034 295Q1030 293 1027 293Q1023 293 1020 295T1014 301T1009 308T1005 316T1001 324Q980 368 971 419Q966 442 966 484V492Q966 528 972 553Q971 553 757 368T328 -3T107 -191Q103 -193 94 -193Q78 -193 71 -184T64 -164Q64 -153 72 -143Q79 -136 382 124L934 599H909Q837 599 760 634T683 690Q683 697 696 710T722 724Q726 724 742 714T779 691T838 668T920 657Q959 657 991 666T1043 684T1069 693'], + + // SOUTH EAST ARROW + 0x2198: [694,224,1150,65,1085,'65 663Q65 680 74 687T93 694H96Q104 694 118 683T204 610Q280 545 338 495Q969 -49 971 -49L970 -46Q970 -42 970 -39Q966 -20 966 18Q966 65 977 110T1001 177T1019 204Q1028 208 1034 205Q1064 188 1064 172Q1064 169 1054 150T1034 94T1024 14Q1024 -28 1033 -64T1054 -120T1075 -155T1085 -175Q1085 -181 1081 -187T1068 -193Q1062 -193 1055 -190Q987 -157 919 -157Q817 -157 739 -215Q727 -224 720 -224Q712 -224 697 -210Q683 -199 683 -190T697 -171Q788 -102 907 -99H931L393 365Q317 431 236 501T114 608L72 643Q65 651 65 663'], + + // SOUTH WEST ARROW + 0x2199: [694,224,1150,64,1085,'80 -193Q73 -193 69 -187T64 -175Q64 -172 79 -150T109 -84T125 14Q125 58 115 94T95 149T85 172Q85 179 92 187T108 200L115 205Q119 207 122 207Q126 207 129 205T135 199T140 192T144 184T148 176Q169 132 178 81Q183 58 183 17Q183 -7 182 -24T178 -48L177 -53Q178 -53 389 129T816 498T1043 692Q1049 694 1054 694Q1070 694 1077 684T1085 664Q1085 653 1077 643Q1070 636 767 376L215 -98L240 -99Q312 -99 389 -134T466 -190Q466 -197 452 -210T429 -224Q422 -224 411 -215Q330 -157 229 -157Q190 -157 158 -166T106 -184T80 -193'], + + // RIGHTWARDS ARROW FROM BAR + 0x21A6: [518,17,1150,65,1085,'65 426Q74 448 95 448Q112 448 125 426V281H500L914 282Q881 304 842 357T785 482Q781 500 781 501Q781 512 792 517Q794 518 812 518H817Q832 518 835 515T844 495Q864 412 923 351T1065 270Q1085 263 1085 251Q1085 240 1077 236T1044 225T995 204Q937 173 898 122T844 6Q840 -10 836 -13T816 -17H811Q786 -16 782 -9Q781 -6 781 -2Q781 1 785 17Q813 138 914 220H500L135 221Q134 221 133 221T130 220H125V76Q115 54 95 54Q73 54 65 76V426'], + + // LEFTWARDS ARROW WITH HOOK + 0x21A9: [518,17,1282,64,1218,'1029 475Q1029 505 1068 505Q1129 501 1173 463T1218 363Q1218 296 1170 259T1066 221H1063L649 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L649 281H1063Q1105 284 1131 305T1158 361Q1158 385 1146 401Q1122 441 1063 444Q1029 446 1029 475'], + + // RIGHTWARDS ARROW WITH HOOK + 0x21AA: [518,17,1282,65,1217,'225 221H218Q159 221 112 260T65 363Q65 431 116 468T221 505Q254 503 254 474Q254 456 245 450T216 443T188 438Q152 427 137 401Q125 385 125 362Q125 334 147 310Q171 288 221 281H632L1046 282Q1013 304 974 357T917 482Q913 500 913 501Q913 512 924 517Q926 518 944 518H949Q964 518 967 515T976 495Q996 412 1055 351T1197 270Q1217 263 1217 251Q1217 240 1209 236T1176 225T1127 204Q1069 173 1030 122T976 6Q972 -10 968 -13T948 -17H943Q918 -16 914 -9Q913 -6 913 -2Q913 1 917 17Q945 138 1046 220H632L225 221'], + + // LEFTWARDS HARPOON WITH BARB UPWARDS + 0x21BC: [518,-220,1150,64,1084,'1063 281Q1084 268 1084 251Q1084 231 1063 221L572 220Q79 220 77 221Q64 225 64 244Q64 250 64 254T67 261T71 265T78 268T85 272Q142 302 189 345T258 421T296 484T315 516Q319 518 337 518Q358 518 363 512Q370 504 367 496Q360 469 319 404T219 290L209 282L636 281H1063'], + + // LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x21BD: [281,17,1150,64,1084,'1063 281Q1084 268 1084 251Q1084 231 1063 221L636 220H209L219 212Q278 162 319 97T367 5Q370 -3 363 -11Q358 -17 337 -17H332Q318 -17 314 -14T302 7Q278 55 246 95T185 160T130 202T88 228L70 237Q64 243 64 257Q64 274 75 279Q78 281 571 281H1063'], + + // RIGHTWARDS HARPOON WITH BARB UPWARDS + 0x21C0: [518,-220,1150,65,1085,'65 251Q65 270 87 281H513L940 282L930 290Q871 338 830 403T782 496Q779 510 791 517Q794 518 812 518H817Q831 518 835 515T847 494Q871 445 903 404T966 338T1022 298T1064 272T1083 259Q1085 255 1085 245Q1085 225 1072 221Q1070 220 578 220L87 221Q65 228 65 251'], + + // RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x21C1: [281,17,1150,64,1085,'84 279Q89 281 580 281Q1070 281 1074 279Q1085 275 1085 256Q1085 245 1083 241T1066 230Q919 153 847 7Q839 -11 835 -14T817 -17H812Q791 -17 786 -11Q779 -3 782 5Q789 31 830 96T930 212L940 220H513L87 221Q64 229 64 250Q64 272 84 279'], + + // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21CC: [718,17,1150,64,1085,'65 451Q65 470 87 481H513L940 482L930 490Q871 538 830 603T782 696Q779 710 791 717Q794 718 812 718H817Q831 718 835 715T847 694Q871 645 903 604T966 538T1022 498T1064 472T1083 459Q1085 455 1085 445Q1085 425 1072 421Q1070 420 578 420L87 421Q65 428 65 451ZM1063 281Q1084 268 1084 251Q1084 231 1063 221L636 220H209L219 212Q278 162 319 97T367 5Q370 -3 363 -11Q358 -17 337 -17H332Q318 -17 314 -14T302 7Q278 55 246 95T185 160T130 202T88 228L70 237Q64 243 64 257Q64 274 75 279Q78 281 571 281H1063'], + + // LEFTWARDS DOUBLE ARROW + 0x21D0: [547,46,1150,64,1086,'1063 169L1068 166Q1072 163 1074 162T1079 157T1083 149T1085 139Q1085 118 1063 109L733 108H404L412 99Q455 50 488 -10Q498 -27 493 -37Q487 -46 465 -46H460Q446 -46 439 -39T426 -18T399 25T344 89Q239 194 99 229Q96 230 92 231T85 232T79 234T73 235T69 237T66 240T65 244T64 250Q64 267 90 271Q197 295 286 361T430 525Q439 542 442 544T460 547H465Q487 547 492 539Q496 531 496 530Q496 521 471 482T414 405L404 394L733 393H1063Q1064 392 1069 389T1076 384T1082 375T1085 362Q1085 344 1063 333L700 332H338L324 321Q283 290 230 264L205 250Q266 224 323 180L338 170L700 169H1063'], + + // UPWARDS DOUBLE ARROW + 0x21D1: [694,193,703,30,672,'672 343Q672 326 670 320T657 313Q644 313 602 335Q577 349 557 361T527 381T509 395T499 403T495 406T494 118Q494 -166 492 -174Q484 -193 465 -193H463Q456 -193 453 -192T444 -186T433 -170V465L423 477Q407 495 394 514T367 554T351 579Q349 576 339 560T313 520T279 477L269 465V-22V-102Q269 -132 269 -145T268 -169T266 -180T260 -185T253 -191Q248 -193 239 -193H237Q218 -193 210 -174Q208 -166 208 118Q208 406 207 406L199 399Q191 392 165 374T100 335Q58 313 45 313Q35 313 33 319T30 343V349Q30 359 30 362T35 369T45 374T66 383T100 401Q267 499 333 680Q339 694 351 694Q361 694 365 687T380 652T407 597Q442 536 489 489T573 420T638 383T670 365Q672 361 672 343'], + + // RIGHTWARDS DOUBLE ARROW + 0x21D2: [547,46,1150,64,1084,'64 362Q64 380 87 393H416L745 394L735 405Q708 436 681 477T654 531Q654 547 679 547H684H689Q703 547 710 540T723 519T750 475T806 411Q914 303 1059 271Q1060 271 1063 270T1068 269T1072 268T1076 266T1079 264T1082 260T1083 256T1084 250Q1084 242 1080 238T1063 231T1035 225T992 211T934 185Q797 112 719 -24Q710 -40 706 -43T689 -46H684Q653 -46 653 -31Q653 -24 661 -10Q694 50 737 99L745 108H416L87 109Q64 117 64 139Q64 156 87 169H449L812 170L826 180Q842 193 860 204T892 223T918 237T937 246L944 250L919 264Q866 290 825 321L811 332H449L87 333Q64 343 64 362'], + + // DOWNWARDS DOUBLE ARROW + 0x21D3: [694,194,703,30,672,'30 157Q30 174 32 180T46 187Q59 187 104 163Q154 136 198 101L207 94Q208 94 208 382Q208 666 210 674Q219 694 241 694Q254 692 262 683Q266 679 267 674Q269 658 269 522V35L279 23Q295 5 308 -14T335 -54T351 -79Q353 -76 363 -60T389 -20T423 23L433 35V671Q439 682 444 686T452 692T463 693H465Q484 693 492 674Q494 666 494 382Q494 94 495 94L504 101Q547 135 593 160T652 187Q665 191 671 177Q672 175 672 157Q672 137 669 134T636 116Q606 101 578 83T528 47T486 9T452 -30T424 -68T403 -103T387 -134T377 -159T370 -176L367 -184Q360 -194 351 -194Q345 -194 342 -192T334 -182T327 -166T315 -137T295 -97Q260 -36 213 11T129 80T63 117T32 136Q30 139 30 157'], + + // LEFT RIGHT DOUBLE ARROW + 0x21D4: [547,46,1150,47,1102,'336 497Q358 541 363 544Q367 547 379 547H384Q401 547 405 545Q418 538 414 525T389 474T346 408L335 393H814L803 408Q781 436 760 474T735 525T744 545Q748 547 765 547Q771 547 774 547T780 546T786 544T790 541T794 535T799 527T805 514T813 497Q841 446 877 406T950 340T1014 301T1068 276L1096 265Q1102 259 1102 251Q1102 240 1085 232Q981 195 902 121Q835 56 798 -25Q791 -40 787 -43T765 -46T744 -44Q735 -40 735 -30Q735 -15 760 28T806 98L814 108H335L343 98Q361 75 378 46T404 -1T414 -24Q418 -37 405 -44Q401 -46 384 -46T363 -43T351 -25Q314 56 247 121Q216 150 182 173T125 206T79 226T53 237Q47 243 47 251Q47 254 47 256T49 261T52 264T57 267T61 268T66 270T71 272Q246 335 336 497ZM985 251Q932 280 882 323L871 332H278Q264 321 253 311T237 297T214 282T164 251L176 244Q221 218 278 169H871Q928 218 973 244L985 251'], + + // UP DOWN DOUBLE ARROW + 0x21D5: [767,267,703,30,672,'49 441Q30 441 30 464V471V480Q30 498 44 502Q237 573 331 750Q337 767 351 767Q360 767 368 753T400 702T460 629Q504 584 552 554T632 511T666 497Q672 493 672 471Q672 454 670 449Q664 441 653 441Q639 443 591 465T508 513L495 522L494 386V114L495 -22L508 -13Q543 12 591 34T653 59Q672 59 672 36V29V20Q672 2 658 -2Q465 -71 367 -257Q360 -267 351 -267Q343 -267 336 -257T320 -231T292 -187T242 -129Q198 -84 150 -54T70 -11T36 3Q30 7 30 29Q30 46 32 51Q38 59 49 59Q63 57 111 35T194 -13L208 -22V522L194 513Q159 488 111 466T49 441ZM422 584Q411 594 400 606T383 626T366 648T351 667Q349 665 339 652T314 620T280 584L269 573V-73L280 -84Q305 -108 351 -166Q353 -164 363 -151T389 -119T422 -84L433 -73V573L422 584'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/Arrows.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js new file mode 100644 index 0000000..8b10831 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js @@ -0,0 +1,149 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // SPACE + 0x20: [0,0,250,0,0,''], + + // EXCLAMATION MARK + 0x21: [705,-1,350,89,260,'89 629Q89 663 116 684T171 705Q215 705 237 681T260 634Q260 619 233 434T204 244Q201 237 175 237Q150 237 146 244Q144 248 117 433T89 629ZM90 86Q90 125 116 148T177 171Q211 169 235 146T259 86Q259 48 235 25T175 1Q138 1 114 24T90 86'], + + // QUOTATION MARK + 0x22: [694,-328,603,38,492,'38 572T38 608T61 669T121 694Q167 694 196 657T225 559Q225 520 214 482T186 418T151 370T119 339T99 329T82 340T70 360Q70 365 74 369T92 385T122 414Q142 441 154 471T170 518L172 535L166 532Q160 530 148 527T122 523Q85 523 62 547ZM305 572T305 608T328 669T388 694Q434 694 463 657T492 559Q492 520 481 482T453 418T418 370T386 339T366 329T349 340T337 360Q337 365 341 369T359 385T389 414Q409 441 421 471T436 518L439 535L433 532Q427 530 415 527T389 523Q352 523 329 547'], + + // NUMBER SIGN + 0x23: [694,193,958,64,893,'64 362Q64 380 87 393H363L366 404Q379 443 390 480T409 542T424 590T435 628T443 655T451 674T458 686T467 692T478 694Q490 694 499 686T509 662Q505 643 427 395Q427 393 523 393H620L623 404Q630 426 652 498T691 624T711 681Q718 694 735 694Q748 694 757 685T766 662Q762 643 684 395Q684 393 777 393H871Q872 392 875 390T881 386T887 381T891 374T893 363Q893 345 871 333L767 332H664L660 319Q660 318 638 245T614 171Q614 169 742 169H871L877 165Q883 161 885 159T890 151T893 138Q893 120 871 109L732 108H594L590 95Q587 84 546 -46Q508 -175 505 -178Q498 -193 478 -193Q462 -193 455 -183T448 -164Q448 -156 530 106Q530 108 434 108H337L333 95Q330 84 289 -46Q251 -175 248 -178Q240 -193 222 -193Q206 -193 199 -183T191 -164Q191 -154 273 106Q273 108 180 108L87 109Q64 117 64 139Q64 156 87 169H293L321 262Q326 277 331 294T340 321L343 330Q343 332 215 332L87 333Q64 343 64 362ZM600 330Q600 332 504 332H407L403 319Q403 318 381 245T357 171Q357 169 453 169H550L578 262Q583 277 588 294T597 321L600 330'], + + // DOLLAR SIGN + 0x24: [750,56,575,64,510,'64 494Q64 541 80 579T120 638T171 674T219 693T253 698H256V750H318V699H323Q355 694 380 686T433 663T480 620T506 556Q510 539 510 520Q510 480 488 463T440 445L422 447Q407 451 398 459Q370 478 370 515Q370 542 384 559T412 580L427 584Q424 589 418 596T386 617T324 636H318V434Q411 419 460 355T510 217Q510 196 507 175T492 122T461 67T404 23T318 -4V-56H256V-5H254Q252 -3 240 -3Q194 4 160 23T108 64T80 112T67 156T64 190Q64 218 81 240T134 262Q171 262 187 240T204 193T190 150T153 125Q146 125 144 123Q142 123 149 113T174 89T218 66Q247 58 255 58Q256 58 256 173V287L239 291Q160 308 112 365T64 494ZM255 636Q246 635 236 632T206 620T173 591T160 543Q160 472 256 448V542Q256 636 255 636ZM320 59Q324 59 333 61T356 70T384 89T406 120T415 167Q415 200 395 225T356 260T318 274V59H320'], + + // PERCENT SIGN + 0x25: [751,56,958,65,893,'65 549Q65 609 84 652T132 714T187 742T236 750Q265 750 296 734T355 697T431 661T541 644Q662 644 736 730Q751 749 767 749T790 739T797 719Q797 710 768 672T504 329Q212 -47 211 -48Q203 -55 191 -55Q161 -55 161 -25Q161 -17 163 -12L642 609Q608 595 542 595Q515 595 488 599T441 608T405 619T381 628L373 632Q373 630 375 619T380 589T383 548Q383 455 343 401T235 347Q217 347 198 351T154 368T110 403T78 462T65 549ZM320 549Q320 633 295 665T235 698H234Q214 698 196 674Q182 650 182 549Q182 509 183 486T190 441T207 409T238 399Q269 399 294 431T320 549ZM745 -56Q727 -56 708 -52T664 -35T620 0T588 59T575 146T588 232T620 291T663 325T708 343T747 347Q810 347 851 294T893 146Q893 89 879 48T841 -15T794 -46T745 -56ZM830 146Q830 230 805 262T745 295H744Q724 295 706 271Q692 247 692 146Q692 106 693 83T700 38T717 6T748 -4Q779 -4 804 28T830 146'], + + // AMPERSAND + 0x26: [705,11,894,48,836,'255 -11Q209 -11 164 4T84 56T48 146Q48 159 50 171Q57 197 72 218T99 249T152 292Q204 333 204 334L194 356Q185 379 176 421T166 511Q166 538 168 551Q182 613 226 654T332 704Q334 704 343 704T358 705Q412 702 444 661T476 565V559Q476 489 334 371L330 368L335 357Q382 272 485 165L496 154L506 163Q543 200 597 273L671 382H601V444H610L732 441Q821 441 830 444H836V382H741L709 335Q702 324 687 302T665 270T646 244T625 216T605 191T581 162T553 132L537 116Q544 109 557 98T605 69T673 51Q711 51 739 70T767 115V118H829V114Q829 70 786 30T668 -11Q570 -11 474 37L451 49L441 43Q352 -11 255 -11ZM415 564Q415 596 400 625T356 654Q329 654 310 634T285 588Q283 580 283 554Q283 475 309 417L325 431Q415 512 415 564ZM192 182Q192 126 213 89T279 51Q348 51 400 83L389 91Q362 112 338 137T295 186T264 229T240 265T227 286Q226 285 222 280T217 272T211 263T205 251T200 238T196 222T193 204T192 182'], + + // APOSTROPHE + 0x27: [694,-329,319,74,261,'74 572T74 608T97 669T157 694Q203 694 232 657T261 559Q261 520 250 482T222 418T187 370T155 339T135 329Q128 329 117 340T106 359Q106 365 117 375T144 399T176 440T203 505Q204 511 205 518T208 530V535L202 532Q196 530 184 527T158 523Q121 523 98 547'], + + // ASTERISK + 0x2A: [750,-306,575,72,502,'235 706Q235 724 251 737T287 750Q306 750 322 738T339 706Q339 685 318 580V579Q429 663 436 666Q441 668 449 668Q471 668 486 650T501 612Q501 582 478 572Q476 570 414 549L354 528L414 507Q420 505 430 502T445 497T458 492T470 488T479 483T487 478T493 471T497 463T500 454T501 443Q501 423 486 406T449 388H446Q435 388 370 437Q339 461 318 477V476Q339 371 339 350Q339 332 323 319T287 306T251 319T235 350Q235 371 256 476V477Q145 393 138 390Q133 388 125 388Q103 388 88 406T73 444Q73 474 96 484Q98 486 160 507L220 528L160 549Q154 551 144 554T129 559T116 564T104 568T95 573T87 578T81 585T77 593T74 602T73 613Q73 633 88 650T125 668H128Q139 668 204 619Q235 595 256 579V580Q235 685 235 706'], + + // HYPHEN-MINUS + 0x2D: [278,-166,383,13,318,'13 166V278H318V166H13'], + + // QUESTION MARK + 0x3F: [700,-1,543,65,478,'65 570Q65 628 119 664T259 700Q326 700 372 688T440 654T469 613T478 569Q478 505 412 465Q287 391 287 294V283Q287 250 284 244T263 237H256H249Q232 237 229 242T225 272V287Q227 364 253 418Q274 463 311 504Q335 530 335 575Q335 622 323 635T259 648Q231 648 209 644T179 636T170 630L172 628Q174 627 177 625T183 620T190 611T197 601T202 587T204 570Q204 539 185 519T134 499Q105 499 85 517T65 570ZM171 86Q171 125 197 148T258 171Q292 169 316 146T340 86Q340 48 316 25T256 1Q218 1 195 24T171 86'], + + // COMMERCIAL AT + 0x40: [699,6,894,64,829,'64 347Q64 511 171 605T434 699Q487 699 500 698Q624 684 703 621T811 464Q828 414 828 344Q828 232 788 179T691 125Q673 125 657 127T628 132T606 140T588 148T576 156T568 162L566 164Q565 164 549 154T504 135T444 125Q349 125 284 183T218 347Q218 455 284 512T448 569Q554 569 610 479H638Q670 479 674 471Q676 468 676 340V258Q676 213 679 199T694 178Q701 174 713 177Q767 187 767 340Q767 489 678 569T446 649Q299 649 213 566T126 346Q126 307 134 269T166 189T225 116T320 65T455 45H463Q606 51 721 91L746 99H782H801Q829 99 829 85Q829 78 825 75T804 65Q800 63 797 62Q625 -6 451 -6Q271 -6 168 91T64 347ZM547 468Q526 493 504 505T444 517T377 476T346 347Q346 306 354 271T386 206T448 177Q505 177 547 226V468'], + + // LATIN CAPITAL LETTER A + 0x41: [698,0,869,40,828,'296 0Q278 3 164 3Q58 3 49 0H40V62H92Q144 62 144 64Q388 682 397 689Q403 698 434 698Q463 698 471 689Q475 686 538 530T663 218L724 64Q724 62 776 62H828V0H817Q796 3 658 3Q509 3 485 0H472V62H517Q561 62 561 63L517 175H262L240 120Q218 65 217 64Q217 62 261 62H306V0H296ZM390 237L492 238L440 365Q390 491 388 491Q287 239 287 237H390'], + + // LATIN CAPITAL LETTER B + 0x42: [686,0,818,39,752,'720 510Q720 476 704 448T665 404T619 377T580 362L564 359L583 356Q602 353 632 342T690 312Q712 292 725 276Q752 235 752 189V183Q752 160 741 125Q698 18 547 2Q543 1 288 0H39V62H147V624H39V686H264H409Q502 686 542 681T624 655Q720 607 720 510ZM563 513Q563 553 548 578T518 611T486 622Q479 624 385 624H293V382H375Q458 383 467 385Q563 405 563 513ZM590 192Q590 307 505 329Q504 330 503 330L398 331H293V62H391H400H444Q496 62 528 75T580 131Q590 155 590 192'], + + // LATIN CAPITAL LETTER C + 0x43: [697,11,831,64,766,'64 343Q64 502 174 599T468 697Q502 697 533 691T586 674T623 655T647 639T657 632L694 663Q703 670 711 677T723 687T730 692T735 695T740 696T746 697Q759 697 762 692T766 668V627V489V449Q766 428 762 424T742 419H732H720Q699 419 697 436Q690 498 657 545Q611 618 532 632Q522 634 496 634Q356 634 286 553Q232 488 232 343T286 133Q355 52 497 52Q597 52 650 112T704 237Q704 248 709 251T729 254H735Q750 254 755 253T763 248T766 234Q766 136 680 63T469 -11Q285 -11 175 86T64 343'], + + // LATIN CAPITAL LETTER D + 0x44: [686,0,882,39,817,'39 624V686H270H310H408Q500 686 545 680T638 649Q768 584 805 438Q817 388 817 338Q817 171 702 75Q628 17 515 2Q504 1 270 0H39V62H147V624H39ZM655 337Q655 370 655 390T650 442T639 494T616 540T580 580T526 607T451 623Q443 624 368 624H298V62H377H387H407Q445 62 472 65T540 83T606 129Q629 156 640 195T653 262T655 337'], + + // LATIN CAPITAL LETTER E + 0x45: [680,0,756,39,723,'723 286Q721 284 700 145T677 3V0H39V62H147V618H39V680H660V676Q662 670 675 552T691 428V424H629V428Q629 429 627 448T618 494T601 541Q574 593 527 605T382 618H374H304V384H336Q338 384 347 384T361 384T376 386T392 390T407 397T421 407T432 423Q442 444 443 482V501H505V205H443V224Q442 258 435 278T411 307T380 318T336 322H304V62H375H394Q429 62 449 62T497 66T541 76T577 95T609 126T632 170T651 232Q661 287 661 289H723V286'], + + // LATIN CAPITAL LETTER F + 0x46: [680,0,724,39,675,'425 0L228 3Q63 3 51 0H39V62H147V618H39V680H644V676Q647 670 659 552T675 428V424H613Q613 433 605 477Q599 511 589 535T562 574T530 599T488 612T441 617T387 618H368H304V371H333Q389 373 411 390T437 468V488H499V192H437V212Q436 244 430 263T408 292T378 305T333 309H304V62H439V0H425'], + + // LATIN CAPITAL LETTER G + 0x47: [697,10,904,64,845,'465 -10Q281 -10 173 88T64 343Q64 413 85 471T143 568T217 631T298 670Q371 697 449 697Q452 697 459 697T470 696Q502 696 531 690T582 675T618 658T644 641T656 632L732 695Q734 697 745 697Q758 697 761 692T765 668V627V489V449Q765 428 761 424T741 419H731H724Q705 419 702 422T695 444Q683 520 631 577T495 635Q364 635 295 563Q261 528 247 477T232 343Q232 296 236 260T256 185T296 120T366 76T472 52Q481 51 498 51Q544 51 573 67T607 108Q608 111 608 164V214H464V276H479Q506 273 680 273Q816 273 834 276H845V214H765V113V51Q765 16 763 8T750 0Q742 2 709 16T658 40L648 46Q592 -10 465 -10'], + + // LATIN CAPITAL LETTER H + 0x48: [686,0,900,39,860,'400 0Q376 3 226 3Q75 3 51 0H39V62H147V624H39V686H51Q75 683 226 683Q376 683 400 686H412V624H304V388H595V624H487V686H499Q523 683 673 683Q824 683 848 686H860V624H752V62H860V0H848Q824 3 674 3Q523 3 499 0H487V62H595V326H304V62H412V0H400'], + + // LATIN CAPITAL LETTER I + 0x49: [686,0,436,25,410,'397 0Q370 3 218 3Q65 3 38 0H25V62H139V624H25V686H38Q65 683 218 683Q370 683 397 686H410V624H296V62H410V0H397'], + + // LATIN CAPITAL LETTER J + 0x4A: [686,11,594,8,527,'174 114Q174 96 169 82T159 63T144 47L155 45Q183 40 203 40Q271 40 290 104Q294 118 294 150T295 380V624H154V686H169Q196 683 365 683Q499 683 517 686H527V624H446V379Q446 183 446 153T441 108Q413 32 315 2Q266 -11 208 -11Q160 -11 118 -2T42 37T8 114V122Q8 150 30 174T91 198T152 174T174 122V114'], + + // LATIN CAPITAL LETTER K + 0x4B: [686,0,901,39,852,'400 0Q376 3 226 3Q75 3 51 0H39V62H147V624H39V686H51Q75 683 226 683Q376 683 400 686H412V624H304V338L472 483L634 624H565V686H576Q597 683 728 683Q814 683 829 686H836V624H730L614 524Q507 432 497 422Q496 422 498 418T514 395T553 342T627 241L759 63L805 62H852V0H842Q830 3 701 3Q550 3 526 0H513V62H549Q584 62 584 63Q583 65 486 196T388 328L304 256V62H412V0H400'], + + // LATIN CAPITAL LETTER L + 0x4C: [686,0,692,39,643,'643 285Q641 280 629 148T612 4V0H39V62H147V624H39V686H51Q75 683 228 683Q415 685 425 686H439V624H304V62H352H378Q492 62 539 138Q551 156 558 178T569 214T576 255T581 289H643V285'], + + // LATIN CAPITAL LETTER M + 0x4D: [686,0,1092,39,1052,'314 0Q296 3 181 3T48 0H39V62H147V624H39V686H305Q316 679 323 667Q330 653 434 414L546 157L658 414Q766 662 773 674Q778 681 788 686H1052V624H944V62H1052V0H1040Q1016 3 874 3T708 0H696V62H804V341L803 618L786 580Q770 543 735 462T671 315Q540 13 536 9Q528 1 507 1Q485 1 477 9Q472 14 408 162T281 457T217 603Q215 603 215 334V62H323V0H314'], + + // LATIN CAPITAL LETTER N + 0x4E: [686,0,900,39,860,'314 0Q296 3 181 3T48 0H39V62H147V624H39V686H171H265Q288 686 297 686T309 684T315 679Q317 676 500 455T684 233V624H576V686H585Q603 683 718 683T851 686H860V624H752V319Q752 15 750 11Q747 4 742 2T718 0H712Q708 0 706 0T700 0T696 1T693 2T690 4T687 7T684 11T679 16T674 23Q671 27 437 311L215 579V62H323V0H314'], + + // LATIN CAPITAL LETTER O + 0x4F: [696,10,864,64,798,'64 339Q64 431 96 502T182 614T295 675T420 696Q469 696 481 695Q620 680 709 589T798 339Q798 173 697 82T432 -10Q262 -10 163 85T64 339ZM625 454Q618 502 600 538T562 593T515 624T469 639T431 642Q331 642 276 563Q232 493 232 353Q232 315 234 285T244 216T267 148T308 94T372 56Q405 46 432 46Q517 46 567 106T627 267Q631 299 631 353Q631 418 625 454'], + + // LATIN CAPITAL LETTER P + 0x50: [686,0,786,39,722,'400 0Q376 3 226 3Q75 3 51 0H39V62H147V624H39V686H253Q435 686 470 685T536 678Q585 668 621 648T675 605T705 557T718 514T721 483T718 451T704 409T673 362T616 322T530 293Q500 288 399 287H304V62H412V0H400ZM553 475Q553 554 537 582T459 622Q451 623 373 624H298V343H372Q457 344 480 350Q527 362 540 390T553 475'], + + // LATIN CAPITAL LETTER Q + 0x51: [696,193,864,64,805,'64 339Q64 431 96 502T182 614T295 675T420 696Q469 696 481 695Q620 680 709 589T798 339Q798 255 768 184Q720 77 611 26L600 21Q635 -26 682 -26H696Q769 -26 769 0Q769 7 774 12T787 18Q805 18 805 -7V-13Q803 -64 785 -106T737 -171Q720 -183 697 -191Q687 -193 668 -193Q636 -193 613 -182T575 -144T552 -94T532 -27Q531 -23 530 -16T528 -6T526 -3L512 -5Q499 -7 477 -8T431 -10Q393 -10 382 -9Q238 8 151 97T64 339ZM326 80Q326 113 356 138T430 163Q492 163 542 100L553 86Q554 85 561 91T578 108Q637 179 637 330Q637 430 619 498T548 604Q500 641 425 641Q408 641 390 637T347 623T299 590T259 535Q226 469 226 338Q226 244 246 180T318 79L325 74Q326 74 326 80ZM506 58Q480 112 433 112Q412 112 395 104T378 77Q378 44 431 44Q480 44 506 58'], + + // LATIN CAPITAL LETTER R + 0x52: [687,11,862,39,858,'394 0Q370 3 222 3Q75 3 51 0H39V62H147V624H39V686H234Q256 686 299 686T362 687Q479 687 554 669T681 593Q716 550 716 497Q716 390 568 338Q569 337 572 336T577 332Q605 317 623 300T650 258T662 218T668 172Q678 98 689 76Q707 40 748 40Q770 40 780 54T795 88T801 111Q805 117 827 117H831Q846 117 852 113T858 92Q857 78 852 63T834 30T797 1T739 -11Q630 -11 580 12T511 87Q506 104 506 168Q506 170 506 178T507 194Q507 289 438 313Q424 318 356 318H298V62H406V0H394ZM366 369Q459 370 490 381Q548 402 548 476V498V517Q548 578 513 600Q479 624 392 624H358H298V369H366'], + + // LATIN CAPITAL LETTER S + 0x53: [698,12,639,63,574,'64 493Q64 582 120 636T264 696H272Q280 697 285 697Q380 697 454 645L480 669Q484 672 488 676T495 683T500 688T504 691T508 693T511 695T514 696T517 697T522 697Q536 697 539 691T542 652V577Q542 557 542 532T543 500Q543 472 540 465T524 458H511H505Q489 458 485 461T479 478Q472 529 449 564T393 614T336 634T287 639Q228 639 203 610T177 544Q177 517 195 493T247 457Q253 454 343 436T475 391Q574 326 574 207V200Q574 163 559 120Q517 12 389 -9Q380 -10 346 -10Q308 -10 275 -5T221 7T184 22T160 35T151 40L126 17Q122 14 118 10T111 3T106 -2T102 -5T98 -7T95 -9T92 -10T89 -11T84 -11Q70 -11 67 -4T64 35V108Q64 128 64 153T63 185Q63 203 63 211T69 223T77 227T94 228H100Q118 228 122 225T126 205Q130 125 193 88T345 51Q408 51 434 82T460 157Q460 196 439 221T388 257Q384 259 305 276T221 295Q155 313 110 366T64 493'], + + // LATIN CAPITAL LETTER T + 0x54: [675,0,800,41,758,'41 425Q41 426 51 545T62 669V675H737V669Q738 665 748 546T758 425V419H696V425Q687 517 669 555T595 607Q578 612 522 613H478V62H631V0H615Q585 3 399 3Q214 3 184 0H168V62H321V613H277H263Q164 613 134 561Q113 527 103 425V419H41V425'], + + // LATIN CAPITAL LETTER U + 0x55: [686,11,885,39,845,'570 686Q588 683 703 683T836 686H845V624H737V420Q737 390 737 345T738 284Q738 205 729 164T689 83Q614 -11 465 -11Q321 -11 240 51T148 207Q147 214 147 421V624H39V686H51Q75 683 226 683Q376 683 400 686H412V624H304V405V370V268Q304 181 311 146T346 87Q387 52 466 52Q642 52 667 195Q668 204 669 415V624H561V686H570'], + + // LATIN CAPITAL LETTER V + 0x56: [686,7,869,25,843,'592 686H604Q615 685 631 685T666 684T700 684T724 683Q829 683 835 686H843V624H744L611 315Q584 254 546 165Q492 40 482 19T461 -6L460 -7H409Q398 -4 391 9Q385 20 257 315L124 624H25V686H36Q57 683 190 683Q340 683 364 686H377V624H289L384 403L480 185L492 212Q504 240 529 298T575 405L670 624H582V686H592'], + + // LATIN CAPITAL LETTER W + 0x57: [686,7,1189,24,1164,'915 686L1052 683Q1142 683 1157 686H1164V624H1073L957 320Q930 249 900 170T855 52T839 10Q834 0 826 -5Q821 -7 799 -7H792Q777 -7 772 -5T759 10Q759 11 748 39T716 122T676 228L594 442L512 228Q486 159 455 78Q433 19 428 9T416 -5Q411 -7 389 -7H379Q356 -7 349 10Q349 12 334 51T288 170T231 320L116 624H24V686H35Q44 683 183 683Q331 683 355 686H368V624H323Q278 624 278 623L437 207L499 369L561 531L526 624H434V686H445Q454 683 593 683Q741 683 765 686H778V624H733Q688 624 688 623L847 207Q848 207 927 415T1006 624H905V686H915'], + + // LATIN CAPITAL LETTER X + 0x58: [686,0,869,33,835,'327 0Q306 3 174 3Q52 3 43 0H33V62H98L162 63L360 333L157 624H48V686H59Q80 683 217 683Q368 683 395 686H408V624H335L393 540L452 458L573 623Q573 624 528 624H483V686H494Q515 683 646 683Q769 683 778 686H787V624H658L575 511Q493 398 493 397L508 376Q522 356 553 312T611 229L727 62H835V0H824Q803 3 667 3Q516 3 489 0H476V62H513L549 63L401 274L247 63Q247 62 292 62H338V0H327'], + + // LATIN CAPITAL LETTER Y + 0x59: [686,0,869,19,849,'605 0Q581 3 434 3Q286 3 262 0H250V62H358V275L126 624H19V686H30Q54 683 189 683Q361 685 370 686H383V624H308L319 608Q330 591 353 556T396 491L484 359L660 623Q660 624 623 624H585V686H595Q613 683 728 683Q832 683 841 686H849V624H742L509 274V62H618V0H605'], + + // LATIN CAPITAL LETTER Z + 0x5A: [686,0,703,64,645,'80 430L92 686H358Q624 686 628 684Q638 679 638 656Q638 640 637 639Q637 638 445 353Q401 288 351 214T277 103L253 67L256 66Q258 66 265 66T279 66T298 66H343Q380 66 406 68T464 81T518 110T557 164T579 250Q583 278 583 298Q583 299 614 299H645V291Q643 281 636 150T627 8V0H353Q79 0 75 2Q64 7 64 31Q64 48 66 52L259 340L451 623Q451 624 384 624Q294 623 259 612Q155 581 143 446Q142 440 142 432V430H80'], + + // LOW LINE + 0x5F: [-10,61,575,0,574,'0 -61V-10H574V-61H0'], + + // GRAVE ACCENT + 0x60: [706,-503,575,113,338,'114 634Q114 663 136 684T183 706Q191 706 196 705T208 700T219 693T232 681T245 666T262 645T282 620Q332 558 337 553Q338 552 318 527L299 503L223 543Q215 547 202 553T183 563T167 571T153 580T141 587T131 595T124 603T118 612T115 622T114 634'], + + // TILDE + 0x7E: [344,-202,575,96,478,'343 202Q320 202 278 225T215 249Q181 249 146 214L134 202L115 219Q111 222 106 226T98 234L96 236Q158 306 165 313Q199 344 230 344Q239 344 244 343Q262 339 300 318T359 297Q393 297 428 332L440 344L459 327Q463 324 468 320T476 312L478 310Q416 240 409 233Q375 202 343 202'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js new file mode 100644 index 0000000..b80f91c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js @@ -0,0 +1,62 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/CombDiacritMarks.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // COMBINING GRAVE ACCENT + 0x300: [706,-503,0,-462,-237,'-461 634Q-461 663 -439 684T-392 706Q-384 706 -379 705T-367 700T-356 693T-343 681T-330 666T-313 645T-293 620Q-243 558 -238 553Q-237 552 -257 527L-276 503L-352 543Q-360 547 -373 553T-392 563T-408 571T-422 580T-434 587T-444 595T-451 603T-457 612T-460 622T-461 634'], + + // COMBINING ACUTE ACCENT + 0x301: [706,-503,0,-339,-115,'-184 706Q-156 706 -136 683T-115 634Q-115 608 -134 593T-209 550Q-219 545 -224 543L-300 503L-319 527Q-339 552 -338 553Q-333 558 -283 620Q-276 629 -266 641T-251 659T-239 673T-229 685T-221 693T-212 699T-204 703T-195 705T-184 706'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [694,-520,0,-449,-126,'-368 632L-288 694Q-286 693 -207 632T-127 570T-144 545T-162 520Q-165 520 -225 559L-288 597L-351 559Q-411 520 -414 520Q-415 520 -432 544T-449 570T-368 632'], + + // COMBINING TILDE + 0x303: [694,-552,0,-479,-97,'-232 552Q-255 552 -297 575T-360 599Q-394 599 -429 564L-441 552L-460 569Q-464 572 -469 576T-476 584L-479 586Q-417 656 -410 663Q-376 694 -345 694Q-336 694 -331 693Q-313 689 -275 668T-216 647Q-182 647 -147 682L-135 694L-116 677Q-112 674 -107 670T-100 662L-97 660Q-159 590 -166 583Q-200 552 -232 552'], + + // COMBINING MACRON + 0x304: [607,-540,0,-495,-81,'-495 540V607H-81V540H-495'], + + // COMBINING BREVE + 0x306: [694,-500,0,-473,-103,'-288 500Q-367 500 -420 558T-473 689V694H-422V685Q-422 681 -421 674T-411 648T-389 615T-349 590T-288 578Q-228 578 -193 611T-154 685V694H-103V689Q-103 623 -153 562T-288 500'], + + // COMBINING DOT ABOVE + 0x307: [695,-525,0,-373,-203,'-373 610Q-373 647 -348 671T-292 695Q-251 695 -227 669T-203 610T-225 551T-288 525Q-327 525 -350 551T-373 610'], + + // COMBINING DIAERESIS + 0x308: [695,-535,0,-479,-97,'-479 615Q-479 650 -456 672T-397 695Q-361 693 -341 669T-320 615Q-320 583 -343 559T-399 535Q-428 535 -453 556T-479 615ZM-256 615Q-256 651 -232 673T-176 695Q-149 695 -123 675T-97 615Q-97 578 -121 557T-180 535Q-211 537 -233 559T-256 615'], + + // COMBINING RING ABOVE + 0x30A: [702,-535,0,-415,-161,'-415 618Q-415 653 -382 677T-296 702H-291Q-194 702 -168 647Q-161 634 -161 618Q-161 607 -165 596T-180 570T-220 546T-288 536T-355 545T-394 568T-410 594T-415 618ZM-223 618Q-223 645 -234 652T-274 659H-283Q-289 659 -297 659T-307 660Q-328 660 -339 653T-351 638T-353 619Q-353 591 -341 585T-288 578Q-260 578 -249 580T-230 590T-223 618'], + + // COMBINING DOUBLE ACUTE ACCENT + 0x30B: [714,-511,0,-442,-82,'-389 511L-442 543Q-442 544 -424 606T-404 674Q-390 705 -361 713Q-360 713 -356 713T-349 714Q-340 714 -330 712Q-273 690 -273 644Q-273 621 -290 604L-342 554L-389 511ZM-198 511L-251 543Q-251 544 -233 606T-213 674Q-199 705 -170 713Q-169 713 -165 713T-158 714Q-127 714 -105 693T-82 647Q-82 638 -84 631T-89 618T-99 604T-112 590T-130 574T-151 554L-198 511'], + + // COMBINING CARON + 0x30C: [660,-515,0,-445,-132,'-444 603Q-445 604 -439 618T-425 646T-417 659L-352 635L-288 611L-224 635L-159 659Q-158 660 -151 647T-138 619T-132 603Q-135 601 -211 558T-288 515T-365 558T-444 603'], + + // COMBINING LONG SOLIDUS OVERLAY + 0x338: [711,210,0,-734,-161,'-705 -210Q-715 -210 -724 -203T-734 -179Q-734 -171 -732 -166Q-730 -163 -474 266T-215 698Q-208 711 -190 711Q-180 711 -171 704T-161 681Q-161 672 -164 667Q-171 654 -425 228T-683 -201Q-692 -210 -705 -210'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js new file mode 100644 index 0000000..6958c8b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/CombDiactForSymbols.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // COMBINING RIGHT ARROW ABOVE + 0x20D7: [723,-513,0,-542,-33,'-169 694Q-169 707 -160 715T-142 723Q-127 723 -119 716T-107 698T-90 673T-53 648Q-33 637 -33 619Q-33 602 -45 595T-87 573T-144 532Q-165 513 -176 513Q-189 513 -197 522T-206 543Q-206 556 -188 574L-175 588H-347L-519 589Q-542 597 -542 618Q-542 623 -541 627T-537 635T-532 640T-527 644T-522 648L-519 649H-149Q-169 676 -169 694'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/CombDiactForSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js new file mode 100644 index 0000000..d8a154e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js @@ -0,0 +1,56 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/GeneralPunctuation.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // EN DASH + 0x2013: [300,-249,575,0,574,'0 249V300H574V249H0'], + + // EM DASH + 0x2014: [300,-249,1150,0,1149,'0 249V300H1149V249H0'], + + // LEFT SINGLE QUOTATION MARK + 0x2018: [695,-329,319,58,246,'58 461Q58 503 70 542T99 607T134 654T165 684T184 694T201 683T213 664Q213 658 202 648T175 624T143 583T116 518Q115 512 114 505T112 493L111 488Q132 500 161 500Q198 500 221 475T245 414T222 354T161 329Q112 329 85 369T58 461'], + + // RIGHT SINGLE QUOTATION MARK + 0x2019: [694,-329,319,74,261,'74 572T74 608T97 669T157 694Q203 694 232 657T261 559Q261 520 250 482T222 418T187 370T155 339T135 329Q128 329 117 340T106 359Q106 365 117 375T144 399T176 440T203 505Q204 511 205 518T208 530V535L202 532Q196 530 184 527T158 523Q121 523 98 547'], + + // LEFT DOUBLE QUOTATION MARK + 0x201C: [694,-329,603,110,564,'110 461Q110 502 121 541T150 606T185 653T217 684T235 694Q242 694 254 682T266 664Q266 659 254 648T226 623T193 578T167 511Q164 500 164 494T164 487Q188 500 212 500Q251 500 274 475T297 414Q297 378 274 354T212 329Q167 329 139 367T110 461ZM377 461Q377 502 388 541T417 606T452 653T484 684T502 694Q509 694 521 682T533 664Q533 659 521 648T493 623T460 578T434 511Q431 500 431 494T431 487Q455 500 479 500Q518 500 541 475T564 414Q564 378 541 354T479 329Q434 329 406 367T377 461'], + + // RIGHT DOUBLE QUOTATION MARK + 0x201D: [694,-328,603,38,492,'38 572T38 608T61 669T121 694Q167 694 196 657T225 559Q225 520 214 482T186 418T151 370T119 339T99 329T82 340T70 360Q70 365 74 369T92 385T122 414Q142 441 154 471T170 518L172 535L166 532Q160 530 148 527T122 523Q85 523 62 547ZM305 572T305 608T328 669T388 694Q434 694 463 657T492 559Q492 520 481 482T453 418T418 370T386 339T366 329T349 340T337 360Q337 365 341 369T359 385T389 414Q409 441 421 471T436 518L439 535L433 532Q427 530 415 527T389 523Q352 523 329 547'], + + // DAGGER + 0x2020: [702,211,511,64,446,'231 470Q232 471 232 473Q232 477 213 540T193 636Q192 642 192 651T204 677T239 700Q249 702 255 702Q300 702 315 660Q317 653 317 636Q317 603 298 539T279 472V470Q280 470 318 488T383 506Q408 506 423 493T442 467T446 444T443 421T424 396T383 382Q355 382 318 400T279 418Q278 416 285 392T303 334T316 284Q318 268 318 234Q318 149 311 45T296 -127T284 -203Q279 -211 255 -211Q237 -211 233 -210T226 -203Q222 -195 214 -129T199 41T192 234V245Q192 286 212 349Q233 413 231 418Q229 418 192 400T128 382Q102 382 86 396T67 421T64 444T67 466T86 492T128 506Q155 506 192 488T231 470'], + + // DOUBLE DAGGER + 0x2021: [703,202,511,64,446,'193 637Q193 663 206 679T231 698T255 702T279 699T304 679T317 637Q317 605 299 557T280 504Q280 503 281 503T320 521T382 539Q410 539 428 521T446 476Q446 454 432 434T383 414H377Q358 414 320 431T281 449L280 448Q280 444 298 396T317 316Q318 310 318 301T306 275T271 252Q261 250 255 250Q210 250 195 292Q193 299 193 316Q193 347 211 395T230 448Q230 449 229 449Q227 449 196 434Q151 414 133 414H127Q102 414 87 427T68 452T64 477Q64 503 81 521T127 539Q143 539 164 532T204 515T226 504Q230 502 230 504Q230 508 212 556T193 637ZM193 184Q193 210 206 226T231 245T255 249T279 246T304 226T317 184Q317 153 299 106T280 53Q280 51 282 51T322 68T383 86Q411 86 428 69T445 24T428 -21T382 -39Q358 -39 322 -22T282 -4Q280 -3 280 -3T280 -6Q281 -13 299 -59T317 -136Q318 -142 318 -151T306 -177T271 -200Q261 -202 255 -202Q210 -202 195 -160Q193 -153 193 -136Q193 -106 211 -60T230 -6Q230 -4 228 -4T188 -21T128 -39Q100 -39 83 -22T65 24Q65 53 82 69T127 86Q150 86 187 69T228 51Q230 50 230 50T230 53Q229 58 211 105T193 184'], + + // HORIZONTAL ELLIPSIS + 0x2026: [171,-1,1295,74,1221,'74 85Q74 121 99 146T156 171Q200 171 222 143T245 85Q245 56 224 29T160 1Q118 1 96 27T74 85ZM562 85Q562 121 587 146T644 171Q688 171 710 143T733 85Q733 56 712 29T648 1Q606 1 584 27T562 85ZM1050 85Q1050 121 1075 146T1132 171Q1176 171 1198 143T1221 85Q1221 56 1200 29T1136 1Q1094 1 1072 27T1050 85'], + + // PRIME + 0x2032: [563,-33,344,35,331,'240 563Q278 563 304 539T331 480V473Q331 462 316 431T217 236Q199 200 174 151T136 78T123 50Q113 33 105 33Q101 33 72 45T38 60Q35 63 35 65Q35 77 101 293T171 517Q182 542 202 552T240 563'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js new file mode 100644 index 0000000..b0a32d3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js @@ -0,0 +1,41 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/GeometricShapes.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // WHITE UP-POINTING TRIANGLE + 0x25B3: [711,-1,1022,69,953,'91 1Q69 10 69 31Q69 39 81 59T168 197Q327 447 485 697Q493 711 510 711Q523 711 532 702Q536 697 743 371T951 41Q953 35 953 31Q953 12 931 1H91ZM690 340Q651 401 604 476T534 586L512 621Q511 622 507 616Q498 604 332 342L154 62L333 61H689L867 62L690 340'], + + // WHITE RIGHT-POINTING SMALL TRIANGLE + 0x25B9: [540,39,575,33,542,'33 518Q45 540 63 540H65Q72 540 174 481Q247 439 302 407Q529 276 533 272Q542 263 542 250Q542 238 533 229Q528 224 304 95T71 -38Q69 -39 63 -39Q42 -39 33 -16V518ZM449 251L94 456Q93 456 93 251Q93 45 94 45L106 52Q119 59 139 71T186 98T242 131T301 165T357 197T404 225T437 244L449 251'], + + // WHITE DOWN-POINTING TRIANGLE + 0x25BD: [500,210,1022,68,953,'68 470Q68 481 75 489T91 499H93Q296 500 512 500H931Q932 499 937 496T945 490T950 482T953 469Q953 465 951 459Q950 455 743 129T532 -202Q524 -210 511 -210Q497 -210 489 -202Q486 -199 281 124T71 456Q68 462 68 470ZM154 439Q155 437 332 158T510 -122Q510 -123 533 -87T600 18T688 157Q866 437 866 438Q867 439 805 439T511 439H154'], + + // WHITE LEFT-POINTING SMALL TRIANGLE + 0x25C3: [539,38,575,33,542,'542 -14Q533 -38 514 -38H512Q503 -38 498 -35Q494 -34 270 95T42 229Q33 238 33 251Q33 259 35 264Q36 265 38 268T42 272Q48 278 271 407T504 539H508Q533 539 542 515V-14ZM481 251Q481 456 480 456Q125 252 124 251Q124 250 301 148T480 45T481 251'], + + // LARGE CIRCLE + 0x25EF: [711,212,1150,65,1084,'65 42T65 250T204 584T574 711Q795 711 935 594Q955 577 974 555T1022 490T1067 385T1084 250Q1084 42 945 -84T574 -211T204 -85ZM1024 250Q1024 431 903 540T578 650Q482 650 404 627T274 565T189 474T140 366T125 250Q125 123 186 31T347 -106T573 -150Q772 -150 898 -45T1024 250'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/GeometricShapes.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js new file mode 100644 index 0000000..5ef7be7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/GreekAndCoptic.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // GREEK CAPITAL LETTER GAMMA + 0x393: [680,0,692,39,643,'425 0L228 3Q63 3 51 0H39V62H147V618H39V680H612V676Q614 670 627 552T643 428V424H581V428Q580 430 576 461T562 524T532 576Q512 596 481 605T426 616T357 618H304V62H439V0H425'], + + // GREEK CAPITAL LETTER DELTA + 0x394: [698,0,958,56,901,'901 12Q901 7 892 0H479Q65 0 62 2Q56 6 56 11Q56 14 242 347T433 685Q438 694 450 696Q454 698 480 698H506L523 687Q526 683 711 354T899 17Q901 13 901 12ZM653 137L427 538L202 137L315 136H540L653 137'], + + // GREEK CAPITAL LETTER THETA + 0x398: [696,10,894,64,830,'629 -10T446 -10T164 89T64 340Q64 380 71 420T102 510T163 596T266 662T418 696H438Q488 696 499 695Q582 686 644 655T741 584T796 495T823 409T829 338Q829 188 729 89ZM439 645Q416 645 390 638T333 615T275 564T236 480Q221 423 221 341Q221 272 230 228Q247 144 301 94T447 43T592 93T663 228Q672 272 672 341Q672 645 439 645ZM286 242V446H348V412H545V446H607V242H545V276H348V242H286'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [698,0,806,40,765,'285 0Q267 3 154 3Q56 3 47 0H40V62H131Q131 63 167 160T244 369T321 578T359 678Q366 698 393 698H404H413Q437 698 446 678Q448 672 560 369T674 62H765V0H754Q733 3 604 3Q453 3 429 0H416V62H461L507 63L355 470Q353 468 279 265L203 63L249 62H294V0H285'], + + // GREEK CAPITAL LETTER XI + 0x39E: [675,0,767,48,718,'54 465L63 674Q63 675 383 675T703 674L712 465Q712 464 681 464H650V467Q650 490 646 516T632 545Q612 550 383 550H283Q169 550 149 548T124 531Q123 530 123 529Q116 506 116 467V464H85Q54 464 54 465ZM160 256V447H222V414H544V447H606V256H544V289H222V256H160ZM57 0L48 222H110V219Q110 147 125 133Q127 130 130 129T160 127T235 126T383 126Q482 126 530 126T604 127T635 129T641 133Q656 146 656 219V222H718L709 0H57'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [680,0,900,39,860,'400 0Q376 3 226 3Q75 3 51 0H39V62H147V618H39V680H860V618H752V62H860V0H848Q824 3 674 3Q523 3 499 0H487V62H595V618H304V62H412V0H400'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [686,0,831,64,766,'766 271Q764 266 750 137T735 4V0H407Q74 0 71 4L70 5Q64 9 64 18Q64 24 82 41T213 158L359 288Q360 288 320 336T214 460Q67 633 66 635Q64 638 64 655Q64 679 75 684Q78 686 407 686H735V682Q738 676 751 558T766 434V430H735Q704 430 704 431Q704 434 703 444T696 477T681 520T654 563T613 598Q578 615 527 619T371 624H281L396 489Q506 358 513 351Q517 342 512 334Q503 325 371 208Q338 179 303 147T249 99L231 83L243 81Q258 81 364 81Q382 81 418 81T470 82T513 83T554 88T587 96T619 109T645 129Q689 173 702 260L704 274Q704 275 735 275H766V271'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [698,0,894,64,829,'64 556Q69 619 114 658T224 697Q271 697 310 677T375 622T417 554T444 484L447 477V479Q456 516 473 551T516 620T582 676T670 697Q735 697 780 656T829 556Q829 539 818 532H772Q761 539 761 548Q761 571 681 571Q664 571 653 570T623 562T587 537T555 490Q536 448 531 410T525 300V210V62H660V0H646L447 3Q257 1 247 0H233V62H368V210V301Q368 373 363 410T338 490Q324 518 307 536T270 561T240 569T212 571Q132 571 132 548Q132 539 121 532H75Q64 538 64 556'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [686,0,831,64,766,'609 0Q582 3 415 3T221 0H207V62H342V168L328 169Q193 180 117 241Q64 286 64 343T117 445Q193 506 328 517L342 518V624H207V686H221Q248 683 415 683T609 686H623V624H488V518L502 517Q637 506 713 445Q766 400 766 343T713 241Q637 180 502 169L488 168V62H623V0H609ZM342 219T342 343T340 467Q328 467 304 459Q277 451 261 439T237 409T228 378T226 343Q226 314 229 296T250 259T301 228Q331 219 341 219Q342 219 342 343ZM604 343Q604 365 602 379T591 413T560 446T503 464L489 467Q488 467 488 343T489 219Q499 219 529 228Q554 236 570 248T593 277T602 308T604 343'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [686,0,894,64,829,'64 515Q64 532 71 536T104 540H139Q200 540 207 538Q225 533 236 521T253 489T260 454T264 414Q264 340 287 296T347 237Q369 226 373 226Q374 226 374 425V624H239V686H253Q280 683 447 683T641 686H655V624H520V226L522 227Q525 228 531 229T552 240T580 261T606 298T624 354Q627 368 628 394T631 440T637 482T654 518T686 538Q693 540 754 540H794Q817 540 823 536T829 515Q829 500 824 495T811 489T796 483T782 461T775 408Q767 212 568 175Q526 168 521 168Q520 168 520 115V62H655V0H641Q614 3 447 3T253 0H239V62H374V168L364 169Q290 178 243 203Q126 261 118 409Q117 443 111 461T98 484T83 489T70 495T64 515'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [696,1,831,51,779,'598 645T415 645T232 458Q232 385 275 239T318 26Q318 8 311 4T272 -1Q265 -1 240 -1T196 0H88V3Q86 5 70 108Q52 211 51 212V215H113V212Q123 149 132 133Q136 124 149 122T202 118Q241 118 241 119Q241 132 132 277Q64 378 64 457Q64 564 158 630T403 696Q487 696 543 685T661 638Q722 599 744 549T766 458Q766 434 761 410T749 368T729 327T709 293T684 258T663 229Q632 187 614 160T592 126L589 119Q589 118 628 118Q667 119 680 121T698 133Q702 140 706 160T714 196L717 212V215H779V212Q778 211 760 108Q744 5 742 3V0H634H562Q528 0 520 4T512 26Q512 92 555 238T598 458Q598 645 415 645'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/GreekAndCoptic.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js new file mode 100644 index 0000000..dbe1adf --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js @@ -0,0 +1,50 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/Latin1Supplement.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // DIAERESIS + 0xA8: [695,-535,575,96,478,'96 615Q96 650 120 672T178 695Q214 693 234 669T255 615Q255 583 232 559T176 535Q147 535 122 556T96 615ZM319 615Q319 651 343 673T399 695Q426 695 452 675T478 615Q478 578 454 557T395 535Q364 537 342 559T319 615'], + + // NOT SIGN + 0xAC: [371,-61,767,64,703,'680 371Q683 369 688 366T695 361T698 356T701 346T701 332T702 308V216Q702 196 702 168T703 130Q703 90 697 76T671 61Q650 61 643 81Q641 86 641 198V310H364L87 311Q64 319 64 341Q64 362 84 369Q89 371 385 371H680'], + + // MACRON + 0xAF: [607,-540,575,80,494,'80 540V607H494V540H80'], + + // DEGREE SIGN + 0xB0: [702,-535,575,160,414,'160 618Q160 653 193 677T279 702H284Q381 702 407 647Q414 634 414 618Q414 607 410 596T395 570T355 546T287 536T220 545T181 568T165 594T160 618ZM352 618Q352 645 341 652T301 659H292Q286 659 278 659T268 660Q247 660 236 653T224 638T222 619Q222 591 234 585T287 578Q315 578 326 580T345 590T352 618'], + + // PLUS-MINUS SIGN + 0xB1: [728,35,894,64,829,'64 328T64 346T87 377H416V542L417 707Q431 728 443 728Q467 728 475 709Q477 704 477 540V377H807Q808 376 811 374T817 370T823 365T827 358T829 347Q829 326 807 317L642 316H477V25H807Q808 24 811 22T817 18T823 13T827 6T829 -5Q829 -26 807 -35H87Q64 -24 64 -6T87 25H416V316H251L87 317Q64 328 64 346'], + + // ACUTE ACCENT + 0xB4: [706,-503,575,236,460,'391 706Q419 706 439 683T460 634Q460 608 441 593T366 550Q356 545 351 543L275 503L256 527Q236 552 237 553Q242 558 292 620Q299 629 309 641T324 659T336 673T346 685T354 693T363 699T371 703T380 705T391 706'], + + // MULTIPLICATION SIGN + 0xD7: [530,28,894,168,726,'168 500Q168 515 178 522T195 530H198Q207 530 218 521T282 458Q312 428 331 409L447 294L563 409Q674 520 682 525Q687 529 695 529Q711 529 718 520T726 499V498Q726 489 720 481T666 427Q631 392 606 367L490 251L606 135Q717 23 721 17T726 2Q726 -9 719 -18T695 -28H692Q685 -28 674 -18T608 47Q581 74 563 92L447 207L331 91Q217 -22 208 -27Q206 -28 203 -28H197Q168 -28 168 2Q168 13 178 24T288 135L404 250L288 366Q177 479 173 485T168 500'], + + // DIVISION SIGN + 0xF7: [597,96,894,64,828,'344 495Q344 535 372 566T447 597Q490 597 519 566T548 495Q548 452 518 423T446 393Q404 393 374 423T344 495ZM87 221Q64 230 64 251T84 279Q89 281 448 281H806Q807 280 810 278T816 274T822 269T826 262T828 251Q828 230 806 221H87ZM344 -36T344 6T373 78T446 108Q487 108 517 79T548 6Q548 -35 519 -65T446 -96Q406 -96 375 -66'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/Latin1Supplement.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js new file mode 100644 index 0000000..721150f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/LatinExtendedA.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // LATIN SMALL LETTER DOTLESS I + 0x131: [452,8,394,24,367,'24 296Q24 305 34 328T63 380T115 430T187 452Q205 452 223 448T262 435T295 406T308 360Q308 345 287 290T240 170T207 87Q202 67 202 57Q202 42 215 42Q235 42 257 64Q288 92 302 140Q307 156 310 159T330 162H336H347Q367 162 367 148Q367 140 357 117T329 65T276 14T201 -8Q158 -8 121 15T83 84Q83 104 133 229T184 358Q189 376 189 388Q189 402 177 402Q156 402 134 380Q103 352 89 304Q84 288 81 285T61 282H55H44Q24 282 24 296'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js new file mode 100644 index 0000000..54d8cf5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/LatinExtendedB.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // LATIN SMALL LETTER DOTLESS J + 0x237: [451,201,439,-12,420,'297 360T297 373T294 392T288 400T278 401H276Q237 398 200 363Q181 343 170 325T156 299T149 287T129 282H123H116Q102 282 97 284T92 298Q93 303 98 315T118 349T151 390T201 427T267 451H279Q357 451 388 422T420 354V339L370 138Q321 -60 317 -69Q287 -157 163 -194Q133 -201 99 -201Q39 -201 14 -178T-12 -125Q-12 -94 11 -69T68 -43Q93 -43 108 -57T123 -95Q123 -121 100 -151H104Q131 -151 155 -125T193 -60Q195 -54 244 141T294 345Q297 360 297 373'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/LatinExtendedB.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js new file mode 100644 index 0000000..9ac19cc --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/LetterlikeSymbols.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // stix-/hbar - Planck's over 2pi + 0x210F: [694,8,668,45,642,'477 56Q477 48 479 46T490 43Q522 45 544 75T577 140Q582 156 585 159T605 162H611H622Q642 162 642 148Q642 138 632 114T602 62T550 13T478 -8Q429 -8 394 17T358 83Q358 95 395 199T433 350Q433 400 394 400H388H383Q335 400 291 363Q256 332 236 298Q233 293 202 170T169 40Q160 18 141 5T99 -8Q70 -8 58 9T45 39Q45 51 116 336L167 540H80V607H184L188 622H184Q183 622 179 622T169 623T157 624T146 624T136 624T131 625Q119 628 119 642Q119 647 123 661T129 679Q133 684 142 685T220 690Q293 694 307 694Q324 694 328 679Q328 673 311 607H494V540H294Q286 507 278 473T264 420L260 403Q260 400 269 408Q327 451 393 451H401H410Q425 451 439 450T476 442T515 424T544 391T556 337Q556 286 517 179T477 56'], + + // BLACK-LETTER CAPITAL I + 0x2111: [702,8,831,64,798,'65 502Q65 564 99 611T174 680T250 701Q251 701 257 701T269 702Q319 702 374 680T466 633T542 578T592 542L602 538L621 537Q669 537 695 542T725 550T730 560Q732 570 736 572T756 575H764H777Q798 575 798 559Q798 535 780 519Q762 500 727 493T622 486Q532 486 483 504T386 572Q382 576 371 588T355 603T341 616T327 628T313 637T298 645T282 649T264 651Q215 651 174 609T132 501Q132 434 184 393T312 347Q327 346 330 343T333 322T330 301T312 296Q276 296 236 307T157 341T91 406T65 502ZM406 314Q406 351 427 378T480 418T541 437T598 443Q645 443 655 442Q722 435 760 407T798 338Q798 326 794 324T772 321H764Q739 321 734 325T729 341T717 365Q690 392 618 392H611Q586 392 572 366Q561 345 561 315Q561 291 577 275Q595 260 643 241T706 211Q747 186 747 140Q747 78 696 39Q667 15 617 1Q578 -8 480 -8H439Q379 -8 345 5T228 74Q182 105 152 119T86 137Q71 138 68 142T64 164Q64 175 64 177T68 184T78 188T99 188H151L226 187L238 185Q275 176 305 158T376 106T443 54Q478 31 489 31H490Q494 32 500 34T524 43T554 62T579 92T593 135Q593 162 575 179T533 204T479 225T432 255Q406 278 406 314'], + + // SCRIPT SMALL L + 0x2113: [702,19,474,-1,446,'245 -19Q228 -19 212 -16T184 -6T162 9T143 27T129 46T118 66T111 84T106 99T102 111L101 116L69 89L36 62Q31 60 24 62Q-1 88 -1 98Q-1 101 1 105Q1 106 73 170L95 189V197Q95 242 112 317T159 476T241 624T353 701Q357 702 367 702Q428 702 444 641Q446 630 446 606Q446 454 241 246L215 220L212 203Q203 150 203 114Q203 113 203 106T204 95T205 82T209 67T214 54T223 43T236 35T253 32Q277 32 305 44T352 70T389 98T407 112Q409 113 412 113Q420 113 432 95Q445 77 443 70Q440 64 416 44T342 3T245 -19ZM387 615Q387 651 366 651Q342 651 321 604T276 470L241 331Q246 331 280 373T350 486T387 615'], + + // SCRIPT CAPITAL P + 0x2118: [461,210,740,72,726,'399 159Q410 159 421 151T433 126Q433 104 410 85Q408 84 410 78Q411 72 414 66T428 51T455 43Q483 43 506 55T543 83T568 125T584 166T594 206Q595 211 596 214Q610 273 610 301Q610 365 542 365H538Q483 365 429 344T337 292T269 229T225 175T210 150L255 99Q261 92 274 78T292 58T305 41T316 22T321 3T324 -23Q324 -87 283 -148T174 -210H171Q161 -210 152 -209T128 -201T101 -180T81 -141T72 -78Q72 -72 72 -60T73 -45Q79 4 102 65L108 81Q84 117 84 167Q84 273 140 367T269 461Q285 461 285 447Q285 440 282 431Q278 418 276 415T264 410Q228 404 201 336T174 219Q174 218 176 202L184 214Q252 303 348 360T549 417Q614 417 658 391T719 317Q726 292 726 260Q726 148 646 70T451 -8Q407 -8 377 17T346 92Q346 159 396 159H399ZM178 -160Q200 -160 216 -132T232 -75Q232 -63 228 -56T203 -26Q196 -18 192 -14Q185 -5 176 5T161 20T156 27L153 28Q151 28 146 8T137 -42T132 -89Q132 -160 178 -160'], + + // BLACK-LETTER CAPITAL R + 0x211C: [711,16,831,42,824,'133 87Q166 34 218 34Q232 34 238 47T247 99Q248 105 248 127Q248 135 248 144T247 169T245 239T243 382Q242 534 241 565T234 612Q219 651 190 651Q168 651 151 630T134 580Q134 565 148 548T178 516T209 468T223 394Q218 243 131 243Q102 243 84 266T64 319Q64 334 69 337T95 340Q117 340 121 337T126 317Q127 294 133 294Q140 294 146 318Q150 339 150 382L151 413Q141 437 103 485T64 572Q64 623 100 662T197 702Q235 702 273 684T339 634Q407 702 610 710Q615 710 630 710T651 711Q673 711 677 709Q682 706 753 578T824 444Q824 437 817 432Q799 420 758 399T686 361T654 344T657 289T665 177T670 115Q676 78 708 46L735 69Q762 93 769 93L807 73Q812 68 812 62Q812 57 805 51T759 18L710 -16H680H669Q617 -16 573 17Q527 52 515 114Q514 118 508 218T501 326V330H397V281Q397 197 384 135T327 28Q281 -16 223 -16H220Q180 -16 151 -7T107 18T86 46T78 68L74 67Q64 67 53 78T42 97Q42 106 51 109T60 114V119Q60 120 60 122L59 124Q59 129 64 135T78 149T91 160Q102 163 109 155Q115 133 119 133Q124 133 137 123T150 102Q150 98 146 94Q144 90 133 87ZM664 419L540 644H535Q517 644 487 637Q396 621 371 582L376 571Q396 512 397 435V392H494Q598 393 610 396Q611 397 615 398Q626 401 645 409T664 419'], + + // ALEF SYMBOL + 0x2135: [694,0,703,64,638,'590 427Q581 427 579 433T575 450T568 470V468L532 288L541 281Q620 220 634 165L637 154V124Q637 74 628 46Q623 32 612 16T592 0Q580 0 578 19T569 69T538 121Q532 126 385 240T236 355Q234 355 231 338T225 291T222 237Q222 222 223 213T225 201T228 195T231 190Q238 179 261 160T300 119T316 73Q316 41 291 23T231 1Q226 0 149 0H98Q73 0 69 3T64 24Q64 43 67 47T85 51H89Q119 51 134 55T152 64T154 76Q154 95 125 141T96 220Q96 243 104 270T123 319T145 360T164 391T172 404T150 421T102 468T68 529L65 541V570Q65 620 74 648Q79 664 91 679T111 694Q122 694 123 675T132 625T164 573Q168 569 319 452T471 335Q471 337 486 409T502 488Q502 489 491 493T467 511T448 546V573Q448 602 452 624T462 659T474 680T486 691T493 694Q499 694 502 691T507 682T513 673Q517 667 534 651T557 630Q558 629 590 616T631 587Q638 577 638 543Q637 489 622 458T590 427'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Main.js new file mode 100644 index 0000000..a53eac9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/Main.js @@ -0,0 +1,217 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'] = { + directory: 'Main/Bold', + family: 'MathJax_Main', + id: 'MJMAINB', + weight: 'bold', + skew: { + 0x131: 0.0319, + 0x237: 0.0958, + 0x210F: -0.0319, + 0x2113: 0.128, + 0x2202: 0.0958 + }, + Ranges: [ + [0x20,0x7F,"BasicLatin"], + [0xA0,0xFF,"Latin1Supplement"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x20D0,0x20FF,"CombDiactForSymbols"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2190,0x21FF,"Arrows"], + [0x2200,0x22FF,"MathOperators"], + [0x2300,0x23FF,"MiscTechnical"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x27C0,0x27EF,"MiscMathSymbolsA"], + [0x27F0,0x27FF,"SupplementalArrowsA"], + [0x2A00,0x2AFF,"SuppMathOperators"] + ], + + // LEFT PARENTHESIS + 0x28: [750,249,447,103,382,'103 166T103 251T121 412T165 541T225 639T287 708T341 750H356H361Q382 750 382 736Q382 732 365 714T323 661T274 576T232 439T214 250Q214 -62 381 -229Q382 -231 382 -234Q382 -249 360 -249H356H341Q314 -231 287 -207T226 -138T165 -41T121 89'], + + // RIGHT PARENTHESIS + 0x29: [751,249,447,64,344,'231 251Q231 354 214 439T173 575T123 661T81 714T64 735Q64 744 73 749H75Q77 749 79 749T84 750T90 750H105Q132 732 159 708T220 639T281 542T325 413T343 251T325 89T281 -40T221 -138T159 -207T105 -249H90Q80 -249 76 -249T68 -245T64 -234Q64 -230 81 -212T123 -160T172 -75T214 61T231 251'], + + // PLUS SIGN + 0x2B: [633,131,894,64,829,'64 232T64 250T87 281H416V444Q416 608 418 612Q426 633 446 633T475 613Q477 608 477 444V281H807Q808 280 811 278T817 274T823 269T827 262T829 251Q829 230 807 221L642 220H477V57Q477 -107 475 -112Q468 -131 446 -131Q425 -131 418 -112Q416 -107 416 57V220H251L87 221Q64 232 64 250'], + + // COMMA + 0x2C: [171,194,319,74,258,'74 85Q74 120 97 145T159 171Q200 171 226 138Q258 101 258 37Q258 -5 246 -44T218 -109T183 -155T152 -184T135 -194Q129 -194 118 -183T106 -164Q106 -157 115 -149Q121 -145 130 -137T161 -100T195 -35Q197 -28 200 -17T204 3T205 11T199 9T183 3T159 0Q120 0 97 26T74 85'], + + // FULL STOP + 0x2E: [171,-1,319,74,245,'74 85Q74 121 99 146T156 171Q200 171 222 143T245 85Q245 56 224 29T160 1Q118 1 96 27T74 85'], + + // SOLIDUS + 0x2F: [750,250,575,64,510,'451 730Q460 750 479 750Q492 750 501 740T510 718Q508 708 318 244L122 -232Q112 -250 95 -250Q82 -250 73 -241T64 -218Q66 -205 258 261T451 730'], + + // DIGIT ZERO + 0x30: [654,10,575,45,529,'266 654H280H282Q500 654 524 418Q529 370 529 320Q529 125 456 52Q397 -10 287 -10Q110 -10 63 154Q45 212 45 316Q45 504 113 585Q140 618 185 636T266 654ZM374 548Q347 604 286 604Q247 604 218 575Q197 552 193 511T188 311Q188 159 196 116Q202 87 225 64T287 41Q339 41 367 87Q379 107 382 152T386 329Q386 518 374 548'], + + // DIGIT ONE + 0x31: [655,0,575,80,494,'481 0L294 3Q136 3 109 0H96V62H227V304Q227 546 225 546Q169 529 97 529H80V591H97Q231 591 308 647L319 655H333Q355 655 359 644Q361 640 361 351V62H494V0H481'], + + // DIGIT TWO + 0x32: [654,0,575,57,517,'175 580Q175 578 185 572T205 551T215 510Q215 467 191 449T137 430Q107 430 83 448T58 511Q58 558 91 592T168 640T259 654Q328 654 383 637Q451 610 484 563T517 459Q517 401 482 360T368 262Q340 243 265 184L210 140H274Q416 140 429 145Q439 148 447 186T455 237H517V233Q516 230 501 119Q489 9 486 4V0H57V25Q57 51 58 54Q60 57 109 106T215 214T288 291Q364 377 364 458Q364 515 328 553T231 592Q214 592 201 589T181 584T175 580'], + + // DIGIT THREE + 0x33: [655,11,575,47,526,'80 503Q80 565 133 610T274 655Q366 655 421 623T491 538Q493 528 493 510Q493 446 453 407T361 348L376 344Q452 324 489 281T526 184Q526 152 514 121T474 58T392 8T265 -11Q175 -11 111 34T48 152Q50 187 72 209T132 232Q171 232 193 208T216 147Q216 136 214 126T207 108T197 94T187 84T178 77T170 72L168 71Q168 70 179 65T215 54T266 48H270Q331 48 350 105Q358 128 358 185Q358 239 348 268T309 313Q292 321 242 322Q205 322 198 324T191 341V348Q191 366 196 369T232 375Q239 375 247 376T260 377T268 378Q284 383 297 393T326 436T341 517Q341 536 339 547T331 573T308 593T266 600Q248 600 241 599Q214 593 183 576Q234 556 234 503Q234 462 210 444T157 426Q126 426 103 446T80 503'], + + // DIGIT FOUR + 0x34: [656,0,575,32,542,'531 0Q510 3 381 3Q238 3 214 0H201V62H313V155H32V217L205 434Q342 606 362 630T387 655L391 656Q395 656 401 656T414 656H427Q447 656 451 645Q453 641 453 429V217H542V155H453V62H542V0H531ZM324 217V494L103 218L213 217H324'], + + // DIGIT FIVE + 0x35: [655,11,575,57,517,'100 565V605Q100 637 102 646T113 655Q116 655 139 647T202 631T286 623Q332 623 372 631T434 647T459 655Q466 655 469 651T472 643T472 629Q472 613 463 601Q370 487 219 487Q195 487 183 488T169 490T168 433V376Q169 376 174 379T188 387T211 397T244 405T288 409Q390 409 453 352T517 201Q517 106 445 48T253 -11Q169 -11 113 37T57 154Q57 187 79 208T131 229T183 209T206 154Q206 99 155 83Q152 82 157 78Q196 47 253 47Q347 47 358 135Q358 137 358 138Q360 158 360 209Q360 277 355 301T337 338Q315 358 282 358Q202 358 160 303Q153 294 149 292T130 290Q107 290 102 301Q100 304 100 474V565'], + + // DIGIT SIX + 0x36: [655,11,575,48,526,'48 318Q48 395 68 456T120 553T193 613T273 646T350 655Q425 655 461 616T497 524Q497 485 475 468T428 451Q399 451 378 470T357 521Q357 565 403 588Q375 601 351 601Q313 601 282 584Q242 565 222 526Q199 473 199 367Q201 369 210 380T227 396T246 410T275 422T312 426Q438 426 494 332Q526 285 526 208V199Q526 112 465 53Q428 17 388 3T285 -11Q236 -11 195 7T135 43T104 80Q48 165 48 318ZM375 231V244V268Q375 295 373 310T364 342T341 366T299 374H297Q231 374 208 287Q200 257 200 196Q201 120 209 100Q231 47 288 47Q351 47 368 90Q375 112 375 231'], + + // DIGIT SEVEN + 0x37: [676,11,575,64,558,'256 -11Q231 -11 208 5T185 65Q185 105 193 146T212 220T241 289T275 349T312 402T346 445T377 479T397 502L400 504H301Q156 503 150 497Q142 491 134 456T126 407H64V411Q65 414 82 544T99 675T130 676H161V673Q161 669 162 666T167 661T173 657T181 654T190 652T200 651T210 650T220 649T229 648Q237 648 254 647T276 646Q277 646 426 644H558V620V607Q558 596 551 586T509 537Q489 515 476 500Q390 401 384 393Q349 339 337 259T324 113T322 38Q307 -11 256 -11'], + + // DIGIT EIGHT + 0x38: [654,11,575,48,526,'80 474Q80 561 139 607T278 654Q357 654 411 632Q490 593 494 509Q494 424 416 376L407 371L418 364Q432 356 447 345T481 312T513 260T526 192Q526 100 461 45T285 -11Q184 -11 116 32T48 164Q48 181 50 196T58 225T69 249T84 270T100 286T117 300T134 311T149 321T162 329L152 336Q120 360 100 397T80 474ZM347 404Q404 446 404 503Q404 579 317 599Q309 600 276 600Q178 600 170 538Q170 532 171 527T173 518T178 509T184 501T194 492T205 484T219 476T235 467T254 456T275 445L347 404ZM289 47Q323 47 351 54T402 82T425 137Q425 147 421 161Q411 183 391 197T303 249Q224 293 223 293Q220 291 215 288T197 273T175 248T157 213T149 167Q149 109 188 78T289 47'], + + // DIGIT NINE + 0x39: [654,11,575,48,526,'178 59Q206 48 238 48Q311 48 345 102Q370 138 375 259V278Q374 278 369 271T350 252T322 232Q297 220 258 220Q172 220 110 275T48 438V446Q54 561 146 618Q199 654 278 654Q321 654 329 653Q526 621 526 330Q526 252 507 190T457 92T388 31T312 -2T240 -11Q165 -11 121 25T77 120Q77 159 99 176T147 193T194 177T217 122Q217 113 216 106T211 92T205 82T198 73T191 67T184 62T178 59ZM374 446V465Q374 523 364 552T315 598Q309 600 293 601Q227 601 210 562Q199 539 199 433Q199 343 204 319T235 279Q250 272 274 271H282Q293 271 303 274T327 288T353 323T371 385Q374 403 374 446'], + + // COLON + 0x3A: [444,-1,319,74,245,'74 359Q74 394 98 419T158 444Q200 444 222 417T245 358Q245 329 224 302T160 274Q116 274 95 301T74 359ZM74 85Q74 121 99 146T156 171Q200 171 222 143T245 85Q245 56 224 29T160 1Q118 1 96 27T74 85'], + + // SEMICOLON + 0x3B: [444,194,319,74,248,'74 359Q74 394 98 419T158 444Q200 444 222 417T245 358Q245 329 224 302T160 274Q116 274 95 301T74 359ZM74 50T74 86T97 146T158 171Q204 171 226 132T248 38Q248 -23 223 -80T171 -165T135 -194Q129 -194 118 -183T106 -164Q106 -163 106 -160L107 -158Q108 -155 121 -142T150 -107T177 -58Q189 -32 194 3Q195 6 193 6Q172 0 158 0Q121 0 98 25'], + + // LESS-THAN SIGN + 0x3C: [587,85,894,96,797,'797 -56Q797 -68 790 -76T767 -85H759L434 70Q108 226 105 229Q96 238 96 250Q96 263 105 272Q109 276 271 354T595 508T757 585Q763 587 766 587Q780 587 788 578T797 556Q797 544 788 535Q784 531 490 391L197 251Q213 242 359 173T644 37T788 -34Q797 -43 797 -56'], + + // EQUALS SIGN + 0x3D: [393,-109,894,64,829,'87 333Q64 343 64 362Q64 383 84 391Q89 393 448 393H807Q808 392 811 390T817 386T823 381T827 374T829 363Q829 345 807 333H87ZM87 109Q64 118 64 139Q64 159 86 168Q89 169 448 169H807L812 166Q816 163 818 162T823 157T827 149T829 139Q829 118 807 109H87'], + + // GREATER-THAN SIGN + 0x3E: [587,85,894,96,797,'127 -85Q110 -85 103 -75T96 -55Q96 -41 106 -34Q119 -24 308 65Q361 90 411 114L696 250L427 379Q106 533 103 537Q96 545 96 557Q96 568 104 577T128 587Q137 586 460 431T788 272Q797 263 797 250Q797 238 788 229Q785 226 459 70L135 -85H127'], + + // LEFT SQUARE BRACKET + 0x5B: [750,250,319,128,293,'128 -250V750H293V689H189V-189H293V-250H128'], + + // REVERSE SOLIDUS + 0x5C: [750,250,575,63,511,'64 718Q63 731 72 740T94 750Q106 750 113 743Q118 741 122 732L318 256Q508 -208 510 -218Q511 -231 502 -240T480 -250Q460 -250 451 -230Q451 -229 259 238T64 718'], + + // RIGHT SQUARE BRACKET + 0x5D: [750,250,319,25,190,'25 689V750H190V-250H25V-189H129V689H25'], + + // CIRCUMFLEX ACCENT + 0x5E: [694,-520,575,126,449,'207 632L287 694Q289 693 368 632T448 570T431 545T413 520Q410 520 350 559L287 597L224 559Q164 520 161 520Q160 520 143 544T126 570T207 632'], + + // LATIN SMALL LETTER A + 0x61: [453,6,559,32,558,'64 349Q64 399 107 426T255 453Q346 453 402 423T473 341Q478 327 478 310T479 196V77Q493 63 529 62Q549 62 553 57T558 31Q558 9 552 5T514 0H497H481Q375 0 367 56L356 46Q300 -6 210 -6Q130 -6 81 30T32 121Q32 188 111 226T332 272H350V292Q350 313 348 327T337 361T306 391T248 402T194 399H189Q204 376 204 354Q204 327 187 306T134 284Q97 284 81 305T64 349ZM164 121Q164 89 186 67T238 45Q274 45 307 63T346 108L350 117V226H347Q248 218 206 189T164 121'], + + // LATIN SMALL LETTER B + 0x62: [694,6,639,29,600,'32 686L123 690Q214 694 215 694H221V409Q289 450 378 450Q479 450 539 387T600 221Q600 122 535 58T358 -6H355Q272 -6 203 53L160 1L129 0H98V301Q98 362 98 435T99 525Q99 591 97 604T83 620Q69 624 42 624H29V686H32ZM227 105L232 99Q237 93 242 87T258 73T280 59T306 49T339 45Q380 45 411 66T451 131Q457 160 457 230Q457 264 456 284T448 329T430 367T396 389T343 398Q282 398 235 355L227 348V105'], + + // LATIN SMALL LETTER C + 0x63: [453,6,511,39,478,'447 131H458Q478 131 478 117Q478 112 471 95T439 51T377 9Q330 -6 286 -6Q196 -6 135 35Q39 96 39 222Q39 324 101 384Q169 453 286 453Q359 453 411 431T464 353Q464 319 445 302T395 284Q360 284 343 305T325 353Q325 380 338 396H333Q317 398 295 398H292Q280 398 271 397T245 390T218 373T197 338T183 283Q182 275 182 231Q182 199 184 180T193 132T220 85T270 57Q289 50 317 50H326Q385 50 414 115Q419 127 423 129T447 131'], + + // LATIN SMALL LETTER D + 0x64: [694,6,639,38,609,'351 686L442 690Q533 694 534 694H540V389Q540 327 540 253T539 163Q539 97 541 83T555 66Q569 62 596 62H609V31Q609 0 608 0Q588 0 510 -3T412 -6Q411 -6 411 16V38L401 31Q337 -6 265 -6Q159 -6 99 58T38 224Q38 265 51 303T92 375T165 429T272 449Q359 449 417 412V507V555Q417 597 415 607T402 620Q388 624 361 624H348V686H351ZM411 350Q362 399 291 399Q278 399 256 392T218 371Q195 351 189 320T182 238V221Q182 179 183 159T191 115T212 74Q241 46 288 46Q358 46 404 100L411 109V350'], + + // LATIN SMALL LETTER E + 0x65: [452,6,527,32,494,'32 225Q32 332 102 392T272 452H283Q382 452 436 401Q494 343 494 243Q494 226 486 222T440 217Q431 217 394 217T327 218H175V209Q175 177 179 154T196 107T236 69T306 50Q312 49 323 49Q376 49 410 85Q421 99 427 111T434 127T442 133T463 135H468Q494 135 494 117Q494 110 489 97T468 66T431 32T373 5T292 -6Q181 -6 107 55T32 225ZM383 276Q377 346 348 374T280 402Q253 402 230 390T195 357Q179 331 176 279V266H383V276'], + + // LATIN SMALL LETTER F + 0x66: [700,0,351,40,453,'308 0Q290 3 172 3Q58 3 49 0H40V62H109V382H42V444H109V503L110 562L112 572Q127 625 178 658T316 699Q318 699 330 699T348 700Q381 698 404 687T436 658T449 629T452 606Q452 576 432 557T383 537Q355 537 335 555T314 605Q314 635 328 649H325Q311 649 293 644T253 618T227 560Q226 555 226 498V444H340V382H232V62H318V0H308'], + + // LATIN SMALL LETTER G + 0x67: [455,201,575,30,559,'50 300Q50 368 105 409T255 450Q328 450 376 426L388 420Q435 455 489 455Q517 455 533 441T554 414T558 389Q558 367 544 353T508 339Q484 339 471 354T458 387Q458 397 462 400Q464 401 461 400Q459 400 454 399Q429 392 427 390Q454 353 459 328Q461 315 461 300Q461 240 419 202Q364 149 248 149Q185 149 136 172Q129 158 129 148Q129 105 170 93Q176 91 263 91Q273 91 298 91T334 91T366 89T400 85T432 77T466 64Q544 22 544 -69Q544 -114 506 -145Q438 -201 287 -201Q149 -201 90 -161T30 -70Q30 -58 33 -47T42 -27T54 -13T69 -1T82 6T94 12T101 15Q66 57 66 106Q66 151 90 187L97 197L89 204Q50 243 50 300ZM485 403H492Q491 404 488 404L485 403V403ZM255 200Q279 200 295 206T319 219T331 242T335 268T336 300Q336 337 333 352T317 380Q298 399 255 399Q228 399 211 392T187 371T178 345T176 312V300V289Q176 235 194 219Q215 200 255 200ZM287 -150Q357 -150 400 -128T443 -71Q443 -65 442 -61T436 -50T420 -37T389 -27T339 -21L308 -20Q276 -20 253 -20Q190 -20 180 -20T156 -26Q130 -38 130 -69Q130 -105 173 -127T287 -150'], + + // LATIN SMALL LETTER H + 0x68: [694,0,639,37,623,'40 686L131 690Q222 694 223 694H229V533L230 372L238 381Q248 394 264 407T317 435T398 450Q428 450 448 447T491 434T529 402T551 346Q553 335 554 198V62H623V0H614Q596 3 489 3Q374 3 365 0H356V62H425V194V275Q425 348 416 373T371 399Q326 399 288 370T238 290Q236 281 235 171V62H304V0H295Q277 3 171 3Q64 3 46 0H37V62H106V332Q106 387 106 453T107 534Q107 593 105 605T91 620Q77 624 50 624H37V686H40'], + + // LATIN SMALL LETTER I + 0x69: [695,0,319,40,294,'72 610Q72 649 98 672T159 695Q193 693 217 670T241 610Q241 572 217 549T157 525Q120 525 96 548T72 610ZM46 442L136 446L226 450H232V62H294V0H286Q271 3 171 3Q67 3 49 0H40V62H109V209Q109 358 108 362Q103 380 55 380H43V442H46'], + + // LATIN SMALL LETTER J + 0x6A: [695,200,351,-71,274,'104 610Q104 649 130 672T191 695Q225 693 249 670T273 610Q273 572 249 549T189 525Q152 525 128 548T104 610ZM78 442L173 446L268 450H274V196Q274 -5 274 -37T269 -83Q256 -132 201 -166T71 -200Q10 -200 -30 -173T-71 -102Q-71 -70 -51 -51T-1 -31Q27 -31 48 -49T69 -100Q69 -121 53 -147H56Q66 -149 77 -149H80Q90 -149 100 -146T127 -125T149 -73Q151 -55 151 149V362Q150 364 148 366T145 370T142 373T138 375T133 377T124 378T113 379T97 380H75V442H78'], + + // LATIN SMALL LETTER K + 0x6B: [694,0,607,29,587,'32 686L123 690Q214 694 215 694H221V255L377 382H346V444H355Q370 441 476 441Q544 441 556 444H562V382H476L347 277L515 62H587V0H579Q564 3 476 3Q370 3 352 0H343V62H358L373 63L260 206L237 189L216 172V62H285V0H277Q259 3 157 3Q46 3 37 0H29V62H98V332Q98 387 98 453T99 534Q99 593 97 605T83 620Q69 624 42 624H29V686H32'], + + // LATIN SMALL LETTER L + 0x6C: [694,0,319,40,301,'43 686L134 690Q225 694 226 694H232V62H301V0H292Q274 3 170 3Q67 3 49 0H40V62H109V332Q109 387 109 453T110 534Q110 593 108 605T94 620Q80 624 53 624H40V686H43'], + + // LATIN SMALL LETTER M + 0x6D: [450,0,958,37,942,'40 442Q217 450 218 450H224V365Q226 367 235 378T254 397T278 416T314 435T362 448Q376 450 400 450H406Q503 450 534 393Q545 376 545 370Q545 368 555 379Q611 450 716 450Q774 450 809 434Q850 414 861 379T873 276V213V198V62H942V0H933Q915 3 809 3Q702 3 684 0H675V62H744V194V275Q744 348 735 373T690 399Q645 399 607 370T557 290Q555 281 554 171V62H623V0H614Q596 3 489 3Q374 3 365 0H356V62H425V194V275Q425 348 416 373T371 399Q326 399 288 370T238 290Q236 281 235 171V62H304V0H295Q277 3 171 3Q64 3 46 0H37V62H106V210V303Q106 353 104 363T91 376Q77 380 50 380H37V442H40'], + + // LATIN SMALL LETTER N + 0x6E: [450,0,639,37,623,'40 442Q217 450 218 450H224V407L225 365Q233 378 245 391T289 422T362 448Q374 450 398 450Q428 450 448 447T491 434T529 402T551 346Q553 335 554 198V62H623V0H614Q596 3 489 3Q374 3 365 0H356V62H425V194V275Q425 348 416 373T371 399Q326 399 288 370T238 290Q236 281 235 171V62H304V0H295Q277 3 171 3Q64 3 46 0H37V62H106V210V303Q106 353 104 363T91 376Q77 380 50 380H37V442H40'], + + // LATIN SMALL LETTER O + 0x6F: [453,5,575,32,542,'287 -5Q228 -5 182 10T109 48T63 102T39 161T32 219Q32 272 50 314T94 382T154 423T214 446T265 452H279Q319 452 326 451Q428 439 485 376T542 221Q542 156 514 108T442 33Q384 -5 287 -5ZM399 230V250Q399 280 398 298T391 338T372 372T338 392T282 401Q241 401 212 380Q190 363 183 334T175 230Q175 202 175 189T177 153T183 118T195 91T215 68T245 56T287 50Q348 50 374 84Q388 101 393 132T399 230'], + + // LATIN SMALL LETTER P + 0x70: [450,194,639,29,600,'32 442L123 446Q214 450 215 450H221V409Q222 409 229 413T251 423T284 436T328 446T382 450Q480 450 540 388T600 223Q600 128 539 61T361 -6H354Q292 -6 236 28L227 34V-132H296V-194H287Q269 -191 163 -191Q56 -191 38 -194H29V-132H98V113V284Q98 330 97 348T93 370T83 376Q69 380 42 380H29V442H32ZM457 224Q457 303 427 349T350 395Q282 395 235 352L227 345V104L233 97Q274 45 337 45Q383 45 420 86T457 224'], + + // LATIN SMALL LETTER Q + 0x71: [450,194,607,38,609,'38 220Q38 273 54 314T95 380T152 421T211 443T264 449Q368 449 429 386L438 377L484 450H540V-132H609V-194H600Q582 -191 475 -191Q360 -191 351 -194H342V-132H411V42Q409 41 399 34T383 25T367 16T347 7T324 1T296 -4T264 -6Q162 -6 100 56T38 220ZM287 46Q368 46 417 127V301L412 312Q398 347 369 371T302 395Q282 395 263 388T225 362T194 308T182 221Q182 126 214 86T287 46'], + + // LATIN SMALL LETTER R + 0x72: [450,0,474,29,442,'405 293T374 293T324 312T305 361Q305 378 312 394Q315 397 315 399Q305 399 294 394T266 375T238 329T222 249Q221 241 221 149V62H308V0H298Q280 3 161 3Q47 3 38 0H29V62H98V210V303Q98 353 96 363T83 376Q69 380 42 380H29V442H32L118 446Q204 450 205 450H210V414L211 378Q247 449 315 449H321Q384 449 413 422T442 360Q442 332 424 313'], + + // LATIN SMALL LETTER S + 0x73: [453,6,454,37,414,'38 315Q38 339 45 360T70 404T127 440T223 453Q273 453 320 436L338 445L357 453H366Q380 453 383 447T386 403V387V355Q386 331 383 326T365 321H355H349Q333 321 329 324T324 341Q317 406 224 406H216Q123 406 123 353Q123 334 143 321T188 304T244 294T285 286Q305 281 325 273T373 237T412 172Q414 162 414 142Q414 -6 230 -6Q154 -6 117 22L68 -6H58Q44 -6 41 0T38 42V73Q38 85 38 101T37 122Q37 144 42 148T68 153H75Q87 153 91 151T97 147T103 132Q131 46 220 46H230Q257 46 265 47Q330 58 330 108Q330 127 316 142Q300 156 284 162Q271 168 212 178T122 202Q38 243 38 315'], + + // LATIN SMALL LETTER T + 0x74: [635,5,447,21,382,'272 49Q320 49 320 136V145V177H382V143Q382 106 380 99Q374 62 349 36T285 -2L272 -5H247Q173 -5 134 27Q109 46 102 74T94 160Q94 171 94 199T95 245V382H21V433H25Q58 433 90 456Q121 479 140 523T162 621V635H224V444H363V382H224V239V207V149Q224 98 228 81T249 55Q261 49 272 49'], + + // LATIN SMALL LETTER U + 0x75: [450,6,639,37,623,'40 442L134 446Q228 450 229 450H235V273V165Q235 90 238 74T254 52Q268 46 304 46H319Q352 46 380 67T419 121L420 123Q424 135 425 199Q425 201 425 207Q425 233 425 249V316Q425 354 423 363T410 376Q396 380 369 380H356V442L554 450V267Q554 84 556 79Q561 62 610 62H623V31Q623 0 622 0Q603 0 527 -3T432 -6Q431 -6 431 25V56L420 45Q373 6 332 -1Q313 -6 281 -6Q208 -6 165 14T109 87L107 98L106 230Q106 358 104 366Q96 380 50 380H37V442H40'], + + // LATIN SMALL LETTER V + 0x76: [444,4,607,26,580,'401 444Q413 441 495 441Q568 441 574 444H580V382H510L409 156Q348 18 339 6Q331 -4 320 -4Q318 -4 313 -4T303 -3H288Q273 -3 264 12T221 102Q206 135 197 156L96 382H26V444H34Q49 441 145 441Q252 441 270 444H279V382H231L284 264Q335 149 338 149Q338 150 389 264T442 381Q442 382 418 382H394V444H401'], + + // LATIN SMALL LETTER W + 0x77: [444,4,831,25,805,'624 444Q636 441 722 441Q797 441 800 444H805V382H741L593 11Q592 10 590 8T586 4T584 2T581 0T579 -2T575 -3T571 -3T567 -4T561 -4T553 -4H542Q525 -4 518 6T490 70Q474 110 463 137L415 257L367 137Q357 111 341 72Q320 17 313 7T289 -4H277Q259 -4 253 -2T238 11L90 382H25V444H32Q47 441 140 441Q243 441 261 444H270V382H222L310 164L382 342L366 382H303V444H310Q322 441 407 441Q508 441 523 444H531V382H506Q481 382 481 380Q482 376 529 259T577 142L674 382H617V444H624'], + + // LATIN SMALL LETTER X + 0x78: [444,0,607,21,586,'227 0Q212 3 121 3Q40 3 28 0H21V62H117L245 213L109 382H26V444H34Q49 441 143 441Q247 441 265 444H274V382H246L281 339Q315 297 316 297Q320 297 354 341L389 382H352V444H360Q375 441 466 441Q547 441 559 444H566V382H471L355 246L504 63L545 62H586V0H578Q563 3 469 3Q365 3 347 0H338V62H366Q366 63 326 112T285 163L198 63L217 62H235V0H227'], + + // LATIN SMALL LETTER Y + 0x79: [444,200,607,23,580,'84 -102Q84 -110 87 -119T102 -138T133 -149Q148 -148 162 -143T186 -131T206 -114T222 -95T234 -76T243 -59T249 -45T252 -37L269 0L96 382H26V444H34Q49 441 146 441Q252 441 270 444H279V382H255Q232 382 232 380L337 151L442 382H394V444H401Q413 441 495 441Q568 441 574 444H580V382H510L406 152Q298 -84 297 -87Q269 -139 225 -169T131 -200Q85 -200 54 -172T23 -100Q23 -64 44 -50T87 -35Q111 -35 130 -50T152 -92V-100H84V-102'], + + // LATIN SMALL LETTER Z + 0x7A: [445,0,511,32,462,'48 262Q48 264 54 349T60 436V444H252Q289 444 336 444T394 445Q441 445 450 441T459 418Q459 406 458 404Q456 399 327 229T194 55H237Q260 56 268 56T297 58T325 65T348 77T370 98T384 128T395 170Q400 197 400 216Q400 217 431 217H462V211Q461 208 453 108T444 6V0H245Q46 0 43 2Q32 7 32 28V33Q32 41 40 52T84 112Q129 170 164 217L298 393H256Q189 392 165 380Q124 360 115 303Q110 280 110 256Q110 254 79 254H48V262'], + + // LEFT CURLY BRACKET + 0x7B: [750,250,575,69,505,'504 -207T504 -225T500 -246T476 -250H469Q257 -250 227 -145L225 -135L224 0Q224 15 224 30T224 59T224 84T224 106T223 122T223 133V137Q222 138 221 144T213 162T195 185Q171 206 141 215Q123 222 107 223T84 225T74 229T70 250T73 270T83 276T106 276T141 285Q171 294 195 315Q201 321 206 328T214 341T219 352T222 360L223 363V367Q223 371 223 378T223 394T224 415T224 441T224 470T224 501L225 636Q249 739 426 749Q428 749 443 749T466 750H473Q495 750 499 747T504 725T501 704T480 699Q381 693 357 645Q352 634 351 617T350 497V412Q350 350 338 329Q325 303 298 284T251 258T227 251Q226 251 226 250L227 249Q231 248 238 246T265 236T299 217T329 184T349 137Q350 131 350 3T352 -130Q358 -160 392 -178T480 -199Q497 -200 500 -203'], + + // VERTICAL LINE + 0x7C: [750,249,319,129,190,'160 -249Q138 -249 129 -225V250Q129 725 131 729Q139 750 159 750T190 725V-225Q181 -249 160 -249'], + + // RIGHT CURLY BRACKET + 0x7D: [750,250,575,70,505,'70 726Q71 744 74 747T99 750H106Q323 750 349 636L350 501Q350 486 350 470T350 441T350 416T350 394T351 378T351 367V363Q352 362 353 356T361 338T379 315Q403 294 433 285Q451 278 467 277T490 275T500 271T504 250T501 230T491 224T468 224T433 215Q403 206 379 185Q373 179 368 172T360 159T355 148T352 140L351 137V133Q351 129 351 122T351 106T350 85T350 59T350 31T350 0L349 -135L347 -145Q317 -250 106 -250H99Q79 -250 75 -247T70 -226Q70 -208 73 -204T95 -199Q193 -193 217 -145Q222 -134 223 -117T224 3Q224 20 224 48T223 86Q223 145 237 175T301 232Q335 249 347 249Q348 249 348 250L347 251Q343 252 336 254T309 264T275 284T245 316T225 363Q224 369 224 497T222 631Q216 660 182 678T95 699Q77 700 74 704T70 726'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js new file mode 100644 index 0000000..988e3de --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js @@ -0,0 +1,230 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/MathOperators.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // FOR ALL + 0x2200: [694,16,639,0,640,'1 664Q-2 685 23 693H27Q46 693 54 680T102 578L148 475H492L533 570Q541 586 548 603T560 630T569 650T576 667T582 678T588 686T594 691T600 693T609 694Q622 694 631 684T639 662Q637 653 492 325T341 -8Q333 -16 320 -16Q306 -16 298 -8Q294 -4 147 326L1 656V664ZM464 414H319Q175 414 175 413L319 88L464 414'], + + // PARTIAL DIFFERENTIAL + 0x2202: [710,17,628,60,657,'230 475Q202 475 189 492T175 526T186 570T221 631T288 687T389 710Q430 710 438 709Q495 701 537 679T601 629T637 568T653 509T657 459Q657 409 640 341Q617 248 581 180T507 75T424 16T348 -11T282 -17Q171 -17 113 37Q60 88 60 159Q60 192 71 231Q96 336 184 402Q264 462 366 462Q407 462 439 448T497 389L502 380Q503 381 508 403T519 463T525 531Q523 580 499 610T447 648T387 657Q324 657 283 616Q271 604 276 604Q279 604 286 600T302 583T311 555Q311 523 287 499T230 475ZM196 110Q196 41 287 41Q351 41 398 88Q422 111 437 151Q473 243 473 298Q473 386 409 409Q408 409 383 411Q316 411 278 373Q265 360 259 351T241 311T217 226Q196 143 196 110'], + + // THERE EXISTS + 0x2203: [694,-1,639,64,574,'81 347Q81 359 84 363T104 378H513V633H300L87 634Q64 642 64 664Q64 685 84 692Q89 694 321 694H552Q571 681 574 669V25Q567 7 552 1H87Q64 12 64 30T87 61H513V317H308Q103 317 99 319Q81 328 81 347'], + + // EMPTY SET + 0x2205: [767,73,575,46,528,'285 711Q307 711 326 708T357 701T370 698Q371 698 375 710T383 735T389 750Q395 767 415 767Q431 767 438 757T446 738T436 701T426 670Q426 668 433 664Q468 633 489 588Q511 542 519 488T528 344Q528 286 524 243T508 150T466 63T394 6Q345 -17 287 -17Q265 -17 246 -14T216 -7T203 -4Q191 -47 183 -60T159 -73Q146 -73 137 -63T128 -44Q128 -38 138 -7L148 24L141 30Q134 35 120 49Q94 77 78 113T56 194T48 268T46 344Q46 388 47 416T56 494T78 577T122 644T194 694Q239 711 285 711ZM351 639Q350 639 346 642T337 648T325 654T306 658T283 660Q254 660 221 638T181 567Q171 513 171 375Q171 164 182 129L351 639ZM402 356Q402 516 395 555Q395 557 395 559T394 563T394 566L393 568L223 57Q252 34 286 34H288Q318 34 346 53T387 109Q402 152 402 329V356'], + + // INCREMENT + 0x2206: [698,0,958,56,901,''], + + // NABLA + 0x2207: [686,24,958,56,901,'56 673Q56 679 65 686H892Q901 679 901 673Q901 668 714 331T521 -15Q518 -18 506 -24H452Q440 -19 436 -15Q431 -8 337 162T150 501L57 669Q57 670 56 672V673ZM528 136L758 553H297Q298 551 414 341L528 136'], + + // ELEMENT OF + 0x2208: [587,86,767,97,671,'97 251Q97 393 194 484T417 586Q418 586 436 586T482 586T538 587H648Q649 586 652 584T658 580T664 575T668 568T670 557Q670 536 648 527L534 526Q515 526 491 526T457 526T435 526T417 525T404 523T390 521T374 517Q298 498 243 447T167 324Q159 295 159 283Q159 281 403 281H648Q649 280 652 278T658 274T664 269T668 262T670 251Q670 230 648 221L403 220Q159 220 159 218Q159 206 166 182T190 122T247 50T341 -6Q380 -20 405 -22T534 -25H648Q649 -26 654 -29T661 -34T667 -43T670 -56Q670 -74 648 -85L541 -86Q419 -86 396 -82Q276 -65 187 24T97 251'], + + // stix-negated (vert) set membership, variant + 0x2209: [711,210,767,97,671,'126 -210Q116 -210 107 -203T97 -179Q97 -171 99 -166Q99 -165 111 -145T150 -80T203 8Q97 104 97 251Q97 393 194 484T417 586Q418 586 436 586T482 586T538 587H549Q565 614 582 643T608 685L616 698Q623 711 641 711Q651 711 660 704T670 681Q670 672 667 667Q666 666 661 657T644 627T620 587H648Q649 586 652 584T658 580T664 575T668 568T670 557Q670 536 648 527L584 526L437 281H648Q649 280 652 278T658 274T664 269T668 262T670 251Q670 230 648 221L403 220H401L283 23Q311 5 341 -6Q380 -20 405 -22T534 -25H648Q649 -26 654 -29T661 -34T667 -43T670 -56Q670 -74 648 -85L541 -86Q419 -86 396 -82Q320 -71 252 -29Q152 -197 148 -201Q139 -210 126 -210ZM235 62L330 220Q159 219 159 218Q159 196 176 150T235 62ZM366 281L513 526Q503 526 487 526T465 526T448 525T433 525T422 525T412 524T403 523T394 521T385 519T374 517Q298 498 243 447T167 324Q159 295 159 283Q159 281 366 281'], + + // CONTAINS AS MEMBER + 0x220B: [588,86,767,96,670,'96 251Q96 268 119 281H363Q607 281 607 283Q607 295 600 319T576 379T519 451T425 507Q386 521 361 523T233 526L119 527Q96 535 96 557Q96 578 116 585Q121 587 229 587Q238 587 257 587T288 588Q366 588 435 568T568 488Q670 388 670 251Q670 155 621 78T499 -39T345 -85Q336 -86 225 -86L119 -85Q96 -77 96 -55Q96 -38 119 -25H233Q356 -24 371 -21Q373 -21 393 -16Q468 3 523 55T599 177Q607 206 607 218Q607 220 363 220L119 221Q96 229 96 251'], + + // MINUS SIGN + 0x2212: [281,-221,894,96,797,'119 221Q96 230 96 251T116 279Q121 281 448 281H775Q776 280 779 278T785 274T791 269T795 262T797 251Q797 230 775 221H119'], + + // MINUS-OR-PLUS SIGN + 0x2213: [537,227,894,64,829,'64 155Q64 172 87 185H416V476H251L87 477Q64 485 64 507Q64 528 84 535Q89 537 448 537H807Q808 536 811 534T817 530T823 525T827 518T829 507Q829 486 807 477L642 476H477V185H807Q808 184 811 182T817 178T823 173T827 166T829 155Q829 134 807 125L642 124H477V-39Q477 -203 475 -208Q466 -227 446 -227Q427 -227 417 -205L416 -41V124H251L87 125Q64 133 64 155'], + + // DIVISION SLASH + 0x2215: [750,250,575,64,510,'451 730Q460 750 479 750Q492 750 501 740T510 718Q508 708 318 244L122 -232Q112 -250 95 -250Q82 -250 73 -241T64 -218Q66 -205 258 261T451 730'], + + // SET MINUS + 0x2216: [750,250,575,63,511,'64 718Q63 731 72 740T94 750Q106 750 113 743Q118 741 122 732L318 256Q508 -208 510 -218Q511 -231 502 -240T480 -250Q460 -250 451 -230Q451 -229 259 238T64 718'], + + // ASTERISK OPERATOR + 0x2217: [473,-28,575,72,502,'236 431Q237 447 251 459T287 472T323 459T338 431Q338 423 328 363L317 300Q318 300 340 317T392 356T435 387Q442 390 450 390Q470 390 485 374T501 335Q501 326 500 320T494 309T486 300T473 293T458 287T438 280T414 272L353 250L414 228Q422 225 436 221T457 214T472 208T485 201T493 192T499 181T501 166Q501 141 484 126T450 111Q447 111 445 111T441 111T437 112T433 114T428 117T422 121T414 127T404 135T391 145T374 158L317 200L328 137Q338 77 338 69Q336 52 321 40T287 28T253 40T236 69Q236 77 246 137L257 200Q256 200 234 183T182 144T139 113Q132 110 124 110Q104 110 89 126T73 165Q73 174 74 180T80 191T88 200T101 207T116 213T136 220T160 228L221 250L160 272Q152 275 138 279T117 286T102 292T89 299T81 308T75 319T73 334Q73 359 90 374T124 389Q127 389 129 389T133 389T137 388T141 386T146 383T152 379T160 373T170 365T183 355T200 342L257 300L246 363Q236 423 236 431'], + + // RING OPERATOR + 0x2218: [475,-27,575,64,510,'64 251Q64 303 80 344T121 409T175 448T230 469T275 474Q277 474 283 474T292 473Q385 473 447 415T510 251Q510 149 449 89T287 28T126 88T64 251ZM448 251Q448 325 405 369T286 413Q215 413 171 371T126 251Q126 177 168 133T287 89Q361 89 404 132T448 251'], + + // BULLET OPERATOR + 0x2219: [475,-27,575,64,510,'64 251Q64 303 80 344T121 409T175 448T230 469T275 474Q277 474 283 474T292 473Q385 473 447 415T510 251Q510 149 449 89T287 28T126 88T64 251'], + + // SQUARE ROOT + 0x221A: [820,180,958,78,988,'107 178Q100 178 89 188T78 207Q78 216 84 220Q85 221 124 248T207 304T260 338Q269 340 275 335Q276 334 370 156L463 -20L698 393Q928 800 935 811Q944 820 954 820Q972 820 980 811T988 789Q988 781 858 553Q776 409 718 306Q452 -166 447 -171Q439 -179 422 -180Q405 -180 400 -175Q399 -174 346 -73T241 128T187 229L151 205Q111 178 107 178'], + + // PROPORTIONAL TO + 0x221D: [451,8,894,65,830,'65 222Q65 282 88 329T144 401T208 438T261 451H273Q312 451 320 450Q456 431 526 330L537 316Q638 451 778 451Q813 451 830 445V388Q821 391 799 391Q758 391 721 377T660 342T618 301T592 266L584 251Q648 152 697 114Q748 74 804 74H806Q823 74 829 77Q830 77 830 38V-1L820 -3Q801 -7 786 -7H771Q699 -7 632 25T527 114L516 128Q414 -8 276 -8Q192 -8 129 56T65 222ZM256 53Q296 53 332 67T392 102T434 143T461 178L469 193Q405 292 356 330Q308 369 251 369H243Q196 369 156 328T116 221Q116 191 124 161T158 99T225 55Q234 53 256 53'], + + // INFINITY + 0x221E: [452,8,1150,65,1084,'65 219Q65 318 132 385T302 452Q473 452 573 331L589 312L596 320Q710 452 857 452Q948 452 1016 386T1084 225Q1084 125 1017 59T848 -8Q679 -8 576 113L560 132L553 124Q439 -8 292 -8Q200 -8 133 58T65 219ZM1033 224Q1033 291 987 340T875 389Q748 389 648 261Q641 253 642 251Q717 163 748 137Q813 81 880 81Q941 81 987 120T1033 224ZM275 56Q315 56 353 70T418 104T466 144T497 178L507 192Q507 193 474 230T441 269Q355 362 267 362Q210 362 163 324T116 221Q116 150 162 103T275 56'], + + // ANGLE + 0x2220: [714,0,722,55,676,'71 0L68 2Q65 3 63 5T58 11T55 20Q55 21 56 23V25Q55 27 55 30Q55 31 56 33V35Q55 37 55 40Q55 42 57 48Q67 63 346 381Q421 467 518 578Q607 680 623 697T647 714Q656 714 661 708T666 694V692Q676 687 676 674Q676 668 673 663Q672 662 637 622T534 503T400 350L147 61L386 60H653Q666 50 666 40V38Q676 31 676 20Q676 8 661 0H71'], + + // DIVIDES + 0x2223: [750,249,319,129,190,'160 -249Q138 -249 129 -225V250Q129 725 131 729Q139 750 159 750T190 725V-225Q181 -249 160 -249'], + + // PARALLEL TO + 0x2225: [751,248,575,145,430,'205 -225Q201 -234 199 -237T191 -244T175 -248T161 -246Q151 -240 146 -229Q145 -224 145 251Q145 725 146 730Q156 750 176 750Q193 748 205 727V-225ZM369 727L372 732Q375 737 377 740T385 747T398 750Q406 750 413 747Q423 740 428 730Q430 720 430 251Q430 -219 428 -229Q423 -240 413 -246Q408 -248 400 -248Q393 -248 388 -247T379 -242T375 -236T371 -230L369 -225V727'], + + // LOGICAL AND + 0x2227: [604,17,767,64,702,'95 -16Q78 -16 71 -6T64 14Q64 20 65 22L212 308Q359 593 361 595Q370 604 385 604Q398 602 405 595Q407 593 554 308L701 22Q702 20 702 15Q702 1 693 -8T671 -17Q661 -17 651 -9Q647 -5 515 251L383 506L251 251Q119 -5 116 -8Q108 -16 95 -16'], + + // LOGICAL OR + 0x2228: [605,16,767,64,702,'64 572Q64 585 72 594T94 604T116 595Q119 592 251 336L383 81L515 336Q647 592 651 596Q661 604 671 604Q684 604 693 595T702 572Q702 567 701 565L554 279Q407 -6 405 -8Q404 -9 401 -11T397 -14Q392 -16 383 -16H380Q369 -16 361 -8Q359 -6 212 279L65 565Q65 566 65 568T64 572'], + + // stix-intersection, serifs + 0x2229: [603,16,767,64,702,'94 -16Q73 -16 64 8V209Q64 239 64 287Q65 418 69 432Q70 434 70 435Q84 487 125 523T216 575T299 597T354 603H372Q444 603 501 590T591 558T648 515T681 471T696 435Q696 434 697 432Q701 417 702 309Q702 303 702 287Q702 239 702 209V8Q693 -16 672 -16Q650 -16 643 3Q641 8 641 201Q641 397 640 403Q631 472 558 507T383 542Q339 542 298 535T219 511T156 468T126 403Q125 397 125 201Q125 8 123 3Q116 -16 94 -16'], + + // stix-union, serifs + 0x222A: [604,16,767,64,702,'672 603Q693 603 702 579V378Q702 348 702 300Q701 169 697 155Q696 153 696 152Q676 78 593 31T383 -16Q265 -16 179 28T70 152Q70 153 69 155Q65 170 64 278Q64 285 64 300Q64 348 64 378Q64 579 65 583Q74 604 94 604T123 584Q125 579 125 386Q125 190 126 184Q135 115 210 80T383 44Q426 44 467 51T546 75T609 119T640 184Q641 190 641 386Q641 579 643 584Q650 603 672 603'], + + // INTEGRAL + 0x222B: [711,211,569,64,632,'204 -71Q204 -108 181 -124T137 -141Q132 -141 132 -142Q142 -161 154 -161Q164 -161 186 -152Q200 -145 210 -135T228 -107T241 -77T249 -38T254 -2T258 38T262 74Q282 265 334 489Q334 490 337 503T341 523T347 544T355 569T365 594T379 620T397 643T420 666T447 685T481 700Q511 711 539 711T587 696T616 656T628 612T632 573Q632 536 610 519T562 501Q534 501 513 519T492 571Q492 608 515 624T559 641Q564 641 564 642Q554 661 542 661Q532 661 510 652Q496 645 486 635T468 607T455 577T447 538T442 502T438 462T434 426Q414 235 362 11Q352 -35 347 -54T328 -101T291 -152Q235 -208 162 -211Q147 -211 136 -208T109 -196T83 -165T67 -108Q64 -94 64 -73Q64 -37 86 -19T134 -1Q162 -1 183 -19T204 -71'], + + // TILDE OPERATOR + 0x223C: [392,-109,894,64,828,'64 155Q64 210 84 262T150 353T257 391Q300 391 341 371T417 321T484 264T557 215T637 194Q702 194 745 244T788 367Q796 391 808 391Q815 391 821 381T828 353V342Q828 252 776 181T637 109Q594 109 552 129T476 179T409 236T336 285T256 306Q193 306 149 258T105 132Q98 109 86 109Q76 109 70 122T64 155'], + + // WREATH PRODUCT + 0x2240: [583,82,319,64,254,'64 561Q64 570 76 576T108 583Q174 583 214 535T254 407Q254 368 238 324T202 248T166 173T149 92Q149 43 169 2T217 -39Q231 -40 242 -46T254 -60Q254 -69 241 -75T210 -82Q145 -82 105 -34T64 93Q64 133 80 177T116 253T152 328T169 408Q169 461 148 500T105 540Q92 540 78 545T64 561'], + + // ASYMPTOTICALLY EQUAL TO + 0x2243: [502,3,894,64,829,'64 295Q64 378 117 440T257 502Q298 502 339 485T416 443T486 394T560 352T637 335Q693 335 740 373T788 478Q796 502 808 502Q815 502 821 492T828 465V455Q828 365 771 308T640 250Q603 250 562 265T501 294T439 336L370 382Q308 417 256 417Q205 417 164 388T110 317Q110 316 109 304T107 286T103 270T97 255T86 250Q76 250 70 263T64 295ZM64 6T64 27T87 56H93Q99 56 110 56T137 56T173 56T217 56T267 57T323 57T383 57T448 57H807Q808 56 811 54T815 52T819 49T823 45T826 40T828 34T829 27Q829 7 807 -3H87Q64 6 64 27'], + + // APPROXIMATELY EQUAL TO + 0x2245: [639,27,1000,64,829,'64 402Q64 457 84 509T150 600T257 638Q300 638 341 618T417 569T484 511T557 462T637 441Q702 441 745 491T788 614Q796 638 808 638Q815 638 821 628T828 600V589Q828 499 776 428T637 356Q594 356 552 376T476 425T409 483T336 532T256 553Q193 553 149 505T105 379Q98 356 86 356Q76 356 70 369T64 402ZM87 197Q64 207 64 226Q64 247 84 255Q89 257 448 257H807Q808 256 811 254T817 250T823 245T827 238T829 227Q829 209 807 197H87ZM87 -27Q64 -18 64 3Q64 23 86 32Q89 33 448 33H807L812 30Q816 27 818 26T823 21T827 13T829 3Q829 -18 807 -27H87'], + + // ALMOST EQUAL TO + 0x2248: [524,-31,894,64,829,'64 345Q64 423 119 473T250 524Q301 524 356 503T451 455T542 407T636 385Q700 385 743 417T786 481Q786 493 791 508T807 524Q817 524 823 512T829 479Q829 404 776 352T638 300Q590 300 537 321T443 369T352 417T256 439Q207 439 166 417T110 359Q109 357 107 341T100 312T85 300Q77 300 71 313T64 345ZM64 77Q64 155 119 205T250 256Q302 256 357 235T451 187T541 139T636 117Q699 117 742 148T786 213Q786 231 792 243T808 256T823 242T829 208Q829 134 776 83T640 32Q591 32 537 53T443 101T352 149T256 171Q206 171 165 148T110 91Q109 89 107 73T100 44T85 32Q77 32 71 45T64 77'], + + // EQUIVALENT TO + 0x224D: [533,32,894,64,830,'798 533Q812 533 820 524T829 502T819 480T769 440Q655 355 537 330Q492 322 447 322Q401 322 356 330Q289 344 219 381T118 443T73 481Q64 490 64 503Q64 517 72 525T94 533Q99 533 102 532Q107 531 138 507T209 456T314 405T446 382Q604 382 765 515Q788 533 798 533ZM95 -32Q81 -32 73 -23T64 -1Q64 10 74 21T124 61Q213 127 293 153T421 179L422 180Q424 180 426 180T432 180T441 180T452 179Q612 179 769 61Q811 29 820 19T829 -1Q829 -14 821 -23T798 -32Q788 -32 765 -14Q608 118 446 118Q287 118 128 -14Q105 -32 95 -32'], + + // APPROACHES THE LIMIT + 0x2250: [721,-109,894,64,829,'87 333Q64 343 64 362Q64 383 84 391Q89 393 448 393H807Q808 392 811 390T817 386T823 381T827 374T829 363Q829 345 807 333H87ZM87 109Q64 118 64 139Q64 159 86 168Q89 169 448 169H807L812 166Q816 163 818 162T823 157T827 149T829 139Q829 118 807 109H87ZM362 635Q362 671 387 696T444 721Q488 721 510 693T533 635Q533 606 512 579T448 551Q406 551 384 577T362 635'], + + // stix-not (vert) equals + 0x2260: [711,210,894,64,829,'189 -210Q179 -210 170 -203T160 -179Q160 -171 162 -166Q165 -163 327 109H87Q64 118 64 139Q64 159 86 168Q89 169 363 169L461 333H87Q64 343 64 362Q64 383 84 391Q89 393 448 393H496Q533 455 583 539T656 660T679 698Q686 711 704 711Q714 711 723 704T733 681Q733 672 730 667Q729 664 709 631T645 523T567 393H807Q808 392 811 390T817 386T823 381T827 374T829 363Q829 345 807 333H532L433 169H807L812 166Q816 163 818 162T823 157T827 149T829 139Q829 118 807 109H398Q217 -195 211 -201Q202 -210 189 -210'], + + // IDENTICAL TO + 0x2261: [505,3,894,64,829,'87 445Q64 454 64 475Q64 497 84 503Q89 505 448 505H807Q808 504 812 502T818 497T823 492T827 484T829 474Q829 456 807 445H87ZM87 221Q64 230 64 251T84 279Q89 281 448 281H807Q808 280 811 278T817 274T823 269T827 262T829 251Q829 230 807 221H87ZM64 6T64 27T87 56H93Q99 56 110 56T137 56T173 56T217 56T267 57T323 57T383 57T448 57H807Q808 56 811 54T815 52T819 49T823 45T826 40T828 34T829 27Q829 7 807 -3H87Q64 6 64 27'], + + // LESS-THAN OR EQUAL TO + 0x2264: [697,199,894,96,797,'797 55Q797 45 790 35T767 25H759L434 180Q108 336 105 339Q96 348 96 360Q96 378 114 388Q126 394 439 544T757 695Q763 697 766 697Q780 697 788 688T797 666Q797 654 788 645Q784 641 507 509T197 361L466 232Q785 80 790 74Q797 66 797 55ZM119 -199Q96 -191 96 -169Q96 -160 102 -152T119 -140H124Q130 -140 140 -140T164 -140T197 -140T237 -140T283 -139T334 -139T389 -139T448 -139H775Q797 -153 797 -169Q797 -187 775 -199H119'], + + // GREATER-THAN OR EQUAL TO + 0x2265: [697,199,894,96,797,'127 25Q110 25 103 34T96 54Q96 66 105 75Q109 80 439 238L696 361Q113 637 105 645Q96 654 96 667Q96 679 104 688T128 697Q137 696 460 541T788 382Q797 373 797 360Q797 348 788 339Q785 336 459 180L135 25H127ZM119 -199Q96 -191 96 -169Q96 -160 102 -152T119 -140H124Q130 -140 140 -140T164 -140T197 -140T237 -140T283 -139T334 -139T389 -139T448 -139H775Q797 -153 797 -169Q797 -187 775 -199H119'], + + // MUCH LESS-THAN + 0x226A: [617,116,1150,64,1085,'734 -74T734 -86T727 -107T704 -116H702Q694 -116 584 -55Q473 7 380 58Q87 219 73 229Q64 238 64 250Q64 263 73 272Q87 282 380 443Q695 616 699 617H700Q718 617 726 607T734 588Q734 568 717 560Q705 554 435 404L157 250L439 94Q721 -61 726 -66Q734 -74 734 -86ZM1085 -74T1085 -86T1078 -107T1055 -116H1053Q1045 -116 935 -55Q824 7 731 58Q438 219 424 229Q415 238 415 250Q415 263 424 272Q438 282 731 443Q1046 616 1050 617H1051Q1069 617 1077 607T1085 588Q1085 568 1068 560Q1056 554 786 404L508 250L790 94Q1072 -61 1077 -66Q1085 -74 1085 -86'], + + // MUCH GREATER-THAN + 0x226B: [618,116,1150,64,1085,'64 588Q64 600 72 609T94 618H95Q103 618 209 559Q322 496 419 443Q712 282 725 272Q734 263 734 250Q734 238 725 229Q714 220 415 55T110 -113Q103 -116 95 -116Q78 -116 71 -106T64 -86Q64 -74 72 -66Q77 -61 359 94L641 250L363 404Q277 452 173 509Q95 552 82 560T66 576V577Q64 585 64 588ZM415 588Q415 600 423 609T445 618H446Q454 618 560 559Q673 496 770 443Q1063 282 1076 272Q1085 263 1085 250Q1085 238 1076 229Q1065 220 766 55T461 -113Q454 -116 446 -116Q429 -116 422 -106T415 -86Q415 -74 423 -66Q428 -61 710 94L992 250L714 404Q628 452 524 509Q446 552 433 560T417 576V577Q415 585 415 588'], + + // PRECEDES + 0x227A: [585,86,894,96,797,'797 -57Q797 -65 790 -75T766 -86Q748 -86 741 -74T733 -43T719 8T681 72Q647 112 588 141T475 185T343 207T230 216T136 219Q96 219 96 250Q96 280 132 280H136Q193 281 239 283T347 292T457 310T556 342T643 391T703 460T735 553Q741 585 763 585Q781 585 789 575T797 556Q797 540 792 513T758 434T682 345Q605 285 481 254L462 249Q483 246 526 233T633 185T733 104Q767 63 782 15T797 -57'], + + // SUCCEEDS + 0x227B: [586,86,894,96,797,'96 556Q96 568 104 577T126 586Q152 586 158 553Q164 503 188 462T247 394T331 345T429 313T539 294T649 284T758 280H760Q797 280 797 250Q797 219 760 219H758Q627 217 529 204T347 160T216 77T158 -54Q152 -86 126 -86Q110 -86 103 -76T96 -57Q96 -41 101 -14T135 65T211 154Q288 214 412 245L431 250Q410 252 367 265T259 314T160 395Q127 435 112 483T96 556'], + + // SUBSET OF + 0x2282: [588,85,894,96,798,'96 251Q96 389 191 482T417 586Q418 586 428 586T456 586T496 586T546 587T601 587H775Q776 586 779 584T785 580T791 575T795 568T797 557Q797 536 775 527L597 526Q411 525 395 522Q390 521 370 516Q285 494 222 424T158 251Q158 131 246 53Q313 -9 408 -23Q417 -24 597 -25H775Q776 -26 781 -29T788 -34T794 -43T797 -56Q797 -74 775 -85H493Q407 -85 376 -79Q257 -55 177 35T96 251'], + + // SUPERSET OF + 0x2283: [587,86,894,96,796,'96 -55Q96 -38 119 -25H296Q482 -24 498 -21Q503 -20 523 -15Q609 7 672 77T735 251T665 431T485 524Q476 525 296 526L119 527Q96 535 96 557Q96 578 116 585Q121 587 300 587Q451 586 476 585T522 579Q632 556 714 468T796 251Q796 112 695 13Q612 -65 497 -82Q473 -86 289 -86L119 -85Q96 -77 96 -55'], + + // SUBSET OF OR EQUAL TO + 0x2286: [698,199,894,96,798,'96 361Q96 499 191 592T417 696Q418 696 428 696T456 696T496 696T546 697T601 697H775Q776 696 779 694T785 690T791 685T795 678T797 667Q797 646 775 637L597 636Q411 635 395 632Q390 631 370 626Q285 604 222 534T158 361Q158 241 246 163Q313 101 408 87Q417 86 597 85H775Q776 84 781 81T788 76T794 67T797 54Q797 36 775 25H493Q407 25 376 31Q257 55 177 145T96 361ZM149 -199Q127 -191 127 -169T149 -140H154Q160 -140 169 -140T192 -140T224 -140T262 -140T306 -139T354 -139T407 -139T463 -139H775Q776 -140 779 -142T785 -146T791 -151T795 -158T797 -169Q797 -190 775 -199H149'], + + // SUPERSET OF OR EQUAL TO + 0x2287: [697,199,894,96,796,'96 55Q96 72 119 85H296Q482 86 498 89Q503 90 523 95Q609 117 672 187T735 361T665 541T485 634Q476 635 296 636L119 637Q96 645 96 667Q96 688 116 695Q121 697 300 697Q451 696 476 695T522 689Q632 666 714 578T796 361Q796 222 695 123Q612 45 497 28Q473 24 289 24L119 25Q96 33 96 55ZM119 -199Q96 -190 96 -169T116 -141Q121 -139 433 -139H745Q766 -152 766 -170Q766 -190 745 -199H119'], + + // MULTISET UNION + 0x228E: [604,16,767,64,702,'672 603Q693 603 702 579V378Q702 348 702 300Q701 169 697 155Q696 153 696 152Q676 78 593 31T383 -16Q265 -16 179 28T70 152Q70 153 69 155Q65 170 64 278Q64 285 64 300Q64 348 64 378Q64 579 65 583Q74 604 94 604T123 584Q125 579 125 386Q125 190 126 184Q135 115 210 80T383 44Q426 44 467 51T546 75T609 119T640 184Q641 190 641 386Q641 579 643 584Q650 603 672 603ZM353 412Q353 420 353 435T352 456Q352 483 358 495T385 507Q403 506 409 494T415 457Q415 451 415 436T414 411V341H558Q579 329 579 311Q579 289 558 281L486 280H414V136Q400 114 384 114Q363 114 354 136L353 208V280H281L209 281Q187 289 187 310Q187 328 209 341H353V412'], + + // SQUARE IMAGE OF OR EQUAL TO + 0x2291: [698,199,894,96,828,'127 25Q111 29 104 49V362L105 675Q114 693 127 696H132Q138 696 149 696T174 696T208 696T249 696T297 697T350 697T407 697T468 697H806Q828 683 828 666Q828 646 806 637L485 636H165V85H805Q806 84 809 82T813 80T817 77T821 73T824 68T826 62T827 55Q827 34 806 25H127ZM96 -190T96 -169T119 -140H125Q131 -140 141 -140T167 -140T201 -140T242 -140T290 -139T344 -139T402 -139T463 -139H805Q806 -140 809 -142T813 -144T817 -147T821 -151T824 -156T826 -162T827 -169Q827 -190 806 -199H119Q96 -190 96 -169'], + + // SQUARE ORIGINAL OF OR EQUAL TO + 0x2292: [698,199,894,66,797,'66 55Q66 74 89 85H728V636H408L88 637Q66 645 66 667T88 696H94Q99 696 110 696T135 696T169 696T210 696T258 697T311 697T368 697T429 697H767Q786 684 789 672V49Q782 31 767 25H88Q66 32 66 55ZM88 -199Q66 -191 66 -169Q66 -148 87 -140Q91 -139 433 -139H775Q776 -140 779 -142T783 -144T787 -147T791 -151T794 -156T796 -162T797 -169Q797 -189 775 -199H88'], + + // stix-square intersection, serifs + 0x2293: [604,-1,767,70,696,'131 25Q121 1 100 1Q81 1 71 23L70 301Q70 579 72 583Q77 598 90 602Q95 604 385 604H674Q693 591 696 579V25Q686 1 665 1Q646 1 636 23L635 283V543H131V25'], + + // stix-square union, serifs + 0x2294: [604,-1,767,70,696,'696 25Q689 7 674 1H93Q77 7 71 23L70 301Q70 579 72 583Q80 604 100 604T131 579V61H635V579Q644 603 666 603Q687 603 696 579V25'], + + // stix-circled plus (with rim) + 0x2295: [632,132,894,64,828,'64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM416 282V570H414Q341 564 285 535T202 475T156 397T134 332T128 287Q127 283 127 282H416ZM765 288Q760 344 743 389T700 462T647 512T589 543T538 560T499 568L483 570H478V282H766L765 288ZM416 -69V220H127Q130 195 131 189T138 155T150 115T168 76T196 35T234 0T286 -35Q337 -61 410 -69H416ZM483 -69Q554 -60 607 -33T687 21T733 93T756 156T764 209Q766 217 766 220H478V-69H483'], + + // CIRCLED MINUS + 0x2296: [632,132,894,64,828,'64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM765 288Q753 424 666 497T446 571T227 498T128 288L127 282H766L765 288ZM446 -70Q578 -70 666 4T765 213L766 220H127Q130 195 131 189T138 155T150 115T168 76T196 35T234 0T286 -35Q353 -70 446 -70'], + + // stix-circled times (with rim) + 0x2297: [632,132,894,64,828,'64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM647 512Q567 571 447 571Q340 571 262 523Q237 507 237 505L342 399L447 295L657 505L647 512ZM298 356L192 461Q180 445 161 411Q126 341 126 251Q126 128 192 40L403 250L298 356ZM701 41Q704 41 719 63T750 138T767 250Q767 310 750 362T719 437T701 460L491 250L701 41ZM238 -5Q238 -8 261 -22T336 -53T447 -70Q567 -70 647 -11L657 -4L447 206L342 101Q238 -1 238 -5'], + + // CIRCLED DIVISION SLASH + 0x2298: [632,132,894,64,828,'64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM657 505Q656 506 650 510T638 518T623 527T604 537T581 547T553 556T522 563T486 569T446 571Q305 571 216 487T126 251Q126 128 192 40L657 505ZM447 -70Q591 -70 679 16T767 250Q767 308 751 360T719 436T701 460L469 228Q238 -1 238 -5Q238 -8 261 -22T336 -53T447 -70'], + + // CIRCLED DOT OPERATOR + 0x2299: [632,132,894,64,828,'64 250Q64 350 98 426T189 546T307 610T434 632Q485 632 496 631Q572 621 635 592Q669 575 699 550T760 484T809 384T828 250Q828 77 725 -27T446 -132Q272 -132 168 -27T64 250ZM767 252Q767 395 681 483T446 571Q303 571 215 486T126 249Q126 107 212 19T446 -70Q596 -70 681 18T767 252ZM335 251Q335 297 368 329T441 361Q498 361 527 327T557 250Q557 202 525 171T446 140Q397 140 366 173T335 251'], + + // RIGHT TACK + 0x22A2: [693,-1,703,65,637,'65 672Q76 693 91 693Q115 693 123 674Q125 669 125 523V378H615Q618 376 622 373T628 369T632 366T635 362T636 356T637 347Q637 328 619 319Q615 317 370 317H125V171Q125 25 123 20Q114 1 94 1Q73 1 65 23V672'], + + // LEFT TACK + 0x22A3: [693,-1,703,64,638,'64 327T64 347T89 378H577V525L578 672Q592 693 604 693Q629 693 638 669V25Q628 1 607 1Q588 1 578 23L577 170V317H88Q64 327 64 347'], + + // DOWN TACK + 0x22A4: [695,-1,894,64,829,'64 664Q64 675 71 683T87 693H93Q99 693 110 693T137 693T173 693T217 694T267 694T323 694T383 694T448 694H807Q808 693 811 691T817 687T823 682T827 675T829 664Q829 643 807 634L642 633H477V25Q467 1 446 1Q427 1 417 23L416 328V633H251L87 634Q64 643 64 664'], + + // UP TACK + 0x22A5: [693,-1,894,65,829,'65 31Q65 38 66 41T71 50T87 61H416V366L417 672Q431 693 443 693Q468 693 477 669V61H807Q808 60 811 58T817 54T823 49T827 42T829 31Q829 10 807 1H87Q65 10 65 31'], + + // TRUE + 0x22A8: [750,249,974,129,918,'160 -249Q138 -249 129 -225V250Q129 725 131 729Q139 750 159 750T190 725V392Q219 393 537 393H896Q897 392 900 390T906 386T912 381T916 374T918 363Q918 345 896 333H190V169H896L900 166Q905 163 907 162T912 157T916 149T918 139Q918 118 896 109H190V-225Q181 -249 160 -249'], + + // DIAMOND OPERATOR + 0x22C4: [523,21,575,15,560,'280 522Q281 523 285 523H289Q301 523 366 457Q404 420 431 393Q533 291 546 277T560 250Q560 239 548 226T431 108Q313 -10 304 -16Q297 -21 287 -21Q278 -21 275 -19Q270 -17 146 107T18 238Q15 242 15 251Q15 258 18 263Q20 268 145 392T274 519L280 522ZM388 350L288 449L188 350L89 250L288 52L487 250L388 350'], + + // DOT OPERATOR + 0x22C5: [336,-165,319,74,245,'74 251Q74 286 99 311T156 336Q200 336 222 308T245 250Q245 221 224 194T160 166T96 193T74 251'], + + // STAR OPERATOR + 0x22C6: [502,0,575,24,550,'270 491Q274 502 287 502Q298 502 304 491Q304 486 323 396T342 303L438 314Q520 324 534 324Q540 324 545 320T550 307Q550 298 539 290T456 243Q377 198 377 197L416 111Q456 26 456 22Q457 21 457 18Q457 11 451 6T438 0H437Q432 0 415 16Q387 42 358 68L287 133L216 68Q193 47 167 23Q142 0 136 0Q129 0 123 5T117 18Q117 21 118 22Q118 26 158 111L197 197Q197 198 156 221T72 269T26 298Q24 304 24 307Q24 315 29 319T40 324Q53 324 136 314L232 303Q232 306 251 396T270 491'], + + // BOWTIE + 0x22C8: [540,39,1000,33,967,'906 251Q906 456 905 456Q550 252 549 251Q549 250 726 148T905 45T906 251ZM967 -14Q958 -38 939 -38H937Q928 -38 923 -35Q919 -34 748 64T500 209L71 -38Q69 -39 63 -39Q42 -39 33 -16V518Q45 540 63 540H65Q72 540 174 481Q247 439 302 407L500 292Q578 339 750 438T929 539H933Q958 539 967 515V-14ZM449 251L94 456Q93 456 93 251Q93 45 94 45L106 52Q119 59 139 71T186 98T242 131T301 165T357 197T404 225T437 244L449 251'], + + // VERTICAL ELLIPSIS + 0x22EE: [951,29,319,74,245,'74 55Q74 91 99 116T156 141Q200 141 222 113T245 55Q245 26 224 -1T160 -29Q118 -29 96 -3T74 55ZM74 465Q74 501 99 526T156 551Q200 551 222 523T245 465Q245 436 224 409T160 381Q118 381 96 407T74 465ZM74 865Q74 901 99 926T156 951Q200 951 222 923T245 865Q245 836 224 809T160 781Q118 781 96 807T74 865'], + + // MIDLINE HORIZONTAL ELLIPSIS + 0x22EF: [336,-165,1295,74,1221,'74 251Q74 286 99 311T156 336Q200 336 222 308T245 250Q245 221 224 194T160 166T96 193T74 251ZM562 251Q562 286 587 311T644 336Q688 336 710 308T733 250Q733 221 712 194T648 166T584 193T562 251ZM1050 251Q1050 286 1075 311T1132 336Q1176 336 1198 308T1221 250Q1221 221 1200 194T1136 166T1072 193T1050 251'], + + // DOWN RIGHT DIAGONAL ELLIPSIS + 0x22F1: [871,-101,1323,129,1194,'129 785Q129 821 154 846T211 871Q255 871 277 843T300 785Q300 756 279 729T215 701Q173 701 151 727T129 785ZM576 485Q576 521 601 546T658 571Q702 571 724 543T747 485Q747 456 726 429T662 401Q620 401 598 427T576 485ZM1023 185Q1023 221 1048 246T1105 271Q1149 271 1171 243T1194 185Q1194 156 1173 129T1109 101Q1067 101 1045 127T1023 185'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js new file mode 100644 index 0000000..da57bf2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js @@ -0,0 +1,32 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/MiscMathSymbolsA.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E8: [750,249,447,127,382,'127 243V259L223 491Q251 557 286 642Q318 719 324 732T340 748H341Q347 750 351 750Q365 750 373 740T382 723Q382 713 286 482L190 251Q190 249 286 20T382 -219Q382 -232 373 -240T352 -249Q332 -249 323 -229Q320 -220 223 10L127 243'], + + // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27E9: [750,249,447,64,319,'64 720Q64 732 72 741T94 750Q106 750 113 743Q118 741 122 732L319 259V243L122 -231Q112 -249 95 -249Q83 -249 74 -240T64 -218Q64 -210 160 20L256 251L160 482Q64 715 64 720'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/MiscMathSymbolsA.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js new file mode 100644 index 0000000..84ace0e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/MiscSymbols.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // BLACK SPADE SUIT + 0x2660: [719,130,894,64,829,'675 -18Q536 -18 527 62V70H477V55Q479 14 487 -21T502 -75T509 -101Q509 -120 491 -127Q487 -129 447 -129Q446 -129 439 -129T427 -130Q384 -130 384 -101Q384 -95 391 -76T406 -21T416 55V70H366Q364 52 360 40T342 14T300 -8T230 -17H218Q110 -17 75 117Q64 163 64 209Q64 290 116 357T261 495Q363 574 414 690Q425 719 445 719Q467 719 478 693Q507 627 547 578T623 503T702 438T777 357Q829 285 829 202V197Q826 128 808 81T762 15T714 -11T675 -18'], + + // WHITE HEART SUIT + 0x2661: [711,24,894,65,828,'65 491Q65 602 121 656T246 710Q375 710 440 624L447 615Q519 711 638 711Q723 711 775 652T828 491Q828 390 770 313T581 129Q539 95 514 63T483 14T469 -13T446 -24Q434 -24 427 -17T416 0T400 32T371 74Q352 97 310 131T229 199T151 276T89 374T65 491ZM249 649Q188 649 157 603T125 489Q125 409 181 338T352 176Q408 131 437 87L446 73L456 87Q479 121 507 147T579 207T659 278Q768 387 768 489Q768 506 766 524T756 566T731 611T687 642Q668 649 638 649Q609 649 593 644Q547 633 516 604T478 534Q473 505 447 505H445Q420 505 416 534Q407 577 372 608T285 648Q277 649 249 649'], + + // WHITE DIAMOND SUIT + 0x2662: [719,154,894,64,828,'409 686Q410 688 412 691T415 696T418 701T421 706T424 709T427 713T431 715T435 717T440 718T446 719Q455 719 460 717T472 704T488 679T516 633T563 567Q624 485 687 422T787 330T826 296T828 282Q828 270 825 265T801 245Q696 161 612 59T477 -133Q465 -154 447 -154Q439 -154 434 -152T425 -146T414 -130T399 -104T372 -62T330 -3Q270 78 207 142T107 234T70 265Q64 274 64 282Q64 296 90 317Q284 472 409 686ZM749 282Q745 286 721 307T681 343T635 388T581 446T525 516T465 601Q462 606 457 613T450 624L447 627V628Q446 628 436 611T402 561T348 489T266 396T155 292L145 282Q147 280 185 245T257 177T343 79T442 -57Q446 -64 447 -64V-63Q450 -59 475 -22T530 56T619 160T749 282'], + + // BLACK CLUB SUIT + 0x2663: [719,130,894,32,861,'240 527Q240 611 301 665T446 719T590 665T652 527Q652 431 571 373Q578 363 584 352T593 335T597 329L604 335Q611 341 617 345T637 356T667 366Q672 366 680 367T694 368Q767 368 814 310T861 177Q861 109 819 57T713 -12Q690 -17 656 -17Q535 -13 527 62V70H477V55Q479 14 487 -21T502 -75T509 -101Q509 -120 491 -127Q487 -129 447 -129Q446 -129 439 -129T427 -130Q384 -130 384 -101Q384 -95 391 -76T406 -21T416 55V70H366V62Q356 -12 237 -17Q130 -17 71 60Q32 111 32 178Q32 251 78 309T198 368Q217 368 233 364T260 354T279 343T291 333T296 329L300 336Q304 343 310 354T322 373Q240 432 240 527'], + + // MUSIC FLAT SIGN + 0x266D: [750,17,447,64,381,'230 480Q293 480 337 440T381 330V322Q381 240 323 161Q258 71 123 -11L114 -16L97 -17Q70 -17 66 -7Q64 -3 64 366V641Q64 717 65 731T75 748Q78 750 95 750Q117 750 122 742T127 694Q127 685 127 653T126 595V454Q183 480 230 480ZM242 333Q242 405 212 405H207Q147 405 130 370L127 364L126 219Q126 77 128 77Q133 82 140 90T167 127T202 183T229 253T242 333'], + + // MUSIC NATURAL SIGN + 0x266E: [741,223,447,57,389,'345 -223Q333 -223 330 -214T327 -178V-116Q327 -23 326 -23L203 -82Q90 -134 77 -140Q65 -142 59 -130Q57 -126 57 295V595Q57 643 57 667T58 704T60 719T63 724Q93 741 101 741Q113 741 116 732T119 680V597Q119 467 120 467Q121 468 180 495T301 552T369 584Q381 586 387 574Q389 570 389 187V-88Q389 -132 389 -154T388 -188T386 -202T383 -206Q353 -223 345 -223ZM327 271Q327 421 326 421L120 323L119 173V23Q120 23 223 72L327 121V271'], + + // MUSIC SHARP SIGN + 0x266F: [724,224,447,64,382,'140 628Q151 628 154 620T158 591V549V484L166 488Q175 492 192 500T223 516L288 548V622V674Q288 681 288 685T289 693T289 699T291 703T295 707T298 709T304 712T311 716Q326 724 332 724Q343 724 346 715T350 685V644V579Q358 583 364 583Q376 583 380 574Q382 570 382 514V481Q382 459 380 454T363 441L350 435V135Q358 139 364 139Q376 139 380 130Q382 126 382 70V37Q382 15 380 10T363 -3L350 -9V-76Q350 -102 348 -106T328 -119Q312 -128 306 -128Q288 -128 288 -99V-77V-40L280 -44Q271 -48 254 -56T223 -72L158 -104V-150V-180Q158 -198 155 -202T135 -216Q119 -224 114 -224Q96 -224 96 -192V-172V-135Q86 -140 81 -140Q70 -140 66 -129Q64 -126 64 -70V-54Q64 -18 66 -12T83 3L96 9V309Q86 304 81 304Q70 304 66 315Q64 318 64 374V407Q64 429 66 434T83 447L96 453V602Q99 609 100 610T118 619Q134 628 140 628ZM288 254Q288 404 287 404L158 340V40L166 44Q175 48 192 56T223 72L288 104V254'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/MiscSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js new file mode 100644 index 0000000..d7dbaec --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/MiscTechnical.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // LEFT CEILING + 0x2308: [751,248,511,194,494,'194 728Q199 743 216 749H220Q223 749 229 749T245 749T265 750T289 750T316 750T345 750H471Q472 749 477 746T484 741T490 732T493 719Q493 701 471 690L362 689H254V-224Q244 -248 223 -248T194 -226V728'], + + // RIGHT CEILING + 0x2309: [750,248,511,17,317,'317 -224Q307 -248 286 -248Q267 -248 257 -226L256 231V689H148L40 690Q17 698 17 720Q17 741 37 748Q42 750 169 750H295Q314 737 317 725V-224'], + + // LEFT FLOOR + 0x230A: [749,248,511,194,494,'194 728Q204 749 220 749Q245 749 254 725V-188H471Q472 -189 477 -192T484 -197T490 -206T493 -219Q493 -237 471 -248H216Q200 -242 194 -226V728'], + + // RIGHT FLOOR + 0x230B: [749,248,511,17,317,'17 -219Q17 -201 40 -188H256V270L257 728Q271 749 283 749Q308 749 317 725V-224Q310 -242 295 -248H40L38 -247Q35 -246 34 -245T30 -243T25 -239T21 -234T18 -227T17 -219'], + + // stix-small down curve + 0x2322: [405,-107,1150,65,1084,'95 108Q85 108 75 114T65 139Q65 159 129 227Q316 405 573 405Q654 405 729 387T854 344T950 286T1015 232T1053 191Q1078 160 1083 152Q1084 148 1084 139Q1084 121 1074 115T1054 108Q1040 108 1029 122T990 167T922 223Q819 291 680 309Q641 315 575 315Q508 315 469 309Q303 288 197 201Q168 179 148 155T118 119T95 108'], + + // stix-small up curve + 0x2323: [393,-126,1150,64,1085,'1054 392Q1067 392 1076 384T1085 362Q1085 351 1079 342T1050 310Q983 243 901 200Q753 126 575 126Q494 126 420 141T298 176T205 225T140 272T100 310Q64 346 64 362Q64 370 67 374Q75 393 93 393Q107 393 124 375Q272 214 575 214Q877 214 1025 375Q1039 392 1054 392'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/MiscTechnical.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js new file mode 100644 index 0000000..c1aebb1 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js @@ -0,0 +1,53 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/SpacingModLetters.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C6: [694,-520,575,126,449,'207 632L287 694Q289 693 368 632T448 570T431 545T413 520Q410 520 350 559L287 597L224 559Q164 520 161 520Q160 520 143 544T126 570T207 632'], + + // CARON + 0x2C7: [660,-515,575,130,443,'131 603Q130 604 136 618T150 646T158 659L223 635L287 611L351 635L416 659Q417 660 424 647T437 619T443 603Q440 601 364 558T287 515T210 558T131 603'], + + // MODIFIER LETTER MACRON + 0x2C9: [607,-540,575,80,494,'80 540V607H494V540H80'], + + // MODIFIER LETTER ACUTE ACCENT + 0x2CA: [706,-503,575,236,460,'391 706Q419 706 439 683T460 634Q460 608 441 593T366 550Q356 545 351 543L275 503L256 527Q236 552 237 553Q242 558 292 620Q299 629 309 641T324 659T336 673T346 685T354 693T363 699T371 703T380 705T391 706'], + + // MODIFIER LETTER GRAVE ACCENT + 0x2CB: [706,-503,575,113,338,'114 634Q114 663 136 684T183 706Q191 706 196 705T208 700T219 693T232 681T245 666T262 645T282 620Q332 558 337 553Q338 552 318 527L299 503L223 543Q215 547 202 553T183 563T167 571T153 580T141 587T131 595T124 603T118 612T115 622T114 634'], + + // BREVE + 0x2D8: [694,-500,575,102,472,'287 500Q208 500 155 558T102 689V694H153V685Q153 681 154 674T164 648T186 615T226 590T287 578Q347 578 382 611T421 685V694H472V689Q472 623 422 562T287 500'], + + // DOT ABOVE + 0x2D9: [695,-525,575,202,372,'202 610Q202 647 227 671T283 695Q324 695 348 669T372 610T350 551T287 525Q248 525 225 551T202 610'], + + // RING ABOVE + 0x2DA: [702,-535,575,160,414,'160 618Q160 653 193 677T279 702H284Q381 702 407 647Q414 634 414 618Q414 607 410 596T395 570T355 546T287 536T220 545T181 568T165 594T160 618ZM352 618Q352 645 341 652T301 659H292Q286 659 278 659T268 660Q247 660 236 653T224 638T222 619Q222 591 234 585T287 578Q315 578 326 580T345 590T352 618'], + + // SMALL TILDE + 0x2DC: [694,-552,575,96,478,'343 552Q320 552 278 575T215 599Q181 599 146 564L134 552L115 569Q111 572 106 576T98 584L96 586Q158 656 165 663Q199 694 230 694Q239 694 244 693Q262 689 300 668T359 647Q393 647 428 682L440 694L459 677Q463 674 468 670T476 662L478 660Q416 590 409 583Q375 552 343 552'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js new file mode 100644 index 0000000..6cc40e6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/SuppMathOperators.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // AMALGAMATION OR COPRODUCT + 0x2A3F: [686,0,900,39,860,'39 655Q39 675 43 680T69 686Q110 684 225 684Q267 684 303 684T360 685T385 686Q401 686 405 680T409 651Q409 632 403 628T367 624H348H301V62H598V624H551H532Q502 624 496 628T490 651Q490 673 494 679T514 686Q518 686 558 685T675 684T792 685T836 686Q852 686 856 680T860 651Q860 632 854 628T818 624H799H752V62H799H809Q846 62 853 59T860 36V31V21Q860 6 850 2Q846 0 450 0H156Q75 0 60 1T40 11V18Q39 26 39 31Q39 54 44 58T82 63Q84 63 90 63T100 62H147V624H100H90Q53 624 46 627T39 650V655'], + + // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN + 0x2AAF: [696,199,894,96,797,'796 54Q796 40 788 32T767 24Q741 24 735 57Q729 107 705 148T646 216T563 264T465 297T356 316T245 326T136 330H134Q96 330 96 360Q96 391 134 391H136Q193 392 239 394T347 403T457 421T556 453T643 502T703 571T735 664Q741 696 763 696Q781 696 789 686T797 667Q797 651 792 624T758 545T682 456Q605 396 481 365L462 360Q483 357 526 344T633 296T733 215Q767 173 781 128T796 54ZM119 -199Q96 -190 96 -169T116 -141Q121 -139 448 -139H775Q776 -140 779 -142T785 -146T791 -151T795 -158T797 -169Q797 -190 775 -199H119'], + + // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN + 0x2AB0: [697,199,894,96,797,'127 24Q115 24 106 32T97 55Q97 95 124 156T211 265Q288 325 412 356L431 361Q410 363 367 376T259 425T160 506Q127 546 112 594T96 667Q96 679 104 688T126 697Q152 697 158 664Q164 614 188 573T247 505T331 456T429 424T539 405T649 395T758 391Q797 391 797 360Q797 330 761 330H758Q701 329 655 327T547 318T437 300T337 268T251 219T190 150T158 57Q151 24 127 24ZM119 -199Q96 -190 96 -169T116 -141Q121 -139 448 -139H775Q776 -140 779 -142T785 -146T791 -151T795 -158T797 -169Q797 -190 775 -199H119'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/SuppMathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js new file mode 100644 index 0000000..0e0a3bb --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Bold/SupplementalArrowsA.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-bold'], + { + // LONG LEFTWARDS ARROW + 0x27F5: [518,17,1805,64,1741,'1063 221L649 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L649 281H1063L1065 280Q1079 281 1392 281H1719Q1720 280 1723 278T1729 274T1735 269T1739 262T1741 251Q1741 230 1719 221H1063'], + + // LONG RIGHTWARDS ARROW + 0x27F6: [518,17,1833,96,1773,'119 221Q96 230 96 251T116 279Q121 281 448 281H1188L1602 282Q1569 304 1530 357T1473 482Q1469 500 1469 501Q1469 512 1480 517Q1482 518 1500 518H1505Q1520 518 1523 515T1532 495Q1552 412 1611 351T1753 270Q1773 263 1773 251Q1773 240 1765 236T1732 225T1683 204Q1625 173 1586 122T1532 6Q1528 -10 1524 -13T1504 -17H1499Q1474 -16 1470 -9Q1469 -6 1469 -2Q1469 1 1473 17Q1501 138 1602 220H1188L775 221H119'], + + // LONG LEFT RIGHT ARROW + 0x27F7: [518,17,2126,64,2061,'1063 221L649 220H235Q340 133 364 17Q368 1 368 -2Q368 -16 343 -17Q340 -17 338 -17H332Q317 -17 314 -14T305 6Q298 34 285 62T247 126T179 189T78 233Q64 237 64 251Q64 261 74 265T108 277T154 297Q212 328 251 379T305 495Q309 511 313 514T333 518H338Q363 517 367 510Q368 507 368 503Q368 500 364 484Q345 401 287 331Q254 295 235 282L649 281H1476L1890 282Q1857 304 1818 357T1761 482Q1757 500 1757 501Q1757 512 1768 517Q1770 518 1788 518H1793Q1808 518 1811 515T1820 495Q1840 412 1899 351T2041 270Q2061 263 2061 251Q2061 240 2053 236T2020 225T1971 204Q1913 173 1874 122T1820 6Q1816 -10 1812 -13T1792 -17H1787Q1762 -16 1758 -9Q1757 -6 1757 -2Q1757 1 1761 17Q1789 138 1890 220H1476L1063 221'], + + // LONG LEFTWARDS DOUBLE ARROW + 0x27F8: [547,46,1868,64,1804,'1063 333L700 332H338L324 321Q283 290 230 264L205 250Q266 224 323 180L338 170L700 169H1063L1064 168Q1080 169 1423 169H1782L1786 166Q1791 163 1793 162T1798 157T1802 149T1804 139Q1804 118 1782 109H1063L733 108H404L412 99Q455 50 488 -10Q498 -27 493 -37Q487 -46 465 -46H460Q446 -46 439 -39T426 -18T399 25T344 89Q239 194 99 229Q96 230 92 231T85 232T79 234T73 235T69 237T66 240T65 244T64 250Q64 267 90 271Q197 295 286 361T430 525Q439 542 442 544T460 547H465Q487 547 492 539Q496 531 496 530Q496 521 471 482T414 405L404 394L733 393H1063Q1064 392 1065 392Q1081 393 1423 393H1782Q1783 392 1786 390T1792 386T1798 381T1802 374T1804 363Q1804 345 1782 333H1063'], + + // LONG RIGHTWARDS DOUBLE ARROW + 0x27F9: [547,46,1870,64,1804,'87 109Q64 118 64 139Q64 159 86 168Q89 169 448 169H1169L1532 170L1546 180Q1562 193 1580 204T1612 223T1638 237T1657 246L1664 250L1639 264Q1586 290 1545 321L1531 332H1169L807 333H87Q64 343 64 362Q64 383 84 391Q89 393 448 393H1136L1465 394L1455 405Q1428 436 1401 477T1374 531Q1374 547 1399 547H1404H1409Q1423 547 1430 540T1443 519T1470 475T1526 411Q1634 303 1779 271Q1780 271 1783 270T1788 269T1792 268T1796 266T1799 264T1802 260T1803 256T1804 250Q1804 242 1800 238T1783 231T1755 225T1712 211T1654 185Q1517 112 1439 -24Q1430 -40 1426 -43T1409 -46H1404Q1373 -46 1373 -31Q1373 -24 1381 -10Q1414 50 1457 99L1465 108H1136L807 109H87'], + + // LONG LEFT RIGHT DOUBLE ARROW + 0x27FA: [547,46,2126,64,2060,'1063 333L700 332H338L324 321Q283 290 230 264L205 250Q266 224 323 180L338 170L700 169H1425L1788 170L1802 180Q1818 193 1836 204T1868 223T1894 237T1913 246L1920 250L1895 264Q1842 290 1801 321L1787 332H1425L1063 333ZM733 393H1392L1721 394L1711 405Q1684 436 1657 477T1630 531Q1630 547 1655 547H1660H1665Q1679 547 1686 540T1699 519T1726 475T1782 411Q1890 303 2035 271Q2036 271 2039 270T2044 269T2048 268T2052 266T2055 264T2058 260T2059 256T2060 250Q2060 242 2056 238T2039 231T2011 225T1968 211T1910 185Q1773 112 1695 -24Q1686 -40 1682 -43T1665 -46H1660Q1629 -46 1629 -31Q1629 -24 1637 -10Q1670 50 1713 99L1721 108H1392L1063 109L733 108H404L412 99Q455 50 488 -10Q498 -27 493 -37Q487 -46 465 -46H460Q446 -46 439 -39T426 -18T399 25T344 89Q239 194 99 229Q96 230 92 231T85 232T79 234T73 235T69 237T66 240T65 244T64 250Q64 267 90 271Q197 295 286 361T430 525Q439 542 442 544T460 547H465Q487 547 492 539Q496 531 496 530Q496 521 471 482T414 405L404 394L733 393'], + + // LONG RIGHTWARDS ARROW FROM BAR + 0x27FC: [518,17,1833,65,1773,'65 426Q74 448 95 448Q112 448 125 426V281H130L132 280H134Q162 281 448 281H1188L1602 282Q1569 304 1530 357T1473 482Q1469 500 1469 501Q1469 512 1480 517Q1482 518 1500 518H1505Q1520 518 1523 515T1532 495Q1552 412 1611 351T1753 270Q1773 263 1773 251Q1773 240 1765 236T1732 225T1683 204Q1625 173 1586 122T1532 6Q1528 -10 1524 -13T1504 -17H1499Q1474 -16 1470 -9Q1469 -6 1469 -2Q1469 1 1473 17Q1501 138 1602 220H1188L775 221H135Q133 220 130 220H125V76Q115 54 95 54Q73 54 65 76V426'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Bold/SupplementalArrowsA.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js new file mode 100644 index 0000000..c31a756 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js @@ -0,0 +1,287 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Italic/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-italic'], + { + // SPACE + 0x20: [0,0,250,0,0,''], + + // EXCLAMATION MARK + 0x21: [716,0,307,107,380,'330 716Q351 716 365 703T380 670V659L304 433Q230 207 227 204Q225 198 205 198Q184 198 184 207T220 439T260 669Q270 694 297 708Q300 709 304 710T311 713T316 714Q324 716 330 716ZM107 51Q110 83 133 102T179 121Q207 121 219 105T231 72Q231 45 209 23T156 0Q138 0 123 11T107 51'], + + // QUOTATION MARK + 0x22: [694,-379,514,176,538,'214 620Q214 647 236 670T289 694Q312 694 326 677T341 633V624Q341 588 327 550T294 482T253 428T216 392T196 379Q191 379 184 388T176 401Q176 404 195 421T243 472T287 547Q299 576 299 582L295 580Q291 578 282 576T264 573Q241 573 228 585T214 620ZM411 620Q411 647 433 670T486 694Q509 694 523 677T538 633V624Q538 588 524 550T491 482T450 428T413 392T393 379Q388 379 381 388T373 401Q373 404 392 421T440 472T484 547Q496 576 496 582L492 580Q488 578 479 576T461 573Q438 573 425 585T411 620'], + + // NUMBER SIGN + 0x23: [694,194,818,115,828,'281 327H228Q186 327 175 330T164 347Q164 359 176 365Q179 367 292 367H404L563 688Q569 694 578 694T593 686T597 670Q597 667 531 535L448 367H614L773 688Q779 694 787 694Q796 694 802 688T808 674V672L807 670Q807 667 732 517L658 368L736 367H814Q828 357 828 347Q828 336 812 327H637L599 250Q561 174 561 173H662H724Q760 173 769 170T779 153T770 136T729 132Q721 132 696 132T651 133H540L380 -188Q374 -194 366 -194Q357 -194 351 -188T345 -174L346 -172V-170Q346 -167 412 -35L495 133H330L170 -188Q164 -194 156 -194Q147 -194 141 -188T135 -174L136 -172V-170Q136 -167 211 -17L285 133H207L130 134Q115 140 115 153Q115 164 131 173H306L344 250Q382 326 382 327H281ZM592 327H427L389 250Q351 174 351 173H516L554 250Q592 326 592 327'], + + // PERCENT SIGN + 0x25: [750,56,818,145,847,'301 348Q257 348 231 383T205 480Q205 553 244 629T346 736Q370 750 394 750Q416 750 429 742T458 714Q512 644 606 644Q722 644 802 732Q817 750 827 750Q835 750 841 744T847 730Q847 725 827 700T689 540Q586 421 512 335Q180 -50 176 -52Q172 -56 165 -56Q157 -56 151 -50T145 -35Q145 -29 162 -9T330 186Q392 258 430 302Q711 627 711 628L701 624Q652 607 604 607Q551 607 494 634L479 642V624Q479 544 439 467Q414 416 377 382T301 348ZM270 443Q270 385 303 385H306H308Q326 385 348 407Q384 441 409 504T434 627Q434 713 390 713Q358 713 328 663Q307 631 289 556T270 451V443ZM608 -56Q573 -56 543 -23T513 76Q513 129 536 190T604 296L627 318Q670 347 704 347Q747 347 767 310T788 222Q788 126 732 35T608 -56ZM742 222Q742 310 699 310Q677 310 655 285T620 227Q608 197 593 138T578 42V36Q578 -18 613 -18Q657 -18 699 64T742 222'], + + // AMPERSAND + 0x26: [716,23,767,127,802,'209 444Q209 546 278 631T424 716Q473 716 501 683T530 601Q530 554 511 535T467 515Q446 515 437 527T427 553Q427 578 446 594T481 610H483V617Q480 641 464 660T419 679Q367 679 328 603Q316 578 305 538T288 470L282 443L295 449Q308 455 330 462T371 469Q397 469 413 450T430 404Q430 363 400 329T331 295Q291 295 256 322Q255 322 246 293T227 223T217 158Q217 117 232 88T273 43T327 22T387 15Q457 15 512 37T599 93T652 169T680 248T688 317T678 380T659 423T647 437Q643 435 637 431T613 416T581 392T554 364T538 332Q540 310 541 310Q554 335 587 335Q601 335 613 327T626 300Q626 290 622 279T603 255T563 242Q532 245 512 263T491 320Q494 351 511 377T547 418T600 456T652 494Q676 512 697 539T728 582T738 601Q738 602 736 602Q732 602 726 604T714 616T707 638Q707 661 724 677T764 694Q799 694 802 660Q802 625 767 562T688 467L694 458Q700 449 702 444T711 428T720 408T727 385T733 358T735 327Q735 281 724 235T685 141T617 59T515 1T375 -22Q270 -22 199 34T127 181Q127 216 147 270T207 374L216 386Q209 421 209 444ZM386 412Q386 432 366 432Q345 432 325 418T294 390T284 375Q284 371 289 362T306 343T335 332Q355 332 367 350T383 384T386 412'], + + // APOSTROPHE + 0x27: [694,-378,307,212,377,'250 620Q250 647 272 670T325 694Q348 694 362 677T377 633V624Q377 566 343 506T275 412T231 379Q226 379 220 388T213 401T232 421T279 472T323 547Q335 573 335 582L331 580Q327 578 318 576T300 573Q277 573 264 585T250 620'], + + // LEFT PARENTHESIS + 0x28: [750,250,409,144,517,'241 -250Q203 -212 174 -140T144 39Q144 158 180 288T296 544T481 746L487 750H499Q517 750 517 740Q517 736 495 716Q399 630 331 491T236 228T208 3Q208 -73 224 -130T255 -214T271 -244Q271 -250 252 -250H241'], + + // RIGHT PARENTHESIS + 0x29: [750,250,409,17,390,'326 497Q326 546 320 588T304 655T285 699T269 728T262 740Q262 746 267 749L272 750Q276 750 281 750H293Q331 712 360 640T390 461Q390 332 339 171T188 -116Q161 -150 121 -188T47 -250H35Q17 -250 17 -240Q17 -236 39 -216Q135 -130 203 9T298 272T326 497'], + + // ASTERISK + 0x2A: [750,-320,511,195,584,'560 658Q569 658 576 649T584 631Q584 625 583 620T577 611T569 603T556 595T540 587T519 578T494 566L428 536Q427 535 433 531T479 502Q525 475 532 469T539 450Q538 435 525 424T497 412Q489 412 482 418T442 456Q400 497 400 494L387 420Q376 353 373 343T352 323Q345 320 336 320H331Q322 320 316 327T309 343Q309 347 334 420L359 496Q358 496 297 456T234 414Q228 411 221 411Q212 411 204 417T195 439Q198 458 209 465T283 502L353 534L300 566Q255 593 247 599T239 616Q239 631 252 644T282 658Q290 658 295 654T335 615L378 573L391 647Q393 657 395 671T398 691T400 706T404 720T408 730T414 739T423 744T434 749Q435 749 439 749T445 750Q467 748 469 728Q469 723 457 685T432 610L420 573L481 613Q548 658 560 658'], + + // PLUS SIGN + 0x2B: [557,57,767,139,753,'139 237T139 250T151 266T198 270H293H431L465 407Q469 424 476 452Q494 528 500 542T519 557Q526 557 532 552T538 538Q538 536 507 409T472 272Q472 270 604 270Q737 270 741 268Q753 261 753 250Q753 237 742 233T696 229Q687 229 655 229T599 230H462L461 226Q461 224 427 91T392 -47Q387 -57 374 -57Q367 -57 361 -51T355 -37Q355 -31 388 99L421 230H288Q267 230 238 230T199 229Q163 229 151 233'], + + // COMMA + 0x2C: [121,194,307,69,232,'106 46Q106 68 121 90T167 120Q168 120 173 120T180 121Q232 121 232 59V54Q232 18 219 -20T186 -88T145 -143T109 -181T88 -194Q84 -194 77 -185T69 -171Q69 -168 70 -166T76 -161T85 -154T101 -139T124 -114Q146 -88 162 -58T183 -12T188 7Q187 7 183 5T172 2T156 0Q129 0 118 14T106 46'], + + // HYPHEN-MINUS + 0x2D: [251,-180,358,84,341,'205 180H131Q102 180 93 181T84 190Q90 238 103 251H334Q341 244 341 241Q341 236 336 214T327 186Q325 181 312 181T205 180'], + + // FULL STOP + 0x2E: [121,0,307,107,231,'107 50Q107 76 129 98T181 121Q203 121 217 108T231 72Q231 47 210 24T156 0Q135 0 121 13T107 50'], + + // SOLIDUS + 0x2F: [750,250,511,19,617,'596 750Q604 750 610 744T617 730L616 728Q616 727 616 726Q615 723 337 244T55 -242Q49 -250 40 -250Q30 -250 25 -243Q18 -238 20 -226Q21 -223 299 256T581 742Q589 750 596 750'], + + // DIGIT ZERO + 0x30: [665,21,511,110,562,'414 665Q562 665 562 490Q562 426 534 318Q451 -21 251 -21Q222 -21 202 -15Q155 2 134 40T110 144Q110 201 127 286T187 470T287 614Q348 665 414 665ZM187 98Q187 59 208 37T260 15Q320 15 365 83Q394 128 440 312T487 547Q487 580 471 600T433 627Q428 628 408 628Q381 628 353 609T311 569Q279 526 239 364T190 143Q187 120 187 98'], + + // DIGIT ONE + 0x31: [666,0,511,110,468,'248 491Q228 491 228 502Q228 516 236 532Q237 536 246 537T275 541T314 552Q350 567 382 595T430 644L446 664Q450 666 454 666Q468 666 468 658Q468 647 395 359Q321 63 321 59Q321 52 334 50T388 46H422Q428 37 428 35Q428 19 421 5Q416 0 405 0Q400 0 361 1T263 2Q215 2 185 2T142 1T127 0Q110 0 110 11Q110 13 113 25T118 40Q120 46 146 46Q196 46 212 49T235 61Q238 66 295 295L353 526L340 519Q328 512 302 503T248 491'], + + // DIGIT TWO + 0x32: [666,22,511,76,551,'159 404Q159 433 176 476T222 562T297 635T395 666Q466 666 508 617T551 497Q551 473 545 446Q534 388 482 333Q441 292 355 240T264 184Q216 151 179 101L171 91Q171 90 177 90Q206 90 269 77T366 64Q385 64 390 65Q418 73 441 98T475 156Q479 168 481 170T495 173H518Q524 167 524 166T521 152Q502 86 459 32T353 -22Q315 -22 259 15T172 53Q156 53 143 36T126 1L121 -16Q119 -22 98 -22H82Q76 -16 76 -13T80 5T98 50T132 111T189 178T274 242Q327 273 364 305T420 370T447 427T460 483Q466 514 466 538Q466 586 443 607T389 629Q338 629 293 584T226 487T204 399Q204 390 204 386T209 378T222 373Q258 376 282 422T307 493Q307 506 302 517T297 531Q297 537 308 546T327 551Q329 550 333 543T340 523T344 497Q344 450 306 393T216 336Q186 336 173 355T159 396V404'], + + // DIGIT THREE + 0x33: [666,22,511,96,562,'296 531Q296 536 307 544T322 553Q330 553 338 534T346 501Q346 468 319 440T258 412Q232 412 216 430T200 478Q200 552 281 618Q345 666 416 666Q489 666 525 625T562 530Q562 473 525 419T430 335L416 329Q479 288 479 206Q479 142 440 89T344 7T229 -22Q173 -22 135 12T96 106Q96 192 157 192Q192 192 197 157Q197 134 184 117T142 96Q153 47 180 29Q201 15 232 15Q249 15 275 22Q307 34 331 57Q363 90 379 153T396 246Q396 261 393 272T384 290T371 301T355 308T341 311T326 312H316H307Q287 312 282 313T276 320Q276 323 279 337T283 352Q284 356 290 357T325 358Q364 359 368 360Q386 365 400 372T433 397T464 448T485 527Q487 535 487 556Q487 629 414 629Q350 629 298 580T245 476Q245 450 263 450H264Q280 450 294 463T308 496Q308 508 302 518T296 531'], + + // DIGIT FOUR + 0x34: [666,195,511,46,478,'448 34Q453 34 463 22T473 5Q473 -2 457 -7Q417 -22 383 -23H366L350 -91Q348 -98 345 -111T340 -130T335 -146T330 -161T325 -172T318 -182T310 -188T299 -193T286 -194Q256 -194 253 -165Q253 -159 271 -83T292 -5Q231 29 169 29Q114 29 91 14Q72 -2 65 1Q46 20 46 28Q46 35 55 43T77 60T96 74Q306 257 396 623Q410 666 444 666Q459 666 468 657T478 634Q478 627 470 595T440 504T387 381T303 239T187 99L164 75H178Q217 75 260 59L304 43Q304 48 325 127Q342 195 346 207T358 228Q372 242 391 242Q403 242 413 235T423 214Q423 205 402 116T378 25Q378 23 387 23Q405 23 418 25T439 31T448 34'], + + // DIGIT FIVE + 0x35: [667,22,511,106,567,'196 304Q189 309 189 314Q189 317 231 487T275 660Q278 666 283 666Q287 666 302 658T346 643T413 635Q447 635 481 642T537 658T559 666Q561 666 564 663T567 658Q565 637 557 629Q528 600 474 573T359 545Q342 545 327 546T304 550T294 552L291 540Q288 529 283 507T273 465L251 379Q307 420 364 420Q415 420 456 382T497 261Q497 165 429 82T262 -20Q256 -20 247 -21T233 -22Q176 -22 141 15T106 112Q106 208 173 208Q192 208 203 197T214 169Q214 143 195 125T156 107H153V100Q155 73 174 47T239 21Q245 21 259 23Q355 46 392 200Q393 205 394 207Q412 276 412 312Q412 352 396 367T358 383Q288 383 233 314Q226 306 224 305T209 304H196'], + + // DIGIT SIX + 0x36: [665,22,511,120,565,'377 434Q425 434 457 404T499 341T509 278Q509 243 496 194T456 105T383 27Q322 -22 256 -22Q142 -22 122 114Q120 130 120 159Q120 221 135 292T195 452T310 599Q390 665 465 665Q565 665 565 583V574Q565 543 546 524Q528 506 504 506Q491 506 478 514T465 543Q465 585 515 602Q505 626 466 626Q419 626 372 587Q334 557 305 503T266 409L255 370Q287 410 339 429Q361 434 377 434ZM424 333Q424 359 411 378T365 397Q318 397 282 356T230 257T205 157T197 94Q197 67 211 45T260 22Q313 22 341 57T386 151Q424 283 424 333'], + + // DIGIT SEVEN + 0x37: [666,22,511,136,634,'466 519Q448 519 435 528T416 550T400 571T376 581Q324 581 271 540T186 437Q185 435 183 432T181 428T179 426T177 424T174 423T171 422T165 422H159Q141 422 141 423Q136 423 136 431Q136 433 190 548T247 665Q249 666 266 666H282Q288 660 288 657Q288 655 284 646T276 628L273 620Q337 666 390 666Q413 666 425 652T438 620T444 584T457 559Q460 557 470 557Q497 557 524 582T571 635T594 665Q595 666 612 666H628Q634 660 634 657Q634 653 618 629T572 556T510 441T437 269T367 43Q356 -22 304 -22Q291 -22 278 -14T263 14Q263 36 281 95T354 269T486 507Q497 524 495 524Q482 519 466 519'], + + // DIGIT EIGHT + 0x38: [666,21,511,99,553,'209 449Q209 545 278 605T416 666Q482 666 517 631T553 546Q553 513 539 482T504 430T463 394T426 370L410 360L430 343Q471 309 483 278T495 211Q495 141 441 75Q363 -21 253 -21Q182 -21 141 18T99 117Q99 161 119 201T170 268T222 308T259 331L272 338L259 349Q212 389 209 449ZM492 542Q492 586 469 605T415 625Q360 625 320 587T279 505Q279 495 281 487T286 474T295 460T306 449T321 436T337 422Q379 386 380 386Q389 386 420 412T472 471Q492 513 492 542ZM163 118Q163 76 189 49T258 21Q316 21 368 64T420 170Q420 193 412 208T395 233T350 271L302 312Q298 312 284 303T249 276T209 235T177 181T163 118'], + + // DIGIT NINE + 0x39: [666,22,511,107,554,'297 211Q258 211 230 228T189 273T169 323T163 367Q163 411 183 472T254 585Q327 656 401 665Q403 665 412 665T427 666Q458 664 481 652T518 622T539 580T550 535T553 491Q553 448 544 395T515 277T454 148T358 37Q282 -22 213 -22Q166 -22 137 -1T107 55V64Q107 88 114 104T134 127T154 136T169 138Q185 138 196 128T207 101Q207 82 196 68T172 48L161 43Q161 40 167 36T187 26T219 21Q286 21 344 99Q364 126 382 169T408 241T417 275L412 269Q406 263 395 253T370 234T337 218T297 211ZM476 552Q476 626 417 626Q368 626 330 584Q312 563 300 533T270 433Q248 341 248 312Q248 286 262 267T310 248Q353 248 387 287T440 380T467 480T476 552'], + + // COLON + 0x3A: [431,0,307,107,308,'184 358Q184 385 206 408T258 431Q279 431 293 418T308 383Q308 354 284 332T233 310Q212 310 198 324T184 358ZM107 50Q107 76 129 98T181 121Q203 121 217 108T231 72Q231 47 210 24T156 0Q135 0 121 13T107 50'], + + // SEMICOLON + 0x3B: [431,195,307,70,308,'184 358Q184 385 206 408T258 431Q279 431 293 418T308 383Q308 354 284 332T233 310Q212 310 198 324T184 358ZM107 47Q107 77 130 99T180 121Q226 121 226 61Q226 25 214 -14T182 -84T144 -140T109 -180T88 -194T77 -185T70 -172Q70 -169 84 -155T121 -112T161 -48Q180 -10 180 3Q180 4 174 2Q172 2 166 1T156 0Q135 0 121 13T107 47'], + + // EQUALS SIGN + 0x3D: [367,-133,767,116,776,'776 357T776 347T761 327H470Q180 327 176 329Q164 334 164 347Q164 359 176 365Q179 367 470 367H761Q776 357 776 347ZM116 143T116 153T131 173H422Q713 173 717 171Q728 166 728 153T717 135Q713 133 422 133H131Q116 143 116 153'], + + // QUESTION MARK + 0x3F: [716,0,511,195,551,'235 431Q217 431 206 442T195 468Q195 490 215 537T280 638T380 707Q403 716 423 716Q425 716 429 716T436 715Q485 715 518 681T551 590Q551 543 530 503T482 439Q471 428 400 375T318 310Q300 287 300 259Q300 236 315 236Q333 236 352 251T384 300Q386 306 407 306H423Q429 300 429 297Q429 272 393 235T308 198Q287 198 269 215T251 270Q251 330 293 374L374 436Q377 438 401 456T432 480T457 503T481 531T494 561T501 598Q501 614 499 626Q482 678 430 678H426Q392 678 362 660T311 615T280 571T264 540L259 528Q259 527 266 526T283 516T294 492Q294 466 276 449T235 431ZM209 51Q212 83 235 102T281 121Q309 121 321 105T333 72Q333 45 311 23T258 0Q240 0 225 11T209 51'], + + // COMMERCIAL AT + 0x40: [705,12,767,152,789,'198 250Q198 155 248 91T394 26Q514 26 640 80L650 84H675H683Q709 84 709 76Q709 73 708 71Q706 64 660 45T534 8T383 -11T260 24T181 115Q152 168 152 248Q152 410 268 552Q303 590 324 608Q439 705 551 705Q611 705 658 683T733 623T775 543T789 454Q789 380 766 304T720 192Q677 125 617 125Q591 125 573 137T548 160T541 176Q541 178 540 178L534 173Q527 168 515 160T488 144T454 131T417 125Q361 125 320 166T279 284Q279 393 356 481T523 569Q570 569 603 537Q623 515 632 490L637 480L657 479Q684 479 684 470Q684 465 650 333L617 199V185Q616 162 628 162Q677 162 712 278Q743 381 743 442Q743 555 687 611T553 668Q467 668 385 608T250 450T198 250ZM598 445Q598 453 594 470T569 510T518 532Q463 532 410 448T356 271Q356 220 374 191T423 162Q482 162 552 255L575 348Q598 440 598 445'], + + // LATIN CAPITAL LETTER A + 0x41: [716,0,743,58,696,'85 46Q112 48 132 56T161 73T176 92T185 104Q185 106 353 407T524 709Q527 716 551 716Q568 716 572 712Q573 711 574 710Q576 708 594 384Q613 54 617 52H618Q626 46 672 46H689Q696 41 696 36Q696 13 683 0H670Q639 2 557 2Q526 2 500 2T459 2T441 1Q425 1 425 10Q425 12 427 24Q428 27 429 31T430 36T432 40T434 43T437 45T443 46T450 46Q514 46 514 69Q514 74 511 136L506 209H292L260 152Q222 84 222 74Q222 48 264 46Q280 46 280 35Q280 33 278 21Q275 7 272 4T259 0Q256 0 232 1T159 2Q135 2 109 1T78 0Q58 0 58 10Q58 14 61 26T66 40Q68 46 85 46ZM504 260Q503 263 496 407T486 553L466 520Q446 486 402 406L318 256Q318 255 411 255H504V260'], + + // LATIN CAPITAL LETTER B + 0x42: [683,0,704,57,732,'57 11Q57 38 69 45L74 46Q78 46 85 46T99 46Q134 47 145 50T162 62Q164 66 233 344T303 626Q303 627 302 629V631Q296 637 241 637H223Q217 642 217 645T219 664Q223 677 229 683H411L593 682L605 680Q616 678 628 675T660 662T694 639T720 601T732 547Q732 519 726 503Q710 452 662 414T556 360L545 357L556 355Q604 346 641 312T678 221Q678 155 622 92T482 8Q459 2 439 2T256 0H154H105Q74 0 66 2T57 11ZM629 549Q628 550 629 557T627 576T619 600T601 622T570 636Q564 637 490 637Q472 637 454 637T424 636T411 636Q399 635 395 622T364 500Q333 377 332 376Q332 374 408 374L485 375L495 377Q547 390 588 437T629 549ZM504 336Q500 337 410 337Q323 337 322 336Q322 334 305 263T270 122T252 51Q252 47 337 46Q346 46 361 46T384 45Q425 45 455 55T515 95Q574 156 574 235Q574 276 555 304T504 336'], + + // LATIN CAPITAL LETTER C + 0x43: [705,21,716,150,812,'395 -21Q279 -21 215 56T150 244Q150 402 265 543Q339 630 421 667T562 704Q596 704 604 703Q627 698 647 689T679 669T699 649T711 633T716 627L753 665Q790 704 792 704Q793 705 798 705Q812 705 812 698Q812 694 780 561Q744 422 744 421Q742 416 739 415T721 413H705Q699 419 699 426Q701 432 701 444Q705 464 705 493Q705 524 700 551T681 604T643 644T583 659Q480 659 387 570Q321 502 287 397T252 213Q252 123 297 74Q347 24 421 24Q500 24 564 89T653 240Q656 253 659 255T677 257Q700 257 700 248Q700 242 694 222Q681 183 656 143T593 65T504 3T395 -21'], + + // LATIN CAPITAL LETTER D + 0x44: [683,0,755,56,775,'56 11Q56 38 68 45L72 46Q77 46 84 46T98 46Q133 47 144 50T161 62Q163 66 232 344T302 626Q302 627 302 629L301 631Q295 637 240 637H222Q216 642 216 645T218 664Q222 677 228 683H403Q582 683 589 682Q672 674 723 608T775 440Q775 312 709 209T562 54Q502 14 432 2Q423 1 243 0H148H102Q72 0 64 2T56 11ZM254 51Q254 46 348 46Q395 46 422 50T484 71Q585 121 633 255Q679 396 679 477Q679 522 665 554T629 603T587 626T548 636Q547 636 536 636T510 636T480 637Q420 637 411 636T398 627Q396 623 325 339T254 51'], + + // LATIN CAPITAL LETTER E + 0x45: [680,0,678,54,743,'248 634Q216 634 214 638Q213 641 213 646Q213 674 224 678Q226 680 481 680H736Q743 676 743 669Q743 665 729 557T713 447Q711 440 690 440H675Q667 445 667 454Q667 455 671 481T675 536Q675 583 658 604T592 632Q574 634 475 634Q439 634 424 633T405 631T399 625Q397 622 367 501T336 377Q336 376 367 376H388Q451 376 477 389Q493 399 503 419T520 462T528 489Q531 493 549 493Q557 493 561 492T566 491T569 488T572 483L539 351Q507 221 503 216Q503 216 500 213H484Q468 213 465 216Q461 219 461 225Q461 228 466 250T472 290Q472 317 452 323T368 330H324Q323 326 289 191T255 51T331 46H360Q413 46 444 49T511 67T570 113Q589 137 608 175T638 242T652 272Q656 274 670 274Q693 274 693 262L648 148Q590 4 588 2Q585 0 323 0H61Q54 4 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62L194 200Q229 337 264 477T299 623Q299 630 292 631T248 634'], + + // LATIN CAPITAL LETTER F + 0x46: [680,-1,653,54,731,'299 623Q299 630 292 631T247 634H219Q213 640 213 642T215 661Q218 673 225 680H724Q731 676 731 669Q731 665 717 557T701 447Q699 440 678 440H663Q656 444 656 452Q656 457 659 485T663 538Q663 586 644 607T566 633Q564 633 535 633T486 634H458Q404 634 399 625Q396 620 364 492L332 363H380Q446 365 464 373Q496 389 514 458Q518 477 523 479Q527 480 541 480H556Q563 475 563 470Q563 467 532 339T498 207Q496 200 475 200H460Q453 207 453 212Q454 213 456 225T461 254T464 278Q464 304 445 310T369 317H321L289 190Q257 66 257 59Q257 54 261 52T283 48T337 46Q348 46 352 46T360 45T366 42T368 37Q368 32 365 23Q360 4 355 2Q352 1 342 1Q336 1 297 1T199 2Q138 2 106 2T71 1H68Q54 1 54 11Q54 38 66 45L70 46Q75 46 82 46T96 46Q131 47 142 50T159 62L194 200Q229 337 264 477T299 623'], + + // LATIN CAPITAL LETTER G + 0x47: [705,22,774,150,812,'632 -1Q629 -1 622 5T604 25T583 53Q508 -22 394 -22Q287 -22 219 52T150 244Q150 402 265 543Q339 630 421 667T562 704Q596 704 604 703Q627 698 647 689T679 669T699 649T711 633T716 627L753 665Q790 704 792 704Q793 705 798 705Q812 705 812 698Q812 694 780 561Q744 422 744 421Q742 416 739 415T721 413H705Q699 419 699 426Q701 432 701 444Q705 464 705 493Q705 524 700 551T681 604T643 644T583 659Q480 659 387 570Q319 501 286 394T252 208Q252 156 269 118T314 61T369 33T425 24Q470 24 509 46T566 104Q571 116 583 162T595 214Q595 222 583 223Q561 227 517 227H495Q488 230 488 238Q488 254 495 268Q500 273 511 273Q515 273 532 273T581 272T649 271Q731 271 752 273H761Q767 267 767 264T765 246Q761 233 755 227H742Q698 227 693 213L639 4Q636 -1 632 -1'], + + // LATIN CAPITAL LETTER H + 0x48: [683,0,743,54,860,'61 0Q54 7 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62Q161 66 230 344T300 626Q300 627 300 629L299 631Q293 637 238 637H220Q214 642 214 645T216 664Q220 677 226 683H239Q307 681 372 681Q480 681 486 683H496Q502 677 502 674T500 656Q496 643 490 637H472Q418 637 406 630Q400 627 396 612T367 500Q360 474 352 442T340 395L336 380Q336 378 466 378H596Q657 622 657 626Q657 627 656 629V631Q650 637 595 637H577Q571 642 571 645T573 664Q577 677 583 683H596Q664 681 729 681Q837 681 843 683H853Q860 676 860 672Q858 647 848 637H819Q783 636 772 634T756 623Q753 618 684 340T614 57Q614 50 621 49T666 46Q697 46 699 40Q701 37 698 21Q693 3 689 1Q686 0 677 0Q673 0 657 0T611 1T546 2Q453 2 428 0H418Q411 7 411 11Q411 27 418 41Q422 46 452 46Q488 47 499 50T516 62Q517 64 550 196T584 331Q584 332 454 332H324L291 197Q257 64 257 56Q257 50 265 49T309 46Q340 46 342 40Q344 37 341 21Q336 3 332 1Q329 0 320 0Q316 0 300 0T254 1T189 2Q96 2 71 0H61'], + + // LATIN CAPITAL LETTER I + 0x49: [683,0,386,49,508,'235 637Q217 637 213 638T209 649Q209 673 220 682Q222 683 237 683Q278 681 369 681Q404 681 441 682T483 683Q499 683 503 681T508 672Q508 670 505 658T500 643Q498 637 464 637Q425 635 415 633T398 621Q396 618 327 340T257 58T260 52T278 48T322 46Q349 46 349 36Q349 31 346 22Q342 4 337 1Q336 1 334 1T329 0Q325 0 307 0T258 1T190 2Q95 2 67 0H56Q49 7 49 11Q51 38 62 46H91Q129 47 141 50T159 62Q161 66 230 344T300 625Q300 637 235 637'], + + // LATIN CAPITAL LETTER J + 0x4A: [683,22,525,78,622,'361 637Q333 637 331 641Q330 644 330 649Q330 673 341 682Q343 683 360 683Q405 681 500 681Q551 681 577 681T607 682Q622 682 622 673Q622 665 616 647Q614 640 610 639T587 637Q547 636 541 624Q538 618 477 374T413 124Q391 64 333 22T207 -21T109 12T78 86Q78 130 101 150T149 170Q193 170 196 129Q196 100 178 80T137 58L132 57Q134 52 138 46T160 28T205 16Q242 16 273 48T319 122Q322 129 383 371T444 627Q444 637 361 637'], + + // LATIN CAPITAL LETTER K + 0x4B: [683,0,769,54,859,'668 621Q668 635 645 637Q629 637 629 648Q629 650 632 662T637 677Q640 682 653 682Q657 682 688 681T764 680Q786 680 810 681T839 682Q859 682 859 672Q859 655 852 643Q849 637 839 637Q804 637 768 621T717 595T697 578Q696 578 600 497L505 417L508 408Q543 311 574 227T618 106T632 69Q645 47 688 46H707Q713 38 713 37T710 19Q706 6 700 0H688Q659 2 587 2Q557 2 532 2T492 2T474 1Q458 1 458 10Q458 13 460 23Q464 39 466 42T480 46Q526 46 526 72Q526 75 476 213L427 350Q426 350 396 325T334 272T302 242Q302 241 299 230T290 194T279 150Q257 61 257 55Q257 50 265 49T309 46H337Q343 40 343 38T341 19Q337 6 331 0H316Q280 2 190 2Q158 2 131 2T89 2T70 1Q54 1 54 11Q54 38 66 45L70 46Q75 46 82 46T96 46Q131 47 142 50T159 62Q161 66 230 344T300 626Q300 627 300 629L299 631Q293 637 238 637H220Q214 642 214 645T216 664Q220 677 226 683H239Q307 681 372 681Q386 681 414 681T464 682L487 683H496Q502 677 502 674T500 656Q495 641 491 637H462Q426 636 415 634T399 623Q396 618 358 467L320 314Q321 314 484 452Q510 474 552 509Q625 570 646 590T668 621'], + + // LATIN CAPITAL LETTER L + 0x4C: [683,0,627,54,628,'61 0Q54 4 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62Q161 66 230 344T300 626Q300 627 300 629L299 631Q293 637 238 637H220Q214 642 214 645T216 664Q220 677 226 683H240Q275 681 371 681Q407 681 438 681T487 682T509 682Q527 682 527 674Q527 670 524 659Q523 657 523 654T522 649T520 645T519 642T517 640T515 639T512 638T507 637T502 637T494 637H478Q433 636 417 633T396 617Q395 614 325 334T255 51Q255 47 319 47Q387 47 410 52Q459 65 494 98T543 163T570 229T589 273H622Q628 264 628 262Q628 259 584 133T539 5Q537 1 511 1Q482 0 296 0H61'], + + // LATIN CAPITAL LETTER M + 0x4D: [683,0,897,58,1010,'72 1Q58 1 58 11Q58 33 66 41Q68 46 87 46Q150 50 168 84Q172 91 238 356T304 626Q304 627 304 629L303 631Q297 637 242 637H224Q218 642 218 645T220 664Q224 677 230 683H326H394Q417 683 422 682T429 676L480 127L502 163Q523 199 560 262T642 400Q801 668 805 676L817 683H1003Q1010 678 1010 672Q1010 650 997 637H979Q915 637 906 623Q903 618 834 340T764 57Q764 50 771 49T817 46H845Q851 38 851 37T848 19Q845 7 838 0H824Q789 2 701 2Q670 2 644 2T603 2T584 1Q569 1 569 11Q569 13 571 25Q576 42 581 45L586 46Q590 46 597 46T611 46Q646 47 657 50T674 62L813 616L634 313Q453 7 452 7Q446 0 428 0Q409 0 407 6Q405 10 379 304T351 604L285 348Q220 83 220 82Q220 65 233 57T279 46H295Q301 38 301 37T298 19Q295 7 288 0H275Q244 2 171 2Q145 2 123 2T88 2T72 1'], + + // LATIN CAPITAL LETTER N + 0x4E: [683,1,743,54,860,'633 637Q624 637 621 639T617 650Q617 670 630 683H641Q682 680 736 680Q836 680 845 683H853Q860 676 860 672Q858 647 848 637H832Q764 633 750 598Q746 590 673 300Q656 230 638 156T610 44L600 7Q598 0 576 0H559Q553 6 448 297L342 588Q341 588 279 336T216 81Q216 49 274 46Q293 46 295 40Q297 37 294 21Q293 19 292 16T291 11T290 7T289 4T287 2T284 1T280 1T275 0T263 0T229 1T167 2Q91 2 70 0H61Q54 7 54 11T57 27Q61 41 64 43T83 46Q146 50 164 84Q167 90 235 362L303 634Q300 635 253 637H220Q214 643 214 645T216 664Q220 677 226 683H314Q386 683 397 683T410 677Q412 675 501 428L591 179Q591 178 592 180T595 189T600 209T610 246T624 303T645 385Q698 595 698 606Q698 618 683 627T633 637'], + + // LATIN CAPITAL LETTER O + 0x4F: [704,22,767,149,788,'149 237Q149 326 186 413T282 563T412 665T552 704Q619 704 667 678T741 611T777 528T788 444Q788 328 728 219T572 44T377 -22Q275 -22 212 50T149 237ZM688 487Q688 570 650 617T548 665Q467 665 398 592T291 413T253 203Q253 119 290 70T387 20Q440 20 489 52T573 135T635 249T675 373T688 487'], + + // LATIN CAPITAL LETTER P + 0x50: [683,0,678,55,729,'62 0Q55 7 55 11Q55 27 62 41Q66 46 96 46Q132 47 143 50T160 62Q162 66 231 344T301 626Q301 627 300 629V631Q294 637 239 637H221Q215 642 215 645T217 664Q221 677 227 683H404H431H502Q578 683 615 675T684 636Q729 595 729 531Q729 462 671 396T524 308Q499 302 404 301H318L288 182Q258 63 258 55T310 46Q341 46 343 40Q345 37 342 21Q337 3 333 1Q330 0 321 0Q317 0 301 0T255 1T190 2Q97 2 72 0H62ZM626 555V562Q626 620 552 635Q546 636 481 637Q466 637 450 637T423 636T412 636Q401 635 398 627Q396 622 361 484Q353 452 344 416T330 362L325 344Q325 342 390 342H427Q523 342 567 386Q596 415 611 473T626 555'], + + // LATIN CAPITAL LETTER Q + 0x51: [704,195,767,149,788,'460 -107Q460 -72 464 -42T468 -7L457 -10Q446 -14 424 -18T379 -22Q276 -22 213 50T149 237Q149 326 186 413T282 563T412 665T552 704Q664 704 726 631T788 442Q788 305 703 180Q627 64 517 13L506 8Q506 7 508 -12T513 -38T522 -59T538 -79T565 -85Q604 -85 634 -59T672 0Q676 11 684 11Q693 11 695 2Q695 -1 690 -20T673 -69T644 -126T599 -174T538 -194Q464 -194 460 -110Q460 -108 460 -107ZM689 481Q689 578 646 621T551 665Q468 665 391 586Q321 512 285 399T249 202Q249 106 295 58Q310 41 314 41Q315 41 315 46Q315 83 344 118T420 154Q450 154 473 135Q493 114 500 69L502 58L512 65Q571 110 613 192T672 348T689 481ZM472 49Q472 118 415 118Q393 118 373 98T353 51Q353 18 386 18H387Q424 18 472 40V49'], + + // LATIN CAPITAL LETTER R + 0x52: [683,22,729,55,723,'62 0Q55 7 55 11Q55 27 62 41Q66 46 96 46Q132 47 143 50T160 62Q162 66 231 344T301 626Q301 627 300 629V631Q294 637 239 637H221Q215 642 215 645T217 664Q221 677 227 683H386Q554 682 569 679Q571 678 580 676Q643 662 680 623T717 533Q717 473 667 420T528 337L538 330Q563 314 578 286T594 228Q594 212 588 147T581 65Q581 36 589 26T616 16H618Q637 16 652 37Q668 57 677 94Q679 105 701 105T723 95Q723 89 717 72T698 33T662 -5T610 -22Q555 -22 513 3T471 88Q471 107 486 168T502 244Q502 303 452 320Q445 322 382 323H320L288 192Q255 63 255 55T307 46Q338 46 340 40Q342 37 339 21Q335 3 330 1Q326 0 320 0Q317 0 306 0T265 1T190 2Q99 2 73 0H62ZM612 558Q612 566 612 568T610 581T603 597T590 611T567 625T532 635Q526 636 470 637Q458 637 445 637T422 636T412 636Q402 635 397 627L390 598Q383 570 373 532T354 455T337 389T330 361Q356 360 384 360H415Q483 360 527 382Q557 399 574 424T604 498Q612 533 612 558'], + + // LATIN CAPITAL LETTER S + 0x53: [706,22,562,74,633,'198 460Q198 551 269 628T432 705Q516 705 557 644L583 673Q589 679 593 684T600 693T605 698T609 702T611 704T614 705T618 705H620Q633 705 633 698T605 577T573 459L570 456H554Q546 456 543 456T536 457T532 460T531 466Q531 469 533 489T536 532Q536 573 525 600T496 640T462 657T427 662Q369 662 325 612T281 503Q281 475 290 458T318 430T356 415T407 401T463 383Q506 360 522 323T538 258V244Q538 141 465 60T300 -22Q198 -22 152 41L143 31Q137 25 126 12T106 -10T95 -21L92 -22Q88 -22 86 -22Q81 -22 78 -20T74 -16V-14Q74 -11 132 221Q134 227 155 227H171Q177 221 177 215Q177 212 175 205T171 182T169 147Q171 99 195 70T246 33T306 25Q358 25 400 70T453 169Q455 180 455 203V210Q455 263 414 285Q409 288 347 305Q271 328 254 339Q239 350 224 371Q198 409 198 460'], + + // LATIN CAPITAL LETTER T + 0x54: [677,0,716,171,806,'178 437Q173 442 171 446Q171 451 238 654Q243 670 250 677H681H762Q792 677 799 676T806 667Q806 661 788 553T768 444Q768 437 746 437Q727 437 723 445Q723 450 729 492T736 562Q736 589 728 602T693 624Q675 630 622 630H595Q575 630 571 629T564 623Q562 621 492 342T422 59Q422 48 502 46H542Q548 38 548 37T545 19Q541 6 535 0H517Q475 2 357 2Q315 2 279 2T223 2T198 1Q179 1 179 9Q179 14 182 24Q187 42 190 44Q194 46 206 46H232Q289 47 301 49T326 65L395 344Q465 619 465 626Q465 629 462 629Q456 631 411 631Q364 631 336 625T288 597T255 549T224 467Q215 442 210 437H178'], + + // LATIN CAPITAL LETTER U + 0x55: [683,22,743,194,860,'636 637Q627 637 624 639T620 650Q620 670 633 683H644Q702 681 753 681Q760 681 772 681T796 681T820 682T838 683H845H853Q860 676 860 672Q858 647 848 637H832Q764 633 750 598Q745 588 698 400T648 204Q627 140 584 86Q484 -22 378 -22Q300 -22 247 31T194 167Q194 176 194 182T196 198T200 218T207 248T217 288T231 346T250 422Q300 618 300 626Q300 627 300 629L299 631Q293 637 238 637H220Q214 642 214 645T216 664Q220 677 226 683H239Q307 681 372 681Q480 681 486 683H496Q502 677 502 674T500 656Q496 643 490 637H472Q418 637 406 630Q400 627 394 603T344 410Q299 232 292 198T284 135Q284 102 294 78T322 44T355 29T387 24Q455 24 515 74T604 211Q605 215 653 404T701 607Q701 618 686 627T636 637'], + + // LATIN CAPITAL LETTER V + 0x56: [683,22,743,205,868,'667 637Q657 637 654 639T650 650Q650 670 663 683H675Q704 681 772 681Q793 681 818 682T847 683Q868 683 868 672Q868 670 865 658T860 643Q857 637 848 637Q785 637 749 587L394 -15Q387 -22 366 -22Q346 -22 342 -16Q341 -13 313 303Q285 622 285 623Q283 631 273 634T229 637Q205 637 205 648Q205 654 208 666T217 682Q219 683 230 683Q276 680 329 680Q444 680 456 683H466Q472 677 472 674T470 656Q466 643 460 637H448Q384 637 384 615Q385 612 406 371T427 126Q427 125 495 240T632 473T704 596Q707 604 707 609Q707 633 667 637'], + + // LATIN CAPITAL LETTER W + 0x57: [683,22,999,205,1124,'234 637H226Q205 637 205 648Q205 673 216 682Q218 683 231 683Q265 681 340 681Q371 681 404 682T443 683Q458 683 462 681T467 672Q467 670 464 658T459 643Q457 637 434 637Q407 636 394 632T378 623T376 613Q376 589 385 377T394 149L511 361Q542 419 596 519L613 551L612 585Q610 621 610 624Q608 637 559 637H555Q537 637 537 647Q537 654 540 664Q544 677 550 683H561Q600 680 656 680Q771 680 783 683H792Q798 677 798 675T796 658Q792 643 790 640T778 637H774Q721 637 708 620L717 385Q726 150 727 149Q727 148 752 193T812 303T882 433T942 546T969 596Q970 600 970 606Q970 610 969 613T966 620T961 625T955 628T949 631T941 633T934 634T927 636T920 637Q903 637 903 648Q903 650 905 664Q909 677 915 683H928Q960 681 1031 681Q1050 681 1073 681T1101 682Q1124 682 1124 672Q1124 655 1117 643Q1114 637 1104 637Q1085 637 1069 632T1043 618T1026 603T1014 588L1009 580L687 -16Q681 -22 660 -22Q643 -22 637 -16Q635 -14 627 223Q617 441 617 464L602 441Q578 397 487 228Q456 171 423 110T372 17T355 -15Q348 -22 328 -22Q312 -22 308 -20T303 -9Q303 -5 291 310T277 627Q273 636 234 637'], + + // LATIN CAPITAL LETTER X + 0x58: [683,0,743,50,825,'684 0Q670 0 634 1T569 2Q512 2 482 2T449 1Q433 1 433 10Q433 11 435 25Q437 34 438 37T442 43T448 45T459 46T476 49Q506 58 506 64Q506 65 467 179T426 295L382 244Q339 194 295 142T249 86Q245 79 245 72Q245 48 279 46Q293 46 293 32Q293 13 280 0H268Q206 2 151 2Q70 2 64 0Q50 0 50 11Q50 15 53 27Q57 41 60 43T78 46Q154 49 205 100Q207 103 312 225L411 341L407 353Q404 360 381 428T336 560T310 627Q301 636 255 637H229Q223 643 223 645T225 664Q229 677 235 683H246Q288 680 346 680Q462 680 477 683H487Q493 677 493 674T491 656Q488 644 485 641T471 637Q461 635 454 635Q419 626 421 619Q421 617 453 524T486 430T554 509T624 593Q631 604 631 611Q631 622 621 629T598 637Q583 637 583 648Q583 650 585 660Q589 676 591 679T602 683Q606 683 637 682T715 680Q742 680 771 681T804 682Q825 682 825 672Q825 650 817 642Q814 637 797 637Q739 634 700 608Q684 597 659 569T505 389L501 384L557 222Q612 61 616 57Q625 47 671 46Q691 46 697 45T704 36Q704 35 702 23Q701 19 700 14T699 7T696 3T692 1T684 0'], + + // LATIN CAPITAL LETTER Y + 0x59: [683,0,743,198,875,'232 637Q198 637 198 647Q198 651 201 664T210 682Q212 683 223 683Q269 680 325 680Q443 680 455 683H465Q472 676 472 672Q472 656 465 642Q460 637 441 637Q395 634 395 623Q395 621 438 478T482 334T583 460T688 591Q688 593 694 601T700 617Q700 637 668 637H666Q655 637 655 648Q655 654 658 664Q660 672 660 673T663 678T668 682T677 683Q680 683 704 682T776 680Q801 680 828 681T858 682Q875 682 875 673Q875 669 872 657T867 643Q865 637 848 637Q788 634 749 597Q733 581 608 424L487 273L461 170Q454 145 448 118T438 76T434 60Q434 54 436 52T452 48T496 46H514Q520 41 520 38T518 19Q514 6 508 0H495Q427 2 364 2Q350 2 323 2T272 0H250H241Q234 7 234 11Q234 27 241 41Q245 46 275 46Q312 47 323 50T340 64Q340 65 344 79T355 120T368 171L393 274L341 448Q288 622 286 626Q278 636 232 637'], + + // LATIN CAPITAL LETTER Z + 0x5A: [683,1,613,80,704,'203 452Q203 455 236 565T270 677Q270 681 274 681Q276 683 488 683H699Q704 678 704 675Q704 663 697 649Q697 647 449 348L201 50L266 49H301Q442 49 495 116Q525 155 556 251Q563 274 565 278T579 282H585Q609 285 609 271Q609 270 570 142T528 8T518 1T466 0H303Q253 0 197 0T131 -1Q112 -1 102 -1T87 1T81 3T80 8Q80 30 89 39Q90 41 204 178T446 470T575 626L584 637H512H504H475Q446 637 426 635T378 624T330 597T289 546T254 467Q247 446 243 444Q239 442 226 442Q203 442 203 452'], + + // LEFT SQUARE BRACKET + 0x5B: [750,250,307,73,446,'205 -221Q205 -239 194 -250H137H106Q73 -250 73 -242Q73 -232 194 255T321 747L324 750H381H417Q435 750 440 748T446 739Q446 730 443 723T437 712L434 710H350L349 706Q349 704 235 249T120 -208Q120 -210 159 -210Q166 -210 175 -210T187 -209Q205 -209 205 -221'], + + // RIGHT SQUARE BRACKET + 0x5D: [750,250,307,-14,359,'227 721Q227 739 238 750H295H326Q359 750 359 742Q359 732 238 245T111 -247L108 -250H51H15Q-3 -250 -8 -248T-14 -239Q-14 -230 -11 -223T-5 -212L-2 -210H82L83 -206Q83 -204 197 251T312 708Q312 710 273 710Q266 710 257 710T245 709Q227 709 227 721'], + + // CIRCUMFLEX ACCENT + 0x5E: [694,-527,511,260,528,'528 555Q528 549 514 538T496 527Q491 527 470 554Q458 569 449 580L414 625L353 578Q339 567 323 555T298 536L290 529Q286 527 285 527Q279 527 273 533T264 546L260 553Q260 559 263 562Q265 564 342 628T421 693T425 694Q430 694 433 691Q528 563 528 555'], + + // LOW LINE + 0x5F: [-25,62,511,91,554,'98 -62Q91 -58 91 -51Q91 -31 100 -26Q102 -25 324 -25H442H500Q536 -25 545 -27T554 -36Q554 -50 548 -56Q546 -60 538 -61Q520 -62 319 -62H98'], + + // LATIN SMALL LETTER A + 0x61: [442,11,511,101,543,'418 53Q418 26 438 26Q466 26 494 131Q500 151 504 152Q507 153 516 153H521Q531 153 534 153T540 150T543 144Q543 141 540 126T529 88T509 43T477 5T434 -11Q404 -11 383 3T354 30T347 48H346Q345 47 342 45T337 40Q282 -11 228 -11Q172 -11 137 34T101 146Q101 260 177 351T333 442Q343 442 352 441T369 437T382 431T393 425T402 417T409 410T414 402T419 396Q423 406 436 414T461 422Q475 422 484 413T494 395Q494 384 459 244T420 88Q418 80 418 58V53ZM397 323Q397 344 382 374T333 405Q302 405 271 372Q249 349 235 316T203 215Q184 135 184 108V100V94Q184 54 207 35Q218 26 235 26Q279 26 330 91Q343 109 346 118T372 217Q397 317 397 323'], + + // LATIN SMALL LETTER B + 0x62: [694,11,460,108,467,'158 683Q163 683 223 688T300 694Q312 694 312 685T279 544Q243 405 243 403L256 412Q268 422 292 432T338 442Q395 442 431 398T467 284Q467 175 393 82T229 -11Q175 -11 142 32T108 142Q108 176 115 207T166 412Q177 458 190 510T209 588T216 616Q216 629 209 632T170 637H149Q143 643 143 645T145 664Q150 683 158 683ZM178 109Q178 27 234 27Q247 27 254 29Q295 44 323 94Q343 129 363 208T384 332Q384 354 382 361Q369 405 332 405Q282 405 228 326L222 317L205 250Q178 142 178 109'], + + // LATIN SMALL LETTER C + 0x63: [441,10,460,103,469,'257 -10Q183 -10 143 37T103 155Q103 257 173 341T337 440Q341 441 348 441H358Q421 441 445 415T469 356Q469 320 450 305T410 289Q392 289 381 299T370 325Q370 362 404 378L414 383Q392 402 365 405Q322 405 285 375T227 294Q217 271 202 213T187 119Q187 27 263 27Q299 27 330 40Q361 51 386 71T424 106T440 121Q444 121 455 110T466 96Q466 92 458 81T432 54T390 24T331 0T257 -10'], + + // LATIN SMALL LETTER D + 0x64: [694,11,511,101,567,'418 54Q418 26 438 26Q466 26 494 131Q500 151 504 152Q507 153 516 153H521H526Q543 153 543 144Q543 143 541 129Q531 91 521 65T487 14T434 -11T383 3T354 30T347 48H346Q345 47 342 45T337 40Q282 -11 228 -11Q172 -11 137 34T101 146Q101 255 174 348T337 441Q354 441 368 437T390 427T404 414T413 404T417 400L471 616Q471 629 464 632T425 637H404Q398 643 398 645T400 664Q405 683 413 683Q418 683 478 688T555 694Q567 694 567 686Q567 676 495 389L419 86Q418 80 418 61V54ZM397 323Q397 329 394 340T385 367T365 394T333 405Q302 405 271 372Q249 349 235 316T203 215Q184 135 184 108V100Q184 71 191 56Q204 26 235 26Q267 26 300 57T344 112Q347 117 372 217T397 323'], + + // LATIN SMALL LETTER E + 0x65: [442,10,460,107,470,'107 166Q107 230 131 283T193 369T270 420T345 441Q346 441 352 441T361 442H364Q409 442 439 418T470 355Q470 270 366 239Q308 223 218 223H205Q189 164 189 125Q189 83 206 55T261 27Q309 27 353 50T426 109Q436 121 440 121T453 111T466 97Q469 92 455 77Q424 41 372 16T258 -10Q184 -10 146 41T107 166ZM416 333T416 354T401 390T360 405Q322 405 292 384T246 336T223 288T215 261Q215 260 240 260Q262 261 276 262T314 266T353 275T384 291T408 317'], + + // LATIN SMALL LETTER F + 0x66: [705,204,307,-23,450,'351 608Q351 642 389 661Q368 668 365 668Q358 668 352 664Q349 663 347 661T342 654T337 647T333 637T330 627T327 614T324 601T321 587T318 571L291 432Q291 431 343 431H394Q400 426 400 423T398 404Q394 390 389 386L335 385H282L255 246Q212 20 189 -51Q136 -199 58 -204Q22 -204 0 -185T-23 -134Q-23 -100 -3 -85T37 -69Q54 -69 65 -80T76 -108Q76 -115 75 -119Q70 -134 61 -144T46 -158L39 -161Q39 -162 42 -163T50 -166T61 -168Q77 -168 91 -145Q98 -128 105 -95L125 -1Q145 90 146 98Q149 109 163 180T189 317T202 384T158 385H114Q108 390 108 393T110 412Q113 424 120 431H165Q211 431 211 433Q213 435 219 473T237 561T266 639Q282 667 310 686T367 705Q402 705 426 686T450 635Q450 600 430 585T390 569Q373 569 362 580T351 608'], + + // LATIN SMALL LETTER G + 0x67: [442,205,460,46,494,'103 163Q106 263 173 347T320 441Q322 441 329 441T341 442Q387 439 419 398Q420 399 420 400Q421 402 425 406T440 416T464 422Q476 421 485 413T494 396Q494 386 465 268T407 38T377 -77Q365 -123 310 -164T179 -205Q46 -205 46 -139Q46 -114 64 -97T106 -79Q127 -79 136 -91T146 -115Q146 -127 141 -138T130 -155T124 -162T125 -163Q133 -166 170 -168Q200 -168 217 -162Q242 -153 264 -130T297 -78Q298 -74 305 -46T320 10T327 38Q326 38 317 31T291 15T256 2Q249 1 231 1Q182 1 143 38T103 163ZM398 324Q398 330 395 346T375 383T332 405Q330 405 326 405T320 404Q291 396 263 365Q230 324 208 239T185 115Q185 38 238 38Q258 38 279 50T312 77T336 106L348 122Q349 125 373 223T398 324'], + + // LATIN SMALL LETTER H + 0x68: [694,11,511,69,545,'398 44Q398 26 414 26Q431 26 451 43Q477 71 496 136Q499 148 501 150T515 153H521Q531 153 534 153T541 150T544 143Q544 133 534 105T496 41T432 -8Q424 -10 408 -10Q370 -10 348 12T326 72Q326 93 342 135Q397 288 397 349Q397 367 396 372Q386 405 357 405Q283 405 228 310Q217 290 212 274T180 152Q153 42 148 26T135 3Q121 -11 102 -11Q89 -11 80 -3T69 19L216 616Q216 629 209 632T170 637H149Q143 643 143 645T145 664Q150 683 158 683Q163 683 223 688T300 694Q312 694 312 685Q312 674 277 539Q241 395 241 393Q242 394 249 399T259 407T271 415T285 424T300 431T318 437T338 440T362 442Q423 442 449 410T475 338Q475 290 437 178T398 44'], + + // LATIN SMALL LETTER I + 0x69: [656,10,307,75,341,'234 599Q234 620 251 638T292 656Q306 656 319 647T332 617Q332 594 313 577T273 560Q260 560 247 569T234 599ZM75 287Q75 292 82 313T103 362T142 413T196 441H214Q248 441 270 419T293 357Q292 338 289 330T245 208Q193 72 193 46Q193 26 209 26Q228 26 247 43Q273 71 292 136Q295 148 297 150T311 153H317Q327 153 330 153T337 150T340 143Q340 133 330 105T292 41T228 -8Q220 -10 204 -10Q160 -10 141 15T122 71Q122 98 171 227T221 384Q221 396 218 400T203 405Q175 403 156 374T128 312T116 279Q115 278 97 278H81Q75 284 75 287'], + + // LATIN SMALL LETTER J + 0x6A: [656,204,307,-32,364,'266 600Q266 622 283 639T322 656Q340 656 352 645T364 616Q364 596 347 578T305 560Q291 560 279 569T266 600ZM75 287Q75 293 86 316T117 369T168 420T236 442Q282 442 304 415T327 358V332L278 134Q269 98 260 60T246 3T236 -36T227 -66T220 -85T213 -101T204 -114Q181 -150 139 -177T46 -204Q8 -204 -12 -186T-32 -140Q-32 -112 -14 -96T27 -79Q48 -79 57 -91T67 -114Q67 -146 38 -166Q42 -168 49 -168Q75 -168 98 -147T130 -108T146 -71Q150 -59 199 138T250 346Q253 359 253 373Q253 405 230 405Q206 405 184 386T149 345T126 301L117 280Q115 278 98 278H81Q75 284 75 287'], + + // LATIN SMALL LETTER K + 0x6B: [694,11,460,69,498,'158 683Q163 683 223 688T300 694Q312 694 312 686Q312 679 262 478L211 273Q212 272 219 276T248 299T296 349Q317 371 328 382T360 410T399 434T439 442Q462 442 480 427T498 373Q498 329 479 313T437 296Q420 296 409 305T398 331Q398 357 413 372T445 391Q454 392 448 399Q445 405 431 405Q408 405 377 385Q351 368 314 327T250 261Q243 257 243 254Q249 254 279 243T328 220Q366 192 366 146Q366 131 361 109T355 62V54Q355 26 376 26Q379 26 387 28Q420 36 443 130Q449 151 454 152Q457 153 465 153H470Q484 153 488 152T492 144Q492 141 489 126T476 88T454 42T420 5T372 -11Q331 -11 306 17T280 88Q280 100 283 119T287 146Q287 172 265 190T221 215T198 220Q197 220 173 121Q152 37 148 24T135 3Q121 -11 102 -11Q89 -11 80 -3T69 19L216 616Q216 629 209 632T170 637H149Q143 643 143 645T145 664Q150 683 158 683'], + + // LATIN SMALL LETTER L + 0x6C: [694,11,256,87,312,'162 61Q162 26 183 26Q211 26 239 131Q245 151 249 152Q252 153 261 153H266H271Q288 153 288 144Q288 143 286 129Q276 91 266 65T232 14T179 -11Q144 -11 116 12T87 81Q87 96 88 102L216 616Q216 629 209 632T170 637H149Q143 643 143 645T145 664Q150 683 158 683Q163 683 223 688T300 694Q312 694 312 686Q312 676 240 389L164 86Q162 74 162 61'], + + // LATIN SMALL LETTER M + 0x6D: [442,11,818,75,852,'81 278Q75 284 75 289Q77 299 89 338Q101 373 114 396T142 428T166 439T186 442H189Q225 440 251 417Q266 401 271 384L275 374L286 386Q342 442 414 442Q428 442 440 440T461 435T479 427T493 418T503 407T511 397T516 387T520 378T523 370L524 366Q546 395 583 418T667 442Q729 442 755 411T782 338Q782 290 743 178T704 45Q704 26 720 26Q773 26 802 136Q805 148 807 150T822 153H828Q838 153 841 153T848 150T851 143Q851 137 843 115T821 63T778 12T715 -10Q671 -10 652 16T632 71Q632 88 668 191T704 349Q704 367 703 372Q693 405 664 405Q637 405 613 393T571 360T547 329T534 309Q523 290 518 274T487 151Q455 24 452 16Q438 -11 408 -11T376 18Q376 26 411 167T447 314Q449 325 449 346Q449 372 444 384Q431 405 408 405Q334 405 276 305Q266 289 262 273T231 151Q199 24 196 16Q182 -11 152 -11T120 18Q120 26 159 182T200 347Q202 361 202 372Q202 405 181 405Q168 405 159 391Q145 374 132 328T117 280T98 278H81'], + + // LATIN SMALL LETTER N + 0x6E: [443,11,562,75,596,'449 44Q449 26 465 26Q482 26 502 43Q528 71 547 136Q550 148 552 150T566 153H572Q582 153 585 153T592 150T595 143Q595 133 585 105T547 41T483 -8Q475 -10 459 -10Q421 -10 399 12T377 72Q377 93 393 135Q448 288 448 349Q448 367 447 372Q437 405 408 405Q381 405 357 393T315 360T291 329T278 309Q267 290 262 274T231 151Q199 24 196 16Q182 -11 152 -11T120 18Q120 23 159 181Q199 343 199 346Q202 360 202 372Q202 406 183 406Q163 406 148 374Q142 360 135 338T124 299T117 280T98 278H81Q75 284 75 287Q76 293 78 303T90 341T110 388T141 425T184 442Q195 442 204 441T221 436T235 429T247 421T256 412T262 403T267 394T271 387T273 381L274 378V374L287 387Q342 442 414 442Q474 442 500 410T526 338Q526 290 488 178T449 44'], + + // LATIN SMALL LETTER O + 0x6F: [442,11,511,103,517,'103 155Q103 266 185 354T366 442Q435 442 476 394T517 275Q517 169 436 79T255 -11Q194 -11 149 32T103 155ZM187 119Q187 67 209 47T260 26Q290 26 321 47Q354 68 380 113T426 260Q432 291 432 315Q432 361 408 385Q388 405 358 405Q319 405 283 374T227 294Q217 271 202 213T187 119'], + + // LATIN SMALL LETTER P + 0x70: [442,194,511,6,518,'81 278Q75 284 75 287Q93 379 131 417Q154 442 189 442Q222 440 243 423T272 382L280 390Q335 442 389 442Q446 442 482 398T518 284Q518 212 480 137T375 19Q321 -10 291 -10H282H278Q237 -10 204 28L202 32L181 -51Q160 -135 160 -139Q160 -147 205 -148H230Q236 -155 236 -157T233 -175Q230 -187 227 -190T214 -194Q211 -194 202 -194T169 -193T108 -192Q40 -192 21 -194H13Q6 -187 6 -183T9 -167Q13 -153 16 -151T39 -148Q73 -147 78 -136Q82 -128 139 104Q199 337 199 347Q202 362 202 372Q202 406 182 406Q169 406 159 391Q145 374 132 328T117 280T98 278H81ZM221 111Q234 26 286 26Q307 26 336 47T385 116Q398 147 416 217T435 332Q435 354 433 361Q420 405 383 405Q333 405 279 326L273 317L221 111'], + + // LATIN SMALL LETTER Q + 0x71: [442,194,460,101,504,'228 -11Q172 -11 137 33T101 147Q101 205 125 266T201 377T318 441Q322 442 333 442Q388 442 420 394L429 403Q439 413 455 423T481 437T494 442Q498 442 501 439T504 434Q504 425 435 149Q364 -135 364 -139Q364 -147 409 -148H434Q440 -155 440 -157T437 -175Q433 -191 429 -193Q425 -194 418 -194Q416 -194 406 -194T372 -193T309 -192Q259 -192 233 -192T204 -193Q190 -193 190 -184Q190 -181 192 -169Q196 -153 199 -151T219 -148Q266 -148 277 -141Q283 -137 305 -51L325 29L316 22Q270 -11 228 -11ZM397 323Q397 329 394 340T385 367T365 394T333 405Q302 405 271 372Q249 349 235 316T203 215Q184 135 184 108V100Q184 71 191 56Q204 26 235 26Q267 26 300 57T344 112Q347 117 372 217T397 323'], + + // LATIN SMALL LETTER R + 0x72: [442,11,422,75,484,'81 278Q75 284 75 289Q77 301 89 339Q122 442 183 442Q219 442 241 425T271 384L283 396Q327 442 384 442Q424 442 454 421T484 362Q484 327 464 312T424 296Q407 296 396 305T385 331Q385 352 394 365T414 384T424 390Q409 405 378 405Q322 405 276 315L268 300L234 161Q200 25 196 16Q182 -11 152 -11T120 18Q120 23 159 181Q199 343 199 346Q202 360 202 372Q202 405 182 405Q164 405 150 377T128 316T117 280Q115 278 98 278H81'], + + // LATIN SMALL LETTER S + 0x73: [442,11,409,76,418,'153 285Q153 349 197 395T311 442Q355 442 386 420T418 356Q418 321 401 308T365 294Q336 294 331 326Q331 336 334 345T343 359T353 368T362 374L366 376Q365 379 362 383T344 396T308 404Q265 404 246 377T226 325T244 289T287 275T339 258T383 212Q395 188 395 163Q395 132 379 95T333 32Q279 -11 207 -11Q154 -11 115 13T76 86Q76 108 83 123T102 145T121 153T135 156Q154 156 164 145T175 117Q175 82 142 66L132 62Q131 62 131 61Q131 57 139 49T166 34T210 26Q250 26 277 44T312 83T321 123Q321 153 301 166T248 185T204 198Q176 211 162 241Q153 258 153 285'], + + // LATIN SMALL LETTER T + 0x74: [626,11,332,87,373,'94 385Q87 392 87 395Q87 399 90 411T95 425Q97 430 103 430T149 431H196L215 511Q218 521 222 539T228 565T234 585T242 603T251 615T264 623T281 626Q311 626 315 597Q315 591 296 513T275 433Q275 431 320 431H366Q373 424 373 420Q373 398 360 385H263L189 86Q188 80 188 61V54Q188 29 201 27Q213 23 229 30Q253 37 276 66T316 138Q321 149 324 151T342 153H347Q364 153 364 146T360 130Q331 63 290 26T202 -11Q158 -11 135 18T111 81Q111 93 129 168T166 314L184 383Q184 385 139 385H94'], + + // LATIN SMALL LETTER U + 0x75: [441,11,537,75,570,'75 287Q75 299 89 333T135 404T205 441Q246 441 269 420T293 357Q292 338 259 245T225 95Q225 26 274 26Q301 26 324 43T358 77T369 99Q369 102 406 249T446 404Q460 431 490 431T522 402Q522 394 485 245T446 89Q443 74 443 56Q443 28 461 26Q487 26 507 86Q524 130 524 146Q524 147 530 153H547Q570 153 570 144Q570 138 561 109T544 62Q530 29 512 12Q492 -11 454 -11Q429 -9 410 2T385 23T376 41L363 28Q350 16 325 3T269 -10Q204 -10 176 25T148 108Q148 161 184 262T221 383Q221 405 206 405Q178 405 158 375T128 313T116 279Q115 278 97 278H81Q75 284 75 287'], + + // LATIN SMALL LETTER V + 0x76: [443,10,460,75,492,'387 386Q387 407 406 425T445 443Q466 443 479 423T492 371Q492 330 473 253Q411 18 307 -8Q298 -10 279 -10Q208 -10 179 26T149 114Q149 162 185 261T221 384Q221 405 206 405Q177 405 157 375T128 313T116 279Q115 278 97 278H81Q75 284 75 287T79 304T93 342T119 388T158 425T210 441H218Q243 441 268 421T293 357Q292 337 259 245T226 102Q226 26 285 26Q328 26 360 72T422 237Q429 265 429 290Q428 324 408 349T387 386'], + + // LATIN SMALL LETTER W + 0x77: [443,11,664,75,696,'591 386Q591 407 610 425T649 443Q670 443 683 423T696 371Q696 327 672 232T621 85Q575 -11 493 -11Q469 -11 449 -6T418 8T398 24T386 38L382 43Q347 -10 293 -10H286Q221 -10 186 21T150 115Q150 164 185 262T221 384Q221 405 206 405Q177 405 157 375T128 313T116 279Q115 278 97 278H81Q75 284 75 287T79 304T93 342T119 388T158 425T210 441H218Q243 441 268 421T293 357Q292 336 260 246T227 108Q227 26 292 26H295Q332 26 361 93L366 103V119Q366 122 367 133T369 150Q372 167 401 282T433 404Q446 431 477 431Q507 431 509 402Q509 396 500 358T474 254T446 140Q444 126 444 104V92Q444 66 459 46T502 26H505Q527 28 545 43T577 88T602 149T623 226Q633 265 633 290Q632 324 612 349T591 386'], + + // LATIN SMALL LETTER X + 0x78: [442,11,464,58,513,'275 356Q275 383 262 394T233 405Q196 405 166 371T121 289Q119 280 116 279T98 278H81Q77 282 76 283T75 288T78 300Q88 332 109 363T153 411Q195 442 235 442Q306 442 333 386Q373 442 427 442Q461 442 487 421T513 364T494 312T453 296Q436 296 425 305T414 331Q414 352 424 366T446 386L456 390Q448 404 421 404H418Q382 404 358 341Q355 332 328 227T298 105Q295 90 295 75Q295 26 339 26Q365 26 388 43T424 82T444 123T451 146L457 153H474Q490 153 493 152T496 144Q496 133 486 110T456 58T404 10T333 -11Q276 -11 237 45Q197 -11 146 -11Q108 -11 83 10T58 67Q58 99 76 117T119 135Q136 135 147 124T158 96Q158 89 157 85Q149 57 125 45L115 41Q125 26 151 26Q171 26 187 45T214 93Q217 102 244 210T273 330Q275 339 275 356'], + + // LATIN SMALL LETTER Y + 0x79: [441,205,486,75,522,'75 287Q75 299 89 333T135 404T205 441Q246 441 269 420T293 357Q292 338 259 245T225 95Q225 26 274 26Q325 26 367 93L405 245Q442 393 446 404Q460 431 490 431T522 402Q522 400 416 -24Q389 -102 327 -153T196 -205Q152 -205 122 -181T91 -119Q91 -84 110 -67T152 -49Q170 -49 180 -60T191 -87Q191 -108 174 -128Q167 -134 157 -138T146 -144Q155 -153 159 -156T173 -163T199 -167Q229 -167 255 -149T297 -105T325 -52T342 -6T347 15Q315 -10 269 -10Q204 -10 176 25T148 108Q148 161 184 262T221 383Q221 405 206 405Q178 405 158 375T128 313T116 279Q115 278 97 278H81Q75 284 75 287'], + + // LATIN SMALL LETTER Z + 0x7A: [442,11,409,54,466,'160 317Q158 317 155 317Q136 317 136 324Q136 351 171 396T260 442Q292 442 321 410T365 375H369Q384 375 404 408L425 441Q427 442 444 442H460Q466 436 466 434Q466 419 426 367Q387 314 294 222T178 105L170 95L181 94Q198 93 236 81T295 68Q328 68 356 89T395 141Q398 150 401 151T419 153Q441 153 441 144Q441 110 394 50T282 -11Q251 -11 221 23T171 57Q157 57 143 47T121 26T104 3T95 -10Q93 -11 76 -11H60Q54 -5 54 -2Q54 3 61 14Q103 88 233 215Q349 329 349 338L302 351Q269 362 247 362Q227 362 212 356T192 342T183 327T178 320Q175 317 160 317'], + + // TILDE + 0x7E: [318,-208,511,247,571,'266 208Q262 208 255 215T247 228Q247 233 250 236T274 259Q335 318 369 318Q394 318 420 292T464 265Q485 265 516 291T550 318Q554 318 562 311T571 297Q570 293 551 273T502 231T451 209H447Q421 209 396 235T355 261Q334 261 301 235T266 208'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js new file mode 100644 index 0000000..de91e1c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Italic/CombDiacritMarks.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-italic'], + { + // COMBINING GRAVE ACCENT + 0x300: [697,-500,0,-222,-74,'-222 651Q-222 668 -206 682T-174 697Q-155 697 -145 680Q-140 671 -107 599T-74 526Q-74 522 -88 511T-107 500Q-109 500 -113 502T-167 568T-219 637Q-222 643 -222 651'], + + // COMBINING ACUTE ACCENT + 0x301: [697,-500,0,-173,39,'-148 500Q-154 500 -163 511T-173 528Q-173 529 -172 530V532Q-170 534 -97 610T-21 688Q-8 697 4 697Q19 697 29 688T39 663T30 638Q26 631 -50 573L-135 507Q-144 500 -148 500'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [694,-527,0,-251,17,'17 555Q17 549 3 538T-15 527Q-20 527 -41 554Q-53 569 -62 580L-97 625L-158 578Q-172 567 -188 555T-212 536L-221 529Q-225 527 -226 527Q-232 527 -238 533T-248 546L-251 553Q-251 559 -248 562Q-246 564 -169 628T-90 693T-86 694Q-81 694 -78 691Q17 563 17 555'], + + // COMBINING TILDE + 0x303: [668,-558,0,-264,60,'-245 558Q-249 558 -256 565T-264 578Q-264 583 -261 586T-237 609Q-176 668 -142 668Q-117 668 -91 642T-47 615Q-26 615 5 641T39 668Q43 668 51 661T60 647Q59 643 40 623T-9 581T-60 559H-64Q-90 559 -115 585T-156 611Q-177 611 -210 585T-245 558'], + + // COMBINING MACRON + 0x304: [589,-544,0,-282,54,'-275 544Q-282 548 -282 554Q-282 561 -279 573T-271 588Q-269 589 -111 589H-27H12Q38 589 46 587T54 578Q54 574 51 563T47 550Q45 546 32 545Q15 544 -118 544H-275'], + + // COMBINING BREVE + 0x306: [694,-515,0,-237,62,'-237 641Q-237 694 -218 694H-213Q-195 694 -195 684Q-195 683 -195 679T-197 667T-198 650Q-198 611 -176 589T-117 566Q-74 566 -34 597T23 678Q27 689 30 691T43 694Q62 694 62 684Q62 671 49 645T14 589T-46 537T-123 515Q-175 515 -206 550T-237 641'], + + // COMBINING DOT ABOVE + 0x307: [669,-548,0,-165,-41,'-165 599Q-162 631 -139 650T-93 669Q-65 669 -53 653T-41 620Q-41 593 -63 571T-116 548Q-134 548 -149 559T-165 599'], + + // COMBINING DIAERESIS + 0x308: [669,-554,0,-251,45,'-251 601Q-251 626 -230 647T-180 669Q-139 669 -133 625Q-133 595 -155 575T-203 554Q-223 554 -237 567T-251 601ZM-72 599Q-72 632 -48 650T-2 669Q18 669 31 657T45 623Q45 592 22 573T-25 554Q-68 554 -72 599'], + + // COMBINING RING ABOVE + 0x30A: [716,-542,0,-199,3,'-199 610Q-199 654 -161 685T-79 716Q-39 716 -16 693Q3 674 3 647Q3 607 -34 575T-118 542Q-199 542 -199 610ZM-41 631T-41 655T-83 679H-89Q-129 679 -142 656Q-146 650 -151 632T-156 604Q-156 578 -113 578H-108Q-94 578 -86 579T-69 586T-52 605Q-41 631 -41 655'], + + // COMBINING DOUBLE ACUTE ACCENT + 0x30B: [697,-503,0,-248,65,'-217 503Q-221 503 -234 510T-248 523Q-248 528 -205 602Q-200 610 -192 623T-180 644T-170 661T-159 676T-151 686T-142 694T-134 696Q-132 697 -121 697Q-88 694 -88 664Q-88 652 -97 640T-152 574Q-214 504 -217 503ZM-64 503Q-68 503 -81 510T-95 523Q-95 528 -52 602Q-47 610 -39 623T-27 644T-17 661T-6 676T2 686T11 694T19 696Q21 697 32 697Q65 694 65 664Q65 652 56 640T1 574Q-61 504 -64 503'], + + // COMBINING CARON + 0x30C: [638,-502,0,-236,29,'11 637Q16 637 22 624T29 607Q29 606 27 602Q26 600 -47 552T-125 502H-127Q-133 502 -184 553Q-236 602 -236 608Q-236 612 -224 625T-206 638L-202 637L-196 632Q-190 628 -179 620T-158 603L-116 570Q-109 572 -52 604T11 637'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js new file mode 100644 index 0000000..cf994d3 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Italic/GeneralPunctuation.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-italic'], + { + // EN DASH + 0x2013: [285,-248,511,91,554,'98 248Q91 252 91 259Q91 279 100 284Q102 285 324 285H442H500Q536 285 545 283T554 274Q554 260 548 254Q546 250 538 249Q520 248 319 248H98'], + + // EM DASH + 0x2014: [285,-248,1022,117,1038,'124 248Q117 252 117 259Q117 279 126 284Q128 285 579 285T1033 284Q1037 280 1037 278Q1038 276 1038 274Q1038 253 1029 250Q1026 248 575 248H124'], + + // LEFT SINGLE QUOTATION MARK + 0x2018: [694,-379,307,197,362,'249 379Q228 379 213 396T197 448Q197 533 271 627L278 635Q286 643 295 652T314 671T332 687T344 694Q349 694 355 685T362 671Q362 668 345 654T301 608T256 537Q238 493 240 491Q241 491 245 493T258 498T275 500Q296 500 311 488T326 454Q326 426 304 403T249 379'], + + // RIGHT SINGLE QUOTATION MARK + 0x2019: [694,-378,307,212,377,'250 620Q250 647 272 670T325 694Q348 694 362 677T377 633V624Q377 566 343 506T275 412T231 379Q226 379 220 388T213 401T232 421T279 472T323 547Q335 573 335 582L331 580Q327 578 318 576T300 573Q277 573 264 585T250 620'], + + // LEFT DOUBLE QUOTATION MARK + 0x201C: [694,-379,514,243,606,'295 379Q274 379 259 396T243 448Q243 533 317 627Q326 638 354 666T391 694Q395 694 402 686T409 673Q409 668 392 654T348 608T302 537Q284 493 286 491Q287 491 291 493T304 498T321 500Q342 500 357 488T372 454Q372 426 350 403T295 379ZM492 379Q471 379 456 396T440 448Q440 533 514 627Q523 638 551 666T588 694Q592 694 599 685T606 672T589 654T544 608T499 537Q481 493 483 491Q484 491 488 493T501 498T518 500Q539 500 554 488T569 454Q569 426 547 403T492 379'], + + // RIGHT DOUBLE QUOTATION MARK + 0x201D: [694,-379,514,176,538,'214 620Q214 647 236 670T289 694Q312 694 326 677T341 633V624Q341 588 327 550T294 482T253 428T216 392T196 379Q191 379 184 388T176 401Q176 404 195 421T243 472T287 547Q299 576 299 582L295 580Q291 578 282 576T264 573Q241 573 228 585T214 620ZM411 620Q411 647 433 670T486 694Q509 694 523 677T538 633V624Q538 588 524 550T491 482T450 428T413 392T393 379Q388 379 381 388T373 401Q373 404 392 421T440 472T484 547Q496 576 496 582L492 580Q488 578 479 576T461 573Q438 573 425 585T411 620'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/GeneralPunctuation.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js new file mode 100644 index 0000000..a7eb972 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Italic/GreekAndCoptic.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-italic'], + { + // GREEK CAPITAL LETTER GAMMA + 0x393: [680,0,627,54,705,'337 46Q339 46 342 46Q360 46 363 45T367 34Q367 13 359 5Q356 0 343 0Q339 0 320 0T268 1T196 2Q98 2 72 0H61Q54 7 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62L194 200Q229 337 264 477T299 623Q299 630 292 631T248 634Q216 634 214 638Q213 641 213 646Q213 674 224 678Q226 680 462 680H698Q705 676 705 669Q705 665 691 557T675 447Q673 440 652 440H637Q630 445 630 451Q630 452 632 467T636 504T638 543Q638 569 632 586T615 613T586 627T549 633T500 634Q491 634 487 634Q426 634 414 633T399 625Q397 621 327 342T257 59Q257 54 261 52T283 48T337 46'], + + // GREEK CAPITAL LETTER DELTA + 0x394: [716,0,818,70,751,'409 0H145Q117 0 103 0T81 1T72 3T70 6Q70 9 310 354T557 707Q559 711 565 713Q570 716 587 716Q608 716 613 710Q616 704 683 358Q752 9 750 6Q750 2 747 2Q745 0 409 0ZM581 342L531 597Q530 597 352 342T174 85T403 84T632 86Q632 87 581 342'], + + // GREEK CAPITAL LETTER THETA + 0x398: [704,22,767,149,788,'149 237Q149 326 186 413T282 563T412 665T552 704Q619 704 667 678T741 611T777 528T788 444Q788 328 728 219T572 44T377 -22Q275 -22 212 50T149 237ZM691 480Q691 569 652 618T551 668Q458 668 367 562Q307 485 277 382T246 202Q246 147 260 108T298 51T343 24T387 16Q408 16 433 22T494 51T562 109T626 211T677 363Q691 423 691 480ZM302 275Q302 281 317 346T338 415L341 418H356Q380 418 380 408Q380 405 378 398T375 385Q375 384 480 384H585L588 398Q592 412 598 418H613Q636 418 636 409Q636 406 621 340Q617 326 612 306Q603 272 598 267L597 266H582Q558 266 558 276Q558 279 560 286T563 299Q563 300 458 300H353L350 286Q346 272 340 266H325Q302 266 302 275'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [716,0,692,58,646,'71 0Q58 0 58 11Q58 33 68 43Q71 46 77 46Q106 46 128 59T156 79T173 104Q174 106 255 256T416 556T497 707Q502 716 519 716H525Q543 716 547 711Q550 707 561 398T572 65Q573 57 574 54T587 49T623 46Q646 46 646 36Q646 35 643 23Q642 21 641 17T640 12T639 8T638 5T636 3T633 1T629 1T624 0Q622 0 612 0T578 1T514 2Q466 2 434 2T398 1Q381 1 381 11Q381 13 383 23Q387 40 390 43T406 46Q460 46 472 63L464 298Q457 533 455 536V537Q452 537 335 317T214 90Q211 80 211 75Q211 53 244 47Q246 47 251 47T258 46Q270 46 270 34Q270 33 268 19Q264 6 258 0H247Q185 2 143 2Q77 2 71 0'], + + // GREEK CAPITAL LETTER XI + 0x39E: [678,0,664,74,755,'243 668Q243 670 250 677H640Q661 677 687 677T719 678Q741 678 747 676T754 667T740 595T726 522Q725 521 724 520T723 517T720 516T714 515T704 514Q690 514 685 515T680 525Q680 531 683 543Q690 578 690 590V597H686Q670 600 468 600Q282 599 275 596Q267 591 251 539Q246 521 243 518T228 514H224Q200 511 200 525Q200 526 220 594T243 668ZM535 277Q535 282 538 296T543 312Q543 314 411 314H278L277 310Q277 309 272 291T266 272Q264 267 245 267Q237 267 233 268T228 269T225 272T222 277L241 354Q245 368 250 389Q261 432 266 437L267 438H299Q306 431 306 428Q306 426 306 424T304 417T302 409L297 391H430L562 392L567 412Q572 431 579 438H611Q615 434 616 432L618 430Q618 423 599 352Q581 275 577 270Q574 267 568 267H558Q535 267 535 277ZM81 0Q74 4 74 11Q74 14 89 89T106 168Q112 174 127 174Q138 174 142 174T148 171T151 164Q151 163 147 143Q140 101 139 92Q139 81 140 81Q143 78 265 78H349H484Q518 78 532 78T555 80T566 83T570 91Q575 103 589 145Q595 166 598 170T611 174H617H622Q641 174 641 163Q641 162 619 86T595 7Q593 2 584 1T530 0H334H81'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [680,0,743,54,859,'248 634Q216 634 214 638Q213 641 213 646Q213 674 224 678Q226 680 539 680H852Q859 676 859 669Q859 653 852 639Q848 634 818 634Q782 633 771 630T754 618L719 480Q684 343 649 203T614 57Q614 50 621 49T666 46Q697 46 699 40Q701 37 698 21Q693 3 689 1Q686 0 677 0Q673 0 657 0T611 1T546 2Q453 2 428 0H418Q411 7 411 11Q411 27 418 41Q422 46 452 46Q488 47 499 50T516 62Q518 67 553 209T624 491T660 632Q660 634 530 634H400L399 630Q399 629 390 593T363 484T328 344Q257 60 257 57Q257 50 264 49T309 46Q340 46 342 40Q344 37 341 21Q336 3 332 1Q329 0 320 0Q316 0 300 0T254 1T189 2Q96 2 71 0H61Q54 7 54 11Q54 27 61 41Q65 46 95 46Q131 47 142 50T159 62L194 200Q229 337 264 477T299 623Q299 630 292 631T248 634'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [683,1,716,80,782,'87 0Q80 7 80 11Q80 14 81 15Q81 16 231 161Q381 304 381 305L310 475Q239 646 239 648T242 662T247 677Q247 681 251 681Q253 683 514 683H775Q780 678 782 674Q782 668 767 559T751 448Q747 443 729 443Q715 443 711 444T707 453Q707 454 710 479T713 529Q713 555 709 573T691 604T663 622T619 632T564 636T492 637H457Q356 637 356 635Q358 634 417 489T478 343Q478 340 474 335T436 297T330 196L185 57L294 56H339Q450 56 499 65T581 109Q603 131 620 164T646 221T657 248Q660 250 675 250Q699 253 699 239L681 188Q663 138 643 81T617 9Q614 2 605 1T552 -1Q541 -1 475 -1T348 0H87'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [706,0,767,213,832,'213 543Q213 576 262 640T379 705Q507 705 507 531Q507 514 505 492L504 482L514 505Q524 528 543 561T587 626T653 682T738 705Q783 705 807 675T832 594Q832 535 808 535H802Q780 535 780 542Q780 543 781 550T783 563Q783 589 765 606T716 623Q588 623 521 354Q521 353 485 208T448 59Q448 46 529 46Q559 46 559 36Q559 31 556 22Q552 4 547 1Q546 1 544 1T538 0Q534 0 514 0T458 1T380 2Q271 2 241 0H228Q222 6 222 9T224 27Q228 40 234 46H257Q322 46 336 52Q346 54 349 62Q351 64 372 145T416 324T445 461Q446 471 446 506Q446 528 445 541T436 577T410 610T361 622Q319 622 295 600T261 552Q257 539 249 536Q245 535 233 535T218 536L214 540V541Q213 542 213 543'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [683,0,716,159,729,'467 624Q467 631 454 633T400 637Q361 637 359 643Q358 644 358 649Q358 673 369 682Q371 683 387 683Q430 681 532 681Q569 681 600 681T650 682T672 683Q689 683 689 672Q689 670 686 658T681 643Q679 637 640 637Q595 636 579 633T558 617Q556 613 547 575T538 533Q538 532 541 532Q555 532 582 524T643 500T703 450T728 374Q728 311 673 256Q621 203 550 177T445 151Q443 151 441 149Q440 146 430 104T419 59Q419 46 500 46Q530 46 530 36Q530 31 527 22Q523 4 518 1Q517 1 515 1T510 0Q505 0 486 0T431 1T355 2Q248 2 218 0H205Q199 6 199 9T201 27Q205 40 211 46H234Q300 46 313 52Q323 54 326 62Q328 64 334 86T344 129L349 150Q349 151 346 151Q333 151 307 158T245 182T185 231T159 309V314Q159 325 162 338T174 374T207 421T264 468Q334 518 435 531L446 533L457 577Q467 620 467 624ZM436 494Q429 494 417 492T373 477T319 442Q288 408 274 362T260 284Q260 257 269 239T298 210T328 196T359 188L436 494ZM626 398Q626 438 605 460T539 493L528 495Q527 495 489 342T451 188Q455 188 462 189T490 197T528 212T566 241T598 285Q626 341 626 398'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [683,0,767,207,824,'494 626Q493 627 493 628T491 629T489 631T484 632T477 634T465 635T449 636T426 637Q387 637 385 643Q384 644 384 649Q384 673 395 682Q397 683 413 683Q456 681 558 681Q595 681 626 681T676 682T698 683Q715 683 715 672Q715 670 712 658T707 643Q705 637 666 637Q621 636 605 633T584 617L478 193Q486 195 498 199T542 229T597 291Q626 335 646 415Q669 500 694 523T759 546H777H801Q824 546 824 536Q822 509 809 509Q762 509 735 406Q707 300 642 234T481 153L467 151L456 106Q445 62 445 59Q445 46 526 46Q556 46 556 36Q556 31 553 22Q549 4 544 1Q543 1 541 1T536 0Q531 0 512 0T457 1T381 2Q274 2 244 0H231Q225 6 225 9T227 27Q231 40 237 46H260Q326 46 339 52Q349 54 352 62Q354 64 365 106T376 151Q374 152 371 152Q360 153 347 156T310 172T270 201T239 250T225 323Q225 359 235 405T245 470T239 498T226 507T213 510T207 520Q207 528 209 534T215 544L218 546H257Q305 546 314 540Q338 530 338 485Q338 455 326 402T313 312Q313 218 379 193Q386 192 387 192Q387 196 441 408Q494 621 494 626'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [705,0,716,100,759,'183 393Q183 451 206 502T267 590T348 652T435 691T510 704Q513 705 525 705Q631 705 695 650T759 505Q759 454 732 397T672 299T593 203T527 117Q503 81 503 76Q503 75 521 75Q576 75 588 77Q589 77 592 78T595 79T598 80T602 82T605 86T609 92T614 101T620 112T627 127T636 147Q646 169 649 170Q651 172 667 172H682Q689 167 689 162Q689 158 654 81T617 2Q614 0 530 0H447Q441 5 441 9T444 28Q461 85 498 158T569 285T628 408T654 534Q654 592 621 630T527 668Q488 668 448 649T371 593T310 487T286 330Q286 302 290 247T294 137Q294 34 280 6Q278 1 268 1T190 0H107Q100 5 100 12Q100 24 103 94T108 165Q110 172 131 172H146Q150 169 153 165L152 141V116Q152 84 153 82Q156 75 217 75H252V84Q252 126 218 231T183 393'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/GreekAndCoptic.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js new file mode 100644 index 0000000..3fc9c0a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Italic/LatinExtendedA.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-italic'], + { + // LATIN SMALL LETTER DOTLESS I + 0x131: [441,10,307,75,341,'75 287Q75 292 82 313T103 362T142 413T196 441H214Q248 441 270 419T293 357Q292 338 289 330T245 208Q193 72 193 46Q193 26 209 26Q228 26 247 43Q273 71 292 136Q295 148 297 150T311 153H317Q327 153 330 153T337 150T340 143Q340 133 330 105T292 41T228 -8Q220 -10 204 -10Q160 -10 141 15T122 71Q122 98 171 227T221 384Q221 396 218 400T203 405Q175 403 156 374T128 312T116 279Q115 278 97 278H81Q75 284 75 287'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js new file mode 100644 index 0000000..2bb5c88 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Italic/LatinExtendedB.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-italic'], + { + // LATIN SMALL LETTER DOTLESS J + 0x237: [442,204,332,-32,327,'75 284T75 287T81 305T101 343T133 389T180 426T240 442Q273 440 300 420T327 350V332L278 134Q267 92 253 37T233 -45T225 -73Q208 -123 162 -163T54 -204Q8 -204 -15 -181Q-32 -164 -32 -140Q-32 -112 -14 -96T27 -79Q48 -79 57 -91T67 -114Q67 -146 39 -166L44 -167H59H60Q112 -167 145 -74Q148 -65 198 134T251 347Q252 353 252 370Q252 382 251 388T245 399T230 405Q204 405 175 378Q157 360 145 337T126 298T117 280T98 278H81Q75 284 75 287'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/LatinExtendedB.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js new file mode 100644 index 0000000..56d88d4 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Italic/LetterlikeSymbols.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-italic'], + { + // stix-/hbar - Planck's over 2pi + 0x210F: [695,13,540,42,562,'150 475Q147 475 118 466T82 457Q73 457 64 467T54 487Q54 490 55 492Q63 506 64 506Q67 512 118 526Q162 541 169 546Q173 559 175 575Q181 596 181 604Q181 613 166 617Q164 617 153 618T135 619Q119 619 114 621T109 630Q109 636 114 656T122 681Q125 685 202 688Q272 695 286 695Q304 695 304 684Q304 682 291 628L278 577L386 612Q466 635 476 635T492 627T499 607Q499 593 489 586Q485 583 373 546L262 512Q262 511 248 455T233 397T236 397T244 404Q295 441 357 441Q405 441 445 417T485 333Q485 284 449 178T412 58T426 44Q447 44 466 68Q485 87 500 130L509 152H531H543Q562 152 562 144Q562 128 546 93T494 23T415 -13Q385 -13 359 3T322 44Q318 52 318 77Q318 99 352 196T386 337Q386 386 346 386Q318 386 286 370Q267 361 245 338T211 292Q207 287 193 235T162 113T138 21Q128 7 122 4Q105 -12 83 -12Q66 -12 54 -2T42 26Q42 45 98 257L151 475H150'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/Main.js new file mode 100644 index 0000000..ec17ac5 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/Main.js @@ -0,0 +1,41 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Italic/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-italic'] = { + directory: 'Main/Italic', + family: 'MathJax_Main', + id: 'MJMAINI', + style: 'italic', + Ranges: [ + [0x20,0x7F,"BasicLatin"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x2000,0x206F,"GeneralPunctuation"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2200,0x22FF,"MathOperators"] + ], + + // POUND SIGN + 0xA3: [714,11,769,88,699,'699 578Q699 473 635 473Q597 473 595 508Q595 559 654 569V576Q654 619 637 648T581 677Q545 677 513 647T463 561Q460 554 437 464T414 371Q414 370 458 370H502Q508 364 508 362Q505 334 495 324H402L382 241Q377 224 373 206T366 180T361 163T358 151T354 142T350 133T344 120Q340 112 338 107T336 101L354 90Q398 63 422 54T476 44Q515 44 539 73T574 133Q578 144 580 146T598 148Q622 148 622 139Q622 138 620 130Q602 74 555 32T447 -11Q395 -11 317 38L294 51Q271 28 233 9T155 -10Q117 -10 103 5T88 39Q88 73 126 106T224 139Q236 139 247 138T266 134L273 132Q275 132 302 239L323 324H259Q253 330 253 332Q253 350 265 370H300L334 371L355 453Q356 457 360 477T366 501T372 522T379 545T387 565T397 587T409 606T425 627Q453 664 497 689T583 714Q640 714 669 676T699 578ZM245 76Q211 85 195 85Q173 85 158 71T142 42Q142 26 160 26H163Q211 30 245 76'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js new file mode 100644 index 0000000..87c7a6c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Italic/MathOperators.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main-italic'], + { + // INCREMENT + 0x2206: [716,0,818,70,751,''] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Italic/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js new file mode 100644 index 0000000..0a08f58 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js @@ -0,0 +1,146 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // EXCLAMATION MARK + 0x21: [716,-1,278,78,199,'78 661Q78 682 96 699T138 716T180 700T199 661Q199 654 179 432T158 206Q156 198 139 198Q121 198 119 206Q118 209 98 431T78 661ZM79 61Q79 89 97 105T141 121Q164 119 181 104T198 61Q198 31 181 16T139 1Q114 1 97 16T79 61'], + + // QUOTATION MARK + 0x22: [694,-379,500,34,372,'34 634Q34 659 50 676T93 694Q121 694 144 668T168 579Q168 525 146 476T101 403T73 379Q69 379 60 388T50 401Q50 404 62 417T88 448T116 500T131 572Q131 584 130 584T125 581T112 576T94 573Q69 573 52 590T34 634ZM238 634Q238 659 254 676T297 694Q325 694 348 668T372 579Q372 525 350 476T305 403T277 379Q273 379 264 388T254 401Q254 404 266 417T292 448T320 500T335 572Q335 584 334 584T329 581T316 576T298 573Q273 573 256 590T238 634'], + + // NUMBER SIGN + 0x23: [694,194,833,56,778,'56 347Q56 360 70 367H313L355 524Q394 676 401 686Q406 694 416 694Q434 694 436 676Q436 672 396 522Q355 374 355 369L354 367H543L585 524Q626 679 630 685Q636 694 646 694Q653 694 659 689T665 678Q665 668 626 522Q585 374 585 369L584 367H762Q777 359 777 347Q777 334 767 331T722 327H667H572L552 251L531 174Q531 173 647 173H720Q756 173 766 170T777 153T762 133H519L477 -24Q436 -179 432 -185Q426 -194 416 -194Q409 -194 403 -189T397 -177Q397 -167 436 -21Q477 125 477 131L478 133H289L247 -24Q206 -179 202 -185Q196 -194 186 -194Q179 -194 173 -189T167 -177Q167 -167 206 -21Q247 125 247 131L248 133H70Q56 140 56 153Q56 168 72 173H260L280 249L301 326Q301 327 186 327H72Q56 332 56 347ZM531 326Q531 327 437 327H342L322 251L301 174Q301 173 395 173H490L510 249L531 326'], + + // DOLLAR SIGN + 0x24: [750,56,500,55,444,'162 187Q162 164 146 149T109 133H103V130Q108 115 115 105Q122 92 131 82T150 64T170 52T190 44T206 40T220 37L227 36V313Q190 320 162 335Q116 358 86 404T55 508Q55 567 85 614T165 685Q186 696 225 704H227V750H273V704L286 703Q369 690 413 631Q441 588 444 531Q444 514 443 509Q439 490 425 479T391 468Q368 468 353 483T337 522Q337 546 353 560T390 575L394 576V578Q386 599 372 614T342 637T314 649T288 656L273 658V408L288 405Q329 394 355 376Q396 348 420 300T444 199Q444 130 408 76T313 1Q286 -9 276 -9H273V-56H227V-10H221Q202 -6 193 -4T155 11T108 41T74 94T55 176V182Q55 227 95 238Q103 240 108 240Q129 240 145 226T162 187ZM225 657Q219 657 204 651T169 632T135 594T121 538Q121 512 131 491T156 457T187 435T213 423T227 420V539Q227 657 225 657ZM378 169Q378 230 339 265T274 301Q273 301 273 169V37Q324 50 351 87T378 169'], + + // PERCENT SIGN + 0x25: [750,56,833,56,777,'465 605Q428 605 394 614T340 632T319 641Q332 608 332 548Q332 458 293 403T202 347Q145 347 101 402T56 548Q56 637 101 693T202 750Q241 750 272 719Q359 642 464 642Q580 642 650 732Q662 748 668 749Q670 750 673 750Q682 750 688 743T693 726Q178 -47 170 -52Q166 -56 160 -56Q147 -56 142 -45Q137 -36 142 -27Q143 -24 363 304Q469 462 525 546T581 630Q528 605 465 605ZM207 385Q235 385 263 427T292 548Q292 617 267 664T200 712Q193 712 186 709T167 698T147 668T134 615Q132 595 132 548V527Q132 436 165 403Q183 385 203 385H207ZM500 146Q500 234 544 290T647 347Q699 347 737 292T776 146T737 0T646 -56Q590 -56 545 0T500 146ZM651 -18Q679 -18 707 24T736 146Q736 215 711 262T644 309Q637 309 630 306T611 295T591 265T578 212Q577 200 577 146V124Q577 -18 647 -18H651'], + + // AMPERSAND + 0x26: [716,22,778,42,727,'156 540Q156 620 201 668T302 716Q354 716 377 671T401 578Q401 505 287 386L274 373Q309 285 416 148L429 132L437 142Q474 191 543 309L562 341V349Q562 368 541 376T498 385H493V431H502L626 428Q709 428 721 431H727V385H712Q688 384 669 379T639 369T618 354T603 337T591 316T578 295Q537 223 506 176T464 117T454 104Q454 102 471 85T497 62Q543 24 585 24Q618 24 648 48T682 113V121H722V112Q721 94 714 75T692 32T646 -7T574 -22Q491 -19 414 42L402 51L391 42Q312 -22 224 -22Q144 -22 93 25T42 135Q42 153 46 169T55 197T74 225T96 249T125 278T156 308L195 347L190 360Q185 372 182 382T174 411T165 448T159 491T156 540ZM361 576Q361 613 348 646T305 679Q272 679 252 649T232 572Q232 497 255 426L259 411L267 420Q361 519 361 576ZM140 164Q140 103 167 64T240 24Q271 24 304 36T356 61T374 77Q295 156 235 262L220 292L210 310L193 293Q177 277 169 268T151 229T140 164'], + + // APOSTROPHE + 0x27: [694,-379,278,78,212,'78 634Q78 659 95 676T138 694Q166 694 189 668T212 579Q212 525 190 476T146 403T118 379Q114 379 105 388T95 401Q95 404 107 417T133 448T161 500T176 572Q176 584 175 584T170 581T157 576T139 573Q114 573 96 590T78 634'], + + // ASTERISK + 0x2A: [750,-320,500,64,436,'215 721Q216 732 225 741T248 750Q263 750 273 742T284 721L270 571L327 613Q383 654 388 657T399 660Q412 660 423 650T435 624T424 600T376 575Q363 569 355 566L289 534L355 504L424 470Q435 462 435 447Q435 431 424 420T399 409Q393 409 388 412T327 456L270 498L277 423L284 348Q280 320 250 320T215 348L229 498L172 456Q116 415 111 412T100 409Q87 409 76 420T64 447Q64 461 75 470L144 504L210 534L144 566Q136 570 122 576Q83 593 74 600T64 624Q64 639 75 649T100 660Q106 660 111 657T172 613L229 571Q229 578 222 643T215 721'], + + // HYPHEN-MINUS + 0x2D: [252,-179,333,11,277,'11 179V252H277V179H11'], + + // QUESTION MARK + 0x3F: [705,-1,472,55,417,'226 668Q190 668 162 656T124 632L114 621Q116 621 119 620T130 616T145 607T157 591T162 567Q162 544 147 529T109 514T71 528T55 566Q55 625 100 661T199 704Q201 704 210 704T224 705H228Q281 705 320 692T378 656T407 612T416 567Q416 503 361 462Q267 395 247 303Q242 279 242 241V224Q242 205 239 202T222 198T205 201T202 218V249Q204 320 220 371T255 445T292 491T315 537Q317 546 317 574V587Q317 604 315 615T304 640T277 661T226 668ZM162 61Q162 89 180 105T224 121Q247 119 264 104T281 61Q281 31 264 16T222 1Q197 1 180 16T162 61'], + + // COMMERCIAL AT + 0x40: [705,11,778,56,722,'56 347Q56 429 86 498T164 612T270 680T386 705Q522 705 622 603T722 349Q722 126 608 126Q541 126 513 176Q512 177 512 179T510 182L509 183Q508 183 503 177T487 163T464 146T429 132T385 126Q311 126 251 186T190 347Q190 448 251 508T385 568Q426 568 460 548T509 511T531 479H555Q580 479 582 478Q586 477 587 468Q588 454 588 338V260Q588 200 593 182T619 163Q641 163 655 178T674 223T680 273T682 325V330Q682 426 647 500Q611 569 544 618T388 668Q271 668 184 577T96 347Q96 216 180 121T396 26Q421 26 446 28T493 34T535 43T573 52T605 63T629 72T647 80T657 84H716Q722 78 722 74Q722 65 675 45T547 7T392 -11Q255 -11 156 90T56 347ZM274 347Q274 266 308 214T390 162Q420 162 449 182T498 235L504 245V449L498 459Q453 532 387 532Q347 532 311 483T274 347'], + + // LATIN CAPITAL LETTER A + 0x41: [716,0,750,32,717,'255 0Q240 3 140 3Q48 3 39 0H32V46H47Q119 49 139 88Q140 91 192 245T295 553T348 708Q351 716 366 716H376Q396 715 400 709Q402 707 508 390L617 67Q624 54 636 51T687 46H717V0H708Q699 3 581 3Q458 3 437 0H427V46H440Q510 46 510 64Q510 66 486 138L462 209H229L209 150Q189 91 189 85Q189 72 209 59T259 46H264V0H255ZM447 255L345 557L244 256Q244 255 345 255H447'], + + // LATIN CAPITAL LETTER B + 0x42: [683,0,708,28,651,'131 622Q124 629 120 631T104 634T61 637H28V683H229H267H346Q423 683 459 678T531 651Q574 627 599 590T624 512Q624 461 583 419T476 360L466 357Q539 348 595 302T651 187Q651 119 600 67T469 3Q456 1 242 0H28V46H61Q103 47 112 49T131 61V622ZM511 513Q511 560 485 594T416 636Q415 636 403 636T371 636T333 637Q266 637 251 636T232 628Q229 624 229 499V374H312L396 375L406 377Q410 378 417 380T442 393T474 417T499 456T511 513ZM537 188Q537 239 509 282T430 336L329 337H229V200V116Q229 57 234 52Q240 47 334 47H383Q425 47 443 53Q486 67 511 104T537 188'], + + // LATIN CAPITAL LETTER C + 0x43: [705,21,722,56,666,'56 342Q56 428 89 500T174 615T283 681T391 705Q394 705 400 705T408 704Q499 704 569 636L582 624L612 663Q639 700 643 704Q644 704 647 704T653 705H657Q660 705 666 699V419L660 413H626Q620 419 619 430Q610 512 571 572T476 651Q457 658 426 658Q322 658 252 588Q173 509 173 342Q173 221 211 151Q232 111 263 84T328 45T384 29T428 24Q517 24 571 93T626 244Q626 251 632 257H660L666 251V236Q661 133 590 56T403 -21Q262 -21 159 83T56 342'], + + // LATIN CAPITAL LETTER D + 0x44: [683,0,764,27,708,'130 622Q123 629 119 631T103 634T60 637H27V683H228Q399 682 419 682T461 676Q504 667 546 641T626 573T685 470T708 336Q708 210 634 116T442 3Q429 1 228 0H27V46H60Q102 47 111 49T130 61V622ZM593 338Q593 439 571 501T493 602Q439 637 355 637H322H294Q238 637 234 628Q231 624 231 344Q231 62 232 59Q233 49 248 48T339 46H350Q456 46 515 95Q561 133 577 191T593 338'], + + // LATIN CAPITAL LETTER E + 0x45: [680,0,681,25,652,'128 619Q121 626 117 628T101 631T58 634H25V680H597V676Q599 670 611 560T625 444V440H585V444Q584 447 582 465Q578 500 570 526T553 571T528 601T498 619T457 629T411 633T353 634Q266 634 251 633T233 622Q233 622 233 621Q232 619 232 497V376H286Q359 378 377 385Q413 401 416 469Q416 471 416 473V493H456V213H416V233Q415 268 408 288T383 317T349 328T297 330Q290 330 286 330H232V196V114Q232 57 237 52Q243 47 289 47H340H391Q428 47 452 50T505 62T552 92T584 146Q594 172 599 200T607 247T612 270V273H652V270Q651 267 632 137T610 3V0H25V46H58Q100 47 109 49T128 61V619'], + + // LATIN CAPITAL LETTER F + 0x46: [680,0,653,25,610,'128 619Q121 626 117 628T101 631T58 634H25V680H582V676Q584 670 596 560T610 444V440H570V444Q563 493 561 501Q555 538 543 563T516 601T477 622T431 631T374 633H334H286Q252 633 244 631T233 621Q232 619 232 490V363H284Q287 363 303 363T327 364T349 367T372 373T389 385Q407 403 410 459V480H450V200H410V221Q407 276 389 296Q381 303 371 307T348 313T327 316T303 317T284 317H232V189L233 61Q240 54 245 52T270 48T333 46H360V0H348Q324 3 182 3Q51 3 36 0H25V46H58Q100 47 109 49T128 61V619'], + + // LATIN CAPITAL LETTER G + 0x47: [705,22,785,56,735,'56 342Q56 428 89 500T174 615T283 681T391 705Q394 705 400 705T408 704Q499 704 569 636L582 624L612 663Q639 700 643 704Q644 704 647 704T653 705H657Q660 705 666 699V419L660 413H626Q620 419 619 430Q610 512 571 572T476 651Q457 658 426 658Q401 658 376 654T316 633T254 592T205 519T177 411Q173 369 173 335Q173 259 192 201T238 111T302 58T370 31T431 24Q478 24 513 45T559 100Q562 110 562 160V212Q561 213 557 216T551 220T542 223T526 225T502 226T463 227H437V273H449L609 270Q715 270 727 273H735V227H721Q674 227 668 215Q666 211 666 108V6Q660 0 657 0Q653 0 639 10Q617 25 600 42L587 54Q571 27 524 3T406 -22Q317 -22 238 22T108 151T56 342'], + + // LATIN CAPITAL LETTER H + 0x48: [683,0,750,25,724,'128 622Q121 629 117 631T101 634T58 637H25V683H36Q57 680 180 680Q315 680 324 683H335V637H302Q262 636 251 634T233 622L232 500V378H517V622Q510 629 506 631T490 634T447 637H414V683H425Q446 680 569 680Q704 680 713 683H724V637H691Q651 636 640 634T622 622V61Q628 51 639 49T691 46H724V0H713Q692 3 569 3Q434 3 425 0H414V46H447Q489 47 498 49T517 61V332H232V197L233 61Q239 51 250 49T302 46H335V0H324Q303 3 180 3Q45 3 36 0H25V46H58Q100 47 109 49T128 61V622'], + + // LATIN CAPITAL LETTER I + 0x49: [683,0,361,21,339,'328 0Q307 3 180 3T32 0H21V46H43Q92 46 106 49T126 60Q128 63 128 342Q128 620 126 623Q122 628 118 630T96 635T43 637H21V683H32Q53 680 180 680T328 683H339V637H317Q268 637 254 634T234 623Q232 620 232 342Q232 63 234 60Q238 55 242 53T264 48T317 46H339V0H328'], + + // LATIN CAPITAL LETTER J + 0x4A: [683,22,514,25,465,'89 177Q115 177 133 160T152 112Q152 88 137 72T102 52Q99 51 101 49Q106 43 129 29Q159 15 190 15Q232 15 256 48T286 126Q286 127 286 142T286 183T286 238T287 306T287 378Q287 403 287 429T287 479T287 524T286 563T286 593T286 614V621Q281 630 263 633T182 637H154V683H166Q187 680 332 680Q439 680 457 683H465V637H449Q422 637 401 634Q393 631 389 623Q388 621 388 376T387 123Q377 61 322 20T194 -22Q188 -22 177 -21T160 -20Q96 -9 61 29T25 110Q25 144 44 160T89 177'], + + // LATIN CAPITAL LETTER K + 0x4B: [683,0,778,25,736,'128 622Q121 629 117 631T101 634T58 637H25V683H36Q57 680 180 680Q315 680 324 683H335V637H313Q235 637 233 620Q232 618 232 462L233 307L379 449Q425 494 479 546Q518 584 524 591T531 607V608Q531 630 503 636Q501 636 498 636T493 637H489V683H499Q517 680 630 680Q704 680 716 683H722V637H708Q633 633 589 597Q584 592 495 506T406 419T515 254T631 80Q644 60 662 54T715 46H736V0H728Q719 3 615 3Q493 3 472 0H461V46H469Q515 46 515 72Q515 78 512 84L336 351Q332 348 278 296L232 251V156Q232 62 235 58Q243 47 302 46H335V0H324Q303 3 180 3Q45 3 36 0H25V46H58Q100 47 109 49T128 61V622'], + + // LATIN CAPITAL LETTER L + 0x4C: [683,0,625,25,582,'128 622Q121 629 117 631T101 634T58 637H25V683H36Q48 680 182 680Q324 680 348 683H360V637H333Q273 637 258 635T233 622L232 342V129Q232 57 237 52Q243 47 313 47Q384 47 410 53Q470 70 498 110T536 221Q536 226 537 238T540 261T542 272T562 273H582V268Q580 265 568 137T554 5V0H25V46H58Q100 47 109 49T128 61V622'], + + // LATIN CAPITAL LETTER M + 0x4D: [683,0,917,29,887,'132 622Q125 629 121 631T105 634T62 637H29V683H135Q221 683 232 682T249 675Q250 674 354 398L458 124L562 398Q666 674 668 675Q671 681 683 682T781 683H887V637H854Q814 636 803 634T785 622V61Q791 51 802 49T854 46H887V0H876Q855 3 736 3Q605 3 596 0H585V46H618Q660 47 669 49T688 61V347Q688 424 688 461T688 546T688 613L687 632Q454 14 450 7Q446 1 430 1T410 7Q409 9 292 316L176 624V606Q175 588 175 543T175 463T175 356L176 86Q187 50 261 46H278V0H269Q254 3 154 3Q52 3 37 0H29V46H46Q78 48 98 56T122 69T132 86V622'], + + // LATIN CAPITAL LETTER N + 0x4E: [683,0,750,25,724,'42 46Q74 48 94 56T118 69T128 86V634H124Q114 637 52 637H25V683H232L235 680Q237 679 322 554T493 303L578 178V598Q572 608 568 613T544 627T492 637H475V683H483Q498 680 600 680Q706 680 715 683H724V637H707Q634 633 622 598L621 302V6L614 0H600Q585 0 582 3T481 150T282 443T171 605V345L172 86Q183 50 257 46H274V0H265Q250 3 150 3Q48 3 33 0H25V46H42'], + + // LATIN CAPITAL LETTER O + 0x4F: [705,23,778,56,722,'56 340Q56 423 86 494T164 610T270 680T388 705Q521 705 621 601T722 341Q722 260 693 191T617 75T510 4T388 -22T267 3T160 74T85 189T56 340ZM467 647Q426 665 388 665Q360 665 331 654T269 620T213 549T179 439Q174 411 174 354Q174 144 277 61Q327 20 385 20H389H391Q474 20 537 99Q603 188 603 354Q603 411 598 439Q577 592 467 647'], + + // LATIN CAPITAL LETTER P + 0x50: [684,0,681,27,624,'130 622Q123 629 119 631T103 634T60 637H27V683H214Q237 683 276 683T331 684Q419 684 471 671T567 616Q624 563 624 489Q624 421 573 372T451 307Q429 302 328 301H234V181Q234 62 237 58Q245 47 304 46H337V0H326Q305 3 182 3Q47 3 38 0H27V46H60Q102 47 111 49T130 61V622ZM507 488Q507 514 506 528T500 564T483 597T450 620T397 635Q385 637 307 637H286Q237 637 234 628Q231 624 231 483V342H302H339Q390 342 423 349T481 382Q507 411 507 488'], + + // LATIN CAPITAL LETTER Q + 0x51: [705,193,778,56,728,'56 341Q56 499 157 602T388 705Q521 705 621 601T722 341Q722 275 703 218T660 127T603 63T555 25T525 9Q524 8 524 8H523Q524 5 526 -1T537 -21T555 -47T581 -67T615 -76Q653 -76 678 -56T706 -3Q707 10 716 10Q721 10 728 5L727 -13Q727 -88 697 -140T606 -193Q563 -193 538 -166T498 -83Q483 -23 483 -8L471 -11Q459 -14 435 -18T388 -22Q254 -22 155 81T56 341ZM607 339Q607 429 586 496T531 598T461 649T390 665T318 649T248 598T192 496T170 339Q170 143 277 57Q301 39 305 39L304 42Q304 44 304 46Q301 53 301 68Q301 101 325 128T391 155Q454 155 495 70L501 58Q549 91 578 164Q607 234 607 339ZM385 18Q404 18 425 23T459 33T472 40Q471 47 468 57T449 88T412 115Q398 117 386 117Q367 117 353 102T338 67Q338 48 351 33T385 18'], + + // LATIN CAPITAL LETTER R + 0x52: [683,22,736,27,732,'130 622Q123 629 119 631T103 634T60 637H27V683H202H236H300Q376 683 417 677T500 648Q595 600 609 517Q610 512 610 501Q610 468 594 439T556 392T511 361T472 343L456 338Q459 335 467 332Q497 316 516 298T545 254T559 211T568 155T578 94Q588 46 602 31T640 16H645Q660 16 674 32T692 87Q692 98 696 101T712 105T728 103T732 90Q732 59 716 27T672 -16Q656 -22 630 -22Q481 -16 458 90Q456 101 456 163T449 246Q430 304 373 320L363 322L297 323H231V192L232 61Q238 51 249 49T301 46H334V0H323Q302 3 181 3Q59 3 38 0H27V46H60Q102 47 111 49T130 61V622ZM491 499V509Q491 527 490 539T481 570T462 601T424 623T362 636Q360 636 340 636T304 637H283Q238 637 234 628Q231 624 231 492V360H289Q390 360 434 378T489 456Q491 467 491 499'], + + // LATIN CAPITAL LETTER S + 0x53: [705,22,556,55,500,'55 507Q55 590 112 647T243 704H257Q342 704 405 641L426 672Q431 679 436 687T446 700L449 704Q450 704 453 704T459 705H463Q466 705 472 699V462L466 456H448Q437 456 435 459T430 479Q413 605 329 646Q292 662 254 662Q201 662 168 626T135 542Q135 508 152 480T200 435Q210 431 286 412T370 389Q427 367 463 314T500 191Q500 110 448 45T301 -21Q245 -21 201 -4T140 27L122 41Q118 36 107 21T87 -7T78 -21Q76 -22 68 -22H64Q61 -22 55 -16V101Q55 220 56 222Q58 227 76 227H89Q95 221 95 214Q95 182 105 151T139 90T205 42T305 24Q352 24 386 62T420 155Q420 198 398 233T340 281Q284 295 266 300Q261 301 239 306T206 314T174 325T141 343T112 367T85 402Q55 451 55 507'], + + // LATIN CAPITAL LETTER T + 0x54: [677,0,722,36,685,'36 443Q37 448 46 558T55 671V677H666V671Q667 666 676 556T685 443V437H645V443Q645 445 642 478T631 544T610 593Q593 614 555 625Q534 630 478 630H451H443Q417 630 414 618Q413 616 413 339V63Q420 53 439 50T528 46H558V0H545L361 3Q186 1 177 0H164V46H194Q264 46 283 49T309 63V339V550Q309 620 304 625T271 630H244H224Q154 630 119 601Q101 585 93 554T81 486T76 443V437H36V443'], + + // LATIN CAPITAL LETTER U + 0x55: [683,22,750,25,724,'128 622Q121 629 117 631T101 634T58 637H25V683H36Q57 680 180 680Q315 680 324 683H335V637H302Q262 636 251 634T233 622L232 418V291Q232 189 240 145T280 67Q325 24 389 24Q454 24 506 64T571 183Q575 206 575 410V598Q569 608 565 613T541 627T489 637H472V683H481Q496 680 598 680T715 683H724V637H707Q634 633 622 598L621 399Q620 194 617 180Q617 179 615 171Q595 83 531 31T389 -22Q304 -22 226 33T130 192Q129 201 128 412V622'], + + // LATIN CAPITAL LETTER V + 0x56: [683,22,750,19,730,'114 620Q113 621 110 624T107 627T103 630T98 632T91 634T80 635T67 636T48 637H19V683H28Q46 680 152 680Q273 680 294 683H305V637H284Q223 634 223 620Q223 618 313 372T404 126L490 358Q575 588 575 597Q575 616 554 626T508 637H503V683H512Q527 680 627 680Q718 680 724 683H730V637H723Q648 637 627 596Q627 595 515 291T401 -14Q396 -22 382 -22H374H367Q353 -22 348 -14Q346 -12 231 303Q114 617 114 620'], + + // LATIN CAPITAL LETTER W + 0x57: [683,22,1028,18,1009,'792 683Q810 680 914 680Q991 680 1003 683H1009V637H996Q931 633 915 598Q912 591 863 438T766 135T716 -17Q711 -22 694 -22Q676 -22 673 -15Q671 -13 593 231L514 477L435 234Q416 174 391 92T358 -6T341 -22H331Q314 -21 310 -15Q309 -14 208 302T104 622Q98 632 87 633Q73 637 35 637H18V683H27Q69 681 154 681Q164 681 181 681T216 681T249 682T276 683H287H298V637H285Q213 637 213 620Q213 616 289 381L364 144L427 339Q490 535 492 546Q487 560 482 578T475 602T468 618T461 628T449 633T433 636T408 637H380V683H388Q397 680 508 680Q629 680 650 683H660V637H647Q576 637 576 619L727 146Q869 580 869 600Q869 605 863 612T839 627T794 637H783V683H792'], + + // LATIN CAPITAL LETTER X + 0x58: [683,0,750,23,726,'270 0Q252 3 141 3Q46 3 31 0H23V46H40Q129 50 161 88Q165 94 244 216T324 339Q324 341 235 480T143 622Q133 631 119 634T57 637H37V683H46Q64 680 172 680Q297 680 318 683H329V637H324Q307 637 286 632T263 621Q263 618 322 525T384 431Q385 431 437 511T489 593Q490 595 490 599Q490 611 477 622T436 637H428V683H437Q455 680 566 680Q661 680 676 683H684V637H667Q585 634 551 599Q548 596 478 491Q412 388 412 387Q412 385 514 225T620 62Q628 53 642 50T695 46H726V0H717Q699 3 591 3Q466 3 445 0H434V46H440Q454 46 476 51T499 64Q499 67 463 124T390 238L353 295L350 292Q348 290 343 283T331 265T312 236T286 195Q219 88 218 84Q218 70 234 59T272 46H280V0H270'], + + // LATIN CAPITAL LETTER Y + 0x59: [683,0,750,11,738,'518 0Q497 3 374 3Q253 3 232 0H221V46H254Q313 47 321 58Q324 62 324 167V273L221 446Q117 620 114 623Q106 631 91 634T31 637H11V683H20Q29 680 148 680Q273 680 294 683H305V637H287Q239 636 236 621Q236 619 321 475L407 332L483 460Q502 492 527 534Q563 594 563 604Q563 632 517 637H508V683H517H525Q533 683 545 683T571 682T600 681T626 681Q695 681 731 683H738V637H723Q640 633 613 588Q612 587 517 427L425 273V169V95Q425 66 428 59T444 49Q459 46 506 46H528V0H518'], + + // LATIN CAPITAL LETTER Z + 0x5A: [683,0,611,55,560,'69 443Q69 452 74 554T80 683H549Q555 677 555 664Q555 649 554 648Q552 645 366 348T179 50T192 49T263 49H275H302Q333 49 353 50T401 59T447 78T482 115T507 173Q513 200 520 273V282H560V274Q560 272 552 143T543 8V0H302L61 1L58 3Q55 8 55 21V35Q59 43 153 193T340 489T432 637H343Q259 637 214 625T141 573Q109 523 109 445Q109 443 89 443H69'], + + // LOW LINE + 0x5F: [-25,62,500,0,499,'0 -62V-25H499V-62H0'], + + // GRAVE ACCENT + 0x60: [699,-505,500,106,296,'106 655Q106 671 119 685T150 699Q166 699 177 688Q190 671 222 629T275 561T295 533T282 519L267 505L196 563Q119 626 113 634Q106 643 106 655'], + + // TILDE + 0x7E: [318,-215,500,83,416,'179 251Q164 251 151 245T131 234T111 215L97 227L83 238Q83 239 95 253T121 283T142 304Q165 318 187 318T253 300T320 282Q335 282 348 288T368 299T388 318L402 306L416 295Q375 236 344 222Q330 215 313 215Q292 215 248 233T179 251'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js new file mode 100644 index 0000000..5aab48d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js @@ -0,0 +1,62 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/CombDiacritMarks.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // COMBINING GRAVE ACCENT + 0x300: [699,-505,0,-394,-204,'-394 655Q-394 671 -381 685T-350 699Q-334 699 -323 688Q-310 671 -278 629T-225 561T-205 533T-218 519L-233 505L-304 563Q-381 626 -387 634Q-394 643 -394 655'], + + // COMBINING ACUTE ACCENT + 0x301: [699,-505,0,-297,-107,'-151 699Q-133 699 -120 686T-107 656Q-107 651 -108 647T-113 637T-120 627T-133 616T-149 602T-170 585T-197 563L-268 505L-283 519Q-297 533 -296 533Q-296 534 -271 567T-218 636T-187 678L-184 681Q-182 684 -179 686T-172 692T-163 697T-151 699'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [694,-531,0,-388,-113,'-388 560L-251 694L-243 686Q-113 562 -113 560L-139 531Q-141 532 -197 581L-250 627L-305 580Q-318 569 -331 557T-352 538L-360 532Q-362 530 -375 546L-388 560'], + + // COMBINING TILDE + 0x303: [668,-565,0,-417,-84,'-321 601Q-336 601 -349 595T-369 584T-389 565L-403 577L-417 588Q-417 589 -405 603T-379 633T-358 654Q-335 668 -313 668T-247 650T-180 632Q-165 632 -152 638T-132 649T-112 668L-98 656L-84 645Q-125 586 -156 572Q-170 565 -187 565Q-208 565 -252 583T-321 601'], + + // COMBINING MACRON + 0x304: [590,-544,0,-431,-70,'-431 544V590H-70V544H-431'], + + // COMBINING BREVE + 0x306: [694,-515,0,-408,-93,'-250 515Q-321 515 -362 565T-408 683V694H-371V689Q-371 688 -371 683T-370 675Q-363 631 -331 599T-252 567Q-196 567 -163 608T-130 689V694H-93V683Q-97 617 -139 566T-250 515'], + + // COMBINING DOT ABOVE + 0x307: [669,-549,0,-310,-191,'-310 609Q-310 637 -292 653T-248 669Q-225 667 -208 652T-191 609Q-191 579 -208 564T-250 549Q-275 549 -292 564T-310 609'], + + // COMBINING DIAERESIS + 0x308: [669,-554,0,-405,-95,'-405 612Q-405 633 -388 651T-347 669T-307 652T-290 612Q-290 588 -306 571T-348 554L-373 560Q-405 577 -405 612ZM-211 611Q-211 634 -196 649T-165 668Q-164 668 -160 668T-154 669Q-131 669 -114 652T-96 612T-113 572T-154 554Q-177 554 -194 570T-211 611'], + + // COMBINING RING ABOVE + 0x30A: [715,-542,0,-353,-148,'-353 628Q-353 669 -321 692T-256 715Q-202 715 -175 689T-148 629Q-148 592 -177 567T-251 542Q-298 542 -325 567T-353 628ZM-187 628Q-187 660 -200 669T-241 678H-247Q-252 678 -258 678T-266 679Q-283 679 -293 674T-308 659T-312 644T-313 629Q-313 600 -302 590Q-290 579 -250 579H-235Q-221 579 -212 581T-195 595T-187 628'], + + // COMBINING DOUBLE ACUTE ACCENT + 0x30B: [701,-510,0,-378,-80,'-292 701Q-278 701 -262 690T-246 658Q-246 649 -250 641Q-252 637 -297 574T-344 510L-378 528Q-378 530 -355 598T-327 676Q-316 701 -292 701ZM-126 701Q-112 701 -96 690T-80 658Q-80 649 -84 641Q-86 637 -131 574T-178 510L-212 528Q-212 530 -189 598T-161 676Q-150 701 -126 701'], + + // COMBINING CARON + 0x30C: [644,-513,0,-386,-115,'-386 611L-373 630L-364 644Q-362 644 -307 612Q-252 581 -250 581L-194 612Q-139 644 -137 644L-115 611L-182 562L-251 513L-386 611'], + + // COMBINING LONG SOLIDUS OVERLAY + 0x338: [716,215,0,-639,-140,'-612 -215T-619 -215T-631 -212T-637 -204T-639 -197Q-639 -190 -634 -183Q-621 -157 -400 274T-176 707Q-173 716 -160 716Q-153 716 -148 712T-142 703T-140 696Q-140 691 -372 241T-608 -212Q-612 -215 -619 -215'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js new file mode 100644 index 0000000..6db6fc7 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js @@ -0,0 +1,41 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/GeometricShapes.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // WHITE UP-POINTING TRIANGLE + 0x25B3: [716,0,889,59,828,'75 0L72 2Q69 3 67 5T62 11T59 20Q59 24 62 30Q65 37 245 370T428 707Q428 708 430 710T436 714T444 716Q451 716 455 712Q459 710 644 368L828 27V20Q828 7 814 0H75ZM610 347L444 653Q443 653 278 347T113 40H775Q775 42 610 347'], + + // WHITE RIGHT-POINTING SMALL TRIANGLE + 0x25B9: [505,5,500,26,473,'26 489Q33 505 43 505Q51 505 260 385Q464 266 471 259Q473 257 473 250Q473 242 469 239Q459 231 260 115Q51 -5 43 -5Q39 -5 35 -1T28 7L26 11V489ZM412 250L67 450Q66 450 66 250T67 50Q69 51 240 150T412 250'], + + // WHITE DOWN-POINTING TRIANGLE + 0x25BD: [500,215,889,59,828,'59 480Q59 485 61 489T66 495T72 498L75 500H814Q828 493 828 480V474L644 132Q458 -210 455 -212Q451 -215 444 -215T433 -212Q429 -210 342 -49T164 282T64 466Q59 478 59 480ZM775 460H113Q113 459 278 153T444 -153T610 153T775 460'], + + // WHITE LEFT-POINTING SMALL TRIANGLE + 0x25C3: [505,5,500,26,473,'473 10Q466 -5 454 -5Q451 -5 445 -3Q444 -3 343 56T140 173T35 234Q26 239 26 250T35 266Q40 269 240 384T445 503Q451 505 453 505Q466 505 473 490V10ZM433 50T433 250T432 450T259 351T87 250T258 150T432 50Q433 50 433 250'], + + // LARGE CIRCLE + 0x25EF: [715,215,1000,56,944,'56 250Q56 353 95 442T196 589T335 681T491 715Q573 715 635 693Q694 673 747 635T846 543T917 412T944 250Q944 58 815 -78T500 -215Q457 -215 429 -210Q274 -183 165 -56T56 250ZM500 -176Q664 -176 784 -54T904 250Q904 418 799 536T543 674Q534 675 493 675Q425 675 357 647T229 567T133 432T96 250Q96 160 129 80T217 -56T346 -144T500 -176'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/GeometricShapes.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js new file mode 100644 index 0000000..d5427cd --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/GreekAndCoptic.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // GREEK CAPITAL LETTER GAMMA + 0x393: [680,0,625,25,582,'128 619Q121 626 117 628T101 631T58 634H25V680H554V676Q556 670 568 560T582 444V440H542V444Q542 445 538 478T523 545T492 598Q454 634 349 634H334Q264 634 249 633T233 621Q232 618 232 339L233 61Q240 54 245 52T270 48T333 46H360V0H348Q324 3 182 3Q51 3 36 0H25V46H58Q100 47 109 49T128 61V619'], + + // GREEK CAPITAL LETTER DELTA + 0x394: [716,0,833,46,786,'51 0Q46 4 46 7Q46 9 215 357T388 709Q391 716 416 716Q439 716 444 709Q447 705 616 357T786 7Q786 4 781 0H51ZM507 344L384 596L137 92L383 91H630Q630 93 507 344'], + + // GREEK CAPITAL LETTER THETA + 0x398: [705,23,778,56,722,'56 340Q56 423 86 494T164 610T270 680T388 705Q521 705 621 601T722 341Q722 260 693 191T617 75T510 4T388 -22T267 3T160 74T85 189T56 340ZM610 339Q610 428 590 495T535 598T463 651T384 668Q332 668 289 638T221 566Q168 485 168 339Q168 274 176 235Q189 158 228 105T324 28Q356 16 388 16Q415 16 442 24T501 54T555 111T594 205T610 339ZM223 263V422H263V388H514V422H554V263H514V297H263V263H223'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [716,0,694,32,661,'320 708Q326 716 340 716H348H355Q367 716 372 708Q374 706 423 547T523 226T575 62Q581 52 591 50T634 46H661V0H653Q644 3 532 3Q411 3 390 0H379V46H392Q464 46 464 65Q463 70 390 305T316 539L246 316Q177 95 177 84Q177 72 198 59T248 46H253V0H245Q230 3 130 3Q47 3 38 0H32V46H45Q112 51 127 91Q128 92 224 399T320 708'], + + // GREEK CAPITAL LETTER XI + 0x39E: [677,0,667,42,624,'47 509L55 676Q55 677 333 677T611 676L619 509Q619 508 599 508T579 510Q579 529 575 557T564 589Q550 594 333 594T102 589Q95 586 91 558T87 510Q87 508 67 508T47 509ZM139 260V445H179V394H487V445H527V260H487V311H179V260H139ZM50 0L42 180H62Q82 180 82 178Q82 133 89 105Q92 93 95 90T108 86Q137 83 333 83Q530 83 558 86Q568 87 571 90T577 105Q584 133 584 178Q584 180 604 180H624L616 0H50'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [680,0,750,25,724,'128 619Q121 626 117 628T101 631T58 634H25V680H724V634H691Q651 633 640 631T622 619V61Q628 51 639 49T691 46H724V0H713Q692 3 569 3Q434 3 425 0H414V46H447Q489 47 498 49T517 61V634H232V348L233 61Q239 51 250 49T302 46H335V0H324Q303 3 180 3Q45 3 36 0H25V46H58Q100 47 109 49T128 61V619'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [683,0,722,55,666,'666 247Q664 244 652 126T638 4V0H351Q131 0 95 0T57 5V6Q54 12 57 17L73 36Q89 54 121 90T182 159L305 299L56 644L55 658Q55 677 60 681Q63 683 351 683H638V679Q640 674 652 564T666 447V443H626V447Q618 505 604 543T559 605Q529 626 478 631T333 637H294H189L293 494Q314 465 345 422Q400 346 400 340Q400 338 399 337L154 57Q407 57 428 58Q476 60 508 68T551 83T575 103Q595 125 608 162T624 225L626 251H666V247'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [705,0,778,55,722,'55 551Q55 604 91 654T194 705Q240 705 277 681T334 624T367 556T385 498L389 474L392 488Q394 501 400 521T414 566T438 615T473 659T521 692T584 705Q620 705 648 689T691 647T714 597T722 551Q722 540 719 538T699 536Q680 536 677 541Q677 542 677 544T676 548Q676 576 650 596T588 616H582Q538 616 505 582Q466 543 454 477T441 318Q441 301 441 269T442 222V61Q448 55 452 53T478 48T542 46H569V0H557Q533 3 389 3T221 0H209V46H236Q256 46 270 46T295 47T311 48T322 51T328 54T332 57T337 61V209Q337 383 333 415Q313 616 189 616Q154 616 128 597T101 548Q101 540 97 538T78 536Q63 536 59 538T55 551'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [683,0,722,55,665,'312 622Q310 623 307 625T303 629T297 631T286 634T270 635T246 636T211 637H184V683H196Q220 680 361 680T526 683H538V637H511Q468 637 447 635T422 631T411 622V533L425 531Q525 519 595 466T665 342Q665 301 642 267T583 209T506 172T425 152L411 150V61Q417 55 421 53T447 48T511 46H538V0H526Q502 3 361 3T196 0H184V46H211Q231 46 245 46T270 47T286 48T297 51T303 54T307 57T312 61V150H310Q309 151 289 153T232 166T160 195Q149 201 136 210T103 238T69 284T56 342Q56 414 128 467T294 530Q309 532 310 533H312V622ZM170 342Q170 207 307 188H312V495H309Q301 495 282 491T231 469T186 423Q170 389 170 342ZM415 188Q487 199 519 236T551 342Q551 384 539 414T507 459T470 481T434 491T415 495H410V188H415'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [683,0,778,55,722,'340 622Q338 623 335 625T331 629T325 631T314 634T298 635T274 636T239 637H212V683H224Q248 680 389 680T554 683H566V637H539Q479 637 464 635T439 622L438 407Q438 192 439 192Q443 193 449 195T474 207T507 232T536 276T557 344Q560 365 562 417T573 493Q587 536 620 544Q627 546 671 546H715L722 540V515Q714 509 708 509Q680 505 671 476T658 392T644 307Q599 177 451 153L438 151V106L439 61Q446 54 451 52T476 48T539 46H566V0H554Q530 3 389 3T224 0H212V46H239Q259 46 273 46T298 47T314 48T325 51T331 54T335 57T340 61V151Q126 178 117 406Q115 503 69 509Q55 509 55 526Q55 541 59 543T86 546H107H120Q150 546 161 543T184 528Q198 514 204 493Q212 472 213 420T226 316T272 230Q287 216 303 207T330 194L339 192Q340 192 340 407V622'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [705,0,722,44,677,'55 454Q55 503 75 546T127 617T197 665T272 695T337 704H352Q396 704 404 703Q527 687 596 615T666 454Q666 392 635 330T559 200T499 83V80H543Q589 81 600 83T617 93Q622 102 629 135T636 172L637 177H677V175L660 89Q645 3 644 2V0H552H488Q461 0 456 3T451 20Q451 89 499 235T548 455Q548 512 530 555T483 622T424 656T361 668Q332 668 303 658T243 626T193 560T174 456Q174 380 222 233T270 20Q270 7 263 0H77V2Q76 3 61 89L44 175V177H84L85 172Q85 171 88 155T96 119T104 93Q109 86 120 84T178 80H222V83Q206 132 162 199T87 329T55 454'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/GreekAndCoptic.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js new file mode 100644 index 0000000..13cf020 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/LatinExtendedA.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // LATIN SMALL LETTER DOTLESS I + 0x131: [443,0,278,26,255,'247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/LatinExtendedA.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js new file mode 100644 index 0000000..fadead2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/LatinExtendedB.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // LATIN SMALL LETTER DOTLESS J + 0x237: [443,205,306,-55,218,'28 -163Q58 -168 64 -168Q124 -168 135 -77Q137 -65 137 141T136 353Q132 371 120 377T72 385H52V408Q52 431 54 431L58 432Q62 432 70 432T87 433T108 434T133 436Q151 437 171 438T202 441T214 442H218V184Q217 -36 217 -59T211 -98Q195 -145 153 -175T58 -205Q9 -205 -23 -179T-55 -117Q-55 -94 -40 -79T-2 -64T36 -79T52 -118Q52 -143 28 -163'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/LatinExtendedB.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js new file mode 100644 index 0000000..b82ea0d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js @@ -0,0 +1,44 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/LetterlikeSymbols.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // stix-/hbar - Planck's over 2pi + 0x210F: [695,13,540,42,562,'182 599Q182 611 174 615T133 619Q118 619 114 621T109 630Q109 636 114 656T122 681Q125 685 202 688Q272 695 286 695Q304 695 304 684Q304 682 295 644T282 597Q282 592 360 592H399Q430 592 445 587T460 563Q460 552 451 541L442 535H266L251 468Q247 453 243 436T236 409T233 399Q233 395 244 404Q295 441 357 441Q405 441 445 417T485 333Q485 284 449 178T412 58T426 44Q447 44 466 68Q485 87 500 130L509 152H531H543Q562 152 562 144Q562 128 546 93T494 23T415 -13Q385 -13 359 3T322 44Q318 52 318 77Q318 99 352 196T386 337Q386 386 346 386Q318 386 286 370Q267 361 245 338T211 292Q207 287 193 235T162 113T138 21Q128 7 122 4Q105 -12 83 -12Q66 -12 54 -2T42 26L166 530Q166 534 161 534T129 535Q127 535 122 535T112 534Q74 534 74 562Q74 570 77 576T84 585T96 589T109 591T124 592T138 592L182 595V599'], + + // BLACK-LETTER CAPITAL I + 0x2111: [705,10,722,55,693,'55 507Q55 589 116 647T260 705Q395 705 526 541Q542 522 549 517T567 512Q595 512 621 521T647 550Q647 553 647 555T650 558T653 560T657 561T661 561T665 561T670 561Q681 561 685 561T691 558T693 548Q693 515 657 495T565 475Q518 475 481 495T418 543T371 599T320 647T259 667Q194 667 148 622T102 508Q102 468 119 436T164 385T220 357T273 347Q282 347 284 344T287 329Q287 317 285 314T272 310Q193 310 124 364T55 507ZM420 312Q420 367 464 399T564 431Q613 431 651 406T693 336Q693 325 689 323T667 320Q654 320 651 322T647 335Q645 360 622 376T566 393H563Q557 393 551 391T537 381T523 356T517 312Q517 287 535 265T574 229T613 190T631 132Q628 74 586 37T487 -9Q478 -10 417 -10H387Q344 -10 310 4T215 69Q130 142 71 146Q59 146 57 149T55 163Q55 177 58 180T75 183H108Q177 183 207 170T306 93Q346 56 368 40T420 13Q474 25 503 60T533 136Q533 160 516 182T477 219T438 257T420 304V312'], + + // SCRIPT SMALL L + 0x2113: [706,20,417,7,397,'345 104T349 104T361 95T369 80T352 59Q268 -20 206 -20Q170 -20 146 3T113 53T99 104L94 129Q94 130 79 116T48 86T28 70Q22 70 15 79T7 94Q7 98 12 103T58 147L91 179V185Q91 186 91 191T92 200Q92 282 128 400T223 612T336 705Q397 705 397 636V627Q397 453 194 233Q185 223 180 218T174 211T171 208T165 201L163 186Q159 142 159 123Q159 17 208 17Q228 17 253 30T293 56T335 94Q345 104 349 104ZM360 634Q360 655 354 661T336 668Q328 668 322 666T302 645T272 592Q252 547 229 467T192 330L179 273Q179 272 186 280T204 300T221 322Q327 453 355 590Q360 612 360 634'], + + // SCRIPT CAPITAL P + 0x2118: [453,216,636,67,625,'300 74Q300 133 338 133Q350 133 356 126T363 109Q363 88 340 76Q340 71 342 62T358 39T393 26Q435 26 474 67T532 182T551 290Q551 325 535 349T484 373Q430 373 378 348T291 289T228 218T187 157T174 130Q254 30 265 10Q276 -15 276 -41Q276 -101 235 -158T142 -216Q112 -216 90 -195T67 -118Q67 -40 104 64L110 81Q81 118 81 174Q81 268 134 360T247 453Q252 453 255 451T258 447L259 445Q259 432 253 420Q251 416 242 416Q209 411 176 341T142 203Q142 193 143 184T146 170T149 165L158 180Q215 280 303 345T485 410Q548 410 586 368T625 255Q625 157 553 74T389 -10H383Q349 -10 325 14Q302 37 300 74ZM105 -123Q105 -134 106 -141T110 -158T122 -173T145 -178Q155 -178 160 -176Q184 -163 199 -132T214 -73Q214 -69 214 -66T213 -59T212 -53T209 -47T205 -41T199 -33T193 -25T184 -14T174 -1L165 10Q156 22 148 32L139 43Q138 43 130 15T113 -54T105 -123'], + + // BLACK-LETTER CAPITAL R + 0x211C: [716,22,722,40,715,'300 614L306 620Q311 626 316 631T332 646T356 663T386 679T425 695T473 707T531 715Q534 715 543 715T557 716Q570 716 572 714Q574 713 644 580T715 444Q715 441 713 439Q712 438 677 419T602 379T549 354L550 348Q550 337 555 238T561 128Q561 122 560 115T559 101Q559 63 591 25L599 18L631 51Q665 85 671 85Q674 85 687 78T702 68Q704 63 702 59Q702 58 659 20T613 -21Q612 -22 598 -22Q556 -22 526 -8T484 27T466 66T461 101Q461 110 462 116T463 129Q463 135 458 232T452 331V338H343V280Q342 195 333 157Q316 64 267 12Q233 -22 193 -22Q155 -22 122 2T72 74Q72 76 70 76T67 74T60 74T48 82Q40 91 40 95Q40 100 42 102T57 109V113Q57 118 66 127T81 137Q88 137 93 123Q105 127 108 126Q111 124 118 117T127 107Q127 101 123 98T113 93T107 90Q107 86 115 71T143 37T189 15H192Q230 15 239 96Q244 135 244 334Q244 510 242 542Q236 584 233 596Q223 630 205 649T166 668Q136 668 118 642T100 584Q100 567 110 554T137 522T166 486Q194 446 194 401V389Q189 243 114 243Q91 243 77 260T59 294T55 322Q55 331 59 333T75 336T91 334T95 322Q95 280 113 280Q134 280 140 305T147 375V391Q147 417 139 435T101 487Q56 540 56 572V580Q56 630 86 667T169 704Q214 704 247 676T300 614ZM324 562Q326 555 330 539T336 515T340 484T343 427V384H424L505 385Q537 396 584 422L609 435Q610 435 594 465T550 550Q536 575 520 605T496 650L488 664L476 662Q348 633 324 562'], + + // ALEF SYMBOL + 0x2135: [694,0,611,55,555,'55 613Q55 643 61 663T74 688T85 694Q94 694 94 681Q98 632 134 588L412 285Q416 311 430 397T447 509V519L438 526Q407 554 398 571T388 617T394 664T407 688T418 694Q425 694 427 684Q429 675 454 635T488 586Q490 584 496 579T513 563T537 540Q555 516 555 487Q555 460 549 441T537 416T528 409Q519 409 517 415T513 435T503 463Q492 481 490 481Q454 264 454 246Q454 237 479 212T529 152T555 79Q555 32 538 9Q531 1 524 1Q516 1 516 13Q512 62 476 106Q468 115 337 258T195 412L193 406Q191 401 189 394T183 377T176 352T171 322T167 284T165 240Q165 224 166 220Q171 199 211 152T252 70Q252 45 235 29T203 8T175 1Q170 0 115 0H79Q60 0 58 3T55 20Q55 31 58 34Q60 37 76 37Q112 39 126 46T140 70Q140 96 112 148T83 236Q83 281 102 334T140 419T159 452Q55 556 55 613'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/LetterlikeSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/Main.js new file mode 100644 index 0000000..5a01623 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/Main.js @@ -0,0 +1,629 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'] = { + directory: 'Main/Regular', + family: 'MathJax_Main', + id: 'MJMAIN', + skew: { + 0x131: 0.0278, + 0x237: 0.0833, + 0x2113: 0.111, + 0x2118: 0.111, + 0x2202: 0.0833 + }, + Ranges: [ + [0x20,0x7F,"BasicLatin"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2200,0x22FF,"MathOperators"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x2A00,0x2AFF,"SuppMathOperators"] + ], + + // SPACE + 0x20: [0,0,250,0,0,''], + + // LEFT PARENTHESIS + 0x28: [750,250,389,94,333,'94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250'], + + // RIGHT PARENTHESIS + 0x29: [750,250,389,55,294,'60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749'], + + // PLUS SIGN + 0x2B: [583,82,778,56,722,'56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250'], + + // COMMA + 0x2C: [121,195,278,78,210,'78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17'], + + // FULL STOP + 0x2E: [120,0,278,78,199,'78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60'], + + // SOLIDUS + 0x2F: [750,250,500,56,444,'423 750Q432 750 438 744T444 730Q444 725 271 248T92 -240Q85 -250 75 -250Q68 -250 62 -245T56 -231Q56 -221 230 257T407 740Q411 750 423 750'], + + // DIGIT ZERO + 0x30: [666,22,500,39,460,'96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597'], + + // DIGIT ONE + 0x31: [666,0,500,83,427,'213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578'], + + // DIGIT TWO + 0x32: [666,0,500,50,449,'109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429'], + + // DIGIT THREE + 0x33: [665,22,500,42,457,'127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463'], + + // DIGIT FOUR + 0x34: [677,0,500,28,471,'462 0Q444 3 333 3Q217 3 199 0H190V46H221Q241 46 248 46T265 48T279 53T286 61Q287 63 287 115V165H28V211L179 442Q332 674 334 675Q336 677 355 677H373L379 671V211H471V165H379V114Q379 73 379 66T385 54Q393 47 442 46H471V0H462ZM293 211V545L74 212L183 211H293'], + + // DIGIT FIVE + 0x35: [666,22,500,50,449,'164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157'], + + // DIGIT SIX + 0x36: [666,22,500,41,456,'42 313Q42 476 123 571T303 666Q372 666 402 630T432 550Q432 525 418 510T379 495Q356 495 341 509T326 548Q326 592 373 601Q351 623 311 626Q240 626 194 566Q147 500 147 364L148 360Q153 366 156 373Q197 433 263 433H267Q313 433 348 414Q372 400 396 374T435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM257 397Q227 397 205 380T171 335T154 278T148 216Q148 133 160 97T198 39Q222 21 251 21Q302 21 329 59Q342 77 347 104T352 209Q352 289 347 316T329 361Q302 397 257 397'], + + // DIGIT SEVEN + 0x37: [676,22,500,55,485,'55 458Q56 460 72 567L88 674Q88 676 108 676H128V672Q128 662 143 655T195 646T364 644H485V605L417 512Q408 500 387 472T360 435T339 403T319 367T305 330T292 284T284 230T278 162T275 80Q275 66 275 52T274 28V19Q270 2 255 -10T221 -22Q210 -22 200 -19T179 0T168 40Q168 198 265 368Q285 400 349 489L395 552H302Q128 552 119 546Q113 543 108 522T98 479L95 458V455H55V458'], + + // DIGIT EIGHT + 0x38: [666,22,500,43,457,'70 417T70 494T124 618T248 666Q319 666 374 624T429 515Q429 485 418 459T392 417T361 389T335 371T324 363L338 354Q352 344 366 334T382 323Q457 264 457 174Q457 95 399 37T249 -22Q159 -22 101 29T43 155Q43 263 172 335L154 348Q133 361 127 368Q70 417 70 494ZM286 386L292 390Q298 394 301 396T311 403T323 413T334 425T345 438T355 454T364 471T369 491T371 513Q371 556 342 586T275 624Q268 625 242 625Q201 625 165 599T128 534Q128 511 141 492T167 463T217 431Q224 426 228 424L286 386ZM250 21Q308 21 350 55T392 137Q392 154 387 169T375 194T353 216T330 234T301 253T274 270Q260 279 244 289T218 306L210 311Q204 311 181 294T133 239T107 157Q107 98 150 60T250 21'], + + // DIGIT NINE + 0x39: [666,22,500,42,456,'352 287Q304 211 232 211Q154 211 104 270T44 396Q42 412 42 436V444Q42 537 111 606Q171 666 243 666Q245 666 249 666T257 665H261Q273 665 286 663T323 651T370 619T413 560Q456 472 456 334Q456 194 396 97Q361 41 312 10T208 -22Q147 -22 108 7T68 93T121 149Q143 149 158 135T173 96Q173 78 164 65T148 49T135 44L131 43Q131 41 138 37T164 27T206 22H212Q272 22 313 86Q352 142 352 280V287ZM244 248Q292 248 321 297T351 430Q351 508 343 542Q341 552 337 562T323 588T293 615T246 625Q208 625 181 598Q160 576 154 546T147 441Q147 358 152 329T172 282Q197 248 244 248'], + + // COLON + 0x3A: [430,0,278,78,199,'78 370Q78 394 95 412T138 430Q162 430 180 414T199 371Q199 346 182 328T139 310T96 327T78 370ZM78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60'], + + // SEMICOLON + 0x3B: [430,194,278,78,202,'78 370Q78 394 95 412T138 430Q162 430 180 414T199 371Q199 346 182 328T139 310T96 327T78 370ZM78 60Q78 85 94 103T137 121Q202 121 202 8Q202 -44 183 -94T144 -169T118 -194Q115 -194 106 -186T95 -174Q94 -171 107 -155T137 -107T160 -38Q161 -32 162 -22T165 -4T165 4Q165 5 161 4T142 0Q110 0 94 18T78 60'], + + // LESS-THAN SIGN + 0x3C: [540,40,778,83,695,'694 -11T694 -19T688 -33T678 -40Q671 -40 524 29T234 166L90 235Q83 240 83 250Q83 261 91 266Q664 540 678 540Q681 540 687 534T694 519T687 505Q686 504 417 376L151 250L417 124Q686 -4 687 -5Q694 -11 694 -19'], + + // EQUALS SIGN + 0x3D: [367,-133,778,56,722,'56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153'], + + // GREATER-THAN SIGN + 0x3E: [540,40,778,82,694,'84 520Q84 528 88 533T96 539L99 540Q106 540 253 471T544 334L687 265Q694 260 694 250T687 235Q685 233 395 96L107 -40H101Q83 -38 83 -20Q83 -19 83 -17Q82 -10 98 -1Q117 9 248 71Q326 108 378 132L626 250L378 368Q90 504 86 509Q84 513 84 520'], + + // LEFT SQUARE BRACKET + 0x5B: [750,250,278,118,255,'118 -250V750H255V710H158V-210H255V-250H118'], + + // REVERSE SOLIDUS + 0x5C: [750,250,500,56,444,'56 731Q56 740 62 745T75 750Q85 750 92 740Q96 733 270 255T444 -231Q444 -239 438 -244T424 -250Q414 -250 407 -240Q404 -236 230 242T56 731'], + + // RIGHT SQUARE BRACKET + 0x5D: [750,250,278,22,159,'22 710V750H159V-250H22V-210H119V710H22'], + + // CIRCUMFLEX ACCENT + 0x5E: [694,-531,500,112,387,'112 560L249 694L257 686Q387 562 387 560L361 531Q359 532 303 581L250 627L195 580Q182 569 169 557T148 538L140 532Q138 530 125 546L112 560'], + + // LATIN SMALL LETTER A + 0x61: [448,11,500,34,493,'137 305T115 305T78 320T63 359Q63 394 97 421T218 448Q291 448 336 416T396 340Q401 326 401 309T402 194V124Q402 76 407 58T428 40Q443 40 448 56T453 109V145H493V106Q492 66 490 59Q481 29 455 12T400 -6T353 12T329 54V58L327 55Q325 52 322 49T314 40T302 29T287 17T269 6T247 -2T221 -8T190 -11Q130 -11 82 20T34 107Q34 128 41 147T68 188T116 225T194 253T304 268H318V290Q318 324 312 340Q290 411 215 411Q197 411 181 410T156 406T148 403Q170 388 170 359Q170 334 154 320ZM126 106Q126 75 150 51T209 26Q247 26 276 49T315 109Q317 116 318 175Q318 233 317 233Q309 233 296 232T251 223T193 203T147 166T126 106'], + + // LATIN SMALL LETTER B + 0x62: [695,11,556,20,522,'307 -11Q234 -11 168 55L158 37Q156 34 153 28T147 17T143 10L138 1L118 0H98V298Q98 599 97 603Q94 622 83 628T38 637H20V660Q20 683 22 683L32 684Q42 685 61 686T98 688Q115 689 135 690T165 693T176 694H179V543Q179 391 180 391L183 394Q186 397 192 401T207 411T228 421T254 431T286 439T323 442Q401 442 461 379T522 216Q522 115 458 52T307 -11ZM182 98Q182 97 187 90T196 79T206 67T218 55T233 44T250 35T271 29T295 26Q330 26 363 46T412 113Q424 148 424 212Q424 287 412 323Q385 405 300 405Q270 405 239 390T188 347L182 339V98'], + + // LATIN SMALL LETTER C + 0x63: [448,12,444,34,415,'370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320'], + + // LATIN SMALL LETTER D + 0x64: [695,11,556,34,535,'376 495Q376 511 376 535T377 568Q377 613 367 624T316 637H298V660Q298 683 300 683L310 684Q320 685 339 686T376 688Q393 689 413 690T443 693T454 694H457V390Q457 84 458 81Q461 61 472 55T517 46H535V0Q533 0 459 -5T380 -11H373V44L365 37Q307 -11 235 -11Q158 -11 96 50T34 215Q34 315 97 378T244 442Q319 442 376 393V495ZM373 342Q328 405 260 405Q211 405 173 369Q146 341 139 305T131 211Q131 155 138 120T173 59Q203 26 251 26Q322 26 373 103V342'], + + // LATIN SMALL LETTER E + 0x65: [448,11,444,28,415,'28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275'], + + // LATIN SMALL LETTER F + 0x66: [705,0,306,26,372,'273 0Q255 3 146 3Q43 3 34 0H26V46H42Q70 46 91 49Q99 52 103 60Q104 62 104 224V385H33V431H104V497L105 564L107 574Q126 639 171 668T266 704Q267 704 275 704T289 705Q330 702 351 679T372 627Q372 604 358 590T321 576T284 590T270 627Q270 647 288 667H284Q280 668 273 668Q245 668 223 647T189 592Q183 572 182 497V431H293V385H185V225Q185 63 186 61T189 57T194 54T199 51T206 49T213 48T222 47T231 47T241 46T251 46H282V0H273'], + + // LATIN SMALL LETTER G + 0x67: [453,206,500,29,485,'329 409Q373 453 429 453Q459 453 472 434T485 396Q485 382 476 371T449 360Q416 360 412 390Q410 404 415 411Q415 412 416 414V415Q388 412 363 393Q355 388 355 386Q355 385 359 381T368 369T379 351T388 325T392 292Q392 230 343 187T222 143Q172 143 123 171Q112 153 112 133Q112 98 138 81Q147 75 155 75T227 73Q311 72 335 67Q396 58 431 26Q470 -13 470 -72Q470 -139 392 -175Q332 -206 250 -206Q167 -206 107 -175Q29 -140 29 -75Q29 -39 50 -15T92 18L103 24Q67 55 67 108Q67 155 96 193Q52 237 52 292Q52 355 102 398T223 442Q274 442 318 416L329 409ZM299 343Q294 371 273 387T221 404Q192 404 171 388T145 343Q142 326 142 292Q142 248 149 227T179 192Q196 182 222 182Q244 182 260 189T283 207T294 227T299 242Q302 258 302 292T299 343ZM403 -75Q403 -50 389 -34T348 -11T299 -2T245 0H218Q151 0 138 -6Q118 -15 107 -34T95 -74Q95 -84 101 -97T122 -127T170 -155T250 -167Q319 -167 361 -139T403 -75'], + + // LATIN SMALL LETTER H + 0x68: [695,0,556,25,542,'41 46H55Q94 46 102 60V68Q102 77 102 91T102 124T102 167T103 217T103 272T103 329Q103 366 103 407T103 482T102 542T102 586T102 603Q99 622 88 628T43 637H25V660Q25 683 27 683L37 684Q47 685 66 686T103 688Q120 689 140 690T170 693T181 694H184V367Q244 442 328 442Q451 442 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41'], + + // LATIN SMALL LETTER I + 0x69: [669,0,278,26,255,'69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247'], + + // LATIN SMALL LETTER J + 0x6A: [669,205,306,-55,218,'98 609Q98 637 116 653T160 669Q183 667 200 652T217 609Q217 579 200 564T158 549Q133 549 116 564T98 609ZM28 -163Q58 -168 64 -168Q124 -168 135 -77Q137 -65 137 141T136 353Q132 371 120 377T72 385H52V408Q52 431 54 431L58 432Q62 432 70 432T87 433T108 434T133 436Q151 437 171 438T202 441T214 442H218V184Q217 -36 217 -59T211 -98Q195 -145 153 -175T58 -205Q9 -205 -23 -179T-55 -117Q-55 -94 -40 -79T-2 -64T36 -79T52 -118Q52 -143 28 -163'], + + // LATIN SMALL LETTER K + 0x6B: [695,0,528,20,511,'36 46H50Q89 46 97 60V68Q97 77 97 91T97 124T98 167T98 217T98 272T98 329Q98 366 98 407T98 482T98 542T97 586T97 603Q94 622 83 628T38 637H20V660Q20 683 22 683L32 684Q42 685 61 686T98 688Q115 689 135 690T165 693T176 694H179V463L180 233L240 287Q300 341 304 347Q310 356 310 364Q310 383 289 385H284V431H293Q308 428 412 428Q475 428 484 431H489V385H476Q407 380 360 341Q286 278 286 274Q286 273 349 181T420 79Q434 60 451 53T500 46H511V0H505Q496 3 418 3Q322 3 307 0H299V46H306Q330 48 330 65Q330 72 326 79Q323 84 276 153T228 222L176 176V120V84Q176 65 178 59T189 49Q210 46 238 46H254V0H246Q231 3 137 3T28 0H20V46H36'], + + // LATIN SMALL LETTER L + 0x6C: [695,0,278,26,263,'42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42'], + + // LATIN SMALL LETTER M + 0x6D: [443,0,833,25,819,'41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q351 442 364 440T387 434T406 426T421 417T432 406T441 395T448 384T452 374T455 366L457 361L460 365Q463 369 466 373T475 384T488 397T503 410T523 422T546 432T572 439T603 442Q729 442 740 329Q741 322 741 190V104Q741 66 743 59T754 49Q775 46 803 46H819V0H811L788 1Q764 2 737 2T699 3Q596 3 587 0H579V46H595Q656 46 656 62Q657 64 657 200Q656 335 655 343Q649 371 635 385T611 402T585 404Q540 404 506 370Q479 343 472 315T464 232V168V108Q464 78 465 68T468 55T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41'], + + // LATIN SMALL LETTER N + 0x6E: [443,0,556,25,542,'41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41'], + + // LATIN SMALL LETTER O + 0x6F: [448,10,500,28,471,'28 214Q28 309 93 378T250 448Q340 448 405 380T471 215Q471 120 407 55T250 -10Q153 -10 91 57T28 214ZM250 30Q372 30 372 193V225V250Q372 272 371 288T364 326T348 362T317 390T268 410Q263 411 252 411Q222 411 195 399Q152 377 139 338T126 246V226Q126 130 145 91Q177 30 250 30'], + + // LATIN SMALL LETTER P + 0x70: [443,194,556,20,522,'36 -148H50Q89 -148 97 -134V-126Q97 -119 97 -107T97 -77T98 -38T98 6T98 55T98 106Q98 140 98 177T98 243T98 296T97 335T97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 61 434T98 436Q115 437 135 438T165 441T176 442H179V416L180 390L188 397Q247 441 326 441Q407 441 464 377T522 216Q522 115 457 52T310 -11Q242 -11 190 33L182 40V-45V-101Q182 -128 184 -134T195 -145Q216 -148 244 -148H260V-194H252L228 -193Q205 -192 178 -192T140 -191Q37 -191 28 -194H20V-148H36ZM424 218Q424 292 390 347T305 402Q234 402 182 337V98Q222 26 294 26Q345 26 384 80T424 218'], + + // LATIN SMALL LETTER Q + 0x71: [442,194,528,33,535,'33 218Q33 308 95 374T236 441H246Q330 441 381 372L387 364Q388 364 404 403L420 442H457V156Q457 -132 458 -134Q462 -142 470 -145Q491 -148 519 -148H535V-194H527L504 -193Q480 -192 453 -192T415 -191Q312 -191 303 -194H295V-148H311Q339 -148 360 -145Q369 -141 371 -135T373 -106V-41V49Q313 -11 236 -11Q154 -11 94 53T33 218ZM376 300Q346 389 278 401Q275 401 269 401T261 402Q211 400 171 350T131 214Q131 137 165 82T253 27Q296 27 328 54T376 118V300'], + + // LATIN SMALL LETTER R + 0x72: [443,0,392,20,364,'36 46H50Q89 46 97 60V68Q97 77 97 91T98 122T98 161T98 203Q98 234 98 269T98 328L97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 60 434T96 436Q112 437 131 438T160 441T171 442H174V373Q213 441 271 441H277Q322 441 343 419T364 373Q364 352 351 337T313 322Q288 322 276 338T263 372Q263 381 265 388T270 400T273 405Q271 407 250 401Q234 393 226 386Q179 341 179 207V154Q179 141 179 127T179 101T180 81T180 66V61Q181 59 183 57T188 54T193 51T200 49T207 48T216 47T225 47T235 46T245 46H276V0H267Q249 3 140 3Q37 3 28 0H20V46H36'], + + // LATIN SMALL LETTER S + 0x73: [448,11,394,33,359,'295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316'], + + // LATIN SMALL LETTER T + 0x74: [615,10,389,18,333,'27 422Q80 426 109 478T141 600V615H181V431H316V385H181V241Q182 116 182 100T189 68Q203 29 238 29Q282 29 292 100Q293 108 293 146V181H333V146V134Q333 57 291 17Q264 -10 221 -10Q187 -10 162 2T124 33T105 68T98 100Q97 107 97 248V385H18V422H27'], + + // LATIN SMALL LETTER U + 0x75: [443,11,556,25,542,'383 58Q327 -10 256 -10H249Q124 -10 105 89Q104 96 103 226Q102 335 102 348T96 369Q86 385 36 385H25V408Q25 431 27 431L38 432Q48 433 67 434T105 436Q122 437 142 438T172 441T184 442H187V261Q188 77 190 64Q193 49 204 40Q224 26 264 26Q290 26 311 35T343 58T363 90T375 120T379 144Q379 145 379 161T380 201T380 248V315Q380 361 370 372T320 385H302V431Q304 431 378 436T457 442H464V264Q464 84 465 81Q468 61 479 55T524 46H542V0Q540 0 467 -5T390 -11H383V58'], + + // LATIN SMALL LETTER V + 0x76: [431,11,528,19,508,'338 431Q344 429 422 429Q479 429 503 431H508V385H497Q439 381 423 345Q421 341 356 172T288 -2Q283 -11 263 -11Q244 -11 239 -2Q99 359 98 364Q93 378 82 381T43 385H19V431H25L33 430Q41 430 53 430T79 430T104 429T122 428Q217 428 232 431H240V385H226Q187 384 184 370Q184 366 235 234L286 102L377 341V349Q377 363 367 372T349 383T335 385H331V431H338'], + + // LATIN SMALL LETTER W + 0x77: [431,11,722,18,703,'90 368Q84 378 76 380T40 385H18V431H24L43 430Q62 430 84 429T116 428Q206 428 221 431H229V385H215Q177 383 177 368Q177 367 221 239L265 113L339 328L333 345Q323 374 316 379Q308 384 278 385H258V431H264Q270 428 348 428Q439 428 454 431H461V385H452Q404 385 404 369Q404 366 418 324T449 234T481 143L496 100L537 219Q579 341 579 347Q579 363 564 373T530 385H522V431H529Q541 428 624 428Q692 428 698 431H703V385H697Q696 385 691 385T682 384Q635 377 619 334L559 161Q546 124 528 71Q508 12 503 1T487 -11H479Q460 -11 456 -4Q455 -3 407 133L361 267Q359 263 266 -4Q261 -11 243 -11H238Q225 -11 220 -3L90 368'], + + // LATIN SMALL LETTER X + 0x78: [431,0,528,11,516,'201 0Q189 3 102 3Q26 3 17 0H11V46H25Q48 47 67 52T96 61T121 78T139 96T160 122T180 150L226 210L168 288Q159 301 149 315T133 336T122 351T113 363T107 370T100 376T94 379T88 381T80 383Q74 383 44 385H16V431H23Q59 429 126 429Q219 429 229 431H237V385Q201 381 201 369Q201 367 211 353T239 315T268 274L272 270L297 304Q329 345 329 358Q329 364 327 369T322 376T317 380T310 384L307 385H302V431H309Q324 428 408 428Q487 428 493 431H499V385H492Q443 385 411 368Q394 360 377 341T312 257L296 236L358 151Q424 61 429 57T446 50Q464 46 499 46H516V0H510H502Q494 1 482 1T457 2T432 2T414 3Q403 3 377 3T327 1L304 0H295V46H298Q309 46 320 51T331 63Q331 65 291 120L250 175Q249 174 219 133T185 88Q181 83 181 74Q181 63 188 55T206 46Q208 46 208 23V0H201'], + + // LATIN SMALL LETTER Y + 0x79: [431,204,528,19,508,'69 -66Q91 -66 104 -80T118 -116Q118 -134 109 -145T91 -160Q84 -163 97 -166Q104 -168 111 -168Q131 -168 148 -159T175 -138T197 -106T213 -75T225 -43L242 0L170 183Q150 233 125 297Q101 358 96 368T80 381Q79 382 78 382Q66 385 34 385H19V431H26L46 430Q65 430 88 429T122 428Q129 428 142 428T171 429T200 430T224 430L233 431H241V385H232Q183 385 185 366L286 112Q286 113 332 227L376 341V350Q376 365 366 373T348 383T334 385H331V431H337H344Q351 431 361 431T382 430T405 429T422 429Q477 429 503 431H508V385H497Q441 380 422 345Q420 343 378 235T289 9T227 -131Q180 -204 113 -204Q69 -204 44 -177T19 -116Q19 -89 35 -78T69 -66'], + + // LATIN SMALL LETTER Z + 0x7A: [431,0,444,28,401,'42 263Q44 270 48 345T53 423V431H393Q399 425 399 415Q399 403 398 402L381 378Q364 355 331 309T265 220L134 41L182 40H206Q254 40 283 46T331 77Q352 105 359 185L361 201Q361 202 381 202H401V196Q401 195 393 103T384 6V0H209L34 1L31 3Q28 8 28 17Q28 30 29 31T160 210T294 394H236Q169 393 152 388Q127 382 113 367Q89 344 82 264V255H42V263'], + + // LEFT CURLY BRACKET + 0x7B: [750,250,500,65,434,'434 -231Q434 -244 428 -250H410Q281 -250 230 -184Q225 -177 222 -172T217 -161T213 -148T211 -133T210 -111T209 -84T209 -47T209 0Q209 21 209 53Q208 142 204 153Q203 154 203 155Q189 191 153 211T82 231Q71 231 68 234T65 250T68 266T82 269Q116 269 152 289T203 345Q208 356 208 377T209 529V579Q209 634 215 656T244 698Q270 724 324 740Q361 748 377 749Q379 749 390 749T408 750H428Q434 744 434 732Q434 719 431 716Q429 713 415 713Q362 710 332 689T296 647Q291 634 291 499V417Q291 370 288 353T271 314Q240 271 184 255L170 250L184 245Q202 239 220 230T262 196T290 137Q291 131 291 1Q291 -134 296 -147Q306 -174 339 -192T415 -213Q429 -213 431 -216Q434 -219 434 -231'], + + // VERTICAL LINE + 0x7C: [750,249,278,119,159,'139 -249H137Q125 -249 119 -235V251L120 737Q130 750 139 750Q152 750 159 735V-235Q151 -249 141 -249H139'], + + // RIGHT CURLY BRACKET + 0x7D: [750,250,500,65,434,'65 731Q65 745 68 747T88 750Q171 750 216 725T279 670Q288 649 289 635T291 501Q292 362 293 357Q306 312 345 291T417 269Q428 269 431 266T434 250T431 234T417 231Q380 231 345 210T298 157Q293 143 292 121T291 -28V-79Q291 -134 285 -156T256 -198Q202 -250 89 -250Q71 -250 68 -247T65 -230Q65 -224 65 -223T66 -218T69 -214T77 -213Q91 -213 108 -210T146 -200T183 -177T207 -139Q208 -134 209 3L210 139Q223 196 280 230Q315 247 330 250Q305 257 280 270Q225 304 212 352L210 362L209 498Q208 635 207 640Q195 680 154 696T77 713Q68 713 67 716T65 731'], + + // DIAERESIS + 0xA8: [669,-554,500,95,405,'95 612Q95 633 112 651T153 669T193 652T210 612Q210 588 194 571T152 554L127 560Q95 577 95 612ZM289 611Q289 634 304 649T335 668Q336 668 340 668T346 669Q369 669 386 652T404 612T387 572T346 554Q323 554 306 570T289 611'], + + // NOT SIGN + 0xAC: [356,-89,667,56,611,'56 323T56 336T70 356H596Q603 353 611 343V102Q598 89 591 89Q587 89 584 90T579 94T575 98T572 102L571 209V316H70Q56 323 56 336'], + + // MACRON + 0xAF: [590,-544,500,69,430,'69 544V590H430V544H69'], + + // DEGREE SIGN + 0xB0: [715,-542,500,147,352,'147 628Q147 669 179 692T244 715Q298 715 325 689T352 629Q352 592 323 567T249 542Q202 542 175 567T147 628ZM313 628Q313 660 300 669T259 678H253Q248 678 242 678T234 679Q217 679 207 674T192 659T188 644T187 629Q187 600 198 590Q210 579 250 579H265Q279 579 288 581T305 595T313 628'], + + // PLUS-MINUS SIGN + 0xB1: [666,0,778,56,722,'56 320T56 333T70 353H369V502Q369 651 371 655Q376 666 388 666Q402 666 405 654T409 596V500V353H707Q722 345 722 333Q722 320 707 313H409V40H707Q722 32 722 20T707 0H70Q56 7 56 20T70 40H369V313H70Q56 320 56 333'], + + // ACUTE ACCENT + 0xB4: [699,-505,500,203,393,'349 699Q367 699 380 686T393 656Q393 651 392 647T387 637T380 627T367 616T351 602T330 585T303 563L232 505L217 519Q203 533 204 533Q204 534 229 567T282 636T313 678L316 681Q318 684 321 686T328 692T337 697T349 699'], + + // MULTIPLICATION SIGN + 0xD7: [491,-9,778,147,630,'630 29Q630 9 609 9Q604 9 587 25T493 118L389 222L284 117Q178 13 175 11Q171 9 168 9Q160 9 154 15T147 29Q147 36 161 51T255 146L359 250L255 354Q174 435 161 449T147 471Q147 480 153 485T168 490Q173 490 175 489Q178 487 284 383L389 278L493 382Q570 459 587 475T609 491Q630 491 630 471Q630 464 620 453T522 355L418 250L522 145Q606 61 618 48T630 29'], + + // DIVISION SIGN + 0xF7: [537,36,778,56,721,'318 466Q318 500 339 518T386 537Q418 537 438 517T458 466Q458 438 440 417T388 396Q355 396 337 417T318 466ZM56 237T56 250T70 270H706Q721 262 721 250T706 230H70Q56 237 56 250ZM318 34Q318 68 339 86T386 105Q418 105 438 85T458 34Q458 6 440 -15T388 -36Q355 -36 337 -15T318 34'], + + // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C6: [694,-531,500,112,387,'112 560L249 694L257 686Q387 562 387 560L361 531Q359 532 303 581L250 627L195 580Q182 569 169 557T148 538L140 532Q138 530 125 546L112 560'], + + // CARON + 0x2C7: [644,-513,500,114,385,'114 611L127 630L136 644Q138 644 193 612Q248 581 250 581L306 612Q361 644 363 644L385 611L318 562L249 513L114 611'], + + // MODIFIER LETTER MACRON + 0x2C9: [590,-544,500,69,430,'69 544V590H430V544H69'], + + // MODIFIER LETTER ACUTE ACCENT + 0x2CA: [699,-505,500,203,393,'349 699Q367 699 380 686T393 656Q393 651 392 647T387 637T380 627T367 616T351 602T330 585T303 563L232 505L217 519Q203 533 204 533Q204 534 229 567T282 636T313 678L316 681Q318 684 321 686T328 692T337 697T349 699'], + + // MODIFIER LETTER GRAVE ACCENT + 0x2CB: [699,-505,500,106,296,'106 655Q106 671 119 685T150 699Q166 699 177 688Q190 671 222 629T275 561T295 533T282 519L267 505L196 563Q119 626 113 634Q106 643 106 655'], + + // BREVE + 0x2D8: [694,-515,500,92,407,'250 515Q179 515 138 565T92 683V694H129V689Q129 688 129 683T130 675Q137 631 169 599T248 567Q304 567 337 608T370 689V694H407V683Q403 617 361 566T250 515'], + + // DOT ABOVE + 0x2D9: [669,-549,500,190,309,'190 609Q190 637 208 653T252 669Q275 667 292 652T309 609Q309 579 292 564T250 549Q225 549 208 564T190 609'], + + // SMALL TILDE + 0x2DC: [668,-565,500,83,416,'179 601Q164 601 151 595T131 584T111 565L97 577L83 588Q83 589 95 603T121 633T142 654Q165 668 187 668T253 650T320 632Q335 632 348 638T368 649T388 668L402 656L416 645Q375 586 344 572Q330 565 313 565Q292 565 248 583T179 601'], + + // EN DASH + 0x2013: [285,-248,500,0,499,'0 248V285H499V248H0'], + + // EM DASH + 0x2014: [285,-248,1000,0,999,'0 248V285H999V248H0'], + + // LEFT SINGLE QUOTATION MARK + 0x2018: [694,-379,278,64,199,'64 494Q64 548 86 597T131 670T160 694Q163 694 172 685T182 672Q182 669 170 656T144 625T116 573T101 501Q101 489 102 489T107 491T120 497T138 500Q163 500 180 483T198 440T181 397T139 379Q110 379 87 405T64 494'], + + // RIGHT SINGLE QUOTATION MARK + 0x2019: [694,-379,278,78,212,'78 634Q78 659 95 676T138 694Q166 694 189 668T212 579Q212 525 190 476T146 403T118 379Q114 379 105 388T95 401Q95 404 107 417T133 448T161 500T176 572Q176 584 175 584T170 581T157 576T139 573Q114 573 96 590T78 634'], + + // LEFT DOUBLE QUOTATION MARK + 0x201C: [694,-379,500,128,466,'128 494Q128 528 137 560T158 616T185 658T209 685T223 694T236 685T245 670Q244 668 231 654T204 622T178 571T164 501Q164 489 165 489T170 491T183 497T201 500Q226 500 244 483T262 440T245 397T202 379Q173 379 151 405T128 494ZM332 494Q332 528 341 560T362 616T389 658T413 685T427 694T439 685T449 672Q449 669 437 656T411 625T383 573T368 501Q368 489 369 489T374 491T387 497T405 500Q430 500 448 483T466 440T449 397T406 379Q377 379 355 405T332 494'], + + // RIGHT DOUBLE QUOTATION MARK + 0x201D: [694,-379,500,34,372,'34 634Q34 659 50 676T93 694Q121 694 144 668T168 579Q168 525 146 476T101 403T73 379Q69 379 60 388T50 401Q50 404 62 417T88 448T116 500T131 572Q131 584 130 584T125 581T112 576T94 573Q69 573 52 590T34 634ZM238 634Q238 659 254 676T297 694Q325 694 348 668T372 579Q372 525 350 476T305 403T277 379Q273 379 264 388T254 401Q254 404 266 417T292 448T320 500T335 572Q335 584 334 584T329 581T316 576T298 573Q273 573 256 590T238 634'], + + // DAGGER + 0x2020: [705,216,444,54,389,'182 675Q195 705 222 705Q234 705 243 700T253 691T263 675L262 655Q262 620 252 549T240 454V449Q250 451 288 461T346 472T377 461T389 431Q389 417 379 404T346 390Q327 390 288 401T243 412H240V405Q245 367 250 339T258 301T261 274T263 225Q263 124 255 -41T239 -213Q236 -216 222 -216H217Q206 -216 204 -212T200 -186Q199 -175 199 -168Q181 38 181 225Q181 265 182 280T191 327T204 405V412H201Q196 412 157 401T98 390Q76 390 66 403T55 431T65 458T98 472Q116 472 155 462T205 449Q204 452 204 460T201 490T193 547Q182 619 182 655V675'], + + // DOUBLE DAGGER + 0x2021: [705,205,444,54,389,'181 658Q181 705 222 705T263 658Q263 633 252 572T240 497Q240 496 241 496Q243 496 285 507T345 519Q365 519 376 508T388 478Q388 466 384 458T375 447T361 438H344Q318 438 282 448T241 459Q240 458 240 456Q240 449 251 384T263 297Q263 278 255 267T238 253T222 250T206 252T190 266T181 297Q181 323 192 383T204 458Q204 459 203 459Q198 459 162 449T101 438H84Q74 443 70 446T61 457T56 478Q56 497 67 508T99 519Q117 519 159 508T203 496Q204 496 204 499Q204 507 193 572T181 658ZM181 202Q181 249 222 249T263 202Q263 185 259 161T249 103T240 48V41H243Q248 41 287 52T346 63T377 52T389 22Q389 8 379 -5T346 -19Q327 -19 288 -8T243 3H240V-4Q243 -24 249 -58T259 -117T263 -158Q263 -177 255 -188T238 -202T222 -205T206 -203T190 -189T181 -158Q181 -141 185 -117T195 -59T204 -4V3H201Q196 3 157 -8T98 -19Q76 -19 66 -6T55 22T65 49T98 63Q117 63 156 52T201 41H204V48Q201 68 195 102T185 161T181 202'], + + // HORIZONTAL ELLIPSIS + 0x2026: [120,0,1172,78,1093,'78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60ZM525 60Q525 84 542 102T585 120Q609 120 627 104T646 61Q646 36 629 18T586 0T543 17T525 60ZM972 60Q972 84 989 102T1032 120Q1056 120 1074 104T1093 61Q1093 36 1076 18T1033 0T990 17T972 60'], + + // PRIME + 0x2032: [560,-43,275,30,262,'79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43'], + + // COMBINING RIGHT ARROW ABOVE + 0x20D7: [714,-516,0,-471,-29,'-123 694Q-123 702 -118 708T-103 714Q-93 714 -88 706T-80 687T-67 660T-40 633Q-29 626 -29 615Q-29 606 -36 600T-53 590T-83 571T-121 531Q-135 516 -143 516T-157 522T-163 536T-152 559T-129 584T-116 595H-287L-458 596Q-459 597 -461 599T-466 602T-469 607T-471 615Q-471 622 -458 635H-99Q-123 673 -123 694'], + + // LEFTWARDS ARROW + 0x2190: [511,11,1000,55,944,'944 261T944 250T929 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H929Q944 261 944 250'], + + // UPWARDS ARROW + 0x2191: [694,193,500,17,483,'27 414Q17 414 17 433Q17 437 17 439T17 444T19 447T20 450T22 452T26 453T30 454T36 456Q80 467 120 494T180 549Q227 607 238 678Q240 694 251 694Q259 694 261 684Q261 677 265 659T284 608T320 549Q340 525 363 507T405 479T440 463T467 455T479 451Q483 447 483 433Q483 413 472 413Q467 413 458 416Q342 448 277 545L270 555V-179Q262 -193 252 -193H250H248Q236 -193 230 -179V555L223 545Q192 499 146 467T70 424T27 414'], + + // RIGHTWARDS ARROW + 0x2192: [511,11,1000,56,944,'56 237T56 250T70 270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H70Q56 237 56 250'], + + // DOWNWARDS ARROW + 0x2193: [694,194,500,17,483,'473 86Q483 86 483 67Q483 63 483 61T483 56T481 53T480 50T478 48T474 47T470 46T464 44Q428 35 391 14T316 -55T264 -168Q264 -170 263 -173T262 -180T261 -184Q259 -194 251 -194Q242 -194 238 -176T221 -121T180 -49Q169 -34 155 -21T125 2T95 20T67 33T44 42T27 47L21 49Q17 53 17 67Q17 87 28 87Q33 87 42 84Q158 52 223 -45L230 -55V312Q230 391 230 482T229 591Q229 662 231 676T243 693Q244 694 251 694Q264 692 270 679V-55L277 -45Q307 1 353 33T430 76T473 86'], + + // LEFT RIGHT ARROW + 0x2194: [511,11,1000,55,944,'263 479Q267 501 271 506T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H835Q729 349 696 475Q691 493 691 500Q691 511 711 511Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q144 292 194 349T263 479'], + + // UP DOWN ARROW + 0x2195: [772,272,500,17,483,'27 492Q17 492 17 511Q17 515 17 517T17 522T19 525T20 528T22 530T26 531T30 532T36 534Q80 545 120 572T180 627Q210 664 223 701T238 755T250 772T261 762Q261 757 264 741T282 691T319 628Q352 589 390 566T454 536L479 529Q483 525 483 511Q483 491 472 491Q467 491 458 494Q342 526 277 623L270 633V-133L277 -123Q307 -77 353 -45T430 -2T473 8Q483 8 483 -11Q483 -15 483 -17T483 -22T481 -25T480 -28T478 -30T474 -31T470 -32T464 -34Q407 -49 364 -84T300 -157T270 -223T261 -262Q259 -272 250 -272Q242 -272 239 -255T223 -201T180 -127Q169 -112 155 -99T125 -76T95 -58T67 -45T44 -36T27 -31L21 -29Q17 -25 17 -11Q17 9 28 9Q33 9 42 6Q158 -26 223 -123L230 -133V633L223 623Q192 577 146 545T70 502T27 492'], + + // NORTH WEST ARROW + 0x2196: [720,195,1000,29,944,'204 662Q257 662 301 676T369 705T394 720Q398 720 407 711T417 697Q417 688 389 671T310 639T212 623Q176 623 153 628Q151 628 221 557T546 232Q942 -164 943 -168Q944 -170 944 -174Q944 -182 938 -188T924 -195Q922 -195 916 -193Q912 -191 517 204Q440 281 326 394T166 553L121 598Q126 589 126 541Q126 438 70 349Q59 332 52 332Q48 332 39 341T29 355Q29 358 38 372T57 407T77 464T86 545Q86 583 78 614T63 663T55 683Q55 693 65 693Q73 693 82 688Q136 662 204 662'], + + // NORTH EAST ARROW + 0x2197: [720,195,1000,55,971,'582 697Q582 701 591 710T605 720Q607 720 630 706T697 677T795 662Q830 662 863 670T914 686T934 694Q942 694 944 685Q944 680 936 663T921 615T913 545Q913 490 927 446T956 379T970 355Q970 351 961 342T947 332Q940 332 929 349Q874 436 874 541Q874 590 878 598L832 553Q787 508 673 395T482 204Q87 -191 83 -193Q77 -195 75 -195Q67 -195 61 -189T55 -174Q55 -170 56 -168Q58 -164 453 232Q707 487 777 557T847 628Q824 623 787 623Q689 623 599 679Q582 690 582 697'], + + // SOUTH EAST ARROW + 0x2198: [695,220,1000,55,970,'55 675Q55 683 60 689T75 695Q77 695 83 693Q87 691 482 296Q532 246 605 174T717 62T799 -20T859 -80T878 -97Q874 -93 874 -41Q874 64 929 151Q940 168 947 168Q951 168 960 159T970 145Q970 143 956 121T928 54T913 -45Q913 -83 920 -114T936 -163T944 -185Q942 -194 934 -194Q932 -194 914 -186T864 -170T795 -162Q743 -162 698 -176T630 -205T605 -220Q601 -220 592 -211T582 -197Q582 -187 611 -170T691 -138T787 -123Q824 -123 847 -128Q848 -128 778 -57T453 268Q58 664 56 668Q55 670 55 675'], + + // SOUTH WEST ARROW + 0x2199: [695,220,1000,29,944,'126 -41Q126 -92 121 -97Q121 -98 139 -80T200 -20T281 61T394 173T517 296Q909 690 916 693Q922 695 924 695Q932 695 938 689T944 674Q944 670 943 668Q942 664 546 268Q292 13 222 -57T153 -128Q176 -123 212 -123Q310 -123 400 -179Q417 -190 417 -197Q417 -201 408 -210T394 -220Q392 -220 369 -206T302 -177T204 -162Q131 -162 67 -194Q63 -195 59 -192T55 -183Q55 -180 62 -163T78 -115T86 -45Q86 10 72 54T44 120T29 145Q29 149 38 158T52 168Q59 168 70 151Q126 62 126 -41'], + + // RIGHTWARDS ARROW FROM BAR + 0x21A6: [511,11,1000,54,944,'95 155V109Q95 83 92 73T75 63Q61 63 58 74T54 130Q54 140 54 180T55 250Q55 421 57 425Q61 437 75 437Q88 437 91 428T95 393V345V270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H95V155'], + + // LEFTWARDS ARROW WITH HOOK + 0x21A9: [511,11,1126,55,1070,'903 424T903 444T929 464Q976 464 1023 434T1070 347Q1070 316 1055 292T1016 256T971 237T929 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H926Q929 270 941 271T960 275T978 280T998 290T1015 307Q1030 325 1030 347Q1030 355 1027 364T1014 387T983 411T929 424H928Q903 424 903 444'], + + // RIGHTWARDS ARROW WITH HOOK + 0x21AA: [511,11,1126,55,1070,'55 347Q55 380 72 404T113 441T159 458T197 464Q222 464 222 444Q222 429 204 426T157 417T110 387Q95 369 95 347Q95 339 98 330T111 307T142 283T196 270H961Q845 357 818 493Q818 494 818 496T817 499Q817 511 834 511H837Q846 511 849 510T855 506T858 497T861 481T869 456Q891 389 942 336T1061 261Q1070 258 1070 250Q1070 244 1065 241T1041 231T1003 212Q962 186 932 152T887 85T866 35T858 4Q856 -6 853 -8T837 -11Q817 -11 817 0Q817 7 822 25Q854 151 961 230H196Q149 230 102 260T55 347'], + + // LEFTWARDS HARPOON WITH BARB UPWARDS + 0x21BC: [511,-230,1000,55,944,'62 230Q56 236 55 244Q55 252 57 255T69 265Q114 292 151 326T208 391T243 448T265 491T273 509Q276 511 288 511Q304 511 306 505Q309 501 303 484Q293 456 279 430T251 383T223 344T196 313T173 291T156 276L148 270H929Q944 261 944 250T929 230H62'], + + // LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x21BD: [270,11,1000,55,944,'55 256Q56 264 62 270H929Q944 261 944 250T929 230H148Q149 229 165 215T196 185T231 145T270 87T303 16Q309 -1 306 -5Q304 -11 288 -11Q279 -11 276 -10T269 -4T264 10T253 36T231 75Q172 173 69 235Q59 242 57 245T55 256'], + + // RIGHTWARDS HARPOON WITH BARB UPWARDS + 0x21C0: [511,-230,1000,56,945,'691 500Q691 511 711 511Q720 511 723 510T730 504T735 490T746 464T768 425Q796 378 835 339T897 285T933 263Q941 258 942 256T944 245T937 230H70Q56 237 56 250T70 270H852Q802 308 762 364T707 455T691 500'], + + // RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x21C1: [270,11,1000,56,944,'56 237T56 250T70 270H937Q944 263 944 256Q944 251 944 250T943 246T940 242T933 238Q794 153 734 7Q729 -7 726 -9T711 -11Q695 -11 693 -5Q690 -1 696 16Q721 84 763 139T852 230H70Q56 237 56 250'], + + // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21CC: [671,11,1000,55,945,'691 660Q691 671 711 671Q720 671 723 670T730 664T735 650T746 624T768 585Q797 538 836 499T897 445T933 423Q941 418 942 416T944 405T937 390H70Q56 397 56 410T70 430H852Q802 468 762 524T707 615T691 660ZM55 256Q56 264 62 270H929Q944 261 944 250T929 230H148Q149 229 165 215T196 185T231 145T270 87T303 16Q309 -1 306 -5Q304 -11 288 -11Q279 -11 276 -10T269 -4T264 10T253 36T231 75Q172 173 69 235Q59 242 57 245T55 256'], + + // LEFTWARDS DOUBLE ARROW + 0x21D0: [525,24,1000,56,945,'944 153Q944 140 929 133H318L328 123Q379 69 414 0Q419 -13 419 -17Q419 -24 399 -24Q388 -24 385 -23T377 -12Q332 77 253 144T72 237Q62 240 59 242T56 250T59 257T70 262T89 268T119 278T160 296Q303 366 377 512Q382 522 385 523T401 525Q419 524 419 515Q419 510 414 500Q379 431 328 377L318 367H929Q944 359 944 347Q944 336 930 328L602 327H274L264 319Q225 289 147 250Q148 249 165 241T210 217T264 181L274 173H930Q931 172 933 171T936 169T938 167T941 164T942 162T943 158T944 153'], + + // UPWARDS DOUBLE ARROW + 0x21D1: [694,194,611,31,579,'228 -179Q227 -180 226 -182T223 -186T221 -189T218 -192T214 -193T208 -194Q196 -194 189 -181L188 125V430L176 419Q122 369 59 338Q46 330 40 330Q38 330 31 337V350Q31 362 33 365T46 374Q60 381 77 390T128 426T190 484T247 567T292 677Q295 688 298 692Q302 694 305 694Q313 694 318 677Q334 619 363 568T420 485T481 427T532 391T564 374Q575 368 577 365T579 350V337Q572 330 570 330Q564 330 551 338Q487 370 435 419L423 430L422 125V-181Q409 -194 401 -194Q397 -194 394 -193T388 -189T385 -184T382 -180V-177V475L373 487Q331 541 305 602Q304 601 300 591T290 571T278 548T260 519T238 488L229 476L228 148V-179'], + + // RIGHTWARDS DOUBLE ARROW + 0x21D2: [525,24,1000,56,944,'580 514Q580 525 596 525Q601 525 604 525T609 525T613 524T615 523T617 520T619 517T622 512Q659 438 720 381T831 300T927 263Q944 258 944 250T935 239T898 228T840 204Q696 134 622 -12Q618 -21 615 -22T600 -24Q580 -24 580 -17Q580 -13 585 0Q620 69 671 123L681 133H70Q56 140 56 153Q56 168 72 173H725L735 181Q774 211 852 250Q851 251 834 259T789 283T735 319L725 327H72Q56 332 56 347Q56 360 70 367H681L671 377Q638 412 609 458T580 514'], + + // DOWNWARDS DOUBLE ARROW + 0x21D3: [694,194,611,31,579,'401 694Q412 694 422 681V375L423 70L435 81Q487 130 551 162Q564 170 570 170Q572 170 579 163V150Q579 138 577 135T564 126Q541 114 518 99T453 48T374 -46T318 -177Q313 -194 305 -194T293 -178T272 -119T225 -31Q158 70 46 126Q35 132 33 135T31 150V163Q38 170 40 170Q46 170 59 162Q122 131 176 81L188 70V375L189 681Q199 694 208 694Q219 694 228 680V352L229 25L238 12Q279 -42 305 -102Q344 -23 373 13L382 25V678Q387 692 401 694'], + + // LEFT RIGHT DOUBLE ARROW + 0x21D4: [526,25,1000,33,966,'308 524Q318 526 323 526Q340 526 340 514Q340 507 336 499Q326 476 314 454T292 417T274 391T260 374L255 368Q255 367 500 367Q744 367 744 368L739 374Q734 379 726 390T707 416T685 453T663 499Q658 511 658 515Q658 525 680 525Q687 524 690 523T695 519T701 507Q766 359 902 287Q921 276 939 269T961 259T966 250Q966 246 965 244T960 240T949 236T930 228T902 213Q763 137 701 -7Q697 -16 695 -19T690 -23T680 -25Q658 -25 658 -15Q658 -11 663 1Q673 24 685 46T707 83T725 109T739 126L744 132Q744 133 500 133Q255 133 255 132L260 126Q265 121 273 110T292 84T314 47T336 1Q341 -11 341 -15Q341 -25 319 -25Q312 -24 309 -23T304 -19T298 -7Q233 141 97 213Q83 221 70 227T51 235T41 239T35 243T34 250T35 256T40 261T51 265T70 273T97 287Q235 363 299 509Q305 522 308 524ZM792 319L783 327H216Q183 294 120 256L110 250L120 244Q173 212 207 181L216 173H783L792 181Q826 212 879 244L889 250L879 256Q826 288 792 319'], + + // UP DOWN DOUBLE ARROW + 0x21D5: [772,272,611,31,579,'290 755Q298 772 305 772T318 757T343 706T393 633Q431 588 473 558T545 515T579 497V484Q579 464 570 464Q564 464 550 470Q485 497 423 550L422 400V100L423 -50Q485 3 550 30Q565 36 570 36Q579 36 579 16V3Q575 -1 549 -12T480 -53T393 -132Q361 -172 342 -208T318 -258T305 -272T293 -258T268 -208T217 -132Q170 -80 128 -51T61 -12T31 3V16Q31 36 40 36Q46 36 61 30Q86 19 109 6T146 -18T173 -38T188 -50V550Q186 549 173 539T147 519T110 495T61 470Q46 464 40 464Q31 464 31 484V497Q34 500 63 513T135 557T217 633Q267 692 290 755ZM374 598Q363 610 351 625T332 651T316 676T305 695L294 676Q282 657 267 636T236 598L228 589V-89L236 -98Q247 -110 259 -125T278 -151T294 -176T305 -195L316 -176Q328 -157 343 -136T374 -98L382 -89V589L374 598'], + + // FOR ALL + 0x2200: [694,22,556,0,556,'0 673Q0 684 7 689T20 694Q32 694 38 680T82 567L126 451H430L473 566Q483 593 494 622T512 668T519 685Q524 694 538 694Q556 692 556 674Q556 670 426 329T293 -15Q288 -22 278 -22T263 -15Q260 -11 131 328T0 673ZM414 410Q414 411 278 411T142 410L278 55L414 410'], + + // PARTIAL DIFFERENTIAL + 0x2202: [715,22,531,42,567,'202 508Q179 508 169 520T158 547Q158 557 164 577T185 624T230 675T301 710L333 715H345Q378 715 384 714Q447 703 489 661T549 568T566 457Q566 362 519 240T402 53Q321 -22 223 -22Q123 -22 73 56Q42 102 42 148V159Q42 276 129 370T322 465Q383 465 414 434T455 367L458 378Q478 461 478 515Q478 603 437 639T344 676Q266 676 223 612Q264 606 264 572Q264 547 246 528T202 508ZM430 306Q430 372 401 400T333 428Q270 428 222 382Q197 354 183 323T150 221Q132 149 132 116Q132 21 232 21Q244 21 250 22Q327 35 374 112Q389 137 409 196T430 306'], + + // THERE EXISTS + 0x2203: [694,0,556,56,500,'56 661T56 674T70 694H487Q497 686 500 679V15Q497 10 487 1L279 0H70Q56 7 56 20T70 40H460V327H84Q70 334 70 347T84 367H460V654H70Q56 661 56 674'], + + // EMPTY SET + 0x2205: [772,78,500,39,460,'331 696Q335 708 339 722T345 744T350 759T357 769T367 772Q374 772 381 767T388 754Q388 746 377 712L366 673L378 661Q460 575 460 344Q460 281 456 234T432 126T373 27Q319 -22 250 -22Q214 -22 180 -7Q168 -3 168 -4L159 -33Q148 -71 142 -75Q138 -78 132 -78Q124 -78 118 -72T111 -60Q111 -52 122 -18L133 21L125 29Q39 111 39 344Q39 596 137 675Q187 716 251 716Q265 716 278 714T296 710T315 703T331 696ZM276 676Q264 679 246 679Q196 679 159 631Q134 597 128 536T121 356Q121 234 127 174T151 80L234 366Q253 430 275 506T308 618L318 654Q318 656 294 669L276 676ZM181 42Q207 16 250 16Q291 16 324 47Q354 78 366 136T378 356Q378 470 372 528T349 616L348 613Q348 611 264 326L181 42'], + + // NABLA + 0x2207: [683,33,833,46,786,'46 676Q46 679 51 683H781Q786 679 786 676Q786 674 617 326T444 -26Q439 -33 416 -33T388 -26Q385 -22 216 326T46 676ZM697 596Q697 597 445 597T193 596Q195 591 319 336T445 80L697 596'], + + // ELEMENT OF + 0x2208: [541,41,667,84,583,'84 250Q84 372 166 450T360 539Q361 539 377 539T419 540T469 540H568Q583 532 583 520Q583 511 570 501L466 500Q355 499 329 494Q280 482 242 458T183 409T147 354T129 306T124 272V270H568Q583 262 583 250T568 230H124V228Q124 207 134 177T167 112T231 48T328 7Q355 1 466 0H570Q583 -10 583 -20Q583 -32 568 -40H471Q464 -40 446 -40T417 -41Q262 -41 172 45Q84 127 84 250'], + + // stix-negated (vert) set membership, variant + 0x2209: [716,215,667,84,584,'196 25Q84 109 84 250Q84 372 166 450T360 539Q361 539 375 539T413 540T460 540L547 707Q550 716 563 716Q570 716 575 712T581 703T583 696T505 540H568Q583 532 583 520Q583 511 570 501L484 500L366 270H568Q583 262 583 250T568 230H346L247 38Q284 16 328 7Q355 1 466 0H570Q583 -10 583 -20Q583 -32 568 -40H471Q464 -40 447 -40T419 -41Q304 -41 228 3Q117 -211 115 -212Q111 -215 104 -215T92 -212T86 -204T84 -197Q84 -190 89 -183L196 25ZM214 61L301 230H124V228Q124 196 147 147T214 61ZM321 270L440 500Q353 499 329 494Q280 482 242 458T183 409T147 354T129 306T124 272V270H321'], + + // CONTAINS AS MEMBER + 0x220B: [541,40,667,83,582,'83 520Q83 532 98 540H195Q202 540 220 540T249 541Q404 541 494 455Q582 374 582 250Q582 165 539 99T434 0T304 -39Q297 -40 195 -40H98Q83 -32 83 -20Q83 -10 96 0H200Q311 1 337 6Q369 14 401 28Q422 39 445 55Q484 85 508 127T537 191T542 228V230H98Q84 237 84 250T98 270H542V272Q542 280 539 295T527 336T497 391T445 445Q422 461 401 472Q386 479 374 483T347 491T325 495T298 498T273 499T239 500T200 500L96 501Q83 511 83 520'], + + // MINUS SIGN + 0x2212: [270,-230,778,84,694,'84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250'], + + // MINUS-OR-PLUS SIGN + 0x2213: [500,166,778,56,722,'56 467T56 480T70 500H707Q722 492 722 480T707 460H409V187H707Q722 179 722 167Q722 154 707 147H409V0V-93Q409 -144 406 -155T389 -166Q376 -166 372 -155T368 -105Q368 -96 368 -62T369 -2V147H70Q56 154 56 167T70 187H369V460H70Q56 467 56 480'], + + // DIVISION SLASH + 0x2215: [750,250,500,56,444,'423 750Q432 750 438 744T444 730Q444 725 271 248T92 -240Q85 -250 75 -250Q68 -250 62 -245T56 -231Q56 -221 230 257T407 740Q411 750 423 750'], + + // SET MINUS + 0x2216: [750,250,500,56,444,'56 731Q56 740 62 745T75 750Q85 750 92 740Q96 733 270 255T444 -231Q444 -239 438 -244T424 -250Q414 -250 407 -240Q404 -236 230 242T56 731'], + + // ASTERISK OPERATOR + 0x2217: [465,-35,500,64,435,'229 286Q216 420 216 436Q216 454 240 464Q241 464 245 464T251 465Q263 464 273 456T283 436Q283 419 277 356T270 286L328 328Q384 369 389 372T399 375Q412 375 423 365T435 338Q435 325 425 315Q420 312 357 282T289 250L355 219L425 184Q434 175 434 161Q434 146 425 136T401 125Q393 125 383 131T328 171L270 213Q283 79 283 63Q283 53 276 44T250 35Q231 35 224 44T216 63Q216 80 222 143T229 213L171 171Q115 130 110 127Q106 124 100 124Q87 124 76 134T64 161Q64 166 64 169T67 175T72 181T81 188T94 195T113 204T138 215T170 230T210 250L74 315Q65 324 65 338Q65 353 74 363T98 374Q106 374 116 368T171 328L229 286'], + + // RING OPERATOR + 0x2218: [444,-55,500,55,444,'55 251Q55 328 112 386T249 444T386 388T444 249Q444 171 388 113T250 55Q170 55 113 112T55 251ZM245 403Q188 403 142 361T96 250Q96 183 141 140T250 96Q284 96 313 109T354 135T375 160Q403 197 403 250Q403 313 360 358T245 403'], + + // BULLET OPERATOR + 0x2219: [444,-55,500,55,444,'55 251Q55 328 112 386T249 444T386 388T444 249Q444 171 388 113T250 55Q170 55 113 112T55 251'], + + // SQUARE ROOT + 0x221A: [800,200,833,71,853,'95 178Q89 178 81 186T72 200T103 230T169 280T207 309Q209 311 212 311H213Q219 311 227 294T281 177Q300 134 312 108L397 -77Q398 -77 501 136T707 565T814 786Q820 800 834 800Q841 800 846 794T853 782V776L620 293L385 -193Q381 -200 366 -200Q357 -200 354 -197Q352 -195 256 15L160 225L144 214Q129 202 113 190T95 178'], + + // PROPORTIONAL TO + 0x221D: [442,11,778,56,722,'56 124T56 216T107 375T238 442Q260 442 280 438T319 425T352 407T382 385T406 361T427 336T442 315T455 297T462 285L469 297Q555 442 679 442Q687 442 722 437V398H718Q710 400 694 400Q657 400 623 383T567 343T527 294T503 253T495 235Q495 231 520 192T554 143Q625 44 696 44Q717 44 719 46H722V-5Q695 -11 678 -11Q552 -11 457 141Q455 145 454 146L447 134Q362 -11 235 -11Q157 -11 107 56ZM93 213Q93 143 126 87T220 31Q258 31 292 48T349 88T389 137T413 178T421 196Q421 200 396 239T362 288Q322 345 288 366T213 387Q163 387 128 337T93 213'], + + // INFINITY + 0x221E: [442,11,1000,55,944,'55 217Q55 305 111 373T254 442Q342 442 419 381Q457 350 493 303L507 284L514 294Q618 442 747 442Q833 442 888 374T944 214Q944 128 889 59T743 -11Q657 -11 580 50Q542 81 506 128L492 147L485 137Q381 -11 252 -11Q166 -11 111 57T55 217ZM907 217Q907 285 869 341T761 397Q740 397 720 392T682 378T648 359T619 335T594 310T574 285T559 263T548 246L543 238L574 198Q605 158 622 138T664 94T714 61T765 51Q827 51 867 100T907 217ZM92 214Q92 145 131 89T239 33Q357 33 456 193L425 233Q364 312 334 337Q285 380 233 380Q171 380 132 331T92 214'], + + // ANGLE + 0x2220: [694,0,722,55,666,'71 0L68 2Q65 3 63 5T58 11T55 20Q55 22 57 28Q67 43 346 361Q397 420 474 508Q595 648 616 671T647 694T661 688T666 674Q666 668 663 663Q662 662 627 622T524 503T390 350L120 41L386 40H653Q666 30 666 20Q666 8 651 0H71'], + + // DIVIDES + 0x2223: [750,249,278,119,159,'139 -249H137Q125 -249 119 -235V251L120 737Q130 750 139 750Q152 750 159 735V-235Q151 -249 141 -249H139'], + + // PARALLEL TO + 0x2225: [750,250,500,132,368,'133 736Q138 750 153 750Q164 750 170 739Q172 735 172 250T170 -239Q164 -250 152 -250Q144 -250 138 -244L137 -243Q133 -241 133 -179T132 250Q132 731 133 736ZM329 739Q334 750 346 750Q353 750 361 744L362 743Q366 741 366 679T367 250T367 -178T362 -243L361 -244Q355 -250 347 -250Q335 -250 329 -239Q327 -235 327 250T329 739'], + + // LOGICAL AND + 0x2227: [598,22,667,55,611,'318 591Q325 598 333 598Q344 598 348 591Q349 590 414 445T545 151T611 -4Q609 -22 591 -22Q588 -22 586 -21T581 -20T577 -17T575 -13T572 -9T570 -4L333 528L96 -4Q87 -20 80 -21Q78 -22 75 -22Q57 -22 55 -4Q55 2 120 150T251 444T318 591'], + + // LOGICAL OR + 0x2228: [598,22,667,55,611,'55 580Q56 587 61 592T75 598Q86 598 96 580L333 48L570 580Q579 596 586 597Q588 598 591 598Q609 598 611 580Q611 574 546 426T415 132T348 -15Q343 -22 333 -22T318 -15Q317 -14 252 131T121 425T55 580'], + + // stix-intersection, serifs + 0x2229: [598,22,667,55,611,'88 -21T75 -21T55 -7V200Q55 231 55 280Q56 414 60 428Q61 430 61 431Q77 500 152 549T332 598Q443 598 522 544T610 405Q611 399 611 194V-7Q604 -22 591 -22Q582 -22 572 -9L570 405Q563 433 556 449T529 485Q498 519 445 538T334 558Q251 558 179 518T96 401Q95 396 95 193V-7Q88 -21 75 -21'], + + // stix-union, serifs + 0x222A: [598,22,667,55,611,'591 598H592Q604 598 611 583V376Q611 345 611 296Q610 162 606 148Q605 146 605 145Q586 68 507 23T333 -22Q268 -22 209 -1T106 66T56 173Q55 180 55 384L56 585Q66 598 75 598Q85 598 95 585V378L96 172L98 162Q112 95 181 57T332 18Q415 18 487 58T570 175Q571 180 571 383V583Q579 598 591 598'], + + // INTEGRAL + 0x222B: [716,216,417,55,472,'151 -112Q151 -150 106 -161Q106 -165 114 -172T134 -179Q155 -179 170 -146Q181 -120 188 -64T206 101T232 310Q256 472 277 567Q308 716 392 716Q434 716 453 681T472 613Q472 590 458 577T424 564Q404 564 390 578T376 612Q376 650 421 661Q421 663 418 667T407 675T393 679Q387 679 380 675Q360 665 350 619T326 438Q302 190 253 -57Q235 -147 201 -186Q174 -213 138 -216Q93 -216 74 -181T55 -113Q55 -91 69 -78T103 -64Q123 -64 137 -78T151 -112'], + + // TILDE OPERATOR + 0x223C: [367,-133,778,55,722,'55 166Q55 241 101 304T222 367Q260 367 296 349T362 304T421 252T484 208T554 189Q616 189 655 236T694 338Q694 350 698 358T708 367Q722 367 722 334Q722 260 677 197T562 134H554Q517 134 481 152T414 196T355 248T292 293T223 311Q179 311 145 286Q109 257 96 218T80 156T69 133Q55 133 55 166'], + + // WREATH PRODUCT + 0x2240: [583,83,278,55,222,'55 569Q55 583 83 583Q122 583 151 565T194 519T215 464T222 411Q222 360 194 304T139 193T111 89Q111 38 134 -7T195 -55Q222 -57 222 -69Q222 -83 189 -83Q130 -83 93 -33T55 90Q55 130 72 174T110 252T148 328T166 411Q166 462 144 507T83 555Q55 556 55 569'], + + // ASYMPTOTICALLY EQUAL TO + 0x2243: [464,-36,778,55,722,'55 283Q55 356 103 409T217 463Q262 463 297 447T395 382Q431 355 446 344T493 320T554 307H558Q613 307 652 344T694 433Q694 464 708 464T722 432Q722 356 673 304T564 251H554Q510 251 465 275T387 329T310 382T223 407H219Q164 407 122 367Q91 333 85 295T76 253T69 250Q55 250 55 283ZM56 56Q56 71 72 76H706Q722 70 722 56Q722 44 707 36H70Q56 43 56 56'], + + // APPROXIMATELY EQUAL TO + 0x2245: [589,-22,1000,55,722,'55 388Q55 463 101 526T222 589Q260 589 296 571T362 526T421 474T484 430T554 411Q616 411 655 458T694 560Q694 572 698 580T708 589Q722 589 722 556Q722 482 677 419T562 356H554Q517 356 481 374T414 418T355 471T292 515T223 533Q179 533 145 508Q109 479 96 440T80 378T69 355Q55 355 55 388ZM56 236Q56 249 70 256H707Q722 248 722 236Q722 225 708 217L390 216H72Q56 221 56 236ZM56 42Q56 57 72 62H708Q722 52 722 42Q722 30 707 22H70Q56 29 56 42'], + + // ALMOST EQUAL TO + 0x2248: [483,-55,778,55,722,'55 319Q55 360 72 393T114 444T163 472T205 482Q207 482 213 482T223 483Q262 483 296 468T393 413L443 381Q502 346 553 346Q609 346 649 375T694 454Q694 465 698 474T708 483Q722 483 722 452Q722 386 675 338T555 289Q514 289 468 310T388 357T308 404T224 426Q164 426 125 393T83 318Q81 289 69 289Q55 289 55 319ZM55 85Q55 126 72 159T114 210T163 238T205 248Q207 248 213 248T223 249Q262 249 296 234T393 179L443 147Q502 112 553 112Q609 112 649 141T694 220Q694 249 708 249T722 217Q722 153 675 104T555 55Q514 55 468 76T388 123T308 170T224 192Q164 192 125 159T83 84Q80 55 69 55Q55 55 55 85'], + + // EQUIVALENT TO + 0x224D: [484,-16,778,55,722,'55 464Q55 471 60 477T74 484Q80 484 108 464T172 420T268 376T389 356Q436 356 483 368T566 399T630 436T675 467T695 482Q701 484 703 484Q711 484 716 478T722 464Q722 454 707 442Q550 316 389 316Q338 316 286 329T195 362T124 402T76 437T57 456Q55 462 55 464ZM57 45Q66 58 109 88T230 151T381 183Q438 183 494 168T587 135T658 94T703 61T720 45Q722 39 722 36Q722 28 717 22T703 16Q697 16 669 36T606 80T510 124T389 144Q341 144 294 132T211 101T147 64T102 33T82 18Q76 16 74 16Q66 16 61 22T55 36Q55 39 57 45'], + + // APPROACHES THE LIMIT + 0x2250: [670,-133,778,56,722,'56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153ZM329 610Q329 634 346 652T389 670Q413 670 431 654T450 611Q450 586 433 568T390 550T347 567T329 610'], + + // stix-not (vert) equals + 0x2260: [716,215,778,56,722,'166 -215T159 -215T147 -212T141 -204T139 -197Q139 -190 144 -183L306 133H70Q56 140 56 153Q56 168 72 173H327L406 327H72Q56 332 56 347Q56 360 70 367H426Q597 702 602 707Q605 716 618 716Q625 716 630 712T636 703T638 696Q638 692 471 367H707Q722 359 722 347Q722 336 708 328L451 327L371 173H708Q722 163 722 153Q722 140 707 133H351Q175 -210 170 -212Q166 -215 159 -215'], + + // IDENTICAL TO + 0x2261: [464,-36,778,56,722,'56 444Q56 457 70 464H707Q722 456 722 444Q722 430 706 424H72Q56 429 56 444ZM56 237T56 250T70 270H707Q722 262 722 250T707 230H70Q56 237 56 250ZM56 56Q56 71 72 76H706Q722 70 722 56Q722 44 707 36H70Q56 43 56 56'], + + // LESS-THAN OR EQUAL TO + 0x2264: [636,138,778,83,694,'674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118'], + + // GREATER-THAN OR EQUAL TO + 0x2265: [636,138,778,82,694,'83 616Q83 624 89 630T99 636Q107 636 253 568T543 431T687 361Q694 356 694 346T687 331Q685 329 395 192L107 56H101Q83 58 83 76Q83 77 83 79Q82 86 98 95Q117 105 248 167Q326 204 378 228L626 346L360 472Q291 505 200 548Q112 589 98 597T83 616ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118'], + + // MUCH LESS-THAN + 0x226A: [568,67,1000,56,944,'639 -48Q639 -54 634 -60T619 -67H618Q612 -67 536 -26Q430 33 329 88Q61 235 59 239Q56 243 56 250T59 261Q62 266 336 415T615 567L619 568Q622 567 625 567Q639 562 639 548Q639 540 633 534Q632 532 374 391L117 250L374 109Q632 -32 633 -34Q639 -40 639 -48ZM944 -48Q944 -54 939 -60T924 -67H923Q917 -67 841 -26Q735 33 634 88Q366 235 364 239Q361 243 361 250T364 261Q367 266 641 415T920 567L924 568Q927 567 930 567Q944 562 944 548Q944 540 938 534Q937 532 679 391L422 250L679 109Q937 -32 938 -34Q944 -40 944 -48'], + + // MUCH GREATER-THAN + 0x226B: [567,67,1000,55,944,'55 539T55 547T60 561T74 567Q81 567 207 498Q297 449 365 412Q633 265 636 261Q639 255 639 250Q639 241 626 232Q614 224 365 88Q83 -65 79 -66Q76 -67 73 -67Q65 -67 60 -61T55 -47Q55 -39 61 -33Q62 -33 95 -15T193 39T320 109L321 110H322L323 111H324L325 112L326 113H327L329 114H330L331 115H332L333 116L334 117H335L336 118H337L338 119H339L340 120L341 121H342L343 122H344L345 123H346L347 124L348 125H349L351 126H352L353 127H354L355 128L356 129H357L358 130H359L360 131H361L362 132L363 133H364L365 134H366L367 135H368L369 136H370L371 137L372 138H373L374 139H375L376 140L378 141L576 251Q63 530 62 533Q55 539 55 547ZM360 539T360 547T365 561T379 567Q386 567 512 498Q602 449 670 412Q938 265 941 261Q944 255 944 250Q944 241 931 232Q919 224 670 88Q388 -65 384 -66Q381 -67 378 -67Q370 -67 365 -61T360 -47Q360 -39 366 -33Q367 -33 400 -15T498 39T625 109L626 110H627L628 111H629L630 112L631 113H632L634 114H635L636 115H637L638 116L639 117H640L641 118H642L643 119H644L645 120L646 121H647L648 122H649L650 123H651L652 124L653 125H654L656 126H657L658 127H659L660 128L661 129H662L663 130H664L665 131H666L667 132L668 133H669L670 134H671L672 135H673L674 136H675L676 137L677 138H678L679 139H680L681 140L683 141L881 251Q368 530 367 533Q360 539 360 547'], + + // PRECEDES + 0x227A: [539,41,778,84,694,'84 249Q84 262 91 266T117 270Q120 270 126 270T137 269Q388 273 512 333T653 512Q657 539 676 539Q685 538 689 532T694 520V515Q689 469 672 431T626 366T569 320T500 286T435 265T373 249Q379 248 404 242T440 233T477 221T533 199Q681 124 694 -17Q694 -41 674 -41Q658 -41 653 -17Q646 41 613 84T533 154T418 197T284 220T137 229H114Q104 229 98 230T88 235T84 249'], + + // SUCCEEDS + 0x227B: [539,41,778,83,694,'84 517Q84 539 102 539Q115 539 119 529T125 503T137 459T171 404Q277 275 640 269H661Q694 269 694 249T661 229H640Q526 227 439 214T283 173T173 98T124 -17Q118 -41 103 -41Q83 -41 83 -17Q88 29 105 67T151 132T208 178T277 212T342 233T404 249Q401 250 380 254T345 263T302 276T245 299Q125 358 92 468Q84 502 84 517'], + + // SUBSET OF + 0x2282: [541,41,778,84,694,'84 250Q84 372 166 450T360 539Q361 539 370 539T395 539T430 540T475 540T524 540H679Q694 532 694 520Q694 511 681 501L522 500H470H441Q366 500 338 496T266 472Q244 461 224 446T179 404T139 337T124 250V245Q124 157 185 89Q244 25 328 7Q348 2 366 2T522 0H681Q694 -10 694 -20Q694 -32 679 -40H526Q510 -40 480 -40T434 -41Q350 -41 289 -25T172 45Q84 127 84 250'], + + // SUPERSET OF + 0x2283: [541,40,778,83,693,'83 520Q83 532 98 540H251Q267 540 297 540T343 541Q427 541 488 525T605 455Q693 374 693 250Q693 165 650 99T545 0T415 -39Q407 -40 251 -40H98Q83 -32 83 -20Q83 -10 96 0H255H308H337Q412 0 439 4T512 28Q533 39 553 54T599 96T639 163T654 250Q654 341 592 411Q557 449 512 472Q468 491 439 495T335 500H306H255L96 501Q83 511 83 520'], + + // SUBSET OF OR EQUAL TO + 0x2286: [637,138,778,84,694,'84 346Q84 468 166 546T360 635Q361 635 370 635T395 635T430 636T475 636T524 636H679Q694 628 694 616Q694 607 681 597L522 596H470H441Q366 596 338 592T266 568Q244 557 224 542T179 500T139 433T124 346V341Q124 253 185 185Q244 121 328 103Q348 98 366 98T522 96H681Q694 86 694 76Q694 64 679 56H526Q510 56 480 56T434 55Q350 55 289 71T172 141Q84 223 84 346ZM104 -131T104 -118T118 -98H679Q694 -106 694 -118T679 -138H118Q104 -131 104 -118'], + + // SUPERSET OF OR EQUAL TO + 0x2287: [637,138,778,83,693,'83 616Q83 628 98 636H251Q267 636 297 636T343 637Q427 637 488 621T605 551Q693 470 693 346Q693 261 650 195T545 96T415 57Q407 56 251 56H98Q83 64 83 76Q83 86 96 96H255H308H337Q412 96 439 100T512 124Q533 135 553 150T599 192T639 259T654 346Q654 437 592 507Q557 545 512 568Q468 587 439 591T335 596H306H255L96 597Q83 607 83 616ZM84 -131T84 -118T98 -98H659Q674 -106 674 -118T659 -138H98Q84 -131 84 -118'], + + // MULTISET UNION + 0x228E: [598,22,667,55,611,'591 598H592Q604 598 611 583V376Q611 345 611 296Q610 162 606 148Q605 146 605 145Q586 68 507 23T333 -22Q268 -22 209 -1T106 66T56 173Q55 180 55 384L56 585Q66 598 75 598Q85 598 95 585V378L96 172L98 162Q112 95 181 57T332 18Q415 18 487 58T570 175Q571 180 571 383V583Q579 598 591 598ZM313 406Q313 417 313 435T312 459Q312 483 316 493T333 503T349 494T353 461V406V325H515Q516 325 519 323T527 316T531 305T527 294T520 287T515 285H353V204V152Q353 127 350 117T333 107T316 117T312 152Q312 158 312 175T313 204V285H151Q150 285 147 287T139 294T135 305T139 316T146 323T151 325H313V406'], + + // SQUARE IMAGE OF OR EQUAL TO + 0x2291: [636,138,778,84,714,'94 620Q98 632 110 636H699Q714 628 714 616T699 596H134V96H698Q714 90 714 76Q714 64 699 56H109Q104 59 95 69L94 344V620ZM84 -118Q84 -103 100 -98H698Q714 -104 714 -118Q714 -130 699 -138H98Q84 -131 84 -118'], + + // SQUARE ORIGINAL OF OR EQUAL TO + 0x2292: [636,138,778,64,694,'64 603T64 616T78 636H668Q675 633 683 623V69Q675 59 668 56H78Q64 63 64 76Q64 91 80 96H643V596H78Q64 603 64 616ZM64 -118Q64 -108 79 -98H678Q694 -104 694 -118Q694 -130 679 -138H78Q64 -131 64 -118'], + + // stix-square intersection, serifs + 0x2293: [598,0,667,61,605,'83 0Q79 0 76 1T71 3T67 6T65 9T63 13T61 16V301L62 585Q70 595 76 598H592Q602 590 605 583V15Q598 2 587 0Q583 0 580 1T575 3T571 6T569 9T567 13T565 16V558H101V15Q94 2 83 0'], + + // stix-square union, serifs + 0x2294: [598,0,667,61,605,'77 0Q65 4 61 16V301L62 585Q72 598 81 598Q94 598 101 583V40H565V583Q573 598 585 598Q598 598 605 583V15Q602 10 592 1L335 0H77'], + + // stix-circled plus (with rim) + 0x2295: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM364 542Q308 539 251 509T148 418T96 278V270H369V542H364ZM681 278Q675 338 650 386T592 462T522 509T458 535T412 542H409V270H681V278ZM96 222Q104 150 139 95T219 12T302 -29T366 -42H369V230H96V222ZM681 222V230H409V-42H412Q429 -42 456 -36T521 -10T590 37T649 113T681 222'], + + // CIRCLED MINUS + 0x2296: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM681 278Q669 385 591 463T381 542Q283 542 196 471T96 278V270H681V278ZM275 -42T388 -42T585 32T681 222V230H96V222Q108 107 191 33'], + + // stix-circled times (with rim) + 0x2297: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM582 471Q531 510 496 523Q446 542 381 542Q324 542 272 519T196 471L389 278L485 375L582 471ZM167 442Q95 362 95 250Q95 137 167 58L359 250L167 442ZM610 58Q682 138 682 250Q682 363 610 442L418 250L610 58ZM196 29Q209 16 230 2T295 -27T388 -42Q409 -42 429 -40T465 -33T496 -23T522 -11T544 1T561 13T574 22T582 29L388 222L196 29'], + + // CIRCLED DIVISION SLASH + 0x2298: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM582 471Q581 472 571 480T556 491T539 502T517 514T491 525T460 534T424 539T381 542Q272 542 184 460T95 251Q95 198 113 150T149 80L167 58L582 471ZM388 -42Q513 -42 597 44T682 250Q682 363 610 442L196 29Q209 16 229 2T295 -27T388 -42'], + + // CIRCLED DOT OPERATOR + 0x2299: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM682 250Q682 322 649 387T546 497T381 542Q272 542 184 459T95 250Q95 132 178 45T389 -42Q515 -42 598 45T682 250ZM311 250Q311 285 332 304T375 328Q376 328 382 328T392 329Q424 326 445 305T466 250Q466 217 445 195T389 172Q354 172 333 195T311 250'], + + // RIGHT TACK + 0x22A2: [695,0,611,55,555,'55 678Q55 679 56 681T58 684T61 688T65 691T70 693T77 694Q88 692 95 679V367H540Q555 359 555 347Q555 334 540 327H95V15Q88 2 77 0Q73 0 70 1T65 3T61 6T59 9T57 13T55 16V678'], + + // LEFT TACK + 0x22A3: [695,0,611,54,555,'515 678Q515 679 516 681T518 684T521 688T525 691T530 693T537 694Q548 692 555 679V15Q548 2 537 0Q533 0 530 1T525 3T521 6T519 9T517 13T515 16V327H71Q70 327 67 329T59 336T55 347T59 358T66 365T71 367H515V678'], + + // DOWN TACK + 0x22A4: [668,0,778,55,723,'55 642T55 648T59 659T66 666T71 668H708Q723 660 723 648T708 628H409V15Q402 2 391 0Q387 0 384 1T379 3T375 6T373 9T371 13T369 16V628H71Q70 628 67 630T59 637'], + + // UP TACK + 0x22A5: [669,0,778,54,723,'369 652Q369 653 370 655T372 658T375 662T379 665T384 667T391 668Q402 666 409 653V40H708Q723 32 723 20T708 0H71Q70 0 67 2T59 9T55 20T59 31T66 38T71 40H369V652'], + + // TRUE + 0x22A8: [750,249,867,119,812,'139 -249H137Q125 -249 119 -235V251L120 737Q130 750 139 750Q152 750 159 735V367H796Q811 359 811 347Q811 336 797 328L479 327H161L159 328V172L161 173H797Q798 172 800 171T803 169T805 167T808 164T809 162T810 158T811 153Q811 140 796 133H159V-235Q151 -249 141 -249H139'], + + // DIAMOND OPERATOR + 0x22C4: [488,-12,500,12,488,'242 486Q245 488 250 488Q256 488 258 486Q262 484 373 373T486 258T488 250T486 242T373 127T258 14Q256 12 250 12Q245 12 242 14Q237 16 127 126T14 242Q12 245 12 250T14 258Q16 263 126 373T242 486ZM439 250L250 439L61 250L250 61L439 250'], + + // DOT OPERATOR + 0x22C5: [310,-190,278,78,199,'78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250'], + + // STAR OPERATOR + 0x22C6: [486,-16,500,3,497,'210 282Q210 284 225 381T241 480Q241 484 245 484Q249 486 251 486Q258 486 260 477T272 406Q275 390 276 380Q290 286 290 282L388 299Q484 314 487 314H488Q497 314 497 302Q497 297 434 266Q416 257 404 251L315 206L361 118Q372 98 383 75T401 40L407 28Q407 16 395 16Q394 16 392 16L390 17L250 159L110 17L108 16Q106 16 105 16Q93 16 93 28L99 40Q105 52 116 75T139 118L185 206L96 251Q6 296 4 300Q3 301 3 302Q3 314 12 314H13Q16 314 112 299L210 282'], + + // BOWTIE + 0x22C8: [505,5,900,26,873,'833 50T833 250T832 450T659 351T487 250T658 150T832 50Q833 50 833 250ZM873 10Q866 -5 854 -5Q851 -5 845 -3L449 226L260 115Q51 -5 43 -5Q39 -5 35 -1T28 7L26 11V489Q33 505 43 505Q51 505 260 385L449 274L845 503Q851 505 853 505Q866 505 873 490V10ZM412 250L67 450Q66 450 66 250T67 50Q69 51 240 150T412 250'], + + // VERTICAL ELLIPSIS + 0x22EE: [900,30,278,78,199,'78 30Q78 54 95 72T138 90Q162 90 180 74T199 31Q199 6 182 -12T139 -30T96 -13T78 30ZM78 440Q78 464 95 482T138 500Q162 500 180 484T199 441Q199 416 182 398T139 380T96 397T78 440ZM78 840Q78 864 95 882T138 900Q162 900 180 884T199 841Q199 816 182 798T139 780T96 797T78 840'], + + // MIDLINE HORIZONTAL ELLIPSIS + 0x22EF: [310,-190,1172,78,1093,'78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250ZM525 250Q525 274 542 292T585 310Q609 310 627 294T646 251Q646 226 629 208T586 190T543 207T525 250ZM972 250Q972 274 989 292T1032 310Q1056 310 1074 294T1093 251Q1093 226 1076 208T1033 190T990 207T972 250'], + + // DOWN RIGHT DIAGONAL ELLIPSIS + 0x22F1: [820,-100,1282,133,1148,'133 760Q133 784 150 802T193 820Q217 820 235 804T254 761Q254 736 237 718T194 700T151 717T133 760ZM580 460Q580 484 597 502T640 520Q664 520 682 504T701 461Q701 436 684 418T641 400T598 417T580 460ZM1027 160Q1027 184 1044 202T1087 220Q1111 220 1129 204T1148 161Q1148 136 1131 118T1088 100T1045 117T1027 160'], + + // LEFT CEILING + 0x2308: [750,250,444,174,422,'174 734Q178 746 190 750H298H369Q400 750 411 747T422 730T411 713T372 709Q365 709 345 709T310 710H214V-235Q206 -248 196 -250Q192 -250 189 -249T184 -247T180 -244T178 -241T176 -237T174 -234V734'], + + // RIGHT CEILING + 0x2309: [750,250,444,21,269,'21 717T21 730T32 746T75 750H147H256Q266 742 269 735V-235Q262 -248 251 -250Q247 -250 244 -249T239 -247T235 -244T233 -241T231 -237T229 -234V710H133Q119 710 99 710T71 709Q43 709 32 713'], + + // LEFT FLOOR + 0x230A: [751,251,444,174,423,'174 734Q174 735 175 737T177 740T180 744T184 747T189 749T196 750Q206 748 214 735V-210H310H373Q401 -210 411 -213T422 -230T411 -247T369 -251Q362 -251 338 -251T298 -250H190Q178 -246 174 -234V734'], + + // RIGHT FLOOR + 0x230B: [751,250,444,21,269,'229 734Q229 735 230 737T232 740T235 744T239 747T244 749T251 750Q262 748 269 735V-235Q266 -240 256 -249L147 -250H77Q43 -250 32 -247T21 -230T32 -213T72 -209Q79 -209 99 -209T133 -210H229V734'], + + // stix-small down curve + 0x2322: [388,-122,1000,55,944,'55 141Q55 149 72 174T125 234T209 303T329 360T478 388H526Q649 383 765 319Q814 291 858 250T923 179T944 141Q944 133 938 128T924 122Q914 124 912 125T902 139Q766 328 500 328Q415 328 342 308T225 258T150 199T102 148T84 124Q81 122 75 122Q55 127 55 141'], + + // stix-small up curve + 0x2323: [378,-134,1000,55,944,'923 378Q944 378 944 358Q944 345 912 311T859 259Q710 134 500 134Q288 134 140 259Q55 336 55 358Q55 366 61 372T75 378Q78 378 84 376Q86 376 101 356T147 310T221 257T339 212T500 193Q628 193 734 236Q841 282 903 363Q914 378 923 378'], + + // UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION + 0x23B0: [744,244,412,56,357,'357 741V726Q357 720 349 715Q261 655 242 539Q240 526 240 454T239 315T239 247Q240 235 240 124V40Q240 -17 233 -53T201 -130Q155 -206 78 -244H69H64Q58 -244 57 -243T56 -234Q56 -232 56 -231V-225Q56 -218 63 -215Q153 -153 170 -39Q172 -25 173 119V219Q173 245 174 249Q173 258 173 376V460Q173 515 178 545T201 611Q244 695 327 741L334 744H354L357 741'], + + // UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION + 0x23B1: [744,244,412,55,357,'78 744Q153 706 196 640T239 492V376Q239 341 239 314T238 271T238 253Q239 251 239 223V119V49Q239 -39 254 -85Q263 -111 275 -134T301 -172T326 -197T346 -213T356 -221T357 -232V-241L354 -244H334Q264 -209 222 -146T174 -12Q173 -6 173 95Q173 134 173 191T174 250Q173 258 173 382V451Q173 542 159 585Q145 626 120 658T75 706T56 723V731Q56 741 57 742T66 744H78'], + + // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E8: [750,250,389,109,333,'333 -232Q332 -239 327 -244T313 -250Q303 -250 296 -240Q293 -233 202 6T110 250T201 494T296 740Q299 745 306 749L309 750Q312 750 313 750Q331 750 333 732Q333 727 243 489Q152 252 152 250T243 11Q333 -227 333 -232'], + + // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27E9: [750,250,389,55,279,'55 732Q56 739 61 744T75 750Q85 750 92 740Q95 733 186 494T278 250T187 6T92 -240Q85 -250 75 -250Q67 -250 62 -245T55 -232Q55 -227 145 11Q236 248 236 250T145 489Q55 727 55 732'], + + // MATHEMATICAL LEFT FLATTENED PARENTHESIS + 0x27EE: [744,244,412,173,357,'357 741V726Q357 720 349 715Q261 655 242 539Q240 526 240 394V331Q240 259 239 250Q240 242 240 119V49Q240 -42 254 -85Q263 -111 275 -134T301 -172T326 -197T346 -213T356 -221T357 -232V-241L354 -244H334Q264 -209 222 -146T174 -12Q173 -6 173 95Q173 134 173 191T174 250Q173 260 173 376V460Q173 515 178 545T201 611Q244 695 327 741L334 744H354L357 741'], + + // MATHEMATICAL RIGHT FLATTENED PARENTHESIS + 0x27EF: [744,244,412,55,240,'78 744Q153 706 196 640T239 492V376Q239 339 239 311T238 269T238 252Q240 236 240 124V40Q240 -18 233 -53T202 -130Q156 -206 79 -244H70H65Q58 -244 57 -242T56 -231T57 -220T64 -215Q153 -154 170 -39Q173 -18 174 119V247Q173 249 173 382V451Q173 542 159 585Q145 626 120 658T75 706T56 723V731Q56 741 57 742T66 744H78'], + + // LONG LEFTWARDS ARROW + 0x27F5: [511,11,1609,55,1525,'165 270H1510Q1525 262 1525 250T1510 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270'], + + // LONG RIGHTWARDS ARROW + 0x27F6: [511,11,1638,84,1553,'84 237T84 250T98 270H1444Q1328 357 1301 493Q1301 494 1301 496T1300 499Q1300 511 1317 511H1320Q1329 511 1332 510T1338 506T1341 497T1344 481T1352 456Q1374 389 1425 336T1544 261Q1553 258 1553 250Q1553 244 1548 241T1524 231T1486 212Q1445 186 1415 152T1370 85T1349 35T1341 4Q1339 -6 1336 -8T1320 -11Q1300 -11 1300 0Q1300 7 1305 25Q1337 151 1444 230H98Q84 237 84 250'], + + // LONG LEFT RIGHT ARROW + 0x27F7: [511,11,1859,55,1803,'165 270H1694Q1578 357 1551 493Q1551 494 1551 496T1550 499Q1550 511 1567 511H1570Q1579 511 1582 510T1588 506T1591 497T1594 481T1602 456Q1624 389 1675 336T1794 261Q1803 258 1803 250Q1803 244 1798 241T1774 231T1736 212Q1695 186 1665 152T1620 85T1599 35T1591 4Q1589 -6 1586 -8T1570 -11Q1550 -11 1550 0Q1550 7 1555 25Q1587 151 1694 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270'], + + // LONG LEFTWARDS DOUBLE ARROW + 0x27F8: [525,24,1609,56,1554,'274 173H1539Q1540 172 1542 171T1545 169T1547 167T1550 164T1551 162T1552 158T1553 153Q1553 140 1538 133H318L328 123Q379 69 414 0Q419 -13 419 -17Q419 -24 399 -24Q388 -24 385 -23T377 -12Q332 77 253 144T72 237Q62 240 59 242T56 250T59 257T70 262T89 268T119 278T160 296Q303 366 377 512Q382 522 385 523T401 525Q419 524 419 515Q419 510 414 500Q379 431 328 377L318 367H1538Q1553 359 1553 347Q1553 336 1539 328L1221 327H903L900 328L602 327H274L264 319Q225 289 147 250Q148 249 165 241T210 217T264 181L274 173'], + + // LONG RIGHTWARDS DOUBLE ARROW + 0x27F9: [525,24,1638,56,1582,'1218 514Q1218 525 1234 525Q1239 525 1242 525T1247 525T1251 524T1253 523T1255 520T1257 517T1260 512Q1297 438 1358 381T1469 300T1565 263Q1582 258 1582 250T1573 239T1536 228T1478 204Q1334 134 1260 -12Q1256 -21 1253 -22T1238 -24Q1218 -24 1218 -17Q1218 -13 1223 0Q1258 69 1309 123L1319 133H70Q56 140 56 153Q56 168 72 173H1363L1373 181Q1412 211 1490 250Q1489 251 1472 259T1427 283T1373 319L1363 327H710L707 328L390 327H72Q56 332 56 347Q56 360 70 367H1319L1309 377Q1276 412 1247 458T1218 514'], + + // LONG LEFT RIGHT DOUBLE ARROW + 0x27FA: [525,24,1858,56,1802,'1438 514Q1438 525 1454 525Q1459 525 1462 525T1467 525T1471 524T1473 523T1475 520T1477 517T1480 512Q1517 438 1578 381T1689 300T1785 263Q1802 258 1802 250T1793 239T1756 228T1698 204Q1554 134 1480 -12Q1476 -21 1473 -22T1458 -24Q1438 -24 1438 -17Q1438 -13 1443 0Q1478 69 1529 123L1539 133H318L328 123Q379 69 414 0Q419 -13 419 -17Q419 -24 399 -24Q388 -24 385 -23T377 -12Q332 77 253 144T72 237Q62 240 59 242T56 250T59 257T70 262T89 268T119 278T160 296Q303 366 377 512Q382 522 385 523T401 525Q419 524 419 515Q419 510 414 500Q379 431 328 377L318 367H1539L1529 377Q1496 412 1467 458T1438 514ZM274 173H1583L1593 181Q1632 211 1710 250Q1709 251 1692 259T1647 283T1593 319L1583 327H930L927 328L602 327H274L264 319Q225 289 147 250Q148 249 165 241T210 217T264 181L274 173'], + + // LONG RIGHTWARDS ARROW FROM BAR + 0x27FC: [511,11,1638,54,1553,'95 155V109Q95 83 92 73T75 63Q61 63 58 74T54 130Q54 140 54 180T55 250Q55 421 57 425Q61 437 75 437Q88 437 91 428T95 393V345V270H1444Q1328 357 1301 493Q1301 494 1301 496T1300 499Q1300 511 1317 511H1320Q1329 511 1332 510T1338 506T1341 497T1344 481T1352 456Q1374 389 1425 336T1544 261Q1553 258 1553 250Q1553 244 1548 241T1524 231T1486 212Q1445 186 1415 152T1370 85T1349 35T1341 4Q1339 -6 1336 -8T1320 -11Q1300 -11 1300 0Q1300 7 1305 25Q1337 151 1444 230H95V155'], + + // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN + 0x2AAF: [636,138,778,84,694,'84 346Q84 359 91 363T117 367Q120 367 126 367T137 366Q388 370 512 430T653 609Q657 636 676 636Q685 635 689 629T694 618V612Q689 566 672 528T626 463T569 417T500 383T435 362T373 346Q379 345 404 339T440 330T477 318T533 296Q592 266 630 223T681 145T694 78Q694 57 674 57Q662 57 657 67T652 92T640 135T606 191Q500 320 137 326H114Q104 326 98 327T88 332T84 346ZM84 -131T84 -118T98 -98H679Q694 -106 694 -118T679 -138H98Q84 -131 84 -118'], + + // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN + 0x2AB0: [636,138,778,83,694,'84 614Q84 636 102 636Q115 636 119 626T125 600T137 556T171 501Q277 372 640 366H661Q694 366 694 346T661 326H640Q578 325 526 321T415 307T309 280T222 237T156 172T124 83Q122 66 118 62T103 57Q100 57 98 57T95 58T93 59T90 62T85 67Q83 71 83 80Q88 126 105 164T151 229T208 275T277 309T342 330T404 346Q401 347 380 351T345 360T302 373T245 396Q125 455 92 565Q84 599 84 614ZM84 -131T84 -118T98 -98H679Q694 -106 694 -118T679 -138H98Q84 -131 84 -118'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js new file mode 100644 index 0000000..de3d901 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/MathOperators.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // INCREMENT + 0x2206: [716,0,833,46,786,''] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/MathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js new file mode 100644 index 0000000..830ed15 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js @@ -0,0 +1,47 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/MiscSymbols.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // BLACK SPADE SUIT + 0x2660: [727,131,778,55,723,'181 -21Q134 -21 96 27T55 193Q55 224 58 247T82 317T143 410Q172 443 234 498Q282 543 314 598T360 687T380 725Q386 727 389 727Q395 727 398 725T406 716T413 702T423 677T439 641Q481 556 544 498Q633 420 678 353T723 204Q723 142 711 94T669 12T590 -21Q520 -21 490 8T459 66V70H409V62Q409 22 416 -17T430 -82T437 -112Q437 -131 407 -131Q403 -131 397 -131T389 -130T382 -130T372 -131Q341 -131 341 -111Q341 -107 348 -82T362 -18T369 62V70H319V66Q319 57 314 44T297 16T257 -10T191 -21H181'], + + // WHITE HEART SUIT + 0x2661: [716,33,778,55,723,'55 490Q55 557 71 604T114 674T167 706T222 716Q279 716 322 684T389 605Q391 610 395 617T414 643T447 677T494 704T555 716Q642 716 682 652T723 490Q723 455 718 426T684 342T602 227Q573 196 537 161T485 110T449 63T412 -8Q408 -22 404 -27T389 -33Q382 -33 379 -31T372 -23T366 -8T355 18T335 54Q319 81 298 104T239 163T176 227Q102 310 79 371T55 490ZM198 674Q143 664 119 613T95 491Q95 415 137 346Q174 282 265 194T384 48L389 39Q391 42 397 54T406 71T415 86T427 104T442 122T464 146T491 172Q571 249 613 303Q683 396 683 487Q683 581 649 631Q613 676 556 676Q495 676 457 634T410 538Q407 514 390 514Q386 514 380 517Q372 520 369 536T355 581T319 635Q277 675 223 675H217H208L204 674Q200 674 198 674'], + + // WHITE DIAMOND SUIT + 0x2662: [727,162,778,55,723,'370 714Q370 717 375 722T388 727Q398 727 403 721T417 697Q420 692 421 689Q536 465 709 304Q723 291 723 282T709 260Q529 93 406 -153Q402 -162 390 -162H389Q379 -162 376 -158T357 -125Q247 89 89 241L64 265Q55 272 55 282Q55 287 57 290T64 300T77 312T98 331T127 361Q197 435 258 523T344 663L370 714ZM655 299Q568 384 508 470T389 662L376 638Q362 613 341 577T289 497T215 399T123 299L105 282L123 265Q210 180 270 94T389 -98L402 -74Q416 -49 437 -13T489 67T563 165T655 265L673 282L655 299'], + + // BLACK CLUB SUIT + 0x2663: [726,131,778,28,750,'213 532Q213 615 265 670T389 726Q461 726 513 671T565 532Q565 511 562 492T553 458T541 432T526 409T512 393T498 379L490 371L511 326Q512 326 516 330T528 341T546 353T572 363T606 368Q664 368 707 315T750 174Q750 87 699 33T579 -22Q567 -22 553 -20T517 -10T479 16T459 63V70H409V62Q409 22 416 -17T430 -82T437 -112Q437 -131 407 -131Q403 -131 397 -131T389 -130T382 -130T372 -131Q341 -131 341 -111Q341 -107 348 -82T362 -18T369 62V70H319V63Q315 25 281 2T197 -22Q132 -22 80 32T28 174Q28 255 69 311T175 368Q192 368 207 364T232 353T250 341T262 331T267 326L288 371L280 378Q272 385 267 391T253 407T238 430T226 457T217 492T213 532'], + + // MUSIC FLAT SIGN + 0x266D: [750,22,389,55,332,'200 467Q254 467 293 428T332 321Q332 147 104 -11L88 -22H75Q62 -22 56 -16L55 362V647Q55 743 60 748Q63 750 76 750H83Q87 750 95 744V434L104 440Q144 467 200 467ZM237 322Q237 360 225 388T183 417Q158 417 134 407T101 378Q96 370 96 349T95 197V34Q152 91 194 167T237 322'], + + // MUSIC NATURAL SIGN + 0x266E: [734,223,389,65,324,'65 721Q78 734 94 734Q100 734 104 727V444L116 449Q129 454 157 465T208 486Q313 527 314 527Q318 527 324 521V-210Q306 -223 294 -223Q289 -223 284 -216V-13L270 -18Q257 -24 231 -34T180 -54Q77 -96 74 -96T65 -90V721ZM104 13Q282 84 283 85Q284 85 284 252Q284 418 283 418L230 396L140 360L104 346V13'], + + // MUSIC SHARP SIGN + 0x266F: [723,223,389,55,333,'101 -223Q94 -223 93 -217T91 -188V-151Q91 -88 90 -88Q87 -88 80 -92T68 -96Q62 -96 56 -90L55 -50V-22Q55 -8 58 -4T78 5L91 10V177Q91 343 90 343Q87 343 80 339T68 335Q62 335 56 341L55 381V409Q55 423 58 427T78 436L91 441V543V616Q91 643 93 648T106 656Q119 662 126 659Q130 657 130 645T131 554V456L257 503V607L258 710L260 712Q261 715 272 719T286 723Q293 723 295 715T297 671V617Q297 519 298 519Q301 519 307 522T319 526Q327 526 333 521V437L330 435Q328 432 312 427L297 421V254Q297 88 298 88Q301 88 307 91T319 95Q327 95 333 90V6L330 4Q328 1 312 -4L297 -10V-78V-122Q297 -145 295 -149T282 -156Q274 -160 268 -160Q257 -160 257 -130V-89V-25L131 -72V-210Q123 -215 116 -218T104 -222L101 -223ZM257 72V406L131 359V25L257 72'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/MiscSymbols.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js new file mode 100644 index 0000000..e11ec6a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/SpacingModLetters.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // RING ABOVE + 0x2DA: [715,-542,500,147,352,'147 628Q147 669 179 692T244 715Q298 715 325 689T352 629Q352 592 323 567T249 542Q202 542 175 567T147 628ZM313 628Q313 660 300 669T259 678H253Q248 678 242 678T234 679Q217 679 207 674T192 659T188 644T187 629Q187 600 198 590Q210 579 250 579H265Q279 579 288 581T305 595T313 628'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/SpacingModLetters.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js new file mode 100644 index 0000000..435e7f9 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js @@ -0,0 +1,29 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Main/Regular/SuppMathOperators.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Main'], + { + // AMALGAMATION OR COPRODUCT + 0x2A3F: [683,0,750,28,721,'28 660Q28 676 31 679T46 683H50Q87 681 182 681Q217 681 247 681T294 682T315 682Q321 682 323 682T328 679T331 673T332 660Q332 643 328 640T304 637Q239 637 231 626Q229 620 229 334V46H520V334Q520 620 518 626Q510 637 445 637Q426 637 422 640T417 660Q417 675 420 678T432 682H435Q437 682 467 682T569 681T671 681T703 682Q714 682 717 679T721 660Q721 643 717 640T693 637Q628 637 620 626Q619 623 619 342Q619 60 620 57Q628 46 693 46Q714 46 717 43T721 23Q721 5 715 1Q713 0 374 0Q36 0 34 1Q28 5 28 23Q28 40 31 43T56 46Q121 46 129 57Q131 63 131 342Q131 620 129 626Q121 637 56 637Q35 637 32 640T28 660'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Main/Regular/SuppMathOperators.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js new file mode 100644 index 0000000..0e78ede --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js @@ -0,0 +1,395 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Math/BoldItalic/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Math-bold-italic'] = { + directory: 'Math/BoldItalic', + family: 'MathJax_Math', + id: 'MJMATHBI', + weight: 'bold', + style: 'italic', + skew: { + 0x41: 0.16, + 0x42: 0.0958, + 0x43: 0.0958, + 0x44: 0.0639, + 0x45: 0.0958, + 0x46: 0.0958, + 0x47: 0.0958, + 0x48: 0.0639, + 0x49: 0.128, + 0x4A: 0.192, + 0x4B: 0.0639, + 0x4C: 0.0319, + 0x4D: 0.0958, + 0x4E: 0.0958, + 0x4F: 0.0958, + 0x50: 0.0958, + 0x51: 0.0958, + 0x52: 0.0958, + 0x53: 0.0958, + 0x54: 0.0958, + 0x55: 0.0319, + 0x58: 0.0958, + 0x5A: 0.0958, + 0x63: 0.0639, + 0x64: 0.192, + 0x65: 0.0639, + 0x66: 0.192, + 0x67: 0.0319, + 0x68: -0.0319, + 0x6C: 0.0958, + 0x6F: 0.0639, + 0x70: 0.0958, + 0x71: 0.0958, + 0x72: 0.0639, + 0x73: 0.0639, + 0x74: 0.0958, + 0x75: 0.0319, + 0x76: 0.0319, + 0x77: 0.0958, + 0x78: 0.0319, + 0x79: 0.0639, + 0x7A: 0.0639, + 0x393: 0.0958, + 0x394: 0.192, + 0x398: 0.0958, + 0x39B: 0.192, + 0x39E: 0.0958, + 0x3A0: 0.0639, + 0x3A3: 0.0958, + 0x3A5: 0.0639, + 0x3A6: 0.0958, + 0x3A8: 0.0639, + 0x3A9: 0.0958, + 0x3B1: 0.0319, + 0x3B2: 0.0958, + 0x3B4: 0.0639, + 0x3B5: 0.0958, + 0x3B6: 0.0958, + 0x3B7: 0.0639, + 0x3B8: 0.0958, + 0x3B9: 0.0639, + 0x3BC: 0.0319, + 0x3BD: 0.0319, + 0x3BE: 0.128, + 0x3BF: 0.0639, + 0x3C1: 0.0958, + 0x3C2: 0.0958, + 0x3C4: 0.0319, + 0x3C5: 0.0319, + 0x3C6: 0.0958, + 0x3C7: 0.0639, + 0x3C8: 0.128, + 0x3D1: 0.0958, + 0x3D5: 0.0958, + 0x3F1: 0.0958, + 0x3F5: 0.0639 + }, + + // SPACE + 0x20: [0,0,250,0,0,''], + + // SOLIDUS + 0x2F: [711,210,894,160,733,'189 -210Q179 -210 170 -203T160 -179Q160 -171 162 -166Q164 -163 420 266T679 698Q686 711 704 711Q714 711 723 704T733 681Q733 672 730 667Q723 654 469 228T211 -201Q202 -210 189 -210'], + + // LATIN CAPITAL LETTER A + 0x41: [711,0,869,45,839,'65 0Q45 0 45 18Q48 52 61 60Q65 62 81 62Q155 62 165 74Q166 74 265 228T465 539T569 699Q576 707 583 709T611 711T637 710T649 700Q650 697 695 380L741 63L784 62H827Q839 50 839 45L835 29Q831 9 827 5T806 0Q803 0 790 0T743 1T657 2Q585 2 547 1T504 0Q481 0 481 17Q484 54 497 60Q501 62 541 62Q580 62 580 63Q580 68 573 121T564 179V181H308L271 124Q236 69 236 67T283 62H287Q316 62 316 46Q316 26 307 8Q302 3 295 0L262 1Q242 2 168 2Q119 2 93 1T65 0ZM537 372Q533 402 528 435T521 486T518 504V505Q517 505 433 375L348 244L451 243Q555 243 555 244L537 372'], + + // LATIN CAPITAL LETTER B + 0x42: [686,0,866,43,853,'258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 449 686H477H586Q684 686 733 677T817 634Q853 598 853 547Q853 499 826 460T761 401T695 371T654 360H653L662 358Q670 357 683 354T712 344T744 327T774 303T795 269T804 224Q804 148 732 79T533 1Q524 0 288 0H58Q47 5 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624ZM703 550Q703 571 695 586T675 609T656 619T643 623L545 624H447L417 504Q386 384 386 383T470 382Q554 383 565 385Q632 397 667 447T703 550ZM651 240Q651 265 645 282T626 309T608 322T592 329Q587 330 479 331H373L340 198Q307 65 306 64Q306 62 406 62L507 63L519 65Q565 76 596 107T639 171T651 240'], + + // LATIN CAPITAL LETTER C + 0x43: [704,17,817,55,855,'380 -17Q335 -17 293 -10T207 16T130 65T76 144T55 256Q55 306 70 361T122 476T211 582T345 663T525 702H545Q673 702 731 634L777 668Q783 672 789 677T800 685T808 691T814 695T818 698T822 700T825 702T828 703T830 703T833 703Q855 703 855 690Q855 686 823 558T789 426Q786 421 782 420T756 419Q734 420 729 421T724 432Q724 434 725 447T726 472Q726 552 678 604Q640 640 586 640H574Q533 640 494 632T409 604T324 541T260 437Q243 397 227 333T210 219Q210 152 237 117Q255 90 299 68T420 46H429Q506 46 580 100T678 234Q683 249 687 251T712 254H723Q743 254 743 240Q743 232 736 213T710 162T663 100T586 40T477 -5Q433 -17 380 -17'], + + // LATIN CAPITAL LETTER D + 0x44: [686,0,938,43,914,'258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 437 686Q659 686 668 685Q727 680 772 662T842 621T883 568T905 517T913 475Q914 466 914 434Q914 373 892 307T828 179T712 69T548 7Q517 2 494 2T279 0H58Q47 5 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624ZM768 475Q768 515 753 544T718 588T666 611T613 622T563 624H538H532H452L382 344Q311 64 311 63T363 62H405Q490 62 545 76T656 142Q696 185 724 265T760 399T768 475'], + + // LATIN CAPITAL LETTER E + 0x45: [680,0,810,43,825,'257 618H231Q198 618 198 636Q202 672 214 678L219 680H811Q817 677 820 673T824 666L825 664Q825 659 814 549T799 433Q793 424 771 424Q752 424 746 427T740 441Q740 445 742 466T744 505Q744 561 722 585T646 616Q639 617 545 618H456Q456 617 427 502T398 385Q398 384 435 384Q461 385 471 385T499 391T526 405T545 433T562 478Q566 494 571 497T595 501H604Q622 501 626 486Q626 482 593 349T557 213Q552 205 530 205Q499 205 499 219Q499 222 503 242T508 281Q508 308 491 314T429 322Q425 322 423 322H382L317 64Q317 62 390 62Q460 62 493 64T569 80T640 124Q665 149 686 187T719 253T733 283Q739 289 760 289Q791 289 791 274Q791 267 763 201T706 71L678 8Q676 4 667 0H58Q47 5 43 15Q47 54 60 60Q64 62 113 62H162L163 66Q163 67 231 341T301 616Q301 618 257 618'], + + // LATIN CAPITAL LETTER F + 0x46: [680,0,689,43,809,'257 618H231Q198 618 198 636Q202 672 214 678L219 680H795Q801 677 804 673T808 666L809 664Q809 659 798 549T783 433Q777 424 755 424Q736 424 730 427T724 444Q724 448 725 468T727 507V524Q727 541 724 554T713 577T698 594T676 605T653 612T625 616T597 617T566 618T538 618H456L455 614Q455 611 424 491L394 371H429Q454 372 463 372T491 378T517 392T536 419T552 464Q556 481 561 484T586 488Q603 488 607 486Q616 482 616 473Q616 467 584 337T549 201Q542 192 521 192Q503 192 497 195T490 209Q490 212 492 224Q499 251 499 269Q499 288 489 296T465 306T417 308L379 309L348 188Q341 161 334 129T322 80L318 65L317 62H375H409Q430 62 438 59T447 45Q444 8 431 2L426 0L377 1Q347 2 231 2Q152 2 111 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L163 66Q163 67 231 341T301 616Q301 618 257 618'], + + // LATIN CAPITAL LETTER G + 0x47: [704,16,887,56,854,'379 -16Q233 -16 145 52T56 255Q56 310 73 368T127 483T216 586T347 663T518 702H540Q562 702 582 700T616 696T644 689T667 681T686 670T702 659T717 647T731 635L776 668Q782 672 788 677T799 685T807 691T813 695T817 698T821 700T824 702T827 703T829 703T832 703Q854 703 854 690Q854 686 822 558T788 426Q785 421 781 420T755 419Q734 420 729 422T723 432Q723 434 724 446T725 469Q725 531 702 571T642 628Q616 640 575 640Q468 640 390 593T272 464Q247 415 229 340T210 214Q210 166 228 132T277 79T343 54T419 46Q445 46 465 50T500 59T526 76T544 96T557 123T566 150T574 182T581 214H519Q511 214 498 214T479 213Q443 213 443 230Q443 250 452 268Q457 273 464 276L514 275Q546 274 657 274Q735 274 768 275T803 276Q826 276 826 258Q823 224 810 216Q806 214 771 214H736Q736 211 710 109T683 5Q678 0 671 0Q666 0 637 14T597 36Q593 38 590 40T585 44T582 44T576 40Q511 -16 379 -16'], + + // LATIN CAPITAL LETTER H + 0x48: [686,0,982,43,1027,'258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 239 686Q290 684 403 684Q475 684 512 685T553 686Q576 686 576 668Q572 632 560 626Q555 624 506 624H457L399 389Q399 388 547 388H695L753 623Q753 624 709 624H686Q665 624 660 626T650 639Q653 678 668 684Q672 686 681 686Q685 686 726 685T847 684Q902 684 937 684T986 685T1004 686Q1027 686 1027 668Q1023 632 1011 626Q1006 624 957 624H908L839 344Q768 64 768 63T812 62H839Q871 62 871 44Q867 6 854 2L850 0L808 1Q782 2 675 2Q600 2 560 1T516 0Q499 0 494 15Q498 54 511 60Q515 62 564 62H613L614 66L679 324Q679 326 531 326H383L382 322L317 64Q317 62 361 62H388Q420 62 420 44Q416 6 403 2L399 0L357 1Q331 2 224 2Q149 2 109 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624'], + + // LATIN CAPITAL LETTER I + 0x49: [686,0,511,30,573,'247 624Q242 624 233 624T220 623Q186 623 186 640Q186 647 190 664T202 684Q206 686 226 686Q277 684 393 684Q435 684 471 684T528 685T553 686Q573 686 573 670Q573 650 564 632Q556 624 537 624H501H449L380 344Q309 64 309 63T356 62Q361 62 370 62T384 63Q417 63 417 46Q417 26 408 8Q403 3 396 0L352 1Q325 2 216 2T82 1L45 0Q30 7 30 16Q33 51 46 60Q51 62 102 62H154L294 623Q294 624 247 624'], + + // LATIN CAPITAL LETTER J + 0x4A: [686,17,631,42,694,'205 131Q205 105 192 84T165 54L152 45Q152 44 160 42T182 37T213 35H216Q255 35 289 65Q314 90 329 129Q331 136 392 378T453 623Q453 624 393 624H332Q318 631 318 640Q318 647 322 664T334 684Q338 686 359 686Q413 684 533 684Q566 684 605 685T652 686Q677 686 685 683T694 669Q694 664 691 652Q686 631 681 628T647 624H602L542 380Q531 336 518 285T500 212T487 161T475 122T463 97T448 74T429 55Q351 -17 213 -17Q142 -17 99 7T43 70Q42 75 42 93Q42 143 73 168T139 194Q168 194 186 177T205 131'], + + // LATIN CAPITAL LETTER K + 0x4B: [686,1,971,43,1003,'536 0Q522 6 522 18Q522 35 533 57Q539 62 557 62Q595 62 601 65L472 330L365 255L342 160Q318 65 317 64Q317 62 361 62H388Q420 62 420 44Q416 6 403 2L399 0L357 1Q331 2 224 2Q149 2 109 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 239 686Q290 684 403 684Q475 684 512 685T553 686Q576 686 576 668Q572 632 560 626Q555 624 506 624H457L422 481Q386 339 386 337L785 621Q779 624 749 624Q726 624 726 641Q726 645 730 659Q734 675 736 679T747 686L786 685Q812 684 888 684Q908 684 934 685T968 686Q1003 686 1003 669Q1003 646 991 629Q985 624 967 624Q918 624 888 617Q884 617 874 613L865 609Q864 608 732 515T599 420Q599 418 686 242T775 65Q784 62 829 62Q847 62 850 61T860 54Q862 52 862 43Q862 10 845 1Q844 1 842 1T836 0T797 1T694 2Q599 2 573 1L536 0'], + + // LATIN CAPITAL LETTER L + 0x4C: [686,0,756,43,711,'258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 239 686Q290 684 409 684Q454 684 492 684T552 685T579 686Q603 686 603 668Q599 632 587 626Q583 624 520 624H457L388 344Q317 64 317 63T353 62H390Q418 62 440 64T493 78T548 110T598 169T643 261Q651 282 655 285T680 289Q696 289 700 288T709 279Q711 274 711 269Q710 265 663 138T613 8Q611 4 602 0H58Q47 5 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624'], + + // LATIN CAPITAL LETTER M + 0x4D: [686,0,1142,43,1219,'258 624H231Q214 624 208 626T199 639Q203 678 216 684Q220 686 347 686H473Q474 685 478 682T484 677Q487 673 535 413L584 153L608 187Q631 221 672 281T761 410Q935 663 943 671Q949 678 962 686H1082H1166Q1201 686 1210 683T1219 668Q1215 632 1203 626Q1199 624 1149 624H1100L1031 344Q960 64 960 63T1004 62H1031Q1063 62 1063 44Q1060 7 1046 2Q1042 0 1034 0Q1030 0 990 1T875 2Q804 2 767 1T725 0H723Q707 0 703 15Q707 54 720 60Q724 62 773 62H822Q961 618 961 619L754 318Q546 15 543 12Q531 0 510 0Q500 0 495 0T484 5T477 19Q477 20 421 315L367 604L299 335Q234 72 234 68Q234 62 302 62Q334 62 334 46Q332 8 317 2Q313 0 306 0Q301 0 267 1T181 2Q125 2 96 1T63 0Q48 0 43 15Q43 19 47 35Q52 55 57 58T94 62Q147 64 164 69L233 345Q302 619 302 622Q302 624 258 624'], + + // LATIN CAPITAL LETTER N + 0x4E: [686,0,950,43,1027,'258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 344 686H434Q464 686 477 680Q480 677 607 454Q738 227 739 227Q742 227 789 418T836 618Q836 620 835 620L821 622Q811 622 779 624Q755 624 749 625T740 632Q737 635 737 644Q737 656 742 669T754 685Q755 685 757 685T763 686Q768 686 803 685T890 684Q925 684 951 684T990 685T1006 686Q1014 686 1016 684Q1027 679 1027 668Q1023 632 1011 626Q1007 624 978 624Q912 622 907 617Q907 616 831 314T753 8Q749 0 723 0H712Q699 0 692 7Q692 8 671 44T607 155T526 296L361 580L296 323Q234 74 234 68T302 62H307Q334 62 334 44Q330 6 317 2L313 0L280 1Q260 2 181 2Q125 2 96 1T63 0Q48 0 43 15Q43 19 47 35Q52 55 57 58T94 62Q147 64 164 69L233 345Q302 619 302 622Q302 624 258 624'], + + // LATIN CAPITAL LETTER O + 0x4F: [703,17,837,53,815,'53 245Q53 297 70 356T125 478T216 590T349 671T523 703Q656 703 735 637T815 445Q815 378 791 307Q727 104 527 17Q437 -17 344 -17Q289 -17 242 -5T150 35T79 116T53 245ZM664 489Q664 575 618 611T511 648Q463 648 416 627T334 570Q297 531 270 472T230 355T213 261T208 206Q208 177 215 151T237 98T284 56T358 40Q440 40 510 98T618 270Q664 400 664 489'], + + // LATIN CAPITAL LETTER P + 0x50: [686,0,723,43,847,'162 62L302 623Q302 624 258 624H234Q214 624 209 626T200 638Q200 677 217 684Q220 686 439 686Q667 685 684 682Q686 681 693 680Q713 677 733 671T782 649T829 602T847 528Q847 450 784 382T604 293Q571 288 469 287H373L346 176Q340 151 333 122T321 78L317 64Q317 62 361 62H387Q420 62 420 44Q417 10 404 2L399 0L357 1Q331 2 224 2Q149 2 109 1T65 0Q43 0 43 17Q43 21 47 33Q52 54 57 58T89 62H113H162ZM692 558Q692 611 617 622Q610 623 529 624H452L381 343H458H492Q604 343 641 389Q662 414 677 471T692 558'], + + // LATIN CAPITAL LETTER Q + 0x51: [703,194,869,52,815,'53 245Q53 297 70 356T125 478T216 590T349 671T523 703Q656 703 735 637T815 445Q815 410 808 370T781 277T729 178T643 87T519 14L525 4Q540 -19 553 -25T592 -32Q632 -32 654 -24T680 -7T689 10T704 18Q713 18 717 12T722 0Q722 -8 711 -36T681 -101T624 -166T541 -194Q513 -194 494 -183T465 -157T450 -118T444 -79T443 -41V-7L433 -9Q391 -17 344 -17Q301 -17 263 -10T185 15T118 62T71 138T53 245ZM666 482Q666 529 652 563T614 615T565 640T512 648Q412 648 335 573Q268 506 235 389T201 202Q201 164 210 136T230 95T259 66L262 76Q269 109 302 135T382 162Q401 162 415 159T449 140T484 92L491 78L496 82Q502 86 505 88T515 97T528 107T541 120T555 137T570 156T585 179T599 205T612 235Q629 278 647 351T666 482ZM439 56Q439 58 439 62T435 75T426 92T410 106T383 112Q353 112 332 96T311 63Q311 38 355 38H366Q391 39 415 45T439 56'], + + // LATIN CAPITAL LETTER R + 0x52: [686,17,872,43,881,'258 624H235Q214 624 209 626T199 639Q203 678 216 684Q220 686 422 686H446H525Q634 686 698 674T806 620Q843 583 843 535Q843 505 833 478T805 432T768 396T728 370T690 352T662 342L651 338L654 336Q658 334 667 327T688 310Q719 278 719 237Q719 222 710 165T701 94Q701 35 748 35Q775 35 793 57T819 101Q822 112 826 114T843 117H849Q881 117 881 99Q881 78 852 39T781 -11Q765 -17 728 -17Q537 -13 537 94Q537 110 552 169T567 243Q567 292 529 309Q517 316 508 316T441 318H375L374 314Q374 312 343 189T311 64Q311 62 355 62H382Q414 62 414 44Q410 6 397 2L393 0L351 1Q325 2 221 2Q147 2 108 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L302 623Q302 624 258 624ZM687 555Q687 617 589 623Q581 624 513 624H451L420 498Q413 468 405 436T392 388L388 371Q388 369 458 369Q464 369 485 369T515 369T541 372T570 377T596 386T624 400Q649 417 664 457T683 522T687 555'], + + // LATIN CAPITAL LETTER S + 0x53: [703,17,693,63,714,'354 45Q429 45 467 91T506 184Q506 225 477 250Q461 262 384 279T294 300Q238 318 210 362T182 452Q182 493 202 540T257 623Q338 702 449 702Q491 702 501 701Q571 690 610 654Q614 649 617 650Q618 650 650 675T683 702Q685 703 692 703Q714 703 714 690Q714 686 687 578T658 466Q653 458 629 458Q606 458 602 463Q600 465 599 466Q599 467 599 469T598 473Q598 475 599 487T600 511Q600 584 557 614T454 645Q386 645 347 606T308 520Q308 506 311 496T323 477T338 464T360 454T384 446T413 439T441 433Q523 416 549 401Q581 384 602 352Q631 309 631 254Q631 214 615 170T567 83T478 12T347 -16Q322 -16 300 -14T261 -8T230 0T205 10T187 20T172 30L162 37L130 11Q124 7 119 3T110 -4T104 -9T100 -13T96 -15T93 -16T91 -17T88 -17H82Q76 -17 73 -16T69 -14T66 -10T63 -5L90 107Q97 133 106 170Q116 211 120 219T136 228H148Q167 228 173 227T179 218Q179 216 176 200T173 168Q173 102 227 74T354 45'], + + // LATIN CAPITAL LETTER T + 0x54: [675,0,637,22,772,'498 62Q511 58 511 43Q511 10 494 1L490 0Q487 0 482 0T424 1T271 2Q201 2 157 2T94 1T72 0H70Q46 0 46 17Q49 54 62 60L66 62H137Q208 62 209 63L218 98Q227 134 244 203T278 339L347 613H300Q262 612 246 611T198 599T146 564Q128 545 114 512T91 454T79 425Q73 419 52 419Q22 419 22 434Q22 440 41 498T80 611L100 666Q105 673 111 675H434Q758 675 762 673Q772 668 772 657Q772 655 756 549T738 434Q735 419 711 419H707Q690 419 686 421Q677 425 677 434Q676 436 678 449T683 485T686 529Q686 553 679 569T662 594T631 607T593 612T544 613H502L433 340Q418 279 400 207T374 100L365 65L364 62H498'], + + // LATIN CAPITAL LETTER U + 0x55: [686,16,800,63,877,'856 686Q877 686 877 668Q877 663 873 649T867 631Q861 624 828 624Q762 622 757 617Q757 613 705 409T651 200Q620 112 540 48T328 -16Q251 -16 196 2T113 51T75 112T63 176Q63 202 70 232T117 422Q129 469 141 520T160 598L167 623Q167 624 123 624H96Q79 624 73 626T64 639Q68 678 81 684Q85 686 104 686Q155 684 268 684Q340 684 377 685T418 686Q441 686 441 668Q437 632 425 626Q421 624 371 624H322L270 415Q224 232 217 198T209 141Q209 45 336 45Q372 45 406 52T475 77T540 128T585 211L590 229Q594 247 601 274T617 336T636 409T654 482T670 547T681 595T686 618Q686 620 685 620H683Q681 621 678 621T671 622Q660 622 630 624Q616 624 610 624T598 626T589 630T587 640Q587 647 590 659Q594 677 598 681T613 686Q618 686 653 685T740 684Q775 684 801 684T840 685T856 686'], + + // LATIN CAPITAL LETTER V + 0x56: [686,16,678,62,886,'401 686Q415 680 415 668Q415 651 404 629Q398 624 356 624Q318 624 318 623Q318 620 337 508T377 284L397 174L472 285Q548 396 623 507T699 620Q698 621 652 624Q634 624 627 627T619 641Q619 648 622 658Q627 677 631 681T650 686Q654 686 686 685T766 684Q794 684 823 684T858 685Q874 685 878 683T886 671Q886 667 882 651Q877 632 873 628T850 624Q800 624 779 617Q774 617 770 613Q767 610 560 304T350 -5Q346 -9 332 -16H306H291Q270 -16 267 -2Q267 -1 260 37T238 161T210 313L156 624H116H94Q62 624 62 642Q66 678 78 684Q82 686 99 686Q144 684 246 684Q330 684 368 685L401 686'], + + // LATIN CAPITAL LETTER W + 0x57: [686,17,1093,61,1207,'111 624Q109 624 102 624T91 623Q61 623 61 640Q61 660 70 678Q78 686 98 686Q140 684 239 684Q277 684 309 684T360 685T383 686H385Q407 686 407 668Q404 634 391 626Q387 624 348 624Q307 624 307 622Q307 618 332 409Q359 198 359 195L570 532L564 576L558 622V624H522H504Q472 624 472 641Q475 678 488 684L493 686L529 685Q551 684 645 684Q716 684 753 685T795 686Q818 686 818 669Q815 632 802 626Q798 624 759 624Q718 624 718 622Q718 615 743 410Q770 199 770 196Q770 195 806 253T903 406Q1035 618 1035 619Q1025 624 968 624Q943 624 943 641Q943 648 946 659Q950 675 952 679T963 686L998 685Q1020 684 1093 684Q1113 684 1139 685T1173 686Q1207 686 1207 669Q1207 664 1204 652Q1199 631 1194 628T1164 624Q1113 622 1101 615Q1098 612 905 305Q715 -1 709 -7Q699 -17 673 -17Q645 -17 639 -8L581 441Q581 444 442 221Q331 44 314 18T288 -14Q279 -17 263 -17H254Q229 -17 227 -5Q225 2 186 311L147 620V624H111'], + + // LATIN CAPITAL LETTER X + 0x58: [686,0,947,38,953,'931 686Q953 686 953 670Q953 650 944 632Q936 624 924 624H914Q823 624 803 611Q800 609 696 503T591 396Q591 394 667 229L743 62H787H814Q846 62 846 44Q843 7 829 2Q825 0 817 0Q813 0 775 1T664 2Q590 2 551 1T508 0H507Q484 0 484 18Q484 19 488 37Q492 56 497 58T534 62L566 63Q567 64 520 169T471 274Q469 274 369 172T268 67L315 62Q320 62 328 62L335 61Q347 58 347 44Q344 10 331 2L326 0L287 1Q263 2 177 2Q95 2 78 1L53 0Q38 6 38 17Q38 40 50 57Q56 62 78 62Q169 62 188 75Q194 77 435 324L444 334L439 347Q437 351 373 492L313 624H268H246Q220 624 212 632Q210 636 210 642Q210 655 215 669T227 684Q230 686 247 686Q295 684 398 684Q438 684 472 684T527 685T551 686Q567 686 572 671Q572 667 568 651Q563 631 558 628T523 624T492 623H488L526 540Q563 457 564 457Q564 456 574 466T604 496T645 537L724 619Q716 622 677 624H673Q645 624 645 640Q645 660 654 678Q659 683 666 686L704 685Q728 684 813 684Q847 684 873 684T913 685T931 686'], + + // LATIN CAPITAL LETTER Y + 0x59: [686,0,675,40,876,'97 624H73Q40 624 40 640Q40 660 49 678Q57 686 77 686Q122 684 228 684Q269 684 304 684T360 685T385 686Q406 686 406 668Q406 662 403 653Q398 631 393 628T361 624H353Q321 624 321 623T376 491T432 360L448 377Q465 394 493 424T553 490L673 620Q662 624 630 624Q606 624 606 640Q608 678 623 684Q627 686 634 686Q638 686 671 685T755 684Q777 684 805 685T841 686Q861 686 868 683T876 669Q876 664 873 652Q868 631 863 628T829 624Q764 622 747 611Q727 590 590 441L437 275L411 170Q385 65 384 64Q384 62 429 62H453Q473 62 478 60T487 48Q488 44 484 29Q479 6 473 3Q468 0 454 0Q450 0 436 0T386 1T294 2Q220 2 181 1T138 0Q121 0 116 15Q120 54 133 60Q137 62 187 62H236L289 275L142 624H97'], + + // LATIN CAPITAL LETTER Z + 0x5A: [686,1,773,68,805,'223 430Q192 430 192 448Q192 450 225 561T261 677Q265 683 270 684Q273 686 534 686Q796 686 797 685Q805 682 805 673Q805 668 804 661T800 648T798 641Q796 637 531 352L266 67L329 66H364Q412 66 446 70T523 96T596 157Q617 186 630 220T649 273T663 297Q667 299 684 299H688Q715 299 715 281Q715 278 673 145T628 8Q626 4 617 0H348Q289 0 221 0T139 -1Q112 -1 99 -1T78 1T69 5T68 12Q68 16 71 31T77 49L84 57Q91 65 104 79T133 110T170 151T213 196L610 624H540Q533 624 514 624T488 624T467 623T443 620T422 616T398 609T373 600Q292 560 255 449Q251 436 246 433T223 430'], + + // LATIN SMALL LETTER A + 0x61: [452,9,633,38,607,'222 -8Q140 -8 89 34T38 158Q38 191 48 227Q72 329 151 390T327 452Q361 452 385 443T421 425T433 416H434L441 421Q448 426 460 430T486 435Q509 435 523 422T538 386Q538 380 522 315T488 179T467 93Q466 87 466 72Q466 42 483 42Q505 42 521 75Q531 94 541 134Q546 155 550 158T571 162H576H587Q607 162 607 148Q606 142 604 132T590 94T566 47T528 9T474 -8Q396 -8 358 40Q295 -8 222 -8ZM404 351Q383 401 324 401Q300 401 270 385T221 330Q206 296 186 220Q166 136 166 106Q166 72 184 58T228 43Q256 43 284 57T328 84T343 103Q343 106 374 228L404 351'], + + // LATIN SMALL LETTER B + 0x62: [694,8,521,45,513,'220 -8Q142 -8 94 35T45 155V167Q45 187 52 218T104 426L153 622H149Q148 622 144 622T134 623T122 624T111 624T101 624T96 625Q84 628 84 642Q84 647 88 661T94 679Q98 684 109 685T185 690Q258 694 272 694Q289 694 293 679Q293 676 263 553L232 429L244 434Q256 440 281 446T331 452Q417 452 465 407T513 285Q513 235 494 184T439 90T346 20T220 -8ZM385 337Q385 400 318 400Q269 400 226 360Q214 349 211 341T191 268Q162 149 162 113Q162 44 226 44Q269 44 299 76T339 135T362 215Q364 222 365 226Q385 303 385 337'], + + // LATIN SMALL LETTER C + 0x63: [451,8,513,40,509,'362 325Q362 344 371 361T390 386L399 394Q390 401 355 401Q276 401 231 338Q207 301 189 230T170 122Q170 43 264 43Q392 43 457 105Q472 120 480 117Q486 114 497 102T509 83Q509 79 502 70T477 47T432 21T360 1T259 -8Q194 -8 148 9T80 54T49 109T40 167Q40 280 129 365T352 451Q390 451 396 450Q448 442 473 416T499 358T477 302T421 274H417Q393 274 378 288T362 325'], + + // LATIN SMALL LETTER D + 0x64: [694,9,610,38,612,'222 -8Q140 -8 89 34T38 158Q38 220 68 285T151 391Q230 452 329 452Q382 452 416 428L422 424Q423 424 447 523L472 622H468Q467 622 463 622T453 623T441 624T430 624T420 624T415 625Q403 628 403 642Q403 647 407 661T413 679Q417 684 428 685T504 690Q577 694 591 694Q608 694 612 679L467 91Q466 87 466 72Q466 43 483 43Q518 43 541 134Q546 155 550 158T571 162H576H587Q607 162 607 148Q606 142 604 132T590 94T566 47T528 9T474 -8Q396 -8 358 40Q295 -8 222 -8ZM404 351Q383 401 324 401Q300 401 270 385T221 330Q206 296 186 220Q166 136 166 106Q166 72 184 58T228 43Q256 43 284 57T328 84T343 103Q343 106 374 228L404 351'], + + // LATIN SMALL LETTER E + 0x65: [452,8,554,42,509,'260 -8Q196 -8 151 9T83 54T52 111T42 169Q42 188 44 210Q50 240 58 266Q127 434 335 451L338 452Q342 452 345 452Q347 452 353 452T363 451Q426 451 464 424T502 352Q502 289 442 250Q381 211 222 211H184Q184 210 181 196T175 162T171 126Q171 43 264 43Q391 43 457 105Q472 120 480 117Q486 114 497 102T509 83Q509 79 502 70T477 47T432 21T360 1T260 -8ZM237 262Q427 266 427 349Q427 368 409 384T354 401Q316 401 287 388T242 354T216 314T202 278L197 263Q197 262 237 262'], + + // LATIN SMALL LETTER F + 0x66: [701,201,568,63,624,'584 444Q597 439 597 426Q597 409 586 387Q580 382 505 382H434V380Q432 378 421 314T395 162T368 30Q324 -164 203 -199Q194 -201 175 -201Q123 -201 94 -177T64 -117T88 -58T145 -33Q169 -33 184 -47T200 -84Q200 -122 166 -150L174 -151H185Q202 -148 217 -112Q222 -94 240 9Q246 40 262 132T293 303T307 382H247H210Q190 382 182 385T173 400Q177 436 189 442Q193 444 256 444H318L319 446Q337 565 355 602Q373 640 404 664T458 694T503 701Q569 701 596 676T624 617Q624 581 599 557T544 533Q520 533 504 547T488 585Q488 596 491 606T499 624T508 637T516 646L520 650Q515 650 509 651Q459 651 459 561V554L458 518L452 484Q446 448 445 447V444H584'], + + // LATIN SMALL LETTER G + 0x67: [452,202,545,0,540,'227 0Q142 0 93 43T43 166Q43 207 58 252T104 341T188 414T310 451L313 452Q316 452 319 452Q321 452 326 452T335 451Q367 451 390 443T425 425L436 416L443 421Q450 426 462 430T488 435Q511 435 525 422T540 386Q540 378 483 151T424 -82Q401 -139 335 -170T167 -202Q72 -202 36 -183T0 -125Q0 -90 24 -67T81 -43Q103 -43 119 -56T136 -99Q133 -124 114 -149L123 -150H183Q222 -150 254 -127T299 -74Q300 -71 306 -47T318 -1T324 23Q323 23 310 18T274 6T227 0ZM407 353Q406 354 404 358T400 365T395 371T388 379T381 385T371 391T360 396T346 400T329 401Q300 401 277 389T240 355T219 317T205 280Q171 148 171 109Q171 77 190 64T235 51T296 67Q322 82 337 98L345 106L407 353'], + + // LATIN SMALL LETTER H + 0x68: [694,8,668,45,642,'477 56Q477 48 479 46T490 43Q522 45 544 75T577 140Q582 156 585 159T605 162H611H622Q642 162 642 148Q642 138 632 114T602 62T550 13T478 -8Q429 -8 394 17T358 83Q358 95 395 199T433 350Q433 400 394 400H388H383Q335 400 291 363Q256 332 236 298Q233 293 202 170T169 40Q160 18 141 5T99 -8Q70 -8 58 9T45 39Q45 51 116 336L188 622H184Q183 622 179 622T169 623T157 624T146 624T136 624T131 625Q119 628 119 642Q119 647 123 661T129 679Q133 684 144 685T220 690Q293 694 307 694Q324 694 328 679Q328 672 294 540Q286 507 278 473T264 420L260 403Q260 400 269 408Q327 451 393 451H401H410Q425 451 439 450T476 442T515 424T544 391T556 337Q556 286 517 179T477 56'], + + // LATIN SMALL LETTER I + 0x69: [694,8,405,24,367,'205 615Q205 646 229 670T283 694Q310 694 324 679T339 641Q339 610 315 586T258 562Q235 562 220 577T205 615ZM24 296Q24 305 34 328T63 380T115 430T187 452Q205 452 223 448T262 435T295 406T308 360Q308 345 287 290T240 170T207 87Q202 67 202 57Q202 42 215 42Q235 42 257 64Q288 92 302 140Q307 156 310 159T330 162H336H347Q367 162 367 148Q367 140 357 117T329 65T276 14T201 -8Q158 -8 121 15T83 84Q83 104 133 229T184 358Q189 376 189 388Q189 402 177 402Q156 402 134 380Q103 352 89 304Q84 288 81 285T61 282H55H44Q24 282 24 296'], + + // LATIN SMALL LETTER J + 0x6A: [694,202,471,-12,456,'321 616Q321 648 346 671T400 694Q425 694 440 680T456 640Q456 609 431 586T376 562Q353 562 337 577T321 616ZM297 360T297 373T294 392T288 400T278 401H276Q241 399 210 372T158 303Q151 287 148 285T129 282H123H116Q102 282 97 284T92 298Q96 331 153 391T279 451Q357 451 388 422T420 354V339L371 142Q363 111 353 71T339 13T329 -30T318 -64T308 -88T296 -109T283 -125T264 -142Q190 -202 88 -202Q44 -202 16 -181T-12 -125Q-12 -93 11 -68T68 -43Q92 -43 108 -58T124 -93Q124 -121 106 -144Q101 -150 103 -150Q120 -150 147 -128T191 -64Q194 -57 242 136T294 345Q297 360 297 373'], + + // LATIN SMALL LETTER K + 0x6B: [694,8,604,45,578,'99 -8Q71 -8 58 9T45 39Q45 51 116 336L188 622H184Q183 622 179 622T169 623T157 624T146 624T136 624T131 625Q119 628 119 642Q119 647 123 661T129 679Q133 684 144 685T220 690Q293 694 307 694Q324 694 328 679Q328 674 280 482Q231 290 231 287Q231 285 234 286Q259 302 294 334T356 390T420 433T493 452Q528 452 546 427T564 364Q564 308 538 282T480 256Q456 256 441 269T425 308Q425 339 444 359T483 384L502 389Q502 395 496 398Q493 400 483 400Q465 400 449 395T409 374T373 347T323 305T268 257Q274 256 282 256Q312 251 329 247T371 232T411 202Q431 181 431 146Q431 132 427 110T422 73Q422 44 440 44H442Q462 44 478 64T502 102T514 141Q518 157 522 159T547 162H558Q578 162 578 148Q578 118 537 56T440 -7H432Q374 -7 337 21T299 94Q299 103 301 116T304 139Q304 164 281 181T235 202L212 206H211Q176 47 160 24Q137 -8 99 -8'], + + // LATIN SMALL LETTER L + 0x6C: [694,9,348,26,296,'157 -8Q138 -8 118 -4T77 11T41 42T27 91V106L156 622H152Q151 622 147 622T137 623T125 624T114 624T104 624T99 625Q87 628 87 642Q87 647 91 661T97 679Q101 684 112 685T188 690Q261 694 275 694Q292 694 296 679L151 91Q150 85 150 71Q150 42 167 42Q186 42 205 75Q216 96 225 134Q230 155 234 158T255 162H260H271Q291 162 291 148Q290 145 289 140T283 118T271 87T254 54T229 23T197 1T157 -8'], + + // LATIN SMALL LETTER M + 0x6D: [453,8,1032,24,1006,'24 296Q25 302 27 312T41 350T65 397T104 435T159 452Q203 452 234 435Q268 419 285 384L295 392Q305 401 317 410T349 429T389 445Q411 451 446 451Q560 451 592 383Q593 380 594 379L595 375L604 384Q675 452 762 452Q893 452 916 367Q918 356 918 334Q918 285 881 183T841 66Q838 43 849 43Q876 43 901 69T940 138Q945 156 949 159T969 162H975H986Q1006 162 1006 148Q1006 138 996 115T966 63T914 13T841 -8Q794 -8 758 16T721 82Q721 96 758 199T796 351Q796 401 753 401Q702 401 662 369T599 298Q597 294 567 172T533 40Q525 22 506 7T462 -8Q435 -8 422 8T409 39Q409 48 425 114T458 248T476 320Q478 330 478 348T474 377T462 393T449 399T433 400H428Q380 400 336 363Q301 332 281 298Q278 293 247 170T214 40Q206 22 187 7T143 -8T104 7T90 39Q90 47 108 124T146 274L164 347Q166 355 166 372Q166 401 149 401Q129 401 115 379T89 306Q84 288 80 285T55 282H44Q24 282 24 296'], + + // LATIN SMALL LETTER N + 0x6E: [453,8,713,24,687,'24 296Q25 302 27 312T41 350T65 397T104 435T159 452Q203 452 234 435Q268 419 285 384L293 391Q363 452 454 452Q575 446 597 367Q599 356 599 334Q599 285 562 183T522 66Q519 43 530 43Q557 43 582 69T621 138Q626 156 630 159T650 162H656H667Q687 162 687 148Q687 138 677 115T647 63T595 13T522 -8Q475 -8 439 16T402 82Q402 96 439 199T477 351Q477 401 434 401Q421 401 409 398Q341 388 285 305L278 295L247 170Q216 46 214 40Q206 22 187 7T143 -8T104 7T90 39Q90 47 108 124T146 274L164 347Q166 355 166 372Q166 401 149 401Q129 401 115 379T89 306Q84 288 80 285T55 282H44Q24 282 24 296'], + + // LATIN SMALL LETTER O + 0x6F: [452,8,585,39,576,'254 -8Q191 -8 146 9T80 54T49 111T39 169Q39 206 53 247T96 329T176 402T292 446Q317 451 336 451L344 452Q353 452 359 452Q457 452 516 408T576 279Q576 169 488 81T254 -8ZM349 400Q321 400 287 385T231 338Q206 301 188 228T170 126Q170 99 178 83Q198 44 260 44Q367 44 409 157Q419 185 432 238T445 317Q445 336 443 348Q435 372 416 384T384 398T349 400'], + + // LATIN SMALL LETTER P + 0x70: [453,194,601,-23,594,'24 296Q25 302 27 312T41 350T65 397T103 435T157 452Q235 452 273 404Q336 452 409 452Q434 452 458 448T507 432T550 402T581 354T593 285Q593 221 564 159T480 53Q401 -8 302 -8Q290 -8 279 -7T259 -3T242 3T228 9T218 14T212 18L209 20Q208 19 190 -55T171 -131T198 -132H213Q240 -132 240 -150Q237 -187 223 -192Q219 -194 212 -194Q208 -194 176 -193T95 -192Q48 -192 24 -193T-3 -194Q-11 -194 -16 -190T-22 -182T-23 -176Q-20 -142 -7 -134Q-3 -132 20 -132H44L164 354Q165 357 165 372Q165 401 148 401Q113 401 90 310Q85 289 82 286T60 282H55H44Q24 282 24 296ZM465 339Q465 373 447 387T403 401Q375 401 347 387T303 360T288 341Q288 338 257 216L227 93Q248 43 306 43Q332 43 361 59T410 115Q425 147 445 224Q465 309 465 339'], + + // LATIN SMALL LETTER Q + 0x71: [452,194,542,38,550,'38 159Q38 209 58 260T113 355T205 425T327 452Q338 452 348 451T366 449T382 444T394 440T405 434T414 429T422 423T429 418Q440 429 481 440T533 452Q540 452 545 447T550 437Q550 432 481 152Q410 -130 410 -131T437 -132H452Q479 -132 479 -150Q476 -187 462 -192Q458 -194 451 -194Q447 -194 414 -193T330 -192Q277 -192 249 -193T217 -194Q202 -194 197 -179Q197 -175 201 -159Q206 -139 211 -136T243 -132H283L319 15L307 10Q295 4 270 -2T220 -8Q134 -8 86 37T38 159ZM402 353Q402 358 395 368T369 390T324 401Q301 401 282 394T249 369T226 338T208 297T196 258T186 218Q166 141 166 107Q166 44 229 44Q265 44 294 61T337 95Q341 100 371 222T402 353'], + + // LATIN SMALL LETTER R + 0x72: [452,8,529,24,500,'24 296Q24 298 28 313T42 352T67 398T104 436T154 452Q198 452 230 437T273 404L282 411Q334 452 393 452Q441 452 470 423T500 350Q500 301 473 279T418 256Q395 256 379 270T363 308Q363 366 424 386Q424 388 420 391T405 398T385 401Q363 401 343 390Q321 380 289 341L252 192Q214 42 212 39Q190 -8 142 -8Q117 -8 103 7T89 39Q89 52 127 202T165 369Q165 402 148 402Q139 402 128 393T110 369Q100 348 90 310Q85 289 82 286T60 282H55H44Q24 282 24 296'], + + // LATIN SMALL LETTER S + 0x73: [451,8,531,57,476,'140 290Q140 311 148 336T176 388T235 433T326 451H336Q355 451 373 449T418 439T460 412T476 363Q476 333 456 311T406 289Q384 289 371 302T357 335Q357 351 364 364T379 384L386 391Q386 392 381 394T362 398T330 400Q299 400 278 393T247 373T235 352T232 335Q232 322 242 312Q258 299 315 290T403 260Q457 224 457 167Q457 152 453 134T435 90T397 43T330 7T229 -8Q133 -8 95 22T57 91Q57 127 81 152T139 177Q161 177 177 164T194 121Q189 80 153 56Q179 43 236 43Q275 43 303 52T343 75T361 101T366 124Q366 148 338 161T272 180T232 186Q187 198 164 227T140 290'], + + // LATIN SMALL LETTER T + 0x74: [643,8,415,21,387,'82 382H55Q21 382 21 399Q21 422 33 439Q39 444 93 444H144L162 517Q163 522 167 541T174 567T181 589T192 611T206 627T226 639T253 643Q276 643 291 630T306 594Q306 586 288 514Q284 499 280 481T273 454L271 445Q271 444 317 444Q322 444 331 444T345 445Q377 445 377 428Q377 408 368 390Q360 382 341 382H306H255Q182 86 182 75Q182 43 201 43H204Q242 46 279 81Q298 101 309 119T323 145T330 157T350 162H356H363Q377 162 382 160T387 146Q385 136 372 114T337 64T275 14T192 -7Q131 -7 95 19T59 90V105L128 381Q128 382 82 382'], + + // LATIN SMALL LETTER U + 0x75: [452,9,681,24,655,'189 389Q189 397 187 399T176 401Q150 399 126 372T89 304Q84 288 81 285T61 282H55H44Q24 282 24 296Q24 307 35 331T65 383T117 431T187 452Q237 452 272 427T308 362Q308 347 273 254T238 111Q238 43 291 43Q319 43 344 58T380 86T391 103T426 247T464 396Q472 414 491 429T535 444T574 429T588 397Q588 390 570 315T534 168L516 97Q514 89 514 72Q514 42 531 42Q544 42 556 56Q574 76 589 134Q594 155 598 158T619 162H624H635Q655 162 655 148Q654 142 652 132T638 94T614 47T575 9T520 -8Q509 -8 498 -7T478 -3T461 2T446 8T434 16T424 23T416 29T410 35T406 39L405 41L397 34Q347 -7 288 -7H281Q148 -7 122 78Q116 95 116 125V136Q116 174 152 273T189 389'], + + // LATIN SMALL LETTER V + 0x76: [453,8,567,24,540,'380 367Q380 397 406 425T465 453Q493 453 516 430T540 357Q540 314 524 250T467 115T373 13Q338 -8 292 -8Q218 -8 167 23T116 129Q116 178 152 275T189 388Q189 396 187 398T176 401Q148 398 125 372T89 304Q84 288 81 285T61 282H55H44Q24 282 24 296Q24 306 34 330T64 382T116 431T189 452Q231 452 269 429T308 362Q308 346 273 255T238 114Q238 43 306 43Q336 43 363 65T407 118T437 182T456 239T462 268Q462 290 417 315Q380 335 380 367'], + + // LATIN SMALL LETTER W + 0x77: [453,8,831,24,796,'636 367Q636 400 664 426T719 453Q748 453 772 431T796 357Q796 321 782 256T727 112T633 6Q604 -8 567 -8Q466 -8 415 43Q414 42 410 38T403 31T396 25T388 18T378 11T367 5T355 0T340 -4T324 -7T306 -8Q249 -8 209 5T151 40T125 84T117 129Q117 176 153 274T190 388Q190 408 158 396Q112 376 90 306Q85 288 81 285T61 282H55H44Q24 282 24 296Q24 305 34 328T63 380T114 430T187 452Q240 452 274 427T309 362Q309 346 275 255T240 117Q240 43 317 43Q325 43 333 45T347 50T359 57T369 66T377 75T383 83T388 90L390 95Q390 99 389 110T387 129Q387 139 391 167Q393 177 419 282T448 396Q456 414 475 429T519 444Q546 444 559 428T572 397Q572 384 542 265T511 114Q511 43 579 43Q608 43 633 66T673 122T699 188T714 244L718 267Q718 291 673 315Q636 335 636 367'], + + // LATIN SMALL LETTER X + 0x78: [452,9,659,43,599,'74 282H63Q43 282 43 296Q43 298 45 307T56 332T76 365T110 401T159 433Q200 451 233 451H236Q273 451 282 450Q358 437 382 400L392 410Q434 452 483 452Q538 452 568 421T599 346Q599 303 573 280T517 256Q494 256 478 270T462 308Q462 343 488 367Q501 377 520 385Q520 386 516 389T502 396T480 400T462 398Q429 383 415 341Q354 116 354 80T405 44Q449 44 485 74T535 142Q539 156 542 159T562 162H568H579Q599 162 599 148Q599 135 586 111T550 60T485 12T397 -8Q313 -8 266 35L258 44Q215 -7 161 -7H156Q99 -7 71 25T43 95Q43 143 70 165T125 188Q148 188 164 174T180 136Q180 101 154 77Q141 67 122 59Q124 54 136 49T161 43Q183 43 200 61T226 103Q287 328 287 364T236 400Q200 400 164 377T107 302Q103 288 100 285T80 282H74'], + + // LATIN SMALL LETTER Y + 0x79: [452,202,590,24,587,'206 -150Q240 -150 268 -134T314 -95T344 -48T362 -7T367 14Q339 -7 280 -7Q230 -7 195 5T144 39T122 79T115 122Q115 175 152 274T189 388Q189 396 187 398T176 401Q148 398 125 372T89 304Q84 288 81 285T61 282H55H44Q24 282 24 296Q24 306 34 329T64 381T116 431T188 452Q239 452 273 427T308 361Q308 347 273 253T237 109Q237 43 291 43T388 98Q388 99 425 246T463 396Q471 414 490 429T534 444T573 430T587 399Q587 386 537 186T483 -25Q461 -84 410 -126T296 -188Q248 -202 204 -202Q127 -202 96 -175T64 -114Q64 -82 86 -57T144 -31Q169 -31 184 -45T199 -83Q199 -89 198 -94T196 -104T193 -113T189 -120T184 -128T179 -134T173 -141T168 -147Q189 -150 206 -150'], + + // LATIN SMALL LETTER Z + 0x7A: [452,8,555,34,539,'66 -8H60Q34 -8 34 5Q34 9 42 22T70 59T115 110Q162 156 255 229T381 332L389 339H381Q348 332 298 329T212 325T172 321Q168 318 151 318H146Q116 318 116 332Q116 334 118 342Q128 374 154 402Q205 452 265 452Q304 452 352 422T426 392Q441 392 462 421T485 451T508 452H518Q539 452 539 438Q539 431 516 401T458 334Q412 289 312 210Q229 146 191 111L183 103H195Q203 103 213 104T240 107T268 110Q301 114 337 116T391 119T428 123T455 134T469 157Q473 166 495 166Q521 166 525 161Q532 156 528 141Q510 81 456 37T337 -7Q297 -7 251 22T177 52Q154 52 134 38T100 8L88 -7Q86 -8 66 -8'], + + // GREEK CAPITAL LETTER GAMMA + 0x393: [680,0,657,43,777,'257 618H231Q198 618 198 636Q202 672 214 678L219 680H763Q769 677 772 673T776 666L777 664Q777 659 766 549T751 433Q745 424 723 424Q704 424 699 427T693 441Q693 444 695 467T697 513Q697 543 689 563T670 594T636 610T592 617T534 618H516H456L455 614Q455 613 387 339T317 64Q317 62 375 62H411Q430 62 438 59T447 44Q444 7 430 2Q426 0 416 0Q409 0 359 1T231 2Q152 2 111 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L163 66Q163 67 231 341T301 616Q301 618 257 618'], + + // GREEK CAPITAL LETTER DELTA + 0x394: [711,0,958,59,904,'65 0Q59 6 59 9T61 16Q64 20 334 357T608 698Q616 706 629 710Q630 710 634 710T644 710T656 711Q686 711 694 703Q698 699 700 693Q706 674 805 345T904 14Q904 7 894 1L479 0H65ZM630 342L567 551L232 134L462 133H693Q693 137 630 342'], + + // GREEK CAPITAL LETTER THETA + 0x398: [702,17,867,54,844,'358 -17Q218 -17 136 49T54 243Q54 298 70 356T123 474T211 582T338 663T504 702H527Q578 702 590 701Q709 688 776 622T844 441Q844 379 825 315T765 192T668 86T532 11T358 -17ZM700 474Q700 525 685 561T642 616T587 643T528 652Q390 652 301 534Q252 472 225 373T198 210Q198 160 214 125T256 71T311 44T372 36Q484 36 571 119Q639 189 669 299T700 474ZM366 428Q366 425 364 419T362 411H466L570 412L573 422Q576 437 581 441T604 445Q620 445 623 444Q636 440 636 429Q636 423 616 340T593 253Q586 243 572 243H566Q545 243 539 249Q536 251 535 253T534 258T534 263T535 270T537 277H329L326 266Q323 251 318 247T295 243Q279 243 276 244Q263 248 263 259Q263 265 283 346Q288 366 295 394Q304 431 308 438T326 445H334H338Q366 445 366 428'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [711,0,806,44,776,'439 0Q425 6 425 18Q425 35 436 57Q442 62 485 62Q525 62 525 64L478 483Q478 484 465 463T422 394T350 277Q222 69 222 68Q223 67 224 67Q229 64 271 62Q290 62 297 59T305 45Q305 38 302 28Q297 9 293 5T274 0Q270 0 238 1T159 2Q133 2 105 2T72 1Q56 1 52 3T44 15Q44 19 48 35Q53 55 58 58T89 62Q142 64 151 73Q154 76 345 387T538 699Q550 711 570 711H580H592Q613 711 618 695Q619 692 654 379T690 63Q690 62 726 62H746Q776 62 776 44Q773 7 759 2Q755 0 747 0Q743 0 707 1T600 2Q502 2 476 1L439 0'], + + // GREEK CAPITAL LETTER XI + 0x39E: [675,0,841,62,867,'206 466Q175 466 175 484Q175 487 201 574T230 666Q235 673 241 675H547Q853 675 857 673Q867 668 867 657Q867 655 850 569T832 478Q827 466 808 466H802H795Q773 466 771 481Q771 486 775 508T779 541V549H774Q755 552 505 552Q281 551 267 548Q262 548 255 533T242 496T233 472Q228 466 206 466ZM259 255H252Q231 255 228 270Q228 275 248 355T270 439Q277 448 288 448H298Q321 448 326 440Q331 434 326 414Q326 413 486 413H647L650 424Q654 441 658 444T678 448H683H693Q702 448 705 446T714 432L694 348Q674 267 669 261Q664 255 652 255H643Q622 255 617 261Q613 265 613 272T613 283T616 289Q616 290 456 290H295L294 285Q293 280 292 275T288 265T281 257Q278 255 259 255ZM150 131Q150 124 281 123Q346 123 390 123Q640 123 664 126Q668 127 675 127Q686 131 704 198Q708 213 713 216T733 220H738Q755 220 759 218Q768 213 768 203Q768 198 741 105T710 8Q708 4 699 0H388Q77 0 73 2Q62 7 62 18Q62 27 81 115Q99 206 102 212Q106 220 120 220H129Q140 220 145 220T155 215T160 202Q160 196 159 192Q150 145 150 131'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [680,0,982,43,1026,'257 618H231Q198 618 198 636Q202 672 214 678L219 680H1011Q1022 675 1026 665Q1022 626 1009 620Q1005 618 956 618H907L906 614Q906 613 838 339T768 64Q768 62 812 62H839Q871 62 871 44Q867 6 854 2L850 0L808 1Q782 2 675 2Q600 2 560 1T516 0Q499 0 494 15Q498 54 511 60Q515 62 564 62H613L614 66Q614 67 682 341T752 616Q752 618 604 618H456L455 614Q455 613 387 339T317 64Q317 62 361 62H388Q420 62 420 44Q416 6 403 2L399 0L357 1Q331 2 224 2Q149 2 109 1T65 0Q48 0 43 15Q47 54 60 60Q64 62 113 62H162L163 66Q163 67 231 341T301 616Q301 618 257 618'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [686,0,885,69,902,'847 430Q828 430 823 434T817 450Q817 454 817 466T818 487Q818 526 809 551T784 591T737 613T675 622T590 624H528H430L513 487Q594 351 596 345Q596 335 590 330Q583 323 418 204L250 81L363 80Q533 80 591 89T694 142Q739 185 765 252Q772 268 776 271T799 274Q816 274 820 272Q832 266 830 254Q829 250 784 130T736 7Q732 3 725 0H405Q84 0 80 2Q69 7 69 18Q69 26 75 32Q76 32 98 48T168 100T255 164L432 293Q429 300 329 465T225 637Q223 675 245 686H888Q900 680 902 671Q902 667 890 556T876 441Q871 430 847 430'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [703,0,671,32,802,'32 544Q32 586 91 644T229 703Q277 703 311 683T363 628T389 560T397 491V478L404 491Q455 589 526 646T677 703Q730 703 766 671T802 584Q802 551 793 541T766 531H757L736 532L732 535L729 539V549Q731 569 715 575T658 581H650Q545 581 477 443Q453 392 443 351Q441 345 424 273T389 133T371 64Q371 62 428 62H461Q483 62 492 59T501 44Q498 10 485 2L480 0L431 1Q401 2 278 2T127 1L85 0Q71 5 71 17Q71 24 74 33Q77 46 78 49T84 57T95 61T118 62H154H216Q232 126 249 193T273 287T287 345T296 388T299 416T300 452Q294 581 198 581Q154 581 132 575T106 562T99 546T86 533Q82 531 60 531L39 532Q32 537 32 544'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [686,0,767,29,737,'323 624H293Q267 624 261 626T251 639Q255 678 268 684Q272 686 293 686Q348 684 475 684Q557 684 600 685T647 686H648Q671 686 671 668Q667 632 655 626Q650 624 588 624H525L500 520Q500 519 520 518T579 507T656 480Q737 440 737 372Q737 294 648 237Q562 180 426 169L412 168L399 118Q386 66 386 65L385 62H443H479Q498 62 506 59T515 44Q511 8 499 2L494 0L447 1Q417 2 298 2Q212 2 167 1T118 0Q100 0 95 15Q99 54 112 60Q116 62 179 62H241Q242 64 254 114T266 167Q266 168 262 168Q256 168 237 170T180 181T110 205T54 249T29 316Q29 391 112 446T327 516Q345 518 349 518Q351 518 353 518L355 519Q356 520 368 570T381 623Q381 624 323 624ZM342 466Q341 467 339 467Q320 467 283 455T225 420Q181 361 181 296Q181 273 193 257T222 233T254 222T277 219L280 220Q281 220 311 342T342 466ZM583 389Q583 409 576 423T557 444T533 456T509 463T492 467H486L455 343Q444 300 437 271T428 231T426 219Q430 219 445 222T483 232T521 250Q551 269 567 310T583 389'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [686,0,714,22,790,'205 471Q205 445 196 403T186 333Q186 303 194 281T218 248T240 233T262 224L361 623Q361 624 303 624Q296 624 284 624T266 623Q232 623 232 641Q232 648 235 657Q240 678 244 682T268 686H273Q329 684 457 684Q502 684 540 684T599 685T626 686H628Q651 686 651 668Q649 633 631 624H505L407 227Q410 228 416 229T439 239T472 259T507 294T539 345Q549 365 563 416T597 498T649 538Q657 540 717 540Q725 540 737 540T755 541Q790 541 790 524Q790 512 784 497Q780 491 767 490T742 477Q736 471 731 463T722 449T715 433T710 419T705 403T701 389Q686 340 658 302T599 240T530 201T463 179T404 169L391 168L379 116Q365 67 365 63Q365 62 422 62H455Q477 62 486 59T495 44Q492 10 479 2L474 0L427 1Q397 2 278 2T131 1L90 0Q76 5 76 17Q76 24 79 33Q82 46 83 49T89 57T100 61T123 62H159H221Q247 162 247 168H244Q241 169 239 169Q202 176 178 182T123 207T74 252Q46 291 46 351Q46 375 52 404T59 454Q59 489 40 489Q32 489 27 494T22 507Q22 535 37 538Q40 540 99 540H128Q168 540 186 528T205 471'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [703,0,879,93,887,'162 119Q181 115 235 115L273 116Q273 133 231 222T180 345Q173 368 173 391V406V414Q173 477 214 540Q255 600 315 635Q353 661 423 682T585 703Q656 703 711 690T799 656T851 608T879 555T886 503Q886 449 860 401Q840 359 810 322T725 230T643 146Q619 117 619 116T650 115Q707 115 722 120Q730 123 750 165T775 210Q779 212 796 212Q828 212 828 196Q828 191 807 144T764 52L743 7Q740 4 740 4T733 2T717 0T686 0H632H573Q535 0 526 3T517 17Q517 44 544 103T617 243T671 341Q729 454 729 535Q729 599 686 625T583 652Q549 652 517 645T450 616T388 561T344 470T327 340Q327 304 331 237T336 135Q336 93 330 50T313 2Q308 0 208 0H142Q107 0 100 4T93 25Q93 28 93 41T95 77T96 118L100 199Q105 208 109 210T131 212Q147 212 151 210T161 199V160Q161 131 162 125V119'], + + // GREEK SMALL LETTER ALPHA + 0x3B1: [452,8,761,39,712,'39 166Q39 213 59 261T117 353T219 424T362 452Q420 452 466 433T536 384T573 325T586 269V265Q593 272 609 308T636 381Q640 397 644 399T669 402H680Q700 402 700 388Q700 379 691 351T659 276T604 188L593 173L595 153Q600 79 612 43H618Q634 45 642 51T653 64T658 71Q661 73 684 73Q712 73 712 59Q712 39 685 16T603 -7Q588 -7 575 -5T551 2T532 12T516 24T503 37T494 49T487 60T481 69L469 61Q362 -8 251 -8Q159 -8 99 36T39 166ZM260 43Q310 43 361 63T438 101T465 124Q458 240 453 277Q435 401 354 401Q291 401 245 355Q230 337 217 313Q201 279 186 216T170 126Q170 72 208 54Q230 43 260 43'], + + // GREEK SMALL LETTER BETA + 0x3B2: [701,194,660,28,638,'59 -194H49Q31 -194 28 -182Q28 -178 107 139T192 473Q212 533 248 580T324 652T395 689T450 701H461Q514 701 551 688T605 652T630 607T637 561Q637 546 634 526T611 465T556 393Q572 382 590 347T608 262Q608 146 522 69T299 -8Q279 -8 261 -6T228 2T204 13T183 26T169 37T157 48L150 56L120 -64Q113 -90 104 -128Q93 -175 89 -184T73 -194H59ZM531 592Q531 651 463 651Q399 651 341 600T253 466Q250 458 217 327T182 185Q180 176 180 159Q180 108 212 76T301 44Q330 44 354 51T393 65T423 91T444 118T459 151T468 179T475 206Q490 264 491 296Q491 313 489 326T484 345L482 350Q481 350 477 348T464 344T444 340T413 335T372 333T334 334T301 340T274 355T265 380Q265 444 397 444Q425 444 445 441T476 436L485 433Q489 433 499 458Q509 482 520 527T531 592ZM424 390Q424 393 389 393Q383 393 374 393T362 392Q348 392 333 388Q345 384 379 384Q424 384 424 390'], + + // GREEK SMALL LETTER GAMMA + 0x3B3: [451,211,590,5,617,'5 269Q5 285 19 312T57 368T124 421T215 451H241Q274 451 303 439T353 406T389 361T416 311T432 266T442 232L444 220L446 216L450 226Q473 278 513 357T561 441Q566 444 584 444H594Q617 444 617 430Q617 426 596 389T536 273T462 110L452 84L451 70Q447 12 427 -76T388 -192Q375 -211 355 -211Q339 -211 332 -198T325 -171Q325 -114 386 64L393 84V98Q393 181 371 241Q360 280 319 303T210 327Q158 327 126 317T84 296T68 272T59 258Q55 256 36 256Q23 256 18 256T9 260T5 269'], + + // GREEK SMALL LETTER DELTA + 0x3B4: [726,8,522,39,513,'216 610Q216 640 229 664T262 700T299 719T327 725Q330 725 406 709T487 690Q513 681 513 651Q513 627 494 607T450 587Q417 587 378 631Q346 663 314 663Q286 663 272 639Q271 637 271 634Q271 609 344 536L397 484Q438 448 458 410T478 313Q478 234 443 147T338 18Q298 -8 249 -8Q214 -8 180 0T113 26T60 81T39 168Q39 200 50 237T87 316T160 391T272 442L260 465Q216 553 216 610ZM348 235Q348 274 336 313T310 372L298 392Q295 391 290 390T269 380T241 359T212 323T185 267Q157 168 157 130Q157 83 186 63T255 43Q280 43 300 67Q317 89 332 138T348 235'], + + // GREEK SMALL LETTER EPSILON + 0x3B5: [461,18,529,36,481,'224 -17Q126 -17 81 22T36 112Q36 178 84 226L93 236L88 246Q79 264 79 289Q79 341 124 388Q201 461 333 461Q402 461 455 425Q480 409 481 390Q481 365 464 350T428 334Q415 334 387 352T313 370Q141 370 141 293Q141 275 146 270Q147 270 148 270T155 272Q202 291 263 291H270Q349 291 349 244Q349 195 281 183Q274 182 239 182Q201 182 184 185T137 200Q123 188 112 168T100 129T112 98T148 81T189 75T237 74H243H251Q288 74 310 75T359 86T398 112Q405 124 417 124Q426 124 432 117T439 100Q439 88 427 70T390 32T322 -3T224 -17ZM286 238Q286 240 253 240Q245 240 234 239T216 237T209 235Q209 232 250 232Q286 232 286 238'], + + // GREEK SMALL LETTER ZETA + 0x3B6: [711,202,508,48,521,'361 711Q373 711 381 703T389 683Q389 681 388 676T383 656T376 618V612H379Q385 618 429 618Q521 618 521 572Q521 551 506 534Q483 510 415 507Q385 507 371 511T336 536L326 528Q254 472 204 381T154 209Q154 190 157 177Q159 165 162 154T170 135T182 119T195 106T212 95T229 86T249 78T269 72T290 66T311 60Q385 37 388 36Q437 14 454 -36Q456 -46 456 -64Q456 -83 455 -90Q445 -132 413 -167T333 -202Q300 -202 257 -191T206 -169Q203 -164 203 -158Q203 -148 210 -140T231 -130Q239 -130 263 -139T326 -151H329Q337 -151 342 -150T352 -143T357 -123Q356 -117 355 -113T350 -104T344 -96T335 -90T324 -85T310 -80T294 -74T275 -68T254 -62Q253 -62 231 -56T205 -48T179 -39T150 -26T125 -10T100 11T80 37T62 70T53 109T48 157Q48 281 123 396T317 586V612Q319 638 320 649T325 678T338 703T361 711ZM454 564Q445 567 424 567Q407 567 398 565T387 563Q387 558 411 558Q434 558 450 562L454 564'], + + // GREEK SMALL LETTER ETA + 0x3B7: [453,211,600,24,600,'24 296Q25 302 27 312T41 350T65 397T103 435T157 452Q202 452 233 435Q267 419 284 384L294 392Q304 401 316 410T348 429T388 445Q410 451 445 451H453Q468 451 482 450T519 443T558 425T587 391T600 337V327Q600 311 538 64Q484 -158 478 -168Q457 -211 409 -211Q386 -211 372 -197T357 -161Q357 -158 415 80Q476 330 477 348Q477 366 473 377T461 393T448 399T432 400H427Q379 400 335 363Q300 332 280 298Q277 293 246 170T213 40Q205 22 186 7T142 -8T103 7T89 39Q89 49 106 117T142 260T164 351Q166 363 166 372Q166 402 148 402Q126 402 110 369Q100 350 90 310Q85 289 82 286T60 282H55H44Q24 282 24 296'], + + // GREEK SMALL LETTER THETA + 0x3B8: [702,8,562,40,554,'213 -8Q130 -8 85 50T40 200V207Q40 303 83 428Q122 535 189 608Q279 702 381 702Q410 702 437 693T492 661T537 593T554 486Q554 428 539 362T495 230T425 111T330 25T213 -8ZM433 562Q433 600 419 625T377 651Q363 651 348 644T311 619T268 557T229 453Q225 441 217 411T208 378H401Q433 500 433 562ZM161 140Q161 43 217 43Q249 43 280 74Q310 103 332 150T378 287Q385 313 385 315Q385 316 289 316H192Q191 308 183 275T169 205T161 140'], + + // GREEK SMALL LETTER IOTA + 0x3B9: [452,8,412,38,386,'161 -8Q111 -8 75 16T38 85Q38 95 48 121T80 214T123 368L124 374Q126 381 127 386T132 399T139 414T149 428T162 440T180 448T203 452Q226 452 241 439T257 404Q257 386 230 290T171 111Q157 73 157 57Q157 43 166 43Q209 43 258 69T322 144Q326 157 330 159T348 162H355H366Q386 162 386 148Q386 143 383 132T367 100T335 61Q301 27 253 10T161 -8'], + + // GREEK SMALL LETTER KAPPA + 0x3BA: [452,8,668,45,642,'258 405Q258 394 251 364T237 308T230 281T238 284T270 306T330 349Q365 377 389 394T450 427T519 444Q545 444 559 430T574 391Q574 360 551 336T491 312Q469 312 454 326T439 364Q439 372 438 372Q433 372 395 344T320 289T283 260H285Q287 260 290 260T297 259Q495 248 495 146Q495 132 491 110T486 74Q486 43 505 43Q520 43 531 53Q559 72 578 141Q582 157 586 159T611 162H622Q642 162 642 148T627 100T578 29T504 -7H495Q435 -7 399 22T363 96Q363 111 366 122T369 142Q369 155 364 165T347 182T326 193T298 200T269 204T238 207T212 210L211 206L190 123L169 40Q161 22 142 7T98 -8T59 7T45 39Q45 48 67 139T112 317L134 404Q142 424 161 438T204 452Q226 452 242 440T258 405'], + + // GREEK SMALL LETTER LAMDA + 0x3BB: [694,13,671,40,652,'95 -13Q70 -13 55 4T40 41Q40 65 61 88Q65 92 210 207T357 322L235 602Q217 640 185 643Q182 643 178 644T173 645Q161 651 161 666Q161 677 167 684T181 692Q189 694 212 694Q335 694 358 660Q362 653 500 340T647 18Q652 10 652 6Q652 -8 622 -8H589H538L526 -5Q506 1 500 8Q494 16 444 128Q442 133 440 138L387 259L265 134Q156 20 137 4T95 -13'], + + // GREEK SMALL LETTER MU + 0x3BC: [452,211,708,34,682,'294 -8Q265 -8 244 -5T213 1T201 4Q200 4 192 -32T172 -111T155 -168Q134 -211 86 -211Q62 -211 48 -196T34 -158Q37 -144 103 123T174 404Q182 424 201 438T244 452Q271 452 284 436T298 404Q298 392 267 269T235 114Q235 43 305 43Q342 43 375 68T418 110Q420 112 455 253T492 397Q514 444 562 444Q587 444 601 429T615 397Q615 387 599 320T563 178T542 93Q540 81 540 72Q540 42 558 42Q580 42 596 75Q606 94 616 134Q621 155 624 158T646 162H651H662Q682 162 682 148Q681 142 679 132T665 94T641 47T602 9T548 -8Q523 -8 502 -3T468 11T446 27T432 40L429 46Q367 -8 294 -8'], + + // GREEK SMALL LETTER NU + 0x3BD: [452,2,577,38,608,'88 382Q70 382 65 385T59 402T64 427T78 443Q79 444 157 448T247 452Q256 452 261 448T266 440L267 437Q267 432 223 252L177 71L192 77Q293 117 371 199T480 388Q489 424 511 438T556 452Q579 452 593 438T608 402Q608 378 593 340T540 251T446 152T299 62T96 -1Q91 -2 78 -2Q38 -2 38 15Q38 22 82 198L127 379Q124 382 88 382'], + + // GREEK SMALL LETTER XI + 0x3BE: [711,201,508,23,490,'287 648Q291 671 293 680T305 700T329 711Q339 711 347 705T356 687Q356 680 351 653T345 619Q345 615 346 615Q358 618 398 618Q490 618 490 572Q490 553 476 536T434 512Q411 508 378 508H366Q332 508 306 534L298 525Q271 496 254 456T237 375Q237 336 244 336Q272 346 319 346H325Q354 346 372 344T406 331T422 300Q422 252 350 238Q332 236 303 236Q286 236 269 238T240 242T218 247T202 252L196 254Q191 254 174 237T141 191T124 139Q124 108 151 92T267 46Q285 40 295 37Q308 33 332 25T366 13T392 3T415 -8T432 -20T445 -36T451 -55T454 -80Q454 -118 427 -153T358 -199Q349 -201 327 -201Q313 -201 298 -200T271 -196T246 -191T226 -185T210 -180T200 -176L196 -174Q187 -170 187 -158T196 -138T216 -130Q217 -130 254 -140T329 -151Q349 -151 349 -135Q349 -127 340 -122T293 -104Q260 -93 238 -85Q130 -48 115 -41Q71 -19 47 15T23 88Q23 126 48 179T130 277L144 288L136 297Q99 336 99 390Q99 456 148 514T285 602V619Q285 624 286 635T287 648ZM355 563Q362 560 376 558Q424 558 423 564Q405 567 390 567Q369 567 355 563ZM279 292Q297 287 315 287Q355 287 355 293Q355 296 321 296Q316 296 308 296L301 295Q295 295 289 294L279 292'], + + // GREEK SMALL LETTER OMICRON + 0x3BF: [452,8,585,39,576,'254 -8Q191 -8 146 9T80 54T49 111T39 169Q39 206 53 247T96 329T176 402T292 446Q317 451 336 451L344 452Q353 452 359 452Q457 452 516 408T576 279Q576 169 488 81T254 -8ZM349 400Q321 400 287 385T231 338Q206 301 188 228T170 126Q170 99 178 83Q198 44 260 44Q367 44 409 157Q419 185 432 238T445 317Q445 336 443 348Q435 372 416 384T384 398T349 400'], + + // GREEK SMALL LETTER PI + 0x3C0: [444,8,682,23,674,'55 289H43Q23 289 23 303Q23 308 33 322Q116 434 199 443Q200 444 418 444Q591 444 617 444T652 439Q674 426 674 400Q674 378 661 360T625 335Q621 334 549 333H479L477 321Q476 312 476 279Q476 219 491 174T521 104T536 65Q536 38 511 15T457 -8Q403 -8 386 94Q384 110 384 139Q384 181 391 229T406 304L413 331Q413 333 365 333H316L315 329Q315 328 312 314T301 272T288 220Q274 167 258 103Q244 49 240 38T228 18Q225 16 224 14Q200 -8 172 -8Q146 -8 132 7T118 44Q118 54 121 61Q122 65 142 102T190 195T235 293Q250 329 250 333Q177 333 166 332Q115 328 88 301L77 290L55 289'], + + // GREEK SMALL LETTER RHO + 0x3C1: [451,211,612,34,603,'307 -8Q277 -8 251 0T215 14L205 20Q203 18 193 -25T171 -114T155 -168Q134 -211 87 -211Q64 -211 49 -198T34 -162Q34 -158 137 254Q153 299 179 334T232 390T277 419T311 434Q357 451 403 451Q435 451 455 449T506 435T560 400Q603 357 603 285Q603 172 520 82T307 -8ZM474 343Q474 364 458 382T409 400H406Q339 400 299 341Q281 313 264 257Q261 248 242 170T222 89Q222 84 230 74T260 54T308 43Q334 43 365 57T417 110Q437 145 456 228Q474 298 474 332V343'], + + // GREEK SMALL LETTER FINAL SIGMA + 0x3C2: [451,105,424,33,457,'33 209Q33 277 80 334T195 421T330 451H344Q410 451 439 429Q457 417 457 402Q457 386 445 375T420 363Q415 363 406 368T383 383T354 398Q347 400 330 400Q256 400 196 361T135 265V257Q135 242 147 225T174 199L358 107Q400 77 400 28T362 -63T271 -105Q254 -105 229 -99T195 -86Q188 -82 188 -71Q188 -56 197 -50T216 -44Q225 -44 237 -48T270 -53H282Q293 -44 293 -31Q293 -19 283 -10Q278 -4 200 33T115 76Q77 98 55 133T33 209'], + + // GREEK SMALL LETTER SIGMA + 0x3C3: [445,8,686,35,677,'35 151Q35 190 51 236T99 327T184 404T306 443Q307 443 316 443T342 443T378 444T425 444T476 444Q606 444 626 444T655 439Q677 426 677 400Q677 358 639 340Q625 333 563 333Q510 333 510 331Q518 319 518 272Q518 155 437 74T226 -8Q123 -8 79 41T35 151ZM396 278Q396 314 375 323T305 332Q249 332 222 310T180 243Q171 219 162 178T153 116V110Q153 43 234 43Q347 43 382 199Q383 203 383 204Q396 255 396 278'], + + // GREEK SMALL LETTER TAU + 0x3C4: [444,13,521,23,610,'55 289H43Q23 289 23 303Q23 308 33 322Q116 434 199 443Q200 444 386 444Q571 444 577 442Q588 441 599 432T610 402Q610 359 572 340Q561 335 547 334T452 333H353V331Q352 330 342 261T320 119T306 40Q300 18 281 3Q257 -13 233 -13Q210 -13 196 0T181 35Q181 44 182 48Q183 53 229 187T279 331Q279 333 228 333H209Q163 333 136 328T88 301L77 290L55 289'], + + // GREEK SMALL LETTER UPSILON + 0x3C5: [453,9,631,24,604,'189 388Q189 396 187 398T176 401Q144 399 122 369T89 304Q84 288 81 285T61 282H55H44Q24 282 24 296Q24 306 34 330T64 382T116 431T188 452Q232 452 270 430T308 361Q308 345 275 258T241 123Q241 44 336 44H344Q380 44 415 73T474 140T511 214T526 267Q526 280 513 292Q505 301 486 311T456 333T444 367Q444 400 471 426T529 453Q555 453 579 431T604 358Q604 327 592 271T557 172Q550 157 541 142T510 97T464 47T404 9T328 -8Q264 -8 219 5T154 41T125 85T117 131Q117 182 153 277T189 388'], + + // GREEK SMALL LETTER PHI + 0x3C6: [452,216,747,52,703,'238 4Q230 5 218 8T174 26T118 58T73 112T53 190Q53 219 60 246Q77 313 103 362T143 426T163 443Q165 444 186 444Q217 444 217 432Q217 425 188 392Q157 351 137 291T116 206Q116 127 263 109L276 107L288 139Q347 304 414 378T566 452Q621 449 662 412T703 286Q698 167 598 82T357 -8H332V-11Q332 -12 327 -46T317 -116T310 -157Q306 -180 286 -198T234 -216Q211 -216 197 -203T183 -168Q183 -160 184 -155Q184 -152 198 -112T225 -34T238 4ZM637 260Q637 303 607 322T541 341Q502 341 466 319T405 264Q368 218 356 159Q348 111 348 104Q348 103 361 103Q502 103 569 152T637 260'], + + // GREEK SMALL LETTER CHI + 0x3C7: [452,201,718,32,685,'58 -194Q32 -194 32 -164Q32 -153 46 -139L175 -13Q296 104 296 106Q271 232 226 308Q165 401 141 401Q128 401 117 390T100 365Q94 350 91 349T69 346H45Q35 348 35 359Q35 380 62 411T133 450Q143 452 165 452Q286 452 329 402Q347 379 366 333T394 254T404 215Q404 213 405 213Q405 212 420 227T463 268T520 324Q637 437 640 438Q647 444 661 444Q667 444 676 438T685 419Q685 405 670 389T549 271L420 145Q433 85 444 53Q466 -25 509 -88T575 -151Q590 -151 600 -140T617 -114T626 -98Q629 -96 650 -96H655Q681 -96 681 -108Q681 -114 679 -119Q670 -148 646 -169T591 -199Q581 -201 550 -201Q422 -201 381 -143Q345 -88 316 20L311 39L230 -40Q144 -126 114 -153Q85 -182 77 -188T58 -194'], + + // GREEK SMALL LETTER PSI + 0x3C8: [695,202,758,24,732,'244 141Q244 117 254 98T277 70T305 55T329 48T342 47L344 48L424 366Q501 678 505 686Q508 691 512 692T533 694T555 693T562 688T565 683Q565 678 486 362T406 45Q406 43 415 43Q467 49 514 78T590 143T636 213T653 266Q653 282 641 293T613 311T585 332T572 367Q572 397 598 425T657 453Q684 453 708 430T732 358Q732 330 723 287T706 225Q671 124 578 58T401 -8H393L370 -101Q346 -196 345 -197Q340 -202 316 -202H306Q286 -202 286 -188Q286 -187 296 -144T318 -57T331 -8Q331 -6 328 -6Q290 -6 233 11T148 62Q119 97 119 146Q119 181 154 275T190 388Q190 401 181 401Q154 401 129 375T90 306Q85 288 81 285T61 282H55H44Q24 282 24 296Q24 306 34 329T64 381T116 431T189 452Q237 452 273 428T309 362Q309 343 277 260T244 141'], + + // GREEK SMALL LETTER OMEGA + 0x3C9: [453,8,718,24,691,'532 367Q532 399 559 426T618 453Q645 453 668 430T691 357Q691 319 677 261T649 171Q640 149 626 125T586 68T521 14T438 -7Q401 -7 372 7T333 30T311 57Q246 -8 165 -8Q119 -8 82 19T30 102Q24 126 24 163V178Q24 210 37 255Q61 346 118 424Q141 451 161 451Q174 451 184 443T194 419Q194 402 179 387Q91 273 91 206Q91 159 122 138T189 117T281 145V173Q283 223 294 253Q304 276 323 289T364 303Q386 303 400 287T415 250Q415 219 385 157L378 144Q378 142 388 136T419 124T462 117Q522 117 566 165T610 255Q610 288 561 320Q532 337 532 367'], + + // GREEK THETA SYMBOL + 0x3D1: [701,8,692,24,656,'114 132Q114 153 140 253T166 372Q166 402 148 402Q126 402 110 369Q100 350 90 310Q85 289 82 286T60 282H55H44Q24 282 24 296Q25 302 27 312T41 350T65 397T104 435T158 452Q184 452 211 445T263 414T288 354V339L265 245Q237 134 237 118V107V102Q237 87 239 77T257 56T300 43Q395 43 455 254Q479 346 479 347L460 354Q294 408 294 528Q294 606 350 653T464 701Q536 701 579 659Q634 601 634 491Q634 468 630 438T623 388L620 370Q624 370 631 369T647 364T656 352Q656 347 653 335Q647 317 642 316Q640 315 637 315Q635 315 619 317Q606 319 605 316Q605 315 603 308Q587 248 550 177T457 57Q379 -8 293 -8Q192 -8 153 23T114 116V132ZM519 566Q519 600 507 625T464 651Q425 651 391 617T356 529Q356 501 370 478T404 441T443 417T477 404L491 400Q493 400 499 428T512 497T519 566'], + + // GREEK PHI SYMBOL + 0x3D5: [694,202,712,50,693,'274 -7Q232 -4 195 7T125 38T71 94T51 176V190Q51 213 60 242T95 307T156 373T255 425T393 451L397 452L427 568Q434 597 443 636Q452 677 456 685T472 694H486H495Q517 694 517 680L514 665Q510 650 503 621T489 564L460 451H469Q527 447 574 430T657 370T693 266Q693 163 599 82T350 -7H346L322 -100Q301 -190 295 -197Q291 -202 283 -202H269H258Q238 -202 238 -188Q238 -186 260 -96L283 -7H274ZM449 400Q448 400 404 225T359 47T366 45Q464 55 516 119Q542 149 558 199T575 295Q575 387 462 398L449 400ZM384 398Q384 399 381 399Q350 399 298 378T214 308Q168 236 168 149Q168 68 259 49Q282 44 294 44H295L384 398'], + + // GREEK PI SYMBOL + 0x3D6: [444,8,975,23,961,'55 289H43Q23 289 23 303Q23 308 33 322Q116 434 199 443Q200 444 562 444Q922 444 928 442Q961 434 961 400Q961 376 944 355T886 333H870Q872 322 872 295V279Q872 230 842 165T751 46T618 -8Q581 -8 554 6T513 45T494 84T484 119Q484 121 478 114Q477 113 476 111Q384 -7 268 -7H265Q251 -7 237 -4T199 11T162 54T147 132Q147 149 149 166T155 198T165 229T176 256T189 281T200 301T211 319T220 333H199Q120 333 88 301L77 290L55 289ZM639 103Q674 103 712 122T780 188T811 295Q811 318 808 330V333H289Q274 318 244 263T214 169Q214 133 236 118T288 103Q351 103 412 153T494 278Q497 290 502 292T529 295Q546 295 551 293T556 283Q556 281 553 260T550 218Q550 153 576 128T639 103'], + + // GREEK RHO SYMBOL + 0x3F1: [451,194,612,75,603,'371 -168Q357 -168 323 -171T245 -175Q143 -175 109 -150T75 -66Q75 -5 100 108T137 254Q153 299 179 334T232 390T277 419T311 434Q357 451 403 451Q435 451 455 449T506 435T560 400Q603 357 603 282Q603 213 569 148T465 38T304 -8Q273 -8 247 -2T204 14T176 31T159 46T152 53Q152 52 148 27T144 -16Q144 -36 150 -44T189 -58T293 -64Q405 -65 432 -75Q466 -88 466 -127Q466 -140 459 -172Q455 -188 451 -191T426 -194H420Q405 -194 400 -191T395 -176Q396 -170 394 -169T378 -168Q373 -168 371 -168ZM236 116Q236 77 258 60T311 43Q369 43 407 94Q429 123 451 206T474 331Q474 400 409 400H406Q339 400 299 341Q276 305 256 227T236 116'], + + // GREEK LUNATE EPSILON SYMBOL + 0x3F5: [444,7,483,44,450,'415 89Q423 89 429 74T436 46Q436 43 434 39Q432 36 420 29T380 11T322 -5Q311 -7 281 -7Q216 -7 168 10T94 54T56 110T44 167V181Q44 262 94 329Q104 343 119 357T162 391T234 425T327 443Q328 443 348 443T383 444Q434 444 442 438Q450 430 450 416Q446 392 424 383L376 382Q306 381 278 369Q230 349 208 294Q199 274 199 268Q199 267 291 267Q305 267 325 267T353 268Q383 268 394 263T406 241Q406 214 380 206Q375 205 279 205T183 203Q174 176 174 140Q174 87 208 65T292 43Q295 43 300 43T307 44Q337 49 372 69T415 89'], + + // INCREMENT + 0x2206: [711,0,958,59,904,''] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Math/BoldItalic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Math/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Math/Italic/Main.js new file mode 100644 index 0000000..010ff7a --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Math/Italic/Main.js @@ -0,0 +1,394 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Math/Italic/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Math-italic'] = { + directory: 'Math/Italic', + family: 'MathJax_Math', + id: 'MJMATHI', + style: 'italic', + skew: { + 0x41: 0.139, + 0x42: 0.0833, + 0x43: 0.0833, + 0x44: 0.0556, + 0x45: 0.0833, + 0x46: 0.0833, + 0x47: 0.0833, + 0x48: 0.0556, + 0x49: 0.111, + 0x4A: 0.167, + 0x4B: 0.0556, + 0x4C: 0.0278, + 0x4D: 0.0833, + 0x4E: 0.0833, + 0x4F: 0.0833, + 0x50: 0.0833, + 0x51: 0.0833, + 0x52: 0.0833, + 0x53: 0.0833, + 0x54: 0.0833, + 0x55: 0.0278, + 0x58: 0.0833, + 0x5A: 0.0833, + 0x63: 0.0556, + 0x64: 0.167, + 0x65: 0.0556, + 0x66: 0.167, + 0x67: 0.0278, + 0x68: -0.0278, + 0x6C: 0.0833, + 0x6F: 0.0556, + 0x70: 0.0833, + 0x71: 0.0833, + 0x72: 0.0556, + 0x73: 0.0556, + 0x74: 0.0833, + 0x75: 0.0278, + 0x76: 0.0278, + 0x77: 0.0833, + 0x78: 0.0278, + 0x79: 0.0556, + 0x7A: 0.0556, + 0x393: 0.0833, + 0x394: 0.167, + 0x398: 0.0833, + 0x39B: 0.167, + 0x39E: 0.0833, + 0x3A0: 0.0556, + 0x3A3: 0.0833, + 0x3A5: 0.0556, + 0x3A6: 0.0833, + 0x3A8: 0.0556, + 0x3A9: 0.0833, + 0x3B1: 0.0278, + 0x3B2: 0.0833, + 0x3B4: 0.0556, + 0x3B5: 0.0833, + 0x3B6: 0.0833, + 0x3B7: 0.0556, + 0x3B8: 0.0833, + 0x3B9: 0.0556, + 0x3BC: 0.0278, + 0x3BD: 0.0278, + 0x3BE: 0.111, + 0x3BF: 0.0556, + 0x3C1: 0.0833, + 0x3C2: 0.0833, + 0x3C4: 0.0278, + 0x3C5: 0.0278, + 0x3C6: 0.0833, + 0x3C7: 0.0556, + 0x3C8: 0.111, + 0x3D1: 0.0833, + 0x3D5: 0.0833, + 0x3F1: 0.0833, + 0x3F5: 0.0556 + }, + + // SPACE + 0x20: [0,0,250,0,0,''], + + // SOLIDUS + 0x2F: [716,215,778,139,638,'166 -215T159 -215T147 -212T141 -204T139 -197Q139 -190 144 -183Q157 -157 378 274T602 707Q605 716 618 716Q625 716 630 712T636 703T638 696Q638 691 406 241T170 -212Q166 -215 159 -215'], + + // LATIN CAPITAL LETTER A + 0x41: [716,0,750,35,726,'208 74Q208 50 254 46Q272 46 272 35Q272 34 270 22Q267 8 264 4T251 0Q249 0 239 0T205 1T141 2Q70 2 50 0H42Q35 7 35 11Q37 38 48 46H62Q132 49 164 96Q170 102 345 401T523 704Q530 716 547 716H555H572Q578 707 578 706L606 383Q634 60 636 57Q641 46 701 46Q726 46 726 36Q726 34 723 22Q720 7 718 4T704 0Q701 0 690 0T651 1T578 2Q484 2 455 0H443Q437 6 437 9T439 27Q443 40 445 43L449 46H469Q523 49 533 63L521 213H283L249 155Q208 86 208 74ZM516 260Q516 271 504 416T490 562L463 519Q447 492 400 412L310 260L413 259Q516 259 516 260'], + + // LATIN CAPITAL LETTER B + 0x42: [683,0,759,35,756,'231 637Q204 637 199 638T194 649Q194 676 205 682Q206 683 335 683Q594 683 608 681Q671 671 713 636T756 544Q756 480 698 429T565 360L555 357Q619 348 660 311T702 219Q702 146 630 78T453 1Q446 0 242 0Q42 0 39 2Q35 5 35 10Q35 17 37 24Q42 43 47 45Q51 46 62 46H68Q95 46 128 49Q142 52 147 61Q150 65 219 339T288 628Q288 635 231 637ZM649 544Q649 574 634 600T585 634Q578 636 493 637Q473 637 451 637T416 636H403Q388 635 384 626Q382 622 352 506Q352 503 351 500L320 374H401Q482 374 494 376Q554 386 601 434T649 544ZM595 229Q595 273 572 302T512 336Q506 337 429 337Q311 337 310 336Q310 334 293 263T258 122L240 52Q240 48 252 48T333 46Q422 46 429 47Q491 54 543 105T595 229'], + + // LATIN CAPITAL LETTER C + 0x43: [705,22,715,50,760,'50 252Q50 367 117 473T286 641T490 704Q580 704 633 653Q642 643 648 636T656 626L657 623Q660 623 684 649Q691 655 699 663T715 679T725 690L740 705H746Q760 705 760 698Q760 694 728 561Q692 422 692 421Q690 416 687 415T669 413H653Q647 419 647 422Q647 423 648 429T650 449T651 481Q651 552 619 605T510 659Q484 659 454 652T382 628T299 572T226 479Q194 422 175 346T156 222Q156 108 232 58Q280 24 350 24Q441 24 512 92T606 240Q610 253 612 255T628 257Q648 257 648 248Q648 243 647 239Q618 132 523 55T319 -22Q206 -22 128 53T50 252'], + + // LATIN CAPITAL LETTER D + 0x44: [683,0,828,33,803,'287 628Q287 635 230 637Q207 637 200 638T193 647Q193 655 197 667T204 682Q206 683 403 683Q570 682 590 682T630 676Q702 659 752 597T803 431Q803 275 696 151T444 3L430 1L236 0H125H72Q48 0 41 2T33 11Q33 13 36 25Q40 41 44 43T67 46Q94 46 127 49Q141 52 146 61Q149 65 218 339T287 628ZM703 469Q703 507 692 537T666 584T629 613T590 629T555 636Q553 636 541 636T512 636T479 637H436Q392 637 386 627Q384 623 313 339T242 52Q242 48 253 48T330 47Q335 47 349 47T373 46Q499 46 581 128Q617 164 640 212T683 339T703 469'], + + // LATIN CAPITAL LETTER E + 0x45: [680,0,738,31,764,'492 213Q472 213 472 226Q472 230 477 250T482 285Q482 316 461 323T364 330H312Q311 328 277 192T243 52Q243 48 254 48T334 46Q428 46 458 48T518 61Q567 77 599 117T670 248Q680 270 683 272Q690 274 698 274Q718 274 718 261Q613 7 608 2Q605 0 322 0H133Q31 0 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 659Q197 676 203 680H757Q764 676 764 669Q764 664 751 557T737 447Q735 440 717 440H705Q698 445 698 453L701 476Q704 500 704 528Q704 558 697 578T678 609T643 625T596 632T532 634H485Q397 633 392 631Q388 629 386 622Q385 619 355 499T324 377Q347 376 372 376H398Q464 376 489 391T534 472Q538 488 540 490T557 493Q562 493 565 493T570 492T572 491T574 487T577 483L544 351Q511 218 508 216Q505 213 492 213'], + + // LATIN CAPITAL LETTER F + 0x46: [680,0,643,31,749,'48 1Q31 1 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 659Q197 676 203 680H742Q749 676 749 669Q749 664 736 557T722 447Q720 440 702 440H690Q683 445 683 453Q683 454 686 477T689 530Q689 560 682 579T663 610T626 626T575 633T503 634H480Q398 633 393 631Q388 629 386 623Q385 622 352 492L320 363H375Q378 363 398 363T426 364T448 367T472 374T489 386Q502 398 511 419T524 457T529 475Q532 480 548 480H560Q567 475 567 470Q567 467 536 339T502 207Q500 200 482 200H470Q463 206 463 212Q463 215 468 234T473 274Q473 303 453 310T364 317H309L277 190Q245 66 245 60Q245 46 334 46H359Q365 40 365 39T363 19Q359 6 353 0H336Q295 2 185 2Q120 2 86 2T48 1'], + + // LATIN CAPITAL LETTER G + 0x47: [705,22,786,50,760,'50 252Q50 367 117 473T286 641T490 704Q580 704 633 653Q642 643 648 636T656 626L657 623Q660 623 684 649Q691 655 699 663T715 679T725 690L740 705H746Q760 705 760 698Q760 694 728 561Q692 422 692 421Q690 416 687 415T669 413H653Q647 419 647 422Q647 423 648 429T650 449T651 481Q651 552 619 605T510 659Q492 659 471 656T418 643T357 615T294 567T236 496T189 394T158 260Q156 242 156 221Q156 173 170 136T206 79T256 45T308 28T353 24Q407 24 452 47T514 106Q517 114 529 161T541 214Q541 222 528 224T468 227H431Q425 233 425 235T427 254Q431 267 437 273H454Q494 271 594 271Q634 271 659 271T695 272T707 272Q721 272 721 263Q721 261 719 249Q714 230 709 228Q706 227 694 227Q674 227 653 224Q646 221 643 215T629 164Q620 131 614 108Q589 6 586 3Q584 1 581 1Q571 1 553 21T530 52Q530 53 528 52T522 47Q448 -22 322 -22Q201 -22 126 55T50 252'], + + // LATIN CAPITAL LETTER H + 0x48: [683,0,831,31,888,'228 637Q194 637 192 641Q191 643 191 649Q191 673 202 682Q204 683 219 683Q260 681 355 681Q389 681 418 681T463 682T483 682Q499 682 499 672Q499 670 497 658Q492 641 487 638H485Q483 638 480 638T473 638T464 637T455 637Q416 636 405 634T387 623Q384 619 355 500Q348 474 340 442T328 395L324 380Q324 378 469 378H614L615 381Q615 384 646 504Q674 619 674 627T617 637Q594 637 587 639T580 648Q580 650 582 660Q586 677 588 679T604 682Q609 682 646 681T740 680Q802 680 835 681T871 682Q888 682 888 672Q888 645 876 638H874Q872 638 869 638T862 638T853 637T844 637Q805 636 794 634T776 623Q773 618 704 340T634 58Q634 51 638 51Q646 48 692 46H723Q729 38 729 37T726 19Q722 6 716 0H701Q664 2 567 2Q533 2 504 2T458 2T437 1Q420 1 420 10Q420 15 423 24Q428 43 433 45Q437 46 448 46H454Q481 46 514 49Q520 50 522 50T528 55T534 64T540 82T547 110T558 153Q565 181 569 198Q602 330 602 331T457 332H312L279 197Q245 63 245 58Q245 51 253 49T303 46H334Q340 38 340 37T337 19Q333 6 327 0H312Q275 2 178 2Q144 2 115 2T69 2T48 1Q31 1 31 10Q31 12 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q147 65 216 339T285 628Q285 635 228 637'], + + // LATIN CAPITAL LETTER I + 0x49: [683,0,440,26,504,'43 1Q26 1 26 10Q26 12 29 24Q34 43 39 45Q42 46 54 46H60Q120 46 136 53Q137 53 138 54Q143 56 149 77T198 273Q210 318 216 344Q286 624 286 626Q284 630 284 631Q274 637 213 637H193Q184 643 189 662Q193 677 195 680T209 683H213Q285 681 359 681Q481 681 487 683H497Q504 676 504 672T501 655T494 639Q491 637 471 637Q440 637 407 634Q393 631 388 623Q381 609 337 432Q326 385 315 341Q245 65 245 59Q245 52 255 50T307 46H339Q345 38 345 37T342 19Q338 6 332 0H316Q279 2 179 2Q143 2 113 2T65 2T43 1'], + + // LATIN CAPITAL LETTER J + 0x4A: [683,22,555,57,633,'447 625Q447 637 354 637H329Q323 642 323 645T325 664Q329 677 335 683H352Q393 681 498 681Q541 681 568 681T605 682T619 682Q633 682 633 672Q633 670 630 658Q626 642 623 640T604 637Q552 637 545 623Q541 610 483 376Q420 128 419 127Q397 64 333 21T195 -22Q137 -22 97 8T57 88Q57 130 80 152T132 174Q177 174 182 130Q182 98 164 80T123 56Q115 54 115 53T122 44Q148 15 197 15Q235 15 271 47T324 130Q328 142 387 380T447 625'], + + // LATIN CAPITAL LETTER K + 0x4B: [683,0,849,31,889,'285 628Q285 635 228 637Q205 637 198 638T191 647Q191 649 193 661Q199 681 203 682Q205 683 214 683H219Q260 681 355 681Q389 681 418 681T463 682T483 682Q500 682 500 674Q500 669 497 660Q496 658 496 654T495 648T493 644T490 641T486 639T479 638T470 637T456 637Q416 636 405 634T387 623L306 305Q307 305 490 449T678 597Q692 611 692 620Q692 635 667 637Q651 637 651 648Q651 650 654 662T659 677Q662 682 676 682Q680 682 711 681T791 680Q814 680 839 681T869 682Q889 682 889 672Q889 650 881 642Q878 637 862 637Q787 632 726 586Q710 576 656 534T556 455L509 418L518 396Q527 374 546 329T581 244Q656 67 661 61Q663 59 666 57Q680 47 717 46H738Q744 38 744 37T741 19Q737 6 731 0H720Q680 3 625 3Q503 3 488 0H478Q472 6 472 9T474 27Q478 40 480 43T491 46H494Q544 46 544 71Q544 75 517 141T485 216L427 354L359 301L291 248L268 155Q245 63 245 58Q245 51 253 49T303 46H334Q340 37 340 35Q340 19 333 5Q328 0 317 0Q314 0 280 1T180 2Q118 2 85 2T49 1Q31 1 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q147 65 216 339T285 628'], + + // LATIN CAPITAL LETTER L + 0x4C: [683,2,681,32,647,'228 637Q194 637 192 641Q191 643 191 649Q191 673 202 682Q204 683 217 683Q271 680 344 680Q485 680 506 683H518Q524 677 524 674T522 656Q517 641 513 637H475Q406 636 394 628Q387 624 380 600T313 336Q297 271 279 198T252 88L243 52Q243 48 252 48T311 46H328Q360 46 379 47T428 54T478 72T522 106T564 161Q580 191 594 228T611 270Q616 273 628 273H641Q647 264 647 262T627 203T583 83T557 9Q555 4 553 3T537 0T494 -1Q483 -1 418 -1T294 0H116Q32 0 32 10Q32 17 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q147 65 216 339T285 628Q285 635 228 637'], + + // LATIN CAPITAL LETTER M + 0x4D: [684,0,970,35,1051,'289 629Q289 635 232 637Q208 637 201 638T194 648Q194 649 196 659Q197 662 198 666T199 671T201 676T203 679T207 681T212 683T220 683T232 684Q238 684 262 684T307 683Q386 683 398 683T414 678Q415 674 451 396L487 117L510 154Q534 190 574 254T662 394Q837 673 839 675Q840 676 842 678T846 681L852 683H948Q965 683 988 683T1017 684Q1051 684 1051 673Q1051 668 1048 656T1045 643Q1041 637 1008 637Q968 636 957 634T939 623Q936 618 867 340T797 59Q797 55 798 54T805 50T822 48T855 46H886Q892 37 892 35Q892 19 885 5Q880 0 869 0Q864 0 828 1T736 2Q675 2 644 2T609 1Q592 1 592 11Q592 13 594 25Q598 41 602 43T625 46Q652 46 685 49Q699 52 704 61Q706 65 742 207T813 490T848 631L654 322Q458 10 453 5Q451 4 449 3Q444 0 433 0Q418 0 415 7Q413 11 374 317L335 624L267 354Q200 88 200 79Q206 46 272 46H282Q288 41 289 37T286 19Q282 3 278 1Q274 0 267 0Q265 0 255 0T221 1T157 2Q127 2 95 1T58 0Q43 0 39 2T35 11Q35 13 38 25T43 40Q45 46 65 46Q135 46 154 86Q158 92 223 354T289 629'], + + // LATIN CAPITAL LETTER N + 0x4E: [683,0,803,31,888,'234 637Q231 637 226 637Q201 637 196 638T191 649Q191 676 202 682Q204 683 299 683Q376 683 387 683T401 677Q612 181 616 168L670 381Q723 592 723 606Q723 633 659 637Q635 637 635 648Q635 650 637 660Q641 676 643 679T653 683Q656 683 684 682T767 680Q817 680 843 681T873 682Q888 682 888 672Q888 650 880 642Q878 637 858 637Q787 633 769 597L620 7Q618 0 599 0Q585 0 582 2Q579 5 453 305L326 604L261 344Q196 88 196 79Q201 46 268 46H278Q284 41 284 38T282 19Q278 6 272 0H259Q228 2 151 2Q123 2 100 2T63 2T46 1Q31 1 31 10Q31 14 34 26T39 40Q41 46 62 46Q130 49 150 85Q154 91 221 362L289 634Q287 635 234 637'], + + // LATIN CAPITAL LETTER O + 0x4F: [704,22,763,50,740,'740 435Q740 320 676 213T511 42T304 -22Q207 -22 138 35T51 201Q50 209 50 244Q50 346 98 438T227 601Q351 704 476 704Q514 704 524 703Q621 689 680 617T740 435ZM637 476Q637 565 591 615T476 665Q396 665 322 605Q242 542 200 428T157 216Q157 126 200 73T314 19Q404 19 485 98T608 313Q637 408 637 476'], + + // LATIN CAPITAL LETTER P + 0x50: [683,0,642,33,751,'287 628Q287 635 230 637Q206 637 199 638T192 648Q192 649 194 659Q200 679 203 681T397 683Q587 682 600 680Q664 669 707 631T751 530Q751 453 685 389Q616 321 507 303Q500 302 402 301H307L277 182Q247 66 247 59Q247 55 248 54T255 50T272 48T305 46H336Q342 37 342 35Q342 19 335 5Q330 0 319 0Q316 0 282 1T182 2Q120 2 87 2T51 1Q33 1 33 11Q33 13 36 25Q40 41 44 43T67 46Q94 46 127 49Q141 52 146 61Q149 65 218 339T287 628ZM645 554Q645 567 643 575T634 597T609 619T560 635Q553 636 480 637Q463 637 445 637T416 636T404 636Q391 635 386 627Q384 621 367 550T332 412T314 344Q314 342 395 342H407H430Q542 342 590 392Q617 419 631 471T645 554'], + + // LATIN CAPITAL LETTER Q + 0x51: [704,194,791,50,740,'399 -80Q399 -47 400 -30T402 -11V-7L387 -11Q341 -22 303 -22Q208 -22 138 35T51 201Q50 209 50 244Q50 346 98 438T227 601Q351 704 476 704Q514 704 524 703Q621 689 680 617T740 435Q740 255 592 107Q529 47 461 16L444 8V3Q444 2 449 -24T470 -66T516 -82Q551 -82 583 -60T625 -3Q631 11 638 11Q647 11 649 2Q649 -6 639 -34T611 -100T557 -165T481 -194Q399 -194 399 -87V-80ZM636 468Q636 523 621 564T580 625T530 655T477 665Q429 665 379 640Q277 591 215 464T153 216Q153 110 207 59Q231 38 236 38V46Q236 86 269 120T347 155Q372 155 390 144T417 114T429 82T435 55L448 64Q512 108 557 185T619 334T636 468ZM314 18Q362 18 404 39L403 49Q399 104 366 115Q354 117 347 117Q344 117 341 117T337 118Q317 118 296 98T274 52Q274 18 314 18'], + + // LATIN CAPITAL LETTER R + 0x52: [683,21,759,33,755,'230 637Q203 637 198 638T193 649Q193 676 204 682Q206 683 378 683Q550 682 564 680Q620 672 658 652T712 606T733 563T739 529Q739 484 710 445T643 385T576 351T538 338L545 333Q612 295 612 223Q612 212 607 162T602 80V71Q602 53 603 43T614 25T640 16Q668 16 686 38T712 85Q717 99 720 102T735 105Q755 105 755 93Q755 75 731 36Q693 -21 641 -21H632Q571 -21 531 4T487 82Q487 109 502 166T517 239Q517 290 474 313Q459 320 449 321T378 323H309L277 193Q244 61 244 59Q244 55 245 54T252 50T269 48T302 46H333Q339 38 339 37T336 19Q332 6 326 0H311Q275 2 180 2Q146 2 117 2T71 2T50 1Q33 1 33 10Q33 12 36 24Q41 43 46 45Q50 46 61 46H67Q94 46 127 49Q141 52 146 61Q149 65 218 339T287 628Q287 635 230 637ZM630 554Q630 586 609 608T523 636Q521 636 500 636T462 637H440Q393 637 386 627Q385 624 352 494T319 361Q319 360 388 360Q466 361 492 367Q556 377 592 426Q608 449 619 486T630 554'], + + // LATIN CAPITAL LETTER S + 0x53: [705,22,613,52,645,'308 24Q367 24 416 76T466 197Q466 260 414 284Q308 311 278 321T236 341Q176 383 176 462Q176 523 208 573T273 648Q302 673 343 688T407 704H418H425Q521 704 564 640Q565 640 577 653T603 682T623 704Q624 704 627 704T632 705Q645 705 645 698T617 577T585 459T569 456Q549 456 549 465Q549 471 550 475Q550 478 551 494T553 520Q553 554 544 579T526 616T501 641Q465 662 419 662Q362 662 313 616T263 510Q263 480 278 458T319 427Q323 425 389 408T456 390Q490 379 522 342T554 242Q554 216 546 186Q541 164 528 137T492 78T426 18T332 -20Q320 -22 298 -22Q199 -22 144 33L134 44L106 13Q83 -14 78 -18T65 -22Q52 -22 52 -14Q52 -11 110 221Q112 227 130 227H143Q149 221 149 216Q149 214 148 207T144 186T142 153Q144 114 160 87T203 47T255 29T308 24'], + + // LATIN CAPITAL LETTER T + 0x54: [677,0,584,21,704,'40 437Q21 437 21 445Q21 450 37 501T71 602L88 651Q93 669 101 677H569H659Q691 677 697 676T704 667Q704 661 687 553T668 444Q668 437 649 437Q640 437 637 437T631 442L629 445Q629 451 635 490T641 551Q641 586 628 604T573 629Q568 630 515 631Q469 631 457 630T439 622Q438 621 368 343T298 60Q298 48 386 46Q418 46 427 45T436 36Q436 31 433 22Q429 4 424 1L422 0Q419 0 415 0Q410 0 363 1T228 2Q99 2 64 0H49Q43 6 43 9T45 27Q49 40 55 46H83H94Q174 46 189 55Q190 56 191 56Q196 59 201 76T241 233Q258 301 269 344Q339 619 339 625Q339 630 310 630H279Q212 630 191 624Q146 614 121 583T67 467Q60 445 57 441T43 437H40'], + + // LATIN CAPITAL LETTER U + 0x55: [683,22,683,60,767,'107 637Q73 637 71 641Q70 643 70 649Q70 673 81 682Q83 683 98 683Q139 681 234 681Q268 681 297 681T342 682T362 682Q378 682 378 672Q378 670 376 658Q371 641 366 638H364Q362 638 359 638T352 638T343 637T334 637Q295 636 284 634T266 623Q265 621 238 518T184 302T154 169Q152 155 152 140Q152 86 183 55T269 24Q336 24 403 69T501 205L552 406Q599 598 599 606Q599 633 535 637Q511 637 511 648Q511 650 513 660Q517 676 519 679T529 683Q532 683 561 682T645 680Q696 680 723 681T752 682Q767 682 767 672Q767 650 759 642Q756 637 737 637Q666 633 648 597Q646 592 598 404Q557 235 548 205Q515 105 433 42T263 -22Q171 -22 116 34T60 167V183Q60 201 115 421Q164 622 164 628Q164 635 107 637'], + + // LATIN CAPITAL LETTER V + 0x56: [683,22,583,52,769,'52 648Q52 670 65 683H76Q118 680 181 680Q299 680 320 683H330Q336 677 336 674T334 656Q329 641 325 637H304Q282 635 274 635Q245 630 242 620Q242 618 271 369T301 118L374 235Q447 352 520 471T595 594Q599 601 599 609Q599 633 555 637Q537 637 537 648Q537 649 539 661Q542 675 545 679T558 683Q560 683 570 683T604 682T668 681Q737 681 755 683H762Q769 676 769 672Q769 655 760 640Q757 637 743 637Q730 636 719 635T698 630T682 623T670 615T660 608T652 599T645 592L452 282Q272 -9 266 -16Q263 -18 259 -21L241 -22H234Q216 -22 216 -15Q213 -9 177 305Q139 623 138 626Q133 637 76 637H59Q52 642 52 648'], + + // LATIN CAPITAL LETTER W + 0x57: [683,22,944,51,1048,'436 683Q450 683 486 682T553 680Q604 680 638 681T677 682Q695 682 695 674Q695 670 692 659Q687 641 683 639T661 637Q636 636 621 632T600 624T597 615Q597 603 613 377T629 138L631 141Q633 144 637 151T649 170T666 200T690 241T720 295T759 362Q863 546 877 572T892 604Q892 619 873 628T831 637Q817 637 817 647Q817 650 819 660Q823 676 825 679T839 682Q842 682 856 682T895 682T949 681Q1015 681 1034 683Q1048 683 1048 672Q1048 666 1045 655T1038 640T1028 637Q1006 637 988 631T958 617T939 600T927 584L923 578L754 282Q586 -14 585 -15Q579 -22 561 -22Q546 -22 542 -17Q539 -14 523 229T506 480L494 462Q472 425 366 239Q222 -13 220 -15T215 -19Q210 -22 197 -22Q178 -22 176 -15Q176 -12 154 304T131 622Q129 631 121 633T82 637H58Q51 644 51 648Q52 671 64 683H76Q118 680 176 680Q301 680 313 683H323Q329 677 329 674T327 656Q322 641 318 637H297Q236 634 232 620Q262 160 266 136L501 550L499 587Q496 629 489 632Q483 636 447 637Q428 637 422 639T416 648Q416 650 418 660Q419 664 420 669T421 676T424 680T428 682T436 683'], + + // LATIN CAPITAL LETTER X + 0x58: [683,0,828,26,852,'42 0H40Q26 0 26 11Q26 15 29 27Q33 41 36 43T55 46Q141 49 190 98Q200 108 306 224T411 342Q302 620 297 625Q288 636 234 637H206Q200 643 200 645T202 664Q206 677 212 683H226Q260 681 347 681Q380 681 408 681T453 682T473 682Q490 682 490 671Q490 670 488 658Q484 643 481 640T465 637Q434 634 411 620L488 426L541 485Q646 598 646 610Q646 628 622 635Q617 635 609 637Q594 637 594 648Q594 650 596 664Q600 677 606 683H618Q619 683 643 683T697 681T738 680Q828 680 837 683H845Q852 676 852 672Q850 647 840 637H824Q790 636 763 628T722 611T698 593L687 584Q687 585 592 480L505 384Q505 383 536 304T601 142T638 56Q648 47 699 46Q734 46 734 37Q734 35 732 23Q728 7 725 4T711 1Q708 1 678 1T589 2Q528 2 496 2T461 1Q444 1 444 10Q444 11 446 25Q448 35 450 39T455 44T464 46T480 47T506 54Q523 62 523 64Q522 64 476 181L429 299Q241 95 236 84Q232 76 232 72Q232 53 261 47Q262 47 267 47T273 46Q276 46 277 46T280 45T283 42T284 35Q284 26 282 19Q279 6 276 4T261 1Q258 1 243 1T201 2T142 2Q64 2 42 0'], + + // LATIN CAPITAL LETTER Y + 0x59: [683,-1,581,30,763,'66 637Q54 637 49 637T39 638T32 641T30 647T33 664T42 682Q44 683 56 683Q104 680 165 680Q288 680 306 683H316Q322 677 322 674T320 656Q316 643 310 637H298Q242 637 242 624Q242 619 292 477T343 333L346 336Q350 340 358 349T379 373T411 410T454 461Q546 568 561 587T577 618Q577 634 545 637Q528 637 528 647Q528 649 530 661Q533 676 535 679T549 683Q551 683 578 682T657 680Q684 680 713 681T746 682Q763 682 763 673Q763 669 760 657T755 643Q753 637 734 637Q662 632 617 587Q608 578 477 424L348 273L322 169Q295 62 295 57Q295 46 363 46Q379 46 384 45T390 35Q390 33 388 23Q384 6 382 4T366 1Q361 1 324 1T232 2Q170 2 138 2T102 1Q84 1 84 9Q84 14 87 24Q88 27 89 30T90 35T91 39T93 42T96 44T101 45T107 45T116 46T129 46Q168 47 180 50T198 63Q201 68 227 171L252 274L129 623Q128 624 127 625T125 627T122 629T118 631T113 633T105 634T96 635T83 636T66 637'], + + // LATIN CAPITAL LETTER Z + 0x5A: [683,0,683,58,723,'58 8Q58 23 64 35Q64 36 329 334T596 635L586 637Q575 637 512 637H500H476Q442 637 420 635T365 624T311 598T266 548T228 469Q227 466 226 463T224 458T223 453T222 450L221 448Q218 443 202 443Q185 443 182 453L214 561Q228 606 241 651Q249 679 253 681Q256 683 487 683H718Q723 678 723 675Q723 673 717 649Q189 54 188 52L185 49H274Q369 50 377 51Q452 60 500 100T579 247Q587 272 590 277T603 282H607Q628 282 628 271Q547 5 541 2Q538 0 300 0H124Q58 0 58 8'], + + // LATIN SMALL LETTER A + 0x61: [441,10,529,33,506,'33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328'], + + // LATIN SMALL LETTER B + 0x62: [694,11,429,40,422,'73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325'], + + // LATIN SMALL LETTER C + 0x63: [442,12,433,34,430,'34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159'], + + // LATIN SMALL LETTER D + 0x64: [694,10,520,33,523,'366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326'], + + // LATIN SMALL LETTER E + 0x65: [443,11,466,39,430,'39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353'], + + // LATIN SMALL LETTER F + 0x66: [705,205,490,55,550,'118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162'], + + // LATIN SMALL LETTER G + 0x67: [442,205,477,10,480,'311 43Q296 30 267 15T206 0Q143 0 105 45T66 160Q66 265 143 353T314 442Q361 442 401 394L404 398Q406 401 409 404T418 412T431 419T447 422Q461 422 470 413T480 394Q480 379 423 152T363 -80Q345 -134 286 -169T151 -205Q10 -205 10 -137Q10 -111 28 -91T74 -71Q89 -71 102 -80T116 -111Q116 -121 114 -130T107 -144T99 -154T92 -162L90 -164H91Q101 -167 151 -167Q189 -167 211 -155Q234 -144 254 -122T282 -75Q288 -56 298 -13Q311 35 311 43ZM384 328L380 339Q377 350 375 354T369 368T359 382T346 393T328 402T306 405Q262 405 221 352Q191 313 171 233T151 117Q151 38 213 38Q269 38 323 108L331 118L384 328'], + + // LATIN SMALL LETTER H + 0x68: [694,11,576,48,555,'137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683'], + + // LATIN SMALL LETTER I + 0x69: [661,11,345,21,302,'184 600Q184 624 203 642T247 661Q265 661 277 649T290 619Q290 596 270 577T226 557Q211 557 198 567T184 600ZM21 287Q21 295 30 318T54 369T98 420T158 442Q197 442 223 419T250 357Q250 340 236 301T196 196T154 83Q149 61 149 51Q149 26 166 26Q175 26 185 29T208 43T235 78T260 137Q263 149 265 151T282 153Q302 153 302 143Q302 135 293 112T268 61T223 11T161 -11Q129 -11 102 10T74 74Q74 91 79 106T122 220Q160 321 166 341T173 380Q173 404 156 404H154Q124 404 99 371T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER J + 0x6A: [661,204,412,-12,403,'297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376'], + + // LATIN SMALL LETTER K + 0x6B: [694,11,521,48,503,'121 647Q121 657 125 670T137 683Q138 683 209 688T282 694Q294 694 294 686Q294 679 244 477Q194 279 194 272Q213 282 223 291Q247 309 292 354T362 415Q402 442 438 442Q468 442 485 423T503 369Q503 344 496 327T477 302T456 291T438 288Q418 288 406 299T394 328Q394 353 410 369T442 390L458 393Q446 405 434 405H430Q398 402 367 380T294 316T228 255Q230 254 243 252T267 246T293 238T320 224T342 206T359 180T365 147Q365 130 360 106T354 66Q354 26 381 26Q429 26 459 145Q461 153 479 153H483Q499 153 499 144Q499 139 496 130Q455 -11 378 -11Q333 -11 305 15T277 90Q277 108 280 121T283 145Q283 167 269 183T234 206T200 217T182 220H180Q168 178 159 139T145 81T136 44T129 20T122 7T111 -2Q98 -11 83 -11Q66 -11 57 -1T48 16Q48 26 85 176T158 471L195 616Q196 629 188 632T149 637H144Q134 637 131 637T124 640T121 647'], + + // LATIN SMALL LETTER L + 0x6C: [695,12,298,38,266,'117 59Q117 26 142 26Q179 26 205 131Q211 151 215 152Q217 153 225 153H229Q238 153 241 153T246 151T248 144Q247 138 245 128T234 90T214 43T183 6T137 -11Q101 -11 70 11T38 85Q38 97 39 102L104 360Q167 615 167 623Q167 626 166 628T162 632T157 634T149 635T141 636T132 637T122 637Q112 637 109 637T101 638T95 641T94 647Q94 649 96 661Q101 680 107 682T179 688Q194 689 213 690T243 693T254 694Q266 694 266 686Q266 675 193 386T118 83Q118 81 118 75T117 65V59'], + + // LATIN SMALL LETTER M + 0x6D: [443,11,878,21,857,'21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER N + 0x6E: [443,11,600,21,580,'21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER O + 0x6F: [441,11,485,34,476,'201 -11Q126 -11 80 38T34 156Q34 221 64 279T146 380Q222 441 301 441Q333 441 341 440Q354 437 367 433T402 417T438 387T464 338T476 268Q476 161 390 75T201 -11ZM121 120Q121 70 147 48T206 26Q250 26 289 58T351 142Q360 163 374 216T388 308Q388 352 370 375Q346 405 306 405Q243 405 195 347Q158 303 140 230T121 120'], + + // LATIN SMALL LETTER P + 0x70: [443,194,503,-39,497,'23 287Q24 290 25 295T30 317T40 348T55 381T75 411T101 433T134 442Q209 442 230 378L240 387Q302 442 358 442Q423 442 460 395T497 281Q497 173 421 82T249 -10Q227 -10 210 -4Q199 1 187 11T168 28L161 36Q160 35 139 -51T118 -138Q118 -144 126 -145T163 -148H188Q194 -155 194 -157T191 -175Q188 -187 185 -190T172 -194Q170 -194 161 -194T127 -193T65 -192Q-5 -192 -24 -194H-32Q-39 -187 -39 -183Q-37 -156 -26 -148H-6Q28 -147 33 -136Q36 -130 94 103T155 350Q156 355 156 364Q156 405 131 405Q109 405 94 377T71 316T59 280Q57 278 43 278H29Q23 284 23 287ZM178 102Q200 26 252 26Q282 26 310 49T356 107Q374 141 392 215T411 325V331Q411 405 350 405Q339 405 328 402T306 393T286 380T269 365T254 350T243 336T235 326L232 322Q232 321 229 308T218 264T204 212Q178 106 178 102'], + + // LATIN SMALL LETTER Q + 0x71: [442,194,446,33,460,'33 157Q33 258 109 349T280 441Q340 441 372 389Q373 390 377 395T388 406T404 418Q438 442 450 442Q454 442 457 439T460 434Q460 425 391 149Q320 -135 320 -139Q320 -147 365 -148H390Q396 -156 396 -157T393 -175Q389 -188 383 -194H370Q339 -192 262 -192Q234 -192 211 -192T174 -192T157 -193Q143 -193 143 -185Q143 -182 145 -170Q149 -154 152 -151T172 -148Q220 -148 230 -141Q238 -136 258 -53T279 32Q279 33 272 29Q224 -10 172 -10Q117 -10 75 30T33 157ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326'], + + // LATIN SMALL LETTER R + 0x72: [443,11,451,21,430,'21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q161 442 183 430T214 408T225 388Q227 382 228 382T236 389Q284 441 347 441H350Q398 441 422 400Q430 381 430 363Q430 333 417 315T391 292T366 288Q346 288 334 299T322 328Q322 376 378 392Q356 405 342 405Q286 405 239 331Q229 315 224 298T190 165Q156 25 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER S + 0x73: [443,10,469,53,419,'131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289'], + + // LATIN SMALL LETTER T + 0x74: [626,11,361,19,330,'26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26'], + + // LATIN SMALL LETTER U + 0x75: [442,11,572,21,551,'21 287Q21 295 30 318T55 370T99 420T158 442Q204 442 227 417T250 358Q250 340 216 246T182 105Q182 62 196 45T238 27T291 44T328 78L339 95Q341 99 377 247Q407 367 413 387T427 416Q444 431 463 431Q480 431 488 421T496 402L420 84Q419 79 419 68Q419 43 426 35T447 26Q469 29 482 57T512 145Q514 153 532 153Q551 153 551 144Q550 139 549 130T540 98T523 55T498 17T462 -8Q454 -10 438 -10Q372 -10 347 46Q345 45 336 36T318 21T296 6T267 -6T233 -11Q189 -11 155 7Q103 38 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER V + 0x76: [443,11,485,21,467,'173 380Q173 405 154 405Q130 405 104 376T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287Q21 294 29 316T53 368T97 419T160 441Q202 441 225 417T249 361Q249 344 246 335Q246 329 231 291T200 202T182 113Q182 86 187 69Q200 26 250 26Q287 26 319 60T369 139T398 222T409 277Q409 300 401 317T383 343T365 361T357 383Q357 405 376 424T417 443Q436 443 451 425T467 367Q467 340 455 284T418 159T347 40T241 -11Q177 -11 139 22Q102 54 102 117Q102 148 110 181T151 298Q173 362 173 380'], + + // LATIN SMALL LETTER W + 0x77: [443,11,716,21,690,'580 385Q580 406 599 424T641 443Q659 443 674 425T690 368Q690 339 671 253Q656 197 644 161T609 80T554 12T482 -11Q438 -11 404 5T355 48Q354 47 352 44Q311 -11 252 -11Q226 -11 202 -5T155 14T118 53T104 116Q104 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Q21 293 29 315T52 366T96 418T161 441Q204 441 227 416T250 358Q250 340 217 250T184 111Q184 65 205 46T258 26Q301 26 334 87L339 96V119Q339 122 339 128T340 136T341 143T342 152T345 165T348 182T354 206T362 238T373 281Q402 395 406 404Q419 431 449 431Q468 431 475 421T483 402Q483 389 454 274T422 142Q420 131 420 107V100Q420 85 423 71T442 42T487 26Q558 26 600 148Q609 171 620 213T632 273Q632 306 619 325T593 357T580 385'], + + // LATIN SMALL LETTER X + 0x78: [442,11,572,35,522,'52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289'], + + // LATIN SMALL LETTER Y + 0x79: [443,205,490,21,497,'21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER Z + 0x7A: [442,11,465,35,468,'347 338Q337 338 294 349T231 360Q211 360 197 356T174 346T162 335T155 324L153 320Q150 317 138 317Q117 317 117 325Q117 330 120 339Q133 378 163 406T229 440Q241 442 246 442Q271 442 291 425T329 392T367 375Q389 375 411 408T434 441Q435 442 449 442H462Q468 436 468 434Q468 430 463 420T449 399T432 377T418 358L411 349Q368 298 275 214T160 106L148 94L163 93Q185 93 227 82T290 71Q328 71 360 90T402 140Q406 149 409 151T424 153Q443 153 443 143Q443 138 442 134Q425 72 376 31T278 -11Q252 -11 232 6T193 40T155 57Q111 57 76 -3Q70 -11 59 -11H54H41Q35 -5 35 -2Q35 13 93 84Q132 129 225 214T340 322Q352 338 347 338'], + + // GREEK CAPITAL LETTER GAMMA + 0x393: [680,-1,615,31,721,'49 1Q31 1 31 10Q31 12 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 661Q197 674 203 680H714Q721 676 721 669Q721 664 708 557T694 447Q692 440 674 440H662Q655 445 655 454Q655 455 658 480T661 534Q661 572 652 592Q638 619 603 626T501 634H471Q398 633 393 630Q389 628 386 622Q385 619 315 341T245 60Q245 46 333 46H345Q366 46 366 35Q366 33 363 21T358 6Q356 1 339 1Q334 1 292 1T187 2Q122 2 88 2T49 1'], + + // GREEK CAPITAL LETTER DELTA + 0x394: [716,0,833,48,788,'574 715L582 716Q589 716 595 716Q612 716 616 714Q621 712 621 709Q622 707 705 359T788 8Q786 5 785 3L781 0H416Q52 0 50 2T48 6Q48 9 305 358T567 711Q572 712 574 715ZM599 346L538 602L442 474Q347 345 252 217T157 87T409 86T661 88L654 120Q646 151 629 220T599 346'], + + // GREEK CAPITAL LETTER THETA + 0x398: [704,22,763,50,740,'740 435Q740 320 676 213T511 42T304 -22Q207 -22 138 35T51 201Q50 209 50 244Q50 346 98 438T227 601Q351 704 476 704Q514 704 524 703Q621 689 680 617T740 435ZM640 466Q640 523 625 565T583 628T532 658T479 668Q370 668 273 559T151 255Q150 245 150 213Q150 156 165 116T207 55T259 26T313 17Q385 17 451 63T561 184Q590 234 615 312T640 466ZM510 276Q510 278 512 288L515 298Q515 299 384 299H253L250 285Q246 271 244 268T231 265H227Q216 265 214 266T207 274Q207 278 223 345T244 416Q247 419 260 419H263Q280 419 280 408Q280 406 278 396L275 386Q275 385 406 385H537L540 399Q544 413 546 416T559 419H563Q574 419 576 418T583 410Q583 403 566 339Q549 271 544 267Q542 265 538 265H530H527Q510 265 510 276'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [716,0,694,35,670,'135 2Q114 2 90 2T60 1Q35 1 35 11Q35 28 42 40Q45 46 55 46Q119 46 151 94Q153 97 325 402T498 709Q505 716 526 716Q543 716 549 710Q550 709 560 548T580 224T591 57Q594 52 595 52Q603 47 638 46H663Q670 39 670 35Q669 12 657 0H644Q613 2 530 2Q497 2 469 2T424 2T405 1Q388 1 388 10Q388 15 391 24Q392 27 393 32T395 38T397 41T401 44T406 45T415 46Q473 46 487 64L472 306Q468 365 465 426T459 518L457 550Q456 550 328 322T198 88Q196 80 196 77Q196 49 243 46Q261 46 261 35Q261 34 259 22Q256 7 254 4T240 0Q237 0 211 1T135 2'], + + // GREEK CAPITAL LETTER XI + 0x39E: [678,0,742,53,777,'222 668Q222 670 229 677H654Q677 677 705 677T740 678Q764 678 770 676T777 667Q777 662 764 594Q761 579 757 559T751 528L749 519Q747 512 729 512H717Q710 519 710 525Q712 532 715 559T719 591Q718 595 711 595Q682 598 486 598Q252 598 246 592Q239 587 228 552L216 517Q214 512 197 512H185Q178 517 178 522Q178 524 198 591T222 668ZM227 262Q218 262 215 262T209 266L207 270L227 356Q247 435 250 439Q253 443 260 443H267H280Q287 438 287 433Q287 430 285 420T280 402L278 393Q278 392 431 392H585L590 415Q595 436 598 439T612 443H628Q635 438 635 433Q635 431 615 351T594 268Q592 262 575 262H572Q556 262 556 272Q556 280 560 293L565 313H258L252 292Q248 271 245 267T230 262H227ZM60 0Q53 4 53 11Q53 14 68 89T84 169Q88 176 98 176H104H116Q123 169 123 163Q122 160 117 127T112 88Q112 80 243 80H351H454Q554 80 574 81T597 88V89Q603 100 610 121T622 157T630 174Q633 176 646 176H658Q665 171 665 166Q665 164 643 89T618 7Q616 2 607 1T548 0H335H60'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [681,0,831,31,887,'48 1Q31 1 31 10Q31 12 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 661Q197 674 203 680H541Q621 680 709 680T812 681Q841 681 855 681T877 679T886 676T887 670Q887 663 885 656Q880 637 875 635Q871 634 860 634H854Q827 634 794 631Q780 628 775 619Q773 614 704 338T634 58Q634 51 638 51Q646 48 692 46H723Q729 38 729 37T726 19Q722 6 716 0H701Q664 2 567 2Q533 2 504 2T458 2T437 1Q420 1 420 10Q420 15 423 24Q428 43 433 45Q437 46 448 46H454Q481 46 514 49Q528 52 533 61Q536 67 572 209T642 491T678 632Q678 634 533 634H388Q387 631 316 347T245 59Q245 55 246 54T253 50T270 48T303 46H334Q340 38 340 37T337 19Q333 6 327 0H312Q275 2 178 2Q144 2 115 2T69 2T48 1'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [683,0,780,58,806,'65 0Q58 4 58 11Q58 16 114 67Q173 119 222 164L377 304Q378 305 340 386T261 552T218 644Q217 648 219 660Q224 678 228 681Q231 683 515 683H799Q804 678 806 674Q806 667 793 559T778 448Q774 443 759 443Q747 443 743 445T739 456Q739 458 741 477T743 516Q743 552 734 574T710 609T663 627T596 635T502 637Q480 637 469 637H339Q344 627 411 486T478 341V339Q477 337 477 336L457 318Q437 300 398 265T322 196L168 57Q167 56 188 56T258 56H359Q426 56 463 58T537 69T596 97T639 146T680 225Q686 243 689 246T702 250H705Q726 250 726 239Q726 238 683 123T639 5Q637 1 610 1Q577 0 348 0H65'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [706,0,583,28,700,'45 535Q34 535 31 536T28 544Q28 554 39 578T70 631T126 683T206 705Q230 705 251 698T295 671T330 612T344 514Q344 477 342 473V472Q343 472 347 480T361 509T380 547Q471 704 596 704Q615 704 625 702Q659 692 679 663T700 595Q700 565 696 552T687 537T670 535Q656 535 653 536T649 543Q649 544 649 550T650 562Q650 589 629 605T575 621Q502 621 448 547T365 361Q290 70 290 60Q290 46 379 46H404Q410 40 410 39T408 19Q404 6 398 0H381Q340 2 225 2Q184 2 149 2T94 2T69 1Q61 1 58 1T53 4T51 10Q51 11 53 23Q54 25 55 30T56 36T58 40T60 43T62 44T67 46T73 46T82 46H89Q144 46 163 49T190 62L198 93Q206 124 217 169T241 262T262 350T274 404Q281 445 281 486V494Q281 621 185 621Q147 621 116 601T74 550Q71 539 66 537T45 535'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [683,0,667,24,642,'356 624Q356 637 267 637H243Q237 642 237 645T239 664Q243 677 249 683H264Q342 681 429 681Q565 681 571 683H583Q589 677 589 674T587 656Q582 641 578 637H540Q516 637 504 637T479 633T463 630T454 623T448 613T443 597T438 576Q436 566 434 556T430 539L428 533Q442 533 472 526T543 502T613 451T642 373Q642 301 567 241T386 158L336 150Q332 150 331 146Q310 66 310 60Q310 46 399 46H424Q430 40 430 39T428 19Q424 6 418 0H401Q360 2 247 2Q207 2 173 2T119 2T95 1Q87 1 84 1T79 4T77 10Q77 11 79 23Q80 25 81 30T82 36T84 40T86 43T88 44T93 46T99 46T108 46H115Q170 46 189 49T216 62Q220 74 228 107L239 150L223 152Q139 164 82 205T24 311Q24 396 125 462Q207 517 335 533L346 578Q356 619 356 624ZM130 291Q130 203 241 188H249Q249 190 287 342L325 495H324Q313 495 291 491T229 466T168 414Q130 357 130 291ZM536 393Q536 440 507 463T418 496L341 187L351 189Q443 201 487 255Q536 314 536 393'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [683,0,612,21,692,'216 151Q48 174 48 329Q48 361 56 403T65 458Q65 482 58 494T43 507T28 510T21 520Q21 528 23 534T29 544L32 546H72H94Q110 546 119 544T139 536T154 514T159 476V465Q159 445 149 399T138 314Q142 229 197 201Q223 187 226 190L233 218Q240 246 253 300T280 407Q333 619 333 625Q333 637 244 637H220Q214 642 214 645T216 664Q220 677 226 683H241Q321 681 405 681Q543 681 549 683H560Q566 677 566 674T564 656Q559 641 555 637H517Q448 636 436 628Q429 623 423 600T373 404L320 192Q370 201 419 248Q451 281 469 317T500 400T518 457Q529 486 542 505T569 532T594 543T621 546H644H669Q692 546 692 536Q691 509 676 509Q623 509 593 399Q587 377 579 355T552 301T509 244T446 195T359 159Q324 151 314 151Q311 151 310 150T298 106T287 60Q287 46 376 46H401Q407 40 407 39T405 19Q401 6 395 0H378Q337 2 224 2Q184 2 150 2T96 2T72 1Q64 1 61 1T56 4T54 10Q54 11 56 23Q57 25 58 30T59 36T61 40T63 43T65 44T70 46T76 46T85 46H92Q147 46 166 49T193 62L204 106Q216 149 216 151'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [704,0,772,80,786,'125 84Q127 78 194 76H243V78Q243 122 208 215T165 350Q164 359 162 389Q162 522 272 610Q328 656 396 680T525 704Q628 704 698 661Q734 637 755 601T781 544T786 504Q786 439 747 374T635 226T537 109Q518 81 518 77Q537 76 557 76Q608 76 620 78T640 92Q646 100 656 119T673 155T683 172Q690 173 698 173Q718 173 718 162Q718 161 681 82T642 2Q639 0 550 0H461Q455 5 455 9T458 28Q472 78 510 149T584 276T648 402T677 525Q677 594 636 631T530 668Q476 668 423 641T335 568Q284 499 271 400Q270 388 270 348Q270 298 277 228T285 115Q285 82 280 49T271 6Q269 1 258 1T175 0H87Q83 3 80 7V18Q80 22 82 98Q84 156 85 163T91 172Q94 173 104 173T119 172Q124 169 124 126Q125 104 125 84'], + + // GREEK SMALL LETTER ALPHA + 0x3B1: [442,11,640,34,603,'34 156Q34 270 120 356T309 442Q379 442 421 402T478 304Q484 275 485 237V208Q534 282 560 374Q564 388 566 390T582 393Q603 393 603 385Q603 376 594 346T558 261T497 161L486 147L487 123Q489 67 495 47T514 26Q528 28 540 37T557 60Q559 67 562 68T577 70Q597 70 597 62Q597 56 591 43Q579 19 556 5T512 -10H505Q438 -10 414 62L411 69L400 61Q390 53 370 41T325 18T267 -2T203 -11Q124 -11 79 39T34 156ZM208 26Q257 26 306 47T379 90L403 112Q401 255 396 290Q382 405 304 405Q235 405 183 332Q156 292 139 224T121 120Q121 71 146 49T208 26'], + + // GREEK SMALL LETTER BETA + 0x3B2: [705,194,566,23,573,'29 -194Q23 -188 23 -186Q23 -183 102 134T186 465Q208 533 243 584T309 658Q365 705 429 705H431Q493 705 533 667T573 570Q573 465 469 396L482 383Q533 332 533 252Q533 139 448 65T257 -10Q227 -10 203 -2T165 17T143 40T131 59T126 65L62 -188Q60 -194 42 -194H29ZM353 431Q392 431 427 419L432 422Q436 426 439 429T449 439T461 453T472 471T484 495T493 524T501 560Q503 569 503 593Q503 611 502 616Q487 667 426 667Q384 667 347 643T286 582T247 514T224 455Q219 439 186 308T152 168Q151 163 151 147Q151 99 173 68Q204 26 260 26Q302 26 349 51T425 137Q441 171 449 214T457 279Q457 337 422 372Q380 358 347 358H337Q258 358 258 389Q258 396 261 403Q275 431 353 431'], + + // GREEK SMALL LETTER GAMMA + 0x3B3: [441,216,518,11,543,'31 249Q11 249 11 258Q11 275 26 304T66 365T129 418T206 441Q233 441 239 440Q287 429 318 386T371 255Q385 195 385 170Q385 166 386 166L398 193Q418 244 443 300T486 391T508 430Q510 431 524 431H537Q543 425 543 422Q543 418 522 378T463 251T391 71Q385 55 378 6T357 -100Q341 -165 330 -190T303 -216Q286 -216 286 -188Q286 -138 340 32L346 51L347 69Q348 79 348 100Q348 257 291 317Q251 355 196 355Q148 355 108 329T51 260Q49 251 47 251Q45 249 31 249'], + + // GREEK SMALL LETTER DELTA + 0x3B4: [717,10,444,36,451,'195 609Q195 656 227 686T302 717Q319 716 351 709T407 697T433 690Q451 682 451 662Q451 644 438 628T403 612Q382 612 348 641T288 671T249 657T235 628Q235 584 334 463Q401 379 401 292Q401 169 340 80T205 -10H198Q127 -10 83 36T36 153Q36 286 151 382Q191 413 252 434Q252 435 245 449T230 481T214 521T201 566T195 609ZM112 130Q112 83 136 55T204 27Q233 27 256 51T291 111T309 178T316 232Q316 267 309 298T295 344T269 400L259 396Q215 381 183 342T137 256T118 179T112 130'], + + // GREEK SMALL LETTER EPSILON + 0x3B5: [452,23,466,27,428,'190 -22Q124 -22 76 11T27 107Q27 174 97 232L107 239L99 248Q76 273 76 304Q76 364 144 408T290 452H302Q360 452 405 421Q428 405 428 392Q428 381 417 369T391 356Q382 356 371 365T338 383T283 392Q217 392 167 368T116 308Q116 289 133 272Q142 263 145 262T157 264Q188 278 238 278H243Q308 278 308 247Q308 206 223 206Q177 206 142 219L132 212Q68 169 68 112Q68 39 201 39Q253 39 286 49T328 72T345 94T362 105Q376 103 376 88Q376 79 365 62T334 26T275 -8T190 -22'], + + // GREEK SMALL LETTER ZETA + 0x3B6: [704,204,438,44,471,'296 643Q298 704 324 704Q342 704 342 687Q342 682 339 664T336 633Q336 623 337 618T338 611Q339 612 341 612Q343 614 354 616T374 618L384 619H394Q471 619 471 586Q467 548 386 546H372Q338 546 320 564L311 558Q235 506 175 398T114 190Q114 171 116 155T125 127T137 104T153 86T171 72T192 61T213 53T235 46T256 39L322 16Q389 -10 389 -80Q389 -119 364 -154T300 -202Q292 -204 274 -204Q247 -204 225 -196Q210 -192 193 -182T172 -167Q167 -159 173 -148Q180 -139 191 -139Q195 -139 221 -153T283 -168Q298 -166 310 -152T322 -117Q322 -91 302 -75T250 -51T183 -29T116 4T65 62T44 160Q44 287 121 410T293 590L302 595Q296 613 296 643'], + + // GREEK SMALL LETTER ETA + 0x3B7: [443,216,497,21,503,'21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q156 442 175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336V326Q503 302 439 53Q381 -182 377 -189Q364 -216 332 -216Q319 -216 310 -208T299 -186Q299 -177 358 57L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287'], + + // GREEK SMALL LETTER THETA + 0x3B8: [705,10,469,35,462,'35 200Q35 302 74 415T180 610T319 704Q320 704 327 704T339 705Q393 701 423 656Q462 596 462 495Q462 380 417 261T302 66T168 -10H161Q125 -10 99 10T60 63T41 130T35 200ZM383 566Q383 668 330 668Q294 668 260 623T204 521T170 421T157 371Q206 370 254 370L351 371Q352 372 359 404T375 484T383 566ZM113 132Q113 26 166 26Q181 26 198 36T239 74T287 161T335 307L340 324H145Q145 321 136 286T120 208T113 132'], + + // GREEK SMALL LETTER IOTA + 0x3B9: [442,10,354,48,333,'139 -10Q111 -10 92 0T64 25T52 52T48 74Q48 89 55 109T85 199T135 375L137 384Q139 394 140 397T145 409T151 422T160 431T173 439T190 442Q202 442 213 435T225 410Q225 404 214 358T181 238T137 107Q126 74 126 54Q126 43 126 39T130 31T142 27H147Q206 27 255 78Q272 98 281 114T290 138T295 149T313 153Q321 153 324 153T329 152T332 149T332 143Q332 106 276 48T145 -10H139'], + + // GREEK SMALL LETTER KAPPA + 0x3BA: [442,11,576,48,554,'83 -11Q70 -11 62 -4T51 8T49 17Q49 30 96 217T147 414Q160 442 193 442Q205 441 213 435T223 422T225 412Q225 401 208 337L192 270Q193 269 208 277T235 292Q252 304 306 349T396 412T467 431Q489 431 500 420T512 391Q512 366 494 347T449 327Q430 327 418 338T405 368Q405 370 407 380L397 375Q368 360 315 315L253 266L240 257H245Q262 257 300 251T366 230Q422 203 422 150Q422 140 417 114T411 67Q411 26 437 26Q484 26 513 137Q516 149 519 151T535 153Q554 153 554 144Q554 121 527 64T457 -7Q447 -10 431 -10Q386 -10 360 17T333 90Q333 108 336 122T339 146Q339 170 320 186T271 209T222 218T185 221H180L155 122Q129 22 126 16Q113 -11 83 -11'], + + // GREEK SMALL LETTER LAMDA + 0x3BB: [694,12,583,47,557,'166 673Q166 685 183 694H202Q292 691 316 644Q322 629 373 486T474 207T524 67Q531 47 537 34T546 15T551 6T555 2T556 -2T550 -11H482Q457 3 450 18T399 152L354 277L340 262Q327 246 293 207T236 141Q211 112 174 69Q123 9 111 -1T83 -12Q47 -12 47 20Q47 37 61 52T199 187Q229 216 266 252T321 306L338 322Q338 323 288 462T234 612Q214 657 183 657Q166 657 166 673'], + + // GREEK SMALL LETTER MU + 0x3BC: [442,216,603,23,580,'58 -216Q44 -216 34 -208T23 -186Q23 -176 96 116T173 414Q186 442 219 442Q231 441 239 435T249 423T251 413Q251 401 220 279T187 142Q185 131 185 107V99Q185 26 252 26Q261 26 270 27T287 31T302 38T315 45T327 55T338 65T348 77T356 88T365 100L372 110L408 253Q444 395 448 404Q461 431 491 431Q504 431 512 424T523 412T525 402L449 84Q448 79 448 68Q448 43 455 35T476 26Q485 27 496 35Q517 55 537 131Q543 151 547 152Q549 153 557 153H561Q580 153 580 144Q580 138 575 117T555 63T523 13Q510 0 491 -8Q483 -10 467 -10Q446 -10 429 -4T402 11T385 29T376 44T374 51L368 45Q362 39 350 30T324 12T288 -4T246 -11Q199 -11 153 12L129 -85Q108 -167 104 -180T92 -202Q76 -216 58 -216'], + + // GREEK SMALL LETTER NU + 0x3BD: [442,2,494,45,530,'74 431Q75 431 146 436T219 442Q231 442 231 434Q231 428 185 241L137 51H140L150 55Q161 59 177 67T214 86T261 119T312 165Q410 264 445 394Q458 442 496 442Q509 442 519 434T530 411Q530 390 516 352T469 262T388 162T267 70T106 5Q81 -2 71 -2Q66 -2 59 -1T51 1Q45 5 45 11Q45 13 88 188L132 364Q133 377 125 380T86 385H65Q59 391 59 393T61 412Q65 431 74 431'], + + // GREEK SMALL LETTER XI + 0x3BE: [704,205,438,21,443,'268 632Q268 704 296 704Q314 704 314 687Q314 682 311 664T308 635T309 620V616H315Q342 619 360 619Q443 619 443 586Q439 548 358 546H344Q326 546 317 549T290 566Q257 550 226 505T195 405Q195 381 201 364T211 342T218 337Q266 347 298 347Q375 347 375 314Q374 297 359 288T327 277T280 275Q234 275 208 283L195 286Q149 260 119 214T88 130Q88 116 90 108Q101 79 129 63T229 20Q238 17 243 15Q337 -21 354 -33Q383 -53 383 -94Q383 -137 351 -171T273 -205Q240 -205 202 -190T158 -167Q156 -163 156 -159Q156 -151 161 -146T176 -140Q182 -140 189 -143Q232 -168 274 -168Q286 -168 292 -165Q313 -151 313 -129Q313 -112 301 -104T232 -75Q214 -68 204 -64Q198 -62 171 -52T136 -38T107 -24T78 -8T56 12T36 37T26 66T21 103Q21 149 55 206T145 301L154 307L148 313Q141 319 136 323T124 338T111 358T103 382T99 413Q99 471 143 524T259 602L271 607Q268 618 268 632'], + + // GREEK SMALL LETTER OMICRON + 0x3BF: [441,11,485,34,476,'201 -11Q126 -11 80 38T34 156Q34 221 64 279T146 380Q222 441 301 441Q333 441 341 440Q354 437 367 433T402 417T438 387T464 338T476 268Q476 161 390 75T201 -11ZM121 120Q121 70 147 48T206 26Q250 26 289 58T351 142Q360 163 374 216T388 308Q388 352 370 375Q346 405 306 405Q243 405 195 347Q158 303 140 230T121 120'], + + // GREEK SMALL LETTER PI + 0x3C0: [431,11,570,19,573,'132 -11Q98 -11 98 22V33L111 61Q186 219 220 334L228 358H196Q158 358 142 355T103 336Q92 329 81 318T62 297T53 285Q51 284 38 284Q19 284 19 294Q19 300 38 329T93 391T164 429Q171 431 389 431Q549 431 553 430Q573 423 573 402Q573 371 541 360Q535 358 472 358H408L405 341Q393 269 393 222Q393 170 402 129T421 65T431 37Q431 20 417 5T381 -10Q370 -10 363 -7T347 17T331 77Q330 86 330 121Q330 170 339 226T357 318T367 358H269L268 354Q268 351 249 275T206 114T175 17Q164 -11 132 -11'], + + // GREEK SMALL LETTER RHO + 0x3C1: [442,216,517,23,510,'58 -216Q25 -216 23 -186Q23 -176 73 26T127 234Q143 289 182 341Q252 427 341 441Q343 441 349 441T359 442Q432 442 471 394T510 276Q510 219 486 165T425 74T345 13T266 -10H255H248Q197 -10 165 35L160 41L133 -71Q108 -168 104 -181T92 -202Q76 -216 58 -216ZM424 322Q424 359 407 382T357 405Q322 405 287 376T231 300Q217 269 193 170L176 102Q193 26 260 26Q298 26 334 62Q367 92 389 158T418 266T424 322'], + + // GREEK SMALL LETTER FINAL SIGMA + 0x3C2: [442,107,363,30,405,'31 207Q31 306 115 374T302 442Q341 442 373 430T405 400Q405 392 399 383T379 374Q373 375 348 390T296 405Q222 405 160 357T98 249Q98 232 103 218T112 195T132 175T154 159T186 141T219 122Q234 114 255 102T286 85T299 78L302 74Q306 71 308 69T315 61T322 51T328 40T332 25T334 8Q334 -31 305 -69T224 -107Q194 -107 163 -92Q156 -88 156 -80Q156 -73 162 -67T178 -61Q186 -61 190 -63Q209 -71 224 -71Q244 -71 253 -59T263 -30Q263 -25 263 -21T260 -12T255 -4T248 3T239 9T227 17T213 25T195 34T174 46Q170 48 150 58T122 74T97 90T70 112T51 137T36 169T31 207'], + + // GREEK SMALL LETTER SIGMA + 0x3C3: [431,11,571,31,572,'184 -11Q116 -11 74 34T31 147Q31 247 104 333T274 430Q275 431 414 431H552Q553 430 555 429T559 427T562 425T565 422T567 420T569 416T570 412T571 407T572 401Q572 357 507 357Q500 357 490 357T476 358H416L421 348Q439 310 439 263Q439 153 359 71T184 -11ZM361 278Q361 358 276 358Q152 358 115 184Q114 180 114 178Q106 141 106 117Q106 67 131 47T188 26Q242 26 287 73Q316 103 334 153T356 233T361 278'], + + // GREEK SMALL LETTER TAU + 0x3C4: [431,13,437,18,517,'39 284Q18 284 18 294Q18 301 45 338T99 398Q134 425 164 429Q170 431 332 431Q492 431 497 429Q517 424 517 402Q517 388 508 376T485 360Q479 358 389 358T299 356Q298 355 283 274T251 109T233 20Q228 5 215 -4T186 -13Q153 -13 153 20V30L203 192Q214 228 227 272T248 336L254 357Q254 358 208 358Q206 358 197 358T183 359Q105 359 61 295Q56 287 53 286T39 284'], + + // GREEK SMALL LETTER UPSILON + 0x3C5: [443,10,540,21,523,'413 384Q413 406 432 424T473 443Q492 443 507 425T523 367Q523 334 508 270T468 153Q424 63 373 27T282 -10H268Q220 -10 186 2T135 36T111 78T104 121Q104 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Q21 299 34 333T82 404T161 441Q200 441 225 419T250 355Q248 336 247 334Q247 331 232 291T201 199T185 118Q185 68 211 47T275 26Q317 26 355 57T416 132T452 216T465 277Q465 301 457 318T439 343T421 361T413 384'], + + // GREEK SMALL LETTER PHI + 0x3C6: [442,218,654,50,618,'92 210Q92 176 106 149T142 108T185 85T220 72L235 70L237 71L250 112Q268 170 283 211T322 299T370 375T429 423T502 442Q547 442 582 410T618 302Q618 224 575 152T457 35T299 -10Q273 -10 273 -12L266 -48Q260 -83 252 -125T241 -179Q236 -203 215 -212Q204 -218 190 -218Q159 -215 159 -185Q159 -175 214 -2L209 0Q204 2 195 5T173 14T147 28T120 46T94 71T71 103T56 142T50 190Q50 238 76 311T149 431H162Q183 431 183 423Q183 417 175 409Q134 361 114 300T92 210ZM574 278Q574 320 550 344T486 369Q437 369 394 329T323 218Q309 184 295 109L286 64Q304 62 306 62Q423 62 498 131T574 278'], + + // GREEK SMALL LETTER CHI + 0x3C7: [443,204,626,24,600,'576 -125Q576 -147 547 -175T487 -204H476Q394 -204 363 -157Q334 -114 293 26L284 59Q283 58 248 19T170 -66T92 -151T53 -191Q49 -194 43 -194Q36 -194 31 -189T25 -177T38 -154T151 -30L272 102L265 131Q189 405 135 405Q104 405 87 358Q86 351 68 351Q48 351 48 361Q48 369 56 386T89 423T148 442Q224 442 258 400Q276 375 297 320T330 222L341 180Q344 180 455 303T573 429Q579 431 582 431Q600 431 600 414Q600 407 587 392T477 270Q356 138 353 134L362 102Q392 -10 428 -89T490 -168Q504 -168 517 -156T536 -126Q539 -116 543 -115T557 -114T571 -115Q576 -118 576 -125'], + + // GREEK SMALL LETTER PSI + 0x3C8: [694,205,651,21,634,'161 441Q202 441 226 417T250 358Q250 338 218 252T187 127Q190 85 214 61Q235 43 257 37Q275 29 288 29H289L371 360Q455 691 456 692Q459 694 472 694Q492 694 492 687Q492 678 411 356Q329 28 329 27T335 26Q421 26 498 114T576 278Q576 302 568 319T550 343T532 361T524 384Q524 405 541 424T583 443Q602 443 618 425T634 366Q634 337 623 288T605 220Q573 125 492 57T329 -11H319L296 -104Q272 -198 272 -199Q270 -205 252 -205H239Q233 -199 233 -197Q233 -192 256 -102T279 -9Q272 -8 265 -8Q106 14 106 139Q106 174 139 264T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Q21 299 34 333T82 404T161 441'], + + // GREEK SMALL LETTER OMEGA + 0x3C9: [443,12,622,15,604,'495 384Q495 406 514 424T555 443Q574 443 589 425T604 364Q604 334 592 278T555 155T483 38T377 -11Q297 -11 267 66Q266 68 260 61Q201 -11 125 -11Q15 -11 15 139Q15 230 56 325T123 434Q135 441 147 436Q160 429 160 418Q160 406 140 379T94 306T62 208Q61 202 61 187Q61 124 85 100T143 76Q201 76 245 129L253 137V156Q258 297 317 297Q348 297 348 261Q348 243 338 213T318 158L308 135Q309 133 310 129T318 115T334 97T358 83T393 76Q456 76 501 148T546 274Q546 305 533 325T508 357T495 384'], + + // GREEK THETA SYMBOL + 0x3D1: [705,11,591,21,563,'537 500Q537 474 533 439T524 383L521 362Q558 355 561 351Q563 349 563 345Q563 321 552 318Q542 318 521 323L510 326Q496 261 459 187T362 51T241 -11Q100 -11 100 105Q100 139 127 242T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287Q21 291 27 313T47 368T79 418Q103 442 134 442Q169 442 201 419T233 344Q232 330 206 228T180 98Q180 26 247 26Q292 26 332 90T404 260L427 349Q422 349 398 359T339 392T289 440Q265 476 265 520Q265 590 312 647T417 705Q463 705 491 670T528 592T537 500ZM464 564Q464 668 413 668Q373 668 339 622T304 522Q304 494 317 470T349 431T388 406T421 391T435 387H436L443 415Q450 443 457 485T464 564'], + + // GREEK PHI SYMBOL + 0x3D5: [694,205,596,42,579,'409 688Q413 694 421 694H429H442Q448 688 448 686Q448 679 418 563Q411 535 404 504T392 458L388 442Q388 441 397 441T429 435T477 418Q521 397 550 357T579 260T548 151T471 65T374 11T279 -10H275L251 -105Q245 -128 238 -160Q230 -192 227 -198T215 -205H209Q189 -205 189 -198Q189 -193 211 -103L234 -11Q234 -10 226 -10Q221 -10 206 -8T161 6T107 36T62 89T43 171Q43 231 76 284T157 370T254 422T342 441Q347 441 348 445L378 567Q409 686 409 688ZM122 150Q122 116 134 91T167 53T203 35T237 27H244L337 404Q333 404 326 403T297 395T255 379T211 350T170 304Q152 276 137 237Q122 191 122 150ZM500 282Q500 320 484 347T444 385T405 400T381 404H378L332 217L284 29Q284 27 285 27Q293 27 317 33T357 47Q400 66 431 100T475 170T494 234T500 282'], + + // GREEK PI SYMBOL + 0x3D6: [431,10,828,19,823,'206 -10Q158 -10 136 24T114 110Q114 233 199 349L205 358H184Q144 358 121 347Q108 340 95 330T75 312T61 295T53 285Q51 284 38 284Q19 284 19 294Q19 300 38 329T93 391T164 429Q171 431 532 431Q799 431 803 430Q823 423 823 402Q823 377 801 364Q790 358 766 358Q748 358 748 357Q748 355 749 348T752 327T754 297Q754 258 738 207T693 107T618 24T520 -10Q488 -10 466 2T432 36T416 77T411 120Q411 128 410 128T404 122Q373 71 323 31T206 -10ZM714 296Q714 316 707 358H251Q250 357 244 348T230 328T212 301T193 267T176 229T164 187T159 144Q159 62 222 62Q290 62 349 127T432 285Q433 286 434 288T435 291T437 293T440 294T444 294T452 294H466Q472 288 472 286Q472 285 464 244T456 170Q456 62 534 62Q604 62 659 139T714 296'], + + // GREEK RHO SYMBOL + 0x3F1: [442,194,517,67,510,'205 -174Q136 -174 102 -153T67 -76Q67 -25 91 85T127 234Q143 289 182 341Q252 427 341 441Q343 441 349 441T359 442Q432 442 471 394T510 276Q510 169 431 80T253 -10Q226 -10 204 -2T169 19T146 44T132 64L128 73Q128 72 124 53T116 5T112 -44Q112 -68 117 -78T150 -95T236 -102Q327 -102 356 -111T386 -154Q386 -166 384 -178Q381 -190 378 -192T361 -194H348Q342 -188 342 -179Q342 -169 315 -169Q294 -169 264 -171T205 -174ZM424 322Q424 359 407 382T357 405Q322 405 287 376T231 300Q221 276 204 217Q188 152 188 116Q188 68 210 47T259 26Q297 26 334 62Q367 92 389 158T418 266T424 322'], + + // GREEK LUNATE EPSILON SYMBOL + 0x3F5: [431,11,406,40,382,'227 -11Q149 -11 95 41T40 174Q40 262 87 322Q121 367 173 396T287 430Q289 431 329 431H367Q382 426 382 411Q382 385 341 385H325H312Q191 385 154 277L150 265H327Q340 256 340 246Q340 228 320 219H138V217Q128 187 128 143Q128 77 160 52T231 26Q258 26 284 36T326 57T343 68Q350 68 354 58T358 39Q358 36 357 35Q354 31 337 21T289 0T227 -11'], + + // INCREMENT + 0x2206: [716,0,833,48,788,''] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Math/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js new file mode 100644 index 0000000..ff1abd2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js @@ -0,0 +1,290 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Bold/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-bold'], + { + // SPACE + 0x20: [0,0,250,0,0,''], + + // EXCLAMATION MARK + 0x21: [694,0,367,110,256,'111 669Q111 680 111 682T113 689T121 693T137 694H184H249Q255 686 256 681Q244 220 239 213Q236 208 229 208T183 207T137 207T127 213T118 431T111 669ZM110 71V95Q110 137 136 144Q140 146 183 146H200Q246 146 254 121Q256 115 256 73V51Q256 9 230 2Q225 0 181 0L138 1Q121 7 113 21L111 28L110 71'], + + // QUOTATION MARK + 0x22: [694,-442,558,37,420,'38 687Q42 693 45 693Q46 694 111 694H176Q179 690 183 687V556L144 501Q139 494 134 486T126 474T120 465T114 457T110 451T106 447T102 445T98 443T94 443T89 442H73H62Q37 442 37 453Q37 458 55 501T74 546Q74 548 59 548L44 549L38 555V687ZM275 687Q279 693 282 693Q283 694 348 694H413Q416 690 420 687V556L381 501Q376 494 371 486T363 474T357 465T351 457T347 451T343 447T339 445T335 443T331 443T326 442H310H299Q274 442 274 453Q274 458 292 501T311 546Q311 548 296 548L281 549L275 555V687'], + + // NUMBER SIGN + 0x23: [694,193,917,61,855,'61 365Q61 370 62 375T65 383T69 390T74 395T80 399T85 403T90 406L94 407H344L381 536Q418 668 426 680Q431 687 445 692Q451 694 457 694Q477 694 488 682T500 651Q500 645 466 528T431 409Q431 407 504 407H577L609 521Q651 668 656 675Q669 693 691 693Q710 693 721 680T733 651Q733 645 699 528T664 409Q664 407 743 407H823L827 405Q831 403 834 402T841 397T848 389T853 379T855 365Q855 337 823 324L731 323H639L619 253Q599 181 598 180V177H823L827 175Q831 173 834 172T841 167T848 159T853 149T855 135Q855 107 823 94L698 93H573L540 -21Q498 -168 493 -175Q480 -193 458 -193Q439 -193 428 -180T416 -151Q416 -144 450 -27T485 91Q485 93 412 93H340L307 -21Q265 -168 260 -175Q247 -193 225 -193Q206 -193 195 -180T183 -151Q183 -144 217 -27T252 91Q252 93 173 93L94 94Q61 105 61 135Q61 140 62 145T65 153T69 160T74 165T80 169T85 173T90 176L94 177H185L277 178L297 248L318 320V323H206L94 324Q61 335 61 365ZM551 320V323H479Q406 323 405 322Q404 319 385 249T365 178T438 177L510 178L530 248L551 320'], + + // DOLLAR SIGN + 0x24: [750,56,550,49,488,'231 712L232 716Q232 719 232 722T234 729T239 736T246 743T256 748T271 750Q318 750 318 711V703Q393 692 451 656Q469 645 470 640Q470 635 461 587L453 537Q445 529 442 529Q438 529 424 540T384 565T330 585Q328 585 325 585T320 586L318 587V434Q322 433 333 429T350 424T365 418T382 409T399 397T419 380Q488 313 488 213Q488 24 334 -5L318 -8V-17Q318 -56 279 -56H272Q253 -56 243 -46T232 -30T231 -18V-8H224Q170 2 127 20T68 50T49 67Q49 71 58 122T68 176Q71 182 79 182Q83 182 98 169T145 138T216 110Q228 108 229 108H231V288Q167 299 114 356T61 496Q61 537 70 570T94 624T126 661T162 684T195 696T219 701L228 702H231V712ZM231 521Q231 583 230 583Q226 582 220 579T204 561T193 521Q193 491 212 472Q226 458 230 458Q231 458 231 521ZM318 112Q356 131 356 187Q356 237 318 263V112'], + + // PERCENT SIGN + 0x25: [750,57,1029,61,966,'61 549Q61 733 218 749Q220 749 228 749T241 750Q286 750 321 735T369 708T389 683Q422 634 422 548V538Q422 519 420 501T408 453T381 401T328 364T243 347Q61 347 61 549ZM292 549Q292 663 242 663Q221 663 211 648T198 615T196 566V548Q196 471 206 454Q218 434 242 434Q292 434 292 549ZM243 -55Q223 -55 212 -42T201 -13Q201 -2 207 7Q209 11 480 371T758 738Q770 750 788 750Q805 750 817 738T830 709Q830 694 820 681L544 315Q273 -43 269 -47Q258 -55 243 -55ZM606 146Q606 330 763 346Q764 346 773 346T786 347Q831 347 866 332T914 305T934 280Q966 233 966 146V135Q966 115 964 97T952 49T925 -2T872 -40T788 -56Q606 -56 606 146ZM742 146V132Q742 107 743 93T748 62T762 39T787 31Q819 31 832 79Q837 97 837 146Q837 260 787 260Q767 260 757 246T744 214T742 169V146'], + + // AMPERSAND + 0x26: [716,23,831,47,769,'757 117Q762 117 769 110V3Q759 -7 718 -14T641 -22T571 -15T518 1T477 19T453 31L437 23Q350 -19 257 -22Q158 -22 103 30T47 155Q47 188 57 216T87 263T119 292T151 313L182 333L187 336L181 349Q150 431 150 506Q150 605 211 660T347 716Q417 716 471 668T526 543Q526 517 518 495T471 432T360 343L342 330Q342 327 358 306T402 250T458 189L467 181Q518 225 556 289T607 395L620 437Q622 443 630 443Q631 443 679 430Q718 420 725 418T733 409Q733 402 722 365T670 255T573 123Q562 111 563 111Q589 94 644 94Q678 94 703 100T740 111T757 117ZM397 544Q397 573 384 601T346 629Q320 629 299 607T277 538Q277 484 295 429Q301 413 301 412Q302 409 309 415Q397 476 397 544ZM227 258Q197 228 197 177Q197 150 207 126T234 95Q242 93 251 93Q288 93 337 107L349 110L328 131Q266 196 234 248L227 258'], + + // APOSTROPHE + 0x27: [694,-442,306,80,226,'81 687Q85 693 88 693Q89 694 154 694H219Q222 690 226 687V556L187 501Q182 494 177 486T169 474T163 465T157 457T153 451T149 447T145 445T141 443T137 443T132 442H116H105Q80 442 80 453Q80 458 98 501T117 546Q117 548 102 548L87 549L81 555V687'], + + // LEFT PARENTHESIS + 0x28: [750,249,428,79,366,'79 250Q79 352 100 441T152 585T213 678T266 733L287 749Q288 750 324 750H359Q366 741 366 738Q366 734 356 721T329 682T296 623T262 531T238 407Q230 346 230 250Q230 142 244 55T278 -82T318 -165T352 -215T366 -238Q366 -242 359 -249H286L277 -242Q79 -74 79 250'], + + // RIGHT PARENTHESIS + 0x29: [750,250,428,61,348,'61 737Q61 750 85 750H106H141L150 742Q348 574 348 250T150 -242L141 -249L106 -250H87Q61 -250 61 -238Q61 -233 74 -216Q157 -113 183 51Q197 130 197 250T183 449Q174 505 158 554T126 634T95 687T71 722T61 737'], + + // ASTERISK + 0x2A: [750,-293,550,67,482,'241 579Q241 582 228 639T215 702Q215 722 233 736T271 750Q296 750 315 736T334 702V697Q334 693 328 664T314 607L308 579L352 620Q389 654 397 660T417 668Q447 668 464 647T482 602Q482 591 479 583T472 569T459 559T443 552T421 546T397 538L342 521L397 504Q405 501 420 497T442 490T458 483T472 473T479 460T482 440Q482 416 465 395T417 374Q406 375 398 381T352 422L308 463L314 435Q321 407 327 378T334 345Q336 333 327 319T296 295Q288 293 275 293Q241 293 227 311T215 345Q215 349 221 378T234 435L241 463L197 422Q160 388 152 382T132 374Q102 374 85 395T67 440Q67 451 70 459T77 473T90 483T106 490T128 496T152 504L207 521L152 538Q144 541 129 545T107 552T91 559T77 569T70 582T67 602Q67 626 84 647T132 668Q143 667 151 661T197 620L241 579'], + + // PLUS SIGN + 0x2B: [617,116,856,61,794,'61 250Q61 276 94 292H386V436V535Q386 577 388 589T401 607Q411 617 427 617Q458 617 468 587Q470 581 470 436V292H762L766 290Q770 288 773 287T780 282T787 274T792 264T794 250Q794 222 762 209L616 208H470V64Q470 -81 468 -87Q458 -116 428 -116T388 -87Q386 -81 386 64V208H240L94 209Q61 220 61 250'], + + // COMMA + 0x2C: [146,106,306,80,226,'81 139Q85 145 88 145Q89 146 154 146H219Q222 142 226 139V8L187 -47Q182 -54 177 -62T169 -74T163 -83T157 -91T153 -97T149 -101T145 -103T141 -105T137 -105T132 -106H116H105Q80 -106 80 -95Q80 -90 98 -47T117 -2Q117 0 102 0L87 1L81 7V139'], + + // HYPHEN-MINUS + 0x2D: [274,-185,367,12,306,'12 230Q12 257 26 265T80 274Q88 274 114 274T158 273T201 273T235 274Q276 274 290 266T305 230T291 194T235 185Q226 185 201 185T159 186Q143 186 119 186T85 185Q43 185 28 193T12 230'], + + // FULL STOP + 0x2E: [146,0,306,80,226,'219 146Q222 142 226 139V7L222 4L219 1L154 0Q102 0 94 0T82 6Q80 9 80 74L81 139Q85 145 88 145Q89 146 154 146H219'], + + // SOLIDUS + 0x2F: [750,249,550,61,488,'103 -249Q81 -249 71 -235T61 -207Q61 -201 62 -198Q64 -192 235 265T409 727Q418 750 445 750Q464 750 476 737T488 707Q488 701 313 234Q143 -225 137 -232Q126 -249 103 -249'], + + // DIGIT ZERO + 0x30: [715,22,550,43,507,'274 -22Q227 -22 190 -9T128 24T87 76T62 135T49 204T44 271T43 336V343V362Q43 407 45 440T56 524T86 613T141 677Q197 715 264 715Q314 715 353 702T418 669T460 616T487 555T500 483T505 413T506 343Q506 310 506 293T503 241T498 185T486 133T467 83T437 42T397 8T343 -13T274 -22ZM355 355V401Q355 448 354 476T349 537T336 587T311 617T272 629Q270 629 266 629T261 628Q219 618 207 568T194 419V355Q194 203 200 156T231 85Q250 66 275 66Q299 66 318 85Q342 109 348 156T355 355'], + + // DIGIT ONE + 0x31: [716,-1,550,76,473,'118 560H116Q107 560 100 561T85 572T76 600Q76 612 77 618T83 632T99 644Q102 645 135 646T207 660T275 700Q292 716 310 716Q353 716 360 691Q362 685 362 386V87H446Q464 76 468 69T473 44Q473 12 446 1H118Q105 7 100 13T94 25T93 44V62Q100 79 119 87H210V329Q210 571 208 571Q182 560 118 560'], + + // DIGIT TWO + 0x32: [716,0,550,46,494,'339 477Q339 505 332 531T301 579T242 601Q165 601 136 503Q133 493 130 490T121 486Q116 486 94 514Q86 523 82 528Q46 572 46 577Q46 591 77 632T147 691Q192 716 257 716Q305 716 351 700Q416 674 455 615T494 481Q494 421 463 376T356 266Q326 240 287 205T224 146T199 122H331Q359 122 392 122T431 123H445Q485 123 492 98Q494 92 494 62V47Q494 9 468 2Q463 0 272 0L83 1Q63 7 56 28L55 57V89Q59 97 215 261Q255 303 275 327T317 394T339 477'], + + // DIGIT THREE + 0x33: [716,22,550,46,503,'61 624Q62 630 83 650T153 693T262 716Q328 716 373 698T438 650T465 593T473 536Q473 438 375 376L387 371Q450 350 476 305T503 208Q503 164 492 126T456 53T380 -2T261 -22Q224 -22 189 -15T130 2T86 24T57 43T46 53Q46 56 53 99T62 145Q65 152 71 152Q76 152 90 143T123 121T175 99T248 87Q302 87 321 113T341 202Q341 264 329 292T279 329L232 331L190 332L184 338V411Q190 417 192 417Q193 418 205 419T232 421T252 424Q280 430 299 461T318 539V551Q318 599 283 609Q276 611 257 611Q225 611 199 601T159 577T136 554T120 543T102 560T76 597T62 618T61 624'], + + // DIGIT FOUR + 0x34: [695,0,550,31,518,'278 693H282Q285 693 291 693T305 694T322 694T342 694H377Q402 694 411 691T430 677Q434 670 434 646T435 456V249H461H472Q509 249 516 224Q518 219 518 194Q518 178 518 171T511 155T492 142Q488 140 461 140H435V86V53Q435 9 409 2Q405 0 366 0H351Q306 0 298 25Q296 31 296 86V140H179H123Q99 140 80 129T50 106T37 95Q31 95 31 163V208Q31 246 33 251Q251 673 262 684Q268 691 278 693ZM302 249V416L301 576Q301 536 165 276L151 250L226 249H302'], + + // DIGIT FIVE + 0x35: [694,22,550,36,494,'109 282Q87 290 83 310V666Q83 667 84 670T87 676T91 682T98 688T108 693Q112 694 269 694T431 692Q457 686 457 648V637V624Q457 588 431 581Q426 579 326 579H227V510Q227 442 229 442Q243 450 288 450Q377 450 435 399T494 222Q494 -22 241 -22Q202 -22 167 -11T109 16T69 49T45 79T37 94T69 151Q91 185 97 185Q105 185 112 170Q127 135 160 111T240 87Q266 87 284 94T311 111T325 142T331 179T332 226Q332 307 324 335T281 363Q228 363 197 306Q189 289 172 282H109'], + + // DIGIT SIX + 0x36: [716,22,550,46,503,'414 589Q410 589 389 600T334 612Q275 612 243 575Q209 538 202 433V422L209 431Q243 487 317 487Q392 487 440 442Q478 402 490 357T503 236Q503 113 454 54Q421 13 381 -4T279 -22Q263 -22 250 -21T214 -15T173 1T133 30T96 77T68 146T50 242Q46 278 46 336Q46 406 52 447Q84 698 312 715L315 716Q318 716 321 716Q323 716 328 716T337 715Q398 715 425 688V596Q419 591 414 589ZM282 87Q324 89 336 117T348 231Q348 310 343 343T324 388T277 399Q249 399 231 373T208 317T202 253Q202 201 207 168T224 117T249 93T282 87'], + + // DIGIT SEVEN + 0x37: [695,11,550,46,503,'135 38Q135 190 198 335T353 572H215Q185 572 151 572T110 571H96Q55 571 48 596Q46 602 46 633V648Q46 686 72 693Q76 695 124 695Q134 695 183 695T274 694Q472 694 477 692Q503 686 503 648V637Q503 612 502 605T491 588Q300 349 292 46V36Q292 -4 266 -9Q262 -11 214 -11H192Q160 -11 148 -3T135 38'], + + // DIGIT EIGHT + 0x38: [715,22,550,46,503,'61 518Q61 574 79 614T128 676T192 706T263 715H270Q298 715 318 714T373 701T430 671T470 612T488 517Q488 459 458 423T390 376Q388 375 393 373Q395 372 398 371Q503 330 503 204Q503 -22 275 -22Q209 -22 163 -3T92 49T57 120T46 204Q46 230 50 252T61 289T77 318T96 339T116 353T134 363T148 369T158 373T160 376Q118 389 90 424T61 518ZM344 538Q344 563 340 578T326 600T307 609T279 612Q232 612 218 594T204 518Q204 459 216 439T275 418Q328 418 338 450Q344 464 344 515V538ZM248 88T274 88T315 94T338 117T346 149T349 197Q349 269 342 290Q338 309 320 320T274 331Q246 331 229 320T207 290Q200 269 200 197Q201 163 202 149T210 118T232 94'], + + // DIGIT NINE + 0x39: [716,22,550,46,503,'347 272Q346 272 342 266T330 250T309 230T276 214T230 207Q185 207 150 223Q116 240 90 276T54 357Q46 393 46 468Q46 469 46 484T47 502T48 520T51 540T55 559T61 579T69 599T81 620T96 640T115 661Q174 716 276 716Q299 716 317 714T369 698T426 658T471 580T499 456Q503 402 503 342Q503 115 392 29Q322 -22 231 -22Q163 -22 115 7L82 31Q76 38 81 46Q116 112 127 123Q130 126 134 126T148 116T179 97T226 87Q287 87 318 132Q323 139 326 146T332 165T337 182T340 204T342 225T345 249T347 272ZM201 547T201 454T211 329T262 294Q276 294 285 296T310 312T335 355Q347 391 347 447Q347 520 340 550T317 595Q300 612 277 612Q226 612 214 580'], + + // COLON + 0x3A: [458,0,306,80,226,'226 319L219 313H87L81 319L80 384Q80 437 80 445T86 456Q89 458 154 458H219Q222 454 226 451V319ZM219 146Q222 142 226 139V7L222 4L219 1L154 0Q102 0 94 0T82 6Q80 9 80 74L81 139Q85 145 88 145Q89 146 154 146H219'], + + // SEMICOLON + 0x3B: [458,106,306,80,226,'226 319L219 313H87L81 319L80 384Q80 437 80 445T86 456Q89 458 154 458H219Q222 454 226 451V319ZM81 139Q85 145 88 145Q89 146 154 146H219Q222 142 226 139V8L187 -47Q182 -54 177 -62T169 -74T163 -83T157 -91T153 -97T149 -101T145 -103T141 -105T137 -105T132 -106H116H105Q80 -106 80 -95Q80 -90 98 -47T117 -2Q117 0 102 0L87 1L81 7V139'], + + // EQUALS SIGN + 0x3D: [407,-94,856,61,795,'94 324Q61 335 61 366Q61 396 91 405Q96 407 429 407H762Q763 406 767 404T774 400T781 395T787 387T792 378T794 365Q794 338 762 324H94ZM94 94Q61 105 61 135Q61 149 69 160T92 175Q97 177 430 177H762L766 175Q770 173 773 172T780 167T787 159T792 149T794 135Q794 107 762 94H94'], + + // QUESTION MARK + 0x3F: [706,0,519,61,457,'61 644Q61 652 87 666T157 693T244 705Q344 705 400 671T457 551Q457 516 446 490T422 451T387 421T356 391Q330 361 318 332T305 292T303 252Q303 218 300 213T290 208T244 207H220Q194 207 188 213Q187 214 186 215V255Q187 282 188 296T198 345T229 417T288 496Q306 515 306 559Q306 596 296 607T253 618Q214 618 185 607T143 583T120 558T103 547Q99 547 95 551Q93 553 77 597T61 644ZM171 71V95Q171 137 197 144Q201 146 244 146H261Q307 146 315 121Q317 115 317 73V51Q317 9 291 2Q286 0 242 0L199 1Q182 7 174 21L172 28L171 71'], + + // COMMERCIAL AT + 0x40: [704,11,733,61,671,'61 264T61 347T82 494T136 596T217 660T311 694T410 704Q460 704 471 703Q534 694 577 666Q633 623 651 552T670 370V342Q670 249 633 195Q583 116 454 116Q238 116 238 347Q238 443 276 499Q328 578 456 578Q488 578 494 577L504 575Q475 617 430 617H421Q196 617 196 347Q196 215 253 143Q310 76 427 76Q499 76 561 102L575 107H664Q671 97 671 94V89L663 81Q566 -11 422 -11Q365 -11 316 -2T219 33T137 97T82 200ZM469 490Q459 492 453 492Q429 492 405 472Q374 439 374 347Q374 233 423 210Q436 202 454 202L486 210Q536 228 536 347Q536 461 486 484Q476 490 469 490'], + + // LATIN CAPITAL LETTER A + 0x41: [694,1,733,42,690,'110 0H86Q42 0 42 27Q42 37 148 350T258 667Q269 687 291 692Q295 694 366 694H399Q432 694 448 689T474 667Q477 663 583 350T690 27Q690 0 642 0H617H592Q582 0 575 1T561 2T549 6T541 11T533 18T527 26T522 37T517 49T512 64T506 81L490 130H225Q225 128 208 79T189 27Q185 19 180 14T170 7T156 3T143 1T127 0T110 0ZM439 279Q359 524 359 547L357 555L355 543Q347 503 270 263L259 231H357Q455 231 455 232L439 279'], + + // LATIN CAPITAL LETTER B + 0x42: [694,-1,733,92,671,'119 1Q98 5 92 28V667Q98 686 118 693Q121 694 272 694H289H346Q439 694 500 681T600 625Q640 580 640 513Q640 451 601 414T504 364L518 361Q568 351 602 329T649 280T666 235T671 197Q671 172 665 147T642 91T586 37T488 5Q456 1 282 1H119ZM489 509Q489 532 479 548T450 573T421 585T394 591Q387 592 315 593H247V404H298H325Q432 404 466 444Q489 470 489 509ZM517 194Q517 235 502 261T458 299T407 313T353 317H329H322H247V101H319H357Q387 101 407 103T452 111T492 133T514 171Q516 176 517 194'], + + // LATIN CAPITAL LETTER C + 0x43: [704,11,703,61,647,'423 -11Q339 -11 275 9T171 62T106 143T71 240T61 347Q61 450 93 527Q157 664 313 694Q357 704 416 704Q479 704 517 699T608 676Q634 667 635 660Q635 653 624 592L612 528L609 524Q604 521 601 521Q595 521 583 531T555 555T505 578T428 589H424Q298 589 250 494Q224 438 224 347Q224 292 233 251T265 175T329 122T432 104Q488 104 524 115T604 158Q607 160 610 162T615 165T619 168L621 170Q625 172 630 170T637 163Q638 160 642 109T647 54Q646 49 625 37T568 11T499 -7Q463 -11 423 -11'], + + // LATIN CAPITAL LETTER D + 0x44: [695,0,794,92,732,'119 1Q98 5 92 28V667Q98 686 118 693H124Q131 693 142 693T168 694T200 694T237 694H296Q416 694 450 692T525 677Q732 617 732 342Q732 169 644 81Q593 32 528 16T372 0Q356 0 324 0T276 1H119ZM573 349Q573 387 571 413T559 473T532 527T482 567T403 591Q395 592 320 593H250V101H321Q418 102 456 114Q553 144 569 263Q573 303 573 349'], + + // LATIN CAPITAL LETTER E + 0x45: [691,0,642,92,595,'277 122Q280 122 380 123T544 125Q552 125 557 125T565 124T569 124Q595 115 595 75V62V47Q595 9 569 2Q564 0 341 0L119 1Q99 7 92 28V664Q98 683 118 690Q121 691 335 691T554 689Q580 682 580 644V632V618Q580 582 554 573Q553 573 551 573T542 572T527 572Q464 572 364 573T260 575H253V412H385H459Q524 412 536 404T549 357Q549 341 549 334T542 318T523 305Q518 303 385 303H253V122H277'], + + // LATIN CAPITAL LETTER F + 0x46: [691,0,611,92,564,'512 572Q451 572 356 573T258 575H253V400H370H431Q494 400 506 392T518 345Q518 307 507 299T437 291H370H253V161Q253 141 253 113T254 75Q254 23 245 12T195 0H170L119 1Q99 7 92 28V664Q98 683 118 690Q121 691 327 691T538 689Q564 682 564 644V632V618Q564 582 538 573Q537 573 535 573T526 572T512 572'], + + // LATIN CAPITAL LETTER G + 0x47: [705,11,733,60,659,'61 347Q61 405 70 454T105 550T171 631T276 685T426 705Q483 705 537 693T620 668T650 646Q650 645 649 637T645 612T639 578L627 514L624 510Q620 507 615 507T597 520T566 548T512 577T430 590Q223 590 223 347T431 104Q478 104 506 112Q508 112 508 164V215H471L434 216L428 222L427 268Q427 315 429 318Q432 323 444 323T544 324H652Q655 320 659 317V45L656 43Q654 39 624 27T536 2T424 -11Q366 -11 317 -2T219 33T137 97T82 200T61 347'], + + // LATIN CAPITAL LETTER H + 0x48: [694,0,794,92,702,'92 667Q101 694 143 694H172H198Q244 694 251 669Q253 663 253 539V415H540V539Q540 558 540 585T539 621Q539 673 550 683T611 694H621H646Q671 694 683 690T700 669Q702 663 702 347T700 25Q696 9 684 5T646 0H621H606Q560 0 550 11T539 76Q539 85 539 116T540 169V306H253V169Q253 147 253 116T254 75Q254 23 245 12T194 0H170L119 1Q99 7 92 28V667'], + + // LATIN CAPITAL LETTER I + 0x49: [694,0,331,85,246,'85 667Q94 694 136 694H165H191Q237 694 244 669Q246 663 246 347T244 25Q235 0 192 0H163L112 1Q92 7 85 28V667'], + + // LATIN CAPITAL LETTER J + 0x4A: [694,22,519,46,427,'236 -22Q190 -22 144 -11T72 12T46 29Q63 147 69 153Q80 164 92 146Q124 91 191 91Q222 91 242 102T267 134Q268 139 268 402Q268 663 270 669Q275 687 294 692Q298 694 347 694H367Q393 694 406 690T425 669Q427 663 427 399Q427 132 426 125Q421 87 404 58T366 15T318 -9T273 -20T236 -22'], + + // LATIN CAPITAL LETTER K + 0x4B: [694,0,764,92,701,'92 667Q101 694 139 694H163H186Q225 694 234 671Q236 663 236 529L237 392L533 682Q550 694 590 694H623H681Q695 680 695 672Q695 670 693 664Q688 657 561 533L431 405L698 33Q701 28 701 23Q701 7 683 0H626H604Q571 0 564 2T545 13Q544 14 530 33T489 90T437 162L332 307Q331 307 284 260L236 214V122V65Q236 32 231 19T210 2Q205 0 161 0L119 1Q99 7 92 28V667'], + + // LATIN CAPITAL LETTER L + 0x4C: [694,0,581,92,534,'92 667Q98 684 109 689T142 694H172H198Q244 694 251 669Q253 663 253 389V116L278 117Q410 119 490 119H495Q511 119 517 115T534 93V63V48Q534 9 508 2Q503 0 310 0L119 1Q99 7 92 28V667'], + + // LATIN CAPITAL LETTER M + 0x4D: [695,0,978,92,886,'92 667Q98 684 109 689T146 695Q152 695 167 695T192 694Q200 694 214 694T234 695Q291 695 305 664Q313 651 400 419T487 165Q487 162 488 162T489 165Q489 187 574 413T671 664Q679 680 695 688Q708 694 785 694H828Q855 694 867 689T884 669Q886 663 886 347T884 25Q876 0 832 0H817H802Q758 0 750 25Q748 31 748 293V555L746 544Q737 509 692 386T606 160T564 52Q548 22 502 22H487H472Q423 22 410 52Q407 59 367 160T283 385T231 546L230 548Q229 548 229 293Q229 31 227 25Q222 9 211 5T176 0H158L119 1Q99 7 92 28V667'], + + // LATIN CAPITAL LETTER N + 0x4E: [694,0,794,92,702,'92 667Q98 684 109 689T146 694H185Q273 694 279 692Q301 689 315 669Q322 660 419 453L554 163L562 143Q564 143 564 401Q564 663 566 669Q574 694 618 694H633H648Q692 694 700 669Q702 663 702 347T700 25Q696 10 683 5T642 0H596H551Q520 0 505 4T478 25Q471 34 374 241L239 532Q231 550 231 552L229 479Q229 440 229 293Q229 31 227 25Q222 9 211 5T176 0H158L119 1Q99 7 92 28V667'], + + // LATIN CAPITAL LETTER O + 0x4F: [716,22,794,62,731,'362 715Q364 715 376 715T394 716H400Q542 716 626 643T727 426Q731 395 731 342Q731 271 722 225Q674 -22 396 -22Q320 -22 259 -3T148 68T77 201Q62 257 62 342Q62 447 86 522T173 649Q245 707 362 715ZM568 433Q551 623 396 623Q383 623 370 622T333 612T292 591T257 550T233 485Q223 442 223 350Q223 276 232 227T267 137Q309 74 397 74Q433 74 461 85T507 113T537 156T556 205T566 260T569 310T570 357Q570 409 568 433'], + + // LATIN CAPITAL LETTER P + 0x50: [694,0,703,92,641,'641 470Q641 426 630 391T603 334T561 295T513 271T459 259T408 254T361 253H350H337H253V142Q253 125 253 100T254 67Q254 32 249 19T227 2Q222 0 170 0L119 1Q99 7 92 28V667Q98 686 118 693Q121 694 271 694Q428 693 462 688Q641 656 641 470ZM487 467Q487 495 485 510T474 546T442 578T382 592Q375 593 310 593H250V347H309H339Q364 347 380 348T418 354T451 368T474 395T486 438Q487 444 487 467'], + + // LATIN CAPITAL LETTER Q + 0x51: [716,106,794,62,732,'450 -20Q444 -20 429 -21T396 -22Q320 -22 259 -3T148 68T77 201Q62 257 62 342Q62 447 86 522T173 649Q245 707 362 715Q364 715 376 715T394 716Q732 716 732 340Q732 268 719 210T686 120T647 68T615 39T601 29T638 -22T676 -73Q679 -78 679 -83Q679 -98 661 -106H593Q526 -106 521 -104Q514 -103 507 -97T496 -84T477 -55L454 -19L450 -20ZM554 509Q516 622 391 622Q294 622 250 535Q220 475 220 345Q220 299 222 266T234 198T258 140T299 99T363 74Q378 71 393 71H395L381 92Q367 114 353 136T338 161Q336 165 336 170Q336 186 352 193L361 194Q370 194 384 194T412 194H452Q457 194 460 194T466 194T471 192T476 191T480 188T483 185T487 180T492 174T497 167T504 158L526 129Q532 127 552 175Q573 231 573 348Q573 455 554 509'], + + // LATIN CAPITAL LETTER R + 0x52: [695,0,703,92,654,'654 24Q654 9 644 5T612 0H577L521 1Q509 5 503 13Q498 20 421 160L343 304H250V168Q250 147 250 118T251 78Q251 24 242 12T192 0H168L119 1Q99 7 92 28V667Q98 686 118 693H124Q131 693 141 693T165 694T195 694T229 694T280 694T332 695Q389 695 428 691T510 675T582 637T627 569Q641 532 641 493Q641 377 537 331L497 317L493 316L571 177Q653 28 654 24ZM487 472T487 492T485 525T476 553T450 577T404 591Q398 592 322 593H250V391H321Q327 391 353 391T385 392T412 395T438 401T457 412T474 430T483 456'], + + // LATIN CAPITAL LETTER S + 0x53: [716,22,611,49,549,'61 503Q61 547 72 583T110 650T186 698T305 716Q405 716 496 671Q513 664 514 657Q514 656 513 648T509 623T503 589L491 525L488 521Q484 518 479 518H475L461 532Q430 565 395 581T305 598Q201 598 201 523Q201 480 240 462T345 431T443 394Q549 324 549 204Q549 160 538 123T502 51T427 -2T308 -22Q180 -22 69 41Q50 52 49 57Q49 58 50 66T54 91T60 125L72 189L75 193Q80 196 84 196Q87 196 104 182T145 149T212 117T304 102Q408 102 408 188Q408 215 396 234T362 263T319 278T267 290T219 302Q149 324 105 380T61 503'], + + // LATIN CAPITAL LETTER T + 0x54: [688,0,733,40,692,'67 687Q70 688 366 688Q661 688 666 686Q692 680 692 641V629V615Q692 579 666 570H660Q655 569 648 569Q645 569 624 569T581 570Q505 570 475 572H447V302Q447 31 445 25Q436 0 393 0H364L313 1Q293 7 286 28L285 300V572H257Q227 570 151 570Q130 570 109 570T84 569Q77 569 72 570H66Q48 577 44 588T40 631L41 661Q47 680 67 687'], + + // LATIN CAPITAL LETTER U + 0x55: [694,22,764,92,672,'92 667Q101 694 143 694H172H200Q242 694 251 671Q253 663 253 430Q254 189 255 185Q262 134 288 107T384 79Q498 79 516 168Q520 191 521 431Q521 663 523 671Q532 694 572 694H596H618Q639 694 648 692T665 679Q671 672 671 653Q672 632 672 555V432Q671 200 670 190Q652 79 581 29T383 -22Q137 -22 98 166Q92 195 92 303V667'], + + // LATIN CAPITAL LETTER V + 0x56: [694,-1,733,27,705,'27 667Q27 683 39 688T75 694H101Q155 694 159 692Q182 687 194 665Q202 652 283 419T374 142Q376 165 473 445Q552 664 553 666Q568 694 618 694H639H658Q681 694 693 689T705 667Q705 660 592 347Q481 32 477 28Q466 7 441 1H292Q266 7 255 28Q251 32 140 347Q27 660 27 667'], + + // LATIN CAPITAL LETTER W + 0x57: [694,0,1039,24,1014,'994 694Q1012 683 1014 668Q1014 661 977 519T896 217T845 26Q831 0 783 0H747H711Q685 0 672 5T649 26Q644 36 583 272T517 548Q516 552 516 551Q503 479 437 227Q389 37 383 26Q367 0 323 0H288H254Q207 0 193 26Q191 32 108 346T24 665Q24 685 44 693Q47 694 98 694H115Q152 694 168 668Q174 657 235 417T297 144Q297 134 300 153Q307 204 362 421T427 668Q441 694 488 694H523Q586 694 597 688Q612 683 620 661T651 549Q664 496 673 462Q744 194 750 146V140Q767 223 800 354T857 576T883 668Q897 694 938 694H958H994'], + + // LATIN CAPITAL LETTER X + 0x58: [695,0,733,37,694,'52 1Q37 11 37 23Q37 26 39 32Q39 34 158 202L275 369Q275 370 221 441T112 586T55 663Q53 669 53 672Q53 687 68 693H72Q77 693 84 693T99 694T118 694T139 694H176Q203 694 212 692T230 682Q231 681 239 669T265 634T296 591L358 504L418 591Q481 682 486 686Q491 691 499 692Q505 694 569 694H632Q650 685 650 672Q650 667 646 660Q643 654 592 582T491 440T441 369T566 201T693 29Q694 27 694 23Q694 11 677 0H607L537 1Q523 6 519 10T437 131Q422 153 411 170T390 200T375 222T365 237T359 245L357 247L348 232Q339 218 319 188T283 131Q222 37 211 22T186 1H52'], + + // LATIN CAPITAL LETTER Y + 0x59: [694,0,733,24,708,'635 694H668Q688 694 698 690T708 670Q708 664 704 658L446 278L445 152V27Q442 20 440 17T433 9T419 1L368 0H339Q316 0 305 5T288 26Q286 31 286 154V278L157 468Q135 500 101 550Q43 635 34 650T24 671Q24 686 39 693Q42 694 105 694H122H132Q163 694 180 689T214 666Q225 654 336 485Q373 425 373 420L374 418Q375 419 375 421Q378 432 418 493T496 609T536 667Q543 676 551 681T572 689T591 693T615 694T635 694'], + + // LATIN CAPITAL LETTER Z + 0x5A: [694,0,672,61,616,'411 584Q243 581 131 581Q122 581 116 581T106 582T102 582Q84 589 80 600T76 640L77 667Q83 686 103 693Q106 694 343 694Q579 694 584 692Q592 691 599 684T609 668Q610 665 610 646Q610 614 608 608Q605 603 434 361L261 116Q340 117 402 118T490 119T533 120T560 120H572Q605 120 614 95Q616 89 616 60V46Q616 9 590 2Q585 0 339 0Q92 0 87 2Q79 3 72 10T62 26Q61 29 61 49Q61 84 63 90Q65 94 152 217T325 461T411 584'], + + // LEFT SQUARE BRACKET + 0x5B: [751,251,343,79,318,'318 -206Q318 -235 305 -243T255 -251Q248 -251 229 -251T198 -250H143Q112 -250 99 -246T81 -225Q79 -219 79 250T81 725Q85 741 98 745T143 750H198Q210 750 229 750T255 751Q291 751 304 743T318 707Q318 680 301 668Q293 663 255 663H224V-163H255Q293 -163 301 -168Q318 -180 318 -206'], + + // RIGHT SQUARE BRACKET + 0x5D: [751,251,343,24,263,'24 706Q24 734 39 742T90 751Q97 751 114 751T143 750H198Q230 750 243 746T261 725Q263 719 263 250T261 -225Q257 -241 244 -245T198 -250H143Q131 -250 112 -250T86 -251Q50 -251 37 -243T24 -207Q24 -180 41 -168Q49 -163 87 -163H118V663H87H71Q24 663 24 706'], + + // CIRCUMFLEX ACCENT + 0x5E: [694,-537,550,108,441,'108 550Q108 554 135 589T190 658T219 692Q221 694 275 694Q328 694 330 693Q331 692 381 629T438 557Q441 553 441 549T434 538L399 537Q363 537 362 538Q361 538 318 575L275 611Q274 611 231 575Q188 538 187 538Q186 537 150 537L115 538Q108 545 108 550'], + + // LOW LINE + 0x5F: [-23,110,550,0,549,'0 -66Q0 -32 26 -25Q30 -23 274 -23Q469 -23 497 -23T532 -28Q549 -40 549 -67Q549 -93 532 -105Q525 -109 498 -109T275 -110Q31 -110 26 -108Q0 -101 0 -66'], + + // LATIN SMALL LETTER A + 0x61: [475,11,525,31,473,'255 394Q218 394 186 383T138 358T109 333T94 321H91Q88 321 86 322T83 325T80 331T79 339T78 349T77 362T75 377Q72 410 72 420Q72 423 72 425T73 429T74 431T77 433T80 435T85 437Q166 475 262 475Q360 475 413 440Q462 406 471 341Q472 332 472 181Q472 155 472 119T473 73Q473 20 462 10T398 0H380Q349 0 337 8T324 48V65Q298 30 257 10T172 -11Q109 -11 70 37T31 145Q31 276 307 289H321V309Q321 337 318 352T300 381T255 394ZM176 146Q176 116 190 97T231 77Q251 77 266 85Q322 110 322 185Q322 189 322 192T322 198L321 201V234L308 232Q176 220 176 146'], + + // LATIN SMALL LETTER B + 0x62: [694,10,561,54,523,'54 667Q63 694 102 694H127H151Q190 694 199 671Q201 663 201 544L202 422L211 428Q270 468 355 468Q523 468 523 231Q523 -10 321 -10Q286 -10 261 -2T204 33Q197 11 187 6T142 0H126L81 1Q61 7 54 28V667ZM372 230Q372 317 355 349T280 382Q251 382 204 356V107Q235 76 274 76Q301 76 320 84T349 105T364 139T371 180T372 230'], + + // LATIN SMALL LETTER C + 0x63: [475,12,489,37,457,'188 233Q188 199 190 177T200 131T225 95T271 83H281Q356 83 421 130Q433 138 434 139Q446 141 448 131Q449 128 453 84T457 36Q455 30 432 20T364 -1T273 -11Q37 -11 37 232Q37 456 244 474Q246 474 257 474T276 475Q349 475 400 455Q443 436 448 431L451 425Q451 419 443 377Q442 372 441 366T439 356T438 348T436 340T435 334T433 330T431 327T429 325T426 324Q420 324 406 336Q376 362 350 372T281 382Q254 382 236 373T208 352T194 317T189 278T188 233'], + + // LATIN SMALL LETTER D + 0x64: [694,11,561,37,507,'225 -11Q192 -11 164 -3T104 29T55 102T37 227Q37 321 63 376Q111 469 223 469Q292 469 349 433L359 426V546Q359 564 359 589T358 623Q358 675 369 684T433 694H451Q497 694 505 669Q507 663 507 347T505 25Q500 9 487 5T450 0H432H413Q356 0 356 36V40Q298 -11 225 -11ZM356 359Q326 382 286 382Q239 382 215 358Q189 330 189 256V229V203V195Q189 102 231 86Q251 76 274 76Q318 76 356 114V359'], + + // LATIN SMALL LETTER E + 0x65: [475,10,511,30,481,'30 231Q30 301 51 351T107 426T181 463T262 474H268Q293 474 312 472T366 459T422 427T462 363T480 260Q480 230 466 222T405 213Q395 213 364 213T311 214H173V211Q173 183 183 148T216 96Q244 76 287 76Q319 76 350 85T399 104T433 125T451 136Q463 138 465 128Q466 125 469 84T473 39Q471 29 423 13T330 -9Q321 -10 286 -10Q213 -10 161 11T81 68T42 144T30 231ZM353 292Q350 324 342 344T320 373T294 384T264 387Q191 387 175 286V282H353V292'], + + // LATIN SMALL LETTER F + 0x66: [706,0,336,29,381,'67 458H78V502V509Q78 538 79 556T90 604T117 651T169 685T253 704Q254 704 258 704T265 705T275 705T287 704Q364 704 381 687V638V607Q381 591 378 585T366 579Q362 581 351 591T323 610T282 618Q238 618 226 587Q224 581 223 519V458H253Q288 458 298 453Q315 441 315 415Q315 399 312 390T299 377T282 372T259 371H255H226V201Q226 31 224 25Q215 0 174 0H150L106 1Q86 7 79 28L78 199V371H69Q29 371 29 412Q29 425 30 431T40 447T67 458'], + + // LATIN SMALL LETTER G + 0x67: [469,206,550,17,534,'63 108Q63 142 83 176L76 184Q35 227 35 300Q35 469 243 469Q330 469 385 437L397 443Q451 469 508 469Q515 468 517 466T522 456T528 425Q534 392 534 386Q532 379 523 377Q520 377 509 381T477 390T431 398L425 399Q453 362 453 297Q453 268 445 242T417 189T351 146T242 130Q169 130 119 153Q117 141 117 136Q117 95 155 83Q161 81 252 81Q354 80 362 79Q437 71 475 48T526 -24Q532 -42 532 -65Q532 -116 489 -156T341 -204Q323 -206 274 -206H256Q39 -206 18 -84Q17 -79 17 -68Q17 15 82 42L76 53Q63 79 63 108ZM310 300Q310 359 298 377T238 396Q217 396 204 390T186 368T179 339T178 300Q178 245 189 224T244 203T299 224T310 300ZM414 -66Q414 -55 411 -47T401 -32T387 -21T368 -14T346 -10T322 -7T297 -6T271 -6T246 -6H193Q163 -6 154 -10T140 -30Q135 -45 135 -62Q135 -134 274 -134Q414 -134 414 -66'], + + // LATIN SMALL LETTER H + 0x68: [694,0,561,53,508,'53 667Q62 694 101 694H126H148Q191 694 198 669Q200 663 200 526V390Q263 469 361 469Q390 469 412 465T456 449T491 413T507 351Q508 342 508 185Q508 31 506 25Q498 0 450 0H432H413Q368 0 359 23Q357 31 357 186Q356 345 355 350Q349 369 336 376Q324 381 301 381H298Q269 381 242 362Q217 342 210 316T202 239Q202 229 202 202T203 157V82Q203 24 195 12T146 0H125L80 1Q60 7 53 28V667'], + + // LATIN SMALL LETTER I + 0x69: [695,0,256,46,208,'72 574Q55 583 51 591T46 619V636L47 670L48 673Q50 676 52 678T56 684T63 690T73 694H81Q89 694 102 694T129 695H181Q193 687 196 685T203 676T207 661T208 634Q208 603 204 593T181 574H72ZM54 431Q63 458 102 458H127H149Q192 458 199 433Q201 427 201 229T199 25Q190 0 149 0H125L81 1Q61 7 54 28V431'], + + // LATIN SMALL LETTER J + 0x6A: [695,205,286,-71,232,'70 634V648Q70 686 96 693Q100 695 151 695H176Q201 695 213 691T230 670Q232 665 232 634V620Q232 582 206 575Q202 573 151 573H126Q101 573 89 577T72 598Q70 603 70 634ZM-41 -84Q-1 -105 28 -105Q67 -105 78 -85Q83 -77 83 -48T84 180Q84 427 86 433Q93 458 136 458H158H180Q201 458 209 456T225 443Q230 436 231 418Q232 397 232 313V183V124V40Q232 -55 228 -87T203 -147Q166 -205 78 -205Q31 -205 -20 -189T-71 -159Q-71 -156 -62 -124T-52 -89Q-49 -84 -41 -84'], + + // LATIN SMALL LETTER K + 0x6B: [694,0,531,63,496,'496 23Q496 9 487 5T457 0H427H398Q367 0 354 11Q352 12 288 99L226 183L191 150V90V54Q191 30 186 18T165 2Q160 0 124 0L90 1Q70 7 63 28V667Q72 694 108 694H128H146Q183 694 192 671Q194 663 194 496L195 325L254 383Q266 394 281 409T301 429T316 441T329 450T341 455T357 458T376 458H409H436Q461 458 470 454T480 437Q480 430 477 427T445 395Q417 368 396 347L319 271Q319 270 358 217T442 103T494 32Q496 30 496 23'], + + // LATIN SMALL LETTER L + 0x6C: [694,0,256,54,201,'54 667Q63 694 102 694H127H149Q192 694 199 669Q201 663 201 347T199 25Q190 0 149 0H125L81 1Q61 7 54 28V667'], + + // LATIN SMALL LETTER M + 0x6D: [469,0,867,53,815,'197 386Q256 468 366 468Q404 468 430 461T471 438T491 413T503 385Q563 469 666 469Q731 469 769 446T814 350Q815 343 815 185Q815 31 813 25Q808 9 796 5T758 0H737L692 1Q672 7 665 28L664 186V206V290Q664 349 655 365T610 381Q581 381 560 370T529 341T515 311T510 291Q509 286 509 157V82Q509 24 501 12T452 0H431L386 1Q366 7 359 28L358 186V206V290Q358 349 349 365T304 381Q275 381 254 370T223 341T209 311T204 291Q203 286 203 157V82Q203 24 195 12T146 0H125L80 1Q60 7 53 28V437Q58 453 80 464H122H142Q167 464 178 460T195 439Q197 434 197 409V386'], + + // LATIN SMALL LETTER N + 0x6E: [468,0,561,53,508,'197 386Q264 468 350 468Q375 468 390 467T429 460T466 443T492 408T507 351Q508 342 508 185Q508 31 506 25Q498 0 450 0H432H413Q368 0 359 23Q357 31 357 186Q356 345 355 350Q349 369 336 376Q324 381 301 381H298Q269 381 242 362Q217 342 210 316T202 239Q202 229 202 202T203 157V82Q203 24 195 12T146 0H125L80 1Q60 7 53 28V437Q58 453 80 464H122H142Q167 464 178 460T195 439Q197 434 197 409V386'], + + // LATIN SMALL LETTER O + 0x6F: [474,11,550,32,518,'274 -11Q32 -11 32 225Q32 346 85 406T249 474H266H271Q302 474 325 471T385 458T451 419T498 346Q518 300 518 225Q518 -11 274 -11ZM367 233Q367 322 350 354T270 387Q240 387 222 377T195 344T184 298T182 233Q182 151 198 117T275 83H282Q318 83 339 104Q355 119 361 146T367 233'], + + // LATIN SMALL LETTER P + 0x70: [469,194,561,54,523,'125 458H139Q174 458 185 452T202 420L211 426Q245 448 288 458T354 469Q356 469 361 469T369 468Q443 468 481 412Q523 355 523 223Q523 164 509 120T473 51T423 12T371 -7T323 -11Q260 -11 204 33V-65Q204 -80 204 -102T205 -131Q205 -162 200 -175T178 -192Q173 -194 126 -194L81 -193Q61 -187 54 -166V431Q58 447 81 458H125ZM372 230Q372 376 282 376Q247 376 204 352V107L208 103Q213 99 218 95T232 87T251 79T274 76Q323 76 349 116Q372 153 372 230'], + + // LATIN SMALL LETTER Q + 0x71: [470,194,561,37,507,'226 -11Q37 -11 37 236Q37 294 51 338T86 407T135 445T186 464T233 469H235Q300 469 349 422L359 413V425Q359 452 376 464Q384 469 433 469H455Q498 469 505 444Q507 438 507 137Q507 -163 505 -169Q500 -185 487 -189T450 -194H432H413Q367 -194 358 -171Q356 -163 356 -63V40L348 33Q296 -11 231 -11H226ZM281 375Q188 375 188 228Q188 77 275 77Q322 77 359 120V328Q338 357 324 366T281 375'], + + // LATIN SMALL LETTER R + 0x72: [469,0,372,54,356,'54 437Q58 453 81 464H122H147Q186 464 194 439Q196 434 196 405V377L203 387Q245 456 324 468Q325 468 331 468T340 469Q347 469 356 462V360Q350 355 346 354T339 353T326 353T300 347Q260 337 234 311T202 252Q201 247 201 138Q201 122 201 98T202 66Q202 33 197 20T175 2Q170 0 125 0L81 1Q61 7 54 28V437'], + + // LATIN SMALL LETTER S + 0x73: [474,10,422,30,396,'37 328Q37 392 75 433T203 474Q254 474 265 473Q319 465 370 442Q378 439 380 432Q380 426 372 384Q364 336 359 333Q358 331 355 331Q348 331 337 341Q282 388 216 388H208Q190 388 180 387T161 377T151 351Q151 333 164 323T224 306L267 297Q314 285 355 246T396 144Q396 17 282 -5Q260 -10 218 -10Q170 -10 124 2T55 26T30 44Q30 48 39 99T49 153Q52 159 60 159Q66 159 70 153Q100 120 133 101T218 82Q231 82 238 83T258 87T277 101T283 126Q283 149 260 160T200 176T153 186Q109 201 73 236T37 328'], + + // LATIN SMALL LETTER T + 0x74: [589,10,404,20,373,'225 267Q225 202 226 169T232 115T244 88T265 82Q295 84 318 100T345 116Q352 116 354 110T364 77Q373 46 373 43Q373 28 312 9T190 -10Q160 -10 139 1T107 29T89 77T82 136T80 210V258V371H66H59Q39 371 27 386Q20 394 20 417Q21 432 23 437Q35 458 60 458H65H83V510L84 562Q93 589 131 589H154H174Q216 589 223 564Q225 558 225 508V458H274Q330 458 338 453Q355 441 355 415Q355 388 338 376Q330 371 274 371H225V267'], + + // LATIN SMALL LETTER U + 0x75: [459,11,561,52,508,'53 431Q62 459 100 459Q105 459 114 459T127 458H152Q192 458 201 435Q203 427 203 262Q204 86 208 77Q209 74 216 71Q227 66 258 66H264Q334 66 354 140L356 150L357 290Q357 427 359 435Q365 449 377 453T412 458H432H450Q498 458 506 433Q508 427 508 229T506 25Q498 0 451 0H434H418Q386 0 374 7T360 43V58L352 49Q298 -11 199 -11Q135 -9 101 11T56 80Q52 100 52 273L53 431'], + + // LATIN SMALL LETTER V + 0x76: [458,0,500,26,473,'26 429T26 435T32 448T44 456Q48 458 85 458H99Q145 458 161 431Q162 429 207 285L251 145L294 284Q333 410 341 430Q351 451 374 456Q379 458 420 458H430Q450 458 457 456T471 443Q473 437 473 435Q473 426 443 325T381 126L350 28Q339 7 316 2Q312 0 250 0Q187 0 183 2Q160 7 149 28L136 68Q124 109 106 166T70 283T39 385'], + + // LATIN SMALL LETTER W + 0x77: [458,0,744,24,719,'699 458Q717 447 719 432Q719 426 666 230T610 27Q602 10 588 5T548 0H512H482Q431 0 420 17T384 135Q356 241 352 298V308L351 295Q348 251 322 145T290 28Q279 0 233 0H212H191Q146 0 133 27Q130 33 77 229T24 430Q24 449 44 457Q47 458 79 458Q122 458 126 456Q154 450 163 419L233 153Q241 187 272 304T307 431Q318 458 368 458Q394 458 398 456Q421 451 430 431Q434 423 509 147L547 286Q582 416 588 429Q600 454 624 457Q632 458 647 458H663H699'], + + // LATIN SMALL LETTER X + 0x78: [460,1,500,24,475,'92 0Q87 0 77 0T62 -1Q24 -1 24 22Q24 29 33 41T106 136Q185 237 184 238Q184 239 147 284T73 376T33 427Q31 430 31 436Q31 451 45 457Q48 458 96 458H122Q152 458 163 450T208 394L247 345L282 394Q288 403 297 416T309 434T319 444T328 452T338 455T352 458T372 458H393H440Q457 449 457 435Q457 428 450 419T379 328Q308 239 308 237L389 137Q409 112 436 79Q475 31 475 23Q475 -1 436 -1Q432 -1 422 -1T407 0Q360 0 352 3Q343 6 336 16T291 83L247 151L245 148Q243 145 239 139T229 124T218 106T204 84Q167 24 160 15T141 1L92 0'], + + // LATIN SMALL LETTER Y + 0x79: [458,205,500,29,473,'454 458Q473 446 473 430Q473 426 394 184L311 -68Q291 -119 245 -162T123 -205Q51 -205 46 -190Q44 -187 40 -142T36 -92Q36 -90 36 -88L37 -87Q41 -80 46 -80Q48 -80 73 -92T126 -105Q146 -105 161 -98T185 -76T197 -53T206 -28L215 0L122 212Q29 427 29 435Q29 448 46 457Q49 458 91 458Q93 458 106 458T125 457T140 454T157 446T170 431Q183 410 224 305T266 158Q266 152 266 151Q267 151 268 163Q271 206 302 310T342 432Q354 458 398 458H418H454'], + + // LATIN SMALL LETTER Z + 0x7A: [458,0,476,31,442,'268 376Q250 376 180 375T92 374Q69 374 63 380Q46 390 46 419Q46 428 49 437Q57 451 73 457Q76 458 242 458T413 456Q420 455 427 448Q439 438 439 413Q439 392 433 385Q432 383 318 236T204 88Q235 88 306 89T395 90H399Q408 90 414 89T427 84T438 70T442 45Q442 9 416 2Q411 0 236 0H136Q73 0 62 1T41 12Q31 23 31 47Q31 68 36 77Q37 78 51 97T96 155T153 228L268 376'], + + // TILDE + 0x7E: [344,-198,550,92,457,'92 215Q92 259 122 301T204 344Q238 344 264 329T310 300T343 285Q356 285 361 295T369 322T377 344H450Q457 334 457 330Q457 281 427 240T344 198Q312 198 285 213T239 242T206 257Q188 257 182 230T172 199L137 198H120Q102 198 97 200T92 215'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js new file mode 100644 index 0000000..1348325 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Bold/CombDiacritMarks.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-bold'], + { + // COMBINING GRAVE ACCENT + 0x300: [694,-537,0,-458,-218,'-458 682Q-458 690 -452 692T-426 694H-381H-314L-312 691Q-311 691 -305 682T-287 655T-263 622L-218 555V549Q-218 544 -224 538L-259 537Q-295 537 -296 538Q-298 539 -376 606T-456 676Q-458 680 -458 682'], + + // COMBINING ACUTE ACCENT + 0x301: [694,-537,0,-334,-93,'-290 537H-310Q-334 537 -334 549Q-334 553 -311 588T-264 656L-241 690Q-240 690 -239 691T-236 693Q-235 694 -167 694H-100Q-93 684 -93 681T-94 677Q-95 675 -173 607T-255 538Q-256 537 -290 537'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [694,-537,0,-442,-109,'-442 550Q-442 554 -415 589T-360 658T-331 692Q-329 694 -275 694Q-222 694 -220 693Q-219 692 -169 629T-112 557Q-109 552 -109 549Q-109 545 -116 538L-151 537Q-187 537 -188 538Q-189 538 -232 575L-275 611Q-276 611 -319 575Q-362 538 -363 538Q-364 537 -400 537L-435 538Q-442 545 -442 550'], + + // COMBINING TILDE + 0x303: [694,-548,0,-458,-93,'-458 565Q-458 609 -428 651T-346 694Q-312 694 -286 679T-240 650T-207 635Q-194 635 -189 645T-181 672T-173 694H-100Q-93 684 -93 680Q-93 631 -123 590T-206 548Q-238 548 -265 563T-311 592T-344 607Q-362 607 -368 580T-378 549L-413 548H-430Q-448 548 -453 550T-458 565'], + + // COMBINING MACRON + 0x304: [660,-560,0,-474,-77,'-84 660Q-81 656 -77 653V567L-81 564L-84 561L-274 560H-383Q-469 560 -471 565L-472 566Q-474 569 -474 611L-473 653Q-469 659 -466 659Q-465 660 -274 660H-84'], + + // COMBINING BREVE + 0x306: [694,-552,0,-470,-80,'-123 694Q-80 694 -80 657Q-80 626 -99 601T-161 563Q-199 552 -275 552Q-352 552 -389 563Q-470 586 -470 655Q-470 667 -468 673Q-457 694 -435 694H-431Q-408 694 -396 685Q-387 676 -387 671Q-384 661 -275 661Q-167 661 -164 671Q-164 674 -163 677T-151 687T-123 694'], + + // COMBINING DOT ABOVE + 0x307: [695,-596,0,-356,-194,'-329 596Q-346 602 -351 611T-356 638V646Q-356 653 -356 654T-356 661T-355 668T-353 673T-351 679T-347 684T-341 689T-332 693T-274 695H-221Q-202 683 -198 676T-194 645Q-194 632 -195 625T-202 610T-221 596H-329'], + + // COMBINING DIAERESIS + 0x308: [696,-595,0,-459,-91,'-331 695Q-312 683 -308 676T-304 645Q-304 632 -304 626T-311 610T-331 596L-380 595H-408Q-448 595 -457 617Q-459 621 -459 645T-457 673Q-448 696 -409 696Q-405 696 -396 696T-380 695H-331ZM-247 644Q-247 658 -246 665T-239 680T-221 694Q-217 695 -169 695H-143Q-102 695 -93 672Q-91 664 -91 645V635Q-91 613 -106 602Q-113 597 -121 596T-171 595L-219 596Q-232 600 -238 608T-246 622T-247 644'], + + // COMBINING RING ABOVE + 0x30A: [694,-538,0,-365,-119,'-365 616Q-365 658 -331 676T-256 694Q-253 694 -247 694T-236 693Q-166 693 -139 666Q-119 644 -119 616T-139 565Q-166 538 -237 538H-242Q-365 538 -365 616ZM-181 616Q-181 641 -195 647T-242 654Q-258 654 -266 654T-284 650T-298 638T-303 616Q-303 592 -289 585T-242 577Q-209 577 -195 584T-181 616'], + + // COMBINING DOUBLE ACUTE ACCENT + 0x30B: [694,-537,0,-440,-94,'-426 686Q-424 694 -394 694H-350H-283Q-277 686 -277 682Q-277 673 -317 608T-361 538L-396 537H-420Q-432 537 -436 539T-440 548Q-440 560 -434 616Q-432 633 -430 650T-427 677L-426 686ZM-243 686Q-241 694 -211 694H-167H-100Q-94 686 -94 682Q-94 673 -134 608T-178 538L-213 537H-237Q-249 537 -253 539T-257 548Q-257 560 -251 616Q-249 633 -247 650T-244 677L-243 686'], + + // COMBINING CARON + 0x30C: [657,-500,0,-442,-109,'-442 645Q-442 657 -418 657H-398Q-393 657 -388 657T-379 657T-371 656T-365 656H-363L-319 620L-276 583Q-275 583 -232 619Q-189 656 -188 656Q-187 657 -151 657H-116Q-109 649 -109 645Q-109 642 -112 637Q-118 629 -168 566T-220 501Q-222 500 -275 500Q-329 500 -331 501Q-442 634 -442 645'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js new file mode 100644 index 0000000..7fa434c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Bold/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-bold'] = { + directory: 'SansSerif/Bold', + family: 'MathJax_SansSerif', + id: 'MJSSB', + weight: 'bold', + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xFFFF,"Other"], + [0x300,0x36F,"CombDiacritMarks"] + ] + + +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js new file mode 100644 index 0000000..b5e3d0f --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js @@ -0,0 +1,86 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Bold/Other.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-bold'], + { + // LATIN SMALL LETTER DOTLESS I + 0x131: [458,0,256,54,201,'54 431Q63 458 102 458H127H149Q192 458 199 433Q201 427 201 229T199 25Q190 0 149 0H125L81 1Q61 7 54 28V431'], + + // LATIN SMALL LETTER DOTLESS J + 0x237: [458,205,286,-71,232,'-38 -84Q-36 -84 -14 -95T33 -106H38Q70 -103 78 -86Q83 -78 83 -49T84 180Q84 427 86 433Q93 458 136 458H158H180Q201 458 209 456T225 443Q230 436 231 418Q232 397 232 313V183V124V40Q232 -55 228 -87T203 -147Q166 -205 78 -205Q31 -205 -20 -189T-71 -159Q-71 -156 -59 -123Q-50 -96 -47 -91T-38 -84'], + + // GREEK CAPITAL LETTER GAMMA + 0x393: [691,0,581,92,534,'92 664Q98 683 118 690Q121 691 312 691T508 689Q534 682 534 644V632V618Q534 582 508 573L502 572Q496 572 489 572Q486 572 463 572T416 573Q333 573 291 575H253V303Q253 31 251 25Q242 0 199 0H170L119 1Q99 7 92 28V664'], + + // GREEK CAPITAL LETTER DELTA + 0x394: [694,0,917,60,856,'381 692Q386 694 458 694Q516 694 527 693T549 687Q564 680 575 663Q576 658 715 349T856 27Q856 6 838 1H826Q815 1 795 1T747 1T686 1T616 0T539 0T458 0T378 0T300 0T230 0T169 1T122 1T90 1H78Q60 6 60 27Q62 38 201 349T341 663Q356 687 381 692ZM627 148Q626 149 581 250T492 453L447 554Q447 553 446 552Q444 546 326 278L268 148Q268 147 448 147Q627 147 627 148'], + + // GREEK CAPITAL LETTER THETA + 0x398: [716,22,856,62,793,'62 340Q62 716 425 716Q511 716 576 696T681 642T747 559T783 458T793 341Q793 264 777 203T721 89T608 7T428 -22Q62 -22 62 340ZM638 333Q638 365 637 387T632 441T621 495T600 542T567 583T518 611T451 628Q443 629 427 629Q402 629 378 624T327 608T276 571T240 511Q217 453 217 345Q217 254 231 204T279 120Q333 69 428 69Q522 69 576 120Q638 183 638 333ZM279 349V373Q279 413 305 420Q309 422 427 422H487Q550 422 563 414T576 369V349Q576 345 576 337T577 324Q577 284 550 277Q545 275 428 275H369Q306 275 293 283T279 329V349'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [694,0,672,41,630,'106 0H83Q41 0 41 28Q41 39 133 349T229 667Q242 694 296 694H335H375Q403 694 418 689T442 667Q445 660 537 350T630 28Q630 11 619 6T584 0H555H526Q478 0 465 27Q462 32 431 136T366 372T325 555V546Q320 503 287 376T222 141T186 27Q184 22 177 15T165 6Q154 0 106 0'], + + // GREEK CAPITAL LETTER XI + 0x39E: [688,0,733,46,686,'627 553Q609 553 512 554T366 555Q316 555 220 554T105 553Q96 553 90 553T82 554T78 554Q61 560 57 571T52 605V623L53 661Q59 680 79 687Q82 688 366 688Q649 688 654 686Q680 679 680 639V621V603Q680 563 654 554Q653 554 651 554T642 554T627 553ZM149 423Q152 424 366 424Q579 424 584 422Q610 415 610 376V358V340Q610 300 584 293Q579 291 366 291H232Q162 291 150 293T129 306Q122 315 122 360L123 397Q129 416 149 423ZM108 135Q143 135 226 134T363 133Q407 133 507 134T632 135H645Q675 135 684 110Q686 104 686 68V49Q686 9 660 2Q655 0 364 0L74 1Q57 7 49 21L47 28L46 65V83Q46 126 72 133Q80 135 108 135'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [691,0,794,92,702,'92 664Q98 683 118 690Q121 691 396 691T676 689Q695 684 700 666Q702 660 702 345Q702 31 700 25Q696 9 684 5T646 0H621H596Q571 0 559 4T542 25Q540 31 540 307V582H253V307Q253 31 251 25Q242 0 199 0H170L119 1Q99 7 92 28V664'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [694,0,794,61,732,'322 124Q326 124 457 125T672 127H689Q721 127 730 102Q732 96 732 64V48Q732 9 706 2Q701 0 394 0L89 1Q76 5 69 13T62 29V36Q62 37 62 38Q62 47 70 58T126 126Q161 167 185 196Q302 335 302 336L187 463Q74 584 68 594Q61 603 61 639L62 667Q68 686 88 693Q91 694 396 694T706 692Q732 686 732 647V635V621Q732 585 706 576Q705 576 702 576T691 576T670 575L302 578Q302 577 394 475T490 371Q498 362 498 347Q498 336 488 323T408 226L322 124'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [715,0,856,62,793,'62 560Q62 607 94 644T169 698T253 715Q273 715 286 713T322 704T363 677T398 625Q413 597 423 556L428 540Q429 541 436 566T454 620T494 677T561 713Q570 715 593 715Q682 715 737 668T793 560Q793 549 793 545T786 533T767 520H670Q646 532 644 551T632 579Q618 594 591 594Q539 594 524 530T509 321V216Q509 31 507 25Q498 0 455 0H426L375 1Q355 7 348 28L347 232Q346 344 346 441Q346 442 343 468T335 521T312 571T266 594Q252 594 247 593Q228 586 220 576T212 557T209 539T191 523L185 520H88Q75 527 69 534T63 545T62 560'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [694,0,794,62,732,'62 292T62 347T80 445T124 511T183 552T243 574T292 584L315 587H319V627L320 667Q329 694 370 694H397H422Q466 694 473 669Q475 663 475 625V587H478Q479 587 500 584T548 575T608 553T668 513T713 446T732 347Q732 253 674 187Q655 167 628 152T576 128T530 116T493 109L478 107H475V69V50Q475 9 449 2Q444 0 395 0L347 1Q327 7 320 28L319 67V107H315L292 110Q269 114 243 119T184 142T124 182T80 249ZM319 197T319 347T318 497Q316 497 307 494T284 485T262 471Q220 438 220 347Q220 285 239 249Q248 234 261 223T286 208T308 200L317 197Q319 197 319 347ZM572 347V357Q572 387 569 407T548 452T496 491Q495 491 494 491T487 493T475 497V197Q518 210 541 232T571 303Q572 312 572 347'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [694,0,856,61,794,'61 585Q62 594 62 597T64 606T73 616T89 626H138Q196 626 208 620Q243 602 253 546T261 431T271 309T325 219Q342 205 349 205Q350 205 350 436L351 667Q360 694 401 694H428H454Q495 694 504 671Q506 663 506 436L507 205Q542 222 561 251T586 318T593 392T595 472T602 546Q614 614 661 625Q665 626 708 626H730Q766 626 780 618T794 582Q794 548 768 540Q755 538 754 501T750 410T736 298T680 191T560 120Q550 116 512 109H506V70V50Q506 9 480 2Q475 0 426 0L378 1Q358 7 351 28L350 68V109L335 111Q298 117 267 129T214 156T175 191T146 229T127 272T115 314T109 357T106 395T105 429Q104 537 87 540Q66 548 63 565Q61 570 61 585'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [716,1,794,49,744,'241 122Q225 154 191 199T131 278T83 363T61 464Q61 497 68 527T94 591T145 650T228 693T349 715Q354 715 370 715T396 716Q539 716 622 668Q658 647 682 617T715 556T728 505T732 465Q732 415 711 365T663 280T602 200T552 122H632Q649 122 669 122T693 123H697Q736 123 742 98Q744 92 744 62V47Q744 9 718 2Q713 0 591 0L471 1Q454 7 446 21Q444 27 444 45Q444 96 463 154T506 257T549 360T569 469Q569 504 563 530T538 580T485 616T396 629Q313 629 268 594T223 468Q223 419 243 361T286 258T330 152T350 41Q350 14 335 7T276 -1Q267 -1 241 -1T197 0L77 1Q57 7 50 28L49 59V74Q49 114 75 121Q81 123 100 123Q104 123 124 123T161 122H241'], + + // EN DASH + 0x2013: [327,-240,550,0,549,'0 284Q0 318 26 325Q30 327 274 327Q469 327 497 327T532 322Q549 310 549 283Q549 257 532 245Q525 241 498 241T275 240Q31 240 26 242Q0 249 0 284'], + + // EM DASH + 0x2014: [327,-240,1100,0,1099,'0 284Q0 318 26 325Q30 327 549 327T1073 325Q1099 318 1099 284Q1099 249 1073 242Q1068 240 549 240Q31 240 26 242Q0 249 0 284'], + + // LEFT SINGLE QUOTATION MARK + 0x2018: [694,-443,306,81,226,'87 443L81 449V581L119 636Q125 644 131 653T141 667T148 677T154 685T158 689T163 692T167 693T173 694H190H201Q226 694 226 683Q226 678 208 635T189 590Q189 588 204 588H219Q222 584 226 581V449L219 443H87'], + + // RIGHT SINGLE QUOTATION MARK + 0x2019: [694,-442,306,80,226,'81 687Q85 693 88 693Q89 694 154 694H219Q222 690 226 687V556L187 501Q182 494 177 486T169 474T163 465T157 457T153 451T149 447T145 445T141 443T137 443T132 442H116H105Q80 442 80 453Q80 458 98 501T117 546Q117 548 102 548L87 549L81 555V687'], + + // LEFT DOUBLE QUOTATION MARK + 0x201C: [694,-443,558,138,520,'144 443L138 449V581L176 636Q182 644 188 653T198 667T205 677T211 685T215 689T220 692T224 693T230 694H247H258Q283 694 283 683Q283 678 265 635T246 590Q246 588 261 588H276Q279 584 283 581V449L276 443H144ZM381 443L375 449V581L413 636Q419 644 425 653T435 667T442 677T448 685T452 689T457 692T461 693T467 694H484H495Q520 694 520 683Q520 678 502 635T483 590Q483 588 498 588H513Q516 584 520 581V449L513 443H381'], + + // RIGHT DOUBLE QUOTATION MARK + 0x201D: [694,-442,558,37,420,'38 687Q42 693 45 693Q46 694 111 694H176Q179 690 183 687V556L144 501Q139 494 134 486T126 474T120 465T114 457T110 451T106 447T102 445T98 443T94 443T89 442H73H62Q37 442 37 453Q37 458 55 501T74 546Q74 548 59 548L44 549L38 555V687ZM275 687Q279 693 282 693Q283 694 348 694H413Q416 690 420 687V556L381 501Q376 494 371 486T363 474T357 465T351 457T347 451T343 447T339 445T335 443T331 443T326 442H310H299Q274 442 274 453Q274 458 292 501T311 546Q311 548 296 548L281 549L275 555V687'], + + // INCREMENT + 0x2206: [694,1,917,60,856,''] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Bold/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js new file mode 100644 index 0000000..2cfd7f0 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js @@ -0,0 +1,290 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Italic/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-italic'], + { + // SPACE + 0x20: [0,0,250,0,0,''], + + // EXCLAMATION MARK + 0x21: [694,0,319,110,355,'160 187L257 694H306Q355 694 355 693L238 186H199Q160 186 160 187ZM110 2Q111 3 120 49T131 96Q131 98 180 98T229 96L219 50Q209 3 208 2V0H110V2'], + + // QUOTATION MARK + 0x22: [694,-471,500,133,472,'171 647L180 694H229Q278 694 278 693L276 686Q275 680 273 668T268 644L258 597L182 471H157Q133 471 133 472L189 595Q189 596 174 596H160V598Q160 601 171 647ZM365 647L374 694H423Q472 694 472 693L470 686Q469 680 467 668T462 644L452 597L376 471H351Q327 471 327 472L383 595Q383 596 368 596H354V598Q354 601 365 647'], + + // NUMBER SIGN + 0x23: [694,194,833,87,851,'793 170Q809 162 809 149Q809 145 807 141T802 135T796 132L793 130H547L472 -27Q397 -184 394 -187Q389 -194 379 -194Q367 -194 362 -183Q359 -179 359 -173Q360 -168 431 -20L503 129Q503 130 410 130H317L242 -27Q167 -184 164 -187Q159 -194 149 -194Q137 -194 132 -183Q129 -179 129 -173Q130 -168 201 -19L273 130H187L100 131Q87 141 87 150Q87 162 102 170H294L331 248Q339 265 349 286T365 318L370 328Q370 330 258 330Q145 330 142 332Q129 338 129 351Q129 362 140 368Q146 370 267 370L391 371L467 527Q542 684 544 686Q544 688 549 691T560 694H562Q565 693 567 692T571 690T575 686T578 681T579 672Q577 665 507 520T436 373L435 370H528L621 371L692 518Q767 675 769 677Q775 694 789 694Q798 694 804 688T809 672Q806 664 737 519L665 371L751 370Q835 370 841 368Q851 362 851 350Q851 337 841 334T799 330H765H741H645L606 250L568 170H793ZM600 328Q600 330 508 330H415Q412 326 338 171Q338 170 431 170H524L561 248Q569 265 579 286T595 318L600 328'], + + // DOLLAR SIGN + 0x24: [750,56,500,56,565,'228 70Q233 92 246 155T270 266T280 316Q271 318 265 320T237 333T200 360T172 403T159 468Q159 537 205 600T325 691Q352 701 360 701Q361 701 361 701T362 703T364 711T368 727L372 750H409Q445 750 445 749L436 705Q436 703 450 702T494 691T554 657L565 649Q562 642 548 604L534 568Q511 591 484 605T440 621L424 623L419 624L372 405Q399 400 424 384Q490 338 490 247V240Q490 156 430 85Q374 13 294 -5L284 -7L280 -30Q279 -35 278 -41T275 -52L274 -55Q274 -56 237 -56Q201 -56 201 -54Q202 -53 205 -34T211 -11Q211 -9 206 -9Q154 -2 115 19Q80 35 56 59L88 141L99 131Q109 121 119 113T141 99T160 89T180 82T197 77T214 73T228 70ZM303 426Q304 427 313 471T332 564T345 620L335 616Q287 596 263 549Q252 525 252 499Q252 470 267 451T298 426Q303 424 303 426ZM302 75Q305 75 315 80T340 98T367 125T390 164T399 214Q399 247 384 268T349 297Q338 247 326 186L302 75'], + + // PERCENT SIGN + 0x25: [750,56,833,165,815,'268 347Q224 347 195 386T165 488Q165 517 173 552Q191 637 246 693T349 749Q389 749 414 725T448 673T456 614Q456 506 396 427T268 347ZM372 604Q372 674 339 674Q311 674 290 633T261 549T253 482V474Q253 438 272 426Q277 424 286 424Q319 424 345 485T372 604ZM189 -56Q179 -56 173 -49T167 -37Q167 -30 347 198Q425 296 475 360Q780 745 785 747Q790 750 796 750Q814 748 814 730Q814 725 811 719L204 -49Q198 -56 189 -56ZM523 87Q523 184 583 265T713 347Q758 347 786 308T815 207Q815 110 757 28T629 -55Q576 -55 550 -12T523 87ZM729 200Q729 271 696 271Q675 271 658 247T631 189T616 125T611 76Q611 21 644 21H647Q672 21 700 77T729 200'], + + // AMPERSAND + 0x26: [716,22,758,71,747,'219 -22Q158 -22 117 13T71 111Q71 131 74 150T84 185T98 215T118 241T137 262T159 281T179 295T199 308L214 318L258 348L256 362Q254 373 254 413V435Q254 483 271 537T325 641T411 708Q427 715 441 715Q446 716 455 716Q504 716 534 681T565 590Q565 522 519 468T377 347L358 334Q359 333 363 320T374 290T387 262Q404 227 428 187T460 139Q521 183 574 251T651 362T674 409L710 398Q746 388 747 388Q747 381 720 333T635 213T517 94L510 87Q542 57 598 57Q649 57 708 72Q716 75 718 75L709 34L701 -7Q636 -22 578 -22Q531 -22 498 -8T428 34L408 25Q314 -22 219 -22ZM480 579Q480 640 436 640Q410 640 385 615T351 554Q340 513 340 457Q340 413 343 410Q343 406 360 419Q431 471 455 505T480 579ZM245 57Q279 59 311 67T359 81T375 89T358 113T318 178T281 260L274 277L245 257Q167 205 167 135Q167 110 174 93T194 69T217 60T237 57H245'], + + // APOSTROPHE + 0x27: [694,-471,278,190,335,'228 647L237 694H286Q335 694 335 693L334 686Q332 680 330 668T325 644L315 597L239 471H214Q190 471 190 472L246 595Q246 596 231 596H217V598Q217 601 228 647'], + + // LEFT PARENTHESIS + 0x28: [750,250,389,104,491,'195 37Q195 -7 200 -47T213 -113T231 -166T250 -204T268 -232T280 -250H204L194 -238Q104 -124 104 55Q104 238 181 432T405 740L417 750H454Q491 750 491 749L468 729Q446 709 411 667T337 565T262 405T208 188Q195 110 195 37'], + + // RIGHT PARENTHESIS + 0x29: [750,250,389,2,390,'300 463Q300 634 222 740L214 750H290L299 740Q300 738 309 726T323 707T337 682T353 651T367 613T379 566T387 510T390 444Q390 314 344 156T203 -125Q179 -155 145 -191Q111 -224 89 -241L78 -250H2Q4 -248 27 -227T65 -189T107 -140T155 -71T200 16T244 129T278 266Q300 372 300 463'], + + // ASTERISK + 0x2A: [750,-306,500,156,568,'193 608Q193 628 210 644T246 660Q250 660 252 660T257 658T264 654T272 648T284 638T302 623Q340 590 340 593Q341 594 345 623T354 682T360 715Q365 729 378 739T407 750Q424 750 433 740T443 720Q443 712 427 652L410 591L462 623Q505 650 514 655T534 660Q549 660 558 650T568 625Q568 617 567 611T560 599T551 590T536 580T519 571T496 561T470 548L429 528L474 500Q482 495 492 489T506 481T516 475T523 469T527 464T529 458T530 450Q530 430 514 414T479 397H475Q468 397 460 402T423 433Q414 440 404 448T388 461L383 465L365 344Q348 306 314 306Q302 306 292 313T281 338Q281 347 297 404L313 464L260 433Q201 397 195 397H189Q173 397 165 407T156 432Q156 438 157 443T161 452T166 460T175 468T185 475T198 482T212 489T230 497T250 506L295 528L250 556Q203 582 202 585Q193 591 193 608'], + + // PLUS SIGN + 0x2B: [583,83,778,108,775,'108 244T108 250T112 261T119 268T124 270H426V272Q428 274 457 419Q489 565 492 573Q497 583 508 583Q516 583 522 577T528 565Q528 553 498 417Q491 384 483 346T471 288L467 270H760Q775 262 775 250T760 230H458Q456 221 426 77T394 -71Q389 -83 375 -83Q367 -83 362 -78T356 -64Q356 -58 387 84Q394 118 401 155T413 210L417 229Q417 230 271 230H124Q123 230 120 232T112 239'], + + // COMMA + 0x2C: [98,125,278,63,209,'90 2Q91 3 100 49T111 96Q111 98 160 98T209 96L199 50Q189 3 188 2Q188 0 149 -63L112 -125H63L120 0H105Q90 0 90 2'], + + // HYPHEN-MINUS + 0x2D: [259,-186,333,51,332,'66 257V259H332V257L324 220L317 186H184Q51 186 51 187T58 220T66 257'], + + // FULL STOP + 0x2E: [98,0,278,90,209,'90 2Q91 3 100 49T111 96Q111 98 160 98T209 96L199 50Q189 3 188 2V0H90V2'], + + // SOLIDUS + 0x2F: [750,250,500,6,600,'564 744L568 747Q573 750 579 750Q588 750 594 744T599 729Q597 721 321 241T41 -243Q37 -250 27 -250Q6 -250 6 -230Q6 -228 8 -222Q9 -219 285 261T564 744'], + + // DIGIT ZERO + 0x30: [678,22,500,87,549,'245 -22Q209 -22 181 -11T135 20T107 65T92 116T88 171Q88 235 114 354T194 557Q226 606 269 635T340 671T392 678H395Q422 678 446 670T495 643T534 582T549 481Q549 430 534 350T499 213Q459 89 379 25Q315 -22 247 -22H245ZM430 582Q408 601 378 601Q313 601 269 534Q234 475 205 341Q181 232 181 174Q181 104 209 76Q231 54 260 54T318 73T368 125Q410 194 447 375Q460 445 460 487Q460 555 430 582'], + + // DIGIT ONE + 0x31: [678,0,500,88,451,'234 613Q277 613 331 628T428 678H439Q451 678 451 676Q450 671 387 373T323 74T384 73H445L430 0H259L88 1L104 73H229L332 560Q278 541 198 539Q198 540 198 541T199 546T200 554T202 564T205 576L213 612H219Q221 612 226 612T234 613'], + + // DIGIT TWO + 0x32: [678,0,500,50,551,'190 460Q189 460 181 475T164 507T155 527Q155 535 182 571Q259 678 380 678Q462 678 506 630T551 513V507Q551 418 487 349Q469 329 441 305T391 265T344 232T316 212Q158 87 158 86T188 85Q194 85 234 85T311 86Q467 86 467 85Q451 9 449 2V0H50Q54 18 58 40L67 79L133 133Q246 226 269 243Q369 318 410 373T452 492Q452 535 433 560T393 592T350 599Q311 599 279 578T231 532T203 484T190 460'], + + // DIGIT THREE + 0x33: [678,23,500,56,544,'446 542Q446 576 424 590T372 605Q330 605 288 583T216 524Q209 515 208 516Q207 517 192 549L178 580L187 589Q224 627 276 652T386 678Q456 678 500 642T544 550Q544 515 530 482T495 427T453 387T418 362L403 353L413 348Q440 335 462 313Q500 271 500 217Q500 135 423 57T236 -22T63 59L56 68L85 141Q106 112 125 98Q177 54 254 54Q315 54 355 105T396 218Q396 242 393 254Q380 301 335 313Q327 315 280 316Q233 316 233 318L249 392Q298 392 322 399Q373 408 409 453T446 542'], + + // DIGIT FOUR + 0x34: [656,0,500,62,521,'78 235L411 656H465Q519 656 519 655T475 447T430 237V235H521V233L505 160Q505 159 459 159H414L380 0H286L320 159H62L63 164Q64 169 66 179T70 198L78 235ZM342 235L421 607Q420 607 419 604Q409 535 197 267Q173 236 173 235H342'], + + // DIGIT FIVE + 0x35: [656,22,500,49,555,'330 350Q263 350 214 272H133V275Q134 276 174 467L214 655Q214 656 385 656H555V653Q555 652 554 647T550 631T546 613L539 577H284L265 486Q261 464 256 441T248 406L246 395L250 398Q255 401 264 406T286 415T315 423T350 427Q412 427 455 381T498 256Q498 150 415 64T222 -22Q186 -22 155 -12T105 12T74 41T55 65T50 77L51 79Q61 89 78 112L104 145L107 138Q110 130 114 123T125 106T142 88T165 72T196 60T236 55Q282 55 316 79T366 140T389 208T396 267Q396 310 378 330T337 350H330'], + + // DIGIT SIX + 0x36: [678,22,500,94,548,'437 605Q397 605 361 585T301 536T261 477T236 426T228 401L236 408Q244 414 260 424T296 445T345 462T402 469H404Q422 469 434 467T465 446T498 394Q515 351 515 307Q515 254 497 193T439 85Q352 -22 246 -22Q220 -22 196 -14T148 15T109 78T94 179Q94 272 123 373Q163 505 257 591T450 678Q474 678 498 674T535 664T548 656L540 621L532 586L520 590Q509 594 485 599T437 605ZM339 392Q281 392 233 334T185 163V158Q185 87 230 61Q244 54 262 54Q325 54 371 122Q395 158 407 217T419 298Q419 337 401 364T339 392'], + + // DIGIT SEVEN + 0x37: [656,11,500,143,596,'173 614L181 656H389Q596 656 596 655L595 650Q594 645 592 635T588 616L580 578L554 551Q313 307 245 4L242 -11H192Q143 -11 143 -10Q144 0 148 17T169 89T212 198T285 327T393 470Q423 504 472 550Q479 555 485 561T496 571L329 570Q163 570 163 571L164 577Q166 583 168 593T173 614'], + + // DIGIT EIGHT + 0x38: [678,22,500,77,554,'159 470Q159 547 229 612T394 678Q467 678 510 636T554 533Q554 512 549 493T535 458T515 429T492 405T467 386T443 372T423 362T409 356L404 354Q404 353 405 353Q411 353 432 341T476 295T500 218Q500 134 424 56T246 -22Q175 -22 126 22T77 143Q77 204 110 251T188 327L202 334Q216 340 229 346T243 353T235 358T214 372T189 393T168 426T159 470ZM467 527Q467 605 375 605Q317 605 281 566T244 472Q244 429 271 411T334 392Q392 392 429 430T467 527ZM405 228Q405 262 384 289T315 316Q257 316 216 266T174 144Q174 95 199 75T262 54Q329 54 367 109T405 228'], + + // DIGIT NINE + 0x39: [677,22,500,77,545,'220 594Q303 677 389 677Q545 677 545 479Q545 413 526 327Q493 175 398 77T202 -22Q124 -22 77 25L130 91L137 83Q169 54 218 54Q255 54 290 76T347 129Q364 151 380 182T403 232T411 256Q410 255 390 241T353 217T303 197T236 187Q195 187 173 209Q155 226 140 263T124 352Q124 392 135 435Q154 527 220 594ZM455 497Q455 605 383 605Q340 605 305 577T246 492Q220 411 220 360Q220 278 279 264Q280 264 287 264T299 263Q347 263 387 302Q455 375 455 497'], + + // COLON + 0x3A: [444,0,278,90,282,'174 396L184 444H233Q282 444 282 443Q277 421 272 394L262 346H213Q164 346 164 347Q169 369 174 396ZM90 2Q91 3 100 49T111 96Q111 98 160 98T209 96L199 50Q189 3 188 2V0H90V2'], + + // SEMICOLON + 0x3B: [444,125,278,63,282,'174 396L184 444H233Q282 444 282 443Q277 421 272 394L262 346H213Q164 346 164 347Q169 369 174 396ZM90 2Q91 3 100 49T111 96Q111 98 160 98T209 96L199 50Q189 3 188 2Q188 0 149 -63L112 -125H63L120 0H105Q90 0 90 2'], + + // EQUALS SIGN + 0x3D: [370,-130,778,88,796,'142 368Q145 370 463 370Q780 370 784 368Q796 364 796 350T784 332Q780 330 463 330Q145 330 142 332Q129 338 129 351Q129 362 142 368ZM88 137T88 150T102 170H738Q739 170 742 168T750 161T754 150T750 139T743 132T738 130H102Q88 137 88 150'], + + // QUESTION MARK + 0x3F: [704,0,472,173,536,'194 652Q194 654 218 666T284 691T362 704Q444 704 490 678T536 583Q536 541 516 500T459 433Q415 400 387 371T343 313T321 266T307 216L301 186H262Q223 186 223 187Q224 199 228 218T250 288T294 377Q317 413 344 440T391 481T414 499Q442 527 442 574Q442 584 441 590T433 607T409 623T362 629Q335 629 310 624T267 610T235 595T214 582T205 576L200 614Q194 651 194 652ZM173 2Q174 3 183 49T194 96Q194 98 243 98T292 96L282 50Q272 3 271 2V0H173V2'], + + // COMMERCIAL AT + 0x40: [705,10,667,120,707,'120 267Q120 377 179 478T336 642T538 705Q610 705 658 662T707 513Q707 425 681 331Q658 241 590 179T447 117Q386 117 343 163T300 288Q300 397 374 486T544 576Q575 576 608 562Q590 628 517 628Q406 628 309 522T212 278Q212 179 267 122T404 65T550 91H631Q513 -10 390 -10Q265 -10 193 70T120 267ZM600 397Q600 441 581 471T530 501Q476 501 433 436T390 298Q390 254 409 224T462 193Q512 193 556 257T600 397'], + + // LATIN CAPITAL LETTER A + 0x41: [694,0,667,28,638,'28 0L429 694H533L585 350Q596 275 610 182T632 46L638 3V0H530L528 18Q527 25 515 103T503 183H223L135 29L118 1L73 0H28ZM492 254Q492 256 473 398T454 589V610Q433 552 290 301L264 255L378 254H492'], + + // LATIN CAPITAL LETTER B + 0x42: [694,0,667,90,696,'501 363Q557 355 605 316T653 222Q653 148 586 85T403 2Q394 1 240 0Q90 0 90 1L100 46Q109 90 128 177T164 348L238 694H375Q518 693 546 688Q614 674 655 635T696 544Q696 490 648 441T516 368L501 363ZM601 530Q601 568 566 590T479 621Q472 622 394 623H320L297 513Q292 489 286 459T276 415L273 401V399H339H372Q504 399 571 466Q601 498 601 530ZM257 322Q256 320 230 197T203 73Q203 71 289 71Q379 72 387 73Q459 84 507 122T556 210Q556 255 519 283T428 320Q415 322 336 323Q257 323 257 322'], + + // LATIN CAPITAL LETTER C + 0x43: [705,10,639,124,719,'124 266Q124 372 179 473T333 639T544 705Q592 705 635 697T698 679L718 670Q719 669 701 621T681 572L676 576Q670 580 661 586T641 598T614 611T583 620Q558 625 526 625Q406 625 318 516T230 276Q230 238 236 212Q251 148 294 108T412 68Q469 68 508 80T598 123Q608 129 608 128Q606 109 603 87L598 45L573 33Q521 7 486 -1T394 -10Q358 -10 346 -8Q260 5 202 62Q124 145 124 266'], + + // LATIN CAPITAL LETTER D + 0x44: [694,0,722,88,747,'162 348L236 694H385Q535 693 543 692Q600 682 641 654T705 586T737 506T747 425Q747 296 672 187Q625 114 548 62T384 1Q376 0 262 0Q88 0 88 1L98 46Q107 90 126 177T162 348ZM622 533Q575 624 443 624Q434 624 419 624T399 623H321L263 348Q249 283 234 213T212 107L204 72Q204 71 289 71Q374 72 386 74Q501 94 573 193T646 422Q646 487 622 533'], + + // LATIN CAPITAL LETTER E + 0x45: [691,0,597,86,688,'86 2Q88 4 160 346T233 689Q233 691 461 691Q688 691 688 689Q685 686 671 611H495L320 612L319 609Q319 607 297 501L274 397H436Q597 397 597 396L596 391Q595 386 593 376T589 358L581 322L420 321Q258 321 258 320Q209 89 208 87Q208 85 390 85Q417 85 460 85T518 86L572 85Q556 8 554 2V0H86V2'], + + // LATIN CAPITAL LETTER F + 0x46: [691,0,569,86,673,'86 2Q88 4 160 346T233 689Q233 691 453 691T673 689Q670 686 656 611H488L320 612Q314 579 302 523T281 427T272 385Q272 384 419 384H567L551 308H255L223 156Q216 124 207 82T194 20L190 2Q190 0 138 0H86V2'], + + // LATIN CAPITAL LETTER G + 0x47: [705,11,667,125,730,'125 267Q125 375 182 476T337 641T544 705Q598 705 644 693T710 669T730 655L712 609L693 560L692 557L681 567Q618 626 526 626Q447 626 378 573T269 440T229 277Q229 185 276 127T406 68Q422 68 451 71T502 78T524 84L526 93Q528 102 532 119T539 153L553 222Q553 223 495 223Q436 223 436 224Q436 230 444 262L452 299H662V296Q661 290 635 166T607 40Q606 37 576 25T492 1T391 -11Q272 -11 199 66T125 267'], + + // LATIN CAPITAL LETTER H + 0x48: [694,0,708,86,768,'517 2Q518 3 551 161T585 322Q586 323 557 323T422 323H259L190 0H138Q86 0 86 1L96 46Q105 90 124 177T160 348L234 694H337V691Q336 690 306 545T275 399H602L603 403Q603 407 634 551L665 694H768V691Q768 690 695 348T621 2V0H517V2'], + + // LATIN CAPITAL LETTER I + 0x49: [694,0,278,87,338,'161 348L235 694H338V691Q338 690 265 348T191 2V0H139Q87 0 87 1L96 46Q106 90 125 177T161 348'], + + // LATIN CAPITAL LETTER J + 0x4A: [694,22,472,46,535,'377 424L435 694H535V691Q534 685 476 412T416 135Q401 74 350 26T210 -22Q165 -22 124 -11T65 9T46 21L54 41Q62 61 70 83T81 109Q82 111 85 106Q86 105 87 103Q93 94 103 84T135 64T185 53Q238 53 272 76T317 142Q317 145 325 182T348 289T377 424'], + + // LATIN CAPITAL LETTER K + 0x4B: [694,0,694,88,784,'236 223Q235 222 213 113T188 2V0H138Q88 0 88 1L98 46Q107 90 126 177T162 348L236 694H285Q335 694 335 693L330 671Q326 649 316 603T298 518Q289 477 280 433T266 366L261 343L672 694H729L784 693L465 420L651 0H596L541 1L384 350Q383 351 310 288T236 223'], + + // LATIN CAPITAL LETTER L + 0x4C: [694,0,542,87,516,'161 348L235 694H338V691Q338 690 273 385T208 79Q278 80 362 80H516Q502 11 499 2V0H293Q87 0 87 1L96 46Q106 90 125 177T161 348'], + + // LATIN CAPITAL LETTER M + 0x4D: [694,0,875,92,929,'375 691Q456 215 459 124V106Q488 177 762 641L793 694H929V691Q929 690 856 348T782 2V0H689V2Q691 4 753 304Q817 604 818 606Q819 611 817 608Q817 607 815 603Q798 559 540 117L484 22H440L397 23L393 42Q393 47 373 169T334 422T315 594V609L250 306Q186 3 185 2Q185 0 138 0Q92 0 92 1L102 46Q111 90 130 177T166 348L240 694H375V691'], + + // LATIN CAPITAL LETTER N + 0x4E: [694,0,708,88,766,'311 609Q310 608 246 306T181 2V0H134Q88 0 88 1L98 46Q107 90 126 177T162 348L236 694H382L383 691Q383 688 418 561T493 286T541 97L544 84L545 89Q545 90 553 128T578 246T610 394L674 694H766V691Q766 690 693 348T619 2V0H472L469 13Q468 17 393 293T312 605L311 609'], + + // LATIN CAPITAL LETTER O + 0x4F: [716,23,736,118,763,'118 254Q118 366 174 473T324 648T517 716Q627 716 695 638T763 435Q763 321 706 215T555 43T362 -22Q256 -22 187 56T118 254ZM380 58Q452 58 518 116T622 263T661 442Q661 496 646 535T608 594T567 622T534 634Q516 636 496 636Q400 636 313 528T225 264Q225 172 267 115T380 58'], + + // LATIN CAPITAL LETTER P + 0x50: [694,0,639,88,690,'162 348L236 694H378Q522 693 530 692Q604 680 647 635T690 524Q690 474 665 430T612 359Q550 299 465 280Q443 275 343 274H250V271Q250 269 235 201T206 68T192 2V0H140Q88 0 88 1L98 46Q107 90 126 177T162 348ZM594 513Q594 560 562 588T477 622Q470 623 394 623H321L293 487L263 349V347H342H347H375Q530 347 578 449Q594 483 594 513'], + + // LATIN CAPITAL LETTER Q + 0x51: [716,125,736,118,763,'118 254Q118 366 174 473T324 648T517 716Q627 716 695 638T763 435Q763 305 693 194T543 36Q547 29 586 -47T625 -125H504L450 -8Q406 -22 363 -22Q256 -22 187 56T118 254ZM661 437Q661 532 616 584T506 636Q428 636 361 578T257 433T220 258Q220 167 264 113T380 58Q390 58 397 58T408 59T413 60T417 61Q417 63 387 127T356 193Q356 194 409 194H462L485 150L508 105Q509 103 532 125T567 161Q661 278 661 437'], + + // LATIN CAPITAL LETTER R + 0x52: [694,0,646,88,698,'162 348L236 694H375H414H445Q507 694 538 690T606 668Q698 623 698 534V528Q698 447 608 377Q582 358 555 345T512 326L497 321L617 0H565L513 1L402 309H255L189 0H138Q88 0 88 1L98 46Q107 90 126 177T162 348ZM603 525Q603 603 499 620Q486 622 403 623H321L297 506Q292 482 285 449T274 402L271 387V385H346Q350 385 363 385T386 384Q548 384 592 479Q603 503 603 525'], + + // LATIN CAPITAL LETTER S + 0x53: [716,22,556,54,609,'161 478Q161 568 242 642T435 716Q527 716 599 673L609 667Q595 633 589 615L571 568Q570 568 564 575T546 592T518 611T475 628T417 635Q351 635 305 596T259 507Q259 465 290 444T372 411T432 396Q473 385 509 343T545 236Q545 140 464 59T270 -22Q155 -22 54 48L92 146Q93 146 101 138T124 117T161 92T216 72T288 63Q360 63 403 109T447 204Q447 220 444 233T435 256T421 273T404 285T385 295T366 301T347 306T331 310T315 314T292 321T265 331T235 346T207 367T183 395T168 431T161 478'], + + // LATIN CAPITAL LETTER T + 0x54: [688,0,681,165,790,'165 608L182 687Q182 688 486 688H790L789 685L781 645L773 609H521L457 306Q393 3 392 2Q392 0 340 0H288V2Q289 5 353 304T417 605V609L291 608H165'], + + // LATIN CAPITAL LETTER U + 0x55: [694,22,688,131,747,'340 -22Q251 -22 191 33T131 177V187Q131 192 131 195T132 205T133 215T136 231T141 253T147 285T156 328T168 384T184 457L235 694H338V691Q338 690 288 451T236 210Q234 194 234 177Q234 138 247 111T280 72T319 54T357 49Q408 49 449 74T510 128Q516 136 521 143T530 158T538 175T545 194T553 220T560 250T569 289T579 336T591 395T606 464L655 694H747V691Q651 243 645 213Q623 149 587 102Q482 -22 340 -22'], + + // LATIN CAPITAL LETTER V + 0x56: [694,0,667,161,799,'220 348L161 694H216Q270 694 270 693L283 613Q334 313 346 215Q359 102 359 96Q359 87 358 84Q388 162 684 657L706 694H753Q799 694 799 693L387 0H333Q279 0 279 1L272 45Q264 89 249 177T220 348'], + + // LATIN CAPITAL LETTER W + 0x57: [694,0,944,161,1076,'596 540Q596 562 597 585T599 609Q599 588 436 255Q402 185 362 104L310 0H213V3Q213 6 188 347T161 694H263L265 664Q290 327 293 184Q293 112 289 85Q290 85 290 87Q290 95 301 123T332 194T373 282T419 380T463 469T498 541T517 579L574 694H671V689L674 646Q678 603 682 538T691 401T699 263T703 160Q703 102 700 87Q719 154 930 576L989 694H1076Q1076 693 903 347L730 0H628V4L626 26Q624 48 622 85T616 168T609 267T603 369T598 464T596 540'], + + // LATIN CAPITAL LETTER X + 0x58: [694,0,667,14,758,'14 0Q17 3 184 184T352 367L265 529Q244 567 222 609T188 672L176 692Q176 694 236 694H297L338 612Q387 515 400 489L421 448L645 694H758L708 640Q481 393 456 368Q455 366 500 281T596 104T652 0H531L388 293L128 0H14'], + + // LATIN CAPITAL LETTER Y + 0x59: [694,0,667,151,809,'151 692Q151 694 212 694H272L418 362L696 683L705 694H758L809 693Q809 692 630 490T444 280Q442 275 413 139L383 1L333 0Q282 0 282 2Q283 3 312 141L341 278L246 484L151 692'], + + // LATIN CAPITAL LETTER Z + 0x5A: [694,0,611,55,702,'67 54Q551 615 551 617Q543 618 517 618Q510 618 463 618T376 617Q200 617 200 618T209 657L216 694H459Q702 694 702 692Q702 689 697 667L692 643L207 80H392Q493 81 577 81Q577 70 560 2V0H55V2L67 54'], + + // LEFT SQUARE BRACKET + 0x5B: [750,250,289,41,425,'148 252L253 750H339Q425 750 425 749L424 744Q423 739 421 729T417 711L409 675L367 674H325L235 252Q145 -167 145 -172Q145 -174 187 -174H229V-176Q213 -240 213 -250H127Q41 -250 41 -248Q41 -245 148 252'], + + // RIGHT SQUARE BRACKET + 0x5D: [750,250,289,-31,353,'353 749Q353 746 303 512T200 27T141 -250H-31Q-31 -240 -15 -176V-174H70L250 674H208L165 675L181 750H267Q353 750 353 749'], + + // CIRCUMFLEX ACCENT + 0x5E: [694,-527,500,190,533,'190 527L360 694H434L484 611Q533 528 533 527H457L390 632L385 639L266 527H190'], + + // LOW LINE + 0x5F: [-38,114,500,50,565,'59 -75L66 -38H316Q565 -38 565 -39T558 -75T549 -112Q549 -114 299 -114Q50 -114 50 -113L52 -108Q53 -103 55 -93T59 -75'], + + // LATIN SMALL LETTER A + 0x61: [461,10,481,61,473,'313 386Q286 386 260 381T217 369T186 355T164 342T155 337Q154 338 159 377T165 418Q251 461 320 461Q322 461 328 461T337 460Q397 460 435 424T473 329Q473 325 473 318T472 308Q432 110 407 2V0H317V2L325 38Q295 21 269 10Q215 -10 156 -10H149Q76 -10 62 69Q61 75 61 90Q61 127 73 150T116 194Q146 215 207 231T348 252H368L373 277Q378 302 378 318Q378 367 339 384Q332 386 313 386ZM150 116Q150 93 171 79T223 65Q259 65 293 85T341 135Q343 140 348 160T353 184Q353 186 342 186Q298 186 231 174T153 134Q150 127 150 116'], + + // LATIN SMALL LETTER B + 0x62: [694,11,517,75,539,'302 -11Q266 -11 235 1T190 26L176 38Q170 8 168 2V0H121Q75 0 75 1L84 46Q94 90 113 177T149 348L223 694H267Q312 694 312 693T282 551T251 407Q251 406 256 408T271 415Q347 454 430 454H438Q501 454 528 374Q539 339 539 299Q539 179 466 84T302 -11ZM443 275Q443 317 421 348T346 379Q318 379 296 369Q269 359 238 332L193 118L198 109Q220 65 269 65Q350 65 396 130T443 275'], + + // LATIN SMALL LETTER C + 0x63: [460,11,444,74,499,'75 164Q75 226 100 282T165 377T252 437T342 460H347Q447 460 499 417L483 378Q468 339 468 338Q466 338 455 347T424 366T385 378Q355 382 334 382Q262 382 215 318T168 177Q168 120 196 95T259 69H269Q345 69 420 108Q432 114 432 113T427 72L422 32L402 22Q382 12 344 2T259 -11Q214 -11 180 2T126 36T95 81T79 126T75 164'], + + // LATIN SMALL LETTER D + 0x64: [694,10,517,73,588,'73 156Q73 224 102 293T184 408T294 455Q375 455 432 413Q438 407 438 410T469 553L499 694H588V691Q588 690 515 348T441 2V0H348V2Q357 29 357 43L352 41Q332 24 288 7T196 -10H190Q178 -10 166 -7T134 8T98 46T75 113Q73 129 73 156ZM419 335Q419 339 412 348T386 368T342 379Q284 379 243 343T184 261T167 168Q167 122 191 94T263 66Q321 66 367 116L374 124L397 229Q419 333 419 335'], + + // LATIN SMALL LETTER E + 0x65: [460,11,444,71,472,'248 -11Q170 -11 121 41T71 173Q71 265 133 349T285 454Q305 460 318 460H328Q368 460 399 448Q472 414 472 309Q472 274 464 234L462 219H159Q156 198 156 185Q156 137 179 107T237 68Q246 66 268 66Q345 66 427 113V109Q426 108 422 73T417 37Q417 34 409 29Q329 -11 248 -11ZM401 299Q399 337 376 361T316 385Q291 385 266 371Q220 350 184 289H401V299'], + + // LATIN SMALL LETTER F + 0x66: [705,0,306,94,494,'381 443Q381 440 374 407T366 371H315Q263 371 263 369Q262 368 224 186Q215 145 205 97T189 25L184 2V0H94V2L99 25Q104 48 114 96T134 186Q172 368 173 369Q173 371 139 371H106V373L114 410L121 444H155L188 445L191 455L212 551Q232 612 288 658T415 705Q438 705 464 701T494 694Q478 614 477 614L467 618Q457 621 440 624T406 629H400Q333 629 306 579Q301 568 289 507L275 444H328Q381 444 381 443'], + + // LATIN SMALL LETTER G + 0x67: [455,206,500,12,568,'113 252Q113 334 177 394T311 454Q332 454 350 451T379 442T398 432T410 424L413 421Q412 423 411 424L409 426Q409 429 434 436T496 449T560 455H568V451Q568 447 567 429T566 394L565 377L553 379Q522 385 479 385Q463 385 456 384L443 383L436 392Q454 357 454 324Q454 243 390 182T249 120Q233 120 219 122T195 128T178 136T167 142L163 145Q149 131 149 105Q149 78 171 72L242 71Q246 71 269 71T303 71T336 68T372 62T403 51T432 32Q461 8 461 -40Q461 -112 383 -159T211 -206Q123 -206 68 -172T12 -86Q12 -55 31 -23T82 32Q90 38 89 39Q89 40 87 44T82 59T80 82Q80 134 126 189Q113 228 113 252ZM369 319Q369 354 350 368T304 383Q274 383 252 369T218 333T202 291T197 255Q197 221 217 206T263 191Q317 191 343 233T369 319ZM373 -59Q373 -41 362 -30T330 -13T291 -7T247 -5H216Q167 -5 158 -6T139 -12Q123 -20 110 -38T97 -76Q97 -102 133 -118T221 -134Q242 -134 267 -130T316 -118T357 -94T373 -59'], + + // LATIN SMALL LETTER H + 0x68: [694,0,517,73,513,'416 321Q416 379 336 379Q276 379 237 302Q226 276 209 202T180 66T166 2V0H119Q73 0 73 1L82 46Q92 90 111 177T147 348L221 694H265Q310 694 310 693T279 544L247 395Q325 455 403 455Q513 455 513 358Q513 334 508 309Q507 304 476 156T443 2V0H350V2L357 34Q364 65 373 110T392 200T409 281T416 321'], + + // LATIN SMALL LETTER I + 0x69: [680,0,239,74,315,'189 578Q190 579 199 627T211 678V680H315V678Q313 675 304 627T293 578V576H189V578ZM168 442T168 443T213 444T258 443T212 225T164 2V0H74V2Q75 7 121 224'], + + // LATIN SMALL LETTER J + 0x6A: [680,204,267,-96,336,'211 577L233 680H284Q336 680 336 679L315 576H263Q211 576 211 577ZM19 -204Q-12 -204 -40 -196T-82 -179T-96 -170Q-96 -168 -78 -132L-61 -95L-54 -103Q-32 -126 3 -126Q26 -126 50 -116Q76 -101 83 -85Q84 -79 140 180T196 443Q196 444 241 444T286 443Q286 441 232 186T175 -75Q163 -120 122 -162T19 -204'], + + // LATIN SMALL LETTER K + 0x6B: [694,0,489,76,542,'150 348L224 694H310V691Q218 259 218 258L232 270Q245 281 274 306T327 351L435 444H489L542 443Q542 442 443 357L344 272L471 1L422 0H372L366 14Q359 27 347 54T323 105L273 210Q271 210 231 174L190 139L160 0H118Q76 0 76 1L86 46Q95 90 114 177T150 348'], + + // LATIN SMALL LETTER L + 0x6C: [694,0,239,74,311,'148 348L222 694H311V691Q311 690 238 348T164 2V0H119Q74 0 74 1L84 46Q93 90 112 177T148 348'], + + // LATIN SMALL LETTER M + 0x6D: [455,0,794,73,790,'416 321Q416 379 336 379Q276 379 237 302Q226 276 209 202T180 66T166 2V0H119Q73 0 73 2L121 226L169 449Q169 450 213 450H256L249 421Q248 417 247 412T246 404T245 398T244 394T244 392Q250 398 261 407T307 433T379 454H392H400Q451 454 472 439Q482 434 489 427T500 412T506 399T510 388L511 384Q511 384 517 388Q563 431 620 446Q648 455 680 455Q790 455 790 358Q790 334 785 309Q784 304 753 156T720 2V0H627V2L634 34Q641 65 650 110T669 200T686 281T693 321Q693 379 613 379Q553 379 514 302Q503 276 486 202T457 66T443 2V0H350V2L357 34Q364 65 373 110T392 200T409 281T416 321'], + + // LATIN SMALL LETTER N + 0x6E: [454,0,517,73,514,'416 321Q416 379 336 379Q276 379 237 302Q226 276 209 202T180 66T166 2V0H119Q73 0 73 2L121 226L169 449Q169 450 213 450H256L249 421Q248 417 247 412T246 404T245 398T244 394T244 392Q250 398 261 407T307 433T379 454H392Q416 454 433 452T470 440T502 411T513 358Q513 334 508 309Q507 304 476 156T443 2V0H350V2L357 34Q364 65 373 110T392 200T409 281T416 321'], + + // LATIN SMALL LETTER O + 0x6F: [461,11,500,69,523,'69 169Q69 238 107 306T211 417T348 461Q419 461 471 412T523 271Q523 161 438 75T247 -11Q170 -11 120 39T69 169ZM432 279Q432 338 401 361T333 385Q280 385 240 352T182 273T164 178Q164 119 195 94T265 68Q306 68 344 94Q380 115 406 169T432 279'], + + // LATIN SMALL LETTER P + 0x70: [455,194,517,34,538,'259 443Q251 405 251 404L260 409Q269 414 286 421T324 436T375 449T434 455Q482 455 510 417T538 303Q538 169 463 79T302 -11Q226 -11 176 39V36Q175 35 151 -80L127 -193Q127 -194 80 -194H34V-191L102 127L169 443Q169 444 214 444T259 443ZM269 65Q332 65 386 124T441 262Q441 304 422 334T370 373Q356 375 339 375Q293 375 238 331L193 118Q200 103 206 94T229 75T269 65'], + + // LATIN SMALL LETTER Q + 0x71: [455,194,517,72,538,'72 149Q72 272 146 363T304 455Q340 455 371 442T409 423T436 398Q438 411 442 427L448 455H538L400 -193Q400 -194 354 -194Q307 -194 307 -193L356 37V41Q355 41 350 38T332 27T302 13Q247 -10 191 -10H179Q138 -10 105 32T72 149ZM414 298Q402 376 341 376Q277 376 223 317T169 182Q169 121 198 93T265 65Q319 65 365 111L377 123L414 298'], + + // LATIN SMALL LETTER R + 0x72: [455,0,342,74,424,'240 377L244 380Q248 384 255 390T272 404T296 419T325 434T361 446T401 454Q403 454 408 454T416 455H424L421 442Q419 435 413 405T406 373Q351 373 294 336T216 237Q213 231 201 173T178 60T164 2V0H119Q74 0 74 2L122 226L170 449Q170 450 213 450H255L247 414Q246 409 245 403T243 393T241 385T240 379T240 377'], + + // LATIN SMALL LETTER S + 0x73: [461,11,383,35,436,'99 299Q99 318 106 341T133 393T195 441T298 461Q336 461 370 453T420 437L436 429Q436 428 421 389T405 350Q356 386 273 386H265Q248 386 237 384T211 371T191 337Q189 329 189 326Q189 320 190 315T194 306T200 299T209 293T218 289T228 285T239 283T251 281T263 278L270 276Q278 275 283 274T298 270T316 264T333 255T351 243T367 228T380 209T388 186T391 157Q391 96 341 43T193 -11Q171 -11 150 -8T114 -1T84 9T61 19T45 28T35 33Q35 36 67 116L76 109Q132 67 211 67Q258 67 279 88T301 135Q301 159 280 170T224 187T180 197Q141 212 120 239T99 299'], + + // LATIN SMALL LETTER T + 0x74: [571,11,361,97,410,'245 68Q267 68 289 75T322 90L334 98Q338 94 338 28V24L324 19Q268 -4 218 -8Q198 -11 177 -11Q118 -11 118 75Q118 98 123 127Q125 137 149 251T174 369Q174 371 135 371H97V373L105 410L112 444H152L192 445L200 478Q208 512 213 541L219 571H261Q303 571 303 570T290 506L276 444H343Q410 444 410 443Q410 440 403 407T395 371H328Q261 371 261 369Q211 152 211 118Q211 68 245 68'], + + // LATIN SMALL LETTER U + 0x75: [444,10,517,90,537,'166 -10H160Q146 -10 137 -8T115 0T97 22T90 63Q90 79 130 268L167 443Q167 444 214 444Q260 444 260 443L224 273Q187 97 187 86Q187 70 202 65T250 59Q303 59 336 83T379 139Q380 143 412 292T444 443Q444 444 491 444Q537 444 537 443T491 225T443 2V0H353V2L361 38L352 34Q344 29 326 22T286 7T232 -5T166 -10'], + + // LATIN SMALL LETTER V + 0x76: [444,0,461,108,540,'177 6L108 442V444H201V442Q202 441 213 371T235 213T246 90V65Q259 117 429 406L450 444H495Q540 444 540 443Q539 442 411 221L282 1L230 0H178L177 6'], + + // LATIN SMALL LETTER W + 0x77: [444,0,683,108,762,'148 5Q147 8 128 222T109 440L108 444H199V442Q200 441 204 385T214 253T219 140Q219 108 215 76Q215 72 214 67V65L215 66Q219 95 278 221L390 444H475V437Q497 203 497 121Q497 90 494 70Q494 67 494 67L496 73Q520 143 654 405L674 444H718Q762 444 762 443L534 1L483 0H432V5Q429 28 422 126T413 283Q413 343 416 370L417 378Q416 377 416 376Q401 303 248 12L242 0H148V5'], + + // LATIN SMALL LETTER X + 0x78: [444,0,461,1,537,'317 229Q453 9 460 0H409L359 1L312 88Q266 176 265 176Q265 177 254 165T223 132T182 88L100 0H1L15 14Q29 28 61 59T118 115L236 229L226 244Q108 433 100 444H201L290 294L438 444H537L528 435Q526 432 512 418T468 376T418 327L317 229'], + + // LATIN SMALL LETTER Y + 0x79: [444,205,461,1,540,'11 -117L20 -120Q28 -124 46 -128T84 -132H100Q124 -122 149 -85Q200 -6 200 1Q200 17 155 204T109 442Q109 444 156 444H203Q203 443 208 419T221 357T235 277T248 190T254 114Q254 81 250 67V65Q251 65 251 67Q256 94 297 177Q339 259 422 397L450 444H540Q540 443 386 186T219 -90Q179 -153 145 -179T73 -205Q52 -205 34 -202Q29 -202 21 -201T7 -198L1 -197Q1 -196 6 -157T11 -117'], + + // LATIN SMALL LETTER Z + 0x7A: [444,0,435,28,494,'129 408L136 444H315Q494 444 494 443Q494 441 489 419L484 396L164 76L291 77Q418 77 418 76T411 41T402 2V0H215Q28 0 28 2L34 27L38 50L360 371L240 370Q121 370 121 371Q124 388 129 408'], + + // TILDE + 0x7E: [327,-193,500,199,560,'330 327Q356 326 388 298T446 269Q470 269 484 327H522Q560 327 560 325L557 316Q554 306 549 292T535 263T512 232T480 208Q453 193 429 193T370 222T315 251Q285 251 275 193H199V197Q214 257 251 292T330 327'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js new file mode 100644 index 0000000..e9777b6 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Italic/CombDiacritMarks.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-italic'], + { + // COMBINING GRAVE ACCENT + 0x300: [694,-527,0,-270,-87,'-262 681L-270 694H-177L-132 612Q-89 530 -87 528Q-87 527 -125 527H-163L-208 598Q-254 670 -262 681'], + + // COMBINING ACUTE ACCENT + 0x301: [694,-527,0,-190,63,'-96 625L-29 694H63Q42 673 -31 605L-114 527H-190L-176 541Q-160 559 -96 625'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [694,-527,0,-310,33,'-310 527L-140 694H-66L-16 611Q33 528 33 527H-43L-110 632L-115 639L-234 527H-310'], + + // COMBINING TILDE + 0x303: [677,-543,0,-301,60,'-170 677Q-144 676 -112 648T-54 619Q-30 619 -16 677H22Q60 677 60 675L57 666Q54 656 49 642T35 613T12 582T-20 558Q-47 543 -71 543T-130 572T-185 601Q-215 601 -225 543H-301V547Q-286 607 -249 642T-170 677'], + + // COMBINING MACRON + 0x304: [631,-552,0,-314,64,'-314 553L-297 631H-116Q64 631 64 630Q60 612 56 591L47 553L-133 552Q-314 552 -314 553'], + + // COMBINING BREVE + 0x306: [694,-508,0,-284,73,'-142 508Q-205 508 -244 548T-284 652Q-284 666 -281 683L-280 694H-204Q-205 689 -205 677Q-205 650 -196 631T-173 604T-147 593T-125 590Q-85 590 -50 618T-5 686L-2 694H73V690Q53 610 -10 559T-142 508'], + + // COMBINING DOT ABOVE + 0x307: [680,-576,0,-180,-54,'-180 578Q-179 579 -170 627T-158 678V680H-54V678Q-56 675 -65 627T-76 578V576H-180V578'], + + // COMBINING DIAERESIS + 0x308: [680,-582,0,-273,40,'-273 584Q-272 585 -262 632L-252 678V680H-154V678L-164 632Q-174 585 -175 584Q-175 582 -224 582T-273 584ZM-78 586Q-78 587 -69 632T-58 678V680H40L39 677Q39 676 38 670T34 651T29 628L19 583L-30 582H-79L-78 586'], + + // COMBINING RING ABOVE + 0x30A: [693,-527,0,-227,-2,'-227 597Q-227 639 -186 666T-102 693H-97Q-29 693 -8 649Q-2 637 -2 623Q-2 582 -43 555T-132 527Q-171 527 -199 546T-227 597ZM-59 619Q-59 635 -68 643T-104 652Q-142 652 -156 636T-171 602Q-171 569 -123 569Q-119 569 -111 570T-99 571Q-59 582 -59 619'], + + // COMBINING DOUBLE ACUTE ACCENT + 0x30B: [694,-527,0,-287,63,'-236 619L-195 694H-149Q-103 694 -103 693L-211 527H-287L-282 536Q-281 539 -236 619ZM-70 619L-29 694H17Q63 694 63 693L-45 527H-121L-116 536Q-115 539 -70 619'], + + // COMBINING CARON + 0x30C: [654,-487,0,-283,60,'-283 654H-207L-140 549L-135 542L-16 654H60L-109 487H-147L-184 488L-234 570Q-283 653 -283 654'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js new file mode 100644 index 0000000..6db0c2c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js @@ -0,0 +1,35 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Italic/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-italic'] = { + directory: 'SansSerif/Italic', + family: 'MathJax_SansSerif', + id: 'MJSSI', + style: 'italic', + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xFFFF,"Other"], + [0x300,0x36F,"CombDiacritMarks"] + ] + + +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js new file mode 100644 index 0000000..cb39c1c --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js @@ -0,0 +1,86 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Italic/Other.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif-italic'], + { + // LATIN SMALL LETTER DOTLESS I + 0x131: [444,0,239,74,258,'168 442T168 443T213 444T258 443T212 225T164 2V0H74V2Q75 7 121 224'], + + // LATIN SMALL LETTER DOTLESS J + 0x237: [444,204,267,-97,286,'-54 -96L-48 -104Q-41 -111 -27 -118T7 -126Q60 -126 82 -87Q85 -81 140 181L196 443Q196 444 241 444T286 443Q286 441 232 186T175 -75Q163 -120 122 -162T19 -204Q-13 -204 -41 -196T-83 -180T-96 -170Q-55 -96 -54 -96'], + + // GREEK CAPITAL LETTER GAMMA + 0x393: [691,0,542,87,646,'87 2Q88 4 160 346T234 689Q234 691 440 691T646 689Q643 686 629 611H475L321 612Q193 4 191 2V0H87V2'], + + // GREEK CAPITAL LETTER DELTA + 0x394: [694,0,833,42,790,'273 343L510 694H617Q790 2 790 0H416L42 1L273 343ZM539 576Q536 597 536 600Q536 602 535 605Q534 607 534 607Q527 580 222 130L201 98H651L648 110Q645 123 639 149T627 198Q554 489 539 576'], + + // GREEK CAPITAL LETTER THETA + 0x398: [715,22,778,119,804,'119 260Q119 348 157 433T254 579T387 677T533 715Q701 715 772 574Q804 511 804 431Q804 315 744 209T586 41T384 -22Q262 -22 191 59T119 260ZM706 426Q706 524 655 582T525 640Q454 640 395 600T293 502Q256 447 237 383T218 266Q218 168 269 112T401 55Q518 55 612 166T706 426ZM283 349L293 397H473Q652 397 652 396Q647 374 642 347L632 299H452Q273 299 273 300Q278 322 283 349'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [694,0,611,28,582,'28 0L401 694H504V690Q505 686 543 345T582 1Q582 0 528 0H473V3Q472 6 460 113T435 359T422 558Q422 593 424 603L425 610L424 608Q414 572 343 431Q287 316 143 49L117 1L73 0H28'], + + // GREEK CAPITAL LETTER XI + 0x39E: [688,0,667,42,765,'193 687Q193 688 479 688H765V686Q764 685 755 642L747 600H461L175 601Q175 602 184 645L193 687ZM196 400Q196 401 418 401T640 400L622 315Q622 314 400 314T178 315L196 400ZM42 2Q43 3 51 44T60 87H64Q68 87 75 87T93 87T119 87T151 88T190 88T237 88T291 88T352 88H643Q638 66 634 44T627 13T624 2V0H42V2'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [691,0,708,86,768,'86 2Q88 4 160 346T233 689Q233 691 501 691Q768 691 768 689Q766 688 694 346T621 2V0H517V2Q518 3 582 304T646 609L648 615H321L190 0H86V2'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [694,0,722,55,813,'194 655L202 694H508Q813 694 813 693Q809 675 805 653L797 614H559L321 615Q327 606 405 478L485 347Q449 311 348 203T247 86Q247 84 294 84Q303 84 359 84T465 85H684Q684 84 675 42L666 0H360L55 1L195 154Q346 319 347 320L359 333L273 473Q187 614 186 614L187 620Q188 625 190 635T194 655'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [716,0,778,173,843,'357 637Q320 637 297 612T266 555H173Q178 576 188 598Q214 651 265 683T373 716Q497 716 497 542V509L504 526Q579 715 711 715Q773 715 808 677T843 589Q843 576 840 555H747L748 557Q748 559 748 563T749 574V580Q749 604 731 622Q715 638 693 638Q591 638 543 465Q531 425 506 309T462 98T441 2V0H337V2Q425 401 436 486Q438 504 438 526Q438 637 364 637H357'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [694,0,722,124,743,'124 308Q124 399 208 481T433 587Q437 587 437 589Q438 590 449 643L459 694H508Q557 694 557 693Q557 691 546 641T535 587Q543 587 562 583T614 565T674 531T722 472T743 387Q743 288 656 209T449 110L433 106Q411 3 410 2Q410 0 361 0H312L313 3Q313 5 324 56L335 107H331L321 108Q311 110 297 114T266 124T228 141T190 168Q124 225 124 308ZM227 315Q227 282 239 257T270 218T306 197T338 186L350 184H351L386 346Q420 507 420 509H419Q411 509 393 505T342 485T284 444Q227 387 227 315ZM642 381Q642 413 629 437T599 475T563 496T533 507T519 510Q518 510 484 348T450 184Q544 201 593 258T642 381'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [694,0,778,171,854,'325 556Q325 524 310 447T294 330Q294 289 304 260Q314 234 333 216T364 192T380 187L488 694H585V691Q584 689 531 438L478 188H479Q485 188 503 195T555 231T613 305Q637 352 654 435Q662 470 669 496T681 538T690 562T698 578T704 587Q719 609 733 615T772 621H802H854V619L838 546Q838 545 832 545Q775 539 749 418Q716 274 638 196Q616 173 590 156T543 131T503 117T473 110T460 106Q460 105 450 54T438 2V0H340V2Q341 3 351 54T362 106Q363 107 358 108T344 111T322 117T295 128T267 145T239 171T216 207T200 256T194 319Q194 356 203 408T213 483Q213 517 203 530T182 544T171 546Q184 609 187 619V621H239Q286 621 294 620T309 612Q325 596 325 556'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [716,0,722,44,769,'148 407Q148 475 182 534T269 633T386 694T511 716Q622 716 695 658T769 507Q769 461 747 409T699 321T628 225T562 136Q533 90 533 86Q542 85 557 85Q564 85 583 85T614 86Q695 86 695 85Q679 9 677 2V0H425Q426 3 433 30T447 72T480 131T549 241L554 248Q558 254 563 261T576 281T592 306T609 335T625 366T640 400T653 434T661 466T664 498Q664 562 618 601T497 640Q416 640 351 596T262 482Q250 441 250 392T276 237T302 70V56Q302 28 296 2V0H44V2L62 85Q62 86 143 86L225 85V88Q224 89 224 89T224 91T224 95T223 101T222 110T220 123T216 140T209 163T200 191T188 227Q148 344 148 407'], + + // EN DASH + 0x2013: [312,-236,500,50,565,'59 275L66 312H316Q565 312 565 311T558 275T549 238Q549 236 299 236Q50 236 50 237L52 242Q53 247 55 257T59 275'], + + // EM DASH + 0x2014: [312,-236,1000,50,1065,'59 275L66 312H566Q1065 312 1065 311T1058 275T1049 238Q1049 236 549 236Q50 236 50 237L52 242Q53 247 55 257T59 275'], + + // LEFT SINGLE QUOTATION MARK + 0x2018: [694,-471,278,190,335,'309 567L299 520Q289 474 288 473Q288 471 239 471T190 473L192 480Q193 486 196 499T201 522L211 569L287 694H312L335 693L332 685Q328 677 321 661T307 630L279 570L294 569Q309 569 309 567'], + + // RIGHT SINGLE QUOTATION MARK + 0x2019: [694,-471,278,190,335,'228 647L237 694H286Q335 694 335 693L334 686Q332 680 330 668T325 644L315 597L239 471H214Q190 471 190 472L246 595Q246 596 231 596H217V598Q217 601 228 647'], + + // LEFT DOUBLE QUOTATION MARK + 0x201C: [694,-471,500,274,613,'393 567L383 520Q373 474 372 473Q372 471 323 471T274 473L276 480Q277 486 280 499T285 522L295 569L371 694H396L419 693L416 685Q412 677 405 661T391 630L363 570L378 569Q393 569 393 567ZM587 567L577 520Q567 474 566 473Q566 471 517 471T468 473L470 480Q471 486 474 499T479 522L489 569L565 694H590L613 693L610 685Q606 677 599 661T585 630L557 570L572 569Q587 569 587 567'], + + // RIGHT DOUBLE QUOTATION MARK + 0x201D: [694,-471,500,133,472,'171 647L180 694H229Q278 694 278 693L276 686Q275 680 273 668T268 644L258 597L182 471H157Q133 471 133 472L189 595Q189 596 174 596H160V598Q160 601 171 647ZM365 647L374 694H423Q472 694 472 693L470 686Q469 680 467 668T462 644L452 597L376 471H351Q327 471 327 472L383 595Q383 596 368 596H354V598Q354 601 365 647'], + + // INCREMENT + 0x2206: [694,0,833,42,790,''] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Italic/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js new file mode 100644 index 0000000..ec4a123 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js @@ -0,0 +1,290 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Regular/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif'], + { + // SPACE + 0x20: [0,0,250,0,0,''], + + // EXCLAMATION MARK + 0x21: [694,0,319,110,208,'120 187Q120 225 115 440T110 693Q110 694 159 694T208 693Q208 655 203 440T198 187Q198 186 159 186T120 187ZM110 0V98H208V0H110'], + + // QUOTATION MARK + 0x22: [694,-471,500,32,325,'33 596V694H131V597L82 471H32L47 532Q62 593 63 594Q63 596 48 596H33ZM227 596V694H325V597L276 471H226L241 532Q256 593 257 594Q257 596 242 596H227'], + + // NUMBER SIGN + 0x23: [694,194,833,56,777,'56 350Q56 363 70 370H192Q314 370 314 371L356 526Q396 676 401 685Q406 694 416 694Q423 694 429 689T436 677Q436 673 396 523T355 371Q355 370 449 370Q544 370 544 371L586 526Q628 682 630 685Q636 694 646 694Q653 694 659 689T665 678Q665 670 645 593T605 444L585 371Q585 370 673 370H762Q777 362 777 350Q777 337 767 334T723 330H668H573L567 305Q560 282 545 226L530 171L646 170H721Q756 170 766 167T777 150Q777 138 762 130H640Q518 130 518 129L476 -26Q434 -182 432 -185Q426 -194 416 -194Q409 -194 403 -189T397 -178Q397 -170 417 -93T457 56L477 129Q477 130 383 130Q288 130 288 129L246 -26Q204 -182 202 -185Q196 -194 186 -194Q179 -194 173 -189T167 -178Q167 -170 187 -94T227 56L247 129Q247 130 159 130H70Q56 137 56 150Q56 165 72 170H259L265 195Q273 222 287 275L302 330H186L70 331Q63 334 58 339Q56 343 56 350ZM489 170L532 330H343L337 305Q330 282 315 226L300 171L394 170H489'], + + // DOLLAR SIGN + 0x24: [750,56,500,43,444,'55 509Q55 585 103 638T213 701V750H286V703H289Q312 703 354 689Q372 682 399 666T427 646L413 569Q413 568 403 575Q352 615 291 624H286V405Q357 389 400 331T444 199Q444 128 402 69T286 -7V-56H213V-9Q167 -3 125 14T63 44T44 60Q44 61 52 101L59 140L69 132Q78 125 87 119T107 107T124 97T141 90T157 84T173 80T187 76T201 73T213 70V317L202 319Q141 335 98 386T55 509ZM213 424V620L203 615Q143 587 143 522Q143 455 213 424ZM356 187Q356 208 350 227T334 258T315 280T298 293T287 297Q286 297 286 186V75Q356 110 356 187'], + + // PERCENT SIGN + 0x25: [750,56,833,56,776,'56 549Q56 639 98 694T195 750Q248 750 290 694T332 548Q332 455 290 401T195 347Q141 347 99 403T56 549ZM248 549Q248 602 234 638T195 674Q145 674 145 549Q145 423 195 423Q219 423 233 459T248 549ZM197 -56Q187 -56 182 -49T176 -35Q176 -33 178 -27Q179 -25 399 356T623 741Q626 750 639 750Q648 750 654 744T659 729Q657 721 435 336T207 -52Q203 -56 197 -56ZM500 146Q500 235 542 291T639 347Q692 347 734 293T776 146Q776 53 733 -1T639 -56Q587 -56 544 -2T500 146ZM692 146Q692 199 678 235T639 271Q589 271 589 146Q589 20 639 20Q663 20 677 56T692 146'], + + // AMPERSAND + 0x26: [716,22,758,42,702,'156 502Q156 600 198 658T302 716Q367 716 405 665T444 549Q444 531 442 523Q426 446 304 348L287 334Q305 297 340 249T402 170T430 139T443 149T472 181T509 231T549 303T583 394Q584 398 586 404Q587 408 587 409Q588 409 626 399T665 388Q663 381 660 369T644 322T614 253T567 176T502 98L491 87Q534 57 584 57Q653 57 700 75Q702 75 702 34T700 -7Q652 -22 586 -22H580Q505 -22 434 26L421 34Q419 33 405 25T374 11T336 -4T285 -17T226 -22Q143 -22 93 31T42 152Q42 184 51 211T81 260T111 291T144 317L184 348L178 365Q156 430 156 502ZM359 552Q359 588 345 614T302 640Q292 640 282 636T260 622T241 590T233 535Q236 474 253 417L257 407L271 419Q312 454 330 479Q359 514 359 552ZM345 102Q262 190 216 277Q215 277 204 267T180 247T165 236Q135 208 135 159Q135 123 152 97T198 61Q207 58 227 58Q286 58 357 89L345 102'], + + // APOSTROPHE + 0x27: [694,-471,278,89,188,'90 596V694H188V597L139 471H89L104 532Q119 593 120 594Q120 596 105 596H90'], + + // LEFT PARENTHESIS + 0x28: [750,250,389,74,333,'74 250Q74 564 240 733L257 750H333L323 739Q167 573 167 250T323 -239L333 -250H257L240 -233Q74 -63 74 250'], + + // RIGHT PARENTHESIS + 0x29: [750,250,389,55,314,'221 -73T221 250T65 739L55 750H131L148 733Q314 567 314 250T148 -233L131 -250H55L65 -239Q221 -73 221 250'], + + // ASTERISK + 0x2A: [750,-306,500,63,436,'208 717Q211 731 222 740T250 750Q265 750 277 741T291 717Q291 706 290 675T286 617L285 591L329 622Q369 651 376 655T393 659Q411 659 423 647T436 616Q436 609 434 603T429 594T419 585T407 577T389 567T368 556L316 528L368 500Q421 472 429 464Q436 455 436 440Q436 422 423 409T393 396Q390 396 388 396T384 397T380 398T375 401T367 406T358 413T346 422T329 434L285 465Q284 465 285 438T289 381T291 347Q291 327 278 317T250 306Q234 306 222 315T208 339Q208 350 209 381T212 439L214 465L170 434Q130 405 123 401T106 397Q88 397 76 409T63 440Q63 447 65 453T70 462T80 471T92 479T110 489T131 500L183 528L131 556Q78 584 70 592Q63 601 63 616Q63 634 76 647T106 660Q109 660 111 660T115 659T119 658T124 655T132 650T141 643T153 634T170 622L214 591L212 617Q211 643 210 674T208 717'], + + // PLUS SIGN + 0x2B: [583,82,778,56,722,'56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250'], + + // COMMA + 0x2C: [98,125,278,89,188,'90 0V98H188V1L139 -125H89L104 -64Q119 -3 120 -2Q120 0 105 0H90'], + + // HYPHEN-MINUS + 0x2D: [259,-186,333,11,277,'11 186V259H277V186H11'], + + // FULL STOP + 0x2E: [98,0,278,90,188,'90 0V98H188V0H90'], + + // SOLIDUS + 0x2F: [750,250,500,56,444,'423 750Q432 750 438 744T444 730Q444 725 271 248T92 -240Q85 -250 75 -250Q68 -250 62 -245T56 -231Q56 -221 230 257T407 740Q411 750 423 750'], + + // DIGIT ZERO + 0x30: [678,22,500,39,460,'117 621Q174 678 247 678Q305 678 351 647Q396 617 424 557Q460 472 460 328Q460 271 455 224Q448 154 427 104T376 27T314 -10T249 -22Q201 -22 160 1T91 67Q39 154 39 316Q39 541 117 621ZM250 55Q274 55 293 66T324 93T344 136T357 185T364 240T366 291T367 340Q367 373 367 393T363 449T352 507T332 553T299 589T250 601Q217 601 194 584T159 542T141 479T133 411T132 340V331Q132 299 133 277T137 219T147 157T167 107T201 68T250 55'], + + // DIGIT ONE + 0x31: [678,0,500,83,430,'94 612Q172 616 211 632T284 678H307V73H430V0H88V73H213V317Q213 560 212 560Q210 558 197 554T155 546T96 540L83 539V612H94'], + + // DIGIT TWO + 0x32: [677,0,500,42,449,'222 599Q190 599 166 585T128 550T108 509T97 474T93 459L67 492L42 526L47 539Q72 608 120 642T225 677Q304 677 355 644Q449 579 449 454Q449 373 361 290Q351 280 315 250T199 144Q156 103 137 85L293 86H449V0H50V79L216 242Q284 302 317 349T351 456Q351 517 315 558T222 599'], + + // DIGIT THREE + 0x33: [678,22,500,42,457,'333 521Q333 554 313 579T243 604Q154 604 99 514L78 546Q56 577 56 579Q56 580 62 589T82 611T114 637T162 662T222 677Q224 677 231 677T242 678H245Q318 678 374 634T430 520Q430 483 417 452T382 398T351 369T329 354L328 353Q369 333 373 330Q408 306 432 268T457 184Q457 103 397 41T242 -22Q131 -22 51 58L42 68L49 105L55 142L58 138Q62 134 66 130T77 120T91 108T108 96T129 83T152 72T179 63T209 57T242 54Q285 54 319 86T353 184Q353 231 331 267T260 315L213 316H166V354Q166 392 167 392Q233 395 257 405Q290 418 311 450T333 521'], + + // DIGIT FOUR + 0x34: [656,0,500,28,471,'271 654L272 656H380V235H471V159H380V0H286V159H28V235L149 443Q269 652 271 654ZM292 235V607Q292 604 290 591T286 571T280 548T269 517T252 476T226 422T189 354T140 267Q136 260 132 253T126 240L123 236Q123 235 207 235H292'], + + // DIGIT FIVE + 0x35: [656,21,500,33,449,'257 350Q236 350 218 342T189 323T171 301T160 281L157 273Q157 272 116 272H75V656H416V577H162V486Q162 396 163 396T174 403T207 418T258 426Q339 426 394 360T449 203Q449 113 386 46T226 -21H223Q188 -21 156 -11T102 13T64 42T41 66T33 77Q34 78 44 95T64 128L73 144Q93 112 117 93Q165 54 223 54Q270 54 306 86T345 197Q345 350 257 350'], + + // DIGIT SIX + 0x36: [678,22,500,42,457,'42 318Q42 396 61 460T109 564T173 629T237 666T289 677H301H317Q359 677 408 658V621Q408 585 407 585H406Q359 605 308 605Q246 605 203 556T146 421Q143 403 144 403Q145 402 152 409Q216 469 299 469Q333 469 357 457T407 405Q457 330 457 226Q457 126 402 57Q340 -22 251 -22Q216 -22 183 -7T116 43T63 149T42 318ZM260 393Q216 393 188 365T150 306T141 243Q141 153 172 104Q192 68 230 56Q238 54 251 54Q311 54 342 116Q360 152 360 226Q360 297 344 332Q320 382 277 392Q275 392 270 392T260 393'], + + // DIGIT SEVEN + 0x37: [656,11,500,42,457,'42 570V656H457V577L447 564Q345 439 295 289T244 0V-11H145V12Q160 330 356 550Q360 556 365 561T374 571L208 570H42'], + + // DIGIT EIGHT + 0x38: [678,23,500,43,456,'55 500Q55 568 109 623T250 678Q327 678 385 627T444 501Q444 445 410 410T336 357L329 353H330Q378 335 417 293T456 184Q456 93 393 36T249 -22T106 35T43 184Q43 251 82 293T169 353Q171 354 166 356Q165 356 163 357Q113 378 84 416T55 500ZM358 496Q358 557 325 581T250 605Q206 605 174 580T141 496Q141 446 171 420T250 393Q298 393 328 419T358 496ZM245 316Q205 316 172 285T139 185V179Q139 79 222 57Q231 55 250 55H254Q295 55 327 84Q360 120 360 188Q360 254 326 285Q295 316 245 316'], + + // DIGIT NINE + 0x39: [677,22,500,42,457,'44 476Q57 561 116 619T245 677H255Q308 677 349 647Q392 619 424 545T457 334Q457 178 382 78T205 -22Q168 -22 135 -10T86 14L72 25Q73 25 91 58L110 91Q127 78 136 72T163 60T203 54Q238 54 265 71T308 110T335 164T350 214T357 253V257L347 248Q284 187 200 187Q165 187 140 201T87 258Q42 332 42 430Q42 458 44 476ZM269 604Q265 605 254 605Q222 605 199 591T164 554T148 517T141 487Q140 478 140 430T141 373Q146 335 164 307T207 269Q223 263 247 263Q299 266 328 308T358 417Q358 435 356 456T346 511T318 570T269 604'], + + // COLON + 0x3A: [444,0,278,90,188,'90 346V444H188V346H90ZM90 0V98H188V0H90'], + + // SEMICOLON + 0x3B: [444,125,278,89,188,'90 346V444H188V346H90ZM90 0V98H188V1L139 -125H89L104 -64Q119 -3 120 -2Q120 0 105 0H90'], + + // EQUALS SIGN + 0x3D: [370,-130,778,56,722,'56 350Q56 363 70 370H707Q722 362 722 350Q722 339 708 331L390 330H72Q56 335 56 350ZM56 150Q56 165 72 170H708Q722 160 722 150Q722 138 707 130H70Q56 137 56 150'], + + // QUESTION MARK + 0x3F: [704,0,472,55,416,'55 652Q63 658 77 666T132 689T214 704T265 703Q303 698 332 684T376 653T401 615T413 578T416 546Q416 475 360 426Q325 396 303 365T273 303T263 256T261 216V186H183V225Q184 281 194 322Q206 368 232 409T276 469T306 495Q323 517 323 550Q323 596 297 612T223 629Q187 629 157 618Q122 607 91 583L83 576L55 652ZM173 0V98H271V0H173'], + + // COMMERCIAL AT + 0x40: [704,11,667,56,612,'422 576Q440 576 456 573T480 566L488 563Q488 565 484 571T472 588T452 607T424 622T387 629Q294 629 220 550T146 347Q146 233 210 155T365 66Q376 65 400 65Q465 68 517 86L532 91H612L598 76Q511 -11 388 -11Q250 -11 153 93T56 347Q56 454 107 538T231 663T378 704Q446 704 492 680T564 608T599 506T611 376Q611 320 607 299Q595 227 546 173T422 118Q343 118 288 185T232 347Q232 444 287 510T422 576ZM520 347Q520 429 487 465T421 501Q385 501 354 461T323 347Q323 270 355 232T422 193Q454 193 487 229T520 347'], + + // LATIN CAPITAL LETTER A + 0x41: [694,0,667,28,638,'183 181Q183 179 152 91T118 0H28L154 346L280 693Q281 694 333 694H385L511 349Q636 4 638 2Q638 0 584 0H530L464 183H184L183 181ZM324 606Q319 578 292 492T238 332T210 256Q210 254 324 254T438 255L429 281L419 308Q409 336 395 378T365 465T339 551T324 611V606'], + + // LATIN CAPITAL LETTER B + 0x42: [694,0,667,90,610,'425 363Q438 363 465 353T526 324T585 270T610 192Q610 132 561 78T426 7Q404 2 387 2T240 0H90V694H227Q373 693 396 689Q484 673 533 623T583 517Q583 494 574 473T551 437T520 409T487 388T456 374T433 366L425 363ZM490 516Q490 527 485 539T467 568T423 599T347 621Q340 622 262 623H188V399H261H286Q432 399 478 475Q490 496 490 516ZM514 190Q514 245 462 280T343 322Q336 323 259 323H188V71H274Q365 72 388 77Q445 88 479 121T514 190'], + + // LATIN CAPITAL LETTER C + 0x43: [706,12,639,58,587,'59 347Q59 440 100 521T218 654T392 705Q473 705 550 680Q577 670 577 667Q576 666 572 642T564 595T559 571Q515 601 479 613T392 626Q300 626 232 549T164 347Q164 231 229 150T397 68Q453 68 489 80T568 120L581 129L582 110Q584 91 585 71T587 46Q580 40 566 31T502 5T396 -11Q296 -11 218 41T99 174T59 347'], + + // LATIN CAPITAL LETTER D + 0x44: [694,0,722,88,666,'88 0V694H237H258H316Q383 694 425 686T511 648Q578 604 622 525T666 343Q666 190 564 86Q494 18 400 3Q387 1 237 0H88ZM565 341Q565 409 546 463T495 550T429 600T359 621Q348 623 267 623H189V71H267Q272 71 286 71T310 70Q461 70 527 184Q565 251 565 341'], + + // LATIN CAPITAL LETTER E + 0x45: [691,0,597,86,554,'86 0V691H541V611H366L190 612V397H513V321H190V85H372L554 86V0H86'], + + // LATIN CAPITAL LETTER F + 0x46: [691,0,569,86,526,'86 0V691H526V611H358L190 612V384H485V308H190V0H86'], + + // LATIN CAPITAL LETTER G + 0x47: [704,11,667,58,599,'59 346Q59 499 157 601T384 704Q436 704 466 700T541 679Q551 674 560 670T575 664T583 660T588 658T590 656Q590 652 582 605T573 557L564 564Q489 626 392 626Q301 626 233 549T164 347T233 145T392 68Q441 68 506 84V223H388V299H599V38L588 33Q494 -11 393 -11Q296 -11 219 40T100 172T59 346'], + + // LATIN CAPITAL LETTER H + 0x48: [694,0,708,86,621,'86 0V694H190V399H517V694H621V0H517V323H190V0H86'], + + // LATIN CAPITAL LETTER I + 0x49: [694,0,278,87,191,'87 0V694H191V0H87'], + + // LATIN CAPITAL LETTER J + 0x4A: [694,22,472,43,388,'181 53Q200 53 215 56T241 66T259 79T272 95T280 109T285 122L287 129V694H388V415V229Q388 135 385 112T369 63Q364 51 355 39T328 12T280 -12T212 -22Q172 -22 130 -12T66 8T43 20L46 42Q50 65 54 88L58 110Q58 111 65 104Q107 53 181 53'], + + // LATIN CAPITAL LETTER K + 0x4B: [694,0,694,88,651,'88 0V694H188V519L189 343L525 694H638L375 419L651 0H541L309 351L188 225V0H88'], + + // LATIN CAPITAL LETTER L + 0x4C: [694,0,542,87,499,'87 0V694H191V79L297 80H451L499 81V0H87'], + + // LATIN CAPITAL LETTER M + 0x4D: [694,0,875,92,782,'92 0V694H228L233 680Q236 675 284 547T382 275T436 106Q446 149 497 292T594 558L640 680L645 694H782V0H689V305L688 606Q688 577 500 78L479 23H392L364 96Q364 97 342 156T296 280T246 418T203 544T186 609V588Q185 568 185 517T185 427T185 305V0H92'], + + // LATIN CAPITAL LETTER N + 0x4E: [694,0,708,88,619,'88 0V694H235L252 659Q261 639 364 428T526 84V694H619V0H472L455 35Q453 39 330 294T185 601L181 611V0H88'], + + // LATIN CAPITAL LETTER O + 0x4F: [715,22,736,55,680,'55 345Q55 504 149 609T361 715Q386 715 406 713Q521 696 600 592T680 344Q680 193 590 86T368 -22Q239 -22 147 84T55 345ZM276 59T368 59T518 146T576 360Q576 473 525 545T401 634Q371 637 362 637Q284 637 222 562T159 360T217 147'], + + // LATIN CAPITAL LETTER P + 0x50: [694,0,639,88,583,'88 0V694H230Q347 693 370 692T410 686Q487 667 535 611T583 485Q583 409 527 348T379 276Q369 274 279 274H192V0H88ZM486 485Q486 523 471 551T432 593T391 612T357 621Q350 622 268 623H189V347H268Q350 348 357 349Q370 351 383 354T416 368T450 391T475 429T486 485'], + + // LATIN CAPITAL LETTER Q + 0x51: [715,125,736,55,680,'55 345Q55 504 149 609T361 715Q386 715 406 713Q521 696 600 592T680 344Q680 284 665 231T629 143T587 85T551 48L536 35L648 -120L652 -125H531L452 -8L440 -12Q407 -22 369 -22Q239 -22 147 85T55 345ZM579 345Q579 473 517 555T369 637Q279 637 218 554T156 345Q156 223 215 141T368 58Q376 58 382 58T392 58T397 59T401 60T403 61H404Q404 63 360 128T315 194H421L453 150Q485 105 486 105Q490 108 496 113T517 138T545 182T567 247T579 334V345'], + + // LATIN CAPITAL LETTER R + 0x52: [694,0,646,88,617,'88 0V694H227H259H302Q365 694 399 689T474 663Q528 637 558 595T589 504Q589 482 584 462T569 426T547 396T522 372T495 353T470 338T449 328T434 322L429 320L440 300Q452 280 477 238T523 160L617 1L565 0Q513 0 512 1Q512 2 424 156L337 309H189V0H88ZM492 504Q492 600 367 620Q354 622 271 623H189V385H271Q363 386 388 392Q432 402 462 430T492 504'], + + // LATIN CAPITAL LETTER S + 0x53: [716,22,556,43,500,'55 514Q55 589 115 652T283 716Q315 716 345 711T396 699T432 685T457 672T467 667Q467 666 459 618T449 568Q383 634 282 634Q214 634 182 600T150 525Q150 507 155 492T172 465T194 446T222 432T247 423T272 416T289 412Q353 396 378 384Q432 358 466 307T500 194Q500 110 438 44T272 -22Q215 -22 159 -5T73 28T44 50Q45 51 49 75T57 122T62 146L65 143Q68 140 74 136T88 125T107 111T131 98T160 85T194 74T232 66T274 63H286Q327 63 366 96T406 182Q406 245 352 280Q329 296 265 310T173 339Q124 363 90 409T55 514'], + + // LATIN CAPITAL LETTER T + 0x54: [688,0,681,36,644,'36 608V688H644V608H518L392 609V0H288V609L162 608H36'], + + // LATIN CAPITAL LETTER U + 0x55: [694,22,688,87,600,'87 450V694H191V449Q192 203 193 194Q200 148 220 117T266 72T311 54T347 49Q404 49 446 84T501 178Q505 195 505 218T507 449V694H600V450Q600 414 600 356Q599 198 595 181Q594 178 594 177Q575 89 505 34T345 -22Q258 -22 184 34T89 196Q88 205 87 450'], + + // LATIN CAPITAL LETTER V + 0x56: [694,0,667,14,652,'14 692Q14 694 68 694H122L146 633Q325 165 339 90Q340 87 341 87Q341 124 530 619L558 694H605Q652 694 652 692Q650 690 523 354T390 10L387 0H279L276 10Q271 18 144 354T14 692'], + + // LATIN CAPITAL LETTER W + 0x57: [694,0,944,14,929,'115 694Q115 693 156 550T233 266T270 90L271 85Q272 86 272 92Q272 153 405 616L427 694H524L553 590Q672 174 681 95L682 84L684 95Q689 138 728 287T803 563T841 692Q841 694 885 694T929 693Q929 691 829 346L730 0H679L628 1L606 75Q478 524 470 600L469 611L467 600Q458 518 338 101L310 0H213L114 346Q14 691 14 693Q14 694 64 694H115'], + + // LATIN CAPITAL LETTER X + 0x58: [694,0,667,14,652,'14 0Q16 5 144 184T275 367L153 528Q121 571 88 615T42 674T28 694H150L228 584Q315 463 316 461L326 448L497 694H610L609 692Q606 689 492 528Q440 454 409 410T378 366Q378 365 515 182L652 0H531L326 292Q326 293 299 254T226 146L128 0H14'], + + // LATIN CAPITAL LETTER Y + 0x59: [694,0,667,4,663,'4 693L64 694H125L174 621Q335 378 340 364L341 362Q361 398 395 450L558 694H663L383 277V0H282V278L143 485Q112 531 75 586T21 668L4 693'], + + // LATIN CAPITAL LETTER Z + 0x5A: [694,0,611,55,560,'69 617V694H555V643L373 362Q190 81 190 79H234Q244 79 272 79T344 80T419 81H560V0H55V53L237 334Q420 615 420 617Q413 618 387 618Q380 618 334 618T245 617H69'], + + // LEFT SQUARE BRACKET + 0x5B: [750,250,289,94,266,'94 -250V750H266V674H181V-174H266V-250H94'], + + // RIGHT SQUARE BRACKET + 0x5D: [750,250,289,22,194,'22 674V750H194V-250H22V-174H107V674H22'], + + // CIRCUMFLEX ACCENT + 0x5E: [694,-527,500,79,421,'146 612L212 694H287L353 612Q417 532 420 529Q421 528 418 527Q414 527 383 527H345L250 639Q244 633 199 580L154 527H116Q79 528 79 529Q82 532 146 612'], + + // LOW LINE + 0x5F: [-38,114,500,0,499,'0 -114V-38H499V-114H0'], + + // LATIN SMALL LETTER A + 0x61: [460,10,481,38,408,'236 387Q209 387 184 382T141 370T111 355T91 342T83 337L82 355Q80 373 79 393T77 417Q77 419 81 421Q86 423 91 426Q155 460 227 460H238Q319 460 368 400Q393 371 400 341T408 252Q408 240 408 207T407 152V0H317V39L306 32Q244 -10 159 -10H152Q109 -10 77 22Q38 61 38 126Q38 142 39 146Q55 199 130 223T295 252H314V277Q314 305 313 310Q308 342 287 364T236 387ZM303 186Q124 180 124 126Q124 105 144 86T208 66Q284 66 309 124Q314 137 314 166V186H303'], + + // LATIN SMALL LETTER B + 0x62: [694,11,517,75,482,'303 -11Q280 -11 259 -6T222 6T194 21T176 33T168 38V0H75V694H165V550L166 405Q247 455 336 455Q397 455 439 389T482 226Q482 115 428 52T303 -11ZM390 221Q390 283 361 331T265 379Q214 379 177 342L168 334V118Q203 66 258 66Q316 66 353 106T390 221'], + + // LATIN SMALL LETTER C + 0x63: [460,10,444,34,414,'34 223Q34 327 99 393T245 460Q290 460 301 459Q328 455 354 445T395 427T410 415L396 338L386 344Q377 349 362 357T335 370Q305 381 258 381H252Q182 381 146 315Q126 275 126 224Q126 158 159 113T255 68Q329 68 394 106L408 114L410 93Q411 72 412 52L414 32Q407 27 394 20T338 2T252 -10Q156 -10 95 58T34 223'], + + // LATIN SMALL LETTER D + 0x64: [694,10,517,33,441,'33 224Q33 321 81 388T197 455Q277 455 342 414L351 408V694H441V0H348V44L338 37Q278 -10 198 -10Q177 -10 168 -8Q99 11 62 90Q33 148 33 224ZM348 337Q307 378 263 378Q260 378 256 378T251 379Q239 379 223 374T182 355T142 305T126 220Q126 90 225 67Q231 66 250 66H255Q306 66 342 115L348 124V337'], + + // LATIN SMALL LETTER E + 0x65: [461,10,444,28,415,'28 226Q28 329 91 395T235 461Q258 461 279 456T325 436T368 397T399 332T415 238V219H113V215Q113 163 151 114T248 65Q273 65 298 70T341 82T373 96T396 108L403 113Q403 106 406 76T409 38Q409 34 408 33T393 24Q325 -10 252 -10Q155 -10 92 59T28 226ZM340 289L338 297Q335 305 333 310T327 326T317 343T304 358T286 372T263 381T233 385Q212 385 193 376T162 353T140 325T127 301T123 289H340'], + + // LATIN SMALL LETTER F + 0x66: [705,0,306,27,347,'262 705H267Q300 705 347 694V612L336 616Q303 628 274 628H266Q224 628 199 605Q187 590 184 579T181 541V507V444H287V371H184V0H94V371H27V444H94V492Q94 544 95 550Q102 617 151 661T262 705'], + + // LATIN SMALL LETTER G + 0x67: [456,206,500,28,485,'55 286Q55 357 105 406T224 455Q280 455 323 421L322 423L318 427Q318 428 339 434T396 448T465 455H471L478 416L485 377Q484 377 474 379T445 383T401 385Q397 385 391 385T381 384L362 383L357 387Q358 386 364 375T375 354T384 325T389 287Q389 217 340 168T221 119Q178 119 138 142Q133 145 131 143Q125 131 125 117Q125 82 155 72L227 71Q230 71 251 71T280 71T310 69T343 65T373 57T403 46T428 30T449 7Q471 -26 471 -62V-71Q471 -136 384 -178Q326 -206 250 -206Q159 -206 102 -172T30 -92Q28 -84 28 -68T31 -37T40 -12T52 7T64 21T75 31T82 38Q60 68 60 106Q60 145 80 180L86 189L80 199Q55 240 55 286ZM304 233T304 287T279 362T220 383Q189 383 165 361T140 287Q140 243 161 217T220 191Q253 191 278 212ZM250 -134Q298 -134 331 -122T375 -96T387 -69Q387 -21 306 -7Q288 -5 216 -5Q161 -5 153 -7Q146 -9 139 -13T122 -31T113 -66Q113 -75 113 -80T127 -97T166 -121Q203 -134 250 -134'], + + // LATIN SMALL LETTER H + 0x68: [694,0,517,73,443,'163 395Q223 455 307 455Q417 455 438 354Q442 331 443 164V0H350V157Q349 315 348 320Q334 378 259 378H253Q224 378 204 358Q180 334 173 301T165 209Q165 198 165 172T166 129V0H73V694H163V395'], + + // LATIN SMALL LETTER I + 0x69: [680,0,239,67,171,'67 576V680H171V576H67ZM74 0V444H164V0H74'], + + // LATIN SMALL LETTER J + 0x6A: [680,205,267,-60,192,'88 576V680H192V576H88ZM31 -126Q40 -126 48 -125T62 -122T73 -117T82 -111T89 -105T94 -99T98 -92L102 -86V444H192V180Q191 -45 191 -70T184 -113Q171 -152 140 -178T63 -205Q34 -205 4 -197T-43 -181T-59 -171T-51 -133T-41 -96L-38 -99Q-34 -102 -28 -106T-13 -115T7 -123T31 -126'], + + // LATIN SMALL LETTER K + 0x6B: [694,0,489,76,471,'76 0V694H163V257L340 444H449L286 272L292 263Q296 259 378 138T463 12L471 0H372L309 92Q294 114 277 139T250 179T237 198L228 211L160 139V0H76'], + + // LATIN SMALL LETTER L + 0x6C: [694,0,239,74,164,'74 0V694H164V0H74'], + + // LATIN SMALL LETTER M + 0x6D: [455,0,794,73,720,'160 392Q223 455 304 455Q359 455 386 436T430 383L437 391Q495 455 584 455Q694 455 715 354Q719 331 720 164V0H627V157Q626 315 625 320Q611 378 536 378H530Q501 378 481 358Q457 334 450 301T442 209Q442 198 442 172T443 129V0H350V157Q349 315 348 320Q334 378 259 378H253Q224 378 204 358Q180 334 173 301T165 209Q165 198 165 172T166 129V0H73V450H160V392'], + + // LATIN SMALL LETTER N + 0x6E: [455,0,517,73,443,'160 392Q214 446 283 454Q285 454 292 454T303 455H306Q417 455 438 354Q442 331 443 164V0H350V157Q349 315 348 320Q334 378 259 378H253Q224 378 204 358Q180 334 173 301T165 209Q165 198 165 172T166 129V0H73V450H160V392'], + + // LATIN SMALL LETTER O + 0x6F: [460,10,500,28,471,'28 222Q28 323 95 391T244 460Q275 460 281 459Q364 445 417 377T471 219Q471 124 408 57T250 -10Q158 -10 93 57T28 222ZM377 230Q377 277 364 310T328 358T287 379T248 385Q233 385 219 382T186 369T155 342T132 297T122 230Q122 146 159 108T250 69H253Q263 69 274 70T305 81T339 106T365 154T377 230'], + + // LATIN SMALL LETTER P + 0x70: [455,194,517,75,483,'166 404Q194 424 241 439T337 455H341Q410 455 451 370Q483 307 483 222Q483 128 433 59T306 -10Q282 -10 260 -5T222 7T194 21T176 33T168 38V-194H75V444H165V424L166 404ZM390 222Q390 287 354 331T266 376T177 340L168 332V118Q200 66 257 66Q313 66 351 112T390 222'], + + // LATIN SMALL LETTER Q + 0x71: [455,194,517,33,441,'33 220Q33 325 87 389T206 454Q286 454 341 406L351 398V455H441V-194H348V41L338 35Q276 -8 198 -11Q171 -11 154 -5Q102 12 68 74T33 220ZM126 220Q126 160 161 113T251 65Q305 65 351 123V298L350 301Q349 304 347 308T342 319T336 331T327 343T315 355T300 365T283 373Q273 375 256 375Q208 375 167 332T126 220'], + + // LATIN SMALL LETTER R + 0x72: [455,0,342,74,327,'171 389Q237 455 320 455H327V373H317Q262 369 220 336T167 248Q165 239 164 119V0H74V450H159V377L171 389'], + + // LATIN SMALL LETTER S + 0x73: [460,10,383,28,360,'33 326Q33 376 60 408T117 450T175 460H190Q245 460 272 454T345 429Q345 428 338 388L331 349Q278 386 188 386H183Q119 386 119 336Q119 307 142 295T210 276T278 256Q360 213 360 130Q360 108 354 88T332 43T281 5T195 -10Q152 -10 111 1T49 22T28 35Q29 36 32 56T39 95T43 115T51 110T72 99T102 85T143 73T193 68Q274 68 274 123Q274 152 248 167Q234 178 187 186T115 207Q66 229 46 273Q33 298 33 326'], + + // LATIN SMALL LETTER T + 0x74: [571,10,361,18,333,'333 27Q333 24 314 16T257 -1T184 -10H172Q146 -10 128 14T105 58T99 91Q95 113 95 251V371H18V444H98V571H182V444H316V371H182V253Q183 128 189 104Q199 68 234 68Q277 72 314 98Q315 93 323 61T333 27'], + + // LATIN SMALL LETTER U + 0x75: [444,11,517,73,443,'353 39Q352 38 344 34T331 27T315 19T295 11T270 3T241 -3T207 -8T168 -10H162Q148 -10 137 -8T111 2T87 30T74 81Q73 89 73 268V444H166V268L167 92Q171 79 174 74T192 64T238 59Q317 59 344 116Q349 128 349 148T350 291V444H443V0H353V39'], + + // LATIN SMALL LETTER V + 0x76: [444,0,461,14,446,'178 0Q15 441 14 442Q14 444 60 444Q107 444 107 442Q108 441 136 364T196 194T232 67Q233 98 280 234T356 442Q356 444 401 444T446 442L282 0H178'], + + // LATIN SMALL LETTER W + 0x77: [444,0,683,14,668,'14 444H105L108 434Q192 160 200 74V65L201 75Q206 144 282 399L296 444H381L399 381Q480 112 480 69L481 70Q481 113 562 386L580 444H668L534 1L483 0H432L429 10Q343 294 338 367L337 377Q336 375 336 370Q336 340 313 250T269 88T245 11L242 0H195L148 1L14 444'], + + // LATIN SMALL LETTER X + 0x78: [444,0,461,0,460,'187 229L6 444H107L227 294L344 444H393L442 443Q439 437 299 268L267 229L460 0H359L294 88Q280 107 262 131T236 166L227 177L100 0H0Q1 1 47 58T140 171T187 229'], + + // LATIN SMALL LETTER Y + 0x79: [444,204,461,14,446,'113 -204Q83 -204 63 -200L43 -197Q43 -196 40 -157T36 -117L48 -121Q79 -133 114 -133Q124 -133 130 -132T145 -121T163 -94Q169 -82 184 -42T200 1L188 29Q176 57 152 115T107 223T62 330T26 416L14 443Q14 444 61 444H109L122 411Q230 155 236 75L237 65V74Q245 161 348 424L356 444H401Q446 444 446 443L396 313Q345 183 293 49T236 -93Q191 -204 123 -204H113'], + + // LATIN SMALL LETTER Z + 0x7A: [444,0,435,28,402,'42 370V444H400V395L156 76L279 77H402V0H28V51L273 371L157 370H42'], + + // TILDE + 0x7E: [327,-193,500,83,416,'83 204Q86 254 113 290T186 327Q211 327 251 299T312 270Q337 270 340 315V327H416V316Q413 258 382 226T315 193Q289 193 249 221T187 250Q162 250 159 205V193H83V204'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js new file mode 100644 index 0000000..947c431 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js @@ -0,0 +1,59 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Regular/CombDiacritMarks.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif'], + { + // COMBINING GRAVE ACCENT + 0x300: [694,-527,0,-417,-200,'-415 692L-417 694H-324L-262 612Q-249 594 -233 572T-208 539L-200 528L-237 527H-275L-344 608Q-359 625 -378 647T-406 680T-415 692'], + + // COMBINING ACUTE ACCENT + 0x301: [694,-527,0,-301,-84,'-239 612L-177 694H-84L-86 692Q-86 691 -95 681T-123 648T-157 608L-226 527H-264L-301 528L-293 539Q-285 550 -269 572T-239 612'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [694,-527,0,-421,-79,'-354 612L-288 694H-213L-147 612Q-83 532 -80 529Q-79 528 -82 527Q-86 527 -117 527H-155L-250 639Q-256 633 -301 580L-346 527H-384Q-421 528 -421 529Q-418 532 -354 612'], + + // COMBINING TILDE + 0x303: [677,-543,0,-417,-84,'-417 554Q-414 604 -387 640T-314 677Q-289 677 -249 649T-188 620Q-163 620 -160 665V677H-84V666Q-87 608 -118 576T-185 543Q-211 543 -251 571T-313 600Q-338 600 -341 555V543H-417V554'], + + // COMBINING MACRON + 0x304: [631,-552,0,-431,-70,'-431 552V631H-70V552H-431'], + + // COMBINING BREVE + 0x306: [694,-508,0,-427,-74,'-250 508Q-331 508 -379 567T-427 689V694H-351V685Q-348 649 -321 620T-250 591Q-206 591 -180 619T-150 685V694H-74V689Q-74 624 -122 566T-250 508'], + + // COMBINING DOT ABOVE + 0x307: [680,-576,0,-302,-198,'-302 576V680H-198V576H-302'], + + // COMBINING DIAERESIS + 0x308: [680,-582,0,-397,-104,'-397 582V680H-299V582H-397ZM-202 582V680H-104V582H-202'], + + // COMBINING RING ABOVE + 0x30A: [694,-526,0,-319,-99,'-319 611Q-319 649 -285 671T-211 694Q-164 694 -132 671T-99 611Q-99 572 -133 550T-209 527T-285 549T-319 611ZM-155 610Q-155 635 -171 643T-215 651Q-263 651 -263 610Q-263 570 -211 570H-209H-207Q-155 570 -155 610'], + + // COMBINING DOUBLE ACUTE ACCENT + 0x30B: [694,-527,0,-399,-84,'-250 693Q-317 544 -323 527H-399L-343 694H-296Q-250 694 -250 693ZM-84 693Q-151 544 -157 527H-233L-177 694H-130Q-84 694 -84 693'], + + // COMBINING CARON + 0x30C: [654,-487,0,-422,-80,'-421 652Q-422 653 -419 654Q-415 654 -384 654H-346L-301 601Q-287 585 -275 571T-258 551T-250 542L-155 654H-117Q-80 653 -80 652Q-83 649 -147 569L-213 487H-288L-354 569Q-418 649 -421 652'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js new file mode 100644 index 0000000..810b477 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js @@ -0,0 +1,34 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif'] = { + directory: 'SansSerif/Regular', + family: 'MathJax_SansSerif', + id: 'MJSS', + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xFFFF,"Other"], + [0x300,0x36F,"CombDiacritMarks"] + ] + + +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js new file mode 100644 index 0000000..b573133 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js @@ -0,0 +1,86 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/SansSerif/Regular/Other.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_SansSerif'], + { + // LATIN SMALL LETTER DOTLESS I + 0x131: [444,0,239,74,164,'74 0V444H164V0H74'], + + // LATIN SMALL LETTER DOTLESS J + 0x237: [444,205,267,-60,192,'-35 -95Q-4 -126 34 -126Q58 -126 76 -116T100 -88Q102 -82 102 181V444H192V180Q191 -45 191 -70T184 -113Q171 -152 140 -178T63 -205Q34 -205 4 -197T-43 -181T-59 -171L-47 -133L-35 -95'], + + // GREEK CAPITAL LETTER GAMMA + 0x393: [691,0,542,87,499,'87 0V691H499V611H345L191 612V0H87'], + + // GREEK CAPITAL LETTER DELTA + 0x394: [694,0,833,42,790,'203 348L362 694H470L629 348Q789 2 790 1Q790 0 416 0T42 1Q43 2 203 348ZM630 98Q630 100 584 198T481 422T407 603L405 610L403 600Q388 544 191 122L180 99L405 98H630'], + + // GREEK CAPITAL LETTER THETA + 0x398: [716,21,778,56,722,'56 344Q56 430 86 502T164 619T271 690T388 716Q448 716 506 691T613 619T692 501T722 344Q722 188 624 84T389 -21Q252 -21 154 83T56 344ZM624 345Q624 423 597 488T513 596T380 639Q343 639 305 621T232 568T175 475T153 344Q153 216 222 136T388 56Q487 56 555 138T624 345ZM209 299V397H568V299H209'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [694,0,611,28,582,'294 606Q294 574 252 430T163 144T117 0H72Q28 0 28 1T141 348L254 694H357L469 348Q582 2 582 1T527 0L473 1L469 11Q469 13 427 141T343 411T296 599L294 610V606'], + + // GREEK CAPITAL LETTER XI + 0x39E: [688,0,667,42,624,'47 600V688H619V600H47ZM111 314V401H555V314H111ZM42 0V88H624V0H42'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [691,0,708,86,621,'86 0V691H621V0H517V615H190V0H86'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [694,0,722,55,666,'55 0Q56 3 171 167T288 332Q288 334 172 474L55 615V694H666V614H428L190 615L412 347L322 218Q236 97 228 84L447 85H666V0H55'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [716,0,778,55,722,'55 565Q59 625 105 670T219 716H222Q310 716 353 627Q376 583 386 524L389 510L393 532Q397 555 407 584T433 644T482 695T557 716Q621 716 669 673T722 565V555H629V563Q627 592 607 615T557 638Q530 638 511 629T479 598T459 553T447 488T442 411T441 319V202V0H337V202Q337 453 331 497Q313 634 226 638Q185 638 167 612T148 563V555H55V565'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [694,0,722,55,666,'666 347Q666 326 661 302T638 247T594 190T520 140T413 107H410V0H312V54Q312 107 311 107Q286 107 229 128T125 192Q55 260 55 347Q55 396 77 438T131 507T200 552T265 579T311 587Q312 587 312 641V694H410V587H413Q476 576 524 552T598 502T640 444T661 390T666 347ZM310 510Q305 510 291 507T252 492T208 464T172 416T157 347T171 279T204 233T247 205T286 190T310 184H312V347Q312 510 310 510ZM564 347Q564 385 549 416T514 463T470 491T433 505T414 509L410 510V184Q413 184 426 187T464 200T510 227T548 275T564 347'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [694,0,778,55,722,'340 187V694H438V187Q481 206 495 219Q518 239 533 267T553 332T560 386T562 435Q562 576 593 608Q608 621 637 621H670H722V545H719Q718 545 715 545T710 544Q679 536 666 487Q664 474 662 429T654 344T633 259T580 175T486 119Q450 109 438 108V0H340V108L326 110Q122 149 117 415Q116 460 111 487Q98 536 67 544Q65 544 62 544T58 545H55V621H107Q160 621 163 620Q191 613 202 573Q213 536 213 473T220 351T256 249Q262 239 270 230T285 216T301 205T316 197T329 192T340 187'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [716,0,722,44,677,'55 462Q55 561 141 638T359 716Q492 716 579 640T666 462Q666 407 642 347T579 222T529 126Q515 91 515 86Q517 85 528 85Q530 85 552 85T596 86H677V0H425V14Q429 79 465 168L492 228Q494 232 504 254T516 283T527 310T539 340T548 368T556 399T560 428T562 460Q562 531 510 585T361 639Q263 639 211 585T159 460Q159 422 170 378T192 309T229 228L256 168Q292 79 296 14V0H44V86H125Q146 86 168 86T193 85L206 86Q206 103 183 148T131 241T79 352T55 462'], + + // EN DASH + 0x2013: [312,-236,500,0,499,'0 236V312H499V236H0'], + + // EM DASH + 0x2014: [312,-236,1000,0,999,'0 236V312H999V236H0'], + + // LEFT SINGLE QUOTATION MARK + 0x2018: [694,-471,278,90,189,'90 568L140 694H189L174 633Q159 572 158 571Q158 569 173 569H188V471H90V568'], + + // RIGHT SINGLE QUOTATION MARK + 0x2019: [694,-471,278,89,188,'90 596V694H188V597L139 471H89L104 532Q119 593 120 594Q120 596 105 596H90'], + + // LEFT DOUBLE QUOTATION MARK + 0x201C: [694,-471,500,174,467,'174 568L224 694H273L258 633Q243 572 242 571Q242 569 257 569H272V471H174V568ZM368 568L418 694H467L452 633Q437 572 436 571Q436 569 451 569H466V471H368V568'], + + // RIGHT DOUBLE QUOTATION MARK + 0x201D: [694,-471,500,32,325,'33 596V694H131V597L82 471H32L47 532Q62 593 63 594Q63 596 48 596H33ZM227 596V694H325V597L276 471H226L241 532Q256 593 257 594Q257 596 242 596H227'], + + // INCREMENT + 0x2206: [694,0,833,42,790,''] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/SansSerif/Regular/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js new file mode 100644 index 0000000..b230d15 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js @@ -0,0 +1,107 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Script/Regular/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Script'], + { + // SPACE + 0x20: [0,0,250,0,0,''], + + // LATIN CAPITAL LETTER A + 0x41: [718,8,803,35,1016,'76 60Q83 29 135 29Q190 29 264 81Q280 93 280 95T277 99T265 106T248 118Q189 166 189 237Q189 307 245 388Q267 421 299 436Q336 455 386 455Q488 455 550 403L559 395L571 405Q727 544 944 679L957 687L966 701Q968 704 970 707T973 712T975 714T978 716T982 717T989 717H995Q1004 717 1007 717T1013 714T1016 708Q1016 705 829 403L636 92L630 83Q659 93 685 110T728 143L745 158Q758 158 752 138L748 127L740 119Q676 58 605 42L593 22Q590 17 587 12T583 6T579 2T573 0T564 0H530H484Q480 3 480 8Q480 15 489 26T498 39T497 40Q477 40 423 49T327 74L316 78L302 68Q200 -8 121 -8Q85 -8 60 7T35 53T60 113T123 144Q144 144 153 132T162 106Q162 89 143 75T99 61Q90 61 76 65V60ZM904 614L905 615Q901 615 840 573T700 469T581 369L587 359Q600 340 608 315T618 273T622 238T624 216L764 414Q904 612 904 614ZM525 363Q493 405 379 418H375Q342 418 309 378Q251 300 251 234Q251 174 306 137Q318 128 322 131Q323 132 329 139Q351 161 362 180Q430 273 509 348L525 363ZM579 205Q579 245 571 278T556 323T546 337L521 311Q461 248 422 196T362 121L353 111Q427 85 499 79Q517 77 520 77L525 76L549 111Q551 114 556 121T563 131T568 138T573 147T575 157T577 169T578 185T579 205'], + + // LATIN CAPITAL LETTER B + 0x42: [708,28,908,31,928,'256 262Q161 262 161 351Q161 408 203 471T289 570Q380 645 475 676T617 707L627 708Q637 708 644 708Q759 708 831 675L844 669L857 677Q892 700 896 700Q902 700 907 685Q907 683 907 681T908 678T909 676T909 673Q909 671 909 670T906 667T903 664T897 660T889 655L878 647L889 636Q928 598 928 548Q928 529 923 510T907 474T886 442T861 412T837 388T815 368T800 355Q847 323 847 270V263Q847 205 806 145Q766 82 695 37T564 -8Q527 -8 506 10T484 58Q484 85 501 117T543 172Q607 226 685 228Q695 228 698 226Q703 220 692 206Q684 194 682 193T665 191Q625 189 595 172T550 133T529 93T522 66Q522 29 576 29Q642 29 705 109Q785 211 785 270Q785 287 779 300T769 316T755 327L740 319Q682 290 634 290Q611 290 592 294H588L565 261Q559 252 544 231T522 201T504 178T481 151T455 123Q394 63 314 18T159 -28Q103 -28 67 -6T31 54Q31 88 57 123T123 158Q144 158 154 146T164 119Q164 102 142 89T100 75Q94 75 87 77T76 80L72 81Q69 78 69 65Q69 35 102 22T175 9Q184 9 198 11Q248 23 300 70T403 187T508 331T636 489T789 629L801 639Q796 642 786 647T732 661T633 670Q592 670 558 665Q481 651 409 613T286 520Q274 507 258 485T222 424T202 354Q202 299 269 299Q282 299 295 301T318 307T339 317T358 329T376 345T391 362T406 380T420 398T433 417T445 435Q496 512 496 547Q496 559 497 560T516 569Q526 574 530 574Q538 574 538 540Q538 414 427 325Q342 262 256 262ZM689 382Q708 382 753 375L765 387Q860 482 860 555Q860 594 839 610L822 592Q794 563 752 511T680 420T651 380Q655 381 660 381Q664 382 689 382ZM697 344Q692 345 681 345H675Q671 345 665 345T655 344T650 344L648 342Q646 339 645 338Q643 333 639 327H653Q670 329 676 330Q706 342 706 343Q702 344 697 344'], + + // LATIN CAPITAL LETTER C + 0x43: [728,26,666,26,819,'367 89Q367 84 353 77T334 70Q325 70 312 83T298 120Q298 169 364 233T496 298Q538 298 563 275T588 220V213Q588 132 501 53T306 -26Q251 -26 211 6T170 114Q171 148 181 184T205 248T232 298T255 334T265 349T246 350Q127 350 77 390T26 480Q26 533 71 581T178 656T295 683Q312 683 312 676Q312 674 311 672L302 660Q294 648 292 647L286 646Q280 646 276 646Q197 641 145 583T93 476Q93 387 265 387Q271 387 277 387T287 388T292 388T313 414T373 483T451 562Q618 712 732 727Q733 727 740 727T753 728Q790 727 804 708T819 665Q819 643 810 617T773 553T699 481T572 414T385 361Q381 361 367 341Q247 172 247 86Q247 11 325 11Q404 11 465 95Q518 165 528 208Q529 212 529 220Q529 237 518 249T480 261Q431 261 387 209T343 126Q343 111 355 101T367 89ZM777 658Q777 691 738 691Q704 691 658 662T570 590T491 504T432 432T410 400H411Q416 400 440 405T505 423T589 455T675 506T743 576Q777 627 777 658'], + + // LATIN CAPITAL LETTER D + 0x44: [708,31,774,68,855,'251 272Q199 272 168 298T136 374Q136 432 175 496T267 603Q321 645 395 676T552 708Q610 708 655 694T724 659T763 618T784 584L790 569Q792 569 800 572T819 576T840 578Q855 578 855 571Q855 566 846 554T829 541Q824 541 817 539T804 533T799 529Q802 517 802 483Q802 376 742 256T585 53T392 -31Q353 -31 300 -7L289 -2L277 -6Q242 -17 192 -17Q141 -17 113 -13T77 -3T68 14Q68 20 73 28T93 45T131 58Q152 62 197 62Q241 62 272 48L282 44Q308 65 334 93Q380 145 467 266T622 454Q644 476 664 493T694 517T720 534T740 547Q699 671 540 671Q461 671 385 625T276 534Q265 520 251 499T219 438T202 368Q202 309 267 309Q325 309 396 383T491 545Q492 548 493 552Q494 558 496 559T511 564Q513 565 514 565Q523 568 527 568Q534 568 534 560Q534 554 529 537Q507 442 420 357T251 272ZM332 20Q332 19 341 15T368 6T400 2Q425 2 457 13T531 49T614 125T690 248Q750 376 750 476V490L738 479Q698 436 646 366T554 239T455 121T332 20ZM226 20Q226 25 186 25Q181 25 174 24H166Q161 24 158 23H152Q170 21 197 21Q205 21 213 21T223 20H226'], + + // LATIN CAPITAL LETTER E + 0x45: [707,8,562,46,718,'280 398L279 400Q278 402 277 405T275 413T272 426T271 443Q271 494 302 544T379 629T472 685T553 707H565H573Q630 707 664 689Q718 661 718 604Q718 548 662 492T553 436Q525 436 508 451T490 492Q490 534 531 579T619 630Q632 630 632 623Q632 619 624 606Q614 593 602 592T578 580Q566 568 549 541T532 497Q532 474 565 474Q577 474 587 476Q600 481 611 489Q630 503 651 535T672 596Q672 660 553 660H548Q494 660 450 616Q421 587 384 531T343 439Q341 420 344 415H345Q346 415 352 415T369 417T391 418Q421 418 440 412T466 398T473 382Q473 367 452 353T398 339Q370 339 348 345T315 359L304 366Q297 365 284 360T234 321T163 234Q120 160 120 117Q120 83 149 57T252 30Q311 30 357 60Q386 79 414 114T452 179Q454 186 454 200Q454 230 415 242Q401 246 373 246Q353 246 347 244Q328 236 313 219T288 184T274 149T265 121T261 109Q260 107 247 102T230 97Q223 97 223 105Q223 148 271 216T386 284Q446 284 483 260T520 195Q520 121 427 57T239 -8Q192 -8 152 2T79 46T46 133Q46 212 107 285T269 394L280 398ZM427 376Q427 377 402 380Q386 380 386 379L425 375L427 376'], + + // LATIN CAPITAL LETTER F + 0x46: [735,37,895,39,990,'258 428Q258 489 322 562T482 685T661 735Q726 735 824 693T977 651Q990 651 990 644Q990 639 971 612T948 581Q947 580 938 580Q878 580 784 621T617 663Q544 663 480 635T379 568T320 492T299 431Q299 387 362 387Q404 387 438 402T493 438T527 486T546 531T551 563Q551 569 550 575T549 584T549 590Q551 593 563 602T579 611Q584 611 592 605T608 584T616 548Q616 513 595 477T554 423Q518 392 464 372T349 351Q258 351 258 428ZM324 187T305 187T286 196Q286 202 301 217Q327 242 383 262T484 290L527 297L567 356Q624 441 643 467T688 521Q715 550 752 581T795 613T804 603T808 587T778 547T702 444T626 300H637Q663 302 685 306L697 308L703 317Q745 376 792 400Q806 406 818 406Q849 406 849 375Q847 355 831 338T797 312T763 296L747 290Q744 289 735 266T724 241Q722 240 702 232T664 217T645 210Q638 210 638 218Q638 224 653 246T669 270Q669 271 668 271Q663 270 624 264L607 263Q570 199 529 152Q513 133 484 106T409 45T305 -13T193 -36Q109 -36 74 -10T39 50Q39 86 64 121T128 158Q171 158 171 121Q171 97 141 83Q125 75 107 75Q93 75 80 83Q76 71 76 62Q76 29 117 15T207 0Q324 0 494 248L501 258H495Q368 239 330 195Q324 187 305 187ZM775 335Q806 358 806 368Q805 369 804 369Q800 369 791 360Q774 336 775 335'], + + // LATIN CAPITAL LETTER G + 0x47: [717,37,610,12,739,'206 318L249 320Q249 327 259 352T282 399Q312 447 366 510T465 610Q588 717 661 717Q695 717 716 701T738 653T704 577Q663 522 610 474T512 397T424 346T359 315T333 306Q331 304 327 290T323 267Q323 229 368 229Q402 229 439 254T505 312T571 382T638 435Q642 437 644 437Q658 437 658 409Q655 403 647 399T624 379T595 326Q583 296 564 267T523 179Q504 126 483 91T423 27Q335 -37 231 -37Q191 -37 157 -30T95 -2T67 53Q67 89 94 123T159 158Q180 158 190 146T200 119Q200 102 178 89T136 75Q128 75 120 78T110 81Q105 81 105 62Q105 38 129 24T180 5T238 1H244Q282 1 319 32Q349 55 371 85T436 190L465 239Q413 192 354 192Q300 192 274 217T245 276Q245 284 242 284Q220 280 187 280Q106 280 59 315T12 409Q12 457 43 508T118 597T210 659T295 683Q308 683 308 675Q308 670 299 658T282 646Q266 646 240 633Q182 606 118 511Q76 448 76 400Q76 368 105 343T206 318ZM677 660Q677 680 646 680Q616 680 565 629Q537 601 514 571Q493 544 455 492T389 398T360 355Q366 357 386 367Q463 406 534 473T641 591T677 660'], + + // LATIN CAPITAL LETTER H + 0x48: [718,36,969,29,1241,'331 505Q331 519 382 574T472 629H480Q512 629 529 614T547 576Q547 555 534 532T520 504Q520 493 549 493Q590 493 623 506T668 533L681 546Q731 600 772 641T832 700T852 717Q857 717 860 711T865 697L866 690Q866 688 813 617T708 475T656 403Q682 403 714 404H771L780 416Q1004 707 1167 707Q1209 707 1225 689T1241 646Q1241 604 1209 547T1118 447Q1081 422 1034 405T952 382T888 374T857 370H852L826 334Q733 204 708 144Q691 104 691 76Q691 29 748 29Q768 31 791 48T831 83T862 122T881 146Q883 148 900 148H917Q921 143 921 140T914 127Q810 -8 723 -8Q611 -4 611 100Q611 142 631 191T676 275T721 337T742 367Q716 367 685 366H628L620 355Q618 352 558 268Q486 168 461 141Q405 79 339 34T215 -28Q188 -36 153 -36Q86 -36 58 -11T29 46Q29 82 55 120T123 158Q144 158 154 146T164 119Q164 102 143 89T100 75Q92 75 86 76T77 80T72 82Q67 82 67 60Q67 28 99 14T170 0Q214 0 272 47T419 224L505 340L518 357Q513 357 504 356T467 347T415 330T360 300T308 253Q296 238 295 237H278H274Q256 237 256 243Q256 248 263 256Q291 294 330 321T407 362T476 382T530 393T552 398Q556 402 573 423T600 454Q602 457 604 460T608 465L610 467Q565 455 532 455Q465 455 449 483Q447 487 447 498Q447 513 463 538T479 579Q479 593 463 593Q436 593 385 519Q374 504 371 502T360 499H353H349Q331 499 331 505ZM1195 634Q1195 643 1195 648T1185 662T1157 671Q1130 671 1092 644T1019 579T952 502T901 436L882 409L891 410Q900 411 913 412T934 415Q1081 439 1144 520Q1195 590 1195 634'], + + // LATIN CAPITAL LETTER I + 0x49: [717,17,809,59,946,'487 225Q398 255 398 342Q398 410 455 492Q491 545 552 582T669 636T800 673T918 712Q930 717 933 717Q939 717 942 706T946 689Q946 686 915 664T830 591T729 480Q691 429 657 351T615 260Q628 260 663 279T733 339T769 426Q769 442 767 459T764 479Q764 484 766 486Q769 488 781 493T797 498Q802 498 803 494T808 472Q813 442 813 425Q813 369 761 315Q692 246 605 224L592 220L584 209Q547 155 487 106T358 25Q270 -17 191 -17Q143 -17 101 1T59 59Q59 96 85 127T148 158Q169 158 179 146T189 119Q189 102 167 89T125 75Q116 75 109 77T101 81T97 80Q96 77 96 72Q96 50 123 36T204 21H216Q249 21 302 49T411 134Q439 161 459 187Q487 220 487 225ZM460 334Q460 308 472 290T498 268L510 263Q515 263 545 313T626 438T723 561Q751 589 775 609T808 636T817 644H816Q813 644 732 618Q681 601 645 584T585 548T549 514T518 476Q460 390 460 334'], + + // LATIN CAPITAL LETTER J + 0x4A: [717,314,1052,92,1133,'829 148Q845 148 845 143T841 130T823 109T788 83T730 54T644 22Q637 20 634 19T627 16T622 13T618 10T612 3T604 -6Q510 -112 396 -203T201 -312Q190 -314 171 -314H166Q156 -314 147 -312T123 -304T101 -283T92 -245Q92 -203 117 -160T175 -93Q214 -65 280 -41T390 -6T509 22L532 27L547 47Q673 219 673 225L665 228Q657 231 648 235T627 249T606 270T591 300T584 341Q584 389 614 447T686 544Q735 588 799 615T959 667T1108 713Q1118 717 1119 717Q1125 717 1129 705T1133 689Q1133 686 1115 673Q1051 627 1001 579T918 481T867 403T828 328T805 277Q802 271 801 267T798 261T798 259Q849 270 900 317Q956 371 956 421Q956 438 953 457T950 480Q950 481 950 482L951 484Q953 487 966 492T985 498Q989 498 994 473Q1000 441 1000 423Q1000 362 934 302T790 223L775 220L767 207Q757 191 731 158T685 98T662 63Q662 61 690 70T755 99T811 142L816 148H829ZM646 332Q646 308 659 291T685 268L698 263L735 320Q828 465 865 511Q923 582 1003 643L1005 645Q1004 645 924 620Q775 572 716 492Q646 401 646 332ZM184 -278Q233 -278 311 -212T444 -80L498 -15H496Q468 -20 424 -30T293 -70T174 -133Q167 -140 158 -153T138 -190T127 -232Q127 -278 184 -278'], + + // LATIN CAPITAL LETTER K + 0x4B: [717,37,914,29,1204,'521 506Q521 493 549 493Q608 493 660 527Q667 531 690 555L736 604Q750 619 777 646T825 694T848 716T852 717Q857 717 860 711T865 697L866 690Q866 687 812 615Q654 404 654 401Q655 401 656 401T659 402T665 403T680 404Q718 404 734 374Q735 370 743 376Q745 377 752 382Q806 416 852 466T933 563T982 623Q1028 666 1075 686T1155 706Q1165 706 1173 705T1186 703T1194 699T1199 695T1201 692T1202 688V687L1204 677Q1204 667 1191 670Q1189 670 1183 670T1174 671Q1137 671 1086 643T1001 564Q970 517 899 449T749 339L739 333L736 322Q730 295 703 253T652 165T628 77Q628 21 681 21Q692 21 698 23Q751 46 817 134L827 148H844Q861 148 864 146Q869 140 859 127Q818 75 761 29T665 -17Q649 -17 633 -12T598 4T569 40T558 100Q558 128 563 152T585 205T609 245T643 294Q647 300 645 300Q633 297 615 297Q607 297 600 298T589 300T584 301Q581 301 569 284T536 236T488 171T418 97T331 28Q233 -37 155 -37Q104 -37 68 -17T29 44Q29 82 55 120T123 158Q144 158 154 146T164 119Q164 102 143 89T100 75Q92 75 86 76T77 80T72 82Q68 82 68 59Q68 37 85 23T123 5T167 0Q203 0 238 21T311 85T382 174T468 288T563 410Q576 426 588 440T607 462T615 472L605 468Q568 456 533 456H527Q490 456 463 483Q451 496 451 508T468 545T486 581Q486 593 465 593Q448 593 425 568T384 518T364 493Q364 492 347 492Q326 492 326 499T351 537T414 599T477 630Q509 630 528 615T547 576Q547 556 534 533T521 506ZM675 357Q675 368 665 368Q656 368 644 363Q631 355 616 333H628Q640 334 672 341Q675 354 675 357'], + + // LATIN CAPITAL LETTER L + 0x4C: [717,17,874,14,1035,'572 704Q607 704 607 693Q607 681 590 664H588Q586 664 584 664T578 663Q504 658 434 592T363 457Q363 426 386 401Q417 371 481 361Q490 360 527 360H562Q565 363 595 404T666 494T755 596T854 682T945 717Q986 717 1010 696T1035 637Q1035 593 996 531T873 414Q809 378 753 360T674 338T651 333Q650 333 633 308T588 245T544 185Q498 126 426 78L413 68H414Q498 47 575 47Q626 47 676 74T755 139L762 148H779H783Q802 148 802 142Q802 137 795 129Q760 81 691 33T544 -16Q470 -16 366 20L341 29L331 24Q239 -17 155 -17H141Q90 -17 61 -12T23 1T14 22Q14 44 39 65T103 95Q126 101 180 101Q224 101 258 98T309 90T330 86Q332 86 353 103T389 135Q401 146 412 158T431 179T450 203T466 225T485 252T505 280L535 322H509Q391 322 340 362T289 452Q289 495 321 547T396 630Q438 665 486 684T572 704ZM978 635Q978 644 977 650T973 661T968 668T961 673T954 676T946 678T938 680Q929 680 925 677Q893 659 795 531T682 377Q683 377 711 385T755 401T801 421T856 453T906 495Q927 516 952 557T978 635ZM274 50Q274 51 258 54T216 61T166 65Q160 65 151 65T140 64Q115 58 102 48T88 31Q88 20 159 20Q191 20 219 27T261 42L274 50'], + + // LATIN CAPITAL LETTER M + 0x4D: [721,51,1080,30,1216,'112 -7Q86 -7 58 6T30 48T54 103T113 130Q129 130 141 121T153 94Q153 71 132 59T90 47H80Q95 30 133 30Q180 30 228 63T311 137T402 249T500 361Q566 425 703 529T910 693Q942 721 945 721T958 716T970 709Q974 704 964 691Q961 688 905 622T847 554L595 181Q553 121 527 77T496 19L492 5Q497 5 531 46Q579 98 685 224T850 409L972 524Q994 543 1004 556Q1012 567 1097 643T1186 720Q1194 720 1206 715T1215 703Q1215 701 1191 671T1133 599T1080 530Q1036 461 983 357T862 152Q802 64 799 17Q799 7 800 5T811 2Q836 2 882 37T969 126Q972 130 974 134T978 138T983 139T996 140H1012Q1018 134 1018 132Q1018 122 981 83T889 4T795 -35Q761 -35 745 -12T728 48Q728 122 781 190Q833 269 890 370L927 434L914 422Q848 360 752 245Q643 117 582 51T498 -33T461 -50Q424 -48 424 -4Q424 84 481 172L714 495Q591 406 523 333Q507 316 430 226T313 95Q263 48 221 24T162 -4T120 -7H112'], + + // LATIN CAPITAL LETTER N + 0x4E: [726,36,902,29,1208,'764 513Q764 482 772 423T780 330Q780 304 778 285T775 256T773 245Q778 252 826 328T932 484T1042 617Q1077 652 1114 678T1173 715T1200 726Q1208 726 1208 717Q1208 711 1206 695L1203 679L1199 675Q1197 675 1187 670T1161 657T1133 639Q1050 583 959 456Q906 381 858 307T779 179T725 83T691 18T679 -6Q677 -8 660 -8H656Q639 -8 639 -1Q639 4 646 17Q685 93 685 173V196Q685 233 681 288T676 380Q676 438 687 487L664 454Q505 230 454 170Q366 64 290 14T163 -36H152Q87 -36 58 -11T29 46Q29 82 55 120T123 158Q144 158 154 146T164 119Q164 102 143 89T100 75Q92 75 86 76T77 80T72 82Q67 82 67 59Q67 37 89 19T167 1Q187 1 197 3Q221 9 246 22T292 52T336 91T375 132T411 174T440 212T463 245T478 266Q779 695 784 698Q786 700 802 700H818Q824 694 824 692T809 668T779 604T764 513'], + + // LATIN CAPITAL LETTER O + 0x4F: [707,8,738,96,805,'259 -8Q230 -7 205 0T153 24T112 74T96 153Q96 254 174 379T374 599T607 707H621Q732 707 778 661Q805 634 805 598Q805 558 775 517T696 452L684 447V441Q684 378 626 273T484 97Q379 7 288 -7Q279 -8 259 -8ZM760 594Q760 670 608 670Q562 670 493 622T347 472Q174 240 174 131Q174 76 205 53T279 29Q294 29 306 32Q405 60 507 205Q592 325 616 401Q625 426 625 435Q625 436 621 436T603 440T569 449Q524 466 515 475Q513 477 513 481T525 496T541 508L548 504Q555 501 565 497T587 488T609 480T625 476Q627 476 626 481Q626 486 623 494T613 513T589 533T548 541Q495 541 413 454T286 281Q265 241 254 201T240 141T235 120Q234 118 217 111T197 104Q195 104 192 107T189 112Q190 125 193 147T220 231T280 348Q335 428 407 493T539 576Q548 578 563 578Q594 578 617 568T653 546T672 518T681 494T683 482Q683 481 684 481Q690 481 707 495T742 538T760 594'], + + // LATIN CAPITAL LETTER P + 0x50: [716,37,1013,90,1031,'571 345Q571 384 612 418T687 452Q698 452 698 445Q698 436 679 417Q677 415 670 415Q650 412 633 389T615 350Q615 340 621 331T634 319T643 315L663 342Q751 462 817 536Q873 595 896 614L907 625Q843 680 701 680Q594 680 499 632T344 516Q317 486 296 449T267 384Q262 366 262 354Q262 332 276 316T326 299H327Q374 299 426 338Q481 376 537 456T597 598Q597 616 599 617Q601 619 614 624T630 630Q639 630 639 604V587V581Q639 519 597 456Q544 377 462 320T318 262Q278 262 250 282T222 350Q222 418 285 504Q360 597 480 656T702 716Q773 716 825 707T898 688T951 660Q962 670 985 685T1012 700Q1018 700 1022 690T1026 673Q1026 670 1019 664Q988 633 988 631Q988 630 999 618T1020 580T1031 522Q1031 471 1003 419T928 330Q854 275 765 264Q757 262 733 262H714L701 245Q615 121 473 42T218 -37Q159 -37 125 -15T90 46Q90 82 116 120T185 158Q203 158 213 147T224 121Q224 110 219 102Q198 75 159 75Q154 75 149 76T143 77T140 77Q137 72 137 53Q138 37 149 26T177 9T205 2T228 0Q313 0 419 74T602 257L620 281L614 285Q607 289 601 294T587 306T576 323T571 345ZM950 529Q950 576 943 576Q940 576 840 439T741 299H751Q804 300 845 334T924 438Q949 490 950 529'], + + // LATIN CAPITAL LETTER Q + 0x51: [717,17,883,54,885,'330 387Q330 331 402 331Q463 331 514 371T589 459T613 542Q613 559 608 570T598 588T593 596Q593 601 617 610Q632 617 636 616Q675 585 675 527Q675 464 629 409T516 324T387 294Q271 294 271 394V402Q271 438 292 478Q344 582 457 649T672 717Q765 717 825 675T885 548Q885 433 771 298T498 76Q493 73 491 72T486 69T484 67T485 66Q539 41 607 41Q655 41 703 71T780 139L787 148H804Q806 148 809 148Q826 149 826 140Q826 128 786 91T687 19T589 -16H576Q503 -16 414 20L396 27Q279 -17 192 -17Q130 -17 92 2T54 53Q54 92 107 123T222 155Q303 155 401 106L431 91L441 97Q476 118 527 157Q622 236 711 361T801 573Q801 591 795 607T775 641T732 668T660 679Q592 679 528 644T422 560T355 464T330 387ZM201 20Q232 20 267 27T322 40T342 49Q342 52 315 60T243 77T160 86Q150 88 144 88Q130 88 122 79T112 62L111 53Q111 20 201 20'], + + // LATIN CAPITAL LETTER R + 0x52: [717,17,850,-2,887,'224 266Q185 266 156 286T127 354Q127 419 176 487T282 594Q346 642 433 679T615 717Q732 717 802 680L815 673Q824 680 840 690T860 700Q864 700 867 693T872 680L873 673Q873 668 858 659L845 651L853 642Q887 605 887 561Q887 500 840 439Q790 379 681 336Q693 312 693 292Q692 276 689 263T672 229T653 198T620 152L575 87Q557 57 557 33Q557 24 560 17T566 8L569 5Q546 5 508 25T470 76Q470 83 473 92T545 198T616 310Q616 317 615 318T612 319Q603 319 575 315H560L545 291Q492 201 429 135T277 23Q202 -17 142 -17H130Q50 -17 16 17Q-2 35 -2 57Q-2 95 24 126T88 158Q106 158 116 147T127 121Q127 110 122 102Q116 93 99 84T63 75Q58 75 53 76T47 77T45 75T44 67Q45 52 57 42T88 27T120 21T144 19Q174 19 208 36T267 76T324 134T369 189T406 239Q462 319 504 374T616 503T755 631L770 644Q767 647 753 654T697 670T602 680Q493 680 399 631T247 516Q218 485 193 440T168 359Q168 328 188 316T234 303Q255 303 273 315T304 340T343 389T390 448Q428 490 441 510T456 548Q456 557 458 559Q459 560 476 567T496 575Q505 575 505 558Q505 511 434 412Q429 406 427 403Q397 360 378 343Q342 308 300 287T224 266ZM819 564Q819 595 800 619L784 606Q729 557 692 512T605 387L591 365L610 364Q622 364 631 363T641 361Q643 361 651 363Q725 388 772 449T819 564ZM794 141Q794 123 725 63T612 3Q609 3 612 5Q612 5 615 7Q639 19 678 57T742 131L755 148H772H780Q794 148 794 141ZM588 -3Q590 0 593 0H594L593 -1Q592 -1 590 -2L588 -3'], + + // LATIN CAPITAL LETTER S + 0x53: [708,36,868,29,1016,'346 463Q346 419 406 386T576 352H588L613 384L681 476Q767 594 842 651T973 708Q1016 708 1016 661Q1016 621 987 562T894 449Q802 375 696 338L682 334L665 312Q638 279 605 233T547 158T482 97Q418 46 332 5T158 -36Q87 -36 58 -11T29 48Q29 82 55 120T123 158Q144 158 154 146T164 119Q164 102 143 89T100 75Q92 75 86 76T77 80T72 82Q67 82 67 59Q67 28 98 14T166 0Q232 0 320 55T491 226Q530 279 551 305L558 314Q558 315 543 315Q417 321 353 365T289 460Q289 566 488 632Q578 662 660 665H679Q685 660 685 657T676 642Q670 633 666 629L664 628Q663 628 661 628T655 628Q606 628 546 615T426 568T350 486Q346 475 346 463ZM976 653Q976 671 959 671Q938 671 919 661T883 629T858 593T835 554Q832 548 830 545Q802 495 775 455T734 400T721 382L736 388Q876 449 946 568Q948 572 949 573Q976 622 976 653'], + + // LATIN CAPITAL LETTER T + 0x54: [735,37,747,92,996,'354 350Q264 350 264 426Q264 442 265 448Q279 514 347 582T503 692T662 735Q719 735 774 714T882 672T983 651Q996 651 996 644Q996 639 977 612T954 581Q953 580 938 580Q909 582 884 587L869 591L870 587Q870 583 849 557T796 491T748 422Q729 391 692 313T620 188Q555 105 454 34T253 -37Q214 -37 181 -30T120 -2T92 53Q92 89 119 123T184 158Q205 158 215 146T225 119Q225 102 203 89T161 75Q153 75 145 78T135 81Q130 81 130 62Q130 39 153 24T204 5T267 0Q311 0 358 29T454 117T539 226T629 358T710 476Q726 496 744 516T778 551T807 577T828 595L836 601L785 623Q743 642 713 651T668 661T626 663Q564 663 509 644T418 596T356 535T317 475T305 431Q305 416 312 408Q323 388 369 388Q429 388 465 411T530 480Q557 526 557 565Q557 573 556 579T555 587T555 590Q555 591 568 600T584 611Q588 612 600 603Q622 581 622 549Q622 516 600 475T536 405Q454 350 354 350'], + + // LATIN CAPITAL LETTER U + 0x55: [717,17,800,55,960,'55 377Q55 443 122 523T290 660T478 717Q533 717 575 689T618 594Q618 565 611 538T585 477T552 422T506 355T458 288L357 146Q307 68 307 31Q307 20 318 20Q326 20 331 21Q367 27 411 57T490 128L767 500L861 617H908H939Q953 617 956 616T960 609Q960 605 928 566T816 423T648 198Q587 113 571 86Q540 34 540 21Q540 20 545 20Q580 25 623 55T696 124Q702 132 704 133T722 134H739Q744 130 744 127T735 113Q713 80 655 38T548 -14Q527 -17 524 -17Q475 -17 473 47V63L462 55Q364 -17 302 -17Q235 -17 235 69Q235 88 239 105T248 135T268 171T292 205T328 251T369 304Q376 313 395 338T423 374T450 408T476 445T499 479T519 514T534 546T545 579T548 608Q548 647 522 663T460 680Q355 680 243 591T99 406Q97 399 97 383V377Q97 339 153 339Q169 339 175 340Q215 350 241 373T298 444Q333 496 349 535T367 588T374 603Q402 616 408 616Q416 616 416 608Q416 563 393 492T320 378Q233 302 140 302H132Q75 302 57 353Q55 361 55 377'], + + // LATIN CAPITAL LETTER V + 0x56: [717,17,622,56,850,'540 717Q542 717 545 717Q562 717 562 710Q562 708 557 702T541 678T517 632T485 544T448 407Q447 405 443 388T438 366T433 345T427 321T420 299T411 274T400 250T387 223T372 197Q363 181 364 181L388 203Q476 284 527 354T620 490T718 612Q754 647 790 673T835 700Q839 700 842 691T848 672L850 662Q850 657 842 653Q803 630 768 600T699 527T653 467T610 405Q554 322 518 282T368 138Q307 84 273 51T231 9T218 -5L207 -17H175Q169 -11 169 -9Q169 -4 183 10Q227 56 258 120T302 234T330 350T356 445Q357 450 360 458L362 464Q317 434 276 434Q221 437 221 479Q221 498 240 521T259 552Q259 565 235 565Q209 565 174 546T105 482Q103 480 102 478T99 474T97 472T95 470T93 468T90 467T86 467T81 467H75Q56 467 56 475Q56 482 82 511T156 570T253 601Q289 601 311 590T334 557Q334 543 312 517T289 478Q289 471 297 471Q327 471 378 514Q384 519 390 531T412 571T451 632Q482 675 524 717H540'], + + // LATIN CAPITAL LETTER W + 0x57: [717,17,805,46,1026,'232 504Q232 492 263 492Q304 492 356 515L367 520L379 537Q443 632 515 705L527 717H543H552Q564 717 564 709Q564 705 562 703T554 694T540 677T518 643T488 589T448 504T398 385Q368 309 353 281L349 270L523 472L669 634Q726 695 737 706T757 717H765Q786 717 786 710Q786 704 776 691T738 627T675 497Q630 394 609 354T541 244Q456 120 449 111L447 107L448 108Q630 240 700 327Q734 368 788 463Q821 520 841 550T898 619T980 683Q1010 700 1018 700Q1020 700 1023 697T1026 692Q1026 688 1024 671T1020 652Q1018 650 1007 645T988 635Q940 609 902 565T842 477T781 374T699 272Q653 226 535 133Q423 47 373 -2L358 -17H342Q320 -17 320 -11Q320 -7 328 5T354 46T390 112Q416 161 439 217T488 326T564 453L589 490Q587 490 523 414T352 217T166 14Q138 -16 137 -16Q136 -17 120 -17Q106 -17 103 -16T99 -9Q99 -5 100 -3T106 3T116 14T132 35T154 72T184 129T222 212T270 327Q310 426 337 471L326 467Q278 455 243 455Q209 455 188 462T161 478T155 496Q155 508 176 533T198 576Q198 579 198 581T192 588T178 593Q151 593 100 519Q89 504 86 502T75 499H68Q46 499 46 506Q46 510 63 534T112 587T170 627Q178 629 195 629Q235 629 252 613T270 577Q270 556 251 532T232 504'], + + // LATIN CAPITAL LETTER X + 0x58: [717,17,944,103,1131,'351 351Q308 351 290 373T272 426Q272 487 329 566T478 688Q538 717 584 717Q635 717 681 696T745 620Q752 598 752 564T745 498L741 485Q742 486 769 516T825 573T889 634T962 689T1027 716Q1035 717 1060 717Q1083 716 1096 714T1120 705T1131 686Q1131 668 1109 647T1055 626Q1035 626 1026 638T1016 663Q1016 667 1020 679H1015Q971 671 886 589T728 413L688 360Q688 359 725 359H750Q762 359 766 357T770 348Q769 345 761 335T750 322Q748 321 704 321H660Q651 311 632 282T589 199T565 107Q565 25 653 20Q684 20 720 44T779 95T826 152T850 183L856 184Q861 184 865 184Q888 184 888 173Q883 163 845 117Q770 37 723 10T638 -17Q584 -14 554 17T523 101Q523 147 534 167L532 166Q530 164 526 160T518 153Q378 15 256 -15Q250 -16 226 -16Q161 -16 132 7T103 59Q103 93 129 125T194 158Q232 158 232 121Q233 118 233 113T221 96T188 77Q182 75 168 75T150 78V70Q150 43 178 32T241 20Q340 20 527 286L552 321H524Q489 321 489 330Q489 333 497 344T509 358Q511 359 545 359H579Q580 362 597 389T631 445T661 514T675 586Q675 637 645 658T572 680Q506 680 444 632T348 527T314 434Q314 388 361 388H364H366Q380 388 389 390T416 408T457 454Q487 497 505 536T526 594L529 613Q531 615 545 622T560 630Q568 630 573 613T578 577Q578 518 532 455Q504 413 453 382T351 351'], + + // LATIN CAPITAL LETTER Y + 0x59: [716,17,710,57,959,'155 280Q116 280 87 300T57 368Q57 409 87 466T192 589Q269 653 345 684T472 716Q572 716 613 675Q644 644 644 599Q644 585 643 574T637 550T629 529T616 505T600 481T578 450T554 416Q494 330 493 328L480 306Q466 278 466 256Q466 227 492 227H496Q514 227 534 234Q541 237 544 241T571 279L762 559Q777 579 792 595Q818 620 856 646T919 686T946 700Q951 700 955 692T959 677Q959 673 947 665T911 639T866 595Q816 538 749 408T640 225Q574 138 464 61T248 -17Q190 -17 144 1T98 62Q98 81 109 102T131 135Q156 156 183 158Q226 158 226 121Q226 111 224 107Q215 93 196 84T162 74Q154 74 147 77H144V70Q146 41 185 31T263 20Q363 20 493 175L507 192H504Q500 191 498 191Q484 189 476 189Q430 189 405 219T379 287Q379 294 379 299T382 311T385 322T391 335T398 347T408 363T420 379T434 399T450 422Q455 429 469 449T488 475T504 499T520 523T533 543T544 565T552 583T557 603T559 620Q559 680 467 680Q402 680 333 646T213 563T131 462T98 373Q98 343 119 330T169 317Q187 317 212 333Q242 354 291 423T352 555Q354 562 355 588Q355 612 356 612Q357 614 371 622T387 630Q391 630 397 623T409 597T415 556Q415 507 380 448T294 344Q216 280 155 280'], + + // LATIN CAPITAL LETTER Z + 0x5A: [717,16,821,82,1032,'221 428Q221 487 280 555T425 670T583 717H587Q641 717 665 695T689 646Q689 625 674 600T658 564Q658 550 671 541T695 530T710 528L718 539Q779 613 821 646Q894 707 964 707H970Q1010 707 1025 675Q1032 661 1032 645Q1032 626 1022 607Q1008 579 980 560T897 522Q867 512 836 505T788 496L771 493Q768 493 760 477T736 429T702 370Q700 367 698 363Q696 360 696 359H805Q809 355 809 350Q809 340 791 322Q789 321 728 321H668Q562 179 433 88L419 78L434 73Q505 54 554 54Q609 54 654 82T720 140H752Q758 134 758 132Q758 128 747 113Q711 67 657 32T552 -14Q540 -16 517 -16T480 -15T439 -3T375 27L354 38L338 30Q257 -8 191 -8H184Q154 -8 133 -5T103 1T88 10T83 19T83 29Q83 35 86 44T100 65T127 88T173 105T241 112Q286 112 342 99L360 95L372 105Q434 157 523 270L560 320Q560 321 533 321L507 322Q502 325 502 330Q502 339 521 358Q523 359 556 359H588L669 474L682 491Q676 492 665 494T647 498T632 503T614 510T596 521Q556 547 556 570Q556 585 579 618T603 663Q603 679 568 679Q510 679 452 650T354 581T288 500T262 431Q262 407 280 397T321 387Q331 387 341 390T360 398T376 409T390 423T400 435T409 447L414 454Q457 514 460 562Q460 575 461 576Q461 577 475 586T492 595Q496 595 503 588T514 572Q520 559 520 539Q520 473 452 412T308 351Q269 351 245 370T221 428ZM989 642Q989 667 953 671Q905 671 871 644Q853 632 832 604T799 554T787 531H788Q801 531 842 539T916 561Q989 592 989 642ZM198 29Q230 29 257 36T295 52L306 59Q306 63 259 73Q251 74 209 74Q177 74 158 66T134 48L130 40Q130 29 198 29'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/Main.js new file mode 100644 index 0000000..f996a4e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Script/Regular/Main.js @@ -0,0 +1,60 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Script/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Script'] = { + directory: 'Script/Regular', + family: 'MathJax_Script', + id: 'MJSCR', + skew: { + 0x41: 0.389, + 0x42: 0.194, + 0x43: 0.278, + 0x44: 0.111, + 0x45: 0.139, + 0x46: 0.222, + 0x47: 0.25, + 0x48: 0.333, + 0x49: 0.333, + 0x4A: 0.417, + 0x4B: 0.361, + 0x4C: 0.306, + 0x4D: 0.444, + 0x4E: 0.389, + 0x4F: 0.167, + 0x50: 0.222, + 0x51: 0.278, + 0x52: 0.194, + 0x53: 0.333, + 0x54: 0.222, + 0x55: 0.25, + 0x56: 0.222, + 0x57: 0.25, + 0x58: 0.278, + 0x59: 0.194, + 0x5A: 0.306 + }, + Ranges: [ + [0x0,0x7F,"BasicLatin"] + ] + + +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Script/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js new file mode 100644 index 0000000..a7a4518 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js @@ -0,0 +1,159 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Size1/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Size1'] = { + directory: 'Size1/Regular', + family: 'MathJax_Size1', + id: 'MJSZ1', + + // SPACE + 0x20: [0,0,250,0,0,''], + + // LEFT PARENTHESIS + 0x28: [850,349,458,152,422,'152 251Q152 646 388 850H416Q422 844 422 841Q422 837 403 816T357 753T302 649T255 482T236 250Q236 124 255 19T301 -147T356 -251T403 -315T422 -340Q422 -343 416 -349H388Q359 -325 332 -296T271 -213T212 -97T170 56T152 251'], + + // RIGHT PARENTHESIS + 0x29: [850,349,458,35,305,'305 251Q305 -145 69 -349H56Q43 -349 39 -347T35 -338Q37 -333 60 -307T108 -239T160 -136T204 27T221 250T204 473T160 636T108 740T60 807T35 839Q35 850 50 850H56H69Q197 743 256 566Q305 425 305 251'], + + // SOLIDUS + 0x2F: [850,349,578,55,522,'481 838Q489 850 500 850Q508 850 515 844T522 827Q521 824 311 248T96 -337Q90 -349 77 -349Q68 -349 62 -343T55 -326Q56 -323 266 253T481 838'], + + // LEFT SQUARE BRACKET + 0x5B: [850,349,417,202,394,'202 -349V850H394V810H242V-309H394V-349H202'], + + // REVERSE SOLIDUS + 0x5C: [850,349,578,54,522,'522 -326Q522 -337 515 -343T500 -349Q487 -349 481 -337Q477 -328 267 248T55 827Q54 835 60 842T76 850Q89 850 96 838Q100 829 310 253T522 -326'], + + // RIGHT SQUARE BRACKET + 0x5D: [850,349,417,22,214,'22 810V850H214V-349H22V-309H174V810H22'], + + // LEFT CURLY BRACKET + 0x7B: [851,349,583,105,477,'477 -343L471 -349H458Q432 -349 367 -325T273 -263Q258 -245 250 -212L249 -51Q249 -27 249 12Q248 118 244 128Q243 129 243 130Q220 189 121 228Q109 232 107 235T105 250Q105 256 105 257T105 261T107 265T111 268T118 272T128 276T142 283T162 291Q224 324 243 371Q243 372 244 373Q248 384 249 469Q249 475 249 489Q249 528 249 552L250 714Q253 728 256 736T271 761T299 789T347 816T422 843Q440 849 441 849H443Q445 849 447 849T452 850T457 850H471L477 844V830Q477 820 476 817T470 811T459 807T437 801T404 785Q353 760 338 724Q333 710 333 550Q333 526 333 492T334 447Q334 393 327 368T295 318Q257 280 181 255L169 251L184 245Q318 198 332 112Q333 106 333 -49Q333 -209 338 -223Q351 -255 391 -277T469 -309Q477 -311 477 -329V-343'], + + // RIGHT CURLY BRACKET + 0x7D: [850,349,583,105,477,'110 849L115 850Q120 850 125 850Q151 850 215 826T309 764Q324 747 332 714L333 552Q333 528 333 489Q334 383 338 373Q339 372 339 371Q353 336 391 310T469 271Q477 268 477 251Q477 241 476 237T472 232T456 225T428 214Q357 179 339 130Q339 129 338 128Q334 117 333 32Q333 26 333 12Q333 -27 333 -51L332 -212Q328 -228 323 -240T302 -271T255 -307T175 -338Q139 -349 125 -349T108 -346T105 -329Q105 -314 107 -312T130 -304Q233 -271 248 -209Q249 -203 249 -49V57Q249 106 253 125T273 167Q307 213 398 245L413 251L401 255Q265 300 250 389Q249 395 249 550Q249 710 244 724Q224 774 112 811Q105 813 105 830Q105 845 110 849'], + + // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C6: [744,-551,556,-8,564,'279 669Q273 669 142 610T9 551L0 569Q-8 585 -8 587Q-8 588 -7 588L12 598Q30 608 66 628T136 666L277 744L564 587L555 569Q549 556 547 554T544 552Q539 555 410 612T279 669'], + + // SMALL TILDE + 0x2DC: [722,-597,556,1,554,'374 597Q337 597 269 627T160 658Q101 658 34 606L24 597L12 611Q1 624 1 626Q1 627 27 648T55 671Q120 722 182 722Q219 722 286 692T395 661Q454 661 521 713L531 722L543 708Q554 695 554 693Q554 692 528 671T500 648Q434 597 374 597'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [744,-551,0,-564,8,'-277 669Q-283 669 -414 610T-547 551L-556 569Q-564 585 -564 587Q-564 588 -563 588L-544 598Q-526 608 -490 628T-420 666L-279 744L8 587L-1 569Q-7 556 -9 554T-12 552Q-17 555 -146 612T-277 669'], + + // COMBINING TILDE + 0x303: [722,-597,0,-555,-2,'-182 597Q-219 597 -287 627T-396 658Q-455 658 -522 606L-532 597L-544 611Q-555 624 -555 626Q-555 627 -529 648T-501 671Q-436 722 -374 722Q-337 722 -270 692T-161 661Q-102 661 -35 713L-25 722L-13 708Q-2 695 -2 693Q-2 692 -28 671T-56 648Q-122 597 -182 597'], + + // DOUBLE VERTICAL LINE + 0x2016: [602,0,778,257,521,'257 0V602H300V0H257ZM478 0V602H521V0H478'], + + // UPWARDS ARROW + 0x2191: [600,0,667,112,555,'112 421L120 424Q127 427 136 430T161 441T191 458T224 481T260 510T295 546T328 591L333 600L340 589Q380 527 431 489T555 421V377L543 381Q445 418 368 492L355 504V0H312V504L299 492Q222 418 124 381L112 377V421'], + + // DOWNWARDS ARROW + 0x2193: [600,0,667,112,555,'312 96V600H355V96L368 108Q445 182 543 219L555 223V179L546 176Q538 173 529 169T505 158T475 141T442 119T407 90T372 53T339 9L334 0L327 11Q287 73 236 111T112 179V223L124 219Q222 182 299 108L312 96'], + + // UPWARDS DOUBLE ARROW + 0x21D1: [599,0,778,57,721,'142 329Q300 419 389 599Q389 598 399 579T420 541T452 494T497 438T558 383T636 329T708 294L721 289V246Q718 246 694 256T623 293T532 356L522 364L521 182V0H478V405L466 417Q436 450 389 516Q388 515 378 500T352 463T312 417L300 405V0H257V364L247 356Q202 320 155 293T82 256L57 246V289L70 294Q101 305 142 329'], + + // DOWNWARDS DOUBLE ARROW + 0x21D3: [600,-1,778,57,721,'257 236V600H300V195L312 183Q342 150 389 84Q390 85 400 100T426 137T466 183L478 195V600H521V418L522 236L532 244Q576 280 623 307T696 344L721 354V311L708 306Q677 295 636 271Q478 181 389 1Q389 2 379 21T358 59T326 106T281 162T220 217T142 271T70 306L57 311V354Q60 354 83 345T154 308T247 244L257 236'], + + // N-ARY PRODUCT + 0x220F: [750,250,944,55,888,'158 656Q147 684 131 694Q110 707 69 710H55V750H888V710H874Q840 708 820 698T795 678T786 656V-155Q798 -206 874 -210H888V-250H570V-210H584Q618 -208 638 -197T663 -178T673 -155V710H270V277L271 -155Q283 -206 359 -210H373V-250H55V-210H69Q103 -208 123 -197T148 -178T158 -155V656'], + + // N-ARY COPRODUCT + 0x2210: [750,250,944,55,888,'158 656Q147 684 131 694Q110 707 69 710H55V750H373V710H359Q325 708 305 698T280 678T271 656L270 223V-210H673V656Q666 672 663 679T639 697T584 710H570V750H888V710H874Q840 708 820 698T795 678T786 656V-155Q798 -206 874 -210H888V-250H55V-210H69Q103 -208 123 -197T148 -178T158 -155V656'], + + // N-ARY SUMMATION + 0x2211: [750,250,1056,56,999,'61 748Q64 750 489 750H913L954 640Q965 609 976 579T993 533T999 516H979L959 517Q936 579 886 621T777 682Q724 700 655 705T436 710H319Q183 710 183 709Q186 706 348 484T511 259Q517 250 513 244L490 216Q466 188 420 134T330 27L149 -187Q149 -188 362 -188Q388 -188 436 -188T506 -189Q679 -189 778 -162T936 -43Q946 -27 959 6H999L913 -249L489 -250Q65 -250 62 -248Q56 -246 56 -239Q56 -234 118 -161Q186 -81 245 -11L428 206Q428 207 242 462L57 717L56 728Q56 744 61 748'], + + // SQUARE ROOT + 0x221A: [850,350,1000,111,1020,'263 249Q264 249 315 130T417 -108T470 -228L725 302Q981 837 982 839Q989 850 1001 850Q1008 850 1013 844T1020 832V826L741 243Q645 43 540 -176Q479 -303 469 -324T453 -348Q449 -350 436 -350L424 -349L315 -96Q206 156 205 156L171 130Q138 104 137 104L111 130L263 249'], + + // DIVIDES + 0x2223: [627,15,333,144,188,'146 612Q151 627 166 627Q182 627 187 612Q188 610 188 306T187 0Q184 -15 166 -15Q149 -15 146 0V10Q146 19 146 35T146 73T146 122T145 179T145 241T145 306T145 370T145 433T145 489T146 538T146 576T146 602V612'], + + // PARALLEL TO + 0x2225: [627,15,556,144,410,'146 612Q151 627 166 627Q182 627 187 612Q188 610 188 306T187 0Q184 -15 166 -15Q149 -15 146 0V10Q146 19 146 35T146 73T146 122T145 179T145 241T145 306T145 370T145 433T145 489T146 538T146 576T146 602V612ZM368 612Q373 627 388 627Q404 627 409 612Q410 610 410 306T409 0Q406 -15 389 -15Q371 -15 368 0V10Q368 19 368 35T368 73T368 122T367 179T367 241T367 306T367 370T367 433T367 489T368 538T368 576T368 602V612'], + + // INTEGRAL + 0x222B: [805,306,472,55,610,'113 -244Q113 -246 119 -251T139 -263T167 -269Q186 -269 199 -260Q220 -247 232 -218T251 -133T262 -15T276 155T297 367Q300 390 305 438T314 512T325 580T340 647T361 703T390 751T428 784T479 804Q481 804 488 804T501 805Q552 802 581 769T610 695Q610 669 594 657T561 645Q542 645 527 658T512 694Q512 705 516 714T526 729T538 737T548 742L552 743Q552 745 545 751T525 762T498 768Q475 768 460 756T434 716T418 652T407 559T398 444T387 300T369 133Q349 -38 337 -102T303 -207Q256 -306 169 -306Q119 -306 87 -272T55 -196Q55 -170 71 -158T104 -146Q123 -146 138 -159T153 -195Q153 -206 149 -215T139 -230T127 -238T117 -242L113 -244'], + + // DOUBLE INTEGRAL + 0x222C: [805,306,819,55,957,'113 -244Q113 -246 119 -251T139 -263T167 -269Q186 -269 199 -260Q220 -247 232 -218T251 -133T262 -15T276 155T297 367Q300 390 305 438T314 512T325 580T340 647T361 703T390 751T428 784T479 804Q481 804 488 804T501 805Q552 802 581 769T610 695Q610 669 594 657T561 645Q542 645 527 658T512 694Q512 705 516 714T526 729T538 737T548 742L552 743Q552 745 545 751T525 762T498 768Q475 768 460 756T434 716T418 652T407 559T398 444T387 300T369 133Q349 -38 337 -102T303 -207Q256 -306 169 -306Q119 -306 87 -272T55 -196Q55 -170 71 -158T104 -146Q123 -146 138 -159T153 -195Q153 -206 149 -215T139 -230T127 -238T117 -242L113 -244ZM460 -244Q460 -246 466 -251T486 -263T514 -269Q532 -269 546 -260Q567 -247 579 -218T598 -133T609 -15T623 155T644 367Q647 390 652 438T661 512T672 580T687 647T708 703T737 751T775 784T826 804Q828 804 835 804T848 805Q899 802 928 769T957 695Q957 669 941 657T908 645Q889 645 874 658T859 694Q859 705 863 714T873 729T885 737T895 742L899 743Q899 745 892 751T872 762T845 768Q822 768 807 756T781 716T765 652T754 559T745 444T734 300T716 133Q696 -38 684 -102T650 -207Q603 -306 516 -306Q466 -306 434 -272T402 -196Q402 -170 418 -158T451 -146Q470 -146 485 -159T500 -195Q500 -206 496 -215T486 -230T474 -238T464 -242L460 -244'], + + // TRIPLE INTEGRAL + 0x222D: [805,306,1166,55,1304,'113 -244Q113 -246 119 -251T139 -263T167 -269Q186 -269 199 -260Q220 -247 232 -218T251 -133T262 -15T276 155T297 367Q300 390 305 438T314 512T325 580T340 647T361 703T390 751T428 784T479 804Q481 804 488 804T501 805Q552 802 581 769T610 695Q610 669 594 657T561 645Q542 645 527 658T512 694Q512 705 516 714T526 729T538 737T548 742L552 743Q552 745 545 751T525 762T498 768Q475 768 460 756T434 716T418 652T407 559T398 444T387 300T369 133Q349 -38 337 -102T303 -207Q256 -306 169 -306Q119 -306 87 -272T55 -196Q55 -170 71 -158T104 -146Q123 -146 138 -159T153 -195Q153 -206 149 -215T139 -230T127 -238T117 -242L113 -244ZM460 -244Q460 -246 466 -251T486 -263T514 -269Q532 -269 546 -260Q567 -247 579 -218T598 -133T609 -15T623 155T644 367Q647 390 652 438T661 512T672 580T687 647T708 703T737 751T775 784T826 804Q828 804 835 804T848 805Q899 802 928 769T957 695Q957 669 941 657T908 645Q889 645 874 658T859 694Q859 705 863 714T873 729T885 737T895 742L899 743Q899 745 892 751T872 762T845 768Q822 768 807 756T781 716T765 652T754 559T745 444T734 300T716 133Q696 -38 684 -102T650 -207Q603 -306 516 -306Q466 -306 434 -272T402 -196Q402 -170 418 -158T451 -146Q470 -146 485 -159T500 -195Q500 -206 496 -215T486 -230T474 -238T464 -242L460 -244ZM807 -244Q807 -246 813 -251T833 -263T861 -269Q880 -269 893 -260Q914 -247 926 -218T945 -133T956 -15T970 155T991 367Q994 390 999 438T1008 512T1019 580T1034 647T1055 703T1084 751T1122 784T1173 804Q1175 804 1182 804T1195 805Q1246 802 1275 769T1304 695Q1304 669 1288 657T1255 645Q1236 645 1221 658T1206 694Q1206 705 1210 714T1220 729T1232 737T1242 742L1246 743Q1246 745 1239 751T1219 762T1192 768Q1169 768 1154 756T1128 716T1112 652T1101 559T1092 444T1081 300T1063 133Q1043 -38 1031 -102T997 -207Q950 -306 863 -306Q813 -306 781 -272T749 -196Q749 -170 765 -158T798 -146Q817 -146 832 -159T847 -195Q847 -206 843 -215T833 -230T821 -238T811 -242L807 -244'], + + // CONTOUR INTEGRAL + 0x222E: [805,306,472,55,610,'269 74L256 80Q244 85 227 97T191 128T161 179T148 250Q148 332 199 379T302 433L306 434L307 444Q309 456 313 495T321 553T331 607T345 664T365 712T393 756T431 785T479 804Q481 804 488 804T501 805Q552 802 581 769T610 695Q610 669 594 657T561 645Q542 645 527 658T512 694Q512 705 516 714T526 729T538 737T548 742L552 743Q552 745 545 751T525 762T498 768Q471 768 454 752T427 693T414 626T406 536Q405 530 405 527L397 425L404 422Q410 419 421 413T445 399T470 376T494 345T511 303T518 250Q518 205 502 169T460 112T410 80T364 66L360 65L359 55Q357 38 353 4T346 -43T340 -81T333 -118T326 -148T316 -179T303 -207Q256 -306 169 -306Q119 -306 87 -272T55 -196Q55 -170 71 -158T104 -146Q123 -146 138 -159T153 -195Q153 -206 149 -215T139 -230T127 -238T117 -242L113 -244Q113 -246 119 -251T139 -263T167 -269Q186 -269 199 -260Q231 -241 242 -183T266 33L269 74ZM272 122Q272 156 300 391Q300 392 299 392Q287 392 263 379T213 331T187 249Q187 211 205 180T239 137T272 116V122ZM366 107Q378 107 402 119T453 167T479 249Q479 340 394 383V377Q394 375 394 374T393 371T393 366T392 357T391 342T389 321T386 291T382 251T377 199T369 133Q366 112 366 107'], + + // N-ARY LOGICAL AND + 0x22C0: [750,249,833,55,777,'119 -249T97 -249T65 -235T55 -207Q55 -201 56 -198Q58 -190 218 268T380 729Q392 750 416 750Q438 750 451 732Q453 728 534 498T695 36L775 -194Q777 -204 777 -208Q777 -222 767 -235T735 -249Q713 -249 700 -231Q696 -225 557 177L416 579L276 177Q136 -226 132 -231Q119 -249 97 -249'], + + // N-ARY LOGICAL OR + 0x22C1: [750,249,833,55,777,'55 708Q55 729 68 739T96 750Q119 750 132 731Q136 726 276 323L416 -79L557 323Q696 725 700 731Q713 749 735 749Q756 749 766 736T777 708Q777 700 696 466T533 1T451 -232Q436 -249 416 -249Q402 -249 391 -241Q384 -236 380 -226Q368 -198 219 230Q55 697 55 708'], + + // N-ARY INTERSECTION + 0x22C2: [750,249,833,54,777,'139 -217Q127 -241 114 -246Q106 -249 97 -249Q67 -249 57 -220Q55 -214 55 102Q55 152 55 221T54 312Q54 422 60 464T91 554Q120 612 165 654T257 714T337 741T392 749Q393 750 402 750Q414 750 422 749Q557 749 660 659T776 430Q777 422 777 102Q777 -214 775 -220Q765 -249 735 -249Q716 -249 708 -241T694 -217L692 428L690 441Q674 540 597 603T416 666H409Q388 666 364 662T294 638T212 581Q156 523 142 441L140 428L139 105V-217'], + + // N-ARY UNION + 0x22C3: [750,249,833,55,777,'96 750Q103 750 109 748T120 744T127 737T133 730T137 723T139 718V395L140 73L142 60Q159 -43 237 -104T416 -166Q521 -166 597 -103T690 60L692 73L694 718Q708 749 735 749Q765 749 775 720Q777 714 777 398Q777 78 776 71Q766 -51 680 -140Q571 -249 416 -249H411Q261 -249 152 -140Q66 -51 56 71Q55 78 55 398Q55 714 57 720Q60 734 70 740Q80 750 96 750'], + + // LEFT CEILING + 0x2308: [850,349,472,202,449,'202 -349V850H449V810H242V-349H202'], + + // RIGHT CEILING + 0x2309: [850,349,472,22,269,'22 810V850H269V-349H229V810H22'], + + // LEFT FLOOR + 0x230A: [850,349,472,202,449,'202 -349V850H242V-309H449V-349H202'], + + // RIGHT FLOOR + 0x230B: [850,349,472,22,269,'229 -309V850H269V-349H22V-309H229'], + + // VERTICAL LINE EXTENSION (used to extend arrows) + 0x23D0: [602,0,667,312,355,'312 0V602H355V0H312'], + + // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E8: [850,350,472,96,394,'373 850Q392 850 394 832Q394 825 267 538L139 250L267 -38Q394 -325 394 -332Q392 -350 375 -350Q361 -350 356 -338Q354 -331 289 -186T161 103T97 250T160 397T289 685T356 838Q362 850 373 850'], + + // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27E9: [850,350,472,77,375,'77 832Q77 837 82 843T98 850Q110 849 115 838Q117 831 182 686T310 397T374 250T311 103T182 -185T115 -338Q110 -350 96 -350Q79 -350 77 -332Q77 -325 204 -38L332 250L204 538Q77 825 77 832'], + + // N-ARY CIRCLED DOT OPERATOR + 0x2A00: [750,250,1111,56,1054,'555 -250Q420 -250 306 -185T124 -4T56 250Q56 453 193 595T526 749Q528 750 539 750Q554 750 562 749Q688 749 800 687T983 508T1054 250Q1054 112 987 -3T806 -184T555 -250ZM555 -165Q672 -165 767 -108T916 44T970 250Q970 418 861 532T600 664Q591 665 548 665Q446 665 353 614T200 466T140 250V243Q140 88 248 -30Q262 -46 280 -62T338 -105T434 -148T555 -165ZM478 250Q478 288 503 307T551 326Q586 326 609 305T632 250Q632 217 610 196T555 174T500 196T478 250'], + + // N-ARY CIRCLED PLUS OPERATOR + 0x2A01: [750,250,1111,56,1054,'555 -250Q420 -250 306 -185T124 -4T56 250Q56 453 193 595T526 749Q528 750 539 750Q554 750 562 749Q688 749 800 687T983 508T1054 250Q1054 112 987 -3T806 -184T555 -250ZM513 478Q513 664 512 664Q504 664 481 660T406 637T313 588Q281 564 255 537T211 483T181 431T161 382T150 342T144 310T141 292H513V478ZM798 588Q758 616 711 634T639 658T602 663L597 664V292H969Q969 293 967 309T960 341T949 381T930 430T900 482T856 537T798 588ZM513 -164V208H141Q142 205 144 189T149 160T158 125T173 83T196 39T229 -9Q249 -34 273 -55T318 -92T363 -119T405 -138T444 -150T475 -158T499 -162T513 -164ZM775 -103Q801 -87 823 -68T863 -30T894 10T919 49T937 88T950 123T959 154T964 180T968 198L969 208H597V-164Q599 -163 616 -161T647 -155T683 -145T728 -128T775 -103'], + + // N-ARY CIRCLED TIMES OPERATOR + 0x2A02: [750,250,1111,56,1054,'555 -250Q420 -250 306 -185T124 -4T56 250Q56 453 193 595T526 749Q528 750 539 750Q554 750 562 749Q688 749 800 687T983 508T1054 250Q1054 112 987 -3T806 -184T555 -250ZM600 664Q591 665 548 665Q414 665 306 583L292 573L423 441L555 310L687 441L818 573L804 583Q714 650 600 664ZM364 118L495 250L364 382L232 513L223 500Q140 391 140 250Q140 107 223 0L232 -13L364 118ZM970 250Q970 389 887 501L878 512Q878 513 861 496T812 447T746 381L615 250L746 118L878 -13L887 0Q970 109 970 250ZM687 59L555 190L423 59L292 -73L306 -83Q416 -166 555 -166T804 -83L818 -73L687 59'], + + // N-ARY UNION OPERATOR WITH PLUS + 0x2A04: [750,249,833,55,777,'96 750Q103 750 109 748T120 744T127 737T133 730T137 723T139 718V395L140 73L142 60Q159 -43 237 -104T416 -166Q521 -166 597 -103T690 60L692 73L694 718Q708 749 735 749Q765 749 775 720Q777 714 777 398Q777 78 776 71Q766 -51 680 -140Q571 -249 416 -249H411Q261 -249 152 -140Q66 -51 56 71Q55 78 55 398Q55 714 57 720Q60 734 70 740Q80 750 96 750ZM223 276Q223 282 224 287T227 296T232 302T238 308T243 313T250 316L254 319H374V376V406Q374 438 382 454T418 470Q443 467 450 453T458 410V376V319H579Q580 319 583 317T589 313T594 308T600 302T604 295T608 287T609 276Q609 253 587 241Q577 235 513 235H458V178Q458 176 458 166T459 148Q459 84 415 84Q401 84 390 93T375 117Q374 120 374 178V235H319Q317 235 307 235T290 234Q223 234 223 276'], + + // N-ARY SQUARE UNION OPERATOR + 0x2A06: [750,249,833,55,777,'777 -217Q766 -244 745 -249H88Q64 -242 57 -220Q55 -214 55 250T57 720Q60 734 70 740Q80 750 96 750Q127 750 137 720Q139 714 139 274V-166H693V274Q693 714 695 720Q705 749 735 749Q766 749 775 719Q777 713 777 248V-217'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size1/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js new file mode 100644 index 0000000..63f8d7e --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js @@ -0,0 +1,135 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Size2/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Size2'] = { + directory: 'Size2/Regular', + family: 'MathJax_Size2', + id: 'MJSZ2', + + // SPACE + 0x20: [0,0,250,0,0,''], + + // LEFT PARENTHESIS + 0x28: [1150,649,597,180,561,'180 96T180 250T205 541T266 770T353 944T444 1069T527 1150H555Q561 1144 561 1141Q561 1137 545 1120T504 1072T447 995T386 878T330 721T288 513T272 251Q272 133 280 56Q293 -87 326 -209T399 -405T475 -531T536 -609T561 -640Q561 -643 555 -649H527Q483 -612 443 -568T353 -443T266 -270T205 -41'], + + // RIGHT PARENTHESIS + 0x29: [1150,649,597,35,417,'35 1138Q35 1150 51 1150H56H69Q113 1113 153 1069T243 944T330 771T391 541T416 250T391 -40T330 -270T243 -443T152 -568T69 -649H56Q43 -649 39 -647T35 -637Q65 -607 110 -548Q283 -316 316 56Q324 133 324 251Q324 368 316 445Q278 877 48 1123Q36 1137 35 1138'], + + // SOLIDUS + 0x2F: [1150,649,811,56,754,'78 -649Q56 -646 56 -625Q56 -614 382 261T712 1140Q716 1150 732 1150Q754 1147 754 1126Q754 1116 428 240T98 -639Q94 -649 78 -649'], + + // LEFT SQUARE BRACKET + 0x5B: [1150,649,472,224,455,'224 -649V1150H455V1099H275V-598H455V-649H224'], + + // REVERSE SOLIDUS + 0x5C: [1150,649,811,54,754,'754 -625Q754 -649 731 -649Q715 -649 712 -639Q709 -635 383 242T55 1124Q54 1135 61 1142T80 1150Q92 1150 98 1140Q101 1137 427 262T754 -625'], + + // RIGHT SQUARE BRACKET + 0x5D: [1150,649,472,16,247,'16 1099V1150H247V-649H16V-598H196V1099H16'], + + // LEFT CURLY BRACKET + 0x7B: [1150,649,667,119,547,'547 -643L541 -649H528Q515 -649 503 -645Q324 -582 293 -466Q289 -449 289 -428T287 -200L286 42L284 53Q274 98 248 135T196 190T146 222L121 235Q119 239 119 250Q119 262 121 266T133 273Q262 336 284 449L286 460L287 701Q287 737 287 794Q288 949 292 963Q293 966 293 967Q325 1080 508 1148Q516 1150 527 1150H541L547 1144V1130Q547 1117 546 1115T536 1109Q480 1086 437 1046T381 950L379 940L378 699Q378 657 378 594Q377 452 374 438Q373 437 373 436Q350 348 243 282Q192 257 186 254L176 251L188 245Q211 236 234 223T287 189T340 135T373 65Q373 64 374 63Q377 49 378 -93Q378 -156 378 -198L379 -438L381 -449Q393 -504 436 -544T536 -608Q544 -611 545 -613T547 -629V-643'], + + // RIGHT CURLY BRACKET + 0x7D: [1150,649,667,119,547,'119 1130Q119 1144 121 1147T135 1150H139Q151 1150 182 1138T252 1105T326 1046T373 964Q378 942 378 702Q378 469 379 462Q386 394 439 339Q482 296 535 272Q544 268 545 266T547 251Q547 241 547 238T542 231T531 227T510 217T477 194Q390 129 379 39Q378 32 378 -201Q378 -441 373 -463Q342 -580 165 -644Q152 -649 139 -649Q125 -649 122 -646T119 -629Q119 -622 119 -619T121 -614T124 -610T132 -607T143 -602Q195 -579 235 -539T285 -447Q286 -435 287 -199T289 51Q294 74 300 91T329 138T390 197Q412 213 436 226T475 244L489 250L472 258Q455 265 430 279T377 313T327 366T293 434Q289 451 289 472T287 699Q286 941 285 948Q279 978 262 1005T227 1048T184 1080T151 1100T129 1109L127 1110Q119 1113 119 1130'], + + // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C6: [772,-565,1000,-5,1004,'1004 603Q1004 600 999 583T991 565L960 574Q929 582 866 599T745 631L500 698Q497 698 254 631Q197 616 134 599T39 574L8 565Q5 565 0 582T-5 603L26 614Q58 624 124 646T248 687L499 772Q999 604 1004 603'], + + // SMALL TILDE + 0x2DC: [750,-611,1000,0,999,'296 691Q258 691 216 683T140 663T79 639T34 619T16 611Q13 619 8 628L0 644L36 662Q206 749 321 749Q410 749 517 710T703 670Q741 670 783 678T859 698T920 722T965 742T983 750Q986 742 991 733L999 717L963 699Q787 611 664 611Q594 611 484 651T296 691'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [772,-565,0,-1005,4,'4 603Q4 600 -1 583T-9 565L-40 574Q-71 582 -134 599T-255 631L-500 698Q-503 698 -746 631Q-803 616 -866 599T-961 574L-992 565Q-995 565 -1000 582T-1005 603L-974 614Q-942 624 -876 646T-752 687L-501 772Q-1 604 4 603'], + + // COMBINING TILDE + 0x303: [750,-611,0,-1000,-1,'-704 691Q-742 691 -784 683T-860 663T-921 639T-966 619T-984 611Q-987 619 -992 628L-1000 644L-964 662Q-794 749 -679 749Q-590 749 -483 710T-297 670Q-259 670 -217 678T-141 698T-80 722T-35 742T-17 750Q-14 742 -9 733L-1 717L-37 699Q-213 611 -336 611Q-405 611 -515 651T-704 691'], + + // N-ARY PRODUCT + 0x220F: [950,450,1278,56,1221,'220 812Q220 813 218 819T214 829T208 840T199 853T185 866T166 878T140 887T107 893T66 896H56V950H1221V896H1211Q1080 896 1058 812V-311Q1076 -396 1211 -396H1221V-450H725V-396H735Q864 -396 888 -314Q889 -312 889 -311V896H388V292L389 -311Q405 -396 542 -396H552V-450H56V-396H66Q195 -396 219 -314Q220 -312 220 -311V812'], + + // N-ARY COPRODUCT + 0x2210: [950,450,1278,56,1221,'220 812Q220 813 218 819T214 829T208 840T199 853T185 866T166 878T140 887T107 893T66 896H56V950H552V896H542Q411 896 389 812L388 208V-396H889V812Q889 813 887 819T883 829T877 840T868 853T854 866T835 878T809 887T776 893T735 896H725V950H1221V896H1211Q1080 896 1058 812V-311Q1076 -396 1211 -396H1221V-450H56V-396H66Q195 -396 219 -314Q220 -312 220 -311V812'], + + // N-ARY SUMMATION + 0x2211: [950,450,1444,55,1388,'60 948Q63 950 665 950H1267L1325 815Q1384 677 1388 669H1348L1341 683Q1320 724 1285 761Q1235 809 1174 838T1033 881T882 898T699 902H574H543H251L259 891Q722 258 724 252Q725 250 724 246Q721 243 460 -56L196 -356Q196 -357 407 -357Q459 -357 548 -357T676 -358Q812 -358 896 -353T1063 -332T1204 -283T1307 -196Q1328 -170 1348 -124H1388Q1388 -125 1381 -145T1356 -210T1325 -294L1267 -449L666 -450Q64 -450 61 -448Q55 -446 55 -439Q55 -437 57 -433L590 177Q590 178 557 222T452 366T322 544L56 909L55 924Q55 945 60 948'], + + // SQUARE ROOT + 0x221A: [1150,650,1000,111,1020,'1001 1150Q1017 1150 1020 1132Q1020 1127 741 244L460 -643Q453 -650 436 -650H424Q423 -647 423 -645T421 -640T419 -631T415 -617T408 -594T399 -560T385 -512T367 -448T343 -364T312 -259L203 119L138 41L111 67L212 188L264 248L472 -474L983 1140Q988 1150 1001 1150'], + + // INTEGRAL + 0x222B: [1361,862,556,55,944,'114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798'], + + // DOUBLE INTEGRAL + 0x222C: [1361,862,1084,55,1472,'114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798ZM642 -798Q660 -824 693 -824H695Q723 -824 751 -764T803 -600T848 -391T890 -164Q893 -143 895 -133Q967 292 1051 655T1173 1127Q1179 1145 1183 1157T1200 1201T1227 1257T1261 1306T1305 1346T1356 1360Q1412 1360 1440 1325T1472 1245Q1472 1220 1460 1205T1437 1186T1415 1183Q1394 1183 1377 1198T1360 1239Q1360 1287 1413 1296L1410 1300Q1407 1303 1402 1307T1394 1313Q1379 1323 1361 1323Q1347 1323 1335 1311T1303 1255T1264 1139T1217 936T1161 628Q1102 293 1038 -5T938 -437T883 -629Q806 -862 693 -862Q653 -862 620 -831T583 -746Q583 -711 602 -698T640 -685Q661 -685 678 -700T695 -741Q695 -789 642 -798'], + + // TRIPLE INTEGRAL + 0x222D: [1361,862,1592,55,1980,'114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q439 292 523 655T645 1127Q651 1145 655 1157T672 1201T699 1257T733 1306T777 1346T828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q819 1323 807 1311T775 1255T736 1139T689 936T633 628Q574 293 510 -5T410 -437T355 -629Q278 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798ZM642 -798Q660 -824 693 -824H695Q723 -824 751 -764T803 -600T848 -391T890 -164Q893 -143 895 -133Q967 292 1051 655T1173 1127Q1179 1145 1183 1157T1200 1201T1227 1257T1261 1306T1305 1346T1356 1360Q1412 1360 1440 1325T1472 1245Q1472 1220 1460 1205T1437 1186T1415 1183Q1394 1183 1377 1198T1360 1239Q1360 1287 1413 1296L1410 1300Q1407 1303 1402 1307T1394 1313Q1379 1323 1361 1323Q1347 1323 1335 1311T1303 1255T1264 1139T1217 936T1161 628Q1102 293 1038 -5T938 -437T883 -629Q806 -862 693 -862Q653 -862 620 -831T583 -746Q583 -711 602 -698T640 -685Q661 -685 678 -700T695 -741Q695 -789 642 -798ZM1150 -798Q1168 -824 1201 -824H1203Q1231 -824 1259 -764T1311 -600T1356 -391T1398 -164Q1401 -143 1403 -133Q1475 292 1559 655T1681 1127Q1687 1145 1691 1157T1708 1201T1735 1257T1769 1306T1813 1346T1864 1360Q1920 1360 1948 1325T1980 1245Q1980 1220 1968 1205T1945 1186T1923 1183Q1902 1183 1885 1198T1868 1239Q1868 1287 1921 1296L1918 1300Q1915 1303 1910 1307T1902 1313Q1887 1323 1869 1323Q1855 1323 1843 1311T1811 1255T1772 1139T1725 936T1669 628Q1610 293 1546 -5T1446 -437T1391 -629Q1314 -862 1201 -862Q1161 -862 1128 -831T1091 -746Q1091 -711 1110 -698T1148 -685Q1169 -685 1186 -700T1203 -741Q1203 -789 1150 -798'], + + // CONTOUR INTEGRAL + 0x222E: [1360,862,556,55,944,'114 -798Q132 -824 165 -824H167Q195 -824 223 -764T275 -600T320 -391T362 -164Q365 -143 367 -133Q382 -52 390 2Q314 40 276 99Q230 167 230 249Q230 363 305 436T484 519H494L503 563Q587 939 632 1087T727 1298Q774 1360 828 1360Q884 1360 912 1325T944 1245Q944 1220 932 1205T909 1186T887 1183Q866 1183 849 1198T832 1239Q832 1287 885 1296L882 1300Q879 1303 874 1307T866 1313Q851 1323 833 1323Q766 1323 688 929Q662 811 610 496Q770 416 770 249Q770 147 701 68T516 -21H506L497 -65Q407 -464 357 -623T237 -837Q203 -862 165 -862Q125 -862 92 -831T55 -746Q55 -711 74 -698T112 -685Q133 -685 150 -700T167 -741Q167 -789 114 -798ZM480 478Q460 478 435 470T380 444T327 401T287 335T271 249Q271 124 375 56L397 43L431 223L485 478H480ZM519 20Q545 20 578 33T647 72T706 144T730 249Q730 383 603 455Q603 454 597 421T582 343T569 276Q516 22 515 20H519'], + + // N-ARY LOGICAL AND + 0x22C0: [950,450,1111,55,1055,'1055 -401Q1055 -419 1042 -434T1007 -450Q977 -450 963 -423Q959 -417 757 167L555 750L353 167Q151 -417 147 -423Q134 -450 104 -450Q84 -450 70 -436T55 -401Q55 -394 56 -390Q59 -381 284 270T512 925Q525 950 555 950Q583 950 597 926Q599 923 825 270T1054 -391Q1055 -394 1055 -401'], + + // N-ARY LOGICAL OR + 0x22C1: [950,450,1111,55,1055,'55 900Q55 919 69 934T103 950Q134 950 147 924Q152 913 353 333L555 -250L757 333Q958 913 963 924Q978 950 1007 950Q1028 950 1041 935T1055 901Q1055 894 1054 891Q1052 884 826 231T597 -426Q583 -450 556 -450Q527 -450 512 -424Q510 -421 285 229T56 890Q55 893 55 900'], + + // N-ARY INTERSECTION + 0x22C2: [949,451,1111,55,1055,'57 516Q68 602 104 675T190 797T301 882T423 933T542 949Q594 949 606 948Q780 928 901 815T1048 545Q1053 516 1053 475T1055 49Q1055 -406 1054 -410Q1051 -427 1037 -438T1006 -450T976 -439T958 -411Q957 -407 957 37Q957 484 956 494Q945 643 831 747T554 852Q481 852 411 826Q301 786 232 696T154 494Q153 484 153 37Q153 -407 152 -411Q148 -428 135 -439T104 -450T73 -439T56 -410Q55 -406 55 49Q56 505 57 516'], + + // N-ARY UNION + 0x22C3: [950,449,1111,55,1055,'56 911Q58 926 71 938T103 950Q120 950 134 939T152 911Q153 907 153 463Q153 16 154 6Q165 -143 279 -247T556 -352Q716 -352 830 -248T956 6Q957 16 957 463Q957 907 958 911Q962 928 975 939T1006 950T1037 939T1054 911Q1055 906 1055 451Q1054 -5 1053 -16Q1029 -207 889 -328T555 -449Q363 -449 226 -331T62 -45Q57 -16 57 25T55 451Q55 906 56 911'], + + // LEFT CEILING + 0x2308: [1150,649,528,224,511,'224 -649V1150H511V1099H275V-649H224'], + + // RIGHT CEILING + 0x2309: [1150,649,528,16,303,'16 1099V1150H303V-649H252V1099H16'], + + // LEFT FLOOR + 0x230A: [1150,649,528,224,511,'224 -649V1150H275V-598H511V-649H224'], + + // RIGHT FLOOR + 0x230B: [1150,649,528,16,303,'252 -598V1150H303V-649H16V-598H252'], + + // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E8: [1150,649,611,112,524,'112 244V258L473 1130Q482 1150 498 1150Q511 1150 517 1142T523 1125V1118L344 685Q304 587 257 473T187 305L165 251L344 -184L523 -616V-623Q524 -634 517 -641T499 -649Q484 -649 473 -629L112 244'], + + // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27E9: [1150,649,611,85,498,'112 -649Q103 -649 95 -642T87 -623V-616L266 -184L445 251Q445 252 356 466T178 898T86 1123Q85 1134 93 1142T110 1150Q126 1150 133 1137Q134 1136 317 695L498 258V244L317 -194Q134 -635 133 -636Q126 -649 112 -649'], + + // N-ARY CIRCLED DOT OPERATOR + 0x2A00: [949,449,1511,56,1454,'668 944Q697 949 744 949Q803 949 814 948Q916 937 1006 902T1154 826T1262 730T1336 638T1380 563Q1454 415 1454 250Q1454 113 1402 -14T1258 -238T1036 -391T755 -449Q608 -449 477 -392T255 -240T110 -16T56 250Q56 387 105 510T239 723T434 871T668 944ZM755 -352Q922 -352 1061 -269T1278 -48T1356 250Q1356 479 1202 652T809 850Q798 851 747 851Q634 851 527 806T337 682T204 491T154 251Q154 128 201 17T329 -176T521 -304T755 -352ZM665 250Q665 290 692 315T758 341Q792 339 818 315T845 250Q845 211 819 186T755 160Q716 160 691 186T665 250'], + + // N-ARY CIRCLED PLUS OPERATOR + 0x2A01: [949,449,1511,56,1454,'668 944Q697 949 744 949Q803 949 814 948Q916 937 1006 902T1154 826T1262 730T1336 638T1380 563Q1454 415 1454 250Q1454 113 1402 -14T1258 -238T1036 -391T755 -449Q608 -449 477 -392T255 -240T110 -16T56 250Q56 387 105 510T239 723T434 871T668 944ZM706 299V850H704Q519 832 386 725T198 476Q181 433 169 379T156 300Q156 299 431 299H706ZM1116 732Q1054 778 982 807T871 842T810 849L804 850V299H1079Q1354 299 1354 300Q1354 311 1352 329T1336 402T1299 506T1228 620T1116 732ZM706 -350V201H431Q156 201 156 200Q156 189 158 171T174 98T211 -6T282 -120T395 -232Q428 -257 464 -277T527 -308T587 -328T636 -339T678 -346T706 -350ZM1354 200Q1354 201 1079 201H804V-350Q808 -349 838 -345T887 -338T940 -323T1010 -295Q1038 -282 1067 -265T1144 -208T1229 -121T1301 0T1349 158Q1354 188 1354 200'], + + // N-ARY CIRCLED TIMES OPERATOR + 0x2A02: [949,449,1511,56,1454,'668 944Q697 949 744 949Q803 949 814 948Q916 937 1006 902T1154 826T1262 730T1336 638T1380 563Q1454 415 1454 250Q1454 113 1402 -14T1258 -238T1036 -391T755 -449Q608 -449 477 -392T255 -240T110 -16T56 250Q56 387 105 510T239 723T434 871T668 944ZM1143 709Q1138 714 1129 722T1086 752T1017 791T925 826T809 850Q798 851 747 851H728Q659 851 571 823T408 741Q367 713 367 709L755 320L1143 709ZM297 639Q296 639 282 622T247 570T205 491T169 382T154 250T168 118T204 9T247 -70T282 -122L297 -139L685 250L297 639ZM1213 -139Q1214 -139 1228 -122T1263 -70T1305 9T1341 118T1356 250T1342 382T1306 491T1263 570T1228 622L1213 639L825 250L1213 -139ZM367 -209Q373 -215 384 -224T434 -258T514 -302T622 -336T755 -352T887 -338T996 -302T1075 -259T1126 -224L1143 -209L755 180Q754 180 561 -14T367 -209'], + + // N-ARY UNION OPERATOR WITH PLUS + 0x2A04: [950,449,1111,55,1055,'56 911Q58 926 71 938T103 950Q120 950 134 939T152 911Q153 907 153 463Q153 16 154 6Q165 -143 279 -247T556 -352Q716 -352 830 -248T956 6Q957 16 957 463Q957 907 958 911Q962 928 975 939T1006 950T1037 939T1054 911Q1055 906 1055 451Q1054 -5 1053 -16Q1029 -207 889 -328T555 -449Q363 -449 226 -331T62 -45Q57 -16 57 25T55 451Q55 906 56 911ZM507 554Q511 570 523 581T554 593Q571 593 585 582T603 554Q604 551 604 443V338H709Q817 338 820 337Q835 334 847 321T859 290Q859 254 819 241Q816 240 709 240H604V134Q604 48 604 34T598 11Q583 -15 555 -15Q526 -15 512 11Q507 20 507 34T506 134V240H401H344Q292 240 278 246Q251 259 251 290Q251 309 264 321T290 337Q293 338 401 338H506V443Q506 551 507 554'], + + // N-ARY SQUARE UNION OPERATOR + 0x2A06: [950,450,1111,54,1056,'56 911Q60 927 72 938T103 950Q120 950 134 939T152 911Q153 907 153 277V-352H957V277Q957 907 958 911Q962 928 975 939T1006 950T1036 939T1054 911V891Q1054 871 1054 836T1054 754T1054 647T1055 525T1055 390T1055 250T1055 111T1055 -24T1055 -147T1054 -253T1054 -335T1054 -391V-411Q1047 -442 1016 -449Q1011 -450 552 -450L94 -449Q63 -439 56 -411V-391Q56 -371 56 -336T56 -254T56 -147T55 -25T55 110T55 250T55 389T55 524T55 647T56 753T56 835T56 891V911'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size2/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js new file mode 100644 index 0000000..582341b --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js @@ -0,0 +1,87 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Size3/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Size3'] = { + directory: 'Size3/Regular', + family: 'MathJax_Size3', + id: 'MJSZ3', + + // SPACE + 0x20: [0,0,250,0,0,''], + + // LEFT PARENTHESIS + 0x28: [1450,949,736,208,701,'701 -940Q701 -943 695 -949H664Q662 -947 636 -922T591 -879T537 -818T475 -737T412 -636T350 -511T295 -362T250 -186T221 17T209 251Q209 962 573 1361Q596 1386 616 1405T649 1437T664 1450H695Q701 1444 701 1441Q701 1436 681 1415T629 1356T557 1261T476 1118T400 927T340 675T308 359Q306 321 306 250Q306 -139 400 -430T690 -924Q701 -936 701 -940'], + + // RIGHT PARENTHESIS + 0x29: [1450,949,736,34,527,'34 1438Q34 1446 37 1448T50 1450H56H71Q73 1448 99 1423T144 1380T198 1319T260 1238T323 1137T385 1013T440 864T485 688T514 485T526 251Q526 134 519 53Q472 -519 162 -860Q139 -885 119 -904T86 -936T71 -949H56Q43 -949 39 -947T34 -937Q88 -883 140 -813Q428 -430 428 251Q428 453 402 628T338 922T245 1146T145 1309T46 1425Q44 1427 42 1429T39 1433T36 1436L34 1438'], + + // SOLIDUS + 0x2F: [1450,949,1044,55,988,'81 -949Q71 -949 63 -941T55 -921Q55 -917 56 -915Q59 -906 498 264T939 1438Q945 1450 960 1450Q972 1450 980 1441T988 1421Q982 1403 839 1020L398 -155Q107 -934 103 -938Q96 -949 81 -949'], + + // LEFT SQUARE BRACKET + 0x5B: [1450,949,528,247,516,'247 -949V1450H516V1388H309V-887H516V-949H247'], + + // REVERSE SOLIDUS + 0x5C: [1450,949,1044,56,988,'988 -922Q988 -933 980 -941T962 -949Q947 -949 940 -938Q936 -934 645 -155L204 1020Q56 1416 56 1424Q56 1433 62 1441T84 1450Q97 1448 103 1439Q107 1435 398 656L839 -519Q988 -918 988 -922'], + + // RIGHT SQUARE BRACKET + 0x5D: [1450,949,528,11,280,'11 1388V1450H280V-949H11V-887H218V1388H11'], + + // LEFT CURLY BRACKET + 0x7B: [1450,949,750,130,618,'618 -943L612 -949H582L568 -943Q472 -903 411 -841T332 -703Q327 -682 327 -653T325 -350Q324 -28 323 -18Q317 24 301 61T264 124T221 171T179 205T147 225T132 234Q130 238 130 250Q130 255 130 258T131 264T132 267T134 269T139 272T144 275Q207 308 256 367Q310 436 323 519Q324 529 325 851Q326 1124 326 1154T332 1205Q369 1358 566 1443L582 1450H612L618 1444V1429Q618 1413 616 1411L608 1406Q599 1402 585 1393T552 1372T515 1343T479 1305T449 1257T429 1200Q425 1180 425 1152T423 851Q422 579 422 549T416 498Q407 459 388 424T346 364T297 318T250 284T214 264T197 254L188 251L205 242Q290 200 345 138T416 3Q421 -18 421 -48T423 -349Q423 -397 423 -472Q424 -677 428 -694Q429 -697 429 -699Q434 -722 443 -743T465 -782T491 -816T519 -845T548 -868T574 -886T595 -899T610 -908L616 -910Q618 -912 618 -928V-943'], + + // RIGHT CURLY BRACKET + 0x7D: [1450,949,750,131,618,'131 1414T131 1429T133 1447T148 1450H153H167L182 1444Q276 1404 336 1343T415 1207Q421 1184 421 1154T423 851L424 531L426 517Q434 462 460 415T518 339T571 296T608 274Q615 270 616 267T618 251Q618 241 618 238T615 232T608 227Q542 194 491 132T426 -15L424 -29L423 -350Q422 -622 422 -652T415 -706Q397 -780 337 -841T182 -943L167 -949H153Q137 -949 134 -946T131 -928Q131 -914 132 -911T144 -904Q146 -903 148 -902Q299 -820 323 -680Q324 -663 325 -349T327 -19Q355 145 541 241L561 250L541 260Q356 355 327 520Q326 537 325 850T323 1181Q315 1227 293 1267T244 1332T193 1374T151 1401T132 1413Q131 1414 131 1429'], + + // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C6: [772,-564,1444,-4,1447,'1439 564Q1434 564 1080 631T722 698Q719 698 362 631Q7 564 4 564L0 583Q-4 602 -4 603L720 772L1083 688Q1446 603 1447 603Q1447 602 1443 583L1439 564'], + + // SMALL TILDE + 0x2DC: [749,-609,1444,1,1442,'1 643Q1 646 76 671T271 722T476 749Q555 749 626 736T742 706T856 676T999 662Q1088 662 1192 684T1363 727T1432 749Q1432 745 1437 731T1442 716Q1442 714 1381 693T1212 645T1012 611Q1000 610 955 610Q851 610 701 653T444 697Q355 697 251 676T80 632T11 610Q11 614 6 628T1 643'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [772,-564,0,-1448,3,'-5 564Q-9 564 -363 631T-722 698Q-725 698 -1082 631Q-1437 564 -1440 564L-1444 583Q-1448 602 -1448 603L-724 772L-361 688Q2 603 3 603Q3 602 -1 583L-5 564'], + + // COMBINING TILDE + 0x303: [749,-609,0,-1443,-2,'-1443 643Q-1443 646 -1368 671T-1173 722T-968 749Q-889 749 -818 736T-702 706T-588 676T-445 662Q-356 662 -252 684T-81 727T-12 749Q-12 745 -7 731T-2 716Q-2 714 -63 693T-232 645T-432 611Q-444 610 -489 610Q-593 610 -743 653T-1000 697Q-1089 697 -1193 676T-1364 632T-1433 610Q-1433 614 -1438 628T-1443 643'], + + // SQUARE ROOT + 0x221A: [1450,950,1000,111,1020,'424 -948Q422 -947 313 -434T202 80L170 31Q165 24 157 10Q137 -21 137 -21Q131 -16 124 -8L111 5L264 248L473 -720Q473 -717 727 359T983 1440Q989 1450 1001 1450Q1007 1450 1013 1445T1020 1433Q1020 1425 742 244T460 -941Q458 -950 439 -950H436Q424 -950 424 -948'], + + // LEFT CEILING + 0x2308: [1450,949,583,246,571,'246 -949V1450H571V1388H308V-949H246'], + + // RIGHT CEILING + 0x2309: [1450,949,583,11,336,'11 1388V1450H336V-949H274V1388H11'], + + // LEFT FLOOR + 0x230A: [1450,949,583,246,571,'246 -949V1450H308V-887H571V-949H246'], + + // RIGHT FLOOR + 0x230B: [1450,949,583,11,336,'274 -887V1450H336V-949H11V-887H274'], + + // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E8: [1450,950,750,126,654,'126 242V259L361 845Q595 1431 597 1435Q610 1450 624 1450Q634 1450 644 1443T654 1419V1411L422 831Q190 253 190 250T422 -331L654 -910V-919Q654 -936 644 -943T624 -950Q612 -950 597 -935Q595 -931 361 -345L126 242'], + + // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27E9: [1450,949,750,94,623,'94 1424Q94 1426 97 1432T107 1444T124 1450Q141 1450 152 1435Q154 1431 388 845L623 259V242L388 -345Q153 -933 152 -934Q142 -949 127 -949H125Q95 -949 95 -919V-910L327 -331Q559 247 559 250T327 831Q94 1411 94 1424'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size3/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js new file mode 100644 index 0000000..b27812d --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js @@ -0,0 +1,168 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Size4/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Size4'] = { + directory: 'Size4/Regular', + family: 'MathJax_Size4', + id: 'MJSZ4', + + // SPACE + 0x20: [0,0,250,0,0,''], + + // LEFT PARENTHESIS + 0x28: [1750,1249,792,237,758,'758 -1237T758 -1240T752 -1249H736Q718 -1249 717 -1248Q711 -1245 672 -1199Q237 -706 237 251T672 1700Q697 1730 716 1749Q718 1750 735 1750H752Q758 1744 758 1741Q758 1737 740 1713T689 1644T619 1537T540 1380T463 1176Q348 802 348 251Q348 -242 441 -599T744 -1218Q758 -1237 758 -1240'], + + // RIGHT PARENTHESIS + 0x29: [1750,1250,792,33,554,'33 1741Q33 1750 51 1750H60H65Q73 1750 81 1743T119 1700Q554 1207 554 251Q554 -707 119 -1199Q76 -1250 66 -1250Q65 -1250 62 -1250T56 -1249Q55 -1249 53 -1249T49 -1250Q33 -1250 33 -1239Q33 -1236 50 -1214T98 -1150T163 -1052T238 -910T311 -727Q443 -335 443 251Q443 402 436 532T405 831T339 1142T224 1438T50 1716Q33 1737 33 1741'], + + // SOLIDUS + 0x2F: [1750,1249,1278,56,1221,'1166 1738Q1176 1750 1189 1750T1211 1742T1221 1721Q1221 1720 1221 1718T1220 1715Q1219 1708 666 238T111 -1237Q102 -1249 86 -1249Q74 -1249 65 -1240T56 -1220Q56 -1219 56 -1217T57 -1214Q58 -1207 611 263T1166 1738'], + + // LEFT SQUARE BRACKET + 0x5B: [1750,1249,583,269,577,'269 -1249V1750H577V1677H342V-1176H577V-1249H269'], + + // REVERSE SOLIDUS + 0x5C: [1750,1249,1278,56,1221,'56 1720Q56 1732 64 1741T85 1750Q104 1750 111 1738Q113 1734 666 264T1220 -1214Q1220 -1215 1220 -1217T1221 -1220Q1221 -1231 1212 -1240T1191 -1249Q1175 -1249 1166 -1237Q1164 -1233 611 237T57 1715Q57 1716 56 1718V1720'], + + // RIGHT SQUARE BRACKET + 0x5D: [1750,1249,583,5,313,'5 1677V1750H313V-1249H5V-1176H240V1677H5'], + + // LEFT CURLY BRACKET + 0x7B: [1750,1249,806,144,661,'661 -1243L655 -1249H622L604 -1240Q503 -1190 434 -1107T348 -909Q346 -897 346 -499L345 -98L343 -82Q335 3 287 87T157 223Q146 232 145 236Q144 240 144 250Q144 265 145 268T157 278Q242 333 288 417T343 583L345 600L346 1001Q346 1398 348 1410Q379 1622 600 1739L622 1750H655L661 1744V1727V1721Q661 1712 661 1710T657 1705T648 1700T630 1690T602 1668Q589 1659 574 1643T531 1593T484 1508T459 1398Q458 1389 458 1001Q458 614 457 605Q441 435 301 316Q254 277 202 251L250 222Q260 216 301 185Q443 66 457 -104Q458 -113 458 -501Q458 -888 459 -897Q463 -944 478 -988T509 -1060T548 -1114T580 -1149T602 -1167Q620 -1183 634 -1192T653 -1202T659 -1207T661 -1220V-1226V-1243'], + + // RIGHT CURLY BRACKET + 0x7D: [1750,1249,806,144,661,'144 1727Q144 1743 146 1746T162 1750H167H183L203 1740Q274 1705 325 1658T403 1562T440 1478T456 1410Q458 1398 458 1001Q459 661 459 624T465 558Q470 526 480 496T502 441T529 395T559 356T588 325T615 301T637 284T654 273L660 269V266Q660 263 660 259T661 250V239Q661 236 661 234T660 232T656 229T649 224Q577 179 528 105T465 -57Q460 -86 460 -123T458 -499V-661Q458 -857 457 -893T447 -955Q425 -1048 359 -1120T203 -1239L183 -1249H168Q150 -1249 147 -1246T144 -1226Q144 -1213 145 -1210T153 -1202Q169 -1193 186 -1181T232 -1140T282 -1081T322 -1000T345 -897Q346 -888 346 -501Q346 -113 347 -104Q359 58 503 184Q554 226 603 250Q504 299 430 393T347 605Q346 614 346 1002Q346 1389 345 1398Q338 1493 288 1573T153 1703Q146 1707 145 1710T144 1727'], + + // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C6: [845,-561,1889,-14,1902,'5 561Q-4 561 -9 582T-14 618Q-14 623 -13 625Q-11 628 461 736T943 845Q945 845 1417 738T1896 628Q1902 628 1902 618Q1902 607 1897 584T1883 561Q1881 561 1412 654L945 750L476 654Q6 561 5 561'], + + // SMALL TILDE + 0x2DC: [823,-582,1889,0,1885,'1212 583Q1124 583 1048 603T923 647T799 691T635 711Q524 711 375 679T120 615L16 583Q14 584 12 587T9 592Q-2 650 2 659Q2 669 38 687Q54 696 146 723T309 767Q527 823 666 823Q759 823 837 803T964 759T1088 715T1252 695Q1363 695 1512 727T1764 791T1871 823Q1872 822 1874 819T1878 814Q1885 783 1885 753Q1885 748 1884 747Q1884 738 1849 719Q1836 712 1740 682T1484 617T1212 583'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [845,-561,0,-1903,13,'-1884 561Q-1893 561 -1898 582T-1903 618Q-1903 623 -1902 625Q-1900 628 -1428 736T-946 845Q-944 845 -472 738T7 628Q13 628 13 618Q13 607 8 584T-6 561Q-8 561 -477 654L-944 750L-1413 654Q-1883 561 -1884 561'], + + // COMBINING TILDE + 0x303: [823,-582,0,-1889,-4,'-677 583Q-765 583 -841 603T-966 647T-1090 691T-1254 711Q-1365 711 -1514 679T-1768 615L-1873 583Q-1875 584 -1877 587T-1880 592Q-1891 650 -1887 659Q-1887 669 -1851 687Q-1835 696 -1743 723T-1580 767Q-1362 823 -1223 823Q-1130 823 -1052 803T-925 759T-801 715T-637 695Q-526 695 -377 727T-125 791T-18 823Q-17 822 -15 819T-11 814Q-4 782 -4 753Q-4 748 -5 747Q-5 738 -40 719Q-53 712 -149 682T-405 617T-677 583'], + + // SQUARE ROOT + 0x221A: [1750,1250,1000,111,1020,'983 1739Q988 1750 1001 1750Q1008 1750 1013 1745T1020 1733Q1020 1726 742 244T460 -1241Q458 -1250 439 -1250H436Q424 -1250 424 -1248L410 -1166Q395 -1083 367 -920T312 -601L201 44L137 -83L111 -57L187 96L264 247Q265 246 369 -357Q470 -958 473 -963L727 384Q979 1729 983 1739'], + + // LEFT CEILING + 0x2308: [1750,1249,639,269,633,'269 -1249V1750H633V1677H342V-1249H269'], + + // RIGHT CEILING + 0x2309: [1750,1249,639,5,369,'5 1677V1750H369V-1249H296V1677H5'], + + // LEFT FLOOR + 0x230A: [1750,1249,639,269,633,'269 -1249V1750H342V-1176H633V-1249H269'], + + // RIGHT FLOOR + 0x230B: [1750,1249,639,5,369,'296 -1176V1750H369V-1249H5V-1176H296'], + + // LEFT PARENTHESIS UPPER HOOK + 0x239B: [1155,655,875,291,843,'837 1154Q843 1148 843 1145Q843 1141 818 1106T753 1002T667 841T574 604T494 299Q417 -84 417 -609Q417 -641 416 -647T411 -654Q409 -655 366 -655Q299 -655 297 -654Q292 -652 292 -643T291 -583Q293 -400 304 -242T347 110T432 470T574 813T785 1136Q787 1139 790 1142T794 1147T796 1150T799 1152T802 1153T807 1154T813 1154H819H837'], + + // LEFT PARENTHESIS EXTENSION + 0x239C: [610,11,875,291,417,'413 -9Q412 -9 407 -9T388 -10T354 -10Q300 -10 297 -9Q294 -8 293 -5Q291 5 291 127V300Q291 602 292 605L296 609Q298 610 366 610Q382 610 392 610T407 610T412 609Q416 609 416 592T417 473V127Q417 -9 413 -9'], + + // LEFT PARENTHESIS LOWER HOOK + 0x239D: [1165,644,875,291,843,'843 -635Q843 -638 837 -644H820Q801 -644 800 -643Q792 -635 785 -626Q684 -503 605 -363T473 -75T385 216T330 518T302 809T291 1093Q291 1144 291 1153T296 1164Q298 1165 366 1165Q409 1165 411 1164Q415 1163 416 1157T417 1119Q417 529 517 109T833 -617Q843 -631 843 -635'], + + // RIGHT PARENTHESIS UPPER HOOK + 0x239E: [1154,655,875,31,583,'31 1143Q31 1154 49 1154H59Q72 1154 75 1152T89 1136Q190 1013 269 873T401 585T489 294T544 -8T572 -299T583 -583Q583 -634 583 -643T577 -654Q575 -655 508 -655Q465 -655 463 -654Q459 -653 458 -647T457 -609Q457 -58 371 340T100 1037Q87 1059 61 1098T31 1143'], + + // RIGHT PARENTHESIS EXTENSION + 0x239F: [610,11,875,457,583,'579 -9Q578 -9 573 -9T554 -10T520 -10Q466 -10 463 -9Q460 -8 459 -5Q457 5 457 127V300Q457 602 458 605L462 609Q464 610 532 610Q548 610 558 610T573 610T578 609Q582 609 582 592T583 473V127Q583 -9 579 -9'], + + // RIGHT PARENTHESIS LOWER HOOK + 0x23A0: [1165,644,875,31,583,'56 -644H50Q31 -644 31 -635Q31 -632 37 -622Q69 -579 100 -527Q286 -228 371 170T457 1119Q457 1161 462 1164Q464 1165 520 1165Q575 1165 577 1164Q582 1162 582 1153T583 1093Q581 910 570 752T527 400T442 40T300 -303T89 -626Q78 -640 75 -642T61 -644H56'], + + // LEFT SQUARE BRACKET UPPER CORNER + 0x23A1: [1154,645,667,319,666,'319 -645V1154H666V1070H403V-645H319'], + + // LEFT SQUARE BRACKET EXTENSION + 0x23A2: [602,0,667,319,403,'319 0V602H403V0H319'], + + // LEFT SQUARE BRACKET LOWER CORNER + 0x23A3: [1155,644,667,319,666,'319 -644V1155H403V-560H666V-644H319'], + + // RIGHT SQUARE BRACKET UPPER CORNER + 0x23A4: [1154,645,667,0,347,'0 1070V1154H347V-645H263V1070H0'], + + // RIGHT SQUARE BRACKET EXTENSION + 0x23A5: [602,0,667,263,347,'263 0V602H347V0H263'], + + // RIGHT SQUARE BRACKET LOWER CORNER + 0x23A6: [1155,644,667,0,347,'263 -560V1155H347V-644H0V-560H263'], + + // LEFT CURLY BRACKET UPPER HOOK + 0x23A7: [899,10,889,383,718,'712 899L718 893V876V865Q718 854 704 846Q627 793 577 710T510 525Q510 524 509 521Q505 493 504 349Q504 345 504 334Q504 277 504 240Q504 -2 503 -4Q502 -8 494 -9T444 -10Q392 -10 390 -9Q387 -8 386 -5Q384 5 384 230Q384 262 384 312T383 382Q383 481 392 535T434 656Q510 806 664 892L677 899H712'], + + // LEFT CURLY BRACKET MIDDLE PIECE + 0x23A8: [1160,660,889,170,504,'389 1159Q391 1160 455 1160Q496 1160 498 1159Q501 1158 502 1155Q504 1145 504 924Q504 691 503 682Q494 549 425 439T243 259L229 250L243 241Q349 175 421 66T503 -182Q504 -191 504 -424Q504 -600 504 -629T499 -659H498Q496 -660 444 -660T390 -659Q387 -658 386 -655Q384 -645 384 -425V-282Q384 -176 377 -116T342 10Q325 54 301 92T255 155T214 196T183 222T171 232Q170 233 170 250T171 268Q171 269 191 284T240 331T300 407T354 524T383 679Q384 691 384 925Q384 1152 385 1155L389 1159'], + + // LEFT CURLY BRACKET LOWER HOOK + 0x23A9: [10,899,889,384,718,'718 -893L712 -899H677L666 -893Q542 -825 468 -714T385 -476Q384 -466 384 -282Q384 3 385 5L389 9Q392 10 444 10Q486 10 494 9T503 4Q504 2 504 -239V-310V-366Q504 -470 508 -513T530 -609Q546 -657 569 -698T617 -767T661 -812T699 -843T717 -856T718 -876V-893'], + + // CURLY BRACKET EXTENSION + 0x23AA: [310,10,889,384,504,'384 150V266Q384 304 389 309Q391 310 455 310Q496 310 498 309Q502 308 503 298Q504 283 504 150Q504 32 504 12T499 -9H498Q496 -10 444 -10T390 -9Q386 -8 385 2Q384 17 384 150'], + + // RIGHT CURLY BRACKET UPPER HOOK + 0x23AB: [899,10,889,170,504,'170 875Q170 892 172 895T189 899H194H211L222 893Q345 826 420 715T503 476Q504 467 504 230Q504 51 504 21T499 -9H498Q496 -10 444 -10Q402 -10 394 -9T385 -4Q384 -2 384 240V311V366Q384 469 380 513T358 609Q342 657 319 698T271 767T227 812T189 843T171 856T170 875'], + + // RIGHT CURLY BRACKET MIDDLE PIECE + 0x23AC: [1160,660,889,384,718,'389 1159Q391 1160 455 1160Q496 1160 498 1159Q501 1158 502 1155Q504 1145 504 925V782Q504 676 511 616T546 490Q563 446 587 408T633 345T674 304T705 278T717 268Q718 267 718 250T717 232Q717 231 697 216T648 169T588 93T534 -24T505 -179Q504 -191 504 -425Q504 -600 504 -629T499 -659H498Q496 -660 444 -660T390 -659Q387 -658 386 -655Q384 -645 384 -424Q384 -191 385 -182Q394 -49 463 61T645 241L659 250L645 259Q539 325 467 434T385 682Q384 692 384 873Q384 1153 385 1155L389 1159'], + + // RIGHT CURLY BRACKET LOWER HOOK + 0x23AD: [10,899,889,170,505,'384 -239V-57Q384 4 389 9Q391 10 455 10Q496 10 498 9Q501 8 502 5Q504 -5 504 -230Q504 -261 504 -311T505 -381Q505 -486 492 -551T435 -691Q357 -820 222 -893L211 -899H195Q176 -899 173 -896T170 -874Q170 -858 171 -855T184 -846Q262 -793 312 -709T378 -525Q378 -524 379 -522Q383 -493 384 -351Q384 -345 384 -334Q384 -276 384 -239'], + + // RADICAL SYMBOL BOTTOM + 0x23B7: [935,885,1056,111,742,'742 -871Q740 -873 737 -876T733 -880T730 -882T724 -884T714 -885H702L222 569L180 484Q138 399 137 399Q131 404 124 412L111 425L265 736L702 -586V168L703 922Q713 935 722 935Q734 935 742 920V-871'], + + // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E8: [1750,1248,806,140,703,'140 242V260L386 994Q633 1729 635 1732Q643 1745 657 1749Q658 1749 662 1749T668 1750Q682 1749 692 1740T702 1714V1705L214 251L703 -1204L702 -1213Q702 -1230 692 -1239T667 -1248H664Q647 -1248 635 -1231Q633 -1228 386 -493L140 242'], + + // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27E9: [1750,1248,806,103,665,'103 1714Q103 1732 114 1741T137 1750Q157 1750 170 1732Q172 1729 419 994L665 260V242L419 -493Q172 -1228 170 -1231Q158 -1248 141 -1248H138Q123 -1248 113 -1239T103 -1213V-1204L591 251L103 1705V1714'], + + // stix-radical symbol vertical extender + 0xE000: [625,14,1056,702,742,'722 -14H720Q708 -14 702 0V306L703 612Q713 625 722 625Q734 625 742 610V0Q734 -14 724 -14H722'], + + // stix-radical symbol top corner piece + 0xE001: [605,14,1056,702,1076,'702 589Q706 601 718 605H1061Q1076 597 1076 585Q1076 572 1061 565H742V0Q734 -14 724 -14H722H720Q708 -14 702 0V589'], + + // stix-horizontal brace, down left piece + 0xE150: [120,213,450,-24,460,'-18 -213L-24 -207V-172L-16 -158Q75 2 260 84Q334 113 415 119Q418 119 427 119T440 120Q454 120 457 117T460 98V60V25Q460 7 457 4T441 0Q308 0 193 -55T25 -205Q21 -211 18 -212T-1 -213H-18'], + + // stix-horizontal brace, down right piece + 0xE151: [120,213,450,-10,474,'-10 60Q-10 104 -10 111T-5 118Q-1 120 10 120Q96 120 190 84Q375 2 466 -158L474 -172V-207L468 -213H451H447Q437 -213 434 -213T428 -209T423 -202T414 -187T396 -163Q331 -82 224 -41T9 0Q-4 0 -7 3T-10 25V60'], + + // stix-horizontal brace, upper left piece + 0xE152: [333,0,450,-24,460,'-24 327L-18 333H-1Q11 333 15 333T22 329T27 322T35 308T54 284Q115 203 225 162T441 120Q454 120 457 117T460 95V60V28Q460 8 457 4T442 0Q355 0 260 36Q75 118 -16 278L-24 292V327'], + + // stix-horizontal brace, upper right piece + 0xE153: [333,0,450,-10,474,'-10 60V95Q-10 113 -7 116T9 120Q151 120 250 171T396 284Q404 293 412 305T424 324T431 331Q433 333 451 333H468L474 327V292L466 278Q375 118 190 36Q95 0 8 0Q-5 0 -7 3T-10 24V60'], + + // stix-oblique open face capital letter A + 0xE154: [120,0,400,-10,410,'-10 0V120H410V0H-10'] +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Size4/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js new file mode 100644 index 0000000..4ab5446 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js @@ -0,0 +1,314 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Typewriter/Regular/BasicLatin.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Typewriter'], + { + // SPACE + 0x20: [0,0,250,0,0,''], + + // EXCLAMATION MARK + 0x21: [622,0,525,206,320,'206 565Q206 590 222 606T265 622Q287 621 303 606T319 565T314 392L308 216Q299 194 273 194H262Q247 194 241 195T228 200T217 216L211 392Q206 539 206 565ZM206 56Q206 83 223 99T265 115Q288 113 304 99T320 58Q320 33 303 17T262 0Q237 0 222 17T206 56'], + + // QUOTATION MARK + 0x22: [623,-333,525,122,402,'122 575Q122 593 137 608T173 623Q196 623 210 608T225 575Q225 562 218 464Q212 373 211 361T201 341Q193 333 173 333Q154 333 146 341Q138 348 137 360T129 464Q122 561 122 575ZM299 575Q299 593 314 608T350 623Q373 623 387 608T402 575Q402 562 395 464Q389 373 388 361T378 341Q370 333 350 333Q331 333 323 341Q315 348 314 360T306 464Q299 561 299 575'], + + // NUMBER SIGN + 0x23: [612,0,525,36,489,'93 163Q74 163 65 164T46 173T36 198Q36 210 40 215T61 233H131V236Q132 239 140 307T149 377Q149 379 105 379L61 380Q36 392 36 414Q36 450 86 450Q91 450 99 450T112 449H159Q163 480 167 517Q168 524 170 545T174 573T180 591T191 607T210 611Q223 611 232 604T243 588L245 580Q245 565 238 511T230 451Q230 449 282 449H333Q337 480 341 517Q342 524 343 537T345 556T348 573T352 589T359 600T370 608T384 611Q395 611 406 602T419 580Q419 565 412 511T404 451Q404 449 431 449H442Q477 449 485 429Q489 421 489 414Q489 392 463 380L428 379H394V376Q393 373 385 305T376 235Q376 233 419 233H463L468 230Q472 227 473 227T477 223T482 218T486 213T488 206T489 198Q489 162 436 162Q430 162 422 162T412 163H366V161Q364 159 357 92Q356 85 355 73T353 54T350 37T346 22T339 11T328 3T314 0Q303 0 292 9T279 31Q279 37 287 96T295 162Q295 163 244 163H192V161Q190 159 183 92Q182 85 181 73T179 54T176 37T172 22T165 11T154 3T140 0Q129 0 118 9T105 31Q105 37 113 96T121 162Q121 163 93 163ZM323 377Q323 379 272 379H220V376Q219 373 211 305T202 235Q202 233 253 233H305V236Q306 239 314 307T323 377'], + + // DOLLAR SIGN + 0x24: [694,82,525,58,466,'415 397Q392 397 377 411T362 448Q362 464 376 485Q369 498 362 506T346 520T332 528T315 533T300 538V445L301 353L311 350Q382 334 424 284T466 174Q466 115 425 65T303 -2L300 -3V-30Q300 -64 291 -74Q283 -82 262 -82H255Q234 -82 225 -60L224 -32V-4L213 -2Q152 6 106 51T59 170V180Q59 197 74 213Q89 227 110 227T146 213T162 174Q162 156 147 137Q153 123 161 112T176 95T191 85T205 79T216 76T224 74V283L213 285Q147 298 103 343T58 449Q58 516 108 560T224 614V643V654Q224 666 226 673T237 687T264 694Q289 693 294 683T300 642V615H303Q355 607 390 587T440 540T460 493T466 453Q466 425 451 411T415 397ZM137 452Q137 425 158 404T198 376T223 369Q224 369 224 453T223 537Q198 532 168 509T137 452ZM301 75Q307 75 325 83T365 116T387 171Q387 238 300 267V171Q300 75 301 75'], + + // PERCENT SIGN + 0x25: [694,83,525,35,489,'35 560Q35 607 54 645T110 693Q111 693 116 693T125 694Q165 692 187 651T210 560Q210 506 186 467T123 428Q84 428 60 466T35 560ZM139 560Q139 574 136 587T130 608T124 615Q122 617 120 614Q106 595 106 561Q106 516 121 506Q123 504 125 507Q139 526 139 560ZM123 -83Q107 -83 98 -73T88 -48Q88 -43 89 -41Q90 -37 229 316T370 675Q381 694 400 694Q416 694 426 684T436 659Q436 654 435 652Q434 647 295 294T153 -65Q144 -83 123 -83ZM314 50Q314 104 338 143T400 183Q439 183 464 144T489 50T465 -43T402 -82Q358 -82 336 -41T314 50ZM417 50Q417 71 413 85T405 102L401 106Q386 95 386 50Q386 29 390 15T398 -2L402 -6Q417 5 417 50'], + + // AMPERSAND + 0x26: [622,11,525,28,490,'96 462Q96 546 132 584T211 622Q255 622 284 583T314 474Q314 395 224 305L208 288Q213 275 226 251L265 185L269 179Q273 184 299 246L332 333L342 363Q342 364 341 365Q334 365 334 393Q334 406 334 410T340 420T356 431H412H440Q467 431 478 424T490 393Q490 376 484 367T470 357T448 355H441H415L399 312Q349 176 322 127L315 115L323 106Q360 65 393 65Q405 65 410 80T416 109Q416 140 452 140Q487 140 487 105Q487 56 460 23T391 -11L286 41L273 53L262 42Q212 -11 151 -11Q97 -11 63 33T28 143Q28 161 30 176T38 205T47 227T60 247T72 261T84 274T94 283L122 311L119 323Q96 392 96 462ZM243 474Q243 533 218 545L215 546Q212 546 210 546Q182 546 169 501Q167 492 167 466Q167 419 179 368L188 377Q234 425 242 461Q243 465 243 474ZM217 129Q185 174 154 235Q121 214 115 176Q113 168 113 143Q113 83 139 67Q141 66 152 66Q191 66 228 112L217 129'], + + // APOSTROPHE + 0x27: [611,-287,525,175,349,'205 554Q205 577 221 594T263 611Q302 611 325 577T349 490Q349 409 298 347Q285 330 258 309T214 287Q203 289 189 302T175 327Q175 341 185 349T213 369T245 402Q269 437 273 483V497Q264 496 263 496Q240 496 223 513T205 554'], + + // LEFT PARENTHESIS + 0x28: [694,82,525,166,437,'437 -53Q437 -82 399 -82H394Q377 -82 342 -55Q259 7 213 102T166 306Q166 412 211 507T342 667Q377 694 393 694H399Q437 694 437 665Q437 654 426 643T397 620T356 584T311 525Q301 511 290 488T264 412T250 306Q250 191 300 105T422 -27Q437 -37 437 -53'], + + // RIGHT PARENTHESIS + 0x29: [694,82,525,87,358,'87 664Q87 694 126 694Q138 694 147 690T183 667Q266 605 312 510T358 306Q358 193 307 93T161 -70Q142 -82 126 -82Q105 -82 96 -73T87 -53Q87 -47 88 -44Q92 -36 116 -19T173 34T230 119Q273 206 273 306Q273 408 231 494T109 635Q87 649 87 664'], + + // ASTERISK + 0x2A: [520,-89,525,68,456,'222 487Q224 501 235 510T262 520Q279 520 289 510T302 487Q302 458 301 429Q301 421 301 413T301 398T300 386T300 377V374Q300 373 301 373Q304 373 353 403T416 434Q432 434 444 423T456 393Q456 389 456 386T454 379T451 373T448 368T442 363T436 358T427 353T417 348T405 342T391 334Q345 309 339 305L388 279Q400 273 412 266T432 255T441 250Q456 238 456 218Q456 200 445 189T417 177Q403 177 354 207T301 238Q300 238 300 237V234Q300 231 300 226T300 214T301 199T301 182Q302 153 302 124Q300 109 289 100T262 90T235 100T222 124Q222 153 223 182Q223 190 223 198T223 213T224 225T224 234V237Q224 238 223 238Q220 238 171 208T108 177Q92 177 80 188T68 218Q68 237 79 246T134 277Q180 303 185 306L136 332Q124 338 112 345T92 356T83 361Q68 373 68 393Q68 411 79 422T107 434Q121 434 170 404T223 373Q224 373 224 374V377Q224 380 224 385T224 397T223 412T223 429Q222 458 222 487'], + + // PLUS SIGN + 0x2B: [531,-81,525,38,487,'147 271Q138 271 122 271T98 270Q68 270 53 277T38 306T53 335T98 342Q105 342 121 342T147 341H227V423L228 505Q241 531 262 531Q268 531 273 530T282 525T287 519T293 511L297 505V341H377H430Q457 341 467 338T483 321Q487 313 487 306Q487 295 480 286T463 273Q457 271 377 271H297V107Q281 81 262 81Q250 81 242 87T230 100L228 107L227 189V271H147'], + + // COMMA + 0x2C: [140,139,525,173,353,'193 37T193 70T213 121T260 140Q302 140 327 108T353 36Q353 -7 336 -43T294 -98T249 -128T215 -139Q204 -139 189 -125Q177 -111 174 -101Q172 -84 183 -77T217 -61T253 -33Q261 -24 272 1L265 0Q234 0 214 18'], + + // HYPHEN-MINUS + 0x2D: [341,-271,525,57,468,'57 306Q57 333 86 341H438Q468 332 468 306T438 271H86Q57 280 57 306'], + + // FULL STOP + 0x2E: [140,-1,525,193,332,'193 70Q193 105 214 122T258 140Q291 140 311 120T332 70Q332 44 314 23T262 1Q234 1 214 18T193 70'], + + // SOLIDUS + 0x2F: [694,83,525,58,466,'94 -83Q78 -83 68 -73T58 -48Q58 -44 60 -36Q62 -31 227 314T399 673Q410 694 431 694Q445 694 455 684T466 659Q466 656 464 648Q463 643 298 298T125 -62Q114 -83 94 -83'], + + // DIGIT ZERO + 0x30: [621,10,525,42,482,'42 305Q42 450 111 535T257 621Q335 621 390 562Q482 468 482 306Q482 174 418 82T262 -10T106 82T42 305ZM257 545Q209 545 168 481T126 320Q126 220 162 147Q204 65 262 65Q318 65 358 139T398 320V328Q395 411 364 470T284 543Q270 545 257 545'], + + // DIGIT ONE + 0x31: [622,-1,525,99,450,'99 461Q99 470 99 474T104 487T120 498T151 502Q213 517 251 596Q264 622 283 622Q308 622 319 597V76H373H401Q428 76 439 69T450 38Q450 11 428 1H127Q104 10 104 38Q104 62 115 69T153 76H181H235V269Q235 461 234 461Q184 426 137 424H133Q124 424 119 425T109 431T99 447V461'], + + // DIGIT TWO + 0x32: [622,-1,525,52,472,'52 462Q52 528 110 575T247 622H250Q343 622 407 565T472 421Q472 371 446 324T390 248T308 178Q307 177 275 151T214 101L185 77Q185 76 286 76H388V87Q388 105 397 114T430 123T463 114Q470 107 471 100T472 61V42Q472 24 468 16T450 1H75Q53 10 53 32V38V48Q53 57 63 67T127 122Q153 144 169 157L289 256Q388 345 388 419Q388 473 346 509T231 545H224Q176 545 146 499L144 494Q155 476 155 459Q154 459 155 455T154 444T148 430T136 417T114 408Q113 408 110 408T104 407Q80 407 66 422T52 462'], + + // DIGIT THREE + 0x33: [622,11,525,44,479,'260 546Q233 546 211 541T180 531T171 524L174 514Q177 505 177 497Q177 476 162 461T125 446Q106 446 90 459T73 504Q76 540 98 565T150 601T203 616T239 621Q241 622 265 622Q322 620 362 602T420 558T444 513T451 478Q451 386 369 329L375 326Q381 323 386 320T401 311T419 298T436 283T452 263T466 240T475 212T479 180Q479 99 416 44T259 -11T105 28T44 130Q44 154 59 168T95 183Q117 183 132 169T148 131Q148 119 139 101Q175 65 260 65Q316 65 355 97T395 179Q395 211 375 240Q336 292 253 292H234H215Q194 292 185 299T175 330Q175 350 184 359Q192 368 238 370T309 384Q336 398 351 423T367 474Q367 496 350 513Q321 546 260 546'], + + // DIGIT FOUR + 0x34: [623,-1,525,29,495,'235 1Q213 10 213 32V38V46Q213 65 230 73Q236 76 274 76H314V168H183L52 169Q37 175 33 182T29 205V218L30 244Q53 283 155 443T264 613Q276 623 298 623H323H363Q378 616 385 601V244H429H450Q474 244 484 237T495 206Q495 179 477 171Q471 168 429 168H385V76H425H442Q466 76 476 69T487 38Q487 10 465 1H235ZM314 244V554L117 245L215 244H314'], + + // DIGIT FIVE + 0x35: [612,10,525,52,472,'387 189Q387 244 354 278T273 313Q230 313 205 301T163 271T138 249H120Q102 249 97 251Q85 258 83 266T80 311Q80 320 80 359T81 430Q81 587 82 591Q88 605 103 610H108Q112 610 120 610T138 610T163 610T192 611T225 611T260 611H415Q416 610 421 607T428 602T432 596T436 587T437 573Q437 567 437 562T434 554T431 548T427 543T423 540T418 538L415 536L289 535H164V363L170 366Q175 368 184 372T207 380T238 386T276 389Q357 389 414 331T472 187Q472 116 412 53T245 -10Q218 -10 209 -9Q126 5 89 48T52 137Q52 164 68 177T104 191Q130 191 143 175T156 141Q156 132 154 125T149 113T146 107Q146 104 155 95T188 76T245 65Q298 65 342 98T387 189'], + + // DIGIT SIX + 0x36: [622,11,525,44,479,'357 536Q357 546 318 546Q258 546 205 497T133 357V353L144 361Q210 402 285 402Q362 402 414 350Q479 285 479 193Q479 111 418 50T263 -11Q234 -11 207 -3T149 26T97 81T60 171T45 301Q45 444 129 533T319 622Q388 622 421 589T454 510Q454 491 442 475T402 458Q373 458 362 475T350 510Q350 520 354 528L357 536ZM319 326T269 326T179 298T136 223Q136 202 143 174T176 112T237 68Q246 66 265 66Q319 66 360 107Q395 146 395 197Q395 250 356 289Q319 326 269 326'], + + // DIGIT SEVEN + 0x37: [627,10,525,44,480,'204 -10Q162 -10 162 40Q162 146 198 261T310 477Q311 478 321 491T342 517T358 535H128V524Q128 506 119 497Q111 489 86 489H78Q55 489 46 508Q44 513 44 557V580Q44 605 52 616T88 627H93Q114 627 125 611H458Q474 598 477 593T480 573Q480 559 478 553T469 543T446 521T408 477Q252 290 246 49Q246 43 246 37T246 27T245 22Q243 11 233 1T204 -10'], + + // DIGIT EIGHT + 0x38: [621,10,525,45,480,'58 460Q58 523 117 572T254 621Q290 621 298 620Q376 607 421 560T466 460Q466 441 460 424T443 393T421 370T397 352T374 340T357 332L350 330L356 328Q363 325 371 321T392 310T415 295T439 274T459 249T473 217T479 179Q479 102 418 46T262 -10T106 46T45 179Q45 202 52 222T70 257T96 284T123 305T148 319T167 328L174 330L170 332Q166 333 159 336T145 343Q104 362 81 393T58 460ZM382 458Q382 491 349 518T263 546Q215 546 179 521T142 458Q142 421 178 395T262 368Q315 368 348 396T382 458ZM396 178Q396 223 358 257T263 292Q206 292 167 258T128 178Q128 137 163 102T262 66Q324 66 360 101T396 178'], + + // DIGIT NINE + 0x39: [622,11,525,46,479,'392 259Q333 210 236 210H233Q163 210 109 262Q46 325 46 411T99 550Q164 622 264 622Q293 622 319 615T376 587T428 532T464 440T479 304Q479 167 400 78T217 -11Q140 -11 105 22T70 101Q70 124 84 138T122 153Q150 153 162 137T174 101Q174 91 168 76Q179 65 216 65Q267 65 300 93Q322 109 339 130T366 173T380 210T388 242T392 259ZM388 389Q388 438 357 492T268 546T185 520Q129 479 129 415Q129 384 138 363Q145 349 156 334T195 302T255 285Q305 285 345 313T388 389'], + + // COLON + 0x3A: [431,-1,525,193,332,'193 361Q193 396 214 413T258 431Q291 431 311 411T332 361Q332 335 314 314T262 292Q234 292 214 309T193 361ZM193 70Q193 105 214 122T258 140Q291 140 311 120T332 70Q332 44 314 23T262 1Q234 1 214 18T193 70'], + + // SEMICOLON + 0x3B: [431,139,525,175,337,'193 361Q193 396 214 413T258 431Q291 431 311 411T332 361Q332 335 314 314T262 292Q234 292 214 309T193 361ZM193 70Q193 105 214 122T259 140Q301 140 319 108T337 33Q337 -38 291 -88T214 -139Q203 -139 189 -126T175 -97Q175 -85 182 -78T200 -66T225 -50T249 -17Q256 -3 256 0Q252 1 248 1Q242 2 235 5T218 15T200 36T193 70'], + + // LESS-THAN SIGN + 0x3C: [557,-55,525,57,469,'468 90Q468 76 458 66T433 55Q426 55 419 58Q413 61 243 168T68 280Q57 291 57 306T68 332Q72 335 241 442T416 553Q424 557 432 557Q447 557 457 547T468 522T456 496Q454 494 305 399L158 306L305 213Q341 190 390 159Q443 125 452 119T464 106V105Q468 97 468 90'], + + // EQUALS SIGN + 0x3D: [417,-195,525,38,487,'38 382Q38 409 67 417H457Q487 408 487 382Q487 358 461 348H64Q51 352 45 360T38 376V382ZM67 195Q38 204 38 230Q38 255 62 264Q66 265 264 265H461L464 264Q467 262 469 261T475 256T481 249T485 240T487 230Q487 204 457 195H67'], + + // GREATER-THAN SIGN + 0x3E: [557,-55,525,57,468,'57 522Q57 539 67 548T90 557Q98 557 105 554Q111 551 281 444T456 332Q468 320 468 306T456 280Q452 276 282 169T105 58Q98 55 91 55Q79 55 68 63T57 90Q57 105 68 116Q70 118 219 213L366 306L219 399Q75 491 71 494Q57 507 57 522'], + + // QUESTION MARK + 0x3F: [617,1,525,62,462,'62 493Q62 540 107 578T253 617Q366 617 414 578T462 490Q462 459 445 434T411 400L394 390Q315 347 296 287Q294 278 293 247V217Q285 201 278 198T246 194T216 197T201 215V245V253Q201 379 351 456Q366 464 375 477Q377 482 377 490Q377 517 339 528T251 540Q182 540 159 517Q166 503 166 490Q166 468 151 453T114 438Q96 438 79 451T62 493ZM190 58Q190 85 208 100T249 115Q272 113 288 99T304 58Q304 33 287 17T246 0T206 16T190 58'], + + // COMMERCIAL AT + 0x40: [617,6,525,44,481,'44 306Q44 445 125 531T302 617Q332 617 358 607T411 574T456 502T479 387Q481 361 481 321Q481 203 421 143Q381 103 332 103Q266 103 225 165T183 307Q183 390 227 449T332 508Q358 508 378 498Q350 541 304 541Q229 541 172 473T115 305Q115 208 171 140T306 71H310Q358 71 397 105Q409 115 436 115Q458 115 462 113Q481 106 481 86Q481 73 468 61Q401 -6 305 -6Q262 -6 217 14T133 71T69 170T44 306ZM410 306Q410 361 386 396T333 431Q300 431 277 394T254 305Q254 256 276 218T332 180Q364 180 387 217T410 306'], + + // LATIN CAPITAL LETTER A + 0x41: [623,-1,525,28,496,'191 76Q212 75 220 68T229 38Q229 10 208 1H129H80Q48 1 38 7T28 38Q28 51 29 57T40 69T70 76Q89 76 89 78Q90 79 117 205T173 461T205 599Q212 623 250 623H262H273Q312 623 319 599Q322 591 350 461T406 205T435 78Q435 76 454 76H458Q484 76 493 59Q496 53 496 38Q496 11 478 3Q474 1 395 1H317Q295 8 295 38Q295 65 311 73Q316 75 333 76L348 77V78Q348 80 341 112L334 143H190L183 112Q176 80 176 78Q175 76 178 76Q180 76 191 76ZM318 221Q313 238 288 366T263 519Q263 526 262 527Q261 527 261 520Q261 493 236 365T206 221Q206 219 262 219T318 221'], + + // LATIN CAPITAL LETTER B + 0x42: [611,-1,525,17,482,'39 1Q17 10 17 32V38V46Q17 65 34 73Q40 76 61 76H84V535H61H54Q27 535 19 553Q17 557 17 573Q17 583 17 587T23 599T39 610Q40 611 179 611Q320 610 332 607Q332 607 339 605Q394 591 427 547T461 454Q461 413 436 378T369 325L358 320Q405 311 443 270T482 169Q482 112 445 64T345 3L334 1H39ZM309 533Q302 535 234 535H168V356H230Q284 357 296 358T323 368Q346 380 361 402T377 452Q377 482 358 505T309 533ZM398 176Q396 218 371 246T315 279Q310 280 237 280H168V76H239Q316 77 327 81Q329 82 334 84Q398 107 398 176'], + + // LATIN CAPITAL LETTER C + 0x43: [622,11,525,40,485,'40 305Q40 437 110 529T281 622Q315 622 343 611T387 589T404 578Q409 585 415 596T425 611T435 618T452 622Q472 622 478 609T485 566Q485 559 485 540T484 508V460Q484 413 478 403T442 393Q417 393 409 402Q400 409 400 420Q400 428 395 445T380 487T347 528T295 546Q235 546 180 483T124 306Q124 245 141 197T186 121T241 80T296 66Q346 66 373 103T400 178Q400 209 435 209H442H450Q484 209 484 172Q480 96 421 43T281 -11Q177 -11 109 84T40 305'], + + // LATIN CAPITAL LETTER D + 0x44: [612,-1,525,16,485,'38 1Q16 8 16 38Q16 62 32 73Q39 76 58 76H78V535H58Q40 535 32 538Q16 548 16 573Q16 587 17 591Q23 604 34 607T83 611H166H176Q188 611 209 611T239 612Q299 612 337 597T415 530Q485 438 485 300Q485 180 431 100T301 3L291 1H38ZM400 301Q400 363 385 410T346 482T303 519T267 534Q261 535 210 535H162V76H214L267 77Q323 89 361 148T400 301'], + + // LATIN CAPITAL LETTER E + 0x45: [612,-1,525,18,502,'374 271Q374 241 367 232T332 223Q307 223 299 231Q290 240 290 263V279H173V76H418V118V144Q418 167 426 176T460 186Q491 186 500 166Q502 161 502 93V52Q502 25 499 17T480 1H41Q19 9 19 32V38Q19 63 36 73Q42 76 65 76H89V535H65H55Q44 535 38 537T25 548T19 573Q19 602 41 610H47Q53 610 63 610T88 610T121 610T160 611T204 611T251 611H458Q460 609 465 606T471 602T475 598T478 593T479 586T480 576T480 562V526V488Q480 452 462 444Q458 442 438 442Q413 442 405 450Q398 457 397 463T396 501V535H173V355H290V371Q290 394 299 403T332 412Q363 412 372 392Q374 387 374 317V271'], + + // LATIN CAPITAL LETTER F + 0x46: [612,-1,525,22,490,'384 260Q384 230 377 221T342 212Q317 212 309 220Q300 229 300 252V268H179V76H249Q264 67 267 61T271 38Q271 10 249 1H44Q22 9 22 32V38Q22 63 39 73Q45 76 69 76H95V535H69H59Q42 535 32 542T22 573Q22 602 44 610H50Q56 610 66 610T91 610T125 610T164 611T208 611T257 611H468Q470 609 475 606T481 602T485 598T488 593T489 586T490 576T490 562V526V488Q490 452 472 444Q468 442 448 442Q423 442 415 450Q408 457 407 463T406 501V535H179V344H300V360Q300 383 309 392T342 401Q373 401 382 381Q384 376 384 306V260'], + + // LATIN CAPITAL LETTER G + 0x47: [623,11,525,38,496,'38 306Q38 447 105 534T261 622Q280 622 298 618T329 608T350 596T366 585L371 581Q373 581 377 591T390 612T417 622Q437 622 443 609T450 566Q450 559 450 540T449 508V460Q449 413 443 403T407 393Q392 393 386 394T373 402T364 426Q360 472 335 509T271 546Q214 546 168 477T121 308Q121 210 164 138T271 65Q293 65 310 78T337 109T352 147T360 180T362 195Q362 196 333 196L304 197Q282 204 282 227V234Q282 247 282 251T288 261T304 272H474Q488 263 492 256T496 234Q496 211 479 199Q475 197 461 196H449V21Q441 6 434 3T412 -1H407H402Q385 -1 379 3T364 28Q350 14 322 2T260 -11Q173 -11 106 76T38 306'], + + // LATIN CAPITAL LETTER H + 0x48: [611,-1,525,16,508,'16 571Q16 597 27 604T74 611H125H208Q223 602 226 596T230 573Q230 559 227 551T217 540T204 536T186 535H165V356H359V535H338H333Q306 535 297 552Q295 556 295 573Q295 586 295 590T301 600T317 611H486Q501 602 504 596T508 573Q508 559 505 551T495 540T482 536T464 535H443V76H464H470Q482 76 489 75T502 64T508 38Q508 10 486 1H317Q306 5 301 11T296 21T295 38V44Q295 66 311 73Q318 76 338 76H359V280H165V76H186H192Q204 76 211 75T224 64T230 38Q230 10 208 1H39Q28 5 23 11T18 21T17 38V44Q17 66 33 73Q40 76 60 76H81V535H60Q45 535 38 536T24 545T16 571'], + + // LATIN CAPITAL LETTER I + 0x49: [611,-1,525,72,452,'400 76Q431 76 441 69T452 38Q452 29 452 26T450 18T443 9T430 1H95Q84 6 79 12T73 23T72 38Q72 65 90 73Q96 76 157 76H220V535H157H124Q93 535 83 542T72 573Q72 603 93 610Q97 611 264 611H430Q432 609 436 607T444 602T449 594Q452 588 452 573Q452 546 434 538Q428 535 367 535H304V76H367H400'], + + // LATIN CAPITAL LETTER J + 0x4A: [612,11,525,57,479,'202 543T202 573T224 610H228Q231 610 237 610T251 610T269 610T291 611T315 611T342 611H457Q471 602 475 595T479 573Q479 549 462 538Q454 535 432 535H408V328Q408 159 408 133T402 93Q386 48 340 19T229 -11Q158 -11 108 16T57 100Q57 129 73 141T108 154Q128 154 143 140T159 102Q159 93 155 79Q188 65 228 65H230Q290 65 318 106Q323 115 323 139T324 329V535H274L224 536Q202 543 202 573'], + + // LATIN CAPITAL LETTER K + 0x4B: [611,-1,525,18,495,'18 549T18 573T29 604T70 611H118H193Q207 603 210 596T214 573Q214 549 198 538Q191 535 172 535H152V421Q152 344 152 326T153 309L242 422L329 534Q327 535 322 536T314 538T308 542T303 548T300 558T298 573Q298 600 316 608Q322 611 392 611H463Q477 602 481 595T485 573Q485 535 446 535H441H420L281 357L436 77L454 76Q473 75 478 73Q495 62 495 38Q495 10 473 1H345Q334 5 329 11T324 21T323 38Q323 51 324 56T332 68T355 77L233 296L152 192V76H172Q191 76 198 73Q214 63 214 38Q214 9 193 1H41Q18 8 18 38Q18 61 35 73Q42 76 61 76H81V535H61Q42 535 35 538Q18 549 18 573'], + + // LATIN CAPITAL LETTER L + 0x4C: [611,0,525,25,488,'27 594Q34 605 43 608T84 611H154H213Q258 611 269 605T281 573Q281 546 263 538Q257 535 222 535H185V76H404V118V145Q404 168 411 177T446 186H453Q478 186 486 167Q488 161 488 93V50Q488 24 485 17T466 1L258 0H147H99Q47 0 36 6T25 38Q25 59 35 69Q44 76 76 76H101V535H76H64Q36 535 27 552Q25 557 25 573T27 594'], + + // LATIN CAPITAL LETTER M + 0x4D: [611,-1,525,11,512,'50 535Q37 536 31 537T18 547T12 573Q12 598 22 604T62 611H91H121Q147 611 158 607T178 587Q183 579 222 446T261 293Q261 289 262 288Q263 288 263 292Q263 311 298 434T346 588Q353 603 365 607T402 611H435H450Q488 611 500 605T512 573Q512 556 506 547T493 537T474 535H459V76H474Q487 75 493 74T505 64T512 38Q512 11 494 3Q490 1 424 1H386Q355 1 345 7T335 38Q335 55 341 64T354 74T373 76H388V302Q388 512 387 519Q382 482 346 359T304 228Q292 204 262 204T220 228Q215 237 179 359T137 519Q136 512 136 302V76H151Q164 75 170 74T182 64T189 38Q189 11 171 3Q167 1 101 1H63Q32 1 22 7T12 38Q12 55 18 64T31 74T50 76H65V535H50'], + + // LATIN CAPITAL LETTER N + 0x4E: [611,0,525,20,504,'20 571Q20 598 30 604T73 611H105H136Q152 611 160 611T177 607T189 601T198 587T206 568T217 537T231 497Q354 142 365 95L368 84V535H347H342Q314 535 306 552Q304 556 304 573Q304 586 304 590T310 600T326 611H482Q497 602 500 596T504 573Q504 559 501 551T491 540T478 536T460 535H439V25Q432 7 424 4T389 0H374Q334 0 322 31L293 115Q171 468 159 517L156 528V76H177H183Q195 76 202 75T215 64T221 38Q221 10 199 1H43Q32 5 27 11T22 21T21 38V44Q21 66 37 73Q44 76 64 76H85V535H64Q49 535 42 536T28 545T20 571'], + + // LATIN CAPITAL LETTER O + 0x4F: [621,10,525,56,468,'102 588Q140 621 240 621Q323 621 335 620Q393 613 422 588Q450 560 459 493T468 306Q468 185 460 118T422 23Q382 -10 289 -10H262H235Q142 -10 102 23Q74 50 65 118T56 306Q56 427 64 494T102 588ZM363 513Q357 523 347 530T324 540T302 544T280 546H268Q192 546 167 521Q150 501 145 452T140 300Q140 235 142 197T151 130T172 89T207 71T262 65Q317 65 341 81T374 144T384 300Q384 474 363 513'], + + // LATIN CAPITAL LETTER P + 0x50: [612,-1,525,19,480,'41 1Q19 9 19 32V38Q19 63 36 73Q42 76 65 76H89V535H65H55Q38 535 29 543T19 576Q19 603 41 610H49Q57 610 70 610T100 610T136 611T175 611Q190 611 216 611T255 612Q321 612 363 598T441 537Q480 486 480 427V421Q480 354 447 311T378 251Q339 230 275 230H239H173V76H197Q220 76 227 73Q244 62 244 38Q244 10 222 1H41ZM396 421Q396 461 369 491T300 533Q294 534 233 535H173V306H233Q294 307 300 308Q345 319 370 352T396 421'], + + // LATIN CAPITAL LETTER Q + 0x51: [622,138,525,56,468,'56 306Q56 380 58 426T68 510T87 568T120 600T170 617T240 621Q323 621 335 620Q393 613 422 588Q450 560 459 493T468 306Q468 124 447 66Q433 23 394 6L424 -53Q454 -112 454 -118Q454 -128 441 -138H377Q367 -135 363 -129T333 -69L304 -11H254Q205 -10 180 -8T128 6T91 36T70 92T58 178T56 306ZM227 151Q227 171 262 171H276H281Q292 171 296 171T305 170T313 165T317 158T323 145T332 127L353 88Q356 88 361 95T372 131T382 202Q384 228 384 306Q384 452 371 492T304 544Q296 545 251 545Q230 545 215 543T188 534T169 520T155 497T147 466T143 423T141 371T140 306Q140 248 141 217T146 154T157 109T178 83T212 68T262 65H266L264 70Q261 75 256 85T247 105Q227 145 227 151'], + + // LATIN CAPITAL LETTER R + 0x52: [612,11,525,16,522,'16 571Q16 598 27 605T76 612Q84 612 108 612T148 611Q268 611 294 605Q346 592 389 550T432 440Q432 394 410 359Q393 329 366 310L358 303Q387 273 399 239Q405 219 405 178T408 106T421 68Q426 65 428 65Q433 65 435 74T438 96T441 112Q450 130 480 130H485Q519 130 522 100Q522 79 516 56T488 11T434 -11Q421 -11 408 -8T377 5T344 37T324 93Q322 101 322 154L321 209Q304 257 257 267Q252 268 207 268H165V76H186H192Q204 76 211 75T224 64T230 38Q230 10 208 1H39Q28 5 23 11T18 21T17 38V44Q17 66 33 73Q40 76 60 76H81V535H60Q45 535 38 536T24 545T16 571ZM348 440Q348 478 321 502T260 532Q252 534 208 535H165V344H208Q212 344 223 344T239 345T252 346T266 348T278 351T293 358Q348 387 348 440'], + + // LATIN CAPITAL LETTER S + 0x53: [622,11,525,51,472,'52 454Q52 524 107 572T229 621Q266 621 274 620Q326 610 360 588L371 581Q377 594 379 598T386 610T397 619T412 622Q433 622 439 610T446 570Q446 563 446 545T445 515V479Q445 441 444 432T436 417Q428 408 403 408T370 417Q361 424 361 434Q361 439 360 448T351 476T331 509T295 535T238 546Q194 546 163 522T132 458Q132 435 148 412Q155 401 166 393T192 380T218 371T247 364T270 359Q341 342 349 339Q389 325 418 296T461 229Q472 201 472 164Q469 92 417 41T287 -11Q240 -11 200 -1T143 19L126 29Q117 6 109 -2Q100 -11 84 -11Q64 -11 58 1T51 42Q51 49 51 66T52 95V135Q52 173 53 180T61 194Q70 203 95 203Q119 203 127 194Q136 186 136 168Q143 66 284 66H290Q325 66 350 85Q391 115 391 165Q391 204 369 228T322 260Q320 260 255 275T185 293Q123 309 88 355T52 454'], + + // LATIN CAPITAL LETTER T + 0x54: [612,-1,525,26,498,'129 38Q129 51 129 55T135 65T151 76H220V535H110V501Q110 470 109 464T101 450Q93 442 68 442H60Q37 442 28 461Q26 466 26 527L27 589Q36 607 49 610H55Q61 610 72 610T97 610T131 610T170 611T215 611T264 611H476Q478 609 483 606T489 602T493 598T496 593T497 586T498 576T498 562V526V488Q498 452 480 444Q476 442 456 442Q431 442 423 450Q416 457 415 463T414 501V535H304V76H374Q389 67 392 61T396 38Q396 10 374 1H151Q140 5 135 11T130 21T129 38'], + + // LATIN CAPITAL LETTER U + 0x55: [612,11,525,-4,528,'-3 573Q-3 597 8 604T50 612Q57 612 77 612T111 611H200Q214 602 218 595T222 573Q222 549 205 538Q198 535 175 535H151V359Q151 333 151 291Q152 177 156 162Q157 160 157 159Q165 123 193 95T262 66Q303 66 330 94T367 159Q371 175 371 191T373 359V535H349H339Q328 535 322 537T309 548T303 573T306 595T325 611H506Q520 602 524 595T528 573Q528 549 511 538Q504 535 481 535H457V364Q457 189 456 182Q448 101 394 45T262 -11Q189 -11 132 43T68 182Q67 189 67 364V535H43H33Q22 535 16 537T3 548T-3 573'], + + // LATIN CAPITAL LETTER V + 0x56: [613,7,525,19,505,'19 578Q19 585 20 590T23 598T29 604T38 608T48 610T62 611T78 612T97 611T119 611H195Q210 602 213 596T217 573Q217 561 216 555T206 542T179 535H164Q166 529 188 435T235 231T261 94L262 84V88Q263 91 263 94Q265 121 289 231T336 438L360 535H345Q308 535 308 566V573Q308 586 308 590T314 600T330 611H484Q499 602 502 595T505 573Q505 560 504 554T493 541T465 535H447L384 278Q321 19 319 14Q309 -7 278 -7H262H246Q215 -7 205 14Q203 19 140 278L78 535H59Q45 535 38 536T25 547T19 573V578'], + + // LATIN CAPITAL LETTER W + 0x57: [611,7,525,12,512,'459 611Q491 611 501 605T512 573Q512 538 482 535H474L439 276Q406 26 402 11Q398 2 389 -3Q387 -3 386 -4L380 -7H359H349Q324 -7 313 13Q307 29 285 139T263 275Q263 283 262 283Q261 282 261 274Q261 248 239 137T211 13Q200 -7 175 -7H165H144Q136 -3 127 3Q121 10 117 36T85 276L50 535H42Q26 536 19 545T12 564V573Q12 603 33 610Q37 611 101 611H134Q165 611 175 604T186 573Q186 563 186 559T182 547T169 538T143 535H122V531Q124 517 133 446T155 266T172 96V84L173 102Q176 157 192 243T215 346Q227 367 259 367H262H265Q297 367 309 346Q316 329 332 243T351 102L352 84V96Q356 161 368 266T390 444T402 531V535H381Q366 535 359 536T345 547T338 573Q338 600 356 608Q362 611 425 611H459'], + + // LATIN CAPITAL LETTER X + 0x58: [611,-1,525,28,495,'39 571Q39 597 49 604T93 611H141H218Q233 602 236 595T239 573Q239 538 210 535Q202 535 202 534T215 507T243 454L257 428L307 535H298Q266 538 266 573Q266 584 267 588T273 598T289 611H366H401Q442 611 454 605T466 573Q466 546 448 538Q442 535 421 535H398L299 327Q299 323 362 201L426 77L449 76Q467 76 475 75T489 65T495 38Q495 11 477 3Q473 1 395 1H317Q295 8 295 38Q295 73 325 76L334 77Q333 78 314 117T276 196L257 235L239 196Q221 157 204 118T186 77Q190 76 196 76Q211 74 218 67T227 55T228 38Q228 28 227 24T221 13T206 1H50Q28 9 28 32V38Q28 63 45 73Q51 76 73 76H96L214 324Q215 327 162 431L108 535H85H79Q67 535 60 536T46 546T39 571'], + + // LATIN CAPITAL LETTER Y + 0x59: [611,-1,525,20,505,'20 573Q20 597 30 604T72 611H121H198Q212 602 216 595T220 573Q220 568 219 563T217 555T214 549T211 544T207 541T203 538T198 537T194 536T190 536L188 535Q179 535 179 534L188 516Q196 497 208 470T232 415T252 363T261 332Q261 329 262 329T263 332Q263 354 333 508L345 534Q345 535 336 535Q305 538 305 567V573Q305 589 308 595T327 611H483Q505 598 505 573Q505 549 488 538Q481 535 460 535H438L304 245V76H325H331Q343 76 350 75T363 64T369 38Q369 10 347 1H178Q167 5 162 11T157 21T156 38V44Q156 66 172 73Q180 76 199 76H220V245L86 535H64Q44 535 36 538Q20 548 20 573'], + + // LATIN CAPITAL LETTER Z + 0x5A: [612,-1,525,48,481,'71 1Q60 5 55 11T49 23T48 39V46Q48 56 58 73T131 183Q171 242 197 282L366 535H144V501Q144 470 143 464T135 450Q127 442 102 442H94Q71 442 62 461Q60 466 60 527L61 589Q70 607 83 610H88Q93 610 102 610T124 610T154 610T188 611T227 611T270 611H454Q456 609 461 606T467 601T471 597T474 591T475 584T476 572V565Q476 555 466 538T393 428Q353 369 327 329L158 76H397V120V146Q397 169 405 179T439 189Q470 189 479 169Q481 164 481 95V48Q481 24 478 16T459 1H71'], + + // LEFT SQUARE BRACKET + 0x5B: [694,82,525,214,484,'237 -82Q221 -78 214 -58V305Q214 669 216 673Q220 687 231 690T278 694H350H461Q462 693 467 690T474 685T478 679T482 670T483 656Q483 632 471 625T428 617Q422 617 406 617T379 618H298V-7H379H420Q459 -7 471 -13T483 -45Q483 -55 483 -59T477 -70T461 -82H237'], + + // REVERSE SOLIDUS + 0x5C: [694,83,525,58,466,'58 659Q58 673 68 683T93 694Q114 694 125 673Q132 659 297 314T464 -36Q466 -44 466 -48Q466 -66 454 -74T431 -83Q410 -83 399 -62Q391 -47 226 298T60 648Q58 656 58 659'], + + // RIGHT SQUARE BRACKET + 0x5D: [695,82,525,41,310,'41 656Q41 681 53 688T99 695Q107 695 133 695T177 694H288Q307 681 310 669V-58Q303 -76 288 -82H64Q41 -73 41 -45Q41 -21 53 -14T96 -6Q102 -6 118 -6T145 -7H226V618H145H100Q67 618 54 625T41 656'], + + // CIRCUMFLEX ACCENT + 0x5E: [611,-460,525,96,428,'138 460Q121 460 109 479T96 512Q96 527 106 534Q109 536 178 571T253 609Q256 611 264 611Q272 610 343 574Q357 567 369 561T389 550T402 543T411 538T416 535T420 532T422 529T425 525Q428 518 428 512Q428 498 416 479T386 460H384Q377 460 316 496L262 526L208 496Q147 460 138 460'], + + // LOW LINE + 0x5F: [-25,95,525,57,468,'57 -60Q57 -33 86 -25H438Q468 -34 468 -60T438 -95H86Q57 -86 57 -60'], + + // GRAVE ACCENT + 0x60: [681,-357,525,176,350,'176 479Q176 563 227 622T310 681Q324 680 337 667T350 641Q350 627 340 619T312 599T280 566Q256 531 252 485V471Q261 472 262 472Q285 472 302 455T320 414Q320 389 303 373T261 357Q223 357 200 391T176 479'], + + // LATIN SMALL LETTER A + 0x61: [439,6,525,48,524,'126 306Q105 306 90 321T74 359Q74 439 211 439Q268 439 276 438Q343 426 383 390T430 306Q431 301 431 190V81Q446 79 465 78T492 76T509 72T521 60T524 38Q524 11 506 3Q502 1 466 1Q426 1 406 5T379 14T355 36L345 30Q284 -6 205 -6Q135 -6 92 39T48 141Q48 182 79 212T158 256T252 278T342 285H347V290Q347 315 325 335T267 362Q258 363 224 363Q189 363 185 362H179L178 358Q178 353 178 352T176 345T174 337T170 330T165 322T158 316T150 311T139 308T126 306ZM132 140Q132 115 157 93T224 70Q269 70 302 87T344 133Q346 139 347 175V211H339Q256 209 194 190T132 140'], + + // LATIN SMALL LETTER B + 0x62: [611,6,525,4,492,'4 573Q4 596 15 603T52 611H90H124Q146 611 155 608T171 591Q173 586 173 491V396L182 402Q217 424 256 431Q280 437 309 437Q376 437 434 379T492 217Q492 162 473 118T422 47T358 8T293 -6Q229 -6 174 38Q171 13 163 7T135 1H131H122Q99 1 90 23L89 279V535H58L27 536Q4 543 4 573ZM409 215Q409 269 377 315T283 361Q255 361 224 344T177 297L173 290V167Q189 124 213 97T278 70Q330 70 369 111T409 215'], + + // LATIN SMALL LETTER C + 0x63: [440,6,525,66,466,'291 -6Q196 -6 131 60T66 216Q66 296 119 361Q154 403 200 421T273 439Q275 440 293 440H313Q400 440 433 409Q454 388 454 359Q454 335 439 321T402 306Q380 306 365 321T350 357V362L340 363Q339 363 326 363T303 364Q280 364 266 362Q217 352 184 313T151 215Q151 153 199 112T313 70Q341 70 357 85T381 118T394 140Q402 146 424 146Q443 146 447 144Q466 137 466 117Q466 106 457 88T429 47T374 10T291 -6'], + + // LATIN SMALL LETTER D + 0x64: [611,6,525,31,520,'266 573Q266 596 277 603T314 611H352H385Q411 611 419 607T435 586V76H498Q512 67 516 60T520 38Q520 9 498 1H436Q429 1 417 1T398 0Q375 0 363 7T351 34V43L342 36Q288 -6 223 -6Q143 -6 87 58T31 216Q31 307 88 372T230 437Q292 437 342 405L351 399V535H320L289 536Q266 543 266 573ZM351 290Q347 302 337 316T302 346T244 361Q193 361 154 319T115 215Q115 152 152 111T235 70Q314 70 351 170V290'], + + // LATIN SMALL LETTER E + 0x65: [440,6,525,48,465,'48 217Q48 295 100 361T248 439L258 440Q268 440 274 440Q329 438 369 416T428 359T456 292T464 228Q464 215 461 208T454 198T442 190L288 189H135L138 179Q153 132 199 102T303 71Q336 71 353 86T380 120T398 143Q404 146 422 146Q453 146 462 126Q464 120 464 116Q464 84 416 39T285 -6Q187 -6 118 59T48 217ZM377 264Q371 291 365 306T341 338T294 362Q288 363 264 363Q225 363 190 336T139 264H377'], + + // LATIN SMALL LETTER F + 0x66: [617,-1,525,35,437,'43 395Q44 405 44 408T47 416T53 423T66 431H176V461Q176 500 182 518Q201 570 252 593T353 617Q399 614 418 593T437 548Q437 528 424 514T387 499Q365 499 353 511T338 537V541H328Q275 536 261 494Q260 490 260 460V431H327Q334 431 346 431T364 432Q392 432 404 425T416 393T405 362T365 355H327H260V76H319Q375 76 388 71T401 38Q401 27 400 23T395 12T379 1H58Q47 6 42 12T36 23T35 38Q35 65 53 73Q59 76 117 76H176V355H121H93Q64 355 54 362T43 395'], + + // LATIN SMALL LETTER G + 0x67: [442,229,525,28,510,'60 274Q60 337 107 386T233 436Q278 436 316 417L329 410L338 416Q384 442 427 442T489 423T509 381T494 345T460 332Q449 332 440 338Q432 341 427 348T419 360T415 365Q414 364 410 364L383 355Q406 320 406 274Q406 211 358 162T233 112Q189 112 155 128L146 133Q142 125 142 115Q142 99 150 85T175 71Q182 72 187 70Q188 70 195 70T218 70T254 69Q259 69 275 69T297 69T318 68T340 66T361 62T384 57T405 49T428 38Q495 -1 495 -76Q495 -143 427 -186T262 -229Q161 -229 94 -185T29 -73Q30 -60 33 -48T39 -26T47 -8T57 8T67 20T77 30T86 38L91 43Q91 44 86 53T75 80T70 117Q70 142 89 183L83 194Q60 232 60 274ZM321 274Q321 312 296 337T230 362Q197 362 171 338T145 274Q145 235 170 211T233 187Q273 187 297 212T321 274ZM422 -78Q422 -54 408 -38T366 -15T315 -6T255 -4H200Q198 -4 193 -4T183 -3Q148 -3 125 -26T102 -78Q102 -110 151 -132T261 -154Q321 -154 371 -132T422 -78'], + + // LATIN SMALL LETTER H + 0x68: [611,-1,525,4,520,'4 573Q4 596 15 603T52 611H90H124Q146 611 155 608T171 591Q173 586 173 489Q173 394 175 394L186 402Q197 410 219 420T269 434Q278 436 306 436Q343 436 371 423Q411 402 423 365T436 265Q436 257 436 239T435 211V198V76H498Q512 67 516 60T520 38Q520 9 498 1H308Q286 10 286 32V38V46Q286 65 303 73Q309 76 329 76H351V188Q351 204 351 230T352 266Q352 321 341 341T288 361Q253 361 222 341T176 274L174 264L173 170V76H236Q250 67 254 60T258 38Q258 9 236 1H27Q4 8 4 38Q4 53 8 60T27 76H89V535H58L27 536Q4 543 4 573'], + + // LATIN SMALL LETTER I + 0x69: [612,-1,525,72,462,'202 538T202 559T218 596T260 612Q283 612 300 597T317 560Q317 538 300 523T260 507Q235 507 219 522ZM411 76Q441 76 451 69T462 38Q462 29 462 26T460 18T453 9T440 1H94Q72 8 72 33V38Q72 46 72 49T74 58T81 68T94 76H233V355H167L102 356Q80 363 80 393Q80 418 91 425T138 432Q145 432 165 432T200 431H295Q297 429 303 425T310 420T314 415T317 404T317 389T318 363Q318 354 318 314T317 241V76H378H411'], + + // LATIN SMALL LETTER J + 0x6A: [612,228,525,48,377,'261 559Q261 580 277 596T319 612Q342 612 359 597T376 560T360 523T320 507Q296 507 279 523T261 559ZM75 -91T100 -91T138 -107T152 -144V-150L160 -151H193H203Q241 -151 267 -121Q284 -97 288 -73T292 23V151V355H218L145 356Q123 365 123 387V393Q123 422 145 430H148Q151 430 156 430T169 430T185 430T205 431T227 431T251 431H354Q356 430 360 427T365 424T369 420T372 416T373 410T375 402T376 391T377 376T377 356Q377 345 377 286T376 176Q376 -67 371 -88Q362 -123 342 -151T299 -194Q254 -228 180 -228Q84 -226 56 -177Q49 -162 48 -148Q48 -122 61 -107'], + + // LATIN SMALL LETTER K + 0x6B: [611,0,525,13,507,'13 42Q13 63 23 69T69 76H102V535H69H54Q34 535 24 542T13 573Q13 588 15 593Q22 605 29 608T56 611H95Q113 611 122 611T140 610T152 609T159 607T163 603T167 597T173 589V413L174 237L295 355H275Q260 355 253 356T239 367T232 393Q232 419 243 425T304 431H359H464Q479 422 482 415T485 393Q485 364 464 356L431 355H398L293 254L427 76H486Q501 67 504 60T507 38Q507 28 507 24T501 12T486 1H314Q292 8 292 38Q292 62 308 73Q312 75 326 76L338 77L290 140Q279 154 267 171T248 196L242 204L207 171L173 139V76H206H221Q241 76 251 69T262 38Q262 11 244 3Q240 1 138 1Q123 1 100 1T70 0Q32 0 23 7T13 42'], + + // LATIN SMALL LETTER L + 0x6C: [612,-1,525,51,474,'51 573Q51 602 73 610H76Q79 610 84 610T97 610T113 610T133 611T155 611T179 611H282Q301 598 304 586V76H452Q466 67 470 60T474 38Q474 10 452 1H73Q51 9 51 32V38Q51 54 54 60T73 76H220V535H146L73 536Q51 545 51 567V573'], + + // LATIN SMALL LETTER M + 0x6D: [437,-1,525,-12,536,'133 76Q156 74 164 67T172 38Q172 9 151 1H11Q-12 8 -12 38Q-12 61 5 73Q10 75 28 76H45V355H28Q10 356 5 358Q-12 370 -12 393Q-12 419 11 431H52H70Q91 431 100 427T116 405Q163 436 200 436Q255 436 281 390L285 394Q289 398 292 400T301 407T314 415T329 423T346 429T366 434T389 436H392Q425 436 448 411Q469 390 474 360T480 268V232V203V76H497Q520 74 528 67T536 38Q536 9 515 1H396Q374 9 374 32V38Q374 73 402 76H409V191V242Q409 317 404 339T375 361Q343 361 323 332T299 264Q298 258 298 165V76H315Q338 74 346 67T354 38Q354 9 333 1H214Q192 9 192 32V38Q192 73 220 76H227V191V242Q227 317 222 339T193 361Q161 361 141 332T117 264Q116 258 116 165V76H133'], + + // LATIN SMALL LETTER N + 0x6E: [436,-1,525,4,520,'89 431Q94 431 105 431T122 432Q173 432 173 399Q173 394 175 394Q176 394 190 404T233 425T298 436Q343 436 371 423Q411 402 423 365T436 265Q436 257 436 239T435 211V198V76H498Q512 67 516 60T520 38Q520 9 498 1H308Q286 9 286 32V38V45Q286 65 303 73Q309 76 329 76H351V188Q351 204 351 230T352 266Q352 321 341 341T288 361Q253 361 222 341T176 274L174 264L173 170V76H236Q250 67 254 60T258 38Q258 9 236 1H27Q4 8 4 38Q4 53 8 60T27 76H89V355H58L27 356Q4 363 4 393Q4 408 8 415T27 431H89'], + + // LATIN SMALL LETTER O + 0x6F: [440,6,525,52,472,'52 216Q52 318 118 379T261 440Q343 440 407 378T472 216Q472 121 410 58T262 -6Q176 -6 114 58T52 216ZM388 225Q388 281 351 322T261 364Q213 364 175 325T136 225Q136 158 174 114T262 70T350 114T388 225'], + + // LATIN SMALL LETTER P + 0x70: [437,221,525,4,492,'89 431Q93 431 104 431T121 432Q173 432 173 401V396L182 402Q237 437 305 437Q376 437 434 378T492 217Q492 146 459 93T382 17T291 -6Q261 -6 232 5T188 26L174 37Q173 37 173 -54V-146H236Q250 -155 254 -162T258 -184Q258 -213 236 -221H27Q4 -214 4 -184Q4 -169 8 -162T27 -146H89V355H58L27 356Q4 363 4 393Q4 408 8 415T27 431H89ZM409 215Q409 269 377 315T283 361Q255 361 224 344T177 297L173 290V167Q189 124 213 97T278 70Q330 70 369 111T409 215'], + + // LATIN SMALL LETTER Q + 0x71: [437,222,525,34,545,'34 215Q34 309 91 368T222 436Q224 436 231 436T242 437Q309 437 372 390V401Q372 419 381 428T414 437Q426 437 432 436T444 430T456 412V-146H489H504Q524 -146 534 -153T545 -184Q545 -211 527 -219Q523 -221 414 -221Q398 -221 374 -221T342 -222Q304 -222 294 -216T283 -184Q283 -157 301 -149Q307 -146 339 -146H372V-51Q372 43 371 43L364 38Q357 33 345 26T318 12T280 -1T236 -6Q155 -6 95 55T34 215ZM117 215Q117 152 157 111T250 70Q289 70 318 92T363 146Q372 163 372 192V215L371 263Q339 360 254 360Q206 360 162 321T117 215'], + + // LATIN SMALL LETTER R + 0x72: [437,-1,525,24,487,'327 76Q359 76 369 70T380 38Q380 10 359 1H47Q24 8 24 38Q24 54 28 61T47 76H145V355H96L47 356Q24 363 24 393Q24 409 28 416T47 431H207Q223 419 226 414T229 393V387V369Q297 437 394 437Q436 437 461 417T487 368Q487 347 473 332T438 317Q428 317 420 320T407 327T398 337T393 347T390 356L388 361Q348 356 324 345Q228 299 228 170Q228 161 228 151T229 138V76H293H327'], + + // LATIN SMALL LETTER S + 0x73: [440,6,525,71,458,'72 317Q72 361 108 396T229 439Q231 439 245 439T268 440Q303 439 324 435T353 427T363 423L372 432Q380 440 397 440Q430 440 430 395Q430 390 430 380T429 366V335Q429 311 422 302T387 293Q364 293 355 300T346 316T343 336T325 353Q306 364 257 364Q209 364 178 351T147 317Q147 284 231 272Q327 256 357 247Q458 210 458 129V121Q458 74 413 34T271 -6Q246 -6 224 -3T189 5T165 14T150 22T144 26Q142 23 139 18T135 11T132 6T128 1T124 -2T119 -4T113 -5T104 -6Q84 -6 78 6T71 43Q71 48 71 60T72 79Q72 132 73 141T81 157Q90 166 115 166Q135 166 142 162T157 140Q168 108 191 90T260 70Q297 70 323 76T361 91T379 110T384 129Q384 157 346 171T247 195T165 212Q119 228 96 256T72 317'], + + // LATIN SMALL LETTER T + 0x74: [554,6,525,25,448,'25 395Q26 405 26 408T29 416T35 423T48 431H145V481L146 532Q154 547 161 550T184 554H189Q218 554 227 534Q229 529 229 480V431H405Q406 430 411 427T418 422T422 416T426 407T427 393Q427 387 427 382T424 374T421 368T417 363T413 360T408 358L405 356L317 355H229V249Q229 237 229 214T228 179Q228 126 241 98T295 70Q354 70 365 149Q366 167 375 174Q383 182 407 182H415Q438 182 446 166Q448 161 448 148Q448 84 398 39T282 -6Q226 -6 189 29T146 128Q145 134 145 247V355H96H72Q45 355 35 362T25 395'], + + // LATIN SMALL LETTER U + 0x75: [431,5,525,4,520,'4 393Q4 416 15 423T52 431H90Q141 431 151 429T168 417Q171 412 173 409V254L174 100Q182 70 244 70Q320 70 344 119Q349 130 350 144T351 248V355H320L289 356Q266 363 266 393Q266 408 270 415T289 431H351H386Q409 431 418 428T433 411Q435 406 435 241V76H498Q512 67 516 60T520 38Q520 9 498 1H436H394Q372 1 364 5T351 26L342 21Q293 -5 227 -5Q118 -5 96 67Q91 82 90 101T89 227V355H58L27 356Q4 363 4 393'], + + // LATIN SMALL LETTER V + 0x76: [432,4,525,24,500,'24 392Q24 417 36 424T79 432Q85 432 103 432T132 431H215Q229 422 233 415T237 393Q237 355 198 355H193H172L262 77L352 355H331H323Q288 355 288 393Q288 409 291 415T310 431H478Q491 423 495 416T500 393Q500 364 478 356L452 355H426L374 190Q320 24 318 20Q307 -4 273 -4H262H251Q217 -4 206 20Q204 24 150 190L98 355H72L47 356Q24 363 24 392'], + + // LATIN SMALL LETTER W + 0x77: [431,4,525,16,508,'54 355Q16 355 16 388V393Q16 423 37 430Q41 431 125 431H162Q206 431 218 425T230 393Q230 366 212 358Q206 355 174 355Q141 355 141 354L150 296Q181 110 181 89V84Q182 85 183 96Q185 118 199 173T218 237Q223 247 245 259H264H268Q294 259 309 240Q315 229 329 174T343 92Q343 84 344 84V86Q344 88 344 91T345 97Q347 125 356 187T374 301T383 354Q383 355 350 355H333Q314 355 304 362T294 393Q294 420 312 428Q318 431 401 431H440Q485 431 496 425T508 393Q508 382 508 377T498 363T470 355L455 354Q455 353 441 271T413 104T396 16Q384 -4 355 -4H351Q315 -4 305 9T280 79Q278 90 276 96Q265 149 265 169Q265 176 264 169Q263 166 263 162Q261 130 248 79T230 18Q220 -4 183 -4H175L151 -3Q134 5 127 17L112 102Q97 188 83 270T69 354Q62 355 54 355'], + + // LATIN SMALL LETTER X + 0x78: [432,-1,525,29,495,'35 393Q35 417 46 424T89 432Q95 432 112 432T141 431H223Q238 422 241 415T244 393Q244 389 244 383T237 367T216 355Q209 355 209 354L234 319Q259 286 260 286L308 354Q308 355 301 355Q285 356 278 365T270 384L271 393Q271 420 289 428Q295 431 376 431H459Q460 430 465 427T472 422T476 416T480 407T481 393Q481 368 470 362T434 355H425H392L344 290Q295 225 295 223Q294 223 309 203T350 149L405 77L439 76H453Q474 76 484 69T495 38Q495 10 473 1H303Q281 9 281 32V38Q281 49 282 54T290 67T313 76Q324 76 324 77L259 173L197 77Q202 76 209 76Q225 75 233 68T241 55T242 38Q242 28 242 24T236 12T221 1H51Q29 9 29 32V38Q29 48 29 51T31 59T38 67T51 76H117L171 149Q224 222 224 223L124 355H90H78Q54 355 45 361T35 393'], + + // LATIN SMALL LETTER Y + 0x79: [431,228,525,26,501,'26 393Q26 417 37 424T80 431H134H217Q232 422 235 416T239 393Q239 379 236 371T226 360T214 356T197 355L179 354V353L188 330Q197 306 209 272T235 201T259 133T271 89V84L274 95Q279 122 298 185T335 300T352 354Q352 355 331 355Q312 355 304 358Q288 368 288 393Q288 408 291 415T310 431H478Q479 430 484 427T491 422T495 416T499 407T500 393Q500 376 493 367T479 357T458 355H452Q426 355 425 353Q420 337 351 124T280 -94Q240 -195 168 -220Q147 -228 125 -228Q89 -228 66 -201T42 -139Q42 -116 56 -102T93 -87Q117 -87 130 -102T144 -135V-138H126Q121 -148 121 -150T130 -152Q182 -147 207 -87Q211 -78 223 -40T236 1Q230 10 102 355H75L49 356Q26 363 26 393'], + + // LATIN SMALL LETTER Z + 0x7A: [432,-1,525,34,475,'56 1Q40 7 37 14T34 41Q34 59 36 64Q39 67 43 73Q65 95 191 213T341 355H133V334Q133 306 124 297Q116 289 91 289H83Q60 289 51 308Q49 313 49 361L50 409Q59 427 72 430H78Q83 430 92 430T115 430T144 430T179 431T219 431T262 431H450Q452 430 455 428T459 424T463 422T466 419T468 416T469 413T470 409T471 404T472 398T472 391Q472 374 469 368L462 358Q453 349 315 218Q210 122 164 76H391V103Q391 136 400 146Q409 155 433 155Q464 155 473 135Q475 130 475 78V46Q475 24 472 16T453 1H56'], + + // LEFT CURLY BRACKET + 0x7B: [694,83,525,50,475,'430 -7H436Q449 -7 456 -8T469 -19T475 -45Q475 -69 466 -76T434 -83H419Q386 -82 363 -80T308 -69T253 -41T223 7L221 17L220 118V220L218 224Q215 229 214 230T210 235T204 241T195 246T184 252T170 257T151 262T127 265Q118 267 100 267T69 270T52 283Q50 288 50 306V314Q50 335 67 341Q68 342 102 343T172 355T217 386L220 392V493L221 595Q225 611 230 621T251 650T304 679T395 693L406 694Q418 694 426 694Q458 694 466 685Q475 676 475 656T466 627Q458 618 430 618Q319 618 305 587L304 486Q304 476 304 458T305 431Q305 385 295 358T251 311L243 306Q243 305 254 298T281 274T302 231Q304 223 304 125L305 25Q309 16 316 10T352 -1T430 -7'], + + // VERTICAL LINE + 0x7C: [694,82,525,228,297,'228 668Q241 694 262 694Q268 694 273 693T282 688T287 682T293 674L297 668V-57Q282 -82 262 -82Q239 -82 228 -57V668'], + + // RIGHT CURLY BRACKET + 0x7D: [694,83,525,49,475,'49 655Q49 674 56 682T73 692T106 694Q141 693 167 690T224 677T275 647T303 595L305 392Q313 367 347 356T417 344T457 341Q475 335 475 306Q475 292 473 285T464 273T451 269T430 267Q352 262 327 246Q311 236 305 220L303 17L301 7Q294 -16 277 -33T242 -60T196 -74T150 -80T106 -83Q78 -83 72 -82T58 -74Q49 -65 49 -44Q49 -24 58 -16Q66 -7 94 -7Q143 -7 171 -1T207 10T220 25V125Q220 223 222 231Q228 257 243 274T270 299L281 306Q234 329 222 381Q220 387 220 486V587Q212 597 207 601T173 612T94 618Q66 618 58 627Q49 635 49 655'], + + // TILDE + 0x7E: [611,-466,525,87,437,'125 467Q113 467 100 480T87 509Q88 520 111 543Q172 602 209 609Q219 611 224 611Q246 611 263 596T290 566T304 551Q319 551 367 594Q383 610 396 610H400Q411 610 424 597T437 568Q436 557 413 534Q348 469 305 466Q278 466 260 481T234 511T220 526Q205 526 157 483Q141 467 129 467H125'], + + // ?? + 0x7F: [612,-519,525,104,421,'104 565Q104 590 120 600T155 611Q175 611 180 610Q217 599 217 565Q217 545 202 532T166 519H159H155Q120 519 107 547Q104 553 104 565ZM307 565Q307 580 317 593T346 610Q348 610 350 610T354 611Q355 612 367 612Q395 611 408 597T421 565T409 534T365 519H358Q336 519 322 532T307 565'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/BasicLatin.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js new file mode 100644 index 0000000..0f1ef91 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js @@ -0,0 +1,53 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Typewriter/Regular/CombDiacritMarks.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Typewriter'], + { + // COMBINING GRAVE ACCENT + 0x300: [611,-485,0,-409,-195,'-409 569Q-409 586 -399 596T-377 610Q-376 610 -372 610T-365 611Q-355 610 -284 588T-210 563Q-195 556 -195 537Q-195 533 -197 522T-208 498T-229 485Q-238 485 -312 508T-388 533Q-400 538 -405 552Q-409 559 -409 569'], + + // COMBINING ACUTE ACCENT + 0x301: [611,-485,0,-331,-117,'-297 485Q-315 485 -323 505T-331 537Q-331 556 -316 563Q-307 569 -170 610Q-169 610 -165 610T-157 611Q-141 609 -131 600T-119 584T-117 569Q-117 555 -124 545T-138 533Q-140 531 -214 508T-297 485'], + + // COMBINING CIRCUMFLEX ACCENT + 0x302: [611,-460,0,-429,-97,'-387 460Q-404 460 -416 479T-429 512Q-429 527 -419 534Q-416 536 -347 571T-272 609Q-269 611 -261 611Q-254 610 -182 574Q-168 567 -156 561T-136 550T-123 543T-114 538T-109 535T-105 532T-103 529T-100 525Q-97 518 -97 512Q-97 498 -109 479T-139 460H-141Q-148 460 -209 496L-263 526L-317 496Q-378 460 -387 460'], + + // COMBINING TILDE + 0x303: [611,-466,0,-438,-88,'-400 467Q-412 467 -425 480T-438 509Q-437 520 -414 543Q-353 602 -316 609Q-306 611 -301 611Q-279 611 -262 596T-235 566T-221 551Q-206 551 -158 594Q-142 610 -129 610H-125Q-114 610 -101 597T-88 568Q-89 557 -112 534Q-177 469 -220 466Q-247 466 -265 481T-291 511T-305 526Q-320 526 -368 483Q-384 467 -396 467H-400'], + + // COMBINING MACRON + 0x304: [578,-500,0,-452,-74,'-429 500Q-440 504 -445 511T-450 522T-452 536Q-452 552 -451 556Q-445 571 -434 574T-379 578Q-369 578 -330 578T-261 577H-96Q-94 575 -90 573T-85 569T-81 564T-77 558T-75 550T-74 538Q-74 522 -78 515T-96 500H-429'], + + // COMBINING BREVE + 0x306: [611,-504,0,-447,-79,'-446 579Q-446 611 -412 611H-407Q-383 609 -378 599T-358 587Q-340 583 -263 583H-235Q-159 583 -152 593Q-145 611 -120 611H-117H-115Q-79 611 -79 577Q-80 552 -95 536T-140 514T-191 506T-251 504H-263H-274Q-311 504 -334 505T-386 513T-431 536T-446 579'], + + // COMBINING DIAERESIS + 0x308: [612,-519,0,-421,-104,'-421 565Q-421 590 -405 600T-370 611Q-350 611 -345 610Q-308 599 -308 565Q-308 545 -323 532T-359 519H-366H-370Q-405 519 -418 547Q-421 553 -421 565ZM-218 565Q-218 580 -208 593T-179 610Q-177 610 -175 610T-171 611Q-170 612 -158 612Q-130 611 -117 597T-104 565T-116 534T-160 519H-167Q-189 519 -203 532T-218 565'], + + // COMBINING RING ABOVE + 0x30A: [619,-499,0,-344,-182,'-344 558Q-344 583 -321 601T-262 619Q-225 619 -204 600T-182 560Q-182 536 -205 518T-264 499Q-301 499 -322 519T-344 558ZM-223 559Q-223 570 -234 579T-261 588T-289 580T-303 559Q-303 549 -293 540T-263 530T-234 539T-223 559'], + + // COMBINING CARON + 0x30C: [577,-449,0,-427,-99,'-427 525Q-427 542 -417 559T-392 577Q-385 577 -323 553L-263 530L-203 553Q-143 576 -136 576Q-118 576 -109 559T-99 525Q-99 508 -107 502T-161 481Q-177 475 -186 472Q-256 449 -263 449Q-272 449 -339 472T-412 498Q-420 501 -423 508T-427 520V525'] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/CombDiacritMarks.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js new file mode 100644 index 0000000..7255fb2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js @@ -0,0 +1,34 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Typewriter/Regular/Main.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Typewriter'] = { + directory: 'Typewriter/Regular', + family: 'MathJax_Typewriter', + id: 'MJTT', + Ranges: [ + [0x0,0x7F,"BasicLatin"], + [0x80,0xFFFF,"Other"], + [0x300,0x36F,"CombDiacritMarks"] + ] + + +}; + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/Main.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js new file mode 100644 index 0000000..caf0a78 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js @@ -0,0 +1,77 @@ +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/svg/Typewriter/Regular/Other.js + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Hub.Insert( + MathJax.OutputJax.SVG.FONTDATA.FONTS['MathJax_Typewriter'], + { + // LATIN SMALL LETTER DOTLESS I + 0x131: [432,-1,525,72,462,'411 76Q441 76 451 69T462 38Q462 29 462 26T460 18T453 9T440 1H94Q72 8 72 33V38Q72 46 72 49T74 58T81 68T94 76H233V355H167L102 356Q80 363 80 393Q80 418 91 425T138 432Q145 432 165 432T200 431H295Q297 429 303 425T310 420T314 415T317 404T317 389T318 363Q318 354 318 314T317 241V76H378H411'], + + // LATIN SMALL LETTER DOTLESS J + 0x237: [432,228,525,48,377,'75 -91T100 -91T138 -107T152 -144V-150L160 -151H193H203Q241 -151 267 -121Q284 -97 288 -73T292 23V151V355H218L145 356Q123 365 123 387V393Q123 422 145 430H148Q151 430 156 430T169 430T185 430T205 431T227 431T251 431H354Q356 430 360 427T365 424T369 420T372 416T373 410T375 402T376 391T377 376T377 356Q377 345 377 286T376 176Q376 -67 371 -88Q362 -123 342 -151T299 -194Q254 -228 180 -228Q84 -226 56 -177Q49 -162 48 -148Q48 -122 61 -107'], + + // GREEK CAPITAL LETTER GAMMA + 0x393: [611,0,525,25,488,'466 611Q468 609 473 606T479 602T483 598T486 593T487 586T488 576T488 562V526V488Q488 452 470 444Q466 442 446 442Q421 442 413 450Q406 457 405 463T404 501V535H185V76H222H239Q260 76 270 69T281 38Q281 12 270 6T209 0H155H104Q48 0 37 5T25 38Q25 59 35 69Q44 76 76 76H101V535H76H64Q36 535 27 552Q25 557 25 573T27 594Q33 606 43 608T106 611H258H466'], + + // GREEK CAPITAL LETTER DELTA + 0x394: [623,0,525,35,489,'232 622H237Q242 622 249 622T264 623H293Q295 622 300 619T308 613T314 608T319 601Q322 597 405 316T489 19Q489 9 473 1Q471 0 262 0T51 1Q35 9 35 19Q35 34 118 315T205 601Q214 616 232 622ZM267 501Q266 504 265 510T263 521T261 526V523Q261 508 211 332Q142 91 138 82H386Q385 84 345 224Q281 439 267 501'], + + // GREEK CAPITAL LETTER THETA + 0x398: [621,10,525,56,468,'102 588Q140 621 240 621Q323 621 335 620Q393 613 422 588Q450 560 459 493T468 306Q468 185 460 118T422 23Q382 -10 289 -10H262H235Q142 -10 102 23Q74 50 65 118T56 306Q56 427 64 494T102 588ZM262 66Q285 66 300 67T329 74T351 86T366 108T376 138T381 181T383 235T384 306Q384 452 371 492T304 544Q296 545 251 545Q230 545 215 543T188 534T169 520T155 497T147 466T143 423T141 371T140 306Q140 247 141 215T146 151T158 107T179 82T212 69T262 66ZM179 356Q187 378 219 378H223Q240 377 249 372T260 360L261 355Q261 353 262 353T263 355Q263 362 272 369Q280 377 304 377H310Q325 377 331 374T346 356V256Q338 241 331 238T309 234H304Q280 234 272 242Q263 249 263 256Q263 258 262 258T261 256Q261 249 252 242Q244 234 220 234H216Q186 234 179 256V356'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [623,-1,525,30,495,'30 38Q30 57 38 66T70 76Q88 76 88 78Q89 79 117 207T173 466T205 602Q213 617 231 622H236Q241 622 249 622T264 623H294Q315 609 319 602Q321 598 350 468T407 208T435 78Q436 76 454 76Q470 76 478 73Q495 62 495 38Q495 10 473 1H313Q290 10 290 38Q290 56 297 65T310 74T331 76Q350 76 350 78Q349 80 328 176T285 383T263 520Q263 526 262 527Q261 527 261 521Q261 497 240 388T198 181T174 78Q174 76 193 76Q220 75 227 65Q234 56 234 38Q234 28 234 24T228 13T212 1H52Q30 9 30 32V38'], + + // GREEK CAPITAL LETTER XI + 0x39E: [612,-1,525,33,491,'37 555V569Q37 605 60 610H66Q71 610 81 610T105 610T137 610T175 611T217 611T264 611H465Q467 609 471 606T477 602T481 599T484 594T485 588T487 580T487 570T487 554Q487 526 486 520T478 506Q470 498 445 498T412 506Q403 515 403 531V539H121V531Q121 498 86 498H79H71Q48 498 39 517Q37 522 37 555ZM109 318V346Q109 366 113 374T132 389H170Q193 379 193 359V354H331V359Q331 379 354 389H392Q407 381 411 373T415 342V318V290Q415 270 411 262T392 247H354Q331 257 331 277V282H193V277Q193 257 170 247H132Q117 255 113 263T109 294V318ZM56 1Q41 7 37 15T33 42V58V80Q33 101 41 110T77 119Q87 118 91 118T103 114T114 103T117 83V72H407V83Q407 101 416 110T449 119T482 110Q489 103 490 97T491 59V41Q491 24 487 16T469 1H56'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [611,-1,525,16,508,'60 535Q45 535 38 536T24 545T16 571Q16 603 36 609Q41 611 264 611H486Q501 602 504 596T508 573Q508 559 505 551T495 540T482 536T464 535H443V76H464H470Q482 76 489 75T502 64T508 38Q508 10 486 1H317Q306 5 301 11T296 21T295 38V44Q295 66 311 73Q318 76 338 76H359V535H165V76H186H192Q204 76 211 75T224 64T230 38Q230 10 208 1H39Q28 5 23 11T18 21T17 38V44Q17 66 33 73Q40 76 60 76H81V535H60'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [612,-1,525,39,484,'40 575Q40 576 40 579T41 583T41 588T43 593T46 597T50 602T55 606T63 610H68Q74 610 84 610T108 610T139 610T176 611T219 611T264 611H462Q464 609 469 606T475 602T479 598T482 593T483 586T484 576T484 562V526V488Q484 452 466 444Q462 442 442 442Q417 442 409 450Q402 457 401 463T400 501V535H153Q153 533 218 430Q233 405 250 378T276 336T286 319Q290 311 290 307Q290 296 239 211Q229 194 223 184L161 78H400V112Q400 142 401 149T409 163Q418 172 442 172Q473 172 482 152Q484 147 484 86V49Q484 25 481 17T462 1H63Q41 10 41 31Q41 39 43 44Q43 45 81 109T157 238L195 303Q195 307 119 430T41 557T40 575'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [623,-1,525,38,486,'38 494Q38 549 74 585T152 621Q168 621 179 619T209 606T241 566T262 492Q262 494 265 507T270 526T276 547T285 569T298 589T315 606T337 617T365 622Q416 622 451 584T486 494Q486 470 469 461Q464 459 445 459H437Q416 459 406 476Q404 479 403 502T393 541T365 558Q350 558 340 548T323 519T312 475T307 419T305 354T304 282Q304 254 304 239V76H358Q372 67 376 60T380 38Q380 10 358 1H167Q145 9 145 32V38Q145 54 148 60T167 76H220V239Q220 256 220 289T220 338T219 383T217 426T214 463T209 497T201 522T189 543T174 555Q168 558 159 558Q139 558 131 541T121 502T118 476Q108 459 84 459H79H71Q38 459 38 494'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [612,-1,525,41,483,'139 573V578Q139 603 161 610H166Q172 610 182 610T204 610T232 611T264 611H364Q379 602 382 595T385 573Q385 544 364 536L334 535H304V441H306Q313 440 325 438T367 426T421 403T464 364T483 306Q483 251 430 216T317 172Q315 172 313 172T308 170H306H304V76H364Q379 67 382 60T385 38Q385 28 385 24T379 12T364 1H161Q139 8 139 33V38Q139 46 139 49T141 58T148 68T161 76H220V170H218Q211 171 199 173T157 185T103 208T60 248T41 306Q41 361 94 396T208 439Q210 439 212 439T216 440L218 441H220V535H190L161 536Q139 543 139 573ZM124 306Q124 286 147 271T194 252L218 247Q220 247 220 306V364H218Q212 364 192 359T148 340T124 306ZM400 305Q400 325 377 340T330 360L306 364Q304 364 304 306Q304 247 306 247Q312 247 332 252T376 271T400 305'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [611,-1,525,37,487,'37 439Q38 451 40 457T52 469T77 475H79Q96 475 107 473T132 456T152 411Q152 409 153 396T154 372V365Q154 291 198 261Q215 251 219 251Q220 251 220 393V535H193L167 536Q145 545 145 567V573Q145 602 167 610Q168 611 264 611H358Q372 602 376 595T380 573Q380 545 358 536L331 535H304V393Q304 251 305 251Q307 251 310 252T323 259T339 272T355 295T367 331Q368 337 370 372Q370 382 371 395T372 411Q376 434 384 448T404 467T425 474T447 475Q461 474 467 473T480 463T487 437Q487 419 481 412Q476 403 459 398Q457 390 453 344T431 263Q415 228 383 205T332 177T306 172H304V76H358Q372 67 376 60T380 38Q380 10 358 1H167Q145 9 145 32V38Q145 54 148 60T167 76H220V172H218Q211 172 192 177T141 205T93 263Q74 298 71 343T67 391L66 398Q47 403 42 411T37 433V439'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [622,-1,525,32,492,'40 404Q40 498 106 560T258 622Q357 622 420 558T484 406Q484 359 469 311T428 205T392 117Q382 84 382 78Q382 76 402 76H421V87Q421 110 431 116T457 123Q474 123 483 114Q490 107 491 100T492 61V42Q492 11 474 3Q470 1 397 1H324Q302 9 302 32V39Q302 104 351 225T400 405Q400 462 361 504T262 546Q200 546 162 504T124 405Q124 346 171 230T223 42V36Q223 11 205 3Q201 1 128 1H55Q39 7 33 23L32 60V80Q32 94 34 102T44 116T68 123Q103 123 103 87V76H123Q142 76 142 78Q142 100 117 156T66 282T40 404'], + + // ?? + 0x7E2: [611,-287,525,175,349,'205 554Q205 577 221 594T263 611Q302 611 325 577T349 490Q349 409 298 347Q285 330 258 309T214 287Q203 289 189 302T175 327Q175 341 185 349T213 369T245 402Q269 437 273 483V497Q264 496 263 496Q240 496 223 513T205 554'], + + // ?? + 0x7E3: [681,-357,525,176,350,'176 479Q176 563 227 622T310 681Q324 680 337 667T350 641Q350 627 340 619T312 599T280 566Q256 531 252 485V471Q261 472 262 472Q285 472 302 455T320 414Q320 389 303 373T261 357Q223 357 200 391T176 479'], + + // PRIME + 0x2032: [623,-334,525,211,313,'211 572Q211 593 226 608T262 623Q281 623 297 610T313 573Q313 561 307 465Q301 370 299 357T284 336Q279 334 262 334Q240 334 231 343Q226 350 225 362T217 465Q211 549 211 572'], + + // INCREMENT + 0x2206: [623,0,525,35,489,''] + } +); + +MathJax.Ajax.loadComplete(MathJax.OutputJax.SVG.fontDir+"/Typewriter/Regular/Other.js"); diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/fontdata-extra.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/fontdata-extra.js new file mode 100644 index 0000000..4b29ca2 --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/fontdata-extra.js @@ -0,0 +1,239 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/fontdata-extra.js + * + * Adds extra stretchy characters to the TeX font data. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG) { + var VERSION = "2.3"; + + var DELIMITERS = SVG.FONTDATA.DELIMITERS; + + var MAIN = "MathJax_Main", + BOLD = "MathJax_Main-bold", + AMS = "MathJax_AMS", + SIZE1 = "MathJax_Size1", + SIZE4 = "MathJax_Size4"; + var H = "H", V = "V"; + + var delim = { + 0x003D: // equal sign + { + dir: H, HW: [[.767,MAIN]], stretch: {rep:[0x003D,MAIN]} + }, + 0x219E: // left two-headed arrow + { + dir: H, HW: [[1,AMS]], stretch: {left:[0x219E,AMS], rep:[0x2212,MAIN]} + }, + 0x21A0: // right two-headed arrow + { + dir: H, HW: [[1,AMS]], stretch: {right:[0x21A0,AMS], rep:[0x2212,MAIN]} + }, + 0x21A4: // left arrow from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x2190,MAIN], rep:[0x2212,MAIN], right:[0x2223,SIZE1,0,-.05,.9]} + }, + 0x21A5: // up arrow from bar + { + dir: V, HW: [], + stretch: {min:.6, bot:[0x22A5,BOLD,0,0,.75], ext:[0x23D0,SIZE1], top:[0x2191,SIZE1]} + }, + 0x21A6: // right arrow from bar + { + dir: H, HW: [[1,MAIN]], + stretch: {left:[0x2223,SIZE1,-.09,-.05,.9], rep:[0x2212,MAIN], right:[0x2192,MAIN]} + }, + 0x21A7: // down arrow from bar + { + dir: V, HW: [], + stretch: {min:.6, top:[0x22A4,BOLD,0,0,.75], ext:[0x23D0,SIZE1], bot:[0x2193,SIZE1]} + }, + 0x21B0: // up arrow with top leftwards + { + dir: V, HW: [[.722,AMS]], + stretch: {top:[0x21B0,AMS], ext:[0x23D0,SIZE1,.097]} + }, + 0x21B1: // up arrow with top right + { + dir: V, HW: [[.722,AMS]], + stretch: {top:[0x21B1,AMS,.27], ext:[0x23D0,SIZE1]} + }, + 0x21BC: // left harpoon with barb up + { + dir: H, HW: [[1,MAIN]], + stretch: {left:[0x21BC,MAIN], rep:[0x2212,MAIN]} + }, + 0x21BD: // left harpoon with barb down + { + dir: H, HW: [[1,MAIN]], + stretch: {left:[0x21BD,MAIN], rep:[0x2212,MAIN]} + }, + 0x21BE: // up harpoon with barb right + { + dir: V, HW: [[.888,AMS]], + stretch: {top:[0x21BE,AMS,.12,0,1.1], ext:[0x23D0,SIZE1]} + }, + 0x21BF: // up harpoon with barb left + { + dir: V, HW: [[.888,AMS]], + stretch: {top:[0x21BF,AMS,.12,0,1.1], ext:[0x23D0,SIZE1]} + }, + 0x21C0: // right harpoon with barb up + { + dir: H, HW: [[1,MAIN]], + stretch: {right:[0x21C0,MAIN], rep:[0x2212,MAIN]} + }, + 0x21C1: // right harpoon with barb down + { + dir: H, HW: [[1,MAIN]], + stretch: {right:[0x21C1,MAIN], rep:[0x2212,MAIN]} + }, + 0x21C2: // down harpoon with barb right + { + dir: V, HW: [[.888,AMS]], + stretch: {bot:[0x21C2,AMS,.12,0,1.1], ext:[0x23D0,SIZE1]} + }, + 0x21C3: // down harpoon with barb left + { + dir: V, HW: [[.888,AMS]], + stretch: {bot:[0x21C3,AMS,.12,0,1.1], ext:[0x23D0,SIZE1]} + }, + 0x21DA: // left triple arrow + { + dir: H, HW: [[1,AMS]], + stretch: {left:[0x21DA,AMS], rep:[0x2261,MAIN]} + }, + 0x21DB: // right triple arrow + { + dir: H, HW: [[1,AMS]], + stretch: {right:[0x21DB,AMS], rep:[0x2261,MAIN]} + }, + 0x23B4: // top square bracket + { + dir: H, HW: [], + stretch: {min:.5, left:[0x250C,AMS,0,-.1], rep:[0x2212,MAIN,0,.325], right:[0x2510,AMS,0,-.1]} + }, + 0x23B5: // bottom square bracket + { + dir: H, HW: [], + stretch: {min:.5, left:[0x2514,AMS,0,.26], rep:[0x2212,MAIN,0,0,0,.25], right:[0x2518,AMS,0,.26]} + }, + 0x23DC: // top paren + { + dir: H, HW: [[.778,AMS,0,0x2322],[1,MAIN,0,0x2322]], + stretch: {left:[0xE150,SIZE4], rep:[0xE154,SIZE4], right:[0xE151,SIZE4]} + }, + 0x23DD: // bottom paren + { + dir: H, HW: [[.778,AMS,0,0x2323],[1,MAIN,0,0x2323]], + stretch: {left:[0xE152,SIZE4], rep:[0xE154,SIZE4], right:[0xE153,SIZE4]} + }, + 0x23E0: // top tortoise shell + { + dir: H, HW: [], + stretch: {min:1.25, left:[0x2CA,MAIN,-.1], rep:[0x2C9,MAIN,-.05,.13], right:[0x2CB,MAIN], fullExtenders:true} + }, + 0x23E1: // bottom tortoise shell + { + dir: H, HW: [], + stretch: {min:1.5, left:[0x2CB,MAIN,-.1,.1], rep:[0x2C9,MAIN,-.1], right:[0x2CA,MAIN,-.1,.1], fullExtenders:true} + }, + 0x2906: // leftwards double arrow from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x21D0,MAIN], rep:[0x3D,MAIN], right:[0x2223,SIZE1,0,-.1]} + }, + 0x2907: // rightwards double arrow from bar + { + dir: H, HW: [], + stretch: {min:.7, left:[0x22A8,AMS,0,-.12], rep:[0x3D,MAIN], right:[0x21D2,MAIN]} + }, + 0x294E: // left barb up right barb up harpoon + { + dir: H, HW: [], + stretch: {min:.5, left:[0x21BC,MAIN], rep:[0x2212,MAIN], right:[0x21C0,MAIN]} + }, + 0x294F: // up barb right down barb right harpoon + { + dir: V, HW: [], + stretch: {min:.5, top:[0x21BE,AMS,.12,0,1.1], ext:[0x23D0,SIZE1], bot:[0x21C2,AMS,.12,0,1.1]} + }, + 0x2950: // left barb dow right barb down harpoon + { + dir: H, HW: [], + stretch: {min:.5, left:[0x21BD,MAIN], rep:[0x2212,MAIN], right:[0x21C1,MAIN]} + }, + 0x2951: // up barb left down barb left harpoon + { + dir: V, HW: [], + stretch: {min:.5, top:[0x21BF,AMS,.12,0,1.1], ext:[0x23D0,SIZE1], bot:[0x21C3,AMS,.12,0,1.1]} + }, + 0x295A: // leftwards harpoon with barb up from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x21BC,MAIN], rep:[0x2212,MAIN], right:[0x2223,SIZE1,0,-.05,.9]} + }, + 0x295B: // rightwards harpoon with barb up from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x2223,SIZE1,-.05,-.05,.9], rep:[0x2212,MAIN], right:[0x21C0,MAIN]} + }, + 0x295C: // up harpoon with barb right from bar + { + dir: V, HW: [], + stretch: {min:.7, bot:[0x22A5,BOLD,0,0,.75], ext:[0x23D0,SIZE1], top:[0x21BE,AMS,.12,0,1.1]} + }, + 0x295D: // down harpoon with barb right from bar + { + dir: V, HW: [], + stretch: {min:.7, top:[0x22A4,BOLD,0,0,.75], ext:[0x23D0,SIZE1], bot:[0x21C2,AMS,.12,0,1.1]} + }, + 0x295E: // leftwards harpoon with barb down from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x21BD,MAIN], rep:[0x2212,MAIN], right:[0x2223,SIZE1,0,-.05,.9]} + }, + 0x295F: // rightwards harpoon with barb down from bar + { + dir: H, HW: [], + stretch: {min:1, left:[0x2223,SIZE1,-.05,-.05,.9], rep:[0x2212,MAIN], right:[0x21C1,MAIN]} + }, + 0x2960: // up harpoon with barb left from bar + { + dir: V, HW: [], + stretch: {min:.7, bot:[0x22A5,BOLD,0,0,.75], ext:[0x23D0,SIZE1], top:[0x21BF,AMS,.12,0,1.1]} + }, + 0x2961: // down harpoon with barb left from bar + { + dir: V, HW: [], + stretch: {min:.7, top:[0x22A4,BOLD,0,0,.75], ext:[0x23D0,SIZE1], bot:[0x21C3,AMS,.12,0,1.1]} + } + }; + + for (var id in delim) {if (delim.hasOwnProperty(id)) {DELIMITERS[id] = delim[id]}}; + + MathJax.Ajax.loadComplete(SVG.fontDir + "/fontdata-extra.js"); + +})(MathJax.OutputJax.SVG); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/fontdata.js b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/fontdata.js new file mode 100644 index 0000000..93731fa --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/fonts/TeX/fontdata.js @@ -0,0 +1,1592 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/fonts/TeX/fontdata.js + * + * Initializes the SVG OutputJax to use the MathJax TeX fonts + * for displaying mathematics. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +(function (SVG,MML,AJAX,HUB) { + var VERSION = "2.3"; + + var MAIN = "MathJax_Main", + BOLD = "MathJax_Main-bold", + ITALIC = "MathJax_Math-italic", + AMS = "MathJax_AMS", + SIZE1 = "MathJax_Size1", + SIZE2 = "MathJax_Size2", + SIZE3 = "MathJax_Size3", + SIZE4 = "MathJax_Size4"; + var H = "H", V = "V", EXTRAH = {load:"extra", dir:H}, EXTRAV = {load:"extra", dir:V}; + var STDHW = [[1000,MAIN],[1200,SIZE1],[1800,SIZE2],[2400,SIZE3],[3000,SIZE4]]; + + SVG.Augment({ + FONTDATA: { + version: VERSION, + + baselineskip: 1200, + lineH: 800, lineD: 200, + + FONTS: { + "MathJax_Main": "Main/Regular/Main.js", + "MathJax_Main-bold": "Main/Bold/Main.js", + "MathJax_Main-italic": "Main/Italic/Main.js", + "MathJax_Math-italic": "Math/Italic/Main.js", + "MathJax_Math-bold-italic": "Math/BoldItalic/Main.js", + "MathJax_Caligraphic": "Caligraphic/Regular/Main.js", + "MathJax_Size1": "Size1/Regular/Main.js", + "MathJax_Size2": "Size2/Regular/Main.js", + "MathJax_Size3": "Size3/Regular/Main.js", + "MathJax_Size4": "Size4/Regular/Main.js", + "MathJax_AMS": "AMS/Regular/Main.js", + "MathJax_Fraktur": "Fraktur/Regular/Main.js", + "MathJax_Fraktur-bold": "Fraktur/Bold/Main.js", + "MathJax_SansSerif": "SansSerif/Regular/Main.js", + "MathJax_SansSerif-bold": "SansSerif/Bold/Main.js", + "MathJax_SansSerif-italic": "SansSerif/Italic/Main.js", + "MathJax_Script": "Script/Regular/Main.js", + "MathJax_Typewriter": "Typewriter/Regular/Main.js", + "MathJax_Caligraphic-bold": "Caligraphic/Bold/Main.js" + }, + + VARIANT: { + "normal": {fonts:[MAIN,SIZE1,AMS], + offsetG: 0x03B1, variantG: "italic", + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58, + 0x2216:[0x2216,"-TeX-variant"], // \smallsetminus + 0x210F:[0x210F,"-TeX-variant"], // \hbar + 0x2032:[0x27,"sans-serif-italic"], // HACK: a smaller prime + 0x29F8:[0x002F,MML.VARIANT.ITALIC]}}, + "bold": {fonts:[BOLD,SIZE1,AMS], bold:true, + offsetG: 0x03B1, variantG: "bold-italic", + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58, 0x29F8:[0x002F,"bold-italic"], + 0x219A:"\u2190\u0338", 0x219B:"\u2192\u0338", 0x21AE:"\u2194\u0338", + 0x21CD:"\u21D0\u0338", 0x21CE:"\u21D4\u0338", 0x21CF:"\u21D2\u0338", + 0x2204:"\u2203\u0338", 0x2224:"\u2223\u0338", 0x2226:"\u2225\u0338", + 0x2241:"\u223C\u0338", 0x2247:"\u2245\u0338", + 0x226E:"<\u0338", 0x226F:">\u0338", + 0x2270:"\u2264\u0338", 0x2271:"\u2265\u0338", + 0x2280:"\u227A\u0338", 0x2281:"\u227B\u0338", + 0x2288:"\u2286\u0338", 0x2289:"\u2287\u0338", + 0x22AC:"\u22A2\u0338", 0x22AD:"\u22A8\u0338", +// 0x22AE:"\u22A9\u0338", 0x22AF:"\u22AB\u0338", + 0x22E0:"\u227C\u0338", 0x22E1:"\u227D\u0338"//, +// 0x22EA:"\u22B2\u0338", 0x22EB:"\u22B3\u0338", +// 0x22EC:"\u22B4\u0338", 0x22ED:"\u22B5\u0338" + }}, + "italic": {fonts:[ITALIC,"MathJax_Main-italic",MAIN,SIZE1,AMS], italic:true, + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58}}, + "bold-italic": {fonts:["MathJax_Math-bold-italic",BOLD,SIZE1,AMS], bold:true, italic:true, + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58}}, + "double-struck": {fonts:[AMS, MAIN]}, + "fraktur": {fonts:["MathJax_Fraktur",MAIN,SIZE1,AMS]}, + "bold-fraktur": {fonts:["MathJax_Fraktur-bold",BOLD,SIZE1,AMS], bold:true}, + "script": {fonts:["MathJax_Script",MAIN,SIZE1,AMS]}, + "bold-script": {fonts:["MathJax_Script",BOLD,SIZE1,AMS], bold:true}, + "sans-serif": {fonts:["MathJax_SansSerif",MAIN,SIZE1,AMS]}, + "bold-sans-serif": {fonts:["MathJax_SansSerif-bold",BOLD,SIZE1,AMS], bold:true}, + "sans-serif-italic": {fonts:["MathJax_SansSerif-italic","MathJax_Main-italic",SIZE1,AMS], italic:true}, + "sans-serif-bold-italic": {fonts:["MathJax_SansSerif-italic","MathJax_Main-italic",SIZE1,AMS], bold:true, italic:true}, + "monospace": {fonts:["MathJax_Typewriter",MAIN,SIZE1,AMS]}, + "-tex-caligraphic": {fonts:["MathJax_Caligraphic",MAIN], offsetA: 0x41, variantA: "italic"}, + "-tex-oldstyle": {fonts:["MathJax_Caligraphic",MAIN]}, + "-tex-mathit": {fonts:["MathJax_Main-italic",ITALIC,MAIN,SIZE1,AMS], italic:true, noIC: true, + remap: {0x391:0x41, 0x392:0x42, 0x395:0x45, 0x396:0x5A, 0x397:0x48, + 0x399:0x49, 0x39A:0x4B, 0x39C:0x4D, 0x39D:0x4E, 0x39F:0x4F, + 0x3A1:0x50, 0x3A4:0x54, 0x3A7:0x58}}, + "-TeX-variant": {fonts:[AMS,MAIN,SIZE1], // HACK: to get larger prime for \prime + remap: { + 0x2268: 0xE00C, 0x2269: 0xE00D, 0x2270: 0xE011, 0x2271: 0xE00E, + 0x2A87: 0xE010, 0x2A88: 0xE00F, 0x2224: 0xE006, 0x2226: 0xE007, + 0x2288: 0xE016, 0x2289: 0xE018, 0x228A: 0xE01A, 0x228B: 0xE01B, + 0x2ACB: 0xE017, 0x2ACC: 0xE019, 0x03DC: 0xE008, 0x03F0: 0xE009, + 0x2216:[0x2216,MML.VARIANT.NORMAL], // \setminus + 0x210F:[0x210F,MML.VARIANT.NORMAL] // \hslash + }}, + "-largeOp": {fonts:[SIZE2,SIZE1,MAIN]}, + "-smallOp": {fonts:[SIZE1,MAIN]}, + "-tex-caligraphic-bold": {fonts:["MathJax_Caligraphic-bold","MathJax_Main-bold","MathJax_Main","MathJax_Math","MathJax_Size1"], bold:true, + offsetA: 0x41, variantA: "bold-italic"}, + "-tex-oldstyle-bold": {fonts:["MathJax_Caligraphic-bold","MathJax_Main-bold","MathJax_Main","MathJax_Math","MathJax_Size1"], bold:true} + }, + + RANGES: [ + {name: "alpha", low: 0x61, high: 0x7A, offset: "A", add: 32}, + {name: "number", low: 0x30, high: 0x39, offset: "N"}, + {name: "greek", low: 0x03B1, high: 0x03F6, offset: "G"} + ], + + RULECHAR: 0x2212, + + REMAP: { + 0x00A0: 0x20, // non-breaking space + 0x203E: 0x2C9, // overline + 0x20D0: 0x21BC, 0x20D1: 0x21C0, // combining left and right harpoons + 0x20D6: 0x2190, 0x20E1: 0x2194, // combining left arrow and lef-right arrow + 0x20EC: 0x21C1, 0x20ED: 0x21BD, // combining low right and left harpoons + 0x20EE: 0x2190, 0x20EF: 0x2192, // combining low left and right arrows + 0x20F0: 0x2A, // combining asterisk + 0xFE37: 0x23DE, 0xFE38: 0x23DF, // OverBrace, UnderBrace + + 0xB7: 0x22C5, // center dot + 0x2B9: 0x2032, // prime, + 0x3D2: 0x3A5, // Upsilon + 0x2015: 0x2014, 0x2017: 0x5F, // horizontal bars + 0x2022: 0x2219, 0x2044: 0x2F, // bullet, fraction slash + 0x2305: 0x22BC, 0x2306: 0x2A5E, // barwedge, doublebarwedge + 0x25AA: 0x25A0, 0x25B4: 0x25B2, // blacksquare, blacktriangle + 0x25B5: 0x25B3, 0x25B8: 0x25B6, // triangle, blacktriangleright + 0x25BE: 0x25BC, 0x25BF: 0x25BD, // blacktriangledown, triangledown + 0x25C2: 0x25C0, // blacktriangleleft + 0x2329: 0x27E8, 0x232A: 0x27E9, // langle, rangle + 0x3008: 0x27E8, 0x3009: 0x27E9, // langle, rangle + 0x2758: 0x2223, // VerticalSeparator + 0x2A2F: 0xD7, // cross product + + 0x25FB: 0x25A1, 0x25FC: 0x25A0, // square, blacksquare + + // + // Letter-like symbols (that appear elsewhere) + // + 0x2102: [0x0043,MML.VARIANT.DOUBLESTRUCK], +// 0x210A: [0x0067,MML.VARIANT.SCRIPT], + 0x210B: [0x0048,MML.VARIANT.SCRIPT], + 0x210C: [0x0048,MML.VARIANT.FRAKTUR], + 0x210D: [0x0048,MML.VARIANT.DOUBLESTRUCK], + 0x210E: [0x0068,MML.VARIANT.ITALIC], + 0x2110: [0x004A,MML.VARIANT.SCRIPT], + 0x2111: [0x0049,MML.VARIANT.FRAKTUR], + 0x2112: [0x004C,MML.VARIANT.SCRIPT], + 0x2115: [0x004E,MML.VARIANT.DOUBLESTRUCK], + 0x2119: [0x0050,MML.VARIANT.DOUBLESTRUCK], + 0x211A: [0x0051,MML.VARIANT.DOUBLESTRUCK], + 0x211B: [0x0052,MML.VARIANT.SCRIPT], + 0x211C: [0x0052,MML.VARIANT.FRAKTUR], + 0x211D: [0x0052,MML.VARIANT.DOUBLESTRUCK], + 0x2124: [0x005A,MML.VARIANT.DOUBLESTRUCK], + 0x2126: [0x03A9,MML.VARIANT.NORMAL], + 0x2128: [0x005A,MML.VARIANT.FRAKTUR], + 0x212C: [0x0042,MML.VARIANT.SCRIPT], + 0x212D: [0x0043,MML.VARIANT.FRAKTUR], +// 0x212F: [0x0065,MML.VARIANT.SCRIPT], + 0x2130: [0x0045,MML.VARIANT.SCRIPT], + 0x2131: [0x0046,MML.VARIANT.SCRIPT], + 0x2133: [0x004D,MML.VARIANT.SCRIPT], +// 0x2134: [0x006F,MML.VARIANT.SCRIPT], + + 0x2247: 0x2246, // wrong placement of this character + 0x231C: 0x250C, 0x231D:0x2510, // wrong placement of \ulcorner, \urcorner + 0x231E: 0x2514, 0x231F:0x2518, // wrong placement of \llcorner, \lrcorner + + // + // compound symbols not in these fonts + // + 0x2204: "\u2203\u0338", // \not\exists + 0x220C: "\u220B\u0338", // \not\ni + 0x2244: "\u2243\u0338", // \not\simeq + 0x2249: "\u2248\u0338", // \not\approx + 0x2262: "\u2261\u0338", // \not\equiv + 0x226D: "\u224D\u0338", // \not\asymp + 0x2274: "\u2272\u0338", // \not\lesssim + 0x2275: "\u2273\u0338", // \not\gtrsim + 0x2278: "\u2276\u0338", // \not\lessgtr + 0x2279: "\u2277\u0338", // \not\gtrless + 0x2284: "\u2282\u0338", // \not\subset + 0x2285: "\u2283\u0338", // \not\supset + 0x22E2: "\u2291\u0338", // \not\sqsubseteq + 0x22E3: "\u2292\u0338", // \not\sqsupseteq + + 0x2A0C: "\u222C\u222C", // quadruple integral + + 0x2033: "\u2032\u2032", // double prime + 0x2034: "\u2032\u2032\u2032", // triple prime + 0x2036: "\u2035\u2035", // double back prime + 0x2037: "\u2035\u2035\u2035", // trile back prime + 0x2057: "\u2032\u2032\u2032\u2032", // quadruple prime + 0x20DB: "...", // combining three dots above (only works with mover/under) + 0x20DC: "...." // combining four dots above (only works with mover/under) + }, + + REMAPACCENT: { + "\u2192":"\u20D7", + "\u2032":"'", + "\u2035":"`" + }, + REMAPACCENTUNDER: { + }, + + PLANE1MAP: [ + [0x1D400,0x1D419, 0x41, MML.VARIANT.BOLD], + [0x1D41A,0x1D433, 0x61, MML.VARIANT.BOLD], + [0x1D434,0x1D44D, 0x41, MML.VARIANT.ITALIC], + [0x1D44E,0x1D467, 0x61, MML.VARIANT.ITALIC], + [0x1D468,0x1D481, 0x41, MML.VARIANT.BOLDITALIC], + [0x1D482,0x1D49B, 0x61, MML.VARIANT.BOLDITALIC], + [0x1D49C,0x1D4B5, 0x41, MML.VARIANT.SCRIPT], +// [0x1D4B6,0x1D4CF, 0x61, MML.VARIANT.SCRIPT], +// [0x1D4D0,0x1D4E9, 0x41, MML.VARIANT.BOLDSCRIPT], +// [0x1D4EA,0x1D503, 0x61, MML.VARIANT.BOLDSCRIPT], + [0x1D504,0x1D51D, 0x41, MML.VARIANT.FRAKTUR], + [0x1D51E,0x1D537, 0x61, MML.VARIANT.FRAKTUR], + [0x1D538,0x1D551, 0x41, MML.VARIANT.DOUBLESTRUCK], +// [0x1D552,0x1D56B, 0x61, MML.VARIANT.DOUBLESTRUCK], + [0x1D56C,0x1D585, 0x41, MML.VARIANT.BOLDFRAKTUR], + [0x1D586,0x1D59F, 0x61, MML.VARIANT.BOLDFRAKTUR], + [0x1D5A0,0x1D5B9, 0x41, MML.VARIANT.SANSSERIF], + [0x1D5BA,0x1D5D3, 0x61, MML.VARIANT.SANSSERIF], + [0x1D5D4,0x1D5ED, 0x41, MML.VARIANT.BOLDSANSSERIF], + [0x1D5EE,0x1D607, 0x61, MML.VARIANT.BOLDSANSSERIF], + [0x1D608,0x1D621, 0x41, MML.VARIANT.SANSSERIFITALIC], + [0x1D622,0x1D63B, 0x61, MML.VARIANT.SANSSERIFITALIC], +// [0x1D63C,0x1D655, 0x41, MML.VARIANT.SANSSERIFBOLDITALIC], +// [0x1D656,0x1D66F, 0x61, MML.VARIANT.SANSSERIFBOLDITALIC], + [0x1D670,0x1D689, 0x41, MML.VARIANT.MONOSPACE], + [0x1D68A,0x1D6A3, 0x61, MML.VARIANT.MONOSPACE], + + [0x1D6A8,0x1D6C1, 0x391, MML.VARIANT.BOLD], +// [0x1D6C2,0x1D6E1, 0x3B1, MML.VARIANT.BOLD], + [0x1D6E2,0x1D6FA, 0x391, MML.VARIANT.ITALIC], + [0x1D6FC,0x1D71B, 0x3B1, MML.VARIANT.ITALIC], + [0x1D71C,0x1D734, 0x391, MML.VARIANT.BOLDITALIC], + [0x1D736,0x1D755, 0x3B1, MML.VARIANT.BOLDITALIC], + [0x1D756,0x1D76E, 0x391, MML.VARIANT.BOLDSANSSERIF], +// [0x1D770,0x1D78F, 0x3B1, MML.VARIANT.BOLDSANSSERIF], + [0x1D790,0x1D7A8, 0x391, MML.VARIANT.SANSSERIFBOLDITALIC], +// [0x1D7AA,0x1D7C9, 0x3B1, MML.VARIANT.SANSSERIFBOLDITALIC], + + [0x1D7CE,0x1D7D7, 0x30, MML.VARIANT.BOLD], +// [0x1D7D8,0x1D7E1, 0x30, MML.VARIANT.DOUBLESTRUCK], + [0x1D7E2,0x1D7EB, 0x30, MML.VARIANT.SANSSERIF], + [0x1D7EC,0x1D7F5, 0x30, MML.VARIANT.BOLDSANSSERIF], + [0x1D7F6,0x1D7FF, 0x30, MML.VARIANT.MONOSPACE] + ], + + REMAPGREEK: { + 0x391: 0x41, 0x392: 0x42, 0x395: 0x45, 0x396: 0x5A, + 0x397: 0x48, 0x399: 0x49, 0x39A: 0x4B, 0x39C: 0x4D, + 0x39D: 0x4E, 0x39F: 0x4F, 0x3A1: 0x50, 0x3A2: 0x398, + 0x3A4: 0x54, 0x3A7: 0x58, 0x3AA: 0x2207, + 0x3CA: 0x2202, 0x3CB: 0x3F5, 0x3CC: 0x3D1, 0x3CD: 0x3F0, + 0x3CE: 0x3D5, 0x3CF: 0x3F1, 0x3D0: 0x3D6 + }, + + RemapPlane1: function (n,variant) { + for (var i = 0, m = this.PLANE1MAP.length; i < m; i++) { + if (n < this.PLANE1MAP[i][0]) break; + if (n <= this.PLANE1MAP[i][1]) { + n = n - this.PLANE1MAP[i][0] + this.PLANE1MAP[i][2]; + if (this.REMAPGREEK[n]) {n = this.REMAPGREEK[n]} + variant = this.VARIANT[this.PLANE1MAP[i][3]]; + break; + } + } + return {n: n, variant: variant}; + }, + + DELIMITERS: { + 0x0028: // ( + { + dir: V, HW: STDHW, + stretch: {top: [0x239B,SIZE4], ext: [0x239C,SIZE4], bot: [0x239D,SIZE4]} + }, + 0x0029: // ) + { + dir: V, HW: STDHW, + stretch: {top:[0x239E,SIZE4], ext:[0x239F,SIZE4], bot:[0x23A0,SIZE4]} + }, + 0x002F: // / + { + dir: V, HW: STDHW + }, + 0x005B: // [ + { + dir: V, HW: STDHW, + stretch: {top:[0x23A1,SIZE4], ext:[0x23A2,SIZE4], bot:[0x23A3,SIZE4]} + }, + 0x005C: // \ + { + dir: V, HW: STDHW + }, + 0x005D: // ] + { + dir: V, HW: STDHW, + stretch: {top:[0x23A4,SIZE4], ext:[0x23A5,SIZE4], bot:[0x23A6,SIZE4]} + }, + 0x007B: // { + { + dir: V, HW: STDHW, + stretch: {top:[0x23A7,SIZE4], mid:[0x23A8,SIZE4], bot:[0x23A9,SIZE4], ext:[0x23AA,SIZE4]} + }, + 0x007C: // | + { + dir: V, HW: [[1000,MAIN]], stretch: {ext:[0x2223,MAIN]} + }, + 0x007D: // } + { + dir: V, HW: STDHW, + stretch: {top: [0x23AB,SIZE4], mid:[0x23AC,SIZE4], bot: [0x23AD,SIZE4], ext: [0x23AA,SIZE4]} + }, + 0x00AF: // macron + { + dir: H, HW: [[.59,MAIN]], stretch: {rep:[0xAF,MAIN]} + }, + 0x02C6: // wide hat + { + dir: H, HW: [[267+250,MAIN],[567+250,SIZE1],[1005+330,SIZE2],[1447+330,SIZE3],[1909,SIZE4]] + }, + 0x02DC: // wide tilde + { + dir: H, HW: [[333+250,MAIN],[555+250,SIZE1],[1000+330,SIZE2],[1443+330,SIZE3],[1887,SIZE4]] + }, + 0x2016: // vertical arrow extension + { + dir: V, HW: [[602,SIZE1],[1000,MAIN,null,0x2225]], stretch: {ext:[0x2225,MAIN]} + }, + 0x2190: // left arrow + { + dir: H, HW: [[1000,MAIN]], stretch: {left:[0x2190,MAIN],rep:[0x2212,MAIN], fuzz:300} + }, + 0x2191: // \uparrow + { + dir: V, HW: [[888,MAIN]], stretch: {top:[0x2191,SIZE1], ext:[0x23D0,SIZE1]} + }, + 0x2192: // right arrow + { + dir: H, HW: [[1000,MAIN]], stretch: {rep:[0x2212,MAIN], right:[0x2192,MAIN], fuzz:300} + }, + 0x2193: // \downarrow + { + dir: V, HW: [[888,MAIN]], stretch: {ext:[0x23D0,SIZE1], bot:[0x2193,SIZE1]} + }, + 0x2194: // left-right arrow + { + dir: H, HW: [[1000,MAIN]], + stretch: {left:[0x2190,MAIN],rep:[0x2212,MAIN], right:[0x2192,MAIN], fuzz:300} + }, + 0x2195: // \updownarrow + { + dir: V, HW: [[1044,MAIN]], + stretch: {top:[0x2191,SIZE1], ext:[0x23D0,SIZE1], bot:[0x2193,SIZE1]} + }, + 0x21D0: // left double arrow + { + dir: H, HW: [[1000,MAIN]], stretch: {left:[0x21D0,MAIN],rep:[0x3D,MAIN], fuzz:300} + }, + 0x21D1: // \Uparrow + { + dir: V, HW: [[888,MAIN]], stretch: {top:[0x21D1,SIZE1], ext:[0x2016,SIZE1]} + }, + 0x21D2: // right double arrow + { + dir: H, HW: [[1000,MAIN]], stretch: {rep:[0x3D,MAIN], right:[0x21D2,MAIN], fuzz:300} + }, + 0x21D3: // \Downarrow + { + dir: V, HW: [[888,MAIN]], stretch: {ext:[0x2016,SIZE1], bot:[0x21D3,SIZE1]} + }, + 0x21D4: // left-right double arrow + { + dir: H, HW: [[1000,MAIN]], + stretch: {left:[0x21D0,MAIN],rep:[0x3D,MAIN], right:[0x21D2,MAIN], fuzz:300} + }, + 0x21D5: // \Updownarrow + { + dir: V, HW: [[1044,MAIN]], + stretch: {top:[0x21D1,SIZE1], ext:[0x2016,SIZE1], bot:[0x21D3,SIZE1]} + }, + 0x2212: // horizontal line + { + dir: H, HW: [[611,MAIN]], stretch: {rep:[0x2212,MAIN], fuzz:300} + }, + 0x221A: // \surd + { + dir: V, HW: STDHW, + stretch: {top:[0xE001,SIZE4], ext:[0xE000,SIZE4], bot:[0x23B7,SIZE4], fullExtenders:true} + }, + 0x2223: // \vert + { + dir: V, HW: [[1000,MAIN]], stretch: {ext:[0x2223,MAIN]} + }, + 0x2225: // \Vert + { + dir: V, HW: [[1000,MAIN]], stretch: {ext:[0x2225,MAIN]} + }, + 0x2308: // \lceil + { + dir: V, HW: STDHW, stretch: {top:[0x23A1,SIZE4], ext:[0x23A2,SIZE4]} + }, + 0x2309: // \rceil + { + dir: V, HW: STDHW, stretch: {top:[0x23A4,SIZE4], ext:[0x23A5,SIZE4]} + }, + 0x230A: // \lfloor + { + dir: V, HW: STDHW, stretch: {ext:[0x23A2,SIZE4], bot:[0x23A3,SIZE4]} + }, + 0x230B: // \rfloor + { + dir: V, HW: STDHW, stretch: {ext:[0x23A5,SIZE4], bot:[0x23A6,SIZE4]} + }, + 0x23AA: // \bracevert + { + dir: V, HW: [[320,SIZE4]], + stretch: {top:[0x23AA,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23AA,SIZE4]} + }, + 0x23B0: // \lmoustache + { + dir: V, HW: [[989,MAIN]], + stretch: {top:[0x23A7,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23AD,SIZE4]} + }, + 0x23B1: // \rmoustache + { + dir: V, HW: [[989,MAIN]], + stretch: {top:[0x23AB,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23A9,SIZE4]} + }, + 0x23D0: // vertical line extension + { + dir: V, HW: [[602,SIZE1],[1000,MAIN,null,0x2223]], stretch: {ext:[0x2223,MAIN]} + }, + 0x23DE: // horizontal brace down + { + dir: H, HW: [], + stretch: {min:.9, left:[0xE150,SIZE4], mid:[[0xE153,0xE152],SIZE4], right:[0xE151,SIZE4], rep:[0xE154,SIZE4]} + }, + 0x23DF: // horizontal brace up + { + dir: H, HW: [], + stretch: {min:.9, left:[0xE152,SIZE4], mid:[[0xE151,0xE150],SIZE4], right:[0xE153,SIZE4], rep:[0xE154,SIZE4]} + }, + 0x27E8: // \langle + { + dir: V, HW: STDHW + }, + 0x27E9: // \rangle + { + dir: V, HW: STDHW + }, + 0x27EE: // \lgroup + { + dir: V, HW: [[989,MAIN]], + stretch: {top:[0x23A7,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23A9,SIZE4]} + }, + 0x27EF: // \rgroup + { + dir: V, HW: [[989,MAIN]], + stretch: {top:[0x23AB,SIZE4], ext:[0x23AA,SIZE4], bot:[0x23AD,SIZE4]} + }, + 0x002D: {alias: 0x2212, dir:H}, // minus + 0x005E: {alias: 0x02C6, dir:H}, // wide hat + 0x005F: {alias: 0x2212, dir:H}, // low line + 0x007E: {alias: 0x02DC, dir:H}, // wide tilde + 0x02C9: {alias: 0x00AF, dir:H}, // macron + 0x0302: {alias: 0x02C6, dir:H}, // wide hat + 0x0303: {alias: 0x02DC, dir:H}, // wide tilde + 0x030C: {alias: 0x02C7, dir:H}, // wide caron + 0x0332: {alias: 0x2212, dir:H}, // combining low line + 0x2015: {alias: 0x2212, dir:H}, // horizontal line + 0x2017: {alias: 0x2212, dir:H}, // horizontal line + 0x203E: {alias: 0x00AF, dir:H}, // over line + 0x2215: {alias: 0x002F, dir:V}, // division slash + 0x2329: {alias: 0x27E8, dir:V}, // langle + 0x232A: {alias: 0x27E9, dir:V}, // rangle + 0x23AF: {alias: 0x2212, dir:H}, // horizontal line extension + 0x2500: {alias: 0x2212, dir:H}, // horizontal line + 0x2758: {alias: 0x2223, dir:V}, // vertical separator + 0x3008: {alias: 0x27E8, dir:V}, // langle + 0x3009: {alias: 0x27E9, dir:V}, // rangle + 0xFE37: {alias: 0x23DE, dir:H}, // horizontal brace down + 0xFE38: {alias: 0x23DF, dir:H}, // horizontal brace up + + 0x003D: EXTRAH, // equal sign + 0x219E: EXTRAH, // left two-headed arrow + 0x21A0: EXTRAH, // right two-headed arrow + 0x21A4: EXTRAH, // left arrow from bar + 0x21A5: EXTRAV, // up arrow from bar + 0x21A6: EXTRAH, // right arrow from bar + 0x21A7: EXTRAV, // down arrow from bar + 0x21B0: EXTRAV, // up arrow with top leftwards + 0x21B1: EXTRAV, // up arrow with top right + 0x21BC: EXTRAH, // left harpoon with barb up + 0x21BD: EXTRAH, // left harpoon with barb down + 0x21BE: EXTRAV, // up harpoon with barb right + 0x21BF: EXTRAV, // up harpoon with barb left + 0x21C0: EXTRAH, // right harpoon with barb up + 0x21C1: EXTRAH, // right harpoon with barb down + 0x21C2: EXTRAV, // down harpoon with barb right + 0x21C3: EXTRAV, // down harpoon with barb left + 0x21DA: EXTRAH, // left triple arrow + 0x21DB: EXTRAH, // right triple arrow + 0x23B4: EXTRAH, // top square bracket + 0x23B5: EXTRAH, // bottom square bracket + 0x23DC: EXTRAH, // top paren + 0x23DD: EXTRAH, // bottom paren + 0x23E0: EXTRAH, // top tortoise shell + 0x23E1: EXTRAH, // bottom tortoise shell + 0x2906: EXTRAH, // leftwards double arrow from bar + 0x2907: EXTRAH, // rightwards double arrow from bar + 0x294E: EXTRAH, // left barb up right barb up harpoon + 0x294F: EXTRAV, // up barb right down barb right harpoon + 0x2950: EXTRAH, // left barb dow right barb down harpoon + 0x2951: EXTRAV, // up barb left down barb left harpoon + 0x295A: EXTRAH, // leftwards harpoon with barb up from bar + 0x295B: EXTRAH, // rightwards harpoon with barb up from bar + 0x295C: EXTRAV, // up harpoon with barb right from bar + 0x295D: EXTRAV, // down harpoon with barb right from bar + 0x295E: EXTRAH, // leftwards harpoon with barb down from bar + 0x295F: EXTRAH, // rightwards harpoon with barb down from bar + 0x2960: EXTRAV, // up harpoon with barb left from bar + 0x2961: EXTRAV, // down harpoon with barb left from bar + 0x27F5: {alias: 0x2190, dir:H}, // long left arrow + 0x27F6: {alias: 0x2192, dir:H}, // long right arrow + 0x27F7: {alias: 0x2194, dir:H}, // long left-right arrow + 0x27F8: {alias: 0x21D0, dir:H}, // long left double arrow + 0x27F9: {alias: 0x21D2, dir:H}, // long right double arrow + 0x27FA: {alias: 0x21D4, dir:H}, // long left-right double arrow + 0x27FB: {alias: 0x21A4, dir:H}, // long left arrow from bar + 0x27FC: {alias: 0x21A6, dir:H}, // long right arrow from bar + 0x27FD: {alias: 0x2906, dir:H}, // long left double arrow from bar + 0x27FE: {alias: 0x2907, dir:H} // long right double arrow from bar + } + } + }); + + + SVG.FONTDATA.FONTS['MathJax_Main'] = { + directory: 'Main/Regular', + family: 'MathJax_Main', + id: 'MJMAIN', + skew: { + 0x131: 0.0278, + 0x237: 0.0833, + 0x2113: 0.111, + 0x2118: 0.111, + 0x2202: 0.0833 + }, + Ranges: [ + [0x20,0x7F,"BasicLatin"], + [0x100,0x17F,"LatinExtendedA"], + [0x180,0x24F,"LatinExtendedB"], + [0x2B0,0x2FF,"SpacingModLetters"], + [0x300,0x36F,"CombDiacritMarks"], + [0x370,0x3FF,"GreekAndCoptic"], + [0x2100,0x214F,"LetterlikeSymbols"], + [0x2200,0x22FF,"MathOperators"], + [0x25A0,0x25FF,"GeometricShapes"], + [0x2600,0x26FF,"MiscSymbols"], + [0x2A00,0x2AFF,"SuppMathOperators"] + ], + + // SPACE + 0x20: [0,0,250,0,0,''], + + // LEFT PARENTHESIS + 0x28: [750,250,389,94,333,'94 250Q94 319 104 381T127 488T164 576T202 643T244 695T277 729T302 750H315H319Q333 750 333 741Q333 738 316 720T275 667T226 581T184 443T167 250T184 58T225 -81T274 -167T316 -220T333 -241Q333 -250 318 -250H315H302L274 -226Q180 -141 137 -14T94 250'], + + // RIGHT PARENTHESIS + 0x29: [750,250,389,55,294,'60 749L64 750Q69 750 74 750H86L114 726Q208 641 251 514T294 250Q294 182 284 119T261 12T224 -76T186 -143T145 -194T113 -227T90 -246Q87 -249 86 -250H74Q66 -250 63 -250T58 -247T55 -238Q56 -237 66 -225Q221 -64 221 250T66 725Q56 737 55 738Q55 746 60 749'], + + // PLUS SIGN + 0x2B: [583,82,778,56,722,'56 237T56 250T70 270H369V420L370 570Q380 583 389 583Q402 583 409 568V270H707Q722 262 722 250T707 230H409V-68Q401 -82 391 -82H389H387Q375 -82 369 -68V230H70Q56 237 56 250'], + + // COMMA + 0x2C: [121,195,278,78,210,'78 35T78 60T94 103T137 121Q165 121 187 96T210 8Q210 -27 201 -60T180 -117T154 -158T130 -185T117 -194Q113 -194 104 -185T95 -172Q95 -168 106 -156T131 -126T157 -76T173 -3V9L172 8Q170 7 167 6T161 3T152 1T140 0Q113 0 96 17'], + + // FULL STOP + 0x2E: [120,0,278,78,199,'78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60'], + + // SOLIDUS + 0x2F: [750,250,500,56,444,'423 750Q432 750 438 744T444 730Q444 725 271 248T92 -240Q85 -250 75 -250Q68 -250 62 -245T56 -231Q56 -221 230 257T407 740Q411 750 423 750'], + + // DIGIT ZERO + 0x30: [666,22,500,39,460,'96 585Q152 666 249 666Q297 666 345 640T423 548Q460 465 460 320Q460 165 417 83Q397 41 362 16T301 -15T250 -22Q224 -22 198 -16T137 16T82 83Q39 165 39 320Q39 494 96 585ZM321 597Q291 629 250 629Q208 629 178 597Q153 571 145 525T137 333Q137 175 145 125T181 46Q209 16 250 16Q290 16 318 46Q347 76 354 130T362 333Q362 478 354 524T321 597'], + + // DIGIT ONE + 0x31: [666,0,500,83,427,'213 578L200 573Q186 568 160 563T102 556H83V602H102Q149 604 189 617T245 641T273 663Q275 666 285 666Q294 666 302 660V361L303 61Q310 54 315 52T339 48T401 46H427V0H416Q395 3 257 3Q121 3 100 0H88V46H114Q136 46 152 46T177 47T193 50T201 52T207 57T213 61V578'], + + // DIGIT TWO + 0x32: [666,0,500,50,449,'109 429Q82 429 66 447T50 491Q50 562 103 614T235 666Q326 666 387 610T449 465Q449 422 429 383T381 315T301 241Q265 210 201 149L142 93L218 92Q375 92 385 97Q392 99 409 186V189H449V186Q448 183 436 95T421 3V0H50V19V31Q50 38 56 46T86 81Q115 113 136 137Q145 147 170 174T204 211T233 244T261 278T284 308T305 340T320 369T333 401T340 431T343 464Q343 527 309 573T212 619Q179 619 154 602T119 569T109 550Q109 549 114 549Q132 549 151 535T170 489Q170 464 154 447T109 429'], + + // DIGIT THREE + 0x33: [665,22,500,42,457,'127 463Q100 463 85 480T69 524Q69 579 117 622T233 665Q268 665 277 664Q351 652 390 611T430 522Q430 470 396 421T302 350L299 348Q299 347 308 345T337 336T375 315Q457 262 457 175Q457 96 395 37T238 -22Q158 -22 100 21T42 130Q42 158 60 175T105 193Q133 193 151 175T169 130Q169 119 166 110T159 94T148 82T136 74T126 70T118 67L114 66Q165 21 238 21Q293 21 321 74Q338 107 338 175V195Q338 290 274 322Q259 328 213 329L171 330L168 332Q166 335 166 348Q166 366 174 366Q202 366 232 371Q266 376 294 413T322 525V533Q322 590 287 612Q265 626 240 626Q208 626 181 615T143 592T132 580H135Q138 579 143 578T153 573T165 566T175 555T183 540T186 520Q186 498 172 481T127 463'], + + // DIGIT FOUR + 0x34: [677,0,500,28,471,'462 0Q444 3 333 3Q217 3 199 0H190V46H221Q241 46 248 46T265 48T279 53T286 61Q287 63 287 115V165H28V211L179 442Q332 674 334 675Q336 677 355 677H373L379 671V211H471V165H379V114Q379 73 379 66T385 54Q393 47 442 46H471V0H462ZM293 211V545L74 212L183 211H293'], + + // DIGIT FIVE + 0x35: [666,22,500,50,449,'164 157Q164 133 148 117T109 101H102Q148 22 224 22Q294 22 326 82Q345 115 345 210Q345 313 318 349Q292 382 260 382H254Q176 382 136 314Q132 307 129 306T114 304Q97 304 95 310Q93 314 93 485V614Q93 664 98 664Q100 666 102 666Q103 666 123 658T178 642T253 634Q324 634 389 662Q397 666 402 666Q410 666 410 648V635Q328 538 205 538Q174 538 149 544L139 546V374Q158 388 169 396T205 412T256 420Q337 420 393 355T449 201Q449 109 385 44T229 -22Q148 -22 99 32T50 154Q50 178 61 192T84 210T107 214Q132 214 148 197T164 157'], + + // DIGIT SIX + 0x36: [666,22,500,41,456,'42 313Q42 476 123 571T303 666Q372 666 402 630T432 550Q432 525 418 510T379 495Q356 495 341 509T326 548Q326 592 373 601Q351 623 311 626Q240 626 194 566Q147 500 147 364L148 360Q153 366 156 373Q197 433 263 433H267Q313 433 348 414Q372 400 396 374T435 317Q456 268 456 210V192Q456 169 451 149Q440 90 387 34T253 -22Q225 -22 199 -14T143 16T92 75T56 172T42 313ZM257 397Q227 397 205 380T171 335T154 278T148 216Q148 133 160 97T198 39Q222 21 251 21Q302 21 329 59Q342 77 347 104T352 209Q352 289 347 316T329 361Q302 397 257 397'], + + // DIGIT SEVEN + 0x37: [676,22,500,55,485,'55 458Q56 460 72 567L88 674Q88 676 108 676H128V672Q128 662 143 655T195 646T364 644H485V605L417 512Q408 500 387 472T360 435T339 403T319 367T305 330T292 284T284 230T278 162T275 80Q275 66 275 52T274 28V19Q270 2 255 -10T221 -22Q210 -22 200 -19T179 0T168 40Q168 198 265 368Q285 400 349 489L395 552H302Q128 552 119 546Q113 543 108 522T98 479L95 458V455H55V458'], + + // DIGIT EIGHT + 0x38: [666,22,500,43,457,'70 417T70 494T124 618T248 666Q319 666 374 624T429 515Q429 485 418 459T392 417T361 389T335 371T324 363L338 354Q352 344 366 334T382 323Q457 264 457 174Q457 95 399 37T249 -22Q159 -22 101 29T43 155Q43 263 172 335L154 348Q133 361 127 368Q70 417 70 494ZM286 386L292 390Q298 394 301 396T311 403T323 413T334 425T345 438T355 454T364 471T369 491T371 513Q371 556 342 586T275 624Q268 625 242 625Q201 625 165 599T128 534Q128 511 141 492T167 463T217 431Q224 426 228 424L286 386ZM250 21Q308 21 350 55T392 137Q392 154 387 169T375 194T353 216T330 234T301 253T274 270Q260 279 244 289T218 306L210 311Q204 311 181 294T133 239T107 157Q107 98 150 60T250 21'], + + // DIGIT NINE + 0x39: [666,22,500,42,456,'352 287Q304 211 232 211Q154 211 104 270T44 396Q42 412 42 436V444Q42 537 111 606Q171 666 243 666Q245 666 249 666T257 665H261Q273 665 286 663T323 651T370 619T413 560Q456 472 456 334Q456 194 396 97Q361 41 312 10T208 -22Q147 -22 108 7T68 93T121 149Q143 149 158 135T173 96Q173 78 164 65T148 49T135 44L131 43Q131 41 138 37T164 27T206 22H212Q272 22 313 86Q352 142 352 280V287ZM244 248Q292 248 321 297T351 430Q351 508 343 542Q341 552 337 562T323 588T293 615T246 625Q208 625 181 598Q160 576 154 546T147 441Q147 358 152 329T172 282Q197 248 244 248'], + + // COLON + 0x3A: [430,0,278,78,199,'78 370Q78 394 95 412T138 430Q162 430 180 414T199 371Q199 346 182 328T139 310T96 327T78 370ZM78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60'], + + // SEMICOLON + 0x3B: [430,194,278,78,202,'78 370Q78 394 95 412T138 430Q162 430 180 414T199 371Q199 346 182 328T139 310T96 327T78 370ZM78 60Q78 85 94 103T137 121Q202 121 202 8Q202 -44 183 -94T144 -169T118 -194Q115 -194 106 -186T95 -174Q94 -171 107 -155T137 -107T160 -38Q161 -32 162 -22T165 -4T165 4Q165 5 161 4T142 0Q110 0 94 18T78 60'], + + // LESS-THAN SIGN + 0x3C: [540,40,778,83,695,'694 -11T694 -19T688 -33T678 -40Q671 -40 524 29T234 166L90 235Q83 240 83 250Q83 261 91 266Q664 540 678 540Q681 540 687 534T694 519T687 505Q686 504 417 376L151 250L417 124Q686 -4 687 -5Q694 -11 694 -19'], + + // EQUALS SIGN + 0x3D: [367,-133,778,56,722,'56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153'], + + // GREATER-THAN SIGN + 0x3E: [540,40,778,82,694,'84 520Q84 528 88 533T96 539L99 540Q106 540 253 471T544 334L687 265Q694 260 694 250T687 235Q685 233 395 96L107 -40H101Q83 -38 83 -20Q83 -19 83 -17Q82 -10 98 -1Q117 9 248 71Q326 108 378 132L626 250L378 368Q90 504 86 509Q84 513 84 520'], + + // LEFT SQUARE BRACKET + 0x5B: [750,250,278,118,255,'118 -250V750H255V710H158V-210H255V-250H118'], + + // REVERSE SOLIDUS + 0x5C: [750,250,500,56,444,'56 731Q56 740 62 745T75 750Q85 750 92 740Q96 733 270 255T444 -231Q444 -239 438 -244T424 -250Q414 -250 407 -240Q404 -236 230 242T56 731'], + + // RIGHT SQUARE BRACKET + 0x5D: [750,250,278,22,159,'22 710V750H159V-250H22V-210H119V710H22'], + + // CIRCUMFLEX ACCENT + 0x5E: [694,-531,500,112,387,'112 560L249 694L257 686Q387 562 387 560L361 531Q359 532 303 581L250 627L195 580Q182 569 169 557T148 538L140 532Q138 530 125 546L112 560'], + + // LATIN SMALL LETTER A + 0x61: [448,11,500,34,493,'137 305T115 305T78 320T63 359Q63 394 97 421T218 448Q291 448 336 416T396 340Q401 326 401 309T402 194V124Q402 76 407 58T428 40Q443 40 448 56T453 109V145H493V106Q492 66 490 59Q481 29 455 12T400 -6T353 12T329 54V58L327 55Q325 52 322 49T314 40T302 29T287 17T269 6T247 -2T221 -8T190 -11Q130 -11 82 20T34 107Q34 128 41 147T68 188T116 225T194 253T304 268H318V290Q318 324 312 340Q290 411 215 411Q197 411 181 410T156 406T148 403Q170 388 170 359Q170 334 154 320ZM126 106Q126 75 150 51T209 26Q247 26 276 49T315 109Q317 116 318 175Q318 233 317 233Q309 233 296 232T251 223T193 203T147 166T126 106'], + + // LATIN SMALL LETTER B + 0x62: [695,11,556,20,522,'307 -11Q234 -11 168 55L158 37Q156 34 153 28T147 17T143 10L138 1L118 0H98V298Q98 599 97 603Q94 622 83 628T38 637H20V660Q20 683 22 683L32 684Q42 685 61 686T98 688Q115 689 135 690T165 693T176 694H179V543Q179 391 180 391L183 394Q186 397 192 401T207 411T228 421T254 431T286 439T323 442Q401 442 461 379T522 216Q522 115 458 52T307 -11ZM182 98Q182 97 187 90T196 79T206 67T218 55T233 44T250 35T271 29T295 26Q330 26 363 46T412 113Q424 148 424 212Q424 287 412 323Q385 405 300 405Q270 405 239 390T188 347L182 339V98'], + + // LATIN SMALL LETTER C + 0x63: [448,12,444,34,415,'370 305T349 305T313 320T297 358Q297 381 312 396Q317 401 317 402T307 404Q281 408 258 408Q209 408 178 376Q131 329 131 219Q131 137 162 90Q203 29 272 29Q313 29 338 55T374 117Q376 125 379 127T395 129H409Q415 123 415 120Q415 116 411 104T395 71T366 33T318 2T249 -11Q163 -11 99 53T34 214Q34 318 99 383T250 448T370 421T404 357Q404 334 387 320'], + + // LATIN SMALL LETTER D + 0x64: [695,11,556,34,535,'376 495Q376 511 376 535T377 568Q377 613 367 624T316 637H298V660Q298 683 300 683L310 684Q320 685 339 686T376 688Q393 689 413 690T443 693T454 694H457V390Q457 84 458 81Q461 61 472 55T517 46H535V0Q533 0 459 -5T380 -11H373V44L365 37Q307 -11 235 -11Q158 -11 96 50T34 215Q34 315 97 378T244 442Q319 442 376 393V495ZM373 342Q328 405 260 405Q211 405 173 369Q146 341 139 305T131 211Q131 155 138 120T173 59Q203 26 251 26Q322 26 373 103V342'], + + // LATIN SMALL LETTER E + 0x65: [448,11,444,28,415,'28 218Q28 273 48 318T98 391T163 433T229 448Q282 448 320 430T378 380T406 316T415 245Q415 238 408 231H126V216Q126 68 226 36Q246 30 270 30Q312 30 342 62Q359 79 369 104L379 128Q382 131 395 131H398Q415 131 415 121Q415 117 412 108Q393 53 349 21T250 -11Q155 -11 92 58T28 218ZM333 275Q322 403 238 411H236Q228 411 220 410T195 402T166 381T143 340T127 274V267H333V275'], + + // LATIN SMALL LETTER F + 0x66: [705,0,306,26,372,'273 0Q255 3 146 3Q43 3 34 0H26V46H42Q70 46 91 49Q99 52 103 60Q104 62 104 224V385H33V431H104V497L105 564L107 574Q126 639 171 668T266 704Q267 704 275 704T289 705Q330 702 351 679T372 627Q372 604 358 590T321 576T284 590T270 627Q270 647 288 667H284Q280 668 273 668Q245 668 223 647T189 592Q183 572 182 497V431H293V385H185V225Q185 63 186 61T189 57T194 54T199 51T206 49T213 48T222 47T231 47T241 46T251 46H282V0H273'], + + // LATIN SMALL LETTER G + 0x67: [453,206,500,29,485,'329 409Q373 453 429 453Q459 453 472 434T485 396Q485 382 476 371T449 360Q416 360 412 390Q410 404 415 411Q415 412 416 414V415Q388 412 363 393Q355 388 355 386Q355 385 359 381T368 369T379 351T388 325T392 292Q392 230 343 187T222 143Q172 143 123 171Q112 153 112 133Q112 98 138 81Q147 75 155 75T227 73Q311 72 335 67Q396 58 431 26Q470 -13 470 -72Q470 -139 392 -175Q332 -206 250 -206Q167 -206 107 -175Q29 -140 29 -75Q29 -39 50 -15T92 18L103 24Q67 55 67 108Q67 155 96 193Q52 237 52 292Q52 355 102 398T223 442Q274 442 318 416L329 409ZM299 343Q294 371 273 387T221 404Q192 404 171 388T145 343Q142 326 142 292Q142 248 149 227T179 192Q196 182 222 182Q244 182 260 189T283 207T294 227T299 242Q302 258 302 292T299 343ZM403 -75Q403 -50 389 -34T348 -11T299 -2T245 0H218Q151 0 138 -6Q118 -15 107 -34T95 -74Q95 -84 101 -97T122 -127T170 -155T250 -167Q319 -167 361 -139T403 -75'], + + // LATIN SMALL LETTER H + 0x68: [695,0,556,25,542,'41 46H55Q94 46 102 60V68Q102 77 102 91T102 124T102 167T103 217T103 272T103 329Q103 366 103 407T103 482T102 542T102 586T102 603Q99 622 88 628T43 637H25V660Q25 683 27 683L37 684Q47 685 66 686T103 688Q120 689 140 690T170 693T181 694H184V367Q244 442 328 442Q451 442 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41'], + + // LATIN SMALL LETTER I + 0x69: [669,0,278,26,255,'69 609Q69 637 87 653T131 669Q154 667 171 652T188 609Q188 579 171 564T129 549Q104 549 87 564T69 609ZM247 0Q232 3 143 3Q132 3 106 3T56 1L34 0H26V46H42Q70 46 91 49Q100 53 102 60T104 102V205V293Q104 345 102 359T88 378Q74 385 41 385H30V408Q30 431 32 431L42 432Q52 433 70 434T106 436Q123 437 142 438T171 441T182 442H185V62Q190 52 197 50T232 46H255V0H247'], + + // LATIN SMALL LETTER J + 0x6A: [669,205,306,-55,218,'98 609Q98 637 116 653T160 669Q183 667 200 652T217 609Q217 579 200 564T158 549Q133 549 116 564T98 609ZM28 -163Q58 -168 64 -168Q124 -168 135 -77Q137 -65 137 141T136 353Q132 371 120 377T72 385H52V408Q52 431 54 431L58 432Q62 432 70 432T87 433T108 434T133 436Q151 437 171 438T202 441T214 442H218V184Q217 -36 217 -59T211 -98Q195 -145 153 -175T58 -205Q9 -205 -23 -179T-55 -117Q-55 -94 -40 -79T-2 -64T36 -79T52 -118Q52 -143 28 -163'], + + // LATIN SMALL LETTER K + 0x6B: [695,0,528,20,511,'36 46H50Q89 46 97 60V68Q97 77 97 91T97 124T98 167T98 217T98 272T98 329Q98 366 98 407T98 482T98 542T97 586T97 603Q94 622 83 628T38 637H20V660Q20 683 22 683L32 684Q42 685 61 686T98 688Q115 689 135 690T165 693T176 694H179V463L180 233L240 287Q300 341 304 347Q310 356 310 364Q310 383 289 385H284V431H293Q308 428 412 428Q475 428 484 431H489V385H476Q407 380 360 341Q286 278 286 274Q286 273 349 181T420 79Q434 60 451 53T500 46H511V0H505Q496 3 418 3Q322 3 307 0H299V46H306Q330 48 330 65Q330 72 326 79Q323 84 276 153T228 222L176 176V120V84Q176 65 178 59T189 49Q210 46 238 46H254V0H246Q231 3 137 3T28 0H20V46H36'], + + // LATIN SMALL LETTER L + 0x6C: [695,0,278,26,263,'42 46H56Q95 46 103 60V68Q103 77 103 91T103 124T104 167T104 217T104 272T104 329Q104 366 104 407T104 482T104 542T103 586T103 603Q100 622 89 628T44 637H26V660Q26 683 28 683L38 684Q48 685 67 686T104 688Q121 689 141 690T171 693T182 694H185V379Q185 62 186 60Q190 52 198 49Q219 46 247 46H263V0H255L232 1Q209 2 183 2T145 3T107 3T57 1L34 0H26V46H42'], + + // LATIN SMALL LETTER M + 0x6D: [443,0,833,25,819,'41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q351 442 364 440T387 434T406 426T421 417T432 406T441 395T448 384T452 374T455 366L457 361L460 365Q463 369 466 373T475 384T488 397T503 410T523 422T546 432T572 439T603 442Q729 442 740 329Q741 322 741 190V104Q741 66 743 59T754 49Q775 46 803 46H819V0H811L788 1Q764 2 737 2T699 3Q596 3 587 0H579V46H595Q656 46 656 62Q657 64 657 200Q656 335 655 343Q649 371 635 385T611 402T585 404Q540 404 506 370Q479 343 472 315T464 232V168V108Q464 78 465 68T468 55T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41'], + + // LATIN SMALL LETTER N + 0x6E: [443,0,556,25,542,'41 46H55Q94 46 102 60V68Q102 77 102 91T102 122T103 161T103 203Q103 234 103 269T102 328V351Q99 370 88 376T43 385H25V408Q25 431 27 431L37 432Q47 433 65 434T102 436Q119 437 138 438T167 441T178 442H181V402Q181 364 182 364T187 369T199 384T218 402T247 421T285 437Q305 442 336 442Q450 438 463 329Q464 322 464 190V104Q464 66 466 59T477 49Q498 46 526 46H542V0H534L510 1Q487 2 460 2T422 3Q319 3 310 0H302V46H318Q379 46 379 62Q380 64 380 200Q379 335 378 343Q372 371 358 385T334 402T308 404Q263 404 229 370Q202 343 195 315T187 232V168V108Q187 78 188 68T191 55T200 49Q221 46 249 46H265V0H257L234 1Q210 2 183 2T145 3Q42 3 33 0H25V46H41'], + + // LATIN SMALL LETTER O + 0x6F: [448,10,500,28,471,'28 214Q28 309 93 378T250 448Q340 448 405 380T471 215Q471 120 407 55T250 -10Q153 -10 91 57T28 214ZM250 30Q372 30 372 193V225V250Q372 272 371 288T364 326T348 362T317 390T268 410Q263 411 252 411Q222 411 195 399Q152 377 139 338T126 246V226Q126 130 145 91Q177 30 250 30'], + + // LATIN SMALL LETTER P + 0x70: [443,194,556,20,522,'36 -148H50Q89 -148 97 -134V-126Q97 -119 97 -107T97 -77T98 -38T98 6T98 55T98 106Q98 140 98 177T98 243T98 296T97 335T97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 61 434T98 436Q115 437 135 438T165 441T176 442H179V416L180 390L188 397Q247 441 326 441Q407 441 464 377T522 216Q522 115 457 52T310 -11Q242 -11 190 33L182 40V-45V-101Q182 -128 184 -134T195 -145Q216 -148 244 -148H260V-194H252L228 -193Q205 -192 178 -192T140 -191Q37 -191 28 -194H20V-148H36ZM424 218Q424 292 390 347T305 402Q234 402 182 337V98Q222 26 294 26Q345 26 384 80T424 218'], + + // LATIN SMALL LETTER Q + 0x71: [442,194,528,33,535,'33 218Q33 308 95 374T236 441H246Q330 441 381 372L387 364Q388 364 404 403L420 442H457V156Q457 -132 458 -134Q462 -142 470 -145Q491 -148 519 -148H535V-194H527L504 -193Q480 -192 453 -192T415 -191Q312 -191 303 -194H295V-148H311Q339 -148 360 -145Q369 -141 371 -135T373 -106V-41V49Q313 -11 236 -11Q154 -11 94 53T33 218ZM376 300Q346 389 278 401Q275 401 269 401T261 402Q211 400 171 350T131 214Q131 137 165 82T253 27Q296 27 328 54T376 118V300'], + + // LATIN SMALL LETTER R + 0x72: [443,0,392,20,364,'36 46H50Q89 46 97 60V68Q97 77 97 91T98 122T98 161T98 203Q98 234 98 269T98 328L97 351Q94 370 83 376T38 385H20V408Q20 431 22 431L32 432Q42 433 60 434T96 436Q112 437 131 438T160 441T171 442H174V373Q213 441 271 441H277Q322 441 343 419T364 373Q364 352 351 337T313 322Q288 322 276 338T263 372Q263 381 265 388T270 400T273 405Q271 407 250 401Q234 393 226 386Q179 341 179 207V154Q179 141 179 127T179 101T180 81T180 66V61Q181 59 183 57T188 54T193 51T200 49T207 48T216 47T225 47T235 46T245 46H276V0H267Q249 3 140 3Q37 3 28 0H20V46H36'], + + // LATIN SMALL LETTER S + 0x73: [448,11,394,33,359,'295 316Q295 356 268 385T190 414Q154 414 128 401Q98 382 98 349Q97 344 98 336T114 312T157 287Q175 282 201 278T245 269T277 256Q294 248 310 236T342 195T359 133Q359 71 321 31T198 -10H190Q138 -10 94 26L86 19L77 10Q71 4 65 -1L54 -11H46H42Q39 -11 33 -5V74V132Q33 153 35 157T45 162H54Q66 162 70 158T75 146T82 119T101 77Q136 26 198 26Q295 26 295 104Q295 133 277 151Q257 175 194 187T111 210Q75 227 54 256T33 318Q33 357 50 384T93 424T143 442T187 447H198Q238 447 268 432L283 424L292 431Q302 440 314 448H322H326Q329 448 335 442V310L329 304H301Q295 310 295 316'], + + // LATIN SMALL LETTER T + 0x74: [615,10,389,18,333,'27 422Q80 426 109 478T141 600V615H181V431H316V385H181V241Q182 116 182 100T189 68Q203 29 238 29Q282 29 292 100Q293 108 293 146V181H333V146V134Q333 57 291 17Q264 -10 221 -10Q187 -10 162 2T124 33T105 68T98 100Q97 107 97 248V385H18V422H27'], + + // LATIN SMALL LETTER U + 0x75: [443,11,556,25,542,'383 58Q327 -10 256 -10H249Q124 -10 105 89Q104 96 103 226Q102 335 102 348T96 369Q86 385 36 385H25V408Q25 431 27 431L38 432Q48 433 67 434T105 436Q122 437 142 438T172 441T184 442H187V261Q188 77 190 64Q193 49 204 40Q224 26 264 26Q290 26 311 35T343 58T363 90T375 120T379 144Q379 145 379 161T380 201T380 248V315Q380 361 370 372T320 385H302V431Q304 431 378 436T457 442H464V264Q464 84 465 81Q468 61 479 55T524 46H542V0Q540 0 467 -5T390 -11H383V58'], + + // LATIN SMALL LETTER V + 0x76: [431,11,528,19,508,'338 431Q344 429 422 429Q479 429 503 431H508V385H497Q439 381 423 345Q421 341 356 172T288 -2Q283 -11 263 -11Q244 -11 239 -2Q99 359 98 364Q93 378 82 381T43 385H19V431H25L33 430Q41 430 53 430T79 430T104 429T122 428Q217 428 232 431H240V385H226Q187 384 184 370Q184 366 235 234L286 102L377 341V349Q377 363 367 372T349 383T335 385H331V431H338'], + + // LATIN SMALL LETTER W + 0x77: [431,11,722,18,703,'90 368Q84 378 76 380T40 385H18V431H24L43 430Q62 430 84 429T116 428Q206 428 221 431H229V385H215Q177 383 177 368Q177 367 221 239L265 113L339 328L333 345Q323 374 316 379Q308 384 278 385H258V431H264Q270 428 348 428Q439 428 454 431H461V385H452Q404 385 404 369Q404 366 418 324T449 234T481 143L496 100L537 219Q579 341 579 347Q579 363 564 373T530 385H522V431H529Q541 428 624 428Q692 428 698 431H703V385H697Q696 385 691 385T682 384Q635 377 619 334L559 161Q546 124 528 71Q508 12 503 1T487 -11H479Q460 -11 456 -4Q455 -3 407 133L361 267Q359 263 266 -4Q261 -11 243 -11H238Q225 -11 220 -3L90 368'], + + // LATIN SMALL LETTER X + 0x78: [431,0,528,11,516,'201 0Q189 3 102 3Q26 3 17 0H11V46H25Q48 47 67 52T96 61T121 78T139 96T160 122T180 150L226 210L168 288Q159 301 149 315T133 336T122 351T113 363T107 370T100 376T94 379T88 381T80 383Q74 383 44 385H16V431H23Q59 429 126 429Q219 429 229 431H237V385Q201 381 201 369Q201 367 211 353T239 315T268 274L272 270L297 304Q329 345 329 358Q329 364 327 369T322 376T317 380T310 384L307 385H302V431H309Q324 428 408 428Q487 428 493 431H499V385H492Q443 385 411 368Q394 360 377 341T312 257L296 236L358 151Q424 61 429 57T446 50Q464 46 499 46H516V0H510H502Q494 1 482 1T457 2T432 2T414 3Q403 3 377 3T327 1L304 0H295V46H298Q309 46 320 51T331 63Q331 65 291 120L250 175Q249 174 219 133T185 88Q181 83 181 74Q181 63 188 55T206 46Q208 46 208 23V0H201'], + + // LATIN SMALL LETTER Y + 0x79: [431,204,528,19,508,'69 -66Q91 -66 104 -80T118 -116Q118 -134 109 -145T91 -160Q84 -163 97 -166Q104 -168 111 -168Q131 -168 148 -159T175 -138T197 -106T213 -75T225 -43L242 0L170 183Q150 233 125 297Q101 358 96 368T80 381Q79 382 78 382Q66 385 34 385H19V431H26L46 430Q65 430 88 429T122 428Q129 428 142 428T171 429T200 430T224 430L233 431H241V385H232Q183 385 185 366L286 112Q286 113 332 227L376 341V350Q376 365 366 373T348 383T334 385H331V431H337H344Q351 431 361 431T382 430T405 429T422 429Q477 429 503 431H508V385H497Q441 380 422 345Q420 343 378 235T289 9T227 -131Q180 -204 113 -204Q69 -204 44 -177T19 -116Q19 -89 35 -78T69 -66'], + + // LATIN SMALL LETTER Z + 0x7A: [431,0,444,28,401,'42 263Q44 270 48 345T53 423V431H393Q399 425 399 415Q399 403 398 402L381 378Q364 355 331 309T265 220L134 41L182 40H206Q254 40 283 46T331 77Q352 105 359 185L361 201Q361 202 381 202H401V196Q401 195 393 103T384 6V0H209L34 1L31 3Q28 8 28 17Q28 30 29 31T160 210T294 394H236Q169 393 152 388Q127 382 113 367Q89 344 82 264V255H42V263'], + + // LEFT CURLY BRACKET + 0x7B: [750,250,500,65,434,'434 -231Q434 -244 428 -250H410Q281 -250 230 -184Q225 -177 222 -172T217 -161T213 -148T211 -133T210 -111T209 -84T209 -47T209 0Q209 21 209 53Q208 142 204 153Q203 154 203 155Q189 191 153 211T82 231Q71 231 68 234T65 250T68 266T82 269Q116 269 152 289T203 345Q208 356 208 377T209 529V579Q209 634 215 656T244 698Q270 724 324 740Q361 748 377 749Q379 749 390 749T408 750H428Q434 744 434 732Q434 719 431 716Q429 713 415 713Q362 710 332 689T296 647Q291 634 291 499V417Q291 370 288 353T271 314Q240 271 184 255L170 250L184 245Q202 239 220 230T262 196T290 137Q291 131 291 1Q291 -134 296 -147Q306 -174 339 -192T415 -213Q429 -213 431 -216Q434 -219 434 -231'], + + // VERTICAL LINE + 0x7C: [750,249,278,119,159,'139 -249H137Q125 -249 119 -235V251L120 737Q130 750 139 750Q152 750 159 735V-235Q151 -249 141 -249H139'], + + // RIGHT CURLY BRACKET + 0x7D: [750,250,500,65,434,'65 731Q65 745 68 747T88 750Q171 750 216 725T279 670Q288 649 289 635T291 501Q292 362 293 357Q306 312 345 291T417 269Q428 269 431 266T434 250T431 234T417 231Q380 231 345 210T298 157Q293 143 292 121T291 -28V-79Q291 -134 285 -156T256 -198Q202 -250 89 -250Q71 -250 68 -247T65 -230Q65 -224 65 -223T66 -218T69 -214T77 -213Q91 -213 108 -210T146 -200T183 -177T207 -139Q208 -134 209 3L210 139Q223 196 280 230Q315 247 330 250Q305 257 280 270Q225 304 212 352L210 362L209 498Q208 635 207 640Q195 680 154 696T77 713Q68 713 67 716T65 731'], + + // DIAERESIS + 0xA8: [669,-554,500,95,405,'95 612Q95 633 112 651T153 669T193 652T210 612Q210 588 194 571T152 554L127 560Q95 577 95 612ZM289 611Q289 634 304 649T335 668Q336 668 340 668T346 669Q369 669 386 652T404 612T387 572T346 554Q323 554 306 570T289 611'], + + // NOT SIGN + 0xAC: [356,-89,667,56,611,'56 323T56 336T70 356H596Q603 353 611 343V102Q598 89 591 89Q587 89 584 90T579 94T575 98T572 102L571 209V316H70Q56 323 56 336'], + + // MACRON + 0xAF: [590,-544,500,69,430,'69 544V590H430V544H69'], + + // DEGREE SIGN + 0xB0: [715,-542,500,147,352,'147 628Q147 669 179 692T244 715Q298 715 325 689T352 629Q352 592 323 567T249 542Q202 542 175 567T147 628ZM313 628Q313 660 300 669T259 678H253Q248 678 242 678T234 679Q217 679 207 674T192 659T188 644T187 629Q187 600 198 590Q210 579 250 579H265Q279 579 288 581T305 595T313 628'], + + // PLUS-MINUS SIGN + 0xB1: [666,0,778,56,722,'56 320T56 333T70 353H369V502Q369 651 371 655Q376 666 388 666Q402 666 405 654T409 596V500V353H707Q722 345 722 333Q722 320 707 313H409V40H707Q722 32 722 20T707 0H70Q56 7 56 20T70 40H369V313H70Q56 320 56 333'], + + // ACUTE ACCENT + 0xB4: [699,-505,500,203,393,'349 699Q367 699 380 686T393 656Q393 651 392 647T387 637T380 627T367 616T351 602T330 585T303 563L232 505L217 519Q203 533 204 533Q204 534 229 567T282 636T313 678L316 681Q318 684 321 686T328 692T337 697T349 699'], + + // MULTIPLICATION SIGN + 0xD7: [491,-9,778,147,630,'630 29Q630 9 609 9Q604 9 587 25T493 118L389 222L284 117Q178 13 175 11Q171 9 168 9Q160 9 154 15T147 29Q147 36 161 51T255 146L359 250L255 354Q174 435 161 449T147 471Q147 480 153 485T168 490Q173 490 175 489Q178 487 284 383L389 278L493 382Q570 459 587 475T609 491Q630 491 630 471Q630 464 620 453T522 355L418 250L522 145Q606 61 618 48T630 29'], + + // DIVISION SIGN + 0xF7: [537,36,778,56,721,'318 466Q318 500 339 518T386 537Q418 537 438 517T458 466Q458 438 440 417T388 396Q355 396 337 417T318 466ZM56 237T56 250T70 270H706Q721 262 721 250T706 230H70Q56 237 56 250ZM318 34Q318 68 339 86T386 105Q418 105 438 85T458 34Q458 6 440 -15T388 -36Q355 -36 337 -15T318 34'], + + // MODIFIER LETTER CIRCUMFLEX ACCENT + 0x2C6: [694,-531,500,112,387,'112 560L249 694L257 686Q387 562 387 560L361 531Q359 532 303 581L250 627L195 580Q182 569 169 557T148 538L140 532Q138 530 125 546L112 560'], + + // CARON + 0x2C7: [644,-513,500,114,385,'114 611L127 630L136 644Q138 644 193 612Q248 581 250 581L306 612Q361 644 363 644L385 611L318 562L249 513L114 611'], + + // MODIFIER LETTER MACRON + 0x2C9: [590,-544,500,69,430,'69 544V590H430V544H69'], + + // MODIFIER LETTER ACUTE ACCENT + 0x2CA: [699,-505,500,203,393,'349 699Q367 699 380 686T393 656Q393 651 392 647T387 637T380 627T367 616T351 602T330 585T303 563L232 505L217 519Q203 533 204 533Q204 534 229 567T282 636T313 678L316 681Q318 684 321 686T328 692T337 697T349 699'], + + // MODIFIER LETTER GRAVE ACCENT + 0x2CB: [699,-505,500,106,296,'106 655Q106 671 119 685T150 699Q166 699 177 688Q190 671 222 629T275 561T295 533T282 519L267 505L196 563Q119 626 113 634Q106 643 106 655'], + + // BREVE + 0x2D8: [694,-515,500,92,407,'250 515Q179 515 138 565T92 683V694H129V689Q129 688 129 683T130 675Q137 631 169 599T248 567Q304 567 337 608T370 689V694H407V683Q403 617 361 566T250 515'], + + // DOT ABOVE + 0x2D9: [669,-549,500,190,309,'190 609Q190 637 208 653T252 669Q275 667 292 652T309 609Q309 579 292 564T250 549Q225 549 208 564T190 609'], + + // SMALL TILDE + 0x2DC: [668,-565,500,83,416,'179 601Q164 601 151 595T131 584T111 565L97 577L83 588Q83 589 95 603T121 633T142 654Q165 668 187 668T253 650T320 632Q335 632 348 638T368 649T388 668L402 656L416 645Q375 586 344 572Q330 565 313 565Q292 565 248 583T179 601'], + + // EN DASH + 0x2013: [285,-248,500,0,499,'0 248V285H499V248H0'], + + // EM DASH + 0x2014: [285,-248,1000,0,999,'0 248V285H999V248H0'], + + // LEFT SINGLE QUOTATION MARK + 0x2018: [694,-379,278,64,199,'64 494Q64 548 86 597T131 670T160 694Q163 694 172 685T182 672Q182 669 170 656T144 625T116 573T101 501Q101 489 102 489T107 491T120 497T138 500Q163 500 180 483T198 440T181 397T139 379Q110 379 87 405T64 494'], + + // RIGHT SINGLE QUOTATION MARK + 0x2019: [694,-379,278,78,212,'78 634Q78 659 95 676T138 694Q166 694 189 668T212 579Q212 525 190 476T146 403T118 379Q114 379 105 388T95 401Q95 404 107 417T133 448T161 500T176 572Q176 584 175 584T170 581T157 576T139 573Q114 573 96 590T78 634'], + + // LEFT DOUBLE QUOTATION MARK + 0x201C: [694,-379,500,128,466,'128 494Q128 528 137 560T158 616T185 658T209 685T223 694T236 685T245 670Q244 668 231 654T204 622T178 571T164 501Q164 489 165 489T170 491T183 497T201 500Q226 500 244 483T262 440T245 397T202 379Q173 379 151 405T128 494ZM332 494Q332 528 341 560T362 616T389 658T413 685T427 694T439 685T449 672Q449 669 437 656T411 625T383 573T368 501Q368 489 369 489T374 491T387 497T405 500Q430 500 448 483T466 440T449 397T406 379Q377 379 355 405T332 494'], + + // RIGHT DOUBLE QUOTATION MARK + 0x201D: [694,-379,500,34,372,'34 634Q34 659 50 676T93 694Q121 694 144 668T168 579Q168 525 146 476T101 403T73 379Q69 379 60 388T50 401Q50 404 62 417T88 448T116 500T131 572Q131 584 130 584T125 581T112 576T94 573Q69 573 52 590T34 634ZM238 634Q238 659 254 676T297 694Q325 694 348 668T372 579Q372 525 350 476T305 403T277 379Q273 379 264 388T254 401Q254 404 266 417T292 448T320 500T335 572Q335 584 334 584T329 581T316 576T298 573Q273 573 256 590T238 634'], + + // DAGGER + 0x2020: [705,216,444,54,389,'182 675Q195 705 222 705Q234 705 243 700T253 691T263 675L262 655Q262 620 252 549T240 454V449Q250 451 288 461T346 472T377 461T389 431Q389 417 379 404T346 390Q327 390 288 401T243 412H240V405Q245 367 250 339T258 301T261 274T263 225Q263 124 255 -41T239 -213Q236 -216 222 -216H217Q206 -216 204 -212T200 -186Q199 -175 199 -168Q181 38 181 225Q181 265 182 280T191 327T204 405V412H201Q196 412 157 401T98 390Q76 390 66 403T55 431T65 458T98 472Q116 472 155 462T205 449Q204 452 204 460T201 490T193 547Q182 619 182 655V675'], + + // DOUBLE DAGGER + 0x2021: [705,205,444,54,389,'181 658Q181 705 222 705T263 658Q263 633 252 572T240 497Q240 496 241 496Q243 496 285 507T345 519Q365 519 376 508T388 478Q388 466 384 458T375 447T361 438H344Q318 438 282 448T241 459Q240 458 240 456Q240 449 251 384T263 297Q263 278 255 267T238 253T222 250T206 252T190 266T181 297Q181 323 192 383T204 458Q204 459 203 459Q198 459 162 449T101 438H84Q74 443 70 446T61 457T56 478Q56 497 67 508T99 519Q117 519 159 508T203 496Q204 496 204 499Q204 507 193 572T181 658ZM181 202Q181 249 222 249T263 202Q263 185 259 161T249 103T240 48V41H243Q248 41 287 52T346 63T377 52T389 22Q389 8 379 -5T346 -19Q327 -19 288 -8T243 3H240V-4Q243 -24 249 -58T259 -117T263 -158Q263 -177 255 -188T238 -202T222 -205T206 -203T190 -189T181 -158Q181 -141 185 -117T195 -59T204 -4V3H201Q196 3 157 -8T98 -19Q76 -19 66 -6T55 22T65 49T98 63Q117 63 156 52T201 41H204V48Q201 68 195 102T185 161T181 202'], + + // HORIZONTAL ELLIPSIS + 0x2026: [120,0,1172,78,1093,'78 60Q78 84 95 102T138 120Q162 120 180 104T199 61Q199 36 182 18T139 0T96 17T78 60ZM525 60Q525 84 542 102T585 120Q609 120 627 104T646 61Q646 36 629 18T586 0T543 17T525 60ZM972 60Q972 84 989 102T1032 120Q1056 120 1074 104T1093 61Q1093 36 1076 18T1033 0T990 17T972 60'], + + // PRIME + 0x2032: [560,-43,275,30,262,'79 43Q73 43 52 49T30 61Q30 68 85 293T146 528Q161 560 198 560Q218 560 240 545T262 501Q262 496 260 486Q259 479 173 263T84 45T79 43'], + + // COMBINING RIGHT ARROW ABOVE + 0x20D7: [714,-516,0,-471,-29,'-123 694Q-123 702 -118 708T-103 714Q-93 714 -88 706T-80 687T-67 660T-40 633Q-29 626 -29 615Q-29 606 -36 600T-53 590T-83 571T-121 531Q-135 516 -143 516T-157 522T-163 536T-152 559T-129 584T-116 595H-287L-458 596Q-459 597 -461 599T-466 602T-469 607T-471 615Q-471 622 -458 635H-99Q-123 673 -123 694'], + + // LEFTWARDS ARROW + 0x2190: [511,11,1000,55,944,'944 261T944 250T929 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H929Q944 261 944 250'], + + // UPWARDS ARROW + 0x2191: [694,193,500,17,483,'27 414Q17 414 17 433Q17 437 17 439T17 444T19 447T20 450T22 452T26 453T30 454T36 456Q80 467 120 494T180 549Q227 607 238 678Q240 694 251 694Q259 694 261 684Q261 677 265 659T284 608T320 549Q340 525 363 507T405 479T440 463T467 455T479 451Q483 447 483 433Q483 413 472 413Q467 413 458 416Q342 448 277 545L270 555V-179Q262 -193 252 -193H250H248Q236 -193 230 -179V555L223 545Q192 499 146 467T70 424T27 414'], + + // RIGHTWARDS ARROW + 0x2192: [511,11,1000,56,944,'56 237T56 250T70 270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H70Q56 237 56 250'], + + // DOWNWARDS ARROW + 0x2193: [694,194,500,17,483,'473 86Q483 86 483 67Q483 63 483 61T483 56T481 53T480 50T478 48T474 47T470 46T464 44Q428 35 391 14T316 -55T264 -168Q264 -170 263 -173T262 -180T261 -184Q259 -194 251 -194Q242 -194 238 -176T221 -121T180 -49Q169 -34 155 -21T125 2T95 20T67 33T44 42T27 47L21 49Q17 53 17 67Q17 87 28 87Q33 87 42 84Q158 52 223 -45L230 -55V312Q230 391 230 482T229 591Q229 662 231 676T243 693Q244 694 251 694Q264 692 270 679V-55L277 -45Q307 1 353 33T430 76T473 86'], + + // LEFT RIGHT ARROW + 0x2194: [511,11,1000,55,944,'263 479Q267 501 271 506T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H835Q729 349 696 475Q691 493 691 500Q691 511 711 511Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q144 292 194 349T263 479'], + + // UP DOWN ARROW + 0x2195: [772,272,500,17,483,'27 492Q17 492 17 511Q17 515 17 517T17 522T19 525T20 528T22 530T26 531T30 532T36 534Q80 545 120 572T180 627Q210 664 223 701T238 755T250 772T261 762Q261 757 264 741T282 691T319 628Q352 589 390 566T454 536L479 529Q483 525 483 511Q483 491 472 491Q467 491 458 494Q342 526 277 623L270 633V-133L277 -123Q307 -77 353 -45T430 -2T473 8Q483 8 483 -11Q483 -15 483 -17T483 -22T481 -25T480 -28T478 -30T474 -31T470 -32T464 -34Q407 -49 364 -84T300 -157T270 -223T261 -262Q259 -272 250 -272Q242 -272 239 -255T223 -201T180 -127Q169 -112 155 -99T125 -76T95 -58T67 -45T44 -36T27 -31L21 -29Q17 -25 17 -11Q17 9 28 9Q33 9 42 6Q158 -26 223 -123L230 -133V633L223 623Q192 577 146 545T70 502T27 492'], + + // NORTH WEST ARROW + 0x2196: [720,195,1000,29,944,'204 662Q257 662 301 676T369 705T394 720Q398 720 407 711T417 697Q417 688 389 671T310 639T212 623Q176 623 153 628Q151 628 221 557T546 232Q942 -164 943 -168Q944 -170 944 -174Q944 -182 938 -188T924 -195Q922 -195 916 -193Q912 -191 517 204Q440 281 326 394T166 553L121 598Q126 589 126 541Q126 438 70 349Q59 332 52 332Q48 332 39 341T29 355Q29 358 38 372T57 407T77 464T86 545Q86 583 78 614T63 663T55 683Q55 693 65 693Q73 693 82 688Q136 662 204 662'], + + // NORTH EAST ARROW + 0x2197: [720,195,1000,55,971,'582 697Q582 701 591 710T605 720Q607 720 630 706T697 677T795 662Q830 662 863 670T914 686T934 694Q942 694 944 685Q944 680 936 663T921 615T913 545Q913 490 927 446T956 379T970 355Q970 351 961 342T947 332Q940 332 929 349Q874 436 874 541Q874 590 878 598L832 553Q787 508 673 395T482 204Q87 -191 83 -193Q77 -195 75 -195Q67 -195 61 -189T55 -174Q55 -170 56 -168Q58 -164 453 232Q707 487 777 557T847 628Q824 623 787 623Q689 623 599 679Q582 690 582 697'], + + // SOUTH EAST ARROW + 0x2198: [695,220,1000,55,970,'55 675Q55 683 60 689T75 695Q77 695 83 693Q87 691 482 296Q532 246 605 174T717 62T799 -20T859 -80T878 -97Q874 -93 874 -41Q874 64 929 151Q940 168 947 168Q951 168 960 159T970 145Q970 143 956 121T928 54T913 -45Q913 -83 920 -114T936 -163T944 -185Q942 -194 934 -194Q932 -194 914 -186T864 -170T795 -162Q743 -162 698 -176T630 -205T605 -220Q601 -220 592 -211T582 -197Q582 -187 611 -170T691 -138T787 -123Q824 -123 847 -128Q848 -128 778 -57T453 268Q58 664 56 668Q55 670 55 675'], + + // SOUTH WEST ARROW + 0x2199: [695,220,1000,29,944,'126 -41Q126 -92 121 -97Q121 -98 139 -80T200 -20T281 61T394 173T517 296Q909 690 916 693Q922 695 924 695Q932 695 938 689T944 674Q944 670 943 668Q942 664 546 268Q292 13 222 -57T153 -128Q176 -123 212 -123Q310 -123 400 -179Q417 -190 417 -197Q417 -201 408 -210T394 -220Q392 -220 369 -206T302 -177T204 -162Q131 -162 67 -194Q63 -195 59 -192T55 -183Q55 -180 62 -163T78 -115T86 -45Q86 10 72 54T44 120T29 145Q29 149 38 158T52 168Q59 168 70 151Q126 62 126 -41'], + + // RIGHTWARDS ARROW FROM BAR + 0x21A6: [511,11,1000,54,944,'95 155V109Q95 83 92 73T75 63Q61 63 58 74T54 130Q54 140 54 180T55 250Q55 421 57 425Q61 437 75 437Q88 437 91 428T95 393V345V270H835Q719 357 692 493Q692 494 692 496T691 499Q691 511 708 511H711Q720 511 723 510T729 506T732 497T735 481T743 456Q765 389 816 336T935 261Q944 258 944 250Q944 244 939 241T915 231T877 212Q836 186 806 152T761 85T740 35T732 4Q730 -6 727 -8T711 -11Q691 -11 691 0Q691 7 696 25Q728 151 835 230H95V155'], + + // LEFTWARDS ARROW WITH HOOK + 0x21A9: [511,11,1126,55,1070,'903 424T903 444T929 464Q976 464 1023 434T1070 347Q1070 316 1055 292T1016 256T971 237T929 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270H926Q929 270 941 271T960 275T978 280T998 290T1015 307Q1030 325 1030 347Q1030 355 1027 364T1014 387T983 411T929 424H928Q903 424 903 444'], + + // RIGHTWARDS ARROW WITH HOOK + 0x21AA: [511,11,1126,55,1070,'55 347Q55 380 72 404T113 441T159 458T197 464Q222 464 222 444Q222 429 204 426T157 417T110 387Q95 369 95 347Q95 339 98 330T111 307T142 283T196 270H961Q845 357 818 493Q818 494 818 496T817 499Q817 511 834 511H837Q846 511 849 510T855 506T858 497T861 481T869 456Q891 389 942 336T1061 261Q1070 258 1070 250Q1070 244 1065 241T1041 231T1003 212Q962 186 932 152T887 85T866 35T858 4Q856 -6 853 -8T837 -11Q817 -11 817 0Q817 7 822 25Q854 151 961 230H196Q149 230 102 260T55 347'], + + // LEFTWARDS HARPOON WITH BARB UPWARDS + 0x21BC: [511,-230,1000,55,944,'62 230Q56 236 55 244Q55 252 57 255T69 265Q114 292 151 326T208 391T243 448T265 491T273 509Q276 511 288 511Q304 511 306 505Q309 501 303 484Q293 456 279 430T251 383T223 344T196 313T173 291T156 276L148 270H929Q944 261 944 250T929 230H62'], + + // LEFTWARDS HARPOON WITH BARB DOWNWARDS + 0x21BD: [270,11,1000,55,944,'55 256Q56 264 62 270H929Q944 261 944 250T929 230H148Q149 229 165 215T196 185T231 145T270 87T303 16Q309 -1 306 -5Q304 -11 288 -11Q279 -11 276 -10T269 -4T264 10T253 36T231 75Q172 173 69 235Q59 242 57 245T55 256'], + + // RIGHTWARDS HARPOON WITH BARB UPWARDS + 0x21C0: [511,-230,1000,56,945,'691 500Q691 511 711 511Q720 511 723 510T730 504T735 490T746 464T768 425Q796 378 835 339T897 285T933 263Q941 258 942 256T944 245T937 230H70Q56 237 56 250T70 270H852Q802 308 762 364T707 455T691 500'], + + // RIGHTWARDS HARPOON WITH BARB DOWNWARDS + 0x21C1: [270,11,1000,56,944,'56 237T56 250T70 270H937Q944 263 944 256Q944 251 944 250T943 246T940 242T933 238Q794 153 734 7Q729 -7 726 -9T711 -11Q695 -11 693 -5Q690 -1 696 16Q721 84 763 139T852 230H70Q56 237 56 250'], + + // RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON + 0x21CC: [671,11,1000,55,945,'691 660Q691 671 711 671Q720 671 723 670T730 664T735 650T746 624T768 585Q797 538 836 499T897 445T933 423Q941 418 942 416T944 405T937 390H70Q56 397 56 410T70 430H852Q802 468 762 524T707 615T691 660ZM55 256Q56 264 62 270H929Q944 261 944 250T929 230H148Q149 229 165 215T196 185T231 145T270 87T303 16Q309 -1 306 -5Q304 -11 288 -11Q279 -11 276 -10T269 -4T264 10T253 36T231 75Q172 173 69 235Q59 242 57 245T55 256'], + + // LEFTWARDS DOUBLE ARROW + 0x21D0: [525,24,1000,56,945,'944 153Q944 140 929 133H318L328 123Q379 69 414 0Q419 -13 419 -17Q419 -24 399 -24Q388 -24 385 -23T377 -12Q332 77 253 144T72 237Q62 240 59 242T56 250T59 257T70 262T89 268T119 278T160 296Q303 366 377 512Q382 522 385 523T401 525Q419 524 419 515Q419 510 414 500Q379 431 328 377L318 367H929Q944 359 944 347Q944 336 930 328L602 327H274L264 319Q225 289 147 250Q148 249 165 241T210 217T264 181L274 173H930Q931 172 933 171T936 169T938 167T941 164T942 162T943 158T944 153'], + + // UPWARDS DOUBLE ARROW + 0x21D1: [694,194,611,31,579,'228 -179Q227 -180 226 -182T223 -186T221 -189T218 -192T214 -193T208 -194Q196 -194 189 -181L188 125V430L176 419Q122 369 59 338Q46 330 40 330Q38 330 31 337V350Q31 362 33 365T46 374Q60 381 77 390T128 426T190 484T247 567T292 677Q295 688 298 692Q302 694 305 694Q313 694 318 677Q334 619 363 568T420 485T481 427T532 391T564 374Q575 368 577 365T579 350V337Q572 330 570 330Q564 330 551 338Q487 370 435 419L423 430L422 125V-181Q409 -194 401 -194Q397 -194 394 -193T388 -189T385 -184T382 -180V-177V475L373 487Q331 541 305 602Q304 601 300 591T290 571T278 548T260 519T238 488L229 476L228 148V-179'], + + // RIGHTWARDS DOUBLE ARROW + 0x21D2: [525,24,1000,56,944,'580 514Q580 525 596 525Q601 525 604 525T609 525T613 524T615 523T617 520T619 517T622 512Q659 438 720 381T831 300T927 263Q944 258 944 250T935 239T898 228T840 204Q696 134 622 -12Q618 -21 615 -22T600 -24Q580 -24 580 -17Q580 -13 585 0Q620 69 671 123L681 133H70Q56 140 56 153Q56 168 72 173H725L735 181Q774 211 852 250Q851 251 834 259T789 283T735 319L725 327H72Q56 332 56 347Q56 360 70 367H681L671 377Q638 412 609 458T580 514'], + + // DOWNWARDS DOUBLE ARROW + 0x21D3: [694,194,611,31,579,'401 694Q412 694 422 681V375L423 70L435 81Q487 130 551 162Q564 170 570 170Q572 170 579 163V150Q579 138 577 135T564 126Q541 114 518 99T453 48T374 -46T318 -177Q313 -194 305 -194T293 -178T272 -119T225 -31Q158 70 46 126Q35 132 33 135T31 150V163Q38 170 40 170Q46 170 59 162Q122 131 176 81L188 70V375L189 681Q199 694 208 694Q219 694 228 680V352L229 25L238 12Q279 -42 305 -102Q344 -23 373 13L382 25V678Q387 692 401 694'], + + // LEFT RIGHT DOUBLE ARROW + 0x21D4: [526,25,1000,33,966,'308 524Q318 526 323 526Q340 526 340 514Q340 507 336 499Q326 476 314 454T292 417T274 391T260 374L255 368Q255 367 500 367Q744 367 744 368L739 374Q734 379 726 390T707 416T685 453T663 499Q658 511 658 515Q658 525 680 525Q687 524 690 523T695 519T701 507Q766 359 902 287Q921 276 939 269T961 259T966 250Q966 246 965 244T960 240T949 236T930 228T902 213Q763 137 701 -7Q697 -16 695 -19T690 -23T680 -25Q658 -25 658 -15Q658 -11 663 1Q673 24 685 46T707 83T725 109T739 126L744 132Q744 133 500 133Q255 133 255 132L260 126Q265 121 273 110T292 84T314 47T336 1Q341 -11 341 -15Q341 -25 319 -25Q312 -24 309 -23T304 -19T298 -7Q233 141 97 213Q83 221 70 227T51 235T41 239T35 243T34 250T35 256T40 261T51 265T70 273T97 287Q235 363 299 509Q305 522 308 524ZM792 319L783 327H216Q183 294 120 256L110 250L120 244Q173 212 207 181L216 173H783L792 181Q826 212 879 244L889 250L879 256Q826 288 792 319'], + + // UP DOWN DOUBLE ARROW + 0x21D5: [772,272,611,31,579,'290 755Q298 772 305 772T318 757T343 706T393 633Q431 588 473 558T545 515T579 497V484Q579 464 570 464Q564 464 550 470Q485 497 423 550L422 400V100L423 -50Q485 3 550 30Q565 36 570 36Q579 36 579 16V3Q575 -1 549 -12T480 -53T393 -132Q361 -172 342 -208T318 -258T305 -272T293 -258T268 -208T217 -132Q170 -80 128 -51T61 -12T31 3V16Q31 36 40 36Q46 36 61 30Q86 19 109 6T146 -18T173 -38T188 -50V550Q186 549 173 539T147 519T110 495T61 470Q46 464 40 464Q31 464 31 484V497Q34 500 63 513T135 557T217 633Q267 692 290 755ZM374 598Q363 610 351 625T332 651T316 676T305 695L294 676Q282 657 267 636T236 598L228 589V-89L236 -98Q247 -110 259 -125T278 -151T294 -176T305 -195L316 -176Q328 -157 343 -136T374 -98L382 -89V589L374 598'], + + // FOR ALL + 0x2200: [694,22,556,0,556,'0 673Q0 684 7 689T20 694Q32 694 38 680T82 567L126 451H430L473 566Q483 593 494 622T512 668T519 685Q524 694 538 694Q556 692 556 674Q556 670 426 329T293 -15Q288 -22 278 -22T263 -15Q260 -11 131 328T0 673ZM414 410Q414 411 278 411T142 410L278 55L414 410'], + + // PARTIAL DIFFERENTIAL + 0x2202: [715,22,531,42,567,'202 508Q179 508 169 520T158 547Q158 557 164 577T185 624T230 675T301 710L333 715H345Q378 715 384 714Q447 703 489 661T549 568T566 457Q566 362 519 240T402 53Q321 -22 223 -22Q123 -22 73 56Q42 102 42 148V159Q42 276 129 370T322 465Q383 465 414 434T455 367L458 378Q478 461 478 515Q478 603 437 639T344 676Q266 676 223 612Q264 606 264 572Q264 547 246 528T202 508ZM430 306Q430 372 401 400T333 428Q270 428 222 382Q197 354 183 323T150 221Q132 149 132 116Q132 21 232 21Q244 21 250 22Q327 35 374 112Q389 137 409 196T430 306'], + + // THERE EXISTS + 0x2203: [694,0,556,56,500,'56 661T56 674T70 694H487Q497 686 500 679V15Q497 10 487 1L279 0H70Q56 7 56 20T70 40H460V327H84Q70 334 70 347T84 367H460V654H70Q56 661 56 674'], + + // EMPTY SET + 0x2205: [772,78,500,39,460,'331 696Q335 708 339 722T345 744T350 759T357 769T367 772Q374 772 381 767T388 754Q388 746 377 712L366 673L378 661Q460 575 460 344Q460 281 456 234T432 126T373 27Q319 -22 250 -22Q214 -22 180 -7Q168 -3 168 -4L159 -33Q148 -71 142 -75Q138 -78 132 -78Q124 -78 118 -72T111 -60Q111 -52 122 -18L133 21L125 29Q39 111 39 344Q39 596 137 675Q187 716 251 716Q265 716 278 714T296 710T315 703T331 696ZM276 676Q264 679 246 679Q196 679 159 631Q134 597 128 536T121 356Q121 234 127 174T151 80L234 366Q253 430 275 506T308 618L318 654Q318 656 294 669L276 676ZM181 42Q207 16 250 16Q291 16 324 47Q354 78 366 136T378 356Q378 470 372 528T349 616L348 613Q348 611 264 326L181 42'], + + // NABLA + 0x2207: [683,33,833,46,786,'46 676Q46 679 51 683H781Q786 679 786 676Q786 674 617 326T444 -26Q439 -33 416 -33T388 -26Q385 -22 216 326T46 676ZM697 596Q697 597 445 597T193 596Q195 591 319 336T445 80L697 596'], + + // ELEMENT OF + 0x2208: [541,41,667,84,583,'84 250Q84 372 166 450T360 539Q361 539 377 539T419 540T469 540H568Q583 532 583 520Q583 511 570 501L466 500Q355 499 329 494Q280 482 242 458T183 409T147 354T129 306T124 272V270H568Q583 262 583 250T568 230H124V228Q124 207 134 177T167 112T231 48T328 7Q355 1 466 0H570Q583 -10 583 -20Q583 -32 568 -40H471Q464 -40 446 -40T417 -41Q262 -41 172 45Q84 127 84 250'], + + // stix-negated (vert) set membership, variant + 0x2209: [716,215,667,84,584,'196 25Q84 109 84 250Q84 372 166 450T360 539Q361 539 375 539T413 540T460 540L547 707Q550 716 563 716Q570 716 575 712T581 703T583 696T505 540H568Q583 532 583 520Q583 511 570 501L484 500L366 270H568Q583 262 583 250T568 230H346L247 38Q284 16 328 7Q355 1 466 0H570Q583 -10 583 -20Q583 -32 568 -40H471Q464 -40 447 -40T419 -41Q304 -41 228 3Q117 -211 115 -212Q111 -215 104 -215T92 -212T86 -204T84 -197Q84 -190 89 -183L196 25ZM214 61L301 230H124V228Q124 196 147 147T214 61ZM321 270L440 500Q353 499 329 494Q280 482 242 458T183 409T147 354T129 306T124 272V270H321'], + + // CONTAINS AS MEMBER + 0x220B: [541,40,667,83,582,'83 520Q83 532 98 540H195Q202 540 220 540T249 541Q404 541 494 455Q582 374 582 250Q582 165 539 99T434 0T304 -39Q297 -40 195 -40H98Q83 -32 83 -20Q83 -10 96 0H200Q311 1 337 6Q369 14 401 28Q422 39 445 55Q484 85 508 127T537 191T542 228V230H98Q84 237 84 250T98 270H542V272Q542 280 539 295T527 336T497 391T445 445Q422 461 401 472Q386 479 374 483T347 491T325 495T298 498T273 499T239 500T200 500L96 501Q83 511 83 520'], + + // MINUS SIGN + 0x2212: [270,-230,778,84,694,'84 237T84 250T98 270H679Q694 262 694 250T679 230H98Q84 237 84 250'], + + // MINUS-OR-PLUS SIGN + 0x2213: [500,166,778,56,722,'56 467T56 480T70 500H707Q722 492 722 480T707 460H409V187H707Q722 179 722 167Q722 154 707 147H409V0V-93Q409 -144 406 -155T389 -166Q376 -166 372 -155T368 -105Q368 -96 368 -62T369 -2V147H70Q56 154 56 167T70 187H369V460H70Q56 467 56 480'], + + // DIVISION SLASH + 0x2215: [750,250,500,56,444,'423 750Q432 750 438 744T444 730Q444 725 271 248T92 -240Q85 -250 75 -250Q68 -250 62 -245T56 -231Q56 -221 230 257T407 740Q411 750 423 750'], + + // SET MINUS + 0x2216: [750,250,500,56,444,'56 731Q56 740 62 745T75 750Q85 750 92 740Q96 733 270 255T444 -231Q444 -239 438 -244T424 -250Q414 -250 407 -240Q404 -236 230 242T56 731'], + + // ASTERISK OPERATOR + 0x2217: [465,-35,500,64,435,'229 286Q216 420 216 436Q216 454 240 464Q241 464 245 464T251 465Q263 464 273 456T283 436Q283 419 277 356T270 286L328 328Q384 369 389 372T399 375Q412 375 423 365T435 338Q435 325 425 315Q420 312 357 282T289 250L355 219L425 184Q434 175 434 161Q434 146 425 136T401 125Q393 125 383 131T328 171L270 213Q283 79 283 63Q283 53 276 44T250 35Q231 35 224 44T216 63Q216 80 222 143T229 213L171 171Q115 130 110 127Q106 124 100 124Q87 124 76 134T64 161Q64 166 64 169T67 175T72 181T81 188T94 195T113 204T138 215T170 230T210 250L74 315Q65 324 65 338Q65 353 74 363T98 374Q106 374 116 368T171 328L229 286'], + + // RING OPERATOR + 0x2218: [444,-55,500,55,444,'55 251Q55 328 112 386T249 444T386 388T444 249Q444 171 388 113T250 55Q170 55 113 112T55 251ZM245 403Q188 403 142 361T96 250Q96 183 141 140T250 96Q284 96 313 109T354 135T375 160Q403 197 403 250Q403 313 360 358T245 403'], + + // BULLET OPERATOR + 0x2219: [444,-55,500,55,444,'55 251Q55 328 112 386T249 444T386 388T444 249Q444 171 388 113T250 55Q170 55 113 112T55 251'], + + // SQUARE ROOT + 0x221A: [800,200,833,71,853,'95 178Q89 178 81 186T72 200T103 230T169 280T207 309Q209 311 212 311H213Q219 311 227 294T281 177Q300 134 312 108L397 -77Q398 -77 501 136T707 565T814 786Q820 800 834 800Q841 800 846 794T853 782V776L620 293L385 -193Q381 -200 366 -200Q357 -200 354 -197Q352 -195 256 15L160 225L144 214Q129 202 113 190T95 178'], + + // PROPORTIONAL TO + 0x221D: [442,11,778,56,722,'56 124T56 216T107 375T238 442Q260 442 280 438T319 425T352 407T382 385T406 361T427 336T442 315T455 297T462 285L469 297Q555 442 679 442Q687 442 722 437V398H718Q710 400 694 400Q657 400 623 383T567 343T527 294T503 253T495 235Q495 231 520 192T554 143Q625 44 696 44Q717 44 719 46H722V-5Q695 -11 678 -11Q552 -11 457 141Q455 145 454 146L447 134Q362 -11 235 -11Q157 -11 107 56ZM93 213Q93 143 126 87T220 31Q258 31 292 48T349 88T389 137T413 178T421 196Q421 200 396 239T362 288Q322 345 288 366T213 387Q163 387 128 337T93 213'], + + // INFINITY + 0x221E: [442,11,1000,55,944,'55 217Q55 305 111 373T254 442Q342 442 419 381Q457 350 493 303L507 284L514 294Q618 442 747 442Q833 442 888 374T944 214Q944 128 889 59T743 -11Q657 -11 580 50Q542 81 506 128L492 147L485 137Q381 -11 252 -11Q166 -11 111 57T55 217ZM907 217Q907 285 869 341T761 397Q740 397 720 392T682 378T648 359T619 335T594 310T574 285T559 263T548 246L543 238L574 198Q605 158 622 138T664 94T714 61T765 51Q827 51 867 100T907 217ZM92 214Q92 145 131 89T239 33Q357 33 456 193L425 233Q364 312 334 337Q285 380 233 380Q171 380 132 331T92 214'], + + // ANGLE + 0x2220: [694,0,722,55,666,'71 0L68 2Q65 3 63 5T58 11T55 20Q55 22 57 28Q67 43 346 361Q397 420 474 508Q595 648 616 671T647 694T661 688T666 674Q666 668 663 663Q662 662 627 622T524 503T390 350L120 41L386 40H653Q666 30 666 20Q666 8 651 0H71'], + + // DIVIDES + 0x2223: [750,249,278,119,159,'139 -249H137Q125 -249 119 -235V251L120 737Q130 750 139 750Q152 750 159 735V-235Q151 -249 141 -249H139'], + + // PARALLEL TO + 0x2225: [750,250,500,132,368,'133 736Q138 750 153 750Q164 750 170 739Q172 735 172 250T170 -239Q164 -250 152 -250Q144 -250 138 -244L137 -243Q133 -241 133 -179T132 250Q132 731 133 736ZM329 739Q334 750 346 750Q353 750 361 744L362 743Q366 741 366 679T367 250T367 -178T362 -243L361 -244Q355 -250 347 -250Q335 -250 329 -239Q327 -235 327 250T329 739'], + + // LOGICAL AND + 0x2227: [598,22,667,55,611,'318 591Q325 598 333 598Q344 598 348 591Q349 590 414 445T545 151T611 -4Q609 -22 591 -22Q588 -22 586 -21T581 -20T577 -17T575 -13T572 -9T570 -4L333 528L96 -4Q87 -20 80 -21Q78 -22 75 -22Q57 -22 55 -4Q55 2 120 150T251 444T318 591'], + + // LOGICAL OR + 0x2228: [598,22,667,55,611,'55 580Q56 587 61 592T75 598Q86 598 96 580L333 48L570 580Q579 596 586 597Q588 598 591 598Q609 598 611 580Q611 574 546 426T415 132T348 -15Q343 -22 333 -22T318 -15Q317 -14 252 131T121 425T55 580'], + + // stix-intersection, serifs + 0x2229: [598,22,667,55,611,'88 -21T75 -21T55 -7V200Q55 231 55 280Q56 414 60 428Q61 430 61 431Q77 500 152 549T332 598Q443 598 522 544T610 405Q611 399 611 194V-7Q604 -22 591 -22Q582 -22 572 -9L570 405Q563 433 556 449T529 485Q498 519 445 538T334 558Q251 558 179 518T96 401Q95 396 95 193V-7Q88 -21 75 -21'], + + // stix-union, serifs + 0x222A: [598,22,667,55,611,'591 598H592Q604 598 611 583V376Q611 345 611 296Q610 162 606 148Q605 146 605 145Q586 68 507 23T333 -22Q268 -22 209 -1T106 66T56 173Q55 180 55 384L56 585Q66 598 75 598Q85 598 95 585V378L96 172L98 162Q112 95 181 57T332 18Q415 18 487 58T570 175Q571 180 571 383V583Q579 598 591 598'], + + // INTEGRAL + 0x222B: [716,216,417,55,472,'151 -112Q151 -150 106 -161Q106 -165 114 -172T134 -179Q155 -179 170 -146Q181 -120 188 -64T206 101T232 310Q256 472 277 567Q308 716 392 716Q434 716 453 681T472 613Q472 590 458 577T424 564Q404 564 390 578T376 612Q376 650 421 661Q421 663 418 667T407 675T393 679Q387 679 380 675Q360 665 350 619T326 438Q302 190 253 -57Q235 -147 201 -186Q174 -213 138 -216Q93 -216 74 -181T55 -113Q55 -91 69 -78T103 -64Q123 -64 137 -78T151 -112'], + + // TILDE OPERATOR + 0x223C: [367,-133,778,55,722,'55 166Q55 241 101 304T222 367Q260 367 296 349T362 304T421 252T484 208T554 189Q616 189 655 236T694 338Q694 350 698 358T708 367Q722 367 722 334Q722 260 677 197T562 134H554Q517 134 481 152T414 196T355 248T292 293T223 311Q179 311 145 286Q109 257 96 218T80 156T69 133Q55 133 55 166'], + + // WREATH PRODUCT + 0x2240: [583,83,278,55,222,'55 569Q55 583 83 583Q122 583 151 565T194 519T215 464T222 411Q222 360 194 304T139 193T111 89Q111 38 134 -7T195 -55Q222 -57 222 -69Q222 -83 189 -83Q130 -83 93 -33T55 90Q55 130 72 174T110 252T148 328T166 411Q166 462 144 507T83 555Q55 556 55 569'], + + // ASYMPTOTICALLY EQUAL TO + 0x2243: [464,-36,778,55,722,'55 283Q55 356 103 409T217 463Q262 463 297 447T395 382Q431 355 446 344T493 320T554 307H558Q613 307 652 344T694 433Q694 464 708 464T722 432Q722 356 673 304T564 251H554Q510 251 465 275T387 329T310 382T223 407H219Q164 407 122 367Q91 333 85 295T76 253T69 250Q55 250 55 283ZM56 56Q56 71 72 76H706Q722 70 722 56Q722 44 707 36H70Q56 43 56 56'], + + // APPROXIMATELY EQUAL TO + 0x2245: [589,-22,1000,55,722,'55 388Q55 463 101 526T222 589Q260 589 296 571T362 526T421 474T484 430T554 411Q616 411 655 458T694 560Q694 572 698 580T708 589Q722 589 722 556Q722 482 677 419T562 356H554Q517 356 481 374T414 418T355 471T292 515T223 533Q179 533 145 508Q109 479 96 440T80 378T69 355Q55 355 55 388ZM56 236Q56 249 70 256H707Q722 248 722 236Q722 225 708 217L390 216H72Q56 221 56 236ZM56 42Q56 57 72 62H708Q722 52 722 42Q722 30 707 22H70Q56 29 56 42'], + + // ALMOST EQUAL TO + 0x2248: [483,-55,778,55,722,'55 319Q55 360 72 393T114 444T163 472T205 482Q207 482 213 482T223 483Q262 483 296 468T393 413L443 381Q502 346 553 346Q609 346 649 375T694 454Q694 465 698 474T708 483Q722 483 722 452Q722 386 675 338T555 289Q514 289 468 310T388 357T308 404T224 426Q164 426 125 393T83 318Q81 289 69 289Q55 289 55 319ZM55 85Q55 126 72 159T114 210T163 238T205 248Q207 248 213 248T223 249Q262 249 296 234T393 179L443 147Q502 112 553 112Q609 112 649 141T694 220Q694 249 708 249T722 217Q722 153 675 104T555 55Q514 55 468 76T388 123T308 170T224 192Q164 192 125 159T83 84Q80 55 69 55Q55 55 55 85'], + + // EQUIVALENT TO + 0x224D: [484,-16,778,55,722,'55 464Q55 471 60 477T74 484Q80 484 108 464T172 420T268 376T389 356Q436 356 483 368T566 399T630 436T675 467T695 482Q701 484 703 484Q711 484 716 478T722 464Q722 454 707 442Q550 316 389 316Q338 316 286 329T195 362T124 402T76 437T57 456Q55 462 55 464ZM57 45Q66 58 109 88T230 151T381 183Q438 183 494 168T587 135T658 94T703 61T720 45Q722 39 722 36Q722 28 717 22T703 16Q697 16 669 36T606 80T510 124T389 144Q341 144 294 132T211 101T147 64T102 33T82 18Q76 16 74 16Q66 16 61 22T55 36Q55 39 57 45'], + + // APPROACHES THE LIMIT + 0x2250: [670,-133,778,56,722,'56 347Q56 360 70 367H707Q722 359 722 347Q722 336 708 328L390 327H72Q56 332 56 347ZM56 153Q56 168 72 173H708Q722 163 722 153Q722 140 707 133H70Q56 140 56 153ZM329 610Q329 634 346 652T389 670Q413 670 431 654T450 611Q450 586 433 568T390 550T347 567T329 610'], + + // stix-not (vert) equals + 0x2260: [716,215,778,56,722,'166 -215T159 -215T147 -212T141 -204T139 -197Q139 -190 144 -183L306 133H70Q56 140 56 153Q56 168 72 173H327L406 327H72Q56 332 56 347Q56 360 70 367H426Q597 702 602 707Q605 716 618 716Q625 716 630 712T636 703T638 696Q638 692 471 367H707Q722 359 722 347Q722 336 708 328L451 327L371 173H708Q722 163 722 153Q722 140 707 133H351Q175 -210 170 -212Q166 -215 159 -215'], + + // IDENTICAL TO + 0x2261: [464,-36,778,56,722,'56 444Q56 457 70 464H707Q722 456 722 444Q722 430 706 424H72Q56 429 56 444ZM56 237T56 250T70 270H707Q722 262 722 250T707 230H70Q56 237 56 250ZM56 56Q56 71 72 76H706Q722 70 722 56Q722 44 707 36H70Q56 43 56 56'], + + // LESS-THAN OR EQUAL TO + 0x2264: [636,138,778,83,694,'674 636Q682 636 688 630T694 615T687 601Q686 600 417 472L151 346L399 228Q687 92 691 87Q694 81 694 76Q694 58 676 56H670L382 192Q92 329 90 331Q83 336 83 348Q84 359 96 365Q104 369 382 500T665 634Q669 636 674 636ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118'], + + // GREATER-THAN OR EQUAL TO + 0x2265: [636,138,778,82,694,'83 616Q83 624 89 630T99 636Q107 636 253 568T543 431T687 361Q694 356 694 346T687 331Q685 329 395 192L107 56H101Q83 58 83 76Q83 77 83 79Q82 86 98 95Q117 105 248 167Q326 204 378 228L626 346L360 472Q291 505 200 548Q112 589 98 597T83 616ZM84 -118Q84 -108 99 -98H678Q694 -104 694 -118Q694 -130 679 -138H98Q84 -131 84 -118'], + + // MUCH LESS-THAN + 0x226A: [568,67,1000,56,944,'639 -48Q639 -54 634 -60T619 -67H618Q612 -67 536 -26Q430 33 329 88Q61 235 59 239Q56 243 56 250T59 261Q62 266 336 415T615 567L619 568Q622 567 625 567Q639 562 639 548Q639 540 633 534Q632 532 374 391L117 250L374 109Q632 -32 633 -34Q639 -40 639 -48ZM944 -48Q944 -54 939 -60T924 -67H923Q917 -67 841 -26Q735 33 634 88Q366 235 364 239Q361 243 361 250T364 261Q367 266 641 415T920 567L924 568Q927 567 930 567Q944 562 944 548Q944 540 938 534Q937 532 679 391L422 250L679 109Q937 -32 938 -34Q944 -40 944 -48'], + + // MUCH GREATER-THAN + 0x226B: [567,67,1000,55,944,'55 539T55 547T60 561T74 567Q81 567 207 498Q297 449 365 412Q633 265 636 261Q639 255 639 250Q639 241 626 232Q614 224 365 88Q83 -65 79 -66Q76 -67 73 -67Q65 -67 60 -61T55 -47Q55 -39 61 -33Q62 -33 95 -15T193 39T320 109L321 110H322L323 111H324L325 112L326 113H327L329 114H330L331 115H332L333 116L334 117H335L336 118H337L338 119H339L340 120L341 121H342L343 122H344L345 123H346L347 124L348 125H349L351 126H352L353 127H354L355 128L356 129H357L358 130H359L360 131H361L362 132L363 133H364L365 134H366L367 135H368L369 136H370L371 137L372 138H373L374 139H375L376 140L378 141L576 251Q63 530 62 533Q55 539 55 547ZM360 539T360 547T365 561T379 567Q386 567 512 498Q602 449 670 412Q938 265 941 261Q944 255 944 250Q944 241 931 232Q919 224 670 88Q388 -65 384 -66Q381 -67 378 -67Q370 -67 365 -61T360 -47Q360 -39 366 -33Q367 -33 400 -15T498 39T625 109L626 110H627L628 111H629L630 112L631 113H632L634 114H635L636 115H637L638 116L639 117H640L641 118H642L643 119H644L645 120L646 121H647L648 122H649L650 123H651L652 124L653 125H654L656 126H657L658 127H659L660 128L661 129H662L663 130H664L665 131H666L667 132L668 133H669L670 134H671L672 135H673L674 136H675L676 137L677 138H678L679 139H680L681 140L683 141L881 251Q368 530 367 533Q360 539 360 547'], + + // PRECEDES + 0x227A: [539,41,778,84,694,'84 249Q84 262 91 266T117 270Q120 270 126 270T137 269Q388 273 512 333T653 512Q657 539 676 539Q685 538 689 532T694 520V515Q689 469 672 431T626 366T569 320T500 286T435 265T373 249Q379 248 404 242T440 233T477 221T533 199Q681 124 694 -17Q694 -41 674 -41Q658 -41 653 -17Q646 41 613 84T533 154T418 197T284 220T137 229H114Q104 229 98 230T88 235T84 249'], + + // SUCCEEDS + 0x227B: [539,41,778,83,694,'84 517Q84 539 102 539Q115 539 119 529T125 503T137 459T171 404Q277 275 640 269H661Q694 269 694 249T661 229H640Q526 227 439 214T283 173T173 98T124 -17Q118 -41 103 -41Q83 -41 83 -17Q88 29 105 67T151 132T208 178T277 212T342 233T404 249Q401 250 380 254T345 263T302 276T245 299Q125 358 92 468Q84 502 84 517'], + + // SUBSET OF + 0x2282: [541,41,778,84,694,'84 250Q84 372 166 450T360 539Q361 539 370 539T395 539T430 540T475 540T524 540H679Q694 532 694 520Q694 511 681 501L522 500H470H441Q366 500 338 496T266 472Q244 461 224 446T179 404T139 337T124 250V245Q124 157 185 89Q244 25 328 7Q348 2 366 2T522 0H681Q694 -10 694 -20Q694 -32 679 -40H526Q510 -40 480 -40T434 -41Q350 -41 289 -25T172 45Q84 127 84 250'], + + // SUPERSET OF + 0x2283: [541,40,778,83,693,'83 520Q83 532 98 540H251Q267 540 297 540T343 541Q427 541 488 525T605 455Q693 374 693 250Q693 165 650 99T545 0T415 -39Q407 -40 251 -40H98Q83 -32 83 -20Q83 -10 96 0H255H308H337Q412 0 439 4T512 28Q533 39 553 54T599 96T639 163T654 250Q654 341 592 411Q557 449 512 472Q468 491 439 495T335 500H306H255L96 501Q83 511 83 520'], + + // SUBSET OF OR EQUAL TO + 0x2286: [637,138,778,84,694,'84 346Q84 468 166 546T360 635Q361 635 370 635T395 635T430 636T475 636T524 636H679Q694 628 694 616Q694 607 681 597L522 596H470H441Q366 596 338 592T266 568Q244 557 224 542T179 500T139 433T124 346V341Q124 253 185 185Q244 121 328 103Q348 98 366 98T522 96H681Q694 86 694 76Q694 64 679 56H526Q510 56 480 56T434 55Q350 55 289 71T172 141Q84 223 84 346ZM104 -131T104 -118T118 -98H679Q694 -106 694 -118T679 -138H118Q104 -131 104 -118'], + + // SUPERSET OF OR EQUAL TO + 0x2287: [637,138,778,83,693,'83 616Q83 628 98 636H251Q267 636 297 636T343 637Q427 637 488 621T605 551Q693 470 693 346Q693 261 650 195T545 96T415 57Q407 56 251 56H98Q83 64 83 76Q83 86 96 96H255H308H337Q412 96 439 100T512 124Q533 135 553 150T599 192T639 259T654 346Q654 437 592 507Q557 545 512 568Q468 587 439 591T335 596H306H255L96 597Q83 607 83 616ZM84 -131T84 -118T98 -98H659Q674 -106 674 -118T659 -138H98Q84 -131 84 -118'], + + // MULTISET UNION + 0x228E: [598,22,667,55,611,'591 598H592Q604 598 611 583V376Q611 345 611 296Q610 162 606 148Q605 146 605 145Q586 68 507 23T333 -22Q268 -22 209 -1T106 66T56 173Q55 180 55 384L56 585Q66 598 75 598Q85 598 95 585V378L96 172L98 162Q112 95 181 57T332 18Q415 18 487 58T570 175Q571 180 571 383V583Q579 598 591 598ZM313 406Q313 417 313 435T312 459Q312 483 316 493T333 503T349 494T353 461V406V325H515Q516 325 519 323T527 316T531 305T527 294T520 287T515 285H353V204V152Q353 127 350 117T333 107T316 117T312 152Q312 158 312 175T313 204V285H151Q150 285 147 287T139 294T135 305T139 316T146 323T151 325H313V406'], + + // SQUARE IMAGE OF OR EQUAL TO + 0x2291: [636,138,778,84,714,'94 620Q98 632 110 636H699Q714 628 714 616T699 596H134V96H698Q714 90 714 76Q714 64 699 56H109Q104 59 95 69L94 344V620ZM84 -118Q84 -103 100 -98H698Q714 -104 714 -118Q714 -130 699 -138H98Q84 -131 84 -118'], + + // SQUARE ORIGINAL OF OR EQUAL TO + 0x2292: [636,138,778,64,694,'64 603T64 616T78 636H668Q675 633 683 623V69Q675 59 668 56H78Q64 63 64 76Q64 91 80 96H643V596H78Q64 603 64 616ZM64 -118Q64 -108 79 -98H678Q694 -104 694 -118Q694 -130 679 -138H78Q64 -131 64 -118'], + + // stix-square intersection, serifs + 0x2293: [598,0,667,61,605,'83 0Q79 0 76 1T71 3T67 6T65 9T63 13T61 16V301L62 585Q70 595 76 598H592Q602 590 605 583V15Q598 2 587 0Q583 0 580 1T575 3T571 6T569 9T567 13T565 16V558H101V15Q94 2 83 0'], + + // stix-square union, serifs + 0x2294: [598,0,667,61,605,'77 0Q65 4 61 16V301L62 585Q72 598 81 598Q94 598 101 583V40H565V583Q573 598 585 598Q598 598 605 583V15Q602 10 592 1L335 0H77'], + + // stix-circled plus (with rim) + 0x2295: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM364 542Q308 539 251 509T148 418T96 278V270H369V542H364ZM681 278Q675 338 650 386T592 462T522 509T458 535T412 542H409V270H681V278ZM96 222Q104 150 139 95T219 12T302 -29T366 -42H369V230H96V222ZM681 222V230H409V-42H412Q429 -42 456 -36T521 -10T590 37T649 113T681 222'], + + // CIRCLED MINUS + 0x2296: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM681 278Q669 385 591 463T381 542Q283 542 196 471T96 278V270H681V278ZM275 -42T388 -42T585 32T681 222V230H96V222Q108 107 191 33'], + + // stix-circled times (with rim) + 0x2297: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM582 471Q531 510 496 523Q446 542 381 542Q324 542 272 519T196 471L389 278L485 375L582 471ZM167 442Q95 362 95 250Q95 137 167 58L359 250L167 442ZM610 58Q682 138 682 250Q682 363 610 442L418 250L610 58ZM196 29Q209 16 230 2T295 -27T388 -42Q409 -42 429 -40T465 -33T496 -23T522 -11T544 1T561 13T574 22T582 29L388 222L196 29'], + + // CIRCLED DIVISION SLASH + 0x2298: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM582 471Q581 472 571 480T556 491T539 502T517 514T491 525T460 534T424 539T381 542Q272 542 184 460T95 251Q95 198 113 150T149 80L167 58L582 471ZM388 -42Q513 -42 597 44T682 250Q682 363 610 442L196 29Q209 16 229 2T295 -27T388 -42'], + + // CIRCLED DOT OPERATOR + 0x2299: [583,83,778,56,722,'56 250Q56 394 156 488T384 583Q530 583 626 485T722 250Q722 110 625 14T390 -83Q249 -83 153 14T56 250ZM682 250Q682 322 649 387T546 497T381 542Q272 542 184 459T95 250Q95 132 178 45T389 -42Q515 -42 598 45T682 250ZM311 250Q311 285 332 304T375 328Q376 328 382 328T392 329Q424 326 445 305T466 250Q466 217 445 195T389 172Q354 172 333 195T311 250'], + + // RIGHT TACK + 0x22A2: [695,0,611,55,555,'55 678Q55 679 56 681T58 684T61 688T65 691T70 693T77 694Q88 692 95 679V367H540Q555 359 555 347Q555 334 540 327H95V15Q88 2 77 0Q73 0 70 1T65 3T61 6T59 9T57 13T55 16V678'], + + // LEFT TACK + 0x22A3: [695,0,611,54,555,'515 678Q515 679 516 681T518 684T521 688T525 691T530 693T537 694Q548 692 555 679V15Q548 2 537 0Q533 0 530 1T525 3T521 6T519 9T517 13T515 16V327H71Q70 327 67 329T59 336T55 347T59 358T66 365T71 367H515V678'], + + // DOWN TACK + 0x22A4: [668,0,778,55,723,'55 642T55 648T59 659T66 666T71 668H708Q723 660 723 648T708 628H409V15Q402 2 391 0Q387 0 384 1T379 3T375 6T373 9T371 13T369 16V628H71Q70 628 67 630T59 637'], + + // UP TACK + 0x22A5: [669,0,778,54,723,'369 652Q369 653 370 655T372 658T375 662T379 665T384 667T391 668Q402 666 409 653V40H708Q723 32 723 20T708 0H71Q70 0 67 2T59 9T55 20T59 31T66 38T71 40H369V652'], + + // TRUE + 0x22A8: [750,249,867,119,812,'139 -249H137Q125 -249 119 -235V251L120 737Q130 750 139 750Q152 750 159 735V367H796Q811 359 811 347Q811 336 797 328L479 327H161L159 328V172L161 173H797Q798 172 800 171T803 169T805 167T808 164T809 162T810 158T811 153Q811 140 796 133H159V-235Q151 -249 141 -249H139'], + + // DIAMOND OPERATOR + 0x22C4: [488,-12,500,12,488,'242 486Q245 488 250 488Q256 488 258 486Q262 484 373 373T486 258T488 250T486 242T373 127T258 14Q256 12 250 12Q245 12 242 14Q237 16 127 126T14 242Q12 245 12 250T14 258Q16 263 126 373T242 486ZM439 250L250 439L61 250L250 61L439 250'], + + // DOT OPERATOR + 0x22C5: [310,-190,278,78,199,'78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250'], + + // STAR OPERATOR + 0x22C6: [486,-16,500,3,497,'210 282Q210 284 225 381T241 480Q241 484 245 484Q249 486 251 486Q258 486 260 477T272 406Q275 390 276 380Q290 286 290 282L388 299Q484 314 487 314H488Q497 314 497 302Q497 297 434 266Q416 257 404 251L315 206L361 118Q372 98 383 75T401 40L407 28Q407 16 395 16Q394 16 392 16L390 17L250 159L110 17L108 16Q106 16 105 16Q93 16 93 28L99 40Q105 52 116 75T139 118L185 206L96 251Q6 296 4 300Q3 301 3 302Q3 314 12 314H13Q16 314 112 299L210 282'], + + // BOWTIE + 0x22C8: [505,5,900,26,873,'833 50T833 250T832 450T659 351T487 250T658 150T832 50Q833 50 833 250ZM873 10Q866 -5 854 -5Q851 -5 845 -3L449 226L260 115Q51 -5 43 -5Q39 -5 35 -1T28 7L26 11V489Q33 505 43 505Q51 505 260 385L449 274L845 503Q851 505 853 505Q866 505 873 490V10ZM412 250L67 450Q66 450 66 250T67 50Q69 51 240 150T412 250'], + + // VERTICAL ELLIPSIS + 0x22EE: [900,30,278,78,199,'78 30Q78 54 95 72T138 90Q162 90 180 74T199 31Q199 6 182 -12T139 -30T96 -13T78 30ZM78 440Q78 464 95 482T138 500Q162 500 180 484T199 441Q199 416 182 398T139 380T96 397T78 440ZM78 840Q78 864 95 882T138 900Q162 900 180 884T199 841Q199 816 182 798T139 780T96 797T78 840'], + + // MIDLINE HORIZONTAL ELLIPSIS + 0x22EF: [310,-190,1172,78,1093,'78 250Q78 274 95 292T138 310Q162 310 180 294T199 251Q199 226 182 208T139 190T96 207T78 250ZM525 250Q525 274 542 292T585 310Q609 310 627 294T646 251Q646 226 629 208T586 190T543 207T525 250ZM972 250Q972 274 989 292T1032 310Q1056 310 1074 294T1093 251Q1093 226 1076 208T1033 190T990 207T972 250'], + + // DOWN RIGHT DIAGONAL ELLIPSIS + 0x22F1: [820,-100,1282,133,1148,'133 760Q133 784 150 802T193 820Q217 820 235 804T254 761Q254 736 237 718T194 700T151 717T133 760ZM580 460Q580 484 597 502T640 520Q664 520 682 504T701 461Q701 436 684 418T641 400T598 417T580 460ZM1027 160Q1027 184 1044 202T1087 220Q1111 220 1129 204T1148 161Q1148 136 1131 118T1088 100T1045 117T1027 160'], + + // LEFT CEILING + 0x2308: [750,250,444,174,422,'174 734Q178 746 190 750H298H369Q400 750 411 747T422 730T411 713T372 709Q365 709 345 709T310 710H214V-235Q206 -248 196 -250Q192 -250 189 -249T184 -247T180 -244T178 -241T176 -237T174 -234V734'], + + // RIGHT CEILING + 0x2309: [750,250,444,21,269,'21 717T21 730T32 746T75 750H147H256Q266 742 269 735V-235Q262 -248 251 -250Q247 -250 244 -249T239 -247T235 -244T233 -241T231 -237T229 -234V710H133Q119 710 99 710T71 709Q43 709 32 713'], + + // LEFT FLOOR + 0x230A: [751,251,444,174,423,'174 734Q174 735 175 737T177 740T180 744T184 747T189 749T196 750Q206 748 214 735V-210H310H373Q401 -210 411 -213T422 -230T411 -247T369 -251Q362 -251 338 -251T298 -250H190Q178 -246 174 -234V734'], + + // RIGHT FLOOR + 0x230B: [751,250,444,21,269,'229 734Q229 735 230 737T232 740T235 744T239 747T244 749T251 750Q262 748 269 735V-235Q266 -240 256 -249L147 -250H77Q43 -250 32 -247T21 -230T32 -213T72 -209Q79 -209 99 -209T133 -210H229V734'], + + // stix-small down curve + 0x2322: [388,-122,1000,55,944,'55 141Q55 149 72 174T125 234T209 303T329 360T478 388H526Q649 383 765 319Q814 291 858 250T923 179T944 141Q944 133 938 128T924 122Q914 124 912 125T902 139Q766 328 500 328Q415 328 342 308T225 258T150 199T102 148T84 124Q81 122 75 122Q55 127 55 141'], + + // stix-small up curve + 0x2323: [378,-134,1000,55,944,'923 378Q944 378 944 358Q944 345 912 311T859 259Q710 134 500 134Q288 134 140 259Q55 336 55 358Q55 366 61 372T75 378Q78 378 84 376Q86 376 101 356T147 310T221 257T339 212T500 193Q628 193 734 236Q841 282 903 363Q914 378 923 378'], + + // UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION + 0x23B0: [744,244,412,56,357,'357 741V726Q357 720 349 715Q261 655 242 539Q240 526 240 454T239 315T239 247Q240 235 240 124V40Q240 -17 233 -53T201 -130Q155 -206 78 -244H69H64Q58 -244 57 -243T56 -234Q56 -232 56 -231V-225Q56 -218 63 -215Q153 -153 170 -39Q172 -25 173 119V219Q173 245 174 249Q173 258 173 376V460Q173 515 178 545T201 611Q244 695 327 741L334 744H354L357 741'], + + // UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION + 0x23B1: [744,244,412,55,357,'78 744Q153 706 196 640T239 492V376Q239 341 239 314T238 271T238 253Q239 251 239 223V119V49Q239 -39 254 -85Q263 -111 275 -134T301 -172T326 -197T346 -213T356 -221T357 -232V-241L354 -244H334Q264 -209 222 -146T174 -12Q173 -6 173 95Q173 134 173 191T174 250Q173 258 173 382V451Q173 542 159 585Q145 626 120 658T75 706T56 723V731Q56 741 57 742T66 744H78'], + + // MATHEMATICAL LEFT ANGLE BRACKET + 0x27E8: [750,250,389,109,333,'333 -232Q332 -239 327 -244T313 -250Q303 -250 296 -240Q293 -233 202 6T110 250T201 494T296 740Q299 745 306 749L309 750Q312 750 313 750Q331 750 333 732Q333 727 243 489Q152 252 152 250T243 11Q333 -227 333 -232'], + + // MATHEMATICAL RIGHT ANGLE BRACKET + 0x27E9: [750,250,389,55,279,'55 732Q56 739 61 744T75 750Q85 750 92 740Q95 733 186 494T278 250T187 6T92 -240Q85 -250 75 -250Q67 -250 62 -245T55 -232Q55 -227 145 11Q236 248 236 250T145 489Q55 727 55 732'], + + // MATHEMATICAL LEFT FLATTENED PARENTHESIS + 0x27EE: [744,244,412,173,357,'357 741V726Q357 720 349 715Q261 655 242 539Q240 526 240 394V331Q240 259 239 250Q240 242 240 119V49Q240 -42 254 -85Q263 -111 275 -134T301 -172T326 -197T346 -213T356 -221T357 -232V-241L354 -244H334Q264 -209 222 -146T174 -12Q173 -6 173 95Q173 134 173 191T174 250Q173 260 173 376V460Q173 515 178 545T201 611Q244 695 327 741L334 744H354L357 741'], + + // MATHEMATICAL RIGHT FLATTENED PARENTHESIS + 0x27EF: [744,244,412,55,240,'78 744Q153 706 196 640T239 492V376Q239 339 239 311T238 269T238 252Q240 236 240 124V40Q240 -18 233 -53T202 -130Q156 -206 79 -244H70H65Q58 -244 57 -242T56 -231T57 -220T64 -215Q153 -154 170 -39Q173 -18 174 119V247Q173 249 173 382V451Q173 542 159 585Q145 626 120 658T75 706T56 723V731Q56 741 57 742T66 744H78'], + + // LONG LEFTWARDS ARROW + 0x27F5: [511,11,1609,55,1525,'165 270H1510Q1525 262 1525 250T1510 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270'], + + // LONG RIGHTWARDS ARROW + 0x27F6: [511,11,1638,84,1553,'84 237T84 250T98 270H1444Q1328 357 1301 493Q1301 494 1301 496T1300 499Q1300 511 1317 511H1320Q1329 511 1332 510T1338 506T1341 497T1344 481T1352 456Q1374 389 1425 336T1544 261Q1553 258 1553 250Q1553 244 1548 241T1524 231T1486 212Q1445 186 1415 152T1370 85T1349 35T1341 4Q1339 -6 1336 -8T1320 -11Q1300 -11 1300 0Q1300 7 1305 25Q1337 151 1444 230H98Q84 237 84 250'], + + // LONG LEFT RIGHT ARROW + 0x27F7: [511,11,1859,55,1803,'165 270H1694Q1578 357 1551 493Q1551 494 1551 496T1550 499Q1550 511 1567 511H1570Q1579 511 1582 510T1588 506T1591 497T1594 481T1602 456Q1624 389 1675 336T1794 261Q1803 258 1803 250Q1803 244 1798 241T1774 231T1736 212Q1695 186 1665 152T1620 85T1599 35T1591 4Q1589 -6 1586 -8T1570 -11Q1550 -11 1550 0Q1550 7 1555 25Q1587 151 1694 230H165Q167 228 182 216T211 189T244 152T277 96T303 25Q308 7 308 0Q308 -11 288 -11Q281 -11 278 -11T272 -7T267 2T263 21Q245 94 195 151T73 236Q58 242 55 247Q55 254 59 257T73 264Q121 283 158 314T215 375T247 434T264 480L267 497Q269 503 270 505T275 509T288 511Q308 511 308 500Q308 493 303 475Q293 438 278 406T246 352T215 315T185 287T165 270'], + + // LONG LEFTWARDS DOUBLE ARROW + 0x27F8: [525,24,1609,56,1554,'274 173H1539Q1540 172 1542 171T1545 169T1547 167T1550 164T1551 162T1552 158T1553 153Q1553 140 1538 133H318L328 123Q379 69 414 0Q419 -13 419 -17Q419 -24 399 -24Q388 -24 385 -23T377 -12Q332 77 253 144T72 237Q62 240 59 242T56 250T59 257T70 262T89 268T119 278T160 296Q303 366 377 512Q382 522 385 523T401 525Q419 524 419 515Q419 510 414 500Q379 431 328 377L318 367H1538Q1553 359 1553 347Q1553 336 1539 328L1221 327H903L900 328L602 327H274L264 319Q225 289 147 250Q148 249 165 241T210 217T264 181L274 173'], + + // LONG RIGHTWARDS DOUBLE ARROW + 0x27F9: [525,24,1638,56,1582,'1218 514Q1218 525 1234 525Q1239 525 1242 525T1247 525T1251 524T1253 523T1255 520T1257 517T1260 512Q1297 438 1358 381T1469 300T1565 263Q1582 258 1582 250T1573 239T1536 228T1478 204Q1334 134 1260 -12Q1256 -21 1253 -22T1238 -24Q1218 -24 1218 -17Q1218 -13 1223 0Q1258 69 1309 123L1319 133H70Q56 140 56 153Q56 168 72 173H1363L1373 181Q1412 211 1490 250Q1489 251 1472 259T1427 283T1373 319L1363 327H710L707 328L390 327H72Q56 332 56 347Q56 360 70 367H1319L1309 377Q1276 412 1247 458T1218 514'], + + // LONG LEFT RIGHT DOUBLE ARROW + 0x27FA: [525,24,1858,56,1802,'1438 514Q1438 525 1454 525Q1459 525 1462 525T1467 525T1471 524T1473 523T1475 520T1477 517T1480 512Q1517 438 1578 381T1689 300T1785 263Q1802 258 1802 250T1793 239T1756 228T1698 204Q1554 134 1480 -12Q1476 -21 1473 -22T1458 -24Q1438 -24 1438 -17Q1438 -13 1443 0Q1478 69 1529 123L1539 133H318L328 123Q379 69 414 0Q419 -13 419 -17Q419 -24 399 -24Q388 -24 385 -23T377 -12Q332 77 253 144T72 237Q62 240 59 242T56 250T59 257T70 262T89 268T119 278T160 296Q303 366 377 512Q382 522 385 523T401 525Q419 524 419 515Q419 510 414 500Q379 431 328 377L318 367H1539L1529 377Q1496 412 1467 458T1438 514ZM274 173H1583L1593 181Q1632 211 1710 250Q1709 251 1692 259T1647 283T1593 319L1583 327H930L927 328L602 327H274L264 319Q225 289 147 250Q148 249 165 241T210 217T264 181L274 173'], + + // LONG RIGHTWARDS ARROW FROM BAR + 0x27FC: [511,11,1638,54,1553,'95 155V109Q95 83 92 73T75 63Q61 63 58 74T54 130Q54 140 54 180T55 250Q55 421 57 425Q61 437 75 437Q88 437 91 428T95 393V345V270H1444Q1328 357 1301 493Q1301 494 1301 496T1300 499Q1300 511 1317 511H1320Q1329 511 1332 510T1338 506T1341 497T1344 481T1352 456Q1374 389 1425 336T1544 261Q1553 258 1553 250Q1553 244 1548 241T1524 231T1486 212Q1445 186 1415 152T1370 85T1349 35T1341 4Q1339 -6 1336 -8T1320 -11Q1300 -11 1300 0Q1300 7 1305 25Q1337 151 1444 230H95V155'], + + // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN + 0x2AAF: [636,138,778,84,694,'84 346Q84 359 91 363T117 367Q120 367 126 367T137 366Q388 370 512 430T653 609Q657 636 676 636Q685 635 689 629T694 618V612Q689 566 672 528T626 463T569 417T500 383T435 362T373 346Q379 345 404 339T440 330T477 318T533 296Q592 266 630 223T681 145T694 78Q694 57 674 57Q662 57 657 67T652 92T640 135T606 191Q500 320 137 326H114Q104 326 98 327T88 332T84 346ZM84 -131T84 -118T98 -98H679Q694 -106 694 -118T679 -138H98Q84 -131 84 -118'], + + // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN + 0x2AB0: [636,138,778,83,694,'84 614Q84 636 102 636Q115 636 119 626T125 600T137 556T171 501Q277 372 640 366H661Q694 366 694 346T661 326H640Q578 325 526 321T415 307T309 280T222 237T156 172T124 83Q122 66 118 62T103 57Q100 57 98 57T95 58T93 59T90 62T85 67Q83 71 83 80Q88 126 105 164T151 229T208 275T277 309T342 330T404 346Q401 347 380 351T345 360T302 373T245 396Q125 455 92 565Q84 599 84 614ZM84 -131T84 -118T98 -98H679Q694 -106 694 -118T679 -138H98Q84 -131 84 -118'] + }; + + SVG.FONTDATA.FONTS['MathJax_Math-italic'] = { + directory: 'Math/Italic', + family: 'MathJax_Math', + id: 'MJMATHI', + style: 'italic', + skew: { + 0x41: 0.139, + 0x42: 0.0833, + 0x43: 0.0833, + 0x44: 0.0556, + 0x45: 0.0833, + 0x46: 0.0833, + 0x47: 0.0833, + 0x48: 0.0556, + 0x49: 0.111, + 0x4A: 0.167, + 0x4B: 0.0556, + 0x4C: 0.0278, + 0x4D: 0.0833, + 0x4E: 0.0833, + 0x4F: 0.0833, + 0x50: 0.0833, + 0x51: 0.0833, + 0x52: 0.0833, + 0x53: 0.0833, + 0x54: 0.0833, + 0x55: 0.0278, + 0x58: 0.0833, + 0x5A: 0.0833, + 0x63: 0.0556, + 0x64: 0.167, + 0x65: 0.0556, + 0x66: 0.167, + 0x67: 0.0278, + 0x68: -0.0278, + 0x6C: 0.0833, + 0x6F: 0.0556, + 0x70: 0.0833, + 0x71: 0.0833, + 0x72: 0.0556, + 0x73: 0.0556, + 0x74: 0.0833, + 0x75: 0.0278, + 0x76: 0.0278, + 0x77: 0.0833, + 0x78: 0.0278, + 0x79: 0.0556, + 0x7A: 0.0556, + 0x393: 0.0833, + 0x394: 0.167, + 0x398: 0.0833, + 0x39B: 0.167, + 0x39E: 0.0833, + 0x3A0: 0.0556, + 0x3A3: 0.0833, + 0x3A5: 0.0556, + 0x3A6: 0.0833, + 0x3A8: 0.0556, + 0x3A9: 0.0833, + 0x3B1: 0.0278, + 0x3B2: 0.0833, + 0x3B4: 0.0556, + 0x3B5: 0.0833, + 0x3B6: 0.0833, + 0x3B7: 0.0556, + 0x3B8: 0.0833, + 0x3B9: 0.0556, + 0x3BC: 0.0278, + 0x3BD: 0.0278, + 0x3BE: 0.111, + 0x3BF: 0.0556, + 0x3C1: 0.0833, + 0x3C2: 0.0833, + 0x3C4: 0.0278, + 0x3C5: 0.0278, + 0x3C6: 0.0833, + 0x3C7: 0.0556, + 0x3C8: 0.111, + 0x3D1: 0.0833, + 0x3D5: 0.0833, + 0x3F1: 0.0833, + 0x3F5: 0.0556 + }, + + // SPACE + 0x20: [0,0,250,0,0,''], + + // SOLIDUS + 0x2F: [716,215,778,139,638,'166 -215T159 -215T147 -212T141 -204T139 -197Q139 -190 144 -183Q157 -157 378 274T602 707Q605 716 618 716Q625 716 630 712T636 703T638 696Q638 691 406 241T170 -212Q166 -215 159 -215'], + + // LATIN CAPITAL LETTER A + 0x41: [716,0,750,35,726,'208 74Q208 50 254 46Q272 46 272 35Q272 34 270 22Q267 8 264 4T251 0Q249 0 239 0T205 1T141 2Q70 2 50 0H42Q35 7 35 11Q37 38 48 46H62Q132 49 164 96Q170 102 345 401T523 704Q530 716 547 716H555H572Q578 707 578 706L606 383Q634 60 636 57Q641 46 701 46Q726 46 726 36Q726 34 723 22Q720 7 718 4T704 0Q701 0 690 0T651 1T578 2Q484 2 455 0H443Q437 6 437 9T439 27Q443 40 445 43L449 46H469Q523 49 533 63L521 213H283L249 155Q208 86 208 74ZM516 260Q516 271 504 416T490 562L463 519Q447 492 400 412L310 260L413 259Q516 259 516 260'], + + // LATIN CAPITAL LETTER B + 0x42: [683,0,759,35,756,'231 637Q204 637 199 638T194 649Q194 676 205 682Q206 683 335 683Q594 683 608 681Q671 671 713 636T756 544Q756 480 698 429T565 360L555 357Q619 348 660 311T702 219Q702 146 630 78T453 1Q446 0 242 0Q42 0 39 2Q35 5 35 10Q35 17 37 24Q42 43 47 45Q51 46 62 46H68Q95 46 128 49Q142 52 147 61Q150 65 219 339T288 628Q288 635 231 637ZM649 544Q649 574 634 600T585 634Q578 636 493 637Q473 637 451 637T416 636H403Q388 635 384 626Q382 622 352 506Q352 503 351 500L320 374H401Q482 374 494 376Q554 386 601 434T649 544ZM595 229Q595 273 572 302T512 336Q506 337 429 337Q311 337 310 336Q310 334 293 263T258 122L240 52Q240 48 252 48T333 46Q422 46 429 47Q491 54 543 105T595 229'], + + // LATIN CAPITAL LETTER C + 0x43: [705,22,715,50,760,'50 252Q50 367 117 473T286 641T490 704Q580 704 633 653Q642 643 648 636T656 626L657 623Q660 623 684 649Q691 655 699 663T715 679T725 690L740 705H746Q760 705 760 698Q760 694 728 561Q692 422 692 421Q690 416 687 415T669 413H653Q647 419 647 422Q647 423 648 429T650 449T651 481Q651 552 619 605T510 659Q484 659 454 652T382 628T299 572T226 479Q194 422 175 346T156 222Q156 108 232 58Q280 24 350 24Q441 24 512 92T606 240Q610 253 612 255T628 257Q648 257 648 248Q648 243 647 239Q618 132 523 55T319 -22Q206 -22 128 53T50 252'], + + // LATIN CAPITAL LETTER D + 0x44: [683,0,828,33,803,'287 628Q287 635 230 637Q207 637 200 638T193 647Q193 655 197 667T204 682Q206 683 403 683Q570 682 590 682T630 676Q702 659 752 597T803 431Q803 275 696 151T444 3L430 1L236 0H125H72Q48 0 41 2T33 11Q33 13 36 25Q40 41 44 43T67 46Q94 46 127 49Q141 52 146 61Q149 65 218 339T287 628ZM703 469Q703 507 692 537T666 584T629 613T590 629T555 636Q553 636 541 636T512 636T479 637H436Q392 637 386 627Q384 623 313 339T242 52Q242 48 253 48T330 47Q335 47 349 47T373 46Q499 46 581 128Q617 164 640 212T683 339T703 469'], + + // LATIN CAPITAL LETTER E + 0x45: [680,0,738,31,764,'492 213Q472 213 472 226Q472 230 477 250T482 285Q482 316 461 323T364 330H312Q311 328 277 192T243 52Q243 48 254 48T334 46Q428 46 458 48T518 61Q567 77 599 117T670 248Q680 270 683 272Q690 274 698 274Q718 274 718 261Q613 7 608 2Q605 0 322 0H133Q31 0 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 659Q197 676 203 680H757Q764 676 764 669Q764 664 751 557T737 447Q735 440 717 440H705Q698 445 698 453L701 476Q704 500 704 528Q704 558 697 578T678 609T643 625T596 632T532 634H485Q397 633 392 631Q388 629 386 622Q385 619 355 499T324 377Q347 376 372 376H398Q464 376 489 391T534 472Q538 488 540 490T557 493Q562 493 565 493T570 492T572 491T574 487T577 483L544 351Q511 218 508 216Q505 213 492 213'], + + // LATIN CAPITAL LETTER F + 0x46: [680,0,643,31,749,'48 1Q31 1 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 659Q197 676 203 680H742Q749 676 749 669Q749 664 736 557T722 447Q720 440 702 440H690Q683 445 683 453Q683 454 686 477T689 530Q689 560 682 579T663 610T626 626T575 633T503 634H480Q398 633 393 631Q388 629 386 623Q385 622 352 492L320 363H375Q378 363 398 363T426 364T448 367T472 374T489 386Q502 398 511 419T524 457T529 475Q532 480 548 480H560Q567 475 567 470Q567 467 536 339T502 207Q500 200 482 200H470Q463 206 463 212Q463 215 468 234T473 274Q473 303 453 310T364 317H309L277 190Q245 66 245 60Q245 46 334 46H359Q365 40 365 39T363 19Q359 6 353 0H336Q295 2 185 2Q120 2 86 2T48 1'], + + // LATIN CAPITAL LETTER G + 0x47: [705,22,786,50,760,'50 252Q50 367 117 473T286 641T490 704Q580 704 633 653Q642 643 648 636T656 626L657 623Q660 623 684 649Q691 655 699 663T715 679T725 690L740 705H746Q760 705 760 698Q760 694 728 561Q692 422 692 421Q690 416 687 415T669 413H653Q647 419 647 422Q647 423 648 429T650 449T651 481Q651 552 619 605T510 659Q492 659 471 656T418 643T357 615T294 567T236 496T189 394T158 260Q156 242 156 221Q156 173 170 136T206 79T256 45T308 28T353 24Q407 24 452 47T514 106Q517 114 529 161T541 214Q541 222 528 224T468 227H431Q425 233 425 235T427 254Q431 267 437 273H454Q494 271 594 271Q634 271 659 271T695 272T707 272Q721 272 721 263Q721 261 719 249Q714 230 709 228Q706 227 694 227Q674 227 653 224Q646 221 643 215T629 164Q620 131 614 108Q589 6 586 3Q584 1 581 1Q571 1 553 21T530 52Q530 53 528 52T522 47Q448 -22 322 -22Q201 -22 126 55T50 252'], + + // LATIN CAPITAL LETTER H + 0x48: [683,0,831,31,888,'228 637Q194 637 192 641Q191 643 191 649Q191 673 202 682Q204 683 219 683Q260 681 355 681Q389 681 418 681T463 682T483 682Q499 682 499 672Q499 670 497 658Q492 641 487 638H485Q483 638 480 638T473 638T464 637T455 637Q416 636 405 634T387 623Q384 619 355 500Q348 474 340 442T328 395L324 380Q324 378 469 378H614L615 381Q615 384 646 504Q674 619 674 627T617 637Q594 637 587 639T580 648Q580 650 582 660Q586 677 588 679T604 682Q609 682 646 681T740 680Q802 680 835 681T871 682Q888 682 888 672Q888 645 876 638H874Q872 638 869 638T862 638T853 637T844 637Q805 636 794 634T776 623Q773 618 704 340T634 58Q634 51 638 51Q646 48 692 46H723Q729 38 729 37T726 19Q722 6 716 0H701Q664 2 567 2Q533 2 504 2T458 2T437 1Q420 1 420 10Q420 15 423 24Q428 43 433 45Q437 46 448 46H454Q481 46 514 49Q520 50 522 50T528 55T534 64T540 82T547 110T558 153Q565 181 569 198Q602 330 602 331T457 332H312L279 197Q245 63 245 58Q245 51 253 49T303 46H334Q340 38 340 37T337 19Q333 6 327 0H312Q275 2 178 2Q144 2 115 2T69 2T48 1Q31 1 31 10Q31 12 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q147 65 216 339T285 628Q285 635 228 637'], + + // LATIN CAPITAL LETTER I + 0x49: [683,0,440,26,504,'43 1Q26 1 26 10Q26 12 29 24Q34 43 39 45Q42 46 54 46H60Q120 46 136 53Q137 53 138 54Q143 56 149 77T198 273Q210 318 216 344Q286 624 286 626Q284 630 284 631Q274 637 213 637H193Q184 643 189 662Q193 677 195 680T209 683H213Q285 681 359 681Q481 681 487 683H497Q504 676 504 672T501 655T494 639Q491 637 471 637Q440 637 407 634Q393 631 388 623Q381 609 337 432Q326 385 315 341Q245 65 245 59Q245 52 255 50T307 46H339Q345 38 345 37T342 19Q338 6 332 0H316Q279 2 179 2Q143 2 113 2T65 2T43 1'], + + // LATIN CAPITAL LETTER J + 0x4A: [683,22,555,57,633,'447 625Q447 637 354 637H329Q323 642 323 645T325 664Q329 677 335 683H352Q393 681 498 681Q541 681 568 681T605 682T619 682Q633 682 633 672Q633 670 630 658Q626 642 623 640T604 637Q552 637 545 623Q541 610 483 376Q420 128 419 127Q397 64 333 21T195 -22Q137 -22 97 8T57 88Q57 130 80 152T132 174Q177 174 182 130Q182 98 164 80T123 56Q115 54 115 53T122 44Q148 15 197 15Q235 15 271 47T324 130Q328 142 387 380T447 625'], + + // LATIN CAPITAL LETTER K + 0x4B: [683,0,849,31,889,'285 628Q285 635 228 637Q205 637 198 638T191 647Q191 649 193 661Q199 681 203 682Q205 683 214 683H219Q260 681 355 681Q389 681 418 681T463 682T483 682Q500 682 500 674Q500 669 497 660Q496 658 496 654T495 648T493 644T490 641T486 639T479 638T470 637T456 637Q416 636 405 634T387 623L306 305Q307 305 490 449T678 597Q692 611 692 620Q692 635 667 637Q651 637 651 648Q651 650 654 662T659 677Q662 682 676 682Q680 682 711 681T791 680Q814 680 839 681T869 682Q889 682 889 672Q889 650 881 642Q878 637 862 637Q787 632 726 586Q710 576 656 534T556 455L509 418L518 396Q527 374 546 329T581 244Q656 67 661 61Q663 59 666 57Q680 47 717 46H738Q744 38 744 37T741 19Q737 6 731 0H720Q680 3 625 3Q503 3 488 0H478Q472 6 472 9T474 27Q478 40 480 43T491 46H494Q544 46 544 71Q544 75 517 141T485 216L427 354L359 301L291 248L268 155Q245 63 245 58Q245 51 253 49T303 46H334Q340 37 340 35Q340 19 333 5Q328 0 317 0Q314 0 280 1T180 2Q118 2 85 2T49 1Q31 1 31 11Q31 13 34 25Q38 41 42 43T65 46Q92 46 125 49Q139 52 144 61Q147 65 216 339T285 628'], + + // LATIN CAPITAL LETTER L + 0x4C: [683,2,681,32,647,'228 637Q194 637 192 641Q191 643 191 649Q191 673 202 682Q204 683 217 683Q271 680 344 680Q485 680 506 683H518Q524 677 524 674T522 656Q517 641 513 637H475Q406 636 394 628Q387 624 380 600T313 336Q297 271 279 198T252 88L243 52Q243 48 252 48T311 46H328Q360 46 379 47T428 54T478 72T522 106T564 161Q580 191 594 228T611 270Q616 273 628 273H641Q647 264 647 262T627 203T583 83T557 9Q555 4 553 3T537 0T494 -1Q483 -1 418 -1T294 0H116Q32 0 32 10Q32 17 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q147 65 216 339T285 628Q285 635 228 637'], + + // LATIN CAPITAL LETTER M + 0x4D: [684,0,970,35,1051,'289 629Q289 635 232 637Q208 637 201 638T194 648Q194 649 196 659Q197 662 198 666T199 671T201 676T203 679T207 681T212 683T220 683T232 684Q238 684 262 684T307 683Q386 683 398 683T414 678Q415 674 451 396L487 117L510 154Q534 190 574 254T662 394Q837 673 839 675Q840 676 842 678T846 681L852 683H948Q965 683 988 683T1017 684Q1051 684 1051 673Q1051 668 1048 656T1045 643Q1041 637 1008 637Q968 636 957 634T939 623Q936 618 867 340T797 59Q797 55 798 54T805 50T822 48T855 46H886Q892 37 892 35Q892 19 885 5Q880 0 869 0Q864 0 828 1T736 2Q675 2 644 2T609 1Q592 1 592 11Q592 13 594 25Q598 41 602 43T625 46Q652 46 685 49Q699 52 704 61Q706 65 742 207T813 490T848 631L654 322Q458 10 453 5Q451 4 449 3Q444 0 433 0Q418 0 415 7Q413 11 374 317L335 624L267 354Q200 88 200 79Q206 46 272 46H282Q288 41 289 37T286 19Q282 3 278 1Q274 0 267 0Q265 0 255 0T221 1T157 2Q127 2 95 1T58 0Q43 0 39 2T35 11Q35 13 38 25T43 40Q45 46 65 46Q135 46 154 86Q158 92 223 354T289 629'], + + // LATIN CAPITAL LETTER N + 0x4E: [683,0,803,31,888,'234 637Q231 637 226 637Q201 637 196 638T191 649Q191 676 202 682Q204 683 299 683Q376 683 387 683T401 677Q612 181 616 168L670 381Q723 592 723 606Q723 633 659 637Q635 637 635 648Q635 650 637 660Q641 676 643 679T653 683Q656 683 684 682T767 680Q817 680 843 681T873 682Q888 682 888 672Q888 650 880 642Q878 637 858 637Q787 633 769 597L620 7Q618 0 599 0Q585 0 582 2Q579 5 453 305L326 604L261 344Q196 88 196 79Q201 46 268 46H278Q284 41 284 38T282 19Q278 6 272 0H259Q228 2 151 2Q123 2 100 2T63 2T46 1Q31 1 31 10Q31 14 34 26T39 40Q41 46 62 46Q130 49 150 85Q154 91 221 362L289 634Q287 635 234 637'], + + // LATIN CAPITAL LETTER O + 0x4F: [704,22,763,50,740,'740 435Q740 320 676 213T511 42T304 -22Q207 -22 138 35T51 201Q50 209 50 244Q50 346 98 438T227 601Q351 704 476 704Q514 704 524 703Q621 689 680 617T740 435ZM637 476Q637 565 591 615T476 665Q396 665 322 605Q242 542 200 428T157 216Q157 126 200 73T314 19Q404 19 485 98T608 313Q637 408 637 476'], + + // LATIN CAPITAL LETTER P + 0x50: [683,0,642,33,751,'287 628Q287 635 230 637Q206 637 199 638T192 648Q192 649 194 659Q200 679 203 681T397 683Q587 682 600 680Q664 669 707 631T751 530Q751 453 685 389Q616 321 507 303Q500 302 402 301H307L277 182Q247 66 247 59Q247 55 248 54T255 50T272 48T305 46H336Q342 37 342 35Q342 19 335 5Q330 0 319 0Q316 0 282 1T182 2Q120 2 87 2T51 1Q33 1 33 11Q33 13 36 25Q40 41 44 43T67 46Q94 46 127 49Q141 52 146 61Q149 65 218 339T287 628ZM645 554Q645 567 643 575T634 597T609 619T560 635Q553 636 480 637Q463 637 445 637T416 636T404 636Q391 635 386 627Q384 621 367 550T332 412T314 344Q314 342 395 342H407H430Q542 342 590 392Q617 419 631 471T645 554'], + + // LATIN CAPITAL LETTER Q + 0x51: [704,194,791,50,740,'399 -80Q399 -47 400 -30T402 -11V-7L387 -11Q341 -22 303 -22Q208 -22 138 35T51 201Q50 209 50 244Q50 346 98 438T227 601Q351 704 476 704Q514 704 524 703Q621 689 680 617T740 435Q740 255 592 107Q529 47 461 16L444 8V3Q444 2 449 -24T470 -66T516 -82Q551 -82 583 -60T625 -3Q631 11 638 11Q647 11 649 2Q649 -6 639 -34T611 -100T557 -165T481 -194Q399 -194 399 -87V-80ZM636 468Q636 523 621 564T580 625T530 655T477 665Q429 665 379 640Q277 591 215 464T153 216Q153 110 207 59Q231 38 236 38V46Q236 86 269 120T347 155Q372 155 390 144T417 114T429 82T435 55L448 64Q512 108 557 185T619 334T636 468ZM314 18Q362 18 404 39L403 49Q399 104 366 115Q354 117 347 117Q344 117 341 117T337 118Q317 118 296 98T274 52Q274 18 314 18'], + + // LATIN CAPITAL LETTER R + 0x52: [683,21,759,33,755,'230 637Q203 637 198 638T193 649Q193 676 204 682Q206 683 378 683Q550 682 564 680Q620 672 658 652T712 606T733 563T739 529Q739 484 710 445T643 385T576 351T538 338L545 333Q612 295 612 223Q612 212 607 162T602 80V71Q602 53 603 43T614 25T640 16Q668 16 686 38T712 85Q717 99 720 102T735 105Q755 105 755 93Q755 75 731 36Q693 -21 641 -21H632Q571 -21 531 4T487 82Q487 109 502 166T517 239Q517 290 474 313Q459 320 449 321T378 323H309L277 193Q244 61 244 59Q244 55 245 54T252 50T269 48T302 46H333Q339 38 339 37T336 19Q332 6 326 0H311Q275 2 180 2Q146 2 117 2T71 2T50 1Q33 1 33 10Q33 12 36 24Q41 43 46 45Q50 46 61 46H67Q94 46 127 49Q141 52 146 61Q149 65 218 339T287 628Q287 635 230 637ZM630 554Q630 586 609 608T523 636Q521 636 500 636T462 637H440Q393 637 386 627Q385 624 352 494T319 361Q319 360 388 360Q466 361 492 367Q556 377 592 426Q608 449 619 486T630 554'], + + // LATIN CAPITAL LETTER S + 0x53: [705,22,613,52,645,'308 24Q367 24 416 76T466 197Q466 260 414 284Q308 311 278 321T236 341Q176 383 176 462Q176 523 208 573T273 648Q302 673 343 688T407 704H418H425Q521 704 564 640Q565 640 577 653T603 682T623 704Q624 704 627 704T632 705Q645 705 645 698T617 577T585 459T569 456Q549 456 549 465Q549 471 550 475Q550 478 551 494T553 520Q553 554 544 579T526 616T501 641Q465 662 419 662Q362 662 313 616T263 510Q263 480 278 458T319 427Q323 425 389 408T456 390Q490 379 522 342T554 242Q554 216 546 186Q541 164 528 137T492 78T426 18T332 -20Q320 -22 298 -22Q199 -22 144 33L134 44L106 13Q83 -14 78 -18T65 -22Q52 -22 52 -14Q52 -11 110 221Q112 227 130 227H143Q149 221 149 216Q149 214 148 207T144 186T142 153Q144 114 160 87T203 47T255 29T308 24'], + + // LATIN CAPITAL LETTER T + 0x54: [677,0,584,21,704,'40 437Q21 437 21 445Q21 450 37 501T71 602L88 651Q93 669 101 677H569H659Q691 677 697 676T704 667Q704 661 687 553T668 444Q668 437 649 437Q640 437 637 437T631 442L629 445Q629 451 635 490T641 551Q641 586 628 604T573 629Q568 630 515 631Q469 631 457 630T439 622Q438 621 368 343T298 60Q298 48 386 46Q418 46 427 45T436 36Q436 31 433 22Q429 4 424 1L422 0Q419 0 415 0Q410 0 363 1T228 2Q99 2 64 0H49Q43 6 43 9T45 27Q49 40 55 46H83H94Q174 46 189 55Q190 56 191 56Q196 59 201 76T241 233Q258 301 269 344Q339 619 339 625Q339 630 310 630H279Q212 630 191 624Q146 614 121 583T67 467Q60 445 57 441T43 437H40'], + + // LATIN CAPITAL LETTER U + 0x55: [683,22,683,60,767,'107 637Q73 637 71 641Q70 643 70 649Q70 673 81 682Q83 683 98 683Q139 681 234 681Q268 681 297 681T342 682T362 682Q378 682 378 672Q378 670 376 658Q371 641 366 638H364Q362 638 359 638T352 638T343 637T334 637Q295 636 284 634T266 623Q265 621 238 518T184 302T154 169Q152 155 152 140Q152 86 183 55T269 24Q336 24 403 69T501 205L552 406Q599 598 599 606Q599 633 535 637Q511 637 511 648Q511 650 513 660Q517 676 519 679T529 683Q532 683 561 682T645 680Q696 680 723 681T752 682Q767 682 767 672Q767 650 759 642Q756 637 737 637Q666 633 648 597Q646 592 598 404Q557 235 548 205Q515 105 433 42T263 -22Q171 -22 116 34T60 167V183Q60 201 115 421Q164 622 164 628Q164 635 107 637'], + + // LATIN CAPITAL LETTER V + 0x56: [683,22,583,52,769,'52 648Q52 670 65 683H76Q118 680 181 680Q299 680 320 683H330Q336 677 336 674T334 656Q329 641 325 637H304Q282 635 274 635Q245 630 242 620Q242 618 271 369T301 118L374 235Q447 352 520 471T595 594Q599 601 599 609Q599 633 555 637Q537 637 537 648Q537 649 539 661Q542 675 545 679T558 683Q560 683 570 683T604 682T668 681Q737 681 755 683H762Q769 676 769 672Q769 655 760 640Q757 637 743 637Q730 636 719 635T698 630T682 623T670 615T660 608T652 599T645 592L452 282Q272 -9 266 -16Q263 -18 259 -21L241 -22H234Q216 -22 216 -15Q213 -9 177 305Q139 623 138 626Q133 637 76 637H59Q52 642 52 648'], + + // LATIN CAPITAL LETTER W + 0x57: [683,22,944,51,1048,'436 683Q450 683 486 682T553 680Q604 680 638 681T677 682Q695 682 695 674Q695 670 692 659Q687 641 683 639T661 637Q636 636 621 632T600 624T597 615Q597 603 613 377T629 138L631 141Q633 144 637 151T649 170T666 200T690 241T720 295T759 362Q863 546 877 572T892 604Q892 619 873 628T831 637Q817 637 817 647Q817 650 819 660Q823 676 825 679T839 682Q842 682 856 682T895 682T949 681Q1015 681 1034 683Q1048 683 1048 672Q1048 666 1045 655T1038 640T1028 637Q1006 637 988 631T958 617T939 600T927 584L923 578L754 282Q586 -14 585 -15Q579 -22 561 -22Q546 -22 542 -17Q539 -14 523 229T506 480L494 462Q472 425 366 239Q222 -13 220 -15T215 -19Q210 -22 197 -22Q178 -22 176 -15Q176 -12 154 304T131 622Q129 631 121 633T82 637H58Q51 644 51 648Q52 671 64 683H76Q118 680 176 680Q301 680 313 683H323Q329 677 329 674T327 656Q322 641 318 637H297Q236 634 232 620Q262 160 266 136L501 550L499 587Q496 629 489 632Q483 636 447 637Q428 637 422 639T416 648Q416 650 418 660Q419 664 420 669T421 676T424 680T428 682T436 683'], + + // LATIN CAPITAL LETTER X + 0x58: [683,0,828,26,852,'42 0H40Q26 0 26 11Q26 15 29 27Q33 41 36 43T55 46Q141 49 190 98Q200 108 306 224T411 342Q302 620 297 625Q288 636 234 637H206Q200 643 200 645T202 664Q206 677 212 683H226Q260 681 347 681Q380 681 408 681T453 682T473 682Q490 682 490 671Q490 670 488 658Q484 643 481 640T465 637Q434 634 411 620L488 426L541 485Q646 598 646 610Q646 628 622 635Q617 635 609 637Q594 637 594 648Q594 650 596 664Q600 677 606 683H618Q619 683 643 683T697 681T738 680Q828 680 837 683H845Q852 676 852 672Q850 647 840 637H824Q790 636 763 628T722 611T698 593L687 584Q687 585 592 480L505 384Q505 383 536 304T601 142T638 56Q648 47 699 46Q734 46 734 37Q734 35 732 23Q728 7 725 4T711 1Q708 1 678 1T589 2Q528 2 496 2T461 1Q444 1 444 10Q444 11 446 25Q448 35 450 39T455 44T464 46T480 47T506 54Q523 62 523 64Q522 64 476 181L429 299Q241 95 236 84Q232 76 232 72Q232 53 261 47Q262 47 267 47T273 46Q276 46 277 46T280 45T283 42T284 35Q284 26 282 19Q279 6 276 4T261 1Q258 1 243 1T201 2T142 2Q64 2 42 0'], + + // LATIN CAPITAL LETTER Y + 0x59: [683,-1,581,30,763,'66 637Q54 637 49 637T39 638T32 641T30 647T33 664T42 682Q44 683 56 683Q104 680 165 680Q288 680 306 683H316Q322 677 322 674T320 656Q316 643 310 637H298Q242 637 242 624Q242 619 292 477T343 333L346 336Q350 340 358 349T379 373T411 410T454 461Q546 568 561 587T577 618Q577 634 545 637Q528 637 528 647Q528 649 530 661Q533 676 535 679T549 683Q551 683 578 682T657 680Q684 680 713 681T746 682Q763 682 763 673Q763 669 760 657T755 643Q753 637 734 637Q662 632 617 587Q608 578 477 424L348 273L322 169Q295 62 295 57Q295 46 363 46Q379 46 384 45T390 35Q390 33 388 23Q384 6 382 4T366 1Q361 1 324 1T232 2Q170 2 138 2T102 1Q84 1 84 9Q84 14 87 24Q88 27 89 30T90 35T91 39T93 42T96 44T101 45T107 45T116 46T129 46Q168 47 180 50T198 63Q201 68 227 171L252 274L129 623Q128 624 127 625T125 627T122 629T118 631T113 633T105 634T96 635T83 636T66 637'], + + // LATIN CAPITAL LETTER Z + 0x5A: [683,0,683,58,723,'58 8Q58 23 64 35Q64 36 329 334T596 635L586 637Q575 637 512 637H500H476Q442 637 420 635T365 624T311 598T266 548T228 469Q227 466 226 463T224 458T223 453T222 450L221 448Q218 443 202 443Q185 443 182 453L214 561Q228 606 241 651Q249 679 253 681Q256 683 487 683H718Q723 678 723 675Q723 673 717 649Q189 54 188 52L185 49H274Q369 50 377 51Q452 60 500 100T579 247Q587 272 590 277T603 282H607Q628 282 628 271Q547 5 541 2Q538 0 300 0H124Q58 0 58 8'], + + // LATIN SMALL LETTER A + 0x61: [441,10,529,33,506,'33 157Q33 258 109 349T280 441Q331 441 370 392Q386 422 416 422Q429 422 439 414T449 394Q449 381 412 234T374 68Q374 43 381 35T402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487Q506 153 506 144Q506 138 501 117T481 63T449 13Q436 0 417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157ZM351 328Q351 334 346 350T323 385T277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q217 26 254 59T298 110Q300 114 325 217T351 328'], + + // LATIN SMALL LETTER B + 0x62: [694,11,429,40,422,'73 647Q73 657 77 670T89 683Q90 683 161 688T234 694Q246 694 246 685T212 542Q204 508 195 472T180 418L176 399Q176 396 182 402Q231 442 283 442Q345 442 383 396T422 280Q422 169 343 79T173 -11Q123 -11 82 27T40 150V159Q40 180 48 217T97 414Q147 611 147 623T109 637Q104 637 101 637H96Q86 637 83 637T76 640T73 647ZM336 325V331Q336 405 275 405Q258 405 240 397T207 376T181 352T163 330L157 322L136 236Q114 150 114 114Q114 66 138 42Q154 26 178 26Q211 26 245 58Q270 81 285 114T318 219Q336 291 336 325'], + + // LATIN SMALL LETTER C + 0x63: [442,12,433,34,430,'34 159Q34 268 120 355T306 442Q362 442 394 418T427 355Q427 326 408 306T360 285Q341 285 330 295T319 325T330 359T352 380T366 386H367Q367 388 361 392T340 400T306 404Q276 404 249 390Q228 381 206 359Q162 315 142 235T121 119Q121 73 147 50Q169 26 205 26H209Q321 26 394 111Q403 121 406 121Q410 121 419 112T429 98T420 83T391 55T346 25T282 0T202 -11Q127 -11 81 37T34 159'], + + // LATIN SMALL LETTER D + 0x64: [694,10,520,33,523,'366 683Q367 683 438 688T511 694Q523 694 523 686Q523 679 450 384T375 83T374 68Q374 26 402 26Q411 27 422 35Q443 55 463 131Q469 151 473 152Q475 153 483 153H487H491Q506 153 506 145Q506 140 503 129Q490 79 473 48T445 8T417 -8Q409 -10 393 -10Q359 -10 336 5T306 36L300 51Q299 52 296 50Q294 48 292 46Q233 -10 172 -10Q117 -10 75 30T33 157Q33 205 53 255T101 341Q148 398 195 420T280 442Q336 442 364 400Q369 394 369 396Q370 400 396 505T424 616Q424 629 417 632T378 637H357Q351 643 351 645T353 664Q358 683 366 683ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326'], + + // LATIN SMALL LETTER E + 0x65: [443,11,466,39,430,'39 168Q39 225 58 272T107 350T174 402T244 433T307 442H310Q355 442 388 420T421 355Q421 265 310 237Q261 224 176 223Q139 223 138 221Q138 219 132 186T125 128Q125 81 146 54T209 26T302 45T394 111Q403 121 406 121Q410 121 419 112T429 98T420 82T390 55T344 24T281 -1T205 -11Q126 -11 83 42T39 168ZM373 353Q367 405 305 405Q272 405 244 391T199 357T170 316T154 280T149 261Q149 260 169 260Q282 260 327 284T373 353'], + + // LATIN SMALL LETTER F + 0x66: [705,205,490,55,550,'118 -162Q120 -162 124 -164T135 -167T147 -168Q160 -168 171 -155T187 -126Q197 -99 221 27T267 267T289 382V385H242Q195 385 192 387Q188 390 188 397L195 425Q197 430 203 430T250 431Q298 431 298 432Q298 434 307 482T319 540Q356 705 465 705Q502 703 526 683T550 630Q550 594 529 578T487 561Q443 561 443 603Q443 622 454 636T478 657L487 662Q471 668 457 668Q445 668 434 658T419 630Q412 601 403 552T387 469T380 433Q380 431 435 431Q480 431 487 430T498 424Q499 420 496 407T491 391Q489 386 482 386T428 385H372L349 263Q301 15 282 -47Q255 -132 212 -173Q175 -205 139 -205Q107 -205 81 -186T55 -132Q55 -95 76 -78T118 -61Q162 -61 162 -103Q162 -122 151 -136T127 -157L118 -162'], + + // LATIN SMALL LETTER G + 0x67: [442,205,477,10,480,'311 43Q296 30 267 15T206 0Q143 0 105 45T66 160Q66 265 143 353T314 442Q361 442 401 394L404 398Q406 401 409 404T418 412T431 419T447 422Q461 422 470 413T480 394Q480 379 423 152T363 -80Q345 -134 286 -169T151 -205Q10 -205 10 -137Q10 -111 28 -91T74 -71Q89 -71 102 -80T116 -111Q116 -121 114 -130T107 -144T99 -154T92 -162L90 -164H91Q101 -167 151 -167Q189 -167 211 -155Q234 -144 254 -122T282 -75Q288 -56 298 -13Q311 35 311 43ZM384 328L380 339Q377 350 375 354T369 368T359 382T346 393T328 402T306 405Q262 405 221 352Q191 313 171 233T151 117Q151 38 213 38Q269 38 323 108L331 118L384 328'], + + // LATIN SMALL LETTER H + 0x68: [694,11,576,48,555,'137 683Q138 683 209 688T282 694Q294 694 294 685Q294 674 258 534Q220 386 220 383Q220 381 227 388Q288 442 357 442Q411 442 444 415T478 336Q478 285 440 178T402 50Q403 36 407 31T422 26Q450 26 474 56T513 138Q516 149 519 151T535 153Q555 153 555 145Q555 144 551 130Q535 71 500 33Q466 -10 419 -10H414Q367 -10 346 17T325 74Q325 90 361 192T398 345Q398 404 354 404H349Q266 404 205 306L198 293L164 158Q132 28 127 16Q114 -11 83 -11Q69 -11 59 -2T48 16Q48 30 121 320L195 616Q195 629 188 632T149 637H128Q122 643 122 645T124 664Q129 683 137 683'], + + // LATIN SMALL LETTER I + 0x69: [661,11,345,21,302,'184 600Q184 624 203 642T247 661Q265 661 277 649T290 619Q290 596 270 577T226 557Q211 557 198 567T184 600ZM21 287Q21 295 30 318T54 369T98 420T158 442Q197 442 223 419T250 357Q250 340 236 301T196 196T154 83Q149 61 149 51Q149 26 166 26Q175 26 185 29T208 43T235 78T260 137Q263 149 265 151T282 153Q302 153 302 143Q302 135 293 112T268 61T223 11T161 -11Q129 -11 102 10T74 74Q74 91 79 106T122 220Q160 321 166 341T173 380Q173 404 156 404H154Q124 404 99 371T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER J + 0x6A: [661,204,412,-12,403,'297 596Q297 627 318 644T361 661Q378 661 389 651T403 623Q403 595 384 576T340 557Q322 557 310 567T297 596ZM288 376Q288 405 262 405Q240 405 220 393T185 362T161 325T144 293L137 279Q135 278 121 278H107Q101 284 101 286T105 299Q126 348 164 391T252 441Q253 441 260 441T272 442Q296 441 316 432Q341 418 354 401T367 348V332L318 133Q267 -67 264 -75Q246 -125 194 -164T75 -204Q25 -204 7 -183T-12 -137Q-12 -110 7 -91T53 -71Q70 -71 82 -81T95 -112Q95 -148 63 -167Q69 -168 77 -168Q111 -168 139 -140T182 -74L193 -32Q204 11 219 72T251 197T278 308T289 365Q289 372 288 376'], + + // LATIN SMALL LETTER K + 0x6B: [694,11,521,48,503,'121 647Q121 657 125 670T137 683Q138 683 209 688T282 694Q294 694 294 686Q294 679 244 477Q194 279 194 272Q213 282 223 291Q247 309 292 354T362 415Q402 442 438 442Q468 442 485 423T503 369Q503 344 496 327T477 302T456 291T438 288Q418 288 406 299T394 328Q394 353 410 369T442 390L458 393Q446 405 434 405H430Q398 402 367 380T294 316T228 255Q230 254 243 252T267 246T293 238T320 224T342 206T359 180T365 147Q365 130 360 106T354 66Q354 26 381 26Q429 26 459 145Q461 153 479 153H483Q499 153 499 144Q499 139 496 130Q455 -11 378 -11Q333 -11 305 15T277 90Q277 108 280 121T283 145Q283 167 269 183T234 206T200 217T182 220H180Q168 178 159 139T145 81T136 44T129 20T122 7T111 -2Q98 -11 83 -11Q66 -11 57 -1T48 16Q48 26 85 176T158 471L195 616Q196 629 188 632T149 637H144Q134 637 131 637T124 640T121 647'], + + // LATIN SMALL LETTER L + 0x6C: [695,12,298,38,266,'117 59Q117 26 142 26Q179 26 205 131Q211 151 215 152Q217 153 225 153H229Q238 153 241 153T246 151T248 144Q247 138 245 128T234 90T214 43T183 6T137 -11Q101 -11 70 11T38 85Q38 97 39 102L104 360Q167 615 167 623Q167 626 166 628T162 632T157 634T149 635T141 636T132 637T122 637Q112 637 109 637T101 638T95 641T94 647Q94 649 96 661Q101 680 107 682T179 688Q194 689 213 690T243 693T254 694Q266 694 266 686Q266 675 193 386T118 83Q118 81 118 75T117 65V59'], + + // LATIN SMALL LETTER M + 0x6D: [443,11,878,21,857,'21 287Q22 293 24 303T36 341T56 388T88 425T132 442T175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q303 442 384 442Q401 442 415 440T441 433T460 423T475 411T485 398T493 385T497 373T500 364T502 357L510 367Q573 442 659 442Q713 442 746 415T780 336Q780 285 742 178T704 50Q705 36 709 31T724 26Q752 26 776 56T815 138Q818 149 821 151T837 153Q857 153 857 145Q857 144 853 130Q845 101 831 73T785 17T716 -10Q669 -10 648 17T627 73Q627 92 663 193T700 345Q700 404 656 404H651Q565 404 506 303L499 291L466 157Q433 26 428 16Q415 -11 385 -11Q372 -11 364 -4T353 8T350 18Q350 29 384 161L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 181Q151 335 151 342Q154 357 154 369Q154 405 129 405Q107 405 92 377T69 316T57 280Q55 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER N + 0x6E: [443,11,600,21,580,'21 287Q22 293 24 303T36 341T56 388T89 425T135 442Q171 442 195 424T225 390T231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336T465 179T427 52Q427 26 444 26Q450 26 453 27Q482 32 505 65T540 145Q542 153 560 153Q580 153 580 145Q580 144 576 130Q568 101 554 73T508 17T439 -10Q392 -10 371 17T350 73Q350 92 386 193T423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 112 180T152 343Q153 348 153 366Q153 405 129 405Q91 405 66 305Q60 285 60 284Q58 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER O + 0x6F: [441,11,485,34,476,'201 -11Q126 -11 80 38T34 156Q34 221 64 279T146 380Q222 441 301 441Q333 441 341 440Q354 437 367 433T402 417T438 387T464 338T476 268Q476 161 390 75T201 -11ZM121 120Q121 70 147 48T206 26Q250 26 289 58T351 142Q360 163 374 216T388 308Q388 352 370 375Q346 405 306 405Q243 405 195 347Q158 303 140 230T121 120'], + + // LATIN SMALL LETTER P + 0x70: [443,194,503,-39,497,'23 287Q24 290 25 295T30 317T40 348T55 381T75 411T101 433T134 442Q209 442 230 378L240 387Q302 442 358 442Q423 442 460 395T497 281Q497 173 421 82T249 -10Q227 -10 210 -4Q199 1 187 11T168 28L161 36Q160 35 139 -51T118 -138Q118 -144 126 -145T163 -148H188Q194 -155 194 -157T191 -175Q188 -187 185 -190T172 -194Q170 -194 161 -194T127 -193T65 -192Q-5 -192 -24 -194H-32Q-39 -187 -39 -183Q-37 -156 -26 -148H-6Q28 -147 33 -136Q36 -130 94 103T155 350Q156 355 156 364Q156 405 131 405Q109 405 94 377T71 316T59 280Q57 278 43 278H29Q23 284 23 287ZM178 102Q200 26 252 26Q282 26 310 49T356 107Q374 141 392 215T411 325V331Q411 405 350 405Q339 405 328 402T306 393T286 380T269 365T254 350T243 336T235 326L232 322Q232 321 229 308T218 264T204 212Q178 106 178 102'], + + // LATIN SMALL LETTER Q + 0x71: [442,194,446,33,460,'33 157Q33 258 109 349T280 441Q340 441 372 389Q373 390 377 395T388 406T404 418Q438 442 450 442Q454 442 457 439T460 434Q460 425 391 149Q320 -135 320 -139Q320 -147 365 -148H390Q396 -156 396 -157T393 -175Q389 -188 383 -194H370Q339 -192 262 -192Q234 -192 211 -192T174 -192T157 -193Q143 -193 143 -185Q143 -182 145 -170Q149 -154 152 -151T172 -148Q220 -148 230 -141Q238 -136 258 -53T279 32Q279 33 272 29Q224 -10 172 -10Q117 -10 75 30T33 157ZM352 326Q329 405 277 405Q242 405 210 374T160 293Q131 214 119 129Q119 126 119 118T118 106Q118 61 136 44T179 26Q233 26 290 98L298 109L352 326'], + + // LATIN SMALL LETTER R + 0x72: [443,11,451,21,430,'21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q161 442 183 430T214 408T225 388Q227 382 228 382T236 389Q284 441 347 441H350Q398 441 422 400Q430 381 430 363Q430 333 417 315T391 292T366 288Q346 288 334 299T322 328Q322 376 378 392Q356 405 342 405Q286 405 239 331Q229 315 224 298T190 165Q156 25 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER S + 0x73: [443,10,469,53,419,'131 289Q131 321 147 354T203 415T300 442Q362 442 390 415T419 355Q419 323 402 308T364 292Q351 292 340 300T328 326Q328 342 337 354T354 372T367 378Q368 378 368 379Q368 382 361 388T336 399T297 405Q249 405 227 379T204 326Q204 301 223 291T278 274T330 259Q396 230 396 163Q396 135 385 107T352 51T289 7T195 -10Q118 -10 86 19T53 87Q53 126 74 143T118 160Q133 160 146 151T160 120Q160 94 142 76T111 58Q109 57 108 57T107 55Q108 52 115 47T146 34T201 27Q237 27 263 38T301 66T318 97T323 122Q323 150 302 164T254 181T195 196T148 231Q131 256 131 289'], + + // LATIN SMALL LETTER T + 0x74: [626,11,361,19,330,'26 385Q19 392 19 395Q19 399 22 411T27 425Q29 430 36 430T87 431H140L159 511Q162 522 166 540T173 566T179 586T187 603T197 615T211 624T229 626Q247 625 254 615T261 596Q261 589 252 549T232 470L222 433Q222 431 272 431H323Q330 424 330 420Q330 398 317 385H210L174 240Q135 80 135 68Q135 26 162 26Q197 26 230 60T283 144Q285 150 288 151T303 153H307Q322 153 322 145Q322 142 319 133Q314 117 301 95T267 48T216 6T155 -11Q125 -11 98 4T59 56Q57 64 57 83V101L92 241Q127 382 128 383Q128 385 77 385H26'], + + // LATIN SMALL LETTER U + 0x75: [442,11,572,21,551,'21 287Q21 295 30 318T55 370T99 420T158 442Q204 442 227 417T250 358Q250 340 216 246T182 105Q182 62 196 45T238 27T291 44T328 78L339 95Q341 99 377 247Q407 367 413 387T427 416Q444 431 463 431Q480 431 488 421T496 402L420 84Q419 79 419 68Q419 43 426 35T447 26Q469 29 482 57T512 145Q514 153 532 153Q551 153 551 144Q550 139 549 130T540 98T523 55T498 17T462 -8Q454 -10 438 -10Q372 -10 347 46Q345 45 336 36T318 21T296 6T267 -6T233 -11Q189 -11 155 7Q103 38 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER V + 0x76: [443,11,485,21,467,'173 380Q173 405 154 405Q130 405 104 376T61 287Q60 286 59 284T58 281T56 279T53 278T49 278T41 278H27Q21 284 21 287Q21 294 29 316T53 368T97 419T160 441Q202 441 225 417T249 361Q249 344 246 335Q246 329 231 291T200 202T182 113Q182 86 187 69Q200 26 250 26Q287 26 319 60T369 139T398 222T409 277Q409 300 401 317T383 343T365 361T357 383Q357 405 376 424T417 443Q436 443 451 425T467 367Q467 340 455 284T418 159T347 40T241 -11Q177 -11 139 22Q102 54 102 117Q102 148 110 181T151 298Q173 362 173 380'], + + // LATIN SMALL LETTER W + 0x77: [443,11,716,21,690,'580 385Q580 406 599 424T641 443Q659 443 674 425T690 368Q690 339 671 253Q656 197 644 161T609 80T554 12T482 -11Q438 -11 404 5T355 48Q354 47 352 44Q311 -11 252 -11Q226 -11 202 -5T155 14T118 53T104 116Q104 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Q21 293 29 315T52 366T96 418T161 441Q204 441 227 416T250 358Q250 340 217 250T184 111Q184 65 205 46T258 26Q301 26 334 87L339 96V119Q339 122 339 128T340 136T341 143T342 152T345 165T348 182T354 206T362 238T373 281Q402 395 406 404Q419 431 449 431Q468 431 475 421T483 402Q483 389 454 274T422 142Q420 131 420 107V100Q420 85 423 71T442 42T487 26Q558 26 600 148Q609 171 620 213T632 273Q632 306 619 325T593 357T580 385'], + + // LATIN SMALL LETTER X + 0x78: [442,11,572,35,522,'52 289Q59 331 106 386T222 442Q257 442 286 424T329 379Q371 442 430 442Q467 442 494 420T522 361Q522 332 508 314T481 292T458 288Q439 288 427 299T415 328Q415 374 465 391Q454 404 425 404Q412 404 406 402Q368 386 350 336Q290 115 290 78Q290 50 306 38T341 26Q378 26 414 59T463 140Q466 150 469 151T485 153H489Q504 153 504 145Q504 144 502 134Q486 77 440 33T333 -11Q263 -11 227 52Q186 -10 133 -10H127Q78 -10 57 16T35 71Q35 103 54 123T99 143Q142 143 142 101Q142 81 130 66T107 46T94 41L91 40Q91 39 97 36T113 29T132 26Q168 26 194 71Q203 87 217 139T245 247T261 313Q266 340 266 352Q266 380 251 392T217 404Q177 404 142 372T93 290Q91 281 88 280T72 278H58Q52 284 52 289'], + + // LATIN SMALL LETTER Y + 0x79: [443,205,490,21,497,'21 287Q21 301 36 335T84 406T158 442Q199 442 224 419T250 355Q248 336 247 334Q247 331 231 288T198 191T182 105Q182 62 196 45T238 27Q261 27 281 38T312 61T339 94Q339 95 344 114T358 173T377 247Q415 397 419 404Q432 431 462 431Q475 431 483 424T494 412T496 403Q496 390 447 193T391 -23Q363 -106 294 -155T156 -205Q111 -205 77 -183T43 -117Q43 -95 50 -80T69 -58T89 -48T106 -45Q150 -45 150 -87Q150 -107 138 -122T115 -142T102 -147L99 -148Q101 -153 118 -160T152 -167H160Q177 -167 186 -165Q219 -156 247 -127T290 -65T313 -9T321 21L315 17Q309 13 296 6T270 -6Q250 -11 231 -11Q185 -11 150 11T104 82Q103 89 103 113Q103 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287'], + + // LATIN SMALL LETTER Z + 0x7A: [442,11,465,35,468,'347 338Q337 338 294 349T231 360Q211 360 197 356T174 346T162 335T155 324L153 320Q150 317 138 317Q117 317 117 325Q117 330 120 339Q133 378 163 406T229 440Q241 442 246 442Q271 442 291 425T329 392T367 375Q389 375 411 408T434 441Q435 442 449 442H462Q468 436 468 434Q468 430 463 420T449 399T432 377T418 358L411 349Q368 298 275 214T160 106L148 94L163 93Q185 93 227 82T290 71Q328 71 360 90T402 140Q406 149 409 151T424 153Q443 153 443 143Q443 138 442 134Q425 72 376 31T278 -11Q252 -11 232 6T193 40T155 57Q111 57 76 -3Q70 -11 59 -11H54H41Q35 -5 35 -2Q35 13 93 84Q132 129 225 214T340 322Q352 338 347 338'], + + // GREEK CAPITAL LETTER GAMMA + 0x393: [680,-1,615,31,721,'49 1Q31 1 31 10Q31 12 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 661Q197 674 203 680H714Q721 676 721 669Q721 664 708 557T694 447Q692 440 674 440H662Q655 445 655 454Q655 455 658 480T661 534Q661 572 652 592Q638 619 603 626T501 634H471Q398 633 393 630Q389 628 386 622Q385 619 315 341T245 60Q245 46 333 46H345Q366 46 366 35Q366 33 363 21T358 6Q356 1 339 1Q334 1 292 1T187 2Q122 2 88 2T49 1'], + + // GREEK CAPITAL LETTER THETA + 0x398: [704,22,763,50,740,'740 435Q740 320 676 213T511 42T304 -22Q207 -22 138 35T51 201Q50 209 50 244Q50 346 98 438T227 601Q351 704 476 704Q514 704 524 703Q621 689 680 617T740 435ZM640 466Q640 523 625 565T583 628T532 658T479 668Q370 668 273 559T151 255Q150 245 150 213Q150 156 165 116T207 55T259 26T313 17Q385 17 451 63T561 184Q590 234 615 312T640 466ZM510 276Q510 278 512 288L515 298Q515 299 384 299H253L250 285Q246 271 244 268T231 265H227Q216 265 214 266T207 274Q207 278 223 345T244 416Q247 419 260 419H263Q280 419 280 408Q280 406 278 396L275 386Q275 385 406 385H537L540 399Q544 413 546 416T559 419H563Q574 419 576 418T583 410Q583 403 566 339Q549 271 544 267Q542 265 538 265H530H527Q510 265 510 276'], + + // GREEK CAPITAL LETTER LAMDA + 0x39B: [716,0,694,35,670,'135 2Q114 2 90 2T60 1Q35 1 35 11Q35 28 42 40Q45 46 55 46Q119 46 151 94Q153 97 325 402T498 709Q505 716 526 716Q543 716 549 710Q550 709 560 548T580 224T591 57Q594 52 595 52Q603 47 638 46H663Q670 39 670 35Q669 12 657 0H644Q613 2 530 2Q497 2 469 2T424 2T405 1Q388 1 388 10Q388 15 391 24Q392 27 393 32T395 38T397 41T401 44T406 45T415 46Q473 46 487 64L472 306Q468 365 465 426T459 518L457 550Q456 550 328 322T198 88Q196 80 196 77Q196 49 243 46Q261 46 261 35Q261 34 259 22Q256 7 254 4T240 0Q237 0 211 1T135 2'], + + // GREEK CAPITAL LETTER XI + 0x39E: [678,0,742,53,777,'222 668Q222 670 229 677H654Q677 677 705 677T740 678Q764 678 770 676T777 667Q777 662 764 594Q761 579 757 559T751 528L749 519Q747 512 729 512H717Q710 519 710 525Q712 532 715 559T719 591Q718 595 711 595Q682 598 486 598Q252 598 246 592Q239 587 228 552L216 517Q214 512 197 512H185Q178 517 178 522Q178 524 198 591T222 668ZM227 262Q218 262 215 262T209 266L207 270L227 356Q247 435 250 439Q253 443 260 443H267H280Q287 438 287 433Q287 430 285 420T280 402L278 393Q278 392 431 392H585L590 415Q595 436 598 439T612 443H628Q635 438 635 433Q635 431 615 351T594 268Q592 262 575 262H572Q556 262 556 272Q556 280 560 293L565 313H258L252 292Q248 271 245 267T230 262H227ZM60 0Q53 4 53 11Q53 14 68 89T84 169Q88 176 98 176H104H116Q123 169 123 163Q122 160 117 127T112 88Q112 80 243 80H351H454Q554 80 574 81T597 88V89Q603 100 610 121T622 157T630 174Q633 176 646 176H658Q665 171 665 166Q665 164 643 89T618 7Q616 2 607 1T548 0H335H60'], + + // GREEK CAPITAL LETTER PI + 0x3A0: [681,0,831,31,887,'48 1Q31 1 31 10Q31 12 34 24Q39 43 44 45Q48 46 59 46H65Q92 46 125 49Q139 52 144 61Q146 66 215 342T285 622Q285 629 281 629Q273 632 228 634H197Q191 640 191 642T193 661Q197 674 203 680H541Q621 680 709 680T812 681Q841 681 855 681T877 679T886 676T887 670Q887 663 885 656Q880 637 875 635Q871 634 860 634H854Q827 634 794 631Q780 628 775 619Q773 614 704 338T634 58Q634 51 638 51Q646 48 692 46H723Q729 38 729 37T726 19Q722 6 716 0H701Q664 2 567 2Q533 2 504 2T458 2T437 1Q420 1 420 10Q420 15 423 24Q428 43 433 45Q437 46 448 46H454Q481 46 514 49Q528 52 533 61Q536 67 572 209T642 491T678 632Q678 634 533 634H388Q387 631 316 347T245 59Q245 55 246 54T253 50T270 48T303 46H334Q340 38 340 37T337 19Q333 6 327 0H312Q275 2 178 2Q144 2 115 2T69 2T48 1'], + + // GREEK CAPITAL LETTER SIGMA + 0x3A3: [683,0,780,58,806,'65 0Q58 4 58 11Q58 16 114 67Q173 119 222 164L377 304Q378 305 340 386T261 552T218 644Q217 648 219 660Q224 678 228 681Q231 683 515 683H799Q804 678 806 674Q806 667 793 559T778 448Q774 443 759 443Q747 443 743 445T739 456Q739 458 741 477T743 516Q743 552 734 574T710 609T663 627T596 635T502 637Q480 637 469 637H339Q344 627 411 486T478 341V339Q477 337 477 336L457 318Q437 300 398 265T322 196L168 57Q167 56 188 56T258 56H359Q426 56 463 58T537 69T596 97T639 146T680 225Q686 243 689 246T702 250H705Q726 250 726 239Q726 238 683 123T639 5Q637 1 610 1Q577 0 348 0H65'], + + // GREEK CAPITAL LETTER UPSILON + 0x3A5: [706,0,583,28,700,'45 535Q34 535 31 536T28 544Q28 554 39 578T70 631T126 683T206 705Q230 705 251 698T295 671T330 612T344 514Q344 477 342 473V472Q343 472 347 480T361 509T380 547Q471 704 596 704Q615 704 625 702Q659 692 679 663T700 595Q700 565 696 552T687 537T670 535Q656 535 653 536T649 543Q649 544 649 550T650 562Q650 589 629 605T575 621Q502 621 448 547T365 361Q290 70 290 60Q290 46 379 46H404Q410 40 410 39T408 19Q404 6 398 0H381Q340 2 225 2Q184 2 149 2T94 2T69 1Q61 1 58 1T53 4T51 10Q51 11 53 23Q54 25 55 30T56 36T58 40T60 43T62 44T67 46T73 46T82 46H89Q144 46 163 49T190 62L198 93Q206 124 217 169T241 262T262 350T274 404Q281 445 281 486V494Q281 621 185 621Q147 621 116 601T74 550Q71 539 66 537T45 535'], + + // GREEK CAPITAL LETTER PHI + 0x3A6: [683,0,667,24,642,'356 624Q356 637 267 637H243Q237 642 237 645T239 664Q243 677 249 683H264Q342 681 429 681Q565 681 571 683H583Q589 677 589 674T587 656Q582 641 578 637H540Q516 637 504 637T479 633T463 630T454 623T448 613T443 597T438 576Q436 566 434 556T430 539L428 533Q442 533 472 526T543 502T613 451T642 373Q642 301 567 241T386 158L336 150Q332 150 331 146Q310 66 310 60Q310 46 399 46H424Q430 40 430 39T428 19Q424 6 418 0H401Q360 2 247 2Q207 2 173 2T119 2T95 1Q87 1 84 1T79 4T77 10Q77 11 79 23Q80 25 81 30T82 36T84 40T86 43T88 44T93 46T99 46T108 46H115Q170 46 189 49T216 62Q220 74 228 107L239 150L223 152Q139 164 82 205T24 311Q24 396 125 462Q207 517 335 533L346 578Q356 619 356 624ZM130 291Q130 203 241 188H249Q249 190 287 342L325 495H324Q313 495 291 491T229 466T168 414Q130 357 130 291ZM536 393Q536 440 507 463T418 496L341 187L351 189Q443 201 487 255Q536 314 536 393'], + + // GREEK CAPITAL LETTER PSI + 0x3A8: [683,0,612,21,692,'216 151Q48 174 48 329Q48 361 56 403T65 458Q65 482 58 494T43 507T28 510T21 520Q21 528 23 534T29 544L32 546H72H94Q110 546 119 544T139 536T154 514T159 476V465Q159 445 149 399T138 314Q142 229 197 201Q223 187 226 190L233 218Q240 246 253 300T280 407Q333 619 333 625Q333 637 244 637H220Q214 642 214 645T216 664Q220 677 226 683H241Q321 681 405 681Q543 681 549 683H560Q566 677 566 674T564 656Q559 641 555 637H517Q448 636 436 628Q429 623 423 600T373 404L320 192Q370 201 419 248Q451 281 469 317T500 400T518 457Q529 486 542 505T569 532T594 543T621 546H644H669Q692 546 692 536Q691 509 676 509Q623 509 593 399Q587 377 579 355T552 301T509 244T446 195T359 159Q324 151 314 151Q311 151 310 150T298 106T287 60Q287 46 376 46H401Q407 40 407 39T405 19Q401 6 395 0H378Q337 2 224 2Q184 2 150 2T96 2T72 1Q64 1 61 1T56 4T54 10Q54 11 56 23Q57 25 58 30T59 36T61 40T63 43T65 44T70 46T76 46T85 46H92Q147 46 166 49T193 62L204 106Q216 149 216 151'], + + // GREEK CAPITAL LETTER OMEGA + 0x3A9: [704,0,772,80,786,'125 84Q127 78 194 76H243V78Q243 122 208 215T165 350Q164 359 162 389Q162 522 272 610Q328 656 396 680T525 704Q628 704 698 661Q734 637 755 601T781 544T786 504Q786 439 747 374T635 226T537 109Q518 81 518 77Q537 76 557 76Q608 76 620 78T640 92Q646 100 656 119T673 155T683 172Q690 173 698 173Q718 173 718 162Q718 161 681 82T642 2Q639 0 550 0H461Q455 5 455 9T458 28Q472 78 510 149T584 276T648 402T677 525Q677 594 636 631T530 668Q476 668 423 641T335 568Q284 499 271 400Q270 388 270 348Q270 298 277 228T285 115Q285 82 280 49T271 6Q269 1 258 1T175 0H87Q83 3 80 7V18Q80 22 82 98Q84 156 85 163T91 172Q94 173 104 173T119 172Q124 169 124 126Q125 104 125 84'], + + // GREEK SMALL LETTER ALPHA + 0x3B1: [442,11,640,34,603,'34 156Q34 270 120 356T309 442Q379 442 421 402T478 304Q484 275 485 237V208Q534 282 560 374Q564 388 566 390T582 393Q603 393 603 385Q603 376 594 346T558 261T497 161L486 147L487 123Q489 67 495 47T514 26Q528 28 540 37T557 60Q559 67 562 68T577 70Q597 70 597 62Q597 56 591 43Q579 19 556 5T512 -10H505Q438 -10 414 62L411 69L400 61Q390 53 370 41T325 18T267 -2T203 -11Q124 -11 79 39T34 156ZM208 26Q257 26 306 47T379 90L403 112Q401 255 396 290Q382 405 304 405Q235 405 183 332Q156 292 139 224T121 120Q121 71 146 49T208 26'], + + // GREEK SMALL LETTER BETA + 0x3B2: [705,194,566,23,573,'29 -194Q23 -188 23 -186Q23 -183 102 134T186 465Q208 533 243 584T309 658Q365 705 429 705H431Q493 705 533 667T573 570Q573 465 469 396L482 383Q533 332 533 252Q533 139 448 65T257 -10Q227 -10 203 -2T165 17T143 40T131 59T126 65L62 -188Q60 -194 42 -194H29ZM353 431Q392 431 427 419L432 422Q436 426 439 429T449 439T461 453T472 471T484 495T493 524T501 560Q503 569 503 593Q503 611 502 616Q487 667 426 667Q384 667 347 643T286 582T247 514T224 455Q219 439 186 308T152 168Q151 163 151 147Q151 99 173 68Q204 26 260 26Q302 26 349 51T425 137Q441 171 449 214T457 279Q457 337 422 372Q380 358 347 358H337Q258 358 258 389Q258 396 261 403Q275 431 353 431'], + + // GREEK SMALL LETTER GAMMA + 0x3B3: [441,216,518,11,543,'31 249Q11 249 11 258Q11 275 26 304T66 365T129 418T206 441Q233 441 239 440Q287 429 318 386T371 255Q385 195 385 170Q385 166 386 166L398 193Q418 244 443 300T486 391T508 430Q510 431 524 431H537Q543 425 543 422Q543 418 522 378T463 251T391 71Q385 55 378 6T357 -100Q341 -165 330 -190T303 -216Q286 -216 286 -188Q286 -138 340 32L346 51L347 69Q348 79 348 100Q348 257 291 317Q251 355 196 355Q148 355 108 329T51 260Q49 251 47 251Q45 249 31 249'], + + // GREEK SMALL LETTER DELTA + 0x3B4: [717,10,444,36,451,'195 609Q195 656 227 686T302 717Q319 716 351 709T407 697T433 690Q451 682 451 662Q451 644 438 628T403 612Q382 612 348 641T288 671T249 657T235 628Q235 584 334 463Q401 379 401 292Q401 169 340 80T205 -10H198Q127 -10 83 36T36 153Q36 286 151 382Q191 413 252 434Q252 435 245 449T230 481T214 521T201 566T195 609ZM112 130Q112 83 136 55T204 27Q233 27 256 51T291 111T309 178T316 232Q316 267 309 298T295 344T269 400L259 396Q215 381 183 342T137 256T118 179T112 130'], + + // GREEK SMALL LETTER EPSILON + 0x3B5: [452,23,466,27,428,'190 -22Q124 -22 76 11T27 107Q27 174 97 232L107 239L99 248Q76 273 76 304Q76 364 144 408T290 452H302Q360 452 405 421Q428 405 428 392Q428 381 417 369T391 356Q382 356 371 365T338 383T283 392Q217 392 167 368T116 308Q116 289 133 272Q142 263 145 262T157 264Q188 278 238 278H243Q308 278 308 247Q308 206 223 206Q177 206 142 219L132 212Q68 169 68 112Q68 39 201 39Q253 39 286 49T328 72T345 94T362 105Q376 103 376 88Q376 79 365 62T334 26T275 -8T190 -22'], + + // GREEK SMALL LETTER ZETA + 0x3B6: [704,204,438,44,471,'296 643Q298 704 324 704Q342 704 342 687Q342 682 339 664T336 633Q336 623 337 618T338 611Q339 612 341 612Q343 614 354 616T374 618L384 619H394Q471 619 471 586Q467 548 386 546H372Q338 546 320 564L311 558Q235 506 175 398T114 190Q114 171 116 155T125 127T137 104T153 86T171 72T192 61T213 53T235 46T256 39L322 16Q389 -10 389 -80Q389 -119 364 -154T300 -202Q292 -204 274 -204Q247 -204 225 -196Q210 -192 193 -182T172 -167Q167 -159 173 -148Q180 -139 191 -139Q195 -139 221 -153T283 -168Q298 -166 310 -152T322 -117Q322 -91 302 -75T250 -51T183 -29T116 4T65 62T44 160Q44 287 121 410T293 590L302 595Q296 613 296 643'], + + // GREEK SMALL LETTER ETA + 0x3B7: [443,216,497,21,503,'21 287Q22 290 23 295T28 317T38 348T53 381T73 411T99 433T132 442Q156 442 175 435T205 417T221 395T229 376L231 369Q231 367 232 367L243 378Q304 442 382 442Q436 442 469 415T503 336V326Q503 302 439 53Q381 -182 377 -189Q364 -216 332 -216Q319 -216 310 -208T299 -186Q299 -177 358 57L420 307Q423 322 423 345Q423 404 379 404H374Q288 404 229 303L222 291L189 157Q156 26 151 16Q138 -11 108 -11Q95 -11 87 -5T76 7T74 17Q74 30 114 189T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287'], + + // GREEK SMALL LETTER THETA + 0x3B8: [705,10,469,35,462,'35 200Q35 302 74 415T180 610T319 704Q320 704 327 704T339 705Q393 701 423 656Q462 596 462 495Q462 380 417 261T302 66T168 -10H161Q125 -10 99 10T60 63T41 130T35 200ZM383 566Q383 668 330 668Q294 668 260 623T204 521T170 421T157 371Q206 370 254 370L351 371Q352 372 359 404T375 484T383 566ZM113 132Q113 26 166 26Q181 26 198 36T239 74T287 161T335 307L340 324H145Q145 321 136 286T120 208T113 132'], + + // GREEK SMALL LETTER IOTA + 0x3B9: [442,10,354,48,333,'139 -10Q111 -10 92 0T64 25T52 52T48 74Q48 89 55 109T85 199T135 375L137 384Q139 394 140 397T145 409T151 422T160 431T173 439T190 442Q202 442 213 435T225 410Q225 404 214 358T181 238T137 107Q126 74 126 54Q126 43 126 39T130 31T142 27H147Q206 27 255 78Q272 98 281 114T290 138T295 149T313 153Q321 153 324 153T329 152T332 149T332 143Q332 106 276 48T145 -10H139'], + + // GREEK SMALL LETTER KAPPA + 0x3BA: [442,11,576,48,554,'83 -11Q70 -11 62 -4T51 8T49 17Q49 30 96 217T147 414Q160 442 193 442Q205 441 213 435T223 422T225 412Q225 401 208 337L192 270Q193 269 208 277T235 292Q252 304 306 349T396 412T467 431Q489 431 500 420T512 391Q512 366 494 347T449 327Q430 327 418 338T405 368Q405 370 407 380L397 375Q368 360 315 315L253 266L240 257H245Q262 257 300 251T366 230Q422 203 422 150Q422 140 417 114T411 67Q411 26 437 26Q484 26 513 137Q516 149 519 151T535 153Q554 153 554 144Q554 121 527 64T457 -7Q447 -10 431 -10Q386 -10 360 17T333 90Q333 108 336 122T339 146Q339 170 320 186T271 209T222 218T185 221H180L155 122Q129 22 126 16Q113 -11 83 -11'], + + // GREEK SMALL LETTER LAMDA + 0x3BB: [694,12,583,47,557,'166 673Q166 685 183 694H202Q292 691 316 644Q322 629 373 486T474 207T524 67Q531 47 537 34T546 15T551 6T555 2T556 -2T550 -11H482Q457 3 450 18T399 152L354 277L340 262Q327 246 293 207T236 141Q211 112 174 69Q123 9 111 -1T83 -12Q47 -12 47 20Q47 37 61 52T199 187Q229 216 266 252T321 306L338 322Q338 323 288 462T234 612Q214 657 183 657Q166 657 166 673'], + + // GREEK SMALL LETTER MU + 0x3BC: [442,216,603,23,580,'58 -216Q44 -216 34 -208T23 -186Q23 -176 96 116T173 414Q186 442 219 442Q231 441 239 435T249 423T251 413Q251 401 220 279T187 142Q185 131 185 107V99Q185 26 252 26Q261 26 270 27T287 31T302 38T315 45T327 55T338 65T348 77T356 88T365 100L372 110L408 253Q444 395 448 404Q461 431 491 431Q504 431 512 424T523 412T525 402L449 84Q448 79 448 68Q448 43 455 35T476 26Q485 27 496 35Q517 55 537 131Q543 151 547 152Q549 153 557 153H561Q580 153 580 144Q580 138 575 117T555 63T523 13Q510 0 491 -8Q483 -10 467 -10Q446 -10 429 -4T402 11T385 29T376 44T374 51L368 45Q362 39 350 30T324 12T288 -4T246 -11Q199 -11 153 12L129 -85Q108 -167 104 -180T92 -202Q76 -216 58 -216'], + + // GREEK SMALL LETTER NU + 0x3BD: [442,2,494,45,530,'74 431Q75 431 146 436T219 442Q231 442 231 434Q231 428 185 241L137 51H140L150 55Q161 59 177 67T214 86T261 119T312 165Q410 264 445 394Q458 442 496 442Q509 442 519 434T530 411Q530 390 516 352T469 262T388 162T267 70T106 5Q81 -2 71 -2Q66 -2 59 -1T51 1Q45 5 45 11Q45 13 88 188L132 364Q133 377 125 380T86 385H65Q59 391 59 393T61 412Q65 431 74 431'], + + // GREEK SMALL LETTER XI + 0x3BE: [704,205,438,21,443,'268 632Q268 704 296 704Q314 704 314 687Q314 682 311 664T308 635T309 620V616H315Q342 619 360 619Q443 619 443 586Q439 548 358 546H344Q326 546 317 549T290 566Q257 550 226 505T195 405Q195 381 201 364T211 342T218 337Q266 347 298 347Q375 347 375 314Q374 297 359 288T327 277T280 275Q234 275 208 283L195 286Q149 260 119 214T88 130Q88 116 90 108Q101 79 129 63T229 20Q238 17 243 15Q337 -21 354 -33Q383 -53 383 -94Q383 -137 351 -171T273 -205Q240 -205 202 -190T158 -167Q156 -163 156 -159Q156 -151 161 -146T176 -140Q182 -140 189 -143Q232 -168 274 -168Q286 -168 292 -165Q313 -151 313 -129Q313 -112 301 -104T232 -75Q214 -68 204 -64Q198 -62 171 -52T136 -38T107 -24T78 -8T56 12T36 37T26 66T21 103Q21 149 55 206T145 301L154 307L148 313Q141 319 136 323T124 338T111 358T103 382T99 413Q99 471 143 524T259 602L271 607Q268 618 268 632'], + + // GREEK SMALL LETTER OMICRON + 0x3BF: [441,11,485,34,476,'201 -11Q126 -11 80 38T34 156Q34 221 64 279T146 380Q222 441 301 441Q333 441 341 440Q354 437 367 433T402 417T438 387T464 338T476 268Q476 161 390 75T201 -11ZM121 120Q121 70 147 48T206 26Q250 26 289 58T351 142Q360 163 374 216T388 308Q388 352 370 375Q346 405 306 405Q243 405 195 347Q158 303 140 230T121 120'], + + // GREEK SMALL LETTER PI + 0x3C0: [431,11,570,19,573,'132 -11Q98 -11 98 22V33L111 61Q186 219 220 334L228 358H196Q158 358 142 355T103 336Q92 329 81 318T62 297T53 285Q51 284 38 284Q19 284 19 294Q19 300 38 329T93 391T164 429Q171 431 389 431Q549 431 553 430Q573 423 573 402Q573 371 541 360Q535 358 472 358H408L405 341Q393 269 393 222Q393 170 402 129T421 65T431 37Q431 20 417 5T381 -10Q370 -10 363 -7T347 17T331 77Q330 86 330 121Q330 170 339 226T357 318T367 358H269L268 354Q268 351 249 275T206 114T175 17Q164 -11 132 -11'], + + // GREEK SMALL LETTER RHO + 0x3C1: [442,216,517,23,510,'58 -216Q25 -216 23 -186Q23 -176 73 26T127 234Q143 289 182 341Q252 427 341 441Q343 441 349 441T359 442Q432 442 471 394T510 276Q510 219 486 165T425 74T345 13T266 -10H255H248Q197 -10 165 35L160 41L133 -71Q108 -168 104 -181T92 -202Q76 -216 58 -216ZM424 322Q424 359 407 382T357 405Q322 405 287 376T231 300Q217 269 193 170L176 102Q193 26 260 26Q298 26 334 62Q367 92 389 158T418 266T424 322'], + + // GREEK SMALL LETTER FINAL SIGMA + 0x3C2: [442,107,363,30,405,'31 207Q31 306 115 374T302 442Q341 442 373 430T405 400Q405 392 399 383T379 374Q373 375 348 390T296 405Q222 405 160 357T98 249Q98 232 103 218T112 195T132 175T154 159T186 141T219 122Q234 114 255 102T286 85T299 78L302 74Q306 71 308 69T315 61T322 51T328 40T332 25T334 8Q334 -31 305 -69T224 -107Q194 -107 163 -92Q156 -88 156 -80Q156 -73 162 -67T178 -61Q186 -61 190 -63Q209 -71 224 -71Q244 -71 253 -59T263 -30Q263 -25 263 -21T260 -12T255 -4T248 3T239 9T227 17T213 25T195 34T174 46Q170 48 150 58T122 74T97 90T70 112T51 137T36 169T31 207'], + + // GREEK SMALL LETTER SIGMA + 0x3C3: [431,11,571,31,572,'184 -11Q116 -11 74 34T31 147Q31 247 104 333T274 430Q275 431 414 431H552Q553 430 555 429T559 427T562 425T565 422T567 420T569 416T570 412T571 407T572 401Q572 357 507 357Q500 357 490 357T476 358H416L421 348Q439 310 439 263Q439 153 359 71T184 -11ZM361 278Q361 358 276 358Q152 358 115 184Q114 180 114 178Q106 141 106 117Q106 67 131 47T188 26Q242 26 287 73Q316 103 334 153T356 233T361 278'], + + // GREEK SMALL LETTER TAU + 0x3C4: [431,13,437,18,517,'39 284Q18 284 18 294Q18 301 45 338T99 398Q134 425 164 429Q170 431 332 431Q492 431 497 429Q517 424 517 402Q517 388 508 376T485 360Q479 358 389 358T299 356Q298 355 283 274T251 109T233 20Q228 5 215 -4T186 -13Q153 -13 153 20V30L203 192Q214 228 227 272T248 336L254 357Q254 358 208 358Q206 358 197 358T183 359Q105 359 61 295Q56 287 53 286T39 284'], + + // GREEK SMALL LETTER UPSILON + 0x3C5: [443,10,540,21,523,'413 384Q413 406 432 424T473 443Q492 443 507 425T523 367Q523 334 508 270T468 153Q424 63 373 27T282 -10H268Q220 -10 186 2T135 36T111 78T104 121Q104 170 138 262T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Q21 299 34 333T82 404T161 441Q200 441 225 419T250 355Q248 336 247 334Q247 331 232 291T201 199T185 118Q185 68 211 47T275 26Q317 26 355 57T416 132T452 216T465 277Q465 301 457 318T439 343T421 361T413 384'], + + // GREEK SMALL LETTER PHI + 0x3C6: [442,218,654,50,618,'92 210Q92 176 106 149T142 108T185 85T220 72L235 70L237 71L250 112Q268 170 283 211T322 299T370 375T429 423T502 442Q547 442 582 410T618 302Q618 224 575 152T457 35T299 -10Q273 -10 273 -12L266 -48Q260 -83 252 -125T241 -179Q236 -203 215 -212Q204 -218 190 -218Q159 -215 159 -185Q159 -175 214 -2L209 0Q204 2 195 5T173 14T147 28T120 46T94 71T71 103T56 142T50 190Q50 238 76 311T149 431H162Q183 431 183 423Q183 417 175 409Q134 361 114 300T92 210ZM574 278Q574 320 550 344T486 369Q437 369 394 329T323 218Q309 184 295 109L286 64Q304 62 306 62Q423 62 498 131T574 278'], + + // GREEK SMALL LETTER CHI + 0x3C7: [443,204,626,24,600,'576 -125Q576 -147 547 -175T487 -204H476Q394 -204 363 -157Q334 -114 293 26L284 59Q283 58 248 19T170 -66T92 -151T53 -191Q49 -194 43 -194Q36 -194 31 -189T25 -177T38 -154T151 -30L272 102L265 131Q189 405 135 405Q104 405 87 358Q86 351 68 351Q48 351 48 361Q48 369 56 386T89 423T148 442Q224 442 258 400Q276 375 297 320T330 222L341 180Q344 180 455 303T573 429Q579 431 582 431Q600 431 600 414Q600 407 587 392T477 270Q356 138 353 134L362 102Q392 -10 428 -89T490 -168Q504 -168 517 -156T536 -126Q539 -116 543 -115T557 -114T571 -115Q576 -118 576 -125'], + + // GREEK SMALL LETTER PSI + 0x3C8: [694,205,651,21,634,'161 441Q202 441 226 417T250 358Q250 338 218 252T187 127Q190 85 214 61Q235 43 257 37Q275 29 288 29H289L371 360Q455 691 456 692Q459 694 472 694Q492 694 492 687Q492 678 411 356Q329 28 329 27T335 26Q421 26 498 114T576 278Q576 302 568 319T550 343T532 361T524 384Q524 405 541 424T583 443Q602 443 618 425T634 366Q634 337 623 288T605 220Q573 125 492 57T329 -11H319L296 -104Q272 -198 272 -199Q270 -205 252 -205H239Q233 -199 233 -197Q233 -192 256 -102T279 -9Q272 -8 265 -8Q106 14 106 139Q106 174 139 264T173 379Q173 380 173 381Q173 390 173 393T169 400T158 404H154Q131 404 112 385T82 344T65 302T57 280Q55 278 41 278H27Q21 284 21 287Q21 299 34 333T82 404T161 441'], + + // GREEK SMALL LETTER OMEGA + 0x3C9: [443,12,622,15,604,'495 384Q495 406 514 424T555 443Q574 443 589 425T604 364Q604 334 592 278T555 155T483 38T377 -11Q297 -11 267 66Q266 68 260 61Q201 -11 125 -11Q15 -11 15 139Q15 230 56 325T123 434Q135 441 147 436Q160 429 160 418Q160 406 140 379T94 306T62 208Q61 202 61 187Q61 124 85 100T143 76Q201 76 245 129L253 137V156Q258 297 317 297Q348 297 348 261Q348 243 338 213T318 158L308 135Q309 133 310 129T318 115T334 97T358 83T393 76Q456 76 501 148T546 274Q546 305 533 325T508 357T495 384'], + + // GREEK THETA SYMBOL + 0x3D1: [705,11,591,21,563,'537 500Q537 474 533 439T524 383L521 362Q558 355 561 351Q563 349 563 345Q563 321 552 318Q542 318 521 323L510 326Q496 261 459 187T362 51T241 -11Q100 -11 100 105Q100 139 127 242T154 366Q154 405 128 405Q107 405 92 377T68 316T57 280Q55 278 41 278H27Q21 284 21 287Q21 291 27 313T47 368T79 418Q103 442 134 442Q169 442 201 419T233 344Q232 330 206 228T180 98Q180 26 247 26Q292 26 332 90T404 260L427 349Q422 349 398 359T339 392T289 440Q265 476 265 520Q265 590 312 647T417 705Q463 705 491 670T528 592T537 500ZM464 564Q464 668 413 668Q373 668 339 622T304 522Q304 494 317 470T349 431T388 406T421 391T435 387H436L443 415Q450 443 457 485T464 564'], + + // GREEK PHI SYMBOL + 0x3D5: [694,205,596,42,579,'409 688Q413 694 421 694H429H442Q448 688 448 686Q448 679 418 563Q411 535 404 504T392 458L388 442Q388 441 397 441T429 435T477 418Q521 397 550 357T579 260T548 151T471 65T374 11T279 -10H275L251 -105Q245 -128 238 -160Q230 -192 227 -198T215 -205H209Q189 -205 189 -198Q189 -193 211 -103L234 -11Q234 -10 226 -10Q221 -10 206 -8T161 6T107 36T62 89T43 171Q43 231 76 284T157 370T254 422T342 441Q347 441 348 445L378 567Q409 686 409 688ZM122 150Q122 116 134 91T167 53T203 35T237 27H244L337 404Q333 404 326 403T297 395T255 379T211 350T170 304Q152 276 137 237Q122 191 122 150ZM500 282Q500 320 484 347T444 385T405 400T381 404H378L332 217L284 29Q284 27 285 27Q293 27 317 33T357 47Q400 66 431 100T475 170T494 234T500 282'], + + // GREEK PI SYMBOL + 0x3D6: [431,10,828,19,823,'206 -10Q158 -10 136 24T114 110Q114 233 199 349L205 358H184Q144 358 121 347Q108 340 95 330T75 312T61 295T53 285Q51 284 38 284Q19 284 19 294Q19 300 38 329T93 391T164 429Q171 431 532 431Q799 431 803 430Q823 423 823 402Q823 377 801 364Q790 358 766 358Q748 358 748 357Q748 355 749 348T752 327T754 297Q754 258 738 207T693 107T618 24T520 -10Q488 -10 466 2T432 36T416 77T411 120Q411 128 410 128T404 122Q373 71 323 31T206 -10ZM714 296Q714 316 707 358H251Q250 357 244 348T230 328T212 301T193 267T176 229T164 187T159 144Q159 62 222 62Q290 62 349 127T432 285Q433 286 434 288T435 291T437 293T440 294T444 294T452 294H466Q472 288 472 286Q472 285 464 244T456 170Q456 62 534 62Q604 62 659 139T714 296'], + + // GREEK RHO SYMBOL + 0x3F1: [442,194,517,67,510,'205 -174Q136 -174 102 -153T67 -76Q67 -25 91 85T127 234Q143 289 182 341Q252 427 341 441Q343 441 349 441T359 442Q432 442 471 394T510 276Q510 169 431 80T253 -10Q226 -10 204 -2T169 19T146 44T132 64L128 73Q128 72 124 53T116 5T112 -44Q112 -68 117 -78T150 -95T236 -102Q327 -102 356 -111T386 -154Q386 -166 384 -178Q381 -190 378 -192T361 -194H348Q342 -188 342 -179Q342 -169 315 -169Q294 -169 264 -171T205 -174ZM424 322Q424 359 407 382T357 405Q322 405 287 376T231 300Q221 276 204 217Q188 152 188 116Q188 68 210 47T259 26Q297 26 334 62Q367 92 389 158T418 266T424 322'], + + // GREEK LUNATE EPSILON SYMBOL + 0x3F5: [431,11,406,40,382,'227 -11Q149 -11 95 41T40 174Q40 262 87 322Q121 367 173 396T287 430Q289 431 329 431H367Q382 426 382 411Q382 385 341 385H325H312Q191 385 154 277L150 265H327Q340 256 340 246Q340 228 320 219H138V217Q128 187 128 143Q128 77 160 52T231 26Q258 26 284 36T326 57T343 68Q350 68 354 58T358 39Q358 36 357 35Q354 31 337 21T289 0T227 -11'], + + // INCREMENT + 0x2206: [716,0,833,48,788,''] + }; + + SVG.FONTDATA.FONTS['MathJax_Main'][0x22EE][0] += 400; // adjust height for \vdots + SVG.FONTDATA.FONTS['MathJax_Main'][0x22F1][0] += 700; // adjust height for \ddots + SVG.FONTDATA.FONTS['MathJax_Main'][0x2212][1] += 100; // adjust depth of minus (used as arrow extender) + SVG.FONTDATA.FONTS['MathJax_Main'][0x003D][1] += 100; // adjust depth of = (used as arrow extender) + + // + // Add some spacing characters (more will come later) + // + MathJax.Hub.Insert(SVG.FONTDATA.FONTS['MathJax_Main'],{ + 0xEEE0: [0,0,-575,0,0,{space:1}], + 0xEEE1: [0,0,-300,0,0,{space:1}], + 0xEEE8: [0,0,25,0,0,{space:1}] + }); + + HUB.Register.StartupHook("SVG Jax Require",function () { + HUB.Register.LoadHook(SVG.fontDir+"/Size4/Regular/Main.js",function () { + SVG.FONTDATA.FONTS['MathJax_Size4'][0xE154][0] += 200; // adjust height for brace extender + SVG.FONTDATA.FONTS['MathJax_Size4'][0xE154][1] += 200; // adjust depth for brace extender + }); + + SVG.FONTDATA.FONTS['MathJax_Main'][0x2245][2] -= 222; // fix incorrect right bearing in font + HUB.Register.LoadHook(SVG.fontDir+"/Main/Bold/MathOperators.js",function () { + SVG.FONTDATA.FONTS['MathJax_Main-bold'][0x2245][2] -= 106; // fix incorrect right bearing in font + }); + + HUB.Register.LoadHook(SVG.fontDir+"/Typewriter/Regular/BasicLatin.js",function () { + SVG.FONTDATA.FONTS['MathJax_Typewriter'][0x20][2] += 275; // fix incorrect width + }); + + AJAX.loadComplete(SVG.fontDir + "/fontdata.js"); + }); + +})(MathJax.OutputJax.SVG,MathJax.ElementJax.mml,MathJax.Ajax,MathJax.Hub); + diff --git a/modules/MathJax/unpacked/jax/output/SVG/jax.js b/modules/MathJax/unpacked/jax/output/SVG/jax.js new file mode 100644 index 0000000..7a44aee --- /dev/null +++ b/modules/MathJax/unpacked/jax/output/SVG/jax.js @@ -0,0 +1,2035 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/jax/output/SVG/jax.js + * + * Implements the SVG OutputJax that displays mathematics using + * SVG (or VML in IE) to position the characters from math fonts + * in their proper locations. + * + * --------------------------------------------------------------------- + * + * Copyright (c) 2011-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +(function (AJAX,HUB,HTML,SVG) { + var MML; + + var SVGNS = "http://www.w3.org/2000/svg"; + var XLINKNS = "http://www.w3.org/1999/xlink"; + + SVG.Augment({ + config: { + styles: { + ".MathJax_SVG": { + "display": "inline", + "font-style": "normal", + "font-weight": "normal", + "line-height": "normal", + "font-size": "100%", + "font-size-adjust":"none", + "text-indent": 0, + "text-align": "left", + "text-transform": "none", + "letter-spacing": "normal", + "word-spacing": "normal", + "word-wrap": "normal", + "white-space": "nowrap", + "float": "none", + "direction": "ltr", + border: 0, padding: 0, margin: 0 + }, + + ".MathJax_SVG_Display": { + position: "relative", + display: "block", + width: "100%" + }, + + ".MathJax_SVG *": { + transition: "none", + "-webkit-transition": "none", + "-moz-transition": "none", + "-ms-transition": "none", + "-o-transition": "none" + }, + + ".mjx-svg-href": { + fill: "blue", stroke: "blue" + }, + + ".MathJax_SVG_Processing": { + visibility: "hidden", position:"absolute", top:0, left:0, + width:0, height: 0, overflow:"hidden", display:"block" + }, + ".MathJax_SVG_Processed": {display:"none!important"}, + + ".MathJax_SVG_ExBox": { + display:"block", overflow:"hidden", + width:"1px", height:"60ex" + }, + + "#MathJax_SVG_Tooltip": { + position: "absolute", left: 0, top: 0, + width: "auto", height: "auto", + display: "none" + } + } + }, + + hideProcessedMath: true, // use display:none until all math is processed + + Config: function () { + var settings = HUB.config.menuSettings; + if (settings.scale) {this.config.scale = settings.scale} + this.SUPER(arguments).Config.apply(this,arguments); + this.fontInUse = this.config.font; + if (settings.font && settings.font !== "Auto") { + if (settings.font === "TeXWeb") {this.fontInUse = "TeX"} + else if (settings.font === "STIXWeb") {this.fontInUse = "STIX-Web"} + else if (settings.font === "AsanaMathWeb") {this.fontInUse = "Asana-Math"} + else if (settings.font === "GyrePagellaWeb") {this.fontInUse = "Gyre-Pagella"} + else if (settings.font === "GyreTermesWeb") {this.fontInUse = "Gyre-Termes"} + else if (settings.font === "LatinModernWeb") {this.fontInUse = "Latin-Modern"} + else if (settings.font === "NeoEulerWeb") {this.fontInUse = "Neo-Euler"} + } + this.fontDir += "/" + this.fontInUse; + if (!this.require) {this.require = []} + this.require.push(this.fontDir+"/fontdata.js"); + this.require.push(MathJax.OutputJax.extensionDir+"/MathEvents.js"); + }, + + Startup: function () { + // Set up event handling + EVENT = MathJax.Extension.MathEvents.Event; + TOUCH = MathJax.Extension.MathEvents.Touch; + HOVER = MathJax.Extension.MathEvents.Hover; + this.ContextMenu = EVENT.ContextMenu; + this.Mousedown = EVENT.AltContextMenu; + this.Mouseover = HOVER.Mouseover; + this.Mouseout = HOVER.Mouseout; + this.Mousemove = HOVER.Mousemove; + + // Make hidden div for doing tests and storing global SVG + this.hiddenDiv = HTML.Element("div",{ + style:{visibility:"hidden", overflow:"hidden", position:"absolute", top:0, + height:"1px", width: "auto", padding:0, border:0, margin:0, + textAlign:"left", textIndent:0, textTransform:"none", + lineHeight:"normal", letterSpacing:"normal", wordSpacing:"normal"} + }); + if (!document.body.firstChild) {document.body.appendChild(this.hiddenDiv)} + else {document.body.insertBefore(this.hiddenDiv,document.body.firstChild)} + this.hiddenDiv = HTML.addElement(this.hiddenDiv,"div",{id:"MathJax_SVG_Hidden"}); + + // Determine pixels-per-inch and em-size + var div = HTML.addElement(this.hiddenDiv,"div",{style:{width:"5in"}}); + this.pxPerInch = div.offsetWidth/5; this.hiddenDiv.removeChild(div); + + // Used for measuring text sizes + this.textSVG = this.Element("svg"); + + // Global defs for font glyphs + DEFS = this.addElement(this.addElement(this.hiddenDiv.parentNode,"svg"),"defs",{id:"MathJax_SVG_glyphs"}); + GLYPHS = {}; + + // Used in preTranslate to get scaling factors + this.ExSpan = HTML.Element("span", + {style:{position:"absolute","font-size-adjust":"none"}}, + [["span",{className:"MathJax_SVG_ExBox"}]] + ); + + // Used in preTranslate to get linebreak width + this.linebreakSpan = HTML.Element("span",null, + [["hr",{style: {width:"auto", size:1, padding:0, border:0, margin:0}}]]); + + // Set up styles + return AJAX.Styles(this.config.styles,["InitializeSVG",this]); + }, + + // + // Handle initialization that requires styles to be set up + // + InitializeSVG: function () { + // + // Get the default sizes (need styles in place to do this) + // + document.body.appendChild(this.ExSpan); + document.body.appendChild(this.linebreakSpan); + this.defaultEx = this.ExSpan.firstChild.offsetHeight/60; + this.defaultWidth = this.linebreakSpan.firstChild.offsetWidth; + document.body.removeChild(this.linebreakSpan); + document.body.removeChild(this.ExSpan); + }, + + preTranslate: function (state) { + var scripts = state.jax[this.id], i, m = scripts.length, + script, prev, span, div, test, jax, ex, em, maxwidth, relwidth = false, cwidth, + linebreak = this.config.linebreaks.automatic, width = this.config.linebreaks.width; + if (linebreak) { + relwidth = (width.match(/^\s*(\d+(\.\d*)?%\s*)?container\s*$/) != null); + if (relwidth) {width = width.replace(/\s*container\s*/,"")} + else {maxwidth = this.defaultWidth} + if (width === "") {width = "100%"} + } else {maxwidth = 100000} // a big width, so no implicit line breaks + // + // Loop through the scripts + // + for (i = 0; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; + // + // Remove any existing output + // + prev = script.previousSibling; + if (prev && String(prev.className).match(/^MathJax(_SVG)?(_Display)?( MathJax(_SVG)?_Processing)?$/)) + {prev.parentNode.removeChild(prev)} + // + // Add the span, and a div if in display mode, + // then set the role and mark it as being processed + // + jax = script.MathJax.elementJax; if (!jax) continue; + jax.SVG = {display: (jax.root.Get("display") === "block")} + span = div = HTML.Element("span",{ + style: {"font-size": this.config.scale+"%", display:"inline-block"}, + className:"MathJax_SVG", id:jax.inputID+"-Frame", isMathJax:true, jaxID:this.id, + oncontextmenu:EVENT.Menu, onmousedown: EVENT.Mousedown, + onmouseover:EVENT.Mouseover, onmouseout:EVENT.Mouseout, onmousemove:EVENT.Mousemove, + onclick:EVENT.Click, ondblclick:EVENT.DblClick + }); + if (HUB.Browser.noContextMenu) { + span.ontouchstart = TOUCH.start; + span.ontouchend = TOUCH.end; + } + if (jax.SVG.display) { + div = HTML.Element("div",{className:"MathJax_SVG_Display"}); + div.appendChild(span); + } + // + // Mark math for screen readers + // (screen readers don't know about role="math" yet, so use "textbox" instead) + // + div.setAttribute("role","textbox"); div.setAttribute("aria-readonly","true"); + div.className += " MathJax_SVG_Processing"; + script.parentNode.insertBefore(div,script); + // + // Add the test span for determining scales and linebreak widths + // + script.parentNode.insertBefore(this.ExSpan.cloneNode(true),script); + div.parentNode.insertBefore(this.linebreakSpan.cloneNode(true),div); + } + // + // Determine the scaling factors for each script + // (this only requires one reflow rather than a reflow for each equation) + // + for (i = 0; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; + test = script.previousSibling; div = test.previousSibling; + jax = script.MathJax.elementJax; if (!jax) continue; + ex = test.firstChild.offsetHeight/60; + cwidth = div.previousSibling.firstChild.offsetWidth; + if (relwidth) {maxwidth = cwidth} + if (ex === 0 || ex === "NaN") { + // can't read width, so move to hidden div for processing + // (this will cause a reflow for each math element that is hidden) + this.hiddenDiv.appendChild(div); + jax.SVG.isHidden = true; + ex = this.defaultEx; cwidth = this.defaultWidth; + if (relwidth) {maxwidth = this.defaultWidth} + } + jax.SVG.ex = ex; jax.SVG.cwidth = cwidth; + jax.SVG.em = em = ex / SVG.TeX.x_height * 1000; // scale ex to x_height + jax.SVG.lineWidth = (linebreak ? this.length2em(width,1,maxwidth/em) : 1000000); + } + // + // Remove the test spans used for determining scales and linebreak widths + // + for (i = 0; i < m; i++) { + script = scripts[i]; if (!script.parentNode) continue; + test = scripts[i].previousSibling; span = test.previousSibling; + jax = scripts[i].MathJax.elementJax; if (!jax) continue; + if (!jax.SVG.isHidden) {span = span.previousSibling} + span.parentNode.removeChild(span); + test.parentNode.removeChild(test); + } + // + // Set state variables used for displaying equations in chunks + // + state.SVGeqn = state.SVGlast = 0; state.SVGi = -1; + state.SVGchunk = this.config.EqnChunk; + state.SVGdelay = false; + }, + + Translate: function (script,state) { + if (!script.parentNode) return; + + // + // If we are supposed to do a chunk delay, do it + // + if (state.SVGdelay) { + state.SVGdelay = false; + HUB.RestartAfter(MathJax.Callback.Delay(this.config.EqnChunkDelay)); + } + + // + // Get the data about the math + // + var jax = script.MathJax.elementJax, math = jax.root, + span = document.getElementById(jax.inputID+"-Frame"), + div = (jax.SVG.display ? span.parentNode : span); + // + // Set the font metrics + // + this.em = MML.mbase.prototype.em = jax.SVG.em; this.ex = jax.SVG.ex; + this.linebreakWidth = jax.SVG.lineWidth * 1000; this.cwidth = jax.SVG.cwidth; + // + // Typeset the math + // + this.mathDiv = div; + span.appendChild(this.textSVG); + this.initSVG(math,span); + math.setTeXclass(); + try {math.toSVG(span,div)} catch (err) { + if (err.restart) {while (span.firstChild) {span.removeChild(span.firstChild)}} + throw err; + } + span.removeChild(this.textSVG); + // + // Put it in place, and remove the processing marker + // + if (jax.SVG.isHidden) {script.parentNode.insertBefore(div,script)} + div.className = div.className.split(/ /)[0]; + // + // Check if we are hiding the math until more is processed + // + if (this.hideProcessedMath) { + // + // Hide the math and don't let its preview be removed + // + div.className += " MathJax_SVG_Processed"; + if (script.MathJax.preview) { + jax.SVG.preview = script.MathJax.preview; + delete script.MathJax.preview; + } + // + // Check if we should show this chunk of equations + // + state.SVGeqn += (state.i - state.SVGi); state.SVGi = state.i; + if (state.SVGeqn >= state.SVGlast + state.SVGchunk) { + this.postTranslate(state,true); + state.SVGchunk = Math.floor(state.SVGchunk*this.config.EqnChunkFactor); + state.SVGdelay = true; // delay if there are more scripts + } + } + }, + + postTranslate: function (state,partial) { + var scripts = state.jax[this.id]; + if (!this.hideProcessedMath) return; + // + // Reveal this chunk of math + // + for (var i = state.SVGlast, m = state.SVGeqn; i < m; i++) { + var script = scripts[i]; + if (script && script.MathJax.elementJax) { + // + // Remove the processed marker + // + script.previousSibling.className = script.previousSibling.className.split(/ /)[0]; + var data = script.MathJax.elementJax.SVG; + // + // Remove the preview, if any + // + if (data.preview) { + data.preview.innerHTML = ""; + script.MathJax.preview = data.preview; + delete data.preview; + } + } + } + // + // Save our place so we know what is revealed + // + state.SVGlast = state.SVGeqn; + }, + + // + // Return the containing HTML element rather than the SVG element, since + // most browsers can't position to an SVG element properly. + // + hashCheck: function (target) { + if (target && target.nodeName === "g") + {do {target = target.parentNode} while (target && target.firstChild.nodeName !== "svg")} + return target; + }, + + getJaxFromMath: function (math) { + if (math.parentNode.className === "MathJax_SVG_Display") {math = math.parentNode} + do {math = math.nextSibling} while (math && math.nodeName.toLowerCase() !== "script"); + return HUB.getJaxFor(math); + }, + getHoverSpan: function (jax,math) { + math.style.position = "relative"; // make sure inline containers have position set + return math.firstChild; + }, + getHoverBBox: function (jax,span,math) { + var bbox = EVENT.getBBox(span.parentNode); + bbox.h += 2; bbox.d -= 2; // bbox seems to be a bit off, so compensate (FIXME) + return bbox; + }, + + Zoom: function (jax,span,math,Mw,Mh) { + // + // Re-render at larger size + // + span.className = "MathJax_SVG"; + + // + // get em size (taken from this.preTranslate) + // + var emex = span.appendChild(this.ExSpan.cloneNode(true)); + var ex = emex.firstChild.offsetHeight/60; + this.em = MML.mbase.prototype.em = ex / SVG.TeX.x_height * 1000; + this.cwidth = .85*SVG.defaultWidth; + emex.parentNode.removeChild(emex); + + span.appendChild(this.textSVG); + this.mathDIV = span; + this.idPostfix = "-zoom"; jax.root.toSVG(span,span); this.idPostfix = ""; + span.removeChild(this.textSVG); + + if (this.operaZoomRefresh) + {setTimeout(function () {span.firstChild.style.border="1px solid transparent"},1)} + // + // Get height and width of zoomed math and original math + // + span.style.position = math.style.position = "absolute"; + var zW = span.offsetWidth, zH = span.offsetHeight, + mH = math.offsetHeight, mW = math.offsetWidth; + span.style.position = math.style.position = ""; + // + return {Y:-EVENT.getBBox(span).h, mW:mW, mH:mH, zW:zW, zH:zH}; + }, + + initSVG: function (math,span) {}, + + Remove: function (jax) { + var span = document.getElementById(jax.inputID+"-Frame"); + if (span) { + if (jax.SVG.display) {span = span.parentNode} + span.parentNode.removeChild(span); + } + delete jax.SVG; + }, + + Em: function (m) { + if (Math.abs(m) < .0006) {return "0em"} + return m.toFixed(3).replace(/\.?0+$/,"") + "em"; + }, + Ex: function (m) { + m = Math.round(m / this.TeX.x_height * this.ex) / this.ex; // try to use closest pixel size + if (Math.abs(m) < .0006) {return "0ex"} + return m.toFixed(3).replace(/\.?0+$/,"") + "ex"; + }, + Percent: function (m) { + return (100*m).toFixed(1).replace(/\.?0+$/,"") + "%"; + }, + length2em: function (length,mu,size) { + if (typeof(length) !== "string") {length = length.toString()} + if (length === "") {return ""} + if (length === MML.SIZE.NORMAL) {return 1000} + if (length === MML.SIZE.BIG) {return 2000} + if (length === MML.SIZE.SMALL) {return 710} + if (length === "infinity") {return SVG.BIGDIMEN} + if (length.match(/mathspace$/)) {return 1000*SVG.MATHSPACE[length]} + var match = length.match(/^\s*([-+]?(?:\.\d+|\d+(?:\.\d*)?))?(pt|em|ex|mu|px|pc|in|mm|cm|%)?/); + var m = parseFloat(match[1]||"1") * 1000, unit = match[2]; + if (size == null) {size = 1000}; if (mu == null) {mu = 1} + if (unit === "em") {return m} + if (unit === "ex") {return m * SVG.TeX.x_height/1000} + if (unit === "%") {return m / 100 * size / 1000} + if (unit === "px") {return m / SVG.em} + if (unit === "pt") {return m / 10} // 10 pt to an em + if (unit === "pc") {return m * 1.2} // 12 pt to a pc + if (unit === "in") {return m * this.pxPerInch / SVG.em} + if (unit === "cm") {return m * this.pxPerInch / SVG.em / 2.54} // 2.54 cm to an inch + if (unit === "mm") {return m * this.pxPerInch / SVG.em / 25.4} // 10 mm to a cm + if (unit === "mu") {return m / 18 * mu} + return m*size / 1000; // relative to given size (or 1em as default) + }, + thickness2em: function (length,mu) { + var thick = SVG.TeX.rule_thickness; + if (length === MML.LINETHICKNESS.MEDIUM) {return thick} + if (length === MML.LINETHICKNESS.THIN) {return .67*thick} + if (length === MML.LINETHICKNESS.THICK) {return 1.67*thick} + return this.length2em(length,mu,thick); + }, + + getPadding: function (span) { + var padding = {top:0, right:0, bottom:0, left:0}, has = false; + for (var id in padding) {if (padding.hasOwnProperty(id)) { + var pad = span.style["padding"+id.charAt(0).toUpperCase()+id.substr(1)]; + if (pad) {padding[id] = this.length2em(pad); has = true;} + }} + return (has ? padding : false); + }, + getBorders: function (span) { + var border = {top:0, right:0, bottom:0, left:0}, has = false; + for (var id in border) {if (border.hasOwnProperty(id)) { + var ID = "border"+id.charAt(0).toUpperCase()+id.substr(1); + var style = span.style[ID+"Style"]; + if (style) { + has = true; + border[id] = this.length2em(span.style[ID+"Width"]); + border[id+"Style"] = span.style[ID+"Style"]; + border[id+"Color"] = span.style[ID+"Color"]; + if (border[id+"Color"] === "initial") {border[id+"Color"] = ""} + } + }} + return (has ? border : false); + }, + + Element: function (type,def) { + var obj = (typeof(type) === "string" ? document.createElementNS(SVGNS,type) : type); + obj.isMathJax = true; + if (def) {for (var id in def) {if (def.hasOwnProperty(id)) {obj.setAttribute(id,def[id].toString())}}} + return obj; + }, + addElement: function (parent,type,def) {return parent.appendChild(this.Element(type,def))}, + TextNode: HTML.TextNode, + addText: HTML.addText, + ucMatch: HTML.ucMatch, + + HandleVariant: function (variant,scale,text) { + var svg = BBOX.G(); + var n, N, c, font, VARIANT, i, m, id, M, RANGES; + if (!variant) {variant = this.FONTDATA.VARIANT[MML.VARIANT.NORMAL]} + if (variant.forceFamily) { + text = BBOX.TEXT(scale,text,variant.font); + if (variant.h != null) {text.h = variant.h}; if (variant.d != null) {text.d = variant.d} + svg.Add(text); text = ""; + } + VARIANT = variant; + for (i = 0, m = text.length; i < m; i++) { + variant = VARIANT; + n = text.charCodeAt(i); c = text.charAt(i); + if (n >= 0xD800 && n < 0xDBFF) { + i++; n = (((n-0xD800)<<10)+(text.charCodeAt(i)-0xDC00))+0x10000; + if (this.FONTDATA.RemapPlane1) { + var nv = this.FONTDATA.RemapPlane1(n,variant); + n = nv.n; variant = nv.variant; + } + } else { + RANGES = this.FONTDATA.RANGES; + for (id = 0, M = RANGES.length; id < M; id++) { + if (RANGES[id].name === "alpha" && variant.noLowerCase) continue; + N = variant["offset"+RANGES[id].offset]; + if (N && n >= RANGES[id].low && n <= RANGES[id].high) { + if (RANGES[id].remap && RANGES[id].remap[n]) { + n = N + RANGES[id].remap[n]; + } else { + n = n - RANGES[id].low + N; + if (RANGES[id].add) {n += RANGES[id].add} + } + if (variant["variant"+RANGES[id].offset]) + {variant = this.FONTDATA.VARIANT[variant["variant"+RANGES[id].offset]]} + break; + } + } + } + if (variant.remap && variant.remap[n]) { + if (variant.remap[n] instanceof Array) { + var remap = variant.remap[n]; + n = remap[0]; variant = this.FONTDATA.VARIANT[remap[1]]; + } else if (typeof(variant.remap[n]) === "string") { + text = variant.remap[n]+text.substr(i+1); + i = 0; m = text.length; n = text.charCodeAt(0); + } else { + n = variant.remap[n]; + if (variant.remap.variant) {variant = this.FONTDATA.VARIANT[variant.remap.variant]} + } + } + if (this.FONTDATA.REMAP[n] && !variant.noRemap) { + n = this.FONTDATA.REMAP[n]; + if (n instanceof Array) {variant = this.FONTDATA.VARIANT[n[1]]; n = n[0]} + if (typeof(n) === "string") { + text = n+text.substr(i+1); + i = 0; m = text.length; + n = n.charCodeAt(0); + } + } + font = this.lookupChar(variant,n); c = font[n]; + if (c) { + if (c[5] && c[5].space) {svg.w += c[2]} else { + c = [scale,font.id+"-"+n.toString(16).toUpperCase()].concat(c); + svg.Add(BBOX.GLYPH.apply(BBOX,c),svg.w,0); + } + } else if (this.FONTDATA.DELIMITERS[n]) { + c = this.createDelimiter(n,0,1,font); + svg.Add(c,svg.w,(this.FONTDATA.DELIMITERS[n].dir === "V" ? c.d: 0)); + } else { + if (n <= 0xFFFF) {c = String.fromCharCode(n)} else { + N = n - 0x10000; + c = String.fromCharCode((N>>10)+0xD800) + + String.fromCharCode((N&0x3FF)+0xDC00); + } + var box = BBOX.TEXT(scale,c,{ + "font-family":variant.defaultFamily||SVG.config.undefinedFamily, + "font-style":(variant.italic?"italic":""), + "font-weight":(variant.bold?"bold":"") + }) + if (variant.h != null) {box.h = variant.h}; if (variant.d != null) {box.d = variant.d} + c = BBOX.G(); c.Add(box); svg.Add(c,svg.w,0); + HUB.signal.Post(["SVG Jax - unknown char",n,variant]); + } + } + if (text.length == 1 && font.skew && font.skew[n]) {svg.skew = font.skew[n]*1000} + if (svg.element.childNodes.length === 1) { + svg.element = svg.element.firstChild; + svg.removeable = false; svg.scale = scale; + } + return svg; + }, + + lookupChar: function (variant,n) { + var i, m; + if (!variant.FONTS) { + var FONTS = this.FONTDATA.FONTS; + var fonts = (variant.fonts || this.FONTDATA.VARIANT.normal.fonts); + if (!(fonts instanceof Array)) {fonts = [fonts]} + if (variant.fonts != fonts) {variant.fonts = fonts} + variant.FONTS = []; + for (i = 0, m = fonts.length; i < m; i++) { + if (FONTS[fonts[i]]) {variant.FONTS.push(FONTS[fonts[i]])} + } + } + for (i = 0, m = variant.FONTS.length; i < m; i++) { + var font = variant.FONTS[i]; + if (typeof(font) === "string") {delete variant.FONTS; this.loadFont(font)} + if (font[n]) {return font} else {this.findBlock(font,n)} + } + return {id:"unknown"}; + }, + + findBlock: function (font,c) { + if (font.Ranges) { + // FIXME: do binary search? + for (var i = 0, m = font.Ranges.length; i < m; i++) { + if (c < font.Ranges[i][0]) return; + if (c <= font.Ranges[i][1]) { + var file = font.Ranges[i][2]; + for (var j = font.Ranges.length-1; j >= 0; j--) + {if (font.Ranges[j][2] == file) {font.Ranges.splice(j,1)}} + this.loadFont(font.directory+"/"+file+".js"); + } + } + } + }, + + loadFont: function (file) { + HUB.RestartAfter(AJAX.Require(this.fontDir+"/"+file)); + }, + + createDelimiter: function (code,HW,scale,font) { + if (!scale) {scale = 1}; + var svg = BBOX.G(); + if (!code) { + svg.Clean(); delete svg.element; + svg.w = svg.r = this.TeX.nulldelimiterspace * scale; + return svg; + } + if (!(HW instanceof Array)) {HW = [HW,HW]} + var hw = HW[1]; HW = HW[0]; + var delim = {alias: code}; + while (delim.alias) { + code = delim.alias; delim = this.FONTDATA.DELIMITERS[code]; + if (!delim) {delim = {HW: [0,this.FONTDATA.VARIANT[MML.VARIANT.NORMAL]]}} + } + if (delim.load) {HUB.RestartAfter(AJAX.Require(this.fontDir+"/fontdata-"+delim.load+".js"))} + for (var i = 0, m = delim.HW.length; i < m; i++) { + if (delim.HW[i][0]*scale >= HW-10-SVG.config.blacker || (i == m-1 && !delim.stretch)) { + if (delim.HW[i][2]) {scale *= delim.HW[i][2]} + if (delim.HW[i][3]) {code = delim.HW[i][3]} + return this.createChar(scale,[code,delim.HW[i][1]],font).With({stretched: true}); + } + } + if (delim.stretch) {this["extendDelimiter"+delim.dir](svg,hw,delim.stretch,scale,font)} + return svg; + }, + createChar: function (scale,data,font) { + var text = "", variant = {fonts: [data[1]], noRemap:true}; + if (font && font === MML.VARIANT.BOLD) {variant.fonts = [data[1]+"-bold",data[1]]} + if (typeof(data[1]) !== "string") {variant = data[1]} + if (data[0] instanceof Array) { + for (var i = 0, m = data[0].length; i < m; i++) {text += String.fromCharCode(data[0][i])} + } else {text = String.fromCharCode(data[0])} + if (data[4]) {scale = scale*data[4]} + var svg = this.HandleVariant(variant,scale,text); + if (data[2]) {svg.x = data[2]*1000} + if (data[3]) {svg.y = data[3]*1000} + if (data[5]) {svg.h += data[5]*1000} + if (data[6]) {svg.d += data[6]*1000} + return svg; + }, + extendDelimiterV: function (svg,H,delim,scale,font) { + var top = this.createChar(scale,(delim.top||delim.ext),font); + var bot = this.createChar(scale,(delim.bot||delim.ext),font); + var h = top.h + top.d + bot.h + bot.d; + var y = -top.h; svg.Add(top,0,y); y -= top.d; + if (delim.mid) {var mid = this.createChar(scale,delim.mid,font); h += mid.h + mid.d} + if (delim.min && H < h*delim.min) {H = h*delim.min} + if (H > h) { + var ext = this.createChar(scale,delim.ext,font); + var k = (delim.mid ? 2 : 1), eH = (H-h) / k, s = (eH+100) / (ext.h+ext.d); + while (k-- > 0) { + var g = SVG.Element("g",{transform:"translate("+ext.y+","+(y-s*ext.h+50+ext.y)+") scale(1,"+s+")"}); + g.appendChild(ext.element.cloneNode(false)); svg.element.appendChild(g); y -= eH; + if (delim.mid && k) {svg.Add(mid,0,y-mid.h); y -= (mid.h+mid.d)} + } + } else if (delim.mid) { + y += (h - H)/2; svg.Add(mid,0,y-mid.h); y += -(mid.h + mid.d) + (h - H)/2; + } else { + y += (h - H); + } + svg.Add(bot,0,y-bot.h); svg.Clean(); + svg.scale = scale; + svg.isMultiChar = true; + }, + extendDelimiterH: function (svg,W,delim,scale,font) { + var left = this.createChar(scale,(delim.left||delim.rep),font); + var right = this.createChar(scale,(delim.right||delim.rep),font); + svg.Add(left,-left.l,0); + var w = (left.r - left.l) + (right.r - right.l), x = left.r - left.l; + if (delim.mid) {var mid = this.createChar(scale,delim.mid,font); w += mid.w} + if (delim.min && W < w*delim.min) {W = w*delim.min} + if (W > w) { + var rep = this.createChar(scale,delim.rep,font), fuzz = delim.fuzz || 0; + var k = (delim.mid ? 2 : 1), rW = (W-w) / k, s = (rW+fuzz) / (rep.r-rep.l); + while (k-- > 0) { + var g = SVG.Element("g",{transform:"translate("+(x-fuzz/2-s*rep.l+rep.x)+","+rep.y+") scale("+s+",1)"}); + g.appendChild(rep.element.cloneNode(false)); svg.element.appendChild(g); x += rW; + if (delim.mid && k) {svg.Add(mid,x,0); x += mid.w} + } + } else if (delim.mid) { + x -= (w - W)/2; svg.Add(mid,x,0); x += mid.w - (w - W)/2; + } else { + x -= (w - W); + } + svg.Add(right,x-right.l,0); svg.Clean(); + svg.scale = scale; + svg.isMultiChar = true; + }, + + + MATHSPACE: { + veryverythinmathspace: 1/18, + verythinmathspace: 2/18, + thinmathspace: 3/18, + mediummathspace: 4/18, + thickmathspace: 5/18, + verythickmathspace: 6/18, + veryverythickmathspace: 7/18, + negativeveryverythinmathspace: -1/18, + negativeverythinmathspace: -2/18, + negativethinmathspace: -3/18, + negativemediummathspace: -4/18, + negativethickmathspace: -5/18, + negativeverythickmathspace: -6/18, + negativeveryverythickmathspace: -7/18 + }, + + // + // Units are em/1000 so quad is 1em + // + TeX: { + x_height: 430.554, + quad: 1000, + num1: 676.508, + num2: 393.732, + num3: 443.73, + denom1: 685.951, + denom2: 344.841, + sup1: 412.892, + sup2: 362.892, + sup3: 288.888, + sub1: 150, + sub2: 247.217, + sup_drop: 386.108, + sub_drop: 50, + delim1: 2390, + delim2: 1000, + axis_height: 250, + rule_thickness: 60, + big_op_spacing1: 111.111, + big_op_spacing2: 166.666, + big_op_spacing3: 200, + big_op_spacing4: 600, + big_op_spacing5: 100, + + scriptspace: 100, + nulldelimiterspace: 120, + delimiterfactor: 901, + delimitershortfall: 100, // originally 300, + + min_rule_thickness: 1.25, // in pixels + min_root_space: 1.5 // in pixels + }, + + BIGDIMEN: 10000000, + NBSP: "\u00A0" + }); + + var BBOX = SVG.BBOX = MathJax.Object.Subclass({ + type: "g", removeable: true, + Init: function (def) { + this.h = this.d = -SVG.BIGDIMEN; this.H = this.D = 0; + this.w = this.r = 0; this.l = SVG.BIGDIMEN; + this.x = this.y = 0; this.scale = 1; this.n = 0; + if (this.type) {this.element = SVG.Element(this.type,def)} + }, + With: function (def) {return HUB.Insert(this,def)}, + Add: function (svg,dx,dy,forcew,infront) { + if (dx) {svg.x += dx}; if (dy) {svg.y += dy}; + if (svg.element) { + if (svg.removeable && svg.element.childNodes.length === 1 && svg.n === 1) { + var child = svg.element.firstChild; + if (child.nodeName === "use" || child.nodeName === "rect") { + svg.element = child; svg.scale = svg.childScale; + var x = svg.childX, y = svg.childY; + svg.x += x; svg.y += y; + svg.h -= y; svg.d += y; svg.H -= y; svg.D +=y; + svg.w -= x; svg.r -= x; svg.l += x; + svg.removeable = false; + } + } + if (Math.abs(svg.x) < 1 && Math.abs(svg.y) < 1) { + svg.remove = svg.removeable; + } else { + if (svg.element.nodeName === "g") { + if (!svg.element.firstChild) {svg.remove = svg.removeable} + else {svg.element.setAttribute("transform","translate("+Math.floor(svg.x)+","+Math.floor(svg.y)+")")} + } else if (svg.element.nodeName === "line" || + svg.element.nodeName === "polygon" || + svg.element.nodeName === "path" || + svg.element.nodeName === "a") { + svg.element.setAttribute("transform","translate("+Math.floor(svg.x)+","+Math.floor(svg.y)+")"); + } else { + svg.element.setAttribute("x",Math.floor(svg.x/svg.scale)); + svg.element.setAttribute("y",Math.floor(svg.y/svg.scale)); + } + } + if (svg.remove) { + this.n += svg.n; + while (svg.element.firstChild) { + if (infront && this.element.firstChild) { + this.element.insertBefore(svg.element.firstChild,this.element.firstChild); + } else { + this.element.appendChild(svg.element.firstChild); + } + } + } else { + if (infront) {this.element.insertBefore(svg.element,this.element.firstChild)} + else {this.element.appendChild(svg.element)} + } + delete svg.element; + } + if (svg.hasIndent) {this.hasIndent = svg.hasIndent} + if (svg.d - svg.y > this.d) {this.d = svg.d - svg.y; if (this.d > this.D) {this.D = this.d}} + if (svg.y + svg.h > this.h) {this.h = svg.y + svg.h; if (this.h > this.H) {this.H = this.h}} + if (svg.D - svg.y > this.D) {this.D = svg.D - svg.y} + if (svg.y + svg.H > this.H) {this.H = svg.y + svg.H} + if (svg.x + svg.l < this.l) {this.l = svg.x + svg.l} + if (svg.x + svg.r > this.r) {this.r = svg.x + svg.r} + if (forcew || svg.x + svg.w + (svg.X||0) > this.w) {this.w = svg.x + svg.w + (svg.X||0)} + this.childScale = svg.scale; this.childX = svg.x; this.childY = svg.y; this.n++; + return svg; + }, + Align: function (svg,align,dx,dy) { + dx = ({left: dx, center: (this.w - svg.w)/2, right: this.w - svg.w - dx})[align] || 0; + this.Add(svg,dx,dy); + }, + Clean: function () { + if (this.h === -SVG.BIGDIMEN) {this.h = this.d = this.l = 0} + return this; + } + }); + + BBOX.ROW = BBOX.Subclass({ + Init: function () { + this.SUPER(arguments).Init.call(this); + this.svg = []; this.sh = this.sd = 0; + }, + Check: function (data) { + var svg = data.toSVG(); this.svg.push(svg); + if (data.SVGcanStretch("Vertical")) {svg.mml = data} + if (svg.h > this.sh) {this.sh = svg.h} + if (svg.d > this.sd) {this.sd = svg.d} + }, + Stretch: function () { + for (var i = 0, m = this.svg.length; i < m; i++) + { + var svg = this.svg[i], mml = svg.mml; + if (mml) { + svg = mml.SVGstretchV(this.sh,this.sd); + mml.SVGdata.HW = this.sh; mml.SVGdata.D = this.sd; + } + if (svg.ic) {this.ic = svg.ic} else {delete this.ic} + this.Add(svg,this.w,0,true); + } + delete this.svg; + } + }); + + BBOX.RECT = BBOX.Subclass({ + type: "rect", removeable: false, + Init: function (h,d,w,def) { + if (def == null) {def = {stroke:"none"}} + def.width = Math.floor(w); def.height = Math.floor(h+d); + this.SUPER(arguments).Init.call(this,def); + this.w = this.r = w; this.h = this.H = h+d; this.d = this.D = this.l = 0; this.y = -d; + } + }); + + BBOX.FRAME = BBOX.Subclass({ + type: "rect", removeable: false, + Init: function (h,d,w,t,dash,color,def) { + if (def == null) {def = {}}; def.fill = "none"; + def["stroke-width"] = t.toFixed(2).replace(/\.?0+$/,""); + def.width = Math.floor(w-t); def.height = Math.floor(h+d-t); + def.transform = "translate("+Math.floor(t/2)+","+Math.floor(-d+t/2)+")"; + if (dash === "dashed") + {def["stroke-dasharray"] = [Math.floor(6*SVG.em),Math.floor(6*SVG.em)].join(" ")} + this.SUPER(arguments).Init.call(this,def); + this.w = this.r = w; this.h = this.H = h; + this.d = this.D = d; this.l = 0; + } + }); + + BBOX.HLINE = BBOX.Subclass({ + type: "line", removeable: false, + Init: function (w,t,dash,color,def) { + if (def == null) {def = {}} + if (color && color !== "") {def.stroke = color} + def["stroke-width"] = t.toFixed(2).replace(/\.?0+$/,""); + def.x1 = 0; def.y1 = def.y2 = t/2; def.x2 = Math.floor(w); + if (dash === "dashed") { + var n = Math.floor(w/(6*t)), m = Math.floor(w/(2*n+1)); + def["stroke-dasharray"] = m+" "+m; + } + this.SUPER(arguments).Init.call(this,def); + this.w = this.r = w; this.l = 0; this.h = this.H = t; this.d = this.D = 0; + } + }); + + BBOX.VLINE = BBOX.Subclass({ + type: "line", removeable: false, + Init: function (h,t,dash,color,def) { + if (def == null) {def = {}} + if (color && color !== "") {def.stroke = color} + def["stroke-width"] = t.toFixed(2).replace(/\.?0+$/,""); + def.x1 = def.x2 = t/2; def.y1 = 0; def.y2 = Math.floor(h); + if (dash === "dashed") { + var n = Math.floor(h/(6*t)), m = Math.floor(h/(2*n+1)); + def["stroke-dasharray"] = m+" "+m; + } + this.SUPER(arguments).Init.call(this,def); + this.w = this.r = t; this.l = 0; this.h = this.H = h; this.d = this.D = 0; + } + }); + + BBOX.TEXT = BBOX.Subclass({ + type: "text", removeable: false, + Init: function (scale,text,def) { + if (!def) {def = {}}; def.stroke = "none"; + this.SUPER(arguments).Init.call(this,def); + SVG.addText(this.element,text); + SVG.textSVG.appendChild(this.element); + var bbox = this.element.getBBox(); + SVG.textSVG.removeChild(this.element); + scale *= 1000/SVG.em; + this.element.setAttribute("transform","scale("+scale+") matrix(1 0 0 -1 0 0)"); + this.w = this.r = bbox.width*scale; this.l = 0; + this.h = this.H = -bbox.y*scale; + this.d = this.D = (bbox.height + bbox.y)*scale; + } + }); + + BBOX.G = BBOX; + + BBOX.NULL = BBOX.Subclass({ + Init: function () { + this.SUPER(arguments).Init.apply(this,arguments); + this.Clean(); + } + }); + + var GLYPHS, DEFS; // data for which glyphs are used + + BBOX.GLYPH = BBOX.Subclass({ + type: "path", removeable: false, + Init: function (scale,id,h,d,w,l,r,p) { + var def, t = SVG.config.blacker; + if (!GLYPHS[id]) { + def = {id:id, "stroke-width":t}; + if (p !== "") {def.d = "M"+p+"Z"} + this.SUPER(arguments).Init.call(this,def); + DEFS.appendChild(this.element); GLYPHS[id] = true; + } + def = {}; if (scale !== 1) {def.transform = "scale("+scale+")"} + this.element = SVG.Element("use",def); + this.element.setAttributeNS(XLINKNS,"href","#"+id); + this.h = (h+t) * scale; this.d = (d+t) * scale; this.w = (w+t/2) *scale; + this.l = (l+t/2) * scale; this.r = (r+t/2) * scale; + this.H = Math.max(0,this.h); this.D = Math.max(0,this.d); + this.x = this.y = 0; this.scale = scale; + } + }); + + HUB.Register.StartupHook("mml Jax Ready",function () { + + MML = MathJax.ElementJax.mml; + + MML.mbase.Augment({ + SVG: BBOX, + toSVG: function () { + this.SVGgetStyles(); + var variant = this.SVGgetVariant(); + var svg = this.SVG(); + svg.scale = this.SVGgetScale(); this.SVGhandleSpace(svg); + for (var i = 0, m = this.data.length; i < m; i++) { + if (this.data[i]) { + var child = svg.Add(this.data[i].toSVG(variant,svg.scale),svg.w,0,true); + if (child.skew) {svg.skew = child.skew} + } + } + svg.Clean(); var text = this.data.join(""); + if (svg.skew && text.length !== 1) {delete svg.skew} + if (svg.r > svg.w && text.length === 1 && !variant.noIC) + {svg.ic = svg.r - svg.w; svg.w = svg.r} + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + + SVGchildSVG: function (i) { + return (this.data[i] ? this.data[i].toSVG() : BBOX()); + }, + + SVGdataStretched: function (i,HW,D) { + this.SVGdata = {HW:HW, D:D}; + if (!this.data[i]) {return BBOX()} + if (D != null) {return this.data[i].SVGstretchV(HW,D)} + if (HW != null) {return this.data[i].SVGstretchH(HW)} + return this.data[i].toSVG(); + }, + + SVGsaveData: function (svg) { + if (!this.SVGdata) {this.SVGdata = {}} + this.SVGdata.w = svg.w, this.SVGdata.x = svg.x; + this.SVGdata.h = svg.h, this.SVGdata.d = svg.d; + if (svg.X != null) {this.SVGdata.X = svg.X} + if (this["class"]) {svg.removeable = false; SVG.Element(svg.element,{"class":this["class"]})} + // FIXME: if an element is split by linebreaking, the ID will be the same on both parts + // FIXME: if an element has an id, its zoomed copy will have the same ID + if (this.id) {svg.removeable = false; SVG.Element(svg.element,{"id":this.id})} + if (this.href) { + var a = SVG.Element("a",{"class":"mjx-svg-href"}); + a.setAttributeNS(XLINKNS,"href",this.href); + a.onclick = this.SVGlink; + SVG.addElement(a,"rect",{width:svg.w, height:svg.h+svg.d, y:-svg.d, + fill:"none", stroke:"none", "pointer-events":"all"}); + if (svg.type === "svg") { + // for svg element, put inside the main element + var g = svg.element.firstChild; + while (g.firstChild) {a.appendChild(g.firstChild)} + g.appendChild(a); + } else { + a.appendChild(svg.element); svg.element = a; + } + svg.removeable = false; + } + if (SVG.config.addMMLclasses) { + this.SVGaddClass(svg.element,"mjx-svg-"+this.type); + svg.removeable = false; + } + var style = this.style; + if (style && svg.element) { + svg.element.style.cssText = style; + if (svg.element.style.fontSize) {svg.element.style.fontSize = ""} // handled by scale + svg.element.style.border = svg.element.style.padding = ""; + if (svg.removeable) {svg.removeable = svg.element.style.cssText === ""} + } + }, + SVGaddClass: function (node,name) { + var classes = node.getAttribute("class"); + node.setAttribute("class",(classes ? classes+" " : "")+name); + }, + // + // WebKit currently scrolls to the BOTTOM of an svg element if it contains the + // target of the link, so implement link by hand, to the containing span element. + // + SVGlink: function () { + var href = this.href.animVal; + if (href.charAt(0) === "#") { + var target = SVG.hashCheck(document.getElementById(href.substr(1))); + if (target && target.scrollIntoView) + {setTimeout(function () {target.parentNode.scrollIntoView(true)},1)} + } + document.location = href; + }, + + SVGgetStyles: function () { + if (this.style) { + var span = HTML.Element("span"); + span.style.cssText = this.style; + this.styles = {border:SVG.getBorders(span), padding:SVG.getPadding(span)} + if (span.style.fontSize) {this.styles.fontSize = span.style.fontSize} + if (span.style.color) {this.styles.color = span.style.color} + if (span.style.backgroundColor) {this.styles.background = span.style.backgroundColor} + if (span.style.fontStyle) {this.styles.fontStyle = span.style.fontStyle} + if (span.style.fontWeight) {this.styles.fontWeight = span.style.fontWeight} + if (span.style.fontFamily) {this.styles.fontFamily = span.style.fontFamily} + if (this.styles.fontWeight && this.styles.fontWeight.match(/^\d+$/)) + {this.styles.fontWeight = (parseInt(this.styles.fontWeight) > 600 ? "bold" : "normal")} + } + }, + + SVGhandleSpace: function (svg) { + if (this.useMMLspacing) { + if (this.type !== "mo") return; + var values = this.getValues("scriptlevel","lspace","rspace"); + if (values.scriptlevel <= 0 || this.hasValue("lspace") || this.hasValue("rspace")) { + var mu = this.SVGgetMu(svg); + values.lspace = Math.max(0,SVG.length2em(values.lspace,mu)); + values.rspace = Math.max(0,SVG.length2em(values.rspace,mu)); + var core = this, parent = this.Parent(); + while (parent && parent.isEmbellished() && parent.Core() === core) + {core = parent; parent = parent.Parent()} + if (values.lspace) {svg.x += values.lspace} + if (values.rspace) {svg.X = values.rspace} + } + } else { + var space = this.texSpacing(); + if (space !== "") {svg.x += SVG.length2em(space,this.SVGgetScale())/svg.scale} + } + }, + + SVGhandleColor: function (svg) { + var values = this.getValues("mathcolor","color"); + if (this.styles && this.styles.color && !values.color) {values.color = this.styles.color} + if (values.color && !this.mathcolor) {values.mathcolor = values.color} + if (values.mathcolor) { + SVG.Element(svg.element,{fill:values.mathcolor,stroke:values.mathcolor}) + svg.removeable = false; + } + var borders = (this.styles||{}).border, padding = (this.styles||{}).padding, + bleft = ((borders||{}).left||0), pleft = ((padding||{}).left||0), id; + values.background = (this.mathbackground || this.background || + (this.styles||{}).background || MML.COLOR.TRANSPARENT); + if (bleft + pleft) { + // + // Make a box and move the contents of svg to it, + // then add it back into svg, but offset by the left amount + // + var dup = BBOX(); for (id in svg) {if (svg.hasOwnProperty(id)) {dup[id] = svg[id]}} + dup.x = 0; dup.y = 0; + svg.element = SVG.Element("g"); svg.removeable = true; + svg.Add(dup,bleft+pleft,0); + } + // + // Adjust size by padding and dashed borders (left is taken care of above) + // + if (padding) {svg.w += padding.right; svg.h += padding.top; svg.d += padding.bottom} + if (borders) {svg.w += borders.right; svg.h += borders.top; svg.d += borders.bottom} + // + // Add background color + // + if (values.background !== MML.COLOR.TRANSPARENT) { + if (svg.element.nodeName !== "g" && svg.element.nodeName !== "svg") { + var g = SVG.Element("g"); g.appendChild(svg.element); + svg.element = g; svg.removeable = true; + } + svg.Add(BBOX.RECT(svg.h,svg.d,svg.w,{fill:values.background,stroke:"none"}),0,0,false,true) + } + // + // Add borders + // + if (borders) { + var dd = 5; // fuzz factor to avoid anti-alias problems at edges + var sides = { + left: ["V",svg.h+svg.d,-dd,-svg.d], + right: ["V",svg.h+svg.d,svg.w-borders.right+dd,-svg.d], + top: ["H",svg.w,0,svg.h-borders.top+dd], + bottom:["H",svg.w,0,-svg.d-dd] + } + for (id in sides) {if (sides.hasOwnProperty(id)) { + if (borders[id]) { + var side = sides[id], box = BBOX[side[0]+"LINE"]; + svg.Add(box(side[1],borders[id],borders[id+"Style"],borders[id+"Color"]),side[2],side[3]); + } + }} + } + }, + + SVGhandleVariant: function (variant,scale,text) { + return SVG.HandleVariant(variant,scale,text); + }, + + SVGgetVariant: function () { + var values = this.getValues("mathvariant","fontfamily","fontweight","fontstyle"); + var variant = values.mathvariant; if (this.variantForm) {variant = "-TeX-variant"} + values.hasVariant = this.Get("mathvariant",true); // null if not explicitly specified + if (!values.hasVariant) { + values.family = values.fontfamily; + values.weight = values.fontweight; + values.style = values.fontstyle; + } + if (this.styles) { + if (!values.style && this.styles.fontStyle) {values.style = this.styles.fontStyle} + if (!values.weight && this.styles.fontWeight) {values.weight = this.styles.fontWeight} + if (!values.family && this.styles.fontFamily) {values.family = this.styles.fontFamily} + } + if (values.family && !values.hasVariant) { + if (!values.weight && values.mathvariant.match(/bold/)) {values.weight = "bold"} + if (!values.style && values.mathvariant.match(/italic/)) {values.style = "italic"} + variant = {forceFamily: true, font: {"font-family":values.family}}; + if (values.style) {variant.font["font-style"] = values.style} + if (values.weight) {variant.font["font-weight"] = values.weight} + return variant; + } + if (values.weight === "bold") { + variant = { + normal:MML.VARIANT.BOLD, italic:MML.VARIANT.BOLDITALIC, + fraktur:MML.VARIANT.BOLDFRAKTUR, script:MML.VARIANT.BOLDSCRIPT, + "sans-serif":MML.VARIANT.BOLDSANSSERIF, + "sans-serif-italic":MML.VARIANT.SANSSERIFBOLDITALIC + }[variant]||variant; + } else if (values.weight === "normal") { + variant = { + bold:MML.VARIANT.normal, "bold-italic":MML.VARIANT.ITALIC, + "bold-fraktur":MML.VARIANT.FRAKTUR, "bold-script":MML.VARIANT.SCRIPT, + "bold-sans-serif":MML.VARIANT.SANSSERIF, + "sans-serif-bold-italic":MML.VARIANT.SANSSERIFITALIC + }[variant]||variant; + } + if (values.style === "italic") { + variant = { + normal:MML.VARIANT.ITALIC, bold:MML.VARIANT.BOLDITALIC, + "sans-serif":MML.VARIANT.SANSSERIFITALIC, + "bold-sans-serif":MML.VARIANT.SANSSERIFBOLDITALIC + }[variant]||variant; + } else if (values.style === "normal") { + variant = { + italic:MML.VARIANT.NORMAL, "bold-italic":MML.VARIANT.BOLD, + "sans-serif-italic":MML.VARIANT.SANSSERIF, + "sans-serif-bold-italic":MML.VARIANT.BOLDSANSSERIF + }[variant]||variant; + } + if (!(variant in SVG.FONTDATA.VARIANT)) { + // If the mathvariant value is invalid or not supported by this + // font, fallback to normal. See issue 363. + variant = "normal"; + } + return SVG.FONTDATA.VARIANT[variant]; + }, + + SVGgetScale: function () { + var scale = 1, + values = this.getValues("mathsize","scriptlevel","fontsize"); + if ((this.styles||{}).fontSize && !values.fontsize) {values.fontsize = this.styles.fontSize} + if (values.fontsize && !this.mathsize) {values.mathsize = values.fontsize} + if (values.scriptlevel !== 0) { + if (values.scriptlevel > 2) {values.scriptlevel = 2} + scale = Math.pow(this.Get("scriptsizemultiplier"),values.scriptlevel); + values.scriptminsize = SVG.length2em(this.Get("scriptminsize"))/1000; + if (scale < values.scriptminsize) {scale = values.scriptminsize} + } + if (this.isToken) {scale *= SVG.length2em(values.mathsize)/1000} + return scale; + }, + SVGgetMu: function (svg) { + var mu = 1, values = this.getValues("scriptlevel","scriptsizemultiplier"); + if (svg.scale && svg.scale !== 1) {mu = 1/svg.scale} + if (values.scriptlevel !== 0) { + if (values.scriptlevel > 2) {values.scriptlevel = 2} + mu = Math.sqrt(Math.pow(values.scriptsizemultiplier,values.scriptlevel)); + } + return mu; + }, + + SVGnotEmpty: function (data) { + while (data) { + if ((data.type !== "mrow" && data.type !== "texatom") || + data.data.length > 1) {return true} + data = data.data[0]; + } + return false; + }, + + SVGcanStretch: function (direction) { + if (this.isEmbellished()) {return this.Core().SVGcanStretch(direction)} + return false; + }, + SVGstretchV: function (h,d) {return this.toSVG(h,d)}, + SVGstretchH: function (w) {return this.toSVG(w)}, + + SVGlineBreaks: function () {return false} + + },{ + SVGautoload: function () { + var file = SVG.autoloadDir+"/"+this.type+".js"; + HUB.RestartAfter(AJAX.Require(file)); + }, + SVGautoloadFile: function (name) { + var file = SVG.autoloadDir+"/"+name+".js"; + HUB.RestartAfter(AJAX.Require(file)); + } + }); + + MML.chars.Augment({ + toSVG: function (variant,scale,remap,chars) { + var text = this.data.join("").replace(/[\u2061-\u2064]/g,""); // remove invisibles + if (remap) {text = remap(text,chars)} + return this.SVGhandleVariant(variant,scale,text); + } + }); + MML.entity.Augment({ + toSVG: function (variant,scale,remap,chars) { + var text = this.toString().replace(/[\u2061-\u2064]/g,""); // remove invisibles + if (remap) {text = remap(text,chars)} + return this.SVGhandleVariant(variant,scale,text); + } + }); + + MML.mo.Augment({ + toSVG: function (HW,D) { + this.SVGgetStyles(); + var svg = this.svg = this.SVG(); this.SVGhandleSpace(svg); + if (this.data.length == 0) {svg.Clean(); this.SVGsaveData(svg); return svg} + // + // Stretch the operator, if that is requested + // + if (D != null) {return this.SVGstretchV(HW,D)} + else if (HW != null) {return this.SVG.strechH(HW)} + // + // Get the variant, and check for operator size + // + var scale = this.SVGgetScale(), variant = this.SVGgetVariant(); + var values = this.getValues("largeop","displaystyle"); + if (values.largeop) + {variant = SVG.FONTDATA.VARIANT[values.displaystyle ? "-largeOp" : "-smallOp"]} + // + // Get character translation for superscript and accents + // + var parent = this.CoreParent(), + isScript = (parent && parent.isa(MML.msubsup) && this !== parent.data[0]), + mapchars = (isScript?this.SVGremapChars:null); + if (this.data.join("").length === 1 && parent && parent.isa(MML.munderover) && + this.CoreText(parent.data[parent.base]).length === 1) { + var over = parent.data[parent.over], under = parent.data[parent.under]; + if (over && this === over.CoreMO() && parent.Get("accent")) {mapchars = SVG.FONTDATA.REMAPACCENT} + else if (under && this === under.CoreMO() && parent.Get("accentunder")) {mapchars = SVG.FONTDATA.REMAPACCENTUNDER} + } + // + // Primes must come from another font + // + if (isScript && this.data.join("").match(/['`"\u00B4\u2032-\u2037\u2057]/)) + {variant = SVG.FONTDATA.VARIANT["-TeX-variant"]} + // + // Typeset contents + // + for (var i = 0, m = this.data.length; i < m; i++) { + if (this.data[i]) { + var text = this.data[i].toSVG(variant,scale,this.SVGremap,mapchars), x = svg.w; + if (x === 0 && -text.l > 10*text.w) {x += -text.l} // initial combining character doesn't combine + svg.Add(text,x,0,true); + if (text.skew) {svg.skew = text.skew} + } + } + svg.Clean(); + if (this.data.join("").length !== 1) {delete svg.skew} + // + // Handle large operator centering + // + if (values.largeop) { + svg.y = SVG.TeX.axis_height - (svg.h - svg.d)/2/scale; + if (svg.r > svg.w) {svg.ic = svg.r - svg.w; svg.w = svg.r} + } + // + // Finish up + // + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + CoreParent: function () { + var parent = this; + while (parent && parent.isEmbellished() && + parent.CoreMO() === this && !parent.isa(MML.math)) {parent = parent.Parent()} + return parent; + }, + CoreText: function (parent) { + if (!parent) {return ""} + if (parent.isEmbellished()) {return parent.CoreMO().data.join("")} + while ((parent.isa(MML.mrow) || parent.isa(MML.TeXAtom) || + parent.isa(MML.mstyle) || parent.isa(MML.mphantom)) && + parent.data.length === 1 && parent.data[0]) {parent = parent.data[0]} + if (!parent.isToken) {return ""} else {return parent.data.join("")} + }, + SVGremapChars: { + '*':"\u2217", + '"':"\u2033", + "\u00B0":"\u2218", + "\u00B2":"2", + "\u00B3":"3", + "\u00B4":"\u2032", + "\u00B9":"1" + }, + SVGremap: function (text,map) { + text = text.replace(/-/g,"\u2212"); + if (map) { + text = text.replace(/'/g,"\u2032").replace(/`/g,"\u2035"); + if (text.length === 1) {text = map[text]||text} + } + return text; + }, + SVGcanStretch: function (direction) { + if (!this.Get("stretchy")) {return false} + var c = this.data.join(""); + if (c.length > 1) {return false} + var parent = this.CoreParent(); + if (parent && parent.isa(MML.munderover) && + this.CoreText(parent.data[parent.base]).length === 1) { + var over = parent.data[parent.over], under = parent.data[parent.under]; + if (over && this === over.CoreMO() && parent.Get("accent")) {c = SVG.FONTDATA.REMAPACCENT[c]||c} + else if (under && this === under.CoreMO() && parent.Get("accentunder")) {c = SVG.FONTDATA.REMAPACCENTUNDER[c]||c} + } + c = SVG.FONTDATA.DELIMITERS[c.charCodeAt(0)]; + var can = (c && c.dir == direction.substr(0,1)); + if (!can) {delete this.svg} + return can; + }, + SVGstretchV: function (h,d) { + var svg = this.svg || this.toSVG(); + var values = this.getValues("symmetric","maxsize","minsize"); + var axis = SVG.TeX.axis_height, mu = this.SVGgetMu(svg), H; + if (values.symmetric) {H = 2*Math.max(h-axis,d+axis)} else {H = h + d} + values.maxsize = SVG.length2em(values.maxsize,mu,svg.h+svg.d); + values.minsize = SVG.length2em(values.minsize,mu,svg.h+svg.d); + H = Math.max(values.minsize,Math.min(values.maxsize,H)); + svg = SVG.createDelimiter(this.data.join("").charCodeAt(0),H,svg.scale); + if (values.symmetric) {H = (svg.h + svg.d)/2 + axis} + else {H = (svg.h + svg.d) * h/(h + d)} + svg.y = H - svg.h; + this.SVGhandleSpace(svg); + this.SVGhandleColor(svg); + delete this.svg.element; + this.SVGsaveData(svg); + return svg; + }, + SVGstretchH: function (w) { + var svg = this.svg || this.toSVG(), mu = this.SVGgetMu(svg); + var values = this.getValues("maxsize","minsize","mathvariant","fontweight"); + // FIXME: should take style="font-weight:bold" into account as well + if ((values.fontweight === "bold" || parseInt(values.fontweight) >= 600) && + !this.Get("mathvariant",true)) {values.mathvariant = MML.VARIANT.BOLD} + values.maxsize = SVG.length2em(values.maxsize,mu,svg.w); + values.minsize = SVG.length2em(values.minsize,mu,svg.w); + w = Math.max(values.minsize,Math.min(values.maxsize,w)); + svg = SVG.createDelimiter(this.data.join("").charCodeAt(0),w,svg.scale,values.mathvariant); + this.SVGhandleSpace(svg); + this.SVGhandleColor(svg); + delete this.svg.element; + this.SVGsaveData(svg); + return svg; + } + }); + + MML.mtext.Augment({ + toSVG: function () { + this.SVGgetStyles(); + var svg, text, scale = this.SVGgetScale(); + if (this.Parent().type === "merror") { + // *** FIXME: Make color, style, scale configurable + svg = this.SVG(); this.SVGhandleSpace(svg); + text = BBOX.G(); text.Add(BBOX.TEXT(.9*scale,this.data.join(""),{fill:"#C00",direction:this.Get("dir")})); + svg.Add(BBOX.RECT(text.h+100,text.d+100,text.w+200,{fill:"#FF8",stroke:"#C00","stroke-width":50}),0,0); + svg.Add(text,150,0); svg.H += 150; svg.D += 50; + svg.Clean(); + this.SVGsaveData(svg); + return svg; + } else if (SVG.config.mtextFontInherit) { + svg = this.SVG(); this.SVGhandleSpace(svg); + var variant = this.SVGgetVariant(), def = {direction:this.Get("dir")}; + if (variant.bold) {def["font-weight"] = "bold"} + if (variant.italic) {def["font-style"] = "italic"} + svg.Add(BBOX.TEXT(scale,this.data.join(""),def)); svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + } else { + return this.SUPER(arguments).toSVG.call(this); + } + } + }); + + MML.ms.Augment({toSVG: MML.mbase.SVGautoload}); + + MML.mglyph.Augment({toSVG: MML.mbase.SVGautoload}); + + MML.mspace.Augment({ + toSVG: function () { + this.SVGgetStyles(); + var values = this.getValues("height","depth","width"); + values.mathbackground = this.mathbackground; + if (this.background && !this.mathbackground) {values.mathbackground = this.background} + var svg = this.SVG(), mu = this.SVGgetMu(svg); + svg.h = SVG.length2em(values.height,mu) / svg.scale; + svg.d = SVG.length2em(values.depth,mu) / svg.scale; + svg.w = svg.r = SVG.length2em(values.width,mu) / svg.scale; + if (svg.w < 0) {svg.x = svg.w; svg.w = svg.r = 0} + if (svg.h < -svg.d) {svg.d = -svg.h} + svg.l = 0; svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + } + }); + + MML.mphantom.Augment({ + toSVG: function (HW,D) { + this.SVGgetStyles(); + var svg = this.SVG(); + if (this.data[0] != null) { + this.SVGhandleSpace(svg); svg.Add(this.SVGdataStretched(0,HW,D)); svg.Clean(); + while (svg.element.firstChild) {svg.element.removeChild(svg.element.firstChild)} + } + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + if (svg.removeable && !svg.element.firstChild) {delete svg.element} + return svg; + } + }); + + MML.mpadded.Augment({ + toSVG: function (HW,D) { + this.SVGgetStyles(); + var svg = this.SVG(); + if (this.data[0] != null) { + this.SVGhandleSpace(svg); + var pad = this.SVGdataStretched(0,HW,D), mu = this.SVGgetMu(svg); + var values = this.getValues("height","depth","width","lspace","voffset"), x = 0, y = 0; + if (values.lspace) {x = this.SVGlength2em(pad,values.lspace,mu)} + if (values.voffset) {y = this.SVGlength2em(pad,values.voffset,mu)} + var h = pad.h, d = pad.d, w = pad.w; // these can change durring the Add() + svg.Add(pad,x,y); svg.Clean(); + svg.h = h; svg.d = d; svg.w = w; svg.removeable = false; + if (values.height !== "") {svg.h = this.SVGlength2em(svg,values.height,mu,"h",0)} + if (values.depth !== "") {svg.d = this.SVGlength2em(svg,values.depth,mu,"d",0)} + if (values.width !== "") {svg.w = this.SVGlength2em(svg,values.width,mu,"w",0)} + if (svg.h > svg.H) {svg.H = svg.h}; if (svg.d > svg.D) {svg.D = svg.d} + } + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + SVGlength2em: function (svg,length,mu,d,m) { + if (m == null) {m = -SVG.BIGDIMEN} + var match = String(length).match(/width|height|depth/); + var size = (match ? svg[match[0].charAt(0)] : (d ? svg[d] : 0)); + var v = SVG.length2em(length,mu,size); + if (d && String(length).match(/^\s*[-+]/)) + {return Math.max(m,svg[d]+v)} else {return v} + } + }); + + MML.mrow.Augment({ + SVG: BBOX.ROW, + toSVG: function () { + this.SVGgetStyles(); + var svg = this.SVG(); + this.SVGhandleSpace(svg); + for (var i = 0, m = this.data.length; i < m; i++) + {if (this.data[i]) {svg.Check(this.data[i])}} + svg.Stretch(); svg.Clean(); + if (this.SVGlineBreaks(svg)) {svg = this.SVGmultiline(svg)} + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + SVGlineBreaks: function (svg) { + if (!this.parent.linebreakContainer) {return false} + return (SVG.config.linebreaks.automatic && + svg.w > SVG.linebreakWidth) || this.hasNewline(); + }, + SVGmultiline: function (span) {MML.mbase.SVGautoloadFile("multiline")}, + SVGstretchH: function (w) { + var svg = this.data[this.core].SVGstretchH(w); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + SVGstretchV: function (h,d) { + var svg = this.data[this.core].SVGstretchV(h,d); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + } + }); + + MML.mstyle.Augment({ + toSVG: function () { + this.SVGgetStyles(); + var svg = this.SVG(); + if (this.data[0] != null) { + this.SVGhandleSpace(svg); + var math = svg.Add(this.data[0].toSVG()); svg.Clean(); + if (math.ic) {svg.ic = math.ic} + this.SVGhandleColor(svg); + } + this.SVGsaveData(svg); + return svg; + }, + SVGstretchH: function (w) { + return (this.data[0] != null ? this.data[0].SVGstretchH(w) : BBOX.NULL()); + }, + SVGstretchV: function (h,d) { + return (this.data[0] != null ? this.data[0].SVGstretchV(h,d) : BBOX.NULL()); + } + }); + + MML.mfrac.Augment({ + toSVG: function () { + this.SVGgetStyles(); + var svg = this.SVG(); this.SVGhandleSpace(svg); + var num = this.SVGchildSVG(0), den = this.SVGchildSVG(1); + var values = this.getValues("displaystyle","linethickness","numalign","denomalign","bevelled"); + var scale = svg.scale = this.SVGgetScale(), isDisplay = values.displaystyle; + var a = SVG.TeX.axis_height * scale; + if (values.bevelled) { + var delta = (isDisplay ? 400 : 150); + var H = Math.max(num.h+num.d,den.h+den.d)+2*delta; + var bevel = SVG.createDelimiter(0x2F,H); + svg.Add(num,0,(num.d-num.h)/2+a+delta); + svg.Add(bevel,num.w-delta/2,(bevel.d-bevel.h)/2+a); + svg.Add(den,num.w+bevel.w-delta,(den.d-den.h)/2+a-delta); + } else { + var W = Math.max(num.w,den.w); + var t = SVG.thickness2em(values.linethickness,scale), p,q, u,v; + var mt = SVG.TeX.min_rule_thickness/SVG.em * 1000; + if (isDisplay) {u = SVG.TeX.num1; v = SVG.TeX.denom1} + else {u = (t === 0 ? SVG.TeX.num3 : SVG.TeX.num2); v = SVG.TeX.denom2} + u *= scale; v *= scale; + if (t === 0) {// \atop + p = Math.max((isDisplay ? 7 : 3) * SVG.TeX.rule_thickness, 2*mt); // force to at least 2 px + q = (u - num.d) - (den.h - v); + if (q < p) {u += (p - q)/2; v += (p - q)/2} + svg.w = W; t = 0; + } else {// \over + p = Math.max((isDisplay ? 2 : 0) * mt + t, t/2 + 1.5*mt); // force to be at least 1.5px + q = (u - num.d) - (a + t/2); if (q < p) {u += p - q} + q = (a - t/2) - (den.h - v); if (q < p) {v += p - q} + svg.Add(BBOX.RECT(t/2,t/2,W+2*t),0,a); + } + svg.Align(num,values.numalign,t,u); + svg.Align(den,values.denomalign,t,-v); + } + svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + SVGcanStretch: function (direction) {return false}, + SVGhandleSpace: function (svg) { + if (!this.texWithDelims) { + svg.x = (this.useMMLspacing ? 0 : SVG.length2em(this.texSpacing()||0)) + 120; + svg.X = 120; + } + } + }); + + MML.msqrt.Augment({ + toSVG: function () { + this.SVGgetStyles(); + var svg = this.SVG(); this.SVGhandleSpace(svg); + var base = this.SVGchildSVG(0), rule, surd; + var scale = this.SVGgetScale(); + var t = SVG.TeX.rule_thickness * scale, p,q, H, x = 0; + if (this.Get("displaystyle")) {p = SVG.TeX.x_height * scale} else {p = t} + q = Math.max(t + p/4,1000*SVG.TeX.min_root_space/SVG.em); + H = base.h + base.d + q + t; + surd = SVG.createDelimiter(0x221A,H,scale); + if (surd.h + surd.d > H) {q = ((surd.h+surd.d) - (H-t)) / 2} + rule = BBOX.RECT(t,0,base.w); + H = base.h + q + t; + x = this.SVGaddRoot(svg,surd,x,surd.h+surd.d-H,scale); + svg.Add(surd,x,H-surd.h); + svg.Add(rule,x+surd.w,H-rule.h); + svg.Add(base,x+surd.w,0); + svg.Clean(); + svg.h += t; svg.H += t; + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + }, + SVGaddRoot: function (svg,surd,x,d,scale) {return x} + }); + + MML.mroot.Augment({ + toSVG: MML.msqrt.prototype.toSVG, + SVGaddRoot: function (svg,surd,x,d,scale) { + var dx = (surd.isMultiChar ? .55 : .65) * surd.w; + if (this.data[1]) { + var root = this.data[1].toSVG(); root.x = 0; + var h = this.SVGrootHeight(surd.h+surd.d,scale,root)-d; + var w = Math.min(root.w,root.r); // remove extra right-hand padding, if any + x = Math.max(w,dx); + svg.Add(root,x-w,h); + } else {dx = x} + return x - dx; + }, + SVGrootHeight: function (d,scale,root) { + return .45*(d-900*scale) + 600*scale + Math.max(0,root.d-75); + } + }); + + MML.mfenced.Augment({ + SVG: BBOX.ROW, + toSVG: function () { + this.SVGgetStyles(); + var svg = this.SVG(); + this.SVGhandleSpace(svg); + if (this.data.open) {svg.Check(this.data.open)} + if (this.data[0] != null) {svg.Check(this.data[0])} + for (var i = 1, m = this.data.length; i < m; i++) { + if (this.data[i]) { + if (this.data["sep"+i]) {svg.Check(this.data["sep"+i])} + svg.Check(this.data[i]); + } + } + if (this.data.close) {svg.Check(this.data.close)} + svg.Stretch(); svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + } + }); + + MML.menclose.Augment({toSVG: MML.mbase.SVGautoload}); + MML.maction.Augment({toSVG: MML.mbase.SVGautoload}); + + MML.semantics.Augment({ + toSVG: function () { + this.SVGgetStyles(); + var svg = this.SVG(); + if (this.data[0] != null) { + this.SVGhandleSpace(svg); + svg.Add(this.data[0].toSVG()); svg.Clean(); + } else {svg.Clean()} + this.SVGsaveData(svg); + return svg; + }, + SVGstretchH: function (w) { + return (this.data[0] != null ? this.data[0].SVGstretchH(w) : BBOX.NULL()); + }, + SVGstretchV: function (h,d) { + return (this.data[0] != null ? this.data[0].SVGstretchV(h,d) : BBOX.NULL()); + } + }); + + MML.munderover.Augment({ + toSVG: function (HW,D) { + this.SVGgetStyles(); + var values = this.getValues("displaystyle","accent","accentunder","align"); + if (!values.displaystyle && this.data[this.base] != null && + this.data[this.base].CoreMO().Get("movablelimits")) + {return MML.msubsup.prototype.toSVG.call(this)} + var svg = this.SVG(); + this.SVGhandleSpace(svg); + var scale = svg.scale = this.SVGgetScale(); + var boxes = [], stretch = [], box, i, m, W = -SVG.BIGDIMEN, WW = W; + for (i = 0, m = this.data.length; i < m; i++) { + if (this.data[i] != null) { + if (i == this.base) { + boxes[i] = this.SVGdataStretched(i,HW,D); + stretch[i] = (D != null || HW == null) && this.data[i].SVGcanStretch("Horizontal"); + } else { + boxes[i] = this.data[i].toSVG(); + stretch[i] = this.data[i].SVGcanStretch("Horizontal"); + } + if (boxes[i].w > WW) {WW = boxes[i].w} + if (!stretch[i] && WW > W) {W = WW} + } + } + if (D == null && HW != null) {W = HW} else if (W == -SVG.BIGDIMEN) {W = WW} + for (i = WW = 0, m = this.data.length; i < m; i++) {if (this.data[i]) { + if (stretch[i]) {boxes[i] = this.data[i].SVGstretchH(W)} + if (boxes[i].w > WW) {WW = boxes[i].w} + }} + var t = SVG.TeX.rule_thickness; + var base = boxes[this.base] || {w:0, h:0, d:0, H:0, D:0, l:0, r:0, y:0, scale:scale}; + var x, y, z1, z2, z3, dw, k, delta = 0; + if (base.ic) {delta = 1.3*base.ic + .05} // adjust faked IC to be more in line with expeted results + for (i = 0, m = this.data.length; i < m; i++) { + if (this.data[i] != null) { + box = boxes[i]; + z3 = SVG.TeX.big_op_spacing5 * scale; + var accent = (i != this.base && values[this.ACCENTS[i]]); + if (accent && box.w <= 1) { + box.x = -box.l; + boxes[i] = BBOX.G().With({removeable: false}); + boxes[i].Add(box); boxes[i].Clean(); + boxes[i].w = -box.l; box = boxes[i]; + } + dw = {left:0, center:(WW-box.w)/2, right:WW-box.w}[values.align]; + x = dw; y = 0; + if (i == this.over) { + if (accent) { + k = t * scale; z3 = 0; + if (base.skew) {x += base.skew} + } else { + z1 = SVG.TeX.big_op_spacing1 * scale; + z2 = SVG.TeX.big_op_spacing3 * scale; + k = Math.max(z1,z2-Math.max(0,box.d)); + } + k = Math.max(k,1500/SVG.em); + x += delta/2; y = base.y + base.h + box.d + k; + box.h += z3; if (box.h > box.H) {box.H = box.h} + } else if (i == this.under) { + if (accent) { + k = 3*t * scale; z3 = 0; + } else { + z1 = SVG.TeX.big_op_spacing2 * scale; + z2 = SVG.TeX.big_op_spacing4 * scale; + k = Math.max(z1,z2-box.h); + } + k = Math.max(k,1500/SVG.em); + x -= delta/2; y = base.y -(base.d + box.h + k); + box.d += z3; if (box.d > box.D) {box.D = box.d} + } + svg.Add(box,x,y); + } + } + svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + } + }); + + MML.msubsup.Augment({ + toSVG: function (HW,D) { + this.SVGgetStyles(); + var svg = this.SVG(); + this.SVGhandleSpace(svg); + var scale = svg.scale = this.SVGgetScale(), mu = this.SVGgetMu(svg); + var base = svg.Add(this.SVGdataStretched(this.base,HW,D)); + var sscale = (this.data[this.sup] || this.data[this.sub] || this).SVGgetScale(); + var x_height = SVG.TeX.x_height * scale, s = SVG.TeX.scriptspace * scale; + var sup, sub; + if (this.SVGnotEmpty(this.data[this.sup])) { + sup = this.data[this.sup].toSVG(); + sup.w += s; sup.r = Math.max(sup.w,sup.r); + } + if (this.SVGnotEmpty(this.data[this.sub])) { + sub = this.data[this.sub].toSVG(); + sub.w += s; sub.r = Math.max(sub.w,sub.r); + } + var q = SVG.TeX.sup_drop * sscale, r = SVG.TeX.sub_drop * sscale; + var u = base.h+(base.y||0) - q, v = base.d-(base.y||0) + r, delta = 0, p; + if (base.ic) { + base.w -= base.ic; // remove IC (added by mo and mi) + delta = 1.3*base.ic+.05; // adjust faked IC to be more in line with expeted results + } + if (this.data[this.base] && + (this.data[this.base].type === "mi" || this.data[this.base].type === "mo")) { + if (this.data[this.base].data.join("").length === 1 && base.scale === 1 && + !base.stretched && !this.data[this.base].Get("largeop")) {u = v = 0} + } + var min = this.getValues("subscriptshift","superscriptshift"); + min.subscriptshift = (min.subscriptshift === "" ? 0 : SVG.length2em(min.subscriptshift,mu)); + min.superscriptshift = (min.superscriptshift === "" ? 0 : SVG.length2em(min.superscriptshift,mu)); + if (!sup) { + if (sub) { + v = Math.max(v,SVG.TeX.sub1*scale,sub.h-(4/5)*x_height,min.subscriptshift); + svg.Add(sub,base.w,-v); this.data[this.sub].SVGdata.dy = -v; + } + } else { + if (!sub) { + values = this.getValues("displaystyle","texprimestyle"); + p = SVG.TeX[(values.displaystyle ? "sup1" : (values.texprimestyle ? "sup3" : "sup2"))]; + u = Math.max(u,p*scale,sup.d+(1/4)*x_height,min.superscriptshift); + svg.Add(sup,base.w+delta,u); + this.data[this.sup].SVGdata.dx = delta; + this.data[this.sup].SVGdata.dy = u; + } else { + v = Math.max(v,SVG.TeX.sub2*scale); + var t = SVG.TeX.rule_thickness * scale; + if ((u - sup.d) - (sub.h - v) < 3*t) { + v = 3*t - u + sup.d + sub.h; + q = (4/5)*x_height - (u - sup.d); + if (q > 0) {u += q; v -= q} + } + svg.Add(sup,base.w+delta,Math.max(u,min.superscriptshift)); + svg.Add(sub,base.w,-Math.max(v,min.subscriptshift)); + this.data[this.sup].SVGdata.dx = delta; + this.data[this.sup].SVGdata.dy = Math.max(u,min.superscriptshift); + this.data[this.sub].SVGdata.dy = -Math.max(v,min.subscriptshift); + } + } + svg.Clean(); + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + } + }); + + MML.mmultiscripts.Augment({toSVG: MML.mbase.SVGautoload}); + MML.mtable.Augment({toSVG: MML.mbase.SVGautoload}); + MML["annotation-xml"].Augment({toSVG: MML.mbase.SVGautoload}); + + MML.math.Augment({ + SVG: BBOX.Subclass({type:"svg", removeable: false}), + toSVG: function (span,div) { + if (this.data[0]) { + this.SVGgetStyles(); + MML.mbase.prototype.displayAlign = HUB.config.displayAlign; + MML.mbase.prototype.displayIndent = HUB.config.displayIndent; + // + // Put content in a with defaults and matrix that flips y axis. + // Put that in an with xlink defined. + // + var box = BBOX.G({ + stroke:"black", fill:"black", "stroke-width":0, + transform: "matrix(1 0 0 -1 0 0)" + }).With({removeable: false}); + box.Add(this.data[0].toSVG(),0,0,true); box.Clean(); + this.SVGhandleColor(box); + var svg = this.SVG(); svg.element.setAttribute("xmlns:xlink",XLINKNS); + svg.Add(box); svg.Clean(); + this.SVGsaveData(svg); + // + // Style the to get the right size and placement + // + var l = Math.max(-svg.l,0), r = Math.max(svg.r-svg.w,0); + var style = svg.element.style; + style.width = SVG.Ex(l+svg.w+r); + style.height = SVG.Ex(svg.H+svg.D+2*SVG.em); + style.verticalAlign = SVG.Ex(-svg.D-3*SVG.em); // remove 2 extra pixels added below plus padding + style.marginLeft = SVG.Ex(-l); style.marginRight = SVG.Ex(-r); + svg.element.setAttribute("viewBox",(-l)+" "+(-svg.H-SVG.em)+" "+(l+svg.w+r)+" "+(svg.H+svg.D+2*SVG.em)); + svg.element.style.margin="1px 0px"; // 1px above and below to prevent lines from touching + // + // If there is extra height or depth, hide that + // + if (svg.H > svg.h || svg.D > svg.d) { + var frame = HTML.Element( + "span",{style: {display:"inline-block", "white-space":"nowrap", padding:"1px 0px"}, isMathJax:true},[[ + "span",{style: {display:"inline-block", position:"relative", isMathJax:true, + width:SVG.Ex(svg.w), height:SVG.Ex(svg.h+svg.d), + "vertical-align":SVG.Ex(-svg.d)}}]]); + frame.firstChild.appendChild(svg.element); svg.element = frame; + style.verticalAlign = style.margin = ""; style.position = "absolute"; + style.bottom = SVG.Ex(svg.d-svg.D); style.left = 0; + } + // + // Add it to the MathJax span + // + span.appendChild(svg.element); svg.element = null; + // + // Handle indentalign and indentshift for single-line displays + // + if (!this.isMultiline && this.Get("display") === "block") { + var values = this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift"); + if (values.indentalignfirst !== MML.INDENTALIGN.INDENTALIGN) {values.indentalign = values.indentalignfirst} + if (values.indentalign === MML.INDENTALIGN.AUTO) {values.indentalign = this.displayAlign} + div.style.textAlign = values.indentalign; + if (values.indentshiftfirst !== MML.INDENTSHIFT.INDENTSHIFT) {values.indentshift = values.indentshiftfirst} + if (values.indentshift === "auto") {values.indentshift = this.displayIndent} + if (values.indentshift && values.indentalign !== MML.INDENTALIGN.CENTER && !svg.hasIndent) { + span.style[{left:"marginLeft",right:"marginRight"}[values.indentalign]] = + SVG.Ex(SVG.length2em(values.indentshift)); + } + } + } + return span; + } + }); + + MML.TeXAtom.Augment({ + toSVG: function () { + this.SVGgetStyles(); + var svg = this.SVG(); + this.SVGhandleSpace(svg); + if (this.data[0] != null) { + var box = this.data[0].toSVG(), y = 0; + if (this.texClass === MML.TEXCLASS.VCENTER) { + // FIXME: should the axis height be scaled? + y = SVG.TeX.axis_height - (box.h+box.d)/2 + box.d; + } + svg.Add(box,0,y); + svg.ic = box.ic; + } + this.SVGhandleColor(svg); + this.SVGsaveData(svg); + return svg; + } + }); + + // + // Loading isn't complete until the element jax is modified, + // but can't call loadComplete within the callback for "mml Jax Ready" + // (it would call SVG's Require routine, asking for the mml jax again) + // so wait until after the mml jax has finished processing. + // + // We also need to wait for the onload handler to run, since the loadComplete + // will call Config and Startup, which need to modify the body. + // + HUB.Register.StartupHook("onLoad",function () { + setTimeout(MathJax.Callback(["loadComplete",SVG,"jax.js"]),0); + }); + }); + + HUB.Browser.Select({ + Opera: function (browser) { + SVG.Augment({ + operaZoomRefresh: true // Opera needs a kick to redraw zoomed equations + }); + } + }); + + HUB.Register.StartupHook("End Cookie", function () { + if (HUB.config.menuSettings.zoom !== "None") + {AJAX.Require("[MathJax]/extensions/MathZoom.js")} + }); + + if (!document.createElementNS) { + // + // Try to handle SVG in IE8 and below, but fail + // (but don't crash on loading the file, so no delay for loadComplete) + // + if (!document.namespaces.svg) {document.namespaces.add("svg",SVGNS)} + SVG.Augment({ + Element: function (type,def) { + var obj = (typeof(type) === "string" ? document.createElement("svg:"+type) : type); + obj.isMathJax = true; + if (def) {for (var id in def) {if (def.hasOwnProperty(id)) {obj.setAttribute(id,def[id].toString())}}} + return obj; + } + }); + } + +})(MathJax.Ajax, MathJax.Hub, MathJax.HTML, MathJax.OutputJax.SVG); diff --git a/modules/MathJax/unpacked/localization/br/FontWarnings.js b/modules/MathJax/unpacked/localization/br/FontWarnings.js new file mode 100644 index 0000000..2cbaed6 --- /dev/null +++ b/modules/MathJax/unpacked/localization/br/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/br/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("br","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/br/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/br/HTML-CSS.js b/modules/MathJax/unpacked/localization/br/HTML-CSS.js new file mode 100644 index 0000000..7e717d8 --- /dev/null +++ b/modules/MathJax/unpacked/localization/br/HTML-CSS.js @@ -0,0 +1,34 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/br/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("br","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "O karga\u00F1 ar font web %1", + CantLoadWebFont: "Ne c'haller ket karga\u00F1 ar font web %1", + CantFindFontUsing: "Ne c'haller ket kavout ur font dereat e-touez %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/br/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/br/HelpDialog.js b/modules/MathJax/unpacked/localization/br/HelpDialog.js new file mode 100644 index 0000000..ab3c33f --- /dev/null +++ b/modules/MathJax/unpacked/localization/br/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/br/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("br","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/br/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/br/MathML.js b/modules/MathJax/unpacked/localization/br/MathML.js new file mode 100644 index 0000000..329d856 --- /dev/null +++ b/modules/MathJax/unpacked/localization/br/MathML.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/br/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("br","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "mglyph fall : %1", + BadMglyphFont: "Font fall : %1", + UnknownNodeType: "Seurt skoulm dianav : %1", + UnexpectedTextNode: "Skoulm testenn dic'hortoz : %1", + ErrorParsingMathML: "Fazi o tielfenna\u00F1 MathML", + ParsingError: "Fazi o ielfenna\u00F1 MathML : %1", + MathMLSingleElement: "MathML a rank beza\u00F1 stummet gant un elfenn hepken" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/br/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/br/MathMenu.js b/modules/MathJax/unpacked/localization/br/MathMenu.js new file mode 100644 index 0000000..e3fc1ab --- /dev/null +++ b/modules/MathJax/unpacked/localization/br/MathMenu.js @@ -0,0 +1,66 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/br/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("br","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Diskouez ar formulenn evel", + MathMLcode: "Kod MathML", + OriginalMathML: "MathML orin", + TeXCommands: "Urzhio\u00F9 TeX", + ErrorMessage: "Kemennadenn fazi", + Annotation: "Notenn", + TeX: "TeX", + StarMath: "StarMath", + OpenMath: "OpenMath", + Click: "Klika\u00F1", + DoubleClick: "Daouglika\u00F1", + NoZoom: "Zoum ebet", + Option: "Dibarzh", + Command: "Urzhiad", + Control: "Kontroll", + ZoomFactor: "Feur zoum", + ForHTMLCSS: "Evit HTML-CSS :", + Auto: "Emgefre", + TeXLocal: "TeX (lec'hel)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (skeudenn)", + STIXLocal: "STIX (lec'hel)", + ContextMenu: "La\u00F1ser kemperzhel", + Browser: "Merdeer", + Locale: "Yezh", + LoadLocale: "Karga\u00F1 diwar an URL ...", + About: "Diwar-benn MathJax", + Help: "Sikour MathJax", + wofforotffonts: "fonto\u00F9 woff pe otf", + eotffonts: "fonto\u00F9 eot", + svgfonts: "Fonto\u00F9 svg", + LoadURL: "Karga\u00F1 roadenno\u00F9 trei\u00F1 eus an URL-ma\u00F1 :", + Close: "Serri\u00F1", + Original: "Furmskrid orin", + Settings: "Arventenno\u00F9 ar matematiko\u00F9" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/br/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/br/TeX.js b/modules/MathJax/unpacked/localization/br/TeX.js new file mode 100644 index 0000000..ba0c293 --- /dev/null +++ b/modules/MathJax/unpacked/localization/br/TeX.js @@ -0,0 +1,70 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/br/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("br","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Briataenn digeri\u00F1 a re pe briataenn serri\u00F1 diank", + ExtraCloseMissingOpen: "Briataenn serri\u00F1 a re pe briataenn digeri\u00F1 diank", + MissingLeftExtraRight: "\\left diank pe \\right a re", + ExtraLeftMissingRight: "\\left a re pe \\right diank", + Misplaced: "%1 lec'hiet fall", + AmbiguousUseOf: "Implij forc'hellek eus %1", + EnvBadEnd: "\\begin{%1} zo echuet gant \\end{%2}", + EnvMissingEnd: "\\end{%1} a vank", + MissingBoxFor: "Ar voest a vank evit %1", + MissingCloseBrace: "Ar vriataenn serri\u00F1 a vank", + MisplacedMiddle: "%1 a rank beza\u00F1 e-barzh \\left ha \\right", + MisplacedMoveRoot: "%1 ne c'hall beza\u00F1 nemet e-barzh ur wrizienn", + MultipleCommand: "Meur a %1", + IntegerArg: "Arguzenn %1 a rank beza\u00F1 un niver anterin", + InvalidMathMLAttr: "Doareenn MathML direizh : %1", + MissingArgFor: "Arguzenn diank evit %1", + InvalidEnv: "Anv endro \"%1\" direizh", + UnknownEnv: "endro dianav \"%1\"", + TokenNotFoundForCommand: "N'eus ket bet gallet kavout %1 evit %2", + MathNotTerminated: "Formulenn diechu er voest testenn", + CommandNotAllowedInEnv: "%1 n'eo ket aotreet en endro %2", + MultipleLabel: "Label '%1' termenet meur a wech", + CommandAtTheBeginingOfLine: "%1 a rank beza\u00F1 e dero\u00F9 al linenn", + BadMathStyleFor: "Stil matematikel direizh evit %1", + PositiveIntegerArg: "Arguzenn %1 a rank beza\u00F1 un niver pozitivel anterin", + MultlineRowsOneCol: "Ar renko\u00F9 e-barzh an endro %1 a rank kaout ur bann dres", + MultipleBBoxProperty: "%1 diferet div wech e-barzh %2", + ExtraEndMissingBegin: "%1 a re pe \\begingroup diank", + GlobalNotFollowedBy: "%1 n'eo ket heuliet gant \\let, \\def, pe \\newcommand", + UndefinedColorModel: "N'eo ket termenet patrom liv \"%1\"", + InvalidDecimalNumber: "Niver degel direizh", + InvalidNumber: "Niver direizh", + NewextarrowArg2: "Eil arguzenn %1 a rank beza\u00F1 daou niver anterin dispartiet gant ur virgulenn", + NewextarrowArg3: "Trede arguzenn %1 a rank beza\u00F1 un niverenn arouezenn unicode", + NoClosingChar: "Ne c'haller ket kavout an %1 serri\u00F1", + CantUseHash2: "Implij direizh eus # er patrom evit %1", + MismatchUseDef: "An implij eus %1 ne glot ket gant an termenadur anezha\u00F1", + RunawayArgument: "Arguzenn diechu evit %1 ?", + NoClosingDelim: "Ne c'haller ket kavout ur bevenner serri\u00F1 evit %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/br/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/br/br.js b/modules/MathJax/unpacked/localization/br/br.js new file mode 100644 index 0000000..44f10dd --- /dev/null +++ b/modules/MathJax/unpacked/localization/br/br.js @@ -0,0 +1,69 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/br/br.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("br",null,{ + menuTitle: "brezhoneg", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + MathProcessingError: "Fazi o treta\u00F1 ar formulenn", + MathError: "Fazi er formulenn", + LoadFile: "O karga\u00F1 %1", + Loading: "O karga\u00F1", + LoadFailed: "N'eus ket bet gallet karga\u00F1 %1", + ProcessMath: "Treta\u00F1 ar formulenno\u00F9 : %1%%", + Processing: "O treta\u00F1", + TypesetMath: "Aoza\u00F1 formulenno\u00F9 : %1%%", + Typesetting: "Aoza\u00F1", + MathJaxNotSupported: "Ne c'hall ket ho merdeer ober gant MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n % 10 === 1 && !(n % 100 === 11 || n % 100 === 71 || + n % 100 === 91)) {return 1} // one + if (n % 10 === 2 && !(n % 100 === 12 || n % 100 === 72 || + n % 100 === 92)) {return 2} // two + if ((n % 10 === 3 || n % 10 === 4 || n % 10 === 9) && + !(10 <= n % 100 && n % 100 <= 19 || + 70 <= n % 100 && n % 100 <= 79 || + 90 <= n % 100 && n % 100 <= 99)) {return 3} // few + if (n !== 0 && n % 1000000 === 0) {return 4} // other + return 5; + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/br/br.js"); diff --git a/modules/MathJax/unpacked/localization/cdo/FontWarnings.js b/modules/MathJax/unpacked/localization/cdo/FontWarnings.js new file mode 100644 index 0000000..2628c89 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cdo/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cdo/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cdo","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/cdo/HTML-CSS.js b/modules/MathJax/unpacked/localization/cdo/HTML-CSS.js new file mode 100644 index 0000000..c97c56a --- /dev/null +++ b/modules/MathJax/unpacked/localization/cdo/HTML-CSS.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cdo/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cdo","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/cdo/HelpDialog.js b/modules/MathJax/unpacked/localization/cdo/HelpDialog.js new file mode 100644 index 0000000..501ddb4 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cdo/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cdo/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cdo","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/cdo/MathML.js b/modules/MathJax/unpacked/localization/cdo/MathML.js new file mode 100644 index 0000000..cf75f70 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cdo/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cdo/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cdo","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/cdo/MathMenu.js b/modules/MathJax/unpacked/localization/cdo/MathMenu.js new file mode 100644 index 0000000..a633a52 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cdo/MathMenu.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cdo/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cdo","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/cdo/TeX.js b/modules/MathJax/unpacked/localization/cdo/TeX.js new file mode 100644 index 0000000..3dfd80f --- /dev/null +++ b/modules/MathJax/unpacked/localization/cdo/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cdo/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cdo","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/cdo/cdo.js b/modules/MathJax/unpacked/localization/cdo/cdo.js new file mode 100644 index 0000000..86eec85 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cdo/cdo.js @@ -0,0 +1,61 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cdo/cdo.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cdo",null,{ + menuTitle: "M\u00ECng-d\u0115\u0324ng-ng\u1E73\u0304", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax\u5DF2\u7D93\u8A0E\u8457\u5305\u62EC\u6703\u904B\u884C\u5176\u4EE3\u78BC\u5176\u7528\u6236\u914D\u7F6Ecookie\u3002\u6C5D\u6709\u60F3\u904B\u884C\u7121\uFF1F\n\n\uFF08\u9664\u958B\u9019\u78BA\u5BE6\u662F\u6C5D\u81EA\u5BB6\u7279\u610F\u8A2D\u5176cookie\uFF0C\u82E5\u7121\u6C5D\u8457\u9EDE\u53D6\u6D88\u3002\uFF09", + MathProcessingError: "\u6578\u5B78\u8655\u7406\u932F\u8AA4", + MathError: "\u6578\u5B78\u932F\u8AA4", + LoadFile: "\u8F09\u5E95%1", + Loading: "\u8F09\u5E95", + LoadFailed: "\u6587\u4EF6\u8F09\u5E95\u5931\u6557\uFF1A%1", + ProcessMath: "\u8655\u7406\u6578\u5B78\uFF1A%1%%", + Processing: "\u6546\uD844\uDD4F\u8655\u7406", + TypesetMath: "\u6392\u7248\u6578\u5B78\uFF1A%1%%", + Typesetting: "\u6546\uD844\uDD4F\u6392\u7248", + MathJaxNotSupported: "\u6C5D\u5176\u700F\u89BD\u5668\uD84C\uDF50\u652F\u6301MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + return 1; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cdo/cdo.js"); diff --git a/modules/MathJax/unpacked/localization/cs/FontWarnings.js b/modules/MathJax/unpacked/localization/cs/FontWarnings.js new file mode 100644 index 0000000..8d0ed8f --- /dev/null +++ b/modules/MathJax/unpacked/localization/cs/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cs/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cs","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax pou\u017E\u00EDv\u00E1 k zobrazen\u00ED matematiky na t\u00E9to str\u00E1nce webov\u00E1 p\u00EDsma. T\u011Bm trv\u00E1 sta\u017Een\u00ED n\u011Bjakou dobu, tak\u017Ee str\u00E1nka by se vykreslila rychleji, pokud byste si tato matematick\u00E1 p\u00EDsma nainstalovali p\u0159\u00EDmo do syst\u00E9mov\u00E9 slo\u017Eky p\u00EDsem.", + imageFonts: "MathJax pou\u017E\u00EDv\u00E1 m\u00EDsto m\u00EDstn\u00EDch nebo webov\u00FDch p\u00EDsem obr\u00E1zkov\u00E9 p\u00EDsmo. Proto bude vykreslov\u00E1n\u00ED pomalej\u0161\u00ED, ne\u017E je obvykl\u00E9, a p\u0159i tisku na Va\u0161\u00ED tisk\u00E1rn\u011B mo\u017En\u00E1 nebude matematika vykreslena na nejlep\u0161\u00ED rozli\u0161en\u00ED.", + noFonts: "MathJax nedok\u00E1\u017Ee naj\u00EDt p\u00EDsmo, kter\u00FDm by vykreslil matematiku, a obr\u00E1zkov\u00E1 p\u00EDsma nejsou k dispozici, tak\u017Ee se uch\u00FDl\u00ED k b\u011B\u017En\u00FDm znak\u016Fm Unicode v nad\u011Bji, \u017Ee je v\u00E1\u0161 prohl\u00ED\u017Ee\u010D dok\u00E1\u017Ee zobrazit. N\u011Bkter\u00E9 znaky se mo\u017En\u00E1 nezobraz\u00ED spr\u00E1vn\u011B, nebo dokonce v\u016Fbec.", + webFonts: "V\u011Bt\u0161ina modern\u00EDch prohl\u00ED\u017Ee\u010D\u016F umo\u017E\u0148uje sta\u017Een\u00ED p\u00EDsem p\u0159es web. Aktualizace na nov\u011Bj\u0161\u00ED verzi prohl\u00ED\u017Ee\u010De (nebo zm\u011Bna prohl\u00ED\u017Ee\u010De) by mohla zlep\u0161it zobrazen\u00ED matematiky na t\u00E9to str\u00E1nce.", + fonts: "MathJax m\u016F\u017Ee pou\u017E\u00EDvat bu\u010F [p\u00EDsma STIX](%1) nebo [MathJaxov\u00E1 TeXov\u00E1 p\u00EDsma](%2). St\u00E1hn\u011Bte a nainstalujte si jedny z nich, abyste si MathJax u\u017Eili l\u00E9pe.", + STIXPage: "Tato str\u00E1nka je vytvo\u0159ena pro pou\u017Eit\u00ED s [p\u00EDsmy STIX](%1). St\u00E1hn\u011Bte a nainstalujte si tato p\u00EDsma, abyste si l\u00E9pe u\u017Eili MathJax.", + TeXPage: "Tato str\u00E1nka je vytvo\u0159ena pro pou\u017Eit\u00ED s [MathJaxov\u00FDmi TeXov\u00FDmi p\u00EDsmy](%1). Pro lep\u0161\u00ED vyu\u017E\u00EDv\u00E1n\u00ED MathJaxu si st\u00E1hn\u011Bte a nainstalujte tato p\u00EDsma." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cs/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/cs/HTML-CSS.js b/modules/MathJax/unpacked/localization/cs/HTML-CSS.js new file mode 100644 index 0000000..9355745 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cs/HTML-CSS.js @@ -0,0 +1,34 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cs/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cs","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Na\u010D\u00EDt\u00E1 se web-font %1", + CantLoadWebFont: "Nelze na\u010D\u00EDst web-font %1", + FirefoxCantLoadWebFont: "Firefox nem\u016F\u017Ee na\u010D\u00EDtat web-fonty ze vzd\u00E1len\u00E9ho hostitele" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cs/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/cs/HelpDialog.js b/modules/MathJax/unpacked/localization/cs/HelpDialog.js new file mode 100644 index 0000000..37ddb88 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cs/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cs/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cs","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cs/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/cs/MathML.js b/modules/MathJax/unpacked/localization/cs/MathML.js new file mode 100644 index 0000000..7e68d4c --- /dev/null +++ b/modules/MathJax/unpacked/localization/cs/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cs/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cs","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cs/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/cs/MathMenu.js b/modules/MathJax/unpacked/localization/cs/MathMenu.js new file mode 100644 index 0000000..1c35b53 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cs/MathMenu.js @@ -0,0 +1,87 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cs/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cs","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Matematiku zobrazovat jako", + MathMLcode: "K\u00F3d MathML", + OriginalMathML: "P\u016Fvodn\u00ED MathML", + TeXCommands: "P\u0159\u00EDkazy TeXu", + AsciiMathInput: "Vstup AsciiMathML", + Original: "P\u016Fvodn\u00ED podoba", + ErrorMessage: "Chybov\u00E9 hl\u00E1\u0161en\u00ED", + Annotation: "Anotace", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "V\u00FDznamov\u00E9 MathML", + OpenMath: "OpenMath", + texHints: "Zobrazovat v MathML n\u00E1pov\u011Bdy TeXu", + Settings: "Nastaven\u00ED matematiky", + ZoomTrigger: "Aktivace zoomu", + Hover: "Najet\u00EDm my\u0161\u00ED", + Click: "Kliknut\u00EDm", + DoubleClick: "Dvojklikem", + NoZoom: "Bez zoomu", + TriggerRequires: "Aktivace vy\u017Eaduje:", + Option: "Option", + Alt: "Alt", + Command: "Command", + Control: "Control", + Shift: "Shift", + ZoomFactor: "M\u00EDra zoomu", + Renderer: "Vykreslov\u00E1n\u00ED matematiky", + MPHandles: "MathPlayer m\u00E1 zpracov\u00E1vat:", + MenuEvents: "Ud\u00E1losti menu", + MouseEvents: "Ud\u00E1losti my\u0161i", + MenuAndMouse: "Ud\u00E1losti my\u0161i a menu", + FontPrefs: "Nastaven\u00ED p\u00EDsem", + ForHTMLCSS: "U HTML-CSS:", + Auto: "Automaticky", + TeXLocal: "TeX (lok\u00E1ln\u00ED)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (obr\u00E1zek)", + STIXLocal: "STIX (lok\u00E1ln\u00ED)", + ContextMenu: "Kontextov\u00E9 menu", + Browser: "Prohl\u00ED\u017Ee\u010D", + Discoverable: "Zv\u00FDraznit p\u0159i najet\u00ED my\u0161\u00ED", + Locale: "Jazyk", + About: "O MathJaxu", + Help: "N\u00E1pov\u011Bda k MathJaxu", + localTeXfonts: "pou\u017E\u00EDvaj\u00ED se lok\u00E1ln\u00ED p\u00EDsma TeXu", + webTeXfonts: "pou\u017E\u00EDvaj\u00ED se webov\u00E1 p\u00EDsma TeXu", + imagefonts: "pou\u017E\u00EDvaj\u00ED se obr\u00E1zkov\u00E1 p\u00EDsma", + localSTIXfonts: "pou\u017E\u00EDvaj\u00ED se lok\u00E1ln\u00ED p\u00EDsma STIX", + webSVGfonts: "pou\u017E\u00EDvaj\u00ED se webov\u00E1 SVG p\u00EDsma", + genericfonts: "pou\u017E\u00EDvaj\u00ED se generick\u00E1 unicodov\u00E1 p\u00EDsma", + wofforotffonts: "p\u00EDsma woff nebo otf", + eotffonts: "p\u00EDsma eot", + svgfonts: "p\u00EDsma svg", + SwitchAnyway: "Chcete p\u0159esto p\u0159epnout vykreslov\u00E1n\u00ED?\n\n(Stiskn\u011Bte OK pro p\u0159epnut\u00ED, STORNO pro pokra\u010Dov\u00E1n\u00ED se st\u00E1vaj\u00EDc\u00EDm vykreslov\u00E1n\u00EDm.)", + Close: "Zav\u0159\u00EDt" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cs/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/cs/TeX.js b/modules/MathJax/unpacked/localization/cs/TeX.js new file mode 100644 index 0000000..d235235 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cs/TeX.js @@ -0,0 +1,100 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cs/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cs","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "P\u0159eb\u00FDvaj\u00EDc\u00ED otv\u00EDrac\u00ED nebo chyb\u011Bj\u00EDc\u00ED zav\u00EDrac\u00ED slo\u017Een\u00E1 z\u00E1vorka", + ExtraCloseMissingOpen: "P\u0159eb\u00FDvaj\u00EDc\u00ED zav\u00EDrac\u00ED nebo chyb\u011Bj\u00EDc\u00ED otv\u00EDrac\u00ED slo\u017Een\u00E1 z\u00E1vorka", + MissingLeftExtraRight: "Chyb\u011Bj\u00EDc\u00ED \\left nebo p\u0159eb\u00FDvaj\u00EDc\u00ED \\right", + MissingScript: "Chyb\u00ED argument horn\u00EDho nebo doln\u00EDho indexu", + ExtraLeftMissingRight: "P\u0159eb\u00FDvaj\u00EDc\u00ED \\left nebo chyb\u011Bj\u00EDc\u00ED \\right", + Misplaced: "Chybn\u011B um\u00EDst\u011Bn\u00FD %1", + MissingOpenForSub: "U doln\u00EDho indexu chyb\u00ED otv\u00EDrac\u00ED slo\u017Een\u00E1 z\u00E1vorka", + MissingOpenForSup: "U horn\u00EDho indexu chyb\u00ED otv\u00EDrac\u00ED slo\u017Een\u00E1 z\u00E1vorka", + AmbiguousUseOf: "Nejednozna\u010Dn\u00E9 u\u017Eit\u00ED %1", + EnvBadEnd: "\\begin{%1} bylo uzav\u0159eno \\end{%2}", + EnvMissingEnd: "Chyb\u011Bj\u00EDc\u00ED \\end{%1}", + MissingBoxFor: "Chyb\u00ED box pro %1", + MissingCloseBrace: "Chyb\u00ED zav\u00EDrac\u00ED slo\u017Een\u00E1 z\u00E1vorka", + UndefinedControlSequence: "Nedefinovan\u00E1 \u0159\u00EDdic\u00ED sekvence %1", + DoubleExponent: "Dvojit\u00FD exponent: pro vyjasn\u011Bn\u00ED pou\u017Eijte slo\u017Een\u00E9 z\u00E1vorky", + DoubleSubscripts: "Dvojit\u00FD doln\u00ED index: pro vyjasn\u011Bn\u00ED pou\u017Eijte slo\u017Een\u00E9 z\u00E1vorky", + DoubleExponentPrime: "Symbol \u010D\u00E1rky zp\u016Fsobil dvojit\u00FD exponent: pro vyjasn\u011Bn\u00ED pou\u017Eijte slo\u017Een\u00E9 z\u00E1vorky", + CantUseHash1: "V matematick\u00E9m re\u017Eimu nem\u016F\u017Eete pou\u017E\u00EDt znak \u201E#\u201C pro parametry maker", + MisplacedMiddle: "%1 mus\u00ED b\u00FDt uvnit\u0159 \\left a \\right", + MisplacedLimits: "%1 je dovoleno pouze u oper\u00E1tor\u016F", + MisplacedMoveRoot: "%1 se m\u016F\u017Ee vyskytnout pouze v ko\u0159eni", + MultipleCommand: "V\u00EDcen\u00E1sobn\u00FD %1", + IntegerArg: "Argumentem %1 mus\u00ED b\u00FDt cel\u00E9 \u010D\u00EDslo", + InvalidMathMLAttr: "Neplatn\u00FD atribut MathML: %1", + UnknownAttrForElement: "%1 nen\u00ED zn\u00E1m\u00FD atribut %2", + MaxMacroSub1: "P\u0159ekro\u010Den maxim\u00E1ln\u00ED po\u010Det substituc\u00ED makra MathJaxu; nen\u00ED tam rekurzivn\u00ED vol\u00E1n\u00ED makra?", + MaxMacroSub2: "P\u0159ekro\u010Den maxim\u00E1ln\u00ED po\u010Det substituc\u00ED MathJaxu; nen\u00ED tam rekurzivn\u00ED LaTexov\u00E9 prost\u0159ed\u00ED?", + MissingArgFor: "Chyb\u00ED argument pro %1", + ExtraAlignTab: "P\u0159ebyte\u010Dn\u00FD zarovn\u00E1vac\u00ED tabul\u00E1tor v textu \\cases", + BracketMustBeDimension: "Z\u00E1vorkov\u00FD argument u %1 mus\u00ED b\u00FDt rozm\u011Br", + InvalidEnv: "Neplatn\u00E9 jm\u00E9no prost\u0159ed\u00ED \u201E%1\u201C", + UnknownEnv: "Nezn\u00E1m\u00E9 prost\u0159ed\u00ED \u201E%1\u201C", + ExtraCloseLooking: "P\u0159ebyte\u010Dn\u00E1 zav\u00EDrac\u00ED hranat\u00E1 z\u00E1vorka, zat\u00EDmco bylo o\u010Dek\u00E1v\u00E1no %1", + MissingCloseBracket: "U argumentu %1 nebyla nalezena zav\u00EDrac\u00ED \u201E]\u201C", + MissingOrUnrecognizedDelim: "Chyb\u011Bj\u00EDc\u00ED nebo nerozpoznan\u00FD odd\u011Blova\u010D u %1", + MissingDimOrUnits: "U %1 chyb\u00ED rozm\u011Br nebo jeho jednotka", + TokenNotFoundForCommand: "Nenalezeno %1 k %2", + MathNotTerminated: "V textov\u00E9m boxu nen\u00ED ukon\u010Dena matematika", + IllegalMacroParam: "Neplatn\u00FD odkaz na parametr makra", + MaxBufferSize: "P\u0159ekro\u010Dena velikost intern\u00ED pam\u011Bti MathJaxu; nen\u00ED tam rekurzivn\u00ED vol\u00E1n\u00ED makra?", + CommandNotAllowedInEnv: "V prost\u0159ed\u00ED %2 nen\u00ED dovolen %1", + MultipleLabel: "V\u00EDcen\u00E1sobn\u00E1 definice n\u00E1v\u011Bst\u00ED %1", + CommandAtTheBeginingOfLine: "%1 mus\u00ED b\u00FDt um\u00EDst\u011Bno na za\u010D\u00E1tku \u0159\u00E1dky", + IllegalAlign: "U %1 uvedeno neplatn\u00E9 zarovn\u00E1n\u00ED", + BadMathStyleFor: "Chybn\u00FD styl matematiky u %1", + PositiveIntegerArg: "Argumentem %1 mus\u00ED b\u00FDt kladn\u00E9 cel\u00E9 \u010D\u00EDslo", + ErroneousNestingEq: "Chybn\u00E9 zano\u0159ov\u00E1n\u00ED struktury rovnic", + MultlineRowsOneCol: "\u0158\u00E1dky v prost\u0159ed\u00ED %1 mus\u00ED m\u00EDt pr\u00E1v\u011B jeden sloupec", + MultipleBBoxProperty: "U %2 je %1 uvedeno dvakr\u00E1t", + InvalidBBoxProperty: "\u201E%1\u201C nevypad\u00E1 jako barva, rozm\u011Br paddingu nebo styl", + ExtraEndMissingBegin: "P\u0159eb\u00FDvaj\u00EDc\u00ED %1 nebo chyb\u011Bj\u00EDc\u00ED \\begingroup", + GlobalNotFollowedBy: "Za %1 chyb\u00ED \\let, \\def nebo \\newcommand", + UndefinedColorModel: "Barevn\u00FD model \u201E%1\u201C nen\u00ED definov\u00E1n", + ModelArg1: "Barevn\u00E9 hodnoty modelu %1 vy\u017Eaduj\u00ED t\u0159i \u010D\u00EDsla", + InvalidDecimalNumber: "Neplatn\u00E9 desetinn\u00E9 \u010D\u00EDslo", + ModelArg2: "Barevn\u00E9 hodnoty modelu %1 mus\u00ED le\u017Eet mezi %2 a %3", + InvalidNumber: "Neplatn\u00E9 \u010D\u00EDslo", + NewextarrowArg1: "Prvn\u00EDm argumentem %1 mus\u00ED b\u00FDt n\u00E1zev \u0159\u00EDdic\u00ED sekvence", + NewextarrowArg2: "Druh\u00FDm argumentem %1 mus\u00ED b\u00FDt dv\u011B cel\u00E1 \u010D\u00EDsla odd\u011Blen\u00E1 \u010D\u00E1rkou", + NewextarrowArg3: "T\u0159et\u00EDm argumentem %1 mus\u00ED b\u00FDt \u010D\u00EDslo znaku Unicode", + NoClosingChar: "Nelze naj\u00EDt zav\u00EDrac\u00ED %1", + IllegalControlSequenceName: "Neplatn\u00FD n\u00E1zev \u0159\u00EDdic\u00ED sekvence u %1", + IllegalParamNumber: "U %1 uveden neplatn\u00FD po\u010Det parametr\u016F", + MissingCS: "Za %1 mus\u00ED b\u00FDt \u0159\u00EDdic\u00ED sekvence", + CantUseHash2: "Chybn\u00E9 u\u017Eit\u00ED # v \u0161ablon\u011B pro %1", + SequentialParam: "Parametry %1 mus\u00ED b\u00FDt \u010D\u00EDslov\u00E1ny postupn\u011B", + MissingReplacementString: "V definici %1 chyb\u00ED nahrazuj\u00EDc\u00ED \u0159et\u011Bzec", + MismatchUseDef: "Pou\u017Eit\u00ED %1 neodpov\u00EDd\u00E1 jeho definici", + NoClosingDelim: "Nenalezen ukon\u010Dovac\u00ED znak u %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cs/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/cs/cs.js b/modules/MathJax/unpacked/localization/cs/cs.js new file mode 100644 index 0000000..9dc19e8 --- /dev/null +++ b/modules/MathJax/unpacked/localization/cs/cs.js @@ -0,0 +1,63 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/cs/cs.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("cs",null,{ + menuTitle: "\u010Desky", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + MathProcessingError: "Chyba zpracov\u00E1n\u00ED matematiky", + MathError: "Chyba matematiky", + LoadFile: "Na\u010D\u00EDt\u00E1 se %1", + Loading: "Na\u010D\u00EDt\u00E1 se", + LoadFailed: "Nepoda\u0159ilo se na\u010D\u00EDst soubor: %1", + ProcessMath: "Zpracov\u00E1v\u00E1 se matematika: %1 %%", + Processing: "Zpracov\u00E1v\u00E1 se", + TypesetMath: "S\u00E1z\u00ED se matematika: %1 %%", + Typesetting: "S\u00E1z\u00ED se", + MathJaxNotSupported: "V\u00E1\u0161 prohl\u00ED\u017Ee\u010D nepodporuje MathJax", + CookieConfig: "MathJax nalezl cookie u\u017Eivatelsk\u00E9 konfigurace obsahuj\u00EDc\u00ED spustiteln\u00FD k\u00F3d. Chcete ho spustit?\n\n(Pokud jste cookie nenastavili sami, m\u011Bli byste stisknout Storno.)" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) return 1; // one + if (2 <= n && n <= 4) return 2; // few + return 3; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/cs/cs.js"); diff --git a/modules/MathJax/unpacked/localization/da/FontWarnings.js b/modules/MathJax/unpacked/localization/da/FontWarnings.js new file mode 100644 index 0000000..26dd20e --- /dev/null +++ b/modules/MathJax/unpacked/localization/da/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/da/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("da","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax bruger web-baserede skrifttyper til at vise det matematiske p\u00E5 denne side. Dette tager tid at hente, s\u00E5 siden ville blive hurtigere, hvis du installerede matematiske skrifttyper direkte i dit systems skrifttypemappe.", + STIXPage: "Denne side er designet til at bruge [STIX fonts](%1). Hent og install\u00E9r disse skrifttyper for at forbedre oplevelsen med MathJax.", + TeXPage: "Denne side er designet til at bruge [MathJax TeX fonts](%1). Hent og install\u00E9r disse skrifttyper for at forbedre oplevelsen med MathJax.", + imageFonts: "MathJax bruger sine billedeskrifttyper snarere end lokale eller web-baserede skrifttyper. Dette vil g\u00F8re visningen langsommere end s\u00E6dvanligt, og matematik kan ikke udskrives med printerens fulde opl\u00F8sning.", + noFonts: "MathJax er ikke i stand til at finde en skrifttype, som kan bruges til at vise matematikken, og billedeskrifttyper er ikke tilg\u00E6ngelige, s\u00E5 der faldes tilbage p\u00E5 generiske Unicode-tegn i h\u00E5b om, at din browser vil v\u00E6re i stand til at vise dem. Nogle tegn kan m\u00E5ske ikke vises korrekt, eller muligvis slet ikke.", + webFonts: "De fleste moderne browsere giver mulighed for at hente skrifttyper over nettet. At opdatere til en nyere version af din browser (eller skifte browser) kunne forbedre kvaliteten af matematik p\u00E5 denne side.", + fonts: "MathJax kan bruge enten [STIX fonts](%1) eller [MathJax TeX fonts](%2). Hent og installer en af disse skrifttyper for at forbedre din MathJax oplevelse." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/da/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/da/HTML-CSS.js b/modules/MathJax/unpacked/localization/da/HTML-CSS.js new file mode 100644 index 0000000..82824f0 --- /dev/null +++ b/modules/MathJax/unpacked/localization/da/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/da/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("da","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Indl\u00E6ser webskrifftype %1", + CantLoadWebFont: "Kan ikke indl\u00E6se webskrifttype %1", + FirefoxCantLoadWebFont: "Firefox kan ikke indl\u00E6se webskrifttyper fra en fjernstyret v\u00E6rt", + CantFindFontUsing: "Kunne ikke finde en gyldig skrifttype ved hj\u00E6lp af %1", + WebFontsNotAvailable: "Webskrifttyper er ikke tilg\u00E6ngelig. Brug billede skrifttyper i stedet" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/da/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/da/HelpDialog.js b/modules/MathJax/unpacked/localization/da/HelpDialog.js new file mode 100644 index 0000000..f238eb3 --- /dev/null +++ b/modules/MathJax/unpacked/localization/da/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/da/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("da","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "MathJax hj\u00E6lp", + MathJax: "*MathJax* er et JavaScript-bibliotek, der giver mulighed for forfattere af sider kan inkludere matematik i deres websider. Som l\u00E6ser beh\u00F8ver du ikke at g\u00F8re noget for at f\u00E5 det til at virke.", + Browsers: "*Browsere*: MathJax virker p\u00E5 alle moderne browsere inklusiv IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ og de fleste mobile browsere.", + Menu: "*Matematikmenu*: MathJax tilf\u00F8jer en genvejsmenu til ligninger. H\u00F8jreklik eller Ctrl-klik p\u00E5 matematikken for at f\u00E5 adgang til menuen.", + ShowMath: "*Vis matematik som* giver dig mulighed for at se formelens kilde markup s\u00E5 du kan kopierer og inds\u00E6tte andre steder (som MathML eller i dens oprindelige format).", + Settings: "*Indstillinger* giver dig kontrol over funktioner i MathJax, s\u00E5som st\u00F8rrelsen af matematikken, og den mekanisme, der bruges til at vise ligninger.", + Language: "*Sprog* lader dig v\u00E6lge det sprog MathJax bruger i sine menuer og advarselsmeddelelser.", + Zoom: "*Matematik zoom*: Hvis du har sv\u00E6rt ved at l\u00E6se en ligning, kan MathJax forst\u00F8rre den for at hj\u00E6lpe dig med at se den bedre.", + Accessibilty: "*Tilg\u00E6ngelighed*: MathJax vil automatisk arbejde med sk\u00E6rml\u00E6sere for at g\u00F8re matematik tilg\u00E6ngeligt for synsh\u00E6mmede.", + Fonts: "*Skrifttyper*: MathJax vil bruge visse matematiske skrifttyper, hvis de er installeret p\u00E5 computeren. ellers vil det bruge web-baserede skrifttyper. Selvom det ikke er p\u00E5kr\u00E6vet, vil lokalt installerede skrifttyper fremskynde ops\u00E6tningen. Vi foresl\u00E5r at installere [STIX fonts](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/da/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/da/MathML.js b/modules/MathJax/unpacked/localization/da/MathML.js new file mode 100644 index 0000000..536e328 --- /dev/null +++ b/modules/MathJax/unpacked/localization/da/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/da/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("da","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "D\u00E5rlig mglyph: %1", + BadMglyphFont: "D\u00E5rlig skrifttype: %1", + MathPlayer: "MathJax var ikke i stand til at konfigurere MathPlayer.\n\nHvis MathPlayer ikke er installeret, skal du installere det f\u00F8rst.\nEllers, kan dine sikkerhedsindstillinger forhindrer ActiveX\nkontrolelementer i at k\u00F8re. Bruge dine Internetindstillinger under\ni menuen Funktioner og v\u00E6lg fanen Sikkerhed, og tryk derefter p\u00E5\nknappen Brugerdefineret niveau. Kontroller, at indstillingerne for\n'K\u00F8r ActiveX-objekter' og 'bin\u00E6r- og script-opf\u00F8rsel' er aktiveret.\n\nI \u00F8jeblikket vil du se fejlmeddelelser i stedet for\nformateret matematik", + CantCreateXMLParser: "MathJax kan ikke oprette en XML-parser til MathML. Kontroller, at\n'Script ActiveX-objekter markeret sikre til scripting' sikkerhed\ner aktiveret (bruge elementet Internetindstillinger i menuen \nv\u00E6rkt\u00F8jer, og v\u00E6lg sikkerhedspanel, tryk derefter p\u00E5 \nBrugerdefineret niveau knappen for at unders\u00F8ge det).\n\nMathML ligninger vil ikke kunne behandles af MathJax", + UnknownNodeType: "Ukendt nodetype: %1", + UnexpectedTextNode: "Uventet tekst node: %1", + ErrorParsingMathML: "Fejl under parsing af MathML", + ParsingError: "Fejl under parsing af MathML: %1", + MathMLSingleElement: "MathML skal v\u00E6re dannet af en enkelt element", + MathMLRootElement: "MathML skal v\u00E6re dannet af et \u003Cmath\u003E element, ikke %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/da/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/da/MathMenu.js b/modules/MathJax/unpacked/localization/da/MathMenu.js new file mode 100644 index 0000000..d0583c7 --- /dev/null +++ b/modules/MathJax/unpacked/localization/da/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/da/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("da","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Vis matematik som", + MathMLcode: "MathML kode", + OriginalMathML: "Oprindelige MathML", + TeXCommands: "TeX kommandoer", + AsciiMathInput: "AsciiMathML input", + Original: "Oprindelige format", + ErrorMessage: "Fejlmeddelelse", + Annotation: "Anm\u00E6rkning", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "Content MathML", + OpenMath: "OpenMath", + texHints: "Vis TeX hints i MathML", + Settings: "Matematikindstillinger", + ZoomTrigger: "Zoom udl\u00F8ser", + Hover: "Hover", + Click: "Klik", + DoubleClick: "Dobbeltklik", + NoZoom: "Ingen zoom", + TriggerRequires: "Udl\u00F8ser kr\u00E6ver:", + Option: "Option", + Alt: "Alt", + Command: "Command", + Control: "Ctrl", + Shift: "Shift", + ZoomFactor: "Zoomfaktor", + Renderer: "Matematik renderer", + MPHandles: "Lad MathPlayer h\u00E5ndtere:", + MenuEvents: "Menubegivenheder", + MouseEvents: "Musebegivenheder", + MenuAndMouse: "Muse- og menu-begivenheder", + FontPrefs: "Skrifttype indstillinger", + ForHTMLCSS: "For HTML-CSS:", + Auto: "Auto", + TeXLocal: "TeX (lokal)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (billede)", + STIXLocal: "STIX (lokal)", + ContextMenu: "Kontekstuelle menu", + Browser: "Browser", + Scale: "Skaler alt matematik...", + Discoverable: "Fremh\u00E6v ved hover", + Locale: "Sprog", + LoadLocale: "Indl\u00E6ser fra URL...", + About: "Om MathJax", + Help: "MathJax hj\u00E6lp", + localTeXfonts: "ved hj\u00E6lp af lokale TeX skrifttyper", + webTeXfonts: "ved hj\u00E6lp af TeX webskrifttyper", + imagefonts: "ved hj\u00E6lp af billede skrifttyper", + localSTIXfonts: "ved hj\u00E6lp af lokale STIX skrifttyper", + webSVGfonts: "ved hj\u00E6lp af web SVG skrifttyper", + genericfonts: "ved hj\u00E6lp af generiske Unicode-skrifttyper", + wofforotffonts: "WOFF eller OTF skrifttyper", + eotffonts: "EOT skrifttyper", + svgfonts: "SVG skrifttyper", + WebkitNativeMMLWarning: "Din browser synes ikke at have indbygget st\u00F8tte til MathML, s\u00E5 et skift til MathML output kan for\u00E5rsage at matematik p\u00E5 siden bliver ul\u00E6selig", + MSIENativeMMLWarning: "Internet Explorer kr\u00E6ver MathPlayer plugin for at kunne behandle MathML output.", + OperaNativeMMLWarning: "Operas underst\u00F8ttelse af MathML er begr\u00E6nset, s\u00E5 et skift til MathML output kan for\u00E5rsage at nogle udtryk bliver vist d\u00E5rligt.", + SafariNativeMMLWarning: "Din browsers indbyggede MathML underst\u00F8tter ikke alle de funktioner, der anvendes af MathJax, s\u00E5 nogle udtryk gengives muligvis ikke korrekt.", + FirefoxNativeMMLWarning: "Din browsers indbyggede MathML underst\u00F8tter ikke alle de funktioner, der anvendes af MathJax, s\u00E5 nogle udtryk gengives muligvis ikke korrekt.", + MSIESVGWarning: "SVG er ikke implementeret i Internet Explorer f\u00F8r IE9 eller n\u00E5r der emuleres IE8 eller nedefter. Et skifte til SVG-output vil for\u00E5rsage at matematik ikke vises korrekt.", + LoadURL: "Indl\u00E6s overs\u00E6ttelsesdata fra denne URL:", + BadURL: "URL-adressen skal v\u00E6re for en JavaScript-fil, der definerer MathJax overs\u00E6ttelsesdata. JavaScript filnavne skal afsluttes med '.js'", + BadData: "Kunne ikke indl\u00E6se overs\u00E6ttelsesdata fra %1", + SwitchAnyway: "Skift renderer alligevel?\n\n(Tryk p\u00E5 OK for at skifte, ANNULLER for at forts\u00E6tte med den nuv\u00E6rende renderer)", + ScaleMath: "Skal\u00E9r alt matematik (sammenlignet med omgivende tekst) med", + NonZeroScale: "Skaleringen m\u00E5 ikke v\u00E6re nul", + PercentScale: "Skaleringen skal v\u00E6re en procentsats (for eksempel 120%%)", + IE8warning: "Dette vil deaktivere MathJax funktionerne menu og zoom, men du kan ogs\u00E5 Alt-klikke p\u00E5 et udtryk for at f\u00E5 MathJax menuen i stedet.\n\nVil du virkelig \u00E6ndre indstillingerne for MathPlayer?", + IE9warning: "Den kontekstuelle MathJax menu vil blive deaktiveret, men du kan Alt-klikke p\u00E5 et udtryk for at f\u00E5 MathJax menuen i stedet.", + NoOriginalForm: "Ingen oprindelig form, til r\u00E5dighed", + Close: "Luk", + EqSource: "MathJax ligningskilde" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/da/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/da/TeX.js b/modules/MathJax/unpacked/localization/da/TeX.js new file mode 100644 index 0000000..255344d --- /dev/null +++ b/modules/MathJax/unpacked/localization/da/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/da/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("da","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Ekstra venstreklammeparentes eller manglende h\u00F8jreklammeparentes", + ExtraCloseMissingOpen: "Ekstra h\u00F8jreklammeparentes eller manglende venstreklammeparentes", + MissingLeftExtraRight: "Manglende \\left eller ekstra \\right", + MissingScript: "Manglende h\u00E6vet skrift eller s\u00E6nket skrift argument", + ExtraLeftMissingRight: "Ekstra \\left eller manglende \\right", + Misplaced: "Malplaceret %1", + MissingOpenForSub: "Manglende venstreklammeparentes til s\u00E6nket skrift", + MissingOpenForSup: "Manglende venstreklammeparentes til h\u00E6vet skrift", + AmbiguousUseOf: "Flertydig brug af %1", + EnvBadEnd: "\\begin{%1} sluttede med \\end{%2}", + EnvMissingEnd: "Manglende \\end{%1}", + MissingCloseBrace: "Manglende h\u00F8jreklammeparentes", + UndefinedControlSequence: "Udefineret kontrolsekvens %1", + DoubleExponent: "Dobbelt eksponent: brug klammeparenteser til at tydeligg\u00F8re", + DoubleSubscripts: "Dobbelt s\u00E6nket skrift: brug klammeparenteser til at tydeligg\u00F8re", + DoubleExponentPrime: "M\u00E6rke for\u00E5rsager dobbelt eksponent: bruge klammeparenteser til at tydeligg\u00F8re", + CantUseHash1: "Du kan ikke bruge 'makro parameter tegnet #' i matematik tilstand", + MisplacedMiddle: "%1 skal v\u00E6re inden for \\left og \\right", + MisplacedLimits: "%1 er kun tilladt p\u00E5 operatorer", + MisplacedMoveRoot: "%1 kan kun v\u00E6re indenfor en root", + MultipleCommand: "For mange %1", + IntegerArg: "Argumentet til %1 skal v\u00E6re et heltal", + NotMathMLToken: "%1 er ikke et token element", + InvalidMathMLAttr: "Ugyldig MathML attribut: %1", + UnknownAttrForElement: "%1 er ikke en genkendt attribut for %2", + MaxMacroSub1: "Det maksimale antal makro substitutioner i MathJax er overskredet; er der et rekursivt makrokald?", + MaxMacroSub2: "Det maksimale antal substitutioner i MathJax er overskredet; er der et rekursivt latex milj\u00F8?", + MissingArgFor: "Manglende argument til %1", + ExtraAlignTab: "For mange \u0026 i \\cases tekst", + BracketMustBeDimension: "Klammeargument til %1 skal v\u00E6re en dimension", + InvalidEnv: "Ugyldigt navn '%1'", + UnknownEnv: "Ukendt navn '%1'", + ExtraCloseLooking: "Ekstra h\u00F8jreklammeparentes under s\u00F8gning efter %1", + MissingCloseBracket: "Kunne ikke finde det afsluttende ']' argument til %1", + MissingOrUnrecognizedDelim: "Manglende eller ukendt skilletegn for %1", + MissingDimOrUnits: "Manglende dimension eller enheder for %1", + TokenNotFoundForCommand: "Kunne ikke finde %1 for %2", + MathNotTerminated: "Matematik ikke afsluttet i tekstfeltet", + IllegalMacroParam: "Ulovlig makro parameter reference", + MaxBufferSize: "Intern bufferst\u00F8rrelse for MathJax er overskredet; er der et rekursivt makrokald?", + CommandNotAllowedInEnv: "%1 er ikke tilladt i milj\u00F8et %2", + MultipleLabel: "Etiketten '%1' er defineret flere gange", + CommandAtTheBeginingOfLine: "%1 skal v\u00E6re i begyndelsen af linjen", + IllegalAlign: "Ulovlig justering angivet i %1", + BadMathStyleFor: "D\u00E5rlig matematik stil for %1", + PositiveIntegerArg: "Argumentet til %1 skal v\u00E6re et positivt heltal", + ErroneousNestingEq: "Fejlagtig indlejring af ligningsstrukturer", + MultlineRowsOneCol: "R\u00E6kker indenfor milj\u00F8et %1 skal have pr\u00E6cis \u00E9n kolonne", + MultipleBBoxProperty: "%1 angivet to gange i %2", + InvalidBBoxProperty: "'%1' ligner ikke en farve, en padding dimension eller en stil", + ExtraEndMissingBegin: "Ekstra %1 eller manglende \\begingroup", + GlobalNotFollowedBy: "%1 ikke efterfulgt af \\let, \\def eller \\newcommand", + UndefinedColorModel: "Farvemodel '%1' ikke defineret", + ModelArg1: "Farvev\u00E6rdier for modellen %1 kr\u00E6ver 3 tal", + InvalidDecimalNumber: "Ugyldigt decimaltal", + ModelArg2: "Farvev\u00E6rdier for modellen %1 skal v\u00E6re mellem %2 og %3", + InvalidNumber: "Ugyldigt tal", + NewextarrowArg1: "F\u00F8rste argument til %1 skal v\u00E6re navnet p\u00E5 en kontrol sekvens", + NewextarrowArg2: "Andet argument til %1 skal v\u00E6re to heltal adskilt af et komma", + NewextarrowArg3: "Tredje argument til %1 skal v\u00E6re nummeret p\u00E5 et Unicode-tegn", + NoClosingChar: "Kan ikke finde den afsluttende %1", + IllegalControlSequenceName: "Ulovligt kontrol sekvens navn for %1", + IllegalParamNumber: "Ulovligt antal parametre angivet i %1", + MissingCS: "%1 skal efterf\u00F8lges af en kontrolsekvens", + CantUseHash2: "Ulovlig brug af # i skabelon for %1", + SequentialParam: "Parametre for %1 skal v\u00E6re nummereret fortl\u00F8bende", + MissingReplacementString: "Manglende erstatningsstreng til definition af %1", + MismatchUseDef: "Brug af %1 stemmer ikke overens med dens definition", + RunawayArgument: "L\u00F8bsk argument for %1?", + NoClosingDelim: "Kan ikke finde afsluttende skilletegn for %1", + MissingBoxFor: "Manglende boks for %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/da/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/da/da.js b/modules/MathJax/unpacked/localization/da/da.js new file mode 100644 index 0000000..16df0a5 --- /dev/null +++ b/modules/MathJax/unpacked/localization/da/da.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/da/da.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("da",null,{ + menuTitle: "dansk", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax har fundet en cookie med brugerkonfiguration, der indeholder kode til at k\u00F8re. Vil du k\u00F8re det?\n\n(Du b\u00F8r trykke p\u00E5 Annuller, medmindre du oprettede cookien selv.)", + MathProcessingError: "Fejl under bearbejdning af matematik", + MathError: "Matematikfejl", + LoadFile: "Indl\u00E6ser %1", + Loading: "Indl\u00E6ser", + LoadFailed: "Kunne ikke indl\u00E6se filen: %1", + ProcessMath: "Bearbejder matematik: %1%%", + Processing: "Bearbejder", + TypesetMath: "Ops\u00E6tter matematik: %1%%", + Typesetting: "Ops\u00E6tter", + MathJaxNotSupported: "Din browser underst\u00F8tter ikke MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) return 1; // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/da/da.js"); diff --git a/modules/MathJax/unpacked/localization/de/FontWarnings.js b/modules/MathJax/unpacked/localization/de/FontWarnings.js new file mode 100644 index 0000000..0b23bbe --- /dev/null +++ b/modules/MathJax/unpacked/localization/de/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/de/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("de","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax nutz web-basierte Fonts zur Darstellung der Mathematik auf dieser Seite. Da diese heruntergeladen werden m\u00FCssen, l\u00E4dt die Seite schneller, wenn Mathe-Fonts auf dem System installiert sind.", + imageFonts: "MathJax verwendet die Bildschriften anstatt der lokalen oder webbasierten Schriften. Das Rendern dauert l\u00E4nger als gew\u00F6hnlich und die Inhalte werden m\u00F6glicherweise nicht mit der vollen Aufl\u00F6sung deines Druckers ausgedruckt.", + noFonts: "MathJax konnte keine Schriftart zur Anzeige der Inhalte finden und Bildschriften sind nicht verf\u00FCgbar. Es wird auf allgemeine Unicode-Zeichen zur\u00FCckgegriffen in der Hoffnung, dass dein Browser in der Lage ist, sie darzustellen. Einige Zeichen werden m\u00F6glicherweise nicht richtig oder gar nicht angezeigt.", + webFonts: "Die meisten modernen Browser erlauben den Download von Schriften \u00FCber das Web. Eine Aktualisierung auf eine aktuellere Version deines Browsers (oder dessen Wechsel) kann die Qualit\u00E4t der Inhalte auf dieser Seite verbessern.", + fonts: "MathJax kann entweder die [STIX-](%1) oder [MathJax-TeX-Schriften](%2) verwenden. Lade eine dieser Schriften herunter und installiere sie, um dein MathJax-Erlebnis zu steigern.", + STIXPage: "Diese Seite wurde konzipiert, um die [STIX-Schriften](%1) zu verwenden. Lade sie herunter und installiere sie, um dein MathJax-Erlebnis zu steigern.", + TeXPage: "Diese Seite wurde konzipiert, um die [MathJax-TeX-Schriften](%1) zu verwenden. Lade sie herunter und installiere sie, um dein MathJax-Erlebnis zu steigern." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/de/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/de/HTML-CSS.js b/modules/MathJax/unpacked/localization/de/HTML-CSS.js new file mode 100644 index 0000000..33f13ae --- /dev/null +++ b/modules/MathJax/unpacked/localization/de/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/de/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("de","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Lade Webfont %1", + CantLoadWebFont: "Webschriftart %1 konnte nicht geladen werden", + FirefoxCantLoadWebFont: "Firefox kann keine Webschriften von einem Remotehost laden", + CantFindFontUsing: "Es konnte keine g\u00FCltige Schriftart aus %1 gefunden werden", + WebFontsNotAvailable: "Webschriften sind nicht verf\u00FCgbar. Verwende stattdessen Bildschriften." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/de/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/de/HelpDialog.js b/modules/MathJax/unpacked/localization/de/HelpDialog.js new file mode 100644 index 0000000..a86eb36 --- /dev/null +++ b/modules/MathJax/unpacked/localization/de/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/de/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("de","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "MathJax Hilfe", + MathJax: "*MathJax* ist eine JavaScript-Bibliothek, die es Seitenautoren erm\u00F6glicht, mathematische Inhalte in ihre Webseiten einzubinden. Als Leser muss du nichts unternehmen, um das zu erreichen.", + Browsers: "*Browser*: MathJax funktioniert mit allen modernen Browsern inklusive Internet Explorer 6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ und den meisten mobilen Browsern.", + Menu: "*Men\u00FC*: MathJax f\u00FCgt bei Gleichungen ein Kontextmen\u00FC hinzu. Um das Men\u00FC anzuzeigen, klicke mit der rechten Maustaste oder halte beim Klicken die Strg-Taste gedr\u00FCckt.", + ShowMath: "*Inhalt zeigen als* erlaubt dir, das Formelquellenmarkup f\u00FCr Kopieren \u0026 Einf\u00FCgen anzusehen (als MathML oder im Originalformat).", + Settings: "*Einstellungen* gibt dir die Kontrolle \u00FCber MathJax-Funktionen, wie die Inhaltsgr\u00F6\u00DFe und den verwendeten Mechanismus zum Anzeigen von Gleichungen.", + Language: "*Sprache* l\u00E4sst dir die Sprache ausw\u00E4hlen, die von MathJax f\u00FCr die Men\u00FCs und Warnmeldungen verwendet wird.", + Zoom: "*Zoom*: Wenn du beim Lesen einer Gleichung Schwierigkeiten hast, kann MathJax sie vergr\u00F6\u00DFern, damit du sie besser sehen kannst.", + Accessibilty: "*Barrierefreiheit*: MathJax funktioniert automatisch mit Screenreadern, um die Inhalte f\u00FCr Sehbehinderte verf\u00FCgbar zu machen.", + Fonts: "*Schriftarten*: MathJax verwendet bestimmte Schriften, wenn sie auf deinem Computer installiert sind. Anderenfalls werden webbasierte Schriften verwendet. Obwohl das nicht erforderlich ist, beschleunigen lokal installierte Schriften die Schriftsetzung. Wir empfehlen die Installation der [STIX-Schriften](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/de/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/de/MathML.js b/modules/MathJax/unpacked/localization/de/MathML.js new file mode 100644 index 0000000..36b732b --- /dev/null +++ b/modules/MathJax/unpacked/localization/de/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/de/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("de","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "Schlechter mglyph: %1", + BadMglyphFont: "Ung\u00FCltige Schriftart: %1", + MathPlayer: "MathJax konnte MathPlayer nicht einrichten.\n\nFalls MathPlayer nicht installiert ist, musst du ihn zuerst installieren.\nAnderenfalls verhindern deine Sicherheitseinstellungen, dass\nActiveX-Steuerelemente ausgef\u00FChrt werden k\u00F6nnen. Verwende die\nInternetoptionen unter dem Werkzeugmen\u00FC und w\u00E4hle die Registerkarte\n\u201ESicherheit\u201C. Klicke dann auf \u201EStufe anpassen\u201C. \u00DCberpr\u00FCfe, ob die\nEinstellungen f\u00FCr \u201EActiveX-Steuerelemente ausf\u00FChren\u201C und \u201EBin\u00E4r- und\nSkriptverhalten\u201C aktiviert sind.\n\nDerzeit wirst du Fehlermeldungen sehen anstatt gesetzte Inhalte.", + CantCreateXMLParser: "MathJax konnte keinen XML-Parser f\u00FCr MathML erstellen.\n\u00DCberpr\u00FCfe, ob die Sicherheitseinstellung\n\u201EActiveX-Steuerelemente ausf\u00FChren, die f\u00FCr Skripting\nsicher sind\u201C aktiviert ist (verwende zur \u00DCberpr\u00FCfung\ndie Internetoptionen im Werkzeugmen\u00FC, w\u00E4hle die\nRegisterkarte \u201ESicherheit\u201C und klicke auf \u201EStufe\nanpassen\u201C).\n\nMathML-Gleichungen k\u00F6nnen von MathJax nicht\nverarbeitet werden.", + UnknownNodeType: "Unbekannter Knotentyp: %1", + UnexpectedTextNode: "Unerwarteter Textknoten: %1", + ErrorParsingMathML: "Fehler beim Parsen von MathML", + ParsingError: "Fehler beim Parsen von MathML: %1", + MathMLSingleElement: "MathML muss von einem einzelnen Element gebildet werden", + MathMLRootElement: "MathML muss von einem \u003Cmath\u003E-Element gebildet werden, nicht %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/de/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/de/MathMenu.js b/modules/MathJax/unpacked/localization/de/MathMenu.js new file mode 100644 index 0000000..88b0ab1 --- /dev/null +++ b/modules/MathJax/unpacked/localization/de/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/de/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("de","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Zeige Mathe als", + MathMLcode: "MathML-Code", + OriginalMathML: "Original-MathML", + TeXCommands: "TeX-Befehle", + AsciiMathInput: "AsciiMathML-Eingabe", + Original: "Originalformel", + ErrorMessage: "Fehlermeldung", + Annotation: "Anmerkung", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "Content MathML", + OpenMath: "OpenMath", + texHints: "TeX-Hinweise in MathML anzeigen", + Settings: "Math-Einstellungen", + ZoomTrigger: "Zoomausl\u00F6ser", + Hover: "\u00DCberfahren", + Click: "Klick", + DoubleClick: "Doppelklick", + NoZoom: "Kein Zoom", + TriggerRequires: "Ausl\u00F6ser ben\u00F6tigt:", + Option: "Option", + Alt: "Alt", + Command: "\u2318", + Control: "Strg", + Shift: "Umschalt", + ZoomFactor: "Vergr\u00F6\u00DFerungsfaktor", + Renderer: "Math-Renderer", + MPHandles: "MathPlayer darf verwalten:", + MenuEvents: "Men\u00FCereignisse", + MouseEvents: "Mausereignisse", + MenuAndMouse: "Maus- und Men\u00FCereignisse", + FontPrefs: "Schrifteinstellungen", + ForHTMLCSS: "F\u00FCr HTML-CSS:", + Auto: "Automatisch", + TeXLocal: "TeX (Lokal)", + TeXWeb: "TeX (Web)", + TeXImage: "TeX (Bild)", + STIXLocal: "STIX (Lokal)", + ContextMenu: "Kontextmen\u00FC", + Browser: "Browser", + Scale: "Alle Inhalte skalieren \u2026", + Discoverable: "Beim \u00DCberfahren hervorheben", + Locale: "Sprache", + LoadLocale: "Lade von URL \u2026", + About: "\u00DCber MathJax", + Help: "MathJax-Hilfe", + localTeXfonts: "Lokale TeX-Schriften verwenden", + webTeXfonts: "Web-TeX-Schriftart verwenden", + imagefonts: "Bildschriften verwenden", + localSTIXfonts: "Lokale STIX-Schriften verwenden", + webSVGfonts: "Web-SVG-Schriften verwenden", + genericfonts: "Allgemeine Unicode-Schriften verwenden", + wofforotffonts: "WOFF- oder OTF-Schriften", + eotffonts: "EOT-Schriften", + svgfonts: "SVG-Schriften", + WebkitNativeMMLWarning: "Dein Browser scheint kein natives MathML zu unterst\u00FCtzen. Ein Wechsel auf MathML-Ausgabe kann dazu f\u00FChren, dass die Inhalte auf der Seite unlesbar werden.", + MSIENativeMMLWarning: "Um die MathML-Ausgabe verarbeiten zu k\u00F6nnen, ben\u00F6tigt der Internet Explorer das MathPlayer-Plugin.", + OperaNativeMMLWarning: "Die Unterst\u00FCtzung f\u00FCr MathML bei Opera ist beschr\u00E4nkt. Deshalb kann ein Wechsel auf MathML-Ausgabe verursachen, dass einige Ausdr\u00FCcke nur schlecht gerendert werden k\u00F6nnen.", + SafariNativeMMLWarning: "Das native MathML deines Browsers implementiert nicht alle Funktionen, die von MathJax verwendet werden. Deshalb k\u00F6nnen einige Ausdr\u00FCcke nicht richtig gerendert werden.", + FirefoxNativeMMLWarning: "Das native MathML deines Browsers implementiert nicht alle Funktionen, die von MathJax verwendet werden. Deshalb k\u00F6nnen einige Ausdr\u00FCcke nicht richtig gerendert werden.", + MSIESVGWarning: "SVG ist nicht implementiert in Internet Explorer \u00E4lter als IE9 oder wenn IE8 und niedriger emuliert werden. Der Wechsel auf SVG-Ausgabe hat zur Folge, dass die Inhalte nicht richtig dargestellt werden.", + LoadURL: "\u00DCbersetzungsdaten von dieser URL laden:", + BadURL: "Die URL sollte f\u00FCr eine JavaScript-Datei sein, die MathJax-\u00DCbersetzungsdaten definiert. JavaScript-Dateinamen sollten enden mit \u201E.js\u201C.", + BadData: "\u00DCbersetzungsdaten konnten nicht von %1 geladen werden", + SwitchAnyway: "Renderer wechseln?\n\n(OK w\u00E4hlen zum Wechseln, ABBRECHEN zum Fortfahren mit dem aktuellen Renderer)", + ScaleMath: "Alle Inhalte skalieren (verglichen mit dem umflie\u00DFenden Text) um", + NonZeroScale: "Der Wert sollte nicht null sein", + PercentScale: "Der Wert sollte ein Prozentsatz sein (z.\u0026nbsp;B. 120%%)", + IE8warning: "Dies deaktiviert das MathJax-Men\u00FC und die Zoomfunktionen, aber du kannst bei einem Ausdruck w\u00E4hrend des Mausklicks die Alt-Taste gedr\u00FCckt halten, um stattdessen das MathJax-Men\u00FC zu erhalten.\n\nMathPlayer-Einstellungen wirklich \u00E4ndern?", + IE9warning: "Das MathJax-Kontextmen\u00FC wird deaktiviert, aber du kannst bei einem Ausdruck w\u00E4hrend des Mausklicks die Alt-Taste gedr\u00FCckt halten, um stattdessen das MathJax-Men\u00FC zu erhalten.", + NoOriginalForm: "Keine Originalformel verf\u00FCgbar", + Close: "Schlie\u00DFen", + EqSource: "MathJax-Gleichungsquelle" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/de/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/de/TeX.js b/modules/MathJax/unpacked/localization/de/TeX.js new file mode 100644 index 0000000..8796dae --- /dev/null +++ b/modules/MathJax/unpacked/localization/de/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/de/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("de","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Zus\u00E4tzliche \u00F6ffnende oder fehlende schlie\u00DFende Klammer", + ExtraCloseMissingOpen: "Zus\u00E4tzliche schlie\u00DFende oder fehlende \u00F6ffnende Klammer", + MissingLeftExtraRight: "Fehlendes '\\left' oder zus\u00E4tzliches '\\right'", + MissingScript: "Fehlendes Argument im Sub- oder Superskript", + ExtraLeftMissingRight: "Zus\u00E4tzliches '\\left' oder fehlendes '\\right'", + Misplaced: "%1 falsch plaziert", + MissingOpenForSub: "Fehlende \u00F6ffnende Klammer im Subskript", + MissingOpenForSup: "Fehlende \u00F6ffnende Klammer im Superskript", + AmbiguousUseOf: "Mehrdeutige Verwendung von %1", + EnvBadEnd: "\\begin{%1} endet mit \\end{%2}", + EnvMissingEnd: "\\end{%1} fehlt", + MissingBoxFor: "Fehlende Box: %1", + MissingCloseBrace: "Fehlende schlie\u00DFende Klammer", + UndefinedControlSequence: "Nicht definierter Befehl: %1", + DoubleExponent: "Doppeltes Superskript: verwende Klammern zum Gruppieren", + DoubleSubscripts: "Doppeltes Subskript: verwende Klammern zum Gruppieren", + DoubleExponentPrime: "Prime f\u00FChrt zu doppeltem Superskript: verwende Klammern zum Gruppieren", + CantUseHash1: "Das Zeichen '#' ist ein Makroparameter und kann nicht im Mathematikmodus verwendet werden.", + MisplacedMiddle: "%1 muss zwischen '\\left' und '\\right' stehen", + MisplacedLimits: "%1 ist nur bei Operatoren erlaubt", + MisplacedMoveRoot: "%1 muss innerhalb einer Wurzel stehen", + MultipleCommand: "Zu viele %1", + IntegerArg: "Das Argument in %1 muss ganzzahlig sein", + NotMathMLToken: "%1 ist kein Token-Element", + InvalidMathMLAttr: "Unzul\u00E4ssiges MathML-Attribut: %1", + UnknownAttrForElement: "%1 ist kein zul\u00E4ssiges Attribut f\u00FCr %2", + MaxMacroSub1: "Maximale Anzahl an Makros ist erreicht; wird ein rekursiver Makroaufruf verwendet?", + MaxMacroSub2: "Maximale Anzahl an Substitutionen ist erreicht; wird eine rekursive LaTeX-Umgebung verwendet?", + MissingArgFor: "Fehlendes Argument in %1", + ExtraAlignTab: "Zus\u00E4tzliches \u0026 im '\\cases' Text", + BracketMustBeDimension: "Das geklammerte Argument f\u00FCr %1 muss eine Dimension sein", + InvalidEnv: "Ung\u00FCltiger Umgebungsname %1", + UnknownEnv: "Ung\u00FCltige Umgebung %1", + ExtraCloseLooking: "Zus\u00E4tzliche schlie\u00DFende Klammer w\u00E4hrend der Suche nach %1", + MissingCloseBracket: "Argument zu %1 wurde nicht mit ']' geschlossen", + MissingOrUnrecognizedDelim: "Fehlender oder nichterkannter Delimiter bei %1", + MissingDimOrUnits: "Fehlende Dimension oder Einheiten bei %1", + TokenNotFoundForCommand: "Konnte %1 nicht f\u00FCr %2 finden", + MathNotTerminated: "Formel in Textbox nicht abgeschlossen", + IllegalMacroParam: "Ung\u00FCltiger Makroparameter", + MaxBufferSize: "Interne Puffergr\u00F6\u00DFe \u00FCberschritten; wird ein rekursiver Makroaufruf verwendet?", + CommandNotAllowedInEnv: "%1 ist in der Umgebung %2 nicht erlaubt", + MultipleLabel: "Label '%1' \u00FCberdefiniert", + CommandAtTheBeginingOfLine: "%1 muss am Zeilenanfang stehen", + IllegalAlign: "Ung\u00FCltige Ausrichtung in %1", + BadMathStyleFor: "Schlechtes 'math style' Argument: %1", + PositiveIntegerArg: "Argument bei %1 muss positiv und ganzzahlig sein", + ErroneousNestingEq: "Fehlerhafte Verschachtelung von Gleichungen", + MultlineRowsOneCol: "Zeilen in der %1-Umgebung m\u00FCssen genau eine Spalte haben", + MultipleBBoxProperty: "%1 wurde zweimal in %2 angegeben", + InvalidBBoxProperty: "'%1' scheint keine Farbe, Padding-Dimension oder Stil zu sein", + ExtraEndMissingBegin: "Zus\u00E4tzliches %1 oder fehlendes \\begingroup", + GlobalNotFollowedBy: "'%1' nicht von '\\let', '\\def' oder '\\newcommand' gefolgt", + UndefinedColorModel: "Farbmodell '%1' nicht definiert", + ModelArg1: "Farbwerte f\u00FCr Farbmodell '%1' ben\u00F6tigen 3 Werte", + InvalidDecimalNumber: "Ung\u00FCltige Dezimalzahl", + ModelArg2: "Farbwerte f\u00FCr Farbmodell '%1' m\u00FCssen zwischen %2 und %3 liegen", + InvalidNumber: "Ung\u00FCltige Zahl", + NewextarrowArg1: "Das erste Argument von %1 muss Name einer Befehlsfolge sein", + NewextarrowArg2: "Zweites Argument von %1 m\u00FCssen zwei ganze Zahlen sein, durch Komma getrennt", + NewextarrowArg3: "Drittes argument von %1 m\u00FCssen Unicode-Nummern sein", + NoClosingChar: "Kann schlie\u00DFende %1 nicht finden", + IllegalControlSequenceName: "Ung\u00FCltige Befehlsfolge f\u00FCr %1", + IllegalParamNumber: "Ung\u00FCltige Anzahl von Parametern in %1", + MissingCS: "%1 muss von Befehlsfolge gefolgt werden", + CantUseHash2: "Ung\u00FCltige Verwendung von # im Template von %1", + SequentialParam: "Parameter von %1 m\u00FCssen durch nummeriert sein", + MissingReplacementString: "Ersetzende Zeichenkette f\u00FCr Definition von %1 fehlt", + MismatchUseDef: "Verwendung von %1 passt nicht zur Definition", + RunawayArgument: "Nichtgeschlossenes Argument f\u00FCr %1?", + NoClosingDelim: "Kein schliessender Delimiter f\u00FCr %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/de/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/de/de.js b/modules/MathJax/unpacked/localization/de/de.js new file mode 100644 index 0000000..11b1fd5 --- /dev/null +++ b/modules/MathJax/unpacked/localization/de/de.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/de/de.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("de",null,{ + menuTitle: "Deutsch", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax hat eine Cookie mit ausf\u00FChrbaren Code gefunden. Soll dieser Code ausgef\u00FChrt werden?\n\n(Klicken Sie 'Abbrechen' falls Sie das Cookie nicht selber akzeptiert haben.)", + MathProcessingError: "Mathe Verarbeitungsfehler", + MathError: "Mathe Fehler", + LoadFile: "Lade %1", + Loading: "Laden", + LoadFailed: "Datei konnte nicht geladen werden: %1", + ProcessMath: "Mathe verarbeiten: %1%%", + Processing: "Verarbeiten", + TypesetMath: "Mathe wird gesetzt: %1%%", + Typesetting: "Setzen", + MathJaxNotSupported: "Ihr Webbrowser unterst\u00FCtzt MathJax nicht" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) {return 1} // one + return 2; // other + }, + number: function (n) { + return String(n).replace(".", ","); // replace dot by comma + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/de/de.js"); diff --git a/modules/MathJax/unpacked/localization/en/FontWarnings.js b/modules/MathJax/unpacked/localization/en/FontWarnings.js new file mode 100644 index 0000000..d3ab867 --- /dev/null +++ b/modules/MathJax/unpacked/localization/en/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/en/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("en","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax is using web-based fonts to display the mathematics on this page. These take time to download, so the page would render faster if you installed math fonts directly in your system's font folder.", + imageFonts: "MathJax is using its image fonts rather than local or web-based fonts. This will render slower than usual, and the mathematics may not print at the full resolution of your printer.", + noFonts: "MathJax is unable to locate a font to use to display its mathematics, and image fonts are not available, so it is falling back on generic unicode characters in hopes that your browser will be able to display them. Some characters may not show up properly, or possibly not at all.", + webFonts: "Most modern browsers allow for fonts to be downloaded over the web. Updating to a more recent version of your browser (or changing browsers) could improve the quality of the mathematics on this page.", + fonts: "MathJax can use either the [STIX fonts](%1) or the [MathJax TeX fonts](%2). Download and install one of those fonts to improve your MathJax experience.", + STIXPage: "This page is designed to use the [STIX fonts](%1). Download and install those fonts to improve your MathJax experience.", + TeXPage: "This page is designed to use the [MathJax TeX fonts](%1). Download and install those fonts to improve your MathJax experience." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/en/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/en/HTML-CSS.js b/modules/MathJax/unpacked/localization/en/HTML-CSS.js new file mode 100644 index 0000000..579226b --- /dev/null +++ b/modules/MathJax/unpacked/localization/en/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/en/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("en","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Loading web-font %1", + CantLoadWebFont: "Can't load web font %1", + FirefoxCantLoadWebFont: "Firefox can't load web fonts from a remote host", + CantFindFontUsing: "Can't find a valid font using %1", + WebFontsNotAvailable: "Web-Fonts not available -- using image fonts instead" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/en/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/en/HelpDialog.js b/modules/MathJax/unpacked/localization/en/HelpDialog.js new file mode 100644 index 0000000..1cc4a49 --- /dev/null +++ b/modules/MathJax/unpacked/localization/en/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/en/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("en","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "MathJax Help", + MathJax: "*MathJax* is a JavaScript library that allows page authors to include mathematics within their web pages. As a reader, you don't need to do anything to make that happen.", + Browsers: "*Browsers*: MathJax works with all modern browsers including IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ and most mobile browsers.", + Menu: "*Math Menu*: MathJax adds a contextual menu to equations. Right-click or CTRL-click on any mathematics to access the menu.", + ShowMath: "*Show Math As* allows you to view the formula's source markup for copy \u0026 paste (as MathML or in its original format).", + Settings: "*Settings* gives you control over features of MathJax, such as the size of the mathematics, and the mechanism used to display equations.", + Language: "*Language* lets you select the language used by MathJax for its menus and warning messages.", + Zoom: "*Math Zoom*: If you are having difficulty reading an equation, MathJax can enlarge it to help you see it better.", + Accessibilty: "*Accessibility*: MathJax will automatically work with screen readers to make mathematics accessible to the visually impaired.", + Fonts: "*Fonts*: MathJax will use certain math fonts if they are installed on your computer; otherwise, it will use web-based fonts. Although not required, locally installed fonts will speed up typesetting. We suggest installing the [STIX fonts](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/en/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/en/MathML.js b/modules/MathJax/unpacked/localization/en/MathML.js new file mode 100644 index 0000000..82c9d83 --- /dev/null +++ b/modules/MathJax/unpacked/localization/en/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/en/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("en","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "Bad mglyph: %1", + BadMglyphFont: "Bad font: %1", + MathPlayer: "MathJax was not able to set up MathPlayer.\n\nIf MathPlayer is not installed, you need to install it first.\nOtherwise, your security settings may be preventing ActiveX \ncontrols from running. Use the Internet Options item under\nthe Tools menu and select the Security tab, then press the\nCustom Level button. Check that the settings for\n'Run ActiveX Controls', and 'Binary and script behaviors'\nare enabled.\n\nCurrently you will see error messages rather than\ntypeset mathematics.", + CantCreateXMLParser: "MathJax can't create an XML parser for MathML. Check that\nthe 'Script ActiveX controls marked safe for scripting' security\nsetting is enabled (use the Internet Options item in the Tools\nmenu, and select the Security panel, then press the Custom Level\nbutton to check this).\n\nMathML equations will not be able to be processed by MathJax.", + UnknownNodeType: "Unknown node type: %1", + UnexpectedTextNode: "Unexpected text node: %1", + ErrorParsingMathML: "Error parsing MathML", + ParsingError: "Error parsing MathML: %1", + MathMLSingleElement: "MathML must be formed by a single element", + MathMLRootElement: "MathML must be formed by a \u003Cmath\u003E element, not %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/en/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/en/MathMenu.js b/modules/MathJax/unpacked/localization/en/MathMenu.js new file mode 100644 index 0000000..1faaccb --- /dev/null +++ b/modules/MathJax/unpacked/localization/en/MathMenu.js @@ -0,0 +1,111 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/en/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("en","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Show Math As", + MathMLcode: "MathML Code", + OriginalMathML: "Original MathML", + TeXCommands: "TeX Commands", + AsciiMathInput: "AsciiMathML input", + Original: "Original Form", + ErrorMessage: "Error Message", + Annotation: "Annotation", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "Content MathML", + OpenMath: "OpenMath", + texHints: "Show TeX hints in MathML", + Settings: "Math Settings", + ZoomTrigger: "Zoom Trigger", + Hover: "Hover", + Click: "Click", + DoubleClick: "Double-Click", + NoZoom: "No Zoom", + TriggerRequires: "Trigger Requires:", + Option: "Option", + Alt: "Alt", + Command: "Command", + Control: "Control", + Shift: "Shift", + ZoomFactor: "Zoom Factor", + Renderer: "Math Renderer", + MPHandles: "Let MathPlayer Handle:", + MenuEvents: "Menu Events", + MouseEvents: "Mouse Events", + MenuAndMouse: "Mouse and Menu Events", + FontPrefs: "Font Preferences", + ForHTMLCSS: "For HTML-CSS:", + Auto: "Auto", + TeXLocal: "TeX (local)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (image)", + STIXLocal: "STIX (local)", + STIXWeb: "STIX (web)", + AsanaMathWeb: "Asana Math (web)", + GyrePagellaWeb: "Gyre Pagella (web)", + GyreTermesWeb: "Gyre Termes (web)", + LatinModernWeb: "Latin Modern (web)", + NeoEulerWeb: "Neo Euler (web)", + ContextMenu: "Contextual Menu", + Browser: "Browser", + Scale: "Scale All Math ...", + Discoverable: "Highlight on Hover", + Locale: "Language", + LoadLocale: "Load from URL ...", + About: "About MathJax", + Help: "MathJax Help", + localTeXfonts: "using local TeX fonts", + webTeXfonts: "using web TeX font", + imagefonts: "using Image fonts", + localSTIXfonts: "using local STIX fonts", + webSVGfonts: "using web SVG fonts", + genericfonts: "using generic unicode fonts", + wofforotffonts: "woff or otf fonts", + eotffonts: "eot fonts", + svgfonts: "svg fonts", + WebkitNativeMMLWarning: "Your browser doesn't seem to support MathML natively, so switching to MathML output may cause the mathematics on the page to become unreadable.", + MSIENativeMMLWarning: "Internet Explorer requires the MathPlayer plugin in order to process MathML output.", + OperaNativeMMLWarning: "Opera's support for MathML is limited, so switching to MathML output may cause some expressions to render poorly.", + SafariNativeMMLWarning: "Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly.", + FirefoxNativeMMLWarning: "Your browser's native MathML does not implement all the features used by MathJax, so some expressions may not render properly.", + MSIESVGWarning: "SVG is not implemented in Internet Explorer prior to IE9 or when it is emulating IE8 or below. Switching to SVG output will cause the mathematics to not display properly.", + LoadURL: "Load translation data from this URL:", + BadURL: "The URL should be for a javascript file that defines MathJax translation data. Javascript file names should end with '.js'", + BadData: "Failed to load translation data from %1", + SwitchAnyway: "Switch the renderer anyway?\n\n(Press OK to switch, CANCEL to continue with the current renderer)", + ScaleMath: "Scale all mathematics (compared to surrounding text) by", + NonZeroScale: "The scale should not be zero", + PercentScale: "The scale should be a percentage (e.g., 120%%)", + IE8warning: "This will disable the MathJax menu and zoom features, but you can Alt-Click on an expression to obtain the MathJax menu instead.\n\nReally change the MathPlayer settings?", + IE9warning: "The MathJax contextual menu will be disabled, but you can Alt-Click on an expression to obtain the MathJax menu instead.", + NoOriginalForm: "No original form available", + Close: "Close", + EqSource: "MathJax Equation Source" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/en/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/en/TeX.js b/modules/MathJax/unpacked/localization/en/TeX.js new file mode 100644 index 0000000..b812844 --- /dev/null +++ b/modules/MathJax/unpacked/localization/en/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/en/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("en","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Extra open brace or missing close brace", + ExtraCloseMissingOpen: "Extra close brace or missing open brace", + MissingLeftExtraRight: "Missing \\left or extra \\right", + MissingScript: "Missing superscript or subscript argument", + ExtraLeftMissingRight: "Extra \\left or missing \\right", + Misplaced: "Misplaced %1", + MissingOpenForSub: "Missing open brace for subscript", + MissingOpenForSup: "Missing open brace for superscript", + AmbiguousUseOf: "Ambiguous use of %1", + EnvBadEnd: "\\begin{%1} ended with \\end{%2}", + EnvMissingEnd: "Missing \\end{%1}", + MissingBoxFor: "Missing box for %1", + MissingCloseBrace: "Missing close brace", + UndefinedControlSequence: "Undefined control sequence %1", + DoubleExponent: "Double exponent: use braces to clarify", + DoubleSubscripts: "Double subscripts: use braces to clarify", + DoubleExponentPrime: "Prime causes double exponent: use braces to clarify", + CantUseHash1: "You can't use 'macro parameter character #' in math mode", + MisplacedMiddle: "%1 must be within \\left and \\right", + MisplacedLimits: "%1 is allowed only on operators", + MisplacedMoveRoot: "%1 can appear only within a root", + MultipleCommand: "Multiple %1", + IntegerArg: "The argument to %1 must be an integer", + NotMathMLToken: "%1 is not a token element", + InvalidMathMLAttr: "Invalid MathML attribute: %1", + UnknownAttrForElement: "%1 is not a recognized attribute for %2", + MaxMacroSub1: "MathJax maximum macro substitution count exceeded; is there a recursive macro call?", + MaxMacroSub2: "MathJax maximum substitution count exceeded; is there a recursive latex environment?", + MissingArgFor: "Missing argument for %1", + ExtraAlignTab: "Extra alignment tab in \\cases text", + BracketMustBeDimension: "Bracket argument to %1 must be a dimension", + InvalidEnv: "Invalid environment name '%1'", + UnknownEnv: "Unknown environment '%1'", + ExtraCloseLooking: "Extra close brace while looking for %1", + MissingCloseBracket: "Couldn't find closing ']' for argument to %1", + MissingOrUnrecognizedDelim: "Missing or unrecognized delimiter for %1", + MissingDimOrUnits: "Missing dimension or its units for %1", + TokenNotFoundForCommand: "Couldn't find %1 for %2", + MathNotTerminated: "Math not terminated in text box", + IllegalMacroParam: "Illegal macro parameter reference", + MaxBufferSize: "MathJax internal buffer size exceeded; is there a recursive macro call?", + CommandNotAllowedInEnv: "%1 not allowed in %2 environment", + MultipleLabel: "Label '%1' multiply defined", + CommandAtTheBeginingOfLine: "%1 must come at the beginning of the line", + IllegalAlign: "Illegal alignment specified in %1", + BadMathStyleFor: "Bad math style for %1", + PositiveIntegerArg: "Argument to %1 must be a positive integer", + ErroneousNestingEq: "Erroneous nesting of equation structures", + MultlineRowsOneCol: "The rows within the %1 environment must have exactly one column", + MultipleBBoxProperty: "%1 specified twice in %2", + InvalidBBoxProperty: "'%1' doesn't look like a color, a padding dimension, or a style", + ExtraEndMissingBegin: "Extra %1 or missing \\begingroup", + GlobalNotFollowedBy: "%1 not followed by \\let, \\def, or \\newcommand", + UndefinedColorModel: "Color model '%1' not defined", + ModelArg1: "Color values for the %1 model require 3 numbers", + InvalidDecimalNumber: "Invalid decimal number", + ModelArg2: "Color values for the %1 model must be between %2 and %3", + InvalidNumber: "Invalid number", + NewextarrowArg1: "First argument to %1 must be a control sequence name", + NewextarrowArg2: "Second argument to %1 must be two integers separated by a comma", + NewextarrowArg3: "Third argument to %1 must be a unicode character number", + NoClosingChar: "Can't find closing %1", + IllegalControlSequenceName: "Illegal control sequence name for %1", + IllegalParamNumber: "Illegal number of parameters specified in %1", + MissingCS: "%1 must be followed by a control sequence", + CantUseHash2: "Illegal use of # in template for %1", + SequentialParam: "Parameters for %1 must be numbered sequentially", + MissingReplacementString: "Missing replacement string for definition of %1", + MismatchUseDef: "Use of %1 doesn't match its definition", + RunawayArgument: "Runaway argument for %1?", + NoClosingDelim: "Can't find closing delimiter for %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/en/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/en/en.js b/modules/MathJax/unpacked/localization/en/en.js new file mode 100644 index 0000000..5bb1cbc --- /dev/null +++ b/modules/MathJax/unpacked/localization/en/en.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/en/en.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("en",null,{ + menuTitle: "English", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax has found a user-configuration cookie that includes code to be run. Do you want to run it?\n\n(You should press Cancel unless you set up the cookie yourself.)", + MathProcessingError: "Math Processing Error", + MathError: "Math Error", + LoadFile: "Loading %1", + Loading: "Loading", + LoadFailed: "File failed to load: %1", + ProcessMath: "Processing Math: %1%%", + Processing: "Processing", + TypesetMath: "Typesetting Math: %1%%", + Typesetting: "Typesetting", + MathJaxNotSupported: "Your browser does not support MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) {return 1} // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/en/en.js"); diff --git a/modules/MathJax/unpacked/localization/eo/FontWarnings.js b/modules/MathJax/unpacked/localization/eo/FontWarnings.js new file mode 100644 index 0000000..0311e5e --- /dev/null +++ b/modules/MathJax/unpacked/localization/eo/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/eo/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("eo","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/eo/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/eo/HTML-CSS.js b/modules/MathJax/unpacked/localization/eo/HTML-CSS.js new file mode 100644 index 0000000..dfaa294 --- /dev/null +++ b/modules/MathJax/unpacked/localization/eo/HTML-CSS.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/eo/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("eo","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/eo/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/eo/HelpDialog.js b/modules/MathJax/unpacked/localization/eo/HelpDialog.js new file mode 100644 index 0000000..26c0b6a --- /dev/null +++ b/modules/MathJax/unpacked/localization/eo/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/eo/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("eo","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/eo/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/eo/MathML.js b/modules/MathJax/unpacked/localization/eo/MathML.js new file mode 100644 index 0000000..97bf940 --- /dev/null +++ b/modules/MathJax/unpacked/localization/eo/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/eo/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("eo","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/eo/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/eo/MathMenu.js b/modules/MathJax/unpacked/localization/eo/MathMenu.js new file mode 100644 index 0000000..7146c84 --- /dev/null +++ b/modules/MathJax/unpacked/localization/eo/MathMenu.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/eo/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("eo","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/eo/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/eo/TeX.js b/modules/MathJax/unpacked/localization/eo/TeX.js new file mode 100644 index 0000000..651bf29 --- /dev/null +++ b/modules/MathJax/unpacked/localization/eo/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/eo/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("eo","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/eo/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/eo/eo.js b/modules/MathJax/unpacked/localization/eo/eo.js new file mode 100644 index 0000000..e26b72d --- /dev/null +++ b/modules/MathJax/unpacked/localization/eo/eo.js @@ -0,0 +1,58 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/eo/eo.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("eo",null,{ + menuTitle: "Esperanto", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + Loading: "\u015Cargado", + LoadFailed: "\u015Cargado de dosiero malsukcesis: %1", + ProcessMath: "Prilaborado de formulo: %1 %%", + Processing: "Prilaborado", + TypesetMath: "Kompostado de formulo: %1 %%", + Typesetting: "Kompostado", + MathJaxNotSupported: "Via krozilo ne subtenas Mathjax." + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) return 1; // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/eo/eo.js"); diff --git a/modules/MathJax/unpacked/localization/es/FontWarnings.js b/modules/MathJax/unpacked/localization/es/FontWarnings.js new file mode 100644 index 0000000..f187725 --- /dev/null +++ b/modules/MathJax/unpacked/localization/es/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/es/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("es","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/es/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/es/HTML-CSS.js b/modules/MathJax/unpacked/localization/es/HTML-CSS.js new file mode 100644 index 0000000..e68c34c --- /dev/null +++ b/modules/MathJax/unpacked/localization/es/HTML-CSS.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/es/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("es","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/es/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/es/HelpDialog.js b/modules/MathJax/unpacked/localization/es/HelpDialog.js new file mode 100644 index 0000000..7356f21 --- /dev/null +++ b/modules/MathJax/unpacked/localization/es/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/es/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("es","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/es/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/es/MathML.js b/modules/MathJax/unpacked/localization/es/MathML.js new file mode 100644 index 0000000..b3b51b8 --- /dev/null +++ b/modules/MathJax/unpacked/localization/es/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/es/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("es","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/es/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/es/MathMenu.js b/modules/MathJax/unpacked/localization/es/MathMenu.js new file mode 100644 index 0000000..4518335 --- /dev/null +++ b/modules/MathJax/unpacked/localization/es/MathMenu.js @@ -0,0 +1,67 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/es/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("es","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + MathMLcode: "C\u00F3digo de MathML", + OriginalMathML: "MathML original", + TeXCommands: "\u00D3rdenes de TeX", + Original: "Forma original", + ErrorMessage: "Mensaje de Error", + Annotation: "Anotaci\u00F3n", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + OpenMath: "OpenMath", + Hover: "Apuntar con el rat\u00F3n", + Click: "Pulsaci\u00F3n del rat\u00F3n", + DoubleClick: "Pulsaci\u00F3n doble del rat\u00F3n", + NoZoom: "Sin ampliaci\u00F3n", + Option: "Opci\u00F3n", + Alt: "Alt", + Command: "Comando", + Control: "Control", + Shift: "May\u00FAs", + ZoomFactor: "Factor de ampliaci\u00F3n", + Renderer: "Renderizador matem\u00E1tico", + MPHandles: "Permitir que MathPlayer gestione:", + MenuEvents: "Eventos del men\u00FA", + MouseEvents: "Eventos del rat\u00F3n", + MenuAndMouse: "Eventos del men\u00FA y del rat\u00F3n", + FontPrefs: "Preferencias tipogr\u00E1ficas", + ContextMenu: "Men\u00FA Contextual", + Browser: "Navegador", + Locale: "Idioma", + LoadLocale: "Cargar a partir de URL\u2026", + About: "Acerca de MathJax", + Help: "Ayuda de MathJax", + LoadURL: "Cargar datos de traducci\u00F3n desde esta direcci\u00F3n URL:", + BadData: "No se pudieron cargar los datos de traducci\u00F3n de %1", + Close: "Cerrar", + EqSource: "C\u00F3digo de la ecuaci\u00F3n de MathJax" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/es/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/es/TeX.js b/modules/MathJax/unpacked/localization/es/TeX.js new file mode 100644 index 0000000..a175250 --- /dev/null +++ b/modules/MathJax/unpacked/localization/es/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/es/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("es","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/es/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/es/es.js b/modules/MathJax/unpacked/localization/es/es.js new file mode 100644 index 0000000..532cbfa --- /dev/null +++ b/modules/MathJax/unpacked/localization/es/es.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/es/es.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("es",null,{ + menuTitle: "espa\u00F1ol", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + MathProcessingError: "Error de procesamiento de matem\u00E1ticas", + MathError: "Error de matem\u00E1ticas", + LoadFile: "Cargando %1", + Loading: "Cargando", + LoadFailed: "Fall\u00F3 la carga del archivo: %1", + ProcessMath: "Procesando matem\u00E1ticas: %1 %%", + Processing: "Procesando", + TypesetMath: "Composici\u00F3n tipogr\u00E1fica en curso: %1 %%", + Typesetting: "Composici\u00F3n tipogr\u00E1fica", + MathJaxNotSupported: "El navegador no admite MathJax", + CookieConfig: "MathJax ha encontrado una cookie de configuraci\u00F3n de usuario que incluye c\u00F3digo para ser ejecutado.\u00BFQuieres ejecutarlo?\n\\n\n(Pulse Cancelar al menos que configure la cookie)." + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) return 1; // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/es/es.js"); diff --git a/modules/MathJax/unpacked/localization/fa/FontWarnings.js b/modules/MathJax/unpacked/localization/fa/FontWarnings.js new file mode 100644 index 0000000..74af86b --- /dev/null +++ b/modules/MathJax/unpacked/localization/fa/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fa/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fa","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0648\u0628\u06CC \u0628\u0631\u0627\u06CC \u0646\u0645\u0627\u06CC\u0634 \u0631\u06CC\u0627\u0636\u06CC\u0627\u062A \u062F\u0631 \u0627\u06CC\u0646 \u0635\u0641\u062D\u0647 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0645\u06CC\u200C\u06A9\u0646\u062F. \u0627\u06CC\u0646 \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u0632\u0645\u0627\u0646\u06CC \u062C\u0647\u062A \u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u0628\u06AF\u06CC\u0631\u062F \u0628\u0646\u0627\u0628\u0631\u0627\u06CC\u0646 \u0627\u06AF\u0631 \u0634\u0645\u0627 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0631\u06CC\u0627\u0636\u06CC \u0631\u0627 \u0628\u0647\u200C\u0635\u0648\u0631\u062A \u0645\u0633\u062A\u0642\u06CC\u0645 \u062F\u0631 \u067E\u0648\u0634\u0647\u0654 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0633\u06CC\u0633\u062A\u0645\u200C\u0639\u0627\u0645\u0644 \u062E\u0648\u062F \u0642\u0631\u0627\u0631 \u062F\u0647\u06CC\u062F \u0646\u0645\u0627\u06CC\u0634 \u0635\u0641\u062D\u0647\u200C\u0647\u0627 \u0633\u0631\u06CC\u0639\u062A\u0631 \u062E\u0648\u0627\u0647\u0646\u062F \u0634\u062F.", + imageFonts: "MathJax \u0628\u0647 \u062C\u0627\u06CC \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0645\u062D\u0644\u06CC \u06CC\u0627 \u0648\u0628\u06CC \u0627\u0632 \u062A\u0635\u0627\u0648\u06CC\u0631 \u0642\u0644\u0645\u200C\u0647\u0627 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0645\u06CC\u200C\u06A9\u0646\u062F. \u0627\u06CC\u0646 \u0646\u0645\u0627\u06CC\u0634 \u0631\u0627 \u0627\u0632 \u062D\u0627\u0644\u062A \u0639\u0627\u062F\u06CC \u06A9\u0646\u062F\u062A\u0631 \u0645\u06CC\u200C\u06A9\u0646\u062F \u0648 \u0645\u0639\u0627\u062F\u0644\u0647\u200C\u0647\u0627\u06CC \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u062F\u0631 \u062C\u0632\u0626\u06CC\u0627\u062A \u06A9\u0627\u0645\u0644 \u0686\u0627\u067E\u06AF\u0631 \u0634\u0645\u0627 \u0686\u0627\u067E \u0646\u0634\u0648\u0646\u062F.", + noFonts: "MathJax \u0646\u062A\u0648\u0627\u0646\u0633\u062A \u0642\u0644\u0645\u06CC \u06A9\u0647 \u0628\u0631\u0627\u06CC \u0646\u0645\u0627\u06CC\u0634 \u0645\u0639\u0627\u062F\u0644\u0647\u200C\u0647\u0627 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0645\u06CC\u200C\u0634\u0648\u062F \u0631\u0627 \u0628\u06CC\u0627\u0628\u062F \u0648 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u062A\u0635\u0648\u06CC\u0631\u06CC \u0645\u0648\u062C\u0648\u062F \u0646\u06CC\u0633\u062A\u0646\u062F \u0628\u0646\u0627\u0628\u0631\u0627\u06CC\u0646 \u0628\u0647 \u0627\u06CC\u0646 \u0627\u0645\u06CC\u062F \u06A9\u0647 \u0645\u0631\u0648\u0631\u06AF\u0631 \u0634\u0645\u0627 \u0628\u062A\u0648\u0627\u0646\u062F \u0646\u0648\u06CC\u0633\u0647\u200C\u0647\u0627\u06CC \u0631\u06CC\u0627\u0636\u06CC \u0639\u0645\u0648\u0645\u06CC \u0631\u0627 \u0686\u0627\u067E \u06A9\u0646\u062F \u0628\u0647 \u0622\u0646\u200C\u0647\u0627 \u0628\u0627\u0632\u0645\u06CC\u200C\u06AF\u0631\u062F\u062F. \u0628\u0639\u0636\u06CC \u0627\u0632 \u0646\u0648\u06CC\u0633\u0647\u200C\u0647\u0627 \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u0628\u0647 \u062E\u0648\u0628\u06CC \u06CC\u0627 \u0627\u0635\u0644\u0627\u064B \u0628\u0647 \u06A9\u0644 \u0646\u0645\u0627\u06CC\u0634 \u062F\u0627\u062F\u0647 \u0646\u0634\u0648\u0646\u062F.", + webFonts: "\u0627\u06A9\u062B\u0631 \u0645\u0631\u0648\u0631\u06AF\u0631\u0647\u0627\u06CC \u0631\u0648\u0632 \u0627\u062C\u0627\u0632\u0647 \u0645\u06CC \u062F\u0647\u0646\u062F \u06A9\u0647 \u0642\u0644\u0645\u200C\u0647\u0627 \u0627\u0632 \u0637\u0631\u06CC\u0642 \u0648\u0628 \u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u0634\u0648\u0646\u062F. \u0628\u0647\u200C\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06CC\u200C\u06A9\u0631\u062F\u0646 \u0628\u0647 \u06CC\u06A9\u06CC \u0627\u0632 \u0622\u062E\u0631\u06CC\u0646 \u0646\u0633\u062E\u0647\u200C\u0647\u0627\u06CC \u0645\u0631\u0648\u0631\u06AF\u0631\u062A\u0627\u0646 (\u06CC\u0627 \u062A\u063A\u06CC\u06CC\u0631 \u0645\u0631\u0648\u0631\u06AF\u0631) \u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u062F \u06A9\u06CC\u0641\u06CC\u062A \u0645\u0639\u0627\u062F\u0644\u0647\u200C\u0647\u0627\u06CC \u0645\u0648\u062C\u0648\u062F \u062F\u0631 \u0627\u06CC\u0646 \u0635\u0641\u062D\u0647 \u0631\u0627 \u0628\u0647\u0628\u0648\u062F \u062F\u0647\u062F.", + fonts: "MathJax \u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u062F \u0627\u0632 [\u0642\u0644\u0645\u200C\u0647\u0627\u06CC STIX](%1) \u06CC\u0627 [\u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u062A\u06A9 MathJax](%2) \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u062F. \u06CC\u06A9\u06CC \u0627\u0632 \u0622\u0646\u200C\u0647\u0627 \u0631\u0627 \u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u06A9\u0646\u06CC\u062F \u06A9\u0647 \u062A\u062C\u0631\u06CC\u0647\u0654 MathJax \u0634\u0645\u0627 \u0631\u0627 \u0628\u0647\u0628\u0648\u062F \u062F\u0647\u062F.", + STIXPage: "\u0627\u06CC\u0646 \u0635\u0641\u062D\u0647 \u0637\u0631\u0627\u062D\u06CC\u200C\u0634\u062F\u0647\u200C\u0627\u0633\u062A \u06A9\u0647 \u0627\u0632 [\u0642\u0644\u0645\u200C\u0647\u0627\u06CC STIX](%1) \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u062F. \u0627\u06CC\u0646 \u0642\u0644\u0645\u200C\u0647\u0627 \u0631\u0627 \u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u0648 \u0646\u0635\u0628 \u06A9\u0646\u06CC\u062F \u06A9\u0647 \u062A\u062C\u0631\u06CC\u0647\u0654 MathJax \u0634\u0645\u0627 \u0628\u0647\u0628\u0648\u062F \u06CC\u0627\u0628\u062F.", + TeXPage: "\u0627\u06CC\u0646 \u0635\u0641\u062D\u0647 \u0637\u0631\u0627\u062D\u06CC \u0634\u062F\u0647\u200C\u0627\u0633\u062A \u06A9\u0647 \u06A9\u0647 \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC [\u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u062A\u06A9 MathJax](%1) \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u062F. \u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u0648 \u0646\u0635\u0628 \u0627\u06CC\u0646 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u062A\u062C\u0631\u06CC\u0647\u0654 MathJax \u0634\u0645\u0627 \u0631\u0627 \u0628\u0647\u0628\u0648\u062F \u0645\u06CC\u200C\u0628\u062E\u0634\u062F." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fa/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/fa/HTML-CSS.js b/modules/MathJax/unpacked/localization/fa/HTML-CSS.js new file mode 100644 index 0000000..29015a2 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fa/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fa/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fa","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "\u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u0642\u0644\u0645 \u0648\u0628\u06CC %1", + CantLoadWebFont: "\u0646\u0645\u06CC\u200C\u062A\u0648\u0627\u0646 \u0642\u0644\u0645 \u0648\u0628\u06CC %1 \u0631\u0627 \u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u06A9\u0631\u062F", + FirefoxCantLoadWebFont: "\u0641\u0627\u06CC\u0631\u0641\u0627\u06A9\u0633 \u0646\u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u062F \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0648\u0628\u06CC \u0631\u0627 \u0627\u0632 \u06CC\u06A9 \u0645\u06CC\u0632\u0627\u0646 \u0627\u0632 \u0631\u0627\u0647 \u062F\u0648\u0631 \u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u06A9\u0646\u062F", + CantFindFontUsing: "\u0646\u0645\u06CC\u200C\u062A\u0648\u0627\u0646 \u06CC\u06A9 \u0642\u0644\u0645 \u0645\u0639\u062A\u0628\u0631 \u0628\u0627\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 %1 \u06CC\u0627\u0641\u062A", + WebFontsNotAvailable: "\u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0648\u0628\u06CC \u0646\u0627\u0645\u0648\u062C\u0648\u062F\u0646\u062F -- \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u062A\u0635\u0648\u06CC\u0631\u06CC \u0628\u0647 \u062C\u0627\u06CC \u0622\u0646" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fa/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/fa/HelpDialog.js b/modules/MathJax/unpacked/localization/fa/HelpDialog.js new file mode 100644 index 0000000..bf9f88e --- /dev/null +++ b/modules/MathJax/unpacked/localization/fa/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fa/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fa","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "\u0631\u0627\u0647\u0646\u0645\u0627\u06CC MathJax", + MathJax: "*MathJax* \u06CC\u06A9 \u06A9\u062A\u0627\u0628\u062E\u0627\u0646\u0647\u0654 \u062C\u0627\u0648\u0627\u0627\u0633\u06A9\u0631\u06CC\u067E\u062A\u06CC \u0627\u0633\u062A \u06A9\u0647 \u0627\u062C\u0627\u0632\u0647 \u0645\u06CC\u200C\u062F\u0647\u062F \u06A9\u0647 \u0646\u0648\u06CC\u0633\u0646\u062F\u0647\u200C\u0647\u0627\u06CC \u0635\u0641\u062D\u0647 \u0631\u06CC\u0627\u0636\u06CC\u0627\u062A \u0631\u0627 \u062F\u0631\u0648\u0646 \u0635\u0641\u062D\u0647\u200C\u0647\u0627\u06CC \u0642\u0631\u0627\u0631 \u062F\u0647\u0646\u062F. \u0628\u0647\u200C\u0639\u0646\u0648\u0627\u0646 \u062E\u0648\u0627\u0646\u0646\u062F\u0647\u060C \u0634\u0645\u0627 \u0646\u06CC\u0627\u0632 \u0646\u062F\u0627\u0631\u06CC\u062F \u06A9\u0627\u0631\u06CC \u0627\u0646\u062C\u0627\u0645 \u062F\u0647\u06CC\u062F \u06A9\u0647 \u0627\u06CC\u0646 \u0627\u062A\u0641\u0627\u0642 \u0628\u06CC\u0641\u062A\u062F.", + Browsers: "*\u0645\u0631\u0648\u0631\u06AF\u0631\u0647\u0627*: MathJax \u0628\u0627 \u0647\u0645\u0647\u0654 \u0645\u0631\u0648\u0631\u06AF\u0631\u0647\u0627\u06CC \u0631\u0648\u0632 \u0634\u0627\u0645\u0644 \u0627\u06CC\u0646\u062A\u0631\u0646\u062A \u0627\u06A9\u0633\u067E\u0644\u0648\u0631\u0631 \u06F6 \u0628\u0647 \u0628\u0627\u0644\u0627\u060C \u0641\u0627\u06CC\u0631\u0641\u0627\u06A9\u0633 \u06F3 \u0628\u0647 \u0628\u0627\u0644\u0627\u060C \u06A9\u0631\u0648\u0645 \u06F0.\u06F2 \u0628\u0647 \u0628\u0627\u0644\u0627\u060C \u0633\u0627\u0641\u0627\u0631\u0633\u06CC \u06F2 \u0628\u0647 \u0628\u0627\u0644\u0627\u060C \u0627\u067E\u0631\u0627\u06CC \u06F9.\u06F6 \u0628\u0647 \u0628\u0627\u0644\u0627 \u0648 \u0627\u06A9\u062B\u0631 \u0645\u0631\u0648\u0631\u06AF\u0631\u0647\u0627\u06CC \u062A\u0644\u0641\u0646 \u0647\u0645\u0631\u0627\u0647 \u06A9\u0627\u0631 \u0645\u06CC\u200C\u06A9\u0646\u062F.", + Menu: "*\u0645\u0646\u0648\u06CC \u0631\u06CC\u0627\u0636\u06CC*: MathJax \u06CC\u06A9 \u0645\u0646\u0648\u06CC \u0645\u062A\u0646\u06CC \u0628\u0647 \u0645\u0639\u0627\u062F\u0644\u0627\u062A \u0645\u06CC\u200C\u0627\u0641\u0632\u0627\u06CC\u062F. \u0628\u0627 \u06A9\u0644\u06CC\u06A9 \u0631\u0627\u0633\u062A \u06CC\u0627 \u06A9\u0644\u06CC\u06A9 \u0628\u0647 \u0647\u0645\u0631\u0627\u0647 \u0645\u0647\u0627\u0631 (CTRL) \u062F\u0631 \u0647\u0631 \u0645\u0639\u0627\u062F\u0644\u0647\u200C\u0627\u06CC \u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u06CC\u062F \u0628\u0647 \u0627\u06CC\u0646 \u0645\u0646\u0648 \u062F\u0633\u062A \u0628\u06CC\u0627\u0628\u06CC\u062F.", + ShowMath: "*\u0646\u0645\u0627\u06CC\u0634 \u0631\u06CC\u0627\u0636\u06CC \u0628\u0647\u200C\u0639\u0646\u0648\u0627\u0646* \u0627\u062C\u0627\u0632\u0647 \u0645\u06CC\u200C\u062F\u0647\u062F \u06A9\u0647 \u0634\u0645\u0627 \u0645\u0646\u0628\u0639 \u0646\u0634\u0627\u0646\u0647\u200C\u06AF\u0630\u0627\u0631\u06CC \u0641\u0631\u0645\u0648\u0644 \u0631\u0627 \u0628\u0631\u0627\u06CC \u0631\u0648\u0646\u0648\u0634\u062A \u0648 \u0686\u0633\u067E\u0627\u0646\u062F\u0646 \u0628\u0628\u06CC\u0646\u06CC\u062F (\u0628\u0647\u200C\u0639\u0646\u0648\u0627\u0646 MathML \u06CC\u0627 \u062F\u0631 \u0642\u0627\u0644\u0628 \u0627\u0635\u0644\u06CC \u0622\u0646).", + Settings: "*\u062A\u0646\u0638\u06CC\u0645\u0627\u062A* \u0627\u062C\u0627\u0632\u0647 \u0645\u06CC\u200C\u062F\u0647\u062F \u0628\u0647 \u0642\u0627\u0628\u0644\u06CC\u062A\u200C\u0647\u0627\u06CC MathJax \u0627\u0632 \u062C\u0645\u0644\u0647\u0654 \u0627\u0646\u062F\u0627\u0632\u0647\u0654 \u0645\u0639\u0627\u062F\u0644\u0647\u200C\u0647\u0627 \u0648 \u0645\u06A9\u0627\u0646\u06CC\u0632\u0645 \u0627\u0633\u062A\u0641\u0627\u062F\u0647\u200C\u0634\u062F\u0647 \u0628\u0631\u0627\u06CC \u0646\u0645\u0627\u06CC\u0634 \u0645\u0639\u0627\u062F\u0644\u0647\u200C\u0647\u0627 \u06A9\u0646\u062A\u0631\u0644 \u062F\u0627\u0634\u062A\u0647 \u0628\u0627\u0634\u062F.", + Language: "*\u0632\u0628\u0627\u0646* \u0627\u062C\u0627\u0632\u0647 \u0645\u06CC\u200C\u062F\u0647\u062F \u0634\u0645\u0627 \u0632\u0628\u0627\u0646 \u0627\u0633\u062A\u0641\u0627\u062F\u0647\u200C\u0634\u062F\u0647 \u062A\u0648\u0633\u0637 MathJax \u0628\u0631\u0627\u06CC \u0645\u0646\u0648\u0647\u0627 \u0648 \u067E\u06CC\u063A\u0627\u0645\u200C\u0647\u0627\u06CC \u062E\u0637\u0627 \u0631\u0627 \u0627\u0646\u062A\u062E\u0627\u0628 \u06A9\u0646\u06CC\u062F.", + Zoom: "*\u06A9\u0648\u0686\u06A9/\u0628\u0632\u0631\u06AF\u200C\u0646\u0645\u0627\u06CC\u06CC \u0631\u06CC\u0627\u0636\u06CC*: \u0627\u06AF\u0631 \u0634\u0645\u0627 \u0628\u0627 \u062E\u0648\u0627\u0646\u062F\u0646 \u06CC\u06A9 \u0645\u0639\u0627\u062F\u0644\u0647 \u0645\u0634\u06A9\u0644\u06CC \u062F\u0627\u0631\u06CC\u062F\u060C MathJax \u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u062F \u0628\u0627 \u0628\u0632\u0631\u06AF\u200C\u0646\u0645\u0627\u06CC\u06CC \u0628\u0647 \u062F\u06CC\u062F\u0646 \u0634\u0645\u0627 \u06A9\u0645\u06A9 \u06A9\u0646\u062F.", + Accessibilty: "*\u062F\u0633\u062A\u06CC\u0627\u0628\u06CC\u200C\u067E\u0630\u06CC\u0631\u06CC*: MathJax \u0628\u0647\u200C\u0635\u0648\u0631\u062A \u062E\u0648\u062F\u06A9\u0627\u0631 \u0628\u0627 \u0635\u0641\u062D\u0647\u200C\u0647\u0627\u06CC\u06CC \u06A9\u0647 \u0631\u06CC\u0627\u0636\u06CC\u0627\u062A \u0631\u0627 \u0628\u0631\u0627\u06CC \u0642\u0627\u0628\u0644 \u062F\u0633\u062A\u0631\u0633 \u0628\u0631\u0627\u06CC \u06A9\u0633\u0627\u0646\u06CC \u06A9\u0647 \u0645\u0634\u06A9\u0644 \u0628\u06CC\u0646\u0627\u06CC\u06CC \u062F\u0627\u0631\u0646\u062F \u0639\u0645\u0644 \u0645\u06CC\u200C\u06A9\u0646\u062F.", + Fonts: "*\u0642\u0644\u0645\u200C\u0647\u0627*: MathJax \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0645\u0634\u062E\u0635\u06CC \u0627\u06AF\u0631 \u0628\u0631 \u0631\u0648\u06CC \u0631\u0627\u06CC\u0627\u0646\u0647\u0654 \u0634\u0645\u0627 \u0646\u0635\u0628 \u0628\u0627\u0634\u0646\u062F \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0645\u06CC\u200C\u06A9\u0646\u062F\u061B \u062F\u0631 \u063A\u06CC\u0631 \u0627\u06CC\u0646 \u0635\u0648\u0631\u062A \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0628\u0631 \u067E\u0627\u06CC\u0647\u0654 \u0648\u0628 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u062E\u0648\u0627\u0647\u062F \u06A9\u0631\u062F. \u0627\u06AF\u0631\u0686\u0647 \u0646\u06CC\u0627\u0632\u06CC \u0646\u06CC\u0633\u062A\u060C \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0646\u0635\u0628\u200C\u0634\u062F\u0647 \u0628\u0647\u200C\u0635\u0648\u0631\u062A \u0645\u062D\u0644\u06CC \u0646\u0645\u0627\u06CC\u0634 \u0631\u0627 \u0633\u0631\u06CC\u0639\u062A\u0631 \u062E\u0648\u0627\u0647\u062F \u06A9\u0631\u062F. \u0645\u0627 \u0646\u0635\u0628 [\u0642\u0644\u0645\u200C\u0647\u0627\u06CC STIX](%1) \u0631\u0627 \u067E\u06CC\u0634\u0646\u0647\u0627\u062F \u0645\u06CC\u200C\u06A9\u0646\u06CC\u0645." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fa/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/fa/MathML.js b/modules/MathJax/unpacked/localization/fa/MathML.js new file mode 100644 index 0000000..3af3528 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fa/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fa/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fa","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "mglyph \u0646\u0627\u0645\u0646\u0627\u0633\u0628: %1", + BadMglyphFont: "\u0642\u0644\u0645 \u0646\u0627\u0645\u0646\u0627\u0633\u0628: %1", + UnknownNodeType: "\u0646\u0648\u0639 \u06AF\u0631\u0647\u0654 \u0646\u0627\u0634\u0646\u0627\u062E\u062A\u0647: %1", + UnexpectedTextNode: "\u06AF\u0631\u0647\u0654 \u0645\u062A\u0646\u06CC \u063A\u06CC\u0631\u0645\u0646\u062A\u0638\u0631\u0647:\u200C %1", + ErrorParsingMathML: "\u062E\u0637\u0627\u06CC \u062A\u062C\u0632\u06CC\u0647\u0654 MathML", + ParsingError: "\u062E\u0637\u0627\u06CC \u062A\u062C\u0632\u06CC\u0647\u0654 MathML\u200F: %1", + MathMLSingleElement: "MathML \u0628\u0627\u06CC\u062F \u0628\u0647 \u062F\u0646\u0628\u0627\u0644 \u06CC\u06A9 \u0639\u0646\u0635\u0631 \u0648\u0627\u062D\u062F \u0628\u06CC\u0627\u06CC\u062F", + MathPlayer: "MathJax \u0646\u062A\u0648\u0627\u0646\u0633\u062A MathPlayer \u0631\u0627 \u0631\u0627\u0647\u200C\u0627\u0646\u062F\u0627\u0632\u06CC \u06A9\u0646\u062F.\n\n\u0627\u06AF\u0631 MathPlayer \u0646\u0635\u0628 \u0646\u06CC\u0633\u062A\u060C \u0634\u0645\u0627 \u0646\u06CC\u0627\u0632 \u062F\u0627\u0631\u06CC\u062F \u06A9\u0647 \u0627\u0628\u062A\u062F\u0627 \u0622\u0646 \u0631\u0627 \u0646\u0635\u0628 \u06A9\u0646\u06CC\u062F.\n\u062F\u0631 \u063A\u06CC\u0631 \u0627\u06CC\u0646 \u0635\u0648\u0631\u062A\u060C \u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u0627\u0645\u0646\u06CC\u062A\u06CC \u0634\u0645\u0627 \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u06A9\u0647 \u0627\u0632 \u0627\u062C\u0631\u0627\u06CC\n\u06A9\u0646\u062A\u0631\u0644\u200C\u0647\u0627\u06CC \u0627\u06A9\u062A\u06CC\u0648\u0627\u06A9\u0633 \u062C\u0644\u0648\u06AF\u06CC\u0631\u06CC \u06A9\u0646\u062F. \u0627\u0632 \u06AF\u0632\u06CC\u0646\u0647\u200C\u0647\u0627\u06CC \u0627\u06CC\u0646\u062A\u0631\u0646\u062A\u06CC \u0645\u0648\u062C\u0648\u062F \u0632\u06CC\u0631\n\u0645\u0646\u0648\u06CC \u0627\u0628\u0632\u0627\u0631 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F \u0648 \u0628\u0631\u06AF\u0647\u0654 \u0627\u0645\u0646\u06CC\u062A \u0631\u0627 \u0627\u0646\u062A\u062E\u0627\u0628 \u06A9\u0646\u06CC\u062F\u060C \u0633\u067E\u0633 \u062F\u06A9\u0645\u0647\u0654\n\u0645\u0631\u062C\u0644\u0647\u0654 \u0633\u0641\u0627\u0631\u0634\u06CC \u0631\u0627 \u0641\u0634\u0627\u0631 \u062F\u0647\u06CC\u062F. \u0628\u0631\u0631\u0633\u06CC \u06A9\u0646\u06CC\u062F \u06A9\u0647 \u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u0627\u062C\u0631\u0627\u06CC\n\u00AB\u0627\u062C\u0631\u0627\u06CC \u06A9\u0646\u062A\u0631\u0644\u200C\u0647\u0627\u06CC \u0627\u06A9\u062A\u06CC\u0648\u0627\u06A9\u0633\u00BB \u0648 \u00AB\u0631\u0641\u062A\u0627\u0631\u0647\u0627\u06CC \u062F\u0648\u062F\u0648\u06CC\u06CC \u0648 \u0627\u0633\u06A9\u0631\u06CC\u067E\u062A\u00BB \u0641\u0639\u0627\u0644\n\u0647\u0633\u062A\u0646\u062F.\n\n\u062F\u0631 \u062D\u0627\u0644 \u062D\u0627\u0636\u0631 \u0634\u0645\u0627 \u0628\u0647 \u062C\u0627\u06CC \u062D\u0631\u0648\u0641 \u0631\u06CC\u0627\u0636\u06CC \u067E\u06CC\u0627\u0645\u200C\u0647\u0627\u06CC \u062E\u0637\u0627\u06CC \u062E\u0648\u0627\u0647\u06CC\u062F \u062F\u06CC\u062F.", + CantCreateXMLParser: "MathJax \u0646\u062A\u0648\u0627\u0633\u062A \u06CC\u06A9 \u062A\u062C\u0632\u06CC\u0647\u200C\u06AF\u0631 \u0627\u06A9\u0633\u200C\u0627\u0645\u200C\u0627\u0644 \u0628\u0631\u0627\u06CC MathML \u0627\u06CC\u062C\u0627\u062F \u06A9\u0646\u062F.\n\u0628\u0631\u0631\u0633\u06CC \u06A9\u0646\u06CC\u062F \u06A9\u0647 \u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u0627\u0645\u0646\u06CC\u062A\u06CC \u00AB\u0627\u0633\u06A9\u0631\u06CC\u067E\u062A \u06A9\u0646\u062A\u0631\u0644\u200C\u0647\u0627\u06CC \u0627\u06A9\u062A\u06CC\u0648\u0627\u06A9\u0633\n\u0639\u0644\u0627\u0645\u062A\u200C\u06AF\u0630\u0627\u0631\u06CC\u200C\u0634\u062F\u0647 \u0628\u0647\u200C\u0639\u0646\u0648\u0627\u0646 \u0627\u0645\u0646 \u0628\u0631\u0627\u06CC \u06A9\u062F\u0632\u0646\u06CC\u00BB \u0641\u0639\u0627\u0644 \u0627\u0633\u062A (\u0627\u0632\n\u06AF\u0632\u06CC\u0646\u0647\u0654 \u0627\u06CC\u0646\u062A\u0631\u0646\u062A\u06CC \u06AF\u0632\u06CC\u0646\u0647 \u062F\u0631 \u0645\u0646\u0648\u06CC \u0627\u0628\u0632\u0627\u0631\u0647\u0627 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F \u0648 \u067E\u0646\u0644 \u0627\u0645\u0646\u06CC\u062A \u0631\u0627 \u0627\u0646\u062A\u062E\u0627\u0628\n\u06A9\u0646\u06CC\u062F \u0648 \u062F\u06A9\u0645\u0647\u0654 \u0645\u0631\u062D\u0644\u0647\u0654 \u0633\u0641\u0627\u0631\u0634\u06CC \u062A\u0627 \u0627\u06CC\u0646 \u0631\u0627 \u0628\u0631\u0631\u0633\u06CC \u06A9\u0646\u06CC\u062F).\n\n\u0645\u0639\u0627\u062F\u0644\u0647\u200C\u0647\u0627\u06CC MathML \u0646\u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u0646\u062F \u062A\u0648\u0633\u0637 MathJax \u067E\u0631\u062F\u0627\u0632\u0634 \u06AF\u0631\u062F\u0646\u062F.", + MathMLRootElement: "MathML \u0628\u0627\u06CC\u062F \u062A\u0648\u0633\u0637 \u0639\u0646\u0635\u0631 \u003Cmath\u003E \u062A\u0634\u06A9\u06CC\u0644 \u0634\u062F\u0647 \u0628\u0627\u0634\u062F \u0646\u0647 %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fa/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/fa/MathMenu.js b/modules/MathJax/unpacked/localization/fa/MathMenu.js new file mode 100644 index 0000000..05f5b53 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fa/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fa/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fa","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "\u0646\u0645\u0627\u06CC\u0634 \u0631\u06CC\u0627\u0636\u06CC\u0627\u062A \u0628\u0647\u200C\u0639\u0646\u0648\u0627\u0646", + MathMLcode: "\u06A9\u062F MathML", + OriginalMathML: "MathML \u0627\u0635\u0644\u06CC", + TeXCommands: "\u062F\u0633\u062A\u0648\u0631\u0627\u062A \u062A\u06A9", + AsciiMathInput: "\u0648\u0631\u0648\u062F\u06CC AsciiMathML", + Original: "\u062D\u0627\u0644\u062A \u0627\u0635\u0644\u06CC", + ErrorMessage: "\u067E\u06CC\u0627\u0645 \u062E\u0637\u0627", + Annotation: "\u06CC\u0627\u062F\u062F\u0627\u0634\u062A", + TeX: "\u062A\u06A9", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "MathML \u0645\u062D\u062A\u0648\u0627", + OpenMath: "OpenMath", + texHints: "\u0646\u0645\u0627\u06CC\u0634 \u0646\u06A9\u062A\u0647\u200C\u0647\u0627\u06CC \u062A\u06A9 \u062F\u0631 MathML", + Settings: "\u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u0631\u06CC\u0627\u0636\u06CC\u0627\u062A", + ZoomTrigger: "\u0645\u0627\u0634\u0647\u0654 \u06A9\u0648\u0686\u06A9/\u0628\u0632\u0631\u06AF\u200C\u0646\u0645\u0627\u06CC\u06CC", + Hover: "\u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0646 \u0645\u0648\u0634\u0648\u0627\u0631\u0647 \u0628\u0631 \u0631\u0648\u06CC \u0622\u0646", + Click: "\u06A9\u0644\u06CC\u06A9", + DoubleClick: "\u062F\u0648\u0628\u0627\u0631 \u06A9\u0644\u06CC\u06A9", + NoZoom: "\u0628\u062F\u0648\u0646 \u06A9\u0648\u0686\u06A9/\u0628\u0632\u0631\u06AF\u200C\u0646\u0645\u0627\u06CC\u06CC", + Option: "\u06AF\u0632\u06CC\u0646\u0647", + Alt: "\u062F\u06AF\u0631\u0633\u0627\u0632", + Command: "\u062F\u0633\u062A\u0648\u0631", + Control: "\u0645\u0647\u0627\u0631", + Shift: "\u062A\u0628\u062F\u06CC\u0644", + ZoomFactor: "\u0636\u0631\u06CC\u0628 \u06A9\u0648\u0686\u06A9/\u0628\u0632\u0631\u06AF\u200C\u0646\u0645\u0627\u06CC\u06CC", + Renderer: "\u0627\u0631\u0627\u0626\u0647\u200C\u062F\u0647\u0646\u062F\u0647\u0654 \u0631\u06CC\u0627\u0636\u06CC", + MenuEvents: "\u0631\u0648\u06CC\u062F\u0627\u062F\u0647\u0627\u06CC \u0645\u0646\u0648", + MouseEvents: "\u0631\u0648\u06CC\u062F\u0627\u062F\u0647\u0627\u06CC \u0645\u0648\u0634\u0648\u0627\u0631\u0647", + MenuAndMouse: "\u0631\u0648\u06CC\u062F\u0627\u062F\u0647\u0627\u06CC \u0645\u0648\u0634\u0648\u0627\u0631\u0647 \u0648 \u0645\u0646\u0648", + FontPrefs: "\u062A\u0631\u062C\u06CC\u062D\u0627\u062A \u0642\u0644\u0645", + ForHTMLCSS: "\u0628\u0631\u0627\u06CC \u0627\u0686\u200C\u062A\u06CC\u200C\u0627\u0645\u200C\u0627\u0644-\u0633\u06CC\u200C\u0627\u0633\u200C\u0627\u0633:", + Auto: "\u062E\u0648\u062F\u06A9\u0627\u0631", + TeXLocal: "\u062A\u06A9 (\u0645\u062D\u0644\u06CC)", + TeXWeb: "\u062A\u06A9 (\u0648\u0628)", + TeXImage: "\u062A\u06A9 (\u0646\u06AF\u0627\u0631\u0647)", + STIXLocal: "STIX (\u0645\u062D\u0644\u06CC)", + ContextMenu: "\u0645\u0646\u0648 \u0645\u062A\u0646\u06CC", + Browser: "\u0645\u0631\u0648\u0631\u06AF\u0631", + Scale: "\u0645\u0642\u06CC\u0627\u0633\u200C\u062F\u0647\u06CC \u0647\u0645\u0647\u0654 \u0631\u06CC\u0627\u0636\u06CC\u0627\u062A ...", + Locale: "\u0632\u0628\u0627\u0646", + LoadLocale: "\u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u0627\u0632 \u0646\u0634\u0627\u0646\u06CC \u0627\u06CC\u0646\u062A\u0631\u0646\u062A\u06CC ...", + About: "\u062F\u0631\u0628\u0627\u0631\u0647\u0654 MathJax", + Help: "\u0631\u0627\u0647\u0646\u0645\u0627\u06CC MathJax", + localTeXfonts: "\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u062A\u06A9 \u0645\u062D\u0644\u06CC", + webTeXfonts: "\u0628\u0627 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u0642\u0644\u0645 \u0648\u0628\u06CC \u062A\u06A9", + imagefonts: "\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u062A\u0635\u0648\u06CC\u0631\u06CC", + localSTIXfonts: "\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC STIX \u0645\u062D\u0644\u06CC", + webSVGfonts: "\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0648\u0628\u06CC SVG", + genericfonts: "\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u0642\u0644\u0645\u200C\u0647\u0627\u06CC \u0639\u0645\u0648\u0645\u06CC \u06CC\u0648\u0646\u06CC\u06A9\u062F", + wofforotffonts: "\u0642\u0644\u0645\u200C\u0647\u0627\u06CC woff \u06CC\u0627 otf", + eotffonts: "\u0642\u0644\u0645\u200C\u0647\u0627\u06CC eot", + svgfonts: "\u0642\u0644\u0645\u200C\u0647\u0627\u06CC svg", + WebkitNativeMMLWarning: "\u0628\u0647 \u0646\u0638\u0631 \u0645\u0631\u0648\u0631\u06AF\u0631 \u0634\u0645\u0627 \u0627\u0632 MathML \u0628\u0647\u200C\u0635\u0648\u0631\u062A \u0645\u062D\u0644\u06CC \u067E\u0634\u062A\u06CC\u0628\u0627\u0646\u06CC \u0646\u0645\u06CC\u200C\u06A9\u0646\u062F\u060C \u0628\u0646\u0627\u0628\u0631\u0627\u06CC\u0646 \u0631\u0641\u062A\u0646 \u0628\u0647 \u062D\u0627\u0644\u062A \u062E\u0631\u0648\u062C\u06CC MathML \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u06A9\u0647 \u0631\u06CC\u0627\u0636\u06CC\u0627\u062A \u0645\u0648\u062C\u0648\u062F \u062F\u0631 \u0635\u0641\u062D\u0647 \u063A\u06CC\u0631\u0642\u0627\u0628\u0644 \u062E\u0648\u0627\u0646\u062F\u0646 \u0634\u0648\u0646\u062F.", + MSIENativeMMLWarning: "\u0627\u06CC\u0646\u062A\u0631\u0646\u062A \u0627\u06A9\u0633\u067E\u0644\u0648\u0631\u0631 \u0628\u0647 \u0627\u0641\u0632\u0627\u06CC\u0647\u0654 MathPlayer \u0628\u0631\u0627\u06CC \u067E\u0631\u062F\u0627\u0632\u0634 \u062E\u0631\u0648\u062C\u06CC MathML \u0646\u06CC\u0627\u0632\u0645\u0646\u062F \u0627\u0633\u062A.", + NoOriginalForm: "\u062D\u0627\u0644\u062A \u0627\u0648\u0644\u0628\u0647 \u0645\u0648\u062C\u0648\u062F \u0646\u06CC\u0633\u062A", + Close: "\u0628\u0633\u062A\u0646", + EqSource: "\u0645\u0646\u0628\u0639 \u0645\u0639\u0627\u062F\u0644\u0647\u0654 MathJax", + TriggerRequires: "\u062A\u063A\u06CC\u06CC\u0631 \u062D\u0627\u0644\u062A \u0646\u06CC\u0627\u0632\u0645\u0646\u062F \u0627\u0633\u062A \u0628\u0647:", + MPHandles: "\u0627\u062C\u0627\u0632\u0647\u200C\u0628\u062F\u0647 MathPlayer \u0645\u062F\u06CC\u0631\u06CC\u062A \u06A9\u0646\u062F:", + Discoverable: "\u0628\u0631\u062C\u0633\u062A\u0647\u200C\u0634\u062F\u0646 \u0628\u0627 \u0642\u0631\u0627\u0631\u062F\u0627\u062F\u0646 \u0645\u0648\u0634\u0648\u0627\u0631\u0647 \u0628\u0631 \u0631\u0648\u06CC\u0634", + OperaNativeMMLWarning: "\u067E\u0634\u062A\u06CC\u0628\u0627\u0646\u06CC \u0627\u067E\u0631\u0627 \u0627\u0632 MathML \u0645\u062D\u062F\u0648\u062F \u0627\u0633\u062A \u0628\u0646\u0627\u0628\u0631\u0627\u06CC\u0646 \u0627\u0646\u062A\u062E\u0627\u0628 \u062E\u0631\u0648\u062C\u06CC MathML \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u0628\u0627\u0639\u062B \u0646\u0645\u0627\u06CC\u0634 \u0636\u0639\u06CC\u0641 \u0628\u0639\u0636\u06CC \u0627\u0632 \u0639\u0628\u0627\u0631\u062A\u200C\u0647\u0627 \u0634\u0648\u062F.", + SafariNativeMMLWarning: "\u0645\u0631\u0648\u0631\u06AF\u0631 \u0634\u0645\u0627 \u0628\u0647\u200C\u0635\u0648\u0631\u062A \u0645\u062D\u0644\u06CC \u0647\u0645\u0647\u0654 \u0642\u0627\u0628\u0644\u06CC\u062A\u200C\u0647\u0627\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0634\u062F\u0647 \u062A\u0648\u0633\u0637 MathJax \u0631\u0627 \u067E\u06CC\u0627\u062F\u0647\u200C\u0633\u0627\u0632\u06CC \u0646\u0645\u06CC\u200C\u06A9\u0646\u062F \u0628\u0646\u0627\u0628\u0631\u0627\u06CC\u0646 \u0628\u0639\u0636\u06CC \u0627\u0632 \u0639\u0628\u0627\u0631\u0627\u062A \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u0628\u0647 \u062F\u0631\u0633\u062A\u06CC \u0646\u0645\u0627\u06CC\u0634 \u062F\u0627\u062F\u0647 \u0646\u0634\u0646\u062F.", + FirefoxNativeMMLWarning: "\u0645\u0631\u0648\u0631\u06AF\u0631 \u0634\u0645\u0627 \u0628\u0647\u200C\u0635\u0648\u0631\u062A \u0645\u062D\u0644\u06CC \u0647\u0645\u0647\u0654 \u0642\u0627\u0628\u0644\u06CC\u062A\u200C\u0647\u0627\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0634\u062F\u0647\u0654 MathML \u062A\u0648\u0633\u0637 MathJax \u0631\u0627 \u067E\u06CC\u0627\u062F\u0647\u200C\u0633\u0627\u0632\u06CC \u0646\u0645\u06CC\u200C\u06A9\u0646\u062F \u0628\u0646\u0627\u0628\u0631\u0627\u06CC\u0646 \u0628\u0639\u0636\u06CC \u0627\u0632 \u0639\u0628\u0627\u0631\u062A\u200C\u0647\u0627 \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u0628\u0647 \u062E\u0648\u0628\u06CC \u062F\u06CC\u062F\u0647 \u0646\u0634\u0648\u0646\u062F.", + MSIESVGWarning: "SVG \u062F\u0631 \u0627\u06CC\u0646\u062A\u0631\u0646\u062A \u0627\u06A9\u0633\u067E\u0644\u0648\u0631\u0631 \u0642\u0628\u0644 \u0627\u0632 \u0646\u0633\u062E\u0647\u0654 \u06F9 \u0622\u0646 \u06CC\u0627 \u0648\u0642\u062A\u06CC \u06A9\u0647 \u0634\u0628\u06CC\u0647\u200C\u0633\u0627\u0632\u06CC \u0646\u0633\u062E\u0647\u200C\u0647\u0627\u06CC \u0642\u0628\u0644\u06CC \u0631\u0627 \u0645\u06CC\u200C\u06A9\u0646\u062F \u067E\u06CC\u0627\u062F\u0647\u200C\u0633\u0627\u0632\u06CC \u0646\u0634\u062F\u0647\u200C\u0627\u0633\u062A. \u0627\u0646\u062A\u062E\u0627\u0628 \u062E\u0631\u0648\u062C\u06CC SVG \u0645\u0645\u06A9\u0646 \u0627\u0633\u062A \u0628\u0627\u0639\u062B \u0634\u0648\u062F \u06A9\u0647 \u0628\u0639\u0636\u06CC \u0627\u0632 \u0631\u06CC\u0627\u0636\u06CC\u0627\u062A \u0628\u0647 \u062F\u0631\u0633\u062A\u06CC \u0646\u0645\u0627\u06CC\u0634 \u062F\u0627\u062F\u0647 \u0646\u0634\u0648\u0646\u062F.", + LoadURL: "\u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u062F\u0627\u062F\u0647\u200C\u0647\u0627\u06CC \u062A\u0631\u062C\u0645\u0647 \u0627\u0632 \u0627\u06CC\u0646 \u0646\u0634\u0627\u0646\u06CC \u0627\u06CC\u0646\u062A\u0631\u0646\u062A\u06CC:", + BadURL: "\u0646\u0634\u0627\u0646\u06CC \u0627\u06CC\u0646\u062A\u0631\u0646\u062A\u06CC \u0628\u0631\u0627\u06CC \u067E\u0631\u0648\u0646\u062F\u0647\u0654 \u062C\u0627\u0648\u0627\u0627\u0633\u06A9\u0631\u067E\u062A\u06CC \u0627\u0633\u062A \u06A9\u0647 \u062F\u0627\u062F\u0647\u200C\u0647\u0627\u06CC \u062A\u0631\u062C\u0645\u0647\u200C\u0627\u06CC MathJax \u0631\u0627 \u062A\u0639\u0631\u06CC\u0641 \u0645\u06CC\u200C\u06A9\u0646\u062F. \u067E\u0631\u0648\u0646\u062F\u0647\u200C\u0647\u0627\u06CC \u062C\u0627\u0648\u0627\u0627\u0633\u06A9\u0631\u06CC\u067E\u062A \u0628\u0627 \u067E\u0633\u0648\u0646\u062F '.js' \u062A\u0645\u0627\u0645 \u0645\u06CC\u200C\u0634\u0648\u0646\u062F.", + BadData: "\u0634\u06A9\u0633\u062A \u062F\u0631 \u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u062F\u0627\u062F\u0647\u200C\u0647\u0627\u06CC \u062A\u0631\u062C\u0645\u0647\u200C\u0627\u06CC \u0627\u0632 %1", + SwitchAnyway: "(\u0628\u0631 \u00AB\u0628\u0627\u0634\u062F\u00BB \u0641\u0634\u0627\u0631 \u062F\u0647\u06CC\u062F \u062A\u0627 \u0627\u0646\u062A\u062E\u0627\u0628 \u0634\u0648\u062F \u0648 \u0628\u0631 \u00AB\u0644\u063A\u0648\u00BB \u0641\u0634\u0627\u0631 \u062F\u0647\u06CC\u062F \u062A\u0627 \u0646\u0645\u0627\u06CC\u0634\u200C\u062F\u0647\u0646\u062F\u0647\u0654 \u0641\u0639\u0644\u06CC \u0627\u062F\u0627\u0645\u0647 \u06CC\u0627\u0628\u062F)", + ScaleMath: "\u0645\u0642\u06CC\u0627\u0633 \u0647\u0645\u0647\u0654 \u0631\u06CC\u0627\u0636\u06CC\u0627\u062A (\u062F\u0631 \u0645\u0642\u0627\u06CC\u0633\u0647 \u0628\u0627 \u0645\u062A\u0646 \u0627\u0637\u0631\u0627\u0641) \u062A\u0648\u0633\u0637", + NonZeroScale: "\u0645\u0642\u06CC\u0627\u0633 \u0646\u0628\u0627\u06CC\u062F \u0635\u0641\u0631 \u0628\u0627\u0634\u062F", + PercentScale: "\u0645\u0642\u06CC\u0627\u0633 \u0628\u0627\u06CC\u062F \u062F\u0631\u0635\u062F\u06CC \u0628\u0627\u0634\u062F (\u0628\u0631\u0627\u06CC \u0646\u0645\u0648\u0646\u0647 \u06F1\u06F2\u06F0\u066A)", + IE8warning: "\u0627\u06CC\u0646 \u0645\u0646\u0648\u06CC MathJax \u0648 \u0642\u0627\u0628\u0644\u06CC\u062A\u200C\u0647\u0627\u06CC \u06A9\u0648\u0686\u06A9/\u0628\u0632\u0631\u06AF\u200C\u0646\u0645\u0627\u06CC\u06CC \u0631\u0627 \u063A\u06CC\u0631\u0641\u0639\u0627\u0644 \u0645\u06CC\u200C\u06A9\u0646\u062F \u0648\u0644\u06CC \u0634\u0645\u0627 \u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u06CC\u062F \u0628\u0627 Alt-Click \u0628\u0631 \u0631\u0648\u06CC \u0639\u0628\u0627\u0631\u062A \u0645\u0646\u0648\u06CC MathJax \u0631\u0627 \u0628\u062F\u0633\u062A \u0622\u0648\u0631\u06CC\u062F.\n\n\u0648\u0627\u0642\u0639\u0627\u064B \u0645\u06CC\u200C\u062E\u0648\u0627\u0647\u06CC\u062F \u062A\u0646\u0638\u06CC\u0645\u0627\u062A MathPlayer \u0631\u0627 \u062A\u063A\u06CC\u06CC\u0631 \u062F\u0647\u06CC\u062F\u061F", + IE9warning: "\u0645\u0646\u0648\u06CC \u0645\u062A\u0646\u06CC MathJax \u063A\u06CC\u0631\u0641\u0639\u0627\u0644 \u062E\u0648\u0627\u0647\u062F \u0634\u062F \u0648\u0644\u06CC \u0634\u0645\u0627 \u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u062F \u0628\u0627 Alt-Click \u0628\u0631 \u0631\u0648\u06CC \u0639\u0628\u0627\u0631\u062A \u0645\u0646\u0648\u06CC MathJax \u0631\u0627 \u0628\u062F\u0633\u062A \u0628\u06CC\u0627\u0648\u0631\u06CC\u062F." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fa/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/fa/TeX.js b/modules/MathJax/unpacked/localization/fa/TeX.js new file mode 100644 index 0000000..56f9846 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fa/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fa/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fa","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "\u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0627\u0632 \u0627\u0636\u0627\u0641\u06CC \u06CC\u0627 \u0641\u0642\u062F\u0627\u0646 \u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0633\u062A\u0647", + ExtraCloseMissingOpen: "\u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0633\u062A\u0647\u0654 \u0627\u0636\u0627\u0641\u0647 \u06CC\u0627 \u0641\u0642\u062F\u0627\u0646 \u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0627\u0632", + MissingLeftExtraRight: "\u0641\u0642\u062F\u0627\u0646 \u200E\\left \u06CC\u0627 \u200E\\right \u0627\u0636\u0627\u0641\u06CC", + MissingScript: "\u0641\u0642\u062F\u0627\u0646 \u0646\u0634\u0627\u0646\u0648\u0646\u062F \u0628\u0627\u0644\u0627\u0645\u062A\u0646 \u06CC\u0627 \u0632\u06CC\u0631\u0645\u062A\u0646", + ExtraLeftMissingRight: "\u200E\\left \u0627\u0636\u0627\u0641\u06CC \u06CC\u0627 \u0641\u0642\u062F\u0627\u0646 \u200E\\right", + Misplaced: "%1 \u0646\u0627\u0628\u062C\u0627", + MissingOpenForSub: "\u0641\u0642\u062F\u0627\u0646 \u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0627\u0632 \u0628\u0631\u0627\u06CC \u0632\u06CC\u0631\u0645\u062A\u0646", + MissingOpenForSup: "\u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0627\u0632 \u06AF\u0645\u200C\u0634\u062F\u0647 \u0628\u0631\u0627\u06CC \u0628\u0627\u0644\u0627\u0645\u062A\u0646", + AmbiguousUseOf: "\u0627\u0633\u062A\u0641\u0627\u062F\u0647\u0654 \u0645\u0628\u0647\u0645 \u0627\u0632 \u200E%1", + EnvBadEnd: "\u200E\\begin{%1}\u200E \u067E\u0627\u06CC\u0627\u0646\u200C\u06CC\u0627\u0641\u062A\u0647 \u0628\u0627 \u200E\\end{%2}\u200E", + EnvMissingEnd: "\u200E\\end{%1}\u200E \u06AF\u0645\u200C\u0634\u062F\u0647", + MissingBoxFor: "\u062C\u0639\u0628\u0647\u0654 \u06AF\u0645\u200C\u0634\u062F\u0647 \u0628\u0631\u0627\u06CC %1", + MissingCloseBrace: "\u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0633\u062A\u0647\u0654 \u0645\u0641\u0642\u0648\u062F", + UndefinedControlSequence: "\u062F\u0646\u0628\u0627\u0644\u0647\u0654 \u06A9\u0646\u062A\u0631\u0644 \u062A\u0639\u0631\u06CC\u0641\u200C\u0646\u0634\u062F\u0647\u0654 %1", + DoubleExponent: "\u062A\u0648\u0627\u0646 \u062F\u0648\u0645: \u0627\u0632 \u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0631\u0627\u06CC \u0631\u0648\u0634\u0646\u200C\u0633\u0627\u0632\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F", + DoubleSubscripts: "\u0632\u06CC\u0631\u0645\u062A\u0646 \u062F\u0648\u0645: \u0627\u0632 \u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0631\u0627\u06CC \u0631\u0648\u0634\u0646\u200C\u0633\u0627\u0632\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F", + MisplacedMiddle: "\u200E%1 \u0645\u06CC\u200C\u0628\u0627\u06CC\u0633\u062A \u062F\u0631\u0648\u0646 \u200E\\left \u0648 \u200E\\right \u0646\u0648\u0634\u062A\u0647\u200C\u0634\u0648\u062F", + MisplacedLimits: "\u200E%1 \u0641\u0642\u0637 \u062F\u0631 \u0639\u0645\u0644\u06AF\u0631\u0647\u0627 \u0645\u062C\u0627\u0632 \u0627\u0633\u062A", + MisplacedMoveRoot: "\u200E%1 \u062A\u0646\u0647\u0627 \u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u062F \u062F\u0631\u0648\u0646 \u06CC\u06A9 \u0631\u06CC\u0634\u0647 \u0638\u0627\u0647\u0631 \u0634\u0648\u062F", + MultipleCommand: "\u200E%1 \u0686\u0646\u062F\u06AF\u0627\u0646\u0647", + IntegerArg: "\u0646\u0634\u0627\u0646\u0648\u0646\u062F \u200E%1 \u0628\u0627\u06CC\u062F \u0639\u062F\u062F \u0635\u062D\u06CC\u062D \u0628\u0627\u0634\u062F", + NotMathMLToken: "%1 \u06CC\u06A9 \u0639\u0646\u0635\u0631 \u0646\u0634\u0627\u0646 \u0646\u06CC\u0633\u062A", + InvalidMathMLAttr: "\u0648\u06CC\u0698\u06AF\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631 MathML: %1", + UnknownAttrForElement: "%1 \u06CC\u06A9 \u0648\u06CC\u0698\u06AF\u06CC \u0634\u0646\u0627\u062E\u062A\u0647\u200C\u0634\u062F\u0647 \u0628\u0631\u0627\u06CC %2 \u0646\u06CC\u0633\u062A", + MissingArgFor: "\u0646\u0634\u0627\u0646\u0648\u0646\u062F \u06AF\u0645\u200C\u0634\u062F\u0647 \u0628\u0631\u0627\u06CC %1", + ExtraAlignTab: "\u0628\u0631\u06AF\u0647\u0654 \u0686\u06CC\u0646\u0634 \u0627\u0636\u0627\u0641\u06CC \u062F\u0631 \u0645\u062A\u0646 \u200E\\cases", + InvalidEnv: " \u0646\u0627\u0645 \u0645\u062D\u06CC\u0637 \u0646\u0627\u0645\u0639\u062A\u0628\u0631 \u00AB%1\u00BB", + UnknownEnv: "\u0645\u062D\u06CC\u0637 \u0646\u0627\u0634\u0646\u0627\u062E\u062A\u0647 \u00AB%1\u00BB", + ExtraCloseLooking: "\u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0633\u062A\u0647\u0654 \u0627\u0636\u0627\u0641\u06CC \u0647\u0646\u06AF\u0627\u0645 \u062C\u0633\u062A\u062C\u0648\u06CC %1", + MissingCloseBracket: "\u00AB]\u00BB \u0628\u0633\u062A\u0647 \u0628\u0631\u0627\u06CC \u0646\u0634\u0627\u0646\u0648\u0646\u062F \u200E%1 \u06CC\u0627\u0641\u062A \u0646\u0634\u062F", + MissingOrUnrecognizedDelim: "\u062C\u062F\u0627\u06A9\u0646\u0646\u062F\u0647 \u06AF\u0645\u200C\u0634\u062F\u0647 \u06CC\u0627 \u0646\u0627\u0634\u0646\u0627\u062E\u062A\u0647 \u0628\u0631\u0627\u06CC \u200E%1", + MissingDimOrUnits: "\u0627\u0628\u0639\u0627\u062F \u06CC\u0627 \u0648\u0627\u062D\u062F \u06AF\u0645\u200C\u0634\u062F\u0647 \u0628\u0631\u0627\u06CC \u200E%1", + TokenNotFoundForCommand: "%1 \u0628\u0631\u0627\u06CC %2 \u06CC\u0627\u0641\u062A \u0646\u0634\u062F", + MathNotTerminated: "\u0631\u06CC\u0627\u0636\u06CC \u062F\u0631 \u062C\u0639\u0628\u0647\u0654 \u0645\u062A\u0646 \u067E\u0627\u06CC\u0627\u0646 \u0646\u06CC\u0627\u0641\u062A\u0647\u200C\u0627\u0633\u062A", + IllegalMacroParam: "\u0627\u0631\u062C\u0627\u0639 \u067E\u0627\u0631\u0627\u0645\u062A\u0631 \u0645\u0627\u06A9\u0631\u0648\u06CC \u0646\u0627\u0645\u062C\u0627\u0632", + CommandNotAllowedInEnv: "\u200E%1 \u062F\u0631 \u0645\u062D\u06CC\u0637 \u200E%2 \u0645\u062C\u0627\u0632 \u0646\u06CC\u0633\u062A", + MultipleLabel: "\u0628\u0631\u0686\u0633\u067E \u00AB%1\u00BB \u0686\u0646\u062F\u0628\u0627\u0631 \u062A\u0639\u0631\u06CC\u0641\u200C\u0634\u062F\u0647", + CommandAtTheBeginingOfLine: "%1 \u0628\u0627\u06CC\u062F \u062F\u0631 \u0634\u0631\u0648\u0639 \u062E\u0637 \u0628\u06CC\u0627\u06CC\u062F", + IllegalAlign: "\u0686\u06CC\u0646\u0634 \u0645\u0634\u062E\u0635\u200C\u0634\u062F\u0647\u0654 \u0646\u0627\u0645\u062C\u0627\u0632 \u062F\u0631 \u200E%1", + BadMathStyleFor: "\u0633\u0628\u06A9 \u0628\u062F \u0631\u06CC\u0627\u0636\u06CC \u0628\u0631\u0627\u06CC \u200E%1", + PositiveIntegerArg: "\u0646\u0634\u0627\u0646\u0648\u0646\u062F \u0628\u0647 \u200E%1 \u0628\u0627\u06CC\u062F \u06CC\u06A9 \u0639\u062F\u062F \u0645\u062B\u0628\u062A \u0628\u0627\u0634\u062F", + MultipleBBoxProperty: "%1 \u062F\u0648\u0628\u0627\u0631 \u062F\u0631 \u200E%2 \u062A\u0639\u0631\u06CC\u0641 \u0634\u062F\u0647\u200C\u0627\u0633\u062A", + ExtraEndMissingBegin: "\u200E%1 \u0627\u0636\u0627\u0641\u06CC \u06CC\u0627 \\begingroup \u06AF\u0645\u200C\u0634\u062F\u0647", + GlobalNotFollowedBy: "\u200E%1 \u0628\u0647 \u062F\u0646\u0628\u0627\u0644 \u200E\\let\u060C \u200E\\def \u06CC\u0627 \u200E\\newcommand \u0646\u06CC\u0627\u0645\u062F\u0647\u200C\u0627\u0633\u062A", + UndefinedColorModel: "\u0645\u062F\u0644 \u0631\u0646\u06AF\u06CC '%1' \u062A\u0639\u0631\u06CC\u0641 \u0646\u0634\u062F\u0647\u200C\u0627\u0633\u062A", + ModelArg1: "\u0645\u0642\u0627\u062F\u06CC\u0631 \u0631\u0646\u06AF\u06CC \u0628\u0631\u0627\u06CC \u0645\u062F\u0644 %1 \u0646\u06CC\u0627\u0632\u0645\u0646\u062F \u06F3 \u0639\u062F\u062F \u0627\u0633\u062A", + InvalidDecimalNumber: "\u0639\u062F\u062F \u0627\u0639\u0634\u0627\u0631\u06CC \u0646\u0627\u0645\u0639\u062A\u0628\u0631", + ModelArg2: "\u0645\u0642\u0627\u062F\u06CC\u0631 \u0631\u0646\u06AF\u06CC \u0628\u0631\u0627\u06CC \u0645\u062F\u0644 %1 \u0645\u06CC\u200C\u0628\u0627\u06CC\u0633\u062A \u0628\u06CC\u0646 %2 \u0648 %3 \u0628\u0627\u0634\u062F", + InvalidNumber: "\u0639\u062F\u062F \u0646\u0627\u0645\u0639\u062A\u0628\u0631", + NewextarrowArg1: "\u0646\u0634\u0627\u0648\u0646\u062F \u0627\u0648\u0644 \u0628\u0647 \u200E%1 \u0645\u06CC\u200C\u0628\u0627\u06CC\u0633\u062A \u06CC\u06A9 \u0646\u0627\u0645 \u06A9\u0646\u062A\u0631\u0644\u06CC \u062F\u0646\u0628\u0627\u0644\u0647 \u0628\u0627\u0634\u062F", + NewextarrowArg2: "\u0646\u0634\u0646\u0627\u0648\u0646\u062F \u062F\u0648\u0645 \u200E%1 \u0628\u0627\u06CC\u062F \u062F\u0648 \u0639\u062F\u062F \u0635\u062D\u06CC\u062D \u062C\u062F\u0627 \u0634\u062F\u0647 \u0628\u0627 \u06CC\u06A9 \u06A9\u0627\u0645\u0627 \u0628\u0627\u0634\u062F", + NewextarrowArg3: "\u0646\u0634\u0627\u0646\u0648\u0646\u062F \u0633\u0648\u0645 \u200E%1 \u0628\u0627\u06CC\u062F \u0639\u062F\u062F \u06CC\u06A9 \u0646\u0648\u06CC\u0633\u0647\u0654 \u06CC\u0648\u0646\u06CC\u06A9\u062F \u0628\u0627\u0634\u062F", + NoClosingChar: "%1 \u0628\u0633\u062A\u0647 \u06CC\u0627\u0641\u062A \u0646\u0634\u062F", + IllegalControlSequenceName: "\u0646\u0627\u0645 \u062F\u0646\u0628\u0627\u0644\u0647\u0654 \u06A9\u0646\u062A\u0631\u0644\u06CC \u0628\u0631\u0627\u06CC \u200E%1 \u0646\u0627\u0645\u062C\u0627\u0632", + IllegalParamNumber: "\u0639\u062F\u062F \u0646\u0627\u0645\u062C\u0627\u0632 \u067E\u0627\u0631\u0627\u0645\u062A\u0631 \u062F\u0631 \u200E%1 \u0645\u0634\u062E\u0635 \u0634\u062F\u0647\u200C\u0627\u0633\u062A", + MissingCS: "\u200E%1 \u0628\u0627\u06CC\u062F \u0628\u0647 \u062F\u0646\u0628\u0627\u0644 \u06CC\u06A9 \u062F\u0646\u0628\u0627\u0644\u0647\u0654 \u06A9\u0646\u062A\u0631\u0644\u06CC \u0628\u06CC\u0627\u06CC\u062F", + CantUseHash2: "\u0627\u0633\u062A\u0641\u0627\u062F\u0647\u0654 \u0646\u0627\u0645\u062C\u0627\u0632 \u0627\u0632 # \u062F\u0631 \u0627\u0644\u06AF\u0648 \u0628\u0631\u0627\u06CC %1", + SequentialParam: "\u067E\u0627\u0631\u0627\u0645\u062A\u0631\u0647\u0627 \u0628\u0631\u0627\u06CC %1 \u0628\u0627\u06CC\u062F \u06CC\u06A9 \u062F\u0646\u0628\u0627\u0644\u0647\u0654 \u0639\u062F\u062F\u06CC \u0628\u0627\u0634\u062F", + MissingReplacementString: "\u0631\u0634\u062A\u0647\u0654 \u062C\u0627\u06CC\u06AF\u0632\u06CC\u0646 \u06AF\u0645\u200C\u0634\u062F\u0647 \u0628\u0631\u0627\u06CC \u062A\u0639\u0631\u06CC\u0641 \u200E%1", + MismatchUseDef: "\u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0627\u0632 \u200E%1 \u0628\u0627 \u062A\u0639\u0631\u06CC\u0641 \u0622\u0646 \u062A\u0637\u0628\u06CC\u0642 \u0646\u062F\u0627\u0631\u062F", + DoubleExponentPrime: "\u062A\u0648\u0627\u0646 \u062F\u0648 \u0645\u0648\u062C\u0628 \u062A\u0648\u0627\u0646 \u0645\u0636\u0627\u0639\u0641 \u0634\u062F: \u0627\u0632 \u0622\u06A9\u0648\u0644\u0627\u062F \u0628\u0631\u0627\u06CC \u0631\u0648\u0634\u0646\u200C\u0633\u0627\u0632\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F", + CantUseHash1: "\u0634\u0645\u0627 \u0646\u0645\u06CC\u200C\u062A\u0648\u0627\u0646\u06CC\u062F \u00AB\u0645\u0627\u06A9\u0631\u0648 \u0646\u0648\u06CC\u0633\u0647\u0654 \u067E\u0627\u0631\u0627\u0645\u062A\u0631 #\u00BB \u062F\u0631 \u062D\u0627\u0644\u062A \u0631\u06CC\u0627\u0636\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u06A9\u0646\u06CC\u062F", + MaxMacroSub1: "\u0627\u0632 \u0628\u06CC\u0634\u06CC\u0646\u0647\u0654 \u0634\u0645\u0627\u0631 \u062C\u0627\u06CC\u06AF\u0632\u06CC\u0646\u06CC \u0645\u0627\u06A9\u0631\u0648\u0647\u0627\u06CC MathJax \u0639\u0628\u0648\u0631 \u0634\u062F\u0647\u200C\u0627\u0633\u062A\u061B \u0622\u06CC\u0627 \u06CC\u06A9 \u0641\u0631\u0627\u062E\u0648\u0627\u0646\u06CC \u0628\u0627\u0632\u06AF\u0634\u062A\u06CC \u0648\u062C\u0648\u062F \u062F\u0627\u0631\u062F\u061F", + MaxMacroSub2: "\u0627\u0632 \u0634\u0645\u0627\u0631 \u0628\u06CC\u0634\u06CC\u0646\u0647\u0654 \u062A\u0639\u062F\u0627\u062F \u062C\u0627\u06CC\u06AF\u0632\u06CC\u0646\u06CC MathJax \u0639\u0628\u0648\u0631 \u0634\u062F\u0647\u200C\u0627\u0633\u062A\u061B \u0622\u06CC\u0627 \u06CC\u06A9 \u0645\u062D\u06CC\u0637 \u0644\u06CC\u062A\u06A9 \u0628\u0627\u0632\u0634\u062A\u06AF\u06CC \u0645\u0648\u062C\u0648\u062F \u0627\u0633\u062A\u061F", + BracketMustBeDimension: "\u0622\u0631\u06AF\u0648\u0645\u0627\u0646 \u0622\u06A9\u0648\u0644\u0627\u062F \u200E%1 \u0645\u06CC\u200C\u0628\u0627\u06CC\u0633\u062A \u06CC\u06A9 \u0628\u0639\u062F \u0628\u0627\u0634\u062F", + MaxBufferSize: "\u0627\u0646\u062F\u0627\u0632\u0647\u0654 \u0645\u06CC\u0627\u0646\u06AF\u06CC\u0631 \u062F\u0627\u062E\u0644\u06CC MathJax \u06AF\u0630\u0634\u062A\u0647 \u0634\u062F\u0647\u061B \u0622\u06CC\u0627 \u06CC\u06A9 \u0641\u0631\u0627\u062E\u0648\u0627\u0646\u06CC \u0645\u0627\u06A9\u0631\u0648\u06CC \u0628\u0627\u0632\u06AF\u0634\u062A\u06CC \u0648\u062C\u0648\u062F \u062F\u0627\u0631\u062F\u061F", + ErroneousNestingEq: "\u0633\u0627\u062E\u062A\u0627\u0631\u0647\u0627\u06CC \u0627\u0634\u062A\u0628\u0627\u0647 \u062A\u0648\u062F\u0631\u062A\u0648\u06CC \u0645\u0639\u0627\u062F\u0644\u0647", + MultlineRowsOneCol: "\u0633\u0637\u0631 \u062F\u0631\u0648\u0646 \u0645\u062D\u06CC\u0637 %1 \u0645\u06CC\u200C\u0628\u0627\u06CC\u0633\u062A \u062F\u0642\u06CC\u0642\u0627\u064B \u06CC\u06A9 \u0633\u062A\u0648\u0646 \u062F\u0627\u0634\u062A\u0647 \u0628\u0627\u0634\u062F", + InvalidBBoxProperty: "'%1' \u0628\u0647 \u0646\u0638\u0631 \u06CC\u06A9 \u0631\u0646\u06AF\u060C \u0627\u0646\u062F\u0627\u0632\u0647\u0654 \u0628\u0627\u0644\u0634\u062A\u06A9 \u06CC\u0627 \u0633\u0628\u06A9 \u0628\u0647 \u0646\u0638\u0631 \u0646\u0645\u06CC\u200C\u0631\u0633\u062F", + RunawayArgument: "\u0622\u0631\u06AF\u0648\u0645\u0627\u0646 \u0641\u0631\u0627\u0631 \u0628\u0631\u0627\u06CC \u200E%1\u061F", + NoClosingDelim: "\u062C\u062F\u0627\u06A9\u0646\u0646\u062F\u0647\u0654 \u0628\u0633\u062A\u0646 \u0628\u0631\u0627\u06CC \u200E%1 \u067E\u06CC\u062F\u0627 \u0646\u0634\u062F" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fa/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/fa/fa.js b/modules/MathJax/unpacked/localization/fa/fa.js new file mode 100644 index 0000000..d21fbf0 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fa/fa.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fa/fa.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fa",null,{ + menuTitle: "\u0641\u0627\u0631\u0633\u06CC", + fontDirection: "rtl", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax \u06CC\u06A9 \u06A9\u0644\u0648\u0686\u06A9 \u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u06A9\u0627\u0631\u0628\u0631\u06CC \u06CC\u0627\u0641\u062A \u06A9\u0647 \u0634\u0627\u0645\u0644 \u06A9\u062F \u0627\u062C\u0631\u0627\u06CC\u06CC \u0627\u0633\u062A. \u0622\u06CC\u0627 \u0645\u06CC\u200C\u062E\u0648\u0627\u0647\u06CC\u062F \u0622\u0646 \u0631\u0627 \u0627\u062C\u0631\u0627 \u06A9\u0646\u06CC\u062F\u061F\n\n(\u0628\u0647\u062A\u0631 \u0627\u0633\u062A \u0628\u0631 \u0644\u063A\u0648 \u0628\u0641\u0634\u0627\u0631\u06CC\u062F \u0645\u06AF\u0631 \u0627\u06CC\u0646\u06A9\u0647 \u062E\u0648\u062F\u062A\u0627\u0646 \u06A9\u0644\u0648\u0686\u06A9 \u0631\u0627 \u062A\u0646\u0638\u06CC\u0645\u200C\u06A9\u0631\u062F\u0647\u200C\u0627\u06CC\u062F.)", + MathProcessingError: "\u062E\u0637\u0627\u06CC \u067E\u0631\u062F\u0627\u0632\u0634 \u0631\u06CC\u0627\u0636\u06CC", + MathError: "\u062D\u0637\u0627\u06CC \u0631\u06CC\u0627\u0636\u06CC", + LoadFile: "\u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC %1", + Loading: "\u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC", + LoadFailed: "\u062E\u0637\u0627 \u062F\u0631 \u0628\u0627\u0631\u06AF\u06CC\u0631\u06CC \u067E\u0631\u0648\u0646\u062F\u0647: %1", + ProcessMath: "\u067E\u0631\u062F\u0627\u0632\u0634 \u0631\u06CC\u0627\u0636\u06CC: %1\u066A", + Processing: "\u067E\u0631\u062F\u0627\u0632\u0634", + TypesetMath: "\u062D\u0631\u0648\u0641\u200C\u0686\u06CC\u0646\u06CC \u0631\u06CC\u0627\u0636\u06CC: %1\u066A", + Typesetting: "\u062D\u0631\u0648\u0641\u200C\u0686\u06CC\u0646\u06CC", + MathJaxNotSupported: "\u0645\u0631\u0648\u0631\u06AF\u0631 \u0634\u0645\u0627 \u0627\u0632 MathJax \u067E\u0634\u062A\u06CC\u0628\u0627\u0646\u06CC \u0646\u0645\u06CC\u200C\u06A9\u0646\u062F" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + return 1; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fa/fa.js"); diff --git a/modules/MathJax/unpacked/localization/fi/FontWarnings.js b/modules/MathJax/unpacked/localization/fi/FontWarnings.js new file mode 100644 index 0000000..00e5d8c --- /dev/null +++ b/modules/MathJax/unpacked/localization/fi/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fi/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fi","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fi/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/fi/HTML-CSS.js b/modules/MathJax/unpacked/localization/fi/HTML-CSS.js new file mode 100644 index 0000000..c8d1606 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fi/HTML-CSS.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fi/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fi","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fi/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/fi/HelpDialog.js b/modules/MathJax/unpacked/localization/fi/HelpDialog.js new file mode 100644 index 0000000..cb3e907 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fi/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fi/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fi","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fi/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/fi/MathML.js b/modules/MathJax/unpacked/localization/fi/MathML.js new file mode 100644 index 0000000..fc0eca2 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fi/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fi/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fi","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fi/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/fi/MathMenu.js b/modules/MathJax/unpacked/localization/fi/MathMenu.js new file mode 100644 index 0000000..019d469 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fi/MathMenu.js @@ -0,0 +1,85 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fi/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fi","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + MathMLcode: "MathML-koodi", + OriginalMathML: "Alkuper\u00E4inen MathML", + TeXCommands: "TeX-komennot", + AsciiMathInput: "AsciiMathML-sy\u00F6te", + Original: "Alkuper\u00E4inen muoto", + ErrorMessage: "Virheviesti", + Annotation: "Huomautus", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "Content MathML", + OpenMath: "OpenMath", + texHints: "N\u00E4yt\u00E4 TeX-vihjeet MathML:ss\u00E4", + Settings: "Matematiikan asetukset", + ZoomTrigger: "Loitonnustapa", + Hover: "Kursorin vienti ylle", + Click: "Napsautus", + DoubleClick: "Kaksoisnapsautus", + NoZoom: "Ei loitonnustapaa", + TriggerRequires: "Tapa vaatii:", + Option: "Option", + Alt: "Alt", + Command: "Command", + Control: "Control", + Shift: "Shift", + ZoomFactor: "Loitonnuskerroin", + MPHandles: "Anna MathPlayerin k\u00E4sitell\u00E4", + MenuEvents: "Valikkotapahtumat", + MouseEvents: "Hiiritapahtumat", + MenuAndMouse: "Hiiri- ja valikkotapahtumat", + FontPrefs: "Kirjasinasetukset", + ForHTMLCSS: "HTML-CSS:lle:", + Auto: "Automaattinen", + TeXLocal: "TeX (paikallinen)", + TeXWeb: "TeX (verkko)", + TeXImage: "TeX (kuva)", + STIXLocal: "STIX (paikallinen)", + ContextMenu: "Ponnahdusvalikko", + Browser: "Selain", + Scale: "Skaalaa kaikki matematiikka...", + Discoverable: "Korosta kun kursori tuodaan ylle", + Locale: "Kieli", + LoadLocale: "Lataa osoitteesta...", + About: "Tietoja MathJaxista", + Help: "MathJaxin ohje", + localTeXfonts: "k\u00E4ytt\u00E4en paikallisia TeX-kirjasimia", + webTeXfonts: "k\u00E4ytt\u00E4en verkon TeX-kirjasimia", + imagefonts: "K\u00E4ytt\u00E4en kuvakirjasimia", + localSTIXfonts: "k\u00E4ytt\u00E4en paikallisia STIX-kirjasimia", + webSVGfonts: "k\u00E4ytt\u00E4en verkon SVG-kirjasimia", + genericfonts: "k\u00E4ytt\u00E4en geneerisi\u00E4 unicode-kirjasimia", + wofforotffonts: "woff- tai otf-kirjasimia", + eotffonts: "eot-kirjasimia", + svgfonts: "svg-kirjasimia" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fi/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/fi/TeX.js b/modules/MathJax/unpacked/localization/fi/TeX.js new file mode 100644 index 0000000..34bf035 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fi/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fi/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fi","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fi/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/fi/fi.js b/modules/MathJax/unpacked/localization/fi/fi.js new file mode 100644 index 0000000..75e227d --- /dev/null +++ b/modules/MathJax/unpacked/localization/fi/fi.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fi/fi.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fi",null,{ + menuTitle: "suomi", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax on l\u00F6yt\u00E4nyt ev\u00E4steen, joka sis\u00E4lt\u00E4\u00E4 asetuksia ja ohjelmakoodia. Haluatko ajaa sen?\n\n(Peru, ellet ole luonut ev\u00E4stett\u00E4 itse.)", + MathProcessingError: "Matematiikan k\u00E4sittely ep\u00E4onnistui", + MathError: "Matematiikkavirhe", + LoadFile: "Ladataan tiedostoa %1", + Loading: "Ladataan", + LoadFailed: "Tiedoston %1 lataaminen ep\u00E4onnistui", + ProcessMath: "K\u00E4sitell\u00E4\u00E4n matematiikkaa: %1%%", + Processing: "K\u00E4sitell\u00E4\u00E4n", + TypesetMath: "Ladotaan matematiikkaa: %1%%", + Typesetting: "Ladotaan", + MathJaxNotSupported: "Selaimesi ei tue MathJaxia" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) {return 1} // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fi/fi.js"); diff --git a/modules/MathJax/unpacked/localization/fr/FontWarnings.js b/modules/MathJax/unpacked/localization/fr/FontWarnings.js new file mode 100644 index 0000000..bce5481 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fr/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fr/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fr","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax utilise les polices Web pour afficher les expressions math\u00E9matiques sur cette page. Celles-ci mettent du temps \u00E0 \u00EAtre t\u00E9l\u00E9charg\u00E9es et la page serait affich\u00E9e plus rapidement si vous installiez les polices math\u00E9matiques directement dans le dossier des polices de votre syst\u00E8me.", + imageFonts: "MathJax utilise des images de caract\u00E8res plut\u00F4t que les polices Web ou locales. Ceci rend le rendu plus lent que la normale et les expressions math\u00E9matiques peuvent ne pas s'imprimer \u00E0 la r\u00E9solution maximale de votre imprimante", + noFonts: "MathJax est incapable de localiser une police \u00E0 utiliser pour afficher ses math\u00E9matiques, et les polices image ne sont pas disponibles, donc il doit se rabattre sur les caract\u00E8res unicode en esp\u00E9rant que votre navigateur pourra les afficher. Certains caract\u00E8res peuvent ne pas s\u2019afficher correctement, voire m\u00EAme pas du tout.", + webFonts: "La plupart des navigateurs modernes permettent de t\u00E9l\u00E9charger des polices depuis le web. Mettre \u00E0 jour votre navigateur vers une version plus r\u00E9cente (ou changer de navigateur) pourrait am\u00E9liorer la qualit\u00E9 des math\u00E9matiques sur cette page.", + fonts: "MathJax peut utiliser soit les [polices STIX](%1) soit les [polices TeX MathJax](%2). T\u00E9l\u00E9chargez et installez une de ces polices pour am\u00E9liorer votre ressenti avec MathJax.", + STIXPage: "Cette page est con\u00E7ue pour utiliser les [polices STIX](%1). T\u00E9l\u00E9chargez et installez ces polices pour am\u00E9liorer votre exp\u00E9rience avec MathJax.", + TeXPage: "Cette page est con\u00E7ue pour utiliser les [polices TeX MathJax](%1). T\u00E9l\u00E9chargez et installez ces polices pour am\u00E9liorer votre exp\u00E9rience avec MathJax." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fr/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/fr/HTML-CSS.js b/modules/MathJax/unpacked/localization/fr/HTML-CSS.js new file mode 100644 index 0000000..79592b4 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fr/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fr/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fr","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "T\u00E9l\u00E9chargement de la police Web %1", + CantLoadWebFont: "Impossible de t\u00E9l\u00E9charger la police Web %1", + FirefoxCantLoadWebFont: "Firefox ne peut pas charger les polices web depuis un h\u00F4te distant", + CantFindFontUsing: "Impossible de trouver une police valide en utilisant %1", + WebFontsNotAvailable: "Polices web non disponibles -- les polices image seront utilis\u00E9es \u00E0 la place" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fr/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/fr/HelpDialog.js b/modules/MathJax/unpacked/localization/fr/HelpDialog.js new file mode 100644 index 0000000..0af1524 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fr/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fr/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fr","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "Aide MathJax", + MathJax: "*MathJax* est une biblioth\u00E8que JavaScript qui permet aux auteurs de pages d\u2019inclure des maths dans leurs pages web. En tant que lecteur, vous n\u2019avez rien besoin de faire pour que cela fonctionne.", + Browsers: "*Navigateurs*: MathJax fonctionne avec tous les navigateurs modernes y compris Internet Explorer 6, Firefox 3, Chrome 0.2, Safari 2, Opera 9.6 et leurs versions sup\u00E9rieures ainsi que la plupart des navigateurs pour mobiles et tablettes.", + Menu: "*Math Menu*: MathJax ajoute un menu contextuel aux \u00E9quations. Cliquez-droit ou CTRL-cliquez sur n\u2019importe quelle formule math\u00E9matique pour acc\u00E9der au menu.", + ShowMath: "*Afficher les maths comme* vous permet d\u2019afficher le balisage source de la formule pour copier-coller (comme MathML ou dans son format d\u2019origine).", + Settings: "*Param\u00E8tres* vous donne le contr\u00F4le sur les fonctionnalit\u00E9s de MathJax, comme la taille des math\u00E9matiques, et le m\u00E9canisme utilis\u00E9 pour afficher les \u00E9quations.", + Language: "*Langue* vous laisse s\u00E9lectionner la langue utilis\u00E9e par MathJax pour ses menus et ses messages d\u2019avertissement.", + Zoom: "*Zoom des maths*: Si vous avez des difficult\u00E9s \u00E0 lire une \u00E9quation, MathJax peut l\u2019agrandir pour vous aider \u00E0 mieux la voir.", + Accessibilty: "*Accessibilit\u00E9*: MathJax travaillera automatiquement avec les lecteurs d\u2019\u00E9cran pour rendre les math\u00E9matiques accessibles aux malvoyants.", + Fonts: "*Polices*: MathJax utilisera certaines polices math\u00E9matiques si elles sont install\u00E9es sur votre ordinateur\u202F; sinon, il utilisera les polices trouv\u00E9es sur le web. Bien que ce ne soit pas obligatoire, des polices install\u00E9es localement acc\u00E9l\u00E9reront la composition. Nous vous sugg\u00E9rons d\u2019installer les [polices STIX](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fr/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/fr/MathML.js b/modules/MathJax/unpacked/localization/fr/MathML.js new file mode 100644 index 0000000..0b84de4 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fr/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fr/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fr","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "\u00C9lement mglyph incorrect: %1", + BadMglyphFont: "Police non valide : %1", + MathPlayer: "MathJax n\u2019a pas pu configurer MathPlayer.\n\nSi MathPlayer n\u2019est pas install\u00E9, vous devez d\u2019abord le faire.\nSinon, il se peut que vos param\u00E8tres de s\u00E9curit\u00E9 emp\u00EAchent l\u2019ex\u00E9cution des contr\u00F4les ActiveX. Utilisez l\u2019entr\u00E9e Options Internet sous le menu Outils et s\u00E9lectionnez l\u2019onglet S\u00E9curit\u00E9, puis cliquez le bouton \u00AB Personnaliser le niveau \u00BB. V\u00E9rifiez que les param\u00E8tres pour 'Ex\u00E9cuter les contr\u00F4les ActiveX', et 'Comportement de fichiers binaires et des scripts' sont activ\u00E9s.\n\nPour le moment, vous verrez des messages d\u2019erreur au lieu de math\u00E9matiques compos\u00E9es.", + CantCreateXMLParser: "MathJax ne peut pas cr\u00E9er un analyseur XML pour MathML. V\u00E9rifiez que l\u2019option de s\u00E9curit\u00E9 'Contr\u00F4les ActiveX reconnus s\u00FBrs pour l\u2019\u00E9criture de scripts' est activ\u00E9e (utilisez l\u2019entr\u00E9e Options Internet dans le menu Outils, et s\u00E9lectionnez l\u2019onglet S\u00E9curit\u00E9, puis appuyez sur le bouton Personnaliser le niveau, pour le v\u00E9rifier).", + UnknownNodeType: "Type de n\u0153ud inconnu : %1", + UnexpectedTextNode: "N\u0153ud de texte inattendu : %1", + ErrorParsingMathML: "Erreur lors de l\u2019analyse de MathML", + ParsingError: "Erreur d\u2019analyse de MathML : %1", + MathMLSingleElement: "MathML doit \u00EAtre form\u00E9 d\u2019un unique \u00E9l\u00E9ment", + MathMLRootElement: "MathML doit \u00EAtre form\u00E9 d\u2019un \u00E9l\u00E9ment \u003Cmath\u003E, et pas %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fr/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/fr/MathMenu.js b/modules/MathJax/unpacked/localization/fr/MathMenu.js new file mode 100644 index 0000000..c5ea7fe --- /dev/null +++ b/modules/MathJax/unpacked/localization/fr/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fr/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fr","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Afficher sous forme", + MathMLcode: "Code MathML", + OriginalMathML: "MathML d\u2019origine", + TeXCommands: "Commandes TeX", + AsciiMathInput: "entr\u00E9e AsciiMathML", + Original: "Format d\u2019origine", + ErrorMessage: "Message d\u2019erreur", + Annotation: "Annotation", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "MathML de contenu", + OpenMath: "OpenMath", + texHints: "Afficher les aides TeX en MathML", + Settings: "Param\u00E9trages des maths", + ZoomTrigger: "D\u00E9clencheur de zoom", + Hover: "Survol", + Click: "Clic", + DoubleClick: "Double-clic", + NoZoom: "Pas de zoom", + TriggerRequires: "Le d\u00E9clencheur n\u00E9cessite :", + Option: "Option", + Alt: "Alt", + Command: "Commande", + Control: "Contr\u00F4le", + Shift: "Shift", + ZoomFactor: "Facteur de grossissement", + Renderer: "Rendu math\u00E9matique", + MPHandles: "Laisser MathPlayer g\u00E9rer :", + MenuEvents: "\u00C9v\u00E9nements de menu", + MouseEvents: "\u00C9v\u00E9nements de souris", + MenuAndMouse: "\u00C9v\u00E9nements de souris et de menu", + FontPrefs: "Pr\u00E9f\u00E9rences de police", + ForHTMLCSS: "Pour HTML-CSS :", + Auto: "Auto", + TeXLocal: "TeX (local)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (image)", + STIXLocal: "STIX (local)", + ContextMenu: "Menu contextuel", + Browser: "Navigateur", + Scale: "Mettre tous les maths \u00E0 l\u2019\u00E9chelle\u2026", + Discoverable: "Surligner au survol", + Locale: "Langue", + LoadLocale: "Charger depuis l\u2019URL\u2026", + About: "\u00C0 propos de MathJax", + Help: "Aide de MathJax", + localTeXfonts: "utiliser les polices TeX locales", + webTeXfonts: "utiliser les polices TeX du web", + imagefonts: "utiliser les polices Image", + localSTIXfonts: "utiliser les polices STIX locales", + webSVGfonts: "utiliser les polices SVG du web", + genericfonts: "utiliser les polices unicode g\u00E9n\u00E9riques", + wofforotffonts: "polices woff ou otf", + eotffonts: "polices eot", + svgfonts: "polices svg", + WebkitNativeMMLWarning: "Votre navigateur ne semble pas prendre en charge MathML en natif, donc basculer sur MathML en sortie pourrait rendre les math\u00E9matiques illisibles sur cette page.", + MSIENativeMMLWarning: "Internet Explorer n\u00E9cessite le module MathPlayer pour traiter les sorties MathML.", + OperaNativeMMLWarning: "La prise en charge de MathML par Op\u00E9ra est limit\u00E9e, donc passer sur du MathML en sortie pourrait rendre certaines expressions peu lisibles.", + SafariNativeMMLWarning: "Le MathML natif de votre navigateur n\u2019impl\u00E9mente pas toutes les fonctionnalit\u00E9s utilis\u00E9s par MathJax, donc certaines expressions pourraient ne pas \u00EAtre affich\u00E9es correctement.", + FirefoxNativeMMLWarning: "Le MathML natif de votre navigateur n\u2019impl\u00E9mente pas toutes les fonctionnalit\u00E9s de MathJax, donc certaines expressions pourraient \u00EAtre mal affich\u00E9es.", + MSIESVGWarning: "SVG n\u2019est pas pris en charge par Internet Explorer avant la version 9 (ni dans l\u2019\u00E9mulation de IE8 ou inf\u00E9rieur, par cons\u00E9quent). Basculer sur SVG en sortie pourrait faire que les math\u00E9matiques s\u2019affichent mal.", + LoadURL: "Charger les donn\u00E9es de traduction depuis cette URL :", + BadURL: "L\u2019URL devrait \u00EAtre un fichier javascript qui d\u00E9finit les donn\u00E9es de traduction de MathJax. Les noms de fichier Javascript devraient se terminer par '.js'", + BadData: "\u00C9chec du chargement des donn\u00E9es de traduction depuis %1", + SwitchAnyway: "Basculer tout de m\u00EAme le rendu\u202F?\n\n(Cliquez OK pour basculer, ANNULER pour continuer avec le rendu actuel)", + ScaleMath: "Mettre \u00E0 l\u2019\u00E9chelle toutes les math\u00E9matiques (par rapport au texte environnant) de", + NonZeroScale: "L\u2019\u00E9chelle ne devrait pas \u00EAtre z\u00E9ro", + PercentScale: "L\u2019\u00E9chelle devrait \u00EAtre un pourcentage (par ex., 120%%)", + IE8warning: "Cela d\u00E9sactivera le menu MathJax et les fonctionnalit\u00E9s de zoom, mais \u00E0 la place, vous pouvez Alt-cliquer sur une expression pour obtenir le menu MathJax.", + IE9warning: "Le menu contextuel MathJax sera d\u00E9sactiv\u00E9, mais \u00E0 la place, vous pouvez Alt-cliquer sur une expression pour obtenir le menu MathJax.", + NoOriginalForm: "Aucun format d\u2019origine disponible", + Close: "Fermer", + EqSource: "Source de l\u2019\u00E9quation MathJax" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fr/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/fr/TeX.js b/modules/MathJax/unpacked/localization/fr/TeX.js new file mode 100644 index 0000000..953d35a --- /dev/null +++ b/modules/MathJax/unpacked/localization/fr/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fr/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fr","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Accolade ouvrante manquante ou accolade fermante non attendue", + ExtraCloseMissingOpen: "Accolade fermante non attendue ou accolade ouvrante manquante", + MissingLeftExtraRight: "Commande \\left manquante ou commande \\right non attendue", + MissingScript: "Argument en exposant ou en indice manquant", + ExtraLeftMissingRight: "Commande \\left inattendue ou commande \\right manquante", + Misplaced: "Mauvaise position pour la commande %1", + MissingOpenForSub: "Accolade ouvrante manquante pour le script en indice", + MissingOpenForSup: "Accolade ouvrante manquante pour le script en exposant", + AmbiguousUseOf: "Usage ambigu de la commande %1", + EnvBadEnd: "\\begin{%1} s'est termin\u00E9 par un \\end{%2}", + EnvMissingEnd: "\\end{%1} manquant", + MissingBoxFor: "Boite manquante pour la commande %1", + MissingCloseBrace: "Accolade fermante manquante", + UndefinedControlSequence: "Commande %1 non d\u00E9finie", + IllegalControlSequenceName: "Nom de contr\u00F4le de s\u00E9quence non autoris\u00E9 pour la commande %1", + IllegalParamNumber: "Nombre de param\u00E8tres incorrect pour la commande %1", + DoubleExponent: "Double exposant: utilisez des accolades pour clarifier", + DoubleSubscripts: "Double indice: utilisez des accolades pour clarifier", + DoubleExponentPrime: "Un prime entra\u00EEne un double exposant : utilisez des accolades pour clarifier", + CantUseHash1: "Vous ne pouvez pas utilisez le caract\u00E8re #, indiquant un param\u00E8tre de macro, dans le mode math\u00E9matique", + CantUseHash2: "Usage du caract\u00E8re # non autoris\u00E9 dans le mod\u00E8le pour la s\u00E9quence de contr\u00F4le %1", + MisplacedMiddle: "La commande %1 doit \u00EAtre plac\u00E9e \u00E0 l\u2019int\u00E9rieur d\u2019une section \\left ... \\right", + MisplacedLimits: "La commande %1 n'est autoris\u00E9e que sur les op\u00E9rateurs", + MisplacedMoveRoot: "La commande %1 n'est autoris\u00E9e qu'\u00E0 l'int\u00E9rieur d'une racine", + MultipleCommand: "Usage multiple de la commande %1", + IntegerArg: "L\u2019argument de la commande %1 doit \u00EAtre un entier", + PositiveIntegerArg: "L'argument de la commande %1 doit \u00EAtre un entier strictement positif", + NotMathMLToken: "L'\u00E9l\u00E9ment %1 n'est pas un \u00E9l\u00E9ment MathML \u00E9l\u00E9mentaire", + InvalidMathMLAttr: "Attribut MathML non valide: %1", + UnknownAttrForElement: "Attribut %1 inconnu pour l'\u00E9l\u00E9ment %2", + MaxMacroSub1: "Le nombre maximal de substitution de macro autoris\u00E9 par MathJax a \u00E9t\u00E9 d\u00E9pass\u00E9. Il y a t'il un appel de macro r\u00E9cursif?", + MaxMacroSub2: "Le nombre maximal de substitutions de macros autoris\u00E9 par MathJax a \u00E9t\u00E9 d\u00E9pass\u00E9. Y a-t-il un environnement LaTeX r\u00E9cursif ?", + MissingArgFor: "Argument manquant pour la commande %1", + ExtraAlignTab: "Caract\u00E8re d'alignement '\u0026' non attendue pour le texte de la commande \\cases", + BracketMustBeDimension: "L'argument entre crochets de la commande %1 doit \u00EAtre une dimension", + InvalidEnv: "Nom d'environnement '%1' non valide", + UnknownEnv: "Environnement '%1' inconnu", + ExtraCloseLooking: "Accolade fermante non attendue lors de la recherche de %1", + MissingCloseBracket: "Impossible de trouver le crochet fermant pour l'argument de la commande %1", + MissingOrUnrecognizedDelim: "D\u00E9limiteur manquant ou non reconnu pour la commande %1", + MissingDimOrUnits: "Dimension ou unit\u00E9 manquante pour la commande %1", + TokenNotFoundForCommand: "Impossible de trouver la commande %1 pour la commande %2", + MathNotTerminated: "Expression math\u00E9matique non termin\u00E9e \u00E0 l'int\u00E9rieur de cette boite de texte", + IllegalMacroParam: "Param\u00E8tre de r\u00E9f\u00E9rence de macro non autoris\u00E9", + MaxBufferSize: "Taille maximale du tampon interne de MathJax d\u00E9pass\u00E9e. Y a-t-il un appel de macro r\u00E9cursif ?", + CommandNotAllowedInEnv: "La commande %1 n'est pas autoris\u00E9 \u00E0 l'int\u00E9rieur de l'environnement %2", + MultipleLabel: "\u00C9tiquette '%1' d\u00E9j\u00E0 d\u00E9finie", + CommandAtTheBeginingOfLine: "La commande %1 doit \u00EAtre plac\u00E9e en d\u00E9but de ligne", + IllegalAlign: "Alignement non autoris\u00E9 pour la commande %1", + BadMathStyleFor: "Style math\u00E9matique non valide pour la commande %1", + ErroneousNestingEq: "Emboitement incorrect des structures d'\u00E9quation", + MultlineRowsOneCol: "Les lignes au sein de l\u2019environnement %1 doivent avoir exactement une colonne", + NoClosingDelim: "Impossible de trouver le d\u00E9limiteur fermant pour la commande %1", + NoClosingChar: "Impossible de trouver le d\u00E9limiteur '%1' fermant", + MultipleBBoxProperty: "La propri\u00E9t\u00E9 %1 de la commande %2 est sp\u00E9cifi\u00E9e deux fois", + InvalidBBoxProperty: "La valeur '%1' ne semble pas \u00EAtre une couleur, une dimension de marge int\u00E9rieur ou un style.", + ExtraEndMissingBegin: "Commande %1 non attendue ou commande \\begingroup manquante", + GlobalNotFollowedBy: "Commande %1 non suivie d\u2019une commande \\let, \\def ou \\newcommand", + NewextarrowArg1: "Le premier argument de la commande %1 doit \u00EAtre le nom d'une s\u00E9quence de contr\u00F4le", + NewextarrowArg2: "Le second argument de la commande %1 doit \u00EAtre deux entiers s\u00E9par\u00E9s par une virgule", + NewextarrowArg3: "Le troisi\u00E8me argument de la commande %1 doit \u00EAtre la valeur d\u2019un caract\u00E8re unicode", + UndefinedColorModel: "Le mod\u00E8le de couleur '%1' n'est pas d\u00E9fini", + ModelArg1: "Les valeurs de couleurs pour le mod\u00E8le %1 n\u00E9cessitent 3 nombres", + InvalidDecimalNumber: "Nombre d\u00E9cimal non valide", + ModelArg2: "Les valeurs de couleurs pour le mod\u00E8le %1 doivent \u00EAtre comprises entre %2 et %3", + InvalidNumber: "Nombre non valide", + MissingCS: "%1 doit \u00EAtre suivi d'une s\u00E9quence de contr\u00F4le", + SequentialParam: "Les param\u00E8tres de la s\u00E9quence de contr\u00F4le %1 doivent \u00EAtre \u00E9num\u00E9r\u00E9s de fa\u00E7on s\u00E9quentielle", + MissingReplacementString: "Chaine de caract\u00E8re de remplacement manquante pour la d\u00E9finition %1", + MismatchUseDef: "L\u2019utilisation de la commande %1 ne correspond pas \u00E0 sa d\u00E9finition", + RunawayArgument: "Argument non termin\u00E9 pour la commande %1?" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fr/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/fr/fr.js b/modules/MathJax/unpacked/localization/fr/fr.js new file mode 100644 index 0000000..6b0b6d6 --- /dev/null +++ b/modules/MathJax/unpacked/localization/fr/fr.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/fr/fr.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("fr",null,{ + menuTitle: "fran\u00E7ais", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax a trouv\u00E9 un t\u00E9moin (cookie) de configuration utilisateur qui inclut du code ex\u00E9cutable. Souhaitez vous l\u2019ex\u00E9cuter ?\n\n(Choisissez Annuler sauf si vous avez cr\u00E9\u00E9 ce t\u00E9moin vous-m\u00EAme)", + MathProcessingError: "Erreur de traitement de la formule math\u00E9matique", + MathError: "Erreur dans la formule math\u00E9matique", + LoadFile: "T\u00E9l\u00E9chargement de %1", + Loading: "T\u00E9l\u00E9chargement", + LoadFailed: "\u00C9chec du t\u00E9l\u00E9chargement de %1", + ProcessMath: "Traitement des formules: %1%%", + Processing: "Traitement", + TypesetMath: "Composition des formules: %1%%", + Typesetting: "Composition", + MathJaxNotSupported: "Votre navigateur ne supporte pas MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (0 <= n && n < 2) {return 1} // one + return 2; // other + }, + number: function (n) { + return String(n).replace(".", ","); // replace dot by comma + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/fr/fr.js"); diff --git a/modules/MathJax/unpacked/localization/gl/FontWarnings.js b/modules/MathJax/unpacked/localization/gl/FontWarnings.js new file mode 100644 index 0000000..46fa625 --- /dev/null +++ b/modules/MathJax/unpacked/localization/gl/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/gl/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("gl","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/gl/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/gl/HTML-CSS.js b/modules/MathJax/unpacked/localization/gl/HTML-CSS.js new file mode 100644 index 0000000..4a32648 --- /dev/null +++ b/modules/MathJax/unpacked/localization/gl/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/gl/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("gl","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Cargando o tipo de letra web %1", + CantLoadWebFont: "Non se pode cargar o tipo de letra web %1", + FirefoxCantLoadWebFont: "Firefox non pode cargar os tipos de letra web desde un servidor remoto", + CantFindFontUsing: "Non se pode atopar un tipo de letra v\u00E1lido utilizando %1", + WebFontsNotAvailable: "Os tipos de letra web non est\u00E1n dispo\u00F1ibles; use os tipos de letra de imaxe no seu lugar" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/gl/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/gl/HelpDialog.js b/modules/MathJax/unpacked/localization/gl/HelpDialog.js new file mode 100644 index 0000000..2f261db --- /dev/null +++ b/modules/MathJax/unpacked/localization/gl/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/gl/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("gl","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/gl/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/gl/MathML.js b/modules/MathJax/unpacked/localization/gl/MathML.js new file mode 100644 index 0000000..519ca99 --- /dev/null +++ b/modules/MathJax/unpacked/localization/gl/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/gl/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("gl","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/gl/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/gl/MathMenu.js b/modules/MathJax/unpacked/localization/gl/MathMenu.js new file mode 100644 index 0000000..5c5be64 --- /dev/null +++ b/modules/MathJax/unpacked/localization/gl/MathMenu.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/gl/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("gl","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/gl/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/gl/TeX.js b/modules/MathJax/unpacked/localization/gl/TeX.js new file mode 100644 index 0000000..0a2fc27 --- /dev/null +++ b/modules/MathJax/unpacked/localization/gl/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/gl/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("gl","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/gl/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/gl/gl.js b/modules/MathJax/unpacked/localization/gl/gl.js new file mode 100644 index 0000000..5e23d60 --- /dev/null +++ b/modules/MathJax/unpacked/localization/gl/gl.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/gl/gl.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("gl",null,{ + menuTitle: "galego", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax atopou unha cookie de configuraci\u00F3n de usuario que incl\u00FAe c\u00F3digo executable. Quere executar ese c\u00F3digo?\n\n(Deber\u00EDa premer en \"Cancelar\", a menos que vostede crease a cookie.)", + MathProcessingError: "Erro de procesamento da f\u00F3rmula matem\u00E1tica", + MathError: "Erro na f\u00F3rmula matem\u00E1tica", + LoadFile: "Cargando \"%1\"", + Loading: "Cargando", + LoadFailed: "Erro ao cargar o ficheiro: %1", + ProcessMath: "Procesando as f\u00F3rmulas: %1%%", + Processing: "Procesando", + TypesetMath: "Compo\u00F1endo as f\u00F3rmulas: %1%%", + Typesetting: "Compo\u00F1endo", + MathJaxNotSupported: "O seu navegador non soporta MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) return 1; // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/gl/gl.js"); diff --git a/modules/MathJax/unpacked/localization/he/FontWarnings.js b/modules/MathJax/unpacked/localization/he/FontWarnings.js new file mode 100644 index 0000000..0847178 --- /dev/null +++ b/modules/MathJax/unpacked/localization/he/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/he/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("he","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D2\u05D5\u05E4\u05E0\u05D9 \u05E8\u05E9\u05EA \u05DB\u05D3\u05D9 \u05DC\u05D4\u05E6\u05D9\u05D2 \u05DE\u05EA\u05DE\u05D8\u05D9\u05E7\u05D4 \u05D1\u05D3\u05DA \u05D4\u05D6\u05D4. \u05D6\u05D4 \u05D3\u05D5\u05E8\u05E9 \u05D6\u05DE\u05DF \u05DC\u05D4\u05D5\u05E8\u05D3\u05D4, \u05D5\u05D4\u05D3\u05E3 \u05D9\u05D5\u05E6\u05D2 \u05DE\u05D4\u05E8 \u05D9\u05D5\u05EA\u05E8 \u05D0\u05DD \u05D9\u05D5\u05EA\u05E7\u05E0\u05D5 \u05D2\u05D5\u05E4\u05E0\u05D9 \u05DE\u05EA\u05DE\u05D8\u05D9\u05E7\u05D4 \u05D1\u05DE\u05E2\u05E8\u05DB\u05EA \u05E9\u05DC\u05DA.", + imageFonts: "MathJax \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D2\u05D5\u05E4\u05E0\u05D9 \u05EA\u05DE\u05D5\u05E0\u05D4 \u05D1\u05DE\u05E7\u05D5\u05DD \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D2\u05D5\u05E4\u05E0\u05D9 \u05E8\u05E9\u05EA. \u05D6\u05D4 \u05E2\u05D5\u05D1\u05D3 \u05DC\u05D0\u05D8 \u05DE\u05D4\u05E8\u05D2\u05D9\u05DC, \u05D5\u05D9\u05D9\u05EA\u05DB\u05DF \u05E9\u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA \u05DC\u05D0 \u05D9\u05D5\u05D3\u05E4\u05E1\u05D5 \u05D1\u05D2\u05D5\u05D3\u05DC \u05D4\u05E8\u05E6\u05D5\u05D9 \u05D1\u05DE\u05D3\u05E4\u05E1\u05EA \u05E9\u05DC\u05DA.", + noFonts: "MathJax \u05D0\u05D9\u05E0\u05D5 \u05DE\u05E6\u05DC\u05D9\u05D7 \u05DC\u05DE\u05E6\u05D5\u05D0 \u05D2\u05D5\u05E4\u05DF \u05DC\u05D4\u05E6\u05D2\u05EA \u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA, \u05D5\u05D2\u05D5\u05E4\u05E0\u05D9 \u05EA\u05DE\u05D5\u05E0\u05D4 \u05D0\u05D9\u05E0\u05DD \u05D6\u05DE\u05D9\u05E0\u05D9\u05DD, \u05D0\u05D6 \u05D0\u05E0\u05D7\u05E0\u05D5 \u05DE\u05E0\u05E1\u05D9\u05DD \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05EA\u05D5\u05D5\u05D9 \u05D9\u05D5\u05E0\u05D9\u05E7\u05D5\u05D3 \u05DB\u05DC\u05DC\u05D9\u05D9\u05DD \u05D1\u05EA\u05E7\u05D5\u05D5\u05D4 \u05E9\u05D4\u05D3\u05E4\u05D3\u05E4\u05DF \u05E9\u05DC\u05DA \u05D9\u05E6\u05DC\u05D9\u05D7 \u05DC\u05D4\u05E6\u05D9\u05D2 \u05D0\u05D5\u05EA\u05DD \u05E0\u05DB\u05D5\u05DF. \u05D9\u05D9\u05EA\u05DB\u05DF \u05E9\u05D7\u05DC\u05E7 \u05DE\u05D4\u05EA\u05D5\u05D5\u05D9\u05DD \u05DC\u05D0 \u05D9\u05D5\u05E6\u05D2\u05D5 \u05DB\u05E8\u05D0\u05D5\u05D9 \u05D0\u05D5 \u05DC\u05D0 \u05D9\u05D5\u05E6\u05D2\u05D5 \u05D1\u05DB\u05DC\u05DC.", + webFonts: "\u05E8\u05D5\u05D1 \u05D4\u05D3\u05E4\u05D3\u05E4\u05E0\u05D9\u05DD \u05D4\u05DE\u05D5\u05D3\u05E8\u05E0\u05D9\u05D9\u05DD \u05DE\u05D0\u05E4\u05E9\u05E8\u05D9\u05DD \u05D4\u05D5\u05E8\u05D3\u05EA \u05D2\u05D5\u05E4\u05E0\u05D9\u05DD \u05DE\u05D4\u05E8\u05E9\u05EA. \u05E2\u05D3\u05DB\u05D5\u05DF \u05DC\u05D2\u05E8\u05E1\u05D4 \u05D7\u05D3\u05E9\u05D4 \u05D9\u05D5\u05EA\u05E8 \u05E9\u05DC \u05D4\u05D3\u05E4\u05D3\u05E4\u05DF \u05E9\u05DC\u05DA \u05D0\u05D5 \u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05D3\u05E4\u05D3\u05E4\u05DF \u05D0\u05D7\u05E8 \u05D9\u05DB\u05D5\u05DC\u05D9\u05DD \u05DC\u05E9\u05E4\u05E8 \u05D0\u05EA \u05D0\u05D9\u05DB\u05D5\u05EA \u05D4\u05E6\u05D2\u05EA \u05D4\u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA \u05D1\u05D3\u05E3 \u05D4\u05D6\u05D4.", + fonts: "MathJax \u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1[\u05D2\u05D5\u05E4\u05E0\u05D9 STIX](%1) \u05D0\u05D5 \u05D1[\u05D2\u05D5\u05E4\u05E0\u05D9 TeX \u05E9\u05DC MathJax](%2). \u05D0\u05E0\u05D7\u05E0\u05D5 \u05DE\u05DE\u05DC\u05D9\u05E6\u05D9\u05DD \u05DC\u05D4\u05D5\u05E8\u05D9\u05D3 \u05D0\u05D7\u05D3 \u05DE\u05D4\u05D2\u05D5\u05E4\u05E0\u05D9\u05DD \u05D4\u05D0\u05DC\u05D4 \u05DB\u05D3\u05D9 \u05DC\u05E9\u05E4\u05E8 \u05D0\u05EA \u05D7\u05D5\u05D5\u05D9\u05D9\u05EA \u05D4\u05BEMathJax \u05E9\u05DC\u05DA.", + STIXPage: "\u05D4\u05D3\u05E3 \u05D4\u05D6\u05D4 \u05DE\u05D5\u05EA\u05D0\u05DD \u05DC\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1[\u05D2\u05D5\u05E4\u05E0\u05D9 STIX](%1). \u05DE\u05D5\u05DE\u05DC\u05E5 \u05DC\u05D4\u05D5\u05E8\u05D9\u05D3 \u05D5\u05DC\u05D4\u05EA\u05E7\u05D9\u05DF \u05D0\u05EA \u05D4\u05D2\u05D5\u05E4\u05E0\u05D9\u05DD \u05D4\u05D0\u05DC\u05D4 \u05DB\u05D3\u05D9 \u05DC\u05E9\u05E4\u05E8 \u05D0\u05EA \u05D7\u05D5\u05D5\u05D9\u05D9\u05EA \u05D4\u05BEMathJax \u05E9\u05DC\u05DA.", + TeXPage: "\u05D4\u05D3\u05E3 \u05D4\u05D6\u05D4 \u05DE\u05D5\u05EA\u05D0\u05DD \u05DC\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1[\u05D2\u05D5\u05E4\u05E0\u05D9 TeX \u05E9\u05DC MathJax](%1). \u05DE\u05D5\u05DE\u05DC\u05E5 \u05DC\u05D4\u05D5\u05E8\u05D9\u05D3 \u05D5\u05DC\u05D4\u05EA\u05E7\u05D9\u05DF \u05D0\u05EA \u05D4\u05D2\u05D5\u05E4\u05E0\u05D9\u05DD \u05D4\u05D0\u05DC\u05D4 \u05DB\u05D3\u05D9 \u05DC\u05E9\u05E4\u05E8 \u05D0\u05EA \u05D7\u05D5\u05D5\u05D9\u05D9\u05EA \u05D4\u05BEMathJax \u05E9\u05DC\u05DA." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/he/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/he/HTML-CSS.js b/modules/MathJax/unpacked/localization/he/HTML-CSS.js new file mode 100644 index 0000000..a510ebd --- /dev/null +++ b/modules/MathJax/unpacked/localization/he/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/he/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("he","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "\u05D8\u05E2\u05D9\u05E0\u05EA \u05D2\u05D5\u05E4\u05DF \u05D4\u05E8\u05E9\u05EA %1", + CantLoadWebFont: "\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D8\u05E2\u05D5\u05DF \u05D0\u05EA \u05D2\u05D5\u05E4\u05DF \u05D4\u05E8\u05E9\u05EA %1", + FirefoxCantLoadWebFont: "\u05E4\u05D9\u05D9\u05E8\u05E4\u05D5\u05E7\u05E1 \u05D0\u05D9\u05E0\u05D5 \u05D9\u05DB\u05D5\u05DC \u05DC\u05D8\u05E2\u05D5\u05DF \u05D2\u05D5\u05E4\u05E0\u05D9 \u05E8\u05E9\u05EA \u05DE\u05E9\u05E8\u05EA \u05DE\u05E8\u05D5\u05D7\u05E7", + CantFindFontUsing: "\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0 \u05D2\u05D5\u05E4\u05DF \u05EA\u05E7\u05D9\u05DF \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA %1", + WebFontsNotAvailable: "\u05D2\u05D5\u05E4\u05E0\u05D9 \u05E8\u05E9\u05EA \u05D0\u05D9\u05E0\u05DD \u05D6\u05DE\u05D9\u05E0\u05D9\u05DD \u2013 \u05D1\u05DE\u05E7\u05D5\u05DE\u05DD \u05DE\u05E9\u05DE\u05E9\u05D9\u05DD \u05D2\u05D5\u05E4\u05E0\u05D9 \u05EA\u05DE\u05D5\u05E0\u05D4" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/he/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/he/HelpDialog.js b/modules/MathJax/unpacked/localization/he/HelpDialog.js new file mode 100644 index 0000000..fc99fcb --- /dev/null +++ b/modules/MathJax/unpacked/localization/he/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/he/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("he","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "\u05E2\u05D6\u05E8\u05D4 \u05E9\u05DC MathJax", + MathJax: "*MathJax* \u05D4\u05D9\u05D0 \u05E1\u05E4\u05E8\u05D9\u05D9\u05EA \u05D2'\u05D0\u05D5\u05D4 \u05E1\u05E7\u05E8\u05D9\u05E4\u05D8 \u05E9\u05DE\u05D0\u05E4\u05E9\u05E8\u05EA \u05DC\u05DB\u05D5\u05EA\u05D1\u05D9 \u05D0\u05EA\u05E8\u05D9\u05DD \u05DC\u05DB\u05DC\u05D5\u05DC \u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA \u05DE\u05EA\u05DE\u05D8\u05D9\u05D5\u05EA \u05D1\u05D3\u05E4\u05D9\u05DD. \u05D4\u05E7\u05D5\u05E8\u05D0\u05D9\u05DD \u05D0\u05D9\u05E0\u05DD \u05E6\u05E8\u05D9\u05DB\u05D9\u05DD \u05DC\u05E2\u05E9\u05D5\u05EA \u05D3\u05D1\u05E8 \u05DB\u05D3\u05D9 \u05E9\u05D6\u05D4 \u05D9\u05E7\u05E8\u05D4.", + Browsers: "*\u05D3\u05E4\u05D3\u05E4\u05E0\u05D9\u05DD*: MathJax \u05E2\u05D5\u05D1\u05D3 \u05E2\u05DD \u05DB\u05DC \u05D4\u05D3\u05E4\u05D3\u05E4\u05E0\u05D9\u05DD \u05D4\u05DE\u05D5\u05D3\u05E8\u05E0\u05D9\u05D9\u05DD, \u05DB\u05D5\u05DC\u05DC \u05D0\u05D9\u05E0\u05D8\u05E8\u05E0\u05D8 \u05D0\u05E7\u05E1\u05E4\u05DC\u05D5\u05E8\u05E8 \u05DE\u05D2\u05E8\u05E1\u05D4 6 \u05D5\u05DE\u05E2\u05DC\u05D4, \u05E4\u05D9\u05D9\u05E8\u05E4\u05D5\u05E7\u05E1 \u05DE\u05D2\u05E8\u05E1\u05D4 3 \u05D5\u05DE\u05E2\u05DC\u05D4, \u05DB\u05E8\u05D5\u05DD \u05DE\u05D2\u05E8\u05E1\u05D4 0.2 \u05D5\u05DE\u05E2\u05DC\u05D4, \u05E1\u05E4\u05D0\u05E8\u05D9 \u05DE\u05D2\u05E8\u05E1\u05D4 2 \u05D5\u05DE\u05E2\u05DC\u05D4, \u05D0\u05D5\u05E4\u05E8\u05D4 \u05DE\u05D2\u05E8\u05E1\u05D4 9.6 \u05D5\u05DE\u05E2\u05DC\u05D4 \u05D5\u05E8\u05D5\u05D1 \u05D4\u05D3\u05E4\u05D3\u05E4\u05E0\u05D9\u05DD \u05DC\u05DE\u05DB\u05E9\u05D9\u05E8\u05D9\u05DD \u05E0\u05D9\u05D9\u05D3\u05D9\u05DD.", + Menu: "*\u05EA\u05E4\u05E8\u05D9\u05D8 \u05DE\u05EA\u05DE\u05D8\u05D9\u05E7\u05D4*: MathJax \u05DE\u05D5\u05E1\u05D9\u05E3 \u05EA\u05E4\u05E8\u05D9\u05D8 \u05D4\u05E7\u05E9\u05E8 \u05DC\u05DE\u05E9\u05D5\u05D5\u05D0\u05D5\u05EA. \u05D9\u05E9 \u05DC\u05E2\u05E9\u05D5\u05EA \u05DC\u05D7\u05D9\u05E6\u05D4 \u05D9\u05DE\u05E0\u05D9\u05EA \u05D0\u05D5 \u05DC\u05D7\u05D9\u05E6\u05D4 \u05E2\u05DD Ctrl \u05D1\u05DB\u05DC \u05E0\u05D5\u05E1\u05D7\u05D4 \u05DB\u05D3\u05D9 \u05DC\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05EA\u05E4\u05E8\u05D9\u05D8.", + ShowMath: "*\u05DC\u05D4\u05E6\u05D9\u05D2 \u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA \u05D1\u05EA\u05D5\u05E8* \u05DE\u05D0\u05E4\u05E9\u05E8 \u05DC\u05DA \u05DC\u05E8\u05D0\u05D5\u05EA \u05D0\u05EA \u05E7\u05D5\u05D3 \u05D4\u05DE\u05E7\u05D5\u05E8 \u05E9\u05DC \u05D4\u05E0\u05D5\u05E1\u05D7\u05D4 \u05DC\u05D4\u05E2\u05EA\u05E7\u05D4 \u05D5\u05D4\u05D3\u05D1\u05E7\u05D4 (\u05D1\u05EA\u05D5\u05E8 MathML \u05D0\u05D5 \u05D1\u05E6\u05D5\u05E8\u05D4 \u05D4\u05DE\u05E7\u05D5\u05E8\u05D9\u05EA).", + Settings: "*\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA* \u05E0\u05D5\u05EA\u05E0\u05D5\u05EA \u05DC\u05DA \u05E9\u05DC\u05D9\u05D8\u05D4 \u05E2\u05DC \u05D9\u05DB\u05D5\u05DC\u05D5\u05EA \u05E9\u05DC MathJax, \u05DB\u05D2\u05D5\u05DF \u05D4\u05D2\u05D5\u05D3\u05DC \u05E9\u05DC \u05D4\u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA \u05D5\u05D4\u05E9\u05D9\u05D8\u05D4 \u05DC\u05D4\u05E6\u05D2\u05EA \u05D4\u05DE\u05E9\u05D5\u05D5\u05D0\u05D5\u05EA.", + Language: "*\u05E9\u05E4\u05D4* \u2013 \u05DB\u05D0\u05DF \u05D0\u05E4\u05E9\u05E8 \u05DC\u05D1\u05D7\u05D5\u05E8 \u05D0\u05EA \u05D4\u05E9\u05E4\u05D4 \u05E9\u05BEMathJax \u05DE\u05E6\u05D9\u05D2\u05D4 \u05D1\u05EA\u05E4\u05E8\u05D9\u05D8\u05D9\u05DD \u05D5\u05D1\u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05D4\u05D0\u05D6\u05D4\u05E8\u05D4", + Zoom: "*\u05E7\u05D9\u05E8\u05D5\u05D1 \u05DE\u05EA\u05DE\u05D8\u05D9\u05E7\u05D4*: \u05D0\u05DD \u05E7\u05E9\u05D4 \u05DC\u05DA \u05DC\u05E7\u05E8\u05D5\u05D0 \u05DE\u05E9\u05D5\u05D5\u05D0\u05D4, MathJax \u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05D2\u05D3\u05D9\u05DC \u05D0\u05D5\u05EA\u05D4 \u05DB\u05D3\u05D9 \u05DC\u05E2\u05D6\u05D5\u05E8 \u05DC\u05DA \u05DC\u05E8\u05D0\u05D5\u05EA \u05D0\u05D5\u05EA\u05D4 \u05D8\u05D5\u05D1 \u05D9\u05D5\u05EA\u05E8.", + Accessibilty: "*\u05E0\u05D2\u05D9\u05E9\u05D5\u05EA*: MathJax \u05E2\u05D5\u05D1\u05D3 \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9\u05EA \u05E2\u05DD \u05E7\u05D5\u05E8\u05D0\u05D9 \u05DE\u05E1\u05DA \u05DB\u05D3\u05D9 \u05DC\u05D5\u05D5\u05D3\u05D0 \u05E9\u05D4\u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA \u05E0\u05D2\u05D9\u05E9\u05D5\u05EA \u05DC\u05DB\u05D1\u05D3\u05D9 \u05E8\u05D0\u05D9\u05D9\u05D4.", + Fonts: "*\u05D2\u05D5\u05E4\u05E0\u05D9\u05DD*: MathJax \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D2\u05D5\u05E4\u05E0\u05D9\u05DD \u05DE\u05EA\u05DE\u05D8\u05D9\u05D9\u05DD \u05DE\u05E1\u05D5\u05D9\u05DE\u05D9\u05DD \u05D0\u05DD \u05D4\u05DD \u05DE\u05D5\u05EA\u05E7\u05E0\u05D9\u05DD \u05D1\u05DE\u05D7\u05E9\u05D1 \u05E9\u05DC\u05DA; \u05D0\u05D7\u05E8\u05EA, \u05D4\u05D5\u05D0 \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D2\u05D5\u05E4\u05E0\u05D9 \u05E8\u05E9\u05EA. \u05D0\u05E3 \u05E9\u05D6\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05E0\u05D7\u05D5\u05E5, \u05D2\u05D5\u05E4\u05E0\u05D9\u05DD \u05DE\u05D5\u05EA\u05E7\u05E0\u05D9\u05DD \u05DE\u05E7\u05D5\u05DE\u05D9\u05EA \u05D9\u05DB\u05D5\u05DC \u05DC\u05D6\u05E8\u05D6 \u05D0\u05EA \u05D4\u05E1\u05D3\u05B7\u05E8. \u05D0\u05E0\u05D7\u05E0\u05D5 \u05DE\u05DE\u05DC\u05D9\u05E6\u05D9\u05DD \u05DC\u05D4\u05EA\u05E7\u05D9\u05DF \u05D0\u05EA [\u05D2\u05D5\u05E4\u05E0\u05D9 STIX](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/he/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/he/MathML.js b/modules/MathJax/unpacked/localization/he/MathML.js new file mode 100644 index 0000000..bd7d6fd --- /dev/null +++ b/modules/MathJax/unpacked/localization/he/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/he/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("he","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "\u05E8\u05DB\u05D9\u05D1 mglyph \u05D2\u05E8\u05D5\u05E2: %1", + BadMglyphFont: "\u05D2\u05D5\u05E4\u05DF \u05D2\u05E8\u05D5\u05E2: %1", + MathPlayer: "MathJax \u05DC\u05D0 \u05D4\u05E6\u05DC\u05D9\u05D7 \u05DC\u05D4\u05D2\u05D3\u05D9\u05E8 \u05D0\u05EA MathPlayer.\n\n\u05D0\u05DD MathPlayer th\u05E0\u05D5 \u05DE\u05D5\u05EA\u05E7\u05DF, \u05D9\u05E9 \u05DC\u05D4\u05EA\u05E7\u05D9\u05DF \u05D0\u05D5\u05EA\u05D5 \u05EA\u05D7\u05D9\u05DC\u05D4.\n\u05D0\u05D7\u05E8\u05EA, \u05D9\u05D9\u05EA\u05DB\u05DF \u05E9\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D4\u05D0\u05D1\u05D8\u05D7\u05D4 \u05E9\u05DC\u05DA \u05DC\u05D0 \u05D9\u05D0\u05E4\u05E9\u05E8\u05D5 \u05DC\u05E8\u05DB\u05D9\u05D1\u05D9 ActiveX\n\u05DC\u05E8\u05D5\u05E5. \u05D9\u05E9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D7\u05DC\u05D5\u05DF \u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05D0\u05D9\u05E0\u05D8\u05E8\u05E0\u05D8 \u05EA\u05D7\u05EA \u05EA\u05E4\u05E8\u05D9\u05D8 \u05DB\u05DC\u05D9\u05DD, \u05DC\u05D1\u05D7\u05D5\u05E8 \u05D1\u05DC\u05E9\u05D5\u05E0\u05D9\u05EA \"\u05D0\u05D1\u05D8\u05D7\u05D4\", \u05D5\u05DC\u05DC\u05D7\u05D5\u05E5 \u05E2\u05DC \"\u05E8\u05DE\u05D4 \u05DE\u05D5\u05EA\u05D0\u05DE\u05EA \u05D0\u05D9\u05E9\u05D9\u05EA\". \u05E9\u05DD \u05D9\u05E9 \u05DC\u05D1\u05D3\u05D5\u05E7 \u05E9\u05D4\u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA\n\"\u05D4\u05E8\u05E6\u05E5 \u05D1\u05E7\u05E8\u05D9 ActiveX\" \u05D5\"\u05D4\u05EA\u05E0\u05D4\u05D2\u05D5\u05D9\u05D5\u05EA \u05D1\u05D9\u05E0\u05D0\u05E8\u05D9\u05D5\u05EA \u05D5\u05E1\u05E7\u05E8\u05D9\u05E4\u05D8\u05D9\u05DD\" \u05DE\u05D5\u05E4\u05E2\u05DC\u05D5\u05EA.\n\n\u05D1\u05DE\u05E6\u05D1 \u05D4\u05E0\u05D5\u05DB\u05D7\u05D9 \u05D9\u05D5\u05E4\u05D9\u05E2\u05D5 \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05DE\u05E7\u05D5\u05DD \n\u05DE\u05EA\u05DE\u05D8\u05D9\u05E7\u05D4 \u05DE\u05E2\u05D5\u05E6\u05D1\u05EA.", + CantCreateXMLParser: "MathJax \u05D0\u05D9\u05E0\u05D5 \u05D9\u05DB\u05D5\u05DC \u05DC\u05D9\u05E6\u05D5\u05E8 \u05DE\u05E4\u05E2\u05E0\u05D7 XML \u05E2\u05D1\u05D5\u05E8 MathML. \u05E0\u05D0 \u05DC\u05D1\u05D3\u05D5\u05E7\n\u05E9\u05D4\u05D2\u05D3\u05E8\u05EA \u05D4\u05D0\u05D1\u05D8\u05D7\u05D4 '\u05D1\u05E7\u05E8\u05D9 ActiveX \u05E9\u05DE\u05E1\u05D5\u05DE\u05E0\u05D9\u05DD \u05D1\u05EA\u05D5\u05E8 \u05D1\u05D8\u05D5\u05D7\u05D9\u05DD' \u05DE\u05D5\u05E4\u05E2\u05DC\u05EA\n(\u05D9\u05E9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05D0\u05D9\u05E0\u05D8\u05E8\u05E0\u05D8 \u05D1\u05EA\u05E4\u05E8\u05D9\u05D8 \u05DB\u05DC\u05D9\u05DD, \u05DC\u05E4\u05EA\u05D5\u05D7 \u05D0\u05EA \u05DC\u05E9\u05D5\u05E0\u05D9\u05EA \"\u05D0\u05D1\u05D8\u05D7\u05D4\",\n\u05D5\u05D0\u05D6 \u05DC\u05DC\u05D7\u05D5\u05E5 \u05E2\u05DC \"\u05E8\u05DE\u05D4 \u05DE\u05D5\u05EA\u05D0\u05DE\u05EA \u05D0\u05D9\u05E9\u05D9\u05EA\" \u05DB\u05D3\u05D9 \u05DC\u05D1\u05D3\u05D5\u05E7 \u05D0\u05EA \u05D6\u05D4).\n\n\u05DE\u05E9\u05D5\u05D5\u05D0\u05D5\u05EA MathML \u05DC\u05D0 \u05D9\u05E2\u05D5\u05D1\u05D3\u05D5 \u05E2\u05DC\u05BE\u05D9\u05D3\u05D9 MathJax.", + UnknownNodeType: "\u05E1\u05D5\u05D2 \u05E6\u05D5\u05DE\u05EA \u05D1\u05DC\u05EA\u05D9\u05BE\u05D9\u05D5\u05D3\u05E2: %1", + UnexpectedTextNode: "\u05E1\u05D5\u05D2 \u05E6\u05D5\u05DE\u05EA \u05D1\u05DC\u05EA\u05D9\u05BE\u05E6\u05E4\u05D5\u05D9: %1", + ErrorParsingMathML: "\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05E4\u05E2\u05E0\u05D5\u05D7 MathML", + ParsingError: "\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05E4\u05E2\u05E0\u05D5\u05D7 MathML\u200F: %1", + MathMLSingleElement: "MathML \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA \u05DB\u05EA\u05D5\u05D1 \u05D1\u05D0\u05DC\u05DE\u05E0\u05D8 \u05D0\u05D7\u05D3", + MathMLRootElement: "MathML \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05DB\u05EA\u05D1 \u05D1\u05D0\u05DC\u05DE\u05E0\u05D8 \u003Cmath\u003E, \u05DC\u05D0 %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/he/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/he/MathMenu.js b/modules/MathJax/unpacked/localization/he/MathMenu.js new file mode 100644 index 0000000..07f3389 --- /dev/null +++ b/modules/MathJax/unpacked/localization/he/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/he/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("he","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "\u05DC\u05D4\u05E6\u05D9\u05D2 \u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA \u05D1\u05EA\u05D5\u05E8", + MathMLcode: "\u05E7\u05D5\u05D3 MathML", + OriginalMathML: "MathML \u05DE\u05E7\u05D5\u05E8\u05D9", + TeXCommands: "\u05E4\u05E7\u05D5\u05D3\u05D5\u05EA TeX", + AsciiMathInput: "\u05E7\u05DC\u05D8 AsciiMathML", + Original: "\u05D4\u05E6\u05D5\u05E8\u05D4 \u05D4\u05DE\u05E7\u05D5\u05E8\u05D9\u05EA", + ErrorMessage: "\u05D4\u05D5\u05D3\u05E2\u05EA \u05E9\u05D2\u05D9\u05D0\u05D4", + Annotation: "\u05E4\u05D9\u05E8\u05D5\u05E9", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "Content MathML", + OpenMath: "OpenMath", + texHints: "\u05DC\u05D4\u05E6\u05D9\u05D2 \u05E8\u05DE\u05D6\u05D9\u05DD \u05E9\u05DC TeX \u05D1\u05BEMathML", + Settings: "\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05DE\u05EA\u05DE\u05D8\u05D9\u05E7\u05D4", + ZoomTrigger: "\u05DE\u05D4 \u05D2\u05D5\u05E8\u05DD \u05DC\u05E7\u05D9\u05E8\u05D5\u05D1", + Hover: "\u05DE\u05E2\u05D1\u05E8 \u05E2\u05DB\u05D1\u05E8", + Click: "\u05DC\u05D7\u05D9\u05E6\u05D4", + DoubleClick: "\u05DC\u05D7\u05D9\u05E6\u05D4 \u05DB\u05E4\u05D5\u05DC\u05D4", + NoZoom: "\u05DC\u05DC\u05D0 \u05E7\u05D9\u05E8\u05D5\u05D1", + TriggerRequires: "\u05D4\u05E4\u05E2\u05DC\u05EA \u05D4\u05E7\u05D9\u05E8\u05D5\u05D1 \u05D3\u05D5\u05E8\u05E9\u05EA:", + Option: "Option", + Alt: "Alt", + Command: "Command", + Control: "Ctrl", + Shift: "Shift", + ZoomFactor: "\u05E8\u05DE\u05EA \u05E7\u05D9\u05E8\u05D5\u05D1", + Renderer: "\u05DE\u05E6\u05D9\u05D2 \u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA", + MPHandles: "\u05DC\u05D0\u05E4\u05E9\u05E8 \u05DC\u05BEMathPlayer \u05DC\u05D8\u05E4\u05DC \u05D1\u05BE:", + MenuEvents: "\u05D0\u05D9\u05E8\u05D5\u05E2\u05D9 \u05EA\u05E4\u05E8\u05D9\u05D8", + MouseEvents: "\u05D0\u05D9\u05E8\u05D5\u05E2\u05D9 \u05E2\u05DB\u05D1\u05E8", + MenuAndMouse: "\u05D0\u05D9\u05E8\u05D5\u05E2\u05D9 \u05E2\u05DB\u05D1\u05E8 \u05D5\u05D0\u05D9\u05E8\u05D5\u05E2\u05D9 \u05EA\u05E4\u05E8\u05D9\u05D8", + FontPrefs: "\u05D4\u05E2\u05D3\u05E4\u05D5\u05EA \u05D2\u05D5\u05E4\u05E0\u05D9\u05DD", + ForHTMLCSS: "\u05E2\u05D1\u05D5\u05E8 HTML-CSS:", + Auto: "\u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9", + TeXLocal: "TeX (\u05DE\u05E7\u05D5\u05DE\u05D9)", + TeXWeb: "TeX (\u05D1\u05E8\u05E9\u05EA)", + TeXImage: "TeX (\u05EA\u05DE\u05D5\u05E0\u05D4)", + STIXLocal: "STIX (\u05DE\u05E7\u05D5\u05DE\u05D9)", + ContextMenu: "\u05EA\u05E4\u05E8\u05D9\u05D8 \u05D4\u05B6\u05E7\u05E9\u05E8", + Browser: "\u05D3\u05E4\u05D3\u05E4\u05DF", + Scale: "\u05DC\u05D4\u05EA\u05D0\u05D9\u05DD \u05D0\u05EA \u05D4\u05D2\u05D5\u05D3\u05DC \u05E9\u05DC \u05DB\u05DC \u05D4\u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA...", + Discoverable: "\u05DC\u05D4\u05D0\u05D9\u05E8 \u05D1\u05DE\u05E2\u05D1\u05E8 \u05E2\u05DB\u05D1\u05E8", + Locale: "\u05E9\u05E4\u05D4", + LoadLocale: "\u05DC\u05D8\u05E2\u05D5\u05DF \u05DE\u05DB\u05EA\u05D5\u05D1\u05EA...", + About: "\u05D0\u05D5\u05D3\u05D5\u05EA MathJax", + Help: "\u05E2\u05D6\u05E8\u05D4 \u05E9\u05DC MathJax", + localTeXfonts: "\u05DE\u05E9\u05DE\u05E9\u05D9\u05DD \u05D2\u05D5\u05E4\u05E0\u05D9 TeX \u05DE\u05E7\u05D5\u05DE\u05D9\u05D9\u05DD", + webTeXfonts: "\u05DE\u05E9\u05DE\u05E9\u05D9\u05DD \u05D2\u05D5\u05E4\u05E0\u05D9 TeX \u05DE\u05D4\u05E8\u05E9\u05EA", + imagefonts: "\u05DE\u05E9\u05DE\u05E9\u05D9\u05DD \u05D2\u05D5\u05E4\u05E0\u05D9 \u05EA\u05DE\u05D5\u05E0\u05D4", + localSTIXfonts: "\u05DE\u05E9\u05DE\u05E9\u05D9\u05DD \u05D2\u05D5\u05E4\u05E0\u05D9 STIX \u05DE\u05E7\u05D5\u05DE\u05D9\u05D9\u05DD", + webSVGfonts: "\u05DE\u05E9\u05DE\u05E9\u05D9\u05DD \u05D2\u05D5\u05E4\u05E0\u05D9 SVG \u05DE\u05D4\u05E8\u05E9\u05EA", + genericfonts: "\u05DE\u05E9\u05DE\u05E9\u05D9\u05DD \u05D2\u05D5\u05E4\u05E0\u05D9 \u05D9\u05D5\u05E0\u05D9\u05E7\u05D5\u05D3 \u05DB\u05DC\u05DC\u05D9\u05D9\u05DD", + wofforotffonts: "\u05D2\u05D5\u05E4\u05E0\u05D9 woff \u05D0\u05D5 otf", + eotffonts: "\u05D2\u05D5\u05E4\u05E0\u05D9 eot", + svgfonts: "\u05D2\u05D5\u05E4\u05E0\u05D9 svg", + WebkitNativeMMLWarning: "\u05D1\u05D3\u05E4\u05D3\u05E4\u05DF \u05E9\u05DC\u05DA \u05D0\u05D9\u05DF \u05EA\u05DE\u05D9\u05DB\u05D4 \u05DE\u05D5\u05D1\u05E0\u05D9\u05EA \u05D1\u05BEMathML, \u05D0\u05D6 \u05DE\u05E2\u05D1\u05E8 \u05DC\u05E4\u05DC\u05D8 MathML \u05E2\u05DC\u05D5\u05DC \u05DC\u05D4\u05E4\u05D5\u05DA \u05D0\u05EA \u05D4\u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA \u05DC\u05D1\u05DC\u05EA\u05D9\u05BE\u05E7\u05E8\u05D9\u05D0\u05D5\u05EA", + MSIENativeMMLWarning: "\u05D0\u05D9\u05E0\u05D8\u05E8\u05E0\u05D8 \u05D0\u05E7\u05E1\u05E4\u05DC\u05D5\u05E8\u05E8 \u05D3\u05D5\u05E8\u05E9 \u05EA\u05D5\u05E1\u05E3 MathPlayer \u05DB\u05D3\u05D9 \u05DC\u05E2\u05D1\u05D3 \u05E4\u05DC\u05D8 MathML.", + OperaNativeMMLWarning: "\u05D4\u05EA\u05DE\u05D9\u05DB\u05D4 \u05E9\u05DC \u05D0\u05D5\u05E4\u05E8\u05D4 \u05D1\u05BEMathML \u05DE\u05D5\u05D2\u05D1\u05DC\u05EA, \u05D0\u05D6 \u05DE\u05E2\u05D1\u05E8 \u05DC\u05BEMathML \u05E2\u05DC\u05D5\u05DC \u05DC\u05D2\u05E8\u05D5\u05DD \u05DC\u05D7\u05DC\u05E7 \u05DE\u05D4\u05D1\u05D9\u05D8\u05D5\u05D9\u05D9\u05DD \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05D5\u05E6\u05D2\u05D9\u05DD \u05D1\u05D0\u05D5\u05E4\u05DF \u05D2\u05E8\u05D5\u05E2.", + SafariNativeMMLWarning: "\u05D4\u05EA\u05DE\u05D9\u05DB\u05D4 \u05D4\u05DE\u05D5\u05D1\u05E0\u05D9\u05EA \u05E9\u05DC \u05D4\u05D3\u05E4\u05D3\u05E4\u05DF \u05E9\u05DC\u05DA \u05D1\u05BEMathML \u05D0\u05D9\u05E0\u05D4 \u05DE\u05DE\u05DE\u05E9\u05EA \u05D0\u05EA \u05DB\u05DC \u05D4\u05D9\u05DB\u05D5\u05DC\u05D5\u05EA \u05E9\u05BEMathJax \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D4\u05DF, \u05D0\u05D6 \u05D9\u05D9\u05EA\u05DB\u05DF \u05E9\u05D1\u05D9\u05D8\u05D5\u05D9\u05D9\u05DD \u05D0\u05D7\u05D3\u05D9\u05DD \u05DC\u05D0 \u05D9\u05D5\u05E6\u05D2\u05D5 \u05DB\u05E8\u05D0\u05D5\u05D9.", + FirefoxNativeMMLWarning: "\u05D4\u05EA\u05DE\u05D9\u05DB\u05D4 \u05D4\u05DE\u05D5\u05D1\u05E0\u05D9\u05EA \u05E9\u05DC \u05D4\u05D3\u05E4\u05D3\u05E4\u05DF \u05E9\u05DC\u05DA \u05D1\u05BEMathML \u05D0\u05D9\u05E0\u05D4 \u05DE\u05DE\u05DE\u05E9\u05EA \u05D0\u05EA \u05DB\u05DC \u05D4\u05D9\u05DB\u05D5\u05DC\u05D5\u05EA \u05E9\u05BEMathJax \u05DE\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D4\u05DF, \u05D0\u05D6 \u05D9\u05D9\u05EA\u05DB\u05DF \u05E9\u05D1\u05D9\u05D8\u05D5\u05D9\u05D9\u05DD \u05D0\u05D7\u05D3\u05D9\u05DD \u05DC\u05D0 \u05D9\u05D5\u05E6\u05D2\u05D5 \u05DB\u05E8\u05D0\u05D5\u05D9.", + MSIESVGWarning: "\u05EA\u05DE\u05D9\u05DB\u05D4 \u05D1\u05BESVG \u05D0\u05D9\u05E0\u05D4 \u05DE\u05DE\u05D5\u05DE\u05E9\u05EA \u05D1\u05D0\u05D9\u05E0\u05D8\u05E8\u05E0\u05D8 \u05D0\u05E7\u05E1\u05E4\u05DC\u05D5\u05E8\u05E8 \u05DC\u05E4\u05E0\u05D9 \u05D2\u05E8\u05E1\u05D4 9 \u05D0\u05D5 \u05DB\u05D0\u05E9\u05E8 \u05D4\u05D3\u05E4\u05D3\u05E4\u05DF \u05E4\u05D5\u05E2\u05DC \u05D1\u05DE\u05E6\u05D1 \u05EA\u05D0\u05D9\u05DE\u05D5\u05EA \u05DC\u05D2\u05E8\u05E1\u05D4 8 \u05D5\u05DE\u05D8\u05D4. \u05DE\u05E2\u05D1\u05E8 \u05DC\u05E4\u05DC\u05D8 \u05D1\u05BESVG \u05D9\u05D2\u05E8\u05D5\u05DD \u05DC\u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA \u05DE\u05EA\u05DE\u05D8\u05D9\u05D5\u05EA \u05DC\u05D0 \u05D4\u05D9\u05D5\u05EA \u05DE\u05D5\u05E6\u05D2\u05D5\u05EA \u05DB\u05E8\u05D0\u05D5\u05D9.", + LoadURL: "\u05D8\u05E2\u05D9\u05E0\u05EA \u05E0\u05EA\u05D5\u05E0\u05D9 \u05EA\u05E8\u05D2\u05D5\u05DD \u05DE\u05D4\u05DB\u05EA\u05D5\u05D1\u05EA \u05D4\u05D1\u05D0\u05D4:", + BadURL: "\u05D4\u05DB\u05EA\u05D5\u05D1\u05EA \u05E6\u05E8\u05D9\u05DB\u05D4 \u05DC\u05DB\u05E4\u05E0\u05D5\u05EA \u05DC\u05E7\u05D5\u05D1\u05E5 \u05D2'\u05D0\u05D5\u05D5\u05D4 \u05E1\u05E7\u05E8\u05D9\u05E4\u05D8 \u05E9\u05DE\u05D2\u05D3\u05D9\u05E8 \u05E0\u05EA\u05D5\u05E0\u05D9 \u05EA\u05E8\u05D2\u05D5\u05DD \u05E9\u05DC MathJax. \u05E7\u05D5\u05D1\u05E5 \u05D4\u05D2'\u05D0\u05D5\u05D5\u05E1 \u05E1\u05E7\u05E8\u05D9\u05E4\u05D8 \u05D0\u05DE\u05D5\u05E8 \u05DC\u05D4\u05E1\u05EA\u05D9\u05D9\u05DD \u05D1\u05BEjs.", + BadData: "\u05E0\u05DB\u05E9\u05DC\u05D4 \u05D8\u05E2\u05D9\u05E0\u05EA \u05E0\u05EA\u05D5\u05E0\u05D9 \u05EA\u05E8\u05D2\u05D5\u05DD \u05DE\u05BE%1", + SwitchAnyway: "\u05DC\u05E9\u05E0\u05D5\u05EA \u05D0\u05EA \u05D4\u05DE\u05E6\u05D9\u05D2 \u05D1\u05DB\u05DC \u05D6\u05D0\u05EA?\n\n(\u05D9\u05E9 \u05DC\u05DC\u05D7\u05D5\u05E5 \u05D0\u05D9\u05E9\u05D5\u05E8 \u05DC\u05DE\u05E2\u05D1\u05E8 \u05D0\u05D5 \u05D1\u05D9\u05D8\u05D5\u05DC \u05DC\u05D4\u05DE\u05E9\u05DA \u05E2\u05DD \u05D4\u05E6\u05D9\u05D2 \u05D4\u05E0\u05D5\u05DB\u05D7\u05D9)", + ScaleMath: "\u05DC\u05D4\u05EA\u05D0\u05D9\u05DD \u05D0\u05EA \u05D4\u05D2\u05D5\u05D3\u05DC \u05E9\u05DC \u05DB\u05DC \u05D4\u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA (\u05D9\u05D7\u05E1\u05D9\u05EA \u05DC\u05D8\u05E7\u05E1\u05D8 \u05D4\u05E1\u05DE\u05D5\u05DA) \u05D1\u05BE:", + NonZeroScale: "\u05D4\u05D2\u05D5\u05D3\u05DC \u05DC\u05D0 \u05D9\u05DB\u05D5\u05DC \u05DC\u05D4\u05D9\u05D5 \u05D0\u05E4\u05E1", + PercentScale: "\u05D4\u05D2\u05D5\u05D3\u05DC \u05D0\u05DE\u05D5\u05E8 \u05DC\u05D4\u05D9\u05D5\u05EA \u05D1\u05D0\u05D7\u05D5\u05D6\u05D9\u05DD (\u05DC\u05DE\u05E9\u05DC 120%%)", + IE8warning: "\u05D6\u05D4 \u05D9\u05DB\u05D1\u05D4 \u05D0\u05EA \u05EA\u05E4\u05E8\u05D9\u05D8 MathJax \u05D5\u05D0\u05EA \u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05D4\u05E7\u05D9\u05E8\u05D5\u05D1, \u05D0\u05D1\u05DC \u05D0\u05E4\u05E9\u05E8 \u05DC\u05E2\u05E9\u05D5\u05EA \u05DC\u05D7\u05D9\u05E6\u05D4 \u05E2\u05DD Alt \u05E2\u05DC \u05D1\u05D9\u05D8\u05D5\u05D9 \u05DB\u05D3\u05D9 \u05DC\u05E7\u05D1\u05DC \u05D8\u05EA \u05EA\u05E4\u05E8\u05D9\u05D8 M\uFFFDathJax \u05D1\u05DE\u05E7\u05D5\u05DD \u05D6\u05D4.\n\n\u05D4\u05D0\u05DD \u05D1\u05D0\u05DE\u05EA \u05DC\u05E9\u05E0\u05D5\u05EA \u05D0\u05EA \u05D4\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05E9\u05DC MathJax?", + IE9warning: "\u05EA\u05E4\u05E8\u05D9\u05D8 \u05D4\u05D4\u05E7\u05E9\u05E8 \u05E9\u05DC MathJax \u05D9\u05DB\u05D5\u05D1\u05D4, \u05D0\u05D1\u05DC \u05D0\u05E4\u05E9\u05E8 \u05DC\u05E2\u05E9\u05D5\u05EA \u05DC\u05D7\u05D9\u05E6\u05D4 \u05E2\u05DD Alt \u05E2\u05DC \u05D1\u05D9\u05D8\u05D5\u05D7 \u05DB\u05D3\u05D9 \u05DC\u05E7\u05D1\u05DC \u05D0\u05EA \u05EA\u05E4\u05E8\u05D9\u05D8 MathJax.", + NoOriginalForm: "\u05D4\u05E6\u05D5\u05E8\u05D4 \u05D4\u05DE\u05E7\u05D5\u05E8\u05D9\u05EA \u05D0\u05D9\u05E0\u05D4 \u05D6\u05DE\u05D9\u05E0\u05D4", + Close: "\u05E1\u05D2\u05D9\u05E8\u05D4", + EqSource: "\u05DE\u05E7\u05D5\u05E8 \u05D4\u05DE\u05E9\u05D5\u05D5\u05D0\u05D4 \u05E9\u05DC MathJax" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/he/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/he/TeX.js b/modules/MathJax/unpacked/localization/he/TeX.js new file mode 100644 index 0000000..c389a36 --- /dev/null +++ b/modules/MathJax/unpacked/localization/he/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/he/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("he","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "\u05E1\u05D5\u05D2\u05E8 \u05E4\u05EA\u05D9\u05D7\u05D4 \u05DE\u05D9\u05D5\u05EA\u05E8 \u05D0\u05D5 \u05E1\u05D5\u05D2\u05E8 \u05E1\u05D9\u05D5\u05DD \u05D7\u05E1\u05E8", + ExtraCloseMissingOpen: "\u05E1\u05D5\u05D2\u05E8 \u05E1\u05D9\u05D5\u05DD \u05DE\u05D9\u05D5\u05EA\u05E8 \u05D0\u05D5 \u05E1\u05D5\u05D2\u05E8 \u05E4\u05EA\u05D9\u05D7\u05D4 \u05D7\u05E1\u05E8", + MissingLeftExtraRight: "\u05D7\u05D5\u05E7 \u200E\\left \u05D7\u05E1\u05E8 \u05D0\u05D5 \u05D7\u05D5\u05E7 \u200E\\right \u05DE\u05D9\u05D5\u05EA\u05E8", + MissingScript: "\u05D7\u05E1\u05E8 \u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05DB\u05EA\u05D1 \u05E2\u05D9\u05DC\u05D9 \u05D0\u05D5 \u05DB\u05EA\u05D1 \u05EA\u05D7\u05EA\u05D9", + ExtraLeftMissingRight: "\u200E\\left \u05DE\u05D9\u05D5\u05EA\u05E8 \u05D0\u05D5 \u05D7\u05D5\u05E7 \u200E\\right \u05D7\u05E1\u05E8", + Misplaced: "%1 \u05D1\u05DE\u05E7\u05D5\u05DD \u05E9\u05D2\u05D5\u05D9", + MissingOpenForSub: "\u05E1\u05D5\u05D2\u05E8 \u05E4\u05EA\u05D9\u05D7\u05D4 \u05D7\u05E1\u05E8 \u05DC\u05DB\u05EA\u05D1 \u05EA\u05D7\u05EA\u05D9", + MissingOpenForSup: "\u05E1\u05D5\u05D2\u05E8 \u05E4\u05EA\u05D9\u05D7\u05D4 \u05D7\u05E1\u05E8 \u05DC\u05DB\u05EA\u05D1 \u05E2\u05D9\u05DC\u05D9", + AmbiguousUseOf: "\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D3\u05D5\u05BE\u05DE\u05E9\u05DE\u05E2\u05D9 \u05D1\u05BE\u200E%1", + EnvBadEnd: "\u200E\\begin{%1}\u200E \u05D4\u05E1\u05EA\u05D9\u05D9\u05DD \u05D1\u05BE\u200E\\end{%2}\u200E", + EnvMissingEnd: "\u200E\\end{%1}\u200E \u05D7\u05E1\u05E8", + MissingBoxFor: "\u05D7\u05E1\u05E8\u05D4 \u05EA\u05D9\u05D1\u05D4 \u05E2\u05D1\u05D5\u05E8 %1", + MissingCloseBrace: "\u05E1\u05D5\u05D2\u05E8 \u05E1\u05D9\u05D5\u05DD \u05D7\u05E1\u05E8", + UndefinedControlSequence: "\u05E8\u05E6\u05E3 \u05D1\u05E7\u05E8\u05D4 \u05D1\u05DC\u05EA\u05D9\u05BE\u05DE\u05D5\u05D2\u05D3\u05E8 %1", + DoubleExponent: "\u05DE\u05E2\u05E8\u05D9\u05DA \u05DB\u05E4\u05D5\u05DC: \u05D9\u05E9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E1\u05D5\u05D2\u05E8\u05D9\u05D9\u05DD \u05DC\u05D4\u05D1\u05D4\u05E8\u05D4", + DoubleSubscripts: "\u05DB\u05EA\u05D1 \u05EA\u05D7\u05EA\u05D9 \u05DB\u05E4\u05D5\u05DC: \u05D9\u05E9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E1\u05D5\u05D2\u05E8\u05D9\u05D9\u05DD \u05DC\u05D4\u05D1\u05D4\u05E8\u05D4", + DoubleExponentPrime: "\u05EA\u05D2 \u05D2\u05D5\u05E8\u05DD \u05DC\u05DE\u05E2\u05E8\u05D9\u05DA \u05DB\u05E4\u05D5\u05DC; \u05D9\u05E9 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E1\u05D5\u05D2\u05E8\u05D9\u05D9\u05DD \u05DC\u05D4\u05D1\u05D4\u05E8\u05D4", + CantUseHash1: "\u05DC\u05D0 \u05E0\u05D9\u05EA\u05DF \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\"\u05EA\u05D5 \u05DE\u05E7\u05E8\u05D5 \u05E4\u05E8\u05DE\u05D8\u05E8 #\" \u05D1\u05DE\u05E6\u05D1 \u05DE\u05EA\u05DE\u05D8\u05D9\u05E7\u05D4", + MisplacedMiddle: "\u05E2\u05DC \u200E%1 \u05DC\u05D4\u05D9\u05D5\u05EA \u05D1\u05D9\u05DF \u200E\\left \u05DC\u05BE\u200E\\right", + MisplacedLimits: "\u05DE\u05D5\u05EA\u05E8 \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05BE\u200E%1 \u05E8\u05E7 \u05D1\u05D0\u05D5\u05E4\u05E8\u05D8\u05D5\u05E8\u05D9\u05DD", + MisplacedMoveRoot: "\u05E2\u05DC \u200E%1 \u05DC\u05D4\u05D9\u05D5\u05EA \u05D1\u05EA\u05D5\u05DA \u05E9\u05D5\u05E8\u05E9", + MultipleCommand: "\u05DE\u05E1\u05E4\u05E8 \u05DE\u05E8\u05D5\u05D1\u05D4 \u05E9\u05DC \u200E%1", + IntegerArg: "\u05D4\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05DC\u05BE\u200E%1 \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05E1\u05E4\u05E8 \u05E9\u05DC\u05DD", + NotMathMLToken: "%1 \u05D0\u05D9\u05E0\u05D5 \u05D0\u05DC\u05DE\u05E0\u05D8 token \u05EA\u05E7\u05D9\u05DF", + InvalidMathMLAttr: "\u05DE\u05D0\u05E4\u05D9\u05D9\u05DF MathML \u05D1\u05DC\u05EA\u05D9\u05BE\u05EA\u05E7\u05D9\u05DF: %1", + UnknownAttrForElement: "\u05D4\u05DE\u05D0\u05E4\u05D9\u05D9\u05DF %1 \u05D0\u05D9\u05E0\u05D5 \u05DE\u05D5\u05BC\u05DB\u05E8 \u05D1\u05EA\u05D5\u05E8 \u05DE\u05D0\u05E4\u05D9\u05D9\u05DF \u05E9\u05DC %2", + MaxMacroSub1: "\u05DE\u05E1\u05E4\u05E8 \u05E8\u05D1 \u05DE\u05D3\u05D9 \u05E9\u05DC \u05D4\u05D7\u05DC\u05E4\u05D5\u05EA \u05D4\u05DE\u05E7\u05E8\u05D5 \u05D1\u05BEMathJax; \u05D4\u05D0\u05DD \u05D9\u05E9 \u05E7\u05E8\u05D9\u05D0\u05D4 \u05E8\u05E7\u05D5\u05E8\u05E1\u05D9\u05D1\u05D9\u05EA \u05DC\u05DE\u05E7\u05E8\u05D5?", + MaxMacroSub2: "\u05DE\u05E1\u05E4\u05E8 \u05E8\u05D1 \u05DE\u05D3\u05D9 \u05E9\u05DC \u05D4\u05D4\u05D7\u05DC\u05E4\u05D5\u05EA \u05D1\u05BEMathJax; \u05D4\u05D0\u05DD \u05D9\u05E9 \u05E1\u05D1\u05D9\u05D1\u05EA LaTeX \u05E8\u05E7\u05D5\u05E8\u05E1\u05D9\u05D1\u05D9\u05EA?", + MissingArgFor: "\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05D7\u05E1\u05E8 \u05E2\u05D1\u05D5\u05E8 \u05C2%1", + ExtraAlignTab: "\u05D8\u05D0\u05D1 \u05D9\u05D9\u05E9\u05D5\u05E8 \u05DE\u05D9\u05D5\u05EA\u05E8 \u05D1\u05D8\u05E7\u05E1\u05D8 \u05D1\u05BE\u200E\\cases", + BracketMustBeDimension: "\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05D1\u05E1\u05D5\u05D2\u05E8\u05D9\u05D9\u05DD \u05D1\u05BE\u200E%1 \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05DE\u05D3", + InvalidEnv: "\u05E9\u05DD \u05E1\u05D1\u05D9\u05D1\u05D4 \u05D1\u05DC\u05EA\u05D9\u05BE\u05EA\u05E7\u05D9\u05DF '%1'", + UnknownEnv: "\u05E1\u05D1\u05D9\u05D1\u05D4 \u05D1\u05DC\u05EA\u05D9\u05BE\u05D9\u05D3\u05D5\u05E2\u05D4 '%1'", + ExtraCloseLooking: "\u05E0\u05DE\u05E6\u05D0 \u05E1\u05D5\u05D2\u05E8 \u05E1\u05D9\u05D5\u05DD \u05DE\u05D9\u05D5\u05EA\u05E8 \u05D1\u05E2\u05EA \u05D7\u05D9\u05E4\u05D5\u05E9 \u05D0\u05D7\u05E8 %1", + MissingCloseBracket: "\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0 '\u202A]\u202C' \u05DE\u05E1\u05D9\u05D9\u05DD \u05E2\u05D1\u05D5\u05E8 \u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05DC\u05BE\u200E%1", + MissingOrUnrecognizedDelim: "\u05EA\u05D5\u05D7\u05DD \u05D7\u05E1\u05E8 \u05D1\u05DC\u05EA\u05D9\u05BE\u05DE\u05D5\u05BC\u05DB\u05E8 \u05E2\u05D1\u05D5\u05E8 \u200E%1", + MissingDimOrUnits: "\u05D7\u05E1\u05E8 \u05DE\u05DE\u05D3 \u05D0\u05D5 \u05D9\u05D7\u05D9\u05D3\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 \u200E%1", + TokenNotFoundForCommand: "\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0 %1 \u05E2\u05D1\u05D5\u05E8 %2", + MathNotTerminated: "\u05E0\u05D5\u05E1\u05D7\u05D4 \u05DE\u05EA\u05DE\u05D8\u05D9\u05EA \u05DC\u05D0 \u05D2\u05DE\u05D5\u05E8\u05D4 \u05D1\u05EA\u05D9\u05D1\u05EA \u05D4\u05D8\u05E7\u05E1\u05D8", + IllegalMacroParam: "\u05D4\u05E4\u05E0\u05D9\u05D4 \u05D1\u05DC\u05EA\u05D9\u05BE\u05EA\u05E7\u05D9\u05E0\u05D4 \u05DC\u05E4\u05E8\u05DE\u05D8\u05E8 \u05E9\u05DC \u05DE\u05E7\u05E8\u05D5", + MaxBufferSize: "\u05DE\u05D0\u05D2\u05E8 MathJax \u05E4\u05E0\u05D9\u05DE\u05D9 \u05D2\u05D3\u05D5\u05DC \u05DE\u05D3\u05D9; \u05D4\u05D0\u05DD \u05D9\u05E9 \u05DB\u05D0\u05DF \u05E7\u05E8\u05D9\u05D0\u05EA \u05DE\u05E7\u05E8\u05D5 \u05E8\u05E7\u05D5\u05E8\u05E1\u05D9\u05D1\u05D9\u05EA?", + CommandNotAllowedInEnv: "\u200E%1 \u05D0\u05D9\u05E0\u05D5 \u05DE\u05D5\u05E8\u05E9\u05D4 \u05D1\u05E1\u05D1\u05D9\u05D1\u05D4 %2", + MultipleLabel: "\u05D4\u05EA\u05D5\u05D5\u05D9\u05EA '%1' \u05DE\u05D5\u05D2\u05D3\u05E8\u05EA \u05DE\u05E1\u05E4\u05E8 \u05E4\u05E2\u05DE\u05D9\u05DD", + CommandAtTheBeginingOfLine: "\u05D4\u05DE\u05E7\u05E8\u05D5 %1 \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05DB\u05EA\u05D1 \u05D1\u05EA\u05D7\u05D9\u05DC\u05EA \u05D4\u05E9\u05D5\u05E8\u05D4", + IllegalAlign: "\u05D9\u05D9\u05E9\u05D5\u05E8 \u05D1\u05DC\u05EA\u05D9\u05BE\u05EA\u05E7\u05D9\u05DF \u05D4\u05D5\u05D2\u05D3\u05E8 \u05D1\u05BE\u200E%1", + BadMathStyleFor: "\u05E1\u05D2\u05E0\u05D5\u05DF \u05E0\u05D5\u05E1\u05D7\u05D4 \u05D2\u05E8\u05D5\u05E2 \u05E2\u05D1\u05D5\u05E8 \u200E%1", + PositiveIntegerArg: "\u05D4\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05DC\u05BE\u200E%1 \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA \u05E9\u05DC\u05DD \u05D7\u05D9\u05D5\u05D1\u05D9", + ErroneousNestingEq: "\u05E7\u05D9\u05E0\u05D5\u05DF \u05E9\u05D2\u05D5\u05D9 \u05E9\u05DC \u05DE\u05D1\u05E0\u05D9 \u05DE\u05E9\u05D5\u05D5\u05D0\u05D4", + MultlineRowsOneCol: "\u05DC\u05E9\u05D5\u05E8\u05D5\u05EA \u05D1\u05EA\u05D5\u05DA \u05D4\u05E1\u05D1\u05D9\u05D1\u05D4 %1 \u05E6\u05E8\u05D9\u05DB\u05D4 \u05DC\u05D4\u05D9\u05D5\u05EA \u05E8\u05E7 \u05E2\u05DE\u05D5\u05D3\u05D4 \u05D0\u05D7\u05EA", + MultipleBBoxProperty: "\u05D4\u05DE\u05D0\u05E4\u05D9\u05D9\u05DF %1 \u05D4\u05D5\u05D2\u05D3\u05E8 \u05E4\u05E2\u05DE\u05D9\u05D9\u05DD \u05D1\u05BE\u200E%2", + InvalidBBoxProperty: "\u05D4\u05DE\u05D0\u05E4\u05D9\u05D9\u05DF '%1' \u05D0\u05D9\u05E0\u05D5 \u05E0\u05E8\u05D0\u05D4 \u05DB\u05DE\u05D5 \u05E6\u05D1\u05E2, \u05DE\u05DE\u05D3 \u05D3\u05D9\u05E4\u05D5\u05DF \u05D0\u05D5 \u05E1\u05D2\u05E0\u05D5\u05DF", + ExtraEndMissingBegin: "\u05E0\u05DE\u05E6\u05D0 \u200E%1 \u05DE\u05D9\u05D5\u05EA\u05E8 \u05D0\u05D5 \u200E\\begingroup \u05D7\u05E1\u05E8", + GlobalNotFollowedBy: "\u200E%1 \u05E9\u05D0\u05D9\u05DF \u05D0\u05D7\u05E8\u05D9\u05D5 \u200E\\let\u200F, \u200E\\def \u05D0\u05D5 \u200E\\newcommand", + UndefinedColorModel: "\u05D3\u05D2\u05DD \u05D4\u05E6\u05D1\u05E2 '%1' \u05D0\u05D9\u05E0\u05D5 \u05DE\u05D5\u05D2\u05D3\u05E8", + ModelArg1: "\u05E2\u05E8\u05DB\u05D9 \u05E6\u05D1\u05E2 \u05E2\u05D1\u05D5\u05E8 \u05D4\u05D3\u05D2\u05DD %1 \u05D3\u05D5\u05E8\u05E9\u05D9\u05DD 3 \u05DE\u05E1\u05E4\u05E8\u05D9\u05DD", + InvalidDecimalNumber: "\u05DE\u05E1\u05E4\u05E8 \u05E2\u05E9\u05E8\u05D5\u05E0\u05D9 \u05D1\u05DC\u05EA\u05D9\u05BE\u05EA\u05E7\u05D9\u05DF", + ModelArg2: "\u05E2\u05E8\u05DB\u05D9 \u05E6\u05D1\u05E2 \u05E2\u05D1\u05D5\u05E8 \u05D3\u05D2\u05DD %1 \u05E6\u05E8\u05D9\u05DB\u05D9\u05DD \u05DC\u05D4\u05D9\u05D5\u05EA \u05D1\u05D9\u05DF %2 \u05DC\u05D1\u05D9\u05DF %3", + InvalidNumber: "\u05DE\u05E1\u05E4\u05E8 \u05D1\u05DC\u05EA\u05D9\u05BE\u05EA\u05E7\u05D9\u05DF", + NewextarrowArg1: "\u05D4\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05D4\u05E8\u05D0\u05E9\u05D5\u05DF \u05DC\u05BE\u200E%1 \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA \u05E9\u05DD \u05E8\u05E6\u05E3 \u05D1\u05E7\u05E8\u05D4", + NewextarrowArg2: "\u05D4\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05D4\u05E9\u05E0\u05D9 \u05DC\u05BE\u200E%1 \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA \u05E9\u05E0\u05D9 \u05DE\u05E1\u05E4\u05E8\u05D9\u05DD \u05E9\u05DC\u05DE\u05D9\u05DD \u05DE\u05D5\u05E4\u05E8\u05D3\u05D9\u05DD \u05D1\u05E4\u05E1\u05D9\u05E7", + NewextarrowArg3: "\u05D4\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05D4\u05E9\u05DC\u05D9\u05E9\u05D9 \u05DC\u05BE\u200E%1 \u05E6\u05E8\u05D9\u05DA \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05E1\u05E4\u05E8 \u05EA\u05D5 \u05D9\u05D5\u05E0\u05D9\u05E7\u05D5\u05D3", + NoClosingChar: "\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0 %1 \u05DE\u05E1\u05D9\u05D9\u05DD", + IllegalControlSequenceName: "\u05E9\u05DD \u05E8\u05E6\u05E3 \u05D1\u05E7\u05E8\u05D4 \u05D1\u05DC\u05EA\u05D9\u05BE\u05EA\u05E7\u05D9\u05DF \u05E2\u05D1\u05D5\u05E8 \u200E%1", + IllegalParamNumber: "\u05DE\u05E1\u05E4\u05E8 \u05D1\u05DC\u05EA\u05D9\u05BE\u05EA\u05E7\u05D9\u05DF \u05E9\u05DC \u05E4\u05E8\u05DE\u05D8\u05E8\u05D9\u05DD \u05D4\u05D5\u05D2\u05D3\u05E8 \u05D1\u05BE\u200E%1", + MissingCS: "\u05D0\u05D7\u05E8\u05D9 \u200E%1 \u05D9\u05E9 \u05DC\u05DB\u05EA\u05D5\u05D1 \u05E8\u05E6\u05E3 \u05D1\u05E7\u05E8\u05D4", + CantUseHash2: "\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05DC\u05EA\u05D9\u05BE\u05EA\u05E7\u05D9\u05DF \u05D1\u05BE# \u05D1\u05EA\u05D1\u05E0\u05D9\u05EA \u05E2\u05D1\u05D5\u05E8 %1", + SequentialParam: "\u05D4\u05E4\u05E8\u05DE\u05D8\u05E8\u05D9\u05DD \u05E2\u05D1\u05D5\u05E8 %1 \u05E6\u05E8\u05D9\u05DB\u05D9\u05DD \u05DC\u05D4\u05D9\u05D5\u05EA \u05DE\u05DE\u05D5\u05E1\u05E4\u05E8\u05D9\u05DD \u05D1\u05E8\u05E6\u05E3", + MissingReplacementString: "\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA \u05D4\u05D7\u05DC\u05E4\u05D4 \u05D7\u05E1\u05E8\u05D4 \u05E2\u05D1\u05D5\u05E8 \u05D4\u05D4\u05D2\u05D3\u05E8\u05D4 \u05E9\u05DC \u200E%1", + MismatchUseDef: "\u05D4\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05BE\u200E%1 \u05D0\u05D9\u05E0\u05D5 \u05EA\u05D5\u05D0\u05DD \u05DC\u05D4\u05D2\u05D3\u05E8\u05D4 \u05E9\u05DC\u05D5", + RunawayArgument: "\u05D0\u05E8\u05D2\u05D5\u05DE\u05E0\u05D8 \u05D1\u05E8\u05D7 \u05DE\u05BE\u200E%1?", + NoClosingDelim: "\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0 \u05EA\u05D5\u05D7\u05DD \u05DE\u05E1\u05D9\u05D9\u05DD \u05E2\u05D1\u05D5\u05E8 \u200E%1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/he/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/he/he.js b/modules/MathJax/unpacked/localization/he/he.js new file mode 100644 index 0000000..a9a6efc --- /dev/null +++ b/modules/MathJax/unpacked/localization/he/he.js @@ -0,0 +1,65 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/he/he.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("he",null,{ + menuTitle: "\u05E2\u05D1\u05E8\u05D9\u05EA", + fontDirection: "rtl", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax \u05DE\u05E6\u05D0 \u05E2\u05D5\u05D2\u05D9\u05D9\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05DE\u05E9\u05EA\u05DE\u05E9 \u05E9\u05DB\u05D5\u05DC\u05DC\u05EA \u05E7\u05D5\u05D3 \u05DC\u05D4\u05E8\u05E6\u05D4. \u05D4\u05D0\u05DD \u05DC\u05D4\u05E8\u05D9\u05E5 \u05D0\u05D5\u05EA\u05D5?\n\n(\u05D9\u05E9 \u05DC\u05DC\u05D7\u05D5\u05E5 \"\u05D1\u05D9\u05D8\u05D5\u05DC\" \u05D0\u05DC\u05D0 \u05D0\u05DD \u05D4\u05D2\u05D3\u05E8\u05EA \u05D0\u05EA \u05D4\u05E2\u05D5\u05D2\u05D9\u05D9\u05D4 \u05D1\u05E2\u05E6\u05DE\u05DA.)", + MathProcessingError: "\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05E2\u05D9\u05D1\u05D5\u05D3 \u05E0\u05D5\u05E1\u05D7\u05D4", + MathError: "\u05E9\u05D2\u05D9\u05D0\u05D4 \u05D1\u05E0\u05D5\u05E1\u05D7\u05D4", + LoadFile: "\u05D8\u05E2\u05D9\u05E0\u05EA %1", + Loading: "\u05D8\u05E2\u05D9\u05E0\u05D4", + LoadFailed: "\u05D4\u05E7\u05D5\u05D1\u05E5 \u05DC\u05D0 \u05E0\u05D8\u05E2\u05DF: %1", + ProcessMath: "\u05E2\u05D9\u05D1\u05D5\u05D3 \u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA: %1%%", + Processing: "\u05E2\u05D9\u05D1\u05D5\u05D3", + TypesetMath: "\u05E1\u05D3\u05B7\u05E8 \u05E0\u05D5\u05E1\u05D7\u05D0\u05D5\u05EA: %1%%", + Typesetting: "\u05E1\u05D3\u05B7\u05E8", + MathJaxNotSupported: "\u05D4\u05D3\u05E4\u05D3\u05E4\u05DF \u05E9\u05DC\u05DA \u05D0\u05D9\u05E0\u05D5 \u05EA\u05D5\u05DE\u05DA \u05D1\u05BEMathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) {return 1} // one + if (n === 2) {return 2} // two + if (n !== 0 && n % 10 !== 0) {return 3} // many + return 4; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/he/he.js"); diff --git a/modules/MathJax/unpacked/localization/ia/FontWarnings.js b/modules/MathJax/unpacked/localization/ia/FontWarnings.js new file mode 100644 index 0000000..eb5d50b --- /dev/null +++ b/modules/MathJax/unpacked/localization/ia/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ia/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ia","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ia/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/ia/HTML-CSS.js b/modules/MathJax/unpacked/localization/ia/HTML-CSS.js new file mode 100644 index 0000000..e80f6fa --- /dev/null +++ b/modules/MathJax/unpacked/localization/ia/HTML-CSS.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ia/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ia","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ia/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/ia/HelpDialog.js b/modules/MathJax/unpacked/localization/ia/HelpDialog.js new file mode 100644 index 0000000..6d5641c --- /dev/null +++ b/modules/MathJax/unpacked/localization/ia/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ia/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ia","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "Adjuta de MathJax", + MathJax: "*MathJax* es un bibliotheca in JavaScript que permitte al autores includer formulas mathematic in lor paginas web. Nulle action del lector es necessari pro facer isto functionar.", + Browsers: "*Navigatores*: MathJax functiona con tote le navigatores web moderne como IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ e le major parte del navigatores in apparatos mobile.", + Menu: "*Menu mathematic*: MathJax adde un menu contextual al equationes. Pro acceder a iste menu, clicca sur un formula premente le button dextre del mus o le clave CTRL.", + ShowMath: "*Monstrar formula como* permitte revelar le codice-fonte del formula pro copiar e collar (in formato MathML or in su formato original).", + Settings: "*Configuration* te da le controlo sur le functionalitate de MathJax, como le dimension del formulas, e le mechanismo usate pro presentar equationes.", + Language: "*Lingua* permitte seliger le lingua usate per MathJax pro su menus e messages de aviso.", + Zoom: "*Math Zoom*: Si vos ha difficultate a leger un equation, MathJax pote aggrandir lo pro facilitar le lectura.", + Accessibilty: "*Accessibilitate*: MathJax functiona automaticamente con lectores de schermo pro render le formulas accessibile al personas qui vide mal.", + Fonts: "*Typos de litteras*: MathJax usa certe typos de litteras mathematic si illos es installate in vostre computator; si non, illo usa typos de litteras obtenite per le web. Ben que non obligatori, le typos de litteras installate localmente rendera le composition plus rapide. Nos suggere installar le [typos de litteras STIX](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ia/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/ia/MathML.js b/modules/MathJax/unpacked/localization/ia/MathML.js new file mode 100644 index 0000000..e0d4c7f --- /dev/null +++ b/modules/MathJax/unpacked/localization/ia/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ia/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ia","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ia/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/ia/MathMenu.js b/modules/MathJax/unpacked/localization/ia/MathMenu.js new file mode 100644 index 0000000..7a60b27 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ia/MathMenu.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ia/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ia","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ia/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/ia/TeX.js b/modules/MathJax/unpacked/localization/ia/TeX.js new file mode 100644 index 0000000..c7c81e3 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ia/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ia/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ia","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ia/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/ia/ia.js b/modules/MathJax/unpacked/localization/ia/ia.js new file mode 100644 index 0000000..babd2eb --- /dev/null +++ b/modules/MathJax/unpacked/localization/ia/ia.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ia/ia.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ia",null,{ + menuTitle: "interlingua", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax ha trovate un cookie con un configuration de usator que include codice executabile. Executar iste codice?\n\n(Preme Cancellar si vos mesme non ha installate iste cookie.)", + MathProcessingError: "Error de tractamento de formula mathematic", + MathError: "Error in formula", + LoadFile: "Carga %1", + Loading: "Cargamento", + LoadFailed: "Cargamento del file fallite: %1", + ProcessMath: "Tracta formulas: %1%%", + Processing: "Tractamento", + TypesetMath: "Compone formulas: %1%%", + Typesetting: "Composition", + MathJaxNotSupported: "Vostre navigator non supporta MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) {return 1} // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ia/ia.js"); diff --git a/modules/MathJax/unpacked/localization/it/FontWarnings.js b/modules/MathJax/unpacked/localization/it/FontWarnings.js new file mode 100644 index 0000000..b506b92 --- /dev/null +++ b/modules/MathJax/unpacked/localization/it/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/it/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("it","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax sta usando dei web font per visualizzare le formule di questa pagina. Tali font richiedono tempo per essere scaricati, perci\u00F2 la pagina sarebbe resa pi\u00F9 velocemente se tu installassi dei font matematici direttamente nella cartella dei font di sistema.", + imageFonts: "MathJax sta usando dei font immagine invece di quelli locali o dei web font. Questo rallenta la resa oltremodo e le formule potrebbero non essere stampate alla massima risoluzione dalla tua stampante.", + noFonts: "MathJax non \u00E8 in grado di trovare un font adatto a visualizzare le formule e i font immagini non sono disponibili; perci\u00F2 utilizzer\u00E1 dei generici caratteri unicode sperando che il tuo browser sia in grado di visualizzarli. Alcuni caratteri potrebbero non essere mostrati correttamente o mancare del tutto.", + webFonts: "I browser attuali permettono di scaricare i font dal web. Aggiornando il tuo browser a una versione pi\u00F9 recente (o cambiando del tutto browser) la qualit\u00E1 delle formule di questa pagina potrebbe migliorare.", + fonts: "MathJax pu\u00F2 usare sia gli [STIX font](%1) che i [MathJax TeX font](%2). Scarica e installa uno di questi font per avere una resa migliore da MathJax.", + STIXPage: "Questa pagina richiede l'uso degli [STIX font](%1). Scarica e installa i suddetti font per avere una resa migliore da MathJax.", + TeXPage: "Questa pagina richiede l'uso dei [MathJax TeX font](%1). Scarica e installa i suddetti font per avere una resa migliore da MathJax." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/it/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/it/HTML-CSS.js b/modules/MathJax/unpacked/localization/it/HTML-CSS.js new file mode 100644 index 0000000..37cc9c4 --- /dev/null +++ b/modules/MathJax/unpacked/localization/it/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/it/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("it","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Caricamento web-font %1", + CantLoadWebFont: "Impossibile caricare il web font %1", + FirefoxCantLoadWebFont: "Firefox non pu\u00F2 scaricare i web font dal server remoto", + CantFindFontUsing: "Impossibile trovare un font valido tra %1", + WebFontsNotAvailable: "Web font non disponibili -- font immagini in uso" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/it/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/it/HelpDialog.js b/modules/MathJax/unpacked/localization/it/HelpDialog.js new file mode 100644 index 0000000..13ff693 --- /dev/null +++ b/modules/MathJax/unpacked/localization/it/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/it/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("it","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "Aiuto su MathJax", + MathJax: "*MathJax* \u00E8 una libreria JavaScript che permette agli autori di includere formule matematiche nelle loro pagine web. Come lettore, non devi far nulla perch\u00E9 questo accada.", + Browsers: "*Browser*: MathJax funziona con tutti i moderni browser inclusi IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ e gran parte di quelli per cellulare.", + Menu: "*Menu Formule*: MathJax aggiunge un menu contestuale alle equazioni. Fai click col tasto destro del mouse oppure CTRL-click su una qualsiasi formula per accedere a tale menu.", + ShowMath: "*Mostra formula come* ti permette di visualizzare il codice sorgente per il copia e incolla (in formato MathML o in quello originale).", + Settings: "*Impostazioni* permette di controllare le caratteristiche di MathJax, come la grandezza delle formule e il meccanismo usato per mostrare le equazioni.", + Language: "*Lingua* ti permette di selezionare la lingua usata da MathJax nei propri menu e nei messaggi d'avviso.", + Zoom: "*Zoom formula*: se hai difficolt\u00E1 nella lettura di un'equazione, MathJax pu\u00F2 ingrandirla per permetterti di vederla meglio.", + Accessibilty: "*Accessibilit\u00E1*: MathJax funzioner\u00E1 automaticamente con gli screen reader per rendere le formule accessibili a chi ha problemi di vista.", + Fonts: "*Font*: MathJax user\u00E1 certi tipi di font se presenti sul tuo computer; altrimenti usera i web font. Sebbene non sia richiesto, font installati sul proprio computer velocizzeranno l'esecuzione di MathJax. Ti suggeriamo di installare se puoi gli [STIX font](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/it/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/it/MathML.js b/modules/MathJax/unpacked/localization/it/MathML.js new file mode 100644 index 0000000..3c2869d --- /dev/null +++ b/modules/MathJax/unpacked/localization/it/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/it/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("it","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "mglyph errato: %1", + BadMglyphFont: "Font errato: %1", + MathPlayer: "MathJax non \u00E8 stato in grado di avviare MathPlayer.\n\nSe MathPlayer non \u00E8 installato, devi prima installarlo.\nPu\u00F2 darsi anche che le tue impostazioni di sicurezza stiano impedendo\nl'esecuzione dei controlli ActiveX. Controlla la voce Opzioni Internet\ndel menu Strumenti e seleziona il pannello Protezione, quindi premi\nil pulsante 'Livello personalizzato...'. Verifica che siano abilitati\n'Esegui controlli ActiveX e plug-in' e 'Comportamento file binari e script'\n\nOra come ora vedrai dei messaggi d'errore al posto delle formule.", + CantCreateXMLParser: "MathJax non \u00E8 in grado di creare un parser XML per MathML. Verifica che\nl'impostazione 'Esegui script controlli ActiveX contrassegnati come sicuri'\nsia abilitata (usa la voce Opzioni Internet nel menu Strumenti,\ne seleziona il pannello Sicurezza, quindi premi il pulsante\n'Livello personalizzato...' per far questo).\n\nLe equazioni in MathML non potranno essere elaborate da MathJax.", + UnknownNodeType: "Tipo di nodo sconosciuto: %1", + UnexpectedTextNode: "Nodo di testo non previsto: %1", + ErrorParsingMathML: "Errore nell'analisi di MathML", + ParsingError: "Errore nell'analisi di MathML: %1", + MathMLSingleElement: "MathML deve essere formato da un singolo elemento", + MathMLRootElement: "MathML deve essere formato da un elemento \u003Cmath\u003E, non %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/it/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/it/MathMenu.js b/modules/MathJax/unpacked/localization/it/MathMenu.js new file mode 100644 index 0000000..ccb80ae --- /dev/null +++ b/modules/MathJax/unpacked/localization/it/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/it/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("it","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Mostra formula come", + MathMLcode: "Codice MathML", + OriginalMathML: "MathML originale", + TeXCommands: "Comandi TeX", + AsciiMathInput: "Input AsciiMathML", + Original: "Modulo originale", + ErrorMessage: "Messaggio d'errore", + Annotation: "Annotation", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "Content MathML", + OpenMath: "OpenMath", + texHints: "Aggiungi suggerimenti Tex a MathML", + Settings: "Impostazioni formule", + ZoomTrigger: "Attivazione zoom", + Hover: "Sopra", + Click: "Click", + DoubleClick: "Doppio-Click", + NoZoom: "Niente zoom", + TriggerRequires: "L'attivazione richiede:", + Option: "Option", + Alt: "Alt", + Command: "Command", + Control: "Control", + Shift: "Shift", + ZoomFactor: "Fattore di zoom", + Renderer: "Processore per le formule", + MPHandles: "Affida a MathPlayer", + MenuEvents: "Eventi menu", + MouseEvents: "Eventi mouse", + MenuAndMouse: "Eventi mouse e menu", + FontPrefs: "Preferenze font", + ForHTMLCSS: "Per HTML-CSS:", + Auto: "Auto", + TeXLocal: "TeX (locale)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (immagini)", + STIXLocal: "STIX (locale)", + ContextMenu: "Menu contestuale", + Browser: "Browser", + Scale: "Scala tutte le formule...", + Discoverable: "Evidenzia al passaggio", + Locale: "Lingua", + LoadLocale: "Scarica dall'URL ...", + About: "Informazioni su MathJax", + Help: "Aiuto di MathJax", + localTeXfonts: "usare font TeX locale", + webTeXfonts: "usare font Tex dal web", + imagefonts: "usare font immagine", + localSTIXfonts: "usare font STIX locale", + webSVGfonts: "usare font SVG dal web", + genericfonts: "usare generici font unicode", + wofforotffonts: "font woff oppure otf", + eotffonts: "font eot", + svgfonts: "font svg", + WebkitNativeMMLWarning: "Il tuo browser non sembra supportare MathML nativamente, perci\u00F2 il passaggio ora all'output MathML potrebbe rendere illegibili le formule della pagina.", + MSIENativeMMLWarning: "Internet Explorer richiede il plugin MathPlayer per processare output MathML.", + OperaNativeMMLWarning: "Il supporto di Opera a MathML \u00E8 limitato, perci\u00F2 passando ora all'output MathML potrebbe succedere che alcune espressioni siano rese in modo scadente.", + SafariNativeMMLWarning: "L'implementazione di MathML del tuo browser non comprende tutte le caratteristiche usate da MathJax, perci\u00F2 alcune espressioni potrebbero non essere visualizzate perfettamente.", + FirefoxNativeMMLWarning: "L'implementazione di MathML del tuo browser non comprende tutte le caratteristiche usate da MathJax, perci\u00F2 alcune espressioni potrebbero non essere visualizzate perfettamente.", + MSIESVGWarning: "SVG non \u00E8 implementato nelle versioni precedenti IE9 oppure quando si sta emulando IE8 o precedenti. Passando all'output SVG le formule non saranno visualizzate correttamente.", + LoadURL: "Scaricamento traduzione da questo indirizzo:", + BadURL: "L'indirizzo dovrebbe puntare a un file Javascript con una traduzione di MathJax. I nomi di file Javascript dovrebbero avere estensione '.js'", + BadData: "Impossibile scaricare la traduzione da %1", + SwitchAnyway: "Passare comunque a questo interprete?\n\n(Premi OK per cambiare, ANNULLA per continuare con la modalit\u00E1 corrente", + ScaleMath: "Scala tutte le formule (comparate al testo circostante) del", + NonZeroScale: "Il fattore di scala non deve essere zero", + PercentScale: "Il fattore di scala deve essere in percentuale (es. 120%%)", + IE8warning: "Questo disabiliter\u00E1 il menu di MathJax e la possibilit\u00E1 di zoom, puoi per\u00F2 accedere lo stesso al menu con Alt-Click su una formula.\n\nCambiare davvero le impostazioni di MathPlayer?", + IE9warning: "Il menu contestuale di MathJax verr\u00E1 disabilitato, ma puoi sempre premere Alt-Click sopra una formula per accedervi comunque.", + NoOriginalForm: "Modulo originale non disponibile", + Close: "Chiudi", + EqSource: "Codice sorgente formula MathJax" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/it/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/it/TeX.js b/modules/MathJax/unpacked/localization/it/TeX.js new file mode 100644 index 0000000..d781c20 --- /dev/null +++ b/modules/MathJax/unpacked/localization/it/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/it/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("it","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Graffa d'apertura in pi\u00F9 o di chiusura mancante", + ExtraCloseMissingOpen: "Graffa di chiusura in pi\u00F9 o d'apertura mancante", + MissingLeftExtraRight: "Comando \\left mancante oppure \\right extra", + MissingScript: "Argomento per l'esponente o per l'indice mancante", + ExtraLeftMissingRight: "Comando \\left extra oppure \\right mancante", + Misplaced: "%1 mal posizionato", + MissingOpenForSub: "Graffa d'apertura per l'indice mancante", + MissingOpenForSup: "Graffa d'apertura per l'esponente mancante", + AmbiguousUseOf: "Uso ambiguo di %1", + EnvBadEnd: "\\begin{%1} terminato con \\end{%2}", + EnvMissingEnd: "\\end{%1} mancante", + MissingBoxFor: "Box per %1 mancante", + MissingCloseBrace: "Graffa di chiusura mancante", + UndefinedControlSequence: "Sequenza di controllo %1 indefinita", + DoubleExponent: "Esponente doppio: usa le parentesi per distinguerli", + DoubleSubscripts: "Doppio indice: usa le parentesi per distinguerli", + DoubleExponentPrime: "Simbolo di primo visto come secondo esponente: usa le parentesi per chiarire", + CantUseHash1: "Non puoi usare il carattere # come parametro delle macro in modalit\u00E1 matematica", + MisplacedMiddle: "%1 deve trovarsi tra \\left e \\right", + MisplacedLimits: "%1 \u00E8 consentito solo con operatori", + MisplacedMoveRoot: "%1 pu\u00F2 appare solo sotto radice", + MultipleCommand: "%1 multipli", + IntegerArg: "L'argomento di %1 deve essere un intero", + NotMathMLToken: "%1 non \u00E8 un token", + InvalidMathMLAttr: "Attributo MathML non valido: %1", + UnknownAttrForElement: "%1 non \u00E8 un attributo riconosciuto per %2", + MaxMacroSub1: "Numero massimo per le sostituzioni di macro superato da MathJax; forse una chiamata di macro ricorsiva?", + MaxMacroSub2: "Numero massimo per le sostituzioni superato da MathJax; forse un'ambiente LaTeX ricorsivo?", + MissingArgFor: "Argomento di %1 mancante", + ExtraAlignTab: "Tabulazione d'allineamento extra nel testo di \\cases", + BracketMustBeDimension: "L'argomento tra parentesi per %1 deve essere una dimensione", + InvalidEnv: "Nome d'ambiente non valido '%1'", + UnknownEnv: "Ambiente sconosciuto '%1'", + ExtraCloseLooking: "Graffa di chiusura extra durante la ricerca di %1", + MissingCloseBracket: "Parentesi ] per l'argomento di %1 non trovata", + MissingOrUnrecognizedDelim: "Delimitatore per %1 mancante o non riconosciuto", + MissingDimOrUnits: "Dimensione o sue unit\u00E1 mancanti per %1", + TokenNotFoundForCommand: "Impossibile trovare %1 per %2", + MathNotTerminated: "Formula non terminata in box di testo", + IllegalMacroParam: "Riferimento a un parametro di macro illegale", + MaxBufferSize: "Dimensione del buffer interno di MathJax superato; chiamata di macro ricorsiva?", + CommandNotAllowedInEnv: "%1 non \u00E8 consentito nell'ambiente %2", + MultipleLabel: "Etichetta '%1' definita pi\u00F9 volte", + CommandAtTheBeginingOfLine: "%1 deve trovarsi all'inizio della riga", + IllegalAlign: "Allineamento specificato in %1 illegale", + BadMathStyleFor: "Stile math inadatto a %1", + PositiveIntegerArg: "L'argomento di %1 deve essere un intero positivo", + ErroneousNestingEq: "Annidamento di strutture di equazioni errato", + MultlineRowsOneCol: "Le righe nell'ambiente %1 devono avere esattamente una colonna", + MultipleBBoxProperty: "%1 specificato due volte in %2", + InvalidBBoxProperty: "'%1' non sembra un colore, una spaziatura o uno stile", + ExtraEndMissingBegin: "%1 extra oppure \\begingroup mancante", + GlobalNotFollowedBy: "%1 non seguito da \\let, \\def o \\newcommand", + UndefinedColorModel: "Modello colore '%1' non definito", + ModelArg1: "I valori di colore per il modello %1 richiedono tre numeri", + InvalidDecimalNumber: "Numero decimale non valido", + ModelArg2: "I valori di colore per il modello %1 devono essere compresi tra %2 e %3", + InvalidNumber: "Numero non valido", + NewextarrowArg1: "Il primo argomento di %1 deve essere il nome di una sequenza di controllo", + NewextarrowArg2: "Il secondo argomento di %1 devono essere due numeri separati da una virgola", + NewextarrowArg3: "Il terzo argomento di %1 deve essere un codice di un carattere unicode", + NoClosingChar: "Impossibile trovare la parentesi di chiusura %1", + IllegalControlSequenceName: "Nome sequenza di controllo illegale per %1", + IllegalParamNumber: "Numero di parametri specificato in %1 illegale", + MissingCS: "%1 deve essere seguito da una sequenza di controllo", + CantUseHash2: "Uso di # non consentito nel modello di %1", + SequentialParam: "I parametri per %1 devono essere numerati consecutivamente", + MissingReplacementString: "Stringa di sostituzione per la definizione di %1 mancante", + MismatchUseDef: "L'uso di %1 non combacia con la sua definizione", + RunawayArgument: "Perso un argomento per %1?", + NoClosingDelim: "Impossibile trovare delimitatore di chiusura per %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/it/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/it/it.js b/modules/MathJax/unpacked/localization/it/it.js new file mode 100644 index 0000000..e56c647 --- /dev/null +++ b/modules/MathJax/unpacked/localization/it/it.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/it/it.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("it",null,{ + menuTitle: "italiano", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax ha trovato un cookie di configurazione utente che include del codice eseguibile. Vuoi eseguirlo?\n\n(Premi Annulla a meno che non l'abbia effettivamente impostato tu.)", + MathProcessingError: "Errore elaborazione della formula", + MathError: "Errore nella formula", + LoadFile: "Caricamento %1", + Loading: "Caricamento", + LoadFailed: "Caricamento del file fallito: %1", + ProcessMath: "Elaborazione formula: %1%%", + Processing: "Elaborazione in corso", + TypesetMath: "Composizione della formula: %1%%", + Typesetting: "Composizione", + MathJaxNotSupported: "Il tuo browser non supporta MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) {return 1} // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/it/it.js"); diff --git a/modules/MathJax/unpacked/localization/ja/FontWarnings.js b/modules/MathJax/unpacked/localization/ja/FontWarnings.js new file mode 100644 index 0000000..b8680f0 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ja/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ja/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ja","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + imageFonts: "MathJax \u306F\u30ED\u30FC\u30AB\u30EB \u30D5\u30A9\u30F3\u30C8\u3084 Web \u30D5\u30A9\u30F3\u30C8\u3067\u306F\u306A\u304F\u753B\u50CF\u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528\u3057\u3066\u3044\u307E\u3059\u3002\u63CF\u753B\u304C\u901A\u5E38\u3088\u308A\u9045\u3044\u304A\u305D\u308C\u304C\u3042\u308A\u3001\u30D7\u30EA\u30F3\u30BF\u30FC\u3067\u306E\u9AD8\u89E3\u50CF\u5EA6\u306E\u5370\u5237\u306B\u5411\u304B\u306A\u3044\u304A\u305D\u308C\u304C\u3042\u308A\u307E\u3059\u3002", + fonts: "MathJax \u3067\u306F [STIX \u30D5\u30A9\u30F3\u30C8](%1)\u3084 [MathJax Tex \u30D5\u30A9\u30F3\u30C8](%2)\u3092\u4F7F\u7528\u3067\u304D\u307E\u3059\u3002MathJax \u4F53\u9A13\u3092\u6539\u5584\u3059\u308B\u305F\u3081\u306B\u3001\u30D5\u30A9\u30F3\u30C8\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u304A\u3088\u3073\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u3066\u304F\u3060\u3055\u3044\u3002", + STIXPage: "\u3053\u306E\u30DA\u30FC\u30B8\u306F [STIX \u30D5\u30A9\u30F3\u30C8](%1)\u3092\u4F7F\u7528\u3059\u308B\u3088\u3046\u306B\u8A2D\u8A08\u3055\u308C\u3066\u3044\u307E\u3059\u3002MathJax \u4F53\u9A13\u3092\u6539\u5584\u3059\u308B\u305F\u3081\u306B\u3001\u30D5\u30A9\u30F3\u30C8\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u304A\u3088\u3073\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u3066\u304F\u3060\u3055\u3044\u3002", + TeXPage: "\u3053\u306E\u30DA\u30FC\u30B8\u306F [MathJax TeX \u30D5\u30A9\u30F3\u30C8](%1)\u3092\u4F7F\u7528\u3059\u308B\u3088\u3046\u306B\u8A2D\u8A08\u3055\u308C\u3066\u3044\u307E\u3059\u3002MathJax \u4F53\u9A13\u3092\u6539\u5584\u3059\u308B\u305F\u3081\u306B\u3001\u30D5\u30A9\u30F3\u30C8\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u304A\u3088\u3073\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u3066\u304F\u3060\u3055\u3044\u3002", + webFont: "MathJax \u306F\u3053\u306E\u30DA\u30FC\u30B8\u3067\u3001\u6570\u5F0F\u3092\u8868\u793A\u3059\u308B\u305F\u3081\u306B\u30A6\u30A7\u30D6 \u30D9\u30FC\u30B9\u306E\u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528\u3057\u3066\u3044\u307E\u3059\u3002\u30D5\u30A9\u30F3\u30C8\u306E\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u306B\u6642\u9593\u304C\u304B\u304B\u308B\u305F\u3081\u3001\u3042\u306A\u305F\u306E\u30B7\u30B9\u30C6\u30E0\u306E\u30D5\u30A9\u30F3\u30C8 \u30D5\u30A9\u30EB\u30C0\u30FC\u306B\u6570\u5F0F\u30D5\u30A9\u30F3\u30C8\u3092\u76F4\u63A5\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3059\u308B\u3053\u3068\u3067\u30DA\u30FC\u30B8\u306E\u30EC\u30F3\u30C0\u30EA\u30F3\u30B0\u304C\u3088\u308A\u901F\u304F\u306A\u308A\u307E\u3059\u3002", + noFonts: "MathJax \u304C\u6570\u5F0F\u306E\u8868\u793A\u306B\u4F7F\u7528\u3059\u308B\u30D5\u30A9\u30F3\u30C8\u3092\u898B\u3064\u3051\u3089\u308C\u305A\u3001\u753B\u50CF\u30D5\u30A9\u30F3\u30C8\u3082\u5229\u7528\u3067\u304D\u306A\u3044\u305F\u3081\u3001\u4EE3\u308F\u308A\u306B\u6C4E\u7528\u306E Unicode \u6587\u5B57\u3092\u4F7F\u7528\u3057\u3066\u3044\u307E\u3059\u3002\u3054\u4F7F\u7528\u4E2D\u306E\u30D6\u30E9\u30A6\u30B6\u30FC\u304C\u8868\u793A\u3067\u304D\u308B\u3082\u306E\u3068\u671F\u5F85\u3057\u3066\u3044\u307E\u3059\u304C\u3001\u4E00\u90E8\u306E\u6587\u5B57\u304C\u9069\u5207\u306B\u8868\u793A\u3055\u308C\u306A\u3044\u3001\u307E\u305F\u306F\u5168\u304F\u8868\u793A\u3055\u308C\u306A\u3044\u304A\u305D\u308C\u304C\u3042\u308A\u307E\u3059\u3002", + webFonts: "\u591A\u304F\u306E\u30A6\u30A7\u30D6 \u30D6\u30E9\u30A6\u30B6\u30FC\u306F\u30A6\u30A7\u30D6\u304B\u3089\u30D5\u30A9\u30F3\u30C8\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u3067\u304D\u307E\u3059\u3002\u3054\u4F7F\u7528\u4E2D\u306E\u30D6\u30E9\u30A6\u30B6\u30FC\u3092\u3088\u308A\u65B0\u3057\u3044\u30D0\u30FC\u30B8\u30E7\u30F3\u306B\u66F4\u65B0\u3059\u308B (\u307E\u305F\u306F\u5225\u306E\u30D6\u30E9\u30A6\u30B6\u30FC\u306B\u5909\u66F4\u3059\u308B) \u3053\u3068\u3067\u3001\u3053\u306E\u30DA\u30FC\u30B8\u306E\u6570\u5F0F\u306E\u54C1\u8CEA\u304C\u5411\u4E0A\u3059\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ja/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/ja/HTML-CSS.js b/modules/MathJax/unpacked/localization/ja/HTML-CSS.js new file mode 100644 index 0000000..46bb491 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ja/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ja/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ja","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Web \u30D5\u30A9\u30F3\u30C8 %1 \u3092\u8AAD\u307F\u8FBC\u307F\u4E2D", + CantLoadWebFont: "Web \u30D5\u30A9\u30F3\u30C8 %1 \u3092\u8AAD\u307F\u8FBC\u3081\u307E\u305B\u3093", + FirefoxCantLoadWebFont: "Firefox \u306F\u3001\u30EA\u30E2\u30FC\u30C8 \u30DB\u30B9\u30C8\u306E Web \u30D5\u30A9\u30F3\u30C8\u3092\u8AAD\u307F\u8FBC\u3081\u307E\u305B\u3093", + CantFindFontUsing: "%1 \u3067\u6709\u52B9\u306A\u30D5\u30A9\u30F3\u30C8\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093", + WebFontsNotAvailable: "Web \u30D5\u30A9\u30F3\u30C8\u3092\u5229\u7528\u3067\u304D\u307E\u305B\u3093\u3002\u4EE3\u308F\u308A\u306B\u753B\u50CF\u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528\u3057\u307E\u3059" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ja/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/ja/HelpDialog.js b/modules/MathJax/unpacked/localization/ja/HelpDialog.js new file mode 100644 index 0000000..e39533e --- /dev/null +++ b/modules/MathJax/unpacked/localization/ja/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ja/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ja","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "MathJax \u30D8\u30EB\u30D7", + MathJax: "*MathJax* \u306F\u30A6\u30A7\u30D6 \u30DA\u30FC\u30B8\u306E\u88FD\u4F5C\u8005\u304C\u30DA\u30FC\u30B8\u306B\u6570\u5F0F\u3092\u57CB\u3081\u8FBC\u3081\u308B\u3088\u3046\u306B\u3059\u308B JavaScript \u30E9\u30A4\u30D6\u30E9\u30EA\u3067\u3059\u3002\u95B2\u89A7\u8005\u5074\u3067\u306F\u6570\u5F0F\u3092\u95B2\u89A7\u3059\u308B\u306E\u306B\u4F55\u3082\u5FC5\u8981\u3068\u3057\u307E\u305B\u3093\u3002", + Browsers: "*\u30D6\u30E9\u30A6\u30B6\u30FC*: MathJax \u306F\u3001IE6 \u4EE5\u964D\u3001Chrome 0.2 \u4EE5\u964D\u3001Safari 2 \u4EE5\u964D\u3001Opera 9.6 \u4EE5\u964D\u3001\u307B\u3068\u3093\u3069\u306E\u30E2\u30D0\u30A4\u30EB \u30D6\u30E9\u30A6\u30B6\u30FC\u3092\u542B\u3080\u3001\u30E2\u30C0\u30F3 \u30D6\u30E9\u30A6\u30B6\u30FC\u3067\u52D5\u4F5C\u3057\u307E\u3059\u3002", + Menu: "*\u6570\u5F0F\u30E1\u30CB\u30E5\u30FC*: MathJax \u306F\u6570\u5F0F\u306B\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8 \u30E1\u30CB\u30E5\u30FC\u3092\u8FFD\u52A0\u3057\u307E\u3059\u3002\u4EFB\u610F\u306E\u6570\u5F0F\u3092\u53F3\u30AF\u30EA\u30C3\u30AF\u307E\u305F\u306F Ctrl+\u30AF\u30EA\u30C3\u30AF\u3059\u308B\u3068\u30E1\u30CB\u30E5\u30FC\u304C\u958B\u304D\u307E\u3059\u3002", + ShowMath: "*\u6570\u5F0F\u3092\u8868\u793A*\u3067\u306F\u3001\u6570\u5F0F\u306E\u30BD\u30FC\u30B9 \u30DE\u30FC\u30AF\u30A2\u30C3\u30D7\u3092\u8868\u793A\u3057\u3066\u30B3\u30D4\u30FC \u0026 \u30DA\u30FC\u30B9\u30C8\u3067\u304D\u307E\u3059 (MathML \u3084\u5143\u306E\u5F62\u5F0F\u3067)\u3002", + Settings: "*\u8A2D\u5B9A*\u3067\u306F\u3001MathJax \u306E\u6A5F\u80FD\u3092\u5236\u5FA1\u3067\u304D\u307E\u3059\u3002\u6570\u5F0F\u306E\u30B5\u30A4\u30BA\u3001\u6570\u5F0F\u306E\u8868\u793A\u306B\u4F7F\u7528\u3059\u308B\u30E1\u30AB\u30CB\u30BA\u30E0\u306A\u3069\u3002", + Language: "*\u8A00\u8A9E*\u3067\u306F\u3001MathJax \u304C\u30E1\u30CB\u30E5\u30FC\u3084\u8B66\u544A\u30E1\u30C3\u30BB\u30FC\u30B8\u306B\u4F7F\u7528\u3059\u308B\u8A00\u8A9E\u3092\u9078\u629E\u3067\u304D\u307E\u3059\u3002", + Zoom: "*\u6570\u5F0F\u306E\u30BA\u30FC\u30E0*: \u6570\u5F0F\u3092\u8AAD\u307F\u53D6\u308B\u306E\u304C\u56F0\u96E3\u306A\u5834\u5408\u306F\u3001MathJax \u304C\u62E1\u5927\u3057\u3066\u8AAD\u307F\u3084\u3059\u304F\u3067\u304D\u307E\u3059\u3002", + Accessibilty: "*\u30A2\u30AF\u30BB\u30B7\u30D3\u30EA\u30C6\u30A3*: MathJax \u306F\u81EA\u52D5\u7684\u306B\u30C6\u30AD\u30B9\u30C8 \u30EA\u30FC\u30C0\u30FC\u3067\u6570\u5F0F\u306B\u30A2\u30AF\u30BB\u30B9\u3067\u304D\u308B\u3088\u3046\u306B\u3057\u307E\u3059 (\u8996\u899A\u969C\u5BB3\u8005\u5411\u3051)\u3002", + Fonts: "*\u30D5\u30A9\u30F3\u30C8*: MathJax \u306F\u3001\u7279\u5B9A\u306E\u6570\u5F0F\u30D5\u30A9\u30F3\u30C8\u304C\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3055\u308C\u3066\u3044\u308B\u5834\u5408\u306F\u305D\u308C\u3092\u4F7F\u7528\u3057\u3001\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3055\u308C\u3066\u3044\u306A\u3044\u5834\u5408\u306F Web \u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528\u3057\u307E\u3059\u3002\u5FC5\u9808\u3067\u306F\u3042\u308A\u307E\u305B\u3093\u304C\u3001\u30D5\u30A9\u30F3\u30C8\u3092\u30ED\u30FC\u30AB\u30EB\u306B\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3059\u308B\u3053\u3068\u3067\u7D44\u7248\u304C\u9AD8\u901F\u5316\u3055\u308C\u307E\u3059\u3002[STIX \u30D5\u30A9\u30F3\u30C8](%1)\u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3059\u308B\u3053\u3068\u3092\u304A\u52E7\u3081\u3057\u307E\u3059\u3002" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ja/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/ja/MathML.js b/modules/MathJax/unpacked/localization/ja/MathML.js new file mode 100644 index 0000000..cc4cf1f --- /dev/null +++ b/modules/MathJax/unpacked/localization/ja/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ja/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ja","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "\u8AA4\u3063\u305F mglyph: %1", + BadMglyphFont: "\u8AA4\u3063\u305F\u30D5\u30A9\u30F3\u30C8: %1", + UnknownNodeType: "\u4E0D\u660E\u306A\u7A2E\u985E\u306E\u30CE\u30FC\u30C9: %1", + UnexpectedTextNode: "\u4E88\u671F\u3057\u306A\u3044\u30C6\u30AD\u30B9\u30C8 \u30CE\u30FC\u30C9: %1", + ErrorParsingMathML: "MathML \u306E\u69CB\u6587\u89E3\u6790\u30A8\u30E9\u30FC", + ParsingError: "MathML \u306E\u69CB\u6587\u89E3\u6790\u30A8\u30E9\u30FC: %1", + MathMLSingleElement: "MathML \u306F\u5358\u4E00\u306E\u8981\u7D20\u3067\u69CB\u6210\u3057\u3066\u304F\u3060\u3055\u3044", + MathMLRootElement: "MathML \u306F %1 \u3067\u306F\u306A\u304F \u003Cmath\u003E \u8981\u7D20\u3067\u69CB\u6210\u3057\u3066\u304F\u3060\u3055\u3044", + MathPlayer: "MathJax \u306F MathPlayer \u3092\u8A2D\u5B9A\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002\n\nMathPlayer \u3092\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u3066\u3044\u306A\u3044\u5834\u5408\u306F\u3001\n\u307E\u305A\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002\n\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u3066\u3044\u308B\u5834\u5408\u306F\u3001\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u306E\u8A2D\u5B9A\u3067 ActiveX\n\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306E\u5B9F\u884C\u3092\u62D2\u5426\u3057\u3066\u3044\u308B\u5834\u5408\u304C\u3042\u308A\u307E\u3059\u3002\n[\u30C4\u30FC\u30EB] \u30E1\u30CB\u30E5\u30FC\u306E [\u30A4\u30F3\u30BF\u30FC\u30CD\u30C3\u30C8 \u30AA\u30D7\u30B7\u30E7\u30F3] \u3067\u3001\n[\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3] \u30BF\u30D6\u306E [\u30EC\u30D9\u30EB\u306E\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA] \u3092\u62BC\u3057\u3066\u304F\u3060\u3055\u3044\u3002\n[Active \u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306E\u5B9F\u884C] \u3068 [\u30D0\u30A4\u30CA\u30EA \u30D3\u30D8\u30A4\u30D3\u30A2\u30FC\u3068\u30B9\u30AF\u30EA\u30D7\u30C8\n\u30D3\u30D8\u30A4\u30D3\u30A2\u30FC] \u304C\u6709\u52B9\u306B\u306A\u3063\u3066\u3044\u308B\u3053\u3068\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002\n\n\u73FE\u6642\u70B9\u3067\u306F\u3001\u6570\u5F0F\u304C\u7D44\u7248\u3055\u308C\u305A\u3001\u30A8\u30E9\u30FC \u30E1\u30C3\u30BB\u30FC\u30B8\u304C\u8868\u793A\u3055\u308C\u307E\u3059\u3002", + CantCreateXMLParser: "MathJax \u306F MathML \u7528\u306E XML \u30D1\u30FC\u30B5\u30FC\u3092\u4F5C\u6210\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002\n\u300C\u30B9\u30AF\u30EA\u30D7\u30C8\u3092\u5B9F\u884C\u3057\u3066\u3082\u5B89\u5168\u3060\u3068\u30DE\u30FC\u30AF\u3055\u308C\u3066\u3044\u308B ActiveX\n\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB\u306E\u30B9\u30AF\u30EA\u30D7\u30C8\u306E\u5B9F\u884C\u300D\u3092\u6709\u52B9\u306B\u3057\u3066\u3044\u308B\u304B\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\n([\u30C4\u30FC\u30EB] \u30E1\u30CB\u30E5\u30FC\u306E [\u30A4\u30F3\u30BF\u30FC\u30CD\u30C3\u30C8 \u30AA\u30D7\u30B7\u30E7\u30F3] \u3092\u9078\u629E\u3057\u3001\n[\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3] \u30BF\u30D6\u306E [\u30EC\u30D9\u30EB\u306E\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA] \u3067\u78BA\u8A8D\u3067\u304D\u307E\u3059)\u3002\n\nMathML \u306E\u6570\u5F0F\u3092 MathML \u304C\u51E6\u7406\u3067\u304D\u306A\u304F\u306A\u308A\u307E\u3059\u3002" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ja/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/ja/MathMenu.js b/modules/MathJax/unpacked/localization/ja/MathMenu.js new file mode 100644 index 0000000..461080d --- /dev/null +++ b/modules/MathJax/unpacked/localization/ja/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ja/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ja","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "\u6570\u5F0F\u3092\u8868\u793A", + MathMLcode: "MathML \u30B3\u30FC\u30C9", + OriginalMathML: "\u5143\u306E MathML", + TeXCommands: "TeX \u30B3\u30DE\u30F3\u30C9", + AsciiMathInput: "AsciiMathML \u5165\u529B", + Original: "\u5143\u306E\u5F62\u5F0F", + ErrorMessage: "\u30A8\u30E9\u30FC \u30E1\u30C3\u30BB\u30FC\u30B8", + Annotation: "\u6CE8\u91C8", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "Content MathML", + OpenMath: "OpenMath", + texHints: "MathML \u3067 TeX \u306E\u30D2\u30F3\u30C8\u3092\u8868\u793A", + Settings: "\u6570\u5F0F\u306E\u8A2D\u5B9A", + ZoomTrigger: "\u30BA\u30FC\u30E0\u306E\u30C8\u30EA\u30AC\u30FC", + Hover: "\u30DB\u30D0\u30FC", + Click: "\u30AF\u30EA\u30C3\u30AF", + DoubleClick: "\u30C0\u30D6\u30EB\u30AF\u30EA\u30C3\u30AF", + NoZoom: "\u30BA\u30FC\u30E0\u306A\u3057", + TriggerRequires: "\u5FC5\u8981\u306A\u30AD\u30FC:", + Option: "Option", + Alt: "Alt", + Command: "Command", + Control: "Ctrl", + Shift: "Shift", + ZoomFactor: "\u30BA\u30FC\u30E0\u306E\u500D\u7387", + Renderer: "\u6570\u5F0F\u30EC\u30F3\u30C0\u30E9\u30FC", + MPHandles: "\u6570\u5F0F\u30D7\u30EC\u30FC\u30E4\u30FC\u306B\u51E6\u7406\u3055\u305B\u308B\u30A4\u30D9\u30F3\u30C8:", + MenuEvents: "\u30E1\u30CB\u30E5\u30FC \u30A4\u30D9\u30F3\u30C8", + MouseEvents: "\u30DE\u30A6\u30B9 \u30A4\u30D9\u30F3\u30C8", + MenuAndMouse: "\u30DE\u30A6\u30B9\u3068\u30E1\u30CB\u30E5\u30FC\u306E\u30A4\u30D9\u30F3\u30C8", + FontPrefs: "\u30D5\u30A9\u30F3\u30C8\u306E\u8A2D\u5B9A", + ForHTMLCSS: "HTML-CSS:", + Auto: "\u81EA\u52D5", + TeXLocal: "TeX (\u30ED\u30FC\u30AB\u30EB)", + TeXWeb: "TeX (Web)", + TeXImage: "TeX (\u753B\u50CF)", + STIXLocal: "STIX (\u30ED\u30FC\u30AB\u30EB)", + ContextMenu: "\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8 \u30E1\u30CB\u30E5\u30FC", + Browser: "\u30D6\u30E9\u30A6\u30B6\u30FC", + Scale: "\u3059\u3079\u3066\u306E\u6570\u5F0F\u306E\u500D\u7387\u3092\u5909\u66F4...", + Discoverable: "\u30DB\u30D0\u30FC\u6642\u306B\u5F37\u8ABF", + Locale: "\u8A00\u8A9E", + LoadLocale: "URL \u304B\u3089\u8AAD\u307F\u8FBC\u3080...", + About: "MathJax \u306B\u3064\u3044\u3066", + Help: "MathJax \u30D8\u30EB\u30D7", + localTeXfonts: "\u30ED\u30FC\u30AB\u30EB TeX \u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528", + webTeXfonts: "Web TeX \u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528", + imagefonts: "\u753B\u50CF\u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528", + localSTIXfonts: "\u30ED\u30FC\u30AB\u30EB STIX \u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528", + webSVGfonts: "Web SVG \u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528", + genericfonts: "\u6C4E\u7528 Unicode \u30D5\u30A9\u30F3\u30C8\u3092\u4F7F\u7528", + wofforotffonts: "WOFF \u30D5\u30A9\u30F3\u30C8\u307E\u305F\u306F OTF \u30D5\u30A9\u30F3\u30C8", + eotffonts: "EOT \u30D5\u30A9\u30F3\u30C8", + svgfonts: "SVG \u30D5\u30A9\u30F3\u30C8", + LoadURL: "\u7FFB\u8A33\u30C7\u30FC\u30BF\u3092\u8AAD\u307F\u8FBC\u3080 URL:", + BadURL: "MathJax \u7FFB\u8A33\u30C7\u30FC\u30BF\u3092\u5B9A\u7FA9\u3059\u308B JavaScript \u30D5\u30A1\u30A4\u30EB\u306E URL \u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u3001JavaScript \u306E\u30D5\u30A1\u30A4\u30EB\u540D\u306E\u672B\u5C3E\u306F\u300C.js\u300D\u3067\u3042\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002", + BadData: "%1 \u304B\u3089\u7FFB\u8A33\u30C7\u30FC\u30BF\u3092\u8AAD\u307F\u8FBC\u3081\u307E\u305B\u3093\u3067\u3057\u305F", + SwitchAnyway: "\u30EC\u30F3\u30C0\u30E9\u30FC\u3092\u672C\u5F53\u306B\u5207\u308A\u66FF\u3048\u307E\u3059\u304B?\n\n(\u5207\u308A\u66FF\u3048\u308B\u306B\u306F OK \u3092\u3001\u73FE\u5728\u306E\u30EC\u30F3\u30C0\u30E9\u30FC\u306E\u307E\u307E\u306B\u3059\u308B\u306B\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3092\u62BC\u3057\u3066\u304F\u3060\u3055\u3044)", + ScaleMath: "\u3059\u3079\u3066\u306E\u6570\u5F0F\u306E\u500D\u7387 (\u5468\u56F2\u306E\u30C6\u30AD\u30B9\u30C8\u3068\u306E\u6BD4)", + NonZeroScale: "\u500D\u7387\u306B 0 \u306F\u6307\u5B9A\u3067\u304D\u307E\u305B\u3093", + PercentScale: "\u500D\u7387\u306F\u767E\u5206\u7387\u3067\u306A\u3051\u308C\u3070\u306A\u308A\u307E\u305B\u3093 (\u4F8B: 120%%)", + IE8warning: "MathJax \u306E\u30E1\u30CB\u30E5\u30FC\u3068\u30BA\u30FC\u30E0\u6A5F\u80FD\u304C\u7121\u52B9\u306B\u306A\u308A\u307E\u3059\u304C\u3001\u4EE3\u308F\u308A\u306B\u6570\u5F0F\u3092 Alt+\u30AF\u30EA\u30C3\u30AF\u3059\u308B\u3068 MathJax \u306E\u30E1\u30CB\u30E5\u30FC\u3092\u4F7F\u7528\u3067\u304D\u307E\u3059\u3002\n\nMathPlayer \u306E\u8A2D\u5B9A\u3092\u672C\u5F53\u306B\u5909\u66F4\u3057\u307E\u3059\u304B?", + IE9warning: "MathJax \u306E\u30B3\u30F3\u30C6\u30AD\u30B9\u30C8 \u30E1\u30CB\u30E5\u30FC\u304C\u7121\u52B9\u306B\u306A\u308A\u307E\u3059\u304C\u3001\u4EE3\u308F\u308A\u306B\u6570\u5F0F\u3092 Alt+\u30AF\u30EA\u30C3\u30AF\u3059\u308B\u3068 MathJax \u306E\u30E1\u30CB\u30E5\u30FC\u3092\u4F7F\u7528\u3067\u304D\u307E\u3059\u3002", + Close: "\u9589\u3058\u308B", + EqSource: "MathJax \u6570\u5F0F\u306E\u30BD\u30FC\u30B9", + WebkitNativeMMLWarning: "\u3054\u4F7F\u7528\u4E2D\u306E\u30D6\u30E9\u30A6\u30B6\u30FC\u306F MathML \u306B\u30CD\u30A4\u30C6\u30A3\u30D6\u5BFE\u5FDC\u3057\u3066\u3044\u306A\u3044\u3068\u601D\u308F\u308C\u308B\u305F\u3081\u3001MathML \u51FA\u529B\u306B\u5207\u308A\u66FF\u3048\u308B\u3068\u30DA\u30FC\u30B8\u5185\u306E\u6570\u5F0F\u304C\u5224\u8AAD\u4E0D\u80FD\u306B\u306A\u308B\u304A\u305D\u308C\u304C\u3042\u308A\u307E\u3059\u3002", + MSIENativeMMLWarning: "Internet Explorer \u3067\u306F\u3001MathML \u51FA\u529B\u3092\u51E6\u7406\u3059\u308B\u305F\u3081\u306B MathPlayer \u30D7\u30E9\u30B0\u30A4\u30F3\u304C\u5FC5\u8981\u3067\u3059\u3002", + OperaNativeMMLWarning: "Opera \u306F MathML \u306B\u5B8C\u5168\u306B\u306F\u5BFE\u5FDC\u3057\u3066\u3044\u306A\u3044\u305F\u3081\u3001MathML \u51FA\u529B\u306B\u5207\u308A\u66FF\u3048\u308B\u3068\u6570\u5F0F\u306E\u63CF\u753B\u304C\u4E0D\u5B8C\u5168\u306B\u306A\u308B\u304A\u305D\u308C\u304C\u3042\u308A\u307E\u3059\u3002", + SafariNativeMMLWarning: "\u3042\u306A\u305F\u306E\u30D6\u30E9\u30A6\u30B6\u30FC\u306E\u30CD\u30A4\u30C6\u30A3\u30D6 MathML \u306F\u3001MathJax \u304C\u4F7F\u7528\u3059\u308B\u6A5F\u80FD\u3092\u3059\u3079\u3066\u306F\u5B9F\u88C5\u3057\u3066\u3044\u306A\u3044\u305F\u3081\u3001\u6570\u5F0F\u306E\u4E00\u90E8\u304C\u9069\u5207\u306B\u63CF\u753B\u3055\u308C\u306A\u3044\u304A\u305D\u308C\u304C\u3042\u308A\u307E\u3059\u3002", + FirefoxNativeMMLWarning: "\u3042\u306A\u305F\u306E\u30D6\u30E9\u30A6\u30B6\u30FC\u306E\u30CD\u30A4\u30C6\u30A3\u30D6 MathML \u306F\u3001MathJax \u304C\u4F7F\u7528\u3059\u308B\u6A5F\u80FD\u3092\u3059\u3079\u3066\u306F\u5B9F\u88C5\u3057\u3066\u3044\u306A\u3044\u305F\u3081\u3001\u6570\u5F0F\u306E\u4E00\u90E8\u304C\u9069\u5207\u306B\u63CF\u753B\u3055\u308C\u306A\u3044\u304A\u305D\u308C\u304C\u3042\u308A\u307E\u3059\u3002", + MSIESVGWarning: "IE9 \u3088\u308A\u524D\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u306E\u5834\u5408\u3001\u307E\u305F\u306F IE8 \u4EE5\u524D\u3092\u30A8\u30DF\u30E5\u30EC\u30FC\u30C8\u3057\u3066\u3044\u308B\u5834\u5408\u3001Internet Explorer \u306B\u306F SVG \u304C\u5B9F\u88C5\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002SVG \u306B\u5207\u308A\u66FF\u3048\u308B\u3068\u3001\u6570\u5F0F\u304C\u9069\u5207\u306B\u8868\u793A\u3055\u308C\u306A\u304F\u306A\u308A\u307E\u3059\u3002", + NoOriginalForm: "\u5143\u306E\u5F62\u5F0F\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ja/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/ja/TeX.js b/modules/MathJax/unpacked/localization/ja/TeX.js new file mode 100644 index 0000000..1efc447 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ja/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ja/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ja","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "\u958B\u304D\u4E2D\u62EC\u5F27\u304C\u4F59\u5206\u3001\u307E\u305F\u306F\u9589\u3058\u4E2D\u62EC\u5F27\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059", + ExtraCloseMissingOpen: "\u9589\u3058\u4E2D\u62EC\u5F27\u304C\u4F59\u5206\u3001\u307E\u305F\u306F\u958B\u304D\u4E2D\u62EC\u5F27\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059", + MissingLeftExtraRight: "\\left \u304C\u4E0D\u8DB3\u3001\u307E\u305F\u306F \\right \u304C\u4F59\u5206\u3067\u3059", + MissingScript: "\u4E0A\u4ED8\u304D\u307E\u305F\u306F\u4E0B\u4ED8\u304D\u306E\u5F15\u6570\u304C\u3042\u308A\u307E\u305B\u3093", + ExtraLeftMissingRight: "\\left \u304C\u4F59\u5206\u3001\u307E\u305F\u306F \\right \u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059", + Misplaced: "%1 \u306E\u4F4D\u7F6E\u304C\u6B63\u3057\u304F\u3042\u308A\u307E\u305B\u3093", + MissingOpenForSub: "\u4E0B\u4ED8\u304D\u306E\u958B\u304D\u4E2D\u62EC\u5F27\u304C\u3042\u308A\u307E\u305B\u3093", + MissingOpenForSup: "\u4E0A\u4ED8\u304D\u306E\u958B\u304D\u4E2D\u62EC\u5F27\u304C\u3042\u308A\u307E\u305B\u3093", + AmbiguousUseOf: "%1 \u306E\u8A18\u8FF0\u304C\u66D6\u6627\u3067\u3059", + EnvBadEnd: "\\begin{%1} \u304C \\end{%2} \u3067\u7D42\u4E86\u3057\u3066\u3044\u307E\u3059", + EnvMissingEnd: "\\end{%1} \u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059", + MissingBoxFor: "%1 \u306E\u30DC\u30C3\u30AF\u30B9\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059", + MissingCloseBrace: "\u9589\u3058\u4E2D\u62EC\u5F27\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059", + UndefinedControlSequence: "\u672A\u5B9A\u7FA9\u306E\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB \u30B7\u30FC\u30B1\u30F3\u30B9 %1", + DoubleExponent: "\u4E8C\u91CD\u306E\u4E0A\u4ED8\u304D: \u4E2D\u62EC\u5F27\u3092\u4F7F\u7528\u3057\u3066\u660E\u78BA\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + DoubleSubscripts: "\u4E8C\u91CD\u306E\u4E0B\u4ED8\u304D: \u4E2D\u62EC\u5F27\u3092\u4F7F\u7528\u3057\u3066\u660E\u78BA\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + DoubleExponentPrime: "\u30D7\u30E9\u30A4\u30E0\u8A18\u53F7\u306B\u3088\u308B\u4E8C\u91CD\u306E\u4E0A\u4ED8\u304D: \u4E2D\u62EC\u5F27\u3092\u4F7F\u7528\u3057\u3066\u660E\u78BA\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + CantUseHash1: "\u6570\u5F0F\u30E2\u30FC\u30C9\u3067\u306F\u300C\u30DE\u30AF\u30ED \u30D1\u30E9\u30E1\u30FC\u30BF\u30FC\u6587\u5B57 #\u300D\u306F\u4F7F\u7528\u3067\u304D\u307E\u305B\u3093", + MisplacedMiddle: "%1 \u306F \\left \u3068 \\right \u306E\u9593\u306B\u914D\u7F6E\u3057\u3066\u304F\u3060\u3055\u3044", + MisplacedMoveRoot: "%1 \u306F\u30EB\u30FC\u30C8\u5185\u3067\u306E\u307F\u4F7F\u7528\u3067\u304D\u307E\u3059", + MultipleCommand: "%1 \u304C\u8907\u6570\u3042\u308A\u307E\u3059", + IntegerArg: "%1 \u306E\u5F15\u6570\u306F\u6574\u6570\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + NotMathMLToken: "%1 \u306F\u30C8\u30FC\u30AF\u30F3\u8981\u7D20\u3067\u306F\u3042\u308A\u307E\u305B\u3093", + InvalidMathMLAttr: "\u7121\u52B9\u306A MathML \u5C5E\u6027: %1", + UnknownAttrForElement: "%1 \u3092 %2 \u306E\u5C5E\u6027\u3068\u3057\u3066\u8A8D\u8B58\u3067\u304D\u307E\u305B\u3093", + MissingArgFor: "%1 \u306E\u5F15\u6570\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059", + ExtraAlignTab: "\\case \u306E\u30C6\u30AD\u30B9\u30C8\u5185\u3067\u3001\u914D\u7F6E\u7528\u30BF\u30D6\u304C\u4F59\u5206\u3067\u3059", + InvalidEnv: "\u74B0\u5883\u540D\u300C%1\u300D\u306F\u7121\u52B9\u3067\u3059", + UnknownEnv: "\u74B0\u5883\u300C%1\u300D\u306F\u4E0D\u660E\u3067\u3059", + ExtraCloseLooking: "%1 \u3092\u63A2\u7D22\u3059\u308B\u969B\u306B\u4F59\u5206\u306A\u9589\u3058\u4E2D\u62EC\u5F27\u304C\u898B\u3064\u304B\u308A\u307E\u3057\u305F", + MissingCloseBracket: "%1 \u306E\u5F15\u6570\u306E\u9589\u3058\u62EC\u5F27\u300C]\u300D\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3067\u3057\u305F", + MissingOrUnrecognizedDelim: "%1 \u306E\u533A\u5207\u308A\u304C\u4E0D\u8DB3\u307E\u305F\u306F\u672A\u5206\u985E\u3067\u3059", + TokenNotFoundForCommand: "%2 \u306B\u5BFE\u5FDC\u3059\u308B %1 \u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3067\u3057\u305F", + MathNotTerminated: "\u6570\u5F0F\u304C\u30C6\u30AD\u30B9\u30C8 \u30DC\u30C3\u30AF\u30B9\u5185\u3067\u7D42\u4E86\u3057\u3066\u3044\u307E\u305B\u3093", + IllegalMacroParam: "\u30DE\u30AF\u30ED \u30D1\u30E9\u30E1\u30FC\u30BF\u30FC\u53C2\u7167\u306B\u8AA4\u308A\u304C\u3042\u308A\u307E\u3059", + CommandNotAllowedInEnv: "%1 \u306F %2 \u74B0\u5883\u3067\u306F\u4F7F\u7528\u3067\u304D\u307E\u305B\u3093", + MultipleLabel: "\u30E9\u30D9\u30EB\u300C%1\u300D\u304C\u8907\u6570\u56DE\u5B9A\u7FA9\u3055\u308C\u3066\u3044\u307E\u3059", + CommandAtTheBeginingOfLine: "%1 \u306F\u884C\u982D\u306B\u914D\u7F6E\u3057\u3066\u304F\u3060\u3055\u3044", + IllegalAlign: "%1 \u306B\u6307\u5B9A\u3057\u305F\u5F15\u6570\u306B\u8AA4\u308A\u304C\u3042\u308A\u307E\u3059", + BadMathStyleFor: "%1 \u306E\u6570\u5F0F\u306E\u30B9\u30BF\u30A4\u30EB\u306B\u8AA4\u308A\u304C\u3042\u308A\u307E\u3059", + PositiveIntegerArg: "%1 \u306E\u5F15\u6570\u306F\u6B63\u306E\u6574\u6570\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + MultlineRowsOneCol: "%1 \u74B0\u5883\u5185\u306E\u5404\u884C\u306F 1 \u5217\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + MultipleBBoxProperty: "%1 \u304C %2 \u5185\u3067 2 \u56DE\u6307\u5B9A\u3055\u308C\u3066\u3044\u307E\u3059", + InvalidBBoxProperty: "\u300C%1\u300D\u306F\u3001\u8272\u3001\u30D1\u30C7\u30A3\u30F3\u30B0\u3001\u30B9\u30BF\u30A4\u30EB\u306E\u3044\u305A\u308C\u3067\u3082\u306A\u3044\u3088\u3046\u3067\u3059", + ExtraEndMissingBegin: "%1 \u304C\u4F59\u5206\u3001\u307E\u305F\u306F \\begingroup \u304C\u4E0D\u8DB3\u3057\u3066\u3044\u307E\u3059", + GlobalNotFollowedBy: "%1 \u306E\u5F8C\u306B \\let\u3001\\def\u3001\\newcommand \u306E\u3044\u305A\u308C\u3082\u3042\u308A\u307E\u305B\u3093", + UndefinedColorModel: "\u8272\u30E2\u30C7\u30EB\u300C%1\u300D\u306F\u672A\u5B9A\u7FA9\u3067\u3059", + ModelArg1: "\u8272\u30E2\u30C7\u30EB %1 \u306B\u306F\u5024\u304C 3 \u3064\u5FC5\u8981\u3067\u3059", + InvalidDecimalNumber: "\u7121\u52B9\u306A 10 \u9032\u6570\u3067\u3059", + ModelArg2: "\u8272\u30E2\u30C7\u30EB %1 \u306E\u5024\u306F %2 \u3068 %3 \u306E\u9593\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + InvalidNumber: "\u7121\u52B9\u306A\u6570\u5024\u3067\u3059", + NewextarrowArg1: "%1 \u306E\u7B2C 1 \u5F15\u6570\u306F\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB \u30B7\u30FC\u30B1\u30F3\u30B9\u540D\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + NewextarrowArg2: "%1 \u306E\u7B2C 2 \u5F15\u6570\u306F\u3001\u30AB\u30F3\u30DE\u3067\u533A\u5207\u3063\u305F 2 \u3064\u306E\u6574\u6570\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + NewextarrowArg3: "%1 \u306E\u7B2C 3 \u5F15\u6570\u306F Unicode \u306E\u6587\u5B57\u756A\u53F7\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + NoClosingChar: "\u9589\u3058\u62EC\u5F27 %1 \u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093", + IllegalControlSequenceName: "%1 \u306B\u6307\u5B9A\u3067\u304D\u306A\u3044\u8AA4\u3063\u305F\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB \u30B7\u30FC\u30B1\u30F3\u30B9\u540D\u3067\u3059", + IllegalParamNumber: "%1 \u306B\u6307\u5B9A\u3057\u305F\u30D1\u30E9\u30E1\u30FC\u30BF\u30FC\u306E\u500B\u6570\u304C\u8AA4\u3063\u3066\u3044\u307E\u3059", + MissingCS: "%1 \u306E\u5F8C\u306F\u30B3\u30F3\u30C8\u30ED\u30FC\u30EB \u30B7\u30FC\u30B1\u30F3\u30B9\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + CantUseHash2: "%1 \u306E\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u5185\u3067 # \u306E\u4F7F\u7528\u6CD5\u306B\u8AA4\u308A\u304C\u3042\u308A\u307E\u3059", + SequentialParam: "%1 \u306E\u30D1\u30E9\u30E1\u30FC\u30BF\u30FC\u306F\u9023\u756A\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + MissingReplacementString: "%1 \u306E\u5B9A\u7FA9\u3067\u7F6E\u63DB\u6587\u5B57\u5217\u304C\u3042\u308A\u307E\u305B\u3093", + MismatchUseDef: "%1 \u306E\u5B9A\u7FA9\u3068\u4E00\u81F4\u3057\u3066\u3044\u306A\u3044\u4F7F\u7528\u6CD5\u3067\u3059", + NoClosingDelim: "%1 \u306E\u7D42\u4E86\u533A\u5207\u308A\u6587\u5B57\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093", + MisplacedLimits: "%1 \u306F\u6F14\u7B97\u5B50\u306E\u307F\u306B\u4F7F\u7528\u3067\u304D\u307E\u3059", + MaxMacroSub1: "MathJax \u306E\u30DE\u30AF\u30ED\u5C55\u958B\u56DE\u6570\u306E\u4E0A\u9650\u306B\u9054\u3057\u307E\u3057\u305F\u3002\u30DE\u30AF\u30ED\u3092\u518D\u5E30\u547C\u3073\u51FA\u3057\u3057\u3066\u3057\u307E\u3063\u3066\u3044\u307E\u305B\u3093\u304B?", + MaxMacroSub2: "MathJax \u306E\u5C55\u958B\u56DE\u6570\u306E\u4E0A\u9650\u306B\u9054\u3057\u307E\u3057\u305F\u3002LaTeX \u74B0\u5883\u3092\u518D\u5E30\u547C\u3073\u51FA\u3057\u3057\u3066\u3057\u307E\u3063\u3066\u3044\u307E\u305B\u3093\u304B?", + BracketMustBeDimension: "%1 \u306E\u4E2D\u62EC\u5F27\u5F15\u6570\u306F\u5BF8\u6CD5\u306B\u3057\u3066\u304F\u3060\u3055\u3044", + MissingDimOrUnits: "%1 \u3067\u3001\u5BF8\u6CD5\u307E\u305F\u306F\u305D\u306E\u5358\u4F4D\u304C\u3042\u308A\u307E\u305B\u3093", + MaxBufferSize: "MathJax \u306E\u5185\u90E8\u30D0\u30C3\u30D5\u30A1\u30FC \u30B5\u30A4\u30BA\u306E\u4E0A\u9650\u306B\u9054\u3057\u307E\u3057\u305F\u3002\u30DE\u30AF\u30ED\u3092\u518D\u5E30\u547C\u3073\u51FA\u3057\u3057\u3066\u3057\u307E\u3063\u3066\u3044\u307E\u305B\u3093\u304B?", + ErroneousNestingEq: "\u6570\u5F0F\u306E\u5165\u308C\u5B50\u69CB\u9020\u306B\u8AA4\u308A\u304C\u3042\u308A\u307E\u3059", + RunawayArgument: "%1 \u306E\u5F15\u6570\u304C\u4E0D\u8DB3\u3057\u3066\u3044\u308B\u3088\u3046\u3067\u3059" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ja/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/ja/ja.js b/modules/MathJax/unpacked/localization/ja/ja.js new file mode 100644 index 0000000..ad8635a --- /dev/null +++ b/modules/MathJax/unpacked/localization/ja/ja.js @@ -0,0 +1,61 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ja/ja.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ja",null,{ + menuTitle: "\u65E5\u672C\u8A9E", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax \u306F\u3001\u30E6\u30FC\u30B6\u30FC\u8A2D\u5B9A\u306E Cookie \u3067\u5B9F\u884C\u3059\u3079\u304D\u30B3\u30FC\u30C9\u3092\u691C\u51FA\u3057\u307E\u3057\u305F\u3002\u5B9F\u884C\u3057\u307E\u3059\u304B?\n\n(Cookie \u3092\u81EA\u5206\u3067\u8A2D\u5B9A\u3057\u3066\u3044\u306A\u3044\u5834\u5408\u306F\u30AD\u30E3\u30F3\u30BB\u30EB\u3057\u3066\u304F\u3060\u3055\u3044\u3002)", + MathProcessingError: "\u6570\u5F0F\u51E6\u7406\u30A8\u30E9\u30FC", + MathError: "\u6570\u5F0F\u30A8\u30E9\u30FC", + LoadFile: "%1 \u3092\u8AAD\u307F\u8FBC\u307F\u4E2D", + Loading: "\u8AAD\u307F\u8FBC\u307F\u4E2D", + LoadFailed: "\u30D5\u30A1\u30A4\u30EB\u3092\u8AAD\u307F\u8FBC\u3081\u307E\u305B\u3093\u3067\u3057\u305F: %1", + ProcessMath: "\u6570\u5F0F\u3092\u51E6\u7406\u4E2D: %1%%", + Processing: "\u51E6\u7406\u4E2D", + TypesetMath: "\u6570\u5F0F\u3092\u7D44\u7248\u4E2D: %1%%", + Typesetting: "\u7D44\u7248\u4E2D", + MathJaxNotSupported: "\u3054\u4F7F\u7528\u4E2D\u306E\u30D6\u30E9\u30A6\u30B6\u30FC\u306F MathJax \u306B\u5BFE\u5FDC\u3057\u3066\u3044\u307E\u305B\u3093" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + return 1; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ja/ja.js"); diff --git a/modules/MathJax/unpacked/localization/ko/FontWarnings.js b/modules/MathJax/unpacked/localization/ko/FontWarnings.js new file mode 100644 index 0000000..83967fe --- /dev/null +++ b/modules/MathJax/unpacked/localization/ko/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ko/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ko","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ko/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/ko/HTML-CSS.js b/modules/MathJax/unpacked/localization/ko/HTML-CSS.js new file mode 100644 index 0000000..b6b7cb5 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ko/HTML-CSS.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ko/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ko","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ko/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/ko/HelpDialog.js b/modules/MathJax/unpacked/localization/ko/HelpDialog.js new file mode 100644 index 0000000..4e94f14 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ko/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ko/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ko","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ko/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/ko/MathML.js b/modules/MathJax/unpacked/localization/ko/MathML.js new file mode 100644 index 0000000..c9c36a1 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ko/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ko/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ko","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ko/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/ko/MathMenu.js b/modules/MathJax/unpacked/localization/ko/MathMenu.js new file mode 100644 index 0000000..fbd3f28 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ko/MathMenu.js @@ -0,0 +1,100 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ko/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ko","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "\uC218\uC2DD \uBCF4\uAE30", + MathMLcode: "MathML \uCF54\uB4DC", + OriginalMathML: "\uC6D0\uB798 MathML", + TeXCommands: "TeX \uBA85\uB839", + AsciiMathInput: "AsciiMathML \uC785\uB825", + Original: "\uC6D0\uB798 \uC591\uC2DD", + ErrorMessage: "\uC624\uB958 \uBA54\uC2DC\uC9C0", + Annotation: "\uC8FC\uC11D", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "Content MathML", + OpenMath: "OpenMath", + texHints: "MathML\uC5D0 TeX \uD78C\uD2B8 \uBCF4\uC774\uAE30", + Settings: "\uC218\uC2DD \uC124\uC815", + ZoomTrigger: "\uD2B8\uB9AC\uAC70 \uD655\uB300", + Hover: "\uAC00\uB9AC\uD0A4\uAE30", + Click: "\uD074\uB9AD", + DoubleClick: "\uB354\uBE14 \uD074\uB9AD", + NoZoom: "\uD655\uB300 \uC5C6\uC74C", + TriggerRequires: "\uD544\uC694\uD55C \uD2B8\uB9AC\uAC70:", + Option: "\uC120\uD0DD \uC0AC\uD56D", + Alt: "Alt", + Command: "\uCEE4\uB9E8\uB4DC", + Control: "\uCEE8\uD2B8\uB864", + Shift: "\uC2DC\uD504\uD2B8", + ZoomFactor: "\uD655\uB300 \uBC30\uC728", + Renderer: "\uC218\uC2DD \uB80C\uB354\uB7EC", + MPHandles: "MathPlayer\uC5D0 \uCC98\uB9AC\uD560 \uC774\uBCA4\uD2B8:", + MenuEvents: "\uBA54\uB274 \uC774\uBCA4\uD2B8", + MouseEvents: "\uB9C8\uC6B0\uC2A4 \uC774\uBCA4\uD2B8", + MenuAndMouse: "\uB9C8\uC6B0\uC2A4\uC640 \uBA54\uB274 \uC774\uBCA4\uD2B8", + FontPrefs: "\uAE00\uAF34 \uD658\uACBD \uC124\uC815", + ForHTMLCSS: "HTML-CSS:", + Auto: "\uC790\uB3D9", + TeXLocal: "TeX (\uB85C\uCEEC)", + TeXWeb: "TeX (\uC6F9)", + TeXImage: "TeX (\uADF8\uB9BC)", + STIXLocal: "STIX (\uB85C\uCEEC)", + ContextMenu: "\uCEE8\uD14D\uC2A4\uD2B8 \uBA54\uB274", + Browser: "\uD0D0\uC0C9\uAE30", + Scale: "\uBAA8\uB4E0 \uC218\uC2DD \uBC30\uC728 ...", + Discoverable: "\uAC00\uB9AC\uD0A4\uBA74 \uAC15\uC870", + Locale: "\uC5B8\uC5B4", + LoadLocale: "URL\uC5D0\uC11C \uC5F4\uAE30 ...", + About: "MathJax \uC815\uBCF4", + Help: "MathJax \uB3C4\uC6C0\uB9D0", + localTeXfonts: "\uB85C\uCEEC TeX \uAE00\uAF34 \uC0AC\uC6A9", + webTeXfonts: "\uC6F9 TeX \uAE00\uAF34 \uC0AC\uC6A9", + imagefonts: "\uADF8\uB9BC \uAE00\uAF34 \uC0AC\uC6A9", + localSTIXfonts: "\uB85C\uCEEC STIX \uAE00\uAF34 \uC0AC\uC6A9", + webSVGfonts: "\uC6F9 SVG \uAE00\uAF34 \uC0AC\uC6A9", + genericfonts: "\uC77C\uBC18 \uC720\uB2C8\uCF54\uB4DC \uAE00\uAF34 \uC0AC\uC6A9", + wofforotffonts: "woff \uB610\uB294 otf \uAE00\uAF34", + eotffonts: "eot \uAE00\uAF34", + svgfonts: "svg \uAE00\uAF34", + WebkitNativeMMLWarning: "\uC0AC\uC6A9\uD558\uB294 \uBE0C\uB77C\uC6B0\uC800\uAC00 \uAE30\uBCF8\uC801\uC73C\uB85C MathML\uC744 \uC9C0\uC6D0\uD558\uC9C0 \uC54A\uB294 \uAC83 \uAC19\uAE30 \uB54C\uBB38\uC5D0 MathML \uCD9C\uB825\uC73C\uB85C \uC804\uD658\uD558\uBA74 \uBB38\uC11C\uC5D0 \uC788\uB294 \uC218\uC2DD\uC744 \uC77D\uC744 \uC218 \uC5C6\uAC8C \uB420 \uC218 \uC788\uC2B5\uB2C8\uB2E4.", + MSIENativeMMLWarning: "\uC778\uD130\uB137 \uC775\uC2A4\uD50C\uB85C\uB7EC\uB294 MathML \uCD9C\uB825\uC744 \uCC98\uB9AC\uD558\uAE30 \uC704\uD574 MathPlayer \uD50C\uB7EC\uADF8\uC778\uC774 \uD544\uC694\uD569\uB2C8\uB2E4.", + OperaNativeMMLWarning: "\uC624\uD398\uB77C\uC758 MathML \uC9C0\uC6D0\uC740 \uC81C\uD55C\uC801\uC774\uBBC0\uB85C MathML \uCD9C\uB825\uC73C\uB85C \uC804\uD658\uD558\uBA74 \uC77C\uBD80 \uD45C\uD604\uC774 \uBD88\uC644\uC804\uD558\uAC8C \uB80C\uB354\uB420 \uC218 \uC788\uC2B5\uB2C8\uB2E4.", + SafariNativeMMLWarning: "\uC0AC\uC6A9\uD558\uB294 \uBE0C\uB77C\uC6B0\uC800\uC758 \uAE30\uBCF8 MathML\uC740 MathJax\uC5D0\uC11C \uC0AC\uC6A9\uD558\uB294 \uBAA8\uB4E0 \uAE30\uB2A5\uC744 \uAD6C\uD604\uD558\uC9C0 \uC54A\uAE30 \uB54C\uBB38\uC5D0 \uC77C\uBD80 \uD45C\uD604\uC774 \uC81C\uB300\uB85C \uB80C\uB354\uB418\uC9C0 \uC54A\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4.", + FirefoxNativeMMLWarning: "\uC0AC\uC6A9\uD558\uB294 \uBE0C\uB77C\uC6B0\uC800\uC758 \uAE30\uBCF8 MathML\uC740 MathJax\uC5D0\uC11C \uC0AC\uC6A9\uD558\uB294 \uBAA8\uB4E0 \uAE30\uB2A5\uC744 \uAD6C\uD604\uD558\uC9C0 \uC54A\uAE30 \uB54C\uBB38\uC5D0 \uC77C\uBD80 \uD45C\uD604\uC774 \uC81C\uB300\uB85C \uB80C\uB354\uB418\uC9C0 \uC54A\uC744 \uC218 \uC788\uC2B5\uB2C8\uB2E4.", + LoadURL: "\uC774 URL\uC5D0\uC11C \uBC88\uC5ED \uB370\uC774\uD130 \uC5F4\uAE30:", + BadData: "%1\uC5D0\uC11C \uBC88\uC5ED \uB370\uC774\uD130\uB97C \uC5F4 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4", + NonZeroScale: "\uBC30\uC728\uC740 0\uC774 \uC544\uB2C8\uC5B4\uC57C \uD569\uB2C8\uB2E4", + PercentScale: "\uBC30\uC728\uC740 \uBC31\uBD84\uC728\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4 (\uC608, 120%%)", + IE9warning: "MathJax \uCEE8\uD14D\uC2A4\uD2B8 \uBA54\uB274\uAC00 \uBE44\uD65C\uC131\uD654\uB418\uC9C0\uB9CC, \uB300\uC2E0 MathJax \uBA54\uB274\uB97C \uC5BB\uC73C\uB824\uBA74 Alt-\uD074\uB9AD\uC744 \uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.", + NoOriginalForm: "\uC6D0\uB798 \uC591\uC2DD\uC744 \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4", + Close: "\uB2EB\uAE30", + EqSource: "MathJax \uC218\uC2DD \uC790\uB8CC" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ko/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/ko/TeX.js b/modules/MathJax/unpacked/localization/ko/TeX.js new file mode 100644 index 0000000..48f37ab --- /dev/null +++ b/modules/MathJax/unpacked/localization/ko/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ko/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ko","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ko/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/ko/ko.js b/modules/MathJax/unpacked/localization/ko/ko.js new file mode 100644 index 0000000..c664367 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ko/ko.js @@ -0,0 +1,61 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ko/ko.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ko",null,{ + menuTitle: "\uD55C\uAD6D\uC5B4", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax\uAC00 \uC2E4\uD589\uD560 \uCF54\uB4DC\uB97C \uD3EC\uD568\uD558\uB294 \uC0AC\uC6A9\uC790-\uC124\uC815 \uCFE0\uD0A4\uB97C \uCC3E\uC558\uC2B5\uB2C8\uB2E4. \uC2E4\uD589\uD558\uACA0\uC2B5\uB2C8\uAE4C?\n\n(\uCFE0\uD0A4\uB97C \uC2A4\uC2A4\uB85C \uC124\uC815\uD558\uC9C0 \uC54A\uC73C\uBA74 \uCDE8\uC18C\uB97C \uB20C\uB7EC\uC57C \uD569\uB2C8\uB2E4.)", + MathProcessingError: "\uC218\uC2DD \uCC98\uB9AC \uC624\uB958", + MathError: "\uC218\uC2DD \uC624\uB958", + LoadFile: "%1(\uC744)\uB97C \uBD88\uB7EC\uC624\uB294 \uC911", + Loading: "\uBD88\uB7EC\uC624\uB294 \uC911", + LoadFailed: "\uD30C\uC77C\uC744 \uBD88\uB7EC\uC62C \uC218 \uC5C6\uC2B5\uB2C8\uB2E4: %1", + ProcessMath: "\uC218\uC2DD \uCC98\uB9AC \uC911: %1%%", + Processing: "\uCC98\uB9AC \uC911", + TypesetMath: "\uC218\uC2DD \uC870\uD310 \uC911: %1%%", + Typesetting: "\uC870\uD310 \uC911", + MathJaxNotSupported: "\uC0AC\uC6A9\uD558\uB294 \uBE0C\uB77C\uC6B0\uC800\uB294 MathJax\uB97C \uC9C0\uC6D0\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + return 1; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ko/ko.js"); diff --git a/modules/MathJax/unpacked/localization/lb/FontWarnings.js b/modules/MathJax/unpacked/localization/lb/FontWarnings.js new file mode 100644 index 0000000..87956e5 --- /dev/null +++ b/modules/MathJax/unpacked/localization/lb/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/lb/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("lb","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/lb/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/lb/HTML-CSS.js b/modules/MathJax/unpacked/localization/lb/HTML-CSS.js new file mode 100644 index 0000000..5a5c4b6 --- /dev/null +++ b/modules/MathJax/unpacked/localization/lb/HTML-CSS.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/lb/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("lb","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/lb/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/lb/HelpDialog.js b/modules/MathJax/unpacked/localization/lb/HelpDialog.js new file mode 100644 index 0000000..fe4d81e --- /dev/null +++ b/modules/MathJax/unpacked/localization/lb/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/lb/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("lb","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/lb/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/lb/MathML.js b/modules/MathJax/unpacked/localization/lb/MathML.js new file mode 100644 index 0000000..40355ed --- /dev/null +++ b/modules/MathJax/unpacked/localization/lb/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/lb/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("lb","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/lb/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/lb/MathMenu.js b/modules/MathJax/unpacked/localization/lb/MathMenu.js new file mode 100644 index 0000000..edc5a12 --- /dev/null +++ b/modules/MathJax/unpacked/localization/lb/MathMenu.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/lb/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("lb","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/lb/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/lb/TeX.js b/modules/MathJax/unpacked/localization/lb/TeX.js new file mode 100644 index 0000000..f454103 --- /dev/null +++ b/modules/MathJax/unpacked/localization/lb/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/lb/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("lb","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/lb/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/lb/lb.js b/modules/MathJax/unpacked/localization/lb/lb.js new file mode 100644 index 0000000..82eef19 --- /dev/null +++ b/modules/MathJax/unpacked/localization/lb/lb.js @@ -0,0 +1,57 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/lb/lb.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("lb",null,{ + menuTitle: "L\u00EBtzebuergesch", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + LoadFile: "%1 lueden", + Loading: "Lueden", + LoadFailed: "De Fichier konnt net geluede ginn: %1", + MathJaxNotSupported: "\u00C4re browser \u00EBnnerst\u00EBtzt MathJax net", + MathError: "Math Feeler", + Processing: "Verschaffen" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) return 1; // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/lb/lb.js"); diff --git a/modules/MathJax/unpacked/localization/mk/FontWarnings.js b/modules/MathJax/unpacked/localization/mk/FontWarnings.js new file mode 100644 index 0000000..8bb0ed0 --- /dev/null +++ b/modules/MathJax/unpacked/localization/mk/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/mk/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("mk","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043C\u0440\u0435\u0436\u043D\u0438 \u0444\u043E\u043D\u0442\u043E\u0432\u0438 \u0437\u0430 \u0438\u0441\u043F\u0438\u0441 \u043D\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438\u0442\u0435 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0438 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0432\u0430. \u041D\u0430 \u0444\u043E\u043D\u0442\u043E\u0432\u0438\u0442\u0435 \u0438\u043C \u0442\u0440\u0435\u0431\u0430 \u0432\u0440\u0435\u043C\u0435 \u0434\u0430 \u0441\u0435 \u0432\u0447\u0438\u0442\u0430\u0430\u0442, \u043F\u0430 \u0442\u0430\u043A\u0430, \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0442\u0430 \u0431\u0438 \u0441\u0435 \u043F\u0440\u0438\u043A\u0430\u0436\u0430\u043B\u0430 \u043F\u043E\u0431\u0440\u0433\u0443 \u0434\u043E\u043A\u043E\u043B\u043A\u0443 \u0433\u0438 \u043F\u0440\u0435\u0437\u0435\u043C\u0435\u0442\u0435 \u043D\u0435\u043F\u043E\u0441\u0440\u0435\u0434\u043D\u043E \u0432\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u0441\u043A\u0430\u0442\u0430 \u043F\u0430\u043F\u043A\u0430 \u0437\u0430 \u0444\u043E\u043D\u0442\u043E\u0432\u0438 \u043D\u0430 \u0432\u0430\u0448\u0438\u043E\u0442 \u0441\u043C\u0435\u0442\u0430\u0447.", + imageFonts: "MathJax \u0433\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043D\u0435\u0433\u043E\u0432\u0438\u0442\u0435 \u0441\u043B\u0438\u043A\u043E\u0432\u043D\u0438 \u0444\u043E\u043D\u0442\u043E\u0432\u0438 \u043D\u0430\u043C\u0435\u0441\u0442\u043E \u043D\u0438\u0432\u043D\u0438\u0442\u0435 \u043B\u043E\u043A\u0430\u043B\u043D\u0438 \u0438\u043B\u0438 \u043C\u0440\u0435\u0436\u043D\u0438 \u043F\u0430\u043D\u0434\u0430\u043D\u0438. \u041E\u0432\u0438\u0435 \u0441\u0435 \u043F\u0440\u0438\u043A\u0430\u0436\u0443\u0432\u0430\u0430\u0442 \u043F\u043E\u0431\u0430\u0432\u043D\u043E \u0438 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438\u0442\u0435 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0438 \u043C\u043E\u0436\u0435 \u0434\u0430 \u043D\u0435 \u0441\u0435 \u043F\u043E\u0433\u043E\u0434\u043D\u0438 \u0437\u0430 \u043F\u0435\u0447\u0430\u0442\u0435\u045A\u0435 \u043F\u0440\u0438 \u043F\u043E\u043B\u043D\u0430 \u0440\u0435\u0437\u043E\u043B\u0443\u0446\u0438\u0458\u0430 \u043D\u0430 \u0432\u0430\u0448\u0438\u043E\u0442 \u043F\u0435\u0447\u0430\u0442\u0430\u0440.", + noFonts: "MathJax \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0433\u043E \u043D\u0430\u0458\u0434\u0435 \u0444\u043E\u043D\u0442\u043E\u0442 \u0437\u0430 \u043F\u0440\u0438\u043A\u0430\u0437 \u043D\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438\u0442\u0435 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0438, \u0430 \u043D\u0435 \u043C\u0443 \u0441\u0435 \u0434\u043E\u0441\u0442\u0430\u043F\u043D\u0438 \u043D\u0438 \u0441\u043B\u0438\u043A\u043E\u0432\u043D\u0438 \u0444\u043E\u043D\u0442\u043E\u0432\u0438, \u0448\u0442\u043E \u0437\u043D\u0430\u0447\u0438 \u0434\u0435\u043A\u0430 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0441\u0435 \u043F\u043E\u0442\u043F\u0440\u0435 \u043D\u0430 \u043E\u043F\u0448\u0442\u043E\u043D\u0430\u043C\u0435\u043D\u0441\u043A\u0438\u0442\u0435 \u0443\u043D\u0438\u043A\u043E\u0434\u043D\u0438 \u0437\u043D\u0430\u0446\u0438, \u0441\u043E \u043D\u0430\u0434\u0435\u0436 \u0434\u0435\u043A\u0430 \u0432\u0430\u0448\u0438\u043E\u0442 \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u045C\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0433\u0438 \u043F\u0440\u0438\u043A\u0430\u0436\u0435. \u041D\u0435\u043A\u043E\u0438 \u0437\u043D\u0430\u0446\u0438 \u043C\u043E\u0436\u0435 \u0434\u0430 \u043D\u0435 \u0441\u0435 \u043F\u0440\u0438\u043A\u0430\u0436\u0430\u0442 \u043A\u0430\u043A\u043E \u0448\u0442\u043E \u0442\u0440\u0435\u0431\u0430 \u0438\u043B\u0438 \u043F\u0430\u043A \u0432\u043E\u043E\u043F\u0448\u0442\u043E \u043D\u0435\u043C\u0430 \u0434\u0430 \u0441\u0435 \u043F\u043E\u0458\u0430\u0432\u0430\u0442.", + webFonts: "\u041D\u0430\u0458\u0432\u0435\u045C\u0435\u0442\u043E \u0441\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0438 \u043E\u0432\u043E\u0437\u043E\u043C\u043E\u0436\u0443\u0432\u0430\u0430\u0442 \u043F\u0440\u0435\u0437\u0435\u043C\u0430\u045A\u0435 \u043D\u0430 \u0444\u043E\u043D\u0442\u043E\u0432\u0438 \u043E\u0434 \u0438\u043D\u0442\u0435\u0440\u043D\u0435\u0442. \u041A\u0432\u0430\u043B\u0438\u0442\u0435\u0442\u043E\u0442 \u043D\u0430 \u0438\u0441\u043F\u0438\u0441\u043E\u0442 \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0432\u0430 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043F\u043E\u0434\u043E\u0431\u0440\u0438 \u0430\u043A\u043E \u043F\u0440\u0435\u0437\u0435\u043C\u0435\u0442\u0435 \u043F\u043E\u043D\u043E\u0432\u0430 \u0432\u0435\u0440\u0437\u0438\u0458\u0430 \u043D\u0430 \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u043E\u0442 (\u0438\u043B\u0438 \u043F\u0430\u043A \u0433\u043E \u0437\u0430\u043C\u0435\u043D\u0438\u0442\u0435 \u0441\u043E \u0434\u0440\u0443\u0433).", + fonts: "MathJax \u043C\u043E\u0436\u0435 \u0434\u0430 \u0433\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 [\u0444\u043E\u043D\u0442\u043E\u0432\u0438\u0442\u0435 \u043D\u0430 STIX](%1) \u0438\u043B\u0438 [\u043E\u043D\u0438\u0435 \u043D\u0430 MathJax TeX](%2). \u041F\u0440\u0435\u0437\u0435\u043C\u0435\u0442\u0435 \u0433\u0438 \u0438 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458\u0442\u0435 \u0433\u0438 \u0437\u0430 \u0434\u0430 \u0433\u043E \u043F\u043E\u0434\u043E\u0431\u0440\u0438\u0442\u0435 \u0438\u0441\u043F\u0438\u0441\u043E\u0442 \u043D\u0430 MathJax \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438\u0442\u0435.", + STIXPage: "\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0432\u0430 \u0435 \u043F\u0440\u0435\u0434\u0432\u0438\u0434\u0435\u043D\u0430 \u0434\u0430 \u0433\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 [\u0444\u043E\u043D\u0442\u043E\u0432\u0438\u0442\u0435 \u043D\u0430 STIX](%1). \u041F\u0440\u0435\u0437\u0435\u043C\u0435\u0442\u0435 \u0433\u0438 \u0438 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458\u0442\u0435 \u0433\u0438 \u0437\u0430 \u0434\u0430 \u0433\u043E \u043F\u043E\u0434\u043E\u0431\u0440\u0438\u0442\u0435 \u0438\u0441\u043F\u0438\u0441\u043E\u0442 \u043D\u0430 MathJax \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438\u0442\u0435.", + TeXPage: "\u0421\u0442\u0440\u0430\u043D\u0438\u0446\u0430\u0432\u0430 \u0435 \u043F\u0440\u0435\u0434\u0432\u0438\u0434\u0435\u043D\u0430 \u0434\u0430 \u0433\u0438 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 [\u0444\u043E\u043D\u0442\u043E\u0432\u0438\u0442\u0435 \u043D\u0430 MathJax TeX](%1). \u041F\u0440\u0435\u0437\u0435\u043C\u0435\u0442\u0435 \u0433\u0438 \u0438 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0458\u0442\u0435 \u0433\u0438 \u0437\u0430 \u0434\u0430 \u0433\u043E \u043F\u043E\u0434\u043E\u0431\u0440\u0438\u0442\u0435 \u0438\u0441\u043F\u0438\u0441\u043E\u0442 \u043D\u0430 MathJax \u043D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438\u0442\u0435." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/mk/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/mk/HTML-CSS.js b/modules/MathJax/unpacked/localization/mk/HTML-CSS.js new file mode 100644 index 0000000..0fbdbed --- /dev/null +++ b/modules/MathJax/unpacked/localization/mk/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/mk/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("mk","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "\u0413\u043E \u0432\u0447\u0438\u0442\u0443\u0432\u0430\u043C \u043C\u0440\u0435\u0436\u043D\u0438\u043E\u0442 \u0444\u043E\u043D\u0442 %1", + CantLoadWebFont: "\u041D\u0435 \u043C\u043E\u0436\u0430\u043C \u0434\u0430 \u0433\u043E \u0432\u0447\u0438\u0442\u0430\u043C \u043C\u0440\u0435\u0436\u043D\u0438\u043E\u0442 \u0444\u043E\u043D\u0442 %1", + FirefoxCantLoadWebFont: "Firefox \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0432\u0447\u0438\u0442\u0430 \u043C\u0440\u0435\u0436\u043D\u0438 \u0444\u043E\u043D\u0442\u043E\u0432\u0438 \u043E\u0434 \u0434\u0430\u043B\u0435\u0447\u0438\u043D\u0441\u043A\u0438 \u0434\u043E\u043C\u0430\u045C\u0438\u043D", + CantFindFontUsing: "\u041D\u0435 \u043C\u043E\u0436\u0430\u043C \u0434\u0430 \u043D\u0430\u0458\u0434\u0430\u043C \u043F\u0440\u0438\u043A\u043B\u0430\u0434\u0435\u043D \u0444\u043E\u043D\u0442 \u0448\u0442\u043E \u043A\u043E\u0440\u0438\u0441\u0442\u0438 %1", + WebFontsNotAvailable: "\u041C\u0440\u0435\u0436\u043D\u0438\u0442\u0435 \u0444\u043E\u043D\u0442\u043E\u0432\u0438 \u0441\u0435 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u043F\u043D\u0438. \u040C\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043C \u0441\u043B\u0438\u043A\u043E\u0432\u043D\u0438." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/mk/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/mk/HelpDialog.js b/modules/MathJax/unpacked/localization/mk/HelpDialog.js new file mode 100644 index 0000000..552502c --- /dev/null +++ b/modules/MathJax/unpacked/localization/mk/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/mk/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("mk","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "\u041F\u043E\u043C\u043E\u0448 \u0441\u043E MathJax", + MathJax: "*MathJax* \u0435 JavaScript-\u0431\u0438\u0431\u043B\u0438\u043E\u0442\u043A\u0430 \u0448\u0442\u043E \u0438\u043C \u043E\u0432\u043E\u0437\u043C\u043E\u0436\u0443\u0432\u0430 \u043D\u0430 \u0430\u0432\u0442\u043E\u0440\u0438\u0442\u0435 \u0434\u0430 \u0441\u0442\u0430\u0432\u0430\u0430\u0442 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0438 \u043D\u0430 \u043D\u0438\u0432\u043D\u0438\u0442\u0435 \u043C\u0440\u0435\u0436\u043D\u0438 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0438. \u041A\u0430\u043A\u043E \u0447\u0438\u0442\u0430\u0442\u0435\u043B \u043D\u0435 \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u043F\u0440\u0430\u0432\u0438\u0442\u0435 \u043D\u0438\u0448\u0442\u043E, \u0431\u0438\u0434\u0435\u0458\u045C\u0438 \u0442\u0438\u0435 \u0441\u0430\u043C\u0438\u0442\u0435 \u045C\u0435 \u0441\u0435 \u043F\u0440\u0438\u043A\u0430\u0436\u0443\u0432\u0430\u0430\u0442.", + Browsers: "*\u041F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0438*: MathJax \u0440\u0430\u0431\u043E\u0442\u0438 \u043D\u0430 \u0441\u0438\u0442\u0435 \u0441\u043E\u0432\u0440\u0435\u043C\u0435\u043D\u0438 \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0438 \u043A\u0430\u043A\u043E IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ \u0438 \u043D\u0430\u0458\u0432\u0435\u045C\u0435\u0442\u043E \u043C\u043E\u0431\u0438\u043B\u043D\u0438 \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0438.", + Menu: "*\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u043E \u043C\u0435\u043D\u0438*: MathJax \u0441\u0442\u0430\u0432\u0430 \u043A\u043E\u043D\u0442\u0435\u043A\u0441\u0442\u043D\u043E \u043C\u0435\u043D\u0438 \u0432\u043E \u0440\u0430\u0432\u0435\u043D\u043A\u0438\u0442\u0435. \u0414\u043E \u043D\u0435\u0433\u043E \u0441\u0435 \u0434\u043E\u0430\u0453\u0430 \u0441\u043E \u0434\u0435\u0441\u0435\u043D \u0441\u0442\u0438\u0441\u043E\u043A \u0441\u043E \u0433\u043B\u0443\u0448\u0435\u0446\u043E\u0442 (\u0438\u043B\u0438 Ctrl-\u0441\u0442\u0438\u0441\u043E\u043A) \u043D\u0430 \u0431\u0438\u043B\u043E \u043A\u043E\u0458\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0430 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0430.", + ShowMath: "*\u041F\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u0458\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0430\u0442\u0430 \u043A\u0430\u043A\u043E* \u0432\u0438 \u043E\u0432\u043E\u0437\u043C\u043E\u0436\u0443\u0432\u0430 \u0434\u0430 \u0433\u043E \u043F\u043E\u0433\u043B\u0435\u0434\u0430\u0442\u0435 \u0438\u0437\u0432\u043E\u0440\u043D\u0438\u043E\u0442 \u043A\u043E\u0434 \u043D\u0430 \u0444\u043E\u0440\u043C\u0443\u043B\u0430\u0442\u0430 \u0438 \u0434\u0430 \u0433\u043E \u043F\u0440\u0435\u043A\u043E\u043F\u0438\u0440\u0430\u0442\u0435 (\u043A\u0430\u043A\u043E MathML \u0438\u043B\u0438 \u0432\u043E \u0438\u0437\u0432\u043E\u0440\u0435\u043D \u0444\u043E\u0440\u043C\u0430\u0442).", + Settings: "*\u041F\u043E\u0441\u0442\u0430\u0432\u043A\u0438* \u0432\u0438 \u0434\u0430\u0432\u0430\u0430\u0442 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0430 \u0432\u0440\u0437 \u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0438\u0442\u0435 \u043D\u0430 MathJax \u043A\u0430\u043A\u043E \u0433\u043E\u043B\u0435\u043C\u0438\u043D\u0430\u0442\u0430 \u043D\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438\u043E\u0442 \u0438\u0441\u043F\u0438\u0441 \u0438 \u043C\u0435\u0445\u0430\u043D\u0438\u0437\u043C\u043E\u0442 \u0437\u0430 \u043F\u0440\u0438\u043A\u0430\u0437 (\u0438\u0441\u043F\u0438\u0441) \u043D\u0430 \u0440\u0430\u0432\u0435\u043D\u043A\u0438\u0442\u0435.", + Language: "*\u0408\u0430\u0437\u0438\u043A* \u0432\u0438 \u0434\u0430\u0432\u0430 \u0434\u0430 \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0458\u0430\u0437\u0438\u043A \u043D\u0430 \u043C\u0435\u043D\u0438\u0442\u043E \u0438 \u043F\u0440\u0435\u0434\u0443\u043F\u0440\u0435\u0434\u0443\u0432\u0430\u0447\u043A\u0438\u0442\u0435 \u043F\u043E\u0440\u0430\u043A\u0438 \u043D\u0430 MathJax.", + Zoom: "*\u0417\u0433\u043E\u043B\u0435\u043C\u0443\u0432\u0430\u045A\u0435 \u043D\u0430 \u0438\u0441\u043F\u0438\u0441\u043E\u0442*: \u0410\u043A\u043E \u0438\u0441\u043F\u0438\u0441\u043E\u0442 \u0432\u0438 \u0435 \u0441\u0438\u0442\u0435\u043D \u0437\u0430 \u0447\u0438\u0442\u0430\u045A\u0435, MathJax \u043C\u043E\u0436\u0435 \u0434\u0430 \u0433\u043E \u0437\u0433\u043E\u043B\u0435\u043C\u0438 \u0437\u0430 \u0434\u0430 \u0432\u0438 \u0431\u0438\u0434\u0435 \u043F\u043E\u0447\u0438\u0442\u043B\u0438\u0432.", + Accessibilty: "*\u041F\u043E\u0442\u0435\u0448\u043A\u043E\u0442\u0438\u0438 \u0441\u043E \u0432\u0438\u0434\u043E\u0442*: MathJax \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438 \u0440\u0430\u0431\u043E\u0442\u0438 \u0441\u043E \u0435\u043A\u0440\u0430\u043D\u0441\u043A\u0438\u0442\u0435 \u0447\u0438\u0442\u0430\u0447\u0438 \u0437\u0430 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0438\u0442\u0435 \u0434\u0430 \u0431\u0438\u0434\u0430\u0442 \u0458\u0430\u0441\u043D\u0438 \u0437\u0430 \u043B\u0438\u0446\u0430\u0442\u0430 \u0441\u043E \u0445\u0435\u043D\u0434\u0438\u043A\u0435\u043F\u0438\u0440\u0430\u043D \u0432\u0438\u0434.", + Fonts: "*\u0424\u043E\u043D\u0442\u043E\u0432\u0438*: MathJax \u045C\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u0438\u0437\u0432\u0435\u0441\u043D\u0438 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438 \u0444\u043E\u043D\u0442\u043E\u0432\u0438, \u0434\u043E\u043A\u043E\u043B\u043A\u0443 \u0441\u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0438 \u0432\u043E \u0432\u0430\u0448\u0438\u043E\u0442 \u0441\u043C\u0435\u0442\u0430\u0447. \u0412\u043E \u0441\u043F\u0440\u043E\u0442\u0438\u0432\u043D\u043E \u045C\u0435 \u0441\u0435 \u043A\u043E\u0440\u0438\u0441\u0442\u0430\u0442 \u043C\u0440\u0435\u0436\u043D\u0438 \u0444\u043E\u043D\u0442\u043E\u0432\u0438 \u0437\u0430 \u0442\u0430\u0430 \u043D\u0430\u043C\u0435\u043D\u0430. \u0418\u0430\u043A\u043E \u043D\u0435 \u0441\u0435 \u0437\u0430\u0434\u043E\u043B\u0436\u0438\u0442\u0435\u043B\u043D\u0438, \u043B\u043E\u043A\u0430\u043B\u043D\u043E \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D\u0438\u0442\u0435 \u0444\u043E\u043D\u0442\u043E\u0432\u0438 \u0433\u043E \u0443\u0431\u0440\u0437\u0443\u0432\u0430\u0430\u0442 \u0438\u0441\u043F\u0438\u0441\u043E\u0442. \u0412\u0438 \u043F\u0440\u0435\u0434\u043B\u0430\u0433\u0430\u043C\u0435 \u0434\u0430 \u0433\u0438 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 [\u0444\u043E\u043D\u0442\u043E\u0432\u0438\u0442\u0435 \u043D\u0430 STIX](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/mk/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/mk/MathML.js b/modules/MathJax/unpacked/localization/mk/MathML.js new file mode 100644 index 0000000..8bbe4a4 --- /dev/null +++ b/modules/MathJax/unpacked/localization/mk/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/mk/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("mk","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "\u0413\u0440\u0435\u0448\u0435\u043D mglyph: %1", + BadMglyphFont: "\u0413\u0440\u0435\u0448\u0435\u043D \u0444\u043E\u043D\u0442: %1", + MathPlayer: "MathJax \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0433\u043E \u043F\u043E\u0441\u0442\u0430\u0432\u0438 MathPlayer.\n\n\u0414\u043E\u043A\u043E\u043B\u043A\u0443 \u043D\u0435 \u0432\u0438 \u0435 \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u043D MathPlayer, \u045C\u0435 \u0442\u0440\u0435\u0431\u0430 \u043F\u0440\u0432\u043E \u0434\u0430 \u0433\u043E \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435.\n\u0412\u043E \u0441\u043F\u0440\u043E\u0442\u0438\u0432\u043D\u043E, \u043E\u0432\u0430 \u0437\u043D\u0430\u0447\u0438 \u0434\u0435\u043A\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u043D\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0438 \u0458\u0430 \u0441\u043F\u0440\u0435\u0447\u0443\u0432\u0430\u0430\u0442 \u0440\u0430\u0431\u043E\u0442\u0430\u0442\u0430 \u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0438\u0442\u0435 \u0432\u043E ActiveX. \u041F\u043E\u0458\u0434\u0435\u0442\u0435 \u0432\u043E \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u043D\u0438\u0442\u0435 \u043D\u0430\u0433\u043E\u0434\u0443\u0432\u0430\u045A\u0430 \u043D\u0430 \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u043E\u0442 \u0438 \u0441\u0442\u0438\u0441\u043D\u0435\u0442\u0435 \u043D\u0430 \u043F\u0440\u0438\u043B\u0430\u0433\u043E\u0434\u043B\u0438\u0432\u043E (Custom Level). \u0422\u0430\u043C\u0443 \u043F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u0434\u0430\u043B\u0438 \u0432\u0438 \u0441\u0435 \u0432\u043A\u043B\u0443\u0447\u0435\u043D\u0438 \u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0438\u0442\u0435 \u0437\u0430 \u0440\u0430\u0431\u043E\u0442\u0430 \u0441\u043E ActiveX-\u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0438 \u0438 \u0411\u0438\u043D\u0430\u0440\u043D\u0438 \u0438 \u0441\u043A\u0440\u0438\u043F\u0442\u043D\u0438 \u043F\u043E\u0432\u0435\u0434\u0435\u043D\u0438\u0458\u0430.\n\n\u0417\u0430\u0441\u0435\u0433\u0430 \u045C\u0435 \u0433\u043B\u0435\u0434\u0430\u0442\u0435 \u0438\u0437\u0432\u0435\u0441\u0442\u0443\u0432\u0430\u045A\u0430 \u0437\u0430 \u0433\u0440\u0435\u0448\u043A\u0438 \u043D\u0430\u043C\u0435\u0441\u0442\u043E \u0438\u0441\u043F\u0438\u0448\u0430\u043D\u0438 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0438.", + CantCreateXMLParser: "MathJax \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u043E\u0437\u0434\u0430\u0434\u0435 XML-\u043F\u0430\u0440\u0441\u0435\u0440 \u0437\u0430 MathML. \u041F\u0440\u043E\u0432\u0435\u0440\u0435\u0442\u0435 \u0434\u0430\u043B\u0438 \u0435 \u0432\u043A\u043B\u0443\u0447\u0435\u043D\u0430 \u0441\u0438\u0433\u0443\u0440\u043D\u043E\u0441\u043D\u0430\u0442\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0430 ActiveX-\u043A\u043E\u043D\u0442\u0440\u043E\u043B\u0438 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u0438 \u0437\u0430 \u0441\u043A\u0440\u0438\u043F\u0442\u0438\u0440\u0430\u045A\u0435 (\u0432\u043E \u043F\u0440\u0438\u043B\u0430\u0433\u043E\u0434\u043B\u0438\u0432\u0438\u043E\u0442 \u0434\u0435\u043B (Custom Level) \u043D\u0430 \u0431\u0435\u0437\u0431\u0435\u0434\u043D\u043E\u0441\u0442\u0438\u0442\u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0438 \u0432\u043E \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u043E\u0442).\n\nMathJax \u043D\u0435\u043C\u0430 \u0434\u0430 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0433\u0438 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u0438 \u0440\u0430\u0432\u0435\u043D\u043A\u0438\u0442\u0435 \u043D\u0430 MathML.", + UnknownNodeType: "\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442 \u0442\u0438\u043F \u043D\u0430 \u0458\u0430\u0437\u043E\u043B: %1", + UnexpectedTextNode: "\u041D\u0435\u043E\u0447\u0435\u043A\u0443\u0432\u0430\u043D \u0458\u0430\u0437\u043E\u043B \u0432\u043E \u0442\u0435\u043A\u0441\u0442\u043E\u0442: %1", + ErrorParsingMathML: "\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u043F\u0430\u0440\u0441\u0438\u0440\u0430\u045A\u0435\u0442\u043E \u043D\u0430 MathML", + ParsingError: "\u0413\u0440\u0435\u0448\u043A\u0430 \u043F\u0440\u0438 \u043F\u0430\u0440\u0441\u0438\u0440\u0430\u045A\u0435\u0442\u043E \u043D\u0430 MathML: %1", + MathMLSingleElement: "MathML \u043C\u043E\u0440\u0430 \u0434\u0430 \u0441\u0435 \u043E\u0431\u0440\u0430\u0437\u0443\u0432\u0430 \u043E\u0434 \u0435\u0434\u0435\u043D \u0435\u043B\u0435\u043C\u0435\u043D\u0442", + MathMLRootElement: "MathML \u043C\u043E\u0440\u0430 \u0434\u0430 \u0441\u0435 \u043E\u0431\u0440\u0430\u0437\u0443\u0432\u0430 \u0441\u043E \u0435\u043B\u0435\u043C\u0435\u043D\u0442 \u003Cmath\u003E, \u0430 \u043D\u0435 %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/mk/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/mk/MathMenu.js b/modules/MathJax/unpacked/localization/mk/MathMenu.js new file mode 100644 index 0000000..2caf07a --- /dev/null +++ b/modules/MathJax/unpacked/localization/mk/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/mk/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("mk","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "\u041F\u0440\u0438\u043A\u0430\u0436\u0438 \u0458\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0430\u0442\u0430 \u043A\u0430\u043A\u043E", + MathMLcode: "MathML-\u043A\u043E\u0434", + OriginalMathML: "\u0418\u0437\u0432\u043E\u0440\u0435\u043D MathML", + TeXCommands: "TeX-\u043D\u0430\u0440\u0435\u0434\u0431\u0438", + AsciiMathInput: "AsciiMathML-\u0432\u043D\u043E\u0441", + Original: "\u0418\u0437\u0432\u043E\u0440\u0435\u043D \u043E\u0431\u043B\u0438\u043A", + ErrorMessage: "\u0418\u0437\u0432\u0435\u0441\u0442\u0443\u0432\u0430\u045A\u0435 \u0437\u0430 \u0433\u0440\u0435\u0448\u043A\u0430", + Annotation: "\u041F\u0440\u0438\u0431\u0435\u043B\u0435\u0448\u043A\u0438", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "\u0421\u043E\u0434\u0440\u0436\u0438\u043D\u0441\u043A\u0438 MathML", + OpenMath: "OpenMath", + texHints: "\u041F\u0440\u0438\u043A\u0430\u0436\u0443\u0432\u0430\u0458 \u043F\u043E\u043C\u043E\u0448\u043D\u0438 \u043F\u0440\u0435\u0434\u043B\u043E\u0437\u0438 \u043E\u0434 TeX \u0432\u043E MathML", + Settings: "\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0438", + ZoomTrigger: "\u0417\u0433\u043E\u043B\u0435\u043C\u0443\u0432\u0430\u045A\u0435", + Hover: "\u0421\u0442\u0440\u0435\u043B\u043A\u0430 \u0432\u0440\u0437 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0430\u0442\u0430", + Click: "\u0421\u0442\u0438\u0441\u043E\u043A", + DoubleClick: "\u0414\u0432\u043E\u0435\u043D \u0441\u0442\u0438\u0441\u043E\u043A", + NoZoom: "\u0411\u0435\u0437 \u0437\u0433\u043E\u043B\u0435\u043C\u0443\u0432\u0430\u045A\u0435", + TriggerRequires: "\u0417\u0430 \u0434\u0430 \u0433\u043E \u0437\u0433\u043E\u043B\u0435\u043C\u0438\u0442\u0435 \u0438\u0441\u043F\u0438\u0441\u043E\u0442:", + Option: "\u041C\u043E\u0436\u043D\u043E\u0441\u0442", + Alt: "Alt", + Command: "\u2318", + Control: "Ctrl", + Shift: "Shift", + ZoomFactor: "\u0424\u0430\u043A\u0442\u043E\u0440 \u043D\u0430 \u0437\u0433\u043E\u043B\u0435\u043C\u0443\u0432\u0430\u045A\u0435", + Renderer: "\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438 \u0438\u0441\u043F\u0438\u0448\u0443\u0432\u0430\u0447", + MPHandles: "\u041D\u0435\u043A\u0430 MathPlayer \u0440\u0430\u0431\u043E\u0442\u0438 \u0441\u043E:", + MenuEvents: "\u041F\u043E\u0441\u0442\u0430\u043F\u043A\u0438 \u0441\u043E \u043C\u0435\u043D\u0438\u0442\u043E", + MouseEvents: "\u041F\u043E\u0441\u0442\u0430\u043F\u043A\u0438 \u0441\u043E \u0433\u043B\u0443\u0448\u0435\u0446\u043E\u0442", + MenuAndMouse: "\u041F\u043E\u0441\u0442\u0430\u043F\u043A\u0438 \u0441\u043E \u043C\u0435\u043D\u0438\u0442\u043E \u0438 \u0433\u043B\u0443\u0448\u0435\u0446\u043E\u0442", + FontPrefs: "\u041D\u0430\u0433\u043E\u0434\u0443\u0432\u0430\u045A\u0430 \u043D\u0430 \u0444\u043E\u043D\u0442\u043E\u0442", + ForHTMLCSS: "\u0417\u0430 HTML-CSS:", + Auto: "\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0441\u043A\u0438", + TeXLocal: "TeX (\u043B\u043E\u043A\u0430\u043B\u043D\u043E)", + TeXWeb: "TeX (\u043C\u0440\u0435\u0436\u043D\u043E)", + TeXImage: "TeX (\u0441\u043B\u0438\u043A\u0430)", + STIXLocal: "STIX (\u043B\u043E\u043A\u0430\u043B\u043D\u043E)", + ContextMenu: "\u041A\u043E\u043D\u0442\u0435\u043A\u0441\u0442\u043D\u043E \u043C\u0435\u043D\u0438", + Browser: "\u041F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447", + Scale: "\u041F\u0440\u0438\u043A\u0430\u0436\u0443\u0432\u0430 \u0458\u0430 \u0441\u0435\u0442\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0430 \u0432\u043E \u0440\u0430\u0437\u043C\u0435\u0440...", + Discoverable: "\u0418\u0441\u0442\u0430\u043A\u043D\u0443\u0432\u0430\u0458 (\u043F\u043E\u0442\u0446\u0440\u0442\u0443\u0432\u0430\u0458) \u043F\u0440\u0438 \u043E\u0434\u0435\u045A\u0435 \u0441\u043E \u0441\u0442\u0440\u0435\u043B\u043A\u0430\u0442\u0430 \u0432\u0440\u0437 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0430\u0442\u0430", + Locale: "\u0408\u0430\u0437\u0438\u043A", + LoadLocale: "\u0412\u0447\u0438\u0442\u0430\u0458 \u043E\u0434 URL ...", + About: "\u0417\u0430 MathJax", + Help: "\u041F\u043E\u043C\u043E\u0448 \u0441\u043E MathJax", + localTeXfonts: "\u043A\u043E\u0440\u0438\u0441\u0442\u0438 TeX-\u0444\u043E\u043D\u0442\u043E\u0432\u0438", + webTeXfonts: "\u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043C\u0440\u0435\u0436\u043D\u0438 TeX-\u0444\u043E\u043D\u0442\u043E\u0432\u0438", + imagefonts: "\u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u0441\u043B\u0438\u043A\u043E\u0432\u043D\u0438 \u0444\u043E\u043D\u0442\u043E\u0432\u0438", + localSTIXfonts: "\u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043B\u043E\u043A\u0430\u043B\u043D\u0438 STIX-\u0444\u043E\u043D\u0442\u043E\u0432\u0438", + webSVGfonts: "\u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043C\u0440\u0435\u0436\u043D\u0438 SVG-\u0444\u043E\u043D\u0442\u043E\u0432\u0438", + genericfonts: "\u043A\u043E\u0440\u0438\u0441\u0442\u0438 \u043E\u043F\u0448\u0442\u043E\u043D\u0430\u043C\u0435\u043D\u0441\u043A\u0438 \u0443\u043D\u0438\u043A\u043E\u0434\u043D\u0438 \u0444\u043E\u043D\u0442\u043E\u0432\u0438", + wofforotffonts: "WOFF- \u0438\u043B\u0438 OTF-\u0444\u043E\u043D\u0442\u043E\u0432\u0438", + eotffonts: "EOT-\u0444\u043E\u043D\u0442\u043E\u0432\u0438", + svgfonts: "SVG-\u0444\u043E\u043D\u0442\u043E\u0432\u0438", + WebkitNativeMMLWarning: "\u0412\u0430\u0448\u0438\u043E\u0442 \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u043D\u0435\u043C\u0430 \u0432\u0433\u0440\u0430\u0434\u0435\u043D\u0430 \u043F\u043E\u0434\u0434\u0440\u0448\u043A\u0430 \u0437\u0430 MathML, \u043F\u0430 \u0437\u0430\u0442\u043E\u0430 \u0430\u043A\u043E \u0441\u0435 \u043F\u0440\u0435\u0444\u0440\u043B\u0438\u0442\u0435 \u043D\u0430 \u043D\u0435\u0433\u043E, \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438\u0442\u0435 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0438 \u043C\u043E\u0436\u0430\u0442 \u0434\u0430 \u0441\u0442\u0430\u043D\u0430\u0442 \u043D\u0435\u0447\u0438\u0442\u043B\u0438\u0432\u0438.", + MSIENativeMMLWarning: "Internet Explorer \u0433\u043E \u0431\u0430\u0440\u0430 \u0434\u043E\u0434\u0430\u0442\u043E\u043A\u043E\u0442 MathPlayer \u0437\u0430 \u0434\u0430 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0440\u0430\u0431\u043E\u0442\u0438 \u0441\u043E MathML.", + OperaNativeMMLWarning: "Opera \u0438\u043C\u0430 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0430 \u043F\u043E\u0434\u0434\u0440\u0448\u043A\u0430 \u0437\u0430 MathML, \u0448\u0442\u043E \u0437\u043D\u0430\u0447\u0438 \u0434\u0435\u043A\u0430 \u0438\u0441\u043F\u0438\u0441\u043E\u0442 \u043D\u0430 \u043D\u0435\u043A\u043E\u0438 \u0438\u0437\u0440\u0435\u0437\u0438 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u0438\u0434\u0435 \u043B\u043E\u0448.", + SafariNativeMMLWarning: "\u0412\u0433\u0440\u0430\u0434\u0435\u043D\u0430\u0442\u0430 \u043F\u043E\u0434\u0434\u0440\u0448\u043A\u0430 \u0437\u0430 MathML \u0432\u043E \u0432\u0430\u0448\u0438\u043E\u0442 \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u043D\u0435 \u0433\u0438 \u0438\u043C\u0430 \u0441\u0438\u0442\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u0438 \u043D\u0430 MathJax, \u043F\u0430 \u0437\u0430\u0442\u043E\u0430 \u0438\u0441\u043F\u0438\u0441\u043E\u0442 \u043D\u0430 \u043D\u0435\u043A\u043E\u0438 \u0438\u0437\u0440\u0435\u0437\u0438 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u0438\u0434\u0435 \u043B\u043E\u0448.", + FirefoxNativeMMLWarning: "\u0412\u0433\u0440\u0430\u0434\u0435\u043D\u0430\u0442\u0430 \u043F\u043E\u0434\u0434\u0440\u0448\u043A\u0430 \u0437\u0430 MathML \u0432\u043E \u0432\u0430\u0448\u0438\u043E\u0442 \u043F\u0440\u0435\u043B\u0438\u0441\u0442\u0443\u0432\u0430\u0447 \u043D\u0435 \u0433\u0438 \u0438\u043C\u0430 \u0441\u0438\u0442\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u0438 \u043D\u0430 MathJax, \u043F\u0430 \u0437\u0430\u0442\u043E\u0430 \u0438\u0441\u043F\u0438\u0441\u043E\u0442 \u043D\u0430 \u043D\u0435\u043A\u043E\u0438 \u0438\u0437\u0440\u0435\u0437\u0438 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u0438\u0434\u0435 \u043B\u043E\u0448.", + MSIESVGWarning: "Internet Explorer \u043D\u0435\u043C\u0430 \u043F\u043E\u0434\u0434\u0440\u0448\u043A\u0430 \u0437\u0430 SVG \u0432\u043E \u0432\u0435\u0440\u0437\u0438\u0438\u0442\u0435 \u043F\u0440\u0435\u0434 IE9 \u0438\u043B\u0438 \u043A\u043E\u0433\u0430 \u0435\u043C\u0443\u043B\u0438\u0440\u0430 IE8 \u0438\u043B\u0438 \u043F\u043E\u0441\u0442\u0430\u0440\u0438 \u0432\u0435\u0440\u0437\u0438\u0438. \u0417\u0430\u0442\u043E\u0430, \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438\u0442\u0435 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0438 \u043D\u0435\u043C\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0441\u043F\u0438\u0448\u0443\u0432\u0430\u0430\u0442 \u043F\u0440\u0430\u0432\u0438\u043B\u043D\u043E.", + LoadURL: "\u0412\u0447\u0438\u0442\u0430\u0458 \u0433\u0438 \u043F\u0440\u0435\u0432\u043E\u0434\u043D\u0438\u0442\u0435 \u043F\u043E\u0434\u0430\u0442\u043E\u0446\u0438 \u043E\u0434 \u0441\u043B\u0435\u0434\u043D\u0430\u0432\u0430 URL:", + BadURL: "URL-\u0430\u0434\u0440\u0435\u0441\u0430\u0442\u0430 \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u043F\u043E\u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430 \u0441\u043E JavaScript-\u043F\u043E\u0434\u0430\u0442\u043E\u0446\u0438 \u0448\u0442\u043E \u0433\u0438 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0443\u0432\u0430\u0430\u0442 \u043F\u0440\u0435\u0432\u043E\u0434\u043D\u0438\u0442\u0435 \u043F\u043E\u0434\u0430\u0442\u043E\u0446\u0438 \u0437\u0430 MathJax. JavaScript-\u043F\u043E\u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0438\u0442\u0435 \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u0437\u0430\u0432\u0440\u0448\u0443\u0432\u0430\u0430\u0442 \u0441\u043E \u043D\u0430\u0441\u0442\u0430\u0432\u043A\u0430\u0442\u0430 \u201E.js\u201C", + BadData: "\u041D\u0435 \u0443\u0441\u043F\u0435\u0430\u0432 \u0434\u0430 \u0433\u0438 \u0432\u0447\u0438\u0442\u0430\u043C \u043F\u0440\u0435\u0432\u043E\u0434\u043D\u0438\u0442\u0435 \u043F\u043E\u0434\u0430\u0442\u043E\u0446\u0438 \u043E\u0434 %1", + SwitchAnyway: "\u0421\u0435\u043F\u0430\u043A \u0434\u0430 \u0433\u043E \u0441\u043C\u0435\u043D\u0430\u043C \u0438\u0441\u043F\u0438\u0448\u0443\u0432\u0430\u0447\u043E\u0442?\n\n(\u041E\u041A \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0441\u043C\u0435\u043D\u0438 \u0438\u043B\u0438 \u041E\u0422\u041A\u0410\u0416\u0418 \u0437\u0430 \u0434\u0430 \u043F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u0435 \u0441\u043E \u043F\u043E\u0441\u0442\u043E\u0435\u0447\u043A\u0438\u043E\u0442)", + ScaleMath: "\u0420\u0430\u0437\u043C\u0435\u0440 \u043D\u0430 \u0441\u0435\u0442\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0430 (\u0432\u043E \u043E\u0434\u043D\u043E\u0441 \u043D\u0430 \u043E\u043A\u043E\u043B\u043D\u0438\u043E\u0442 \u0442\u0435\u043A\u0441\u0442, \u043A\u0430\u043A\u043E \u043F\u043E\u0441\u0442\u043E\u0442\u043E\u043A):", + NonZeroScale: "\u0420\u0430\u0437\u043C\u0435\u0440\u043E\u0442 \u043D\u0435 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0431\u0438\u0434\u0435 \u043D\u0443\u043B\u0430", + PercentScale: "\u0420\u0430\u0437\u043C\u0435\u0440\u043E\u0442 \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u0435 \u0438\u0437\u0440\u0430\u0437\u0435\u043D \u0432\u043E \u043F\u043E\u0441\u0442\u043E\u0442\u043E\u043A (\u043D\u0430 \u043F\u0440. 120%%)", + IE8warning: "\u0421\u043E \u043E\u0432\u0430 \u045C\u0435 \u0433\u0438 \u0438\u0441\u043A\u043B\u0443\u0447\u0438\u0442\u0435 \u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0438\u0442\u0435 \u043E\u0434 \u043C\u0435\u043D\u0438\u0442\u043E \u0438 \u043C\u0435\u043D\u0443\u0432\u0430\u045A\u0435\u0442\u043E \u043D\u0430 \u0433\u043E\u043B\u0435\u043C\u0438\u043D\u0430\u0442\u0430 \u0432\u043E MathJax, \u043D\u043E \u043C\u0435\u043D\u0438\u0442\u043E \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u0430 \u0433\u043E \u0434\u043E\u0431\u0438\u0435\u0442\u0435 \u0441\u043E Alt-\u0441\u0442\u0438\u0441\u043E\u043A \u043D\u0430 \u043D\u0435\u043A\u043E\u0458 \u0438\u0437\u0440\u0430\u0437.\n\n\u041D\u0430\u0432\u0438\u0441\u0442\u0438\u043D\u0430 \u0434\u0430 \u0433\u0438 \u0438\u0437\u043C\u0435\u0430\u043C \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0438\u0442\u0435 \u043D\u0430 MathPlayer?", + IE9warning: "\u041A\u043E\u043D\u0442\u0435\u043A\u0441\u0442\u043D\u043E\u0442\u043E \u043C\u0435\u043D\u0438 \u043D\u0430 MathJax \u045C\u0435 \u0431\u0438\u0434\u0435 \u0438\u0441\u043A\u043B\u0443\u0447\u0435\u043D\u043E, \u043D\u043E \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u0430 \u043D\u0430\u043F\u0440\u0430\u0432\u0438\u0442\u0435 Alt-\u0441\u0442\u0438\u0441\u043E\u043A \u043D\u0430 \u0438\u0437\u0440\u0430\u0437\u043E\u0442 \u0437\u0430 \u0434\u0430 \u0433\u043E \u0434\u043E\u0431\u0438\u0435\u0442\u0435 \u043C\u0435\u043D\u0438\u0442\u043E.", + NoOriginalForm: "\u041D\u0435\u043C\u0430 \u0438\u0437\u0432\u043E\u0440\u0435\u043D \u043E\u0431\u043B\u0438\u043A \u043D\u0430 \u0440\u0430\u0441\u043F\u043E\u043B\u0430\u0433\u0430\u045A\u0435", + Close: "\u0417\u0430\u0442\u0432\u043E\u0440\u0438", + EqSource: "\u0418\u0437\u0432\u043E\u0440 \u043D\u0430 \u0440\u0430\u0432\u0435\u043D\u043A\u0438\u0442\u0435 \u043D\u0430 MathJax" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/mk/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/mk/TeX.js b/modules/MathJax/unpacked/localization/mk/TeX.js new file mode 100644 index 0000000..6cb8979 --- /dev/null +++ b/modules/MathJax/unpacked/localization/mk/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/mk/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("mk","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "\u0418\u043C\u0430\u0442\u0435 \u043D\u0435\u043F\u043E\u0442\u0440\u0435\u0431\u043D\u0430 \u043F\u043E\u0447\u0435\u0442\u043D\u0430 \u0437\u0430\u0433\u0440\u0430\u0434\u0430 \u0438\u043B\u0438 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u0437\u0430\u0432\u0440\u0448\u043D\u0430", + ExtraCloseMissingOpen: "\u0418\u043C\u0430\u0442\u0435 \u043D\u0435\u043F\u043E\u0442\u0440\u0435\u0431\u043D\u0430 \u0437\u0430\u0432\u0440\u0448\u043D\u0430 \u0437\u0430\u0433\u0440\u0430\u0434\u0430 \u0438\u043B\u0438 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u043F\u043E\u0447\u0435\u0442\u043D\u0430", + MissingLeftExtraRight: "\u041D\u0435\u043C\u0430\u0442\u0435 \u201E\\left\u201C \u0438\u043B\u0438 \u0438\u043C\u0430\u0442\u0435 \u0432\u0438\u0448\u043E\u043A \u201E\\right\u201C", + MissingScript: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0437\u0430 \u0433\u043E\u0440\u0435\u043D \u0438\u043B\u0438 \u0434\u043E\u043B\u0435\u043D \u0438\u043D\u0434\u0435\u043A\u0441", + ExtraLeftMissingRight: "\u041D\u0435\u043C\u0430\u0442\u0435 \u201E\\right\u201C \u0438\u043B\u0438 \u0438\u043C\u0430\u0442\u0435 \u0432\u0438\u0448\u043E\u043A \u201E\\left\u201C", + Misplaced: "\u041F\u043E\u0433\u0440\u0435\u0448\u043D\u043E \u043F\u043E\u0441\u0442\u0430\u0432\u0435\u043D %1", + MissingOpenForSub: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u043F\u043E\u0447\u0435\u0442\u043D\u0430 \u0437\u0430\u0433\u0440\u0430\u0434\u0430 \u0437\u0430 \u0434\u043E\u043B\u0435\u043D \u0438\u043D\u0434\u0435\u043A\u0441", + MissingOpenForSup: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u043F\u043E\u0447\u0435\u0442\u043D\u0430 \u0437\u0430\u0433\u0440\u0430\u0434\u0430 \u0437\u0430 \u0433\u043E\u0440\u0435\u043D \u0438\u043D\u0434\u0435\u043A\u0441", + AmbiguousUseOf: "\u041D\u0435\u043F\u043E\u0458\u0430\u0441\u043D\u0435\u0442\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0430 \u043D\u0430 %1", + EnvBadEnd: "\\begin{%1} \u0437\u0430\u0431\u0440\u0448\u0438 \u0441\u043E \\end{%2}", + EnvMissingEnd: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \\end{%1}", + MissingBoxFor: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u043A\u0443\u0442\u0438\u0458\u043A\u0430 \u0437\u0430 %1", + MissingCloseBrace: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u0437\u0430\u0432\u0440\u0448\u043D\u0430 \u0437\u0430\u0433\u0440\u0430\u0434\u0430", + UndefinedControlSequence: "\u041D\u0435\u043F\u0440\u0435\u043F\u043E\u0437\u043D\u0430\u0435\u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0430 \u043D\u0438\u0437\u0430 %1", + DoubleExponent: "\u0414\u0432\u043E\u0435\u043D \u0433\u043E\u0440\u0435\u043D \u0438\u043D\u0434\u0435\u043A\u0441: \u043F\u043E\u0458\u0430\u0441\u043D\u0435\u0442\u0435 \u0441\u043E \u0437\u0430\u0433\u0440\u0430\u0434\u0438", + DoubleSubscripts: "\u0414\u0432\u043E\u0435\u043D \u0434\u043E\u043B\u0435\u043D \u0438\u043D\u0434\u0435\u043A\u0441: \u043F\u043E\u0458\u0430\u0441\u043D\u0435\u0442\u0435 \u0441\u043E \u0437\u0430\u0433\u0440\u0430\u0434\u0438", + DoubleExponentPrime: "\u041F\u0440\u0438\u043C\u043E\u0442 \u043F\u0440\u0430\u0432\u0438 \u0434\u0432\u043E\u0435\u043D \u0433\u043E\u0440\u0435\u043D \u0438\u043D\u0434\u0435\u043B\u043A\u0441: \u043F\u043E\u0458\u0430\u0441\u043D\u0435\u0442\u0435 \u0441\u043E \u0437\u0430\u0433\u0440\u0430\u0434\u0438", + CantUseHash1: "\u041D\u0435 \u043C\u043E\u0436\u0435\u0442\u0435 \u0434\u0430 \u0433\u043E \u043A\u043E\u0440\u0438\u0441\u0442\u0438\u0442\u0435 \u043C\u0430\u043A\u0440\u043E\u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440\u0441\u043A\u0438\u043E\u0442 \u0437\u043D\u0430\u043A \u201E#\u201C \u0432\u043E \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438 \u0440\u0435\u0436\u0438\u043C", + MisplacedMiddle: "%1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u201E\\left\u201C \u0438\u043B\u0438 \u201E\\right\u201C", + MisplacedLimits: "%1 \u0441\u0435 \u0434\u043E\u043F\u0443\u0448\u0442\u0430 \u0441\u0430\u043C\u043E \u0437\u0430 \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u0438", + MisplacedMoveRoot: "%1 \u043C\u043E\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0458\u0430\u0432\u0443\u0432\u0430 \u0441\u0430\u043C\u043E \u0432\u043E \u043A\u043E\u0440\u0435\u043D", + MultipleCommand: "%1 \u0441\u0435 \u0458\u0430\u0432\u0443\u0432\u0430 \u043F\u043E\u0432\u0435\u045C\u0435\u043F\u0430\u0442\u0438", + IntegerArg: "\u0410\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u043E\u0442 \u0437\u0430 %1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u0446\u0435\u043B \u0431\u0440\u043E\u0458", + NotMathMLToken: "%1 \u043D\u0435 \u0435 \u0448\u0438\u0444\u0440\u0435\u043D \u0435\u043B\u0435\u043C\u0435\u043D\u0442", + InvalidMathMLAttr: "\u041D\u0435\u0432\u0430\u0436\u0435\u0447\u043A\u0438 MathML-\u0430\u0442\u0440\u0438\u0431\u0443\u0442: %1", + UnknownAttrForElement: "%1 \u043D\u0435 \u0435 \u043F\u0440\u0438\u0437\u043D\u0430\u0435\u043D \u0430\u0442\u0440\u0438\u0431\u0443\u0442 \u0437\u0430 %2", + MaxMacroSub1: "\u041D\u0430\u0434\u043C\u0438\u043D\u0430\u0442 \u0435 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u043D\u0438\u043E\u0442 \u0431\u0440\u043E\u0458 \u043D\u0430 \u043C\u0430\u043A\u0440\u043E\u0437\u0430\u043C\u0435\u043D\u0438 \u0432\u043E MathJax. \u0414\u0430 \u043D\u0435 \u0438\u043C\u0430 \u0440\u0435\u043A\u0443\u0440\u0437\u0438\u0432\u043D\u043E \u043F\u043E\u0432\u0438\u043A\u0443\u0432\u0430\u045A\u0435 \u043D\u0430 \u043C\u0430\u043A\u0440\u043E\u0437\u0430\u043C\u0435\u043D\u0430\u0442\u0430?", + MaxMacroSub2: "\u041D\u0430\u0434\u043C\u0438\u043D\u0430\u0442 \u0435 \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u043D\u0438\u043E\u0442 \u0431\u0440\u043E\u0458 \u043D\u0430 \u043C\u0430\u043A\u0440\u043E\u0437\u0430\u043C\u0435\u043D\u0438 \u0432\u043E MathJax. \u0414\u0430 \u043D\u0435 \u0438\u043C\u0430 \u0440\u0430\u043A\u0443\u0440\u0437\u0438\u0432\u043D\u0430 LaTeX-\u043E\u043A\u043E\u043B\u0438\u043D\u0430?", + MissingArgFor: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0437\u0430 %1", + ExtraAlignTab: "\u041D\u0435\u043F\u043E\u0442\u0440\u0435\u0431\u0435\u043D \u0437\u043D\u0430\u043A \u0437\u0430 \u043F\u043E\u0440\u0430\u043C\u043D\u0443\u0432\u0430\u045A\u0435 \u0432\u043E \u0442\u0435\u043A\u0441\u0442\u043E\u0442 \u043D\u0430 \u201E\\cases\u201C", + BracketMustBeDimension: "\u0417\u0430\u0433\u0440\u0430\u0434\u0435\u043D\u0438\u043E\u0442 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0437\u0430 %1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u0434\u0438\u043C\u0435\u043D\u0437\u0438\u0458\u0430", + InvalidEnv: "\u041F\u043E\u0433\u0440\u0435\u0448\u043D\u043E \u0438\u043C\u0435 \u043D\u0430 \u043E\u043A\u043E\u043B\u0438\u043D\u0430\u0442\u0430 \u201E%1\u201C", + UnknownEnv: "\u041D\u0435\u043F\u043E\u0437\u043D\u0430\u0442\u0430 \u043E\u043A\u043E\u043B\u0438\u043D\u0430 \u201E%1\u201C", + ExtraCloseLooking: "\u041D\u0435\u043F\u043E\u0442\u0440\u0435\u0431\u043D\u0430 \u0437\u0430\u0432\u0440\u0448\u043D\u0430 \u0437\u0430\u0433\u0440\u0430\u0434\u0430 \u0432\u043E \u043F\u0440\u0435\u0431\u0430\u0440\u0443\u0432\u0430\u045A\u0435\u0442\u043E \u043D\u0430 %1", + MissingCloseBracket: "\u041D\u0435 \u043C\u043E\u0436\u0435\u0432 \u0434\u0430 \u043D\u0430\u0458\u0434\u0430\u043C \u0437\u0430\u0432\u0440\u0448\u043D\u043E ']' \u0437\u0430 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u043E\u0442 \u0432\u043E %1", + MissingOrUnrecognizedDelim: "\u041E\u0442\u0441\u0443\u0442\u0435\u043D \u0438\u043B\u0438 \u043D\u0435\u043F\u0440\u0435\u043F\u043E\u0437\u043D\u0430\u0435\u043D \u043E\u0434\u0434\u0435\u043B\u0443\u0432\u0430\u0447 \u0437\u0430 %1", + MissingDimOrUnits: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u0434\u0438\u043C\u0435\u043D\u0437\u0438\u0458\u0430 \u0438\u043B\u0438 \u043D\u0435\u0458\u0437\u0438\u043D\u0438 \u0435\u0434\u0438\u043D\u0438\u0446\u0438 \u0437\u0430 %1", + TokenNotFoundForCommand: "\u041D\u0435 \u043C\u043E\u0436\u0435\u0432 \u0434\u0430 \u0433\u043E \u043D\u0430\u0458\u0434\u0430\u043C %1 \u0437\u0430 %2", + MathNotTerminated: "\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0430\u0442\u0430 \u0441\u043E\u0434\u0440\u0436\u0438\u043D\u0430 \u043D\u0435 \u0435 \u0437\u0430\u0432\u0440\u0448\u0435\u043D\u0430 \u0432\u043E \u043F\u043E\u043B\u0435\u0442\u043E \u0437\u0430 \u0442\u0435\u043A\u0441\u0442", + IllegalMacroParam: "\u041D\u0435\u0438\u0441\u043F\u0440\u0430\u0432\u0435\u043D \u043C\u0430\u043A\u0440\u043E\u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0430\u0440", + MaxBufferSize: "\u041D\u0430\u0434\u043C\u0438\u043D\u0430\u0442\u0430 \u0435 \u0433\u043E\u043B\u0435\u043C\u0438\u043D\u0430\u0442\u0430 \u043D\u0430 \u0432\u043D\u0430\u0442\u0440\u0435\u0448\u043D\u0438\u043E\u0442 \u043C\u0435\u0453\u0443\u0441\u043A\u043B\u0430\u0434 \u043D\u0430 MathJax. \u0414\u0430 \u043D\u0435 \u0438\u043C\u0430 \u0440\u0435\u043A\u0443\u0440\u0437\u0438\u0432\u043D\u043E \u043C\u0430\u043A\u0440\u043E\u043F\u043E\u0432\u0438\u043A\u0443\u0432\u0430\u045A\u0435?", + CommandNotAllowedInEnv: "%1 \u043D\u0435 \u0441\u0435 \u0434\u043E\u043F\u0443\u0448\u0442\u0430 \u0432\u043E \u043E\u043A\u043E\u043B\u0438\u043D\u0430\u0442\u0430 \u043D\u0430 %2", + MultipleLabel: "\u041D\u0430\u0442\u043F\u0438\u0441\u043E\u0442 \u201E%1\u201C \u0435 \u0437\u0430\u0434\u0430\u0434\u0435\u043D \u043F\u043E\u0432\u0435\u045C\u0435\u043F\u0430\u0442\u0438", + CommandAtTheBeginingOfLine: "%1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0434\u043E\u0458\u0434\u0435 \u043D\u0430 \u043F\u043E\u0447\u0435\u0442\u043E\u043A\u043E\u0442 \u043E\u0434 \u0440\u0435\u0434\u043E\u0442", + IllegalAlign: "\u0423\u043A\u0430\u0436\u0430\u043D\u043E \u0435 \u043D\u0435\u0438\u0441\u043F\u0440\u0430\u0432\u0435\u043D\u043E \u043F\u043E\u0440\u0430\u043C\u043D\u0443\u0432\u0430\u045A\u0435 \u0432\u043E %1", + BadMathStyleFor: "\u041D\u0435\u0438\u0441\u043F\u0440\u0430\u0432\u0435\u043D \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0438 \u0441\u0442\u0438\u043B \u0437\u0430 %1", + PositiveIntegerArg: "\u0410\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u043E\u0442 \u0437\u0430 %1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u043F\u043E\u0437\u0438\u0442\u0438\u0432\u0435\u043D \u0446\u0435\u043B \u0431\u0440\u043E\u0458", + ErroneousNestingEq: "\u041F\u043E\u0433\u0440\u0435\u0448\u043D\u043E \u0432\u043C\u0435\u0442\u043D\u0430\u0442\u0438 \u0440\u0430\u0432\u0435\u043D\u0441\u043A\u0438 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0438", + MultlineRowsOneCol: "\u0420\u0435\u0434\u043E\u0432\u0438\u0442\u0435 \u0432\u043E \u0441\u043E\u0441\u0442\u0430\u0432 \u043D\u0430 \u043E\u043A\u043E\u043B\u0438\u043D\u0430\u0442\u0430 \u043D\u0430 %1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0438\u043C\u0430\u0430\u0442 \u0442\u043E\u0447\u043D\u043E \u043F\u043E \u0435\u0434\u043D\u0430 \u043A\u043E\u043B\u043E\u043D\u0430", + MultipleBBoxProperty: "%1 \u0435 \u0443\u043A\u0430\u0436\u0430\u043D\u043E \u0434\u0432\u0430\u043F\u0430\u0442\u0438 \u0432\u043E %2", + InvalidBBoxProperty: "\u201E%1\u201C \u043D\u0435 \u0435 \u0431\u043E\u0458\u0430, \u0434\u0438\u043C\u0435\u043D\u0437\u0438\u0458\u0430 \u0437\u0430 \u0441\u043B\u043E\u0436\u0443\u0432\u0430\u045A\u0435 \u0438\u043B\u0438 \u0441\u0442\u0438\u043B", + ExtraEndMissingBegin: "\u041D\u0435\u043F\u043E\u0442\u0440\u0435\u0431\u043D\u043E %1 \u0438\u043B\u0438 \u043D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \\begingroup", + GlobalNotFollowedBy: "%1 \u043D\u0435 \u0435 \u0434\u043E\u043F\u0443\u0448\u0442\u0435\u043D\u043E \u043E\u0434 \u201E\\let\u201C, \u201E\\def\u201C \u0438\u043B\u0438 \u201E\\newcommand\u201C", + UndefinedColorModel: "\u0411\u043E\u0458\u043D\u0438\u043E\u0442 \u043C\u043E\u0434\u0435\u043B \u201E%1\u201C \u043D\u0435 \u0435 \u0437\u0430\u0434\u0430\u0434\u0435\u043D", + ModelArg1: "\u0411\u043E\u0458\u043D\u0438\u0442\u0435 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442\u0438 \u0437\u0430 \u043C\u043E\u0434\u0435\u043B\u043E\u0442 %1 \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u0438\u043C\u0430\u0430\u0442 \u043F\u043E \u0442\u0440\u0438 \u0431\u0440\u043E\u0458\u043A\u0438", + InvalidDecimalNumber: "\u041D\u0435\u0432\u0430\u0436\u0435\u0447\u043A\u0438 \u0434\u0435\u0446\u0438\u043C\u0430\u043B\u0435\u043D \u0431\u0440\u043E\u0458", + ModelArg2: "\u0411\u043E\u0458\u043D\u0438\u0442\u0435 \u0432\u0440\u0435\u0434\u043D\u043E\u0441\u0442\u0438 \u0437\u0430 \u043C\u043E\u0434\u0435\u043B\u043E\u0442 %1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0430\u0442 \u043F\u043E\u043C\u0435\u0453\u0443 %2 \u0438 %3", + InvalidNumber: "\u041D\u0435\u0432\u0430\u0436\u0435\u0447\u043A\u0438 \u0431\u0440\u043E\u0458", + NewextarrowArg1: "\u041F\u0440\u0432\u0438\u043E\u0442 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 %1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0438\u043C\u0435\u043D\u0443\u0432\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0430 \u043D\u0438\u0437\u0430", + NewextarrowArg2: "\u0412\u0442\u043E\u0440\u0438\u043E\u0442 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0437\u0430 %1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0441\u0435 \u0441\u043E\u0441\u0442\u043E\u0438 \u043E\u0434 \u0434\u0432\u0430 \u0446\u0435\u043B\u0438 \u0431\u0440\u043E\u0458\u0430 \u043E\u0434\u0434\u0435\u043B\u0435\u043D\u0438 \u0441\u043E \u0437\u0430\u043F\u0438\u0440\u043A\u0430", + NewextarrowArg3: "\u0422\u0440\u0435\u0442\u0438\u043E\u0442 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0437\u0430 %1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0431\u0438\u0434\u0435 \u0443\u043D\u0438\u043A\u043E\u0434\u0435\u043D \u0431\u0440\u043E\u0435\u043D \u0437\u043D\u0430\u043A", + NoClosingChar: "\u041D\u0435 \u043C\u043E\u0436\u0430\u043C \u0434\u0430 \u043D\u0430\u0458\u0434\u0430\u043C \u0437\u0430\u0432\u0440\u0448\u043D\u043E %1", + IllegalControlSequenceName: "\u041D\u0435\u0438\u0441\u043F\u0440\u0430\u0432\u043D\u043E \u0438\u043C\u0435 \u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0430\u0442\u0430 \u043D\u0438\u0437\u0430 \u0437\u0430 %1", + IllegalParamNumber: "\u041D\u0430 %1 \u043C\u0443 \u0435 \u0443\u043A\u0430\u0436\u0430\u043D \u043D\u0435\u0434\u043E\u043F\u0443\u0448\u0442\u0435\u043D \u0431\u0440\u043E\u0458 \u043D\u0430 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438", + MissingCS: "%1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0435 \u043F\u0440\u043E\u0441\u043B\u0435\u0434\u0435\u043D \u043E\u0434 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0430 \u043D\u0438\u0437\u0430", + CantUseHash2: "\u041D\u0435\u0434\u043E\u043F\u0443\u0448\u0442\u0435\u043D\u0430 \u0443\u043F\u043E\u0442\u0440\u0435\u0431\u0430 \u043D\u0430 \u201E#\u201C \u0432\u043E \u0448\u0430\u0431\u043B\u043E\u043D\u043E\u0442 \u0437\u0430 %1", + SequentialParam: "\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438\u0442\u0435 \u0437\u0430 %1 \u043C\u043E\u0440\u0430 \u0434\u0430 \u0441\u0435 \u043D\u0443\u043C\u0435\u0440\u0438\u0440\u0430\u043D\u0438 \u043F\u043E\u0441\u043B\u0435\u0434\u043E\u0432\u0430\u0442\u0435\u043B\u043D\u043E", + MissingReplacementString: "\u041D\u0435\u0434\u043E\u0441\u0442\u0430\u0441\u0443\u0432\u0430 \u0437\u0430\u043C\u0435\u043D\u0430 \u0437\u0430 \u043D\u0438\u0437\u0430\u0442\u0430 \u0432\u043E \u0437\u0430\u0434\u0430\u0434\u0435\u043D\u043E\u0442\u043E \u043D\u0430 %1", + MismatchUseDef: "\u0423\u043F\u043E\u0442\u0440\u0435\u0431\u0430\u0442\u0430 \u043D\u0430 %1 \u043D\u0435 \u043E\u0434\u0433\u043E\u0432\u0430\u0440\u0430 \u043D\u0430 \u0437\u0430\u0434\u0430\u0434\u0435\u043D\u043E\u0442\u043E", + RunawayArgument: "\u041D\u0435\u0441\u043A\u043B\u0430\u0434\u0435\u043D \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0437\u0430 %1?", + NoClosingDelim: "\u041D\u0435 \u043C\u043E\u0436\u0430\u043C \u0434\u0430 \u0433\u043E \u043D\u0430\u0458\u0434\u0430\u043C \u0437\u0430\u0432\u0440\u0448\u043D\u0438\u043E\u0442 \u043E\u0434\u0434\u0435\u043B\u0443\u0432\u0430\u0447 \u0437\u0430 %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/mk/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/mk/mk.js b/modules/MathJax/unpacked/localization/mk/mk.js new file mode 100644 index 0000000..e92b468 --- /dev/null +++ b/modules/MathJax/unpacked/localization/mk/mk.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/mk/mk.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("mk",null,{ + menuTitle: "\u043C\u0430\u043A\u0435\u0434\u043E\u043D\u0441\u043A\u0438", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax \u043F\u0440\u043E\u043D\u0430\u0458\u0434\u0435 \u043A\u043E\u043B\u0430\u0447\u0435 \u0441\u043E \u043A\u043E\u0440\u0438\u0441\u043D\u0438\u0447\u043A\u0438 \u043F\u043E\u0441\u0442\u0430\u0432\u043A\u0438 \u043A\u043E\u0435 \u0441\u043E\u0434\u0440\u0436\u0438 \u043A\u043E\u0434 \u0448\u0442\u043E \u0442\u0440\u0435\u0431\u0430 \u0434\u0430 \u0441\u0435 \u043F\u0443\u0448\u0442\u0438. \u0421\u0430\u043A\u0430\u0442\u0435 \u0434\u0430 \u0433\u043E \u043F\u0443\u0448\u0442\u0438\u0442\u0435?\n\n(\u0421\u0442\u0438\u0441\u043D\u0435\u0442\u0435 \u043D\u0430 \u201E\u041E\u0442\u043A\u0430\u0436\u0438\u201C \u0434\u043E\u043A\u043E\u043B\u043A\u0443 \u043D\u0435 \u0441\u0442\u0435 \u0433\u043E \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u043B\u0435 \u043A\u043E\u043B\u0430\u0447\u0435\u0442\u043E \u0432\u0438\u0435 \u0441\u0430\u043C\u0438\u0442\u0435.)", + MathProcessingError: "\u0413\u0440\u0435\u0448\u043A\u0430 \u0432\u043E \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0430\u0442\u0430 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0430", + MathError: "\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0430 \u0433\u0440\u0435\u0448\u043A\u0430", + LoadFile: "\u0413\u043E \u0432\u0447\u0438\u0442\u0443\u0432\u0430\u043C %1", + Loading: "\u0412\u0447\u0438\u0442\u0443\u0432\u0430\u043C", + LoadFailed: "\u041F\u043E\u0434\u0430\u0442\u043E\u0442\u0435\u043A\u0430\u0442\u0430 \u043D\u0435 \u0441\u0435 \u0432\u0447\u0438\u0442\u0430: %1", + ProcessMath: "\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043A\u0430 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0430: %1%%", + Processing: "\u041E\u0431\u0440\u0430\u0431\u043E\u0442\u0443\u0432\u0430\u043C", + TypesetMath: "\u0421\u043B\u043E\u0436\u0443\u0432\u0430\u045A\u0435 \u043D\u0430 \u0438\u0441\u043F\u0438\u0441\u043E\u0442: %1%%", + Typesetting: "\u0421\u043B\u043E\u0436\u0443\u0432\u0430\u043C \u0438\u0441\u043F\u0438\u0441", + MathJaxNotSupported: "\u0412\u0430\u0448\u0438\u043E\u0442 \u043F\u0440\u0435\u0431\u0430\u0440\u0443\u0432\u0430\u0447 \u043D\u0435 \u0433\u043E \u043F\u043E\u0434\u0434\u0440\u0436\u0443\u0432\u0430 MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n % 10 === 1 && n !== 11) return 1; // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/mk/mk.js"); diff --git a/modules/MathJax/unpacked/localization/nl/FontWarnings.js b/modules/MathJax/unpacked/localization/nl/FontWarnings.js new file mode 100644 index 0000000..34a13be --- /dev/null +++ b/modules/MathJax/unpacked/localization/nl/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/nl/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("nl","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax gebruikt web-gebaseerde lettertypes om wiskunde weer te geven op deze pagina. Het kost tijd om deze te downloaden, dus de pagina zou sneller weergegeven worden als u de wiskunde lettertypes direct in de lettertype map van uw systeem zou plaatsen.", + imageFonts: "MathJax gebruikt zijn beeld-lettertypes en niet zijn lokale of web-gebaseerde lettertypes. Dit zal een tragere weergave geven dan normaal en de wiskunde zal wellicht niet op de hoogste resolutie van uw printer afgedrukt worden.", + noFonts: "MathJax is niet in staat een lettertype te vinden waarmee het zijn wiskunde kan weergeven, en beeld-lettertypes zijn niet beschikbaar, dus valt het nu terug op generieke Unicode karakters in de hoop dat uw browsers in staat zal zijn ze weer te geven. Sommige kararakter worden wellicht niet goed weergegeven en mogelijkerwijs helemaal niet.", + webFonts: "De meeste moderne browsers kunnen lettertypes via het web downloaden. Updaten naar een recentere versie van uw browser (of een andere browser gaan gebruiken) zou de kwaliteit van de wiskunde op deze pagina kunnen verbeteren.", + fonts: "MathJax kan de [STIX fonts](%1) \u00F3f de [MathJax TeX fonts](%2) gebruiken. Download en installeer een van deze lettertypes om uw MathJax ervaring te verbeteren.", + STIXPage: "Deze pagina is ontworpen om de [STIX fonts](%1) te gebruiken. Download en installeer deze lettertypes om uw MathJax ervaring te verbeteren.", + TeXPage: "Deze pagina is ontworpen om de [MathJax TeX fonts](%1) te gebruiken. Download en installeer deze lettertypes om uw MathJax ervaring te verbeteren." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/nl/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/nl/HTML-CSS.js b/modules/MathJax/unpacked/localization/nl/HTML-CSS.js new file mode 100644 index 0000000..0407628 --- /dev/null +++ b/modules/MathJax/unpacked/localization/nl/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/nl/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("nl","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Web-lettertype %1 aan het laden", + CantLoadWebFont: "Het weblettertype %1 kan niet geladen worden.", + FirefoxCantLoadWebFont: "Firefox kan geen web-lettertypes laden van een externe host", + CantFindFontUsing: "Kan met gebruik van %1 geen geldig lettertype vinden", + WebFontsNotAvailable: "Web-lettertypes niet beschikbaar. In plaats daarvan worden beeld-lettertypes gebruikt" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/nl/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/nl/HelpDialog.js b/modules/MathJax/unpacked/localization/nl/HelpDialog.js new file mode 100644 index 0000000..69bcd1e --- /dev/null +++ b/modules/MathJax/unpacked/localization/nl/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/nl/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("nl","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "MathJax Help", + MathJax: "*MathJax* is een JavaScript bibliotheek die het mogelijk maakt dat auteurs wiskunde kunnen toevoegen aan hun web-pagina's. Als een lezer hoeft u niks te doen om dat mogelijk te maken.", + Browsers: "*Browsers*: MathJax werkt met alle moderne browsers, inclusief IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ en de meeste mobiele browsers.", + Menu: "*Math menu*:MathJax voegt een context menu toe aan vergelijkingen. Rechtsklik of Ctrl-klik op willekeurige wiskunde om het menu weer te geven.", + ShowMath: "*Toon wiskunde als* toont de formule in bron opmaak voor knippen \u0026 plakken (als MathML of in zijn originele formaat).", + Settings: "Via *Instellingen* kunt u de functionaliteit van MathJax beheersen, zoals de grootte van de wiskunde en het mechanisme dat gebruikt wordt om vergelijkingen weer te geven.", + Language: "Via *Taal* kunt u de taal kiezen die MathJax gebruikt voor de menu's en waarschuwingsboodschappen.", + Zoom: "*Wiskunde zoom*: Als u moeite heeft met het lezen van een vergelijking dan kan MathJax deze vergroten zodat u het beter kunt zien.", + Accessibilty: "*Toegankelijkheid*: MathJax werkt automatisch samen met schermlezers waardoor wiskunde toegankelijk wordt voor slechtzienden.", + Fonts: "*Lettertypes*: MathJax zal bepaalde wiskunde lettertypes gebruiken als die ge\u00EFnstalleerd zijn op uw computer; anders zal het web-gebaseerde lettertypes gebruiken. Alhoewel het niet noodzakelijk is, zullen lokaal ge\u00EFnstalleerde lettertypes het zetwerk versnellen. We raden aan om de [STIX fonts](%1) te installeren." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/nl/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/nl/MathML.js b/modules/MathJax/unpacked/localization/nl/MathML.js new file mode 100644 index 0000000..5fa60d1 --- /dev/null +++ b/modules/MathJax/unpacked/localization/nl/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/nl/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("nl","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "Verkeerde mglyph: %1", + BadMglyphFont: "Verkeerd lettertype: %1", + MathPlayer: "MathJax was niet in staat MathPlayer in te stellen.\n\\n\nAls MathPlay niet ge\u00EFnstalleerd is dan dient u dat eerst te doen.\nAnders kan het zijn dat beveiligingsinstellingen de uitvoering van ActiveX-besturingselementen verhinderen. Gebruik de keuze Internet Opties in het Extra menu en selecteer het tabblag Beveiligingsinstellingen en druk op de Aangepaste niveau knop. Controleer dat de instellingen voor 'Het uitvoeren van ActiveX-besturingselementen' en 'Gedrag van binaire elementen en scripts' ingeschakeld zijn.\n\\n\nMomenteel zult u foutmeldingen zien in plaats van opgemaakte wiskunde", + CantCreateXMLParser: "MathJax kan geen XML verwerker cre\u00EBren voor MathML. Controleer dat de 'ActiveX-besturingselementen die zijn gemarkeerd als veilig voor scripts uitvoeren in scripts' beveiligingsinstelling ingeschakeld is (gebruik de Internet Opties keuze in het Extra menu en selecteer het paneel Beveiliging, druk dan op de Aangepaste niveau knop om dit te controleren.)\n\\n\nHet zal voor MathML vergelijkingen niet mogelijk zijn verwerkt te worden door MathJax.", + UnknownNodeType: "Onbekend knooptype: %1", + UnexpectedTextNode: "Onverwachte tekstknoop: %1", + ErrorParsingMathML: "Fout tijdens verwerken MathML", + ParsingError: "Fout tijdens verwerken MathML: %1", + MathMLSingleElement: "MathML moet bestaan uit \u00E9\u00E9n element", + MathMLRootElement: "MathML moet bestaan uit een \u003Cmath\u003E element, niet %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/nl/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/nl/MathMenu.js b/modules/MathJax/unpacked/localization/nl/MathMenu.js new file mode 100644 index 0000000..f60b4eb --- /dev/null +++ b/modules/MathJax/unpacked/localization/nl/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/nl/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("nl","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + OriginalMathML: "Oorspronkelijke MathML", + TeXCommands: "TeX-commando's", + Annotation: "Annotatie", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + texHints: "TeX-hints weergeven in MathML", + Settings: "Instellingen voor wiskundige formules", + ZoomTrigger: "Inzoomen als", + Hover: "Aanwijseffect", + Click: "Klik", + NoZoom: "Niet zoomen", + Option: "Optie", + Command: "Command", + Control: "Control", + Shift: "Shift", + ZoomFactor: "Zoom factor", + MPHandles: "Laat MathPlayer de volgende gebeurtenissen afhandelen:", + MenuEvents: "Menugebeurtenissen", + MouseEvents: "Muisgebeurtenissen", + MenuAndMouse: "Muis- en menugebeurtenissen", + FontPrefs: "Lettertype-voorkeuren", + ForHTMLCSS: "Voor HTML-CSS:", + TeXLocal: "TeX (lokaal)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (afbeelding)", + STIXLocal: "STIX (lokaal)", + Discoverable: "Uitlichten bij aanwijzen", + Locale: "Taal", + LoadLocale: "Laden van URL ...", + Help: "MathJax Help", + localTeXfonts: "met behulp van lokale TeX-lettertypen", + webSVGfonts: "met behulp van SVG-weblettertypen", + genericfonts: "met behulp van standaard Unicodelettertypen", + wofforotffonts: "WOFF- of OTF-lettertypen", + eotffonts: "EOT-lettertypen", + svgfonts: "SVG-lettertypen", + OperaNativeMMLWarning: "De ondersteuning voor MathML in Opera is beperkt, dus als u overschakelt naar weergave via MathML kunnen sommige expressies slecht worden weergegeven.", + SafariNativeMMLWarning: "De in uw browser ingebouwde MathML heeft niet alle mogelijkheden die door MathJax worden gebruikt, dus niet alle expressies kunnen correct worden weergegeven.", + FirefoxNativeMMLWarning: "De in uw browser ingebouwde MathML heeft niet alle mogelijkheden die door MathJax worden gebruikt, dus niet alle expressies kunnen correct worden weergegeven.", + BadURL: "De URL moet naar een JavaScriptbestand wijzen waarin vertaalgegevens voor MathJax staan. De naam van het JavaScriptbestand moet eindigen op \".js\".", + PercentScale: "De schaal moet een percentage zijn (bijvoorbeeld 120%%)", + IE9warning: "Het context menu van MathJax wordt uitgeschakeld, maar u kunt in plaats daarvan door Alt-klikken op een expressie het MathJax menu weergeven.", + NoOriginalForm: "Geen oorspronkelijke vorm beschikbaar", + Close: "Sluiten", + Browser: "Browser", + Show: "Toon wiskunde als", + MathMLcode: "MathML code", + AsciiMathInput: "AsciiMathML invoer", + Original: "Oorspronkelijke vorm", + ErrorMessage: "Foutmelding", + ContentMathML: "Inhoud MathML", + OpenMath: "OpenMath", + DoubleClick: "Dubbelklik", + TriggerRequires: "Trigger vereist:", + Alt: "Alt", + Renderer: "Wiskunde weergever", + Auto: "Automatisch", + ContextMenu: "Context menu", + Scale: "Schaal alle wiskunde als ...", + About: "Over MathJax", + webTeXfonts: "met behulp van web-lettertype TeX", + imagefonts: "met behulp van beeld-lettertypes", + localSTIXfonts: "met behulp van lokale STIX lettertypes", + WebkitNativeMMLWarning: "Uw browser lijkt MathML niet van origine te ondersteunen, door te kiezen voor MathML uitvoer kan de wiskunde op de pagina onleesbaar worden.", + MSIENativeMMLWarning: "Internet Explorer vereist de MathPlayer plug-in om MathML uitvoer te verwerken", + MSIESVGWarning: "SVG is niet ge\u00EFmplementeerd in Internet Explorer versie voor IE9 en ook niet wanneer het IE8 of lager emuleert. Kiezen voor SVG output veroorzaakt onjuiste weergave van de wiskunde.", + LoadURL: "Laad vertalingsdata van deze URL:", + BadData: "Vertalingsdata laden van %1 niet gelukt", + SwitchAnyway: "Evengoed de weergever veranderen?\n\\n\n(Druk op OK om te veranderen, ANNULEREN om door te gaan met de huidige weergever.)", + ScaleMath: "Schaal alle wiskunde (in vergelijking tot de omliggende tekst) met", + NonZeroScale: "De schaal zou niet nul moeten zijn", + IE8warning: "Dit zal het MathJax menu en zoom functies uitschakelen, maar u kunt via Alt-klik op een expressie om het MathJax menu weer te geven.\n\\n\nWilt u inderdaad de MathPlayer instellingen wijzigen?", + EqSource: "MathJax Vergelijking Bron" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/nl/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/nl/TeX.js b/modules/MathJax/unpacked/localization/nl/TeX.js new file mode 100644 index 0000000..2c78911 --- /dev/null +++ b/modules/MathJax/unpacked/localization/nl/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/nl/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("nl","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Overtollige openende accolade of ontbrekende afsluitende accolade", + ExtraCloseMissingOpen: "Overtollige afsluitende accolade of ontbrekende openende accolade", + MissingLeftExtraRight: "Ontbrekende \\left of overtollige \\right", + MissingScript: "Ontbrekend superschrift of subschrift argument", + ExtraLeftMissingRight: "Overtollige \\left of ontbrekende \\right", + Misplaced: "Misplaatste %1", + MissingOpenForSub: "Ontbrekende openende accolade voor subschrift", + MissingOpenForSup: "Ontbrekende openende accolade voor superschrift", + AmbiguousUseOf: "Dubbelzinnig gebruik van %1", + EnvBadEnd: "\\begin{%1} eindigde met \\end{%2}", + EnvMissingEnd: "Ontbrekende \\end{%1}", + MissingBoxFor: "Ontbrekende box voor %1", + MissingCloseBrace: "Ontbrekende afsluitende accolade", + UndefinedControlSequence: "Ongedefinieerde bewerkingsvolgorde %1", + DoubleExponent: "Dubbele exponent: gebruik accolades om te verduidelijken", + DoubleSubscripts: "Dubbele subschriften: gebruik accolades om te verduidelijken", + DoubleExponentPrime: "Priem veroorzaakt een dubbele exponent: Gebruik accolades om te verduidelijken.", + CantUseHash1: "U kunt 'macro parameter karakter #' niet gebruiken in wiskunde modus", + MisplacedMiddle: "%1 moet zich tussen \\left en \\right bevinden", + MisplacedLimits: "%1 is alleen toegestaan op bewerkingstekens", + MisplacedMoveRoot: "%1 kan alleen voorkomen in een root", + MultipleCommand: "Meerdere %1", + IntegerArg: "Het argument voor %1 moet een geheel getal zijn", + NotMathMLToken: "%1 is geen symbool element", + InvalidMathMLAttr: "Ongeldig MathML attribuut: %1", + UnknownAttrForElement: "%1 is niet een bekend attribuut voor %2", + MaxMacroSub1: "MathJax maximaal aantal macro vervangingen overschreden; is er een recursieve macro aanroep?", + MaxMacroSub2: "MathJax maximaal aantal vervangingen overschreden; is er een recursieve latex omgeving?", + MissingArgFor: "Ontbrekend argument voor %1", + ExtraAlignTab: "Overtollige uitlijning tab in \\cases tekst", + BracketMustBeDimension: "Rechte haak argument voor %1 moet een dimensie zijn", + InvalidEnv: "Ongeldige omgevingsnaam '%1'", + UnknownEnv: "Onbekende omgeving '%1'", + ExtraCloseLooking: "Overtollige afsluitende accolade terwijl gezocht wordt naar %1", + MissingCloseBracket: "Kon afsluitende ']' niet vinden als argument voor %1", + MissingOrUnrecognizedDelim: "Ontbrekend of onbekend scheidingsteken voor %1", + MissingDimOrUnits: "Ontbrekende dimensie of zijn eenheden voor %1", + TokenNotFoundForCommand: "Kon %1 niet vinden voor %2", + MathNotTerminated: "Wiskunde niet afgerond in een 'text box'", + IllegalMacroParam: "Niet toegestane macro parameter verwijzing", + MaxBufferSize: "MathJax interne bufferomvang overschreden; is er een recursive macro aanroep?", + CommandNotAllowedInEnv: "%1 niet toegestaan in %2 omgeving", + MultipleLabel: "Label '%1' meerdere keren gedefinieerd", + CommandAtTheBeginingOfLine: "%1 moet aan het begin van een regel staan", + IllegalAlign: "Niet toegestane uitlijning gespecificeerd in %1", + BadMathStyleFor: "Foute wiskunde stijl voor %1", + PositiveIntegerArg: "Het argument voor %1 moet een positief geheel getal zijn", + ErroneousNestingEq: "Foutieve nesting van vergelijking structuren", + MultlineRowsOneCol: "De regels in de %1 omgeving moeten precies \u00E9\u00E9n kolom bevatten", + MultipleBBoxProperty: "%1 twee keer gespecificeerd in %2", + InvalidBBoxProperty: "'%1' lijkt niet op een kleur, een opvuldimensie of een stijl", + ExtraEndMissingBegin: "Overtollige %1 of ontbrekende \\begingroup", + GlobalNotFollowedBy: "%1 niet gevolgd door \\let, \\def of \\newcommand", + UndefinedColorModel: "Kleurmodel '%1' niet gedefinieerd", + ModelArg1: "Kleurwaardes voor het %1 model hebben 3 getallen nodig", + InvalidDecimalNumber: "Ongeldig decimaal getal", + ModelArg2: "Kleurwaardes voor het %1 model moeten tussen %2 en %3 liggen", + InvalidNumber: "Ongeldig getal", + NewextarrowArg1: "Eerst argument voor %1 moet een bewerkingsvolgorde naam zijn.", + NewextarrowArg2: "Tweede argument voor %1 moet twee gehele getallen zijn, gescheiden door een komma", + NewextarrowArg3: "Derde argument voor %1 moet een Unicode karakter nummer zijn", + NoClosingChar: "Kan afsluitende %1 niet vinden", + IllegalControlSequenceName: "Niet toegestane bewerkingsvolgorde naam voor %1", + IllegalParamNumber: "Niet toegestane getallen of parameters gespecificeerd in %1", + MissingCS: "%1 moet gevolgd worden door een bewerkingsvolgorde", + CantUseHash2: "Niet toegestaan gebruik van # in een sjabloon voor %1", + SequentialParam: "Parameters voor %1 moeten opeenvolgend genummerd zijn", + MissingReplacementString: "Ontbrekende vervangende tekst voor definitie van %1", + MismatchUseDef: "Gebruik van %1 stemt niet overeen met zijn definitie", + RunawayArgument: "Ontsnapt argument voor %1?", + NoClosingDelim: "Kan afsluitende scheidingsteken voor %1 niet vinden" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/nl/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/nl/nl.js b/modules/MathJax/unpacked/localization/nl/nl.js new file mode 100644 index 0000000..25f213e --- /dev/null +++ b/modules/MathJax/unpacked/localization/nl/nl.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/nl/nl.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("nl",null,{ + menuTitle: "Nederlands", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + LoadFile: "Bezig met laden van %1", + Loading: "Bezig met laden", + Processing: "Bezig met verwerken", + MathJaxNotSupported: "Uw browser ondersteunt MathJax niet", + CookieConfig: "MathJax heeft een gebruikersconfiguratie cookie aangetroffen dat code bevat die uitgevoerd moet worden. Wilt u deze uitvoeren?\n\\n\n(U zou op annuleren moeten drukken tenzij u het cookie zelf ingesteld heeft.)", + MathProcessingError: "Wiskunde verwerkingsfout", + MathError: "Wiskunde fout", + LoadFailed: "Bestand kan niet geladen worden: %1", + ProcessMath: "Berekening verwerken: %1", + TypesetMath: "Berekening opmaken: %1", + Typesetting: "Opmaken" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) {return 1} // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/nl/nl.js"); diff --git a/modules/MathJax/unpacked/localization/oc/FontWarnings.js b/modules/MathJax/unpacked/localization/oc/FontWarnings.js new file mode 100644 index 0000000..add277e --- /dev/null +++ b/modules/MathJax/unpacked/localization/oc/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/oc/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("oc","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/oc/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/oc/HTML-CSS.js b/modules/MathJax/unpacked/localization/oc/HTML-CSS.js new file mode 100644 index 0000000..cf57e88 --- /dev/null +++ b/modules/MathJax/unpacked/localization/oc/HTML-CSS.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/oc/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("oc","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/oc/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/oc/HelpDialog.js b/modules/MathJax/unpacked/localization/oc/HelpDialog.js new file mode 100644 index 0000000..bc40b1f --- /dev/null +++ b/modules/MathJax/unpacked/localization/oc/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/oc/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("oc","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/oc/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/oc/MathML.js b/modules/MathJax/unpacked/localization/oc/MathML.js new file mode 100644 index 0000000..edca983 --- /dev/null +++ b/modules/MathJax/unpacked/localization/oc/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/oc/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("oc","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/oc/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/oc/MathMenu.js b/modules/MathJax/unpacked/localization/oc/MathMenu.js new file mode 100644 index 0000000..4247d45 --- /dev/null +++ b/modules/MathJax/unpacked/localization/oc/MathMenu.js @@ -0,0 +1,73 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/oc/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("oc","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Afichar jos la forma", + MathMLcode: "C\u00F2de MathML", + OriginalMathML: "MathML d\u2019origina", + TeXCommands: "Comandas TeX", + AsciiMathInput: "entrada AsciiMathML", + Original: "Format d'origina", + ErrorMessage: "Messatge d\u2019error", + Annotation: "Anotacion", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "MathML de contengut", + OpenMath: "OpenMath", + texHints: "Afichar las ajudas TeX en MathML", + Settings: "Parametratges dels maths", + ZoomTrigger: "Desenclavador de zoom", + Hover: "Susv\u00F2l", + Click: "Clic", + DoubleClick: "Clic doble", + NoZoom: "Pas de zoom", + TriggerRequires: "Lo desenclavador necessita :", + Option: "Opcion", + Alt: "Alt", + Command: "Comanda", + Control: "Contrar\u00F2tle", + Shift: "Shift", + ZoomFactor: "Factor de grossiment", + Renderer: "Rendut matematic", + MPHandles: "Daissar MathPlayer gerir :", + MenuEvents: "Eveniments de men\u00FA", + MouseEvents: "Eveniments de mirga", + FontPrefs: "Prefer\u00E9ncias de poli\u00E7a", + ForHTMLCSS: "Per HTML-CSS :", + Auto: "Auto", + TeXLocal: "TeX (local)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (imatge)", + STIXLocal: "STIX (local)", + ContextMenu: "Men\u00FA contextual", + Browser: "Navigador", + Locale: "Lenga", + Close: "Tampar" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/oc/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/oc/TeX.js b/modules/MathJax/unpacked/localization/oc/TeX.js new file mode 100644 index 0000000..f9ca6bb --- /dev/null +++ b/modules/MathJax/unpacked/localization/oc/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/oc/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("oc","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/oc/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/oc/oc.js b/modules/MathJax/unpacked/localization/oc/oc.js new file mode 100644 index 0000000..d3d3620 --- /dev/null +++ b/modules/MathJax/unpacked/localization/oc/oc.js @@ -0,0 +1,61 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/oc/oc.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("oc",null,{ + menuTitle: "occitan", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + LoadFile: "Telecargament de %1", + Loading: "Cargament", + LoadFailed: "Frac\u00E0s del telecargament de %1", + ProcessMath: "Tractament de las formulas : %1%%", + Processing: "Tractament", + TypesetMath: "Composicion de las formulas : %1%%", + Typesetting: "Composicion", + MathProcessingError: "Error de tractament de la formula matematica", + MathError: "Error dins la formula matematica", + MathJaxNotSupported: "V\u00F2stre navigador sup\u00F2rta pas MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) return 1; // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/oc/oc.js"); diff --git a/modules/MathJax/unpacked/localization/pl/FontWarnings.js b/modules/MathJax/unpacked/localization/pl/FontWarnings.js new file mode 100644 index 0000000..d5946a6 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pl/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pl/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pl","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax u\u017Cywa czcionek Web, aby wy\u015Bwietli\u0107 wzory matematyczne na tej stronie. Pobranie czcionek z sieci zajmuje chwil\u0119. Strona ta mog\u0142aby za\u0142adowa\u0107 si\u0119 szybciej, je\u015Bli zainstalowa\u0142by\u015B czcionki lokalnie w swoim systemie.", + imageFonts: "MathJax u\u017Cywa czcionek obrazkowych zamiast lokalnych lub pobranych z sieci. To powoduje wolniejsze wy\u015Bwietlanie strony oraz uniemo\u017Cliwia wydruk w pe\u0142nej rozdzielczo\u015Bci Twojej drukarki.", + noFonts: "MathJax nie mo\u017Ce zlokalizowa\u0107 czcionek potrzebnych do wy\u015Bwietlenia wzor\u00F3w, a czcionki obrazkowe nie s\u0105 dost\u0119pne. U\u017Cywane s\u0105 wi\u0119c znaki Unicode z nadziej\u0105, \u017Ce Twoja przegl\u0105darka wy\u015Bwietli je poprawnie. Niekt\u00F3re znaki mog\u0105 jednak nie wygl\u0105da\u0107 prawid\u0142owo lub mog\u0105 nie by\u0107 w og\u00F3le wy\u015Bwietlane.", + webFonts: "Wi\u0119kszo\u015B\u0107 nowych przegl\u0105darek umo\u017Cliwia pobieranie czcionek z sieci Web. Aktualizacja Twojej przegl\u0105darki (lub wyb\u00F3r innej) mo\u017Ce polepszy\u0107 jako\u015B\u0107 wy\u015Bwietlanych wzor\u00F3w matematycznych na tej stronie.", + fonts: "MathJax mo\u017Ce u\u017Cy\u0107 albo [czcionek STIX](%1), albo [czcionek MathJax Tex](%2). Pobierz i zainstaluj te czcionki, aby ulepszy\u0107 dzia\u0142anie MathJax.", + STIXPage: "Ta strona wymaga [czcionek STIX](%1). Pobierz i zainstaluj te czcionki, aby ulepszy\u0107 dzia\u0142anie MathJax.", + TeXPage: "Ta strona wymaga [czcionek MathJax Tex](%1). Pobierz i zainstaluj te czcionki, aby ulepszy\u0107 dzia\u0142anie MathJax." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pl/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/pl/HTML-CSS.js b/modules/MathJax/unpacked/localization/pl/HTML-CSS.js new file mode 100644 index 0000000..881509b --- /dev/null +++ b/modules/MathJax/unpacked/localization/pl/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pl/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pl","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "\u0141aduj\u0119 czcionk\u0119 %1", + CantLoadWebFont: "Nie mo\u017Cna za\u0142adowa\u0107 czcionki %1", + FirefoxCantLoadWebFont: "Firefox nie mo\u017Ce za\u0142adowa\u0107 czcionek ze zdalnego hosta", + CantFindFontUsing: "Nie mo\u017Cna znale\u017A\u0107 w\u0142a\u015Bciwej czcionki u\u017Cywaj\u0105c %1", + WebFontsNotAvailable: "Czcionki internetowe nie dost\u0119pne - zamiast tego u\u017Cywane s\u0105 czcionki obrazkowe" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pl/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/pl/HelpDialog.js b/modules/MathJax/unpacked/localization/pl/HelpDialog.js new file mode 100644 index 0000000..a8bee13 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pl/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pl/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pl","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "Pomoc MathJax", + MathJax: "*MathJax* to biblioteka Javascript umo\u017Cliwiaj\u0105ca autorom stron Web na zapisywanie wzor\u00F3w matematycznych. Jako u\u017Cytkownik, nie musisz robi\u0107 nic dodatkowo, aby wzory by\u0142y poprawnie wy\u015Bwietlane.", + Browsers: "*Przegl\u0105darki*: MathJax dzia\u0142a z nowymi przegl\u0105darkami, m.in. IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ i wi\u0119kszo\u015Bci\u0105 przegl\u0105darek mobilnych.", + Menu: "*Menu*: MathJax dodaje menu kontekstowe do wzor\u00F3w matematycznych. Kliknij prawym klawiszem myszki (lub lewy klawisz i Ctrl), aby je otworzy\u0107.", + ShowMath: "Opcja *Poka\u017C wzory jako* pozwala zobaczy\u0107 \u017Ar\u00F3d\u0142ow\u0105 posta\u0107 wzor\u00F3w, aby mo\u017Cna by\u0142o je skopiowa\u0107 do schowka.", + Settings: "Opcja *Ustawienia* pozwala kontrolowa\u0107 MathJax, m.in. ustawia\u0107 wielko\u015B\u0107 wzor\u00F3w i zmienia\u0107 mechanizm ich wy\u015Bwietlania.", + Language: "*J\u0119zyk* pozwala wybra\u0107 j\u0119zyk, w jakim wy\u015Bwietlane jest menu oraz komunikaty o b\u0142\u0119dach.", + Zoom: "*Powi\u0119kszanie*: Je\u017Celi masz problem z odczytaniem wzoru, MathJax mo\u017Ce zwi\u0119kszy\u0107 wielko\u015B\u0107 liter, aby \u0142atwiej by\u0142o go odczyta\u0107.", + Accessibilty: "*Dost\u0119pno\u015B\u0107*: MathJax dzia\u0142a automatycznie z czytnikami ekranowymi, aby wzory matematyczne by\u0142y dost\u0119pne dla niedowidz\u0105cych.", + Fonts: "*Czcionki*: MathJax u\u017Cyje czcionek matematycznych zainstalowanych w Twoim systemie. Je\u017Celi ich nie masz, to u\u017Cyje czcionek Web. Nie jest to wymagane, ale lokalnie dost\u0119pne czcionki przyspiesz\u0105 dzia\u0142anie MathJax. Sugerujemy zainstalowanie czcionek [STIX](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pl/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/pl/MathML.js b/modules/MathJax/unpacked/localization/pl/MathML.js new file mode 100644 index 0000000..9c82ca2 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pl/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pl/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pl","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "B\u0142\u0105d w elemencie mglyph: %1", + BadMglyphFont: "B\u0142\u0119dna czcionka: %1", + MathPlayer: "MathJax nie m\u00F3g\u0142 uruchomi\u0107 MathPlayer.\n\nJe\u015Bli MathPlayer nie jest zainstalowany, musisz go najpierw zainstalowa\u0107.\nW przeciwnym razie, twoje ustawienia bezpiecze\u0144stwa mog\u0105 blokowa\u0107 dzia\u0142anie\nformant\u00F3w ActiveX. W Opcjach internetowych, w menu Narz\u0119dzia wybierz zak\u0142adk\u0119\nZabezpieczenia i naci\u015Bnij przycisk Poziom niestandardowy. Upewnij si\u0119, \u017Ce ustawienia\ndotycz\u0105ce ActiveX oraz skrypt\u00F3w s\u0105 w\u0142\u0105czone.\n\nDo tego czasu b\u0119d\u0105 wy\u015Bwietlane b\u0142\u0119dy zamiast wzor\u00F3w matematycznych.", + CantCreateXMLParser: "MathJax nie mo\u017Ce utworzy\u0107 parsera XML dla MathML. Upewnij si\u0119, \u017Ce\nopcja 'Wykonywanie skrypt\u00F3w formant\u00F3w ActiveX' jest w\u0142\u0105czona\n(sprawd\u017A to w Opcjach internetowych w menu Narz\u0119dzia,\nw zak\u0142adce Zabezpieczenia kliknij na przycisk Poziom niestandardowy).\n\nDo tego czasu b\u0119d\u0105 wy\u015Bwietlane b\u0142\u0119dy zamiast wzor\u00F3w matematycznych.", + UnknownNodeType: "Nieznany typ elementu: %1", + UnexpectedTextNode: "Nieoczekiwany element tekstowy: %1", + ErrorParsingMathML: "B\u0142\u0105d podczas przetwarzania MathML", + ParsingError: "B\u0142\u0105d podczas przetwarzania MathML: %1", + MathMLSingleElement: "MathML musi by\u0107 zamkni\u0119ty w pojedynczym elemencie", + MathMLRootElement: "MathML musi by\u0107 zamkni\u0119ty w elemencie \u003Cmath\u003E, a nie %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pl/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/pl/MathMenu.js b/modules/MathJax/unpacked/localization/pl/MathMenu.js new file mode 100644 index 0000000..fb1f3b1 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pl/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pl/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pl","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Poka\u017C wzory jako", + MathMLcode: "Kod MathML", + OriginalMathML: "Oryginalny MathML", + TeXCommands: "Komendy TeX", + AsciiMathInput: "Wej\u015Bcie AsciiMathML", + Original: "Oryginalny formularz", + ErrorMessage: "Komunikat o b\u0142\u0119dzie", + texHints: "Poka\u017C wskaz\u00F3wki TeX w MathML", + Settings: "Ustawienia matematyki", + ZoomTrigger: "Zwi\u0119kszanie zoomu", + Hover: "Podnie\u015B kursor", + Click: "Kliknij", + DoubleClick: "Kliknij dwukrotnie", + NoZoom: "Bez zooma", + TriggerRequires: "Wymaga:", + Option: "Opcja", + Alt: "Alt", + Command: "Komenda", + Control: "Kontrola", + Shift: "Shift", + ZoomFactor: "Wsp\u00F3\u0142czynnik powi\u0119kszenia", + Renderer: "Renderowanie matematyki", + MPHandles: "Obs\u0142u\u017C MathPlayer", + MenuEvents: "Zdarzenia menu", + MouseEvents: "Zdarzenia myszy", + MenuAndMouse: "Zdarzenia myszy i menu", + FontPrefs: "Ustawienia czcionek", + ForHTMLCSS: "Dla HTML-CSS:", + Auto: "Automatycznie", + TeXLocal: "TeX (lokalny)", + TeXWeb: "TeX (www)", + TeXImage: "TeX (obraz)", + STIXLocal: "STIX (lokalny)", + ContextMenu: "Menu kontekstowe", + Browser: "Przegl\u0105darka", + Scale: "Skaluje wszystkie matematyczne...", + Discoverable: "Podkre\u015Bl po najechaniu kursora", + Locale: "J\u0119zyk", + LoadLocale: "Pobierz z URL...", + About: "O MathJax", + Help: "Pomoc MathJax", + localTeXfonts: "U\u017Cyj lokalnej czcionki TeX", + webTeXfonts: "U\u017Cyj internetowej czcionki TeX", + imagefonts: "U\u017Cyj czcionki obrazkowej", + localSTIXfonts: "U\u017Cyj lokalnej czcionki STIX", + webSVGfonts: "U\u017Cyj internetowej czcionki SVG", + genericfonts: "U\u017Cyj generowanej czcionki unicode", + wofforotffonts: "czcionki WOFF lub OTF", + eotffonts: "czcionki EOT", + svgfonts: "czcionki SVG", + WebkitNativeMMLWarning: "Twoja przegl\u0105darka nie obs\u0142uguje MathML, wi\u0119c zmiana wyj\u015Bcia do MathML mo\u017Ce spowodowa\u0107, \u017Ce strona stanie si\u0119 niemo\u017Cliwa do odczytania.", + MSIENativeMMLWarning: "Program Internet Explorer wymaga wtyczki MathPlayer do procesu wy\u015Bwietlania MathML.", + OperaNativeMMLWarning: "Wsparcie dla MathML w Operze jest ograniczone. W zwi\u0105zku z tym zmiana wyj\u015Bcia na MathML mo\u017Ce spowodowa\u0107, \u017Ce niekt\u00F3re strony b\u0119d\u0105 niemo\u017Cliwe do odczytania.", + SafariNativeMMLWarning: "MathML zaimplementowany w twojej przegl\u0105darce nie obs\u0142uguje wszystkich mo\u017Cliwo\u015Bci MathJax, wi\u0119c cz\u0119\u015B\u0107 wyra\u017Cen mo\u017Ce nie renderowa\u0107 si\u0119 poprawnie.", + FirefoxNativeMMLWarning: "MathML zaimplementowany w twojej przegl\u0105darce nie obs\u0142uguje wszystkich mo\u017Cliwo\u015Bci MathJax, wi\u0119c cz\u0119\u015B\u0107 wyra\u017Cen mo\u017Ce nie renderowa\u0107 si\u0119 poprawnie.", + MSIESVGWarning: "SVG nie jest zaimplementowane w Internet Explorerze do wersji 9 lub podczas emulowania IE8 lub poni\u017Cej, wi\u0119c zmiana wyj\u015Bcia do SVG mo\u017Ce spowodowa\u0107, \u017Ce strona stanie si\u0119 niemo\u017Cliwa do odczytania.", + LoadURL: "Za\u0142aduj t\u0142umaczenie z tego URL:", + BadURL: "Adres URL powinien by\u0107 dla pliku JavaScript, kt\u00F3ry definiuje dane t\u0142umaczenie MathJax. Pliki JavaScript powinny ko\u0144czy\u0107 si\u0119 \".js\"", + BadData: "Nie mo\u017Cna za\u0142adowa\u0107 danych t\u0142umacze\u0144 z %1", + SwitchAnyway: "Na pewno zmieni\u0107 renderer ?\n\n(Naci\u015Bnij OK a\u017Ceby zmieni\u0107, lub CANCEL aby kontynuowa\u0107 z aktualnym rendererem)", + ScaleMath: "Skaluj wszystkie wyra\u017Cenia matematyczne (por\u00F3wnane do otaczaj\u0105cego tekstu) przez", + NonZeroScale: "Warto\u015B\u0107 nie powinna by\u0107 zerowa", + PercentScale: "Warto\u015B\u0107 powinna by\u0107 w procentach (na przyk\u0142ad 120%%)", + IE8warning: "Ta opcja wy\u0142\u0105czy obs\u0142ug\u0119 menu i powi\u0119kszania w MathJax, ale mo\u017Cesz klikn\u0105\u0107 z Altem na wz\u00F3r, aby otworzy\u0107 menu MathJax.\n\nCzy na pewno chcesz zmieni\u0107 ustawienia MathPlayer?", + IE9warning: "Menu kontekstowe MathJax zostanie wy\u0142\u0105czone, ale mo\u017Cesz klikn\u0105\u0107 z Altem na wz\u00F3r, aby otworzy\u0107 menu.", + NoOriginalForm: "Brak wzor\u00F3w w oryginalnej postaci", + Close: "Zamknij", + EqSource: "\u0179r\u00F3d\u0142o wzoru MathJax", + Annotation: "Adnotacja", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Klon", + ContentMathML: "Zawarto\u015B\u0107 MathML", + OpenMath: "OpenMath" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pl/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/pl/TeX.js b/modules/MathJax/unpacked/localization/pl/TeX.js new file mode 100644 index 0000000..dabd1d7 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pl/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pl/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pl","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Nadmiarowy nawias otwieraj\u0105cy lub brakuj\u0105cy nawias zamykaj\u0105cy", + ExtraCloseMissingOpen: "Nadmiarowy nawias zamykaj\u0105cy lub brakuj\u0105cy nawias otwieraj\u0105cy", + MissingLeftExtraRight: "Brakuj\u0105cy \\left lub nadmiarowy \\right", + MissingScript: "Brakuj\u0105cy argument dla indeksu dolnego lub g\u00F3rnego", + ExtraLeftMissingRight: "Nadmiarowy \\left lub brakuj\u0105cy \\right", + Misplaced: "\u0179le umiejscowiony %1", + MissingOpenForSub: "Brakuj\u0105cy nawias otwieraj\u0105cy dla indeksu dolnego", + MissingOpenForSup: "Brakuj\u0105cy nawias otwieraj\u0105cy dla indeksu g\u00F3rnego", + AmbiguousUseOf: "Nierozpoznane u\u017Cycie %1", + EnvBadEnd: "\\begin{%1} zosta\u0142 zako\u0144czony \\end{%2}", + EnvMissingEnd: "Brakuje \\end{%1}", + MissingBoxFor: "Brakuje pude\u0142ka (box) dla %1", + MissingCloseBrace: "Brakuje nawiasu zamykaj\u0105cego", + UndefinedControlSequence: "Nieznana komenda steruj\u0105ca %1", + DoubleExponent: "Podw\u00F3jna pot\u0119ga: u\u017Cyj nawias\u00F3w, aby unikn\u0105\u0107 niejednoznaczno\u015Bci", + DoubleSubscripts: "Podw\u00F3jny indeks: u\u017Cyj nawias\u00F3w, aby unikn\u0105\u0107 niejednoznaczno\u015Bci", + DoubleExponentPrime: "Znak ' oznacza podw\u00F3jny wyk\u0142adnik: u\u017Cyj nawias\u00F3w, aby unikn\u0105\u0107 niejednoznaczno\u015Bci", + CantUseHash1: "Nie mo\u017Cesz u\u017Cywa\u0107 znaku # w trybie matematycznym", + MisplacedMiddle: "%1 musi by\u0107 pomi\u0119dzy \\left i \\right", + MisplacedLimits: "%1 jest dozwolony tylko dla operator\u00F3w", + MisplacedMoveRoot: "%1 mo\u017Ce pojawi\u0107 si\u0119 tylko w ramach korzenia (root)", + MultipleCommand: "Wielokrotny %1", + IntegerArg: "Parametr dla %1 musi by\u0107 liczb\u0105 ca\u0142kowit\u0105", + NotMathMLToken: "%1 nie jest elementem typu token", + InvalidMathMLAttr: "Nieprawid\u0142owy atrybut MathML: %1", + UnknownAttrForElement: "%1 nie jest znanym atrybutem dla %2", + MaxMacroSub1: "Przekroczono maksymaln\u0105 liczb\u0119 wywo\u0142a\u0144 makra; czy wyst\u0119puje rekursywne makro?", + MaxMacroSub2: "Przekroczono maksymaln\u0105 liczb\u0119 zast\u0105pie\u0144; czy wyst\u0119puje rekursywne \u015Brodowisko latex?", + MissingArgFor: "Brakuje argumentu dla %1", + ExtraAlignTab: "Nadmiarowy tabulator w \\cases", + BracketMustBeDimension: "Argument w nawiasie dla %1 musi by\u0107 wymiarem", + InvalidEnv: "Nieznana nazwa \u015Brodowiska '%1'", + UnknownEnv: "Nieznane \u015Brodowisko '%1'", + ExtraCloseLooking: "Nadmiarowy nawias zamykaj\u0105cy napotkany w czasie poszukiwania %1", + MissingCloseBracket: "Nie odnaleziono zamykaj\u0105cego nawiasu ']' dla argumentu dla %1", + MissingOrUnrecognizedDelim: "Nieodnaleziony lub nierozpoznany separator dla %1", + MissingDimOrUnits: "Brakuje wymiaru lub jego jednostki dla %1", + TokenNotFoundForCommand: "Nie odnaleziono %1 dla %2", + MathNotTerminated: "Nie odnaleziono zako\u0144czenia w polu tekstowym", + IllegalMacroParam: "Nieprawid\u0142owa referencja do parametru makra", + MaxBufferSize: "Przekroczono rozmiar bufora MathJax, czy istnieje rekursywne wywo\u0142anie makra?", + CommandNotAllowedInEnv: "%1 nie jest dozwolony w \u015Brodowisku %2", + MultipleLabel: "Wielokrotna definicja etykiety '%1'", + CommandAtTheBeginingOfLine: "%1 musi znajdowa\u0107 si\u0119 na pocz\u0105tku linii", + IllegalAlign: "Nieprawid\u0142owy argument dla %1", + BadMathStyleFor: "B\u0142\u0119dny styl dla %1", + PositiveIntegerArg: "Argument dla %1 musi by\u0107 dodatni\u0105 liczb\u0105 ca\u0142kowit\u0105", + ErroneousNestingEq: "B\u0142\u0119dne zagnie\u017Cd\u017Cenie wyra\u017Ce\u0144", + MultlineRowsOneCol: "Wiersze w \u015Brodowisku %1 musz\u0105 mie\u0107 dok\u0142adnie jedn\u0105 kolumn\u0119", + MultipleBBoxProperty: "%1 okre\u015Blony dwa razy w %2", + InvalidBBoxProperty: "'%1' nie jest kolorem, wielko\u015Bci\u0105 odst\u0119pu, ani stylem", + ExtraEndMissingBegin: "Nadmiarowy %1 lub brakuj\u0105cy \\begingroup", + GlobalNotFollowedBy: "Po %1 nie wyst\u0119puje \\let, \\def, ani \\newcommand", + UndefinedColorModel: "Przestrze\u0144 barw '%1' nie jest zdefiniowana", + ModelArg1: "Warto\u015Bci kolor\u00F3w dla przestrzeni %1 wymagaj\u0105 3 liczb", + InvalidDecimalNumber: "Nieprawid\u0142owe liczba dziesi\u0119tna", + ModelArg2: "Warto\u015Bci kolor\u00F3w dla przestrzeni %1 musz\u0105 by\u0107 pomi\u0119dzy %2 i %3", + InvalidNumber: "B\u0142\u0119dna liczba", + NewextarrowArg1: "Pierwszy argument dla %1 musi by\u0107 nazw\u0105 sekwencji kontrolnej", + NewextarrowArg2: "Drugi argumentem dla %1 musz\u0105 by\u0107 dwie liczby ca\u0142kowite oddzielone przecinkiem", + NewextarrowArg3: "Trzeci argument dla %1 musi by\u0107 numerem znaku unicode", + NoClosingChar: "Nie mo\u017Cna odnale\u017A\u0107 zamykaj\u0105cego %1", + IllegalControlSequenceName: "Nieprawid\u0142owa nazwa sekwencji kontrolnej dla %1", + IllegalParamNumber: "Nieprawid\u0142owa liczba parametr\u00F3w dla %1", + CantUseHash2: "Nieprawid\u0142owe u\u017Cycie # w szablonie dla %1", + SequentialParam: "Parametry dla %1 musz\u0105 by\u0107 ponumerowane rosn\u0105co", + MissingReplacementString: "Brak \u0142a\u0144cucha zamiennego dla definicji %1", + MismatchUseDef: "U\u017Cycie %1 niezgodne z definicj\u0105", + RunawayArgument: "Zgin\u0105\u0142 argument dla %1?", + NoClosingDelim: "Nie mo\u017Cna znale\u017A\u0107\u00A0ko\u0144cz\u0105cego separatora dla %1", + MissingCS: "Po %1 musi wyst\u0105pi\u0107 sekwencja kontrolna" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pl/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/pl/pl.js b/modules/MathJax/unpacked/localization/pl/pl.js new file mode 100644 index 0000000..b12eb90 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pl/pl.js @@ -0,0 +1,67 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pl/pl.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pl",null,{ + menuTitle: "polski", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax znalaz\u0142 konfiguracj\u0119 zapisan\u0105 w ciasteczku, kt\u00F3ra zawiera kod do uruchomienia. Czy chcesz go uruchomi\u0107?\n\n(Powiniene\u015B nacisn\u0105\u0107 Anuluj, je\u015Bli to nie Ty stworzy\u0142e\u015B t\u0119 konfiguracj\u0119.)", + MathProcessingError: "B\u0142\u0105d podczas przetwarzania wzor\u00F3w matematycznych", + MathError: "B\u0142\u0105d we wzorze matematycznym", + LoadFile: "\u0141aduj\u0119 %1", + Loading: "\u0141aduj\u0119", + LoadFailed: "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 pliku: %1", + ProcessMath: "Przetwarzam wzory matematyczne: %1%%", + Processing: "Przetwarzam", + TypesetMath: "Przetwarzam wzory matematyczne: %1%%", + Typesetting: "Przetwarzam", + MathJaxNotSupported: "MathJax nie obs\u0142uguje Twojej przegl\u0105darki" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n == 1) { + return 0; + } else if (n % 10 >=2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20)) { + return 1; + } else { + return 2; + } + }, + number: function (n) { + return String(n).replace(".", ","); // replace dot by comma + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pl/pl.js"); diff --git a/modules/MathJax/unpacked/localization/pt-br/FontWarnings.js b/modules/MathJax/unpacked/localization/pt-br/FontWarnings.js new file mode 100644 index 0000000..e24ccc9 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt-br/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt-br/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt-br","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "O MathJax est\u00E1 utilizando fontes baseadas em web para exibir as f\u00F3rmulas matem\u00E1ticas desta p\u00E1gina. O download delas leva algum tempo, ent\u00E3o a p\u00E1gina seria renderizada mais rapidamente se voc\u00EA instalasse as fontes para matem\u00E1tica diretamente na pasta de fontes do seu sistema.", + imageFonts: "O MathJax est\u00E1 utilizando fontes feitas com imagens em vez de fontes locais ou baseadas em web. Isso torna a renderiza\u00E7\u00E3o mais lenta do que o de costume, e as f\u00F3rmulas matem\u00E1ticas poder\u00E3o n\u00E3o ser impressas com a maior resolu\u00E7\u00E3o dispon\u00EDvel em sua impressora.", + noFonts: "O MathJax n\u00E3o foi capaz de localizar uma fonte para utilizar ao renderizar as f\u00F3rmulas matem\u00E1ticas, e n\u00E3o est\u00E3o dispon\u00EDveis fontes feitas com imagens, ent\u00E3o ser\u00E3o utilizados caracteres unicode gen\u00E9ricos com a esperan\u00E7a de que o seu navegador seja capaz de exib\u00ED-los. Alguns caracteres podem n\u00E3o aparecer como deveriam, ou simplesmente desaparecer.", + webFonts: "A maioria dos navegadores modernos permite que as fontes sejam baixadas a partir da web. Atualizar para uma vers\u00E3o mais recente do seu navegador (ou mudar de navegador) poderia melhorar a qualidade das f\u00F3rmulas matem\u00E1ticas desta p\u00E1gina.", + fonts: "O MathJax pode usar tanto [fontes STIX](%1) ou as [fontes MathJax TeX](%2). Baixe e instale uma destas fontes para melhorar sua experi\u00EAncia com o MathJax.", + STIXPage: "Esta p\u00E1gina foi projetada para utilizar [fontes STIX](%1). Baixe e instale estas fontes para melhorar sua experi\u00EAncia com o MathJax.", + TeXPage: "Esta p\u00E1gina foi projetada para utilizar [fontes MathJax TeX](%1). Baixe e instale estas fontes para melhorar sua experi\u00EAncia com o MathJax." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt-br/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/pt-br/HTML-CSS.js b/modules/MathJax/unpacked/localization/pt-br/HTML-CSS.js new file mode 100644 index 0000000..cc60b0e --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt-br/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt-br/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt-br","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Carregando fonte baseada em web %1", + CantLoadWebFont: "N\u00E3o foi poss\u00EDvel carregar a fonte baseada em web %1", + FirefoxCantLoadWebFont: "O Firefox N\u00E3o pode carregar fontes baseadas em web a partir de um host remoto", + CantFindFontUsing: "N\u00E3o \u00E9 poss\u00EDvel encontrar uma fonte v\u00E1lida usando %1", + WebFontsNotAvailable: "Fontes baseadas em web n\u00E3o est\u00E3o dispon\u00EDveis -- usando fontes feitas com imagens em vez disso" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt-br/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/pt-br/HelpDialog.js b/modules/MathJax/unpacked/localization/pt-br/HelpDialog.js new file mode 100644 index 0000000..71a0421 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt-br/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt-br/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt-br","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "Ajuda do MathJax", + MathJax: "*MathJax* \u00E9 uma biblioteca em JavaScript que permite aos autores a inclus\u00E3o de conte\u00FAdo matem\u00E1tico em suas p\u00E1ginas web. Como um renderizador, voc\u00EA n\u00E3o precisa fazer qualquer coisa para que isso ocorra.", + Browsers: "*Navegadores*: O MathJax funciona em todos os navegadores modernos incluindo IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ e a maioria dos navegadores para dispositivos m\u00F3veis.", + Menu: "*Menu de F\u00F3rmulas*: O MathJax acrescenta um menu de contexto \u00E0s equa\u00E7\u00F5es. Clique com o bot\u00E3o direito ou pressione CTRL ao clicar em qualquer f\u00F3rmula matem\u00E1tica para acessar o menu.", + ShowMath: "*Mostrar F\u00F3rmulas Como* permite que visualize o c\u00F3digo da f\u00F3rmula para copiar e colar (como MathML ou em seu formato original).", + Settings: "*Configura\u00E7\u00F5es* oferecem a voc\u00EA o controle sobre os recursos do MathJax, tais como o tamanho das f\u00F3rmulas, e o mecanismo utilizado para exibir equa\u00E7\u00F5es.", + Language: "*Idioma* permite que escolha o idioma que o MathJax utiliza em seus menus e mensagens de aviso.", + Zoom: "*Zoom nas F\u00F3rmulas*: Se voc\u00EA tem dificuldade para ler uma equa\u00E7\u00E3o, o MathJax pode ampli\u00E1-la para ajud\u00E1-lo a visualiz\u00E1-la melhor.", + Accessibilty: "*Acessibilidade*: O MathJax funcionar\u00E1 automaticamente em leitores de tela para tornar as f\u00F3rmulas matem\u00E1ticas acess\u00EDveis aos que possuem problemas de vis\u00E3o.", + Fonts: "*Fontes*: O MathJax utilizar\u00E1 certas fontes para f\u00F3rmulas matem\u00E1ticas se elas estiverem instaladas no seu computador; caso contr\u00E1rio, ele utilizar\u00E1 fontes baseadas em web. Embora n\u00E3o seja obrigat\u00F3rio, o uso de fontes instaladas localmente acelerar\u00E1 a diagrama\u00E7\u00E3o. Sugerimos que instale [fontes STIX](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt-br/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/pt-br/MathML.js b/modules/MathJax/unpacked/localization/pt-br/MathML.js new file mode 100644 index 0000000..35a38a0 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt-br/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt-br/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt-br","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "Mglyph ruim: %1", + BadMglyphFont: "Fonte ruim: %1", + MathPlayer: "O MathJax n\u00E3o foi capaz de configurar o MathPlayer.\n\nSe o MathPlayer n\u00E3o estiver instalado, precisar\u00E1 instal\u00E1-lo primeiro.\nCaso contr\u00E1rio, suas configura\u00E7\u00F5es de seguran\u00E7a podem estar prevenindo a execu\u00E7\u00E3o\nde controles ActiveX. Use as Op\u00E7\u00F5es de Internet sob\no menu Ferramentas e selecione a aba de Seguran\u00E7a ent\u00E3o pressione o\nbot\u00E3o N\u00EDvel Personalizado. Confira se as configura\u00E7\u00F5es para\n'Execu\u00E7\u00E3o de Controles ActiveX', e 'Comportamento de scripts e c\u00F3digos bin\u00E1rios'\nest\u00E3o ativadas.\n\nAtualmente voc\u00EA ver\u00E1 mensagens de erro em vez da \ndiagrama\u00E7\u00E3o das f\u00F3rmulas matem\u00E1ticas.", + CantCreateXMLParser: "O MathJax n\u00E3o pode criar um interpretador de XML para o MathML. Confira se\na configura\u00E7\u00E3o de seguran\u00E7a 'Controles de Script ActiveX marcados como seguros para scripting'\nest\u00E1 habilitado (use as Op\u00E7\u00F5es de Internet no menu \nFerramentas, e selecione o painel de Seguran\u00E7a, depois pressione o bot\u00E3o N\u00EDvel Personalizado\npara conferir isso).\n\nAs equa\u00E7\u00F5es em MathML n\u00E3o poder\u00E3o ser processadas pelo MathJax.", + UnknownNodeType: "Tipo de n\u00F3 desconhecido: %1", + UnexpectedTextNode: "N\u00F3 de texto inesperado: %1", + ErrorParsingMathML: "Erro ao interpretar MathML", + ParsingError: "Erro ao interpretar MathML: %1", + MathMLSingleElement: "MathML deve ser formado por um \u00FAnico elemento", + MathMLRootElement: "MathML deve ser formado por um elemento \u003Cmath\u003E, n\u00E3o %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt-br/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/pt-br/MathMenu.js b/modules/MathJax/unpacked/localization/pt-br/MathMenu.js new file mode 100644 index 0000000..b288cbd --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt-br/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt-br/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt-br","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Mostrar F\u00F3rmulas Como", + MathMLcode: "C\u00F3digo MathML", + OriginalMathML: "MathML original", + TeXCommands: "Comandos TeX", + AsciiMathInput: "Entrada AsciiMathML", + Original: "Formato original", + ErrorMessage: "Mensagem de erro", + Annotation: "Anota\u00E7\u00E3o", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "MathML do conte\u00FAdo", + OpenMath: "OpenMath", + texHints: "Mostrar dicas de TeX em MathML", + Settings: "Configura\u00E7\u00F5es das f\u00F3rmulas", + ZoomTrigger: "Disparador do zoom", + Hover: "Passar o mouse", + Click: "Clique", + DoubleClick: "Clique duplo", + NoZoom: "Sem zoom", + TriggerRequires: "O Disparador Requer:", + Option: "Op\u00E7\u00E3o", + Alt: "Alt", + Command: "Comando", + Control: "Control", + Shift: "Shift", + ZoomFactor: "Fator de zoom", + Renderer: "Renderizador das F\u00F3rmulas", + MPHandles: "Deixe que o MathPlayer resolva:", + MenuEvents: "Eventos de Menu", + MouseEvents: "Eventos de Mouse", + MenuAndMouse: "Eventos de Mouse e de Menu", + FontPrefs: "Prefer\u00EAncias de Fontes", + ForHTMLCSS: "Para HTML-CSS:", + Auto: "Autom\u00E1tico", + TeXLocal: "TeX (local)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (imagem)", + STIXLocal: "STIX (local)", + ContextMenu: "Menu de Contexto", + Browser: "Navegador", + Scale: "Redimensionar Todas as F\u00F3rmulas ...", + Discoverable: "Destacar ao Passar o Mouse", + Locale: "Idioma", + LoadLocale: "Carregar a partir de URL ...", + About: "Sobre o MathJax", + Help: "Ajuda do MathJax", + localTeXfonts: "usando fontes TeX locais", + webTeXfonts: "usando fontes TeX da web", + imagefonts: "usando fontes feitas com imagens", + localSTIXfonts: "usando fontes STIX", + webSVGfonts: "usando fontes SVG da web", + genericfonts: "usando fontes unicode gen\u00E9ricas", + wofforotffonts: "fontes woff ou otf", + eotffonts: "fontes eot", + svgfonts: "fontes svg", + WebkitNativeMMLWarning: "N\u00E3o parece haver suporte nativo a MathML em seu navegador, ent\u00E3o a mudan\u00E7a para MathML pode tornar ileg\u00EDveis as f\u00F3rmulas matem\u00E1ticas da p\u00E1gina.", + MSIENativeMMLWarning: "O Internet Explorer requer o plugin MathPlayer para processar MathML.", + OperaNativeMMLWarning: "O suporte a MathML no Opera \u00E9 limitado, ent\u00E3o a mudan\u00E7a para MathML pode piorar a renderiza\u00E7\u00E3o de algumas express\u00F5es.", + SafariNativeMMLWarning: "O suporte a MathML nativo do seu navegador n\u00E3o implementa todos os recursos usados pelo MathJax, ent\u00E3o algumas express\u00F5es podem n\u00E3o ser exibidas adequadamente.", + FirefoxNativeMMLWarning: "O suporte a MathML nativo do seu navegador n\u00E3o implementa todos os recursos usados pelo MathJax, ent\u00E3o algumas express\u00F5es podem n\u00E3o ser exibidas adequadamente.", + MSIESVGWarning: "N\u00E3o h\u00E1 uma implementa\u00E7\u00E3o de SVG nas vers\u00F5es do Internet Explorer anteriores ao IE9 ou quando ele est\u00E1 emulando o IE8 ou as vers\u00F5es anteriores. A mudan\u00E7a para SVG far\u00E1 com que as f\u00F3rmulas n\u00E3o sejam exibidas adequadamente.", + LoadURL: "Carregar os dados de tradu\u00E7\u00E3o a partir desta URL:", + BadURL: "A URL deve ser para um um arquivo de javascript que defina os dados de tradu\u00E7\u00E3o do MathJax. Os nomes dos arquivos de Javascript devem terminar com '.js'", + BadData: "Falha ao carregar os dados de tradu\u00E7\u00E3o de %1", + SwitchAnyway: "Mudar para este renderizador mesmo assim?\n\n(Pressione OK para mudar, CANCELAR para continuar com o renderizador atual)", + ScaleMath: "Redimensionar todas as f\u00F3rmulas matem\u00E1ticas (em rela\u00E7\u00E3o ao texto \u00E0 sua volta) em", + NonZeroScale: "A escala n\u00E3o deve ser zero", + PercentScale: "A escala deve ser uma porcentagem (por exemplo, 120%%)", + IE8warning: "Isto desabilitar\u00E1 o menu MathJax e os recursos de zoom, mas voc\u00EA poder\u00E1 usar Alt-Clique em uma express\u00E3o para obter o menu MathJax em vez disso.\n\nRealmente alterar as configura\u00E7\u00F5es do MathPlayer?", + IE9warning: "O menu de contexto do MathJax ser\u00E1 desabilitado, mas voc\u00EA pode usar Alt-Clique em uma express\u00E3o para obter o menu MathJax em vez disso.", + NoOriginalForm: "Sem uma forma original dispon\u00EDvel", + Close: "Fechar", + EqSource: "Fonte da Equa\u00E7\u00E3o do MathJax" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt-br/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/pt-br/TeX.js b/modules/MathJax/unpacked/localization/pt-br/TeX.js new file mode 100644 index 0000000..779b86b --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt-br/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt-br/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt-br","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Sobrou uma chave de abertura ou faltou uma de fechamento", + ExtraCloseMissingOpen: "Sobrou uma chave de fechamento ou faltou uma de abertura", + MissingLeftExtraRight: "Faltou um \\left ou sobrou um \\right", + MissingScript: "Faltou o argumento de um sobrescrito ou de um subscrito", + ExtraLeftMissingRight: "Sobrou um \\left ou faltou um \\right", + Misplaced: "%1 fora do lugar", + MissingOpenForSub: "Faltou uma chave de abertura para o subscrito", + MissingOpenForSup: "Faltou uma chave de abertura para o sobrescrito", + AmbiguousUseOf: "Uso amb\u00EDguo de %1", + EnvBadEnd: "\\begin{%1} foi terminado com \\end{%2}", + EnvMissingEnd: "Faltou \\end{%1}", + MissingBoxFor: "Faltou uma caixa para %1", + MissingCloseBrace: "Faltou uma chave de fechamento", + UndefinedControlSequence: "Sequ\u00EAncia de controle indefinida %1", + DoubleExponent: "Expoente duplo: utilize chaves para esclarecer", + DoubleSubscripts: "Subscrito duplo: utilize chaves para esclarecer", + DoubleExponentPrime: "Prime causa expoente duplo: utilize chaves para esclarecer", + CantUseHash1: "Voc\u00EA n\u00E3o pode usar o caractere # que indica um par\u00E2metro de macro no modo matem\u00E1tico", + MisplacedMiddle: "%1 deve estar entre \\left e \\right", + MisplacedLimits: "%1 s\u00F3 \u00E9 permitido nos operadores", + MisplacedMoveRoot: "%1 pode aparecer somente dentro de uma raiz", + MultipleCommand: "Repeti\u00E7\u00E3o de %1", + IntegerArg: "O argumento de %1 deve ser um inteiro", + NotMathMLToken: "%1 n\u00E3o \u00E9 um elemento de token", + InvalidMathMLAttr: "Atributo MathML inv\u00E1lido: %1", + UnknownAttrForElement: "%1 n\u00E3o \u00E9 um atributo reconhecido para %2", + MaxMacroSub1: "Foi excedido o m\u00E1ximo de substitui\u00E7\u00F5es de macros do MathJax; h\u00E1 alguma chamada a uma macro recursiva?", + MaxMacroSub2: "Foi excedido o m\u00E1ximo de substitui\u00E7\u00F5es do MathJax; h\u00E1 algum ambiente latex recursivo?", + MissingArgFor: "Faltou um argumento para %1", + ExtraAlignTab: "Sobrou um tab de alinhamento no texto de \\cases", + BracketMustBeDimension: "O argumento nos colchetes de %1 deve ser uma dimens\u00E3o", + InvalidEnv: "Nome de ambiente inv\u00E1lido '%1'", + UnknownEnv: "Ambiente desconhecido '%1'", + ExtraCloseLooking: "Sobrou uma chave de fechamento ao procurar por %1", + MissingCloseBracket: "N\u00E3o foi encontrado um ']' de fechamento para o argumento de %1", + MissingOrUnrecognizedDelim: "O delimitador para %1 est\u00E1 ausente ou n\u00E3o foi reconhecido", + MissingDimOrUnits: "Faltou a dimens\u00E3o ou a unidade de %1", + TokenNotFoundForCommand: "N\u00E3o foi encontrado %1 para %2", + MathNotTerminated: "A f\u00F3rmula n\u00E3o foi terminada na caixa de texto", + IllegalMacroParam: "Refer\u00EAncia inv\u00E1lida a um par\u00E2metro de macro", + MaxBufferSize: "O tamanho do buffer interno do MathJax foi excedido; h\u00E1 alguma chamada a uma macro recursiva?", + CommandNotAllowedInEnv: "%1 n\u00E3o \u00E9 permitido no ambiente %2", + MultipleLabel: "O r\u00F3tulo '%1' foi definido mais de uma vez", + CommandAtTheBeginingOfLine: "%1 deve vir no in\u00EDcio da linha", + IllegalAlign: "Foi especificado um alinhamento ilegal em %1", + BadMathStyleFor: "Estilo de f\u00F3rmulas matem\u00E1ticas ruim para %1", + PositiveIntegerArg: "O argumento para %1 deve ser um inteiro positivo", + ErroneousNestingEq: "Aninhamento incorreto de estruturas de equa\u00E7\u00F5es", + MultlineRowsOneCol: "As linhas do ambiente %1 devem ter apenas uma coluna", + MultipleBBoxProperty: "%1 foi especificado duas vezes em %2", + InvalidBBoxProperty: "'%1' n\u00E3o parece ser uma cor, uma dimens\u00E3o para padding, nem um estilo", + ExtraEndMissingBegin: "Sobrou um %1 ou faltou um \\begingroup", + GlobalNotFollowedBy: "%1 n\u00E3o foi seguido por um \\let, \\def, ou \\newcommand", + UndefinedColorModel: "O modelo de cores '%1' n\u00E3o foi definido", + ModelArg1: "Os valores de cor para o modelo %1 exigem 3 n\u00FAmeros", + InvalidDecimalNumber: "N\u00FAmero decimal inv\u00E1lido", + ModelArg2: "Os valores de cor para o modelo %1 devem estar entre %2 e %3", + InvalidNumber: "N\u00FAmero inv\u00E1lido", + NewextarrowArg1: "O primeiro argumento de %1 deve ser o nome de uma sequ\u00EAncia de controle", + NewextarrowArg2: "O segundo argumento de %1 deve ser composto de dois inteiros separados por uma v\u00EDrgula", + NewextarrowArg3: "O terceiro argumento de %1 deve ser o n\u00FAmero de um caractere unicode", + NoClosingChar: "N\u00E3o foi poss\u00EDvel encontrar um %1 de fechamento", + IllegalControlSequenceName: "Nome ilegal para uma sequ\u00EAncia de controle de %1", + IllegalParamNumber: "N\u00FAmero ilegal de par\u00E2metros especificado em %1", + MissingCS: "%1 deve ser seguido por uma sequ\u00EAncia de controle", + CantUseHash2: "Uso ilegal de # em um modelo para %1", + SequentialParam: "Os par\u00E2metros para %1 devem ser numerados sequencialmente", + MissingReplacementString: "Faltou a string de substitui\u00E7\u00E3o para a defini\u00E7\u00E3o de %1", + MismatchUseDef: "O uso de %1 n\u00E3o est\u00E1 de acordo com sua defini\u00E7\u00E3o", + RunawayArgument: "Argumento extra para %1?", + NoClosingDelim: "N\u00E3o foi encontrado um delimitador de fechamento para %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt-br/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/pt-br/pt-br.js b/modules/MathJax/unpacked/localization/pt-br/pt-br.js new file mode 100644 index 0000000..a894b69 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt-br/pt-br.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt-br/pt-br.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt-br",null,{ + menuTitle: "portugu\u00EAs do Brasil", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "O MathJax encontrou um cookie com configura\u00E7\u00F5es de usu\u00E1rio que inclui c\u00F3digo a ser executado. Deseja execut\u00E1-lo?\n\n(Voc\u00EA deve pressionar Cancelar a n\u00E3o ser que voc\u00EA mesmo tenha criado o cookie.)", + MathProcessingError: "Erro no Processamento das F\u00F3rmulas", + MathError: "Erro nas F\u00F3rmulas", + LoadFile: "Carregando %1", + Loading: "Carregando", + LoadFailed: "O arquivo n\u00E3o pode ser carregado: %1", + ProcessMath: "Processando F\u00F3rmula: %1%%", + Processing: "Processando", + TypesetMath: "Realizando a Diagrama\u00E7\u00E3o das F\u00F3rmulas: %1%%", + Typesetting: "Realizando a Diagrama\u00E7\u00E3o", + MathJaxNotSupported: "Seu navegador n\u00E3o suporta MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) {return 1} // one + return 2; // other + }, + number: function (n) { + return String(n).replace(".", ","); // replace dot by comma + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt-br/pt-br.js"); diff --git a/modules/MathJax/unpacked/localization/pt/FontWarnings.js b/modules/MathJax/unpacked/localization/pt/FontWarnings.js new file mode 100644 index 0000000..678cfb2 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "O MathJax est\u00E1 utilizando fontes baseadas em web para exibir as f\u00F3rmulas matem\u00E1ticas desta p\u00E1gina. O download delas leva algum tempo, ent\u00E3o a p\u00E1gina seria renderizada mais rapidamente se voc\u00EA instalasse as fontes para matem\u00E1tica diretamente na pasta de fontes do seu sistema.", + imageFonts: "O MathJax est\u00E1 utilizando fontes feitas com imagens em vez de fontes locais ou baseadas em web. Isso torna a renderiza\u00E7\u00E3o mais lenta do que o de costume, e as f\u00F3rmulas matem\u00E1ticas poder\u00E3o n\u00E3o ser impressas com a maior resolu\u00E7\u00E3o dispon\u00EDvel em sua impressora.", + noFonts: "O MathJax n\u00E3o foi capaz de localizar uma fonte para utilizar ao renderizar as f\u00F3rmulas matem\u00E1ticas, e n\u00E3o est\u00E3o dispon\u00EDveis fontes feitas com imagens, ent\u00E3o ser\u00E3o utilizados caracteres unicode gen\u00E9ricos com a esperan\u00E7a de que o seu navegador seja capaz de exib\u00ED-los. Alguns caracteres podem n\u00E3o aparecer como deveriam, ou simplesmente desaparecer.", + webFonts: "A maioria dos navegadores modernos permite que as fontes sejam baixadas a partir da web. Atualizar para uma vers\u00E3o mais recente do seu navegador (ou mudar de navegador) poderia melhorar a qualidade das f\u00F3rmulas matem\u00E1ticas desta p\u00E1gina.", + fonts: "O MathJax pode usar tanto [fontes STIX](%1) ou as [fontes MathJax TeX](%2). Baixe e instale uma destas fontes para melhorar sua experi\u00EAncia com o MathJax.", + STIXPage: "Esta p\u00E1gina foi projetada para utilizar [fontes STIX](%1). Baixe e instale estas fontes para melhorar sua experi\u00EAncia com o MathJax.", + TeXPage: "Esta p\u00E1gina foi projetada para utilizar [fontes MathJax TeX](%1). Baixe e instale estas fontes para melhorar sua experi\u00EAncia com o MathJax." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/pt/HTML-CSS.js b/modules/MathJax/unpacked/localization/pt/HTML-CSS.js new file mode 100644 index 0000000..9fe1182 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Carregando fonte baseada em web %1", + CantLoadWebFont: "N\u00E3o foi poss\u00EDvel carregar a fonte baseada em web %1", + FirefoxCantLoadWebFont: "O Firefox N\u00E3o pode carregar fontes baseadas em web a partir de um host remoto", + CantFindFontUsing: "N\u00E3o \u00E9 poss\u00EDvel encontrar uma fonte v\u00E1lida usando %1", + WebFontsNotAvailable: "Fontes baseadas em web n\u00E3o est\u00E3o dispon\u00EDveis -- usando fontes feitas com imagens em vez disso" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/pt/HelpDialog.js b/modules/MathJax/unpacked/localization/pt/HelpDialog.js new file mode 100644 index 0000000..fd7d71a --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "Ajuda do MathJax", + MathJax: "*MathJax* \u00E9 uma biblioteca em JavaScript que permite aos autores a inclus\u00E3o de conte\u00FAdo matem\u00E1tico em suas p\u00E1ginas web. Como um renderizador, voc\u00EA n\u00E3o precisa fazer qualquer coisa para que isso ocorra.", + Browsers: "*Navegadores*: O MathJax funciona em todos os navegadores modernos incluindo IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ e a maioria dos navegadores para dispositivos m\u00F3veis.", + Menu: "*Menu de F\u00F3rmulas*: O MathJax acrescenta um menu de contexto \u00E0s equa\u00E7\u00F5es. Clique com o bot\u00E3o direito ou pressione CTRL ao clicar em qualquer f\u00F3rmula matem\u00E1tica para acessar o menu.", + ShowMath: "*Mostrar F\u00F3rmulas Como* permite que visualize o c\u00F3digo da f\u00F3rmula para copiar e colar (como MathML ou em seu formato original).", + Settings: "*Configura\u00E7\u00F5es* oferecem a voc\u00EA o controle sobre os recursos do MathJax, tais como o tamanho das f\u00F3rmulas, e o mecanismo utilizado para exibir equa\u00E7\u00F5es.", + Language: "*Idioma* permite que escolha o idioma que o MathJax utiliza em seus menus e mensagens de aviso.", + Zoom: "*Zoom nas F\u00F3rmulas*: Se voc\u00EA tem dificuldade para ler uma equa\u00E7\u00E3o, o MathJax pode ampli\u00E1-la para ajud\u00E1-lo a visualiz\u00E1-la melhor.", + Accessibilty: "*Acessibilidade*: O MathJax funcionar\u00E1 automaticamente em leitores de tela para tornar as f\u00F3rmulas matem\u00E1ticas acess\u00EDveis aos que possuem problemas de vis\u00E3o.", + Fonts: "*Fontes*: O MathJax utilizar\u00E1 certas fontes para f\u00F3rmulas matem\u00E1ticas se elas estiverem instaladas no seu computador; caso contr\u00E1rio, ele utilizar\u00E1 fontes baseadas em web. Embora n\u00E3o seja obrigat\u00F3rio, o uso de fontes instaladas localmente acelerar\u00E1 a diagrama\u00E7\u00E3o. Sugerimos que instale [fontes STIX](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/pt/MathML.js b/modules/MathJax/unpacked/localization/pt/MathML.js new file mode 100644 index 0000000..ed53c26 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "Mglyph ruim: %1", + BadMglyphFont: "Fonte ruim: %1", + MathPlayer: "O MathJax n\u00E3o foi capaz de configurar o MathPlayer.\n\nSe o MathPlayer n\u00E3o estiver instalado, precisar\u00E1 instal\u00E1-lo primeiro.\nCaso contr\u00E1rio, suas configura\u00E7\u00F5es de seguran\u00E7a podem estar prevenindo a execu\u00E7\u00E3o\nde controles ActiveX. Use as Op\u00E7\u00F5es de Internet sob\no menu Ferramentas e selecione a aba de Seguran\u00E7a ent\u00E3o pressione o\nbot\u00E3o N\u00EDvel Personalizado. Confira se as configura\u00E7\u00F5es para\n'Execu\u00E7\u00E3o de Controles ActiveX', e 'Comportamento de scripts e c\u00F3digos bin\u00E1rios'\nest\u00E3o ativadas.\n\nAtualmente voc\u00EA ver\u00E1 mensagens de erro em vez da \ndiagrama\u00E7\u00E3o das f\u00F3rmulas matem\u00E1ticas.", + CantCreateXMLParser: "O MathJax n\u00E3o pode criar um interpretador de XML para o MathML. Confira se\na configura\u00E7\u00E3o de seguran\u00E7a 'Controles de Script ActiveX marcados como seguros para scripting'\nest\u00E1 habilitado (use as Op\u00E7\u00F5es de Internet no menu \nFerramentas, e selecione o painel de Seguran\u00E7a, depois pressione o bot\u00E3o N\u00EDvel Personalizado\npara conferir isso).\n\nAs equa\u00E7\u00F5es em MathML n\u00E3o poder\u00E3o ser processadas pelo MathJax.", + UnknownNodeType: "Tipo de n\u00F3 desconhecido: %1", + UnexpectedTextNode: "N\u00F3 de texto inesperado: %1", + ErrorParsingMathML: "Erro ao interpretar MathML", + ParsingError: "Erro ao interpretar MathML: %1", + MathMLSingleElement: "MathML deve ser formado por um \u00FAnico elemento", + MathMLRootElement: "MathML deve ser formado por um elemento \u003Cmath\u003E, n\u00E3o %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/pt/MathMenu.js b/modules/MathJax/unpacked/localization/pt/MathMenu.js new file mode 100644 index 0000000..15cf294 --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Mostrar F\u00F3rmulas Como", + MathMLcode: "C\u00F3digo MathML", + OriginalMathML: "MathML original", + TeXCommands: "Comandos TeX", + AsciiMathInput: "Entrada AsciiMathML", + Original: "Formato original", + ErrorMessage: "Mensagem de erro", + Annotation: "Anota\u00E7\u00E3o", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "MathML do conte\u00FAdo", + OpenMath: "OpenMath", + texHints: "Mostrar dicas de TeX em MathML", + Settings: "Configura\u00E7\u00F5es das f\u00F3rmulas", + ZoomTrigger: "Disparador do zoom", + Hover: "Passar o mouse", + Click: "Clique", + DoubleClick: "Clique duplo", + NoZoom: "Sem zoom", + TriggerRequires: "O Disparador Requer:", + Option: "Op\u00E7\u00E3o", + Alt: "Alt", + Command: "Comando", + Control: "Control", + Shift: "Shift", + ZoomFactor: "Fator de zoom", + Renderer: "Renderizador das F\u00F3rmulas", + MPHandles: "Deixe que o MathPlayer resolva:", + MenuEvents: "Eventos de Menu", + MouseEvents: "Eventos de Mouse", + MenuAndMouse: "Eventos de Mouse e de Menu", + FontPrefs: "Prefer\u00EAncias de Fontes", + ForHTMLCSS: "Para HTML-CSS:", + Auto: "Autom\u00E1tico", + TeXLocal: "TeX (local)", + TeXWeb: "TeX (web)", + TeXImage: "TeX (imagem)", + STIXLocal: "STIX (local)", + ContextMenu: "Menu de Contexto", + Browser: "Navegador", + Scale: "Redimensionar Todas as F\u00F3rmulas ...", + Discoverable: "Destacar ao Passar o Mouse", + Locale: "Idioma", + LoadLocale: "Carregar a partir de URL ...", + About: "Sobre o MathJax", + Help: "Ajuda do MathJax", + localTeXfonts: "usando fontes TeX locais", + webTeXfonts: "usando fontes TeX da web", + imagefonts: "usando fontes feitas com imagens", + localSTIXfonts: "usando fontes STIX", + webSVGfonts: "usando fontes SVG da web", + genericfonts: "usando fontes unicode gen\u00E9ricas", + wofforotffonts: "fontes woff ou otf", + eotffonts: "fontes eot", + svgfonts: "fontes svg", + WebkitNativeMMLWarning: "N\u00E3o parece haver suporte nativo a MathML em seu navegador, ent\u00E3o a mudan\u00E7a para MathML pode tornar ileg\u00EDveis as f\u00F3rmulas matem\u00E1ticas da p\u00E1gina.", + MSIENativeMMLWarning: "O Internet Explorer requer o plugin MathPlayer para processar MathML.", + OperaNativeMMLWarning: "O suporte a MathML no Opera \u00E9 limitado, ent\u00E3o a mudan\u00E7a para MathML pode piorar a renderiza\u00E7\u00E3o de algumas express\u00F5es.", + SafariNativeMMLWarning: "O suporte a MathML nativo do seu navegador n\u00E3o implementa todos os recursos usados pelo MathJax, ent\u00E3o algumas express\u00F5es podem n\u00E3o ser exibidas adequadamente.", + FirefoxNativeMMLWarning: "O suporte a MathML nativo do seu navegador n\u00E3o implementa todos os recursos usados pelo MathJax, ent\u00E3o algumas express\u00F5es podem n\u00E3o ser exibidas adequadamente.", + MSIESVGWarning: "N\u00E3o h\u00E1 uma implementa\u00E7\u00E3o de SVG nas vers\u00F5es do Internet Explorer anteriores ao IE9 ou quando ele est\u00E1 emulando o IE8 ou as vers\u00F5es anteriores. A mudan\u00E7a para SVG far\u00E1 com que as f\u00F3rmulas n\u00E3o sejam exibidas adequadamente.", + LoadURL: "Carregar os dados de tradu\u00E7\u00E3o a partir desta URL:", + BadURL: "A URL deve ser para um um arquivo de javascript que defina os dados de tradu\u00E7\u00E3o do MathJax. Os nomes dos arquivos de Javascript devem terminar com '.js'", + BadData: "Falha ao carregar os dados de tradu\u00E7\u00E3o de %1", + SwitchAnyway: "Mudar para este renderizador mesmo assim?\n\n(Pressione OK para mudar, CANCELAR para continuar com o renderizador atual)", + ScaleMath: "Redimensionar todas as f\u00F3rmulas matem\u00E1ticas (em rela\u00E7\u00E3o ao texto \u00E0 sua volta) em", + NonZeroScale: "A escala n\u00E3o deve ser zero", + PercentScale: "A escala deve ser uma porcentagem (por exemplo, 120%%)", + IE8warning: "Isto desabilitar\u00E1 o menu MathJax e os recursos de zoom, mas voc\u00EA poder\u00E1 usar Alt-Clique em uma express\u00E3o para obter o menu MathJax em vez disso.\n\nRealmente alterar as configura\u00E7\u00F5es do MathPlayer?", + IE9warning: "O menu de contexto do MathJax ser\u00E1 desabilitado, mas voc\u00EA pode usar Alt-Clique em uma express\u00E3o para obter o menu MathJax em vez disso.", + NoOriginalForm: "Sem uma forma original dispon\u00EDvel", + Close: "Fechar", + EqSource: "Fonte da Equa\u00E7\u00E3o do MathJax" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/pt/TeX.js b/modules/MathJax/unpacked/localization/pt/TeX.js new file mode 100644 index 0000000..011942c --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Sobrou uma chave de abertura ou faltou uma de fechamento", + ExtraCloseMissingOpen: "Sobrou uma chave de fechamento ou faltou uma de abertura", + MissingLeftExtraRight: "Faltou um \\left ou sobrou um \\right", + MissingScript: "Faltou o argumento de um sobrescrito ou de um subscrito", + ExtraLeftMissingRight: "Sobrou um \\left ou faltou um \\right", + Misplaced: "%1 fora do lugar", + MissingOpenForSub: "Faltou uma chave de abertura para o subscrito", + MissingOpenForSup: "Faltou uma chave de abertura para o sobrescrito", + AmbiguousUseOf: "Uso amb\u00EDguo de %1", + EnvBadEnd: "\\begin{%1} foi terminado com \\end{%2}", + EnvMissingEnd: "Faltou \\end{%1}", + MissingBoxFor: "Faltou uma caixa para %1", + MissingCloseBrace: "Faltou uma chave de fechamento", + UndefinedControlSequence: "Sequ\u00EAncia de controle indefinida %1", + DoubleExponent: "Expoente duplo: utilize chaves para esclarecer", + DoubleSubscripts: "Subscrito duplo: utilize chaves para esclarecer", + DoubleExponentPrime: "Prime causa expoente duplo: utilize chaves para esclarecer", + CantUseHash1: "Voc\u00EA n\u00E3o pode usar o caractere # que indica um par\u00E2metro de macro no modo matem\u00E1tico", + MisplacedMiddle: "%1 deve estar entre \\left e \\right", + MisplacedLimits: "%1 s\u00F3 \u00E9 permitido nos operadores", + MisplacedMoveRoot: "%1 pode aparecer somente dentro de uma raiz", + MultipleCommand: "Repeti\u00E7\u00E3o de %1", + IntegerArg: "O argumento de %1 deve ser um inteiro", + NotMathMLToken: "%1 n\u00E3o \u00E9 um elemento de token", + InvalidMathMLAttr: "Atributo MathML inv\u00E1lido: %1", + UnknownAttrForElement: "%1 n\u00E3o \u00E9 um atributo reconhecido para %2", + MaxMacroSub1: "Foi excedido o m\u00E1ximo de substitui\u00E7\u00F5es de macros do MathJax; h\u00E1 alguma chamada a uma macro recursiva?", + MaxMacroSub2: "Foi excedido o m\u00E1ximo de substitui\u00E7\u00F5es do MathJax; h\u00E1 algum ambiente latex recursivo?", + MissingArgFor: "Faltou um argumento para %1", + ExtraAlignTab: "Sobrou um tab de alinhamento no texto de \\cases", + BracketMustBeDimension: "O argumento nos colchetes de %1 deve ser uma dimens\u00E3o", + InvalidEnv: "Nome de ambiente inv\u00E1lido '%1'", + UnknownEnv: "Ambiente desconhecido '%1'", + ExtraCloseLooking: "Sobrou uma chave de fechamento ao procurar por %1", + MissingCloseBracket: "N\u00E3o foi encontrado um ']' de fechamento para o argumento de %1", + MissingOrUnrecognizedDelim: "O delimitador para %1 est\u00E1 ausente ou n\u00E3o foi reconhecido", + MissingDimOrUnits: "Faltou a dimens\u00E3o ou a unidade de %1", + TokenNotFoundForCommand: "N\u00E3o foi encontrado %1 para %2", + MathNotTerminated: "A f\u00F3rmula n\u00E3o foi terminada na caixa de texto", + IllegalMacroParam: "Refer\u00EAncia inv\u00E1lida a um par\u00E2metro de macro", + MaxBufferSize: "O tamanho do buffer interno do MathJax foi excedido; h\u00E1 alguma chamada a uma macro recursiva?", + CommandNotAllowedInEnv: "%1 n\u00E3o \u00E9 permitido no ambiente %2", + MultipleLabel: "O r\u00F3tulo '%1' foi definido mais de uma vez", + CommandAtTheBeginingOfLine: "%1 deve vir no in\u00EDcio da linha", + IllegalAlign: "Foi especificado um alinhamento ilegal em %1", + BadMathStyleFor: "Estilo de f\u00F3rmulas matem\u00E1ticas ruim para %1", + PositiveIntegerArg: "O argumento para %1 deve ser um inteiro positivo", + ErroneousNestingEq: "Aninhamento incorreto de estruturas de equa\u00E7\u00F5es", + MultlineRowsOneCol: "As linhas do ambiente %1 devem ter apenas uma coluna", + MultipleBBoxProperty: "%1 foi especificado duas vezes em %2", + InvalidBBoxProperty: "'%1' n\u00E3o parece ser uma cor, uma dimens\u00E3o para padding, nem um estilo", + ExtraEndMissingBegin: "Sobrou um %1 ou faltou um \\begingroup", + GlobalNotFollowedBy: "%1 n\u00E3o foi seguido por um \\let, \\def, ou \\newcommand", + UndefinedColorModel: "O modelo de cores '%1' n\u00E3o foi definido", + ModelArg1: "Os valores de cor para o modelo %1 exigem 3 n\u00FAmeros", + InvalidDecimalNumber: "N\u00FAmero decimal inv\u00E1lido", + ModelArg2: "Os valores de cor para o modelo %1 devem estar entre %2 e %3", + InvalidNumber: "N\u00FAmero inv\u00E1lido", + NewextarrowArg1: "O primeiro argumento de %1 deve ser o nome de uma sequ\u00EAncia de controle", + NewextarrowArg2: "O segundo argumento de %1 deve ser composto de dois inteiros separados por uma v\u00EDrgula", + NewextarrowArg3: "O terceiro argumento de %1 deve ser o n\u00FAmero de um caractere unicode", + NoClosingChar: "N\u00E3o foi poss\u00EDvel encontrar um %1 de fechamento", + IllegalControlSequenceName: "Nome ilegal para uma sequ\u00EAncia de controle de %1", + IllegalParamNumber: "N\u00FAmero ilegal de par\u00E2metros especificado em %1", + MissingCS: "%1 deve ser seguido por uma sequ\u00EAncia de controle", + CantUseHash2: "Uso ilegal de # em um modelo para %1", + SequentialParam: "Os par\u00E2metros para %1 devem ser numerados sequencialmente", + MissingReplacementString: "Faltou a string de substitui\u00E7\u00E3o para a defini\u00E7\u00E3o de %1", + MismatchUseDef: "O uso de %1 n\u00E3o est\u00E1 de acordo com sua defini\u00E7\u00E3o", + RunawayArgument: "Argumento extra para %1?", + NoClosingDelim: "N\u00E3o foi encontrado um delimitador de fechamento para %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/pt/pt.js b/modules/MathJax/unpacked/localization/pt/pt.js new file mode 100644 index 0000000..111837b --- /dev/null +++ b/modules/MathJax/unpacked/localization/pt/pt.js @@ -0,0 +1,62 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/pt/pt.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("pt",null,{ + menuTitle: "portugus\u00EA", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "O MathJax encontrou um cookie com configura\u00E7\u00F5es de utilizador que inclui c\u00F3digo a ser executado. Deseja execut\u00E1-lo?\n\n(Escolha Cancelar a n\u00E3o ser que voc\u00EA mesmo tenha criado o cookie.)", + MathProcessingError: "Erro no processamento das f\u00F3rmulas", + MathError: "Erro de matem\u00E1tica", + LoadFile: "A carregar %1", + Loading: "A carregar", + LoadFailed: "O ficheiro n\u00E3o pode ser carregado: %1", + ProcessMath: "Processando f\u00F3rmula: %1%%", + Processing: "Processando", + TypesetMath: "Formatando f\u00F3rmulas: %1%%", + Typesetting: "Formatando", + MathJaxNotSupported: "O seu navegador n\u00E3o suporta MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) {return 1} // one + return 2; // other + }, + number: function (n) { + return String(n).replace(".", ","); // replace dot by comma + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/pt/pt.js"); diff --git a/modules/MathJax/unpacked/localization/qqq/FontWarnings.js b/modules/MathJax/unpacked/localization/qqq/FontWarnings.js new file mode 100644 index 0000000..42e6b92 --- /dev/null +++ b/modules/MathJax/unpacked/localization/qqq/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/qqq/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("qqq","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "This warning is displayed by the FontWarnings extension when web-based fonts are used.", + imageFonts: "This warning is displayed by the FontWarnings extension when image fonts are used.", + noFonts: "This warning is displayed by the FontWarnings extension when no fonts can be used.", + webFonts: "This warning is displayed by the FontWarnings extension when the browser do not support web fonts", + fonts: "{{doc-markdown}}\nThis warning is displayed by the FontWarnings extension when the HTML-CSS availableFonts list contains both STIX and TeX.\n\nParameters:\n* %1 - URL\n* %2 - URL\nSee also:\n* {{msg-mathjax|Fontwarnings-TeXPage}}", + STIXPage: "{{doc-markdown}}\nThis warning is displayed by the FontWarnings extension when the HTML-CSS availableFonts list contains only STIX.\n\nParameters:\n* %1 - URL", + TeXPage: "{{doc-markdown}}\nThis warning is displayed by the FontWarnings extension when the HTML-CSS availableFonts list contains only TeX.\n\nParameters:\n* %1 - URL\nSee also:\n* {{msg-mathjax|Fontwarnings-fonts}}" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/qqq/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/qqq/HTML-CSS.js b/modules/MathJax/unpacked/localization/qqq/HTML-CSS.js new file mode 100644 index 0000000..2dbc920 --- /dev/null +++ b/modules/MathJax/unpacked/localization/qqq/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/qqq/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("qqq","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "This is displayed in MathJax message box when the HTML-CSS output is loading a Web font.\n\nParameters:\n* %1 - the font name", + CantLoadWebFont: "This is displayed in MathJax message box when the HTML-CSS output fails to load a Web font. The first argument is the font name", + FirefoxCantLoadWebFont: "This is displayed in MathJax message box when the HTML-CSS output fails to load a Web font in Firefox", + CantFindFontUsing: "This is displayed in MathJax message box when the HTML-CSS output fails to load a Web font from a given list.\n\nParameters:\n* %1 - a list of fonts tried, comma-separated", + WebFontsNotAvailable: "This is displayed in MathJax message box when the HTML-CSS fails to load Web fonts" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/qqq/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/qqq/HelpDialog.js b/modules/MathJax/unpacked/localization/qqq/HelpDialog.js new file mode 100644 index 0000000..9cdbdc4 --- /dev/null +++ b/modules/MathJax/unpacked/localization/qqq/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/qqq/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("qqq","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "This is the title displayed at the top of the MathJax Help dialog.", + MathJax: "First paragraph of the MathJax Help dialog.\n\nStars around 'MathJax' is the Markdown syntax to put it in emphasis.", + Browsers: "Second paragraph of the MathJax Help dialog.\n\nStars around 'Browsers' is the Markdown syntax to put it in emphasis.", + Menu: "Third paragraph of the MathJax Help dialog.\n\nStars around 'Math Menu' the Markdown syntax to put it in emphasis.\n\n\"CTRL\" refers to \"Ctrl key\" (\"Control key\").", + ShowMath: "First item of the the 'Math Menu' paragraph.\n\nStars around 'Show math as' is the Markdown syntax to put it in emphasis.\n\n'Show Math as' should be consistent with {{msg-mathjax|Mathmenu-Show}}.", + Settings: "Second item of the the 'Math Menu' paragraph.\n\nStars around 'Settings' is the Markdown syntax to put it in emphasis.\n\n'Settings' should be consistent with {{msg-mathjax|Mathmenu-Settings}}.", + Language: "Third item of the the 'Math Menu' paragraph.\n\nStars around 'Language' is the Markdown syntax to put it in emphasis.\n\n'Language' should be consistent with {{msg-mathjax|Mathmenu-Locale}}.", + Zoom: "Fourth paragraph of the MathJax Help dialog.\n\nStars around 'Math Zoom' is the Markdown syntax to put it in emphasis.\n\n'Math Zoom' should be consistent with {{msg-mathjax|Mathmenu-ZoomTrigger}} and {{msg-mathjax|Mathmenu-ZoomFactor}}.", + Accessibilty: "Fifth paragraph of the MathJax Help dialog.\n\nStars around 'Accessibility' is the Markdown syntax to put it in emphasis.", + Fonts: "{{doc-markdown}}\nSixth paragraph of the MathJax Help dialog.\n\nStars around 'Fonts' is the Markdown syntax to put it in emphasis.\n\n\u003Ccode\u003E[STIX fonts](%1)\u003C/code\u003E is the Markdown syntax for links.\n\nParameters:\n* %1 - a URL the STIX fonts" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/qqq/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/qqq/MathML.js b/modules/MathJax/unpacked/localization/qqq/MathML.js new file mode 100644 index 0000000..9509af9 --- /dev/null +++ b/modules/MathJax/unpacked/localization/qqq/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/qqq/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("qqq","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "This error is displayed when processing a MathML mglyph element with a bad URL. Parameters:\n* %1 - the value of the src attribute", + BadMglyphFont: "Parameters:\n* %1 - font family", + MathPlayer: "This alert is displayed when the Native MathML output Jax fails to set up MathPlayer.\n\nThe new line character is used to force new lines in the alert box.", + CantCreateXMLParser: "This alert is displayed when the MathML input Jax fails to create an XML parser.\n\nThe new line character is used to force new lines in the alert box.", + UnknownNodeType: "Used as error message. Parameters:\n* %1 - node type", + UnexpectedTextNode: "Used as error message. Parameters:\n* %1 - text, enclosed in \"'\"", + ErrorParsingMathML: "This error is displayed when a MathML element fails to be parsed.\n\nIt can only be produced by old versions of Internet Explorer.", + ParsingError: "This error is displayed when an XML parsing error happens.\n\nThe argument is the error returned by the XML parser.", + MathMLSingleElement: "This error is displayed when a MathML input Jax contains more than one \u003Ccode\u003E\u003Cnowiki\u003E\u003Cmath\u003E\u003C/nowiki\u003E\u003C/code\u003E root.\n\nIt can only be produced by very old browsers.", + MathMLRootElement: "This error is displayed when a MathML input Jax contains a root other than \u003Ccode\u003E\u003Cnowiki\u003E\u003Cmath\u003E\u003C/nowiki\u003E\u003C/code\u003E.\n\nParameters:\n* %1 - the root name" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/qqq/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/qqq/MathMenu.js b/modules/MathJax/unpacked/localization/qqq/MathMenu.js new file mode 100644 index 0000000..5624ae1 --- /dev/null +++ b/modules/MathJax/unpacked/localization/qqq/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/qqq/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("qqq","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "'Show math as' menu item. MathJax uses 'Math' as a distinct UI choice. Please translate it literally whenever possible.\n\nFollowed by the following menu subitems:\n* {{msg-mathjax|Mathmenu-MathMLcode}}\n* {{msg-mathjax|Mathmenu-Original}}\n* {{msg-mathjax|Mathmenu-Annotation}}\n* {{msg-mathjax|Mathmenu-texHints}} - checkbox label", + MathMLcode: "This menu item from 'Show math as' shows the MathML code that MathJax has produced internally (sanitized, indented etc.)\n\nThe parent menu item is {{msg-mathjax|Mathmenu-Show}}.", + OriginalMathML: "This menu item from 'Show math as' shows the MathML code if that was originally in the page source", + TeXCommands: "This menu item from 'Show math as' shows the TeX code if that was originally in the page source", + AsciiMathInput: "This menu item from 'Show math as' shows the asciimath code if that was originally in the page source", + Original: "This menu item from 'Show math as' shows the code that was originally in the page source but has no registered type.\n\nThis can happen when extensions add new input formats but fail to provide an adequate format name.\n\nThe parent menu item is {{msg-mathjax|Mathmenu-Show}}.", + ErrorMessage: "This menu item from 'Show math as' shows the error message if MathJax fails to process the source.\n{{Identical|Error message}}", + Annotation: "This menu item from 'Show math as' allows to access possible annotations attached to a MathML formula.\n{{Identical|Annotation}}", + TeX: "This is a menu item from the 'Annotation Menu' to show a TeX annotation.", + StarMath: "This is a menu item from the 'Annotation Menu' to show a StarMath annotation (StarOffice, OpenOffice, LibreOffice).\n\nProgramming language used in MathJax.", + Maple: "This is a menu item from the 'Annotation Menu' to show a Maple annotation.", + ContentMathML: "This is a menu item from the 'Annotation Menu' to show a Content MathML annotation.\n\nThe MathML specification defines two versions: 'presentation' MathML (used in MathJax) and 'content' MathML (describes the semantics of the formula).", + OpenMath: "This is a menu item from the 'Annotation Menu' to show the OpenMath annotation, an XML representation similar to Content MathML.", + texHints: "This menu option from 'Show math as' adds comments to the code produced by 'MathMLCode'.\n\nUsed as checkbox label in the menu.", + Settings: "'Math settings' menu item.", + ZoomTrigger: "This menu from 'Math Settings' determines how MathJax's zoom is triggered.\n\nFollowed by the following menu items:\n* {{msg-mathjax|Mathmenu-Hover}}\n* {{msg-mathjax|Mathmenu-Click}}\n* {{msg-mathjax|Mathmenu-DoubleClick}}\n* {{msg-mathjax|Mathmenu-NoZoom}}\n* {{msg-mathjax|Mathmenu-TriggerRequires}} - label for the following checkboxes\n* {{msg-mathjax|Mathmenu-Option}} - checkbox label, for Mac\n* {{msg-mathjax|Mathmenu-Alt}} - checkbox label, for Windows\n* {{msg-mathjax|Mathmenu-Command}} - checkbox label, for Mac\n* {{msg-mathjax|Mathmenu-Control}} - checkbox label, for non-mac\n* {{msg-mathjax|Mathmenu-Shift}} - checkbox label", + Hover: "This menu option from 'ZoomTrigger' indicates that the zoom is triggered when the mouse pass over a formula.", + Click: "This menu option from 'ZoomTrigger' indicates that the zoom is triggered when one clicks on a formula.\n{{Identical|Click}}", + DoubleClick: "This menu option from 'ZoomTrigger' indicates that the zoom is triggered when one double-clicks on a formula.", + NoZoom: "This menu option from 'ZoomTrigger' indicates that the zoom is never triggered.", + TriggerRequires: "This menu text from 'ZoomTrigger' describes if the ZoomTrigger requires additional keys.\n\nThe label is followed by the following menu items:\n* {{msg-mathjax|Mathmenu-Option}} - checkbox label, for Mac\n* {{msg-mathjax|Mathmenu-Alt}} - checkbox label, for Windows\n* {{msg-mathjax|Mathmenu-Command}} - checkbox label, for Mac\n* {{msg-mathjax|Mathmenu-Control}} - checkbox label, for non-Mac\n* {{msg-mathjax|Mathmenu-Shift}} - checkbox label", + Option: "This menu option from 'ZoomTrigger' indicates that the OPTION key is needed (Apple-style).\n{{Identical|Options}}", + Alt: "This menu option from 'ZoomTrigger' indicates that the ALT key is needed (Windows-style)", + Command: "This menu option from 'ZoomTrigger' indicates that the COMMAND key is needed (Apple-style)", + Control: "This menu option from 'ZoomTrigger' indicates that the CONTROL key is needed\n\n\"Control key\" is also known as \"Ctrl key\".", + Shift: "This menu option from 'ZoomTrigger' indicates that the SHIFT key is needed", + ZoomFactor: "Used as menu item which has the following sub menu items: 125%%, 133%%, 150%%, 175%%, 200%%, 250%%, 300%%, 400%%", + Renderer: "Used as menu item which has the following sub menu items:\n* HTML-CSS\n* MathML\n* SVG", + MPHandles: "Used as label in the menu.\n\nFollowed by the following menu items:\n* {{msg-mathjax|Mathmenu-MenuEvents}}\n* {{msg-mathjax|Mathmenu-MouseEvents}}\n* {{msg-mathjax|Mathmenu-MenuAndMouse}}", + MenuEvents: "Option to let MathPlayer handle the contextual menu selections", + MouseEvents: "Option to let MathPlayer handle the mouse clicks", + MenuAndMouse: "Option to let MathPlayer handle Mouse and Menu Events", + FontPrefs: "This menu item from 'Math Settings' allows selection of the font to use (and is mostly for development purposes) e.g. STIX", + ForHTMLCSS: "Used as label in the menu.\n\nFollowed by the following radio box label:\n* {{msg-mathjax|Mathmenu-Auto}}", + Auto: "{{Identical|Automatic}}", + TeXLocal: "Used as label for the radio box in the menu.", + TeXWeb: "Used as label for the radio box in the menu.", + TeXImage: "Used as label for the radio box in the menu.", + STIXLocal: "Used as label for the radio box in the menu.", + ContextMenu: "Used as menu item.\n\nFollowed by the following sub menu items:\n* MathJax - radio box label\n* {{msg-mathjax|Mathmenu-Browser}} - radio box label", + Browser: "Used as menu item.\n\nThe parent menu item is {{msg-mathjax|Mathmenu-ContextMenu}}.", + Scale: "This menu item from 'Math Settings' allows users to set a scaling factor for the MathJax output (relative to the surrounding content).", + Discoverable: "This menu option indicates whether the formulas should be highlighted when you pass the mouse over them.\n\nUsed as checkbox label in the menu.", + Locale: "This menu item from 'Math Settings' allows to select a language. The language names are specified by the 'menuTitle' properties.\n\nThis menu item has the following sub menu items:\n* en\n* {{msg-mathjax|Mathmenu-LoadLocale}}\n{{Identical|Language}}", + LoadLocale: "This allows the user to load the translation from a given URL.\n\nUsed as the menu item which has the parent menu item {{msg-mathjax|Mathmenu-Locale}}.", + About: "This opens the 'About MathJax' popup.\n\nUsed as menu item.", + Help: "This opens the 'MathJax Help' popup", + localTeXfonts: "This is from the 'About MathJax' popup and is displayed when MathJax uses local MathJax TeX fonts.\n{{Related|Mathmenu-using}}", + webTeXfonts: "This is from the 'About MathJax' popup and is displayed when MathJax uses Web versions of MathJax TeX fonts.\n{{Related|Mathmenu-using}}", + imagefonts: "This is from the 'About MathJax' popup and is displayed when MathJax uses Image versions of MathJax TeX fonts.\n{{Related|Mathmenu-using}}", + localSTIXfonts: "This is from the 'About MathJax' popup and is displayed when MathJax uses local MathJax STIX fonts.\n{{Related|Mathmenu-using}}", + webSVGfonts: "This is from the 'About MathJax' popup and is displayed when MathJax uses SVG MathJax TeX fonts.\n{{Related|Mathmenu-using}}", + genericfonts: "This is from the 'About MathJax' popup and is displayed when MathJax uses local generic fonts.\n{{Related|Mathmenu-using}}", + wofforotffonts: "This is from the 'About MathJax' popup. woff/otf are names of font formats", + eotffonts: "This is from the 'About MathJax' popup. eot is a name of font format", + svgfonts: "This is from the 'About MathJax' popup. svg is a name of font format", + WebkitNativeMMLWarning: "This is the WebKit warning displayed when a user changes the rendering output to native MathML via the MathJax menu.", + MSIENativeMMLWarning: "This is the IE warning displayed when a user changes the rendering output to native MathML via the MathJax menu and does not have MathPlayer installed.", + OperaNativeMMLWarning: "This is the Opera warning displayed when a user changes the rendering output to native MathML via the MathJax menu.", + SafariNativeMMLWarning: "This is the Safari warning displayed when a user changes the rendering output to native MathML via the MathJax menu.", + FirefoxNativeMMLWarning: "This is the Firefox warning displayed when a user changes the rendering output to native MathML via the MathJax menu.", + MSIESVGWarning: "This is the IE warning displayed when a user changes the rendering output to SVG via the MathJax menu and uses an versions of IE.", + SwitchAnyway: "This is appended at the end of switch warnings.\n\nUsed for JavaScript \u003Ccode\u003Econfirm()\u003C/code\u003E.", + LoadURL: "This is the prompt message for the 'LoadLocale' menu entry", + BadURL: "This is the alert message when a bad URL is specified for 'LoadLocale'.", + BadData: "This is the alert message when the translation data specified 'LoadLocale' fails to be loaded. The argument is the URL specified.", + ScaleMath: "This is the prompt message for the 'Scale all math' menu entry.\n\nUsed for JavaScript \u003Ccode\u003Eprompt()\u003C/code\u003E.", + NonZeroScale: "This is the alert message when the scale specified to 'ScaleMath' is zero", + PercentScale: "This is the alert message when the scale specified to 'ScaleMath' is not a percentage", + IE8warning: "This this the confirm message displayed for when the user chooses to let MathPlayer control the contextual menu (IE8)", + IE9warning: "This this the alert message displayed for when the user chooses to let MathPlayer control the contextual menu (IE9)", + NoOriginalForm: "This is the alert box displayed when there are missing source formats for 'Show math as'", + Close: "Closing button in the 'Show math as' window.\n{{Identical|Close}}", + EqSource: "This is the title of the 'Show math as' button.\n\nUsed in the \u003Ccode\u003E\u003Cnowiki\u003E\u003Ctitle\u003E\u003C/nowiki\u003E\u003C/code\u003E tag of the new window." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/qqq/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/qqq/TeX.js b/modules/MathJax/unpacked/localization/qqq/TeX.js new file mode 100644 index 0000000..43ecf5c --- /dev/null +++ b/modules/MathJax/unpacked/localization/qqq/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/qqq/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("qqq","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "This appears in TeX expressions when open and close braces do not match e.g. \u003Ccode\u003E\\( { \\)\u003C/code\u003E\n\nSee also:\n* {{msg-mathjax|Tex-ExtraCloseMissingOpen}}", + ExtraCloseMissingOpen: "This appears in TeX expressions when open and close braces do not match e.g. \u003Ccode\u003E\\( } \\)\u003C/code\u003E\n\nSee also:\n* {{msg-mathjax|Tex-ExtraOpenMissingClose}}", + MissingLeftExtraRight: "{{doc-important|Do not translate \u003Ccode\u003E\\left\u003C/code\u003E and \u003Ccode\u003E\\right\u003C/code\u003E; they are TeX commands.}}\nThis appears in TeX expressions when \u003Ccode\u003Eleft\u003C/code\u003E/\u003Ccode\u003Eright\u003C/code\u003E commands do no match e.g. \u003Ccode\u003E\\( \\right) \\)\u003C/code\u003E", + MissingScript: "This appears in TeX expressions when a superscript or subscript is missing e.g. \u003Ccode\u003Ea^2\u003C/code\u003E or \u003Ccode\u003Ea_2\u003C/code\u003E.", + ExtraLeftMissingRight: "{{doc-important|Do not translate \u003Ccode\u003E\\left\u003C/code\u003E and \u003Ccode\u003E\\right\u003C/code\u003E; they are TeX commands.}}\nThis appears in TeX expressions when \u003Ccode\u003Eleft\u003C/code\u003E/\u003Ccode\u003Eright\u003C/code\u003E commands do no match e.g. \u003Ccode\u003E\\( \\left( \\)\u003C/code\u003E", + Misplaced: "This appears in TeX expressions when an item is misplaced e.g. \u003Ccode\u003E\\( \u0026 \\)\u003C/code\u003E since the ampersand is supposed to be used in tabular expressions.\n\nParameters:\n* %1 - the misplaced item", + MissingOpenForSub: "This appears in TeX expressions when a subscript is missing an open brace e.g. \u003Ccode\u003E\\( x__ \\)\u003C/code\u003E\n\nSee also:\n* {{msg-mathjax|Tex-MissingOpenForSup}}", + MissingOpenForSup: "This appears in TeX expressions when a superscript is missing an open brace e.g. \u003Ccode\u003E\\( x^^ \\)\u003C/code\u003E\n\nSee also:\n* {{msg-mathjax|Tex-MissingOpenForSub}}", + AmbiguousUseOf: "This appears in TeX expressions when a command is used in an ambiguous way e.g. \u003Ccode\u003E\\( x \\over y \\over z \\)\u003C/code\u003E.\n\nParameters:\n* %1 - the name of the TeX command", + EnvBadEnd: "{{doc-important|Do not translate \u003Ccode\u003E\\begin\u003C/code\u003E and \u003Ccode\u003E\\end\u003C/code\u003E; they are TeX commands.}}\nThis appears in TeX expressions when environment names do not match e.g. \u003Ccode\u003E\\( \\begin{aligned} \\end{eqarray} \\)\u003C/code\u003E.\n\nParameters:\n* %1 - the environment name used for \u003Ccode\u003E\\begin\u003C/code\u003E\n* %2 - the environment name used for \u003Ccode\u003E\\end\u003C/code\u003E", + EnvMissingEnd: "{{doc-important|Do not translate \u003Ccode\u003E\\end\u003C/code\u003E, it is a TeX command.}}\nThis appears in TeX expressions when an environment is not closed e.g. \u003Ccode\u003E\\( \\begin{aligned} \\)\u003C/code\u003E.\n\nParameters:\n* %1 - the environment name e.g. \u003Ccode\u003Ealigned\u003C/code\u003E", + MissingBoxFor: "This appears in TeX expressions when a command is missing a TeX box e.g. \u003Ccode\u003E\\( \\raise 1pt \\)\u003C/code\u003E.\n\nParameters:\n* %1 - the command name", + MissingCloseBrace: "This appears in TeX expressions when a close brace is missing e.g. \u003Ccode\u003E\\( \\array{ \\)\u003C/code\u003E", + UndefinedControlSequence: "This appears in TeX expressions when an undefined control sequence is used. Parameters:\n* %1 - the name of the TeX command", + DoubleExponent: "This appears in TeX expressions when an ambiguous double exponent is used e.g. \u003Ccode\u003Ex^3^2\u003C/code\u003E should be \u003Ccode\u003Ex^{3^2}\u003C/code\u003E or \u003Ccode\u003E{x^3}^2\u003C/code\u003E.\n\nSee also:\n* {{msg-mathjax|Tex-DoubleSubscripts}}", + DoubleSubscripts: "This appears in TeX expressions when an ambiguous double subscripts is used e.g. \u003Ccode\u003Ex_3_2\u003C/code\u003E should be \u003Ccode\u003Ex_{3_2}\u003C/code\u003E or \u003Ccode\u003E{x_3}_2\u003Ccode\u003E.\n\nSee also:\n* {{msg-mathjax|Tex-DoubleExponent}}", + DoubleExponentPrime: "This appears in TeX expressions when an ambiguous double exponent is caused by a prime e.g. \u003Ccode\u003Ex^a'\u003C/code\u003E should be \u003Ccode\u003E{x^a}'\u003C/code\u003E or \u003Ccode\u003Ex^{a'}\u003C/code\u003E", + CantUseHash1: "This appears in TeX expressions when the macro parameter character '#' is used in math mode e.g. \u003Ccode\u003E\\( # \\)\u003C/code\u003E", + MisplacedMiddle: "{{doc-important|Do not translate \u003Ccode\u003E\\left\u003C/code\u003E and \u003Ccode\u003E\\right\u003C/code\u003E; they are TeX commands.}}\nThis appears in TeX expressions when the \u003Ccode\u003Emiddle\u003C/code\u003E command is used outside \u003Ccode\u003E\\left ... \\right\u003C/code\u003E e.g. \u003Ccode\u003E\\( \\middle| \\)\u003C/code\u003E", + MisplacedLimits: "This appears in TeX expressions when the \u003Ccode\u003Elimits\u003C/code\u003E command is not used on an operator e.g. \u003Ccode\u003E\\( \\limits \\)\u003C/code\u003E.\n\nParameters:\n* %1 - \u003Ccode\u003E\\limits\u003C/code\u003E", + MisplacedMoveRoot: "This appears in TeX expressions when a move root command is used outside a root e.g. \u003Ccode\u003E\\( \\uproot \\)\u003C/code\u003E.\n\nParameters:\n* %1 - either \u003Ccode\u003E\\uproot\u003C/code\u003E or \u003Ccode\u003E\\leftroot\u003C/code\u003E", + MultipleCommand: "This happens when a command or token can only be present once, e.g. \u003Ccode\u003E\\tag{}\u003C/code\u003E. Parameters:\n* %1 - the name of the duplicated command", + IntegerArg: "This happens when an unexpected non-integer argument is passed to a command e.g. \u003Ccode\u003E\\uproot\u003C/code\u003E.\n\nParameters:\n* %1 - the name of the command", + NotMathMLToken: "MathJax has a non-standard \u003Ccode\u003E\\mmlToken\u003C/code\u003E command to insert MathML token elements.\n\nThis error happens when the tag name is unknown e.g. \u003Ccode\u003E\\mmlToken{INVALID}{x}\u003C/code\u003E", + InvalidMathMLAttr: "MathJax has non standard MathML and HTML related commands which can contain attributes.\n\nThis error happens when the parameter is not a valid attribute e.g. \u003Ccode\u003E\\( \\mmlToken{mi}[_INVALID_]{x} \\)\u003C/code\u003E where underscores are forbidden.", + UnknownAttrForElement: "MathJax has non standard MathML and HTML related commands which can contain attributes.\n\nThis error happens when the attribute is invalid for the given element e.g. \u003Ccode\u003E\\( \\mmlToken{mi}[INVALIDATTR=\u003Cnowiki\u003E''\u003C/nowiki\u003E]{x} \\)\u003C/code\u003E\n\nParameters:\n* %1 - attribute\n* %2 - ...", + MaxMacroSub1: "MathJax limits the number of macro substitutions to prevent infinite loops.\n\nFor example, this error may happen with \u003Ccode\u003E\\newcommand{\\a}{\\a} \\a\u003C/code\u003E", + MaxMacroSub2: "MathJax limits the number of nested environments to prevent infinite loops.\n\nFor example, this error may happen with \u003Ccode\u003E\\newenvironment{a}{\\begin{a}}{\\end{a}} \\begin{a}\\end{a}\u003C/code\u003E", + MissingArgFor: "This happens when an argument is missing e.g. \u003Ccode\u003E\\frac{a}\u003C/code\u003E. Parameters:\n* %1 - the command name e.g. \u003Ccode\u003E\\frac\u003C/code\u003E", + ExtraAlignTab: "{{doc-important|Do not translate \u003Ccode\u003E\\cases\u003C/code\u003E; it is a TeX command.}}\nThis happens when \u003Ccode\u003E\\cases\u003C/code\u003E has two many columns e.g. \u003Ccode\u003E\\cases{a \u0026 b \u0026 c}\u003C/code\u003E", + BracketMustBeDimension: "This happens when a bracket argument of an item is not a dimension e.g. \u003Ccode\u003E\\begin{array} x \\\\[INVALID] y \\end{array}\u003C/code\u003E.\n\nParameters:\n* %1 - e.g. \u003Ccode\u003E\\\u003C/code\u003E", + InvalidEnv: "This happens with invalid environment name e.g. \u003Ccode\u003E\\begin{_INVALID_} \\end{_INVALID_}\u003C/code\u003E where underscores are forbidden.\n\nParameters:\n* %1 - the environment name e.g. \u003Ccode\u003E_INVALID_\u003C/code\u003E", + UnknownEnv: "This happens when an unknown environment is used e.g. \u003Ccode\u003E\\begin{UNKNOWN} \\end{UNKNOWN}\u003C/code\u003E.\n\nParameters:\n* %1 - the environment name e.g. \u003Ccode\u003EUNKNOWN\u003C/code\u003E", + ExtraCloseLooking: "This happens in some situations when an extra close brace while looking for another character, for example \u003Ccode\u003E\\( \\sqrt[}]x \\)\u003C/code\u003E.\n\nParameters:\n* %1 - the character searched e.g. \u003Ccode\u003E]\u003C/code\u003E", + MissingCloseBracket: "This error happens when a closing '\u003Ccode\u003E]\u003C/code\u003E' is missing e.g. \u003Ccode\u003E\\( \\sqrt[ \\)\u003C/code\u003E. Parameters:\n* %1 - the command name e.g. \u003Ccode\u003E\\sqrt\u003C/code\u003E", + MissingOrUnrecognizedDelim: "This error happens when a delimiter is missing or unrecognized in a TeX expression e.g. \u003Ccode\u003E\\( \\left \\)\u003C/code\u003E.\n\nParameters:\n* %1 - the command name e.g. \u003Ccode\u003E\\left\u003C/code\u003E", + MissingDimOrUnits: "This error happens with some TeX commands that are expecting a unit e.g. \u003Ccode\u003E\\above\u003C/code\u003E. Parameters:\n* %1 - the command name", + TokenNotFoundForCommand: "This happens while processing a TeX command that is expected to contain a token e.g. \u003Ccode\u003E\\( \\root{x} \\)\u003C/code\u003E where '\u003Ccode\u003E\\of\u003C/code\u003E' should be used.\n\nParameters:\n* %1 - the token not found e.g. \u003Ccode\u003E\\of\u003C/code\u003E\n* %2 - the command being processed e.g. \u003Ccode\u003E\\root\u003C/code\u003E", + MathNotTerminated: "This happens when a math is not terminated in a text box e.g. \u003Ccode\u003E\\( \\text{$x} \\)\u003C/code\u003E where the closing dollar is missing.", + IllegalMacroParam: "This error happens when an invalid macro parameter reference is used e.g. \u003Ccode\u003E\\( \\def\\mymacro#1{#2} \\mymacro{x} \\)\u003C/code\u003E where '#2' is invalid since \u003Ccode\u003E\\mymacro\u003C/code\u003E has only one parameter.", + MaxBufferSize: "The buffer size refers to the memory used by the TeX input processor.\n\nThis error may happen with recursive calls e.g. \u003Ccode\u003E\\( \\newcommand{\\a}{\\a\\a} \\a \\)\u003C/code\u003E.\n\nNote that the number of a's is exponential with respect to the number of recursive calls.\n\nHence 'MaxBufferSize' is likely to happen before 'MaxMacroSub1'", + CommandNotAllowedInEnv: "This appears when the \u003Ccode\u003E\\tag\u003C/code\u003E command is used inside an environment that does not allow labelling e.g. \u003Ccode\u003E\\begin{split} x \\tag{x} \\end{split}\u003C/code\u003E.\n\nParameters:\n* %1 - \u003Ccode\u003E\\tag\u003C/code\u003E\n* %2 - the name of the environment", + MultipleLabel: "This happens when TeX labels are duplicated e.g. \u003Ccode\u003E\\( \\label{x} \\) \\( \\label{x} \\)\u003C/code\u003E.\n\nParameters:\n* %1 - TeX label name", + CommandAtTheBeginingOfLine: "This happens when showleft/showright are misplaced. Parameters:\n* %1 - the macro name", + IllegalAlign: "This happens when an invalid alignment is specified in \u003Ccode\u003E\\cfrac\u003C/code\u003E e.g. \u003Ccode\u003E\\cfrac[INVALID]{a}{b}\u003C/code\u003E.\n\nParameters:\n* %1 - \u003Ccode\u003E\\cfrac\u003C/code\u003E", + BadMathStyleFor: "This happens when an invalid style is specified in \u003Ccode\u003E\\genfrac\u003C/code\u003E e.g. \u003Ccode\u003E\\genfrac{\\{}{\\}}{0pt}{INVALID}{a}{b}\u003C/code\u003E.\n\nParameters:\n* %1 - \u003Ccode\u003E\\genfrac\u003C/code\u003E", + PositiveIntegerArg: "This happens when an invalid alignment is specified in the \u003Ccode\u003Ealignedat\u003C/code\u003E environment e.g. \u003Ccode\u003E\\begin{alignedat}{INVALID}\\end{alignedat}\u003C/code\u003E.", + ErroneousNestingEq: "This happens when some equation structures are nested in a way forbidden by LaTeX e.g. two nested \u003Ccode\u003Emultline\u003C/code\u003E environment.", + MultlineRowsOneCol: "This happens when a row of the \u003Ccode\u003Emultline\u003C/code\u003E environment has more than one column e.g. \u003Ccode\u003E\\begin{multline} x \u0026 y \\end{multline}\u003C/code\u003E.\n\nParameters:\n* %1 - the environment name \u003Ccode\u003Emultline\u003C/code\u003E", + MultipleBBoxProperty: "This appears with the TeX command \u003Ccode\u003E\\bbox\u003C/code\u003E when a property e.g. the background color is specified twice.\n\nParameters:\n* %1 - the name of the duplicate property\n* %2 - the command name \u003Ccode\u003E\\bbox\u003C/code\u003E", + InvalidBBoxProperty: "This appears with the TeX command \u003Ccode\u003E\\bbox\u003C/code\u003E when a property is not a color, a padding dimension, or a style.\n\n'padding' is a CSS property name for the 'inner margin' of a box. You may verify on MDN how it is translated in your language.\n\nParameters:\n* %1 - the name of the invalid property specified", + ExtraEndMissingBegin: "{{doc-important|Do not translate \u003Ccode\u003E\\begingroup\u003C/code\u003E.}}\nThis appears in TeX expressions when begingroup/endgroup do not match. Parameters:\n* %1 - the command name \u003Ccode\u003E\\endgroup\u003C/code\u003E", + GlobalNotFollowedBy: "{{doc-important|Do not translate \u003Ccode\u003E\\let\u003C/code\u003E, \u003Ccode\u003E\\def\u003C/code\u003E, or \u003Ccode\u003E\\newcommand\u003C/code\u003E; they are TeX expressions.}}\nThis appears in TeX expressions when \u003Ccode\u003E\\global\u003C/code\u003E is not followed by \u003Ccode\u003E\\let\u003C/code\u003E, \u003Ccode\u003E\\def\u003C/code\u003E, or \u003Ccode\u003E\\newcommand\u003C/code\u003E", + UndefinedColorModel: "An invalid color model is used for the \u003Ccode\u003E\\color\u003C/code\u003E command. Parameters:\n* %1 - the color model specified", + ModelArg1: "An invalid color value is used for the \u003Ccode\u003E\\color\u003C/code\u003E command e.g. \u003Ccode\u003E\\( \\color[RGB]{}{} \\)\u003C/code\u003E\n\nParameters:\n* %1 - color model name", + InvalidDecimalNumber: "An invalid decimal number is used for the \u003Ccode\u003E\\color\u003C/code\u003E command e.g. \u003Ccode\u003E\\( \\color[rgb]{,,}{} \\)\u003C/code\u003E.\n\nA valid decimal number is such as: 12, 12., 12.34, .34", + ModelArg2: "An out-of-range number is used for the \u003Ccode\u003E\\color\u003C/code\u003E command e.g. \u003Ccode\u003E\\( \\color[RGB]{256,,}{} \\)\u003C/code\u003E.\n\nParameters:\n* %1 - the color model e.g. \u003Ccode\u003ERGB\u003C/code\u003E\n* %2 - the lower bound of the valid interval e.g. 0 for the RGB color model\n* %3 - the upper bound of the valid interval e.g. 255 for the RGB color model", + InvalidNumber: "An invalid number is used for the \u003Ccode\u003E\\color\u003C/code\u003E command e.g. \u003Ccode\u003E\\( \\color[RGB]{,,}{} \\)\u003C/code\u003E.\n\nA valid number is such as: 123", + NewextarrowArg1: "Used when the first argument of \u003Ccode\u003E\\Newextarrow\u003C/code\u003E is invalid. Parameters:\n* %1 - the command name \u003Ccode\u003E\\Newextarrow\u003C/code\u003E", + NewextarrowArg2: "Used when the second argument of \u003Ccode\u003E\\Newextarrow\u003C/code\u003E is invalid. Parameters:\n* %1 - the command name \u003Ccode\u003E\\Newextarrow\u003C/code\u003E", + NewextarrowArg3: "Used when the third argument of \u003Ccode\u003E\\Newextarrow\u003C/code\u003E is invalid. Parameters:\n* %1 - the command name \u003Ccode\u003E\\Newextarrow\u003C/code\u003E", + NoClosingChar: "This is used in TeX mhchem expressions when a closing delimiters is missing e.g. \u003Ccode\u003E\\( \\ce{ -\u003E[ } \\)\u003C/code\u003E.\n\nParameters:\n* %1 - \u003Ccode\u003E)\u003C/code\u003E, \u003Ccode\u003E}\u003C/code\u003E, or \u003Ccode\u003E]\u003C/code\u003E", + IllegalControlSequenceName: "This appears when the \u003Ccode\u003E\\newcommand\u003C/code\u003E TeX command is given an illegal control sequence name.\n\nParameters:\n* %1 - \u003Ccode\u003E\\newcommand\u003C/code\u003E", + IllegalParamNumber: "This appears when the \u003Ccode\u003E\\newcommand\u003C/code\u003E TeX command is given an illegal number of parameters.\n\nParameters:\n* %1 - \u003Ccode\u003E\\newcommand\u003C/code\u003E", + MissingCS: "This appears when a TeX definitions is not followed by a control sequence e.g. \u003Ccode\u003E\\let INVALID\u003C/code\u003E.\n\nParameters:\n* %1 - may be commands like \u003Ccode\u003E\\let\u003C/code\u003E, \u003Ccode\u003E\\def\u003C/code\u003E, \u003Ccode\u003E\\newcommand\u003C/code\u003E, \u003Ccode\u003E\\global\u003C/code\u003E, etc.", + CantUseHash2: "This appears in TeX definitions when the character '#' is used in incorrectly used e.g. \u003Ccode\u003E\\def\\mycommand#A\u003C/code\u003E.\n\nParameters:\n* %1 - the command used e.g. \u003Ccode\u003Emycommand\u003C/code\u003E", + SequentialParam: "This appears in TeX definitions when parameters are not numbered sequentially e.g. \u003Ccode\u003E\\def\\mycommand#2#1\u003C/code\u003E.\n\nParameters:\n* %1 - the command name e.g. \u003Ccode\u003E\\def\u003C/code\u003E", + MissingReplacementString: "This appears in TeX definitions when you don't specify a replacement string e.g. \u003Ccode\u003E\\def\\mycommand\u003C/code\u003E.\n\nParameters:\n* %1 - the command name e.g. \u003Ccode\u003E\\def\u003C/code\u003E", + MismatchUseDef: "This appears in TeX definitions when a TeX command does not match its definition e.g. \u003Ccode\u003E\\( \\def\\mycommand[#1]#2[#3]{#1+#2+#3} \\mycommand{a}{b}[c] \\)\u003C/code\u003E.\n\nParameters:\n* %1 - the command name e.g. \u003Ccode\u003E\\mycommand\u003C/code\u003E", + RunawayArgument: "This appears in TeX definitions when a TeX command does not match its definition e.g. \u003Ccode\u003E\\( \\def\\mycommand[#1][#2]#3{#1+#2+#3} \\mycommand[a]{b} \\)\u003C/code\u003E.\n\nParameters:\n* %1 - the command name e.g. \u003Ccode\u003E\\mycommand\u003C/code\u003E", + NoClosingDelim: "This appears in TeX expressions when a \u003Ccode\u003E\\verb\u003C/code\u003E command is not closed e.g. \u003Ccode\u003E\\( \\verb?... \\)\u003C/code\u003E is missing a closing question mark.\n\nParameters:\n* %1 - the command name" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/qqq/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/qqq/qqq.js b/modules/MathJax/unpacked/localization/qqq/qqq.js new file mode 100644 index 0000000..611536f --- /dev/null +++ b/modules/MathJax/unpacked/localization/qqq/qqq.js @@ -0,0 +1,57 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/qqq/qqq.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("qqq",null,{ + menuTitle: "Message Documentation", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "This alert message is displayed when the MathJax cookie contains some data with URL or Config properties. These properties may be used to ask MathJax to perform actions during the Configuration phase: either loading a javascript file (URL property) or executing a configuration function (Config property). Note that the character '\\n' is used to specify new lines inside the alert box.", + MathProcessingError: "This message appears when a Javascript error happens during the processing of a mathematical element.", + MathError: "This message appears instead of 'Math Processing Error' when the obsolete Accessible configuration is used.", + LoadFile: "This appears in the MathJax message box when a file is loading. Parameters:\n* %1 - the file name\n{{Identical|Loading}}", + Loading: "This appears in the MathJax message box when a file is loading and the messageStyle configuration option is set to 'simple'.\n\nIt will be followed by growing sequence of dots to show the progress.\n{{Identical|Loading}}", + LoadFailed: "This appears in the MathJax message box when a file fails to load. Parameters:\n* %1 - the file name", + ProcessMath: "This appears in the MathJax message box during the conversion process from an input format (e.g., LaTeX, asciimath) to MathJax's internal format.\n\nParameters:\n* %1 - a percentage", + Processing: "This appears in the MathJax message box during the conversion process from an input format (e.g., LaTeX, asciimath) to MathJax's internal format when the messageStyle configuration option is set to 'simple'.\n\nIt will be followed by growing sequence of dots to show the progress.", + TypesetMath: "This appears in the MathJax message box during the layout process of converting the internal format to the output format.\n\nParameters:\n* %1 - a percentage", + Typesetting: "This appears in the MathJax message box during the layout process of converting the internal format to the output format when the messageStyle configuration option is set to 'simple'.\n\nIt will be followed by growing sequence of dots to show the progress.", + MathJaxNotSupported: "This appears in the MathJax message box when MathJax determines the browser does not have adequate features." + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) {return 1}, + number: function (n) {return n} +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/qqq/qqq.js"); diff --git a/modules/MathJax/unpacked/localization/ru/FontWarnings.js b/modules/MathJax/unpacked/localization/ru/FontWarnings.js new file mode 100644 index 0000000..3923a5b --- /dev/null +++ b/modules/MathJax/unpacked/localization/ru/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ru/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ru","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ru/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/ru/HTML-CSS.js b/modules/MathJax/unpacked/localization/ru/HTML-CSS.js new file mode 100644 index 0000000..4ed86fd --- /dev/null +++ b/modules/MathJax/unpacked/localization/ru/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ru/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ru","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430 \u0432\u0435\u0431-\u0448\u0440\u0438\u0444\u0442\u0430 %1", + CantLoadWebFont: "\u041D\u0435 \u0443\u0434\u0430\u0451\u0442\u0441\u044F \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0432\u0435\u0431-\u0448\u0440\u0438\u0444\u0442 %1", + FirefoxCantLoadWebFont: "Firefox \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0432\u0435\u0431-\u0448\u0440\u0438\u0444\u0442\u044B \u0441 \u0443\u0434\u0430\u043B\u0451\u043D\u043D\u043E\u0433\u043E \u0445\u043E\u0441\u0442\u0430", + CantFindFontUsing: "\u041D\u0435 \u0443\u0434\u0430\u0451\u0442\u0441\u044F \u043D\u0430\u0439\u0442\u0438 \u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B\u0439 \u0448\u0440\u0438\u0444\u0442 \u0441\u0440\u0435\u0434\u0438 %1", + WebFontsNotAvailable: "\u0412\u0435\u0431-\u0448\u0440\u0438\u0444\u0442\u044B \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B \u2014 \u0432\u043C\u0435\u0441\u0442\u043E \u043D\u0438\u0445 \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0435\u043C \u0448\u0440\u0438\u0444\u0442\u044B \u043D\u0430 \u043E\u0441\u043D\u043E\u0432\u0435 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0439" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ru/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/ru/HelpDialog.js b/modules/MathJax/unpacked/localization/ru/HelpDialog.js new file mode 100644 index 0000000..6cbd62c --- /dev/null +++ b/modules/MathJax/unpacked/localization/ru/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ru/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ru","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ru/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/ru/MathML.js b/modules/MathJax/unpacked/localization/ru/MathML.js new file mode 100644 index 0000000..b9c7de0 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ru/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ru/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ru","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ru/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/ru/MathMenu.js b/modules/MathJax/unpacked/localization/ru/MathMenu.js new file mode 100644 index 0000000..1ea8496 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ru/MathMenu.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ru/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ru","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ru/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/ru/TeX.js b/modules/MathJax/unpacked/localization/ru/TeX.js new file mode 100644 index 0000000..fb71c8a --- /dev/null +++ b/modules/MathJax/unpacked/localization/ru/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ru/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ru","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ru/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/ru/ru.js b/modules/MathJax/unpacked/localization/ru/ru.js new file mode 100644 index 0000000..952d036 --- /dev/null +++ b/modules/MathJax/unpacked/localization/ru/ru.js @@ -0,0 +1,64 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/ru/ru.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("ru",null,{ + menuTitle: "\u0440\u0443\u0441\u0441\u043A\u0438\u0439", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + MathError: "\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u043E\u0448\u0438\u0431\u043A\u0430", + LoadFile: "\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430 %1", + Loading: "\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430", + LoadFailed: "\u041D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C: %1", + ProcessMath: "\u041E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0438: %1%%", + Processing: "\u041E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0430", + TypesetMath: "\u0412\u0451\u0440\u0441\u0442\u043A\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0438: %1%%", + Typesetting: "\u0412\u0451\u0440\u0441\u0442\u043A\u0430", + MathJaxNotSupported: "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 MathJax", + MathProcessingError: "\u041E\u0448\u0438\u0431\u043A\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u043E\u0439 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0438" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n % 10 === 1 && n % 100 !== 11) return 1; // one + if (2 <= n % 10 && n % 10 <= 4 && 12 <= n % 100 && n % 100 <= 14) return 2; // few + if (n % 10 === 0 || (5 <= n % 10 && n % 10 <= 9) || + (11 <= n % 100 && n % 100 <= 14)) return 2; // many + return 3; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/ru/ru.js"); diff --git a/modules/MathJax/unpacked/localization/sl/FontWarnings.js b/modules/MathJax/unpacked/localization/sl/FontWarnings.js new file mode 100644 index 0000000..da61df3 --- /dev/null +++ b/modules/MathJax/unpacked/localization/sl/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sl/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sl","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax za prikaza matematike na tej strani uporablja spletne pisave. Da se te nalo\u017Eijo, vzame nekaj \u010Dasa. Stran bi se hitreje izrisovala, \u010De bi bile matemati\u010Dne pisave name\u0161\u010Dene neposredno v mapi s pisavami va\u0161ega sistema.", + imageFonts: "MathJax ne uporablja lokalnih ali spletnih pisav, temve\u010D svoje slikovne pisave. Izrisovanje bo zato po\u010Dasnej\u0161e, matematika pa se morda ne bo natisnila v popolni lo\u010Dljivosti va\u0161ega tiskalnika.", + noFonts: "MathJax ne more najti pisave za prikaz matematike, slikovne pisave pa niso na razpolago, zato v upanju, da jih bo va\u0161 brskalnik lahko prikazal, uporablja generi\u010Dne unikodne znake. Nekateri znaki morda ne bodo prikazani pravilno ali pa sploh ne bodo prikazani.", + webFonts: "Ve\u010Dina sodobnih brskalnikov omogo\u010Da prenos pisav prek spleta. S posodobitvijo (ali zamenjavo) svojega brskalnika boste morda lahko izbolj\u0161ali kakovost matematike na tej strani.", + fonts: "MathJax lahko uporablja [fonte STIX](%1) ali [fonte MathJax TeX](%2). Za izbolj\u0161anje svoje uporabni\u0161ke izku\u0161nje prenesite in namestite te fonte.", + STIXPage: "Stran je oblikovana za uporabo [pisav STIX](%1). Za izbolj\u0161anje svoje uporabni\u0161ke izku\u0161nje prenesite in namestite te pisave.", + TeXPage: "Stran je oblikovana za uporabo [pisav MathJax Tex](%1). Za izbolj\u0161anje svoje izku\u0161nje z MathJax prenesite in namestite te pisave." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sl/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/sl/HTML-CSS.js b/modules/MathJax/unpacked/localization/sl/HTML-CSS.js new file mode 100644 index 0000000..e59254f --- /dev/null +++ b/modules/MathJax/unpacked/localization/sl/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sl/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sl","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "Nalagam spletni font %1", + CantLoadWebFont: "Spletne pisave %1 ni mogo\u010De nalo\u017Eiti", + FirefoxCantLoadWebFont: "Firefox ne more nalo\u017Eiti spletnih pisav na oddaljenem gostitelju.", + CantFindFontUsing: "Z uporabo %1 ne morem najti veljavne pisave.", + WebFontsNotAvailable: "Web-Fonts niso na razpolago. Namesto njih uporabljam slikovne pisave." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sl/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/sl/HelpDialog.js b/modules/MathJax/unpacked/localization/sl/HelpDialog.js new file mode 100644 index 0000000..155d76b --- /dev/null +++ b/modules/MathJax/unpacked/localization/sl/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sl/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sl","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "Pomo\u010D za MathJax", + MathJax: "*MathJax* je javaskriptna knji\u017Enica, ki ustvarjalcem spletnih strani omogo\u010Da vklju\u010Ditev matematike. Kot bralec ne potrebujete ni\u010Desar, da bi se to zgodilo.", + Browsers: "*Brskalniki*: MathJax deluje v vseh sodobnih brskalnikih, vklju\u010Dno z IE6+, Firefoxom 3+, Chromeom 0.2+, Safarijem 2+, Opero 9.6+, in v ve\u010Dini mobilnih brskalnikov.", + Menu: "*Meni ena\u010Db*: MathJax k ena\u010Dbam doda kontekstni meni. Za dostop do menija matematiko desno kliknite ali jo kliknite ob dr\u017Eanju tipke CTRL.", + ShowMath: "*Prika\u017Ei matematiko kot* vam omogo\u010Da prikaz izvornega ozna\u010Devanja formule za kopiranje in lepljenje (kot MathML ali v izvorni obliki).", + Settings: "*Nastavitve* vam dajo nadzor nad mo\u017Enostmi MathJaxa, kot so velikost matematike in mehanizem za prikaz ena\u010Db.", + Language: "*Jezik* vam omogo\u010Da izbrati jezik, ki naj ga MathJax uporablja za svoje menije in opozorilna sporo\u010Dila.", + Zoom: "*Math Zoom*: \u010De imate te\u017Eave pri branju ena\u010Dbe, jo lahko MathJax pove\u010Da, da jo boste bolje videli.", + Accessibilty: "*Dostopnost*: MathJax samodejno deluje z bralniki zaslona in omogo\u010Da dostop do matematike tudi slepim in slabovidnim.", + Fonts: "*Pisave*: MathJax bo uporabljal nekatere matemati\u010Dne pisave, \u010De so name\u0161\u010Dene na ra\u010Dunalniku, sicer pa pisave s spleta. \u010Ceprav niso nujne, bodo lokalno name\u0161\u010Dene pisave pospe\u0161ile prikaz. Predlagamo namestitev [pisav STIX](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sl/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/sl/MathML.js b/modules/MathJax/unpacked/localization/sl/MathML.js new file mode 100644 index 0000000..615d475 --- /dev/null +++ b/modules/MathJax/unpacked/localization/sl/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sl/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sl","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "Neveljaven mglyph: %1", + BadMglyphFont: "Neveljavna pisava: %1", + MathPlayer: "MathJax ni mogel nastaviti programa MathPlayer.\n\n\u010Ce MathPlayer ni name\u0161\u010Den, ga morate najprej namestiti. Sicer morda njegov zahon prepre\u010Dujejo va\u0161e varnostne nastavitve. Uporabite element Internetne mo\u017Enosti [Internet Options] pod menijem Orodja [Tools] in izberite zavihek Varnost [Security], nato pritisnite gumb Prilagojena raven [Custom Level]. Preverite, alo so nastavitve za 'Za\u017Eeni krmilne elemente ActiveX' in 'Binarna in skriptna vedenja' omogo\u010Dene.\n\nTrenutno boste namesto matematike videli sporo\u010Dila o napakah.", + CantCreateXMLParser: "MathJax ne more ustvariti raz\u010Dlenjevalnika XML za MathML. Preverite, ali je varnostna nastavitev 'Krmilni elementi Script ActiveX ozna\u010Deni kot varni za skriptiranje' omogo\u010Dena (da to preverite, v meniju Orodja [Tools] uporabite element Internetne mo\u017Enosti [Internet Options], nato izberite plo\u0161\u010Do Varnost [Security], nato pritisnite gumb Prilagojena raven [Custom Level]).", + UnknownNodeType: "Neznana vrsta vozli\u0161\u010Da: %1", + UnexpectedTextNode: "Nepri\u010Dakovano tekstovno vozli\u0161\u010De: %1", + ErrorParsingMathML: "Napaka pri raz\u010Dlenjevanju MathML", + ParsingError: "Napaka pri raz\u010Dlenjevanju MathML: %1", + MathMLSingleElement: "MathML mora biti oblikovan z enim samim elementom", + MathMLRootElement: "MathML mora biti oblikovan z elementom \u003Cmath\u003E, ne s korenom %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sl/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/sl/MathMenu.js b/modules/MathJax/unpacked/localization/sl/MathMenu.js new file mode 100644 index 0000000..6cf1e72 --- /dev/null +++ b/modules/MathJax/unpacked/localization/sl/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sl/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sl","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "Prika\u017Ei matematiko kot", + MathMLcode: "Koda MathML", + OriginalMathML: "Izvorni MathML", + TeXCommands: "Ukazi TeX", + AsciiMathInput: "Vnos AsciiMathML", + Original: "Izvirna oblika", + ErrorMessage: "Sporo\u010Dilo o napaki", + Annotation: "Pripis", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "MathML vsebine", + OpenMath: "OpenMath", + texHints: "V MathML prika\u017Ei namige TeX", + Settings: "Nastavitve matematike", + ZoomTrigger: "Pro\u017Eilec zumiranja", + Hover: "Lebdenje", + Click: "Kliknite", + DoubleClick: "Dvokliknite", + NoZoom: "Brez pove\u010Dave", + TriggerRequires: "Pro\u017Eilec potrebuje:", + Option: "Mo\u017Enost", + Alt: "Alt", + Command: "Ukaz", + Control: "Kontrolnik", + Shift: "Preklop", + ZoomFactor: "Faktor zumiranja", + Renderer: "Matemati\u010Dni izrisovalnik", + MPHandles: "MathPlayer naj upravlja z:", + MenuEvents: "Dogodki menija", + MouseEvents: "Dogodki mi\u0161ke", + MenuAndMouse: "Dogodki mi\u0161ke in menija", + FontPrefs: "Nastavitve pisav", + ForHTMLCSS: "Za HTML-CSS:", + Auto: "Samodejno", + TeXLocal: "TeX (lokalno)", + TeXWeb: "TeX (splet)", + TeXImage: "TeX (slika)", + STIXLocal: "STIX (lokalno)", + ContextMenu: "Kontekstni meni", + Browser: "Brskalnik", + Scale: "Umeri vso matematiko ...", + Discoverable: "Ob lebdenju ozna\u010Di", + Locale: "Jezik", + LoadLocale: "Nalo\u017Ei iz spletnega naslova ...", + About: "O MathJax", + Help: "Pomo\u010D za MathJax", + localTeXfonts: "z uporabo lokalnih pisav TeX", + webTeXfonts: "z uporabo spletne pisave TeX", + imagefonts: "z uporabo slikovnih pisav", + localSTIXfonts: "z uporabo lokalnih pisav STIX", + webSVGfonts: "z uporabo spletnih pisav SVG", + genericfonts: "z uporabo generi\u010Dnih unikodnih pisav", + wofforotffonts: "pisave woff ali otf", + eotffonts: "pisave eot", + svgfonts: "pisave svg", + WebkitNativeMMLWarning: "Va\u0161 brskalnik ne podpira MathML sam po sebi, zato ob preklopu na MathML matematika morda ne bo berljiva.", + MSIENativeMMLWarning: "Internet Explorer potrebuje za obdelavo izhoda MathML vti\u010Dnik MathPlayer.", + OperaNativeMMLWarning: "Podpora Opere za MathML je omejena, zato se bodo ob preklopu na MathML nekateri izrazi morda slabo izrisali.", + SafariNativeMMLWarning: "MathML va\u0161ega brskalnika ne podpira vseh mo\u017Enosti MathJaxa, zato se nekateri izrazi morda ne bodo pravilno prikazali.", + FirefoxNativeMMLWarning: "MathML va\u0161ega brskalnika ne podpira vseh mo\u017Enosti MathJaxa, zato se nekateri izrazi morda ne bodo pravilno izrisali.", + MSIESVGWarning: "V Internet Explorerju pred IE9 in pri emulaciji IE8 ali manj SVG ni podprt. Ob preklopu na SVG se matematika ne bo prikazala pravilno.", + LoadURL: "Nalo\u017Ei podatke za prevajanje z naslednjega spletnega naslova:", + BadURL: "Spletni naslov mora biti za javaskriptno datoteko, ki opredeljuje podatke MathJax o prevajanju. Imena javaskriptnih datotek se morajo kon\u010Dati z '.js'", + BadData: "Nalaganje podatkov za prevajanje iz %1 ni uspelo", + SwitchAnyway: "Vseeno zamenjam izrisovalnik?", + ScaleMath: "Umeri vso matematiko (v primerjavi z okoli\u0161nim besedilom) z", + NonZeroScale: "Merilo ne sme biti ni\u010D", + PercentScale: "Merilo naj bo odstotek (npr. 120%%)", + IE8warning: "To onemogo\u010Di meni MathJax in mo\u017Enosti zumiranja, vendar pa lahko namesto tega kliknete izraz ob dr\u017Eanju tipke Alt, s \u010Dimer se prika\u017Ee meni MathJax.", + IE9warning: "Kontekstni meni MathJax bo izklopljen, namesto tega pa lahko s klikom izraza ob dr\u017Eanju tipke Alt prikli\u010Dete meni MathJax.", + NoOriginalForm: "Na razpolago ni nobena izvorna oblika", + Close: "Zapri", + EqSource: "Vir ena\u010Dbe MathJax" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sl/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/sl/TeX.js b/modules/MathJax/unpacked/localization/sl/TeX.js new file mode 100644 index 0000000..674c51c --- /dev/null +++ b/modules/MathJax/unpacked/localization/sl/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sl/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sl","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "Dodaten uklepaj ali manjkajo\u010D zaklepaj", + ExtraCloseMissingOpen: "Dodaten zaklepaj ali manjkajo\u010D uklepaj", + MissingLeftExtraRight: "Manjka \\left ali dodatni \\right", + MissingScript: "Manjka nadpisani ali podpisani argument", + ExtraLeftMissingRight: "Dodaten \\left ali manjkajo\u010D \\right", + Misplaced: "Narobe postavljen %1", + MissingOpenForSub: "Manjka uklepaj za nadpisano", + MissingOpenForSup: "Manjka uklepaj za nadpisano", + AmbiguousUseOf: "Dvoumna uporaba %1", + EnvBadEnd: "\\begin{%1} se je kon\u010Dal z \\end{%2}", + EnvMissingEnd: "Manjka \\end{%1}", + MissingBoxFor: "Manjka polje za %1", + MissingCloseBrace: "Manjka zaklepaj", + UndefinedControlSequence: "Nedefinirano kontrolno zaporedje %1", + DoubleExponent: "Dvojni eksponent: pojasnite z oklepaji", + DoubleSubscripts: "Dvojno podpisano: za pojasnitev uporabite oklepaje", + DoubleExponentPrime: "Pra\u0161tevilo povzro\u010Da dvojni eksponent: pojasnite z oklepaji", + CantUseHash1: "Znak # je makroparameter in ga v matemati\u010Dnem na\u010Dinu ne morete uporabljati", + MisplacedMiddle: "%1 mora biti znotraj \\left in \\right", + MisplacedLimits: "%1 je dovoljen samo pri operatorjih", + MisplacedMoveRoot: "%1 se lahko pojavi samo v korenu", + MultipleCommand: "Ve\u010Dkratni %1", + IntegerArg: "Argument za %1 mora biti celo \u0161tevilo", + NotMathMLToken: "%1 ni \u017Eetonski element", + InvalidMathMLAttr: "Neveljaven atribut MathML: %1", + UnknownAttrForElement: "%1 ni prepoznani atribut za %2", + MaxMacroSub1: "Prese\u017Eeno najve\u010Dje \u0161tevilo makrosubstitucij MathJax; ali obstaja rekurzivni makroklic?", + MaxMacroSub2: "Prese\u017Eeno najve\u010Dje \u0161tevilo substitucij MathJax; ali obstaja rekurzivno okolje latex?", + MissingArgFor: "Manjka argument za %1", + ExtraAlignTab: "Dodatni zavihek za poravnavo v tekstu \\cases", + BracketMustBeDimension: "Argument v oklepaju za %1 mora biti velikost", + InvalidEnv: "Neveljavno ime okolja '%1'", + UnknownEnv: "Neznano okolje '%1'", + ExtraCloseLooking: "Dodatni zaklepaj pri iskanju %1", + MissingCloseBracket: "Za argument za %1 ni mogo\u010De najti zaklepaja ']'", + MissingOrUnrecognizedDelim: "Manjkajo\u010De ali neprepoznano lo\u010Dilo za %1", + MissingDimOrUnits: "Manjka velikost ali enote pri %1", + TokenNotFoundForCommand: "%1 za %2 ni bilo mogo\u010De najti", + MathNotTerminated: "Matematika v tekstovnem polju ni prekinjena", + IllegalMacroParam: "Nedovoljen makroparameter", + MaxBufferSize: "Prese\u017Eena velikost notranjega medpomnilnika MathJax; ali obstaja rekurzivni makroklic?", + CommandNotAllowedInEnv: "%1 v okolju %2 ni dovoljen", + MultipleLabel: "Ve\u010Dkratno definirana oznaka '%1'", + CommandAtTheBeginingOfLine: "%1 mora priti na za\u010Detek vrstice", + IllegalAlign: "V %1 je dolo\u010Dena nedovoljena poravnava.", + BadMathStyleFor: "Neveljaven matemati\u010Dni slog argumenta %1", + PositiveIntegerArg: "Argument za %1 mora biti pozitivno celo \u0161tevilo", + ErroneousNestingEq: "Napa\u010Dno gnezdenje struktur ena\u010Dbe", + MultlineRowsOneCol: "Vrstice v okolju %1 morajo imeti natan\u010Dno en stolpec", + MultipleBBoxProperty: "%1 je v %2 dolo\u010Den dvakrat", + InvalidBBoxProperty: "'%1' ne izgleda kot barva, velikost odmika ali slog", + ExtraEndMissingBegin: "Dodatni %1 ali manjkajo\u010D \\begingroup", + GlobalNotFollowedBy: "%1 ne sledijo \\let, \\def ali \\newcommand", + UndefinedColorModel: "Nedefiniran barvni model '%1'", + ModelArg1: "Barvne vrednosti modela %1 zahtevajo tri \u0161tevilke", + InvalidDecimalNumber: "Neveljavna decimalna \u0161tevilka", + ModelArg2: "Barvne vrednosti za model %1 morajo biti med %2 in %3", + InvalidNumber: "Neveljavna \u0161tevilka", + NewextarrowArg1: "Prvi argument za %1 mora biti ime kontrolnega zaporedja", + NewextarrowArg2: "Drugi argument za %1 morata biti dve celi \u0161tevili, lo\u010Deni z vejico", + NewextarrowArg3: "Tretji argument za %1 mora biti \u0161tevilka unikodnega znaka", + NoClosingChar: "Ni mogo\u010De najti zapiralnega %1", + IllegalControlSequenceName: "Nedovoljeno ime kontrolnega zaporedja za %1", + IllegalParamNumber: "Neveljavno \u0161tevilo parametrov v %1", + MissingCS: "%1 mora slediti kontrolno zaporedje", + CantUseHash2: "Nedovoljena uporaba znaka # v predlogi za %1", + SequentialParam: "Parametri za %1 morajo biti o\u0161tevil\u010Deni zaporedno", + MissingReplacementString: "Manjka nadomestni niz za definicijo %1", + MismatchUseDef: "Uporaba %1 se ne ujema z njegovo definicijo", + RunawayArgument: "Ube\u017Eni argument za %1?", + NoClosingDelim: "Ni mogo\u010De najti zaklju\u010Dnega lo\u010Dila za %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sl/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/sl/sl.js b/modules/MathJax/unpacked/localization/sl/sl.js new file mode 100644 index 0000000..d58d3e0 --- /dev/null +++ b/modules/MathJax/unpacked/localization/sl/sl.js @@ -0,0 +1,64 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sl/sl.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sl",null,{ + menuTitle: "sloven\u0161\u010Dina", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax je na\u0161el pi\u0161kotek za uporabni\u0161ko konfiguracijo, ki vklju\u010Duje kodo za zagon. Ali jo \u017Eelite zagnati?\n\n(Pritisnite Prekli\u010Di, razen \u010De ste pi\u0161kotek sami nastavili.)", + MathProcessingError: "Napaka pri obdelavi matematike", + MathError: "Napaka v matemati\u010Dni formuli", + LoadFile: "Nalagam %1", + Loading: "Nalagam", + LoadFailed: "Datoteka se ni nalo\u017Eila: %1", + ProcessMath: "Obdelava matematike: %1%%", + Processing: "Obdelujem", + TypesetMath: "Stavljenje matematike: %1%%", + Typesetting: "Stavljenje", + MathJaxNotSupported: "Va\u0161 brskalnik ne podpira MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n % 100 === 1) return 1; // one + if (n % 100 === 2) return 2; // two + if (3 <= n % 100 && n % 100 <= 4) return 3; + return 4; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sl/sl.js"); diff --git a/modules/MathJax/unpacked/localization/sv/FontWarnings.js b/modules/MathJax/unpacked/localization/sv/FontWarnings.js new file mode 100644 index 0000000..b36d7d7 --- /dev/null +++ b/modules/MathJax/unpacked/localization/sv/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sv/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sv","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sv/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/sv/HTML-CSS.js b/modules/MathJax/unpacked/localization/sv/HTML-CSS.js new file mode 100644 index 0000000..8a163ee --- /dev/null +++ b/modules/MathJax/unpacked/localization/sv/HTML-CSS.js @@ -0,0 +1,33 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sv/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sv","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + FirefoxCantLoadWebFont: "Firefox kan inte l\u00E4sa in webbteckensnitt fr\u00E5n en fj\u00E4rrstyrd v\u00E4rd", + CantFindFontUsing: "Kan inte hitta ett giltigt teckensnitt med %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sv/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/sv/HelpDialog.js b/modules/MathJax/unpacked/localization/sv/HelpDialog.js new file mode 100644 index 0000000..791ef15 --- /dev/null +++ b/modules/MathJax/unpacked/localization/sv/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sv/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sv","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sv/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/sv/MathML.js b/modules/MathJax/unpacked/localization/sv/MathML.js new file mode 100644 index 0000000..9a58526 --- /dev/null +++ b/modules/MathJax/unpacked/localization/sv/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sv/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sv","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sv/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/sv/MathMenu.js b/modules/MathJax/unpacked/localization/sv/MathMenu.js new file mode 100644 index 0000000..80a4415 --- /dev/null +++ b/modules/MathJax/unpacked/localization/sv/MathMenu.js @@ -0,0 +1,59 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sv/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sv","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + MathMLcode: "MathML-kod", + OriginalMathML: "Ursprunglig MathML", + TeXCommands: "TeX-kommandon", + AsciiMathInput: "AsciiMathML-inmatning", + Original: "Ursprungligt format", + ErrorMessage: "Felmeddelande", + TeX: "TeX", + StarMath: "StarMath", + OpenMath: "OpenMath", + Click: "Klick", + DoubleClick: "Dubbelklick", + NoZoom: "Ingen zoom", + Option: "Alternativ", + Alt: "Alt", + Command: "Command", + Control: "Ctrl", + Shift: "Shift", + TeXLocal: "TeX (lokal)", + TeXWeb: "TeX (webb)", + TeXImage: "TeX (bild)", + STIXLocal: "STIX (lokal)", + Locale: "Spr\u00E5k", + LoadLocale: "L\u00E4s in fr\u00E5n URL ...", + About: "Om MathJax", + Help: "Hj\u00E4lp f\u00F6r MathJax", + eotffonts: "eot-teckensnitt", + svgfonts: "svg-teckensnitt", + Close: "St\u00E4ng" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sv/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/sv/TeX.js b/modules/MathJax/unpacked/localization/sv/TeX.js new file mode 100644 index 0000000..b39f05b --- /dev/null +++ b/modules/MathJax/unpacked/localization/sv/TeX.js @@ -0,0 +1,63 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sv/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sv","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + MissingLeftExtraRight: "Saknar \\left eller en extra \\right", + ExtraLeftMissingRight: "Extra \\left eller en \\right saknas", + Misplaced: "Felplacerad %1", + AmbiguousUseOf: "Tvetydig anv\u00E4ndning av %1", + EnvBadEnd: "\\begin{%1} slutade med \\end{%2}", + EnvMissingEnd: "Saknar \\end{%1}", + MissingBoxFor: "Saknad l\u00E5da f\u00F6r %1", + MissingCloseBrace: "H\u00F6gerparentes saknas", + UndefinedControlSequence: "Odefinierad kontrollsekvens %1", + DoubleExponent: "Dubbel exponent: anv\u00E4nd parenteser f\u00F6r att klarg\u00F6ra", + MultipleCommand: "Flera %1", + IntegerArg: "Argumentet till %1 m\u00E5ste vara ett heltal", + NotMathMLToken: "%1 \u00E4r inte ett nyckelelement", + InvalidMathMLAttr: "Ogiltig MathML-attribut: %1", + UnknownAttrForElement: "%1 \u00E4r inte en igenk\u00E4nd attribut f\u00F6r %2", + MissingArgFor: "Argument saknas f\u00F6r %1", + UnknownEnv: "Ok\u00E4nd milj\u00F6 '%1'", + MissingCloseBracket: "Kunde inte hitta avslutande ']' f\u00F6r argumentet till %1", + TokenNotFoundForCommand: "Kunde inte hitta %1 f\u00F6r %2", + CommandNotAllowedInEnv: "%1 till\u00E5ts inte i milj\u00F6n %2", + MultipleLabel: "Etiketten '%1' definierades flera g\u00E5nger", + IllegalAlign: "Ogiltig justering anges i %1", + MultipleBBoxProperty: "%1 anges tv\u00E5 g\u00E5nger i %2", + ExtraEndMissingBegin: "Extra %1 eller en \\begingroup saknas", + InvalidDecimalNumber: "Ogiltig decimaltal", + InvalidNumber: "Ogiltigt nummer", + NoClosingChar: "Kan inte hitta avslutande %1", + IllegalControlSequenceName: "Ogiltigt kontrollsekvensnamn f\u00F6r %1", + IllegalParamNumber: "Ogiltigt antal parenteser anges i %1", + ExtraOpenMissingClose: "Extra v\u00E4nsterparentes eller h\u00F6gerparentes saknas", + ExtraCloseMissingOpen: "Extra h\u00F6gerparentes eller v\u00E4nsterparentes saknas", + ExtraCloseLooking: "Extra h\u00F6gerparentes n\u00E4r %1 s\u00F6ktes" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sv/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/sv/sv.js b/modules/MathJax/unpacked/localization/sv/sv.js new file mode 100644 index 0000000..81ebe43 --- /dev/null +++ b/modules/MathJax/unpacked/localization/sv/sv.js @@ -0,0 +1,61 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/sv/sv.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("sv",null,{ + menuTitle: "svenska", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax har hittat en anv\u00E4ndarkonfigurationscookie som inneh\u00E5ller kod som kan k\u00F6ras. Vill du k\u00F6ra den?\n\n(Du b\u00F6r trycka p\u00E5 Avbryt om du inte sj\u00E4lv har lagt upp denna cookie.)", + MathProcessingError: "Matematikbearbetningsfel", + MathError: "Matematikfel", + LoadFile: "L\u00E4ser in %1", + Loading: "L\u00E4ser in", + LoadFailed: "Misslyckades att l\u00E4sa in: %1", + ProcessMath: "Bearbetar matematik: %1 %%", + Processing: "Bearbetar", + MathJaxNotSupported: "Din webbl\u00E4sare st\u00F6der inte MathJax", + Typesetting: "S\u00E4ttning" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n === 1) return 1; // one + return 2; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/sv/sv.js"); diff --git a/modules/MathJax/unpacked/localization/tr/FontWarnings.js b/modules/MathJax/unpacked/localization/tr/FontWarnings.js new file mode 100644 index 0000000..bb01fe4 --- /dev/null +++ b/modules/MathJax/unpacked/localization/tr/FontWarnings.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/tr/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("tr","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/tr/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/tr/HTML-CSS.js b/modules/MathJax/unpacked/localization/tr/HTML-CSS.js new file mode 100644 index 0000000..9ac29f4 --- /dev/null +++ b/modules/MathJax/unpacked/localization/tr/HTML-CSS.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/tr/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("tr","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/tr/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/tr/HelpDialog.js b/modules/MathJax/unpacked/localization/tr/HelpDialog.js new file mode 100644 index 0000000..b91b7fc --- /dev/null +++ b/modules/MathJax/unpacked/localization/tr/HelpDialog.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/tr/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("tr","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/tr/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/tr/MathML.js b/modules/MathJax/unpacked/localization/tr/MathML.js new file mode 100644 index 0000000..db2113d --- /dev/null +++ b/modules/MathJax/unpacked/localization/tr/MathML.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/tr/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("tr","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/tr/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/tr/MathMenu.js b/modules/MathJax/unpacked/localization/tr/MathMenu.js new file mode 100644 index 0000000..311fe23 --- /dev/null +++ b/modules/MathJax/unpacked/localization/tr/MathMenu.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/tr/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("tr","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/tr/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/tr/TeX.js b/modules/MathJax/unpacked/localization/tr/TeX.js new file mode 100644 index 0000000..470ccec --- /dev/null +++ b/modules/MathJax/unpacked/localization/tr/TeX.js @@ -0,0 +1,32 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/tr/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("tr","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/tr/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/tr/tr.js b/modules/MathJax/unpacked/localization/tr/tr.js new file mode 100644 index 0000000..8e6a128 --- /dev/null +++ b/modules/MathJax/unpacked/localization/tr/tr.js @@ -0,0 +1,57 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/tr/tr.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("tr",null,{ + menuTitle: "T\u00FCrk\u00E7e", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + MathProcessingError: "Matematik i\u015Fleme hatas\u0131", + MathError: "Matematik hatas\u0131", + LoadFile: "%1 Y\u00FCkleniyor", + Loading: "Y\u00FCkleniyor", + LoadFailed: "Dosya y\u00FCklenemedi: %1", + ProcessMath: "Matematik i\u015Fleme: %%%1", + MathJaxNotSupported: "Taray\u0131c\u0131n\u0131z MathJax'i desteklemiyor" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + return 1; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/tr/tr.js"); diff --git a/modules/MathJax/unpacked/localization/uk/FontWarnings.js b/modules/MathJax/unpacked/localization/uk/FontWarnings.js new file mode 100644 index 0000000..64145cf --- /dev/null +++ b/modules/MathJax/unpacked/localization/uk/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/uk/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("uk","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454 \u0432\u0435\u0431-\u0448\u0440\u0438\u0444\u0442\u0438 \u0434\u043B\u044F \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0438 \u043D\u0430 \u0446\u0456\u0439 \u0441\u0442\u043E\u0440\u0456\u043D\u0446\u0456. \u041F\u043E\u0442\u0440\u0456\u0431\u0435\u043D \u0447\u0430\u0441, \u0449\u043E\u0431 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438, \u0431\u043E \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u0431 \u0432\u0456\u0437\u0443\u0430\u043B\u0456\u0437\u0443\u0432\u0430\u043B\u0430\u0441\u044F \u0448\u0432\u0438\u0434\u0448\u0435, \u044F\u043A\u0431\u0438 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u0456 \u0448\u0440\u0438\u0444\u0442\u0438 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0456 \u0431\u0435\u0437\u043F\u043E\u0441\u0435\u0440\u0435\u0434\u043D\u044C\u043E \u0432 \u0442\u0435\u0446\u0456 \u0432\u0430\u0448\u043E\u0433\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u043D\u043E\u0433\u043E \u0448\u0440\u0438\u0444\u0442\u0443.", + imageFonts: "MathJax \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454 \u0432\u043B\u0430\u0441\u043D\u0456 \u0448\u0440\u0438\u0444\u0442\u0438 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u044C, \u0430 \u043D\u0435 \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u0456 \u0430\u0431\u043E \u0432\u0435\u0431-\u0448\u0440\u0438\u0444\u0442\u0438. \u0426\u0435 \u0431\u0443\u0434\u0435 \u0432\u0456\u0437\u0443\u0430\u043B\u0456\u0437\u0443\u0432\u0430\u0442\u0438 \u043F\u043E\u0432\u0456\u043B\u044C\u043D\u0456\u0448\u0435, \u043D\u0456\u0436 \u0437\u0432\u0438\u0447\u0430\u0439\u043D\u043E, \u0456 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u0456 \u0441\u0438\u043C\u0432\u043E\u043B\u0438 \u043D\u0435\u043C\u043E\u0436\u043B\u0438\u0432\u043E \u043D\u0430\u0434\u0440\u0443\u043A\u0443\u0432\u0430\u0442\u0438 \u043D\u0430 \u043F\u0440\u0438\u043D\u0442\u0435\u0440\u0456 \u0437 \u0432\u0438\u0441\u043E\u043A\u043E\u044E \u0440\u043E\u0437\u0434\u0456\u043B\u044C\u043D\u0456\u0441\u0442\u044E.", + noFonts: "MathJax \u043D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0437\u043D\u0430\u0439\u0442\u0438 \u0448\u0440\u0438\u0444\u0442, \u0449\u043E \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u0434\u043B\u044F \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u0438\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432, \u0448\u0440\u0438\u0444\u0442\u0438 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u043D\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0456, \u0442\u043E\u043C\u0443 \u043D\u0430\u043C \u0434\u043E\u0432\u0435\u043B\u043E\u0441\u044F \u043F\u043E\u0432\u0435\u0440\u043D\u0443\u0442\u0438\u0441\u044F \u043D\u0430 \u0437\u0430\u0433\u0430\u043B\u044C\u043D\u0456 \u0441\u0438\u043C\u0432\u043E\u043B\u0438 Unicode \u0443 \u043D\u0430\u0434\u0456\u0457, \u0449\u043E \u0432\u0430\u0448 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447 \u0437\u043C\u043E\u0436\u0435 \u0457\u0445 \u0432\u0456\u0440\u043D\u043E \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0437\u0438\u0442\u0438. \u0414\u0435\u044F\u043A\u0456 \u0441\u0438\u043C\u0432\u043E\u043B\u0438 \u043D\u0435 \u0431\u0443\u0434\u0443\u0442\u044C \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0456 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E \u0456 \u043F\u043E\u0432\u043D\u0456\u0441\u0442\u044E \u043D\u0435 \u0432 \u0437\u043C\u043E\u0437\u0456 \u0431\u0443\u0434\u0443\u0442\u044C \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0430\u0442\u0438\u0441\u044F.", + webFonts: "\u0411\u0456\u043B\u044C\u0448\u0456\u0441\u0442\u044C \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447\u0456\u0432 \u0432 \u0434\u0430\u043D\u0438\u0439 \u0447\u0430\u0441 \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u044E\u0442\u044C \u0448\u0440\u0438\u0444\u0442\u0438, \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0443\u0432\u0430\u043D\u0456 \u0437 \u0456\u043D\u0442\u0435\u0440\u043D\u0435\u0442\u0443. \u041E\u043D\u043E\u0432\u0456\u0442\u044C \u0441\u0432\u0456\u0439 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447 \u0434\u043E \u043E\u0441\u0442\u0430\u043D\u043D\u044C\u043E\u0457 \u0432\u0435\u0440\u0441\u0456\u0457 (\u0430\u0431\u043E \u043F\u0440\u043E\u0441\u0442\u043E \u0437\u0430\u043C\u0456\u043D\u0438\u0442\u0438 \u0432\u0430\u0448 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447) \u0434\u043B\u044F \u0442\u043E\u0433\u043E, \u0449\u043E\u0431 \u043F\u043E\u043B\u0456\u043F\u0448\u0438\u0442\u0438 \u044F\u043A\u0456\u0441\u0442\u044C \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u0438\u0445 \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432, \u044F\u043A\u0456 \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0430\u044E\u0442\u044C\u0441\u044F \u043D\u0430 \u0446\u0456\u0439 \u0441\u0442\u043E\u0440\u0456\u043D\u0446\u0456.", + fonts: "MathJax \u043C\u043E\u0436\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0437 [STIX \u0448\u0440\u0438\u0444\u0442\u0456\u0432](%1) \u0430\u0431\u043E [\u0448\u0440\u0438\u0444\u0442\u0456\u0432 MathJax-TeX](%2). \u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0442\u0435 \u0456 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u0456\u0442\u044C \u043E\u0434\u0438\u043D \u0437 \u0446\u0438\u0445 \u0448\u0440\u0438\u0444\u0442\u0456\u0432, \u0430\u0431\u0438 \u043F\u043E\u043B\u0456\u043F\u0448\u0438\u0442\u0438 MathJax \u0440\u043E\u0431\u043E\u0442\u0443.", + STIXPage: "\u0426\u044F \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u0431\u0443\u043B\u0430 \u0440\u043E\u0437\u0440\u043E\u0431\u043B\u0435\u043D\u0430, \u0449\u043E\u0431 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 [STIX \u0448\u0440\u0438\u0444\u0442\u0438](%1). \u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0442\u0435 \u0442\u0430 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u0456\u0442\u044C \u0457\u0445, \u0430\u0431\u0438 \u043F\u043E\u043B\u0456\u043F\u0448\u0438\u0442\u0438 \u0432\u0430\u0448 \u0434\u043E\u0441\u0432\u0456\u0434 MathJax.", + TeXPage: "\u0426\u044F \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430 \u0431\u0443\u043B\u0430 \u0440\u043E\u0437\u0440\u043E\u0431\u043B\u0435\u043D\u0430, \u0449\u043E\u0431 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 [\u0448\u0440\u0438\u0444\u0442\u0438 MathJax TeX](%1). \u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0442\u0435 \u0442\u0430 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u0456\u0442\u044C \u0457\u0445, \u0430\u0431\u0438 \u0437\u0431\u0456\u043B\u044C\u0448\u0438\u0442\u0438 \u0432\u0430\u0448 \u0434\u043E\u0441\u0432\u0456\u0434 \u0437 MathJax." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/uk/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/uk/HTML-CSS.js b/modules/MathJax/unpacked/localization/uk/HTML-CSS.js new file mode 100644 index 0000000..79ef50b --- /dev/null +++ b/modules/MathJax/unpacked/localization/uk/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/uk/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("uk","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F \u0432\u0435\u0431 \u0448\u0440\u0438\u0444\u0442\u0456\u0432 %1", + CantLoadWebFont: "\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0432\u0435\u0431 \u0448\u0440\u0438\u0444\u0442 %1", + FirefoxCantLoadWebFont: "Firefox \u043D\u0435 \u043C\u043E\u0436\u0435 \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0432\u0435\u0431 \u0448\u0440\u0438\u0444\u0442\u0438 \u0437 \u0432\u0456\u0434\u0434\u0430\u043B\u0435\u043D\u043E\u0433\u043E \u0445\u043E\u0441\u0442\u0443", + CantFindFontUsing: "\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0437\u043D\u0430\u0439\u0442\u0438 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 \u0448\u0440\u0438\u0444\u0442 \u0437\u0430 \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u043E\u044E %1", + WebFontsNotAvailable: "\u0412\u0435\u0431-\u0448\u0440\u0438\u0444\u0442\u0438 \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0456. \u0421\u043B\u0456\u0434 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0448\u0440\u0438\u0444\u0442\u0438 -\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/uk/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/uk/HelpDialog.js b/modules/MathJax/unpacked/localization/uk/HelpDialog.js new file mode 100644 index 0000000..8b85301 --- /dev/null +++ b/modules/MathJax/unpacked/localization/uk/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/uk/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("uk","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "MathJax \u0434\u043E\u043F\u043E\u043C\u043E\u0433\u0430", + MathJax: "*MathJax* - \u0446\u0435 \u0431\u0456\u0431\u043B\u0456\u043E\u0442\u0435\u043A\u0430 \u043D\u0430 JavaScript, \u044F\u043A\u0430 \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0454 \u0430\u0432\u0442\u043E\u0440\u0430\u043C \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0438 \u0432\u043A\u043B\u044E\u0447\u0438\u0442\u0438 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0443 \u043D\u0430 \u0432\u0441\u0456\u0445 \u0441\u0432\u043E\u0457\u0445 \u0432\u0435\u0431-\u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0430\u0445. \u042F\u043A \u0447\u0438\u0442\u0430\u0447, \u0432\u0430\u043C \u043D\u0435 \u043F\u043E\u0442\u0440\u0456\u0431\u043D\u043E \u043D\u0456\u0447\u043E\u0433\u043E \u0440\u043E\u0431\u0438\u0442\u0438, \u0449\u043E\u0431 \u0446\u0435 \u0432\u0456\u0434\u0431\u0443\u043B\u043E\u0441\u044F.", + Browsers: "*\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447\u0456*: MathJax \u043F\u0440\u0430\u0446\u044E\u0454 \u0437 \u0443\u0441\u0456\u043C\u0430 \u0441\u0443\u0447\u0430\u0441\u043D\u0438\u043C\u0438 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447\u0430\u043C\u0438, \u0432\u043A\u043B\u044E\u0447\u0430\u044E\u0447\u0438 Internet Explorer 6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ \u0456 \u0431\u0456\u043B\u044C\u0448\u0456\u0441\u0442\u044C \u043C\u043E\u0431\u0456\u043B\u044C\u043D\u0438\u0445 \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447\u0456\u0432.", + Menu: "*\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u0435 \u043C\u0435\u043D\u044E*: MathJax \u0434\u043E\u0434\u0430\u0454 \u043A\u043E\u043D\u0442\u0435\u043A\u0441\u0442\u043D\u0435 \u043C\u0435\u043D\u044E \u0434\u043E \u0440\u0456\u0432\u043D\u044F\u043D\u044C. \u041A\u043B\u0430\u0446\u0430\u043D\u043D\u044F \u043F\u0440\u0430\u0432\u043E\u044E \u043A\u043D\u043E\u043F\u043A\u043E\u044E \u043C\u0438\u0448\u0456 \u0430\u0431\u043E CTRL+\u043A\u043B\u0430\u0446\u0430\u043D\u043D\u044F \u043B\u0456\u0432\u043E\u044E \u043D\u0430 \u0431\u0443\u0434\u044C-\u044F\u043A\u043E\u043C\u0443 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u043E\u043C\u0443 \u0432\u0438\u0440\u0430\u0437\u0456 \u0432\u0456\u0434\u043A\u0440\u0438\u0432\u0430\u0454 \u0434\u043E\u0441\u0442\u0443\u043F \u0434\u043E \u0446\u044C\u043E\u0433\u043E \u043C\u0435\u043D\u044E.", + ShowMath: "*\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0443 \u044F\u043A* \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0454 \u0432\u0430\u043C \u043F\u0435\u0440\u0435\u0433\u043B\u044F\u043D\u0443\u0442\u0438 \u043E\u0440\u0438\u0433\u0456\u043D\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u0434 \u0444\u043E\u0440\u043C\u0443\u043B\u0438 \u0434\u043B\u044F \u043A\u043E\u043F\u0456\u044E\u0432\u0430\u043D\u043D\u044F \u0442\u0430 \u0432\u0441\u0442\u0430\u0432\u043A\u0438 (\u044F\u043A MathML \u0430\u0431\u043E \u0443 \u0457\u0457 \u0432\u043B\u0430\u0441\u043D\u043E\u043C\u0443 \u0444\u043E\u0440\u043C\u0430\u0442\u0456).", + Settings: "*\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F* \u0434\u0430\u044E\u0442\u044C \u0432\u0430\u043C \u043F\u043E\u0432\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043D\u0430\u0434 \u0444\u0443\u043D\u043A\u0446\u0456\u044F\u043C\u0438 MathJax \u0442\u0430\u043A\u0438\u043C\u0438 \u044F\u043A \u0440\u043E\u0437\u043C\u0456\u0440 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u0438\u0445 \u0432\u0438\u0440\u0430\u0437\u0456\u0432 \u0456 \u043C\u0435\u0445\u0430\u043D\u0456\u0437\u043C, \u044F\u043A\u0438\u0439 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u0434\u043B\u044F \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F \u0440\u0456\u0432\u043D\u044F\u043D\u044C.", + Language: "*\u041C\u043E\u0432\u0430* \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0454 \u0432\u0430\u043C \u0432\u0438\u0431\u0440\u0430\u0442\u0438 \u043C\u043E\u0432\u0443 \u0434\u043B\u044F \u043C\u0435\u043D\u044E \u0442\u0430 \u043F\u043E\u043F\u0435\u0440\u0435\u0434\u0436\u0435\u043D\u044C MathJax.", + Zoom: "*\u041C\u0430\u0441\u0448\u0442\u0430\u0431\u0443\u0432\u0430\u043D\u043D\u044F \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0438*: \u044F\u043A\u0449\u043E \u0443 \u0432\u0430\u0441 \u0432\u0438\u043D\u0438\u043A\u043B\u0438 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0438 \u043F\u0440\u0438 \u0447\u0438\u0442\u0430\u043D\u043D\u0456 \u0440\u0456\u0432\u043D\u044F\u043D\u043D\u044F, MathJax \u043C\u043E\u0436\u0435 \u0437\u0431\u0456\u043B\u044C\u0448\u0438\u0442\u0438 \u0457\u0445, \u0449\u043E\u0431 \u0432\u0438 \u043C\u043E\u0433\u043B\u0438 \u043F\u043E\u0431\u0430\u0447\u0438\u0442\u0438 \u0457\u0445 \u043A\u0440\u0430\u0449\u0435.", + Accessibilty: "*\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0456\u0441\u0442\u044C*: MathJax \u0431\u0443\u0434\u0435 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u043F\u0440\u0430\u0446\u044E\u0432\u0430\u0442\u0438 \u0437 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430\u043C\u0438 \u0447\u0438\u0442\u0430\u043D\u043D\u044F \u0435\u043A\u0440\u0430\u043D\u0443, \u0430\u0431\u0438 \u0437\u0440\u043E\u0431\u0438\u0442\u0438 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0443 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E\u044E \u0434\u043B\u044F \u043D\u0435\u0437\u0440\u044F\u0447\u0438\u0445.", + Fonts: "*\u0428\u0440\u0438\u0444\u0442\u0438*: MathJax \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454 \u0441\u043F\u0435\u0446\u0456\u0430\u043B\u044C\u043D\u0456 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u0456 \u0448\u0440\u0438\u0444\u0442\u0438, \u044F\u043A\u0449\u043E \u0432\u043E\u043D\u0438 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0456 \u043D\u0430 \u0432\u0430\u0448\u043E\u043C\u0443 \u043A\u043E\u043C\u043F'\u044E\u0442\u0435\u0440\u0456. \u0412 \u0456\u043D\u0448\u043E\u043C\u0443 \u0432\u0438\u043F\u0430\u0434\u043A\u0443 \u0432\u0435\u0431-\u0448\u0440\u0438\u0444\u0442\u0438. \u0425\u043E\u0447\u0430 \u0446\u0435 \u0456 \u043D\u0435 \u0454 \u043E\u0431\u043E\u0432'\u044F\u0437\u043A\u043E\u0432\u0438\u043C, \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u043E \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0456 \u0448\u0440\u0438\u0444\u0442\u0438 \u043F\u0440\u0438\u0441\u043A\u043E\u0440\u044F\u0442\u044C \u0432\u0435\u0440\u0441\u0442\u043A\u0443. \u041C\u0438 \u0440\u0435\u043A\u043E\u043C\u0435\u043D\u0434\u0443\u0454\u043C\u043E \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438 [STIX-\u0448\u0440\u0438\u0444\u0442\u0438](%1)." + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/uk/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/uk/MathML.js b/modules/MathJax/unpacked/localization/uk/MathML.js new file mode 100644 index 0000000..ce953e7 --- /dev/null +++ b/modules/MathJax/unpacked/localization/uk/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/uk/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("uk","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 mglyph: %1", + BadMglyphFont: "\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0438\u0439 \u0448\u0440\u0438\u0444\u0442:%1", + MathPlayer: "MathJax \u0431\u0443\u0432 \u043D\u0435 \u0443 \u0437\u043C\u043E\u0437\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 MathPlayer.\n\n\u042F\u043A\u0449\u043E MathPlayer \u043D\u0435 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E\u200B\u200B, \u043D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u043E \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438 \u0439\u043E\u0433\u043E. \u0412 \u0456\u043D\u0448\u043E\u043C\u0443 \u0432\u0438\u043F\u0430\u0434\u043A\u0443, \u0432\u0430\u0448\u0456 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0431\u0435\u0437\u043F\u0435\u043A\u0438 \u043C\u043E\u0436\u0443\u0442\u044C \u0431\u043B\u043E\u043A\u0443\u0432\u0430\u0442\u0438 \u0443\u043F\u0440\u0430\u0432\u043B\u0456\u043D\u043D\u044F ActiveX \u043F\u0440\u0438 \u0437\u0430\u043F\u0443\u0441\u043A\u0443. \u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u043F\u0443\u043D\u043A\u0442 \u0412\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456 \u0456\u043D\u0442\u0435\u0440\u043D\u0435\u0442\u0443 \u0443 \u043C\u0435\u043D\u044E \u0406\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u0438 \u0456 \u0432\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u0432\u043A\u043B\u0430\u0434\u043A\u0443 \u0411\u0435\u0437\u043F\u0435\u043A\u0430, \u0430 \u043F\u043E\u0442\u0456\u043C \u043D\u0430\u0442\u0438\u0441\u043D\u0456\u0442\u044C \u043A\u043D\u043E\u043F\u043A\u0443 \u0412\u043B\u0430\u0441\u043D\u0438\u0439 \u0440\u0456\u0432\u0435\u043D\u044C. \u041F\u0435\u0440\u0435\u043A\u043E\u043D\u0430\u0439\u0442\u0435\u0441\u044F, \u0449\u043E \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u0434\u043B\u044F \"\u0417\u0430\u043F\u0443\u0441\u043A \u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0456\u0432 ActiveX\" \u0456 \"\u0414\u0432\u0456\u0439\u043A\u043E\u0432\u0456 \u043A\u043E\u0434\u0438 \u0456 \u0441\u0446\u0435\u043D\u0430\u0440\u0456\u0457 \u043F\u043E\u0432\u0435\u0434\u0456\u043D\u043A\u0438\"\n\u0432\u043A\u043B\u044E\u0447\u0435\u043D\u0456.\n\n\u0412 \u0434\u0430\u043D\u0438\u0439 \u0447\u0430\u0441 \u0432\u0438 \u043F\u043E\u0431\u0430\u0447\u0438\u0442\u0435 \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F \u043F\u0440\u043E \u043F\u043E\u043C\u0438\u043B\u043A\u0443, \u0430 \u043D\u0435\n\u043D\u0430\u0431\u0440\u0430\u043D\u0443 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0443.", + CantCreateXMLParser: "MathJax \u043D\u0435 \u043C\u043E\u0436\u0435 \u0441\u0442\u0432\u043E\u0440\u0438\u0442\u0438 \u0441\u0438\u043D\u0442\u0430\u043A\u0441\u0438\u0447\u043D\u0438\u0439 \u0430\u043D\u0430\u043B\u0456\u0437\u0430\u0442\u043E\u0440 XML \u0434\u043B\u044F MathML. \u041F\u0435\u0440\u0435\u043A\u043E\u043D\u0430\u0439\u0442\u0435\u0441\u044F, \u0449\u043E \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 \u201E\u0421\u0446\u0435\u043D\u0430\u0440\u0456\u0457 ActiveX \u043F\u043E\u0437\u043D\u0430\u0447\u0435\u043D\u0456 \u044F\u043A \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u0456 \u0434\u043B\u044F \u0432\u0438\u043A\u043E\u043D\u0430\u043D\u043D\u044F \u0441\u0446\u0435\u043D\u0430\u0440\u0456\u0457\u0432 \u0431\u0435\u0437\u043F\u0435\u043A\u0438\u201C\n \u0443\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u0438\u0439 (\u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u043F\u0443\u043D\u043A\u0442 \u0412\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456 \u0456\u043D\u0442\u0435\u0440\u043D\u0435\u0442\u0443 \u0432 \u043C\u0435\u043D\u044E \u0406\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u0438 \u0456 \u0432\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u043F\u0430\u043D\u0435\u043B\u044C \u0411\u0435\u0437\u043F\u0435\u043A\u0430, \u043F\u043E\u0442\u0456\u043C \u043D\u0430\u0442\u0438\u0441\u043D\u0456\u0442\u044C \u043A\u043D\u043E\u043F\u043A\u0443 \u0412\u043B\u0430\u0441\u043D\u0438\u0439 \u0440\u0456\u0432\u0435\u043D\u044C, \u0449\u043E\u0431 \u0432\u0456\u0434\u043C\u0456\u0442\u0438\u0442\u0438 \u0446\u0435).\n\nMathML \u0440\u0456\u0432\u043D\u044F\u043D\u043D\u044F \u043D\u0435 \u0437\u043C\u043E\u0436\u0443\u0442\u044C \u0431\u0443\u0442\u0438 \u043E\u0431\u0440\u043E\u0431\u043B\u0435\u043D\u0456 MathJax.", + UnknownNodeType: "\u041D\u0435\u0432\u0456\u0434\u043E\u043C\u0438\u0439 \u0442\u0438\u043F \u0432\u0443\u0437\u043B\u0430: %1", + UnexpectedTextNode: "\u041D\u0435\u043F\u0435\u0440\u0435\u0434\u0431\u0430\u0447\u0435\u043D\u0438\u0439 \u0442\u0435\u043A\u0441\u0442\u043E\u0432\u0438\u0439 \u0432\u0443\u0437\u043E\u043B: %1", + ErrorParsingMathML: "\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u0430\u043D\u0430\u043B\u0456\u0437\u0443 MathML", + ParsingError: "\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u0430\u043D\u0430\u043B\u0456\u0437\u0443 MathML: %1", + MathMLSingleElement: "MathML \u043F\u043E\u0432\u0438\u043D\u0435\u043D \u0431\u0443\u0442\u0438 \u0441\u0444\u043E\u0440\u043C\u043E\u0432\u0430\u043D\u0438\u0439 \u043E\u0434\u043D\u0438\u043C \u0435\u043B\u0435\u043C\u0435\u043D\u0442\u043E\u043C", + MathMLRootElement: "MathML \u043F\u043E\u0432\u0438\u043D\u0435\u043D \u0431\u0443\u0442\u0438 \u0441\u0444\u043E\u0440\u043C\u043E\u0432\u0430\u043D\u0438\u0439 \u003Cmath\u003E \u0435\u043B\u0435\u043C\u0435\u043D\u0442\u043E\u043C, \u0430 \u043D\u0435 %1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/uk/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/uk/MathMenu.js b/modules/MathJax/unpacked/localization/uk/MathMenu.js new file mode 100644 index 0000000..a9ef638 --- /dev/null +++ b/modules/MathJax/unpacked/localization/uk/MathMenu.js @@ -0,0 +1,105 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/uk/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("uk","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "\u041F\u043E\u043A\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0443 \u044F\u043A", + MathMLcode: "\u041A\u043E\u0434 MathML", + OriginalMathML: "\u041E\u0440\u0438\u0433\u0456\u043D\u0430\u043B\u044C\u043D\u0438\u0439 MathML", + TeXCommands: "\u041A\u043E\u043C\u0430\u043D\u0434\u0438 TeX", + AsciiMathInput: "\u0412\u0432\u0456\u0434 AsciiMathML", + Original: "\u041E\u0440\u0438\u0433\u0456\u043D\u0430\u043B\u044C\u043D\u0430 \u0444\u043E\u0440\u043C\u0430", + ErrorMessage: "\u041F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F \u043F\u0440\u043E \u043F\u043E\u043C\u0438\u043B\u043A\u0443", + Annotation: "\u0410\u043D\u043E\u0442\u0430\u0446\u0456\u044F", + TeX: "TeX", + StarMath: "StarMath", + Maple: "Maple", + ContentMathML: "\u0417\u043C\u0456\u0441\u0442 MathML", + OpenMath: "OpenMath", + texHints: "\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u043F\u043E\u0440\u0430\u0434\u0438 TeX \u0432 MathML", + Settings: "\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0438", + ZoomTrigger: "\u041F\u0443\u0441\u043A \u043C\u0430\u0441\u0448\u0442\u0430\u0431\u0443", + Hover: "\u041F\u0456\u0434\u043D\u0435\u0441\u0435\u043D\u043D\u044F \u043A\u0443\u0440\u0441\u043E\u0440\u0430", + Click: "\u041A\u043B\u0456\u043A", + DoubleClick: "\u041F\u043E\u0434\u0432\u0456\u0439\u043D\u0438\u0439 \u043A\u043B\u0456\u043A", + NoZoom: "\u0411\u0435\u0437 \u043C\u0430\u0441\u0448\u0442\u0430\u0431\u0443\u0432\u0430\u043D\u043D\u044F", + TriggerRequires: "\u041D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u0456 \u043A\u043B\u044E\u0447\u0456:", + Option: "\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440", + Alt: "Alt", + Command: "\u041A\u043E\u043C\u0430\u043D\u0434\u0430", + Control: "\u041A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F", + Shift: "Shift", + ZoomFactor: "\u041C\u043D\u043E\u0436\u043D\u0438\u043A \u043C\u0430\u0441\u0448\u0442\u0430\u0431\u0443\u0432\u0430\u043D\u043D\u044F", + Renderer: "\u0412\u0456\u0437\u0443\u0430\u043B\u0456\u0437\u0430\u0446\u0456\u044F \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0438", + MPHandles: "MathPlayer \u043E\u043F\u0440\u0430\u0446\u044C\u043E\u0432\u0443\u0454:", + MenuEvents: "\u041F\u043E\u0434\u0456\u0457 \u043C\u0435\u043D\u044E", + MouseEvents: "\u041F\u043E\u0434\u0456\u0457 \u043C\u0438\u0448\u043A\u0438", + MenuAndMouse: "\u041F\u043E\u0434\u0456\u0457 \u043C\u0435\u043D\u044E \u0456 \u043C\u0438\u0448\u043A\u0438", + FontPrefs: "\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u043A\u0438 \u0448\u0442\u0440\u0438\u0444\u0442\u0443", + ForHTMLCSS: "\u0414\u043B\u044F HTML-CSS:", + Auto: "\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E", + TeXLocal: "TeX (\u043B\u043E\u043A\u0430\u043B\u044C\u043D\u0438\u0439)", + TeXWeb: "TeX (\u0432\u0435\u0431)", + TeXImage: "TeX (\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F)", + STIXLocal: "STIX (\u043B\u043E\u043A\u0430\u043B\u044C\u043D\u0438\u0439)", + ContextMenu: "\u041A\u043E\u043D\u0442\u0435\u043A\u0441\u0442\u043D\u0435 \u043C\u0435\u043D\u044E", + Browser: "\u041E\u0433\u043B\u044F\u0434", + Scale: "\u041C\u0430\u0441\u0448\u0442\u0430\u0431\u0443\u0432\u0430\u0442\u0438 \u0443\u0441\u044E \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0443\u2026", + Discoverable: "\u041F\u0456\u0434\u0441\u0432\u0456\u0442\u043A\u0430 \u043F\u0440\u0438 \u043D\u0430\u0432\u0435\u0434\u0435\u043D\u043D\u0456", + Locale: "\u041C\u043E\u0432\u0430", + LoadLocale: "\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0437 URL...", + About: "\u041F\u0440\u043E MathJax", + Help: "\u0414\u043E\u043F\u043E\u043C\u043E\u0433\u0430 MathJax", + localTeXfonts: "\u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0442\u044C\u0441\u044F \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u0456 \u0448\u0440\u0438\u0444\u0442\u0438 TeX", + webTeXfonts: "\u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0442\u044C\u0441\u044F \u0432\u0435\u0431-\u0448\u0440\u0438\u0444\u0442\u0438 TeX", + imagefonts: "\u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0442\u044C\u0441\u044F \u0448\u0440\u0438\u0444\u0442\u0438 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u044C", + localSTIXfonts: "\u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0447\u0438 \u043B\u043E\u043A\u0430\u043B\u044C\u043D\u0456 STIX-\u0448\u0440\u0438\u0444\u0442\u0438", + webSVGfonts: "\u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0447\u0438 SVG \u0432\u0435\u0431-\u0448\u0440\u0438\u0444\u0442\u0438", + genericfonts: "\u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0447\u0438 \u0437\u0433\u0435\u043D\u0435\u0440\u043E\u0432\u0430\u043D\u0456 \u044E\u043D\u0456\u043A\u043E\u0434\u043D\u0456 \u0448\u0440\u0438\u0444\u0442\u0438", + wofforotffonts: "\u0448\u0440\u0438\u0444\u0442\u0438 woff \u0430\u0431\u043E otf", + eotffonts: "\u0448\u0440\u0438\u0444\u0442\u0438 eot", + svgfonts: "\u0448\u0440\u0438\u0444\u0442\u0438 svg", + WebkitNativeMMLWarning: "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043D\u0435 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0454 MathML, \u0442\u043E\u043C\u0443 \u043F\u0435\u0440\u0435\u043C\u0438\u043A\u0430\u043D\u043D\u044F \u0432\u0438\u0432\u043E\u0434\u0443 \u0434\u043E MathML \u043C\u043E\u0436\u0435 \u043F\u0440\u0438\u0437\u0432\u0435\u0441\u0442\u0438, \u0449\u043E \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0443 \u043D\u0430 \u0446\u0456\u0439 \u0441\u0442\u043E\u0440\u0456\u043D\u0446\u0456 \u0441\u0442\u0430\u043D\u0435 \u043D\u0435\u043C\u043E\u0436\u043B\u0438\u0432\u043E \u043F\u0440\u043E\u0447\u0438\u0442\u0430\u0442\u0438.", + MSIENativeMMLWarning: "\u0412\u0435\u0431-\u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447 Internet Explorer \u043F\u043E\u0442\u0440\u0435\u0431\u0443\u0454 \u043C\u043E\u0434\u0443\u043B\u044C MathPlayer \u0434\u043B\u044F \u043E\u0431\u0440\u043E\u0431\u043A\u0438 \u0432\u0438\u0432\u043E\u0434\u0443 MathML.", + OperaNativeMMLWarning: "\u041E\u0431\u043C\u0435\u0436\u0435\u043D\u0430 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u043A\u0430 MathML \u0432 Opera, \u0442\u043E\u043C\u0443 \u043F\u0435\u0440\u0435\u043C\u0438\u043A\u0430\u043D\u043D\u044F \u0432\u0438\u0432\u043E\u0434\u0443 \u043D\u0430 MathML \u043C\u043E\u0436\u0443\u0442\u044C \u0432\u0438\u043A\u043B\u0438\u043A\u0430\u0442\u0438, \u0449\u043E \u0434\u0435\u044F\u043A\u0456 \u0432\u0438\u0440\u0430\u0437\u0438 \u043C\u043E\u0436\u0443\u0442\u044C \u043F\u043E\u0433\u0430\u043D\u043E \u0432\u0456\u0434\u043E\u0431\u0440\u0430\u0436\u0430\u0442\u0438\u043C\u0443\u0442\u044C\u0441\u044F.", + SafariNativeMMLWarning: "MathML \u0432\u0430\u0448\u043E\u0433\u043E \u0432\u0435\u0431-\u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447\u0430 \u043D\u0435 \u0440\u0435\u0430\u043B\u0456\u0437\u0443\u0454 \u0432\u0441\u0456 \u0444\u0443\u043D\u043A\u0446\u0456\u0457, \u044F\u043A\u0456 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0442\u044C\u0441\u044F MathJax. \u0422\u0430\u043A\u0438\u043C \u0447\u0438\u043D\u043E\u043C, \u0434\u0435\u044F\u043A\u0456 \u0432\u0438\u0440\u0430\u0437\u0438 \u043C\u043E\u0436\u0443\u0442\u044C \u043D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E \u0432\u0456\u0437\u0443\u0430\u043B\u0456\u0437\u0443\u0432\u0430\u0442\u0438\u0441\u044F.", + FirefoxNativeMMLWarning: "MathML \u0432\u0430\u0448\u043E\u0433\u043E \u0432\u0435\u0431-\u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447\u0430 \u043D\u0435 \u0440\u0435\u0430\u043B\u0456\u0437\u0443\u0454 \u0432\u0441\u0456 \u0444\u0443\u043D\u043A\u0446\u0456\u0457, \u044F\u043A\u0456 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u044E\u0442\u044C\u0441\u044F MathJax. \u0422\u0430\u043A\u0438\u043C \u0447\u0438\u043D\u043E\u043C, \u0434\u0435\u044F\u043A\u0456 \u0432\u0438\u0440\u0430\u0437\u0438 \u043C\u043E\u0436\u0443\u0442\u044C \u043D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u043E \u0432\u0456\u0437\u0443\u0430\u043B\u0456\u0437\u0443\u0432\u0430\u0442\u0438\u0441\u044F.", + MSIESVGWarning: "SVG \u043D\u0435 \u0440\u0435\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E \u0443 \u0432\u0435\u0431-\u043F\u0435\u0440\u0435\u0433\u043B\u044F\u0434\u0430\u0447\u0456 Internet Explorer \u0432\u0435\u0440\u0441\u0456\u0457 9 \u0430\u0431\u043E \u0435\u043C\u0443\u043B\u044E\u0454\u0442\u044C\u0441\u044F \u0432 IE8 \u0430\u0431\u043E \u043D\u0438\u0436\u0447\u0435, \u0442\u043E\u043C\u0443 \u043F\u0435\u0440\u0435\u043C\u0438\u043A\u0430\u043D\u043D\u044F \u043D\u0430 \u0432\u0438\u0432\u0456\u0434 SVG \u043C\u043E\u0436\u0435 \u043F\u0440\u0438\u0437\u0432\u0435\u0441\u0442\u0438, \u0449\u043E \u0446\u044E \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0443 \u0441\u0442\u0430\u043D\u0435 \u043D\u0435\u043C\u043E\u0436\u043B\u0438\u0432\u043E \u043F\u0440\u043E\u0447\u0438\u0442\u0430\u0442\u0438.", + LoadURL: "\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0434\u0430\u043D\u0456 \u043F\u0435\u0440\u0435\u043A\u043B\u0430\u0434\u0443 \u0437 \u0446\u044C\u043E\u0433\u043E URL:", + BadURL: "URL-\u0430\u0434\u0440\u0435\u0441\u0430 \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u0434\u043B\u044F JavaScript \u0444\u0430\u0439\u043B\u0443, \u044F\u043A\u0438\u0439 \u0432\u0438\u0437\u043D\u0430\u0447\u0430\u0454 MathJax \u0434\u0430\u043D\u0456 \u043F\u0435\u0440\u0435\u043A\u043B\u0430\u0434\u0443. \u0406\u043C'\u044F \u0444\u0430\u0439\u043B\u0443 JavaScript \u043F\u043E\u0432\u0438\u043D\u043D\u043E \u0437\u0430\u043A\u0456\u043D\u0447\u0443\u0432\u0430\u0442\u0438\u0441\u044F \u043D\u0430 \".js\"", + BadData: "\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u043F\u0435\u0440\u0435\u043A\u043B\u0430\u0434\u0438 \u0437 %1", + SwitchAnyway: "\u0417\u043C\u0456\u043D\u0438\u0442\u0438 \u0432\u0456\u0437\u0443\u0430\u043B\u0456\u0437\u0430\u0442\u043E\u0440?\n\n(\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044C \u0413\u0430\u0440\u0430\u0437\u0434, \u0449\u043E\u0431 \u0437\u043C\u0456\u043D\u0438\u0442\u0438, \u0430\u0431\u043E \u0441\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0434\u043B\u044F \u043F\u0440\u043E\u0434\u043E\u0432\u0436\u0435\u043D\u043D\u044F \u043F\u043E\u0442\u043E\u0447\u043D\u043E\u0433\u043E \u0432\u0456\u0437\u0443\u0430\u043B\u0456\u0437\u0430\u0442\u043E\u0440\u0430)", + ScaleMath: "\u041C\u0430\u0441\u0448\u0442\u0430\u0431\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0456 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u0456 \u0432\u0438\u0440\u0430\u0437\u0438 (\u0443 \u043F\u043E\u0440\u0456\u0432\u043D\u044F\u043D\u043D\u0456 \u0437 \u043E\u0442\u043E\u0447\u0443\u044E\u0447\u0438\u043C \u0442\u0435\u043A\u0441\u0442\u043E\u043C)", + NonZeroScale: "\u041C\u0430\u0441\u0448\u0442\u0430\u0431 \u043D\u0435 \u043F\u043E\u0432\u0438\u043D\u0435\u043D \u0431\u0443\u0442\u0438 \u043D\u0443\u043B\u0435\u043C", + PercentScale: "\u041C\u0430\u0441\u0448\u0442\u0430\u0431\u0443\u0432\u0430\u043D\u043D\u044F \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u0443 \u0432\u0456\u0434\u0441\u043E\u0442\u043A\u0430\u0445 (\u043D\u0430\u043F\u0440\u0438\u043A\u043B\u0430\u0434, 120%%)", + IE8warning: "\u0426\u0435 \u0432\u0438\u043C\u0438\u043A\u0430\u0454 MathJax \u043C\u0435\u043D\u044E \u0442\u0430 \u0444\u0443\u043D\u043A\u0446\u0456\u0457 \u043C\u0430\u0441\u0448\u0442\u0430\u0431\u0443\u0432\u0430\u043D\u043D\u044F, \u0430\u043B\u0435 \u0432\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u0443\u0442\u0440\u0438\u043C\u0443\u0432\u0430\u0442\u0438 ALT \u043F\u0456\u0434 \u0447\u0430\u0441 \u043A\u043B\u0456\u043A\u0456\u0432 \u043C\u0438\u0448\u0456 \u043D\u0430 \u0432\u0438\u0440\u0430\u0437\u0456 \u0434\u043B\u044F \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u043D\u0430\u0442\u043E\u043C\u0456\u0441\u0442\u044C \u043C\u0435\u043D\u044E MathJax.\n\n\u0414\u0456\u0439\u0441\u043D\u043E \u0437\u043C\u0456\u043D\u0438\u0442\u0438 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F MathPlayer?", + IE9warning: "MathJax \u043A\u043E\u043D\u0442\u0435\u043A\u0441\u0442\u043D\u0435 \u043C\u0435\u043D\u044E \u0432\u0456\u0434\u043A\u043B\u044E\u0447\u0435\u043D\u043E, \u0430\u043B\u0435 \u0432\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u043D\u0430\u0442\u0438\u0441\u043D\u0443\u0442\u0438 ALT \u043F\u0456\u0434 \u0447\u0430\u0441 \u043A\u043B\u0456\u043A\u0456\u0432 \u043C\u0438\u0448\u0456 \u0434\u043B\u044F \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u044F MathJax \u043C\u0435\u043D\u044E.", + NoOriginalForm: "\u041D\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \u043E\u0440\u0438\u0433\u0456\u043D\u0430\u043B\u044C\u043D\u0430 \u0444\u043E\u0440\u043C\u0430", + Close: "\u0417\u0430\u043A\u0440\u0438\u0442\u0438", + EqSource: "\u0414\u0436\u0435\u0440\u0435\u043B\u043E \u0440\u0456\u0432\u043D\u044F\u043D\u043D\u044F MathJax" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/uk/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/uk/TeX.js b/modules/MathJax/unpacked/localization/uk/TeX.js new file mode 100644 index 0000000..c796ae3 --- /dev/null +++ b/modules/MathJax/unpacked/localization/uk/TeX.js @@ -0,0 +1,102 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/uk/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("uk","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "\u0417\u0430\u0439\u0432\u0430 \u0432\u0456\u0434\u043A\u0440\u0438\u0442\u0430 \u0444\u0456\u0433\u0443\u0440\u043D\u0430 \u0434\u0443\u0436\u043A\u0430 \u0430\u0431\u043E \u0432\u0456\u0434\u0441\u0443\u0442\u043D\u044F \u0437\u0430\u043A\u0440\u0438\u0442\u0430 \u0444\u0456\u0433\u0443\u0440\u043D\u0430 \u0434\u0443\u0436\u043A\u0430", + ExtraCloseMissingOpen: "\u0417\u0430\u0439\u0432\u0430 \u0437\u0430\u043A\u0440\u0438\u0442\u0430 \u0444\u0456\u0433\u0443\u0440\u043D\u0430 \u0434\u0443\u0436\u043A\u0430 \u0430\u0431\u043E \u0432\u0456\u0434\u0441\u0443\u0442\u043D\u044F \u0432\u0456\u0434\u043A\u0440\u0438\u0442\u0430 \u0444\u0456\u0433\u0443\u0440\u043D\u0430 \u0434\u0443\u0436\u043A\u0430", + MissingLeftExtraRight: "\u0412\u0456\u0434\u0441\u0443\u0442\u043D\u0456\u0439 \\left \u0430\u0431\u043E \u0437\u0430\u0439\u0432\u0438\u0439 \\right", + MissingScript: "\u0412\u0456\u0434\u0441\u0443\u0442\u043D\u0456 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u0438 \u0432\u0435\u0440\u0445\u043D\u044C\u043E\u0433\u043E \u0456 \u043D\u0438\u0436\u043D\u044C\u043E\u0433\u043E \u0456\u043D\u0434\u0435\u043A\u0441\u0456\u0432", + ExtraLeftMissingRight: "\u0417\u0430\u0439\u0432\u0438\u0439 \\left \u0430\u0431\u043E \u0432\u0456\u0434\u0441\u0443\u0442\u043D\u0456\u0439 \\right", + Misplaced: "\u041D\u0435\u0432\u0456\u0440\u043D\u0438\u0439 %1", + MissingOpenForSub: "\u0411\u0440\u0430\u043A\u0443\u0454 \u0432\u0456\u0434\u043A\u0440\u0438\u0432\u0430\u044E\u0447\u043E\u0457 \u0434\u0443\u0436\u043A\u0438 \u0434\u043B\u044F \u043D\u0438\u0436\u043D\u044C\u043E\u0433\u043E \u0456\u043D\u0434\u0435\u043A\u0441\u0443", + MissingOpenForSup: "\u0411\u0440\u0430\u043A\u0443\u0454 \u0432\u0456\u0434\u043A\u0440\u0438\u0432\u0430\u044E\u0447\u043E\u0457 \u0434\u0443\u0436\u043A\u0438 \u0434\u043B\u044F \u0432\u0435\u0440\u0445\u043D\u044C\u043E\u0433\u043E \u0456\u043D\u0434\u0435\u043A\u0441\u0443", + AmbiguousUseOf: "\u041D\u0435\u043E\u0434\u043D\u043E\u0437\u043D\u0430\u0447\u043D\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F %1", + EnvBadEnd: "\\begin{%1} \u0437\u0430\u043A\u0456\u043D\u0447\u0438\u0432\u0441\u044F \\end{%2}", + EnvMissingEnd: "\u0411\u0440\u0430\u043A\u0443\u0454 \\end{%1}", + MissingBoxFor: "\u0412\u0456\u0434\u0441\u0443\u0442\u043D\u0454 \u043F\u043E\u043B\u0435 \u0434\u043B\u044F %1", + MissingCloseBrace: "\u0412\u0456\u0434\u0441\u0443\u0442\u043D\u044F \u0437\u0430\u043A\u0440\u0438\u0432\u0430\u044E\u0447\u0430 \u0434\u0443\u0436\u043A\u0430", + UndefinedControlSequence: "\u041D\u0435\u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u0430 \u043A\u043E\u043C\u0430\u043D\u0434\u0430 %1", + DoubleExponent: "\u041F\u043E\u0434\u0432\u0456\u0439\u043D\u0438\u0439 \u0441\u0442\u0435\u043F\u0456\u043D\u044C: \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u0434\u0443\u0436\u043A\u0438 \u0434\u043B\u044F \u0443\u0442\u043E\u0447\u043D\u0435\u043D\u043D\u044F", + DoubleSubscripts: "\u041F\u043E\u0434\u0432\u0456\u0439\u043D\u0438\u0439 \u043D\u0438\u0436\u043D\u0456\u0439 \u0456\u043D\u0434\u0435\u043A\u0441: \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u0434\u0443\u0436\u043A\u0438 \u0443\u0442\u043E\u0447\u0435\u043D\u043D\u044F", + DoubleExponentPrime: "\u0417\u043D\u0430\u043A \u0448\u0442\u0440\u0438\u0445\u0430 \u0441\u043F\u0440\u0438\u0447\u0438\u043D\u0438\u0432 \u043F\u043E\u0434\u0432\u0456\u0439\u043D\u0438\u0439 \u0441\u0442\u0435\u043F\u0456\u043D\u044C: \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u0439\u0442\u0435 \u0434\u0443\u0436\u043A\u0438 \u0434\u043B\u044F \u0443\u0442\u043E\u0447\u043D\u0435\u043D\u043D\u044F", + CantUseHash1: "\u041D\u0435 \u043C\u043E\u0436\u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u0441\u0438\u043C\u0432\u043E\u043B \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0430 \u043C\u0430\u043A\u0440\u043E\u0441\u0443 # \u0443 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u043E\u043C\u0443 \u0440\u0435\u0436\u0438\u043C\u0456", + MisplacedMiddle: "%1 \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u0432 \u043C\u0435\u0436\u0430\u0445 \\left \u0456 \\right", + MisplacedLimits: "%1 \u0434\u043E\u0437\u0432\u043E\u043B\u0435\u043D\u043E \u0442\u0456\u043B\u044C\u043A\u0438 \u043D\u0430 \u043E\u043F\u0435\u0440\u0430\u0442\u043E\u0440\u0430\u0445", + MisplacedMoveRoot: "%1 \u043C\u043E\u0436\u0435 \u0437'\u044F\u0432\u0438\u0442\u0438\u0441\u044F \u043B\u0438\u0448\u0435 \u043F\u0456\u0434 \u043A\u043E\u0440\u0435\u043D\u0435\u043C", + MultipleCommand: "\u041A\u0456\u043B\u044C\u043A\u0430 %1", + IntegerArg: "\u0410\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0434\u043B\u044F %1 \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u0446\u0456\u043B\u0438\u043C \u0447\u0438\u0441\u043B\u043E\u043C", + NotMathMLToken: "%1 \u043D\u0435 \u0435\u043B\u0435\u043C\u0435\u043D\u0442\u043E\u043C \u043C\u0430\u0440\u043A\u0435\u0440\u0430", + InvalidMathMLAttr: "\u041D\u0435\u043F\u0440\u0438\u043F\u0443\u0441\u0442\u0438\u043C\u0438\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 MathML: %1", + UnknownAttrForElement: "%1 \u043D\u0435\u0440\u043E\u0437\u043F\u0456\u0437\u043D\u0430\u043D\u0438\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442 \u0434\u043B\u044F %2", + MaxMacroSub1: "\u041F\u0435\u0440\u0435\u0432\u0438\u0449\u0435\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0443 \u043A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u0432\u0438\u043A\u043B\u0438\u043A\u0456\u0432 \u043C\u0430\u043A\u0440\u043E\u0441\u0456\u0432; \u0430\u0431\u043E \u0432\u0456\u0434\u0431\u0443\u0432\u0430\u0454\u0442\u044C\u0441\u044F \u0440\u0435\u043A\u0443\u0440\u0441\u0438\u0432\u043D\u0438\u0439 \u0432\u0438\u043A\u043B\u0438\u043A \u043C\u0430\u043A\u0440\u043E\u0441\u0443?", + MaxMacroSub2: "\u041F\u0435\u0440\u0435\u0432\u0438\u0449\u0435\u043D\u043E \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0443 \u043A\u0456\u043B\u044C\u043A\u0456\u0441\u0442\u044C \u0437\u0430\u043C\u0456\u043D; \u0430\u0431\u043E \u0446\u0435 \u0454 \u0440\u0435\u043A\u0443\u0440\u0441\u0438\u0432\u043D\u0435 \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0435 latex?", + MissingArgFor: "\u041F\u0440\u043E\u043F\u0443\u0449\u0435\u043D\u0438\u0439 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0434\u043B\u044F %1", + ExtraAlignTab: "\u0417\u0430\u0439\u0432\u0438\u0439 \u0442\u0430\u0431\u0443\u043B\u044F\u0442\u043E\u0440 \u0442\u0435\u043A\u0441\u0442\u0443 \u0443 \\cases", + BracketMustBeDimension: "\u0410\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0443 \u0434\u0443\u0436\u043A\u0430\u0445 \u0434\u043B\u044F %1 \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u0440\u043E\u0437\u043C\u0456\u0440\u043E\u043C", + InvalidEnv: "\u041D\u0435\u0432\u0456\u0440\u043D\u0435 \u0456\u043C'\u044F \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0430 '%1'", + UnknownEnv: "\u041D\u0435\u0432\u0456\u0434\u043E\u043C\u0435 \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0435 '%1'", + ExtraCloseLooking: "\u0417\u0430\u0439\u0432\u0430 \u0437\u0430\u043A\u0440\u0438\u0432\u0430\u044E\u0447\u0430 \u0434\u0443\u0436\u043A\u0430 \u0432\u0438\u043D\u0438\u043A\u043B\u0430 \u043F\u0456\u0434 \u0447\u0430\u0441 \u043F\u043E\u0448\u0443\u043A\u0443 %1", + MissingCloseBracket: "\u041D\u0435 \u043C\u043E\u0436\u043B\u0438\u0432\u043E \u0437\u043D\u0430\u0439\u0442\u0438 \u0437\u0430\u043A\u0440\u0438\u0432\u0430\u044E\u0447\u0443 ']' \u0434\u043B\u044F \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442\u0443 \u0434\u043E %1", + MissingOrUnrecognizedDelim: "\u0412\u0456\u0434\u0441\u0443\u0442\u043D\u0456\u0439 \u0430\u0431\u043E \u043D\u0435\u0440\u043E\u0437\u043F\u0456\u0437\u043D\u0430\u043D\u0438\u0439 \u0440\u043E\u0437\u0434\u0456\u043B\u044C\u043D\u0438\u043A \u0434\u043B\u044F %1", + MissingDimOrUnits: "\u0412\u0456\u0434\u0441\u0443\u0442\u043D\u0456\u0439 \u0440\u043E\u0437\u043C\u0456\u0440 \u0430\u0431\u043E \u0439\u043E\u0433\u043E \u043E\u0434\u0438\u043D\u0438\u0446\u0456 \u0434\u043B\u044F %1", + TokenNotFoundForCommand: "\u041D\u0435 \u043C\u043E\u0436\u043B\u0438\u0432\u043E \u0437\u043D\u0430\u0439\u0442\u0438 %1 \u0434\u043B\u044F %2", + MathNotTerminated: "\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0430 \u043D\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0443\u0454\u0442\u044C\u0441\u044F \u0432 \u0442\u0435\u043A\u0441\u0442\u043E\u0432\u043E\u043C\u0443 \u043F\u043E\u043B\u0456", + IllegalMacroParam: "\u041D\u0435\u0437\u0430\u043A\u043E\u043D\u043D\u0435 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F \u043D\u0430 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440 \u043C\u0430\u043A\u0440\u043E\u0441\u0443", + MaxBufferSize: "\u041F\u0435\u0440\u0435\u0432\u0438\u0449\u0435\u043D\u043E \u0440\u043E\u0437\u043C\u0456\u0440 \u0432\u043D\u0443\u0442\u0440\u0456\u0448\u043D\u044C\u043E\u0433\u043E \u0431\u0443\u0444\u0435\u0440\u0430 MathJax; \u0442\u0430\u043C \u0454 \u0440\u0435\u043A\u0443\u0440\u0441\u0438\u0432\u043D\u0438\u0439 \u0432\u0438\u043A\u043B\u0438\u043A \u043C\u0430\u043A\u0440\u043E\u0441\u0443?", + CommandNotAllowedInEnv: "%1 \u043D\u0435 \u0434\u043E\u043F\u0443\u0441\u043A\u0430\u0454\u0442\u044C\u0441\u044F \u0432 \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0456 %2", + MultipleLabel: "\u041C\u0456\u0442\u043A\u0430 '%1' \u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u0430 \u043A\u0456\u043B\u044C\u043A\u0430 \u0440\u0430\u0437\u0456\u0432", + CommandAtTheBeginingOfLine: "%1 \u043C\u0430\u0454 \u0437\u043D\u0430\u0445\u043E\u0434\u0438\u0442\u0438\u0441\u044F \u043D\u0430 \u043F\u043E\u0447\u0430\u0442\u043A\u0443 \u0440\u044F\u0434\u043A\u0430", + IllegalAlign: "\u041D\u0435\u0437\u0430\u043A\u043E\u043D\u043D\u0435 \u0432\u0438\u0440\u0456\u0432\u043D\u044E\u0432\u0430\u043D\u043D\u044F \u0432\u043A\u0430\u0437\u0430\u043D\u0435 \u0443 %1", + BadMathStyleFor: "\u041D\u0435\u0432\u0456\u0440\u043D\u0438\u0439 \u0441\u0438\u043D\u0442\u0430\u043A\u0441\u0438\u0441 \u0434\u043B\u044F %1", + PositiveIntegerArg: "\u0410\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0434\u043B\u044F %1 \u043F\u043E\u0432\u0438\u043D\u0435\u043D \u0431\u0443\u0442\u0438 \u0434\u043E\u0434\u0430\u0442\u043D\u0438\u043C \u0446\u0456\u043B\u0438\u043C \u0447\u0438\u0441\u043B\u043E\u043C", + ErroneousNestingEq: "\u041F\u043E\u043C\u0438\u043B\u043A\u043E\u0432\u0456 \u0432\u043A\u043B\u0430\u0434\u0435\u043D\u043E\u0441\u0442\u0456 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440 \u0440\u0456\u0432\u043D\u044F\u043D\u043D\u044F", + MultlineRowsOneCol: "\u0420\u044F\u0434\u043A\u0438 \u0443 \u0441\u0435\u0440\u0435\u0434\u043E\u0432\u0438\u0449\u0456 %1 \u043C\u0443\u0441\u044F\u0442\u044C \u043C\u0430\u0442\u0438 \u043B\u0438\u0448\u0435 \u043E\u0434\u0438\u043D \u0441\u0442\u043E\u0432\u043F\u0435\u0446\u044C", + MultipleBBoxProperty: "%1 \u0432\u043A\u0430\u0437\u0430\u043D\u043E \u0434\u0432\u0456\u0447\u0456 \u0432 %2", + InvalidBBoxProperty: "'%1' \u0437\u043E\u0432\u0441\u0456\u043C \u043D\u0435 \u0441\u0445\u043E\u0436\u0438\u0439 \u043D\u0430 \u043A\u043E\u043B\u0456\u0440, \u0434\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u0438\u0439 \u0440\u043E\u0437\u043C\u0456\u0440 \u0430\u0431\u043E \u0441\u0442\u0438\u043B\u044C", + ExtraEndMissingBegin: "\u0417\u0430\u0439\u0432\u0430 %1 \u0430\u0431\u043E \u0432\u0456\u0434\u0441\u0443\u0442\u043D\u044F \\begingroup", + GlobalNotFollowedBy: "%1 \u043D\u0435 \u0441\u043B\u0456\u0434\u0443\u0454 \u043F\u0456\u0441\u043B\u044F \\let, \\def \u0430\u0431\u043E \\newcommand", + UndefinedColorModel: "\u041A\u043E\u043B\u0456\u0440\u043D\u0430 \u043C\u043E\u0434\u0435\u043B\u044C '%1' \u043D\u0435 \u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u0430", + ModelArg1: "\u0417\u043D\u0430\u0447\u0435\u043D\u043D\u044F \u043A\u043E\u043B\u044C\u043E\u0440\u0443 \u0434\u043B\u044F \u043C\u043E\u0434\u0435\u043B\u0456 %1 \u0432\u0438\u043C\u0430\u0433\u0430\u044E\u0442\u044C 3 \u0446\u0438\u0444\u0440\u0438", + InvalidDecimalNumber: "\u041D\u0435\u0432\u0456\u0440\u043D\u0435 \u0434\u0435\u0441\u044F\u0442\u043A\u043E\u0432\u0435 \u0447\u0438\u0441\u043B\u043E", + ModelArg2: "\u0417\u043D\u0430\u0447\u0435\u043D\u043D\u044F \u043A\u043E\u043B\u044C\u043E\u0440\u0443 \u0434\u043B\u044F \u043C\u043E\u0434\u0435\u043B\u0456 %1 \u043F\u043E\u0432\u0438\u043D\u043D\u043E \u0431\u0443\u0442\u0438 \u043C\u0456\u0436 \u0442\u0435\u0433\u0430\u043C\u0438 %2 \u0456 %3", + InvalidNumber: "\u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u0435 \u0447\u0438\u0441\u043B\u043E", + NewextarrowArg1: "\u041F\u0435\u0440\u0448\u0438\u0439 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 %1 \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u043D\u0430\u0437\u0432\u043E\u044E \u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0430 \u043A\u0435\u0440\u0456\u0432\u043D\u043E\u0457 \u043F\u043E\u0441\u043B\u0456\u0434\u043E\u0432\u043D\u043E\u0441\u0442\u0456", + NewextarrowArg2: "\u0414\u0440\u0443\u0433\u0438\u0439 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0434\u043B\u044F %1 \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u0434\u0432\u043E\u043C\u0430 \u0446\u0456\u043B\u0438\u043C\u0438 \u0447\u0438\u0441\u043B\u0430\u043C\u0438, \u0440\u043E\u0437\u0434\u0456\u043B\u0435\u043D\u0438\u043C\u0438 \u043A\u043E\u043C\u0430\u043C\u0438", + NewextarrowArg3: "\u0422\u0440\u0435\u0442\u0456\u0439 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0434\u043B\u044F %1 \u043C\u0430\u0454 \u0431\u0443\u0442\u0438 \u0447\u0438\u0441\u043B\u043E\u0432\u0438\u043C \u044E\u043D\u0456\u043A\u043E\u0434\u043D\u0438\u043C \u0441\u0438\u043C\u0432\u043E\u043B\u043E\u043C", + NoClosingChar: "\u041D\u0435 \u043C\u043E\u0436\u043B\u0438\u0432\u043E \u0437\u043D\u0430\u0439\u0442\u0438 \u0432\u0456\u0434\u043A\u0440\u0438\u0432\u0430\u044E\u0447\u043E\u0457 %1", + IllegalControlSequenceName: "\u041D\u0435\u0432\u0456\u0440\u043D\u0435 \u0456\u043C'\u044F \u043A\u0435\u0440\u0456\u0432\u043D\u043E\u0457 \u043F\u043E\u0441\u043B\u0456\u0434\u043E\u0432\u043D\u043E\u0441\u0442\u0456 \u0434\u043B\u044F %1", + IllegalParamNumber: "\u041D\u0435\u0432\u0456\u0440\u043D\u0435 \u0447\u0438\u0441\u043B\u043E \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0456\u0432, \u0437\u0430\u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0445 \u0443 %1", + MissingCS: "\u041F\u0456\u0441\u043B\u044F %1 \u043C\u0443\u0441\u0438\u0442\u044C \u0441\u043B\u0456\u0434\u0443\u0432\u0430\u0442\u0438 \u043A\u0435\u0440\u0456\u0432\u043D\u0430 \u043F\u043E\u0441\u043B\u0456\u0434\u043E\u0432\u043D\u0456\u0441\u0442\u044C", + CantUseHash2: "\u041D\u0435\u0437\u0430\u043A\u043E\u043D\u043D\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F # \u0443 \u0448\u0430\u0431\u043B\u043E\u043D\u0456 \u0434\u043B\u044F %1", + SequentialParam: "\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u0438 \u0434\u043B\u044F %1 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u0431\u0443\u0442\u0438 \u043F\u0440\u043E\u043D\u0443\u043C\u0435\u0440\u043E\u0432\u0430\u043D\u0456 \u043F\u043E\u0441\u043B\u0456\u0434\u043E\u0432\u043D\u043E", + MissingReplacementString: "\u0412\u0456\u0434\u0441\u0443\u0442\u043D\u0456\u0439 \u0440\u044F\u0434\u043E\u043A \u0437\u0430\u043C\u0456\u043D\u0438 \u0434\u043B\u044F \u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F %1", + MismatchUseDef: "\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F %1 \u043D\u0435 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u0430\u0454 \u0439\u043E\u0433\u043E \u0432\u0438\u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044E", + RunawayArgument: "\u0412\u0442\u0440\u0430\u0447\u0435\u043D\u0438\u0439 \u0430\u0440\u0433\u0443\u043C\u0435\u043D\u0442 \u0434\u043B\u044F %1?", + NoClosingDelim: "\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0437\u043D\u0430\u0439\u0442\u0438 \u0437\u0430\u043A\u0440\u0438\u0432\u0430\u044E\u0447\u043E\u0433\u043E \u0440\u043E\u0437\u0434\u0456\u043B\u044C\u043D\u0438\u043A\u0430 \u0434\u043B\u044F%1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/uk/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/uk/uk.js b/modules/MathJax/unpacked/localization/uk/uk.js new file mode 100644 index 0000000..9b20876 --- /dev/null +++ b/modules/MathJax/unpacked/localization/uk/uk.js @@ -0,0 +1,64 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/uk/uk.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("uk",null,{ + menuTitle: "\u0443\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax \u0437\u043D\u0430\u0439\u0448\u043B\u0430 \u043A\u0443\u043A\u0438 \u043A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0457 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430, \u0449\u043E \u043C\u0456\u0441\u0442\u0438\u0442\u044C \u043A\u043E\u0434 \u0434\u043B\u044F \u0437\u0430\u043F\u0443\u0441\u043A\u0443. \u0412\u0438 \u0445\u043E\u0447\u0435\u0442\u0435 \u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0438 \u0439\u043E\u0433\u043E?\n\n\n(\u0412\u0438 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u043D\u0430\u0442\u0438\u0441\u043D\u0443\u0442\u0438 \"\u0421\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438\", \u0430\u0431\u0438 \u0441\u043A\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043A\u0443\u043A \u0443 \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0432 \u043D\u0430\u0441\u0442\u0440\u043E\u044E\u0432\u0430\u043D\u043D\u044F cookie \u0441\u0435\u0431\u0435.)", + MathProcessingError: "\u041F\u043E\u043C\u0438\u043B\u043A\u0430 \u043E\u0431\u0440\u043E\u0431\u043A\u0438 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0438", + MathError: "\u041C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u0447\u043D\u0430 \u043F\u043E\u043C\u0438\u043B\u043A\u0430", + LoadFile: "\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F %1", + Loading: "\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0435\u043D\u043D\u044F", + LoadFailed: "\u041D\u0435 \u0432\u0434\u0430\u043B\u043E\u0441\u044F \u0437\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0444\u0430\u0439\u043B: %1", + ProcessMath: "\u041E\u0431\u0440\u043E\u0431\u043A\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0438: %1%%", + Processing: "\u041E\u0431\u0440\u043E\u0431\u043A\u0430...", + TypesetMath: "\u0412\u0435\u0440\u0441\u0442\u043A\u0430 \u043C\u0430\u0442\u0435\u043C\u0430\u0442\u0438\u043A\u0438: %1%%", + Typesetting: "\u0412\u0435\u0440\u0441\u0442\u043A\u0430", + MathJaxNotSupported: "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043D\u0435 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u0443\u0454 MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + if (n % 10 === 1 && n % 100 != 11) return 1; // one + if (2 <= n % 10 && n % 10 <= 4 && !(12 <= n % 100 && n % 100 <= 14)) return 2; // few + if (n % 10 === 0 || (5 <= n % 10 && n % 10 <= 9) || (11 <= n % 100 && n % 100 <= 14)) return 3; // many + return 4; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/uk/uk.js"); diff --git a/modules/MathJax/unpacked/localization/zh-hans/FontWarnings.js b/modules/MathJax/unpacked/localization/zh-hans/FontWarnings.js new file mode 100644 index 0000000..6fa35ae --- /dev/null +++ b/modules/MathJax/unpacked/localization/zh-hans/FontWarnings.js @@ -0,0 +1,38 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/zh-hans/FontWarnings.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("zh-hans","FontWarnings",{ + version: "2.3", + isLoaded: true, + strings: { + webFont: "MathJax\u4F7F\u7528\u57FA\u4E8EWeb\u7684\u5B57\u4F53\u6765\u663E\u793A\u6B64\u9875\u4E0A\u663E\u793A\u6570\u5B66\u76F8\u5173\u5185\u5BB9\u3002\u8FD9\u5C06\u82B1\u8D39\u8F83\u957F\u65F6\u95F4\u4E0B\u8F7D\uFF0C\u6240\u4EE5\u6211\u4EEC\u5F3A\u70C8\u5EFA\u8BAE\u60A8\u76F4\u63A5\u5728\u60A8\u7684\u64CD\u4F5C\u7CFB\u7EDF\u7684\u5B57\u4F53\u6587\u4EF6\u5939\u4E2D\u5B89\u88C5\u6570\u5B66\u7B26\u53F7\u5B57\u4F53\u4EE5\u4FBF\u7ACB\u523B\u663E\u793A\u3002", + imageFonts: "MathJax\u4F7F\u7528\u56FE\u50CF\u5B57\u4F53\u800C\u4E0D\u662F\u672C\u5730\u6216\u57FA\u4E8EWeb\u7684\u5B57\u4F53\u3002\u8FD9\u5C06\u6BD4\u5E73\u5E38\u663E\u793A\u66F4\u6162\uFF0C\u4E14\u76F8\u5173\u6570\u5B66\u7B26\u53F7\u53EF\u80FD\u65E0\u6CD5\u5168\u606F\u7684\u88AB\u6253\u5370\u673A\u6253\u5370\u3002", + noFonts: "MathJax\u65E0\u6CD5\u5B9A\u4F4D\u60A8\u4F7F\u7528\u4E2D\u7684\u5B57\u4F53\u4EE5\u663E\u793A\u6570\u5B66\u7B26\u53F7\uFF0C\u56FE\u50CF\u5B57\u4F53\u4EA6\u65E0\u6CD5\u4F7F\u7528\uFF0C\u6240\u4EE5\u6211\u4EEC\u4E0D\u5F97\u4E0D\u8C03\u7528Unicode\u5B57\u7B26\u4EE5\u663E\u793A\u4E4B\u3002\u67D0\u4E9B\u5B57\u7B26\u5C06\u65E0\u6CD5\u6B63\u786E\u663E\u793A\uFF0C\u4E43\u81F3\u5F7B\u5E95\u65E0\u6CD5\u663E\u793A\u3002", + webFonts: "\u73B0\u65F6\u5927\u591A\u6570\u6D4F\u89C8\u5668\u5141\u8BB8\u901A\u8FC7\u4E92\u8054\u7F51\u4E0B\u8F7D\u5B57\u4F53\u3002\u66F4\u65B0\u60A8\u7684\u6D4F\u89C8\u5668\u81F3\u6700\u65B0\u7248\u672C\uFF08\u6216\u8005\u5E72\u8106\u66F4\u6362\u6D4F\u89C8\u5668\uFF09\u4EE5\u4FBF\u5728\u6B64\u9875\u9762\u63D0\u9AD8\u6570\u5B66\u7B26\u53F7\u7684\u663E\u793A\u8D28\u91CF\u3002", + fonts: "MathJax\u53EF\u4F7F\u7528[STIX fonts](%1)\u6216\u8005[MathJax TeX fonts](%2)\u3002\u4E0B\u8F7D\u5E76\u5B89\u88C5\u8FD9\u4E9B\u5B57\u4F53\u4EE5\u6539\u5584\u60A8\u7684MathJax\u4F53\u9A8C\u3002", + STIXPage: "\u6B64\u9875\u9762\u88AB\u8BBE\u8BA1\u4E3A\u4F7F\u7528[STIX fonts](%1)\u3002\u4E0B\u8F7D\u5E76\u5B89\u88C5\u5B83\u4EE5\u589E\u52A0\u60A8\u7684MathJax\u4F53\u9A8C\u3002", + TeXPage: "\u6B64\u9875\u9762\u88AB\u8BBE\u8BA1\u4E3A\u4F7F\u7528[MathJax TeX fonts](%1)\u3002\u4E0B\u8F7D\u5E76\u5B89\u88C5\u5B83\u4EE5\u589E\u52A0\u60A8\u7684MathJax\u4F53\u9A8C\u3002" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/zh-hans/FontWarnings.js"); diff --git a/modules/MathJax/unpacked/localization/zh-hans/HTML-CSS.js b/modules/MathJax/unpacked/localization/zh-hans/HTML-CSS.js new file mode 100644 index 0000000..7512c18 --- /dev/null +++ b/modules/MathJax/unpacked/localization/zh-hans/HTML-CSS.js @@ -0,0 +1,36 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/zh-hans/HTML-CSS.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("zh-hans","HTML-CSS",{ + version: "2.3", + isLoaded: true, + strings: { + LoadWebFont: "\u52A0\u8F7Dweb\u5B57\u4F53%1", + CantLoadWebFont: "Web\u5B57\u4F53%1\u65E0\u6CD5\u52A0\u8F7D", + FirefoxCantLoadWebFont: "\u60A8\u5728\u4F7F\u7528\u706B\u72D0\u6D4F\u89C8\u5668\uFF0C\u5979\u4E0D\u652F\u6301\u4ECE\u8FDC\u7A0B\u4E3B\u673A\u4E0B\u8F7D\u4EFB\u4F55web\u5B57\u4F53", + CantFindFontUsing: "\u65E0\u6CD5\u627E\u5230\u4F7F\u7528%1\u7684\u6709\u6548\u5B57\u4F53", + WebFontsNotAvailable: "Web\u5B57\u4F53\u4E0D\u77E5\u4E3A\u4F55\u65E0\u6CD5\u4F7F\u7528\uFF1F\uFF01\u2014\u2014\u6211\u4EEC\u5C06\u4E3A\u9601\u4E0B\u8F6C\u6362\u4E3A\u56FE\u7247\u5B57\u4F53" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/zh-hans/HTML-CSS.js"); diff --git a/modules/MathJax/unpacked/localization/zh-hans/HelpDialog.js b/modules/MathJax/unpacked/localization/zh-hans/HelpDialog.js new file mode 100644 index 0000000..42b4847 --- /dev/null +++ b/modules/MathJax/unpacked/localization/zh-hans/HelpDialog.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/zh-hans/HelpDialog.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("zh-hans","HelpDialog",{ + version: "2.3", + isLoaded: true, + strings: { + Help: "MathJax\u5E2E\u52A9", + MathJax: "*MathJax*\u662F\u4E00\u79CD\u8BA9\u7F51\u9875\u5236\u4F5C\u8005\u5F80\u7F51\u9875\u4E2D\u52A0\u5165\u6570\u5B66\u5F0F\u7684JavaScript\u8FD0\u884C\u5E93\u3002\u4F5C\u4E3A\u8BBF\u95EE\u8005\uFF0C\u60A8\u6CA1\u6709\u5FC5\u8981\u505A\u4EFB\u4F55\u4E8B\u60C5\u3002", + Browsers: "*\u6D4F\u89C8\u5668*\uFF1AMathJax\u53EF\u4EE5\u5728\u6240\u6709\u8F83\u65B0\u6D4F\u89C8\u5668\u4E0A\u5DE5\u4F5C\uFF0C\u5305\u62ECIE6+\u3001Firefox 3+\u3001Chrome 0.2+\u3001Safari 2+\u3001Opera 9.6+\u548C\u5927\u591A\u6570\u79FB\u52A8\u6D4F\u89C8\u5668\u3002", + Menu: "*\u6570\u5F0F\u83DC\u5355*\uFF1AMathJax\u7ED9\u6570\u5F0F\u6DFB\u52A0\u4E86\u5FEB\u6377\u83DC\u5355\u3002\u53F3\u952E\u6216\u6309Ctrl\u7136\u540E\u70B9\u51FB\u4EFB\u4F55\u6570\u5F0F\u5373\u53EF\u8FDB\u5165\u83DC\u5355\u3002", + ShowMath: "*\u6570\u5F0F\u663E\u793A\u5F62\u5F0F*\u5141\u8BB8\u60A8\u6D4F\u89C8\u516C\u5F0F\u7684\u6E90\u4EE3\u7801\u4EE5\u4FBF\u590D\u5236\u7C98\u8D34\uFF08\u4EE5\u539F\u59CB\u5F62\u5F0F\u6216MathML\uFF09\u3002", + Settings: "*\u6570\u5B66\u8BBE\u7F6E*\u91CC\u60A8\u60A8\u53EF\u4EE5\u8C03\u6574MathJax\u7684\u5404\u79CD\u529F\u80FD\uFF0C\u6BD4\u5982\u8BF4\u6570\u5F0F\u7684\u5927\u5C0F\uFF0C\u548C\u663E\u793A\u7B49\u5F0F\u7684\u673A\u7406\u3002", + Language: "*\u8BED\u8A00*\u7ED9\u60A8\u9009\u62E9MathJax\u7528\u4F5C\u83DC\u5355\u548C\u8B66\u544A\u4FE1\u606F\u7684\u8BED\u8A00\u3002", + Zoom: "*\u6570\u5F0F\u7F29\u653E*\uFF1A\u5982\u679C\u60A8\u6D4F\u89C8\u7B49\u5F0F\u65F6\u9047\u5230\u56F0\u96BE\uFF0CMathJax\u53EF\u4EE5\u5C06\u5176\u653E\u5927\u6765\u4F7F\u60A8\u83B7\u5F97\u66F4\u597D\u7684\u4F53\u9A8C\u3002", + Accessibilty: "*\u8F85\u52A9\u529F\u80FD*\uFF1AMathJax\u4F1A\u81EA\u52A8\u4E0E\u8BBF\u95EE\u8005\u4EA4\u4E92\u4F7F\u89C6\u89C9\u969C\u788D\u8005\u7406\u89E3\u6570\u5F0F\u66F4\u52A0\u5BB9\u6613\u3002", + Fonts: "*\u5B57\u4F53*\uFF1AMathJax\u5C06\u4F1A\u4F7F\u7528\u60A8\u7535\u8111\u4E0A\u5B89\u88C5\u7684\u67D0\u4E9B\u6570\u5F0F\u5B57\u4F53\u6765\u663E\u793A\u6570\u5F0F\uFF1B\u5982\u679C\u6CA1\u6709\u5B89\u88C5\u7684\u8BDD\uFF0C\u5B83\u5C06\u4F7F\u7528\u7F51\u7EDC\u4E0A\u7684\u5B57\u4F53\u3002\u867D\u7136\u5E76\u975E\u5FC5\u8981\uFF0C\u4F46\u662F\u5C06\u8FD9\u4E9B\u5B57\u4F53\u5B89\u88C5\u5230\u672C\u5730\u80FD\u52A0\u901F\u6570\u5F0F\u7684\u663E\u793A\u3002\u6211\u4EEC\u5EFA\u8BAE\u60A8\u5B89\u88C5[STIX fonts](%1)\u3002" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/zh-hans/HelpDialog.js"); diff --git a/modules/MathJax/unpacked/localization/zh-hans/MathML.js b/modules/MathJax/unpacked/localization/zh-hans/MathML.js new file mode 100644 index 0000000..ff0f658 --- /dev/null +++ b/modules/MathJax/unpacked/localization/zh-hans/MathML.js @@ -0,0 +1,41 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/zh-hans/MathML.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("zh-hans","MathML",{ + version: "2.3", + isLoaded: true, + strings: { + BadMglyph: "\u9519\u8BEF\u7684\u79FB\u52A8\u5B57\u5F62\uFF1A%1", + BadMglyphFont: "\u9519\u8BEF\u5B57\u4F53\uFF1A%1", + UnknownNodeType: "\u672A\u77E5\u7684\u8282\u70B9\u7C7B\u578B\uFF1A%1", + UnexpectedTextNode: "\u610F\u5916\u7684\u6587\u672C\u8282\u70B9\uFF1A%1", + ErrorParsingMathML: "\u89E3\u6790MathML\u65F6\u51FA\u9519", + ParsingError: "\u89E3\u6790MathML\u65F6\u51FA\u9519\uFF1A%1", + MathPlayer: "MathJax\u65E0\u6CD5\u542F\u7528MathPlayer\u3002\n\n\u5982\u679C\u8FD8\u6CA1\u6709\u5B89\u88C5MathPlayer\uFF0C\u60A8\u5FC5\u987B\u5148\u5B89\u88C5MathPlayer\u3002\n\u5982\u679C\u60A8\u7684\u5B89\u5168\u8BBE\u7F6E\u6709\u53EF\u80FD\u4F1A\u963B\u6B62ActiveX\u7684\u8FD0\u884C\uFF0C\u8BF7\u5728\n\u5DE5\u5177\u83DC\u5355\u4E0B\u7684Internet \u9009\u9879\u4E2D\u9009\u62E9\u5B89\u5168\u6807\u7B7E\u7136\u540E\u70B9\u51FB\n\u81EA\u5B9A\u4E49\u7EA7\u522B\uFF0C\u68C0\u67E5\n\u201C\u4E8C\u8FDB\u5236\u6587\u4EF6\u548C\u811A\u672C\u884C\u4E3A\u201D\u548C\u201C\u8FD0\u884C ActiveX \u63A7\u4EF6\u201D\n\u662F\u5426\u5DF2\u542F\u7528\u3002\n\n\u76EE\u524D\u60A8\u770B\u5230\u7684\u53EA\u80FD\u662F\u9519\u8BEF\u4FE1\u606F\u800C\u975E\u6392\u7248\u6570\u5F0F\u3002", + CantCreateXMLParser: "MathJax\u65E0\u6CD5\u4E3AMathML\u521B\u5EFAXML\u89E3\u6790\u5668\u3002\u8BF7\u68C0\u67E5\u5B89\u5168\u8BBE\u7F6E\n\u201C\u5BF9\u6807\u8BB0\u4E3A\u53EF\u5B89\u5168\u6267\u884C\u811A\u672C\u7684 Active \u63A7\u4EF6\u6267\u884C\u811A\u672C\u201D\n\u662F\u5426\u5DF2\u5F00\u542F\uFF08\u5728\u5DE5\u5177\u4E2D\u5F00\u542FInternet \u9009\u9879\u7136\u540E\u9009\u62E9\u5B89\u5168\n\u9762\u677F\uFF0C\u70B9\u81EA\u5B9A\u4E49\u7EA7\u522B\u6309\u94AE\u627E\u5230\u8FD9\u4E2A\u9009\u9879\u5E76\u5F00\u542F\uFF09\u3002\n\nMathJax\u5C06\u65E0\u6CD5\u5904\u7406MathML\u7B49\u5F0F\u3002", + MathMLSingleElement: "MathML\u5FC5\u987B\u7528\u5355\u4E2A\u5143\u7D20\u5EFA\u7ACB", + MathMLRootElement: "MathML\u5FC5\u987B\u7528\u003Cmath\u003E\u5143\u7D20\u5EFA\u7ACB\uFF0C\u800C\u4E0D\u662F%1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/zh-hans/MathML.js"); diff --git a/modules/MathJax/unpacked/localization/zh-hans/MathMenu.js b/modules/MathJax/unpacked/localization/zh-hans/MathMenu.js new file mode 100644 index 0000000..db3f080 --- /dev/null +++ b/modules/MathJax/unpacked/localization/zh-hans/MathMenu.js @@ -0,0 +1,104 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/zh-hans/MathMenu.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("zh-hans","MathMenu",{ + version: "2.3", + isLoaded: true, + strings: { + Show: "\u6570\u5F0F\u663E\u793A\u5F62\u5F0F", + MathMLcode: "MathML\u4EE3\u7801", + OriginalMathML: "\u539F\u59CB\u7684MathML", + TeXCommands: "TeX\u547D\u4EE4", + AsciiMathInput: "AsciiMathML\u8F93\u5165", + Original: "\u539F\u59CB\u683C\u5F0F", + ErrorMessage: "\u9519\u8BEF\u4FE1\u606F", + Annotation: "\u6CE8\u91CA", + TeX: "TeX", + StarMath: "StarMath", + Maple: "\u67AB\u53F6", + ContentMathML: "MathML\u5185\u5BB9", + OpenMath: "\u5F00\u6E90\u6570\u5B66", + texHints: "\u5728MathML\u4E2D\u663E\u793ATeX\u63D0\u793A", + Settings: "\u6570\u5B66\u8BBE\u7F6E", + ZoomTrigger: "\u7F29\u653E\u89E6\u53D1", + Hover: "\u6307\u9488\u60AC\u505C", + Click: "\u70B9\u51FB", + DoubleClick: "\u53CC\u51FB", + NoZoom: "\u5E76\u65E0\u7F29\u653E", + TriggerRequires: "\u89E6\u53D1\u9700\u8981\uFF1A", + Option: "\u9009\u9879", + Alt: "Alt\u952E", + Command: "Command\u952E", + Control: "Ctrl\u952E", + Shift: "Shift\u952E", + ZoomFactor: "\u53D8\u7126\u500D\u7387", + Renderer: "\u6570\u5B66\u6E32\u67D3", + MPHandles: "\u5141\u8BB8MathPlayer\u5904\u7406\uFF1A", + MenuEvents: "\u83DC\u5355\u4E8B\u4EF6", + MouseEvents: "\u9F20\u6807\u4E8B\u4EF6", + MenuAndMouse: "\u9F20\u6807\u548C\u83DC\u5355\u4E8B\u4EF6", + FontPrefs: "\u5B57\u4F53\u8BBE\u7F6E", + ForHTMLCSS: "\u7528\u4E8EHTML-CSS\uFF1A", + Auto: "\u81EA\u52A8", + TeXLocal: "TeX\uFF08\u672C\u5730\uFF09", + TeXWeb: "TeX\uFF08\u7F51\u9875\uFF09", + TeXImage: "TeX\uFF08\u56FE\u7247\uFF09", + STIXLocal: "STIX\uFF08\u672C\u5730\uFF09", + ContextMenu: "\u4E0A\u4E0B\u6587\u83DC\u5355", + Browser: "\u6D4F\u89C8\u5668", + Scale: "\u7F29\u653E\u6240\u6709\u6570\u5B66...", + Discoverable: "\u60AC\u505C\u4EAE\u70B9", + Locale: "\u8BED\u8A00", + LoadLocale: "\u4ECEURL\u8F7D\u5165...", + About: "\u5173\u4E8EMathJax", + Help: "MathJax\u5E2E\u52A9", + localTeXfonts: "\u4F7F\u7528\u672C\u5730TeX\u5B57\u4F53", + webTeXfonts: "\u4F7F\u7528\u7F51\u9875TeX\u5B57\u4F53", + imagefonts: "\u56FE\u50CF\u5B57\u4F53\u4F7F\u7528\u4E2D", + localSTIXfonts: "\u4F7F\u7528\u672C\u5730STIX\u5B57\u4F53", + webSVGfonts: "\u4F7F\u7528\u7F51\u9875SVG\u5B57\u4F53", + genericfonts: "\u4F7F\u7528\u901A\u7528Unicode\u5B57\u4F53", + wofforotffonts: "woff\u6216otf\u5B57\u4F53", + eotffonts: "eot\u5B57\u4F53", + svgfonts: "svg\u5B57\u4F53", + WebkitNativeMMLWarning: "\u60A8\u7684\u6D4F\u89C8\u5668\u636E\u4FE1\u65E0\u6CD5\u652F\u6301MathML\u672C\u8EAB\uFF0C\u56E0\u6B64\u5207\u6362\u5230MathML\u8F93\u51FA\u5C06\u53EF\u80FD\u5BFC\u81F4\u9875\u9762\u4E0A\u7684\u6570\u5B66\u516C\u5F0F\u4E0D\u53EF\u8BFB\u3002", + NonZeroScale: "\u500D\u7387\u4E0D\u5E94\u4E3A\u96F6", + PercentScale: "\u500D\u7387\u5E94\u8BE5\u662F\u4E00\u4E2A\u767E\u5206\u6BD4 \uFF08\u4F8B\u5982120%%\uFF09", + NoOriginalForm: "\u6CA1\u6709\u53EF\u7528\u7684\u539F\u59CB\u5F62\u5F0F", + Close: "\u5173\u95ED", + EqSource: "MathJax \u65B9\u7A0B\u6E90", + MSIENativeMMLWarning: "Internet Explorer\u9700\u8981MathPlayer\u63D2\u4EF6\u6765\u5904\u7406MathML\u8F93\u51FA\u3002", + OperaNativeMMLWarning: "Opera\u5BF9MathML\u7684\u652F\u6301\u5341\u5206\u6709\u9650\uFF0C\u56E0\u6B64\u8F6C\u6362\u81F3MathML\u8F93\u51FA\u53EF\u80FD\u4F1A\u5BFC\u81F4\u4E00\u4E9B\u8868\u8FBE\u5F0F\u65E0\u6CD5\u6B63\u5E38\u6E32\u67D3\u3002", + SafariNativeMMLWarning: "\u60A8\u7684\u6D4F\u89C8\u5668\u7684MathML\u4E0D\u652F\u6301\u6240\u6709MathJax\u7684\u529F\u80FD\uFF0C\u6709\u4E9B\u8868\u8FBE\u5F0F\u53EF\u80FD\u65E0\u6CD5\u6B63\u5E38\u5448\u73B0\u3002", + FirefoxNativeMMLWarning: "\u60A8\u7684\u6D4F\u89C8\u5668\u7684MathML\u4E0D\u652F\u6301\u6240\u6709MathJax\u7684\u529F\u80FD\uFF0C\u6709\u4E9B\u8868\u8FBE\u5F0F\u53EF\u80FD\u65E0\u6CD5\u6B63\u5E38\u5448\u73B0\u3002", + LoadURL: "\u4ECE\u6B64URL\u52A0\u8F7D\u7FFB\u8BD1\u6570\u636E\uFF1A", + BadURL: "URL\u5FC5\u987B\u94FE\u81F3\u5B9A\u4E49MathJax\u7FFB\u8BD1\u6570\u636E\u7684JavaScript\u6587\u4EF6\u3002JavaScript\u7684\u6587\u4EF6\u540D\u5E94\u4EE5\u201C.js\u201D\u7ED3\u5C3E", + BadData: "\u4ECE%1\u52A0\u8F7D\u7FFB\u8BD1\u6570\u636E\u5931\u8D25", + SwitchAnyway: "\u4E00\u5B9A\u8981\u66F4\u6539\u6E32\u67D3\u5668\uFF1F\n\n\uFF08\u70B9OK\u66F4\u6539\uFF0C\u70B9\u53D6\u6D88\u5373\u4EE5\u5F53\u524D\u6E32\u67D3\u5668\u7EE7\u7EED\uFF09", + ScaleMath: "\u6570\u5F0F\u7F29\u653E\u767E\u5206\u6BD4\uFF08\u5BF9\u6BD4\u4E8E\u65C1\u8FB9\u7684\u6587\u5B57\uFF09", + IE8warning: "\u8FD9\u5C06\u5173\u95EDMathJax\u83DC\u5355\u4E0E\u7F29\u653E\u529F\u80FD\uFF0C\u4F46\u60A8\u53EF\u4EE5\u70B9\u51FBAlt-Click\u6216\u70B9\u51FB\u4E00\u4E2A\u8868\u8FBE\u5F0F\u6765\u8FDB\u5165MathJax\u83DC\u5355\u3002\n\n\u786E\u5B9E\u8981\u66F4\u6539MathPlayer\u8BBE\u7F6E\u5417\uFF1F", + IE9warning: "MathJax\u5FEB\u6377\u83DC\u5355\u5C06\u5173\u95ED\uFF0C\u4F46\u60A8\u53EF\u4EE5\u6309Alt\u5E76\u70B9\u51FB\u8868\u8FBE\u5F0F\u6765\u547C\u51FA\u83DC\u5355\u3002" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/zh-hans/MathMenu.js"); diff --git a/modules/MathJax/unpacked/localization/zh-hans/TeX.js b/modules/MathJax/unpacked/localization/zh-hans/TeX.js new file mode 100644 index 0000000..c754f7a --- /dev/null +++ b/modules/MathJax/unpacked/localization/zh-hans/TeX.js @@ -0,0 +1,79 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/zh-hans/TeX.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("zh-hans","TeX",{ + version: "2.3", + isLoaded: true, + strings: { + ExtraOpenMissingClose: "\u6709\u591A\u4F59\u7684\u5DE6\u62EC\u53F7\u6216\u7F3A\u5C11\u53F3\u62EC\u53F7", + ExtraCloseMissingOpen: "\u6709\u591A\u4F59\u7684\u53F3\u62EC\u53F7\u6216\u7F3A\u5C11\u5DE6\u62EC\u53F7", + MissingLeftExtraRight: "\u4E22\u5931\\left\u6216\u989D\u5916\u51FA\u73B0\\right", + MissingScript: "\u6709\u4E0A\u6807\u6216\u4E0B\u6807\u7F3A\u5C11\u53C2\u6570", + ExtraLeftMissingRight: "\u989D\u5916\u7684\\left\u6216\u8005\u4E22\u5931\\right", + Misplaced: "%1\u88AB\u653E\u7F6E\u4E8E\u9519\u8BEF\u7684\u5730\u65B9", + MissingOpenForSub: "\u7F3A\u5C11\u4E0B\u6807\u7684\u5DE6\u62EC\u53F7", + MissingOpenForSup: "\u7F3A\u5C11\u4E0A\u6807\u7684\u5DE6\u62EC\u53F7", + AmbiguousUseOf: "%1\u7684\u4F7F\u7528\u4E0D\u660E\u786E", + EnvBadEnd: "\\begin{%1}\u7531\\end{%2}\u7ED3\u675F\u4E4B", + EnvMissingEnd: "\\end{%1}\u4E22\u5931", + MissingBoxFor: "\u7F3A\u5C11\u7528\u4E8E%1\u7684\u6846", + MissingCloseBrace: "\u7F3A\u5C11\u53F3\u62EC\u53F7", + UndefinedControlSequence: "\u672A\u5B9A\u4E49\u7684\u63A7\u5236\u6570\u5217%1", + DoubleSubscripts: "\u53CC\u4E0B\u6807\uFF1A\u4F7F\u7528\u62EC\u53F7\u6765\u660E\u786E", + CantUseHash1: "\u60A8\u65E0\u6CD5\u5728\u6570\u5B66\u6A21\u5F0F\u4E2D\u4F7F\u7528'\u5B8F\u53C2\u6570\u5B57\u7B26#'", + MisplacedLimits: "%1\u53EA\u5141\u8BB8\u5728\u8FD0\u7B97\u7B26\u4E0A", + MultipleCommand: "\u591A\u79CD%1", + IntegerArg: "\u53C2\u6570%1\u5FC5\u987B\u662F\u6574\u6570", + NotMathMLToken: "%1\u4E0D\u662F\u6743\u6807\u5143\u7D20", + InvalidMathMLAttr: "\u65E0\u6548MathML\u5C5E\u6027\uFF1A%1", + UnknownAttrForElement: "%1\u4E0D\u662F%2\u7684\u5DF2\u8BC6\u522B\u5C5E\u6027", + MissingArgFor: "\u4E0E%1\u76F8\u5173\u7684\u53C2\u6570\u7F3A\u5931", + InvalidEnv: "\u65E0\u6548\u7684\u73AF\u5883\u540D\u79F0\u201C%1\u201D", + UnknownEnv: "\u672A\u77E5\u7684\u73AF\u5883\u53D8\u91CF'%1'", + MissingCloseBracket: "\u65E0\u6CD5\u627E\u5230%1\u7684\u53C2\u6570\u7684\u53F3\u201C]\u201D", + MissingOrUnrecognizedDelim: "\u627E\u4E0D\u5230\u6216\u65E0\u6CD5\u8BC6\u522B%1\u7684\u5206\u9694\u7B26", + TokenNotFoundForCommand: "\u65E0\u6CD5\u627E\u5230\u7528\u4E8E%2\u7684%1", + MathNotTerminated: "\u6570\u5B66\u5F0F\u5728\u6587\u672C\u6846\u4E2D\u672A\u7ED3\u675F", + CommandNotAllowedInEnv: "%1\u5728%2\u73AF\u5883\u4E2D\u4E0D\u5141\u8BB8", + IllegalAlign: "\u6307\u5B9A\u7684\u5BF9\u9F50\u65B9\u5F0F%1\u4E0D\u7B26\u7F16\u8F91\u624B\u518C", + BadMathStyleFor: "%1\u7684\u6570\u5F0F\u6837\u5F0F\u65E0\u6548", + MultipleBBoxProperty: "%1\u5728%2\u4E2D\u6307\u5B9A\u4E86\u4E24\u6B21", + ExtraEndMissingBegin: "\u6709\u591A\u4F59\u7684%1\u6216\u7F3A\u5C11\\begingroup", + UndefinedColorModel: "\u8272\u5F69\u6A21\u5757\u201C%1\u201D\u672A\u5B9A\u4E49", + ModelArg1: "%1\u6A21\u5757\u7684\u8272\u5F69\u503C\u9700\u8981\u4E09\u4E2A\u6570\u5B57", + InvalidDecimalNumber: "\u65E0\u6548\u5341\u8FDB\u5236\u6570", + ModelArg2: "%1\u6A21\u5757\u7684\u8272\u5F69\u503C\u5FC5\u987B\u5728%2\u548C%3\u4E4B\u95F4", + InvalidNumber: "\u4E0D\u5141\u8BB8\u7684\u6570\u5B57", + NewextarrowArg1: "%1\u7684\u7B2C\u4E00\u4E2A\u53C2\u6570\u5FC5\u987B\u662F\u4E00\u4E2A\u63A7\u5236\u6570\u5217\u540D\u79F0", + NewextarrowArg2: "%1\u7684\u7B2C\u4E8C\u4E2A\u53C2\u6570\u5FC5\u987B\u662F\u7531\u9017\u53F7\u5206\u5F00\u7684\u4E24\u4E2A\u6574\u6570", + NewextarrowArg3: "%1\u7684\u7B2C\u4E09\u4E2A\u53C2\u6570\u5FC5\u987B\u662FUnicode\u5B57\u7B26\u503C", + NoClosingChar: "\u672A\u80FD\u627E\u5230\u5173\u95ED\u7684%1", + MissingCS: "%1\u5FC5\u987B\u8DDF\u7740\u4E00\u4E2A\u63A7\u5236\u5E8F\u5217", + CantUseHash2: "%1\u7684\u6A21\u677F\u4E2D\u975E\u6CD5\u4F7F\u7528#", + SequentialParam: "%1\u7684\u53C2\u6570\u5FC5\u987B\u987A\u5E8F\u6807\u53F7", + MismatchUseDef: "%1\u7684\u4F7F\u7528\u4E0D\u7B26\u5408\u5176\u5B9A\u4E49", + NoClosingDelim: "\u65E0\u6CD5\u627E\u5230\u7528\u4E8E\u7ED3\u675F\u7684\u5206\u9694\u7B26%1" + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/zh-hans/TeX.js"); diff --git a/modules/MathJax/unpacked/localization/zh-hans/zh-hans.js b/modules/MathJax/unpacked/localization/zh-hans/zh-hans.js new file mode 100644 index 0000000..af13b74 --- /dev/null +++ b/modules/MathJax/unpacked/localization/zh-hans/zh-hans.js @@ -0,0 +1,61 @@ +/* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */ +/* vim: set ts=2 et sw=2 tw=80: */ + +/************************************************************* + * + * MathJax/localization/zh-hans/zh-hans.js + * + * Copyright (c) 2009-2013 The MathJax Consortium + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +MathJax.Localization.addTranslation("zh-hans",null,{ + menuTitle: "\u4E2D\u6587\uFF08\u7B80\u4F53\uFF09", + version: "2.3", + isLoaded: true, + domains: { + "_": { + version: "2.3", + isLoaded: true, + strings: { + CookieConfig: "MathJax\u5DF2\u627E\u5230\u7528\u6237\u914D\u7F6E\uFF0C\u5176\u4E2D\u5305\u542B\u8981\u8FD0\u884C\u4EE3\u7801\u6240\u4F9D\u8D56\u7684cookie\u3002\u60A8\u60F3\u8FD0\u884C\u5B83\u4E48\uFF1F\n\n\uFF08\u60A8\u5E94\u8BE5\u81EA\u884C\u6309\u53D6\u6D88\u9664\u975E\u60A8\u8BBE\u7F6E\u4E86\u81EA\u5DF1\u7684cookie\u3002\uFF09", + MathProcessingError: "\u6570\u5B66\u5904\u7406\u9519\u8BEF", + MathError: "\u6570\u5B66\u9519\u8BEF", + LoadFile: "%1\u52A0\u8F7D\u4E2D", + Loading: "\u52A0\u8F7D\u4E2D", + LoadFailed: "\u65E0\u6CD5\u52A0\u8F7D\u6587\u4EF6\uFF1A%1", + ProcessMath: "\u6570\u5B66\u5904\u7406\uFF1A%1%%", + Processing: "\u5904\u7406\u4E2D", + TypesetMath: "\u6392\u7248\u6570\u5B66\uFF1A%1%%", + Typesetting: "\u6392\u7248", + MathJaxNotSupported: "\u60A8\u7684\u6D4F\u89C8\u5668\u6682\u4E0D\u652F\u6301MathJax" + } + }, + "FontWarnings": {}, + "HTML-CSS": {}, + "HelpDialog": {}, + "MathML": {}, + "MathMenu": {}, + "TeX": {} + }, + plural: function (n) { + return 1; // other + }, + number: function (n) { + return n; + } +}); + +MathJax.Ajax.loadComplete("[MathJax]/localization/zh-hans/zh-hans.js"); diff --git a/modules/ext.math.mathjax.enabler.js b/modules/ext.math.mathjax.enabler.js index 6e65c1a..7a07546 100644 --- a/modules/ext.math.mathjax.enabler.js +++ b/modules/ext.math.mathjax.enabler.js @@ -1,7 +1,7 @@ /** * From https://en.wikipedia.org/wiki/User:Nageh/mathJax.js */ -/*global mathJax:true, MathJax */ +/*global mathJax:true, MathJax:true */ ( function ( mw, $ ) { if ( typeof mathJax === 'undefined' ) { mathJax = {}; @@ -11,13 +11,13 @@ mathJax.loaded = false; + mathJax.locale = mw.config.get('wgUserLanguage'); + + // See http://docs.mathjax.org/en/latest/options/index.html mathJax.config = $.extend( true, { - root: mw.config.get('wgExtensionAssetsPath') + '/Math/modules/MathJax', - config: ['TeX-AMS-texvc_HTML.js'], + root: mw.config.get('wgExtensionAssetsPath') + '/Math/modules/MathJax/unpacked', 'v1.0-compatible': false, - displayAlign: 'left', menuSettings: { - locale: mw.config.get('wgUserLanguage'), zoom: 'Click' }, 'HTML-CSS': { @@ -27,12 +27,173 @@ }, MathMenu: { showLocale: false - } + }, + jax: ['input/TeX','input/MathML','output/NativeMML','output/HTML-CSS'] }, mathJax.config ); - mathJax.Config = function () { + /** + * @param {string} relative path to a MathJax file + * @return {string} MediaWiki module containing the file + */ + mathJax.getModuleNameFromFile = function (file) { + var regexp, module; + + // These modules are loaded at startup and thus don't need to be specified: + // - ext.math.mathjax.mathjax in mathJax.Load + // - ext.math.mathjax.localization in mathJax.Init + // - ext.math.mathjax.jax.config in MathJax.Hub.Startup.Jax + // - ext.math.mathjax.extensions in MathJax.Hub.Startup.Extensions + // + + module = 'ext.math.mathjax.'; + + regexp = file.match(/(.*)\/jax\.js/); + if ( regexp ) { + // These are jax.js files of input, element or output modules: + // - ext.math.mathjax.jax.input.MathML + // - ext.math.mathjax.jax.input.TeX + // - ext.math.mathjax.jax.output.HTML-CSS + // - ext.math.mathjax.jax.output.NativeMML + // - ext.math.mathjax.jax.output.HTML-CSS + // - ext.math.mathjax.jax.output.SVG + return module + regexp[1].replace(/\//g,'.'); + } + + if ( file.match(/jax\/element\/mml\/optable/) ) { + return module + 'jax.element.mml.optable'; + } + + regexp = file.match(/jax\/output\/(HTML-CSS|SVG)/); + if ( regexp ) { + module += 'jax.output.' + regexp[1] + '.'; + if ( file.match(/autoload/) ) { + return module + 'autoload'; + } + if ( file.match(/fonts\/TeX\/fontdata/) ) { + return module + 'fonts.TeX.fontdata'; + } + if ( file.match(/fonts\/TeX\/.*\/.*\/Main\.js/) ) { + return module + 'fonts.TeX.MainJS'; + } + if ( file.match(/fonts\/TeX\/Main/) ) { + return module + 'fonts.TeX.Main'; + } + if ( file.match(/fonts\/TeX\/AMS/) ) { + return module + 'fonts.TeX.AMS'; + } + if ( file.match(/fonts\/TeX/) ) { + return module + 'fonts.TeX.Extra'; + } + } + + mw.log( 'MathJax resource not handled by MediaWiki: ' + file ); + + return null; + }; + + /** + * Configure MathJax, preload some files and replace MathJax's resource loader + * by our own resource loader. + */ + mathJax.Init = function () { + // Configure MathJax MathJax.Hub.Config( mathJax.config ); MathJax.OutputJax.fontDir = mw.config.get('wgExtensionAssetsPath') + '/Math/modules/MathJax/fonts'; + + // Redefine MathJax.Hub.Startup.Jax + MathJax.Hub.Startup.Jax = function () { + var config, jax, i, k, name, queue, callback; + // Save the order of the output jax since they are loading asynchronously + config = MathJax.Hub.config; + jax = MathJax.Hub.outputJax; + for ( i = 0, k = 0; i < config.jax.length; i++ ) { + name = config.jax[i].substr(7); + if ( config.jax[i].substr(0,7) === 'output/' && jax.order[name] === null ) { + jax.order[name] = k; + k++; + } + } + queue = MathJax.Callback.Queue(); + callback = MathJax.Callback({}); + return queue.Push( + ['Post', MathJax.Hub.Startup.signal, 'Begin Jax'], + ['using', mw.loader, 'ext.math.mathjax.jax.config', callback], + callback, + ['Post', MathJax.Hub.Startup.signal, 'End Jax'] + ); + }; + + // Redefine MathJax.Hub.Startup.Extensions + MathJax.Hub.Startup.Extensions = function () { + var queue, callback; + queue = MathJax.Callback.Queue(); + callback = MathJax.Callback({}); + return queue.Push( + ['Post', MathJax.Hub.Startup.signal, 'Begin Extensions'], + ['using', mw.loader, 'ext.math.mathjax.extensions', callback], + callback, + ['Post', MathJax.Hub.Startup.signal, 'End Extensions'] + ); + }; + + // Redefine MathJax.Ajax.Load + MathJax.Ajax.MathJaxLoad = MathJax.Ajax.Load; + MathJax.Ajax.Load = function (file, callback) { + var type, i, module; + callback = MathJax.Callback(callback); + if ( file instanceof Object ) { + for ( i in file ) { + if ( file.hasOwnProperty(i) ) { + type = i.toUpperCase(); + file = file[i]; + } + } + } else { + type = file.split(/\./).pop().toUpperCase(); + } + file = MathJax.Ajax.fileURL(file); + if ( MathJax.Ajax.loading[file] ) { + MathJax.Ajax.addHook(file, callback); + } else { + if ( MathJax.Ajax.loader[type] ) { + module = mathJax.getModuleNameFromFile(file.substring(MathJax.Hub.config.root.length + 1)); + if ( module ) { + // Use MediaWiki's resource loader. + MathJax.Ajax.loading[file] = { + callback: callback, + timeout: -1, + status: this.STATUS.OK, + script: null + }; + // Add this to the structure above after it is created to prevent + // recursion when loading the initial localization file (before + // loading message is available) + MathJax.Ajax.loading[file].message = MathJax.Message.File(file); + mw.loader.load(module); + } else { + // Fallback to MathJax's own loader. + callback = MathJax.Ajax.MathJaxLoad(file, callback); + } + } else { + throw new Error('Can\'t load files of type ' + type); + } + } + return callback; + }; + + // Register the final action after MathJax processing: hide + // SVG/PNG preview if thas was not done before and show MathJax's output. + MathJax.Hub.Startup.signal.MessageHook( 'End', function () { + mw.loader.load('ext.math.mathml'); + }); + + // Set MathJax's locale and load the localization data. + MathJax.Localization.resetLocale(mathJax.locale); + mathJax.locale = MathJax.Localization.locale; + MathJax.Hub.config.menuSettings.locale = mathJax.locale; + mw.loader.using( 'ext.math.mathjax.localization', function () { + MathJax.Hub.Configured(); + } ); }; /** @@ -50,35 +211,29 @@ MathJax.Hub.Queue( ['Typeset', MathJax.Hub, elem, callback] ); } - mw.loader.using( 'ext.math.mathjax', function () { + mw.loader.using( 'ext.math.mathjax.mathjax', function () { if ( MathJax.isReady ) { render(); } else { MathJax.Hub.Startup.signal.MessageHook( 'End', render ); } - }); + } ); return this; }; mathJax.Load = function () { - var config, script; - if (this.loaded) { + if ( this.loaded ) { return true; } - // create configuration element - config = 'mathJax.Config();'; - script = document.createElement( 'script' ); - script.setAttribute( 'type', 'text/x-mathjax-config' ); - if ( window.opera ) { - script.innerHTML = config; - } else { - script.text = config; - } - document.getElementsByTagName('head')[0].appendChild( script ); + // create the global MathJax variable to hook into MathJax startup + MathJax = { + delayStartupUntil: 'configured', + AuthorInit: mathJax.Init + }; - // create startup element - mw.loader.load('ext.math.mathjax'); + // load MathJax.js + mw.loader.load('ext.math.mathjax.mathjax'); this.loaded = true;